#
# 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 AUTO_INCREMENT=4 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=34 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, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (33, 4, 'supplier', NULL, NULL, 'DR APPIAH', 'FMMS WHOLESALE', '', 'madina', 'ACCRA', '', '', '', '0597470660', 'fimmsapp@gmail.com', '', '', '', '', '', '', NULL, 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=129378 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);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11233, '2021-08-21', 1840, 10792, 1113, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11234, '2021-08-21', 2104, 10793, 1113, 1048, '3.0000', '0.2000', '0.2000', '0.5000', '0.5000', '295.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 (11235, '2021-08-21', 1841, 10794, 1113, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '24.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 (11236, '2021-08-21', 1452, 10795, 1113, 928, '2.0000', '45.6150', '45.6150', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11237, '2021-08-21', 2916, 10796, 1113, 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 (11238, '2021-08-21', 2169, 10797, 1113, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (11239, '2021-08-21', 7675, 10798, 1113, NULL, '1.0000', '11.4300', '11.4300', '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 (11240, '2021-08-21', 2315, 10799, 1113, 2735, '-57.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11241, '2021-08-21', 2315, 10799, 1113, NULL, '61.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11242, '2021-08-21', 1905, 10800, 1113, 5443, '-2.0000', '0.4000', '0.4000', '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 (11243, '2021-08-21', 1905, 10800, 1113, 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 (11244, '2021-08-21', 8074, 10801, 1113, NULL, '1.0000', '3.2800', '3.2800', '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 (11245, '2021-08-21', 2413, 10802, 1113, 4505, '-2.0000', '1.0500', '1.0500', '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 (11246, '2021-08-21', 2413, 10802, 1113, NULL, '5.0000', '1.0500', '1.0500', '1.5000', '1.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 (11247, '2021-08-21', 1867, 10803, 1113, 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 (11248, '2021-08-21', 2270, 10804, 1113, 2930, '1.0000', '0.9880', '0.9880', '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 (11249, '2021-08-21', 2819, 10805, 1113, NULL, '1.0000', '90.0000', '90.0000', '117.0000', '117.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11250, '2021-08-21', 7848, 10806, 1113, NULL, '1.0000', '1.3500', '1.3500', '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 (11251, '2021-08-21', 8750, 10807, 1113, NULL, '1.0000', '2.6600', '2.6600', '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 (11252, '2021-08-21', 9417, 10808, 1113, NULL, '1.0000', '4.0000', '4.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 (11253, '2021-08-21', 1338, 10809, 1113, 234, '1.0000', '4.0000', '4.0000', '6.0000', '6.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 (11254, '2021-08-21', 1425, 10810, 1113, 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 (11255, '2021-08-21', 2233, 10811, 1113, 2777, '-3.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 (11256, '2021-08-21', 2233, 10811, 1113, NULL, '4.0000', '19.0200', '19.0200', '27.0000', '27.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 (11257, '2021-08-21', 1851, 10812, 1113, 651, '1.0000', '10.6568', '10.6568', '16.5000', '16.5000', '0.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 (11258, '2021-08-21', 2272, 10813, 1113, 2932, '-4.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 (11259, '2021-08-21', 2272, 10813, 1113, NULL, '5.0000', '5.5000', '5.5000', '7.5000', '7.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 (11260, '2021-08-21', 1665, 10814, 1113, 3235, '-11.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 (11261, '2021-08-21', 1665, 10814, 1113, NULL, '12.0000', '1.3000', '1.3000', '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 (11262, '2021-08-21', 1620, 10815, 1113, 8955, '4.0000', '408.8259', '408.8259', '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 (11263, '2021-08-21', 2877, 10816, 1114, 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 (11264, '2021-08-21', 9245, 10817, 1115, NULL, '1.0000', '15.1700', '15.1700', '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 (11265, '2021-08-21', 2866, 10818, 1115, 18927, '4.0000', '0.8800', '0.8800', '1.5000', '1.5000', '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 (11266, '2021-08-21', 2299, 10819, 1115, 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 (11267, '2021-08-21', 7385, 10820, 1115, NULL, '10.0000', '12.5000', '12.5000', '3.5000', '3.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 (11268, '2021-08-21', 8144, 10821, 1115, NULL, '1.0000', '3.8000', '3.8000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11269, '2021-08-21', 3018, 10822, 1115, 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 (11270, '2021-08-21', 2220, 10823, 1115, 24950, '1.0000', '5.9300', '5.9300', '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 (11271, '2021-08-21', 2338, 10824, 1115, 19857, '4.0000', '9.6300', '9.6300', '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 (11272, '2021-08-21', 2544, 10825, 1115, 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 (11273, '2021-08-21', 7816, 10826, 1115, NULL, '1.0000', '10.8300', '10.8300', '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 (11274, '2021-08-21', 1863, 10827, 1115, 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 (11275, '2021-08-21', 1654, 10828, 1115, 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 (11276, '2021-08-21', 1761, 10829, 1115, 19369, '1.0000', '1.8200', '1.8200', '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 (11277, '2021-08-21', 1347, 10830, 1115, 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 (11278, '2021-08-21', 1841, 10831, 1115, NULL, '10.0000', '0.3700', '0.3700', '0.5000', '0.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 (11279, '2021-08-21', 1618, 10832, 1115, NULL, '2.0000', '90.0000', '90.0000', '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 (11280, '2021-08-21', 7967, 10833, 1115, NULL, '1.0000', '0.8900', '0.8900', '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 (11281, '2021-08-21', 1863, 10834, 1115, 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 (11282, '2021-08-21', 2315, 10835, 1115, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '71.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 (11283, '2021-08-21', 1339, 10836, 1115, 23699, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '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 (11284, '2021-08-21', 1945, 10837, 1115, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '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 (11285, '2021-08-21', 2352, 10838, 1115, 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 (11286, '2021-08-21', 2353, 10839, 1115, 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 (11287, '2021-08-21', 1590, 10840, 1116, 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 (11288, '2021-08-21', 7544, 10841, 1116, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (11289, '2021-08-21', 8181, 10842, 1116, NULL, '1.0000', '4.5000', '4.5000', '0.4000', '0.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 (11290, '2021-08-21', 1730, 10843, 1116, 24207, '1.0000', '24.4163', '24.4163', '33.5000', '33.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 (11291, '2021-08-21', 2348, 10844, 1116, 13756, '1.0000', '22.0300', '22.0300', '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 (11292, '2021-08-21', 2262, 10845, 1116, 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 (11293, '2021-08-21', 8417, 10846, 1116, NULL, '1.0000', '5.8000', '5.8000', '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 (11294, '2021-08-21', 1499, 10847, 1116, NULL, '5.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-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 (11295, '2021-08-21', 2280, 10848, 1116, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '37.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 (11296, '2021-08-21', 3045, 10849, 1116, 25018, '1.0000', '5.4200', '5.4200', '7.5000', '7.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 (11297, '2021-08-21', 8595, 10850, 1116, 29628, '1.0000', '4.2100', '4.2100', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11298, '2021-08-21', 1841, 10851, 1116, 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 (11299, '2021-08-21', 7591, 10852, 1117, NULL, '1.0000', '2.7500', '2.7500', '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 (11300, '2021-08-21', 2169, 10853, 1117, 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 (11301, '2021-08-21', 1912, 10854, 1118, 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 (11302, '2021-08-21', 2453, 10855, 1118, 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 (11303, '2021-08-21', 7886, 10856, 1118, NULL, '1.0000', '14.5000', '14.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 (11304, '2021-08-21', 2272, 10857, 1118, 23690, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '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 (11305, '2021-08-21', 1620, 10858, 1118, 23135, '3.0000', '2.2300', '2.2300', '4.0000', '4.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 (11306, '2021-08-21', 8332, 10859, 1119, NULL, '1.0000', '31.2000', '31.2000', '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 (11307, '2021-08-21', 1584, 10860, 1119, 9443, '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 (11308, '2021-08-21', 1592, 10861, 1119, 24124, '1.0000', '43.5941', '43.5941', '47.0000', '47.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 (11309, '2021-08-21', 9202, 10862, 1119, NULL, '1.0000', '3.5000', '3.5000', '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 (11310, '2021-08-21', 1764, 10863, 1119, 3179, '1.0000', '90.0000', '90.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 (11311, '2021-08-21', 1993, 10864, 1119, 6450, '1.0000', '0.6000', '0.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 (11312, '2021-08-21', 7524, 10865, 1119, NULL, '1.0000', '11.9500', '11.9500', '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 (11313, '2021-08-21', 2235, 10866, 1119, 24129, '1.0000', '17.8000', '17.8000', '25.0000', '25.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 (11314, '2021-08-21', 2235, 10866, 1119, 12748, '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 (11315, '2021-08-21', 2234, 10867, 1119, 18424, '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 (11316, '2021-08-21', 2856, 10868, 1119, 17778, '1.0000', '26.0000', '26.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 (11317, '2021-08-21', 1431, 10869, 1119, 10407, '1.0000', '10.5000', '10.5000', '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 (11318, '2021-08-21', 2240, 10870, 1119, 22237, '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 (11319, '2021-08-21', 1309, 10871, 1119, 3074, '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 (11320, '2021-08-21', 1574, 10872, 1119, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '34.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 (11321, '2021-08-21', 1415, 10873, 1119, 17861, '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 (11322, '2021-08-21', 8984, 10874, 1119, NULL, '1.0000', '304.7000', '304.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 (11323, '2021-08-21', 1666, 10875, 1119, 23584, '2.0000', '246.5993', '246.5993', '3.5000', '3.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 (11324, '2021-08-21', 2699, 10876, 1119, 21819, '2.0000', '3.0000', '3.0000', '4.5000', '4.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 (11325, '2021-08-21', 1867, 10877, 1119, 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 (11326, '2021-08-21', 2699, 10878, 1119, 21819, '1.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 (11327, '2021-08-21', 1888, 10879, 1119, NULL, '1.0000', '-42.1250', '-42.1250', '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 (11328, '2021-08-21', 1871, 10880, 1119, 24281, '10.0000', '57.2051', '57.2051', '3.0000', '3.0000', '50.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 (11329, '2021-08-21', 1592, 10881, 1119, 24124, '1.0000', '43.5941', '43.5941', '47.0000', '47.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 (11330, '2021-08-21', 2992, 10882, 1119, 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 (11331, '2021-08-21', 2279, 10883, 1119, 23614, '1.0000', '2.6280', '2.6280', '4.0000', '4.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 (11332, '2021-08-21', 2221, 10884, 1119, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '18.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 (11333, '2021-08-21', 1574, 10885, 1119, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '34.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 (11334, '2021-08-21', 1700, 10886, 1119, 22235, '1.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 (11335, '2021-08-21', 1399, 10887, 1120, 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 (11336, '2021-08-21', 2275, 10888, 1120, 24983, '2.0000', '1.0900', '1.0900', '1.5000', '1.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 (11337, '2021-08-21', 2250, 10889, 1120, 23681, '1.0000', '6.8900', '6.8900', '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 (11338, '2021-08-21', 1337, 10890, 1120, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (11339, '2021-08-21', 2003, 10891, 1120, 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 (11340, '2021-08-21', 1828, 10892, 1120, 19854, '1.0000', '0.7300', '0.7300', '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 (11341, '2021-08-21', 1841, 10893, 1120, 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 (11342, '2021-08-21', 7544, 10894, 1120, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11343, '2021-08-21', 2699, 10895, 1120, 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 (11344, '2021-08-21', 7321, 10896, 1120, NULL, '1.0000', '7.9500', '7.9500', '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 (11345, '2021-08-21', 8084, 10897, 1120, 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 (11346, '2021-08-21', 8097, 10898, 1120, NULL, '2.0000', '7.6800', '7.6800', '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 (11347, '2021-08-21', 1856, 10899, 1120, 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 (11348, '2021-08-21', 2353, 10900, 1120, 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 (11349, '2021-08-21', 2315, 10901, 1120, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '69.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 (11350, '2021-08-21', 2135, 10902, 1120, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '20.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 (11351, '2021-08-21', 3018, 10903, 1120, 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 (11352, '2021-08-21', 1728, 10904, 1121, 19324, '4.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 (11353, '2021-08-21', 2699, 10905, 1121, 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 (11354, '2021-08-21', 1804, 10906, 1121, NULL, '2.0000', '4.2500', '4.2500', '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 (11355, '2021-08-21', 2318, 10907, 1122, NULL, '2.0000', '0.5000', '0.5000', '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 (11356, '2021-08-21', 2109, 10908, 1122, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (11357, '2021-08-21', 1912, 10909, 1122, 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 (11358, '2021-08-21', 1501, 10910, 1122, 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 (11359, '2021-08-21', 2169, 10911, 1122, 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 (11360, '2021-08-21', 2293, 10912, 1122, 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 (11361, '2021-08-21', 2315, 10913, 1122, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '67.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 (11362, '2021-08-21', 2993, 10914, 1123, 23118, '1.0000', '13.0000', '13.0000', '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 (11363, '2021-08-21', 1935, 10915, 1123, 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 (11364, '2021-08-21', 1863, 10916, 1123, 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 (11365, '2021-08-21', 7750, 10917, 1124, NULL, '1.0000', '34.9000', '34.9000', '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 (11366, '2021-08-21', 2809, 10918, 1124, 17782, '1.0000', '28.0000', '28.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 (11367, '2021-08-21', 1730, 10919, 1124, 24120, '1.0000', '23.9100', '23.9100', '33.5000', '33.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 (11368, '2021-08-21', 2342, 10920, 1124, 29798, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11369, '2021-08-21', 2810, 10921, 1124, 23575, '10.0000', '2.2000', '2.2000', '3.5000', '3.5000', '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 (11370, '2021-08-21', 2294, 10922, 1124, 18667, '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 (11371, '2021-08-21', 2866, 10923, 1124, 17783, '20.0000', '0.8800', '0.8800', '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 (11372, '2021-08-21', 1854, 10924, 1125, 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 (11373, '2021-08-21', 2293, 10925, 1125, 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 (11374, '2021-08-21', 1839, 10926, 1125, 24949, '1.0000', '6.1500', '6.1500', '8.0000', '8.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 (11375, '2021-08-21', 2250, 10927, 1125, 23681, '1.0000', '6.8900', '6.8900', '10.0000', '10.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 (11376, '2021-08-21', 2315, 10928, 1125, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '65.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 (11377, '2021-08-21', 2253, 10929, 1125, 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 (11378, '2021-08-21', 1863, 10930, 1125, 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 (11379, '2021-08-21', 3067, 10931, 1125, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.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 (11380, '2021-08-21', 1935, 10932, 1125, 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 (11381, '2021-08-21', 2169, 10933, 1125, 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 (11382, '2021-08-21', 1846, 10934, 1126, 22500, '1.0000', '131.0188', '131.0188', '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 (11383, '2021-08-21', 1846, 10934, 1126, 22225, '1.0000', '131.0188', '131.0188', '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 (11384, '2021-08-21', 9028, 10935, 1126, NULL, '1.0000', '9.0000', '9.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 (11385, '2021-08-21', 8308, 10936, 1126, NULL, '1.0000', '11.0000', '11.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 (11386, '2021-08-21', 2252, 10937, 1126, 13538, '1.0000', '9.3000', '9.3000', '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 (11387, '2021-08-21', 1592, 10938, 1126, 22657, '1.0000', '43.5941', '43.5941', '47.0000', '47.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 (11388, '2021-08-21', 2221, 10939, 1126, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (11389, '2021-08-21', 1839, 10940, 1126, 24116, '1.0000', '6.1500', '6.1500', '8.0000', '8.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 (11390, '2021-08-21', 2315, 10941, 1126, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '338.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11391, '2021-08-21', 2379, 10942, 1126, 4385, '1.0000', '1.5900', '1.5900', '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 (11392, '2021-08-21', 2916, 10943, 1126, 22658, '1.0000', '13.7500', '13.7500', '20.0000', '20.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 (11393, '2021-08-21', 1772, 10944, 1126, 18695, '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 (11394, '2021-08-21', 1523, 10945, 1126, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '46.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 (11395, '2021-08-21', 2413, 10946, 1126, 24121, '3.0000', '1.0500', '1.0500', '1.5000', '1.5000', '45.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 (11396, '2021-08-21', 9178, 10947, 1126, 29839, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11397, '2021-08-21', 1846, 10948, 1126, 22500, '1.0000', '131.0188', '131.0188', '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 (11398, '2021-08-21', 1523, 10949, 1126, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '46.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 (11399, '2021-08-21', 2829, 10950, 1126, 24021, '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 (11400, '2021-08-21', 1863, 10951, 1126, 11171, '1.0000', '1.2242', '1.2242', '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 (11401, '2021-08-21', 2669, 10952, 1127, 29793, '1.0000', '48.5100', '48.5100', '63.5000', '63.5000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11402, '2021-08-21', 2436, 10953, 1127, 21827, '1.0000', '15.0000', '15.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 (11403, '2021-08-21', 1377, 10954, 1127, 29817, '1.0000', '51.5700', '51.5700', '51.5000', '51.5000', '2.0000', 1, 0, NULL, 206);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11404, '2021-08-22', 1425, 10955, 1128, 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 (11405, '2021-08-22', 2662, 10956, 1128, 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 (11406, '2021-08-22', 7576, 10957, 1128, NULL, '1.0000', '6.9100', '6.9100', '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 (11407, '2021-08-22', 1904, 10958, 1128, NULL, '5.0000', '90.0000', '90.0000', '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 (11408, '2021-08-22', 1841, 10959, 1128, 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 (11409, '2021-08-22', 2289, 10960, 1128, NULL, '5.0000', '0.2300', '0.2300', '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 (11410, '2021-08-22', 8668, 10961, 1128, NULL, '1.0000', '2.2000', '2.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 (11411, '2021-08-22', 1904, 10962, 1128, 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 (11412, '2021-08-22', 2342, 10963, 1128, NULL, '7.0000', '1.8600', '1.8600', '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 (11413, '2021-08-22', 2242, 10964, 1128, 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 (11414, '2021-08-22', 7385, 10965, 1128, NULL, '2.0000', '12.5000', '12.5000', '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 (11415, '2021-08-22', 1837, 10966, 1128, 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 (11416, '2021-08-22', 1555, 10967, 1128, 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 (11417, '2021-08-22', 2803, 10968, 1128, 30151, '1.0000', '8.2000', '8.2000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11418, '2021-08-22', 2435, 10969, 1128, NULL, '1.0000', '4.8000', '4.8000', '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 (11419, '2021-08-22', 9397, 10970, 1128, NULL, '1.0000', '0.5600', '0.5600', '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 (11420, '2021-08-22', 1812, 10971, 1128, 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 (11421, '2021-08-22', 7641, 10972, 1128, NULL, '1.0000', '1.9000', '1.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 (11422, '2021-08-22', 8296, 10973, 1128, NULL, '1.0000', '11.7600', '11.7600', '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 (11423, '2021-08-22', 8133, 10974, 1128, NULL, '3.0000', '5.0000', '5.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 (11424, '2021-08-22', 3029, 10975, 1128, 30176, '1.0000', '4.7700', '4.7700', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11425, '2021-08-22', 3062, 10976, 1128, 30195, '2.0000', '6.0700', '6.0700', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11426, '2021-08-22', 1863, 10977, 1128, 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 (11427, '2021-08-22', 1564, 10978, 1128, NULL, '3.0000', '90.0000', '90.0000', '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 (11428, '2021-08-22', 2254, 10979, 1128, NULL, '1.0000', '17.9400', '17.9400', '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 (11429, '2021-08-22', 2060, 10980, 1128, NULL, '8.0000', '0.3300', '0.3300', '0.5000', '0.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 (11430, '2021-08-22', 1527, 10981, 1128, 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 (11431, '2021-08-22', 2244, 10982, 1128, 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 (11432, '2021-08-22', 8097, 10983, 1128, NULL, '3.0000', '7.6800', '7.6800', '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 (11433, '2021-08-22', 7482, 10984, 1128, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11434, '2021-08-22', 2068, 10985, 1128, 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 (11435, '2021-08-22', 1529, 10986, 1128, 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 (11436, '2021-08-22', 8969, 10987, 1128, NULL, '4.0000', '2.0000', '2.0000', '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 (11437, '2021-08-22', 8964, 10988, 1128, NULL, '2.0000', '7.3600', '7.3600', '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 (11438, '2021-08-22', 9021, 10989, 1128, NULL, '1.0000', '7.0000', '7.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 (11439, '2021-08-22', 2242, 10990, 1128, 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 (11440, '2021-08-22', 1527, 10991, 1128, NULL, '3.0000', '90.0000', '90.0000', '17.5000', '17.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 (11441, '2021-08-22', 2784, 10992, 1128, NULL, '1.0000', '53.4600', '53.4600', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11442, '2021-08-22', 7598, 10993, 1128, NULL, '1.0000', '1.2800', '1.2800', '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 (11443, '2021-08-22', 8310, 10994, 1129, NULL, '1.0000', '22.5000', '22.5000', '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 (11444, '2021-08-22', 2457, 10995, 1130, NULL, '1.0000', '23.0000', '23.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 (11445, '2021-08-22', 2169, 10996, 1130, 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 (11446, '2021-08-22', 9193, 10997, 1130, NULL, '1.0000', '10.0000', '10.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 (11447, '2021-08-22', 2803, 10998, 1130, 30151, '1.0000', '8.2000', '8.2000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11448, '2021-08-22', 8835, 10999, 1131, NULL, '1.0000', '5.8900', '5.8900', '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 (11449, '2021-08-22', 7424, 11000, 1131, 30039, '1.0000', '7.0000', '7.0000', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11450, '2021-08-22', 7641, 11001, 1131, NULL, '1.0000', '1.9000', '1.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 (11451, '2021-08-22', 2408, 11002, 1131, NULL, '1.0000', '8.6200', '8.6200', '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 (11452, '2021-08-22', 7802, 11003, 1132, NULL, '3.0000', '0.9200', '0.9200', '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 (11453, '2021-08-22', 7781, 11004, 1132, NULL, '3.0000', '4.2500', '4.2500', '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 (11454, '2021-08-22', 7703, 11005, 1132, NULL, '1.0000', '22.9900', '22.9900', '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 (11455, '2021-08-22', 2108, 11006, 1132, 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 (11456, '2021-08-22', 1618, 11007, 1132, 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 (11457, '2021-08-22', 2061, 11008, 1132, 30191, '1.0000', '10.9800', '10.9800', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11458, '2021-08-22', 2061, 11008, 1132, NULL, '1.0000', '10.9800', '10.9800', '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 (11459, '2021-08-22', 7354, 11009, 1132, 29994, '1.0000', '18.0000', '18.0000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11460, '2021-08-22', 2803, 11010, 1133, 30151, '1.0000', '8.2000', '8.2000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11461, '2021-08-22', 7473, 11011, 1133, NULL, '2.0000', '9.2200', '9.2200', '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 (11462, '2021-08-22', 7482, 11012, 1133, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11463, '2021-08-22', 2025, 11013, 1133, 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 (11464, '2021-08-22', 2803, 11014, 1133, 30151, '1.0000', '8.2000', '8.2000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11465, '2021-08-22', 1636, 11015, 1133, 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 (11466, '2021-08-22', 1504, 11016, 1133, 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 (11467, '2021-08-22', 7457, 11017, 1133, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11468, '2021-08-22', 7703, 11018, 1133, NULL, '2.0000', '22.9900', '22.9900', '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 (11469, '2021-08-22', 7638, 11019, 1133, 30222, '1.0000', '4.5000', '4.5000', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11470, '2021-08-22', 1863, 11020, 1133, 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 (11471, '2021-08-22', 7782, 11021, 1133, NULL, '1.0000', '5.0000', '5.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 (11472, '2021-08-22', 2366, 11022, 1133, 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 (11473, '2021-08-22', 2060, 11023, 1133, 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 (11474, '2021-08-22', 2108, 11024, 1133, 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 (11475, '2021-08-22', 2060, 11025, 1133, 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 (11476, '2021-08-22', 2555, 11026, 1133, NULL, '1.0000', '4.2000', '4.2000', '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 (11477, '2021-08-22', 2833, 11027, 1134, 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 (11478, '2021-08-22', 2135, 11028, 1134, 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 (11479, '2021-08-22', 1807, 11029, 1134, 16442, '8.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.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 (11480, '2021-08-22', 2556, 11030, 1134, 7196, '-18.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 (11481, '2021-08-22', 2556, 11030, 1134, NULL, '19.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-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 (11482, '2021-08-22', 1532, 11031, 1134, 22261, '3.0000', '0.8000', '0.8000', '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 (11483, '2021-08-22', 2327, 11032, 1134, 5083, '-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 (11484, '2021-08-22', 2327, 11032, 1134, 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 (11485, '2021-08-22', 1610, 11033, 1134, 8730, '-1.0000', '15.7500', '15.7500', '21.5000', '21.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 (11486, '2021-08-22', 1610, 11033, 1134, NULL, '2.0000', '15.7500', '15.7500', '21.5000', '21.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 (11487, '2021-08-22', 1415, 11034, 1134, 22360, '1.0000', '14.5000', '14.5000', '19.0000', '19.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 (11488, '2021-08-22', 1665, 11035, 1134, 3235, '-12.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 (11489, '2021-08-22', 1665, 11035, 1134, NULL, '13.0000', '1.3000', '1.3000', '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 (11490, '2021-08-22', 1774, 11036, 1134, 18886, '28.0000', '3.3000', '3.3000', '4.3000', '4.3000', '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 (11491, '2021-08-22', 2003, 11037, 1134, 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 (11492, '2021-08-22', 2169, 11038, 1134, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '33.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 (11493, '2021-08-22', 8539, 11039, 1134, NULL, '1.0000', '31.8000', '31.8000', '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 (11494, '2021-08-22', 1670, 11040, 1134, 10163, '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 (11495, '2021-08-22', 1687, 11041, 1134, 5785, '-2.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 (11496, '2021-08-22', 1687, 11041, 1134, NULL, '3.0000', '165.9024', '165.9024', '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 (11497, '2021-08-22', 1541, 11042, 1134, 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 (11498, '2021-08-22', 1989, 11043, 1134, 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 (11499, '2021-08-22', 1736, 11044, 1134, 9313, '2.0000', '-6.2282', '-6.2282', '38.0000', '38.0000', '0.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 (11500, '2021-08-22', 1863, 11045, 1134, 10808, '1.0000', '0.4136', '0.4136', '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 (11501, '2021-08-22', 2455, 11046, 1134, 5643, '-1.0000', '7.5300', '7.5300', '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 (11502, '2021-08-22', 2455, 11046, 1134, NULL, '2.0000', '7.5300', '7.5300', '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 (11503, '2021-08-22', 1812, 11047, 1134, 8224, '-4.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 (11504, '2021-08-22', 1812, 11047, 1134, NULL, '5.0000', '7.8900', '7.8900', '10.5000', '10.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 (11505, '2021-08-22', 2302, 11048, 1134, 2963, '-7.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 (11506, '2021-08-22', 2302, 11048, 1134, NULL, '9.0000', '5.2000', '5.2000', '7.0000', '7.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 (11507, '2021-08-22', 1612, 11049, 1134, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '7.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 (11508, '2021-08-22', 1840, 11050, 1134, 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 (11509, '2021-08-22', 1841, 11051, 1134, 18870, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '23.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 (11510, '2021-08-22', 1311, 11052, 1134, 39, '1.0000', '79.3908', '79.3908', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11511, '2021-08-22', 7790, 11053, 1134, NULL, '4.0000', '17.0000', '17.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 (11512, '2021-08-22', 2261, 11054, 1134, NULL, '1.0000', '18.9900', '18.9900', '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 (11513, '2021-08-22', 2592, 11055, 1134, 10812, '-3.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 (11514, '2021-08-22', 2592, 11055, 1134, NULL, '4.0000', '7.9670', '7.9670', '11.0000', '11.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 (11515, '2021-08-22', 2169, 11056, 1134, 22244, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '32.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 (11516, '2021-08-22', 1828, 11057, 1134, NULL, '2.0000', '0.7300', '0.7300', '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 (11517, '2021-08-22', 7482, 11058, 1135, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11518, '2021-08-22', 7703, 11059, 1135, NULL, '1.0000', '22.9900', '22.9900', '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 (11519, '2021-08-22', 7411, 11060, 1135, 30171, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11520, '2021-08-22', 1499, 11061, 1135, 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 (11521, '2021-08-22', 7848, 11062, 1135, NULL, '1.0000', '1.3500', '1.3500', '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 (11522, '2021-08-22', 7641, 11063, 1136, NULL, '1.0000', '1.9000', '1.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 (11523, '2021-08-22', 1573, 11064, 1136, 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 (11524, '2021-08-22', 1765, 11065, 1136, 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 (11525, '2021-08-22', 1688, 11066, 1137, 4896, '-1.0000', '18.5000', '18.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 (11526, '2021-08-22', 1688, 11066, 1137, NULL, '2.0000', '18.5000', '18.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 (11527, '2021-08-22', 2221, 11067, 1137, 4334, '1.0000', '14.4737', '14.4737', '25.0000', '25.0000', '4.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 (11528, '2021-08-22', 2876, 11068, 1137, 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 (11529, '2021-08-22', 1338, 11069, 1137, 234, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '0.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 (11530, '2021-08-22', 1851, 11070, 1137, 2410, '1.0000', '10.6568', '10.6568', '16.5000', '16.5000', '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 (11531, '2021-08-22', 2607, 11071, 1137, 18805, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '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 (11532, '2021-08-22', 1435, 11072, 1137, NULL, '1.0000', '22.5000', '22.5000', '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 (11533, '2021-08-22', 1523, 11073, 1137, 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 (11534, '2021-08-22', 7354, 11074, 1138, 29994, '1.0000', '18.0000', '18.0000', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11535, '2021-08-22', 1667, 11075, 1138, 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 (11536, '2021-08-22', 1602, 11076, 1138, 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 (11537, '2021-08-22', 1346, 11077, 1138, NULL, '3.0000', '0.9300', '0.9300', '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 (11538, '2021-08-22', 1874, 11078, 1138, 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 (11539, '2021-08-22', 2236, 11079, 1138, NULL, '1.0000', '5.5000', '5.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 (11540, '2021-08-22', 7448, 11080, 1138, 30058, '1.0000', '15.8500', '15.8500', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11541, '2021-08-22', 7641, 11081, 1138, NULL, '1.0000', '1.9000', '1.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 (11542, '2021-08-22', 1584, 11082, 1138, NULL, '2.0000', '90.0000', '90.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 (11543, '2021-08-22', 2713, 11083, 1138, 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 (11544, '2021-08-22', 2062, 11084, 1138, 30189, '1.0000', '8.5900', '8.5900', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11545, '2021-08-22', 2062, 11084, 1138, NULL, '1.0000', '8.5900', '8.5900', '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 (11546, '2021-08-22', 2415, 11085, 1138, 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 (11547, '2021-08-22', 8681, 11086, 1138, NULL, '1.0000', '10.0000', '10.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 (11548, '2021-08-22', 1904, 11087, 1138, 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 (11549, '2021-08-22', 8840, 11088, 1138, NULL, '1.0000', '12.0000', '12.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 (11550, '2021-08-22', 2889, 11089, 1139, NULL, '1.0000', '20.0000', '20.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 (11551, '2021-08-22', 1425, 11090, 1140, 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 (11552, '2021-08-22', 2302, 11091, 1140, 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 (11553, '2021-08-22', 2281, 11092, 1140, 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 (11554, '2021-08-22', 1871, 11093, 1140, 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 (11555, '2021-08-22', 2060, 11094, 1140, 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 (11556, '2021-08-22', 7457, 11095, 1140, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11557, '2021-08-22', 1602, 11096, 1141, 5897, '1.0000', '6.7859', '6.7859', '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 (11558, '2021-08-22', 7412, 11097, 1141, NULL, '1.0000', '1.5200', '1.5200', '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 (11559, '2021-08-22', 1888, 11098, 1142, 683, '1.0000', '134.8400', '134.8400', '21.0000', '21.0000', '6.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 (11560, '2021-08-22', 1645, 11099, 1143, 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 (11561, '2021-08-22', 1420, 11100, 1143, 22318, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (11562, '2021-08-22', 8969, 11101, 1144, NULL, '4.0000', '2.0000', '2.0000', '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 (11563, '2021-08-22', 7753, 11102, 1144, NULL, '1.0000', '3.1400', '3.1400', '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 (11564, '2021-08-22', 9367, 11103, 1144, NULL, '1.0000', '32.9800', '32.9800', '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 (11565, '2021-08-22', 7640, 11104, 1145, NULL, '1.0000', '5.8900', '5.8900', '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 (11566, '2021-08-22', 1863, 11105, 1145, 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 (11567, '2021-08-23', 1670, 11106, 1146, 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 (11568, '2021-08-23', 2315, 11107, 1146, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '63.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 (11569, '2021-08-23', 2276, 11108, 1146, NULL, '1.0000', '55.1000', '55.1000', '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 (11570, '2021-08-23', 2068, 11109, 1146, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '3.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 (11571, '2021-08-23', 7675, 11110, 1146, NULL, '1.0000', '11.4300', '11.4300', '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 (11572, '2021-08-23', 2699, 11111, 1146, 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 (11573, '2021-08-23', 1844, 11112, 1146, 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 (11574, '2021-08-23', 1523, 11113, 1146, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '39.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 (11575, '2021-08-23', 2568, 11114, 1146, 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 (11576, '2021-08-23', 2242, 11115, 1146, 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 (11577, '2021-08-23', 2167, 11116, 1146, 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 (11578, '2021-08-23', 1674, 11117, 1146, 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 (11579, '2021-08-23', 1665, 11118, 1146, 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 (11580, '2021-08-23', 2108, 11119, 1146, 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 (11581, '2021-08-23', 1961, 11120, 1146, 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 (11582, '2021-08-23', 1646, 11121, 1146, 19840, '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 (11583, '2021-08-23', 1763, 11122, 1146, 19383, '1.0000', '4.6900', '4.6900', '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 (11584, '2021-08-23', 1863, 11123, 1146, 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 (11585, '2021-08-23', 1649, 11124, 1146, 23687, '1.0000', '11.1900', '11.1900', '16.0000', '16.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 (11586, '2021-08-23', 1435, 11125, 1146, 19832, '1.0000', '18.5000', '18.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 (11587, '2021-08-23', 1386, 11126, 1146, 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 (11588, '2021-08-23', 7743, 11127, 1146, NULL, '1.0000', '7.3900', '7.3900', '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 (11589, '2021-08-23', 2732, 11128, 1146, 19360, '1.0000', '29.8900', '29.8900', '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 (11590, '2021-08-23', 1577, 11129, 1146, 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 (11591, '2021-08-23', 7591, 11130, 1146, NULL, '1.0000', '2.7500', '2.7500', '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 (11592, '2021-08-23', 2699, 11131, 1146, 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 (11593, '2021-08-23', 1946, 11132, 1146, NULL, '1.0000', '1.5500', '1.5500', '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 (11594, '2021-08-23', 1410, 11133, 1146, 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 (11595, '2021-08-23', 1697, 11134, 1146, 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 (11596, '2021-08-23', 1946, 11135, 1146, NULL, '1.0000', '1.5500', '1.5500', '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 (11597, '2021-08-23', 2729, 11136, 1146, 19355, '1.0000', '3.2900', '3.2900', '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 (11598, '2021-08-23', 2068, 11137, 1146, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '3.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 (11599, '2021-08-23', 1867, 11138, 1146, NULL, '1.0000', '1.0500', '1.0500', '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 (11600, '2021-08-23', 2384, 11139, 1146, 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 (11601, '2021-08-23', 1863, 11140, 1146, 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 (11602, '2021-08-23', 1935, 11141, 1146, 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 (11603, '2021-08-23', 2315, 11142, 1146, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '63.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 (11604, '2021-08-23', 2592, 11143, 1146, 25022, '2.0000', '7.9800', '7.9800', '11.0000', '11.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 (11605, '2021-08-23', 1763, 11144, 1146, 19383, '1.0000', '4.6900', '4.6900', '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 (11606, '2021-08-23', 2777, 11145, 1146, 24972, '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 (11607, '2021-08-23', 2465, 11146, 1146, 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 (11608, '2021-08-23', 1707, 11147, 1147, 9474, '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 (11609, '2021-08-23', 2642, 11148, 1148, 21836, '1.0000', '7.5000', '7.5000', '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 (11610, '2021-08-23', 1602, 11149, 1148, 22497, '1.0000', '6.9347', '6.9347', '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 (11611, '2021-08-23', 2948, 11150, 1148, NULL, '1.0000', '0.9000', '0.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 (11612, '2021-08-23', 1528, 11151, 1148, 23618, '3.0000', '79.3921', '79.3921', '6.0000', '6.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 (11613, '2021-08-23', 1494, 11152, 1148, 23591, '1.0000', '7.2800', '7.2800', '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 (11614, '2021-08-23', 2487, 11153, 1148, 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 (11615, '2021-08-23', 1950, 11154, 1148, 6005, '1.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 (11616, '2021-08-23', 1518, 11155, 1148, 22639, '1.0000', '48.4650', '48.4650', '10.0000', '10.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 (11617, '2021-08-23', 1493, 11156, 1148, 18691, '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 (11618, '2021-08-23', 2136, 11157, 1148, 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 (11619, '2021-08-23', 2757, 11158, 1148, NULL, '1.0000', '6.8000', '6.8000', '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 (11620, '2021-08-23', 1694, 11159, 1148, 16694, '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 (11621, '2021-08-23', 1574, 11160, 1148, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '32.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 (11622, '2021-08-23', 2561, 11161, 1148, 7206, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11623, '2021-08-23', 2608, 11162, 1149, NULL, '1.0000', '83.3300', '83.3300', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11624, '2021-08-23', 1863, 11163, 1150, 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 (11625, '2021-08-23', 1912, 11164, 1150, 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 (11626, '2021-08-23', 1580, 11165, 1150, 19875, '1.0000', '0.9900', '0.9900', '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 (11627, '2021-08-23', 1855, 11166, 1150, 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 (11628, '2021-08-23', 1381, 11167, 1150, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (11629, '2021-08-23', 1867, 11168, 1150, 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 (11630, '2021-08-23', 1727, 11169, 1150, NULL, '1.0000', '1.9500', '1.9500', '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 (11631, '2021-08-23', 2315, 11170, 1150, 24937, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '60.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 (11632, '2021-08-23', 1651, 11171, 1150, 29640, '1.0000', '7.6717', '7.6717', '10.3500', '10.3500', '9.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11633, '2021-08-23', 3058, 11172, 1150, 24961, '1.0000', '4.3000', '4.3000', '6.0000', '6.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 (11634, '2021-08-23', 2916, 11173, 1150, 22610, '1.0000', '15.0176', '15.0176', '20.0000', '20.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 (11635, '2021-08-23', 2167, 11174, 1150, 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 (11636, '2021-08-23', 1912, 11175, 1150, 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 (11637, '2021-08-23', 1637, 11176, 1150, 19388, '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 (11638, '2021-08-23', 1621, 11177, 1150, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (11639, '2021-08-23', 2167, 11178, 1150, 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 (11640, '2021-08-23', 2280, 11179, 1150, 24952, '2.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '35.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 (11641, '2021-08-23', 3058, 11180, 1150, 24961, '1.0000', '4.3000', '4.3000', '6.0000', '6.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 (11642, '2021-08-23', 2167, 11181, 1150, 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 (11643, '2021-08-23', 2699, 11182, 1150, 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 (11644, '2021-08-23', 8084, 11183, 1150, 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 (11645, '2021-08-23', 1837, 11184, 1150, 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 (11646, '2021-08-23', 7394, 11185, 1150, NULL, '1.0000', '12.7400', '12.7400', '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 (11647, '2021-08-23', 7443, 11186, 1150, NULL, '1.0000', '6.8600', '6.8600', '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 (11648, '2021-08-23', 8000, 11187, 1150, NULL, '1.0000', '25.8200', '25.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 (11649, '2021-08-23', 1523, 11188, 1150, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '38.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 (11650, '2021-08-23', 8454, 11189, 1150, NULL, '1.0000', '5.1700', '5.1700', '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 (11651, '2021-08-23', 2089, 11190, 1150, 24196, '1.0000', '7.0900', '7.0900', '9.5000', '9.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 (11652, '2021-08-23', 2315, 11191, 1150, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '59.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 (11653, '2021-08-23', 1863, 11192, 1150, 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 (11654, '2021-08-23', 2076, 11193, 1150, 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 (11655, '2021-08-23', 2068, 11194, 1150, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.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 (11656, '2021-08-23', 2167, 11195, 1150, 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 (11657, '2021-08-23', 2241, 11196, 1150, 19367, '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 (11658, '2021-08-23', 2989, 11197, 1150, 22602, '1.0000', '0.9200', '0.9200', '1.0000', '1.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 (11659, '2021-08-23', 2167, 11198, 1150, 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 (11660, '2021-08-23', 7482, 11199, 1150, NULL, '1.0000', '3.0500', '3.0500', '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 (11661, '2021-08-23', 1381, 11200, 1150, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (11662, '2021-08-23', 2169, 11201, 1150, 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 (11663, '2021-08-23', 1771, 11202, 1150, 13766, '1.0000', '3.3900', '3.3900', '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 (11664, '2021-08-23', 1338, 11203, 1150, 18934, '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 (11665, '2021-08-23', 1863, 11204, 1150, 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 (11666, '2021-08-23', 2242, 11205, 1150, 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 (11667, '2021-08-23', 2295, 11206, 1150, 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 (11668, '2021-08-23', 8456, 11207, 1150, NULL, '1.0000', '5.5400', '5.5400', '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 (11669, '2021-08-23', 2315, 11208, 1150, 24937, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '60.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 (11670, '2021-08-23', 7913, 11209, 1150, NULL, '2.0000', '2.5500', '2.5500', '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 (11671, '2021-08-23', 1863, 11210, 1150, 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 (11672, '2021-08-23', 1596, 11211, 1150, 19850, '1.0000', '2.5700', '2.5700', '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 (11673, '2021-08-23', 2655, 11212, 1150, 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 (11674, '2021-08-23', 2167, 11213, 1150, 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 (11675, '2021-08-23', 2275, 11214, 1150, 24983, '1.0000', '1.0900', '1.0900', '1.5000', '1.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 (11676, '2021-08-23', 7459, 11215, 1151, NULL, '20.0000', '40.3500', '40.3500', '3.5000', '3.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 (11677, '2021-08-23', 2272, 11216, 1151, 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 (11678, '2021-08-23', 1884, 11217, 1151, 23698, '1.0000', '5.1300', '5.1300', '6.7700', '6.7700', '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 (11679, '2021-08-23', 7370, 11218, 1152, 30006, '1.0000', '27.6000', '27.6000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11680, '2021-08-23', 2327, 11219, 1152, 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 (11681, '2021-08-23', 7496, 11220, 1152, NULL, '1.0000', '0.9600', '0.9600', '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 (11682, '2021-08-23', 7357, 11221, 1152, 29997, '1.0000', '11.0000', '11.0000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11683, '2021-08-23', 7334, 11222, 1152, 30206, '1.0000', '8.1600', '8.1600', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11684, '2021-08-23', 7482, 11223, 1152, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11685, '2021-08-23', 1809, 11224, 1152, NULL, '1.0000', '9.2000', '9.2000', '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 (11686, '2021-08-23', 2104, 11225, 1152, NULL, '2.0000', '0.2000', '0.2000', '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 (11687, '2021-08-23', 8735, 11226, 1152, NULL, '1.0000', '5.6000', '5.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 (11688, '2021-08-23', 7753, 11227, 1152, NULL, '1.0000', '3.1400', '3.1400', '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 (11689, '2021-08-23', 7925, 11228, 1152, NULL, '1.0000', '11.8000', '11.8000', '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 (11690, '2021-08-23', 1339, 11229, 1152, 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 (11691, '2021-08-23', 7752, 11230, 1152, NULL, '1.0000', '3.0000', '3.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 (11692, '2021-08-23', 1365, 11231, 1152, 30173, '1.0000', '19.4900', '19.4900', '25.5000', '25.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11693, '2021-08-23', 8203, 11232, 1152, NULL, '2.0000', '9.8000', '9.8000', '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 (11694, '2021-08-23', 8328, 11233, 1152, NULL, '1.0000', '32.2000', '32.2000', '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 (11695, '2021-08-23', 7756, 11234, 1152, NULL, '1.0000', '2.5000', '2.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 (11696, '2021-08-23', 8918, 11235, 1152, NULL, '2.0000', '10.4000', '10.4000', '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 (11697, '2021-08-23', 7334, 11236, 1152, 30206, '1.0000', '8.1600', '8.1600', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11698, '2021-08-23', 8964, 11237, 1152, NULL, '1.0000', '7.3600', '7.3600', '0.2500', '0.2500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11699, '2021-08-23', 7780, 11238, 1152, NULL, '1.0000', '2.6000', '2.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 (11700, '2021-08-23', 7411, 11239, 1152, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11701, '2021-08-23', 7570, 11240, 1152, NULL, '1.0000', '10.0000', '10.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 (11702, '2021-08-23', 1750, 11241, 1152, 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 (11703, '2021-08-23', 8878, 11242, 1152, NULL, '1.0000', '6.6700', '6.6700', '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 (11704, '2021-08-23', 2318, 11243, 1152, NULL, '2.0000', '0.5000', '0.5000', '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 (11705, '2021-08-23', 8457, 11244, 1152, NULL, '1.0000', '0.7500', '0.7500', '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 (11706, '2021-08-23', 7482, 11245, 1152, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11707, '2021-08-23', 8094, 11246, 1152, NULL, '1.0000', '47.0000', '47.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 (11708, '2021-08-23', 7925, 11247, 1152, NULL, '1.0000', '11.8000', '11.8000', '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 (11709, '2021-08-23', 1457, 11248, 1152, 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 (11710, '2021-08-23', 2567, 11249, 1152, 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 (11711, '2021-08-23', 8516, 11250, 1152, NULL, '1.0000', '7.1000', '7.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 (11712, '2021-08-23', 8596, 11251, 1152, NULL, '1.0000', '17.0000', '17.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 (11713, '2021-08-23', 7709, 11252, 1152, NULL, '2.0000', '35.8000', '35.8000', '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 (11714, '2021-08-23', 7320, 11253, 1152, 29975, '2.0000', '7.9500', '7.9500', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11715, '2021-08-23', 1550, 11254, 1152, 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 (11716, '2021-08-23', 9167, 11255, 1152, NULL, '1.0000', '50.0000', '50.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 (11717, '2021-08-23', 1841, 11256, 1152, 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 (11718, '2021-08-23', 7544, 11257, 1152, NULL, '3.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (11719, '2021-08-23', 2289, 11258, 1152, 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 (11720, '2021-08-23', 2079, 11259, 1152, NULL, '2.0000', '2.3000', '2.3000', '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 (11721, '2021-08-23', 7518, 11260, 1152, NULL, '1.0000', '5.1300', '5.1300', '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 (11722, '2021-08-23', 9422, 11261, 1152, NULL, '1.0000', '4.3200', '4.3200', '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 (11723, '2021-08-23', 9001, 11262, 1153, NULL, '1.0000', '4.3300', '4.3300', '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 (11724, '2021-08-23', 1665, 11263, 1153, 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 (11725, '2021-08-23', 2154, 11264, 1153, 25161, '1.0000', '10.4743', '10.4743', '16.0000', '16.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 (11726, '2021-08-23', 1695, 11265, 1153, NULL, '1.0000', '13.1719', '13.1719', '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 (11727, '2021-08-23', 1863, 11266, 1153, 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 (11728, '2021-08-23', 1812, 11267, 1153, 29639, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11729, '2021-08-23', 2699, 11268, 1153, 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 (11730, '2021-08-23', 8413, 11269, 1154, NULL, '2.0000', '3.0000', '3.0000', '120.0000', '120.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 (11731, '2021-08-23', 1670, 11270, 1154, 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 (11732, '2021-08-23', 7638, 11271, 1154, 30222, '1.0000', '4.5000', '4.5000', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11733, '2021-08-23', 2992, 11272, 1154, 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 (11734, '2021-08-23', 2327, 11273, 1154, 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 (11735, '2021-08-23', 8608, 11274, 1154, NULL, '1.0000', '13.0000', '13.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 (11736, '2021-08-23', 7738, 11275, 1154, NULL, '1.0000', '8.0000', '8.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 (11737, '2021-08-23', 9424, 11276, 1154, NULL, '1.0000', '68.0000', '68.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 (11738, '2021-08-23', 9275, 11277, 1154, NULL, '1.0000', '6.3000', '6.3000', '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 (11739, '2021-08-23', 2068, 11278, 1155, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '0.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 (11740, '2021-08-23', 7778, 11279, 1155, NULL, '1.0000', '13.0100', '13.0100', '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 (11741, '2021-08-23', 2660, 11280, 1155, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (11742, '2021-08-23', 1386, 11281, 1155, 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 (11743, '2021-08-23', 2327, 11282, 1155, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '23.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 (11744, '2021-08-23', 1501, 11283, 1155, 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 (11745, '2021-08-23', 8127, 11284, 1156, NULL, '1.0000', '24.5300', '24.5300', '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 (11746, '2021-08-23', 1592, 11285, 1156, 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 (11747, '2021-08-23', 7848, 11286, 1156, NULL, '1.0000', '1.3500', '1.3500', '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 (11748, '2021-08-23', 1848, 11287, 1157, NULL, '10.0000', '0.4200', '0.4200', '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 (11749, '2021-08-23', 9403, 11288, 1157, NULL, '2.0000', '1.0000', '1.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 (11750, '2021-08-23', 7547, 11289, 1157, NULL, '4.0000', '0.0000', '0.0000', '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 (11751, '2021-08-23', 1499, 11290, 1158, 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 (11752, '2021-08-23', 7482, 11291, 1158, NULL, '1.0000', '3.0500', '3.0500', '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 (11753, '2021-08-23', 1302, 11292, 1158, 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 (11754, '2021-08-23', 1863, 11293, 1158, 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 (11755, '2021-08-23', 1620, 11294, 1158, 23135, '3.0000', '2.2300', '2.2300', '4.0000', '4.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 (11756, '2021-08-23', 1888, 11295, 1158, 29642, '1.0000', '180.5029', '180.5029', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11757, '2021-08-23', 1523, 11296, 1158, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '37.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 (11758, '2021-08-23', 2729, 11297, 1158, 19355, '1.0000', '3.2900', '3.2900', '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 (11759, '2021-08-23', 2272, 11298, 1158, 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 (11760, '2021-08-23', 1880, 11299, 1158, 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 (11761, '2021-08-23', 2242, 11300, 1158, 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 (11762, '2021-08-23', 2293, 11301, 1158, 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 (11763, '2021-08-23', 2655, 11302, 1158, 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 (11764, '2021-08-23', 7782, 11303, 1158, NULL, '1.0000', '5.0000', '5.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 (11765, '2021-08-23', 9193, 11304, 1159, NULL, '1.0000', '10.0000', '10.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 (11766, '2021-08-23', 8203, 11305, 1159, NULL, '5.0000', '9.8000', '9.8000', '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 (11767, '2021-08-23', 8247, 11306, 1159, NULL, '1.0000', '10.0000', '10.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 (11768, '2021-08-23', 8501, 11307, 1159, NULL, '1.0000', '47.0000', '47.0000', '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 (11769, '2021-08-23', 2891, 11308, 1159, NULL, '1.0000', '8.0000', '8.0000', '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 (11770, '2021-08-23', 2544, 11309, 1159, NULL, '1.0000', '6.8800', '6.8800', '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 (11771, '2021-08-23', 1937, 11310, 1159, 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 (11772, '2021-08-23', 1880, 11311, 1159, 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 (11773, '2021-08-23', 2302, 11312, 1159, 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 (11774, '2021-08-23', 1904, 11313, 1159, 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 (11775, '2021-08-23', 1413, 11314, 1159, 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 (11776, '2021-08-23', 9141, 11315, 1159, NULL, '10.0000', '9.5300', '9.5300', '0.4000', '0.4000', '-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 (11777, '2021-08-23', 1863, 11316, 1159, 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 (11778, '2021-08-23', 1519, 11317, 1159, NULL, '2.0000', '3.3500', '3.3500', '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 (11779, '2021-08-23', 1841, 11318, 1159, 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 (11780, '2021-08-23', 1840, 11319, 1159, NULL, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11781, '2021-08-23', 2777, 11320, 1159, 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 (11782, '2021-08-23', 7765, 11321, 1159, NULL, '2.0000', '16.0000', '16.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 (11783, '2021-08-23', 2777, 11322, 1159, 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 (11784, '2021-08-23', 2109, 11323, 1159, 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 (11785, '2021-08-23', 8668, 11324, 1159, NULL, '1.0000', '2.2000', '2.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 (11786, '2021-08-23', 7781, 11325, 1159, NULL, '3.0000', '4.2500', '4.2500', '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 (11787, '2021-08-23', 8166, 11326, 1159, NULL, '1.0000', '4.6000', '4.6000', '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 (11788, '2021-08-23', 1498, 11327, 1159, 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 (11789, '2021-08-23', 2060, 11328, 1159, 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 (11790, '2021-08-23', 2681, 11329, 1160, 24201, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '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 (11791, '2021-08-23', 2294, 11330, 1160, 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 (11792, '2021-08-23', 1512, 11331, 1160, 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 (11793, '2021-08-23', 1557, 11332, 1160, 29633, '1.0000', '7.7958', '7.7958', '10.3500', '10.3500', '4.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11794, '2021-08-23', 1501, 11333, 1160, 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 (11795, '2021-08-23', 2103, 11334, 1160, 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 (11796, '2021-08-23', 2699, 11335, 1160, 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 (11797, '2021-08-23', 7819, 11336, 1161, NULL, '1.0000', '9.5000', '9.5000', '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 (11798, '2021-08-23', 7359, 11337, 1161, 29998, '1.0000', '20.0000', '20.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11799, '2021-08-23', 1863, 11338, 1161, 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 (11800, '2021-08-23', 1818, 11339, 1161, NULL, '1.0000', '14.8000', '14.8000', '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 (11801, '2021-08-23', 7370, 11340, 1161, 30006, '2.0000', '27.6000', '27.6000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11802, '2021-08-23', 1809, 11341, 1161, NULL, '1.0000', '9.2000', '9.2000', '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 (11803, '2021-08-23', 2220, 11342, 1161, NULL, '1.0000', '5.2800', '5.2800', '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 (11804, '2021-08-23', 7848, 11343, 1161, NULL, '1.0000', '1.3500', '1.3500', '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 (11805, '2021-08-23', 9098, 11344, 1161, 30158, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11806, '2021-08-23', 8564, 11345, 1161, 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 (11807, '2021-08-23', 8840, 11346, 1161, NULL, '1.0000', '12.0000', '12.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 (11808, '2021-08-23', 2286, 11347, 1161, 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 (11809, '2021-08-23', 7776, 11348, 1161, NULL, '1.0000', '8.0000', '8.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 (11810, '2021-08-23', 7518, 11349, 1161, NULL, '1.0000', '5.1300', '5.1300', '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 (11811, '2021-08-23', 7507, 11350, 1161, NULL, '3.0000', '6.5000', '6.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 (11812, '2021-08-23', 7482, 11351, 1161, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11813, '2021-08-23', 7411, 11352, 1161, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11814, '2021-08-23', 7588, 11353, 1161, NULL, '1.0000', '1.5000', '1.5000', '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 (11815, '2021-08-23', 7831, 11354, 1161, NULL, '1.0000', '19.0000', '19.0000', '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 (11816, '2021-08-23', 7710, 11355, 1162, NULL, '2.0000', '26.0000', '26.0000', '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 (11817, '2021-08-23', 1425, 11356, 1162, 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 (11818, '2021-08-23', 8310, 11357, 1162, NULL, '1.0000', '22.5000', '22.5000', '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 (11819, '2021-08-23', 8166, 11358, 1162, NULL, '1.0000', '4.6000', '4.6000', '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 (11820, '2021-08-23', 7558, 11359, 1162, NULL, '10.0000', '33.0200', '33.0200', '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 (11821, '2021-08-23', 8300, 11360, 1162, NULL, '3.0000', '7.4300', '7.4300', '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 (11822, '2021-08-23', 9325, 11361, 1162, NULL, '3.0000', '92.0000', '92.0000', '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 (11823, '2021-08-23', 9326, 11362, 1162, NULL, '1.0000', '8.0000', '8.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 (11824, '2021-08-23', 7651, 11363, 1162, NULL, '1.0000', '5.0000', '5.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 (11825, '2021-08-23', 1304, 11364, 1162, NULL, '1.0000', '1.4500', '1.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 (11826, '2021-08-23', 2522, 11365, 1163, NULL, '1.0000', '4.8000', '4.8000', '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 (11827, '2021-08-23', 2289, 11366, 1164, 22482, '2.0000', '0.2300', '0.2300', '0.5000', '0.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 (11828, '2021-08-23', 1808, 11367, 1164, 4947, '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 (11829, '2021-08-23', 7741, 11368, 1164, NULL, '2.0000', '1.2000', '1.2000', '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 (11830, '2021-08-23', 3073, 11369, 1164, 27330, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11831, '2021-08-23', 7443, 11370, 1164, NULL, '1.0000', '6.8600', '6.8600', '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 (11832, '2021-08-23', 2331, 11371, 1164, 24324, '1.0000', '12.0700', '12.0700', '16.0000', '16.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 (11833, '2021-08-23', 8361, 11372, 1164, NULL, '1.0000', '4.5800', '4.5800', '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 (11834, '2021-08-23', 1519, 11373, 1164, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '16.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 (11835, '2021-08-23', 2618, 11374, 1164, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.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 (11836, '2021-08-23', 1837, 11375, 1164, 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 (11837, '2021-08-23', 1347, 11376, 1164, 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 (11838, '2021-08-23', 1409, 11377, 1164, 22230, '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 (11839, '2021-08-23', 2167, 11378, 1164, 22219, '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 (11840, '2021-08-23', 2135, 11379, 1164, 16894, '1.0000', '2.5000', '2.5000', '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 (11841, '2021-08-23', 2821, 11380, 1164, 17043, '1.0000', '3.5100', '3.5100', '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 (11842, '2021-08-23', 1602, 11381, 1164, 22497, '1.0000', '6.9347', '6.9347', '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 (11843, '2021-08-23', 2293, 11382, 1164, 3064, '2.0000', '1.4400', '1.4400', '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 (11844, '2021-08-23', 2411, 11383, 1164, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '16.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 (11845, '2021-08-23', 1602, 11384, 1164, 22497, '1.0000', '6.9347', '6.9347', '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 (11846, '2021-08-23', 2059, 11385, 1164, 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 (11847, '2021-08-23', 2034, 11386, 1164, 6416, '1.0000', '6.0000', '6.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 (11848, '2021-08-23', 2031, 11387, 1164, 27322, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11849, '2021-08-23', 9368, 11388, 1164, NULL, '1.0000', '9.3000', '9.3000', '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 (11850, '2021-08-23', 1621, 11389, 1164, 22227, '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 (11851, '2021-08-23', 1785, 11390, 1164, 29792, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11852, '2021-08-23', 2413, 11391, 1165, 24121, '3.0000', '1.0500', '1.0500', '1.5000', '1.5000', '42.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 (11853, '2021-08-23', 1867, 11392, 1165, 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 (11854, '2021-08-23', 2105, 11393, 1165, 2511, '1.0000', '1.3500', '1.3500', '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 (11855, '2021-08-23', 2270, 11394, 1165, 3110, '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 (11856, '2021-08-23', 1863, 11395, 1165, 11171, '1.0000', '1.2242', '1.2242', '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 (11857, '2021-08-23', 3029, 11396, 1165, NULL, '1.0000', '4.7700', '4.7700', '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 (11858, '2021-08-23', 2109, 11397, 1165, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (11859, '2021-08-23', 1941, 11398, 1165, 5601, '1.0000', '1.6000', '1.6000', '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 (11860, '2021-08-23', 1386, 11399, 1165, 17862, '1.0000', '90.0000', '90.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 (11861, '2021-08-23', 7518, 11400, 1165, NULL, '1.0000', '5.1300', '5.1300', '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 (11862, '2021-08-23', 1602, 11401, 1165, 22497, '1.0000', '6.9347', '6.9347', '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 (11863, '2021-08-23', 1841, 11402, 1165, 24123, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '27.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 (11864, '2021-08-23', 3002, 11403, 1166, 29641, '1.0000', '6.2000', '6.2000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11865, '2021-08-23', 2951, 11404, 1166, 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 (11866, '2021-08-23', 2379, 11405, 1166, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.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 (11867, '2021-08-23', 1651, 11406, 1166, 29640, '1.0000', '7.6717', '7.6717', '10.3500', '10.3500', '8.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11868, '2021-08-23', 2169, 11407, 1166, 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 (11869, '2021-08-23', 1912, 11408, 1166, 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 (11870, '2021-08-23', 1523, 11409, 1166, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '36.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 (11871, '2021-08-23', 1863, 11410, 1166, 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 (11872, '2021-08-23', 7819, 11411, 1166, NULL, '1.0000', '9.5000', '9.5000', '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 (11873, '2021-08-23', 2268, 11412, 1166, NULL, '1.0000', '7.3000', '7.3000', '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 (11874, '2021-08-23', 2765, 11413, 1166, 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 (11875, '2021-08-23', 9204, 11414, 1166, NULL, '1.0000', '8.1600', '8.1600', '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 (11876, '2021-08-23', 1904, 11415, 1166, 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 (11877, '2021-08-23', 2522, 11416, 1167, NULL, '1.0000', '4.8000', '4.8000', '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 (11878, '2021-08-23', 1810, 11417, 1167, 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 (11879, '2021-08-23', 8859, 11418, 1167, NULL, '1.0000', '7.0000', '7.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 (11880, '2021-08-23', 2522, 11419, 1167, NULL, '1.0000', '4.8000', '4.8000', '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 (11881, '2021-08-23', 1665, 11420, 1168, 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 (11882, '2021-08-23', 2951, 11421, 1169, 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 (11883, '2021-08-23', 1863, 11422, 1169, 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 (11884, '2021-08-23', 9295, 11423, 1170, NULL, '1.0000', '4.4000', '4.4000', '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 (11886, '2021-08-24', 1837, 11425, 1172, 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 (11887, '2021-08-24', 2409, 11426, 1172, 4818, '1.0000', '2.3100', '2.3100', '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 (11888, '2021-08-24', 2286, 11427, 1172, 18659, '2.0000', '4.3000', '4.3000', '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 (11889, '2021-08-24', 1386, 11428, 1172, 17862, '1.0000', '90.0000', '90.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 (11890, '2021-08-24', 1410, 11429, 1172, 11138, '1.0000', '2.2000', '2.2000', '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 (11891, '2021-08-24', 2451, 11430, 1172, 13555, '2.0000', '8.8000', '8.8000', '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 (11892, '2021-08-24', 2400, 11431, 1172, 11305, '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 (11893, '2021-08-24', 8086, 11432, 1172, NULL, '1.0000', '12.0000', '12.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 (11894, '2021-08-24', 1702, 11433, 1172, 25034, '1.0000', '68.3850', '68.3850', '20.0000', '20.0000', '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 (11895, '2021-08-24', 1504, 11434, 1172, 24111, '2.0000', '1.7015', '1.7015', '2.0000', '2.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 (11896, '2021-08-24', 1504, 11434, 1172, 24013, '8.0000', '1.7015', '1.7015', '2.0000', '2.0000', '52.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 (11897, '2021-08-24', 2866, 11435, 1172, 17783, '5.0000', '0.8800', '0.8800', '1.5000', '1.5000', '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 (11898, '2021-08-24', 1523, 11436, 1172, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '44.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 (11899, '2021-08-24', 8548, 11437, 1173, NULL, '1.0000', '12.0000', '12.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 (11900, '2021-08-24', 2028, 11438, 1173, 27320, '1.0000', '20.9753', '20.9753', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11901, '2021-08-24', 8965, 11439, 1174, NULL, '1.0000', '52.9900', '52.9900', '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 (11902, '2021-08-24', 8689, 11440, 1174, NULL, '1.0000', '16.6700', '16.6700', '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 (11903, '2021-08-24', 7401, 11441, 1174, NULL, '1.0000', '23.0900', '23.0900', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11904, '2021-08-24', 8825, 11442, 1174, NULL, '1.0000', '7.4000', '7.4000', '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 (11905, '2021-08-24', 7394, 11443, 1174, 30021, '2.0000', '12.7400', '12.7400', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11906, '2021-08-24', 7947, 11444, 1174, NULL, '1.0000', '14.4400', '14.4400', '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 (11907, '2021-08-24', 7477, 11445, 1174, NULL, '3.0000', '60.0000', '60.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 (11908, '2021-08-24', 8203, 11446, 1174, NULL, '4.0000', '9.8000', '9.8000', '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 (11909, '2021-08-24', 1904, 11447, 1174, 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 (11910, '2021-08-24', 2648, 11448, 1174, NULL, '1.0000', '5.4000', '5.4000', '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 (11911, '2021-08-24', 8882, 11449, 1174, NULL, '2.0000', '8.0000', '8.0000', '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 (11912, '2021-08-24', 7973, 11450, 1174, NULL, '1.0000', '15.9500', '15.9500', '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 (11913, '2021-08-24', 1629, 11451, 1174, NULL, '1.0000', '13.7900', '13.7900', '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 (11914, '2021-08-24', 7609, 11452, 1174, NULL, '1.0000', '4.3300', '4.3300', '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 (11915, '2021-08-24', 7711, 11453, 1174, NULL, '1.0000', '0.3900', '0.3900', '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 (11916, '2021-08-24', 8878, 11454, 1174, NULL, '2.0000', '6.6700', '6.6700', '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 (11917, '2021-08-24', 7354, 11455, 1174, 29994, '2.0000', '18.0000', '18.0000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11918, '2021-08-24', 7518, 11456, 1174, NULL, '1.0000', '5.1300', '5.1300', '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 (11919, '2021-08-24', 7715, 11457, 1174, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '49.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11920, '2021-08-24', 8063, 11458, 1174, NULL, '1.0000', '28.5000', '28.5000', '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 (11921, '2021-08-24', 8735, 11459, 1174, NULL, '1.0000', '5.6000', '5.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 (11922, '2021-08-24', 9269, 11460, 1174, 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 (11923, '2021-08-24', 8463, 11461, 1174, NULL, '1.0000', '18.0000', '18.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 (11924, '2021-08-24', 8038, 11462, 1174, NULL, '1.0000', '10.0000', '10.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 (11925, '2021-08-24', 7334, 11463, 1174, 30206, '1.0000', '8.1600', '8.1600', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11926, '2021-08-24', 7334, 11463, 1174, NULL, '1.0000', '8.1600', '8.1600', '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 (11927, '2021-08-24', 9399, 11464, 1174, NULL, '1.0000', '4.4000', '4.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 (11928, '2021-08-24', 9158, 11465, 1174, NULL, '1.0000', '3.7000', '3.7000', '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 (11929, '2021-08-24', 7778, 11466, 1174, NULL, '1.0000', '13.0100', '13.0100', '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 (11930, '2021-08-24', 2753, 11467, 1174, NULL, '1.0000', '4.8000', '4.8000', '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 (11931, '2021-08-24', 7659, 11468, 1174, NULL, '1.0000', '5.9700', '5.9700', '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 (11932, '2021-08-24', 1340, 11469, 1174, 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 (11933, '2021-08-24', 7412, 11470, 1174, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11934, '2021-08-24', 1837, 11471, 1174, 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 (11935, '2021-08-24', 7522, 11472, 1174, NULL, '1.0000', '5.2000', '5.2000', '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 (11936, '2021-08-24', 2440, 11473, 1174, NULL, '1.0000', '5.1000', '5.1000', '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 (11937, '2021-08-24', 1841, 11474, 1174, 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 (11938, '2021-08-24', 2315, 11475, 1174, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11939, '2021-08-24', 7674, 11476, 1174, NULL, '1.0000', '14.5000', '14.5000', '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 (11940, '2021-08-24', 7840, 11477, 1174, NULL, '11.0000', '4.0000', '4.0000', '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 (11941, '2021-08-24', 9274, 11478, 1174, NULL, '1.0000', '0.2500', '0.2500', '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 (11942, '2021-08-24', 8735, 11479, 1174, NULL, '1.0000', '5.6000', '5.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 (11943, '2021-08-24', 7881, 11480, 1174, NULL, '1.0000', '32.7700', '32.7700', '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 (11944, '2021-08-24', 7917, 11481, 1174, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11945, '2021-08-24', 8382, 11482, 1174, NULL, '1.0000', '1.5000', '1.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 (11946, '2021-08-24', 9394, 11483, 1174, NULL, '1.0000', '5.5000', '5.5000', '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 (11947, '2021-08-24', 8430, 11484, 1174, NULL, '1.0000', '44.1700', '44.1700', '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 (11948, '2021-08-24', 7565, 11485, 1174, NULL, '1.0000', '0.2000', '0.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 (11949, '2021-08-24', 9174, 11486, 1174, NULL, '1.0000', '21.0000', '21.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11950, '2021-08-24', 8825, 11487, 1174, NULL, '1.0000', '7.4000', '7.4000', '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 (11951, '2021-08-24', 2315, 11488, 1174, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11952, '2021-08-24', 7674, 11489, 1174, NULL, '1.0000', '14.5000', '14.5000', '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 (11953, '2021-08-24', 7641, 11490, 1174, NULL, '1.0000', '1.9000', '1.9000', '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 (11954, '2021-08-24', 8452, 11491, 1174, NULL, '1.0000', '4.1500', '4.1500', '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 (11955, '2021-08-24', 8304, 11492, 1174, NULL, '1.0000', '8.2400', '8.2400', '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 (11956, '2021-08-24', 7588, 11493, 1174, NULL, '1.0000', '1.5000', '1.5000', '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 (11957, '2021-08-24', 7775, 11494, 1174, NULL, '1.0000', '7.9800', '7.9800', '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 (11958, '2021-08-24', 7473, 11495, 1174, NULL, '5.0000', '9.2200', '9.2200', '0.6000', '0.6000', '-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 (11959, '2021-08-24', 7862, 11496, 1174, NULL, '1.0000', '17.8000', '17.8000', '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 (11960, '2021-08-24', 2284, 11497, 1175, 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 (11961, '2021-08-24', 1863, 11498, 1176, 11171, '1.0000', '1.2242', '1.2242', '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 (11962, '2021-08-24', 7715, 11499, 1177, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '48.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11963, '2021-08-24', 8452, 11500, 1177, NULL, '1.0000', '4.1500', '4.1500', '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 (11964, '2021-08-24', 8466, 11501, 1177, NULL, '2.0000', '9.8000', '9.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 (11965, '2021-08-24', 2145, 11502, 1178, 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 (11966, '2021-08-24', 2811, 11503, 1179, 16713, '1.0000', '3.4000', '3.4000', '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 (11967, '2021-08-24', 2167, 11504, 1179, 22219, '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 (11968, '2021-08-24', 2232, 11505, 1179, 24347, '1.0000', '28.9867', '28.9867', '40.0000', '40.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 (11969, '2021-08-24', 8677, 11506, 1179, NULL, '3.0000', '7.8000', '7.8000', '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 (11970, '2021-08-24', 7524, 11507, 1179, NULL, '1.0000', '11.9500', '11.9500', '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 (11971, '2021-08-24', 1706, 11508, 1179, 23621, '1.0000', '14.8866', '14.8866', '20.5000', '20.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 (11972, '2021-08-24', 1311, 11509, 1179, 5503, '1.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 (11973, '2021-08-24', 1311, 11509, 1179, 2485, '1.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 (11974, '2021-08-24', 7980, 11510, 1179, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (11975, '2021-08-24', 1689, 11511, 1179, 24286, '1.0000', '12.4637', '12.4637', '17.0000', '17.0000', '4.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 (11976, '2021-08-24', 2907, 11512, 1179, 18690, '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 (11977, '2021-08-24', 9345, 11513, 1179, NULL, '1.0000', '53.4600', '53.4600', '200.0000', '200.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11978, '2021-08-24', 2527, 11514, 1179, 15803, '1.0000', '40.0000', '40.0000', '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 (11979, '2021-08-24', 2548, 11515, 1179, 7125, '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 (11980, '2021-08-24', 1306, 11516, 1179, 2477, '3.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 (11981, '2021-08-24', 1306, 11516, 1179, 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 (11982, '2021-08-24', 2708, 11517, 1179, 24280, '1.0000', '33.9600', '33.9600', '55.0000', '55.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 (11983, '2021-08-24', 7383, 11518, 1179, NULL, '1.0000', '1.9700', '1.9700', '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 (11984, '2021-08-24', 2271, 11519, 1179, 14582, '1.0000', '12.0000', '12.0000', '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 (11985, '2021-08-24', 8841, 11520, 1179, NULL, '1.0000', '36.8600', '36.8600', '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 (11986, '2021-08-24', 1845, 11521, 1179, 4977, '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 (11987, '2021-08-24', 1863, 11522, 1179, 11171, '1.0000', '1.2242', '1.2242', '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 (11988, '2021-08-24', 2730, 11523, 1179, 21547, '1.0000', '1.2000', '1.2000', '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 (11989, '2021-08-24', 1761, 11524, 1179, 3182, '1.0000', '1.8200', '1.8200', '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 (11990, '2021-08-24', 1311, 11525, 1179, 5503, '1.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 (11991, '2021-08-24', 1311, 11525, 1179, 2485, '1.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 (11992, '2021-08-24', 2315, 11526, 1179, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '336.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11993, '2021-08-24', 2341, 11527, 1179, 29811, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11994, '2021-08-24', 2167, 11528, 1179, 22219, '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 (11995, '2021-08-24', 2143, 11529, 1179, 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 (11996, '2021-08-24', 1519, 11530, 1179, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '15.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 (11997, '2021-08-24', 1812, 11531, 1179, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.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 (11998, '2021-08-24', 1812, 11531, 1179, 18423, '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 (11999, '2021-08-24', 1912, 11532, 1180, 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 (12000, '2021-08-24', 2275, 11533, 1180, 24983, '1.0000', '1.0900', '1.0900', '1.5000', '1.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 (12001, '2021-08-24', 2320, 11534, 1180, 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 (12002, '2021-08-24', 1863, 11535, 1180, 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 (12003, '2021-08-24', 2547, 11536, 1180, 24205, '1.0000', '8.9650', '8.9650', '12.5000', '12.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 (12004, '2021-08-24', 1863, 11537, 1180, 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 (12005, '2021-08-24', 1692, 11538, 1180, 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 (12006, '2021-08-24', 2061, 11539, 1180, 25010, '1.0000', '10.9800', '10.9800', '16.0000', '16.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 (12007, '2021-08-24', 2951, 11540, 1180, 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 (12008, '2021-08-24', 2237, 11541, 1180, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (12009, '2021-08-24', 1580, 11542, 1180, 19875, '1.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 (12010, '2021-08-24', 2729, 11543, 1180, 19355, '1.0000', '3.2900', '3.2900', '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 (12011, '2021-08-24', 1691, 11544, 1180, 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 (12012, '2021-08-24', 2315, 11545, 1180, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '55.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 (12013, '2021-08-24', 1864, 11546, 1180, 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 (12014, '2021-08-24', 2740, 11547, 1180, 19346, '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 (12015, '2021-08-24', 1863, 11548, 1180, 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 (12016, '2021-08-24', 1695, 11549, 1180, NULL, '1.0000', '13.1719', '13.1719', '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 (12017, '2021-08-24', 1863, 11550, 1180, 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 (12018, '2021-08-24', 8038, 11551, 1180, NULL, '1.0000', '10.0000', '10.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 (12019, '2021-08-24', 1912, 11552, 1180, 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 (12020, '2021-08-24', 2169, 11553, 1180, 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 (12021, '2021-08-24', 1822, 11554, 1180, 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 (12022, '2021-08-24', 1523, 11555, 1180, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '35.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 (12023, '2021-08-24', 2974, 11556, 1180, 23155, '1.0000', '5.0000', '5.0000', '8.0000', '8.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 (12024, '2021-08-24', 2633, 11557, 1180, 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 (12025, '2021-08-24', 2254, 11558, 1181, 29808, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12026, '2021-08-24', 1851, 11559, 1181, 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 (12027, '2021-08-24', 2478, 11560, 1182, 5191, '1.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 (12028, '2021-08-24', 1689, 11561, 1183, 24286, '1.0000', '12.4637', '12.4637', '17.0000', '17.0000', '3.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 (12029, '2021-08-24', 2285, 11562, 1183, 22649, '1.0000', '35.8000', '35.8000', '48.0000', '48.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 (12030, '2021-08-24', 2281, 11563, 1183, 3121, '5.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 (12031, '2021-08-24', 2772, 11564, 1183, 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 (12032, '2021-08-24', 2320, 11565, 1183, 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 (12033, '2021-08-24', 2523, 11566, 1184, 23979, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '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 (12034, '2021-08-24', 1837, 11567, 1184, 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 (12035, '2021-08-24', 2729, 11568, 1184, 19355, '1.0000', '3.2900', '3.2900', '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 (12036, '2021-08-24', 2331, 11569, 1184, 24195, '1.0000', '12.0700', '12.0700', '16.0000', '16.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 (12037, '2021-08-24', 2730, 11570, 1184, 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 (12038, '2021-08-24', 2109, 11571, 1184, 24971, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '38.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 (12039, '2021-08-24', 2699, 11572, 1184, 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 (12040, '2021-08-24', 7630, 11573, 1184, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (12041, '2021-08-24', 1935, 11574, 1184, 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 (12042, '2021-08-24', 1863, 11575, 1184, 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 (12043, '2021-08-24', 1435, 11576, 1184, NULL, '1.0000', '18.5000', '18.5000', '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 (12044, '2021-08-24', 1763, 11577, 1184, 19383, '1.0000', '4.6900', '4.6900', '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 (12045, '2021-08-24', 1523, 11578, 1184, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '34.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 (12046, '2021-08-24', 1637, 11579, 1184, 19388, '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 (12047, '2021-08-24', 2169, 11580, 1184, 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 (12048, '2021-08-24', 1812, 11581, 1184, 29639, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12049, '2021-08-24', 1935, 11582, 1184, 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 (12050, '2021-08-24', 7606, 11583, 1184, NULL, '1.0000', '4.8600', '4.8600', '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 (12051, '2021-08-24', 1425, 11584, 1184, 24975, '1.0000', '6.5000', '6.5000', '9.0000', '9.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 (12052, '2021-08-24', 1505, 11585, 1184, 24956, '1.0000', '1071.9996', '1071.9996', '20.0000', '20.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 (12053, '2021-08-24', 1730, 11586, 1185, 24120, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '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 (12054, '2021-08-24', 2288, 11587, 1185, 17488, '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 (12055, '2021-08-24', 2250, 11588, 1185, 24340, '1.0000', '6.8900', '6.8900', '10.0000', '10.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 (12056, '2021-08-24', 2699, 11589, 1185, 21819, '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 (12057, '2021-08-24', 7674, 11590, 1185, NULL, '1.0000', '14.5000', '14.5000', '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 (12058, '2021-08-24', 1488, 11591, 1185, 13561, '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 (12059, '2021-08-24', 1689, 11592, 1185, 24286, '1.0000', '12.4637', '12.4637', '17.0000', '17.0000', '2.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 (12060, '2021-08-24', 7588, 11593, 1186, NULL, '1.0000', '1.5000', '1.5000', '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 (12061, '2021-08-24', 8430, 11594, 1186, NULL, '1.0000', '44.1700', '44.1700', '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 (12062, '2021-08-24', 7444, 11595, 1186, 30055, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12063, '2021-08-24', 7872, 11596, 1186, NULL, '1.0000', '48.7600', '48.7600', '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 (12064, '2021-08-24', 9425, 11597, 1186, NULL, '1.0000', '4.0000', '4.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 (12065, '2021-08-24', 8140, 11598, 1186, NULL, '1.0000', '6.0500', '6.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 (12066, '2021-08-24', 7612, 11599, 1186, NULL, '1.0000', '46.0000', '46.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 (12067, '2021-08-24', 7774, 11600, 1186, NULL, '1.0000', '3.5000', '3.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 (12068, '2021-08-24', 1542, 11601, 1186, 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 (12069, '2021-08-24', 9154, 11602, 1186, 30190, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12070, '2021-08-24', 3006, 11603, 1186, 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 (12071, '2021-08-24', 2557, 11604, 1186, 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 (12072, '2021-08-24', 8359, 11605, 1186, NULL, '1.0000', '6.9500', '6.9500', '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 (12073, '2021-08-24', 7610, 11606, 1186, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12074, '2021-08-24', 8497, 11607, 1186, NULL, '1.0000', '28.0000', '28.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 (12075, '2021-08-24', 1855, 11608, 1186, 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 (12076, '2021-08-24', 9337, 11609, 1186, NULL, '5.0000', '5.7200', '5.7200', '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 (12077, '2021-08-24', 7482, 11610, 1186, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12078, '2021-08-24', 2916, 11611, 1186, 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 (12079, '2021-08-24', 7782, 11612, 1186, NULL, '2.0000', '5.0000', '5.0000', '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 (12080, '2021-08-24', 9154, 11613, 1186, 30190, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12081, '2021-08-24', 2327, 11614, 1186, 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 (12082, '2021-08-24', 8463, 11615, 1186, NULL, '1.0000', '18.0000', '18.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 (12083, '2021-08-24', 8466, 11616, 1186, NULL, '5.0000', '9.8000', '9.8000', '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 (12084, '2021-08-24', 7802, 11617, 1186, NULL, '1.0000', '0.9200', '0.9200', '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 (12085, '2021-08-24', 7802, 11618, 1186, NULL, '3.0000', '0.9200', '0.9200', '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 (12086, '2021-08-24', 8668, 11619, 1186, NULL, '1.0000', '2.2000', '2.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 (12087, '2021-08-24', 1874, 11620, 1186, 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 (12088, '2021-08-24', 7473, 11621, 1186, NULL, '1.0000', '9.2200', '9.2200', '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 (12089, '2021-08-24', 7756, 11622, 1186, NULL, '1.0000', '2.5000', '2.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 (12090, '2021-08-24', 1904, 11623, 1186, 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 (12091, '2021-08-24', 7913, 11624, 1186, NULL, '2.0000', '2.5500', '2.5500', '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 (12092, '2021-08-24', 8813, 11625, 1186, NULL, '1.0000', '17.6000', '17.6000', '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 (12093, '2021-08-24', 2699, 11626, 1186, 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 (12094, '2021-08-24', 7339, 11627, 1186, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (12095, '2021-08-24', 7848, 11628, 1186, NULL, '1.0000', '1.3500', '1.3500', '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 (12096, '2021-08-24', 7641, 11629, 1186, NULL, '1.0000', '1.9000', '1.9000', '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 (12097, '2021-08-24', 7781, 11630, 1186, NULL, '6.0000', '4.2500', '4.2500', '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 (12098, '2021-08-24', 7411, 11631, 1186, 30171, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12099, '2021-08-24', 7457, 11632, 1186, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12100, '2021-08-24', 8127, 11633, 1186, NULL, '1.0000', '24.5300', '24.5300', '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 (12101, '2021-08-24', 1564, 11634, 1186, 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 (12102, '2021-08-24', 2821, 11635, 1186, NULL, '2.0000', '3.5100', '3.5100', '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 (12103, '2021-08-24', 7564, 11636, 1186, NULL, '1.0000', '6.4000', '6.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 (12104, '2021-08-24', 2060, 11637, 1186, 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 (12105, '2021-08-24', 7710, 11638, 1186, NULL, '2.0000', '26.0000', '26.0000', '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 (12106, '2021-08-24', 2906, 11639, 1186, 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 (12107, '2021-08-24', 7674, 11640, 1186, NULL, '1.0000', '14.5000', '14.5000', '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 (12108, '2021-08-24', 9021, 11641, 1186, NULL, '2.0000', '7.0000', '7.0000', '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 (12109, '2021-08-24', 2442, 11642, 1186, 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 (12110, '2021-08-24', 7736, 11643, 1186, NULL, '1.0000', '4.0000', '4.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 (12111, '2021-08-24', 8039, 11644, 1186, NULL, '1.0000', '34.6600', '34.6600', '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 (12112, '2021-08-24', 9275, 11645, 1186, NULL, '1.0000', '6.3000', '6.3000', '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 (12113, '2021-08-24', 7401, 11646, 1186, NULL, '1.0000', '23.0900', '23.0900', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12114, '2021-08-24', 7874, 11647, 1186, NULL, '1.0000', '19.0000', '19.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 (12115, '2021-08-24', 8346, 11648, 1186, NULL, '2.0000', '18.0000', '18.0000', '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 (12116, '2021-08-24', 7674, 11649, 1186, NULL, '1.0000', '14.5000', '14.5000', '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 (12117, '2021-08-24', 7715, 11650, 1186, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '47.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12118, '2021-08-24', 2060, 11651, 1186, 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 (12119, '2021-08-24', 7509, 11652, 1186, 30159, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12120, '2021-08-24', 8046, 11653, 1186, NULL, '10.0000', '39.0000', '39.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 (12121, '2021-08-24', 9274, 11654, 1186, NULL, '1.0000', '0.2500', '0.2500', '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 (12122, '2021-08-24', 2060, 11655, 1186, 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 (12123, '2021-08-24', 8363, 11656, 1186, NULL, '1.0000', '38.0000', '38.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 (12124, '2021-08-24', 7848, 11657, 1186, NULL, '1.0000', '1.3500', '1.3500', '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 (12125, '2021-08-24', 8654, 11658, 1186, NULL, '1.0000', '5.8000', '5.8000', '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 (12126, '2021-08-24', 7703, 11659, 1186, NULL, '1.0000', '22.9900', '22.9900', '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 (12127, '2021-08-24', 7672, 11660, 1186, NULL, '15.0000', '1.0200', '1.0200', '2.0000', '2.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 (12128, '2021-08-24', 7776, 11661, 1186, NULL, '1.0000', '8.0000', '8.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 (12129, '2021-08-24', 7660, 11662, 1186, NULL, '1.0000', '3.6000', '3.6000', '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 (12130, '2021-08-24', 2220, 11663, 1186, NULL, '1.0000', '5.2800', '5.2800', '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 (12131, '2021-08-24', 2650, 11664, 1187, 11098, '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 (12132, '2021-08-24', 2732, 11665, 1187, 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 (12133, '2021-08-24', 2221, 11666, 1187, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '16.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 (12134, '2021-08-24', 2443, 11667, 1187, 5828, '1.0000', '4.0000', '4.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 (12135, '2021-08-24', 9442, 11668, 1188, 30484, '1.0000', '30.0000', '30.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12136, '2021-08-24', 2169, 11669, 1188, NULL, '1.0000', '0.8869', '0.8869', '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 (12137, '2021-08-24', 2280, 11670, 1188, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '34.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 (12138, '2021-08-24', 1635, 11671, 1189, 13540, '15.0000', '90.0000', '90.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 (12139, '2021-08-24', 7378, 11672, 1190, 30169, '1.0000', '40.9567', '40.9567', '187.0000', '187.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12140, '2021-08-24', 1388, 11673, 1191, 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 (12141, '2021-08-24', 2699, 11674, 1191, 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 (12142, '2021-08-24', 1818, 11675, 1191, 19325, '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 (12143, '2021-08-24', 7879, 11676, 1191, NULL, '10.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (12144, '2021-08-24', 1519, 11677, 1191, 30682, '2.0000', '3.3500', '3.3500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12145, '2021-08-24', 2465, 11678, 1191, 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 (12146, '2021-08-24', 1420, 11679, 1191, 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 (12147, '2021-08-24', 1639, 11680, 1191, 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 (12148, '2021-08-24', 2293, 11681, 1191, 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 (12149, '2021-08-24', 1743, 11682, 1191, 29646, '1.0000', '4.6550', '4.6550', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12150, '2021-08-24', 2315, 11683, 1191, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '53.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 (12151, '2021-08-24', 1999, 11684, 1191, 22550, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '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 (12152, '2021-08-24', 1504, 11685, 1191, 30675, '10.0000', '1.5406', '1.5406', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12153, '2021-08-24', 2809, 11686, 1191, 23991, '1.0000', '28.0000', '28.0000', '35.0000', '35.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 (12154, '2021-08-24', 2431, 11687, 1191, 25152, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '5.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 (12155, '2021-08-25', 1602, 11688, 1192, 22497, '1.0000', '6.9347', '6.9347', '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 (12156, '2021-08-25', 1527, 11689, 1192, 25031, '1.0000', '96.1416', '96.1416', '17.5000', '17.5000', '5.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 (12157, '2021-08-25', 3064, 11690, 1192, NULL, '2.0000', '2.0000', '2.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 (12158, '2021-08-25', 2855, 11691, 1192, 17385, '6.0000', '4.0000', '4.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 (12159, '2021-08-25', 2602, 11692, 1192, 15795, '4.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 (12160, '2021-08-25', 2697, 11693, 1192, 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 (12161, '2021-08-25', 2136, 11694, 1192, 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 (12162, '2021-08-25', 2618, 11695, 1192, 10553, '1.0000', '4.1000', '4.1000', '5.5000', '5.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 (12163, '2021-08-25', 2379, 11696, 1192, 4385, '1.0000', '1.5900', '1.5900', '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 (12164, '2021-08-25', 2003, 11697, 1192, 6817, '2.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 (12165, '2021-08-25', 2003, 11697, 1192, NULL, '2.0000', '4.0000', '4.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 (12166, '2021-08-25', 1410, 11698, 1192, 11138, '1.0000', '2.2000', '2.2000', '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 (12167, '2021-08-25', 1410, 11698, 1192, 11139, '4.0000', '2.2000', '2.2000', '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 (12168, '2021-08-25', 2022, 11699, 1192, 4368, '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 (12169, '2021-08-25', 2022, 11699, 1192, 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 (12170, '2021-08-25', 2392, 11700, 1192, 11879, '2.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 (12171, '2021-08-25', 2020, 11701, 1192, 24118, '2.0000', '7.5000', '7.5000', '10.0000', '10.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 (12172, '2021-08-25', 2020, 11701, 1192, 13560, '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 (12173, '2021-08-25', 1673, 11702, 1192, 9409, '2.0000', '12.9000', '12.9000', '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 (12174, '2021-08-25', 2270, 11703, 1192, 3110, '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 (12175, '2021-08-25', 1602, 11704, 1192, 22497, '1.0000', '6.9347', '6.9347', '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 (12176, '2021-08-25', 2487, 11705, 1192, NULL, '2.0000', '30.0000', '30.0000', '30.0000', '30.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 (12177, '2021-08-25', 2485, 11706, 1192, 5197, '2.0000', '17.0000', '17.0000', '20.0000', '20.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 (12178, '2021-08-25', 7579, 11707, 1193, NULL, '2.0000', '15.0000', '15.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 (12179, '2021-08-25', 7482, 11708, 1193, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12180, '2021-08-25', 8594, 11709, 1193, NULL, '2.0000', '2.0000', '2.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 (12181, '2021-08-25', 7661, 11710, 1193, NULL, '1.0000', '7.2000', '7.2000', '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 (12182, '2021-08-25', 7881, 11711, 1193, NULL, '1.0000', '32.7700', '32.7700', '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 (12183, '2021-08-25', 7604, 11712, 1193, NULL, '1.0000', '4.3900', '4.3900', '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 (12184, '2021-08-25', 7411, 11713, 1193, 30171, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12185, '2021-08-25', 1501, 11714, 1193, 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 (12186, '2021-08-25', 2503, 11715, 1194, 10608, '1.0000', '16.0000', '16.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 (12187, '2021-08-25', 2169, 11716, 1194, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '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 (12188, '2021-08-25', 2416, 11717, 1194, 4827, '1.0000', '1.2000', '1.2000', '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 (12189, '2021-08-25', 1435, 11718, 1195, 30693, '1.0000', '24.5000', '24.5000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12190, '2021-08-25', 2167, 11719, 1195, 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 (12191, '2021-08-25', 2237, 11720, 1195, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (12192, '2021-08-25', 1521, 11721, 1195, 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 (12193, '2021-08-25', 1904, 11722, 1195, 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 (12194, '2021-08-25', 2743, 11723, 1195, 19377, '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 (12195, '2021-08-25', 2592, 11724, 1195, 25022, '1.0000', '7.9800', '7.9800', '11.0000', '11.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 (12196, '2021-08-25', 7981, 11725, 1195, NULL, '5.0000', '6.0000', '6.0000', '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 (12197, '2021-08-25', 1602, 11726, 1195, NULL, '1.0000', '7.0190', '7.0190', '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 (12198, '2021-08-25', 1967, 11727, 1195, 24193, '1.0000', '20.0200', '20.0200', '28.0000', '28.0000', '0.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 (12199, '2021-08-25', 2237, 11728, 1195, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (12200, '2021-08-25', 2298, 11729, 1195, 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 (12201, '2021-08-25', 1536, 11730, 1195, 30663, '14.0000', '370.9772', '370.9772', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12202, '2021-08-25', 1483, 11731, 1195, 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 (12203, '2021-08-25', 1824, 11732, 1195, 22367, '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 (12204, '2021-08-25', 7339, 11733, 1195, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (12205, '2021-08-25', 1624, 11734, 1195, 19341, '1.0000', '90.0000', '90.0000', '39.0000', '39.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12206, '2021-08-25', 2167, 11735, 1195, 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 (12207, '2021-08-25', 2393, 11736, 1195, 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 (12208, '2021-08-25', 2167, 11737, 1195, 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 (12209, '2021-08-25', 2315, 11738, 1195, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '51.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 (12210, '2021-08-25', 2250, 11739, 1195, 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 (12211, '2021-08-25', 1626, 11740, 1195, 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 (12212, '2021-08-25', 8063, 11741, 1196, NULL, '2.0000', '28.5000', '28.5000', '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 (12213, '2021-08-25', 9182, 11742, 1196, NULL, '1.0000', '10.0000', '10.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 (12214, '2021-08-25', 8744, 11743, 1196, NULL, '1.0000', '3.5000', '3.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 (12215, '2021-08-25', 7881, 11744, 1196, NULL, '1.0000', '32.7700', '32.7700', '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 (12216, '2021-08-25', 9399, 11745, 1196, NULL, '1.0000', '4.4000', '4.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 (12217, '2021-08-25', 7672, 11746, 1196, NULL, '1.0000', '1.0200', '1.0200', '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 (12218, '2021-08-25', 8657, 11747, 1196, NULL, '1.0000', '7.6000', '7.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 (12219, '2021-08-25', 7778, 11748, 1196, NULL, '1.0000', '13.0100', '13.0100', '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 (12220, '2021-08-25', 9422, 11749, 1196, NULL, '1.0000', '4.3200', '4.3200', '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 (12221, '2021-08-25', 9422, 11750, 1196, NULL, '1.0000', '4.3200', '4.3200', '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 (12222, '2021-08-25', 8363, 11751, 1196, NULL, '1.0000', '38.0000', '38.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 (12223, '2021-08-25', 8288, 11752, 1196, NULL, '3.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (12224, '2021-08-25', 2733, 11753, 1196, 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 (12225, '2021-08-25', 8417, 11754, 1196, NULL, '1.0000', '5.8000', '5.8000', '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 (12226, '2021-08-25', 8166, 11755, 1196, NULL, '1.0000', '4.6000', '4.6000', '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 (12227, '2021-08-25', 8608, 11756, 1196, NULL, '2.0000', '13.0000', '13.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 (12228, '2021-08-25', 7833, 11757, 1196, NULL, '1.0000', '14.0000', '14.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12229, '2021-08-25', 8043, 11758, 1196, NULL, '2.0000', '27.9800', '27.9800', '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 (12230, '2021-08-25', 9158, 11759, 1196, NULL, '1.0000', '3.7000', '3.7000', '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 (12231, '2021-08-25', 1947, 11760, 1196, NULL, '1.0000', '5.0000', '5.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 (12232, '2021-08-25', 7819, 11761, 1196, NULL, '1.0000', '9.5000', '9.5000', '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 (12233, '2021-08-25', 8137, 11762, 1196, NULL, '1.0000', '3.0000', '3.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 (12234, '2021-08-25', 7641, 11763, 1196, NULL, '1.0000', '1.9000', '1.9000', '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 (12235, '2021-08-25', 7638, 11764, 1196, 30222, '1.0000', '4.5000', '4.5000', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12236, '2021-08-25', 7551, 11765, 1196, NULL, '6.0000', '1.2700', '1.2700', '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 (12237, '2021-08-25', 9095, 11766, 1196, NULL, '1.0000', '17.5000', '17.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 (12238, '2021-08-25', 2315, 11767, 1196, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12239, '2021-08-25', 7333, 11768, 1196, 29984, '2.0000', '13.5000', '13.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12240, '2021-08-25', 7748, 11769, 1196, NULL, '1.0000', '33.9800', '33.9800', '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 (12241, '2021-08-25', 9399, 11770, 1196, NULL, '2.0000', '4.4000', '4.4000', '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 (12242, '2021-08-25', 8172, 11771, 1196, NULL, '1.0000', '40.7000', '40.7000', '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 (12243, '2021-08-25', 7509, 11772, 1196, 30159, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12244, '2021-08-25', 8474, 11773, 1196, NULL, '1.0000', '0.3600', '0.3600', '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 (12245, '2021-08-25', 7355, 11774, 1197, 29995, '1.0000', '11.6400', '11.6400', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12246, '2021-08-25', 7848, 11775, 1197, NULL, '2.0000', '1.3500', '1.3500', '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 (12247, '2021-08-25', 8408, 11776, 1197, NULL, '1.0000', '43.5700', '43.5700', '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 (12248, '2021-08-25', 8921, 11777, 1197, NULL, '1.0000', '7.0000', '7.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 (12249, '2021-08-25', 7394, 11778, 1197, 30021, '1.0000', '12.7400', '12.7400', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12250, '2021-08-25', 7725, 11779, 1197, NULL, '1.0000', '1.6600', '1.6600', '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 (12251, '2021-08-25', 2906, 11780, 1197, 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 (12252, '2021-08-25', 7736, 11781, 1197, NULL, '1.0000', '4.0000', '4.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 (12253, '2021-08-25', 2159, 11782, 1198, 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 (12254, '2021-08-25', 1672, 11783, 1198, 24288, '14.0000', '44.6198', '44.6198', '4.0000', '4.0000', '26.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 (12255, '2021-08-25', 7638, 11784, 1198, NULL, '1.0000', '4.5000', '4.5000', '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 (12256, '2021-08-25', 1824, 11785, 1198, 4959, '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 (12257, '2021-08-25', 2825, 11786, 1198, 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 (12258, '2021-08-25', 8163, 11787, 1198, NULL, '1.0000', '4.9000', '4.9000', '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 (12259, '2021-08-25', 2221, 11788, 1198, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '15.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 (12260, '2021-08-25', 1504, 11789, 1198, 24013, '10.0000', '1.7015', '1.7015', '2.0000', '2.0000', '42.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 (12261, '2021-08-25', 2699, 11790, 1198, 21819, '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 (12262, '2021-08-25', 2315, 11791, 1198, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '335.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12263, '2021-08-25', 1837, 11792, 1198, 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 (12264, '2021-08-25', 1574, 11793, 1198, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '31.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 (12265, '2021-08-25', 1613, 11794, 1198, 9421, '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 (12266, '2021-08-25', 2169, 11795, 1198, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '18.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 (12267, '2021-08-25', 2360, 11796, 1198, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '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 (12268, '2021-08-25', 1425, 11797, 1198, 21551, '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 (12269, '2021-08-25', 2302, 11798, 1198, 24104, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.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 (12270, '2021-08-25', 2604, 11799, 1198, 24001, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '3.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 (12271, '2021-08-25', 2183, 11800, 1198, 8166, '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 (12272, '2021-08-25', 7359, 11801, 1198, NULL, '1.0000', '20.0000', '20.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 (12273, '2021-08-25', 1772, 11802, 1198, 8427, '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 (12274, '2021-08-25', 1772, 11802, 1198, 4943, '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 (12275, '2021-08-25', 1812, 11803, 1198, 18423, '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 (12276, '2021-08-25', 2411, 11804, 1199, 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 (12277, '2021-08-25', 7353, 11805, 1199, NULL, '4.0000', '0.1900', '0.1900', '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 (12278, '2021-08-25', 2275, 11806, 1199, 24983, '2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '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 (12279, '2021-08-25', 2275, 11806, 1199, 19353, '2.0000', '1.0900', '1.0900', '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 (12280, '2021-08-25', 7482, 11807, 1199, NULL, '1.0000', '3.0500', '3.0500', '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 (12281, '2021-08-25', 7589, 11808, 1199, NULL, '1.0000', '1.7700', '1.7700', '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 (12282, '2021-08-25', 1863, 11809, 1199, NULL, '1.0000', '0.3450', '0.3450', '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 (12283, '2021-08-25', 2766, 11810, 1199, 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 (12284, '2021-08-25', 2327, 11811, 1199, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '22.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 (12285, '2021-08-25', 2354, 11812, 1199, 30690, '1.0000', '4.6000', '4.6000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12286, '2021-08-25', 1812, 11813, 1199, 30696, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12287, '2021-08-25', 2327, 11814, 1199, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '22.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 (12288, '2021-08-25', 7744, 11815, 1199, NULL, '1.0000', '1.9000', '1.9000', '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 (12289, '2021-08-25', 8497, 11816, 1199, NULL, '1.0000', '28.0000', '28.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 (12290, '2021-08-25', 1580, 11817, 1199, 19875, '1.0000', '0.9900', '0.9900', '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 (12291, '2021-08-25', 2163, 11818, 1199, 23162, '1.0000', '22.0000', '22.0000', '31.5000', '31.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 (12292, '2021-08-25', 1805, 11819, 1199, 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 (12293, '2021-08-25', 2729, 11820, 1199, 19355, '1.0000', '3.2900', '3.2900', '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 (12294, '2021-08-25', 2327, 11821, 1199, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '22.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 (12295, '2021-08-25', 8163, 11822, 1199, NULL, '1.0000', '4.9000', '4.9000', '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 (12296, '2021-08-25', 7710, 11823, 1199, NULL, '2.0000', '26.0000', '26.0000', '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 (12297, '2021-08-25', 2857, 11824, 1199, 23130, '1.0000', '17.0000', '17.0000', '23.0000', '23.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 (12298, '2021-08-25', 1632, 11825, 1199, 19826, '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 (12299, '2021-08-25', 2602, 11826, 1199, 24876, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '1.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 (12300, '2021-08-25', 2290, 11827, 1199, 19877, '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 (12301, '2021-08-25', 2292, 11828, 1199, NULL, '1.0000', '55.0000', '55.0000', '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 (12302, '2021-08-25', 1761, 11829, 1199, 19369, '1.0000', '1.8200', '1.8200', '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 (12303, '2021-08-25', 2277, 11830, 1199, NULL, '5.0000', '0.7800', '0.7800', '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 (12304, '2021-08-25', 1328, 11831, 1199, 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 (12305, '2021-08-25', 3002, 11832, 1199, 30660, '1.0000', '6.2000', '6.2000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12306, '2021-08-25', 8876, 11833, 1199, NULL, '1.0000', '0.9900', '0.9900', '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 (12307, '2021-08-25', 2384, 11834, 1199, 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 (12308, '2021-08-25', 2320, 11835, 1199, 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 (12309, '2021-08-25', 2289, 11836, 1199, 13744, '6.0000', '0.2300', '0.2300', '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 (12310, '2021-08-25', 1812, 11837, 1199, 30696, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12311, '2021-08-25', 2699, 11838, 1199, 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 (12312, '2021-08-25', 8451, 11839, 1199, NULL, '1.0000', '8.5000', '8.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 (12313, '2021-08-25', 2119, 11840, 1199, NULL, '1.0000', '30.0000', '30.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 (12314, '2021-08-25', 2729, 11841, 1199, 19355, '1.0000', '3.2900', '3.2900', '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 (12315, '2021-08-25', 8638, 11842, 1199, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12316, '2021-08-25', 1674, 11843, 1199, 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 (12317, '2021-08-25', 2338, 11844, 1199, 19857, '2.0000', '9.6300', '9.6300', '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 (12318, '2021-08-25', 8638, 11845, 1199, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12319, '2021-08-25', 7756, 11846, 1199, NULL, '1.0000', '2.5000', '2.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 (12320, '2021-08-25', 8205, 11847, 1199, NULL, '1.0000', '2.9500', '2.9500', '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 (12321, '2021-08-25', 1512, 11848, 1199, 30672, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12322, '2021-08-25', 2386, 11849, 1199, 29634, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12323, '2021-08-25', 2259, 11850, 1199, 23136, '1.0000', '20.0000', '20.0000', '27.0000', '27.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 (12324, '2021-08-25', 2280, 11851, 1200, 21586, '1.0000', '1.9000', '1.9000', '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 (12325, '2021-08-25', 2135, 11852, 1200, 16894, '1.0000', '2.5000', '2.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 (12326, '2021-08-25', 7339, 11853, 1200, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (12327, '2021-08-25', 2315, 11854, 1200, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '333.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12328, '2021-08-25', 2865, 11855, 1200, 17870, '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 (12329, '2021-08-25', 1502, 11856, 1200, 9542, '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 (12330, '2021-08-25', 1689, 11857, 1200, 24286, '2.0000', '12.4637', '12.4637', '17.0000', '17.0000', '0.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 (12331, '2021-08-25', 1574, 11858, 1200, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.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 (12332, '2021-08-25', 2916, 11859, 1200, 22658, '1.0000', '13.7500', '13.7500', '20.0000', '20.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 (12333, '2021-08-25', 1612, 11860, 1200, 9422, '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 (12334, '2021-08-25', 1530, 11861, 1200, 23619, '1.0000', '80.6158', '80.6158', '38.0000', '38.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 (12335, '2021-08-25', 2477, 11862, 1200, 5190, '1.0000', '8.0000', '8.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 (12336, '2021-08-25', 2263, 11863, 1200, 13624, '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 (12337, '2021-08-25', 2459, 11864, 1200, 24262, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.5000', '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 (12338, '2021-08-25', 2459, 11864, 1200, 24004, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.5000', '5.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 (12339, '2021-08-25', 1347, 11865, 1200, 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 (12340, '2021-08-25', 1787, 11866, 1200, 4930, '1.0000', '0.8100', '0.8100', '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 (12341, '2021-08-25', 1837, 11867, 1200, 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 (12342, '2021-08-25', 1772, 11868, 1200, 4943, '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 (12343, '2021-08-25', 1592, 11869, 1200, 22657, '1.0000', '43.5941', '43.5941', '47.0000', '47.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 (12344, '2021-08-25', 1693, 11870, 1200, 11006, '1.0000', '7.8600', '7.8600', '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 (12345, '2021-08-25', 2317, 11871, 1200, 15799, '2.0000', '15.0000', '15.0000', '18.0000', '18.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 (12346, '2021-08-25', 2293, 11872, 1201, NULL, '5.0000', '1.4400', '1.4400', '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 (12347, '2021-08-25', 1518, 11873, 1201, 29651, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12348, '2021-08-25', 7781, 11874, 1202, NULL, '2.0000', '4.2500', '4.2500', '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 (12349, '2021-08-25', 8355, 11875, 1202, NULL, '1.0000', '18.0000', '18.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 (12350, '2021-08-25', 8974, 11876, 1202, NULL, '2.0000', '5.4000', '5.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 (12351, '2021-08-25', 9273, 11877, 1202, NULL, '1.0000', '0.3500', '0.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 (12352, '2021-08-25', 2060, 11878, 1202, 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 (12353, '2021-08-25', 7702, 11879, 1202, NULL, '1.0000', '0.4600', '0.4600', '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 (12354, '2021-08-25', 7473, 11880, 1202, NULL, '2.0000', '9.2200', '9.2200', '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 (12355, '2021-08-25', 9411, 11881, 1202, NULL, '1.0000', '6.8700', '6.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 (12356, '2021-08-25', 7814, 11882, 1202, NULL, '1.0000', '13.0000', '13.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 (12357, '2021-08-25', 7317, 11883, 1202, 29972, '1.0000', '19.5500', '19.5500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12358, '2021-08-25', 9320, 11884, 1202, 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 (12359, '2021-08-25', 7917, 11885, 1202, NULL, '1.0000', '5.0000', '5.0000', '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 (12360, '2021-08-25', 8097, 11886, 1202, NULL, '3.0000', '7.6800', '7.6800', '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 (12361, '2021-08-25', 2102, 11887, 1202, 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 (12362, '2021-08-25', 7781, 11888, 1202, NULL, '4.0000', '4.2500', '4.2500', '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 (12363, '2021-08-25', 7779, 11889, 1202, NULL, '1.0000', '0.6200', '0.6200', '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 (12364, '2021-08-25', 7589, 11890, 1202, NULL, '1.0000', '1.7700', '1.7700', '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 (12365, '2021-08-25', 7606, 11891, 1202, 30201, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12366, '2021-08-25', 9340, 11892, 1202, NULL, '1.0000', '26.2800', '26.2800', '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 (12367, '2021-08-25', 7708, 11893, 1202, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12368, '2021-08-25', 8382, 11894, 1202, NULL, '1.0000', '1.5000', '1.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 (12369, '2021-08-25', 8698, 11895, 1202, NULL, '1.0000', '2.0000', '2.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 (12370, '2021-08-25', 8175, 11896, 1202, NULL, '1.0000', '12.5000', '12.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 (12371, '2021-08-25', 8319, 11897, 1202, 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 (12372, '2021-08-25', 7728, 11898, 1202, NULL, '2.0000', '0.1300', '0.1300', '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 (12373, '2021-08-25', 9095, 11899, 1202, NULL, '1.0000', '17.5000', '17.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 (12374, '2021-08-25', 1993, 11900, 1202, 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 (12375, '2021-08-25', 8835, 11901, 1202, NULL, '2.0000', '5.8900', '5.8900', '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 (12376, '2021-08-25', 2318, 11902, 1202, 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 (12377, '2021-08-25', 9214, 11903, 1202, NULL, '1.0000', '5.0000', '5.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 (12378, '2021-08-25', 8228, 11904, 1202, NULL, '1.0000', '25.0000', '25.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 (12379, '2021-08-25', 7609, 11905, 1202, NULL, '1.0000', '4.3300', '4.3300', '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 (12380, '2021-08-25', 7588, 11906, 1202, NULL, '1.0000', '1.5000', '1.5000', '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 (12381, '2021-08-25', 8878, 11907, 1202, NULL, '1.0000', '6.6700', '6.6700', '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 (12382, '2021-08-25', 7448, 11908, 1202, 30058, '1.0000', '15.8500', '15.8500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12383, '2021-08-25', 7781, 11909, 1202, NULL, '3.0000', '4.2500', '4.2500', '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 (12384, '2021-08-25', 2289, 11910, 1202, NULL, '4.0000', '0.2300', '0.2300', '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 (12385, '2021-08-25', 8328, 11911, 1202, NULL, '1.0000', '32.2000', '32.2000', '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 (12386, '2021-08-25', 7859, 11912, 1202, NULL, '1.0000', '3.6000', '3.6000', '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 (12387, '2021-08-25', 7641, 11913, 1202, NULL, '1.0000', '1.9000', '1.9000', '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 (12388, '2021-08-25', 2135, 11914, 1202, 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 (12389, '2021-08-25', 1863, 11915, 1202, 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 (12390, '2021-08-25', 7428, 11916, 1202, 30148, '4.0000', '744.9056', '744.9056', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12391, '2021-08-25', 1592, 11917, 1202, 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 (12392, '2021-08-25', 7576, 11918, 1202, NULL, '4.0000', '6.9100', '6.9100', '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 (12393, '2021-08-25', 2142, 11919, 1202, 30882, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12394, '2021-08-25', 8714, 11920, 1202, NULL, '1.0000', '8.7000', '8.7000', '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 (12395, '2021-08-25', 7509, 11921, 1202, 30883, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12396, '2021-08-25', 2382, 11922, 1202, NULL, '1.0000', '15.6600', '15.6600', '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 (12397, '2021-08-25', 8015, 11923, 1202, NULL, '1.0000', '6.0000', '6.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 (12398, '2021-08-25', 2227, 11924, 1202, NULL, '2.0000', '14.0000', '14.0000', '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 (12399, '2021-08-25', 2226, 11925, 1202, NULL, '2.0000', '14.0000', '14.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 (12400, '2021-08-25', 7885, 11926, 1202, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12401, '2021-08-25', 7518, 11927, 1202, NULL, '1.0000', '5.1300', '5.1300', '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 (12402, '2021-08-25', 2056, 11928, 1202, 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 (12403, '2021-08-25', 7411, 11929, 1202, 30171, '3.0000', '1.3500', '1.3500', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12404, '2021-08-25', 7415, 11930, 1202, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '12.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12405, '2021-08-25', 1935, 11931, 1202, NULL, '4.0000', '90.0000', '90.0000', '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 (12406, '2021-08-25', 7672, 11932, 1202, NULL, '2.0000', '1.0200', '1.0200', '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 (12407, '2021-08-25', 7709, 11933, 1202, NULL, '2.0000', '35.8000', '35.8000', '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 (12408, '2021-08-25', 7564, 11934, 1202, 30793, '1.0000', '1678.0276', '1678.0276', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12409, '2021-08-25', 7822, 11935, 1202, NULL, '1.0000', '5.6000', '5.6000', '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 (12410, '2021-08-25', 1674, 11936, 1202, 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 (12411, '2021-08-25', 8638, 11937, 1203, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12412, '2021-08-25', 1523, 11938, 1203, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '33.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 (12413, '2021-08-25', 1935, 11939, 1204, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '14.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 (12414, '2021-08-25', 1780, 11940, 1204, NULL, '1.0000', '35.6000', '35.6000', '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 (12415, '2021-08-25', 1373, 11941, 1204, 4816, '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 (12416, '2021-08-25', 1863, 11942, 1204, 11171, '1.0000', '1.2242', '1.2242', '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 (12417, '2021-08-25', 2289, 11943, 1204, 22482, '4.0000', '0.2300', '0.2300', '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 (12418, '2021-08-25', 1645, 11944, 1204, 3262, '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 (12419, '2021-08-25', 2135, 11945, 1204, 16894, '1.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 (12420, '2021-08-26', 2995, 11946, 1205, NULL, '4.0000', '39.7000', '39.7000', '17.5000', '17.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 (12421, '2021-08-26', 9456, 11947, 1206, NULL, '1.0000', '3.3200', '3.3200', '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 (12422, '2021-08-26', 2135, 11948, 1207, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '19.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 (12423, '2021-08-26', 2169, 11949, 1207, NULL, '2.0000', '1.1300', '1.1300', '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 (12424, '2021-08-26', 2360, 11950, 1207, 19865, '2.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (12425, '2021-08-26', 7819, 11951, 1207, NULL, '1.0000', '9.5000', '9.5000', '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 (12426, '2021-08-26', 2167, 11952, 1207, 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 (12427, '2021-08-26', 2681, 11953, 1207, 24201, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '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 (12428, '2021-08-26', 2233, 11954, 1207, 30662, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12429, '2021-08-26', 2037, 11955, 1207, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '21.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 (12430, '2021-08-26', 1504, 11956, 1207, 30675, '10.0000', '1.5406', '1.5406', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12431, '2021-08-26', 2866, 11957, 1207, 18927, '9.0000', '0.8800', '0.8800', '1.5000', '1.5000', '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 (12432, '2021-08-26', 2315, 11958, 1207, 24937, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '50.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 (12433, '2021-08-26', 1837, 11959, 1207, 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 (12434, '2021-08-26', 1912, 11960, 1207, 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 (12435, '2021-08-26', 2866, 11961, 1207, 18927, '2.0000', '0.8800', '0.8800', '1.5000', '1.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 (12436, '2021-08-26', 2253, 11962, 1207, 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 (12437, '2021-08-26', 2730, 11963, 1207, 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 (12438, '2021-08-26', 8595, 11964, 1207, 29628, '1.0000', '4.2100', '4.2100', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12439, '2021-08-26', 2169, 11965, 1207, NULL, '1.0000', '1.1300', '1.1300', '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 (12440, '2021-08-26', 1910, 11966, 1208, 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 (12441, '2021-08-26', 1657, 11967, 1208, NULL, '8.0000', '90.0000', '90.0000', '0.6000', '0.6000', '-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 (12442, '2021-08-26', 1574, 11968, 1208, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.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 (12443, '2021-08-26', 2825, 11969, 1208, 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 (12444, '2021-08-26', 1993, 11970, 1208, 6450, '1.0000', '0.6000', '0.6000', '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 (12445, '2021-08-26', 2405, 11971, 1208, 18407, '5.0000', '1.2000', '1.2000', '1.6000', '1.6000', '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 (12446, '2021-08-26', 1602, 11972, 1208, 13523, '1.0000', '6.9347', '6.9347', '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 (12447, '2021-08-26', 2161, 11973, 1208, 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 (12448, '2021-08-26', 1912, 11974, 1208, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12449, '2021-08-26', 1514, 11975, 1209, 1516, '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 (12450, '2021-08-26', 2699, 11976, 1210, 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 (12451, '2021-08-26', 2298, 11977, 1210, 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 (12452, '2021-08-26', 1521, 11978, 1210, 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 (12453, '2021-08-26', 2738, 11979, 1210, 19348, '2.0000', '7.6000', '7.6000', '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 (12454, '2021-08-26', 2975, 11980, 1210, 22402, '1.0000', '6.0000', '6.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 (12455, '2021-08-26', 2315, 11981, 1210, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '48.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 (12456, '2021-08-26', 2167, 11982, 1210, 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 (12457, '2021-08-26', 8413, 11983, 1211, NULL, '1.0000', '3.0000', '3.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 (12458, '2021-08-26', 7411, 11984, 1212, 30171, '5.0000', '1.3500', '1.3500', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12459, '2021-08-26', 7411, 11985, 1212, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12460, '2021-08-26', 9274, 11986, 1212, NULL, '1.0000', '0.2500', '0.2500', '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 (12461, '2021-08-26', 9154, 11987, 1212, 31011, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12462, '2021-08-26', 7787, 11988, 1212, NULL, '1.0000', '3.9600', '3.9600', '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 (12463, '2021-08-26', 7899, 11989, 1212, 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 (12464, '2021-08-26', 9178, 11990, 1212, 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 (12465, '2021-08-26', 7641, 11991, 1212, NULL, '1.0000', '1.9000', '1.9000', '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 (12466, '2021-08-26', 8101, 11992, 1212, NULL, '2.0000', '21.7000', '21.7000', '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 (12467, '2021-08-26', 8057, 11993, 1212, NULL, '1.0000', '6.0000', '6.0000', '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 (12468, '2021-08-26', 7427, 11994, 1212, 30042, '1.0000', '3.4000', '3.4000', '45.0000', '45.0000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12469, '2021-08-26', 8515, 11995, 1212, NULL, '2.0000', '28.0200', '28.0200', '1.8000', '1.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 (12470, '2021-08-26', 7914, 11996, 1212, NULL, '1.0000', '19.0000', '19.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 (12471, '2021-08-26', 8308, 11997, 1212, NULL, '1.0000', '11.0000', '11.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 (12472, '2021-08-26', 7411, 11998, 1212, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12473, '2021-08-26', 7674, 11999, 1212, NULL, '1.0000', '14.5000', '14.5000', '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 (12474, '2021-08-26', 7412, 12000, 1212, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12475, '2021-08-26', 8097, 12001, 1212, NULL, '4.0000', '7.6800', '7.6800', '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 (12476, '2021-08-26', 7438, 12002, 1212, 30150, '1.0000', '28.6900', '28.6900', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12477, '2021-08-26', 7430, 12003, 1212, 30046, '1.0000', '15.0000', '15.0000', '64.0000', '64.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12478, '2021-08-26', 7593, 12004, 1212, 30994, '2.0000', '2.4500', '2.4500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12479, '2021-08-26', 7632, 12005, 1212, 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 (12480, '2021-08-26', 8036, 12006, 1212, 30218, '2.0000', '6.5100', '6.5100', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12481, '2021-08-26', 7576, 12007, 1212, NULL, '8.0000', '6.9100', '6.9100', '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 (12482, '2021-08-26', 8355, 12008, 1212, NULL, '1.0000', '18.0000', '18.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 (12483, '2021-08-26', 9184, 12009, 1212, NULL, '1.0000', '3.9000', '3.9000', '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 (12484, '2021-08-26', 7415, 12010, 1212, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12485, '2021-08-26', 8964, 12011, 1212, NULL, '4.0000', '7.3600', '7.3600', '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 (12486, '2021-08-26', 7330, 12012, 1212, 29981, '1.0000', '3.0500', '3.0500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12487, '2021-08-26', 8186, 12013, 1212, NULL, '3.0000', '1.0800', '1.0800', '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 (12488, '2021-08-26', 7674, 12014, 1212, NULL, '1.0000', '14.5000', '14.5000', '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 (12489, '2021-08-26', 2925, 12015, 1212, NULL, '1.0000', '5.0000', '5.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 (12490, '2021-08-26', 2167, 12016, 1213, 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 (12491, '2021-08-26', 7769, 12017, 1213, 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 (12492, '2021-08-26', 7886, 12018, 1213, NULL, '1.0000', '14.5000', '14.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 (12493, '2021-08-26', 7641, 12019, 1213, NULL, '1.0000', '1.9000', '1.9000', '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 (12494, '2021-08-26', 1912, 12020, 1213, 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 (12495, '2021-08-26', 7973, 12021, 1214, NULL, '1.0000', '15.9500', '15.9500', '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 (12496, '2021-08-26', 7412, 12022, 1214, 30160, '2.0000', '1.5200', '1.5200', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12497, '2021-08-26', 8456, 12023, 1214, 30210, '1.0000', '5.5400', '5.5400', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12498, '2021-08-26', 8456, 12023, 1214, NULL, '1.0000', '5.5400', '5.5400', '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 (12499, '2021-08-26', 7658, 12024, 1214, NULL, '10.0000', '10.1500', '10.1500', '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 (12500, '2021-08-26', 8878, 12025, 1214, NULL, '1.0000', '6.6700', '6.6700', '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 (12501, '2021-08-26', 7674, 12026, 1214, NULL, '2.0000', '14.5000', '14.5000', '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 (12502, '2021-08-26', 7819, 12027, 1214, NULL, '1.0000', '9.5000', '9.5000', '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 (12503, '2021-08-26', 8654, 12028, 1214, NULL, '1.0000', '5.8000', '5.8000', '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 (12504, '2021-08-26', 2573, 12029, 1215, NULL, '1.0000', '8.0000', '8.0000', '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 (12505, '2021-08-26', 1665, 12030, 1215, 30683, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12506, '2021-08-26', 2254, 12031, 1215, 22382, '1.0000', '17.9400', '17.9400', '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 (12507, '2021-08-26', 1519, 12032, 1215, 30682, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12508, '2021-08-26', 7633, 12033, 1216, NULL, '1.0000', '2.8700', '2.8700', '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 (12509, '2021-08-26', 2060, 12034, 1216, 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 (12510, '2021-08-26', 2227, 12035, 1216, 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 (12511, '2021-08-26', 7674, 12036, 1216, NULL, '2.0000', '14.5000', '14.5000', '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 (12512, '2021-08-26', 1559, 12037, 1217, 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 (12513, '2021-08-26', 2379, 12038, 1217, NULL, '1.0000', '1.8000', '1.8000', '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 (12514, '2021-08-26', 7564, 12039, 1217, NULL, '1.0000', '0.6400', '0.6400', '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 (12515, '2021-08-26', 2876, 12040, 1218, 17901, '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 (12516, '2021-08-26', 1592, 12041, 1218, 22657, '1.0000', '43.5941', '43.5941', '47.0000', '47.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 (12517, '2021-08-26', 2327, 12042, 1218, 12242, '5.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 (12518, '2021-08-26', 2327, 12042, 1218, 5084, '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 (12519, '2021-08-26', 7592, 12043, 1218, NULL, '1.0000', '8.6500', '8.6500', '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 (12520, '2021-08-26', 1315, 12044, 1218, 2486, '1.0000', '20.9000', '20.9000', '27.5000', '27.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 (12521, '2021-08-26', 7756, 12045, 1218, NULL, '1.0000', '2.5000', '2.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 (12522, '2021-08-26', 2237, 12046, 1218, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '25.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 (12523, '2021-08-26', 2277, 12047, 1218, 3117, '2.0000', '0.7800', '0.7800', '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 (12524, '2021-08-26', 2248, 12048, 1218, NULL, '1.0000', '2.5000', '2.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 (12525, '2021-08-26', 2167, 12049, 1218, 22219, '2.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 (12526, '2021-08-26', 1650, 12050, 1218, 17446, '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 (12527, '2021-08-26', 2232, 12051, 1218, 24347, '1.0000', '28.9867', '28.9867', '40.0000', '40.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 (12528, '2021-08-26', 1863, 12052, 1218, 11171, '1.0000', '1.2242', '1.2242', '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 (12529, '2021-08-26', 1639, 12053, 1218, 21569, '1.0000', '6.6300', '6.6300', '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 (12530, '2021-08-26', 1452, 12054, 1218, 5632, '1.0000', '1.2300', '1.2300', '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 (12531, '2021-08-26', 2320, 12055, 1218, 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 (12532, '2021-08-26', 1502, 12056, 1218, 9542, '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 (12533, '2021-08-26', 2167, 12057, 1218, 22219, '2.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 (12534, '2021-08-26', 1620, 12058, 1218, 29796, '4.0000', '13.9038', '13.9038', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12535, '2021-08-26', 2060, 12059, 1219, 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 (12536, '2021-08-26', 7674, 12060, 1219, NULL, '1.0000', '14.5000', '14.5000', '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 (12537, '2021-08-26', 9084, 12061, 1219, NULL, '3.0000', '0.4500', '0.4500', '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 (12538, '2021-08-26', 9095, 12062, 1219, NULL, '1.0000', '17.5000', '17.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 (12539, '2021-08-26', 8417, 12063, 1219, NULL, '1.0000', '5.8000', '5.8000', '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 (12540, '2021-08-26', 2699, 12064, 1219, 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 (12541, '2021-08-26', 7611, 12065, 1219, NULL, '2.0000', '21.6700', '21.6700', '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 (12542, '2021-08-26', 9409, 12066, 1219, NULL, '1.0000', '11.0000', '11.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 (12543, '2021-08-26', 7674, 12067, 1219, NULL, '1.0000', '14.5000', '14.5000', '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 (12544, '2021-08-26', 9274, 12068, 1219, NULL, '1.0000', '0.2500', '0.2500', '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 (12545, '2021-08-26', 2769, 12069, 1220, 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 (12546, '2021-08-26', 8456, 12070, 1220, NULL, '1.0000', '5.5400', '5.5400', '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 (12547, '2021-08-26', 7675, 12071, 1220, NULL, '1.0000', '11.4300', '11.4300', '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 (12548, '2021-08-26', 8085, 12072, 1220, NULL, '1.0000', '14.0000', '14.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 (12549, '2021-08-26', 8844, 12073, 1220, NULL, '2.0000', '35.5000', '35.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 (12550, '2021-08-26', 7355, 12074, 1220, 29995, '1.0000', '11.6400', '11.6400', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12551, '2021-08-26', 1629, 12075, 1220, NULL, '2.0000', '15.5000', '15.5000', '20.5000', '20.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 (12552, '2021-08-26', 8964, 12076, 1220, NULL, '6.0000', '7.3600', '7.3600', '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 (12553, '2021-08-26', 1510, 12077, 1220, 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 (12554, '2021-08-26', 2992, 12078, 1220, NULL, '4.0000', '2.6000', '2.6000', '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 (12555, '2021-08-26', 9237, 12079, 1220, NULL, '5.0000', '24.8200', '24.8200', '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 (12556, '2021-08-26', 7703, 12080, 1220, NULL, '1.0000', '22.9900', '22.9900', '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 (12557, '2021-08-26', 2411, 12081, 1220, 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 (12558, '2021-08-26', 2100, 12082, 1220, 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 (12559, '2021-08-26', 7411, 12083, 1220, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12560, '2021-08-26', 7457, 12084, 1220, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12561, '2021-08-26', 8052, 12085, 1220, NULL, '2.0000', '0.4700', '0.4700', '38.0000', '38.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 (12562, '2021-08-26', 1947, 12086, 1220, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12563, '2021-08-26', 8566, 12087, 1220, NULL, '1.0000', '2.5000', '2.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 (12564, '2021-08-26', 7963, 12088, 1220, NULL, '1.0000', '4.2500', '4.2500', '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 (12565, '2021-08-26', 1557, 12089, 1220, NULL, '1.0000', '7.8800', '7.8800', '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 (12566, '2021-08-26', 8657, 12090, 1220, NULL, '1.0000', '7.6000', '7.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 (12567, '2021-08-26', 7707, 12091, 1220, NULL, '1.0000', '7.0000', '7.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 (12568, '2021-08-26', 2244, 12092, 1220, 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 (12569, '2021-08-26', 7743, 12093, 1220, NULL, '1.0000', '7.3900', '7.3900', '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 (12570, '2021-08-26', 1771, 12094, 1220, NULL, '4.0000', '3.3900', '3.3900', '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 (12571, '2021-08-26', 7448, 12095, 1220, NULL, '1.0000', '15.8500', '15.8500', '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 (12572, '2021-08-26', 7674, 12096, 1220, NULL, '1.0000', '14.5000', '14.5000', '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 (12573, '2021-08-26', 7704, 12097, 1220, NULL, '2.0000', '8.7000', '8.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 (12574, '2021-08-26', 1388, 12098, 1220, 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 (12575, '2021-08-26', 7453, 12099, 1220, 30061, '1.0000', '28.5000', '28.5000', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12576, '2021-08-26', 7814, 12100, 1220, NULL, '1.0000', '13.0000', '13.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 (12577, '2021-08-26', 7952, 12101, 1220, NULL, '1.0000', '1.4000', '1.4000', '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 (12578, '2021-08-26', 9098, 12102, 1220, 30934, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12579, '2021-08-26', 7357, 12103, 1220, 31030, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12580, '2021-08-26', 8288, 12104, 1220, NULL, '2.0000', '20.0000', '20.0000', '1.8000', '1.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 (12581, '2021-08-26', 8515, 12105, 1220, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (12582, '2021-08-26', 8921, 12106, 1220, NULL, '1.0000', '7.0000', '7.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 (12583, '2021-08-26', 1845, 12107, 1220, 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 (12584, '2021-08-26', 8276, 12108, 1220, NULL, '1.0000', '4.7300', '4.7300', '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 (12585, '2021-08-26', 7496, 12109, 1220, NULL, '1.0000', '0.9600', '0.9600', '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 (12586, '2021-08-26', 7431, 12110, 1220, 30047, '1.0000', '4.6500', '4.6500', '24.0000', '24.0000', '15.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12587, '2021-08-26', 7894, 12111, 1220, NULL, '1.0000', '22.0000', '22.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 (12588, '2021-08-26', 9274, 12112, 1221, NULL, '1.0000', '0.2500', '0.2500', '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 (12589, '2021-08-26', 9187, 12113, 1221, NULL, '1.0000', '7.3000', '7.3000', '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 (12590, '2021-08-26', 7651, 12114, 1221, NULL, '1.0000', '5.0000', '5.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 (12591, '2021-08-26', 2681, 12115, 1222, 18057, '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 (12592, '2021-08-26', 1650, 12116, 1222, 3258, '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 (12593, '2021-08-26', 1651, 12117, 1222, 24103, '1.0000', '7.1386', '7.1386', '10.3500', '10.3500', '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 (12594, '2021-08-26', 2592, 12118, 1222, 24289, '1.0000', '7.9392', '7.9392', '11.0000', '11.0000', '4.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 (12595, '2021-08-26', 2623, 12119, 1222, NULL, '2.0000', '4.3000', '4.3000', '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 (12596, '2021-08-26', 2315, 12120, 1222, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '331.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12597, '2021-08-26', 1528, 12121, 1222, 23618, '2.0000', '79.3921', '79.3921', '6.0000', '6.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 (12598, '2021-08-26', 8362, 12122, 1222, NULL, '1.0000', '4.1000', '4.1000', '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 (12599, '2021-08-26', 1863, 12123, 1222, 11171, '1.0000', '1.2242', '1.2242', '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 (12600, '2021-08-26', 1425, 12124, 1222, 21551, '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 (12601, '2021-08-26', 2699, 12125, 1222, 21819, '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 (12602, '2021-08-26', 1884, 12126, 1222, 5010, '1.0000', '4.8500', '4.8500', '6.7700', '6.7700', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12603, '2021-08-26', 9202, 12127, 1222, NULL, '1.0000', '3.5000', '3.5000', '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 (12604, '2021-08-26', 7814, 12128, 1222, NULL, '1.0000', '13.0000', '13.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 (12605, '2021-08-26', 1691, 12129, 1222, 2454, '1.0000', '10.3300', '10.3300', '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 (12606, '2021-08-26', 2135, 12130, 1222, 16894, '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 (12607, '2021-08-26', 2225, 12131, 1222, 1713, '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 (12608, '2021-08-26', 2699, 12132, 1222, 21819, '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 (12609, '2021-08-26', 1428, 12133, 1222, 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 (12610, '2021-08-26', 7412, 12134, 1222, NULL, '2.0000', '1.5200', '1.5200', '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 (12611, '2021-08-26', 3013, 12135, 1222, 24112, '1.0000', '8.0000', '8.0000', '11.0000', '11.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 (12612, '2021-08-26', 2105, 12136, 1222, 2511, '1.0000', '1.3500', '1.3500', '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 (12613, '2021-08-26', 1824, 12137, 1222, 4959, '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 (12614, '2021-08-26', 9193, 12138, 1222, NULL, '1.0000', '10.0000', '10.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 (12615, '2021-08-26', 1311, 12139, 1222, 2485, '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 (12616, '2021-08-26', 1311, 12139, 1222, 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 (12617, '2021-08-26', 2638, 12140, 1223, NULL, '1.0000', '19.6200', '19.6200', '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 (12618, '2021-08-26', 1863, 12141, 1223, NULL, '1.0000', '0.3450', '0.3450', '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 (12619, '2021-08-26', 1856, 12142, 1223, 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 (12620, '2021-08-26', 2951, 12143, 1223, 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 (12621, '2021-08-26', 1499, 12144, 1223, 31097, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12622, '2021-08-26', 3018, 12145, 1223, 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 (12623, '2021-08-26', 2951, 12146, 1223, 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 (12624, '2021-08-26', 2316, 12147, 1223, 22514, '1.0000', '45.0000', '45.0000', '48.0000', '48.0000', '4.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 (12625, '2021-08-26', 2237, 12148, 1223, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (12626, '2021-08-26', 1912, 12149, 1223, 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 (12627, '2021-08-26', 2109, 12150, 1223, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '37.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 (12628, '2021-08-26', 1665, 12151, 1223, 30683, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12629, '2021-08-26', 7524, 12152, 1223, NULL, '1.0000', '11.9500', '11.9500', '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 (12630, '2021-08-26', 7958, 12153, 1223, NULL, '1.0000', '13.0000', '13.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 (12631, '2021-08-26', 2242, 12154, 1223, 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 (12632, '2021-08-26', 2729, 12155, 1223, 19355, '1.0000', '3.2900', '3.2900', '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 (12633, '2021-08-26', 2104, 12156, 1224, NULL, '1.0000', '0.2000', '0.2000', '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 (12634, '2021-08-26', 8964, 12157, 1224, NULL, '2.0000', '7.3600', '7.3600', '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 (12635, '2021-08-26', 8166, 12158, 1224, NULL, '2.0000', '4.6000', '4.6000', '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 (12636, '2021-08-26', 7411, 12159, 1224, 30171, '6.0000', '1.3500', '1.3500', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12637, '2021-08-26', 7447, 12160, 1224, NULL, '12.0000', '19.1100', '19.1100', '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 (12638, '2021-08-26', 8539, 12161, 1224, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '73.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12639, '2021-08-26', 7736, 12162, 1224, NULL, '1.0000', '4.0000', '4.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 (12640, '2021-08-26', 9191, 12163, 1224, NULL, '1.0000', '6.6700', '6.6700', '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 (12641, '2021-08-26', 7448, 12164, 1224, NULL, '5.0000', '15.8500', '15.8500', '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 (12642, '2021-08-26', 7894, 12165, 1224, NULL, '1.0000', '22.0000', '22.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 (12643, '2021-08-26', 2169, 12166, 1225, NULL, '1.0000', '1.1300', '1.1300', '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 (12644, '2021-08-26', 1781, 12167, 1225, 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 (12645, '2021-08-26', 2699, 12168, 1225, 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 (12646, '2021-08-26', 3067, 12169, 1225, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '44.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 (12647, '2021-08-26', 2974, 12170, 1226, 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 (12648, '2021-08-26', 7978, 12171, 1226, NULL, '1.0000', '0.5100', '0.5100', '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 (12649, '2021-08-26', 7448, 12172, 1226, NULL, '5.0000', '15.8500', '15.8500', '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 (12650, '2021-08-26', 7514, 12173, 1226, NULL, '1.0000', '7.8800', '7.8800', '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 (12651, '2021-08-26', 9457, 12174, 1227, 31018, '1.0000', '2.9800', '2.9800', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12652, '2021-08-26', 8242, 12175, 1227, NULL, '1.0000', '0.4900', '0.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 (12653, '2021-08-26', 9193, 12176, 1227, NULL, '1.0000', '10.0000', '10.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 (12654, '2021-08-26', 9202, 12177, 1228, NULL, '1.0000', '3.5000', '3.5000', '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 (12655, '2021-08-26', 1504, 12178, 1229, 24013, '10.0000', '1.7015', '1.7015', '2.0000', '2.0000', '32.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 (12656, '2021-08-26', 1875, 12179, 1229, 17321, '10.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 (12657, '2021-08-26', 1761, 12180, 1229, 3182, '1.0000', '1.8200', '1.8200', '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 (12658, '2021-08-26', 1499, 12181, 1229, 1502, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '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 (12659, '2021-08-26', 2315, 12182, 1229, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '330.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12660, '2021-08-26', 2259, 12183, 1229, 29794, '1.0000', '19.5151', '19.5151', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12661, '2021-08-26', 2240, 12184, 1229, 17458, '1.0000', '33.0000', '33.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 (12662, '2021-08-26', 2334, 12185, 1229, 12225, '1.0000', '16.0000', '16.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 (12663, '2021-08-26', 1863, 12186, 1229, 11171, '1.0000', '1.2242', '1.2242', '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 (12664, '2021-08-26', 1574, 12187, 1229, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (12665, '2021-08-26', 1498, 12188, 1230, 1501, '4.0000', '0.3300', '0.3300', '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 (12666, '2021-08-26', 2068, 12189, 1231, 22652, '2.0000', '12.8833', '12.8833', '17.0000', '17.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 (12667, '2021-08-26', 2479, 12190, 1231, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (12668, '2021-08-26', 2315, 12191, 1231, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '328.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12669, '2021-08-27', 1735, 12192, 1232, 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 (12670, '2021-08-27', 1528, 12193, 1233, NULL, '5.0000', '90.0000', '90.0000', '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 (12671, '2021-08-27', 7819, 12194, 1233, NULL, '1.0000', '9.5000', '9.5000', '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 (12672, '2021-08-27', 7697, 12195, 1233, NULL, '1.0000', '5.0000', '5.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 (12673, '2021-08-27', 2934, 12196, 1233, NULL, '1.0000', '9.8000', '9.8000', '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 (12674, '2021-08-27', 2990, 12197, 1233, 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 (12675, '2021-08-27', 9097, 12198, 1233, NULL, '1.0000', '18.0000', '18.0000', '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 (12676, '2021-08-27', 7781, 12199, 1233, NULL, '3.0000', '4.2500', '4.2500', '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 (12677, '2021-08-27', 7780, 12200, 1233, NULL, '1.0000', '2.6000', '2.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 (12678, '2021-08-27', 1874, 12201, 1233, NULL, '2.0000', '6.1000', '6.1000', '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 (12679, '2021-08-27', 8701, 12202, 1233, NULL, '1.0000', '5.6300', '5.6300', '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 (12680, '2021-08-27', 7776, 12203, 1234, NULL, '1.0000', '8.0000', '8.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 (12681, '2021-08-27', 7739, 12204, 1234, NULL, '2.0000', '2.7500', '2.7500', '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 (12682, '2021-08-27', 8594, 12205, 1234, 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 (12683, '2021-08-27', 7399, 12206, 1235, 30026, '1.0000', '57.0500', '57.0500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12684, '2021-08-27', 7886, 12207, 1235, NULL, '1.0000', '14.5000', '14.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 (12685, '2021-08-27', 7593, 12208, 1235, 30994, '2.0000', '2.4500', '2.4500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12686, '2021-08-27', 2104, 12209, 1235, NULL, '2.0000', '0.2000', '0.2000', '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 (12687, '2021-08-27', 7759, 12210, 1235, NULL, '1.0000', '19.5000', '19.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 (12688, '2021-08-27', 9095, 12211, 1235, NULL, '1.0000', '17.5000', '17.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 (12689, '2021-08-27', 2135, 12212, 1235, 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 (12690, '2021-08-27', 9178, 12213, 1235, 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 (12691, '2021-08-27', 7473, 12214, 1235, NULL, '1.0000', '9.2200', '9.2200', '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 (12692, '2021-08-27', 2959, 12215, 1235, 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 (12693, '2021-08-27', 8324, 12216, 1235, NULL, '1.0000', '5.0000', '5.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 (12694, '2021-08-27', 2511, 12217, 1235, 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 (12695, '2021-08-27', 7822, 12218, 1235, NULL, '1.0000', '5.6000', '5.6000', '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 (12696, '2021-08-27', 7514, 12219, 1235, NULL, '1.0000', '7.8800', '7.8800', '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 (12697, '2021-08-27', 7648, 12220, 1235, NULL, '1.0000', '2.6900', '2.6900', '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 (12698, '2021-08-27', 1912, 12221, 1236, 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 (12699, '2021-08-27', 2167, 12222, 1236, 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 (12700, '2021-08-27', 7591, 12223, 1236, NULL, '2.0000', '2.7500', '2.7500', '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 (12701, '2021-08-27', 1419, 12224, 1236, NULL, '1.0000', '10.5000', '10.5000', '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 (12702, '2021-08-27', 1805, 12225, 1236, 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 (12703, '2021-08-27', 1523, 12226, 1236, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '32.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 (12704, '2021-08-27', 1665, 12227, 1236, 30683, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12705, '2021-08-27', 1381, 12228, 1236, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (12706, '2021-08-27', 1950, 12229, 1236, 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 (12707, '2021-08-27', 1854, 12230, 1236, 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 (12708, '2021-08-27', 2259, 12231, 1236, 23136, '1.0000', '20.0000', '20.0000', '27.0000', '27.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 (12709, '2021-08-27', 2221, 12232, 1237, 4334, '1.0000', '14.4737', '14.4737', '25.0000', '25.0000', '3.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 (12710, '2021-08-27', 2307, 12233, 1237, 2960, '2.0000', '118.9901', '118.9901', '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 (12711, '2021-08-27', 1992, 12234, 1237, NULL, '2.0000', '1.5000', '1.5000', '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 (12712, '2021-08-27', 2104, 12235, 1237, 1048, '4.0000', '0.2000', '0.2000', '0.5000', '0.5000', '291.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 (12713, '2021-08-27', 1841, 12236, 1237, 18870, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '22.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 (12714, '2021-08-27', 1840, 12237, 1237, 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 (12715, '2021-08-27', 1880, 12238, 1237, 22270, '1.0000', '4.6000', '4.6000', '7.0000', '7.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 (12716, '2021-08-27', 2101, 12239, 1237, 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 (12717, '2021-08-27', 1369, 12240, 1237, 269, '1.0000', '2.2209', '2.2209', '8.0000', '8.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 (12718, '2021-08-27', 2272, 12241, 1237, 2932, '-5.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 (12719, '2021-08-27', 2272, 12241, 1237, NULL, '6.0000', '5.5000', '5.5000', '7.5000', '7.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 (12720, '2021-08-27', 1590, 12242, 1237, 22260, '3.0000', '1.7100', '1.7100', '2.2000', '2.2000', '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 (12721, '2021-08-27', 1303, 12243, 1237, 32, '8.0000', '54.5520', '54.5520', '4.0000', '4.0000', '102.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 (12722, '2021-08-27', 2974, 12244, 1238, 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 (12723, '2021-08-27', 7514, 12245, 1238, NULL, '1.0000', '7.8800', '7.8800', '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 (12724, '2021-08-27', 7411, 12246, 1238, 30171, '3.0000', '1.3500', '1.3500', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12725, '2021-08-27', 1301, 12247, 1238, NULL, '1.0000', '1.6800', '1.6800', '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 (12726, '2021-08-27', 7548, 12248, 1238, NULL, '2.0000', '0.3400', '0.3400', '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 (12727, '2021-08-27', 2733, 12249, 1238, 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 (12728, '2021-08-27', 8340, 12250, 1238, NULL, '10.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (12729, '2021-08-27', 7385, 12251, 1238, NULL, '5.0000', '12.5000', '12.5000', '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 (12730, '2021-08-27', 7482, 12252, 1238, 30157, '2.0000', '3.0500', '3.0500', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12731, '2021-08-27', 7872, 12253, 1238, 31012, '1.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12732, '2021-08-27', 7703, 12254, 1238, NULL, '2.0000', '22.9900', '22.9900', '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 (12733, '2021-08-27', 7411, 12255, 1238, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12734, '2021-08-27', 9264, 12256, 1238, NULL, '1.0000', '3.1000', '3.1000', '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 (12735, '2021-08-27', 7433, 12257, 1238, 30049, '14.0000', '6.2000', '6.2000', '6.2000', '6.2000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12736, '2021-08-27', 7433, 12257, 1238, NULL, '2.0000', '6.2000', '6.2000', '6.2000', '6.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 (12737, '2021-08-27', 1772, 12258, 1238, 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 (12738, '2021-08-27', 2302, 12259, 1238, 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 (12739, '2021-08-27', 1779, 12260, 1238, 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 (12740, '2021-08-27', 7333, 12261, 1239, NULL, '1.0000', '13.5000', '13.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 (12741, '2021-08-27', 2225, 12262, 1239, 22521, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '0.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 (12742, '2021-08-27', 2567, 12263, 1239, 22515, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '5.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 (12743, '2021-08-27', 2066, 12264, 1239, NULL, '2.0000', '0.5100', '0.5100', '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 (12744, '2021-08-27', 2280, 12265, 1239, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '33.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 (12745, '2021-08-27', 2379, 12266, 1239, NULL, '1.0000', '1.8000', '1.8000', '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 (12746, '2021-08-27', 1928, 12267, 1239, NULL, '1.0000', '5.5000', '5.5000', '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 (12747, '2021-08-27', 2951, 12268, 1239, 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 (12748, '2021-08-27', 1935, 12269, 1239, 30686, '2.0000', '37.9921', '37.9921', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12749, '2021-08-27', 8057, 12270, 1239, NULL, '1.0000', '6.0000', '6.0000', '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 (12750, '2021-08-27', 8181, 12271, 1239, NULL, '3.0000', '4.5000', '4.5000', '0.4000', '0.4000', '-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 (12751, '2021-08-27', 1647, 12272, 1239, 24968, '1.0000', '4.7200', '4.7200', '7.5000', '7.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 (12752, '2021-08-27', 8307, 12273, 1239, NULL, '1.0000', '14.5000', '14.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 (12753, '2021-08-27', 7917, 12274, 1239, NULL, '1.0000', '5.0000', '5.0000', '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 (12754, '2021-08-27', 2379, 12275, 1239, NULL, '1.0000', '1.8000', '1.8000', '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 (12755, '2021-08-27', 2242, 12276, 1239, 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 (12756, '2021-08-27', 1912, 12277, 1239, 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 (12757, '2021-08-27', 1805, 12278, 1239, 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 (12758, '2021-08-27', 1532, 12279, 1239, 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 (12759, '2021-08-27', 2866, 12280, 1240, 18927, '14.0000', '0.8800', '0.8800', '1.5000', '1.5000', '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 (12760, '2021-08-27', 8359, 12281, 1240, NULL, '1.0000', '13.5000', '13.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 (12761, '2021-08-27', 1863, 12282, 1240, NULL, '3.0000', '0.3450', '0.3450', '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 (12762, '2021-08-27', 7753, 12283, 1240, NULL, '1.0000', '3.1400', '3.1400', '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 (12763, '2021-08-27', 3001, 12284, 1241, 23116, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '49.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 (12764, '2021-08-27', 2242, 12285, 1241, 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 (12765, '2021-08-27', 1381, 12286, 1241, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (12766, '2021-08-27', 1578, 12287, 1241, 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 (12767, '2021-08-27', 1912, 12288, 1241, 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 (12768, '2021-08-27', 1863, 12289, 1241, NULL, '1.0000', '0.3450', '0.3450', '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 (12769, '2021-08-27', 1687, 12290, 1241, NULL, '1.0000', '12.0000', '12.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 (12770, '2021-08-27', 2951, 12291, 1241, 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 (12771, '2021-08-27', 2950, 12292, 1241, 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 (12772, '2021-08-27', 2156, 12293, 1241, 19853, '1.0000', '3.2500', '3.2500', '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 (12773, '2021-08-27', 1935, 12294, 1241, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12774, '2021-08-27', 7967, 12295, 1242, NULL, '1.0000', '0.8900', '0.8900', '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 (12775, '2021-08-27', 2315, 12296, 1242, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12776, '2021-08-27', 8101, 12297, 1242, NULL, '1.0000', '21.7000', '21.7000', '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 (12777, '2021-08-27', 7963, 12298, 1242, NULL, '1.0000', '4.2500', '4.2500', '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 (12778, '2021-08-27', 7350, 12299, 1242, NULL, '2.0000', '1.2500', '1.2500', '34.5000', '34.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 (12779, '2021-08-27', 7507, 12300, 1242, NULL, '3.0000', '6.5000', '6.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 (12780, '2021-08-27', 8243, 12301, 1242, NULL, '5.0000', '1.1400', '1.1400', '1.5000', '1.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 (12781, '2021-08-27', 7482, 12302, 1242, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12782, '2021-08-27', 7554, 12303, 1242, NULL, '10.0000', '16.0000', '16.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 (12783, '2021-08-27', 2822, 12304, 1242, 30155, '5.0000', '2.7200', '2.7200', '4.0000', '4.0000', '45.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12784, '2021-08-27', 7591, 12305, 1242, NULL, '1.0000', '2.7500', '2.7500', '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 (12785, '2021-08-27', 7787, 12306, 1242, NULL, '1.0000', '3.9600', '3.9600', '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 (12786, '2021-08-27', 7427, 12307, 1242, 30042, '1.0000', '3.4000', '3.4000', '45.0000', '45.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12787, '2021-08-27', 7518, 12308, 1242, NULL, '1.0000', '5.1300', '5.1300', '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 (12788, '2021-08-27', 8964, 12309, 1242, NULL, '4.0000', '7.3600', '7.3600', '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 (12789, '2021-08-27', 9098, 12310, 1242, 30934, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12790, '2021-08-27', 7514, 12311, 1242, NULL, '1.0000', '7.8800', '7.8800', '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 (12791, '2021-08-27', 7713, 12312, 1242, NULL, '6.0000', '4.4000', '4.4000', '0.6000', '0.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 (12792, '2021-08-27', 1434, 12313, 1242, 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 (12793, '2021-08-27', 7752, 12314, 1242, NULL, '1.0000', '3.0000', '3.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 (12794, '2021-08-27', 7847, 12315, 1242, 31212, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12795, '2021-08-27', 8964, 12316, 1242, NULL, '20.0000', '7.3600', '7.3600', '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 (12796, '2021-08-27', 8485, 12317, 1242, NULL, '1.0000', '7.0400', '7.0400', '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 (12797, '2021-08-27', 7429, 12318, 1242, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12798, '2021-08-27', 9274, 12319, 1242, NULL, '1.0000', '0.2500', '0.2500', '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 (12799, '2021-08-27', 7736, 12320, 1242, NULL, '1.0000', '4.0000', '4.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 (12800, '2021-08-27', 9001, 12321, 1242, NULL, '2.0000', '4.3300', '4.3300', '26.5000', '26.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 (12801, '2021-08-27', 2506, 12322, 1242, 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 (12802, '2021-08-27', 7527, 12323, 1242, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12803, '2021-08-27', 1837, 12324, 1242, 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 (12804, '2021-08-27', 7917, 12325, 1242, NULL, '4.0000', '5.0000', '5.0000', '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 (12805, '2021-08-27', 8466, 12326, 1242, NULL, '4.0000', '9.8000', '9.8000', '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 (12806, '2021-08-27', 8187, 12327, 1242, NULL, '3.0000', '14.3900', '14.3900', '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 (12807, '2021-08-27', 8203, 12328, 1242, NULL, '10.0000', '9.8000', '9.8000', '0.5000', '0.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 (12808, '2021-08-27', 7641, 12329, 1242, NULL, '1.0000', '1.9000', '1.9000', '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 (12809, '2021-08-27', 7317, 12330, 1242, 29972, '1.0000', '19.5500', '19.5500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12810, '2021-08-27', 7753, 12331, 1242, NULL, '1.0000', '3.1400', '3.1400', '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 (12811, '2021-08-27', 7518, 12332, 1242, NULL, '1.0000', '5.1300', '5.1300', '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 (12812, '2021-08-27', 9337, 12333, 1242, NULL, '3.0000', '5.7200', '5.7200', '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 (12813, '2021-08-27', 9193, 12334, 1242, NULL, '1.0000', '10.0000', '10.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 (12814, '2021-08-27', 7715, 12335, 1242, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '46.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12815, '2021-08-27', 7768, 12336, 1242, NULL, '1.0000', '7.7800', '7.7800', '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 (12816, '2021-08-27', 7509, 12337, 1242, 31007, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12817, '2021-08-27', 8878, 12338, 1242, NULL, '1.0000', '6.6700', '6.6700', '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 (12818, '2021-08-27', 8485, 12339, 1242, NULL, '1.0000', '7.0400', '7.0400', '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 (12819, '2021-08-27', 9095, 12340, 1242, NULL, '2.0000', '17.5000', '17.5000', '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 (12820, '2021-08-27', 8557, 12341, 1242, NULL, '2.0000', '54.3300', '54.3300', '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 (12821, '2021-08-27', 8352, 12342, 1242, NULL, '1.0000', '4.0700', '4.0700', '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 (12822, '2021-08-27', 2169, 12343, 1243, 31550, '1.0000', '0.9890', '0.9890', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12823, '2021-08-27', 2821, 12344, 1243, 17043, '1.0000', '3.5100', '3.5100', '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 (12824, '2021-08-27', 2104, 12345, 1243, 29846, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '198.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12825, '2021-08-27', 2025, 12346, 1243, 21808, '4.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 (12826, '2021-08-27', 2699, 12347, 1243, 21819, '1.0000', '3.0000', '3.0000', '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 (12827, '2021-08-27', 1501, 12348, 1243, 23580, '1.0000', '1566.1965', '1566.1965', '3.0000', '3.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 (12828, '2021-08-27', 2167, 12349, 1243, 31460, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12829, '2021-08-27', 1665, 12350, 1243, 22236, '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 (12830, '2021-08-27', 1863, 12351, 1243, 31466, '1.0000', '1.1876', '1.1876', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12831, '2021-08-27', 1646, 12352, 1243, 31482, '1.0000', '4.6398', '4.6398', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12832, '2021-08-27', 2360, 12353, 1243, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (12833, '2021-08-27', 2660, 12354, 1243, 18686, '1.0000', '0.7000', '0.7000', '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 (12834, '2021-08-27', 1665, 12355, 1243, 22236, '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 (12835, '2021-08-27', 2250, 12356, 1243, 23590, '1.0000', '6.8900', '6.8900', '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 (12836, '2021-08-27', 1873, 12357, 1243, 31453, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12837, '2021-08-27', 2095, 12358, 1243, 6007, '1.0000', '1.5000', '1.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 (12838, '2021-08-27', 7980, 12359, 1243, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (12839, '2021-08-27', 1428, 12360, 1243, 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 (12840, '2021-08-27', 8753, 12361, 1244, NULL, '1.0000', '20.0000', '20.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 (12841, '2021-08-27', 1420, 12362, 1244, 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 (12842, '2021-08-27', 7589, 12363, 1244, NULL, '1.0000', '1.7700', '1.7700', '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 (12843, '2021-08-27', 1435, 12364, 1244, 30693, '1.0000', '24.5000', '24.5000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12844, '2021-08-27', 3041, 12365, 1244, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '18.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 (12845, '2021-08-27', 2293, 12366, 1245, 3064, '3.0000', '1.4400', '1.4400', '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 (12846, '2021-08-27', 1580, 12367, 1245, 9446, '3.0000', '0.9900', '0.9900', '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 (12847, '2021-08-27', 1863, 12368, 1245, 31466, '1.0000', '1.1876', '1.1876', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12848, '2021-08-27', 2930, 12369, 1246, NULL, '1.0000', '37.7400', '37.7400', '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 (12849, '2021-08-27', 7333, 12370, 1246, 29984, '1.0000', '13.5000', '13.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12850, '2021-08-27', 8053, 12371, 1246, NULL, '2.0000', '2.9600', '2.9600', '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 (12851, '2021-08-27', 8000, 12372, 1246, NULL, '1.0000', '25.8200', '25.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 (12852, '2021-08-27', 1904, 12373, 1246, 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 (12853, '2021-08-27', 7564, 12374, 1246, 30930, '2.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12854, '2021-08-27', 9337, 12375, 1246, NULL, '2.0000', '5.7200', '5.7200', '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 (12855, '2021-08-27', 7518, 12376, 1246, NULL, '1.0000', '5.1300', '5.1300', '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 (12856, '2021-08-27', 7909, 12377, 1246, NULL, '2.0000', '4.0000', '4.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 (12857, '2021-08-27', 7695, 12378, 1246, NULL, '1.0000', '3.9400', '3.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 (12858, '2021-08-27', 7980, 12379, 1246, NULL, '4.0000', '17.4500', '17.4500', '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 (12859, '2021-08-27', 2151, 12380, 1247, 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 (12860, '2021-08-27', 1779, 12381, 1247, 4938, '12.0000', '0.3100', '0.3100', '1.0000', '1.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 (12861, '2021-08-27', 7354, 12382, 1248, NULL, '1.0000', '18.0000', '18.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 (12862, '2021-08-27', 8296, 12383, 1248, NULL, '3.0000', '11.7600', '11.7600', '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 (12863, '2021-08-27', 1863, 12384, 1249, NULL, '4.0000', '0.3450', '0.3450', '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 (12864, '2021-08-27', 1427, 12385, 1249, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12865, '2021-08-28', 1602, 12386, 1250, 31474, '1.0000', '6.9446', '6.9446', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12866, '2021-08-28', 2748, 12387, 1250, 14567, '1.0000', '35.5000', '35.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 (12867, '2021-08-28', 1992, 12388, 1250, 6451, '1.0000', '1.5000', '1.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 (12868, '2021-08-28', 2617, 12389, 1250, 29804, '3.0000', '4.4000', '4.4000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12869, '2021-08-28', 1699, 12390, 1250, NULL, '1.0000', '3.2000', '3.2000', '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 (12870, '2021-08-28', 1342, 12391, 1250, 25038, '1.0000', '29.5000', '29.5000', '7.5000', '7.5000', '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 (12871, '2021-08-28', 1855, 12392, 1250, 4986, '1.0000', '1.4000', '1.4000', '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 (12872, '2021-08-28', 2143, 12393, 1250, 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 (12873, '2021-08-28', 1665, 12394, 1250, 22236, '2.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 (12874, '2021-08-28', 2169, 12395, 1250, 31550, '1.0000', '0.9890', '0.9890', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12875, '2021-08-28', 2451, 12396, 1250, 13555, '1.0000', '8.8000', '8.8000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12876, '2021-08-28', 2317, 12397, 1250, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.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 (12877, '2021-08-28', 2259, 12398, 1250, 29794, '1.0000', '19.5151', '19.5151', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12878, '2021-08-28', 1802, 12399, 1250, 4918, '1.0000', '86.0000', '86.0000', '113.5000', '113.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 (12879, '2021-08-28', 1488, 12400, 1250, 13561, '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 (12880, '2021-08-28', 1912, 12401, 1250, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12881, '2021-08-28', 2380, 12402, 1250, 9578, '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 (12882, '2021-08-28', 1330, 12403, 1250, 3367, '1.0000', '2.8000', '2.8000', '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 (12883, '2021-08-28', 1863, 12404, 1250, 31466, '10.0000', '1.1876', '1.1876', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12884, '2021-08-28', 2260, 12405, 1251, 29797, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12885, '2021-08-28', 2695, 12406, 1251, 12681, '2.0000', '2.0000', '2.0000', '2.7000', '2.7000', '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 (12886, '2021-08-28', 2389, 12407, 1252, 4394, '1.0000', '3.1400', '3.1400', '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 (12887, '2021-08-28', 2384, 12408, 1252, 29813, '2.0000', '0.2683', '0.2683', '0.7000', '0.7000', '98.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12888, '2021-08-28', 1307, 12409, 1252, 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 (12889, '2021-08-28', 7886, 12410, 1253, NULL, '1.0000', '14.5000', '14.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 (12890, '2021-08-28', 7899, 12411, 1253, 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 (12891, '2021-08-28', 7719, 12412, 1253, NULL, '1.0000', '5.5000', '5.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 (12892, '2021-08-28', 8883, 12413, 1253, NULL, '4.0000', '56.5500', '56.5500', '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 (12893, '2021-08-28', 7672, 12414, 1253, NULL, '1.0000', '1.0200', '1.0200', '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 (12894, '2021-08-28', 2244, 12415, 1253, 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 (12895, '2021-08-28', 7391, 12416, 1253, NULL, '1.0000', '335.0300', '335.0300', '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 (12896, '2021-08-28', 8352, 12417, 1253, NULL, '1.0000', '4.0700', '4.0700', '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 (12897, '2021-08-28', 8184, 12418, 1253, NULL, '10.0000', '0.8000', '0.8000', '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 (12898, '2021-08-28', 7564, 12419, 1253, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12899, '2021-08-28', 8084, 12420, 1253, 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 (12900, '2021-08-28', 7394, 12421, 1253, 30021, '1.0000', '12.7400', '12.7400', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12901, '2021-08-28', 7879, 12422, 1253, NULL, '10.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (12902, '2021-08-28', 8608, 12423, 1253, NULL, '1.0000', '13.0000', '13.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 (12903, '2021-08-28', 7316, 12424, 1253, 30165, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '40.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12904, '2021-08-28', 8328, 12425, 1253, NULL, '1.0000', '32.2000', '32.2000', '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 (12905, '2021-08-28', 8352, 12426, 1253, NULL, '1.0000', '4.0700', '4.0700', '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 (12906, '2021-08-28', 9007, 12427, 1253, NULL, '1.0000', '22.2000', '22.2000', '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 (12907, '2021-08-28', 7428, 12428, 1253, 30148, '1.0000', '744.9056', '744.9056', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12908, '2021-08-28', 7674, 12429, 1253, NULL, '1.0000', '14.5000', '14.5000', '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 (12909, '2021-08-28', 7509, 12430, 1253, 31007, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12910, '2021-08-28', 9300, 12431, 1253, NULL, '4.0000', '12.0000', '12.0000', '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 (12911, '2021-08-28', 7608, 12432, 1253, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12912, '2021-08-28', 8055, 12433, 1253, NULL, '1.0000', '10.2900', '10.2900', '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 (12913, '2021-08-28', 8715, 12434, 1253, NULL, '1.0000', '3.3000', '3.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 (12914, '2021-08-28', 7448, 12435, 1253, NULL, '1.0000', '15.8500', '15.8500', '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 (12915, '2021-08-28', 8395, 12436, 1253, NULL, '1.0000', '0.9700', '0.9700', '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 (12916, '2021-08-28', 7847, 12437, 1253, 31212, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12917, '2021-08-28', 2656, 12438, 1253, NULL, '2.0000', '1.5000', '1.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 (12918, '2021-08-28', 8086, 12439, 1253, NULL, '1.0000', '12.0000', '12.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 (12919, '2021-08-28', 2656, 12440, 1253, 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 (12920, '2021-08-28', 7821, 12441, 1253, NULL, '1.0000', '7.0000', '7.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 (12921, '2021-08-28', 8277, 12442, 1253, 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 (12922, '2021-08-28', 8324, 12443, 1254, 31208, '1.0000', '2.8182', '2.8182', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12923, '2021-08-28', 7929, 12444, 1255, NULL, '1.0000', '3.6000', '3.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 (12924, '2021-08-28', 1947, 12445, 1255, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12925, '2021-08-28', 7428, 12446, 1255, 30148, '3.0000', '744.9056', '744.9056', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12926, '2021-08-28', 7753, 12447, 1255, NULL, '2.0000', '3.1400', '3.1400', '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 (12927, '2021-08-28', 2104, 12448, 1255, NULL, '10.0000', '0.2000', '0.2000', '0.5000', '0.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 (12928, '2021-08-28', 8900, 12449, 1255, NULL, '1.0000', '16.4000', '16.4000', '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 (12929, '2021-08-28', 8680, 12450, 1255, NULL, '1.0000', '2.0000', '2.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 (12930, '2021-08-28', 2992, 12451, 1255, 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 (12931, '2021-08-28', 7524, 12452, 1255, NULL, '1.0000', '11.9500', '11.9500', '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 (12932, '2021-08-28', 7610, 12453, 1255, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12933, '2021-08-28', 2444, 12454, 1256, 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 (12934, '2021-08-28', 7473, 12455, 1256, NULL, '2.0000', '9.2200', '9.2200', '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 (12935, '2021-08-28', 7365, 12456, 1256, 30001, '1.0000', '9.6500', '9.6500', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12936, '2021-08-28', 1498, 12457, 1256, 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 (12937, '2021-08-28', 2038, 12458, 1256, NULL, '2.0000', '10.0000', '10.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 (12938, '2021-08-28', 7879, 12459, 1256, NULL, '5.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (12939, '2021-08-28', 2009, 12460, 1256, 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 (12940, '2021-08-28', 7958, 12461, 1256, NULL, '4.0000', '13.0000', '13.0000', '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 (12941, '2021-08-28', 9101, 12462, 1256, NULL, '1.0000', '32.1800', '32.1800', '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 (12942, '2021-08-28', 7886, 12463, 1256, NULL, '1.0000', '14.5000', '14.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 (12943, '2021-08-28', 9202, 12464, 1256, NULL, '1.0000', '3.5000', '3.5000', '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 (12944, '2021-08-28', 9121, 12465, 1256, NULL, '1.0000', '30.0000', '30.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 (12945, '2021-08-28', 8878, 12466, 1256, NULL, '3.0000', '6.6700', '6.6700', '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 (12946, '2021-08-28', 7881, 12467, 1257, NULL, '2.0000', '32.7700', '32.7700', '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 (12947, '2021-08-28', 1665, 12468, 1257, 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 (12948, '2021-08-28', 2360, 12469, 1257, 31001, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12949, '2021-08-28', 2612, 12470, 1257, 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 (12950, '2021-08-28', 7744, 12471, 1257, NULL, '1.0000', '1.9000', '1.9000', '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 (12951, '2021-08-28', 7783, 12472, 1257, NULL, '1.0000', '3.6500', '3.6500', '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 (12952, '2021-08-28', 7743, 12473, 1257, NULL, '2.0000', '7.3900', '7.3900', '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 (12953, '2021-08-28', 2656, 12474, 1257, 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 (12954, '2021-08-28', 7728, 12475, 1257, NULL, '1.0000', '0.1300', '0.1300', '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 (12955, '2021-08-28', 8054, 12476, 1257, NULL, '1.0000', '16.0000', '16.0000', '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 (12956, '2021-08-28', 2060, 12477, 1257, 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 (12957, '2021-08-28', 2612, 12478, 1257, 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 (12958, '2021-08-28', 7674, 12479, 1257, NULL, '1.0000', '14.5000', '14.5000', '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 (12959, '2021-08-28', 7755, 12480, 1258, NULL, '2.0000', '82.0200', '82.0200', '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 (12960, '2021-08-28', 2038, 12481, 1258, NULL, '2.0000', '10.0000', '10.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 (12961, '2021-08-28', 1980, 12482, 1258, 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 (12962, '2021-08-28', 9409, 12483, 1258, NULL, '2.0000', '11.0000', '11.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 (12963, '2021-08-28', 9421, 12484, 1258, NULL, '2.0000', '4.0000', '4.0000', '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 (12964, '2021-08-28', 9193, 12485, 1258, NULL, '2.0000', '10.0000', '10.0000', '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 (12965, '2021-08-28', 7612, 12486, 1258, NULL, '1.0000', '46.0000', '46.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 (12966, '2021-08-28', 7588, 12487, 1258, NULL, '1.0000', '1.5000', '1.5000', '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 (12967, '2021-08-28', 1917, 12488, 1259, 30925, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12968, '2021-08-28', 9274, 12489, 1259, NULL, '1.0000', '0.2500', '0.2500', '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 (12969, '2021-08-28', 1365, 12490, 1259, 31004, '1.0000', '19.4900', '19.4900', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12970, '2021-08-28', 8485, 12491, 1259, NULL, '1.0000', '7.0400', '7.0400', '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 (12971, '2021-08-28', 7522, 12492, 1259, NULL, '1.0000', '5.2000', '5.2000', '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 (12972, '2021-08-28', 8933, 12493, 1259, NULL, '1.0000', '10.0000', '10.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 (12973, '2021-08-28', 2131, 12494, 1259, 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 (12974, '2021-08-28', 8200, 12495, 1259, NULL, '1.0000', '8.5500', '8.5500', '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 (12975, '2021-08-28', 7831, 12496, 1259, NULL, '1.0000', '19.0000', '19.0000', '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 (12976, '2021-08-28', 7524, 12497, 1260, NULL, '1.0000', '11.9500', '11.9500', '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 (12977, '2021-08-28', 7886, 12498, 1260, NULL, '1.0000', '14.5000', '14.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 (12978, '2021-08-28', 2965, 12499, 1260, NULL, '2.0000', '5.0000', '5.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 (12979, '2021-08-28', 7509, 12500, 1260, 31007, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12980, '2021-08-28', 1601, 12501, 1261, NULL, '2.0000', '90.0000', '90.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 (12981, '2021-08-28', 9426, 12502, 1261, NULL, '1.0000', '88.0000', '88.0000', '88.0000', '88.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12982, '2021-08-28', 9396, 12503, 1262, NULL, '1.0000', '4.5000', '4.5000', '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 (12983, '2021-08-28', 7428, 12504, 1262, 30148, '3.0000', '744.9056', '744.9056', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12984, '2021-08-28', 8200, 12505, 1263, NULL, '1.0000', '8.5500', '8.5500', '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 (12985, '2021-08-28', 2289, 12506, 1263, NULL, '5.0000', '0.2300', '0.2300', '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 (12986, '2021-08-28', 9141, 12507, 1263, NULL, '10.0000', '9.5300', '9.5300', '0.4000', '0.4000', '-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 (12987, '2021-08-28', 2794, 12508, 1263, NULL, '1.0000', '17.8200', '17.8200', '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 (12988, '2021-08-28', 7411, 12509, 1263, 30171, '3.0000', '1.3500', '1.3500', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12989, '2021-08-28', 2237, 12510, 1264, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '24.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 (12990, '2021-08-28', 1689, 12511, 1264, 31552, '1.0000', '12.2925', '12.2925', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12991, '2021-08-28', 2272, 12512, 1264, 31566, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12992, '2021-08-28', 1316, 12513, 1264, 24096, '1.0000', '6.3000', '6.3000', '9.0000', '9.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 (12993, '2021-08-28', 2315, 12514, 1264, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '326.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12994, '2021-08-28', 2660, 12515, 1264, 18686, '3.0000', '0.7000', '0.7000', '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 (12995, '2021-08-28', 1675, 12516, 1264, 31500, '1.0000', '64.7300', '64.7300', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (12996, '2021-08-28', 1787, 12517, 1264, 4930, '1.0000', '0.8100', '0.8100', '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 (12997, '2021-08-28', 1837, 12518, 1264, 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 (12998, '2021-08-28', 1347, 12519, 1264, 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 (12999, '2021-08-28', 2440, 12520, 1264, 21806, '1.0000', '5.1000', '5.1000', '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 (13000, '2021-08-28', 2435, 12521, 1264, 5839, '1.0000', '4.8000', '4.8000', '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 (13001, '2021-08-28', 9318, 12522, 1264, NULL, '1.0000', '9.0000', '9.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 (13002, '2021-08-28', 2986, 12523, 1264, NULL, '1.0000', '0.7700', '0.7700', '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 (13003, '2021-08-28', 1488, 12524, 1264, 13561, '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 (13004, '2021-08-28', 2384, 12525, 1264, 29813, '6.0000', '0.2683', '0.2683', '0.7000', '0.7000', '92.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13005, '2021-08-28', 2307, 12526, 1264, 31455, '1.0000', '143.3538', '143.3538', '170.0000', '170.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13006, '2021-08-28', 1809, 12527, 1264, 29788, '1.0000', '9.2447', '9.2447', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13007, '2021-08-28', 2145, 12528, 1264, 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 (13008, '2021-08-28', 2135, 12529, 1264, 16894, '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 (13009, '2021-08-28', 2612, 12530, 1264, 22632, '1.0000', '7.1600', '7.1600', '10.0000', '10.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 (13010, '2021-08-28', 2073, 12531, 1264, 31477, '2.0000', '2.3000', '2.3000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13011, '2021-08-28', 1810, 12532, 1264, 24272, '1.0000', '8.2860', '8.2860', '11.0000', '11.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 (13012, '2021-08-28', 9459, 12533, 1264, 31492, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13013, '2021-08-28', 2525, 12534, 1264, 15801, '1.0000', '10.0000', '10.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 (13014, '2021-08-28', 1409, 12535, 1264, 18706, '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 (13015, '2021-08-28', 1667, 12536, 1264, 24265, '1.0000', '114.0069', '114.0069', '8.5000', '8.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 (13016, '2021-08-28', 2402, 12537, 1264, 4359, '2.0000', '1.0000', '1.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 (13017, '2021-08-28', 2545, 12538, 1264, 18408, '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 (13018, '2021-08-28', 1650, 12539, 1264, NULL, '1.0000', '14.5800', '14.5800', '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 (13019, '2021-08-28', 8242, 12540, 1264, NULL, '1.0000', '0.4900', '0.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 (13020, '2021-08-28', 2475, 12541, 1264, 5825, '1.0000', '7.0000', '7.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 (13021, '2021-08-28', 1863, 12542, 1264, 31466, '1.0000', '1.1876', '1.1876', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13022, '2021-08-28', 2360, 12543, 1264, 17042, '2.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (13023, '2021-08-28', 1856, 12544, 1264, 23622, '1.0000', '4.2500', '4.2500', '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 (13024, '2021-08-28', 2327, 12545, 1265, 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 (13025, '2021-08-28', 8759, 12546, 1265, NULL, '1.0000', '8.3000', '8.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 (13026, '2021-08-28', 7358, 12547, 1265, NULL, '1.0000', '18.8000', '18.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 (13027, '2021-08-28', 9329, 12548, 1265, 30177, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13028, '2021-08-28', 7457, 12549, 1265, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13029, '2021-08-28', 7674, 12550, 1265, NULL, '1.0000', '14.5000', '14.5000', '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 (13030, '2021-08-28', 2655, 12551, 1265, 31632, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13031, '2021-08-28', 2167, 12552, 1266, 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 (13032, '2021-08-28', 1675, 12553, 1266, 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 (13033, '2021-08-28', 1837, 12554, 1266, 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 (13034, '2021-08-28', 1912, 12555, 1266, 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 (13035, '2021-08-28', 2169, 12556, 1266, NULL, '2.0000', '1.1300', '1.1300', '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 (13036, '2021-08-28', 2348, 12557, 1266, 13756, '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 (13037, '2021-08-28', 1504, 12558, 1266, 30675, '10.0000', '1.5406', '1.5406', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13038, '2021-08-28', 2459, 12559, 1266, 30664, '1.0000', '5.4424', '5.4424', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13039, '2021-08-28', 8164, 12560, 1266, NULL, '1.0000', '3.1200', '3.1200', '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 (13040, '2021-08-28', 1762, 12561, 1266, 25011, '1.0000', '9.9800', '9.9800', '13.5000', '13.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 (13041, '2021-08-28', 2455, 12562, 1266, 19876, '1.0000', '7.5300', '7.5300', '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 (13042, '2021-08-28', 2275, 12563, 1266, 19353, '2.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 (13043, '2021-08-28', 2225, 12564, 1266, 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 (13044, '2021-08-28', 1577, 12565, 1267, NULL, '2.0000', '2.1000', '2.1000', '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 (13045, '2021-08-28', 2010, 12566, 1267, 23974, '6.0000', '1.2000', '1.2000', '1.5800', '1.5800', '6.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 (13046, '2021-08-28', 1410, 12567, 1267, NULL, '4.0000', '2.2000', '2.2000', '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 (13047, '2021-08-28', 2959, 12568, 1267, 22560, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '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 (13048, '2021-08-28', 1666, 12569, 1267, 24940, '1.0000', '2.6304', '2.6304', '3.5000', '3.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 (13049, '2021-08-28', 7848, 12570, 1267, NULL, '2.0000', '1.3500', '1.3500', '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 (13050, '2021-08-28', 2655, 12571, 1267, 31680, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13051, '2021-08-28', 2655, 12571, 1267, 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 (13052, '2021-08-28', 2228, 12572, 1267, 25153, '1.0000', '25.0000', '25.0000', '28.0000', '28.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 (13053, '2021-08-28', 2951, 12573, 1267, 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 (13054, '2021-08-28', 2951, 12574, 1267, 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 (13055, '2021-08-28', 2262, 12575, 1267, 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 (13056, '2021-08-28', 2283, 12576, 1267, 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 (13057, '2021-08-28', 1837, 12577, 1267, 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 (13058, '2021-08-28', 1523, 12578, 1267, 24139, '3.0000', '1.0061', '1.0061', '5.0000', '5.0000', '29.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 (13059, '2021-08-28', 1863, 12579, 1267, NULL, '1.0000', '0.3450', '0.3450', '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 (13060, '2021-08-28', 2760, 12580, 1267, NULL, '5.0000', '7.9300', '7.9300', '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 (13061, '2021-08-28', 2169, 12581, 1267, NULL, '1.0000', '1.1300', '1.1300', '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 (13062, '2021-08-28', 2655, 12582, 1267, 31680, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13063, '2021-08-28', 2699, 12583, 1267, 31681, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13064, '2021-08-28', 7790, 12584, 1267, NULL, '4.0000', '17.0000', '17.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 (13065, '2021-08-28', 9212, 12585, 1267, NULL, '1.0000', '9.2000', '9.2000', '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 (13066, '2021-08-28', 7564, 12586, 1267, 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 (13067, '2021-08-28', 1884, 12587, 1267, NULL, '1.0000', '5.1300', '5.1300', '6.7700', '6.7700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13068, '2021-08-28', 1873, 12588, 1267, 22597, '1.0000', '11.9500', '11.9500', '16.0000', '16.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 (13069, '2021-08-28', 2655, 12589, 1267, 31680, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13070, '2021-08-28', 2950, 12590, 1267, 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 (13071, '2021-08-28', 1501, 12591, 1267, 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 (13072, '2021-08-28', 2135, 12592, 1267, 23175, '2.0000', '2.5000', '2.5000', '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 (13073, '2021-08-28', 2699, 12593, 1267, 31681, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13074, '2021-08-28', 7642, 12594, 1267, NULL, '1.0000', '2.6900', '2.6900', '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 (13075, '2021-08-28', 2169, 12595, 1267, NULL, '1.0000', '1.1300', '1.1300', '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 (13076, '2021-08-28', 7385, 12596, 1267, NULL, '3.0000', '12.5000', '12.5000', '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 (13077, '2021-08-28', 2951, 12597, 1267, 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 (13078, '2021-08-28', 2405, 12598, 1267, 23111, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '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 (13079, '2021-08-28', 2739, 12599, 1267, 19347, '3.0000', '6.7000', '6.7000', '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 (13080, '2021-08-28', 8429, 12600, 1267, NULL, '1.0000', '16.0000', '16.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 (13081, '2021-08-28', 9204, 12601, 1267, NULL, '1.0000', '8.1600', '8.1600', '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 (13082, '2021-08-28', 1863, 12602, 1267, NULL, '1.0000', '0.3450', '0.3450', '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 (13083, '2021-08-28', 2037, 12603, 1267, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '20.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 (13084, '2021-08-28', 2982, 12604, 1267, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '17.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 (13085, '2021-08-28', 1863, 12605, 1268, NULL, '1.0000', '0.3450', '0.3450', '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 (13086, '2021-08-28', 2169, 12606, 1268, NULL, '2.0000', '1.1300', '1.1300', '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 (13087, '2021-08-28', 2699, 12607, 1269, 31687, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13088, '2021-08-28', 1346, 12608, 1270, 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 (13089, '2021-08-28', 7756, 12609, 1271, NULL, '1.0000', '2.5000', '2.5000', '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 (13090, '2021-08-28', 1340, 12610, 1271, 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 (13091, '2021-08-28', 2567, 12611, 1271, 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 (13092, '2021-08-28', 7978, 12612, 1271, NULL, '1.0000', '0.5100', '0.5100', '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 (13093, '2021-08-28', 2296, 12613, 1271, NULL, '1.0000', '13.2900', '13.2900', '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 (13094, '2021-08-28', 2415, 12614, 1271, 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 (13095, '2021-08-28', 7448, 12615, 1271, NULL, '1.0000', '15.8500', '15.8500', '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 (13096, '2021-08-28', 8878, 12616, 1271, NULL, '1.0000', '6.6700', '6.6700', '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 (13097, '2021-08-28', 2068, 12617, 1271, 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 (13098, '2021-08-28', 8085, 12618, 1271, NULL, '3.0000', '14.0000', '14.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 (13099, '2021-08-28', 9463, 12619, 1271, 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 (13100, '2021-08-28', 9466, 12620, 1271, 31737, '1.0000', '20.0000', '20.0000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13101, '2021-08-28', 8679, 12621, 1271, NULL, '1.0000', '28.0000', '28.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 (13102, '2021-08-29', 7822, 12622, 1272, NULL, '1.0000', '5.6000', '5.6000', '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 (13103, '2021-08-29', 2544, 12623, 1272, NULL, '1.0000', '6.8800', '6.8800', '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 (13104, '2021-08-29', 8937, 12624, 1272, NULL, '1.0000', '3.5000', '3.5000', '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 (13105, '2021-08-29', 8420, 12625, 1272, 31035, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '9.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13106, '2021-08-29', 2968, 12626, 1272, NULL, '1.0000', '18.0000', '18.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 (13107, '2021-08-29', 8548, 12627, 1272, NULL, '1.0000', '12.0000', '12.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 (13108, '2021-08-29', 8166, 12628, 1272, NULL, '1.0000', '4.6000', '4.6000', '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 (13109, '2021-08-29', 8340, 12629, 1272, NULL, '5.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (13110, '2021-08-29', 7509, 12630, 1272, 31007, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13111, '2021-08-29', 1904, 12631, 1272, 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 (13112, '2021-08-29', 7691, 12632, 1272, NULL, '1.0000', '4.1300', '4.1300', '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 (13113, '2021-08-29', 1670, 12633, 1273, 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 (13114, '2021-08-29', 7612, 12634, 1273, NULL, '1.0000', '46.0000', '46.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 (13115, '2021-08-29', 1542, 12635, 1273, 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 (13116, '2021-08-29', 7411, 12636, 1273, 30171, '3.0000', '1.3500', '1.3500', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13117, '2021-08-29', 8430, 12637, 1273, 31014, '1.0000', '26.4635', '26.4635', '38.5000', '38.5000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13118, '2021-08-29', 9332, 12638, 1273, NULL, '1.0000', '72.0000', '72.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 (13119, '2021-08-29', 7737, 12639, 1273, NULL, '1.0000', '3.0000', '3.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 (13120, '2021-08-29', 7738, 12640, 1273, NULL, '1.0000', '8.0000', '8.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 (13121, '2021-08-29', 2342, 12641, 1273, NULL, '2.0000', '1.8600', '1.8600', '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 (13122, '2021-08-29', 8340, 12642, 1273, NULL, '4.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (13123, '2021-08-29', 7886, 12643, 1274, NULL, '2.0000', '14.5000', '14.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 (13124, '2021-08-29', 7514, 12644, 1274, NULL, '3.0000', '7.8800', '7.8800', '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 (13125, '2021-08-29', 7641, 12645, 1274, NULL, '1.0000', '1.9000', '1.9000', '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 (13126, '2021-08-29', 7411, 12646, 1275, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13127, '2021-08-29', 7675, 12647, 1275, NULL, '1.0000', '11.4300', '11.4300', '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 (13128, '2021-08-29', 8698, 12648, 1275, NULL, '1.0000', '2.0000', '2.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 (13129, '2021-08-29', 8466, 12649, 1275, NULL, '3.0000', '9.8000', '9.8000', '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 (13130, '2021-08-29', 7672, 12650, 1276, NULL, '1.0000', '1.0200', '1.0200', '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 (13131, '2021-08-29', 8135, 12651, 1276, NULL, '1.0000', '13.9000', '13.9000', '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 (13132, '2021-08-29', 7674, 12652, 1276, NULL, '3.0000', '14.5000', '14.5000', '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 (13133, '2021-08-29', 7708, 12653, 1276, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13134, '2021-08-29', 7927, 12654, 1276, 30192, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13135, '2021-08-29', 7651, 12655, 1276, NULL, '1.0000', '5.0000', '5.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 (13136, '2021-08-29', 2220, 12656, 1276, NULL, '1.0000', '5.2800', '5.2800', '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 (13137, '2021-08-29', 8372, 12657, 1277, 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 (13138, '2021-08-29', 2544, 12658, 1278, NULL, '1.0000', '6.8800', '6.8800', '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 (13139, '2021-08-29', 8519, 12659, 1278, NULL, '4.0000', '4.6700', '4.6700', '3.7000', '3.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 (13140, '2021-08-29', 1398, 12660, 1278, 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 (13141, '2021-08-29', 7591, 12661, 1278, NULL, '1.0000', '2.7500', '2.7500', '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 (13142, '2021-08-29', 7506, 12662, 1278, NULL, '1.0000', '15.0000', '15.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 (13143, '2021-08-29', 2104, 12663, 1278, NULL, '2.0000', '0.2000', '0.2000', '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 (13144, '2021-08-29', 9204, 12664, 1279, NULL, '1.0000', '8.1600', '8.1600', '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 (13145, '2021-08-29', 2315, 12665, 1279, 24937, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '47.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 (13146, '2021-08-29', 9154, 12666, 1279, NULL, '1.0000', '10.6800', '10.6800', '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 (13147, '2021-08-29', 1649, 12667, 1279, 31103, '1.0000', '11.1900', '11.1900', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13148, '2021-08-29', 2655, 12668, 1279, 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 (13149, '2021-08-29', 7954, 12669, 1279, NULL, '5.0000', '21.0000', '21.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 (13150, '2021-08-29', 2730, 12670, 1279, 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 (13151, '2021-08-29', 1863, 12671, 1279, NULL, '1.0000', '0.3450', '0.3450', '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 (13152, '2021-08-29', 2379, 12672, 1279, NULL, '1.0000', '1.8000', '1.8000', '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 (13153, '2021-08-29', 7369, 12673, 1279, NULL, '1.0000', '32.4000', '32.4000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13154, '2021-08-29', 1762, 12674, 1279, 25011, '1.0000', '9.9800', '9.9800', '13.5000', '13.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 (13155, '2021-08-29', 1617, 12675, 1279, NULL, '1.0000', '4.6300', '4.6300', '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 (13156, '2021-08-29', 2642, 12676, 1279, 22561, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '11.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 (13157, '2021-08-29', 2169, 12677, 1279, NULL, '1.0000', '1.1300', '1.1300', '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 (13158, '2021-08-29', 2656, 12678, 1279, 31679, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13159, '2021-08-29', 2293, 12679, 1279, 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 (13160, '2021-08-29', 1381, 12680, 1279, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (13161, '2021-08-29', 2360, 12681, 1279, 19865, '4.0000', '0.5200', '0.5200', '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 (13162, '2021-08-29', 2169, 12682, 1279, NULL, '2.0000', '1.1300', '1.1300', '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 (13163, '2021-08-29', 2444, 12683, 1280, 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 (13164, '2021-08-29', 1871, 12684, 1280, 469, '5.0000', '24.5246', '24.5246', '3.0000', '3.0000', '55.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13165, '2021-08-29', 2320, 12685, 1280, 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 (13166, '2021-08-29', 1928, 12686, 1280, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '8.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 (13167, '2021-08-29', 1863, 12687, 1280, 10808, '1.0000', '0.4136', '0.4136', '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 (13168, '2021-08-29', 1602, 12688, 1280, 5897, '2.0000', '6.7859', '6.7859', '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 (13169, '2021-08-29', 1912, 12689, 1280, 20584, '2.0000', '0.3200', '0.3200', '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 (13170, '2021-08-29', 1346, 12690, 1280, 3319, '5.0000', '1.0594', '1.0594', '1.5000', '1.5000', '8.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 (13171, '2021-08-29', 2974, 12691, 1280, 22364, '-7.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 (13172, '2021-08-29', 2974, 12691, 1280, NULL, '8.0000', '5.0000', '5.0000', '8.0000', '8.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 (13173, '2021-08-29', 2484, 12692, 1280, 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 (13174, '2021-08-29', 2485, 12693, 1280, 18712, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '0.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 (13175, '2021-08-29', 1523, 12694, 1280, 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 (13176, '2021-08-29', 1420, 12695, 1280, 22318, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (13177, '2021-08-29', 7707, 12696, 1280, NULL, '1.0000', '7.0000', '7.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 (13178, '2021-08-29', 7749, 12697, 1280, NULL, '1.0000', '3.0000', '3.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 (13179, '2021-08-29', 8059, 12698, 1280, 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 (13180, '2021-08-29', 1592, 12699, 1280, 6223, '-1.0000', '35.9000', '35.9000', '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 (13181, '2021-08-29', 1592, 12699, 1280, NULL, '2.0000', '35.9000', '35.9000', '47.0000', '47.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 (13182, '2021-08-29', 1666, 12700, 1280, 3236, '-5.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 (13183, '2021-08-29', 1666, 12700, 1280, NULL, '6.0000', '2.7100', '2.7100', '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 (13184, '2021-08-29', 1432, 12701, 1280, 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 (13185, '2021-08-29', 9178, 12702, 1280, 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 (13186, '2021-08-29', 2025, 12703, 1280, 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 (13187, '2021-08-29', 1851, 12704, 1280, 2410, '1.0000', '10.6568', '10.6568', '17.0000', '17.0000', '1.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 (13188, '2021-08-29', 1748, 12705, 1280, 18844, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '45.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 (13189, '2021-08-29', 1928, 12706, 1280, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '8.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 (13190, '2021-08-29', 2010, 12707, 1280, 17832, '2.0000', '1.2500', '1.2500', '1.5800', '1.5800', '10.0000', 1, 0, NULL, 158);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13191, '2021-08-29', 1599, 12708, 1280, 8725, '-1.0000', '1.2800', '1.2800', '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 (13192, '2021-08-29', 1599, 12708, 1280, NULL, '2.0000', '1.2800', '1.2800', '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 (13193, '2021-08-29', 3012, 12709, 1280, NULL, '1.0000', '4.7000', '4.7000', '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 (13194, '2021-08-29', 2384, 12710, 1281, 18845, '5.0000', '0.4000', '0.4000', '0.7000', '0.7000', '39.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 (13195, '2021-08-29', 2485, 12711, 1281, 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 (13196, '2021-08-29', 1666, 12712, 1281, 3236, '-6.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 (13197, '2021-08-29', 1666, 12712, 1281, NULL, '8.0000', '2.7100', '2.7100', '3.5000', '3.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 (13198, '2021-08-29', 2283, 12713, 1281, 2943, '-4.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 (13199, '2021-08-29', 2283, 12713, 1281, NULL, '5.0000', '1.4300', '1.4300', '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 (13200, '2021-08-29', 1863, 12714, 1281, 10808, '2.0000', '0.4136', '0.4136', '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 (13201, '2021-08-29', 8074, 12715, 1282, NULL, '1.0000', '3.2800', '3.2800', '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 (13202, '2021-08-29', 1816, 12716, 1282, 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 (13203, '2021-08-29', 1303, 12717, 1282, 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 (13204, '2021-08-29', 2135, 12718, 1282, 23175, '1.0000', '2.5000', '2.5000', '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 (13205, '2021-08-29', 1598, 12719, 1282, NULL, '1.0000', '2.9300', '2.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 (13206, '2021-08-29', 1863, 12720, 1282, NULL, '1.0000', '0.3450', '0.3450', '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 (13207, '2021-08-29', 8596, 12721, 1282, NULL, '1.0000', '17.0000', '17.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 (13208, '2021-08-29', 9272, 12722, 1282, NULL, '1.0000', '3.1000', '3.1000', '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 (13209, '2021-08-29', 1785, 12723, 1282, 31088, '1.0000', '14.2875', '14.2875', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13210, '2021-08-29', 1339, 12724, 1282, 31094, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13211, '2021-08-29', 2762, 12725, 1282, 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 (13212, '2021-08-29', 2350, 12726, 1282, 30700, '1.0000', '10.3800', '10.3800', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13213, '2021-08-29', 1596, 12727, 1282, 19850, '1.0000', '2.5700', '2.5700', '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 (13214, '2021-08-29', 1966, 12728, 1282, 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 (13215, '2021-08-29', 2282, 12729, 1282, NULL, '1.0000', '18.0000', '18.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 (13216, '2021-08-29', 1530, 12730, 1283, 7391, '1.0000', '28.7012', '28.7012', '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 (13217, '2021-08-29', 1863, 12731, 1283, 10808, '1.0000', '0.4136', '0.4136', '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 (13218, '2021-08-29', 1713, 12732, 1283, 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 (13219, '2021-08-29', 3012, 12733, 1283, NULL, '1.0000', '4.7000', '4.7000', '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 (13220, '2021-08-29', 1771, 12734, 1283, 6775, '1.0000', '5.2450', '5.2450', '6.0000', '6.0000', '3.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 (13221, '2021-08-29', 1831, 12735, 1283, 22320, '2.0000', '8.4400', '8.4400', '11.5000', '11.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 (13222, '2021-08-29', 1665, 12736, 1283, 3235, '-13.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 (13223, '2021-08-29', 1665, 12736, 1283, NULL, '14.0000', '1.3000', '1.3000', '2.0000', '2.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 (13224, '2021-08-29', 2699, 12737, 1283, 12529, '-3.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 (13225, '2021-08-29', 2699, 12737, 1283, NULL, '4.0000', '3.0000', '3.0000', '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 (13226, '2021-08-29', 1816, 12738, 1283, 18858, '1.0000', '18.2300', '18.2300', '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 (13227, '2021-08-29', 1980, 12739, 1283, 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 (13228, '2021-08-29', 2319, 12740, 1283, 3475, '1.0000', '3.4444', '3.4444', '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 (13229, '2021-08-29', 2315, 12741, 1283, 2735, '-61.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13230, '2021-08-29', 2315, 12741, 1283, NULL, '63.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13231, '2021-08-29', 7765, 12742, 1284, NULL, '3.0000', '16.0000', '16.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 (13232, '2021-08-29', 7736, 12743, 1284, NULL, '1.0000', '4.0000', '4.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 (13233, '2021-08-29', 2943, 12744, 1284, 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 (13234, '2021-08-29', 8187, 12745, 1284, NULL, '1.0000', '14.3900', '14.3900', '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 (13235, '2021-08-29', 7674, 12746, 1284, NULL, '1.0000', '14.5000', '14.5000', '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 (13236, '2021-08-29', 1739, 12747, 1284, 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 (13237, '2021-08-29', 7612, 12748, 1284, NULL, '1.0000', '46.0000', '46.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 (13238, '2021-08-29', 1644, 12749, 1284, NULL, '1.0000', '90.0000', '90.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 (13239, '2021-08-29', 7491, 12750, 1284, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13240, '2021-08-29', 7782, 12751, 1284, NULL, '2.0000', '5.0000', '5.0000', '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 (13241, '2021-08-29', 2060, 12752, 1284, 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 (13242, '2021-08-29', 8900, 12753, 1284, NULL, '1.0000', '16.4000', '16.4000', '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 (13243, '2021-08-29', 8445, 12754, 1284, NULL, '1.0000', '13.0000', '13.0000', '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 (13244, '2021-08-29', 7509, 12755, 1284, 31007, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13245, '2021-08-29', 8739, 12756, 1284, NULL, '1.0000', '4.3200', '4.3200', '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 (13246, '2021-08-29', 7609, 12757, 1284, NULL, '1.0000', '4.3300', '4.3300', '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 (13247, '2021-08-29', 8456, 12758, 1284, NULL, '1.0000', '5.5400', '5.5400', '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 (13248, '2021-08-29', 2444, 12759, 1284, 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 (13249, '2021-08-29', 8208, 12760, 1284, NULL, '4.0000', '33.0000', '33.0000', '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 (13250, '2021-08-29', 7558, 12761, 1284, NULL, '6.0000', '33.0200', '33.0200', '3.0000', '3.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 (13251, '2021-08-29', 8155, 12762, 1284, NULL, '2.0000', '65.0000', '65.0000', '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 (13252, '2021-08-29', 7583, 12763, 1284, NULL, '1.0000', '4.0000', '4.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 (13253, '2021-08-29', 9329, 12764, 1284, 30177, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13254, '2021-08-29', 7370, 12765, 1285, NULL, '1.0000', '27.6000', '27.6000', '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 (13255, '2021-08-29', 7606, 12766, 1285, 30201, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13256, '2021-08-29', 8512, 12767, 1285, NULL, '1.0000', '4.0000', '4.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 (13257, '2021-08-29', 2242, 12768, 1285, 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 (13258, '2021-08-29', 8497, 12769, 1285, NULL, '1.0000', '28.0000', '28.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 (13259, '2021-08-29', 7518, 12770, 1285, NULL, '1.0000', '5.1300', '5.1300', '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 (13260, '2021-08-29', 7743, 12771, 1285, NULL, '2.0000', '7.3900', '7.3900', '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 (13261, '2021-08-29', 7353, 12772, 1285, 30931, '2.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13262, '2021-08-29', 8397, 12773, 1285, NULL, '1.0000', '44.5000', '44.5000', '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 (13263, '2021-08-29', 7819, 12774, 1285, NULL, '1.0000', '9.5000', '9.5000', '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 (13264, '2021-08-29', 8878, 12775, 1285, NULL, '1.0000', '6.6700', '6.6700', '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 (13265, '2021-08-29', 2965, 12776, 1285, NULL, '2.0000', '5.0000', '5.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 (13266, '2021-08-29', 8085, 12777, 1285, NULL, '3.0000', '14.0000', '14.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 (13267, '2021-08-29', 8964, 12778, 1285, NULL, '4.0000', '7.3600', '7.3600', '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 (13268, '2021-08-29', 7674, 12779, 1285, NULL, '2.0000', '14.5000', '14.5000', '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 (13269, '2021-08-29', 9337, 12780, 1285, NULL, '10.0000', '5.7200', '5.7200', '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 (13270, '2021-08-29', 8407, 12781, 1285, NULL, '1.0000', '2.9800', '2.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 (13271, '2021-08-29', 1954, 12782, 1286, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '7.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 (13272, '2021-08-29', 1689, 12783, 1286, 549, '1.0000', '60.7198', '60.7198', '17.0000', '17.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 (13273, '2021-08-29', 1504, 12784, 1286, 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 (13274, '2021-08-29', 2566, 12785, 1286, 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 (13275, '2021-08-29', 1519, 12786, 1286, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (13276, '2021-08-29', 2635, 12787, 1286, 10297, '-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 (13277, '2021-08-29', 2635, 12787, 1286, NULL, '2.0000', '3.0000', '3.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 (13278, '2021-08-29', 2286, 12788, 1286, 2946, '-13.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 (13279, '2021-08-29', 2286, 12788, 1286, NULL, '14.0000', '4.3000', '4.3000', '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 (13280, '2021-08-29', 8242, 12789, 1286, NULL, '1.0000', '0.4900', '0.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 (13281, '2021-08-29', 1523, 12790, 1286, 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 (13282, '2021-08-29', 2821, 12791, 1286, 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 (13283, '2021-08-29', 7515, 12792, 1286, NULL, '1.0000', '3.5000', '3.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 (13284, '2021-08-29', 2280, 12793, 1287, 2940, '-1.0000', '3.0700', '3.0700', '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 (13285, '2021-08-29', 2280, 12793, 1287, NULL, '2.0000', '3.0700', '3.0700', '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 (13286, '2021-08-29', 1621, 12794, 1287, 7385, '-2.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 (13287, '2021-08-29', 1621, 12794, 1287, NULL, '3.0000', '6.6000', '6.6000', '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 (13288, '2021-08-29', 1935, 12795, 1287, 5586, '-13.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 (13289, '2021-08-29', 1935, 12795, 1287, NULL, '14.0000', '0.7200', '0.7200', '2.0000', '2.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 (13290, '2021-08-29', 1863, 12796, 1288, NULL, '1.0000', '0.3450', '0.3450', '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 (13291, '2021-08-29', 2169, 12797, 1288, NULL, '1.0000', '1.1300', '1.1300', '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 (13292, '2021-08-29', 2221, 12798, 1288, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (13293, '2021-08-29', 1809, 12799, 1288, 24206, '1.0000', '9.1880', '9.1880', '12.5000', '12.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 (13294, '2021-08-29', 8163, 12800, 1288, NULL, '1.0000', '4.9000', '4.9000', '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 (13295, '2021-08-29', 2289, 12801, 1288, 13744, '4.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 (13296, '2021-08-29', 2459, 12802, 1288, 30664, '2.0000', '5.4424', '5.4424', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13297, '2021-08-29', 1805, 12803, 1288, 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 (13298, '2021-08-29', 1839, 12804, 1288, 24949, '1.0000', '6.1500', '6.1500', '8.0000', '8.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 (13299, '2021-08-29', 1837, 12805, 1288, 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 (13300, '2021-08-29', 1787, 12806, 1288, NULL, '1.0000', '0.8100', '0.8100', '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 (13301, '2021-08-29', 1306, 12807, 1288, 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 (13302, '2021-08-29', 8097, 12808, 1288, NULL, '6.0000', '7.6800', '7.6800', '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 (13303, '2021-08-29', 1665, 12809, 1288, 30683, '4.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13304, '2021-08-29', 1590, 12810, 1288, 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 (13305, '2021-08-29', 1785, 12811, 1288, 19329, '1.0000', '14.2875', '14.2875', '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 (13306, '2021-08-29', 2183, 12812, 1288, 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 (13307, '2021-08-29', 2521, 12813, 1289, 25160, '1.0000', '11.0000', '11.0000', '14.0000', '14.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 (13308, '2021-08-29', 2806, 12814, 1290, NULL, '1.0000', '5.7500', '5.7500', '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 (13309, '2021-08-29', 2023, 12815, 1290, NULL, '1.0000', '15.0000', '15.0000', '19.8000', '19.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 (13310, '2021-08-29', 2037, 12816, 1290, 6389, '-1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13311, '2021-08-29', 2037, 12816, 1290, 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 (13312, '2021-08-30', 9330, 12817, 1291, NULL, '1.0000', '11.9900', '11.9900', '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 (13313, '2021-08-30', 9407, 12818, 1291, 30926, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13314, '2021-08-30', 8721, 12819, 1291, NULL, '1.0000', '3.0000', '3.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 (13315, '2021-08-30', 2291, 12820, 1291, NULL, '1.0000', '19.0000', '19.0000', '27.3000', '27.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 (13316, '2021-08-30', 8166, 12821, 1291, NULL, '2.0000', '4.6000', '4.6000', '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 (13317, '2021-08-30', 1563, 12822, 1291, NULL, '1.0000', '4.9000', '4.9000', '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 (13318, '2021-08-30', 7867, 12823, 1291, 30193, '1.0000', '2.7700', '2.7700', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13319, '2021-08-30', 7514, 12824, 1291, NULL, '3.0000', '7.8800', '7.8800', '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 (13320, '2021-08-30', 7483, 12825, 1291, 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 (13321, '2021-08-30', 8188, 12826, 1291, NULL, '1.0000', '13.9500', '13.9500', '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 (13322, '2021-08-30', 1596, 12827, 1291, NULL, '1.0000', '2.5700', '2.5700', '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 (13323, '2021-08-30', 8308, 12828, 1291, NULL, '1.0000', '11.0000', '11.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 (13324, '2021-08-30', 1388, 12829, 1291, 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 (13325, '2021-08-30', 8900, 12830, 1291, NULL, '1.0000', '16.4000', '16.4000', '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 (13326, '2021-08-30', 8608, 12831, 1291, NULL, '1.0000', '13.0000', '13.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 (13327, '2021-08-30', 7411, 12832, 1291, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13328, '2021-08-30', 8417, 12833, 1291, NULL, '1.0000', '5.8000', '5.8000', '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 (13329, '2021-08-30', 2867, 12834, 1291, 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 (13330, '2021-08-30', 1542, 12835, 1291, 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 (13331, '2021-08-30', 7638, 12836, 1291, 30935, '1.0000', '7.2779', '7.2779', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13332, '2021-08-30', 7411, 12837, 1291, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13333, '2021-08-30', 8166, 12838, 1291, NULL, '1.0000', '4.6000', '4.6000', '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 (13334, '2021-08-30', 7576, 12839, 1291, NULL, '1.0000', '6.9100', '6.9100', '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 (13335, '2021-08-30', 2060, 12840, 1291, 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 (13336, '2021-08-30', 2342, 12841, 1291, 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 (13337, '2021-08-30', 7703, 12842, 1291, NULL, '1.0000', '22.9900', '22.9900', '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 (13338, '2021-08-30', 7709, 12843, 1291, NULL, '2.0000', '35.8000', '35.8000', '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 (13339, '2021-08-30', 9098, 12844, 1292, 30934, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13340, '2021-08-30', 9098, 12844, 1292, 30158, '2.0000', '25.0000', '25.0000', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13341, '2021-08-30', 1610, 12845, 1293, 29791, '1.0000', '53.0750', '53.0750', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13342, '2021-08-30', 2156, 12846, 1293, 2462, '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 (13343, '2021-08-30', 1651, 12847, 1293, 31526, '1.0000', '7.2394', '7.2394', '10.3500', '10.3500', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13344, '2021-08-30', 2169, 12848, 1293, 31550, '1.0000', '0.9890', '0.9890', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13345, '2021-08-30', 2360, 12849, 1293, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (13346, '2021-08-30', 2307, 12850, 1293, 31455, '1.0000', '143.3538', '143.3538', '170.0000', '170.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13347, '2021-08-30', 1672, 12851, 1293, 24288, '12.0000', '44.6198', '44.6198', '4.0000', '4.0000', '14.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 (13348, '2021-08-30', 1675, 12852, 1293, 31708, '1.0000', '50.7333', '50.7333', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13349, '2021-08-30', 2270, 12853, 1293, 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 (13350, '2021-08-30', 1744, 12854, 1293, 31450, '1.0000', '53.6044', '53.6044', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13351, '2021-08-30', 2379, 12855, 1293, 4385, '1.0000', '1.5900', '1.5900', '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 (13352, '2021-08-30', 1844, 12856, 1293, 4976, '2.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 (13353, '2021-08-30', 8677, 12857, 1293, NULL, '2.0000', '7.8000', '7.8000', '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 (13354, '2021-08-30', 1502, 12858, 1293, 9542, '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 (13355, '2021-08-30', 1599, 12859, 1293, 12071, '1.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 (13356, '2021-08-30', 1599, 12859, 1293, 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 (13357, '2021-08-30', 2315, 12860, 1293, 3069, '8.0000', '0.3300', '0.3300', '0.5100', '0.5100', '318.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13358, '2021-08-30', 1481, 12861, 1293, 18677, '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 (13359, '2021-08-30', 1546, 12862, 1293, 31456, '1.0000', '64.5595', '64.5595', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13360, '2021-08-30', 2821, 12863, 1293, 17043, '1.0000', '3.5100', '3.5100', '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 (13361, '2021-08-30', 1410, 12864, 1293, 31729, '2.0000', '2.2220', '2.2220', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13362, '2021-08-30', 1523, 12865, 1293, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '43.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 (13363, '2021-08-30', 1574, 12866, 1293, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (13364, '2021-08-30', 2132, 12867, 1293, 4404, '1.0000', '22.0000', '22.0000', '24.0000', '24.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 (13365, '2021-08-30', 7721, 12868, 1293, 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 (13366, '2021-08-30', 2221, 12869, 1293, 24336, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '13.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 (13367, '2021-08-30', 7671, 12870, 1293, NULL, '4.0000', '15.5000', '15.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 (13368, '2021-08-30', 9350, 12871, 1294, NULL, '1.0000', '52.0200', '52.0200', '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 (13369, '2021-08-30', 8679, 12872, 1294, NULL, '1.0000', '28.0000', '28.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 (13370, '2021-08-30', 7715, 12873, 1294, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '45.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13371, '2021-08-30', 2974, 12874, 1294, 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 (13372, '2021-08-30', 9098, 12875, 1294, 30158, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13373, '2021-08-30', 9098, 12875, 1294, NULL, '2.0000', '25.0000', '25.0000', '34.5000', '34.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 (13374, '2021-08-30', 1856, 12876, 1294, 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 (13375, '2021-08-30', 7672, 12877, 1294, NULL, '1.0000', '1.0200', '1.0200', '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 (13376, '2021-08-30', 8269, 12878, 1294, NULL, '1.0000', '10.0000', '10.0000', '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 (13377, '2021-08-30', 8216, 12879, 1294, NULL, '1.0000', '11.6500', '11.6500', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13378, '2021-08-30', 7431, 12880, 1294, 30047, '1.0000', '4.6500', '4.6500', '24.0000', '24.0000', '14.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13379, '2021-08-30', 7612, 12881, 1294, NULL, '1.0000', '46.0000', '46.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 (13380, '2021-08-30', 7558, 12882, 1294, NULL, '4.0000', '33.0200', '33.0200', '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 (13381, '2021-08-30', 9409, 12883, 1294, NULL, '1.0000', '11.0000', '11.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 (13382, '2021-08-30', 1700, 12884, 1295, 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 (13383, '2021-08-30', 2169, 12885, 1295, NULL, '1.0000', '1.1300', '1.1300', '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 (13384, '2021-08-30', 1844, 12886, 1295, 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 (13385, '2021-08-30', 1665, 12887, 1295, 30683, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13386, '2021-08-30', 2916, 12888, 1295, 22610, '1.0000', '15.0176', '15.0176', '20.0000', '20.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 (13387, '2021-08-30', 2547, 12889, 1295, 24205, '1.0000', '8.9650', '8.9650', '12.5000', '12.5000', '0.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 (13388, '2021-08-30', 1781, 12890, 1295, 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 (13389, '2021-08-30', 2411, 12891, 1295, 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 (13390, '2021-08-30', 1523, 12892, 1295, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '28.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 (13391, '2021-08-30', 1912, 12893, 1295, 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 (13392, '2021-08-30', 3016, 12894, 1295, NULL, '2.0000', '14.5200', '14.5200', '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 (13393, '2021-08-30', 2366, 12895, 1295, NULL, '1.0000', '3.7500', '3.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 (13394, '2021-08-30', 2521, 12896, 1295, 25160, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '0.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 (13395, '2021-08-30', 1806, 12897, 1295, NULL, '1.0000', '90.0000', '90.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 (13396, '2021-08-30', 1819, 12898, 1295, NULL, '1.0000', '5.5000', '5.5000', '7.1700', '7.1700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13397, '2021-08-30', 1639, 12899, 1296, 3268, '1.0000', '6.6300', '6.6300', '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 (13398, '2021-08-30', 1602, 12900, 1297, 31474, '1.0000', '6.9446', '6.9446', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13399, '2021-08-30', 2565, 12901, 1297, 7198, '1.0000', '0.8100', '0.8100', '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 (13400, '2021-08-30', 1523, 12902, 1298, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '42.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 (13401, '2021-08-30', 7642, 12903, 1299, NULL, '1.0000', '2.6900', '2.6900', '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 (13402, '2021-08-30', 7819, 12904, 1299, NULL, '1.0000', '9.5000', '9.5000', '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 (13403, '2021-08-30', 7473, 12905, 1299, NULL, '2.0000', '9.2200', '9.2200', '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 (13404, '2021-08-30', 8198, 12906, 1299, NULL, '1.0000', '6.2900', '6.2900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13405, '2021-08-30', 7889, 12907, 1300, NULL, '1.0000', '15.0000', '15.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 (13406, '2021-08-30', 1523, 12908, 1301, 24139, '2.0000', '1.0061', '1.0061', '5.0000', '5.0000', '26.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 (13407, '2021-08-30', 1863, 12909, 1301, NULL, '1.0000', '0.3450', '0.3450', '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 (13408, '2021-08-30', 1306, 12910, 1301, 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 (13409, '2021-08-30', 2412, 12911, 1301, NULL, '2.0000', '0.5200', '0.5200', '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 (13410, '2021-08-30', 2315, 12912, 1301, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (13411, '2021-08-30', 8638, 12913, 1301, 30658, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13412, '2021-08-30', 2545, 12914, 1301, 30684, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13413, '2021-08-30', 1856, 12915, 1301, 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 (13414, '2021-08-30', 1805, 12916, 1301, 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 (13415, '2021-08-30', 1689, 12917, 1301, 30655, '1.0000', '12.2902', '12.2902', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13416, '2021-08-30', 2916, 12918, 1301, 22610, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '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 (13417, '2021-08-30', 7482, 12919, 1301, NULL, '1.0000', '3.0500', '3.0500', '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 (13418, '2021-08-30', 2073, 12920, 1301, 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 (13419, '2021-08-30', 2936, 12921, 1301, 23121, '1.0000', '6.0400', '6.0400', '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 (13420, '2021-08-30', 1402, 12922, 1301, 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 (13421, '2021-08-30', 7584, 12923, 1302, NULL, '1.0000', '3.8100', '3.8100', '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 (13422, '2021-08-30', 7500, 12924, 1302, NULL, '1.0000', '0.0000', '0.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 (13423, '2021-08-30', 8753, 12925, 1302, NULL, '1.0000', '20.0000', '20.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 (13424, '2021-08-30', 8061, 12926, 1302, NULL, '1.0000', '1.6000', '1.6000', '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 (13425, '2021-08-30', 2803, 12927, 1302, NULL, '1.0000', '8.2000', '8.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 (13426, '2021-08-30', 8548, 12928, 1302, NULL, '1.0000', '12.0000', '12.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 (13427, '2021-08-30', 7911, 12929, 1303, NULL, '1.0000', '4.3700', '4.3700', '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 (13428, '2021-08-30', 2100, 12930, 1303, 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 (13429, '2021-08-30', 1599, 12931, 1304, 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 (13430, '2021-08-30', 1580, 12932, 1304, 9446, '3.0000', '0.9900', '0.9900', '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 (13431, '2021-08-30', 2293, 12933, 1304, 3064, '3.0000', '1.4400', '1.4400', '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 (13432, '2021-08-30', 1787, 12934, 1304, 4930, '1.0000', '0.8100', '0.8100', '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 (13433, '2021-08-30', 2573, 12935, 1304, 7228, '1.0000', '8.0000', '8.0000', '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 (13434, '2021-08-30', 1637, 12936, 1304, 31553, '1.0000', '43.0588', '43.0588', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13435, '2021-08-30', 1928, 12937, 1304, 5630, '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 (13436, '2021-08-30', 2869, 12938, 1304, 17894, '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 (13437, '2021-08-30', 1702, 12939, 1304, 25034, '1.0000', '68.3850', '68.3850', '20.0000', '20.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 (13438, '2021-08-30', 9444, 12940, 1304, 30511, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 210);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13439, '2021-08-30', 2221, 12941, 1304, 24336, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.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 (13440, '2021-08-30', 2237, 12942, 1304, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '23.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 (13441, '2021-08-30', 1504, 12943, 1304, 24013, '10.0000', '1.7015', '1.7015', '2.0000', '2.0000', '22.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 (13442, '2021-08-30', 1863, 12944, 1304, 31466, '3.0000', '1.1876', '1.1876', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13443, '2021-08-30', 2315, 12945, 1304, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '316.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13444, '2021-08-30', 2331, 12946, 1304, 24324, '1.0000', '12.0700', '12.0700', '16.0000', '16.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 (13445, '2021-08-30', 1787, 12947, 1304, 4930, '2.0000', '0.8100', '0.8100', '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 (13446, '2021-08-30', 1837, 12948, 1304, 31714, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13447, '2021-08-30', 1863, 12949, 1304, 31466, '2.0000', '1.1876', '1.1876', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13448, '2021-08-30', 1790, 12950, 1304, 17459, '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 (13449, '2021-08-30', 2288, 12951, 1304, 3128, '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 (13450, '2021-08-30', 2546, 12952, 1304, 23600, '1.0000', '13.6300', '13.6300', '16.0000', '16.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 (13451, '2021-08-30', 2315, 12953, 1304, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '317.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13452, '2021-08-30', 2651, 12954, 1304, 11102, '1.0000', '10.7500', '10.7500', '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 (13453, '2021-08-30', 2132, 12955, 1304, 4404, '1.0000', '22.0000', '22.0000', '24.0000', '24.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 (13454, '2021-08-30', 9094, 12956, 1305, NULL, '1.0000', '6.0000', '6.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 (13455, '2021-08-30', 7744, 12957, 1305, NULL, '3.0000', '1.9000', '1.9000', '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 (13456, '2021-08-30', 9216, 12958, 1305, 31661, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13457, '2021-08-30', 8413, 12959, 1305, NULL, '1.0000', '3.0000', '3.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 (13458, '2021-08-30', 9369, 12960, 1305, NULL, '1.0000', '51.7800', '51.7800', '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 (13459, '2021-08-30', 7748, 12961, 1305, NULL, '1.0000', '33.9800', '33.9800', '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 (13460, '2021-08-30', 8119, 12962, 1305, 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 (13461, '2021-08-30', 2098, 12963, 1305, 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 (13462, '2021-08-30', 7736, 12964, 1305, NULL, '1.0000', '4.0000', '4.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 (13463, '2021-08-30', 8964, 12965, 1305, NULL, '2.0000', '7.3600', '7.3600', '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 (13464, '2021-08-30', 9142, 12966, 1305, 30927, '1.0000', '7.3800', '7.3800', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13465, '2021-08-30', 7712, 12967, 1305, NULL, '1.0000', '0.3300', '0.3300', '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 (13466, '2021-08-30', 7708, 12968, 1305, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13467, '2021-08-30', 9340, 12969, 1305, NULL, '1.0000', '26.2800', '26.2800', '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 (13468, '2021-08-30', 1947, 12970, 1305, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13469, '2021-08-30', 8913, 12971, 1305, NULL, '1.0000', '5.8300', '5.8300', '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 (13470, '2021-08-30', 8463, 12972, 1305, NULL, '1.0000', '18.0000', '18.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 (13471, '2021-08-30', 7518, 12973, 1305, NULL, '1.0000', '5.1300', '5.1300', '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 (13472, '2021-08-30', 7509, 12974, 1305, 30159, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13473, '2021-08-30', 7881, 12975, 1305, NULL, '1.0000', '32.7700', '32.7700', '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 (13474, '2021-08-30', 7509, 12976, 1305, 30159, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13475, '2021-08-30', 7514, 12977, 1305, NULL, '1.0000', '7.8800', '7.8800', '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 (13476, '2021-08-30', 7744, 12978, 1305, NULL, '1.0000', '1.9000', '1.9000', '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 (13477, '2021-08-30', 1841, 12979, 1305, 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 (13478, '2021-08-30', 9274, 12980, 1305, NULL, '1.0000', '0.2500', '0.2500', '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 (13479, '2021-08-30', 2315, 12981, 1305, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13480, '2021-08-30', 7477, 12982, 1305, NULL, '2.0000', '60.0000', '60.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 (13481, '2021-08-30', 7894, 12983, 1305, NULL, '1.0000', '22.0000', '22.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 (13482, '2021-08-30', 8419, 12984, 1305, NULL, '1.0000', '12.0000', '12.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 (13483, '2021-08-30', 8547, 12985, 1305, NULL, '1.0000', '16.5000', '16.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 (13484, '2021-08-30', 8878, 12986, 1305, NULL, '1.0000', '6.6700', '6.6700', '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 (13485, '2021-08-30', 8613, 12987, 1305, NULL, '1.0000', '4.0000', '4.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 (13486, '2021-08-30', 7674, 12988, 1305, NULL, '1.0000', '14.5000', '14.5000', '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 (13487, '2021-08-30', 2656, 12989, 1305, 31731, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13488, '2021-08-30', 7719, 12990, 1305, NULL, '1.0000', '5.5000', '5.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 (13489, '2021-08-30', 2079, 12991, 1305, NULL, '1.0000', '2.3000', '2.3000', '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 (13490, '2021-08-30', 1501, 12992, 1305, 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 (13491, '2021-08-30', 7547, 12993, 1305, NULL, '4.0000', '0.0000', '0.0000', '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 (13492, '2021-08-30', 9421, 12994, 1305, NULL, '2.0000', '4.0000', '4.0000', '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 (13493, '2021-08-30', 9193, 12995, 1305, NULL, '2.0000', '10.0000', '10.0000', '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 (13494, '2021-08-30', 7482, 12996, 1305, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13495, '2021-08-30', 8247, 12997, 1305, NULL, '2.0000', '10.0000', '10.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 (13496, '2021-08-30', 8539, 12998, 1305, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '71.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13497, '2021-08-30', 7633, 12999, 1305, NULL, '1.0000', '2.8700', '2.8700', '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 (13498, '2021-08-30', 8594, 13000, 1305, 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 (13499, '2021-08-30', 7753, 13001, 1305, NULL, '1.0000', '3.1400', '3.1400', '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 (13500, '2021-08-30', 2610, 13002, 1305, 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 (13501, '2021-08-30', 7518, 13003, 1305, NULL, '1.0000', '5.1300', '5.1300', '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 (13502, '2021-08-30', 7652, 13004, 1305, NULL, '10.0000', '40.3000', '40.3000', '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 (13503, '2021-08-30', 8140, 13005, 1305, NULL, '1.0000', '6.0500', '6.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 (13504, '2021-08-30', 8622, 13006, 1305, NULL, '1.0000', '10.0000', '10.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 (13505, '2021-08-30', 7921, 13007, 1305, NULL, '1.0000', '0.3000', '0.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 (13506, '2021-08-30', 8878, 13008, 1305, NULL, '1.0000', '6.6700', '6.6700', '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 (13507, '2021-08-30', 7460, 13009, 1305, NULL, '3.0000', '51.2000', '51.2000', '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 (13508, '2021-08-30', 7490, 13010, 1305, NULL, '1.0000', '9.7600', '9.7600', '0.4000', '0.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 (13509, '2021-08-30', 7547, 13011, 1305, NULL, '1.0000', '0.0000', '0.0000', '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 (13510, '2021-08-30', 7641, 13012, 1305, NULL, '1.0000', '1.9000', '1.9000', '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 (13511, '2021-08-30', 8359, 13013, 1306, NULL, '1.0000', '13.5000', '13.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 (13512, '2021-08-30', 1854, 13014, 1306, 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 (13513, '2021-08-30', 1428, 13015, 1306, 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 (13514, '2021-08-30', 7564, 13016, 1306, 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 (13515, '2021-08-30', 1501, 13017, 1306, NULL, '2.0000', '2.2087', '2.2087', '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 (13516, '2021-08-30', 1381, 13018, 1306, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (13517, '2021-08-30', 1342, 13019, 1306, 22390, '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 (13518, '2021-08-30', 2270, 13020, 1306, 30691, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13519, '2021-08-30', 2061, 13021, 1306, NULL, '1.0000', '10.9800', '10.9800', '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 (13520, '2021-08-30', 1867, 13022, 1306, 30694, '1.0000', '1.0500', '1.0500', '13.5000', '13.5000', '8.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13521, '2021-08-30', 1523, 13023, 1306, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '25.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 (13522, '2021-08-30', 2315, 13024, 1306, 24937, '4.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (13523, '2021-08-30', 2950, 13025, 1306, 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 (13524, '2021-08-30', 7385, 13026, 1306, NULL, '1.0000', '12.5000', '12.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 (13525, '2021-08-30', 1822, 13027, 1306, NULL, '16.0000', '2.5500', '2.5500', '3.5000', '3.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 (13526, '2021-08-30', 1935, 13028, 1306, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13527, '2021-08-30', 1761, 13029, 1306, 19370, '2.0000', '1.8200', '1.8200', '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 (13528, '2021-08-30', 2286, 13030, 1306, 29631, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13529, '2021-08-30', 1704, 13031, 1306, 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 (13530, '2021-08-30', 7765, 13032, 1306, NULL, '1.0000', '16.0000', '16.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 (13531, '2021-08-30', 2656, 13033, 1306, 31679, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13532, '2021-08-30', 2655, 13034, 1306, 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 (13533, '2021-08-30', 2699, 13035, 1306, 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 (13534, '2021-08-30', 1649, 13036, 1306, 31103, '1.0000', '11.1900', '11.1900', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13535, '2021-08-30', 1912, 13037, 1306, 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 (13536, '2021-08-30', 7353, 13038, 1306, NULL, '2.0000', '0.1900', '0.1900', '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 (13537, '2021-08-30', 1864, 13039, 1306, 30656, '1.0000', '6.2047', '6.2047', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13538, '2021-08-30', 3058, 13040, 1306, 30677, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13539, '2021-08-30', 7514, 13041, 1307, NULL, '2.0000', '7.8800', '7.8800', '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 (13540, '2021-08-30', 2290, 13042, 1307, 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 (13541, '2021-08-30', 1947, 13043, 1307, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13542, '2021-08-30', 2699, 13044, 1307, 31732, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13543, '2021-08-30', 7518, 13045, 1307, NULL, '1.0000', '5.1300', '5.1300', '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 (13544, '2021-08-30', 8702, 13046, 1307, NULL, '1.0000', '3.6700', '3.6700', '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 (13545, '2021-08-30', 7886, 13047, 1307, NULL, '1.0000', '14.5000', '14.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 (13546, '2021-08-30', 2892, 13048, 1307, 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 (13547, '2021-08-30', 8000, 13049, 1307, NULL, '1.0000', '25.8200', '25.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 (13548, '2021-08-30', 7888, 13050, 1308, NULL, '1.0000', '17.7800', '17.7800', '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 (13549, '2021-08-30', 1504, 13051, 1308, 24013, '10.0000', '1.7015', '1.7015', '2.0000', '2.0000', '12.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 (13550, '2021-08-30', 1783, 13052, 1308, 23606, '2.0000', '105.6595', '105.6595', '11.0000', '11.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 (13551, '2021-08-30', 1783, 13052, 1308, 18658, '1.0000', '105.6595', '105.6595', '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 (13552, '2021-08-30', 2915, 13053, 1308, 18786, '1.0000', '15.4500', '15.4500', '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 (13553, '2021-08-30', 2699, 13054, 1308, 31687, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13554, '2021-08-30', 1484, 13055, 1308, 1484, '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 (13555, '2021-08-30', 2317, 13056, 1308, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.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 (13556, '2021-08-30', 2136, 13057, 1308, 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 (13557, '2021-08-30', 2274, 13058, 1308, 24095, '1.0000', '3.9800', '3.9800', '6.5000', '6.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 (13558, '2021-08-30', 2403, 13059, 1308, 13548, '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 (13559, '2021-08-30', 2315, 13060, 1308, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '313.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13560, '2021-08-30', 2168, 13061, 1308, 22489, '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 (13561, '2021-08-30', 2418, 13062, 1308, 5803, '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 (13562, '2021-08-30', 2672, 13063, 1308, 11890, '6.0000', '7.6200', '7.6200', '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 (13563, '2021-08-30', 2411, 13064, 1308, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '15.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 (13564, '2021-08-30', 2237, 13065, 1308, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '22.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 (13565, '2021-08-30', 2315, 13066, 1308, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '314.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13566, '2021-08-30', 1411, 13067, 1308, 31484, '1.0000', '20.6434', '20.6434', '34.0000', '34.0000', '9.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13567, '2021-08-30', 2109, 13068, 1308, 6021, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '102.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13568, '2021-08-30', 8489, 13069, 1308, NULL, '1.0000', '30.3000', '30.3000', '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 (13569, '2021-08-30', 2604, 13070, 1308, 24001, '1.0000', '90.0000', '90.0000', '120.0000', '120.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 (13570, '2021-08-30', 2708, 13071, 1308, 24280, '1.0000', '33.9600', '33.9600', '55.0000', '55.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 (13571, '2021-08-30', 7637, 13072, 1308, 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 (13572, '2021-08-30', 1531, 13073, 1309, 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 (13573, '2021-08-30', 9204, 13074, 1309, NULL, '1.0000', '8.1600', '8.1600', '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 (13574, '2021-08-30', 2992, 13075, 1309, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (13575, '2021-08-30', 1519, 13076, 1309, 30682, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13576, '2021-08-30', 2003, 13077, 1309, 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 (13577, '2021-08-30', 1863, 13078, 1309, NULL, '1.0000', '0.3450', '0.3450', '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 (13578, '2021-08-30', 2109, 13079, 1309, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '36.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 (13579, '2021-08-30', 1523, 13080, 1309, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '24.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 (13580, '2021-08-30', 8084, 13081, 1309, 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 (13581, '2021-08-30', 2655, 13082, 1309, 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 (13582, '2021-08-30', 8000, 13083, 1310, NULL, '1.0000', '25.8200', '25.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 (13583, '2021-08-30', 7666, 13084, 1310, NULL, '1.0000', '10.0000', '10.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 (13584, '2021-08-30', 2167, 13085, 1310, 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 (13585, '2021-08-30', 7316, 13086, 1310, 30165, '5.0000', '0.8600', '0.8600', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13586, '2021-08-30', 7743, 13087, 1310, NULL, '1.0000', '7.3900', '7.3900', '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 (13587, '2021-08-30', 2923, 13088, 1311, 18792, '1.0000', '11.1200', '11.1200', '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 (13588, '2021-08-30', 1790, 13089, 1311, 17459, '1.0000', '90.0000', '90.0000', '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 (13589, '2021-08-30', 2068, 13090, 1311, 22652, '1.0000', '12.8833', '12.8833', '17.0000', '17.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 (13590, '2021-08-30', 1479, 13091, 1311, 1489, '1.0000', '90.0000', '90.0000', '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 (13591, '2021-08-30', 7753, 13092, 1312, NULL, '1.0000', '3.1400', '3.1400', '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 (13592, '2021-08-30', 1602, 13093, 1312, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '14.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13593, '2021-08-30', 2528, 13094, 1313, 15797, '2.0000', '8.5000', '8.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 (13594, '2021-08-31', 2316, 13095, 1314, 25030, '1.0000', '43.9200', '43.9200', '48.0000', '48.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 (13595, '2021-08-31', 2294, 13096, 1314, 31451, '1.0000', '3.1552', '3.1552', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13596, '2021-08-31', 1605, 13097, 1314, 17836, '1.0000', '24.8500', '24.8500', '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 (13597, '2021-08-31', 1455, 13098, 1314, 5620, '2.0000', '4.0000', '4.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 (13598, '2021-08-31', 1950, 13099, 1314, 6005, '1.0000', '10.0000', '10.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 (13599, '2021-08-31', 7741, 13100, 1314, NULL, '1.0000', '1.2000', '1.2000', '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 (13600, '2021-08-31', 3083, 13101, 1314, 27338, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13601, '2021-08-31', 2539, 13102, 1314, 12244, '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 (13602, '2021-08-31', 2285, 13103, 1314, 31503, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13603, '2021-08-31', 2279, 13104, 1314, 23614, '1.0000', '2.6280', '2.6280', '4.0000', '4.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 (13604, '2021-08-31', 1523, 13105, 1314, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '41.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 (13605, '2021-08-31', 1432, 13106, 1314, 31527, '2.0000', '9.1124', '9.1124', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13606, '2021-08-31', 1782, 13107, 1314, 4935, '1.0000', '2.5000', '2.5000', '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 (13607, '2021-08-31', 1432, 13108, 1314, 31527, '1.0000', '9.1124', '9.1124', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13608, '2021-08-31', 1612, 13109, 1314, 9422, '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 (13609, '2021-08-31', 2413, 13110, 1314, 24121, '2.0000', '1.0500', '1.0500', '1.5000', '1.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 (13610, '2021-08-31', 1999, 13111, 1314, 21834, '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 (13611, '2021-08-31', 7556, 13112, 1314, NULL, '1.0000', '2.0000', '2.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 (13612, '2021-08-31', 1667, 13113, 1314, 31704, '1.0000', '70.9201', '70.9201', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13613, '2021-08-31', 1863, 13114, 1314, 31466, '2.0000', '1.1876', '1.1876', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13614, '2021-08-31', 1533, 13115, 1314, 10385, '1.0000', '3.0500', '3.0500', '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 (13615, '2021-08-31', 7671, 13116, 1314, NULL, '1.0000', '15.5000', '15.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 (13616, '2021-08-31', 1935, 13117, 1314, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13617, '2021-08-31', 1863, 13118, 1314, 31466, '2.0000', '1.1876', '1.1876', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13618, '2021-08-31', 1602, 13119, 1314, 31474, '1.0000', '6.9446', '6.9446', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13619, '2021-08-31', 1574, 13120, 1314, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (13620, '2021-08-31', 2315, 13121, 1314, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '311.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13621, '2021-08-31', 1667, 13122, 1314, 31704, '1.0000', '70.9201', '70.9201', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13622, '2021-08-31', 2449, 13123, 1314, 16937, '2.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 (13623, '2021-08-31', 2806, 13124, 1314, 16936, '2.0000', '5.7500', '5.7500', '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 (13624, '2021-08-31', 1839, 13125, 1315, 24949, '1.0000', '6.1500', '6.1500', '8.0000', '8.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 (13625, '2021-08-31', 2068, 13126, 1315, 23686, '1.0000', '12.0277', '12.0277', '17.0000', '17.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 (13626, '2021-08-31', 1675, 13127, 1315, 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 (13627, '2021-08-31', 1867, 13128, 1315, 30694, '2.0000', '1.0500', '1.0500', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13628, '2021-08-31', 1687, 13129, 1315, NULL, '1.0000', '12.0000', '12.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 (13629, '2021-08-31', 1550, 13130, 1315, 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 (13630, '2021-08-31', 2521, 13131, 1315, 22548, '1.0000', '11.0000', '11.0000', '14.0000', '14.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 (13631, '2021-08-31', 2061, 13132, 1315, NULL, '1.0000', '10.9800', '10.9800', '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 (13632, '2021-08-31', 1639, 13133, 1315, 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 (13633, '2021-08-31', 1852, 13134, 1315, 19331, '2.0000', '14.9000', '14.9000', '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 (13634, '2021-08-31', 1856, 13135, 1315, 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 (13635, '2021-08-31', 9167, 13136, 1315, NULL, '1.0000', '50.0000', '50.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 (13636, '2021-08-31', 2169, 13137, 1315, NULL, '1.0000', '1.1300', '1.1300', '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 (13637, '2021-08-31', 1687, 13138, 1315, NULL, '1.0000', '12.0000', '12.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 (13638, '2021-08-31', 1863, 13139, 1315, NULL, '1.0000', '0.3450', '0.3450', '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 (13639, '2021-08-31', 2315, 13140, 1315, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (13640, '2021-08-31', 2288, 13141, 1315, 23684, '1.0000', '7.8600', '7.8600', '11.0000', '11.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 (13641, '2021-08-31', 2775, 13142, 1315, 23161, '1.0000', '18.9000', '18.9000', '25.0000', '25.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 (13642, '2021-08-31', 2273, 13143, 1315, 29644, '1.0000', '6.6450', '6.6450', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13643, '2021-08-31', 1689, 13144, 1315, 30655, '1.0000', '12.2902', '12.2902', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13644, '2021-08-31', 2068, 13145, 1315, 23686, '1.0000', '12.0277', '12.0277', '17.0000', '17.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 (13645, '2021-08-31', 1521, 13146, 1315, 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 (13646, '2021-08-31', 2699, 13147, 1316, 31687, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13647, '2021-08-31', 1411, 13148, 1316, 31484, '4.0000', '20.6434', '20.6434', '34.0000', '34.0000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13648, '2021-08-31', 7780, 13149, 1317, NULL, '1.0000', '2.6000', '2.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 (13649, '2021-08-31', 7560, 13150, 1317, NULL, '1.0000', '4.4500', '4.4500', '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 (13650, '2021-08-31', 9399, 13151, 1317, NULL, '1.0000', '4.4000', '4.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 (13651, '2021-08-31', 7509, 13152, 1317, 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 (13652, '2021-08-31', 8878, 13153, 1317, NULL, '1.0000', '6.6700', '6.6700', '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 (13653, '2021-08-31', 8288, 13154, 1317, NULL, '1.0000', '20.0000', '20.0000', '1.8000', '1.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 (13654, '2021-08-31', 8466, 13155, 1317, NULL, '7.0000', '9.8000', '9.8000', '4.0000', '4.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 (13655, '2021-08-31', 8063, 13156, 1317, NULL, '1.0000', '28.5000', '28.5000', '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 (13656, '2021-08-31', 7851, 13157, 1317, NULL, '1.0000', '12.7000', '12.7000', '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 (13657, '2021-08-31', 7472, 13158, 1317, NULL, '1.0000', '4.1000', '4.1000', '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 (13658, '2021-08-31', 8756, 13159, 1317, NULL, '1.0000', '9.5000', '9.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 (13659, '2021-08-31', 7444, 13160, 1317, 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 (13660, '2021-08-31', 7674, 13161, 1317, NULL, '1.0000', '14.5000', '14.5000', '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 (13661, '2021-08-31', 7363, 13162, 1317, NULL, '1.0000', '26.0000', '26.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 (13662, '2021-08-31', 8063, 13163, 1317, NULL, '1.0000', '28.5000', '28.5000', '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 (13663, '2021-08-31', 7889, 13164, 1317, NULL, '1.0000', '15.0000', '15.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 (13664, '2021-08-31', 7560, 13165, 1317, NULL, '1.0000', '4.4500', '4.4500', '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 (13665, '2021-08-31', 9154, 13166, 1317, 31011, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13666, '2021-08-31', 7711, 13167, 1317, NULL, '1.0000', '0.3900', '0.3900', '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 (13667, '2021-08-31', 7832, 13168, 1317, 31008, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13668, '2021-08-31', 1339, 13169, 1317, 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 (13669, '2021-08-31', 2297, 13170, 1317, 31019, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13670, '2021-08-31', 7641, 13171, 1317, NULL, '1.0000', '1.9000', '1.9000', '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 (13671, '2021-08-31', 7735, 13172, 1317, NULL, '2.0000', '5.0000', '5.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 (13672, '2021-08-31', 7612, 13173, 1317, NULL, '2.0000', '46.0000', '46.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 (13673, '2021-08-31', 8276, 13174, 1317, NULL, '1.0000', '4.7300', '4.7300', '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 (13674, '2021-08-31', 8296, 13175, 1317, NULL, '1.0000', '11.7600', '11.7600', '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 (13675, '2021-08-31', 7448, 13176, 1317, NULL, '1.0000', '15.8500', '15.8500', '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 (13676, '2021-08-31', 7428, 13177, 1317, 30148, '2.0000', '744.9056', '744.9056', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13677, '2021-08-31', 9312, 13178, 1317, NULL, '1.0000', '11.0000', '11.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 (13678, '2021-08-31', 7411, 13179, 1317, 30171, '3.0000', '1.3500', '1.3500', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13679, '2021-08-31', 7593, 13180, 1317, 30994, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13680, '2021-08-31', 8288, 13181, 1317, NULL, '5.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (13681, '2021-08-31', 7674, 13182, 1317, NULL, '2.0000', '14.5000', '14.5000', '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 (13682, '2021-08-31', 7447, 13183, 1317, NULL, '24.0000', '19.1100', '19.1100', '2.0000', '2.0000', '-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 (13683, '2021-08-31', 9094, 13184, 1317, NULL, '2.0000', '6.0000', '6.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 (13684, '2021-08-31', 7448, 13185, 1317, NULL, '1.0000', '15.8500', '15.8500', '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 (13685, '2021-08-31', 7423, 13186, 1317, NULL, '1.0000', '7.3200', '7.3200', '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 (13686, '2021-08-31', 8293, 13187, 1317, NULL, '1.0000', '24.7500', '24.7500', '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 (13687, '2021-08-31', 7641, 13188, 1317, NULL, '1.0000', '1.9000', '1.9000', '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 (13688, '2021-08-31', 8188, 13189, 1317, NULL, '1.0000', '13.9500', '13.9500', '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 (13689, '2021-08-31', 8452, 13190, 1317, NULL, '1.0000', '4.1500', '4.1500', '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 (13690, '2021-08-31', 7780, 13191, 1317, NULL, '1.0000', '2.6000', '2.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 (13691, '2021-08-31', 9154, 13192, 1317, 31011, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13692, '2021-08-31', 7777, 13193, 1317, NULL, '1.0000', '9.5000', '9.5000', '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 (13693, '2021-08-31', 8626, 13194, 1317, NULL, '1.0000', '10.0000', '10.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 (13694, '2021-08-31', 1818, 13195, 1317, NULL, '1.0000', '14.8000', '14.8000', '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 (13695, '2021-08-31', 2848, 13196, 1317, NULL, '1.0000', '16.2000', '16.2000', '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 (13696, '2021-08-31', 7335, 13197, 1317, 29985, '1.0000', '10.4000', '10.4000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13697, '2021-08-31', 7894, 13198, 1317, NULL, '2.0000', '22.0000', '22.0000', '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 (13698, '2021-08-31', 7834, 13199, 1318, NULL, '1.0000', '21.0000', '21.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 (13699, '2021-08-31', 7641, 13200, 1318, NULL, '1.0000', '1.9000', '1.9000', '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 (13700, '2021-08-31', 7689, 13201, 1319, NULL, '1.0000', '12.0700', '12.0700', '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 (13701, '2021-08-31', 7672, 13202, 1320, NULL, '2.0000', '1.0200', '1.0200', '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 (13702, '2021-08-31', 1340, 13203, 1321, 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 (13703, '2021-08-31', 8000, 13204, 1322, NULL, '1.0000', '25.8200', '25.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 (13704, '2021-08-31', 2825, 13205, 1323, 30221, '2.0000', '8.0000', '8.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13705, '2021-08-31', 8878, 13206, 1323, NULL, '5.0000', '6.6700', '6.6700', '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 (13706, '2021-08-31', 1904, 13207, 1323, NULL, '10.0000', '90.0000', '90.0000', '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 (13707, '2021-08-31', 7477, 13208, 1324, NULL, '1.0000', '60.0000', '60.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 (13708, '2021-08-31', 7527, 13209, 1324, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13709, '2021-08-31', 7477, 13210, 1324, NULL, '1.0000', '60.0000', '60.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 (13710, '2021-08-31', 7473, 13211, 1325, NULL, '5.0000', '9.2200', '9.2200', '0.6000', '0.6000', '-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 (13711, '2021-08-31', 1928, 13212, 1326, 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 (13712, '2021-08-31', 2648, 13213, 1327, NULL, '1.0000', '5.4000', '5.4000', '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 (13713, '2021-08-31', 8186, 13214, 1328, NULL, '1.0000', '1.0800', '1.0800', '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 (13714, '2021-08-31', 7514, 13215, 1328, NULL, '1.0000', '7.8800', '7.8800', '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 (13715, '2021-08-31', 1650, 13216, 1329, NULL, '1.0000', '14.5800', '14.5800', '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 (13716, '2021-08-31', 7593, 13217, 1330, 30994, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13717, '2021-08-31', 7636, 13218, 1330, NULL, '2.0000', '11.8700', '11.8700', '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 (13718, '2021-08-31', 9107, 13219, 1330, NULL, '1.0000', '3.4000', '3.4000', '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 (13719, '2021-08-31', 2287, 13220, 1330, 30205, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13720, '2021-08-31', 2287, 13220, 1330, NULL, '3.0000', '2.3000', '2.3000', '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 (13721, '2021-08-31', 7444, 13221, 1330, 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 (13722, '2021-08-31', 1340, 13222, 1330, 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 (13723, '2021-08-31', 7715, 13223, 1331, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '44.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13724, '2021-08-31', 7640, 13224, 1332, NULL, '1.0000', '5.8900', '5.8900', '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 (13725, '2021-08-31', 7892, 13225, 1333, NULL, '1.0000', '4.2000', '4.2000', '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 (13726, '2021-08-31', 7448, 13226, 1333, NULL, '1.0000', '15.8500', '15.8500', '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 (13727, '2021-08-31', 1818, 13227, 1333, NULL, '1.0000', '14.8000', '14.8000', '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 (13728, '2021-08-31', 8925, 13228, 1333, NULL, '1.0000', '2.4000', '2.4000', '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 (13729, '2021-08-31', 7448, 13229, 1333, NULL, '1.0000', '15.8500', '15.8500', '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 (13730, '2021-08-31', 2699, 13230, 1333, 31732, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13731, '2021-08-31', 9121, 13231, 1333, NULL, '1.0000', '30.0000', '30.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 (13732, '2021-08-31', 7641, 13232, 1334, NULL, '1.0000', '1.9000', '1.9000', '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 (13733, '2021-08-31', 1592, 13233, 1335, NULL, '1.0000', '53.9333', '53.9333', '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 (13734, '2021-08-31', 1828, 13234, 1335, 19854, '1.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 (13735, '2021-08-31', 1499, 13235, 1335, 31097, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13736, '2021-08-31', 1499, 13235, 1335, 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 (13737, '2021-08-31', 1863, 13236, 1335, NULL, '1.0000', '0.3450', '0.3450', '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 (13738, '2021-08-31', 3040, 13237, 1335, 23986, '1.0000', '13.5000', '13.5000', '18.0000', '18.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 (13739, '2021-08-31', 2582, 13238, 1335, 30678, '2.0000', '11.5000', '11.5000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13740, '2021-08-31', 7422, 13239, 1335, NULL, '2.0000', '4.4700', '4.4700', '55.0000', '55.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 (13741, '2021-08-31', 7385, 13240, 1335, NULL, '2.0000', '12.5000', '12.5000', '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 (13742, '2021-08-31', 2393, 13241, 1335, 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 (13743, '2021-08-31', 1665, 13242, 1335, 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 (13744, '2021-08-31', 1519, 13243, 1335, 30682, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13745, '2021-08-31', 1409, 13244, 1335, 24953, '1.0000', '13.0000', '13.0000', '18.0000', '18.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 (13746, '2021-08-31', 2986, 13245, 1335, 22609, '2.0000', '0.7700', '0.7700', '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 (13747, '2021-08-31', 2231, 13246, 1335, 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 (13748, '2021-08-31', 2280, 13247, 1335, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '32.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 (13749, '2021-08-31', 2821, 13248, 1335, 19816, '2.0000', '3.5100', '3.5100', '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 (13750, '2021-08-31', 2916, 13249, 1335, 22610, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '0.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 (13751, '2021-08-31', 2916, 13249, 1335, NULL, '1.0000', '15.0176', '15.0176', '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 (13752, '2021-08-31', 1501, 13250, 1335, NULL, '2.0000', '2.2087', '2.2087', '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 (13753, '2021-08-31', 2272, 13251, 1335, 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 (13754, '2021-08-31', 1856, 13252, 1335, 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 (13755, '2021-08-31', 1339, 13253, 1335, 31094, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13756, '2021-08-31', 8052, 13254, 1335, NULL, '6.0000', '0.4700', '0.4700', '38.0000', '38.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 (13757, '2021-08-31', 7783, 13255, 1335, NULL, '4.0000', '3.6500', '3.6500', '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 (13758, '2021-08-31', 7848, 13256, 1335, NULL, '1.0000', '1.3500', '1.3500', '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 (13759, '2021-08-31', 2576, 13257, 1335, NULL, '2.0000', '107.9300', '107.9300', '71.0000', '71.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 (13760, '2021-08-31', 2237, 13258, 1335, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (13761, '2021-08-31', 2242, 13259, 1335, 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 (13762, '2021-08-31', 1578, 13260, 1335, 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 (13763, '2021-08-31', 2951, 13261, 1335, 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 (13764, '2021-08-31', 1602, 13262, 1335, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '13.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13765, '2021-08-31', 1665, 13263, 1335, 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 (13766, '2021-08-31', 2132, 13264, 1335, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '13.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 (13767, '2021-08-31', 2315, 13265, 1335, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '37.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 (13768, '2021-08-31', 8638, 13266, 1335, 30658, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13769, '2021-08-31', 7741, 13267, 1335, NULL, '1.0000', '1.2000', '1.2000', '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 (13770, '2021-08-31', 7710, 13268, 1335, NULL, '2.0000', '26.0000', '26.0000', '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 (13771, '2021-08-31', 2088, 13269, 1335, 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 (13772, '2021-08-31', 2656, 13270, 1335, 31679, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13773, '2021-08-31', 2320, 13271, 1335, 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 (13774, '2021-08-31', 1651, 13272, 1335, 29640, '1.0000', '7.6717', '7.6717', '10.3500', '10.3500', '7.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13775, '2021-08-31', 2167, 13273, 1335, 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 (13776, '2021-08-31', 2660, 13274, 1335, 23143, '1.0000', '0.7000', '0.7000', '1.0000', '1.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 (13777, '2021-08-31', 8133, 13275, 1336, 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 (13778, '2021-08-31', 8878, 13276, 1336, NULL, '1.0000', '6.6700', '6.6700', '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 (13779, '2021-08-31', 8166, 13277, 1336, NULL, '1.0000', '4.6000', '4.6000', '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 (13780, '2021-08-31', 7881, 13278, 1336, NULL, '1.0000', '32.7700', '32.7700', '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 (13781, '2021-08-31', 7412, 13279, 1336, 30160, '2.0000', '1.5200', '1.5200', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13782, '2021-08-31', 1837, 13280, 1336, 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 (13783, '2021-08-31', 7412, 13281, 1336, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13784, '2021-08-31', 7743, 13282, 1336, NULL, '3.0000', '7.3900', '7.3900', '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 (13785, '2021-08-31', 7496, 13283, 1337, NULL, '1.0000', '0.9600', '0.9600', '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 (13786, '2021-08-31', 1338, 13284, 1337, 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 (13787, '2021-08-31', 1760, 13285, 1338, 6783, '2.0000', '1.5900', '1.5900', '2.0000', '2.0000', '16.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 (13788, '2021-08-31', 7746, 13286, 1338, 31723, '10.0000', '2.8600', '2.8600', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13789, '2021-08-31', 2154, 13287, 1338, NULL, '4.0000', '10.5000', '10.5000', '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 (13790, '2021-08-31', 2487, 13288, 1338, 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 (13791, '2021-08-31', 1658, 13289, 1338, 31701, '1.0000', '27.9300', '27.9300', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13792, '2021-08-31', 2169, 13290, 1338, 31550, '2.0000', '0.9890', '0.9890', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13793, '2021-08-31', 8208, 13291, 1338, NULL, '2.0000', '33.0000', '33.0000', '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 (13794, '2021-08-31', 1680, 13292, 1338, 2445, '1.0000', '4.9200', '4.9200', '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 (13795, '2021-08-31', 9211, 13293, 1338, NULL, '2.0000', '5.8300', '5.8300', '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 (13796, '2021-08-31', 8142, 13294, 1338, NULL, '1.0000', '84.7900', '84.7900', '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 (13797, '2021-08-31', 7614, 13295, 1338, NULL, '1.0000', '4.9200', '4.9200', '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 (13798, '2021-08-31', 2135, 13296, 1338, 16894, '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 (13799, '2021-08-31', 8093, 13297, 1338, NULL, '1.0000', '8.7800', '8.7800', '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 (13800, '2021-08-31', 2221, 13298, 1338, 24336, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.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 (13801, '2021-08-31', 2618, 13299, 1338, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.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 (13802, '2021-08-31', 1599, 13300, 1338, NULL, '2.0000', '12.8100', '12.8100', '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 (13803, '2021-08-31', 3004, 13301, 1338, 31502, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13804, '2021-08-31', 7482, 13302, 1338, NULL, '2.0000', '3.0500', '3.0500', '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 (13805, '2021-08-31', 1619, 13303, 1338, 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 (13806, '2021-08-31', 2965, 13304, 1338, 21818, '1.0000', '5.0000', '5.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 (13807, '2021-08-31', 1665, 13305, 1338, 22236, '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 (13808, '2021-08-31', 2169, 13306, 1338, 31550, '2.0000', '0.9890', '0.9890', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13809, '2021-08-31', 2037, 13307, 1338, 18355, '1.0000', '10.0000', '10.0000', '14.0000', '14.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 (13810, '2021-08-31', 1935, 13308, 1338, 31718, '2.0000', '7.9589', '7.9589', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13811, '2021-08-31', 1602, 13309, 1338, 31474, '1.0000', '6.9446', '6.9446', '10.5000', '10.5000', '16.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13812, '2021-08-31', 1411, 13310, 1338, 31484, '3.0000', '20.6434', '20.6434', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13813, '2021-08-31', 1790, 13311, 1338, 4927, '1.0000', '90.0000', '90.0000', '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 (13814, '2021-08-31', 2317, 13312, 1338, 15799, '2.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 (13815, '2021-08-31', 1651, 13313, 1338, 31526, '1.0000', '7.2394', '7.2394', '10.3500', '10.3500', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13816, '2021-08-31', 1573, 13314, 1338, NULL, '1.0000', '28.7063', '28.7063', '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 (13817, '2021-08-31', 1935, 13315, 1338, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13818, '2021-08-31', 8345, 13316, 1338, NULL, '1.0000', '22.0000', '22.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 (13819, '2021-08-31', 1612, 13317, 1338, 9422, '1.0000', '1.6000', '1.6000', '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 (13820, '2021-08-31', 2617, 13318, 1338, 29804, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13821, '2021-08-31', 1863, 13319, 1338, 31466, '1.0000', '1.1876', '1.1876', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13822, '2021-08-31', 2656, 13320, 1338, 31686, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13823, '2021-08-31', 2135, 13321, 1338, 16894, '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 (13824, '2021-08-31', 2655, 13322, 1338, 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 (13825, '2021-08-31', 2876, 13323, 1338, 17901, '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 (13826, '2021-08-31', 1783, 13324, 1338, 18658, '1.0000', '105.6595', '105.6595', '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 (13827, '2021-08-31', 2975, 13325, 1339, 22402, '2.0000', '6.0000', '6.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 (13828, '2021-08-31', 2656, 13326, 1339, 31679, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13829, '2021-08-31', 2951, 13327, 1340, 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 (13830, '2021-08-31', 2020, 13328, 1340, 23692, '1.0000', '7.5000', '7.5000', '10.0000', '10.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 (13831, '2021-08-31', 2302, 13329, 1340, 31085, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13832, '2021-08-31', 1863, 13330, 1340, NULL, '1.0000', '0.3450', '0.3450', '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 (13833, '2021-08-31', 8774, 13331, 1341, NULL, '1.0000', '8.0000', '8.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 (13834, '2021-08-31', 2135, 13332, 1341, 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 (13835, '2021-08-31', 7778, 13333, 1341, NULL, '1.0000', '13.0100', '13.0100', '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 (13836, '2021-08-31', 7774, 13334, 1341, NULL, '1.0000', '3.5000', '3.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 (13837, '2021-08-31', 9143, 13335, 1341, NULL, '1.0000', '6.8900', '6.8900', '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 (13838, '2021-08-31', 1667, 13336, 1342, 31704, '1.0000', '70.9201', '70.9201', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13839, '2021-08-31', 1863, 13337, 1342, 31466, '1.0000', '1.1876', '1.1876', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13840, '2021-08-31', 2829, 13338, 1342, 24021, '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 (13841, '2021-08-31', 1651, 13339, 1342, 31526, '1.0000', '7.2394', '7.2394', '10.3500', '10.3500', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13842, '2021-08-31', 7524, 13340, 1342, NULL, '1.0000', '11.9500', '11.9500', '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 (13843, '2021-08-31', 1541, 13341, 1342, 31486, '1.0000', '127.4848', '127.4848', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13844, '2021-08-31', 1824, 13342, 1342, 4959, '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 (13845, '2021-08-31', 1666, 13343, 1342, 31703, '1.0000', '160.5207', '160.5207', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13846, '2021-08-31', 2656, 13344, 1343, 31679, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13847, '2021-08-31', 2368, 13345, 1344, NULL, '1.0000', '13.0000', '13.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 (13848, '2021-08-31', 2697, 13346, 1344, 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 (13849, '2021-08-31', 2091, 13347, 1344, 9530, '1.0000', '28.0000', '28.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 (13850, '2021-08-31', 8516, 13348, 1344, NULL, '1.0000', '7.1000', '7.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 (13851, '2021-08-31', 2672, 13349, 1344, 11890, '6.0000', '7.6200', '7.6200', '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 (13852, '2021-08-31', 2916, 13350, 1344, 31512, '1.0000', '13.6676', '13.6676', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13853, '2021-08-31', 9160, 13351, 1345, NULL, '1.0000', '15.0000', '15.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 (13854, '2021-08-31', 9467, 13352, 1345, 31896, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13855, '2021-09-01', 2410, 13353, 1346, 24947, '1.0000', '4.3200', '4.3200', '6.0000', '6.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 (13856, '2021-09-01', 2941, 13354, 1346, 22601, '1.0000', '2.6600', '2.6600', '4.0000', '4.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 (13857, '2021-09-01', 7457, 13355, 1346, NULL, '1.0000', '2.3500', '2.3500', '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 (13858, '2021-09-01', 1863, 13356, 1346, NULL, '1.0000', '0.3450', '0.3450', '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 (13859, '2021-09-01', 1342, 13357, 1346, 22390, '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 (13860, '2021-09-01', 1950, 13358, 1346, 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 (13861, '2021-09-01', 7753, 13359, 1346, NULL, '1.0000', '3.1400', '3.1400', '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 (13862, '2021-09-01', 1386, 13360, 1346, 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 (13863, '2021-09-01', 2379, 13361, 1346, NULL, '1.0000', '1.8000', '1.8000', '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 (13864, '2021-09-01', 2073, 13362, 1346, 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 (13865, '2021-09-01', 1310, 13363, 1346, NULL, '2.0000', '0.3700', '0.3700', '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 (13866, '2021-09-01', 1700, 13364, 1346, 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 (13867, '2021-09-01', 1873, 13365, 1346, 22597, '1.0000', '11.9500', '11.9500', '16.0000', '16.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 (13868, '2021-09-01', 2106, 13366, 1346, 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 (13869, '2021-09-01', 2991, 13367, 1346, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '98.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 (13870, '2021-09-01', 2279, 13368, 1346, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (13871, '2021-09-01', 1828, 13369, 1346, 19854, '2.0000', '0.7300', '0.7300', '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 (13872, '2021-09-01', 1837, 13370, 1346, 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 (13873, '2021-09-01', 2331, 13371, 1346, 24195, '1.0000', '12.0700', '12.0700', '16.0000', '16.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 (13874, '2021-09-01', 2643, 13372, 1346, 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 (13875, '2021-09-01', 1667, 13373, 1346, 24939, '1.0000', '1404.9249', '1404.9249', '8.5000', '8.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 (13876, '2021-09-01', 1386, 13374, 1346, 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 (13877, '2021-09-01', 7649, 13375, 1347, NULL, '1.0000', '2.6700', '2.6700', '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 (13878, '2021-09-01', 1904, 13376, 1347, 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 (13879, '2021-09-01', 8188, 13377, 1347, NULL, '1.0000', '13.9500', '13.9500', '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 (13880, '2021-09-01', 7709, 13378, 1347, NULL, '2.0000', '35.8000', '35.8000', '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 (13881, '2021-09-01', 2060, 13379, 1347, 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 (13882, '2021-09-01', 7666, 13380, 1347, NULL, '1.0000', '10.0000', '10.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 (13883, '2021-09-01', 9456, 13381, 1347, 30936, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13884, '2021-09-01', 7672, 13382, 1347, NULL, '1.0000', '1.0200', '1.0200', '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 (13885, '2021-09-01', 7832, 13383, 1347, 31008, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13886, '2021-09-01', 8208, 13384, 1347, NULL, '2.0000', '33.0000', '33.0000', '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 (13887, '2021-09-01', 7411, 13385, 1347, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13888, '2021-09-01', 8063, 13386, 1347, NULL, '1.0000', '28.5000', '28.5000', '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 (13889, '2021-09-01', 1647, 13387, 1347, 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 (13890, '2021-09-01', 2400, 13388, 1348, NULL, '1.0000', '12.5000', '12.5000', '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 (13891, '2021-09-01', 7947, 13389, 1349, NULL, '2.0000', '14.4400', '14.4400', '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 (13892, '2021-09-01', 7713, 13390, 1349, NULL, '4.0000', '4.4000', '4.4000', '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 (13893, '2021-09-01', 1947, 13391, 1349, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13894, '2021-09-01', 1307, 13392, 1349, 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 (13895, '2021-09-01', 2673, 13393, 1350, 22283, '1.0000', '11.0000', '11.0000', '15.0000', '15.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 (13896, '2021-09-01', 2169, 13394, 1350, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '30.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 (13897, '2021-09-01', 2660, 13395, 1350, 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 (13898, '2021-09-01', 2681, 13396, 1350, 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 (13899, '2021-09-01', 7756, 13397, 1350, NULL, '1.0000', '2.5000', '2.5000', '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 (13900, '2021-09-01', 2655, 13398, 1350, 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 (13901, '2021-09-01', 1785, 13399, 1350, 4903, '1.0000', '4.8380', '4.8380', '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 (13902, '2021-09-01', 3068, 13400, 1350, 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 (13903, '2021-09-01', 2921, 13401, 1350, NULL, '1.0000', '4.9000', '4.9000', '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 (13904, '2021-09-01', 2317, 13402, 1350, 3473, '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 (13905, '2021-09-01', 1439, 13403, 1350, 4702, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '10.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 (13906, '2021-09-01', 1445, 13404, 1350, 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 (13907, '2021-09-01', 1744, 13405, 1350, 2163, '1.0000', '26.5281', '26.5281', '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 (13908, '2021-09-01', 1536, 13406, 1350, 1634, '-1.0000', '3.1686', '3.1686', '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 (13909, '2021-09-01', 1536, 13406, 1350, NULL, '15.0000', '3.1686', '3.1686', '5.0000', '5.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 (13910, '2021-09-01', 2167, 13407, 1350, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '2.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 (13911, '2021-09-01', 2561, 13408, 1350, NULL, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13912, '2021-09-01', 2487, 13409, 1350, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '4.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 (13913, '2021-09-01', 1702, 13410, 1350, NULL, '1.0000', '14.9700', '14.9700', '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 (13914, '2021-09-01', 9174, 13411, 1350, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13915, '2021-09-01', 2236, 13412, 1350, 2780, '1.0000', '5.6599', '5.6599', '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 (13916, '2021-09-01', 1409, 13413, 1350, 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 (13917, '2021-09-01', 2360, 13414, 1350, 3862, '-5.0000', '0.5200', '0.5200', '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 (13918, '2021-09-01', 2360, 13414, 1350, NULL, '7.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (13919, '2021-09-01', 2169, 13415, 1350, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '30.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 (13920, '2021-09-01', 2865, 13416, 1350, NULL, '1.0000', '2.8000', '2.8000', '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 (13921, '2021-09-01', 1670, 13417, 1350, 10163, '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 (13922, '2021-09-01', 1863, 13418, 1350, 10808, '1.0000', '0.4136', '0.4136', '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 (13923, '2021-09-01', 1863, 13419, 1350, 10808, '3.0000', '0.4136', '0.4136', '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 (13924, '2021-09-01', 2384, 13420, 1350, 18845, '7.0000', '0.4000', '0.4000', '0.7000', '0.7000', '32.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 (13925, '2021-09-01', 2315, 13421, 1350, 2735, '-63.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13926, '2021-09-01', 2315, 13421, 1350, NULL, '64.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13927, '2021-09-01', 1992, 13422, 1350, 6355, '-2.0000', '1.5000', '1.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 (13928, '2021-09-01', 1992, 13422, 1350, NULL, '3.0000', '1.5000', '1.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 (13929, '2021-09-01', 2825, 13423, 1350, NULL, '2.0000', '12.0000', '12.0000', '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 (13930, '2021-09-01', 1912, 13424, 1350, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '26.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 (13931, '2021-09-01', 1665, 13425, 1350, 3235, '-14.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 (13932, '2021-09-01', 1665, 13425, 1350, NULL, '15.0000', '1.3000', '1.3000', '2.0000', '2.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 (13933, '2021-09-01', 7709, 13426, 1351, NULL, '2.0000', '35.8000', '35.8000', '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 (13935, '2021-09-01', 2159, 13428, 1353, 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 (13936, '2021-09-01', 1346, 13429, 1353, 24923, '5.0000', '-20.8715', '-20.8715', '1.5000', '1.5000', '95.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 (13937, '2021-09-01', 1812, 13430, 1353, 30696, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13938, '2021-09-01', 1863, 13431, 1353, NULL, '2.0000', '0.3450', '0.3450', '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 (13939, '2021-09-01', 1394, 13432, 1353, 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 (13940, '2021-09-01', 2656, 13433, 1353, 31898, '9.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13941, '2021-09-01', 2923, 13434, 1353, 24941, '1.0000', '11.1200', '11.1200', '15.0000', '15.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 (13942, '2021-09-01', 2234, 13435, 1353, 31084, '1.0000', '17.2429', '17.2429', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13943, '2021-09-01', 2235, 13436, 1353, 24203, '1.0000', '19.0000', '19.0000', '25.0000', '25.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 (13944, '2021-09-01', 1800, 13437, 1353, 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 (13945, '2021-09-01', 2821, 13438, 1353, 19817, '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 (13946, '2021-09-01', 9461, 13439, 1353, NULL, '1.0000', '1.6000', '1.6000', '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 (13947, '2021-09-01', 1757, 13440, 1353, 25014, '1.0000', '3.5970', '3.5970', '7.0000', '7.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 (13948, '2021-09-01', 2754, 13441, 1353, 18938, '4.0000', '0.0800', '0.0800', '0.5000', '0.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 (13949, '2021-09-01', 2020, 13442, 1353, 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 (13950, '2021-09-01', 2777, 13443, 1353, 24972, '1.0000', '2.5000', '2.5000', '3.5000', '3.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 (13951, '2021-09-01', 2293, 13444, 1353, 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 (13952, '2021-09-01', 1580, 13445, 1353, 19875, '6.0000', '0.9900', '0.9900', '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 (13953, '2021-09-01', 2941, 13446, 1353, 22601, '2.0000', '2.6600', '2.6600', '4.0000', '4.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 (13954, '2021-09-01', 2366, 13447, 1353, 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 (13955, '2021-09-01', 2673, 13448, 1353, 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 (13956, '2021-09-01', 1519, 13449, 1353, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (13957, '2021-09-01', 2650, 13450, 1353, 31112, '1.0000', '7.9860', '7.9860', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13958, '2021-09-01', 1578, 13451, 1353, 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 (13959, '2021-09-01', 1590, 13452, 1353, 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 (13960, '2021-09-01', 2951, 13453, 1353, 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 (13961, '2021-09-01', 1672, 13454, 1353, 31080, '10.0000', '24.6900', '24.6900', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13962, '2021-09-01', 2556, 13455, 1353, 25158, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '26.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 (13963, '2021-09-01', 1693, 13456, 1353, 24928, '1.0000', '7.8600', '7.8600', '10.0000', '10.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 (13964, '2021-09-01', 1321, 13457, 1353, NULL, '1.0000', '9.8000', '9.8000', '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 (13965, '2021-09-01', 1912, 13458, 1353, 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 (13966, '2021-09-01', 1374, 13459, 1354, 17453, '1.0000', '55.5900', '55.5900', '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 (13967, '2021-09-01', 3013, 13460, 1354, 24112, '1.0000', '8.0000', '8.0000', '11.0000', '11.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 (13968, '2021-09-01', 3013, 13460, 1354, 24018, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '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 (13969, '2021-09-01', 2829, 13461, 1354, 24021, '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 (13970, '2021-09-01', 8677, 13462, 1354, NULL, '1.0000', '7.8000', '7.8000', '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 (13971, '2021-09-01', 2532, 13463, 1354, 6125, '1.0000', '8.0000', '8.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 (13972, '2021-09-01', 2260, 13464, 1354, 29797, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13973, '2021-09-01', 2334, 13465, 1354, 3897, '1.0000', '16.0000', '16.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 (13974, '2021-09-01', 1425, 13466, 1354, 31689, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13975, '2021-09-01', 1521, 13467, 1354, 31467, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13976, '2021-09-01', 2263, 13468, 1354, 13624, '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 (13977, '2021-09-01', 7608, 13469, 1354, NULL, '1.0000', '6.9800', '6.9800', '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 (13978, '2021-09-01', 2983, 13470, 1354, NULL, '6.0000', '3.0000', '3.0000', '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 (13979, '2021-09-01', 1863, 13471, 1354, 31466, '1.0000', '1.1876', '1.1876', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13980, '2021-09-01', 2315, 13472, 1354, 3069, '4.0000', '0.3300', '0.3300', '0.5100', '0.5100', '307.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13981, '2021-09-01', 2169, 13473, 1354, 31550, '1.0000', '0.9890', '0.9890', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13982, '2021-09-01', 1499, 13474, 1354, 31478, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13983, '2021-09-01', 1599, 13475, 1354, 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 (13984, '2021-09-01', 1573, 13476, 1354, NULL, '1.0000', '28.7063', '28.7063', '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 (13985, '2021-09-01', 1666, 13477, 1354, 31703, '1.0000', '160.5207', '160.5207', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13986, '2021-09-01', 8133, 13478, 1354, 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 (13987, '2021-09-01', 1730, 13479, 1354, 31540, '2.0000', '23.9100', '23.9100', '33.5000', '33.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13988, '2021-09-01', 7913, 13480, 1354, NULL, '2.0000', '2.5500', '2.5500', '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 (13989, '2021-09-01', 1346, 13481, 1354, 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 (13990, '2021-09-01', 7638, 13482, 1354, 31498, '1.0000', '19.7475', '19.7475', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13991, '2021-09-01', 2492, 13483, 1354, 14593, '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 (13992, '2021-09-01', 1307, 13484, 1354, 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 (13993, '2021-09-01', 2167, 13485, 1354, 31460, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13994, '2021-09-01', 2708, 13486, 1354, NULL, '1.0000', '33.9600', '33.9600', '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 (13995, '2021-09-01', 2279, 13487, 1354, 22220, '3.0000', '2.6280', '2.6280', '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 (13996, '2021-09-01', 3058, 13488, 1354, 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 (13997, '2021-09-01', 1493, 13489, 1354, 31515, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (13998, '2021-09-01', 2748, 13490, 1354, 14567, '1.0000', '35.5000', '35.5000', '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 (13999, '2021-09-01', 1409, 13491, 1354, 12292, '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 (14000, '2021-09-01', 2393, 13492, 1354, 31476, '1.0000', '1.1456', '1.1456', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14001, '2021-09-01', 2167, 13493, 1354, 31460, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14002, '2021-09-01', 2360, 13494, 1355, 19865, '4.0000', '0.5200', '0.5200', '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 (14003, '2021-09-01', 1692, 13495, 1355, 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 (14004, '2021-09-01', 1523, 13496, 1355, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '23.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 (14005, '2021-09-01', 2290, 13497, 1355, 19877, '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 (14006, '2021-09-01', 2135, 13498, 1355, 23175, '1.0000', '2.5000', '2.5000', '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 (14007, '2021-09-01', 2825, 13499, 1356, 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 (14008, '2021-09-01', 3001, 13500, 1357, 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 (14009, '2021-09-01', 9160, 13501, 1357, NULL, '1.0000', '15.0000', '15.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 (14010, '2021-09-01', 7411, 13502, 1357, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14011, '2021-09-01', 7675, 13503, 1357, NULL, '1.0000', '11.4300', '11.4300', '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 (14012, '2021-09-01', 7911, 13504, 1357, NULL, '1.0000', '4.3700', '4.3700', '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 (14013, '2021-09-01', 2934, 13505, 1357, NULL, '1.0000', '9.8000', '9.8000', '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 (14014, '2021-09-01', 7491, 13506, 1357, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14015, '2021-09-01', 9095, 13507, 1357, NULL, '1.0000', '17.5000', '17.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 (14016, '2021-09-01', 9095, 13508, 1357, NULL, '1.0000', '17.5000', '17.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 (14017, '2021-09-01', 8324, 13509, 1357, 31660, '1.0000', '3.4130', '3.4130', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14018, '2021-09-01', 7950, 13510, 1357, NULL, '1.0000', '2.4000', '2.4000', '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 (14019, '2021-09-01', 2106, 13511, 1357, 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 (14020, '2021-09-01', 1631, 13512, 1357, NULL, '1.0000', '90.0000', '90.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 (14021, '2021-09-01', 8064, 13513, 1357, 30161, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14022, '2021-09-01', 9143, 13514, 1357, NULL, '1.0000', '6.8900', '6.8900', '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 (14023, '2021-09-01', 7514, 13515, 1357, NULL, '2.0000', '7.8800', '7.8800', '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 (14024, '2021-09-01', 7428, 13516, 1357, 30148, '2.0000', '744.9056', '744.9056', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14025, '2021-09-01', 7736, 13517, 1357, NULL, '1.0000', '4.0000', '4.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 (14026, '2021-09-01', 7641, 13518, 1357, NULL, '1.0000', '1.9000', '1.9000', '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 (14027, '2021-09-01', 7514, 13519, 1357, NULL, '1.0000', '7.8800', '7.8800', '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 (14028, '2021-09-01', 7377, 13520, 1357, NULL, '28.0000', '5.5000', '5.5000', '6.6000', '6.6000', '-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 (14029, '2021-09-01', 7444, 13521, 1357, 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 (14030, '2021-09-01', 8562, 13522, 1357, NULL, '1.0000', '12.0000', '12.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 (14031, '2021-09-01', 7899, 13523, 1357, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14032, '2021-09-01', 7707, 13524, 1357, NULL, '1.0000', '7.0000', '7.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 (14033, '2021-09-01', 7781, 13525, 1357, NULL, '3.0000', '4.2500', '4.2500', '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 (14034, '2021-09-01', 7632, 13526, 1357, NULL, '1.0000', '9.0000', '9.0000', '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 (14035, '2021-09-01', 2656, 13527, 1357, 31906, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14036, '2021-09-01', 7524, 13528, 1357, NULL, '1.0000', '11.9500', '11.9500', '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 (14037, '2021-09-01', 9434, 13529, 1357, 30489, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14038, '2021-09-01', 7796, 13530, 1357, NULL, '1.0000', '13.5000', '13.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 (14039, '2021-09-01', 1730, 13531, 1357, NULL, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14040, '2021-09-01', 9088, 13532, 1357, NULL, '1.0000', '9.0000', '9.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 (14041, '2021-09-01', 8359, 13533, 1357, 30780, '1.0000', '16.7750', '16.7750', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14042, '2021-09-01', 7640, 13534, 1357, NULL, '1.0000', '5.8900', '5.8900', '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 (14043, '2021-09-01', 1528, 13535, 1358, 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 (14051, '2021-09-01', 7583, 13540, 1360, NULL, '1.0000', '4.0000', '4.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 (14052, '2021-09-01', 9273, 13541, 1360, NULL, '1.0000', '0.3500', '0.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 (14053, '2021-09-01', 8643, 13542, 1361, NULL, '5.0000', '11.0000', '11.0000', '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 (14054, '2021-09-01', 2656, 13543, 1362, 31906, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14055, '2021-09-01', 2403, 13544, 1363, 13548, '2.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 (14056, '2021-09-01', 1712, 13545, 1363, NULL, '1.0000', '9.6500', '9.6500', '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 (14057, '2021-09-01', 2708, 13546, 1363, NULL, '1.0000', '33.9600', '33.9600', '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 (14058, '2021-09-01', 2444, 13547, 1363, 16935, '1.0000', '6.0000', '6.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 (14059, '2021-09-01', 1499, 13548, 1363, 31478, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14060, '2021-09-01', 3013, 13549, 1363, 24018, '1.0000', '8.0000', '8.0000', '11.0000', '11.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 (14061, '2021-09-01', 7608, 13550, 1363, NULL, '1.0000', '6.9800', '6.9800', '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 (14062, '2021-09-01', 2733, 13551, 1363, 24274, '1.0000', '7.5000', '7.5000', '10.0000', '10.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 (14063, '2021-09-01', 1961, 13552, 1363, 31551, '1.0000', '18.0204', '18.0204', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14064, '2021-09-01', 2667, 13553, 1363, 11864, '1.0000', '25.1700', '25.1700', '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 (14065, '2021-09-01', 3021, 13554, 1363, 23612, '1.0000', '25.2100', '25.2100', '33.5000', '33.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 (14066, '2021-09-01', 2655, 13555, 1363, 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 (14067, '2021-09-01', 1574, 13556, 1363, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (14068, '2021-09-01', 1602, 13557, 1363, 31474, '1.0000', '6.9446', '6.9446', '10.5000', '10.5000', '15.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14069, '2021-09-01', 2403, 13558, 1364, 9064, '2.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 (14070, '2021-09-01', 1712, 13559, 1364, NULL, '1.0000', '9.6500', '9.6500', '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 (14071, '2021-09-01', 2708, 13560, 1364, NULL, '1.0000', '33.9600', '33.9600', '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 (14072, '2021-09-01', 2444, 13561, 1364, 16935, '1.0000', '6.0000', '6.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 (14073, '2021-09-01', 1499, 13562, 1364, 31478, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14074, '2021-09-01', 3013, 13563, 1364, 24018, '1.0000', '8.0000', '8.0000', '11.0000', '11.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 (14075, '2021-09-01', 7608, 13564, 1364, NULL, '1.0000', '6.9800', '6.9800', '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 (14076, '2021-09-01', 2733, 13565, 1364, 24274, '1.0000', '7.5000', '7.5000', '10.0000', '10.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 (14077, '2021-09-01', 1961, 13566, 1364, 31551, '1.0000', '18.0204', '18.0204', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14078, '2021-09-01', 2667, 13567, 1364, 11864, '1.0000', '25.1700', '25.1700', '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 (14079, '2021-09-01', 3021, 13568, 1364, 23612, '1.0000', '25.2100', '25.2100', '33.5000', '33.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 (14080, '2021-09-01', 2655, 13569, 1364, 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 (14081, '2021-09-01', 1574, 13570, 1364, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (14082, '2021-09-01', 1602, 13571, 1364, 31474, '1.0000', '6.9446', '6.9446', '10.5000', '10.5000', '14.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14083, '2021-09-01', 1411, 13572, 1365, 31484, '1.0000', '20.6434', '20.6434', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14084, '2021-09-01', 2237, 13573, 1366, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (14085, '2021-09-01', 2559, 13574, 1366, 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 (14090, '2021-09-01', 1651, 13579, 1368, 31526, '1.0000', '7.2394', '7.2394', '10.3500', '10.3500', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14091, '2021-09-01', 7558, 13580, 1369, NULL, '2.0000', '33.0200', '33.0200', '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 (14092, '2021-09-01', 1510, 13581, 1369, 30670, '1.0000', '9.2456', '9.2456', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14093, '2021-09-01', 7886, 13582, 1369, NULL, '1.0000', '14.5000', '14.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 (14094, '2021-09-01', 2506, 13583, 1369, 24945, '1.0000', '3.4900', '3.4900', '5.0000', '5.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 (14095, '2021-09-02', 7428, 13584, 1370, 30148, '5.0000', '744.9056', '744.9056', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14096, '2021-09-02', 7514, 13585, 1370, NULL, '1.0000', '7.8800', '7.8800', '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 (14097, '2021-09-02', 2135, 13586, 1371, 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 (14098, '2021-09-02', 7889, 13587, 1371, NULL, '1.0000', '15.0000', '15.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 (14099, '2021-09-02', 8420, 13588, 1371, 31035, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14100, '2021-09-02', 8679, 13589, 1371, NULL, '1.0000', '28.0000', '28.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 (14101, '2021-09-02', 7453, 13590, 1371, 30061, '1.0000', '28.5000', '28.5000', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14102, '2021-09-02', 2060, 13591, 1371, 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 (14103, '2021-09-02', 8454, 13592, 1371, NULL, '1.0000', '5.1700', '5.1700', '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 (14104, '2021-09-02', 8878, 13593, 1371, NULL, '2.0000', '6.6700', '6.6700', '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 (14105, '2021-09-02', 9409, 13594, 1371, NULL, '1.0000', '11.0000', '11.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 (14106, '2021-09-02', 1910, 13595, 1371, NULL, '3.0000', '1.0200', '1.0200', '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 (14107, '2021-09-02', 2289, 13596, 1371, NULL, '1.0000', '0.2300', '0.2300', '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 (14108, '2021-09-02', 1756, 13597, 1372, NULL, '2.0000', '4.9900', '4.9900', '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 (14109, '2021-09-02', 7569, 13598, 1372, NULL, '1.0000', '1.7300', '1.7300', '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 (14110, '2021-09-02', 2317, 13599, 1372, 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 (14111, '2021-09-02', 8964, 13600, 1372, NULL, '2.0000', '7.3600', '7.3600', '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 (14112, '2021-09-02', 7821, 13601, 1373, NULL, '1.0000', '7.0000', '7.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 (14113, '2021-09-02', 2360, 13602, 1374, 19866, '1.0000', '0.5200', '0.5200', '0.8000', '0.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 (14114, '2021-09-02', 2285, 13603, 1374, 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 (14115, '2021-09-02', 8984, 13604, 1374, NULL, '1.0000', '304.7000', '304.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 (14116, '2021-09-02', 2315, 13605, 1374, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '35.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 (14117, '2021-09-02', 2167, 13606, 1374, 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 (14118, '2021-09-02', 1665, 13607, 1374, 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 (14119, '2021-09-02', 1873, 13608, 1374, 22597, '1.0000', '11.9500', '11.9500', '16.0000', '16.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 (14120, '2021-09-02', 2991, 13609, 1374, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '97.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 (14121, '2021-09-02', 2280, 13610, 1374, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '31.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 (14122, '2021-09-02', 1665, 13611, 1374, 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 (14123, '2021-09-02', 1912, 13612, 1374, 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 (14124, '2021-09-02', 7353, 13613, 1374, NULL, '2.0000', '0.1900', '0.1900', '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 (14125, '2021-09-02', 7361, 13614, 1375, 29999, '1.0000', '7.0000', '7.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14126, '2021-09-02', 7715, 13615, 1376, 30500, '2.0000', '1.8900', '1.8900', '6.0000', '6.0000', '42.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14127, '2021-09-02', 8753, 13616, 1376, NULL, '1.0000', '20.0000', '20.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 (14128, '2021-09-02', 8319, 13617, 1377, 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 (14129, '2021-09-02', 8844, 13618, 1378, NULL, '1.0000', '35.5000', '35.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 (14130, '2021-09-02', 7544, 13619, 1378, NULL, '5.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (14131, '2021-09-02', 2289, 13620, 1378, 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 (14132, '2021-09-02', 7411, 13621, 1378, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14133, '2021-09-02', 9141, 13622, 1378, NULL, '10.0000', '9.5300', '9.5300', '0.4000', '0.4000', '-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 (14134, '2021-09-02', 2656, 13623, 1378, 31906, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14135, '2021-09-02', 1336, 13624, 1379, 232, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '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 (14136, '2021-09-02', 8133, 13625, 1379, 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 (14137, '2021-09-02', 1863, 13626, 1379, NULL, '1.0000', '0.4136', '0.4136', '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 (14138, '2021-09-02', 1624, 13627, 1379, 485, '1.0000', '29.4000', '29.4000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14139, '2021-09-02', 1845, 13628, 1379, 6222, '-2.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 (14140, '2021-09-02', 1845, 13628, 1379, NULL, '3.0000', '19.5000', '19.5000', '26.0000', '26.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 (14141, '2021-09-02', 1976, 13629, 1379, 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 (14142, '2021-09-02', 8500, 13630, 1379, NULL, '1.0000', '22.4500', '22.4500', '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 (14143, '2021-09-02', 2513, 13631, 1379, 5913, '-1.0000', '40.0000', '40.0000', '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 (14144, '2021-09-02', 2513, 13631, 1379, NULL, '2.0000', '40.0000', '40.0000', '50.0000', '50.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 (14145, '2021-09-02', 2485, 13632, 1379, 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 (14146, '2021-09-02', 1779, 13633, 1379, 4898, '-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 (14147, '2021-09-02', 1779, 13633, 1379, 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 (14148, '2021-09-02', 1612, 13634, 1379, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '6.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 (14149, '2021-09-02', 1667, 13635, 1379, 9745, '-7.0000', '5.9400', '5.9400', '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 (14150, '2021-09-02', 1667, 13635, 1379, NULL, '8.0000', '5.9400', '5.9400', '8.5000', '8.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 (14151, '2021-09-02', 2022, 13636, 1379, 22308, '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 (14152, '2021-09-02', 2876, 13637, 1380, 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 (14153, '2021-09-02', 1871, 13638, 1380, 469, '20.0000', '24.5246', '24.5246', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14154, '2021-09-02', 2109, 13639, 1380, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '141.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 (14155, '2021-09-02', 2215, 13640, 1380, 8127, '1.0000', '12.0000', '12.0000', '18.0000', '18.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 (14156, '2021-09-02', 2912, 13641, 1380, 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 (14157, '2021-09-02', 2484, 13642, 1380, 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 (14158, '2021-09-02', 2476, 13643, 1380, 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 (14159, '2021-09-02', 9394, 13644, 1380, NULL, '1.0000', '5.5000', '5.5000', '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 (14160, '2021-09-02', 2482, 13645, 1380, NULL, '3.0000', '6.0000', '6.0000', '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 (14161, '2021-09-02', 2763, 13646, 1380, 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 (14162, '2021-09-02', 1574, 13647, 1380, 7593, '-15.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 (14163, '2021-09-02', 1574, 13647, 1380, NULL, '17.0000', '1.9600', '1.9600', '2.5000', '2.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 (14164, '2021-09-02', 1425, 13648, 1380, 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 (14165, '2021-09-02', 1999, 13649, 1380, 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 (14166, '2021-09-02', 8947, 13650, 1380, NULL, '2.0000', '5.0000', '5.0000', '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 (14167, '2021-09-02', 2285, 13651, 1380, 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 (14168, '2021-09-02', 2699, 13652, 1380, 12529, '-4.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 (14169, '2021-09-02', 2699, 13652, 1380, NULL, '5.0000', '3.0000', '3.0000', '4.5000', '4.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 (14170, '2021-09-02', 2221, 13653, 1380, 4334, '2.0000', '14.4737', '14.4737', '25.0000', '25.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 (14171, '2021-09-02', 1863, 13654, 1380, 10808, '-1.0000', '0.4136', '0.4136', '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 (14172, '2021-09-02', 1863, 13654, 1380, NULL, '3.0000', '0.4136', '0.4136', '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 (14173, '2021-09-02', 2112, 13655, 1380, 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 (14174, '2021-09-02', 1427, 13656, 1381, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14175, '2021-09-02', 1519, 13657, 1381, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (14176, '2021-09-02', 2242, 13658, 1381, 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 (14177, '2021-09-02', 2435, 13659, 1381, 23971, '1.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 (14178, '2021-09-02', 2252, 13660, 1381, 24920, '1.0000', '10.0900', '10.0900', '13.5000', '13.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 (14179, '2021-09-02', 1665, 13661, 1381, 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 (14180, '2021-09-02', 3017, 13662, 1381, 24959, '1.0000', '3.9000', '3.9000', '6.0000', '6.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 (14181, '2021-09-02', 2320, 13663, 1381, 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 (14182, '2021-09-02', 3018, 13664, 1381, NULL, '2.0000', '4.9100', '4.9100', '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 (14183, '2021-09-02', 2167, 13665, 1381, 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 (14184, '2021-09-02', 2237, 13666, 1381, NULL, '5.0000', '1.0600', '1.0600', '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 (14185, '2021-09-02', 1314, 13667, 1381, 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 (14186, '2021-09-02', 2558, 13668, 1381, 24140, '2.0000', '6.0000', '6.0000', '10.0000', '10.0000', '2.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 (14187, '2021-09-02', 2857, 13669, 1381, 23130, '1.0000', '17.0000', '17.0000', '23.0000', '23.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 (14188, '2021-09-02', 1690, 13670, 1381, 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 (14189, '2021-09-02', 7819, 13671, 1381, NULL, '1.0000', '9.5000', '9.5000', '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 (14190, '2021-09-02', 1912, 13672, 1381, 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 (14191, '2021-09-02', 8596, 13673, 1381, NULL, '1.0000', '17.0000', '17.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 (14192, '2021-09-02', 1328, 13674, 1381, 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 (14193, '2021-09-02', 2642, 13675, 1381, 22561, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '10.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 (14194, '2021-09-02', 2169, 13676, 1381, NULL, '1.0000', '1.1300', '1.1300', '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 (14195, '2021-09-02', 1439, 13677, 1381, NULL, '2.0000', '1.0000', '1.0000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14196, '2021-09-02', 2951, 13678, 1381, 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 (14197, '2021-09-02', 7482, 13679, 1381, NULL, '1.0000', '3.0500', '3.0500', '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 (14198, '2021-09-02', 7514, 13680, 1382, NULL, '1.0000', '7.8800', '7.8800', '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 (14199, '2021-09-02', 7946, 13681, 1382, NULL, '1.0000', '0.5200', '0.5200', '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 (14200, '2021-09-02', 7345, 13682, 1382, NULL, '1.0000', '22.0000', '22.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 (14201, '2021-09-02', 7672, 13683, 1382, NULL, '1.0000', '1.0200', '1.0200', '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 (14202, '2021-09-02', 2287, 13684, 1382, NULL, '2.0000', '2.3000', '2.3000', '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 (14203, '2021-09-02', 7415, 13685, 1382, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '10.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14204, '2021-09-02', 7911, 13686, 1382, NULL, '1.0000', '4.3700', '4.3700', '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 (14205, '2021-09-02', 8789, 13687, 1382, 30178, '1.0000', '4.9300', '4.9300', '6.5100', '6.5100', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14206, '2021-09-02', 7658, 13688, 1382, NULL, '5.0000', '10.1500', '10.1500', '2.5000', '2.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 (14207, '2021-09-02', 2287, 13689, 1382, NULL, '3.0000', '2.3000', '2.3000', '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 (14208, '2021-09-02', 7768, 13690, 1382, NULL, '1.0000', '7.7800', '7.7800', '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 (14209, '2021-09-02', 2506, 13691, 1382, 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 (14210, '2021-09-02', 8878, 13692, 1382, NULL, '2.0000', '6.6700', '6.6700', '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 (14211, '2021-09-02', 8000, 13693, 1382, NULL, '3.0000', '25.8200', '25.8200', '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 (14212, '2021-09-02', 2656, 13694, 1382, 31906, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14213, '2021-09-02', 1975, 13695, 1382, NULL, '1.0000', '8.5000', '8.5000', '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 (14214, '2021-09-02', 7385, 13696, 1382, NULL, '20.0000', '12.5000', '12.5000', '3.5000', '3.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 (14215, '2021-09-02', 1904, 13697, 1382, 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 (14216, '2021-09-02', 8878, 13698, 1382, NULL, '1.0000', '6.6700', '6.6700', '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 (14217, '2021-09-02', 7641, 13699, 1382, NULL, '1.0000', '1.9000', '1.9000', '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 (14218, '2021-09-02', 8789, 13700, 1382, 30178, '1.0000', '4.9300', '4.9300', '6.5100', '6.5100', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14219, '2021-09-02', 9463, 13701, 1382, 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 (14220, '2021-09-02', 9326, 13702, 1382, NULL, '1.0000', '8.0000', '8.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 (14221, '2021-09-02', 8075, 13703, 1382, NULL, '1.0000', '3.0000', '3.0000', '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 (14222, '2021-09-02', 1841, 13704, 1382, 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 (14223, '2021-09-02', 7544, 13705, 1382, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (14224, '2021-09-02', 2699, 13706, 1382, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14225, '2021-09-02', 7867, 13707, 1382, 30193, '2.0000', '2.7700', '2.7700', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14226, '2021-09-02', 7932, 13708, 1382, NULL, '1.0000', '3.3000', '3.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 (14227, '2021-09-02', 2699, 13709, 1382, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14228, '2021-09-02', 7507, 13710, 1382, NULL, '3.0000', '6.5000', '6.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 (14229, '2021-09-02', 2100, 13711, 1382, 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 (14230, '2021-09-02', 8789, 13712, 1382, 30178, '1.0000', '4.9300', '4.9300', '6.5100', '6.5100', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14231, '2021-09-02', 8714, 13713, 1382, NULL, '1.0000', '8.7000', '8.7000', '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 (14232, '2021-09-02', 7967, 13714, 1382, NULL, '1.0000', '0.8900', '0.8900', '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 (14233, '2021-09-02', 8275, 13715, 1383, 31002, '1.0000', '29.8500', '29.8500', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14234, '2021-09-02', 8878, 13716, 1383, NULL, '1.0000', '6.6700', '6.6700', '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 (14235, '2021-09-02', 7703, 13717, 1383, NULL, '2.0000', '22.9900', '22.9900', '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 (14236, '2021-09-02', 7507, 13718, 1383, NULL, '3.0000', '6.5000', '6.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 (14237, '2021-09-02', 7932, 13719, 1384, NULL, '1.0000', '3.3000', '3.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 (14238, '2021-09-02', 7708, 13720, 1384, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14239, '2021-09-02', 7411, 13721, 1384, 30171, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14240, '2021-09-02', 9413, 13722, 1384, NULL, '1.0000', '7.9000', '7.9000', '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 (14241, '2021-09-02', 7593, 13723, 1384, 30994, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14242, '2021-09-02', 7411, 13724, 1384, 30171, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14243, '2021-09-02', 9012, 13725, 1384, NULL, '5.0000', '24.0000', '24.0000', '1.5000', '1.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 (14244, '2021-09-02', 7400, 13726, 1384, 30027, '1.0000', '14.5300', '14.5300', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14245, '2021-09-02', 9325, 13727, 1385, NULL, '2.0000', '92.0000', '92.0000', '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 (14246, '2021-09-02', 2924, 13728, 1385, 18798, '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 (14247, '2021-09-02', 2221, 13729, 1385, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.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 (14248, '2021-09-02', 2289, 13730, 1385, 22482, '2.0000', '0.2300', '0.2300', '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 (14249, '2021-09-02', 1840, 13731, 1385, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '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 (14250, '2021-09-02', 2916, 13732, 1385, 32030, '1.0000', '12.5089', '12.5089', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14251, '2021-09-02', 2759, 13733, 1385, 22642, '1.0000', '3.9500', '3.9500', '5.5000', '5.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 (14252, '2021-09-02', 1975, 13734, 1385, 27324, '1.0000', '9.4630', '9.4630', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14253, '2021-09-02', 2443, 13735, 1385, 5828, '1.0000', '4.0000', '4.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 (14254, '2021-09-02', 2441, 13736, 1385, 5826, '1.0000', '4.6000', '4.6000', '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 (14255, '2021-09-02', 3074, 13737, 1385, 27317, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14256, '2021-09-02', 7506, 13738, 1385, NULL, '1.0000', '15.0000', '15.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 (14257, '2021-09-02', 8205, 13739, 1385, NULL, '1.0000', '2.9500', '2.9500', '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 (14258, '2021-09-02', 1828, 13740, 1385, 32086, '3.0000', '0.7300', '0.7300', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14259, '2021-09-02', 3004, 13741, 1385, 32020, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14260, '2021-09-02', 1863, 13742, 1385, 31984, '1.0000', '1.0638', '1.0638', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14261, '2021-09-02', 7782, 13743, 1385, NULL, '2.0000', '5.0000', '5.0000', '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 (14262, '2021-09-02', 2660, 13744, 1385, 18686, '10.0000', '0.7000', '0.7000', '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 (14263, '2021-09-02', 1620, 13745, 1385, 29796, '4.0000', '13.9038', '13.9038', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14264, '2021-09-02', 3004, 13746, 1385, 32020, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14265, '2021-09-02', 1533, 13747, 1385, 10385, '1.0000', '3.0500', '3.0500', '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 (14266, '2021-09-02', 1533, 13747, 1385, 1540, '1.0000', '3.0500', '3.0500', '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 (14267, '2021-09-02', 1668, 13748, 1385, 31982, '1.0000', '98.2985', '98.2985', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14268, '2021-09-02', 7339, 13749, 1385, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (14269, '2021-09-02', 2263, 13750, 1385, 13624, '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 (14270, '2021-09-02', 2411, 13751, 1385, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '14.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 (14271, '2021-09-02', 1756, 13752, 1385, 3187, '2.0000', '4.9900', '4.9900', '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 (14272, '2021-09-02', 1504, 13753, 1385, 24013, '10.0000', '1.7015', '1.7015', '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 (14273, '2021-09-02', 2169, 13754, 1386, NULL, '1.0000', '1.1300', '1.1300', '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 (14274, '2021-09-02', 1665, 13755, 1386, 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 (14275, '2021-09-02', 1863, 13756, 1386, NULL, '2.0000', '0.3450', '0.3450', '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 (14276, '2021-09-02', 9212, 13757, 1386, NULL, '1.0000', '9.2000', '9.2000', '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 (14277, '2021-09-02', 2169, 13758, 1386, NULL, '1.0000', '1.1300', '1.1300', '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 (14278, '2021-09-02', 1519, 13759, 1386, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (14279, '2021-09-02', 2951, 13760, 1386, 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 (14280, '2021-09-02', 1608, 13761, 1386, 23689, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (14281, '2021-09-02', 9284, 13762, 1387, NULL, '1.0000', '7.5000', '7.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 (14282, '2021-09-02', 7778, 13763, 1387, NULL, '1.0000', '13.0100', '13.0100', '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 (14283, '2021-09-02', 2699, 13764, 1387, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14284, '2021-09-02', 9177, 13765, 1387, NULL, '5.0000', '0.8000', '0.8000', '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 (14285, '2021-09-02', 7593, 13766, 1387, 30994, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14286, '2021-09-02', 1338, 13767, 1387, 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 (14287, '2021-09-02', 7713, 13768, 1387, NULL, '2.0000', '4.4000', '4.4000', '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 (14288, '2021-09-02', 1523, 13769, 1388, 24285, '3.0000', '0.9596', '0.9596', '5.0000', '5.0000', '38.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 (14289, '2021-09-02', 1812, 13770, 1388, 31991, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14290, '2021-09-02', 2098, 13771, 1388, 6010, '1.0000', '1.0000', '1.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 (14291, '2021-09-02', 1863, 13772, 1388, 31984, '1.0000', '1.0638', '1.0638', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14292, '2021-09-03', 1432, 13773, 1389, 24969, '1.0000', '9.9497', '9.9497', '13.0000', '13.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 (14293, '2021-09-03', 1746, 13774, 1389, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (14294, '2021-09-03', 1602, 13775, 1389, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '12.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14295, '2021-09-03', 2169, 13776, 1389, NULL, '1.0000', '1.1300', '1.1300', '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 (14296, '2021-09-03', 8454, 13777, 1389, NULL, '1.0000', '5.1700', '5.1700', '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 (14297, '2021-09-03', 1831, 13778, 1389, 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 (14298, '2021-09-03', 2060, 13779, 1389, 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 (14299, '2021-09-03', 1394, 13780, 1389, 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 (14300, '2021-09-03', 1844, 13781, 1389, 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 (14301, '2021-09-03', 2285, 13782, 1389, 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 (14302, '2021-09-03', 2315, 13783, 1389, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '33.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 (14303, '2021-09-03', 1839, 13784, 1389, 24949, '1.0000', '6.1500', '6.1500', '8.0000', '8.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 (14304, '2021-09-03', 2068, 13785, 1389, 23686, '1.0000', '12.0277', '12.0277', '17.0000', '17.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 (14305, '2021-09-03', 1501, 13786, 1389, 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 (14306, '2021-09-03', 2375, 13787, 1389, NULL, '1.0000', '12.5000', '12.5000', '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 (14307, '2021-09-03', 2356, 13788, 1389, NULL, '1.0000', '38.9800', '38.9800', '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 (14308, '2021-09-03', 1528, 13789, 1389, NULL, '4.0000', '90.0000', '90.0000', '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 (14309, '2021-09-03', 1839, 13790, 1389, 24949, '1.0000', '6.1500', '6.1500', '8.0000', '8.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 (14310, '2021-09-03', 8878, 13791, 1389, NULL, '1.0000', '6.6700', '6.6700', '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 (14311, '2021-09-03', 1339, 13792, 1389, 31094, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14312, '2021-09-03', 1748, 13793, 1389, NULL, '4.0000', '0.3200', '0.3200', '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 (14313, '2021-09-03', 7779, 13794, 1390, NULL, '1.0000', '0.6200', '0.6200', '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 (14314, '2021-09-03', 7707, 13795, 1390, NULL, '1.0000', '7.0000', '7.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 (14315, '2021-09-03', 7412, 13796, 1390, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14316, '2021-09-03', 7411, 13797, 1390, 30171, '3.0000', '1.3500', '1.3500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14317, '2021-09-03', 7411, 13797, 1390, NULL, '2.0000', '1.3500', '1.3500', '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 (14318, '2021-09-03', 1845, 13798, 1390, 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 (14319, '2021-09-03', 1577, 13799, 1390, 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 (14320, '2021-09-03', 7482, 13800, 1390, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14321, '2021-09-03', 2102, 13801, 1390, 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 (14322, '2021-09-03', 1450, 13802, 1390, 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 (14323, '2021-09-03', 9089, 13803, 1390, 32139, '1.0000', '3.8000', '3.8000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14324, '2021-09-03', 7473, 13804, 1390, NULL, '2.0000', '9.2200', '9.2200', '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 (14325, '2021-09-03', 8084, 13805, 1390, 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 (14326, '2021-09-03', 7394, 13806, 1390, 30021, '1.0000', '12.7400', '12.7400', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14327, '2021-09-03', 7482, 13807, 1390, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14328, '2021-09-03', 8247, 13808, 1390, NULL, '2.0000', '10.0000', '10.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 (14329, '2021-09-03', 7477, 13809, 1390, NULL, '4.0000', '60.0000', '60.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 (14330, '2021-09-03', 7460, 13810, 1390, NULL, '6.0000', '51.2000', '51.2000', '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 (14331, '2021-09-03', 8247, 13811, 1390, NULL, '2.0000', '10.0000', '10.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 (14332, '2021-09-03', 7547, 13812, 1390, NULL, '4.0000', '0.0000', '0.0000', '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 (14333, '2021-09-03', 1849, 13813, 1390, NULL, '2.0000', '2.5000', '2.5000', '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 (14334, '2021-09-03', 7514, 13814, 1390, NULL, '1.0000', '7.8800', '7.8800', '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 (14335, '2021-09-03', 7710, 13815, 1390, NULL, '2.0000', '26.0000', '26.0000', '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 (14336, '2021-09-03', 7656, 13816, 1391, NULL, '7.0000', '1.8600', '1.8600', '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 (14337, '2021-09-03', 7544, 13817, 1391, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14338, '2021-09-03', 2289, 13818, 1391, NULL, '4.0000', '0.2300', '0.2300', '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 (14339, '2021-09-03', 1841, 13819, 1391, 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 (14340, '2021-09-03', 9177, 13820, 1391, NULL, '5.0000', '0.8000', '0.8000', '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 (14341, '2021-09-03', 7428, 13821, 1391, 30148, '10.0000', '744.9056', '744.9056', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14342, '2021-09-03', 8055, 13822, 1391, NULL, '2.0000', '10.2900', '10.2900', '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 (14343, '2021-09-03', 9272, 13823, 1391, NULL, '1.0000', '3.1000', '3.1000', '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 (14344, '2021-09-03', 8061, 13824, 1391, NULL, '1.0000', '1.6000', '1.6000', '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 (14345, '2021-09-03', 2656, 13825, 1391, 31906, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14346, '2021-09-03', 7411, 13826, 1391, NULL, '1.0000', '1.3500', '1.3500', '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 (14347, '2021-09-03', 8744, 13827, 1391, 32142, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14348, '2021-09-03', 7886, 13828, 1391, NULL, '1.0000', '16.1667', '16.1667', '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 (14349, '2021-09-03', 1501, 13829, 1391, 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 (14350, '2021-09-03', 1854, 13830, 1392, 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 (14351, '2021-09-03', 2289, 13831, 1392, 13744, '2.0000', '0.2300', '0.2300', '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 (14352, '2021-09-03', 1841, 13832, 1392, 31077, '2.0000', '0.2968', '0.2968', '0.5000', '0.5000', '17.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14353, '2021-09-03', 2237, 13833, 1392, 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 (14354, '2021-09-03', 1816, 13834, 1392, 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 (14355, '2021-09-03', 2821, 13835, 1392, 19817, '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 (14356, '2021-09-03', 7687, 13836, 1393, NULL, '1.0000', '7.5500', '7.5500', '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 (14357, '2021-09-03', 9214, 13837, 1393, 32135, '3.0000', '7.4538', '7.4538', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14358, '2021-09-03', 1642, 13838, 1394, NULL, '1.0000', '90.0000', '90.0000', '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 (14359, '2021-09-03', 2135, 13839, 1395, 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 (14360, '2021-09-03', 1888, 13840, 1395, 683, '1.0000', '134.8400', '134.8400', '21.0000', '21.0000', '5.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 (14361, '2021-09-03', 2948, 13841, 1395, NULL, '2.0000', '0.9000', '0.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 (14362, '2021-09-03', 9195, 13842, 1395, NULL, '1.0000', '4.9800', '4.9800', '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 (14363, '2021-09-03', 2417, 13843, 1395, NULL, '1.0000', '3.0653', '3.0653', '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 (14364, '2021-09-03', 3074, 13844, 1395, NULL, '2.0000', '2.0000', '2.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 (14365, '2021-09-03', 2010, 13845, 1395, 17832, '1.0000', '1.2500', '1.2500', '1.5800', '1.5800', '9.0000', 1, 0, NULL, 158);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14366, '2021-09-03', 2602, 13846, 1395, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '15.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 (14367, '2021-09-03', 2135, 13847, 1395, 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 (14368, '2021-09-03', 1590, 13848, 1395, 22260, '3.0000', '1.7100', '1.7100', '2.2000', '2.2000', '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 (14369, '2021-09-03', 1598, 13849, 1395, NULL, '1.0000', '3.2000', '3.2000', '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 (14370, '2021-09-03', 2943, 13850, 1395, 19987, '-2.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 (14371, '2021-09-03', 2943, 13850, 1395, NULL, '3.0000', '2.1800', '2.1800', '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 (14372, '2021-09-03', 7524, 13851, 1395, NULL, '2.0000', '11.9500', '11.9500', '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 (14373, '2021-09-03', 2098, 13852, 1395, 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 (14374, '2021-09-03', 2263, 13853, 1395, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '7.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 (14375, '2021-09-03', 2360, 13854, 1395, 3862, '-7.0000', '0.5200', '0.5200', '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 (14376, '2021-09-03', 2360, 13854, 1395, NULL, '9.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (14377, '2021-09-03', 1666, 13855, 1395, 3236, '-8.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 (14378, '2021-09-03', 1666, 13855, 1395, NULL, '9.0000', '2.7100', '2.7100', '3.5000', '3.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 (14379, '2021-09-03', 1845, 13856, 1395, 6222, '-3.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 (14380, '2021-09-03', 1845, 13856, 1395, NULL, '4.0000', '19.5000', '19.5000', '26.0000', '26.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 (14381, '2021-09-03', 8466, 13857, 1396, NULL, '3.0000', '9.8000', '9.8000', '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 (14382, '2021-09-03', 7518, 13858, 1396, NULL, '1.0000', '-21.7700', '-21.7700', '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 (14383, '2021-09-03', 1779, 13859, 1396, 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 (14384, '2021-09-03', 8134, 13860, 1396, NULL, '1.0000', '5.2600', '5.2600', '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 (14385, '2021-09-03', 9338, 13861, 1396, NULL, '1.0000', '3.8000', '3.8000', '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 (14386, '2021-09-03', 1840, 13862, 1396, NULL, '4.0000', '0.2400', '0.2400', '0.3000', '0.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 (14387, '2021-09-03', 8127, 13863, 1396, NULL, '1.0000', '24.5300', '24.5300', '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 (14388, '2021-09-03', 2060, 13864, 1397, 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 (14389, '2021-09-03', 1831, 13865, 1398, 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 (14390, '2021-09-03', 7380, 13866, 1398, NULL, '1.0000', '5.6200', '5.6200', '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 (14391, '2021-09-03', 1650, 13867, 1398, 24946, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '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 (14392, '2021-09-03', 7741, 13868, 1398, NULL, '1.0000', '1.2000', '1.2000', '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 (14393, '2021-09-03', 2275, 13869, 1398, 19353, '3.0000', '1.0900', '1.0900', '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 (14394, '2021-09-03', 2270, 13870, 1398, 30691, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14395, '2021-09-03', 2167, 13871, 1398, 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 (14396, '2021-09-03', 2260, 13872, 1398, 23137, '1.0000', '4.2000', '4.2000', '6.0000', '6.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 (14397, '2021-09-03', 7651, 13873, 1398, NULL, '1.0000', '5.0000', '5.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 (14398, '2021-09-03', 1665, 13874, 1398, 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 (14399, '2021-09-03', 2491, 13875, 1398, 25012, '1.0000', '12.2000', '12.2000', '16.5000', '16.5000', '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 (14400, '2021-09-03', 1863, 13876, 1398, NULL, '3.0000', '0.3450', '0.3450', '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 (14401, '2021-09-03', 2384, 13877, 1398, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14402, '2021-09-03', 2342, 13878, 1398, 24955, '5.0000', '1.8600', '1.8600', '2.5000', '2.5000', '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 (14403, '2021-09-03', 1700, 13879, 1398, 31963, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14404, '2021-09-03', 2167, 13880, 1398, 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 (14405, '2021-09-03', 7524, 13881, 1398, NULL, '1.0000', '11.9500', '11.9500', '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 (14406, '2021-09-03', 3044, 13882, 1398, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '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 (14407, '2021-09-03', 2449, 13883, 1398, 23978, '1.0000', '5.0000', '5.0000', '7.0000', '7.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 (14408, '2021-09-03', 2250, 13884, 1398, 31082, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14409, '2021-09-03', 2293, 13885, 1398, NULL, '2.0000', '1.4400', '1.4400', '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 (14410, '2021-09-03', 1339, 13886, 1398, 31094, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14411, '2021-09-03', 2766, 13887, 1398, 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 (14412, '2021-09-03', 2992, 13888, 1399, 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 (14413, '2021-09-03', 7819, 13889, 1399, NULL, '1.0000', '9.5000', '9.5000', '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 (14414, '2021-09-03', 8698, 13890, 1399, NULL, '1.0000', '2.0000', '2.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 (14415, '2021-09-03', 7743, 13891, 1400, NULL, '1.0000', '7.3900', '7.3900', '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 (14416, '2021-09-03', 8184, 13892, 1400, NULL, '10.0000', '0.8000', '0.8000', '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 (14417, '2021-09-03', 8359, 13893, 1400, 30780, '1.0000', '16.7750', '16.7750', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14418, '2021-09-03', 7506, 13894, 1400, NULL, '1.0000', '15.0000', '15.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 (14419, '2021-09-03', 1841, 13895, 1400, 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 (14420, '2021-09-03', 1840, 13896, 1400, NULL, '1.0000', '0.2400', '0.2400', '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 (14421, '2021-09-03', 8722, 13897, 1400, 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 (14422, '2021-09-03', 2456, 13898, 1400, NULL, '1.0000', '18.5000', '18.5000', '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 (14423, '2021-09-03', 9469, 13899, 1400, NULL, '1.0000', '2.3000', '2.3000', '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 (14424, '2021-09-03', 7507, 13900, 1400, NULL, '2.0000', '6.5000', '6.5000', '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 (14425, '2021-09-03', 9274, 13901, 1400, NULL, '1.0000', '0.2500', '0.2500', '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 (14426, '2021-09-03', 1947, 13902, 1400, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14427, '2021-09-03', 9272, 13903, 1400, NULL, '1.0000', '3.1000', '3.1000', '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 (14428, '2021-09-03', 8918, 13904, 1400, NULL, '1.0000', '10.4000', '10.4000', '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 (14429, '2021-09-03', 7704, 13905, 1400, NULL, '1.0000', '8.7000', '8.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 (14430, '2021-09-03', 9160, 13906, 1400, NULL, '1.0000', '15.0000', '15.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 (14431, '2021-09-03', 9303, 13907, 1400, NULL, '1.0000', '9.0000', '9.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 (14432, '2021-09-03', 9214, 13908, 1400, 32135, '1.0000', '7.4538', '7.4538', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14433, '2021-09-03', 7428, 13909, 1400, 30043, '5.0000', '744.9056', '744.9056', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14434, '2021-09-03', 7527, 13910, 1400, 31031, '2.0000', '0.8900', '0.8900', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14435, '2021-09-03', 8878, 13911, 1400, NULL, '2.0000', '6.6700', '6.6700', '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 (14436, '2021-09-03', 9154, 13912, 1400, 31011, '2.0000', '10.6800', '10.6800', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14437, '2021-09-03', 8775, 13913, 1400, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14438, '2021-09-03', 7892, 13914, 1400, NULL, '1.0000', '4.2000', '4.2000', '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 (14439, '2021-09-03', 8166, 13915, 1400, NULL, '1.0000', '4.6000', '4.6000', '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 (14440, '2021-09-03', 7897, 13916, 1400, NULL, '1.0000', '3.0000', '3.0000', '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 (14441, '2021-09-03', 7593, 13917, 1400, 30994, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14442, '2021-09-03', 7339, 13918, 1400, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (14443, '2021-09-03', 7715, 13919, 1400, 30500, '2.0000', '1.8900', '1.8900', '6.0000', '6.0000', '40.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14444, '2021-09-03', 9274, 13920, 1400, NULL, '2.0000', '0.2500', '0.2500', '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 (14445, '2021-09-03', 2972, 13921, 1400, 30199, '1.0000', '22.7100', '22.7100', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14446, '2021-09-03', 7907, 13922, 1400, NULL, '1.0000', '12.0000', '12.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 (14447, '2021-09-03', 7780, 13923, 1400, NULL, '1.0000', '2.6000', '2.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 (14448, '2021-09-03', 7753, 13924, 1400, NULL, '1.0000', '3.1400', '3.1400', '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 (14449, '2021-09-03', 9095, 13925, 1400, NULL, '1.0000', '17.5000', '17.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 (14450, '2021-09-03', 8200, 13926, 1400, NULL, '3.0000', '8.5500', '8.5500', '8.5000', '8.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 (14451, '2021-09-03', 7728, 13927, 1400, NULL, '1.0000', '0.1300', '0.1300', '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 (14452, '2021-09-03', 9445, 13928, 1400, 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 (14453, '2021-09-03', 2108, 13929, 1401, 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 (14454, '2021-09-03', 1519, 13930, 1401, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (14455, '2021-09-03', 7564, 13931, 1401, NULL, '1.0000', '0.6400', '0.6400', '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 (14456, '2021-09-03', 1307, 13932, 1401, 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 (14457, '2021-09-03', 1440, 13933, 1401, 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 (14458, '2021-09-03', 2275, 13934, 1401, 19353, '1.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 (14459, '2021-09-03', 2242, 13935, 1401, 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 (14460, '2021-09-03', 7802, 13936, 1401, NULL, '1.0000', '0.9200', '0.9200', '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 (14461, '2021-09-03', 1805, 13937, 1401, 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 (14462, '2021-09-03', 7518, 13938, 1401, NULL, '1.0000', '7.8200', '7.8200', '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 (14463, '2021-09-03', 1912, 13939, 1401, 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 (14464, '2021-09-03', 7411, 13940, 1401, NULL, '2.0000', '1.3500', '1.3500', '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 (14465, '2021-09-03', 1935, 13941, 1401, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14466, '2021-09-03', 1590, 13942, 1401, 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 (14467, '2021-09-03', 1501, 13943, 1401, 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 (14468, '2021-09-03', 2237, 13944, 1401, 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 (14469, '2021-09-03', 2105, 13945, 1401, 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 (14470, '2021-09-03', 1602, 13946, 1401, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '11.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14471, '2021-09-03', 7777, 13947, 1401, NULL, '1.0000', '9.5000', '9.5000', '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 (14472, '2021-09-03', 1543, 13948, 1401, 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 (14473, '2021-09-03', 2379, 13949, 1401, NULL, '1.0000', '1.8000', '1.8000', '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 (14474, '2021-09-03', 1863, 13950, 1401, NULL, '1.0000', '0.3450', '0.3450', '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 (14475, '2021-09-03', 2973, 13951, 1401, 22401, '1.0000', '4.3000', '4.3000', '5.6000', '5.6000', '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 (14476, '2021-09-03', 2283, 13952, 1401, 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 (14477, '2021-09-03', 8000, 13953, 1401, NULL, '1.0000', '25.8200', '25.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 (14478, '2021-09-03', 1621, 13954, 1401, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (14479, '2021-09-03', 2730, 13955, 1401, 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 (14480, '2021-09-03', 2435, 13956, 1401, 23971, '1.0000', '5.0000', '5.0000', '7.0000', '7.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 (14481, '2021-09-03', 8566, 13957, 1401, NULL, '1.0000', '2.5000', '2.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 (14482, '2021-09-03', 2916, 13958, 1401, NULL, '1.0000', '15.0176', '15.0176', '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 (14483, '2021-09-03', 8181, 13959, 1401, NULL, '2.0000', '4.5000', '4.5000', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14484, '2021-09-03', 1841, 13960, 1401, 31077, '2.0000', '0.2968', '0.2968', '0.5000', '0.5000', '15.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14485, '2021-09-03', 9163, 13961, 1402, NULL, '1.0000', '15.8000', '15.8000', '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 (14486, '2021-09-03', 8810, 13962, 1403, NULL, '1.0000', '1.9200', '1.9200', '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 (14487, '2021-09-03', 7750, 13963, 1403, NULL, '1.0000', '34.9000', '34.9000', '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 (14488, '2021-09-03', 1574, 13964, 1403, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (14489, '2021-09-03', 1997, 13965, 1403, 6446, '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 (14490, '2021-09-03', 2632, 13966, 1403, 10218, '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 (14491, '2021-09-03', 2630, 13967, 1403, 10216, '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 (14492, '2021-09-03', 2359, 13968, 1403, 13637, '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 (14493, '2021-09-03', 1783, 13969, 1403, 18658, '1.0000', '105.6595', '105.6595', '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 (14494, '2021-09-03', 2656, 13970, 1403, 31686, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14495, '2021-09-03', 2263, 13971, 1403, 13624, '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 (14496, '2021-09-03', 8984, 13972, 1403, NULL, '1.0000', '304.7000', '304.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 (14497, '2021-09-03', 7675, 13973, 1403, NULL, '1.0000', '11.4300', '11.4300', '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 (14498, '2021-09-03', 2272, 13974, 1403, 32084, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14499, '2021-09-03', 7606, 13975, 1403, NULL, '1.0000', '4.8600', '4.8600', '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 (14500, '2021-09-03', 1812, 13976, 1403, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14501, '2021-09-03', 2280, 13977, 1403, 21586, '1.0000', '1.9000', '1.9000', '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 (14502, '2021-09-03', 2655, 13978, 1403, 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 (14503, '2021-09-03', 2259, 13979, 1403, 29794, '1.0000', '19.5151', '19.5151', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14504, '2021-09-03', 2699, 13980, 1403, 31687, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14505, '2021-09-03', 8207, 13981, 1403, NULL, '1.0000', '0.0000', '0.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 (14506, '2021-09-03', 1824, 13982, 1403, 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 (14507, '2021-09-03', 2366, 13983, 1403, 25033, '2.0000', '3.7873', '3.7873', '6.0000', '6.0000', '6.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 (14508, '2021-09-03', 2513, 13984, 1403, 7519, '1.0000', '40.0000', '40.0000', '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 (14509, '2021-09-03', 1422, 13985, 1403, 11304, '2.0000', '21.0000', '21.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 (14510, '2021-09-03', 1422, 13985, 1403, 11304, '2.0000', '21.0000', '21.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 (14511, '2021-09-03', 1422, 13985, 1403, 2332, '1.0000', '21.0000', '21.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 (14512, '2021-09-03', 7954, 13986, 1403, NULL, '1.0000', '21.0000', '21.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 (14513, '2021-09-03', 2135, 13987, 1403, 16894, '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 (14514, '2021-09-03', 2327, 13988, 1403, 5084, '2.0000', '4.5000', '4.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 (14515, '2021-09-03', 2279, 13989, 1403, 22220, '1.0000', '2.6280', '2.6280', '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 (14516, '2021-09-03', 2876, 13990, 1403, 17901, '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 (14517, '2021-09-03', 1812, 13991, 1403, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14518, '2021-09-03', 2655, 13992, 1403, 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 (14519, '2021-09-03', 2527, 13993, 1403, 15803, '1.0000', '40.0000', '40.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 (14520, '2021-09-03', 2020, 13994, 1403, 31705, '1.0000', '7.9050', '7.9050', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14521, '2021-09-03', 1602, 13995, 1403, 31992, '1.0000', '6.9415', '6.9415', '10.5000', '10.5000', '13.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14522, '2021-09-03', 3074, 13996, 1403, 27317, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14523, '2021-09-03', 1912, 13997, 1404, 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 (14524, '2021-09-03', 8351, 13998, 1404, NULL, '1.0000', '8.4000', '8.4000', '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 (14525, '2021-09-03', 2242, 13999, 1404, 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 (14526, '2021-09-03', 2275, 14000, 1404, 19353, '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 (14527, '2021-09-04', 1822, 14001, 1405, 8225, '-10.0000', '2.4000', '2.4000', '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 (14528, '2021-09-04', 1822, 14001, 1405, NULL, '30.0000', '2.4000', '2.4000', '3.5000', '3.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 (14529, '2021-09-04', 2318, 14002, 1406, 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 (14530, '2021-09-04', 1523, 14003, 1406, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '22.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 (14531, '2021-09-04', 2618, 14004, 1406, NULL, '1.0000', '4.1000', '4.1000', '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 (14532, '2021-09-04', 2754, 14005, 1406, 18938, '2.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (14533, '2021-09-04', 1386, 14006, 1406, 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 (14534, '2021-09-04', 2272, 14007, 1406, 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 (14535, '2021-09-04', 1856, 14008, 1406, 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 (14536, '2021-09-04', 1306, 14009, 1406, 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 (14537, '2021-09-04', 1873, 14010, 1406, 22597, '1.0000', '11.9500', '11.9500', '16.0000', '16.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 (14538, '2021-09-04', 1863, 14011, 1406, NULL, '2.0000', '0.3450', '0.3450', '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 (14539, '2021-09-04', 2989, 14012, 1406, 22602, '2.0000', '0.9200', '0.9200', '1.0000', '1.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 (14540, '2021-09-04', 2242, 14013, 1406, 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 (14541, '2021-09-04', 2964, 14014, 1406, 25155, '1.0000', '6.6000', '6.6000', '7.5000', '7.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 (14542, '2021-09-04', 8119, 14015, 1406, 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 (14543, '2021-09-04', 1946, 14016, 1406, NULL, '1.0000', '1.5500', '1.5500', '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 (14544, '2021-09-04', 2409, 14017, 1406, 13752, '1.0000', '2.3100', '2.3100', '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 (14545, '2021-09-04', 2410, 14018, 1406, 24947, '1.0000', '4.3200', '4.3200', '6.0000', '6.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 (14546, '2021-09-04', 1302, 14019, 1406, 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 (14547, '2021-09-04', 1557, 14020, 1406, 30671, '1.0000', '7.8420', '7.8420', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14548, '2021-09-04', 2272, 14021, 1406, 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 (14549, '2021-09-04', 1863, 14022, 1406, NULL, '1.0000', '0.3450', '0.3450', '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 (14550, '2021-09-04', 1661, 14023, 1406, NULL, '1.0000', '32.1800', '32.1800', '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 (14551, '2021-09-04', 1504, 14024, 1406, 30675, '10.0000', '1.5406', '1.5406', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14552, '2021-09-04', 2738, 14025, 1406, 19348, '1.0000', '7.6000', '7.6000', '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 (14553, '2021-09-04', 2603, 14026, 1406, 31960, '2.0000', '1.0000', '1.0000', '1.3000', '1.3000', '4.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14554, '2021-09-04', 1806, 14027, 1406, NULL, '1.0000', '90.0000', '90.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 (14555, '2021-09-04', 2366, 14028, 1406, 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 (14556, '2021-09-04', 8208, 14029, 1406, NULL, '1.0000', '33.0000', '33.0000', '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 (14557, '2021-09-04', 2109, 14030, 1406, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '35.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 (14558, '2021-09-04', 1787, 14031, 1406, NULL, '1.0000', '0.8100', '0.8100', '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 (14559, '2021-09-04', 2221, 14032, 1407, 4334, '1.0000', '14.4737', '14.4737', '25.0000', '25.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 (14560, '2021-09-04', 2168, 14033, 1407, 10165, '1.0000', '27.2228', '27.2228', '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 (14561, '2021-09-04', 9474, 14034, 1407, NULL, '1.0000', '9.8000', '9.8000', '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 (14562, '2021-09-04', 1841, 14035, 1407, 18870, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '21.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 (14563, '2021-09-04', 1840, 14036, 1407, 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 (14564, '2021-09-04', 2415, 14037, 1407, 4656, '-7.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 (14565, '2021-09-04', 2415, 14037, 1407, NULL, '8.0000', '5.0000', '5.0000', '7.0000', '7.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 (14566, '2021-09-04', 2237, 14038, 1407, 2781, '-6.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 (14567, '2021-09-04', 2237, 14038, 1407, NULL, '7.0000', '1.0600', '1.0600', '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 (14568, '2021-09-04', 2315, 14039, 1407, 2735, '-64.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14569, '2021-09-04', 2315, 14039, 1407, NULL, '65.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14570, '2021-09-04', 1513, 14040, 1407, NULL, '1.0000', '11.9600', '11.9600', '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 (14571, '2021-09-04', 1760, 14041, 1407, 22256, '3.0000', '111.8384', '111.8384', '2.0000', '2.0000', '22.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 (14572, '2021-09-04', 1668, 14042, 1407, 3238, '1.0000', '13.0442', '13.0442', '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 (14573, '2021-09-04', 1888, 14043, 1407, 683, '1.0000', '134.8400', '134.8400', '21.0000', '21.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 (14574, '2021-09-04', 2618, 14044, 1407, 9836, '-4.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 (14575, '2021-09-04', 2618, 14044, 1407, NULL, '5.0000', '4.1000', '4.1000', '5.5000', '5.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 (14576, '2021-09-04', 1657, 14045, 1407, 518, '8.0000', '0.3900', '0.3900', '0.6000', '0.6000', '92.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 (14577, '2021-09-04', 2068, 14046, 1407, 5568, '-8.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 (14578, '2021-09-04', 2068, 14046, 1407, NULL, '9.0000', '13.1000', '13.1000', '17.0000', '17.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 (14579, '2021-09-04', 1593, 14047, 1407, 8359, '1.0000', '57.4565', '57.4565', '8.7000', '8.7000', '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 (14580, '2021-09-04', 1980, 14048, 1407, 5918, '-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 (14581, '2021-09-04', 1980, 14048, 1407, 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 (14582, '2021-09-04', 1985, 14049, 1407, 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 (14583, '2021-09-04', 1864, 14050, 1407, 7389, '-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 (14584, '2021-09-04', 1864, 14050, 1407, 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 (14585, '2021-09-04', 8208, 14051, 1407, NULL, '1.0000', '33.0000', '33.0000', '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 (14586, '2021-09-04', 3035, 14052, 1407, NULL, '1.0000', '9.5000', '9.5000', '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 (14587, '2021-09-04', 2511, 14053, 1407, 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 (14588, '2021-09-04', 7411, 14054, 1407, NULL, '1.0000', '1.3500', '1.3500', '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 (14589, '2021-09-04', 2088, 14055, 1407, 21781, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '6.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 (14590, '2021-09-04', 2281, 14056, 1407, 2941, '-15.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 (14591, '2021-09-04', 2281, 14056, 1407, NULL, '20.0000', '3.0000', '3.0000', '4.0000', '4.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 (14592, '2021-09-04', 1912, 14057, 1407, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '25.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 (14593, '2021-09-04', 9444, 14058, 1407, NULL, '1.0000', '1.8000', '1.8000', '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 (14594, '2021-09-04', 9178, 14059, 1408, 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 (14595, '2021-09-04', 7807, 14060, 1408, NULL, '2.0000', '12.0000', '12.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 (14596, '2021-09-04', 8350, 14061, 1408, NULL, '1.0000', '12.0000', '12.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 (14597, '2021-09-04', 7412, 14062, 1408, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14598, '2021-09-04', 9028, 14063, 1408, NULL, '1.0000', '9.0000', '9.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 (14599, '2021-09-04', 7674, 14064, 1408, NULL, '1.0000', '14.5000', '14.5000', '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 (14600, '2021-09-04', 7518, 14065, 1408, NULL, '1.0000', '-21.7700', '-21.7700', '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 (14601, '2021-09-04', 7719, 14066, 1408, NULL, '1.0000', '5.5000', '5.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 (14602, '2021-09-04', 7980, 14067, 1408, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (14603, '2021-09-04', 7848, 14068, 1408, NULL, '2.0000', '1.3500', '1.3500', '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 (14604, '2021-09-04', 7668, 14069, 1408, NULL, '1.0000', '19.6600', '19.6600', '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 (14605, '2021-09-04', 9098, 14070, 1408, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14606, '2021-09-04', 8085, 14071, 1408, NULL, '3.0000', '14.0000', '14.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 (14607, '2021-09-04', 7609, 14072, 1408, NULL, '1.0000', '4.3300', '4.3300', '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 (14608, '2021-09-04', 7672, 14073, 1408, NULL, '1.0000', '1.0200', '1.0200', '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 (14609, '2021-09-04', 8878, 14074, 1408, NULL, '1.0000', '6.6700', '6.6700', '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 (14610, '2021-09-04', 8637, 14075, 1408, NULL, '10.0000', '40.3000', '40.3000', '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 (14611, '2021-09-04', 7672, 14076, 1408, NULL, '1.0000', '1.0200', '1.0200', '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 (14612, '2021-09-04', 7675, 14077, 1408, NULL, '1.0000', '11.4300', '11.4300', '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 (14613, '2021-09-04', 7674, 14078, 1408, NULL, '1.0000', '14.5000', '14.5000', '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 (14614, '2021-09-04', 8395, 14079, 1408, NULL, '2.0000', '0.9700', '0.9700', '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 (14615, '2021-09-04', 7703, 14080, 1408, NULL, '2.0000', '22.9900', '22.9900', '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 (14616, '2021-09-04', 9202, 14081, 1408, NULL, '1.0000', '3.5000', '3.5000', '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 (14617, '2021-09-04', 8653, 14082, 1408, NULL, '1.0000', '14.8000', '14.8000', '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 (14618, '2021-09-04', 7713, 14083, 1408, NULL, '1.0000', '4.4000', '4.4000', '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 (14619, '2021-09-04', 7390, 14084, 1408, 30019, '1.0000', '18.2100', '18.2100', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14620, '2021-09-04', 7675, 14085, 1408, NULL, '2.0000', '11.4300', '11.4300', '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 (14621, '2021-09-04', 7412, 14086, 1408, 30160, '2.0000', '1.5200', '1.5200', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14622, '2021-09-04', 2315, 14087, 1408, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14623, '2021-09-04', 9445, 14088, 1408, 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 (14624, '2021-09-04', 8214, 14089, 1408, NULL, '1.0000', '16.0000', '16.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 (14625, '2021-09-04', 2287, 14090, 1408, NULL, '3.0000', '2.3000', '2.3000', '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 (14626, '2021-09-04', 7411, 14091, 1408, NULL, '1.0000', '1.3500', '1.3500', '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 (14627, '2021-09-04', 9272, 14092, 1408, NULL, '1.0000', '3.1000', '3.1000', '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 (14628, '2021-09-04', 7427, 14093, 1408, 30042, '1.0000', '3.4000', '3.4000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14629, '2021-09-04', 8328, 14094, 1408, NULL, '1.0000', '32.2000', '32.2000', '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 (14630, '2021-09-04', 7848, 14095, 1408, NULL, '1.0000', '1.3500', '1.3500', '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 (14631, '2021-09-04', 8914, 14096, 1408, NULL, '1.0000', '10.0400', '10.0400', '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 (14632, '2021-09-04', 7582, 14097, 1408, NULL, '1.0000', '2.4000', '2.4000', '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 (14633, '2021-09-04', 7931, 14098, 1408, NULL, '1.0000', '0.2500', '0.2500', '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 (14634, '2021-09-04', 8539, 14099, 1408, 31000, '4.0000', '4.4300', '4.4300', '0.8000', '0.8000', '67.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14635, '2021-09-04', 8247, 14100, 1408, NULL, '2.0000', '10.0000', '10.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 (14636, '2021-09-04', 7334, 14101, 1408, NULL, '2.0000', '8.1600', '8.1600', '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 (14637, '2021-09-04', 8278, 14102, 1408, NULL, '1.0000', '7.0000', '7.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 (14638, '2021-09-04', 7507, 14103, 1408, NULL, '3.0000', '6.5000', '6.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 (14639, '2021-09-04', 2673, 14104, 1408, 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 (14640, '2021-09-04', 1498, 14105, 1409, 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 (14641, '2021-09-04', 7736, 14106, 1410, NULL, '1.0000', '4.0000', '4.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 (14642, '2021-09-04', 7672, 14107, 1410, NULL, '1.0000', '1.0200', '1.0200', '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 (14643, '2021-09-04', 2283, 14108, 1410, 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 (14644, '2021-09-04', 8246, 14109, 1410, NULL, '1.0000', '7.0000', '7.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 (14645, '2021-09-04', 7609, 14110, 1410, NULL, '1.0000', '4.3300', '4.3300', '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 (14646, '2021-09-04', 3036, 14111, 1410, 30783, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14647, '2021-09-04', 7641, 14112, 1410, NULL, '1.0000', '1.9000', '1.9000', '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 (14648, '2021-09-04', 2102, 14113, 1410, 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 (14649, '2021-09-04', 8097, 14114, 1410, NULL, '3.0000', '7.6800', '7.6800', '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 (14650, '2021-09-04', 2991, 14115, 1410, NULL, '1.0000', '0.5700', '0.5700', '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 (14651, '2021-09-04', 1665, 14116, 1410, 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 (14652, '2021-09-04', 7638, 14117, 1411, 30935, '1.0000', '7.2779', '7.2779', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14653, '2021-09-04', 2324, 14118, 1411, 31659, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14654, '2021-09-04', 7886, 14119, 1411, NULL, '1.0000', '16.1667', '16.1667', '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 (14655, '2021-09-04', 2463, 14120, 1411, 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 (14656, '2021-09-04', 8679, 14121, 1411, NULL, '1.0000', '28.0000', '28.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 (14657, '2021-09-04', 8435, 14122, 1411, NULL, '1.0000', '5.7000', '5.7000', '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 (14658, '2021-09-04', 7672, 14123, 1411, NULL, '1.0000', '1.0200', '1.0200', '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 (14659, '2021-09-04', 7428, 14124, 1411, 30044, '4.0000', '744.9056', '744.9056', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14660, '2021-09-04', 2662, 14125, 1411, 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 (14661, '2021-09-04', 8878, 14126, 1411, NULL, '1.0000', '6.6700', '6.6700', '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 (14662, '2021-09-04', 7709, 14127, 1411, NULL, '2.0000', '35.8000', '35.8000', '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 (14663, '2021-09-04', 7446, 14128, 1411, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14664, '2021-09-04', 7928, 14129, 1411, NULL, '1.0000', '1.2000', '1.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 (14665, '2021-09-04', 8161, 14130, 1411, 31003, '2.0000', '17.5473', '17.5473', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14666, '2021-09-04', 8489, 14131, 1411, NULL, '1.0000', '30.3000', '30.3000', '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 (14667, '2021-09-04', 7380, 14132, 1411, 30183, '1.0000', '5.6200', '5.6200', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14668, '2021-09-04', 7947, 14133, 1411, NULL, '1.0000', '14.4400', '14.4400', '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 (14669, '2021-09-04', 7438, 14134, 1411, 30051, '1.0000', '28.6900', '28.6900', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14670, '2021-09-04', 1837, 14135, 1411, 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 (14671, '2021-09-04', 1569, 14136, 1411, NULL, '1.0000', '14.2800', '14.2800', '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 (14672, '2021-09-04', 8361, 14137, 1411, NULL, '2.0000', '4.5800', '4.5800', '9.5000', '9.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 (14673, '2021-09-04', 7712, 14138, 1411, NULL, '1.0000', '0.3300', '0.3300', '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 (14674, '2021-09-04', 7339, 14139, 1411, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (14675, '2021-09-04', 2311, 14140, 1411, NULL, '1.0000', '46.2900', '46.2900', '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 (14676, '2021-09-04', 1523, 14141, 1412, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '37.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 (14677, '2021-09-04', 1415, 14142, 1412, 17861, '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 (14678, '2021-09-04', 8566, 14143, 1412, NULL, '1.0000', '2.5000', '2.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 (14679, '2021-09-04', 2943, 14144, 1412, 21545, '1.0000', '2.1800', '2.1800', '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 (14680, '2021-09-04', 2251, 14145, 1412, 24341, '1.0000', '11.7654', '11.7654', '16.0000', '16.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 (14681, '2021-09-04', 8242, 14146, 1412, NULL, '1.0000', '0.4900', '0.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 (14682, '2021-09-04', 2169, 14147, 1412, 32068, '1.0000', '0.9812', '0.9812', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14683, '2021-09-04', 8489, 14148, 1412, NULL, '1.0000', '30.3000', '30.3000', '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 (14684, '2021-09-04', 2825, 14149, 1412, 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 (14685, '2021-09-04', 8285, 14150, 1412, 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 (14686, '2021-09-04', 7441, 14151, 1412, NULL, '3.0000', '0.2300', '0.2300', '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 (14687, '2021-09-04', 2706, 14152, 1412, 12733, '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 (14688, '2021-09-04', 1599, 14153, 1412, 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 (14689, '2021-09-04', 1602, 14154, 1412, 31992, '1.0000', '6.9415', '6.9415', '10.5000', '10.5000', '12.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14690, '2021-09-04', 1665, 14155, 1412, 22236, '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 (14691, '2021-09-04', 1511, 14156, 1412, 21564, '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 (14692, '2021-09-04', 1651, 14157, 1412, 32044, '1.0000', '7.1825', '7.1825', '10.3500', '10.3500', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14693, '2021-09-04', 1687, 14158, 1412, 16899, '1.0000', '15.3580', '15.3580', '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 (14694, '2021-09-04', 2821, 14159, 1412, 17043, '1.0000', '3.5100', '3.5100', '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 (14695, '2021-09-04', 1666, 14160, 1412, 31703, '1.0000', '160.5207', '160.5207', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14696, '2021-09-04', 2036, 14161, 1413, 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 (14697, '2021-09-04', 8518, 14162, 1413, NULL, '1.0000', '17.6400', '17.6400', '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 (14698, '2021-09-04', 8720, 14163, 1413, NULL, '1.0000', '19.5000', '19.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 (14699, '2021-09-04', 7593, 14164, 1413, 30994, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14700, '2021-09-04', 1504, 14165, 1414, 30675, '10.0000', '1.5406', '1.5406', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14701, '2021-09-04', 2817, 14166, 1414, 30692, '10.0000', '1.8200', '1.8200', '2.5000', '2.5000', '90.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14702, '2021-09-04', 1519, 14167, 1414, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (14703, '2021-09-04', 7385, 14168, 1414, NULL, '7.0000', '12.5000', '12.5000', '3.5000', '3.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 (14704, '2021-09-04', 2866, 14169, 1414, 18927, '10.0000', '0.8800', '0.8800', '1.5000', '1.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 (14705, '2021-09-04', 2284, 14170, 1414, 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 (14706, '2021-09-04', 8638, 14171, 1414, 30658, '5.0000', '0.5100', '0.5100', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14707, '2021-09-04', 2169, 14172, 1414, NULL, '1.0000', '1.1300', '1.1300', '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 (14708, '2021-09-04', 2384, 14173, 1414, 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 (14709, '2021-09-04', 1450, 14174, 1414, 24966, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '25.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 (14710, '2021-09-04', 2951, 14175, 1414, NULL, '14.0000', '0.3700', '0.3700', '0.5000', '0.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 (14711, '2021-09-04', 7954, 14176, 1414, NULL, '1.0000', '21.0000', '21.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 (14712, '2021-09-04', 1665, 14177, 1414, 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 (14713, '2021-09-04', 2259, 14178, 1414, 23136, '1.0000', '20.0000', '20.0000', '28.0000', '28.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 (14714, '2021-09-04', 1818, 14179, 1414, 19325, '1.0000', '14.8000', '14.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 (14715, '2021-09-04', 8666, 14180, 1414, NULL, '1.0000', '0.4600', '0.4600', '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 (14716, '2021-09-04', 2068, 14181, 1414, NULL, '1.0000', '12.0277', '12.0277', '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 (14717, '2021-09-04', 1574, 14182, 1414, 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 (14718, '2021-09-04', 7952, 14183, 1415, NULL, '1.0000', '1.4000', '1.4000', '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 (14719, '2021-09-04', 2060, 14184, 1415, 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 (14720, '2021-09-04', 7952, 14185, 1415, NULL, '1.0000', '1.4000', '1.4000', '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 (14721, '2021-09-04', 1573, 14186, 1416, 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 (14722, '2021-09-04', 9092, 14187, 1416, NULL, '4.0000', '5.2900', '5.2900', '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 (14723, '2021-09-04', 8940, 14188, 1416, NULL, '3.0000', '4.9900', '4.9900', '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 (14724, '2021-09-04', 8596, 14189, 1417, NULL, '1.0000', '17.0000', '17.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 (14725, '2021-09-04', 7473, 14190, 1417, NULL, '1.0000', '9.2200', '9.2200', '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 (14726, '2021-09-04', 1498, 14191, 1417, 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 (14727, '2021-09-04', 7412, 14192, 1417, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14728, '2021-09-04', 8969, 14193, 1418, NULL, '4.0000', '2.0000', '2.0000', '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 (14729, '2021-09-04', 7641, 14194, 1418, NULL, '1.0000', '1.9000', '1.9000', '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 (14730, '2021-09-04', 9092, 14195, 1418, NULL, '4.0000', '5.2900', '5.2900', '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 (14731, '2021-09-04', 7523, 14196, 1418, NULL, '1.0000', '1.8300', '1.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 (14732, '2021-09-04', 7765, 14197, 1418, NULL, '3.0000', '16.0000', '16.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 (14733, '2021-09-04', 7518, 14198, 1418, NULL, '1.0000', '-21.7700', '-21.7700', '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 (14734, '2021-09-04', 8506, 14199, 1419, NULL, '1.0000', '35.4000', '35.4000', '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 (14735, '2021-09-04', 2327, 14200, 1419, 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 (14736, '2021-09-04', 2974, 14201, 1420, 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 (14737, '2021-09-04', 2315, 14202, 1421, 3069, '6.0000', '0.3300', '0.3300', '0.5100', '0.5100', '301.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14738, '2021-09-04', 2451, 14203, 1421, 31690, '1.0000', '10.0400', '10.0400', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14739, '2021-09-04', 3015, 14204, 1421, 23586, '1.0000', '47.6700', '47.6700', '65.0000', '65.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 (14740, '2021-09-04', 2105, 14205, 1421, 2511, '1.0000', '1.3500', '1.3500', '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 (14741, '2021-09-04', 1863, 14206, 1421, 31984, '2.0000', '1.0638', '1.0638', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14742, '2021-09-04', 7444, 14207, 1421, 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 (14743, '2021-09-04', 2135, 14208, 1421, 16894, '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 (14744, '2021-09-04', 1541, 14209, 1421, 32004, '1.0000', '267.3252', '267.3252', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14745, '2021-09-04', 1733, 14210, 1421, 23607, '1.0000', '8.8900', '8.8900', '12.0000', '12.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 (14746, '2021-09-04', 1687, 14211, 1421, 5899, '1.0000', '15.3580', '15.3580', '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 (14747, '2021-09-04', 1824, 14212, 1421, 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 (14748, '2021-09-04', 1540, 14213, 1421, 1545, '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 (14749, '2021-09-04', 1756, 14214, 1421, 6779, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '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 (14750, '2021-09-04', 2693, 14215, 1421, 12287, '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 (14751, '2021-09-04', 1651, 14216, 1421, 23577, '2.0000', '7.1825', '7.1825', '10.3500', '10.3500', '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 (14752, '2021-09-04', 1812, 14217, 1421, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14753, '2021-09-04', 7952, 14218, 1422, NULL, '1.0000', '1.4000', '1.4000', '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 (14754, '2021-09-04', 2315, 14219, 1423, 3069, '6.0000', '0.3300', '0.3300', '0.5100', '0.5100', '295.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14755, '2021-09-04', 2451, 14220, 1423, 31690, '1.0000', '10.0400', '10.0400', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14756, '2021-09-04', 3015, 14221, 1423, NULL, '1.0000', '47.6700', '47.6700', '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 (14757, '2021-09-04', 2105, 14222, 1423, 2511, '1.0000', '1.3500', '1.3500', '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 (14758, '2021-09-04', 1863, 14223, 1423, 31984, '2.0000', '1.0638', '1.0638', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14759, '2021-09-04', 7444, 14224, 1423, 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 (14760, '2021-09-04', 2135, 14225, 1423, 16894, '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 (14761, '2021-09-04', 1541, 14226, 1423, 32004, '1.0000', '267.3252', '267.3252', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14762, '2021-09-04', 1733, 14227, 1423, 23607, '1.0000', '8.8900', '8.8900', '12.0000', '12.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 (14763, '2021-09-04', 1687, 14228, 1423, 5899, '1.0000', '15.3580', '15.3580', '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 (14764, '2021-09-04', 1824, 14229, 1423, 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 (14765, '2021-09-04', 1540, 14230, 1423, 1545, '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 (14766, '2021-09-04', 1756, 14231, 1423, 6779, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '16.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 (14767, '2021-09-04', 2693, 14232, 1423, 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 (14768, '2021-09-04', 1651, 14233, 1423, 23577, '1.0000', '7.1825', '7.1825', '10.3500', '10.3500', '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 (14769, '2021-09-04', 1651, 14233, 1423, 23209, '1.0000', '7.1825', '7.1825', '10.3500', '10.3500', '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 (14770, '2021-09-04', 1812, 14234, 1423, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14771, '2021-09-04', 1342, 14235, 1424, 22390, '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 (14772, '2021-09-04', 2327, 14236, 1424, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.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 (14773, '2021-09-04', 1912, 14237, 1424, 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 (14774, '2021-09-04', 2449, 14238, 1424, 23978, '2.0000', '5.0000', '5.0000', '7.0000', '7.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 (14775, '2021-09-04', 1785, 14239, 1425, 29792, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14776, '2021-09-04', 1812, 14240, 1425, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14777, '2021-09-04', 1672, 14241, 1425, 24288, '10.0000', '44.6198', '44.6198', '4.0000', '4.0000', '4.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 (14778, '2021-09-04', 1787, 14242, 1425, 4930, '1.0000', '0.8100', '0.8100', '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 (14779, '2021-09-04', 1837, 14243, 1425, 31714, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14780, '2021-09-04', 2135, 14244, 1425, 16894, '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 (14781, '2021-09-04', 2470, 14245, 1425, 5090, '1.0000', '8.5000', '8.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 (14782, '2021-09-04', 2656, 14246, 1425, 31686, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14783, '2021-09-04', 1602, 14247, 1426, 31992, '1.0000', '6.9415', '6.9415', '10.5000', '10.5000', '11.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14784, '2021-09-04', 1667, 14248, 1427, 31704, '1.0000', '70.9201', '70.9201', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14785, '2021-09-05', 7588, 14249, 1428, NULL, '1.0000', '1.5000', '1.5000', '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 (14786, '2021-09-05', 8516, 14250, 1428, NULL, '3.0000', '7.1000', '7.1000', '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 (14787, '2021-09-05', 7473, 14251, 1428, NULL, '3.0000', '9.2200', '9.2200', '0.6000', '0.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 (14788, '2021-09-05', 7879, 14252, 1428, NULL, '20.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (14789, '2021-09-05', 7589, 14253, 1428, NULL, '1.0000', '1.7700', '1.7700', '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 (14790, '2021-09-05', 1636, 14254, 1428, 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 (14791, '2021-09-05', 8720, 14255, 1428, NULL, '1.0000', '19.5000', '19.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 (14792, '2021-09-05', 2060, 14256, 1428, 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 (14793, '2021-09-05', 3012, 14257, 1428, NULL, '1.0000', '4.7000', '4.7000', '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 (14794, '2021-09-05', 8296, 14258, 1428, NULL, '1.0000', '11.7600', '11.7600', '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 (14795, '2021-09-05', 8679, 14259, 1428, NULL, '1.0000', '28.0000', '28.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 (14796, '2021-09-05', 2974, 14260, 1428, 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 (14797, '2021-09-05', 8699, 14261, 1428, NULL, '1.0000', '6.3800', '6.3800', '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 (14798, '2021-09-05', 7370, 14262, 1428, NULL, '1.0000', '27.6000', '27.6000', '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 (14799, '2021-09-05', 1757, 14263, 1428, 30202, '1.0000', '4.9800', '4.9800', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14800, '2021-09-05', 8184, 14264, 1428, NULL, '14.0000', '0.8000', '0.8000', '3.0000', '3.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 (14801, '2021-09-05', 8039, 14265, 1428, NULL, '2.0000', '34.6600', '34.6600', '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 (14802, '2021-09-05', 7482, 14266, 1428, 30157, '2.0000', '3.0500', '3.0500', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14803, '2021-09-05', 8275, 14267, 1428, 31002, '1.0000', '29.8500', '29.8500', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14804, '2021-09-05', 2656, 14268, 1428, 31906, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14805, '2021-09-05', 9418, 14269, 1428, NULL, '2.0000', '19.8000', '19.8000', '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 (14806, '2021-09-05', 2991, 14270, 1428, NULL, '1.0000', '0.5700', '0.5700', '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 (14807, '2021-09-05', 1837, 14271, 1428, 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 (14808, '2021-09-05', 8188, 14272, 1428, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14809, '2021-09-05', 2060, 14273, 1428, 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 (14810, '2021-09-05', 7672, 14274, 1428, NULL, '1.0000', '1.0200', '1.0200', '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 (14811, '2021-09-05', 7339, 14275, 1428, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (14812, '2021-09-05', 8166, 14276, 1428, NULL, '1.0000', '4.6000', '4.6000', '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 (14813, '2021-09-05', 7994, 14277, 1428, NULL, '1.0000', '47.5800', '47.5800', '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 (14814, '2021-09-05', 8878, 14278, 1428, NULL, '1.0000', '6.6700', '6.6700', '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 (14815, '2021-09-05', 8208, 14279, 1428, NULL, '2.0000', '33.0000', '33.0000', '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 (14816, '2021-09-05', 9337, 14280, 1428, NULL, '1.0000', '5.7200', '5.7200', '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 (14817, '2021-09-05', 7564, 14281, 1428, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14818, '2021-09-05', 8454, 14282, 1428, NULL, '1.0000', '5.1700', '5.1700', '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 (14819, '2021-09-05', 7506, 14283, 1428, NULL, '1.0000', '15.0000', '15.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 (14820, '2021-09-05', 7674, 14284, 1428, NULL, '1.0000', '14.5000', '14.5000', '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 (14821, '2021-09-05', 7328, 14285, 1428, 29979, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14822, '2021-09-05', 1840, 14286, 1428, NULL, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14823, '2021-09-05', 8878, 14287, 1428, NULL, '1.0000', '6.6700', '6.6700', '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 (14824, '2021-09-05', 8679, 14288, 1428, NULL, '1.0000', '28.0000', '28.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 (14825, '2021-09-05', 2289, 14289, 1428, NULL, '4.0000', '0.2300', '0.2300', '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 (14826, '2021-09-05', 7411, 14290, 1428, NULL, '2.0000', '1.3500', '1.3500', '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 (14827, '2021-09-05', 7412, 14291, 1428, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14828, '2021-09-05', 7612, 14292, 1428, NULL, '2.0000', '46.0000', '46.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 (14829, '2021-09-05', 7641, 14293, 1428, NULL, '1.0000', '1.9000', '1.9000', '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 (14830, '2021-09-05', 7981, 14294, 1428, NULL, '10.0000', '6.0000', '6.0000', '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 (14831, '2021-09-05', 2699, 14295, 1428, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14832, '2021-09-05', 9092, 14296, 1428, NULL, '2.0000', '5.2900', '5.2900', '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 (14833, '2021-09-05', 9401, 14297, 1428, 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 (14834, '2021-09-05', 7428, 14298, 1429, 30044, '1.0000', '744.9056', '744.9056', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14835, '2021-09-05', 7428, 14298, 1429, NULL, '1.0000', '744.9056', '744.9056', '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 (14836, '2021-09-05', 8188, 14299, 1429, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14837, '2021-09-05', 8454, 14300, 1430, NULL, '1.0000', '5.1700', '5.1700', '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 (14838, '2021-09-05', 2315, 14301, 1430, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '31.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 (14839, '2021-09-05', 2135, 14302, 1430, 23175, '1.0000', '2.5000', '2.5000', '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 (14840, '2021-09-05', 2769, 14303, 1430, 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 (14841, '2021-09-05', 1837, 14304, 1430, 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 (14842, '2021-09-05', 1602, 14305, 1430, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '10.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14843, '2021-09-05', 7422, 14306, 1430, NULL, '1.0000', '4.4700', '4.4700', '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 (14844, '2021-09-05', 9274, 14307, 1430, NULL, '1.0000', '0.2500', '0.2500', '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 (14845, '2021-09-05', 1854, 14308, 1430, 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 (14846, '2021-09-05', 2379, 14309, 1430, NULL, '1.0000', '1.8000', '1.8000', '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 (14847, '2021-09-05', 7357, 14310, 1430, NULL, '1.0000', '12.2000', '12.2000', '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 (14848, '2021-09-05', 1337, 14311, 1430, 31095, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14849, '2021-09-05', 1806, 14312, 1430, NULL, '1.0000', '90.0000', '90.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 (14850, '2021-09-05', 2238, 14313, 1430, 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 (14851, '2021-09-05', 7987, 14314, 1430, NULL, '1.0000', '37.9400', '37.9400', '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 (14852, '2021-09-05', 2280, 14315, 1430, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '30.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 (14853, '2021-09-05', 2768, 14316, 1430, 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 (14854, '2021-09-05', 2242, 14317, 1430, 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 (14855, '2021-09-05', 2315, 14318, 1430, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '31.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 (14856, '2021-09-05', 2360, 14319, 1430, 19866, '3.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (14857, '2021-09-05', 1856, 14320, 1430, 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 (14858, '2021-09-05', 2275, 14321, 1430, 19353, '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 (14859, '2021-09-05', 2275, 14321, 1430, 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 (14860, '2021-09-05', 7885, 14322, 1431, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14861, '2021-09-05', 1703, 14323, 1431, NULL, '1.0000', '7.5900', '7.5900', '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 (14862, '2021-09-05', 1602, 14324, 1432, 5897, '1.0000', '6.7859', '6.7859', '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 (14863, '2021-09-05', 2916, 14325, 1432, 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 (14864, '2021-09-05', 7358, 14326, 1432, NULL, '1.0000', '18.8000', '18.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 (14865, '2021-09-05', 2491, 14327, 1432, 6228, '-6.0000', '12.2000', '12.2000', '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 (14866, '2021-09-05', 2491, 14327, 1432, NULL, '7.0000', '12.2000', '12.2000', '16.5000', '16.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 (14867, '2021-09-05', 1605, 14328, 1432, 17691, '1.0000', '26.8412', '26.8412', '39.0000', '39.0000', '10.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 (14868, '2021-09-05', 1537, 14329, 1432, 18820, '1.0000', '40.2700', '40.2700', '51.5000', '51.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 (14869, '2021-09-05', 1876, 14330, 1432, 6312, '1.0000', '0.9126', '0.9126', '34.5000', '34.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 (14870, '2021-09-05', 1845, 14331, 1432, 6222, '-4.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 (14871, '2021-09-05', 1845, 14331, 1432, NULL, '5.0000', '19.5000', '19.5000', '26.0000', '26.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 (14872, '2021-09-05', 2012, 14332, 1432, 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 (14873, '2021-09-05', 2660, 14333, 1432, 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 (14874, '2021-09-05', 2167, 14334, 1432, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '1.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 (14875, '2021-09-05', 8594, 14335, 1432, 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 (14876, '2021-09-05', 9092, 14336, 1432, NULL, '2.0000', '5.2900', '5.2900', '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 (14877, '2021-09-05', 1402, 14337, 1432, 22313, '1.0000', '2.2000', '2.2000', '3.0000', '3.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 (14878, '2021-09-05', 2574, 14338, 1432, 7383, '10.0000', '0.7800', '0.7800', '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 (14879, '2021-09-05', 2485, 14339, 1432, 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 (14880, '2021-09-05', 2482, 14340, 1432, 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 (14881, '2021-09-05', 2293, 14341, 1433, 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 (14882, '2021-09-05', 1532, 14342, 1433, 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 (14883, '2021-09-05', 1432, 14343, 1433, 24969, '1.0000', '9.9497', '9.9497', '13.0000', '13.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 (14884, '2021-09-05', 1912, 14344, 1433, 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 (14885, '2021-09-05', 2411, 14345, 1433, 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 (14886, '2021-09-05', 8043, 14346, 1433, NULL, '1.0000', '27.9800', '27.9800', '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 (14887, '2021-09-05', 1837, 14347, 1433, 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 (14888, '2021-09-05', 2092, 14348, 1433, 22388, '1.0000', '4.1500', '4.1500', '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 (14889, '2021-09-05', 1751, 14349, 1433, 19368, '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 (14890, '2021-09-05', 2088, 14350, 1433, 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 (14891, '2021-09-05', 2167, 14351, 1433, 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 (14892, '2021-09-05', 1856, 14352, 1434, 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 (14893, '2021-09-05', 1873, 14353, 1434, 22597, '1.0000', '11.9500', '11.9500', '16.0000', '16.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 (14894, '2021-09-05', 2991, 14354, 1434, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '96.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 (14895, '2021-09-05', 2294, 14355, 1434, 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 (14896, '2021-09-05', 7411, 14356, 1434, NULL, '1.0000', '1.3500', '1.3500', '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 (14897, '2021-09-05', 1812, 14357, 1434, 30696, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14898, '2021-09-05', 8677, 14358, 1435, NULL, '1.0000', '7.8000', '7.8000', '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 (14899, '2021-09-05', 1533, 14359, 1435, 29632, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14900, '2021-09-05', 2167, 14360, 1435, 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 (14901, '2021-09-05', 2101, 14361, 1435, 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 (14902, '2021-09-05', 1337, 14362, 1435, 31095, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14903, '2021-09-05', 2294, 14363, 1435, 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 (14904, '2021-09-05', 1653, 14364, 1435, 19862, '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 (14905, '2021-09-05', 1665, 14365, 1435, 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 (14906, '2021-09-05', 1517, 14366, 1436, 18907, '1.0000', '23.6400', '23.6400', '31.0000', '31.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 (14907, '2021-09-05', 2491, 14367, 1436, 6228, '-7.0000', '12.2000', '12.2000', '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 (14908, '2021-09-05', 2491, 14367, 1436, NULL, '8.0000', '12.2000', '12.2000', '16.5000', '16.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 (14909, '2021-09-05', 1916, 14368, 1436, 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 (14910, '2021-09-05', 1519, 14369, 1436, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (14911, '2021-09-05', 2359, 14370, 1436, 22277, '1.0000', '8.1100', '8.1100', '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 (14912, '2021-09-05', 2106, 14371, 1436, NULL, '2.0000', '0.9900', '0.9900', '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 (14913, '2021-09-05', 2974, 14372, 1436, 22364, '-8.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 (14914, '2021-09-05', 2974, 14372, 1436, NULL, '9.0000', '5.0000', '5.0000', '8.0000', '8.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 (14915, '2021-09-05', 1326, 14373, 1436, 22322, '2.0000', '2.7762', '2.7762', '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 (14916, '2021-09-05', 2504, 14374, 1436, 5863, '-1.0000', '35.0000', '35.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 (14917, '2021-09-05', 2504, 14374, 1436, NULL, '2.0000', '35.0000', '35.0000', '44.0000', '44.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 (14918, '2021-09-05', 1310, 14375, 1436, NULL, '2.0000', '0.3700', '0.3700', '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 (14919, '2021-09-05', 8059, 14376, 1436, 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 (14920, '2021-09-05', 2656, 14377, 1436, 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 (14921, '2021-09-05', 1602, 14378, 1436, 5897, '1.0000', '6.7859', '6.7859', '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 (14922, '2021-09-05', 2037, 14379, 1436, 6389, '-2.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14923, '2021-09-05', 2037, 14379, 1436, NULL, '3.0000', '10.5000', '10.5000', '14.0000', '14.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 (14924, '2021-09-05', 7519, 14380, 1437, NULL, '1.0000', '0.8800', '0.8800', '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 (14925, '2021-09-05', 1844, 14381, 1437, 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 (14926, '2021-09-05', 1863, 14382, 1437, NULL, '1.0000', '0.3450', '0.3450', '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 (14927, '2021-09-05', 1577, 14383, 1437, 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 (14928, '2021-09-05', 1935, 14384, 1437, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14929, '2021-09-05', 2821, 14385, 1437, 19817, '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 (14930, '2021-09-05', 2277, 14386, 1437, NULL, '1.0000', '0.7800', '0.7800', '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 (14931, '2021-09-05', 2315, 14387, 1437, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '27.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 (14932, '2021-09-05', 1666, 14388, 1438, 3236, '-9.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 (14933, '2021-09-05', 1666, 14388, 1438, NULL, '11.0000', '2.7100', '2.7100', '3.5000', '3.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 (14934, '2021-09-05', 3041, 14389, 1438, 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 (14935, '2021-09-05', 2903, 14390, 1438, NULL, '1.0000', '32.0000', '32.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 (14936, '2021-09-05', 2545, 14391, 1439, 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 (14937, '2021-09-05', 2545, 14391, 1439, NULL, '2.0000', '5.8819', '5.8819', '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 (14938, '2021-09-05', 2635, 14392, 1439, 10297, '-2.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 (14939, '2021-09-05', 2635, 14392, 1439, NULL, '3.0000', '3.0000', '3.0000', '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 (14940, '2021-09-05', 1337, 14393, 1439, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.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 (14941, '2021-09-05', 1333, 14394, 1439, 229, '1.0000', '0.5500', '0.5500', '1.0000', '1.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 (14942, '2021-09-05', 1409, 14395, 1439, 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 (14943, '2021-09-05', 8594, 14396, 1440, NULL, '4.0000', '2.0000', '2.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 (14944, '2021-09-05', 2974, 14397, 1440, 22364, '-9.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 (14945, '2021-09-05', 2974, 14397, 1440, NULL, '10.0000', '5.0000', '5.0000', '8.0000', '8.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 (14946, '2021-09-05', 2543, 14398, 1441, 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 (14947, '2021-09-05', 1602, 14399, 1442, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14948, '2021-09-05', 7428, 14400, 1443, NULL, '2.0000', '744.9056', '744.9056', '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 (14949, '2021-09-05', 8188, 14401, 1443, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14950, '2021-09-05', 7412, 14402, 1443, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14951, '2021-09-05', 1837, 14403, 1443, 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 (14952, '2021-09-05', 8679, 14404, 1443, NULL, '1.0000', '28.0000', '28.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 (14953, '2021-09-05', 8146, 14405, 1443, NULL, '1.0000', '34.0200', '34.0200', '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 (14954, '2021-09-05', 1807, 14406, 1443, NULL, '3.0000', '41.5000', '41.5000', '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 (14955, '2021-09-05', 9469, 14407, 1443, NULL, '2.0000', '2.3000', '2.3000', '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 (14956, '2021-09-05', 2891, 14408, 1443, NULL, '1.0000', '8.0000', '8.0000', '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 (14957, '2021-09-05', 8744, 14409, 1443, 32142, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14958, '2021-09-05', 1596, 14410, 1443, NULL, '1.0000', '2.5700', '2.5700', '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 (14959, '2021-09-05', 9265, 14411, 1443, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14960, '2021-09-05', 9329, 14412, 1443, 30177, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14961, '2021-09-05', 7784, 14413, 1443, NULL, '1.0000', '7.4600', '7.4600', '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 (14962, '2021-09-05', 7954, 14414, 1443, NULL, '2.0000', '21.0000', '21.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 (14963, '2021-09-05', 3059, 14415, 1443, NULL, '1.0000', '0.4500', '0.4500', '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 (14964, '2021-09-05', 2384, 14416, 1443, NULL, '10.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (14965, '2021-09-05', 8188, 14417, 1443, 32132, '2.0000', '6.7000', '6.7000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14966, '2021-09-05', 7710, 14418, 1443, NULL, '2.0000', '26.0000', '26.0000', '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 (14967, '2021-09-05', 9474, 14419, 1443, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14968, '2021-09-05', 8743, 14420, 1443, NULL, '1.0000', '8.5000', '8.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 (14969, '2021-09-05', 7763, 14421, 1443, 30203, '1.0000', '1.1300', '1.1300', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14970, '2021-09-05', 1837, 14422, 1443, 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 (14971, '2021-09-05', 2991, 14423, 1443, NULL, '1.0000', '0.5700', '0.5700', '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 (14972, '2021-09-05', 9456, 14424, 1443, 30936, '3.0000', '3.3200', '3.3200', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (14973, '2021-09-05', 8596, 14425, 1443, NULL, '1.0000', '17.0000', '17.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 (14974, '2021-09-05', 2991, 14426, 1443, NULL, '1.0000', '0.5700', '0.5700', '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 (14975, '2021-09-05', 9001, 14427, 1443, NULL, '1.0000', '4.3300', '4.3300', '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 (14976, '2021-09-05', 8952, 14428, 1443, NULL, '2.0000', '9.0000', '9.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 (14977, '2021-09-05', 8345, 14429, 1443, NULL, '1.0000', '22.0000', '22.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 (14978, '2021-09-05', 1636, 14430, 1443, 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 (14979, '2021-09-05', 8166, 14431, 1443, NULL, '2.0000', '4.6000', '4.6000', '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 (14980, '2021-09-05', 7806, 14432, 1443, NULL, '5.0000', '14.0000', '14.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 (14981, '2021-09-05', 7807, 14433, 1443, NULL, '1.0000', '12.0000', '12.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 (14982, '2021-09-05', 8097, 14434, 1443, NULL, '3.0000', '7.6800', '7.6800', '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 (14983, '2021-09-05', 9393, 14435, 1443, NULL, '1.0000', '15.0000', '15.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 (14984, '2021-09-05', 9394, 14436, 1443, NULL, '1.0000', '5.5000', '5.5000', '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 (14985, '2021-09-05', 9397, 14437, 1443, NULL, '1.0000', '0.5600', '0.5600', '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 (14986, '2021-09-05', 8753, 14438, 1443, NULL, '2.0000', '20.0000', '20.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 (14987, '2021-09-05', 9092, 14439, 1443, NULL, '1.0000', '5.2900', '5.2900', '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 (14988, '2021-09-05', 2104, 14440, 1443, NULL, '2.0000', '0.2000', '0.2000', '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 (14989, '2021-09-05', 9394, 14441, 1443, NULL, '1.0000', '5.5000', '5.5000', '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 (14990, '2021-09-05', 2198, 14442, 1443, 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 (14991, '2021-09-05', 9342, 14443, 1443, NULL, '1.0000', '52.0200', '52.0200', '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 (14992, '2021-09-05', 2215, 14444, 1443, 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 (14993, '2021-09-05', 7905, 14445, 1443, NULL, '1.0000', '0.7000', '0.7000', '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 (14994, '2021-09-05', 8067, 14446, 1443, NULL, '1.0000', '29.1700', '29.1700', '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 (14995, '2021-09-05', 7787, 14447, 1443, NULL, '1.0000', '3.9600', '3.9600', '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 (14996, '2021-09-05', 7448, 14448, 1443, NULL, '1.0000', '15.8500', '15.8500', '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 (14997, '2021-09-05', 8962, 14449, 1443, NULL, '1.0000', '0.1000', '0.1000', '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 (14998, '2021-09-05', 2706, 14450, 1443, 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 (14999, '2021-09-05', 1303, 14451, 1443, 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 (15000, '2021-09-05', 7411, 14452, 1443, NULL, '3.0000', '1.3500', '1.3500', '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 (15001, '2021-09-05', 2944, 14453, 1443, NULL, '1.0000', '51.9700', '51.9700', '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 (15002, '2021-09-05', 7674, 14454, 1443, NULL, '1.0000', '14.5000', '14.5000', '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 (15003, '2021-09-05', 7370, 14455, 1443, NULL, '1.0000', '27.6000', '27.6000', '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 (15004, '2021-09-05', 7532, 14456, 1443, NULL, '1.0000', '9.0500', '9.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 (15005, '2021-09-05', 7514, 14457, 1443, NULL, '2.0000', '7.8800', '7.8800', '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 (15006, '2021-09-05', 9092, 14458, 1443, NULL, '2.0000', '5.2900', '5.2900', '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 (15007, '2021-09-05', 9272, 14459, 1443, NULL, '1.0000', '3.1000', '3.1000', '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 (15008, '2021-09-05', 2384, 14460, 1443, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15009, '2021-09-05', 2277, 14461, 1443, NULL, '1.0000', '0.7800', '0.7800', '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 (15010, '2021-09-05', 7959, 14462, 1443, NULL, '1.0000', '9.6000', '9.6000', '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 (15011, '2021-09-05', 2060, 14463, 1443, 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 (15012, '2021-09-05', 8878, 14464, 1443, NULL, '1.0000', '6.6700', '6.6700', '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 (15013, '2021-09-05', 2394, 14465, 1443, 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 (15014, '2021-09-05', 8756, 14466, 1443, NULL, '1.0000', '9.5000', '9.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 (15015, '2021-09-05', 7709, 14467, 1443, NULL, '1.0000', '35.8000', '35.8000', '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 (15016, '2021-09-05', 7881, 14468, 1443, NULL, '1.0000', '32.7700', '32.7700', '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 (15017, '2021-09-05', 7672, 14469, 1443, NULL, '1.0000', '1.0200', '1.0200', '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 (15018, '2021-09-05', 7666, 14470, 1443, NULL, '1.0000', '10.0000', '10.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 (15019, '2021-09-05', 8166, 14471, 1443, NULL, '1.0000', '4.6000', '4.6000', '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 (15020, '2021-09-05', 7958, 14472, 1443, NULL, '1.0000', '13.0000', '13.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 (15021, '2021-09-05', 2303, 14473, 1444, 18854, '2.0000', '16.1000', '16.1000', '21.5000', '21.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 (15022, '2021-09-05', 2337, 14474, 1444, 18851, '1.0000', '51.0000', '51.0000', '67.5000', '67.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 (15023, '2021-09-05', 2948, 14475, 1444, NULL, '2.0000', '0.9000', '0.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 (15024, '2021-09-05', 1639, 14476, 1444, 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 (15025, '2021-09-05', 2068, 14477, 1444, 5568, '-9.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 (15026, '2021-09-05', 2068, 14477, 1444, NULL, '10.0000', '13.1000', '13.1000', '17.0000', '17.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 (15027, '2021-09-05', 1521, 14478, 1444, 22243, '1.0000', '2.5754', '2.5754', '3.5000', '3.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 (15028, '2021-09-06', 2379, 14479, 1445, NULL, '1.0000', '1.8000', '1.8000', '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 (15029, '2021-09-06', 2315, 14480, 1445, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '25.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 (15030, '2021-09-06', 2359, 14481, 1445, NULL, '2.0000', '16.2200', '16.2200', '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 (15031, '2021-09-06', 2643, 14482, 1445, 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 (15032, '2021-09-06', 2135, 14483, 1445, 23175, '1.0000', '2.5000', '2.5000', '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 (15033, '2021-09-06', 2235, 14484, 1445, 24203, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.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 (15034, '2021-09-06', 2234, 14485, 1445, 31084, '1.0000', '17.2429', '17.2429', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15035, '2021-09-06', 2277, 14486, 1445, NULL, '2.0000', '0.7800', '0.7800', '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 (15036, '2021-09-06', 1665, 14487, 1445, 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 (15037, '2021-09-06', 1577, 14488, 1445, 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 (15038, '2021-09-06', 1935, 14489, 1445, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15039, '2021-09-06', 1771, 14490, 1445, 13766, '1.0000', '3.3900', '3.3900', '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 (15040, '2021-09-06', 2643, 14491, 1445, 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 (15041, '2021-09-06', 1665, 14492, 1445, 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 (15042, '2021-09-06', 3026, 14493, 1445, 23976, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '10.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 (15043, '2021-09-06', 2293, 14494, 1445, NULL, '2.0000', '1.4400', '1.4400', '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 (15044, '2021-09-06', 2315, 14495, 1445, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '25.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 (15045, '2021-09-06', 2543, 14496, 1445, 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 (15046, '2021-09-06', 1545, 14497, 1445, 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 (15047, '2021-09-06', 2102, 14498, 1445, 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 (15048, '2021-09-06', 2941, 14499, 1445, 22601, '1.0000', '2.6600', '2.6600', '4.0000', '4.0000', '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 (15049, '2021-09-06', 2991, 14500, 1445, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '95.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 (15050, '2021-09-06', 1674, 14501, 1445, 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 (15051, '2021-09-06', 1863, 14502, 1445, NULL, '1.0000', '0.3450', '0.3450', '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 (15052, '2021-09-06', 2235, 14503, 1445, 24203, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.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 (15053, '2021-09-06', 8666, 14504, 1445, NULL, '1.0000', '0.4600', '0.4600', '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 (15054, '2021-09-06', 2712, 14505, 1445, 32551, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15055, '2021-09-06', 2263, 14506, 1445, 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 (15056, '2021-09-06', 1863, 14507, 1446, NULL, '1.0000', '0.3450', '0.3450', '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 (15057, '2021-09-06', 2994, 14508, 1446, 31961, '1.0000', '18.9320', '18.9320', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15058, '2021-09-06', 1873, 14509, 1446, 22597, '1.0000', '11.9500', '11.9500', '16.0000', '16.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 (15059, '2021-09-06', 2991, 14510, 1446, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '94.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 (15060, '2021-09-06', 1837, 14511, 1446, 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 (15061, '2021-09-06', 7765, 14512, 1446, NULL, '1.0000', '16.0000', '16.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 (15062, '2021-09-06', 1602, 14513, 1447, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15063, '2021-09-06', 2221, 14514, 1447, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (15064, '2021-09-06', 1674, 14515, 1447, 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 (15065, '2021-09-06', 1667, 14516, 1447, 24939, '1.0000', '1404.9249', '1404.9249', '8.5000', '8.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 (15066, '2021-09-06', 1953, 14517, 1447, 22377, '2.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 (15067, '2021-09-06', 1541, 14518, 1447, 23697, '1.0000', '18.7200', '18.7200', '25.0000', '25.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 (15068, '2021-09-06', 2061, 14519, 1447, NULL, '1.0000', '10.9800', '10.9800', '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 (15069, '2021-09-06', 1523, 14520, 1447, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '21.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 (15070, '2021-09-06', 1618, 14521, 1447, 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 (15071, '2021-09-06', 2272, 14522, 1447, 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 (15072, '2021-09-06', 1787, 14523, 1447, NULL, '1.0000', '0.8100', '0.8100', '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 (15073, '2021-09-06', 8309, 14524, 1448, NULL, '1.0000', '14.5000', '14.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 (15074, '2021-09-06', 2757, 14525, 1448, NULL, '1.0000', '6.8000', '6.8000', '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 (15075, '2021-09-06', 7637, 14526, 1448, 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 (15076, '2021-09-06', 7656, 14527, 1448, NULL, '1.0000', '1.8600', '1.8600', '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 (15077, '2021-09-06', 7473, 14528, 1448, NULL, '1.0000', '9.2200', '9.2200', '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 (15078, '2021-09-06', 1306, 14529, 1448, 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 (15079, '2021-09-06', 7674, 14530, 1448, NULL, '3.0000', '14.5000', '14.5000', '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 (15080, '2021-09-06', 1590, 14531, 1448, 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 (15081, '2021-09-06', 7715, 14532, 1448, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '39.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15082, '2021-09-06', 1630, 14533, 1448, NULL, '1.0000', '16.7400', '16.7400', '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 (15083, '2021-09-06', 1602, 14534, 1448, NULL, '1.0000', '6.9900', '6.9900', '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 (15084, '2021-09-06', 8868, 14535, 1448, NULL, '10.0000', '15.5000', '15.5000', '0.6000', '0.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 (15085, '2021-09-06', 7656, 14536, 1448, NULL, '1.0000', '1.8600', '1.8600', '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 (15086, '2021-09-06', 7675, 14537, 1448, NULL, '1.0000', '11.4300', '11.4300', '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 (15087, '2021-09-06', 8097, 14538, 1448, NULL, '3.0000', '7.6800', '7.6800', '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 (15088, '2021-09-06', 7558, 14539, 1448, NULL, '6.0000', '33.0200', '33.0200', '3.0000', '3.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 (15089, '2021-09-06', 7932, 14540, 1448, NULL, '1.0000', '3.3000', '3.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 (15090, '2021-09-06', 7333, 14541, 1448, 29984, '1.0000', '13.5000', '13.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15091, '2021-09-06', 2865, 14542, 1448, 31910, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15092, '2021-09-06', 2408, 14543, 1448, NULL, '1.0000', '8.6200', '8.6200', '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 (15093, '2021-09-06', 9084, 14544, 1448, 32133, '1.0000', '6.2167', '6.2167', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15094, '2021-09-06', 8770, 14545, 1448, 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 (15095, '2021-09-06', 8769, 14546, 1448, 32148, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15096, '2021-09-06', 1863, 14547, 1449, NULL, '2.0000', '0.3450', '0.3450', '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 (15097, '2021-09-06', 2169, 14548, 1449, NULL, '1.0000', '1.1300', '1.1300', '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 (15098, '2021-09-06', 1409, 14549, 1449, 24953, '1.0000', '13.0000', '13.0000', '18.0000', '18.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 (15099, '2021-09-06', 1564, 14550, 1449, NULL, '10.0000', '90.0000', '90.0000', '4.0000', '4.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 (15100, '2021-09-06', 1338, 14551, 1450, 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 (15101, '2021-09-06', 9092, 14552, 1450, NULL, '2.0000', '5.2900', '5.2900', '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 (15102, '2021-09-06', 1651, 14553, 1451, 29640, '1.0000', '7.6717', '7.6717', '10.3500', '10.3500', '6.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15103, '2021-09-06', 1602, 14554, 1451, 31092, '2.0000', '7.0310', '7.0310', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15104, '2021-09-06', 7671, 14555, 1452, NULL, '10.0000', '15.5000', '15.5000', '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 (15105, '2021-09-06', 2068, 14556, 1453, NULL, '1.0000', '12.0277', '12.0277', '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 (15106, '2021-09-06', 1501, 14557, 1453, 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 (15107, '2021-09-06', 1670, 14558, 1453, 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 (15108, '2021-09-06', 1602, 14559, 1454, 5897, '1.0000', '6.7859', '6.7859', '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 (15109, '2021-09-06', 1665, 14560, 1454, 3235, '-15.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 (15110, '2021-09-06', 1665, 14560, 1454, NULL, '16.0000', '1.3000', '1.3000', '2.0000', '2.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 (15111, '2021-09-06', 2272, 14561, 1454, 2932, '-6.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 (15112, '2021-09-06', 2272, 14561, 1454, NULL, '7.0000', '5.5000', '5.5000', '7.5000', '7.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 (15113, '2021-09-06', 2948, 14562, 1454, 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 (15114, '2021-09-06', 1374, 14563, 1454, 20626, '2.0000', '24.0076', '24.0076', '26.0000', '26.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 (15115, '2021-09-06', 2279, 14564, 1454, 2939, '-6.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 (15116, '2021-09-06', 2279, 14564, 1454, NULL, '8.0000', '2.7000', '2.7000', '4.0000', '4.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 (15117, '2021-09-06', 1687, 14565, 1454, 5785, '-3.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 (15118, '2021-09-06', 1687, 14565, 1454, NULL, '4.0000', '165.9024', '165.9024', '15.5000', '15.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 (15119, '2021-09-06', 1665, 14566, 1454, 3235, '-15.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 (15120, '2021-09-06', 1665, 14566, 1454, NULL, '16.0000', '1.3000', '1.3000', '2.0000', '2.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 (15121, '2021-09-06', 1602, 14567, 1454, 5897, '1.0000', '6.7859', '6.7859', '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 (15122, '2021-09-06', 2699, 14568, 1454, 12529, '-5.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 (15123, '2021-09-06', 2699, 14568, 1454, NULL, '6.0000', '3.0000', '3.0000', '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 (15124, '2021-09-06', 1602, 14569, 1454, 5897, '1.0000', '6.7859', '6.7859', '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 (15125, '2021-09-06', 9330, 14570, 1455, NULL, '1.0000', '11.9900', '11.9900', '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 (15126, '2021-09-06', 8000, 14571, 1455, NULL, '1.0000', '25.8200', '25.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 (15127, '2021-09-06', 7674, 14572, 1455, NULL, '1.0000', '14.5000', '14.5000', '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 (15128, '2021-09-06', 7554, 14573, 1455, NULL, '20.0000', '16.0000', '16.0000', '2.0000', '2.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 (15129, '2021-09-06', 8666, 14574, 1455, 32573, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15130, '2021-09-06', 7690, 14575, 1455, NULL, '2.0000', '5.3000', '5.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 (15131, '2021-09-06', 7448, 14576, 1455, NULL, '1.0000', '15.8500', '15.8500', '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 (15132, '2021-09-06', 7927, 14577, 1455, 30192, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15133, '2021-09-06', 7892, 14578, 1455, NULL, '1.0000', '4.2000', '4.2000', '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 (15134, '2021-09-06', 2354, 14579, 1455, 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 (15135, '2021-09-06', 7651, 14580, 1455, NULL, '1.0000', '5.0000', '5.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 (15136, '2021-09-06', 2220, 14581, 1455, NULL, '1.0000', '5.2800', '5.2800', '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 (15137, '2021-09-06', 7800, 14582, 1455, NULL, '10.0000', '0.9200', '0.9200', '7.0000', '7.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 (15138, '2021-09-06', 7400, 14583, 1455, 30027, '1.0000', '14.5300', '14.5300', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15139, '2021-09-06', 7765, 14584, 1455, NULL, '2.0000', '16.0000', '16.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 (15140, '2021-09-06', 1904, 14585, 1455, 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 (15141, '2021-09-06', 7482, 14586, 1455, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15142, '2021-09-06', 8515, 14587, 1455, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (15143, '2021-09-06', 2060, 14588, 1455, 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 (15144, '2021-09-06', 7946, 14589, 1455, NULL, '1.0000', '0.5200', '0.5200', '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 (15145, '2021-09-06', 2334, 14590, 1456, 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 (15146, '2021-09-06', 7590, 14591, 1456, NULL, '1.0000', '4.3600', '4.3600', '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 (15147, '2021-09-06', 2302, 14592, 1456, 32066, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15148, '2021-09-06', 1311, 14593, 1456, 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 (15149, '2021-09-06', 1812, 14594, 1456, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15150, '2021-09-06', 2353, 14595, 1456, 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 (15151, '2021-09-06', 8148, 14596, 1456, NULL, '1.0000', '4.5000', '4.5000', '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 (15152, '2021-09-06', 1492, 14597, 1456, 9529, '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 (15153, '2021-09-06', 9177, 14598, 1456, 31997, '10.0000', '0.8000', '0.8000', '1.2000', '1.2000', '10.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15154, '2021-09-06', 2400, 14599, 1456, 11305, '1.0000', '12.5000', '12.5000', '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 (15155, '2021-09-06', 2038, 14600, 1456, 18359, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15156, '2021-09-06', 8666, 14601, 1456, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15157, '2021-09-06', 8476, 14602, 1456, NULL, '6.0000', '23.0000', '23.0000', '0.6000', '0.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 (15158, '2021-09-06', 8666, 14603, 1456, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15159, '2021-09-06', 1863, 14604, 1456, 31984, '1.0000', '1.0638', '1.0638', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15160, '2021-09-06', 1807, 14605, 1456, 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 (15161, '2021-09-06', 2165, 14606, 1456, 4405, '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 (15162, '2021-09-06', 2302, 14607, 1456, 32066, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15163, '2021-09-06', 2458, 14608, 1456, 4829, '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 (15164, '2021-09-06', 2009, 14609, 1456, 6436, '1.0000', '18.0000', '18.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 (15165, '2021-09-06', 1672, 14610, 1456, 24288, '4.0000', '44.6198', '44.6198', '4.0000', '4.0000', '0.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 (15166, '2021-09-06', 1672, 14610, 1456, 17045, '6.0000', '44.6198', '44.6198', '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 (15167, '2021-09-06', 1347, 14611, 1456, 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 (15168, '2021-09-06', 1787, 14612, 1456, 4930, '1.0000', '0.8100', '0.8100', '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 (15169, '2021-09-06', 1837, 14613, 1456, 31714, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15170, '2021-09-06', 2302, 14614, 1456, 32066, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15171, '2021-09-06', 2682, 14615, 1456, 24010, '1.0000', '19.3000', '19.3000', '25.5000', '25.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 (15172, '2021-09-06', 2730, 14616, 1456, 21547, '2.0000', '1.2000', '1.2000', '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 (15173, '2021-09-06', 2062, 14617, 1456, 2178, '1.0000', '5.8900', '5.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 (15174, '2021-09-06', 2086, 14618, 1456, 9423, '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 (15175, '2021-09-06', 2730, 14619, 1456, 21547, '2.0000', '1.2000', '1.2000', '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 (15176, '2021-09-06', 7688, 14620, 1456, NULL, '1.0000', '13.3400', '13.3400', '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 (15177, '2021-09-06', 2991, 14621, 1456, NULL, '1.0000', '0.5700', '0.5700', '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 (15178, '2021-09-06', 1837, 14622, 1456, 31714, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15179, '2021-09-06', 7518, 14623, 1456, NULL, '1.0000', '5.1300', '5.1300', '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 (15180, '2021-09-06', 1935, 14624, 1456, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15181, '2021-09-06', 2712, 14625, 1456, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15182, '2021-09-06', 8519, 14626, 1456, NULL, '12.0000', '4.6700', '4.6700', '3.7000', '3.7000', '-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 (15183, '2021-09-06', 7364, 14627, 1456, NULL, '4.0000', '5.5300', '5.5300', '3.7000', '3.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 (15184, '2021-09-06', 9467, 14628, 1457, 31913, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15185, '2021-09-06', 7423, 14629, 1457, NULL, '1.0000', '7.3200', '7.3200', '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 (15186, '2021-09-06', 2411, 14630, 1457, 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 (15187, '2021-09-06', 7983, 14631, 1457, NULL, '1.0000', '42.5100', '42.5100', '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 (15188, '2021-09-06', 1965, 14632, 1457, NULL, '1.0000', '17.2400', '17.2400', '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 (15189, '2021-09-06', 7778, 14633, 1457, NULL, '1.0000', '13.0100', '13.0100', '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 (15190, '2021-09-06', 7457, 14634, 1457, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15191, '2021-09-06', 8318, 14635, 1457, NULL, '2.0000', '5.5000', '5.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 (15192, '2021-09-06', 9329, 14636, 1457, 30177, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15193, '2021-09-06', 9092, 14637, 1457, NULL, '1.0000', '5.2900', '5.2900', '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 (15194, '2021-09-06', 2220, 14638, 1457, NULL, '1.0000', '5.2800', '5.2800', '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 (15195, '2021-09-06', 7922, 14639, 1457, NULL, '1.0000', '6.9800', '6.9800', '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 (15196, '2021-09-06', 1946, 14640, 1457, 30223, '1.0000', '1.5500', '1.5500', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15197, '2021-09-06', 1880, 14641, 1457, 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 (15198, '2021-09-06', 7522, 14642, 1457, NULL, '1.0000', '5.2000', '5.2000', '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 (15199, '2021-09-06', 8061, 14643, 1457, NULL, '1.0000', '1.6000', '1.6000', '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 (15200, '2021-09-06', 8324, 14644, 1457, 31660, '1.0000', '3.4130', '3.4130', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15201, '2021-09-06', 7781, 14645, 1457, NULL, '1.0000', '4.2500', '4.2500', '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 (15202, '2021-09-06', 7551, 14646, 1457, NULL, '1.0000', '1.2700', '1.2700', '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 (15203, '2021-09-06', 7709, 14647, 1457, NULL, '2.0000', '35.8000', '35.8000', '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 (15204, '2021-09-06', 7478, 14648, 1457, 30207, '4.0000', '4.0000', '4.0000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15205, '2021-09-06', 2060, 14649, 1457, 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 (15206, '2021-09-06', 8200, 14650, 1457, NULL, '2.0000', '8.5500', '8.5500', '8.5000', '8.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 (15207, '2021-09-06', 7482, 14651, 1457, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15208, '2021-09-06', 7592, 14652, 1457, NULL, '1.0000', '8.6500', '8.6500', '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 (15209, '2021-09-06', 2104, 14653, 1457, NULL, '4.0000', '0.2000', '0.2000', '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 (15210, '2021-09-06', 7518, 14654, 1457, NULL, '1.0000', '-21.7700', '-21.7700', '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 (15211, '2021-09-06', 7711, 14655, 1457, NULL, '1.0000', '0.3900', '0.3900', '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 (15212, '2021-09-06', 8000, 14656, 1457, NULL, '1.0000', '25.8200', '25.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 (15213, '2021-09-06', 7641, 14657, 1457, NULL, '1.0000', '1.9000', '1.9000', '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 (15214, '2021-09-06', 9388, 14658, 1457, NULL, '3.0000', '1.1400', '1.1400', '7.0000', '7.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 (15215, '2021-09-06', 7610, 14659, 1457, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15216, '2021-09-06', 7518, 14660, 1457, NULL, '1.0000', '-21.7700', '-21.7700', '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 (15217, '2021-09-06', 2102, 14661, 1457, 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 (15218, '2021-09-06', 8430, 14662, 1457, NULL, '1.0000', '26.4635', '26.4635', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15219, '2021-09-06', 8666, 14663, 1457, 32573, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15220, '2021-09-06', 1703, 14664, 1457, NULL, '1.0000', '7.5900', '7.5900', '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 (15221, '2021-09-06', 1346, 14665, 1457, NULL, '3.0000', '0.9300', '0.9300', '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 (15222, '2021-09-06', 9241, 14666, 1457, NULL, '1.0000', '20.5000', '20.5000', '59.0000', '59.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15223, '2021-09-06', 7411, 14667, 1457, NULL, '1.0000', '1.3500', '1.3500', '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 (15224, '2021-09-06', 7697, 14668, 1457, NULL, '1.0000', '5.0000', '5.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 (15225, '2021-09-06', 7954, 14669, 1457, NULL, '4.0000', '21.0000', '21.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 (15226, '2021-09-06', 7412, 14670, 1457, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15227, '2021-09-06', 1481, 14671, 1457, 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 (15228, '2021-09-06', 2655, 14672, 1457, 32568, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15229, '2021-09-06', 8657, 14673, 1457, NULL, '1.0000', '7.6000', '7.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 (15230, '2021-09-06', 7920, 14674, 1457, NULL, '2.0000', '4.0000', '4.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 (15231, '2021-09-06', 7491, 14675, 1457, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15232, '2021-09-06', 9456, 14676, 1457, 30936, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15233, '2021-09-06', 1758, 14677, 1457, NULL, '1.0000', '42.0000', '42.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 (15234, '2021-09-06', 9452, 14678, 1457, 30996, '1.0000', '58.0000', '58.0000', '76.0000', '76.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15235, '2021-09-06', 8940, 14679, 1457, NULL, '1.0000', '4.9900', '4.9900', '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 (15236, '2021-09-06', 8038, 14680, 1457, NULL, '1.0000', '10.0000', '10.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 (15237, '2021-09-06', 8594, 14681, 1457, 32574, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15238, '2021-09-06', 7871, 14682, 1457, NULL, '7.0000', '6.0000', '6.0000', '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 (15239, '2021-09-06', 7947, 14683, 1457, NULL, '1.0000', '14.4400', '14.4400', '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 (15240, '2021-09-06', 2655, 14684, 1457, 32568, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15241, '2021-09-06', 9452, 14685, 1457, 30996, '1.0000', '58.0000', '58.0000', '76.0000', '76.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15242, '2021-09-06', 1637, 14686, 1458, 32071, '1.0000', '64.1221', '64.1221', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15243, '2021-09-06', 1756, 14687, 1458, 6779, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '14.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 (15244, '2021-09-06', 8262, 14688, 1458, NULL, '1.0000', '17.0000', '17.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 (15245, '2021-09-06', 2003, 14689, 1458, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15246, '2021-09-06', 2995, 14690, 1458, 22626, '1.0000', '39.7000', '39.7000', '17.5000', '17.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 (15247, '2021-09-06', 2995, 14690, 1458, NULL, '2.0000', '39.7000', '39.7000', '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 (15248, '2021-09-06', 2221, 14691, 1458, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.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 (15249, '2021-09-06', 1306, 14692, 1458, NULL, '3.0000', '2.1000', '2.1000', '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 (15250, '2021-09-06', 1837, 14693, 1458, 31714, '4.0000', '0.5500', '0.5500', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15251, '2021-09-06', 2073, 14694, 1458, 31995, '2.0000', '2.3000', '2.3000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15252, '2021-09-06', 1523, 14695, 1458, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '36.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 (15253, '2021-09-06', 1900, 14696, 1458, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '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 (15254, '2021-09-06', 2261, 14697, 1458, 31715, '1.0000', '18.9900', '18.9900', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15255, '2021-09-06', 1411, 14698, 1458, 32002, '1.0000', '26.4199', '26.4199', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15256, '2021-09-06', 2015, 14699, 1458, 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 (15257, '2021-09-06', 1502, 14700, 1458, 1505, '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 (15258, '2021-09-06', 1523, 14701, 1458, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '36.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 (15259, '2021-09-07', 1523, 14702, 1459, 24139, '2.0000', '1.0061', '1.0061', '5.0000', '5.0000', '19.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 (15260, '2021-09-07', 8774, 14703, 1459, NULL, '1.0000', '8.0000', '8.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 (15261, '2021-09-07', 1519, 14704, 1459, 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 (15262, '2021-09-07', 2167, 14705, 1459, 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 (15263, '2021-09-07', 2699, 14706, 1459, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15264, '2021-09-07', 1371, 14707, 1459, 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 (15265, '2021-09-07', 2252, 14708, 1459, 24920, '1.0000', '10.0900', '10.0900', '13.5000', '13.5000', '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 (15266, '2021-09-07', 2346, 14709, 1459, NULL, '1.0000', '5.5000', '5.5000', '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 (15267, '2021-09-07', 1760, 14710, 1459, 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 (15268, '2021-09-07', 1812, 14711, 1459, 29639, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15269, '2021-09-07', 2289, 14712, 1459, 13744, '1.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 (15270, '2021-09-07', 1841, 14713, 1459, 31077, '1.0000', '0.2968', '0.2968', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15271, '2021-09-07', 1339, 14714, 1459, 32530, '1.0000', '0.3390', '0.3390', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15272, '2021-09-07', 8171, 14715, 1459, NULL, '1.0000', '3.9900', '3.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 (15273, '2021-09-07', 7530, 14716, 1459, 31110, '1.0000', '5.7200', '5.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15274, '2021-09-07', 1782, 14717, 1459, 19339, '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 (15275, '2021-09-07', 2712, 14718, 1459, 32551, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '17.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15276, '2021-09-07', 8454, 14719, 1460, NULL, '1.0000', '5.1700', '5.1700', '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 (15277, '2021-09-07', 2315, 14720, 1460, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '21.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 (15278, '2021-09-07', 2412, 14721, 1460, NULL, '10.0000', '0.5200', '0.5200', '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 (15279, '2021-09-07', 2109, 14722, 1460, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '34.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 (15280, '2021-09-07', 2288, 14723, 1461, 23684, '1.0000', '7.8600', '7.8600', '11.0000', '11.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 (15281, '2021-09-07', 2294, 14724, 1461, 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 (15282, '2021-09-07', 1772, 14725, 1461, 30665, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15283, '2021-09-07', 7331, 14726, 1462, 29982, '1.0000', '4.0000', '4.0000', '27.0000', '27.0000', '37.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15284, '2021-09-07', 7709, 14727, 1462, NULL, '1.0000', '35.8000', '35.8000', '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 (15285, '2021-09-07', 7509, 14728, 1462, 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 (15286, '2021-09-07', 7411, 14729, 1462, NULL, '1.0000', '1.3500', '1.3500', '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 (15287, '2021-09-07', 7415, 14730, 1462, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15288, '2021-09-07', 7674, 14731, 1462, NULL, '1.0000', '14.5000', '14.5000', '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 (15289, '2021-09-07', 8063, 14732, 1462, NULL, '2.0000', '28.5000', '28.5000', '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 (15290, '2021-09-07', 8596, 14733, 1462, NULL, '3.0000', '17.0000', '17.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 (15291, '2021-09-07', 8324, 14734, 1462, 31660, '1.0000', '3.4130', '3.4130', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15292, '2021-09-07', 7385, 14735, 1462, NULL, '3.0000', '12.5000', '12.5000', '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 (15293, '2021-09-07', 7784, 14736, 1462, NULL, '2.0000', '7.4600', '7.4600', '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 (15294, '2021-09-07', 8411, 14737, 1462, 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 (15295, '2021-09-07', 7946, 14738, 1462, NULL, '1.0000', '0.5200', '0.5200', '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 (15296, '2021-09-07', 1708, 14739, 1462, 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 (15297, '2021-09-07', 1758, 14740, 1462, NULL, '1.0000', '42.0000', '42.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 (15298, '2021-09-07', 9213, 14741, 1462, 32137, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15299, '2021-09-07', 8276, 14742, 1462, NULL, '1.0000', '4.7300', '4.7300', '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 (15300, '2021-09-07', 9092, 14743, 1462, NULL, '12.0000', '5.2900', '5.2900', '0.5000', '0.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 (15301, '2021-09-07', 1751, 14744, 1462, NULL, '1.0000', '3.6900', '3.6900', '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 (15302, '2021-09-07', 8097, 14745, 1462, NULL, '2.0000', '7.6800', '7.6800', '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 (15303, '2021-09-07', 1578, 14746, 1462, 30219, '2.0000', '1.9700', '1.9700', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15304, '2021-09-07', 9480, 14747, 1462, 32564, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15305, '2021-09-07', 7548, 14748, 1462, NULL, '4.0000', '0.3400', '0.3400', '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 (15306, '2021-09-07', 1872, 14749, 1462, 30196, '2.0000', '9.7600', '9.7600', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15307, '2021-09-07', 8769, 14750, 1462, 32148, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15308, '2021-09-07', 7531, 14751, 1462, NULL, '3.0000', '16.5000', '16.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 (15309, '2021-09-07', 7802, 14752, 1462, NULL, '3.0000', '0.9200', '0.9200', '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 (15310, '2021-09-07', 8889, 14753, 1462, 31654, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '4.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15311, '2021-09-07', 9098, 14754, 1462, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15312, '2021-09-07', 9092, 14755, 1462, NULL, '8.0000', '5.2900', '5.2900', '0.5000', '0.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 (15313, '2021-09-07', 7658, 14756, 1462, NULL, '10.0000', '10.1500', '10.1500', '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 (15314, '2021-09-07', 7341, 14757, 1462, 30145, '1.0000', '48.0200', '48.0200', '63.5000', '63.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15315, '2021-09-07', 7558, 14758, 1462, NULL, '15.0000', '33.0200', '33.0200', '3.0000', '3.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 (15316, '2021-09-07', 7905, 14759, 1462, NULL, '2.0000', '0.7000', '0.7000', '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 (15317, '2021-09-07', 7802, 14760, 1462, NULL, '3.0000', '0.9200', '0.9200', '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 (15318, '2021-09-07', 7781, 14761, 1462, NULL, '3.0000', '4.2500', '4.2500', '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 (15319, '2021-09-07', 7411, 14762, 1462, NULL, '1.0000', '1.3500', '1.3500', '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 (15320, '2021-09-07', 8769, 14763, 1463, 32148, '2.0000', '6.6000', '6.6000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15321, '2021-09-07', 7672, 14764, 1463, NULL, '1.0000', '1.0200', '1.0200', '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 (15322, '2021-09-07', 1765, 14765, 1463, 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 (15323, '2021-09-07', 1337, 14766, 1463, 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 (15324, '2021-09-07', 9092, 14767, 1463, NULL, '2.0000', '5.2900', '5.2900', '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 (15325, '2021-09-07', 1670, 14768, 1463, 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 (15326, '2021-09-07', 8279, 14769, 1463, NULL, '1.0000', '7.0000', '7.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 (15327, '2021-09-07', 2660, 14770, 1464, 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 (15328, '2021-09-07', 2660, 14771, 1464, 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 (15329, '2021-09-07', 1667, 14772, 1464, 9745, '-8.0000', '5.9400', '5.9400', '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 (15330, '2021-09-07', 1667, 14772, 1464, NULL, '9.0000', '5.9400', '5.9400', '8.5000', '8.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 (15331, '2021-09-07', 1666, 14773, 1464, 3236, '-11.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 (15332, '2021-09-07', 1666, 14773, 1464, NULL, '12.0000', '2.7100', '2.7100', '3.5000', '3.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 (15333, '2021-09-07', 1602, 14774, 1464, 5897, '1.0000', '6.7859', '6.7859', '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 (15334, '2021-09-07', 2073, 14775, 1464, 22247, '5.0000', '2.3000', '2.3000', '3.0000', '3.0000', '20.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 (15335, '2021-09-07', 1702, 14776, 1464, 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 (15336, '2021-09-07', 1702, 14776, 1464, 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 (15337, '2021-09-07', 2656, 14777, 1464, 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 (15338, '2021-09-07', 9443, 14778, 1464, NULL, '1.0000', '30.0000', '30.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 (15339, '2021-09-07', 2556, 14779, 1464, 7196, '-19.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 (15340, '2021-09-07', 2556, 14779, 1464, NULL, '20.0000', '0.5800', '0.5800', '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 (15341, '2021-09-07', 1573, 14780, 1464, 436, '1.0000', '29.9042', '29.9042', '32.5000', '32.5000', '0.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 (15342, '2021-09-07', 1523, 14781, 1465, 24139, '2.0000', '1.0061', '1.0061', '5.0000', '5.0000', '17.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 (15343, '2021-09-07', 1663, 14782, 1465, 19372, '1.0000', '90.0000', '90.0000', '129.0000', '129.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15344, '2021-09-07', 2643, 14783, 1465, 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 (15345, '2021-09-07', 9440, 14784, 1465, 30482, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15346, '2021-09-07', 8622, 14785, 1465, NULL, '1.0000', '10.0000', '10.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 (15347, '2021-09-07', 2989, 14786, 1465, 22602, '2.0000', '0.9200', '0.9200', '1.0000', '1.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 (15348, '2021-09-07', 2275, 14787, 1465, 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 (15349, '2021-09-07', 3018, 14788, 1465, 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 (15350, '2021-09-07', 1523, 14789, 1465, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '18.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 (15351, '2021-09-07', 1532, 14790, 1465, 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 (15352, '2021-09-07', 7412, 14791, 1465, NULL, '1.0000', '1.5200', '1.5200', '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 (15353, '2021-09-07', 8057, 14792, 1465, NULL, '2.0000', '6.0000', '6.0000', '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 (15354, '2021-09-07', 2169, 14793, 1465, NULL, '1.0000', '1.1300', '1.1300', '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 (15355, '2021-09-07', 2221, 14794, 1465, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (15356, '2021-09-07', 8288, 14795, 1465, NULL, '10.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (15357, '2021-09-07', 3072, 14796, 1465, 25157, '1.0000', '14.0000', '14.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 (15358, '2021-09-07', 2284, 14797, 1465, 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 (15359, '2021-09-07', 2237, 14798, 1465, 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 (15360, '2021-09-07', 1342, 14799, 1465, 22390, '1.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 (15361, '2021-09-07', 1819, 14800, 1465, NULL, '1.0000', '5.5000', '5.5000', '7.1700', '7.1700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15362, '2021-09-07', 7468, 14801, 1465, NULL, '10.0000', '11.5000', '11.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 (15363, '2021-09-07', 1311, 14802, 1465, 22366, '3.0000', '0.3700', '0.3700', '0.5000', '0.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 (15364, '2021-09-07', 1519, 14803, 1465, 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 (15365, '2021-09-07', 1863, 14804, 1465, NULL, '1.0000', '0.3450', '0.3450', '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 (15366, '2021-09-07', 2287, 14805, 1465, 29630, '1.0000', '1.1700', '1.1700', '3.0000', '3.0000', '99.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15367, '2021-09-07', 1805, 14806, 1465, 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 (15368, '2021-09-07', 1519, 14807, 1465, 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 (15369, '2021-09-07', 1863, 14808, 1465, NULL, '1.0000', '0.3450', '0.3450', '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 (15370, '2021-09-07', 7802, 14809, 1465, NULL, '1.0000', '0.9200', '0.9200', '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 (15371, '2021-09-07', 1622, 14810, 1466, 14599, '2.0000', '90.0000', '90.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 (15372, '2021-09-07', 1618, 14811, 1466, 17040, '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 (15373, '2021-09-07', 1578, 14812, 1466, 9447, '1.0000', '1.9700', '1.9700', '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 (15374, '2021-09-07', 1689, 14813, 1466, 32070, '1.0000', '12.3486', '12.3486', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15375, '2021-09-07', 2320, 14814, 1466, 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 (15376, '2021-09-07', 7506, 14815, 1466, NULL, '1.0000', '15.0000', '15.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 (15377, '2021-09-07', 2169, 14816, 1466, 32068, '2.0000', '0.9812', '0.9812', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15378, '2021-09-07', 1406, 14817, 1466, 18708, '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 (15379, '2021-09-07', 7814, 14818, 1466, NULL, '1.0000', '13.0000', '13.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 (15380, '2021-09-07', 7657, 14819, 1466, NULL, '1.0000', '5.4700', '5.4700', '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 (15381, '2021-09-07', 1411, 14820, 1466, 2343, '1.0000', '26.4199', '26.4199', '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 (15382, '2021-09-07', 1871, 14821, 1466, 24281, '10.0000', '57.2051', '57.2051', '3.0000', '3.0000', '40.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 (15383, '2021-09-07', 2285, 14822, 1466, 32021, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15384, '2021-09-07', 7380, 14823, 1466, NULL, '3.0000', '5.6200', '5.6200', '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 (15385, '2021-09-07', 2556, 14824, 1466, 7199, '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 (15386, '2021-09-07', 2522, 14825, 1466, 7523, '1.0000', '4.8000', '4.8000', '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 (15387, '2021-09-07', 1744, 14826, 1466, 31968, '1.0000', '60.6101', '60.6101', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15388, '2021-09-07', 2712, 14827, 1466, 32596, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '79.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15389, '2021-09-07', 1667, 14828, 1466, 31704, '1.0000', '70.9201', '70.9201', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15390, '2021-09-07', 2237, 14829, 1466, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '21.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 (15391, '2021-09-07', 1620, 14830, 1466, 29796, '4.0000', '13.9038', '13.9038', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15392, '2021-09-07', 2037, 14831, 1466, 18355, '1.0000', '10.0000', '10.0000', '14.0000', '14.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 (15393, '2021-09-07', 2059, 14832, 1466, 32582, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15394, '2021-09-07', 2422, 14833, 1466, 21825, '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 (15395, '2021-09-07', 8745, 14834, 1466, 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 (15396, '2021-09-07', 7772, 14835, 1466, NULL, '1.0000', '2.5000', '2.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 (15397, '2021-09-07', 2497, 14836, 1466, NULL, '1.0000', '31.2000', '31.2000', '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 (15398, '2021-09-07', 1347, 14837, 1466, 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 (15399, '2021-09-07', 1863, 14838, 1466, 31984, '2.0000', '1.0638', '1.0638', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15400, '2021-09-07', 8497, 14839, 1466, 32254, '1.0000', '28.0000', '28.0000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15401, '2021-09-07', 8164, 14840, 1466, NULL, '1.0000', '3.1200', '3.1200', '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 (15402, '2021-09-07', 1530, 14841, 1466, 23619, '1.0000', '80.6158', '80.6158', '38.0000', '38.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 (15403, '2021-09-07', 1935, 14842, 1466, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15404, '2021-09-07', 2354, 14843, 1466, 3905, '1.0000', '4.6000', '4.6000', '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 (15405, '2021-09-07', 1856, 14844, 1467, 23622, '1.0000', '4.2500', '4.2500', '6.0000', '6.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 (15406, '2021-09-07', 2251, 14845, 1467, 24341, '1.0000', '11.7654', '11.7654', '16.0000', '16.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 (15407, '2021-09-07', 2263, 14846, 1467, 9567, '1.0000', '4.9800', '4.9800', '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 (15408, '2021-09-07', 1992, 14847, 1467, 31693, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15409, '2021-09-07', 2315, 14848, 1467, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '293.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15410, '2021-09-07', 2821, 14849, 1467, 17043, '1.0000', '3.5100', '3.5100', '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 (15411, '2021-09-07', 2655, 14850, 1467, 32589, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15412, '2021-09-07', 2713, 14851, 1467, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15413, '2021-09-07', 2491, 14852, 1467, NULL, '1.0000', '12.2000', '12.2000', '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 (15414, '2021-09-07', 1818, 14853, 1467, 32056, '1.0000', '18.8200', '18.8200', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15415, '2021-09-07', 2251, 14854, 1467, 24341, '1.0000', '11.7654', '11.7654', '16.0000', '16.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 (15416, '2021-09-07', 7825, 14855, 1467, NULL, '1.0000', '6.5000', '6.5000', '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 (15417, '2021-09-07', 3047, 14856, 1467, 24276, '1.0000', '52.0200', '52.0200', '69.0000', '69.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 (15418, '2021-09-07', 3047, 14857, 1467, 24276, '1.0000', '52.0200', '52.0200', '69.0000', '69.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 (15419, '2021-09-07', 2656, 14858, 1467, 32590, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15420, '2021-09-07', 1713, 14859, 1467, 9480, '1.0000', '15.1700', '15.1700', '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 (15421, '2021-09-07', 2331, 14860, 1467, 12385, '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 (15422, '2021-09-07', 1812, 14861, 1467, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15423, '2021-09-07', 1774, 14862, 1467, 4814, '28.0000', '3.3000', '3.3000', '4.3000', '4.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 (15424, '2021-09-07', 1787, 14863, 1467, 4930, '1.0000', '0.8100', '0.8100', '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 (15425, '2021-09-07', 2167, 14864, 1467, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15426, '2021-09-07', 2411, 14865, 1468, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '13.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 (15427, '2021-09-07', 2169, 14866, 1468, 32068, '1.0000', '0.9812', '0.9812', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15428, '2021-09-07', 1499, 14867, 1468, 31996, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '43.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15429, '2021-09-07', 1637, 14868, 1468, 32071, '1.0000', '64.1221', '64.1221', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15430, '2021-09-07', 2459, 14869, 1468, 24004, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.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 (15431, '2021-09-07', 7922, 14870, 1468, NULL, '1.0000', '6.9800', '6.9800', '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 (15432, '2021-09-07', 1851, 14871, 1468, 32008, '1.0000', '13.4348', '13.4348', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15433, '2021-09-07', 2916, 14872, 1468, 32030, '1.0000', '12.5089', '12.5089', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15434, '2021-09-07', 7640, 14873, 1468, NULL, '1.0000', '5.8900', '5.8900', '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 (15435, '2021-09-07', 2712, 14874, 1468, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15436, '2021-09-07', 7519, 14875, 1469, NULL, '1.0000', '0.8800', '0.8800', '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 (15437, '2021-09-07', 7853, 14876, 1469, NULL, '1.0000', '35.0000', '35.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 (15438, '2021-09-07', 8200, 14877, 1469, NULL, '1.0000', '8.5500', '8.5500', '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 (15439, '2021-09-07', 3001, 14878, 1469, NULL, '9.0000', '1.5000', '1.5000', '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 (15440, '2021-09-07', 7514, 14879, 1469, NULL, '1.0000', '7.8800', '7.8800', '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 (15441, '2021-09-07', 8430, 14880, 1469, NULL, '1.0000', '26.4635', '26.4635', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15442, '2021-09-07', 1670, 14881, 1469, 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 (15443, '2021-09-07', 8722, 14882, 1469, 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 (15444, '2021-09-07', 1947, 14883, 1469, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15445, '2021-09-07', 7444, 14884, 1469, 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 (15446, '2021-09-07', 7428, 14885, 1469, NULL, '5.0000', '744.9056', '744.9056', '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 (15447, '2021-09-07', 8188, 14886, 1469, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15448, '2021-09-07', 7473, 14887, 1469, NULL, '1.0000', '9.2200', '9.2200', '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 (15449, '2021-09-07', 7674, 14888, 1469, NULL, '1.0000', '14.5000', '14.5000', '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 (15450, '2021-09-07', 8900, 14889, 1469, NULL, '1.0000', '16.4000', '16.4000', '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 (15451, '2021-09-07', 8878, 14890, 1469, NULL, '1.0000', '6.6700', '6.6700', '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 (15452, '2021-09-07', 8328, 14891, 1469, NULL, '1.0000', '32.2000', '32.2000', '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 (15453, '2021-09-07', 7952, 14892, 1469, NULL, '1.0000', '1.4000', '1.4000', '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 (15454, '2021-09-07', 2283, 14893, 1469, 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 (15455, '2021-09-07', 9145, 14894, 1469, NULL, '1.0000', '9.0000', '9.0000', '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 (15456, '2021-09-07', 7675, 14895, 1469, NULL, '1.0000', '11.4300', '11.4300', '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 (15457, '2021-09-07', 7593, 14896, 1469, NULL, '1.0000', '2.4500', '2.4500', '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 (15458, '2021-09-07', 1947, 14897, 1469, 30993, '1.0000', '1250.5815', '1250.5815', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15459, '2021-09-07', 1807, 14898, 1469, NULL, '9.0000', '41.5000', '41.5000', '2.5000', '2.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 (15460, '2021-09-07', 1837, 14899, 1469, 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 (15461, '2021-09-07', 7477, 14900, 1469, NULL, '3.0000', '60.0000', '60.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 (15462, '2021-09-07', 9261, 14901, 1469, NULL, '1.0000', '10.0000', '10.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 (15463, '2021-09-07', 7710, 14902, 1469, NULL, '2.0000', '26.0000', '26.0000', '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 (15464, '2021-09-07', 9474, 14903, 1469, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15465, '2021-09-07', 8525, 14904, 1469, NULL, '1.0000', '18.9500', '18.9500', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15466, '2021-09-07', 7737, 14905, 1469, NULL, '1.0000', '3.0000', '3.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 (15467, '2021-09-07', 8166, 14906, 1469, NULL, '1.0000', '4.6000', '4.6000', '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 (15468, '2021-09-07', 8401, 14907, 1469, NULL, '1.0000', '23.1600', '23.1600', '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 (15469, '2021-09-07', 8059, 14908, 1469, 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 (15470, '2021-09-07', 7392, 14909, 1469, 30020, '2.0000', '0.5000', '0.5000', '24.0000', '24.0000', '18.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15471, '2021-09-07', 7514, 14910, 1469, NULL, '1.0000', '7.8800', '7.8800', '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 (15472, '2021-09-07', 7892, 14911, 1469, NULL, '1.0000', '4.2000', '4.2000', '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 (15473, '2021-09-07', 8702, 14912, 1469, NULL, '1.0000', '3.6700', '3.6700', '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 (15474, '2021-09-07', 7370, 14913, 1469, NULL, '1.0000', '27.6000', '27.6000', '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 (15475, '2021-09-07', 7848, 14914, 1469, NULL, '1.0000', '1.3500', '1.3500', '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 (15476, '2021-09-07', 8247, 14915, 1469, NULL, '1.0000', '10.0000', '10.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 (15477, '2021-09-07', 7674, 14916, 1469, NULL, '1.0000', '14.5000', '14.5000', '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 (15478, '2021-09-07', 8308, 14917, 1469, NULL, '1.0000', '11.0000', '11.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 (15479, '2021-09-07', 8497, 14918, 1469, NULL, '1.0000', '28.0000', '28.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 (15480, '2021-09-07', 3018, 14919, 1469, 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 (15481, '2021-09-07', 7518, 14920, 1469, NULL, '1.0000', '-21.7700', '-21.7700', '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 (15482, '2021-09-07', 8518, 14921, 1469, NULL, '1.0000', '17.6400', '17.6400', '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 (15483, '2021-09-07', 8720, 14922, 1469, NULL, '1.0000', '19.5000', '19.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 (15484, '2021-09-07', 8204, 14923, 1469, NULL, '2.0000', '10.0000', '10.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 (15485, '2021-09-07', 7428, 14924, 1469, NULL, '2.0000', '744.9056', '744.9056', '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 (15486, '2021-09-07', 8166, 14925, 1469, NULL, '1.0000', '4.6000', '4.6000', '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 (15487, '2021-09-07', 7575, 14926, 1469, NULL, '1.0000', '28.3200', '28.3200', '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 (15488, '2021-09-07', 7411, 14927, 1469, NULL, '1.0000', '1.3500', '1.3500', '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 (15489, '2021-09-07', 7428, 14928, 1469, NULL, '2.0000', '744.9056', '744.9056', '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 (15490, '2021-09-07', 9092, 14929, 1469, NULL, '5.0000', '5.2900', '5.2900', '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 (15491, '2021-09-07', 7612, 14930, 1469, NULL, '1.0000', '46.0000', '46.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 (15492, '2021-09-07', 7427, 14931, 1469, 30042, '1.0000', '3.4000', '3.4000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15493, '2021-09-07', 7774, 14932, 1469, NULL, '1.0000', '3.5000', '3.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 (15494, '2021-09-07', 7610, 14933, 1469, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15495, '2021-09-07', 7680, 14934, 1469, NULL, '1.0000', '7.4000', '7.4000', '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 (15496, '2021-09-07', 2461, 14935, 1469, 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 (15497, '2021-09-07', 7518, 14936, 1469, NULL, '1.0000', '-21.7700', '-21.7700', '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 (15498, '2021-09-07', 8756, 14937, 1469, 32572, '1.0000', '8.1112', '8.1112', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15499, '2021-09-07', 7431, 14938, 1469, 30047, '1.0000', '4.6500', '4.6500', '24.0000', '24.0000', '13.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15500, '2021-09-07', 7612, 14939, 1469, NULL, '1.0000', '46.0000', '46.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 (15501, '2021-09-07', 7680, 14940, 1469, NULL, '1.0000', '7.4000', '7.4000', '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 (15502, '2021-09-07', 1542, 14941, 1469, 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 (15503, '2021-09-07', 7392, 14942, 1469, 30020, '1.0000', '0.5000', '0.5000', '24.0000', '24.0000', '19.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15504, '2021-09-07', 7720, 14943, 1469, 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 (15505, '2021-09-07', 7675, 14944, 1469, NULL, '1.0000', '11.4300', '11.4300', '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 (15506, '2021-09-07', 7658, 14945, 1469, NULL, '4.0000', '10.1500', '10.1500', '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 (15507, '2021-09-07', 9098, 14946, 1470, NULL, '2.0000', '25.0000', '25.0000', '34.5000', '34.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 (15508, '2021-09-07', 1828, 14947, 1470, 19854, '28.0000', '0.7300', '0.7300', '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 (15509, '2021-09-07', 1828, 14947, 1470, 19855, '2.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 (15510, '2021-09-07', 2650, 14948, 1470, 31112, '1.0000', '7.9860', '7.9860', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15511, '2021-09-07', 1519, 14949, 1470, 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 (15512, '2021-09-07', 1863, 14950, 1470, NULL, '1.0000', '0.3450', '0.3450', '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 (15513, '2021-09-07', 2277, 14951, 1470, NULL, '1.0000', '0.7800', '0.7800', '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 (15514, '2021-09-07', 8666, 14952, 1470, NULL, '1.0000', '0.4600', '0.4600', '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 (15515, '2021-09-07', 2327, 14953, 1470, 23984, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '17.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 (15516, '2021-09-07', 7334, 14954, 1470, NULL, '2.0000', '8.1600', '8.1600', '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 (15517, '2021-09-07', 7954, 14955, 1470, NULL, '1.0000', '21.0000', '21.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 (15518, '2021-09-07', 2951, 14956, 1470, 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 (15519, '2021-09-07', 7524, 14957, 1470, NULL, '1.0000', '11.9500', '11.9500', '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 (15520, '2021-09-07', 2740, 14958, 1470, 19346, '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 (15521, '2021-09-07', 2293, 14959, 1470, NULL, '5.0000', '1.4400', '1.4400', '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 (15522, '2021-09-07', 7411, 14960, 1470, NULL, '5.0000', '1.3500', '1.3500', '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 (15523, '2021-09-07', 2512, 14961, 1470, 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 (15524, '2021-09-07', 3058, 14962, 1470, 30677, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15525, '2021-09-07', 7743, 14963, 1470, NULL, '1.0000', '7.3900', '7.3900', '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 (15526, '2021-09-07', 7744, 14964, 1470, NULL, '3.0000', '1.9000', '1.9000', '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 (15527, '2021-09-07', 7422, 14965, 1470, NULL, '1.0000', '4.4700', '4.4700', '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 (15528, '2021-09-07', 1527, 14966, 1470, 24924, '3.0000', '13.1000', '13.1000', '17.5000', '17.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 (15529, '2021-09-07', 7564, 14967, 1470, NULL, '1.0000', '0.6400', '0.6400', '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 (15530, '2021-09-07', 1521, 14968, 1470, 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 (15531, '2021-09-07', 3067, 14969, 1470, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '43.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 (15532, '2021-09-07', 1519, 14970, 1470, 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 (15533, '2021-09-07', 2283, 14971, 1470, 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 (15534, '2021-09-07', 1602, 14972, 1471, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15535, '2021-09-07', 2363, 14973, 1472, 32252, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15536, '2021-09-07', 2656, 14974, 1472, 32590, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15537, '2021-09-07', 2841, 14975, 1472, 16994, '1.0000', '11.0000', '11.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 (15538, '2021-09-07', 2655, 14976, 1472, 32589, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15539, '2021-09-08', 1435, 14977, 1473, NULL, '1.0000', '24.5000', '24.5000', '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 (15540, '2021-09-08', 2242, 14978, 1473, 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 (15541, '2021-09-08', 1872, 14979, 1473, 22598, '1.0000', '9.0500', '9.0500', '13.0000', '13.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 (15542, '2021-09-08', 8666, 14980, 1473, NULL, '1.0000', '0.4600', '0.4600', '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 (15543, '2021-09-08', 2989, 14981, 1473, 22602, '2.0000', '0.9200', '0.9200', '1.0000', '1.0000', '0.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 (15544, '2021-09-08', 2989, 14981, 1473, NULL, '3.0000', '0.9200', '0.9200', '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 (15545, '2021-09-08', 8878, 14982, 1473, NULL, '2.0000', '6.6700', '6.6700', '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 (15546, '2021-09-08', 2821, 14983, 1473, 19817, '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 (15547, '2021-09-08', 2661, 14984, 1473, NULL, '1.0000', '9.0000', '9.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 (15548, '2021-09-08', 2073, 14985, 1473, NULL, '2.0000', '2.3000', '2.3000', '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 (15549, '2021-09-08', 1912, 14986, 1473, 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 (15550, '2021-09-08', 1499, 14987, 1473, 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 (15551, '2021-09-08', 1303, 14988, 1474, NULL, '28.0000', '1.3800', '1.3800', '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 (15552, '2021-09-08', 2712, 14989, 1475, 32551, '10.0000', '0.2600', '0.2600', '0.5000', '0.5000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15553, '2021-09-08', 1665, 14990, 1476, 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 (15554, '2021-09-08', 7641, 14991, 1477, NULL, '1.0000', '1.9000', '1.9000', '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 (15555, '2021-09-08', 9092, 14992, 1477, NULL, '1.0000', '5.2900', '5.2900', '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 (15556, '2021-09-08', 8456, 14993, 1477, NULL, '1.0000', '5.5400', '5.5400', '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 (15557, '2021-09-08', 1520, 14994, 1477, 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 (15558, '2021-09-08', 7886, 14995, 1477, NULL, '1.0000', '16.1667', '16.1667', '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 (15559, '2021-09-08', 7672, 14996, 1477, NULL, '1.0000', '1.0200', '1.0200', '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 (15560, '2021-09-08', 8657, 14997, 1477, NULL, '1.0000', '7.6000', '7.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 (15561, '2021-09-08', 8918, 14998, 1477, NULL, '1.0000', '10.4000', '10.4000', '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 (15562, '2021-09-08', 9149, 14999, 1477, NULL, '1.0000', '8.9500', '8.9500', '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 (15563, '2021-09-08', 1650, 15000, 1477, NULL, '1.0000', '14.5800', '14.5800', '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 (15564, '2021-09-08', 7673, 15001, 1477, NULL, '1.0000', '2.2000', '2.2000', '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 (15565, '2021-09-08', 7848, 15002, 1477, NULL, '1.0000', '1.3500', '1.3500', '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 (15566, '2021-09-08', 2506, 15003, 1477, 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 (15567, '2021-09-08', 1689, 15004, 1477, NULL, '1.0000', '12.3500', '12.3500', '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 (15568, '2021-09-08', 7864, 15005, 1477, NULL, '2.0000', '2.9000', '2.9000', '23.5000', '23.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 (15569, '2021-09-08', 7411, 15006, 1477, NULL, '3.0000', '1.3500', '1.3500', '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 (15570, '2021-09-08', 7376, 15007, 1477, NULL, '2.0000', '141.7100', '141.7100', '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 (15571, '2021-09-08', 7411, 15008, 1477, NULL, '2.0000', '1.3500', '1.3500', '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 (15572, '2021-09-08', 7514, 15009, 1477, NULL, '2.0000', '7.8800', '7.8800', '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 (15573, '2021-09-08', 8539, 15010, 1477, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '65.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15574, '2021-09-08', 7735, 15011, 1477, NULL, '2.0000', '5.0000', '5.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 (15575, '2021-09-08', 7886, 15012, 1477, NULL, '1.0000', '16.1667', '16.1667', '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 (15576, '2021-09-08', 8247, 15013, 1477, NULL, '2.0000', '10.0000', '10.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 (15577, '2021-09-08', 7342, 15014, 1477, 31009, '1.0000', '2.1313', '2.1313', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15578, '2021-09-08', 9214, 15015, 1477, 32135, '1.0000', '7.4538', '7.4538', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15579, '2021-09-08', 8315, 15016, 1477, NULL, '1.0000', '17.0000', '17.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 (15580, '2021-09-08', 7658, 15017, 1477, NULL, '12.0000', '10.1500', '10.1500', '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 (15581, '2021-09-08', 9193, 15018, 1477, NULL, '1.0000', '10.0000', '10.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 (15582, '2021-09-08', 7657, 15019, 1477, NULL, '1.0000', '5.4700', '5.4700', '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 (15583, '2021-09-08', 7886, 15020, 1477, NULL, '1.0000', '16.1667', '16.1667', '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 (15584, '2021-09-08', 7674, 15021, 1477, NULL, '1.0000', '14.5000', '14.5000', '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 (15585, '2021-09-08', 8755, 15022, 1477, NULL, '1.0000', '4.0000', '4.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 (15586, '2021-09-08', 8086, 15023, 1477, NULL, '1.0000', '12.0000', '12.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 (15587, '2021-09-08', 7579, 15024, 1477, NULL, '1.0000', '15.0000', '15.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 (15588, '2021-09-08', 8288, 15025, 1477, NULL, '4.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (15589, '2021-09-08', 7741, 15026, 1477, NULL, '1.0000', '1.2000', '1.2000', '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 (15590, '2021-09-08', 8203, 15027, 1477, NULL, '4.0000', '9.8000', '9.8000', '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 (15591, '2021-09-08', 1602, 15028, 1478, 5897, '1.0000', '6.7859', '6.7859', '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 (15592, '2021-09-08', 1837, 15029, 1478, 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 (15593, '2021-09-08', 2618, 15030, 1478, 9836, '-5.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 (15594, '2021-09-08', 2618, 15030, 1478, NULL, '8.0000', '4.1000', '4.1000', '5.5000', '5.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 (15595, '2021-09-08', 2409, 15031, 1478, 4498, '-1.0000', '2.3100', '2.3100', '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 (15596, '2021-09-08', 2409, 15031, 1478, NULL, '2.0000', '2.3100', '2.3100', '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 (15597, '2021-09-08', 2836, 15032, 1478, 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 (15598, '2021-09-08', 2556, 15033, 1478, 7196, '-20.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 (15599, '2021-09-08', 2556, 15033, 1478, NULL, '21.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15600, '2021-09-08', 2998, 15034, 1478, NULL, '1.0000', '3.6000', '3.6000', '4.9000', '4.9000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15601, '2021-09-08', 2556, 15035, 1478, 7196, '-20.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 (15602, '2021-09-08', 2556, 15035, 1478, NULL, '21.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15603, '2021-09-08', 2712, 15036, 1478, 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 (15604, '2021-09-08', 2870, 15037, 1478, NULL, '1.0000', '45.0000', '45.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 (15605, '2021-09-08', 2486, 15038, 1478, 21782, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.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 (15606, '2021-09-08', 2697, 15039, 1478, 18713, '1.0000', '3.0000', '3.0000', '5.0000', '5.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 (15607, '2021-09-08', 2712, 15040, 1478, NULL, '20.0000', '0.2600', '0.2600', '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 (15608, '2021-09-08', 1812, 15041, 1478, 8224, '-5.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 (15609, '2021-09-08', 1812, 15041, 1478, NULL, '6.0000', '7.8900', '7.8900', '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 (15610, '2021-09-08', 1349, 15042, 1478, 10162, '1.0000', '20.8300', '20.8300', '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 (15611, '2021-09-08', 1300, 15043, 1478, 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 (15612, '2021-09-08', 2073, 15044, 1478, 22247, '1.0000', '2.3000', '2.3000', '3.0000', '3.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 (15613, '2021-09-08', 2964, 15045, 1478, NULL, '1.0000', '6.6000', '6.6000', '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 (15614, '2021-09-08', 1688, 15046, 1478, 4896, '-2.0000', '18.5000', '18.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 (15615, '2021-09-08', 1688, 15046, 1478, NULL, '3.0000', '18.5000', '18.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 (15616, '2021-09-08', 9193, 15047, 1478, NULL, '1.0000', '10.0000', '10.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 (15617, '2021-09-08', 1824, 15048, 1478, 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 (15618, '2021-09-08', 1519, 15049, 1478, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (15619, '2021-09-08', 1699, 15050, 1478, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '9.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 (15620, '2021-09-08', 1733, 15051, 1479, 68, '1.0000', '527.9932', '527.9932', '12.0000', '12.0000', '3.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 (15621, '2021-09-08', 9311, 15052, 1480, 32147, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15622, '2021-09-08', 9154, 15053, 1480, 31011, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15623, '2021-09-08', 9158, 15054, 1480, NULL, '1.0000', '3.7000', '3.7000', '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 (15624, '2021-09-08', 2098, 15055, 1480, 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 (15625, '2021-09-08', 8769, 15056, 1480, 32148, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15626, '2021-09-08', 8208, 15057, 1480, NULL, '2.0000', '33.0000', '33.0000', '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 (15627, '2021-09-08', 8243, 15058, 1481, NULL, '10.0000', '1.1400', '1.1400', '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 (15628, '2021-09-08', 1667, 15059, 1481, 31704, '1.0000', '70.9201', '70.9201', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15629, '2021-09-08', 7758, 15060, 1481, NULL, '1.0000', '10.8500', '10.8500', '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 (15630, '2021-09-08', 2260, 15061, 1481, 29797, '3.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15631, '2021-09-08', 2817, 15062, 1481, 22483, '10.0000', '1.8000', '1.8000', '2.5000', '2.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 (15632, '2021-09-08', 1504, 15063, 1481, 24013, '2.0000', '1.7015', '1.7015', '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 (15633, '2021-09-08', 1504, 15063, 1481, 24020, '8.0000', '1.7015', '1.7015', '2.0000', '2.0000', '32.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 (15634, '2021-09-08', 2299, 15064, 1481, 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 (15635, '2021-09-08', 3013, 15065, 1481, 24018, '1.0000', '8.0000', '8.0000', '11.0000', '11.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 (15636, '2021-09-08', 7612, 15066, 1481, NULL, '1.0000', '46.0000', '46.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 (15637, '2021-09-08', 1942, 15067, 1481, 5600, '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 (15638, '2021-09-08', 1824, 15068, 1481, 32746, '1.0000', '40.2705', '40.2705', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15639, '2021-09-08', 7799, 15069, 1481, NULL, '1.0000', '2.0000', '2.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 (15640, '2021-09-08', 1854, 15070, 1481, 4985, '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 (15641, '2021-09-08', 1342, 15071, 1481, 25038, '1.0000', '29.5000', '29.5000', '7.5000', '7.5000', '7.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 (15642, '2021-09-08', 8918, 15072, 1481, NULL, '4.0000', '10.4000', '10.4000', '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 (15643, '2021-09-08', 2315, 15073, 1481, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '292.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15644, '2021-09-08', 1876, 15074, 1481, 24343, '1.0000', '26.0000', '26.0000', '34.5000', '34.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 (15645, '2021-09-08', 1533, 15075, 1481, 1540, '1.0000', '3.0500', '3.0500', '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 (15646, '2021-09-08', 1810, 15076, 1481, 12233, '1.0000', '8.2860', '8.2860', '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 (15647, '2021-09-08', 2237, 15077, 1481, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '20.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 (15648, '2021-09-08', 1812, 15078, 1481, 31991, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15649, '2021-09-08', 7380, 15079, 1481, NULL, '1.0000', '5.6200', '5.6200', '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 (15650, '2021-09-08', 1764, 15080, 1481, 3179, '1.0000', '90.0000', '90.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 (15651, '2021-09-08', 2237, 15081, 1481, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '20.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 (15652, '2021-09-08', 2546, 15082, 1481, 23600, '1.0000', '13.6300', '13.6300', '16.0000', '16.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 (15653, '2021-09-08', 1514, 15083, 1481, 32756, '1.0000', '31.4700', '31.4700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15654, '2021-09-08', 2998, 15084, 1481, NULL, '6.0000', '3.6000', '3.6000', '4.9000', '4.9000', '-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 (15655, '2021-09-08', 1596, 15085, 1481, 23617, '1.0000', '2.5700', '2.5700', '6.0000', '6.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 (15656, '2021-09-08', 7809, 15086, 1482, NULL, '1.0000', '13.5000', '13.5000', '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 (15657, '2021-09-08', 2656, 15087, 1482, 32553, '3.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15658, '2021-09-08', 8133, 15088, 1482, 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 (15659, '2021-09-08', 1519, 15089, 1482, 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 (15660, '2021-09-08', 7482, 15090, 1482, NULL, '1.0000', '3.0500', '3.0500', '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 (15661, '2021-09-08', 1670, 15091, 1482, 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 (15662, '2021-09-08', 2169, 15092, 1482, NULL, '1.0000', '1.1300', '1.1300', '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 (15663, '2021-09-08', 2916, 15093, 1482, NULL, '1.0000', '15.0176', '15.0176', '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 (15664, '2021-09-08', 2643, 15094, 1482, 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 (15665, '2021-09-08', 2965, 15095, 1482, NULL, '2.0000', '5.0000', '5.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 (15666, '2021-09-08', 1912, 15096, 1482, 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 (15667, '2021-09-08', 7769, 15097, 1482, 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 (15668, '2021-09-08', 7482, 15098, 1482, NULL, '1.0000', '3.0500', '3.0500', '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 (15669, '2021-09-08', 2167, 15099, 1482, 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 (15670, '2021-09-08', 7672, 15100, 1482, NULL, '1.0000', '1.0200', '1.0200', '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 (15671, '2021-09-08', 2169, 15101, 1482, NULL, '1.0000', '1.1300', '1.1300', '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 (15672, '2021-09-08', 8810, 15102, 1482, NULL, '1.0000', '1.9200', '1.9200', '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 (15673, '2021-09-08', 2951, 15103, 1482, 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 (15674, '2021-09-08', 2242, 15104, 1482, 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 (15675, '2021-09-08', 2821, 15105, 1482, 19817, '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 (15676, '2021-09-08', 1837, 15106, 1482, 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 (15677, '2021-09-08', 2592, 15107, 1482, 25022, '1.0000', '7.9800', '7.9800', '11.0000', '11.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 (15678, '2021-09-08', 1590, 15108, 1482, 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 (15679, '2021-09-08', 2237, 15109, 1482, 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 (15680, '2021-09-08', 3058, 15110, 1482, 30677, '3.0000', '4.3000', '4.3000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15681, '2021-09-08', 1665, 15111, 1482, 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 (15682, '2021-09-08', 1863, 15112, 1482, NULL, '1.0000', '0.3450', '0.3450', '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 (15683, '2021-09-08', 1912, 15113, 1482, 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 (15684, '2021-09-08', 2135, 15114, 1482, 23175, '1.0000', '2.5000', '2.5000', '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 (15685, '2021-09-08', 2169, 15115, 1482, NULL, '1.0000', '1.1300', '1.1300', '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 (15686, '2021-09-08', 9204, 15116, 1482, NULL, '1.0000', '8.1600', '8.1600', '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 (15687, '2021-09-08', 7672, 15117, 1482, NULL, '1.0000', '1.0200', '1.0200', '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 (15688, '2021-09-08', 7780, 15118, 1482, NULL, '1.0000', '2.6000', '2.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 (15689, '2021-09-08', 7741, 15119, 1482, NULL, '1.0000', '1.2000', '1.2000', '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 (15690, '2021-09-08', 8208, 15120, 1482, NULL, '2.0000', '33.0000', '33.0000', '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 (15691, '2021-09-08', 2167, 15121, 1482, 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 (15692, '2021-09-08', 1912, 15122, 1482, 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 (15693, '2021-09-08', 1519, 15123, 1482, 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 (15694, '2021-09-08', 1863, 15124, 1482, NULL, '1.0000', '0.3450', '0.3450', '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 (15695, '2021-09-08', 7779, 15125, 1482, NULL, '1.0000', '0.6200', '0.6200', '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 (15696, '2021-09-08', 1863, 15126, 1482, NULL, '1.0000', '0.3450', '0.3450', '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 (15697, '2021-09-08', 1700, 15127, 1482, 31963, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15698, '2021-09-08', 2169, 15128, 1482, NULL, '1.0000', '1.1300', '1.1300', '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 (15699, '2021-09-08', 2773, 15129, 1482, NULL, '1.0000', '15.0200', '15.0200', '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 (15700, '2021-09-08', 7848, 15130, 1482, NULL, '1.0000', '1.3500', '1.3500', '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 (15701, '2021-09-08', 8666, 15131, 1482, NULL, '1.0000', '0.4600', '0.4600', '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 (15702, '2021-09-08', 9271, 15132, 1482, NULL, '1.0000', '0.9900', '0.9900', '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 (15703, '2021-09-08', 7532, 15133, 1482, NULL, '1.0000', '9.0500', '9.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 (15704, '2021-09-08', 1425, 15134, 1482, 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 (15705, '2021-09-08', 2277, 15135, 1482, NULL, '1.0000', '0.7800', '0.7800', '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 (15706, '2021-09-08', 8810, 15136, 1482, NULL, '1.0000', '1.9200', '1.9200', '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 (15707, '2021-09-08', 1863, 15137, 1482, NULL, '2.0000', '0.3450', '0.3450', '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 (15708, '2021-09-08', 2353, 15138, 1482, 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 (15709, '2021-09-08', 1311, 15139, 1482, 22366, '4.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 (15710, '2021-09-08', 2135, 15140, 1482, 23175, '1.0000', '2.5000', '2.5000', '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 (15711, '2021-09-08', 8463, 15141, 1483, NULL, '1.0000', '18.0000', '18.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 (15712, '2021-09-08', 7959, 15142, 1483, NULL, '2.0000', '9.6000', '9.6000', '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 (15713, '2021-09-08', 7591, 15143, 1483, NULL, '1.0000', '2.7500', '2.7500', '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 (15714, '2021-09-08', 7444, 15144, 1483, 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 (15715, '2021-09-08', 7411, 15145, 1483, NULL, '1.0000', '1.3500', '1.3500', '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 (15716, '2021-09-08', 7777, 15146, 1483, NULL, '1.0000', '9.5000', '9.5000', '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 (15717, '2021-09-08', 7457, 15147, 1483, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15718, '2021-09-08', 2567, 15148, 1483, NULL, '1.0000', '33.0000', '33.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 (15719, '2021-09-08', 7912, 15149, 1483, NULL, '1.0000', '5.5000', '5.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 (15720, '2021-09-08', 1364, 15150, 1483, NULL, '2.0000', '52.5500', '52.5500', '69.0000', '69.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 (15721, '2021-09-08', 2060, 15151, 1483, 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 (15722, '2021-09-08', 8752, 15152, 1483, NULL, '1.0000', '4.2000', '4.2000', '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 (15723, '2021-09-08', 8242, 15153, 1483, NULL, '1.0000', '0.4900', '0.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 (15724, '2021-09-08', 8359, 15154, 1483, NULL, '1.0000', '16.7750', '16.7750', '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 (15725, '2021-09-08', 7353, 15155, 1483, 30931, '4.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15726, '2021-09-08', 9098, 15156, 1483, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15727, '2021-09-08', 7353, 15157, 1483, 30931, '4.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15728, '2021-09-08', 8005, 15158, 1483, NULL, '1.0000', '17.7200', '17.7200', '70.5000', '70.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15729, '2021-09-08', 2384, 15159, 1483, NULL, '5.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (15730, '2021-09-08', 9092, 15160, 1483, NULL, '1.0000', '5.2900', '5.2900', '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 (15731, '2021-09-08', 8202, 15161, 1483, NULL, '1.0000', '1.6600', '1.6600', '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 (15732, '2021-09-08', 8562, 15162, 1483, NULL, '1.0000', '12.0000', '12.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 (15733, '2021-09-08', 7806, 15163, 1483, NULL, '3.0000', '14.0000', '14.0000', '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 (15734, '2021-09-08', 8097, 15164, 1483, NULL, '3.0000', '7.6800', '7.6800', '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 (15735, '2021-09-08', 2461, 15165, 1483, NULL, '2.0000', '8.6400', '8.6400', '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 (15736, '2021-09-08', 9092, 15166, 1483, NULL, '2.0000', '5.2900', '5.2900', '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 (15737, '2021-09-08', 8200, 15167, 1483, NULL, '1.0000', '8.5500', '8.5500', '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 (15738, '2021-09-08', 7357, 15168, 1483, 31030, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15739, '2021-09-08', 7708, 15169, 1483, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15740, '2021-09-08', 8666, 15170, 1483, 32808, '2.0000', '0.4600', '0.4600', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15741, '2021-09-08', 7672, 15171, 1483, NULL, '1.0000', '1.0200', '1.0200', '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 (15742, '2021-09-08', 7743, 15172, 1483, NULL, '2.0000', '7.3900', '7.3900', '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 (15743, '2021-09-08', 7514, 15173, 1483, NULL, '2.0000', '7.8800', '7.8800', '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 (15744, '2021-09-08', 7658, 15174, 1483, NULL, '10.0000', '10.1500', '10.1500', '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 (15745, '2021-09-08', 8254, 15175, 1483, 30187, '1.0000', '27.2800', '27.2800', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15746, '2021-09-08', 7673, 15176, 1483, NULL, '3.0000', '2.2000', '2.2000', '20.0000', '20.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 (15747, '2021-09-08', 7994, 15177, 1483, NULL, '1.0000', '47.5800', '47.5800', '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 (15748, '2021-09-08', 8097, 15178, 1483, NULL, '3.0000', '7.6800', '7.6800', '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 (15749, '2021-09-08', 2327, 15179, 1483, 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 (15750, '2021-09-08', 7672, 15180, 1483, NULL, '2.0000', '1.0200', '1.0200', '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 (15751, '2021-09-08', 7889, 15181, 1483, NULL, '1.0000', '15.0000', '15.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 (15752, '2021-09-08', 9092, 15182, 1483, NULL, '4.0000', '5.2900', '5.2900', '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 (15753, '2021-09-08', 7713, 15183, 1483, NULL, '10.0000', '4.4000', '4.4000', '0.6000', '0.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 (15754, '2021-09-08', 7431, 15184, 1483, 30047, '1.0000', '4.6500', '4.6500', '24.0000', '24.0000', '12.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15755, '2021-09-08', 2242, 15185, 1483, NULL, '5.0000', '0.4800', '0.4800', '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 (15756, '2021-09-08', 7593, 15186, 1483, NULL, '1.0000', '2.4500', '2.4500', '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 (15757, '2021-09-08', 9092, 15187, 1483, NULL, '5.0000', '5.2900', '5.2900', '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 (15758, '2021-09-08', 1822, 15188, 1484, NULL, '10.0000', '2.5500', '2.5500', '3.5000', '3.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 (15759, '2021-09-08', 7848, 15189, 1484, NULL, '1.0000', '1.3500', '1.3500', '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 (15760, '2021-09-08', 1519, 15190, 1484, 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 (15761, '2021-09-08', 2324, 15191, 1484, 22558, '1.0000', '10.5000', '10.5000', '15.0000', '15.0000', '7.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 (15762, '2021-09-08', 8783, 15192, 1485, NULL, '1.0000', '9.0000', '9.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 (15763, '2021-09-08', 7892, 15193, 1485, NULL, '1.0000', '4.2000', '4.2000', '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 (15764, '2021-09-08', 8363, 15194, 1485, NULL, '1.0000', '38.0000', '38.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 (15765, '2021-09-08', 7560, 15195, 1485, NULL, '1.0000', '4.4500', '4.4500', '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 (15766, '2021-09-08', 2962, 15196, 1485, 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 (15767, '2021-09-08', 2384, 15197, 1485, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15768, '2021-09-08', 7447, 15198, 1485, NULL, '8.0000', '19.1100', '19.1100', '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 (15769, '2021-09-08', 9410, 15199, 1485, NULL, '1.0000', '20.0000', '20.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 (15770, '2021-09-08', 7783, 15200, 1485, NULL, '4.0000', '3.6500', '3.6500', '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 (15771, '2021-09-08', 9240, 15201, 1485, NULL, '1.0000', '25.1200', '25.1200', '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 (15772, '2021-09-08', 9024, 15202, 1485, NULL, '1.0000', '15.0000', '15.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 (15773, '2021-09-08', 8015, 15203, 1485, NULL, '4.0000', '6.0000', '6.0000', '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 (15774, '2021-09-08', 9252, 15204, 1485, NULL, '1.0000', '11.8200', '11.8200', '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 (15775, '2021-09-08', 8291, 15205, 1485, NULL, '1.0000', '11.9000', '11.9000', '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 (15776, '2021-09-08', 8247, 15206, 1485, NULL, '3.0000', '10.0000', '10.0000', '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 (15777, '2021-09-08', 8756, 15207, 1485, 32807, '3.0000', '5.9323', '5.9323', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15778, '2021-09-08', 9193, 15208, 1485, NULL, '2.0000', '10.0000', '10.0000', '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 (15779, '2021-09-08', 7954, 15209, 1485, NULL, '4.0000', '21.0000', '21.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 (15780, '2021-09-08', 9250, 15210, 1485, 31027, '1.0000', '18.9800', '18.9800', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15781, '2021-09-08', 8247, 15211, 1485, NULL, '1.0000', '10.0000', '10.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 (15782, '2021-09-08', 2757, 15212, 1486, NULL, '1.0000', '6.8000', '6.8000', '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 (15783, '2021-09-08', 2900, 15213, 1486, 18351, '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 (15784, '2021-09-08', 1654, 15214, 1486, 3254, '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 (15785, '2021-09-08', 1668, 15215, 1486, 31982, '1.0000', '98.2985', '98.2985', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15786, '2021-09-08', 2712, 15216, 1486, 32596, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15787, '2021-09-08', 2068, 15217, 1486, 22652, '1.0000', '12.8833', '12.8833', '17.0000', '17.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 (15788, '2021-09-08', 2167, 15218, 1486, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15789, '2021-09-08', 1999, 15219, 1486, 21834, '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 (15790, '2021-09-08', 2059, 15220, 1486, 32582, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15791, '2021-09-08', 2712, 15221, 1486, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15792, '2021-09-08', 7756, 15222, 1486, NULL, '1.0000', '2.5000', '2.5000', '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 (15793, '2021-09-08', 7749, 15223, 1486, NULL, '1.0000', '3.0000', '3.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 (15794, '2021-09-08', 2000, 15224, 1486, 6443, '2.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 (15795, '2021-09-08', 8769, 15225, 1486, 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 (15796, '2021-09-08', 1533, 15226, 1486, 1540, '1.0000', '3.0500', '3.0500', '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 (15797, '2021-09-08', 1935, 15227, 1486, 31718, '2.0000', '7.9589', '7.9589', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15798, '2021-09-08', 1523, 15228, 1486, 24285, '2.0000', '0.9596', '0.9596', '5.0000', '5.0000', '33.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 (15799, '2021-09-08', 2135, 15229, 1486, 16894, '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 (15800, '2021-09-08', 1602, 15230, 1486, 31992, '1.0000', '6.9415', '6.9415', '10.5000', '10.5000', '10.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15801, '2021-09-08', 9089, 15231, 1486, NULL, '2.0000', '3.8000', '3.8000', '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 (15802, '2021-09-08', 1602, 15232, 1486, 31992, '1.0000', '6.9415', '6.9415', '10.5000', '10.5000', '10.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15803, '2021-09-08', 2679, 15233, 1486, 32787, '1.0000', '32.6039', '32.6039', '44.0000', '44.0000', '4.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15804, '2021-09-08', 9240, 15234, 1486, NULL, '1.0000', '25.1200', '25.1200', '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 (15805, '2021-09-08', 1999, 15235, 1486, 21834, '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 (15806, '2021-09-08', 1580, 15236, 1487, 19875, '2.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 (15807, '2021-09-08', 1841, 15237, 1487, 31077, '2.0000', '0.2968', '0.2968', '0.5000', '0.5000', '12.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15808, '2021-09-08', 1840, 15238, 1487, 19856, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '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 (15809, '2021-09-08', 2730, 15239, 1488, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '47.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 (15810, '2021-09-08', 2623, 15240, 1489, 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 (15811, '2021-09-08', 1575, 15241, 1489, 32772, '1.0000', '53.6846', '53.6846', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15812, '2021-09-08', 2366, 15242, 1489, 25033, '2.0000', '3.7873', '3.7873', '6.0000', '6.0000', '4.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 (15813, '2021-09-08', 1432, 15243, 1489, 32045, '1.0000', '9.0808', '9.0808', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15814, '2021-09-08', 1851, 15244, 1489, 32008, '1.0000', '13.4348', '13.4348', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15815, '2021-09-08', 8133, 15245, 1490, 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 (15816, '2021-09-08', 2367, 15246, 1490, 4375, '2.0000', '24.0000', '24.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 (15817, '2021-09-08', 2730, 15247, 1490, 21547, '2.0000', '1.2000', '1.2000', '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 (15818, '2021-09-09', 1523, 15248, 1491, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '15.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 (15819, '2021-09-09', 2167, 15249, 1491, 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 (15820, '2021-09-09', 1680, 15250, 1491, 30669, '1.0000', '5.0300', '5.0300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15821, '2021-09-09', 2768, 15251, 1491, 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 (15822, '2021-09-09', 2237, 15252, 1491, 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 (15823, '2021-09-09', 1760, 15253, 1491, 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 (15824, '2021-09-09', 1837, 15254, 1491, 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 (15825, '2021-09-09', 2379, 15255, 1491, NULL, '1.0000', '1.8000', '1.8000', '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 (15826, '2021-09-09', 2242, 15256, 1491, 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 (15827, '2021-09-09', 1945, 15257, 1491, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '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 (15828, '2021-09-09', 8308, 15258, 1491, NULL, '1.0000', '11.0000', '11.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 (15829, '2021-09-09', 2506, 15259, 1491, 25024, '1.0000', '3.4900', '3.4900', '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 (15830, '2021-09-09', 1381, 15260, 1491, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (15831, '2021-09-09', 1519, 15261, 1491, 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 (15832, '2021-09-09', 2712, 15262, 1491, 32551, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15833, '2021-09-09', 2379, 15263, 1491, NULL, '1.0000', '1.8000', '1.8000', '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 (15834, '2021-09-09', 2964, 15264, 1491, 25155, '1.0000', '6.6000', '6.6000', '7.5000', '7.5000', '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 (15835, '2021-09-09', 2169, 15265, 1491, NULL, '1.0000', '1.1300', '1.1300', '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 (15836, '2021-09-09', 3058, 15266, 1491, 30677, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15837, '2021-09-09', 7765, 15267, 1491, NULL, '2.0000', '16.0000', '16.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 (15838, '2021-09-09', 2000, 15268, 1491, 22557, '1.0000', '8.0000', '8.0000', '10.0000', '10.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 (15839, '2021-09-09', 2643, 15269, 1491, 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 (15840, '2021-09-09', 1478, 15270, 1491, 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 (15841, '2021-09-09', 2286, 15271, 1491, 29631, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15842, '2021-09-09', 1590, 15272, 1491, 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 (15843, '2021-09-09', 1580, 15273, 1491, 19875, '3.0000', '0.9900', '0.9900', '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 (15844, '2021-09-09', 2242, 15274, 1491, 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 (15845, '2021-09-09', 8359, 15275, 1491, NULL, '1.0000', '13.5000', '13.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 (15846, '2021-09-09', 2712, 15276, 1491, 32551, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15847, '2021-09-09', 1670, 15277, 1491, 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 (15848, '2021-09-09', 1837, 15278, 1491, 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 (15849, '2021-09-09', 2279, 15279, 1491, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '20.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 (15850, '2021-09-09', 1499, 15280, 1491, NULL, '5.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-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 (15851, '2021-09-09', 2543, 15281, 1492, 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 (15852, '2021-09-09', 2239, 15282, 1492, 19333, '2.0000', '26.0000', '26.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 (15853, '2021-09-09', 7987, 15283, 1493, NULL, '1.0000', '37.9400', '37.9400', '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 (15854, '2021-09-09', 3024, 15284, 1494, 23973, '1.0000', '5.9000', '5.9000', '8.0000', '8.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 (15855, '2021-09-09', 8607, 15285, 1495, NULL, '1.0000', '12.0000', '12.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 (15856, '2021-09-09', 7675, 15286, 1496, NULL, '1.0000', '11.4300', '11.4300', '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 (15857, '2021-09-09', 2496, 15287, 1496, NULL, '2.0000', '0.5900', '0.5900', '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 (15858, '2021-09-09', 7518, 15288, 1496, NULL, '1.0000', '-21.7700', '-21.7700', '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 (15859, '2021-09-09', 7946, 15289, 1496, NULL, '1.0000', '0.5200', '0.5200', '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 (15860, '2021-09-09', 3001, 15290, 1496, 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 (15861, '2021-09-09', 1810, 15291, 1496, 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 (15862, '2021-09-09', 2284, 15292, 1496, 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 (15863, '2021-09-09', 7652, 15293, 1496, NULL, '15.0000', '40.3000', '40.3000', '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 (15864, '2021-09-09', 7852, 15294, 1496, NULL, '1.0000', '6.1100', '6.1100', '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 (15865, '2021-09-09', 8063, 15295, 1496, NULL, '1.0000', '28.5000', '28.5000', '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 (15866, '2021-09-09', 7867, 15296, 1496, 30193, '3.0000', '2.7700', '2.7700', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15867, '2021-09-09', 7708, 15297, 1496, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15868, '2021-09-09', 7485, 15298, 1496, NULL, '1.0000', '19.3500', '19.3500', '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 (15869, '2021-09-09', 8208, 15299, 1496, NULL, '1.0000', '33.0000', '33.0000', '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 (15870, '2021-09-09', 1409, 15300, 1496, 30781, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15871, '2021-09-09', 7564, 15301, 1496, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15872, '2021-09-09', 7703, 15302, 1496, NULL, '1.0000', '22.9900', '22.9900', '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 (15873, '2021-09-09', 8134, 15303, 1496, NULL, '1.0000', '5.2600', '5.2600', '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 (15874, '2021-09-09', 7804, 15304, 1496, NULL, '3.0000', '1.8000', '1.8000', '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 (15875, '2021-09-09', 9156, 15305, 1496, NULL, '1.0000', '5.8900', '5.8900', '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 (15876, '2021-09-09', 2656, 15306, 1496, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15877, '2021-09-09', 8746, 15307, 1496, 32134, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15878, '2021-09-09', 7674, 15308, 1496, NULL, '1.0000', '14.5000', '14.5000', '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 (15879, '2021-09-09', 7848, 15309, 1496, NULL, '1.0000', '1.3500', '1.3500', '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 (15880, '2021-09-09', 8744, 15310, 1496, 32142, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15881, '2021-09-09', 8230, 15311, 1496, NULL, '1.0000', '5.0000', '5.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 (15882, '2021-09-09', 8616, 15312, 1496, NULL, '1.0000', '3.0000', '3.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 (15883, '2021-09-09', 7514, 15313, 1496, NULL, '1.0000', '7.8800', '7.8800', '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 (15884, '2021-09-09', 9095, 15314, 1496, NULL, '1.0000', '17.5000', '17.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 (15885, '2021-09-09', 7588, 15315, 1496, NULL, '1.0000', '1.5000', '1.5000', '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 (15886, '2021-09-09', 8566, 15316, 1496, NULL, '1.0000', '2.5000', '2.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 (15887, '2021-09-09', 2016, 15317, 1496, 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 (15888, '2021-09-09', 1409, 15318, 1496, 30781, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15889, '2021-09-09', 1874, 15319, 1496, NULL, '2.0000', '6.1000', '6.1000', '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 (15890, '2021-09-09', 3037, 15320, 1497, NULL, '1.0000', '46.9000', '46.9000', '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 (15891, '2021-09-09', 2712, 15321, 1497, NULL, '3.0000', '0.2600', '0.2600', '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 (15892, '2021-09-09', 2221, 15322, 1497, NULL, '1.0000', '14.4737', '14.4737', '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 (15893, '2021-09-09', 1351, 15323, 1497, 247, '1.0000', '35.4167', '35.4167', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15894, '2021-09-09', 1681, 15324, 1497, 18891, '1.0000', '36.8000', '36.8000', '48.5000', '48.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 (15895, '2021-09-09', 1504, 15325, 1497, 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 (15896, '2021-09-09', 2405, 15326, 1497, NULL, '6.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (15897, '2021-09-09', 2315, 15327, 1497, 2735, '-65.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15898, '2021-09-09', 2315, 15327, 1497, NULL, '67.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15899, '2021-09-09', 1690, 15328, 1497, 18873, '1.0000', '7.6854', '7.6854', '8.5000', '8.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 (15900, '2021-09-09', 1819, 15329, 1497, 18840, '1.0000', '5.5930', '5.5930', '7.1700', '7.1700', '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 (15901, '2021-09-09', 2259, 15330, 1497, 2795, '1.0000', '19.9405', '19.9405', '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 (15902, '2021-09-09', 1912, 15331, 1497, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '24.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 (15903, '2021-09-09', 1307, 15332, 1497, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.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 (15904, '2021-09-09', 1612, 15333, 1497, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.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 (15905, '2021-09-09', 1519, 15334, 1497, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.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 (15906, '2021-09-09', 1672, 15335, 1497, NULL, '14.0000', '2.8700', '2.8700', '4.0000', '4.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 (15907, '2021-09-09', 1686, 15336, 1497, NULL, '1.0000', '26.6000', '26.6000', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15908, '2021-09-09', 1824, 15337, 1497, NULL, '1.0000', '5.2000', '5.2000', '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 (15909, '2021-09-09', 1519, 15338, 1498, 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 (15910, '2021-09-09', 7848, 15339, 1498, NULL, '1.0000', '1.3500', '1.3500', '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 (15911, '2021-09-09', 2169, 15340, 1499, 32068, '1.0000', '0.9812', '0.9812', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15912, '2021-09-09', 2280, 15341, 1499, 21586, '1.0000', '1.9000', '1.9000', '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 (15913, '2021-09-09', 2712, 15342, 1499, 32596, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15914, '2021-09-09', 1637, 15343, 1499, 32071, '1.0000', '64.1221', '64.1221', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15915, '2021-09-09', 2408, 15344, 1499, 16906, '1.0000', '8.6200', '8.6200', '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 (15916, '2021-09-09', 2299, 15345, 1499, NULL, '2.0000', '6.0000', '6.0000', '8.5000', '8.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 (15917, '2021-09-09', 1961, 15346, 1499, 32069, '1.0000', '18.5638', '18.5638', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15918, '2021-09-09', 1432, 15347, 1499, 22228, '1.0000', '9.0808', '9.0808', '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 (15919, '2021-09-09', 2965, 15348, 1499, 21818, '1.0000', '5.0000', '5.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 (15920, '2021-09-09', 2353, 15349, 1499, 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 (15921, '2021-09-09', 1411, 15350, 1499, 2343, '1.0000', '26.4199', '26.4199', '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 (15922, '2021-09-09', 2317, 15351, 1499, 15799, '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 (15923, '2021-09-09', 7772, 15352, 1499, NULL, '1.0000', '2.5000', '2.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 (15924, '2021-09-09', 1349, 15353, 1499, 32085, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15925, '2021-09-09', 2106, 15354, 1500, 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 (15926, '2021-09-09', 1873, 15355, 1500, 22597, '1.0000', '11.9500', '11.9500', '16.0000', '16.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 (15927, '2021-09-09', 8876, 15356, 1500, NULL, '1.0000', '0.9900', '0.9900', '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 (15928, '2021-09-09', 8135, 15357, 1500, NULL, '1.0000', '13.9000', '13.9000', '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 (15929, '2021-09-09', 1667, 15358, 1500, 24939, '1.0000', '1404.9249', '1404.9249', '8.5000', '8.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 (15930, '2021-09-09', 1590, 15359, 1500, 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 (15931, '2021-09-09', 1564, 15360, 1500, 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 (15932, '2021-09-09', 2068, 15361, 1500, NULL, '1.0000', '12.0277', '12.0277', '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 (15933, '2021-09-09', 2275, 15362, 1500, 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 (15934, '2021-09-09', 8057, 15363, 1500, NULL, '1.0000', '6.0000', '6.0000', '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 (15935, '2021-09-09', 1427, 15364, 1500, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15936, '2021-09-09', 3018, 15365, 1500, 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 (15937, '2021-09-09', 1519, 15366, 1500, 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 (15938, '2021-09-09', 1337, 15367, 1500, 31095, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15939, '2021-09-09', 1578, 15368, 1500, NULL, '2.0000', '1.9700', '1.9700', '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 (15940, '2021-09-09', 1863, 15369, 1500, NULL, '1.0000', '0.3450', '0.3450', '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 (15941, '2021-09-09', 1837, 15370, 1500, 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 (15942, '2021-09-09', 1580, 15371, 1500, 19875, '2.0000', '0.9900', '0.9900', '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 (15943, '2021-09-09', 2260, 15372, 1500, 23137, '1.0000', '4.2000', '4.2000', '6.0000', '6.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 (15944, '2021-09-09', 2169, 15373, 1500, NULL, '1.0000', '1.1300', '1.1300', '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 (15945, '2021-09-09', 2277, 15374, 1500, NULL, '3.0000', '0.7800', '0.7800', '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 (15946, '2021-09-09', 7664, 15375, 1500, NULL, '1.0000', '3.6000', '3.6000', '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 (15947, '2021-09-09', 1822, 15376, 1501, NULL, '10.0000', '2.5500', '2.5500', '3.5000', '3.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 (15948, '2021-09-09', 1854, 15377, 1502, 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 (15949, '2021-09-09', 2169, 15378, 1503, NULL, '2.0000', '1.1300', '1.1300', '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 (15950, '2021-09-09', 2169, 15379, 1504, 32068, '1.0000', '0.9812', '0.9812', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15951, '2021-09-09', 2317, 15380, 1504, 15799, '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 (15952, '2021-09-09', 2887, 15381, 1504, 17920, '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 (15953, '2021-09-09', 1426, 15382, 1504, 23629, '1.0000', '36.0000', '36.0000', '47.5000', '47.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 (15954, '2021-09-09', 1672, 15383, 1504, 32946, '14.0000', '21.4532', '21.4532', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15955, '2021-09-09', 1824, 15384, 1504, 32867, '1.0000', '16.4742', '16.4742', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15956, '2021-09-09', 3016, 15385, 1504, 23593, '1.0000', '14.5200', '14.5200', '19.5000', '19.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 (15957, '2021-09-09', 2105, 15386, 1504, 2511, '2.0000', '1.3500', '1.3500', '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 (15958, '2021-09-09', 2829, 15387, 1504, 32817, '1.0000', '25.2431', '25.2431', '39.5000', '39.5000', '0.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15959, '2021-09-09', 1845, 15388, 1504, 32081, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15960, '2021-09-09', 7391, 15389, 1504, NULL, '1.0000', '335.0300', '335.0300', '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 (15961, '2021-09-09', 2250, 15390, 1504, 32941, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15962, '2021-09-09', 2250, 15391, 1504, 32941, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15963, '2021-09-09', 2712, 15392, 1504, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15964, '2021-09-09', 2821, 15393, 1504, 17043, '1.0000', '3.5100', '3.5100', '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 (15965, '2021-09-09', 3013, 15394, 1504, NULL, '2.0000', '8.0000', '8.0000', '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 (15966, '2021-09-09', 2109, 15395, 1504, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '101.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15967, '2021-09-09', 2457, 15396, 1504, NULL, '1.0000', '23.0000', '23.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 (15968, '2021-09-09', 9240, 15397, 1504, NULL, '1.0000', '25.1200', '25.1200', '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 (15969, '2021-09-09', 1602, 15398, 1504, 32944, '1.0000', '6.9681', '6.9681', '10.5000', '10.5000', '39.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15970, '2021-09-09', 2109, 15399, 1504, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '100.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15971, '2021-09-09', 1935, 15400, 1504, 31718, '2.0000', '7.9589', '7.9589', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15972, '2021-09-09', 2279, 15401, 1504, 22220, '2.0000', '2.6280', '2.6280', '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 (15973, '2021-09-09', 1674, 15402, 1504, 32017, '2.0000', '135.4360', '135.4360', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15974, '2021-09-09', 1824, 15403, 1504, 32867, '1.0000', '16.4742', '16.4742', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15975, '2021-09-09', 2942, 15404, 1504, 21548, '1.0000', '0.4900', '0.4900', '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 (15976, '2021-09-09', 1854, 15405, 1505, 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 (15977, '2021-09-09', 1855, 15406, 1506, 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 (15978, '2021-09-09', 2302, 15407, 1506, 31085, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15979, '2021-09-09', 2242, 15408, 1506, 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 (15980, '2021-09-09', 1590, 15409, 1506, 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 (15981, '2021-09-09', 7802, 15410, 1506, NULL, '1.0000', '0.9200', '0.9200', '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 (15982, '2021-09-09', 2275, 15411, 1507, 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 (15983, '2021-09-09', 1407, 15412, 1507, NULL, '1.0000', '16.8000', '16.8000', '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 (15984, '2021-09-09', 1501, 15413, 1507, 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 (15985, '2021-09-09', 9204, 15414, 1507, NULL, '2.0000', '8.1600', '8.1600', '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 (15986, '2021-09-09', 2287, 15415, 1507, 29630, '1.0000', '1.1700', '1.1700', '3.0000', '3.0000', '98.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15987, '2021-09-09', 2109, 15416, 1507, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '33.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 (15988, '2021-09-09', 7777, 15417, 1507, NULL, '1.0000', '9.5000', '9.5000', '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 (15989, '2021-09-09', 2277, 15418, 1507, NULL, '1.0000', '0.7800', '0.7800', '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 (15990, '2021-09-09', 3012, 15419, 1507, 31087, '1.0000', '4.7000', '4.7000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (15991, '2021-09-09', 2288, 15420, 1507, 23684, '1.0000', '7.8600', '7.8600', '11.0000', '11.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 (15992, '2021-09-09', 1612, 15421, 1507, 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 (15993, '2021-09-09', 8448, 15422, 1507, 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 (15994, '2021-09-09', 2108, 15423, 1507, 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 (15995, '2021-09-09', 1519, 15424, 1507, 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 (15996, '2021-09-09', 2277, 15425, 1507, NULL, '1.0000', '0.7800', '0.7800', '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 (15997, '2021-09-09', 8810, 15426, 1507, NULL, '1.0000', '1.9200', '1.9200', '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 (15998, '2021-09-09', 7491, 15427, 1507, NULL, '1.0000', '4.8000', '4.8000', '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 (15999, '2021-09-09', 7482, 15428, 1507, NULL, '1.0000', '3.0500', '3.0500', '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 (16000, '2021-09-09', 2384, 15429, 1508, 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 (16001, '2021-09-09', 7864, 15430, 1508, NULL, '2.0000', '2.9000', '2.9000', '23.5000', '23.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 (16002, '2021-09-09', 9092, 15431, 1508, NULL, '3.0000', '5.2900', '5.2900', '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 (16003, '2021-09-09', 7848, 15432, 1508, NULL, '1.0000', '1.3500', '1.3500', '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 (16004, '2021-09-09', 2060, 15433, 1508, 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 (16005, '2021-09-09', 8456, 15434, 1508, NULL, '1.0000', '5.5400', '5.5400', '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 (16006, '2021-09-09', 7748, 15435, 1508, NULL, '1.0000', '33.9800', '33.9800', '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 (16007, '2021-09-09', 7774, 15436, 1508, NULL, '1.0000', '3.5000', '3.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 (16008, '2021-09-09', 7411, 15437, 1508, NULL, '2.0000', '1.3500', '1.3500', '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 (16009, '2021-09-09', 2656, 15438, 1508, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16010, '2021-09-09', 7757, 15439, 1508, NULL, '1.0000', '6.0000', '6.0000', '107.0000', '107.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16011, '2021-09-09', 9243, 15440, 1508, NULL, '1.0000', '6.9500', '6.9500', '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 (16012, '2021-09-09', 1690, 15441, 1508, 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 (16013, '2021-09-09', 2289, 15442, 1508, 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 (16014, '2021-09-09', 9388, 15443, 1508, NULL, '3.0000', '1.1400', '1.1400', '7.0000', '7.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 (16015, '2021-09-09', 8328, 15444, 1508, NULL, '1.0000', '32.2000', '32.2000', '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 (16016, '2021-09-09', 7411, 15445, 1508, NULL, '2.0000', '1.3500', '1.3500', '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 (16017, '2021-09-09', 8184, 15446, 1508, NULL, '4.0000', '0.8000', '0.8000', '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 (16018, '2021-09-09', 9092, 15447, 1508, NULL, '4.0000', '5.2900', '5.2900', '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 (16019, '2021-09-09', 8722, 15448, 1508, 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 (16020, '2021-09-09', 7428, 15449, 1508, NULL, '4.0000', '744.9056', '744.9056', '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 (16021, '2021-09-09', 8242, 15450, 1508, NULL, '1.0000', '0.4900', '0.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 (16022, '2021-09-09', 8000, 15451, 1508, NULL, '1.0000', '25.8200', '25.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 (16023, '2021-09-09', 7457, 15452, 1508, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16024, '2021-09-09', 8038, 15453, 1508, NULL, '1.0000', '10.0000', '10.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 (16025, '2021-09-09', 7353, 15454, 1508, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16026, '2021-09-09', 7524, 15455, 1508, NULL, '1.0000', '11.9500', '11.9500', '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 (16027, '2021-09-09', 7886, 15456, 1508, NULL, '1.0000', '16.1667', '16.1667', '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 (16028, '2021-09-09', 7411, 15457, 1508, NULL, '1.0000', '1.3500', '1.3500', '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 (16029, '2021-09-09', 7684, 15458, 1508, NULL, '1.0000', '9.0000', '9.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 (16030, '2021-09-09', 7411, 15459, 1508, NULL, '1.0000', '1.3500', '1.3500', '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 (16031, '2021-09-09', 8654, 15460, 1508, NULL, '5.0000', '5.8000', '5.8000', '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 (16032, '2021-09-09', 8101, 15461, 1508, NULL, '7.0000', '21.7000', '21.7000', '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 (16033, '2021-09-09', 7807, 15462, 1508, NULL, '1.0000', '12.0000', '12.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 (16034, '2021-09-09', 7641, 15463, 1508, NULL, '1.0000', '1.9000', '1.9000', '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 (16035, '2021-09-09', 7658, 15464, 1508, NULL, '2.0000', '10.1500', '10.1500', '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 (16036, '2021-09-09', 7447, 15465, 1508, NULL, '9.0000', '19.1100', '19.1100', '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 (16037, '2021-09-09', 7400, 15466, 1508, NULL, '1.0000', '14.5300', '14.5300', '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 (16038, '2021-09-09', 7639, 15467, 1508, 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 (16039, '2021-09-09', 7743, 15468, 1508, NULL, '2.0000', '7.3900', '7.3900', '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 (16040, '2021-09-09', 8254, 15469, 1508, 30187, '1.0000', '27.2800', '27.2800', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16041, '2021-09-09', 7411, 15470, 1508, NULL, '1.0000', '1.3500', '1.3500', '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 (16042, '2021-09-09', 7585, 15471, 1508, NULL, '4.0000', '6.2000', '6.2000', '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 (16043, '2021-09-09', 2975, 15472, 1508, NULL, '4.0000', '6.0000', '6.0000', '10.0000', '10.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 (16044, '2021-09-09', 7638, 15473, 1508, 30935, '1.0000', '7.2779', '7.2779', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16045, '2021-09-09', 8978, 15474, 1508, NULL, '1.0000', '0.6900', '0.6900', '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 (16046, '2021-09-09', 8034, 15475, 1508, NULL, '1.0000', '4.8900', '4.8900', '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 (16047, '2021-09-09', 7411, 15476, 1508, NULL, '1.0000', '1.3500', '1.3500', '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 (16048, '2021-09-09', 7832, 15477, 1508, 31008, '3.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16049, '2021-09-09', 7675, 15478, 1508, NULL, '1.0000', '11.4300', '11.4300', '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 (16050, '2021-09-09', 9267, 15479, 1508, 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 (16051, '2021-09-09', 7344, 15480, 1508, 29989, '3.0000', '94.2800', '94.2800', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16052, '2021-09-09', 7344, 15480, 1508, NULL, '2.0000', '94.2800', '94.2800', '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 (16053, '2021-09-09', 7780, 15481, 1508, NULL, '1.0000', '2.6000', '2.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 (16054, '2021-09-09', 7703, 15482, 1508, NULL, '2.0000', '22.9900', '22.9900', '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 (16055, '2021-09-09', 7641, 15483, 1508, NULL, '1.0000', '1.9000', '1.9000', '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 (16056, '2021-09-09', 7925, 15484, 1508, NULL, '1.0000', '11.8000', '11.8000', '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 (16057, '2021-09-09', 7526, 15485, 1508, NULL, '1.0000', '0.2400', '0.2400', '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 (16058, '2021-09-09', 7482, 15486, 1508, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16059, '2021-09-09', 2384, 15487, 1508, 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 (16060, '2021-09-09', 2298, 15488, 1508, 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 (16061, '2021-09-09', 2289, 15489, 1509, NULL, '5.0000', '0.2300', '0.2300', '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 (16062, '2021-09-09', 8515, 15490, 1509, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (16063, '2021-09-09', 7564, 15491, 1509, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16064, '2021-09-09', 8456, 15492, 1509, NULL, '1.0000', '5.5400', '5.5400', '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 (16065, '2021-09-09', 7642, 15493, 1509, NULL, '1.0000', '2.6900', '2.6900', '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 (16066, '2021-09-09', 2990, 15494, 1509, 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 (16067, '2021-09-09', 2060, 15495, 1509, 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 (16068, '2021-09-09', 9092, 15496, 1509, NULL, '1.0000', '5.2900', '5.2900', '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 (16069, '2021-09-09', 9160, 15497, 1509, NULL, '1.0000', '15.0000', '15.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 (16070, '2021-09-09', 9092, 15498, 1509, NULL, '1.0000', '5.2900', '5.2900', '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 (16071, '2021-09-09', 2990, 15499, 1509, 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 (16072, '2021-09-09', 7411, 15500, 1510, NULL, '1.0000', '1.3500', '1.3500', '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 (16073, '2021-09-09', 7354, 15501, 1511, NULL, '1.0000', '18.0000', '18.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 (16074, '2021-09-09', 2283, 15502, 1511, 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 (16075, '2021-09-09', 2521, 15503, 1511, 22548, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '1.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 (16076, '2021-09-09', 8566, 15504, 1511, NULL, '1.0000', '2.5000', '2.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 (16077, '2021-09-09', 2712, 15505, 1512, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '66.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16078, '2021-09-09', 2693, 15506, 1512, 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 (16079, '2021-09-09', 9368, 15507, 1512, NULL, '1.0000', '9.3000', '9.3000', '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 (16080, '2021-09-09', 2015, 15508, 1512, 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 (16081, '2021-09-09', 2313, 15509, 1512, NULL, '1.0000', '8.7000', '8.7000', '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 (16082, '2021-09-09', 1824, 15510, 1512, 32867, '1.0000', '16.4742', '16.4742', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16083, '2021-09-09', 2345, 15511, 1512, 18656, '1.0000', '7.6400', '7.6400', '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 (16084, '2021-09-09', 2345, 15511, 1512, 10554, '1.0000', '7.6400', '7.6400', '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 (16085, '2021-09-09', 1602, 15512, 1512, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '38.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16086, '2021-09-09', 8354, 15513, 1512, NULL, '2.0000', '23.0000', '23.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 (16087, '2021-09-09', 9481, 15514, 1512, 32581, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16088, '2021-09-09', 2036, 15515, 1512, 4401, '2.0000', '8.0000', '8.0000', '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 (16089, '2021-09-09', 1455, 15516, 1513, 32087, '2.0000', '4.0000', '4.0000', '7.0000', '7.0000', '58.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16090, '2021-09-09', 2344, 15517, 1513, 29809, '1.0000', '20.2250', '20.2250', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16091, '2021-09-09', 1411, 15518, 1513, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '19.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16092, '2021-09-09', 2327, 15519, 1513, 5084, '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 (16093, '2021-09-10', 9500, 15520, 1514, NULL, '1.0000', '30.0000', '30.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 (16094, '2021-09-10', 1411, 15521, 1515, NULL, '1.0000', '25.9000', '25.9000', '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 (16095, '2021-09-10', 2486, 15522, 1515, 21782, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '1.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 (16096, '2021-09-10', 1824, 15523, 1515, NULL, '1.0000', '5.2000', '5.2000', '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 (16097, '2021-09-10', 1889, 15524, 1515, 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 (16098, '2021-09-10', 2712, 15525, 1515, 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 (16099, '2021-09-10', 1557, 15526, 1515, 1628, '-1.0000', '7.9500', '7.9500', '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 (16100, '2021-09-10', 1557, 15526, 1515, NULL, '2.0000', '7.9500', '7.9500', '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 (16101, '2021-09-10', 2169, 15527, 1515, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (16102, '2021-09-10', 1822, 15528, 1515, 8225, '-30.0000', '2.4000', '2.4000', '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 (16103, '2021-09-10', 1822, 15528, 1515, NULL, '50.0000', '2.4000', '2.4000', '3.5000', '3.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16104, '2021-09-10', 2020, 15529, 1515, 10164, '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 (16105, '2021-09-10', 2327, 15530, 1515, 5083, '-5.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 (16106, '2021-09-10', 2327, 15530, 1515, NULL, '6.0000', '4.5000', '4.5000', '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 (16107, '2021-09-10', 2556, 15531, 1515, 7196, '-22.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 (16108, '2021-09-10', 2556, 15531, 1515, NULL, '23.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-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 (16109, '2021-09-10', 2668, 15532, 1515, 22273, '1.0000', '7.9800', '7.9800', '10.5000', '10.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 (16110, '2021-09-10', 2712, 15533, 1515, 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 (16111, '2021-09-10', 1504, 15534, 1515, 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 (16112, '2021-09-10', 2818, 15535, 1515, NULL, '1.0000', '14.0000', '14.0000', '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 (16113, '2021-09-10', 3018, 15536, 1515, 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 (16114, '2021-09-10', 2020, 15537, 1515, 10164, '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 (16115, '2021-09-10', 1635, 15538, 1516, 31720, '5.0000', '56.1429', '56.1429', '17.0000', '17.0000', '10.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16116, '2021-09-10', 7779, 15539, 1517, NULL, '1.0000', '0.6200', '0.6200', '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 (16117, '2021-09-10', 1809, 15540, 1517, 32922, '1.0000', '10.5000', '10.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16118, '2021-09-10', 8915, 15541, 1517, NULL, '1.0000', '29.3500', '29.3500', '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 (16119, '2021-09-10', 7780, 15542, 1517, NULL, '1.0000', '2.6000', '2.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 (16120, '2021-09-10', 1501, 15543, 1517, 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 (16121, '2021-09-10', 1338, 15544, 1517, NULL, '2.0000', '4.0000', '4.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 (16122, '2021-09-10', 7660, 15545, 1517, NULL, '1.0000', '3.6000', '3.6000', '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 (16123, '2021-09-10', 7514, 15546, 1517, NULL, '2.0000', '7.8800', '7.8800', '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 (16124, '2021-09-10', 7675, 15547, 1517, NULL, '1.0000', '11.4300', '11.4300', '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 (16125, '2021-09-10', 7685, 15548, 1517, NULL, '2.0000', '31.2000', '31.2000', '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 (16126, '2021-09-10', 1980, 15549, 1517, 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 (16127, '2021-09-10', 1974, 15550, 1517, 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 (16128, '2021-09-10', 9417, 15551, 1517, 31914, '1.0000', '1.6000', '1.6000', '2.1100', '2.1100', '19.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16129, '2021-09-10', 8158, 15552, 1517, NULL, '1.0000', '18.7000', '18.7000', '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 (16130, '2021-09-10', 8288, 15553, 1517, NULL, '5.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (16131, '2021-09-10', 7912, 15554, 1517, NULL, '1.0000', '5.5000', '5.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 (16132, '2021-09-10', 8134, 15555, 1517, NULL, '1.0000', '5.2600', '5.2600', '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 (16133, '2021-09-10', 7695, 15556, 1517, NULL, '2.0000', '3.9400', '3.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 (16134, '2021-09-10', 9478, 15557, 1517, 32800, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16135, '2021-09-10', 7719, 15558, 1517, NULL, '1.0000', '5.5000', '5.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 (16136, '2021-09-10', 7675, 15559, 1517, NULL, '1.0000', '11.4300', '11.4300', '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 (16137, '2021-09-10', 8548, 15560, 1517, NULL, '1.0000', '12.0000', '12.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 (16138, '2021-09-10', 7710, 15561, 1517, NULL, '2.0000', '26.0000', '26.0000', '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 (16139, '2021-09-10', 8454, 15562, 1517, NULL, '1.0000', '5.1700', '5.1700', '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 (16140, '2021-09-10', 8743, 15563, 1517, NULL, '1.0000', '8.5000', '8.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 (16141, '2021-09-10', 9313, 15564, 1517, NULL, '1.0000', '12.0000', '12.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 (16142, '2021-09-10', 7444, 15565, 1517, 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 (16143, '2021-09-10', 8966, 15566, 1517, 30929, '2.0000', '6.2300', '6.2300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16144, '2021-09-10', 1520, 15567, 1517, 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 (16145, '2021-09-10', 7576, 15568, 1517, NULL, '1.0000', '6.9100', '6.9100', '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 (16146, '2021-09-10', 9474, 15569, 1517, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16147, '2021-09-10', 8595, 15570, 1517, NULL, '1.0000', '4.2100', '4.2100', '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 (16148, '2021-09-10', 7675, 15571, 1517, NULL, '1.0000', '11.4300', '11.4300', '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 (16149, '2021-09-10', 7886, 15572, 1517, NULL, '1.0000', '16.1667', '16.1667', '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 (16150, '2021-09-10', 7619, 15573, 1517, NULL, '1.0000', '4.3900', '4.3900', '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 (16151, '2021-09-10', 7641, 15574, 1517, NULL, '1.0000', '1.9000', '1.9000', '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 (16152, '2021-09-10', 2060, 15575, 1517, 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 (16153, '2021-09-10', 7780, 15576, 1517, NULL, '1.0000', '2.6000', '2.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 (16154, '2021-09-10', 7710, 15577, 1517, NULL, '2.0000', '26.0000', '26.0000', '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 (16155, '2021-09-10', 7881, 15578, 1517, NULL, '1.0000', '32.7700', '32.7700', '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 (16156, '2021-09-10', 1809, 15579, 1517, 32922, '1.0000', '10.5000', '10.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16157, '2021-09-10', 8168, 15580, 1517, NULL, '6.0000', '5.2500', '5.2500', '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 (16158, '2021-09-10', 9092, 15581, 1517, NULL, '6.0000', '5.2900', '5.2900', '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 (16159, '2021-09-10', 7674, 15582, 1517, NULL, '1.0000', '14.5000', '14.5000', '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 (16160, '2021-09-10', 1532, 15583, 1517, 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 (16161, '2021-09-10', 9468, 15584, 1517, 32155, '2.0000', '17.5000', '17.5000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16162, '2021-09-10', 2490, 15585, 1517, NULL, '1.0000', '8.6300', '8.6300', '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 (16163, '2021-09-10', 9177, 15586, 1517, NULL, '10.0000', '0.8000', '0.8000', '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 (16164, '2021-09-10', 7802, 15587, 1517, NULL, '3.0000', '0.9200', '0.9200', '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 (16165, '2021-09-10', 7674, 15588, 1517, NULL, '2.0000', '14.5000', '14.5000', '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 (16166, '2021-09-10', 7385, 15589, 1517, NULL, '4.0000', '12.5000', '12.5000', '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 (16167, '2021-09-10', 8746, 15590, 1517, 32134, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16168, '2021-09-10', 8340, 15591, 1517, NULL, '10.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (16169, '2021-09-10', 9089, 15592, 1517, 32139, '1.0000', '3.8000', '3.8000', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16170, '2021-09-10', 2315, 15593, 1518, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '290.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16171, '2021-09-10', 7592, 15594, 1518, NULL, '1.0000', '8.6500', '8.6500', '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 (16172, '2021-09-10', 1501, 15595, 1518, 23580, '1.0000', '1566.1965', '1566.1965', '3.0000', '3.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 (16173, '2021-09-10', 2169, 15596, 1518, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16174, '2021-09-10', 2602, 15597, 1518, 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 (16175, '2021-09-10', 1999, 15598, 1518, 21834, '1.0000', '6.0000', '6.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 (16176, '2021-09-10', 8918, 15599, 1518, NULL, '1.0000', '10.4000', '10.4000', '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 (16177, '2021-09-10', 1806, 15600, 1518, 24345, '2.0000', '77.6260', '77.6260', '38.0000', '38.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 (16178, '2021-09-10', 2360, 15601, 1518, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (16179, '2021-09-10', 1328, 15602, 1518, 3366, '1.0000', '3.1500', '3.1500', '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 (16180, '2021-09-10', 2817, 15603, 1518, 22483, '8.0000', '1.8000', '1.8000', '2.5000', '2.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 (16181, '2021-09-10', 2315, 15604, 1518, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '290.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16182, '2021-09-10', 9474, 15605, 1518, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16183, '2021-09-10', 2229, 15606, 1518, 7204, '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 (16184, '2021-09-10', 2409, 15607, 1518, 4818, '1.0000', '2.3100', '2.3100', '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 (16185, '2021-09-10', 8437, 15608, 1518, NULL, '1.0000', '10.0000', '10.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 (16186, '2021-09-10', 1839, 15609, 1518, 24116, '1.0000', '6.1500', '6.1500', '8.0000', '8.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 (16187, '2021-09-10', 1501, 15610, 1518, 23580, '1.0000', '1566.1965', '1566.1965', '3.0000', '3.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 (16188, '2021-09-10', 7524, 15611, 1518, NULL, '1.0000', '11.9500', '11.9500', '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 (16189, '2021-09-10', 7457, 15612, 1518, NULL, '2.0000', '2.3500', '2.3500', '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 (16190, '2021-09-10', 2167, 15613, 1518, 31978, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16191, '2021-09-10', 7776, 15614, 1518, NULL, '1.0000', '8.0000', '8.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 (16192, '2021-09-10', 1386, 15615, 1518, 31710, '2.0000', '55.8000', '55.8000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16193, '2021-09-10', 2393, 15616, 1518, 31994, '2.0000', '-1.0985', '-1.0985', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16194, '2021-09-10', 2681, 15617, 1518, 32858, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16195, '2021-09-10', 8594, 15618, 1519, 32594, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16196, '2021-09-10', 1783, 15619, 1520, 32816, '1.0000', '51.5264', '51.5264', '11.0000', '11.0000', '14.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16197, '2021-09-10', 1407, 15620, 1520, 33038, '1.0000', '17.0116', '17.0116', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16198, '2021-09-10', 2339, 15621, 1520, 3892, '2.0000', '7.2300', '7.2300', '9.5000', '9.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 (16199, '2021-09-10', 2617, 15622, 1520, 29804, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16200, '2021-09-10', 1851, 15623, 1520, 33215, '1.0000', '13.2013', '13.2013', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16201, '2021-09-10', 7383, 15624, 1520, NULL, '1.0000', '1.9700', '1.9700', '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 (16202, '2021-09-10', 3013, 15625, 1520, 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 (16203, '2021-09-10', 1824, 15626, 1520, 32867, '1.0000', '16.4742', '16.4742', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16204, '2021-09-10', 1602, 15627, 1521, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '37.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16205, '2021-09-10', 7756, 15628, 1521, NULL, '1.0000', '2.5000', '2.5000', '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 (16206, '2021-09-10', 7831, 15629, 1522, NULL, '1.0000', '19.0000', '19.0000', '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 (16207, '2021-09-10', 8562, 15630, 1522, NULL, '1.0000', '12.0000', '12.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 (16208, '2021-09-10', 1837, 15631, 1522, 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 (16209, '2021-09-10', 9387, 15632, 1522, NULL, '1.0000', '6.0000', '6.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 (16210, '2021-09-10', 7464, 15633, 1522, NULL, '1.0000', '2.2800', '2.2800', '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 (16211, '2021-09-10', 7848, 15634, 1522, NULL, '1.0000', '1.3500', '1.3500', '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 (16212, '2021-09-10', 8962, 15635, 1522, NULL, '1.0000', '0.1000', '0.1000', '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 (16213, '2021-09-10', 2706, 15636, 1522, 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 (16214, '2021-09-10', 9409, 15637, 1522, NULL, '1.0000', '11.0000', '11.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 (16215, '2021-09-10', 9092, 15638, 1522, NULL, '1.0000', '5.2900', '5.2900', '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 (16216, '2021-09-10', 8434, 15639, 1522, NULL, '1.0000', '27.4000', '27.4000', '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 (16217, '2021-09-10', 8664, 15640, 1522, NULL, '1.0000', '0.3500', '0.3500', '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 (16218, '2021-09-10', 7917, 15641, 1522, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (16219, '2021-09-10', 7753, 15642, 1522, NULL, '1.0000', '3.1400', '3.1400', '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 (16220, '2021-09-10', 7673, 15643, 1522, NULL, '1.0000', '2.2000', '2.2000', '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 (16221, '2021-09-10', 7961, 15644, 1522, 31024, '1.0000', '9.5000', '9.5000', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16222, '2021-09-10', 7674, 15645, 1522, NULL, '1.0000', '14.5000', '14.5000', '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 (16223, '2021-09-10', 7807, 15646, 1522, NULL, '1.0000', '12.0000', '12.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 (16224, '2021-09-10', 7593, 15647, 1522, NULL, '1.0000', '2.4500', '2.4500', '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 (16225, '2021-09-10', 7848, 15648, 1522, NULL, '1.0000', '1.3500', '1.3500', '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 (16226, '2021-09-10', 8393, 15649, 1522, 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 (16227, '2021-09-10', 7744, 15650, 1522, NULL, '3.0000', '1.9000', '1.9000', '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 (16228, '2021-09-10', 7524, 15651, 1522, NULL, '1.0000', '11.9500', '11.9500', '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 (16229, '2021-09-10', 7672, 15652, 1522, NULL, '1.0000', '1.0200', '1.0200', '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 (16230, '2021-09-10', 8039, 15653, 1522, NULL, '1.0000', '34.6600', '34.6600', '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 (16231, '2021-09-10', 7431, 15654, 1522, 30047, '1.0000', '4.6500', '4.6500', '24.0000', '24.0000', '11.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16232, '2021-09-10', 7411, 15655, 1522, NULL, '1.0000', '1.3500', '1.3500', '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 (16233, '2021-09-10', 3059, 15656, 1522, NULL, '3.0000', '0.4500', '0.4500', '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 (16234, '2021-09-10', 8941, 15657, 1522, NULL, '1.0000', '12.0000', '12.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 (16235, '2021-09-10', 7477, 15658, 1522, NULL, '3.0000', '60.0000', '60.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 (16236, '2021-09-10', 8345, 15659, 1522, NULL, '1.0000', '22.0000', '22.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 (16237, '2021-09-10', 2289, 15660, 1522, 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 (16238, '2021-09-10', 8594, 15661, 1522, 32809, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16239, '2021-09-10', 2226, 15662, 1522, 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 (16240, '2021-09-10', 7672, 15663, 1522, NULL, '1.0000', '1.0200', '1.0200', '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 (16241, '2021-09-10', 8456, 15664, 1522, NULL, '1.0000', '5.5400', '5.5400', '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 (16242, '2021-09-10', 2060, 15665, 1522, 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 (16243, '2021-09-10', 2287, 15666, 1522, NULL, '4.0000', '2.3000', '2.3000', '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 (16244, '2021-09-10', 8328, 15667, 1522, NULL, '1.0000', '32.2000', '32.2000', '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 (16245, '2021-09-10', 7477, 15668, 1522, NULL, '3.0000', '60.0000', '60.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 (16246, '2021-09-10', 1787, 15669, 1522, 31032, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16247, '2021-09-10', 1787, 15669, 1522, NULL, '1.0000', '0.8100', '0.8100', '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 (16248, '2021-09-10', 2991, 15670, 1522, NULL, '2.0000', '0.5700', '0.5700', '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 (16249, '2021-09-10', 7524, 15671, 1522, NULL, '1.0000', '11.9500', '11.9500', '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 (16250, '2021-09-10', 7672, 15672, 1522, NULL, '1.0000', '1.0200', '1.0200', '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 (16251, '2021-09-10', 1510, 15673, 1522, 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 (16252, '2021-09-10', 8328, 15674, 1522, NULL, '1.0000', '32.2000', '32.2000', '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 (16253, '2021-09-10', 9272, 15675, 1522, NULL, '1.0000', '3.1000', '3.1000', '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 (16254, '2021-09-10', 7852, 15676, 1522, NULL, '1.0000', '6.1100', '6.1100', '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 (16255, '2021-09-10', 7899, 15677, 1522, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16256, '2021-09-10', 7820, 15678, 1522, NULL, '1.0000', '8.4000', '8.4000', '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 (16257, '2021-09-10', 7532, 15679, 1522, NULL, '1.0000', '9.0500', '9.0500', '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 (16258, '2021-09-10', 1810, 15680, 1522, 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 (16259, '2021-09-10', 7889, 15681, 1522, NULL, '1.0000', '15.0000', '15.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 (16260, '2021-09-10', 7672, 15682, 1522, NULL, '1.0000', '1.0200', '1.0200', '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 (16261, '2021-09-10', 7514, 15683, 1522, NULL, '1.0000', '7.8800', '7.8800', '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 (16262, '2021-09-10', 8133, 15684, 1522, 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 (16263, '2021-09-10', 8300, 15685, 1522, NULL, '3.0000', '7.4300', '7.4300', '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 (16264, '2021-09-10', 2384, 15686, 1522, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (16265, '2021-09-10', 7911, 15687, 1522, NULL, '1.0000', '4.3700', '4.3700', '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 (16266, '2021-09-10', 9092, 15688, 1522, NULL, '1.0000', '5.2900', '5.2900', '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 (16267, '2021-09-10', 9410, 15689, 1522, NULL, '1.0000', '20.0000', '20.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 (16268, '2021-09-10', 8429, 15690, 1522, NULL, '1.0000', '16.0000', '16.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 (16269, '2021-09-10', 7674, 15691, 1522, NULL, '1.0000', '14.5000', '14.5000', '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 (16270, '2021-09-10', 8654, 15692, 1522, NULL, '1.0000', '5.8000', '5.8000', '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 (16271, '2021-09-10', 8037, 15693, 1522, NULL, '1.0000', '13.0000', '13.0000', '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 (16272, '2021-09-10', 8868, 15694, 1522, NULL, '5.0000', '15.5000', '15.5000', '0.6000', '0.6000', '-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 (16273, '2021-09-11', 2379, 15695, 1523, 4385, '1.0000', '1.5900', '1.5900', '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 (16274, '2021-09-11', 9481, 15696, 1523, 32581, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16275, '2021-09-11', 2039, 15697, 1523, 18356, '2.0000', '9.0000', '9.0000', '14.0000', '14.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 (16276, '2021-09-11', 1532, 15698, 1523, 1539, '3.0000', '90.0000', '90.0000', '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 (16277, '2021-09-11', 1531, 15699, 1523, 1538, '3.0000', '0.9600', '0.9600', '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 (16278, '2021-09-11', 1841, 15700, 1523, 24123, '6.0000', '0.3700', '0.3700', '0.5000', '0.5000', '21.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 (16279, '2021-09-11', 7544, 15701, 1523, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (16280, '2021-09-11', 1410, 15702, 1523, 31729, '1.0000', '2.2220', '2.2220', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16281, '2021-09-11', 2948, 15703, 1523, NULL, '2.0000', '0.9000', '0.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 (16282, '2021-09-11', 2363, 15704, 1523, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16283, '2021-09-11', 1791, 15705, 1523, 32879, '2.0000', '10.8460', '10.8460', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16284, '2021-09-11', 1780, 15706, 1523, 31706, '1.0000', '35.6000', '35.6000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16285, '2021-09-11', 1888, 15707, 1523, 33233, '1.0000', '-42.1250', '-42.1250', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16286, '2021-09-11', 2713, 15708, 1523, 32592, '3.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16287, '2021-09-11', 1960, 15709, 1523, 5832, '5.0000', '3.5600', '3.5600', '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 (16288, '2021-09-11', 1960, 15709, 1523, 4925, '1.0000', '3.5600', '3.5600', '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 (16289, '2021-09-11', 2809, 15710, 1523, 17782, '1.0000', '28.0000', '28.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 (16290, '2021-09-11', 8769, 15711, 1523, 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 (16291, '2021-09-11', 2656, 15712, 1523, 32590, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16292, '2021-09-11', 1629, 15713, 1523, 22214, '2.0000', '13.7900', '13.7900', '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 (16293, '2021-09-11', 7819, 15714, 1524, NULL, '1.0000', '9.5000', '9.5000', '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 (16294, '2021-09-11', 7514, 15715, 1524, NULL, '1.0000', '7.8800', '7.8800', '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 (16295, '2021-09-11', 9028, 15716, 1524, NULL, '1.0000', '9.0000', '9.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 (16296, '2021-09-11', 7763, 15717, 1524, 30203, '1.0000', '1.1300', '1.1300', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16297, '2021-09-11', 8187, 15718, 1524, NULL, '4.0000', '14.3900', '14.3900', '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 (16298, '2021-09-11', 8276, 15719, 1524, NULL, '2.0000', '4.7300', '4.7300', '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 (16299, '2021-09-11', 8166, 15720, 1524, NULL, '1.0000', '4.6000', '4.6000', '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 (16300, '2021-09-11', 9092, 15721, 1524, NULL, '4.0000', '5.2900', '5.2900', '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 (16301, '2021-09-11', 9089, 15722, 1524, 32139, '1.0000', '3.8000', '3.8000', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16302, '2021-09-11', 1751, 15723, 1524, NULL, '1.0000', '3.6900', '3.6900', '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 (16303, '2021-09-11', 8000, 15724, 1524, NULL, '1.0000', '25.8200', '25.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 (16304, '2021-09-11', 8452, 15725, 1524, NULL, '1.0000', '4.1500', '4.1500', '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 (16305, '2021-09-11', 7867, 15726, 1524, 30193, '2.0000', '2.7700', '2.7700', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16306, '2021-09-11', 9275, 15727, 1524, NULL, '2.0000', '6.3000', '6.3000', '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 (16307, '2021-09-11', 2995, 15728, 1524, NULL, '1.0000', '39.7000', '39.7000', '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 (16308, '2021-09-11', 9177, 15729, 1524, NULL, '10.0000', '0.8000', '0.8000', '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 (16309, '2021-09-11', 9394, 15730, 1524, NULL, '1.0000', '5.5000', '5.5000', '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 (16310, '2021-09-11', 9393, 15731, 1524, NULL, '2.0000', '15.0000', '15.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 (16311, '2021-09-11', 2699, 15732, 1524, 32805, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16312, '2021-09-11', 7518, 15733, 1524, NULL, '5.0000', '-21.7700', '-21.7700', '10.5000', '10.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 (16313, '2021-09-11', 2865, 15734, 1524, 31910, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16314, '2021-09-11', 7900, 15735, 1524, NULL, '1.0000', '2.5000', '2.5000', '3.2000', '3.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 (16315, '2021-09-11', 7509, 15736, 1524, 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 (16316, '2021-09-11', 2315, 15737, 1524, NULL, '7.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-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 (16317, '2021-09-11', 2227, 15738, 1524, 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 (16318, '2021-09-11', 7400, 15739, 1524, NULL, '1.0000', '14.5300', '14.5300', '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 (16319, '2021-09-11', 9092, 15740, 1524, NULL, '8.0000', '5.2900', '5.2900', '0.5000', '0.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 (16320, '2021-09-11', 8140, 15741, 1524, NULL, '1.0000', '6.0500', '6.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 (16321, '2021-09-11', 8744, 15742, 1524, 32142, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16322, '2021-09-11', 7523, 15743, 1524, NULL, '1.0000', '1.8300', '1.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 (16323, '2021-09-11', 2656, 15744, 1524, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16324, '2021-09-11', 7590, 15745, 1524, NULL, '1.0000', '4.3600', '4.3600', '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 (16325, '2021-09-11', 2227, 15746, 1524, 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 (16326, '2021-09-11', 8085, 15747, 1524, NULL, '3.0000', '14.0000', '14.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 (16327, '2021-09-11', 1867, 15748, 1524, NULL, '1.0000', '10.0500', '10.0500', '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 (16328, '2021-09-11', 7385, 15749, 1524, NULL, '5.0000', '12.5000', '12.5000', '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 (16329, '2021-09-11', 9156, 15750, 1524, NULL, '1.0000', '5.8900', '5.8900', '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 (16330, '2021-09-11', 8666, 15751, 1524, 32808, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16331, '2021-09-11', 9445, 15752, 1524, 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 (16332, '2021-09-11', 7640, 15753, 1524, NULL, '1.0000', '5.8900', '5.8900', '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 (16333, '2021-09-11', 7959, 15754, 1524, NULL, '2.0000', '9.6000', '9.6000', '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 (16334, '2021-09-11', 8889, 15755, 1525, 31654, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16335, '2021-09-11', 7524, 15756, 1525, NULL, '1.0000', '11.9500', '11.9500', '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 (16336, '2021-09-11', 9405, 15757, 1526, NULL, '1.0000', '5.4000', '5.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 (16337, '2021-09-11', 7591, 15758, 1526, NULL, '1.0000', '2.7500', '2.7500', '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 (16338, '2021-09-11', 7886, 15759, 1527, NULL, '1.0000', '16.1667', '16.1667', '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 (16339, '2021-09-11', 7952, 15760, 1527, NULL, '1.0000', '1.4000', '1.4000', '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 (16340, '2021-09-11', 7353, 15761, 1527, 30931, '2.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16341, '2021-09-11', 9092, 15762, 1527, NULL, '1.0000', '5.2900', '5.2900', '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 (16342, '2021-09-11', 7514, 15763, 1527, NULL, '1.0000', '7.8800', '7.8800', '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 (16343, '2021-09-11', 8193, 15764, 1527, NULL, '1.0000', '25.8000', '25.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 (16344, '2021-09-11', 7848, 15765, 1527, NULL, '1.0000', '1.3500', '1.3500', '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 (16345, '2021-09-11', 7672, 15766, 1527, NULL, '2.0000', '1.0200', '1.0200', '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 (16346, '2021-09-11', 7703, 15767, 1527, NULL, '2.0000', '22.9900', '22.9900', '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 (16347, '2021-09-11', 7473, 15768, 1527, NULL, '4.0000', '9.2200', '9.2200', '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 (16348, '2021-09-11', 8515, 15769, 1527, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (16349, '2021-09-11', 7460, 15770, 1527, NULL, '2.0000', '51.2000', '51.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 (16350, '2021-09-11', 1947, 15771, 1527, NULL, '1.0000', '1250.5815', '1250.5815', '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 (16351, '2021-09-11', 7819, 15772, 1527, NULL, '1.0000', '9.5000', '9.5000', '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 (16352, '2021-09-11', 7411, 15773, 1527, NULL, '1.0000', '1.3500', '1.3500', '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 (16353, '2021-09-11', 7946, 15774, 1527, NULL, '1.0000', '0.5200', '0.5200', '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 (16354, '2021-09-11', 9092, 15775, 1527, NULL, '7.0000', '5.2900', '5.2900', '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 (16355, '2021-09-11', 8991, 15776, 1527, NULL, '2.0000', '18.0000', '18.0000', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16356, '2021-09-11', 9154, 15777, 1527, 31011, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16357, '2021-09-11', 7385, 15778, 1527, NULL, '3.0000', '12.5000', '12.5000', '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 (16358, '2021-09-11', 7784, 15779, 1527, NULL, '1.0000', '7.4600', '7.4600', '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 (16359, '2021-09-11', 7612, 15780, 1527, NULL, '1.0000', '46.0000', '46.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 (16360, '2021-09-11', 7879, 15781, 1527, NULL, '1.0000', '1.9800', '1.9800', '1.8000', '1.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 (16361, '2021-09-11', 7715, 15782, 1527, 30500, '4.0000', '1.8900', '1.8900', '6.0000', '6.0000', '35.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16362, '2021-09-11', 8888, 15783, 1527, 31655, '2.0000', '28.0000', '28.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16363, '2021-09-11', 8319, 15784, 1527, 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 (16364, '2021-09-11', 2440, 15785, 1527, 31657, '1.0000', '5.1629', '5.1629', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16365, '2021-09-11', 8835, 15786, 1527, NULL, '2.0000', '5.8900', '5.8900', '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 (16366, '2021-09-11', 7853, 15787, 1527, NULL, '1.0000', '35.0000', '35.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 (16367, '2021-09-11', 7524, 15788, 1527, NULL, '2.0000', '11.9500', '11.9500', '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 (16368, '2021-09-11', 7782, 15789, 1527, NULL, '1.0000', '5.0000', '5.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 (16369, '2021-09-11', 9084, 15790, 1527, 32133, '1.0000', '6.2167', '6.2167', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16370, '2021-09-11', 8772, 15791, 1527, NULL, '1.0000', '2.0800', '2.0800', '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 (16371, '2021-09-11', 8743, 15792, 1527, NULL, '1.0000', '8.5000', '8.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 (16372, '2021-09-11', 7675, 15793, 1527, NULL, '1.0000', '11.4300', '11.4300', '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 (16373, '2021-09-11', 7693, 15794, 1527, NULL, '1.0000', '6.0000', '6.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 (16374, '2021-09-11', 8135, 15795, 1527, NULL, '1.0000', '13.9000', '13.9000', '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 (16375, '2021-09-11', 1647, 15796, 1527, 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 (16376, '2021-09-11', 7532, 15797, 1527, NULL, '1.0000', '9.0500', '9.0500', '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 (16377, '2021-09-11', 7473, 15798, 1527, NULL, '8.0000', '9.2200', '9.2200', '0.6000', '0.6000', '-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 (16378, '2021-09-11', 8763, 15799, 1527, 32138, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16379, '2021-09-11', 8187, 15800, 1527, NULL, '2.0000', '14.3900', '14.3900', '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 (16380, '2021-09-11', 2224, 15801, 1527, 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 (16381, '2021-09-11', 2226, 15802, 1527, NULL, '2.0000', '14.0000', '14.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 (16382, '2021-09-11', 7728, 15803, 1527, 32806, '2.0000', '3.1200', '3.1200', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16383, '2021-09-11', 7411, 15804, 1527, NULL, '1.0000', '1.3500', '1.3500', '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 (16384, '2021-09-11', 8810, 15805, 1527, 30220, '1.0000', '1.9200', '1.9200', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16385, '2021-09-11', 9496, 15806, 1527, 33078, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16386, '2021-09-11', 9150, 15807, 1527, NULL, '1.0000', '50.0000', '50.0000', '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 (16387, '2021-09-11', 9092, 15808, 1527, NULL, '1.0000', '5.2900', '5.2900', '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 (16388, '2021-09-11', 8247, 15809, 1527, NULL, '9.0000', '10.0000', '10.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 (16389, '2021-09-11', 7711, 15810, 1527, NULL, '1.0000', '0.3900', '0.3900', '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 (16390, '2021-09-11', 2950, 15811, 1527, 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 (16391, '2021-09-11', 7560, 15812, 1527, NULL, '1.0000', '4.4500', '4.4500', '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 (16392, '2021-09-11', 9474, 15813, 1527, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16393, '2021-09-11', 9453, 15814, 1527, 31013, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16394, '2021-09-11', 8288, 15815, 1527, NULL, '8.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (16395, '2021-09-11', 9048, 15816, 1527, NULL, '1.0000', '30.0000', '30.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 (16396, '2021-09-11', 9103, 15817, 1527, 31036, '1.0000', '32.6700', '32.6700', '43.0000', '43.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16397, '2021-09-11', 8140, 15818, 1527, NULL, '2.0000', '6.0500', '6.0500', '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 (16398, '2021-09-11', 7412, 15819, 1527, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16399, '2021-09-11', 8395, 15820, 1527, NULL, '1.0000', '0.9700', '0.9700', '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 (16400, '2021-09-11', 7666, 15821, 1527, NULL, '1.0000', '10.0000', '10.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 (16401, '2021-09-11', 9160, 15822, 1527, NULL, '1.0000', '15.0000', '15.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 (16402, '2021-09-11', 7509, 15823, 1527, 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 (16403, '2021-09-11', 8596, 15824, 1527, NULL, '1.0000', '17.0000', '17.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 (16404, '2021-09-11', 9399, 15825, 1527, NULL, '1.0000', '4.4000', '4.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 (16405, '2021-09-11', 1388, 15826, 1527, 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 (16406, '2021-09-11', 9456, 15827, 1527, 30936, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16407, '2021-09-11', 7848, 15828, 1527, NULL, '1.0000', '1.3500', '1.3500', '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 (16408, '2021-09-11', 8166, 15829, 1527, NULL, '1.0000', '4.6000', '4.6000', '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 (16409, '2021-09-11', 8548, 15830, 1527, NULL, '1.0000', '12.0000', '12.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 (16410, '2021-09-11', 8413, 15831, 1527, NULL, '1.0000', '3.0000', '3.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 (16411, '2021-09-11', 7427, 15832, 1527, 30042, '1.0000', '3.4000', '3.4000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16412, '2021-09-11', 7641, 15833, 1527, NULL, '1.0000', '1.9000', '1.9000', '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 (16413, '2021-09-11', 9092, 15834, 1528, NULL, '1.0000', '5.2900', '5.2900', '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 (16414, '2021-09-11', 2964, 15835, 1528, 32151, '1.0000', '5.8000', '5.8000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16415, '2021-09-11', 2990, 15836, 1528, 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 (16416, '2021-09-11', 7668, 15837, 1528, NULL, '1.0000', '19.6600', '19.6600', '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 (16417, '2021-09-11', 9092, 15838, 1528, NULL, '1.0000', '5.2900', '5.2900', '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 (16418, '2021-09-11', 7411, 15839, 1528, NULL, '1.0000', '1.3500', '1.3500', '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 (16419, '2021-09-11', 7954, 15840, 1528, NULL, '2.0000', '21.0000', '21.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 (16420, '2021-09-11', 2989, 15841, 1528, 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 (16421, '2021-09-11', 3057, 15842, 1529, 33017, '2.0000', '3.2700', '3.2700', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16422, '2021-09-11', 2248, 15843, 1529, 32048, '2.0000', '3.0952', '3.0952', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16423, '2021-09-11', 2237, 15844, 1529, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (16424, '2021-09-11', 2025, 15845, 1529, 21808, '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 (16425, '2021-09-11', 8773, 15846, 1529, 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 (16426, '2021-09-11', 8498, 15847, 1529, NULL, '1.0000', '10.4000', '10.4000', '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 (16427, '2021-09-11', 1488, 15848, 1529, 33032, '1.0000', '18.3333', '18.3333', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16428, '2021-09-11', 9092, 15849, 1529, NULL, '3.0000', '5.2900', '5.2900', '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 (16429, '2021-09-11', 2293, 15850, 1529, 3064, '2.0000', '1.4400', '1.4400', '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 (16430, '2021-09-11', 1550, 15851, 1529, 32009, '1.0000', '391.6974', '391.6974', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16431, '2021-09-11', 2248, 15852, 1529, 32048, '2.0000', '3.0952', '3.0952', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16432, '2021-09-11', 2315, 15853, 1529, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '286.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16433, '2021-09-11', 1523, 15854, 1529, 24285, '3.0000', '0.9596', '0.9596', '5.0000', '5.0000', '30.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 (16434, '2021-09-11', 1655, 15855, 1529, 22644, '1.0000', '54.8533', '54.8533', '45.0000', '45.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 (16435, '2021-09-11', 1912, 15856, 1529, 29799, '3.0000', '0.5743', '0.5743', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16436, '2021-09-11', 7741, 15857, 1529, NULL, '1.0000', '1.2000', '1.2000', '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 (16437, '2021-09-11', 2712, 15858, 1529, 32596, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16438, '2021-09-11', 2293, 15859, 1529, 3064, '1.0000', '1.4400', '1.4400', '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 (16439, '2021-09-11', 1864, 15860, 1529, 33286, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16440, '2021-09-11', 2237, 15861, 1529, 24102, '2.0000', '1.0600', '1.0600', '2.0000', '2.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 (16441, '2021-09-11', 1812, 15862, 1529, 33219, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16442, '2021-09-11', 7533, 15863, 1529, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16443, '2021-09-11', 2850, 15864, 1529, 17313, '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 (16444, '2021-09-11', 2169, 15865, 1529, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16445, '2021-09-11', 7892, 15866, 1529, NULL, '1.0000', '4.2000', '4.2000', '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 (16446, '2021-09-11', 2655, 15867, 1529, 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 (16447, '2021-09-11', 7839, 15868, 1529, NULL, '1.0000', '5.0000', '5.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 (16448, '2021-09-11', 2036, 15869, 1529, 4401, '1.0000', '8.0000', '8.0000', '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 (16449, '2021-09-11', 8175, 15870, 1529, NULL, '1.0000', '12.5000', '12.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 (16450, '2021-09-11', 1523, 15871, 1529, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '32.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 (16451, '2021-09-11', 1411, 15872, 1529, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '18.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16452, '2021-09-11', 2109, 15873, 1529, 6021, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (16453, '2021-09-11', 1665, 15874, 1529, 33258, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16454, '2021-09-12', 7819, 15875, 1530, NULL, '1.0000', '9.5000', '9.5000', '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 (16455, '2021-09-12', 9453, 15876, 1530, 31013, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16456, '2021-09-12', 8000, 15877, 1530, NULL, '1.0000', '27.9111', '27.9111', '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 (16457, '2021-09-12', 8101, 15878, 1530, NULL, '1.0000', '21.7000', '21.7000', '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 (16458, '2021-09-12', 9092, 15879, 1530, NULL, '1.0000', '5.2900', '5.2900', '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 (16459, '2021-09-12', 8666, 15880, 1530, 32808, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16460, '2021-09-12', 7321, 15881, 1530, NULL, '1.0000', '7.9500', '7.9500', '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 (16461, '2021-09-12', 7477, 15882, 1530, NULL, '5.0000', '60.0000', '60.0000', '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 (16462, '2021-09-12', 7791, 15883, 1530, NULL, '1.0000', '11.5600', '11.5600', '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 (16463, '2021-09-12', 7674, 15884, 1530, NULL, '1.0000', '14.5000', '14.5000', '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 (16464, '2021-09-12', 7642, 15885, 1530, NULL, '2.0000', '2.6900', '2.6900', '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 (16465, '2021-09-12', 7753, 15886, 1530, NULL, '1.0000', '3.1400', '3.1400', '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 (16466, '2021-09-12', 7675, 15887, 1530, NULL, '1.0000', '11.4300', '11.4300', '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 (16467, '2021-09-12', 7477, 15888, 1530, NULL, '2.0000', '60.0000', '60.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 (16468, '2021-09-12', 1874, 15889, 1530, NULL, '2.0000', '6.1000', '6.1000', '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 (16469, '2021-09-12', 7412, 15890, 1530, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16470, '2021-09-12', 2656, 15891, 1530, 32804, '5.0000', '1.5000', '1.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16471, '2021-09-12', 8393, 15892, 1530, 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 (16472, '2021-09-12', 9119, 15893, 1530, NULL, '2.0000', '14.0000', '14.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 (16473, '2021-09-12', 8608, 15894, 1530, 32131, '2.0000', '5.7400', '5.7400', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16474, '2021-09-12', 7753, 15895, 1530, NULL, '1.0000', '3.1400', '3.1400', '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 (16475, '2021-09-12', 8000, 15896, 1530, NULL, '2.0000', '27.9111', '27.9111', '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 (16476, '2021-09-12', 1947, 15897, 1530, NULL, '1.0000', '1250.5815', '1250.5815', '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 (16477, '2021-09-12', 2104, 15898, 1530, NULL, '2.0000', '0.2000', '0.2000', '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 (16478, '2021-09-12', 7401, 15899, 1530, NULL, '1.0000', '55.7244', '55.7244', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16479, '2021-09-12', 7354, 15900, 1530, NULL, '1.0000', '18.0000', '18.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 (16480, '2021-09-12', 2656, 15901, 1530, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16481, '2021-09-12', 1904, 15902, 1530, 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 (16482, '2021-09-12', 2295, 15903, 1530, 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 (16483, '2021-09-12', 7641, 15904, 1530, NULL, '1.0000', '1.9000', '1.9000', '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 (16484, '2021-09-12', 7342, 15905, 1530, 31009, '1.0000', '2.1313', '2.1313', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16485, '2021-09-12', 8000, 15906, 1530, NULL, '1.0000', '27.9111', '27.9111', '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 (16486, '2021-09-12', 8497, 15907, 1530, NULL, '2.0000', '28.0000', '28.0000', '11.5000', '11.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 (16487, '2021-09-12', 7448, 15908, 1530, NULL, '1.0000', '15.8500', '15.8500', '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 (16488, '2021-09-12', 2102, 15909, 1530, 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 (16489, '2021-09-12', 7707, 15910, 1530, NULL, '1.0000', '7.0000', '7.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 (16490, '2021-09-12', 2169, 15911, 1531, NULL, '2.0000', '1.1300', '1.1300', '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 (16491, '2021-09-12', 2169, 15912, 1531, NULL, '1.0000', '1.1300', '1.1300', '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 (16492, '2021-09-12', 2936, 15913, 1531, 23121, '1.0000', '6.0400', '6.0400', '8.0000', '8.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 (16493, '2021-09-12', 1533, 15914, 1531, 29632, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16494, '2021-09-12', 7558, 15915, 1531, NULL, '10.0000', '33.0200', '33.0200', '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 (16495, '2021-09-12', 1602, 15916, 1531, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16496, '2021-09-12', 9461, 15917, 1531, NULL, '1.0000', '1.6000', '1.6000', '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 (16497, '2021-09-12', 2712, 15918, 1531, 32551, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16498, '2021-09-12', 7671, 15919, 1531, NULL, '1.0000', '15.5000', '15.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 (16499, '2021-09-12', 2699, 15920, 1531, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16500, '2021-09-12', 7359, 15921, 1531, NULL, '1.0000', '20.0000', '20.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 (16501, '2021-09-12', 2916, 15922, 1531, 33197, '1.0000', '14.6782', '14.6782', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16502, '2021-09-12', 8476, 15923, 1531, NULL, '5.0000', '23.0000', '23.0000', '0.6000', '0.6000', '-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 (16503, '2021-09-12', 2655, 15924, 1531, 32552, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16504, '2021-09-12', 2699, 15925, 1531, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16505, '2021-09-12', 1837, 15926, 1531, 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 (16506, '2021-09-12', 1523, 15927, 1531, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '14.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 (16507, '2021-09-12', 1837, 15928, 1531, 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 (16508, '2021-09-12', 1751, 15929, 1531, 19368, '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 (16509, '2021-09-12', 2379, 15930, 1531, NULL, '1.0000', '1.8000', '1.8000', '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 (16510, '2021-09-12', 1381, 15931, 1531, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.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 (16511, '2021-09-12', 2295, 15932, 1531, 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 (16512, '2021-09-12', 2169, 15933, 1531, NULL, '1.0000', '1.1300', '1.1300', '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 (16513, '2021-09-12', 2315, 15934, 1531, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '19.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 (16514, '2021-09-12', 2974, 15935, 1531, 23155, '2.0000', '5.0000', '5.0000', '8.0000', '8.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 (16515, '2021-09-12', 1757, 15936, 1531, 33154, '1.0000', '4.0119', '4.0119', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16516, '2021-09-12', 1856, 15937, 1531, 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 (16517, '2021-09-12', 2135, 15938, 1531, 23175, '1.0000', '2.5000', '2.5000', '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 (16518, '2021-09-12', 2169, 15939, 1531, NULL, '1.0000', '1.1300', '1.1300', '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 (16519, '2021-09-12', 2315, 15940, 1531, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '19.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 (16520, '2021-09-12', 1499, 15941, 1531, 33367, '1.0000', '0.4835', '0.4835', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16521, '2021-09-12', 2821, 15942, 1531, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16522, '2021-09-12', 1935, 15943, 1531, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16523, '2021-09-12', 2169, 15944, 1531, NULL, '1.0000', '1.1300', '1.1300', '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 (16524, '2021-09-12', 9214, 15945, 1531, NULL, '2.0000', '9.6000', '9.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 (16525, '2021-09-12', 1586, 15946, 1531, 29645, '1.0000', '62.5067', '62.5067', '65.0000', '65.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16526, '2021-09-12', 2344, 15947, 1531, 24926, '1.0000', '19.8200', '19.8200', '26.5000', '26.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 (16527, '2021-09-12', 1852, 15948, 1531, 19331, '1.0000', '14.9000', '14.9000', '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 (16528, '2021-09-12', 7335, 15949, 1531, NULL, '1.0000', '10.4000', '10.4000', '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 (16529, '2021-09-12', 2228, 15950, 1531, 25153, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '0.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 (16530, '2021-09-12', 1935, 15951, 1531, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16531, '2021-09-12', 1812, 15952, 1531, 29639, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16532, '2021-09-12', 1910, 15953, 1531, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (16533, '2021-09-12', 1793, 15954, 1531, NULL, '3.0000', '90.0000', '90.0000', '20.0000', '20.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 (16534, '2021-09-12', 2255, 15955, 1531, NULL, '1.0000', '17.4900', '17.4900', '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 (16535, '2021-09-12', 1590, 15956, 1531, 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 (16536, '2021-09-12', 1935, 15957, 1531, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16537, '2021-09-12', 2302, 15958, 1531, 31085, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16538, '2021-09-12', 1950, 15959, 1531, NULL, '2.0000', '2.7500', '2.7500', '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 (16539, '2021-09-12', 2821, 15960, 1531, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16540, '2021-09-12', 2272, 15961, 1531, 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 (16541, '2021-09-12', 8566, 15962, 1532, NULL, '1.0000', '2.5000', '2.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 (16542, '2021-09-12', 1523, 15963, 1533, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '13.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 (16543, '2021-09-12', 1690, 15964, 1533, 33351, '1.0000', '-160.5000', '-160.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16544, '2021-09-12', 8594, 15965, 1533, 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 (16545, '2021-09-12', 2699, 15966, 1533, 32554, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16546, '2021-09-12', 2656, 15967, 1533, 32553, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16547, '2021-09-12', 2280, 15968, 1533, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '29.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 (16548, '2021-09-12', 2252, 15969, 1533, 33142, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16549, '2021-09-12', 1523, 15970, 1534, NULL, '2.0000', '213.0405', '213.0405', '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 (16550, '2021-09-12', 2379, 15971, 1534, 4032, '-13.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 (16551, '2021-09-12', 2379, 15971, 1534, NULL, '14.0000', '1.5900', '1.5900', '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 (16552, '2021-09-12', 1300, 15972, 1534, 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 (16553, '2021-09-12', 2167, 15973, 1534, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '0.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 (16554, '2021-09-12', 1347, 15974, 1534, 3320, '10.0000', '3.4000', '3.4000', '4.5000', '4.5000', '31.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 (16555, '2021-09-12', 1670, 15975, 1534, 10163, '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 (16556, '2021-09-12', 2089, 15976, 1534, 10811, '-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 (16557, '2021-09-12', 2089, 15976, 1534, NULL, '2.0000', '6.6500', '6.6500', '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 (16558, '2021-09-12', 9461, 15977, 1534, NULL, '1.0000', '1.6000', '1.6000', '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 (16559, '2021-09-12', 9469, 15978, 1534, NULL, '2.0000', '2.3000', '2.3000', '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 (16560, '2021-09-12', 8769, 15979, 1534, 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 (16561, '2021-09-12', 2089, 15980, 1534, 10811, '-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 (16562, '2021-09-12', 2089, 15980, 1534, NULL, '2.0000', '6.6500', '6.6500', '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 (16563, '2021-09-12', 2163, 15981, 1534, 16248, '1.0000', '20.0000', '20.0000', '31.5000', '31.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 (16564, '2021-09-12', 1785, 15982, 1534, 4903, '1.0000', '4.8380', '4.8380', '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 (16565, '2021-09-12', 2302, 15983, 1534, 2963, '-9.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 (16566, '2021-09-12', 2302, 15983, 1534, NULL, '10.0000', '5.2000', '5.2000', '7.0000', '7.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 (16567, '2021-09-12', 2154, 15984, 1534, 13520, '1.0000', '10.6849', '10.6849', '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 (16568, '2021-09-12', 1839, 15985, 1534, 8734, '-6.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 (16569, '2021-09-12', 1839, 15985, 1534, NULL, '7.0000', '6.1500', '6.1500', '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 (16570, '2021-09-12', 2712, 15986, 1534, 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 (16571, '2021-09-12', 3058, 15987, 1534, 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 (16572, '2021-09-12', 2556, 15988, 1534, 7196, '-23.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 (16573, '2021-09-12', 2556, 15988, 1534, NULL, '24.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-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 (16574, '2021-09-12', 2169, 15989, 1534, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '27.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 (16575, '2021-09-12', 2315, 15990, 1534, 2735, '-67.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16576, '2021-09-12', 2315, 15990, 1534, NULL, '69.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16577, '2021-09-12', 1626, 15991, 1534, 18810, '1.0000', '7.5900', '7.5900', '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 (16578, '2021-09-12', 1621, 15992, 1534, 7385, '-3.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 (16579, '2021-09-12', 1621, 15992, 1534, NULL, '4.0000', '6.6000', '6.6000', '9.0000', '9.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 (16580, '2021-09-12', 2315, 15993, 1534, 2735, '-67.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16581, '2021-09-12', 2315, 15993, 1534, NULL, '71.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16582, '2021-09-12', 1668, 15994, 1535, 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 (16583, '2021-09-12', 1557, 15995, 1535, 30671, '1.0000', '7.8420', '7.8420', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16584, '2021-09-12', 1307, 15996, 1535, 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 (16585, '2021-09-12', 1346, 15997, 1535, 24923, '6.0000', '-20.8715', '-20.8715', '1.5000', '1.5000', '89.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 (16586, '2021-09-12', 1651, 15998, 1535, 29640, '1.0000', '7.6717', '7.6717', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16587, '2021-09-12', 8127, 15999, 1536, NULL, '1.0000', '24.5300', '24.5300', '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 (16588, '2021-09-12', 1863, 16000, 1536, 33188, '1.0000', '1.3475', '1.3475', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16589, '2021-09-12', 7514, 16001, 1537, NULL, '3.0000', '7.8800', '7.8800', '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 (16590, '2021-09-12', 8430, 16002, 1537, NULL, '1.0000', '26.4635', '26.4635', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16591, '2021-09-12', 7958, 16003, 1537, NULL, '1.0000', '13.0000', '13.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 (16592, '2021-09-12', 7524, 16004, 1537, NULL, '1.0000', '11.9500', '11.9500', '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 (16593, '2021-09-12', 7457, 16005, 1537, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16594, '2021-09-12', 7640, 16006, 1537, NULL, '1.0000', '5.8900', '5.8900', '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 (16595, '2021-09-12', 8666, 16007, 1537, 32808, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16596, '2021-09-12', 8972, 16008, 1537, NULL, '2.0000', '4.5000', '4.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 (16597, '2021-09-12', 7353, 16009, 1537, 30931, '2.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16598, '2021-09-12', 8200, 16010, 1537, NULL, '1.0000', '8.5500', '8.5500', '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 (16599, '2021-09-12', 8166, 16011, 1537, NULL, '1.0000', '4.6000', '4.6000', '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 (16600, '2021-09-12', 7674, 16012, 1537, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '255.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16601, '2021-09-12', 8765, 16013, 1537, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16602, '2021-09-12', 8810, 16014, 1537, NULL, '1.0000', '1.9200', '1.9200', '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 (16603, '2021-09-12', 9092, 16015, 1537, NULL, '3.0000', '5.2900', '5.2900', '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 (16604, '2021-09-12', 8000, 16016, 1537, NULL, '1.0000', '27.9111', '27.9111', '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 (16605, '2021-09-12', 7848, 16017, 1537, NULL, '1.0000', '1.3500', '1.3500', '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 (16606, '2021-09-12', 8200, 16018, 1537, NULL, '1.0000', '8.5500', '8.5500', '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 (16607, '2021-09-12', 7762, 16019, 1537, NULL, '1.0000', '5.1000', '5.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 (16608, '2021-09-12', 7641, 16020, 1537, NULL, '1.0000', '1.9000', '1.9000', '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 (16609, '2021-09-12', 9092, 16021, 1537, NULL, '1.0000', '5.2900', '5.2900', '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 (16610, '2021-09-12', 9405, 16022, 1537, NULL, '2.0000', '5.4000', '5.4000', '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 (16611, '2021-09-12', 8966, 16023, 1537, 30929, '1.0000', '6.2300', '6.2300', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16612, '2021-09-12', 7713, 16024, 1537, NULL, '3.0000', '4.4000', '4.4000', '0.6000', '0.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 (16613, '2021-09-12', 7779, 16025, 1537, NULL, '1.0000', '0.6200', '0.6200', '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 (16614, '2021-09-12', 7609, 16026, 1537, NULL, '1.0000', '4.3300', '4.3300', '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 (16615, '2021-09-12', 7587, 16027, 1537, NULL, '1.0000', '1.5000', '1.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 (16616, '2021-09-12', 7444, 16028, 1537, 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 (16617, '2021-09-12', 7642, 16029, 1537, NULL, '1.0000', '2.6900', '2.6900', '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 (16618, '2021-09-12', 8359, 16030, 1537, NULL, '1.0000', '16.7750', '16.7750', '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 (16619, '2021-09-12', 2315, 16031, 1537, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16620, '2021-09-12', 7608, 16032, 1537, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16621, '2021-09-12', 8965, 16033, 1537, NULL, '1.0000', '52.9900', '52.9900', '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 (16622, '2021-09-12', 2104, 16034, 1537, NULL, '2.0000', '0.2000', '0.2000', '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 (16623, '2021-09-12', 7509, 16035, 1537, 33740, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16624, '2021-09-12', 8774, 16036, 1537, NULL, '1.0000', '8.0000', '8.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 (16625, '2021-09-12', 7334, 16037, 1537, NULL, '1.0000', '8.1600', '8.1600', '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 (16626, '2021-09-12', 8810, 16038, 1537, NULL, '1.0000', '1.9200', '1.9200', '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 (16627, '2021-09-12', 7787, 16039, 1537, NULL, '1.0000', '3.9600', '3.9600', '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 (16628, '2021-09-12', 8515, 16040, 1537, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (16629, '2021-09-12', 8154, 16041, 1537, NULL, '1.0000', '12.3000', '12.3000', '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 (16630, '2021-09-12', 1837, 16042, 1537, 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 (16631, '2021-09-12', 8097, 16043, 1537, NULL, '2.0000', '7.6800', '7.6800', '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 (16632, '2021-09-12', 2102, 16044, 1537, 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 (16633, '2021-09-12', 7354, 16045, 1537, NULL, '3.0000', '18.0000', '18.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 (16634, '2021-09-12', 1381, 16046, 1538, 22391, '1.0000', '-6790.6178', '-6790.6178', '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 (16635, '2021-09-12', 1501, 16047, 1538, NULL, '1.0000', '2.2044', '2.2044', '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 (16636, '2021-09-12', 7357, 16048, 1539, 31030, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16637, '2021-09-12', 7593, 16049, 1539, NULL, '1.0000', '2.4500', '2.4500', '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 (16638, '2021-09-12', 7358, 16050, 1540, NULL, '1.0000', '18.8000', '18.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 (16639, '2021-09-12', 2169, 16051, 1540, NULL, '2.0000', '1.1300', '1.1300', '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 (16640, '2021-09-12', 2315, 16052, 1540, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '15.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 (16641, '2021-09-12', 7558, 16053, 1540, NULL, '1.0000', '33.0200', '33.0200', '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 (16642, '2021-09-12', 2360, 16054, 1541, 3862, '-9.0000', '0.5200', '0.5200', '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 (16643, '2021-09-12', 2360, 16054, 1541, NULL, '11.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (16644, '2021-09-12', 1411, 16055, 1541, 33816, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16645, '2021-09-12', 1950, 16056, 1541, 18848, '1.0000', '-13.5726', '-13.5726', '5.0000', '5.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 (16646, '2021-09-12', 1746, 16057, 1541, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '27.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 (16647, '2021-09-12', 2567, 16058, 1541, 7177, '-2.0000', '33.0000', '33.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 (16648, '2021-09-12', 2567, 16058, 1541, NULL, '3.0000', '33.0000', '33.0000', '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 (16649, '2021-09-12', 2344, 16059, 1541, 18874, '1.0000', '18.2000', '18.2000', '26.5000', '26.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 (16650, '2021-09-12', 1310, 16060, 1541, NULL, '4.0000', '0.3700', '0.3700', '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 (16651, '2021-09-12', 2942, 16061, 1541, NULL, '1.0000', '0.4900', '0.4900', '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 (16652, '2021-09-12', 2345, 16062, 1541, 3848, '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 (16653, '2021-09-12', 1779, 16063, 1541, 4898, '-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 (16654, '2021-09-12', 1779, 16063, 1541, 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 (16655, '2021-09-12', 2417, 16064, 1541, 4746, '-1.0000', '3.0653', '3.0653', '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 (16656, '2021-09-12', 2417, 16064, 1541, NULL, '5.0000', '3.0653', '3.0653', '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 (16657, '2021-09-12', 2646, 16065, 1541, 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 (16658, '2021-09-12', 2169, 16066, 1541, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '26.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 (16659, '2021-09-12', 8000, 16067, 1542, NULL, '1.0000', '27.9111', '27.9111', '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 (16660, '2021-09-12', 7640, 16068, 1542, NULL, '2.0000', '5.8900', '5.8900', '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 (16661, '2021-09-12', 8135, 16069, 1542, NULL, '1.0000', '13.9000', '13.9000', '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 (16662, '2021-09-12', 8136, 16070, 1542, NULL, '1.0000', '29.3500', '29.3500', '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 (16663, '2021-09-12', 8166, 16071, 1543, NULL, '1.0000', '4.6000', '4.6000', '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 (16664, '2021-09-13', 7459, 16072, 1544, 31998, '4.0000', '2.3500', '2.3500', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16665, '2021-09-13', 2105, 16073, 1544, 2511, '1.0000', '1.3500', '1.3500', '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 (16666, '2021-09-13', 1824, 16074, 1544, 33326, '1.0000', '12.1678', '12.1678', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16667, '2021-09-13', 7459, 16075, 1545, 31998, '4.0000', '2.3500', '2.3500', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16668, '2021-09-13', 2105, 16076, 1545, 2511, '1.0000', '1.3500', '1.3500', '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 (16669, '2021-09-13', 1824, 16077, 1545, 33326, '1.0000', '12.1678', '12.1678', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16670, '2021-09-13', 9482, 16078, 1546, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '141.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16671, '2021-09-13', 2237, 16079, 1547, 34006, '1.0000', '1.5067', '1.5067', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16672, '2021-09-13', 1339, 16080, 1547, 32530, '1.0000', '0.3390', '0.3390', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16673, '2021-09-13', 2643, 16081, 1547, 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 (16674, '2021-09-13', 1519, 16082, 1547, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16675, '2021-09-13', 2635, 16083, 1547, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16676, '2021-09-13', 1651, 16084, 1547, 29640, '1.0000', '7.6717', '7.6717', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16677, '2021-09-13', 8654, 16085, 1547, NULL, '1.0000', '5.8000', '5.8000', '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 (16678, '2021-09-13', 1704, 16086, 1547, NULL, '1.0000', '-4.1550', '-4.1550', '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 (16679, '2021-09-13', 2260, 16087, 1547, 23137, '1.0000', '4.2000', '4.2000', '6.0000', '6.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 (16680, '2021-09-13', 1863, 16088, 1547, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16681, '2021-09-13', 2280, 16089, 1547, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '28.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 (16682, '2021-09-13', 2361, 16090, 1547, 19350, '1.0000', '0.4700', '0.4700', '0.6000', '0.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 (16683, '2021-09-13', 7790, 16091, 1547, NULL, '2.0000', '17.0000', '17.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 (16684, '2021-09-13', 1336, 16092, 1548, 19336, '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 (16685, '2021-09-13', 7358, 16093, 1549, NULL, '1.0000', '18.8000', '18.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 (16686, '2021-09-13', 1946, 16094, 1549, 740, '1.0000', '5.7750', '5.7750', '5.0000', '5.0000', '58.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 (16687, '2021-09-13', 2642, 16095, 1549, 10573, '-2.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 (16688, '2021-09-13', 2642, 16095, 1549, NULL, '5.0000', '9.2000', '9.2000', '12.0000', '12.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 (16689, '2021-09-13', 2036, 16096, 1549, 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 (16690, '2021-09-13', 2033, 16097, 1549, NULL, '1.0000', '4.5000', '4.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 (16691, '2021-09-13', 2317, 16098, 1549, 3473, '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 (16692, '2021-09-13', 2237, 16099, 1549, 2781, '-7.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 (16693, '2021-09-13', 2237, 16099, 1549, NULL, '8.0000', '1.0600', '1.0600', '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 (16694, '2021-09-13', 1863, 16100, 1549, 10808, '-3.0000', '0.4136', '0.4136', '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 (16695, '2021-09-13', 1863, 16100, 1549, NULL, '4.0000', '0.4136', '0.4136', '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 (16696, '2021-09-13', 1563, 16101, 1549, 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 (16697, '2021-09-13', 1602, 16102, 1549, 5897, '1.0000', '6.7859', '6.7859', '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 (16698, '2021-09-13', 2407, 16103, 1549, NULL, '1.0000', '20.2000', '20.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 (16699, '2021-09-13', 1658, 16104, 1549, 3229, '-1.0000', '27.9300', '27.9300', '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 (16700, '2021-09-13', 1658, 16104, 1549, NULL, '2.0000', '27.9300', '27.9300', '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 (16701, '2021-09-13', 2302, 16105, 1549, 2963, '-10.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 (16702, '2021-09-13', 2302, 16105, 1549, NULL, '11.0000', '5.2000', '5.2000', '7.0000', '7.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 (16703, '2021-09-13', 2169, 16106, 1549, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '25.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 (16704, '2021-09-13', 2459, 16107, 1549, NULL, '1.0000', '5.2800', '5.2800', '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 (16705, '2021-09-13', 1347, 16108, 1549, 3320, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '30.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 (16706, '2021-09-13', 2169, 16109, 1549, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '25.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 (16707, '2021-09-13', 1840, 16110, 1549, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16708, '2021-09-13', 1841, 16111, 1549, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '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 (16709, '2021-09-13', 1519, 16112, 1549, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.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 (16710, '2021-09-13', 1863, 16113, 1549, 10808, '-3.0000', '0.4136', '0.4136', '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 (16711, '2021-09-13', 1863, 16113, 1549, NULL, '4.0000', '0.4136', '0.4136', '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 (16712, '2021-09-13', 1377, 16114, 1550, NULL, '1.0000', '90.0000', '90.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16713, '2021-09-13', 7675, 16115, 1550, NULL, '1.0000', '11.4300', '11.4300', '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 (16714, '2021-09-13', 8515, 16116, 1550, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (16715, '2021-09-13', 9240, 16117, 1550, NULL, '1.0000', '25.1200', '25.1200', '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 (16716, '2021-09-13', 7385, 16118, 1550, NULL, '2.0000', '22306.6568', '22306.6568', '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 (16717, '2021-09-13', 8775, 16119, 1550, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16718, '2021-09-13', 1338, 16120, 1550, 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 (16719, '2021-09-13', 9425, 16121, 1550, NULL, '1.0000', '4.0000', '4.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 (16720, '2021-09-13', 7412, 16122, 1550, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16721, '2021-09-13', 7427, 16123, 1550, 33942, '1.0000', '25.0000', '25.0000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16722, '2021-09-13', 7522, 16124, 1550, NULL, '1.0000', '5.2000', '5.2000', '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 (16723, '2021-09-13', 7967, 16125, 1550, NULL, '1.0000', '0.8900', '0.8900', '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 (16724, '2021-09-13', 2060, 16126, 1550, 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 (16725, '2021-09-13', 1874, 16127, 1550, NULL, '2.0000', '6.1000', '6.1000', '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 (16726, '2021-09-13', 7385, 16128, 1550, NULL, '5.0000', '22306.6568', '22306.6568', '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 (16727, '2021-09-13', 9092, 16129, 1550, NULL, '2.0000', '5.2900', '5.2900', '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 (16728, '2021-09-13', 8395, 16130, 1550, NULL, '1.0000', '0.9700', '0.9700', '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 (16729, '2021-09-13', 8101, 16131, 1550, NULL, '1.0000', '21.7000', '21.7000', '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 (16730, '2021-09-13', 9150, 16132, 1550, 33719, '1.0000', '12.6512', '12.6512', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16731, '2021-09-13', 7588, 16133, 1550, NULL, '1.0000', '1.5000', '1.5000', '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 (16732, '2021-09-13', 7612, 16134, 1550, NULL, '1.0000', '46.0000', '46.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 (16733, '2021-09-13', 2463, 16135, 1550, NULL, '9.0000', '2.8700', '2.8700', '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 (16734, '2021-09-13', 1904, 16136, 1550, 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 (16735, '2021-09-13', 8868, 16137, 1550, NULL, '10.0000', '15.5000', '15.5000', '0.6000', '0.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 (16736, '2021-09-13', 7558, 16138, 1550, NULL, '10.0000', '1.9700', '1.9700', '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 (16737, '2021-09-13', 7958, 16139, 1550, NULL, '1.0000', '13.0000', '13.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 (16738, '2021-09-13', 7824, 16140, 1550, NULL, '1.0000', '8.0000', '8.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 (16739, '2021-09-13', 7642, 16141, 1550, NULL, '1.0000', '2.6900', '2.6900', '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 (16740, '2021-09-13', 9474, 16142, 1550, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16741, '2021-09-13', 7514, 16143, 1550, NULL, '3.0000', '7.8800', '7.8800', '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 (16742, '2021-09-13', 7673, 16144, 1550, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16743, '2021-09-13', 7961, 16145, 1550, NULL, '1.0000', '9.5000', '9.5000', '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 (16744, '2021-09-13', 7316, 16146, 1550, 30165, '3.0000', '0.8600', '0.8600', '1.2000', '1.2000', '32.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16745, '2021-09-13', 2289, 16147, 1550, 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 (16746, '2021-09-13', 7554, 16148, 1550, NULL, '7.0000', '16.0000', '16.0000', '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 (16747, '2021-09-13', 2104, 16149, 1550, NULL, '2.0000', '0.2000', '0.2000', '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 (16748, '2021-09-13', 8515, 16150, 1550, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (16749, '2021-09-13', 9275, 16151, 1550, NULL, '1.0000', '6.3000', '6.3000', '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 (16750, '2021-09-13', 7544, 16152, 1550, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16751, '2021-09-13', 7952, 16153, 1550, NULL, '1.0000', '1.4000', '1.4000', '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 (16752, '2021-09-13', 7782, 16154, 1550, NULL, '1.0000', '5.0000', '5.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 (16753, '2021-09-13', 2289, 16155, 1550, 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 (16754, '2021-09-13', 7560, 16156, 1550, NULL, '1.0000', '4.4500', '4.4500', '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 (16755, '2021-09-13', 7871, 16157, 1550, NULL, '7.0000', '6.0000', '6.0000', '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 (16756, '2021-09-13', 8721, 16158, 1550, NULL, '1.0000', '3.0000', '3.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 (16757, '2021-09-13', 7658, 16159, 1550, NULL, '10.0000', '10.1500', '10.1500', '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 (16758, '2021-09-13', 2618, 16160, 1550, NULL, '3.0000', '4.1000', '4.1000', '5.5000', '5.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 (16759, '2021-09-13', 7558, 16161, 1550, NULL, '10.0000', '1.9700', '1.9700', '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 (16760, '2021-09-13', 9089, 16162, 1550, 32139, '2.0000', '3.8000', '3.8000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16761, '2021-09-13', 9001, 16163, 1550, NULL, '1.0000', '4.3300', '4.3300', '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 (16762, '2021-09-13', 7658, 16164, 1550, NULL, '2.0000', '10.1500', '10.1500', '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 (16763, '2021-09-13', 7641, 16165, 1550, NULL, '1.0000', '1.9000', '1.9000', '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 (16764, '2021-09-13', 7473, 16166, 1551, NULL, '4.0000', '9.2200', '9.2200', '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 (16765, '2021-09-13', 7593, 16167, 1551, NULL, '1.0000', '2.4500', '2.4500', '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 (16766, '2021-09-13', 1489, 16168, 1552, 24967, '1.0000', '28.1700', '28.1700', '37.0000', '37.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 (16767, '2021-09-13', 1495, 16169, 1552, 19391, '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 (16768, '2021-09-13', 1501, 16170, 1552, NULL, '1.0000', '2.2111', '2.2111', '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 (16769, '2021-09-13', 1888, 16171, 1553, 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 (16770, '2021-09-13', 2228, 16172, 1554, 22517, '1.0000', '25.0000', '25.0000', '28.0000', '28.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 (16771, '2021-09-13', 1498, 16173, 1554, 19871, '4.0000', '0.3300', '0.3300', '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 (16772, '2021-09-13', 1523, 16174, 1554, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '12.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 (16773, '2021-09-13', 1381, 16175, 1554, 34068, '1.0000', '-3700.5688', '-3700.5688', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16774, '2021-09-13', 2951, 16176, 1554, 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 (16775, '2021-09-13', 8596, 16177, 1554, NULL, '1.0000', '17.0000', '17.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 (16776, '2021-09-13', 2248, 16178, 1554, 31108, '1.0000', '2.8428', '2.8428', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16777, '2021-09-13', 2366, 16179, 1554, NULL, '1.0000', '3.7500', '3.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 (16778, '2021-09-13', 7584, 16180, 1554, NULL, '1.0000', '3.8100', '3.8100', '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 (16779, '2021-09-13', 2293, 16181, 1554, 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 (16780, '2021-09-13', 2169, 16182, 1555, NULL, '1.0000', '1.1300', '1.1300', '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 (16781, '2021-09-13', 8208, 16183, 1555, NULL, '4.0000', '33.0000', '33.0000', '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 (16782, '2021-09-13', 2379, 16184, 1555, NULL, '1.0000', '1.8000', '1.8000', '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 (16783, '2021-09-13', 2681, 16185, 1555, 24201, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '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 (16784, '2021-09-13', 8133, 16186, 1555, 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 (16785, '2021-09-13', 2994, 16187, 1555, 31961, '1.0000', '18.9320', '18.9320', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16786, '2021-09-13', 8596, 16188, 1555, NULL, '1.0000', '17.0000', '17.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 (16787, '2021-09-13', 3067, 16189, 1555, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.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 (16788, '2021-09-13', 1888, 16190, 1555, 33352, '2.0000', '118.7393', '118.7393', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16789, '2021-09-13', 7524, 16191, 1555, NULL, '1.0000', '11.9500', '11.9500', '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 (16790, '2021-09-13', 2275, 16192, 1555, 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 (16791, '2021-09-13', 1860, 16193, 1555, 19058, '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 (16792, '2021-09-13', 2393, 16194, 1555, 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 (16793, '2021-09-13', 2088, 16195, 1556, 33346, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16794, '2021-09-13', 1810, 16196, 1556, 24204, '1.0000', '8.6700', '8.6700', '11.0000', '11.0000', '0.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 (16795, '2021-09-13', 1935, 16197, 1556, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16796, '2021-09-13', 1812, 16198, 1556, 29639, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16797, '2021-09-13', 2660, 16199, 1556, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (16798, '2021-09-13', 2371, 16200, 1556, NULL, '1.0000', '12.0000', '12.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 (16799, '2021-09-13', 2951, 16201, 1557, 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 (16800, '2021-09-13', 1602, 16202, 1557, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16801, '2021-09-13', 1621, 16203, 1558, 33211, '1.0000', '55.5718', '55.5718', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16802, '2021-09-13', 2656, 16204, 1558, 32590, '4.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16803, '2021-09-13', 1961, 16205, 1558, 33221, '1.0000', '17.7486', '17.7486', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16804, '2021-09-13', 2681, 16206, 1558, 32858, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16805, '2021-09-13', 2972, 16207, 1558, 23605, '1.0000', '22.9800', '22.9800', '30.0000', '30.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 (16806, '2021-09-13', 7637, 16208, 1558, 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 (16807, '2021-09-13', 1595, 16209, 1558, 17846, '1.0000', '18.6100', '18.6100', '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 (16808, '2021-09-13', 2665, 16210, 1558, 24330, '1.0000', '24.4700', '24.4700', '32.3000', '32.3000', '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 (16809, '2021-09-13', 7635, 16211, 1558, NULL, '1.0000', '6.6300', '6.6300', '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 (16810, '2021-09-13', 1602, 16212, 1558, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '36.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16811, '2021-09-13', 1602, 16213, 1558, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '36.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16812, '2021-09-13', 1523, 16214, 1558, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '28.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 (16813, '2021-09-13', 3034, 16215, 1558, 24008, '1.0000', '17.0000', '17.0000', '23.0000', '23.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 (16814, '2021-09-13', 7334, 16216, 1558, NULL, '3.0000', '8.1600', '8.1600', '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 (16815, '2021-09-13', 2315, 16217, 1558, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '285.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16816, '2021-09-13', 2221, 16218, 1558, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '6.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 (16817, '2021-09-13', 1863, 16219, 1558, 33985, '3.0000', '1.1074', '1.1074', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16818, '2021-09-13', 2250, 16220, 1558, 33010, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16819, '2021-09-13', 2403, 16221, 1558, 32886, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '5.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16820, '2021-09-13', 8502, 16222, 1558, NULL, '1.0000', '5.1600', '5.1600', '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 (16821, '2021-09-13', 7752, 16223, 1559, 33518, '2.0000', '3.0000', '3.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16822, '2021-09-13', 8666, 16224, 1559, 32808, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16823, '2021-09-13', 8166, 16225, 1559, NULL, '1.0000', '4.6000', '4.6000', '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 (16824, '2021-09-13', 8134, 16226, 1559, NULL, '1.0000', '5.2600', '5.2600', '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 (16825, '2021-09-13', 8444, 16227, 1559, NULL, '1.0000', '26.0000', '26.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 (16826, '2021-09-13', 9269, 16228, 1559, 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 (16827, '2021-09-13', 8097, 16229, 1559, NULL, '2.0000', '7.6800', '7.6800', '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 (16828, '2021-09-13', 7692, 16230, 1559, NULL, '1.0000', '2.7000', '2.7000', '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 (16829, '2021-09-13', 8341, 16231, 1559, NULL, '1.0000', '43.0000', '43.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 (16830, '2021-09-13', 7509, 16232, 1559, 33740, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16831, '2021-09-13', 9092, 16233, 1559, NULL, '2.0000', '5.2900', '5.2900', '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 (16832, '2021-09-13', 7674, 16234, 1559, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '254.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16833, '2021-09-13', 7579, 16235, 1559, NULL, '5.0000', '15.0000', '15.0000', '1.5000', '1.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 (16834, '2021-09-13', 7684, 16236, 1559, NULL, '1.0000', '9.0000', '9.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 (16835, '2021-09-13', 7353, 16237, 1559, 30931, '3.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16836, '2021-09-13', 7708, 16238, 1559, 33978, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16837, '2021-09-13', 1533, 16239, 1559, 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 (16838, '2021-09-13', 7872, 16240, 1559, 31012, '1.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16839, '2021-09-13', 7703, 16241, 1559, NULL, '1.0000', '22.9900', '22.9900', '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 (16840, '2021-09-13', 1469, 16242, 1559, NULL, '1.0000', '6.1800', '6.1800', '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 (16841, '2021-09-13', 7980, 16243, 1559, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (16842, '2021-09-13', 2102, 16244, 1559, 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 (16843, '2021-09-13', 8322, 16245, 1559, NULL, '1.0000', '3.2000', '3.2000', '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 (16844, '2021-09-13', 7720, 16246, 1559, 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 (16845, '2021-09-13', 7782, 16247, 1559, NULL, '1.0000', '5.0000', '5.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 (16846, '2021-09-13', 7894, 16248, 1559, NULL, '2.0000', '22.0000', '22.0000', '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 (16847, '2021-09-13', 7641, 16249, 1559, NULL, '1.0000', '1.9000', '1.9000', '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 (16848, '2021-09-13', 7917, 16250, 1559, NULL, '10.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (16849, '2021-09-13', 9448, 16251, 1559, 30922, '1.0000', '7.5200', '7.5200', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16850, '2021-09-13', 7524, 16252, 1559, NULL, '1.0000', '11.9500', '11.9500', '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 (16851, '2021-09-13', 8166, 16253, 1559, NULL, '1.0000', '4.6000', '4.6000', '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 (16852, '2021-09-13', 7385, 16254, 1559, NULL, '5.0000', '22306.6568', '22306.6568', '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 (16853, '2021-09-13', 9425, 16255, 1559, NULL, '1.0000', '4.0000', '4.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 (16854, '2021-09-13', 7872, 16256, 1560, 31012, '1.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16855, '2021-09-13', 7612, 16257, 1560, NULL, '1.0000', '46.0000', '46.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 (16856, '2021-09-13', 1733, 16258, 1560, 33756, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16857, '2021-09-13', 2699, 16259, 1560, 32805, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16858, '2021-09-13', 8666, 16260, 1560, 32808, '2.0000', '0.4600', '0.4600', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16859, '2021-09-13', 7880, 16261, 1560, NULL, '1.0000', '1.0000', '1.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 (16860, '2021-09-13', 1947, 16262, 1560, 33984, '1.0000', '-745.8689', '-745.8689', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16861, '2021-09-13', 7905, 16263, 1560, NULL, '1.0000', '0.7000', '0.7000', '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 (16862, '2021-09-13', 7848, 16264, 1560, NULL, '1.0000', '1.3500', '1.3500', '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 (16863, '2021-09-13', 7527, 16265, 1560, 31031, '5.0000', '0.8900', '0.8900', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16864, '2021-09-13', 8789, 16266, 1560, 30178, '1.0000', '4.9300', '4.9300', '6.5100', '6.5100', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16865, '2021-09-13', 7703, 16267, 1560, NULL, '1.0000', '22.9900', '22.9900', '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 (16866, '2021-09-13', 8596, 16268, 1560, NULL, '1.0000', '17.0000', '17.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 (16867, '2021-09-13', 9092, 16269, 1560, NULL, '2.0000', '5.2900', '5.2900', '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 (16868, '2021-09-13', 9515, 16270, 1560, 33946, '1.0000', '72.3200', '72.3200', '95.5000', '95.5000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16869, '2021-09-13', 7913, 16271, 1560, NULL, '2.0000', '2.5500', '2.5500', '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 (16870, '2021-09-13', 2295, 16272, 1560, 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 (16871, '2021-09-13', 7531, 16273, 1560, NULL, '3.0000', '16.5000', '16.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 (16872, '2021-09-13', 7335, 16274, 1560, 29985, '1.0000', '10.4000', '10.4000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16873, '2021-09-13', 2655, 16275, 1560, 32803, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16874, '2021-09-13', 2315, 16276, 1560, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16875, '2021-09-13', 7664, 16277, 1560, NULL, '1.0000', '3.6000', '3.6000', '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 (16876, '2021-09-13', 9019, 16278, 1560, NULL, '1.0000', '6.0000', '6.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 (16877, '2021-09-13', 2656, 16279, 1560, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16878, '2021-09-13', 8938, 16280, 1560, NULL, '2.0000', '7.8500', '7.8500', '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 (16879, '2021-09-13', 7815, 16281, 1560, NULL, '1.0000', '13.0000', '13.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 (16880, '2021-09-13', 7892, 16282, 1560, NULL, '1.0000', '4.2000', '4.2000', '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 (16881, '2021-09-13', 8702, 16283, 1560, NULL, '1.0000', '3.6700', '3.6700', '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 (16882, '2021-09-13', 2656, 16284, 1560, 32804, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16883, '2021-09-13', 7666, 16285, 1560, NULL, '2.0000', '10.0000', '10.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 (16884, '2021-09-13', 8810, 16286, 1560, NULL, '1.0000', '1.9200', '1.9200', '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 (16885, '2021-09-13', 7411, 16287, 1560, NULL, '1.0000', '1.3500', '1.3500', '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 (16886, '2021-09-13', 2104, 16288, 1560, NULL, '1.0000', '0.2000', '0.2000', '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 (16887, '2021-09-13', 2650, 16289, 1561, NULL, '1.0000', '7.9860', '7.9860', '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 (16888, '2021-09-13', 2109, 16290, 1561, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '32.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 (16889, '2021-09-13', 1532, 16291, 1561, 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 (16890, '2021-09-13', 8677, 16292, 1561, NULL, '1.0000', '7.8000', '7.8000', '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 (16891, '2021-09-13', 7778, 16293, 1561, NULL, '1.0000', '13.0100', '13.0100', '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 (16892, '2021-09-13', 9469, 16294, 1562, NULL, '1.0000', '2.3000', '2.3000', '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 (16893, '2021-09-13', 8140, 16295, 1562, NULL, '1.0000', '6.0500', '6.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 (16894, '2021-09-13', 1563, 16296, 1562, NULL, '1.0000', '4.9000', '4.9000', '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 (16895, '2021-09-13', 8915, 16297, 1562, NULL, '1.0000', '29.3500', '29.3500', '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 (16896, '2021-09-13', 9092, 16298, 1562, NULL, '1.0000', '5.2900', '5.2900', '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 (16897, '2021-09-13', 7947, 16299, 1562, NULL, '1.0000', '14.4400', '14.4400', '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 (16898, '2021-09-13', 8535, 16300, 1563, NULL, '1.0000', '32.5000', '32.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 (16899, '2021-09-13', 7459, 16301, 1563, 34100, '2.0000', '-16.6500', '-16.6500', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16900, '2021-09-13', 2965, 16302, 1563, NULL, '1.0000', '5.0000', '5.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 (16901, '2021-09-13', 2237, 16303, 1563, 34006, '1.0000', '1.5067', '1.5067', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16902, '2021-09-13', 2293, 16304, 1563, NULL, '2.0000', '1.4400', '1.4400', '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 (16903, '2021-09-13', 1665, 16305, 1564, 33258, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16904, '2021-09-13', 1854, 16306, 1564, 4985, '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 (16905, '2021-09-13', 2169, 16307, 1564, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16906, '2021-09-13', 2315, 16308, 1564, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '284.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16907, '2021-09-13', 7369, 16309, 1564, NULL, '1.0000', '32.4000', '32.4000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16908, '2021-09-13', 9265, 16310, 1564, NULL, '1.0000', '1.5500', '1.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 (16909, '2021-09-13', 1785, 16311, 1564, 33994, '1.0000', '14.1973', '14.1973', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16910, '2021-09-13', 2693, 16312, 1564, 34000, '1.0000', '26.3175', '26.3175', '33.0000', '33.0000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16911, '2021-09-13', 2325, 16313, 1564, 27319, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16912, '2021-09-13', 3079, 16314, 1564, 27334, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16913, '2021-09-13', 2154, 16315, 1564, NULL, '1.0000', '10.5000', '10.5000', '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 (16914, '2021-09-13', 2337, 16316, 1564, 3894, '1.0000', '51.0000', '51.0000', '67.5000', '67.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 (16915, '2021-09-13', 1665, 16317, 1564, 33258, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16916, '2021-09-14', 1409, 16318, 1565, 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 (16917, '2021-09-14', 2169, 16319, 1566, NULL, '1.0000', '1.1300', '1.1300', '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 (16918, '2021-09-14', 1912, 16320, 1566, 34005, '1.0000', '0.6591', '0.6591', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16919, '2021-09-14', 1855, 16321, 1566, 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 (16920, '2021-09-14', 1425, 16322, 1566, 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 (16921, '2021-09-14', 2135, 16323, 1566, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.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 (16922, '2021-09-14', 1748, 16324, 1566, NULL, '1.0000', '0.3200', '0.3200', '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 (16923, '2021-09-14', 1839, 16325, 1566, 33365, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16924, '2021-09-14', 1645, 16326, 1566, 34135, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16925, '2021-09-14', 1512, 16327, 1566, 30672, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16926, '2021-09-14', 9445, 16328, 1566, 34141, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16927, '2021-09-14', 8677, 16329, 1566, NULL, '2.0000', '7.8000', '7.8000', '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 (16928, '2021-09-14', 8666, 16330, 1566, NULL, '1.0000', '0.4600', '0.4600', '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 (16929, '2021-09-14', 1755, 16331, 1566, 19322, '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 (16930, '2021-09-14', 7589, 16332, 1566, NULL, '1.0000', '1.7700', '1.7700', '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 (16931, '2021-09-14', 1837, 16333, 1566, 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 (16932, '2021-09-14', 2712, 16334, 1567, 32551, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16933, '2021-09-14', 2712, 16334, 1567, 32557, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16934, '2021-09-14', 1912, 16335, 1567, 34005, '1.0000', '0.6591', '0.6591', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16935, '2021-09-14', 8481, 16336, 1567, NULL, '1.0000', '31.0700', '31.0700', '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 (16936, '2021-09-14', 2142, 16337, 1567, 13724, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16937, '2021-09-14', 2097, 16338, 1568, 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 (16938, '2021-09-14', 7713, 16339, 1569, NULL, '4.0000', '4.4000', '4.4000', '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 (16939, '2021-09-14', 2660, 16340, 1570, 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 (16940, '2021-09-14', 2294, 16341, 1570, 22325, '1.0000', '4.1050', '4.1050', '6.0000', '6.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 (16941, '2021-09-14', 1533, 16342, 1570, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '15.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 (16942, '2021-09-14', 1916, 16343, 1570, 5445, '-1.0000', '8.2300', '8.2300', '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 (16943, '2021-09-14', 1916, 16343, 1570, NULL, '4.0000', '8.2300', '8.2300', '11.0000', '11.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 (16944, '2021-09-14', 2221, 16344, 1570, 4154, '-1.0000', '14.4737', '14.4737', '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 (16945, '2021-09-14', 2221, 16344, 1570, NULL, '2.0000', '14.4737', '14.4737', '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 (16946, '2021-09-14', 1574, 16345, 1570, 7593, '-17.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 (16947, '2021-09-14', 1574, 16345, 1570, NULL, '27.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-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 (16948, '2021-09-14', 1523, 16346, 1570, 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 (16949, '2021-09-14', 1746, 16347, 1570, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '26.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 (16950, '2021-09-14', 1310, 16348, 1570, NULL, '1.0000', '0.3700', '0.3700', '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 (16951, '2021-09-14', 2000, 16349, 1570, 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 (16952, '2021-09-14', 2506, 16350, 1570, 21511, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '2.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 (16953, '2021-09-14', 1499, 16351, 1570, 20585, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '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 (16954, '2021-09-14', 2825, 16352, 1570, 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 (16955, '2021-09-14', 2655, 16353, 1570, 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 (16956, '2021-09-14', 1574, 16354, 1570, 7593, '-17.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 (16957, '2021-09-14', 1574, 16354, 1570, NULL, '19.0000', '1.9600', '1.9600', '2.5000', '2.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 (16958, '2021-09-14', 7339, 16355, 1570, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (16959, '2021-09-14', 2064, 16356, 1570, NULL, '1.0000', '4.2400', '4.2400', '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 (16960, '2021-09-14', 2279, 16357, 1570, 2939, '-8.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 (16961, '2021-09-14', 2279, 16357, 1570, NULL, '9.0000', '2.7000', '2.7000', '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 (16962, '2021-09-14', 2285, 16358, 1570, 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 (16963, '2021-09-14', 2285, 16358, 1570, NULL, '2.0000', '35.8000', '35.8000', '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 (16964, '2021-09-14', 8184, 16359, 1571, NULL, '14.0000', '0.8000', '0.8000', '3.0000', '3.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 (16965, '2021-09-14', 7774, 16360, 1571, NULL, '1.0000', '3.5000', '3.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 (16966, '2021-09-14', 7612, 16361, 1571, NULL, '1.0000', '46.0000', '46.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 (16967, '2021-09-14', 2618, 16362, 1571, NULL, '1.0000', '4.1000', '4.1000', '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 (16968, '2021-09-14', 9098, 16363, 1571, NULL, '3.0000', '25.0000', '25.0000', '34.5000', '34.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 (16969, '2021-09-14', 2673, 16364, 1571, 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 (16970, '2021-09-14', 7459, 16365, 1571, 30066, '4.0000', '40.3500', '40.3500', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16971, '2021-09-14', 7459, 16365, 1571, NULL, '6.0000', '40.3500', '40.3500', '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 (16972, '2021-09-14', 8057, 16366, 1571, NULL, '1.0000', '6.0000', '6.0000', '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 (16973, '2021-09-14', 2891, 16367, 1571, NULL, '1.0000', '8.0000', '8.0000', '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 (16974, '2021-09-14', 8679, 16368, 1571, NULL, '1.0000', '28.0000', '28.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 (16975, '2021-09-14', 7780, 16369, 1571, NULL, '1.0000', '2.6000', '2.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 (16976, '2021-09-14', 2060, 16370, 1571, 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 (16977, '2021-09-14', 8328, 16371, 1571, 33717, '1.0000', '8.0882', '8.0882', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16978, '2021-09-14', 7652, 16372, 1571, NULL, '10.0000', '40.3000', '40.3000', '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 (16979, '2021-09-14', 1533, 16373, 1571, NULL, '3.0000', '3.0500', '3.0500', '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 (16980, '2021-09-14', 8247, 16374, 1571, NULL, '9.0000', '10.0000', '10.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 (16981, '2021-09-14', 7711, 16375, 1571, NULL, '1.0000', '0.3900', '0.3900', '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 (16982, '2021-09-14', 7709, 16376, 1571, NULL, '2.0000', '35.8000', '35.8000', '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 (16983, '2021-09-14', 8038, 16377, 1571, NULL, '1.0000', '10.0000', '10.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 (16984, '2021-09-14', 7848, 16378, 1571, NULL, '1.0000', '1.3500', '1.3500', '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 (16985, '2021-09-14', 8596, 16379, 1571, NULL, '1.0000', '17.0000', '17.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 (16986, '2021-09-14', 7711, 16380, 1571, NULL, '1.0000', '0.3900', '0.3900', '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 (16987, '2021-09-14', 7848, 16381, 1571, NULL, '1.0000', '1.3500', '1.3500', '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 (16988, '2021-09-14', 7748, 16382, 1571, NULL, '1.0000', '33.9800', '33.9800', '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 (16989, '2021-09-14', 7353, 16383, 1571, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '31.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16990, '2021-09-14', 8702, 16384, 1571, NULL, '1.0000', '3.6700', '3.6700', '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 (16991, '2021-09-14', 1498, 16385, 1571, 33520, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16992, '2021-09-14', 2060, 16386, 1571, 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 (16993, '2021-09-14', 8735, 16387, 1571, NULL, '1.0000', '5.6000', '5.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 (16994, '2021-09-14', 1840, 16388, 1571, 33725, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '190.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16995, '2021-09-14', 1841, 16389, 1571, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '175.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16996, '2021-09-14', 8037, 16390, 1571, 33948, '1.0000', '-20.9389', '-20.9389', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (16997, '2021-09-14', 8753, 16391, 1571, NULL, '1.0000', '20.0000', '20.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 (16998, '2021-09-14', 7576, 16392, 1571, NULL, '4.0000', '6.9100', '6.9100', '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 (16999, '2021-09-14', 7383, 16393, 1571, 30015, '1.0000', '1.9700', '1.9700', '73.0000', '73.0000', '29.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17000, '2021-09-14', 7335, 16394, 1571, 29985, '1.0000', '10.4000', '10.4000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17001, '2021-09-14', 7675, 16395, 1571, NULL, '1.0000', '11.4300', '11.4300', '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 (17002, '2021-09-14', 9394, 16396, 1571, NULL, '2.0000', '5.5000', '5.5000', '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 (17003, '2021-09-14', 9397, 16397, 1571, NULL, '1.0000', '0.5600', '0.5600', '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 (17004, '2021-09-14', 7526, 16398, 1571, NULL, '1.0000', '0.2400', '0.2400', '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 (17005, '2021-09-14', 8102, 16399, 1571, NULL, '1.0000', '1.7000', '1.7000', '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 (17006, '2021-09-14', 8247, 16400, 1571, NULL, '4.0000', '10.0000', '10.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 (17007, '2021-09-14', 7652, 16401, 1571, NULL, '11.0000', '40.3000', '40.3000', '1.2000', '1.2000', '-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 (17008, '2021-09-14', 8679, 16402, 1571, NULL, '1.0000', '28.0000', '28.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 (17009, '2021-09-14', 7675, 16403, 1571, NULL, '1.0000', '11.4300', '11.4300', '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 (17010, '2021-09-14', 7738, 16404, 1571, NULL, '2.0000', '8.0000', '8.0000', '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 (17011, '2021-09-14', 7385, 16405, 1571, NULL, '3.0000', '22306.6568', '22306.6568', '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 (17012, '2021-09-14', 2950, 16406, 1571, 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 (17013, '2021-09-14', 2100, 16407, 1571, 33976, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17014, '2021-09-14', 9254, 16408, 1571, NULL, '1.0000', '20.0000', '20.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 (17015, '2021-09-14', 8975, 16409, 1571, NULL, '1.0000', '2.5500', '2.5500', '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 (17016, '2021-09-14', 7756, 16410, 1571, NULL, '1.0000', '21.7700', '21.7700', '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 (17017, '2021-09-14', 7703, 16411, 1571, NULL, '2.0000', '22.9900', '22.9900', '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 (17018, '2021-09-14', 1731, 16412, 1572, 22636, '1.0000', '19.9600', '19.9600', '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 (17019, '2021-09-14', 2279, 16413, 1572, 33263, '2.0000', '2.7554', '2.7554', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17020, '2021-09-14', 2557, 16414, 1572, 12740, '1.0000', '1.0000', '1.0000', '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 (17021, '2021-09-14', 1863, 16415, 1572, 33985, '2.0000', '1.1074', '1.1074', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17022, '2021-09-14', 7524, 16416, 1572, NULL, '1.0000', '11.9500', '11.9500', '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 (17023, '2021-09-14', 7728, 16417, 1572, NULL, '1.0000', '1.8000', '1.8000', '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 (17024, '2021-09-14', 8773, 16418, 1572, 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 (17025, '2021-09-14', 2265, 16419, 1572, 31987, '1.0000', '32.0000', '32.0000', '43.0000', '43.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17026, '2021-09-14', 2338, 16420, 1572, 3893, '1.0000', '9.6300', '9.6300', '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 (17027, '2021-09-14', 1980, 16421, 1572, 21809, '1.0000', '4.0000', '4.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 (17028, '2021-09-14', 7324, 16422, 1572, NULL, '10.0000', '55.7000', '55.7000', '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 (17029, '2021-09-14', 2412, 16423, 1572, 4824, '3.0000', '0.5200', '0.5200', '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 (17030, '2021-09-14', 1593, 16424, 1572, 16705, '16.0000', '5.9000', '5.9000', '8.7000', '8.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 (17031, '2021-09-14', 1593, 16424, 1572, 9435, '12.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 (17032, '2021-09-14', 2366, 16425, 1572, 25033, '2.0000', '3.7873', '3.7873', '6.0000', '6.0000', '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 (17033, '2021-09-14', 2359, 16426, 1572, 32813, '2.0000', '9.7320', '9.7320', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17034, '2021-09-14', 2920, 16427, 1572, 18795, '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 (17035, '2021-09-14', 1481, 16428, 1572, 16695, '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 (17036, '2021-09-14', 2503, 16429, 1572, 32575, '1.0000', '19.9934', '19.9934', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17037, '2021-09-14', 1863, 16430, 1572, 33985, '1.0000', '1.1074', '1.1074', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17038, '2021-09-14', 2896, 16431, 1572, 18357, '1.0000', '14.0000', '14.0000', '17.0000', '17.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 (17039, '2021-09-14', 7342, 16432, 1572, NULL, '1.0000', '15.6000', '15.6000', '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 (17040, '2021-09-14', 1848, 16433, 1572, 4980, '2.0000', '0.4200', '0.4200', '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 (17041, '2021-09-14', 7524, 16434, 1572, NULL, '2.0000', '11.9500', '11.9500', '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 (17042, '2021-09-14', 1499, 16435, 1572, 31996, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '41.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17043, '2021-09-14', 2991, 16436, 1572, 33292, '1.0000', '0.2332', '0.2332', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17044, '2021-09-14', 2567, 16437, 1572, 31724, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17045, '2021-09-14', 1651, 16438, 1572, 32829, '1.0000', '7.4814', '7.4814', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17046, '2021-09-14', 1465, 16439, 1572, 12744, '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 (17047, '2021-09-14', 1715, 16440, 1572, 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 (17048, '2021-09-14', 7675, 16441, 1573, NULL, '1.0000', '11.4300', '11.4300', '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 (17049, '2021-09-14', 7753, 16442, 1573, NULL, '1.0000', '3.1400', '3.1400', '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 (17050, '2021-09-14', 2068, 16443, 1573, 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 (17051, '2021-09-14', 9469, 16444, 1573, NULL, '1.0000', '2.3000', '2.3000', '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 (17052, '2021-09-14', 8032, 16445, 1573, NULL, '1.0000', '12.0000', '12.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 (17053, '2021-09-14', 7899, 16446, 1573, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17054, '2021-09-14', 8085, 16447, 1573, NULL, '3.0000', '14.0000', '14.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 (17055, '2021-09-14', 7412, 16448, 1573, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17056, '2021-09-14', 7853, 16449, 1573, NULL, '1.0000', '35.0000', '35.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 (17057, '2021-09-14', 1563, 16450, 1573, NULL, '1.0000', '4.9000', '4.9000', '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 (17058, '2021-09-14', 8789, 16451, 1573, 30178, '1.0000', '4.9300', '4.9300', '6.5100', '6.5100', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17059, '2021-09-14', 7579, 16452, 1573, NULL, '1.0000', '15.0000', '15.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 (17060, '2021-09-14', 7678, 16453, 1573, NULL, '1.0000', '21.1800', '21.1800', '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 (17061, '2021-09-14', 8596, 16454, 1573, NULL, '1.0000', '17.0000', '17.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 (17062, '2021-09-14', 7558, 16455, 1573, NULL, '20.0000', '1.9700', '1.9700', '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 (17063, '2021-09-14', 2962, 16456, 1573, 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 (17064, '2021-09-14', 7709, 16457, 1573, NULL, '1.0000', '35.8000', '35.8000', '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 (17065, '2021-09-14', 2121, 16458, 1573, NULL, '1.0000', '20.0000', '20.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 (17066, '2021-09-14', 8325, 16459, 1573, NULL, '2.0000', '7.7700', '7.7700', '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 (17067, '2021-09-14', 1303, 16460, 1573, 33727, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '115.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17068, '2021-09-14', 7444, 16461, 1573, 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 (17069, '2021-09-14', 2851, 16462, 1573, NULL, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17070, '2021-09-14', 7411, 16463, 1573, NULL, '5.0000', '1.3500', '1.3500', '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 (17071, '2021-09-14', 8596, 16464, 1573, NULL, '1.0000', '17.0000', '17.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 (17072, '2021-09-14', 7886, 16465, 1573, NULL, '1.0000', '16.1667', '16.1667', '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 (17073, '2021-09-14', 7954, 16466, 1573, NULL, '4.0000', '21.0000', '21.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 (17074, '2021-09-14', 9150, 16467, 1573, 33719, '1.0000', '12.6512', '12.6512', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17075, '2021-09-14', 8547, 16468, 1573, NULL, '1.0000', '16.5000', '16.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 (17076, '2021-09-14', 7765, 16469, 1573, NULL, '8.0000', '16.0000', '16.0000', '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 (17077, '2021-09-14', 9272, 16470, 1573, NULL, '1.0000', '3.1000', '3.1000', '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 (17078, '2021-09-14', 7353, 16471, 1573, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17079, '2021-09-14', 8166, 16472, 1573, NULL, '1.0000', '4.6000', '4.6000', '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 (17080, '2021-09-14', 8702, 16473, 1573, NULL, '1.0000', '3.6700', '3.6700', '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 (17081, '2021-09-14', 7780, 16474, 1573, NULL, '1.0000', '2.6000', '2.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 (17082, '2021-09-14', 8200, 16475, 1573, NULL, '1.0000', '8.5500', '8.5500', '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 (17083, '2021-09-14', 7411, 16476, 1573, NULL, '3.0000', '1.3500', '1.3500', '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 (17084, '2021-09-14', 7806, 16477, 1573, NULL, '5.0000', '14.0000', '14.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 (17085, '2021-09-14', 8497, 16478, 1573, NULL, '1.0000', '28.0000', '28.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 (17086, '2021-09-14', 9303, 16479, 1573, NULL, '1.0000', '9.0000', '9.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 (17087, '2021-09-14', 2025, 16480, 1574, 6425, '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 (17088, '2021-09-14', 1810, 16481, 1574, 33004, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17089, '2021-09-14', 2315, 16482, 1574, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '282.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17090, '2021-09-14', 1935, 16483, 1574, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17091, '2021-09-14', 1863, 16484, 1574, 33985, '1.0000', '1.1074', '1.1074', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17092, '2021-09-14', 1954, 16485, 1574, 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 (17093, '2021-09-14', 1912, 16486, 1574, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17094, '2021-09-14', 1667, 16487, 1574, 33259, '1.0000', '36.9043', '36.9043', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17095, '2021-09-14', 1499, 16488, 1574, 31996, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17096, '2021-09-14', 2817, 16489, 1574, 22483, '10.0000', '1.8000', '1.8000', '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 (17097, '2021-09-14', 2866, 16490, 1574, 17783, '10.0000', '0.8800', '0.8800', '1.5000', '1.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 (17098, '2021-09-14', 9490, 16491, 1574, 32632, '1.0000', '19.0000', '19.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17099, '2021-09-14', 7839, 16492, 1574, NULL, '1.0000', '5.0000', '5.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 (17100, '2021-09-14', 1533, 16493, 1574, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17101, '2021-09-14', 1761, 16494, 1574, 33995, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17102, '2021-09-14', 8677, 16495, 1574, 32871, '2.0000', '-1.2995', '-1.2995', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17103, '2021-09-14', 1654, 16496, 1574, 33991, '1.0000', '114.7100', '114.7100', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17104, '2021-09-14', 2332, 16497, 1574, 3899, '1.0000', '5.0900', '5.0900', '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 (17105, '2021-09-14', 7758, 16498, 1574, NULL, '1.0000', '10.8500', '10.8500', '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 (17106, '2021-09-14', 9461, 16499, 1574, 33213, '1.0000', '1.6000', '1.6000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17107, '2021-09-14', 2280, 16500, 1574, 21586, '1.0000', '1.9000', '1.9000', '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 (17108, '2021-09-14', 1837, 16501, 1574, 31714, '4.0000', '0.5500', '0.5500', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17109, '2021-09-14', 2854, 16502, 1575, 17370, '1.0000', '8.9500', '8.9500', '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 (17110, '2021-09-14', 3072, 16503, 1575, 27333, '1.0000', '14.0000', '14.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17111, '2021-09-14', 1843, 16504, 1575, 16896, '1.0000', '3.9000', '3.9000', '5.8000', '5.8000', '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 (17112, '2021-09-14', 8596, 16505, 1576, NULL, '1.0000', '17.0000', '17.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 (17113, '2021-09-14', 8166, 16506, 1576, NULL, '1.0000', '4.6000', '4.6000', '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 (17114, '2021-09-14', 8746, 16507, 1576, 32134, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17115, '2021-09-14', 7459, 16508, 1576, NULL, '10.0000', '40.3500', '40.3500', '3.5000', '3.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 (17116, '2021-09-14', 7411, 16509, 1576, NULL, '1.0000', '1.3500', '1.3500', '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 (17117, '2021-09-14', 1733, 16510, 1576, 33756, '2.0000', '8.8900', '8.8900', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17118, '2021-09-14', 1989, 16511, 1576, NULL, '1.0000', '3.5000', '3.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 (17119, '2021-09-14', 7958, 16512, 1576, NULL, '1.0000', '13.0000', '13.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 (17120, '2021-09-14', 7917, 16513, 1576, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (17121, '2021-09-14', 9272, 16514, 1576, NULL, '2.0000', '3.1000', '3.1000', '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 (17122, '2021-09-14', 7674, 16515, 1576, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '253.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17123, '2021-09-14', 7588, 16516, 1576, NULL, '1.0000', '1.5000', '1.5000', '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 (17124, '2021-09-14', 2258, 16517, 1576, NULL, '1.0000', '0.3500', '0.3500', '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 (17125, '2021-09-14', 2811, 16518, 1576, NULL, '2.0000', '3.4000', '3.4000', '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 (17126, '2021-09-14', 7672, 16519, 1576, NULL, '1.0000', '1.0200', '1.0200', '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 (17127, '2021-09-14', 8497, 16520, 1577, NULL, '1.0000', '28.0000', '28.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 (17128, '2021-09-14', 7560, 16521, 1577, NULL, '1.0000', '4.4500', '4.4500', '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 (17129, '2021-09-14', 9092, 16522, 1577, NULL, '2.0000', '5.2900', '5.2900', '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 (17130, '2021-09-14', 2237, 16523, 1578, 34006, '2.0000', '1.5067', '1.5067', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17131, '2021-09-14', 1420, 16524, 1578, 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 (17132, '2021-09-14', 3018, 16525, 1578, 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 (17133, '2021-09-14', 2250, 16526, 1578, 33356, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17134, '2021-09-14', 1447, 16527, 1578, 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 (17135, '2021-09-14', 2280, 16528, 1578, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '27.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 (17136, '2021-09-14', 8677, 16529, 1578, NULL, '1.0000', '7.8000', '7.8000', '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 (17137, '2021-09-14', 7482, 16530, 1578, NULL, '1.0000', '3.0500', '3.0500', '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 (17138, '2021-09-14', 1519, 16531, 1578, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17139, '2021-09-14', 2169, 16532, 1578, NULL, '1.0000', '1.1300', '1.1300', '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 (17140, '2021-09-14', 2660, 16533, 1578, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '19.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 (17141, '2021-09-14', 1590, 16534, 1578, 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 (17142, '2021-09-14', 2169, 16535, 1578, NULL, '1.0000', '1.1300', '1.1300', '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 (17143, '2021-09-14', 9482, 16536, 1578, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '138.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17144, '2021-09-14', 8759, 16537, 1578, 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 (17145, '2021-09-14', 7762, 16538, 1578, NULL, '1.0000', '5.1000', '5.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 (17146, '2021-09-14', 1755, 16539, 1578, 19322, '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 (17147, '2021-09-14', 2821, 16540, 1578, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17148, '2021-09-14', 2655, 16541, 1578, 32552, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17149, '2021-09-14', 1519, 16542, 1578, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17150, '2021-09-14', 2293, 16543, 1578, 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 (17151, '2021-09-14', 7741, 16544, 1578, NULL, '1.0000', '1.2000', '1.2000', '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 (17152, '2021-09-14', 1661, 16545, 1578, 33344, '1.0000', '32.1800', '32.1800', '43.0000', '43.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17153, '2021-09-14', 1523, 16546, 1578, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '11.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 (17154, '2021-09-14', 1519, 16547, 1578, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17155, '2021-09-14', 2315, 16548, 1578, 24937, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '14.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 (17156, '2021-09-14', 2293, 16549, 1578, 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 (17157, '2021-09-14', 2260, 16550, 1578, 23137, '2.0000', '4.2000', '4.2000', '6.0000', '6.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 (17158, '2021-09-14', 2242, 16551, 1578, 34024, '1.0000', '0.6028', '0.6028', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17159, '2021-09-14', 1580, 16552, 1578, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17160, '2021-09-14', 8363, 16553, 1579, NULL, '1.0000', '38.0000', '38.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 (17161, '2021-09-14', 8938, 16554, 1579, NULL, '2.0000', '7.8500', '7.8500', '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 (17162, '2021-09-14', 1409, 16555, 1580, 33036, '1.0000', '13.1389', '13.1389', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17163, '2021-09-14', 2167, 16556, 1580, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17164, '2021-09-14', 1912, 16557, 1580, 29799, '2.0000', '0.5743', '0.5743', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17165, '2021-09-14', 2020, 16558, 1580, 31705, '1.0000', '7.9050', '7.9050', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17166, '2021-09-14', 2362, 16559, 1580, 22234, '28.0000', '82.0200', '82.0200', '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 (17167, '2021-09-14', 8133, 16560, 1581, 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 (17168, '2021-09-14', 2287, 16561, 1581, 29630, '1.0000', '1.1700', '1.1700', '3.0000', '3.0000', '97.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17169, '2021-09-14', 2614, 16562, 1581, 34020, '1.0000', '53.3200', '53.3200', '71.0000', '71.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17170, '2021-09-14', 2242, 16563, 1581, 34024, '1.0000', '0.6028', '0.6028', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17171, '2021-09-14', 1523, 16564, 1581, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '10.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 (17172, '2021-09-14', 2302, 16565, 1581, 31085, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17173, '2021-09-14', 2655, 16566, 1581, 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 (17174, '2021-09-14', 9207, 16567, 1581, NULL, '2.0000', '4.6000', '4.6000', '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 (17175, '2021-09-14', 1840, 16568, 1581, 19856, '3.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 (17176, '2021-09-14', 1841, 16569, 1581, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17177, '2021-09-14', 2713, 16570, 1581, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17178, '2021-09-14', 1999, 16571, 1581, 22550, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '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 (17179, '2021-09-14', 7913, 16572, 1581, NULL, '1.0000', '2.5500', '2.5500', '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 (17180, '2021-09-14', 1495, 16573, 1581, 19391, '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 (17181, '2021-09-14', 1935, 16574, 1581, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17182, '2021-09-14', 1763, 16575, 1581, 19383, '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 (17183, '2021-09-14', 7558, 16576, 1581, NULL, '4.0000', '33.0200', '33.0200', '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 (17184, '2021-09-14', 2169, 16577, 1581, NULL, '1.0000', '1.1300', '1.1300', '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 (17185, '2021-09-14', 2866, 16578, 1581, 18927, '10.0000', '0.8800', '0.8800', '1.5000', '1.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 (17186, '2021-09-14', 8340, 16579, 1581, NULL, '10.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (17187, '2021-09-14', 1912, 16580, 1581, 34005, '1.0000', '0.6591', '0.6591', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17188, '2021-09-14', 7554, 16581, 1581, NULL, '10.0000', '16.0000', '16.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 (17189, '2021-09-14', 7736, 16582, 1581, NULL, '1.0000', '15.0000', '15.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 (17190, '2021-09-14', 1428, 16583, 1581, 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 (17191, '2021-09-14', 1429, 16584, 1581, 19834, '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 (17192, '2021-09-14', 2309, 16585, 1581, 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 (17193, '2021-09-14', 2242, 16586, 1581, 34024, '1.0000', '0.6028', '0.6028', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17194, '2021-09-14', 1787, 16587, 1581, NULL, '1.0000', '0.8100', '0.8100', '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 (17195, '2021-09-14', 8677, 16588, 1581, NULL, '1.0000', '7.8000', '7.8000', '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 (17196, '2021-09-14', 2169, 16589, 1581, NULL, '1.0000', '1.1300', '1.1300', '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 (17197, '2021-09-14', 1499, 16590, 1581, 33367, '3.0000', '0.4835', '0.4835', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17198, '2021-09-14', 1493, 16591, 1581, 30679, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17199, '2021-09-14', 1856, 16592, 1581, NULL, '3.0000', '4.2500', '4.2500', '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 (17200, '2021-09-14', 1519, 16593, 1581, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17201, '2021-09-14', 7741, 16594, 1581, NULL, '1.0000', '1.2000', '1.2000', '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 (17202, '2021-09-14', 8677, 16595, 1581, NULL, '1.0000', '7.8000', '7.8000', '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 (17203, '2021-09-14', 2140, 16596, 1581, 34147, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17204, '2021-09-14', 2315, 16597, 1581, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '12.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 (17205, '2021-09-14', 2317, 16598, 1581, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '24.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 (17206, '2021-09-14', 1873, 16599, 1581, 33148, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17207, '2021-09-14', 1863, 16600, 1581, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17208, '2021-09-14', 7921, 16601, 1581, NULL, '1.0000', '0.3000', '0.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 (17209, '2021-09-14', 9461, 16602, 1581, NULL, '1.0000', '1.6000', '1.6000', '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 (17210, '2021-09-15', 2649, 16603, 1582, 29629, '1.0000', '76.2400', '76.2400', '101.0000', '101.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17211, '2021-09-15', 2169, 16604, 1582, NULL, '1.0000', '1.1300', '1.1300', '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 (17212, '2021-09-15', 1402, 16605, 1582, 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 (17213, '2021-09-15', 1602, 16606, 1582, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17214, '2021-09-15', 1523, 16607, 1582, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '9.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 (17215, '2021-09-15', 2167, 16608, 1582, 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 (17216, '2021-09-15', 1598, 16609, 1582, 34140, '1.0000', '3.1280', '3.1280', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17217, '2021-09-15', 2768, 16610, 1582, NULL, '2.0000', '0.9600', '0.9600', '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 (17218, '2021-09-15', 2242, 16611, 1582, 34024, '2.0000', '0.6028', '0.6028', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17219, '2021-09-15', 2357, 16612, 1582, 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 (17220, '2021-09-15', 2237, 16613, 1582, 34006, '1.0000', '1.5067', '1.5067', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17221, '2021-09-15', 2169, 16614, 1582, NULL, '1.0000', '1.1300', '1.1300', '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 (17222, '2021-09-15', 2135, 16615, 1582, 23175, '1.0000', '2.5000', '2.5000', '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 (17223, '2021-09-15', 1519, 16616, 1582, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17224, '2021-09-15', 2237, 16617, 1582, 34006, '1.0000', '1.5067', '1.5067', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17225, '2021-09-15', 7554, 16618, 1582, NULL, '10.0000', '16.0000', '16.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 (17226, '2021-09-15', 2088, 16619, 1583, 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 (17227, '2021-09-15', 1612, 16620, 1584, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.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 (17228, '2021-09-15', 1783, 16621, 1584, 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 (17229, '2021-09-15', 2519, 16622, 1584, NULL, '3.0000', '11.0000', '11.0000', '14.5000', '14.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 (17230, '2021-09-15', 2379, 16623, 1584, 4032, '-14.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 (17231, '2021-09-15', 2379, 16623, 1584, NULL, '15.0000', '1.5900', '1.5900', '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 (17232, '2021-09-15', 2643, 16624, 1584, 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 (17233, '2021-09-15', 1519, 16625, 1584, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.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 (17234, '2021-09-15', 1845, 16626, 1584, 6222, '-2.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 (17235, '2021-09-15', 1845, 16626, 1584, NULL, '3.0000', '19.5000', '19.5000', '26.0000', '26.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 (17236, '2021-09-15', 1347, 16627, 1584, 3320, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '28.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 (17237, '2021-09-15', 1837, 16628, 1584, 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 (17238, '2021-09-15', 7643, 16629, 1584, NULL, '1.0000', '24.0000', '24.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 (17239, '2021-09-15', 1307, 16630, 1584, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '13.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 (17240, '2021-09-15', 1863, 16631, 1584, 10808, '-5.0000', '0.4136', '0.4136', '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 (17241, '2021-09-15', 1863, 16631, 1584, NULL, '6.0000', '0.4136', '0.4136', '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 (17242, '2021-09-15', 9084, 16632, 1584, NULL, '1.0000', '9.1000', '9.1000', '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 (17243, '2021-09-15', 9214, 16633, 1584, NULL, '1.0000', '9.6000', '9.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 (17244, '2021-09-15', 2556, 16634, 1584, 7196, '-24.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 (17245, '2021-09-15', 2556, 16634, 1584, NULL, '25.0000', '0.5800', '0.5800', '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 (17246, '2021-09-15', 2643, 16635, 1584, NULL, '3.0000', '0.8700', '0.8700', '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 (17247, '2021-09-15', 2416, 16636, 1584, 4745, '-3.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 (17248, '2021-09-15', 2416, 16636, 1584, NULL, '4.0000', '1.2000', '1.2000', '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 (17249, '2021-09-15', 2264, 16637, 1584, 2107, '1.0000', '12.0000', '12.0000', '18.5000', '18.5000', '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 (17250, '2021-09-15', 2408, 16638, 1585, NULL, '1.0000', '9.3500', '9.3500', '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 (17251, '2021-09-15', 1863, 16639, 1586, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17252, '2021-09-15', 8677, 16640, 1586, NULL, '2.0000', '7.8000', '7.8000', '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 (17253, '2021-09-15', 1757, 16641, 1587, 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 (17254, '2021-09-15', 7911, 16642, 1587, NULL, '1.0000', '4.3700', '4.3700', '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 (17255, '2021-09-15', 7922, 16643, 1587, NULL, '1.0000', '6.9800', '6.9800', '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 (17256, '2021-09-15', 7585, 16644, 1587, NULL, '1.0000', '6.2000', '6.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 (17257, '2021-09-15', 7743, 16645, 1587, NULL, '1.0000', '7.3900', '7.3900', '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 (17258, '2021-09-15', 9388, 16646, 1587, NULL, '3.0000', '1.1400', '1.1400', '7.0000', '7.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 (17259, '2021-09-15', 7782, 16647, 1587, NULL, '3.0000', '5.0000', '5.0000', '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 (17260, '2021-09-15', 7641, 16648, 1587, NULL, '1.0000', '1.9000', '1.9000', '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 (17261, '2021-09-15', 7507, 16649, 1587, NULL, '3.0000', '6.5000', '6.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 (17262, '2021-09-15', 9160, 16650, 1587, NULL, '1.0000', '15.0000', '15.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 (17263, '2021-09-15', 7912, 16651, 1587, 33943, '1.0000', '7.6857', '7.6857', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17264, '2021-09-15', 7777, 16652, 1587, NULL, '1.0000', '9.5000', '9.5000', '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 (17265, '2021-09-15', 1486, 16653, 1587, 33959, '1.0000', '17.2400', '17.2400', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17266, '2021-09-15', 7848, 16654, 1587, NULL, '1.0000', '1.3500', '1.3500', '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 (17267, '2021-09-15', 8341, 16655, 1587, NULL, '1.0000', '43.0000', '43.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 (17268, '2021-09-15', 7385, 16656, 1587, NULL, '10.0000', '22306.6568', '22306.6568', '3.5000', '3.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 (17269, '2021-09-15', 1856, 16657, 1587, 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 (17270, '2021-09-15', 7589, 16658, 1587, NULL, '1.0000', '1.7700', '1.7700', '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 (17271, '2021-09-15', 8187, 16659, 1587, NULL, '2.0000', '14.3900', '14.3900', '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 (17272, '2021-09-15', 7958, 16660, 1587, NULL, '1.0000', '13.0000', '13.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 (17273, '2021-09-15', 9254, 16661, 1587, NULL, '1.0000', '20.0000', '20.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 (17274, '2021-09-15', 8166, 16662, 1587, NULL, '1.0000', '4.6000', '4.6000', '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 (17275, '2021-09-15', 3016, 16663, 1587, NULL, '1.0000', '14.5200', '14.5200', '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 (17276, '2021-09-15', 2648, 16664, 1587, NULL, '1.0000', '5.4000', '5.4000', '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 (17277, '2021-09-15', 2950, 16665, 1588, 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 (17278, '2021-09-15', 1512, 16666, 1588, 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 (17279, '2021-09-15', 7638, 16667, 1588, 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 (17280, '2021-09-15', 2379, 16668, 1588, NULL, '1.0000', '1.8000', '1.8000', '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 (17281, '2021-09-15', 2511, 16669, 1588, 34090, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17282, '2021-09-15', 2656, 16670, 1588, 32553, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17283, '2021-09-15', 1763, 16671, 1588, 19383, '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 (17284, '2021-09-15', 2302, 16672, 1588, 31085, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17285, '2021-09-15', 9163, 16673, 1588, NULL, '1.0000', '15.8000', '15.8000', '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 (17286, '2021-09-15', 3067, 16674, 1588, 25025, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '37.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 (17287, '2021-09-15', 1489, 16675, 1588, NULL, '1.0000', '28.1700', '28.1700', '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 (17288, '2021-09-15', 7317, 16676, 1588, NULL, '1.0000', '19.5500', '19.5500', '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 (17289, '2021-09-15', 2169, 16677, 1588, NULL, '2.0000', '1.1300', '1.1300', '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 (17290, '2021-09-15', 1337, 16678, 1588, 31095, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17291, '2021-09-15', 9204, 16679, 1588, NULL, '1.0000', '8.1600', '8.1600', '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 (17292, '2021-09-15', 2991, 16680, 1588, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '93.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 (17293, '2021-09-15', 9393, 16681, 1588, NULL, '1.0000', '15.0000', '15.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 (17294, '2021-09-15', 2484, 16682, 1588, 24871, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '4.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 (17295, '2021-09-15', 2477, 16683, 1588, 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 (17296, '2021-09-15', 2478, 16684, 1588, 24880, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.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 (17297, '2021-09-15', 2697, 16685, 1588, 24877, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '4.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 (17298, '2021-09-15', 1761, 16686, 1589, 33995, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17299, '2021-09-15', 1654, 16687, 1589, 33991, '1.0000', '114.7100', '114.7100', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17300, '2021-09-15', 8773, 16688, 1589, 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 (17301, '2021-09-15', 2876, 16689, 1589, 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 (17302, '2021-09-15', 1617, 16690, 1589, 9418, '2.0000', '4.6300', '4.6300', '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 (17303, '2021-09-15', 7380, 16691, 1589, NULL, '1.0000', '5.6200', '5.6200', '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 (17304, '2021-09-15', 2617, 16692, 1589, 29804, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17305, '2021-09-15', 1523, 16693, 1589, 24285, '2.0000', '0.9596', '0.9596', '5.0000', '5.0000', '26.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 (17306, '2021-09-15', 8594, 16694, 1589, 32594, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17307, '2021-09-15', 2454, 16695, 1589, 32035, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17308, '2021-09-15', 1687, 16696, 1589, 5899, '1.0000', '15.3580', '15.3580', '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 (17309, '2021-09-15', 1824, 16697, 1589, 34001, '1.0000', '9.5839', '9.5839', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17310, '2021-09-15', 2237, 16698, 1589, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '15.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 (17311, '2021-09-15', 2256, 16699, 1589, 17359, '1.0000', '12.7400', '12.7400', '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 (17312, '2021-09-15', 7443, 16700, 1589, NULL, '1.0000', '6.8600', '6.8600', '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 (17313, '2021-09-15', 2390, 16701, 1589, 4397, '4.0000', '7.4000', '7.4000', '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 (17314, '2021-09-15', 1662, 16702, 1590, 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 (17315, '2021-09-15', 7848, 16703, 1590, NULL, '1.0000', '1.3500', '1.3500', '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 (17316, '2021-09-15', 7641, 16704, 1591, NULL, '1.0000', '1.9000', '1.9000', '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 (17317, '2021-09-15', 7593, 16705, 1591, NULL, '1.0000', '2.4500', '2.4500', '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 (17318, '2021-09-15', 9094, 16706, 1591, NULL, '1.0000', '6.0000', '6.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 (17319, '2021-09-15', 8476, 16707, 1591, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (17320, '2021-09-15', 8000, 16708, 1591, NULL, '1.0000', '27.9111', '27.9111', '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 (17321, '2021-09-15', 2092, 16709, 1591, NULL, '1.0000', '4.1500', '4.1500', '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 (17322, '2021-09-15', 2847, 16710, 1591, 30017, '1.0000', '13.8800', '13.8800', '18.0000', '18.0000', '27.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17323, '2021-09-15', 7411, 16711, 1591, NULL, '2.0000', '1.3500', '1.3500', '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 (17324, '2021-09-15', 7357, 16712, 1591, 31030, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17325, '2021-09-15', 7380, 16713, 1591, NULL, '1.0000', '5.6200', '5.6200', '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 (17326, '2021-09-15', 8000, 16714, 1591, NULL, '2.0000', '27.9111', '27.9111', '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 (17327, '2021-09-15', 8497, 16715, 1591, NULL, '1.0000', '28.0000', '28.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 (17328, '2021-09-15', 7748, 16716, 1591, NULL, '1.0000', '33.9800', '33.9800', '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 (17329, '2021-09-15', 1841, 16717, 1591, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '173.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17330, '2021-09-15', 2315, 16718, 1591, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17331, '2021-09-15', 2906, 16719, 1591, 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 (17332, '2021-09-15', 7431, 16720, 1591, 33940, '1.0000', '2.8745', '2.8745', '24.0000', '24.0000', '9.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17333, '2021-09-15', 8702, 16721, 1591, NULL, '1.0000', '3.6700', '3.6700', '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 (17334, '2021-09-15', 7641, 16722, 1591, NULL, '1.0000', '1.9000', '1.9000', '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 (17335, '2021-09-15', 7674, 16723, 1591, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '252.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17336, '2021-09-15', 7713, 16724, 1591, NULL, '3.0000', '4.4000', '4.4000', '0.6000', '0.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 (17337, '2021-09-15', 7674, 16725, 1591, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '252.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17338, '2021-09-15', 9274, 16726, 1591, NULL, '1.0000', '0.2500', '0.2500', '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 (17339, '2021-09-15', 9271, 16727, 1591, NULL, '1.0000', '0.9900', '0.9900', '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 (17340, '2021-09-15', 7531, 16728, 1591, NULL, '2.0000', '16.5000', '16.5000', '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 (17341, '2021-09-15', 7675, 16729, 1591, NULL, '1.0000', '11.4300', '11.4300', '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 (17342, '2021-09-15', 2289, 16730, 1591, NULL, '10.0000', '0.2300', '0.2300', '0.5000', '0.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 (17343, '2021-09-15', 7524, 16731, 1591, NULL, '1.0000', '11.9500', '11.9500', '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 (17344, '2021-09-15', 7769, 16732, 1592, 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 (17345, '2021-09-15', 7886, 16733, 1592, NULL, '1.0000', '14.5000', '14.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 (17346, '2021-09-15', 2521, 16734, 1592, 22548, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '0.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 (17347, '2021-09-15', 1431, 16735, 1592, 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 (17348, '2021-09-15', 1519, 16736, 1592, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17349, '2021-09-15', 8614, 16737, 1592, NULL, '1.0000', '20.0000', '20.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 (17350, '2021-09-15', 1851, 16738, 1592, 30668, '1.0000', '12.2777', '12.2777', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17351, '2021-09-15', 2548, 16739, 1592, 13719, '1.0000', '6.7200', '6.7200', '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 (17352, '2021-09-15', 2821, 16740, 1592, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17353, '2021-09-15', 1935, 16741, 1592, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17354, '2021-09-15', 2660, 16742, 1592, 23143, '1.0000', '0.7000', '0.7000', '1.0000', '1.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 (17355, '2021-09-15', 1888, 16743, 1592, 33352, '1.0000', '118.7393', '118.7393', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17356, '2021-09-15', 2169, 16744, 1592, NULL, '1.0000', '1.1300', '1.1300', '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 (17357, '2021-09-15', 7411, 16745, 1592, NULL, '1.0000', '1.3500', '1.3500', '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 (17358, '2021-09-15', 2673, 16746, 1592, 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 (17359, '2021-09-15', 2821, 16747, 1592, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17360, '2021-09-15', 1863, 16748, 1592, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17361, '2021-09-15', 2260, 16749, 1592, 23137, '1.0000', '4.2000', '4.2000', '6.0000', '6.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 (17362, '2021-09-15', 1519, 16750, 1592, 34016, '2.0000', '3.3500', '3.3500', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17363, '2021-09-15', 7411, 16751, 1592, NULL, '1.0000', '1.3500', '1.3500', '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 (17364, '2021-09-15', 7425, 16752, 1592, NULL, '1.0000', '25.0000', '25.0000', '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 (17365, '2021-09-15', 1912, 16753, 1592, NULL, '1.0000', '0.6591', '0.6591', '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 (17366, '2021-09-15', 2060, 16754, 1592, 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 (17367, '2021-09-15', 2656, 16755, 1592, 32553, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17368, '2021-09-15', 2248, 16756, 1592, 31108, '1.0000', '2.8428', '2.8428', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17369, '2021-09-15', 1912, 16757, 1592, NULL, '1.0000', '0.6591', '0.6591', '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 (17370, '2021-09-15', 2486, 16758, 1592, 24874, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.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 (17371, '2021-09-15', 1637, 16759, 1592, 19388, '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 (17372, '2021-09-15', 7848, 16760, 1593, NULL, '1.0000', '1.3500', '1.3500', '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 (17373, '2021-09-15', 8000, 16761, 1593, NULL, '1.0000', '27.9111', '27.9111', '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 (17374, '2021-09-15', 7954, 16762, 1593, NULL, '4.0000', '21.0000', '21.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 (17375, '2021-09-15', 7784, 16763, 1593, NULL, '4.0000', '7.4600', '7.4600', '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 (17376, '2021-09-15', 8074, 16764, 1593, 31936, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 223);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17377, '2021-09-15', 2155, 16765, 1593, 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 (17378, '2021-09-15', 7848, 16766, 1593, NULL, '1.0000', '1.3500', '1.3500', '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 (17379, '2021-09-15', 7674, 16767, 1593, 33721, '3.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '248.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17380, '2021-09-15', 7532, 16768, 1593, NULL, '1.0000', '9.0500', '9.0500', '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 (17381, '2021-09-15', 8497, 16769, 1593, NULL, '1.0000', '28.0000', '28.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 (17382, '2021-09-15', 7779, 16770, 1593, NULL, '1.0000', '0.6200', '0.6200', '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 (17383, '2021-09-15', 8184, 16771, 1593, NULL, '10.0000', '0.8000', '0.8000', '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 (17384, '2021-09-15', 7680, 16772, 1593, NULL, '1.0000', '7.4000', '7.4000', '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 (17385, '2021-09-15', 7557, 16773, 1593, 33079, '10.0000', '0.5000', '0.5000', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17386, '2021-09-15', 7672, 16774, 1593, NULL, '3.0000', '1.0200', '1.0200', '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 (17387, '2021-09-15', 7514, 16775, 1593, NULL, '1.0000', '7.8800', '7.8800', '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 (17388, '2021-09-15', 7609, 16776, 1593, NULL, '1.0000', '4.3300', '4.3300', '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 (17389, '2021-09-15', 7514, 16777, 1593, NULL, '1.0000', '7.8800', '7.8800', '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 (17390, '2021-09-15', 7753, 16778, 1593, NULL, '1.0000', '3.1400', '3.1400', '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 (17391, '2021-09-15', 8735, 16779, 1593, NULL, '1.0000', '5.6000', '5.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 (17392, '2021-09-15', 8868, 16780, 1593, NULL, '10.0000', '15.5000', '15.5000', '0.6000', '0.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 (17393, '2021-09-15', 7552, 16781, 1593, 30164, '1.0000', '4.0000', '4.0000', '5.2800', '5.2800', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17394, '2021-09-15', 9193, 16782, 1593, NULL, '2.0000', '6.7400', '6.7400', '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 (17395, '2021-09-15', 1339, 16783, 1593, 33981, '1.0000', '1.7776', '1.7776', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17396, '2021-09-15', 8744, 16784, 1593, 32142, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17397, '2021-09-15', 2258, 16785, 1593, NULL, '1.0000', '0.3500', '0.3500', '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 (17398, '2021-09-15', 9391, 16786, 1593, NULL, '1.0000', '3.0000', '3.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 (17399, '2021-09-15', 7558, 16787, 1594, NULL, '14.0000', '1.9700', '1.9700', '3.0000', '3.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 (17400, '2021-09-15', 2486, 16788, 1594, 21821, '4.0000', '4.0000', '4.0000', '5.0000', '5.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 (17401, '2021-09-15', 2355, 16789, 1594, NULL, '10.0000', '-90.6000', '-90.6000', '7.2000', '7.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 (17402, '2021-09-15', 1688, 16790, 1594, 29810, '1.0000', '17.8694', '17.8694', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17403, '2021-09-15', 2366, 16791, 1594, 25033, '2.0000', '3.7873', '3.7873', '6.0000', '6.0000', '0.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 (17404, '2021-09-15', 1851, 16792, 1594, 33215, '1.0000', '13.2013', '13.2013', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17405, '2021-09-15', 2541, 16793, 1594, 23602, '1.0000', '9.6622', '9.6622', '13.5000', '13.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 (17406, '2021-09-15', 2237, 16794, 1594, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '14.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 (17407, '2021-09-15', 1574, 16795, 1594, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '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 (17408, '2021-09-15', 2712, 16796, 1594, 32596, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17409, '2021-09-15', 2285, 16797, 1594, 32021, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17410, '2021-09-15', 1523, 16798, 1594, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '25.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 (17411, '2021-09-15', 1347, 16799, 1594, NULL, '10.0000', '3.4909', '3.4909', '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 (17412, '2021-09-15', 1675, 16800, 1594, 31708, '1.0000', '67.3570', '67.3570', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17413, '2021-09-15', 7559, 16801, 1594, NULL, '4.0000', '6.0000', '6.0000', '9.0000', '9.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 (17414, '2021-09-15', 8765, 16802, 1594, 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 (17415, '2021-09-15', 1480, 16803, 1594, 21575, '1.0000', '90.0000', '90.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 (17416, '2021-09-15', 1482, 16804, 1594, 24321, '1.0000', '90.9565', '90.9565', '17.0000', '17.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 (17417, '2021-09-15', 2437, 16805, 1594, 32621, '1.0000', '88.0000', '88.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17418, '2021-09-15', 2332, 16806, 1594, 3899, '1.0000', '5.0900', '5.0900', '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 (17419, '2021-09-15', 2656, 16807, 1594, 32590, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17420, '2021-09-15', 2167, 16808, 1594, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17421, '2021-09-15', 2699, 16809, 1594, 32591, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17422, '2021-09-15', 2167, 16810, 1595, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17423, '2021-09-15', 2699, 16811, 1595, 32591, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17424, '2021-09-15', 1785, 16812, 1595, 33994, '1.0000', '14.1973', '14.1973', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17425, '2021-09-15', 1602, 16813, 1595, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '34.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17426, '2021-09-15', 2036, 16814, 1595, 4401, '2.0000', '8.0000', '8.0000', '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 (17427, '2021-09-15', 1519, 16815, 1595, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '14.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 (17428, '2021-09-15', 1502, 16816, 1595, 1505, '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 (17429, '2021-09-15', 2268, 16817, 1595, 32026, '2.0000', '7.3000', '7.3000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17430, '2021-09-15', 1637, 16818, 1595, 33223, '1.0000', '40.7473', '40.7473', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17431, '2021-09-15', 1928, 16819, 1595, 33012, '1.0000', '76.8924', '76.8924', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17432, '2021-09-15', 2817, 16820, 1595, 22483, '10.0000', '1.8000', '1.8000', '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 (17433, '2021-09-15', 2866, 16821, 1595, 17783, '10.0000', '0.8800', '0.8800', '1.5000', '1.5000', '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 (17434, '2021-09-15', 1339, 16822, 1596, 32530, '1.0000', '0.3390', '0.3390', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17435, '2021-09-15', 1493, 16823, 1596, 30679, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17436, '2021-09-15', 7558, 16824, 1596, NULL, '10.0000', '33.0200', '33.0200', '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 (17437, '2021-09-15', 1863, 16825, 1596, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17438, '2021-09-15', 1519, 16826, 1596, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17439, '2021-09-15', 1601, 16827, 1596, 31098, '1.0000', '40.6380', '40.6380', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17440, '2021-09-15', 8715, 16828, 1597, NULL, '1.0000', '3.3000', '3.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 (17441, '2021-09-15', 9092, 16829, 1597, NULL, '3.0000', '5.2900', '5.2900', '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 (17442, '2021-09-15', 2656, 16830, 1597, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17443, '2021-09-15', 7753, 16831, 1597, NULL, '1.0000', '3.1400', '3.1400', '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 (17444, '2021-09-15', 7866, 16832, 1597, 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 (17445, '2021-09-15', 8454, 16833, 1597, NULL, '1.0000', '5.1700', '5.1700', '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 (17446, '2021-09-15', 7743, 16834, 1598, NULL, '1.0000', '7.3900', '7.3900', '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 (17447, '2021-09-15', 9482, 16835, 1598, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '135.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17448, '2021-09-15', 2135, 16836, 1598, 23175, '1.0000', '2.5000', '2.5000', '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 (17449, '2021-09-15', 1730, 16837, 1599, 33262, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17450, '2021-09-15', 2656, 16838, 1599, 32590, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17451, '2021-09-15', 2437, 16839, 1599, 32621, '1.0000', '88.0000', '88.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17452, '2021-09-15', 2363, 16840, 1599, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17453, '2021-09-15', 9295, 16841, 1600, NULL, '1.0000', '4.4000', '4.4000', '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 (17454, '2021-09-15', 9158, 16842, 1600, NULL, '1.0000', '3.7000', '3.7000', '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 (17455, '2021-09-15', 9158, 16843, 1601, NULL, '1.0000', '3.7000', '3.7000', '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 (17456, '2021-09-15', 9295, 16844, 1601, NULL, '1.0000', '4.4000', '4.4000', '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 (17457, '2021-09-15', 1504, 16845, 1602, 33988, '1.0000', '1.8357', '1.8357', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17458, '2021-09-16', 7638, 16846, 1603, 33955, '1.0000', '7.9837', '7.9837', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17459, '2021-09-16', 7375, 16847, 1603, 30010, '14.0000', '5.1000', '5.1000', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17460, '2021-09-16', 8054, 16848, 1603, NULL, '2.0000', '16.0000', '16.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 (17461, '2021-09-16', 8195, 16849, 1603, NULL, '1.0000', '62.2000', '62.2000', '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 (17462, '2021-09-16', 7609, 16850, 1603, NULL, '1.0000', '4.3300', '4.3300', '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 (17463, '2021-09-16', 7965, 16851, 1603, NULL, '3.0000', '5.6100', '5.6100', '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 (17464, '2021-09-16', 7920, 16852, 1603, 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 (17465, '2021-09-16', 2442, 16853, 1603, 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 (17466, '2021-09-16', 2662, 16854, 1603, 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 (17467, '2021-09-16', 9400, 16855, 1603, NULL, '1.0000', '0.5000', '0.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 (17468, '2021-09-16', 7338, 16856, 1603, 33739, '1.0000', '23.1300', '23.1300', '31.0000', '31.0000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17469, '2021-09-16', 8340, 16857, 1603, NULL, '15.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (17470, '2021-09-16', 7710, 16858, 1603, NULL, '3.0000', '26.0000', '26.0000', '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 (17471, '2021-09-16', 2392, 16859, 1603, NULL, '1.0000', '3.2000', '3.2000', '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 (17472, '2021-09-16', 7702, 16860, 1603, NULL, '1.0000', '0.4600', '0.4600', '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 (17473, '2021-09-16', 1763, 16861, 1603, NULL, '1.0000', '4.6900', '4.6900', '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 (17474, '2021-09-16', 7411, 16862, 1603, NULL, '1.0000', '1.3500', '1.3500', '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 (17475, '2021-09-16', 7710, 16863, 1603, NULL, '2.0000', '26.0000', '26.0000', '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 (17476, '2021-09-16', 7874, 16864, 1603, 33516, '1.0000', '52.9094', '52.9094', '65.0000', '65.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17477, '2021-09-16', 7674, 16865, 1603, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '246.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17478, '2021-09-16', 2070, 16866, 1603, 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 (17479, '2021-09-16', 2060, 16867, 1603, 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 (17480, '2021-09-16', 1855, 16868, 1603, 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 (17481, '2021-09-16', 8300, 16869, 1603, NULL, '2.0000', '7.4300', '7.4300', '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 (17482, '2021-09-16', 8654, 16870, 1603, NULL, '1.0000', '5.8000', '5.8000', '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 (17483, '2021-09-16', 9029, 16871, 1603, NULL, '1.0000', '0.1000', '0.1000', '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 (17484, '2021-09-16', 1782, 16872, 1604, 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 (17485, '2021-09-16', 1523, 16873, 1604, 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 (17486, '2021-09-16', 1863, 16874, 1604, 10808, '-6.0000', '0.4136', '0.4136', '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 (17487, '2021-09-16', 1863, 16874, 1604, NULL, '7.0000', '0.4136', '0.4136', '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 (17488, '2021-09-16', 2210, 16875, 1604, 1402, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 68);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17489, '2021-09-16', 2169, 16876, 1604, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '23.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 (17490, '2021-09-16', 1602, 16877, 1604, 5897, '1.0000', '6.7859', '6.7859', '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 (17491, '2021-09-16', 2357, 16878, 1604, 18852, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (17492, '2021-09-16', 2167, 16879, 1604, 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 (17493, '2021-09-16', 2876, 16880, 1604, 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 (17494, '2021-09-16', 9478, 16881, 1604, NULL, '1.0000', '9.0000', '9.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 (17495, '2021-09-16', 2556, 16882, 1604, 7196, '-25.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 (17496, '2021-09-16', 2556, 16882, 1604, NULL, '26.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-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 (17497, '2021-09-16', 2169, 16883, 1604, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '23.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 (17498, '2021-09-16', 2699, 16884, 1604, 12529, '-6.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 (17499, '2021-09-16', 2699, 16884, 1604, NULL, '7.0000', '3.0000', '3.0000', '4.5000', '4.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 (17500, '2021-09-16', 2486, 16885, 1604, 21782, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '0.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 (17501, '2021-09-16', 2602, 16886, 1604, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '14.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 (17502, '2021-09-16', 1307, 16887, 1605, 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 (17503, '2021-09-16', 1342, 16888, 1605, 34067, '1.0000', '21.9572', '21.9572', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17504, '2021-09-16', 3058, 16889, 1605, 30677, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17505, '2021-09-16', 7765, 16890, 1605, NULL, '1.0000', '16.0000', '16.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 (17506, '2021-09-16', 7473, 16891, 1605, NULL, '1.0000', '9.2200', '9.2200', '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 (17507, '2021-09-16', 2169, 16892, 1605, NULL, '1.0000', '1.1300', '1.1300', '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 (17508, '2021-09-16', 2237, 16893, 1605, 34006, '1.0000', '1.5067', '1.5067', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17509, '2021-09-16', 7779, 16894, 1605, NULL, '1.0000', '0.6200', '0.6200', '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 (17510, '2021-09-16', 1580, 16895, 1605, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17511, '2021-09-16', 8677, 16896, 1605, NULL, '1.0000', '7.8000', '7.8000', '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 (17512, '2021-09-16', 2277, 16897, 1605, 34152, '3.0000', '1.0449', '1.0449', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17513, '2021-09-16', 2240, 16898, 1605, 31113, '1.0000', '34.0000', '34.0000', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17514, '2021-09-16', 8319, 16899, 1605, 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 (17515, '2021-09-16', 7368, 16900, 1605, NULL, '1.0000', '11.4000', '11.4000', '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 (17516, '2021-09-16', 2315, 16901, 1605, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '10.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 (17517, '2021-09-16', 1912, 16902, 1605, NULL, '3.0000', '0.6591', '0.6591', '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 (17518, '2021-09-16', 2821, 16903, 1605, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17519, '2021-09-16', 2655, 16904, 1605, NULL, '3.0000', '6.5000', '6.5000', '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 (17520, '2021-09-16', 2020, 16905, 1605, 34031, '1.0000', '7.8240', '7.8240', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17521, '2021-09-16', 1912, 16906, 1605, NULL, '1.0000', '0.6591', '0.6591', '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 (17522, '2021-09-16', 2237, 16907, 1605, 34006, '1.0000', '1.5067', '1.5067', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17523, '2021-09-16', 1812, 16908, 1605, 29639, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17524, '2021-09-16', 1557, 16909, 1605, 30671, '1.0000', '7.8420', '7.8420', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17525, '2021-09-16', 2712, 16910, 1605, 32557, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17526, '2021-09-16', 2327, 16911, 1605, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '16.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 (17527, '2021-09-16', 2169, 16912, 1605, NULL, '1.0000', '1.1300', '1.1300', '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 (17528, '2021-09-16', 1598, 16913, 1605, 33145, '1.0000', '3.1280', '3.1280', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17529, '2021-09-16', 8666, 16914, 1605, NULL, '1.0000', '0.4600', '0.4600', '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 (17530, '2021-09-16', 1307, 16915, 1605, 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 (17531, '2021-09-16', 1311, 16916, 1605, 22366, '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 (17532, '2021-09-16', 1425, 16917, 1606, 31689, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17533, '2021-09-16', 2109, 16918, 1606, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.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 (17534, '2021-09-16', 1367, 16919, 1606, NULL, '10.0000', '4.9000', '4.9000', '7.0000', '7.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 (17535, '2021-09-16', 2698, 16920, 1606, 12388, '1.0000', '36.8600', '36.8600', '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 (17536, '2021-09-16', 7506, 16921, 1606, NULL, '1.0000', '15.0000', '15.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 (17537, '2021-09-16', 2151, 16922, 1606, NULL, '1.0000', '17.5000', '17.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 (17538, '2021-09-16', 1432, 16923, 1606, 33040, '1.0000', '9.2619', '9.2619', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17539, '2021-09-16', 8039, 16924, 1606, NULL, '1.0000', '34.6600', '34.6600', '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 (17540, '2021-09-16', 2315, 16925, 1606, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '280.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17541, '2021-09-16', 2660, 16926, 1606, 18686, '1.0000', '0.7000', '0.7000', '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 (17542, '2021-09-16', 9177, 16927, 1606, 31997, '10.0000', '0.8000', '0.8000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17543, '2021-09-16', 2298, 16928, 1606, 12736, '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 (17544, '2021-09-16', 2298, 16928, 1606, 3137, '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 (17545, '2021-09-16', 1574, 16929, 1606, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.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 (17546, '2021-09-16', 1900, 16930, 1606, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '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 (17547, '2021-09-16', 1612, 16931, 1606, 9422, '1.0000', '1.6000', '1.6000', '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 (17548, '2021-09-16', 2862, 16932, 1606, 17481, '1.0000', '5.0000', '5.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 (17549, '2021-09-16', 2320, 16933, 1606, 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 (17550, '2021-09-16', 1568, 16934, 1606, 9454, '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 (17551, '2021-09-16', 2660, 16935, 1606, 18686, '1.0000', '0.7000', '0.7000', '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 (17552, '2021-09-16', 2083, 16936, 1606, 1662, '6.0000', '0.5800', '0.5800', '1.0000', '1.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 (17553, '2021-09-16', 1695, 16937, 1606, 33019, '1.0000', '65.1666', '65.1666', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17554, '2021-09-16', 1432, 16938, 1606, 33040, '1.0000', '9.2619', '9.2619', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17555, '2021-09-16', 2168, 16939, 1606, 22489, '1.0000', '26.0000', '26.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 (17556, '2021-09-16', 1759, 16940, 1606, 6782, '1.0000', '63.8334', '63.8334', '15.0000', '15.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 (17557, '2021-09-16', 8166, 16941, 1606, NULL, '1.0000', '4.6000', '4.6000', '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 (17558, '2021-09-16', 1863, 16942, 1606, 33985, '6.0000', '1.1074', '1.1074', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17559, '2021-09-16', 1550, 16943, 1606, 32009, '1.0000', '391.6974', '391.6974', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17560, '2021-09-16', 2539, 16944, 1606, 12244, '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 (17561, '2021-09-16', 1486, 16945, 1606, 1482, '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 (17562, '2021-09-16', 1665, 16946, 1606, 33258, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17563, '2021-09-16', 9482, 16947, 1607, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '133.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17564, '2021-09-16', 7980, 16948, 1607, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (17565, '2021-09-16', 7321, 16949, 1607, NULL, '1.0000', '7.9500', '7.9500', '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 (17566, '2021-09-16', 1612, 16950, 1607, 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 (17567, '2021-09-16', 7385, 16951, 1607, NULL, '3.0000', '12.5000', '12.5000', '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 (17568, '2021-09-16', 7641, 16952, 1608, NULL, '1.0000', '1.9000', '1.9000', '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 (17569, '2021-09-16', 8153, 16953, 1608, NULL, '4.0000', '0.3200', '0.3200', '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 (17570, '2021-09-16', 7411, 16954, 1608, NULL, '1.0000', '1.3500', '1.3500', '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 (17571, '2021-09-16', 7638, 16955, 1608, 33955, '1.0000', '7.9837', '7.9837', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17572, '2021-09-16', 8172, 16956, 1608, NULL, '1.0000', '40.7000', '40.7000', '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 (17573, '2021-09-16', 9399, 16957, 1608, NULL, '1.0000', '4.4000', '4.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 (17574, '2021-09-16', 9177, 16958, 1608, NULL, '5.0000', '0.8000', '0.8000', '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 (17575, '2021-09-16', 9098, 16959, 1608, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17576, '2021-09-16', 7848, 16960, 1608, NULL, '1.0000', '1.3500', '1.3500', '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 (17577, '2021-09-16', 7765, 16961, 1608, NULL, '8.0000', '16.0000', '16.0000', '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 (17578, '2021-09-16', 7852, 16962, 1608, NULL, '1.0000', '6.1100', '6.1100', '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 (17579, '2021-09-16', 7524, 16963, 1608, NULL, '1.0000', '11.9500', '11.9500', '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 (17580, '2021-09-16', 8699, 16964, 1608, NULL, '1.0000', '6.3800', '6.3800', '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 (17581, '2021-09-16', 8851, 16965, 1608, NULL, '2.0000', '16.6600', '16.6600', '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 (17582, '2021-09-16', 8382, 16966, 1608, NULL, '1.0000', '1.5000', '1.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 (17583, '2021-09-16', 2315, 16967, 1608, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17584, '2021-09-16', 7782, 16968, 1608, NULL, '1.0000', '5.0000', '5.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 (17585, '2021-09-16', 9245, 16969, 1608, 30170, '1.0000', '6.6100', '6.6100', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17586, '2021-09-16', 7514, 16970, 1608, NULL, '1.0000', '7.8800', '7.8800', '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 (17587, '2021-09-16', 7640, 16971, 1608, NULL, '1.0000', '5.8900', '5.8900', '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 (17588, '2021-09-16', 8872, 16972, 1608, NULL, '1.0000', '3.0000', '3.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 (17589, '2021-09-16', 9193, 16973, 1608, NULL, '2.0000', '6.7400', '6.7400', '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 (17590, '2021-09-16', 7460, 16974, 1608, NULL, '3.0000', '51.2000', '51.2000', '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 (17591, '2021-09-16', 7547, 16975, 1608, NULL, '4.0000', '0.0000', '0.0000', '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 (17592, '2021-09-16', 7459, 16976, 1608, NULL, '10.0000', '40.3500', '40.3500', '3.5000', '3.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 (17593, '2021-09-16', 8515, 16977, 1608, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (17594, '2021-09-16', 2315, 16978, 1608, NULL, '3.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-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 (17595, '2021-09-16', 7782, 16979, 1608, NULL, '1.0000', '5.0000', '5.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 (17596, '2021-09-16', 9092, 16980, 1608, NULL, '4.0000', '5.2900', '5.2900', '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 (17597, '2021-09-16', 1533, 16981, 1608, 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 (17598, '2021-09-16', 7469, 16982, 1608, NULL, '1.0000', '10.8000', '10.8000', '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 (17599, '2021-09-16', 2635, 16983, 1608, 32793, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17600, '2021-09-16', 7684, 16984, 1608, NULL, '2.0000', '9.0000', '9.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 (17601, '2021-09-16', 9252, 16985, 1608, NULL, '2.0000', '11.8200', '11.8200', '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 (17602, '2021-09-16', 1339, 16986, 1608, 33981, '1.0000', '1.7776', '1.7776', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17603, '2021-09-16', 2297, 16987, 1608, 31019, '1.0000', '7.2000', '7.2000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17604, '2021-09-16', 7509, 16988, 1609, 33740, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17605, '2021-09-16', 8714, 16989, 1609, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17606, '2021-09-16', 7781, 16990, 1609, NULL, '3.0000', '4.2500', '4.2500', '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 (17607, '2021-09-16', 7411, 16991, 1609, NULL, '1.0000', '1.3500', '1.3500', '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 (17608, '2021-09-16', 1904, 16992, 1609, 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 (17609, '2021-09-16', 1532, 16993, 1609, 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 (17610, '2021-09-16', 8608, 16994, 1609, 32131, '1.0000', '5.7400', '5.7400', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17611, '2021-09-16', 7779, 16995, 1609, NULL, '1.0000', '0.6200', '0.6200', '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 (17612, '2021-09-16', 7459, 16996, 1609, NULL, '10.0000', '40.3500', '40.3500', '3.5000', '3.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 (17613, '2021-09-16', 9092, 16997, 1609, NULL, '2.0000', '5.2900', '5.2900', '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 (17614, '2021-09-16', 7702, 16998, 1609, NULL, '1.0000', '0.4600', '0.4600', '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 (17615, '2021-09-16', 7666, 16999, 1609, NULL, '1.0000', '10.0000', '10.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 (17616, '2021-09-16', 7448, 17000, 1609, NULL, '1.0000', '15.8500', '15.8500', '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 (17617, '2021-09-16', 8127, 17001, 1609, NULL, '1.0000', '24.5300', '24.5300', '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 (17618, '2021-09-16', 7728, 17002, 1609, 32806, '1.0000', '3.1200', '3.1200', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17619, '2021-09-16', 7411, 17003, 1609, NULL, '1.0000', '1.3500', '1.3500', '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 (17620, '2021-09-16', 7952, 17004, 1609, NULL, '1.0000', '1.4000', '1.4000', '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 (17621, '2021-09-16', 7394, 17005, 1609, NULL, '3.0000', '12.7400', '12.7400', '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 (17622, '2021-09-16', 8802, 17006, 1609, NULL, '2.0000', '5.0000', '5.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 (17623, '2021-09-16', 8481, 17007, 1609, NULL, '1.0000', '31.0700', '31.0700', '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 (17624, '2021-09-16', 7750, 17008, 1609, 30162, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17625, '2021-09-16', 7496, 17009, 1609, NULL, '1.0000', '0.9600', '0.9600', '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 (17626, '2021-09-16', 9272, 17010, 1609, NULL, '2.0000', '3.1000', '3.1000', '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 (17627, '2021-09-16', 8735, 17011, 1609, NULL, '1.0000', '5.6000', '5.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 (17628, '2021-09-16', 1533, 17012, 1609, 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 (17629, '2021-09-16', 7390, 17013, 1609, 30019, '1.0000', '18.2100', '18.2100', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17630, '2021-09-16', 7852, 17014, 1609, NULL, '1.0000', '6.1100', '6.1100', '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 (17631, '2021-09-16', 8217, 17015, 1609, NULL, '1.0000', '9.7000', '9.7000', '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 (17632, '2021-09-16', 9146, 17016, 1609, NULL, '1.0000', '4.5000', '4.5000', '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 (17633, '2021-09-16', 7743, 17017, 1609, NULL, '1.0000', '7.3900', '7.3900', '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 (17634, '2021-09-16', 7744, 17018, 1609, NULL, '1.0000', '1.9000', '1.9000', '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 (17635, '2021-09-16', 9291, 17019, 1609, NULL, '1.0000', '11.9000', '11.9000', '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 (17636, '2021-09-16', 2315, 17020, 1609, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17637, '2021-09-16', 8596, 17021, 1609, NULL, '1.0000', '17.0000', '17.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 (17638, '2021-09-16', 9160, 17022, 1609, NULL, '1.0000', '15.0000', '15.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 (17639, '2021-09-16', 1307, 17023, 1610, 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 (17640, '2021-09-16', 2277, 17024, 1610, 34152, '3.0000', '1.0449', '1.0449', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17641, '2021-09-16', 2284, 17025, 1610, 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 (17642, '2021-09-16', 2302, 17026, 1610, 24882, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.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 (17643, '2021-09-16', 1501, 17027, 1610, NULL, '1.0000', '2.2111', '2.2111', '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 (17644, '2021-09-16', 1311, 17028, 1610, 22366, '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 (17645, '2021-09-16', 1757, 17029, 1610, 33154, '1.0000', '4.0119', '4.0119', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17646, '2021-09-16', 3018, 17030, 1611, 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 (17647, '2021-09-16', 2003, 17031, 1611, 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 (17648, '2021-09-16', 2315, 17032, 1612, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '278.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17649, '2021-09-16', 1665, 17033, 1612, 33258, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17650, '2021-09-16', 8200, 17034, 1612, NULL, '1.0000', '8.5500', '8.5500', '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 (17651, '2021-09-16', 1602, 17035, 1612, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '33.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17652, '2021-09-16', 1863, 17036, 1612, 33985, '1.0000', '1.1074', '1.1074', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17653, '2021-09-16', 1783, 17037, 1612, 32816, '3.0000', '51.5264', '51.5264', '11.0000', '11.0000', '11.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17654, '2021-09-16', 2363, 17038, 1612, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17655, '2021-09-16', 2327, 17039, 1612, 5084, '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 (17656, '2021-09-16', 2279, 17040, 1612, 33263, '1.0000', '2.7554', '2.7554', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17657, '2021-09-16', 1602, 17041, 1613, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '32.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17658, '2021-09-16', 9318, 17042, 1614, NULL, '1.0000', '9.0000', '9.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 (17659, '2021-09-16', 1875, 17043, 1614, 31726, '7.0000', '74.5688', '74.5688', '3.6000', '3.6000', '13.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17660, '2021-09-16', 9456, 17044, 1615, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17661, '2021-09-16', 9413, 17045, 1616, 34036, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17662, '2021-09-16', 2503, 17046, 1616, 32536, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17663, '2021-09-16', 1912, 17047, 1616, NULL, '5.0000', '0.6591', '0.6591', '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 (17664, '2021-09-16', 9461, 17048, 1616, NULL, '1.0000', '1.6000', '1.6000', '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 (17665, '2021-09-16', 1935, 17049, 1616, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17666, '2021-09-16', 8883, 17050, 1616, NULL, '2.0000', '56.5500', '56.5500', '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 (17667, '2021-09-16', 8883, 17051, 1616, NULL, '2.0000', '56.5500', '56.5500', '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 (17668, '2021-09-16', 2503, 17052, 1616, 32536, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17669, '2021-09-16', 8680, 17053, 1616, NULL, '1.0000', '2.0000', '2.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 (17670, '2021-09-16', 2320, 17054, 1616, 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 (17671, '2021-09-16', 2415, 17055, 1616, 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 (17672, '2021-09-16', 1433, 17056, 1616, 24978, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (17673, '2021-09-16', 1863, 17057, 1616, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17674, '2021-09-16', 2237, 17058, 1616, 34006, '1.0000', '1.5067', '1.5067', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17675, '2021-09-16', 1854, 17059, 1616, 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 (17676, '2021-09-16', 8666, 17060, 1616, NULL, '1.0000', '0.4600', '0.4600', '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 (17677, '2021-09-16', 7782, 17061, 1616, NULL, '1.0000', '5.0000', '5.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 (17678, '2021-09-16', 2662, 17062, 1616, 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 (17679, '2021-09-16', 8666, 17063, 1616, NULL, '1.0000', '0.4600', '0.4600', '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 (17680, '2021-09-16', 2237, 17064, 1616, 34006, '2.0000', '1.5067', '1.5067', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17681, '2021-09-16', 2713, 17065, 1616, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17682, '2021-09-17', 9482, 17066, 1617, 32585, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '143.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17683, '2021-09-17', 9502, 17067, 1617, 34002, '1.0000', '10.0500', '10.0500', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17684, '2021-09-17', 1787, 17068, 1618, 4930, '1.0000', '0.8100', '0.8100', '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 (17685, '2021-09-17', 1796, 17069, 1618, 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 (17686, '2021-09-17', 2078, 17070, 1618, 5603, '1.0000', '3.0000', '3.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 (17687, '2021-09-17', 7329, 17071, 1619, 29980, '1.0000', '19.3000', '19.3000', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17688, '2021-09-17', 9094, 17072, 1619, NULL, '1.0000', '6.0000', '6.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 (17689, '2021-09-17', 7719, 17073, 1619, NULL, '1.0000', '5.5000', '5.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 (17690, '2021-09-17', 2060, 17074, 1619, 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 (17691, '2021-09-17', 1841, 17075, 1619, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '172.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17692, '2021-09-17', 8548, 17076, 1619, NULL, '1.0000', '12.0000', '12.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 (17693, '2021-09-17', 2662, 17077, 1619, 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 (17694, '2021-09-17', 8452, 17078, 1619, NULL, '1.0000', '4.1500', '4.1500', '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 (17695, '2021-09-17', 9272, 17079, 1619, NULL, '1.0000', '3.1000', '3.1000', '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 (17696, '2021-09-17', 7548, 17080, 1619, NULL, '1.0000', '0.3400', '0.3400', '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 (17697, '2021-09-17', 7514, 17081, 1619, NULL, '2.0000', '7.8800', '7.8800', '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 (17698, '2021-09-17', 8166, 17082, 1619, NULL, '2.0000', '4.6000', '4.6000', '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 (17699, '2021-09-17', 8325, 17083, 1619, 34285, '1.0000', '4.6225', '4.6225', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17700, '2021-09-17', 2442, 17084, 1619, 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 (17701, '2021-09-17', 2242, 17085, 1619, 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 (17702, '2021-09-17', 2865, 17086, 1619, 31910, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17703, '2021-09-17', 1520, 17087, 1619, 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 (17704, '2021-09-17', 7491, 17088, 1619, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17705, '2021-09-17', 9409, 17089, 1619, NULL, '1.0000', '11.0000', '11.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 (17706, '2021-09-17', 7411, 17090, 1619, NULL, '1.0000', '1.3500', '1.3500', '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 (17707, '2021-09-17', 9158, 17091, 1619, NULL, '1.0000', '3.7000', '3.7000', '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 (17708, '2021-09-17', 1837, 17092, 1619, NULL, '10.0000', '0.5500', '0.5500', '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 (17709, '2021-09-17', 7994, 17093, 1619, NULL, '1.0000', '47.5800', '47.5800', '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 (17710, '2021-09-17', 9089, 17094, 1619, 32139, '1.0000', '3.8000', '3.8000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17711, '2021-09-17', 8382, 17095, 1619, NULL, '1.0000', '1.5000', '1.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 (17712, '2021-09-17', 8775, 17096, 1619, 32152, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17713, '2021-09-17', 8064, 17097, 1619, 30161, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17714, '2021-09-17', 7672, 17098, 1619, NULL, '1.0000', '1.0200', '1.0200', '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 (17715, '2021-09-17', 2060, 17099, 1619, 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 (17716, '2021-09-17', 1908, 17100, 1619, NULL, '2.0000', '1.7500', '1.7500', '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 (17717, '2021-09-17', 7674, 17101, 1619, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '244.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17718, '2021-09-17', 2060, 17102, 1619, 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 (17719, '2021-09-17', 7354, 17103, 1619, NULL, '2.0000', '18.0000', '18.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 (17720, '2021-09-17', 7641, 17104, 1620, NULL, '1.0000', '1.9000', '1.9000', '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 (17721, '2021-09-17', 1401, 17105, 1620, 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 (17722, '2021-09-17', 7477, 17106, 1620, 33952, '11.0000', '-4.4229', '-4.4229', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17723, '2021-09-17', 8868, 17107, 1620, NULL, '10.0000', '15.5000', '15.5000', '0.6000', '0.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 (17724, '2021-09-17', 9193, 17108, 1620, NULL, '1.0000', '6.7400', '6.7400', '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 (17725, '2021-09-17', 9424, 17109, 1620, NULL, '1.0000', '68.0000', '68.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 (17726, '2021-09-17', 1307, 17110, 1620, 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 (17727, '2021-09-17', 9412, 17111, 1620, NULL, '1.0000', '33.4700', '33.4700', '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 (17728, '2021-09-17', 8767, 17112, 1620, 32146, '1.0000', '6.6900', '6.6900', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17729, '2021-09-17', 7672, 17113, 1620, NULL, '1.0000', '1.0200', '1.0200', '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 (17730, '2021-09-17', 8597, 17114, 1620, NULL, '2.0000', '5.5000', '5.5000', '60.0000', '60.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 (17731, '2021-09-17', 8753, 17115, 1620, NULL, '1.0000', '20.0000', '20.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 (17732, '2021-09-17', 8000, 17116, 1620, NULL, '1.0000', '27.9111', '27.9111', '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 (17733, '2021-09-17', 7514, 17117, 1620, NULL, '1.0000', '7.8800', '7.8800', '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 (17734, '2021-09-17', 7331, 17118, 1620, 29982, '3.0000', '4.0000', '4.0000', '27.0000', '27.0000', '34.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17735, '2021-09-17', 7709, 17119, 1620, NULL, '2.0000', '35.8000', '35.8000', '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 (17736, '2021-09-17', 1510, 17120, 1620, 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 (17737, '2021-09-17', 1904, 17121, 1620, 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 (17738, '2021-09-17', 7334, 17122, 1620, NULL, '2.0000', '8.1600', '8.1600', '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 (17739, '2021-09-17', 2908, 17123, 1621, 24963, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '46.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 (17740, '2021-09-17', 1967, 17124, 1621, 22605, '1.0000', '20.0200', '20.0200', '28.0000', '28.0000', '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 (17741, '2021-09-17', 7477, 17125, 1621, NULL, '2.0000', '0.6000', '0.6000', '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 (17742, '2021-09-17', 7753, 17126, 1621, NULL, '1.0000', '3.1400', '3.1400', '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 (17743, '2021-09-17', 2280, 17127, 1621, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '26.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 (17744, '2021-09-17', 8133, 17128, 1621, 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 (17745, '2021-09-17', 7913, 17129, 1621, NULL, '2.0000', '2.5500', '2.5500', '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 (17746, '2021-09-17', 1863, 17130, 1621, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17747, '2021-09-17', 1935, 17131, 1621, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17748, '2021-09-17', 2545, 17132, 1621, 30684, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17749, '2021-09-17', 1692, 17133, 1621, 34317, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17750, '2021-09-17', 3058, 17134, 1621, 30677, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17751, '2021-09-17', 2309, 17135, 1622, 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 (17752, '2021-09-17', 1863, 17136, 1622, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17753, '2021-09-17', 1757, 17137, 1622, 33154, '1.0000', '4.0119', '4.0119', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17754, '2021-09-17', 2951, 17138, 1622, 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 (17755, '2021-09-17', 2088, 17139, 1622, 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 (17756, '2021-09-17', 7723, 17140, 1622, 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 (17757, '2021-09-17', 8497, 17141, 1622, NULL, '1.0000', '28.0000', '28.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 (17758, '2021-09-17', 1651, 17142, 1622, 29640, '1.0000', '7.6717', '7.6717', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17759, '2021-09-17', 3058, 17143, 1622, 30677, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17760, '2021-09-17', 9174, 17144, 1622, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17761, '2021-09-17', 2225, 17145, 1622, 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 (17762, '2021-09-17', 2015, 17146, 1622, 25162, '1.0000', '5.0000', '5.0000', '8.0000', '8.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 (17763, '2021-09-17', 2430, 17147, 1622, 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 (17764, '2021-09-17', 2169, 17148, 1622, NULL, '2.0000', '1.1300', '1.1300', '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 (17765, '2021-09-17', 2169, 17149, 1623, NULL, '1.0000', '1.1300', '1.1300', '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 (17766, '2021-09-17', 2821, 17150, 1623, 33353, '2.0000', '3.5100', '3.5100', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17767, '2021-09-17', 2511, 17151, 1623, 34318, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17768, '2021-09-17', 2491, 17152, 1623, 19844, '1.0000', '12.2000', '12.2000', '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 (17769, '2021-09-17', 1590, 17153, 1623, 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 (17770, '2021-09-17', 2309, 17154, 1623, 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 (17771, '2021-09-17', 2656, 17155, 1623, 34387, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17772, '2021-09-17', 2991, 17156, 1623, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '92.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 (17773, '2021-09-17', 1311, 17157, 1623, 22366, '2.0000', '0.3700', '0.3700', '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 (17774, '2021-09-17', 2295, 17158, 1624, 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 (17775, '2021-09-17', 7334, 17159, 1624, NULL, '3.0000', '8.1600', '8.1600', '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 (17776, '2021-09-17', 7753, 17160, 1624, NULL, '1.0000', '3.1400', '3.1400', '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 (17777, '2021-09-17', 7715, 17161, 1624, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '34.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17778, '2021-09-17', 8735, 17162, 1624, NULL, '1.0000', '5.6000', '5.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 (17779, '2021-09-17', 8161, 17163, 1624, 31003, '2.0000', '17.5473', '17.5473', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17780, '2021-09-17', 9177, 17164, 1624, NULL, '10.0000', '0.8000', '0.8000', '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 (17781, '2021-09-17', 3001, 17165, 1624, 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 (17782, '2021-09-17', 8825, 17166, 1624, NULL, '2.0000', '7.4000', '7.4000', '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 (17783, '2021-09-17', 7509, 17167, 1624, 33740, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17784, '2021-09-17', 2768, 17168, 1624, 33963, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17785, '2021-09-17', 7507, 17169, 1624, NULL, '3.0000', '6.5000', '6.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 (17786, '2021-09-17', 1837, 17170, 1624, 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 (17787, '2021-09-17', 2315, 17171, 1624, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17788, '2021-09-17', 9177, 17172, 1624, NULL, '2.0000', '0.8000', '0.8000', '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 (17789, '2021-09-17', 9272, 17173, 1624, NULL, '1.0000', '3.1000', '3.1000', '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 (17790, '2021-09-17', 2768, 17174, 1624, 33963, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17791, '2021-09-17', 7411, 17175, 1624, NULL, '3.0000', '1.3500', '1.3500', '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 (17792, '2021-09-17', 8328, 17176, 1624, 33717, '1.0000', '8.0882', '8.0882', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17793, '2021-09-17', 7612, 17177, 1624, NULL, '1.0000', '46.0000', '46.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 (17794, '2021-09-17', 8668, 17178, 1624, NULL, '1.0000', '2.2000', '2.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 (17795, '2021-09-17', 3001, 17179, 1624, 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 (17796, '2021-09-17', 8518, 17180, 1624, NULL, '1.0000', '17.6400', '17.6400', '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 (17797, '2021-09-17', 7345, 17181, 1624, 33747, '1.0000', '38.2000', '38.2000', '62.0000', '62.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17798, '2021-09-17', 8053, 17182, 1624, NULL, '2.0000', '2.9600', '2.9600', '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 (17799, '2021-09-17', 8408, 17183, 1624, NULL, '1.0000', '43.5700', '43.5700', '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 (17800, '2021-09-17', 2656, 17184, 1624, 34289, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17801, '2021-09-17', 7380, 17185, 1624, NULL, '1.0000', '5.6200', '5.6200', '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 (17802, '2021-09-17', 8214, 17186, 1624, NULL, '1.0000', '16.0000', '16.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 (17803, '2021-09-17', 9092, 17187, 1624, NULL, '1.0000', '5.2900', '5.2900', '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 (17804, '2021-09-17', 7363, 17188, 1624, NULL, '1.0000', '26.0000', '26.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 (17805, '2021-09-17', 1947, 17189, 1624, 34278, '1.0000', '-446.4014', '-446.4014', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17806, '2021-09-17', 2104, 17190, 1624, NULL, '1.0000', '0.2000', '0.2000', '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 (17807, '2021-09-17', 7672, 17191, 1624, NULL, '1.0000', '1.0200', '1.0200', '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 (17808, '2021-09-17', 9028, 17192, 1624, NULL, '1.0000', '9.0000', '9.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 (17809, '2021-09-17', 7411, 17193, 1624, NULL, '2.0000', '1.3500', '1.3500', '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 (17810, '2021-09-17', 1819, 17194, 1624, NULL, '1.0000', '5.5000', '5.5000', '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 (17811, '2021-09-17', 8666, 17195, 1624, NULL, '1.0000', '0.4600', '0.4600', '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 (17812, '2021-09-17', 7411, 17196, 1624, NULL, '1.0000', '1.3500', '1.3500', '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 (17813, '2021-09-17', 7852, 17197, 1624, NULL, '1.0000', '6.1100', '6.1100', '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 (17814, '2021-09-17', 2699, 17198, 1624, 34290, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17815, '2021-09-17', 7522, 17199, 1624, NULL, '1.0000', '5.2000', '5.2000', '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 (17816, '2021-09-17', 7531, 17200, 1624, NULL, '2.0000', '16.5000', '16.5000', '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 (17817, '2021-09-17', 8596, 17201, 1624, NULL, '1.0000', '17.0000', '17.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 (17818, '2021-09-17', 7509, 17202, 1624, 33740, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17819, '2021-09-17', 2825, 17203, 1625, NULL, '1.0000', '12.0000', '12.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 (17820, '2021-09-17', 1667, 17204, 1625, 24939, '2.0000', '1404.9249', '1404.9249', '8.5000', '8.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 (17821, '2021-09-17', 9461, 17205, 1625, NULL, '1.0000', '1.6000', '1.6000', '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 (17822, '2021-09-17', 1966, 17206, 1625, 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 (17823, '2021-09-17', 1841, 17207, 1626, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '170.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17824, '2021-09-17', 2768, 17208, 1626, 33963, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17825, '2021-09-17', 2992, 17209, 1626, 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 (17826, '2021-09-17', 7708, 17210, 1626, 33978, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17827, '2021-09-17', 1622, 17211, 1626, NULL, '2.0000', '90.0000', '90.0000', '43.5000', '43.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 (17828, '2021-09-17', 9269, 17212, 1626, 34274, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17829, '2021-09-17', 8925, 17213, 1626, NULL, '1.0000', '2.4000', '2.4000', '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 (17830, '2021-09-17', 8714, 17214, 1626, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17831, '2021-09-17', 8658, 17215, 1626, NULL, '1.0000', '17.1000', '17.1000', '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 (17832, '2021-09-17', 9154, 17216, 1626, 31011, '2.0000', '10.6800', '10.6800', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17833, '2021-09-17', 7722, 17217, 1626, 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 (17834, '2021-09-17', 8312, 17218, 1626, NULL, '1.0000', '10.2000', '10.2000', '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 (17835, '2021-09-17', 7824, 17219, 1626, NULL, '1.0000', '8.0000', '8.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 (17836, '2021-09-17', 8136, 17220, 1626, NULL, '1.0000', '29.3500', '29.3500', '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 (17837, '2021-09-17', 7385, 17221, 1626, NULL, '2.0000', '22306.6568', '22306.6568', '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 (17838, '2021-09-17', 1904, 17222, 1626, 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 (17839, '2021-09-17', 8539, 17223, 1626, 31000, '4.0000', '4.4300', '4.4300', '0.8000', '0.8000', '61.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17840, '2021-09-17', 8595, 17224, 1626, NULL, '1.0000', '4.2100', '4.2100', '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 (17841, '2021-09-17', 7675, 17225, 1627, NULL, '1.0000', '11.4300', '11.4300', '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 (17842, '2021-09-17', 7708, 17226, 1627, 33978, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17843, '2021-09-17', 8008, 17227, 1627, NULL, '10.0000', '5.8000', '5.8000', '10.0000', '10.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 (17844, '2021-09-17', 9092, 17228, 1627, NULL, '1.0000', '5.2900', '5.2900', '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 (17845, '2021-09-17', 7759, 17229, 1627, NULL, '1.0000', '19.5000', '19.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 (17846, '2021-09-17', 7848, 17230, 1627, NULL, '1.0000', '1.3500', '1.3500', '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 (17847, '2021-09-17', 7411, 17231, 1627, NULL, '1.0000', '1.3500', '1.3500', '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 (17848, '2021-09-17', 7780, 17232, 1627, NULL, '1.0000', '2.6000', '2.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 (17849, '2021-09-17', 7782, 17233, 1627, NULL, '3.0000', '5.0000', '5.0000', '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 (17850, '2021-09-17', 9019, 17234, 1627, NULL, '1.0000', '6.0000', '6.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 (17851, '2021-09-17', 8666, 17235, 1627, NULL, '1.0000', '0.4600', '0.4600', '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 (17852, '2021-09-17', 2994, 17236, 1628, 31961, '1.0000', '18.9320', '18.9320', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17853, '2021-09-17', 8677, 17237, 1628, NULL, '2.0000', '7.8000', '7.8000', '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 (17854, '2021-09-17', 7744, 17238, 1628, NULL, '1.0000', '1.9000', '1.9000', '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 (17855, '2021-09-17', 1339, 17239, 1628, 32530, '3.0000', '0.3390', '0.3390', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17856, '2021-09-17', 9482, 17240, 1628, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '130.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17857, '2021-09-17', 1881, 17241, 1629, NULL, '1.0000', '105.0000', '105.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17858, '2021-09-17', 9523, 17242, 1630, 34543, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17859, '2021-09-18', 2511, 17243, 1631, 33225, '1.0000', '8.6591', '8.6591', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17860, '2021-09-18', 1586, 17244, 1631, 31702, '1.0000', '49.0100', '49.0100', '65.0000', '65.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17861, '2021-09-18', 9413, 17245, 1631, 29805, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17862, '2021-09-18', 2095, 17246, 1631, 6007, '1.0000', '1.5000', '1.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 (17863, '2021-09-18', 1529, 17247, 1631, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.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 (17864, '2021-09-18', 2967, 17248, 1631, 21798, '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 (17865, '2021-09-18', 2259, 17249, 1631, 33011, '1.0000', '19.5883', '19.5883', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17866, '2021-09-18', 3074, 17250, 1631, 27317, '2.0000', '2.0000', '2.0000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17867, '2021-09-18', 2010, 17251, 1631, 27316, '1.0000', '1.2933', '1.2933', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17868, '2021-09-18', 1665, 17252, 1631, 34438, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17869, '2021-09-18', 8767, 17253, 1631, NULL, '1.0000', '6.6900', '6.6900', '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 (17870, '2021-09-18', 1783, 17254, 1631, 32816, '3.0000', '51.5264', '51.5264', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17871, '2021-09-18', 7671, 17255, 1631, NULL, '2.0000', '15.5000', '15.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 (17872, '2021-09-18', 2142, 17256, 1631, NULL, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17873, '2021-09-18', 2169, 17257, 1631, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17874, '2021-09-18', 1651, 17258, 1631, 32829, '1.0000', '7.4814', '7.4814', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17875, '2021-09-18', 1432, 17259, 1631, 33040, '1.0000', '9.2619', '9.2619', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17876, '2021-09-18', 1812, 17260, 1631, 33219, '3.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17877, '2021-09-18', 1717, 17261, 1631, 6812, '1.0000', '90.0000', '90.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 (17878, '2021-09-18', 2242, 17262, 1631, 33027, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17879, '2021-09-18', 2256, 17263, 1632, NULL, '1.0000', '12.7400', '12.7400', '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 (17880, '2021-09-18', 7496, 17264, 1632, NULL, '1.0000', '0.9600', '0.9600', '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 (17881, '2021-09-18', 1425, 17265, 1632, 31689, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17882, '2021-09-18', 1863, 17266, 1632, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17883, '2021-09-18', 2108, 17267, 1632, 6020, '1.0000', '4.7500', '4.7500', '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 (17884, '2021-09-18', 1947, 17268, 1632, 34429, '1.0000', '3.5161', '3.5161', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17885, '2021-09-18', 2379, 17269, 1632, 4385, '1.0000', '1.5900', '1.5900', '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 (17886, '2021-09-18', 2259, 17270, 1632, 33011, '1.0000', '19.5883', '19.5883', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17887, '2021-09-18', 1573, 17271, 1632, 32826, '1.0000', '17.4802', '17.4802', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17888, '2021-09-18', 2543, 17272, 1632, 9539, '1.0000', '2.0000', '2.0000', '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 (17889, '2021-09-18', 2821, 17273, 1632, 33026, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17890, '2021-09-18', 2315, 17274, 1632, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '276.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17891, '2021-09-18', 2167, 17275, 1632, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17892, '2021-09-18', 1504, 17276, 1632, 34414, '10.0000', '0.8984', '0.8984', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17893, '2021-09-18', 1476, 17277, 1632, NULL, '1.0000', '90.0000', '90.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 (17894, '2021-09-18', 2294, 17278, 1632, 31969, '3.0000', '2.2931', '2.2931', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17895, '2021-09-18', 1864, 17279, 1632, 34466, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17896, '2021-09-18', 1430, 17280, 1632, 16276, '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 (17897, '2021-09-18', 1806, 17281, 1632, 12248, '2.0000', '77.6260', '77.6260', '39.5000', '39.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 (17898, '2021-09-18', 2405, 17282, 1632, 32038, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '48.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17899, '2021-09-18', 1602, 17283, 1632, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '31.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17900, '2021-09-18', 2669, 17284, 1632, 34423, '1.0000', '49.7345', '49.7345', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17901, '2021-09-18', 7459, 17285, 1632, 31998, '4.0000', '2.3500', '2.3500', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17902, '2021-09-18', 1863, 17286, 1632, 34411, '2.0000', '0.9660', '0.9660', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17903, '2021-09-18', 2406, 17287, 1632, 4809, '1.0000', '20.7000', '20.7000', '27.5000', '27.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 (17904, '2021-09-18', 2280, 17288, 1632, 21586, '1.0000', '1.9000', '1.9000', '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 (17905, '2021-09-18', 1715, 17289, 1632, 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 (17906, '2021-09-18', 2352, 17290, 1632, 17460, '1.0000', '20.0000', '20.0000', '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 (17907, '2021-09-18', 2695, 17291, 1632, 12681, '1.0000', '2.0000', '2.0000', '2.7000', '2.7000', '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 (17908, '2021-09-18', 8666, 17292, 1632, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17909, '2021-09-18', 2259, 17293, 1632, 33011, '1.0000', '19.5883', '19.5883', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17910, '2021-09-18', 8773, 17294, 1632, 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 (17911, '2021-09-18', 1910, 17295, 1633, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (17912, '2021-09-18', 2315, 17296, 1633, 24937, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (17913, '2021-09-18', 2309, 17297, 1633, 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 (17914, '2021-09-18', 8677, 17298, 1633, NULL, '2.0000', '7.8000', '7.8000', '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 (17915, '2021-09-18', 1502, 17299, 1633, 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 (17916, '2021-09-18', 7321, 17300, 1633, NULL, '1.0000', '7.9500', '7.9500', '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 (17917, '2021-09-18', 1342, 17301, 1633, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17918, '2021-09-18', 2284, 17302, 1633, 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 (17919, '2021-09-18', 7933, 17303, 1633, NULL, '1.0000', '5.5000', '5.5000', '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 (17920, '2021-09-18', 2169, 17304, 1633, NULL, '1.0000', '1.1300', '1.1300', '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 (17921, '2021-09-18', 2255, 17305, 1633, NULL, '1.0000', '17.4900', '17.4900', '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 (17922, '2021-09-18', 1855, 17306, 1633, 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 (17923, '2021-09-18', 2221, 17307, 1633, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '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 (17924, '2021-09-18', 1867, 17308, 1633, 34624, '1.0000', '5.8781', '5.8781', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17925, '2021-09-18', 1785, 17309, 1633, 19329, '1.0000', '14.2875', '14.2875', '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 (17926, '2021-09-18', 1831, 17310, 1633, 34032, '1.0000', '28.8300', '28.8300', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17927, '2021-09-18', 2089, 17311, 1633, 33371, '1.0000', '6.7300', '6.7300', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17928, '2021-09-18', 1651, 17312, 1633, 29640, '1.0000', '7.6717', '7.6717', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17929, '2021-09-18', 1863, 17313, 1633, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17930, '2021-09-18', 1651, 17314, 1633, 29640, '1.0000', '7.6717', '7.6717', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17931, '2021-09-18', 2068, 17315, 1633, 34568, '1.0000', '13.2503', '13.2503', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17932, '2021-09-18', 9482, 17316, 1633, 32547, '15.0000', '0.5000', '0.5000', '1.0000', '1.0000', '115.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17933, '2021-09-18', 1330, 17317, 1633, 19334, '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 (17934, '2021-09-18', 1665, 17318, 1633, 33349, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17935, '2021-09-18', 1863, 17319, 1633, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17936, '2021-09-18', 2400, 17320, 1634, 33161, '1.0000', '12.8333', '12.8333', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17937, '2021-09-18', 1874, 17321, 1634, 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 (17938, '2021-09-18', 7756, 17322, 1635, NULL, '1.0000', '21.7700', '21.7700', '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 (17939, '2021-09-18', 7564, 17323, 1635, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17940, '2021-09-18', 7753, 17324, 1635, NULL, '1.0000', '3.1400', '3.1400', '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 (17941, '2021-09-18', 7519, 17325, 1635, NULL, '1.0000', '0.8800', '0.8800', '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 (17942, '2021-09-18', 8308, 17326, 1635, NULL, '1.0000', '11.0000', '11.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 (17943, '2021-09-18', 9407, 17327, 1635, 30926, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17944, '2021-09-18', 2102, 17328, 1635, 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 (17945, '2021-09-18', 7781, 17329, 1635, NULL, '3.0000', '4.2500', '4.2500', '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 (17946, '2021-09-18', 9177, 17330, 1635, NULL, '1.0000', '0.8000', '0.8000', '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 (17947, '2021-09-18', 7866, 17331, 1635, 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 (17948, '2021-09-18', 7708, 17332, 1635, 34536, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17949, '2021-09-18', 7819, 17333, 1635, NULL, '1.0000', '9.5000', '9.5000', '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 (17950, '2021-09-18', 7514, 17334, 1635, NULL, '1.0000', '7.8800', '7.8800', '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 (17951, '2021-09-18', 8166, 17335, 1635, NULL, '1.0000', '4.6000', '4.6000', '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 (17952, '2021-09-18', 2104, 17336, 1635, NULL, '4.0000', '0.2000', '0.2000', '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 (17953, '2021-09-18', 7530, 17337, 1635, NULL, '1.0000', '5.7200', '5.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 (17954, '2021-09-18', 8172, 17338, 1635, NULL, '2.0000', '40.7000', '40.7000', '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 (17955, '2021-09-18', 7357, 17339, 1635, 31030, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17956, '2021-09-18', 9089, 17340, 1635, 32139, '1.0000', '3.8000', '3.8000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17957, '2021-09-18', 7641, 17341, 1635, NULL, '1.0000', '1.9000', '1.9000', '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 (17958, '2021-09-18', 7675, 17342, 1635, NULL, '1.0000', '11.4300', '11.4300', '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 (17959, '2021-09-18', 7412, 17343, 1635, 30160, '2.0000', '1.5200', '1.5200', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17960, '2021-09-18', 7522, 17344, 1635, NULL, '1.0000', '5.2000', '5.2000', '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 (17961, '2021-09-18', 8596, 17345, 1635, NULL, '1.0000', '17.0000', '17.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 (17962, '2021-09-18', 7710, 17346, 1635, NULL, '1.0000', '26.0000', '26.0000', '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 (17963, '2021-09-18', 7906, 17347, 1635, 33752, '1.0000', '7.8800', '7.8800', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17964, '2021-09-18', 8097, 17348, 1636, NULL, '5.0000', '7.6800', '7.6800', '4.5000', '4.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 (17965, '2021-09-18', 1837, 17349, 1636, 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 (17966, '2021-09-18', 7527, 17350, 1636, 31031, '2.0000', '0.8900', '0.8900', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17967, '2021-09-18', 7412, 17351, 1636, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17968, '2021-09-18', 8512, 17352, 1636, NULL, '4.0000', '4.0000', '4.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 (17969, '2021-09-18', 8746, 17353, 1636, 32134, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17970, '2021-09-18', 8632, 17354, 1636, 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 (17971, '2021-09-18', 2104, 17355, 1636, NULL, '2.0000', '0.2000', '0.2000', '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 (17972, '2021-09-18', 7749, 17356, 1636, NULL, '1.0000', '3.0000', '3.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 (17973, '2021-09-18', 1339, 17357, 1636, 34539, '1.0000', '2.1251', '2.1251', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17974, '2021-09-18', 1533, 17358, 1636, 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 (17975, '2021-09-18', 9269, 17359, 1636, 34548, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17976, '2021-09-18', 8039, 17360, 1636, NULL, '1.0000', '34.6600', '34.6600', '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 (17977, '2021-09-18', 8275, 17361, 1636, 30215, '1.0000', '29.8500', '29.8500', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17978, '2021-09-18', 8596, 17362, 1636, NULL, '1.0000', '17.0000', '17.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 (17979, '2021-09-18', 7641, 17363, 1636, NULL, '1.0000', '1.9000', '1.9000', '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 (17980, '2021-09-18', 7711, 17364, 1636, NULL, '1.0000', '0.3900', '0.3900', '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 (17981, '2021-09-18', 2315, 17365, 1636, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17982, '2021-09-18', 2895, 17366, 1636, NULL, '1.0000', '11.6000', '11.6000', '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 (17983, '2021-09-18', 2315, 17367, 1636, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17984, '2021-09-18', 7780, 17368, 1636, NULL, '1.0000', '2.6000', '2.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 (17985, '2021-09-18', 2315, 17369, 1636, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17986, '2021-09-18', 7799, 17370, 1636, NULL, '1.0000', '2.0000', '2.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 (17987, '2021-09-18', 8512, 17371, 1636, NULL, '2.0000', '4.0000', '4.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 (17988, '2021-09-18', 8608, 17372, 1636, 32131, '1.0000', '5.7400', '5.7400', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17989, '2021-09-18', 7641, 17373, 1637, NULL, '1.0000', '1.9000', '1.9000', '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 (17990, '2021-09-18', 7790, 17374, 1637, NULL, '4.0000', '17.0000', '17.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 (17991, '2021-09-18', 8359, 17375, 1637, NULL, '1.0000', '16.7750', '16.7750', '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 (17992, '2021-09-18', 2543, 17376, 1638, 9539, '1.0000', '2.0000', '2.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 (17993, '2021-09-18', 2948, 17377, 1638, NULL, '2.0000', '0.9000', '0.9000', '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 (17994, '2021-09-18', 7554, 17378, 1638, NULL, '10.0000', '16.0000', '16.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 (17995, '2021-09-18', 2060, 17379, 1638, 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 (17996, '2021-09-18', 1912, 17380, 1638, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (17997, '2021-09-18', 1580, 17381, 1638, 9446, '3.0000', '0.9900', '0.9900', '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 (17998, '2021-09-18', 2339, 17382, 1638, 3892, '1.0000', '7.2300', '7.2300', '9.5000', '9.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 (17999, '2021-09-18', 2414, 17383, 1638, 4826, '2.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 (18000, '2021-09-18', 2060, 17384, 1638, 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 (18001, '2021-09-18', 9311, 17385, 1638, 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 (18002, '2021-09-18', 2856, 17386, 1638, 17778, '1.0000', '26.0000', '26.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 (18003, '2021-09-18', 2857, 17387, 1638, NULL, '1.0000', '17.0000', '17.0000', '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 (18004, '2021-09-18', 2481, 17388, 1638, 5193, '1.0000', '3.5000', '3.5000', '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 (18005, '2021-09-18', 2482, 17389, 1638, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.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 (18006, '2021-09-18', 2478, 17390, 1638, 5191, '1.0000', '3.0000', '3.0000', '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 (18007, '2021-09-18', 2486, 17391, 1638, 21821, '1.0000', '4.0000', '4.0000', '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 (18008, '2021-09-18', 2212, 17392, 1638, 8167, '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 (18009, '2021-09-18', 1840, 17393, 1638, 4973, '6.0000', '0.2400', '0.2400', '0.3000', '0.3000', '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 (18010, '2021-09-18', 1841, 17394, 1638, 24123, '6.0000', '0.3700', '0.3700', '0.5000', '0.5000', '15.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 (18011, '2021-09-18', 2289, 17395, 1638, 22482, '3.0000', '0.2300', '0.2300', '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 (18012, '2021-09-18', 1528, 17396, 1638, 23618, '6.0000', '79.3921', '79.3921', '6.0000', '6.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 (18013, '2021-09-18', 1637, 17397, 1638, 33223, '2.0000', '40.7473', '40.7473', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18014, '2021-09-18', 2285, 17398, 1638, 32021, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18015, '2021-09-18', 8208, 17399, 1638, NULL, '4.0000', '33.0000', '33.0000', '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 (18016, '2021-09-18', 9483, 17400, 1638, 32586, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18017, '2021-09-18', 9484, 17401, 1638, 32587, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18018, '2021-09-18', 9485, 17402, 1638, 32588, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18019, '2021-09-18', 1692, 17403, 1639, 34592, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18020, '2021-09-18', 1644, 17404, 1639, 29636, '1.0000', '33.8900', '33.8900', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18021, '2021-09-18', 2994, 17405, 1639, 31961, '1.0000', '18.9320', '18.9320', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18022, '2021-09-18', 2699, 17406, 1639, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18023, '2021-09-18', 7913, 17407, 1639, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (18024, '2021-09-18', 2109, 17408, 1639, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '31.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 (18025, '2021-09-18', 2169, 17409, 1639, NULL, '1.0000', '1.1300', '1.1300', '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 (18026, '2021-09-18', 7558, 17410, 1639, NULL, '10.0000', '33.0200', '33.0200', '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 (18027, '2021-09-18', 2384, 17411, 1639, 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 (18028, '2021-09-18', 7714, 17412, 1639, NULL, '2.0000', '5.0000', '5.0000', '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 (18029, '2021-09-18', 9337, 17413, 1639, NULL, '1.0000', '5.7200', '5.7200', '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 (18030, '2021-09-18', 2285, 17414, 1639, 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 (18031, '2021-09-18', 1423, 17415, 1639, 19835, '1.0000', '30.0000', '30.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 (18032, '2021-09-18', 2254, 17416, 1639, 34620, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18033, '2021-09-18', 7743, 17417, 1639, NULL, '1.0000', '7.3900', '7.3900', '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 (18034, '2021-09-18', 1912, 17418, 1639, NULL, '2.0000', '0.6591', '0.6591', '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 (18035, '2021-09-18', 2331, 17419, 1639, 34567, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18036, '2021-09-18', 2951, 17420, 1639, 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 (18037, '2021-09-18', 1912, 17421, 1639, NULL, '1.0000', '0.6591', '0.6591', '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 (18038, '2021-09-18', 8622, 17422, 1639, 34023, '1.0000', '4.7860', '4.7860', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18039, '2021-09-18', 1675, 17423, 1639, 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 (18040, '2021-09-18', 2105, 17424, 1639, 34630, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18041, '2021-09-18', 1674, 17425, 1639, 34628, '1.0000', '3.2473', '3.2473', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18042, '2021-09-18', 2169, 17426, 1639, NULL, '3.0000', '1.1300', '1.1300', '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 (18043, '2021-09-18', 7564, 17427, 1639, NULL, '1.0000', '0.6400', '0.6400', '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 (18044, '2021-09-18', 2974, 17428, 1639, 23155, '1.0000', '5.0000', '5.0000', '8.0000', '8.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 (18045, '2021-09-18', 1598, 17429, 1639, 33145, '1.0000', '3.1820', '3.1820', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18046, '2021-09-18', 2772, 17430, 1639, 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 (18047, '2021-09-18', 2726, 17431, 1639, 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 (18048, '2021-09-18', 7741, 17432, 1639, NULL, '1.0000', '1.2000', '1.2000', '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 (18049, '2021-09-18', 7558, 17433, 1640, NULL, '14.0000', '1.9700', '1.9700', '3.0000', '3.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 (18050, '2021-09-18', 2808, 17434, 1640, 16895, '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 (18051, '2021-09-18', 1888, 17435, 1640, NULL, '1.0000', '-42.1250', '-42.1250', '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 (18052, '2021-09-18', 2264, 17436, 1640, 22640, '1.0000', '14.0000', '14.0000', '18.5000', '18.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 (18053, '2021-09-18', 1667, 17437, 1640, 34668, '1.0000', '70.3399', '70.3399', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18054, '2021-09-18', 1935, 17438, 1640, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18055, '2021-09-18', 9089, 17439, 1640, NULL, '1.0000', '3.8000', '3.8000', '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 (18056, '2021-09-18', 2712, 17440, 1640, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18057, '2021-09-18', 1533, 17441, 1640, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18058, '2021-09-18', 1846, 17442, 1640, 31709, '1.0000', '31.0430', '31.0430', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18059, '2021-09-18', 1425, 17443, 1640, 31689, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18060, '2021-09-18', 1602, 17444, 1640, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '30.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18061, '2021-09-18', 1790, 17445, 1640, NULL, '1.0000', '90.0000', '90.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 (18062, '2021-09-18', 8539, 17446, 1640, NULL, '1.0000', '0.5200', '0.5200', '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 (18063, '2021-09-18', 2169, 17447, 1640, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18064, '2021-09-18', 1863, 17448, 1640, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18065, '2021-09-18', 1651, 17449, 1640, 32829, '2.0000', '7.4814', '7.4814', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18066, '2021-09-18', 7444, 17450, 1640, 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 (18067, '2021-09-18', 9214, 17451, 1640, NULL, '1.0000', '9.6000', '9.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 (18068, '2021-09-18', 2487, 17452, 1640, 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 (18069, '2021-09-18', 2476, 17453, 1640, 5189, '1.0000', '10.0000', '10.0000', '12.0000', '12.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 (18070, '2021-09-18', 1523, 17454, 1640, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '24.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 (18071, '2021-09-18', 1651, 17455, 1640, 32829, '1.0000', '7.4814', '7.4814', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18072, '2021-09-18', 1342, 17456, 1640, 25038, '1.0000', '29.5000', '29.5000', '7.5000', '7.5000', '6.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 (18073, '2021-09-18', 1864, 17457, 1640, 34695, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18074, '2021-09-18', 2395, 17458, 1640, 10236, '2.0000', '27.0000', '27.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 (18075, '2021-09-18', 1806, 17459, 1640, 12248, '2.0000', '77.6260', '77.6260', '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 (18076, '2021-09-18', 2732, 17460, 1640, 33214, '1.0000', '26.3888', '26.3888', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18077, '2021-09-18', 1968, 17461, 1640, 1521, '1.0000', '55.1600', '55.1600', '73.0000', '73.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18078, '2021-09-18', 2135, 17462, 1640, 16894, '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 (18079, '2021-09-18', 2315, 17463, 1640, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '274.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18080, '2021-09-18', 1783, 17464, 1640, 32816, '3.0000', '51.5264', '51.5264', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18081, '2021-09-18', 2327, 17465, 1640, 5084, '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 (18082, '2021-09-18', 2327, 17465, 1640, 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 (18083, '2021-09-18', 1574, 17466, 1640, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (18084, '2021-09-18', 2944, 17467, 1640, 22631, '1.0000', '51.9700', '51.9700', '69.0000', '69.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 (18085, '2021-09-18', 1846, 17468, 1640, 31709, '1.0000', '31.0430', '31.0430', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18086, '2021-09-18', 2712, 17469, 1640, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18087, '2021-09-18', 8046, 17470, 1640, NULL, '10.0000', '39.0000', '39.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 (18088, '2021-09-18', 8340, 17471, 1641, NULL, '2.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18089, '2021-09-18', 7339, 17472, 1641, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (18090, '2021-09-18', 7854, 17473, 1641, NULL, '1.0000', '28.5800', '28.5800', '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 (18091, '2021-09-18', 9329, 17474, 1641, 30177, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18092, '2021-09-18', 1743, 17475, 1641, NULL, '1.0000', '3.9800', '3.9800', '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 (18093, '2021-09-18', 7641, 17476, 1641, NULL, '1.0000', '1.9000', '1.9000', '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 (18094, '2021-09-18', 8594, 17477, 1641, 32809, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18095, '2021-09-18', 7703, 17478, 1641, NULL, '2.0000', '22.9900', '22.9900', '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 (18096, '2021-09-18', 7674, 17479, 1641, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '243.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18097, '2021-09-18', 7509, 17480, 1641, 33740, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18098, '2021-09-18', 9496, 17481, 1641, 33078, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18099, '2021-09-18', 7638, 17482, 1641, 34513, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18100, '2021-09-18', 1965, 17483, 1641, NULL, '1.0000', '17.2400', '17.2400', '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 (18101, '2021-09-18', 9400, 17484, 1641, NULL, '1.0000', '0.5000', '0.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 (18102, '2021-09-18', 7411, 17485, 1641, NULL, '1.0000', '1.3500', '1.3500', '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 (18103, '2021-09-18', 7317, 17486, 1641, NULL, '1.0000', '19.5500', '19.5500', '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 (18104, '2021-09-18', 7671, 17487, 1641, NULL, '2.0000', '15.5000', '15.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 (18105, '2021-09-18', 8518, 17488, 1641, NULL, '2.0000', '17.6400', '17.6400', '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 (18106, '2021-09-18', 8596, 17489, 1641, NULL, '1.0000', '17.0000', '17.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 (18107, '2021-09-18', 8699, 17490, 1641, NULL, '1.0000', '6.3800', '6.3800', '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 (18108, '2021-09-18', 1498, 17491, 1641, 33520, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '50.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18109, '2021-09-18', 2060, 17492, 1641, 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 (18110, '2021-09-18', 7671, 17493, 1641, NULL, '2.0000', '15.5000', '15.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 (18111, '2021-09-18', 7622, 17494, 1641, NULL, '3.0000', '17.8100', '17.8100', '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 (18112, '2021-09-18', 7558, 17495, 1641, NULL, '5.0000', '1.9700', '1.9700', '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 (18113, '2021-09-18', 8097, 17496, 1641, NULL, '4.0000', '7.6800', '7.6800', '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 (18114, '2021-09-18', 8195, 17497, 1641, NULL, '1.0000', '62.2000', '62.2000', '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 (18115, '2021-09-18', 7898, 17498, 1641, NULL, '1.0000', '2.2000', '2.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 (18116, '2021-09-18', 7527, 17499, 1641, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18117, '2021-09-18', 9453, 17500, 1641, 31013, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18118, '2021-09-18', 2069, 17501, 1641, NULL, '3.0000', '2.0400', '2.0400', '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 (18119, '2021-09-18', 2726, 17502, 1641, 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 (18120, '2021-09-18', 1810, 17503, 1641, 34531, '1.0000', '7.7967', '7.7967', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18121, '2021-09-18', 1340, 17504, 1641, 34540, '1.0000', '2.7422', '2.7422', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18122, '2021-09-18', 7666, 17505, 1641, NULL, '1.0000', '10.0000', '10.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 (18123, '2021-09-18', 1339, 17506, 1641, 34539, '1.0000', '2.1251', '2.1251', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18124, '2021-09-18', 8085, 17507, 1641, NULL, '3.0000', '14.0000', '14.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 (18125, '2021-09-18', 8640, 17508, 1641, NULL, '2.0000', '35.5000', '35.5000', '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 (18126, '2021-09-18', 9300, 17509, 1641, NULL, '1.0000', '12.0000', '12.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 (18127, '2021-09-18', 7824, 17510, 1641, NULL, '1.0000', '8.0000', '8.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 (18128, '2021-09-18', 7825, 17511, 1641, NULL, '1.0000', '6.5000', '6.5000', '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 (18129, '2021-09-18', 7827, 17512, 1641, NULL, '1.0000', '9.5000', '9.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 (18130, '2021-09-18', 7834, 17513, 1641, NULL, '1.0000', '21.0000', '21.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 (18131, '2021-09-18', 2699, 17514, 1641, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18132, '2021-09-18', 1693, 17515, 1641, NULL, '1.0000', '7.8600', '7.8600', '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 (18133, '2021-09-18', 7411, 17516, 1641, NULL, '1.0000', '1.3500', '1.3500', '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 (18134, '2021-09-18', 7354, 17517, 1641, NULL, '1.0000', '18.0000', '18.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 (18135, '2021-09-18', 7608, 17518, 1641, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18136, '2021-09-18', 7509, 17519, 1641, 33740, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18137, '2021-09-18', 7912, 17520, 1641, 34501, '1.0000', '8.0361', '8.0361', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18138, '2021-09-18', 9150, 17521, 1641, NULL, '1.0000', '12.6512', '12.6512', '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 (18139, '2021-09-18', 7524, 17522, 1641, NULL, '1.0000', '11.9500', '11.9500', '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 (18140, '2021-09-18', 8566, 17523, 1641, NULL, '1.0000', '2.5000', '2.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 (18141, '2021-09-18', 7763, 17524, 1641, 30203, '1.0000', '1.1300', '1.1300', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18142, '2021-09-18', 7394, 17525, 1641, NULL, '1.0000', '12.7400', '12.7400', '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 (18143, '2021-09-18', 7666, 17526, 1641, NULL, '1.0000', '10.0000', '10.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 (18144, '2021-09-18', 7514, 17527, 1641, NULL, '1.0000', '7.8800', '7.8800', '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 (18145, '2021-09-18', 7803, 17528, 1641, NULL, '1.0000', '1.8200', '1.8200', '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 (18146, '2021-09-18', 7411, 17529, 1641, NULL, '1.0000', '1.3500', '1.3500', '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 (18147, '2021-09-18', 7411, 17530, 1641, NULL, '2.0000', '1.3500', '1.3500', '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 (18148, '2021-09-18', 8668, 17531, 1641, NULL, '1.0000', '2.2000', '2.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 (18149, '2021-09-18', 1498, 17532, 1642, 19871, '4.0000', '0.3300', '0.3300', '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 (18150, '2021-09-18', 2315, 17533, 1642, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (18151, '2021-09-18', 2656, 17534, 1642, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18152, '2021-09-18', 8743, 17535, 1642, NULL, '2.0000', '8.5000', '8.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 (18153, '2021-09-18', 3067, 17536, 1642, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '36.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 (18154, '2021-09-18', 2345, 17537, 1642, 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 (18155, '2021-09-18', 7713, 17538, 1642, NULL, '10.0000', '4.4000', '4.4000', '0.6000', '0.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 (18156, '2021-09-18', 2908, 17539, 1642, 24963, '8.0000', '0.2700', '0.2700', '0.5000', '0.5000', '38.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 (18157, '2021-09-18', 1328, 17540, 1642, 32533, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18158, '2021-09-18', 2962, 17541, 1642, 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 (18159, '2021-09-18', 1532, 17542, 1642, 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 (18160, '2021-09-18', 8677, 17543, 1642, NULL, '1.0000', '7.8000', '7.8000', '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 (18161, '2021-09-18', 1590, 17544, 1642, 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 (18162, '2021-09-18', 2169, 17545, 1642, NULL, '1.0000', '1.1300', '1.1300', '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 (18163, '2021-09-18', 2327, 17546, 1642, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '15.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 (18164, '2021-09-18', 7709, 17547, 1643, NULL, '1.0000', '35.8000', '35.8000', '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 (18165, '2021-09-18', 8756, 17548, 1643, 32807, '2.0000', '5.9323', '5.9323', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18166, '2021-09-18', 7672, 17549, 1643, NULL, '1.0000', '1.0200', '1.0200', '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 (18167, '2021-09-18', 9193, 17550, 1643, NULL, '2.0000', '6.7400', '6.7400', '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 (18168, '2021-09-18', 1965, 17551, 1643, NULL, '1.0000', '17.2400', '17.2400', '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 (18169, '2021-09-18', 7783, 17552, 1643, NULL, '4.0000', '3.6500', '3.6500', '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 (18170, '2021-09-18', 7743, 17553, 1643, NULL, '2.0000', '7.3900', '7.3900', '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 (18171, '2021-09-18', 8200, 17554, 1643, NULL, '1.0000', '8.5500', '8.5500', '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 (18172, '2021-09-18', 1670, 17555, 1643, 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 (18173, '2021-09-18', 7612, 17556, 1643, NULL, '1.0000', '46.0000', '46.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 (18174, '2021-09-18', 9193, 17557, 1643, NULL, '1.0000', '6.7400', '6.7400', '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 (18175, '2021-09-18', 2242, 17558, 1643, 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 (18176, '2021-09-18', 7507, 17559, 1643, NULL, '2.0000', '6.5000', '6.5000', '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 (18177, '2021-09-18', 7872, 17560, 1643, 31012, '2.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18178, '2021-09-18', 7412, 17561, 1643, 30160, '2.0000', '1.5200', '1.5200', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18179, '2021-09-18', 7728, 17562, 1643, 32806, '1.0000', '3.1200', '3.1200', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18180, '2021-09-18', 7786, 17563, 1643, NULL, '1.0000', '22.0000', '22.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 (18181, '2021-09-18', 7671, 17564, 1643, NULL, '1.0000', '15.5000', '15.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 (18182, '2021-09-18', 8153, 17565, 1644, NULL, '4.0000', '0.3200', '0.3200', '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 (18183, '2021-09-18', 8200, 17566, 1644, NULL, '1.0000', '8.5500', '8.5500', '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 (18184, '2021-09-18', 2315, 17567, 1645, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '272.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18185, '2021-09-18', 1699, 17568, 1645, NULL, '1.0000', '3.2000', '3.2000', '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 (18186, '2021-09-18', 9469, 17569, 1645, NULL, '1.0000', '2.3000', '2.3000', '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 (18187, '2021-09-18', 1651, 17570, 1645, 32829, '1.0000', '7.4814', '7.4814', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18188, '2021-09-18', 7741, 17571, 1645, NULL, '1.0000', '1.2000', '1.2000', '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 (18189, '2021-09-18', 2098, 17572, 1645, 6010, '1.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 (18190, '2021-09-18', 2712, 17573, 1645, 32596, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '56.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18191, '2021-09-18', 8594, 17574, 1645, 32594, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18192, '2021-09-18', 2381, 17575, 1645, 24263, '1.0000', '5.0448', '5.0448', '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 (18193, '2021-09-18', 2169, 17576, 1645, 33220, '3.0000', '1.0100', '1.0100', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18194, '2021-09-18', 8666, 17577, 1645, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18195, '2021-09-18', 1665, 17578, 1646, 33349, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18196, '2021-09-18', 8666, 17579, 1646, NULL, '1.0000', '0.4600', '0.4600', '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 (18197, '2021-09-18', 2167, 17580, 1646, 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 (18198, '2021-09-18', 7741, 17581, 1646, NULL, '1.0000', '1.2000', '1.2000', '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 (18199, '2021-09-18', 1863, 17582, 1646, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18200, '2021-09-18', 2003, 17583, 1646, 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 (18201, '2021-09-19', 2015, 17584, 1647, 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 (18202, '2021-09-19', 1788, 17585, 1647, 4906, '-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 (18203, '2021-09-19', 1788, 17585, 1647, 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 (18204, '2021-09-19', 2315, 17586, 1647, 2735, '-73.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18205, '2021-09-19', 2315, 17586, 1647, NULL, '85.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18206, '2021-09-19', 1529, 17587, 1647, 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 (18207, '2021-09-19', 1863, 17588, 1647, 10808, '-7.0000', '0.4136', '0.4136', '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 (18208, '2021-09-19', 1863, 17588, 1647, NULL, '8.0000', '0.4136', '0.4136', '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 (18209, '2021-09-19', 8517, 17589, 1647, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18210, '2021-09-19', 2763, 17590, 1647, 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 (18211, '2021-09-19', 1386, 17591, 1647, 22316, '2.0000', '4.5000', '4.5000', '6.0000', '6.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 (18212, '2021-09-19', 7444, 17592, 1647, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18213, '2021-09-19', 2699, 17593, 1647, 12529, '-7.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 (18214, '2021-09-19', 2699, 17593, 1647, NULL, '11.0000', '3.0000', '3.0000', '4.5000', '4.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 (18215, '2021-09-19', 2169, 17594, 1647, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '21.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 (18216, '2021-09-19', 1706, 17595, 1647, NULL, '1.0000', '15.2700', '15.2700', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18217, '2021-09-19', 1537, 17596, 1647, NULL, '1.0000', '40.2700', '40.2700', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18218, '2021-09-19', 1945, 17597, 1647, 5559, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '3.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 (18219, '2021-09-19', 1378, 17598, 1647, 278, '1.0000', '1675.2384', '1675.2384', '45.5000', '45.5000', '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 (18220, '2021-09-19', 9520, 17599, 1647, 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 (18221, '2021-09-19', 2712, 17600, 1647, 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 (18222, '2021-09-19', 2825, 17601, 1648, NULL, '1.0000', '12.0000', '12.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 (18223, '2021-09-19', 1863, 17602, 1648, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18224, '2021-09-19', 7777, 17603, 1648, NULL, '1.0000', '9.5000', '9.5000', '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 (18225, '2021-09-19', 1602, 17604, 1648, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18226, '2021-09-19', 7576, 17605, 1648, NULL, '4.0000', '6.9100', '6.9100', '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 (18227, '2021-09-19', 2342, 17606, 1648, 25005, '1.0000', '1.8600', '1.8600', '2.5000', '2.5000', '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 (18228, '2021-09-19', 2342, 17607, 1648, 25005, '6.0000', '1.8600', '1.8600', '2.5000', '2.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 (18229, '2021-09-19', 8028, 17608, 1648, NULL, '1.0000', '15.0000', '15.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18230, '2021-09-19', 1912, 17609, 1648, NULL, '1.0000', '0.6591', '0.6591', '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 (18231, '2021-09-19', 2712, 17610, 1648, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18232, '2021-09-19', 1864, 17611, 1648, 34932, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18233, '2021-09-19', 2221, 17612, 1648, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18234, '2021-09-19', 2643, 17613, 1648, 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 (18235, '2021-09-19', 2068, 17614, 1648, 34568, '1.0000', '13.2503', '13.2503', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18236, '2021-09-19', 1519, 17615, 1648, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18237, '2021-09-19', 2284, 17616, 1648, 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 (18238, '2021-09-19', 2221, 17617, 1648, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18239, '2021-09-19', 2289, 17618, 1648, 13744, '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 (18240, '2021-09-19', 1618, 17619, 1648, 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 (18241, '2021-09-19', 2220, 17620, 1648, 24950, '1.0000', '5.9300', '5.9300', '8.0000', '8.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 (18242, '2021-09-19', 2354, 17621, 1648, 30690, '1.0000', '4.6000', '4.6000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18243, '2021-09-19', 8205, 17622, 1648, NULL, '1.0000', '2.9500', '2.9500', '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 (18244, '2021-09-19', 2169, 17623, 1648, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18245, '2021-09-19', 9167, 17624, 1648, NULL, '1.0000', '50.0000', '50.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 (18246, '2021-09-19', 1945, 17625, 1648, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '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 (18247, '2021-09-19', 2315, 17626, 1648, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (18248, '2021-09-19', 8413, 17627, 1648, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18249, '2021-09-19', 2821, 17628, 1648, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18250, '2021-09-19', 3025, 17629, 1648, 23975, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '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 (18251, '2021-09-19', 1999, 17630, 1648, 22550, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '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 (18252, '2021-09-19', 2225, 17631, 1648, 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 (18253, '2021-09-19', 7790, 17632, 1648, NULL, '4.0000', '17.0000', '17.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 (18254, '2021-09-19', 2315, 17633, 1648, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (18255, '2021-09-19', 2169, 17634, 1648, 34968, '3.0000', '1.1484', '1.1484', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18256, '2021-09-19', 2643, 17635, 1648, 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 (18257, '2021-09-19', 2315, 17636, 1648, 24937, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (18258, '2021-09-19', 2068, 17637, 1648, 34568, '1.0000', '13.2503', '13.2503', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18259, '2021-09-19', 1521, 17638, 1648, 34966, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18260, '2021-09-19', 2940, 17639, 1648, 31114, '1.0000', '6.3600', '6.3600', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18261, '2021-09-19', 9399, 17640, 1648, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18262, '2021-09-19', 2135, 17641, 1648, 34917, '2.0000', '2.4732', '2.4732', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18263, '2021-09-19', 1580, 17642, 1648, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18264, '2021-09-19', 2712, 17643, 1648, 32557, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18265, '2021-09-19', 7558, 17644, 1648, NULL, '1.0000', '33.0200', '33.0200', '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 (18266, '2021-09-19', 2169, 17645, 1648, 34968, '2.0000', '1.1484', '1.1484', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18267, '2021-09-19', 1855, 17646, 1648, 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 (18268, '2021-09-19', 2315, 17647, 1648, 24937, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '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 (18269, '2021-09-19', 3004, 17648, 1649, 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 (18270, '2021-09-19', 1533, 17649, 1649, 22263, '4.0000', '2.5917', '2.5917', '5.0000', '5.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 (18271, '2021-09-19', 1888, 17650, 1649, 683, '1.0000', '134.8400', '134.8400', '21.0000', '21.0000', '3.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 (18272, '2021-09-19', 1602, 17651, 1649, 5897, '1.0000', '6.7859', '6.7859', '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 (18273, '2021-09-19', 2706, 17652, 1649, 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 (18274, '2021-09-19', 2712, 17653, 1649, 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 (18275, '2021-09-19', 2903, 17654, 1649, 18653, '-1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18276, '2021-09-19', 2903, 17654, 1649, NULL, '2.0000', '32.0000', '32.0000', '42.0000', '42.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 (18277, '2021-09-19', 1536, 17655, 1649, 1634, '-15.0000', '3.1686', '3.1686', '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 (18278, '2021-09-19', 1536, 17655, 1649, NULL, '25.0000', '3.1686', '3.1686', '5.0000', '5.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 (18279, '2021-09-19', 1837, 17656, 1649, 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 (18280, '2021-09-19', 1347, 17657, 1649, 3320, '4.0000', '3.4000', '3.4000', '4.5000', '4.5000', '24.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 (18281, '2021-09-19', 2592, 17658, 1649, 10812, '-4.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 (18282, '2021-09-19', 2592, 17658, 1649, NULL, '6.0000', '7.9670', '7.9670', '11.0000', '11.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 (18283, '2021-09-19', 1812, 17659, 1649, 8224, '-6.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 (18284, '2021-09-19', 1812, 17659, 1649, NULL, '7.0000', '7.8900', '7.8900', '10.5000', '10.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 (18285, '2021-09-19', 1651, 17660, 1649, 3222, '-8.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 (18286, '2021-09-19', 1651, 17660, 1649, NULL, '9.0000', '6.7039', '6.7039', '10.0000', '10.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 (18287, '2021-09-19', 1712, 17661, 1649, 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 (18288, '2021-09-19', 2618, 17662, 1649, 9836, '-8.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 (18289, '2021-09-19', 2618, 17662, 1649, NULL, '10.0000', '4.1000', '4.1000', '5.5000', '5.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 (18290, '2021-09-19', 1665, 17663, 1649, 3235, '-17.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 (18291, '2021-09-19', 1665, 17663, 1649, NULL, '18.0000', '1.3000', '1.3000', '2.0000', '2.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 (18292, '2021-09-19', 1787, 17664, 1649, NULL, '1.0000', '0.8100', '0.8100', '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 (18293, '2021-09-19', 1602, 17665, 1649, 5897, '1.0000', '6.7859', '6.7859', '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 (18294, '2021-09-19', 1523, 17666, 1649, 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 (18295, '2021-09-19', 2821, 17667, 1650, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18296, '2021-09-19', 7753, 17668, 1650, NULL, '1.0000', '3.1400', '3.1400', '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 (18297, '2021-09-19', 2379, 17669, 1650, NULL, '1.0000', '1.8000', '1.8000', '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 (18298, '2021-09-19', 7524, 17670, 1650, NULL, '1.0000', '11.9500', '11.9500', '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 (18299, '2021-09-19', 2821, 17671, 1650, 33353, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18300, '2021-09-19', 3069, 17672, 1650, 25154, '1.0000', '5.0000', '5.0000', '6.0000', '6.0000', '5.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 (18301, '2021-09-19', 1381, 17673, 1650, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18302, '2021-09-19', 1519, 17674, 1650, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '38.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18303, '2021-09-19', 2642, 17675, 1650, 22561, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '9.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 (18304, '2021-09-19', 2916, 17676, 1650, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18305, '2021-09-19', 1521, 17677, 1650, 34966, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18306, '2021-09-19', 2167, 17678, 1650, 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 (18307, '2021-09-19', 1839, 17679, 1650, 33365, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18308, '2021-09-19', 2293, 17680, 1650, 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 (18309, '2021-09-19', 1621, 17681, 1650, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (18310, '2021-09-19', 1519, 17682, 1650, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '38.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18311, '2021-09-19', 7550, 17683, 1650, NULL, '4.0000', '4.7300', '4.7300', '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 (18312, '2021-09-19', 1602, 17684, 1651, 31092, '1.0000', '7.0310', '7.0310', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18313, '2021-09-19', 2444, 17685, 1652, 22549, '1.0000', '7.0800', '7.0800', '9.0000', '9.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 (18314, '2021-09-19', 2277, 17686, 1652, 34655, '2.0000', '0.8982', '0.8982', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18315, '2021-09-19', 2020, 17687, 1653, 10164, '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 (18316, '2021-09-19', 2167, 17688, 1653, 17165, '-1.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 (18317, '2021-09-19', 2167, 17688, 1653, 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 (18318, '2021-09-19', 2320, 17689, 1653, 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 (18319, '2021-09-19', 2252, 17690, 1653, 2789, '-3.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 (18320, '2021-09-19', 2252, 17690, 1653, NULL, '4.0000', '9.5000', '9.5000', '12.5000', '12.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 (18321, '2021-09-19', 8137, 17691, 1653, NULL, '1.0000', '3.0000', '3.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 (18322, '2021-09-19', 2389, 17692, 1653, NULL, '4.0000', '3.1400', '3.1400', '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 (18323, '2021-09-19', 1410, 17693, 1653, 22317, '1.0000', '2.2000', '2.2000', '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 (18324, '2021-09-19', 2809, 17694, 1654, 23991, '1.0000', '28.0000', '28.0000', '35.0000', '35.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 (18325, '2021-09-19', 3024, 17695, 1654, 23973, '1.0000', '5.9000', '5.9000', '8.0000', '8.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 (18326, '2021-09-19', 2233, 17696, 1654, 34013, '1.0000', '19.9766', '19.9766', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18327, '2021-09-19', 2829, 17697, 1654, 33157, '1.0000', '24.7175', '24.7175', '39.5000', '39.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18328, '2021-09-19', 2547, 17698, 1654, 13764, '1.0000', '8.9650', '8.9650', '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 (18329, '2021-09-19', 1839, 17699, 1655, 33365, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18330, '2021-09-19', 1302, 17700, 1655, 33363, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18331, '2021-09-19', 2073, 17701, 1655, 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 (18332, '2021-09-19', 2102, 17702, 1655, 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 (18333, '2021-09-19', 1646, 17703, 1655, 30659, '1.0000', '4.5256', '4.5256', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18334, '2021-09-19', 7758, 17704, 1655, NULL, '1.0000', '10.8500', '10.8500', '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 (18335, '2021-09-19', 2768, 17705, 1655, 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 (18336, '2021-09-19', 1338, 17706, 1656, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18337, '2021-09-19', 9482, 17707, 1656, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '112.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18338, '2021-09-19', 1771, 17708, 1656, 13766, '1.0000', '3.3900', '3.3900', '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 (18339, '2021-09-19', 1322, 17709, 1656, 34957, '1.0000', '-0.2716', '-0.2716', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18340, '2021-09-19', 7780, 17710, 1657, NULL, '1.0000', '2.6000', '2.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 (18341, '2021-09-19', 7671, 17711, 1657, NULL, '2.0000', '15.5000', '15.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 (18342, '2021-09-19', 9453, 17712, 1657, 31013, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18343, '2021-09-19', 1596, 17713, 1657, 34556, '1.0000', '2.5700', '2.5700', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18344, '2021-09-19', 7671, 17714, 1657, NULL, '2.0000', '15.5000', '15.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 (18345, '2021-09-19', 2069, 17715, 1657, NULL, '2.0000', '2.0400', '2.0400', '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 (18346, '2021-09-19', 8596, 17716, 1657, NULL, '1.0000', '17.0000', '17.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 (18347, '2021-09-19', 7453, 17717, 1657, 30061, '1.0000', '28.5000', '28.5000', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18348, '2021-09-19', 8500, 17718, 1657, NULL, '1.0000', '22.4500', '22.4500', '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 (18349, '2021-09-19', 2060, 17719, 1657, 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 (18350, '2021-09-19', 7671, 17720, 1657, NULL, '2.0000', '15.5000', '15.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 (18351, '2021-09-19', 7715, 17721, 1657, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18352, '2021-09-19', 8355, 17722, 1657, NULL, '1.0000', '21.7500', '21.7500', '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 (18353, '2021-09-19', 9412, 17723, 1657, NULL, '1.0000', '33.4700', '33.4700', '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 (18354, '2021-09-19', 7411, 17724, 1657, NULL, '5.0000', '1.3500', '1.3500', '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 (18355, '2021-09-19', 7353, 17725, 1657, 30931, '2.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '28.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18356, '2021-09-19', 7642, 17726, 1657, NULL, '1.0000', '2.6900', '2.6900', '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 (18357, '2021-09-19', 7739, 17727, 1657, NULL, '1.0000', '2.7500', '2.7500', '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 (18358, '2021-09-19', 7509, 17728, 1657, 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 (18359, '2021-09-19', 9092, 17729, 1657, NULL, '1.0000', '5.2900', '5.2900', '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 (18360, '2021-09-19', 7886, 17730, 1657, NULL, '1.0000', '16.1667', '16.1667', '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 (18361, '2021-09-19', 8654, 17731, 1657, NULL, '1.0000', '5.8000', '5.8000', '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 (18362, '2021-09-19', 7411, 17732, 1657, NULL, '1.0000', '1.3500', '1.3500', '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 (18363, '2021-09-19', 7514, 17733, 1657, NULL, '2.0000', '7.8800', '7.8800', '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 (18364, '2021-09-19', 7514, 17734, 1657, NULL, '1.0000', '7.8800', '7.8800', '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 (18365, '2021-09-19', 9098, 17735, 1657, NULL, '4.0000', '25.0000', '25.0000', '34.5000', '34.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 (18366, '2021-09-19', 2289, 17736, 1657, NULL, '4.0000', '0.2300', '0.2300', '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 (18367, '2021-09-19', 2699, 17737, 1657, 34564, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18368, '2021-09-19', 8596, 17738, 1657, NULL, '1.0000', '17.0000', '17.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 (18369, '2021-09-19', 7411, 17739, 1657, NULL, '1.0000', '1.3500', '1.3500', '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 (18370, '2021-09-19', 1904, 17740, 1657, 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 (18371, '2021-09-19', 1757, 17741, 1657, 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 (18372, '2021-09-19', 7447, 17742, 1657, NULL, '16.0000', '19.1100', '19.1100', '2.0000', '2.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 (18373, '2021-09-19', 7415, 17743, 1657, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18374, '2021-09-19', 8758, 17744, 1657, 32145, '1.0000', '5.8000', '5.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18375, '2021-09-19', 8015, 17745, 1657, 34511, '2.0000', '4.1466', '4.1466', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18376, '2021-09-19', 7518, 17746, 1657, NULL, '1.0000', '-21.7700', '-21.7700', '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 (18377, '2021-09-19', 7317, 17747, 1657, NULL, '1.0000', '19.5500', '19.5500', '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 (18378, '2021-09-19', 2995, 17748, 1657, 35088, '1.0000', '-119.0000', '-119.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18379, '2021-09-19', 2544, 17749, 1657, 32911, '1.0000', '6.8800', '6.8800', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18380, '2021-09-19', 2374, 17750, 1657, NULL, '1.0000', '6.1000', '6.1000', '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 (18381, '2021-09-19', 7637, 17751, 1657, 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 (18382, '2021-09-19', 7604, 17752, 1657, NULL, '1.0000', '4.3900', '4.3900', '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 (18383, '2021-09-19', 8061, 17753, 1657, NULL, '2.0000', '1.6000', '1.6000', '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 (18384, '2021-09-19', 8166, 17754, 1657, NULL, '2.0000', '4.6000', '4.6000', '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 (18385, '2021-09-19', 7762, 17755, 1657, NULL, '1.0000', '5.1000', '5.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 (18386, '2021-09-19', 7674, 17756, 1657, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '242.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18387, '2021-09-19', 7355, 17757, 1657, 29995, '1.0000', '11.6400', '11.6400', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18388, '2021-09-19', 8699, 17758, 1657, NULL, '1.0000', '6.3800', '6.3800', '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 (18389, '2021-09-19', 7674, 17759, 1657, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '242.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18390, '2021-09-19', 2289, 17760, 1657, NULL, '4.0000', '0.2300', '0.2300', '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 (18391, '2021-09-19', 1840, 17761, 1657, 33725, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '186.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18392, '2021-09-19', 8153, 17762, 1657, NULL, '7.0000', '0.3200', '0.3200', '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 (18393, '2021-09-19', 2463, 17763, 1657, NULL, '3.0000', '2.8700', '2.8700', '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 (18394, '2021-09-19', 2003, 17764, 1657, 32811, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18395, '2021-09-19', 7713, 17765, 1657, NULL, '1.0000', '4.4000', '4.4000', '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 (18396, '2021-09-19', 8120, 17766, 1657, NULL, '1.0000', '33.0000', '33.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 (18397, '2021-09-19', 7411, 17767, 1657, NULL, '1.0000', '1.3500', '1.3500', '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 (18398, '2021-09-19', 8744, 17768, 1657, 32142, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18399, '2021-09-19', 8456, 17769, 1657, NULL, '1.0000', '5.5400', '5.5400', '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 (18400, '2021-09-19', 8263, 17770, 1657, NULL, '1.0000', '5.0000', '5.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 (18401, '2021-09-19', 7576, 17771, 1657, NULL, '1.0000', '6.9100', '6.9100', '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 (18402, '2021-09-19', 8596, 17772, 1657, NULL, '1.0000', '17.0000', '17.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 (18403, '2021-09-19', 8006, 17773, 1657, NULL, '1.0000', '7.3500', '7.3500', '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 (18404, '2021-09-19', 7588, 17774, 1657, NULL, '1.0000', '1.5000', '1.5000', '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 (18405, '2021-09-19', 7871, 17775, 1657, NULL, '5.0000', '6.0000', '6.0000', '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 (18406, '2021-09-19', 1771, 17776, 1657, 35059, '1.0000', '4.9672', '4.9672', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18407, '2021-09-19', 8359, 17777, 1657, NULL, '1.0000', '16.7750', '16.7750', '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 (18408, '2021-09-19', 7411, 17778, 1657, NULL, '2.0000', '1.3500', '1.3500', '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 (18409, '2021-09-19', 7473, 17779, 1657, NULL, '2.0000', '9.2200', '9.2200', '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 (18410, '2021-09-19', 2070, 17780, 1657, NULL, '2.0000', '2.0000', '2.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 (18411, '2021-09-19', 7446, 17781, 1657, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18412, '2021-09-19', 9092, 17782, 1657, NULL, '2.0000', '5.2900', '5.2900', '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 (18413, '2021-09-19', 7588, 17783, 1657, NULL, '1.0000', '1.5000', '1.5000', '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 (18414, '2021-09-19', 7886, 17784, 1657, NULL, '1.0000', '16.1667', '16.1667', '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 (18415, '2021-09-19', 8310, 17785, 1657, NULL, '2.0000', '22.5000', '22.5000', '14.5000', '14.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 (18416, '2021-09-19', 2047, 17786, 1658, 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 (18417, '2021-09-19', 2655, 17787, 1658, 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 (18418, '2021-09-19', 2389, 17788, 1658, 4041, '-4.0000', '3.1400', '3.1400', '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 (18419, '2021-09-19', 2389, 17788, 1658, NULL, '14.0000', '3.1400', '3.1400', '4.5000', '4.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 (18420, '2021-09-19', 1928, 17789, 1658, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '6.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 (18421, '2021-09-19', 1338, 17790, 1658, 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 (18422, '2021-09-19', 1863, 17791, 1658, 10808, '-8.0000', '0.4136', '0.4136', '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 (18423, '2021-09-19', 1863, 17791, 1658, NULL, '9.0000', '0.4136', '0.4136', '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 (18424, '2021-09-19', 7805, 17792, 1659, NULL, '2.0000', '2.1800', '2.1800', '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 (18425, '2021-09-19', 2662, 17793, 1659, 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 (18426, '2021-09-19', 2315, 17794, 1659, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18427, '2021-09-19', 8217, 17795, 1660, NULL, '1.0000', '9.7000', '9.7000', '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 (18428, '2021-09-19', 8548, 17796, 1660, NULL, '1.0000', '12.0000', '12.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 (18429, '2021-09-19', 7671, 17797, 1660, NULL, '3.0000', '15.5000', '15.5000', '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 (18430, '2021-09-19', 2796, 17798, 1660, NULL, '1.0000', '30.7800', '30.7800', '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 (18431, '2021-09-20', 7397, 17799, 1661, 30024, '2.0000', '7.9700', '7.9700', '97.0000', '97.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18432, '2021-09-20', 7523, 17800, 1661, NULL, '1.0000', '1.8300', '1.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 (18433, '2021-09-20', 8063, 17801, 1662, 34558, '2.0000', '-23.2756', '-23.2756', '7.0000', '7.0000', '39.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18434, '2021-09-20', 8127, 17802, 1662, NULL, '1.0000', '24.5300', '24.5300', '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 (18435, '2021-09-20', 7641, 17803, 1662, NULL, '1.0000', '1.9000', '1.9000', '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 (18436, '2021-09-20', 7675, 17804, 1662, NULL, '1.0000', '11.4300', '11.4300', '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 (18437, '2021-09-20', 9419, 17805, 1662, 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 (18438, '2021-09-20', 8657, 17806, 1662, 33728, '1.0000', '6.3816', '6.3816', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18439, '2021-09-20', 7532, 17807, 1662, NULL, '1.0000', '9.0500', '9.0500', '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 (18440, '2021-09-20', 2470, 17808, 1662, 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 (18441, '2021-09-20', 8444, 17809, 1662, NULL, '1.0000', '26.0000', '26.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 (18442, '2021-09-20', 8608, 17810, 1662, 32131, '1.0000', '5.7400', '5.7400', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18443, '2021-09-20', 8119, 17811, 1662, 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 (18444, '2021-09-20', 7736, 17812, 1662, NULL, '1.0000', '5.7188', '5.7188', '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 (18445, '2021-09-20', 8097, 17813, 1662, NULL, '3.0000', '7.6800', '7.6800', '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 (18446, '2021-09-20', 2490, 17814, 1662, 35205, '1.0000', '8.6300', '8.6300', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18447, '2021-09-20', 1796, 17815, 1662, 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 (18448, '2021-09-20', 8097, 17816, 1662, NULL, '4.0000', '7.6800', '7.6800', '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 (18449, '2021-09-20', 7531, 17817, 1662, NULL, '6.0000', '16.5000', '16.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 (18450, '2021-09-20', 1399, 17818, 1662, 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 (18451, '2021-09-20', 7819, 17819, 1662, NULL, '1.0000', '9.5000', '9.5000', '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 (18452, '2021-09-20', 8097, 17820, 1662, NULL, '4.0000', '7.6800', '7.6800', '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 (18453, '2021-09-20', 7509, 17821, 1662, 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 (18454, '2021-09-20', 7832, 17822, 1662, 31008, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18455, '2021-09-20', 2962, 17823, 1662, 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 (18456, '2021-09-20', 9393, 17824, 1662, NULL, '1.0000', '15.0000', '15.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 (18457, '2021-09-20', 7631, 17825, 1662, 33525, '1.0000', '84.7900', '84.7900', '112.0000', '112.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18458, '2021-09-20', 2655, 17826, 1662, 34562, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18459, '2021-09-20', 7708, 17827, 1662, 34536, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18460, '2021-09-20', 9393, 17828, 1662, NULL, '1.0000', '15.0000', '15.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 (18461, '2021-09-20', 9287, 17829, 1662, NULL, '1.0000', '5.0000', '5.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 (18462, '2021-09-20', 8594, 17830, 1663, 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 (18463, '2021-09-20', 2964, 17831, 1663, NULL, '1.0000', '6.6000', '6.6000', '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 (18464, '2021-09-20', 2411, 17832, 1663, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.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 (18465, '2021-09-20', 2375, 17833, 1663, 22291, '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 (18466, '2021-09-20', 2036, 17834, 1663, 4277, '-1.0000', '8.0000', '8.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 (18467, '2021-09-20', 2036, 17834, 1663, NULL, '2.0000', '8.0000', '8.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 (18468, '2021-09-20', 2376, 17835, 1663, 22303, '2.0000', '19.3816', '19.3816', '25.0000', '25.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 (18469, '2021-09-20', 1519, 17836, 1663, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (18470, '2021-09-20', 1700, 17837, 1663, 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 (18471, '2021-09-20', 1700, 17837, 1663, NULL, '2.0000', '8.0000', '8.0000', '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 (18472, '2021-09-20', 1427, 17838, 1663, 22355, '1.0000', '14.2181', '14.2181', '20.5000', '20.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 (18473, '2021-09-20', 2583, 17839, 1663, NULL, '2.0000', '77.2500', '77.2500', '102.0000', '102.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 (18474, '2021-09-20', 2712, 17840, 1663, NULL, '8.0000', '0.2600', '0.2600', '0.5000', '0.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 (18475, '2021-09-20', 2331, 17841, 1663, 3834, '-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 (18476, '2021-09-20', 2331, 17841, 1663, NULL, '2.0000', '12.0700', '12.0700', '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 (18477, '2021-09-20', 2221, 17842, 1663, 4154, '-2.0000', '14.4737', '14.4737', '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 (18478, '2021-09-20', 2221, 17842, 1663, NULL, '3.0000', '14.4737', '14.4737', '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 (18479, '2021-09-20', 1837, 17843, 1663, NULL, '5.0000', '0.9642', '0.9642', '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 (18480, '2021-09-20', 9311, 17844, 1663, 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 (18481, '2021-09-20', 2487, 17845, 1663, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '3.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 (18482, '2021-09-20', 2484, 17846, 1663, 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 (18483, '2021-09-20', 1681, 17847, 1663, 18891, '1.0000', '36.8000', '36.8000', '53.0000', '53.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 (18484, '2021-09-20', 1593, 17848, 1663, 8359, '6.0000', '57.4565', '57.4565', '8.7000', '8.7000', '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 (18485, '2021-09-20', 1530, 17849, 1663, NULL, '1.0000', '28.7012', '28.7012', '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 (18486, '2021-09-20', 2712, 17850, 1663, 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 (18487, '2021-09-20', 1863, 17851, 1663, 10808, '-9.0000', '0.4136', '0.4136', '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 (18488, '2021-09-20', 1863, 17851, 1663, NULL, '10.0000', '0.4136', '0.4136', '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 (18489, '2021-09-20', 7780, 17852, 1664, NULL, '1.0000', '2.6000', '2.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 (18490, '2021-09-20', 7995, 17853, 1664, NULL, '1.0000', '40.2000', '40.2000', '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 (18491, '2021-09-20', 8596, 17854, 1664, NULL, '1.0000', '17.0000', '17.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 (18492, '2021-09-20', 7925, 17855, 1664, NULL, '1.0000', '11.8000', '11.8000', '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 (18493, '2021-09-20', 2768, 17856, 1664, 34521, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18494, '2021-09-20', 8119, 17857, 1665, 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 (18495, '2021-09-20', 2242, 17858, 1666, 34024, '2.0000', '0.6028', '0.6028', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18496, '2021-09-20', 2242, 17858, 1666, NULL, '1.0000', '0.6028', '0.6028', '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 (18497, '2021-09-20', 1322, 17859, 1666, 34957, '2.0000', '-0.2716', '-0.2716', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18498, '2021-09-20', 2169, 17860, 1666, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18499, '2021-09-20', 1606, 17861, 1666, 34605, '5.0000', '4.9200', '4.9200', '6.5000', '6.5000', '25.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18500, '2021-09-20', 1867, 17862, 1666, 34624, '1.0000', '5.8781', '5.8781', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18501, '2021-09-20', 2270, 17863, 1666, 30691, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18502, '2021-09-20', 1654, 17864, 1666, 31086, '1.0000', '9.1160', '9.1160', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18503, '2021-09-20', 2951, 17865, 1666, 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 (18504, '2021-09-20', 1912, 17866, 1666, NULL, '2.0000', '0.6591', '0.6591', '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 (18505, '2021-09-20', 2662, 17867, 1666, 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 (18506, '2021-09-20', 2237, 17868, 1666, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18507, '2021-09-20', 1912, 17869, 1666, NULL, '1.0000', '0.6591', '0.6591', '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 (18508, '2021-09-20', 2252, 17870, 1666, 34647, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18509, '2021-09-20', 1606, 17871, 1666, 34605, '10.0000', '4.9200', '4.9200', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18510, '2021-09-20', 1884, 17872, 1666, NULL, '1.0000', '5.1300', '5.1300', '6.7700', '6.7700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18511, '2021-09-20', 8518, 17873, 1666, NULL, '1.0000', '17.6400', '17.6400', '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 (18512, '2021-09-20', 2660, 17874, 1666, 23143, '1.0000', '0.7000', '0.7000', '1.0000', '1.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 (18513, '2021-09-20', 1687, 17875, 1666, NULL, '1.0000', '12.0000', '12.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 (18514, '2021-09-20', 1665, 17876, 1666, 33349, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18515, '2021-09-20', 2169, 17877, 1666, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18516, '2021-09-20', 2655, 17878, 1666, 34661, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18517, '2021-09-20', 2699, 17879, 1666, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18518, '2021-09-20', 2908, 17880, 1666, 24963, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '36.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 (18519, '2021-09-20', 7411, 17881, 1666, NULL, '1.0000', '1.3500', '1.3500', '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 (18520, '2021-09-20', 2411, 17882, 1666, 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 (18521, '2021-09-20', 2221, 17883, 1667, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18522, '2021-09-20', 7916, 17884, 1667, NULL, '1.0000', '8.9900', '8.9900', '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 (18523, '2021-09-20', 2226, 17885, 1668, 25028, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '3.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 (18524, '2021-09-20', 1935, 17886, 1668, 31718, '2.0000', '7.9589', '7.9589', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18525, '2021-09-20', 2964, 17887, 1668, 21817, '1.0000', '6.6000', '6.6000', '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 (18526, '2021-09-20', 8810, 17888, 1668, NULL, '1.0000', '1.9200', '1.9200', '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 (18527, '2021-09-20', 8594, 17889, 1668, 32594, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18528, '2021-09-20', 2289, 17890, 1668, 22482, '4.0000', '0.2300', '0.2300', '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 (18529, '2021-09-20', 1840, 17891, 1668, 4973, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18530, '2021-09-20', 1863, 17892, 1668, 34411, '2.0000', '0.9660', '0.9660', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18531, '2021-09-20', 3018, 17893, 1668, 25037, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '0.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 (18532, '2021-09-20', 2135, 17894, 1668, 34855, '1.0000', '2.2857', '2.2857', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18533, '2021-09-20', 8666, 17895, 1668, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18534, '2021-09-20', 2850, 17896, 1668, 17313, '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 (18535, '2021-09-20', 2484, 17897, 1668, 5196, '1.0000', '17.0000', '17.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 (18536, '2021-09-20', 2479, 17898, 1668, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (18537, '2021-09-20', 2487, 17899, 1668, 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 (18538, '2021-09-20', 2485, 17900, 1668, 5197, '1.0000', '17.0000', '17.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 (18539, '2021-09-20', 8097, 17901, 1668, NULL, '10.0000', '7.6800', '7.6800', '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 (18540, '2021-09-20', 1787, 17902, 1668, 4930, '1.0000', '0.8100', '0.8100', '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 (18541, '2021-09-20', 1837, 17903, 1668, 31714, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18542, '2021-09-20', 2221, 17904, 1668, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.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 (18543, '2021-09-20', 2135, 17905, 1668, 34855, '1.0000', '2.2857', '2.2857', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18544, '2021-09-20', 2412, 17906, 1668, 4824, '10.0000', '0.5200', '0.5200', '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 (18545, '2021-09-20', 2280, 17907, 1669, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '25.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 (18546, '2021-09-20', 2088, 17908, 1669, 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 (18547, '2021-09-20', 2169, 17909, 1669, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18548, '2021-09-20', 1912, 17910, 1669, NULL, '1.0000', '0.6591', '0.6591', '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 (18549, '2021-09-20', 7367, 17911, 1669, NULL, '1.0000', '35.0000', '35.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 (18550, '2021-09-20', 1840, 17912, 1669, 19856, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '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 (18551, '2021-09-20', 2386, 17913, 1669, 29634, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18552, '2021-09-20', 2951, 17914, 1669, 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 (18553, '2021-09-20', 7886, 17915, 1669, NULL, '1.0000', '14.5000', '14.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 (18554, '2021-09-20', 1622, 17916, 1669, 19343, '2.0000', '90.0000', '90.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 (18555, '2021-09-20', 2951, 17917, 1669, 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 (18556, '2021-09-20', 1520, 17918, 1669, 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 (18557, '2021-09-20', 7886, 17919, 1669, NULL, '1.0000', '14.5000', '14.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 (18558, '2021-09-20', 2660, 17920, 1669, 23143, '4.0000', '0.7000', '0.7000', '1.0000', '1.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 (18559, '2021-09-20', 1771, 17921, 1669, 13766, '1.0000', '3.3900', '3.3900', '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 (18560, '2021-09-20', 1812, 17922, 1669, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18561, '2021-09-20', 2260, 17923, 1669, 23137, '1.0000', '4.2000', '4.2000', '6.0000', '6.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 (18562, '2021-09-20', 1935, 17924, 1669, 30686, '2.0000', '37.9921', '37.9921', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18563, '2021-09-20', 1863, 17925, 1669, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18564, '2021-09-20', 7886, 17926, 1669, NULL, '1.0000', '14.5000', '14.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 (18565, '2021-09-20', 2662, 17927, 1669, 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 (18566, '2021-09-20', 1863, 17928, 1669, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18567, '2021-09-20', 1499, 17929, 1669, 33367, '5.0000', '0.4835', '0.4835', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18568, '2021-09-20', 1307, 17930, 1669, 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 (18569, '2021-09-20', 2609, 17931, 1669, 34938, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18570, '2021-09-20', 1519, 17932, 1669, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '36.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18571, '2021-09-20', 2726, 17933, 1669, 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 (18572, '2021-09-20', 2506, 17934, 1669, 25024, '1.0000', '3.4900', '3.4900', '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 (18573, '2021-09-20', 1938, 17935, 1670, NULL, '1.0000', '11.0000', '11.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 (18574, '2021-09-20', 1339, 17936, 1670, 32530, '1.0000', '0.3390', '0.3390', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18575, '2021-09-20', 1942, 17937, 1670, 23124, '1.0000', '19.0000', '19.0000', '26.0000', '26.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 (18576, '2021-09-20', 2999, 17938, 1670, 31104, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18577, '2021-09-20', 7375, 17939, 1670, NULL, '20.0000', '5.1000', '5.1000', '5.5000', '5.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 (18578, '2021-09-20', 7680, 17940, 1670, NULL, '1.0000', '7.4000', '7.4000', '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 (18579, '2021-09-20', 2280, 17941, 1670, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '24.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 (18580, '2021-09-20', 2169, 17942, 1670, 34968, '2.0000', '1.1484', '1.1484', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18581, '2021-09-20', 2167, 17943, 1670, 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 (18582, '2021-09-20', 2088, 17944, 1670, 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 (18583, '2021-09-20', 7886, 17945, 1670, NULL, '1.0000', '14.5000', '14.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 (18584, '2021-09-20', 7758, 17946, 1670, NULL, '1.0000', '10.8500', '10.8500', '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 (18585, '2021-09-20', 1497, 17947, 1670, 34601, '1.0000', '10.3400', '10.3400', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18586, '2021-09-20', 7579, 17948, 1671, NULL, '1.0000', '15.0000', '15.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 (18587, '2021-09-20', 2167, 17949, 1671, 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 (18588, '2021-09-20', 7933, 17950, 1671, NULL, '1.0000', '5.5000', '5.5000', '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 (18589, '2021-09-20', 1863, 17951, 1671, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18590, '2021-09-20', 2635, 17952, 1671, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18591, '2021-09-20', 2394, 17953, 1671, 31959, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18592, '2021-09-20', 3023, 17954, 1671, 24931, '1.0000', '5.6400', '5.6400', '7.5000', '7.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 (18593, '2021-09-20', 1863, 17955, 1671, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18594, '2021-09-20', 2655, 17956, 1671, 34661, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18595, '2021-09-20', 2234, 17957, 1672, 32054, '1.0000', '13.9074', '13.9074', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18596, '2021-09-20', 1935, 17958, 1672, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18597, '2021-09-20', 1432, 17959, 1672, 33040, '2.0000', '9.2619', '9.2619', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18598, '2021-09-20', 2167, 17960, 1672, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18599, '2021-09-20', 2712, 17961, 1672, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '54.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18600, '2021-09-20', 2169, 17962, 1672, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18601, '2021-09-20', 2315, 17963, 1672, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '271.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18602, '2021-09-20', 1347, 17964, 1672, NULL, '10.0000', '3.4909', '3.4909', '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 (18603, '2021-09-20', 1518, 17965, 1672, 34682, '1.0000', '45.5510', '45.5510', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18604, '2021-09-20', 2178, 17966, 1672, 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 (18605, '2021-09-20', 2896, 17967, 1672, 18357, '1.0000', '14.0000', '14.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 (18606, '2021-09-20', 2732, 17968, 1672, 32062, '1.0000', '26.3888', '26.3888', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18607, '2021-09-20', 7741, 17969, 1672, NULL, '1.0000', '1.2000', '1.2000', '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 (18608, '2021-09-20', 2296, 17970, 1672, 32031, '1.0000', '13.1030', '13.1030', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18609, '2021-09-20', 1340, 17971, 1672, 10208, '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 (18610, '2021-09-20', 1546, 17972, 1672, 32870, '6.0000', '-69.3335', '-69.3335', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18611, '2021-09-20', 3017, 17973, 1672, NULL, '1.0000', '3.9000', '3.9000', '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 (18612, '2021-09-20', 1616, 17974, 1672, 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 (18613, '2021-09-20', 8026, 17975, 1672, NULL, '1.0000', '16.5000', '16.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 (18614, '2021-09-20', 9019, 17976, 1672, NULL, '2.0000', '6.0000', '6.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 (18615, '2021-09-20', 2221, 17977, 1672, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (18616, '2021-09-20', 1621, 17978, 1672, 33211, '1.0000', '55.5718', '55.5718', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18617, '2021-09-20', 2363, 17979, 1672, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18618, '2021-09-20', 1523, 17980, 1672, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '23.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 (18619, '2021-09-20', 2592, 17981, 1672, 32880, '2.0000', '7.9456', '7.9456', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18620, '2021-09-20', 2656, 17982, 1672, 34432, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18621, '2021-09-20', 3046, 17983, 1672, 24270, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '8.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 (18622, '2021-09-20', 2992, 17984, 1673, 23119, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (18623, '2021-09-20', 7380, 17985, 1673, NULL, '1.0000', '5.6200', '5.6200', '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 (18624, '2021-09-20', 2272, 17986, 1673, 34959, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18625, '2021-09-20', 1654, 17987, 1673, 31086, '1.0000', '9.1160', '9.1160', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18626, '2021-09-20', 2320, 17988, 1673, 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 (18627, '2021-09-20', 2285, 17989, 1673, 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 (18628, '2021-09-20', 7482, 17990, 1673, NULL, '1.0000', '3.0500', '3.0500', '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 (18629, '2021-09-20', 1519, 17991, 1673, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '35.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18630, '2021-09-20', 1884, 17992, 1673, NULL, '1.0000', '5.1300', '5.1300', '6.7700', '6.7700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18631, '2021-09-20', 2169, 17993, 1673, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18632, '2021-09-20', 1665, 17994, 1673, 33349, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18633, '2021-09-20', 1569, 17995, 1673, 23139, '1.0000', '14.2800', '14.2800', '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 (18634, '2021-09-20', 7898, 17996, 1674, NULL, '1.0000', '2.2000', '2.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 (18635, '2021-09-20', 7913, 17997, 1674, NULL, '1.0000', '2.5500', '2.5500', '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 (18636, '2021-09-20', 7412, 17998, 1674, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18637, '2021-09-20', 8679, 17999, 1674, NULL, '1.0000', '28.0000', '28.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 (18638, '2021-09-20', 1642, 18000, 1674, NULL, '1.0000', '90.0000', '90.0000', '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 (18639, '2021-09-20', 9094, 18001, 1674, NULL, '1.0000', '6.0000', '6.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 (18640, '2021-09-20', 7509, 18002, 1674, 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 (18641, '2021-09-20', 8752, 18003, 1674, NULL, '1.0000', '4.2000', '4.2000', '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 (18642, '2021-09-20', 8188, 18004, 1674, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18643, '2021-09-20', 7641, 18005, 1674, NULL, '1.0000', '1.9000', '1.9000', '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 (18644, '2021-09-20', 7412, 18006, 1674, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18645, '2021-09-20', 7333, 18007, 1674, 29984, '1.0000', '13.5000', '13.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18646, '2021-09-20', 7604, 18008, 1674, NULL, '1.0000', '4.3900', '4.3900', '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 (18647, '2021-09-20', 7739, 18009, 1674, NULL, '2.0000', '2.7500', '2.7500', '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 (18648, '2021-09-20', 7762, 18010, 1674, NULL, '1.0000', '5.1000', '5.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 (18649, '2021-09-20', 7781, 18011, 1674, NULL, '3.0000', '4.2500', '4.2500', '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 (18650, '2021-09-20', 9157, 18012, 1674, NULL, '1.0000', '7.0000', '7.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 (18651, '2021-09-20', 7854, 18013, 1674, NULL, '1.0000', '28.5800', '28.5800', '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 (18652, '2021-09-20', 9340, 18014, 1674, NULL, '1.0000', '26.2800', '26.2800', '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 (18653, '2021-09-20', 7862, 18015, 1674, NULL, '1.0000', '17.8000', '17.8000', '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 (18654, '2021-09-20', 8254, 18016, 1674, NULL, '1.0000', '27.2800', '27.2800', '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 (18655, '2021-09-20', 2544, 18017, 1674, NULL, '1.0000', '6.8800', '6.8800', '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 (18656, '2021-09-20', 7675, 18018, 1674, NULL, '1.0000', '11.4300', '11.4300', '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 (18657, '2021-09-20', 7725, 18019, 1674, NULL, '1.0000', '1.6600', '1.6600', '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 (18658, '2021-09-20', 8186, 18020, 1674, NULL, '1.0000', '1.0800', '1.0800', '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 (18659, '2021-09-20', 7370, 18021, 1674, NULL, '1.0000', '12.1100', '12.1100', '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 (18660, '2021-09-20', 8166, 18022, 1674, NULL, '1.0000', '4.6000', '4.6000', '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 (18661, '2021-09-20', 7671, 18023, 1674, NULL, '1.0000', '15.5000', '15.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 (18662, '2021-09-20', 9275, 18024, 1674, NULL, '1.0000', '6.3000', '6.3000', '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 (18663, '2021-09-20', 8889, 18025, 1674, 31654, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18664, '2021-09-20', 7996, 18026, 1674, NULL, '1.0000', '33.0100', '33.0100', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18665, '2021-09-20', 8054, 18027, 1674, NULL, '3.0000', '16.0000', '16.0000', '0.6000', '0.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 (18666, '2021-09-20', 9092, 18028, 1674, NULL, '3.0000', '5.2900', '5.2900', '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 (18667, '2021-09-20', 8288, 18029, 1674, NULL, '2.0000', '20.0000', '20.0000', '1.8000', '1.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 (18668, '2021-09-20', 7927, 18030, 1674, 34535, '2.0000', '11.7000', '11.7000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18669, '2021-09-20', 8053, 18031, 1674, NULL, '3.0000', '2.9600', '2.9600', '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 (18670, '2021-09-20', 8548, 18032, 1674, NULL, '1.0000', '12.0000', '12.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 (18671, '2021-09-20', 8166, 18033, 1674, NULL, '1.0000', '4.6000', '4.6000', '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 (18672, '2021-09-20', 9510, 18034, 1674, 33744, '1.0000', '31.5200', '31.5200', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18673, '2021-09-20', 8702, 18035, 1674, NULL, '1.0000', '3.6700', '3.6700', '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 (18674, '2021-09-20', 7411, 18036, 1674, NULL, '1.0000', '1.3500', '1.3500', '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 (18675, '2021-09-20', 2069, 18037, 1674, NULL, '2.0000', '2.0400', '2.0400', '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 (18676, '2021-09-20', 7703, 18038, 1674, NULL, '2.0000', '22.9900', '22.9900', '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 (18677, '2021-09-20', 7524, 18039, 1674, NULL, '1.0000', '11.9500', '11.9500', '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 (18678, '2021-09-20', 7675, 18040, 1674, NULL, '1.0000', '11.4300', '11.4300', '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 (18679, '2021-09-20', 2167, 18041, 1675, 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 (18680, '2021-09-20', 1314, 18042, 1675, 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 (18681, '2021-09-20', 9092, 18043, 1675, NULL, '1.0000', '5.2900', '5.2900', '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 (18682, '2021-09-20', 1665, 18044, 1675, 33349, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18683, '2021-09-20', 9482, 18045, 1675, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '111.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18684, '2021-09-20', 2506, 18046, 1675, 25024, '1.0000', '3.4900', '3.4900', '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 (18685, '2021-09-20', 9174, 18047, 1675, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18686, '2021-09-20', 1863, 18048, 1675, 34026, '2.0000', '1.4033', '1.4033', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18687, '2021-09-20', 2951, 18049, 1675, 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 (18688, '2021-09-20', 1912, 18050, 1675, NULL, '1.0000', '0.6591', '0.6591', '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 (18689, '2021-09-20', 7819, 18051, 1675, NULL, '1.0000', '9.5000', '9.5000', '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 (18690, '2021-09-20', 1727, 18052, 1675, NULL, '1.0000', '1.9500', '1.9500', '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 (18691, '2021-09-20', 2618, 18053, 1676, NULL, '1.0000', '4.1000', '4.1000', '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 (18692, '2021-09-20', 8668, 18054, 1676, NULL, '1.0000', '2.2000', '2.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 (18693, '2021-09-20', 1999, 18055, 1677, 22550, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '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 (18694, '2021-09-20', 7756, 18056, 1678, NULL, '1.0000', '21.7700', '21.7700', '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 (18695, '2021-09-20', 7560, 18057, 1678, NULL, '1.0000', '4.4500', '4.4500', '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 (18696, '2021-09-20', 9461, 18058, 1679, 33213, '1.0000', '1.6000', '1.6000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18697, '2021-09-20', 1602, 18059, 1679, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '29.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18698, '2021-09-20', 2317, 18060, 1679, 15799, '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 (18699, '2021-09-20', 8666, 18061, 1679, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18700, '2021-09-20', 1666, 18062, 1679, 33028, '1.0000', '114.1057', '114.1057', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18701, '2021-09-20', 1428, 18063, 1679, 31728, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18702, '2021-09-20', 2163, 18064, 1679, NULL, '1.0000', '16.3200', '16.3200', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18703, '2021-09-20', 2315, 18065, 1679, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '269.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18704, '2021-09-20', 1888, 18066, 1679, NULL, '1.0000', '-42.1250', '-42.1250', '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 (18705, '2021-09-20', 2109, 18067, 1679, 6021, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (18706, '2021-09-20', 1864, 18068, 1679, NULL, '1.0000', '5.9100', '5.9100', '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 (18707, '2021-09-20', 2315, 18069, 1679, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '269.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18708, '2021-09-20', 2916, 18070, 1679, 32030, '1.0000', '12.5089', '12.5089', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18709, '2021-09-20', 9490, 18071, 1679, 32632, '1.0000', '19.0000', '19.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18710, '2021-09-20', 2428, 18072, 1679, 21816, '1.0000', '11.0000', '11.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 (18711, '2021-09-20', 2119, 18073, 1679, 2639, '1.0000', '30.0000', '30.0000', '60.0000', '60.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 (18712, '2021-09-20', 1687, 18074, 1679, NULL, '1.0000', '15.3580', '15.3580', '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 (18713, '2021-09-20', 1675, 18075, 1679, 32018, '1.0000', '67.3570', '67.3570', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18714, '2021-09-20', 2315, 18076, 1679, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '269.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18715, '2021-09-20', 2169, 18077, 1679, 33220, '2.0000', '1.0100', '1.0100', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18716, '2021-09-20', 9089, 18078, 1679, NULL, '1.0000', '3.8000', '3.8000', '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 (18717, '2021-09-20', 1730, 18079, 1679, 34671, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18718, '2021-09-20', 1529, 18080, 1679, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.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 (18719, '2021-09-20', 2656, 18081, 1679, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18720, '2021-09-20', 2965, 18082, 1679, 21818, '1.0000', '5.0000', '5.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 (18721, '2021-09-20', 1592, 18083, 1679, 33226, '1.0000', '38.8597', '38.8597', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18722, '2021-09-20', 1658, 18084, 1679, 34675, '1.0000', '27.9300', '27.9300', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18723, '2021-09-20', 2669, 18085, 1679, 34423, '1.0000', '36.8723', '36.8723', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18724, '2021-09-20', 2858, 18086, 1679, 17780, '1.0000', '1.0000', '1.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 (18725, '2021-09-20', 7954, 18087, 1679, 33014, '1.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18726, '2021-09-20', 7728, 18088, 1679, NULL, '1.0000', '1.8000', '1.8000', '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 (18727, '2021-09-20', 2656, 18089, 1679, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18728, '2021-09-20', 1667, 18090, 1679, 34668, '1.0000', '70.3399', '70.3399', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18729, '2021-09-21', 7575, 18091, 1680, NULL, '1.0000', '28.3200', '28.3200', '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 (18730, '2021-09-21', 9496, 18092, 1680, 33078, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18731, '2021-09-21', 7575, 18093, 1681, NULL, '1.0000', '28.3200', '28.3200', '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 (18732, '2021-09-21', 1760, 18094, 1681, NULL, '1.0000', '1.5900', '1.5900', '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 (18733, '2021-09-21', 2916, 18095, 1681, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18734, '2021-09-21', 2712, 18096, 1681, 32557, '5.0000', '0.2600', '0.2600', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18735, '2021-09-21', 2699, 18097, 1681, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18736, '2021-09-21', 1523, 18098, 1681, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '8.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 (18737, '2021-09-21', 8594, 18099, 1681, 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 (18738, '2021-09-21', 2366, 18100, 1681, NULL, '1.0000', '3.7500', '3.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 (18739, '2021-09-21', 1884, 18101, 1681, NULL, '1.0000', '5.1300', '5.1300', '6.7700', '6.7700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18740, '2021-09-21', 1946, 18102, 1681, NULL, '1.0000', '1.5500', '1.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 (18741, '2021-09-21', 3017, 18103, 1681, 24959, '1.0000', '3.9000', '3.9000', '6.0000', '6.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 (18742, '2021-09-21', 1872, 18104, 1681, 34942, '1.0000', '8.1540', '8.1540', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18743, '2021-09-21', 1837, 18105, 1681, 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 (18744, '2021-09-21', 2272, 18106, 1681, 34959, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18745, '2021-09-21', 2167, 18107, 1681, 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 (18746, '2021-09-21', 2315, 18108, 1681, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18747, '2021-09-21', 2345, 18109, 1681, 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 (18748, '2021-09-21', 2609, 18110, 1681, 34938, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18749, '2021-09-21', 2221, 18111, 1681, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18750, '2021-09-21', 2232, 18112, 1681, 30661, '1.0000', '26.0880', '26.0880', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18751, '2021-09-21', 7860, 18113, 1681, NULL, '1.0000', '3.8500', '3.8500', '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 (18752, '2021-09-21', 8743, 18114, 1681, NULL, '1.0000', '8.5000', '8.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 (18753, '2021-09-21', 9470, 18115, 1681, NULL, '1.0000', '9.6000', '9.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 (18754, '2021-09-21', 1831, 18116, 1682, 22320, '2.0000', '8.4400', '8.4400', '11.5000', '11.5000', '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 (18755, '2021-09-21', 1760, 18117, 1682, 22256, '1.0000', '111.8384', '111.8384', '1.0000', '1.0000', '21.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 (18756, '2021-09-21', 2635, 18118, 1682, 10297, '-3.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 (18757, '2021-09-21', 2635, 18118, 1682, 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 (18758, '2021-09-21', 2242, 18119, 1682, 22259, '1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '27.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 (18759, '2021-09-21', 2512, 18120, 1682, 5912, '-1.0000', '20.0000', '20.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 (18760, '2021-09-21', 2512, 18120, 1682, NULL, '2.0000', '20.0000', '20.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 (18761, '2021-09-21', 1855, 18121, 1682, 22241, '2.0000', '1.4000', '1.4000', '2.0000', '2.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 (18762, '2021-09-21', 2315, 18122, 1682, 2735, '-85.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18763, '2021-09-21', 2315, 18122, 1682, NULL, '87.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18764, '2021-09-21', 1975, 18123, 1682, 33067, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18765, '2021-09-21', 9207, 18124, 1682, NULL, '3.0000', '4.6000', '4.6000', '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 (18766, '2021-09-21', 1845, 18125, 1682, 6222, '-3.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 (18767, '2021-09-21', 1845, 18125, 1682, NULL, '4.0000', '19.5000', '19.5000', '26.0000', '26.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 (18768, '2021-09-21', 2237, 18126, 1682, 2781, '-8.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 (18769, '2021-09-21', 2237, 18126, 1682, NULL, '9.0000', '1.0600', '1.0600', '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 (18770, '2021-09-21', 2408, 18127, 1682, 4497, '-1.0000', '9.3500', '9.3500', '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 (18771, '2021-09-21', 2408, 18127, 1682, NULL, '2.0000', '9.3500', '9.3500', '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 (18772, '2021-09-21', 2079, 18128, 1682, 228, '3.0000', '2.3000', '2.3000', '3.5000', '3.5000', '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 (18773, '2021-09-21', 1708, 18129, 1682, 10382, '-1.0000', '20.1900', '20.1900', '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 (18774, '2021-09-21', 1708, 18129, 1682, NULL, '2.0000', '20.1900', '20.1900', '28.0000', '28.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 (18775, '2021-09-21', 2242, 18130, 1682, 22259, '1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '27.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 (18776, '2021-09-21', 1707, 18131, 1682, NULL, '1.0000', '25.1200', '25.1200', '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 (18777, '2021-09-21', 2916, 18132, 1682, 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 (18778, '2021-09-21', 2233, 18133, 1682, 2777, '-4.0000', '19.0200', '19.0200', '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 (18779, '2021-09-21', 2233, 18133, 1682, NULL, '5.0000', '19.0200', '19.0200', '29.0000', '29.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 (18780, '2021-09-21', 9089, 18134, 1682, NULL, '2.0000', '3.8000', '3.8000', '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 (18781, '2021-09-21', 2669, 18135, 1682, 11757, '1.0000', '24.5336', '24.5336', '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 (18782, '2021-09-21', 1379, 18136, 1682, 18868, '1.0000', '85.2466', '85.2466', '110.0000', '110.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 (18783, '2021-09-21', 1672, 18137, 1682, 7384, '-14.0000', '2.8700', '2.8700', '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 (18784, '2021-09-21', 1672, 18137, 1682, NULL, '34.0000', '2.8700', '2.8700', '4.0000', '4.0000', '-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 (18785, '2021-09-21', 1863, 18138, 1682, 10808, '-10.0000', '0.4136', '0.4136', '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 (18786, '2021-09-21', 1863, 18138, 1682, NULL, '11.0000', '0.4136', '0.4136', '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 (18787, '2021-09-21', 2634, 18139, 1682, NULL, '2.0000', '12.0000', '12.0000', '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 (18788, '2021-09-21', 1884, 18140, 1682, NULL, '1.0000', '90.0000', '90.0000', '6.7700', '6.7700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18789, '2021-09-21', 1543, 18141, 1682, 11162, '1.0000', '18.0300', '18.0300', '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 (18790, '2021-09-21', 1523, 18142, 1682, NULL, '2.0000', '213.0405', '213.0405', '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 (18791, '2021-09-21', 2974, 18143, 1682, 22364, '-10.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 (18792, '2021-09-21', 2974, 18143, 1682, NULL, '11.0000', '5.0000', '5.0000', '8.0000', '8.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 (18793, '2021-09-21', 2010, 18144, 1682, 17832, '1.0000', '1.2500', '1.2500', '1.5800', '1.5800', '8.0000', 1, 0, NULL, 158);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18794, '2021-09-21', 1612, 18145, 1682, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '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 (18795, '2021-09-21', 1757, 18146, 1682, NULL, '1.0000', '4.4000', '4.4000', '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 (18796, '2021-09-21', 8518, 18147, 1682, NULL, '1.0000', '17.6400', '17.6400', '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 (18797, '2021-09-21', 1411, 18148, 1682, 33816, '2.0000', '25.9000', '25.9000', '34.0000', '34.0000', '7.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18798, '2021-09-21', 1418, 18149, 1682, 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 (18799, '2021-09-21', 2169, 18150, 1683, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18800, '2021-09-21', 8208, 18151, 1683, NULL, '1.0000', '33.0000', '33.0000', '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 (18801, '2021-09-21', 2135, 18152, 1683, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18802, '2021-09-21', 8666, 18153, 1683, NULL, '3.0000', '0.4600', '0.4600', '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 (18803, '2021-09-21', 2352, 18154, 1683, 33360, '1.0000', '59.2000', '59.2000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18804, '2021-09-21', 2352, 18154, 1683, NULL, '5.0000', '59.2000', '59.2000', '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 (18805, '2021-09-21', 2762, 18155, 1684, 20706, '1.0000', '7.1000', '7.1000', '9.5000', '9.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 (18806, '2021-09-21', 2665, 18156, 1685, NULL, '1.0000', '23.7600', '23.7600', '32.3000', '32.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 (18807, '2021-09-21', 8512, 18157, 1686, NULL, '4.0000', '4.0000', '4.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 (18808, '2021-09-21', 7641, 18158, 1686, NULL, '1.0000', '1.9000', '1.9000', '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 (18809, '2021-09-21', 7712, 18159, 1686, NULL, '1.0000', '0.3300', '0.3300', '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 (18810, '2021-09-21', 9269, 18160, 1686, 34548, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18811, '2021-09-21', 1574, 18161, 1686, 35185, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18812, '2021-09-21', 7496, 18162, 1686, NULL, '1.0000', '0.9600', '0.9600', '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 (18813, '2021-09-21', 9254, 18163, 1686, NULL, '1.0000', '20.0000', '20.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 (18814, '2021-09-21', 7411, 18164, 1686, NULL, '1.0000', '1.3500', '1.3500', '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 (18815, '2021-09-21', 7644, 18165, 1686, NULL, '5.0000', '7.9500', '7.9500', '15.0000', '15.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 (18816, '2021-09-21', 2699, 18166, 1686, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18817, '2021-09-21', 9275, 18167, 1686, NULL, '1.0000', '6.3000', '6.3000', '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 (18818, '2021-09-21', 9498, 18168, 1686, NULL, '1.0000', '12.5000', '12.5000', '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 (18819, '2021-09-21', 9095, 18169, 1686, NULL, '1.0000', '17.5000', '17.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 (18820, '2021-09-21', 7472, 18170, 1686, NULL, '1.0000', '4.1000', '4.1000', '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 (18821, '2021-09-21', 9084, 18171, 1686, 32133, '1.0000', '6.2167', '6.2167', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18822, '2021-09-21', 9084, 18171, 1686, NULL, '1.0000', '6.2167', '6.2167', '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 (18823, '2021-09-21', 7411, 18172, 1686, NULL, '2.0000', '1.3500', '1.3500', '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 (18824, '2021-09-21', 9266, 18173, 1686, 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 (18825, '2021-09-21', 7666, 18174, 1686, NULL, '1.0000', '10.0000', '10.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 (18826, '2021-09-21', 7819, 18175, 1686, NULL, '1.0000', '9.5000', '9.5000', '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 (18827, '2021-09-21', 7496, 18176, 1686, NULL, '1.0000', '0.9600', '0.9600', '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 (18828, '2021-09-21', 8730, 18177, 1686, NULL, '1.0000', '29.0000', '29.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 (18829, '2021-09-21', 9013, 18178, 1686, NULL, '1.0000', '18.0000', '18.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 (18830, '2021-09-21', 9182, 18179, 1686, NULL, '1.0000', '10.0000', '10.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 (18831, '2021-09-21', 9098, 18180, 1686, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18832, '2021-09-21', 8104, 18181, 1686, 30152, '30.0000', '1.6000', '1.6000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18833, '2021-09-21', 8454, 18182, 1686, NULL, '1.0000', '5.1700', '5.1700', '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 (18834, '2021-09-21', 7593, 18183, 1686, 34551, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18835, '2021-09-21', 8340, 18184, 1686, NULL, '5.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (18836, '2021-09-21', 7857, 18185, 1686, NULL, '1.0000', '12.2900', '12.2900', '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 (18837, '2021-09-21', 7948, 18186, 1686, NULL, '2.0000', '2.1000', '2.1000', '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 (18838, '2021-09-21', 8324, 18187, 1686, 31660, '2.0000', '3.4130', '3.4130', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18839, '2021-09-21', 7415, 18188, 1686, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18840, '2021-09-21', 8596, 18189, 1686, NULL, '1.0000', '17.0000', '17.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 (18841, '2021-09-21', 2167, 18190, 1687, 31978, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18842, '2021-09-21', 2546, 18191, 1687, 17849, '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 (18843, '2021-09-21', 1510, 18192, 1687, 29790, '1.0000', '29.8200', '29.8200', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18844, '2021-09-21', 2315, 18193, 1687, 3069, '4.0000', '0.3300', '0.3300', '0.5100', '0.5100', '261.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18845, '2021-09-21', 2068, 18194, 1687, 33034, '1.0000', '12.3192', '12.3192', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18846, '2021-09-21', 1831, 18195, 1687, 34412, '3.0000', '-4.2894', '-4.2894', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18847, '2021-09-21', 2712, 18196, 1687, 32596, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18848, '2021-09-21', 9089, 18197, 1687, NULL, '1.0000', '3.8000', '3.8000', '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 (18849, '2021-09-21', 1521, 18198, 1687, 31985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18850, '2021-09-21', 3068, 18199, 1687, 25041, '1.0000', '14.0000', '14.0000', '18.0000', '18.0000', '4.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 (18851, '2021-09-21', 2363, 18200, 1687, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18852, '2021-09-21', 1844, 18201, 1687, 4976, '2.0000', '1.5000', '1.5000', '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 (18853, '2021-09-21', 1921, 18202, 1687, 7111, '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 (18854, '2021-09-21', 3017, 18203, 1687, NULL, '1.0000', '3.9000', '3.9000', '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 (18855, '2021-09-21', 1757, 18204, 1687, 5005, '1.0000', '4.4000', '4.4000', '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 (18856, '2021-09-21', 2067, 18205, 1687, 5629, '1.0000', '4.0000', '4.0000', '6.4700', '6.4700', '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 (18857, '2021-09-21', 2411, 18206, 1687, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '12.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 (18858, '2021-09-21', 8608, 18207, 1687, NULL, '1.0000', '0.9000', '0.9000', '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 (18859, '2021-09-21', 1966, 18208, 1687, 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 (18860, '2021-09-21', 2955, 18209, 1687, 21542, '1.0000', '4.8000', '4.8000', '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 (18861, '2021-09-21', 2315, 18210, 1687, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '264.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18862, '2021-09-21', 1367, 18211, 1687, NULL, '14.0000', '4.9000', '4.9000', '7.0000', '7.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 (18863, '2021-09-21', 1561, 18212, 1687, 22223, '1.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 (18864, '2021-09-21', 1542, 18213, 1687, 16897, '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 (18865, '2021-09-21', 7408, 18214, 1687, NULL, '1.0000', '1.0000', '1.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 (18866, '2021-09-21', 2829, 18215, 1687, 24021, '1.0000', '25.2431', '25.2431', '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 (18867, '2021-09-21', 2270, 18216, 1687, 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 (18868, '2021-09-21', 8517, 18217, 1687, 31989, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18869, '2021-09-21', 3046, 18218, 1687, 24270, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '7.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 (18870, '2021-09-21', 7370, 18219, 1687, 34666, '1.0000', '12.1223', '12.1223', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18871, '2021-09-21', 1727, 18220, 1688, NULL, '1.0000', '1.9500', '1.9500', '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 (18872, '2021-09-21', 1381, 18221, 1688, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18873, '2021-09-21', 2609, 18222, 1688, 34938, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18874, '2021-09-21', 1519, 18223, 1688, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '34.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18875, '2021-09-21', 9482, 18224, 1688, 32547, '4.0000', '0.5000', '0.5000', '1.0000', '1.0000', '107.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18876, '2021-09-21', 1687, 18225, 1688, NULL, '1.0000', '12.0000', '12.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 (18877, '2021-09-21', 3058, 18226, 1688, 30677, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18878, '2021-09-21', 7780, 18227, 1688, NULL, '1.0000', '2.6000', '2.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 (18879, '2021-09-21', 2275, 18228, 1688, 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 (18880, '2021-09-21', 2169, 18229, 1688, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18881, '2021-09-21', 2167, 18230, 1688, 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 (18882, '2021-09-21', 1863, 18231, 1688, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18883, '2021-09-21', 1519, 18232, 1688, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '34.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18884, '2021-09-21', 7779, 18233, 1688, NULL, '1.0000', '0.6200', '0.6200', '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 (18885, '2021-09-21', 2320, 18234, 1688, 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 (18886, '2021-09-21', 2132, 18235, 1688, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '12.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 (18887, '2021-09-21', 8566, 18236, 1688, NULL, '1.0000', '2.5000', '2.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 (18888, '2021-09-21', 1303, 18237, 1688, 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 (18889, '2021-09-21', 1569, 18238, 1688, 23139, '1.0000', '14.2800', '14.2800', '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 (18890, '2021-09-21', 2656, 18239, 1688, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18891, '2021-09-21', 3041, 18240, 1688, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '17.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 (18892, '2021-09-21', 2252, 18241, 1688, 34647, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18893, '2021-09-21', 7639, 18242, 1688, 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 (18894, '2021-09-21', 2169, 18243, 1688, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18895, '2021-09-21', 2237, 18244, 1688, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18896, '2021-09-21', 2169, 18245, 1688, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18897, '2021-09-21', 2037, 18246, 1688, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '19.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 (18898, '2021-09-21', 7398, 18247, 1688, NULL, '1.0000', '18.5000', '18.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 (18899, '2021-09-21', 2169, 18248, 1688, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18900, '2021-09-21', 7917, 18249, 1688, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (18901, '2021-09-21', 2287, 18250, 1688, 29630, '3.0000', '1.1700', '1.1700', '3.0000', '3.0000', '94.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18902, '2021-09-21', 7550, 18251, 1688, NULL, '5.0000', '4.7300', '4.7300', '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 (18903, '2021-09-21', 8666, 18252, 1688, NULL, '1.0000', '0.4600', '0.4600', '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 (18904, '2021-09-21', 1812, 18253, 1688, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18905, '2021-09-21', 1863, 18254, 1688, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18906, '2021-09-21', 8774, 18255, 1688, NULL, '1.0000', '8.0000', '8.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 (18907, '2021-09-21', 7527, 18256, 1688, NULL, '1.0000', '0.8900', '0.8900', '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 (18908, '2021-09-21', 1837, 18257, 1688, 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 (18909, '2021-09-21', 1863, 18258, 1688, 34026, '4.0000', '1.4033', '1.4033', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18910, '2021-09-21', 7823, 18259, 1688, NULL, '1.0000', '11.3000', '11.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 (18911, '2021-09-21', 7398, 18260, 1688, NULL, '1.0000', '18.5000', '18.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 (18912, '2021-09-21', 7872, 18261, 1688, 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 (18913, '2021-09-21', 7558, 18262, 1688, NULL, '10.0000', '33.0200', '33.0200', '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 (18914, '2021-09-21', 7710, 18263, 1688, NULL, '2.0000', '26.0000', '26.0000', '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 (18915, '2021-09-21', 1863, 18264, 1688, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18916, '2021-09-21', 2375, 18265, 1689, NULL, '1.0000', '12.5000', '12.5000', '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 (18917, '2021-09-21', 1646, 18266, 1690, 32000, '1.0000', '4.6225', '4.6225', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18918, '2021-09-21', 8093, 18267, 1690, NULL, '1.0000', '8.7800', '8.7800', '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 (18919, '2021-09-21', 8328, 18268, 1690, NULL, '1.0000', '8.1000', '8.1000', '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 (18920, '2021-09-21', 2557, 18269, 1690, 12740, '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 (18921, '2021-09-21', 9089, 18270, 1690, NULL, '1.0000', '3.8000', '3.8000', '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 (18922, '2021-09-21', 2821, 18271, 1690, 33026, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18923, '2021-09-21', 9461, 18272, 1690, 33213, '1.0000', '1.6000', '1.6000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18924, '2021-09-21', 2411, 18273, 1690, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '11.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 (18925, '2021-09-21', 1430, 18274, 1690, 16276, '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 (18926, '2021-09-21', 1520, 18275, 1690, 11038, '1.0000', '1.4700', '1.4700', '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 (18927, '2021-09-21', 7911, 18276, 1690, NULL, '1.0000', '4.3700', '4.3700', '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 (18928, '2021-09-21', 2491, 18277, 1690, 34681, '1.0000', '13.2518', '13.2518', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18929, '2021-09-21', 2118, 18278, 1690, 2631, '2.0000', '8.5000', '8.5000', '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 (18930, '2021-09-21', 2403, 18279, 1690, 32886, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18931, '2021-09-21', 1812, 18280, 1690, 33219, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18932, '2021-09-21', 1888, 18281, 1690, NULL, '1.0000', '-42.1250', '-42.1250', '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 (18933, '2021-09-21', 9468, 18282, 1690, NULL, '1.0000', '17.5000', '17.5000', '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 (18934, '2021-09-21', 1665, 18283, 1691, 33349, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18935, '2021-09-21', 1387, 18284, 1691, 23677, '1.0000', '11.7000', '11.7000', '16.0000', '16.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 (18936, '2021-09-21', 2327, 18285, 1691, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '14.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 (18937, '2021-09-21', 2951, 18286, 1691, 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 (18938, '2021-09-21', 2854, 18287, 1691, NULL, '1.0000', '8.9500', '8.9500', '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 (18939, '2021-09-21', 1965, 18288, 1691, NULL, '1.0000', '17.2400', '17.2400', '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 (18940, '2021-09-21', 2169, 18289, 1691, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18941, '2021-09-21', 1771, 18290, 1691, 13766, '1.0000', '3.3900', '3.3900', '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 (18942, '2021-09-21', 1863, 18291, 1691, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18943, '2021-09-21', 1804, 18292, 1691, 34646, '1.0000', '3.8408', '3.8408', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18944, '2021-09-21', 1863, 18293, 1691, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18945, '2021-09-21', 2951, 18294, 1691, 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 (18946, '2021-09-21', 1700, 18295, 1691, 31963, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18947, '2021-09-21', 7524, 18296, 1691, NULL, '1.0000', '11.9500', '11.9500', '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 (18948, '2021-09-21', 3018, 18297, 1691, 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 (18949, '2021-09-21', 7411, 18298, 1691, NULL, '1.0000', '1.3500', '1.3500', '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 (18950, '2021-09-21', 7823, 18299, 1691, NULL, '2.0000', '11.3000', '11.3000', '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 (18951, '2021-09-21', 1402, 18300, 1691, 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 (18952, '2021-09-21', 1644, 18301, 1692, NULL, '1.0000', '90.0000', '90.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 (18953, '2021-09-21', 8548, 18302, 1692, NULL, '1.0000', '12.0000', '12.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 (18954, '2021-09-21', 8135, 18303, 1692, NULL, '1.0000', '13.9000', '13.9000', '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 (18955, '2021-09-21', 7483, 18304, 1692, NULL, '1.0000', '0.4200', '0.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 (18956, '2021-09-21', 7777, 18305, 1692, NULL, '1.0000', '9.5000', '9.5000', '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 (18957, '2021-09-21', 9143, 18306, 1692, NULL, '1.0000', '6.8900', '6.8900', '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 (18958, '2021-09-21', 3018, 18307, 1692, 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 (18959, '2021-09-21', 9505, 18308, 1692, 33532, '1.0000', '77.0000', '77.0000', '102.0000', '102.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18960, '2021-09-21', 8085, 18309, 1692, NULL, '3.0000', '14.0000', '14.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 (18961, '2021-09-21', 7708, 18310, 1692, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18962, '2021-09-21', 7641, 18311, 1692, NULL, '1.0000', '1.9000', '1.9000', '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 (18963, '2021-09-21', 7744, 18312, 1692, NULL, '1.0000', '1.9000', '1.9000', '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 (18964, '2021-09-21', 8054, 18313, 1692, NULL, '2.0000', '16.0000', '16.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 (18965, '2021-09-21', 7832, 18314, 1692, 31008, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18966, '2021-09-21', 7522, 18315, 1692, NULL, '1.0000', '5.2000', '5.2000', '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 (18967, '2021-09-21', 1596, 18316, 1692, 34556, '1.0000', '2.5700', '2.5700', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18968, '2021-09-21', 2060, 18317, 1692, 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 (18969, '2021-09-21', 2351, 18318, 1692, 30211, '1.0000', '17.7000', '17.7000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18970, '2021-09-21', 7782, 18319, 1692, NULL, '2.0000', '5.0000', '5.0000', '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 (18971, '2021-09-21', 7848, 18320, 1692, NULL, '1.0000', '1.3500', '1.3500', '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 (18972, '2021-09-21', 7353, 18321, 1692, 30931, '3.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18973, '2021-09-21', 2943, 18322, 1692, 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 (18974, '2021-09-21', 9320, 18323, 1692, 32928, '1.0000', '9.2200', '9.2200', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18975, '2021-09-21', 9401, 18324, 1692, NULL, '1.0000', '3.5000', '3.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 (18976, '2021-09-21', 1854, 18325, 1692, 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 (18977, '2021-09-21', 9328, 18326, 1692, NULL, '1.0000', '7.9000', '7.9000', '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 (18978, '2021-09-21', 9160, 18327, 1692, NULL, '1.0000', '15.0000', '15.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 (18979, '2021-09-21', 1577, 18328, 1692, 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 (18980, '2021-09-21', 9160, 18329, 1692, NULL, '1.0000', '15.0000', '15.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 (18981, '2021-09-21', 8429, 18330, 1692, NULL, '1.0000', '16.0000', '16.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 (18982, '2021-09-21', 2251, 18331, 1692, 35243, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18983, '2021-09-21', 7911, 18332, 1692, NULL, '1.0000', '4.3700', '4.3700', '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 (18984, '2021-09-21', 1647, 18333, 1692, 35222, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18985, '2021-09-21', 7781, 18334, 1692, NULL, '3.0000', '4.2500', '4.2500', '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 (18986, '2021-09-21', 9412, 18335, 1692, NULL, '1.0000', '33.4700', '33.4700', '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 (18987, '2021-09-21', 7518, 18336, 1692, NULL, '1.0000', '-21.7700', '-21.7700', '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 (18988, '2021-09-21', 7702, 18337, 1692, NULL, '1.0000', '0.4600', '0.4600', '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 (18989, '2021-09-21', 7411, 18338, 1692, NULL, '1.0000', '1.3500', '1.3500', '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 (18990, '2021-09-21', 2251, 18339, 1692, 35243, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18991, '2021-09-21', 9329, 18340, 1692, NULL, '1.0000', '5.8000', '5.8000', '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 (18992, '2021-09-21', 7879, 18341, 1692, NULL, '10.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (18993, '2021-09-21', 9463, 18342, 1692, 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 (18994, '2021-09-21', 8878, 18343, 1692, NULL, '1.0000', '6.6700', '6.6700', '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 (18995, '2021-09-21', 8598, 18344, 1692, NULL, '1.0000', '4.8000', '4.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 (18996, '2021-09-21', 8965, 18345, 1692, NULL, '2.0000', '52.9900', '52.9900', '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 (18997, '2021-09-21', 8015, 18346, 1692, 34511, '7.0000', '4.1466', '4.1466', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (18998, '2021-09-21', 8718, 18347, 1692, NULL, '2.0000', '7.6800', '7.6800', '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 (18999, '2021-09-21', 7802, 18348, 1692, NULL, '3.0000', '0.9200', '0.9200', '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 (19000, '2021-09-21', 1965, 18349, 1692, NULL, '1.0000', '17.2400', '17.2400', '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 (19001, '2021-09-21', 7762, 18350, 1692, NULL, '1.0000', '5.1000', '5.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 (19002, '2021-09-21', 7666, 18351, 1692, NULL, '1.0000', '10.0000', '10.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 (19003, '2021-09-21', 9456, 18352, 1692, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19004, '2021-09-21', 8135, 18353, 1692, NULL, '1.0000', '13.9000', '13.9000', '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 (19005, '2021-09-21', 9329, 18354, 1692, NULL, '1.0000', '5.8000', '5.8000', '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 (19006, '2021-09-21', 1596, 18355, 1692, 34556, '1.0000', '2.5700', '2.5700', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19007, '2021-09-21', 7514, 18356, 1692, NULL, '1.0000', '7.8800', '7.8800', '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 (19008, '2021-09-21', 9007, 18357, 1692, NULL, '1.0000', '22.2000', '22.2000', '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 (19009, '2021-09-21', 7518, 18358, 1692, NULL, '1.0000', '-21.7700', '-21.7700', '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 (19010, '2021-09-21', 7780, 18359, 1693, NULL, '1.0000', '2.6000', '2.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 (19011, '2021-09-21', 2169, 18360, 1693, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19012, '2021-09-21', 2118, 18361, 1694, 2631, '1.0000', '8.5000', '8.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 (19013, '2021-09-21', 1689, 18362, 1694, 33222, '1.0000', '12.6598', '12.6598', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19014, '2021-09-21', 1855, 18363, 1694, 4986, '1.0000', '1.4000', '1.4000', '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 (19015, '2021-09-21', 7506, 18364, 1694, NULL, '1.0000', '15.0000', '15.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 (19016, '2021-09-21', 1602, 18365, 1694, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '28.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19017, '2021-09-21', 2353, 18366, 1694, 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 (19018, '2021-09-21', 2073, 18367, 1694, 31995, '2.0000', '2.3000', '2.3000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19019, '2021-09-21', 1867, 18368, 1694, NULL, '1.0000', '10.0599', '10.0599', '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 (19020, '2021-09-21', 1863, 18369, 1694, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19021, '2021-09-22', 2259, 18370, 1695, 23136, '1.0000', '20.0000', '20.0000', '28.0000', '28.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 (19022, '2021-09-22', 2260, 18371, 1695, 23137, '2.0000', '4.2000', '4.2000', '6.0000', '6.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 (19023, '2021-09-22', 2916, 18372, 1695, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19024, '2021-09-22', 2068, 18373, 1695, 34568, '1.0000', '13.2503', '13.2503', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19025, '2021-09-22', 1519, 18374, 1695, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '32.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19026, '2021-09-22', 1413, 18375, 1695, 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 (19027, '2021-09-22', 1912, 18376, 1695, NULL, '1.0000', '0.6591', '0.6591', '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 (19028, '2021-09-22', 1665, 18377, 1695, 33349, '5.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19029, '2021-09-22', 1728, 18378, 1695, 19324, '8.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 (19030, '2021-09-22', 2169, 18379, 1695, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19031, '2021-09-22', 1910, 18380, 1695, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (19032, '2021-09-22', 1519, 18381, 1695, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '32.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19033, '2021-09-22', 2662, 18382, 1695, 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 (19034, '2021-09-22', 1413, 18383, 1695, 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 (19035, '2021-09-22', 2263, 18384, 1695, 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 (19036, '2021-09-22', 2272, 18385, 1695, 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 (19037, '2021-09-22', 1808, 18386, 1695, 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 (19038, '2021-09-22', 8168, 18387, 1695, NULL, '3.0000', '5.2500', '5.2500', '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 (19039, '2021-09-22', 2104, 18388, 1695, 22380, '1.0000', '0.2000', '0.2000', '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 (19040, '2021-09-22', 2681, 18389, 1695, 24201, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '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 (19041, '2021-09-22', 8060, 18390, 1696, NULL, '2.0000', '2.2000', '2.2000', '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 (19042, '2021-09-22', 2567, 18391, 1696, 22515, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '4.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 (19043, '2021-09-22', 1606, 18392, 1696, 34605, '10.0000', '4.9200', '4.9200', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19044, '2021-09-22', 2275, 18393, 1697, 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 (19045, '2021-09-22', 1523, 18394, 1698, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '7.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 (19046, '2021-09-22', 1646, 18395, 1698, 30659, '1.0000', '4.5256', '4.5256', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19047, '2021-09-22', 3017, 18396, 1698, 24959, '1.0000', '3.9000', '3.9000', '6.0000', '6.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 (19048, '2021-09-22', 8361, 18397, 1699, NULL, '1.0000', '4.5800', '4.5800', '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 (19049, '2021-09-22', 1845, 18398, 1700, 6222, '-4.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 (19050, '2021-09-22', 1845, 18398, 1700, NULL, '5.0000', '19.5000', '19.5000', '26.0000', '26.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 (19051, '2021-09-22', 2109, 18399, 1700, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '140.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 (19052, '2021-09-22', 1528, 18400, 1700, 18895, '1.0000', '38.6400', '38.6400', '6.0000', '6.0000', '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 (19053, '2021-09-22', 2876, 18401, 1700, 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 (19054, '2021-09-22', 2250, 18402, 1700, 2787, '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 (19055, '2021-09-22', 1494, 18403, 1700, 97, '1.0000', '11.9056', '11.9056', '6.5000', '6.5000', '3.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 (19056, '2021-09-22', 2168, 18404, 1700, 1381, '1.0000', '27.2228', '27.2228', '39.0000', '39.0000', '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 (19057, '2021-09-22', 1369, 18405, 1700, 269, '1.0000', '2.2209', '2.2209', '8.0000', '8.0000', '0.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 (19058, '2021-09-22', 1430, 18406, 1700, 22347, '1.0000', '13.0000', '13.0000', '18.0000', '18.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 (19059, '2021-09-22', 1386, 18407, 1700, 22316, '1.0000', '4.5000', '4.5000', '6.0000', '6.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 (19060, '2021-09-22', 1333, 18408, 1700, 229, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '10.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 (19061, '2021-09-22', 2233, 18409, 1700, 2777, '-5.0000', '19.0200', '19.0200', '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 (19062, '2021-09-22', 2233, 18409, 1700, NULL, '6.0000', '19.0200', '19.0200', '29.0000', '29.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 (19063, '2021-09-22', 1637, 18410, 1700, 13466, '1.0000', '10.2000', '10.2000', '14.0000', '14.0000', '4.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 (19064, '2021-09-22', 1824, 18411, 1700, NULL, '1.0000', '5.2000', '5.2000', '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 (19065, '2021-09-22', 2916, 18412, 1700, 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 (19066, '2021-09-22', 2315, 18413, 1700, 2735, '-87.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19067, '2021-09-22', 2315, 18413, 1700, NULL, '88.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19068, '2021-09-22', 2699, 18414, 1700, 12529, '-11.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 (19069, '2021-09-22', 2699, 18414, 1700, NULL, '12.0000', '3.0000', '3.0000', '4.5000', '4.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 (19070, '2021-09-22', 9308, 18415, 1701, NULL, '1.0000', '9.0000', '9.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 (19071, '2021-09-22', 7641, 18416, 1701, NULL, '1.0000', '1.9000', '1.9000', '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 (19072, '2021-09-22', 8925, 18417, 1701, NULL, '1.0000', '2.4000', '2.4000', '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 (19073, '2021-09-22', 8664, 18418, 1701, NULL, '1.0000', '0.3500', '0.3500', '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 (19074, '2021-09-22', 1339, 18419, 1701, 34539, '2.0000', '2.1251', '2.1251', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19075, '2021-09-22', 7776, 18420, 1701, NULL, '1.0000', '8.0000', '8.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 (19076, '2021-09-22', 2297, 18421, 1701, 31019, '1.0000', '7.2000', '7.2000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19077, '2021-09-22', 7685, 18422, 1701, NULL, '1.0000', '31.2000', '31.2000', '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 (19078, '2021-09-22', 7913, 18423, 1701, NULL, '2.0000', '2.5500', '2.5500', '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 (19079, '2021-09-22', 2635, 18424, 1701, 32793, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19080, '2021-09-22', 9393, 18425, 1701, NULL, '1.0000', '15.0000', '15.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 (19081, '2021-09-22', 7724, 18426, 1701, NULL, '2.0000', '0.0000', '0.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 (19082, '2021-09-22', 8763, 18427, 1701, 32138, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19083, '2021-09-22', 7431, 18428, 1701, 34498, '1.0000', '-2.1674', '-2.1674', '24.0000', '24.0000', '8.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19084, '2021-09-22', 7612, 18429, 1701, NULL, '2.0000', '46.0000', '46.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 (19085, '2021-09-22', 7558, 18430, 1701, NULL, '20.0000', '1.9700', '1.9700', '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 (19086, '2021-09-22', 9391, 18431, 1701, NULL, '1.0000', '3.0000', '3.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 (19087, '2021-09-22', 9505, 18432, 1701, 33532, '1.0000', '77.0000', '77.0000', '102.0000', '102.0000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19088, '2021-09-22', 9252, 18433, 1701, NULL, '2.0000', '11.8200', '11.8200', '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 (19089, '2021-09-22', 8845, 18434, 1701, NULL, '1.0000', '40.2500', '40.2500', '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 (19090, '2021-09-22', 2699, 18435, 1701, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19091, '2021-09-22', 7447, 18436, 1701, NULL, '8.0000', '19.1100', '19.1100', '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 (19092, '2021-09-22', 8735, 18437, 1701, NULL, '1.0000', '5.6000', '5.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 (19093, '2021-09-22', 8715, 18438, 1701, NULL, '1.0000', '3.3000', '3.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 (19094, '2021-09-22', 8037, 18439, 1701, 34506, '1.0000', '42.1136', '42.1136', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19095, '2021-09-22', 8328, 18440, 1701, 33717, '1.0000', '8.0882', '8.0882', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19096, '2021-09-22', 7774, 18441, 1701, NULL, '1.0000', '3.5000', '3.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 (19097, '2021-09-22', 2148, 18442, 1701, NULL, '1.0000', '35.0000', '35.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 (19098, '2021-09-22', 7887, 18443, 1701, NULL, '1.0000', '1.2000', '1.2000', '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 (19099, '2021-09-22', 8434, 18444, 1701, NULL, '1.0000', '27.4000', '27.4000', '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 (19100, '2021-09-22', 9092, 18445, 1701, NULL, '3.0000', '5.2900', '5.2900', '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 (19101, '2021-09-22', 1577, 18446, 1701, 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 (19102, '2021-09-22', 2284, 18447, 1701, 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 (19103, '2021-09-22', 1501, 18448, 1701, 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 (19104, '2021-09-22', 7411, 18449, 1701, NULL, '2.0000', '1.3500', '1.3500', '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 (19105, '2021-09-22', 7527, 18450, 1701, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19106, '2021-09-22', 1837, 18451, 1701, 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 (19107, '2021-09-22', 2656, 18452, 1701, 34563, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19108, '2021-09-22', 1736, 18453, 1701, NULL, '4.0000', '26.7000', '26.7000', '39.0000', '39.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 (19109, '2021-09-22', 1824, 18454, 1702, NULL, '1.0000', '5.2000', '5.2000', '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 (19110, '2021-09-22', 1550, 18455, 1702, NULL, '1.0000', '13.9000', '13.9000', '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 (19111, '2021-09-22', 2660, 18456, 1702, 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 (19112, '2021-09-22', 1602, 18457, 1702, 5897, '-1.0000', '6.7859', '6.7859', '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 (19113, '2021-09-22', 1602, 18457, 1702, NULL, '2.0000', '6.7859', '6.7859', '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 (19114, '2021-09-22', 1812, 18458, 1702, 8224, '-7.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 (19115, '2021-09-22', 1812, 18458, 1702, NULL, '8.0000', '7.8900', '7.8900', '10.5000', '10.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 (19116, '2021-09-22', 1824, 18459, 1703, NULL, '1.0000', '5.2000', '5.2000', '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 (19117, '2021-09-22', 1550, 18460, 1703, NULL, '1.0000', '13.9000', '13.9000', '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 (19118, '2021-09-22', 2660, 18461, 1703, 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 (19119, '2021-09-22', 1602, 18462, 1703, 5897, '-1.0000', '6.7859', '6.7859', '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 (19120, '2021-09-22', 1602, 18462, 1703, NULL, '2.0000', '6.7859', '6.7859', '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 (19121, '2021-09-22', 1812, 18463, 1703, 8224, '-7.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 (19122, '2021-09-22', 1812, 18463, 1703, NULL, '8.0000', '7.8900', '7.8900', '10.5000', '10.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 (19123, '2021-09-22', 9453, 18464, 1704, 31013, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19124, '2021-09-22', 7652, 18465, 1704, NULL, '3.0000', '40.3000', '40.3000', '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 (19125, '2021-09-22', 7727, 18466, 1704, NULL, '1.0000', '0.9000', '0.9000', '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 (19126, '2021-09-22', 7381, 18467, 1705, 30013, '1.0000', '55.2100', '55.2100', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19127, '2021-09-22', 8263, 18468, 1705, NULL, '1.0000', '5.0000', '5.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 (19128, '2021-09-22', 1763, 18469, 1706, 19383, '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 (19129, '2021-09-22', 7411, 18470, 1706, NULL, '1.0000', '1.3500', '1.3500', '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 (19130, '2021-09-22', 9485, 18471, 1706, 32550, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19131, '2021-09-22', 9399, 18472, 1706, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19132, '2021-09-22', 2985, 18473, 1706, 22600, '1.0000', '28.1000', '28.1000', '37.0000', '37.0000', '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 (19133, '2021-09-22', 2237, 18474, 1706, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19134, '2021-09-22', 1435, 18475, 1706, NULL, '1.0000', '24.5000', '24.5000', '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 (19135, '2021-09-22', 2951, 18476, 1706, 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 (19136, '2021-09-22', 2250, 18477, 1706, 33356, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19137, '2021-09-22', 2344, 18478, 1707, 24926, '1.0000', '19.8200', '19.8200', '26.5000', '26.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 (19138, '2021-09-22', 2924, 18479, 1707, 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 (19139, '2021-09-22', 3018, 18480, 1707, 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 (19140, '2021-09-22', 1592, 18481, 1708, 33818, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19141, '2021-09-22', 1439, 18482, 1709, 3279, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '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 (19142, '2021-09-22', 1976, 18483, 1709, 27325, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19143, '2021-09-22', 1986, 18484, 1709, 6457, '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 (19144, '2021-09-22', 1602, 18485, 1709, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '27.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19145, '2021-09-22', 7671, 18486, 1709, NULL, '2.0000', '15.5000', '15.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 (19146, '2021-09-22', 2712, 18487, 1709, 32596, '5.0000', '0.2600', '0.2600', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19147, '2021-09-22', 2167, 18488, 1709, 31978, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19148, '2021-09-22', 2261, 18489, 1709, 31715, '1.0000', '18.9900', '18.9900', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19149, '2021-09-22', 1863, 18490, 1709, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19150, '2021-09-22', 1523, 18491, 1709, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '22.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 (19151, '2021-09-22', 1840, 18492, 1709, 4973, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19152, '2021-09-22', 1841, 18493, 1709, 24123, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '14.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 (19153, '2021-09-22', 8743, 18494, 1709, NULL, '1.0000', '8.5000', '8.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 (19154, '2021-09-22', 9475, 18495, 1709, 32212, '1.0000', '24.0000', '24.0000', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19155, '2021-09-22', 2320, 18496, 1709, 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 (19156, '2021-09-22', 2441, 18497, 1709, 5826, '2.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 (19157, '2021-09-22', 2036, 18498, 1709, 4401, '1.0000', '8.0000', '8.0000', '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 (19158, '2021-09-22', 2127, 18499, 1709, 2648, '1.0000', '10.0000', '10.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 (19159, '2021-09-22', 1863, 18500, 1709, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19160, '2021-09-22', 2237, 18501, 1709, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '13.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 (19161, '2021-09-22', 2645, 18502, 1709, 32622, '1.0000', '21.0000', '21.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19162, '2021-09-22', 1960, 18503, 1709, 4925, '1.0000', '3.5600', '3.5600', '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 (19163, '2021-09-22', 1621, 18504, 1709, 33211, '1.0000', '55.5718', '55.5718', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19164, '2021-09-22', 1935, 18505, 1709, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19165, '2021-09-22', 2025, 18506, 1709, 6425, '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 (19166, '2021-09-22', 1689, 18507, 1709, 33222, '1.0000', '12.6598', '12.6598', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19167, '2021-09-22', 1529, 18508, 1709, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.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 (19168, '2021-09-22', 2916, 18509, 1709, 32030, '1.0000', '12.5089', '12.5089', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19169, '2021-09-22', 1592, 18510, 1709, 33226, '1.0000', '38.8597', '38.8597', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19170, '2021-09-22', 1519, 18511, 1709, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '13.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 (19171, '2021-09-22', 1810, 18512, 1710, NULL, '1.0000', '8.6700', '8.6700', '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 (19172, '2021-09-22', 1863, 18513, 1710, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19173, '2021-09-22', 1619, 18514, 1710, 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 (19174, '2021-09-22', 7411, 18515, 1710, NULL, '2.0000', '1.3500', '1.3500', '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 (19175, '2021-09-22', 8046, 18516, 1710, NULL, '10.0000', '39.0000', '39.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 (19176, '2021-09-22', 2250, 18517, 1710, 33356, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19177, '2021-09-22', 7672, 18518, 1710, NULL, '1.0000', '1.0200', '1.0200', '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 (19178, '2021-09-22', 2277, 18519, 1710, 34655, '2.0000', '0.8982', '0.8982', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19179, '2021-09-22', 2951, 18520, 1711, 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 (19180, '2021-09-22', 7411, 18521, 1711, NULL, '1.0000', '1.3500', '1.3500', '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 (19181, '2021-09-22', 3018, 18522, 1711, 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 (19182, '2021-09-22', 2242, 18523, 1712, NULL, '2.0000', '0.6028', '0.6028', '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 (19183, '2021-09-22', 2237, 18524, 1712, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19184, '2021-09-22', 7778, 18525, 1712, NULL, '1.0000', '13.0100', '13.0100', '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 (19185, '2021-09-22', 1519, 18526, 1712, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '30.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19186, '2021-09-22', 2393, 18527, 1712, 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 (19187, '2021-09-22', 7958, 18528, 1713, NULL, '1.0000', '13.0000', '13.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 (19188, '2021-09-22', 7412, 18529, 1714, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19189, '2021-09-22', 2069, 18530, 1714, NULL, '2.0000', '2.0400', '2.0400', '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 (19190, '2021-09-22', 1916, 18531, 1714, 30921, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19191, '2021-09-22', 7652, 18532, 1714, NULL, '5.0000', '40.3000', '40.3000', '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 (19192, '2021-09-22', 8263, 18533, 1714, NULL, '1.0000', '5.0000', '5.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 (19193, '2021-09-22', 7381, 18534, 1714, 30013, '1.0000', '55.2100', '55.2100', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19194, '2021-09-22', 9098, 18535, 1714, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19195, '2021-09-22', 8450, 18536, 1714, 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 (19196, '2021-09-22', 7590, 18537, 1714, NULL, '1.0000', '4.3600', '4.3600', '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 (19197, '2021-09-22', 1947, 18538, 1714, 34552, '1.0000', '-2021.4409', '-2021.4409', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19198, '2021-09-22', 7753, 18539, 1714, NULL, '1.0000', '3.1400', '3.1400', '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 (19199, '2021-09-22', 8074, 18540, 1714, NULL, '1.0000', '20.0000', '20.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 (19200, '2021-09-22', 7708, 18541, 1714, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19201, '2021-09-22', 7591, 18542, 1714, NULL, '2.0000', '2.7500', '2.7500', '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 (19202, '2021-09-22', 7514, 18543, 1714, NULL, '3.0000', '7.8800', '7.8800', '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 (19203, '2021-09-22', 2060, 18544, 1714, 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 (19204, '2021-09-22', 1338, 18545, 1714, 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 (19205, '2021-09-22', 2283, 18546, 1714, 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 (19206, '2021-09-22', 9092, 18547, 1714, NULL, '2.0000', '5.2900', '5.2900', '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 (19207, '2021-09-22', 8038, 18548, 1714, NULL, '1.0000', '10.0000', '10.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 (19208, '2021-09-22', 8015, 18549, 1714, NULL, '2.0000', '4.1466', '4.1466', '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 (19209, '2021-09-22', 8135, 18550, 1714, NULL, '1.0000', '13.9000', '13.9000', '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 (19210, '2021-09-22', 9400, 18551, 1714, NULL, '2.0000', '0.5000', '0.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 (19211, '2021-09-22', 8101, 18552, 1714, NULL, '3.0000', '21.7000', '21.7000', '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 (19212, '2021-09-22', 7411, 18553, 1714, NULL, '2.0000', '1.3500', '1.3500', '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 (19213, '2021-09-22', 8308, 18554, 1714, NULL, '1.0000', '11.0000', '11.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 (19214, '2021-09-22', 7980, 18555, 1714, NULL, '3.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (19215, '2021-09-22', 1854, 18556, 1714, NULL, '2.0000', '2.5000', '2.5000', '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 (19216, '2021-09-22', 7703, 18557, 1714, NULL, '2.0000', '22.9900', '22.9900', '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 (19217, '2021-09-22', 1771, 18558, 1714, 35186, '1.0000', '12.4894', '12.4894', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19218, '2021-09-22', 2277, 18559, 1714, NULL, '1.0000', '0.7800', '0.7800', '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 (19219, '2021-09-22', 7411, 18560, 1714, NULL, '1.0000', '1.3500', '1.3500', '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 (19220, '2021-09-22', 7507, 18561, 1714, NULL, '3.0000', '6.5000', '6.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 (19221, '2021-09-22', 9300, 18562, 1714, NULL, '1.0000', '12.0000', '12.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 (19222, '2021-09-22', 8037, 18563, 1714, 34506, '1.0000', '42.1136', '42.1136', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19223, '2021-09-22', 7674, 18564, 1714, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '240.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19224, '2021-09-22', 7524, 18565, 1714, NULL, '2.0000', '11.9500', '11.9500', '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 (19225, '2021-09-22', 8752, 18566, 1714, NULL, '1.0000', '4.2000', '4.2000', '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 (19226, '2021-09-22', 9290, 18567, 1714, NULL, '1.0000', '38.5000', '38.5000', '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 (19227, '2021-09-22', 8007, 18568, 1714, NULL, '1.0000', '8.2000', '8.2000', '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 (19228, '2021-09-22', 7954, 18569, 1714, NULL, '2.0000', '21.0000', '21.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 (19229, '2021-09-22', 2414, 18570, 1714, NULL, '2.0000', '3.4000', '3.4000', '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 (19230, '2021-09-22', 7750, 18571, 1714, 30162, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19231, '2021-09-22', 7671, 18572, 1714, NULL, '3.0000', '15.5000', '15.5000', '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 (19232, '2021-09-22', 2713, 18573, 1714, 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 (19233, '2021-09-22', 7672, 18574, 1714, NULL, '2.0000', '1.0200', '1.0200', '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 (19234, '2021-09-22', 8775, 18575, 1714, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19235, '2021-09-22', 2964, 18576, 1714, 32151, '1.0000', '5.8000', '5.8000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19236, '2021-09-22', 7652, 18577, 1714, NULL, '9.0000', '40.3000', '40.3000', '1.2000', '1.2000', '-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 (19237, '2021-09-22', 2287, 18578, 1714, NULL, '4.0000', '2.3000', '2.3000', '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 (19238, '2021-09-22', 9380, 18579, 1714, 35203, '1.0000', '22.3200', '22.3200', '29.5000', '29.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19239, '2021-09-22', 7674, 18580, 1714, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '240.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19240, '2021-09-22', 7674, 18581, 1714, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '240.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19241, '2021-09-22', 8963, 18582, 1714, 35219, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19242, '2021-09-22', 7674, 18583, 1714, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '240.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19243, '2021-09-22', 7672, 18584, 1714, NULL, '1.0000', '1.0200', '1.0200', '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 (19244, '2021-09-22', 7411, 18585, 1714, NULL, '1.0000', '1.3500', '1.3500', '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 (19245, '2021-09-22', 2545, 18586, 1714, 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 (19246, '2021-09-22', 8746, 18587, 1714, 32134, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19247, '2021-09-22', 2060, 18588, 1714, NULL, '5.0000', '0.3300', '0.3300', '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 (19248, '2021-09-22', 7917, 18589, 1714, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (19249, '2021-09-22', 7412, 18590, 1714, 30160, '2.0000', '1.5200', '1.5200', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19250, '2021-09-22', 2545, 18591, 1714, 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 (19251, '2021-09-22', 1340, 18592, 1714, 34540, '1.0000', '2.7422', '2.7422', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19252, '2021-09-22', 7604, 18593, 1714, NULL, '1.0000', '4.3900', '4.3900', '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 (19253, '2021-09-22', 7590, 18594, 1714, NULL, '1.0000', '4.3600', '4.3600', '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 (19254, '2021-09-22', 7857, 18595, 1714, NULL, '1.0000', '12.2900', '12.2900', '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 (19255, '2021-09-22', 7641, 18596, 1714, NULL, '1.0000', '1.9000', '1.9000', '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 (19256, '2021-09-22', 8034, 18597, 1714, NULL, '1.0000', '4.8900', '4.8900', '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 (19257, '2021-09-22', 2359, 18598, 1715, 32813, '2.0000', '9.7320', '9.7320', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19258, '2021-09-22', 1666, 18599, 1715, 33028, '1.0000', '114.1057', '114.1057', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19259, '2021-09-22', 2334, 18600, 1715, 33007, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19260, '2021-09-22', 2414, 18601, 1715, 4826, '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 (19261, '2021-09-22', 2656, 18602, 1715, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19262, '2021-09-22', 2169, 18603, 1715, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19263, '2021-09-22', 1519, 18604, 1715, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '12.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 (19264, '2021-09-22', 2452, 18605, 1715, 11137, '1.0000', '2.5000', '2.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 (19265, '2021-09-22', 9010, 18606, 1715, NULL, '1.0000', '0.7500', '0.7500', '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 (19266, '2021-09-22', 1863, 18607, 1715, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19267, '2021-09-22', 2627, 18608, 1715, 10219, '1.0000', '10.5000', '10.5000', '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 (19268, '2021-09-22', 1665, 18609, 1715, 34667, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19269, '2021-09-22', 1665, 18610, 1715, 34667, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19270, '2021-09-22', 7559, 18611, 1715, NULL, '2.0000', '6.0000', '6.0000', '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 (19271, '2021-09-22', 2643, 18612, 1715, 10577, '1.0000', '0.8700', '0.8700', '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 (19272, '2021-09-22', 1644, 18613, 1715, 25035, '1.0000', '94.4888', '94.4888', '45.0000', '45.0000', '0.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 (19273, '2021-09-22', 1363, 18614, 1715, 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 (19274, '2021-09-22', 2359, 18615, 1716, 3873, '1.0000', '9.7320', '9.7320', '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 (19275, '2021-09-22', 2359, 18615, 1716, NULL, '1.0000', '9.7320', '9.7320', '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 (19276, '2021-09-22', 1666, 18616, 1716, 33028, '1.0000', '114.1057', '114.1057', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19277, '2021-09-22', 2334, 18617, 1716, 33007, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19278, '2021-09-22', 2414, 18618, 1716, 4826, '2.0000', '3.4000', '3.4000', '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 (19279, '2021-09-22', 2656, 18619, 1716, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19280, '2021-09-22', 2169, 18620, 1716, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19281, '2021-09-22', 1519, 18621, 1716, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '11.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 (19282, '2021-09-22', 2452, 18622, 1716, 5372, '1.0000', '2.5000', '2.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 (19283, '2021-09-22', 9010, 18623, 1716, NULL, '1.0000', '0.7500', '0.7500', '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 (19284, '2021-09-22', 1863, 18624, 1716, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19285, '2021-09-22', 2627, 18625, 1716, 10219, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19286, '2021-09-22', 1665, 18626, 1716, 34667, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19287, '2021-09-22', 1665, 18627, 1716, 34667, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19288, '2021-09-22', 7559, 18628, 1716, NULL, '2.0000', '6.0000', '6.0000', '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 (19289, '2021-09-22', 2643, 18629, 1716, 10577, '1.0000', '0.8700', '0.8700', '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 (19290, '2021-09-22', 1644, 18630, 1716, 14596, '1.0000', '94.4888', '94.4888', '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 (19291, '2021-09-22', 1363, 18631, 1716, 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 (19292, '2021-09-23', 1665, 18632, 1717, 33349, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19293, '2021-09-23', 1430, 18633, 1717, NULL, '2.0000', '13.0000', '13.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 (19294, '2021-09-23', 7814, 18634, 1717, NULL, '1.0000', '18.5000', '18.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 (19295, '2021-09-23', 1303, 18635, 1717, 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 (19296, '2021-09-23', 2951, 18636, 1717, 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 (19297, '2021-09-23', 1381, 18637, 1717, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19298, '2021-09-23', 2169, 18638, 1717, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19299, '2021-09-23', 1839, 18639, 1717, 33365, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19300, '2021-09-23', 1621, 18640, 1717, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (19301, '2021-09-23', 2829, 18641, 1717, NULL, '1.0000', '24.7175', '24.7175', '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 (19302, '2021-09-23', 1863, 18642, 1717, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19303, '2021-09-23', 2169, 18643, 1717, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19304, '2021-09-23', 2237, 18644, 1717, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19305, '2021-09-23', 1854, 18645, 1717, 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 (19306, '2021-09-23', 7635, 18646, 1717, NULL, '2.0000', '6.6300', '6.6300', '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 (19307, '2021-09-23', 1641, 18647, 1717, 25016, '24.0000', '1.0100', '1.0100', '1.3000', '1.3000', '36.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 (19308, '2021-09-23', 7412, 18648, 1717, NULL, '1.0000', '1.5200', '1.5200', '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 (19309, '2021-09-23', 1592, 18649, 1718, 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 (19310, '2021-09-23', 2506, 18650, 1718, 21511, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '1.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 (19311, '2021-09-23', 1641, 18651, 1718, 3214, '-3.0000', '0.9800', '0.9800', '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 (19312, '2021-09-23', 1641, 18651, 1718, NULL, '12.0000', '0.9800', '0.9800', '1.3000', '1.3000', '-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 (19313, '2021-09-23', 9481, 18652, 1718, 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 (19314, '2021-09-23', 2638, 18653, 1718, 22333, '1.0000', '19.6200', '19.6200', '27.0000', '27.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 (19315, '2021-09-23', 1399, 18654, 1718, 22285, '1.0000', '13.3890', '13.3890', '16.5000', '16.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 (19316, '2021-09-23', 1411, 18655, 1718, 33816, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '6.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19317, '2021-09-23', 1409, 18656, 1718, 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 (19318, '2021-09-23', 1695, 18657, 1718, 12925, '1.0000', '15.5000', '15.5000', '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 (19319, '2021-09-23', 2038, 18658, 1718, 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 (19320, '2021-09-23', 1605, 18659, 1719, 17691, '1.0000', '26.8412', '26.8412', '39.0000', '39.0000', '9.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 (19321, '2021-09-23', 2491, 18660, 1719, 6228, '-8.0000', '12.2000', '12.2000', '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 (19322, '2021-09-23', 2491, 18660, 1719, NULL, '9.0000', '12.2000', '12.2000', '17.0000', '17.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 (19323, '2021-09-23', 3066, 18661, 1719, NULL, '1.0000', '24.6400', '24.6400', '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 (19324, '2021-09-23', 2486, 18662, 1719, 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 (19325, '2021-09-23', 2446, 18663, 1720, 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 (19326, '2021-09-23', 2713, 18664, 1720, 12768, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.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 (19327, '2021-09-23', 9479, 18665, 1720, NULL, '1.0000', '3.0000', '3.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 (19328, '2021-09-23', 1523, 18666, 1720, NULL, '2.0000', '213.0405', '213.0405', '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 (19329, '2021-09-23', 1845, 18667, 1720, 6222, '-5.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 (19330, '2021-09-23', 1845, 18667, 1720, NULL, '6.0000', '19.5000', '19.5000', '26.0000', '26.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 (19331, '2021-09-23', 2221, 18668, 1720, 4154, '-3.0000', '14.4737', '14.4737', '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 (19332, '2021-09-23', 2221, 18668, 1720, NULL, '4.0000', '14.4737', '14.4737', '25.0000', '25.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 (19333, '2021-09-23', 1867, 18669, 1720, NULL, '1.0000', '1.0500', '1.0500', '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 (19334, '2021-09-23', 1637, 18670, 1720, 13466, '1.0000', '10.2000', '10.2000', '14.0000', '14.0000', '3.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 (19335, '2021-09-23', 2315, 18671, 1720, 2735, '-88.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19336, '2021-09-23', 2315, 18671, 1720, NULL, '90.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19337, '2021-09-23', 1504, 18672, 1720, 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 (19338, '2021-09-23', 1654, 18673, 1720, 3225, '-1.0000', '8.8700', '8.8700', '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 (19339, '2021-09-23', 1654, 18673, 1720, NULL, '2.0000', '8.8700', '8.8700', '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 (19340, '2021-09-23', 2403, 18674, 1720, 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 (19341, '2021-09-23', 2479, 18675, 1721, 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 (19342, '2021-09-23', 7756, 18676, 1722, NULL, '1.0000', '2.5000', '2.5000', '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 (19343, '2021-09-23', 8677, 18677, 1722, NULL, '2.0000', '7.8000', '7.8000', '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 (19344, '2021-09-23', 2293, 18678, 1722, 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 (19345, '2021-09-23', 1908, 18679, 1722, NULL, '1.0000', '1.7500', '1.7500', '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 (19346, '2021-09-23', 1337, 18680, 1722, 31095, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19347, '2021-09-23', 2237, 18681, 1722, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19348, '2021-09-23', 2951, 18682, 1722, 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 (19349, '2021-09-23', 7703, 18683, 1723, NULL, '1.0000', '22.9900', '22.9900', '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 (19350, '2021-09-23', 7491, 18684, 1723, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19351, '2021-09-23', 7496, 18685, 1723, NULL, '1.0000', '0.9600', '0.9600', '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 (19352, '2021-09-23', 9177, 18686, 1723, NULL, '10.0000', '0.8000', '0.8000', '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 (19353, '2021-09-23', 7527, 18687, 1723, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19354, '2021-09-23', 1837, 18688, 1723, 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 (19355, '2021-09-23', 8097, 18689, 1723, NULL, '3.0000', '7.6800', '7.6800', '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 (19356, '2021-09-23', 9028, 18690, 1723, NULL, '1.0000', '9.0000', '9.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 (19357, '2021-09-23', 7774, 18691, 1723, NULL, '1.0000', '3.5000', '3.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 (19358, '2021-09-23', 2102, 18692, 1723, 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 (19359, '2021-09-23', 8969, 18693, 1723, NULL, '4.0000', '2.0000', '2.0000', '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 (19360, '2021-09-23', 1620, 18694, 1723, NULL, '4.0000', '90.0000', '90.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 (19361, '2021-09-23', 7899, 18695, 1723, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19362, '2021-09-23', 9478, 18696, 1723, 32800, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19363, '2021-09-23', 7411, 18697, 1723, NULL, '1.0000', '1.3500', '1.3500', '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 (19364, '2021-09-23', 1819, 18698, 1723, NULL, '1.0000', '5.5000', '5.5000', '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 (19365, '2021-09-23', 9474, 18699, 1723, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19366, '2021-09-23', 7674, 18700, 1723, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '236.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19367, '2021-09-23', 7959, 18701, 1723, NULL, '2.0000', '9.6000', '9.6000', '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 (19368, '2021-09-23', 2315, 18702, 1723, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19369, '2021-09-23', 3067, 18703, 1723, 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 (19370, '2021-09-23', 8037, 18704, 1723, 34506, '1.0000', '42.1136', '42.1136', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19371, '2021-09-23', 2104, 18705, 1723, NULL, '2.0000', '0.2000', '0.2000', '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 (19372, '2021-09-23', 7514, 18706, 1723, NULL, '1.0000', '7.8800', '7.8800', '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 (19373, '2021-09-23', 7409, 18707, 1723, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '52.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19374, '2021-09-23', 9311, 18708, 1724, 32147, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19375, '2021-09-23', 8288, 18709, 1724, NULL, '3.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (19376, '2021-09-23', 7359, 18710, 1725, NULL, '1.0000', '20.0000', '20.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 (19377, '2021-09-23', 2655, 18711, 1725, 34661, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19378, '2021-09-23', 2270, 18712, 1725, 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 (19379, '2021-09-23', 1519, 18713, 1725, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19380, '2021-09-23', 2315, 18714, 1725, NULL, '3.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-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 (19381, '2021-09-23', 2656, 18715, 1725, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19382, '2021-09-23', 2951, 18716, 1725, 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 (19383, '2021-09-23', 2545, 18717, 1725, 30684, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19384, '2021-09-23', 8086, 18718, 1726, NULL, '1.0000', '12.0000', '12.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 (19385, '2021-09-23', 2526, 18719, 1726, 15802, '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 (19386, '2021-09-23', 2618, 18720, 1726, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.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 (19387, '2021-09-23', 2762, 18721, 1726, 34680, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19388, '2021-09-23', 1863, 18722, 1726, 34411, '2.0000', '0.9660', '0.9660', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19389, '2021-09-23', 2140, 18723, 1726, 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 (19390, '2021-09-23', 1863, 18724, 1726, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19391, '2021-09-23', 1935, 18725, 1726, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19392, '2021-09-23', 2411, 18726, 1726, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '10.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 (19393, '2021-09-23', 7741, 18727, 1726, NULL, '1.0000', '1.2000', '1.2000', '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 (19394, '2021-09-23', 2140, 18728, 1726, 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 (19395, '2021-09-23', 1812, 18729, 1726, 33219, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19396, '2021-09-23', 1311, 18730, 1726, 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 (19397, '2021-09-23', 2277, 18731, 1726, 32043, '2.0000', '-2.1838', '-2.1838', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19398, '2021-09-23', 2825, 18732, 1726, NULL, '1.0000', '12.0000', '12.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 (19399, '2021-09-23', 1432, 18733, 1726, 17924, '1.0000', '9.2619', '9.2619', '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 (19400, '2021-09-23', 1863, 18734, 1726, 34411, '2.0000', '0.9660', '0.9660', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19401, '2021-09-23', 1656, 18735, 1727, 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 (19402, '2021-09-23', 8677, 18736, 1727, NULL, '2.0000', '7.8000', '7.8000', '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 (19403, '2021-09-23', 7411, 18737, 1727, NULL, '1.0000', '1.3500', '1.3500', '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 (19404, '2021-09-23', 2762, 18738, 1727, 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 (19405, '2021-09-23', 2656, 18739, 1727, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19406, '2021-09-23', 1935, 18740, 1727, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19407, '2021-09-23', 2169, 18741, 1727, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19408, '2021-09-23', 1910, 18742, 1727, 23140, '4.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (19409, '2021-09-23', 1912, 18743, 1727, NULL, '2.0000', '0.6591', '0.6591', '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 (19410, '2021-09-23', 1730, 18744, 1727, 24207, '1.0000', '24.4163', '24.4163', '33.5000', '33.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 (19411, '2021-09-23', 2315, 18745, 1727, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19412, '2021-09-23', 2570, 18746, 1727, 34963, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19413, '2021-09-23', 1706, 18747, 1727, 24948, '1.0000', '13.7192', '13.7192', '20.5000', '20.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 (19414, '2021-09-23', 1574, 18748, 1727, 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 (19415, '2021-09-23', 9482, 18749, 1727, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '105.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19416, '2021-09-23', 2237, 18750, 1727, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19417, '2021-09-23', 2283, 18751, 1727, 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 (19418, '2021-09-23', 1935, 18752, 1727, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19419, '2021-09-23', 1409, 18753, 1727, 24953, '1.0000', '13.0000', '13.0000', '18.0000', '18.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 (19420, '2021-09-23', 1519, 18754, 1727, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19421, '2021-09-23', 2660, 18755, 1727, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (19422, '2021-09-23', 2951, 18756, 1727, 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 (19423, '2021-09-23', 2643, 18757, 1727, 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 (19424, '2021-09-23', 9469, 18758, 1727, NULL, '2.0000', '2.3000', '2.3000', '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 (19425, '2021-09-23', 2354, 18759, 1727, 30690, '1.0000', '4.6000', '4.6000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19426, '2021-09-23', 1647, 18760, 1727, 24968, '1.0000', '4.7200', '4.7200', '7.5000', '7.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 (19427, '2021-09-23', 1771, 18761, 1727, 13766, '1.0000', '3.3900', '3.3900', '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 (19428, '2021-09-23', 8208, 18762, 1727, NULL, '2.0000', '33.0000', '33.0000', '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 (19429, '2021-09-23', 2237, 18763, 1727, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19430, '2021-09-23', 1863, 18764, 1727, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19431, '2021-09-23', 7524, 18765, 1727, NULL, '1.0000', '11.9500', '11.9500', '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 (19432, '2021-09-23', 2135, 18766, 1727, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19433, '2021-09-23', 7411, 18767, 1727, NULL, '1.0000', '1.3500', '1.3500', '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 (19434, '2021-09-23', 1482, 18768, 1727, NULL, '1.0000', '90.0000', '90.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 (19435, '2021-09-23', 2239, 18769, 1727, 19333, '1.0000', '26.0000', '26.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 (19436, '2021-09-23', 2699, 18770, 1727, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19437, '2021-09-23', 1950, 18771, 1727, NULL, '1.0000', '3.5525', '3.5525', '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 (19438, '2021-09-23', 2638, 18772, 1727, 34015, '1.0000', '20.2067', '20.2067', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19439, '2021-09-23', 2167, 18773, 1727, 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 (19440, '2021-09-23', 2655, 18774, 1727, 34661, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19441, '2021-09-23', 9089, 18775, 1727, NULL, '1.0000', '3.8000', '3.8000', '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 (19442, '2021-09-23', 1704, 18776, 1728, 24267, '1.0000', '910.4120', '910.4120', '36.0000', '36.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 (19443, '2021-09-23', 2651, 18777, 1728, NULL, '1.0000', '10.7500', '10.7500', '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 (19444, '2021-09-23', 1700, 18778, 1728, 33230, '1.0000', '44.4444', '44.4444', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19445, '2021-09-23', 1399, 18779, 1728, 18444, '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 (19446, '2021-09-23', 2395, 18780, 1728, 4366, '1.0000', '27.0000', '27.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 (19447, '2021-09-23', 2344, 18781, 1728, 29809, '1.0000', '20.2250', '20.2250', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19448, '2021-09-23', 1912, 18782, 1728, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19449, '2021-09-23', 1712, 18783, 1728, NULL, '1.0000', '9.6500', '9.6500', '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 (19450, '2021-09-23', 2414, 18784, 1728, NULL, '2.0000', '3.4000', '3.4000', '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 (19451, '2021-09-23', 2379, 18785, 1728, 4385, '1.0000', '1.5900', '1.5900', '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 (19452, '2021-09-23', 1459, 18786, 1728, NULL, '1.0000', '84.8700', '84.8700', '113.0000', '113.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19453, '2021-09-23', 8743, 18787, 1728, NULL, '1.0000', '8.5000', '8.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 (19454, '2021-09-23', 2486, 18788, 1728, 21821, '6.0000', '4.0000', '4.0000', '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 (19455, '2021-09-23', 2698, 18789, 1728, 12388, '1.0000', '36.8600', '36.8600', '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 (19456, '2021-09-23', 2363, 18790, 1728, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19457, '2021-09-23', 8743, 18791, 1728, NULL, '1.0000', '8.5000', '8.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 (19458, '2021-09-23', 8746, 18792, 1728, NULL, '1.0000', '3.8000', '3.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 (19459, '2021-09-23', 8744, 18793, 1728, NULL, '1.0000', '3.5000', '3.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 (19460, '2021-09-23', 1602, 18794, 1728, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '26.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19461, '2021-09-23', 2479, 18795, 1728, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (19462, '2021-09-23', 1539, 18796, 1728, 1544, '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 (19463, '2021-09-23', 1410, 18797, 1728, 31729, '1.0000', '2.2220', '2.2220', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19464, '2021-09-23', 1595, 18798, 1728, 17846, '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 (19465, '2021-09-23', 1596, 18799, 1728, 23617, '1.0000', '2.5700', '2.5700', '6.0000', '6.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 (19466, '2021-09-23', 1596, 18799, 1728, 18056, '1.0000', '2.5700', '2.5700', '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 (19467, '2021-09-23', 7358, 18800, 1728, NULL, '1.0000', '18.8000', '18.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 (19468, '2021-09-23', 1812, 18801, 1728, 33219, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19469, '2021-09-23', 2004, 18802, 1728, NULL, '2.0000', '1.5000', '1.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 (19470, '2021-09-23', 2669, 18803, 1728, 34704, '1.0000', '36.8723', '36.8723', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19471, '2021-09-23', 1379, 18804, 1728, 32019, '1.0000', '83.0000', '83.0000', '110.0000', '110.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19472, '2021-09-23', 1824, 18805, 1728, 34427, '1.0000', '53.9629', '53.9629', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19473, '2021-09-23', 1812, 18806, 1728, 33219, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19474, '2021-09-23', 1665, 18807, 1729, 33349, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19475, '2021-09-23', 7762, 18808, 1729, NULL, '1.0000', '5.1000', '5.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 (19476, '2021-09-23', 1520, 18809, 1729, 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 (19477, '2021-09-23', 2056, 18810, 1730, 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 (19478, '2021-09-23', 8101, 18811, 1730, NULL, '3.0000', '21.7000', '21.7000', '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 (19479, '2021-09-23', 7658, 18812, 1730, NULL, '4.0000', '10.1500', '10.1500', '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 (19480, '2021-09-23', 8763, 18813, 1730, 32138, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19481, '2021-09-23', 7675, 18814, 1730, NULL, '1.0000', '11.4300', '11.4300', '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 (19482, '2021-09-23', 2648, 18815, 1730, NULL, '1.0000', '5.4000', '5.4000', '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 (19483, '2021-09-23', 8882, 18816, 1730, NULL, '2.0000', '8.0000', '8.0000', '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 (19484, '2021-09-23', 8666, 18817, 1730, NULL, '1.0000', '0.4600', '0.4600', '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 (19485, '2021-09-23', 7532, 18818, 1730, NULL, '1.0000', '9.0500', '9.0500', '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 (19486, '2021-09-23', 7584, 18819, 1730, NULL, '1.0000', '3.8100', '3.8100', '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 (19487, '2021-09-23', 7752, 18820, 1730, 33518, '1.0000', '3.0000', '3.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19488, '2021-09-23', 8195, 18821, 1730, NULL, '1.0000', '62.2000', '62.2000', '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 (19489, '2021-09-23', 7483, 18822, 1730, NULL, '1.0000', '0.4200', '0.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 (19490, '2021-09-23', 7806, 18823, 1730, NULL, '2.0000', '14.0000', '14.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 (19491, '2021-09-23', 7608, 18824, 1730, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19492, '2021-09-23', 9463, 18825, 1730, 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 (19493, '2021-09-23', 7411, 18826, 1730, NULL, '1.0000', '1.3500', '1.3500', '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 (19494, '2021-09-23', 8512, 18827, 1730, NULL, '1.0000', '4.0000', '4.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 (19495, '2021-09-23', 8247, 18828, 1730, NULL, '3.0000', '10.0000', '10.0000', '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 (19496, '2021-09-23', 7354, 18829, 1730, NULL, '2.0000', '18.0000', '18.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 (19497, '2021-09-23', 7672, 18830, 1730, NULL, '1.0000', '1.0200', '1.0200', '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 (19498, '2021-09-23', 7473, 18831, 1730, NULL, '10.0000', '9.2200', '9.2200', '0.6000', '0.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 (19499, '2021-09-23', 9463, 18832, 1730, 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 (19500, '2021-09-23', 8003, 18833, 1730, 30149, '1.0000', '34.8000', '34.8000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19501, '2021-09-23', 9252, 18834, 1730, NULL, '1.0000', '11.8200', '11.8200', '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 (19502, '2021-09-23', 7658, 18835, 1730, NULL, '6.0000', '10.1500', '10.1500', '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 (19503, '2021-09-23', 9092, 18836, 1730, NULL, '1.0000', '5.2900', '5.2900', '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 (19504, '2021-09-23', 7674, 18837, 1730, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '235.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19505, '2021-09-23', 7457, 18838, 1730, 30212, '1.0000', '2.3500', '2.3500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19506, '2021-09-23', 7473, 18839, 1730, NULL, '3.0000', '9.2200', '9.2200', '0.6000', '0.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 (19507, '2021-09-23', 8965, 18840, 1730, NULL, '1.0000', '52.9900', '52.9900', '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 (19508, '2021-09-23', 2069, 18841, 1730, NULL, '1.0000', '2.0400', '2.0400', '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 (19509, '2021-09-23', 7675, 18842, 1730, NULL, '1.0000', '11.4300', '11.4300', '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 (19510, '2021-09-23', 7713, 18843, 1730, NULL, '3.0000', '4.4000', '4.4000', '0.6000', '0.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 (19511, '2021-09-23', 7814, 18844, 1730, NULL, '1.0000', '13.0000', '13.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 (19512, '2021-09-23', 7815, 18845, 1730, NULL, '1.0000', '13.0000', '13.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 (19513, '2021-09-23', 2374, 18846, 1730, NULL, '1.0000', '6.1000', '6.1000', '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 (19514, '2021-09-23', 8722, 18847, 1730, 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 (19515, '2021-09-23', 7609, 18848, 1730, NULL, '1.0000', '4.3300', '4.3300', '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 (19516, '2021-09-23', 7954, 18849, 1730, NULL, '4.0000', '21.0000', '21.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 (19517, '2021-09-23', 8756, 18850, 1730, 32807, '1.0000', '5.9323', '5.9323', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19518, '2021-09-23', 7781, 18851, 1730, NULL, '3.0000', '4.2500', '4.2500', '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 (19519, '2021-09-23', 7713, 18852, 1730, NULL, '1.0000', '4.4000', '4.4000', '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 (19520, '2021-09-23', 1982, 18853, 1730, NULL, '1.0000', '4.5000', '4.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 (19521, '2021-09-23', 8237, 18854, 1730, NULL, '1.0000', '8.5000', '8.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 (19522, '2021-09-23', 7674, 18855, 1730, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '235.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19523, '2021-09-23', 9390, 18856, 1730, NULL, '1.0000', '25.0000', '25.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 (19524, '2021-09-23', 8359, 18857, 1730, NULL, '1.0000', '16.7750', '16.7750', '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 (19525, '2021-09-23', 7708, 18858, 1730, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19526, '2021-09-23', 7672, 18859, 1730, NULL, '1.0000', '1.0200', '1.0200', '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 (19527, '2021-09-23', 7598, 18860, 1730, NULL, '4.0000', '1.2800', '1.2800', '8.5000', '8.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 (19528, '2021-09-23', 3059, 18861, 1730, NULL, '5.0000', '0.4500', '0.4500', '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 (19529, '2021-09-23', 7619, 18862, 1730, NULL, '1.0000', '4.3900', '4.3900', '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 (19530, '2021-09-23', 7318, 18863, 1730, 35234, '1.0000', '12.3093', '12.3093', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19531, '2021-09-23', 9272, 18864, 1730, NULL, '1.0000', '3.1000', '3.1000', '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 (19532, '2021-09-23', 7514, 18865, 1730, NULL, '1.0000', '7.8800', '7.8800', '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 (19533, '2021-09-23', 7750, 18866, 1730, NULL, '1.0000', '34.9000', '34.9000', '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 (19534, '2021-09-23', 1813, 18867, 1731, 18940, '1.0000', '90.0000', '90.0000', '38.0000', '38.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 (19535, '2021-09-23', 1687, 18868, 1731, NULL, '1.0000', '12.0000', '12.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 (19536, '2021-09-23', 1935, 18869, 1731, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19537, '2021-09-23', 8005, 18870, 1732, NULL, '2.0000', '17.7200', '17.7200', '70.5000', '70.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 (19538, '2021-09-23', 8625, 18871, 1732, NULL, '3.0000', '7.1000', '7.1000', '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 (19539, '2021-09-23', 2135, 18872, 1733, 34855, '1.0000', '2.2857', '2.2857', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19540, '2021-09-23', 2302, 18873, 1733, 34694, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19541, '2021-09-23', 2287, 18874, 1733, 3127, '1.0000', '1.8000', '1.8000', '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 (19542, '2021-09-23', 7922, 18875, 1733, NULL, '1.0000', '6.9800', '6.9800', '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 (19543, '2021-09-23', 8242, 18876, 1733, NULL, '1.0000', '0.4900', '0.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 (19544, '2021-09-23', 2459, 18877, 1733, 24004, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.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 (19545, '2021-09-23', 2548, 18878, 1733, 31986, '1.0000', '5.8956', '5.8956', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19546, '2021-09-23', 1617, 18879, 1733, 9418, '1.0000', '4.6300', '4.6300', '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 (19547, '2021-09-23', 1651, 18880, 1733, 32829, '1.0000', '7.4814', '7.4814', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19548, '2021-09-23', 2592, 18881, 1733, 32880, '2.0000', '7.9456', '7.9456', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19549, '2021-09-23', 7398, 18882, 1733, NULL, '1.0000', '18.5000', '18.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 (19550, '2021-09-23', 2169, 18883, 1733, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19551, '2021-09-24', 2415, 18884, 1734, 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 (19552, '2021-09-24', 2237, 18885, 1735, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19553, '2021-09-24', 1854, 18886, 1735, 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 (19554, '2021-09-24', 2315, 18887, 1735, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19555, '2021-09-24', 1841, 18888, 1735, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19556, '2021-09-24', 1863, 18889, 1735, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19557, '2021-09-24', 2277, 18890, 1735, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19558, '2021-09-24', 2315, 18891, 1735, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19559, '2021-09-24', 2280, 18892, 1735, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '23.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 (19560, '2021-09-24', 1574, 18893, 1735, 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 (19561, '2021-09-24', 2989, 18894, 1735, 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 (19562, '2021-09-24', 2073, 18895, 1735, 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 (19563, '2021-09-24', 1342, 18896, 1735, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19564, '2021-09-24', 2992, 18897, 1735, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (19565, '2021-09-24', 1746, 18898, 1735, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (19566, '2021-09-24', 2309, 18899, 1735, 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 (19567, '2021-09-24', 2293, 18900, 1735, 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 (19568, '2021-09-24', 1782, 18901, 1735, 19339, '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 (19569, '2021-09-24', 1422, 18902, 1735, 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 (19570, '2021-09-24', 1863, 18903, 1735, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19571, '2021-09-24', 1946, 18904, 1735, NULL, '1.0000', '1.5500', '1.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 (19572, '2021-09-24', 2332, 18905, 1735, 13739, '1.0000', '5.0900', '5.0900', '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 (19573, '2021-09-24', 7889, 18906, 1735, NULL, '1.0000', '15.0000', '15.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 (19574, '2021-09-24', 3017, 18907, 1735, 24959, '1.0000', '3.9000', '3.9000', '6.0000', '6.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 (19575, '2021-09-24', 9482, 18908, 1735, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '104.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19576, '2021-09-24', 2366, 18909, 1735, 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 (19577, '2021-09-24', 8133, 18910, 1735, 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 (19578, '2021-09-24', 1812, 18911, 1735, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19579, '2021-09-24', 7524, 18912, 1735, NULL, '1.0000', '11.9500', '11.9500', '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 (19580, '2021-09-24', 2169, 18913, 1735, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19581, '2021-09-24', 1755, 18914, 1736, 19326, '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 (19582, '2021-09-24', 1780, 18915, 1736, 34587, '1.0000', '96.5277', '96.5277', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19583, '2021-09-24', 8745, 18916, 1736, 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 (19584, '2021-09-24', 1602, 18917, 1736, NULL, '1.0000', '7.0310', '7.0310', '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 (19585, '2021-09-24', 1432, 18918, 1736, NULL, '1.0000', '9.9497', '9.9497', '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 (19586, '2021-09-24', 1667, 18919, 1737, 24939, '1.0000', '1404.9249', '1404.9249', '8.5000', '8.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 (19587, '2021-09-24', 2916, 18920, 1737, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19588, '2021-09-24', 1639, 18921, 1737, 34651, '1.0000', '6.6300', '6.6300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19589, '2021-09-24', 1694, 18922, 1737, 34936, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19590, '2021-09-24', 2379, 18923, 1738, 4032, '-15.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 (19591, '2021-09-24', 2379, 18923, 1738, NULL, '17.0000', '1.5900', '1.5900', '2.5000', '2.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 (19592, '2021-09-24', 7741, 18924, 1738, NULL, '1.0000', '1.2000', '1.2000', '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 (19593, '2021-09-24', 1632, 18925, 1738, 3206, '-3.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 (19594, '2021-09-24', 1632, 18925, 1738, NULL, '4.0000', '19.5000', '19.5000', '25.0000', '25.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 (19595, '2021-09-24', 2079, 18926, 1738, 228, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '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 (19596, '2021-09-24', 2255, 18927, 1738, 18849, '1.0000', '17.4900', '17.4900', '26.0000', '26.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 (19597, '2021-09-24', 2513, 18928, 1738, 5913, '-2.0000', '40.0000', '40.0000', '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 (19598, '2021-09-24', 2513, 18928, 1738, NULL, '3.0000', '40.0000', '40.0000', '50.0000', '50.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 (19599, '2021-09-24', 1598, 18929, 1738, 8362, '-1.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 (19600, '2021-09-24', 1598, 18929, 1738, NULL, '2.0000', '3.2000', '3.2000', '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 (19601, '2021-09-24', 1602, 18930, 1738, 5897, '-2.0000', '6.7859', '6.7859', '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 (19602, '2021-09-24', 1602, 18930, 1738, NULL, '3.0000', '6.7859', '6.7859', '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 (19603, '2021-09-24', 2643, 18931, 1738, 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 (19604, '2021-09-24', 2713, 18932, 1738, 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 (19605, '2021-09-24', 2135, 18933, 1738, 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 (19606, '2021-09-24', 2533, 18934, 1738, NULL, '1.0000', '18.0000', '18.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 (19607, '2021-09-24', 2876, 18935, 1738, 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 (19608, '2021-09-24', 2379, 18936, 1738, 4032, '-15.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 (19609, '2021-09-24', 2379, 18936, 1738, NULL, '16.0000', '1.5900', '1.5900', '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 (19610, '2021-09-24', 2876, 18937, 1738, 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 (19611, '2021-09-24', 1339, 18938, 1738, 235, '1.0000', '1.6012', '1.6012', '2.5000', '2.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 (19612, '2021-09-24', 1337, 18939, 1738, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '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 (19613, '2021-09-24', 1493, 18940, 1738, 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 (19614, '2021-09-24', 1493, 18940, 1738, NULL, '2.0000', '1.5425', '1.5425', '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 (19615, '2021-09-24', 1307, 18941, 1739, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '12.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 (19616, '2021-09-24', 2169, 18942, 1739, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '20.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 (19617, '2021-09-24', 7592, 18943, 1740, NULL, '1.0000', '8.6500', '8.6500', '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 (19618, '2021-09-24', 1596, 18944, 1740, 19850, '1.0000', '2.5700', '2.5700', '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 (19619, '2021-09-24', 7621, 18945, 1740, NULL, '1.0000', '3.1000', '3.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 (19620, '2021-09-24', 2866, 18946, 1740, 18927, '30.0000', '0.8800', '0.8800', '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 (19621, '2021-09-24', 8518, 18947, 1740, NULL, '1.0000', '17.6400', '17.6400', '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 (19622, '2021-09-24', 1668, 18948, 1740, 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 (19623, '2021-09-24', 1399, 18949, 1740, 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 (19624, '2021-09-24', 1346, 18950, 1740, 24923, '30.0000', '-20.8715', '-20.8715', '1.5000', '1.5000', '59.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 (19625, '2021-09-24', 1693, 18951, 1740, 34595, '1.0000', '7.8600', '7.8600', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19626, '2021-09-24', 1689, 18952, 1740, 34931, '1.0000', '12.3438', '12.3438', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19627, '2021-09-24', 1782, 18953, 1740, 19339, '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 (19628, '2021-09-24', 2106, 18954, 1740, NULL, '3.0000', '0.9900', '0.9900', '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 (19629, '2021-09-24', 1746, 18955, 1740, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (19630, '2021-09-24', 7970, 18956, 1740, NULL, '5.0000', '5.5000', '5.5000', '3.1000', '3.1000', '-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 (19631, '2021-09-24', 2699, 18957, 1740, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19632, '2021-09-24', 2656, 18958, 1741, 34662, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19633, '2021-09-24', 7819, 18959, 1742, NULL, '1.0000', '9.5000', '9.5000', '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 (19634, '2021-09-24', 7459, 18960, 1742, NULL, '6.0000', '40.3500', '40.3500', '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 (19635, '2021-09-24', 7703, 18961, 1742, NULL, '1.0000', '22.9900', '22.9900', '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 (19636, '2021-09-24', 7753, 18962, 1742, NULL, '1.0000', '3.1400', '3.1400', '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 (19637, '2021-09-24', 7808, 18963, 1742, NULL, '1.0000', '13.9000', '13.9000', '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 (19638, '2021-09-24', 7642, 18964, 1742, NULL, '1.0000', '2.6900', '2.6900', '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 (19639, '2021-09-24', 7459, 18965, 1742, NULL, '10.0000', '40.3500', '40.3500', '3.5000', '3.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 (19640, '2021-09-24', 7641, 18966, 1742, NULL, '1.0000', '1.9000', '1.9000', '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 (19641, '2021-09-24', 7514, 18967, 1742, NULL, '1.0000', '7.8800', '7.8800', '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 (19642, '2021-09-24', 8083, 18968, 1742, NULL, '1.0000', '0.7700', '0.7700', '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 (19643, '2021-09-24', 7781, 18969, 1742, NULL, '2.0000', '4.2500', '4.2500', '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 (19644, '2021-09-24', 8702, 18970, 1742, NULL, '1.0000', '3.6700', '3.6700', '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 (19645, '2021-09-24', 1590, 18971, 1742, 34520, '2.0000', '1.7100', '1.7100', '2.2000', '2.2000', '47.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19646, '2021-09-24', 7851, 18972, 1742, NULL, '2.0000', '12.7000', '12.7000', '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 (19647, '2021-09-24', 7641, 18973, 1742, NULL, '1.0000', '1.9000', '1.9000', '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 (19648, '2021-09-24', 1610, 18974, 1742, 33754, '1.0000', '16.1500', '16.1500', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19649, '2021-09-24', 7652, 18975, 1742, NULL, '10.0000', '40.3000', '40.3000', '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 (19650, '2021-09-24', 1619, 18976, 1742, 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 (19651, '2021-09-24', 8288, 18977, 1742, NULL, '10.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (19652, '2021-09-24', 8063, 18978, 1742, 34558, '1.0000', '-23.2756', '-23.2756', '7.0000', '7.0000', '38.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19653, '2021-09-24', 2822, 18979, 1742, 30155, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '44.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19654, '2021-09-24', 8208, 18980, 1742, NULL, '1.0000', '33.0000', '33.0000', '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 (19655, '2021-09-24', 9214, 18981, 1742, 32135, '1.0000', '7.4538', '7.4538', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19656, '2021-09-24', 8857, 18982, 1742, NULL, '1.0000', '21.1000', '21.1000', '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 (19657, '2021-09-24', 1730, 18983, 1742, NULL, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19658, '2021-09-24', 9499, 18984, 1742, 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 (19659, '2021-09-24', 7514, 18985, 1742, NULL, '1.0000', '7.8800', '7.8800', '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 (19660, '2021-09-24', 7713, 18986, 1742, NULL, '1.0000', '4.4000', '4.4000', '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 (19661, '2021-09-24', 9311, 18987, 1742, 32147, '3.0000', '6.6000', '6.6000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19662, '2021-09-24', 1367, 18988, 1743, 18939, '14.0000', '49.2100', '49.2100', '7.0000', '7.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 (19663, '2021-09-24', 1532, 18989, 1743, 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 (19664, '2021-09-24', 1590, 18990, 1743, NULL, '4.0000', '1.7100', '1.7100', '2.2000', '2.2000', '-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 (19665, '2021-09-24', 7608, 18991, 1743, NULL, '1.0000', '6.9800', '6.9800', '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 (19666, '2021-09-24', 1368, 18992, 1743, 23174, '1.0000', '5.5000', '5.5000', '7.0000', '7.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 (19667, '2021-09-24', 1577, 18993, 1743, 34653, '1.0000', '2.5218', '2.5218', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19668, '2021-09-24', 8594, 18994, 1743, 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 (19669, '2021-09-24', 2699, 18995, 1743, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19670, '2021-09-24', 2655, 18996, 1743, 34661, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19671, '2021-09-24', 1425, 18997, 1743, 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 (19672, '2021-09-24', 2169, 18998, 1743, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19673, '2021-09-24', 7756, 18999, 1743, NULL, '1.0000', '2.5000', '2.5000', '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 (19674, '2021-09-24', 1916, 19000, 1743, 34640, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19675, '2021-09-24', 1771, 19001, 1743, 13766, '1.0000', '3.3900', '3.3900', '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 (19676, '2021-09-24', 2135, 19002, 1743, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19677, '2021-09-24', 2169, 19003, 1743, 34968, '2.0000', '1.1484', '1.1484', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19678, '2021-09-24', 2167, 19004, 1743, 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 (19679, '2021-09-24', 1424, 19005, 1743, 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 (19680, '2021-09-24', 1863, 19006, 1743, 34026, '2.0000', '1.4033', '1.4033', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19681, '2021-09-24', 2169, 19007, 1743, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19682, '2021-09-24', 1837, 19008, 1744, 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 (19683, '2021-09-24', 2100, 19009, 1744, 31962, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19684, '2021-09-24', 1602, 19010, 1744, NULL, '1.0000', '7.0310', '7.0310', '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 (19685, '2021-09-24', 2345, 19011, 1744, 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 (19686, '2021-09-24', 1523, 19012, 1744, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.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 (19687, '2021-09-24', 2989, 19013, 1744, 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 (19688, '2021-09-24', 1863, 19014, 1744, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19689, '2021-09-24', 2354, 19015, 1744, 30690, '1.0000', '4.6000', '4.6000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19690, '2021-09-24', 2327, 19016, 1744, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '13.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 (19691, '2021-09-24', 1771, 19017, 1744, 13766, '1.0000', '3.3900', '3.3900', '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 (19692, '2021-09-24', 2655, 19018, 1744, 34661, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19693, '2021-09-24', 8171, 19019, 1744, NULL, '1.0000', '3.9900', '3.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 (19694, '2021-09-24', 1876, 19020, 1744, 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 (19695, '2021-09-24', 2567, 19021, 1745, NULL, '1.0000', '33.0000', '33.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 (19696, '2021-09-24', 9160, 19022, 1745, NULL, '1.0000', '15.0000', '15.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 (19697, '2021-09-24', 2315, 19023, 1745, NULL, '3.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-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 (19698, '2021-09-24', 8359, 19024, 1745, NULL, '1.0000', '16.7750', '16.7750', '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 (19699, '2021-09-24', 1339, 19025, 1745, 34539, '1.0000', '2.1251', '2.1251', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19700, '2021-09-24', 9092, 19026, 1745, NULL, '2.0000', '5.2900', '5.2900', '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 (19701, '2021-09-24', 7799, 19027, 1745, NULL, '1.0000', '2.0000', '2.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 (19702, '2021-09-24', 1533, 19028, 1745, 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 (19703, '2021-09-24', 8166, 19029, 1745, NULL, '2.0000', '4.6000', '4.6000', '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 (19704, '2021-09-24', 7672, 19030, 1745, NULL, '1.0000', '1.0200', '1.0200', '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 (19705, '2021-09-24', 9092, 19031, 1745, NULL, '2.0000', '5.2900', '5.2900', '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 (19706, '2021-09-24', 9342, 19032, 1745, NULL, '1.0000', '52.0200', '52.0200', '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 (19707, '2021-09-24', 8679, 19033, 1745, NULL, '1.0000', '28.0000', '28.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 (19708, '2021-09-24', 7713, 19034, 1745, NULL, '2.0000', '4.4000', '4.4000', '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 (19709, '2021-09-24', 7514, 19035, 1745, NULL, '2.0000', '7.8800', '7.8800', '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 (19710, '2021-09-24', 7728, 19036, 1745, 32806, '1.0000', '3.1200', '3.1200', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19711, '2021-09-24', 8982, 19037, 1745, 32141, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19712, '2021-09-24', 9084, 19038, 1745, NULL, '2.0000', '6.2167', '6.2167', '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 (19713, '2021-09-24', 2962, 19039, 1745, NULL, '2.0000', '4.0000', '4.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 (19714, '2021-09-24', 8200, 19040, 1745, NULL, '2.0000', '8.5500', '8.5500', '8.5000', '8.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 (19715, '2021-09-24', 7848, 19041, 1745, NULL, '1.0000', '1.3500', '1.3500', '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 (19716, '2021-09-24', 9084, 19042, 1745, NULL, '1.0000', '6.2167', '6.2167', '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 (19717, '2021-09-24', 7657, 19043, 1745, NULL, '1.0000', '5.4700', '5.4700', '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 (19718, '2021-09-24', 7822, 19044, 1745, NULL, '1.0000', '5.6000', '5.6000', '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 (19719, '2021-09-24', 8548, 19045, 1745, NULL, '1.0000', '12.0000', '12.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 (19720, '2021-09-24', 7710, 19046, 1745, NULL, '2.0000', '26.0000', '26.0000', '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 (19721, '2021-09-24', 7756, 19047, 1745, NULL, '1.0000', '21.7700', '21.7700', '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 (19722, '2021-09-24', 7809, 19048, 1745, NULL, '1.0000', '13.5000', '13.5000', '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 (19723, '2021-09-24', 1854, 19049, 1745, 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 (19724, '2021-09-24', 9241, 19050, 1745, NULL, '1.0000', '20.5000', '20.5000', '59.0000', '59.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19725, '2021-09-24', 7612, 19051, 1745, NULL, '1.0000', '46.0000', '46.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 (19726, '2021-09-24', 8000, 19052, 1745, NULL, '1.0000', '27.9111', '27.9111', '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 (19727, '2021-09-24', 7758, 19053, 1745, NULL, '1.0000', '10.8500', '10.8500', '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 (19728, '2021-09-24', 8275, 19054, 1745, 35206, '1.0000', '29.8500', '29.8500', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19729, '2021-09-24', 8039, 19055, 1745, NULL, '1.0000', '34.6600', '34.6600', '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 (19730, '2021-09-24', 8097, 19056, 1745, NULL, '4.0000', '7.6800', '7.6800', '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 (19731, '2021-09-24', 7531, 19057, 1745, NULL, '3.0000', '16.5000', '16.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 (19732, '2021-09-24', 7708, 19058, 1745, 30163, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19733, '2021-09-24', 7728, 19059, 1745, 32806, '1.0000', '3.1200', '3.1200', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19734, '2021-09-24', 7509, 19060, 1745, 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 (19735, '2021-09-24', 7482, 19061, 1745, 30157, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19736, '2021-09-24', 7709, 19062, 1745, NULL, '2.0000', '35.8000', '35.8000', '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 (19737, '2021-09-24', 7640, 19063, 1745, NULL, '1.0000', '5.8900', '5.8900', '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 (19738, '2021-09-24', 7672, 19064, 1745, NULL, '1.0000', '1.0200', '1.0200', '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 (19739, '2021-09-24', 2315, 19065, 1745, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19740, '2021-09-24', 7674, 19066, 1745, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '233.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19741, '2021-09-24', 7411, 19067, 1745, NULL, '2.0000', '1.3500', '1.3500', '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 (19742, '2021-09-24', 7848, 19068, 1745, NULL, '1.0000', '1.3500', '1.3500', '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 (19743, '2021-09-24', 7641, 19069, 1745, NULL, '1.0000', '1.9000', '1.9000', '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 (19744, '2021-09-24', 7429, 19070, 1745, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19745, '2021-09-24', 9154, 19071, 1745, 31011, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19746, '2021-09-24', 7612, 19072, 1745, NULL, '1.0000', '46.0000', '46.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 (19747, '2021-09-24', 7711, 19073, 1745, NULL, '1.0000', '0.3900', '0.3900', '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 (19748, '2021-09-24', 7334, 19074, 1745, NULL, '1.0000', '8.1600', '8.1600', '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 (19749, '2021-09-24', 7518, 19075, 1745, NULL, '1.0000', '-21.7700', '-21.7700', '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 (19750, '2021-09-24', 2673, 19076, 1746, 11868, '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 (19751, '2021-09-24', 2627, 19077, 1746, 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 (19752, '2021-09-24', 2716, 19078, 1746, 13545, '1.0000', '9.8500', '9.8500', '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 (19753, '2021-09-24', 2411, 19079, 1746, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '9.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 (19754, '2021-09-24', 2468, 19080, 1746, 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 (19755, '2021-09-24', 1912, 19081, 1746, 29799, '2.0000', '0.5743', '0.5743', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19756, '2021-09-24', 1596, 19082, 1746, 9433, '1.0000', '2.5700', '2.5700', '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 (19757, '2021-09-24', 2470, 19083, 1746, 5090, '1.0000', '8.5000', '8.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 (19758, '2021-09-24', 2470, 19083, 1746, 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 (19759, '2021-09-24', 1519, 19084, 1746, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '10.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 (19760, '2021-09-24', 2916, 19085, 1746, 32030, '1.0000', '12.5089', '12.5089', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19761, '2021-09-24', 2967, 19086, 1746, 21798, '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 (19762, '2021-09-24', 7711, 19087, 1746, NULL, '1.0000', '0.3900', '0.3900', '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 (19763, '2021-09-24', 2320, 19088, 1746, 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 (19764, '2021-09-24', 2655, 19089, 1746, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19765, '2021-09-24', 7741, 19090, 1746, NULL, '1.0000', '1.2000', '1.2000', '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 (19766, '2021-09-24', 1375, 19091, 1746, 34678, '2.0000', '88.5598', '88.5598', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19767, '2021-09-24', 1433, 19092, 1746, 33035, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19768, '2021-09-24', 7657, 19093, 1746, NULL, '1.0000', '5.4700', '5.4700', '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 (19769, '2021-09-24', 7746, 19094, 1746, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19770, '2021-09-24', 1508, 19095, 1746, 1511, '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 (19771, '2021-09-24', 2915, 19096, 1746, 32872, '1.0000', '15.4500', '15.4500', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19772, '2021-09-24', 1602, 19097, 1746, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '25.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19773, '2021-09-24', 2604, 19098, 1746, 34856, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '5.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19774, '2021-09-24', 2250, 19099, 1746, 33010, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19775, '2021-09-24', 1807, 19100, 1746, 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 (19776, '2021-09-24', 2234, 19101, 1746, 32054, '1.0000', '13.9074', '13.9074', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19777, '2021-09-24', 3046, 19102, 1746, 24270, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '6.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 (19778, '2021-09-24', 2169, 19103, 1746, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19779, '2021-09-24', 1688, 19104, 1746, 29810, '1.0000', '17.8694', '17.8694', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19780, '2021-09-24', 9367, 19105, 1746, NULL, '1.0000', '32.9800', '32.9800', '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 (19781, '2021-09-24', 1602, 19106, 1746, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '25.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19782, '2021-09-24', 2260, 19107, 1746, 29797, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19783, '2021-09-24', 2260, 19107, 1746, 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 (19784, '2021-09-24', 1845, 19108, 1746, 33232, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19785, '2021-09-24', 1876, 19109, 1746, 34418, '1.0000', '33.8475', '33.8475', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19786, '2021-09-24', 2240, 19110, 1746, 32882, '1.0000', '36.0000', '36.0000', '48.5000', '48.5000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19787, '2021-09-24', 7358, 19111, 1746, NULL, '1.0000', '18.8000', '18.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 (19788, '2021-09-24', 1617, 19112, 1746, 9418, '1.0000', '4.6300', '4.6300', '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 (19789, '2021-09-24', 1349, 19113, 1746, 33236, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19790, '2021-09-24', 7671, 19114, 1746, NULL, '1.0000', '15.5000', '15.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 (19791, '2021-09-24', 2872, 19115, 1746, 17897, '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 (19792, '2021-09-24', 7943, 19116, 1747, 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 (19793, '2021-09-24', 8735, 19117, 1747, NULL, '1.0000', '5.6000', '5.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 (19794, '2021-09-24', 2289, 19118, 1747, NULL, '5.0000', '0.2300', '0.2300', '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 (19795, '2021-09-24', 7822, 19119, 1747, NULL, '1.0000', '5.6000', '5.6000', '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 (19796, '2021-09-24', 1841, 19120, 1747, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '166.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19797, '2021-09-24', 7514, 19121, 1747, NULL, '1.0000', '7.8800', '7.8800', '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 (19798, '2021-09-24', 1771, 19122, 1747, 35186, '1.0000', '12.4894', '12.4894', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19799, '2021-09-24', 1310, 19123, 1748, 34631, '3.0000', '0.3700', '0.3700', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19800, '2021-09-24', 2908, 19124, 1748, 24963, '1.0000', '0.2700', '0.2700', '0.5000', '0.5000', '35.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 (19801, '2021-09-24', 7709, 19125, 1749, NULL, '2.0000', '35.8000', '35.8000', '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 (19802, '2021-09-24', 8230, 19126, 1749, NULL, '1.0000', '5.0000', '5.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 (19803, '2021-09-24', 7867, 19127, 1749, 30193, '2.0000', '2.7700', '2.7700', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19804, '2021-09-24', 7588, 19128, 1749, NULL, '2.0000', '7.6111', '7.6111', '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 (19805, '2021-09-24', 7931, 19129, 1749, NULL, '1.0000', '0.2500', '0.2500', '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 (19806, '2021-09-24', 7518, 19130, 1749, NULL, '4.0000', '-21.7700', '-21.7700', '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 (19807, '2021-09-24', 8497, 19131, 1749, NULL, '4.0000', '28.0000', '28.0000', '11.5000', '11.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 (19808, '2021-09-24', 8319, 19132, 1749, 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 (19809, '2021-09-24', 7819, 19133, 1749, NULL, '1.0000', '9.5000', '9.5000', '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 (19810, '2021-09-24', 7412, 19134, 1749, 30160, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19811, '2021-09-24', 7448, 19135, 1749, NULL, '1.0000', '15.8500', '15.8500', '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 (19812, '2021-09-24', 7860, 19136, 1749, NULL, '1.0000', '3.8500', '3.8500', '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 (19813, '2021-09-24', 7316, 19137, 1749, 30165, '2.0000', '0.8600', '0.8600', '1.2000', '1.2000', '30.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19814, '2021-09-24', 9092, 19138, 1749, NULL, '2.0000', '5.2900', '5.2900', '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 (19815, '2021-09-24', 7412, 19139, 1750, NULL, '1.0000', '1.5200', '1.5200', '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 (19816, '2021-09-24', 2289, 19140, 1751, 22482, '9.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 (19817, '2021-09-24', 2289, 19140, 1751, 3129, '1.0000', '0.2300', '0.2300', '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 (19818, '2021-09-24', 1665, 19141, 1751, 34667, '5.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19819, '2021-09-24', 9280, 19142, 1751, NULL, '1.0000', '12.0000', '12.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 (19820, '2021-09-24', 1736, 19143, 1751, 22486, '1.0000', '26.5160', '26.5160', '39.0000', '39.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 (19821, '2021-09-24', 1822, 19144, 1751, 31999, '1.0000', '2.9682', '2.9682', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19822, '2021-09-24', 1822, 19144, 1751, 23596, '18.0000', '2.9682', '2.9682', '3.5000', '3.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 (19823, '2021-09-24', 1822, 19144, 1751, 11174, '1.0000', '2.9682', '2.9682', '3.5000', '3.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 (19824, '2021-09-24', 1523, 19145, 1751, 24285, '2.0000', '0.9596', '0.9596', '5.0000', '5.0000', '20.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 (19825, '2021-09-24', 2259, 19146, 1751, 22645, '1.0000', '19.5883', '19.5883', '28.0000', '28.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 (19826, '2021-09-24', 1574, 19147, 1751, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (19827, '2021-09-24', 2280, 19148, 1751, 21586, '2.0000', '1.9000', '1.9000', '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 (19828, '2021-09-24', 7756, 19149, 1751, NULL, '1.0000', '2.5000', '2.5000', '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 (19829, '2021-09-24', 7862, 19150, 1751, NULL, '1.0000', '17.8000', '17.8000', '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 (19830, '2021-09-24', 2302, 19151, 1751, 34694, '3.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19831, '2021-09-24', 7671, 19152, 1751, NULL, '1.0000', '15.5000', '15.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 (19832, '2021-09-24', 3013, 19153, 1751, 34674, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19833, '2021-09-24', 1809, 19154, 1751, 33005, '1.0000', '9.1873', '9.1873', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19834, '2021-09-24', 2547, 19155, 1752, 33006, '1.0000', '9.0195', '9.0195', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19835, '2021-09-24', 2221, 19156, 1752, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (19836, '2021-09-24', 2656, 19157, 1752, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19837, '2021-09-25', 8314, 19158, 1753, NULL, '1.0000', '7.5900', '7.5900', '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 (19838, '2021-09-25', 7744, 19159, 1754, 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 (19839, '2021-09-25', 9094, 19160, 1754, NULL, '1.0000', '6.0000', '6.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 (19840, '2021-09-25', 1625, 19161, 1754, 31021, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19841, '2021-09-25', 1625, 19161, 1754, 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 (19842, '2021-09-25', 7638, 19162, 1754, 34513, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19843, '2021-09-25', 7848, 19163, 1754, NULL, '1.0000', '1.3500', '1.3500', '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 (19844, '2021-09-25', 7756, 19164, 1754, NULL, '1.0000', '21.7700', '21.7700', '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 (19845, '2021-09-25', 8000, 19165, 1754, NULL, '1.0000', '27.9111', '27.9111', '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 (19846, '2021-09-25', 9092, 19166, 1754, NULL, '2.0000', '5.2900', '5.2900', '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 (19847, '2021-09-25', 7554, 19167, 1754, 35614, '10.0000', '-2.0627', '-2.0627', '2.2000', '2.2000', '53.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19848, '2021-09-25', 7354, 19168, 1754, NULL, '1.0000', '18.0000', '18.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 (19849, '2021-09-25', 2287, 19169, 1754, NULL, '4.0000', '2.3000', '2.3000', '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 (19850, '2021-09-25', 1388, 19170, 1754, 35629, '1.0000', '5.5031', '5.5031', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19851, '2021-09-25', 2713, 19171, 1754, 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 (19852, '2021-09-25', 7899, 19172, 1754, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19853, '2021-09-25', 7355, 19173, 1754, NULL, '1.0000', '11.6400', '11.6400', '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 (19854, '2021-09-25', 7848, 19174, 1754, NULL, '1.0000', '1.3500', '1.3500', '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 (19855, '2021-09-25', 8172, 19175, 1754, NULL, '2.0000', '40.7000', '40.7000', '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 (19856, '2021-09-25', 8134, 19176, 1754, NULL, '1.0000', '5.2600', '5.2600', '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 (19857, '2021-09-25', 9193, 19177, 1754, NULL, '1.0000', '6.7400', '6.7400', '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 (19858, '2021-09-25', 7464, 19178, 1754, NULL, '1.0000', '2.2800', '2.2800', '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 (19859, '2021-09-25', 2169, 19179, 1755, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19860, '2021-09-25', 2768, 19180, 1755, 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 (19861, '2021-09-25', 1307, 19181, 1755, 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 (19862, '2021-09-25', 2891, 19182, 1755, 34014, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19863, '2021-09-25', 1577, 19183, 1755, 34653, '1.0000', '2.5218', '2.5218', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19864, '2021-09-25', 2280, 19184, 1755, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '22.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 (19865, '2021-09-25', 2409, 19185, 1755, 13752, '1.0000', '2.3100', '2.3100', '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 (19866, '2021-09-25', 1805, 19186, 1755, 34965, '2.0000', '4.5244', '4.5244', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19867, '2021-09-25', 2260, 19187, 1755, 23137, '1.0000', '4.2000', '4.2000', '6.0000', '6.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 (19868, '2021-09-25', 1667, 19188, 1755, 24939, '1.0000', '1404.9249', '1404.9249', '8.5000', '8.5000', '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 (19869, '2021-09-25', 1667, 19188, 1755, 19361, '3.0000', '1404.9249', '1404.9249', '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 (19870, '2021-09-25', 2655, 19189, 1755, 35785, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19871, '2021-09-25', 2167, 19190, 1755, 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 (19872, '2021-09-25', 8638, 19191, 1755, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19873, '2021-09-25', 1863, 19192, 1755, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19874, '2021-09-25', 1368, 19193, 1755, 23174, '1.0000', '5.5000', '5.5000', '7.0000', '7.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 (19875, '2021-09-25', 2769, 19194, 1755, 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 (19876, '2021-09-25', 2959, 19195, 1755, 22560, '2.0000', '4.0000', '4.0000', '6.5000', '6.5000', '1.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 (19877, '2021-09-25', 1577, 19196, 1755, 34653, '1.0000', '2.5218', '2.5218', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19878, '2021-09-25', 1708, 19197, 1756, 10382, '-2.0000', '20.1900', '20.1900', '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 (19879, '2021-09-25', 1708, 19197, 1756, NULL, '3.0000', '20.1900', '20.1900', '28.0000', '28.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 (19880, '2021-09-25', 1338, 19198, 1756, 16502, '-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 (19881, '2021-09-25', 1338, 19198, 1756, NULL, '2.0000', '4.0000', '4.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 (19882, '2021-09-25', 1301, 19199, 1756, 30, '1.0000', '86.7545', '86.7545', '2.0000', '2.0000', '10.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 (19883, '2021-09-25', 2133, 19200, 1756, NULL, '1.0000', '19.0000', '19.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 (19884, '2021-09-25', 1463, 19201, 1756, 114, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.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 (19885, '2021-09-25', 2122, 19202, 1756, 839, '1.0000', '20.0000', '20.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 64);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19886, '2021-09-25', 8657, 19203, 1756, NULL, '1.0000', '6.3900', '6.3900', '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 (19887, '2021-09-25', 2681, 19204, 1756, 12164, '-1.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 (19888, '2021-09-25', 2681, 19204, 1756, 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 (19889, '2021-09-25', 1876, 19205, 1756, 6312, '1.0000', '0.9126', '0.9126', '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 (19890, '2021-09-25', 2252, 19206, 1756, 2789, '-4.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 (19891, '2021-09-25', 2252, 19206, 1756, NULL, '5.0000', '9.5000', '9.5000', '12.5000', '12.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 (19892, '2021-09-25', 2317, 19207, 1756, 3473, '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 (19893, '2021-09-25', 2169, 19208, 1756, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (19894, '2021-09-25', 2252, 19209, 1756, 2789, '-4.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 (19895, '2021-09-25', 2252, 19209, 1756, NULL, '5.0000', '9.5000', '9.5000', '12.5000', '12.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 (19896, '2021-09-25', 1863, 19210, 1756, 10808, '-11.0000', '0.4136', '0.4136', '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 (19897, '2021-09-25', 1863, 19210, 1756, NULL, '12.0000', '0.4136', '0.4136', '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 (19898, '2021-09-25', 2124, 19211, 1756, NULL, '1.0000', '25.0000', '25.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 (19899, '2021-09-25', 2135, 19212, 1756, 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 (19900, '2021-09-25', 1432, 19213, 1756, 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 (19901, '2021-09-25', 1615, 19214, 1756, 22253, '14.0000', '934682.9675', '934682.9675', '7.0000', '7.0000', '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 (19902, '2021-09-25', 1523, 19215, 1756, 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 (19903, '2021-09-25', 1574, 19216, 1756, 7593, '-29.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 (19904, '2021-09-25', 1574, 19216, 1756, NULL, '30.0000', '1.9600', '1.9600', '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 (19905, '2021-09-25', 2169, 19217, 1756, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (19906, '2021-09-25', 8101, 19218, 1757, NULL, '2.0000', '21.7000', '21.7000', '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 (19907, '2021-09-25', 2965, 19219, 1758, NULL, '1.0000', '5.0000', '5.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 (19908, '2021-09-25', 1577, 19220, 1758, 34653, '1.0000', '2.5218', '2.5218', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19909, '2021-09-25', 1863, 19221, 1758, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19910, '2021-09-25', 1411, 19222, 1758, 33158, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19911, '2021-09-25', 2250, 19223, 1758, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19912, '2021-09-25', 2135, 19224, 1758, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19913, '2021-09-25', 2169, 19225, 1758, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19914, '2021-09-25', 2289, 19226, 1758, 13744, '3.0000', '0.2300', '0.2300', '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 (19915, '2021-09-25', 2366, 19227, 1758, 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 (19916, '2021-09-25', 2699, 19228, 1758, 35787, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19917, '2021-09-25', 1487, 19229, 1758, 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 (19918, '2021-09-25', 1574, 19230, 1758, 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 (19919, '2021-09-25', 1499, 19231, 1758, 33367, '3.0000', '0.4835', '0.4835', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19920, '2021-09-25', 7953, 19232, 1758, NULL, '1.0000', '6.0000', '6.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 (19921, '2021-09-25', 7641, 19233, 1758, NULL, '1.0000', '1.9000', '1.9000', '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 (19922, '2021-09-25', 2015, 19234, 1758, 25162, '1.0000', '5.0000', '5.0000', '8.0000', '8.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 (19923, '2021-09-25', 1690, 19235, 1758, 34933, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19924, '2021-09-25', 8608, 19236, 1758, NULL, '1.0000', '0.9000', '0.9000', '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 (19925, '2021-09-25', 2656, 19237, 1758, 35786, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19926, '2021-09-25', 2315, 19238, 1758, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19927, '2021-09-25', 2132, 19239, 1758, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '11.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 (19928, '2021-09-25', 1912, 19240, 1758, NULL, '1.0000', '0.6591', '0.6591', '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 (19929, '2021-09-25', 2354, 19241, 1758, 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 (19930, '2021-09-25', 1841, 19242, 1758, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19931, '2021-09-25', 2655, 19243, 1758, 35785, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19932, '2021-09-25', 1667, 19244, 1758, 19361, '2.0000', '1404.9249', '1404.9249', '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 (19933, '2021-09-25', 1855, 19245, 1758, 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 (19934, '2021-09-25', 1841, 19246, 1758, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19935, '2021-09-25', 8407, 19247, 1758, NULL, '1.0000', '2.9800', '2.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 (19936, '2021-09-25', 1532, 19248, 1758, 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 (19937, '2021-09-25', 1507, 19249, 1758, 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 (19938, '2021-09-25', 2237, 19250, 1759, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19939, '2021-09-25', 1916, 19251, 1759, 34640, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19940, '2021-09-25', 1651, 19252, 1759, 29640, '1.0000', '7.6717', '7.6717', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19941, '2021-09-25', 7715, 19253, 1759, NULL, '1.0000', '1.8900', '1.8900', '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 (19942, '2021-09-25', 1394, 19254, 1759, 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 (19943, '2021-09-25', 2916, 19255, 1759, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19944, '2021-09-25', 8000, 19256, 1759, NULL, '1.0000', '25.8200', '25.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 (19945, '2021-09-25', 7522, 19257, 1760, NULL, '1.0000', '5.2000', '5.2000', '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 (19946, '2021-09-25', 2908, 19258, 1760, 18685, '1.0000', '0.2700', '0.2700', '0.5000', '0.5000', '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 (19947, '2021-09-25', 8773, 19259, 1760, 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 (19948, '2021-09-25', 8773, 19260, 1760, 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 (19949, '2021-09-25', 3011, 19261, 1760, 24099, '20.0000', '3.7800', '3.7800', '5.0000', '5.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 (19950, '2021-09-25', 2699, 19262, 1760, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19951, '2021-09-25', 1863, 19263, 1760, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19952, '2021-09-25', 1635, 19264, 1760, 31720, '10.0000', '56.1429', '56.1429', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19953, '2021-09-25', 1635, 19264, 1760, 13540, '5.0000', '56.1429', '56.1429', '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 (19954, '2021-09-25', 2081, 19265, 1760, NULL, '1.0000', '7.9000', '7.9000', '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 (19955, '2021-09-25', 1943, 19266, 1760, 34688, '1.0000', '4.6035', '4.6035', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19956, '2021-09-25', 2094, 19267, 1760, 6002, '1.0000', '2.9000', '2.9000', '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 (19957, '2021-09-25', 7411, 19268, 1760, NULL, '1.0000', '1.3500', '1.3500', '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 (19958, '2021-09-25', 2298, 19269, 1760, NULL, '2.0000', '6.0000', '6.0000', '8.5000', '8.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 (19959, '2021-09-25', 2154, 19270, 1760, NULL, '1.0000', '10.5000', '10.5000', '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 (19960, '2021-09-25', 8242, 19271, 1760, NULL, '1.0000', '0.4900', '0.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 (19961, '2021-09-25', 7748, 19272, 1760, NULL, '1.0000', '33.9800', '33.9800', '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 (19962, '2021-09-25', 8923, 19273, 1760, NULL, '1.0000', '2.5000', '2.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 (19963, '2021-09-25', 1876, 19274, 1760, 34418, '1.0000', '33.8475', '33.8475', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19964, '2021-09-25', 1967, 19275, 1760, NULL, '1.0000', '19.5900', '19.5900', '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 (19965, '2021-09-25', 1501, 19276, 1760, 23580, '1.0000', '1566.1965', '1566.1965', '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 (19966, '2021-09-25', 2316, 19277, 1760, 32617, '1.0000', '44.3250', '44.3250', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19967, '2021-09-25', 2250, 19278, 1760, 33010, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19968, '2021-09-25', 1863, 19279, 1760, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19969, '2021-09-25', 1638, 19280, 1760, 31965, '8.0000', '5.3291', '5.3291', '8.0000', '8.0000', '24.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19970, '2021-09-25', 2656, 19281, 1760, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19971, '2021-09-25', 1935, 19282, 1760, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19972, '2021-09-25', 7342, 19283, 1760, NULL, '1.0000', '15.6000', '15.6000', '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 (19973, '2021-09-25', 3017, 19284, 1760, NULL, '1.0000', '3.9000', '3.9000', '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 (19974, '2021-09-25', 2277, 19285, 1760, 32043, '3.0000', '-2.1838', '-2.1838', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19975, '2021-09-25', 2254, 19286, 1760, 29808, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19976, '2021-09-25', 2604, 19287, 1760, 34856, '5.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19977, '2021-09-25', 2221, 19288, 1760, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (19978, '2021-09-25', 2320, 19289, 1760, 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 (19979, '2021-09-25', 2862, 19290, 1760, 17481, '1.0000', '5.0000', '5.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 (19980, '2021-09-25', 1637, 19291, 1760, 35727, '1.0000', '58.3794', '58.3794', '14.0000', '14.0000', '19.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19981, '2021-09-25', 2964, 19292, 1760, 21817, '1.0000', '6.6000', '6.6000', '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 (19982, '2021-09-25', 3016, 19293, 1760, 23593, '1.0000', '14.5200', '14.5200', '19.5000', '19.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 (19983, '2021-09-25', 1386, 19294, 1761, 35744, '2.0000', '49.5390', '49.5390', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19984, '2021-09-25', 2393, 19295, 1761, 31994, '2.0000', '-1.0985', '-1.0985', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19985, '2021-09-25', 1783, 19296, 1761, 32816, '3.0000', '51.5264', '51.5264', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19986, '2021-09-25', 1863, 19297, 1762, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19987, '2021-09-25', 8594, 19298, 1762, 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 (19988, '2021-09-25', 2656, 19299, 1762, 35786, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19989, '2021-09-25', 2699, 19300, 1762, 35787, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19990, '2021-09-25', 1935, 19301, 1762, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19991, '2021-09-25', 1649, 19302, 1762, 34634, '1.0000', '11.1900', '11.1900', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19992, '2021-09-25', 1667, 19303, 1763, 19361, '2.0000', '1404.9249', '1404.9249', '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 (19993, '2021-09-25', 7453, 19304, 1764, NULL, '1.0000', '28.5000', '28.5000', '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 (19994, '2021-09-25', 7558, 19305, 1764, 35599, '10.0000', '2.2011', '2.2011', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (19995, '2021-09-25', 8359, 19306, 1764, NULL, '1.0000', '16.7750', '16.7750', '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 (19996, '2021-09-25', 7672, 19307, 1764, NULL, '1.0000', '1.0200', '1.0200', '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 (19997, '2021-09-25', 7524, 19308, 1764, NULL, '1.0000', '11.9500', '11.9500', '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 (19998, '2021-09-25', 7719, 19309, 1764, NULL, '1.0000', '5.5000', '5.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 (19999, '2021-09-25', 8233, 19310, 1764, NULL, '1.0000', '5.0000', '5.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 (20000, '2021-09-25', 8658, 19311, 1764, NULL, '1.0000', '17.1000', '17.1000', '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 (20001, '2021-09-25', 9160, 19312, 1764, NULL, '1.0000', '15.0000', '15.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 (20002, '2021-09-25', 8328, 19313, 1764, 33717, '1.0000', '8.0882', '8.0882', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20003, '2021-09-25', 1706, 19314, 1764, 35187, '1.0000', '15.3500', '15.3500', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20004, '2021-09-25', 2656, 19315, 1764, 34563, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20005, '2021-09-25', 7453, 19316, 1764, NULL, '1.0000', '28.5000', '28.5000', '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 (20006, '2021-09-25', 7713, 19317, 1764, NULL, '5.0000', '4.4000', '4.4000', '0.6000', '0.6000', '-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 (20007, '2021-09-25', 7353, 19318, 1764, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20008, '2021-09-25', 7588, 19319, 1764, NULL, '1.0000', '7.6111', '7.6111', '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 (20009, '2021-09-25', 7587, 19320, 1764, NULL, '1.0000', '1.5000', '1.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 (20010, '2021-09-25', 7991, 19321, 1764, 30181, '1.0000', '26.5700', '26.5700', '35.5000', '35.5000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20011, '2021-09-25', 7799, 19322, 1764, NULL, '1.0000', '2.0000', '2.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 (20012, '2021-09-25', 2491, 19323, 1764, 35577, '1.0000', '12.1920', '12.1920', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20013, '2021-09-25', 2959, 19324, 1764, NULL, '2.0000', '4.0000', '4.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 (20014, '2021-09-25', 7518, 19325, 1764, NULL, '1.0000', '-21.7700', '-21.7700', '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 (20015, '2021-09-25', 7947, 19326, 1764, NULL, '1.0000', '14.4400', '14.4400', '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 (20016, '2021-09-25', 1856, 19327, 1764, 35231, '1.0000', '4.3888', '4.3888', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20017, '2021-09-25', 1318, 19328, 1764, 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 (20018, '2021-09-25', 9148, 19329, 1764, NULL, '1.0000', '20.1000', '20.1000', '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 (20019, '2021-09-25', 7724, 19330, 1764, NULL, '1.0000', '0.0000', '0.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 (20020, '2021-09-25', 7446, 19331, 1764, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20021, '2021-09-25', 7509, 19332, 1764, 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 (20022, '2021-09-25', 2277, 19333, 1764, NULL, '2.0000', '0.7800', '0.7800', '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 (20023, '2021-09-25', 8166, 19334, 1764, NULL, '1.0000', '4.6000', '4.6000', '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 (20024, '2021-09-25', 7932, 19335, 1764, NULL, '1.0000', '3.3000', '3.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 (20025, '2021-09-25', 7509, 19336, 1764, 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 (20026, '2021-09-25', 7680, 19337, 1764, NULL, '1.0000', '7.4000', '7.4000', '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 (20027, '2021-09-25', 7612, 19338, 1764, NULL, '1.0000', '46.0000', '46.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 (20028, '2021-09-25', 7774, 19339, 1764, NULL, '1.0000', '3.5000', '3.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 (20029, '2021-09-25', 1867, 19340, 1764, 35213, '1.0000', '9.9490', '9.9490', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20030, '2021-09-25', 2289, 19341, 1764, NULL, '1.0000', '0.2300', '0.2300', '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 (20031, '2021-09-25', 8324, 19342, 1764, 31660, '1.0000', '3.4130', '3.4130', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20032, '2021-09-25', 2440, 19343, 1765, 21806, '1.0000', '5.1000', '5.1000', '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 (20033, '2021-09-25', 1812, 19344, 1765, 33219, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20034, '2021-09-25', 1557, 19345, 1765, 24110, '1.0000', '7.9351', '7.9351', '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 (20035, '2021-09-25', 2020, 19346, 1765, 35725, '1.0000', '7.7586', '7.7586', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20036, '2021-09-25', 2142, 19347, 1765, NULL, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20037, '2021-09-25', 2697, 19348, 1765, 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 (20038, '2021-09-25', 2660, 19349, 1765, 18686, '3.0000', '0.7000', '0.7000', '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 (20039, '2021-09-25', 2075, 19350, 1765, 5610, '1.0000', '7.0000', '7.0000', '9.5000', '9.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 (20040, '2021-09-25', 2829, 19351, 1765, 35738, '1.0000', '25.4338', '25.4338', '39.5000', '39.5000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20041, '2021-09-25', 1521, 19352, 1765, 31985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20042, '2021-09-25', 2291, 19353, 1765, 24331, '1.0000', '20.6400', '20.6400', '27.3000', '27.3000', '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 (20043, '2021-09-25', 2135, 19354, 1766, 34855, '1.0000', '2.2857', '2.2857', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20044, '2021-09-25', 1665, 19355, 1766, 34667, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20045, '2021-09-26', 7558, 19356, 1767, NULL, '4.0000', '33.0200', '33.0200', '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 (20046, '2021-09-26', 2656, 19357, 1767, 36099, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20047, '2021-09-26', 2169, 19358, 1767, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20048, '2021-09-26', 1342, 19359, 1767, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20049, '2021-09-26', 1501, 19360, 1767, NULL, '1.0000', '2.2111', '2.2111', '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 (20050, '2021-09-26', 9336, 19361, 1767, 33370, '1.0000', '4.9500', '4.9500', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20051, '2021-09-26', 2073, 19362, 1767, 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 (20052, '2021-09-26', 1687, 19363, 1767, NULL, '1.0000', '12.0000', '12.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 (20053, '2021-09-26', 8744, 19364, 1767, NULL, '2.0000', '3.5000', '3.5000', '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 (20054, '2021-09-26', 1665, 19365, 1767, 33349, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20055, '2021-09-26', 1523, 19366, 1767, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '5.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 (20056, '2021-09-26', 2108, 19367, 1767, 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 (20057, '2021-09-26', 1841, 19368, 1767, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '90.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20058, '2021-09-26', 1637, 19369, 1767, 19388, '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 (20059, '2021-09-26', 2315, 19370, 1767, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20060, '2021-09-26', 1665, 19371, 1767, 33349, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20061, '2021-09-26', 2384, 19372, 1767, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (20062, '2021-09-26', 1863, 19373, 1767, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20063, '2021-09-26', 9482, 19374, 1767, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '102.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20064, '2021-09-26', 1499, 19375, 1767, 33367, '3.0000', '0.4835', '0.4835', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20065, '2021-09-26', 2547, 19376, 1767, 13764, '1.0000', '8.9650', '8.9650', '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 (20066, '2021-09-26', 2668, 19377, 1767, 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 (20067, '2021-09-26', 2068, 19378, 1767, 34568, '1.0000', '13.2503', '13.2503', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20068, '2021-09-26', 1690, 19379, 1767, 34933, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20069, '2021-09-26', 1590, 19380, 1767, 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 (20070, '2021-09-26', 2167, 19381, 1767, 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 (20071, '2021-09-26', 2699, 19382, 1767, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20072, '2021-09-26', 2237, 19383, 1767, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20073, '2021-09-26', 2284, 19384, 1767, 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 (20074, '2021-09-26', 2275, 19385, 1767, 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 (20075, '2021-09-26', 2242, 19386, 1767, NULL, '3.0000', '0.6028', '0.6028', '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 (20076, '2021-09-26', 8646, 19387, 1767, NULL, '10.0000', '35.0000', '35.0000', '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 (20077, '2021-09-26', 1406, 19388, 1768, 34926, '1.0000', '18.4200', '18.4200', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20078, '2021-09-26', 1912, 19389, 1769, NULL, '2.0000', '0.6591', '0.6591', '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 (20079, '2021-09-26', 1501, 19390, 1770, NULL, '1.0000', '2.2111', '2.2111', '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 (20080, '2021-09-26', 2643, 19391, 1770, 36117, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20081, '2021-09-26', 1519, 19392, 1770, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20082, '2021-09-26', 1888, 19393, 1770, 29642, '1.0000', '118.7393', '118.7393', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20083, '2021-09-26', 8043, 19394, 1770, NULL, '1.0000', '27.9800', '27.9800', '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 (20084, '2021-09-26', 7746, 19395, 1770, NULL, '1.0000', '2.8600', '2.8600', '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 (20085, '2021-09-26', 1598, 19396, 1770, NULL, '1.0000', '3.1820', '3.1820', '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 (20086, '2021-09-26', 2821, 19397, 1770, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20087, '2021-09-26', 1935, 19398, 1770, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20088, '2021-09-26', 2384, 19399, 1770, 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 (20089, '2021-09-26', 2083, 19400, 1770, 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 (20090, '2021-09-26', 2964, 19401, 1770, 25155, '1.0000', '6.6000', '6.6000', '7.5000', '7.5000', '0.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 (20091, '2021-09-26', 1863, 19402, 1770, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20092, '2021-09-26', 2169, 19403, 1770, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20093, '2021-09-26', 2284, 19404, 1770, 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 (20094, '2021-09-26', 2454, 19405, 1771, 33792, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20095, '2021-09-26', 2865, 19406, 1771, 17692, '-1.0000', '2.8000', '2.8000', '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 (20096, '2021-09-26', 2865, 19406, 1771, 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 (20097, '2021-09-26', 1602, 19407, 1771, 5897, '-3.0000', '6.7859', '6.7859', '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 (20098, '2021-09-26', 1602, 19407, 1771, NULL, '4.0000', '6.7859', '6.7859', '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 (20099, '2021-09-26', 2020, 19408, 1771, 10164, '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 (20100, '2021-09-26', 1943, 19409, 1771, 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 (20101, '2021-09-26', 1523, 19410, 1771, 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 (20102, '2021-09-26', 1663, 19411, 1771, NULL, '1.0000', '97.7700', '97.7700', '115.0000', '115.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20103, '2021-09-26', 2088, 19412, 1771, 21781, '3.0000', '1.3800', '1.3800', '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 (20104, '2021-09-26', 1533, 19413, 1771, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (20105, '2021-09-26', 7756, 19414, 1771, NULL, '1.0000', '2.5000', '2.5000', '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 (20106, '2021-09-26', 1602, 19415, 1771, 5897, '-3.0000', '6.7859', '6.7859', '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 (20107, '2021-09-26', 1602, 19415, 1771, NULL, '4.0000', '6.7859', '6.7859', '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 (20108, '2021-09-26', 2242, 19416, 1771, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '23.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 (20109, '2021-09-26', 1533, 19417, 1771, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (20110, '2021-09-26', 2821, 19418, 1771, 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 (20111, '2021-09-26', 9089, 19419, 1771, NULL, '2.0000', '3.8000', '3.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 (20112, '2021-09-26', 1665, 19420, 1771, 3235, '-18.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 (20113, '2021-09-26', 1665, 19420, 1771, NULL, '19.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (20114, '2021-09-26', 1863, 19421, 1771, 10808, '-12.0000', '0.4136', '0.4136', '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 (20115, '2021-09-26', 1863, 19421, 1771, NULL, '13.0000', '0.4136', '0.4136', '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 (20116, '2021-09-26', 1387, 19422, 1771, 20639, '1.0000', '10.5068', '10.5068', '16.0000', '16.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 (20117, '2021-09-26', 1387, 19422, 1771, NULL, '1.0000', '10.5068', '10.5068', '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 (20118, '2021-09-26', 2022, 19423, 1771, 22308, '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 (20119, '2021-09-26', 2392, 19424, 1771, 22307, '1.0000', '3.7000', '3.7000', '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 (20120, '2021-09-26', 7756, 19425, 1771, NULL, '1.0000', '2.5000', '2.5000', '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 (20121, '2021-09-26', 7671, 19426, 1771, NULL, '4.0000', '15.5000', '15.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 (20122, '2021-09-26', 1908, 19427, 1771, 5444, '-4.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 (20123, '2021-09-26', 1908, 19427, 1771, NULL, '14.0000', '90.0000', '90.0000', '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 (20124, '2021-09-26', 2656, 19428, 1771, 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 (20125, '2021-09-26', 2604, 19429, 1771, 14491, '-1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20126, '2021-09-26', 2604, 19429, 1771, NULL, '6.0000', '90.0000', '90.0000', '110.0000', '110.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 (20127, '2021-09-26', 1386, 19430, 1771, 22316, '2.0000', '4.5000', '4.5000', '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 (20128, '2021-09-26', 8133, 19431, 1771, 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 (20129, '2021-09-26', 2842, 19432, 1771, 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 (20130, '2021-09-26', 2290, 19433, 1771, 2950, '-1.0000', '6.8500', '6.8500', '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 (20131, '2021-09-26', 2290, 19433, 1771, NULL, '2.0000', '6.8500', '6.8500', '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 (20132, '2021-09-26', 2289, 19434, 1771, 2949, '-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 (20133, '2021-09-26', 2289, 19434, 1771, 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 (20134, '2021-09-26', 1863, 19435, 1771, 10808, '-12.0000', '0.4136', '0.4136', '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 (20135, '2021-09-26', 1863, 19435, 1771, NULL, '13.0000', '0.4136', '0.4136', '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 (20136, '2021-09-26', 1410, 19436, 1771, 22317, '1.0000', '2.2000', '2.2000', '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 (20137, '2021-09-26', 2649, 19437, 1771, 11163, '-1.0000', '71.9188', '71.9188', '101.0000', '101.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20138, '2021-09-26', 2649, 19437, 1771, NULL, '2.0000', '71.9188', '71.9188', '101.0000', '101.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 (20139, '2021-09-26', 2285, 19438, 1771, 2945, '-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 (20140, '2021-09-26', 2285, 19438, 1771, NULL, '3.0000', '35.8000', '35.8000', '48.0000', '48.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 (20141, '2021-09-26', 1708, 19439, 1771, 10382, '-3.0000', '20.1900', '20.1900', '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 (20142, '2021-09-26', 1708, 19439, 1771, NULL, '4.0000', '20.1900', '20.1900', '28.0000', '28.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 (20143, '2021-09-26', 2862, 19440, 1771, 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 (20144, '2021-09-26', 2320, 19441, 1771, 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 (20145, '2021-09-26', 7558, 19442, 1771, 33814, '10.0000', '1.9700', '1.9700', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20146, '2021-09-26', 2259, 19443, 1771, 2795, '1.0000', '19.9405', '19.9405', '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 (20147, '2021-09-26', 1867, 19444, 1771, NULL, '1.0000', '1.0500', '1.0500', '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 (20148, '2021-09-26', 2286, 19445, 1771, 2946, '-14.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 (20149, '2021-09-26', 2286, 19445, 1771, NULL, '16.0000', '4.3000', '4.3000', '6.0000', '6.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 (20150, '2021-09-26', 2401, 19446, 1771, NULL, '1.0000', '2.8000', '2.8000', '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 (20151, '2021-09-26', 2437, 19447, 1771, 5306, '-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 (20152, '2021-09-26', 2437, 19447, 1771, NULL, '2.0000', '80.0000', '80.0000', '100.0000', '100.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 (20153, '2021-09-26', 2681, 19448, 1772, 24201, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '3.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 (20154, '2021-09-26', 1529, 19449, 1772, 13747, '1.0000', '36.4099', '36.4099', '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 (20155, '2021-09-26', 2916, 19450, 1772, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20156, '2021-09-26', 2275, 19451, 1772, 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 (20157, '2021-09-26', 7781, 19452, 1772, NULL, '3.0000', '4.2500', '4.2500', '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 (20158, '2021-09-26', 1381, 19453, 1772, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20159, '2021-09-26', 1529, 19454, 1772, 13747, '1.0000', '36.4099', '36.4099', '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 (20160, '2021-09-26', 7708, 19455, 1772, NULL, '1.0000', '6.1400', '6.1400', '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 (20161, '2021-09-26', 7593, 19456, 1772, NULL, '1.0000', '2.4500', '2.4500', '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 (20162, '2021-09-26', 8061, 19457, 1773, NULL, '1.0000', '1.6000', '1.6000', '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 (20163, '2021-09-26', 7719, 19458, 1773, NULL, '1.0000', '5.5000', '5.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 (20164, '2021-09-26', 7883, 19459, 1773, NULL, '2.0000', '82.8700', '82.8700', '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 (20165, '2021-09-26', 2787, 19460, 1773, NULL, '1.0000', '16.0200', '16.0200', '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 (20166, '2021-09-26', 7532, 19461, 1773, NULL, '1.0000', '9.0500', '9.0500', '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 (20167, '2021-09-26', 8324, 19462, 1773, 31660, '2.0000', '3.4130', '3.4130', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20168, '2021-09-26', 7411, 19463, 1773, NULL, '1.0000', '1.3500', '1.3500', '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 (20169, '2021-09-26', 9275, 19464, 1773, NULL, '1.0000', '6.3000', '6.3000', '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 (20170, '2021-09-26', 1340, 19465, 1773, 34540, '1.0000', '2.7422', '2.7422', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20171, '2021-09-26', 8395, 19466, 1773, NULL, '1.0000', '0.9700', '0.9700', '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 (20172, '2021-09-26', 1706, 19467, 1773, 35187, '1.0000', '15.3500', '15.3500', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20173, '2021-09-26', 2726, 19468, 1773, 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 (20174, '2021-09-26', 1804, 19469, 1773, NULL, '1.0000', '4.2500', '4.2500', '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 (20175, '2021-09-26', 7719, 19470, 1773, NULL, '1.0000', '5.5000', '5.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 (20176, '2021-09-26', 7713, 19471, 1773, NULL, '9.0000', '4.4000', '4.4000', '0.6000', '0.6000', '-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 (20177, '2021-09-26', 7728, 19472, 1773, 32806, '1.0000', '3.1200', '3.1200', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20178, '2021-09-26', 7709, 19473, 1773, NULL, '2.0000', '35.8000', '35.8000', '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 (20179, '2021-09-26', 7671, 19474, 1773, NULL, '4.0000', '15.5000', '15.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 (20180, '2021-09-26', 7756, 19475, 1773, NULL, '1.0000', '21.7700', '21.7700', '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 (20181, '2021-09-26', 3062, 19476, 1773, 30195, '1.0000', '6.0700', '6.0700', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20182, '2021-09-26', 1805, 19477, 1773, 35229, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20183, '2021-09-26', 8645, 19478, 1773, 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 (20184, '2021-09-26', 7762, 19479, 1773, NULL, '1.0000', '5.1000', '5.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 (20185, '2021-09-26', 9092, 19480, 1773, NULL, '1.0000', '5.2900', '5.2900', '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 (20186, '2021-09-26', 7473, 19481, 1773, NULL, '1.0000', '9.2200', '9.2200', '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 (20187, '2021-09-26', 1596, 19482, 1773, 36079, '1.0000', '2.1642', '2.1642', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20188, '2021-09-26', 8166, 19483, 1773, NULL, '1.0000', '4.6000', '4.6000', '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 (20189, '2021-09-26', 7641, 19484, 1773, NULL, '2.0000', '6.5038', '6.5038', '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 (20190, '2021-09-26', 2060, 19485, 1773, 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 (20191, '2021-09-26', 9160, 19486, 1773, NULL, '1.0000', '15.0000', '15.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 (20192, '2021-09-26', 8548, 19487, 1773, NULL, '1.0000', '12.0000', '12.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 (20193, '2021-09-26', 7411, 19488, 1773, NULL, '1.0000', '1.3500', '1.3500', '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 (20194, '2021-09-26', 8166, 19489, 1773, NULL, '1.0000', '4.6000', '4.6000', '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 (20195, '2021-09-26', 8247, 19490, 1773, NULL, '2.0000', '10.0000', '10.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 (20196, '2021-09-26', 8153, 19491, 1773, NULL, '2.0000', '0.3200', '0.3200', '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 (20197, '2021-09-26', 9471, 19492, 1773, 32154, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20198, '2021-09-26', 7799, 19493, 1773, NULL, '1.0000', '2.0000', '2.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 (20199, '2021-09-26', 9409, 19494, 1773, NULL, '1.0000', '11.0000', '11.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 (20200, '2021-09-26', 7806, 19495, 1773, NULL, '5.0000', '14.0000', '14.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 (20201, '2021-09-26', 7457, 19496, 1773, 36031, '1.0000', '2.5902', '2.5902', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20202, '2021-09-26', 7738, 19497, 1773, NULL, '1.0000', '8.0000', '8.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 (20203, '2021-09-26', 8155, 19498, 1773, NULL, '1.0000', '65.0000', '65.0000', '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 (20204, '2021-09-26', 1586, 19499, 1773, 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 (20205, '2021-09-26', 7991, 19500, 1773, 30181, '1.0000', '26.5700', '26.5700', '35.5000', '35.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20206, '2021-09-26', 2250, 19501, 1773, 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 (20207, '2021-09-26', 2699, 19502, 1773, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20208, '2021-09-26', 7659, 19503, 1773, NULL, '1.0000', '5.9700', '5.9700', '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 (20209, '2021-09-26', 7590, 19504, 1773, NULL, '1.0000', '4.3600', '4.3600', '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 (20210, '2021-09-26', 1339, 19505, 1773, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20211, '2021-09-26', 7604, 19506, 1773, NULL, '1.0000', '4.3900', '4.3900', '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 (20212, '2021-09-26', 7684, 19507, 1773, NULL, '1.0000', '9.0000', '9.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 (20213, '2021-09-26', 7473, 19508, 1773, NULL, '10.0000', '9.2200', '9.2200', '0.6000', '0.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 (20214, '2021-09-26', 8152, 19509, 1773, NULL, '1.0000', '0.1400', '0.1400', '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 (20215, '2021-09-26', 8753, 19510, 1773, NULL, '1.0000', '20.0000', '20.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 (20216, '2021-09-26', 1578, 19511, 1773, 30219, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20217, '2021-09-26', 7411, 19512, 1773, NULL, '1.0000', '1.3500', '1.3500', '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 (20218, '2021-09-26', 1854, 19513, 1773, 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 (20219, '2021-09-26', 7743, 19514, 1773, NULL, '1.0000', '7.3900', '7.3900', '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 (20220, '2021-09-26', 9463, 19515, 1773, 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 (20221, '2021-09-26', 8308, 19516, 1773, NULL, '1.0000', '11.0000', '11.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 (20222, '2021-09-26', 2463, 19517, 1773, NULL, '4.0000', '2.8700', '2.8700', '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 (20223, '2021-09-26', 7558, 19518, 1773, 36058, '3.0000', '2.2000', '2.2000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20224, '2021-09-26', 8063, 19519, 1773, 34558, '1.0000', '-23.2756', '-23.2756', '7.0000', '7.0000', '37.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20225, '2021-09-26', 8594, 19520, 1773, 32809, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20226, '2021-09-26', 2656, 19521, 1773, 34563, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20227, '2021-09-26', 2699, 19522, 1773, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20228, '2021-09-26', 2463, 19523, 1773, NULL, '3.0000', '2.8700', '2.8700', '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 (20229, '2021-09-26', 1381, 19524, 1773, 36091, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20230, '2021-09-26', 7482, 19525, 1773, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '44.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20231, '2021-09-26', 7514, 19526, 1773, NULL, '4.0000', '12.9983', '12.9983', '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 (20232, '2021-09-26', 9418, 19527, 1773, NULL, '1.0000', '19.8000', '19.8000', '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 (20233, '2021-09-26', 9213, 19528, 1773, 32137, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20234, '2021-09-26', 2643, 19529, 1773, 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 (20235, '2021-09-26', 7715, 19530, 1773, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '32.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20236, '2021-09-26', 7652, 19531, 1773, NULL, '5.0000', '40.3000', '40.3000', '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 (20237, '2021-09-26', 8166, 19532, 1773, NULL, '2.0000', '4.6000', '4.6000', '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 (20238, '2021-09-26', 7411, 19533, 1773, NULL, '3.0000', '1.3500', '1.3500', '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 (20239, '2021-09-26', 1644, 19534, 1773, NULL, '1.0000', '90.0000', '90.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 (20240, '2021-09-26', 7671, 19535, 1773, NULL, '1.0000', '15.5000', '15.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 (20241, '2021-09-26', 8324, 19536, 1773, 31660, '1.0000', '3.4130', '3.4130', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20242, '2021-09-26', 1351, 19537, 1773, 35183, '1.0000', '40.0300', '40.0300', '53.0000', '53.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20243, '2021-09-26', 7465, 19538, 1773, 36025, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20244, '2021-09-26', 1596, 19539, 1773, 36079, '1.0000', '2.1642', '2.1642', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20245, '2021-09-26', 7514, 19540, 1773, NULL, '1.0000', '12.9983', '12.9983', '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 (20246, '2021-09-26', 9092, 19541, 1773, NULL, '1.0000', '5.2900', '5.2900', '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 (20247, '2021-09-26', 7609, 19542, 1773, NULL, '1.0000', '4.3300', '4.3300', '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 (20248, '2021-09-26', 7411, 19543, 1773, NULL, '1.0000', '1.3500', '1.3500', '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 (20249, '2021-09-26', 7689, 19544, 1773, NULL, '1.0000', '12.0700', '12.0700', '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 (20250, '2021-09-26', 2060, 19545, 1773, 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 (20251, '2021-09-26', 8712, 19546, 1773, NULL, '1.0000', '7.0400', '7.0400', '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 (20252, '2021-09-26', 9145, 19547, 1773, NULL, '1.0000', '9.0000', '9.0000', '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 (20253, '2021-09-26', 7459, 19548, 1773, NULL, '4.0000', '40.3500', '40.3500', '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 (20254, '2021-09-26', 8328, 19549, 1773, NULL, '1.0000', '8.0882', '8.0882', '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 (20255, '2021-09-26', 2995, 19550, 1773, 35215, '1.0000', '13.2500', '13.2500', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20256, '2021-09-26', 7641, 19551, 1773, NULL, '1.0000', '6.5038', '6.5038', '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 (20257, '2021-09-26', 2287, 19552, 1773, NULL, '4.0000', '2.3000', '2.3000', '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 (20258, '2021-09-26', 7560, 19553, 1773, NULL, '1.0000', '4.4500', '4.4500', '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 (20259, '2021-09-26', 7889, 19554, 1773, NULL, '1.0000', '15.0000', '15.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 (20260, '2021-09-26', 9329, 19555, 1773, NULL, '1.0000', '5.8000', '5.8000', '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 (20261, '2021-09-26', 7914, 19556, 1773, NULL, '1.0000', '19.0000', '19.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 (20262, '2021-09-26', 7392, 19557, 1773, 30020, '1.0000', '0.5000', '0.5000', '24.0000', '24.0000', '16.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20263, '2021-09-26', 7416, 19558, 1773, NULL, '1.0000', '1.2500', '1.2500', '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 (20264, '2021-09-26', 7521, 19559, 1773, NULL, '1.0000', '8.7600', '8.7600', '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 (20265, '2021-09-26', 2251, 19560, 1773, 35243, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20266, '2021-09-26', 1759, 19561, 1773, 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 (20267, '2021-09-26', 9480, 19562, 1773, 32799, '2.0000', '8.5000', '8.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20268, '2021-09-26', 8802, 19563, 1773, NULL, '1.0000', '5.0000', '5.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 (20269, '2021-09-26', 1460, 19564, 1773, 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 (20270, '2021-09-26', 2517, 19565, 1773, 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 (20271, '2021-09-26', 8061, 19566, 1773, NULL, '1.0000', '1.6000', '1.6000', '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 (20272, '2021-09-26', 7925, 19567, 1773, NULL, '1.0000', '11.8000', '11.8000', '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 (20273, '2021-09-26', 8319, 19568, 1773, 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 (20274, '2021-09-26', 8993, 19569, 1773, 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 (20275, '2021-09-26', 7703, 19570, 1773, NULL, '1.0000', '22.9900', '22.9900', '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 (20276, '2021-09-26', 8177, 19571, 1773, 32150, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20277, '2021-09-26', 8324, 19572, 1773, 31660, '1.0000', '3.4130', '3.4130', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20278, '2021-09-26', 7824, 19573, 1773, NULL, '1.0000', '8.0000', '8.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 (20279, '2021-09-26', 7622, 19574, 1773, NULL, '1.0000', '17.8100', '17.8100', '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 (20280, '2021-09-26', 7318, 19575, 1773, 35234, '1.0000', '12.3093', '12.3093', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20281, '2021-09-26', 7514, 19576, 1773, NULL, '1.0000', '12.9983', '12.9983', '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 (20282, '2021-09-26', 7756, 19577, 1773, NULL, '1.0000', '21.7700', '21.7700', '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 (20283, '2021-09-26', 9177, 19578, 1773, NULL, '10.0000', '0.8000', '0.8000', '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 (20284, '2021-09-26', 7546, 19579, 1773, NULL, '1.0000', '2.5000', '2.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 (20285, '2021-09-26', 2031, 19580, 1773, 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 (20286, '2021-09-26', 8657, 19581, 1773, NULL, '1.0000', '6.3816', '6.3816', '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 (20287, '2021-09-26', 9300, 19582, 1773, NULL, '1.0000', '12.0000', '12.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 (20288, '2021-09-26', 7806, 19583, 1773, NULL, '2.0000', '14.0000', '14.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 (20289, '2021-09-26', 8925, 19584, 1773, NULL, '1.0000', '2.4000', '2.4000', '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 (20290, '2021-09-26', 7905, 19585, 1773, NULL, '1.0000', '0.7000', '0.7000', '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 (20291, '2021-09-26', 7507, 19586, 1773, NULL, '1.0000', '6.5000', '6.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 (20292, '2021-09-26', 7753, 19587, 1773, NULL, '2.0000', '3.1400', '3.1400', '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 (20293, '2021-09-26', 9394, 19588, 1773, NULL, '1.0000', '5.5000', '5.5000', '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 (20294, '2021-09-26', 7661, 19589, 1773, NULL, '1.0000', '7.2000', '7.2000', '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 (20295, '2021-09-26', 7639, 19590, 1773, 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 (20296, '2021-09-26', 7782, 19591, 1773, NULL, '1.0000', '5.0000', '5.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 (20297, '2021-09-26', 8188, 19592, 1773, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20298, '2021-09-26', 7518, 19593, 1773, NULL, '1.0000', '-21.7700', '-21.7700', '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 (20299, '2021-09-26', 7675, 19594, 1773, NULL, '1.0000', '11.4300', '11.4300', '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 (20300, '2021-09-26', 1837, 19595, 1773, 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 (20301, '2021-09-26', 9089, 19596, 1773, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20302, '2021-09-26', 7641, 19597, 1773, NULL, '1.0000', '6.5038', '6.5038', '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 (20303, '2021-09-26', 8166, 19598, 1773, NULL, '1.0000', '4.6000', '4.6000', '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 (20304, '2021-09-26', 7708, 19599, 1773, NULL, '1.0000', '6.1400', '6.1400', '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 (20305, '2021-09-26', 7416, 19600, 1773, NULL, '1.0000', '1.2500', '1.2500', '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 (20306, '2021-09-26', 1904, 19601, 1773, 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 (20307, '2021-09-26', 7849, 19602, 1773, 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 (20308, '2021-09-26', 1972, 19603, 1774, 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 (20309, '2021-09-26', 1602, 19604, 1774, 5897, '-5.0000', '6.7859', '6.7859', '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 (20310, '2021-09-26', 1602, 19604, 1774, NULL, '6.0000', '6.7859', '6.7859', '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 (20311, '2021-09-26', 1602, 19605, 1774, 5897, '-5.0000', '6.7859', '6.7859', '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 (20312, '2021-09-26', 1602, 19605, 1774, NULL, '6.0000', '6.7859', '6.7859', '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 (20313, '2021-09-26', 2643, 19606, 1774, 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 (20314, '2021-09-26', 9469, 19607, 1774, NULL, '1.0000', '2.3000', '2.3000', '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 (20315, '2021-09-26', 1759, 19608, 1774, NULL, '1.0000', '11.5000', '11.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 (20316, '2021-09-26', 1533, 19609, 1774, 22263, '1.0000', '2.5917', '2.5917', '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 (20317, '2021-09-26', 1334, 19610, 1774, 230, '2.0000', '0.7000', '0.7000', '1.5000', '1.5000', '10.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 (20318, '2021-09-26', 2296, 19611, 1774, 2955, '1.0000', '13.2900', '13.2900', '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 (20319, '2021-09-26', 1337, 19612, 1774, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '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 (20320, '2021-09-26', 1901, 19613, 1774, 5480, '1.0000', '3.8432', '3.8432', '3.0000', '3.0000', '18.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 (20321, '2021-09-26', 1339, 19614, 1774, 235, '1.0000', '1.6012', '1.6012', '2.5000', '2.5000', '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 (20322, '2021-09-26', 1518, 19615, 1774, 6524, '-1.0000', '6.9000', '6.9000', '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 (20323, '2021-09-26', 1518, 19615, 1774, NULL, '2.0000', '6.9000', '6.9000', '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 (20324, '2021-09-26', 2057, 19616, 1775, 33373, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20325, '2021-09-26', 1912, 19617, 1775, NULL, '1.0000', '0.6591', '0.6591', '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 (20326, '2021-09-26', 2392, 19618, 1775, NULL, '1.0000', '3.2000', '3.2000', '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 (20327, '2021-09-26', 2022, 19619, 1775, 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 (20328, '2021-09-26', 1602, 19620, 1776, 5897, '-7.0000', '6.7859', '6.7859', '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 (20329, '2021-09-26', 1602, 19620, 1776, NULL, '8.0000', '6.7859', '6.7859', '10.5000', '10.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 (20330, '2021-09-26', 1494, 19621, 1776, 97, '1.0000', '11.9056', '11.9056', '6.5000', '6.5000', '2.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 (20331, '2021-09-26', 1876, 19622, 1776, 672, '1.0000', '0.9126', '0.9126', '30.0000', '30.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 (20332, '2021-09-26', 7915, 19623, 1776, NULL, '1.0000', '2.8000', '2.8000', '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 (20333, '2021-09-26', 2643, 19624, 1776, 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 (20334, '2021-09-27', 2349, 19625, 1777, NULL, '3.0000', '24.1000', '24.1000', '32.0000', '32.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 (20335, '2021-09-27', 9494, 19626, 1777, NULL, '2.0000', '24.5000', '24.5000', '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 (20336, '2021-09-27', 2673, 19627, 1777, 22283, '1.0000', '11.0000', '11.0000', '15.0000', '15.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 (20337, '2021-09-27', 1759, 19628, 1778, 6746, '-1.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 (20338, '2021-09-27', 1759, 19628, 1778, NULL, '2.0000', '11.5000', '11.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 (20339, '2021-09-27', 2251, 19629, 1778, 2788, '-1.0000', '10.9700', '10.9700', '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 (20340, '2021-09-27', 2251, 19629, 1778, NULL, '2.0000', '10.9700', '10.9700', '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 (20341, '2021-09-27', 2612, 19630, 1778, 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 (20342, '2021-09-27', 1667, 19631, 1778, 9745, '-9.0000', '5.9400', '5.9400', '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 (20343, '2021-09-27', 1667, 19631, 1778, NULL, '10.0000', '5.9400', '5.9400', '8.5000', '8.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 (20344, '2021-09-27', 2656, 19632, 1778, NULL, '2.0000', '1.5000', '1.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 (20345, '2021-09-27', 7342, 19633, 1778, NULL, '1.0000', '15.6000', '15.6000', '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 (20346, '2021-09-27', 8666, 19634, 1778, NULL, '1.0000', '0.4600', '0.4600', '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 (20347, '2021-09-27', 3047, 19635, 1778, NULL, '1.0000', '52.0200', '52.0200', '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 (20348, '2021-09-27', 2491, 19636, 1778, 6228, '-9.0000', '12.2000', '12.2000', '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 (20349, '2021-09-27', 2491, 19636, 1778, NULL, '11.0000', '12.2000', '12.2000', '17.0000', '17.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 (20350, '2021-09-27', 3017, 19637, 1778, NULL, '1.0000', '3.9000', '3.9000', '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 (20351, '2021-09-27', 2279, 19638, 1778, 2939, '-9.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 (20352, '2021-09-27', 2279, 19638, 1778, NULL, '10.0000', '2.7000', '2.7000', '4.0000', '4.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 (20353, '2021-09-27', 2712, 19639, 1778, 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 (20354, '2021-09-27', 8677, 19640, 1778, NULL, '2.0000', '1.2800', '1.2800', '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 (20355, '2021-09-27', 1863, 19641, 1778, 10808, '-14.0000', '0.4136', '0.4136', '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 (20356, '2021-09-27', 1863, 19641, 1778, NULL, '17.0000', '0.4136', '0.4136', '2.0000', '2.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 (20357, '2021-09-27', 2299, 19642, 1778, 2142, '1.0000', '6.0000', '6.0000', '8.5000', '8.5000', '3.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 (20358, '2021-09-27', 2320, 19643, 1778, 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 (20359, '2021-09-27', 7922, 19644, 1778, NULL, '1.0000', '6.9800', '6.9800', '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 (20360, '2021-09-27', 2512, 19645, 1778, 5912, '-2.0000', '20.0000', '20.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 (20361, '2021-09-27', 2512, 19645, 1778, NULL, '3.0000', '20.0000', '20.0000', '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 (20362, '2021-09-27', 1689, 19646, 1778, 549, '1.0000', '60.7198', '60.7198', '17.0000', '17.0000', '2.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 (20363, '2021-09-27', 9089, 19647, 1778, NULL, '1.0000', '3.8000', '3.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 (20364, '2021-09-27', 2320, 19648, 1778, 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 (20365, '2021-09-27', 2285, 19649, 1778, 2945, '-3.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 (20366, '2021-09-27', 2285, 19649, 1778, NULL, '4.0000', '35.8000', '35.8000', '48.0000', '48.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 (20367, '2021-09-27', 1452, 19650, 1778, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20368, '2021-09-27', 7671, 19651, 1778, NULL, '2.0000', '15.5000', '15.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 (20369, '2021-09-27', 2007, 19652, 1779, 22554, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.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 (20370, '2021-09-27', 3069, 19653, 1779, 25154, '1.0000', '5.0000', '5.0000', '6.0000', '6.0000', '4.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 (20371, '2021-09-27', 9445, 19654, 1779, 34644, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20372, '2021-09-27', 1665, 19655, 1779, 33349, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20373, '2021-09-27', 7482, 19656, 1779, 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 (20374, '2021-09-27', 1710, 19657, 1779, 19851, '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 (20375, '2021-09-27', 2821, 19658, 1779, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20376, '2021-09-27', 2332, 19659, 1779, 13739, '1.0000', '5.0900', '5.0900', '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 (20377, '2021-09-27', 8626, 19660, 1779, NULL, '1.0000', '10.0000', '10.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 (20378, '2021-09-27', 7860, 19661, 1779, NULL, '1.0000', '3.8500', '3.8500', '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 (20379, '2021-09-27', 7711, 19662, 1779, NULL, '1.0000', '0.3900', '0.3900', '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 (20380, '2021-09-27', 2233, 19663, 1779, 34013, '1.0000', '19.9766', '19.9766', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20381, '2021-09-27', 7748, 19664, 1779, NULL, '1.0000', '33.9800', '33.9800', '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 (20382, '2021-09-27', 1867, 19665, 1779, 34624, '1.0000', '5.8781', '5.8781', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20383, '2021-09-27', 1912, 19666, 1779, NULL, '1.0000', '0.6591', '0.6591', '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 (20384, '2021-09-27', 1529, 19667, 1779, 13747, '1.0000', '36.4099', '36.4099', '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 (20385, '2021-09-27', 2964, 19668, 1779, NULL, '1.0000', '6.6000', '6.6000', '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 (20386, '2021-09-27', 1695, 19669, 1779, 31109, '1.0000', '14.8348', '14.8348', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20387, '2021-09-27', 1450, 19670, 1779, 24966, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '20.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 (20388, '2021-09-27', 1504, 19671, 1780, 33138, '10.0000', '2.1782', '2.1782', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20389, '2021-09-27', 8340, 19672, 1780, NULL, '10.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (20390, '2021-09-27', 1375, 19673, 1780, 34919, '1.0000', '14.3000', '14.3000', '19.0000', '19.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20391, '2021-09-27', 7970, 19674, 1780, NULL, '5.0000', '5.5000', '5.5000', '3.1000', '3.1000', '-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 (20392, '2021-09-27', 2712, 19675, 1781, 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 (20393, '2021-09-27', 2247, 19676, 1781, 2784, '-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 (20394, '2021-09-27', 2247, 19676, 1781, NULL, '2.0000', '2.5000', '2.5000', '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 (20395, '2021-09-27', 7514, 19677, 1781, NULL, '1.0000', '2.2500', '2.2500', '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 (20396, '2021-09-27', 2315, 19678, 1781, 2735, '-90.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20397, '2021-09-27', 2315, 19678, 1781, NULL, '92.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20398, '2021-09-27', 2405, 19679, 1781, 4452, '-6.0000', '1.2000', '1.2000', '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 (20399, '2021-09-27', 2405, 19679, 1781, NULL, '7.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (20400, '2021-09-27', 1791, 19680, 1781, 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 (20401, '2021-09-27', 2037, 19681, 1781, 6389, '-3.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20402, '2021-09-27', 2037, 19681, 1781, NULL, '4.0000', '10.5000', '10.5000', '14.0000', '14.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 (20403, '2021-09-27', 2608, 19682, 1781, NULL, '1.0000', '83.3300', '83.3300', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20404, '2021-09-27', 8702, 19683, 1782, NULL, '1.0000', '3.6700', '3.6700', '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 (20405, '2021-09-27', 7739, 19684, 1782, NULL, '1.0000', '2.7500', '2.7500', '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 (20406, '2021-09-27', 7317, 19685, 1782, NULL, '1.0000', '19.5500', '19.5500', '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 (20407, '2021-09-27', 9167, 19686, 1782, 36041, '1.0000', '-1253.5456', '-1253.5456', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20408, '2021-09-27', 7446, 19687, 1782, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20409, '2021-09-27', 7671, 19688, 1782, NULL, '2.0000', '15.5000', '15.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 (20410, '2021-09-27', 7814, 19689, 1782, NULL, '2.0000', '13.0000', '13.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 (20411, '2021-09-27', 1605, 19690, 1782, NULL, '2.0000', '24.8500', '24.8500', '39.0000', '39.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 (20412, '2021-09-27', 9400, 19691, 1782, NULL, '2.0000', '0.5000', '0.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 (20413, '2021-09-27', 7544, 19692, 1782, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20414, '2021-09-27', 7328, 19693, 1782, 29979, '1.0000', '11.8200', '11.8200', '0.4000', '0.4000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20415, '2021-09-27', 7636, 19694, 1782, NULL, '2.0000', '11.8700', '11.8700', '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 (20416, '2021-09-27', 8362, 19695, 1782, NULL, '2.0000', '4.1000', '4.1000', '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 (20417, '2021-09-27', 8063, 19696, 1782, 34558, '1.0000', '-23.2756', '-23.2756', '7.0000', '7.0000', '36.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20418, '2021-09-27', 7524, 19697, 1782, NULL, '1.0000', '11.9500', '11.9500', '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 (20419, '2021-09-27', 9492, 19698, 1782, 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 (20420, '2021-09-27', 2968, 19699, 1782, NULL, '1.0000', '18.0000', '18.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 (20421, '2021-09-27', 9145, 19700, 1782, NULL, '1.0000', '9.0000', '9.0000', '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 (20422, '2021-09-27', 1837, 19701, 1782, 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 (20423, '2021-09-27', 7531, 19702, 1782, NULL, '1.0000', '16.5000', '16.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 (20424, '2021-09-27', 1347, 19703, 1782, 35208, '3.0000', '3.3400', '3.3400', '4.5000', '4.5000', '47.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20425, '2021-09-27', 1381, 19704, 1782, 36091, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20426, '2021-09-27', 7353, 19705, 1782, 30931, '2.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '22.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20427, '2021-09-27', 7671, 19706, 1782, NULL, '1.0000', '15.5000', '15.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 (20428, '2021-09-27', 9092, 19707, 1782, NULL, '5.0000', '5.2900', '5.2900', '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 (20429, '2021-09-27', 2617, 19708, 1782, NULL, '6.0000', '4.4000', '4.4000', '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 (20430, '2021-09-27', 8774, 19709, 1782, NULL, '1.0000', '8.0000', '8.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 (20431, '2021-09-27', 7576, 19710, 1782, NULL, '1.0000', '6.9100', '6.9100', '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 (20432, '2021-09-27', 9329, 19711, 1782, NULL, '1.0000', '5.8000', '5.8000', '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 (20433, '2021-09-27', 3001, 19712, 1782, NULL, '3.0000', '1.5000', '1.5000', '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 (20434, '2021-09-27', 7342, 19713, 1782, 31009, '1.0000', '2.1313', '2.1313', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20435, '2021-09-27', 7911, 19714, 1782, NULL, '1.0000', '4.3700', '4.3700', '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 (20436, '2021-09-27', 9160, 19715, 1782, NULL, '1.0000', '15.0000', '15.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 (20437, '2021-09-27', 8063, 19716, 1782, 34558, '1.0000', '-23.2756', '-23.2756', '7.0000', '7.0000', '36.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20438, '2021-09-27', 7671, 19717, 1782, NULL, '4.0000', '15.5000', '15.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 (20439, '2021-09-27', 2699, 19718, 1782, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20440, '2021-09-27', 9193, 19719, 1782, NULL, '3.0000', '6.7400', '6.7400', '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 (20441, '2021-09-27', 9511, 19720, 1782, 33753, '1.0000', '15.7600', '15.7600', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20442, '2021-09-27', 7638, 19721, 1782, 34513, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20443, '2021-09-27', 8679, 19722, 1782, NULL, '1.0000', '28.0000', '28.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 (20444, '2021-09-27', 8680, 19723, 1782, NULL, '1.0000', '2.0000', '2.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 (20445, '2021-09-27', 7820, 19724, 1782, NULL, '1.0000', '8.4000', '8.4000', '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 (20446, '2021-09-27', 8116, 19725, 1782, NULL, '1.0000', '57.5000', '57.5000', '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 (20447, '2021-09-27', 2655, 19726, 1783, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20448, '2021-09-27', 1780, 19727, 1783, 31706, '1.0000', '35.6000', '35.6000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20449, '2021-09-27', 1375, 19728, 1783, 34678, '1.0000', '88.5598', '88.5598', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20450, '2021-09-27', 1375, 19728, 1783, 3418, '1.0000', '88.5598', '88.5598', '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 (20451, '2021-09-27', 7417, 19729, 1783, NULL, '8.0000', '6.4100', '6.4100', '8.5000', '8.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 (20452, '2021-09-27', 2366, 19730, 1783, 13636, '2.0000', '3.7873', '3.7873', '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 (20453, '2021-09-27', 3029, 19731, 1783, 31981, '1.0000', '6.1916', '6.1916', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20454, '2021-09-27', 7534, 19732, 1783, 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 (20455, '2021-09-27', 2169, 19733, 1783, 33220, '2.0000', '1.0100', '1.0100', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20456, '2021-09-27', 1845, 19734, 1783, 33232, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20457, '2021-09-27', 1637, 19735, 1783, 35991, '1.0000', '130.3063', '130.3063', '14.0000', '14.0000', '18.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20458, '2021-09-27', 1402, 19736, 1783, 10243, '2.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 (20459, '2021-09-27', 1488, 19737, 1783, 33032, '1.0000', '18.3333', '18.3333', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20460, '2021-09-27', 1573, 19738, 1783, 32826, '1.0000', '17.4802', '17.4802', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20461, '2021-09-27', 8252, 19739, 1783, NULL, '1.0000', '27.9300', '27.9300', '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 (20462, '2021-09-27', 1602, 19740, 1783, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '23.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20463, '2021-09-27', 2672, 19741, 1783, 33029, '2.0000', '10.7949', '10.7949', '20.0000', '20.0000', '10.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20464, '2021-09-27', 2379, 19742, 1783, 4385, '1.0000', '1.5900', '1.5900', '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 (20465, '2021-09-27', 1787, 19743, 1783, 4930, '1.0000', '0.8100', '0.8100', '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 (20466, '2021-09-27', 1837, 19744, 1783, 31714, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20467, '2021-09-27', 7741, 19745, 1784, NULL, '1.0000', '1.2000', '1.2000', '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 (20468, '2021-09-27', 1410, 19746, 1784, 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 (20469, '2021-09-27', 2941, 19747, 1784, 22601, '1.0000', '2.6600', '2.6600', '4.0000', '4.0000', '0.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 (20470, '2021-09-27', 9336, 19748, 1784, 33370, '1.0000', '4.9500', '4.9500', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20471, '2021-09-27', 1528, 19749, 1784, 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 (20472, '2021-09-27', 2623, 19750, 1784, 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 (20473, '2021-09-27', 8518, 19751, 1784, NULL, '1.0000', '17.6400', '17.6400', '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 (20474, '2021-09-27', 7459, 19752, 1784, 34603, '1.0000', '-6.1729', '-6.1729', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20475, '2021-09-27', 2348, 19753, 1784, 13756, '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 (20476, '2021-09-27', 7404, 19754, 1784, NULL, '1.0000', '2.0000', '2.0000', '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 (20477, '2021-09-27', 7708, 19755, 1784, NULL, '1.0000', '6.1400', '6.1400', '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 (20478, '2021-09-27', 2315, 19756, 1784, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20479, '2021-09-27', 2825, 19757, 1784, NULL, '1.0000', '12.0000', '12.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 (20480, '2021-09-27', 9214, 19758, 1784, NULL, '1.0000', '9.6000', '9.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 (20481, '2021-09-27', 8765, 19759, 1784, 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 (20482, '2021-09-27', 2916, 19760, 1784, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20483, '2021-09-27', 2223, 19761, 1784, 22519, '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 (20484, '2021-09-27', 2967, 19762, 1784, 33376, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20485, '2021-09-27', 1866, 19763, 1784, 34660, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20486, '2021-09-27', 2169, 19764, 1784, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20487, '2021-09-27', 1649, 19765, 1784, 34634, '1.0000', '11.1900', '11.1900', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20488, '2021-09-27', 1935, 19766, 1784, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20489, '2021-09-27', 2293, 19767, 1784, 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 (20490, '2021-09-27', 1498, 19768, 1784, 19871, '4.0000', '0.3300', '0.3300', '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 (20491, '2021-09-27', 1755, 19769, 1784, 19326, '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 (20492, '2021-09-27', 8746, 19770, 1784, NULL, '1.0000', '3.8000', '3.8000', '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 (20493, '2021-09-27', 7411, 19771, 1784, NULL, '1.0000', '1.3500', '1.3500', '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 (20494, '2021-09-27', 1519, 19772, 1784, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20495, '2021-09-27', 1667, 19773, 1784, 19361, '1.0000', '1404.9249', '1404.9249', '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 (20496, '2021-09-27', 7769, 19774, 1784, 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 (20497, '2021-09-27', 2167, 19775, 1784, 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 (20498, '2021-09-27', 2027, 19776, 1784, 22551, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.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 (20499, '2021-09-27', 2102, 19777, 1784, 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 (20500, '2021-09-27', 7411, 19778, 1784, NULL, '1.0000', '1.3500', '1.3500', '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 (20501, '2021-09-27', 2320, 19779, 1784, 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 (20502, '2021-09-27', 2592, 19780, 1784, 25022, '2.0000', '7.9800', '7.9800', '11.0000', '11.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 (20503, '2021-09-27', 1863, 19781, 1784, 34026, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20504, '2021-09-27', 2777, 19782, 1784, 24972, '1.0000', '2.5000', '2.5000', '3.5000', '3.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 (20505, '2021-09-27', 7926, 19783, 1784, 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 (20506, '2021-09-27', 1425, 19784, 1784, 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 (20507, '2021-09-27', 2656, 19785, 1784, 36099, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20508, '2021-09-27', 7894, 19786, 1784, NULL, '1.0000', '22.0000', '22.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 (20509, '2021-09-27', 2132, 19787, 1784, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '10.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 (20510, '2021-09-27', 3041, 19788, 1784, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '16.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 (20511, '2021-09-27', 8746, 19789, 1784, NULL, '1.0000', '3.8000', '3.8000', '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 (20512, '2021-09-27', 2449, 19790, 1784, 32546, '3.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20513, '2021-09-27', 2315, 19791, 1784, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20514, '2021-09-27', 1646, 19792, 1784, 30659, '1.0000', '4.5256', '4.5256', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20515, '2021-09-27', 2916, 19793, 1784, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20516, '2021-09-27', 1519, 19794, 1784, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20517, '2021-09-27', 2169, 19795, 1784, 34968, '1.0000', '1.1484', '1.1484', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20518, '2021-09-27', 9089, 19796, 1785, NULL, '1.0000', '3.8000', '3.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 (20519, '2021-09-27', 2169, 19797, 1785, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (20520, '2021-09-27', 1534, 19798, 1785, 18882, '4.0000', '0.9800', '0.9800', '1.3000', '1.3000', '6.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 (20521, '2021-09-27', 2315, 19799, 1785, 2735, '-92.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20522, '2021-09-27', 2315, 19799, 1785, NULL, '96.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-96.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20523, '2021-09-27', 2289, 19800, 1785, 2949, '-3.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 (20524, '2021-09-27', 2289, 19800, 1785, NULL, '5.0000', '0.3300', '0.3300', '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 (20525, '2021-09-27', 2610, 19801, 1785, 10021, '-1.0000', '40.0000', '40.0000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20526, '2021-09-27', 2610, 19801, 1785, NULL, '2.0000', '40.0000', '40.0000', '52.0000', '52.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 (20527, '2021-09-27', 2132, 19802, 1785, NULL, '1.0000', '21.0000', '21.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 (20528, '2021-09-27', 1580, 19803, 1785, 7598, '-17.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 (20529, '2021-09-27', 1580, 19803, 1785, NULL, '19.0000', '0.9900', '0.9900', '1.5000', '1.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 (20530, '2021-09-27', 1590, 19804, 1785, 22260, '2.0000', '1.7100', '1.7100', '2.2000', '2.2000', '32.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 (20531, '2021-09-27', 9174, 19805, 1785, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20532, '2021-09-27', 1966, 19806, 1785, 3237, '-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 (20533, '2021-09-27', 1966, 19806, 1785, 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 (20534, '2021-09-27', 1504, 19807, 1785, 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 (20535, '2021-09-27', 7980, 19808, 1785, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (20536, '2021-09-27', 3024, 19809, 1785, NULL, '2.0000', '5.2500', '5.2500', '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 (20537, '2021-09-27', 2232, 19810, 1785, NULL, '1.0000', '29.0000', '29.0000', '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 (20538, '2021-09-27', 1738, 19811, 1785, 18834, '1.0000', '7.1000', '7.1000', '9.5000', '9.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 (20539, '2021-09-27', 2066, 19812, 1785, 5484, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '24.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 (20540, '2021-09-27', 1863, 19813, 1785, 10808, '-17.0000', '0.4136', '0.4136', '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 (20541, '2021-09-27', 1863, 19813, 1785, NULL, '18.0000', '0.4136', '0.4136', '2.0000', '2.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 (20542, '2021-09-27', 2135, 19814, 1785, 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 (20543, '2021-09-27', 2036, 19815, 1785, 4277, '-2.0000', '8.0000', '8.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 (20544, '2021-09-27', 2036, 19815, 1785, NULL, '3.0000', '8.0000', '8.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 (20545, '2021-09-27', 1523, 19816, 1786, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '19.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 (20546, '2021-09-27', 2280, 19817, 1786, 21586, '1.0000', '1.9000', '1.9000', '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 (20547, '2021-09-27', 2567, 19818, 1786, NULL, '1.0000', '33.0000', '33.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 (20548, '2021-09-27', 1935, 19819, 1786, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20549, '2021-09-27', 2248, 19820, 1786, 36005, '1.0000', '5.1412', '5.1412', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20550, '2021-09-27', 1390, 19821, 1786, 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 (20551, '2021-09-27', 1386, 19822, 1786, 36008, '1.0000', '121.3354', '121.3354', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20552, '2021-09-27', 1417, 19823, 1786, NULL, '1.0000', '11.5000', '11.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 (20553, '2021-09-27', 1812, 19824, 1786, 32067, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20554, '2021-09-27', 1523, 19825, 1786, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '19.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 (20555, '2021-09-27', 1839, 19826, 1786, 24116, '1.0000', '6.1500', '6.1500', '9.0000', '9.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 (20556, '2021-09-27', 7671, 19827, 1786, NULL, '1.0000', '15.5000', '15.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 (20557, '2021-09-27', 2078, 19828, 1786, 5603, '1.0000', '3.0000', '3.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 (20558, '2021-09-27', 1665, 19829, 1786, 34667, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20559, '2021-09-27', 2733, 19830, 1786, 24274, '2.0000', '7.5000', '7.5000', '10.0000', '10.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 (20560, '2021-09-27', 1602, 19831, 1786, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '22.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20561, '2021-09-27', 1863, 19832, 1786, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20562, '2021-09-27', 7671, 19833, 1786, NULL, '1.0000', '15.5000', '15.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 (20563, '2021-09-27', 2240, 19834, 1786, 32882, '1.0000', '36.0000', '36.0000', '48.5000', '48.5000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20564, '2021-09-27', 8773, 19835, 1786, 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 (20565, '2021-09-27', 7671, 19836, 1786, NULL, '2.0000', '15.5000', '15.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 (20566, '2021-09-27', 2916, 19837, 1786, 32030, '1.0000', '12.5089', '12.5089', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20567, '2021-09-27', 2943, 19838, 1787, 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 (20568, '2021-09-27', 8172, 19839, 1787, NULL, '1.0000', '40.7000', '40.7000', '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 (20569, '2021-09-27', 8735, 19840, 1787, NULL, '1.0000', '5.6000', '5.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 (20570, '2021-09-27', 9407, 19841, 1787, 30926, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20571, '2021-09-27', 8308, 19842, 1787, NULL, '1.0000', '11.0000', '11.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 (20572, '2021-09-27', 8810, 19843, 1787, NULL, '1.0000', '1.9200', '1.9200', '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 (20573, '2021-09-27', 9401, 19844, 1787, NULL, '1.0000', '3.5000', '3.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 (20574, '2021-09-27', 7782, 19845, 1787, NULL, '1.0000', '5.0000', '5.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 (20575, '2021-09-27', 9272, 19846, 1787, NULL, '1.0000', '3.1000', '3.1000', '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 (20576, '2021-09-27', 7848, 19847, 1787, NULL, '1.0000', '1.3500', '1.3500', '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 (20577, '2021-09-27', 7593, 19848, 1787, 34551, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20578, '2021-09-27', 7675, 19849, 1787, NULL, '1.0000', '11.4300', '11.4300', '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 (20579, '2021-09-27', 8775, 19850, 1787, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20580, '2021-09-27', 7509, 19851, 1787, 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 (20581, '2021-09-27', 7753, 19852, 1787, NULL, '1.0000', '3.1400', '3.1400', '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 (20582, '2021-09-27', 2104, 19853, 1787, NULL, '1.0000', '0.2000', '0.2000', '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 (20583, '2021-09-27', 9177, 19854, 1787, NULL, '5.0000', '0.8000', '0.8000', '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 (20584, '2021-09-27', 2655, 19855, 1787, 34562, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20585, '2021-09-27', 9337, 19856, 1787, 36077, '10.0000', '6.8067', '6.8067', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20586, '2021-09-27', 8596, 19857, 1787, NULL, '1.0000', '17.0000', '17.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 (20587, '2021-09-27', 7657, 19858, 1787, NULL, '1.0000', '5.4700', '5.4700', '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 (20588, '2021-09-27', 7799, 19859, 1787, NULL, '1.0000', '2.0000', '2.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 (20589, '2021-09-27', 9193, 19860, 1787, NULL, '1.0000', '6.7400', '6.7400', '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 (20590, '2021-09-27', 7774, 19861, 1787, NULL, '1.0000', '3.5000', '3.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 (20591, '2021-09-27', 7612, 19862, 1787, NULL, '1.0000', '46.0000', '46.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 (20592, '2021-09-27', 8702, 19863, 1787, NULL, '1.0000', '3.6700', '3.6700', '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 (20593, '2021-09-27', 2906, 19864, 1787, 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 (20594, '2021-09-27', 2102, 19865, 1787, 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 (20595, '2021-09-27', 7832, 19866, 1787, 36086, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20596, '2021-09-27', 8756, 19867, 1787, 32807, '1.0000', '5.9323', '5.9323', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20597, '2021-09-27', 1904, 19868, 1787, 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 (20598, '2021-09-27', 7477, 19869, 1787, 34510, '4.0000', '0.9070', '0.9070', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20599, '2021-09-27', 8203, 19870, 1787, NULL, '4.0000', '9.8000', '9.8000', '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 (20600, '2021-09-27', 1574, 19871, 1787, 35185, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20601, '2021-09-27', 7675, 19872, 1787, NULL, '1.0000', '11.4300', '11.4300', '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 (20602, '2021-09-27', 8166, 19873, 1787, NULL, '1.0000', '4.6000', '4.6000', '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 (20603, '2021-09-27', 8594, 19874, 1787, 32809, '5.0000', '2.0000', '2.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20604, '2021-09-27', 8539, 19875, 1787, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '59.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20605, '2021-09-27', 8111, 19876, 1787, NULL, '1.0000', '2.4000', '2.4000', '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 (20606, '2021-09-27', 8119, 19877, 1787, 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 (20607, '2021-09-27', 1854, 19878, 1787, NULL, '2.0000', '2.5000', '2.5000', '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 (20608, '2021-09-27', 7518, 19879, 1787, NULL, '1.0000', '-21.7700', '-21.7700', '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 (20609, '2021-09-27', 8328, 19880, 1787, NULL, '1.0000', '8.0882', '8.0882', '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 (20610, '2021-09-27', 2315, 19881, 1787, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20611, '2021-09-27', 1806, 19882, 1788, 12248, '2.0000', '77.6260', '77.6260', '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 (20612, '2021-09-27', 7533, 19883, 1788, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20613, '2021-09-27', 1812, 19884, 1788, 32067, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20614, '2021-09-27', 1544, 19885, 1788, 18702, '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 (20615, '2021-09-27', 1900, 19886, 1788, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '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 (20616, '2021-09-27', 2152, 19887, 1788, 33041, '1.0000', '14.0800', '14.0800', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20617, '2021-09-27', 9482, 19888, 1789, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '100.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20618, '2021-09-27', 2027, 19889, 1789, 22551, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.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 (20619, '2021-09-27', 1629, 19890, 1789, 29650, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20620, '2021-09-27', 1665, 19891, 1789, 33349, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20621, '2021-09-27', 9089, 19892, 1789, NULL, '1.0000', '3.8000', '3.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 (20622, '2021-09-27', 1602, 19893, 1789, NULL, '1.0000', '7.0310', '7.0310', '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 (20623, '2021-09-27', 1665, 19894, 1789, 33349, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20624, '2021-09-27', 2656, 19895, 1789, 36099, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20625, '2021-09-27', 3059, 19896, 1789, NULL, '1.0000', '0.4500', '0.4500', '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 (20626, '2021-09-27', 1532, 19897, 1789, 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 (20627, '2021-09-27', 8622, 19898, 1789, 34952, '1.0000', '11.5084', '11.5084', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20628, '2021-09-28', 9445, 19899, 1790, 34644, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20629, '2021-09-28', 1867, 19900, 1790, 34624, '1.0000', '5.8781', '5.8781', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20630, '2021-09-28', 7408, 19901, 1790, NULL, '1.0000', '1.0000', '1.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 (20631, '2021-09-28', 2270, 19902, 1790, 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 (20632, '2021-09-28', 2237, 19903, 1790, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20633, '2021-09-28', 1912, 19904, 1790, NULL, '1.0000', '0.6591', '0.6591', '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 (20634, '2021-09-28', 2135, 19905, 1790, 34917, '2.0000', '2.4732', '2.4732', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20635, '2021-09-28', 9399, 19906, 1790, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20636, '2021-09-28', 2221, 19907, 1790, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20637, '2021-09-28', 9432, 19908, 1790, 30478, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20638, '2021-09-28', 9434, 19909, 1790, 30480, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20639, '2021-09-28', 2681, 19910, 1790, 24201, '3.0000', '12.5000', '12.5000', '16.5000', '16.5000', '0.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 (20640, '2021-09-28', 2681, 19910, 1790, 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 (20641, '2021-09-28', 1641, 19911, 1790, 25016, '36.0000', '1.0100', '1.0100', '1.3000', '1.3000', '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 (20642, '2021-09-28', 1641, 19911, 1790, NULL, '9.0000', '1.0100', '1.0100', '1.3000', '1.3000', '-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 (20643, '2021-09-28', 2279, 19912, 1790, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '19.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 (20644, '2021-09-28', 1523, 19913, 1790, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.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 (20645, '2021-09-28', 2237, 19914, 1790, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20646, '2021-09-28', 1410, 19915, 1790, 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 (20647, '2021-09-28', 1822, 19916, 1790, NULL, '3.0000', '2.8625', '2.8625', '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 (20648, '2021-09-28', 2293, 19917, 1790, 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 (20649, '2021-09-28', 1529, 19918, 1790, 13747, '1.0000', '36.4099', '36.4099', '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 (20650, '2021-09-28', 1782, 19919, 1790, 19339, '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 (20651, '2021-09-28', 9336, 19920, 1790, 33370, '1.0000', '4.9500', '4.9500', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20652, '2021-09-28', 1863, 19921, 1790, 34026, '2.0000', '1.4033', '1.4033', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20653, '2021-09-28', 1692, 19922, 1790, 34935, '1.0000', '9.6500', '9.6500', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20654, '2021-09-28', 8166, 19923, 1790, NULL, '1.0000', '4.6000', '4.6000', '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 (20655, '2021-09-28', 2277, 19924, 1790, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20656, '2021-09-28', 2103, 19925, 1790, 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 (20657, '2021-09-28', 2335, 19926, 1790, NULL, '1.0000', '13.9000', '13.9000', '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 (20658, '2021-09-28', 1342, 19927, 1790, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20659, '2021-09-28', 1645, 19928, 1790, 34638, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20660, '2021-09-28', 2821, 19929, 1790, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20661, '2021-09-28', 2315, 19930, 1790, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20662, '2021-09-28', 1419, 19931, 1790, 34944, '1.0000', '13.1040', '13.1040', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20663, '2021-09-28', 8060, 19932, 1790, NULL, '1.0000', '2.2000', '2.2000', '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 (20664, '2021-09-28', 2036, 19933, 1790, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '20.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 (20665, '2021-09-28', 1787, 19934, 1790, NULL, '5.0000', '0.8100', '0.8100', '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 (20666, '2021-09-28', 1863, 19935, 1790, 34026, '3.0000', '1.4033', '1.4033', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20667, '2021-09-28', 2656, 19936, 1790, 36099, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20668, '2021-09-28', 1912, 19937, 1790, NULL, '1.0000', '0.6591', '0.6591', '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 (20669, '2021-09-28', 1369, 19938, 1791, NULL, '1.0000', '2.2209', '2.2209', '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 (20670, '2021-09-28', 1928, 19939, 1791, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '5.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 (20671, '2021-09-28', 1667, 19940, 1791, 9745, '-10.0000', '5.9400', '5.9400', '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 (20672, '2021-09-28', 1667, 19940, 1791, NULL, '11.0000', '5.9400', '5.9400', '8.5000', '8.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 (20673, '2021-09-28', 2660, 19941, 1791, 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 (20674, '2021-09-28', 2285, 19942, 1791, 2945, '-4.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 (20675, '2021-09-28', 2285, 19942, 1791, NULL, '5.0000', '35.8000', '35.8000', '48.0000', '48.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 (20676, '2021-09-28', 2169, 19943, 1791, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (20677, '2021-09-28', 2712, 19944, 1791, 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 (20678, '2021-09-28', 2948, 19945, 1791, NULL, '2.0000', '0.9000', '0.9000', '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 (20679, '2021-09-28', 2289, 19946, 1791, 2949, '-5.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 (20680, '2021-09-28', 2289, 19946, 1791, NULL, '6.0000', '0.3300', '0.3300', '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 (20681, '2021-09-28', 1863, 19947, 1791, 10808, '-18.0000', '0.4136', '0.4136', '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 (20682, '2021-09-28', 1863, 19947, 1791, NULL, '19.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (20683, '2021-09-28', 1577, 19948, 1791, 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 (20684, '2021-09-28', 2169, 19949, 1791, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (20685, '2021-09-28', 8608, 19950, 1791, NULL, '1.0000', '0.9000', '0.9000', '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 (20686, '2021-09-28', 8188, 19951, 1791, 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 (20687, '2021-09-28', 2588, 19952, 1791, NULL, '2.0000', '4.0000', '4.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 (20688, '2021-09-28', 9544, 19953, 1791, NULL, '1.0000', '25.0000', '25.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 (20689, '2021-09-28', 1646, 19954, 1791, 3239, '-4.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 (20690, '2021-09-28', 1646, 19954, 1791, NULL, '5.0000', '4.5300', '4.5300', '7.5000', '7.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 (20691, '2021-09-28', 2059, 19955, 1791, 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 (20692, '2021-09-28', 1621, 19956, 1791, 7385, '-4.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 (20693, '2021-09-28', 1621, 19956, 1791, NULL, '5.0000', '6.6000', '6.6000', '9.0000', '9.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 (20694, '2021-09-28', 2136, 19957, 1791, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '113.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 (20695, '2021-09-28', 2633, 19958, 1791, 22314, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (20696, '2021-09-28', 1557, 19959, 1791, 1628, '-2.0000', '7.9500', '7.9500', '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 (20697, '2021-09-28', 1557, 19959, 1791, NULL, '3.0000', '7.9500', '7.9500', '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 (20698, '2021-09-28', 2068, 19960, 1791, 5568, '-10.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 (20699, '2021-09-28', 2068, 19960, 1791, NULL, '11.0000', '13.1000', '13.1000', '17.0000', '17.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 (20700, '2021-09-28', 1863, 19961, 1791, 10808, '-18.0000', '0.4136', '0.4136', '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 (20701, '2021-09-28', 1863, 19961, 1791, NULL, '19.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (20702, '2021-09-28', 2039, 19962, 1791, NULL, '1.0000', '9.5000', '9.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 (20703, '2021-09-28', 1425, 19963, 1791, 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 (20704, '2021-09-28', 2277, 19964, 1791, 2937, '-2.0000', '0.7800', '0.7800', '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 (20705, '2021-09-28', 2277, 19964, 1791, NULL, '4.0000', '0.7800', '0.7800', '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 (20706, '2021-09-28', 1530, 19965, 1791, 7391, '-1.0000', '28.7012', '28.7012', '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 (20707, '2021-09-28', 1530, 19965, 1791, NULL, '2.0000', '28.7012', '28.7012', '38.0000', '38.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 (20708, '2021-09-28', 2712, 19966, 1791, 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 (20709, '2021-09-28', 8594, 19967, 1791, 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 (20710, '2021-09-28', 2948, 19968, 1791, NULL, '2.0000', '0.9000', '0.9000', '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 (20711, '2021-09-28', 1374, 19969, 1791, 20626, '1.0000', '24.0076', '24.0076', '26.0000', '26.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 (20712, '2021-09-28', 7922, 19970, 1792, NULL, '1.0000', '6.9800', '6.9800', '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 (20713, '2021-09-28', 1756, 19971, 1792, 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 (20714, '2021-09-28', 9148, 19972, 1792, NULL, '1.0000', '20.1000', '20.1000', '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 (20715, '2021-09-28', 8037, 19973, 1792, 36082, '1.0000', '45.3419', '45.3419', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20716, '2021-09-28', 7333, 19974, 1792, 29984, '1.0000', '13.5000', '13.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20717, '2021-09-28', 8340, 19975, 1792, NULL, '10.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (20718, '2021-09-28', 9320, 19976, 1792, 32928, '1.0000', '9.2200', '9.2200', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20719, '2021-09-28', 9154, 19977, 1792, 30190, '2.0000', '10.6800', '10.6800', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20720, '2021-09-28', 8594, 19978, 1792, 32809, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20721, '2021-09-28', 9293, 19979, 1792, NULL, '1.0000', '28.5000', '28.5000', '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 (20722, '2021-09-28', 7797, 19980, 1792, NULL, '1.0000', '6.3000', '6.3000', '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 (20723, '2021-09-28', 7672, 19981, 1792, NULL, '1.0000', '1.0200', '1.0200', '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 (20724, '2021-09-28', 2287, 19982, 1792, NULL, '4.0000', '2.3000', '2.3000', '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 (20725, '2021-09-28', 9145, 19983, 1792, NULL, '1.0000', '9.0000', '9.0000', '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 (20726, '2021-09-28', 9496, 19984, 1792, 33078, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20727, '2021-09-28', 7524, 19985, 1792, NULL, '1.0000', '11.9500', '11.9500', '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 (20728, '2021-09-28', 9273, 19986, 1792, NULL, '1.0000', '0.3500', '0.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 (20729, '2021-09-28', 7612, 19987, 1792, NULL, '1.0000', '46.0000', '46.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 (20730, '2021-09-28', 2060, 19988, 1792, 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 (20731, '2021-09-28', 8512, 19989, 1792, NULL, '2.0000', '4.0000', '4.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 (20732, '2021-09-28', 9134, 19990, 1792, NULL, '1.0000', '20.0000', '20.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 (20733, '2021-09-28', 7689, 19991, 1792, NULL, '1.0000', '12.0700', '12.0700', '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 (20734, '2021-09-28', 7554, 19992, 1792, 36073, '10.0000', '3.0308', '3.0308', '2.2000', '2.2000', '43.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20735, '2021-09-28', 8594, 19993, 1792, 32809, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20736, '2021-09-28', 9160, 19994, 1792, NULL, '2.0000', '15.0000', '15.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 (20737, '2021-09-28', 9337, 19995, 1792, 36077, '10.0000', '6.8067', '6.8067', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20738, '2021-09-28', 9498, 19996, 1792, NULL, '1.0000', '12.5000', '12.5000', '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 (20739, '2021-09-28', 9160, 19997, 1792, NULL, '1.0000', '15.0000', '15.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 (20740, '2021-09-28', 8166, 19998, 1792, NULL, '1.0000', '4.6000', '4.6000', '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 (20741, '2021-09-28', 9254, 19999, 1792, NULL, '1.0000', '20.0000', '20.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 (20742, '2021-09-28', 2491, 20000, 1792, 36036, '1.0000', '11.3505', '11.3505', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20743, '2021-09-28', 9409, 20001, 1792, NULL, '1.0000', '11.0000', '11.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 (20744, '2021-09-28', 2699, 20002, 1792, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20745, '2021-09-28', 2283, 20003, 1792, 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 (20746, '2021-09-28', 7328, 20004, 1792, 29979, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20747, '2021-09-28', 7782, 20005, 1792, NULL, '1.0000', '5.0000', '5.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 (20748, '2021-09-28', 8086, 20006, 1792, 36047, '1.0000', '9.6204', '9.6204', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20749, '2021-09-28', 8721, 20007, 1792, NULL, '1.0000', '3.0000', '3.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 (20750, '2021-09-28', 7672, 20008, 1792, NULL, '1.0000', '1.0200', '1.0200', '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 (20751, '2021-09-28', 7473, 20009, 1792, NULL, '3.0000', '9.2200', '9.2200', '0.6000', '0.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 (20752, '2021-09-28', 9400, 20010, 1792, NULL, '1.0000', '0.5000', '0.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 (20753, '2021-09-28', 1728, 20011, 1792, NULL, '11.0000', '90.0000', '90.0000', '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 (20754, '2021-09-28', 7899, 20012, 1792, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20755, '2021-09-28', 7848, 20013, 1792, NULL, '1.0000', '1.3500', '1.3500', '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 (20756, '2021-09-28', 7672, 20014, 1792, NULL, '1.0000', '1.0200', '1.0200', '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 (20757, '2021-09-28', 8963, 20015, 1792, 35219, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20758, '2021-09-28', 2618, 20016, 1792, NULL, '1.0000', '4.1000', '4.1000', '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 (20759, '2021-09-28', 8039, 20017, 1792, NULL, '1.0000', '18.3400', '18.3400', '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 (20760, '2021-09-28', 8702, 20018, 1792, NULL, '1.0000', '3.6700', '3.6700', '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 (20761, '2021-09-28', 1904, 20019, 1792, 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 (20762, '2021-09-28', 2234, 20020, 1793, 36001, '1.0000', '13.1717', '13.1717', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20763, '2021-09-28', 2656, 20021, 1793, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20764, '2021-09-28', 7490, 20022, 1793, NULL, '2.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20765, '2021-09-28', 1401, 20023, 1793, 31691, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20766, '2021-09-28', 1612, 20024, 1793, 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 (20767, '2021-09-28', 2169, 20025, 1793, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20768, '2021-09-28', 2360, 20026, 1793, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (20769, '2021-09-28', 7506, 20027, 1793, NULL, '1.0000', '15.0000', '15.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 (20770, '2021-09-28', 7672, 20028, 1793, NULL, '1.0000', '1.0200', '1.0200', '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 (20771, '2021-09-28', 2683, 20029, 1793, 16700, '1.0000', '49.0000', '49.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 (20772, '2021-09-28', 9265, 20030, 1793, NULL, '1.0000', '1.5500', '1.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 (20773, '2021-09-28', 2662, 20031, 1793, 31983, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20774, '2021-09-28', 1309, 20032, 1793, 3074, '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 (20775, '2021-09-28', 1409, 20033, 1793, 36009, '1.0000', '13.1362', '13.1362', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20776, '2021-09-28', 2555, 20034, 1793, NULL, '4.0000', '4.2000', '4.2000', '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 (20777, '2021-09-28', 2289, 20035, 1793, 3129, '4.0000', '0.2300', '0.2300', '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 (20778, '2021-09-28', 1704, 20036, 1793, 24267, '1.0000', '910.4120', '910.4120', '36.0000', '36.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 (20779, '2021-09-28', 1695, 20037, 1793, 33019, '1.0000', '65.1666', '65.1666', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20780, '2021-09-28', 9084, 20038, 1793, NULL, '1.0000', '9.1000', '9.1000', '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 (20781, '2021-09-28', 1432, 20039, 1793, 17924, '1.0000', '9.2619', '9.2619', '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 (20782, '2021-09-28', 7741, 20040, 1793, NULL, '1.0000', '1.2000', '1.2000', '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 (20783, '2021-09-28', 1839, 20041, 1793, 24116, '1.0000', '6.1500', '6.1500', '9.0000', '9.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 (20784, '2021-09-28', 1804, 20042, 1793, 34691, '1.0000', '4.2045', '4.2045', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20785, '2021-09-28', 1839, 20043, 1793, 24116, '1.0000', '6.1500', '6.1500', '9.0000', '9.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 (20786, '2021-09-28', 2315, 20044, 1793, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '259.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20787, '2021-09-28', 2842, 20045, 1793, 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 (20788, '2021-09-28', 2108, 20046, 1793, 6020, '1.0000', '4.7500', '4.7500', '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 (20789, '2021-09-28', 2280, 20047, 1793, 21586, '1.0000', '1.9000', '1.9000', '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 (20790, '2021-09-28', 1672, 20048, 1793, 33015, '14.0000', '60.5327', '60.5327', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20791, '2021-09-28', 8677, 20049, 1793, 32871, '3.0000', '-1.2995', '-1.2995', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20792, '2021-09-28', 2651, 20050, 1793, NULL, '1.0000', '10.7500', '10.7500', '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 (20793, '2021-09-28', 2679, 20051, 1793, 32876, '1.0000', '32.1809', '32.1809', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20794, '2021-09-28', 1346, 20052, 1793, 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 (20795, '2021-09-28', 1846, 20053, 1793, 31709, '1.0000', '31.0430', '31.0430', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20796, '2021-09-28', 1828, 20054, 1793, 33003, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20797, '2021-09-28', 1863, 20055, 1793, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20798, '2021-09-28', 1685, 20056, 1793, 2450, '8.0000', '40.1200', '40.1200', '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 (20799, '2021-09-28', 1966, 20057, 1793, 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 (20800, '2021-09-28', 7728, 20058, 1794, 32806, '1.0000', '3.1200', '3.1200', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20801, '2021-09-28', 7819, 20059, 1794, NULL, '1.0000', '9.5000', '9.5000', '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 (20802, '2021-09-28', 7708, 20060, 1794, NULL, '1.0000', '6.1400', '6.1400', '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 (20803, '2021-09-28', 7780, 20061, 1794, NULL, '1.0000', '2.6000', '2.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 (20804, '2021-09-28', 1841, 20062, 1794, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '162.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20805, '2021-09-28', 7544, 20063, 1794, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (20806, '2021-09-28', 9474, 20064, 1794, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20807, '2021-09-28', 7514, 20065, 1794, NULL, '2.0000', '12.9983', '12.9983', '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 (20808, '2021-09-28', 7640, 20066, 1794, NULL, '1.0000', '5.8900', '5.8900', '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 (20809, '2021-09-28', 2104, 20067, 1794, NULL, '4.0000', '0.2000', '0.2000', '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 (20810, '2021-09-28', 7819, 20068, 1794, NULL, '1.0000', '9.5000', '9.5000', '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 (20811, '2021-09-28', 8752, 20069, 1794, NULL, '1.0000', '4.2000', '4.2000', '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 (20812, '2021-09-28', 7612, 20070, 1794, NULL, '1.0000', '46.0000', '46.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 (20813, '2021-09-28', 9320, 20071, 1794, NULL, '1.0000', '9.2200', '9.2200', '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 (20814, '2021-09-28', 7981, 20072, 1794, NULL, '10.0000', '6.0000', '6.0000', '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 (20815, '2021-09-28', 7743, 20073, 1794, NULL, '1.0000', '7.3900', '7.3900', '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 (20816, '2021-09-28', 7459, 20074, 1794, NULL, '18.0000', '40.3500', '40.3500', '3.5000', '3.5000', '-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 (20817, '2021-09-28', 7911, 20075, 1794, NULL, '1.0000', '4.3700', '4.3700', '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 (20818, '2021-09-28', 8308, 20076, 1794, NULL, '1.0000', '11.0000', '11.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 (20819, '2021-09-28', 9272, 20077, 1794, NULL, '1.0000', '3.1000', '3.1000', '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 (20820, '2021-09-28', 8361, 20078, 1794, NULL, '1.0000', '4.5800', '4.5800', '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 (20821, '2021-09-28', 7612, 20079, 1794, NULL, '3.0000', '46.0000', '46.0000', '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 (20822, '2021-09-28', 8322, 20080, 1794, NULL, '1.0000', '3.2000', '3.2000', '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 (20823, '2021-09-28', 8851, 20081, 1794, NULL, '1.0000', '16.6600', '16.6600', '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 (20824, '2021-09-28', 8085, 20082, 1794, NULL, '2.0000', '14.0000', '14.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 (20825, '2021-09-28', 1510, 20083, 1794, 36043, '1.0000', '10.5918', '10.5918', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20826, '2021-09-28', 8596, 20084, 1794, NULL, '1.0000', '17.0000', '17.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 (20827, '2021-09-28', 7411, 20085, 1794, NULL, '1.0000', '1.3500', '1.3500', '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 (20828, '2021-09-28', 8172, 20086, 1794, NULL, '1.0000', '40.7000', '40.7000', '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 (20829, '2021-09-28', 7672, 20087, 1794, NULL, '2.0000', '1.0200', '1.0200', '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 (20830, '2021-09-28', 2315, 20088, 1794, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20831, '2021-09-28', 7671, 20089, 1794, NULL, '1.0000', '15.5000', '15.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 (20832, '2021-09-28', 7809, 20090, 1794, NULL, '1.0000', '13.5000', '13.5000', '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 (20833, '2021-09-28', 7514, 20091, 1794, NULL, '1.0000', '12.9983', '12.9983', '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 (20834, '2021-09-28', 7713, 20092, 1794, NULL, '1.0000', '4.4000', '4.4000', '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 (20835, '2021-09-28', 7675, 20093, 1794, NULL, '1.0000', '11.4300', '11.4300', '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 (20836, '2021-09-28', 8608, 20094, 1794, 32131, '1.0000', '5.7400', '5.7400', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20837, '2021-09-28', 7927, 20095, 1794, 34535, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20838, '2021-09-28', 9006, 20096, 1794, NULL, '1.0000', '43.1500', '43.1500', '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 (20839, '2021-09-28', 7524, 20097, 1794, NULL, '1.0000', '11.9500', '11.9500', '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 (20840, '2021-09-28', 7641, 20098, 1794, NULL, '1.0000', '6.5038', '6.5038', '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 (20841, '2021-09-28', 7674, 20099, 1794, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '232.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20842, '2021-09-28', 9275, 20100, 1794, NULL, '1.0000', '6.3000', '6.3000', '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 (20843, '2021-09-28', 2102, 20101, 1794, 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 (20844, '2021-09-28', 8715, 20102, 1794, NULL, '1.0000', '3.3000', '3.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 (20845, '2021-09-28', 2287, 20103, 1794, NULL, '4.0000', '2.3000', '2.3000', '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 (20846, '2021-09-28', 7931, 20104, 1794, NULL, '1.0000', '0.2500', '0.2500', '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 (20847, '2021-09-28', 9385, 20105, 1794, NULL, '1.0000', '45.0000', '45.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 (20848, '2021-09-28', 8135, 20106, 1794, NULL, '1.0000', '13.9000', '13.9000', '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 (20849, '2021-09-28', 7606, 20107, 1794, 34532, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20850, '2021-09-28', 7684, 20108, 1794, NULL, '1.0000', '9.0000', '9.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 (20851, '2021-09-28', 7590, 20109, 1794, NULL, '1.0000', '4.3600', '4.3600', '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 (20852, '2021-09-28', 7482, 20110, 1794, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '43.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20853, '2021-09-28', 7411, 20111, 1794, NULL, '1.0000', '1.3500', '1.3500', '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 (20854, '2021-09-28', 7585, 20112, 1794, NULL, '1.0000', '6.2000', '6.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 (20855, '2021-09-28', 7524, 20113, 1794, NULL, '1.0000', '11.9500', '11.9500', '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 (20856, '2021-09-28', 2022, 20114, 1795, 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 (20857, '2021-09-28', 1543, 20115, 1795, 33152, '1.0000', '41.9600', '41.9600', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20858, '2021-09-28', 7411, 20116, 1795, NULL, '1.0000', '1.3500', '1.3500', '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 (20859, '2021-09-28', 8086, 20117, 1795, NULL, '1.0000', '9.3000', '9.3000', '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 (20860, '2021-09-28', 8941, 20118, 1795, NULL, '1.0000', '12.0000', '12.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 (20861, '2021-09-28', 2295, 20119, 1795, NULL, '1.0000', '0.7000', '0.7000', '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 (20862, '2021-09-28', 1322, 20120, 1795, 34957, '2.0000', '-0.2716', '-0.2716', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20863, '2021-09-28', 9482, 20121, 1795, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20864, '2021-09-28', 2431, 20122, 1795, 25152, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '4.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 (20865, '2021-09-28', 1529, 20123, 1795, 13747, '2.0000', '36.4099', '36.4099', '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 (20866, '2021-09-28', 2660, 20124, 1795, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (20867, '2021-09-28', 2951, 20125, 1795, 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 (20868, '2021-09-28', 1654, 20126, 1795, NULL, '1.0000', '9.1160', '9.1160', '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 (20869, '2021-09-28', 1529, 20127, 1795, 13747, '1.0000', '36.4099', '36.4099', '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 (20870, '2021-09-28', 9503, 20128, 1795, 36103, '1.0000', '4.8874', '4.8874', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20871, '2021-09-28', 1590, 20129, 1795, 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 (20872, '2021-09-28', 9445, 20130, 1795, 34644, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20873, '2021-09-28', 7558, 20131, 1795, NULL, '2.0000', '33.0200', '33.0200', '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 (20874, '2021-09-28', 1311, 20132, 1795, 22366, '4.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 (20875, '2021-09-28', 9482, 20133, 1795, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20876, '2021-09-28', 8097, 20134, 1795, NULL, '2.0000', '7.6800', '7.6800', '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 (20877, '2021-09-28', 8359, 20135, 1795, NULL, '1.0000', '13.5000', '13.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 (20878, '2021-09-28', 2169, 20136, 1795, NULL, '1.0000', '1.1484', '1.1484', '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 (20879, '2021-09-28', 9445, 20137, 1795, 34644, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20880, '2021-09-28', 1432, 20138, 1796, 13527, '1.0000', '9.2619', '9.2619', '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 (20881, '2021-09-28', 1602, 20139, 1796, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '21.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20882, '2021-09-28', 2699, 20140, 1796, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20883, '2021-09-28', 2272, 20141, 1796, 33235, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20884, '2021-09-28', 2454, 20142, 1796, 36000, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20885, '2021-09-28', 1912, 20143, 1796, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20886, '2021-09-28', 2366, 20144, 1796, 13636, '2.0000', '3.7873', '3.7873', '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 (20887, '2021-09-28', 2169, 20145, 1796, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20888, '2021-09-28', 1425, 20146, 1796, 36007, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20889, '2021-09-28', 1621, 20147, 1796, 33211, '1.0000', '55.5718', '55.5718', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20890, '2021-09-28', 1573, 20148, 1796, NULL, '1.0000', '17.4802', '17.4802', '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 (20891, '2021-09-28', 2135, 20149, 1796, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20892, '2021-09-28', 9243, 20150, 1797, 34527, '1.0000', '22.0056', '22.0056', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20893, '2021-09-28', 7576, 20151, 1797, NULL, '4.0000', '6.9100', '6.9100', '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 (20894, '2021-09-28', 7548, 20152, 1797, NULL, '1.0000', '0.3400', '0.3400', '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 (20895, '2021-09-28', 7342, 20153, 1797, 31009, '1.0000', '2.1313', '2.1313', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20896, '2021-09-28', 7704, 20154, 1797, NULL, '1.0000', '8.7000', '8.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 (20897, '2021-09-28', 7558, 20155, 1797, 36058, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20898, '2021-09-28', 7558, 20155, 1797, NULL, '19.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (20899, '2021-09-28', 1510, 20156, 1797, 36043, '1.0000', '10.5918', '10.5918', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20900, '2021-09-28', 7725, 20157, 1797, NULL, '1.0000', '1.6600', '1.6600', '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 (20901, '2021-09-28', 8557, 20158, 1797, NULL, '2.0000', '54.3300', '54.3300', '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 (20902, '2021-09-28', 7848, 20159, 1797, NULL, '1.0000', '1.3500', '1.3500', '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 (20903, '2021-09-28', 9252, 20160, 1797, NULL, '2.0000', '11.8200', '11.8200', '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 (20904, '2021-09-28', 1904, 20161, 1797, 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 (20905, '2021-09-28', 7330, 20162, 1797, 29981, '1.0000', '3.0500', '3.0500', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20906, '2021-09-28', 9272, 20163, 1797, NULL, '1.0000', '3.1000', '3.1000', '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 (20907, '2021-09-28', 7743, 20164, 1797, NULL, '2.0000', '7.3900', '7.3900', '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 (20908, '2021-09-28', 2316, 20165, 1797, 30501, '1.0000', '45.0000', '45.0000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20909, '2021-09-28', 8247, 20166, 1797, NULL, '1.0000', '10.0000', '10.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 (20910, '2021-09-28', 9193, 20167, 1797, NULL, '1.0000', '6.7400', '6.7400', '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 (20911, '2021-09-28', 7954, 20168, 1797, NULL, '4.0000', '21.0000', '21.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 (20912, '2021-09-28', 7752, 20169, 1797, 33518, '1.0000', '3.0000', '3.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20913, '2021-09-28', 2656, 20170, 1797, 34563, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20914, '2021-09-28', 8756, 20171, 1797, NULL, '1.0000', '5.9323', '5.9323', '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 (20915, '2021-09-28', 1908, 20172, 1798, 5510, '2.0000', '1.7500', '1.7500', '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 (20916, '2021-09-28', 2395, 20173, 1798, NULL, '1.0000', '27.0000', '27.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 (20917, '2021-09-28', 2033, 20174, 1798, 6417, '1.0000', '4.5000', '4.5000', '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 (20918, '2021-09-28', 1523, 20175, 1798, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '17.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 (20919, '2021-09-28', 1602, 20176, 1799, NULL, '1.0000', '7.0310', '7.0310', '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 (20920, '2021-09-28', 7333, 20177, 1799, NULL, '1.0000', '13.5000', '13.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 (20921, '2021-09-28', 7637, 20178, 1799, 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 (20922, '2021-09-28', 7886, 20179, 1799, NULL, '1.0000', '14.5000', '14.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 (20923, '2021-09-28', 3058, 20180, 1799, 24961, '1.0000', '4.3000', '4.3000', '6.0000', '6.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 (20924, '2021-09-28', 1529, 20181, 1800, NULL, '1.0000', '36.4099', '36.4099', '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 (20925, '2021-09-28', 9482, 20182, 1800, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20926, '2021-09-29', 2570, 20183, 1801, 34963, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20927, '2021-09-29', 1866, 20184, 1801, 34660, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20928, '2021-09-29', 2073, 20185, 1801, 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 (20929, '2021-09-29', 2662, 20186, 1801, 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 (20930, '2021-09-29', 1841, 20187, 1801, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '89.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20931, '2021-09-29', 2315, 20188, 1801, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20932, '2021-09-29', 7459, 20189, 1801, 34603, '10.0000', '-6.1729', '-6.1729', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20933, '2021-09-29', 7608, 20190, 1801, NULL, '1.0000', '6.9800', '6.9800', '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 (20934, '2021-09-29', 2169, 20191, 1801, NULL, '1.0000', '1.1484', '1.1484', '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 (20935, '2021-09-29', 7741, 20192, 1801, NULL, '1.0000', '1.2000', '1.2000', '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 (20936, '2021-09-29', 8407, 20193, 1801, NULL, '1.0000', '2.9800', '2.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 (20937, '2021-09-29', 8208, 20194, 1801, NULL, '2.0000', '33.0000', '33.0000', '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 (20938, '2021-09-29', 2315, 20195, 1801, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20939, '2021-09-29', 3058, 20196, 1801, 24961, '3.0000', '4.3000', '4.3000', '6.0000', '6.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 (20940, '2021-09-29', 1746, 20197, 1801, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (20941, '2021-09-29', 8315, 20198, 1801, NULL, '1.0000', '17.0000', '17.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 (20942, '2021-09-29', 7579, 20199, 1801, NULL, '1.0000', '15.0000', '15.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 (20943, '2021-09-29', 2609, 20200, 1801, 34938, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20944, '2021-09-29', 1840, 20201, 1801, 19856, '2.0000', '0.2400', '0.2400', '0.3000', '0.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 (20945, '2021-09-29', 1841, 20202, 1801, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20946, '2021-09-29', 2289, 20203, 1801, 13744, '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 (20947, '2021-09-29', 1692, 20204, 1801, 34935, '1.0000', '9.6500', '9.6500', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20948, '2021-09-29', 2643, 20205, 1801, 36117, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20949, '2021-09-29', 1666, 20206, 1802, 24940, '1.0000', '2.6304', '2.6304', '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 (20950, '2021-09-29', 2272, 20207, 1802, 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 (20951, '2021-09-29', 2135, 20208, 1803, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20952, '2021-09-29', 2280, 20209, 1803, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '21.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 (20953, '2021-09-29', 2277, 20210, 1803, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20954, '2021-09-29', 2825, 20211, 1804, NULL, '2.0000', '12.0000', '12.0000', '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 (20955, '2021-09-29', 2407, 20212, 1805, 4493, '-1.0000', '20.2000', '20.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 (20956, '2021-09-29', 2407, 20212, 1805, NULL, '2.0000', '20.2000', '20.2000', '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 (20957, '2021-09-29', 1409, 20213, 1805, 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 (20958, '2021-09-29', 7746, 20214, 1805, NULL, '2.0000', '2.8600', '2.8600', '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 (20959, '2021-09-29', 2712, 20215, 1805, 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 (20960, '2021-09-29', 2280, 20216, 1805, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '47.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20961, '2021-09-29', 1499, 20217, 1805, 20585, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '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 (20962, '2021-09-29', 1577, 20218, 1805, 7596, '-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 (20963, '2021-09-29', 1577, 20218, 1805, NULL, '2.0000', '2.5000', '2.5000', '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 (20964, '2021-09-29', 2643, 20219, 1805, 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 (20965, '2021-09-29', 3029, 20220, 1805, NULL, '1.0000', '4.7700', '4.7700', '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 (20966, '2021-09-29', 1779, 20221, 1805, 4898, '-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 (20967, '2021-09-29', 1779, 20221, 1805, 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 (20968, '2021-09-29', 7710, 20222, 1806, NULL, '2.0000', '26.0000', '26.0000', '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 (20969, '2021-09-29', 7411, 20223, 1806, NULL, '2.0000', '1.3500', '1.3500', '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 (20970, '2021-09-29', 7635, 20224, 1806, NULL, '1.0000', '6.6300', '6.6300', '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 (20971, '2021-09-29', 2004, 20225, 1806, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20972, '2021-09-29', 1650, 20226, 1806, 34635, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20973, '2021-09-29', 7482, 20227, 1807, 36029, '2.0000', '3.0500', '3.0500', '5.0000', '5.0000', '41.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20974, '2021-09-29', 1837, 20228, 1807, 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 (20975, '2021-09-29', 7802, 20229, 1807, NULL, '1.0000', '0.9200', '0.9200', '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 (20976, '2021-09-29', 2060, 20230, 1807, 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 (20977, '2021-09-29', 9418, 20231, 1807, NULL, '1.0000', '19.8000', '19.8000', '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 (20978, '2021-09-29', 7317, 20232, 1807, NULL, '1.0000', '19.5500', '19.5500', '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 (20979, '2021-09-29', 8702, 20233, 1807, NULL, '1.0000', '3.6700', '3.6700', '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 (20980, '2021-09-29', 2104, 20234, 1807, NULL, '4.0000', '0.2000', '0.2000', '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 (20981, '2021-09-29', 9508, 20235, 1807, NULL, '1.0000', '3.4000', '3.4000', '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 (20982, '2021-09-29', 8698, 20236, 1807, NULL, '1.0000', '2.0000', '2.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 (20983, '2021-09-29', 7491, 20237, 1807, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20984, '2021-09-29', 7848, 20238, 1807, NULL, '2.0000', '1.3500', '1.3500', '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 (20985, '2021-09-29', 7674, 20239, 1807, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '231.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20986, '2021-09-29', 9510, 20240, 1807, 33744, '1.0000', '31.5200', '31.5200', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20987, '2021-09-29', 8868, 20241, 1807, NULL, '5.0000', '15.5000', '15.5000', '0.6000', '0.6000', '-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 (20988, '2021-09-29', 8512, 20242, 1807, NULL, '1.0000', '4.0000', '4.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 (20989, '2021-09-29', 2060, 20243, 1807, 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 (20990, '2021-09-29', 7715, 20244, 1807, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20991, '2021-09-29', 7483, 20245, 1807, NULL, '5.0000', '0.4200', '0.4200', '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 (20992, '2021-09-29', 7354, 20246, 1807, NULL, '1.0000', '18.0000', '18.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 (20993, '2021-09-29', 7448, 20247, 1807, NULL, '1.0000', '15.8500', '15.8500', '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 (20994, '2021-09-29', 7848, 20248, 1807, NULL, '1.0000', '1.3500', '1.3500', '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 (20995, '2021-09-29', 7715, 20249, 1807, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20996, '2021-09-29', 1596, 20250, 1807, 36079, '1.0000', '2.1642', '2.1642', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (20997, '2021-09-29', 8276, 20251, 1807, NULL, '2.0000', '12.7063', '12.7063', '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 (20998, '2021-09-29', 7671, 20252, 1807, NULL, '2.0000', '15.5000', '15.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 (20999, '2021-09-29', 7802, 20253, 1807, NULL, '1.0000', '0.9200', '0.9200', '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 (21000, '2021-09-29', 7911, 20254, 1807, NULL, '1.0000', '4.3700', '4.3700', '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 (21001, '2021-09-29', 7899, 20255, 1807, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21002, '2021-09-29', 9337, 20256, 1807, 36077, '5.0000', '6.8067', '6.8067', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21003, '2021-09-29', 2643, 20257, 1807, 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 (21004, '2021-09-29', 7753, 20258, 1807, NULL, '1.0000', '3.1400', '3.1400', '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 (21005, '2021-09-29', 7671, 20259, 1807, NULL, '1.0000', '15.5000', '15.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 (21006, '2021-09-29', 2060, 20260, 1807, 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 (21007, '2021-09-29', 7781, 20261, 1807, NULL, '2.0000', '4.2500', '4.2500', '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 (21008, '2021-09-29', 9097, 20262, 1807, NULL, '1.0000', '18.0000', '18.0000', '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 (21009, '2021-09-29', 8154, 20263, 1807, NULL, '2.0000', '12.3000', '12.3000', '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 (21010, '2021-09-29', 8094, 20264, 1807, NULL, '5.0000', '47.0000', '47.0000', '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 (21011, '2021-09-29', 2551, 20265, 1808, 35196, '1.0000', '29.6500', '29.6500', '39.0000', '39.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21012, '2021-09-29', 8456, 20266, 1808, NULL, '1.0000', '5.5400', '5.5400', '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 (21013, '2021-09-29', 7819, 20267, 1808, NULL, '1.0000', '9.5000', '9.5000', '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 (21014, '2021-09-29', 2753, 20268, 1808, 32796, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21015, '2021-09-29', 7684, 20269, 1808, NULL, '1.0000', '9.0000', '9.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 (21016, '2021-09-29', 8941, 20270, 1808, NULL, '1.0000', '12.0000', '12.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 (21017, '2021-09-29', 2699, 20271, 1808, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21018, '2021-09-29', 7457, 20272, 1808, 36031, '1.0000', '2.5902', '2.5902', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21019, '2021-09-29', 8594, 20273, 1808, 32809, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21020, '2021-09-29', 7386, 20274, 1808, NULL, '1.0000', '3.0500', '3.0500', '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 (21021, '2021-09-29', 7877, 20275, 1808, NULL, '1.0000', '1.3600', '1.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 (21022, '2021-09-29', 8715, 20276, 1808, NULL, '1.0000', '3.3000', '3.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 (21023, '2021-09-29', 7753, 20277, 1808, NULL, '1.0000', '3.1400', '3.1400', '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 (21024, '2021-09-29', 9269, 20278, 1808, 34548, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21025, '2021-09-29', 7514, 20279, 1808, NULL, '1.0000', '12.9983', '12.9983', '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 (21026, '2021-09-29', 7715, 20280, 1808, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '29.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21027, '2021-09-29', 7547, 20281, 1808, NULL, '4.0000', '0.0000', '0.0000', '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 (21028, '2021-09-29', 8539, 20282, 1808, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '57.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21029, '2021-09-29', 7557, 20283, 1808, 33079, '10.0000', '0.5000', '0.5000', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21030, '2021-09-29', 9177, 20284, 1808, NULL, '10.0000', '0.8000', '0.8000', '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 (21031, '2021-09-29', 1751, 20285, 1808, NULL, '1.0000', '3.6900', '3.6900', '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 (21032, '2021-09-29', 1837, 20286, 1808, 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 (21033, '2021-09-29', 7541, 20287, 1808, NULL, '10.0000', '3.3000', '3.3000', '5.7000', '5.7000', '-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 (21034, '2021-09-29', 1620, 20288, 1808, NULL, '4.0000', '90.0000', '90.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 (21035, '2021-09-29', 7353, 20289, 1808, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21036, '2021-09-29', 8199, 20290, 1808, NULL, '1.0000', '10.5500', '10.5500', '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 (21037, '2021-09-29', 2374, 20291, 1808, NULL, '1.0000', '6.1000', '6.1000', '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 (21038, '2021-09-29', 8889, 20292, 1808, 31654, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21039, '2021-09-29', 7317, 20293, 1809, NULL, '1.0000', '19.5500', '19.5500', '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 (21040, '2021-09-29', 1874, 20294, 1809, 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 (21041, '2021-09-29', 2315, 20295, 1810, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21042, '2021-09-29', 7946, 20296, 1810, NULL, '1.0000', '0.5200', '0.5200', '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 (21043, '2021-09-29', 2289, 20297, 1810, 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 (21044, '2021-09-29', 1841, 20298, 1810, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '160.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21045, '2021-09-29', 8084, 20299, 1810, 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 (21046, '2021-09-29', 8596, 20300, 1810, NULL, '1.0000', '17.0000', '17.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 (21047, '2021-09-29', 7711, 20301, 1810, NULL, '1.0000', '0.3900', '0.3900', '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 (21048, '2021-09-29', 2463, 20302, 1810, 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 (21049, '2021-09-29', 7678, 20303, 1810, NULL, '1.0000', '21.1800', '21.1800', '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 (21050, '2021-09-29', 7881, 20304, 1810, NULL, '1.0000', '32.7700', '32.7700', '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 (21051, '2021-09-29', 8972, 20305, 1810, NULL, '2.0000', '4.5000', '4.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 (21052, '2021-09-29', 7758, 20306, 1810, NULL, '1.0000', '10.8500', '10.8500', '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 (21053, '2021-09-29', 7853, 20307, 1810, NULL, '1.0000', '35.0000', '35.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 (21054, '2021-09-29', 7641, 20308, 1810, NULL, '1.0000', '6.5038', '6.5038', '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 (21055, '2021-09-29', 7709, 20309, 1810, NULL, '1.0000', '35.8000', '35.8000', '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 (21056, '2021-09-29', 7593, 20310, 1810, 34551, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21057, '2021-09-29', 7641, 20311, 1810, NULL, '1.0000', '6.5038', '6.5038', '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 (21058, '2021-09-29', 7684, 20312, 1810, NULL, '3.0000', '9.0000', '9.0000', '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 (21059, '2021-09-29', 2315, 20313, 1810, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21060, '2021-09-29', 7518, 20314, 1810, NULL, '1.0000', '-21.7700', '-21.7700', '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 (21061, '2021-09-29', 7583, 20315, 1810, NULL, '1.0000', '4.0000', '4.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 (21062, '2021-09-29', 8136, 20316, 1810, NULL, '1.0000', '29.3500', '29.3500', '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 (21063, '2021-09-29', 2906, 20317, 1810, 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 (21064, '2021-09-29', 2463, 20318, 1810, 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 (21065, '2021-09-29', 7482, 20319, 1810, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '40.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21066, '2021-09-29', 8915, 20320, 1810, NULL, '1.0000', '29.3500', '29.3500', '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 (21067, '2021-09-29', 2315, 20321, 1810, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21068, '2021-09-29', 7753, 20322, 1810, NULL, '1.0000', '3.1400', '3.1400', '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 (21069, '2021-09-29', 2251, 20323, 1811, 34419, '1.0000', '11.7398', '11.7398', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21070, '2021-09-29', 8773, 20324, 1811, NULL, '3.0000', '2.5000', '2.5000', '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 (21071, '2021-09-29', 2972, 20325, 1811, 22222, '1.0000', '22.9800', '22.9800', '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 (21072, '2021-09-29', 1602, 20326, 1811, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '20.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21073, '2021-09-29', 2384, 20327, 1811, 29813, '2.0000', '0.2683', '0.2683', '0.7000', '0.7000', '90.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21074, '2021-09-29', 1401, 20328, 1811, 31691, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21075, '2021-09-29', 2169, 20329, 1811, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21076, '2021-09-29', 2221, 20330, 1811, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (21077, '2021-09-29', 1612, 20331, 1811, 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 (21078, '2021-09-29', 2151, 20332, 1811, NULL, '1.0000', '17.5000', '17.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 (21079, '2021-09-29', 1763, 20333, 1811, 24015, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '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 (21080, '2021-09-29', 2280, 20334, 1811, 21586, '1.0000', '1.9000', '1.9000', '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 (21081, '2021-09-29', 8208, 20335, 1811, NULL, '3.0000', '33.0000', '33.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 (21082, '2021-09-29', 1840, 20336, 1811, 4973, '3.0000', '0.2400', '0.2400', '0.3000', '0.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 (21083, '2021-09-29', 1841, 20337, 1811, 24123, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '11.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 (21084, '2021-09-29', 2280, 20338, 1811, 21586, '1.0000', '1.9000', '1.9000', '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 (21085, '2021-09-29', 8594, 20339, 1811, 32594, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21086, '2021-09-29', 1812, 20340, 1811, 32067, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21087, '2021-09-29', 1912, 20341, 1811, 29799, '5.0000', '0.5743', '0.5743', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21088, '2021-09-29', 2699, 20342, 1811, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21089, '2021-09-29', 2849, 20343, 1811, 17311, '1.0000', '5.8500', '5.8500', '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 (21090, '2021-09-29', 1504, 20344, 1811, 34414, '10.0000', '0.8984', '0.8984', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21091, '2021-09-29', 1825, 20345, 1811, 25039, '1.0000', '4.5675', '4.5675', '7.0000', '7.0000', '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 (21092, '2021-09-29', 1462, 20346, 1811, 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 (21093, '2021-09-29', 9464, 20347, 1811, 31694, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21094, '2021-09-29', 1651, 20348, 1811, 32829, '1.0000', '7.4814', '7.4814', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21095, '2021-09-29', 2251, 20349, 1812, 34419, '1.0000', '11.7398', '11.7398', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21096, '2021-09-29', 8773, 20350, 1812, NULL, '3.0000', '2.5000', '2.5000', '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 (21097, '2021-09-29', 2972, 20351, 1812, 22222, '1.0000', '22.9800', '22.9800', '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 (21098, '2021-09-29', 1602, 20352, 1812, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21099, '2021-09-29', 2384, 20353, 1812, 29813, '2.0000', '0.2683', '0.2683', '0.7000', '0.7000', '88.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21100, '2021-09-29', 1401, 20354, 1812, 31691, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21101, '2021-09-29', 2169, 20355, 1812, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21102, '2021-09-29', 2221, 20356, 1812, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.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 (21103, '2021-09-29', 1612, 20357, 1812, 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 (21104, '2021-09-29', 2151, 20358, 1812, NULL, '1.0000', '17.5000', '17.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 (21105, '2021-09-29', 1763, 20359, 1812, 24015, '1.0000', '4.6900', '4.6900', '7.0000', '7.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 (21106, '2021-09-29', 2280, 20360, 1812, 21586, '1.0000', '1.9000', '1.9000', '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 (21107, '2021-09-29', 8208, 20361, 1812, NULL, '3.0000', '33.0000', '33.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 (21108, '2021-09-29', 1840, 20362, 1812, NULL, '3.0000', '0.2400', '0.2400', '0.3000', '0.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 (21109, '2021-09-29', 1841, 20363, 1812, 24123, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '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 (21110, '2021-09-29', 2280, 20364, 1812, 21586, '1.0000', '1.9000', '1.9000', '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 (21111, '2021-09-29', 8594, 20365, 1812, 32594, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21112, '2021-09-29', 1812, 20366, 1812, 32067, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21113, '2021-09-29', 1912, 20367, 1812, 29799, '5.0000', '0.5743', '0.5743', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21114, '2021-09-29', 2699, 20368, 1812, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21115, '2021-09-29', 2849, 20369, 1812, 17311, '1.0000', '5.8500', '5.8500', '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 (21116, '2021-09-29', 1504, 20370, 1812, 34414, '10.0000', '0.8984', '0.8984', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21117, '2021-09-29', 1825, 20371, 1812, 25039, '1.0000', '4.5675', '4.5675', '7.0000', '7.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 (21118, '2021-09-29', 1462, 20372, 1812, 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 (21119, '2021-09-29', 9464, 20373, 1812, 31694, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21120, '2021-09-29', 1651, 20374, 1812, 32829, '1.0000', '7.4814', '7.4814', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21121, '2021-09-29', 2307, 20375, 1813, 34954, '1.0000', '142.8300', '142.8300', '190.0000', '190.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21122, '2021-09-29', 1406, 20376, 1813, 34926, '1.0000', '18.4200', '18.4200', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21123, '2021-09-29', 7849, 20377, 1813, 36106, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21124, '2021-09-29', 1401, 20378, 1813, 31958, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21125, '2021-09-29', 7848, 20379, 1813, NULL, '2.0000', '1.3500', '1.3500', '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 (21126, '2021-09-29', 1620, 20380, 1813, 34019, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21127, '2021-09-29', 2169, 20381, 1813, NULL, '1.0000', '1.1484', '1.1484', '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 (21128, '2021-09-29', 2950, 20382, 1813, 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 (21129, '2021-09-29', 9445, 20383, 1813, 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 (21130, '2021-09-29', 1409, 20384, 1813, 24953, '1.0000', '13.0000', '13.0000', '18.0000', '18.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 (21131, '2021-09-29', 7411, 20385, 1813, NULL, '1.0000', '1.3500', '1.3500', '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 (21132, '2021-09-29', 2299, 20386, 1813, 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 (21133, '2021-09-29', 1529, 20387, 1813, NULL, '1.0000', '36.4099', '36.4099', '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 (21134, '2021-09-29', 1381, 20388, 1813, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21135, '2021-09-29', 2320, 20389, 1813, 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 (21136, '2021-09-29', 9544, 20390, 1813, 36119, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21137, '2021-09-29', 1557, 20391, 1813, 29633, '1.0000', '7.8420', '7.8420', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21138, '2021-09-29', 7741, 20392, 1813, NULL, '1.0000', '1.2000', '1.2000', '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 (21139, '2021-09-29', 7899, 20393, 1813, NULL, '2.0000', '3.0000', '3.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 (21140, '2021-09-29', 1863, 20394, 1813, NULL, '2.0000', '1.4033', '1.4033', '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 (21141, '2021-09-29', 2066, 20395, 1813, 34656, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21142, '2021-09-29', 2277, 20396, 1813, 34655, '2.0000', '0.8982', '0.8982', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21143, '2021-09-29', 1689, 20397, 1813, 34931, '1.0000', '12.3438', '12.3438', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21144, '2021-09-29', 8454, 20398, 1813, NULL, '1.0000', '5.1700', '5.1700', '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 (21145, '2021-09-29', 1311, 20399, 1813, 22366, '1.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 (21146, '2021-09-29', 1854, 20400, 1813, 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 (21147, '2021-09-29', 1501, 20401, 1813, NULL, '1.0000', '2.2111', '2.2111', '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 (21148, '2021-09-29', 2060, 20402, 1813, 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 (21149, '2021-09-29', 2411, 20403, 1813, 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 (21150, '2021-09-29', 1420, 20404, 1813, 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 (21151, '2021-09-29', 1501, 20405, 1813, NULL, '1.0000', '2.2111', '2.2111', '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 (21152, '2021-09-29', 3067, 20406, 1813, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '35.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 (21153, '2021-09-29', 7780, 20407, 1813, NULL, '1.0000', '2.6000', '2.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 (21154, '2021-09-29', 2169, 20408, 1813, NULL, '1.0000', '1.1484', '1.1484', '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 (21155, '2021-09-29', 2135, 20409, 1813, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21156, '2021-09-29', 2699, 20410, 1813, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21157, '2021-09-29', 7713, 20411, 1813, NULL, '3.0000', '4.4000', '4.4000', '0.6000', '0.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 (21158, '2021-09-29', 1523, 20412, 1813, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '3.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 (21159, '2021-09-29', 7443, 20413, 1813, NULL, '1.0000', '6.8600', '6.8600', '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 (21160, '2021-09-29', 1873, 20414, 1813, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21161, '2021-09-29', 3058, 20415, 1813, 24961, '1.0000', '4.3000', '4.3000', '6.0000', '6.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 (21162, '2021-09-29', 2821, 20416, 1813, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21163, '2021-09-29', 1812, 20417, 1813, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21164, '2021-09-29', 1574, 20418, 1813, 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 (21165, '2021-09-29', 7787, 20419, 1813, NULL, '1.0000', '10.9000', '10.9000', '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 (21166, '2021-09-29', 1529, 20420, 1813, NULL, '1.0000', '36.4099', '36.4099', '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 (21167, '2021-09-29', 1621, 20421, 1813, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (21168, '2021-09-29', 2169, 20422, 1813, NULL, '2.0000', '1.1484', '1.1484', '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 (21169, '2021-09-29', 1805, 20423, 1813, 34965, '1.0000', '4.5244', '4.5244', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21170, '2021-09-29', 7666, 20424, 1813, NULL, '1.0000', '10.0000', '10.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 (21171, '2021-09-29', 2135, 20425, 1813, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21172, '2021-09-29', 8135, 20426, 1813, NULL, '1.0000', '13.9000', '13.9000', '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 (21173, '2021-09-29', 2288, 20427, 1813, NULL, '1.0000', '7.8600', '7.8600', '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 (21174, '2021-09-29', 7921, 20428, 1813, NULL, '1.0000', '0.3000', '0.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 (21175, '2021-09-29', 7564, 20429, 1813, NULL, '1.0000', '0.6400', '0.6400', '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 (21176, '2021-09-29', 1694, 20430, 1813, 34936, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21177, '2021-09-29', 7707, 20431, 1814, NULL, '1.0000', '7.0000', '7.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 (21178, '2021-09-29', 7639, 20432, 1814, 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 (21179, '2021-09-29', 2699, 20433, 1814, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21180, '2021-09-29', 9275, 20434, 1814, NULL, '1.0000', '6.3000', '6.3000', '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 (21181, '2021-09-29', 9214, 20435, 1814, 32135, '1.0000', '7.4538', '7.4538', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21182, '2021-09-29', 9092, 20436, 1814, NULL, '2.0000', '5.2900', '5.2900', '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 (21183, '2021-09-29', 1812, 20437, 1815, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '15.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21184, '2021-09-29', 1935, 20438, 1815, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21185, '2021-09-30', 1486, 20439, 1816, NULL, '1.0000', '90.0000', '90.0000', '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 (21186, '2021-09-30', 1647, 20440, 1816, 24968, '1.0000', '4.7200', '4.7200', '7.5000', '7.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 (21187, '2021-09-30', 9336, 20441, 1816, 33370, '1.0000', '4.9500', '4.9500', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21188, '2021-09-30', 1946, 20442, 1816, NULL, '1.0000', '1.5500', '1.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 (21189, '2021-09-30', 2288, 20443, 1816, NULL, '1.0000', '7.8600', '7.8600', '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 (21190, '2021-09-30', 2103, 20444, 1816, 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 (21191, '2021-09-30', 1866, 20445, 1816, 34660, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21192, '2021-09-30', 1322, 20446, 1816, 23171, '1.0000', '-0.2716', '-0.2716', '6.0000', '6.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 (21193, '2021-09-30', 2100, 20447, 1816, 31962, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21194, '2021-09-30', 2242, 20448, 1816, NULL, '3.0000', '0.6028', '0.6028', '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 (21195, '2021-09-30', 2293, 20449, 1816, NULL, '2.0000', '1.4400', '1.4400', '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 (21196, '2021-09-30', 1519, 20450, 1816, 34967, '2.0000', '3.3500', '3.3500', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21197, '2021-09-30', 2167, 20451, 1816, 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 (21198, '2021-09-30', 2660, 20452, 1816, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (21199, '2021-09-30', 1689, 20453, 1816, 34931, '1.0000', '12.3438', '12.3438', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21200, '2021-09-30', 2305, 20454, 1816, NULL, '1.0000', '1.3300', '1.3300', '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 (21201, '2021-09-30', 2248, 20455, 1816, 31108, '1.0000', '2.8428', '2.8428', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21202, '2021-09-30', 1313, 20456, 1816, 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 (21203, '2021-09-30', 7671, 20457, 1816, NULL, '1.0000', '15.5000', '15.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 (21204, '2021-09-30', 9445, 20458, 1816, 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 (21205, '2021-09-30', 2643, 20459, 1816, 36117, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21206, '2021-09-30', 1700, 20460, 1816, 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 (21207, '2021-09-30', 2169, 20461, 1816, NULL, '1.0000', '1.1484', '1.1484', '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 (21208, '2021-09-30', 8133, 20462, 1816, 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 (21209, '2021-09-30', 1521, 20463, 1816, 34966, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21210, '2021-09-30', 1868, 20464, 1816, 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 (21211, '2021-09-30', 1912, 20465, 1816, NULL, '1.0000', '0.6591', '0.6591', '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 (21212, '2021-09-30', 1502, 20466, 1817, 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 (21213, '2021-09-30', 8746, 20467, 1817, NULL, '2.0000', '3.8000', '3.8000', '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 (21214, '2021-09-30', 8608, 20468, 1817, NULL, '1.0000', '0.9000', '0.9000', '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 (21215, '2021-09-30', 1573, 20469, 1818, NULL, '1.0000', '29.9042', '29.9042', '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 (21216, '2021-09-30', 2618, 20470, 1818, 9836, '-10.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 (21217, '2021-09-30', 2618, 20470, 1818, NULL, '11.0000', '4.1000', '4.1000', '5.5000', '5.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 (21218, '2021-09-30', 3012, 20471, 1818, NULL, '1.0000', '4.7000', '4.7000', '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 (21219, '2021-09-30', 2135, 20472, 1818, 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 (21220, '2021-09-30', 2712, 20473, 1818, 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 (21221, '2021-09-30', 2948, 20474, 1818, NULL, '1.0000', '0.9000', '0.9000', '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 (21222, '2021-09-30', 7886, 20475, 1818, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21223, '2021-09-30', 8608, 20476, 1818, NULL, '1.0000', '0.9000', '0.9000', '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 (21224, '2021-09-30', 2318, 20477, 1818, 3474, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '194.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21225, '2021-09-30', 1598, 20478, 1818, 8362, '-2.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 (21226, '2021-09-30', 1598, 20478, 1818, NULL, '3.0000', '3.2000', '3.2000', '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 (21227, '2021-09-30', 1346, 20479, 1818, 3319, '8.0000', '1.0594', '1.0594', '1.5000', '1.5000', '0.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 (21228, '2021-09-30', 1346, 20479, 1818, 242, '7.0000', '1.0594', '1.0594', '1.5000', '1.5000', '53.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 (21229, '2021-09-30', 2893, 20480, 1818, 18242, '-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 (21230, '2021-09-30', 2893, 20480, 1818, NULL, '2.0000', '6.0000', '6.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 (21231, '2021-09-30', 2317, 20481, 1818, 3473, '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 (21232, '2021-09-30', 1875, 20482, 1818, NULL, '10.0000', '2.4000', '2.4000', '3.6000', '3.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 (21233, '2021-09-30', 2272, 20483, 1818, 2932, '-7.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 (21234, '2021-09-30', 2272, 20483, 1818, NULL, '8.0000', '5.5000', '5.5000', '7.5000', '7.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 (21235, '2021-09-30', 1425, 20484, 1818, 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 (21236, '2021-09-30', 2916, 20485, 1818, 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 (21237, '2021-09-30', 9311, 20486, 1818, NULL, '2.0000', '6.6000', '6.6000', '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 (21238, '2021-09-30', 1994, 20487, 1818, NULL, '1.0000', '12.0000', '12.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 (21239, '2021-09-30', 2415, 20488, 1818, 4656, '-8.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 (21240, '2021-09-30', 2415, 20488, 1818, NULL, '9.0000', '5.0000', '5.0000', '7.0000', '7.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 (21241, '2021-09-30', 2861, 20489, 1818, 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 (21242, '2021-09-30', 2320, 20490, 1818, 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 (21243, '2021-09-30', 2916, 20491, 1818, 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 (21244, '2021-09-30', 2169, 20492, 1818, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '14.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 (21245, '2021-09-30', 1863, 20493, 1818, 10808, '-20.0000', '0.4136', '0.4136', '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 (21246, '2021-09-30', 1863, 20493, 1818, NULL, '22.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21247, '2021-09-30', 2003, 20494, 1819, 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 (21248, '2021-09-30', 2275, 20495, 1819, 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 (21249, '2021-09-30', 2004, 20496, 1819, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21250, '2021-09-30', 2467, 20497, 1820, 33799, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21251, '2021-09-30', 1619, 20498, 1820, 20621, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '7.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 (21252, '2021-09-30', 2169, 20499, 1821, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '13.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 (21253, '2021-09-30', 9518, 20500, 1821, 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 (21254, '2021-09-30', 2948, 20501, 1822, NULL, '3.0000', '0.9000', '0.9000', '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 (21255, '2021-09-30', 8679, 20502, 1823, NULL, '1.0000', '28.0000', '28.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 (21256, '2021-09-30', 1432, 20503, 1823, 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 (21257, '2021-09-30', 1686, 20504, 1823, NULL, '1.0000', '26.6000', '26.6000', '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 (21258, '2021-09-30', 2665, 20505, 1823, 11663, '-1.0000', '23.7600', '23.7600', '32.3000', '32.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 (21259, '2021-09-30', 2665, 20505, 1823, NULL, '2.0000', '23.7600', '23.7600', '32.3000', '32.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21260, '2021-09-30', 2221, 20506, 1823, 4154, '-4.0000', '14.4737', '14.4737', '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 (21261, '2021-09-30', 2221, 20506, 1823, NULL, '5.0000', '14.4737', '14.4737', '25.0000', '25.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 (21262, '2021-09-30', 1780, 20507, 1823, 588, '1.0000', '18.7146', '18.7146', '47.0000', '47.0000', '0.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 (21263, '2021-09-30', 1813, 20508, 1823, 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 (21264, '2021-09-30', 7509, 20509, 1824, 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 (21265, '2021-09-30', 7917, 20510, 1824, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21266, '2021-09-30', 8673, 20511, 1824, NULL, '1.0000', '37.5000', '37.5000', '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 (21267, '2021-09-30', 1904, 20512, 1824, 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 (21268, '2021-09-30', 7731, 20513, 1824, NULL, '1.0000', '0.0000', '0.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 (21269, '2021-09-30', 2367, 20514, 1824, NULL, '1.0000', '24.0000', '24.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 (21270, '2021-09-30', 8200, 20515, 1824, NULL, '1.0000', '8.5500', '8.5500', '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 (21271, '2021-09-30', 7671, 20516, 1824, NULL, '3.0000', '15.5000', '15.5000', '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 (21272, '2021-09-30', 7781, 20517, 1824, NULL, '3.0000', '4.2500', '4.2500', '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 (21273, '2021-09-30', 7638, 20518, 1824, 30935, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21274, '2021-09-30', 7612, 20519, 1824, NULL, '2.0000', '46.0000', '46.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 (21275, '2021-09-30', 2976, 20520, 1824, 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 (21276, '2021-09-30', 8077, 20521, 1824, NULL, '2.0000', '11.5000', '11.5000', '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 (21277, '2021-09-30', 7954, 20522, 1824, NULL, '4.0000', '21.0000', '21.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 (21278, '2021-09-30', 7632, 20523, 1824, NULL, '1.0000', '9.0000', '9.0000', '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 (21279, '2021-09-30', 8020, 20524, 1824, NULL, '1.0000', '51.6000', '51.6000', '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 (21280, '2021-09-30', 8596, 20525, 1824, NULL, '1.0000', '17.0000', '17.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 (21281, '2021-09-30', 7385, 20526, 1824, 36048, '10.0000', '933.1354', '933.1354', '3.5000', '3.5000', '41.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21282, '2021-09-30', 7608, 20527, 1824, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21283, '2021-09-30', 9303, 20528, 1824, NULL, '1.0000', '9.0000', '9.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 (21284, '2021-09-30', 1498, 20529, 1824, 33520, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21285, '2021-09-30', 2060, 20530, 1824, 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 (21286, '2021-09-30', 7328, 20531, 1824, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (21287, '2021-09-30', 7415, 20532, 1824, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21288, '2021-09-30', 1904, 20533, 1824, 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 (21289, '2021-09-30', 2060, 20534, 1824, 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 (21290, '2021-09-30', 2618, 20535, 1824, NULL, '1.0000', '4.1000', '4.1000', '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 (21291, '2021-09-30', 8097, 20536, 1824, NULL, '3.0000', '3.3994', '3.3994', '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 (21292, '2021-09-30', 2241, 20537, 1824, 32914, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21293, '2021-09-30', 8594, 20538, 1824, 32809, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21294, '2021-09-30', 7444, 20539, 1824, 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 (21295, '2021-09-30', 9265, 20540, 1824, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21296, '2021-09-30', 1812, 20541, 1825, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '14.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21297, '2021-09-30', 2643, 20542, 1825, 36117, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21298, '2021-09-30', 1912, 20543, 1825, NULL, '1.0000', '0.6591', '0.6591', '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 (21299, '2021-09-30', 1440, 20544, 1825, 34948, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21300, '2021-09-30', 9474, 20545, 1825, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21301, '2021-09-30', 1501, 20546, 1825, NULL, '1.0000', '2.2111', '2.2111', '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 (21302, '2021-09-30', 2293, 20547, 1825, 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 (21303, '2021-09-30', 2242, 20548, 1825, NULL, '2.0000', '0.6028', '0.6028', '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 (21304, '2021-09-30', 2315, 20549, 1825, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21305, '2021-09-30', 1863, 20550, 1825, NULL, '1.0000', '1.4033', '1.4033', '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 (21306, '2021-09-30', 1321, 20551, 1825, NULL, '1.0000', '9.8000', '9.8000', '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 (21307, '2021-09-30', 1780, 20552, 1825, 34587, '1.0000', '96.5277', '96.5277', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21308, '2021-09-30', 8186, 20553, 1825, NULL, '2.0000', '1.0800', '1.0800', '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 (21309, '2021-09-30', 2220, 20554, 1825, 24950, '1.0000', '5.9300', '5.9300', '8.0000', '8.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 (21310, '2021-09-30', 7342, 20555, 1825, NULL, '1.0000', '15.6000', '15.6000', '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 (21311, '2021-09-30', 2660, 20556, 1825, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (21312, '2021-09-30', 2237, 20557, 1825, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21313, '2021-09-30', 2315, 20558, 1825, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21314, '2021-09-30', 2252, 20559, 1825, 34647, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21315, '2021-09-30', 1554, 20560, 1825, 23115, '1.0000', '2.3063', '2.3063', '5.0000', '5.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 (21316, '2021-09-30', 2994, 20561, 1825, 31961, '1.0000', '18.9320', '18.9320', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21317, '2021-09-30', 1863, 20562, 1825, NULL, '1.0000', '1.4033', '1.4033', '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 (21318, '2021-09-30', 2169, 20563, 1825, NULL, '1.0000', '1.1484', '1.1484', '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 (21319, '2021-09-30', 1863, 20564, 1825, NULL, '1.0000', '1.4033', '1.4033', '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 (21320, '2021-09-30', 7871, 20565, 1826, NULL, '7.0000', '6.0000', '6.0000', '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 (21321, '2021-09-30', 1904, 20566, 1826, 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 (21322, '2021-09-30', 9092, 20567, 1826, NULL, '2.0000', '5.2900', '5.2900', '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 (21323, '2021-09-30', 7641, 20568, 1826, NULL, '1.0000', '6.5038', '6.5038', '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 (21324, '2021-09-30', 9095, 20569, 1826, NULL, '2.0000', '17.5000', '17.5000', '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 (21325, '2021-09-30', 8200, 20570, 1826, NULL, '1.0000', '8.5500', '8.5500', '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 (21326, '2021-09-30', 7459, 20571, 1826, NULL, '10.0000', '40.3500', '40.3500', '3.5000', '3.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 (21327, '2021-09-30', 7429, 20572, 1826, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21328, '2021-09-30', 1867, 20573, 1826, 35213, '1.0000', '9.9490', '9.9490', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21329, '2021-09-30', 8077, 20574, 1826, NULL, '1.0000', '11.5000', '11.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 (21330, '2021-09-30', 7612, 20575, 1826, NULL, '1.0000', '46.0000', '46.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 (21331, '2021-09-30', 7774, 20576, 1826, NULL, '1.0000', '3.5000', '3.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 (21332, '2021-09-30', 9401, 20577, 1826, NULL, '1.0000', '3.5000', '3.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 (21333, '2021-09-30', 2315, 20578, 1826, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21334, '2021-09-30', 1867, 20579, 1826, 35213, '1.0000', '9.9490', '9.9490', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21335, '2021-09-30', 8722, 20580, 1826, 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 (21336, '2021-09-30', 7708, 20581, 1826, NULL, '1.0000', '6.1400', '6.1400', '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 (21337, '2021-09-30', 7777, 20582, 1826, NULL, '2.0000', '9.5000', '9.5000', '11.5000', '11.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 (21338, '2021-09-30', 7588, 20583, 1826, NULL, '2.0000', '7.6111', '7.6111', '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 (21339, '2021-09-30', 8308, 20584, 1826, NULL, '1.0000', '11.0000', '11.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 (21340, '2021-09-30', 7686, 20585, 1826, NULL, '1.0000', '19.3000', '19.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 (21341, '2021-09-30', 2315, 20586, 1826, NULL, '3.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-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 (21342, '2021-09-30', 8666, 20587, 1826, NULL, '1.0000', '0.4600', '0.4600', '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 (21343, '2021-09-30', 8288, 20588, 1826, NULL, '2.0000', '20.0000', '20.0000', '1.8000', '1.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 (21344, '2021-09-30', 2457, 20589, 1826, NULL, '1.0000', '23.0000', '23.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 (21345, '2021-09-30', 2296, 20590, 1826, 34515, '1.0000', '12.8812', '12.8812', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21346, '2021-09-30', 8965, 20591, 1826, NULL, '1.0000', '52.9900', '52.9900', '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 (21347, '2021-09-30', 7931, 20592, 1826, NULL, '1.0000', '0.2500', '0.2500', '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 (21348, '2021-09-30', 7353, 20593, 1826, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21349, '2021-09-30', 1904, 20594, 1826, 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 (21350, '2021-09-30', 2315, 20595, 1826, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21351, '2021-09-30', 7558, 20596, 1826, NULL, '10.0000', '2.2000', '2.2000', '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 (21352, '2021-09-30', 9269, 20597, 1826, 34548, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21353, '2021-09-30', 9092, 20598, 1826, NULL, '1.0000', '5.2900', '5.2900', '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 (21354, '2021-09-30', 8715, 20599, 1826, NULL, '1.0000', '3.3000', '3.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 (21355, '2021-09-30', 2648, 20600, 1826, NULL, '1.0000', '5.4000', '5.4000', '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 (21356, '2021-09-30', 7496, 20601, 1826, NULL, '1.0000', '0.9600', '0.9600', '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 (21357, '2021-09-30', 1632, 20602, 1826, 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 (21358, '2021-09-30', 8360, 20603, 1826, 35193, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21359, '2021-09-30', 1577, 20604, 1826, 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 (21360, '2021-09-30', 7946, 20605, 1826, NULL, '1.0000', '0.5200', '0.5200', '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 (21361, '2021-09-30', 7713, 20606, 1826, NULL, '6.0000', '4.4000', '4.4000', '0.6000', '0.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 (21362, '2021-09-30', 9094, 20607, 1826, NULL, '1.0000', '6.0000', '6.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 (21363, '2021-09-30', 2104, 20608, 1826, NULL, '2.0000', '0.2000', '0.2000', '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 (21364, '2021-09-30', 8704, 20609, 1826, 30923, '1.0000', '6.0500', '6.0500', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21365, '2021-09-30', 2100, 20610, 1826, 34547, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21366, '2021-09-30', 7806, 20611, 1826, NULL, '5.0000', '14.0000', '14.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 (21367, '2021-09-30', 8308, 20612, 1826, NULL, '1.0000', '11.0000', '11.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 (21368, '2021-09-30', 1854, 20613, 1826, 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 (21369, '2021-09-30', 8097, 20614, 1826, NULL, '3.0000', '3.3994', '3.3994', '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 (21370, '2021-09-30', 8735, 20615, 1826, NULL, '1.0000', '5.6000', '5.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 (21371, '2021-09-30', 8085, 20616, 1826, NULL, '3.0000', '14.0000', '14.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 (21372, '2021-09-30', 8512, 20617, 1826, NULL, '2.0000', '4.0000', '4.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 (21373, '2021-09-30', 1837, 20618, 1826, 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 (21374, '2021-09-30', 8978, 20619, 1826, NULL, '1.0000', '0.6900', '0.6900', '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 (21375, '2021-09-30', 8714, 20620, 1827, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21376, '2021-09-30', 7820, 20621, 1827, NULL, '2.0000', '8.4000', '8.4000', '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 (21377, '2021-09-30', 9250, 20622, 1827, 31027, '1.0000', '18.9800', '18.9800', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21378, '2021-09-30', 7491, 20623, 1827, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21379, '2021-09-30', 7465, 20624, 1827, 36025, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21380, '2021-09-30', 9089, 20625, 1827, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21381, '2021-09-30', 7391, 20626, 1827, 35192, '1.0000', '-49.8192', '-49.8192', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21382, '2021-09-30', 1837, 20627, 1827, 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 (21383, '2021-09-30', 8097, 20628, 1827, NULL, '3.0000', '3.3994', '3.3994', '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 (21384, '2021-09-30', 2284, 20629, 1827, 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 (21385, '2021-09-30', 2411, 20630, 1828, 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 (21386, '2021-09-30', 1805, 20631, 1828, 34965, '1.0000', '4.5244', '4.5244', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21387, '2021-09-30', 9445, 20632, 1828, 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 (21388, '2021-09-30', 1863, 20633, 1828, NULL, '1.0000', '1.4033', '1.4033', '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 (21389, '2021-09-30', 2951, 20634, 1828, 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 (21390, '2021-09-30', 7482, 20635, 1828, 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 (21391, '2021-09-30', 2916, 20636, 1828, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21392, '2021-09-30', 1501, 20637, 1828, NULL, '1.0000', '2.2111', '2.2111', '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 (21393, '2021-09-30', 2288, 20638, 1828, NULL, '1.0000', '7.8600', '7.8600', '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 (21394, '2021-09-30', 3018, 20639, 1828, 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 (21395, '2021-09-30', 7411, 20640, 1828, NULL, '1.0000', '1.3500', '1.3500', '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 (21396, '2021-09-30', 1557, 20641, 1828, 29633, '1.0000', '7.8420', '7.8420', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21397, '2021-09-30', 2609, 20642, 1828, 34938, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21398, '2021-09-30', 2221, 20643, 1828, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21399, '2021-09-30', 2169, 20644, 1828, NULL, '1.0000', '1.1484', '1.1484', '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 (21400, '2021-09-30', 1307, 20645, 1828, 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 (21401, '2021-09-30', 1523, 20646, 1828, 24139, '2.0000', '1.0061', '1.0061', '5.0000', '5.0000', '1.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 (21402, '2021-09-30', 2320, 20647, 1828, 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 (21403, '2021-09-30', 7702, 20648, 1828, NULL, '1.0000', '0.4600', '0.4600', '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 (21404, '2021-09-30', 9474, 20649, 1828, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21405, '2021-09-30', 7342, 20650, 1828, NULL, '1.0000', '15.6000', '15.6000', '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 (21406, '2021-09-30', 7672, 20651, 1828, NULL, '1.0000', '1.0200', '1.0200', '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 (21407, '2021-09-30', 9265, 20652, 1829, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21408, '2021-09-30', 7905, 20653, 1829, NULL, '1.0000', '0.7000', '0.7000', '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 (21409, '2021-09-30', 1469, 20654, 1829, NULL, '1.0000', '6.1800', '6.1800', '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 (21410, '2021-09-30', 7542, 20655, 1829, NULL, '1.0000', '0.2100', '0.2100', '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 (21411, '2021-09-30', 7472, 20656, 1829, NULL, '1.0000', '4.1000', '4.1000', '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 (21412, '2021-09-30', 7744, 20657, 1829, 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 (21413, '2021-09-30', 9213, 20658, 1829, 32137, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21414, '2021-09-30', 8497, 20659, 1830, NULL, '1.0000', '28.0000', '28.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 (21415, '2021-09-30', 7914, 20660, 1830, NULL, '1.0000', '19.0000', '19.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 (21416, '2021-09-30', 7853, 20661, 1830, NULL, '1.0000', '35.0000', '35.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 (21417, '2021-09-30', 1499, 20662, 1831, 31996, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '36.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21418, '2021-09-30', 7741, 20663, 1831, NULL, '1.0000', '1.2000', '1.2000', '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 (21419, '2021-09-30', 2695, 20664, 1831, 12681, '3.0000', '2.0000', '2.0000', '2.7000', '2.7000', '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 (21420, '2021-09-30', 2334, 20665, 1831, 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 (21421, '2021-09-30', 1595, 20666, 1831, 10320, '1.0000', '18.6100', '18.6100', '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 (21422, '2021-09-30', 7780, 20667, 1831, NULL, '1.0000', '2.6000', '2.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 (21423, '2021-09-30', 1667, 20668, 1831, 36018, '1.0000', '70.0043', '70.0043', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21424, '2021-09-30', 2712, 20669, 1831, 35941, '7.0000', '0.2600', '0.2600', '0.5000', '0.5000', '78.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21425, '2021-09-30', 1910, 20670, 1831, NULL, '3.0000', '1.0200', '1.0200', '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 (21426, '2021-09-30', 2020, 20671, 1831, 35989, '1.0000', '6.8666', '6.8666', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21427, '2021-09-30', 1702, 20672, 1831, 33016, '1.0000', '60.1221', '60.1221', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21428, '2021-09-30', 2315, 20673, 1831, 3069, '4.0000', '0.3300', '0.3300', '0.5100', '0.5100', '255.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21429, '2021-09-30', 1488, 20674, 1831, 33032, '1.0000', '18.3333', '18.3333', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21430, '2021-09-30', 1651, 20675, 1831, 32829, '1.0000', '7.4814', '7.4814', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21431, '2021-09-30', 2169, 20676, 1831, 33220, '1.0000', '1.0100', '1.0100', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21432, '2021-09-30', 7583, 20677, 1831, NULL, '1.0000', '4.0000', '4.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 (21433, '2021-09-30', 8384, 20678, 1831, 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 (21434, '2021-09-30', 1368, 20679, 1831, 33212, '1.0000', '-163.5000', '-163.5000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21435, '2021-09-30', 2379, 20680, 1831, 4385, '1.0000', '1.5900', '1.5900', '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 (21436, '2021-09-30', 2403, 20681, 1831, 32886, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21437, '2021-09-30', 1700, 20682, 1831, 33230, '1.0000', '44.4444', '44.4444', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21438, '2021-09-30', 1425, 20683, 1831, 36007, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21439, '2021-09-30', 2280, 20684, 1831, 21586, '1.0000', '1.9000', '1.9000', '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 (21440, '2021-09-30', 8027, 20685, 1831, NULL, '1.0000', '15.0000', '15.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 (21441, '2021-09-30', 7671, 20686, 1831, NULL, '2.0000', '15.5000', '15.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 (21442, '2021-09-30', 1410, 20687, 1831, 31729, '1.0000', '2.2220', '2.2220', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21443, '2021-09-30', 1837, 20688, 1831, 31714, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21444, '2021-09-30', 1837, 20688, 1831, 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 (21445, '2021-09-30', 2169, 20689, 1831, 33220, '2.0000', '1.0100', '1.0100', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21446, '2021-09-30', 2379, 20690, 1831, 4385, '1.0000', '1.5900', '1.5900', '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 (21447, '2021-09-30', 2665, 20691, 1831, 24330, '1.0000', '24.4700', '24.4700', '32.3000', '32.3000', '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 (21448, '2021-09-30', 2681, 20692, 1831, 32858, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21449, '2021-09-30', 1863, 20693, 1831, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21450, '2021-09-30', 8594, 20694, 1831, 32594, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21451, '2021-09-30', 1992, 20695, 1831, 31693, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21452, '2021-09-30', 1602, 20696, 1831, 33013, '1.0000', '6.9562', '6.9562', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21453, '2021-09-30', 2712, 20697, 1831, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21454, '2021-09-30', 2424, 20698, 1831, 21822, '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 (21455, '2021-09-30', 1602, 20699, 1831, 33013, '2.0000', '6.9562', '6.9562', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21456, '2021-09-30', 2710, 20700, 1831, 24266, '1.0000', '40.3000', '40.3000', '53.0000', '53.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 (21457, '2021-09-30', 2121, 20701, 1831, 2643, '1.0000', '20.0000', '20.0000', '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 (21458, '2021-09-30', 2272, 20702, 1831, 33235, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21459, '2021-09-30', 8517, 20703, 1831, 31989, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21460, '2021-09-30', 1347, 20704, 1831, NULL, '10.0000', '3.4909', '3.4909', '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 (21461, '2021-09-30', 1785, 20705, 1832, 34420, '1.0000', '13.7535', '13.7535', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21462, '2021-09-30', 7741, 20706, 1832, NULL, '2.0000', '1.2000', '1.2000', '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 (21463, '2021-09-30', 1662, 20707, 1832, 18790, '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 (21464, '2021-09-30', 1641, 20708, 1832, 34686, '13.0000', '76.5908', '76.5908', '1.3000', '1.3000', '77.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21465, '2021-09-30', 2679, 20709, 1832, 32876, '1.0000', '32.1809', '32.1809', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21466, '2021-09-30', 2315, 20710, 1833, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '253.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21467, '2021-09-30', 8746, 20711, 1834, NULL, '1.0000', '3.8000', '3.8000', '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 (21468, '2021-09-30', 8638, 20712, 1834, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21469, '2021-09-30', 1812, 20713, 1834, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '13.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21470, '2021-10-01', 7558, 20714, 1835, NULL, '1.0000', '33.0200', '33.0200', '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 (21471, '2021-10-01', 2169, 20715, 1835, NULL, '1.0000', '1.1484', '1.1484', '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 (21472, '2021-10-01', 2289, 20716, 1835, 13744, '2.0000', '0.2300', '0.2300', '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 (21473, '2021-10-01', 1841, 20717, 1835, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '85.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21474, '2021-10-01', 3001, 20718, 1835, 23116, '2.0000', '1.5000', '1.5000', '2.0000', '2.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 (21475, '2021-10-01', 7781, 20719, 1835, NULL, '3.0000', '4.2500', '4.2500', '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 (21476, '2021-10-01', 2242, 20720, 1835, NULL, '3.0000', '0.6028', '0.6028', '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 (21477, '2021-10-01', 2309, 20721, 1835, 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 (21478, '2021-10-01', 8677, 20722, 1835, NULL, '1.0000', '7.8000', '7.8000', '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 (21479, '2021-10-01', 1519, 20723, 1835, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21480, '2021-10-01', 9470, 20724, 1835, NULL, '1.0000', '9.6000', '9.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 (21481, '2021-10-01', 2088, 20725, 1835, 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 (21482, '2021-10-01', 7901, 20726, 1835, NULL, '1.0000', '14.5000', '14.5000', '3.2000', '3.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 (21483, '2021-10-01', 2985, 20727, 1835, 22600, '1.0000', '28.1000', '28.1000', '37.0000', '37.0000', '0.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 (21484, '2021-10-01', 9174, 20728, 1835, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21485, '2021-10-01', 7781, 20729, 1835, NULL, '6.0000', '4.2500', '4.2500', '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 (21486, '2021-10-01', 2083, 20730, 1835, 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 (21487, '2021-10-01', 1580, 20731, 1835, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21488, '2021-10-01', 2435, 20732, 1835, 23971, '1.0000', '5.0000', '5.0000', '7.0000', '7.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 (21489, '2021-10-01', 1523, 20733, 1835, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '0.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 (21490, '2021-10-01', 2332, 20734, 1835, 13739, '1.0000', '5.0900', '5.0900', '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 (21491, '2021-10-01', 2167, 20735, 1835, 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 (21492, '2021-10-01', 1855, 20736, 1836, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '15.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 (21493, '2021-10-01', 2135, 20737, 1836, 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 (21494, '2021-10-01', 3035, 20738, 1836, NULL, '1.0000', '9.5000', '9.5000', '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 (21495, '2021-10-01', 1338, 20739, 1836, 16502, '-2.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 (21496, '2021-10-01', 1338, 20739, 1836, NULL, '3.0000', '4.0000', '4.0000', '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 (21497, '2021-10-01', 1863, 20740, 1836, 10808, '-22.0000', '0.4136', '0.4136', '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 (21498, '2021-10-01', 1863, 20740, 1836, NULL, '23.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (21499, '2021-10-01', 1333, 20741, 1836, 229, '10.0000', '0.5500', '0.5500', '1.0000', '1.0000', '0.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 (21500, '2021-10-01', 1333, 20741, 1836, 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 (21501, '2021-10-01', 1335, 20742, 1836, 231, '10.0000', '0.8500', '0.8500', '2.0000', '2.0000', '0.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 (21502, '2021-10-01', 1335, 20742, 1836, NULL, '2.0000', '0.8500', '0.8500', '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 (21503, '2021-10-01', 2635, 20743, 1836, 10297, '-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 (21504, '2021-10-01', 2635, 20743, 1836, NULL, '5.0000', '3.0000', '3.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 (21505, '2021-10-01', 1329, 20744, 1836, 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 (21506, '2021-10-01', 8998, 20745, 1836, NULL, '1.0000', '0.4000', '0.4000', '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 (21507, '2021-10-01', 2694, 20746, 1836, 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 (21508, '2021-10-01', 1763, 20747, 1836, 3173, '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 (21509, '2021-10-01', 2712, 20748, 1836, 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 (21510, '2021-10-01', 2416, 20749, 1836, 4745, '-4.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 (21511, '2021-10-01', 2416, 20749, 1836, NULL, '5.0000', '1.2000', '1.2000', '1.5000', '1.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 (21512, '2021-10-01', 2547, 20750, 1836, NULL, '1.0000', '8.7600', '8.7600', '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 (21513, '2021-10-01', 1646, 20751, 1836, 3239, '-5.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 (21514, '2021-10-01', 1646, 20751, 1836, NULL, '6.0000', '4.5300', '4.5300', '7.5000', '7.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 (21515, '2021-10-01', 8666, 20752, 1836, NULL, '1.0000', '0.4600', '0.4600', '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 (21516, '2021-10-01', 2643, 20753, 1836, 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 (21517, '2021-10-01', 2297, 20754, 1836, NULL, '1.0000', '6.6000', '6.6000', '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 (21518, '2021-10-01', 1889, 20755, 1836, 5429, '-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 (21519, '2021-10-01', 1889, 20755, 1836, NULL, '4.0000', '90.0000', '90.0000', '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 (21520, '2021-10-01', 1863, 20756, 1836, 10808, '-22.0000', '0.4136', '0.4136', '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 (21521, '2021-10-01', 1863, 20756, 1836, NULL, '24.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (21522, '2021-10-01', 2466, 20757, 1836, 12695, '1.0000', '13.5900', '13.5900', '19.5000', '19.5000', '2.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 (21523, '2021-10-01', 1519, 20758, 1836, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (21524, '2021-10-01', 1581, 20759, 1836, 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 (21525, '2021-10-01', 1831, 20760, 1836, 20660, '1.0000', '8.4400', '8.4400', '11.5000', '11.5000', '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 (21526, '2021-10-01', 2920, 20761, 1836, NULL, '2.0000', '22.0000', '22.0000', '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 (21527, '2021-10-01', 2787, 20762, 1836, 16140, '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 (21528, '2021-10-01', 2221, 20763, 1836, 4154, '-5.0000', '14.4737', '14.4737', '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 (21529, '2021-10-01', 2221, 20763, 1836, NULL, '6.0000', '14.4737', '14.4737', '25.0000', '25.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 (21530, '2021-10-01', 2331, 20764, 1836, 3834, '-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 (21531, '2021-10-01', 2331, 20764, 1836, NULL, '3.0000', '12.0700', '12.0700', '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 (21532, '2021-10-01', 1641, 20765, 1836, 3214, '-12.0000', '0.9800', '0.9800', '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 (21533, '2021-10-01', 1641, 20765, 1836, NULL, '48.0000', '0.9800', '0.9800', '1.3000', '1.3000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21534, '2021-10-01', 2660, 20766, 1836, NULL, '10.0000', '0.7000', '0.7000', '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 (21535, '2021-10-01', 1555, 20767, 1836, 1626, '1.0000', '22.2400', '22.2400', '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 (21536, '2021-10-01', 2444, 20768, 1836, 5314, '-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 (21537, '2021-10-01', 2444, 20768, 1836, NULL, '2.0000', '6.0000', '6.0000', '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 (21538, '2021-10-01', 2643, 20769, 1836, 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 (21539, '2021-10-01', 9519, 20770, 1836, 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 (21540, '2021-10-01', 1863, 20771, 1837, NULL, '1.0000', '1.4033', '1.4033', '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 (21541, '2021-10-01', 8638, 20772, 1837, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21542, '2021-10-01', 1330, 20773, 1837, 19334, '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 (21543, '2021-10-01', 2599, 20774, 1838, 13516, '1.0000', '45.0000', '45.0000', '65.0000', '65.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 (21544, '2021-10-01', 2360, 20775, 1838, 3862, '-11.0000', '0.5200', '0.5200', '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 (21545, '2021-10-01', 2360, 20775, 1838, NULL, '12.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (21546, '2021-10-01', 2169, 20776, 1838, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '12.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 (21547, '2021-10-01', 2948, 20777, 1838, NULL, '2.0000', '0.9000', '0.9000', '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 (21548, '2021-10-01', 1602, 20778, 1838, 5897, '-8.0000', '6.7859', '6.7859', '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 (21549, '2021-10-01', 1602, 20778, 1838, NULL, '9.0000', '6.7859', '6.7859', '10.5000', '10.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 (21550, '2021-10-01', 2599, 20779, 1839, 8536, '1.0000', '45.0000', '45.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 (21551, '2021-10-01', 2360, 20780, 1839, 3862, '-12.0000', '0.5200', '0.5200', '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 (21552, '2021-10-01', 2360, 20780, 1839, NULL, '13.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (21553, '2021-10-01', 2169, 20781, 1839, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (21554, '2021-10-01', 2948, 20782, 1839, NULL, '2.0000', '0.9000', '0.9000', '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 (21555, '2021-10-01', 1602, 20783, 1839, 5897, '-9.0000', '6.7859', '6.7859', '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 (21556, '2021-10-01', 1602, 20783, 1839, NULL, '10.0000', '6.7859', '6.7859', '10.5000', '10.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 (21557, '2021-10-01', 2277, 20784, 1840, 2937, '-4.0000', '0.7800', '0.7800', '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 (21558, '2021-10-01', 2277, 20784, 1840, NULL, '6.0000', '0.7800', '0.7800', '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 (21559, '2021-10-01', 2416, 20785, 1840, 4745, '-5.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 (21560, '2021-10-01', 2416, 20785, 1840, NULL, '6.0000', '1.2000', '1.2000', '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 (21561, '2021-10-01', 1812, 20786, 1840, 8224, '-8.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 (21562, '2021-10-01', 1812, 20786, 1840, NULL, '9.0000', '7.8900', '7.8900', '10.5000', '10.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 (21563, '2021-10-01', 1863, 20787, 1841, 10808, '-25.0000', '0.4136', '0.4136', '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 (21564, '2021-10-01', 1863, 20787, 1841, NULL, '26.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (21565, '2021-10-01', 2283, 20788, 1842, 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 (21566, '2021-10-01', 3013, 20789, 1842, 36063, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21567, '2021-10-01', 7427, 20790, 1842, 34500, '1.0000', '25.0000', '25.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21568, '2021-10-01', 2095, 20791, 1842, NULL, '1.0000', '1.5000', '1.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 (21569, '2021-10-01', 2100, 20792, 1842, 34547, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21570, '2021-10-01', 1574, 20793, 1842, 35185, '3.0000', '1.5000', '1.5000', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21571, '2021-10-01', 2386, 20794, 1842, NULL, '1.0000', '2.0100', '2.0100', '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 (21572, '2021-10-01', 8324, 20795, 1842, NULL, '1.0000', '3.4130', '3.4130', '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 (21573, '2021-10-01', 7514, 20796, 1842, NULL, '1.0000', '12.9983', '12.9983', '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 (21574, '2021-10-01', 7674, 20797, 1842, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '230.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21575, '2021-10-01', 1302, 20798, 1842, 33519, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21576, '2021-10-01', 8455, 20799, 1842, NULL, '1.0000', '4.5000', '4.5000', '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 (21577, '2021-10-01', 7593, 20800, 1842, 34551, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21578, '2021-10-01', 1976, 20801, 1842, 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 (21579, '2021-10-01', 7640, 20802, 1842, NULL, '1.0000', '5.8900', '5.8900', '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 (21580, '2021-10-01', 7335, 20803, 1842, NULL, '1.0000', '10.4000', '10.4000', '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 (21581, '2021-10-01', 9534, 20804, 1842, 36035, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21582, '2021-10-01', 1837, 20805, 1842, 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 (21583, '2021-10-01', 7531, 20806, 1842, NULL, '3.0000', '16.5000', '16.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 (21584, '2021-10-01', 9092, 20807, 1842, NULL, '4.0000', '5.2900', '5.2900', '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 (21585, '2021-10-01', 2060, 20808, 1842, 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 (21586, '2021-10-01', 7444, 20809, 1842, 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 (21587, '2021-10-01', 7482, 20810, 1842, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21588, '2021-10-01', 8702, 20811, 1842, NULL, '1.0000', '3.6700', '3.6700', '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 (21589, '2021-10-01', 7317, 20812, 1842, NULL, '1.0000', '19.5500', '19.5500', '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 (21590, '2021-10-01', 1809, 20813, 1842, NULL, '1.0000', '10.5000', '10.5000', '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 (21591, '2021-10-01', 7411, 20814, 1842, NULL, '3.0000', '1.3500', '1.3500', '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 (21592, '2021-10-01', 8756, 20815, 1842, NULL, '1.0000', '5.9323', '5.9323', '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 (21593, '2021-10-01', 9409, 20816, 1842, NULL, '1.0000', '11.0000', '11.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 (21594, '2021-10-01', 7715, 20817, 1842, 30500, '2.0000', '1.8900', '1.8900', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21595, '2021-10-01', 2699, 20818, 1842, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21596, '2021-10-01', 2822, 20819, 1842, 30155, '2.0000', '2.7200', '2.7200', '4.0000', '4.0000', '42.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21597, '2021-10-01', 7832, 20820, 1842, 36086, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21598, '2021-10-01', 7317, 20821, 1842, NULL, '1.0000', '19.5500', '19.5500', '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 (21599, '2021-10-01', 8328, 20822, 1842, NULL, '1.0000', '8.0882', '8.0882', '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 (21600, '2021-10-01', 1618, 20823, 1842, 33521, '1.0000', '28652.6828', '28652.6828', '16.0000', '16.0000', '10.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21601, '2021-10-01', 9089, 20824, 1842, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21602, '2021-10-01', 9431, 20825, 1842, 30486, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21603, '2021-10-01', 7672, 20826, 1843, NULL, '1.0000', '1.0200', '1.0200', '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 (21604, '2021-10-01', 8184, 20827, 1843, NULL, '10.0000', '1.5519', '1.5519', '3.5000', '3.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 (21605, '2021-10-01', 1557, 20828, 1843, NULL, '1.0000', '7.8800', '7.8800', '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 (21606, '2021-10-01', 8094, 20829, 1843, NULL, '5.0000', '47.0000', '47.0000', '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 (21607, '2021-10-01', 9193, 20830, 1843, NULL, '1.0000', '6.7400', '6.7400', '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 (21608, '2021-10-01', 7709, 20831, 1843, NULL, '2.0000', '35.8000', '35.8000', '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 (21609, '2021-10-01', 7547, 20832, 1843, NULL, '2.0000', '0.0000', '0.0000', '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 (21610, '2021-10-01', 8324, 20833, 1843, NULL, '2.0000', '3.4130', '3.4130', '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 (21611, '2021-10-01', 8425, 20834, 1843, NULL, '1.0000', '30.0000', '30.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 (21612, '2021-10-01', 8230, 20835, 1843, NULL, '1.0000', '5.0000', '5.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 (21613, '2021-10-01', 7608, 20836, 1843, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21614, '2021-10-01', 8512, 20837, 1843, NULL, '4.0000', '4.0000', '4.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 (21615, '2021-10-01', 9275, 20838, 1843, NULL, '2.0000', '6.3000', '6.3000', '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 (21616, '2021-10-01', 7832, 20839, 1843, 36086, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21617, '2021-10-01', 7914, 20840, 1843, NULL, '1.0000', '19.0000', '19.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 (21618, '2021-10-01', 8428, 20841, 1843, NULL, '1.0000', '27.0000', '27.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 (21619, '2021-10-01', 8978, 20842, 1843, NULL, '1.0000', '0.6900', '0.6900', '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 (21620, '2021-10-01', 7666, 20843, 1843, NULL, '1.0000', '10.0000', '10.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 (21621, '2021-10-01', 8672, 20844, 1843, NULL, '1.0000', '5.4500', '5.4500', '1.6000', '1.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 (21622, '2021-10-01', 7781, 20845, 1843, NULL, '7.0000', '4.2500', '4.2500', '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 (21623, '2021-10-01', 7411, 20846, 1843, NULL, '2.0000', '1.3500', '1.3500', '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 (21624, '2021-10-01', 8735, 20847, 1843, NULL, '1.0000', '5.6000', '5.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 (21625, '2021-10-01', 2289, 20848, 1843, NULL, '4.0000', '0.2300', '0.2300', '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 (21626, '2021-10-01', 7518, 20849, 1843, NULL, '1.0000', '-21.7700', '-21.7700', '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 (21627, '2021-10-01', 7671, 20850, 1843, NULL, '1.0000', '15.5000', '15.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 (21628, '2021-10-01', 8308, 20851, 1843, NULL, '1.0000', '11.0000', '11.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 (21629, '2021-10-01', 9274, 20852, 1843, 36030, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21630, '2021-10-01', 7411, 20853, 1843, NULL, '1.0000', '1.3500', '1.3500', '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 (21631, '2021-10-01', 9508, 20854, 1843, NULL, '1.0000', '3.4000', '3.4000', '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 (21632, '2021-10-01', 7482, 20855, 1843, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '38.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21633, '2021-10-01', 7359, 20856, 1843, NULL, '1.0000', '20.0000', '20.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 (21634, '2021-10-01', 7531, 20857, 1843, NULL, '3.0000', '16.5000', '16.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 (21635, '2021-10-01', 7514, 20858, 1843, NULL, '1.0000', '12.9983', '12.9983', '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 (21636, '2021-10-01', 7473, 20859, 1843, NULL, '10.0000', '9.2200', '9.2200', '0.6000', '0.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 (21637, '2021-10-01', 7345, 20860, 1843, NULL, '2.0000', '38.2000', '38.2000', '62.0000', '62.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 (21638, '2021-10-01', 2315, 20861, 1843, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21639, '2021-10-01', 7473, 20862, 1843, NULL, '3.0000', '9.2200', '9.2200', '0.6000', '0.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 (21640, '2021-10-01', 7415, 20863, 1843, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21641, '2021-10-01', 7952, 20864, 1843, NULL, '1.0000', '1.4000', '1.4000', '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 (21642, '2021-10-01', 9092, 20865, 1843, NULL, '1.0000', '5.2900', '5.2900', '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 (21643, '2021-10-01', 7708, 20866, 1843, NULL, '1.0000', '6.1400', '6.1400', '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 (21644, '2021-10-01', 2327, 20867, 1843, 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 (21645, '2021-10-01', 8085, 20868, 1843, NULL, '3.0000', '14.0000', '14.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 (21646, '2021-10-01', 7713, 20869, 1843, NULL, '1.0000', '4.4000', '4.4000', '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 (21647, '2021-10-01', 7711, 20870, 1843, NULL, '1.0000', '0.3900', '0.3900', '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 (21648, '2021-10-01', 8328, 20871, 1843, NULL, '1.0000', '8.0882', '8.0882', '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 (21649, '2021-10-01', 7886, 20872, 1843, NULL, '2.0000', '16.1667', '16.1667', '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 (21650, '2021-10-01', 3082, 20873, 1844, 25167, '1.0000', '6.0000', '6.0000', '9.0000', '9.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 (21651, '2021-10-01', 1841, 20874, 1844, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21652, '2021-10-01', 7819, 20875, 1844, NULL, '1.0000', '9.5000', '9.5000', '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 (21653, '2021-10-01', 2221, 20876, 1844, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21654, '2021-10-01', 7411, 20877, 1844, NULL, '11.0000', '1.3500', '1.3500', '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 (21655, '2021-10-01', 1690, 20878, 1844, 34933, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21656, '2021-10-01', 2511, 20879, 1844, 34934, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21657, '2021-10-01', 1523, 20880, 1844, NULL, '3.0000', '1.0061', '1.0061', '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 (21658, '2021-10-01', 2655, 20881, 1844, 36098, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21659, '2021-10-01', 7881, 20882, 1844, NULL, '2.0000', '32.7700', '32.7700', '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 (21660, '2021-10-01', 2283, 20883, 1844, 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 (21661, '2021-10-01', 2293, 20884, 1844, 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 (21662, '2021-10-01', 7482, 20885, 1844, 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 (21663, '2021-10-01', 1668, 20886, 1844, 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 (21664, '2021-10-01', 1872, 20887, 1844, 34942, '1.0000', '8.1540', '8.1540', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21665, '2021-10-01', 2953, 20888, 1844, NULL, '4.0000', '8.0000', '8.0000', '11.0000', '11.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 (21666, '2021-10-01', 1912, 20889, 1844, NULL, '2.0000', '0.6591', '0.6591', '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 (21667, '2021-10-01', 1621, 20890, 1844, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (21668, '2021-10-01', 2135, 20891, 1844, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21669, '2021-10-01', 8933, 20892, 1844, NULL, '1.0000', '10.0000', '10.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 (21670, '2021-10-01', 8021, 20893, 1844, NULL, '1.0000', '13.0000', '13.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 (21671, '2021-10-01', 2131, 20894, 1844, 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 (21672, '2021-10-01', 1637, 20895, 1844, 19388, '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 (21673, '2021-10-01', 9445, 20896, 1844, 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 (21674, '2021-10-01', 2417, 20897, 1844, 32544, '4.0000', '3.7800', '3.7800', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21675, '2021-10-01', 2280, 20898, 1844, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '20.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 (21676, '2021-10-01', 2451, 20899, 1844, 19830, '1.0000', '8.8000', '8.8000', '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 (21677, '2021-10-01', 2315, 20900, 1844, NULL, '4.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-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 (21678, '2021-10-01', 1650, 20901, 1844, 34635, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21679, '2021-10-01', 7482, 20902, 1844, 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 (21680, '2021-10-01', 1810, 20903, 1844, NULL, '1.0000', '8.6700', '8.6700', '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 (21681, '2021-10-01', 8774, 20904, 1844, NULL, '1.0000', '8.0000', '8.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 (21682, '2021-10-01', 1602, 20905, 1844, NULL, '1.0000', '7.0310', '7.0310', '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 (21683, '2021-10-01', 2279, 20906, 1844, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (21684, '2021-10-01', 2169, 20907, 1844, NULL, '1.0000', '1.1484', '1.1484', '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 (21685, '2021-10-01', 9174, 20908, 1844, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21686, '2021-10-01', 2506, 20909, 1844, 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 (21687, '2021-10-01', 7406, 20910, 1844, NULL, '1.0000', '5.0000', '5.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 (21688, '2021-10-01', 7588, 20911, 1844, 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 (21689, '2021-10-01', 9204, 20912, 1844, NULL, '1.0000', '8.1600', '8.1600', '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 (21690, '2021-10-01', 1863, 20913, 1845, 34411, '2.0000', '0.9660', '0.9660', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21691, '2021-10-01', 7472, 20914, 1845, NULL, '1.0000', '4.1000', '4.1000', '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 (21692, '2021-10-01', 2692, 20915, 1845, 12773, '1.0000', '12.0000', '12.0000', '15.0000', '15.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 (21693, '2021-10-01', 2124, 20916, 1845, 2641, '1.0000', '25.0000', '25.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 (21694, '2021-10-01', 1651, 20917, 1845, 23209, '1.0000', '7.4814', '7.4814', '10.0000', '10.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 (21695, '2021-10-01', 2248, 20918, 1845, 36005, '1.0000', '5.1412', '5.1412', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21696, '2021-10-01', 2403, 20919, 1845, 32886, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21697, '2021-10-01', 2851, 20920, 1845, NULL, '2.0000', '44.0000', '44.0000', '58.0000', '58.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 (21698, '2021-10-01', 1523, 20921, 1845, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '16.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 (21699, '2021-10-01', 7892, 20922, 1845, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21700, '2021-10-01', 2302, 20923, 1845, 34694, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21701, '2021-10-01', 2302, 20923, 1845, 33218, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21702, '2021-10-01', 8773, 20924, 1845, 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 (21703, '2021-10-01', 1365, 20925, 1845, 3405, '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 (21704, '2021-10-01', 1365, 20925, 1845, NULL, '1.0000', '38.9800', '38.9800', '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 (21705, '2021-10-01', 2289, 20926, 1845, 3129, '3.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 (21706, '2021-10-01', 1744, 20927, 1845, 34416, '1.0000', '50.2499', '50.2499', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21707, '2021-10-01', 8677, 20928, 1845, 32871, '4.0000', '-1.2995', '-1.2995', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21708, '2021-10-01', 2656, 20929, 1845, 34432, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21709, '2021-10-01', 1303, 20930, 1845, 9576, '-28.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 (21710, '2021-10-01', 1303, 20930, 1845, 9576, '-28.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 (21711, '2021-10-01', 1303, 20930, 1845, 2657, '29.0000', '1.3800', '1.3800', '4.0000', '4.0000', '66.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 (21712, '2021-10-01', 1523, 20931, 1845, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '16.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 (21713, '2021-10-01', 1667, 20932, 1845, 36018, '1.0000', '70.0043', '70.0043', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21714, '2021-10-01', 2732, 20933, 1845, NULL, '1.0000', '26.3888', '26.3888', '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 (21715, '2021-10-01', 2395, 20934, 1845, NULL, '1.0000', '27.0000', '27.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 (21716, '2021-10-01', 1863, 20935, 1845, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21717, '2021-10-01', 1855, 20936, 1845, 4986, '1.0000', '1.4000', '1.4000', '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 (21718, '2021-10-01', 2315, 20937, 1845, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '251.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21719, '2021-10-01', 2955, 20938, 1845, NULL, '1.0000', '4.8000', '4.8000', '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 (21720, '2021-10-01', 1867, 20939, 1845, NULL, '1.0000', '10.0599', '10.0599', '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 (21721, '2021-10-01', 1340, 20940, 1845, 10208, '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 (21722, '2021-10-01', 2277, 20941, 1846, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21723, '2021-10-01', 2280, 20942, 1846, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '19.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 (21724, '2021-10-01', 1519, 20943, 1846, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21725, '2021-10-01', 7593, 20944, 1846, NULL, '1.0000', '2.4500', '2.4500', '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 (21726, '2021-10-01', 7909, 20945, 1846, NULL, '1.0000', '4.0000', '4.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 (21727, '2021-10-01', 2286, 20946, 1846, 29631, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21728, '2021-10-01', 2493, 20947, 1846, 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 (21729, '2021-10-01', 1966, 20948, 1846, 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 (21730, '2021-10-01', 9482, 20949, 1846, 32547, '4.0000', '0.5000', '0.5000', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21731, '2021-10-01', 1532, 20950, 1846, 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 (21732, '2021-10-01', 1689, 20951, 1847, 13742, '1.0000', '12.3438', '12.3438', '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 (21733, '2021-10-01', 1730, 20952, 1848, 24207, '1.0000', '24.4163', '24.4163', '33.5000', '33.5000', '0.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 (21734, '2021-10-01', 2547, 20953, 1848, NULL, '1.0000', '8.9650', '8.9650', '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 (21735, '2021-10-01', 2699, 20954, 1848, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21736, '2021-10-01', 7411, 20955, 1848, NULL, '2.0000', '1.3500', '1.3500', '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 (21737, '2021-10-01', 1544, 20956, 1848, 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 (21738, '2021-10-01', 1818, 20957, 1848, NULL, '1.0000', '14.8000', '14.8000', '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 (21739, '2021-10-01', 2020, 20958, 1848, 34031, '1.0000', '7.8240', '7.8240', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21740, '2021-10-01', 1805, 20959, 1848, NULL, '1.0000', '4.5244', '4.5244', '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 (21741, '2021-10-01', 2169, 20960, 1848, NULL, '1.0000', '1.1484', '1.1484', '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 (21742, '2021-10-01', 9474, 20961, 1848, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21743, '2021-10-01', 2299, 20962, 1848, 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 (21744, '2021-10-01', 2286, 20963, 1848, 29631, '3.0000', '4.3000', '4.3000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21745, '2021-10-01', 3058, 20964, 1848, 24961, '1.0000', '4.3000', '4.3000', '6.0000', '6.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 (21746, '2021-10-01', 2854, 20965, 1848, NULL, '1.0000', '8.9500', '8.9500', '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 (21747, '2021-10-01', 8728, 20966, 1849, NULL, '2.0000', '25.3000', '25.3000', '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 (21748, '2021-10-01', 8152, 20967, 1849, NULL, '1.0000', '0.1400', '0.1400', '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 (21749, '2021-10-01', 1904, 20968, 1849, 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 (21750, '2021-10-01', 7781, 20969, 1849, NULL, '3.0000', '4.2500', '4.2500', '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 (21751, '2021-10-01', 8166, 20970, 1849, NULL, '1.0000', '4.6000', '4.6000', '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 (21752, '2021-10-01', 9110, 20971, 1849, NULL, '1.0000', '7.0000', '7.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 (21753, '2021-10-01', 7472, 20972, 1849, NULL, '1.0000', '4.1000', '4.1000', '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 (21754, '2021-10-01', 9496, 20973, 1849, 33078, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21755, '2021-10-01', 8885, 20974, 1849, 33526, '1.0000', '56.5300', '56.5300', '75.0000', '75.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21756, '2021-10-01', 7335, 20975, 1849, NULL, '1.0000', '10.4000', '10.4000', '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 (21757, '2021-10-01', 7898, 20976, 1849, NULL, '1.0000', '2.2000', '2.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 (21758, '2021-10-01', 7608, 20977, 1849, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21759, '2021-10-01', 7514, 20978, 1849, NULL, '1.0000', '12.9983', '12.9983', '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 (21760, '2021-10-01', 8203, 20979, 1849, NULL, '2.0000', '9.8000', '9.8000', '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 (21761, '2021-10-01', 7444, 20980, 1849, 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 (21762, '2021-10-01', 2327, 20981, 1849, 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 (21763, '2021-10-01', 7893, 20982, 1849, NULL, '1.0000', '12.0000', '12.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 (21764, '2021-10-01', 7822, 20983, 1849, NULL, '1.0000', '5.6000', '5.6000', '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 (21765, '2021-10-01', 9110, 20984, 1849, NULL, '1.0000', '7.0000', '7.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 (21766, '2021-10-01', 2713, 20985, 1849, 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 (21767, '2021-10-01', 2327, 20986, 1849, 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 (21768, '2021-10-01', 7674, 20987, 1849, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '229.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21769, '2021-10-01', 7583, 20988, 1849, NULL, '1.0000', '4.0000', '4.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 (21770, '2021-10-01', 7709, 20989, 1849, NULL, '2.0000', '35.8000', '35.8000', '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 (21771, '2021-10-01', 7864, 20990, 1849, NULL, '2.0000', '2.9000', '2.9000', '23.5000', '23.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 (21772, '2021-10-01', 7367, 20991, 1849, 30003, '1.0000', '35.0000', '35.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21773, '2021-10-01', 7898, 20992, 1849, NULL, '1.0000', '2.2000', '2.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 (21774, '2021-10-01', 1620, 20993, 1850, 34019, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21775, '2021-10-01', 2315, 20994, 1850, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21776, '2021-10-01', 7708, 20995, 1851, NULL, '1.0000', '6.1400', '6.1400', '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 (21777, '2021-10-01', 8203, 20996, 1851, NULL, '3.0000', '9.8000', '9.8000', '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 (21778, '2021-10-01', 7411, 20997, 1851, NULL, '1.0000', '1.3500', '1.3500', '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 (21779, '2021-10-01', 8773, 20998, 1852, 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 (21780, '2021-10-01', 2964, 20999, 1852, NULL, '1.0000', '6.6000', '6.6000', '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 (21781, '2021-10-01', 2169, 21000, 1852, NULL, '1.0000', '1.1484', '1.1484', '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 (21782, '2021-10-01', 1651, 21001, 1853, 23209, '1.0000', '7.4814', '7.4814', '10.0000', '10.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 (21783, '2021-10-01', 1864, 21002, 1853, NULL, '2.0000', '5.9100', '5.9100', '8.5000', '8.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 (21784, '2021-10-01', 2100, 21003, 1853, 6012, '1.0000', '1.6500', '1.6500', '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 (21785, '2021-10-01', 1316, 21004, 1853, 24096, '1.0000', '6.3000', '6.3000', '9.0000', '9.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 (21786, '2021-10-01', 1425, 21005, 1853, 36300, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21787, '2021-10-01', 1863, 21006, 1853, 34411, '1.0000', '0.9660', '0.9660', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21788, '2021-10-01', 1542, 21007, 1853, 1547, '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 (21789, '2021-10-01', 2701, 21008, 1853, 36315, '1.0000', '34.2450', '34.2450', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21790, '2021-10-01', 8743, 21009, 1853, 35937, '1.0000', '9.9444', '9.9444', '13.2000', '13.2000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21791, '2021-10-01', 1409, 21010, 1853, 36302, '1.0000', '13.1144', '13.1144', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21792, '2021-10-01', 2315, 21011, 1853, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '249.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21793, '2021-10-01', 2665, 21012, 1853, 24330, '1.0000', '24.4700', '24.4700', '32.3000', '32.3000', '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 (21794, '2021-10-01', 1935, 21013, 1853, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21795, '2021-10-01', 1863, 21014, 1853, 34411, '2.0000', '0.9660', '0.9660', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21796, '2021-10-01', 2521, 21015, 1854, 7522, '1.0000', '8.8000', '8.8000', '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 (21797, '2021-10-01', 2679, 21016, 1854, 32876, '1.0000', '32.1809', '32.1809', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21798, '2021-10-01', 7913, 21017, 1854, NULL, '2.0000', '2.5500', '2.5500', '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 (21799, '2021-10-01', 1519, 21018, 1854, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (21800, '2021-10-01', 2366, 21019, 1854, 13636, '2.0000', '3.7873', '3.7873', '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 (21801, '2021-10-01', 1875, 21020, 1854, 31726, '13.0000', '74.5688', '74.5688', '3.6000', '3.6000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21802, '2021-10-01', 1875, 21020, 1854, 17321, '7.0000', '74.5688', '74.5688', '3.6000', '3.6000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21803, '2021-10-01', 2656, 21021, 1854, 34432, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21804, '2021-10-01', 1684, 21022, 1854, 7124, '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 (21805, '2021-10-01', 8525, 21023, 1854, NULL, '1.0000', '18.9500', '18.9500', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21806, '2021-10-01', 2317, 21024, 1854, 15799, '1.0000', '15.0000', '15.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 (21807, '2021-10-01', 7671, 21025, 1854, NULL, '2.0000', '15.5000', '15.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 (21808, '2021-10-01', 8654, 21026, 1855, NULL, '1.0000', '5.8000', '5.8000', '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 (21809, '2021-10-01', 2692, 21027, 1856, 12773, '1.0000', '12.0000', '12.0000', '15.0000', '15.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 (21810, '2021-10-02', 3010, 21028, 1857, 23180, '1.0000', '42.0000', '42.0000', '55.5000', '55.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 (21811, '2021-10-02', 2908, 21029, 1857, 24963, '1.0000', '0.2700', '0.2700', '0.5000', '0.5000', '34.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 (21812, '2021-10-02', 1602, 21030, 1857, NULL, '1.0000', '7.0310', '7.0310', '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 (21813, '2021-10-02', 2916, 21031, 1857, 34964, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21814, '2021-10-02', 1592, 21032, 1857, 34930, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21815, '2021-10-02', 1519, 21033, 1857, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21816, '2021-10-02', 2699, 21034, 1857, 36100, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21817, '2021-10-02', 1303, 21035, 1857, 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 (21818, '2021-10-02', 1425, 21036, 1857, 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 (21819, '2021-10-02', 2036, 21037, 1857, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '19.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 (21820, '2021-10-02', 2221, 21038, 1857, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21821, '2021-10-02', 1872, 21039, 1857, 34942, '1.0000', '8.1540', '8.1540', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21822, '2021-10-02', 1837, 21040, 1857, 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 (21823, '2021-10-02', 1863, 21041, 1857, NULL, '1.0000', '1.4033', '1.4033', '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 (21824, '2021-10-02', 9539, 21042, 1857, 36110, '1.0000', '26.0000', '26.0000', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21825, '2021-10-02', 2221, 21043, 1857, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21826, '2021-10-02', 2379, 21044, 1857, NULL, '1.0000', '1.8000', '1.8000', '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 (21827, '2021-10-02', 1837, 21045, 1857, 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 (21828, '2021-10-02', 2566, 21046, 1857, 22516, '1.0000', '17.0000', '17.0000', '20.0000', '20.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 (21829, '2021-10-02', 1435, 21047, 1857, NULL, '1.0000', '24.5000', '24.5000', '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 (21830, '2021-10-02', 7658, 21048, 1857, NULL, '10.0000', '10.1500', '10.1500', '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 (21831, '2021-10-02', 1651, 21049, 1857, 23126, '1.0000', '7.6717', '7.6717', '10.0000', '10.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 (21832, '2021-10-02', 1346, 21050, 1857, 24923, '6.0000', '-20.8715', '-20.8715', '1.5000', '1.5000', '53.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 (21833, '2021-10-02', 7532, 21051, 1857, 33150, '1.0000', '15.4668', '15.4668', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21834, '2021-10-02', 2234, 21052, 1857, NULL, '1.0000', '17.2429', '17.2429', '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 (21835, '2021-10-02', 2004, 21053, 1857, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21836, '2021-10-02', 1863, 21054, 1857, NULL, '2.0000', '1.4033', '1.4033', '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 (21837, '2021-10-02', 2643, 21055, 1857, 36117, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21838, '2021-10-02', 7550, 21056, 1857, NULL, '4.0000', '4.7300', '4.7300', '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 (21839, '2021-10-02', 3012, 21057, 1857, 31087, '1.0000', '4.7000', '4.7000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21840, '2021-10-02', 2643, 21058, 1857, 36117, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21841, '2021-10-02', 8712, 21059, 1857, NULL, '1.0000', '7.0400', '7.0400', '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 (21842, '2021-10-02', 1523, 21060, 1857, NULL, '1.0000', '1.0061', '1.0061', '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 (21843, '2021-10-02', 2660, 21061, 1857, 23143, '3.0000', '0.7000', '0.7000', '1.0000', '1.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 (21844, '2021-10-02', 2212, 21062, 1858, 24866, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '0.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 (21845, '2021-10-02', 1499, 21063, 1858, 33367, '2.0000', '0.4835', '0.4835', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21846, '2021-10-02', 1499, 21063, 1858, NULL, '1.0000', '0.4835', '0.4835', '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 (21847, '2021-10-02', 2713, 21064, 1858, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21848, '2021-10-02', 2167, 21065, 1859, 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 (21849, '2021-10-02', 1577, 21066, 1859, NULL, '1.0000', '2.5218', '2.5218', '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 (21850, '2021-10-02', 1510, 21067, 1860, 30670, '1.0000', '9.2456', '9.2456', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21851, '2021-10-02', 2351, 21068, 1861, 18808, '1.0000', '17.7000', '17.7000', '24.0000', '24.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 (21852, '2021-10-02', 1846, 21069, 1861, 12032, '-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 (21853, '2021-10-02', 1846, 21069, 1861, NULL, '2.0000', '12.0000', '12.0000', '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 (21854, '2021-10-02', 1857, 21070, 1861, 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 (21855, '2021-10-02', 1590, 21071, 1861, 22260, '1.0000', '1.7100', '1.7100', '2.2000', '2.2000', '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 (21856, '2021-10-02', 1699, 21072, 1861, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '8.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 (21857, '2021-10-02', 1602, 21073, 1861, 5897, '-10.0000', '6.7859', '6.7859', '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 (21858, '2021-10-02', 1602, 21073, 1861, NULL, '11.0000', '6.7859', '6.7859', '10.0000', '10.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 (21859, '2021-10-02', 8202, 21074, 1861, NULL, '1.0000', '1.6600', '1.6600', '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 (21860, '2021-10-02', 1912, 21075, 1861, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '23.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 (21861, '2021-10-02', 1596, 21076, 1861, 8361, '-3.0000', '2.5700', '2.5700', '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 (21862, '2021-10-02', 1596, 21076, 1861, NULL, '4.0000', '2.5700', '2.5700', '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 (21863, '2021-10-02', 1427, 21077, 1861, 22355, '1.0000', '14.2181', '14.2181', '20.5000', '20.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 (21864, '2021-10-02', 2252, 21078, 1861, 2789, '-6.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 (21865, '2021-10-02', 2252, 21078, 1861, NULL, '7.0000', '9.5000', '9.5000', '12.5000', '12.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 (21866, '2021-10-02', 1596, 21079, 1861, 8361, '-3.0000', '2.5700', '2.5700', '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 (21867, '2021-10-02', 1596, 21079, 1861, NULL, '4.0000', '2.5700', '2.5700', '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 (21868, '2021-10-02', 2712, 21080, 1861, 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 (21869, '2021-10-02', 1863, 21081, 1861, 10808, '-26.0000', '0.4136', '0.4136', '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 (21870, '2021-10-02', 1863, 21081, 1861, NULL, '27.0000', '0.4136', '0.4136', '2.0000', '2.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 (21871, '2021-10-02', 1520, 21082, 1861, 33822, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21872, '2021-10-02', 2059, 21083, 1861, 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 (21873, '2021-10-02', 2712, 21084, 1861, 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 (21874, '2021-10-02', 2948, 21085, 1861, NULL, '1.0000', '0.9000', '0.9000', '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 (21875, '2021-10-02', 2454, 21086, 1861, 33792, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21876, '2021-10-02', 2003, 21087, 1861, 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 (21877, '2021-10-02', 2237, 21088, 1862, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21878, '2021-10-02', 8511, 21089, 1863, NULL, '1.0000', '26.0000', '26.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 (21879, '2021-10-02', 9193, 21090, 1863, NULL, '1.0000', '6.7400', '6.7400', '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 (21880, '2021-10-02', 8485, 21091, 1863, NULL, '1.0000', '7.0400', '7.0400', '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 (21881, '2021-10-02', 7612, 21092, 1863, NULL, '1.0000', '46.0000', '46.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 (21882, '2021-10-02', 7774, 21093, 1863, NULL, '1.0000', '3.5000', '3.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 (21883, '2021-10-02', 9425, 21094, 1863, NULL, '1.0000', '4.0000', '4.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 (21884, '2021-10-02', 8485, 21095, 1863, NULL, '1.0000', '7.0400', '7.0400', '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 (21885, '2021-10-02', 8137, 21096, 1863, NULL, '1.0000', '3.0000', '3.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 (21886, '2021-10-02', 7416, 21097, 1863, NULL, '1.0000', '1.2500', '1.2500', '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 (21887, '2021-10-02', 9160, 21098, 1863, NULL, '1.0000', '15.0000', '15.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 (21888, '2021-10-02', 8172, 21099, 1863, NULL, '2.0000', '40.7000', '40.7000', '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 (21889, '2021-10-02', 7317, 21100, 1863, NULL, '1.0000', '19.5500', '19.5500', '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 (21890, '2021-10-02', 7552, 21101, 1863, 30164, '1.0000', '4.0000', '4.0000', '5.2800', '5.2800', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21891, '2021-10-02', 8849, 21102, 1863, NULL, '1.0000', '1.0700', '1.0700', '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 (21892, '2021-10-02', 7588, 21103, 1863, NULL, '1.0000', '7.6111', '7.6111', '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 (21893, '2021-10-02', 8887, 21104, 1863, NULL, '1.0000', '34.0000', '34.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 (21894, '2021-10-02', 1947, 21105, 1863, 34552, '1.0000', '-2021.4409', '-2021.4409', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21895, '2021-10-02', 7604, 21106, 1863, NULL, '1.0000', '4.3900', '4.3900', '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 (21896, '2021-10-02', 7822, 21107, 1863, NULL, '1.0000', '5.6000', '5.6000', '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 (21897, '2021-10-02', 7514, 21108, 1863, NULL, '1.0000', '12.9983', '12.9983', '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 (21898, '2021-10-02', 7674, 21109, 1863, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '228.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21899, '2021-10-02', 8086, 21110, 1863, 36047, '1.0000', '9.6204', '9.6204', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21900, '2021-10-02', 7609, 21111, 1863, NULL, '1.0000', '4.3300', '4.3300', '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 (21901, '2021-10-02', 9092, 21112, 1863, NULL, '4.0000', '5.2900', '5.2900', '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 (21902, '2021-10-02', 7675, 21113, 1863, NULL, '3.0000', '11.4300', '11.4300', '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 (21903, '2021-10-02', 7411, 21114, 1863, NULL, '5.0000', '1.3500', '1.3500', '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 (21904, '2021-10-02', 8858, 21115, 1863, NULL, '2.0000', '8.5000', '8.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 (21905, '2021-10-02', 2384, 21116, 1864, 18845, '4.0000', '0.4000', '0.4000', '0.7000', '0.7000', '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 (21906, '2021-10-02', 1991, 21117, 1864, 761, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 58);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21907, '2021-10-02', 9532, 21118, 1864, 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 (21908, '2021-10-02', 7385, 21119, 1865, 36048, '10.0000', '933.1354', '933.1354', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21909, '2021-10-02', 9332, 21120, 1865, NULL, '1.0000', '72.0000', '72.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 (21910, '2021-10-02', 7848, 21121, 1865, NULL, '1.0000', '1.3500', '1.3500', '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 (21911, '2021-10-02', 7806, 21122, 1866, NULL, '4.0000', '14.0000', '14.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 (21912, '2021-10-02', 1748, 21123, 1867, NULL, '2.0000', '0.3200', '0.3200', '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 (21913, '2021-10-02', 2289, 21124, 1867, 13744, '2.0000', '0.2300', '0.2300', '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 (21914, '2021-10-02', 1841, 21125, 1867, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21915, '2021-10-02', 2986, 21126, 1867, 22609, '1.0000', '0.7700', '0.7700', '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 (21916, '2021-10-02', 1521, 21127, 1867, 34966, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21917, '2021-10-02', 1845, 21128, 1867, 34633, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21918, '2021-10-02', 1580, 21129, 1867, 33362, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21919, '2021-10-02', 2545, 21130, 1867, 30684, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21920, '2021-10-02', 2655, 21131, 1867, 36098, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21921, '2021-10-02', 2060, 21132, 1867, 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 (21922, '2021-10-02', 8608, 21133, 1867, NULL, '1.0000', '0.9000', '0.9000', '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 (21923, '2021-10-02', 2317, 21134, 1867, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '23.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 (21924, '2021-10-02', 1837, 21135, 1867, 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 (21925, '2021-10-02', 1863, 21136, 1867, NULL, '1.0000', '1.4033', '1.4033', '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 (21926, '2021-10-02', 1590, 21137, 1867, 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 (21927, '2021-10-02', 2004, 21138, 1867, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21928, '2021-10-02', 7564, 21139, 1867, NULL, '1.0000', '0.6400', '0.6400', '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 (21929, '2021-10-02', 2169, 21140, 1867, NULL, '1.0000', '1.1484', '1.1484', '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 (21930, '2021-10-02', 8622, 21141, 1867, 34952, '1.0000', '11.5084', '11.5084', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21931, '2021-10-02', 9311, 21142, 1867, NULL, '1.0000', '6.6000', '6.6000', '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 (21932, '2021-10-02', 1840, 21143, 1867, 19856, '3.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 (21933, '2021-10-02', 7328, 21144, 1867, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (21934, '2021-10-02', 2289, 21145, 1867, 13744, '1.0000', '0.2300', '0.2300', '0.5000', '0.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 (21935, '2021-10-02', 2609, 21146, 1867, 34622, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21936, '2021-10-02', 1854, 21147, 1867, 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 (21937, '2021-10-02', 1950, 21148, 1867, NULL, '1.0000', '3.5525', '3.5525', '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 (21938, '2021-10-02', 2520, 21149, 1867, 36115, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21939, '2021-10-02', 1667, 21150, 1867, 19361, '1.0000', '1404.9249', '1404.9249', '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 (21940, '2021-10-02', 1667, 21150, 1867, NULL, '1.0000', '1404.9249', '1404.9249', '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 (21941, '2021-10-02', 1637, 21151, 1867, 19388, '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 (21942, '2021-10-02', 7652, 21152, 1867, NULL, '5.0000', '40.3000', '40.3000', '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 (21943, '2021-10-02', 2346, 21153, 1867, NULL, '1.0000', '5.5000', '5.5000', '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 (21944, '2021-10-02', 1863, 21154, 1867, NULL, '1.0000', '1.4033', '1.4033', '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 (21945, '2021-10-02', 1641, 21155, 1867, NULL, '5.0000', '1.0100', '1.0100', '1.3000', '1.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 (21946, '2021-10-02', 8638, 21156, 1867, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21947, '2021-10-02', 1845, 21157, 1867, 34633, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21948, '2021-10-02', 1580, 21158, 1867, 33362, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21949, '2021-10-02', 2036, 21159, 1867, 22535, '2.0000', '8.5000', '8.5000', '10.0000', '10.0000', '17.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 (21950, '2021-10-02', 1856, 21160, 1867, 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 (21951, '2021-10-02', 2655, 21161, 1867, 36098, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21952, '2021-10-02', 2713, 21162, 1867, 32555, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21953, '2021-10-02', 1908, 21163, 1867, NULL, '2.0000', '1.7500', '1.7500', '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 (21954, '2021-10-02', 2821, 21164, 1867, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21955, '2021-10-02', 2275, 21165, 1867, 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 (21956, '2021-10-02', 1856, 21166, 1867, 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 (21957, '2021-10-02', 7787, 21167, 1867, NULL, '1.0000', '10.9000', '10.9000', '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 (21958, '2021-10-02', 7522, 21168, 1867, NULL, '1.0000', '5.2000', '5.2000', '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 (21959, '2021-10-02', 9311, 21169, 1867, NULL, '1.0000', '6.6000', '6.6000', '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 (21960, '2021-10-02', 2315, 21170, 1867, NULL, '4.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-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 (21961, '2021-10-02', 2331, 21171, 1867, 34567, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21962, '2021-10-02', 8325, 21172, 1868, NULL, '2.0000', '2.0000', '2.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 (21963, '2021-10-02', 2010, 21173, 1868, 23974, '2.0000', '1.2000', '1.2000', '1.5800', '1.5800', '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 (21964, '2021-10-02', 2440, 21174, 1868, 23972, '1.0000', '5.2092', '5.2092', '7.5000', '7.5000', '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 (21965, '2021-10-02', 2699, 21175, 1868, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21966, '2021-10-02', 2659, 21176, 1868, 23129, '1.0000', '25.4800', '25.4800', '34.0000', '34.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 (21967, '2021-10-02', 1347, 21177, 1868, 30685, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '24.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21968, '2021-10-02', 1493, 21178, 1868, 30679, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21969, '2021-10-02', 2315, 21179, 1868, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21970, '2021-10-02', 2167, 21180, 1869, 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 (21971, '2021-10-02', 2379, 21181, 1869, NULL, '1.0000', '1.8000', '1.8000', '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 (21972, '2021-10-02', 2315, 21182, 1869, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21973, '2021-10-02', 1590, 21183, 1869, 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 (21974, '2021-10-02', 2440, 21184, 1869, 23972, '1.0000', '5.2092', '5.2092', '7.5000', '7.5000', '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 (21975, '2021-10-02', 8622, 21185, 1869, 34952, '1.0000', '11.5084', '11.5084', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21976, '2021-10-02', 1620, 21186, 1869, 34019, '2.0000', '2.2300', '2.2300', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21977, '2021-10-02', 2169, 21187, 1869, NULL, '1.0000', '1.1484', '1.1484', '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 (21978, '2021-10-02', 1307, 21188, 1869, 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 (21979, '2021-10-02', 1966, 21189, 1869, 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 (21980, '2021-10-02', 9482, 21190, 1869, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21981, '2021-10-02', 7641, 21191, 1869, NULL, '1.0000', '1.9000', '1.9000', '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 (21982, '2021-10-02', 1604, 21192, 1870, NULL, '2.0000', '70.6900', '70.6900', '51.5000', '51.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 (21983, '2021-10-02', 7671, 21193, 1870, NULL, '2.0000', '15.5000', '15.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 (21984, '2021-10-02', 7797, 21194, 1870, NULL, '1.0000', '6.3000', '6.3000', '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 (21985, '2021-10-02', 8063, 21195, 1870, 34558, '1.0000', '-23.2756', '-23.2756', '7.0000', '7.0000', '34.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21986, '2021-10-02', 8679, 21196, 1870, NULL, '1.0000', '28.0000', '28.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 (21987, '2021-10-02', 2655, 21197, 1870, 34562, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21988, '2021-10-02', 7638, 21198, 1870, 30935, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21989, '2021-10-02', 2618, 21199, 1870, NULL, '1.0000', '4.1000', '4.1000', '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 (21990, '2021-10-02', 1720, 21200, 1870, 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 (21991, '2021-10-02', 7671, 21201, 1870, NULL, '1.0000', '15.5000', '15.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 (21992, '2021-10-02', 1904, 21202, 1870, 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 (21993, '2021-10-02', 7518, 21203, 1870, NULL, '1.0000', '-21.7700', '-21.7700', '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 (21994, '2021-10-02', 7524, 21204, 1870, NULL, '1.0000', '11.9500', '11.9500', '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 (21995, '2021-10-02', 7674, 21205, 1870, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '227.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21996, '2021-10-02', 7652, 21206, 1870, NULL, '1.0000', '40.3000', '40.3000', '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 (21997, '2021-10-02', 2327, 21207, 1870, 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 (21998, '2021-10-02', 7385, 21208, 1870, 36048, '2.0000', '933.1354', '933.1354', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (21999, '2021-10-02', 1840, 21209, 1870, 33725, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '185.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22000, '2021-10-02', 7328, 21210, 1870, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (22001, '2021-10-02', 7477, 21211, 1870, 34510, '8.0000', '0.9070', '0.9070', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22002, '2021-10-02', 7477, 21211, 1870, NULL, '2.0000', '0.9070', '0.9070', '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 (22003, '2021-10-02', 7593, 21212, 1870, 34551, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22004, '2021-10-02', 1840, 21213, 1870, 33725, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '185.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22005, '2021-10-02', 7750, 21214, 1870, 36028, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22006, '2021-10-02', 7848, 21215, 1870, NULL, '1.0000', '1.3500', '1.3500', '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 (22007, '2021-10-02', 7739, 21216, 1870, NULL, '1.0000', '2.7500', '2.7500', '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 (22008, '2021-10-02', 7473, 21217, 1870, NULL, '5.0000', '9.2200', '9.2200', '0.6000', '0.6000', '-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 (22009, '2021-10-02', 7411, 21218, 1870, NULL, '1.0000', '1.3500', '1.3500', '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 (22010, '2021-10-02', 7593, 21219, 1870, 34551, '2.0000', '2.4500', '2.4500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22011, '2021-10-02', 7415, 21220, 1870, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22012, '2021-10-02', 7411, 21221, 1870, NULL, '1.0000', '1.3500', '1.3500', '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 (22013, '2021-10-02', 7892, 21222, 1870, NULL, '1.0000', '4.2000', '4.2000', '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 (22014, '2021-10-02', 8702, 21223, 1870, NULL, '1.0000', '3.6700', '3.6700', '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 (22015, '2021-10-02', 8653, 21224, 1870, NULL, '1.0000', '14.8000', '14.8000', '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 (22016, '2021-10-02', 8165, 21225, 1870, NULL, '1.0000', '8.0000', '8.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 (22017, '2021-10-02', 8152, 21226, 1870, NULL, '1.0000', '0.1400', '0.1400', '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 (22018, '2021-10-02', 9496, 21227, 1870, NULL, '1.0000', '3.8800', '3.8800', '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 (22019, '2021-10-02', 7589, 21228, 1870, NULL, '1.0000', '1.7700', '1.7700', '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 (22020, '2021-10-02', 7612, 21229, 1870, NULL, '1.0000', '46.0000', '46.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 (22021, '2021-10-02', 9425, 21230, 1870, NULL, '1.0000', '4.0000', '4.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 (22022, '2021-10-02', 3009, 21231, 1870, 36076, '1.0000', '8.3000', '8.3000', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22023, '2021-10-02', 8127, 21232, 1870, NULL, '1.0000', '24.5300', '24.5300', '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 (22024, '2021-10-02', 7412, 21233, 1870, NULL, '1.0000', '1.5200', '1.5200', '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 (22025, '2021-10-02', 8085, 21234, 1870, NULL, '3.0000', '14.0000', '14.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 (22026, '2021-10-02', 7518, 21235, 1870, NULL, '1.0000', '-21.7700', '-21.7700', '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 (22027, '2021-10-02', 7641, 21236, 1870, NULL, '1.0000', '6.5038', '6.5038', '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 (22028, '2021-10-02', 2132, 21237, 1870, NULL, '1.0000', '22.0000', '22.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 (22029, '2021-10-02', 2036, 21238, 1870, 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 (22030, '2021-10-02', 8756, 21239, 1870, NULL, '1.0000', '5.9323', '5.9323', '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 (22031, '2021-10-02', 8594, 21240, 1870, 32809, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22032, '2021-10-02', 9095, 21241, 1870, NULL, '1.0000', '17.5000', '17.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 (22033, '2021-10-02', 8000, 21242, 1870, NULL, '1.0000', '27.9111', '27.9111', '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 (22034, '2021-10-02', 9092, 21243, 1870, NULL, '1.0000', '5.2900', '5.2900', '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 (22035, '2021-10-02', 7921, 21244, 1870, NULL, '1.0000', '0.3000', '0.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 (22036, '2021-10-02', 7448, 21245, 1870, NULL, '3.0000', '15.8500', '15.8500', '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 (22037, '2021-10-02', 7411, 21246, 1870, NULL, '2.0000', '1.3500', '1.3500', '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 (22038, '2021-10-02', 7671, 21247, 1870, NULL, '1.0000', '15.5000', '15.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 (22039, '2021-10-02', 1904, 21248, 1870, 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 (22040, '2021-10-02', 7592, 21249, 1870, 36046, '1.0000', '14.2175', '14.2175', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22041, '2021-10-02', 7641, 21250, 1870, NULL, '1.0000', '6.5038', '6.5038', '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 (22042, '2021-10-02', 7671, 21251, 1870, NULL, '3.0000', '15.5000', '15.5000', '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 (22043, '2021-10-02', 8717, 21252, 1870, NULL, '1.0000', '4.7000', '4.7000', '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 (22044, '2021-10-02', 9092, 21253, 1870, NULL, '7.0000', '5.2900', '5.2900', '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 (22045, '2021-10-02', 7400, 21254, 1870, NULL, '1.0000', '14.5300', '14.5300', '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 (22046, '2021-10-02', 7380, 21255, 1870, NULL, '1.0000', '5.6200', '5.6200', '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 (22047, '2021-10-02', 9028, 21256, 1870, NULL, '1.0000', '9.0000', '9.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 (22048, '2021-10-02', 7699, 21257, 1870, 31663, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22049, '2021-10-02', 8341, 21258, 1870, NULL, '1.0000', '43.0000', '43.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 (22050, '2021-10-02', 1308, 21259, 1870, 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 (22051, '2021-10-02', 9338, 21260, 1870, NULL, '1.0000', '3.8000', '3.8000', '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 (22052, '2021-10-02', 1390, 21261, 1870, 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 (22053, '2021-10-02', 2241, 21262, 1870, 32914, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22054, '2021-10-02', 7591, 21263, 1870, NULL, '1.0000', '2.7500', '2.7500', '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 (22055, '2021-10-02', 7482, 21264, 1870, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '37.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22056, '2021-10-02', 1947, 21265, 1870, 34552, '1.0000', '-2021.4409', '-2021.4409', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22057, '2021-10-02', 7524, 21266, 1870, NULL, '1.0000', '11.9500', '11.9500', '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 (22058, '2021-10-02', 7593, 21267, 1870, 34551, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22059, '2021-10-02', 7674, 21268, 1870, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '227.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22060, '2021-10-02', 7514, 21269, 1870, NULL, '1.0000', '12.9983', '12.9983', '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 (22061, '2021-10-02', 7697, 21270, 1870, NULL, '1.0000', '5.0000', '5.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 (22062, '2021-10-02', 8654, 21271, 1870, NULL, '1.0000', '5.8000', '5.8000', '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 (22063, '2021-10-02', 7641, 21272, 1870, NULL, '1.0000', '6.5038', '6.5038', '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 (22064, '2021-10-02', 7584, 21273, 1870, NULL, '1.0000', '3.8100', '3.8100', '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 (22065, '2021-10-02', 8497, 21274, 1870, NULL, '1.0000', '28.0000', '28.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 (22066, '2021-10-02', 9456, 21275, 1870, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22067, '2021-10-02', 7709, 21276, 1870, NULL, '1.0000', '35.8000', '35.8000', '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 (22068, '2021-10-02', 8775, 21277, 1870, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22069, '2021-10-02', 9092, 21278, 1870, NULL, '1.0000', '5.2900', '5.2900', '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 (22070, '2021-10-02', 2699, 21279, 1870, 34564, '3.0000', '3.0000', '3.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22071, '2021-10-02', 7782, 21280, 1870, NULL, '1.0000', '5.0000', '5.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 (22072, '2021-10-02', 7860, 21281, 1870, NULL, '1.0000', '3.8500', '3.8500', '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 (22073, '2021-10-02', 7427, 21282, 1870, 34500, '1.0000', '25.0000', '25.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22074, '2021-10-02', 7427, 21282, 1870, NULL, '1.0000', '25.0000', '25.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 (22075, '2021-10-02', 7715, 21283, 1870, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22076, '2021-10-02', 7359, 21284, 1871, NULL, '3.0000', '20.0000', '20.0000', '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 (22077, '2021-10-02', 8000, 21285, 1871, 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 (22078, '2021-10-02', 1612, 21286, 1871, 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 (22079, '2021-10-02', 2916, 21287, 1871, 36373, '1.0000', '14.1311', '14.1311', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22080, '2021-10-02', 8247, 21288, 1871, NULL, '3.0000', '10.0000', '10.0000', '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 (22081, '2021-10-02', 1837, 21289, 1871, 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 (22082, '2021-10-02', 2484, 21290, 1871, 5196, '1.0000', '17.0000', '17.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 (22083, '2021-10-02', 2712, 21291, 1871, 35941, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22084, '2021-10-02', 2089, 21292, 1871, 33009, '1.0000', '7.0900', '7.0900', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22085, '2021-10-02', 2169, 21293, 1871, 36390, '2.0000', '1.0361', '1.0361', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22086, '2021-10-02', 1651, 21294, 1871, 36377, '1.0000', '6.9057', '6.9057', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22087, '2021-10-02', 1602, 21295, 1871, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '59.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22088, '2021-10-02', 2360, 21296, 1871, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (22089, '2021-10-02', 1663, 21297, 1871, 34424, '1.0000', '87.1300', '87.1300', '115.0000', '115.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22090, '2021-10-02', 2822, 21298, 1871, 17322, '1.0000', '2.7200', '2.7200', '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 (22091, '2021-10-02', 2543, 21299, 1871, 9539, '1.0000', '2.0000', '2.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 (22092, '2021-10-02', 2317, 21300, 1871, 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 (22093, '2021-10-02', 7671, 21301, 1871, NULL, '2.0000', '15.5000', '15.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 (22094, '2021-10-02', 9532, 21302, 1871, 35932, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22095, '2021-10-02', 1329, 21303, 1871, 3369, '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 (22096, '2021-10-02', 2088, 21304, 1871, 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 (22097, '2021-10-02', 2602, 21305, 1871, 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 (22098, '2021-10-02', 2256, 21306, 1871, 36395, '1.0000', '13.6900', '13.6900', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22099, '2021-10-02', 1595, 21307, 1871, 10320, '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 (22100, '2021-10-02', 2271, 21308, 1871, 36363, '1.0000', '12.0000', '12.0000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22101, '2021-10-02', 1863, 21309, 1871, 36362, '2.0000', '1.0691', '1.0691', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22102, '2021-10-02', 2327, 21310, 1871, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22103, '2021-10-02', 2893, 21311, 1871, 18431, '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 (22104, '2021-10-02', 2259, 21312, 1871, 36399, '1.0000', '19.7598', '19.7598', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22105, '2021-10-02', 1666, 21313, 1871, 36353, '1.0000', '133.4617', '133.4617', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22106, '2021-10-02', 1928, 21314, 1871, 36382, '1.0000', '55.2437', '55.2437', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22107, '2021-10-02', 3013, 21315, 1871, 34674, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22108, '2021-10-02', 8525, 21316, 1871, NULL, '1.0000', '18.9500', '18.9500', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22109, '2021-10-02', 1367, 21317, 1871, NULL, '14.0000', '4.9000', '4.9000', '7.0000', '7.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 (22110, '2021-10-02', 9214, 21318, 1871, NULL, '1.0000', '9.6000', '9.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 (22111, '2021-10-02', 1550, 21319, 1871, 32009, '1.0000', '391.6974', '391.6974', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22112, '2021-10-02', 1595, 21320, 1871, 10320, '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 (22113, '2021-10-02', 2327, 21321, 1871, 36342, '10.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22114, '2021-10-02', 7917, 21322, 1872, NULL, '1.0000', '5.0000', '5.0000', '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 (22115, '2021-10-02', 1311, 21323, 1872, 22366, '3.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 (22116, '2021-10-02', 9337, 21324, 1872, NULL, '3.0000', '5.7200', '5.7200', '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 (22117, '2021-10-02', 2753, 21325, 1872, 32534, '2.0000', '4.8000', '4.8000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22118, '2021-10-03', 8566, 21326, 1873, 36101, '1.0000', '11.0013', '11.0013', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22119, '2021-10-03', 2302, 21327, 1873, 24882, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.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 (22120, '2021-10-03', 2379, 21328, 1873, 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 (22121, '2021-10-03', 1619, 21329, 1873, 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 (22122, '2021-10-03', 7579, 21330, 1873, NULL, '1.0000', '15.0000', '15.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 (22123, '2021-10-03', 3062, 21331, 1873, 24982, '1.0000', '6.0700', '6.0700', '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 (22124, '2021-10-03', 1342, 21332, 1873, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22125, '2021-10-03', 1855, 21333, 1873, 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 (22126, '2021-10-03', 1667, 21334, 1873, NULL, '2.0000', '1404.9249', '1404.9249', '8.5000', '8.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 (22127, '2021-10-03', 1666, 21335, 1873, 24940, '1.0000', '2.6304', '2.6304', '3.5000', '3.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 (22128, '2021-10-03', 2169, 21336, 1873, NULL, '1.0000', '1.1484', '1.1484', '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 (22129, '2021-10-03', 2259, 21337, 1873, NULL, '1.0000', '20.0000', '20.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 (22130, '2021-10-03', 1425, 21338, 1873, 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 (22131, '2021-10-03', 2169, 21339, 1873, NULL, '1.0000', '1.1484', '1.1484', '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 (22132, '2021-10-03', 8756, 21340, 1873, 32556, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22133, '2021-10-03', 1368, 21341, 1873, 23174, '1.0000', '5.5000', '5.5000', '7.0000', '7.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 (22134, '2021-10-03', 1863, 21342, 1873, NULL, '1.0000', '1.4033', '1.4033', '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 (22135, '2021-10-03', 1519, 21343, 1873, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22136, '2021-10-03', 7593, 21344, 1873, NULL, '1.0000', '2.4500', '2.4500', '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 (22137, '2021-10-03', 1771, 21345, 1873, 13766, '1.0000', '3.3900', '3.3900', '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 (22138, '2021-10-03', 2095, 21346, 1873, 34658, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22139, '2021-10-03', 1646, 21347, 1873, 30659, '1.0000', '4.5256', '4.5256', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22140, '2021-10-03', 2106, 21348, 1873, 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 (22141, '2021-10-03', 2662, 21349, 1873, 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 (22142, '2021-10-03', 1501, 21350, 1873, NULL, '1.0000', '2.2111', '2.2111', '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 (22143, '2021-10-03', 2777, 21351, 1873, 24972, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '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 (22144, '2021-10-03', 1812, 21352, 1873, 34943, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22145, '2021-10-03', 1488, 21353, 1873, NULL, '1.0000', '90.0000', '90.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 (22146, '2021-10-03', 2332, 21354, 1873, NULL, '1.0000', '5.0900', '5.0900', '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 (22147, '2021-10-03', 2346, 21355, 1873, NULL, '1.0000', '5.5000', '5.5000', '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 (22148, '2021-10-03', 2280, 21356, 1873, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '18.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 (22149, '2021-10-03', 1863, 21357, 1873, NULL, '1.0000', '1.4033', '1.4033', '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 (22150, '2021-10-03', 2254, 21358, 1873, 34620, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22151, '2021-10-03', 1863, 21359, 1873, NULL, '1.0000', '1.4033', '1.4033', '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 (22152, '2021-10-03', 1577, 21360, 1873, NULL, '1.0000', '2.5218', '2.5218', '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 (22153, '2021-10-03', 1580, 21361, 1873, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22154, '2021-10-03', 7781, 21362, 1873, NULL, '3.0000', '4.2500', '4.2500', '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 (22155, '2021-10-03', 2242, 21363, 1874, NULL, '2.0000', '0.6028', '0.6028', '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 (22156, '2021-10-03', 1810, 21364, 1874, NULL, '1.0000', '8.6700', '8.6700', '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 (22157, '2021-10-03', 1523, 21365, 1874, NULL, '1.0000', '1.0061', '1.0061', '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 (22158, '2021-10-03', 2643, 21366, 1874, 36117, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22159, '2021-10-03', 8746, 21367, 1874, NULL, '1.0000', '3.8000', '3.8000', '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 (22160, '2021-10-03', 8746, 21368, 1874, NULL, '1.0000', '3.8000', '3.8000', '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 (22161, '2021-10-03', 1672, 21369, 1874, NULL, '10.0000', '24.6900', '24.6900', '4.0000', '4.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 (22162, '2021-10-03', 2270, 21370, 1874, 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 (22163, '2021-10-03', 1580, 21371, 1874, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22164, '2021-10-03', 2242, 21372, 1874, NULL, '3.0000', '0.6028', '0.6028', '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 (22165, '2021-10-03', 8638, 21373, 1874, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22166, '2021-10-03', 2167, 21374, 1874, 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 (22167, '2021-10-03', 2242, 21375, 1874, NULL, '2.0000', '0.6028', '0.6028', '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 (22168, '2021-10-03', 2088, 21376, 1874, 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 (22169, '2021-10-03', 1771, 21377, 1874, 13766, '1.0000', '3.3900', '3.3900', '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 (22170, '2021-10-03', 2384, 21378, 1874, 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 (22171, '2021-10-03', 8438, 21379, 1874, 36107, '1.0000', '11.5000', '11.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22172, '2021-10-03', 1519, 21380, 1874, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22173, '2021-10-03', 2259, 21381, 1874, NULL, '1.0000', '20.0000', '20.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 (22174, '2021-10-03', 2374, 21382, 1874, 19836, '1.0000', '6.1000', '6.1000', '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 (22175, '2021-10-03', 2916, 21383, 1874, 34035, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22176, '2021-10-03', 1499, 21384, 1874, NULL, '1.0000', '0.4835', '0.4835', '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 (22177, '2021-10-03', 2275, 21385, 1874, 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 (22178, '2021-10-03', 8448, 21386, 1874, NULL, '1.0000', '6.8900', '6.8900', '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 (22179, '2021-10-03', 1386, 21387, 1874, 34018, '1.0000', '-81.0000', '-81.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22180, '2021-10-03', 2444, 21388, 1874, 22549, '1.0000', '7.0800', '7.0800', '9.0000', '9.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 (22181, '2021-10-03', 2642, 21389, 1874, 36104, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22182, '2021-10-03', 2088, 21390, 1874, 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 (22183, '2021-10-03', 1338, 21391, 1874, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22184, '2021-10-03', 9482, 21392, 1874, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22185, '2021-10-03', 8177, 21393, 1874, 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 (22186, '2021-10-03', 7658, 21394, 1874, NULL, '10.0000', '10.1500', '10.1500', '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 (22187, '2021-10-03', 2286, 21395, 1874, 29631, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22188, '2021-10-03', 8662, 21396, 1874, NULL, '1.0000', '12.0000', '12.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 (22189, '2021-10-03', 2093, 21397, 1874, NULL, '1.0000', '2.5500', '2.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 (22190, '2021-10-03', 2506, 21398, 1874, 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 (22191, '2021-10-03', 1455, 21399, 1874, 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 (22192, '2021-10-03', 2907, 21400, 1874, 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 (22193, '2021-10-03', 2749, 21401, 1875, 14490, '-1.0000', '20.5000', '20.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 (22194, '2021-10-03', 2749, 21401, 1875, NULL, '2.0000', '20.5000', '20.5000', '28.0000', '28.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 (22195, '2021-10-03', 8769, 21402, 1875, NULL, '1.0000', '6.6000', '6.6000', '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 (22196, '2021-10-03', 1380, 21403, 1875, 3356, '1.0000', '1640.1972', '1640.1972', '10.0000', '10.0000', '1.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 (22197, '2021-10-03', 7593, 21404, 1875, NULL, '1.0000', '2.4500', '2.4500', '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 (22198, '2021-10-03', 2169, 21405, 1875, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (22199, '2021-10-03', 1912, 21406, 1875, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '22.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 (22200, '2021-10-03', 2277, 21407, 1875, 2937, '-6.0000', '0.7800', '0.7800', '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 (22201, '2021-10-03', 2277, 21407, 1875, NULL, '7.0000', '0.7800', '0.7800', '1.5000', '1.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 (22202, '2021-10-03', 1536, 21408, 1875, 1634, '-25.0000', '3.1686', '3.1686', '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 (22203, '2021-10-03', 1536, 21408, 1875, NULL, '39.0000', '3.1686', '3.1686', '5.0000', '5.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22204, '2021-10-03', 1686, 21409, 1875, NULL, '1.0000', '26.6000', '26.6000', '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 (22205, '2021-10-03', 1824, 21410, 1875, NULL, '1.0000', '5.2000', '5.2000', '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 (22206, '2021-10-03', 1678, 21411, 1875, 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 (22207, '2021-10-03', 2221, 21412, 1875, 4154, '-6.0000', '14.4737', '14.4737', '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 (22208, '2021-10-03', 2221, 21412, 1875, NULL, '7.0000', '14.4737', '14.4737', '25.0000', '25.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 (22209, '2021-10-03', 1667, 21413, 1875, 9745, '-11.0000', '5.9400', '5.9400', '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 (22210, '2021-10-03', 1667, 21413, 1875, NULL, '12.0000', '5.9400', '5.9400', '8.5000', '8.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 (22211, '2021-10-03', 9482, 21414, 1875, 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 (22212, '2021-10-03', 2712, 21415, 1875, 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 (22213, '2021-10-03', 1432, 21416, 1875, 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 (22214, '2021-10-03', 2379, 21417, 1875, 4032, '-18.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 (22215, '2021-10-03', 2379, 21417, 1875, NULL, '19.0000', '1.5900', '1.5900', '2.5000', '2.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 (22216, '2021-10-03', 1435, 21418, 1875, NULL, '1.0000', '22.5000', '22.5000', '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 (22217, '2021-10-03', 7593, 21419, 1875, NULL, '1.0000', '2.4500', '2.4500', '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 (22218, '2021-10-03', 1301, 21420, 1875, 30, '1.0000', '86.7545', '86.7545', '2.0000', '2.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 (22219, '2021-10-03', 1519, 21421, 1875, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (22220, '2021-10-03', 1486, 21422, 1875, 22327, '1.0000', '17.2400', '17.2400', '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 (22221, '2021-10-03', 1651, 21423, 1875, 3222, '-9.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 (22222, '2021-10-03', 1651, 21423, 1875, NULL, '10.0000', '6.7039', '6.7039', '10.0000', '10.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 (22223, '2021-10-03', 2169, 21424, 1875, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (22224, '2021-10-03', 1759, 21425, 1875, 6746, '-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 (22225, '2021-10-03', 1759, 21425, 1875, NULL, '3.0000', '11.5000', '11.5000', '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 (22226, '2021-10-03', 7671, 21426, 1875, NULL, '2.0000', '15.5000', '15.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 (22227, '2021-10-03', 2169, 21427, 1875, 22244, '2.0000', '3.8397', '3.8397', '1.5000', '1.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 (22228, '2021-10-03', 1831, 21428, 1875, 20660, '1.0000', '8.4400', '8.4400', '11.0000', '11.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 (22229, '2021-10-03', 2618, 21429, 1875, 9836, '-11.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 (22230, '2021-10-03', 2618, 21429, 1875, NULL, '12.0000', '4.1000', '4.1000', '5.5000', '5.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 (22231, '2021-10-03', 8745, 21430, 1875, 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 (22232, '2021-10-03', 1905, 21431, 1875, 5443, '-3.0000', '0.4000', '0.4000', '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 (22233, '2021-10-03', 1905, 21431, 1875, NULL, '4.0000', '0.4000', '0.4000', '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 (22234, '2021-10-03', 2384, 21432, 1875, 18845, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '25.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 (22235, '2021-10-03', 1670, 21433, 1875, 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 (22236, '2021-10-03', 2105, 21434, 1875, 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 (22237, '2021-10-03', 1831, 21435, 1875, 20660, '1.0000', '8.4400', '8.4400', '11.0000', '11.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 (22238, '2021-10-03', 2315, 21436, 1875, 2735, '-96.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22239, '2021-10-03', 2315, 21436, 1875, NULL, '97.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-97.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22240, '2021-10-03', 1445, 21437, 1875, 5565, '-2.0000', '2.6000', '2.6000', '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 (22241, '2021-10-03', 1445, 21437, 1875, NULL, '3.0000', '2.6000', '2.6000', '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 (22242, '2021-10-03', 2169, 21438, 1875, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (22243, '2021-10-03', 2135, 21439, 1875, 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 (22244, '2021-10-03', 2712, 21440, 1875, NULL, '11.0000', '0.2600', '0.2600', '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 (22245, '2021-10-03', 8773, 21441, 1875, 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 (22246, '2021-10-03', 2965, 21442, 1875, NULL, '1.0000', '5.0000', '5.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 (22247, '2021-10-03', 1667, 21443, 1875, 9745, '-11.0000', '5.9400', '5.9400', '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 (22248, '2021-10-03', 1667, 21443, 1875, NULL, '13.0000', '5.9400', '5.9400', '8.5000', '8.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 (22249, '2021-10-03', 2299, 21444, 1875, 2142, '1.0000', '6.0000', '6.0000', '8.5000', '8.5000', '2.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 (22250, '2021-10-03', 3029, 21445, 1875, NULL, '1.0000', '4.7700', '4.7700', '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 (22251, '2021-10-03', 1602, 21446, 1876, 5897, '-11.0000', '6.7859', '6.7859', '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 (22252, '2021-10-03', 1602, 21446, 1876, NULL, '12.0000', '6.7859', '6.7859', '10.0000', '10.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 (22253, '2021-10-03', 2643, 21447, 1876, 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 (22254, '2021-10-03', 2411, 21448, 1876, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.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 (22255, '2021-10-03', 1666, 21449, 1877, 24940, '1.0000', '2.6304', '2.6304', '3.5000', '3.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 (22256, '2021-10-03', 2315, 21450, 1877, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22257, '2021-10-03', 2655, 21451, 1877, 36098, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22258, '2021-10-03', 2169, 21452, 1877, NULL, '1.0000', '1.1484', '1.1484', '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 (22259, '2021-10-03', 1746, 21453, 1877, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (22260, '2021-10-03', 1523, 21454, 1877, NULL, '2.0000', '1.0061', '1.0061', '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 (22261, '2021-10-03', 2302, 21455, 1877, 24882, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.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 (22262, '2021-10-03', 7592, 21456, 1877, NULL, '1.0000', '8.6500', '8.6500', '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 (22263, '2021-10-03', 1519, 21457, 1877, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22264, '2021-10-03', 7482, 21458, 1878, 36029, '2.0000', '3.0500', '3.0500', '5.0000', '5.0000', '35.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22265, '2021-10-03', 8735, 21459, 1878, NULL, '1.0000', '5.6000', '5.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 (22266, '2021-10-03', 7782, 21460, 1878, NULL, '2.0000', '5.0000', '5.0000', '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 (22267, '2021-10-03', 9148, 21461, 1878, NULL, '1.0000', '20.1000', '20.1000', '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 (22268, '2021-10-03', 7658, 21462, 1878, NULL, '4.0000', '10.1500', '10.1500', '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 (22269, '2021-10-03', 1596, 21463, 1878, 36079, '1.0000', '2.1642', '2.1642', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22270, '2021-10-03', 7477, 21464, 1878, NULL, '2.0000', '0.9070', '0.9070', '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 (22271, '2021-10-03', 7482, 21465, 1878, 36029, '2.0000', '3.0500', '3.0500', '5.0000', '5.0000', '35.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22272, '2021-10-03', 9273, 21466, 1878, NULL, '2.0000', '0.3500', '0.3500', '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 (22273, '2021-10-03', 7514, 21467, 1878, NULL, '4.0000', '12.9983', '12.9983', '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 (22274, '2021-10-03', 7641, 21468, 1878, NULL, '2.0000', '6.5038', '6.5038', '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 (22275, '2021-10-03', 7731, 21469, 1878, NULL, '1.0000', '0.0000', '0.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 (22276, '2021-10-03', 7604, 21470, 1878, NULL, '1.0000', '4.3900', '4.3900', '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 (22277, '2021-10-03', 7547, 21471, 1878, NULL, '1.0000', '0.0000', '0.0000', '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 (22278, '2021-10-03', 7641, 21472, 1878, NULL, '1.0000', '6.5038', '6.5038', '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 (22279, '2021-10-03', 2289, 21473, 1878, NULL, '6.0000', '0.2300', '0.2300', '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 (22280, '2021-10-03', 8359, 21474, 1878, NULL, '1.0000', '16.7750', '16.7750', '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 (22281, '2021-10-03', 7752, 21475, 1878, NULL, '1.0000', '3.0000', '3.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 (22282, '2021-10-03', 7951, 21476, 1878, NULL, '1.0000', '14.6000', '14.6000', '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 (22283, '2021-10-03', 8164, 21477, 1878, NULL, '1.0000', '3.1200', '3.1200', '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 (22284, '2021-10-03', 2825, 21478, 1878, 30221, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22285, '2021-10-03', 9418, 21479, 1878, NULL, '1.0000', '19.8000', '19.8000', '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 (22286, '2021-10-03', 7632, 21480, 1878, NULL, '1.0000', '9.0000', '9.0000', '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 (22287, '2021-10-03', 8341, 21481, 1878, NULL, '1.0000', '43.0000', '43.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 (22288, '2021-10-03', 7711, 21482, 1878, NULL, '1.0000', '0.3900', '0.3900', '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 (22289, '2021-10-03', 7518, 21483, 1878, NULL, '1.0000', '-21.7700', '-21.7700', '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 (22290, '2021-10-03', 9394, 21484, 1878, NULL, '2.0000', '5.5000', '5.5000', '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 (22291, '2021-10-03', 2476, 21485, 1878, NULL, '2.0000', '10.0000', '10.0000', '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 (22292, '2021-10-03', 9358, 21486, 1878, NULL, '1.0000', '28.3800', '28.3800', '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 (22293, '2021-10-03', 7610, 21487, 1878, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22294, '2021-10-03', 7628, 21488, 1878, NULL, '12.0000', '2.9100', '2.9100', '4.0000', '4.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 (22295, '2021-10-03', 8138, 21489, 1878, NULL, '1.0000', '9.7500', '9.7500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22296, '2021-10-03', 2995, 21490, 1878, NULL, '1.0000', '13.2500', '13.2500', '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 (22297, '2021-10-03', 9393, 21491, 1878, NULL, '2.0000', '15.0000', '15.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 (22298, '2021-10-03', 9092, 21492, 1878, NULL, '1.0000', '5.2900', '5.2900', '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 (22299, '2021-10-03', 7518, 21493, 1878, NULL, '1.0000', '-21.7700', '-21.7700', '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 (22300, '2021-10-03', 7703, 21494, 1878, NULL, '2.0000', '22.9900', '22.9900', '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 (22301, '2021-10-03', 7482, 21495, 1878, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '36.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22302, '2021-10-03', 8417, 21496, 1878, NULL, '1.0000', '5.8000', '5.8000', '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 (22303, '2021-10-03', 7415, 21497, 1878, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22304, '2021-10-03', 8163, 21498, 1878, NULL, '1.0000', '4.9000', '4.9000', '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 (22305, '2021-10-03', 7756, 21499, 1878, NULL, '1.0000', '21.7700', '21.7700', '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 (22306, '2021-10-03', 7641, 21500, 1878, NULL, '1.0000', '6.5038', '6.5038', '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 (22307, '2021-10-03', 7524, 21501, 1878, NULL, '1.0000', '11.9500', '11.9500', '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 (22308, '2021-10-03', 7448, 21502, 1878, NULL, '1.0000', '15.8500', '15.8500', '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 (22309, '2021-10-03', 8829, 21503, 1878, NULL, '25.0000', '8.0000', '8.0000', '2.5000', '2.5000', '-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 (22310, '2021-10-03', 8288, 21504, 1878, NULL, '3.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (22311, '2021-10-03', 7379, 21505, 1878, 30012, '1.0000', '12.5100', '12.5100', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22312, '2021-10-03', 9534, 21506, 1878, 36035, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22313, '2021-10-03', 7482, 21507, 1878, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '36.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22314, '2021-10-03', 8594, 21508, 1878, 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 (22315, '2021-10-03', 9534, 21509, 1878, 36035, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22316, '2021-10-03', 7674, 21510, 1878, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '225.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22317, '2021-10-03', 7411, 21511, 1878, NULL, '1.0000', '1.3500', '1.3500', '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 (22318, '2021-10-03', 7411, 21512, 1878, NULL, '1.0000', '1.3500', '1.3500', '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 (22319, '2021-10-03', 1771, 21513, 1878, 35186, '1.0000', '12.4894', '12.4894', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22320, '2021-10-03', 2906, 21514, 1878, 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 (22321, '2021-10-03', 7708, 21515, 1878, NULL, '1.0000', '6.1400', '6.1400', '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 (22322, '2021-10-03', 1554, 21516, 1878, NULL, '1.0000', '3.1600', '3.1600', '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 (22323, '2021-10-03', 7604, 21517, 1878, NULL, '1.0000', '4.3900', '4.3900', '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 (22324, '2021-10-03', 7663, 21518, 1878, NULL, '1.0000', '5.7000', '5.7000', '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 (22325, '2021-10-03', 1339, 21519, 1878, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22326, '2021-10-03', 7590, 21520, 1878, NULL, '1.0000', '4.3600', '4.3600', '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 (22327, '2021-10-03', 7558, 21521, 1878, NULL, '10.0000', '2.2000', '2.2000', '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 (22328, '2021-10-03', 2381, 21522, 1878, 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 (22329, '2021-10-03', 7527, 21523, 1878, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22330, '2021-10-03', 8097, 21524, 1878, NULL, '3.0000', '3.3994', '3.3994', '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 (22331, '2021-10-03', 7910, 21525, 1878, NULL, '1.0000', '7.9800', '7.9800', '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 (22332, '2021-10-03', 7509, 21526, 1878, 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 (22333, '2021-10-03', 8015, 21527, 1878, NULL, '7.0000', '4.1466', '4.1466', '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 (22334, '2021-10-03', 7559, 21528, 1878, 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 (22335, '2021-10-03', 7524, 21529, 1878, NULL, '1.0000', '11.9500', '11.9500', '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 (22336, '2021-10-03', 8000, 21530, 1878, NULL, '2.0000', '27.9111', '27.9111', '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 (22337, '2021-10-03', 7523, 21531, 1878, NULL, '1.0000', '1.8300', '1.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 (22338, '2021-10-03', 8722, 21532, 1878, 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 (22339, '2021-10-03', 9098, 21533, 1878, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22340, '2021-10-03', 7822, 21534, 1878, NULL, '1.0000', '5.6000', '5.6000', '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 (22341, '2021-10-03', 7959, 21535, 1878, NULL, '2.0000', '9.6000', '9.6000', '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 (22342, '2021-10-03', 2444, 21536, 1878, 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 (22343, '2021-10-03', 2060, 21537, 1878, 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 (22344, '2021-10-03', 8654, 21538, 1878, NULL, '1.0000', '5.8000', '5.8000', '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 (22345, '2021-10-03', 8845, 21539, 1878, NULL, '1.0000', '40.2500', '40.2500', '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 (22346, '2021-10-03', 9463, 21540, 1878, 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 (22347, '2021-10-03', 2409, 21541, 1878, 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 (22348, '2021-10-03', 7641, 21542, 1878, NULL, '1.0000', '6.5038', '6.5038', '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 (22349, '2021-10-03', 7514, 21543, 1878, NULL, '1.0000', '12.9983', '12.9983', '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 (22350, '2021-10-03', 7411, 21544, 1878, NULL, '1.0000', '1.3500', '1.3500', '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 (22351, '2021-10-03', 2656, 21545, 1878, 34563, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22352, '2021-10-03', 7886, 21546, 1878, NULL, '1.0000', '16.1667', '16.1667', '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 (22353, '2021-10-03', 7713, 21547, 1878, NULL, '2.0000', '4.4000', '4.4000', '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 (22354, '2021-10-03', 7781, 21548, 1878, NULL, '3.0000', '4.2500', '4.2500', '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 (22355, '2021-10-03', 7672, 21549, 1878, NULL, '1.0000', '1.0200', '1.0200', '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 (22356, '2021-10-03', 7774, 21550, 1878, NULL, '1.0000', '3.5000', '3.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 (22357, '2021-10-03', 7872, 21551, 1878, 31012, '1.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22358, '2021-10-03', 9193, 21552, 1878, NULL, '1.0000', '6.7400', '6.7400', '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 (22359, '2021-10-03', 7610, 21553, 1878, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22360, '2021-10-03', 7612, 21554, 1878, NULL, '2.0000', '46.0000', '46.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 (22361, '2021-10-03', 2976, 21555, 1878, 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 (22362, '2021-10-03', 7834, 21556, 1878, NULL, '1.0000', '21.0000', '21.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 (22363, '2021-10-03', 8101, 21557, 1878, NULL, '2.0000', '21.7000', '21.7000', '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 (22364, '2021-10-03', 7518, 21558, 1878, NULL, '1.0000', '-21.7700', '-21.7700', '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 (22365, '2021-10-03', 1904, 21559, 1878, 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 (22366, '2021-10-03', 2967, 21560, 1878, 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 (22367, '2021-10-03', 2411, 21561, 1878, 33722, '1.0000', '2.3220', '2.3220', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22368, '2021-10-03', 9310, 21562, 1878, NULL, '1.0000', '6.5000', '6.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 (22369, '2021-10-03', 7672, 21563, 1878, NULL, '1.0000', '1.0200', '1.0200', '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 (22370, '2021-10-03', 9338, 21564, 1878, NULL, '1.0000', '3.8000', '3.8000', '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 (22371, '2021-10-03', 2851, 21565, 1878, NULL, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22372, '2021-10-03', 7324, 21566, 1878, 29977, '2.0000', '55.7000', '55.7000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22373, '2021-10-03', 7703, 21567, 1878, NULL, '2.0000', '22.9900', '22.9900', '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 (22374, '2021-10-03', 7385, 21568, 1878, 36048, '2.0000', '933.1354', '933.1354', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22375, '2021-10-03', 2882, 21569, 1879, NULL, '2.0000', '30.0000', '30.0000', '40.0000', '40.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 (22376, '2021-10-03', 2883, 21570, 1879, 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 (22377, '2021-10-03', 1871, 21571, 1879, 469, '2.0000', '24.5246', '24.5246', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22378, '2021-10-03', 2167, 21572, 1879, 17165, '-2.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 (22379, '2021-10-03', 2167, 21572, 1879, 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 (22380, '2021-10-03', 2237, 21573, 1879, 2781, '-9.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 (22381, '2021-10-03', 2237, 21573, 1879, NULL, '10.0000', '1.0600', '1.0600', '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 (22382, '2021-10-03', 2635, 21574, 1879, 10297, '-5.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 (22383, '2021-10-03', 2635, 21574, 1879, 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 (22384, '2021-10-03', 1602, 21575, 1880, NULL, '1.0000', '7.0310', '7.0310', '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 (22385, '2021-10-03', 2167, 21576, 1880, 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 (22386, '2021-10-03', 1649, 21577, 1880, 34634, '1.0000', '11.1900', '11.1900', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22387, '2021-10-03', 8925, 21578, 1880, NULL, '1.0000', '2.4000', '2.4000', '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 (22388, '2021-10-03', 2315, 21579, 1880, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22389, '2021-10-03', 1521, 21580, 1880, 34966, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22390, '2021-10-03', 2088, 21581, 1880, 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 (22391, '2021-10-03', 1667, 21582, 1880, NULL, '1.0000', '1404.9249', '1404.9249', '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 (22392, '2021-10-03', 2656, 21583, 1880, 36099, '3.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22393, '2021-10-03', 2655, 21584, 1880, 36098, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22394, '2021-10-03', 8984, 21585, 1880, 36118, '1.0000', '-1673.8979', '-1673.8979', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22395, '2021-10-03', 2567, 21586, 1880, 22515, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '3.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 (22396, '2021-10-03', 1755, 21587, 1881, 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 (22397, '2021-10-03', 2384, 21588, 1881, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22398, '2021-10-03', 9162, 21589, 1881, NULL, '1.0000', '5.0000', '5.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 (22399, '2021-10-03', 7911, 21590, 1881, NULL, '1.0000', '4.3700', '4.3700', '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 (22400, '2021-10-03', 7379, 21591, 1881, NULL, '1.0000', '12.5100', '12.5100', '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 (22401, '2021-10-03', 2409, 21592, 1881, 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 (22402, '2021-10-03', 7781, 21593, 1881, NULL, '3.0000', '4.2500', '4.2500', '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 (22403, '2021-10-03', 7881, 21594, 1881, NULL, '1.0000', '32.7700', '32.7700', '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 (22404, '2021-10-03', 7980, 21595, 1881, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (22405, '2021-10-03', 9340, 21596, 1881, NULL, '1.0000', '26.2800', '26.2800', '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 (22406, '2021-10-03', 9092, 21597, 1881, NULL, '3.0000', '5.2900', '5.2900', '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 (22407, '2021-10-03', 7465, 21598, 1881, 36025, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22408, '2021-10-03', 7750, 21599, 1881, 36028, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22409, '2021-10-03', 2135, 21600, 1882, 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 (22410, '2021-10-03', 2289, 21601, 1882, 2949, '-6.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 (22411, '2021-10-03', 2289, 21601, 1882, NULL, '8.0000', '0.3300', '0.3300', '0.5000', '0.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 (22412, '2021-10-03', 1841, 21602, 1882, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '17.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 (22413, '2021-10-03', 1840, 21603, 1882, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22414, '2021-10-03', 1910, 21604, 1882, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '49.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 (22415, '2021-10-03', 2315, 21605, 1882, 2735, '-97.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22416, '2021-10-03', 2315, 21605, 1882, NULL, '99.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22417, '2021-10-03', 1504, 21606, 1882, 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 (22418, '2021-10-03', 1813, 21607, 1882, 12527, '-1.0000', '28.2400', '28.2400', '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 (22419, '2021-10-03', 1813, 21607, 1882, NULL, '2.0000', '28.2400', '28.2400', '38.0000', '38.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 (22420, '2021-10-03', 1678, 21608, 1882, 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 (22421, '2021-10-03', 1337, 21609, 1883, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '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 (22422, '2021-10-03', 2401, 21610, 1883, NULL, '1.0000', '2.8000', '2.8000', '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 (22423, '2021-10-03', 2821, 21611, 1883, 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 (22424, '2021-10-03', 2699, 21612, 1884, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22425, '2021-10-03', 8759, 21613, 1885, 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 (22426, '2021-10-03', 2416, 21614, 1885, 4745, '-6.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 (22427, '2021-10-03', 2416, 21614, 1885, NULL, '8.0000', '1.2000', '1.2000', '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 (22428, '2021-10-03', 2446, 21615, 1885, 5316, '-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 (22429, '2021-10-03', 2446, 21615, 1885, NULL, '2.0000', '2.5000', '2.5000', '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 (22430, '2021-10-03', 9444, 21616, 1885, NULL, '1.0000', '1.8000', '1.8000', '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 (22431, '2021-10-03', 1908, 21617, 1885, 5444, '-14.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 (22432, '2021-10-03', 1908, 21617, 1885, NULL, '15.0000', '90.0000', '90.0000', '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 (22433, '2021-10-03', 2681, 21618, 1885, 12164, '-3.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 (22434, '2021-10-03', 2681, 21618, 1885, NULL, '4.0000', '12.5000', '12.5000', '16.5000', '16.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 (22435, '2021-10-03', 1533, 21619, 1885, 22263, '1.0000', '2.5917', '2.5917', '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 (22436, '2021-10-03', 2171, 21620, 1885, 8139, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.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 (22437, '2021-10-03', 2912, 21621, 1886, NULL, '2.0000', '10.0000', '10.0000', '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 (22438, '2021-10-03', 2477, 21622, 1886, 5190, '1.0000', '8.0000', '8.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 (22439, '2021-10-03', 9554, 21623, 1887, 36478, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22440, '2021-10-04', 1307, 21624, 1888, 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 (22441, '2021-10-04', 8608, 21625, 1888, NULL, '2.0000', '0.9000', '0.9000', '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 (22442, '2021-10-04', 2167, 21626, 1888, 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 (22443, '2021-10-04', 2818, 21627, 1888, 33372, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22444, '2021-10-04', 2609, 21628, 1888, 34622, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22445, '2021-10-04', 2565, 21629, 1888, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '9.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 (22446, '2021-10-04', 1805, 21630, 1888, NULL, '1.0000', '4.5244', '4.5244', '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 (22447, '2021-10-04', 1738, 21631, 1888, 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 (22448, '2021-10-04', 2699, 21632, 1888, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22449, '2021-10-04', 2818, 21633, 1888, 33372, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22450, '2021-10-04', 1632, 21634, 1888, 19826, '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 (22451, '2021-10-04', 1763, 21635, 1888, 19383, '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 (22452, '2021-10-04', 2068, 21636, 1888, 33354, '1.0000', '13.2503', '13.2503', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22453, '2021-10-04', 1519, 21637, 1888, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22454, '2021-10-04', 1863, 21638, 1888, NULL, '1.0000', '1.4033', '1.4033', '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 (22455, '2021-10-04', 2361, 21639, 1888, 19350, '1.0000', '0.4700', '0.4700', '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 (22456, '2021-10-04', 7335, 21640, 1888, NULL, '1.0000', '10.4000', '10.4000', '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 (22457, '2021-10-04', 8638, 21641, 1888, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22458, '2021-10-04', 2726, 21642, 1888, 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 (22459, '2021-10-04', 1519, 21643, 1888, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22460, '2021-10-04', 2169, 21644, 1889, NULL, '1.0000', '1.1484', '1.1484', '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 (22461, '2021-10-04', 1425, 21645, 1889, 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 (22462, '2021-10-04', 1689, 21646, 1889, 13742, '1.0000', '12.3438', '12.3438', '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 (22463, '2021-10-04', 2286, 21647, 1889, 29631, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22464, '2021-10-04', 2320, 21648, 1889, 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 (22465, '2021-10-04', 2293, 21649, 1890, NULL, '2.0000', '1.4400', '1.4400', '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 (22466, '2021-10-04', 8984, 21650, 1891, 36118, '1.0000', '-1673.8979', '-1673.8979', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22467, '2021-10-04', 1912, 21651, 1891, NULL, '1.0000', '0.6591', '0.6591', '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 (22468, '2021-10-04', 2871, 21652, 1892, NULL, '1.0000', '35.0000', '35.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 (22469, '2021-10-04', 1426, 21653, 1892, 22356, '1.0000', '36.0000', '36.0000', '47.5000', '47.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 (22470, '2021-10-04', 2154, 21654, 1892, 1369, '1.0000', '10.6849', '10.6849', '16.0000', '16.0000', '9.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 (22471, '2021-10-04', 1546, 21655, 1892, 1633, '6.0000', '2.3697', '2.3697', '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 (22472, '2021-10-04', 1546, 21655, 1892, NULL, '6.0000', '2.3697', '2.3697', '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 (22473, '2021-10-04', 1547, 21656, 1892, NULL, '1.0000', '30.5800', '30.5800', '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 (22474, '2021-10-04', 1859, 21657, 1892, 22335, '1.0000', '22.6760', '22.6760', '32.0000', '32.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 (22475, '2021-10-04', 2521, 21658, 1892, NULL, '2.0000', '8.8000', '8.8000', '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 (22476, '2021-10-04', 1935, 21659, 1892, 5586, '-14.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 (22477, '2021-10-04', 1935, 21659, 1892, NULL, '15.0000', '0.7200', '0.7200', '2.0000', '2.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 (22478, '2021-10-04', 2486, 21660, 1892, 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 (22479, '2021-10-04', 1608, 21661, 1892, 8222, '-7.0000', '3.3500', '3.3500', '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 (22480, '2021-10-04', 1608, 21661, 1892, NULL, '8.0000', '3.3500', '3.3500', '5.5000', '5.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 (22481, '2021-10-04', 1672, 21662, 1892, 7384, '-34.0000', '2.8700', '2.8700', '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 (22482, '2021-10-04', 1672, 21662, 1892, NULL, '44.0000', '2.8700', '2.8700', '4.0000', '4.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22483, '2021-10-04', 2618, 21663, 1892, 9836, '-12.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 (22484, '2021-10-04', 2618, 21663, 1892, NULL, '13.0000', '4.1000', '4.1000', '5.5000', '5.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 (22485, '2021-10-04', 1843, 21664, 1892, 2678, '12.0000', '4.3000', '4.3000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 65);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22486, '2021-10-04', 1843, 21664, 1892, 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 (22487, '2021-10-04', 1824, 21665, 1892, NULL, '1.0000', '5.2000', '5.2000', '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 (22488, '2021-10-04', 7802, 21666, 1892, NULL, '3.0000', '0.9200', '0.9200', '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 (22489, '2021-10-04', 1427, 21667, 1892, 22355, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '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 (22490, '2021-10-04', 2964, 21668, 1892, NULL, '1.0000', '6.6000', '6.6000', '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 (22491, '2021-10-04', 1910, 21669, 1892, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '48.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 (22492, '2021-10-04', 2208, 21670, 1892, 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 (22493, '2021-10-04', 2217, 21671, 1892, 17888, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 160);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22494, '2021-10-04', 2178, 21672, 1892, 8124, '1.0000', '7.5000', '7.5000', '15.0000', '15.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 (22495, '2021-10-04', 2617, 21673, 1892, 9743, '-2.0000', '4.4000', '4.4000', '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 (22496, '2021-10-04', 2617, 21673, 1892, NULL, '4.0000', '4.4000', '4.4000', '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 (22497, '2021-10-04', 2339, 21674, 1892, NULL, '1.0000', '7.2300', '7.2300', '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 (22498, '2021-10-04', 7438, 21675, 1892, NULL, '1.0000', '28.6900', '28.6900', '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 (22499, '2021-10-04', 7672, 21676, 1893, NULL, '1.0000', '1.0200', '1.0200', '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 (22500, '2021-10-04', 1782, 21677, 1894, 4900, '-1.0000', '2.9900', '2.9900', '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 (22501, '2021-10-04', 1782, 21677, 1894, NULL, '3.0000', '2.9900', '2.9900', '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 (22502, '2021-10-04', 1637, 21678, 1894, 13466, '1.0000', '10.2000', '10.2000', '14.0000', '14.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 (22503, '2021-10-04', 7509, 21679, 1895, 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 (22504, '2021-10-04', 7473, 21680, 1895, NULL, '10.0000', '9.2200', '9.2200', '0.6000', '0.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 (22505, '2021-10-04', 7514, 21681, 1895, NULL, '1.0000', '12.9983', '12.9983', '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 (22506, '2021-10-04', 8596, 21682, 1895, NULL, '1.0000', '17.0000', '17.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 (22507, '2021-10-04', 7334, 21683, 1895, 36056, '2.0000', '8.1600', '8.1600', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22508, '2021-10-04', 8063, 21684, 1895, 34558, '1.0000', '-23.2756', '-23.2756', '7.0000', '7.0000', '33.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22509, '2021-10-04', 7715, 21685, 1895, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '25.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22510, '2021-10-04', 9110, 21686, 1895, NULL, '1.0000', '7.0000', '7.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 (22511, '2021-10-04', 7710, 21687, 1895, NULL, '2.0000', '26.0000', '26.0000', '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 (22512, '2021-10-04', 1577, 21688, 1895, 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 (22513, '2021-10-04', 8188, 21689, 1895, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22514, '2021-10-04', 8000, 21690, 1895, NULL, '1.0000', '27.9111', '27.9111', '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 (22515, '2021-10-04', 1533, 21691, 1895, 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 (22516, '2021-10-04', 7531, 21692, 1895, NULL, '3.0000', '16.5000', '16.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 (22517, '2021-10-04', 8097, 21693, 1895, NULL, '3.0000', '3.3994', '3.3994', '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 (22518, '2021-10-04', 7806, 21694, 1895, NULL, '4.0000', '14.0000', '14.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 (22519, '2021-10-04', 9272, 21695, 1895, NULL, '1.0000', '3.1000', '3.1000', '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 (22520, '2021-10-04', 7565, 21696, 1895, NULL, '1.0000', '0.2000', '0.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 (22521, '2021-10-04', 7879, 21697, 1895, NULL, '4.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (22522, '2021-10-04', 1837, 21698, 1895, 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 (22523, '2021-10-04', 9419, 21699, 1895, 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 (22524, '2021-10-04', 7781, 21700, 1895, NULL, '3.0000', '4.2500', '4.2500', '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 (22525, '2021-10-04', 7590, 21701, 1895, NULL, '1.0000', '4.3600', '4.3600', '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 (22526, '2021-10-04', 1339, 21702, 1895, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22527, '2021-10-04', 8097, 21703, 1895, NULL, '3.0000', '3.3994', '3.3994', '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 (22528, '2021-10-04', 2102, 21704, 1895, 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 (22529, '2021-10-04', 7807, 21705, 1895, NULL, '4.0000', '12.0000', '12.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 (22530, '2021-10-04', 9098, 21706, 1895, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22531, '2021-10-04', 7514, 21707, 1895, NULL, '1.0000', '12.9983', '12.9983', '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 (22532, '2021-10-04', 9267, 21708, 1895, 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 (22533, '2021-10-04', 9335, 21709, 1895, NULL, '1.0000', '0.6600', '0.6600', '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 (22534, '2021-10-04', 1631, 21710, 1895, NULL, '1.0000', '90.0000', '90.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 (22535, '2021-10-04', 7411, 21711, 1895, NULL, '4.0000', '1.3500', '1.3500', '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 (22536, '2021-10-04', 1947, 21712, 1895, 34552, '1.0000', '-2021.4409', '-2021.4409', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22537, '2021-10-04', 7354, 21713, 1895, NULL, '1.0000', '18.0000', '18.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 (22538, '2021-10-04', 8166, 21714, 1895, NULL, '1.0000', '4.6000', '4.6000', '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 (22539, '2021-10-04', 2476, 21715, 1895, 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 (22540, '2021-10-04', 2699, 21716, 1895, 34564, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22541, '2021-10-04', 8615, 21717, 1895, NULL, '3.0000', '5.0000', '5.0000', '5.5000', '5.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 (22542, '2021-10-04', 8889, 21718, 1895, 31654, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22543, '2021-10-04', 2773, 21719, 1896, NULL, '1.0000', '15.0200', '15.0200', '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 (22544, '2021-10-04', 1804, 21720, 1896, NULL, '1.0000', '4.2500', '4.2500', '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 (22545, '2021-10-04', 1863, 21721, 1896, 10808, '-27.0000', '0.4136', '0.4136', '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 (22546, '2021-10-04', 1863, 21721, 1896, NULL, '29.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22547, '2021-10-04', 1485, 21722, 1897, NULL, '1.0000', '90.0000', '90.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 (22548, '2021-10-04', 3058, 21723, 1897, 24961, '2.0000', '4.3000', '4.3000', '6.0000', '6.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 (22549, '2021-10-04', 1621, 21724, 1898, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (22550, '2021-10-04', 2279, 21725, 1898, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (22551, '2021-10-04', 8743, 21726, 1899, NULL, '1.0000', '8.5000', '8.5000', '13.2000', '13.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 (22552, '2021-10-04', 2252, 21727, 1899, 33142, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22553, '2021-10-04', 1690, 21728, 1900, 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 (22554, '2021-10-04', 1529, 21729, 1900, NULL, '1.0000', '36.4099', '36.4099', '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 (22555, '2021-10-04', 3067, 21730, 1900, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '34.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 (22556, '2021-10-04', 2821, 21731, 1901, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22557, '2021-10-04', 1339, 21732, 1901, 32530, '1.0000', '0.3390', '0.3390', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22558, '2021-10-04', 2545, 21733, 1901, 30684, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22559, '2021-10-04', 3059, 21734, 1902, NULL, '3.0000', '0.4500', '0.4500', '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 (22560, '2021-10-04', 1499, 21735, 1902, NULL, '2.0000', '0.4835', '0.4835', '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 (22561, '2021-10-04', 8759, 21736, 1902, 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 (22562, '2021-10-04', 8166, 21737, 1902, NULL, '1.0000', '4.6000', '4.6000', '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 (22563, '2021-10-04', 1410, 21738, 1902, 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 (22564, '2021-10-04', 1571, 21739, 1902, 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 (22565, '2021-10-04', 2285, 21740, 1902, NULL, '1.0000', '35.8000', '35.8000', '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 (22566, '2021-10-04', 2655, 21741, 1902, 36098, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22567, '2021-10-04', 7554, 21742, 1902, NULL, '10.0000', '16.0000', '16.0000', '2.2000', '2.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 (22568, '2021-10-04', 1674, 21743, 1902, NULL, '1.0000', '3.2473', '3.2473', '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 (22569, '2021-10-04', 2060, 21744, 1902, 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 (22570, '2021-10-04', 8207, 21745, 1902, NULL, '1.0000', '0.0000', '0.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 (22571, '2021-10-04', 2221, 21746, 1902, 34955, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22572, '2021-10-04', 2950, 21747, 1902, 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 (22573, '2021-10-04', 2699, 21748, 1902, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22574, '2021-10-04', 8759, 21749, 1902, 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 (22575, '2021-10-04', 2699, 21750, 1902, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22576, '2021-10-04', 7575, 21751, 1902, NULL, '1.0000', '28.3200', '28.3200', '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 (22577, '2021-10-04', 8020, 21752, 1902, NULL, '1.0000', '51.6000', '51.6000', '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 (22578, '2021-10-04', 2060, 21753, 1902, 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 (22579, '2021-10-04', 2660, 21754, 1902, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (22580, '2021-10-04', 2272, 21755, 1902, 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 (22581, '2021-10-04', 2277, 21756, 1902, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22582, '2021-10-04', 1602, 21757, 1903, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '58.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22583, '2021-10-04', 1723, 21758, 1903, 6808, '1.0000', '6.4800', '6.4800', '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 (22584, '2021-10-04', 3035, 21759, 1903, 36339, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22585, '2021-10-04', 1702, 21760, 1903, 33016, '1.0000', '60.1221', '60.1221', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22586, '2021-10-04', 2592, 21761, 1903, 24289, '1.0000', '7.9456', '7.9456', '11.0000', '11.0000', '3.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 (22587, '2021-10-04', 2073, 21762, 1903, 31995, '5.0000', '2.3000', '2.3000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22588, '2021-10-04', 1837, 21763, 1903, 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 (22589, '2021-10-04', 2379, 21764, 1903, 4385, '1.0000', '1.5900', '1.5900', '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 (22590, '2021-10-04', 7886, 21765, 1903, 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 (22591, '2021-10-04', 1410, 21766, 1903, 31729, '1.0000', '2.2220', '2.2220', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22592, '2021-10-04', 1498, 21767, 1903, 1501, '2.0000', '0.3300', '0.3300', '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 (22593, '2021-10-04', 2964, 21768, 1903, 21817, '1.0000', '6.6000', '6.6000', '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 (22594, '2021-10-04', 2169, 21769, 1903, 36390, '1.0000', '1.0361', '1.0361', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22595, '2021-10-04', 2360, 21770, 1903, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (22596, '2021-10-04', 1425, 21771, 1903, 36343, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22597, '2021-10-04', 1863, 21772, 1903, 36362, '1.0000', '1.0691', '1.0691', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22598, '2021-10-04', 1822, 21773, 1903, 11174, '3.0000', '2.9682', '2.9682', '3.5000', '3.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 (22599, '2021-10-04', 9480, 21774, 1903, 32579, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22600, '2021-10-04', 1888, 21775, 1903, NULL, '1.0000', '-42.1250', '-42.1250', '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 (22601, '2021-10-04', 7639, 21776, 1903, 32060, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22602, '2021-10-04', 2169, 21777, 1903, 36390, '1.0000', '1.0361', '1.0361', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22603, '2021-10-04', 2730, 21778, 1903, 21547, '2.0000', '1.2000', '1.2000', '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 (22604, '2021-10-04', 2916, 21779, 1903, 36373, '1.0000', '14.1311', '14.1311', '20.0000', '20.0000', '18.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22605, '2021-10-04', 1689, 21780, 1903, 36351, '1.0000', '12.6079', '12.6079', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22606, '2021-10-04', 9491, 21781, 1903, 32629, '1.0000', '14.5000', '14.5000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22607, '2021-10-04', 3017, 21782, 1904, NULL, '1.0000', '3.9000', '3.9000', '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 (22608, '2021-10-04', 7952, 21783, 1904, NULL, '1.0000', '1.4000', '1.4000', '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 (22609, '2021-10-04', 1812, 21784, 1905, 36378, '1.0000', '7.9190', '7.9190', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22610, '2021-10-04', 1851, 21785, 1905, 33215, '1.0000', '13.2013', '13.2013', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22611, '2021-10-04', 1782, 21786, 1906, 4935, '2.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 (22612, '2021-10-04', 2557, 21787, 1906, 12740, '1.0000', '1.0000', '1.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 (22613, '2021-10-04', 2315, 21788, 1906, 3069, '4.0000', '0.3300', '0.3300', '0.5100', '0.5100', '245.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22614, '2021-10-04', 1942, 21789, 1906, 36376, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22615, '2021-10-04', 2959, 21790, 1906, 35930, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22616, '2021-10-04', 1668, 21791, 1906, 36380, '1.0000', '80.0824', '80.0824', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22617, '2021-10-04', 7739, 21792, 1906, NULL, '3.0000', '2.7500', '2.7500', '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 (22618, '2021-10-04', 1807, 21793, 1906, NULL, '15.0000', '1.8000', '1.8000', '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 (22619, '2021-10-04', 7710, 21794, 1906, NULL, '2.0000', '26.0000', '26.0000', '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 (22620, '2021-10-04', 2681, 21795, 1906, 32247, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22621, '2021-10-04', 1445, 21796, 1906, 7112, '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 (22622, '2021-10-04', 1346, 21797, 1906, NULL, '3.0000', '0.9300', '0.9300', '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 (22623, '2021-10-04', 1510, 21798, 1906, 29790, '1.0000', '29.8200', '29.8200', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22624, '2021-10-04', 7482, 21799, 1906, 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 (22625, '2021-10-04', 1520, 21800, 1906, 11038, '1.0000', '1.4700', '1.4700', '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 (22626, '2021-10-04', 1763, 21801, 1907, 3173, '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 (22627, '2021-10-04', 7482, 21802, 1907, 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 (22628, '2021-10-04', 2451, 21803, 1907, NULL, '1.0000', '10.3500', '10.3500', '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 (22629, '2021-10-04', 7411, 21804, 1907, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22630, '2021-10-04', 2220, 21805, 1907, 4333, '1.0000', '5.4170', '5.4170', '8.0000', '8.0000', '17.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 (22631, '2021-10-04', 2169, 21806, 1907, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (22632, '2021-10-04', 8638, 21807, 1907, NULL, '2.0000', '0.5100', '0.5100', '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 (22633, '2021-10-04', 2241, 21808, 1907, 3058, '-3.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 (22634, '2021-10-04', 2241, 21808, 1907, NULL, '4.0000', '6.5900', '6.5900', '9.0000', '9.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 (22635, '2021-10-04', 7741, 21809, 1907, NULL, '1.0000', '1.2000', '1.2000', '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 (22636, '2021-10-04', 8208, 21810, 1907, NULL, '2.0000', '33.0000', '33.0000', '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 (22637, '2021-10-04', 2656, 21811, 1907, 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 (22638, '2021-10-04', 2269, 21812, 1907, 2929, '-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 (22639, '2021-10-04', 2269, 21812, 1907, NULL, '2.0000', '4.9800', '4.9800', '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 (22640, '2021-10-04', 8657, 21813, 1907, NULL, '1.0000', '6.3900', '6.3900', '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 (22641, '2021-10-04', 1873, 21814, 1907, 16245, '-3.0000', '11.9500', '11.9500', '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 (22642, '2021-10-04', 1873, 21814, 1907, NULL, '4.0000', '11.9500', '11.9500', '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 (22643, '2021-10-04', 1670, 21815, 1907, 10163, '-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 (22644, '2021-10-04', 1670, 21815, 1907, 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 (22645, '2021-10-04', 2570, 21816, 1907, 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 (22646, '2021-10-04', 1532, 21817, 1907, 22261, '2.0000', '0.8000', '0.8000', '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 (22647, '2021-10-04', 2236, 21818, 1907, NULL, '1.0000', '5.6599', '5.6599', '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 (22648, '2021-10-04', 7411, 21819, 1907, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22649, '2021-10-04', 9556, 21820, 1907, 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 (22650, '2021-10-04', 2655, 21821, 1907, 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 (22651, '2021-10-04', 9204, 21822, 1907, NULL, '1.0000', '8.1600', '8.1600', '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 (22652, '2021-10-04', 2060, 21823, 1907, 20583, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '94.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 (22653, '2021-10-04', 1621, 21824, 1907, 7385, '-5.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 (22654, '2021-10-04', 1621, 21824, 1907, NULL, '6.0000', '6.6000', '6.6000', '9.0000', '9.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 (22655, '2021-10-04', 1602, 21825, 1907, 5897, '-12.0000', '6.7859', '6.7859', '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 (22656, '2021-10-04', 1602, 21825, 1907, NULL, '13.0000', '6.7859', '6.7859', '10.0000', '10.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 (22657, '2021-10-04', 1532, 21826, 1907, 22261, '2.0000', '0.8000', '0.8000', '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 (22658, '2021-10-04', 2293, 21827, 1907, 22262, '1.0000', '1.4400', '1.4400', '2.0000', '2.0000', '90.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 (22659, '2021-10-04', 1809, 21828, 1908, 24206, '1.0000', '9.1880', '9.1880', '13.0000', '13.0000', '0.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 (22660, '2021-10-04', 1523, 21829, 1908, NULL, '1.0000', '1.0061', '1.0061', '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 (22661, '2021-10-04', 2713, 21830, 1908, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22662, '2021-10-04', 2699, 21831, 1908, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22663, '2021-10-04', 2293, 21832, 1908, 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 (22664, '2021-10-04', 1863, 21833, 1908, NULL, '1.0000', '1.4033', '1.4033', '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 (22665, '2021-10-04', 1854, 21834, 1908, 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 (22666, '2021-10-04', 2299, 21835, 1909, 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 (22667, '2021-10-04', 1409, 21836, 1909, 24953, '1.0000', '13.0000', '13.0000', '18.0000', '18.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 (22668, '2021-10-04', 3067, 21837, 1909, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '33.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 (22669, '2021-10-04', 1690, 21838, 1909, 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 (22670, '2021-10-04', 7590, 21839, 1909, NULL, '1.0000', '4.3600', '4.3600', '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 (22671, '2021-10-04', 2699, 21840, 1909, 36100, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22672, '2021-10-04', 2315, 21841, 1909, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22673, '2021-10-04', 3067, 21842, 1909, 25025, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '32.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 (22674, '2021-10-04', 2984, 21843, 1910, NULL, '1.0000', '3.1500', '3.1500', '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 (22675, '2021-10-04', 1840, 21844, 1910, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '182.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22676, '2021-10-04', 7328, 21845, 1910, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22677, '2021-10-04', 2289, 21846, 1910, 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 (22678, '2021-10-04', 7411, 21847, 1910, NULL, '1.0000', '1.3500', '1.3500', '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 (22679, '2021-10-04', 2060, 21848, 1910, 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 (22680, '2021-10-04', 8355, 21849, 1910, NULL, '1.0000', '21.7500', '21.7500', '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 (22681, '2021-10-04', 7576, 21850, 1910, NULL, '1.0000', '6.9100', '6.9100', '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 (22682, '2021-10-04', 7317, 21851, 1910, NULL, '1.0000', '19.5500', '19.5500', '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 (22683, '2021-10-04', 7928, 21852, 1910, NULL, '1.0000', '1.2000', '1.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 (22684, '2021-10-04', 7965, 21853, 1910, NULL, '6.0000', '5.6100', '5.6100', '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 (22685, '2021-10-04', 7671, 21854, 1910, NULL, '2.0000', '15.5000', '15.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 (22686, '2021-10-04', 8166, 21855, 1910, NULL, '1.0000', '4.6000', '4.6000', '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 (22687, '2021-10-04', 7780, 21856, 1910, NULL, '1.0000', '2.6000', '2.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 (22688, '2021-10-04', 7753, 21857, 1910, NULL, '1.0000', '3.1400', '3.1400', '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 (22689, '2021-10-04', 1576, 21858, 1910, NULL, '1.0000', '7.0500', '7.0500', '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 (22690, '2021-10-04', 8166, 21859, 1910, NULL, '1.0000', '4.6000', '4.6000', '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 (22691, '2021-10-04', 9337, 21860, 1910, 36077, '1.0000', '6.8067', '6.8067', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22692, '2021-10-04', 7318, 21861, 1910, 35234, '1.0000', '12.3093', '12.3093', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22693, '2021-10-04', 2984, 21862, 1910, NULL, '1.0000', '3.1500', '3.1500', '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 (22694, '2021-10-04', 7402, 21863, 1910, 30028, '1.0000', '116.3300', '116.3300', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22695, '2021-10-04', 7491, 21864, 1910, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22696, '2021-10-04', 7914, 21865, 1910, NULL, '1.0000', '19.0000', '19.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 (22697, '2021-10-04', 7750, 21866, 1910, 36028, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22698, '2021-10-04', 8097, 21867, 1910, NULL, '2.0000', '3.3994', '3.3994', '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 (22699, '2021-10-04', 8102, 21868, 1910, NULL, '1.0000', '1.7000', '1.7000', '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 (22700, '2021-10-04', 7822, 21869, 1910, NULL, '1.0000', '5.6000', '5.6000', '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 (22701, '2021-10-04', 1856, 21870, 1910, 35231, '1.0000', '4.3888', '4.3888', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22702, '2021-10-04', 9092, 21871, 1910, NULL, '1.0000', '5.2900', '5.2900', '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 (22703, '2021-10-04', 7641, 21872, 1910, NULL, '1.0000', '6.5038', '6.5038', '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 (22704, '2021-10-04', 7518, 21873, 1910, NULL, '1.0000', '-21.7700', '-21.7700', '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 (22705, '2021-10-04', 1557, 21874, 1910, NULL, '1.0000', '7.8800', '7.8800', '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 (22706, '2021-10-04', 1904, 21875, 1910, 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 (22707, '2021-10-04', 7457, 21876, 1910, 36031, '1.0000', '2.5902', '2.5902', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22708, '2021-10-04', 2060, 21877, 1910, 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 (22709, '2021-10-04', 7608, 21878, 1910, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22710, '2021-10-04', 1827, 21879, 1910, NULL, '1.0000', '0.2000', '0.2000', '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 (22711, '2021-10-04', 7633, 21880, 1910, NULL, '1.0000', '2.8700', '2.8700', '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 (22712, '2021-10-04', 2287, 21881, 1910, NULL, '4.0000', '2.3000', '2.3000', '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 (22713, '2021-10-04', 8328, 21882, 1910, NULL, '1.0000', '8.0882', '8.0882', '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 (22714, '2021-10-04', 7588, 21883, 1910, NULL, '1.0000', '7.6111', '7.6111', '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 (22715, '2021-10-04', 7743, 21884, 1910, NULL, '2.0000', '7.3900', '7.3900', '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 (22716, '2021-10-04', 2060, 21885, 1910, 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 (22717, '2021-10-04', 7411, 21886, 1910, NULL, '5.0000', '1.3500', '1.3500', '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 (22718, '2021-10-04', 7671, 21887, 1910, NULL, '1.0000', '15.5000', '15.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 (22719, '2021-10-04', 1338, 21888, 1910, 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 (22720, '2021-10-04', 8277, 21889, 1910, 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 (22721, '2021-10-04', 2283, 21890, 1910, 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 (22722, '2021-10-04', 7672, 21891, 1910, NULL, '1.0000', '1.0200', '1.0200', '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 (22723, '2021-10-04', 7411, 21892, 1910, NULL, '1.0000', '1.3500', '1.3500', '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 (22724, '2021-10-04', 7728, 21893, 1910, 32806, '1.0000', '3.1200', '3.1200', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22725, '2021-10-04', 7674, 21894, 1910, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '224.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22726, '2021-10-04', 1855, 21895, 1910, 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 (22727, '2021-10-04', 7530, 21896, 1910, NULL, '1.0000', '5.7200', '5.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 (22728, '2021-10-04', 7491, 21897, 1910, 30174, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22729, '2021-10-04', 7640, 21898, 1910, NULL, '1.0000', '5.8900', '5.8900', '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 (22730, '2021-10-04', 9422, 21899, 1910, NULL, '1.0000', '4.3200', '4.3200', '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 (22731, '2021-10-04', 2384, 21900, 1910, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (22732, '2021-10-04', 7674, 21901, 1910, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '224.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22733, '2021-10-04', 7411, 21902, 1910, NULL, '1.0000', '1.3500', '1.3500', '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 (22734, '2021-10-04', 7509, 21903, 1910, 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 (22735, '2021-10-04', 7709, 21904, 1910, NULL, '1.0000', '35.8000', '35.8000', '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 (22736, '2021-10-04', 9254, 21905, 1910, NULL, '1.0000', '20.0000', '20.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 (22737, '2021-10-04', 8166, 21906, 1910, NULL, '1.0000', '4.6000', '4.6000', '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 (22738, '2021-10-04', 1596, 21907, 1910, 36079, '1.0000', '2.1642', '2.1642', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22739, '2021-10-04', 9214, 21908, 1910, NULL, '1.0000', '7.4538', '7.4538', '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 (22740, '2021-10-04', 7593, 21909, 1910, 34551, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22741, '2021-10-04', 9391, 21910, 1910, NULL, '1.0000', '3.0000', '3.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 (22742, '2021-10-04', 8135, 21911, 1910, NULL, '1.0000', '13.9000', '13.9000', '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 (22743, '2021-10-04', 8810, 21912, 1910, NULL, '1.0000', '1.9200', '1.9200', '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 (22744, '2021-10-04', 7951, 21913, 1910, NULL, '1.0000', '14.6000', '14.6000', '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 (22745, '2021-10-04', 9028, 21914, 1910, NULL, '1.0000', '9.0000', '9.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 (22746, '2021-10-04', 7532, 21915, 1910, NULL, '1.0000', '9.0500', '9.0500', '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 (22747, '2021-10-04', 8085, 21916, 1910, NULL, '4.0000', '14.0000', '14.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 (22748, '2021-10-04', 9275, 21917, 1910, NULL, '1.0000', '6.3000', '6.3000', '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 (22749, '2021-10-04', 7415, 21918, 1910, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22750, '2021-10-04', 7411, 21919, 1910, NULL, '1.0000', '1.3500', '1.3500', '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 (22751, '2021-10-04', 8015, 21920, 1910, NULL, '7.0000', '4.1466', '4.1466', '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 (22752, '2021-10-04', 7518, 21921, 1910, NULL, '1.0000', '-21.7700', '-21.7700', '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 (22753, '2021-10-04', 7641, 21922, 1910, NULL, '1.0000', '6.5038', '6.5038', '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 (22754, '2021-10-04', 8072, 21923, 1910, NULL, '10.0000', '20.0000', '20.0000', '8.6000', '8.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 (22755, '2021-10-04', 9092, 21924, 1910, NULL, '1.0000', '5.2900', '5.2900', '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 (22756, '2021-10-04', 2374, 21925, 1910, NULL, '1.0000', '6.1000', '6.1000', '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 (22757, '2021-10-04', 7355, 21926, 1910, NULL, '1.0000', '11.6400', '11.6400', '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 (22758, '2021-10-04', 7411, 21927, 1910, NULL, '1.0000', '1.3500', '1.3500', '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 (22759, '2021-10-04', 1854, 21928, 1911, 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 (22760, '2021-10-04', 8746, 21929, 1911, NULL, '1.0000', '3.8000', '3.8000', '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 (22761, '2021-10-04', 1602, 21930, 1912, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '57.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22762, '2021-10-04', 2260, 21931, 1912, NULL, '1.0000', '4.2000', '4.2000', '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 (22763, '2021-10-04', 2662, 21932, 1912, 31983, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22764, '2021-10-04', 3017, 21933, 1912, NULL, '1.0000', '3.9000', '3.9000', '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 (22765, '2021-10-04', 1596, 21934, 1912, NULL, '1.0000', '2.5700', '2.5700', '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 (22766, '2021-10-04', 2541, 21935, 1912, 12384, '1.0000', '9.6622', '9.6622', '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 (22767, '2021-10-04', 1521, 21936, 1912, 31985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22768, '2021-10-04', 2315, 21937, 1912, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '244.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22769, '2021-10-04', 1812, 21938, 1912, 36378, '1.0000', '7.9190', '7.9190', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22770, '2021-10-04', 1346, 21939, 1912, 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 (22771, '2021-10-04', 2660, 21940, 1912, 18686, '5.0000', '0.7000', '0.7000', '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 (22772, '2021-10-04', 2286, 21941, 1912, 18659, '2.0000', '4.3000', '4.3000', '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 (22773, '2021-10-04', 2395, 21942, 1913, NULL, '1.0000', '27.0000', '27.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 (22774, '2021-10-04', 2334, 21943, 1913, 36371, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22775, '2021-10-04', 1346, 21944, 1913, 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 (22776, '2021-10-04', 1647, 21945, 1913, 29789, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22777, '2021-10-04', 7848, 21946, 1914, NULL, '1.0000', '1.3500', '1.3500', '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 (22778, '2021-10-04', 1966, 21947, 1915, 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 (22779, '2021-10-04', 8767, 21948, 1915, NULL, '1.0000', '6.6900', '6.6900', '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 (22780, '2021-10-05', 7317, 21949, 1916, NULL, '1.0000', '19.5500', '19.5500', '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 (22781, '2021-10-05', 7675, 21950, 1916, NULL, '1.0000', '11.4300', '11.4300', '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 (22782, '2021-10-05', 1819, 21951, 1917, 33345, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22783, '2021-10-05', 1447, 21952, 1917, 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 (22784, '2021-10-05', 3058, 21953, 1917, 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 (22785, '2021-10-05', 9177, 21954, 1917, 30681, '5.0000', '0.8000', '0.8000', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22786, '2021-10-05', 7472, 21955, 1917, NULL, '1.0000', '4.1000', '4.1000', '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 (22787, '2021-10-05', 1425, 21956, 1917, 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 (22788, '2021-10-05', 2242, 21957, 1917, NULL, '2.0000', '0.6028', '0.6028', '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 (22789, '2021-10-05', 1501, 21958, 1917, NULL, '1.0000', '2.2111', '2.2111', '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 (22790, '2021-10-05', 2366, 21959, 1917, 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 (22791, '2021-10-05', 7708, 21960, 1917, NULL, '1.0000', '6.1400', '6.1400', '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 (22792, '2021-10-05', 1855, 21961, 1917, 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 (22793, '2021-10-05', 2509, 21962, 1917, 34580, '1.0000', '24.5800', '24.5800', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22794, '2021-10-05', 1394, 21963, 1917, 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 (22795, '2021-10-05', 1576, 21964, 1917, NULL, '1.0000', '7.0500', '7.0500', '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 (22796, '2021-10-05', 1562, 21965, 1917, NULL, '1.0000', '5.1300', '5.1300', '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 (22797, '2021-10-05', 2332, 21966, 1917, NULL, '1.0000', '5.0900', '5.0900', '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 (22798, '2021-10-05', 7651, 21967, 1917, NULL, '1.0000', '5.0000', '5.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 (22799, '2021-10-05', 2106, 21968, 1917, 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 (22800, '2021-10-05', 2250, 21969, 1917, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22801, '2021-10-05', 2169, 21970, 1917, NULL, '1.0000', '1.1484', '1.1484', '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 (22802, '2021-10-05', 2398, 21971, 1917, 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 (22803, '2021-10-05', 7954, 21972, 1917, 34017, '4.0000', '11.1369', '11.1369', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22804, '2021-10-05', 2655, 21973, 1917, 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 (22805, '2021-10-05', 2713, 21974, 1917, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22806, '2021-10-05', 8654, 21975, 1918, NULL, '1.0000', '5.8000', '5.8000', '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 (22807, '2021-10-05', 2102, 21976, 1919, 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 (22808, '2021-10-05', 7806, 21977, 1919, NULL, '5.0000', '14.0000', '14.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 (22809, '2021-10-05', 1837, 21978, 1919, 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 (22810, '2021-10-05', 8097, 21979, 1919, NULL, '3.0000', '3.3994', '3.3994', '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 (22811, '2021-10-05', 2005, 21980, 1919, NULL, '1.0000', '2.3300', '2.3300', '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 (22812, '2021-10-05', 2648, 21981, 1919, NULL, '1.0000', '5.4000', '5.4000', '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 (22813, '2021-10-05', 8136, 21982, 1919, NULL, '1.0000', '29.3500', '29.3500', '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 (22814, '2021-10-05', 9193, 21983, 1919, NULL, '2.0000', '6.7400', '6.7400', '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 (22815, '2021-10-05', 7547, 21984, 1919, NULL, '4.0000', '0.0000', '0.0000', '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 (22816, '2021-10-05', 8622, 21985, 1919, 33733, '1.0000', '-29.2060', '-29.2060', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22817, '2021-10-05', 8247, 21986, 1919, NULL, '2.0000', '10.0000', '10.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 (22818, '2021-10-05', 1947, 21987, 1919, 36665, '1.0000', '6615.3206', '6615.3206', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22819, '2021-10-05', 7509, 21988, 1919, 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 (22820, '2021-10-05', 8539, 21989, 1919, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '55.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22821, '2021-10-05', 7775, 21990, 1919, NULL, '2.0000', '7.9800', '7.9800', '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 (22822, '2021-10-05', 7354, 21991, 1919, NULL, '2.0000', '18.0000', '18.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 (22823, '2021-10-05', 7448, 21992, 1919, NULL, '1.0000', '15.8500', '15.8500', '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 (22824, '2021-10-05', 9393, 21993, 1919, NULL, '1.0000', '15.0000', '15.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 (22825, '2021-10-05', 2967, 21994, 1919, 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 (22826, '2021-10-05', 7482, 21995, 1919, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '30.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22827, '2021-10-05', 7551, 21996, 1919, NULL, '1.0000', '1.2700', '1.2700', '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 (22828, '2021-10-05', 7914, 21997, 1919, NULL, '1.0000', '19.0000', '19.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 (22829, '2021-10-05', 7411, 21998, 1919, NULL, '1.0000', '1.3500', '1.3500', '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 (22830, '2021-10-05', 9272, 21999, 1919, NULL, '1.0000', '3.1000', '3.1000', '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 (22831, '2021-10-05', 8735, 22000, 1919, NULL, '1.0000', '5.6000', '5.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 (22832, '2021-10-05', 7758, 22001, 1919, NULL, '1.0000', '10.8500', '10.8500', '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 (22833, '2021-10-05', 7881, 22002, 1919, NULL, '1.0000', '32.7700', '32.7700', '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 (22834, '2021-10-05', 2580, 22003, 1919, 36566, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22835, '2021-10-05', 9563, 22004, 1919, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22836, '2021-10-05', 1602, 22005, 1920, 5897, '-13.0000', '6.7859', '6.7859', '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 (22837, '2021-10-05', 1602, 22005, 1920, NULL, '14.0000', '6.7859', '6.7859', '10.0000', '10.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 (22838, '2021-10-05', 2712, 22006, 1920, 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 (22839, '2021-10-05', 2135, 22007, 1920, 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 (22840, '2021-10-05', 1945, 22008, 1920, 5559, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.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 (22841, '2021-10-05', 1839, 22009, 1920, 8734, '-7.0000', '6.1500', '6.1500', '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 (22842, '2021-10-05', 1839, 22009, 1920, NULL, '8.0000', '6.1500', '6.1500', '9.0000', '9.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 (22843, '2021-10-05', 1846, 22010, 1920, 12032, '-2.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 (22844, '2021-10-05', 1846, 22010, 1920, NULL, '3.0000', '12.0000', '12.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 (22845, '2021-10-05', 1826, 22011, 1920, 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 (22846, '2021-10-05', 2272, 22012, 1920, 2932, '-8.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 (22847, '2021-10-05', 2272, 22012, 1920, NULL, '10.0000', '5.5000', '5.5000', '7.5000', '7.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 (22848, '2021-10-05', 2285, 22013, 1920, 2945, '-5.0000', '35.8000', '35.8000', '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 (22849, '2021-10-05', 2285, 22013, 1920, NULL, '6.0000', '35.8000', '35.8000', '49.0000', '49.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 (22850, '2021-10-05', 1504, 22014, 1920, 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 (22851, '2021-10-05', 2265, 22015, 1920, NULL, '1.0000', '28.0000', '28.0000', '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 (22852, '2021-10-05', 2072, 22016, 1920, 5579, '-1.0000', '8.1200', '8.1200', '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 (22853, '2021-10-05', 2072, 22016, 1920, NULL, '2.0000', '8.1200', '8.1200', '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 (22854, '2021-10-05', 2345, 22017, 1920, 3848, '1.0000', '7.6400', '7.6400', '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 (22855, '2021-10-05', 2876, 22018, 1920, 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 (22856, '2021-10-05', 1409, 22019, 1920, 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 (22857, '2021-10-05', 2763, 22020, 1920, 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 (22858, '2021-10-05', 2476, 22021, 1920, 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 (22859, '2021-10-05', 2477, 22022, 1920, 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 (22860, '2021-10-05', 2602, 22023, 1920, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '13.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 (22861, '2021-10-05', 2697, 22024, 1920, 18713, '1.0000', '3.0000', '3.0000', '5.0000', '5.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 (22862, '2021-10-05', 2481, 22025, 1920, 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 (22863, '2021-10-05', 2482, 22026, 1920, 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 (22864, '2021-10-05', 2483, 22027, 1920, 18711, '1.0000', '4.0000', '4.0000', '6.0000', '6.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 (22865, '2021-10-05', 3041, 22028, 1920, 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 (22866, '2021-10-05', 9559, 22029, 1920, NULL, '2.0000', '12.0000', '12.0000', '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 (22867, '2021-10-05', 2036, 22030, 1920, 4277, '-3.0000', '8.0000', '8.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 (22868, '2021-10-05', 2036, 22030, 1920, NULL, '5.0000', '8.0000', '8.0000', '10.0000', '10.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 (22869, '2021-10-05', 2515, 22031, 1920, 5915, '-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 (22870, '2021-10-05', 2515, 22031, 1920, NULL, '2.0000', '16.0000', '16.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 (22871, '2021-10-05', 9520, 22032, 1920, 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 (22872, '2021-10-05', 2575, 22033, 1920, 22338, '1.0000', '12.8500', '12.8500', '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 (22873, '2021-10-05', 2899, 22034, 1920, NULL, '1.0000', '12.0000', '12.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 (22874, '2021-10-05', 2900, 22035, 1920, 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 (22875, '2021-10-05', 2897, 22036, 1920, NULL, '1.0000', '18.0000', '18.0000', '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 (22876, '2021-10-05', 9442, 22037, 1920, NULL, '1.0000', '30.0000', '30.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 (22877, '2021-10-05', 9432, 22038, 1920, NULL, '1.0000', '30.0000', '30.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 (22878, '2021-10-05', 2266, 22039, 1920, 2801, '-3.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 (22879, '2021-10-05', 2266, 22039, 1920, NULL, '4.0000', '6.4900', '6.4900', '11.0000', '11.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 (22880, '2021-10-05', 9461, 22040, 1920, NULL, '1.0000', '1.6000', '1.6000', '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 (22881, '2021-10-05', 2279, 22041, 1920, 2939, '-10.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 (22882, '2021-10-05', 2279, 22041, 1920, NULL, '11.0000', '2.7000', '2.7000', '4.0000', '4.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 (22883, '2021-10-05', 7473, 22042, 1921, NULL, '10.0000', '9.2200', '9.2200', '0.6000', '0.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 (22884, '2021-10-05', 7354, 22043, 1921, NULL, '2.0000', '18.0000', '18.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 (22885, '2021-10-05', 7703, 22044, 1921, NULL, '1.0000', '22.9900', '22.9900', '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 (22886, '2021-10-05', 7609, 22045, 1921, NULL, '1.0000', '4.3300', '4.3300', '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 (22887, '2021-10-05', 7715, 22046, 1921, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22888, '2021-10-05', 7753, 22047, 1921, NULL, '1.0000', '3.1400', '3.1400', '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 (22889, '2021-10-05', 7704, 22048, 1921, NULL, '1.0000', '8.7000', '8.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 (22890, '2021-10-05', 8638, 22049, 1922, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22891, '2021-10-05', 2277, 22050, 1923, 2937, '-7.0000', '0.7800', '0.7800', '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 (22892, '2021-10-05', 2277, 22050, 1923, NULL, '8.0000', '0.7800', '0.7800', '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 (22893, '2021-10-05', 2029, 22051, 1923, NULL, '1.0000', '13.0000', '13.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 (22894, '2021-10-05', 8773, 22052, 1923, 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 (22895, '2021-10-05', 1409, 22053, 1923, 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 (22896, '2021-10-05', 8063, 22054, 1924, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '32.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22897, '2021-10-05', 7415, 22055, 1924, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22898, '2021-10-05', 7534, 22056, 1924, 30186, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22899, '2021-10-05', 7530, 22057, 1924, NULL, '1.0000', '5.7200', '5.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 (22900, '2021-10-05', 1947, 22058, 1924, 36665, '2.0000', '6615.3206', '6615.3206', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22901, '2021-10-05', 7892, 22059, 1924, NULL, '1.0000', '4.2000', '4.2000', '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 (22902, '2021-10-05', 8826, 22060, 1924, NULL, '1.0000', '6.0000', '6.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 (22903, '2021-10-05', 9121, 22061, 1924, NULL, '1.0000', '30.0000', '30.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 (22904, '2021-10-05', 7820, 22062, 1925, NULL, '1.0000', '8.4000', '8.4000', '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 (22905, '2021-10-05', 8015, 22063, 1926, NULL, '10.0000', '3.7000', '3.7000', '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 (22906, '2021-10-05', 2643, 22064, 1926, 36652, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22907, '2021-10-05', 1912, 22065, 1926, NULL, '2.0000', '0.6591', '0.6591', '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 (22908, '2021-10-05', 1432, 22066, 1926, NULL, '1.0000', '9.9497', '9.9497', '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 (22909, '2021-10-05', 2964, 22067, 1926, NULL, '1.0000', '6.6000', '6.6000', '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 (22910, '2021-10-05', 2951, 22068, 1926, 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 (22911, '2021-10-05', 1841, 22069, 1926, 34025, '4.0000', '0.2601', '0.2601', '0.5000', '0.5000', '78.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22912, '2021-10-05', 8208, 22070, 1926, NULL, '4.0000', '33.0000', '33.0000', '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 (22913, '2021-10-05', 7376, 22071, 1926, NULL, '1.0000', '141.7100', '141.7100', '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 (22914, '2021-10-05', 1840, 22072, 1926, 19856, '6.0000', '0.2400', '0.2400', '0.3000', '0.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 (22915, '2021-10-05', 2951, 22073, 1926, 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 (22916, '2021-10-05', 8208, 22074, 1926, NULL, '2.0000', '33.0000', '33.0000', '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 (22917, '2021-10-05', 2289, 22075, 1926, 13744, '2.0000', '0.2300', '0.2300', '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 (22918, '2021-10-05', 1748, 22076, 1926, NULL, '2.0000', '0.3200', '0.3200', '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 (22919, '2021-10-05', 1840, 22077, 1926, 19856, '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 (22920, '2021-10-05', 2414, 22078, 1926, NULL, '2.0000', '3.4000', '3.4000', '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 (22921, '2021-10-05', 2004, 22079, 1926, 33374, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22922, '2021-10-05', 2951, 22080, 1926, 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 (22923, '2021-10-05', 3067, 22081, 1926, 25025, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.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 (22924, '2021-10-05', 2293, 22082, 1926, 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 (22925, '2021-10-05', 7482, 22083, 1926, 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 (22926, '2021-10-05', 2379, 22084, 1926, NULL, '1.0000', '1.8000', '1.8000', '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 (22927, '2021-10-05', 2241, 22085, 1926, 19367, '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 (22928, '2021-10-05', 1621, 22086, 1926, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (22929, '2021-10-05', 1863, 22087, 1926, NULL, '1.0000', '1.4033', '1.4033', '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 (22930, '2021-10-05', 1667, 22088, 1926, NULL, '1.0000', '1404.9249', '1404.9249', '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 (22931, '2021-10-05', 2393, 22089, 1926, 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 (22932, '2021-10-05', 7585, 22090, 1926, NULL, '1.0000', '3.9600', '3.9600', '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 (22933, '2021-10-05', 2250, 22091, 1926, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22934, '2021-10-05', 1863, 22092, 1926, NULL, '1.0000', '1.4033', '1.4033', '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 (22935, '2021-10-05', 2643, 22093, 1927, 36652, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22936, '2021-10-05', 2237, 22094, 1927, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22937, '2021-10-05', 3058, 22095, 1927, 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 (22938, '2021-10-05', 1863, 22096, 1927, NULL, '2.0000', '1.4033', '1.4033', '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 (22939, '2021-10-05', 9503, 22097, 1927, 36638, '1.0000', '6.2638', '6.2638', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22940, '2021-10-05', 8638, 22098, 1927, 30658, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22941, '2021-10-05', 7659, 22099, 1927, NULL, '1.0000', '5.9700', '5.9700', '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 (22942, '2021-10-05', 2821, 22100, 1927, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22943, '2021-10-05', 2384, 22101, 1927, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (22944, '2021-10-05', 1501, 22102, 1927, NULL, '1.0000', '2.2111', '2.2111', '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 (22945, '2021-10-05', 1871, 22103, 1927, 33359, '1.0000', '11.7000', '11.7000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22946, '2021-10-05', 1702, 22104, 1927, NULL, '1.0000', '315.0900', '315.0900', '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 (22947, '2021-10-05', 2169, 22105, 1927, NULL, '2.0000', '1.1484', '1.1484', '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 (22948, '2021-10-05', 7641, 22106, 1927, NULL, '1.0000', '1.9000', '1.9000', '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 (22949, '2021-10-05', 8595, 22107, 1927, 29628, '1.0000', '4.2100', '4.2100', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22950, '2021-10-05', 9474, 22108, 1927, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22951, '2021-10-05', 7819, 22109, 1927, NULL, '1.0000', '9.5000', '9.5000', '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 (22952, '2021-10-05', 1580, 22110, 1927, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22953, '2021-10-05', 2379, 22111, 1927, NULL, '1.0000', '1.8000', '1.8000', '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 (22954, '2021-10-05', 8163, 22112, 1928, NULL, '1.0000', '4.9000', '4.9000', '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 (22955, '2021-10-05', 9482, 22113, 1928, 32547, '4.0000', '0.5000', '0.5000', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22956, '2021-10-05', 2095, 22114, 1928, 34658, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22957, '2021-10-05', 2992, 22115, 1928, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (22958, '2021-10-05', 7317, 22116, 1928, NULL, '1.0000', '19.5500', '19.5500', '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 (22959, '2021-10-05', 8596, 22117, 1928, NULL, '1.0000', '17.0000', '17.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 (22960, '2021-10-05', 7608, 22118, 1929, NULL, '1.0000', '6.9800', '6.9800', '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 (22961, '2021-10-05', 9371, 22119, 1929, NULL, '1.0000', '14.7000', '14.7000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22962, '2021-10-05', 2903, 22120, 1929, 18664, '1.0000', '32.0000', '32.0000', '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 (22963, '2021-10-05', 2268, 22121, 1929, 32026, '6.0000', '7.3000', '7.3000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22964, '2021-10-05', 1573, 22122, 1929, NULL, '1.0000', '17.4802', '17.4802', '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 (22965, '2021-10-05', 1605, 22123, 1929, 17836, '1.0000', '24.8500', '24.8500', '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 (22966, '2021-10-05', 1332, 22124, 1929, 3371, '2.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 (22967, '2021-10-05', 2169, 22125, 1929, 36390, '1.0000', '1.0361', '1.0361', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22968, '2021-10-05', 2167, 22126, 1929, 36389, '3.0000', '2.2000', '2.2000', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22969, '2021-10-05', 2713, 22127, 1929, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22970, '2021-10-05', 1855, 22128, 1929, 4986, '1.0000', '1.4000', '1.4000', '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 (22971, '2021-10-05', 2712, 22129, 1929, 35941, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22972, '2021-10-05', 2457, 22130, 1929, 36340, '1.0000', '20.1380', '20.1380', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22973, '2021-10-05', 1546, 22131, 1929, 32870, '4.0000', '-69.3335', '-69.3335', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22974, '2021-10-05', 2384, 22132, 1929, 29813, '1.0000', '0.2683', '0.2683', '0.7000', '0.7000', '87.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22975, '2021-10-05', 2643, 22133, 1929, 10577, '1.0000', '0.8700', '0.8700', '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 (22976, '2021-10-05', 2271, 22134, 1929, 36363, '1.0000', '12.0000', '12.0000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22977, '2021-10-05', 2315, 22135, 1929, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '243.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22978, '2021-10-05', 2315, 22136, 1929, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '243.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22979, '2021-10-05', 2060, 22137, 1929, 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 (22980, '2021-10-05', 1441, 22138, 1929, 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 (22981, '2021-10-05', 1564, 22139, 1929, 10386, '10.0000', '90.0000', '90.0000', '4.0000', '4.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 (22982, '2021-10-05', 1449, 22140, 1929, 5624, '2.0000', '0.6600', '0.6600', '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 (22983, '2021-10-05', 2068, 22141, 1929, 33034, '1.0000', '12.3192', '12.3192', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22984, '2021-10-05', 2315, 22142, 1929, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '243.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22985, '2021-10-05', 1966, 22143, 1929, 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 (22986, '2021-10-05', 2713, 22144, 1929, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22987, '2021-10-05', 2712, 22145, 1929, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22988, '2021-10-05', 2730, 22146, 1929, 21547, '2.0000', '1.2000', '1.2000', '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 (22989, '2021-10-05', 2060, 22147, 1929, 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 (22990, '2021-10-05', 1822, 22148, 1929, 11174, '1.0000', '2.9682', '2.9682', '3.5000', '3.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 (22991, '2021-10-05', 2908, 22149, 1929, 18685, '1.0000', '0.2700', '0.2700', '0.5000', '0.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 (22992, '2021-10-05', 2009, 22150, 1929, 6436, '1.0000', '18.0000', '18.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 (22993, '2021-10-05', 8065, 22151, 1929, NULL, '1.0000', '4.9800', '4.9800', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22994, '2021-10-05', 2135, 22152, 1929, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22995, '2021-10-05', 2245, 22153, 1929, 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 (22996, '2021-10-05', 1427, 22154, 1930, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (22997, '2021-10-05', 7713, 22155, 1930, NULL, '7.0000', '4.4000', '4.4000', '0.6000', '0.6000', '-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 (22998, '2021-10-05', 2384, 22156, 1930, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (22999, '2021-10-05', 8457, 22157, 1930, NULL, '1.0000', '0.7500', '0.7500', '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 (23000, '2021-10-05', 7609, 22158, 1930, NULL, '1.0000', '4.3300', '4.3300', '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 (23001, '2021-10-05', 7409, 22159, 1930, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '51.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23002, '2021-10-05', 8172, 22160, 1930, NULL, '1.0000', '40.7000', '40.7000', '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 (23003, '2021-10-05', 7448, 22161, 1930, NULL, '1.0000', '15.8500', '15.8500', '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 (23004, '2021-10-05', 7564, 22162, 1930, 30930, '2.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23005, '2021-10-05', 7672, 22163, 1930, NULL, '1.0000', '1.0200', '1.0200', '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 (23006, '2021-10-05', 7368, 22164, 1930, 30004, '1.0000', '11.4000', '11.4000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23007, '2021-10-05', 7457, 22165, 1930, 36031, '1.0000', '2.5902', '2.5902', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23008, '2021-10-05', 9401, 22166, 1930, NULL, '1.0000', '3.5000', '3.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 (23009, '2021-10-05', 7444, 22167, 1930, 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 (23010, '2021-10-05', 7674, 22168, 1930, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '222.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23011, '2021-10-05', 7317, 22169, 1930, NULL, '1.0000', '19.5500', '19.5500', '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 (23012, '2021-10-05', 7671, 22170, 1930, NULL, '1.0000', '15.5000', '15.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 (23013, '2021-10-05', 7782, 22171, 1930, NULL, '3.0000', '5.0000', '5.0000', '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 (23014, '2021-10-05', 7725, 22172, 1930, NULL, '1.0000', '1.6600', '1.6600', '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 (23015, '2021-10-05', 7772, 22173, 1930, 35181, '1.0000', '32.2400', '32.2400', '43.0000', '43.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23016, '2021-10-05', 7780, 22174, 1930, NULL, '1.0000', '2.6000', '2.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 (23017, '2021-10-05', 2574, 22175, 1930, 36095, '10.0000', '1.5800', '1.5800', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23018, '2021-10-05', 1837, 22176, 1930, 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 (23019, '2021-10-05', 1757, 22177, 1930, 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 (23020, '2021-10-05', 7678, 22178, 1930, NULL, '1.0000', '21.1800', '21.1800', '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 (23021, '2021-10-05', 7532, 22179, 1930, NULL, '1.0000', '9.0500', '9.0500', '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 (23022, '2021-10-05', 8903, 22180, 1930, NULL, '1.0000', '12.0000', '12.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 (23023, '2021-10-05', 9498, 22181, 1930, NULL, '1.0000', '12.5000', '12.5000', '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 (23024, '2021-10-05', 8756, 22182, 1930, NULL, '1.0000', '5.9323', '5.9323', '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 (23025, '2021-10-05', 7672, 22183, 1930, NULL, '1.0000', '1.0200', '1.0200', '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 (23026, '2021-10-05', 2060, 22184, 1930, 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 (23027, '2021-10-05', 9098, 22185, 1930, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23028, '2021-10-05', 7703, 22186, 1930, NULL, '2.0000', '22.9900', '22.9900', '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 (23029, '2021-10-05', 9420, 22187, 1930, NULL, '1.0000', '5.5900', '5.5900', '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 (23030, '2021-10-05', 9092, 22188, 1930, NULL, '1.0000', '5.2900', '5.2900', '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 (23031, '2021-10-05', 1557, 22189, 1930, NULL, '1.0000', '7.8800', '7.8800', '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 (23032, '2021-10-05', 7675, 22190, 1930, NULL, '1.0000', '11.4300', '11.4300', '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 (23033, '2021-10-05', 7749, 22191, 1930, 36051, '1.0000', '-3.8876', '-3.8876', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23034, '2021-10-05', 2060, 22192, 1930, 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 (23035, '2021-10-05', 7743, 22193, 1930, NULL, '2.0000', '7.3900', '7.3900', '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 (23036, '2021-10-05', 9456, 22194, 1930, 33755, '3.0000', '3.3200', '3.3200', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23037, '2021-10-05', 8548, 22195, 1930, NULL, '1.0000', '12.0000', '12.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 (23038, '2021-10-05', 8034, 22196, 1930, NULL, '1.0000', '4.8900', '4.8900', '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 (23039, '2021-10-05', 7482, 22197, 1930, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23040, '2021-10-05', 7672, 22198, 1930, NULL, '1.0000', '1.0200', '1.0200', '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 (23041, '2021-10-05', 8166, 22199, 1930, NULL, '3.0000', '4.6000', '4.6000', '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 (23042, '2021-10-05', 7762, 22200, 1930, NULL, '1.0000', '5.1000', '5.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 (23043, '2021-10-05', 8925, 22201, 1930, NULL, '1.0000', '2.4000', '2.4000', '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 (23044, '2021-10-05', 8198, 22202, 1930, NULL, '1.0000', '6.2900', '6.2900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23045, '2021-10-05', 1339, 22203, 1930, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23046, '2021-10-05', 2060, 22204, 1930, 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 (23047, '2021-10-05', 2104, 22205, 1930, NULL, '1.0000', '0.2000', '0.2000', '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 (23048, '2021-10-05', 7709, 22206, 1930, NULL, '2.0000', '35.8000', '35.8000', '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 (23049, '2021-10-05', 7366, 22207, 1930, 30002, '1.0000', '14.9500', '14.9500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23050, '2021-10-05', 7606, 22208, 1930, 34532, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23051, '2021-10-05', 2906, 22209, 1930, 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 (23052, '2021-10-05', 8085, 22210, 1930, NULL, '3.0000', '14.0000', '14.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 (23053, '2021-10-05', 8702, 22211, 1930, NULL, '1.0000', '3.6700', '3.6700', '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 (23054, '2021-10-05', 7391, 22212, 1930, 35192, '1.0000', '-49.8192', '-49.8192', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23055, '2021-10-05', 7750, 22213, 1930, 36028, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23056, '2021-10-05', 7344, 22214, 1930, NULL, '10.0000', '94.2800', '94.2800', '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 (23057, '2021-10-05', 2655, 22215, 1930, 36675, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23058, '2021-10-05', 8359, 22216, 1930, NULL, '1.0000', '16.7750', '16.7750', '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 (23059, '2021-10-05', 7806, 22217, 1930, NULL, '2.0000', '14.0000', '14.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 (23060, '2021-10-05', 2699, 22218, 1930, 36677, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23061, '2021-10-05', 1501, 22219, 1931, NULL, '1.0000', '2.2111', '2.2111', '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 (23062, '2021-10-05', 2060, 22220, 1931, 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 (23063, '2021-10-05', 7744, 22221, 1931, NULL, '1.0000', '1.9000', '1.9000', '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 (23064, '2021-10-05', 1667, 22222, 1931, NULL, '1.0000', '1404.9249', '1404.9249', '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 (23065, '2021-10-05', 2277, 22223, 1931, 34655, '2.0000', '0.8982', '0.8982', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23066, '2021-10-05', 1863, 22224, 1931, NULL, '2.0000', '1.4033', '1.4033', '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 (23067, '2021-10-05', 8608, 22225, 1931, NULL, '1.0000', '0.9000', '0.9000', '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 (23068, '2021-10-05', 1818, 22226, 1931, NULL, '1.0000', '14.8000', '14.8000', '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 (23069, '2021-10-05', 2965, 22227, 1931, NULL, '1.0000', '5.0000', '5.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 (23070, '2021-10-05', 2315, 22228, 1932, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '239.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23071, '2021-10-05', 1651, 22229, 1932, 36377, '2.0000', '6.9057', '6.9057', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23072, '2021-10-05', 1425, 22230, 1932, 36343, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23073, '2021-10-05', 1873, 22231, 1932, 31971, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23074, '2021-10-05', 1837, 22232, 1932, 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 (23075, '2021-10-05', 2290, 22233, 1932, 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 (23076, '2021-10-05', 1656, 22234, 1932, 3252, '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 (23077, '2021-10-05', 1347, 22235, 1932, NULL, '1.0000', '4.0713', '4.0713', '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 (23078, '2021-10-05', 2327, 22236, 1932, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23079, '2021-10-05', 2944, 22237, 1932, 22631, '1.0000', '51.9700', '51.9700', '69.0000', '69.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 (23080, '2021-10-05', 8649, 22238, 1932, NULL, '1.0000', '29.4000', '29.4000', '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 (23081, '2021-10-05', 1368, 22239, 1932, 33212, '1.0000', '-163.5000', '-163.5000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23082, '2021-10-05', 7639, 22240, 1932, 32060, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23083, '2021-10-05', 3029, 22241, 1932, 31981, '1.0000', '6.1916', '6.1916', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23084, '2021-10-05', 1845, 22242, 1932, 33232, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23085, '2021-10-05', 9563, 22243, 1932, 36632, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23086, '2021-10-05', 2221, 22244, 1932, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23087, '2021-10-05', 2279, 22245, 1932, 34672, '1.0000', '2.3230', '2.3230', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23088, '2021-10-05', 2221, 22246, 1933, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23089, '2021-10-05', 1338, 22247, 1934, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23090, '2021-10-05', 1499, 22248, 1935, 31996, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23091, '2021-10-05', 1912, 22249, 1935, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23092, '2021-10-05', 2109, 22250, 1935, 6021, '6.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (23093, '2021-10-06', 2167, 22251, 1936, 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 (23094, '2021-10-06', 7684, 22252, 1936, NULL, '2.0000', '9.0000', '9.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 (23095, '2021-10-06', 2252, 22253, 1936, 33142, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23096, '2021-10-06', 8133, 22254, 1936, 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 (23097, '2021-10-06', 2559, 22255, 1936, 34614, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23098, '2021-10-06', 7335, 22256, 1936, NULL, '1.0000', '10.4000', '10.4000', '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 (23099, '2021-10-06', 8638, 22257, 1936, NULL, '1.0000', '0.5100', '0.5100', '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 (23100, '2021-10-06', 2103, 22258, 1936, 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 (23101, '2021-10-06', 2410, 22259, 1936, 24947, '1.0000', '4.3200', '4.3200', '6.0000', '6.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 (23102, '2021-10-06', 9556, 22260, 1936, 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 (23103, '2021-10-06', 1381, 22261, 1936, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23104, '2021-10-06', 2992, 22262, 1936, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (23105, '2021-10-06', 1619, 22263, 1936, 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 (23106, '2021-10-06', 8638, 22264, 1936, NULL, '1.0000', '0.5100', '0.5100', '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 (23107, '2021-10-06', 8756, 22265, 1936, 32556, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23108, '2021-10-06', 2415, 22266, 1936, 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 (23109, '2021-10-06', 1577, 22267, 1936, NULL, '1.0000', '2.5218', '2.5218', '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 (23110, '2021-10-06', 2410, 22268, 1936, 24947, '1.0000', '4.3200', '4.3200', '6.0000', '6.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 (23111, '2021-10-06', 1554, 22269, 1936, 23115, '1.0000', '2.3063', '2.3063', '5.0000', '5.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 (23112, '2021-10-06', 1889, 22270, 1936, NULL, '3.0000', '1.3000', '1.3000', '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 (23113, '2021-10-06', 2252, 22271, 1936, 33142, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23114, '2021-10-06', 7609, 22272, 1936, NULL, '1.0000', '4.3300', '4.3300', '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 (23115, '2021-10-06', 2076, 22273, 1936, 33136, '1.0000', '8.3000', '8.3000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23116, '2021-10-06', 1946, 22274, 1936, NULL, '1.0000', '1.5500', '1.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 (23117, '2021-10-06', 3017, 22275, 1936, 24959, '1.0000', '3.9000', '3.9000', '6.0000', '6.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 (23118, '2021-10-06', 1912, 22276, 1936, NULL, '1.0000', '0.6591', '0.6591', '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 (23119, '2021-10-06', 1577, 22277, 1936, NULL, '1.0000', '2.5218', '2.5218', '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 (23120, '2021-10-06', 2097, 22278, 1936, 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 (23121, '2021-10-06', 1580, 22279, 1936, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23122, '2021-10-06', 2430, 22280, 1936, 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 (23123, '2021-10-06', 2255, 22281, 1936, 34918, '1.0000', '18.9742', '18.9742', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23124, '2021-10-06', 1510, 22282, 1936, 30670, '1.0000', '9.2456', '9.2456', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23125, '2021-10-06', 2642, 22283, 1937, 36640, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23126, '2021-10-06', 2699, 22284, 1937, 36635, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23127, '2021-10-06', 2656, 22285, 1938, 36634, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23128, '2021-10-06', 2411, 22286, 1938, 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 (23129, '2021-10-06', 2315, 22287, 1938, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23130, '2021-10-06', 1501, 22288, 1938, NULL, '1.0000', '2.2111', '2.2111', '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 (23131, '2021-10-06', 8608, 22289, 1938, NULL, '1.0000', '0.9000', '0.9000', '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 (23132, '2021-10-06', 7341, 22290, 1939, NULL, '1.0000', '24.0100', '24.0100', '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 (23133, '2021-10-06', 1672, 22291, 1940, 7384, '-44.0000', '2.8700', '2.8700', '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 (23134, '2021-10-06', 1672, 22291, 1940, NULL, '54.0000', '2.8700', '2.8700', '4.0000', '4.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23135, '2021-10-06', 2105, 22292, 1940, 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 (23136, '2021-10-06', 1374, 22293, 1940, 274, '1.0000', '24.0076', '24.0076', '26.0000', '26.0000', '0.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 (23137, '2021-10-06', 1374, 22293, 1940, NULL, '2.0000', '24.0076', '24.0076', '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 (23138, '2021-10-06', 1840, 22294, 1940, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.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 (23139, '2021-10-06', 8181, 22295, 1940, NULL, '4.0000', '4.5000', '4.5000', '0.4000', '0.4000', '-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 (23140, '2021-10-06', 2025, 22296, 1940, 6378, '-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 (23141, '2021-10-06', 2025, 22296, 1940, NULL, '2.0000', '4.0000', '4.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 (23142, '2021-10-06', 2686, 22297, 1940, 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 (23143, '2021-10-06', 1829, 22298, 1940, 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 (23144, '2021-10-06', 9318, 22299, 1940, NULL, '1.0000', '9.0000', '9.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 (23145, '2021-10-06', 2317, 22300, 1940, 3473, '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 (23146, '2021-10-06', 2960, 22301, 1940, 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 (23147, '2021-10-06', 1971, 22302, 1940, NULL, '1.0000', '11.0000', '11.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 (23148, '2021-10-06', 2040, 22303, 1940, 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 (23149, '2021-10-06', 2512, 22304, 1940, 5912, '-3.0000', '20.0000', '20.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 (23150, '2021-10-06', 2512, 22304, 1940, NULL, '4.0000', '20.0000', '20.0000', '25.0000', '25.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 (23151, '2021-10-06', 9488, 22305, 1940, 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 (23152, '2021-10-06', 2876, 22306, 1940, 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 (23153, '2021-10-06', 1646, 22307, 1940, 3239, '-6.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 (23154, '2021-10-06', 1646, 22307, 1940, NULL, '7.0000', '4.5300', '4.5300', '7.5000', '7.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 (23155, '2021-10-06', 1757, 22308, 1940, 3167, '-1.0000', '4.4000', '4.4000', '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 (23156, '2021-10-06', 1757, 22308, 1940, NULL, '2.0000', '4.4000', '4.4000', '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 (23157, '2021-10-06', 2247, 22309, 1940, 2784, '-2.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 (23158, '2021-10-06', 2247, 22309, 1940, NULL, '4.0000', '2.5000', '2.5000', '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 (23159, '2021-10-06', 2818, 22310, 1940, NULL, '1.0000', '14.0000', '14.0000', '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 (23160, '2021-10-06', 2412, 22311, 1940, 22258, '2.0000', '0.5200', '0.5200', '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 (23161, '2021-10-06', 1757, 22312, 1940, 3167, '-1.0000', '4.4000', '4.4000', '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 (23162, '2021-10-06', 1757, 22312, 1940, NULL, '2.0000', '4.4000', '4.4000', '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 (23163, '2021-10-06', 7496, 22313, 1940, NULL, '1.0000', '0.9600', '0.9600', '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 (23164, '2021-10-06', 2326, 22314, 1940, 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 (23165, '2021-10-06', 9517, 22315, 1940, NULL, '1.0000', '18.0000', '18.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 (23166, '2021-10-06', 1863, 22316, 1941, NULL, '1.0000', '1.4033', '1.4033', '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 (23167, '2021-10-06', 7432, 22317, 1942, 30048, '1.0000', '3.2300', '3.2300', '20.0000', '20.0000', '55.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23168, '2021-10-06', 7576, 22318, 1942, NULL, '4.0000', '6.9100', '6.9100', '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 (23169, '2021-10-06', 7824, 22319, 1942, NULL, '1.0000', '8.0000', '8.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 (23170, '2021-10-06', 7954, 22320, 1942, NULL, '8.0000', '21.0000', '21.0000', '4.0000', '4.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 (23171, '2021-10-06', 9240, 22321, 1942, NULL, '1.0000', '25.1200', '25.1200', '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 (23172, '2021-10-06', 7518, 22322, 1942, NULL, '1.0000', '-21.7700', '-21.7700', '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 (23173, '2021-10-06', 9438, 22323, 1942, 30497, '1.0000', '30.0000', '30.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23174, '2021-10-06', 2868, 22324, 1942, 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 (23175, '2021-10-06', 8940, 22325, 1942, NULL, '2.0000', '4.9900', '4.9900', '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 (23176, '2021-10-06', 2673, 22326, 1942, 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 (23177, '2021-10-06', 8702, 22327, 1942, NULL, '1.0000', '3.6700', '3.6700', '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 (23178, '2021-10-06', 7671, 22328, 1942, NULL, '2.0000', '15.5000', '15.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 (23179, '2021-10-06', 7784, 22329, 1942, NULL, '2.0000', '4.2500', '4.2500', '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 (23180, '2021-10-06', 7954, 22330, 1942, NULL, '2.0000', '21.0000', '21.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 (23181, '2021-10-06', 9367, 22331, 1942, NULL, '1.0000', '32.9800', '32.9800', '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 (23182, '2021-10-06', 7518, 22332, 1942, NULL, '1.0000', '-21.7700', '-21.7700', '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 (23183, '2021-10-06', 9092, 22333, 1942, NULL, '11.0000', '5.2900', '5.2900', '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 (23184, '2021-10-06', 8101, 22334, 1942, NULL, '2.0000', '21.7000', '21.7000', '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 (23185, '2021-10-06', 7781, 22335, 1942, NULL, '3.0000', '4.2500', '4.2500', '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 (23186, '2021-10-06', 7531, 22336, 1942, NULL, '3.0000', '16.5000', '16.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 (23187, '2021-10-06', 7658, 22337, 1942, NULL, '1.0000', '10.1500', '10.1500', '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 (23188, '2021-10-06', 7905, 22338, 1942, NULL, '1.0000', '0.7000', '0.7000', '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 (23189, '2021-10-06', 8447, 22339, 1942, NULL, '1.0000', '11.7200', '11.7200', '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 (23190, '2021-10-06', 7674, 22340, 1942, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '220.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23191, '2021-10-06', 1854, 22341, 1942, NULL, '2.0000', '2.5000', '2.5000', '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 (23192, '2021-10-06', 9337, 22342, 1942, 36077, '10.0000', '6.8067', '6.8067', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23193, '2021-10-06', 2163, 22343, 1943, 1378, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '2.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 (23194, '2021-10-06', 9554, 22344, 1943, 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 (23195, '2021-10-06', 9089, 22345, 1943, NULL, '1.0000', '3.8000', '3.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 (23196, '2021-10-06', 1990, 22346, 1943, 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 (23197, '2021-10-06', 1935, 22347, 1943, 5586, '-15.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 (23198, '2021-10-06', 1935, 22347, 1943, NULL, '16.0000', '0.7200', '0.7200', '2.0000', '2.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 (23199, '2021-10-06', 8097, 22348, 1944, NULL, '3.0000', '3.3994', '3.3994', '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 (23200, '2021-10-06', 8539, 22349, 1945, NULL, '3.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (23201, '2021-10-06', 8638, 22350, 1945, NULL, '1.0000', '0.5100', '0.5100', '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 (23202, '2021-10-06', 2280, 22351, 1945, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '17.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 (23203, '2021-10-06', 1810, 22352, 1945, NULL, '1.0000', '8.6700', '8.6700', '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 (23204, '2021-10-06', 2269, 22353, 1945, 24965, '1.0000', '5.8300', '5.8300', '8.0000', '8.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 (23205, '2021-10-06', 1430, 22354, 1945, 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 (23206, '2021-10-06', 1499, 22355, 1945, NULL, '5.0000', '0.4835', '0.4835', '0.6000', '0.6000', '-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 (23207, '2021-10-06', 1612, 22356, 1945, 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 (23208, '2021-10-06', 1602, 22357, 1945, NULL, '1.0000', '7.0310', '7.0310', '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 (23209, '2021-10-06', 7825, 22358, 1945, NULL, '1.0000', '6.5000', '6.5000', '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 (23210, '2021-10-06', 7564, 22359, 1945, NULL, '3.0000', '0.6400', '0.6400', '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 (23211, '2021-10-06', 2821, 22360, 1945, 34037, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23212, '2021-10-06', 1501, 22361, 1945, NULL, '1.0000', '2.2111', '2.2111', '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 (23213, '2021-10-06', 2221, 22362, 1945, 34955, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23214, '2021-10-06', 1863, 22363, 1945, NULL, '1.0000', '1.4033', '1.4033', '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 (23215, '2021-10-06', 2951, 22364, 1945, 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 (23216, '2021-10-06', 1667, 22365, 1945, NULL, '1.0000', '1404.9249', '1404.9249', '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 (23217, '2021-10-06', 2734, 22366, 1945, 19382, '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 (23218, '2021-10-06', 1637, 22367, 1945, 19388, '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 (23219, '2021-10-06', 7886, 22368, 1945, NULL, '1.0000', '14.5000', '14.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 (23220, '2021-10-06', 2660, 22369, 1945, 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 (23221, '2021-10-06', 1602, 22370, 1946, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '56.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23222, '2021-10-06', 2280, 22371, 1946, 21586, '1.0000', '1.9000', '1.9000', '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 (23223, '2021-10-06', 2512, 22372, 1946, 7520, '1.0000', '20.0000', '20.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 (23224, '2021-10-06', 1935, 22373, 1946, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23225, '2021-10-06', 2666, 22374, 1946, 11865, '1.0000', '18.7400', '18.7400', '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 (23226, '2021-10-06', 3066, 22375, 1946, 36359, '1.0000', '25.0000', '25.0000', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23227, '2021-10-06', 1316, 22376, 1946, 24096, '1.0000', '6.3000', '6.3000', '9.0000', '9.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 (23228, '2021-10-06', 2451, 22377, 1946, 31690, '1.0000', '10.0400', '10.0400', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23229, '2021-10-06', 1863, 22378, 1946, 36362, '2.0000', '1.0691', '1.0691', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23230, '2021-10-06', 2231, 22379, 1946, 7201, '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 (23231, '2021-10-06', 1367, 22380, 1946, NULL, '10.0000', '4.9000', '4.9000', '7.0000', '7.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 (23232, '2021-10-06', 1904, 22381, 1946, 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 (23233, '2021-10-06', 9563, 22382, 1946, 36748, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23234, '2021-10-06', 9563, 22383, 1946, 36748, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23235, '2021-10-06', 2655, 22384, 1946, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23236, '2021-10-06', 9047, 22386, 1946, NULL, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23237, '2021-10-06', 2712, 22387, 1946, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23238, '2021-10-06', 1504, 22388, 1946, 34414, '1.0000', '0.8984', '0.8984', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23239, '2021-10-06', 9538, 22389, 1946, 36332, '1.0000', '23.0000', '23.0000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23240, '2021-10-06', 2712, 22390, 1946, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23241, '2021-10-06', 1928, 22391, 1946, 36382, '1.0000', '55.2437', '55.2437', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23242, '2021-10-06', 2315, 22392, 1946, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '238.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23243, '2021-10-06', 1612, 22393, 1946, 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 (23244, '2021-10-06', 1667, 22394, 1946, 36354, '3.0000', '99.5871', '99.5871', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23245, '2021-10-06', 9562, 22395, 1946, 36747, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23246, '2021-10-06', 2777, 22396, 1947, 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 (23247, '2021-10-06', 2241, 22397, 1947, 19367, '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 (23248, '2021-10-06', 2309, 22398, 1947, 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 (23249, '2021-10-06', 7946, 22399, 1948, NULL, '1.0000', '0.5200', '0.5200', '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 (23250, '2021-10-06', 8829, 22400, 1948, NULL, '25.0000', '8.0000', '8.0000', '2.5000', '2.5000', '-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 (23251, '2021-10-06', 9121, 22401, 1948, NULL, '1.0000', '30.0000', '30.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 (23252, '2021-10-06', 8427, 22402, 1948, NULL, '1.0000', '6.5300', '6.5300', '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 (23253, '2021-10-06', 7554, 22403, 1948, 36073, '20.0000', '3.0308', '3.0308', '2.2000', '2.2000', '23.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23254, '2021-10-06', 2155, 22404, 1948, 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 (23255, '2021-10-06', 7674, 22405, 1948, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '219.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23256, '2021-10-06', 7922, 22406, 1948, NULL, '1.0000', '6.9800', '6.9800', '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 (23257, '2021-10-06', 8164, 22407, 1948, NULL, '1.0000', '3.1200', '3.1200', '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 (23258, '2021-10-06', 2656, 22408, 1948, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23259, '2021-10-06', 9534, 22409, 1948, 36035, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23260, '2021-10-06', 2506, 22410, 1948, 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 (23261, '2021-10-06', 8101, 22411, 1948, NULL, '2.0000', '21.7000', '21.7000', '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 (23262, '2021-10-06', 1837, 22412, 1948, 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 (23263, '2021-10-06', 7318, 22413, 1948, 35234, '1.0000', '12.3093', '12.3093', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23264, '2021-10-06', 7457, 22414, 1948, 36031, '1.0000', '2.5902', '2.5902', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23265, '2021-10-06', 7819, 22415, 1948, NULL, '1.0000', '9.5000', '9.5000', '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 (23266, '2021-10-06', 7824, 22416, 1948, NULL, '1.0000', '8.0000', '8.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 (23267, '2021-10-06', 7608, 22417, 1948, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23268, '2021-10-06', 7991, 22418, 1948, NULL, '1.0000', '26.5700', '26.5700', '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 (23269, '2021-10-06', 7521, 22419, 1948, NULL, '1.0000', '8.7600', '8.7600', '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 (23270, '2021-10-06', 7641, 22420, 1948, NULL, '1.0000', '6.5038', '6.5038', '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 (23271, '2021-10-06', 1610, 22421, 1948, 33754, '1.0000', '16.1500', '16.1500', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23272, '2021-10-06', 7674, 22422, 1948, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '219.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23273, '2021-10-06', 8300, 22423, 1948, NULL, '2.0000', '7.4300', '7.4300', '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 (23274, '2021-10-06', 7612, 22424, 1948, NULL, '1.0000', '46.0000', '46.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 (23275, '2021-10-06', 7946, 22425, 1948, NULL, '1.0000', '0.5200', '0.5200', '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 (23276, '2021-10-06', 1596, 22426, 1948, 36079, '1.0000', '2.3671', '2.3671', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23277, '2021-10-06', 2307, 22427, 1948, NULL, '2.0000', '140.0000', '140.0000', '190.0000', '190.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 (23278, '2021-10-06', 8485, 22428, 1948, NULL, '1.0000', '7.0400', '7.0400', '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 (23279, '2021-10-06', 7464, 22429, 1948, NULL, '1.0000', '2.2800', '2.2800', '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 (23280, '2021-10-06', 2699, 22430, 1948, 36677, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23281, '2021-10-06', 7638, 22431, 1948, 30935, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23282, '2021-10-06', 2245, 22432, 1948, 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 (23283, '2021-10-06', 7641, 22433, 1948, NULL, '1.0000', '6.5038', '6.5038', '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 (23284, '2021-10-06', 9563, 22434, 1948, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23285, '2021-10-06', 9089, 22435, 1949, NULL, '2.0000', '3.8000', '3.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 (23286, '2021-10-06', 2360, 22436, 1950, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (23287, '2021-10-06', 2263, 22437, 1950, 9567, '1.0000', '4.9800', '4.9800', '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 (23288, '2021-10-06', 7573, 22438, 1950, NULL, '1.0000', '5.5000', '5.5000', '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 (23289, '2021-10-06', 2655, 22439, 1950, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23290, '2021-10-06', 1845, 22440, 1950, 33232, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23291, '2021-10-06', 2221, 22441, 1950, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23292, '2021-10-06', 2290, 22442, 1950, 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 (23293, '2021-10-06', 3068, 22443, 1950, 25041, '1.0000', '14.0000', '14.0000', '18.0000', '18.0000', '3.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 (23294, '2021-10-07', 9519, 22444, 1951, 34435, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23295, '2021-10-07', 2277, 22445, 1952, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23296, '2021-10-07', 3017, 22446, 1952, 24959, '1.0000', '3.9000', '3.9000', '6.0000', '6.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 (23297, '2021-10-07', 2381, 22447, 1952, 34920, '1.0000', '12.4824', '12.4824', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23298, '2021-10-07', 1410, 22448, 1952, 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 (23299, '2021-10-07', 3029, 22449, 1952, 23679, '1.0000', '4.7700', '4.7700', '8.0000', '8.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 (23300, '2021-10-07', 7571, 22450, 1952, NULL, '1.0000', '2.1000', '2.1000', '2.7000', '2.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 (23301, '2021-10-07', 7571, 22451, 1952, NULL, '10.0000', '2.1000', '2.1000', '2.7000', '2.7000', '-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 (23302, '2021-10-07', 1519, 22452, 1952, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23303, '2021-10-07', 2466, 22453, 1952, 23141, '1.0000', '13.5900', '13.5900', '19.5000', '19.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 (23304, '2021-10-07', 2410, 22454, 1952, 24947, '1.0000', '4.3200', '4.3200', '6.0000', '6.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 (23305, '2021-10-07', 1772, 22455, 1952, 30665, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23306, '2021-10-07', 1646, 22456, 1952, 30659, '1.0000', '4.5256', '4.5256', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23307, '2021-10-07', 2236, 22457, 1952, 31081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23308, '2021-10-07', 2102, 22458, 1952, 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 (23309, '2021-10-07', 1307, 22459, 1952, 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 (23310, '2021-10-07', 7590, 22460, 1952, NULL, '1.0000', '4.3600', '4.3600', '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 (23311, '2021-10-07', 2570, 22461, 1952, 34963, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23312, '2021-10-07', 2923, 22462, 1952, 34921, '1.0000', '11.1200', '11.1200', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23313, '2021-10-07', 2643, 22463, 1952, 36652, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23314, '2021-10-07', 3029, 22464, 1952, 23679, '1.0000', '4.7700', '4.7700', '8.0000', '8.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 (23315, '2021-10-07', 1760, 22465, 1952, NULL, '2.0000', '1.5900', '1.5900', '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 (23316, '2021-10-07', 2726, 22466, 1952, 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 (23317, '2021-10-07', 1772, 22467, 1952, 30665, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23318, '2021-10-07', 2289, 22468, 1952, 13744, '4.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 (23319, '2021-10-07', 1914, 22469, 1952, NULL, '1.0000', '4.9000', '4.9000', '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 (23320, '2021-10-07', 2302, 22470, 1952, 24882, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.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 (23321, '2021-10-07', 1519, 22471, 1952, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23322, '2021-10-07', 1533, 22472, 1952, 29632, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23323, '2021-10-07', 2105, 22473, 1952, 34630, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23324, '2021-10-07', 2061, 22474, 1952, NULL, '1.0000', '10.6800', '10.6800', '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 (23325, '2021-10-07', 7408, 22475, 1952, NULL, '1.0000', '1.0000', '1.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 (23326, '2021-10-07', 1542, 22476, 1952, 19389, '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 (23327, '2021-10-07', 1523, 22477, 1952, NULL, '1.0000', '1.0061', '1.0061', '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 (23328, '2021-10-07', 2169, 22478, 1952, 36761, '2.0000', '1.1544', '1.1544', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23329, '2021-10-07', 1863, 22479, 1952, NULL, '1.0000', '1.4033', '1.4033', '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 (23330, '2021-10-07', 2656, 22480, 1952, 36634, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23331, '2021-10-07', 2105, 22481, 1952, 34630, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23332, '2021-10-07', 2068, 22482, 1952, 33354, '1.0000', '13.2503', '13.2503', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23333, '2021-10-07', 2284, 22483, 1952, 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 (23334, '2021-10-07', 1880, 22484, 1952, 34029, '1.0000', '4.7600', '4.7600', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23335, '2021-10-07', 7358, 22485, 1952, NULL, '1.0000', '18.8000', '18.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 (23336, '2021-10-07', 1912, 22486, 1952, NULL, '2.0000', '0.6591', '0.6591', '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 (23337, '2021-10-07', 2287, 22487, 1952, 29630, '4.0000', '1.1700', '1.1700', '3.0000', '3.0000', '90.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23338, '2021-10-07', 2470, 22488, 1953, 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 (23339, '2021-10-07', 1812, 22489, 1953, 8224, '-9.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 (23340, '2021-10-07', 1812, 22489, 1953, NULL, '11.0000', '7.8900', '7.8900', '10.5000', '10.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 (23341, '2021-10-07', 1602, 22490, 1953, 5897, '-14.0000', '6.7859', '6.7859', '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 (23342, '2021-10-07', 1602, 22490, 1953, NULL, '15.0000', '6.7859', '6.7859', '10.0000', '10.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 (23343, '2021-10-07', 2963, 22491, 1953, NULL, '1.0000', '13.0000', '13.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 (23344, '2021-10-07', 2643, 22492, 1953, 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 (23345, '2021-10-07', 2422, 22493, 1953, 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 (23346, '2021-10-07', 2315, 22494, 1953, 2735, '-99.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23347, '2021-10-07', 2315, 22494, 1953, NULL, '101.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23348, '2021-10-07', 2460, 22495, 1953, 12921, '-1.0000', '32.7700', '32.7700', '44.5000', '44.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 (23349, '2021-10-07', 2460, 22495, 1953, NULL, '2.0000', '32.7700', '32.7700', '44.5000', '44.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 (23350, '2021-10-07', 2068, 22496, 1953, 5568, '-11.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 (23351, '2021-10-07', 2068, 22496, 1953, NULL, '12.0000', '13.1000', '13.1000', '17.0000', '17.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 (23352, '2021-10-07', 1908, 22497, 1953, 5444, '-15.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 (23353, '2021-10-07', 1908, 22497, 1953, NULL, '17.0000', '90.0000', '90.0000', '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 (23354, '2021-10-07', 1783, 22498, 1953, 4901, '-3.0000', '7.8500', '7.8500', '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 (23355, '2021-10-07', 1783, 22498, 1953, NULL, '6.0000', '7.8500', '7.8500', '11.0000', '11.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 (23356, '2021-10-07', 1602, 22499, 1953, 5897, '-14.0000', '6.7859', '6.7859', '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 (23357, '2021-10-07', 1602, 22499, 1953, NULL, '15.0000', '6.7859', '6.7859', '10.0000', '10.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 (23358, '2021-10-07', 2821, 22500, 1953, 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 (23359, '2021-10-07', 1863, 22501, 1953, 10808, '-29.0000', '0.4136', '0.4136', '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 (23360, '2021-10-07', 1863, 22501, 1953, NULL, '30.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (23361, '2021-10-07', 1523, 22502, 1953, 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 (23362, '2021-10-07', 2660, 22503, 1953, 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 (23363, '2021-10-07', 2250, 22504, 1953, 2787, '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 (23364, '2021-10-07', 1666, 22505, 1953, 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 (23365, '2021-10-07', 1666, 22505, 1953, 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 (23366, '2021-10-07', 1667, 22506, 1953, 9745, '-14.0000', '5.9400', '5.9400', '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 (23367, '2021-10-07', 1667, 22506, 1953, NULL, '15.0000', '5.9400', '5.9400', '8.5000', '8.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 (23368, '2021-10-07', 1494, 22507, 1953, 97, '1.0000', '11.9056', '11.9056', '6.5000', '6.5000', '1.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 (23369, '2021-10-07', 1998, 22508, 1953, 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 (23370, '2021-10-07', 2277, 22509, 1953, 2937, '-8.0000', '0.7800', '0.7800', '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 (23371, '2021-10-07', 2277, 22509, 1953, NULL, '10.0000', '0.7800', '0.7800', '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 (23372, '2021-10-07', 2272, 22510, 1953, 2932, '-10.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 (23373, '2021-10-07', 2272, 22510, 1953, NULL, '11.0000', '5.5000', '5.5000', '7.5000', '7.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 (23374, '2021-10-07', 1935, 22511, 1953, 5586, '-16.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 (23375, '2021-10-07', 1935, 22511, 1953, NULL, '18.0000', '0.7200', '0.7200', '2.0000', '2.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 (23376, '2021-10-07', 1427, 22512, 1953, NULL, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23377, '2021-10-07', 2481, 22513, 1953, 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 (23378, '2021-10-07', 2697, 22514, 1953, 18713, '1.0000', '3.0000', '3.0000', '5.0000', '5.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 (23379, '2021-10-07', 1409, 22515, 1954, 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 (23380, '2021-10-07', 1812, 22516, 1954, 8224, '-11.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 (23381, '2021-10-07', 1812, 22516, 1954, NULL, '12.0000', '7.8900', '7.8900', '10.5000', '10.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 (23382, '2021-10-07', 2236, 22517, 1955, 31081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23383, '2021-10-07', 1677, 22518, 1955, 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 (23384, '2021-10-07', 2169, 22519, 1955, 36761, '2.0000', '1.1544', '1.1544', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23385, '2021-10-07', 8752, 22520, 1956, NULL, '1.0000', '4.2000', '4.2000', '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 (23386, '2021-10-07', 9274, 22521, 1956, 36030, '2.0000', '3.1000', '3.1000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23387, '2021-10-07', 2060, 22522, 1956, 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 (23388, '2021-10-07', 1908, 22523, 1956, NULL, '1.0000', '1.7500', '1.7500', '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 (23389, '2021-10-07', 7709, 22524, 1956, NULL, '1.0000', '35.8000', '35.8000', '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 (23390, '2021-10-07', 7482, 22525, 1956, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23391, '2021-10-07', 7857, 22526, 1956, NULL, '1.0000', '12.2900', '12.2900', '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 (23392, '2021-10-07', 8539, 22527, 1956, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '53.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23393, '2021-10-07', 8208, 22528, 1956, NULL, '2.0000', '33.0000', '33.0000', '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 (23394, '2021-10-07', 7411, 22529, 1956, NULL, '1.0000', '1.3500', '1.3500', '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 (23395, '2021-10-07', 8166, 22530, 1956, NULL, '1.0000', '4.6000', '4.6000', '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 (23396, '2021-10-07', 7640, 22531, 1956, NULL, '1.0000', '5.8900', '5.8900', '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 (23397, '2021-10-07', 7591, 22532, 1956, NULL, '1.0000', '2.7500', '2.7500', '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 (23398, '2021-10-07', 7673, 22533, 1956, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23399, '2021-10-07', 7675, 22534, 1956, NULL, '1.0000', '11.4300', '11.4300', '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 (23400, '2021-10-07', 8388, 22535, 1956, NULL, '1.0000', '10.0000', '10.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 (23401, '2021-10-07', 7477, 22536, 1956, NULL, '2.0000', '0.9070', '0.9070', '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 (23402, '2021-10-07', 1840, 22537, 1956, 33725, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '181.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23403, '2021-10-07', 1841, 22538, 1956, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '159.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23404, '2021-10-07', 8300, 22539, 1956, NULL, '1.0000', '7.4300', '7.4300', '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 (23405, '2021-10-07', 8208, 22540, 1956, NULL, '2.0000', '33.0000', '33.0000', '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 (23406, '2021-10-07', 7531, 22541, 1956, NULL, '3.0000', '16.5000', '16.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 (23407, '2021-10-07', 7752, 22542, 1956, NULL, '2.0000', '3.0000', '3.0000', '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 (23408, '2021-10-07', 7703, 22543, 1956, NULL, '2.0000', '22.9900', '22.9900', '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 (23409, '2021-10-07', 8359, 22544, 1956, NULL, '2.0000', '16.7750', '16.7750', '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 (23410, '2021-10-07', 8669, 22545, 1956, NULL, '1.0000', '5.0000', '5.0000', '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 (23411, '2021-10-07', 8328, 22546, 1956, NULL, '1.0000', '8.0882', '8.0882', '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 (23412, '2021-10-07', 8188, 22547, 1956, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23413, '2021-10-07', 1493, 22548, 1956, 36024, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23414, '2021-10-07', 1665, 22549, 1956, 35232, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23415, '2021-10-07', 7531, 22550, 1956, NULL, '3.0000', '16.5000', '16.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 (23416, '2021-10-07', 8097, 22551, 1956, NULL, '1.0000', '3.3994', '3.3994', '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 (23417, '2021-10-07', 1837, 22552, 1956, 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 (23418, '2021-10-07', 1425, 22553, 1956, 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 (23419, '2021-10-07', 1493, 22554, 1956, 36024, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23420, '2021-10-07', 9563, 22555, 1957, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23421, '2021-10-07', 2286, 22556, 1958, 29631, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23422, '2021-10-07', 2286, 22556, 1958, 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 (23423, '2021-10-07', 2068, 22557, 1958, 33354, '2.0000', '13.2503', '13.2503', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23424, '2021-10-07', 1757, 22558, 1958, 25014, '1.0000', '4.0119', '4.0119', '7.0000', '7.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 (23425, '2021-10-07', 2992, 22559, 1958, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '20.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 (23426, '2021-10-07', 2699, 22560, 1958, 36635, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23427, '2021-10-07', 7802, 22561, 1958, NULL, '1.0000', '0.9200', '0.9200', '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 (23428, '2021-10-07', 2309, 22562, 1958, 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 (23429, '2021-10-07', 1677, 22563, 1958, 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 (23430, '2021-10-07', 1529, 22564, 1958, NULL, '1.0000', '36.4099', '36.4099', '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 (23431, '2021-10-07', 1805, 22565, 1958, NULL, '1.0000', '4.5244', '4.5244', '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 (23432, '2021-10-07', 8608, 22566, 1958, NULL, '1.0000', '0.9000', '0.9000', '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 (23433, '2021-10-07', 2964, 22567, 1958, NULL, '1.0000', '6.6000', '6.6000', '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 (23434, '2021-10-07', 2003, 22568, 1958, 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 (23435, '2021-10-07', 1863, 22569, 1958, NULL, '1.0000', '1.4033', '1.4033', '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 (23436, '2021-10-07', 1501, 22570, 1958, NULL, '1.0000', '2.2111', '2.2111', '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 (23437, '2021-10-07', 1665, 22571, 1958, 36766, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23438, '2021-10-07', 3058, 22572, 1958, 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 (23439, '2021-10-07', 9482, 22573, 1958, 32547, '4.0000', '0.5000', '0.5000', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23440, '2021-10-07', 2315, 22574, 1958, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23441, '2021-10-07', 2829, 22575, 1959, 36338, '1.0000', '25.0136', '25.0136', '39.5000', '39.5000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23442, '2021-10-07', 1809, 22576, 1959, 33005, '1.0000', '9.1873', '9.1873', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23443, '2021-10-07', 2221, 22577, 1959, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23444, '2021-10-07', 1790, 22578, 1959, NULL, '1.0000', '90.0000', '90.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 (23445, '2021-10-07', 2488, 22579, 1959, 32889, '10.0000', '8.8667', '8.8667', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23446, '2021-10-07', 2665, 22580, 1959, 36883, '1.0000', '23.7600', '23.7600', '32.0000', '32.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23447, '2021-10-07', 1845, 22581, 1959, 32081, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23448, '2021-10-07', 2681, 22582, 1959, 32247, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23449, '2021-10-07', 8677, 22583, 1959, 32871, '1.0000', '-1.2995', '-1.2995', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23450, '2021-10-07', 7756, 22584, 1959, NULL, '1.0000', '2.5000', '2.5000', '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 (23451, '2021-10-07', 9565, 22585, 1959, 36818, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23452, '2021-10-07', 2811, 22586, 1959, 33207, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23453, '2021-10-07', 7590, 22587, 1959, NULL, '1.0000', '4.3600', '4.3600', '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 (23454, '2021-10-07', 1523, 22588, 1959, 24285, '2.0000', '0.9596', '0.9596', '5.0000', '5.0000', '13.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 (23455, '2021-10-07', 2834, 22589, 1959, 16987, '1.0000', '12.5000', '12.5000', '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 (23456, '2021-10-07', 2237, 22590, 1959, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '12.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 (23457, '2021-10-07', 1863, 22591, 1959, 36362, '1.0000', '1.0691', '1.0691', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23458, '2021-10-07', 2248, 22592, 1959, 36341, '1.0000', '3.3357', '3.3357', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23459, '2021-10-07', 2438, 22593, 1959, 5822, '1.0000', '29.0000', '29.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 (23460, '2021-10-07', 2486, 22594, 1959, 21821, '1.0000', '4.0000', '4.0000', '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 (23461, '2021-10-07', 2317, 22595, 1959, 36788, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '60.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23462, '2021-10-07', 7756, 22596, 1959, NULL, '1.0000', '2.5000', '2.5000', '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 (23463, '2021-10-07', 2712, 22597, 1959, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23464, '2021-10-07', 1668, 22598, 1959, 36380, '1.0000', '80.0824', '80.0824', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23465, '2021-10-07', 2655, 22599, 1959, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23466, '2021-10-07', 9461, 22600, 1959, 33213, '1.0000', '1.6000', '1.6000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23467, '2021-10-07', 1533, 22601, 1959, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23468, '2021-10-07', 7744, 22602, 1959, 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 (23469, '2021-10-07', 2411, 22603, 1959, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '8.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 (23470, '2021-10-07', 1340, 22604, 1959, 10208, '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 (23471, '2021-10-07', 7593, 22605, 1959, NULL, '1.0000', '2.4500', '2.4500', '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 (23472, '2021-10-07', 1411, 22606, 1959, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '17.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23473, '2021-10-07', 3018, 22607, 1959, 24268, '1.0000', '4.9100', '4.9100', '6.5000', '6.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 (23474, '2021-10-07', 9265, 22608, 1959, NULL, '1.0000', '1.5500', '1.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 (23475, '2021-10-07', 1736, 22609, 1959, 22486, '2.0000', '26.5160', '26.5160', '39.0000', '39.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 (23476, '2021-10-07', 2829, 22610, 1959, 36338, '1.0000', '25.0136', '25.0136', '39.5000', '39.5000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23477, '2021-10-07', 1577, 22611, 1959, 36870, '1.0000', '2.2666', '2.2666', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23478, '2021-10-07', 2285, 22612, 1959, 36372, '1.0000', '36.2615', '36.2615', '49.0000', '49.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23479, '2021-10-07', 8982, 22613, 1959, 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 (23480, '2021-10-07', 2254, 22614, 1959, 18688, '1.0000', '17.9400', '17.9400', '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 (23481, '2021-10-07', 1592, 22615, 1959, 36393, '1.0000', '37.9490', '37.9490', '47.0000', '47.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23482, '2021-10-07', 1863, 22616, 1959, 36362, '1.0000', '1.0691', '1.0691', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23483, '2021-10-07', 2460, 22617, 1959, 29801, '1.0000', '33.2050', '33.2050', '44.5000', '44.5000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23484, '2021-10-07', 1677, 22618, 1960, 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 (23485, '2021-10-07', 3058, 22619, 1960, 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 (23486, '2021-10-07', 8638, 22620, 1960, NULL, '1.0000', '0.5100', '0.5100', '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 (23487, '2021-10-07', 1693, 22621, 1960, 34595, '1.0000', '7.8600', '7.8600', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23488, '2021-10-07', 1867, 22622, 1960, 34624, '1.0000', '5.8781', '5.8781', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23489, '2021-10-07', 2105, 22623, 1960, 34630, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23490, '2021-10-07', 1307, 22624, 1960, 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 (23491, '2021-10-07', 2280, 22625, 1960, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '16.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 (23492, '2021-10-07', 2135, 22626, 1960, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23493, '2021-10-07', 9482, 22627, 1960, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23494, '2021-10-07', 9482, 22628, 1960, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23495, '2021-10-07', 2167, 22629, 1960, 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 (23496, '2021-10-07', 2088, 22630, 1960, 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 (23497, '2021-10-07', 9468, 22631, 1960, NULL, '1.0000', '17.5000', '17.5000', '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 (23498, '2021-10-07', 1665, 22632, 1960, 36766, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23499, '2021-10-07', 2660, 22633, 1960, NULL, '8.0000', '0.7000', '0.7000', '1.0000', '1.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 (23500, '2021-10-07', 7917, 22634, 1960, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (23501, '2021-10-07', 2662, 22635, 1960, 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 (23502, '2021-10-07', 8207, 22636, 1960, NULL, '1.0000', '0.0000', '0.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 (23503, '2021-10-07', 1580, 22637, 1960, 33362, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23504, '2021-10-07', 1863, 22638, 1960, NULL, '1.0000', '1.4033', '1.4033', '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 (23505, '2021-10-07', 2242, 22639, 1960, 36765, '2.0000', '0.4953', '0.4953', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23506, '2021-10-07', 7886, 22640, 1960, NULL, '1.0000', '14.5000', '14.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 (23507, '2021-10-07', 1595, 22641, 1960, 34632, '1.0000', '19.9506', '19.9506', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23508, '2021-10-07', 7583, 22642, 1961, NULL, '1.0000', '4.0000', '4.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 (23509, '2021-10-07', 8359, 22643, 1961, NULL, '1.0000', '16.7750', '16.7750', '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 (23510, '2021-10-07', 7473, 22644, 1961, NULL, '10.0000', '9.2200', '9.2200', '0.6000', '0.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 (23511, '2021-10-07', 8039, 22645, 1961, NULL, '1.0000', '18.3400', '18.3400', '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 (23512, '2021-10-07', 1734, 22646, 1961, 35211, '1.0000', '14.9800', '14.9800', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23513, '2021-10-07', 2506, 22647, 1961, 36785, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23514, '2021-10-07', 7779, 22648, 1961, NULL, '1.0000', '0.6200', '0.6200', '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 (23515, '2021-10-07', 2289, 22649, 1961, NULL, '4.0000', '0.2300', '0.2300', '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 (23516, '2021-10-07', 7321, 22650, 1961, NULL, '1.0000', '7.9500', '7.9500', '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 (23517, '2021-10-07', 1425, 22651, 1961, 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 (23518, '2021-10-07', 7514, 22652, 1961, NULL, '3.0000', '12.9983', '12.9983', '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 (23519, '2021-10-07', 7849, 22653, 1961, 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 (23520, '2021-10-07', 7803, 22654, 1961, NULL, '1.0000', '1.8200', '1.8200', '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 (23521, '2021-10-07', 2650, 22655, 1961, NULL, '1.0000', '7.3200', '7.3200', '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 (23522, '2021-10-07', 7591, 22656, 1961, NULL, '1.0000', '2.7500', '2.7500', '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 (23523, '2021-10-07', 8712, 22657, 1961, NULL, '1.0000', '7.0400', '7.0400', '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 (23524, '2021-10-07', 7608, 22658, 1961, 31017, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23525, '2021-10-07', 8699, 22659, 1961, NULL, '1.0000', '6.3800', '6.3800', '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 (23526, '2021-10-07', 7482, 22660, 1961, 36029, '2.0000', '3.0500', '3.0500', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23527, '2021-10-07', 7703, 22661, 1961, NULL, '2.0000', '22.9900', '22.9900', '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 (23528, '2021-10-07', 1339, 22662, 1961, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23529, '2021-10-07', 1764, 22663, 1961, 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 (23530, '2021-10-07', 1637, 22664, 1961, 32929, '1.0000', '10.3600', '10.3600', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23531, '2021-10-07', 7672, 22665, 1961, NULL, '1.0000', '1.0200', '1.0200', '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 (23532, '2021-10-07', 7482, 22666, 1961, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23533, '2021-10-07', 8328, 22667, 1961, NULL, '1.0000', '8.0882', '8.0882', '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 (23534, '2021-10-07', 7781, 22668, 1961, NULL, '1.0000', '4.2500', '4.2500', '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 (23535, '2021-10-07', 1637, 22669, 1961, 32929, '1.0000', '10.3600', '10.3600', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23536, '2021-10-07', 7682, 22670, 1961, NULL, '1.0000', '0.6600', '0.6600', '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 (23537, '2021-10-07', 8166, 22671, 1961, NULL, '1.0000', '4.6000', '4.6000', '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 (23538, '2021-10-07', 2467, 22672, 1961, NULL, '1.0000', '19.8000', '19.8000', '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 (23539, '2021-10-07', 9499, 22673, 1961, 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 (23540, '2021-10-07', 8730, 22674, 1961, NULL, '1.0000', '29.0000', '29.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 (23541, '2021-10-07', 8200, 22675, 1961, NULL, '1.0000', '8.5500', '8.5500', '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 (23542, '2021-10-07', 7927, 22676, 1961, 34535, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23543, '2021-10-07', 1854, 22677, 1961, 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 (23544, '2021-10-07', 7674, 22678, 1961, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '217.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23545, '2021-10-07', 2060, 22679, 1961, 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 (23546, '2021-10-07', 7509, 22680, 1961, 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 (23547, '2021-10-07', 7402, 22681, 1961, 30028, '1.0000', '116.3300', '116.3300', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23548, '2021-10-07', 9557, 22682, 1961, 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 (23549, '2021-10-07', 8668, 22683, 1961, NULL, '1.0000', '2.2000', '2.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 (23550, '2021-10-07', 8702, 22684, 1961, NULL, '1.0000', '3.6700', '3.6700', '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 (23551, '2021-10-07', 7892, 22685, 1961, NULL, '1.0000', '4.2000', '4.2000', '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 (23552, '2021-10-07', 7526, 22686, 1961, NULL, '1.0000', '0.2400', '0.2400', '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 (23553, '2021-10-07', 7711, 22687, 1961, NULL, '1.0000', '0.3900', '0.3900', '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 (23554, '2021-10-07', 7411, 22688, 1961, NULL, '2.0000', '1.3500', '1.3500', '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 (23555, '2021-10-07', 8000, 22689, 1961, NULL, '1.0000', '27.9111', '27.9111', '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 (23556, '2021-10-07', 7824, 22690, 1961, NULL, '1.0000', '8.0000', '8.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 (23557, '2021-10-07', 7446, 22691, 1961, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23558, '2021-10-07', 1557, 22692, 1961, NULL, '1.0000', '7.8800', '7.8800', '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 (23559, '2021-10-07', 8359, 22693, 1961, NULL, '1.0000', '16.7750', '16.7750', '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 (23560, '2021-10-07', 7415, 22694, 1961, 30035, '1.0000', '5.9100', '5.9100', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23561, '2021-10-07', 9272, 22695, 1961, NULL, '1.0000', '3.1000', '3.1000', '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 (23562, '2021-10-07', 7482, 22696, 1961, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23563, '2021-10-07', 2271, 22697, 1961, 36034, '1.0000', '12.0000', '12.0000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23564, '2021-10-07', 8166, 22698, 1961, NULL, '1.0000', '4.6000', '4.6000', '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 (23565, '2021-10-07', 7674, 22699, 1961, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '217.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23566, '2021-10-07', 9092, 22700, 1961, NULL, '1.0000', '5.2900', '5.2900', '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 (23567, '2021-10-07', 7671, 22701, 1961, NULL, '2.0000', '15.5000', '15.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 (23568, '2021-10-07', 8702, 22702, 1961, NULL, '1.0000', '3.6700', '3.6700', '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 (23569, '2021-10-07', 2870, 22703, 1961, NULL, '1.0000', '45.0000', '45.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 (23570, '2021-10-07', 9084, 22704, 1961, NULL, '1.0000', '6.2167', '6.2167', '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 (23571, '2021-10-07', 9184, 22705, 1961, NULL, '1.0000', '3.9000', '3.9000', '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 (23572, '2021-10-07', 8166, 22706, 1961, NULL, '1.0000', '4.6000', '4.6000', '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 (23573, '2021-10-07', 2100, 22707, 1961, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23574, '2021-10-07', 7911, 22708, 1961, NULL, '1.0000', '4.3700', '4.3700', '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 (23575, '2021-10-07', 7897, 22709, 1961, NULL, '1.0000', '3.0000', '3.0000', '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 (23576, '2021-10-07', 7954, 22710, 1961, NULL, '2.0000', '21.0000', '21.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 (23577, '2021-10-07', 7750, 22711, 1961, 36028, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23578, '2021-10-07', 8208, 22712, 1961, NULL, '1.0000', '33.0000', '33.0000', '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 (23579, '2021-10-07', 8548, 22713, 1961, NULL, '1.0000', '12.0000', '12.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 (23580, '2021-10-07', 7354, 22714, 1961, NULL, '2.0000', '18.0000', '18.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 (23581, '2021-10-07', 7640, 22715, 1961, NULL, '1.0000', '5.8900', '5.8900', '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 (23582, '2021-10-07', 7824, 22716, 1961, NULL, '1.0000', '8.0000', '8.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 (23583, '2021-10-07', 9456, 22717, 1961, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23584, '2021-10-07', 7326, 22718, 1961, NULL, '1.0000', '0.1500', '0.1500', '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 (23585, '2021-10-07', 1634, 22719, 1961, 36093, '2.0000', '25.0000', '25.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23586, '2021-10-07', 2656, 22720, 1961, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23587, '2021-10-07', 2655, 22721, 1961, 36675, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23588, '2021-10-07', 7848, 22722, 1961, NULL, '1.0000', '1.3500', '1.3500', '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 (23589, '2021-10-07', 2327, 22723, 1961, 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 (23590, '2021-10-07', 7825, 22724, 1961, NULL, '1.0000', '6.5000', '6.5000', '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 (23591, '2021-10-07', 7518, 22725, 1961, NULL, '2.0000', '-21.7700', '-21.7700', '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 (23592, '2021-10-07', 2169, 22726, 1962, 36761, '1.0000', '1.1544', '1.1544', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23593, '2021-10-07', 7641, 22727, 1962, NULL, '1.0000', '1.9000', '1.9000', '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 (23594, '2021-10-07', 1647, 22728, 1962, 24968, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '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 (23595, '2021-10-07', 9204, 22729, 1962, NULL, '1.0000', '8.1600', '8.1600', '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 (23596, '2021-10-07', 7743, 22730, 1962, NULL, '1.0000', '7.3900', '7.3900', '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 (23597, '2021-10-07', 2951, 22731, 1962, 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 (23598, '2021-10-07', 2169, 22732, 1962, 36761, '2.0000', '1.1544', '1.1544', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23599, '2021-10-07', 1620, 22733, 1962, 34019, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23600, '2021-10-07', 1388, 22734, 1962, NULL, '1.0000', '5.3000', '5.3000', '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 (23601, '2021-10-07', 1785, 22735, 1962, NULL, '1.0000', '14.2875', '14.2875', '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 (23602, '2021-10-07', 1621, 22736, 1962, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (23603, '2021-10-07', 2951, 22737, 1962, 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 (23604, '2021-10-07', 7728, 22738, 1962, NULL, '1.0000', '1.8000', '1.8000', '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 (23605, '2021-10-07', 2951, 22739, 1962, 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 (23606, '2021-10-07', 8000, 22740, 1962, NULL, '1.0000', '25.8200', '25.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 (23607, '2021-10-07', 7411, 22741, 1962, NULL, '2.0000', '1.3500', '1.3500', '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 (23608, '2021-10-07', 7685, 22742, 1962, NULL, '2.0000', '31.2000', '31.2000', '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 (23609, '2021-10-07', 1783, 22743, 1963, 36383, '3.0000', '29.1265', '29.1265', '11.0000', '11.0000', '12.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23610, '2021-10-07', 2681, 22744, 1963, 32247, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23611, '2021-10-07', 1555, 22745, 1963, 22238, '1.0000', '90.0000', '90.0000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23612, '2021-10-07', 2712, 22746, 1963, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23613, '2021-10-07', 2135, 22747, 1963, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23614, '2021-10-07', 1410, 22748, 1963, 11139, '1.0000', '2.2220', '2.2220', '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 (23615, '2021-10-07', 1822, 22749, 1963, 11174, '6.0000', '2.9682', '2.9682', '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 (23616, '2021-10-07', 1863, 22750, 1963, 36362, '2.0000', '1.0691', '1.0691', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23617, '2021-10-07', 2135, 22751, 1963, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23618, '2021-10-07', 2810, 22752, 1963, 36863, '10.0000', '2.2000', '2.2000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23619, '2021-10-07', 2036, 22753, 1963, 4401, '2.0000', '8.0000', '8.0000', '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 (23620, '2021-10-07', 1620, 22754, 1963, 29796, '4.0000', '13.9038', '13.9038', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23621, '2021-10-07', 1989, 22755, 1963, 11190, '1.0000', '3.5000', '3.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 (23622, '2021-10-07', 1961, 22756, 1963, 33221, '1.0000', '17.7486', '17.7486', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23623, '2021-10-07', 7444, 22757, 1963, 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 (23624, '2021-10-08', 2354, 22758, 1964, 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 (23625, '2021-10-08', 2220, 22759, 1964, 24950, '1.0000', '5.9300', '5.9300', '8.0000', '8.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 (23626, '2021-10-08', 7496, 22760, 1964, NULL, '1.0000', '0.9600', '0.9600', '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 (23627, '2021-10-08', 9556, 22761, 1964, 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 (23628, '2021-10-08', 7853, 22762, 1964, NULL, '1.0000', '35.0000', '35.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 (23629, '2021-10-08', 1554, 22763, 1964, 23115, '1.0000', '2.3063', '2.3063', '5.0000', '5.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 (23630, '2021-10-08', 7781, 22764, 1964, NULL, '1.0000', '4.2500', '4.2500', '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 (23631, '2021-10-08', 2169, 22765, 1964, 36761, '1.0000', '1.1544', '1.1544', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23632, '2021-10-08', 1580, 22766, 1964, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23633, '2021-10-08', 8203, 22767, 1964, NULL, '2.0000', '9.8000', '9.8000', '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 (23634, '2021-10-08', 7459, 22768, 1964, 34603, '2.0000', '-6.1729', '-6.1729', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23635, '2021-10-08', 1501, 22769, 1964, NULL, '1.0000', '2.2111', '2.2111', '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 (23636, '2021-10-08', 1690, 22770, 1964, 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 (23637, '2021-10-08', 2444, 22771, 1964, 22549, '1.0000', '7.0800', '7.0800', '9.0000', '9.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 (23638, '2021-10-08', 7370, 22772, 1964, NULL, '1.0000', '12.1100', '12.1100', '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 (23639, '2021-10-08', 1837, 22773, 1964, 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 (23640, '2021-10-08', 1523, 22774, 1964, NULL, '1.0000', '1.0061', '1.0061', '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 (23641, '2021-10-08', 2907, 22775, 1964, 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 (23642, '2021-10-08', 7927, 22776, 1964, NULL, '1.0000', '11.7000', '11.7000', '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 (23643, '2021-10-08', 8789, 22777, 1964, NULL, '1.0000', '4.9300', '4.9300', '6.5100', '6.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23644, '2021-10-08', 1839, 22778, 1964, 33365, '1.0000', '6.1500', '6.1500', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23645, '2021-10-08', 2229, 22779, 1964, 22518, '1.0000', '24.5000', '24.5000', '28.0000', '28.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 (23646, '2021-10-08', 7641, 22780, 1964, NULL, '1.0000', '1.9000', '1.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 (23647, '2021-10-08', 8933, 22781, 1964, NULL, '1.0000', '10.0000', '10.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 (23648, '2021-10-08', 9167, 22782, 1964, NULL, '1.0000', '50.0000', '50.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 (23649, '2021-10-08', 2344, 22783, 1964, 24926, '1.0000', '19.8200', '19.8200', '26.5000', '26.5000', '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 (23650, '2021-10-08', 2992, 22784, 1964, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '19.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 (23651, '2021-10-08', 7921, 22785, 1964, NULL, '1.0000', '0.3000', '0.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 (23652, '2021-10-08', 8133, 22786, 1964, 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 (23653, '2021-10-08', 1702, 22787, 1964, NULL, '1.0000', '315.0900', '315.0900', '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 (23654, '2021-10-08', 2167, 22788, 1965, 17165, '-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 (23655, '2021-10-08', 2167, 22788, 1965, 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 (23656, '2021-10-08', 1947, 22789, 1965, 1037, '1.0000', '0.1809', '0.1809', '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 (23657, '2021-10-08', 2662, 22790, 1965, 12036, '-5.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 (23658, '2021-10-08', 2662, 22790, 1965, NULL, '6.0000', '4.5000', '4.5000', '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 (23659, '2021-10-08', 1831, 22791, 1965, 20660, '1.0000', '8.4400', '8.4400', '11.5000', '11.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 (23660, '2021-10-08', 1677, 22792, 1965, 18835, '1.0000', '7.8000', '7.8000', '11.0000', '11.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 (23661, '2021-10-08', 2254, 22793, 1965, 33806, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23662, '2021-10-08', 1342, 22794, 1965, 238, '1.0000', '6.8074', '6.8074', '7.5000', '7.5000', '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 (23663, '2021-10-08', 2167, 22795, 1965, 17165, '-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 (23664, '2021-10-08', 2167, 22795, 1965, 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 (23665, '2021-10-08', 1687, 22796, 1965, 5785, '-4.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 (23666, '2021-10-08', 1687, 22796, 1965, NULL, '5.0000', '165.9024', '165.9024', '15.5000', '15.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 (23667, '2021-10-08', 1738, 22797, 1965, 18834, '1.0000', '7.1000', '7.1000', '9.5000', '9.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 (23668, '2021-10-08', 2713, 22798, 1965, 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 (23669, '2021-10-08', 9089, 22799, 1965, NULL, '1.0000', '3.8000', '3.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 (23670, '2021-10-08', 1519, 22800, 1965, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (23671, '2021-10-08', 2942, 22801, 1965, 19985, '-1.0000', '0.4900', '0.4900', '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 (23672, '2021-10-08', 2942, 22801, 1965, NULL, '4.0000', '0.4900', '0.4900', '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 (23673, '2021-10-08', 1841, 22802, 1965, 18870, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '16.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 (23674, '2021-10-08', 2105, 22803, 1965, 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 (23675, '2021-10-08', 1863, 22804, 1965, 10808, '-30.0000', '0.4136', '0.4136', '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 (23676, '2021-10-08', 1863, 22804, 1965, NULL, '31.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (23677, '2021-10-08', 1602, 22805, 1965, 5897, '-16.0000', '6.7859', '6.7859', '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 (23678, '2021-10-08', 1602, 22805, 1965, NULL, '17.0000', '6.7859', '6.7859', '10.0000', '10.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 (23679, '2021-10-08', 1668, 22806, 1965, NULL, '1.0000', '13.0442', '13.0442', '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 (23680, '2021-10-08', 2167, 22807, 1965, 17165, '-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 (23681, '2021-10-08', 2167, 22807, 1965, 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 (23682, '2021-10-08', 2037, 22808, 1965, 6389, '-4.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23683, '2021-10-08', 2037, 22808, 1965, 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 (23684, '2021-10-08', 2315, 22809, 1965, 2735, '-101.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23685, '2021-10-08', 2315, 22809, 1965, NULL, '103.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23686, '2021-10-08', 2730, 22810, 1965, 19267, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '45.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 (23687, '2021-10-08', 2641, 22811, 1965, 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 (23688, '2021-10-08', 3029, 22812, 1965, NULL, '1.0000', '4.7700', '4.7700', '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 (23689, '2021-10-08', 2416, 22813, 1966, 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 (23690, '2021-10-08', 2916, 22814, 1967, 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 (23691, '2021-10-08', 1670, 22815, 1967, 10163, '-2.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 (23692, '2021-10-08', 1670, 22815, 1967, NULL, '3.0000', '19.5000', '19.5000', '26.0000', '26.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 (23693, '2021-10-08', 1837, 22816, 1967, 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 (23694, '2021-10-08', 2416, 22817, 1967, 4745, '-8.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 (23695, '2021-10-08', 2416, 22817, 1967, NULL, '11.0000', '1.2000', '1.2000', '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 (23696, '2021-10-08', 1523, 22818, 1967, NULL, '2.0000', '213.0405', '213.0405', '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 (23697, '2021-10-08', 1845, 22819, 1968, 6222, '-6.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 (23698, '2021-10-08', 1845, 22819, 1968, NULL, '7.0000', '19.5000', '19.5000', '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 (23699, '2021-10-08', 2168, 22820, 1968, 1381, '1.0000', '27.2228', '27.2228', '39.0000', '39.0000', '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 (23700, '2021-10-08', 1505, 22821, 1968, 10379, '1.0000', '13.3062', '13.3062', '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 (23701, '2021-10-08', 2331, 22822, 1969, 3834, '-3.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 (23702, '2021-10-08', 2331, 22822, 1969, NULL, '4.0000', '12.0700', '12.0700', '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 (23703, '2021-10-08', 2350, 22823, 1970, 36379, '1.0000', '11.3925', '11.3925', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23704, '2021-10-08', 2094, 22824, 1970, 6002, '1.0000', '2.9000', '2.9000', '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 (23705, '2021-10-08', 7317, 22825, 1971, NULL, '1.0000', '19.5500', '19.5500', '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 (23706, '2021-10-08', 7753, 22826, 1971, NULL, '1.0000', '3.1400', '3.1400', '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 (23707, '2021-10-08', 1541, 22827, 1971, 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 (23708, '2021-10-08', 7639, 22828, 1971, 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 (23709, '2021-10-08', 7318, 22829, 1971, 35234, '1.0000', '12.3093', '12.3093', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23710, '2021-10-08', 7708, 22830, 1971, NULL, '1.0000', '6.1400', '6.1400', '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 (23711, '2021-10-08', 2906, 22831, 1971, 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 (23712, '2021-10-08', 2249, 22832, 1971, 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 (23713, '2021-10-08', 9272, 22833, 1971, NULL, '1.0000', '3.1000', '3.1000', '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 (23714, '2021-10-08', 7390, 22834, 1971, 30019, '1.0000', '18.2100', '18.2100', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23715, '2021-10-08', 7609, 22835, 1971, NULL, '1.0000', '4.3300', '4.3300', '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 (23716, '2021-10-08', 1590, 22836, 1971, 34520, '1.0000', '1.7100', '1.7100', '2.2000', '2.2000', '46.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23717, '2021-10-08', 7892, 22837, 1971, NULL, '1.0000', '4.2000', '4.2000', '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 (23718, '2021-10-08', 7628, 22838, 1971, NULL, '1.0000', '2.9100', '2.9100', '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 (23719, '2021-10-08', 7509, 22839, 1971, 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 (23720, '2021-10-08', 2821, 22840, 1971, 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 (23721, '2021-10-08', 7411, 22841, 1971, NULL, '1.0000', '1.3500', '1.3500', '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 (23722, '2021-10-08', 2288, 22842, 1971, NULL, '1.0000', '7.5900', '7.5900', '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 (23723, '2021-10-08', 7469, 22843, 1971, NULL, '1.0000', '10.8000', '10.8000', '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 (23724, '2021-10-08', 2384, 22844, 1971, 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 (23725, '2021-10-08', 2060, 22845, 1971, 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 (23726, '2021-10-08', 9563, 22846, 1972, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23727, '2021-10-08', 9563, 22847, 1972, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23728, '2021-10-08', 9563, 22848, 1972, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23729, '2021-10-08', 2712, 22849, 1973, 35941, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '64.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23730, '2021-10-08', 1876, 22850, 1973, 34418, '1.0000', '33.8475', '33.8475', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23731, '2021-10-08', 1546, 22851, 1973, 36944, '6.0000', '-47.8190', '-47.8190', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23732, '2021-10-08', 1504, 22852, 1973, 36943, '10.0000', '1.4097', '1.4097', '2.2000', '2.2000', '90.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23733, '2021-10-08', 1330, 22853, 1973, 3367, '2.0000', '2.8000', '2.8000', '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 (23734, '2021-10-08', 1544, 22854, 1973, 18702, '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 (23735, '2021-10-08', 2965, 22855, 1973, 21818, '2.0000', '5.0000', '5.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 (23736, '2021-10-08', 2965, 22855, 1973, NULL, '1.0000', '5.0000', '5.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 (23737, '2021-10-08', 1398, 22856, 1973, 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 (23738, '2021-10-08', 2221, 22857, 1973, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23739, '2021-10-08', 7524, 22858, 1973, NULL, '1.0000', '11.9500', '11.9500', '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 (23740, '2021-10-08', 1863, 22859, 1973, 36936, '1.0000', '1.1540', '1.1540', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23741, '2021-10-08', 7391, 22860, 1973, 33206, '1.0000', '-144.1150', '-144.1150', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23742, '2021-10-08', 1910, 22861, 1973, 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 (23743, '2021-10-08', 1501, 22862, 1973, 23580, '1.0000', '1566.1965', '1566.1965', '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 (23744, '2021-10-08', 1536, 22863, 1973, 36926, '10.0000', '64.8613', '64.8613', '5.2000', '5.2000', '40.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23745, '2021-10-08', 2681, 22864, 1973, 32247, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23746, '2021-10-08', 2315, 22865, 1973, 3069, '3.0000', '0.3300', '0.3300', '0.5100', '0.5100', '235.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23747, '2021-10-08', 2665, 22866, 1973, 36934, '1.0000', '23.7600', '23.7600', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23748, '2021-10-08', 1641, 22867, 1973, 34686, '10.0000', '76.5908', '76.5908', '1.3000', '1.3000', '67.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23749, '2021-10-08', 1863, 22868, 1973, 36936, '3.0000', '1.1540', '1.1540', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23750, '2021-10-08', 2655, 22869, 1973, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23751, '2021-10-08', 9461, 22870, 1973, 33213, '1.0000', '1.6000', '1.6000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23752, '2021-10-08', 1863, 22871, 1974, NULL, '2.0000', '1.4033', '1.4033', '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 (23753, '2021-10-08', 9503, 22872, 1974, 36638, '1.0000', '6.2638', '6.2638', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23754, '2021-10-08', 7849, 22873, 1974, 36641, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23755, '2021-10-08', 2353, 22874, 1974, 34929, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23756, '2021-10-08', 1501, 22875, 1974, NULL, '1.0000', '2.2111', '2.2111', '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 (23757, '2021-10-08', 7741, 22876, 1974, NULL, '1.0000', '1.2000', '1.2000', '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 (23758, '2021-10-08', 1863, 22877, 1974, NULL, '1.0000', '1.4033', '1.4033', '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 (23759, '2021-10-08', 2169, 22878, 1974, NULL, '1.0000', '1.1544', '1.1544', '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 (23760, '2021-10-08', 2559, 22879, 1974, 34614, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23761, '2021-10-08', 1573, 22880, 1974, 30676, '1.0000', '24.6200', '24.6200', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23762, '2021-10-08', 2699, 22881, 1974, 36635, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23763, '2021-10-08', 8454, 22882, 1974, NULL, '1.0000', '5.1700', '5.1700', '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 (23764, '2021-10-08', 1884, 22883, 1974, NULL, '1.0000', '5.1300', '5.1300', '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 (23765, '2021-10-08', 7609, 22884, 1974, NULL, '1.0000', '4.3300', '4.3300', '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 (23766, '2021-10-08', 7473, 22885, 1974, NULL, '2.0000', '9.2200', '9.2200', '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 (23767, '2021-10-08', 2638, 22886, 1974, NULL, '1.0000', '20.2067', '20.2067', '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 (23768, '2021-10-08', 2004, 22887, 1974, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23769, '2021-10-08', 1642, 22888, 1974, 13762, '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 (23770, '2021-10-08', 2320, 22889, 1974, 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 (23771, '2021-10-08', 2285, 22890, 1974, NULL, '1.0000', '35.8000', '35.8000', '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 (23772, '2021-10-08', 1382, 22891, 1974, 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 (23773, '2021-10-08', 1693, 22892, 1974, 34595, '1.0000', '7.8600', '7.8600', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23774, '2021-10-08', 7707, 22893, 1974, NULL, '1.0000', '7.0000', '7.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 (23775, '2021-10-08', 2169, 22894, 1974, NULL, '1.0000', '1.1544', '1.1544', '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 (23776, '2021-10-08', 2315, 22895, 1974, NULL, '4.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-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 (23777, '2021-10-08', 7482, 22896, 1975, 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 (23778, '2021-10-08', 1824, 22897, 1975, 36947, '1.0000', '30.1815', '30.1815', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23779, '2021-10-08', 1637, 22898, 1975, 36327, '1.0000', '239.8270', '239.8270', '14.0000', '14.0000', '17.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23780, '2021-10-08', 1592, 22899, 1975, 36393, '1.0000', '37.9490', '37.9490', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23781, '2021-10-08', 1863, 22900, 1975, 36936, '3.0000', '1.1540', '1.1540', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23782, '2021-10-08', 2712, 22901, 1975, 35941, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23783, '2021-10-08', 1342, 22902, 1975, 25038, '1.0000', '29.5000', '29.5000', '7.5000', '7.5000', '5.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 (23784, '2021-10-08', 1577, 22903, 1975, 36921, '1.0000', '1.9284', '1.9284', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23785, '2021-10-08', 1851, 22904, 1975, 32008, '1.0000', '13.2013', '13.2013', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23786, '2021-10-08', 2363, 22905, 1975, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23787, '2021-10-08', 2916, 22906, 1975, 36373, '1.0000', '14.1311', '14.1311', '20.0000', '20.0000', '17.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23788, '2021-10-08', 1602, 22907, 1975, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '55.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23789, '2021-10-08', 2350, 22908, 1975, 36379, '1.0000', '11.3925', '11.3925', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23790, '2021-10-08', 2273, 22909, 1975, 36919, '1.0000', '2.6700', '2.6700', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23791, '2021-10-08', 2233, 22910, 1975, 36916, '1.0000', '19.6338', '19.6338', '29.5000', '29.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23792, '2021-10-08', 2271, 22911, 1975, 36363, '1.0000', '12.0000', '12.0000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23793, '2021-10-08', 1904, 22912, 1975, 36920, '1.0000', '-97.4277', '-97.4277', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23794, '2021-10-08', 1910, 22913, 1975, 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 (23795, '2021-10-08', 2248, 22914, 1975, 36341, '1.0000', '3.3357', '3.3357', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23796, '2021-10-08', 1960, 22915, 1975, 4925, '2.0000', '3.5600', '3.5600', '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 (23797, '2021-10-08', 8933, 22916, 1975, NULL, '2.0000', '10.0000', '10.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 (23798, '2021-10-08', 1347, 22917, 1975, NULL, '4.0000', '4.0713', '4.0713', '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 (23799, '2021-10-08', 2331, 22918, 1975, 36328, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23800, '2021-10-08', 2010, 22919, 1975, 27316, '1.0000', '1.2933', '1.2933', '1.5800', '1.5800', '16.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23801, '2021-10-08', 8452, 22920, 1976, NULL, '1.0000', '4.1500', '4.1500', '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 (23802, '2021-10-08', 2315, 22921, 1976, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23803, '2021-10-08', 7317, 22922, 1976, NULL, '1.0000', '19.5500', '19.5500', '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 (23804, '2021-10-08', 8036, 22923, 1976, 35188, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23805, '2021-10-08', 8308, 22924, 1976, NULL, '2.0000', '11.0000', '11.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 (23806, '2021-10-08', 7514, 22925, 1976, NULL, '1.0000', '12.9983', '12.9983', '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 (23807, '2021-10-08', 7674, 22926, 1976, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '215.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23808, '2021-10-08', 7554, 22927, 1976, 36073, '4.0000', '3.0308', '3.0308', '2.2000', '2.2000', '19.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23809, '2021-10-08', 9265, 22928, 1976, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23810, '2021-10-08', 9183, 22929, 1976, 30188, '1.0000', '8.3000', '8.3000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23811, '2021-10-08', 8413, 22930, 1976, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23812, '2021-10-08', 7690, 22931, 1976, NULL, '3.0000', '5.3000', '5.3000', '17.5000', '17.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 (23813, '2021-10-08', 7532, 22932, 1976, NULL, '1.0000', '9.0500', '9.0500', '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 (23814, '2021-10-08', 8097, 22933, 1976, NULL, '3.0000', '3.3994', '3.3994', '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 (23815, '2021-10-08', 9202, 22934, 1976, NULL, '1.0000', '3.5000', '3.5000', '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 (23816, '2021-10-08', 8200, 22935, 1976, NULL, '2.0000', '8.5500', '8.5500', '8.5000', '8.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 (23817, '2021-10-08', 7743, 22936, 1976, NULL, '1.0000', '7.3900', '7.3900', '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 (23818, '2021-10-08', 7531, 22937, 1976, NULL, '3.0000', '16.5000', '16.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 (23819, '2021-10-08', 7482, 22938, 1976, 36029, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23820, '2021-10-08', 7963, 22939, 1976, NULL, '1.0000', '4.2500', '4.2500', '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 (23821, '2021-10-08', 7350, 22940, 1976, NULL, '2.0000', '30.4000', '30.4000', '40.5000', '40.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 (23822, '2021-10-08', 7368, 22941, 1976, 30004, '1.0000', '11.4000', '11.4000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23823, '2021-10-08', 2104, 22942, 1976, NULL, '4.0000', '0.2000', '0.2000', '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 (23824, '2021-10-08', 7514, 22943, 1976, NULL, '1.0000', '12.9983', '12.9983', '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 (23825, '2021-10-08', 7787, 22944, 1976, NULL, '1.0000', '3.9600', '3.9600', '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 (23826, '2021-10-08', 7411, 22945, 1976, NULL, '2.0000', '1.3500', '1.3500', '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 (23827, '2021-10-08', 7674, 22946, 1976, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '215.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23828, '2021-10-08', 7674, 22947, 1976, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '215.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23829, '2021-10-08', 2104, 22948, 1976, NULL, '2.0000', '0.2000', '0.2000', '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 (23830, '2021-10-08', 1541, 22949, 1976, 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 (23831, '2021-10-08', 7872, 22950, 1976, 31012, '1.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23832, '2021-10-08', 7638, 22951, 1976, 30935, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23833, '2021-10-08', 8485, 22952, 1976, NULL, '2.0000', '7.0400', '7.0400', '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 (23834, '2021-10-08', 7427, 22953, 1976, 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 (23835, '2021-10-08', 7959, 22954, 1976, NULL, '2.0000', '9.6000', '9.6000', '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 (23836, '2021-10-08', 7675, 22955, 1976, NULL, '1.0000', '11.4300', '11.4300', '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 (23837, '2021-10-08', 7715, 22956, 1976, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23838, '2021-10-08', 8620, 22957, 1976, NULL, '1.0000', '1.3300', '1.3300', '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 (23839, '2021-10-08', 8269, 22958, 1976, NULL, '1.0000', '10.0000', '10.0000', '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 (23840, '2021-10-08', 7666, 22959, 1976, NULL, '1.0000', '10.0000', '10.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 (23841, '2021-10-08', 9092, 22960, 1976, NULL, '2.0000', '5.2900', '5.2900', '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 (23842, '2021-10-08', 7711, 22961, 1976, NULL, '1.0000', '0.3900', '0.3900', '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 (23843, '2021-10-08', 9092, 22962, 1976, NULL, '1.0000', '5.2900', '5.2900', '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 (23844, '2021-10-08', 8166, 22963, 1976, NULL, '1.0000', '4.6000', '4.6000', '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 (23845, '2021-10-08', 9187, 22964, 1976, NULL, '1.0000', '7.3000', '7.3000', '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 (23846, '2021-10-08', 8293, 22965, 1976, NULL, '1.0000', '24.7500', '24.7500', '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 (23847, '2021-10-08', 2296, 22966, 1976, 34515, '2.0000', '12.8812', '12.8812', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23848, '2021-10-08', 8965, 22967, 1976, NULL, '1.0000', '52.9900', '52.9900', '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 (23849, '2021-10-08', 7496, 22968, 1976, NULL, '1.0000', '0.9600', '0.9600', '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 (23850, '2021-10-08', 8166, 22969, 1976, NULL, '1.0000', '4.6000', '4.6000', '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 (23851, '2021-10-08', 8381, 22970, 1976, NULL, '1.0000', '12.7400', '12.7400', '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 (23852, '2021-10-08', 7355, 22971, 1976, NULL, '1.0000', '11.6400', '11.6400', '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 (23853, '2021-10-08', 9401, 22972, 1976, NULL, '1.0000', '3.5000', '3.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 (23854, '2021-10-08', 7554, 22973, 1976, 36073, '10.0000', '3.0308', '3.0308', '2.2000', '2.2000', '13.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23855, '2021-10-08', 8596, 22974, 1976, NULL, '1.0000', '17.0000', '17.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 (23856, '2021-10-08', 7675, 22975, 1977, NULL, '1.0000', '11.4300', '11.4300', '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 (23857, '2021-10-08', 7674, 22976, 1977, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '212.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23858, '2021-10-08', 1665, 22977, 1978, 36766, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23859, '2021-10-08', 1665, 22978, 1978, 36766, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23860, '2021-10-08', 1531, 22979, 1978, NULL, '2.0000', '0.9600', '0.9600', '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 (23861, '2021-10-08', 1812, 22980, 1978, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23862, '2021-10-08', 7446, 22981, 1978, NULL, '1.0000', '1.3100', '1.3100', '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 (23863, '2021-10-08', 2546, 22982, 1978, 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 (23864, '2021-10-08', 2237, 22983, 1978, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23865, '2021-10-08', 2660, 22984, 1978, 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 (23866, '2021-10-08', 1863, 22985, 1978, NULL, '1.0000', '1.4033', '1.4033', '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 (23867, '2021-10-08', 2907, 22986, 1978, 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 (23868, '2021-10-08', 2136, 22987, 1978, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23869, '2021-10-08', 1966, 22988, 1978, 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 (23870, '2021-10-08', 1519, 22989, 1978, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23871, '2021-10-08', 7981, 22990, 1978, NULL, '5.0000', '6.0000', '6.0000', '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 (23872, '2021-10-08', 8773, 22991, 1978, 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 (23873, '2021-10-08', 8746, 22992, 1978, NULL, '1.0000', '3.8000', '3.8000', '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 (23874, '2021-10-08', 1702, 22993, 1978, NULL, '1.0000', '315.0900', '315.0900', '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 (23875, '2021-10-08', 1667, 22994, 1978, NULL, '1.0000', '1404.9249', '1404.9249', '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 (23876, '2021-10-08', 2320, 22995, 1978, 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 (23877, '2021-10-08', 1621, 22996, 1978, 23176, '1.0000', '46.4871', '46.4871', '9.0000', '9.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 (23878, '2021-10-08', 2280, 22997, 1978, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '15.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 (23879, '2021-10-08', 2699, 22998, 1978, 36635, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23880, '2021-10-08', 2136, 22999, 1978, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23881, '2021-10-08', 2302, 23000, 1978, 23683, '1.0000', '5.2000', '5.2000', '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 (23882, '2021-10-08', 2660, 23001, 1978, 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 (23883, '2021-10-08', 2974, 23002, 1978, 23155, '1.0000', '5.0000', '5.0000', '8.0000', '8.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 (23884, '2021-10-08', 7633, 23003, 1979, NULL, '1.0000', '2.8700', '2.8700', '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 (23885, '2021-10-08', 7859, 23004, 1979, NULL, '1.0000', '3.6000', '3.6000', '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 (23886, '2021-10-08', 8866, 23005, 1979, NULL, '1.0000', '0.4300', '0.4300', '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 (23887, '2021-10-08', 9295, 23006, 1980, NULL, '1.0000', '4.4000', '4.4000', '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 (23888, '2021-10-08', 2315, 23007, 1981, 3069, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '234.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23889, '2021-10-08', 1855, 23008, 1981, 4986, '1.0000', '1.4000', '1.4000', '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 (23890, '2021-10-08', 1361, 23009, 1981, 3400, '1.0000', '59.0300', '59.0300', '78.0000', '78.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23891, '2021-10-08', 2656, 23010, 1981, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23892, '2021-10-08', 1689, 23011, 1981, 36351, '1.0000', '12.6079', '12.6079', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23893, '2021-10-08', 7491, 23012, 1981, NULL, '1.0000', '4.8000', '4.8000', '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 (23894, '2021-10-08', 1577, 23013, 1981, 36921, '1.0000', '1.9284', '1.9284', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23895, '2021-10-08', 1935, 23014, 1981, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23896, '2021-10-08', 2656, 23015, 1981, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23897, '2021-10-08', 1592, 23016, 1981, 36393, '1.0000', '37.9490', '37.9490', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23898, '2021-10-08', 1689, 23017, 1981, 36351, '1.0000', '12.6079', '12.6079', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23899, '2021-10-08', 1602, 23018, 1981, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '54.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23900, '2021-10-08', 1523, 23019, 1981, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '12.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 (23901, '2021-10-08', 7753, 23020, 1981, NULL, '1.0000', '3.1400', '3.1400', '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 (23902, '2021-10-08', 1928, 23021, 1981, 36382, '1.0000', '55.2437', '55.2437', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23903, '2021-10-08', 2713, 23022, 1981, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23904, '2021-10-08', 1577, 23023, 1981, 36921, '1.0000', '1.9284', '1.9284', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23905, '2021-10-08', 1687, 23024, 1981, NULL, '1.0000', '15.3580', '15.3580', '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 (23906, '2021-10-08', 2713, 23025, 1981, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23907, '2021-10-08', 2608, 23026, 1981, 36357, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23908, '2021-10-08', 2336, 23027, 1981, 3895, '2.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 (23909, '2021-10-08', 9103, 23028, 1982, NULL, '1.0000', '32.6700', '32.6700', '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 (23910, '2021-10-08', 2262, 23029, 1982, 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 (23911, '2021-10-08', 2302, 23030, 1982, 23683, '1.0000', '5.2000', '5.2000', '7.0000', '7.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 (23912, '2021-10-09', 1533, 23031, 1983, 22263, '1.0000', '2.5917', '2.5917', '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 (23913, '2021-10-09', 2315, 23032, 1983, 2735, '-103.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23914, '2021-10-09', 2315, 23032, 1983, NULL, '105.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23915, '2021-10-09', 1561, 23033, 1983, 1636, '1.0000', '27.0000', '27.0000', '36.0000', '36.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 (23916, '2021-10-09', 1824, 23034, 1983, NULL, '1.0000', '5.2000', '5.2000', '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 (23917, '2021-10-09', 2167, 23035, 1983, 17165, '-6.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 (23918, '2021-10-09', 2167, 23035, 1983, NULL, '7.0000', '2.2000', '2.2000', '3.0000', '3.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 (23919, '2021-10-09', 2821, 23036, 1983, 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 (23920, '2021-10-09', 8608, 23037, 1983, NULL, '1.0000', '0.9000', '0.9000', '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 (23921, '2021-10-09', 1342, 23038, 1983, 238, '1.0000', '6.8074', '6.8074', '7.5000', '7.5000', '0.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 (23922, '2021-10-09', 1727, 23039, 1983, NULL, '2.0000', '2.7600', '2.7600', '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 (23923, '2021-10-09', 1812, 23040, 1983, 8224, '-12.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 (23924, '2021-10-09', 1812, 23040, 1983, NULL, '13.0000', '7.8900', '7.8900', '10.5000', '10.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 (23925, '2021-10-09', 1637, 23041, 1983, 13466, '1.0000', '10.2000', '10.2000', '14.0000', '14.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 (23926, '2021-10-09', 2643, 23042, 1983, NULL, '2.0000', '0.8700', '0.8700', '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 (23927, '2021-10-09', 1746, 23043, 1983, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '25.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 (23928, '2021-10-09', 7411, 23044, 1983, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23929, '2021-10-09', 2258, 23045, 1983, NULL, '1.0000', '0.3500', '0.3500', '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 (23930, '2021-10-09', 1687, 23046, 1983, 5785, '-5.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 (23931, '2021-10-09', 1687, 23046, 1983, NULL, '6.0000', '165.9024', '165.9024', '15.5000', '15.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 (23932, '2021-10-09', 2943, 23047, 1983, 19987, '-3.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 (23933, '2021-10-09', 2943, 23047, 1983, NULL, '4.0000', '2.1800', '2.1800', '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 (23934, '2021-10-09', 2646, 23048, 1983, NULL, '2.0000', '6.0000', '6.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 (23935, '2021-10-09', 7954, 23049, 1983, NULL, '2.0000', '3.0000', '3.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 (23936, '2021-10-09', 1348, 23050, 1983, 244, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23937, '2021-10-09', 2285, 23051, 1983, 2945, '-6.0000', '35.8000', '35.8000', '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 (23938, '2021-10-09', 2285, 23051, 1983, NULL, '7.0000', '35.8000', '35.8000', '47.0000', '47.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 (23939, '2021-10-09', 2730, 23052, 1983, 19267, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '43.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 (23940, '2021-10-09', 2810, 23053, 1983, 16543, '-5.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 (23941, '2021-10-09', 2810, 23053, 1983, NULL, '10.0000', '2.2000', '2.2000', '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 (23942, '2021-10-09', 1812, 23054, 1983, 8224, '-12.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 (23943, '2021-10-09', 1812, 23054, 1983, NULL, '13.0000', '7.8900', '7.8900', '10.5000', '10.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 (23944, '2021-10-09', 2662, 23055, 1983, 12036, '-6.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 (23945, '2021-10-09', 2662, 23055, 1983, NULL, '7.0000', '4.5000', '4.5000', '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 (23946, '2021-10-09', 8026, 23056, 1984, NULL, '1.0000', '16.5000', '16.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 (23947, '2021-10-09', 7728, 23057, 1984, 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 (23948, '2021-10-09', 1787, 23058, 1984, NULL, '2.0000', '0.8100', '0.8100', '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 (23949, '2021-10-09', 2829, 23059, 1984, NULL, '1.0000', '24.7175', '24.7175', '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 (23950, '2021-10-09', 1868, 23060, 1984, 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 (23951, '2021-10-09', 7408, 23061, 1984, NULL, '1.0000', '1.0000', '1.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 (23952, '2021-10-09', 1872, 23062, 1984, 34942, '1.0000', '8.1540', '8.1540', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23953, '2021-10-09', 1837, 23063, 1984, 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 (23954, '2021-10-09', 8765, 23064, 1984, 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 (23955, '2021-10-09', 2015, 23065, 1984, 25162, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.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 (23956, '2021-10-09', 1381, 23066, 1984, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23957, '2021-10-09', 1529, 23067, 1984, NULL, '1.0000', '36.4099', '36.4099', '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 (23958, '2021-10-09', 1868, 23068, 1984, 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 (23959, '2021-10-09', 8133, 23069, 1984, 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 (23960, '2021-10-09', 9432, 23070, 1984, 30478, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23961, '2021-10-09', 9443, 23071, 1984, 30485, '1.0000', '30.0000', '30.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23962, '2021-10-09', 2315, 23072, 1984, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23963, '2021-10-09', 1425, 23073, 1984, 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 (23964, '2021-10-09', 2169, 23074, 1984, NULL, '1.0000', '1.1500', '1.1500', '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 (23965, '2021-10-09', 1805, 23075, 1984, NULL, '1.0000', '4.5244', '4.5244', '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 (23966, '2021-10-09', 9550, 23076, 1984, 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 (23967, '2021-10-09', 2293, 23077, 1984, NULL, '5.0000', '1.4400', '1.4400', '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 (23968, '2021-10-09', 7591, 23078, 1984, NULL, '2.0000', '2.7500', '2.7500', '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 (23969, '2021-10-09', 2169, 23079, 1984, NULL, '1.0000', '1.1500', '1.1500', '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 (23970, '2021-10-09', 2089, 23080, 1985, 33371, '1.0000', '6.7300', '6.7300', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23971, '2021-10-09', 2252, 23081, 1985, NULL, '1.0000', '9.3000', '9.3000', '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 (23972, '2021-10-09', 2991, 23082, 1985, 22612, '2.0000', '0.5700', '0.5700', '1.0000', '1.0000', '90.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 (23973, '2021-10-09', 1863, 23083, 1985, NULL, '2.0000', '1.4033', '1.4033', '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 (23974, '2021-10-09', 7550, 23084, 1985, NULL, '4.0000', '4.7300', '4.7300', '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 (23975, '2021-10-09', 8133, 23085, 1985, 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 (23976, '2021-10-09', 8166, 23086, 1986, NULL, '2.0000', '4.6000', '4.6000', '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 (23977, '2021-10-09', 2368, 23087, 1986, NULL, '1.0000', '13.0000', '13.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 (23978, '2021-10-09', 3001, 23088, 1986, NULL, '2.0000', '1.5000', '1.5000', '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 (23979, '2021-10-09', 7753, 23089, 1986, NULL, '1.0000', '3.1400', '3.1400', '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 (23980, '2021-10-09', 9407, 23090, 1986, 30926, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23981, '2021-10-09', 8097, 23091, 1986, NULL, '2.0000', '3.3994', '3.3994', '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 (23982, '2021-10-09', 7527, 23092, 1986, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23983, '2021-10-09', 1837, 23093, 1986, 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 (23984, '2021-10-09', 2102, 23094, 1986, 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 (23985, '2021-10-09', 9478, 23095, 1987, NULL, '1.0000', '9.0000', '9.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 (23986, '2021-10-09', 9480, 23096, 1987, NULL, '1.0000', '8.5000', '8.5000', '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 (23987, '2021-10-09', 2331, 23097, 1987, 3834, '-4.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 (23988, '2021-10-09', 2331, 23097, 1987, NULL, '5.0000', '12.0700', '12.0700', '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 (23989, '2021-10-09', 1837, 23098, 1987, 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 (23990, '2021-10-09', 2289, 23099, 1987, 2949, '-8.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 (23991, '2021-10-09', 2289, 23099, 1987, NULL, '12.0000', '0.3300', '0.3300', '0.5000', '0.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 (23992, '2021-10-09', 9028, 23100, 1988, NULL, '1.0000', '9.0000', '9.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 (23993, '2021-10-09', 8077, 23101, 1988, NULL, '1.0000', '11.5000', '11.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 (23994, '2021-10-09', 7408, 23102, 1988, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23995, '2021-10-09', 8269, 23103, 1988, NULL, '1.0000', '10.0000', '10.0000', '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 (23996, '2021-10-09', 9275, 23104, 1988, NULL, '4.0000', '6.3000', '6.3000', '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 (23997, '2021-10-09', 7715, 23105, 1988, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '22.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23998, '2021-10-09', 2526, 23106, 1988, 36774, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23999, '2021-10-09', 7815, 23107, 1988, NULL, '1.0000', '13.0000', '13.0000', '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 (24000, '2021-10-09', 7844, 23108, 1988, 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 (24001, '2021-10-09', 2315, 23109, 1988, NULL, '4.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-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 (24002, '2021-10-09', 9092, 23110, 1988, NULL, '2.0000', '5.2900', '5.2900', '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 (24003, '2021-10-09', 7588, 23111, 1988, NULL, '1.0000', '7.6111', '7.6111', '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 (24004, '2021-10-09', 8350, 23112, 1988, NULL, '1.0000', '12.0000', '12.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 (24005, '2021-10-09', 7671, 23113, 1988, NULL, '2.0000', '15.5000', '15.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 (24006, '2021-10-09', 7474, 23114, 1988, NULL, '1.0000', '67.6200', '67.6200', '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 (24007, '2021-10-09', 2287, 23115, 1988, 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 (24008, '2021-10-09', 7459, 23116, 1988, NULL, '3.0000', '40.3500', '40.3500', '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 (24009, '2021-10-09', 1703, 23117, 1988, 37392, '1.0000', '7.3400', '7.3400', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24010, '2021-10-09', 1689, 23118, 1988, NULL, '1.0000', '12.3500', '12.3500', '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 (24011, '2021-10-09', 7385, 23119, 1988, 36048, '10.0000', '933.1354', '933.1354', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24012, '2021-10-09', 7514, 23120, 1988, NULL, '1.0000', '12.9983', '12.9983', '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 (24013, '2021-10-09', 7799, 23121, 1988, NULL, '1.0000', '2.0000', '2.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 (24014, '2021-10-09', 7672, 23122, 1988, NULL, '1.0000', '1.0200', '1.0200', '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 (24015, '2021-10-09', 7777, 23123, 1988, NULL, '1.0000', '9.5000', '9.5000', '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 (24016, '2021-10-09', 7931, 23124, 1988, NULL, '1.0000', '0.2500', '0.2500', '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 (24017, '2021-10-09', 7482, 23125, 1988, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24018, '2021-10-09', 1855, 23126, 1988, 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 (24019, '2021-10-09', 9508, 23127, 1988, NULL, '1.0000', '3.4000', '3.4000', '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 (24020, '2021-10-09', 9562, 23128, 1989, 36680, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24021, '2021-10-09', 9563, 23129, 1989, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24022, '2021-10-09', 9563, 23130, 1989, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24023, '2021-10-09', 9563, 23131, 1989, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24024, '2021-10-09', 2506, 23132, 1989, 36785, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24025, '2021-10-09', 2079, 23133, 1989, 32797, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24026, '2021-10-09', 9158, 23134, 1990, NULL, '1.0000', '5.8910', '5.8910', '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 (24027, '2021-10-09', 2315, 23135, 1991, 2735, '-105.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24028, '2021-10-09', 2315, 23135, 1991, NULL, '109.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-109.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24029, '2021-10-09', 7447, 23136, 1992, NULL, '24.0000', '19.1100', '19.1100', '2.0000', '2.0000', '-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 (24030, '2021-10-09', 7411, 23137, 1992, NULL, '5.0000', '1.3500', '1.3500', '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 (24031, '2021-10-09', 9329, 23138, 1992, NULL, '1.0000', '5.8000', '5.8000', '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 (24032, '2021-10-09', 8335, 23139, 1992, NULL, '1.0000', '21.7000', '21.7000', '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 (24033, '2021-10-09', 8282, 23140, 1992, NULL, '1.0000', '12.0000', '12.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 (24034, '2021-10-09', 8596, 23141, 1992, NULL, '1.0000', '17.0000', '17.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 (24035, '2021-10-09', 3058, 23142, 1993, 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 (24036, '2021-10-09', 2135, 23143, 1993, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24037, '2021-10-09', 1523, 23144, 1993, NULL, '1.0000', '1.0061', '1.0061', '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 (24038, '2021-10-09', 2020, 23145, 1993, NULL, '1.0000', '7.8240', '7.8240', '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 (24039, '2021-10-09', 1533, 23146, 1993, 29632, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24040, '2021-10-09', 1912, 23147, 1993, NULL, '2.0000', '0.6591', '0.6591', '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 (24041, '2021-10-09', 2169, 23148, 1993, NULL, '1.0000', '1.1500', '1.1500', '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 (24042, '2021-10-09', 1528, 23149, 1993, 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 (24043, '2021-10-09', 1544, 23150, 1993, 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 (24044, '2021-10-09', 2169, 23151, 1993, NULL, '1.0000', '1.1500', '1.1500', '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 (24045, '2021-10-09', 2951, 23152, 1993, 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 (24046, '2021-10-09', 2237, 23153, 1993, 34951, '2.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24047, '2021-10-09', 1592, 23154, 1993, 34930, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24048, '2021-10-09', 2285, 23155, 1993, NULL, '1.0000', '35.8000', '35.8000', '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 (24049, '2021-10-09', 1519, 23156, 1993, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24050, '2021-10-09', 7564, 23157, 1993, 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 (24051, '2021-10-09', 2169, 23158, 1993, NULL, '1.0000', '1.1500', '1.1500', '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 (24052, '2021-10-09', 1557, 23159, 1994, 29633, '1.0000', '7.8420', '7.8420', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24053, '2021-10-09', 1921, 23160, 1994, 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 (24054, '2021-10-09', 7342, 23161, 1994, NULL, '1.0000', '15.6000', '15.6000', '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 (24055, '2021-10-09', 1999, 23162, 1994, 22550, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '1.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 (24056, '2021-10-09', 7819, 23163, 1994, NULL, '2.0000', '9.5000', '9.5000', '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 (24057, '2021-10-09', 2060, 23164, 1994, 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 (24058, '2021-10-09', 8207, 23165, 1994, NULL, '1.0000', '0.0000', '0.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 (24059, '2021-10-09', 2167, 23166, 1994, 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 (24060, '2021-10-09', 1499, 23167, 1994, NULL, '2.0000', '0.4835', '0.4835', '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 (24061, '2021-10-09', 2986, 23168, 1994, 22609, '2.0000', '0.7700', '0.7700', '1.0000', '1.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 (24062, '2021-10-09', 2167, 23169, 1994, 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 (24063, '2021-10-09', 9399, 23170, 1994, 34949, '2.0000', '0.9800', '0.9800', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24064, '2021-10-09', 1863, 23171, 1994, NULL, '5.0000', '1.4033', '1.4033', '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 (24065, '2021-10-09', 1409, 23172, 1994, 37443, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24066, '2021-10-09', 7482, 23173, 1994, 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 (24067, '2021-10-09', 1577, 23174, 1994, NULL, '2.0000', '2.5218', '2.5218', '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 (24068, '2021-10-09', 1863, 23175, 1994, NULL, '1.0000', '1.4033', '1.4033', '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 (24069, '2021-10-09', 1529, 23176, 1994, NULL, '1.0000', '36.4099', '36.4099', '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 (24070, '2021-10-09', 2655, 23177, 1994, 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 (24071, '2021-10-09', 7913, 23178, 1995, NULL, '1.0000', '2.5500', '2.5500', '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 (24072, '2021-10-09', 2293, 23179, 1995, NULL, '2.0000', '1.4400', '1.4400', '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 (24073, '2021-10-09', 8746, 23180, 1995, NULL, '1.0000', '3.8000', '3.8000', '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 (24074, '2021-10-09', 2272, 23181, 1995, 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 (24075, '2021-10-09', 7411, 23182, 1995, NULL, '1.0000', '1.3500', '1.3500', '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 (24076, '2021-10-09', 1935, 23183, 1995, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24077, '2021-10-09', 1602, 23184, 1995, NULL, '1.0000', '7.0310', '7.0310', '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 (24078, '2021-10-09', 1326, 23185, 1995, NULL, '1.0000', '3.0300', '3.0300', '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 (24079, '2021-10-09', 2662, 23186, 1995, 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 (24080, '2021-10-09', 1805, 23187, 1995, NULL, '1.0000', '4.5244', '4.5244', '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 (24081, '2021-10-09', 2916, 23188, 1995, 34035, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24082, '2021-10-09', 1950, 23189, 1995, NULL, '1.0000', '3.5525', '3.5525', '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 (24083, '2021-10-09', 7411, 23190, 1995, NULL, '1.0000', '1.3500', '1.3500', '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 (24084, '2021-10-09', 1665, 23191, 1995, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24085, '2021-10-09', 2327, 23192, 1995, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '12.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 (24086, '2021-10-09', 2730, 23193, 1995, 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 (24087, '2021-10-09', 1499, 23194, 1996, 31996, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24088, '2021-10-09', 7963, 23195, 1996, NULL, '1.0000', '14.7000', '14.7000', '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 (24089, '2021-10-09', 2959, 23196, 1996, 35930, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24090, '2021-10-09', 1432, 23197, 1996, 36905, '1.0000', '9.2656', '9.2656', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24091, '2021-10-09', 1508, 23198, 1996, 1511, '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 (24092, '2021-10-09', 2261, 23199, 1996, 17843, '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 (24093, '2021-10-09', 1637, 23200, 1996, 36327, '1.0000', '239.8270', '239.8270', '14.0000', '14.0000', '16.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24094, '2021-10-09', 1608, 23201, 1996, 11877, '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 (24095, '2021-10-09', 2350, 23202, 1996, 36379, '1.0000', '11.3925', '11.3925', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24096, '2021-10-09', 2713, 23203, 1996, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24097, '2021-10-09', 1884, 23204, 1996, 5010, '1.0000', '4.8500', '4.8500', '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 (24098, '2021-10-09', 1825, 23205, 1996, 25039, '1.0000', '4.5675', '4.5675', '7.0000', '7.0000', '0.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 (24099, '2021-10-09', 1577, 23207, 1996, 36921, '1.0000', '1.9284', '1.9284', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24100, '2021-10-09', 2003, 23208, 1996, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24101, '2021-10-09', 7892, 23209, 1997, NULL, '1.0000', '4.2000', '4.2000', '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 (24102, '2021-10-09', 7514, 23210, 1997, NULL, '1.0000', '12.9983', '12.9983', '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 (24103, '2021-10-09', 2251, 23211, 1997, 35243, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24104, '2021-10-09', 7753, 23212, 1997, NULL, '1.0000', '3.1400', '3.1400', '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 (24105, '2021-10-09', 7554, 23213, 1997, 36073, '9.0000', '3.0308', '3.0308', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24106, '2021-10-09', 7554, 23213, 1997, NULL, '1.0000', '3.0308', '3.0308', '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 (24107, '2021-10-09', 2060, 23214, 1997, 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 (24108, '2021-10-09', 2906, 23215, 1997, 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 (24109, '2021-10-09', 7709, 23216, 1997, NULL, '2.0000', '35.8000', '35.8000', '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 (24110, '2021-10-09', 7496, 23217, 1997, NULL, '1.0000', '0.9600', '0.9600', '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 (24111, '2021-10-09', 1904, 23218, 1997, 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 (24112, '2021-10-09', 2972, 23219, 1997, 37370, '1.0000', '22.7100', '22.7100', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24113, '2021-10-09', 7609, 23220, 1997, NULL, '1.0000', '4.3300', '4.3300', '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 (24114, '2021-10-09', 2993, 23221, 1997, 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 (24115, '2021-10-09', 7819, 23222, 1997, NULL, '1.0000', '9.5000', '9.5000', '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 (24116, '2021-10-09', 8168, 23223, 1997, NULL, '3.0000', '5.2500', '5.2500', '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 (24117, '2021-10-09', 1840, 23224, 1997, 33725, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '177.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24118, '2021-10-09', 8595, 23225, 1997, NULL, '1.0000', '4.2100', '4.2100', '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 (24119, '2021-10-09', 7482, 23226, 1997, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24120, '2021-10-09', 7652, 23227, 1997, NULL, '8.0000', '40.3000', '40.3000', '1.2000', '1.2000', '-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 (24121, '2021-10-09', 8435, 23228, 1997, NULL, '1.0000', '5.7000', '5.7000', '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 (24122, '2021-10-09', 8756, 23229, 1997, NULL, '1.0000', '5.9323', '5.9323', '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 (24123, '2021-10-09', 7954, 23230, 1997, NULL, '4.0000', '21.0000', '21.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 (24124, '2021-10-09', 7657, 23231, 1997, NULL, '1.0000', '5.4700', '5.4700', '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 (24125, '2021-10-09', 8200, 23232, 1997, NULL, '2.0000', '8.5500', '8.5500', '8.5000', '8.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 (24126, '2021-10-09', 7713, 23233, 1997, 37398, '2.0000', '0.4204', '0.4204', '0.6000', '0.6000', '55.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24127, '2021-10-09', 7674, 23234, 1997, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '211.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24128, '2021-10-09', 7506, 23235, 1997, NULL, '1.0000', '15.0000', '15.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 (24129, '2021-10-09', 7744, 23236, 1997, 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 (24130, '2021-10-09', 7782, 23237, 1997, NULL, '1.0000', '5.0000', '5.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 (24131, '2021-10-09', 7514, 23238, 1997, NULL, '1.0000', '12.9983', '12.9983', '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 (24132, '2021-10-09', 8596, 23239, 1997, NULL, '1.0000', '17.0000', '17.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 (24133, '2021-10-09', 9506, 23240, 1997, 33533, '1.0000', '4.9800', '4.9800', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24134, '2021-10-09', 7671, 23241, 1997, NULL, '2.0000', '15.5000', '15.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 (24135, '2021-10-09', 7355, 23242, 1997, NULL, '1.0000', '11.6400', '11.6400', '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 (24136, '2021-10-09', 1981, 23243, 1997, NULL, '1.0000', '8.5000', '8.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 (24137, '2021-10-09', 2506, 23244, 1997, 36785, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24138, '2021-10-09', 7464, 23245, 1997, NULL, '1.0000', '2.2800', '2.2800', '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 (24139, '2021-10-09', 2132, 23246, 1997, NULL, '1.0000', '22.0000', '22.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 (24140, '2021-10-09', 7864, 23247, 1997, NULL, '2.0000', '2.9000', '2.9000', '23.5000', '23.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 (24141, '2021-10-09', 7558, 23248, 1997, NULL, '6.0000', '2.2000', '2.2000', '3.0000', '3.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 (24142, '2021-10-09', 7641, 23249, 1997, NULL, '1.0000', '6.5038', '6.5038', '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 (24143, '2021-10-09', 2060, 23250, 1997, 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 (24144, '2021-10-09', 7530, 23251, 1997, NULL, '1.0000', '5.7200', '5.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 (24145, '2021-10-09', 8594, 23252, 1997, 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 (24146, '2021-10-09', 9337, 23253, 1997, 36077, '3.0000', '6.8067', '6.8067', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24147, '2021-10-09', 1696, 23254, 1997, 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 (24148, '2021-10-09', 7514, 23255, 1997, NULL, '1.0000', '12.9983', '12.9983', '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 (24149, '2021-10-09', 7892, 23256, 1997, NULL, '1.0000', '4.2000', '4.2000', '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 (24150, '2021-10-09', 7671, 23257, 1997, NULL, '1.0000', '15.5000', '15.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 (24151, '2021-10-09', 7712, 23258, 1997, NULL, '1.0000', '0.3300', '0.3300', '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 (24152, '2021-10-09', 8188, 23259, 1997, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24153, '2021-10-09', 9329, 23260, 1997, NULL, '1.0000', '5.8000', '5.8000', '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 (24154, '2021-10-09', 2509, 23261, 1997, NULL, '1.0000', '13.7600', '13.7600', '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 (24155, '2021-10-09', 7914, 23262, 1997, NULL, '1.0000', '5.4114', '5.4114', '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 (24156, '2021-10-09', 7672, 23263, 1997, NULL, '1.0000', '1.0200', '1.0200', '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 (24157, '2021-10-09', 7752, 23264, 1997, 37437, '1.0000', '2.0250', '2.0250', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24158, '2021-10-09', 1577, 23265, 1997, NULL, '2.0000', '2.1000', '2.1000', '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 (24159, '2021-10-09', 3036, 23266, 1997, 30783, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24160, '2021-10-09', 7411, 23267, 1997, NULL, '1.0000', '1.3500', '1.3500', '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 (24161, '2021-10-09', 7671, 23268, 1997, NULL, '2.0000', '15.5000', '15.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 (24162, '2021-10-09', 8042, 23269, 1997, NULL, '1.0000', '33.8200', '33.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 (24163, '2021-10-09', 2656, 23270, 1997, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24164, '2021-10-09', 8119, 23271, 1998, 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 (24165, '2021-10-09', 1620, 23272, 1998, 34019, '2.0000', '2.2300', '2.2300', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24166, '2021-10-09', 7819, 23273, 1998, NULL, '1.0000', '9.5000', '9.5000', '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 (24167, '2021-10-09', 2168, 23274, 1998, 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 (24168, '2021-10-09', 1863, 23275, 1998, NULL, '1.0000', '1.4033', '1.4033', '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 (24169, '2021-10-09', 1337, 23276, 1998, 31095, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24170, '2021-10-09', 1529, 23277, 1998, NULL, '1.0000', '36.4099', '36.4099', '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 (24171, '2021-10-09', 7981, 23278, 1998, NULL, '4.0000', '6.0000', '6.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 (24172, '2021-10-09', 7708, 23279, 1998, NULL, '1.0000', '6.1400', '6.1400', '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 (24173, '2021-10-09', 2409, 23280, 1998, 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 (24174, '2021-10-09', 7318, 23281, 1998, NULL, '1.0000', '13.4400', '13.4400', '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 (24175, '2021-10-09', 1736, 23282, 1999, 22486, '1.0000', '26.5160', '26.5160', '39.0000', '39.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 (24176, '2021-10-09', 9271, 23283, 1999, NULL, '1.0000', '0.9900', '0.9900', '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 (24177, '2021-10-09', 1309, 23284, 1999, 3074, '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 (24178, '2021-10-09', 1596, 23285, 1999, 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 (24179, '2021-10-09', 1596, 23286, 1999, 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 (24180, '2021-10-09', 1935, 23287, 1999, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24181, '2021-10-09', 2169, 23288, 1999, 36937, '1.0000', '1.0545', '1.0545', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24182, '2021-10-09', 8208, 23289, 1999, NULL, '4.0000', '33.0000', '33.0000', '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 (24183, '2021-10-09', 9464, 23290, 1999, 31694, '2.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24184, '2021-10-09', 1620, 23291, 1999, 29796, '4.0000', '13.9038', '13.9038', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24185, '2021-10-09', 2665, 23292, 1999, 36934, '1.0000', '23.7600', '23.7600', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24186, '2021-10-09', 1921, 23293, 1999, 7111, '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 (24187, '2021-10-09', 7317, 23294, 1999, NULL, '1.0000', '19.5500', '19.5500', '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 (24188, '2021-10-09', 2169, 23295, 1999, 36937, '1.0000', '1.0545', '1.0545', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24189, '2021-10-09', 2959, 23296, 1999, 35930, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24190, '2021-10-09', 2169, 23297, 1999, 36937, '4.0000', '1.0545', '1.0545', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24191, '2021-10-09', 1564, 23298, 1999, 10386, '10.0000', '90.0000', '90.0000', '4.0000', '4.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 (24192, '2021-10-09', 2695, 23299, 1999, 12681, '4.0000', '2.0000', '2.0000', '2.7000', '2.7000', '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 (24193, '2021-10-09', 3018, 23300, 1999, 24268, '1.0000', '4.9100', '4.9100', '6.5000', '6.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 (24194, '2021-10-09', 3058, 23301, 1999, 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 (24195, '2021-10-09', 9464, 23302, 1999, 31694, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24196, '2021-10-09', 1602, 23303, 1999, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '53.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24197, '2021-10-09', 2073, 23304, 1999, 31995, '3.0000', '2.3000', '2.3000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24198, '2021-10-09', 1837, 23305, 1999, 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 (24199, '2021-10-09', 2237, 23306, 1999, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '11.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 (24200, '2021-10-09', 2712, 23307, 1999, 35941, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24201, '2021-10-09', 9565, 23308, 1999, 36818, '2.0000', '4.5000', '4.5000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24202, '2021-10-09', 1863, 23309, 1999, 36936, '1.0000', '1.1540', '1.1540', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24203, '2021-10-09', 2713, 23310, 1999, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24204, '2021-10-09', 1690, 23311, 1999, 34693, '1.0000', '6.2600', '6.2600', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24205, '2021-10-09', 1637, 23312, 1999, 36327, '1.0000', '239.8270', '239.8270', '14.0000', '14.0000', '15.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24206, '2021-10-09', 2302, 23313, 1999, 33218, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24207, '2021-10-09', 1658, 23314, 1999, 34675, '1.0000', '27.9300', '27.9300', '37.0000', '37.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24208, '2021-10-09', 1785, 23315, 1999, 36374, '1.0000', '14.2329', '14.2329', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24209, '2021-10-09', 2167, 23316, 1999, 36389, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24210, '2021-10-09', 1411, 23317, 1999, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '16.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24211, '2021-10-09', 2109, 23318, 1999, 6021, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (24212, '2021-10-09', 2454, 23319, 1999, 36336, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24213, '2021-10-09', 7391, 23320, 1999, 33206, '1.0000', '-144.1150', '-144.1150', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24214, '2021-10-09', 1837, 23321, 1999, 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 (24215, '2021-10-09', 2547, 23322, 2000, 33006, '1.0000', '9.0195', '9.0195', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24216, '2021-10-09', 1813, 23323, 2000, 17032, '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 (24217, '2021-10-09', 1863, 23324, 2001, NULL, '1.0000', '1.4033', '1.4033', '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 (24218, '2021-10-09', 1564, 23325, 2002, 10386, '51.0000', '90.0000', '90.0000', '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 (24219, '2021-10-09', 9573, 23326, 2003, 37589, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24220, '2021-10-10', 1596, 23327, 2004, 8361, '-5.0000', '2.5700', '2.5700', '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 (24221, '2021-10-10', 1596, 23327, 2004, NULL, '6.0000', '2.5700', '2.5700', '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 (24222, '2021-10-10', 1863, 23328, 2004, 10808, '-31.0000', '0.4136', '0.4136', '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 (24223, '2021-10-10', 1863, 23328, 2004, NULL, '32.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24224, '2021-10-10', 7772, 23329, 2004, NULL, '1.0000', '32.2400', '32.2400', '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 (24225, '2021-10-10', 1616, 23330, 2004, 18912, '1.0000', '6.8900', '6.8900', '7.5000', '7.5000', '97.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 (24226, '2021-10-10', 1863, 23331, 2004, 10808, '-31.0000', '0.4136', '0.4136', '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 (24227, '2021-10-10', 1863, 23331, 2004, NULL, '36.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (24228, '2021-10-10', 1787, 23332, 2004, 4905, '-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 (24229, '2021-10-10', 1787, 23332, 2004, NULL, '5.0000', '0.8100', '0.8100', '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 (24230, '2021-10-10', 2169, 23333, 2004, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (24231, '2021-10-10', 1326, 23334, 2004, 22322, '1.0000', '2.7762', '2.7762', '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 (24232, '2021-10-10', 8594, 23335, 2004, 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 (24233, '2021-10-10', 1863, 23336, 2004, 10808, '-31.0000', '0.4136', '0.4136', '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 (24234, '2021-10-10', 1863, 23336, 2004, NULL, '34.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (24235, '2021-10-10', 1935, 23337, 2004, 5586, '-18.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 (24236, '2021-10-10', 1935, 23337, 2004, NULL, '20.0000', '0.7200', '0.7200', '2.0000', '2.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 (24237, '2021-10-10', 1787, 23338, 2004, 4905, '-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 (24238, '2021-10-10', 1787, 23338, 2004, NULL, '2.0000', '0.8100', '0.8100', '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 (24239, '2021-10-10', 1804, 23339, 2004, 4916, '-1.0000', '4.2500', '4.2500', '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 (24240, '2021-10-10', 1804, 23339, 2004, NULL, '2.0000', '4.2500', '4.2500', '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 (24241, '2021-10-10', 1455, 23340, 2004, 18913, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '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 (24242, '2021-10-10', 2064, 23341, 2004, 5436, '-1.0000', '4.2400', '4.2400', '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 (24243, '2021-10-10', 2064, 23341, 2004, NULL, '2.0000', '4.2400', '4.2400', '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 (24244, '2021-10-10', 2086, 23342, 2004, 8731, '-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 (24245, '2021-10-10', 2086, 23342, 2004, NULL, '2.0000', '4.3200', '4.3200', '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 (24246, '2021-10-10', 1608, 23343, 2004, 8222, '-8.0000', '3.3500', '3.3500', '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 (24247, '2021-10-10', 1608, 23343, 2004, NULL, '9.0000', '3.3500', '3.3500', '5.5000', '5.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 (24248, '2021-10-10', 2247, 23344, 2004, 2784, '-4.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 (24249, '2021-10-10', 2247, 23344, 2004, NULL, '5.0000', '2.5000', '2.5000', '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 (24250, '2021-10-10', 2327, 23345, 2004, 5083, '-6.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 (24251, '2021-10-10', 2327, 23345, 2004, NULL, '8.0000', '4.5000', '4.5000', '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 (24252, '2021-10-10', 1338, 23346, 2004, 16502, '-3.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 (24253, '2021-10-10', 1338, 23346, 2004, NULL, '4.0000', '4.0000', '4.0000', '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 (24254, '2021-10-10', 1494, 23347, 2004, 97, '1.0000', '11.9056', '11.9056', '6.5000', '6.5000', '0.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 (24255, '2021-10-10', 2161, 23348, 2004, 1376, '1.0000', '8.0000', '8.0000', '10.0000', '10.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 (24256, '2021-10-10', 1332, 23349, 2004, 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 (24257, '2021-10-10', 1411, 23350, 2004, 33816, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '5.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24258, '2021-10-10', 2603, 23351, 2004, NULL, '1.0000', '1.0000', '1.0000', '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 (24259, '2021-10-10', 1602, 23352, 2004, 5897, '-17.0000', '6.7859', '6.7859', '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 (24260, '2021-10-10', 1602, 23352, 2004, NULL, '18.0000', '6.7859', '6.7859', '10.0000', '10.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 (24261, '2021-10-10', 1425, 23353, 2004, 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 (24262, '2021-10-10', 2603, 23354, 2004, NULL, '1.0000', '1.0000', '1.0000', '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 (24263, '2021-10-10', 2821, 23355, 2004, 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 (24264, '2021-10-10', 2655, 23356, 2004, 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 (24265, '2021-10-10', 1695, 23357, 2004, 12925, '1.0000', '15.5000', '15.5000', '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 (24266, '2021-10-10', 2167, 23358, 2004, 17165, '-7.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 (24267, '2021-10-10', 2167, 23358, 2004, NULL, '8.0000', '2.2000', '2.2000', '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 (24268, '2021-10-10', 1524, 23359, 2004, 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 (24269, '2021-10-10', 1602, 23360, 2004, 5897, '-17.0000', '6.7859', '6.7859', '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 (24270, '2021-10-10', 1602, 23360, 2004, NULL, '18.0000', '6.7859', '6.7859', '10.0000', '10.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 (24271, '2021-10-10', 2713, 23361, 2004, 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 (24272, '2021-10-10', 2821, 23362, 2004, 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 (24273, '2021-10-10', 1863, 23363, 2004, 10808, '-31.0000', '0.4136', '0.4136', '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 (24274, '2021-10-10', 1863, 23363, 2004, NULL, '32.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24275, '2021-10-10', 1863, 23364, 2004, 10808, '-31.0000', '0.4136', '0.4136', '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 (24276, '2021-10-10', 1863, 23364, 2004, NULL, '32.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24277, '2021-10-10', 2237, 23365, 2004, 2781, '-10.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 (24278, '2021-10-10', 2237, 23365, 2004, NULL, '11.0000', '1.0600', '1.0600', '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 (24279, '2021-10-10', 1524, 23366, 2004, 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 (24280, '2021-10-10', 2252, 23367, 2004, 2789, '-7.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 (24281, '2021-10-10', 2252, 23367, 2004, NULL, '8.0000', '9.5000', '9.5000', '12.5000', '12.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 (24282, '2021-10-10', 2415, 23368, 2004, 4656, '-9.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 (24283, '2021-10-10', 2415, 23368, 2004, NULL, '10.0000', '5.0000', '5.0000', '7.0000', '7.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 (24284, '2021-10-10', 1863, 23369, 2004, 10808, '-31.0000', '0.4136', '0.4136', '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 (24285, '2021-10-10', 1863, 23369, 2004, NULL, '32.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24286, '2021-10-10', 2252, 23370, 2004, 2789, '-7.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 (24287, '2021-10-10', 2252, 23370, 2004, NULL, '8.0000', '9.5000', '9.5000', '12.5000', '12.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 (24288, '2021-10-10', 1863, 23371, 2004, 10808, '-31.0000', '0.4136', '0.4136', '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 (24289, '2021-10-10', 1863, 23371, 2004, NULL, '32.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24290, '2021-10-10', 1368, 23372, 2004, 268, '1.0000', '-55.5295', '-55.5295', '7.0000', '7.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 (24291, '2021-10-10', 2169, 23373, 2004, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (24292, '2021-10-10', 8746, 23374, 2005, NULL, '1.0000', '3.8000', '3.8000', '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 (24293, '2021-10-10', 2315, 23375, 2005, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24294, '2021-10-10', 2130, 23376, 2005, 22543, '1.0000', '17.5000', '17.5000', '20.0000', '20.0000', '1.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 (24295, '2021-10-10', 2260, 23377, 2005, 23137, '6.0000', '4.2000', '4.2000', '6.0000', '6.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 (24296, '2021-10-10', 2260, 23377, 2005, 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 (24297, '2021-10-10', 1637, 23378, 2005, 19388, '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 (24298, '2021-10-10', 7459, 23379, 2005, 34603, '3.0000', '-6.1729', '-6.1729', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24299, '2021-10-10', 2713, 23380, 2005, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24300, '2021-10-10', 8133, 23381, 2005, 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 (24301, '2021-10-10', 1863, 23382, 2005, NULL, '1.0000', '1.4033', '1.4033', '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 (24302, '2021-10-10', 2315, 23383, 2005, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24303, '2021-10-10', 2821, 23384, 2005, 37538, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24304, '2021-10-10', 8746, 23385, 2005, NULL, '1.0000', '3.8000', '3.8000', '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 (24305, '2021-10-10', 2135, 23386, 2005, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24306, '2021-10-10', 8763, 23387, 2005, NULL, '1.0000', '5.4000', '5.4000', '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 (24307, '2021-10-10', 1863, 23388, 2005, NULL, '1.0000', '1.4033', '1.4033', '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 (24308, '2021-10-10', 2660, 23389, 2005, 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 (24309, '2021-10-10', 7819, 23390, 2005, NULL, '1.0000', '9.5000', '9.5000', '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 (24310, '2021-10-10', 1884, 23391, 2005, NULL, '1.0000', '5.1300', '5.1300', '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 (24311, '2021-10-10', 2167, 23392, 2005, 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 (24312, '2021-10-10', 1499, 23393, 2005, NULL, '5.0000', '0.4835', '0.4835', '0.6000', '0.6000', '-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 (24313, '2021-10-10', 2821, 23394, 2005, 37538, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24314, '2021-10-10', 1532, 23395, 2005, 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 (24315, '2021-10-10', 2315, 23396, 2005, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24316, '2021-10-10', 2280, 23397, 2005, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '14.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 (24317, '2021-10-10', 2277, 23398, 2005, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24318, '2021-10-10', 2088, 23399, 2005, 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 (24319, '2021-10-10', 7782, 23400, 2005, NULL, '1.0000', '5.0000', '5.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 (24320, '2021-10-10', 2656, 23401, 2005, 37448, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24321, '2021-10-10', 2315, 23402, 2005, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24322, '2021-10-10', 1863, 23403, 2005, NULL, '1.0000', '1.4033', '1.4033', '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 (24323, '2021-10-10', 2656, 23404, 2005, 37448, '3.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24324, '2021-10-10', 1523, 23405, 2005, NULL, '1.0000', '1.0061', '1.0061', '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 (24325, '2021-10-10', 2315, 23406, 2005, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24326, '2021-10-10', 2989, 23407, 2005, 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 (24327, '2021-10-10', 2315, 23408, 2005, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24328, '2021-10-10', 2167, 23409, 2005, 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 (24329, '2021-10-10', 2992, 23410, 2005, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (24330, '2021-10-10', 2284, 23411, 2005, 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 (24331, '2021-10-10', 1410, 23412, 2006, 22317, '1.0000', '2.2000', '2.2000', '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 (24332, '2021-10-10', 2712, 23413, 2006, 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 (24333, '2021-10-10', 1687, 23414, 2006, 5785, '-6.0000', '165.9024', '165.9024', '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 (24334, '2021-10-10', 1687, 23414, 2006, NULL, '7.0000', '165.9024', '165.9024', '16.0000', '16.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 (24335, '2021-10-10', 2821, 23415, 2006, 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 (24336, '2021-10-10', 8810, 23416, 2007, NULL, '1.0000', '1.9200', '1.9200', '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 (24337, '2021-10-10', 7448, 23417, 2007, NULL, '2.0000', '15.8500', '15.8500', '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 (24338, '2021-10-10', 7917, 23418, 2007, NULL, '1.0000', '5.0000', '5.0000', '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 (24339, '2021-10-10', 2699, 23419, 2007, 36677, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24340, '2021-10-10', 7483, 23420, 2007, NULL, '1.0000', '0.4200', '0.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 (24341, '2021-10-10', 7743, 23421, 2007, NULL, '1.0000', '7.3900', '7.3900', '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 (24342, '2021-10-10', 7641, 23422, 2007, NULL, '1.0000', '6.5038', '6.5038', '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 (24343, '2021-10-10', 1340, 23423, 2007, 34540, '1.0000', '2.7422', '2.7422', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24344, '2021-10-10', 2287, 23424, 2007, NULL, '4.0000', '2.3000', '2.3000', '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 (24345, '2021-10-10', 7604, 23425, 2007, NULL, '1.0000', '4.3900', '4.3900', '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 (24346, '2021-10-10', 9572, 23426, 2007, NULL, '4.0000', '14.0000', '14.0000', '18.5000', '18.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 (24347, '2021-10-10', 8172, 23427, 2007, NULL, '6.0000', '40.7000', '40.7000', '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 (24348, '2021-10-10', 9337, 23428, 2007, 36077, '10.0000', '6.8067', '6.8067', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24349, '2021-10-10', 1483, 23429, 2007, 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 (24350, '2021-10-10', 9021, 23430, 2007, NULL, '2.0000', '7.0000', '7.0000', '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 (24351, '2021-10-10', 2821, 23431, 2007, 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 (24352, '2021-10-10', 7743, 23432, 2007, NULL, '1.0000', '7.3900', '7.3900', '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 (24353, '2021-10-10', 2656, 23433, 2007, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24354, '2021-10-10', 7652, 23434, 2007, NULL, '9.0000', '40.3000', '40.3000', '1.2000', '1.2000', '-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 (24355, '2021-10-10', 9400, 23435, 2007, NULL, '1.0000', '0.5000', '0.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 (24356, '2021-10-10', 8342, 23436, 2007, NULL, '1.0000', '8.1100', '8.1100', '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 (24357, '2021-10-10', 7632, 23437, 2007, 37403, '1.0000', '9.8496', '9.8496', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24358, '2021-10-10', 7612, 23438, 2007, NULL, '1.0000', '46.0000', '46.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 (24359, '2021-10-10', 9121, 23439, 2007, NULL, '1.0000', '30.0000', '30.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 (24360, '2021-10-10', 2255, 23440, 2007, NULL, '2.0000', '17.4900', '17.4900', '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 (24361, '2021-10-10', 7715, 23441, 2007, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24362, '2021-10-10', 2060, 23442, 2007, 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 (24363, '2021-10-10', 7703, 23443, 2007, NULL, '4.0000', '22.9900', '22.9900', '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 (24364, '2021-10-10', 9175, 23444, 2007, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24365, '2021-10-10', 9337, 23445, 2007, 36077, '6.0000', '6.8067', '6.8067', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24366, '2021-10-10', 7756, 23446, 2007, NULL, '1.0000', '21.7700', '21.7700', '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 (24367, '2021-10-10', 2656, 23447, 2007, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24368, '2021-10-10', 1758, 23448, 2007, NULL, '1.0000', '47.0000', '47.0000', '62.5000', '62.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24369, '2021-10-10', 7612, 23449, 2007, NULL, '1.0000', '46.0000', '46.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 (24370, '2021-10-10', 7703, 23450, 2007, NULL, '2.0000', '22.9900', '22.9900', '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 (24371, '2021-10-10', 1840, 23451, 2007, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '175.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24372, '2021-10-10', 2290, 23452, 2007, 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 (24373, '2021-10-10', 8039, 23453, 2007, NULL, '1.0000', '18.3400', '18.3400', '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 (24374, '2021-10-10', 2713, 23454, 2007, 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 (24375, '2021-10-10', 9282, 23455, 2007, NULL, '1.0000', '6.5000', '6.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 (24376, '2021-10-10', 7784, 23456, 2007, NULL, '2.0000', '4.2500', '4.2500', '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 (24377, '2021-10-10', 1596, 23457, 2007, 36079, '1.0000', '2.3671', '2.3671', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24378, '2021-10-10', 3001, 23458, 2007, NULL, '1.0000', '1.5000', '1.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 (24379, '2021-10-10', 8466, 23459, 2007, 36097, '1.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24380, '2021-10-10', 7958, 23460, 2007, NULL, '1.0000', '13.0000', '13.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 (24381, '2021-10-10', 8101, 23461, 2007, NULL, '3.0000', '21.7000', '21.7000', '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 (24382, '2021-10-10', 7558, 23462, 2007, NULL, '6.0000', '2.2000', '2.2000', '3.0000', '3.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 (24383, '2021-10-10', 2656, 23463, 2007, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24384, '2021-10-10', 2821, 23464, 2007, 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 (24385, '2021-10-10', 7448, 23465, 2007, NULL, '2.0000', '15.8500', '15.8500', '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 (24386, '2021-10-10', 7317, 23466, 2007, NULL, '1.0000', '19.5500', '19.5500', '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 (24387, '2021-10-10', 7715, 23467, 2007, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24388, '2021-10-10', 8679, 23468, 2007, NULL, '1.0000', '28.0000', '28.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 (24389, '2021-10-10', 9154, 23469, 2007, 37372, '2.0000', '10.6800', '10.6800', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24390, '2021-10-10', 2972, 23470, 2007, 37370, '1.0000', '22.7100', '22.7100', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24391, '2021-10-10', 7396, 23471, 2007, 30023, '1.0000', '6.0000', '6.0000', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24392, '2021-10-10', 2325, 23472, 2007, 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 (24393, '2021-10-10', 8949, 23473, 2007, 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 (24394, '2021-10-10', 2541, 23474, 2007, 31938, '1.0000', '10.0000', '10.0000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 223);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24395, '2021-10-10', 7961, 23475, 2007, NULL, '1.0000', '9.5000', '9.5000', '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 (24396, '2021-10-10', 7411, 23476, 2007, NULL, '1.0000', '1.3500', '1.3500', '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 (24397, '2021-10-10', 7671, 23477, 2007, NULL, '2.0000', '15.5000', '15.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 (24398, '2021-10-10', 8247, 23478, 2007, NULL, '1.0000', '10.0000', '10.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 (24399, '2021-10-10', 7409, 23479, 2007, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '50.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24400, '2021-10-10', 7641, 23480, 2007, NULL, '1.0000', '6.5038', '6.5038', '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 (24401, '2021-10-10', 8276, 23481, 2007, NULL, '1.0000', '12.7063', '12.7063', '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 (24402, '2021-10-10', 7897, 23482, 2007, NULL, '1.0000', '3.0000', '3.0000', '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 (24403, '2021-10-10', 7743, 23483, 2007, NULL, '1.0000', '7.3900', '7.3900', '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 (24404, '2021-10-10', 8077, 23484, 2007, NULL, '2.0000', '11.5000', '11.5000', '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 (24405, '2021-10-10', 9164, 23485, 2007, NULL, '1.0000', '6.8700', '6.8700', '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 (24406, '2021-10-10', 1947, 23486, 2007, 34542, '1.0000', '6615.3206', '6615.3206', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24407, '2021-10-10', 8963, 23487, 2007, 35219, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24408, '2021-10-10', 7715, 23488, 2007, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24409, '2021-10-10', 8097, 23489, 2007, NULL, '3.0000', '3.3994', '3.3994', '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 (24410, '2021-10-10', 9092, 23490, 2007, NULL, '1.0000', '5.2900', '5.2900', '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 (24411, '2021-10-10', 1965, 23491, 2007, NULL, '1.0000', '17.2400', '17.2400', '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 (24412, '2021-10-10', 7518, 23492, 2007, NULL, '1.0000', '-32.3379', '-32.3379', '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 (24413, '2021-10-10', 7652, 23493, 2007, NULL, '7.0000', '40.3000', '40.3000', '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 (24414, '2021-10-10', 9092, 23494, 2007, NULL, '2.0000', '5.2900', '5.2900', '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 (24415, '2021-10-10', 7409, 23495, 2007, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '50.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24416, '2021-10-10', 1827, 23496, 2007, NULL, '2.0000', '0.2000', '0.2000', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24417, '2021-10-10', 7666, 23497, 2007, NULL, '1.0000', '10.0000', '10.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 (24418, '2021-10-10', 7672, 23498, 2007, NULL, '1.0000', '1.0200', '1.0200', '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 (24419, '2021-10-10', 9174, 23499, 2007, 31015, '1.0000', '13.7400', '13.7400', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24420, '2021-10-10', 2004, 23500, 2007, 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 (24421, '2021-10-10', 9092, 23501, 2007, NULL, '2.0000', '5.2900', '5.2900', '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 (24422, '2021-10-10', 1577, 23502, 2007, 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 (24423, '2021-10-10', 9275, 23503, 2007, NULL, '1.0000', '6.3000', '6.3000', '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 (24424, '2021-10-10', 8497, 23504, 2007, NULL, '1.0000', '-133.2800', '-133.2800', '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 (24425, '2021-10-10', 7907, 23505, 2007, NULL, '2.0000', '12.0000', '12.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 (24426, '2021-10-10', 8020, 23506, 2007, NULL, '1.0000', '51.6000', '51.6000', '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 (24427, '2021-10-10', 7914, 23507, 2007, NULL, '1.0000', '5.4114', '5.4114', '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 (24428, '2021-10-10', 2100, 23508, 2007, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24429, '2021-10-10', 8789, 23509, 2007, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24430, '2021-10-10', 7911, 23510, 2007, NULL, '1.0000', '4.3700', '4.3700', '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 (24431, '2021-10-10', 9092, 23511, 2007, NULL, '2.0000', '5.2900', '5.2900', '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 (24432, '2021-10-10', 8702, 23512, 2007, NULL, '1.0000', '3.6700', '3.6700', '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 (24433, '2021-10-10', 7672, 23513, 2007, NULL, '1.0000', '1.0200', '1.0200', '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 (24434, '2021-10-10', 7780, 23514, 2007, NULL, '1.0000', '2.6000', '2.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 (24435, '2021-10-10', 8247, 23515, 2007, NULL, '1.0000', '10.0000', '10.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 (24436, '2021-10-10', 1810, 23516, 2007, NULL, '1.0000', '7.7967', '7.7967', '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 (24437, '2021-10-10', 7411, 23517, 2007, NULL, '1.0000', '1.3500', '1.3500', '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 (24438, '2021-10-10', 1381, 23518, 2007, 36091, '2.0000', '7.4900', '7.4900', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24439, '2021-10-10', 8756, 23519, 2007, NULL, '1.0000', '5.9323', '5.9323', '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 (24440, '2021-10-10', 7814, 23520, 2007, NULL, '1.0000', '13.0000', '13.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 (24441, '2021-10-10', 7522, 23521, 2007, NULL, '1.0000', '5.2000', '5.2000', '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 (24442, '2021-10-10', 1596, 23522, 2007, 36079, '1.0000', '2.3671', '2.3671', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24443, '2021-10-10', 7518, 23523, 2007, NULL, '1.0000', '-32.3379', '-32.3379', '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 (24444, '2021-10-10', 7444, 23524, 2007, 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 (24445, '2021-10-10', 8810, 23525, 2007, NULL, '1.0000', '1.9200', '1.9200', '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 (24446, '2021-10-10', 9496, 23526, 2007, NULL, '1.0000', '3.8800', '3.8800', '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 (24447, '2021-10-10', 7743, 23527, 2007, NULL, '2.0000', '7.3900', '7.3900', '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 (24448, '2021-10-10', 9563, 23528, 2007, 36681, '4.0000', '5.1000', '5.1000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24449, '2021-10-10', 8756, 23529, 2008, NULL, '1.0000', '5.9323', '5.9323', '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 (24450, '2021-10-11', 7907, 23530, 2009, NULL, '1.0000', '12.0000', '12.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 (24451, '2021-10-11', 1904, 23531, 2009, 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 (24452, '2021-10-11', 7524, 23532, 2009, NULL, '1.0000', '11.9500', '11.9500', '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 (24453, '2021-10-11', 2060, 23533, 2009, 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 (24454, '2021-10-11', 7899, 23534, 2009, 31908, '1.0000', '0.7800', '0.7800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24455, '2021-10-11', 7848, 23535, 2009, NULL, '1.0000', '1.3500', '1.3500', '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 (24456, '2021-10-11', 7329, 23536, 2009, 29980, '1.0000', '19.3000', '19.3000', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24457, '2021-10-11', 8613, 23537, 2009, NULL, '1.0000', '4.0000', '4.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 (24458, '2021-10-11', 1846, 23538, 2009, 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 (24459, '2021-10-11', 7545, 23539, 2009, NULL, '1.0000', '0.3200', '0.3200', '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 (24460, '2021-10-11', 7359, 23540, 2009, NULL, '1.0000', '20.0000', '20.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 (24461, '2021-10-11', 1381, 23541, 2009, 36091, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24462, '2021-10-11', 2060, 23542, 2009, 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 (24463, '2021-10-11', 3013, 23543, 2009, 36063, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24464, '2021-10-11', 7444, 23544, 2009, 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 (24465, '2021-10-11', 8085, 23545, 2009, NULL, '3.0000', '14.0000', '14.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 (24466, '2021-10-11', 8963, 23546, 2009, 35219, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24467, '2021-10-11', 7802, 23547, 2009, NULL, '1.0000', '0.9200', '0.9200', '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 (24468, '2021-10-11', 2248, 23548, 2009, 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 (24469, '2021-10-11', 7671, 23549, 2009, NULL, '1.0000', '15.5000', '15.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 (24470, '2021-10-11', 7482, 23550, 2009, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24471, '2021-10-11', 7666, 23551, 2009, NULL, '1.0000', '10.0000', '10.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 (24472, '2021-10-11', 8519, 23552, 2009, NULL, '30.0000', '4.6700', '4.6700', '3.7000', '3.7000', '-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 (24473, '2021-10-11', 8138, 23553, 2009, NULL, '1.0000', '9.7500', '9.7500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24474, '2021-10-11', 1440, 23554, 2009, NULL, '2.0000', '10.0000', '10.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 (24475, '2021-10-11', 3001, 23555, 2009, NULL, '4.0000', '1.5000', '1.5000', '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 (24476, '2021-10-11', 1867, 23556, 2009, 35213, '1.0000', '9.9490', '9.9490', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24477, '2021-10-11', 8444, 23557, 2009, NULL, '1.0000', '26.0000', '26.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 (24478, '2021-10-11', 7411, 23558, 2009, NULL, '1.0000', '1.3500', '1.3500', '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 (24479, '2021-10-11', 7707, 23559, 2009, NULL, '1.0000', '6.0124', '6.0124', '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 (24480, '2021-10-11', 7671, 23560, 2009, NULL, '2.0000', '15.5000', '15.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 (24481, '2021-10-11', 7531, 23561, 2009, NULL, '5.0000', '16.5000', '16.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 (24482, '2021-10-11', 1760, 23562, 2009, 37408, '1.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24483, '2021-10-11', 1760, 23563, 2009, 37408, '5.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24484, '2021-10-11', 7802, 23564, 2009, NULL, '5.0000', '0.9200', '0.9200', '1.3000', '1.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 (24485, '2021-10-11', 9400, 23565, 2009, NULL, '1.0000', '0.5000', '0.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 (24486, '2021-10-11', 1904, 23566, 2009, 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 (24487, '2021-10-11', 8300, 23567, 2009, NULL, '1.0000', '7.4300', '7.4300', '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 (24488, '2021-10-11', 8097, 23568, 2009, NULL, '3.0000', '3.3994', '3.3994', '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 (24489, '2021-10-11', 1837, 23569, 2009, 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 (24490, '2021-10-11', 2315, 23570, 2010, 2735, '-109.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24491, '2021-10-11', 2315, 23570, 2010, NULL, '113.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24492, '2021-10-11', 1400, 23571, 2010, 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 (24493, '2021-10-11', 1831, 23572, 2010, 20660, '1.0000', '8.4400', '8.4400', '11.5000', '11.5000', '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 (24494, '2021-10-11', 1831, 23572, 2010, NULL, '1.0000', '8.4400', '8.4400', '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 (24495, '2021-10-11', 2327, 23573, 2010, 5083, '-8.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 (24496, '2021-10-11', 2327, 23573, 2010, NULL, '10.0000', '4.5000', '4.5000', '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 (24497, '2021-10-11', 1505, 23574, 2010, 10379, '1.0000', '13.3062', '13.3062', '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 (24498, '2021-10-11', 2644, 23575, 2010, NULL, '1.0000', '50.0000', '50.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 (24499, '2021-10-11', 2627, 23576, 2010, 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 (24500, '2021-10-11', 2713, 23577, 2010, 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 (24501, '2021-10-11', 1602, 23578, 2010, 5897, '-19.0000', '6.7859', '6.7859', '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 (24502, '2021-10-11', 1602, 23578, 2010, NULL, '20.0000', '6.7859', '6.7859', '10.0000', '10.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 (24503, '2021-10-11', 2414, 23579, 2010, 4620, '-3.0000', '3.4000', '3.4000', '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 (24504, '2021-10-11', 2414, 23579, 2010, NULL, '5.0000', '3.4000', '3.4000', '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 (24505, '2021-10-11', 2135, 23580, 2010, 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 (24506, '2021-10-11', 2712, 23581, 2010, 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 (24507, '2021-10-11', 1434, 23582, 2010, 22343, '1.0000', '15.3766', '15.3766', '23.0000', '23.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 (24508, '2021-10-11', 1409, 23583, 2010, 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 (24509, '2021-10-11', 2400, 23584, 2010, 22357, '1.0000', '12.5000', '12.5000', '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 (24510, '2021-10-11', 1557, 23585, 2010, 1628, '-3.0000', '7.9500', '7.9500', '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 (24511, '2021-10-11', 1557, 23585, 2010, NULL, '4.0000', '7.9500', '7.9500', '11.0000', '11.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 (24512, '2021-10-11', 2713, 23586, 2010, 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 (24513, '2021-10-11', 2484, 23587, 2011, 5196, '1.0000', '17.0000', '17.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 (24514, '2021-10-11', 2898, 23588, 2011, 18353, '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 (24515, '2021-10-11', 1999, 23589, 2011, 6444, '2.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 (24516, '2021-10-11', 1871, 23590, 2011, 37565, '10.0000', '29.4135', '29.4135', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24517, '2021-10-11', 2070, 23591, 2011, 5618, '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 (24518, '2021-10-11', 9195, 23592, 2011, NULL, '1.0000', '4.9800', '4.9800', '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 (24519, '2021-10-11', 2228, 23593, 2011, 32620, '1.0000', '24.7010', '24.7010', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24520, '2021-10-11', 2020, 23594, 2011, 36325, '1.0000', '4.2384', '4.2384', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24521, '2021-10-11', 8133, 23595, 2011, 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 (24522, '2021-10-11', 2943, 23596, 2011, 21545, '1.0000', '2.1800', '2.1800', '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 (24523, '2021-10-11', 1912, 23597, 2011, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24524, '2021-10-11', 2135, 23598, 2011, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24525, '2021-10-11', 2712, 23599, 2011, 35941, '6.0000', '0.2600', '0.2600', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24526, '2021-10-11', 7814, 23600, 2011, NULL, '1.0000', '13.0000', '13.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 (24527, '2021-10-11', 2827, 23601, 2011, 17380, '1.0000', '37.0000', '37.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 (24528, '2021-10-11', 2438, 23602, 2011, 5822, '1.0000', '29.0000', '29.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 (24529, '2021-10-11', 1532, 23603, 2011, 1539, '2.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 (24530, '2021-10-11', 7376, 23604, 2011, NULL, '3.0000', '141.7100', '141.7100', '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 (24531, '2021-10-11', 2058, 23605, 2011, 7513, '1.0000', '10.0000', '10.0000', '40.0000', '40.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 (24532, '2021-10-11', 2135, 23606, 2011, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24533, '2021-10-11', 8773, 23607, 2011, 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 (24534, '2021-10-11', 1501, 23608, 2011, 23580, '2.0000', '1566.1965', '1566.1965', '3.0000', '3.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 (24535, '2021-10-11', 8648, 23609, 2011, NULL, '1.0000', '14.0000', '14.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 (24536, '2021-10-11', 8679, 23610, 2011, NULL, '1.0000', '28.0000', '28.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 (24537, '2021-10-11', 1637, 23611, 2011, 36327, '1.0000', '239.8270', '239.8270', '14.0000', '14.0000', '14.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24538, '2021-10-11', 2237, 23612, 2011, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '10.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 (24539, '2021-10-11', 1488, 23613, 2011, 33032, '1.0000', '18.3333', '18.3333', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24540, '2021-10-11', 2169, 23614, 2011, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24541, '2021-10-11', 9566, 23615, 2011, 37555, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24542, '2021-10-11', 2381, 23616, 2011, 24263, '1.0000', '5.0448', '5.0448', '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 (24543, '2021-10-11', 7496, 23617, 2011, NULL, '1.0000', '0.9600', '0.9600', '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 (24544, '2021-10-11', 3018, 23618, 2011, 24268, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '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 (24545, '2021-10-11', 7741, 23619, 2011, NULL, '1.0000', '1.2000', '1.2000', '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 (24546, '2021-10-11', 2273, 23620, 2011, 37557, '2.0000', '2.6700', '2.6700', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24547, '2021-10-11', 1386, 23621, 2011, 36344, '1.0000', '241.2596', '241.2596', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24548, '2021-10-11', 1311, 23622, 2011, 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 (24549, '2021-10-11', 2281, 23623, 2011, 3121, '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 (24550, '2021-10-11', 7380, 23624, 2011, NULL, '1.0000', '5.6200', '5.6200', '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 (24551, '2021-10-11', 2287, 23625, 2012, NULL, '4.0000', '2.3000', '2.3000', '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 (24552, '2021-10-11', 7524, 23626, 2012, NULL, '1.0000', '11.9500', '11.9500', '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 (24553, '2021-10-11', 1904, 23627, 2012, 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 (24554, '2021-10-11', 7524, 23628, 2012, NULL, '1.0000', '11.9500', '11.9500', '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 (24555, '2021-10-11', 7526, 23629, 2012, NULL, '1.0000', '0.2400', '0.2400', '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 (24556, '2021-10-11', 8745, 23630, 2012, 32144, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24557, '2021-10-11', 8097, 23631, 2012, NULL, '2.0000', '3.3994', '3.3994', '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 (24558, '2021-10-11', 7708, 23632, 2012, 37379, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24559, '2021-10-11', 9098, 23633, 2012, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24560, '2021-10-11', 8753, 23634, 2012, NULL, '1.0000', '20.0000', '20.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 (24561, '2021-10-11', 8810, 23635, 2012, NULL, '2.0000', '1.9200', '1.9200', '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 (24562, '2021-10-11', 7690, 23636, 2012, NULL, '1.0000', '5.3000', '5.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 (24563, '2021-10-11', 7824, 23637, 2012, NULL, '1.0000', '8.0000', '8.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 (24564, '2021-10-11', 7353, 23638, 2012, 30931, '3.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24565, '2021-10-11', 8923, 23639, 2012, 37374, '1.0000', '7.2500', '7.2500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24566, '2021-10-11', 8858, 23640, 2012, NULL, '2.0000', '8.5000', '8.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 (24567, '2021-10-11', 8835, 23641, 2012, NULL, '4.0000', '5.8900', '5.8900', '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 (24568, '2021-10-11', 9469, 23642, 2012, NULL, '1.0000', '2.3000', '2.3000', '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 (24569, '2021-10-11', 7641, 23643, 2012, NULL, '1.0000', '6.5038', '6.5038', '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 (24570, '2021-10-11', 8308, 23644, 2012, NULL, '1.0000', '11.0000', '11.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 (24571, '2021-10-11', 7489, 23645, 2012, NULL, '1.0000', '4.9000', '4.9000', '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 (24572, '2021-10-11', 7641, 23646, 2012, NULL, '1.0000', '6.5038', '6.5038', '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 (24573, '2021-10-11', 7713, 23647, 2012, 37398, '2.0000', '0.4204', '0.4204', '0.6000', '0.6000', '53.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24574, '2021-10-11', 7641, 23648, 2012, NULL, '1.0000', '6.5038', '6.5038', '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 (24575, '2021-10-11', 8308, 23649, 2012, NULL, '1.0000', '11.0000', '11.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 (24576, '2021-10-11', 7912, 23650, 2012, 34501, '1.0000', '8.0361', '8.0361', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24577, '2021-10-11', 7671, 23651, 2012, NULL, '1.0000', '15.5000', '15.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 (24578, '2021-10-11', 8154, 23652, 2012, NULL, '2.0000', '12.3000', '12.3000', '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 (24579, '2021-10-11', 2225, 23653, 2012, 31656, '2.0000', '14.0000', '14.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24580, '2021-10-11', 2225, 23653, 2012, 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 (24581, '2021-10-11', 8888, 23654, 2012, 31655, '2.0000', '28.0000', '28.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24582, '2021-10-11', 7853, 23655, 2012, NULL, '1.0000', '35.0000', '35.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 (24583, '2021-10-11', 8835, 23656, 2012, NULL, '1.0000', '5.8900', '5.8900', '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 (24584, '2021-10-11', 9214, 23657, 2012, NULL, '2.0000', '7.4538', '7.4538', '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 (24585, '2021-10-11', 2656, 23658, 2012, 36676, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24586, '2021-10-11', 7755, 23659, 2012, NULL, '1.0000', '82.0200', '82.0200', '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 (24587, '2021-10-11', 7380, 23660, 2012, NULL, '1.0000', '5.6200', '5.6200', '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 (24588, '2021-10-11', 8319, 23661, 2012, 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 (24589, '2021-10-11', 8676, 23662, 2012, NULL, '1.0000', '34.0000', '34.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 (24590, '2021-10-11', 8658, 23663, 2013, NULL, '1.0000', '17.1000', '17.1000', '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 (24591, '2021-10-11', 7514, 23664, 2013, NULL, '1.0000', '12.9983', '12.9983', '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 (24592, '2021-10-11', 9092, 23665, 2013, NULL, '3.0000', '5.2900', '5.2900', '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 (24593, '2021-10-11', 7339, 23666, 2013, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (24594, '2021-10-11', 2699, 23667, 2013, 32805, '15.0000', '3.0000', '3.0000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24595, '2021-10-11', 8328, 23668, 2013, NULL, '1.0000', '8.0882', '8.0882', '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 (24596, '2021-10-11', 8352, 23669, 2013, NULL, '3.0000', '4.0700', '4.0700', '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 (24597, '2021-10-11', 9193, 23670, 2013, NULL, '1.0000', '6.8075', '6.8075', '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 (24598, '2021-10-11', 7799, 23671, 2013, NULL, '1.0000', '2.0000', '2.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 (24599, '2021-10-11', 7881, 23672, 2013, NULL, '1.0000', '32.7700', '32.7700', '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 (24600, '2021-10-11', 9250, 23673, 2013, NULL, '1.0000', '18.9800', '18.9800', '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 (24601, '2021-10-11', 8941, 23674, 2013, NULL, '1.0000', '12.0000', '12.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 (24602, '2021-10-11', 7886, 23675, 2013, NULL, '1.0000', '16.1667', '16.1667', '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 (24603, '2021-10-11', 8352, 23676, 2013, NULL, '1.0000', '4.0700', '4.0700', '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 (24604, '2021-10-11', 8578, 23677, 2013, NULL, '2.0000', '3.0000', '3.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 (24605, '2021-10-11', 7753, 23678, 2013, NULL, '1.0000', '3.1400', '3.1400', '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 (24606, '2021-10-11', 9504, 23679, 2013, 33393, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 245);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24607, '2021-10-11', 7699, 23680, 2013, 31663, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24608, '2021-10-11', 8444, 23681, 2013, NULL, '1.0000', '26.0000', '26.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 (24609, '2021-10-11', 8596, 23682, 2013, NULL, '2.0000', '17.0000', '17.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 (24610, '2021-10-11', 7548, 23683, 2013, NULL, '1.0000', '0.3400', '0.3400', '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 (24611, '2021-10-11', 7711, 23684, 2013, NULL, '1.0000', '0.3900', '0.3900', '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 (24612, '2021-10-11', 7548, 23685, 2013, NULL, '1.0000', '0.3400', '0.3400', '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 (24613, '2021-10-11', 8941, 23686, 2013, NULL, '1.0000', '12.0000', '12.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 (24614, '2021-10-11', 1976, 23687, 2013, 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 (24615, '2021-10-11', 8350, 23688, 2013, NULL, '1.0000', '12.0000', '12.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 (24616, '2021-10-11', 7527, 23689, 2013, 31031, '2.0000', '0.8900', '0.8900', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24617, '2021-10-11', 2467, 23690, 2013, NULL, '1.0000', '19.8000', '19.8000', '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 (24618, '2021-10-11', 8136, 23691, 2013, NULL, '1.0000', '29.3500', '29.3500', '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 (24619, '2021-10-11', 2287, 23692, 2013, 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 (24620, '2021-10-11', 7564, 23693, 2014, NULL, '1.0000', '0.6400', '0.6400', '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 (24621, '2021-10-11', 1574, 23694, 2014, 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 (24622, '2021-10-11', 2275, 23695, 2014, 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 (24623, '2021-10-11', 9563, 23696, 2014, 37473, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24624, '2021-10-11', 2237, 23697, 2014, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24625, '2021-10-11', 1760, 23698, 2014, NULL, '1.0000', '1.5900', '1.5900', '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 (24626, '2021-10-11', 1760, 23699, 2014, NULL, '1.0000', '1.5900', '1.5900', '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 (24627, '2021-10-11', 1529, 23700, 2015, 37534, '1.0000', '-95.0297', '-95.0297', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24628, '2021-10-11', 7713, 23701, 2015, NULL, '3.0000', '4.4000', '4.4000', '0.6000', '0.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 (24629, '2021-10-11', 2907, 23702, 2015, 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 (24630, '2021-10-11', 2624, 23703, 2015, 19843, '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 (24631, '2021-10-11', 2699, 23704, 2015, 37449, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24632, '2021-10-11', 2169, 23705, 2015, NULL, '1.0000', '1.1500', '1.1500', '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 (24633, '2021-10-11', 8638, 23706, 2015, 37511, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24634, '2021-10-11', 2169, 23707, 2015, NULL, '1.0000', '1.1500', '1.1500', '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 (24635, '2021-10-11', 2713, 23708, 2015, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24636, '2021-10-11', 2543, 23709, 2015, 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 (24637, '2021-10-11', 8608, 23710, 2015, NULL, '1.0000', '0.9000', '0.9000', '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 (24638, '2021-10-11', 8699, 23711, 2015, NULL, '5.0000', '6.3800', '6.3800', '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 (24639, '2021-10-11', 1888, 23712, 2015, 37505, '1.0000', '81.9752', '81.9752', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24640, '2021-10-11', 1650, 23713, 2015, 34635, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24641, '2021-10-11', 1812, 23714, 2015, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24642, '2021-10-11', 1863, 23715, 2015, NULL, '1.0000', '1.4033', '1.4033', '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 (24643, '2021-10-11', 8200, 23716, 2015, NULL, '1.0000', '8.5500', '8.5500', '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 (24644, '2021-10-11', 2169, 23717, 2015, NULL, '1.0000', '1.1500', '1.1500', '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 (24645, '2021-10-11', 1519, 23718, 2015, 34967, '2.0000', '3.3500', '3.3500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24646, '2021-10-11', 7714, 23719, 2015, NULL, '2.0000', '5.0000', '5.0000', '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 (24647, '2021-10-11', 7848, 23720, 2015, NULL, '1.0000', '1.3500', '1.3500', '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 (24648, '2021-10-11', 2327, 23721, 2015, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '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 (24649, '2021-10-11', 2332, 23722, 2015, NULL, '1.0000', '5.0900', '5.0900', '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 (24650, '2021-10-11', 2169, 23723, 2015, NULL, '1.0000', '1.1500', '1.1500', '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 (24651, '2021-10-11', 1592, 23724, 2015, 34930, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24652, '2021-10-11', 2951, 23725, 2015, 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 (24653, '2021-10-11', 1912, 23726, 2015, NULL, '1.0000', '0.6591', '0.6591', '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 (24654, '2021-10-11', 2293, 23727, 2015, NULL, '1.0000', '1.4400', '1.4400', '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 (24655, '2021-10-11', 2235, 23728, 2015, NULL, '2.0000', '19.0000', '19.0000', '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 (24656, '2021-10-11', 2951, 23729, 2015, 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 (24657, '2021-10-11', 7635, 23730, 2015, NULL, '1.0000', '6.6300', '6.6300', '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 (24658, '2021-10-11', 2003, 23731, 2015, 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 (24659, '2021-10-11', 7913, 23732, 2015, NULL, '1.0000', '2.5500', '2.5500', '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 (24660, '2021-10-11', 8933, 23733, 2015, NULL, '1.0000', '10.0000', '10.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 (24661, '2021-10-11', 1692, 23734, 2015, 34935, '1.0000', '9.6500', '9.6500', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24662, '2021-10-11', 1785, 23735, 2015, 37506, '1.0000', '14.6946', '14.6946', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24663, '2021-10-11', 2302, 23736, 2015, 37537, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24664, '2021-10-11', 2951, 23737, 2015, 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 (24665, '2021-10-11', 2287, 23738, 2016, NULL, '4.0000', '2.3000', '2.3000', '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 (24666, '2021-10-11', 9001, 23739, 2016, NULL, '1.0000', '4.3300', '4.3300', '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 (24667, '2021-10-11', 7899, 23740, 2016, NULL, '1.0000', '0.7800', '0.7800', '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 (24668, '2021-10-11', 9332, 23741, 2016, NULL, '1.0000', '72.0000', '72.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 (24669, '2021-10-11', 8434, 23742, 2016, NULL, '1.0000', '27.4000', '27.4000', '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 (24670, '2021-10-11', 2699, 23743, 2016, 32805, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24671, '2021-10-11', 9469, 23744, 2017, NULL, '1.0000', '2.3000', '2.3000', '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 (24672, '2021-10-11', 9563, 23745, 2017, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24673, '2021-10-11', 1904, 23746, 2018, 37558, '2.0000', '201.4970', '201.4970', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24674, '2021-10-11', 2056, 23747, 2018, 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 (24675, '2021-10-11', 1672, 23748, 2018, 36386, '10.0000', '34.8127', '34.8127', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24676, '2021-10-11', 2332, 23749, 2018, 3899, '1.0000', '5.0900', '5.0900', '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 (24677, '2021-10-11', 1839, 23750, 2018, 16908, '1.0000', '6.1500', '6.1500', '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 (24678, '2021-10-11', 1807, 23751, 2018, 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 (24679, '2021-10-11', 2327, 23752, 2018, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24680, '2021-10-11', 1730, 23753, 2018, 34671, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24681, '2021-10-11', 2344, 23754, 2018, 36396, '1.0000', '19.9550', '19.9550', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24682, '2021-10-11', 2821, 23755, 2018, 33026, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24683, '2021-10-11', 1533, 23756, 2018, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24684, '2021-10-11', 1809, 23757, 2018, 29788, '1.0000', '9.1873', '9.1873', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24685, '2021-10-11', 1904, 23758, 2018, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24686, '2021-10-11', 1651, 23759, 2018, 37579, '1.0000', '6.7991', '6.7991', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24687, '2021-10-11', 1700, 23760, 2018, 33230, '1.0000', '44.4444', '44.4444', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24688, '2021-10-11', 2713, 23761, 2018, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24689, '2021-10-11', 1809, 23762, 2018, 29788, '1.0000', '9.1873', '9.1873', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24690, '2021-10-12', 8044, 23763, 2019, NULL, '1.0000', '1.5000', '1.5000', '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 (24691, '2021-10-12', 7981, 23764, 2019, NULL, '6.0000', '6.0000', '6.0000', '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 (24692, '2021-10-12', 3012, 23765, 2019, NULL, '1.0000', '4.7000', '4.7000', '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 (24693, '2021-10-12', 7550, 23766, 2019, NULL, '4.0000', '4.7300', '4.7300', '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 (24694, '2021-10-12', 1590, 23767, 2019, 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 (24695, '2021-10-12', 2293, 23768, 2019, NULL, '3.0000', '1.4400', '1.4400', '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 (24696, '2021-10-12', 8700, 23769, 2019, 37744, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24697, '2021-10-12', 1523, 23770, 2019, NULL, '2.0000', '1.0061', '1.0061', '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 (24698, '2021-10-12', 1825, 23771, 2019, 23678, '1.0000', '4.7700', '4.7700', '7.0000', '7.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 (24699, '2021-10-12', 7922, 23772, 2019, NULL, '1.0000', '6.9800', '6.9800', '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 (24700, '2021-10-12', 1302, 23773, 2019, 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 (24701, '2021-10-12', 2655, 23774, 2019, 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 (24702, '2021-10-12', 2699, 23775, 2019, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24703, '2021-10-12', 8746, 23776, 2019, NULL, '1.0000', '3.8000', '3.8000', '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 (24704, '2021-10-12', 2352, 23777, 2019, NULL, '5.0000', '59.2000', '59.2000', '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 (24705, '2021-10-12', 1339, 23778, 2019, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24706, '2021-10-12', 1564, 23779, 2019, 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 (24707, '2021-10-12', 7530, 23780, 2019, 33128, '1.0000', '5.7200', '5.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24708, '2021-10-12', 1342, 23781, 2019, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24709, '2021-10-12', 7866, 23782, 2019, 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 (24710, '2021-10-12', 1665, 23783, 2019, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24711, '2021-10-12', 7672, 23784, 2019, NULL, '1.0000', '1.0200', '1.0200', '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 (24712, '2021-10-12', 7954, 23785, 2020, 34017, '2.0000', '11.1369', '11.1369', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24713, '2021-10-12', 1349, 23786, 2021, 10162, '1.0000', '20.8300', '20.8300', '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 (24714, '2021-10-12', 2325, 23787, 2021, 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 (24715, '2021-10-12', 7583, 23788, 2021, NULL, '1.0000', '4.0000', '4.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 (24716, '2021-10-12', 1409, 23789, 2021, 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 (24717, '2021-10-12', 1428, 23790, 2021, 20641, '1.0000', '13.0000', '13.0000', '17.0000', '17.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 (24718, '2021-10-12', 1875, 23791, 2021, 6949, '-10.0000', '2.4000', '2.4000', '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 (24719, '2021-10-12', 1875, 23791, 2021, NULL, '15.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-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 (24720, '2021-10-12', 1481, 23792, 2021, NULL, '1.0000', '25.0024', '25.0024', '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 (24721, '2021-10-12', 7739, 23793, 2021, NULL, '1.0000', '2.7500', '2.7500', '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 (24722, '2021-10-12', 2079, 23794, 2021, 228, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '7.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 (24723, '2021-10-12', 9519, 23795, 2021, 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 (24724, '2021-10-12', 2644, 23796, 2021, NULL, '1.0000', '50.0000', '50.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 (24725, '2021-10-12', 1432, 23797, 2021, 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 (24726, '2021-10-12', 2020, 23798, 2021, 10164, '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 (24727, '2021-10-12', 2511, 23799, 2021, 9740, '-1.0000', '8.5000', '8.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 (24728, '2021-10-12', 2511, 23799, 2021, NULL, '2.0000', '8.5000', '8.5000', '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 (24729, '2021-10-12', 2366, 23800, 2021, 3833, '-7.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 (24730, '2021-10-12', 2366, 23800, 2021, NULL, '9.0000', '3.7500', '3.7500', '6.0000', '6.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 (24731, '2021-10-12', 2712, 23801, 2021, 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 (24732, '2021-10-12', 2643, 23802, 2021, 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 (24733, '2021-10-12', 2058, 23803, 2021, NULL, '1.0000', '10.0000', '10.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 (24734, '2021-10-12', 8876, 23804, 2021, NULL, '1.0000', '0.9900', '0.9900', '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 (24735, '2021-10-12', 7559, 23805, 2021, NULL, '3.0000', '6.0000', '6.0000', '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 (24736, '2021-10-12', 1303, 23806, 2021, 32, '4.0000', '54.5520', '54.5520', '4.0000', '4.0000', '98.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 (24737, '2021-10-12', 1671, 23807, 2021, 6774, '2.0000', '4.2000', '4.2000', '6.4000', '6.4000', '0.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 (24738, '2021-10-12', 1671, 23807, 2021, NULL, '8.0000', '4.2000', '4.2000', '6.4000', '6.4000', '-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 (24739, '2021-10-12', 1809, 23808, 2021, 7386, '-2.0000', '9.6000', '9.6000', '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 (24740, '2021-10-12', 1809, 23808, 2021, NULL, '3.0000', '9.6000', '9.6000', '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 (24741, '2021-10-12', 2285, 23809, 2021, 2945, '-7.0000', '35.8000', '35.8000', '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 (24742, '2021-10-12', 2285, 23809, 2021, NULL, '8.0000', '35.8000', '35.8000', '47.0000', '47.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 (24743, '2021-10-12', 1523, 23810, 2021, 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 (24744, '2021-10-12', 7756, 23811, 2021, NULL, '1.0000', '2.5000', '2.5000', '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 (24745, '2021-10-12', 2320, 23812, 2021, 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 (24746, '2021-10-12', 2893, 23813, 2021, 18242, '-2.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 (24747, '2021-10-12', 2893, 23813, 2021, NULL, '3.0000', '6.0000', '6.0000', '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 (24748, '2021-10-12', 1935, 23814, 2021, 5586, '-20.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 (24749, '2021-10-12', 1935, 23814, 2021, NULL, '21.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24750, '2021-10-12', 1608, 23815, 2021, 8222, '-9.0000', '3.3500', '3.3500', '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 (24751, '2021-10-12', 1608, 23815, 2021, NULL, '10.0000', '3.3500', '3.3500', '5.5000', '5.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 (24752, '2021-10-12', 1337, 23816, 2021, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '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 (24753, '2021-10-12', 1615, 23817, 2021, 22253, '14.0000', '934682.9675', '934682.9675', '7.0000', '7.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 (24754, '2021-10-12', 1602, 23818, 2021, 5897, '-20.0000', '6.7859', '6.7859', '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 (24755, '2021-10-12', 1602, 23818, 2021, NULL, '21.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24756, '2021-10-12', 7848, 23819, 2022, NULL, '1.0000', '1.3500', '1.3500', '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 (24757, '2021-10-12', 1781, 23820, 2022, 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 (24758, '2021-10-12', 7411, 23821, 2022, NULL, '1.0000', '1.3500', '1.3500', '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 (24759, '2021-10-12', 2060, 23822, 2022, 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 (24760, '2021-10-12', 7671, 23823, 2022, NULL, '1.0000', '15.5000', '15.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 (24761, '2021-10-12', 9474, 23824, 2022, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24762, '2021-10-12', 9474, 23825, 2022, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24763, '2021-10-12', 8032, 23826, 2022, NULL, '1.0000', '12.0000', '12.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 (24764, '2021-10-12', 7444, 23827, 2022, 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 (24765, '2021-10-12', 7781, 23828, 2022, NULL, '30.0000', '4.2500', '4.2500', '1.0000', '1.0000', '-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 (24766, '2021-10-12', 1904, 23829, 2022, 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 (24767, '2021-10-12', 1510, 23830, 2022, NULL, '1.0000', '10.5918', '10.5918', '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 (24768, '2021-10-12', 2414, 23831, 2022, NULL, '1.0000', '3.4000', '3.4000', '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 (24769, '2021-10-12', 7756, 23832, 2022, NULL, '1.0000', '21.7700', '21.7700', '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 (24770, '2021-10-12', 1498, 23833, 2022, 33520, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24771, '2021-10-12', 7411, 23834, 2022, NULL, '3.0000', '1.3500', '1.3500', '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 (24772, '2021-10-12', 7913, 23835, 2022, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (24773, '2021-10-12', 7506, 23836, 2022, NULL, '1.0000', '15.0000', '15.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 (24774, '2021-10-12', 1841, 23837, 2022, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '157.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24775, '2021-10-12', 7544, 23838, 2022, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24776, '2021-10-12', 2289, 23839, 2022, 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 (24777, '2021-10-12', 8074, 23840, 2022, 36069, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24778, '2021-10-12', 7744, 23841, 2022, 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 (24779, '2021-10-12', 9092, 23842, 2022, NULL, '4.0000', '5.2900', '5.2900', '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 (24780, '2021-10-12', 7318, 23843, 2022, 37431, '1.0000', '11.1265', '11.1265', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24781, '2021-10-12', 7806, 23844, 2022, NULL, '1.0000', '14.0000', '14.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 (24782, '2021-10-12', 2876, 23845, 2022, 37663, '3.0000', '7.0000', '7.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24783, '2021-10-12', 9089, 23846, 2022, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24784, '2021-10-12', 7411, 23847, 2022, NULL, '1.0000', '1.3500', '1.3500', '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 (24785, '2021-10-12', 8883, 23848, 2022, NULL, '2.0000', '56.5500', '56.5500', '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 (24786, '2021-10-12', 1620, 23849, 2022, NULL, '4.0000', '90.0000', '90.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 (24787, '2021-10-12', 8969, 23850, 2022, NULL, '4.0000', '2.0000', '2.0000', '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 (24788, '2021-10-12', 7784, 23851, 2022, NULL, '4.0000', '4.2500', '4.2500', '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 (24789, '2021-10-12', 1463, 23852, 2022, 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 (24790, '2021-10-12', 7671, 23853, 2022, NULL, '1.0000', '15.5000', '15.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 (24791, '2021-10-12', 8814, 23854, 2022, NULL, '10.0000', '5.0000', '5.0000', '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 (24792, '2021-10-12', 8622, 23855, 2022, 33733, '2.0000', '-29.2060', '-29.2060', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24793, '2021-10-12', 9193, 23856, 2022, NULL, '1.0000', '6.8075', '6.8075', '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 (24794, '2021-10-12', 1848, 23857, 2022, NULL, '10.0000', '0.4200', '0.4200', '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 (24795, '2021-10-12', 7547, 23858, 2022, NULL, '4.0000', '0.0000', '0.0000', '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 (24796, '2021-10-12', 7411, 23859, 2022, NULL, '1.0000', '1.3500', '1.3500', '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 (24797, '2021-10-12', 1760, 23860, 2022, 37408, '3.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24798, '2021-10-12', 9271, 23861, 2022, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24799, '2021-10-12', 7473, 23862, 2022, NULL, '5.0000', '9.2200', '9.2200', '0.6000', '0.6000', '-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 (24800, '2021-10-12', 8098, 23863, 2022, 36022, '2.0000', '-16.7180', '-16.7180', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24801, '2021-10-12', 7560, 23864, 2022, NULL, '1.0000', '4.4500', '4.4500', '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 (24802, '2021-10-12', 7818, 23865, 2022, NULL, '1.0000', '15.5200', '15.5200', '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 (24803, '2021-10-12', 7674, 23866, 2022, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '209.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24804, '2021-10-12', 2467, 23867, 2023, NULL, '1.0000', '19.8000', '19.8000', '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 (24805, '2021-10-12', 9266, 23868, 2023, 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 (24806, '2021-10-12', 7995, 23869, 2023, NULL, '1.0000', '40.2000', '40.2000', '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 (24807, '2021-10-12', 7532, 23870, 2024, 34677, '1.0000', '20.6000', '20.6000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24808, '2021-10-12', 2289, 23871, 2024, NULL, '4.0000', '0.2300', '0.2300', '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 (24809, '2021-10-12', 1935, 23872, 2024, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24810, '2021-10-12', 2221, 23873, 2024, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24811, '2021-10-12', 2825, 23874, 2024, NULL, '1.0000', '12.0000', '12.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 (24812, '2021-10-12', 2043, 23875, 2024, 6409, '1.0000', '9.0000', '9.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 (24813, '2021-10-12', 1987, 23876, 2024, NULL, '1.0000', '4.5000', '4.5000', '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 (24814, '2021-10-12', 8746, 23877, 2024, NULL, '2.0000', '3.8000', '3.8000', '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 (24815, '2021-10-12', 8773, 23878, 2024, 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 (24816, '2021-10-12', 8608, 23879, 2024, NULL, '1.0000', '0.9000', '0.9000', '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 (24817, '2021-10-12', 8767, 23880, 2024, NULL, '1.0000', '6.6900', '6.6900', '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 (24818, '2021-10-12', 9214, 23881, 2024, NULL, '1.0000', '9.6000', '9.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 (24819, '2021-10-12', 1412, 23882, 2024, 18446, '1.0000', '14.0000', '14.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 (24820, '2021-10-12', 2169, 23883, 2024, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24821, '2021-10-12', 2384, 23884, 2024, 29813, '10.0000', '0.2683', '0.2683', '0.7000', '0.7000', '77.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24822, '2021-10-12', 1651, 23885, 2024, 37579, '1.0000', '6.7991', '6.7991', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24823, '2021-10-12', 1812, 23886, 2024, 37578, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24824, '2021-10-12', 2169, 23887, 2024, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24825, '2021-10-12', 2315, 23888, 2024, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '232.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24826, '2021-10-12', 2810, 23889, 2024, 37552, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24827, '2021-10-12', 1846, 23890, 2024, 31990, '1.0000', '31.0430', '31.0430', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24828, '2021-10-12', 2068, 23891, 2024, 33034, '1.0000', '12.3192', '12.3192', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24829, '2021-10-12', 1912, 23892, 2024, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24830, '2021-10-12', 1805, 23893, 2024, 34690, '1.0000', '4.2928', '4.2928', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24831, '2021-10-12', 7564, 23894, 2025, NULL, '1.0000', '0.6400', '0.6400', '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 (24832, '2021-10-12', 1590, 23895, 2025, 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 (24833, '2021-10-12', 1580, 23896, 2025, 33362, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24834, '2021-10-12', 2242, 23897, 2025, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24835, '2021-10-12', 1837, 23898, 2025, NULL, '6.0000', '0.5500', '0.5500', '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 (24836, '2021-10-12', 1863, 23899, 2025, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24837, '2021-10-12', 1935, 23900, 2025, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24838, '2021-10-12', 1809, 23901, 2025, 13765, '1.0000', '9.1880', '9.1880', '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 (24839, '2021-10-12', 1912, 23902, 2025, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24840, '2021-10-12', 2169, 23903, 2025, NULL, '1.0000', '1.1500', '1.1500', '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 (24841, '2021-10-12', 1612, 23904, 2025, 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 (24842, '2021-10-12', 1311, 23905, 2025, 22366, '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 (24843, '2021-10-12', 2951, 23906, 2025, 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 (24844, '2021-10-12', 1863, 23907, 2025, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24845, '2021-10-12', 1935, 23908, 2025, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24846, '2021-10-12', 9503, 23909, 2025, 37717, '2.0000', '11.4766', '11.4766', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24847, '2021-10-12', 1810, 23910, 2025, NULL, '1.0000', '8.6700', '8.6700', '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 (24848, '2021-10-12', 7482, 23911, 2025, 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 (24849, '2021-10-12', 1602, 23912, 2025, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '30.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24850, '2021-10-12', 8638, 23913, 2025, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24851, '2021-10-12', 7564, 23914, 2025, NULL, '1.0000', '0.6400', '0.6400', '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 (24852, '2021-10-12', 2384, 23915, 2025, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (24853, '2021-10-12', 2674, 23916, 2025, 34922, '1.0000', '22.2792', '22.2792', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24854, '2021-10-12', 2066, 23917, 2025, 34656, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24855, '2021-10-12', 1554, 23918, 2025, 23115, '1.0000', '2.3063', '2.3063', '5.0000', '5.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 (24856, '2021-10-12', 1381, 23919, 2026, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24857, '2021-10-12', 1529, 23920, 2026, 37780, '1.0000', '3.4695', '3.4695', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24858, '2021-10-12', 1935, 23921, 2026, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24859, '2021-10-12', 2950, 23922, 2026, 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 (24860, '2021-10-12', 2169, 23923, 2026, NULL, '1.0000', '1.1500', '1.1500', '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 (24861, '2021-10-12', 2951, 23924, 2026, 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 (24862, '2021-10-12', 1529, 23925, 2026, 37780, '1.0000', '3.4695', '3.4695', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24863, '2021-10-12', 8454, 23926, 2026, NULL, '1.0000', '5.1700', '5.1700', '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 (24864, '2021-10-12', 2543, 23927, 2026, 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 (24865, '2021-10-12', 1910, 23928, 2026, 23140, '2.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (24866, '2021-10-12', 1574, 23929, 2026, 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 (24867, '2021-10-12', 1523, 23930, 2026, NULL, '1.0000', '1.0061', '1.0061', '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 (24868, '2021-10-12', 1602, 23931, 2026, 37781, '2.0000', '6.1514', '6.1514', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24869, '2021-10-12', 1621, 23932, 2026, 37805, '1.0000', '9.6682', '9.6682', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24870, '2021-10-12', 1602, 23933, 2026, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24871, '2021-10-12', 9556, 23934, 2026, 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 (24872, '2021-10-12', 2384, 23935, 2026, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24873, '2021-10-12', 3058, 23936, 2026, 37807, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24874, '2021-10-12', 8638, 23937, 2026, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24875, '2021-10-12', 9461, 23938, 2026, NULL, '1.0000', '1.6000', '1.6000', '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 (24876, '2021-10-12', 2250, 23939, 2026, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24877, '2021-10-12', 1935, 23940, 2026, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24878, '2021-10-12', 8595, 23941, 2026, 29628, '1.0000', '4.2100', '4.2100', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24879, '2021-10-12', 7672, 23942, 2026, NULL, '1.0000', '1.0200', '1.0200', '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 (24880, '2021-10-12', 1532, 23943, 2026, 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 (24881, '2021-10-12', 1529, 23944, 2026, 37780, '1.0000', '3.4695', '3.4695', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24882, '2021-10-12', 1386, 23945, 2026, 37815, '1.0000', '-9.7500', '-9.7500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24883, '2021-10-12', 1884, 23946, 2026, 37803, '1.0000', '4.8050', '4.8050', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24884, '2021-10-12', 1590, 23947, 2026, 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 (24885, '2021-10-12', 2315, 23948, 2026, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24886, '2021-10-12', 1519, 23949, 2026, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24887, '2021-10-12', 7412, 23950, 2026, NULL, '1.0000', '1.5200', '1.5200', '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 (24888, '2021-10-12', 2821, 23951, 2026, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24889, '2021-10-12', 1665, 23952, 2026, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24890, '2021-10-12', 2108, 23953, 2026, 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 (24891, '2021-10-12', 2315, 23954, 2026, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24892, '2021-10-12', 2277, 23955, 2026, 34655, '2.0000', '0.8982', '0.8982', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24893, '2021-10-12', 1339, 23956, 2026, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24894, '2021-10-12', 7709, 23957, 2027, NULL, '2.0000', '35.8000', '35.8000', '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 (24895, '2021-10-12', 7867, 23958, 2027, NULL, '2.0000', '2.7700', '2.7700', '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 (24896, '2021-10-12', 1854, 23959, 2027, 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 (24897, '2021-10-12', 2297, 23960, 2027, NULL, '1.0000', '7.2000', '7.2000', '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 (24898, '2021-10-12', 7684, 23961, 2027, NULL, '1.0000', '9.0000', '9.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 (24899, '2021-10-12', 2635, 23962, 2027, 32793, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24900, '2021-10-12', 7649, 23963, 2027, NULL, '1.0000', '2.6700', '2.6700', '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 (24901, '2021-10-12', 7576, 23964, 2027, NULL, '2.0000', '6.9100', '6.9100', '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 (24902, '2021-10-12', 7338, 23965, 2027, 33739, '1.0000', '23.1300', '23.1300', '31.0000', '31.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24903, '2021-10-12', 8247, 23966, 2027, NULL, '3.0000', '10.0000', '10.0000', '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 (24904, '2021-10-12', 1330, 23967, 2027, 32795, '1.0000', '246.1450', '246.1450', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24905, '2021-10-12', 7709, 23968, 2027, NULL, '2.0000', '35.8000', '35.8000', '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 (24906, '2021-10-12', 7780, 23969, 2027, NULL, '1.0000', '2.6000', '2.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 (24907, '2021-10-12', 7674, 23970, 2027, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '208.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24908, '2021-10-12', 8005, 23971, 2027, NULL, '1.0000', '49.0000', '49.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 (24909, '2021-10-12', 9092, 23972, 2027, NULL, '1.0000', '5.2900', '5.2900', '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 (24910, '2021-10-12', 7749, 23973, 2027, 36051, '1.0000', '-3.8876', '-3.8876', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24911, '2021-10-12', 8359, 23974, 2027, NULL, '1.0000', '16.7750', '16.7750', '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 (24912, '2021-10-12', 8763, 23975, 2027, 32138, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24913, '2021-10-12', 2315, 23976, 2027, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24914, '2021-10-12', 8715, 23977, 2027, NULL, '1.0000', '3.3000', '3.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 (24915, '2021-10-12', 8336, 23978, 2027, NULL, '4.0000', '3.4000', '3.4000', '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 (24916, '2021-10-12', 7758, 23979, 2027, NULL, '1.0000', '10.8500', '10.8500', '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 (24917, '2021-10-12', 9202, 23980, 2027, NULL, '1.0000', '3.5000', '3.5000', '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 (24918, '2021-10-12', 2315, 23981, 2027, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24919, '2021-10-12', 7885, 23982, 2027, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24920, '2021-10-12', 7518, 23983, 2027, NULL, '3.0000', '-32.3379', '-32.3379', '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 (24921, '2021-10-12', 7672, 23984, 2027, NULL, '4.0000', '1.0200', '1.0200', '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 (24922, '2021-10-12', 9275, 23985, 2027, NULL, '1.0000', '6.3000', '6.3000', '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 (24923, '2021-10-12', 7590, 23986, 2027, NULL, '1.0000', '4.3600', '4.3600', '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 (24924, '2021-10-12', 7482, 23987, 2027, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24925, '2021-10-12', 8300, 23988, 2027, NULL, '2.0000', '7.4300', '7.4300', '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 (24926, '2021-10-12', 7674, 23989, 2027, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '208.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24927, '2021-10-12', 7588, 23990, 2027, NULL, '1.0000', '7.6111', '7.6111', '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 (24928, '2021-10-12', 7509, 23991, 2027, 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 (24929, '2021-10-12', 7848, 23992, 2027, NULL, '1.0000', '1.3500', '1.3500', '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 (24930, '2021-10-12', 8203, 23993, 2027, NULL, '4.0000', '9.8000', '9.8000', '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 (24931, '2021-10-12', 7672, 23994, 2027, NULL, '1.0000', '1.0200', '1.0200', '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 (24932, '2021-10-12', 9456, 23995, 2027, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24933, '2021-10-12', 7524, 23996, 2027, NULL, '1.0000', '11.9500', '11.9500', '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 (24934, '2021-10-12', 7518, 23997, 2027, NULL, '1.0000', '-32.3379', '-32.3379', '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 (24935, '2021-10-12', 9424, 23998, 2027, NULL, '1.0000', '68.0000', '68.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 (24936, '2021-10-12', 8476, 23999, 2027, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (24937, '2021-10-12', 8046, 24000, 2027, 37407, '10.0000', '456.2805', '456.2805', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24938, '2021-10-12', 7458, 24001, 2027, 30065, '1.0000', '3.0000', '3.0000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24939, '2021-10-12', 8608, 24002, 2027, 32131, '1.0000', '5.7400', '5.7400', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24940, '2021-10-12', 7645, 24003, 2027, NULL, '1.0000', '6.0000', '6.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24941, '2021-10-12', 7806, 24004, 2027, NULL, '2.0000', '14.0000', '14.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 (24942, '2021-10-12', 7780, 24005, 2027, NULL, '1.0000', '2.6000', '2.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 (24943, '2021-10-12', 8000, 24006, 2027, NULL, '1.0000', '41.2918', '41.2918', '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 (24944, '2021-10-12', 8166, 24007, 2027, NULL, '1.0000', '4.6000', '4.6000', '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 (24945, '2021-10-12', 7736, 24008, 2027, NULL, '1.0000', '15.0000', '15.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 (24946, '2021-10-12', 7648, 24009, 2027, 37390, '1.0000', '12.1446', '12.1446', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24947, '2021-10-12', 9275, 24010, 2027, NULL, '1.0000', '6.3000', '6.3000', '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 (24948, '2021-10-12', 9572, 24011, 2028, 37446, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24949, '2021-10-12', 1523, 24012, 2028, NULL, '1.0000', '1.0061', '1.0061', '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 (24950, '2021-10-12', 1863, 24013, 2028, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24951, '2021-10-12', 2821, 24014, 2028, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24952, '2021-10-12', 1574, 24015, 2028, 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 (24953, '2021-10-12', 2951, 24016, 2028, 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 (24954, '2021-10-12', 2601, 24017, 2029, 36789, '1.0000', '16.0000', '16.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24955, '2021-10-12', 1369, 24018, 2029, 8433, '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 (24956, '2021-10-12', 1888, 24019, 2029, NULL, '1.0000', '-42.1250', '-42.1250', '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 (24957, '2021-10-12', 8677, 24020, 2029, 32871, '2.0000', '-1.2995', '-1.2995', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24958, '2021-10-12', 2503, 24021, 2029, 36334, '1.0000', '37.6810', '37.6810', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24959, '2021-10-12', 9562, 24022, 2029, NULL, '1.0000', '5.4000', '5.4000', '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 (24960, '2021-10-12', 2356, 24023, 2029, 24350, '1.0000', '38.9800', '38.9800', '51.0000', '51.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 (24961, '2021-10-12', 1620, 24024, 2029, 21573, '4.0000', '13.9038', '13.9038', '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 (24962, '2021-10-12', 1667, 24025, 2029, 37587, '1.0000', '76.8317', '76.8317', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24963, '2021-10-12', 1863, 24026, 2029, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24964, '2021-10-13', 1519, 24027, 2030, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24965, '2021-10-13', 2916, 24028, 2030, 34035, '1.0000', '14.8749', '14.8749', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24966, '2021-10-13', 2068, 24029, 2030, 33354, '1.0000', '13.2503', '13.2503', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24967, '2021-10-13', 2642, 24030, 2030, 37719, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24968, '2021-10-13', 2318, 24031, 2030, NULL, '2.0000', '0.5000', '0.5000', '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 (24969, '2021-10-13', 1665, 24032, 2030, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24970, '2021-10-13', 7412, 24033, 2030, NULL, '1.0000', '1.5200', '1.5200', '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 (24971, '2021-10-13', 7550, 24034, 2030, NULL, '4.0000', '4.7300', '4.7300', '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 (24972, '2021-10-13', 7560, 24035, 2030, NULL, '1.0000', '4.4500', '4.4500', '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 (24973, '2021-10-13', 7711, 24036, 2030, NULL, '1.0000', '0.3900', '0.3900', '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 (24974, '2021-10-13', 9556, 24037, 2030, 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 (24975, '2021-10-13', 1935, 24038, 2030, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24976, '2021-10-13', 1501, 24039, 2030, NULL, '1.0000', '2.2100', '2.2100', '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 (24977, '2021-10-13', 1699, 24040, 2030, NULL, '1.0000', '3.2000', '3.2000', '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 (24978, '2021-10-13', 8622, 24041, 2030, 37767, '1.0000', '12.3173', '12.3173', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24979, '2021-10-13', 7593, 24042, 2030, NULL, '1.0000', '2.4500', '2.4500', '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 (24980, '2021-10-13', 8638, 24043, 2030, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24981, '2021-10-13', 2375, 24044, 2030, NULL, '1.0000', '12.5000', '12.5000', '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 (24982, '2021-10-13', 2435, 24045, 2031, 23971, '1.0000', '5.0000', '5.0000', '7.0000', '7.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 (24983, '2021-10-13', 1602, 24046, 2031, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '26.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24984, '2021-10-13', 2237, 24047, 2031, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24985, '2021-10-13', 2169, 24048, 2031, NULL, '1.0000', '1.1500', '1.1500', '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 (24986, '2021-10-13', 1369, 24049, 2031, 19356, '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 (24987, '2021-10-13', 2221, 24050, 2031, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.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 (24988, '2021-10-13', 1549, 24051, 2032, 19845, '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 (24989, '2021-10-13', 1863, 24052, 2032, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24990, '2021-10-13', 1912, 24053, 2032, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24991, '2021-10-13', 2284, 24054, 2033, 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 (24992, '2021-10-13', 2693, 24055, 2034, 12285, '-1.0000', '25.3656', '25.3656', '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 (24993, '2021-10-13', 2693, 24055, 2034, NULL, '2.0000', '25.3656', '25.3656', '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 (24994, '2021-10-13', 1863, 24056, 2034, 10808, '-44.0000', '0.4136', '0.4136', '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 (24995, '2021-10-13', 1863, 24056, 2034, NULL, '45.0000', '0.4136', '0.4136', '2.0000', '2.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 (24996, '2021-10-13', 2050, 24057, 2034, 6869, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 61);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24997, '2021-10-13', 2460, 24058, 2034, 12921, '-2.0000', '32.7700', '32.7700', '44.5000', '44.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 (24998, '2021-10-13', 2460, 24058, 2034, NULL, '3.0000', '32.7700', '32.7700', '44.5000', '44.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 (24999, '2021-10-13', 2221, 24059, 2034, 4154, '-7.0000', '14.4737', '14.4737', '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 (25000, '2021-10-13', 2221, 24059, 2034, NULL, '8.0000', '14.4737', '14.4737', '25.0000', '25.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 (25001, '2021-10-13', 9554, 24060, 2034, 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 (25002, '2021-10-13', 9547, 24061, 2034, 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 (25003, '2021-10-13', 9481, 24062, 2034, 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 (25004, '2021-10-13', 9478, 24063, 2034, NULL, '1.0000', '9.0000', '9.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 (25005, '2021-10-13', 1533, 24064, 2034, 22263, '1.0000', '2.5917', '2.5917', '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 (25006, '2021-10-13', 2843, 24065, 2034, NULL, '1.0000', '8.0000', '8.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 (25007, '2021-10-13', 1641, 24066, 2034, 3214, '-48.0000', '0.9800', '0.9800', '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 (25008, '2021-10-13', 1641, 24066, 2034, NULL, '60.0000', '0.9800', '0.9800', '1.3000', '1.3000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25009, '2021-10-13', 1836, 24067, 2034, 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 (25010, '2021-10-13', 2221, 24068, 2034, 4154, '-7.0000', '14.4737', '14.4737', '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 (25011, '2021-10-13', 2221, 24068, 2034, NULL, '8.0000', '14.4737', '14.4737', '25.0000', '25.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 (25012, '2021-10-13', 1525, 24069, 2034, NULL, '10.0000', '4.9100', '4.9100', '6.5000', '6.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 (25013, '2021-10-13', 9563, 24070, 2034, NULL, '1.0000', '5.1000', '5.1000', '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 (25014, '2021-10-13', 2443, 24071, 2034, 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 (25015, '2021-10-13', 8666, 24072, 2034, NULL, '1.0000', '0.4600', '0.4600', '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 (25016, '2021-10-13', 2712, 24073, 2034, 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 (25017, '2021-10-13', 1666, 24074, 2035, 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 (25018, '2021-10-13', 1666, 24074, 2035, 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 (25019, '2021-10-13', 1584, 24075, 2035, NULL, '3.0000', '90.0000', '90.0000', '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 (25020, '2021-10-13', 2616, 24076, 2035, NULL, '2.0000', '3.0000', '3.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 (25021, '2021-10-13', 7915, 24077, 2035, NULL, '1.0000', '2.8000', '2.8000', '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 (25022, '2021-10-13', 2601, 24078, 2035, NULL, '1.0000', '16.0000', '16.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 (25023, '2021-10-13', 1723, 24079, 2035, 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 (25024, '2021-10-13', 1824, 24080, 2035, NULL, '1.0000', '5.2000', '5.2000', '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 (25025, '2021-10-13', 2643, 24081, 2035, 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 (25026, '2021-10-13', 2409, 24082, 2035, 4498, '-2.0000', '2.3100', '2.3100', '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 (25027, '2021-10-13', 2409, 24082, 2035, NULL, '3.0000', '2.3100', '2.3100', '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 (25028, '2021-10-13', 9475, 24083, 2035, NULL, '1.0000', '24.0000', '24.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 (25029, '2021-10-13', 2712, 24084, 2035, 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 (25030, '2021-10-13', 2757, 24085, 2035, NULL, '1.0000', '6.8000', '6.8000', '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 (25031, '2021-10-13', 7784, 24086, 2036, NULL, '1.0000', '4.2500', '4.2500', '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 (25032, '2021-10-13', 7675, 24087, 2036, NULL, '1.0000', '11.4300', '11.4300', '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 (25033, '2021-10-13', 7353, 24088, 2036, 30931, '3.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25034, '2021-10-13', 8063, 24089, 2036, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '31.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25035, '2021-10-13', 7448, 24090, 2036, NULL, '1.0000', '15.8500', '15.8500', '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 (25036, '2021-10-13', 1577, 24091, 2036, 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 (25037, '2021-10-13', 7639, 24092, 2036, 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 (25038, '2021-10-13', 7411, 24093, 2036, NULL, '2.0000', '1.3500', '1.3500', '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 (25039, '2021-10-13', 8417, 24094, 2036, NULL, '1.0000', '5.8000', '5.8000', '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 (25040, '2021-10-13', 8086, 24095, 2036, 36047, '1.0000', '9.6204', '9.6204', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25041, '2021-10-13', 7763, 24096, 2036, NULL, '1.0000', '1.1300', '1.1300', '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 (25042, '2021-10-13', 2655, 24097, 2036, 36675, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25043, '2021-10-13', 7448, 24098, 2036, NULL, '1.0000', '15.8500', '15.8500', '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 (25044, '2021-10-13', 8166, 24099, 2036, NULL, '1.0000', '4.6000', '4.6000', '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 (25045, '2021-10-13', 8746, 24100, 2036, 32134, '1.0000', '3.8000', '3.8000', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25046, '2021-10-13', 7531, 24101, 2036, NULL, '3.0000', '16.5000', '16.5000', '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 (25047, '2021-10-13', 7881, 24102, 2036, NULL, '1.0000', '32.7700', '32.7700', '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 (25048, '2021-10-13', 8131, 24103, 2036, NULL, '1.0000', '6.9800', '6.9800', '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 (25049, '2021-10-13', 8608, 24104, 2036, 32131, '2.0000', '5.7400', '5.7400', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25050, '2021-10-13', 9089, 24105, 2036, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25051, '2021-10-13', 8041, 24106, 2036, NULL, '1.0000', '0.4700', '0.4700', '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 (25052, '2021-10-13', 7333, 24107, 2036, NULL, '2.0000', '13.5000', '13.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 (25053, '2021-10-13', 7658, 24108, 2036, NULL, '10.0000', '10.1500', '10.1500', '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 (25054, '2021-10-13', 7334, 24109, 2036, 36056, '1.0000', '8.1600', '8.1600', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25055, '2021-10-13', 7899, 24110, 2037, NULL, '1.0000', '0.7800', '0.7800', '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 (25056, '2021-10-13', 7672, 24111, 2037, NULL, '1.0000', '1.0200', '1.0200', '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 (25057, '2021-10-13', 8360, 24112, 2037, 35193, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25058, '2021-10-13', 7642, 24113, 2037, NULL, '1.0000', '2.6900', '2.6900', '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 (25059, '2021-10-13', 7641, 24114, 2037, NULL, '1.0000', '6.5038', '6.5038', '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 (25060, '2021-10-13', 9230, 24115, 2037, NULL, '2.0000', '10.7400', '10.7400', '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 (25061, '2021-10-13', 8038, 24116, 2037, NULL, '2.0000', '6.7600', '6.7600', '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 (25062, '2021-10-13', 1837, 24117, 2038, 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 (25063, '2021-10-13', 2059, 24118, 2038, 32582, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25064, '2021-10-13', 2285, 24119, 2038, 36372, '1.0000', '36.2615', '36.2615', '47.0000', '47.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25065, '2021-10-13', 2633, 24120, 2038, 31993, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25066, '2021-10-13', 1912, 24121, 2038, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25067, '2021-10-13', 1828, 24122, 2038, 33003, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25068, '2021-10-13', 1678, 24123, 2038, 25036, '1.0000', '18.5556', '18.5556', '34.0000', '34.0000', '0.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 (25069, '2021-10-13', 1641, 24124, 2038, 34686, '10.0000', '76.5908', '76.5908', '1.3000', '1.3000', '57.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25070, '2021-10-13', 2215, 24125, 2038, 36800, '2.0000', '12.0000', '12.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25071, '2021-10-13', 1812, 24126, 2038, 37578, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25072, '2021-10-13', 2660, 24127, 2038, 37560, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25073, '2021-10-13', 2264, 24128, 2038, 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 (25074, '2021-10-13', 2943, 24129, 2038, 21545, '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 (25075, '2021-10-13', 2373, 24130, 2038, 4378, '1.0000', '11.5000', '11.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 (25076, '2021-10-13', 2132, 24131, 2038, 4404, '1.0000', '22.0000', '22.0000', '24.0000', '24.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 (25077, '2021-10-13', 1501, 24132, 2038, 23580, '1.0000', '1566.1965', '1566.1965', '3.0000', '3.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 (25078, '2021-10-13', 1369, 24133, 2038, 8433, '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 (25079, '2021-10-13', 8404, 24134, 2038, NULL, '1.0000', '8.8000', '8.8000', '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 (25080, '2021-10-13', 1674, 24135, 2038, 32017, '1.0000', '135.4360', '135.4360', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25081, '2021-10-13', 1504, 24136, 2038, 37581, '10.0000', '1.1357', '1.1357', '2.2000', '2.2000', '80.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25082, '2021-10-13', 1973, 24137, 2038, 10213, '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 (25083, '2021-10-13', 2280, 24138, 2038, 21586, '1.0000', '1.9000', '1.9000', '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 (25084, '2021-10-13', 1884, 24139, 2038, NULL, '1.0000', '4.8500', '4.8500', '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 (25085, '2021-10-13', 9476, 24140, 2038, 32856, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25086, '2021-10-13', 8525, 24141, 2038, NULL, '1.0000', '18.9500', '18.9500', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25087, '2021-10-13', 1523, 24142, 2038, 24285, '2.0000', '0.9596', '0.9596', '5.0000', '5.0000', '10.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 (25088, '2021-10-13', 1602, 24143, 2038, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '52.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25089, '2021-10-13', 1537, 24144, 2039, 37576, '1.0000', '45.5701', '45.5701', '56.0000', '56.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25090, '2021-10-13', 1532, 24145, 2040, 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 (25091, '2021-10-13', 1863, 24146, 2040, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25092, '2021-10-13', 2066, 24147, 2040, 34656, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25093, '2021-10-13', 1935, 24148, 2040, 30686, '2.0000', '37.9921', '37.9921', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25094, '2021-10-13', 2167, 24149, 2040, 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 (25095, '2021-10-13', 2941, 24150, 2040, NULL, '1.0000', '2.6600', '2.6600', '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 (25096, '2021-10-13', 8746, 24151, 2040, NULL, '1.0000', '3.8000', '3.8000', '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 (25097, '2021-10-13', 2821, 24152, 2040, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25098, '2021-10-13', 7849, 24153, 2040, 37720, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25099, '2021-10-13', 2167, 24154, 2040, 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 (25100, '2021-10-13', 1596, 24155, 2040, 37764, '1.0000', '2.4388', '2.4388', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25101, '2021-10-13', 8982, 24156, 2040, 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 (25102, '2021-10-13', 2315, 24157, 2040, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25103, '2021-10-13', 2167, 24158, 2040, 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 (25104, '2021-10-13', 2713, 24159, 2040, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25105, '2021-10-13', 1863, 24160, 2040, 37810, '2.0000', '1.2830', '1.2830', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25106, '2021-10-13', 2821, 24161, 2040, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25107, '2021-10-13', 8680, 24162, 2040, NULL, '1.0000', '2.0000', '2.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 (25108, '2021-10-13', 1388, 24163, 2040, NULL, '1.0000', '5.3000', '5.3000', '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 (25109, '2021-10-13', 2451, 24164, 2040, 19830, '1.0000', '8.8000', '8.8000', '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 (25110, '2021-10-13', 2215, 24165, 2040, 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 (25111, '2021-10-13', 2715, 24166, 2040, NULL, '1.0000', '9.2600', '9.2600', '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 (25112, '2021-10-13', 1928, 24167, 2040, NULL, '1.0000', '5.5000', '5.5000', '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 (25113, '2021-10-13', 3058, 24168, 2040, 37807, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25114, '2021-10-13', 1912, 24169, 2040, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25115, '2021-10-13', 2169, 24170, 2040, NULL, '1.0000', '1.1500', '1.1500', '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 (25116, '2021-10-13', 1532, 24171, 2040, 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 (25117, '2021-10-13', 7769, 24172, 2040, 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 (25118, '2021-10-13', 2167, 24173, 2040, 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 (25119, '2021-10-13', 1651, 24174, 2040, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25120, '2021-10-13', 2384, 24175, 2040, NULL, '10.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (25121, '2021-10-13', 2315, 24176, 2040, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25122, '2021-10-13', 2169, 24177, 2040, NULL, '1.0000', '1.1500', '1.1500', '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 (25123, '2021-10-13', 1871, 24178, 2040, 37801, '1.0000', '2.9308', '2.9308', '3.0000', '3.0000', '59.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25124, '2021-10-13', 2169, 24179, 2040, NULL, '1.0000', '1.1500', '1.1500', '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 (25125, '2021-10-13', 8608, 24180, 2040, NULL, '1.0000', '0.9000', '0.9000', '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 (25126, '2021-10-13', 2293, 24181, 2040, NULL, '1.0000', '1.4400', '1.4400', '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 (25127, '2021-10-13', 7628, 24182, 2040, NULL, '3.0000', '2.9100', '2.9100', '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 (25128, '2021-10-13', 2272, 24183, 2040, 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 (25129, '2021-10-13', 2315, 24184, 2040, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25130, '2021-10-13', 9474, 24185, 2040, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25131, '2021-10-13', 2965, 24186, 2040, NULL, '1.0000', '5.0000', '5.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 (25132, '2021-10-13', 1322, 24187, 2040, 37796, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25133, '2021-10-13', 2095, 24188, 2040, 34658, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25134, '2021-10-13', 1781, 24189, 2040, 34602, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25135, '2021-10-13', 2821, 24190, 2040, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25136, '2021-10-13', 1523, 24191, 2040, NULL, '1.0000', '1.0061', '1.0061', '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 (25137, '2021-10-13', 7741, 24192, 2040, NULL, '1.0000', '1.2000', '1.2000', '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 (25138, '2021-10-13', 2327, 24193, 2040, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.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 (25139, '2021-10-13', 2003, 24194, 2040, 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 (25140, '2021-10-13', 1863, 24195, 2040, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25141, '2021-10-13', 7819, 24196, 2040, NULL, '1.0000', '9.5000', '9.5000', '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 (25142, '2021-10-13', 2713, 24197, 2040, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25143, '2021-10-13', 2327, 24198, 2040, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.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 (25144, '2021-10-13', 2108, 24199, 2040, 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 (25145, '2021-10-13', 2315, 24200, 2040, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25146, '2021-10-13', 7781, 24201, 2041, NULL, '3.0000', '4.2500', '4.2500', '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 (25147, '2021-10-13', 9092, 24202, 2041, NULL, '1.0000', '5.2900', '5.2900', '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 (25148, '2021-10-13', 9563, 24203, 2041, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25149, '2021-10-13', 7411, 24204, 2041, NULL, '2.0000', '1.3500', '1.3500', '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 (25150, '2021-10-13', 7672, 24205, 2041, NULL, '1.0000', '1.0200', '1.0200', '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 (25151, '2021-10-13', 2283, 24206, 2041, 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 (25152, '2021-10-13', 7756, 24207, 2041, NULL, '1.0000', '21.7700', '21.7700', '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 (25153, '2021-10-13', 7946, 24208, 2041, NULL, '1.0000', '0.5200', '0.5200', '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 (25154, '2021-10-13', 8080, 24209, 2041, NULL, '5.0000', '2.9000', '2.9000', '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 (25155, '2021-10-13', 2315, 24210, 2041, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25156, '2021-10-13', 8147, 24211, 2041, NULL, '1.0000', '4.5100', '4.5100', '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 (25157, '2021-10-13', 7848, 24212, 2041, NULL, '1.0000', '1.3500', '1.3500', '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 (25158, '2021-10-13', 9089, 24213, 2041, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25159, '2021-10-13', 8608, 24214, 2041, 32131, '1.0000', '5.7400', '5.7400', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25160, '2021-10-13', 8608, 24214, 2041, NULL, '1.0000', '5.7400', '5.7400', '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 (25161, '2021-10-13', 8269, 24215, 2041, NULL, '1.0000', '10.0000', '10.0000', '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 (25162, '2021-10-13', 7666, 24216, 2041, NULL, '1.0000', '10.0000', '10.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 (25163, '2021-10-13', 1807, 24217, 2041, 33541, '3.0000', '-34.8462', '-34.8462', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25164, '2021-10-13', 7427, 24218, 2041, 37371, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25165, '2021-10-13', 1841, 24219, 2041, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '155.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25166, '2021-10-13', 1840, 24220, 2041, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '173.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25167, '2021-10-13', 7675, 24221, 2041, NULL, '1.0000', '11.4300', '11.4300', '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 (25168, '2021-10-13', 2968, 24222, 2041, NULL, '1.0000', '18.0000', '18.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 (25169, '2021-10-13', 8810, 24223, 2041, NULL, '1.0000', '1.9200', '1.9200', '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 (25170, '2021-10-13', 9424, 24224, 2041, NULL, '1.0000', '68.0000', '68.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 (25171, '2021-10-13', 7787, 24225, 2041, NULL, '1.0000', '3.9600', '3.9600', '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 (25172, '2021-10-13', 7333, 24226, 2041, NULL, '5.0000', '13.5000', '13.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 (25173, '2021-10-13', 8074, 24227, 2041, 36069, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25174, '2021-10-13', 9265, 24228, 2041, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25175, '2021-10-13', 1805, 24229, 2041, 35229, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25176, '2021-10-13', 2283, 24230, 2041, 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 (25177, '2021-10-13', 8164, 24231, 2041, NULL, '1.0000', '3.1200', '3.1200', '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 (25178, '2021-10-13', 7514, 24232, 2041, NULL, '1.0000', '12.9983', '12.9983', '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 (25179, '2021-10-13', 7532, 24233, 2041, NULL, '1.0000', '9.0500', '9.0500', '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 (25180, '2021-10-13', 7899, 24234, 2041, NULL, '1.0000', '0.7800', '0.7800', '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 (25181, '2021-10-13', 2129, 24235, 2041, NULL, '1.0000', '6.4100', '6.4100', '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 (25182, '2021-10-13', 8041, 24236, 2041, NULL, '1.0000', '0.4700', '0.4700', '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 (25183, '2021-10-13', 7500, 24237, 2041, NULL, '1.0000', '0.0000', '0.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 (25184, '2021-10-13', 8704, 24238, 2041, 30923, '1.0000', '6.0500', '6.0500', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25185, '2021-10-13', 8903, 24239, 2041, 37394, '1.0000', '18.2043', '18.2043', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25186, '2021-10-13', 9018, 24240, 2041, NULL, '1.0000', '42.0000', '42.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 (25187, '2021-10-13', 9461, 24241, 2041, NULL, '1.0000', '1.6000', '1.6000', '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 (25188, '2021-10-13', 7593, 24242, 2041, 36664, '2.0000', '2.4500', '2.4500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25189, '2021-10-13', 7576, 24243, 2041, NULL, '2.0000', '6.9100', '6.9100', '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 (25190, '2021-10-13', 9337, 24244, 2041, 36077, '6.0000', '6.8067', '6.8067', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25191, '2021-10-13', 7887, 24245, 2041, NULL, '1.0000', '1.2000', '1.2000', '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 (25192, '2021-10-13', 9092, 24246, 2041, NULL, '1.0000', '5.2900', '5.2900', '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 (25193, '2021-10-13', 7917, 24247, 2041, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25194, '2021-10-13', 2226, 24248, 2041, 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 (25195, '2021-10-13', 2656, 24249, 2041, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25196, '2021-10-13', 7333, 24250, 2041, NULL, '2.0000', '13.5000', '13.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 (25197, '2021-10-13', 7787, 24251, 2041, NULL, '1.0000', '3.9600', '3.9600', '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 (25198, '2021-10-13', 7820, 24252, 2041, NULL, '1.0000', '8.4000', '8.4000', '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 (25199, '2021-10-13', 7432, 24253, 2041, 30048, '1.0000', '3.2300', '3.2300', '20.0000', '20.0000', '54.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25200, '2021-10-13', 7411, 24254, 2041, NULL, '2.0000', '1.3500', '1.3500', '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 (25201, '2021-10-13', 7917, 24255, 2041, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (25202, '2021-10-13', 8775, 24256, 2041, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25203, '2021-10-13', 7446, 24257, 2041, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25204, '2021-10-13', 7667, 24258, 2041, NULL, '1.0000', '11.5000', '11.5000', '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 (25205, '2021-10-13', 8165, 24259, 2041, NULL, '1.0000', '8.0000', '8.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 (25206, '2021-10-13', 9187, 24260, 2041, NULL, '1.0000', '7.3000', '7.3000', '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 (25207, '2021-10-13', 8293, 24261, 2041, NULL, '1.0000', '24.7500', '24.7500', '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 (25208, '2021-10-13', 7391, 24262, 2041, NULL, '1.0000', '-49.8192', '-49.8192', '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 (25209, '2021-10-13', 7509, 24263, 2041, 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 (25210, '2021-10-13', 7958, 24264, 2041, NULL, '1.0000', '13.0000', '13.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 (25211, '2021-10-13', 7822, 24265, 2041, NULL, '1.0000', '5.6000', '5.6000', '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 (25212, '2021-10-13', 9018, 24266, 2042, NULL, '1.0000', '42.0000', '42.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 (25213, '2021-10-13', 7411, 24267, 2042, NULL, '1.0000', '1.3500', '1.3500', '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 (25214, '2021-10-13', 9275, 24268, 2042, NULL, '1.0000', '6.3000', '6.3000', '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 (25215, '2021-10-13', 9154, 24269, 2042, 37372, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25216, '2021-10-13', 7946, 24270, 2042, NULL, '1.0000', '0.5200', '0.5200', '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 (25217, '2021-10-13', 8077, 24271, 2042, NULL, '1.0000', '11.5000', '11.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 (25218, '2021-10-13', 7431, 24272, 2042, 34498, '1.0000', '-2.1674', '-2.1674', '24.0000', '24.0000', '7.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25219, '2021-10-13', 7752, 24273, 2043, 37437, '1.0000', '2.0250', '2.0250', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25220, '2021-10-13', 7790, 24274, 2043, NULL, '4.0000', '17.0000', '17.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 (25221, '2021-10-13', 8097, 24275, 2043, NULL, '3.0000', '3.3994', '3.3994', '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 (25222, '2021-10-13', 1837, 24276, 2043, 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 (25223, '2021-10-13', 1529, 24277, 2044, NULL, '1.0000', '3.4695', '3.4695', '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 (25224, '2021-10-13', 2315, 24278, 2045, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '230.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25225, '2021-10-13', 9470, 24279, 2045, NULL, '1.0000', '9.6000', '9.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 (25226, '2021-10-13', 9311, 24280, 2045, 35934, '2.0000', '6.6000', '6.6000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25227, '2021-10-13', 7638, 24281, 2045, 32016, '1.0000', '5.8020', '5.8020', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25228, '2021-10-13', 1667, 24282, 2045, 37587, '1.0000', '76.8317', '76.8317', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25229, '2021-10-13', 1667, 24283, 2045, 37587, '1.0000', '76.8317', '76.8317', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25230, '2021-10-13', 2167, 24284, 2045, 36389, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25231, '2021-10-13', 2022, 24285, 2045, 32036, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25232, '2021-10-13', 1863, 24286, 2045, 37574, '2.0000', '1.1335', '1.1335', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25233, '2021-10-13', 1935, 24287, 2045, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25234, '2021-10-13', 1519, 24288, 2045, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (25235, '2021-10-13', 9460, 24289, 2045, 33201, '1.0000', '55.0000', '55.0000', '73.0000', '73.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25236, '2021-10-13', 7519, 24290, 2045, NULL, '1.0000', '0.8800', '0.8800', '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 (25237, '2021-10-13', 1973, 24291, 2045, 10214, '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 (25238, '2021-10-13', 1972, 24292, 2045, 6470, '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 (25239, '2021-10-13', 2444, 24293, 2045, 16935, '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 (25240, '2021-10-13', 1876, 24294, 2045, 34418, '1.0000', '33.8475', '33.8475', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25241, '2021-10-14', 2643, 24295, 2046, 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 (25242, '2021-10-14', 2136, 24296, 2046, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '111.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 (25243, '2021-10-14', 1432, 24297, 2046, 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 (25244, '2021-10-14', 1311, 24298, 2046, 39, '3.0000', '79.3908', '79.3908', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25245, '2021-10-14', 2384, 24299, 2046, 18845, '1.0000', '0.4000', '0.4000', '0.7000', '0.7000', '24.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 (25246, '2021-10-14', 1514, 24300, 2046, NULL, '1.0000', '11.9600', '11.9600', '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 (25247, '2021-10-14', 2712, 24301, 2046, 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 (25248, '2021-10-14', 2665, 24302, 2046, 11663, '-2.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 (25249, '2021-10-14', 2665, 24302, 2046, NULL, '3.0000', '23.7600', '23.7600', '32.0000', '32.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 (25250, '2021-10-14', 2350, 24303, 2046, NULL, '1.0000', '10.3800', '10.3800', '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 (25251, '2021-10-14', 2506, 24304, 2046, 21511, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '0.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 (25252, '2021-10-14', 2034, 24305, 2046, 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 (25253, '2021-10-14', 1844, 24306, 2047, 34022, '2.0000', '1.3981', '1.3981', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25254, '2021-10-14', 2169, 24307, 2047, NULL, '1.0000', '1.1500', '1.1500', '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 (25255, '2021-10-14', 1856, 24308, 2047, NULL, '2.0000', '4.2500', '4.2500', '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 (25256, '2021-10-14', 2283, 24309, 2047, 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 (25257, '2021-10-14', 2135, 24310, 2047, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25258, '2021-10-14', 1519, 24311, 2047, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25259, '2021-10-14', 1912, 24312, 2047, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25260, '2021-10-14', 2010, 24313, 2047, 23974, '1.0000', '1.2000', '1.2000', '1.5800', '1.5800', '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 (25261, '2021-10-14', 2440, 24314, 2047, 23972, '1.0000', '5.2092', '5.2092', '7.5000', '7.5000', '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 (25262, '2021-10-14', 2169, 24315, 2047, NULL, '2.0000', '1.1500', '1.1500', '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 (25263, '2021-10-14', 1574, 24316, 2047, 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 (25264, '2021-10-14', 1863, 24317, 2047, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25265, '2021-10-14', 1326, 24318, 2047, NULL, '1.0000', '3.0300', '3.0300', '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 (25266, '2021-10-14', 2720, 24319, 2047, 13755, '1.0000', '2.7900', '2.7900', '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 (25267, '2021-10-14', 2803, 24320, 2047, 33343, '1.0000', '8.1000', '8.1000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25268, '2021-10-14', 2103, 24321, 2047, 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 (25269, '2021-10-14', 1760, 24322, 2047, NULL, '2.0000', '1.5900', '1.5900', '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 (25270, '2021-10-14', 2522, 24323, 2047, 37920, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25271, '2021-10-14', 7591, 24324, 2047, NULL, '1.0000', '2.7500', '2.7500', '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 (25272, '2021-10-14', 1523, 24325, 2048, NULL, '1.0000', '1.0061', '1.0061', '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 (25273, '2021-10-14', 2028, 24326, 2049, 37928, '1.0000', '23.0000', '23.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25274, '2021-10-14', 8736, 24327, 2050, NULL, '2.0000', '3.4000', '3.4000', '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 (25275, '2021-10-14', 7459, 24328, 2050, 34603, '4.0000', '-6.1729', '-6.1729', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25276, '2021-10-14', 2342, 24329, 2050, 25005, '3.0000', '1.8600', '1.8600', '2.5000', '2.5000', '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 (25277, '2021-10-14', 2342, 24329, 2050, 19387, '7.0000', '1.8600', '1.8600', '2.5000', '2.5000', '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 (25278, '2021-10-14', 7459, 24330, 2051, 34603, '10.0000', '-6.1729', '-6.1729', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25279, '2021-10-14', 1432, 24331, 2052, 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 (25280, '2021-10-14', 1695, 24332, 2053, 12925, '1.0000', '15.5000', '15.5000', '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 (25281, '2021-10-14', 1695, 24332, 2053, NULL, '1.0000', '15.5000', '15.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 (25282, '2021-10-14', 1670, 24333, 2054, 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 (25283, '2021-10-14', 7339, 24334, 2054, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (25284, '2021-10-14', 2034, 24335, 2054, NULL, '2.0000', '6.0000', '6.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 (25285, '2021-10-14', 8759, 24336, 2054, 32143, '1.0000', '7.1571', '7.1571', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25286, '2021-10-14', 2289, 24337, 2054, NULL, '5.0000', '0.2300', '0.2300', '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 (25287, '2021-10-14', 7544, 24338, 2054, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (25288, '2021-10-14', 8063, 24339, 2054, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25289, '2021-10-14', 8134, 24340, 2054, NULL, '1.0000', '5.2600', '5.2600', '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 (25290, '2021-10-14', 8457, 24341, 2054, NULL, '1.0000', '0.7500', '0.7500', '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 (25291, '2021-10-14', 2100, 24342, 2054, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25292, '2021-10-14', 9245, 24343, 2054, 30170, '1.0000', '6.6100', '6.6100', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25293, '2021-10-14', 8097, 24344, 2054, NULL, '1.0000', '3.3994', '3.3994', '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 (25294, '2021-10-14', 9469, 24345, 2054, NULL, '1.0000', '2.3000', '2.3000', '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 (25295, '2021-10-14', 1772, 24346, 2054, 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 (25296, '2021-10-14', 2302, 24347, 2054, 37380, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25297, '2021-10-14', 9193, 24348, 2054, NULL, '3.0000', '6.8075', '6.8075', '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 (25298, '2021-10-14', 2321, 24349, 2054, 32930, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25299, '2021-10-14', 1760, 24350, 2054, 37408, '10.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25300, '2021-10-14', 7547, 24351, 2054, NULL, '2.0000', '0.0000', '0.0000', '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 (25301, '2021-10-14', 8746, 24352, 2054, 32134, '1.0000', '3.8000', '3.8000', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25302, '2021-10-14', 7411, 24353, 2054, NULL, '1.0000', '1.3500', '1.3500', '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 (25303, '2021-10-14', 2004, 24354, 2054, 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 (25304, '2021-10-14', 8974, 24355, 2054, NULL, '1.0000', '5.4000', '5.4000', '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 (25305, '2021-10-14', 7779, 24356, 2054, 37432, '1.0000', '8.3800', '8.3800', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25306, '2021-10-14', 7708, 24357, 2054, 37379, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25307, '2021-10-14', 8036, 24358, 2054, 35188, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25308, '2021-10-14', 8308, 24359, 2054, NULL, '1.0000', '11.0000', '11.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 (25309, '2021-10-14', 9266, 24360, 2054, 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 (25310, '2021-10-14', 9092, 24361, 2054, NULL, '7.0000', '5.2900', '5.2900', '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 (25311, '2021-10-14', 9461, 24362, 2054, 38000, '2.0000', '1.4957', '1.4957', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25312, '2021-10-14', 1947, 24363, 2055, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '56.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 (25313, '2021-10-14', 7674, 24364, 2056, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '205.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25314, '2021-10-14', 1426, 24365, 2057, NULL, '2.0000', '36.0000', '36.0000', '47.5000', '47.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 (25315, '2021-10-14', 7558, 24366, 2058, NULL, '10.0000', '2.2000', '2.2000', '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 (25316, '2021-10-14', 7342, 24367, 2058, 31009, '1.0000', '2.1313', '2.1313', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25317, '2021-10-14', 8413, 24368, 2058, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25318, '2021-10-14', 7518, 24369, 2058, NULL, '1.0000', '-32.3379', '-32.3379', '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 (25319, '2021-10-14', 9150, 24370, 2058, 35237, '1.0000', '16.1784', '16.1784', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25320, '2021-10-14', 7457, 24371, 2058, 37428, '2.0000', '2.8603', '2.8603', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25321, '2021-10-14', 8466, 24372, 2058, 36097, '5.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25322, '2021-10-14', 9092, 24373, 2058, NULL, '4.0000', '5.2900', '5.2900', '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 (25323, '2021-10-14', 7411, 24374, 2058, NULL, '1.0000', '1.3500', '1.3500', '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 (25324, '2021-10-14', 2315, 24375, 2058, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25325, '2021-10-14', 7640, 24376, 2058, NULL, '1.0000', '5.8900', '5.8900', '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 (25326, '2021-10-14', 7744, 24377, 2058, 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 (25327, '2021-10-14', 9092, 24378, 2058, NULL, '2.0000', '5.2900', '5.2900', '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 (25328, '2021-10-14', 9092, 24379, 2058, NULL, '2.0000', '5.2900', '5.2900', '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 (25329, '2021-10-14', 7518, 24380, 2058, NULL, '1.0000', '-32.3379', '-32.3379', '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 (25330, '2021-10-14', 9092, 24381, 2058, NULL, '2.0000', '5.2900', '5.2900', '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 (25331, '2021-10-14', 8596, 24382, 2058, NULL, '1.0000', '17.0000', '17.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 (25332, '2021-10-14', 8686, 24383, 2058, NULL, '1.0000', '1.2000', '1.2000', '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 (25333, '2021-10-14', 7709, 24384, 2058, NULL, '2.0000', '35.8000', '35.8000', '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 (25334, '2021-10-14', 9445, 24385, 2058, 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 (25335, '2021-10-14', 9290, 24386, 2058, NULL, '1.0000', '38.5000', '38.5000', '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 (25336, '2021-10-14', 1982, 24387, 2058, NULL, '1.0000', '4.5000', '4.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 (25337, '2021-10-14', 7715, 24388, 2058, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25338, '2021-10-14', 7780, 24389, 2058, NULL, '1.0000', '2.6000', '2.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 (25339, '2021-10-14', 8941, 24390, 2058, NULL, '1.0000', '12.0000', '12.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 (25340, '2021-10-14', 9092, 24391, 2058, NULL, '2.0000', '5.2900', '5.2900', '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 (25341, '2021-10-14', 8000, 24392, 2058, NULL, '1.0000', '41.2918', '41.2918', '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 (25342, '2021-10-14', 7641, 24393, 2058, NULL, '1.0000', '6.5038', '6.5038', '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 (25343, '2021-10-14', 8668, 24394, 2058, NULL, '5.0000', '2.2000', '2.2000', '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 (25344, '2021-10-14', 9272, 24395, 2058, NULL, '3.0000', '3.1000', '3.1000', '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 (25345, '2021-10-14', 7548, 24396, 2058, NULL, '1.0000', '0.3400', '0.3400', '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 (25346, '2021-10-14', 7353, 24397, 2058, 30931, '4.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25347, '2021-10-14', 8918, 24398, 2058, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25348, '2021-10-14', 7958, 24399, 2058, NULL, '1.0000', '13.0000', '13.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 (25349, '2021-10-14', 7886, 24400, 2058, NULL, '1.0000', '16.1667', '16.1667', '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 (25350, '2021-10-14', 7632, 24401, 2058, 37403, '1.0000', '9.8496', '9.8496', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25351, '2021-10-14', 1541, 24402, 2058, 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 (25352, '2021-10-14', 9299, 24403, 2058, NULL, '1.0000', '9.5000', '9.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 (25353, '2021-10-14', 7385, 24404, 2058, 36048, '2.0000', '933.1354', '933.1354', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25354, '2021-10-14', 8444, 24405, 2058, NULL, '1.0000', '26.0000', '26.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 (25355, '2021-10-14', 7385, 24406, 2058, 36048, '4.0000', '933.1354', '933.1354', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25356, '2021-10-14', 7675, 24407, 2058, NULL, '2.0000', '11.4300', '11.4300', '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 (25357, '2021-10-14', 8608, 24408, 2058, NULL, '1.0000', '5.7400', '5.7400', '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 (25358, '2021-10-14', 7411, 24409, 2058, NULL, '1.0000', '1.3500', '1.3500', '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 (25359, '2021-10-14', 7444, 24410, 2058, 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 (25360, '2021-10-14', 7708, 24411, 2058, 37379, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25361, '2021-10-14', 9337, 24412, 2058, 36077, '1.0000', '6.8067', '6.8067', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25362, '2021-10-14', 7906, 24413, 2058, 33752, '1.0000', '7.8800', '7.8800', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25363, '2021-10-14', 7897, 24414, 2058, NULL, '1.0000', '3.0000', '3.0000', '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 (25364, '2021-10-14', 7715, 24415, 2058, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25365, '2021-10-14', 7592, 24416, 2058, 36046, '1.0000', '14.2175', '14.2175', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25366, '2021-10-14', 7522, 24417, 2058, NULL, '1.0000', '5.2000', '5.2000', '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 (25367, '2021-10-14', 7708, 24418, 2058, 37379, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25368, '2021-10-14', 9329, 24419, 2058, NULL, '1.0000', '5.8000', '5.8000', '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 (25369, '2021-10-14', 9272, 24420, 2058, NULL, '1.0000', '3.1000', '3.1000', '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 (25370, '2021-10-14', 2865, 24421, 2058, 31910, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25371, '2021-10-14', 7886, 24422, 2058, NULL, '1.0000', '16.1667', '16.1667', '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 (25372, '2021-10-14', 7641, 24423, 2058, NULL, '1.0000', '6.5038', '6.5038', '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 (25373, '2021-10-14', 2912, 24424, 2058, 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 (25374, '2021-10-14', 7714, 24425, 2058, 37846, '1.0000', '0.4200', '0.4200', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25375, '2021-10-14', 8153, 24426, 2058, NULL, '1.0000', '0.3200', '0.3200', '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 (25376, '2021-10-14', 7518, 24427, 2058, NULL, '1.0000', '-32.3379', '-32.3379', '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 (25377, '2021-10-14', 2951, 24428, 2059, 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 (25378, '2021-10-14', 1519, 24429, 2059, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25379, '2021-10-14', 2656, 24430, 2059, 37713, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25380, '2021-10-14', 8933, 24431, 2059, NULL, '1.0000', '10.0000', '10.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 (25381, '2021-10-14', 9562, 24432, 2059, 37737, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25382, '2021-10-14', 2289, 24433, 2059, 13744, '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 (25383, '2021-10-14', 2699, 24434, 2059, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25384, '2021-10-14', 2858, 24435, 2059, 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 (25385, '2021-10-14', 1912, 24436, 2059, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25386, '2021-10-14', 2951, 24437, 2059, 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 (25387, '2021-10-14', 2167, 24438, 2059, 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 (25388, '2021-10-14', 1837, 24439, 2059, 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 (25389, '2021-10-14', 2315, 24440, 2059, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25390, '2021-10-14', 2989, 24441, 2059, 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 (25391, '2021-10-14', 1501, 24442, 2059, NULL, '1.0000', '2.2100', '2.2100', '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 (25392, '2021-10-14', 1564, 24443, 2059, NULL, '3.0000', '90.0000', '90.0000', '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 (25393, '2021-10-14', 2231, 24444, 2059, 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 (25394, '2021-10-14', 2360, 24445, 2059, 19866, '5.0000', '0.5200', '0.5200', '0.8000', '0.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 (25395, '2021-10-14', 1863, 24446, 2059, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25396, '2021-10-14', 7899, 24447, 2059, 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 (25397, '2021-10-14', 1912, 24448, 2059, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25398, '2021-10-14', 2379, 24449, 2059, NULL, '1.0000', '1.8000', '1.8000', '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 (25399, '2021-10-14', 1935, 24450, 2059, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25400, '2021-10-14', 7328, 24451, 2059, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (25401, '2021-10-14', 2289, 24452, 2059, 13744, '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 (25402, '2021-10-14', 1840, 24453, 2059, 19856, '3.0000', '0.2400', '0.2400', '0.3000', '0.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 (25403, '2021-10-14', 1694, 24454, 2059, 34936, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25404, '2021-10-14', 2951, 24455, 2059, 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 (25405, '2021-10-14', 1612, 24456, 2059, 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 (25406, '2021-10-14', 2989, 24457, 2059, 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 (25407, '2021-10-14', 1580, 24458, 2059, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25408, '2021-10-14', 1692, 24459, 2059, NULL, '1.0000', '9.6500', '9.6500', '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 (25409, '2021-10-14', 7756, 24460, 2060, NULL, '1.0000', '2.5000', '2.5000', '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 (25410, '2021-10-14', 1577, 24461, 2060, NULL, '2.0000', '2.5218', '2.5218', '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 (25411, '2021-10-14', 1439, 24462, 2060, NULL, '1.0000', '1.0000', '1.0000', '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 (25412, '2021-10-14', 1863, 24463, 2060, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25413, '2021-10-14', 2614, 24464, 2061, NULL, '1.0000', '53.3200', '53.3200', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25414, '2021-10-14', 2440, 24465, 2061, 23972, '1.0000', '5.2092', '5.2092', '7.5000', '7.5000', '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 (25415, '2021-10-14', 3041, 24466, 2061, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '15.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 (25416, '2021-10-14', 1840, 24467, 2061, 19856, '3.0000', '0.2400', '0.2400', '0.3000', '0.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 (25417, '2021-10-14', 2289, 24468, 2061, 13744, '3.0000', '0.2300', '0.2300', '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 (25418, '2021-10-14', 7482, 24469, 2061, 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 (25419, '2021-10-14', 2003, 24470, 2061, 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 (25420, '2021-10-14', 2320, 24471, 2061, 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 (25421, '2021-10-14', 1692, 24472, 2061, NULL, '1.0000', '9.6500', '9.6500', '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 (25422, '2021-10-14', 2315, 24473, 2061, NULL, '1.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25423, '2021-10-14', 2772, 24474, 2061, 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 (25424, '2021-10-14', 1805, 24475, 2061, NULL, '1.0000', '4.5244', '4.5244', '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 (25425, '2021-10-14', 2821, 24476, 2061, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25426, '2021-10-14', 1523, 24477, 2061, NULL, '1.0000', '1.0061', '1.0061', '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 (25427, '2021-10-14', 1665, 24478, 2061, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25428, '2021-10-14', 7359, 24479, 2061, NULL, '1.0000', '20.0000', '20.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 (25429, '2021-10-14', 7848, 24480, 2061, NULL, '1.0000', '1.3500', '1.3500', '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 (25430, '2021-10-14', 8518, 24481, 2061, NULL, '1.0000', '17.6400', '17.6400', '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 (25431, '2021-10-14', 2135, 24482, 2061, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25432, '2021-10-14', 2254, 24483, 2061, 34620, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25433, '2021-10-14', 2272, 24484, 2061, 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 (25434, '2021-10-14', 9474, 24485, 2061, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25435, '2021-10-14', 1651, 24486, 2061, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25436, '2021-10-14', 7533, 24487, 2061, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25437, '2021-10-14', 9556, 24488, 2061, 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 (25438, '2021-10-14', 1529, 24489, 2061, NULL, '1.0000', '3.4695', '3.4695', '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 (25439, '2021-10-14', 7743, 24490, 2061, NULL, '1.0000', '7.3900', '7.3900', '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 (25440, '2021-10-14', 2821, 24491, 2061, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25441, '2021-10-14', 2163, 24492, 2061, 34033, '1.0000', '22.5600', '22.5600', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25442, '2021-10-14', 7565, 24493, 2061, NULL, '1.0000', '0.2000', '0.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 (25443, '2021-10-14', 1590, 24494, 2061, 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 (25444, '2021-10-14', 2315, 24495, 2062, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25445, '2021-10-14', 7892, 24496, 2062, NULL, '1.0000', '4.2000', '4.2000', '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 (25446, '2021-10-14', 8702, 24497, 2062, NULL, '1.0000', '3.6700', '3.6700', '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 (25447, '2021-10-14', 8131, 24498, 2062, NULL, '1.0000', '6.9800', '6.9800', '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 (25448, '2021-10-14', 7917, 24499, 2062, NULL, '1.0000', '5.0000', '5.0000', '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 (25449, '2021-10-14', 9098, 24500, 2062, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25450, '2021-10-14', 7453, 24501, 2062, NULL, '1.0000', '28.5000', '28.5000', '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 (25451, '2021-10-14', 9273, 24502, 2062, NULL, '1.0000', '0.3500', '0.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 (25452, '2021-10-14', 1999, 24503, 2063, 6444, '1.0000', '6.0000', '6.0000', '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 (25453, '2021-10-14', 1493, 24504, 2063, 32033, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25454, '2021-10-14', 2655, 24505, 2063, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25455, '2021-10-14', 1845, 24506, 2063, 32081, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25456, '2021-10-14', 1863, 24507, 2063, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25457, '2021-10-14', 8743, 24508, 2063, 35937, '1.0000', '9.9444', '9.9444', '13.2000', '13.2000', '1.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25458, '2021-10-14', 1822, 24509, 2063, 11174, '14.0000', '2.9682', '2.9682', '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 (25459, '2021-10-14', 1340, 24510, 2063, 37577, '1.0000', '2.5835', '2.5835', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25460, '2021-10-14', 1533, 24511, 2063, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25461, '2021-10-14', 1598, 24512, 2063, 31712, '1.0000', '3.0920', '3.0920', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25462, '2021-10-14', 1432, 24513, 2063, 37543, '1.0000', '9.1352', '9.1352', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25463, '2021-10-14', 1612, 24514, 2063, 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 (25464, '2021-10-14', 1671, 24515, 2063, 36397, '10.0000', '39.8824', '39.8824', '6.4000', '6.4000', '20.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25465, '2021-10-14', 2697, 24516, 2063, 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 (25466, '2021-10-14', 2509, 24517, 2063, 12288, '1.0000', '13.7600', '13.7600', '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 (25467, '2021-10-14', 1841, 24518, 2063, 24123, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '7.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 (25468, '2021-10-14', 2169, 24519, 2063, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25469, '2021-10-14', 1523, 24520, 2063, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '9.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 (25470, '2021-10-14', 2251, 24521, 2063, 34419, '1.0000', '11.7398', '11.7398', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25471, '2021-10-14', 7780, 24522, 2063, NULL, '1.0000', '2.6000', '2.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 (25472, '2021-10-14', 2366, 24523, 2063, 13636, '2.0000', '3.7873', '3.7873', '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 (25473, '2021-10-14', 1527, 24524, 2063, 25031, '3.0000', '96.1416', '96.1416', '17.5000', '17.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 (25474, '2021-10-14', 2359, 24525, 2063, 36347, '2.0000', '109.7375', '109.7375', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25475, '2021-10-14', 8102, 24526, 2063, NULL, '2.0000', '1.7000', '1.7000', '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 (25476, '2021-10-14', 7324, 24527, 2063, NULL, '6.0000', '55.7000', '55.7000', '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 (25477, '2021-10-14', 8362, 24528, 2063, NULL, '3.0000', '4.1000', '4.1000', '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 (25478, '2021-10-14', 8831, 24529, 2063, NULL, '1.0000', '4.5000', '4.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 (25479, '2021-10-14', 2004, 24530, 2063, 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 (25480, '2021-10-14', 2558, 24531, 2063, 17779, '1.0000', '5.0000', '5.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 (25481, '2021-10-14', 2108, 24532, 2063, 6020, '1.0000', '4.7500', '4.7500', '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 (25482, '2021-10-14', 9167, 24533, 2063, NULL, '1.0000', '11.9000', '11.9000', '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 (25483, '2021-10-14', 2108, 24534, 2063, 6020, '1.0000', '4.7500', '4.7500', '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 (25484, '2021-10-14', 2169, 24535, 2063, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25485, '2021-10-14', 2633, 24536, 2063, 31993, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25486, '2021-10-14', 1806, 24537, 2063, 36368, '2.0000', '44.8087', '44.8087', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25487, '2021-10-14', 1584, 24538, 2063, 35942, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25488, '2021-10-14', 1480, 24539, 2063, 21576, '1.0000', '90.0000', '90.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 (25489, '2021-10-14', 1480, 24539, 2063, 10393, '1.0000', '90.0000', '90.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 (25490, '2021-10-14', 2838, 24540, 2063, 16991, '1.0000', '30.0000', '30.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 (25491, '2021-10-14', 7506, 24541, 2063, NULL, '1.0000', '15.0000', '15.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 (25492, '2021-10-14', 1855, 24542, 2063, 4986, '1.0000', '1.4000', '1.4000', '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 (25493, '2021-10-14', 2538, 24543, 2063, 6122, '1.0000', '120.0000', '120.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25494, '2021-10-14', 2315, 24544, 2063, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '228.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25495, '2021-10-14', 2287, 24545, 2064, 3127, '2.0000', '1.8000', '1.8000', '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 (25496, '2021-10-14', 1966, 24546, 2064, 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 (25497, '2021-10-14', 2548, 24547, 2064, 31986, '1.0000', '5.8956', '5.8956', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25498, '2021-10-14', 2548, 24547, 2064, 7125, '1.0000', '5.8956', '5.8956', '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 (25499, '2021-10-14', 9149, 24548, 2065, NULL, '1.0000', '8.9500', '8.9500', '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 (25500, '2021-10-14', 8427, 24549, 2065, NULL, '1.0000', '6.5300', '6.5300', '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 (25501, '2021-10-14', 7404, 24550, 2065, NULL, '1.0000', '2.0000', '2.0000', '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 (25502, '2021-10-14', 7757, 24551, 2065, NULL, '1.0000', '6.0000', '6.0000', '107.0000', '107.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25503, '2021-10-14', 7813, 24552, 2065, NULL, '1.0000', '17.0000', '17.0000', '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 (25504, '2021-10-14', 1666, 24553, 2066, 36353, '1.0000', '133.4617', '133.4617', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25505, '2021-10-14', 2056, 24554, 2066, 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 (25506, '2021-10-14', 1863, 24555, 2066, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25507, '2021-10-14', 1373, 24556, 2066, 4816, '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 (25508, '2021-10-14', 1863, 24557, 2066, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25509, '2021-10-14', 1935, 24558, 2066, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25510, '2021-10-14', 2259, 24559, 2066, 36399, '1.0000', '19.7598', '19.7598', '28.0000', '28.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25511, '2021-10-14', 1785, 24560, 2066, 36374, '1.0000', '14.2329', '14.2329', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25512, '2021-10-15', 1665, 24561, 2067, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25513, '2021-10-15', 1844, 24562, 2067, 34022, '2.0000', '1.3981', '1.3981', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25514, '2021-10-15', 2699, 24563, 2067, 34663, '3.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25515, '2021-10-15', 7989, 24564, 2067, NULL, '2.0000', '26.9800', '26.9800', '50.0000', '50.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 (25516, '2021-10-15', 1863, 24565, 2067, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25517, '2021-10-15', 2992, 24566, 2067, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (25518, '2021-10-15', 1501, 24567, 2067, NULL, '1.0000', '2.2100', '2.2100', '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 (25519, '2021-10-15', 1307, 24568, 2067, 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 (25520, '2021-10-15', 2289, 24569, 2067, 13744, '1.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 (25521, '2021-10-15', 2293, 24570, 2067, NULL, '3.0000', '1.4400', '1.4400', '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 (25522, '2021-10-15', 3059, 24571, 2067, 37758, '1.0000', '2.2083', '2.2083', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25523, '2021-10-15', 2418, 24572, 2067, 25151, '1.0000', '9.5000', '9.5000', '12.0000', '12.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 (25524, '2021-10-15', 3026, 24573, 2067, 23976, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '8.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 (25525, '2021-10-15', 9478, 24574, 2067, 32539, '2.0000', '9.0000', '9.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25526, '2021-10-15', 2503, 24575, 2067, 32536, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25527, '2021-10-15', 9480, 24576, 2067, 32540, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25528, '2021-10-15', 7753, 24577, 2067, NULL, '1.0000', '3.1400', '3.1400', '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 (25529, '2021-10-15', 3001, 24578, 2067, 37759, '5.0000', '2.5621', '2.5621', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25530, '2021-10-15', 7765, 24579, 2067, NULL, '5.0000', '16.0000', '16.0000', '1.5000', '1.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 (25531, '2021-10-15', 8638, 24580, 2067, 37757, '3.0000', '0.5100', '0.5100', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25532, '2021-10-15', 2293, 24581, 2067, NULL, '2.0000', '1.4400', '1.4400', '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 (25533, '2021-10-15', 8065, 24582, 2067, NULL, '1.0000', '32.0000', '32.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 (25534, '2021-10-15', 7859, 24583, 2067, NULL, '1.0000', '3.6000', '3.6000', '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 (25535, '2021-10-15', 2271, 24584, 2067, NULL, '1.0000', '12.0000', '12.0000', '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 (25536, '2021-10-15', 2068, 24585, 2067, 33354, '1.0000', '13.2503', '13.2503', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25537, '2021-10-15', 1653, 24586, 2067, 19862, '1.0000', '8.6200', '8.6200', '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 (25538, '2021-10-15', 1501, 24587, 2067, NULL, '2.0000', '2.2100', '2.2100', '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 (25539, '2021-10-15', 7765, 24588, 2067, NULL, '3.0000', '16.0000', '16.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 (25540, '2021-10-15', 2965, 24589, 2068, NULL, '1.0000', '5.0000', '5.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 (25541, '2021-10-15', 2022, 24590, 2069, 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 (25542, '2021-10-15', 2361, 24591, 2070, 19350, '5.0000', '0.4700', '0.4700', '0.6000', '0.6000', '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 (25543, '2021-10-15', 2315, 24592, 2070, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25544, '2021-10-15', 1602, 24593, 2071, 5897, '-21.0000', '6.7859', '6.7859', '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 (25545, '2021-10-15', 1602, 24593, 2071, NULL, '22.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25546, '2021-10-15', 9519, 24594, 2071, 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 (25547, '2021-10-15', 2487, 24595, 2071, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '2.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 (25548, '2021-10-15', 1602, 24596, 2071, 5897, '-21.0000', '6.7859', '6.7859', '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 (25549, '2021-10-15', 1602, 24596, 2071, NULL, '22.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25550, '2021-10-15', 2787, 24597, 2071, 16140, '1.0000', '16.0200', '16.0200', '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 (25551, '2021-10-15', 2344, 24598, 2071, NULL, '1.0000', '18.2000', '18.2000', '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 (25552, '2021-10-15', 2345, 24599, 2071, 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 (25553, '2021-10-15', 2401, 24600, 2071, NULL, '1.0000', '2.8000', '2.8000', '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 (25554, '2021-10-15', 1863, 24601, 2072, 10808, '-45.0000', '0.4136', '0.4136', '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 (25555, '2021-10-15', 1863, 24601, 2072, NULL, '46.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25556, '2021-10-15', 1730, 24602, 2072, NULL, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25557, '2021-10-15', 1409, 24603, 2073, 37443, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25558, '2021-10-15', 1935, 24604, 2073, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25559, '2021-10-15', 2169, 24605, 2074, NULL, '1.0000', '1.1500', '1.1500', '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 (25560, '2021-10-15', 2289, 24606, 2075, 2949, '-12.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 (25561, '2021-10-15', 2289, 24606, 2075, NULL, '14.0000', '0.3300', '0.3300', '0.5000', '0.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 (25562, '2021-10-15', 2435, 24607, 2076, 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 (25563, '2021-10-15', 7719, 24608, 2077, NULL, '1.0000', '5.5000', '5.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 (25564, '2021-10-15', 8350, 24609, 2077, NULL, '1.0000', '12.0000', '12.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 (25565, '2021-10-15', 2732, 24610, 2077, NULL, '1.0000', '29.8900', '29.8900', '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 (25566, '2021-10-15', 7380, 24611, 2077, NULL, '1.0000', '5.6200', '5.6200', '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 (25567, '2021-10-15', 1326, 24612, 2077, 33530, '1.0000', '3.0856', '3.0856', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25568, '2021-10-15', 7725, 24613, 2077, NULL, '1.0000', '1.6600', '1.6600', '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 (25569, '2021-10-15', 7639, 24614, 2077, 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 (25570, '2021-10-15', 7958, 24615, 2077, NULL, '2.0000', '13.0000', '13.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 (25571, '2021-10-15', 9424, 24616, 2077, NULL, '1.0000', '68.0000', '68.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 (25572, '2021-10-15', 8774, 24617, 2077, NULL, '1.0000', '8.0000', '8.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 (25573, '2021-10-15', 1630, 24618, 2077, NULL, '1.0000', '16.7400', '16.7400', '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 (25574, '2021-10-15', 7411, 24619, 2077, NULL, '3.0000', '1.3500', '1.3500', '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 (25575, '2021-10-15', 7715, 24620, 2077, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25576, '2021-10-15', 8941, 24621, 2077, NULL, '1.0000', '12.0000', '12.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 (25577, '2021-10-15', 7506, 24622, 2077, NULL, '1.0000', '15.0000', '15.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 (25578, '2021-10-15', 7703, 24623, 2077, NULL, '2.0000', '22.9900', '22.9900', '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 (25579, '2021-10-15', 9554, 24624, 2077, 37986, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25580, '2021-10-15', 7514, 24625, 2077, NULL, '1.0000', '12.9983', '12.9983', '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 (25581, '2021-10-15', 7437, 24626, 2077, 30050, '1.0000', '13.0000', '13.0000', '5.2000', '5.2000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25582, '2021-10-15', 7409, 24627, 2077, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '48.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25583, '2021-10-15', 7385, 24628, 2077, 36048, '2.0000', '933.1354', '933.1354', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25584, '2021-10-15', 2382, 24629, 2077, NULL, '1.0000', '15.6600', '15.6600', '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 (25585, '2021-10-15', 2656, 24630, 2077, 36676, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25586, '2021-10-15', 7444, 24631, 2077, 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 (25587, '2021-10-15', 1867, 24632, 2077, 35213, '1.0000', '9.9490', '9.9490', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25588, '2021-10-15', 9469, 24633, 2077, NULL, '3.0000', '2.3000', '2.3000', '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 (25589, '2021-10-15', 8775, 24634, 2077, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25590, '2021-10-15', 8022, 24635, 2077, NULL, '1.0000', '17.5000', '17.5000', '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 (25591, '2021-10-15', 1918, 24636, 2077, 30924, '1.0000', '6.0500', '6.0500', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25592, '2021-10-15', 7827, 24637, 2077, NULL, '1.0000', '9.5000', '9.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 (25593, '2021-10-15', 2359, 24638, 2077, NULL, '2.0000', '16.2200', '16.2200', '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 (25594, '2021-10-15', 2648, 24639, 2077, NULL, '1.0000', '5.4000', '5.4000', '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 (25595, '2021-10-15', 7411, 24640, 2077, NULL, '1.0000', '1.3500', '1.3500', '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 (25596, '2021-10-15', 1501, 24641, 2077, 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 (25597, '2021-10-15', 9394, 24642, 2077, NULL, '1.0000', '5.5000', '5.5000', '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 (25598, '2021-10-15', 2912, 24643, 2077, 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 (25599, '2021-10-15', 2482, 24644, 2077, 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 (25600, '2021-10-15', 2763, 24645, 2077, 37993, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25601, '2021-10-15', 2476, 24646, 2077, 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 (25602, '2021-10-15', 7409, 24647, 2078, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '47.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25603, '2021-10-15', 7674, 24648, 2078, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '204.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25604, '2021-10-15', 7385, 24649, 2078, 36048, '9.0000', '933.1354', '933.1354', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25605, '2021-10-15', 7385, 24649, 2078, NULL, '1.0000', '933.1354', '933.1354', '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 (25606, '2021-10-15', 9508, 24650, 2078, NULL, '1.0000', '3.4000', '3.4000', '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 (25607, '2021-10-15', 2821, 24651, 2078, 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 (25608, '2021-10-15', 7411, 24652, 2078, NULL, '1.0000', '1.3500', '1.3500', '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 (25609, '2021-10-15', 8657, 24653, 2078, NULL, '1.0000', '6.3816', '6.3816', '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 (25610, '2021-10-15', 9419, 24654, 2078, 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 (25611, '2021-10-15', 7758, 24655, 2078, NULL, '1.0000', '10.8500', '10.8500', '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 (25612, '2021-10-15', 7674, 24656, 2078, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '204.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25613, '2021-10-15', 2400, 24657, 2078, 31022, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25614, '2021-10-15', 2400, 24657, 2078, 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 (25615, '2021-10-15', 7959, 24658, 2078, NULL, '2.0000', '9.6000', '9.6000', '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 (25616, '2021-10-15', 9265, 24659, 2078, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25617, '2021-10-15', 7457, 24660, 2078, 37428, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25618, '2021-10-15', 8621, 24661, 2078, NULL, '1.0000', '8.0000', '8.0000', '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 (25619, '2021-10-15', 9272, 24662, 2078, NULL, '1.0000', '3.1000', '3.1000', '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 (25620, '2021-10-15', 7753, 24663, 2078, NULL, '2.0000', '3.1400', '3.1400', '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 (25621, '2021-10-15', 9098, 24664, 2078, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25622, '2021-10-15', 7357, 24665, 2078, 29997, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25623, '2021-10-15', 1981, 24666, 2078, NULL, '1.0000', '8.5000', '8.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 (25624, '2021-10-15', 7588, 24667, 2078, NULL, '1.0000', '7.6111', '7.6111', '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 (25625, '2021-10-15', 1854, 24668, 2078, 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 (25626, '2021-10-15', 7675, 24669, 2078, NULL, '1.0000', '11.4300', '11.4300', '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 (25627, '2021-10-15', 7672, 24670, 2078, NULL, '1.0000', '1.0200', '1.0200', '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 (25628, '2021-10-15', 7588, 24671, 2078, NULL, '1.0000', '7.6111', '7.6111', '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 (25629, '2021-10-15', 7911, 24672, 2078, NULL, '1.0000', '4.3700', '4.3700', '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 (25630, '2021-10-15', 2506, 24673, 2078, 37994, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25631, '2021-10-15', 2315, 24674, 2078, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25632, '2021-10-15', 9410, 24675, 2078, NULL, '1.0000', '20.0000', '20.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 (25633, '2021-10-15', 7409, 24676, 2078, 30031, '3.0000', '1.3200', '1.3200', '10.0000', '10.0000', '45.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25634, '2021-10-15', 7641, 24677, 2078, NULL, '1.0000', '6.5038', '6.5038', '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 (25635, '2021-10-15', 7905, 24678, 2078, NULL, '1.0000', '0.7000', '0.7000', '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 (25636, '2021-10-15', 7671, 24679, 2078, NULL, '1.0000', '15.5000', '15.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 (25637, '2021-10-15', 7954, 24680, 2078, NULL, '2.0000', '21.0000', '21.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 (25638, '2021-10-15', 8384, 24681, 2079, 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 (25639, '2021-10-15', 1812, 24682, 2079, 37578, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25640, '2021-10-15', 8608, 24683, 2079, NULL, '2.0000', '0.9000', '0.9000', '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 (25641, '2021-10-15', 2059, 24684, 2079, 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 (25642, '2021-10-15', 2169, 24685, 2079, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25643, '2021-10-15', 1760, 24686, 2079, 6783, '1.0000', '1.5900', '1.5900', '1.0000', '1.0000', '15.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 (25644, '2021-10-15', 1310, 24687, 2079, 29814, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25645, '2021-10-15', 2379, 24688, 2079, 4385, '1.0000', '1.5900', '1.5900', '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 (25646, '2021-10-15', 2511, 24689, 2079, 36350, '1.0000', '8.6205', '8.6205', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25647, '2021-10-15', 2486, 24690, 2079, 21821, '1.0000', '4.0000', '4.0000', '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 (25648, '2021-10-15', 1912, 24691, 2079, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25649, '2021-10-15', 1617, 24692, 2079, NULL, '2.0000', '4.6300', '4.6300', '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 (25650, '2021-10-15', 1499, 24693, 2079, 31996, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25651, '2021-10-15', 1620, 24694, 2079, 21573, '4.0000', '13.9038', '13.9038', '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 (25652, '2021-10-15', 3041, 24695, 2079, 24002, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '19.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 (25653, '2021-10-15', 2412, 24696, 2079, 4824, '10.0000', '0.5200', '0.5200', '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 (25654, '2021-10-15', 1602, 24697, 2079, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '51.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25655, '2021-10-15', 2384, 24698, 2079, 29813, '6.0000', '0.2683', '0.2683', '0.7000', '0.7000', '71.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25656, '2021-10-15', 2821, 24699, 2079, 33026, '2.0000', '3.5100', '3.5100', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25657, '2021-10-15', 1624, 24700, 2079, 33008, '2.0000', '57.1086', '57.1086', '39.0000', '39.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25658, '2021-10-15', 2916, 24701, 2079, 36373, '1.0000', '14.1311', '14.1311', '20.0000', '20.0000', '16.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25659, '2021-10-15', 1813, 24702, 2079, 17032, '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 (25660, '2021-10-15', 9174, 24703, 2079, NULL, '1.0000', '15.5000', '15.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 (25661, '2021-10-15', 1351, 24704, 2079, 14568, '1.0000', '35.0000', '35.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 (25662, '2021-10-15', 7809, 24705, 2079, NULL, '1.0000', '13.5000', '13.5000', '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 (25663, '2021-10-15', 2088, 24706, 2079, 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 (25664, '2021-10-15', 2088, 24706, 2079, 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 (25665, '2021-10-15', 2088, 24706, 2079, 2444, '2.0000', '1.3800', '1.3800', '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 (25666, '2021-10-15', 2315, 24707, 2079, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '226.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25667, '2021-10-15', 2265, 24708, 2079, 31987, '1.0000', '32.0000', '32.0000', '43.0000', '43.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25668, '2021-10-15', 1812, 24709, 2079, 37578, '2.0000', '7.9315', '7.9315', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25669, '2021-10-15', 2317, 24710, 2079, 36788, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '59.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25670, '2021-10-15', 1863, 24711, 2079, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25671, '2021-10-15', 2169, 24712, 2079, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25672, '2021-10-15', 1504, 24713, 2079, 37581, '10.0000', '1.1357', '1.1357', '2.2000', '2.2000', '70.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25673, '2021-10-15', 1912, 24714, 2079, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25674, '2021-10-15', 1712, 24715, 2079, 36324, '1.0000', '9.6500', '9.6500', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25675, '2021-10-15', 1806, 24716, 2079, 36368, '1.0000', '44.8087', '44.8087', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25676, '2021-10-15', 1904, 24717, 2079, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25677, '2021-10-15', 2280, 24718, 2079, 21586, '1.0000', '1.9000', '1.9000', '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 (25678, '2021-10-15', 7523, 24719, 2079, NULL, '2.0000', '1.8300', '1.8300', '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 (25679, '2021-10-15', 1347, 24720, 2079, NULL, '6.0000', '4.0713', '4.0713', '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 (25680, '2021-10-15', 1316, 24721, 2079, 23202, '1.0000', '6.3000', '6.3000', '9.0000', '9.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 (25681, '2021-10-15', 9453, 24722, 2079, 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 (25682, '2021-10-15', 1881, 24723, 2079, 5007, '1.0000', '105.0000', '105.0000', '138.5000', '138.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 (25683, '2021-10-15', 9560, 24724, 2079, 36812, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '15.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25684, '2021-10-15', 2058, 24725, 2079, 7513, '1.0000', '10.0000', '10.0000', '40.0000', '40.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 (25685, '2021-10-15', 1744, 24726, 2079, 34416, '1.0000', '50.2499', '50.2499', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25686, '2021-10-15', 1398, 24727, 2079, 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 (25687, '2021-10-15', 2624, 24728, 2080, 35207, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25688, '2021-10-15', 1330, 24729, 2080, 32795, '1.0000', '246.1450', '246.1450', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25689, '2021-10-15', 8308, 24730, 2080, NULL, '1.0000', '11.0000', '11.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 (25690, '2021-10-15', 7708, 24731, 2080, NULL, '1.0000', '6.1400', '6.1400', '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 (25691, '2021-10-15', 7983, 24732, 2080, NULL, '1.0000', '42.5100', '42.5100', '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 (25692, '2021-10-15', 7353, 24733, 2080, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25693, '2021-10-15', 1541, 24734, 2080, 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 (25694, '2021-10-15', 9299, 24735, 2080, NULL, '1.0000', '9.5000', '9.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 (25695, '2021-10-15', 1671, 24736, 2080, NULL, '10.0000', '90.0000', '90.0000', '6.4000', '6.4000', '-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 (25696, '2021-10-15', 2642, 24737, 2080, NULL, '2.0000', '7.5000', '7.5000', '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 (25697, '2021-10-15', 7532, 24738, 2080, NULL, '1.0000', '9.0500', '9.0500', '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 (25698, '2021-10-15', 8547, 24739, 2080, NULL, '1.0000', '16.5000', '16.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 (25699, '2021-10-15', 2104, 24740, 2080, NULL, '2.0000', '0.2000', '0.2000', '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 (25700, '2021-10-15', 8941, 24741, 2080, NULL, '1.0000', '12.0000', '12.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 (25701, '2021-10-15', 9563, 24742, 2080, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25702, '2021-10-15', 2242, 24743, 2081, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25703, '2021-10-15', 7802, 24744, 2081, NULL, '3.0000', '0.9200', '0.9200', '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 (25704, '2021-10-15', 7886, 24745, 2081, NULL, '1.0000', '14.5000', '14.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 (25705, '2021-10-15', 1524, 24746, 2081, 24138, '1.0000', '4.4000', '4.4000', '7.0000', '7.0000', '49.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 (25706, '2021-10-15', 1592, 24747, 2081, 37973, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25707, '2021-10-15', 2673, 24748, 2081, 37788, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25708, '2021-10-15', 1535, 24749, 2081, 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 (25709, '2021-10-15', 2511, 24750, 2081, 34934, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25710, '2021-10-15', 7411, 24751, 2081, NULL, '1.0000', '1.3500', '1.3500', '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 (25711, '2021-10-15', 2256, 24752, 2081, 31111, '1.0000', '13.0440', '13.0440', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25712, '2021-10-15', 2366, 24753, 2081, NULL, '2.0000', '6.4500', '6.4500', '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 (25713, '2021-10-15', 2523, 24754, 2081, 23979, '2.0000', '4.8000', '4.8000', '6.5000', '6.5000', '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 (25714, '2021-10-15', 2169, 24755, 2081, NULL, '1.0000', '1.1500', '1.1500', '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 (25715, '2021-10-15', 7411, 24756, 2081, NULL, '1.0000', '1.3500', '1.3500', '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 (25716, '2021-10-15', 1577, 24757, 2081, NULL, '1.0000', '2.5218', '2.5218', '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 (25717, '2021-10-15', 8680, 24758, 2081, NULL, '1.0000', '2.0000', '2.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 (25718, '2021-10-15', 1671, 24759, 2081, 34970, '10.0000', '145.9939', '145.9939', '6.4000', '6.4000', '40.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25719, '2021-10-15', 7558, 24760, 2081, NULL, '1.0000', '33.0200', '33.0200', '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 (25720, '2021-10-15', 1746, 24761, 2081, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (25721, '2021-10-15', 9556, 24762, 2081, 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 (25722, '2021-10-15', 2951, 24763, 2081, NULL, '10.0000', '0.3700', '0.3700', '0.5000', '0.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 (25723, '2021-10-15', 1592, 24764, 2081, 37973, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25724, '2021-10-15', 1695, 24765, 2081, 31109, '1.0000', '14.8348', '14.8348', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25725, '2021-10-15', 8039, 24766, 2081, NULL, '1.0000', '12.9000', '12.9000', '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 (25726, '2021-10-15', 8984, 24767, 2081, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25727, '2021-10-15', 1311, 24768, 2081, NULL, '10.0000', '0.3700', '0.3700', '0.5000', '0.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 (25728, '2021-10-15', 2285, 24769, 2081, NULL, '1.0000', '36.1500', '36.1500', '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 (25729, '2021-10-15', 2511, 24770, 2081, 34934, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25730, '2021-10-15', 2167, 24771, 2081, 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 (25731, '2021-10-15', 2169, 24772, 2081, NULL, '1.0000', '1.1500', '1.1500', '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 (25732, '2021-10-15', 8133, 24773, 2081, 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 (25733, '2021-10-15', 2772, 24774, 2081, 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 (25734, '2021-10-15', 2287, 24775, 2081, 29630, '4.0000', '1.1700', '1.1700', '3.0000', '3.0000', '86.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25735, '2021-10-15', 2486, 24776, 2081, 24874, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.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 (25736, '2021-10-15', 1409, 24777, 2081, 37443, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25737, '2021-10-15', 1590, 24778, 2081, 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 (25738, '2021-10-15', 1912, 24779, 2081, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25739, '2021-10-15', 2951, 24780, 2081, 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 (25740, '2021-10-15', 2256, 24781, 2081, 31111, '1.0000', '13.0440', '13.0440', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25741, '2021-10-15', 7380, 24782, 2081, NULL, '3.0000', '5.6200', '5.6200', '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 (25742, '2021-10-15', 7886, 24783, 2081, NULL, '1.0000', '14.5000', '14.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 (25743, '2021-10-15', 2327, 24784, 2081, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.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 (25744, '2021-10-15', 3059, 24785, 2081, 37758, '2.0000', '2.2083', '2.2083', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25745, '2021-10-15', 1701, 24786, 2081, 34961, '1.0000', '15.0619', '15.0619', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25746, '2021-10-15', 2289, 24787, 2081, 13744, '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 (25747, '2021-10-15', 2951, 24788, 2081, 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 (25748, '2021-10-15', 2066, 24789, 2081, 34656, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25749, '2021-10-15', 8771, 24790, 2081, NULL, '1.0000', '2.9100', '2.9100', '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 (25750, '2021-10-15', 8763, 24791, 2081, NULL, '1.0000', '5.4000', '5.4000', '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 (25751, '2021-10-15', 2951, 24792, 2081, 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 (25752, '2021-10-15', 2169, 24793, 2081, NULL, '1.0000', '1.1500', '1.1500', '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 (25753, '2021-10-15', 1590, 24794, 2081, 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 (25754, '2021-10-15', 8677, 24795, 2081, NULL, '1.0000', '7.8000', '7.8000', '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 (25755, '2021-10-15', 1667, 24796, 2081, 37760, '1.0000', '-3.4228', '-3.4228', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25756, '2021-10-15', 1966, 24797, 2081, 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 (25757, '2021-10-15', 2962, 24798, 2081, NULL, '2.0000', '4.0000', '4.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 (25758, '2021-10-15', 8933, 24799, 2081, NULL, '1.0000', '10.0000', '10.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 (25759, '2021-10-15', 2066, 24800, 2081, 34656, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25760, '2021-10-15', 2511, 24801, 2081, 34934, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25761, '2021-10-15', 3044, 24802, 2081, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '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 (25762, '2021-10-15', 1529, 24803, 2081, NULL, '1.0000', '3.4695', '3.4695', '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 (25763, '2021-10-15', 7641, 24804, 2081, NULL, '1.0000', '1.9000', '1.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 (25764, '2021-10-15', 2522, 24805, 2082, 7523, '1.0000', '4.8000', '4.8000', '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 (25765, '2021-10-15', 8497, 24806, 2082, 36398, '2.0000', '13.4545', '13.4545', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25766, '2021-10-15', 1839, 24807, 2082, 16908, '1.0000', '6.1500', '6.1500', '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 (25767, '2021-10-15', 2405, 24808, 2082, 36330, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '47.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25768, '2021-10-15', 1432, 24809, 2083, 37543, '1.0000', '9.1352', '9.1352', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25769, '2021-10-15', 2672, 24810, 2083, 33029, '1.0000', '10.7949', '10.7949', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25770, '2021-10-15', 1666, 24811, 2083, 36353, '1.0000', '133.4617', '133.4617', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25771, '2021-10-15', 1831, 24812, 2083, 37584, '1.0000', '2.8213', '2.8213', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25772, '2021-10-15', 7885, 24813, 2083, NULL, '2.0000', '82.8700', '82.8700', '110.0000', '110.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 (25773, '2021-10-15', 1871, 24814, 2083, 37565, '10.0000', '29.4135', '29.4135', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25774, '2021-10-15', 1641, 24815, 2083, 34686, '10.0000', '76.5908', '76.5908', '1.3000', '1.3000', '47.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25775, '2021-10-15', 1406, 24816, 2083, 33039, '1.0000', '17.0700', '17.0700', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25776, '2021-10-16', 7370, 24817, 2084, NULL, '1.0000', '12.1100', '12.1100', '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 (25777, '2021-10-16', 2655, 24818, 2084, 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 (25778, '2021-10-16', 7639, 24819, 2084, 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 (25779, '2021-10-16', 2288, 24820, 2084, 2948, '1.0000', '7.5900', '7.5900', '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 (25780, '2021-10-16', 2681, 24821, 2084, 12164, '-4.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 (25781, '2021-10-16', 2681, 24821, 2084, NULL, '5.0000', '12.5000', '12.5000', '16.5000', '16.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 (25782, '2021-10-16', 1348, 24822, 2084, 244, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25783, '2021-10-16', 2712, 24823, 2084, 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 (25784, '2021-10-16', 8594, 24824, 2084, 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 (25785, '2021-10-16', 1365, 24825, 2084, NULL, '2.0000', '24.0492', '24.0492', '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 (25786, '2021-10-16', 8666, 24826, 2084, NULL, '1.0000', '0.4600', '0.4600', '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 (25787, '2021-10-16', 1637, 24827, 2084, 13466, '1.0000', '10.2000', '10.2000', '14.0000', '14.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 (25788, '2021-10-16', 1646, 24828, 2084, 3239, '-7.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 (25789, '2021-10-16', 1646, 24828, 2084, NULL, '8.0000', '4.5300', '4.5300', '7.5000', '7.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 (25790, '2021-10-16', 1303, 24829, 2084, 32, '4.0000', '54.5520', '54.5520', '4.0000', '4.0000', '94.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 (25791, '2021-10-16', 1602, 24830, 2084, 5897, '-23.0000', '6.7859', '6.7859', '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 (25792, '2021-10-16', 1602, 24830, 2084, NULL, '24.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (25793, '2021-10-16', 2223, 24831, 2084, 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 (25794, '2021-10-16', 1896, 24832, 2085, 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 (25795, '2021-10-16', 1863, 24833, 2085, 10808, '-46.0000', '0.4136', '0.4136', '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 (25796, '2021-10-16', 1863, 24833, 2085, NULL, '47.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (25797, '2021-10-16', 1523, 24834, 2085, 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 (25798, '2021-10-16', 2712, 24835, 2086, 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 (25799, '2021-10-16', 8746, 24836, 2087, NULL, '1.0000', '3.8000', '3.8000', '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 (25800, '2021-10-16', 9088, 24837, 2088, NULL, '1.0000', '9.0000', '9.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 (25801, '2021-10-16', 7317, 24838, 2088, NULL, '1.0000', '19.5500', '19.5500', '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 (25802, '2021-10-16', 1541, 24839, 2088, 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 (25803, '2021-10-16', 7385, 24840, 2088, NULL, '3.0000', '933.1354', '933.1354', '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 (25804, '2021-10-16', 1510, 24841, 2088, NULL, '1.0000', '10.5918', '10.5918', '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 (25805, '2021-10-16', 9419, 24842, 2088, 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 (25806, '2021-10-16', 9274, 24843, 2088, NULL, '1.0000', '3.1000', '3.1000', '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 (25807, '2021-10-16', 7946, 24844, 2088, NULL, '1.0000', '0.5200', '0.5200', '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 (25808, '2021-10-16', 7411, 24845, 2088, NULL, '2.0000', '1.3500', '1.3500', '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 (25809, '2021-10-16', 7775, 24846, 2088, NULL, '1.0000', '7.9800', '7.9800', '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 (25810, '2021-10-16', 9193, 24847, 2088, NULL, '1.0000', '6.8075', '6.8075', '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 (25811, '2021-10-16', 7671, 24848, 2088, NULL, '3.0000', '15.5000', '15.5000', '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 (25812, '2021-10-16', 8918, 24849, 2088, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25813, '2021-10-16', 7444, 24850, 2088, 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 (25814, '2021-10-16', 8413, 24851, 2088, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25815, '2021-10-16', 7819, 24852, 2088, NULL, '1.0000', '9.5000', '9.5000', '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 (25816, '2021-10-16', 8299, 24853, 2088, NULL, '10.0000', '8.3000', '8.3000', '11.0000', '11.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 (25817, '2021-10-16', 7927, 24854, 2088, 34535, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25818, '2021-10-16', 7958, 24855, 2088, NULL, '1.0000', '13.0000', '13.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 (25819, '2021-10-16', 2315, 24856, 2088, NULL, '3.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-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 (25820, '2021-10-16', 8165, 24857, 2088, NULL, '1.0000', '8.0000', '8.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 (25821, '2021-10-16', 8714, 24858, 2088, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25822, '2021-10-16', 8308, 24859, 2088, NULL, '1.0000', '11.0000', '11.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 (25823, '2021-10-16', 7820, 24860, 2088, NULL, '1.0000', '8.4000', '8.4000', '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 (25824, '2021-10-16', 7482, 24861, 2088, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25825, '2021-10-16', 7958, 24862, 2088, NULL, '1.0000', '13.0000', '13.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 (25826, '2021-10-16', 9508, 24863, 2088, NULL, '1.0000', '3.4000', '3.4000', '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 (25827, '2021-10-16', 8918, 24864, 2088, 37847, '2.0000', '5.5250', '5.5250', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25828, '2021-10-16', 7782, 24865, 2088, NULL, '1.0000', '5.0000', '5.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 (25829, '2021-10-16', 8810, 24866, 2088, NULL, '1.0000', '1.9200', '1.9200', '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 (25830, '2021-10-16', 8699, 24867, 2088, NULL, '1.0000', '6.3800', '6.3800', '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 (25831, '2021-10-16', 9461, 24868, 2088, 38000, '1.0000', '1.4957', '1.4957', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25832, '2021-10-16', 2057, 24869, 2088, 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 (25833, '2021-10-16', 7782, 24870, 2088, NULL, '2.0000', '5.0000', '5.0000', '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 (25834, '2021-10-16', 8247, 24871, 2088, NULL, '2.0000', '10.0000', '10.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 (25835, '2021-10-16', 9304, 24872, 2088, NULL, '1.0000', '12.0000', '12.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 (25836, '2021-10-16', 7385, 24873, 2088, NULL, '5.0000', '933.1354', '933.1354', '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 (25837, '2021-10-16', 8920, 24874, 2088, 37425, '1.0000', '9.8500', '9.8500', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25838, '2021-10-16', 7641, 24875, 2088, NULL, '1.0000', '6.5038', '6.5038', '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 (25839, '2021-10-16', 8682, 24876, 2088, NULL, '1.0000', '30.0000', '30.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 (25840, '2021-10-16', 8849, 24877, 2088, NULL, '1.0000', '1.0700', '1.0700', '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 (25841, '2021-10-16', 9202, 24878, 2088, NULL, '1.0000', '3.5000', '3.5000', '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 (25842, '2021-10-16', 8360, 24879, 2088, 35193, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25843, '2021-10-16', 7518, 24880, 2089, NULL, '1.0000', '-32.3379', '-32.3379', '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 (25844, '2021-10-16', 2291, 24881, 2090, 24331, '1.0000', '20.6400', '20.6400', '27.3000', '27.3000', '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 (25845, '2021-10-16', 1875, 24882, 2090, 17321, '3.0000', '74.5688', '74.5688', '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 (25846, '2021-10-16', 1875, 24882, 2090, 17078, '17.0000', '74.5688', '74.5688', '3.6000', '3.6000', '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 (25847, '2021-10-16', 1783, 24883, 2090, 36383, '3.0000', '29.1265', '29.1265', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25848, '2021-10-16', 7601, 24884, 2091, 36074, '3.0000', '13.5000', '13.5000', '18.0000', '18.0000', '12.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25849, '2021-10-16', 1904, 24885, 2091, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25850, '2021-10-16', 9154, 24886, 2091, 37372, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25851, '2021-10-16', 9274, 24887, 2091, NULL, '1.0000', '3.1000', '3.1000', '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 (25852, '2021-10-16', 8037, 24888, 2091, 36082, '1.0000', '45.3419', '45.3419', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25853, '2021-10-16', 2315, 24889, 2091, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25854, '2021-10-16', 7641, 24890, 2091, NULL, '1.0000', '6.5038', '6.5038', '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 (25855, '2021-10-16', 8080, 24891, 2091, NULL, '5.0000', '2.9000', '2.9000', '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 (25856, '2021-10-16', 7444, 24892, 2091, 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 (25857, '2021-10-16', 1680, 24893, 2091, 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 (25858, '2021-10-16', 7708, 24894, 2091, NULL, '1.0000', '6.1400', '6.1400', '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 (25859, '2021-10-16', 8136, 24895, 2091, NULL, '1.0000', '29.3500', '29.3500', '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 (25860, '2021-10-16', 7447, 24896, 2091, NULL, '3.0000', '19.1100', '19.1100', '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 (25861, '2021-10-16', 8594, 24897, 2091, NULL, '2.0000', '2.0000', '2.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 (25862, '2021-10-16', 9193, 24898, 2091, NULL, '1.0000', '6.8075', '6.8075', '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 (25863, '2021-10-16', 1914, 24899, 2091, NULL, '1.0000', '4.9000', '4.9000', '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 (25864, '2021-10-16', 7411, 24900, 2091, NULL, '1.0000', '1.3500', '1.3500', '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 (25865, '2021-10-16', 8308, 24901, 2091, NULL, '1.0000', '11.0000', '11.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 (25866, '2021-10-16', 7912, 24902, 2091, NULL, '2.0000', '8.0361', '8.0361', '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 (25867, '2021-10-16', 2713, 24903, 2091, 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 (25868, '2021-10-16', 7824, 24904, 2091, NULL, '1.0000', '8.0000', '8.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 (25869, '2021-10-16', 7775, 24905, 2091, NULL, '1.0000', '7.9800', '7.9800', '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 (25870, '2021-10-16', 9098, 24906, 2091, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25871, '2021-10-16', 7345, 24907, 2091, NULL, '1.0000', '38.2000', '38.2000', '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 (25872, '2021-10-16', 1631, 24908, 2091, NULL, '1.0000', '63.9000', '63.9000', '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 (25873, '2021-10-16', 9250, 24909, 2091, NULL, '1.0000', '18.9800', '18.9800', '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 (25874, '2021-10-16', 8466, 24910, 2091, NULL, '30.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '-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 (25875, '2021-10-16', 7400, 24911, 2091, NULL, '1.0000', '14.5300', '14.5300', '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 (25876, '2021-10-16', 7712, 24912, 2091, NULL, '1.0000', '0.3300', '0.3300', '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 (25877, '2021-10-16', 7852, 24913, 2091, NULL, '1.0000', '6.1100', '6.1100', '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 (25878, '2021-10-16', 8851, 24914, 2091, NULL, '1.0000', '16.6600', '16.6600', '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 (25879, '2021-10-16', 2656, 24915, 2091, 36676, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25880, '2021-10-16', 7652, 24916, 2091, NULL, '2.0000', '40.3000', '40.3000', '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 (25881, '2021-10-16', 1854, 24917, 2091, 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 (25882, '2021-10-16', 2104, 24918, 2091, NULL, '3.0000', '0.2000', '0.2000', '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 (25883, '2021-10-16', 2315, 24919, 2091, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25884, '2021-10-16', 7671, 24920, 2091, NULL, '1.0000', '15.5000', '15.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 (25885, '2021-10-16', 2648, 24921, 2091, NULL, '1.0000', '5.4000', '5.4000', '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 (25886, '2021-10-16', 1339, 24922, 2091, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25887, '2021-10-16', 2015, 24923, 2091, 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 (25888, '2021-10-16', 7853, 24924, 2091, NULL, '1.0000', '35.0000', '35.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 (25889, '2021-10-16', 2490, 24925, 2091, NULL, '1.0000', '8.6300', '8.6300', '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 (25890, '2021-10-16', 7411, 24926, 2091, NULL, '5.0000', '1.3500', '1.3500', '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 (25891, '2021-10-16', 8308, 24927, 2091, NULL, '1.0000', '11.0000', '11.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 (25892, '2021-10-16', 1947, 24928, 2091, 34542, '1.0000', '6615.3206', '6615.3206', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25893, '2021-10-16', 9272, 24929, 2091, NULL, '1.0000', '3.1000', '3.1000', '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 (25894, '2021-10-16', 7743, 24930, 2091, NULL, '2.0000', '7.3900', '7.3900', '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 (25895, '2021-10-16', 7714, 24931, 2091, 37846, '1.0000', '0.4200', '0.4200', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25896, '2021-10-16', 7518, 24932, 2091, NULL, '1.0000', '-32.3379', '-32.3379', '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 (25897, '2021-10-16', 2656, 24933, 2091, 36676, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25898, '2021-10-16', 7672, 24934, 2091, NULL, '1.0000', '1.0200', '1.0200', '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 (25899, '2021-10-16', 1541, 24935, 2091, 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 (25900, '2021-10-16', 7708, 24936, 2091, NULL, '1.0000', '6.1400', '6.1400', '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 (25901, '2021-10-16', 7807, 24937, 2091, NULL, '2.0000', '12.0000', '12.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 (25902, '2021-10-16', 7693, 24938, 2091, NULL, '1.0000', '6.0000', '6.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 (25903, '2021-10-16', 8178, 24939, 2091, NULL, '1.0000', '0.0000', '0.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 (25904, '2021-10-16', 2295, 24940, 2091, NULL, '2.0000', '0.7000', '0.7000', '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 (25905, '2021-10-16', 9274, 24941, 2091, NULL, '1.0000', '3.1000', '3.1000', '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 (25906, '2021-10-16', 7482, 24942, 2091, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25907, '2021-10-16', 8858, 24943, 2091, NULL, '1.0000', '8.5000', '8.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 (25908, '2021-10-16', 8849, 24944, 2091, NULL, '1.0000', '1.0700', '1.0700', '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 (25909, '2021-10-16', 2655, 24945, 2091, 36675, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25910, '2021-10-16', 8658, 24946, 2091, NULL, '1.0000', '17.1000', '17.1000', '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 (25911, '2021-10-16', 8548, 24947, 2091, NULL, '1.0000', '12.0000', '12.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 (25912, '2021-10-16', 7703, 24948, 2091, NULL, '1.0000', '22.9900', '22.9900', '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 (25913, '2021-10-16', 7473, 24949, 2091, NULL, '4.0000', '9.2200', '9.2200', '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 (25914, '2021-10-16', 7459, 24950, 2091, NULL, '3.0000', '40.3500', '40.3500', '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 (25915, '2021-10-16', 8016, 24951, 2091, NULL, '1.0000', '42.0000', '42.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 (25916, '2021-10-16', 7675, 24952, 2091, NULL, '1.0000', '11.4300', '11.4300', '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 (25917, '2021-10-16', 8941, 24953, 2091, NULL, '1.0000', '12.0000', '12.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 (25918, '2021-10-16', 1381, 24954, 2091, 36091, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25919, '2021-10-16', 9275, 24955, 2091, NULL, '2.0000', '6.3000', '6.3000', '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 (25920, '2021-10-16', 8134, 24956, 2091, NULL, '1.0000', '5.2600', '5.2600', '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 (25921, '2021-10-16', 7671, 24957, 2091, NULL, '2.0000', '15.5000', '15.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 (25922, '2021-10-16', 7708, 24958, 2091, NULL, '1.0000', '6.1400', '6.1400', '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 (25923, '2021-10-16', 7576, 24959, 2091, NULL, '4.0000', '6.9100', '6.9100', '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 (25924, '2021-10-16', 1845, 24960, 2092, 32081, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25925, '2021-10-16', 2681, 24961, 2092, 32247, '1.0000', '12.3514', '12.3514', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25926, '2021-10-16', 7430, 24962, 2092, NULL, '1.0000', '15.0000', '15.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 (25927, '2021-10-16', 1349, 24963, 2092, 33236, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25928, '2021-10-16', 1863, 24964, 2092, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25929, '2021-10-16', 1871, 24965, 2092, 37565, '10.0000', '29.4135', '29.4135', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25930, '2021-10-16', 2486, 24966, 2092, 21821, '1.0000', '4.0000', '4.0000', '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 (25931, '2021-10-16', 2315, 24967, 2092, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '224.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25932, '2021-10-16', 1651, 24968, 2092, 37579, '1.0000', '6.7991', '6.7991', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25933, '2021-10-16', 1785, 24969, 2092, 36374, '1.0000', '14.2329', '14.2329', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25934, '2021-10-16', 1668, 24970, 2092, 36380, '1.0000', '80.0824', '80.0824', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25935, '2021-10-16', 1411, 24971, 2092, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '15.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25936, '2021-10-16', 1863, 24972, 2092, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25937, '2021-10-16', 1486, 24973, 2092, 37566, '1.0000', '95.8488', '95.8488', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25938, '2021-10-16', 1783, 24974, 2092, 36383, '1.0000', '29.1265', '29.1265', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25939, '2021-10-16', 2248, 24975, 2092, 36341, '3.0000', '3.3357', '3.3357', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25940, '2021-10-16', 1828, 24976, 2092, 33003, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25941, '2021-10-16', 2064, 24977, 2092, 5502, '1.0000', '4.2400', '4.2400', '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 (25942, '2021-10-16', 2592, 24978, 2092, 24289, '1.0000', '7.9456', '7.9456', '11.0000', '11.0000', '2.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 (25943, '2021-10-16', 2384, 24979, 2092, 29813, '7.0000', '0.2683', '0.2683', '0.7000', '0.7000', '64.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25944, '2021-10-16', 9461, 24980, 2092, 33213, '1.0000', '1.6000', '1.6000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25945, '2021-10-16', 1824, 24981, 2092, 37585, '1.0000', '39.6351', '39.6351', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25946, '2021-10-16', 1533, 24982, 2092, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25947, '2021-10-16', 1637, 24983, 2092, 36327, '1.0000', '239.8270', '239.8270', '14.0000', '14.0000', '13.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25948, '2021-10-16', 8384, 24984, 2092, 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 (25949, '2021-10-16', 2302, 24985, 2092, 33218, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25950, '2021-10-16', 1700, 24986, 2092, 32079, '1.0000', '44.4444', '44.4444', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25951, '2021-10-16', 1783, 24987, 2092, 36383, '3.0000', '29.1265', '29.1265', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25952, '2021-10-16', 1875, 24988, 2092, 17078, '20.0000', '74.5688', '74.5688', '3.6000', '3.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 (25953, '2021-10-16', 1805, 24989, 2092, 34690, '1.0000', '4.2928', '4.2928', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25954, '2021-10-16', 2291, 24990, 2092, 24331, '1.0000', '20.6400', '20.6400', '27.3000', '27.3000', '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 (25955, '2021-10-16', 2233, 24991, 2092, 37554, '1.0000', '19.3256', '19.3256', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25956, '2021-10-16', 1544, 24992, 2092, 1549, '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 (25957, '2021-10-16', 1523, 24993, 2092, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '8.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 (25958, '2021-10-16', 9469, 24994, 2092, 35936, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25959, '2021-10-16', 7411, 24995, 2093, NULL, '1.0000', '1.3500', '1.3500', '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 (25960, '2021-10-16', 7514, 24996, 2093, NULL, '2.0000', '12.9983', '12.9983', '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 (25961, '2021-10-16', 7524, 24997, 2093, NULL, '1.0000', '11.9500', '11.9500', '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 (25962, '2021-10-16', 8140, 24998, 2093, NULL, '1.0000', '6.0500', '6.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 (25963, '2021-10-16', 1904, 24999, 2093, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25964, '2021-10-16', 9092, 25000, 2093, NULL, '1.0000', '5.2900', '5.2900', '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 (25965, '2021-10-16', 8965, 25001, 2093, NULL, '1.0000', '52.9900', '52.9900', '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 (25966, '2021-10-16', 7331, 25002, 2094, 37404, '1.0000', '4.0000', '4.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25967, '2021-10-16', 7514, 25003, 2094, NULL, '1.0000', '12.9983', '12.9983', '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 (25968, '2021-10-16', 8972, 25004, 2094, NULL, '8.0000', '4.5000', '4.5000', '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 (25969, '2021-10-16', 7675, 25005, 2094, NULL, '1.0000', '11.4300', '11.4300', '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 (25970, '2021-10-16', 7954, 25006, 2094, NULL, '2.0000', '21.0000', '21.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 (25971, '2021-10-16', 2503, 25007, 2095, 36334, '1.0000', '37.6810', '37.6810', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25972, '2021-10-16', 2713, 25008, 2095, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25973, '2021-10-16', 1666, 25009, 2095, 36353, '1.0000', '133.4617', '133.4617', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25974, '2021-10-16', 1678, 25010, 2095, NULL, '1.0000', '18.5556', '18.5556', '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 (25975, '2021-10-16', 1302, 25011, 2095, 23594, '1.0000', '4.0000', '4.0000', '6.0000', '6.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 (25976, '2021-10-16', 2260, 25012, 2095, 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 (25977, '2021-10-16', 1529, 25013, 2095, 36326, '1.0000', '20261720.2750', '20261720.2750', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25978, '2021-10-16', 2085, 25014, 2095, 21574, '9.0000', '13.3400', '13.3400', '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 (25979, '2021-10-16', 1961, 25015, 2095, 33221, '1.0000', '17.7486', '17.7486', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25980, '2021-10-16', 9107, 25016, 2096, NULL, '2.0000', '3.4000', '3.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 (25981, '2021-10-16', 2951, 25017, 2096, 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 (25982, '2021-10-16', 2169, 25018, 2096, NULL, '1.0000', '1.1500', '1.1500', '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 (25983, '2021-10-16', 1523, 25019, 2096, NULL, '2.0000', '1.0061', '1.0061', '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 (25984, '2021-10-16', 1818, 25020, 2096, NULL, '1.0000', '14.8000', '14.8000', '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 (25985, '2021-10-16', 1805, 25021, 2096, NULL, '3.0000', '4.5244', '4.5244', '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 (25986, '2021-10-16', 2232, 25022, 2096, 37762, '1.0000', '26.0299', '26.0299', '42.0000', '42.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25987, '2021-10-16', 7532, 25023, 2096, 33150, '1.0000', '15.4668', '15.4668', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25988, '2021-10-16', 2318, 25024, 2096, 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 (25989, '2021-10-16', 9120, 25025, 2096, NULL, '2.0000', '20.0000', '20.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 (25990, '2021-10-16', 1738, 25026, 2096, 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 (25991, '2021-10-16', 2317, 25027, 2096, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '22.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 (25992, '2021-10-16', 8638, 25028, 2096, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25993, '2021-10-16', 2280, 25029, 2096, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '13.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 (25994, '2021-10-16', 7518, 25030, 2096, NULL, '1.0000', '7.8200', '7.8200', '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 (25995, '2021-10-16', 7933, 25031, 2096, NULL, '3.0000', '5.5000', '5.5000', '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 (25996, '2021-10-16', 7652, 25032, 2096, NULL, '2.0000', '40.3000', '40.3000', '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 (25997, '2021-10-16', 7819, 25033, 2096, NULL, '1.0000', '9.5000', '9.5000', '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 (25998, '2021-10-16', 8677, 25034, 2096, NULL, '1.0000', '7.8000', '7.8000', '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 (25999, '2021-10-16', 1822, 25035, 2096, NULL, '10.0000', '2.8625', '2.8625', '3.5000', '3.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 (26000, '2021-10-16', 2169, 25036, 2096, NULL, '1.0000', '1.1500', '1.1500', '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 (26001, '2021-10-16', 1854, 25037, 2096, 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 (26002, '2021-10-16', 2951, 25038, 2096, 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 (26003, '2021-10-16', 1529, 25039, 2096, NULL, '1.0000', '3.4695', '3.4695', '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 (26004, '2021-10-16', 7472, 25040, 2096, NULL, '1.0000', '4.1000', '4.1000', '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 (26005, '2021-10-16', 2287, 25041, 2096, 29630, '3.0000', '1.1700', '1.1700', '3.0000', '3.0000', '83.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26006, '2021-10-16', 1760, 25042, 2096, NULL, '2.0000', '1.5900', '1.5900', '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 (26007, '2021-10-16', 1884, 25043, 2096, 37803, '1.0000', '4.8050', '4.8050', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26008, '2021-10-16', 2423, 25044, 2096, 23981, '1.0000', '4.0000', '4.0000', '6.0000', '6.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 (26009, '2021-10-16', 3010, 25045, 2096, 23180, '1.0000', '42.0000', '42.0000', '55.0000', '55.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 (26010, '2021-10-16', 2592, 25046, 2096, 25022, '2.0000', '7.9800', '7.9800', '11.0000', '11.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 (26011, '2021-10-16', 1812, 25047, 2096, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26012, '2021-10-16', 1837, 25048, 2096, 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 (26013, '2021-10-16', 1580, 25049, 2096, 33362, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26014, '2021-10-16', 7406, 25050, 2096, NULL, '1.0000', '5.0000', '5.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 (26015, '2021-10-16', 1519, 25051, 2096, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26016, '2021-10-16', 8298, 25052, 2096, NULL, '1.0000', '7.8400', '7.8400', '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 (26017, '2021-10-16', 8638, 25053, 2096, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26018, '2021-10-16', 2289, 25054, 2096, 13744, '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 (26019, '2021-10-16', 2289, 25054, 2096, 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 (26020, '2021-10-16', 1557, 25055, 2096, 29633, '1.0000', '7.8420', '7.8420', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26021, '2021-10-16', 2965, 25056, 2096, NULL, '1.0000', '5.0000', '5.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 (26022, '2021-10-16', 2991, 25057, 2096, 22612, '2.0000', '0.5700', '0.5700', '1.0000', '1.0000', '88.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 (26023, '2021-10-16', 1337, 25058, 2097, 37971, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26024, '2021-10-16', 1650, 25059, 2098, NULL, '1.0000', '14.5800', '14.5800', '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 (26025, '2021-10-16', 1824, 25060, 2098, 37585, '1.0000', '39.6351', '39.6351', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26026, '2021-10-16', 1427, 25061, 2098, 18443, '1.0000', '15.0000', '15.0000', '20.5000', '20.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 (26027, '2021-10-16', 8769, 25062, 2098, 35935, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26028, '2021-10-17', 2571, 25063, 2099, NULL, '2.0000', '9.0000', '9.0000', '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 (26029, '2021-10-17', 8638, 25064, 2099, 37757, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26030, '2021-10-17', 7318, 25065, 2099, NULL, '1.0000', '13.4400', '13.4400', '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 (26031, '2021-10-17', 2506, 25066, 2099, 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 (26032, '2021-10-17', 1646, 25067, 2099, 37774, '1.0000', '4.5518', '4.5518', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26033, '2021-10-17', 7406, 25068, 2099, NULL, '1.0000', '5.0000', '5.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 (26034, '2021-10-17', 7530, 25069, 2099, 33128, '1.0000', '5.7200', '5.7200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26035, '2021-10-17', 2315, 25070, 2099, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26036, '2021-10-17', 2344, 25071, 2099, NULL, '1.0000', '19.8200', '19.8200', '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 (26037, '2021-10-17', 2242, 25072, 2099, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26038, '2021-10-17', 1381, 25073, 2099, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26039, '2021-10-17', 3045, 25074, 2099, 25018, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '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 (26040, '2021-10-17', 1863, 25075, 2099, 37810, '2.0000', '1.2830', '1.2830', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26041, '2021-10-17', 1310, 25076, 2099, 34631, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26042, '2021-10-17', 7482, 25077, 2099, 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 (26043, '2021-10-17', 1863, 25078, 2099, 37810, '2.0000', '1.2830', '1.2830', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26044, '2021-10-17', 1401, 25079, 2099, 31958, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26045, '2021-10-17', 2237, 25080, 2099, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26046, '2021-10-17', 8878, 25081, 2099, NULL, '2.0000', '6.6700', '6.6700', '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 (26047, '2021-10-17', 9544, 25082, 2099, 37733, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26048, '2021-10-17', 2479, 25083, 2099, 24873, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.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 (26049, '2021-10-17', 2484, 25084, 2099, 24871, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '3.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 (26050, '2021-10-17', 2556, 25085, 2099, 25158, '3.0000', '0.5800', '0.5800', '1.0000', '1.0000', '23.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 (26051, '2021-10-17', 1912, 25086, 2099, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26052, '2021-10-17', 2169, 25087, 2099, NULL, '3.0000', '1.1500', '1.1500', '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 (26053, '2021-10-17', 1863, 25088, 2099, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26054, '2021-10-17', 9503, 25089, 2099, 37717, '2.0000', '11.4766', '11.4766', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26055, '2021-10-17', 2285, 25090, 2100, 2945, '-8.0000', '35.8000', '35.8000', '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 (26056, '2021-10-17', 2285, 25090, 2100, NULL, '9.0000', '35.8000', '35.8000', '47.0000', '47.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 (26057, '2021-10-17', 2730, 25091, 2100, 19267, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '41.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 (26058, '2021-10-17', 2643, 25092, 2100, 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 (26059, '2021-10-17', 2327, 25093, 2100, 5083, '-10.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 (26060, '2021-10-17', 2327, 25093, 2100, NULL, '12.0000', '4.5000', '4.5000', '6.0000', '6.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 (26061, '2021-10-17', 2169, 25094, 2100, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (26062, '2021-10-17', 2315, 25095, 2100, 2735, '-113.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26063, '2021-10-17', 2315, 25095, 2100, NULL, '117.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-117.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26064, '2021-10-17', 1432, 25096, 2100, 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 (26065, '2021-10-17', 1839, 25097, 2100, 8734, '-8.0000', '6.1500', '6.1500', '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 (26066, '2021-10-17', 1839, 25097, 2100, NULL, '9.0000', '6.1500', '6.1500', '8.5000', '8.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 (26067, '2021-10-17', 8679, 25098, 2100, NULL, '1.0000', '28.0000', '28.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 (26068, '2021-10-17', 2415, 25099, 2100, 4656, '-10.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 (26069, '2021-10-17', 2415, 25099, 2100, NULL, '11.0000', '5.0000', '5.0000', '7.0000', '7.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 (26070, '2021-10-17', 2315, 25100, 2100, 2735, '-113.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26071, '2021-10-17', 2315, 25100, 2100, NULL, '115.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-115.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26072, '2021-10-17', 2296, 25101, 2100, NULL, '1.0000', '13.2900', '13.2900', '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 (26073, '2021-10-17', 2545, 25102, 2100, 6306, '-2.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 (26074, '2021-10-17', 2545, 25102, 2100, NULL, '4.0000', '5.8819', '5.8819', '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 (26075, '2021-10-17', 2020, 25103, 2100, 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 (26076, '2021-10-17', 2694, 25104, 2100, 12283, '-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 (26077, '2021-10-17', 2694, 25104, 2100, NULL, '3.0000', '3.5000', '3.5000', '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 (26078, '2021-10-17', 2511, 25105, 2100, 9740, '-2.0000', '8.5000', '8.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 (26079, '2021-10-17', 2511, 25105, 2100, NULL, '3.0000', '8.5000', '8.5000', '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 (26080, '2021-10-17', 1812, 25106, 2100, 8224, '-14.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 (26081, '2021-10-17', 1812, 25106, 2100, NULL, '15.0000', '7.8900', '7.8900', '10.5000', '10.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 (26082, '2021-10-17', 3035, 25107, 2100, NULL, '2.0000', '9.5000', '9.5000', '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 (26083, '2021-10-17', 1863, 25108, 2100, 10808, '-47.0000', '0.4136', '0.4136', '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 (26084, '2021-10-17', 1863, 25108, 2100, NULL, '48.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26085, '2021-10-17', 7772, 25109, 2100, NULL, '1.0000', '32.2400', '32.2400', '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 (26086, '2021-10-17', 3017, 25110, 2100, NULL, '1.0000', '3.9000', '3.9000', '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 (26087, '2021-10-17', 1347, 25111, 2100, 3320, '10.0000', '3.4000', '3.4000', '4.5000', '4.5000', '14.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 (26088, '2021-10-17', 1961, 25112, 2100, NULL, '1.0000', '20.4530', '20.4530', '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 (26089, '2021-10-17', 1533, 25113, 2100, 22263, '1.0000', '2.5917', '2.5917', '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 (26090, '2021-10-17', 8677, 25114, 2100, NULL, '2.0000', '1.2800', '1.2800', '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 (26091, '2021-10-17', 1602, 25115, 2100, 5897, '-24.0000', '6.7859', '6.7859', '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 (26092, '2021-10-17', 1602, 25115, 2100, NULL, '25.0000', '6.7859', '6.7859', '10.0000', '10.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 (26093, '2021-10-17', 3034, 25116, 2100, NULL, '1.0000', '17.0000', '17.0000', '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 (26094, '2021-10-17', 2643, 25117, 2100, NULL, '2.0000', '0.8700', '0.8700', '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 (26095, '2021-10-17', 1346, 25118, 2100, 242, '1.0000', '1.0594', '1.0594', '1.5000', '1.5000', '52.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 (26096, '2021-10-17', 2285, 25119, 2101, 2945, '-9.0000', '35.8000', '35.8000', '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 (26097, '2021-10-17', 2285, 25119, 2101, NULL, '10.0000', '35.8000', '35.8000', '47.0000', '47.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 (26098, '2021-10-17', 2916, 25120, 2101, 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 (26099, '2021-10-17', 1602, 25121, 2102, 5897, '-25.0000', '6.7859', '6.7859', '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 (26100, '2021-10-17', 1602, 25121, 2102, NULL, '26.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (26101, '2021-10-17', 7496, 25122, 2102, NULL, '1.0000', '0.9600', '0.9600', '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 (26102, '2021-10-17', 1807, 25123, 2102, 16442, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '2.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 (26103, '2021-10-17', 2416, 25124, 2102, 4745, '-11.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 (26104, '2021-10-17', 2416, 25124, 2102, NULL, '12.0000', '1.2000', '1.2000', '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 (26105, '2021-10-17', 1904, 25125, 2103, 5442, '-1.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 (26106, '2021-10-17', 1904, 25125, 2103, NULL, '6.0000', '0.3200', '0.3200', '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 (26107, '2021-10-17', 7915, 25126, 2103, NULL, '1.0000', '2.8000', '2.8000', '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 (26108, '2021-10-17', 2135, 25127, 2103, 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 (26109, '2021-10-17', 1307, 25128, 2103, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '11.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 (26110, '2021-10-17', 1328, 25129, 2104, 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 (26111, '2021-10-17', 2079, 25130, 2104, 228, '2.0000', '2.3000', '2.3000', '3.5000', '3.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 (26112, '2021-10-17', 8063, 25131, 2105, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '29.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26113, '2021-10-17', 8679, 25132, 2105, NULL, '1.0000', '28.0000', '28.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 (26114, '2021-10-17', 7558, 25133, 2105, NULL, '8.0000', '2.2000', '2.2000', '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 (26115, '2021-10-17', 7657, 25134, 2105, NULL, '1.0000', '5.4700', '5.4700', '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 (26116, '2021-10-17', 7408, 25135, 2105, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26117, '2021-10-17', 7709, 25136, 2105, NULL, '2.0000', '35.8000', '35.8000', '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 (26118, '2021-10-17', 1498, 25137, 2105, 33520, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26119, '2021-10-17', 2255, 25138, 2105, NULL, '1.0000', '17.4900', '17.4900', '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 (26120, '2021-10-17', 8923, 25139, 2105, 37374, '3.0000', '7.2500', '7.2500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26121, '2021-10-17', 8230, 25140, 2105, NULL, '1.0000', '5.0000', '5.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 (26122, '2021-10-17', 7899, 25141, 2105, NULL, '1.0000', '0.7800', '0.7800', '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 (26123, '2021-10-17', 8425, 25142, 2105, NULL, '1.0000', '30.0000', '30.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 (26124, '2021-10-17', 1904, 25143, 2105, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26125, '2021-10-17', 9214, 25144, 2105, NULL, '1.0000', '7.4538', '7.4538', '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 (26126, '2021-10-17', 7411, 25145, 2105, NULL, '1.0000', '1.3500', '1.3500', '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 (26127, '2021-10-17', 8666, 25146, 2105, NULL, '1.0000', '0.4600', '0.4600', '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 (26128, '2021-10-17', 9478, 25147, 2105, 32800, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26129, '2021-10-17', 8203, 25148, 2105, 38167, '2.0000', '-29.3667', '-29.3667', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26130, '2021-10-17', 7711, 25149, 2105, NULL, '1.0000', '0.3900', '0.3900', '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 (26131, '2021-10-17', 7411, 25150, 2105, NULL, '1.0000', '1.3500', '1.3500', '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 (26132, '2021-10-17', 8048, 25151, 2105, NULL, '1.0000', '15.3000', '15.3000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26133, '2021-10-17', 7324, 25152, 2105, 37423, '3.0000', '32.2000', '32.2000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26134, '2021-10-17', 2233, 25153, 2105, 37368, '1.0000', '8.2124', '8.2124', '29.0000', '29.0000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26135, '2021-10-17', 7703, 25154, 2105, NULL, '1.0000', '22.9900', '22.9900', '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 (26136, '2021-10-17', 1760, 25155, 2105, 37408, '3.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26137, '2021-10-17', 7674, 25156, 2105, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '201.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26138, '2021-10-17', 7460, 25157, 2105, NULL, '3.0000', '51.2000', '51.2000', '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 (26139, '2021-10-17', 7547, 25158, 2105, NULL, '4.0000', '0.0000', '0.0000', '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 (26140, '2021-10-17', 7926, 25159, 2105, 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 (26141, '2021-10-17', 7917, 25160, 2105, NULL, '6.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (26142, '2021-10-17', 7411, 25161, 2105, NULL, '3.0000', '1.3500', '1.3500', '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 (26143, '2021-10-17', 7913, 25162, 2105, NULL, '2.0000', '2.5500', '2.5500', '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 (26144, '2021-10-17', 7385, 25163, 2105, NULL, '10.0000', '933.1354', '933.1354', '3.5000', '3.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 (26145, '2021-10-17', 1463, 25164, 2105, 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 (26146, '2021-10-17', 2102, 25165, 2105, 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 (26147, '2021-10-17', 7707, 25166, 2105, NULL, '1.0000', '6.0124', '6.0124', '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 (26148, '2021-10-17', 7657, 25167, 2105, NULL, '2.0000', '5.4700', '5.4700', '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 (26149, '2021-10-17', 2290, 25168, 2105, 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 (26150, '2021-10-17', 7781, 25169, 2105, NULL, '3.0000', '4.2500', '4.2500', '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 (26151, '2021-10-17', 7713, 25170, 2105, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26152, '2021-10-17', 2060, 25171, 2105, 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 (26153, '2021-10-17', 9092, 25172, 2105, 38114, '2.0000', '-2.8133', '-2.8133', '0.5000', '0.5000', '366.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26154, '2021-10-17', 7411, 25173, 2105, NULL, '1.0000', '1.3500', '1.3500', '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 (26155, '2021-10-17', 2295, 25174, 2105, 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 (26156, '2021-10-17', 1765, 25175, 2105, 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 (26157, '2021-10-17', 7762, 25176, 2105, NULL, '1.0000', '5.1000', '5.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 (26158, '2021-10-17', 7899, 25177, 2105, NULL, '1.0000', '0.7800', '0.7800', '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 (26159, '2021-10-17', 7514, 25178, 2105, NULL, '1.0000', '12.9983', '12.9983', '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 (26160, '2021-10-17', 2060, 25179, 2105, 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 (26161, '2021-10-17', 9092, 25180, 2105, 38114, '2.0000', '-2.8133', '-2.8133', '0.5000', '0.5000', '366.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26162, '2021-10-17', 7514, 25181, 2105, NULL, '1.0000', '12.9983', '12.9983', '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 (26163, '2021-10-17', 7514, 25182, 2105, NULL, '1.0000', '12.9983', '12.9983', '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 (26164, '2021-10-17', 7711, 25183, 2105, NULL, '1.0000', '0.3900', '0.3900', '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 (26165, '2021-10-17', 8941, 25184, 2105, NULL, '1.0000', '12.0000', '12.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 (26166, '2021-10-17', 1772, 25185, 2105, 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 (26167, '2021-10-17', 9092, 25186, 2105, 38114, '4.0000', '-2.8133', '-2.8133', '0.5000', '0.5000', '364.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26168, '2021-10-17', 8596, 25187, 2105, NULL, '1.0000', '17.0000', '17.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 (26169, '2021-10-17', 7984, 25188, 2105, NULL, '1.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26170, '2021-10-17', 7657, 25189, 2105, NULL, '1.0000', '5.4700', '5.4700', '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 (26171, '2021-10-17', 8043, 25190, 2105, NULL, '2.0000', '27.9800', '27.9800', '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 (26172, '2021-10-17', 2100, 25191, 2105, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26173, '2021-10-17', 8481, 25192, 2105, NULL, '1.0000', '31.0700', '31.0700', '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 (26174, '2021-10-17', 7523, 25193, 2105, NULL, '1.0000', '1.8300', '1.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 (26175, '2021-10-17', 7518, 25194, 2105, NULL, '1.0000', '-32.3379', '-32.3379', '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 (26176, '2021-10-17', 9265, 25195, 2105, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26177, '2021-10-17', 8789, 25196, 2105, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26178, '2021-10-17', 7926, 25197, 2105, 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 (26179, '2021-10-17', 2060, 25198, 2105, 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 (26180, '2021-10-17', 7419, 25199, 2105, 30147, '1.0000', '24.8900', '24.8900', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26181, '2021-10-17', 7641, 25200, 2105, NULL, '1.0000', '6.5038', '6.5038', '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 (26182, '2021-10-17', 7765, 25201, 2105, NULL, '3.0000', '16.0000', '16.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 (26183, '2021-10-17', 7674, 25202, 2105, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '202.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26184, '2021-10-17', 7848, 25203, 2105, NULL, '1.0000', '1.3500', '1.3500', '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 (26185, '2021-10-17', 7514, 25204, 2105, NULL, '1.0000', '12.9983', '12.9983', '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 (26186, '2021-10-17', 9214, 25205, 2105, NULL, '1.0000', '7.4538', '7.4538', '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 (26187, '2021-10-17', 9390, 25206, 2105, NULL, '1.0000', '25.0000', '25.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 (26188, '2021-10-17', 9300, 25207, 2105, NULL, '1.0000', '12.0000', '12.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 (26189, '2021-10-17', 7411, 25208, 2105, NULL, '1.0000', '1.3500', '1.3500', '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 (26190, '2021-10-17', 7444, 25209, 2105, 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 (26191, '2021-10-17', 1904, 25210, 2105, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26192, '2021-10-17', 7800, 25211, 2105, NULL, '10.0000', '4.9000', '4.9000', '7.0000', '7.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 (26193, '2021-10-17', 7871, 25212, 2105, NULL, '7.0000', '6.0000', '6.0000', '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 (26194, '2021-10-17', 1670, 25213, 2106, 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 (26195, '2021-10-17', 7518, 25214, 2106, NULL, '1.0000', '-32.3379', '-32.3379', '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 (26196, '2021-10-17', 9469, 25215, 2106, NULL, '1.0000', '2.3000', '2.3000', '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 (26197, '2021-10-17', 8036, 25216, 2106, 35188, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26198, '2021-10-17', 2289, 25217, 2106, NULL, '4.0000', '0.2300', '0.2300', '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 (26199, '2021-10-17', 1841, 25218, 2106, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '151.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26200, '2021-10-17', 9456, 25219, 2106, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26201, '2021-10-17', 7709, 25220, 2106, NULL, '1.0000', '35.8000', '35.8000', '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 (26202, '2021-10-17', 2699, 25221, 2107, 32805, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26203, '2021-10-17', 2656, 25222, 2107, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26204, '2021-10-17', 8765, 25223, 2108, 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 (26205, '2021-10-17', 8744, 25224, 2108, 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 (26206, '2021-10-17', 1935, 25225, 2108, 5586, '-21.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 (26207, '2021-10-17', 1935, 25225, 2108, NULL, '22.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26208, '2021-10-17', 2302, 25226, 2109, 2963, '-11.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 (26209, '2021-10-17', 2302, 25226, 2109, NULL, '12.0000', '5.2000', '5.2000', '7.0000', '7.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 (26210, '2021-10-18', 2169, 25227, 2110, NULL, '1.0000', '1.1500', '1.1500', '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 (26211, '2021-10-18', 1523, 25228, 2110, NULL, '2.0000', '1.0061', '1.0061', '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 (26212, '2021-10-18', 2444, 25229, 2110, 37929, '1.0000', '7.1348', '7.1348', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26213, '2021-10-18', 1689, 25230, 2110, 13742, '1.0000', '12.3438', '12.3438', '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 (26214, '2021-10-18', 7318, 25231, 2110, NULL, '1.0000', '13.4400', '13.4400', '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 (26215, '2021-10-18', 1839, 25232, 2110, 37769, '1.0000', '6.0835', '6.0835', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26216, '2021-10-18', 7980, 25233, 2110, NULL, '4.0000', '17.4500', '17.4500', '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 (26217, '2021-10-18', 1513, 25234, 2110, 23185, '1.0000', '11.9600', '11.9600', '16.0000', '16.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 (26218, '2021-10-18', 1322, 25235, 2110, 37796, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26219, '2021-10-18', 7679, 25236, 2110, NULL, '1.0000', '5.5600', '5.5600', '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 (26220, '2021-10-18', 1338, 25237, 2110, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26221, '2021-10-18', 7765, 25238, 2110, NULL, '10.0000', '16.0000', '16.0000', '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 (26222, '2021-10-18', 2609, 25239, 2110, 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 (26223, '2021-10-18', 2169, 25240, 2110, NULL, '1.0000', '1.1500', '1.1500', '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 (26224, '2021-10-18', 2315, 25241, 2110, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26225, '2021-10-18', 2293, 25242, 2110, NULL, '2.0000', '1.4400', '1.4400', '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 (26226, '2021-10-18', 2545, 25243, 2110, 37768, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26227, '2021-10-18', 2384, 25244, 2110, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (26228, '2021-10-18', 1785, 25245, 2110, 37752, '1.0000', '14.9661', '14.9661', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26229, '2021-10-18', 9214, 25246, 2110, NULL, '1.0000', '9.6000', '9.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 (26230, '2021-10-18', 8933, 25247, 2110, NULL, '1.0000', '10.0000', '10.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 (26231, '2021-10-18', 2169, 25248, 2110, NULL, '1.0000', '1.1500', '1.1500', '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 (26232, '2021-10-18', 1912, 25249, 2110, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26233, '2021-10-18', 2287, 25250, 2110, 29630, '4.0000', '1.1700', '1.1700', '3.0000', '3.0000', '79.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26234, '2021-10-18', 2699, 25251, 2110, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26235, '2021-10-18', 2289, 25252, 2110, NULL, '1.0000', '0.2300', '0.2300', '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 (26236, '2021-10-18', 1667, 25253, 2110, 37760, '1.0000', '-3.4228', '-3.4228', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26237, '2021-10-18', 1667, 25253, 2110, NULL, '1.0000', '-3.4228', '-3.4228', '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 (26238, '2021-10-18', 1580, 25254, 2110, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26239, '2021-10-18', 1546, 25255, 2110, 23159, '1.0000', '99.5612', '99.5612', '4.0000', '4.0000', '19.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 (26240, '2021-10-18', 1672, 25256, 2110, NULL, '10.0000', '24.6900', '24.6900', '4.0000', '4.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 (26241, '2021-10-18', 2237, 25257, 2110, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26242, '2021-10-18', 1665, 25258, 2110, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26243, '2021-10-18', 2167, 25259, 2110, 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 (26244, '2021-10-18', 2614, 25260, 2110, NULL, '1.0000', '53.3200', '53.3200', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26245, '2021-10-18', 1888, 25261, 2110, 37751, '1.0000', '194.0075', '194.0075', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26246, '2021-10-18', 2269, 25262, 2110, 24965, '1.0000', '5.8300', '5.8300', '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 (26247, '2021-10-18', 1386, 25263, 2110, 37975, '1.0000', '-1.9773', '-1.9773', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26248, '2021-10-18', 2592, 25264, 2110, NULL, '2.0000', '7.9800', '7.9800', '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 (26249, '2021-10-18', 1519, 25265, 2110, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26250, '2021-10-18', 1837, 25266, 2110, 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 (26251, '2021-10-18', 1493, 25267, 2110, 37797, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26252, '2021-10-18', 7679, 25268, 2110, NULL, '1.0000', '5.5600', '5.5600', '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 (26253, '2021-10-18', 2280, 25269, 2110, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '12.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 (26254, '2021-10-18', 2280, 25270, 2110, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '12.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 (26255, '2021-10-18', 7548, 25271, 2110, NULL, '1.0000', '0.3400', '0.3400', '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 (26256, '2021-10-18', 2366, 25272, 2110, NULL, '2.0000', '6.4500', '6.4500', '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 (26257, '2021-10-18', 2673, 25273, 2110, 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 (26258, '2021-10-18', 1805, 25274, 2110, NULL, '1.0000', '4.5244', '4.5244', '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 (26259, '2021-10-18', 1313, 25275, 2110, 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 (26260, '2021-10-18', 7765, 25276, 2110, NULL, '4.0000', '16.0000', '16.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 (26261, '2021-10-18', 2315, 25277, 2110, NULL, '3.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-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 (26262, '2021-10-18', 2296, 25278, 2110, NULL, '1.0000', '13.2900', '13.2900', '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 (26263, '2021-10-18', 1337, 25279, 2110, 37971, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26264, '2021-10-18', 1326, 25280, 2110, NULL, '1.0000', '3.0300', '3.0300', '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 (26265, '2021-10-18', 3045, 25281, 2110, NULL, '1.0000', '5.4200', '5.4200', '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 (26266, '2021-10-18', 2251, 25282, 2110, 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 (26267, '2021-10-18', 2965, 25283, 2110, NULL, '1.0000', '5.0000', '5.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 (26268, '2021-10-18', 9177, 25284, 2110, 30681, '4.0000', '0.8000', '0.8000', '1.2000', '1.2000', '31.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26269, '2021-10-18', 2237, 25285, 2110, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26270, '2021-10-18', 2384, 25286, 2110, 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 (26271, '2021-10-18', 2095, 25287, 2110, 34658, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26272, '2021-10-18', 7459, 25288, 2110, 34603, '6.0000', '-6.1729', '-6.1729', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26273, '2021-10-18', 1386, 25289, 2110, 37975, '1.0000', '-1.9773', '-1.9773', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26274, '2021-10-18', 2169, 25290, 2110, NULL, '1.0000', '1.1500', '1.1500', '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 (26275, '2021-10-18', 3023, 25291, 2110, 24931, '1.0000', '5.6400', '5.6400', '7.5000', '7.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 (26276, '2021-10-18', 8771, 25292, 2110, NULL, '1.0000', '2.9100', '2.9100', '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 (26277, '2021-10-18', 2169, 25293, 2111, NULL, '2.0000', '1.1500', '1.1500', '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 (26278, '2021-10-18', 3026, 25294, 2111, 23976, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '7.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 (26279, '2021-10-18', 7482, 25295, 2111, 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 (26280, '2021-10-18', 2275, 25296, 2111, 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 (26281, '2021-10-18', 8084, 25297, 2111, 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 (26282, '2021-10-18', 2991, 25298, 2111, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '87.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 (26283, '2021-10-18', 2250, 25299, 2111, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26284, '2021-10-18', 2267, 25300, 2111, NULL, '1.0000', '9.5000', '9.5000', '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 (26285, '2021-10-18', 7491, 25301, 2111, NULL, '1.0000', '4.8000', '4.8000', '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 (26286, '2021-10-18', 2937, 25302, 2111, 24930, '1.0000', '5.3700', '5.3700', '7.0000', '7.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 (26287, '2021-10-18', 2354, 25303, 2111, 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 (26288, '2021-10-18', 1837, 25304, 2111, 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 (26289, '2021-10-18', 2379, 25305, 2111, NULL, '1.0000', '1.8000', '1.8000', '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 (26290, '2021-10-18', 1637, 25306, 2111, 19388, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26291, '2021-10-18', 2167, 25307, 2111, 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 (26292, '2021-10-18', 1884, 25308, 2111, 37803, '1.0000', '4.8050', '4.8050', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26293, '2021-10-18', 2068, 25309, 2111, 33354, '1.0000', '13.2503', '13.2503', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26294, '2021-10-18', 1307, 25310, 2111, 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 (26295, '2021-10-18', 2221, 25311, 2111, 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 (26296, '2021-10-18', 9563, 25312, 2111, 37738, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26297, '2021-10-18', 2821, 25313, 2111, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26298, '2021-10-18', 2169, 25314, 2111, NULL, '1.0000', '1.1500', '1.1500', '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 (26299, '2021-10-18', 1425, 25315, 2111, 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 (26300, '2021-10-18', 2237, 25316, 2111, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26301, '2021-10-18', 2260, 25317, 2111, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26302, '2021-10-18', 2260, 25318, 2111, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26303, '2021-10-18', 2260, 25319, 2111, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26304, '2021-10-18', 7703, 25320, 2111, NULL, '1.0000', '22.9900', '22.9900', '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 (26305, '2021-10-18', 1748, 25321, 2112, NULL, '1.0000', '0.3200', '0.3200', '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 (26306, '2021-10-18', 1674, 25322, 2112, NULL, '1.0000', '3.2473', '3.2473', '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 (26307, '2021-10-18', 1673, 25323, 2112, NULL, '1.0000', '12.9000', '12.9000', '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 (26308, '2021-10-18', 1545, 25324, 2112, 33151, '1.0000', '34.9000', '34.9000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26309, '2021-10-18', 1953, 25325, 2112, 34626, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26310, '2021-10-18', 1673, 25326, 2112, NULL, '3.0000', '12.9000', '12.9000', '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 (26311, '2021-10-18', 2821, 25327, 2112, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26312, '2021-10-18', 1519, 25328, 2112, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26313, '2021-10-18', 1999, 25329, 2112, 22550, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '0.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 (26314, '2021-10-18', 1647, 25330, 2112, 19838, '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 (26315, '2021-10-18', 2100, 25331, 2112, 31962, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26316, '2021-10-18', 1314, 25332, 2112, 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 (26317, '2021-10-18', 1649, 25333, 2112, 23687, '1.0000', '11.1900', '11.1900', '16.0000', '16.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 (26318, '2021-10-18', 2136, 25334, 2113, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '109.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 (26319, '2021-10-18', 2811, 25335, 2113, NULL, '1.0000', '3.4000', '3.4000', '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 (26320, '2021-10-18', 1537, 25336, 2113, 12923, '-1.0000', '40.2700', '40.2700', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26321, '2021-10-18', 1537, 25336, 2113, NULL, '2.0000', '40.2700', '40.2700', '56.0000', '56.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 (26322, '2021-10-18', 7453, 25337, 2113, NULL, '1.0000', '28.5000', '28.5000', '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 (26323, '2021-10-18', 2730, 25338, 2113, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '40.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 (26324, '2021-10-18', 1863, 25339, 2113, 10808, '-48.0000', '0.4136', '0.4136', '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 (26325, '2021-10-18', 1863, 25339, 2113, NULL, '49.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26326, '2021-10-18', 2315, 25340, 2113, 2735, '-119.0000', '0.3300', '0.3300', '0.5100', '0.5100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26327, '2021-10-18', 2315, 25340, 2113, NULL, '121.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-121.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26328, '2021-10-18', 1912, 25341, 2113, 20584, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '20.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 (26329, '2021-10-18', 2416, 25342, 2113, 4745, '-12.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 (26330, '2021-10-18', 2416, 25342, 2113, NULL, '13.0000', '1.2000', '1.2000', '1.5000', '1.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 (26331, '2021-10-18', 2681, 25343, 2113, 12164, '-5.0000', '12.5000', '12.5000', '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 (26332, '2021-10-18', 2681, 25343, 2113, NULL, '6.0000', '12.5000', '12.5000', '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 (26333, '2021-10-18', 1863, 25344, 2113, 10808, '-48.0000', '0.4136', '0.4136', '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 (26334, '2021-10-18', 1863, 25344, 2113, NULL, '49.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26335, '2021-10-18', 2379, 25345, 2114, NULL, '1.0000', '1.8000', '1.8000', '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 (26336, '2021-10-18', 1837, 25346, 2114, 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 (26337, '2021-10-18', 1569, 25347, 2115, 37772, '1.0000', '14.2800', '14.2800', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26338, '2021-10-18', 1499, 25348, 2116, 20585, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '13.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 (26339, '2021-10-18', 1757, 25349, 2117, 3167, '-3.0000', '4.4000', '4.4000', '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 (26340, '2021-10-18', 1757, 25349, 2117, NULL, '4.0000', '4.4000', '4.4000', '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 (26341, '2021-10-18', 2167, 25350, 2118, 17165, '-8.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 (26342, '2021-10-18', 2167, 25350, 2118, NULL, '9.0000', '2.2000', '2.2000', '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 (26343, '2021-10-18', 1837, 25351, 2119, 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 (26344, '2021-10-18', 7385, 25352, 2119, NULL, '2.0000', '933.1354', '933.1354', '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 (26345, '2021-10-18', 7922, 25353, 2119, NULL, '1.0000', '6.9800', '6.9800', '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 (26346, '2021-10-18', 2100, 25354, 2119, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26347, '2021-10-18', 8789, 25355, 2119, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26348, '2021-10-18', 9267, 25356, 2119, 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 (26349, '2021-10-18', 7544, 25357, 2119, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (26350, '2021-10-18', 2055, 25358, 2119, 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 (26351, '2021-10-18', 1841, 25359, 2119, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '150.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26352, '2021-10-18', 7514, 25360, 2119, NULL, '1.0000', '12.9983', '12.9983', '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 (26353, '2021-10-18', 8274, 25361, 2119, NULL, '1.0000', '8.4300', '8.4300', '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 (26354, '2021-10-18', 7482, 25362, 2119, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26355, '2021-10-18', 9413, 25363, 2119, NULL, '1.0000', '7.9000', '7.9000', '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 (26356, '2021-10-18', 1501, 25364, 2119, 38165, '1.0000', '-44.9231', '-44.9231', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26357, '2021-10-18', 1810, 25365, 2119, NULL, '1.0000', '7.7967', '7.7967', '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 (26358, '2021-10-18', 7756, 25366, 2119, NULL, '1.0000', '21.7700', '21.7700', '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 (26359, '2021-10-18', 7848, 25367, 2119, NULL, '1.0000', '1.3500', '1.3500', '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 (26360, '2021-10-18', 1771, 25368, 2119, 35186, '1.0000', '12.4894', '12.4894', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26361, '2021-10-18', 1338, 25369, 2119, 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 (26362, '2021-10-18', 9178, 25370, 2119, 38112, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26363, '2021-10-18', 2676, 25371, 2119, NULL, '5.0000', '2.4000', '2.4000', '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 (26364, '2021-10-18', 2839, 25372, 2119, 38107, '1.0000', '4.5000', '4.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26365, '2021-10-18', 1771, 25373, 2119, 35186, '1.0000', '12.4894', '12.4894', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26366, '2021-10-18', 2643, 25374, 2119, NULL, '2.0000', '0.8700', '0.8700', '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 (26367, '2021-10-18', 8322, 25375, 2119, NULL, '1.0000', '3.2000', '3.2000', '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 (26368, '2021-10-18', 8765, 25376, 2119, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26369, '2021-10-18', 7482, 25377, 2119, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26370, '2021-10-18', 8328, 25378, 2119, NULL, '1.0000', '8.0882', '8.0882', '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 (26371, '2021-10-18', 1872, 25379, 2119, 34519, '1.0000', '9.7600', '9.7600', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26372, '2021-10-18', 8918, 25380, 2119, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26373, '2021-10-18', 7482, 25381, 2119, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26374, '2021-10-18', 7411, 25382, 2119, NULL, '1.0000', '1.3500', '1.3500', '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 (26375, '2021-10-18', 2020, 25383, 2120, 36325, '1.0000', '4.2384', '4.2384', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26376, '2021-10-18', 2010, 25384, 2120, 27316, '1.0000', '1.2933', '1.2933', '1.5800', '1.5800', '15.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26377, '2021-10-18', 2379, 25385, 2120, 38078, '1.0000', '1.8662', '1.8662', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26378, '2021-10-18', 2109, 25386, 2120, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (26379, '2021-10-18', 2025, 25387, 2120, 6425, '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 (26380, '2021-10-18', 2225, 25388, 2120, 1713, '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 (26381, '2021-10-18', 1311, 25389, 2120, 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 (26382, '2021-10-18', 2302, 25390, 2120, 33218, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26383, '2021-10-18', 2302, 25390, 2120, 32815, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26384, '2021-10-18', 1666, 25391, 2120, 38077, '2.0000', '98.1099', '98.1099', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26385, '2021-10-18', 1863, 25392, 2120, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26386, '2021-10-18', 1602, 25393, 2120, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '50.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26387, '2021-10-18', 1975, 25394, 2120, NULL, '1.0000', '9.4630', '9.4630', '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 (26388, '2021-10-18', 1908, 25395, 2120, 5510, '1.0000', '1.7500', '1.7500', '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 (26389, '2021-10-18', 2135, 25396, 2120, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26390, '2021-10-18', 1499, 25397, 2120, 31996, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26391, '2021-10-18', 1863, 25398, 2120, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26392, '2021-10-18', 2169, 25399, 2120, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26393, '2021-10-18', 1588, 25400, 2120, 9439, '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 (26394, '2021-10-18', 1863, 25401, 2120, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26395, '2021-10-18', 2280, 25402, 2120, 21586, '1.0000', '1.9000', '1.9000', '4.5000', '4.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 (26396, '2021-10-18', 1677, 25403, 2120, 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 (26397, '2021-10-18', 2509, 25404, 2120, 12288, '1.0000', '13.7600', '13.7600', '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 (26398, '2021-10-18', 2262, 25405, 2120, 18683, '1.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 (26399, '2021-10-18', 1863, 25406, 2120, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26400, '2021-10-18', 1937, 25407, 2120, 5605, '1.0000', '3.0000', '3.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 (26401, '2021-10-18', 8677, 25408, 2120, 32871, '1.0000', '-1.2995', '-1.2995', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26402, '2021-10-18', 1310, 25409, 2120, 29814, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '6.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26403, '2021-10-18', 1602, 25410, 2120, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '50.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26404, '2021-10-18', 2669, 25411, 2120, 38079, '1.0000', '28.6241', '28.6241', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26405, '2021-10-18', 1863, 25412, 2120, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26406, '2021-10-18', 1458, 25413, 2120, NULL, '3.0000', '90.0000', '90.0000', '24.0000', '24.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 (26407, '2021-10-18', 9373, 25414, 2120, NULL, '1.0000', '46.7300', '46.7300', '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 (26408, '2021-10-18', 8773, 25415, 2120, 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 (26409, '2021-10-18', 2557, 25416, 2120, 12740, '2.0000', '1.0000', '1.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 (26410, '2021-10-18', 2730, 25417, 2120, 21547, '2.0000', '1.2000', '1.2000', '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 (26411, '2021-10-18', 1841, 25418, 2120, 24123, '7.0000', '0.3700', '0.3700', '0.5000', '0.5000', '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 (26412, '2021-10-18', 1841, 25418, 2120, 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 (26413, '2021-10-18', 2363, 25419, 2120, 32860, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26414, '2021-10-18', 2215, 25420, 2120, 36800, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26415, '2021-10-18', 2268, 25421, 2120, 38075, '1.0000', '7.8833', '7.8833', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26416, '2021-10-18', 2712, 25422, 2120, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '51.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26417, '2021-10-18', 2020, 25423, 2120, 36325, '1.0000', '4.2384', '4.2384', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26418, '2021-10-18', 7590, 25424, 2120, NULL, '1.0000', '4.3600', '4.3600', '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 (26419, '2021-10-18', 8941, 25425, 2121, NULL, '1.0000', '12.0000', '12.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 (26420, '2021-10-18', 7780, 25426, 2121, NULL, '1.0000', '2.6000', '2.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 (26421, '2021-10-18', 2612, 25427, 2121, 37416, '1.0000', '7.1600', '7.1600', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26422, '2021-10-18', 7560, 25428, 2121, NULL, '1.0000', '4.4500', '4.4500', '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 (26423, '2021-10-18', 7752, 25429, 2121, NULL, '1.0000', '2.0250', '2.0250', '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 (26424, '2021-10-18', 2656, 25430, 2121, 32804, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26425, '2021-10-18', 2132, 25431, 2121, NULL, '1.0000', '22.0000', '22.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 (26426, '2021-10-18', 9092, 25432, 2121, 38114, '2.0000', '-2.8133', '-2.8133', '0.5000', '0.5000', '358.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26427, '2021-10-18', 1708, 25433, 2121, 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 (26428, '2021-10-18', 7469, 25434, 2121, NULL, '1.0000', '10.8000', '10.8000', '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 (26429, '2021-10-18', 2541, 25435, 2121, 31938, '1.0000', '10.0000', '10.0000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 223);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26430, '2021-10-18', 2295, 25436, 2121, 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 (26431, '2021-10-18', 9202, 25437, 2121, NULL, '1.0000', '3.5000', '3.5000', '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 (26432, '2021-10-18', 7335, 25438, 2121, NULL, '1.0000', '10.4000', '10.4000', '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 (26433, '2021-10-18', 7412, 25439, 2121, NULL, '1.0000', '1.5200', '1.5200', '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 (26434, '2021-10-18', 2079, 25440, 2121, 32797, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26435, '2021-10-18', 2315, 25441, 2121, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26436, '2021-10-18', 9092, 25442, 2121, 38114, '2.0000', '-2.8133', '-2.8133', '0.5000', '0.5000', '358.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26437, '2021-10-18', 2713, 25443, 2121, 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 (26438, '2021-10-18', 7819, 25444, 2121, NULL, '1.0000', '9.5000', '9.5000', '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 (26439, '2021-10-18', 2317, 25445, 2121, 38088, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '35.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26440, '2021-10-18', 9092, 25446, 2121, 38114, '2.0000', '-2.8133', '-2.8133', '0.5000', '0.5000', '358.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26441, '2021-10-18', 7587, 25447, 2121, NULL, '1.0000', '1.5000', '1.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 (26442, '2021-10-18', 7431, 25448, 2121, 34498, '1.0000', '-2.1674', '-2.1674', '24.0000', '24.0000', '6.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26443, '2021-10-18', 8497, 25449, 2121, NULL, '1.0000', '-133.2800', '-133.2800', '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 (26444, '2021-10-18', 7834, 25450, 2121, NULL, '1.0000', '21.0000', '21.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 (26445, '2021-10-18', 7585, 25451, 2121, NULL, '1.0000', '6.2000', '6.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 (26446, '2021-10-18', 8438, 25452, 2121, NULL, '1.0000', '11.5000', '11.5000', '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 (26447, '2021-10-18', 9088, 25453, 2121, NULL, '1.0000', '9.0000', '9.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 (26448, '2021-10-18', 2274, 25454, 2121, NULL, '1.0000', '3.9800', '3.9800', '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 (26449, '2021-10-18', 7917, 25455, 2121, NULL, '4.0000', '5.0000', '5.0000', '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 (26450, '2021-10-18', 7408, 25456, 2121, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26451, '2021-10-18', 8966, 25457, 2121, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26452, '2021-10-18', 7892, 25458, 2121, NULL, '1.0000', '4.2000', '4.2000', '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 (26453, '2021-10-18', 8702, 25459, 2121, NULL, '1.0000', '3.6700', '3.6700', '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 (26454, '2021-10-18', 9098, 25460, 2121, NULL, '2.0000', '25.0000', '25.0000', '34.5000', '34.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 (26455, '2021-10-18', 7411, 25461, 2121, NULL, '1.0000', '1.3500', '1.3500', '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 (26456, '2021-10-18', 7709, 25462, 2121, NULL, '1.0000', '35.8000', '35.8000', '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 (26457, '2021-10-18', 8275, 25463, 2121, 35206, '1.0000', '29.8500', '29.8500', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26458, '2021-10-18', 8039, 25464, 2121, NULL, '1.0000', '18.3400', '18.3400', '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 (26459, '2021-10-18', 7671, 25465, 2121, NULL, '2.0000', '15.5000', '15.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 (26460, '2021-10-18', 8163, 25466, 2121, 37378, '1.0000', '22.8591', '22.8591', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26461, '2021-10-18', 8658, 25467, 2121, NULL, '1.0000', '17.1000', '17.1000', '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 (26462, '2021-10-18', 9193, 25468, 2121, NULL, '1.0000', '6.8075', '6.8075', '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 (26463, '2021-10-18', 8539, 25469, 2121, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '51.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26464, '2021-10-18', 7954, 25470, 2121, NULL, '3.0000', '21.0000', '21.0000', '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 (26465, '2021-10-18', 1760, 25471, 2121, 37408, '3.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26466, '2021-10-18', 7658, 25472, 2121, NULL, '2.0000', '10.1500', '10.1500', '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 (26467, '2021-10-18', 8137, 25473, 2121, NULL, '1.0000', '3.0000', '3.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 (26468, '2021-10-18', 8203, 25474, 2121, 38167, '2.0000', '-29.3667', '-29.3667', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26469, '2021-10-18', 2315, 25475, 2121, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26470, '2021-10-18', 7671, 25476, 2121, NULL, '1.0000', '15.5000', '15.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 (26471, '2021-10-18', 2506, 25477, 2121, 38103, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26472, '2021-10-18', 7509, 25478, 2121, 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 (26473, '2021-10-18', 2526, 25479, 2121, 38092, '3.0000', '10.0000', '10.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26474, '2021-10-18', 7889, 25480, 2121, 38147, '1.0000', '-8.6571', '-8.6571', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26475, '2021-10-18', 2016, 25481, 2121, 33391, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 245);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26476, '2021-10-18', 7518, 25482, 2121, NULL, '1.0000', '-32.3379', '-32.3379', '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 (26477, '2021-10-18', 9419, 25483, 2121, 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 (26478, '2021-10-18', 7753, 25484, 2121, NULL, '1.0000', '2.6673', '2.6673', '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 (26479, '2021-10-18', 7558, 25485, 2121, 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 (26480, '2021-10-18', 1854, 25486, 2121, 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 (26481, '2021-10-18', 9275, 25487, 2121, NULL, '1.0000', '6.3000', '6.3000', '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 (26482, '2021-10-18', 9266, 25488, 2121, 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 (26483, '2021-10-18', 2444, 25489, 2122, 37929, '1.0000', '7.1348', '7.1348', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26484, '2021-10-18', 1637, 25490, 2122, 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 (26485, '2021-10-18', 1928, 25491, 2122, NULL, '1.0000', '5.5000', '5.5000', '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 (26486, '2021-10-18', 9562, 25492, 2122, 37737, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26487, '2021-10-18', 1837, 25493, 2122, 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 (26488, '2021-10-18', 3024, 25494, 2122, 37725, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26489, '2021-10-18', 2642, 25495, 2122, 37719, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26490, '2021-10-18', 2609, 25496, 2122, 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 (26491, '2021-10-18', 8133, 25497, 2122, 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 (26492, '2021-10-18', 7411, 25498, 2122, NULL, '1.0000', '1.3500', '1.3500', '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 (26493, '2021-10-18', 1651, 25499, 2122, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26494, '2021-10-18', 1841, 25500, 2122, 34025, '6.0000', '0.2601', '0.2601', '0.5000', '0.5000', '72.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26495, '2021-10-18', 2289, 25501, 2122, 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 (26496, '2021-10-18', 1840, 25502, 2122, 19856, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '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 (26497, '2021-10-18', 2758, 25503, 2122, 34623, '1.0000', '5.4000', '5.4000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26498, '2021-10-18', 7741, 25504, 2122, NULL, '1.0000', '1.2000', '1.2000', '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 (26499, '2021-10-18', 1912, 25505, 2122, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26500, '2021-10-18', 2699, 25506, 2122, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26501, '2021-10-18', 2280, 25507, 2122, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '10.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 (26502, '2021-10-18', 1686, 25508, 2122, 34629, '2.0000', '29.0000', '29.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26503, '2021-10-18', 1542, 25509, 2122, 19389, '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 (26504, '2021-10-18', 7628, 25510, 2122, NULL, '12.0000', '2.9100', '2.9100', '4.0000', '4.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 (26505, '2021-10-18', 2315, 25511, 2122, NULL, '2.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26506, '2021-10-18', 2237, 25512, 2122, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26507, '2021-10-18', 1602, 25513, 2122, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '25.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26508, '2021-10-18', 1649, 25514, 2122, 23687, '1.0000', '11.1900', '11.1900', '16.0000', '16.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 (26509, '2021-10-18', 7524, 25515, 2122, NULL, '1.0000', '11.9500', '11.9500', '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 (26510, '2021-10-18', 1867, 25516, 2122, 37799, '2.0000', '7.1662', '7.1662', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26511, '2021-10-18', 2699, 25517, 2122, 34663, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26512, '2021-10-18', 1590, 25518, 2122, 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 (26513, '2021-10-18', 2231, 25519, 2122, 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 (26514, '2021-10-18', 7725, 25520, 2122, NULL, '1.0000', '7.0000', '7.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 (26515, '2021-10-18', 9199, 25521, 2122, NULL, '1.0000', '5.4200', '5.4200', '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 (26516, '2021-10-18', 1620, 25522, 2122, 34019, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26517, '2021-10-18', 7849, 25523, 2122, 37720, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26518, '2021-10-18', 8763, 25524, 2122, NULL, '1.0000', '5.4000', '5.4000', '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 (26519, '2021-10-18', 8566, 25525, 2122, 37715, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26520, '2021-10-18', 2379, 25526, 2122, NULL, '1.0000', '1.8000', '1.8000', '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 (26521, '2021-10-18', 1935, 25527, 2122, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26522, '2021-10-18', 7743, 25528, 2122, NULL, '1.0000', '7.3900', '7.3900', '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 (26523, '2021-10-18', 1651, 25529, 2122, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26524, '2021-10-18', 2315, 25530, 2123, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26525, '2021-10-18', 1904, 25531, 2123, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26526, '2021-10-18', 2279, 25532, 2124, 34672, '1.0000', '2.3230', '2.3230', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26527, '2021-10-18', 7989, 25533, 2125, NULL, '1.0000', '26.9800', '26.9800', '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 (26528, '2021-10-19', 1646, 25534, 2126, 3239, '-8.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 (26529, '2021-10-19', 1646, 25534, 2126, NULL, '9.0000', '4.5300', '4.5300', '7.5000', '7.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 (26530, '2021-10-19', 2286, 25535, 2127, 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 (26531, '2021-10-19', 2167, 25536, 2127, 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 (26532, '2021-10-19', 2088, 25537, 2127, 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 (26533, '2021-10-19', 2260, 25538, 2127, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26534, '2021-10-19', 1521, 25539, 2127, NULL, '2.0000', '2.5000', '2.5000', '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 (26535, '2021-10-19', 2379, 25540, 2127, NULL, '1.0000', '1.8000', '1.8000', '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 (26536, '2021-10-19', 2229, 25541, 2127, 22518, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '0.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 (26537, '2021-10-19', 1411, 25542, 2127, 33158, '2.0000', '25.9000', '25.9000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26538, '2021-10-19', 2547, 25543, 2127, 37792, '1.0000', '8.6575', '8.6575', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26539, '2021-10-19', 2682, 25544, 2127, 24925, '1.0000', '19.3000', '19.3000', '25.5000', '25.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 (26540, '2021-10-19', 1533, 25545, 2127, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26541, '2021-10-19', 8288, 25546, 2127, NULL, '1.0000', '20.0000', '20.0000', '1.8000', '1.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 (26542, '2021-10-19', 8677, 25547, 2127, NULL, '2.0000', '7.8000', '7.8000', '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 (26543, '2021-10-19', 1533, 25548, 2127, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26544, '2021-10-19', 1856, 25549, 2127, 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 (26545, '2021-10-19', 9550, 25550, 2127, 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 (26546, '2021-10-19', 1493, 25551, 2127, 37797, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26547, '2021-10-19', 1529, 25552, 2127, NULL, '1.0000', '3.4695', '3.4695', '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 (26548, '2021-10-19', 9337, 25553, 2127, NULL, '2.0000', '5.7200', '5.7200', '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 (26549, '2021-10-19', 1665, 25554, 2127, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26550, '2021-10-19', 1523, 25555, 2127, NULL, '1.0000', '1.0061', '1.0061', '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 (26551, '2021-10-19', 1521, 25556, 2127, 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 (26552, '2021-10-19', 1610, 25557, 2127, 19392, '1.0000', '90.0000', '90.0000', '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 (26553, '2021-10-19', 2250, 25558, 2127, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26554, '2021-10-19', 7799, 25559, 2127, NULL, '1.0000', '2.0000', '2.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 (26555, '2021-10-19', 7869, 25560, 2127, NULL, '1.0000', '4.2900', '4.2900', '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 (26556, '2021-10-19', 7379, 25561, 2127, NULL, '1.0000', '12.5100', '12.5100', '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 (26557, '2021-10-19', 2000, 25562, 2127, 22557, '1.0000', '8.0000', '8.0000', '10.0000', '10.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 (26558, '2021-10-19', 2297, 25563, 2127, 33348, '1.0000', '6.7800', '6.7800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26559, '2021-10-19', 1687, 25564, 2127, NULL, '2.0000', '12.0000', '12.0000', '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 (26560, '2021-10-19', 7406, 25565, 2127, NULL, '1.0000', '5.0000', '5.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 (26561, '2021-10-19', 1873, 25566, 2128, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26562, '2021-10-19', 2991, 25567, 2128, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '86.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 (26563, '2021-10-19', 1837, 25568, 2128, 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 (26564, '2021-10-19', 8745, 25569, 2128, 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 (26565, '2021-10-19', 2379, 25570, 2129, NULL, '1.0000', '1.8000', '1.8000', '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 (26566, '2021-10-19', 2095, 25571, 2129, NULL, '1.0000', '1.5000', '1.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 (26567, '2021-10-19', 8756, 25572, 2130, NULL, '1.0000', '7.5000', '7.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 (26568, '2021-10-19', 1302, 25573, 2130, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '8.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 (26569, '2021-10-19', 1961, 25574, 2130, 4501, '-1.0000', '20.4530', '20.4530', '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 (26570, '2021-10-19', 1961, 25574, 2130, NULL, '2.0000', '20.4530', '20.4530', '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 (26571, '2021-10-19', 7741, 25575, 2130, NULL, '1.0000', '1.2000', '1.2000', '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 (26572, '2021-10-19', 1791, 25576, 2130, 4909, '-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 (26573, '2021-10-19', 1791, 25576, 2130, NULL, '2.0000', '90.0000', '90.0000', '18.5000', '18.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 (26574, '2021-10-19', 1432, 25577, 2130, 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 (26575, '2021-10-19', 1912, 25578, 2130, 20584, '2.0000', '0.3200', '0.3200', '1.0000', '1.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 (26576, '2021-10-19', 2821, 25579, 2130, 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 (26577, '2021-10-19', 1863, 25580, 2130, 10808, '-50.0000', '0.4136', '0.4136', '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 (26578, '2021-10-19', 1863, 25580, 2130, NULL, '51.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (26579, '2021-10-19', 7741, 25581, 2130, NULL, '1.0000', '1.2000', '1.2000', '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 (26580, '2021-10-19', 1863, 25582, 2130, 10808, '-50.0000', '0.4136', '0.4136', '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 (26581, '2021-10-19', 1863, 25582, 2130, NULL, '51.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (26582, '2021-10-19', 1455, 25583, 2130, 18913, '2.0000', '4.0000', '4.0000', '7.0000', '7.0000', '97.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 (26583, '2021-10-19', 9521, 25584, 2130, 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 (26584, '2021-10-19', 2135, 25585, 2130, 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 (26585, '2021-10-19', 1342, 25586, 2131, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26586, '2021-10-19', 1855, 25587, 2131, 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 (26587, '2021-10-19', 9337, 25588, 2132, 36077, '2.0000', '6.8067', '6.8067', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26588, '2021-10-19', 7385, 25589, 2132, NULL, '1.0000', '933.1354', '933.1354', '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 (26589, '2021-10-19', 8825, 25590, 2132, NULL, '2.0000', '7.4000', '7.4000', '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 (26590, '2021-10-19', 8632, 25591, 2132, 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 (26591, '2021-10-19', 7996, 25592, 2132, NULL, '1.0000', '33.0100', '33.0100', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26592, '2021-10-19', 8085, 25593, 2132, NULL, '3.0000', '14.0000', '14.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 (26593, '2021-10-19', 8751, 25594, 2132, NULL, '2.0000', '3.5000', '3.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 (26594, '2021-10-19', 2416, 25595, 2132, 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 (26595, '2021-10-19', 7672, 25596, 2132, NULL, '1.0000', '1.0200', '1.0200', '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 (26596, '2021-10-19', 1841, 25597, 2132, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '149.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26597, '2021-10-19', 1840, 25598, 2132, 33725, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '172.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26598, '2021-10-19', 8198, 25599, 2132, NULL, '1.0000', '6.2900', '6.2900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26599, '2021-10-19', 7412, 25600, 2132, NULL, '1.0000', '1.5200', '1.5200', '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 (26600, '2021-10-19', 1856, 25601, 2132, 35231, '1.0000', '4.3888', '4.3888', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26601, '2021-10-19', 7715, 25602, 2132, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26602, '2021-10-19', 2060, 25603, 2132, 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 (26603, '2021-10-19', 2350, 25604, 2132, NULL, '1.0000', '10.3800', '10.3800', '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 (26604, '2021-10-19', 7411, 25605, 2132, NULL, '1.0000', '1.3500', '1.3500', '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 (26605, '2021-10-19', 7482, 25606, 2132, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26606, '2021-10-19', 7473, 25607, 2132, NULL, '3.0000', '13.0822', '13.0822', '0.6000', '0.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 (26607, '2021-10-19', 2289, 25608, 2132, NULL, '6.0000', '0.2300', '0.2300', '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 (26608, '2021-10-19', 7429, 25609, 2132, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26609, '2021-10-19', 7408, 25610, 2132, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26610, '2021-10-19', 7375, 25611, 2132, 30010, '10.0000', '5.1000', '5.1000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26611, '2021-10-19', 8052, 25612, 2132, 37435, '6.0000', '26.0786', '26.0786', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26612, '2021-10-19', 7709, 25613, 2132, NULL, '2.0000', '35.8000', '35.8000', '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 (26613, '2021-10-19', 9562, 25614, 2132, 36680, '2.0000', '5.4000', '5.4000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26614, '2021-10-19', 8622, 25615, 2132, 33733, '7.0000', '-29.2060', '-29.2060', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26615, '2021-10-19', 7781, 25616, 2132, NULL, '7.0000', '4.2500', '4.2500', '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 (26616, '2021-10-19', 7825, 25617, 2132, NULL, '4.0000', '6.5000', '6.5000', '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 (26617, '2021-10-19', 7848, 25618, 2132, NULL, '1.0000', '1.3500', '1.3500', '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 (26618, '2021-10-19', 1771, 25619, 2132, 35186, '1.0000', '12.4894', '12.4894', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26619, '2021-10-19', 8941, 25620, 2132, NULL, '1.0000', '12.0000', '12.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 (26620, '2021-10-19', 7367, 25621, 2132, NULL, '1.0000', '35.0000', '35.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 (26621, '2021-10-19', 1757, 25622, 2132, 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 (26622, '2021-10-19', 8165, 25623, 2132, NULL, '1.0000', '8.0000', '8.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 (26623, '2021-10-19', 8036, 25624, 2132, 30218, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26624, '2021-10-19', 9579, 25625, 2132, 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 (26625, '2021-10-19', 1866, 25626, 2132, NULL, '2.0000', '4.7500', '4.7500', '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 (26626, '2021-10-19', 7482, 25627, 2132, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26627, '2021-10-19', 7641, 25628, 2132, NULL, '1.0000', '6.5038', '6.5038', '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 (26628, '2021-10-19', 7385, 25629, 2132, NULL, '2.0000', '933.1354', '933.1354', '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 (26629, '2021-10-19', 9092, 25630, 2132, 38367, '4.0000', '0.7972', '0.7972', '0.5000', '0.5000', '350.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26630, '2021-10-19', 2526, 25631, 2132, 38345, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26631, '2021-10-19', 1904, 25632, 2133, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26632, '2021-10-19', 9204, 25633, 2133, NULL, '1.0000', '8.1600', '8.1600', '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 (26633, '2021-10-19', 1863, 25634, 2133, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26634, '2021-10-19', 1871, 25635, 2133, 37565, '15.0000', '29.4135', '29.4135', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26635, '2021-10-19', 7444, 25636, 2133, 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 (26636, '2021-10-19', 2557, 25637, 2133, 12740, '1.0000', '1.0000', '1.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 (26637, '2021-10-19', 2666, 25638, 2133, 11865, '1.0000', '18.7400', '18.7400', '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 (26638, '2021-10-19', 7612, 25639, 2133, NULL, '1.0000', '46.0000', '46.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 (26639, '2021-10-19', 2381, 25640, 2133, 24263, '1.0000', '5.0448', '5.0448', '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 (26640, '2021-10-19', 1592, 25641, 2133, 36393, '1.0000', '37.9490', '37.9490', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26641, '2021-10-19', 2248, 25642, 2133, 36341, '1.0000', '3.3357', '3.3357', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26642, '2021-10-19', 2635, 25643, 2133, 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 (26643, '2021-10-19', 1333, 25644, 2133, 33203, '1.0000', '0.2530', '0.2530', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26644, '2021-10-19', 2169, 25645, 2133, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26645, '2021-10-19', 2753, 25646, 2133, NULL, '1.0000', '4.8000', '4.8000', '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 (26646, '2021-10-19', 1646, 25647, 2133, 32000, '1.0000', '4.6225', '4.6225', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26647, '2021-10-19', 2085, 25648, 2133, 21574, '10.0000', '13.3400', '13.3400', '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 (26648, '2021-10-19', 2317, 25649, 2133, 36788, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '58.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26649, '2021-10-19', 2320, 25650, 2133, 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 (26650, '2021-10-19', 2862, 25651, 2133, 17481, '1.0000', '5.0000', '5.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 (26651, '2021-10-19', 1787, 25652, 2133, 36387, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26652, '2021-10-19', 1837, 25653, 2133, 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 (26653, '2021-10-19', 1314, 25654, 2133, 21584, '1.0000', '1.2000', '1.2000', '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 (26654, '2021-10-19', 1347, 25655, 2133, NULL, '10.0000', '4.0713', '4.0713', '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 (26655, '2021-10-19', 9566, 25656, 2133, 37555, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26656, '2021-10-19', 1822, 25657, 2133, 11174, '2.0000', '2.9682', '2.9682', '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 (26657, '2021-10-19', 1822, 25657, 2133, 4957, '3.0000', '2.9682', '2.9682', '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 (26658, '2021-10-19', 1822, 25657, 2133, NULL, '15.0000', '2.9682', '2.9682', '3.5000', '3.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 (26659, '2021-10-19', 2221, 25658, 2133, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26660, '2021-10-19', 8679, 25659, 2133, NULL, '1.0000', '28.0000', '28.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 (26661, '2021-10-19', 1687, 25660, 2133, NULL, '1.0000', '15.3580', '15.3580', '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 (26662, '2021-10-19', 1980, 25661, 2133, 38254, '2.0000', '3.6920', '3.6920', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26663, '2021-10-19', 7629, 25662, 2133, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26664, '2021-10-19', 2221, 25663, 2133, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26665, '2021-10-19', 8517, 25664, 2133, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26666, '2021-10-19', 1646, 25665, 2133, 32000, '1.0000', '4.6225', '4.6225', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26667, '2021-10-19', 7496, 25666, 2133, NULL, '1.0000', '0.9600', '0.9600', '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 (26668, '2021-10-19', 1812, 25667, 2133, 37578, '2.0000', '7.9315', '7.9315', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26669, '2021-10-19', 2545, 25668, 2133, 34685, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26670, '2021-10-19', 2858, 25669, 2133, 17780, '1.0000', '1.0000', '1.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 (26671, '2021-10-19', 1761, 25670, 2133, 34421, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26672, '2021-10-19', 1409, 25671, 2133, 37542, '1.0000', '13.1144', '13.1144', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26673, '2021-10-19', 1839, 25672, 2133, 17075, '1.0000', '6.1500', '6.1500', '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 (26674, '2021-10-19', 1592, 25673, 2133, 36393, '1.0000', '37.9490', '37.9490', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26675, '2021-10-19', 7453, 25674, 2133, NULL, '1.0000', '28.5000', '28.5000', '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 (26676, '2021-10-19', 2328, 25675, 2133, 3903, '2.0000', '59.7400', '59.7400', '85.0000', '85.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26677, '2021-10-19', 8831, 25676, 2133, NULL, '1.0000', '4.5000', '4.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 (26678, '2021-10-19', 1809, 25677, 2133, 18436, '1.0000', '9.1873', '9.1873', '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 (26679, '2021-10-19', 1533, 25678, 2133, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26680, '2021-10-19', 1836, 25679, 2133, 4969, '1.0000', '10.6000', '10.6000', '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 (26681, '2021-10-19', 2080, 25680, 2133, 3391, '1.0000', '20.5000', '20.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 (26682, '2021-10-19', 1761, 25681, 2133, 34421, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26683, '2021-10-19', 7391, 25682, 2134, NULL, '1.0000', '-144.1150', '-144.1150', '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 (26684, '2021-10-19', 1809, 25683, 2134, 18437, '1.0000', '9.1873', '9.1873', '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 (26685, '2021-10-19', 1543, 25684, 2134, 36375, '1.0000', '45.1313', '45.1313', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26686, '2021-10-19', 2022, 25685, 2134, 32036, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26687, '2021-10-19', 1863, 25686, 2134, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26688, '2021-10-19', 1730, 25687, 2134, 34671, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26689, '2021-10-19', 1904, 25688, 2134, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26690, '2021-10-19', 1687, 25689, 2134, NULL, '1.0000', '15.3580', '15.3580', '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 (26691, '2021-10-19', 1651, 25690, 2134, 38071, '1.0000', '6.7649', '6.7649', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26692, '2021-10-19', 9475, 25691, 2134, 32212, '1.0000', '24.0000', '24.0000', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26693, '2021-10-19', 1863, 25692, 2134, 37574, '3.0000', '1.1335', '1.1335', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26694, '2021-10-19', 2327, 25693, 2134, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26695, '2021-10-19', 7391, 25694, 2135, NULL, '1.0000', '-144.1150', '-144.1150', '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 (26696, '2021-10-19', 1809, 25695, 2135, 18438, '1.0000', '9.1873', '9.1873', '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 (26697, '2021-10-19', 1543, 25696, 2135, 36375, '1.0000', '45.1313', '45.1313', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26698, '2021-10-19', 2022, 25697, 2135, 32036, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26699, '2021-10-19', 1863, 25698, 2135, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26700, '2021-10-19', 1730, 25699, 2135, 34671, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26701, '2021-10-19', 1904, 25700, 2135, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26702, '2021-10-19', 1687, 25701, 2135, NULL, '1.0000', '15.3580', '15.3580', '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 (26703, '2021-10-19', 1651, 25702, 2135, 38071, '1.0000', '6.7649', '6.7649', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26704, '2021-10-19', 9475, 25703, 2135, 32212, '1.0000', '24.0000', '24.0000', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26705, '2021-10-19', 1863, 25704, 2135, 37574, '3.0000', '1.1335', '1.1335', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26706, '2021-10-19', 2327, 25705, 2135, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26707, '2021-10-19', 1501, 25706, 2136, 38165, '1.0000', '-44.9231', '-44.9231', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26708, '2021-10-19', 7933, 25707, 2136, NULL, '1.0000', '5.5000', '5.5000', '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 (26709, '2021-10-19', 7473, 25708, 2136, NULL, '4.0000', '13.0822', '13.0822', '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 (26710, '2021-10-19', 8177, 25709, 2136, 32150, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26711, '2021-10-19', 2442, 25710, 2136, 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 (26712, '2021-10-19', 8407, 25711, 2136, NULL, '1.0000', '2.9800', '2.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 (26713, '2021-10-19', 8547, 25712, 2136, NULL, '1.0000', '16.5000', '16.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 (26714, '2021-10-19', 8203, 25713, 2136, 38167, '2.0000', '-29.3667', '-29.3667', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26715, '2021-10-19', 8116, 25714, 2136, NULL, '1.0000', '57.5000', '57.5000', '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 (26716, '2021-10-19', 7586, 25715, 2136, 38180, '1.0000', '4.1700', '4.1700', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26717, '2021-10-19', 7628, 25716, 2136, NULL, '11.0000', '2.9100', '2.9100', '4.0000', '4.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 (26718, '2021-10-19', 8140, 25717, 2136, NULL, '1.0000', '6.0500', '6.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 (26719, '2021-10-19', 2699, 25718, 2136, 32805, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26720, '2021-10-19', 2699, 25718, 2136, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26721, '2021-10-19', 1760, 25719, 2136, 37408, '10.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26722, '2021-10-19', 1854, 25720, 2136, 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 (26723, '2021-10-19', 8613, 25721, 2136, NULL, '3.0000', '4.0000', '4.0000', '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 (26724, '2021-10-19', 9499, 25722, 2136, 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 (26725, '2021-10-19', 7899, 25723, 2136, NULL, '2.0000', '0.7800', '0.7800', '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 (26726, '2021-10-19', 7323, 25724, 2136, 37386, '1.0000', '7.9800', '7.9800', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26727, '2021-10-19', 1846, 25725, 2136, 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 (26728, '2021-10-19', 8425, 25726, 2136, NULL, '1.0000', '30.0000', '30.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 (26729, '2021-10-19', 7703, 25727, 2136, NULL, '1.0000', '22.9900', '22.9900', '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 (26730, '2021-10-19', 9092, 25728, 2136, 38367, '4.0000', '0.7972', '0.7972', '0.5000', '0.5000', '346.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26731, '2021-10-19', 2315, 25729, 2136, NULL, '1.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26732, '2021-10-19', 9299, 25730, 2136, NULL, '1.0000', '9.5000', '9.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 (26733, '2021-10-19', 7612, 25731, 2136, 38166, '1.0000', '-839.4000', '-839.4000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26734, '2021-10-19', 8485, 25732, 2136, NULL, '1.0000', '7.0400', '7.0400', '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 (26735, '2021-10-19', 7429, 25733, 2136, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26736, '2021-10-19', 2506, 25734, 2136, 38356, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26737, '2021-10-19', 7318, 25735, 2136, 37431, '1.0000', '11.1265', '11.1265', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26738, '2021-10-19', 7897, 25736, 2136, NULL, '1.0000', '3.0000', '3.0000', '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 (26739, '2021-10-19', 7411, 25737, 2136, NULL, '1.0000', '1.3500', '1.3500', '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 (26740, '2021-10-19', 7444, 25738, 2136, 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 (26741, '2021-10-19', 8387, 25739, 2136, NULL, '1.0000', '3.0000', '3.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 (26742, '2021-10-19', 9393, 25740, 2136, NULL, '1.0000', '15.0000', '15.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 (26743, '2021-10-19', 2315, 25741, 2136, NULL, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26744, '2021-10-19', 2673, 25742, 2136, 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 (26745, '2021-10-19', 8852, 25743, 2136, NULL, '10.0000', '15.6000', '15.6000', '0.7000', '0.7000', '-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 (26746, '2021-10-19', 7472, 25744, 2136, NULL, '1.0000', '4.1000', '4.1000', '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 (26747, '2021-10-19', 7316, 25745, 2136, 30165, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '20.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26748, '2021-10-19', 7744, 25746, 2136, 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 (26749, '2021-10-19', 8052, 25747, 2136, 36062, '1.0000', '26.0786', '26.0786', '42.0000', '42.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26750, '2021-10-19', 9266, 25748, 2136, 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 (26751, '2021-10-19', 8735, 25749, 2136, NULL, '1.0000', '5.6000', '5.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 (26752, '2021-10-19', 7753, 25750, 2136, NULL, '1.0000', '2.6673', '2.6673', '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 (26753, '2021-10-19', 8810, 25751, 2136, NULL, '1.0000', '1.9200', '1.9200', '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 (26754, '2021-10-19', 7758, 25752, 2136, NULL, '1.0000', '10.8500', '10.8500', '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 (26755, '2021-10-19', 7518, 25753, 2136, NULL, '1.0000', '-32.3379', '-32.3379', '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 (26756, '2021-10-19', 9265, 25754, 2136, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26757, '2021-10-19', 8187, 25755, 2136, NULL, '3.0000', '14.3900', '14.3900', '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 (26758, '2021-10-19', 7871, 25756, 2136, NULL, '18.0000', '6.0000', '6.0000', '6.0000', '6.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 (26759, '2021-10-19', 7867, 25757, 2136, NULL, '2.0000', '2.7700', '2.7700', '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 (26760, '2021-10-19', 7674, 25758, 2136, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '199.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26761, '2021-10-19', 7713, 25759, 2136, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26762, '2021-10-19', 7612, 25760, 2136, 38166, '2.0000', '-839.4000', '-839.4000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26763, '2021-10-19', 7411, 25761, 2136, NULL, '1.0000', '1.3500', '1.3500', '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 (26764, '2021-10-19', 8000, 25762, 2136, NULL, '1.0000', '41.2918', '41.2918', '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 (26765, '2021-10-19', 7658, 25763, 2136, NULL, '10.0000', '10.1500', '10.1500', '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 (26766, '2021-10-19', 7473, 25764, 2136, NULL, '3.0000', '13.0822', '13.0822', '0.6000', '0.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 (26767, '2021-10-19', 9272, 25765, 2136, NULL, '1.0000', '3.1000', '3.1000', '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 (26768, '2021-10-19', 7674, 25766, 2136, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '199.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26769, '2021-10-19', 7457, 25767, 2136, 37428, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26770, '2021-10-19', 7671, 25768, 2136, NULL, '1.0000', '15.5000', '15.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 (26771, '2021-10-19', 7672, 25769, 2136, NULL, '1.0000', '1.0200', '1.0200', '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 (26772, '2021-10-19', 7708, 25770, 2136, NULL, '1.0000', '6.1400', '6.1400', '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 (26773, '2021-10-19', 8735, 25771, 2136, NULL, '1.0000', '5.6000', '5.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 (26774, '2021-10-19', 7673, 25772, 2136, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26775, '2021-10-19', 7530, 25773, 2136, NULL, '1.0000', '5.7200', '5.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 (26776, '2021-10-19', 7558, 25774, 2136, 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 (26777, '2021-10-19', 7533, 25775, 2137, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26778, '2021-10-19', 9502, 25776, 2138, NULL, '1.0000', '10.0500', '10.0500', '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 (26779, '2021-10-19', 7482, 25777, 2138, 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 (26780, '2021-10-19', 8677, 25778, 2138, NULL, '1.0000', '7.8000', '7.8000', '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 (26781, '2021-10-19', 1888, 25779, 2138, 37751, '1.0000', '194.0075', '194.0075', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26782, '2021-10-19', 7628, 25780, 2138, NULL, '5.0000', '2.9100', '2.9100', '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 (26783, '2021-10-19', 2371, 25781, 2138, NULL, '1.0000', '12.0000', '12.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 (26784, '2021-10-19', 2302, 25782, 2138, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26785, '2021-10-19', 1386, 25783, 2138, 37975, '1.0000', '-1.9773', '-1.9773', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26786, '2021-10-19', 1590, 25784, 2138, 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 (26787, '2021-10-19', 2951, 25785, 2138, 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 (26788, '2021-10-19', 2169, 25786, 2138, NULL, '1.0000', '1.1500', '1.1500', '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 (26789, '2021-10-19', 1381, 25787, 2138, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26790, '2021-10-19', 1672, 25788, 2138, NULL, '10.0000', '24.6900', '24.6900', '4.0000', '4.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 (26791, '2021-10-19', 1837, 25789, 2138, 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 (26792, '2021-10-19', 1787, 25790, 2138, NULL, '2.0000', '0.8100', '0.8100', '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 (26793, '2021-10-19', 2699, 25791, 2138, 34663, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26794, '2021-10-19', 8984, 25792, 2138, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26795, '2021-10-19', 1501, 25793, 2138, NULL, '1.0000', '2.2100', '2.2100', '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 (26796, '2021-10-19', 3016, 25794, 2138, NULL, '1.0000', '14.5200', '14.5200', '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 (26797, '2021-10-19', 2635, 25795, 2138, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26798, '2021-10-19', 1339, 25796, 2138, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26799, '2021-10-19', 2293, 25797, 2138, NULL, '2.0000', '1.4400', '1.4400', '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 (26800, '2021-10-19', 2951, 25798, 2138, 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 (26801, '2021-10-19', 2728, 25799, 2138, 19354, '3.0000', '0.8000', '0.8000', '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 (26802, '2021-10-19', 2169, 25800, 2138, NULL, '1.0000', '1.1500', '1.1500', '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 (26803, '2021-10-19', 7980, 25801, 2138, NULL, '3.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (26804, '2021-10-19', 2169, 25802, 2138, NULL, '2.0000', '1.1500', '1.1500', '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 (26805, '2021-10-19', 1499, 25803, 2138, NULL, '2.0000', '0.4835', '0.4835', '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 (26806, '2021-10-19', 1807, 25804, 2138, NULL, '6.0000', '41.5000', '41.5000', '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 (26807, '2021-10-19', 1692, 25805, 2138, NULL, '1.0000', '9.6500', '9.6500', '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 (26808, '2021-10-19', 8984, 25806, 2138, 37732, '2.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26809, '2021-10-19', 1665, 25807, 2138, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26810, '2021-10-19', 2543, 25808, 2138, 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 (26811, '2021-10-19', 7456, 25809, 2138, NULL, '1.0000', '1.3800', '1.3800', '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 (26812, '2021-10-19', 7585, 25810, 2138, NULL, '1.0000', '3.9600', '3.9600', '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 (26813, '2021-10-19', 7482, 25811, 2138, 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 (26814, '2021-10-19', 1590, 25812, 2138, 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 (26815, '2021-10-19', 2660, 25813, 2138, 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 (26816, '2021-10-19', 1523, 25814, 2138, NULL, '1.0000', '1.0061', '1.0061', '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 (26817, '2021-10-19', 7877, 25815, 2138, NULL, '1.0000', '1.3600', '1.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 (26818, '2021-10-19', 1541, 25816, 2138, 23697, '1.0000', '18.7200', '18.7200', '25.0000', '25.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 (26819, '2021-10-19', 1687, 25817, 2138, 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 (26820, '2021-10-19', 1692, 25818, 2138, NULL, '1.0000', '9.6500', '9.6500', '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 (26821, '2021-10-19', 9431, 25819, 2138, 30477, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26822, '2021-10-19', 1519, 25820, 2138, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26823, '2021-10-19', 8807, 25821, 2138, NULL, '1.0000', '3.4200', '3.4200', '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 (26824, '2021-10-19', 7779, 25822, 2138, NULL, '1.0000', '0.6200', '0.6200', '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 (26825, '2021-10-19', 1876, 25823, 2138, 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 (26826, '2021-10-19', 1381, 25824, 2138, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26827, '2021-10-19', 2975, 25825, 2138, 22402, '1.0000', '6.0000', '6.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 (26828, '2021-10-19', 2574, 25826, 2138, 19819, '2.0000', '0.7800', '0.7800', '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 (26829, '2021-10-19', 2660, 25827, 2138, 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 (26830, '2021-10-19', 2004, 25828, 2138, 33374, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26831, '2021-10-19', 7635, 25829, 2138, NULL, '1.0000', '6.6300', '6.6300', '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 (26832, '2021-10-19', 2003, 25830, 2138, 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 (26833, '2021-10-19', 1863, 25831, 2138, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26834, '2021-10-19', 7564, 25832, 2138, 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 (26835, '2021-10-19', 2713, 25833, 2138, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26836, '2021-10-19', 2825, 25834, 2138, NULL, '1.0000', '12.0000', '12.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 (26837, '2021-10-19', 2277, 25835, 2138, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26838, '2021-10-19', 1307, 25836, 2138, 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 (26839, '2021-10-19', 7848, 25837, 2139, NULL, '1.0000', '1.3500', '1.3500', '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 (26840, '2021-10-19', 7743, 25838, 2139, NULL, '1.0000', '7.3900', '7.3900', '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 (26841, '2021-10-19', 7641, 25839, 2139, NULL, '1.0000', '6.5038', '6.5038', '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 (26842, '2021-10-19', 2699, 25840, 2139, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26843, '2021-10-19', 9092, 25841, 2139, 38367, '1.0000', '0.7972', '0.7972', '0.5000', '0.5000', '345.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26844, '2021-10-19', 2416, 25842, 2140, 4827, '1.0000', '1.2000', '1.2000', '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 (26845, '2021-10-19', 7620, 25843, 2140, NULL, '1.0000', '9.3100', '9.3100', '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 (26846, '2021-10-19', 2546, 25844, 2140, 17849, '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 (26847, '2021-10-19', 7639, 25845, 2140, 32060, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26848, '2021-10-19', 2712, 25846, 2140, 35941, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26849, '2021-10-19', 7857, 25847, 2140, 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 (26850, '2021-10-19', 1871, 25848, 2141, 37801, '1.0000', '2.9308', '2.9308', '3.0000', '3.0000', '58.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26851, '2021-10-19', 9413, 25849, 2141, 34036, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26852, '2021-10-19', 8135, 25850, 2141, NULL, '1.0000', '13.9000', '13.9000', '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 (26853, '2021-10-20', 9590, 25851, 2142, NULL, '3.0000', '0.0000', '0.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 (26854, '2021-10-20', 9502, 25852, 2142, NULL, '3.0000', '10.0500', '10.0500', '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 (26855, '2021-10-20', 9595, 25853, 2142, NULL, '3.0000', '1.7400', '1.7400', '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 (26856, '2021-10-20', 9572, 25854, 2142, 37446, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26857, '2021-10-20', 1518, 25855, 2142, 29651, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26858, '2021-10-20', 9592, 25856, 2142, 38526, '20.0000', '3.2000', '3.2000', '4.2000', '4.2000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26859, '2021-10-20', 9593, 25857, 2142, 38565, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26860, '2021-10-20', 1837, 25858, 2143, 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 (26861, '2021-10-20', 1837, 25859, 2143, 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 (26862, '2021-10-20', 1646, 25860, 2143, 37774, '1.0000', '4.5518', '4.5518', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26863, '2021-10-20', 7531, 25861, 2143, 37804, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26864, '2021-10-20', 7741, 25862, 2143, NULL, '1.0000', '1.2000', '1.2000', '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 (26865, '2021-10-20', 8075, 25863, 2143, NULL, '1.0000', '3.0000', '3.0000', '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 (26866, '2021-10-20', 1839, 25864, 2143, 37769, '1.0000', '6.0835', '6.0835', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26867, '2021-10-20', 2410, 25865, 2143, 38543, '1.0000', '4.3920', '4.3920', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26868, '2021-10-20', 2237, 25866, 2143, 34951, '2.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26869, '2021-10-20', 2287, 25867, 2143, 29630, '2.0000', '1.1700', '1.1700', '3.0000', '3.0000', '77.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26870, '2021-10-20', 2754, 25868, 2143, 18938, '2.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (26871, '2021-10-20', 1910, 25869, 2143, 23140, '2.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (26872, '2021-10-20', 2440, 25870, 2143, 23972, '1.0000', '5.2092', '5.2092', '7.5000', '7.5000', '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 (26873, '2021-10-20', 2315, 25871, 2143, NULL, '2.0000', '-6.8895', '-6.8895', '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 (26874, '2021-10-20', 9602, 25872, 2143, NULL, '1.0000', '1.0500', '1.0500', '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 (26875, '2021-10-20', 1781, 25873, 2143, 34602, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26876, '2021-10-20', 1841, 25874, 2143, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26877, '2021-10-20', 1381, 25875, 2143, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26878, '2021-10-20', 1863, 25876, 2143, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26879, '2021-10-20', 2315, 25877, 2143, NULL, '2.0000', '-6.8895', '-6.8895', '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 (26880, '2021-10-20', 8746, 25878, 2143, NULL, '2.0000', '3.8000', '3.8000', '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 (26881, '2021-10-20', 7411, 25879, 2143, NULL, '1.0000', '1.3500', '1.3500', '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 (26882, '2021-10-20', 1912, 25880, 2143, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26883, '2021-10-20', 1687, 25881, 2144, 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 (26884, '2021-10-20', 2169, 25882, 2144, NULL, '1.0000', '1.1500', '1.1500', '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 (26885, '2021-10-20', 1398, 25883, 2144, 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 (26886, '2021-10-20', 1945, 25884, 2144, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '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 (26887, '2021-10-20', 7980, 25885, 2144, NULL, '4.0000', '17.4500', '17.4500', '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 (26888, '2021-10-20', 1947, 25886, 2145, 33339, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26889, '2021-10-20', 8208, 25887, 2145, NULL, '2.0000', '33.0000', '33.0000', '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 (26890, '2021-10-20', 7591, 25888, 2145, NULL, '1.0000', '2.7500', '2.7500', '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 (26891, '2021-10-20', 2758, 25889, 2145, 34623, '1.0000', '5.4000', '5.4000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26892, '2021-10-20', 1855, 25890, 2146, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '14.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 (26893, '2021-10-20', 2169, 25891, 2146, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (26894, '2021-10-20', 2008, 25892, 2146, 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 (26895, '2021-10-20', 1338, 25893, 2146, 16502, '-4.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 (26896, '2021-10-20', 1338, 25893, 2146, NULL, '5.0000', '4.0000', '4.0000', '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 (26897, '2021-10-20', 2366, 25894, 2146, 3833, '-9.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 (26898, '2021-10-20', 2366, 25894, 2146, NULL, '11.0000', '3.7500', '3.7500', '6.0000', '6.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 (26899, '2021-10-20', 1641, 25895, 2146, 3214, '-60.0000', '0.9800', '0.9800', '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 (26900, '2021-10-20', 1641, 25895, 2146, NULL, '70.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26901, '2021-10-20', 9195, 25896, 2146, NULL, '1.0000', '4.9800', '4.9800', '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 (26902, '2021-10-20', 2280, 25897, 2146, 33794, '2.0000', '3.0700', '3.0700', '4.5000', '4.5000', '45.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26903, '2021-10-20', 3041, 25898, 2146, 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 (26904, '2021-10-20', 1687, 25899, 2146, 5785, '-7.0000', '165.9024', '165.9024', '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 (26905, '2021-10-20', 1687, 25899, 2146, NULL, '8.0000', '165.9024', '165.9024', '16.0000', '16.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 (26906, '2021-10-20', 2710, 25900, 2146, NULL, '1.0000', '40.3000', '40.3000', '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 (26907, '2021-10-20', 7981, 25901, 2146, NULL, '10.0000', '6.0000', '6.0000', '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 (26908, '2021-10-20', 1863, 25902, 2146, 10808, '-52.0000', '0.4136', '0.4136', '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 (26909, '2021-10-20', 1863, 25902, 2146, NULL, '53.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (26910, '2021-10-20', 1401, 25903, 2146, 22311, '1.0000', '3.0000', '3.0000', '4.0000', '4.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 (26911, '2021-10-20', 2250, 25904, 2146, 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 (26912, '2021-10-20', 7658, 25905, 2147, NULL, '1.0000', '18.1404', '18.1404', '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 (26913, '2021-10-20', 9470, 25906, 2147, 32153, '1.0000', '9.6000', '9.6000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26914, '2021-10-20', 2699, 25907, 2147, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26915, '2021-10-20', 1856, 25908, 2147, 35231, '1.0000', '4.3888', '4.3888', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26916, '2021-10-20', 8721, 25909, 2147, NULL, '2.0000', '3.0000', '3.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 (26917, '2021-10-20', 9293, 25910, 2147, NULL, '1.0000', '28.5000', '28.5000', '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 (26918, '2021-10-20', 2643, 25911, 2147, 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 (26919, '2021-10-20', 8746, 25912, 2147, 32134, '1.0000', '3.8000', '3.8000', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26920, '2021-10-20', 7411, 25913, 2147, NULL, '1.0000', '1.3500', '1.3500', '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 (26921, '2021-10-20', 7713, 25914, 2147, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '45.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26922, '2021-10-20', 9092, 25915, 2147, 38367, '4.0000', '0.7972', '0.7972', '0.5000', '0.5000', '341.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26923, '2021-10-20', 9105, 25916, 2147, NULL, '2.0000', '0.5800', '0.5800', '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 (26924, '2021-10-20', 7848, 25917, 2147, NULL, '1.0000', '1.3500', '1.3500', '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 (26925, '2021-10-20', 1303, 25918, 2147, 33727, '3.0000', '1.3800', '1.3800', '4.0000', '4.0000', '112.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26926, '2021-10-20', 7743, 25919, 2147, NULL, '3.0000', '7.3900', '7.3900', '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 (26927, '2021-10-20', 9182, 25920, 2147, NULL, '1.0000', '10.0000', '10.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 (26928, '2021-10-20', 8743, 25921, 2147, NULL, '1.0000', '8.5000', '8.5000', '13.2000', '13.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 (26929, '2021-10-20', 7711, 25922, 2147, NULL, '1.0000', '0.3900', '0.3900', '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 (26930, '2021-10-20', 9474, 25923, 2147, 32207, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26931, '2021-10-20', 7848, 25924, 2147, NULL, '1.0000', '1.3500', '1.3500', '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 (26932, '2021-10-20', 2251, 25925, 2147, 35243, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26933, '2021-10-20', 7641, 25926, 2147, NULL, '1.0000', '6.5038', '6.5038', '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 (26934, '2021-10-20', 8000, 25927, 2147, NULL, '1.0000', '41.2918', '41.2918', '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 (26935, '2021-10-20', 1303, 25928, 2147, 33727, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '111.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26936, '2021-10-20', 7952, 25929, 2147, 38143, '1.0000', '10.4000', '10.4000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26937, '2021-10-20', 7913, 25930, 2147, NULL, '1.0000', '2.5500', '2.5500', '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 (26938, '2021-10-20', 7670, 25931, 2147, NULL, '1.0000', '1.4000', '1.4000', '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 (26939, '2021-10-20', 7380, 25932, 2147, NULL, '1.0000', '5.6200', '5.6200', '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 (26940, '2021-10-20', 8752, 25933, 2147, NULL, '2.0000', '4.2000', '4.2000', '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 (26941, '2021-10-20', 2102, 25934, 2147, 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 (26942, '2021-10-20', 8322, 25935, 2147, NULL, '1.0000', '3.2000', '3.2000', '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 (26943, '2021-10-20', 1616, 25936, 2148, 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 (26944, '2021-10-20', 2169, 25937, 2148, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26945, '2021-10-20', 2059, 25938, 2148, 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 (26946, '2021-10-20', 1543, 25939, 2148, 36375, '1.0000', '45.1313', '45.1313', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26947, '2021-10-20', 1904, 25940, 2148, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26948, '2021-10-20', 1368, 25941, 2148, NULL, '1.0000', '-163.5000', '-163.5000', '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 (26949, '2021-10-20', 2487, 25942, 2148, 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 (26950, '2021-10-20', 2840, 25943, 2148, 16993, '1.0000', '11.2000', '11.2000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26951, '2021-10-20', 2655, 25944, 2148, 34430, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26952, '2021-10-20', 2699, 25945, 2148, 34431, '3.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26953, '2021-10-20', 1350, 25946, 2148, 3389, '1.0000', '30.0000', '30.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 (26954, '2021-10-20', 1351, 25947, 2148, 3390, '1.0000', '35.0000', '35.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 (26955, '2021-10-20', 1478, 25948, 2148, 31970, '2.0000', '129.9208', '129.9208', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26956, '2021-10-20', 9471, 25949, 2148, 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 (26957, '2021-10-20', 1665, 25950, 2148, 38076, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26958, '2021-10-20', 1608, 25951, 2148, 11877, '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 (26959, '2021-10-20', 1602, 25952, 2148, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '48.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26960, '2021-10-20', 8065, 25953, 2148, NULL, '1.0000', '4.9800', '4.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 (26961, '2021-10-20', 8133, 25954, 2148, 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 (26962, '2021-10-20', 2557, 25955, 2148, 12741, '1.0000', '1.0000', '1.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 (26963, '2021-10-20', 2315, 25956, 2148, 3069, '1.0000', '0.3300', '0.3300', '0.6000', '0.6000', '223.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26964, '2021-10-20', 2777, 25957, 2148, 34673, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26965, '2021-10-20', 2522, 25958, 2148, 7523, '1.0000', '4.8000', '4.8000', '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 (26966, '2021-10-20', 2089, 25959, 2148, 33009, '1.0000', '7.0900', '7.0900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26967, '2021-10-20', 2557, 25960, 2148, 12741, '1.0000', '1.0000', '1.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 (26968, '2021-10-20', 1761, 25961, 2148, 34421, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26969, '2021-10-20', 2656, 25962, 2148, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26970, '2021-10-20', 8679, 25963, 2148, NULL, '1.0000', '28.0000', '28.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 (26971, '2021-10-20', 8756, 25964, 2148, 32593, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26972, '2021-10-20', 2169, 25965, 2148, 37575, '2.0000', '1.0517', '1.0517', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26973, '2021-10-20', 1537, 25966, 2148, 24348, '1.0000', '45.5701', '45.5701', '56.0000', '56.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 (26974, '2021-10-20', 2810, 25967, 2148, 37552, '10.0000', '2.2000', '2.2000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26975, '2021-10-20', 2546, 25968, 2148, 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 (26976, '2021-10-20', 2350, 25969, 2148, 36379, '1.0000', '11.3925', '11.3925', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26977, '2021-10-20', 2749, 25970, 2148, 32023, '1.0000', '20.5000', '20.5000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26978, '2021-10-20', 1612, 25971, 2148, 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 (26979, '2021-10-20', 2315, 25972, 2148, 3069, '1.0000', '0.3300', '0.3300', '0.6000', '0.6000', '223.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26980, '2021-10-20', 1608, 25973, 2148, 11877, '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 (26981, '2021-10-20', 7496, 25974, 2148, NULL, '1.0000', '0.9600', '0.9600', '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 (26982, '2021-10-20', 2327, 25975, 2148, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26983, '2021-10-20', 1863, 25976, 2148, 37574, '2.0000', '1.1335', '1.1335', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26984, '2021-10-20', 1425, 25977, 2148, 36343, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26985, '2021-10-20', 7550, 25978, 2148, NULL, '10.0000', '4.7300', '4.7300', '0.5000', '0.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 (26986, '2021-10-20', 1583, 25979, 2148, 9444, '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 (26987, '2021-10-20', 2521, 25980, 2148, 38247, '1.0000', '6.9430', '6.9430', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26988, '2021-10-20', 2871, 25981, 2148, 17896, '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 (26989, '2021-10-20', 8666, 25982, 2148, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26990, '2021-10-20', 1339, 25983, 2148, 13568, '1.0000', '1.5000', '1.5000', '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 (26991, '2021-10-20', 8181, 25984, 2148, NULL, '4.0000', '4.5000', '4.5000', '0.4000', '0.4000', '-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 (26992, '2021-10-20', 7814, 25985, 2148, NULL, '1.0000', '13.0000', '13.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 (26993, '2021-10-20', 1412, 25986, 2148, 18446, '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 (26994, '2021-10-20', 1592, 25987, 2148, 33000, '1.0000', '37.9490', '37.9490', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26995, '2021-10-20', 1665, 25988, 2148, 38076, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26996, '2021-10-20', 1945, 25989, 2148, 18071, '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 (26997, '2021-10-20', 1650, 25990, 2148, 38072, '1.0000', '15.2800', '15.2800', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26998, '2021-10-20', 8810, 25991, 2149, NULL, '1.0000', '1.9200', '1.9200', '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 (26999, '2021-10-20', 1321, 25992, 2149, NULL, '1.0000', '9.8000', '9.8000', '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 (27000, '2021-10-20', 7459, 25993, 2149, NULL, '10.0000', '40.3500', '40.3500', '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 (27001, '2021-10-20', 8161, 25994, 2149, 30172, '1.0000', '17.5473', '17.5473', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27002, '2021-10-20', 7680, 25995, 2149, NULL, '1.0000', '7.4000', '7.4000', '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 (27003, '2021-10-20', 8485, 25996, 2149, NULL, '1.0000', '7.0400', '7.0400', '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 (27004, '2021-10-20', 7711, 25997, 2149, NULL, '1.0000', '0.3900', '0.3900', '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 (27005, '2021-10-20', 7518, 25998, 2149, NULL, '1.0000', '-67.2578', '-67.2578', '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 (27006, '2021-10-20', 2350, 25999, 2149, NULL, '1.0000', '10.3800', '10.3800', '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 (27007, '2021-10-20', 7658, 26000, 2149, NULL, '1.0000', '18.1404', '18.1404', '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 (27008, '2021-10-20', 7606, 26001, 2149, 34532, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27009, '2021-10-20', 8744, 26002, 2149, 32142, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27010, '2021-10-20', 7959, 26003, 2149, NULL, '1.0000', '9.6000', '9.6000', '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 (27011, '2021-10-20', 2315, 26004, 2149, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '123.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27012, '2021-10-20', 2225, 26005, 2149, 38371, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27013, '2021-10-20', 7711, 26006, 2149, NULL, '2.0000', '0.3900', '0.3900', '47.0000', '47.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 (27014, '2021-10-20', 2315, 26007, 2149, 38451, '3.0000', '0.4740', '0.4740', '0.6000', '0.6000', '122.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27015, '2021-10-20', 8608, 26008, 2149, NULL, '1.0000', '5.7400', '5.7400', '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 (27016, '2021-10-20', 1947, 26009, 2149, 34542, '1.0000', '6615.3206', '6615.3206', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27017, '2021-10-20', 8193, 26010, 2149, NULL, '1.0000', '25.8000', '25.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 (27018, '2021-10-20', 8308, 26011, 2149, NULL, '1.0000', '11.0000', '11.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 (27019, '2021-10-20', 8714, 26012, 2149, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27020, '2021-10-20', 1641, 26013, 2149, 34514, '5.0000', '1.0100', '1.0100', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27021, '2021-10-20', 8308, 26014, 2149, NULL, '1.0000', '11.0000', '11.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 (27022, '2021-10-20', 8097, 26015, 2149, NULL, '2.0000', '3.3994', '3.3994', '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 (27023, '2021-10-20', 2506, 26016, 2149, 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 (27024, '2021-10-20', 8084, 26017, 2149, NULL, '1.0000', '11.7200', '11.7200', '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 (27025, '2021-10-20', 9092, 26018, 2149, 38367, '1.0000', '0.7972', '0.7972', '0.5000', '0.5000', '340.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27026, '2021-10-20', 7412, 26019, 2149, NULL, '1.0000', '1.5200', '1.5200', '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 (27027, '2021-10-20', 7379, 26020, 2149, NULL, '1.0000', '12.5100', '12.5100', '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 (27028, '2021-10-20', 7852, 26021, 2149, NULL, '1.0000', '6.1100', '6.1100', '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 (27029, '2021-10-20', 7514, 26022, 2149, NULL, '1.0000', '12.9983', '12.9983', '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 (27030, '2021-10-20', 7674, 26023, 2149, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '197.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27031, '2021-10-20', 7713, 26024, 2149, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '43.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27032, '2021-10-20', 1841, 26025, 2149, 33726, '9.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '140.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27033, '2021-10-20', 7780, 26026, 2149, NULL, '1.0000', '2.6000', '2.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 (27034, '2021-10-20', 7715, 26027, 2149, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27035, '2021-10-20', 7917, 26028, 2149, NULL, '1.0000', '5.0000', '5.0000', '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 (27036, '2021-10-20', 1845, 26029, 2149, 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 (27037, '2021-10-20', 7518, 26030, 2149, NULL, '1.0000', '-67.2578', '-67.2578', '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 (27038, '2021-10-20', 7585, 26031, 2149, NULL, '1.0000', '6.2000', '6.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 (27039, '2021-10-20', 7355, 26032, 2149, NULL, '1.0000', '11.6400', '11.6400', '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 (27040, '2021-10-20', 8941, 26033, 2149, NULL, '1.0000', '12.0000', '12.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 (27041, '2021-10-20', 7518, 26034, 2149, NULL, '1.0000', '-67.2578', '-67.2578', '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 (27042, '2021-10-20', 7680, 26035, 2149, NULL, '1.0000', '7.4000', '7.4000', '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 (27043, '2021-10-20', 7317, 26036, 2149, NULL, '1.0000', '29.3700', '29.3700', '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 (27044, '2021-10-20', 7674, 26037, 2149, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '197.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27045, '2021-10-20', 7899, 26038, 2149, NULL, '1.0000', '0.7800', '0.7800', '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 (27046, '2021-10-20', 7482, 26039, 2149, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27047, '2021-10-20', 7781, 26040, 2149, NULL, '3.0000', '4.2500', '4.2500', '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 (27048, '2021-10-20', 8497, 26041, 2149, NULL, '1.0000', '-133.2800', '-133.2800', '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 (27049, '2021-10-20', 7342, 26042, 2149, 38439, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27050, '2021-10-20', 7853, 26043, 2149, NULL, '1.0000', '35.0000', '35.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 (27051, '2021-10-20', 3014, 26044, 2149, NULL, '1.0000', '55.2200', '55.2200', '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 (27052, '2021-10-20', 7608, 26045, 2149, NULL, '1.0000', '6.9800', '6.9800', '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 (27053, '2021-10-20', 7886, 26046, 2149, NULL, '1.0000', '16.1667', '16.1667', '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 (27054, '2021-10-20', 7867, 26047, 2149, NULL, '2.0000', '2.7700', '2.7700', '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 (27055, '2021-10-20', 7822, 26048, 2149, NULL, '1.0000', '3.2000', '3.2000', '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 (27056, '2021-10-20', 7482, 26049, 2149, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27057, '2021-10-20', 7482, 26050, 2150, 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 (27058, '2021-10-20', 1649, 26051, 2150, 38535, '1.0000', '11.5000', '11.5000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27059, '2021-10-20', 8807, 26052, 2150, NULL, '1.0000', '3.4200', '3.4200', '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 (27060, '2021-10-20', 7980, 26053, 2150, NULL, '1.0000', '17.4500', '17.4500', '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 (27061, '2021-10-20', 7779, 26054, 2150, NULL, '1.0000', '0.6200', '0.6200', '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 (27062, '2021-10-20', 7411, 26055, 2150, NULL, '1.0000', '1.3500', '1.3500', '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 (27063, '2021-10-20', 1760, 26056, 2150, NULL, '2.0000', '1.5900', '1.5900', '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 (27064, '2021-10-20', 1854, 26057, 2150, 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 (27065, '2021-10-20', 7411, 26058, 2150, NULL, '1.0000', '1.3500', '1.3500', '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 (27066, '2021-10-20', 1935, 26059, 2150, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27067, '2021-10-20', 2286, 26060, 2150, NULL, '6.0000', '4.3000', '4.3000', '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 (27068, '2021-10-20', 1519, 26061, 2150, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27069, '2021-10-20', 2951, 26062, 2150, 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 (27070, '2021-10-20', 1602, 26063, 2150, 37781, '2.0000', '6.1514', '6.1514', '10.0000', '10.0000', '23.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27071, '2021-10-20', 1680, 26064, 2150, 30669, '1.0000', '5.0300', '5.0300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27072, '2021-10-20', 9461, 26065, 2150, NULL, '1.0000', '1.6000', '1.6000', '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 (27073, '2021-10-20', 1790, 26066, 2150, NULL, '1.0000', '90.0000', '90.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 (27074, '2021-10-20', 7821, 26067, 2150, NULL, '1.0000', '7.0000', '7.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 (27075, '2021-10-20', 2262, 26068, 2150, 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 (27076, '2021-10-20', 1564, 26069, 2150, 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 (27077, '2021-10-20', 2951, 26070, 2150, 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 (27078, '2021-10-20', 8677, 26071, 2150, NULL, '2.0000', '7.8000', '7.8000', '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 (27079, '2021-10-20', 8773, 26072, 2150, NULL, '2.0000', '2.5000', '2.5000', '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 (27080, '2021-10-20', 8746, 26073, 2150, NULL, '1.0000', '3.8000', '3.8000', '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 (27081, '2021-10-20', 9591, 26074, 2150, NULL, '1.0000', '3.0000', '3.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 (27082, '2021-10-20', 1884, 26075, 2150, 37803, '1.0000', '4.8050', '4.8050', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27083, '2021-10-20', 1381, 26076, 2150, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27084, '2021-10-20', 1519, 26077, 2150, 34967, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27085, '2021-10-20', 1935, 26078, 2150, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27086, '2021-10-20', 2240, 26079, 2150, 31113, '1.0000', '34.0000', '34.0000', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27087, '2021-10-20', 8164, 26080, 2150, NULL, '1.0000', '3.1200', '3.1200', '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 (27088, '2021-10-20', 9556, 26081, 2150, 38546, '1.0000', '0.5639', '0.5639', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27089, '2021-10-20', 1580, 26082, 2150, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27090, '2021-10-20', 1856, 26083, 2150, 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 (27091, '2021-10-20', 2289, 26084, 2150, 38551, '3.0000', '0.2831', '0.2831', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27092, '2021-10-20', 1841, 26085, 2150, 34025, '3.0000', '0.2601', '0.2601', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27093, '2021-10-20', 2286, 26086, 2150, 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 (27094, '2021-10-20', 1539, 26087, 2150, 19848, '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 (27095, '2021-10-20', 7638, 26088, 2150, 34927, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27096, '2021-10-20', 1665, 26089, 2150, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27097, '2021-10-20', 1628, 26090, 2150, NULL, '1.0000', '5.7900', '5.7900', '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 (27098, '2021-10-20', 1529, 26091, 2150, NULL, '1.0000', '3.4695', '3.4695', '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 (27099, '2021-10-20', 1686, 26092, 2150, 34629, '1.0000', '29.0000', '29.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27100, '2021-10-20', 1670, 26093, 2150, 33357, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27101, '2021-10-20', 8638, 26094, 2150, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27102, '2021-10-20', 8276, 26095, 2150, NULL, '1.0000', '11.8200', '11.8200', '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 (27103, '2021-10-20', 2435, 26096, 2150, 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 (27104, '2021-10-20', 1854, 26097, 2150, 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 (27105, '2021-10-20', 2169, 26098, 2150, NULL, '2.0000', '1.1500', '1.1500', '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 (27106, '2021-10-20', 1746, 26099, 2150, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (27107, '2021-10-20', 1523, 26100, 2150, NULL, '1.0000', '1.0061', '1.0061', '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 (27108, '2021-10-20', 2248, 26101, 2150, 38530, '1.0000', '3.0734', '3.0734', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27109, '2021-10-20', 2320, 26102, 2150, 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 (27110, '2021-10-20', 2951, 26103, 2150, 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 (27111, '2021-10-20', 1863, 26104, 2150, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27112, '2021-10-20', 1935, 26105, 2150, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27113, '2021-10-20', 2237, 26106, 2150, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27114, '2021-10-20', 1871, 26107, 2150, 37801, '1.0000', '2.9308', '2.9308', '3.0000', '3.0000', '57.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27115, '2021-10-20', 7886, 26108, 2150, NULL, '1.0000', '14.5000', '14.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 (27116, '2021-10-20', 2697, 26109, 2150, 24877, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '3.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 (27117, '2021-10-20', 2320, 26110, 2150, 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 (27118, '2021-10-20', 1529, 26111, 2150, NULL, '1.0000', '3.4695', '3.4695', '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 (27119, '2021-10-20', 2486, 26112, 2150, 24874, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '7.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 (27120, '2021-10-20', 2415, 26113, 2150, 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 (27121, '2021-10-20', 1339, 26114, 2150, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27122, '2021-10-20', 8288, 26115, 2150, NULL, '5.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (27123, '2021-10-20', 7482, 26116, 2150, 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 (27124, '2021-10-20', 2379, 26117, 2150, NULL, '1.0000', '1.8000', '1.8000', '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 (27125, '2021-10-20', 1837, 26118, 2150, 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 (27126, '2021-10-20', 8333, 26119, 2150, NULL, '1.0000', '10.0000', '10.0000', '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 (27127, '2021-10-20', 2244, 26120, 2150, 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 (27128, '2021-10-20', 1340, 26121, 2151, 37577, '1.0000', '2.5835', '2.5835', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27129, '2021-10-20', 2248, 26122, 2151, NULL, '1.0000', '3.3357', '3.3357', '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 (27130, '2021-10-20', 7867, 26123, 2152, NULL, '1.0000', '2.7700', '2.7700', '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 (27131, '2021-10-20', 3058, 26124, 2152, 37807, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27132, '2021-10-20', 1942, 26125, 2153, 36376, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27133, '2021-10-20', 1703, 26126, 2154, 9059, '1.0000', '7.5900', '7.5900', '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 (27134, '2021-10-21', 9098, 26127, 2155, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27135, '2021-10-21', 1632, 26128, 2156, 3206, '-4.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 (27136, '2021-10-21', 1632, 26128, 2156, NULL, '5.0000', '19.5000', '19.5000', '25.0000', '25.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 (27137, '2021-10-21', 2280, 26129, 2156, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27138, '2021-10-21', 2961, 26130, 2156, 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 (27139, '2021-10-21', 1347, 26131, 2156, 3320, '6.0000', '3.4000', '3.4000', '4.5000', '4.5000', '8.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 (27140, '2021-10-21', 1787, 26132, 2156, 4905, '-6.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 (27141, '2021-10-21', 1787, 26132, 2156, NULL, '7.0000', '0.8100', '0.8100', '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 (27142, '2021-10-21', 1837, 26133, 2156, 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 (27143, '2021-10-21', 2618, 26134, 2156, 9836, '-13.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 (27144, '2021-10-21', 2618, 26134, 2156, NULL, '15.0000', '4.1000', '4.1000', '5.5000', '5.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 (27145, '2021-10-21', 2379, 26135, 2156, 4032, '-19.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 (27146, '2021-10-21', 2379, 26135, 2156, NULL, '20.0000', '1.5900', '1.5900', '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 (27147, '2021-10-21', 9084, 26136, 2156, NULL, '3.0000', '9.1000', '9.1000', '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 (27148, '2021-10-21', 2136, 26137, 2156, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '107.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 (27149, '2021-10-21', 2233, 26138, 2156, 2777, '-6.0000', '19.0200', '19.0200', '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 (27150, '2021-10-21', 2233, 26138, 2156, NULL, '7.0000', '19.0200', '19.0200', '29.0000', '29.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 (27151, '2021-10-21', 2712, 26139, 2156, 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 (27152, '2021-10-21', 1658, 26140, 2156, 3229, '-2.0000', '27.9300', '27.9300', '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 (27153, '2021-10-21', 1658, 26140, 2156, NULL, '3.0000', '27.9300', '27.9300', '35.5000', '35.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 (27154, '2021-10-21', 9544, 26141, 2156, NULL, '1.0000', '25.0000', '25.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 (27155, '2021-10-21', 2317, 26142, 2156, 3473, '2.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 (27156, '2021-10-21', 2912, 26143, 2156, 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 (27157, '2021-10-21', 9464, 26144, 2156, 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 (27158, '2021-10-21', 8166, 26145, 2157, NULL, '1.0000', '4.6000', '4.6000', '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 (27159, '2021-10-21', 7409, 26146, 2157, 30031, '2.0000', '1.3200', '1.3200', '10.0000', '10.0000', '42.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27160, '2021-10-21', 7672, 26147, 2157, NULL, '1.0000', '1.0200', '1.0200', '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 (27161, '2021-10-21', 7954, 26148, 2157, NULL, '2.0000', '21.0000', '21.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 (27162, '2021-10-21', 8539, 26149, 2157, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '49.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27163, '2021-10-21', 8247, 26150, 2157, NULL, '1.0000', '10.0000', '10.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 (27164, '2021-10-21', 9193, 26151, 2157, NULL, '2.0000', '6.8075', '6.8075', '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 (27165, '2021-10-21', 1340, 26152, 2157, 34540, '1.0000', '2.7422', '2.7422', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27166, '2021-10-21', 2643, 26153, 2157, 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 (27167, '2021-10-21', 7321, 26154, 2157, NULL, '1.0000', '7.9500', '7.9500', '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 (27168, '2021-10-21', 7335, 26155, 2157, NULL, '1.0000', '10.4000', '10.4000', '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 (27169, '2021-10-21', 7753, 26156, 2157, NULL, '1.0000', '3.9360', '3.9360', '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 (27170, '2021-10-21', 8744, 26157, 2157, 32142, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27171, '2021-10-21', 1532, 26158, 2157, 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 (27172, '2021-10-21', 7781, 26159, 2157, NULL, '2.0000', '4.2500', '4.2500', '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 (27173, '2021-10-21', 9092, 26160, 2157, 38367, '2.0000', '0.7972', '0.7972', '0.5000', '0.5000', '338.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27174, '2021-10-21', 9556, 26161, 2157, 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 (27175, '2021-10-21', 9214, 26162, 2157, NULL, '3.0000', '13.8924', '13.8924', '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 (27176, '2021-10-21', 2965, 26163, 2157, 32149, '2.0000', '4.6000', '4.6000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27177, '2021-10-21', 9457, 26164, 2157, 36080, '1.0000', '2.9800', '2.9800', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27178, '2021-10-21', 9089, 26165, 2157, 38391, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27179, '2021-10-21', 8746, 26166, 2157, 32134, '1.0000', '3.8000', '3.8000', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27180, '2021-10-21', 2167, 26167, 2157, 36090, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27181, '2021-10-21', 8506, 26168, 2157, NULL, '2.0000', '35.4000', '35.4000', '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 (27182, '2021-10-21', 7385, 26169, 2157, NULL, '2.0000', '933.1354', '933.1354', '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 (27183, '2021-10-21', 7932, 26170, 2157, NULL, '1.0000', '3.3000', '3.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 (27184, '2021-10-21', 9579, 26171, 2157, 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 (27185, '2021-10-21', 9177, 26172, 2157, NULL, '20.0000', '0.8000', '0.8000', '1.2000', '1.2000', '-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 (27186, '2021-10-21', 1837, 26173, 2157, 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 (27187, '2021-10-21', 2643, 26174, 2157, 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 (27188, '2021-10-21', 7507, 26175, 2157, NULL, '9.0000', '6.5000', '6.5000', '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 (27189, '2021-10-21', 1532, 26176, 2157, NULL, '12.0000', '90.0000', '90.0000', '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 (27190, '2021-10-21', 7482, 26177, 2157, 37385, '3.0000', '2.4981', '2.4981', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27191, '2021-10-21', 2277, 26178, 2157, NULL, '4.0000', '0.7800', '0.7800', '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 (27192, '2021-10-21', 8596, 26179, 2157, NULL, '1.0000', '17.0000', '17.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 (27193, '2021-10-21', 7544, 26180, 2157, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (27194, '2021-10-21', 1841, 26181, 2157, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '139.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27195, '2021-10-21', 2104, 26182, 2157, NULL, '2.0000', '0.2000', '0.2000', '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 (27196, '2021-10-21', 8362, 26183, 2157, NULL, '2.0000', '4.1000', '4.1000', '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 (27197, '2021-10-21', 1571, 26184, 2157, 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 (27198, '2021-10-21', 8275, 26185, 2157, 35206, '1.0000', '29.8500', '29.8500', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27199, '2021-10-21', 7857, 26186, 2157, 37427, '1.0000', '14.5620', '14.5620', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27200, '2021-10-21', 1590, 26187, 2157, 34520, '1.0000', '1.7100', '1.7100', '2.3000', '2.3000', '45.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27201, '2021-10-21', 7657, 26188, 2157, NULL, '2.0000', '5.4700', '5.4700', '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 (27202, '2021-10-21', 7674, 26189, 2157, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '195.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27203, '2021-10-21', 7608, 26190, 2158, NULL, '1.0000', '6.9800', '6.9800', '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 (27204, '2021-10-21', 2251, 26191, 2158, 2788, '-2.0000', '10.9700', '10.9700', '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 (27205, '2021-10-21', 2251, 26191, 2158, NULL, '3.0000', '10.9700', '10.9700', '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 (27206, '2021-10-21', 2169, 26192, 2158, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (27207, '2021-10-21', 1846, 26193, 2158, 12032, '-3.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 (27208, '2021-10-21', 1846, 26193, 2158, NULL, '4.0000', '12.0000', '12.0000', '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 (27209, '2021-10-21', 1533, 26194, 2158, 22263, '1.0000', '2.5917', '2.5917', '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 (27210, '2021-10-21', 1499, 26195, 2158, 20585, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '12.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 (27211, '2021-10-21', 1427, 26196, 2158, NULL, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27212, '2021-10-21', 1356, 26197, 2158, 252, '1.0000', '51.9800', '51.9800', '80.0000', '80.0000', '1.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 (27213, '2021-10-21', 1736, 26198, 2158, 1080, '2.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '9.0000', 1, 0, NULL, 17);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27214, '2021-10-21', 2169, 26199, 2159, NULL, '1.0000', '1.1500', '1.1500', '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 (27215, '2021-10-21', 8677, 26200, 2159, NULL, '2.0000', '89.9250', '89.9250', '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 (27216, '2021-10-21', 1935, 26201, 2159, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27217, '2021-10-21', 1602, 26202, 2159, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27218, '2021-10-21', 7819, 26203, 2159, NULL, '1.0000', '9.5000', '9.5000', '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 (27219, '2021-10-21', 2662, 26204, 2160, 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 (27220, '2021-10-21', 2951, 26205, 2160, 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 (27221, '2021-10-21', 1694, 26206, 2160, 34612, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27222, '2021-10-21', 2277, 26207, 2160, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27223, '2021-10-21', 2277, 26207, 2160, 33144, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27224, '2021-10-21', 1935, 26208, 2160, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27225, '2021-10-21', 7472, 26209, 2160, NULL, '1.0000', '4.1000', '4.1000', '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 (27226, '2021-10-21', 7609, 26210, 2160, NULL, '1.0000', '4.3300', '4.3300', '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 (27227, '2021-10-21', 2941, 26211, 2160, NULL, '1.0000', '2.6600', '2.6600', '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 (27228, '2021-10-21', 2907, 26212, 2160, 38527, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27229, '2021-10-21', 7411, 26213, 2160, NULL, '2.0000', '1.3500', '1.3500', '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 (27230, '2021-10-21', 7609, 26214, 2160, NULL, '1.0000', '4.3300', '4.3300', '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 (27231, '2021-10-21', 1912, 26215, 2160, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27232, '2021-10-21', 2169, 26216, 2160, NULL, '1.0000', '1.1500', '1.1500', '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 (27233, '2021-10-21', 1499, 26217, 2160, NULL, '1.0000', '0.4835', '0.4835', '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 (27234, '2021-10-21', 9591, 26218, 2160, NULL, '1.0000', '3.0000', '3.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 (27235, '2021-10-21', 2277, 26219, 2160, 34655, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27236, '2021-10-21', 1532, 26220, 2160, 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 (27237, '2021-10-21', 2237, 26221, 2160, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27238, '2021-10-21', 3058, 26222, 2160, 37807, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27239, '2021-10-21', 2233, 26223, 2160, 34013, '1.0000', '19.9766', '19.9766', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27240, '2021-10-21', 2965, 26224, 2160, NULL, '1.0000', '5.0000', '5.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 (27241, '2021-10-21', 2293, 26225, 2160, NULL, '1.0000', '1.4400', '1.4400', '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 (27242, '2021-10-21', 1665, 26226, 2160, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27243, '2021-10-21', 3001, 26227, 2160, 37759, '1.0000', '2.5621', '2.5621', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27244, '2021-10-21', 1580, 26228, 2160, 33362, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27245, '2021-10-21', 1574, 26229, 2160, 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 (27246, '2021-10-21', 1532, 26230, 2160, 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 (27247, '2021-10-21', 2506, 26231, 2160, 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 (27248, '2021-10-21', 1665, 26232, 2160, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27249, '2021-10-21', 1694, 26233, 2160, 34612, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27250, '2021-10-21', 1501, 26234, 2160, NULL, '1.0000', '2.2100', '2.2100', '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 (27251, '2021-10-21', 2169, 26235, 2160, NULL, '1.0000', '1.1500', '1.1500', '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 (27252, '2021-10-21', 1620, 26236, 2160, 38596, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27253, '2021-10-21', 1501, 26237, 2160, NULL, '1.0000', '2.2100', '2.2100', '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 (27254, '2021-10-21', 2315, 26238, 2160, NULL, '1.0000', '-6.8895', '-6.8895', '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 (27255, '2021-10-21', 1580, 26239, 2160, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27256, '2021-10-21', 1651, 26240, 2160, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27257, '2021-10-21', 1533, 26241, 2160, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27258, '2021-10-21', 2768, 26242, 2160, 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 (27259, '2021-10-21', 2543, 26243, 2160, 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 (27260, '2021-10-21', 2169, 26244, 2160, NULL, '2.0000', '1.1500', '1.1500', '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 (27261, '2021-10-21', 1399, 26245, 2160, 37960, '1.0000', '16.1094', '16.1094', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27262, '2021-10-21', 2327, 26246, 2161, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27263, '2021-10-21', 1411, 26247, 2161, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '14.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27264, '2021-10-21', 2915, 26248, 2161, 32872, '1.0000', '15.4500', '15.4500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27265, '2021-10-21', 1818, 26249, 2161, 33208, '1.0000', '18.8200', '18.8200', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27266, '2021-10-21', 1650, 26250, 2161, 38072, '1.0000', '15.2800', '15.2800', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27267, '2021-10-21', 2893, 26251, 2161, 18431, '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 (27268, '2021-10-21', 7444, 26252, 2161, 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 (27269, '2021-10-21', 2359, 26253, 2161, 36347, '2.0000', '109.7375', '109.7375', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27270, '2021-10-21', 2393, 26254, 2161, 17864, '1.0000', '-1.0985', '-1.0985', '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 (27271, '2021-10-21', 1603, 26255, 2161, 32883, '1.0000', '56.0200', '56.0200', '78.5000', '78.5000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27272, '2021-10-21', 2416, 26256, 2161, 4827, '1.0000', '1.2000', '1.2000', '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 (27273, '2021-10-21', 2660, 26257, 2161, 37560, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27274, '2021-10-21', 2384, 26258, 2161, 29813, '1.0000', '0.2683', '0.2683', '0.7000', '0.7000', '63.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27275, '2021-10-21', 2712, 26259, 2161, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27276, '2021-10-21', 2411, 26260, 2161, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '7.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 (27277, '2021-10-21', 1831, 26261, 2161, 37584, '2.0000', '2.8213', '2.8213', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27278, '2021-10-21', 1846, 26262, 2161, 31990, '1.0000', '31.0430', '31.0430', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27279, '2021-10-21', 1935, 26263, 2161, 31718, '3.0000', '7.9589', '7.9589', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27280, '2021-10-21', 7954, 26264, 2161, 33014, '1.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27281, '2021-10-21', 2327, 26265, 2161, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27282, '2021-10-21', 2858, 26266, 2161, 17780, '1.0000', '1.0000', '1.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 (27283, '2021-10-21', 1839, 26267, 2162, 37769, '1.0000', '6.0835', '6.0835', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27284, '2021-10-21', 1863, 26268, 2162, 37810, '2.0000', '1.2830', '1.2830', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27285, '2021-10-21', 2948, 26269, 2162, 24970, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '159.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 (27286, '2021-10-21', 2136, 26270, 2162, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27287, '2021-10-21', 8677, 26271, 2162, NULL, '1.0000', '89.9250', '89.9250', '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 (27288, '2021-10-21', 2295, 26272, 2162, NULL, '1.0000', '0.7000', '0.7000', '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 (27289, '2021-10-21', 9155, 26273, 2162, NULL, '1.0000', '13.5000', '13.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 (27290, '2021-10-21', 1590, 26274, 2162, 38592, '1.0000', '1.9878', '1.9878', '2.3000', '2.3000', '8.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27291, '2021-10-21', 2088, 26275, 2162, 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 (27292, '2021-10-21', 1574, 26276, 2162, 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 (27293, '2021-10-21', 1409, 26277, 2162, 37443, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27294, '2021-10-21', 2821, 26278, 2162, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27295, '2021-10-21', 8293, 26279, 2162, NULL, '1.0000', '24.7500', '24.7500', '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 (27296, '2021-10-21', 2136, 26280, 2162, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27297, '2021-10-21', 8714, 26281, 2162, NULL, '1.0000', '5.2100', '5.2100', '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 (27298, '2021-10-21', 2923, 26282, 2162, 34921, '1.0000', '11.1200', '11.1200', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27299, '2021-10-21', 2220, 26283, 2162, 24950, '1.0000', '5.9300', '5.9300', '8.0000', '8.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 (27300, '2021-10-21', 1602, 26284, 2162, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '21.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27301, '2021-10-21', 1328, 26285, 2162, 32533, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27302, '2021-10-21', 1371, 26286, 2162, 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 (27303, '2021-10-21', 8208, 26287, 2162, NULL, '2.0000', '33.0000', '33.0000', '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 (27304, '2021-10-21', 2237, 26288, 2162, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27305, '2021-10-21', 1338, 26289, 2162, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27306, '2021-10-21', 2221, 26290, 2162, 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 (27307, '2021-10-21', 1839, 26291, 2162, 37769, '1.0000', '6.0835', '6.0835', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27308, '2021-10-21', 2220, 26292, 2162, 24950, '1.0000', '5.9300', '5.9300', '8.0000', '8.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 (27309, '2021-10-21', 7981, 26293, 2162, NULL, '10.0000', '6.0000', '6.0000', '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 (27310, '2021-10-21', 2088, 26294, 2162, 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 (27311, '2021-10-21', 1524, 26295, 2162, 24138, '1.0000', '4.4000', '4.4000', '7.0000', '7.0000', '48.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 (27312, '2021-10-21', 9470, 26296, 2162, NULL, '1.0000', '9.6000', '9.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 (27313, '2021-10-21', 7707, 26297, 2162, NULL, '1.0000', '7.0000', '7.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 (27314, '2021-10-21', 7318, 26298, 2162, NULL, '1.0000', '13.4400', '13.4400', '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 (27315, '2021-10-21', 8596, 26299, 2163, NULL, '1.0000', '17.0000', '17.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 (27316, '2021-10-21', 1846, 26300, 2163, 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 (27317, '2021-10-21', 7780, 26301, 2163, NULL, '1.0000', '2.6000', '2.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 (27318, '2021-10-21', 8941, 26302, 2163, NULL, '1.0000', '12.0000', '12.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 (27319, '2021-10-21', 9092, 26303, 2163, 38367, '2.0000', '0.7972', '0.7972', '0.5000', '0.5000', '336.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27320, '2021-10-21', 7819, 26304, 2163, NULL, '1.0000', '9.5000', '9.5000', '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 (27321, '2021-10-21', 7518, 26305, 2163, NULL, '1.0000', '-67.2578', '-67.2578', '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 (27322, '2021-10-21', 1708, 26306, 2163, 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 (27323, '2021-10-21', 7333, 26307, 2163, NULL, '5.0000', '13.5000', '13.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 (27324, '2021-10-21', 9274, 26308, 2163, NULL, '1.0000', '3.1000', '3.1000', '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 (27325, '2021-10-21', 8455, 26309, 2163, NULL, '1.0000', '4.5000', '4.5000', '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 (27326, '2021-10-21', 7609, 26310, 2163, NULL, '1.0000', '4.3300', '4.3300', '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 (27327, '2021-10-21', 8335, 26311, 2163, NULL, '1.0000', '21.7000', '21.7000', '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 (27328, '2021-10-21', 2635, 26312, 2163, 32793, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27329, '2021-10-21', 7685, 26313, 2163, NULL, '1.0000', '31.2000', '31.2000', '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 (27330, '2021-10-21', 7762, 26314, 2163, NULL, '1.0000', '5.1000', '5.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 (27331, '2021-10-21', 8746, 26315, 2163, 32134, '1.0000', '3.8000', '3.8000', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27332, '2021-10-21', 9337, 26316, 2163, 36077, '2.0000', '6.8067', '6.8067', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27333, '2021-10-21', 7442, 26317, 2163, 30054, '1.0000', '2.9500', '2.9500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27334, '2021-10-21', 7642, 26318, 2163, 38452, '1.0000', '34.9900', '34.9900', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27335, '2021-10-21', 7641, 26319, 2163, NULL, '1.0000', '6.5038', '6.5038', '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 (27336, '2021-10-21', 8166, 26320, 2163, NULL, '3.0000', '4.6000', '4.6000', '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 (27337, '2021-10-21', 2655, 26321, 2163, 36675, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27338, '2021-10-21', 2107, 26322, 2163, NULL, '1.0000', '0.2500', '0.2500', '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 (27339, '2021-10-21', 7524, 26323, 2163, NULL, '1.0000', '11.9500', '11.9500', '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 (27340, '2021-10-21', 2656, 26324, 2163, 32804, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27341, '2021-10-21', 9092, 26325, 2164, 38367, '2.0000', '0.7972', '0.7972', '0.5000', '0.5000', '334.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27342, '2021-10-21', 8518, 26326, 2165, NULL, '1.0000', '17.6400', '17.6400', '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 (27343, '2021-10-21', 2327, 26327, 2165, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.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 (27344, '2021-10-21', 9595, 26328, 2165, NULL, '1.0000', '1.7400', '1.7400', '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 (27345, '2021-10-21', 3064, 26329, 2165, 24872, '4.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.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 (27346, '2021-10-21', 2317, 26330, 2165, 24868, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '20.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 (27347, '2021-10-21', 8518, 26331, 2165, NULL, '1.0000', '17.6400', '17.6400', '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 (27348, '2021-10-21', 2762, 26332, 2165, 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 (27349, '2021-10-21', 1884, 26333, 2165, NULL, '1.0000', '4.8050', '4.8050', '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 (27350, '2021-10-21', 2293, 26334, 2165, NULL, '1.0000', '1.4400', '1.4400', '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 (27351, '2021-10-21', 1580, 26335, 2165, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27352, '2021-10-21', 8677, 26336, 2165, NULL, '1.0000', '89.9250', '89.9250', '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 (27353, '2021-10-21', 2951, 26337, 2165, 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 (27354, '2021-10-21', 1935, 26338, 2165, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27355, '2021-10-21', 7411, 26339, 2165, NULL, '1.0000', '1.3500', '1.3500', '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 (27356, '2021-10-21', 2662, 26340, 2165, 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 (27357, '2021-10-21', 1863, 26341, 2165, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27358, '2021-10-21', 7411, 26342, 2165, NULL, '2.0000', '1.3500', '1.3500', '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 (27359, '2021-10-21', 2951, 26343, 2165, 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 (27360, '2021-10-21', 2275, 26344, 2165, 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 (27361, '2021-10-21', 2637, 26345, 2165, NULL, '1.0000', '10.0000', '10.0000', '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 (27362, '2021-10-22', 7989, 26346, 2166, NULL, '1.0000', '26.9800', '26.9800', '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 (27363, '2021-10-22', 3039, 26347, 2166, 23985, '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 (27364, '2021-10-22', 8101, 26348, 2166, NULL, '1.0000', '21.7000', '21.7000', '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 (27365, '2021-10-22', 1533, 26349, 2166, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27366, '2021-10-22', 8746, 26350, 2166, NULL, '2.0000', '3.8000', '3.8000', '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 (27367, '2021-10-22', 7550, 26351, 2166, NULL, '4.0000', '4.7300', '4.7300', '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 (27368, '2021-10-22', 1751, 26352, 2166, 19368, '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 (27369, '2021-10-22', 8208, 26353, 2166, NULL, '1.0000', '33.0000', '33.0000', '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 (27370, '2021-10-22', 2511, 26354, 2166, NULL, '1.0000', '8.8000', '8.8000', '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 (27371, '2021-10-22', 3001, 26355, 2166, 37759, '1.0000', '2.5621', '2.5621', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27372, '2021-10-22', 2282, 26356, 2166, 34579, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27373, '2021-10-22', 2400, 26357, 2166, 38562, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27374, '2021-10-22', 8608, 26358, 2166, NULL, '1.0000', '0.9000', '0.9000', '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 (27375, '2021-10-22', 7359, 26359, 2166, NULL, '1.0000', '20.0000', '20.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 (27376, '2021-10-22', 2567, 26360, 2166, 22515, '1.0000', '33.0000', '33.0000', '38.0000', '38.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 (27377, '2021-10-22', 7703, 26361, 2166, NULL, '2.0000', '22.9900', '22.9900', '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 (27378, '2021-10-22', 2965, 26362, 2166, NULL, '1.0000', '5.0000', '5.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 (27379, '2021-10-22', 2022, 26363, 2166, 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 (27380, '2021-10-22', 1805, 26364, 2166, NULL, '1.0000', '4.5244', '4.5244', '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 (27381, '2021-10-22', 1529, 26365, 2167, 38593, '1.0000', '3.7110', '3.7110', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27382, '2021-10-22', 1501, 26366, 2167, NULL, '1.0000', '2.2100', '2.2100', '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 (27383, '2021-10-22', 1691, 26367, 2168, 34591, '1.0000', '10.3300', '10.3300', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27384, '2021-10-22', 8746, 26368, 2169, NULL, '1.0000', '3.8000', '3.8000', '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 (27385, '2021-10-22', 8677, 26369, 2169, NULL, '2.0000', '89.9250', '89.9250', '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 (27386, '2021-10-22', 1533, 26370, 2169, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27387, '2021-10-22', 1670, 26371, 2170, 10163, '-3.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 (27388, '2021-10-22', 1670, 26371, 2170, NULL, '4.0000', '19.5000', '19.5000', '26.0000', '26.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 (27389, '2021-10-22', 1686, 26372, 2170, NULL, '1.0000', '26.6000', '26.6000', '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 (27390, '2021-10-22', 2105, 26373, 2170, 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 (27391, '2021-10-22', 9311, 26374, 2170, NULL, '1.0000', '6.6000', '6.6000', '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 (27392, '2021-10-22', 2948, 26375, 2170, NULL, '1.0000', '0.9000', '0.9000', '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 (27393, '2021-10-22', 2342, 26376, 2170, NULL, '4.0000', '1.8600', '1.8600', '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 (27394, '2021-10-22', 2876, 26377, 2170, 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 (27395, '2021-10-22', 2525, 26378, 2170, 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 (27396, '2021-10-22', 7741, 26379, 2170, NULL, '2.0000', '1.2000', '1.2000', '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 (27397, '2021-10-22', 2073, 26380, 2170, 22247, '5.0000', '2.3000', '2.3000', '3.0000', '3.0000', '14.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 (27398, '2021-10-22', 9174, 26381, 2170, NULL, '1.0000', '15.5000', '15.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 (27399, '2021-10-22', 2506, 26382, 2170, 18839, '1.0000', '3.4900', '3.4900', '5.0000', '5.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 (27400, '2021-10-22', 2660, 26383, 2170, 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 (27401, '2021-10-22', 1439, 26384, 2170, 4702, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '9.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 (27402, '2021-10-22', 1912, 26385, 2170, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (27403, '2021-10-22', 1687, 26386, 2170, 5785, '-8.0000', '165.9024', '165.9024', '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 (27404, '2021-10-22', 1687, 26386, 2170, NULL, '9.0000', '165.9024', '165.9024', '16.0000', '16.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 (27405, '2021-10-22', 2948, 26387, 2170, NULL, '1.0000', '0.9000', '0.9000', '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 (27406, '2021-10-22', 1812, 26388, 2171, 8224, '-15.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 (27407, '2021-10-22', 1812, 26388, 2171, NULL, '16.0000', '7.8900', '7.8900', '10.5000', '10.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 (27408, '2021-10-22', 2545, 26389, 2171, 6306, '-4.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 (27409, '2021-10-22', 2545, 26389, 2171, NULL, '5.0000', '5.8819', '5.8819', '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 (27410, '2021-10-22', 7579, 26390, 2171, NULL, '1.0000', '15.0000', '15.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 (27411, '2021-10-22', 8216, 26391, 2172, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27412, '2021-10-22', 9030, 26392, 2172, NULL, '1.0000', '30.0000', '30.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 (27413, '2021-10-22', 7411, 26393, 2172, NULL, '2.0000', '1.3500', '1.3500', '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 (27414, '2021-10-22', 7473, 26394, 2172, NULL, '4.0000', '15.4731', '15.4731', '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 (27415, '2021-10-22', 7639, 26395, 2172, NULL, '2.0000', '6.5000', '6.5000', '8.5000', '8.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 (27416, '2021-10-22', 9391, 26396, 2172, NULL, '3.0000', '3.0000', '3.0000', '18.0000', '18.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 (27417, '2021-10-22', 8166, 26397, 2172, NULL, '3.0000', '4.6000', '4.6000', '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 (27418, '2021-10-22', 7411, 26398, 2172, NULL, '2.0000', '1.3500', '1.3500', '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 (27419, '2021-10-22', 9401, 26399, 2172, NULL, '1.0000', '3.5000', '3.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 (27420, '2021-10-22', 7848, 26400, 2172, NULL, '1.0000', '1.3500', '1.3500', '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 (27421, '2021-10-22', 8941, 26401, 2172, NULL, '1.0000', '12.0000', '12.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 (27422, '2021-10-22', 7518, 26402, 2172, NULL, '1.0000', '-67.2578', '-67.2578', '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 (27423, '2021-10-22', 8858, 26403, 2172, NULL, '1.0000', '8.5000', '8.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 (27424, '2021-10-22', 1650, 26404, 2172, 33750, '1.0000', '14.7450', '14.7450', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27425, '2021-10-22', 7551, 26405, 2172, NULL, '3.0000', '1.2700', '1.2700', '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 (27426, '2021-10-22', 1384, 26406, 2172, 37388, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27427, '2021-10-22', 2324, 26407, 2172, 31659, '2.0000', '12.0000', '12.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27428, '2021-10-22', 2324, 26407, 2172, NULL, '1.0000', '12.0000', '12.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 (27429, '2021-10-22', 7554, 26408, 2172, NULL, '20.0000', '3.0308', '3.0308', '2.2000', '2.2000', '-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 (27430, '2021-10-22', 7658, 26409, 2172, NULL, '10.0000', '18.1404', '18.1404', '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 (27431, '2021-10-22', 7958, 26410, 2172, NULL, '1.0000', '13.0000', '13.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 (27432, '2021-10-22', 7641, 26411, 2172, NULL, '1.0000', '6.5038', '6.5038', '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 (27433, '2021-10-22', 7848, 26412, 2172, NULL, '1.0000', '1.3500', '1.3500', '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 (27434, '2021-10-22', 8858, 26413, 2172, NULL, '2.0000', '8.5000', '8.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 (27435, '2021-10-22', 8247, 26414, 2172, NULL, '2.0000', '10.0000', '10.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 (27436, '2021-10-22', 8084, 26415, 2172, NULL, '1.0000', '11.7200', '11.7200', '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 (27437, '2021-10-22', 1563, 26416, 2172, NULL, '1.0000', '4.9000', '4.9000', '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 (27438, '2021-10-22', 2243, 26417, 2172, 36059, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27439, '2021-10-22', 7385, 26418, 2172, 38611, '3.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '71.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27440, '2021-10-22', 1999, 26419, 2173, 6444, '2.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 (27441, '2021-10-22', 1775, 26420, 2173, 4815, '28.0000', '1.7000', '1.7000', '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 (27442, '2021-10-22', 2366, 26421, 2173, 13636, '2.0000', '3.7873', '3.7873', '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 (27443, '2021-10-22', 1533, 26422, 2173, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27444, '2021-10-22', 3029, 26423, 2173, NULL, '1.0000', '6.1916', '6.1916', '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 (27445, '2021-10-22', 7756, 26424, 2173, NULL, '1.0000', '2.5000', '2.5000', '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 (27446, '2021-10-22', 2943, 26425, 2173, NULL, '1.0000', '2.1800', '2.1800', '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 (27447, '2021-10-22', 2315, 26426, 2173, 3069, '3.0000', '0.3300', '0.3300', '0.6000', '0.6000', '219.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27448, '2021-10-22', 1863, 26427, 2173, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27449, '2021-10-22', 2100, 26428, 2173, 6012, '1.0000', '1.6500', '1.6500', '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 (27450, '2021-10-22', 2099, 26429, 2173, 6011, '1.0000', '2.8000', '2.8000', '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 (27451, '2021-10-22', 7909, 26430, 2173, NULL, '1.0000', '4.0000', '4.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 (27452, '2021-10-22', 1667, 26431, 2173, 37587, '1.0000', '76.8317', '76.8317', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27453, '2021-10-22', 2459, 26432, 2173, 24004, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.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 (27454, '2021-10-22', 2937, 26433, 2173, 23624, '1.0000', '5.3700', '5.3700', '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 (27455, '2021-10-22', 3029, 26434, 2173, NULL, '1.0000', '6.1916', '6.1916', '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 (27456, '2021-10-22', 2486, 26435, 2173, 21821, '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 (27457, '2021-10-22', 8594, 26436, 2173, 32594, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27458, '2021-10-22', 2614, 26437, 2173, 37568, '1.0000', '53.0905', '53.0905', '71.0000', '71.0000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27459, '2021-10-22', 2169, 26438, 2173, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27460, '2021-10-22', 7453, 26439, 2173, NULL, '1.0000', '28.5000', '28.5000', '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 (27461, '2021-10-22', 1650, 26440, 2173, 38072, '1.0000', '15.2800', '15.2800', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27462, '2021-10-22', 2169, 26441, 2173, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27463, '2021-10-22', 1621, 26442, 2173, 33211, '1.0000', '55.5718', '55.5718', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27464, '2021-10-22', 1812, 26443, 2173, 37578, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27465, '2021-10-22', 1855, 26444, 2173, 4986, '2.0000', '1.4000', '1.4000', '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 (27466, '2021-10-22', 8677, 26445, 2173, 32871, '1.0000', '-1.2995', '-1.2995', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27467, '2021-10-22', 8677, 26445, 2173, NULL, '1.0000', '-1.2995', '-1.2995', '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 (27468, '2021-10-22', 1501, 26446, 2173, 12680, '1.0000', '1566.1965', '1566.1965', '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 (27469, '2021-10-22', 7741, 26447, 2173, NULL, '1.0000', '1.2000', '1.2000', '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 (27470, '2021-10-22', 1540, 26448, 2173, 1545, '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 (27471, '2021-10-22', 1928, 26449, 2173, 33012, '1.0000', '55.2437', '55.2437', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27472, '2021-10-22', 2712, 26450, 2173, 35941, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27473, '2021-10-22', 2950, 26451, 2174, 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 (27474, '2021-10-22', 1602, 26452, 2174, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27475, '2021-10-22', 8677, 26453, 2174, NULL, '2.0000', '89.9250', '89.9250', '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 (27476, '2021-10-22', 1602, 26454, 2174, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27477, '2021-10-22', 1863, 26455, 2174, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27478, '2021-10-22', 2951, 26456, 2174, 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 (27479, '2021-10-22', 1839, 26457, 2174, 37769, '1.0000', '6.0835', '6.0835', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27480, '2021-10-22', 2167, 26458, 2174, 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 (27481, '2021-10-22', 9479, 26459, 2174, 32541, '1.0000', '3.0000', '3.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27482, '2021-10-22', 7411, 26460, 2174, NULL, '1.0000', '1.3500', '1.3500', '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 (27483, '2021-10-22', 2237, 26461, 2174, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27484, '2021-10-22', 1805, 26462, 2174, NULL, '1.0000', '4.5244', '4.5244', '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 (27485, '2021-10-22', 3058, 26463, 2174, 37807, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27486, '2021-10-22', 7702, 26464, 2174, NULL, '1.0000', '0.4600', '0.4600', '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 (27487, '2021-10-22', 1692, 26465, 2174, NULL, '1.0000', '9.6500', '9.6500', '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 (27488, '2021-10-22', 1571, 26466, 2174, 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 (27489, '2021-10-22', 2951, 26467, 2174, 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 (27490, '2021-10-22', 8448, 26468, 2174, NULL, '1.0000', '6.8900', '6.8900', '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 (27491, '2021-10-22', 1574, 26469, 2174, 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 (27492, '2021-10-22', 2749, 26470, 2174, 23133, '1.0000', '20.5000', '20.5000', '28.0000', '28.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 (27493, '2021-10-22', 1529, 26471, 2174, 38593, '1.0000', '3.7110', '3.7110', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27494, '2021-10-22', 1602, 26472, 2174, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27495, '2021-10-22', 8622, 26473, 2174, 37767, '1.0000', '12.3173', '12.3173', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27496, '2021-10-22', 7609, 26474, 2174, NULL, '1.0000', '4.3300', '4.3300', '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 (27497, '2021-10-22', 8677, 26475, 2174, NULL, '1.0000', '89.9250', '89.9250', '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 (27498, '2021-10-22', 1691, 26476, 2174, 34591, '1.0000', '10.3300', '10.3300', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27499, '2021-10-22', 1493, 26477, 2174, 37797, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27500, '2021-10-22', 2169, 26478, 2174, NULL, '1.0000', '1.1500', '1.1500', '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 (27501, '2021-10-22', 1670, 26479, 2174, 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 (27502, '2021-10-22', 1529, 26480, 2174, 38593, '1.0000', '3.7110', '3.7110', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27503, '2021-10-22', 1602, 26481, 2174, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27504, '2021-10-22', 2650, 26482, 2174, NULL, '1.0000', '7.9860', '7.9860', '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 (27505, '2021-10-22', 2135, 26483, 2174, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27506, '2021-10-22', 9563, 26484, 2174, 37738, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27507, '2021-10-22', 9160, 26485, 2175, NULL, '1.0000', '41.6640', '41.6640', '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 (27508, '2021-10-22', 7672, 26486, 2175, NULL, '1.0000', '1.0200', '1.0200', '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 (27509, '2021-10-22', 7776, 26487, 2175, NULL, '3.0000', '8.0000', '8.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 (27510, '2021-10-22', 7385, 26488, 2175, 38611, '5.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '66.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27511, '2021-10-22', 7411, 26489, 2175, NULL, '1.0000', '1.3500', '1.3500', '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 (27512, '2021-10-22', 9272, 26490, 2175, NULL, '1.0000', '3.1000', '3.1000', '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 (27513, '2021-10-22', 9021, 26491, 2175, NULL, '1.0000', '7.0000', '7.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 (27514, '2021-10-22', 9154, 26492, 2175, 37372, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27515, '2021-10-22', 7832, 26493, 2175, 36086, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27516, '2021-10-22', 7905, 26494, 2175, NULL, '1.0000', '0.7000', '0.7000', '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 (27517, '2021-10-22', 7473, 26495, 2175, NULL, '10.0000', '15.4731', '15.4731', '0.6000', '0.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 (27518, '2021-10-22', 7703, 26496, 2175, NULL, '2.0000', '22.9900', '22.9900', '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 (27519, '2021-10-22', 9098, 26497, 2175, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27520, '2021-10-22', 1501, 26498, 2175, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27521, '2021-10-22', 8915, 26499, 2175, NULL, '1.0000', '29.3500', '29.3500', '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 (27522, '2021-10-22', 9469, 26500, 2175, NULL, '1.0000', '2.3000', '2.3000', '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 (27523, '2021-10-22', 8418, 26501, 2175, 30185, '1.0000', '43.8200', '43.8200', '58.0000', '58.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27524, '2021-10-22', 9092, 26502, 2175, 38367, '3.0000', '0.7972', '0.7972', '0.5000', '0.5000', '331.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27525, '2021-10-22', 1947, 26503, 2175, 34542, '1.0000', '6615.3206', '6615.3206', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27526, '2021-10-22', 7411, 26504, 2175, NULL, '2.0000', '1.3500', '1.3500', '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 (27527, '2021-10-22', 8810, 26505, 2175, NULL, '2.0000', '1.9200', '1.9200', '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 (27528, '2021-10-22', 2877, 26506, 2175, 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 (27529, '2021-10-22', 7385, 26507, 2175, 38611, '4.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '67.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27530, '2021-10-22', 7507, 26508, 2175, NULL, '3.0000', '6.5000', '6.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 (27531, '2021-10-22', 7640, 26509, 2175, NULL, '1.0000', '5.8900', '5.8900', '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 (27532, '2021-10-22', 8702, 26510, 2175, NULL, '1.0000', '3.6700', '3.6700', '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 (27533, '2021-10-22', 7892, 26511, 2175, NULL, '1.0000', '4.2000', '4.2000', '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 (27534, '2021-10-22', 9275, 26512, 2175, NULL, '1.0000', '6.3000', '6.3000', '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 (27535, '2021-10-22', 7674, 26513, 2175, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '194.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27536, '2021-10-22', 8140, 26514, 2175, NULL, '1.0000', '6.0500', '6.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 (27537, '2021-10-22', 2289, 26515, 2175, NULL, '4.0000', '0.2300', '0.2300', '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 (27538, '2021-10-22', 1841, 26516, 2175, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '135.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27539, '2021-10-22', 7385, 26517, 2175, 38611, '4.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '67.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27540, '2021-10-22', 8309, 26518, 2175, 34526, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27541, '2021-10-22', 8395, 26519, 2175, NULL, '2.0000', '0.9700', '0.9700', '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 (27542, '2021-10-22', 7886, 26520, 2175, NULL, '1.0000', '16.1667', '16.1667', '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 (27543, '2021-10-22', 7671, 26521, 2175, NULL, '2.0000', '15.5000', '15.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 (27544, '2021-10-22', 9569, 26522, 2175, 37393, '1.0000', '145.5600', '145.5600', '192.0000', '192.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27545, '2021-10-22', 1841, 26523, 2175, 33726, '9.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '130.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27546, '2021-10-22', 7832, 26524, 2175, 36086, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27547, '2021-10-22', 2655, 26525, 2175, 36675, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27548, '2021-10-22', 9320, 26526, 2175, NULL, '1.0000', '9.2200', '9.2200', '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 (27549, '2021-10-22', 7551, 26527, 2175, NULL, '10.0000', '1.2700', '1.2700', '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 (27550, '2021-10-22', 7713, 26528, 2175, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '41.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27551, '2021-10-22', 7589, 26529, 2175, NULL, '1.0000', '1.7700', '1.7700', '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 (27552, '2021-10-22', 7446, 26530, 2175, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27553, '2021-10-22', 2289, 26531, 2175, NULL, '4.0000', '0.2300', '0.2300', '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 (27554, '2021-10-22', 1689, 26532, 2175, NULL, '1.0000', '12.3500', '12.3500', '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 (27555, '2021-10-22', 1659, 26533, 2175, NULL, '1.0000', '90.0000', '90.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 (27556, '2021-10-22', 2906, 26534, 2175, 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 (27557, '2021-10-22', 7980, 26535, 2175, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (27558, '2021-10-22', 7674, 26536, 2175, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '194.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27559, '2021-10-22', 7411, 26537, 2175, NULL, '1.0000', '1.3500', '1.3500', '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 (27560, '2021-10-22', 9092, 26538, 2175, 38367, '4.0000', '0.7972', '0.7972', '0.5000', '0.5000', '330.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27561, '2021-10-22', 2277, 26539, 2175, NULL, '3.0000', '0.7800', '0.7800', '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 (27562, '2021-10-22', 7799, 26540, 2175, NULL, '1.0000', '2.0000', '2.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 (27563, '2021-10-22', 2284, 26541, 2175, 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 (27564, '2021-10-22', 7321, 26542, 2175, 38610, '1.0000', '12.6000', '12.6000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27565, '2021-10-22', 7411, 26543, 2175, NULL, '1.0000', '1.3500', '1.3500', '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 (27566, '2021-10-22', 2057, 26544, 2175, 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 (27567, '2021-10-22', 7947, 26545, 2175, NULL, '2.0000', '14.4400', '14.4400', '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 (27568, '2021-10-22', 7385, 26546, 2175, 38611, '3.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '68.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27569, '2021-10-22', 7720, 26547, 2175, 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 (27570, '2021-10-22', 1649, 26549, 2176, 38066, '1.0000', '12.3713', '12.3713', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27571, '2021-10-22', 1447, 26550, 2176, 5626, '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 (27572, '2021-10-22', 1580, 26551, 2176, 9446, '1.0000', '0.9900', '0.9900', '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 (27573, '2021-10-22', 8677, 26552, 2176, NULL, '1.0000', '-1.2995', '-1.2995', '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 (27574, '2021-10-22', 9590, 26553, 2176, NULL, '2.0000', '0.0000', '0.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 (27575, '2021-10-22', 7532, 26554, 2176, 34677, '1.0000', '20.6000', '20.6000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27576, '2021-10-22', 1519, 26555, 2176, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.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 (27577, '2021-10-22', 1608, 26556, 2176, 11877, '1.0000', '3.3500', '3.3500', '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 (27578, '2021-10-22', 1805, 26557, 2176, 34690, '1.0000', '4.2928', '4.2928', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27579, '2021-10-22', 1338, 26558, 2176, 24273, '1.0000', '2.0710', '2.0710', '6.0000', '6.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 (27580, '2021-10-22', 1529, 26559, 2176, 36326, '1.0000', '20261720.2750', '20261720.2750', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27581, '2021-10-22', 1612, 26560, 2176, 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 (27582, '2021-10-22', 8608, 26561, 2176, NULL, '1.0000', '0.9000', '0.9000', '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 (27583, '2021-10-22', 1620, 26562, 2176, 21573, '1.0000', '13.9038', '13.9038', '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 (27584, '2021-10-22', 1520, 26563, 2176, 11038, '1.0000', '1.4700', '1.4700', '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 (27585, '2021-10-22', 9214, 26564, 2176, NULL, '1.0000', '9.6000', '9.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 (27586, '2021-10-22', 9591, 26565, 2176, NULL, '1.0000', '3.0000', '3.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 (27587, '2021-10-22', 2521, 26566, 2176, 38247, '1.0000', '6.9430', '6.9430', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27588, '2021-10-22', 8176, 26567, 2176, NULL, '1.0000', '5.4000', '5.4000', '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 (27589, '2021-10-22', 9563, 26568, 2177, 37738, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27590, '2021-10-22', 2962, 26569, 2178, 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 (27591, '2021-10-22', 2298, 26570, 2178, 34004, '1.0000', '6.0000', '6.0000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27592, '2021-10-22', 2416, 26571, 2178, 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 (27593, '2021-10-22', 2293, 26572, 2178, NULL, '1.0000', '1.4400', '1.4400', '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 (27594, '2021-10-22', 2607, 26573, 2178, NULL, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27595, '2021-10-22', 1692, 26574, 2178, NULL, '1.0000', '9.6500', '9.6500', '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 (27596, '2021-10-22', 1757, 26575, 2178, 37786, '1.0000', '4.0024', '4.0024', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27597, '2021-10-22', 1715, 26576, 2178, 37809, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27598, '2021-10-22', 1346, 26577, 2178, 24923, '4.0000', '-20.8715', '-20.8715', '1.5000', '1.5000', '49.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 (27599, '2021-10-22', 7380, 26578, 2178, NULL, '1.0000', '5.6200', '5.6200', '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 (27600, '2021-10-22', 8354, 26579, 2178, 33137, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27601, '2021-10-22', 2280, 26580, 2179, 21586, '1.0000', '1.9000', '1.9000', '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 (27602, '2021-10-22', 1667, 26581, 2179, 37587, '1.0000', '76.8317', '76.8317', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27603, '2021-10-22', 2237, 26582, 2179, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (27604, '2021-10-22', 2327, 26583, 2179, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27605, '2021-10-22', 7491, 26584, 2179, NULL, '1.0000', '4.8000', '4.8000', '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 (27606, '2021-10-22', 1316, 26585, 2179, 23202, '1.0000', '6.3000', '6.3000', '9.0000', '9.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 (27607, '2021-10-22', 2233, 26586, 2179, 38084, '1.0000', '20.0557', '20.0557', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27608, '2021-10-22', 1602, 26587, 2180, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '47.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27609, '2021-10-22', 7609, 26588, 2181, NULL, '1.0000', '4.3300', '4.3300', '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 (27610, '2021-10-22', 2936, 26589, 2181, 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 (27611, '2021-10-23', 2135, 26590, 2182, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27612, '2021-10-23', 1912, 26591, 2182, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27613, '2021-10-23', 1580, 26592, 2182, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27614, '2021-10-23', 7358, 26593, 2182, NULL, '1.0000', '18.8000', '18.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 (27615, '2021-10-23', 8744, 26594, 2182, NULL, '3.0000', '3.5000', '3.5000', '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 (27616, '2021-10-23', 2288, 26595, 2182, NULL, '1.0000', '7.8600', '7.8600', '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 (27617, '2021-10-23', 1946, 26596, 2182, NULL, '1.0000', '1.5500', '1.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 (27618, '2021-10-23', 2273, 26597, 2182, 38547, '1.0000', '4.8384', '4.8384', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27619, '2021-10-23', 2392, 26598, 2182, NULL, '1.0000', '3.2000', '3.2000', '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 (27620, '2021-10-23', 2720, 26599, 2182, 13755, '1.0000', '2.7900', '2.7900', '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 (27621, '2021-10-23', 2346, 26600, 2182, NULL, '1.0000', '5.5000', '5.5000', '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 (27622, '2021-10-23', 2106, 26601, 2182, 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 (27623, '2021-10-23', 8746, 26602, 2182, NULL, '2.0000', '3.8000', '3.8000', '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 (27624, '2021-10-23', 7741, 26603, 2182, NULL, '1.0000', '1.2000', '1.2000', '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 (27625, '2021-10-23', 2821, 26604, 2182, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27626, '2021-10-23', 1306, 26605, 2183, 6879, '5.0000', '22.5969', '22.5969', '3.0000', '3.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 (27627, '2021-10-23', 2237, 26606, 2183, 2781, '-11.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 (27628, '2021-10-23', 2237, 26606, 2183, NULL, '12.0000', '1.0600', '1.0600', '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 (27629, '2021-10-23', 2169, 26607, 2183, 10737, '1.0000', '3.8397', '3.8397', '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 (27630, '2021-10-23', 2099, 26608, 2183, 1043, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '9.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 (27631, '2021-10-23', 3023, 26609, 2183, NULL, '1.0000', '5.6400', '5.6400', '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 (27632, '2021-10-23', 2315, 26610, 2183, 2735, '-121.0000', '0.3300', '0.3300', '0.6000', '0.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 (27633, '2021-10-23', 2315, 26610, 2183, NULL, '122.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-122.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27634, '2021-10-23', 1493, 26611, 2183, 9747, '-2.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 (27635, '2021-10-23', 1493, 26611, 2183, NULL, '3.0000', '1.5425', '1.5425', '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 (27636, '2021-10-23', 1460, 26612, 2183, 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 (27637, '2021-10-23', 2280, 26613, 2183, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '43.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27638, '2021-10-23', 1426, 26614, 2183, 22356, '1.0000', '36.0000', '36.0000', '47.5000', '47.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 (27639, '2021-10-23', 1910, 26615, 2183, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '47.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 (27640, '2021-10-23', 1649, 26616, 2183, 3220, '-2.0000', '11.1900', '11.1900', '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 (27641, '2021-10-23', 1649, 26616, 2183, NULL, '3.0000', '11.1900', '11.1900', '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 (27642, '2021-10-23', 2366, 26617, 2183, 3833, '-11.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 (27643, '2021-10-23', 2366, 26617, 2183, NULL, '13.0000', '3.7500', '3.7500', '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 (27644, '2021-10-23', 7746, 26618, 2183, NULL, '1.0000', '2.8600', '2.8600', '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 (27645, '2021-10-23', 1910, 26619, 2183, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '47.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 (27646, '2021-10-23', 1379, 26620, 2183, 18868, '1.0000', '85.2466', '85.2466', '110.0000', '110.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 (27647, '2021-10-23', 1651, 26621, 2183, 3222, '-10.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 (27648, '2021-10-23', 1651, 26621, 2183, NULL, '11.0000', '6.7039', '6.7039', '10.0000', '10.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 (27649, '2021-10-23', 1667, 26622, 2183, 9745, '-15.0000', '5.9400', '5.9400', '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 (27650, '2021-10-23', 1667, 26622, 2183, NULL, '16.0000', '5.9400', '5.9400', '8.5000', '8.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 (27651, '2021-10-23', 1590, 26623, 2183, 22260, '1.0000', '1.7100', '1.7100', '2.3000', '2.3000', '30.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 (27652, '2021-10-23', 8622, 26624, 2184, 34023, '1.0000', '12.3173', '12.3173', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27653, '2021-10-23', 1590, 26625, 2184, 38592, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '6.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27654, '2021-10-23', 1863, 26626, 2184, 37810, '1.0000', '1.2830', '1.2830', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27655, '2021-10-23', 1751, 26627, 2184, 19368, '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 (27656, '2021-10-23', 1837, 26628, 2184, 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 (27657, '2021-10-23', 2099, 26629, 2185, 1043, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '8.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 (27658, '2021-10-23', 2315, 26630, 2185, 2735, '-122.0000', '0.3300', '0.3300', '0.6000', '0.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 (27659, '2021-10-23', 2315, 26630, 2185, NULL, '124.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-124.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27660, '2021-10-23', 1923, 26631, 2185, NULL, '1.0000', '1.8000', '1.8000', '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 (27661, '2021-10-23', 2108, 26632, 2185, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '21.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 (27662, '2021-10-23', 1504, 26633, 2185, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (27663, '2021-10-23', 1602, 26634, 2186, 5897, '-26.0000', '6.7859', '6.7859', '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 (27664, '2021-10-23', 1602, 26634, 2186, NULL, '27.0000', '6.7859', '6.7859', '10.0000', '10.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 (27665, '2021-10-23', 2135, 26635, 2186, 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 (27666, '2021-10-23', 2712, 26636, 2186, NULL, '3.0000', '0.2600', '0.2600', '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 (27667, '2021-10-23', 9266, 26637, 2187, 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 (27668, '2021-10-23', 7565, 26638, 2187, NULL, '1.0000', '0.2000', '0.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 (27669, '2021-10-23', 8608, 26639, 2187, NULL, '1.0000', '5.7400', '5.7400', '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 (27670, '2021-10-23', 1874, 26640, 2187, NULL, '2.0000', '6.1000', '6.1000', '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 (27671, '2021-10-23', 8746, 26641, 2187, 32134, '1.0000', '3.8000', '3.8000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27672, '2021-10-23', 7658, 26642, 2187, NULL, '2.0000', '18.1404', '18.1404', '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 (27673, '2021-10-23', 7799, 26643, 2187, NULL, '1.0000', '2.0000', '2.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 (27674, '2021-10-23', 2876, 26644, 2187, 38349, '3.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27675, '2021-10-23', 8539, 26645, 2187, 31000, '1.0000', '4.4300', '4.4300', '0.8000', '0.8000', '48.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27676, '2021-10-23', 2315, 26646, 2187, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '118.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27677, '2021-10-23', 7507, 26647, 2187, NULL, '4.0000', '6.5000', '6.5000', '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 (27678, '2021-10-23', 7482, 26648, 2187, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27679, '2021-10-23', 7675, 26649, 2187, NULL, '1.0000', '11.4300', '11.4300', '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 (27680, '2021-10-23', 8810, 26650, 2187, NULL, '1.0000', '1.9200', '1.9200', '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 (27681, '2021-10-23', 7952, 26651, 2187, NULL, '1.0000', '10.4000', '10.4000', '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 (27682, '2021-10-23', 1339, 26652, 2187, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27683, '2021-10-23', 7590, 26653, 2187, NULL, '1.0000', '4.3600', '4.3600', '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 (27684, '2021-10-23', 7641, 26654, 2187, NULL, '1.0000', '6.5038', '6.5038', '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 (27685, '2021-10-23', 8596, 26655, 2187, NULL, '1.0000', '17.0000', '17.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 (27686, '2021-10-23', 7704, 26656, 2187, NULL, '1.0000', '8.7000', '8.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 (27687, '2021-10-23', 2638, 26657, 2187, NULL, '1.0000', '19.6200', '19.6200', '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 (27688, '2021-10-23', 7444, 26658, 2187, 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 (27689, '2021-10-23', 7411, 26659, 2187, NULL, '1.0000', '1.3500', '1.3500', '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 (27690, '2021-10-23', 9271, 26660, 2187, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27691, '2021-10-23', 2102, 26661, 2187, 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 (27692, '2021-10-23', 9393, 26662, 2187, NULL, '1.0000', '15.0000', '15.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 (27693, '2021-10-23', 7672, 26663, 2187, NULL, '1.0000', '1.0200', '1.0200', '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 (27694, '2021-10-23', 7482, 26664, 2187, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27695, '2021-10-23', 7641, 26665, 2187, NULL, '1.0000', '6.5038', '6.5038', '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 (27696, '2021-10-23', 9095, 26666, 2187, NULL, '1.0000', '17.5000', '17.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 (27697, '2021-10-23', 9092, 26667, 2187, 38367, '2.0000', '0.7972', '0.7972', '0.5000', '0.5000', '325.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27698, '2021-10-23', 1577, 26668, 2187, 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 (27699, '2021-10-23', 1671, 26669, 2187, NULL, '10.0000', '90.0000', '90.0000', '6.4000', '6.4000', '-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 (27700, '2021-10-23', 7671, 26670, 2187, NULL, '9.0000', '15.5000', '15.5000', '2.5000', '2.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 (27701, '2021-10-23', 7674, 26671, 2187, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '192.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27702, '2021-10-23', 8699, 26672, 2187, NULL, '1.0000', '6.3800', '6.3800', '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 (27703, '2021-10-23', 8203, 26673, 2187, 38432, '4.0000', '1.0075', '1.0075', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27704, '2021-10-23', 1760, 26674, 2187, 37408, '2.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27705, '2021-10-23', 2283, 26675, 2187, 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 (27706, '2021-10-23', 7756, 26676, 2187, NULL, '1.0000', '21.7700', '21.7700', '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 (27707, '2021-10-23', 7958, 26677, 2187, NULL, '1.0000', '13.0000', '13.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 (27708, '2021-10-23', 8608, 26678, 2187, NULL, '1.0000', '5.7400', '5.7400', '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 (27709, '2021-10-23', 9191, 26679, 2187, NULL, '1.0000', '6.6700', '6.6700', '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 (27710, '2021-10-23', 2315, 26680, 2187, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '119.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27711, '2021-10-23', 7558, 26681, 2187, NULL, '6.0000', '2.2000', '2.2000', '3.0000', '3.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 (27712, '2021-10-23', 7396, 26682, 2187, 30023, '1.0000', '6.0000', '6.0000', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27713, '2021-10-23', 7920, 26683, 2187, 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 (27714, '2021-10-23', 2762, 26684, 2188, 34680, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27715, '2021-10-23', 2411, 26685, 2188, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '6.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 (27716, '2021-10-23', 2228, 26686, 2188, 32620, '1.0000', '24.7010', '24.7010', '28.0000', '28.0000', '3.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27717, '2021-10-23', 3017, 26687, 2188, NULL, '1.0000', '3.9000', '3.9000', '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 (27718, '2021-10-23', 2916, 26688, 2188, 36373, '1.0000', '14.1311', '14.1311', '20.0000', '20.0000', '15.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27719, '2021-10-23', 1529, 26689, 2188, 36326, '1.0000', '20261720.2750', '20261720.2750', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27720, '2021-10-23', 1612, 26690, 2188, 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 (27721, '2021-10-23', 2044, 26691, 2188, 6408, '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 (27722, '2021-10-23', 2647, 26692, 2188, 10601, '1.0000', '30.0000', '30.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 (27723, '2021-10-23', 1411, 26693, 2188, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '13.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27724, '2021-10-23', 9565, 26694, 2188, 36818, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27725, '2021-10-23', 9089, 26695, 2188, 35943, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27726, '2021-10-23', 1356, 26696, 2188, 32875, '1.0000', '51.2768', '51.2768', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27727, '2021-10-23', 9538, 26697, 2188, NULL, '1.0000', '23.0000', '23.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27728, '2021-10-23', 2778, 26698, 2188, 19056, '1.0000', '89.4000', '89.4000', '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 (27729, '2021-10-23', 2712, 26699, 2188, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '45.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27730, '2021-10-23', 1338, 26700, 2188, 24273, '1.0000', '2.0710', '2.0710', '6.0000', '6.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 (27731, '2021-10-23', 1333, 26701, 2188, 33203, '2.0000', '0.2530', '0.2530', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27732, '2021-10-23', 2809, 26702, 2188, 17782, '1.0000', '28.0000', '28.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 (27733, '2021-10-23', 2011, 26703, 2188, 6434, '2.0000', '0.5300', '0.5300', '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 (27734, '2021-10-23', 2712, 26704, 2188, 35941, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27735, '2021-10-23', 2366, 26705, 2188, 8415, '2.0000', '3.7873', '3.7873', '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 (27736, '2021-10-23', 1651, 26706, 2188, 38071, '1.0000', '6.7649', '6.7649', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27737, '2021-10-23', 1812, 26707, 2188, 37578, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27738, '2021-10-23', 1529, 26708, 2188, 36326, '1.0000', '20261720.2750', '20261720.2750', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27739, '2021-10-23', 2965, 26709, 2188, NULL, '1.0000', '5.0000', '5.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 (27740, '2021-10-23', 2152, 26710, 2188, 33041, '1.0000', '14.0800', '14.0800', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27741, '2021-10-23', 1602, 26711, 2188, 36370, '2.0000', '6.8074', '6.8074', '10.0000', '10.0000', '45.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27742, '2021-10-23', 2543, 26712, 2188, 9539, '1.0000', '2.0000', '2.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 (27743, '2021-10-23', 1303, 26713, 2188, 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 (27744, '2021-10-23', 2599, 26714, 2188, 13551, '1.0000', '45.0000', '45.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 (27745, '2021-10-23', 1863, 26715, 2188, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27746, '2021-10-23', 2237, 26716, 2188, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.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 (27747, '2021-10-23', 2280, 26717, 2188, 21586, '1.0000', '1.9000', '1.9000', '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 (27748, '2021-10-23', 2135, 26718, 2188, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27749, '2021-10-23', 7444, 26719, 2188, 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 (27750, '2021-10-23', 9461, 26720, 2188, 33213, '1.0000', '1.6000', '1.6000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27751, '2021-10-23', 2325, 26721, 2188, 35925, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27752, '2021-10-23', 2858, 26722, 2188, 17780, '1.0000', '1.0000', '1.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 (27753, '2021-10-23', 2066, 26723, 2188, 5494, '1.0000', '0.5100', '0.5100', '1.0000', '1.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 (27754, '2021-10-23', 2506, 26724, 2189, 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 (27755, '2021-10-23', 1945, 26725, 2189, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '3.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 (27756, '2021-10-23', 1856, 26726, 2189, 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 (27757, '2021-10-23', 1839, 26727, 2189, 24949, '1.0000', '6.0835', '6.0835', '8.5000', '8.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 (27758, '2021-10-23', 2277, 26728, 2189, 33144, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27759, '2021-10-23', 2293, 26729, 2189, NULL, '1.0000', '1.4400', '1.4400', '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 (27760, '2021-10-23', 7514, 26730, 2189, NULL, '1.0000', '2.2500', '2.2500', '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 (27761, '2021-10-23', 1999, 26731, 2189, 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 (27762, '2021-10-23', 2088, 26732, 2189, 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 (27763, '2021-10-23', 2167, 26733, 2189, 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 (27764, '2021-10-23', 1590, 26734, 2189, 38592, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '4.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27765, '2021-10-23', 7741, 26735, 2189, NULL, '1.0000', '1.2000', '1.2000', '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 (27766, '2021-10-23', 2951, 26736, 2189, 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 (27767, '2021-10-23', 7741, 26737, 2189, NULL, '1.0000', '1.2000', '1.2000', '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 (27768, '2021-10-23', 1574, 26738, 2189, 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 (27769, '2021-10-23', 8518, 26739, 2189, NULL, '1.0000', '17.6400', '17.6400', '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 (27770, '2021-10-23', 7459, 26740, 2189, 34603, '2.0000', '-6.1729', '-6.1729', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27771, '2021-10-23', 7459, 26740, 2189, NULL, '18.0000', '-6.1729', '-6.1729', '3.0000', '3.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 (27772, '2021-10-23', 1521, 26741, 2189, 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 (27773, '2021-10-23', 7848, 26742, 2189, NULL, '1.0000', '1.3500', '1.3500', '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 (27774, '2021-10-23', 3058, 26743, 2189, 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 (27775, '2021-10-23', 1665, 26744, 2189, 37445, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27776, '2021-10-23', 9089, 26745, 2189, NULL, '1.0000', '3.8000', '3.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 (27777, '2021-10-23', 1519, 26746, 2189, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27778, '2021-10-23', 2260, 26747, 2189, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27779, '2021-10-23', 1837, 26748, 2189, 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 (27780, '2021-10-23', 2975, 26749, 2189, 22402, '6.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 (27781, '2021-10-23', 2975, 26749, 2189, NULL, '1.0000', '6.0000', '6.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 (27782, '2021-10-23', 8548, 26750, 2189, NULL, '1.0000', '12.0000', '12.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 (27783, '2021-10-23', 2662, 26751, 2189, 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 (27784, '2021-10-23', 2237, 26752, 2189, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27785, '2021-10-23', 1839, 26753, 2189, 24949, '1.0000', '6.0835', '6.0835', '8.5000', '8.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 (27786, '2021-10-23', 1529, 26754, 2189, 38593, '1.0000', '3.7110', '3.7110', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27787, '2021-10-23', 2660, 26755, 2189, 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 (27788, '2021-10-23', 8208, 26756, 2189, NULL, '2.0000', '33.0000', '33.0000', '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 (27789, '2021-10-23', 8984, 26757, 2189, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27790, '2021-10-23', 2135, 26758, 2189, 34917, '1.0000', '2.4732', '2.4732', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27791, '2021-10-23', 2135, 26758, 2189, 23175, '1.0000', '2.4732', '2.4732', '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 (27792, '2021-10-23', 1307, 26759, 2189, 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 (27793, '2021-10-23', 2236, 26760, 2189, 31081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27794, '2021-10-23', 7482, 26761, 2189, 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 (27795, '2021-10-23', 2699, 26762, 2189, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27796, '2021-10-23', 7658, 26763, 2189, NULL, '2.0000', '10.1500', '10.1500', '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 (27797, '2021-10-23', 1307, 26764, 2189, 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 (27798, '2021-10-23', 1665, 26765, 2189, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27799, '2021-10-23', 1504, 26766, 2189, 38525, '10.0000', '2.1038', '2.1038', '2.2000', '2.2000', '50.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27800, '2021-10-23', 8340, 26767, 2189, NULL, '10.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (27801, '2021-10-23', 2866, 26768, 2189, 18927, '10.0000', '0.8800', '0.8800', '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 (27802, '2021-10-23', 2920, 26769, 2189, 34939, '1.0000', '30.0307', '30.0307', '16.5000', '16.5000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27803, '2021-10-23', 1532, 26770, 2189, 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 (27804, '2021-10-23', 1590, 26771, 2189, 38592, '1.0000', '1.9878', '1.9878', '2.3000', '2.3000', '5.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27805, '2021-10-23', 1580, 26772, 2189, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27806, '2021-10-23', 2951, 26773, 2189, 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 (27807, '2021-10-23', 1307, 26774, 2189, 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 (27808, '2021-10-23', 1501, 26775, 2189, NULL, '1.0000', '2.2100', '2.2100', '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 (27809, '2021-10-23', 1499, 26776, 2189, NULL, '1.0000', '0.4835', '0.4835', '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 (27810, '2021-10-23', 2951, 26777, 2189, 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 (27811, '2021-10-23', 2400, 26778, 2189, 38562, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27812, '2021-10-23', 1912, 26779, 2189, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27813, '2021-10-23', 1665, 26780, 2189, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27814, '2021-10-23', 7514, 26781, 2189, NULL, '1.0000', '2.2500', '2.2500', '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 (27815, '2021-10-23', 1871, 26782, 2189, 37801, '1.0000', '2.9308', '2.9308', '3.0000', '3.0000', '56.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27816, '2021-10-23', 1602, 26783, 2190, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '44.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27817, '2021-10-23', 2240, 26784, 2190, 37556, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27818, '2021-10-23', 1349, 26785, 2190, 38064, '1.0000', '34.1445', '34.1445', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27819, '2021-10-23', 2923, 26786, 2190, NULL, '1.0000', '11.1200', '11.1200', '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 (27820, '2021-10-23', 1825, 26787, 2190, 38065, '1.0000', '5.1714', '5.1714', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27821, '2021-10-23', 2693, 26788, 2190, 34426, '1.0000', '26.6200', '26.6200', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27822, '2021-10-23', 1521, 26789, 2191, 31985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27823, '2021-10-23', 2254, 26790, 2191, 18688, '1.0000', '17.9400', '17.9400', '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 (27824, '2021-10-23', 2289, 26791, 2191, 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 (27825, '2021-10-23', 7391, 26792, 2191, NULL, '1.0000', '-144.1150', '-144.1150', '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 (27826, '2021-10-23', 2486, 26793, 2191, 21821, '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 (27827, '2021-10-23', 3013, 26794, 2191, NULL, '2.0000', '8.0000', '8.0000', '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 (27828, '2021-10-23', 2270, 26795, 2191, 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 (27829, '2021-10-23', 1824, 26796, 2191, 37585, '1.0000', '39.6351', '39.6351', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27830, '2021-10-23', 1889, 26797, 2191, 5495, '4.0000', '1.3000', '1.3000', '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 (27831, '2021-10-23', 2673, 26798, 2192, 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 (27832, '2021-10-23', 7671, 26799, 2192, NULL, '1.0000', '15.5000', '15.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 (27833, '2021-10-23', 2315, 26800, 2192, 38451, '6.0000', '0.4740', '0.4740', '0.6000', '0.6000', '111.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27834, '2021-10-23', 7640, 26801, 2192, NULL, '1.0000', '5.8900', '5.8900', '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 (27835, '2021-10-23', 7862, 26802, 2192, NULL, '1.0000', '17.8000', '17.8000', '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 (27836, '2021-10-23', 7782, 26803, 2192, NULL, '1.0000', '5.0000', '5.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 (27837, '2021-10-23', 8178, 26804, 2192, NULL, '1.0000', '0.0000', '0.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 (27838, '2021-10-23', 7674, 26805, 2192, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '191.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27839, '2021-10-23', 7524, 26806, 2192, NULL, '1.0000', '11.9500', '11.9500', '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 (27840, '2021-10-23', 7357, 26807, 2192, 29997, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27841, '2021-10-23', 7672, 26808, 2192, NULL, '1.0000', '1.0200', '1.0200', '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 (27842, '2021-10-23', 8858, 26809, 2192, NULL, '1.0000', '8.5000', '8.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 (27843, '2021-10-23', 7482, 26810, 2192, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27844, '2021-10-23', 9165, 26811, 2192, NULL, '1.0000', '11.9600', '11.9600', '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 (27845, '2021-10-23', 9457, 26812, 2192, 36080, '1.0000', '2.9800', '2.9800', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27846, '2021-10-23', 7457, 26813, 2192, 37428, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27847, '2021-10-23', 7608, 26814, 2192, NULL, '1.0000', '6.9800', '6.9800', '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 (27848, '2021-10-23', 7514, 26815, 2192, NULL, '1.0000', '12.9983', '12.9983', '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 (27849, '2021-10-23', 9456, 26816, 2192, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27850, '2021-10-23', 8387, 26817, 2192, NULL, '1.0000', '3.0000', '3.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 (27851, '2021-10-23', 1916, 26818, 2192, 30921, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27852, '2021-10-23', 7848, 26819, 2192, NULL, '2.0000', '1.3500', '1.3500', '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 (27853, '2021-10-23', 7888, 26820, 2192, NULL, '2.0000', '17.7800', '17.7800', '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 (27854, '2021-10-23', 2224, 26821, 2193, 22520, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '0.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 (27855, '2021-10-23', 9563, 26822, 2193, 37738, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27856, '2021-10-23', 2254, 26823, 2193, 22382, '1.0000', '17.9400', '17.9400', '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 (27857, '2021-10-23', 7411, 26824, 2193, NULL, '1.0000', '1.3500', '1.3500', '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 (27858, '2021-10-23', 1864, 26825, 2194, NULL, '1.0000', '5.9100', '5.9100', '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 (27859, '2021-10-23', 2660, 26826, 2194, 37560, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27860, '2021-10-23', 1904, 26827, 2194, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27861, '2021-10-23', 2317, 26828, 2194, 36788, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '57.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27862, '2021-10-23', 8188, 26829, 2194, 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 (27863, '2021-10-23', 1935, 26830, 2194, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27864, '2021-10-23', 1602, 26831, 2194, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '43.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27865, '2021-10-23', 8677, 26832, 2194, NULL, '2.0000', '-1.2995', '-1.2995', '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 (27866, '2021-10-23', 1761, 26833, 2194, 34421, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27867, '2021-10-23', 1533, 26834, 2194, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27868, '2021-10-23', 1856, 26835, 2194, 36388, '2.0000', '4.3889', '4.3889', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27869, '2021-10-23', 8759, 26836, 2194, 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 (27870, '2021-10-23', 7744, 26837, 2194, 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 (27871, '2021-10-23', 2943, 26838, 2194, NULL, '1.0000', '2.1800', '2.1800', '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 (27872, '2021-10-24', 2948, 26839, 2195, NULL, '1.0000', '0.9000', '0.9000', '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 (27873, '2021-10-24', 1856, 26840, 2195, 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 (27874, '2021-10-24', 1387, 26841, 2195, NULL, '1.0000', '10.5068', '10.5068', '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 (27875, '2021-10-24', 2374, 26842, 2195, NULL, '1.0000', '7.3300', '7.3300', '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 (27876, '2021-10-24', 2943, 26843, 2195, 19987, '-4.0000', '2.1800', '2.1800', '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 (27877, '2021-10-24', 2943, 26843, 2195, NULL, '5.0000', '2.1800', '2.1800', '4.5000', '4.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 (27878, '2021-10-24', 2342, 26844, 2195, 3845, '-4.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 (27879, '2021-10-24', 2342, 26844, 2195, NULL, '14.0000', '1.8600', '1.8600', '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 (27880, '2021-10-24', 2362, 26845, 2195, 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 (27881, '2021-10-24', 2829, 26846, 2195, 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 (27882, '2021-10-24', 8677, 26847, 2195, NULL, '1.0000', '1.2800', '1.2800', '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 (27883, '2021-10-24', 1812, 26848, 2195, 8224, '-16.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 (27884, '2021-10-24', 1812, 26848, 2195, NULL, '17.0000', '7.8900', '7.8900', '10.5000', '10.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 (27885, '2021-10-24', 1651, 26849, 2195, 3222, '-11.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 (27886, '2021-10-24', 1651, 26849, 2195, NULL, '12.0000', '6.7039', '6.7039', '10.0000', '10.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 (27887, '2021-10-24', 1863, 26850, 2195, 10808, '-53.0000', '0.4136', '0.4136', '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 (27888, '2021-10-24', 1863, 26850, 2195, NULL, '54.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27889, '2021-10-24', 2366, 26851, 2195, 3833, '-13.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 (27890, '2021-10-24', 2366, 26851, 2195, NULL, '15.0000', '3.7500', '3.7500', '6.0000', '6.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 (27891, '2021-10-24', 1946, 26852, 2195, 740, '1.0000', '5.7750', '5.7750', '5.0000', '5.0000', '57.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 (27892, '2021-10-24', 1819, 26853, 2195, NULL, '1.0000', '5.5930', '5.5930', '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 (27893, '2021-10-24', 2280, 26854, 2195, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '42.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27894, '2021-10-24', 2511, 26855, 2195, 9740, '-3.0000', '8.5000', '8.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 (27895, '2021-10-24', 2511, 26855, 2195, NULL, '4.0000', '8.5000', '8.5000', '12.0000', '12.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 (27896, '2021-10-24', 2916, 26856, 2195, 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 (27897, '2021-10-24', 1935, 26857, 2195, 5586, '-22.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 (27898, '2021-10-24', 1935, 26857, 2195, NULL, '23.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (27899, '2021-10-24', 2315, 26858, 2195, 2735, '-124.0000', '0.3300', '0.3300', '0.6000', '0.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 (27900, '2021-10-24', 2315, 26858, 2195, NULL, '128.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27901, '2021-10-24', 2384, 26859, 2195, 18845, '5.0000', '0.4000', '0.4000', '0.7000', '0.7000', '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 (27902, '2021-10-24', 2660, 26860, 2195, NULL, '6.0000', '0.7000', '0.7000', '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 (27903, '2021-10-24', 2907, 26861, 2195, 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 (27904, '2021-10-24', 2095, 26862, 2195, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '56.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 (27905, '2021-10-24', 1314, 26863, 2195, 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 (27906, '2021-10-24', 1306, 26864, 2195, 6879, '1.0000', '22.5969', '22.5969', '3.0000', '3.0000', '8.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 (27907, '2021-10-24', 1625, 26865, 2195, 486, '2.0000', '16.6997', '16.6997', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27908, '2021-10-24', 2484, 26866, 2195, 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 (27909, '2021-10-24', 9577, 26867, 2195, NULL, '100.0000', '0.3200', '0.3200', '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 (27910, '2021-10-24', 7684, 26868, 2195, NULL, '2.0000', '9.0000', '9.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 (27911, '2021-10-24', 1863, 26869, 2196, 10808, '-54.0000', '0.4136', '0.4136', '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 (27912, '2021-10-24', 1863, 26869, 2196, NULL, '55.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-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 (27913, '2021-10-24', 2363, 26870, 2197, 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 (27914, '2021-10-24', 1602, 26871, 2197, 5897, '-27.0000', '6.7859', '6.7859', '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 (27915, '2021-10-24', 1602, 26871, 2197, NULL, '28.0000', '6.7859', '6.7859', '10.0000', '10.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 (27916, '2021-10-24', 2037, 26872, 2197, 6389, '-5.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27917, '2021-10-24', 2037, 26872, 2197, NULL, '6.0000', '10.5000', '10.5000', '14.0000', '14.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 (27918, '2021-10-24', 2646, 26873, 2197, NULL, '2.0000', '6.0000', '6.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 (27919, '2021-10-24', 2142, 26874, 2198, 13718, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27920, '2021-10-24', 1602, 26875, 2198, 5897, '-28.0000', '6.7859', '6.7859', '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 (27921, '2021-10-24', 1602, 26875, 2198, NULL, '29.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27922, '2021-10-24', 2135, 26876, 2198, 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 (27923, '2021-10-24', 1863, 26877, 2198, 10808, '-55.0000', '0.4136', '0.4136', '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 (27924, '2021-10-24', 1863, 26877, 2198, NULL, '56.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27925, '2021-10-24', 2315, 26878, 2198, 2735, '-128.0000', '0.3300', '0.3300', '0.6000', '0.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 (27926, '2021-10-24', 2315, 26878, 2198, NULL, '130.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27927, '2021-10-24', 2642, 26879, 2199, 37719, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27928, '2021-10-24', 7756, 26880, 2199, NULL, '1.0000', '2.5000', '2.5000', '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 (27929, '2021-10-24', 2315, 26881, 2199, NULL, '2.0000', '-6.8895', '-6.8895', '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 (27930, '2021-10-24', 1307, 26882, 2199, 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 (27931, '2021-10-24', 7318, 26883, 2199, NULL, '1.0000', '13.4400', '13.4400', '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 (27932, '2021-10-24', 7980, 26884, 2199, NULL, '3.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (27933, '2021-10-24', 2941, 26885, 2199, NULL, '1.0000', '2.6600', '2.6600', '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 (27934, '2021-10-24', 2642, 26886, 2199, 37719, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27935, '2021-10-24', 2379, 26887, 2199, NULL, '1.0000', '1.8000', '1.8000', '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 (27936, '2021-10-24', 1863, 26888, 2199, 37810, '2.0000', '1.2830', '1.2830', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27937, '2021-10-24', 9602, 26889, 2199, NULL, '1.0000', '1.0500', '1.0500', '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 (27938, '2021-10-24', 1499, 26890, 2199, NULL, '2.0000', '0.4835', '0.4835', '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 (27939, '2021-10-24', 2668, 26891, 2199, 37785, '1.0000', '5.3308', '5.3308', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27940, '2021-10-24', 1602, 26892, 2199, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27941, '2021-10-24', 7926, 26893, 2199, 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 (27942, '2021-10-24', 2237, 26894, 2199, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27943, '2021-10-24', 2004, 26895, 2199, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27944, '2021-10-24', 8765, 26896, 2199, 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 (27945, '2021-10-24', 1519, 26897, 2199, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27946, '2021-10-24', 7411, 26898, 2199, NULL, '1.0000', '1.3500', '1.3500', '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 (27947, '2021-10-24', 2275, 26899, 2199, 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 (27948, '2021-10-24', 1950, 26900, 2199, NULL, '1.0000', '3.5525', '3.5525', '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 (27949, '2021-10-24', 1381, 26901, 2199, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27950, '2021-10-24', 3041, 26902, 2199, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '14.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 (27951, '2021-10-24', 1337, 26903, 2199, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (27952, '2021-10-24', 1695, 26904, 2199, NULL, '1.0000', '14.8348', '14.8348', '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 (27953, '2021-10-24', 1596, 26905, 2199, 37764, '1.0000', '2.4388', '2.4388', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27954, '2021-10-24', 1586, 26906, 2199, 37756, '1.0000', '69.6045', '69.6045', '65.0000', '65.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27955, '2021-10-24', 2609, 26907, 2199, 38549, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27956, '2021-10-24', 2491, 26908, 2199, 19844, '1.0000', '12.2000', '12.2000', '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 (27957, '2021-10-24', 2221, 26909, 2199, 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 (27958, '2021-10-24', 2169, 26910, 2199, NULL, '1.0000', '1.1500', '1.1500', '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 (27959, '2021-10-24', 2592, 26911, 2199, 38524, '1.0000', '8.0156', '8.0156', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27960, '2021-10-24', 8902, 26912, 2199, 34925, '1.0000', '16.4800', '16.4800', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27961, '2021-10-24', 8889, 26913, 2199, NULL, '1.0000', '34.0000', '34.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 (27962, '2021-10-24', 1908, 26914, 2199, NULL, '1.0000', '1.7500', '1.7500', '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 (27963, '2021-10-24', 2167, 26915, 2199, 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 (27964, '2021-10-24', 1533, 26916, 2199, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27965, '2021-10-24', 1346, 26917, 2199, 24923, '7.0000', '-20.8715', '-20.8715', '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 (27966, '2021-10-24', 8677, 26918, 2199, NULL, '2.0000', '89.9250', '89.9250', '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 (27967, '2021-10-24', 2169, 26919, 2199, NULL, '1.0000', '1.1500', '1.1500', '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 (27968, '2021-10-24', 1520, 26920, 2199, 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 (27969, '2021-10-24', 1409, 26921, 2199, 37443, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27970, '2021-10-24', 9214, 26922, 2199, NULL, '1.0000', '9.6000', '9.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 (27971, '2021-10-24', 1532, 26923, 2199, 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 (27972, '2021-10-24', 2699, 26924, 2199, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27973, '2021-10-24', 2315, 26925, 2199, NULL, '2.0000', '-6.8895', '-6.8895', '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 (27974, '2021-10-24', 1761, 26926, 2200, 3171, '-1.0000', '1.8200', '1.8200', '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 (27975, '2021-10-24', 1761, 26926, 2200, NULL, '2.0000', '1.8200', '1.8200', '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 (27976, '2021-10-24', 2384, 26927, 2200, 18845, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '17.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 (27977, '2021-10-24', 2384, 26928, 2201, 18845, '6.0000', '0.4000', '0.4000', '0.7000', '0.7000', '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 (27978, '2021-10-24', 1736, 26929, 2202, 1080, '2.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '7.0000', 1, 0, NULL, 17);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27979, '2021-10-24', 2350, 26930, 2203, 3853, '-1.0000', '10.3800', '10.3800', '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 (27980, '2021-10-24', 2350, 26930, 2203, NULL, '2.0000', '10.3800', '10.3800', '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 (27981, '2021-10-24', 9463, 26931, 2204, NULL, '1.0000', '7.5000', '7.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 (27982, '2021-10-24', 2346, 26932, 2204, NULL, '1.0000', '5.5000', '5.5000', '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 (27983, '2021-10-24', 1322, 26933, 2204, 37796, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27984, '2021-10-24', 2169, 26934, 2204, NULL, '1.0000', '1.1500', '1.1500', '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 (27985, '2021-10-24', 1651, 26935, 2204, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27986, '2021-10-24', 3045, 26936, 2204, NULL, '1.0000', '5.4200', '5.4200', '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 (27987, '2021-10-24', 2650, 26937, 2205, NULL, '1.0000', '7.9860', '7.9860', '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 (27988, '2021-10-24', 1375, 26938, 2205, 34919, '1.0000', '14.3000', '14.3000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27989, '2021-10-24', 2169, 26939, 2206, 10737, '1.0000', '3.8397', '3.8397', '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 (27990, '2021-10-24', 2384, 26940, 2206, 18845, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '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 (27991, '2021-10-24', 2395, 26941, 2207, NULL, '2.0000', '27.0000', '27.0000', '35.0000', '35.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 (27992, '2021-10-24', 1410, 26942, 2208, 22317, '1.0000', '2.2000', '2.2000', '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 (27993, '2021-10-24', 2394, 26943, 2208, 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 (27994, '2021-10-24', 2660, 26944, 2208, 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 (27995, '2021-10-24', 2650, 26945, 2209, NULL, '1.0000', '7.9860', '7.9860', '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 (27996, '2021-10-24', 1375, 26946, 2209, 34919, '1.0000', '14.3000', '14.3000', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27997, '2021-10-24', 2169, 26947, 2209, NULL, '2.0000', '1.1500', '1.1500', '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 (27998, '2021-10-24', 1425, 26948, 2209, 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 (27999, '2021-10-24', 2135, 26949, 2209, 23175, '1.0000', '2.4732', '2.4732', '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 (28000, '2021-10-24', 2273, 26950, 2209, 38547, '1.0000', '4.8384', '4.8384', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28001, '2021-10-24', 1965, 26951, 2209, NULL, '1.0000', '17.2400', '17.2400', '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 (28002, '2021-10-24', 1831, 26952, 2209, 34032, '1.0000', '28.8300', '28.8300', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28003, '2021-10-24', 8677, 26953, 2209, NULL, '2.0000', '89.9250', '89.9250', '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 (28004, '2021-10-24', 1651, 26954, 2209, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28005, '2021-10-24', 1863, 26955, 2209, NULL, '1.0000', '1.2830', '1.2830', '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 (28006, '2021-10-24', 1501, 26956, 2209, NULL, '1.0000', '2.2100', '2.2100', '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 (28007, '2021-10-24', 1760, 26957, 2209, NULL, '2.0000', '1.5900', '1.5900', '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 (28008, '2021-10-24', 2821, 26958, 2209, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28009, '2021-10-24', 2167, 26959, 2209, 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 (28010, '2021-10-24', 2237, 26960, 2209, 34951, '3.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28011, '2021-10-24', 2713, 26961, 2209, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28012, '2021-10-24', 2754, 26962, 2210, 18938, '1.0000', '0.0800', '0.0800', '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 (28013, '2021-10-24', 2706, 26963, 2210, 29643, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28014, '2021-10-24', 1498, 26964, 2211, 33520, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28015, '2021-10-24', 1819, 26965, 2211, 37401, '1.0000', '5.4309', '5.4309', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28016, '2021-10-24', 7863, 26966, 2211, NULL, '3.0000', '3.0000', '3.0000', '7.0000', '7.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 (28017, '2021-10-24', 8672, 26967, 2211, NULL, '6.0000', '5.4500', '5.4500', '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 (28018, '2021-10-24', 1303, 26968, 2211, 33727, '2.0000', '1.3800', '1.3800', '4.0000', '4.0000', '106.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28019, '2021-10-24', 7342, 26969, 2211, 38439, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28020, '2021-10-24', 2235, 26970, 2211, 35191, '1.0000', '20.4000', '20.4000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28021, '2021-10-24', 8065, 26971, 2211, 37369, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28022, '2021-10-24', 7500, 26972, 2211, NULL, '1.0000', '0.0000', '0.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 (28023, '2021-10-24', 7913, 26973, 2211, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (28024, '2021-10-24', 7910, 26974, 2211, NULL, '1.0000', '7.9800', '7.9800', '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 (28025, '2021-10-24', 7429, 26975, 2211, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28026, '2021-10-24', 7318, 26976, 2211, 37431, '1.0000', '11.1265', '11.1265', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28027, '2021-10-24', 7586, 26977, 2211, 38180, '1.0000', '4.1700', '4.1700', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28028, '2021-10-24', 7707, 26978, 2211, NULL, '1.0000', '6.0124', '6.0124', '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 (28029, '2021-10-24', 7547, 26979, 2211, NULL, '2.0000', '0.0000', '0.0000', '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 (28030, '2021-10-24', 7819, 26980, 2211, NULL, '1.0000', '9.5000', '9.5000', '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 (28031, '2021-10-24', 7749, 26981, 2211, 36051, '1.0000', '-3.8876', '-3.8876', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28032, '2021-10-24', 7318, 26982, 2211, 37431, '1.0000', '11.1265', '11.1265', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28033, '2021-10-24', 9280, 26983, 2211, NULL, '1.0000', '12.0000', '12.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 (28034, '2021-10-24', 9329, 26984, 2211, NULL, '1.0000', '5.8000', '5.8000', '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 (28035, '2021-10-24', 7673, 26985, 2211, NULL, '2.0000', '15.5000', '15.5000', '20.5000', '20.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 (28036, '2021-10-24', 7588, 26986, 2211, NULL, '1.0000', '7.3047', '7.3047', '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 (28037, '2021-10-24', 2060, 26987, 2211, 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 (28038, '2021-10-24', 2167, 26988, 2211, 36090, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28039, '2021-10-24', 1819, 26989, 2211, 37401, '1.0000', '5.4309', '5.4309', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28040, '2021-10-24', 1400, 26990, 2211, 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 (28041, '2021-10-24', 9399, 26991, 2211, 38358, '3.0000', '0.4200', '0.4200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28042, '2021-10-24', 7334, 26992, 2211, 36056, '2.0000', '8.1600', '8.1600', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28043, '2021-10-24', 7334, 26992, 2211, NULL, '1.0000', '8.1600', '8.1600', '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 (28044, '2021-10-24', 7576, 26993, 2211, NULL, '4.0000', '6.9100', '6.9100', '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 (28045, '2021-10-24', 7707, 26994, 2211, NULL, '1.0000', '6.0124', '6.0124', '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 (28046, '2021-10-24', 7530, 26995, 2211, NULL, '1.0000', '5.7200', '5.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 (28047, '2021-10-24', 7641, 26996, 2211, NULL, '1.0000', '6.5038', '6.5038', '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 (28048, '2021-10-24', 7380, 26997, 2211, NULL, '1.0000', '5.6200', '5.6200', '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 (28049, '2021-10-24', 7514, 26998, 2211, NULL, '1.0000', '12.9983', '12.9983', '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 (28050, '2021-10-24', 7482, 26999, 2211, 37385, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28051, '2021-10-24', 7781, 27000, 2211, NULL, '1.0000', '4.2500', '4.2500', '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 (28052, '2021-10-24', 2916, 27001, 2211, 35226, '1.0000', '14.3345', '14.3345', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28053, '2021-10-24', 1904, 27002, 2211, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28054, '2021-10-24', 7782, 27003, 2211, NULL, '1.0000', '5.0000', '5.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 (28055, '2021-10-24', 2643, 27004, 2211, 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 (28056, '2021-10-24', 7640, 27005, 2211, NULL, '2.0000', '5.8900', '5.8900', '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 (28057, '2021-10-24', 1302, 27006, 2211, 33519, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28058, '2021-10-24', 1450, 27007, 2211, 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 (28059, '2021-10-24', 7674, 27008, 2211, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '190.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28060, '2021-10-24', 7641, 27009, 2211, NULL, '1.0000', '6.5038', '6.5038', '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 (28061, '2021-10-24', 2060, 27010, 2211, 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 (28062, '2021-10-24', 7777, 27011, 2211, NULL, '1.0000', '9.5000', '9.5000', '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 (28063, '2021-10-24', 9578, 27012, 2211, NULL, '1.0000', '8.0000', '8.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 (28064, '2021-10-24', 7744, 27013, 2211, 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 (28065, '2021-10-24', 7952, 27014, 2211, NULL, '1.0000', '10.4000', '10.4000', '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 (28066, '2021-10-24', 7672, 27015, 2211, NULL, '1.0000', '1.0200', '1.0200', '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 (28067, '2021-10-24', 7674, 27016, 2211, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '190.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28068, '2021-10-24', 2007, 27017, 2212, 6367, '-1.0000', '15.0000', '15.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 (28069, '2021-10-24', 2007, 27017, 2212, 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 (28070, '2021-10-24', 2012, 27018, 2212, 5299, '-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 (28071, '2021-10-24', 2012, 27018, 2212, NULL, '2.0000', '12.0000', '12.0000', '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 (28072, '2021-10-24', 3023, 27019, 2212, NULL, '1.0000', '5.6400', '5.6400', '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 (28073, '2021-10-24', 1532, 27020, 2213, 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 (28074, '2021-10-24', 8085, 27021, 2213, NULL, '2.0000', '14.0000', '14.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 (28075, '2021-10-24', 1602, 27022, 2213, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28076, '2021-10-24', 1667, 27023, 2213, 38523, '1.0000', '25.9037', '25.9037', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28077, '2021-10-24', 2754, 27024, 2213, 18938, '1.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (28078, '2021-10-24', 2088, 27025, 2213, 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 (28079, '2021-10-24', 1665, 27026, 2214, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28080, '2021-10-24', 2712, 27027, 2215, 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 (28081, '2021-10-24', 9444, 27028, 2215, 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 (28082, '2021-10-24', 1651, 27029, 2215, 3222, '-12.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 (28083, '2021-10-24', 1651, 27029, 2215, NULL, '15.0000', '6.7039', '6.7039', '10.0000', '10.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 (28084, '2021-10-24', 2592, 27030, 2215, 10812, '-6.0000', '7.9670', '7.9670', '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 (28085, '2021-10-24', 2592, 27030, 2215, NULL, '8.0000', '7.9670', '7.9670', '10.5000', '10.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 (28086, '2021-10-24', 2655, 27031, 2215, 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 (28087, '2021-10-24', 9092, 27032, 2216, 38367, '2.0000', '0.7972', '0.7972', '0.5000', '0.5000', '323.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28088, '2021-10-24', 9561, 27033, 2216, 36679, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28089, '2021-10-24', 7675, 27034, 2216, NULL, '1.0000', '11.4300', '11.4300', '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 (28090, '2021-10-24', 1621, 27035, 2217, 7385, '-6.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 (28091, '2021-10-24', 1621, 27035, 2217, NULL, '7.0000', '6.6000', '6.6000', '9.0000', '9.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 (28092, '2021-10-24', 1856, 27036, 2217, 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 (28093, '2021-10-24', 1689, 27037, 2217, 549, '1.0000', '60.7198', '60.7198', '17.0000', '17.0000', '1.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 (28094, '2021-10-24', 7339, 27038, 2217, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (28095, '2021-10-24', 3004, 27039, 2217, 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 (28096, '2021-10-24', 1454, 27040, 2217, 5573, '-1.0000', '90.0000', '90.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 (28097, '2021-10-24', 1454, 27040, 2217, 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 (28098, '2021-10-25', 2948, 27041, 2218, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '158.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 (28099, '2021-10-25', 2948, 27042, 2218, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '158.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 (28100, '2021-10-25', 7560, 27043, 2218, NULL, '1.0000', '4.4500', '4.4500', '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 (28101, '2021-10-25', 2221, 27044, 2218, 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 (28102, '2021-10-25', 1596, 27045, 2218, 37764, '1.0000', '2.4388', '2.4388', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28103, '2021-10-25', 1571, 27046, 2218, 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 (28104, '2021-10-25', 2072, 27047, 2218, 34600, '1.0000', '8.1200', '8.1200', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28105, '2021-10-25', 1347, 27048, 2218, 30685, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '21.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28106, '2021-10-25', 2379, 27049, 2218, NULL, '1.0000', '1.8000', '1.8000', '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 (28107, '2021-10-25', 2565, 27050, 2218, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '8.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 (28108, '2021-10-25', 1586, 27051, 2218, 37756, '1.0000', '69.6045', '69.6045', '65.0000', '65.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28109, '2021-10-25', 7849, 27052, 2218, 37720, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28110, '2021-10-25', 8595, 27053, 2218, NULL, '1.0000', '4.2100', '4.2100', '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 (28111, '2021-10-25', 2948, 27054, 2218, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '158.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 (28112, '2021-10-25', 2992, 27055, 2218, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (28113, '2021-10-25', 1856, 27056, 2218, 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 (28114, '2021-10-25', 1884, 27057, 2218, NULL, '1.0000', '4.8050', '4.8050', '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 (28115, '2021-10-25', 7633, 27058, 2218, 30673, '1.0000', '2.8700', '2.8700', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28116, '2021-10-25', 2916, 27059, 2218, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28117, '2021-10-25', 2167, 27060, 2218, 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 (28118, '2021-10-25', 1912, 27061, 2218, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28119, '2021-10-25', 2169, 27062, 2218, NULL, '2.0000', '1.1500', '1.1500', '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 (28120, '2021-10-25', 1999, 27063, 2218, 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 (28121, '2021-10-25', 2097, 27064, 2218, 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 (28122, '2021-10-25', 1338, 27065, 2219, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28123, '2021-10-25', 1427, 27066, 2219, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28124, '2021-10-25', 1557, 27067, 2219, NULL, '1.0000', '7.8420', '7.8420', '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 (28125, '2021-10-25', 2283, 27068, 2219, 38564, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28126, '2021-10-25', 2135, 27069, 2219, 23175, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (28127, '2021-10-25', 2315, 27070, 2219, NULL, '2.0000', '-6.8895', '-6.8895', '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 (28128, '2021-10-25', 2662, 27071, 2219, 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 (28129, '2021-10-25', 8146, 27072, 2219, NULL, '2.0000', '3.8200', '3.8200', '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 (28130, '2021-10-25', 1602, 27073, 2219, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28131, '2021-10-25', 8497, 27074, 2220, NULL, '2.0000', '-133.2800', '-133.2800', '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 (28132, '2021-10-25', 8000, 27075, 2220, NULL, '2.0000', '41.2918', '41.2918', '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 (28133, '2021-10-25', 7518, 27076, 2220, NULL, '1.0000', '-67.2578', '-67.2578', '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 (28134, '2021-10-25', 8548, 27077, 2220, NULL, '1.0000', '12.0000', '12.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 (28135, '2021-10-25', 2643, 27078, 2220, 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 (28136, '2021-10-25', 7657, 27079, 2220, NULL, '3.0000', '5.4700', '5.4700', '14.0000', '14.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 (28137, '2021-10-25', 2233, 27080, 2220, 37368, '1.0000', '8.2124', '8.2124', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28138, '2021-10-25', 7707, 27081, 2220, NULL, '1.0000', '6.0124', '6.0124', '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 (28139, '2021-10-25', 2506, 27082, 2220, 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 (28140, '2021-10-25', 8454, 27083, 2220, NULL, '1.0000', '5.1700', '5.1700', '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 (28141, '2021-10-25', 8966, 27084, 2220, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28142, '2021-10-25', 2992, 27085, 2220, 35227, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28143, '2021-10-25', 9240, 27086, 2220, NULL, '1.0000', '25.1200', '25.1200', '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 (28144, '2021-10-25', 8230, 27087, 2220, NULL, '1.0000', '5.0000', '5.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 (28145, '2021-10-25', 2699, 27088, 2220, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28146, '2021-10-25', 7641, 27089, 2220, NULL, '1.0000', '6.5038', '6.5038', '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 (28147, '2021-10-25', 9242, 27090, 2220, 34528, '1.0000', '22.5000', '22.5000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28148, '2021-10-25', 7848, 27091, 2220, NULL, '1.0000', '1.3500', '1.3500', '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 (28149, '2021-10-25', 8666, 27092, 2220, NULL, '1.0000', '0.4600', '0.4600', '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 (28150, '2021-10-25', 8166, 27093, 2220, NULL, '2.0000', '4.6000', '4.6000', '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 (28151, '2021-10-25', 7911, 27094, 2220, NULL, '1.0000', '4.3700', '4.3700', '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 (28152, '2021-10-25', 8308, 27095, 2220, NULL, '1.0000', '11.0000', '11.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 (28153, '2021-10-25', 7411, 27096, 2220, NULL, '1.0000', '1.3500', '1.3500', '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 (28154, '2021-10-25', 8994, 27097, 2220, 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 (28155, '2021-10-25', 7523, 27098, 2220, NULL, '1.0000', '1.8300', '1.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 (28156, '2021-10-25', 7743, 27099, 2220, NULL, '1.0000', '7.3900', '7.3900', '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 (28157, '2021-10-25', 7744, 27100, 2220, 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 (28158, '2021-10-25', 8547, 27101, 2220, NULL, '1.0000', '16.5000', '16.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 (28159, '2021-10-25', 8063, 27102, 2220, 36671, '2.0000', '20.7988', '20.7988', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28160, '2021-10-25', 7641, 27103, 2220, NULL, '1.0000', '6.5038', '6.5038', '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 (28161, '2021-10-25', 7514, 27104, 2220, NULL, '2.0000', '12.9983', '12.9983', '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 (28162, '2021-10-25', 8756, 27105, 2220, 38366, '1.0000', '7.4964', '7.4964', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28163, '2021-10-25', 8428, 27106, 2220, 38149, '1.0000', '16.2000', '16.2000', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28164, '2021-10-25', 2993, 27107, 2220, 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 (28165, '2021-10-25', 7390, 27108, 2220, 30019, '1.0000', '18.2100', '18.2100', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28166, '2021-10-25', 9098, 27109, 2220, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28167, '2021-10-25', 7671, 27110, 2220, NULL, '2.0000', '15.5000', '15.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 (28168, '2021-10-25', 7715, 27111, 2220, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28169, '2021-10-25', 8387, 27112, 2220, NULL, '1.0000', '3.0000', '3.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 (28170, '2021-10-25', 7672, 27113, 2220, NULL, '1.0000', '1.0200', '1.0200', '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 (28171, '2021-10-25', 1763, 27114, 2220, 37436, '1.0000', '4.8157', '4.8157', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28172, '2021-10-25', 1629, 27115, 2220, 36067, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28173, '2021-10-25', 7342, 27116, 2220, 38439, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28174, '2021-10-25', 1818, 27117, 2220, 36083, '1.0000', '18.8200', '18.8200', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28175, '2021-10-25', 2656, 27118, 2220, 32804, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28176, '2021-10-25', 9092, 27119, 2220, 38367, '3.0000', '0.7972', '0.7972', '0.5000', '0.5000', '320.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28177, '2021-10-25', 8769, 27120, 2220, 32148, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28178, '2021-10-25', 9098, 27121, 2220, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28179, '2021-10-25', 8324, 27122, 2221, NULL, '1.0000', '3.4130', '3.4130', '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 (28180, '2021-10-25', 1338, 27123, 2221, 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 (28181, '2021-10-25', 9419, 27124, 2221, 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 (28182, '2021-10-25', 7674, 27125, 2221, 33721, '6.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '183.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28183, '2021-10-25', 9177, 27126, 2221, NULL, '5.0000', '0.8000', '0.8000', '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 (28184, '2021-10-25', 7685, 27127, 2221, NULL, '12.0000', '31.2000', '31.2000', '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 (28185, '2021-10-25', 1332, 27128, 2221, 227, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28186, '2021-10-25', 2297, 27129, 2221, NULL, '1.0000', '7.2000', '7.2000', '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 (28187, '2021-10-25', 1532, 27130, 2221, 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 (28188, '2021-10-25', 8982, 27131, 2221, 32141, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28189, '2021-10-25', 7673, 27132, 2221, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28190, '2021-10-25', 1532, 27133, 2221, 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 (28191, '2021-10-25', 7959, 27134, 2221, NULL, '1.0000', '9.6000', '9.6000', '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 (28192, '2021-10-25', 7427, 27135, 2221, 38437, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28193, '2021-10-25', 9469, 27136, 2221, NULL, '1.0000', '2.3000', '2.3000', '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 (28194, '2021-10-25', 7638, 27137, 2221, 30935, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28195, '2021-10-25', 7408, 27138, 2221, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28196, '2021-10-25', 7375, 27139, 2221, 38435, '20.0000', '4.7000', '4.7000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28197, '2021-10-25', 9021, 27140, 2221, NULL, '1.0000', '7.0000', '7.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 (28198, '2021-10-25', 7848, 27141, 2221, NULL, '1.0000', '1.3500', '1.3500', '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 (28199, '2021-10-25', 7588, 27142, 2221, NULL, '1.0000', '7.3047', '7.3047', '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 (28200, '2021-10-25', 7514, 27143, 2221, NULL, '1.0000', '12.9983', '12.9983', '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 (28201, '2021-10-25', 8000, 27144, 2221, NULL, '1.0000', '41.2918', '41.2918', '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 (28202, '2021-10-25', 8087, 27145, 2221, NULL, '1.0000', '20.2600', '20.2600', '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 (28203, '2021-10-25', 7933, 27146, 2221, NULL, '1.0000', '5.5000', '5.5000', '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 (28204, '2021-10-25', 7564, 27147, 2221, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28205, '2021-10-25', 9462, 27148, 2221, 38138, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28206, '2021-10-25', 7507, 27149, 2221, NULL, '3.0000', '6.5000', '6.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 (28207, '2021-10-25', 7809, 27150, 2221, 38154, '1.0000', '13.5000', '13.5000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28208, '2021-10-25', 8594, 27151, 2221, 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 (28209, '2021-10-25', 7385, 27152, 2221, 38611, '2.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '53.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28210, '2021-10-25', 7507, 27153, 2221, NULL, '3.0000', '6.5000', '6.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 (28211, '2021-10-25', 8497, 27154, 2221, NULL, '1.0000', '-133.2800', '-133.2800', '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 (28212, '2021-10-25', 3026, 27155, 2221, 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 (28213, '2021-10-25', 7765, 27156, 2221, NULL, '2.0000', '16.0000', '16.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 (28214, '2021-10-25', 7954, 27157, 2221, NULL, '8.0000', '21.0000', '21.0000', '4.0000', '4.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 (28215, '2021-10-25', 2876, 27158, 2221, 38349, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28216, '2021-10-25', 9193, 27159, 2221, NULL, '1.0000', '6.8063', '6.8063', '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 (28217, '2021-10-25', 7547, 27160, 2221, NULL, '4.0000', '0.0000', '0.0000', '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 (28218, '2021-10-25', 7674, 27161, 2221, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '187.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28219, '2021-10-25', 2315, 27162, 2221, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '109.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28220, '2021-10-25', 8387, 27163, 2221, NULL, '1.0000', '3.0000', '3.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 (28221, '2021-10-25', 7318, 27164, 2221, 37431, '1.0000', '11.1265', '11.1265', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28222, '2021-10-25', 8702, 27165, 2222, NULL, '1.0000', '3.6700', '3.6700', '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 (28223, '2021-10-25', 7892, 27166, 2222, NULL, '1.0000', '4.2000', '4.2000', '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 (28224, '2021-10-25', 9143, 27167, 2222, 37848, '1.0000', '9.4967', '9.4967', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28225, '2021-10-25', 7411, 27168, 2222, NULL, '1.0000', '1.3500', '1.3500', '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 (28226, '2021-10-25', 8714, 27169, 2222, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28227, '2021-10-25', 8418, 27170, 2222, 30185, '1.0000', '43.8200', '43.8200', '58.0000', '58.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28228, '2021-10-25', 7947, 27171, 2222, NULL, '1.0000', '14.4400', '14.4400', '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 (28229, '2021-10-25', 8313, 27172, 2222, NULL, '1.0000', '13.2000', '13.2000', '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 (28230, '2021-10-25', 7514, 27173, 2222, NULL, '2.0000', '12.9983', '12.9983', '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 (28231, '2021-10-25', 8889, 27174, 2222, 38370, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '7.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28232, '2021-10-25', 7672, 27175, 2222, NULL, '1.0000', '1.0200', '1.0200', '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 (28233, '2021-10-25', 7859, 27176, 2222, NULL, '1.0000', '3.6000', '3.6000', '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 (28234, '2021-10-25', 7408, 27177, 2223, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28235, '2021-10-25', 7612, 27178, 2223, 38431, '1.0000', '1.1770', '1.1770', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28236, '2021-10-25', 7429, 27179, 2223, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28237, '2021-10-25', 9266, 27180, 2223, 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 (28238, '2021-10-25', 9193, 27181, 2223, NULL, '1.0000', '6.8063', '6.8063', '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 (28239, '2021-10-25', 2655, 27182, 2223, 32803, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28240, '2021-10-25', 2285, 27183, 2224, NULL, '1.0000', '36.1500', '36.1500', '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 (28241, '2021-10-25', 1757, 27184, 2224, 37786, '1.0000', '4.0024', '4.0024', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28242, '2021-10-25', 2169, 27185, 2224, NULL, '1.0000', '1.1500', '1.1500', '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 (28243, '2021-10-25', 8984, 27186, 2224, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28244, '2021-10-25', 2662, 27187, 2224, 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 (28245, '2021-10-25', 7411, 27188, 2224, NULL, '1.0000', '1.3500', '1.3500', '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 (28246, '2021-10-25', 7482, 27189, 2224, 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 (28247, '2021-10-25', 7411, 27190, 2224, NULL, '2.0000', '1.3500', '1.3500', '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 (28248, '2021-10-25', 9503, 27191, 2224, 37717, '2.0000', '11.4766', '11.4766', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28249, '2021-10-25', 1748, 27192, 2224, NULL, '2.0000', '0.3200', '0.3200', '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 (28250, '2021-10-25', 7411, 27193, 2224, NULL, '2.0000', '1.3500', '1.3500', '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 (28251, '2021-10-25', 8133, 27194, 2224, 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 (28252, '2021-10-25', 9413, 27195, 2224, 38544, '1.0000', '7.9285', '7.9285', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28253, '2021-10-25', 7328, 27196, 2224, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (28254, '2021-10-25', 2951, 27197, 2224, 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 (28255, '2021-10-25', 7564, 27198, 2224, NULL, '1.0000', '0.6400', '0.6400', '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 (28256, '2021-10-25', 1412, 27199, 2224, 24977, '1.0000', '14.0000', '14.0000', '18.5000', '18.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 (28257, '2021-10-25', 9445, 27200, 2224, 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 (28258, '2021-10-25', 1743, 27201, 2224, 29646, '1.0000', '4.6550', '4.6550', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28259, '2021-10-25', 2260, 27202, 2224, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28260, '2021-10-25', 7743, 27203, 2224, NULL, '1.0000', '7.3900', '7.3900', '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 (28261, '2021-10-25', 1651, 27204, 2224, 37782, '2.0000', '10.3802', '10.3802', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28262, '2021-10-25', 7744, 27205, 2224, NULL, '2.0000', '1.9000', '1.9000', '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 (28263, '2021-10-25', 8608, 27206, 2224, NULL, '1.0000', '0.9000', '0.9000', '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 (28264, '2021-10-25', 9399, 27207, 2224, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28265, '2021-10-25', 2129, 27208, 2224, 34597, '1.0000', '6.4100', '6.4100', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28266, '2021-10-25', 9491, 27209, 2224, NULL, '1.0000', '14.5000', '14.5000', '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 (28267, '2021-10-25', 1620, 27210, 2224, 38596, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28268, '2021-10-25', 8984, 27211, 2224, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28269, '2021-10-25', 7743, 27212, 2224, NULL, '2.0000', '7.3900', '7.3900', '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 (28270, '2021-10-25', 1339, 27213, 2224, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28271, '2021-10-25', 2713, 27214, 2224, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28272, '2021-10-25', 8208, 27215, 2224, NULL, '2.0000', '33.0000', '33.0000', '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 (28273, '2021-10-25', 2728, 27216, 2224, 19354, '2.0000', '0.8000', '0.8000', '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 (28274, '2021-10-25', 1501, 27217, 2224, NULL, '1.0000', '2.2100', '2.2100', '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 (28275, '2021-10-25', 2821, 27218, 2224, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28276, '2021-10-25', 1310, 27219, 2224, 34631, '3.0000', '0.3700', '0.3700', '0.6000', '0.6000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28277, '2021-10-25', 2167, 27220, 2224, 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 (28278, '2021-10-25', 1590, 27221, 2224, 38592, '1.0000', '1.9878', '1.9878', '2.3000', '2.3000', '2.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28279, '2021-10-25', 1602, 27222, 2224, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28280, '2021-10-25', 1668, 27223, 2225, NULL, '1.0000', '-141.3000', '-141.3000', '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 (28281, '2021-10-25', 7411, 27224, 2225, NULL, '1.0000', '1.3500', '1.3500', '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 (28282, '2021-10-25', 1888, 27225, 2225, 37751, '1.0000', '194.0075', '194.0075', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28283, '2021-10-25', 1667, 27226, 2226, 9745, '-16.0000', '5.9400', '5.9400', '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 (28284, '2021-10-25', 1667, 27226, 2226, NULL, '17.0000', '5.9400', '5.9400', '8.5000', '8.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 (28285, '2021-10-25', 1690, 27227, 2227, 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 (28286, '2021-10-25', 1812, 27228, 2227, 34943, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28287, '2021-10-25', 1347, 27229, 2228, NULL, '5.0000', '4.0713', '4.0713', '4.5000', '4.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 (28288, '2021-10-25', 1787, 27230, 2228, 36387, '1.0000', '0.8100', '0.8100', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28289, '2021-10-25', 1905, 27231, 2228, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.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 (28290, '2021-10-25', 7746, 27232, 2228, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28291, '2021-10-25', 2169, 27233, 2228, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28292, '2021-10-25', 2643, 27234, 2228, 10577, '1.0000', '0.8700', '0.8700', '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 (28293, '2021-10-25', 1488, 27235, 2228, 33032, '1.0000', '18.3333', '18.3333', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28294, '2021-10-25', 2169, 27236, 2228, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28295, '2021-10-25', 2801, 27237, 2228, 19034, '1.0000', '65.8800', '65.8800', '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 (28296, '2021-10-25', 2780, 27238, 2228, 19053, '1.0000', '52.0200', '52.0200', '110.0000', '110.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28297, '2021-10-25', 9554, 27239, 2228, 36796, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28298, '2021-10-25', 2876, 27240, 2228, 36797, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28299, '2021-10-25', 2317, 27241, 2228, 36788, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '56.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28300, '2021-10-25', 7737, 27242, 2228, NULL, '1.0000', '3.0000', '3.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 (28301, '2021-10-25', 1577, 27243, 2228, 37559, '1.0000', '4.9372', '4.9372', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28302, '2021-10-25', 2868, 27244, 2228, 18448, '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 (28303, '2021-10-25', 9565, 27245, 2228, 36818, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28304, '2021-10-25', 2419, 27246, 2228, 5804, '1.0000', '14.0000', '14.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 (28305, '2021-10-25', 2009, 27247, 2228, 6436, '1.0000', '18.0000', '18.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 (28306, '2021-10-25', 2521, 27248, 2228, 7522, '1.0000', '6.9430', '6.9430', '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 (28307, '2021-10-25', 3041, 27249, 2228, 24002, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '18.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 (28308, '2021-10-25', 2681, 27250, 2228, 38083, '2.0000', '12.7329', '12.7329', '16.5000', '16.5000', '8.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28309, '2021-10-25', 9563, 27251, 2228, 36816, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28310, '2021-10-25', 1812, 27252, 2228, 37578, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28311, '2021-10-25', 2233, 27253, 2228, 38084, '1.0000', '20.0557', '20.0557', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28312, '2021-10-25', 8608, 27254, 2228, NULL, '1.0000', '0.9000', '0.9000', '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 (28313, '2021-10-25', 9444, 27255, 2228, 30511, '2.0000', '1.8000', '1.8000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 210);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28314, '2021-10-25', 9580, 27256, 2228, 38261, '2.0000', '5.0000', '5.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28315, '2021-10-25', 2447, 27257, 2228, 5833, '2.0000', '3.8000', '3.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 (28316, '2021-10-25', 2806, 27258, 2228, 16936, '1.0000', '5.7500', '5.7500', '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 (28317, '2021-10-25', 2010, 27259, 2228, 27316, '1.0000', '1.2933', '1.2933', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28318, '2021-10-25', 8188, 27260, 2228, NULL, '12.0000', '0.9000', '0.9000', '18.0000', '18.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 (28319, '2021-10-25', 9090, 27261, 2228, NULL, '1.0000', '0.2400', '0.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 (28320, '2021-10-25', 9089, 27262, 2228, 35943, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28321, '2021-10-25', 1704, 27263, 2229, 24267, '1.0000', '910.4120', '910.4120', '36.0000', '36.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 (28322, '2021-10-25', 2695, 27264, 2229, 12681, '3.0000', '2.0000', '2.0000', '2.7000', '2.7000', '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 (28323, '2021-10-25', 1346, 27265, 2229, 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 (28324, '2021-10-25', 2289, 27266, 2229, NULL, '4.0000', '0.2300', '0.2300', '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 (28325, '2021-10-25', 2712, 27267, 2229, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28326, '2021-10-25', 2763, 27268, 2229, 15805, '1.0000', '7.5000', '7.5000', '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 (28327, '2021-10-25', 2618, 27269, 2229, 10553, '1.0000', '4.1000', '4.1000', '5.5000', '5.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 (28328, '2021-10-25', 2302, 27270, 2229, 32815, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28329, '2021-10-25', 1427, 27271, 2229, 38068, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28330, '2021-10-25', 2169, 27272, 2229, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28331, '2021-10-25', 7496, 27273, 2229, NULL, '1.0000', '0.9600', '0.9600', '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 (28332, '2021-10-25', 2280, 27274, 2229, 21586, '1.0000', '1.9000', '1.9000', '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 (28333, '2021-10-25', 1866, 27275, 2229, 16903, '1.0000', '4.7500', '4.7500', '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 (28334, '2021-10-25', 1757, 27276, 2229, 5005, '1.0000', '4.4000', '4.4000', '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 (28335, '2021-10-25', 2504, 27277, 2229, 6119, '1.0000', '35.0000', '35.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 (28336, '2021-10-25', 2643, 27278, 2229, 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 (28337, '2021-10-25', 2315, 27279, 2229, 3069, '1.0000', '0.3300', '0.3300', '0.6000', '0.6000', '218.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28338, '2021-10-25', 1855, 27280, 2229, 4986, '1.0000', '1.4000', '1.4000', '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 (28339, '2021-10-25', 9539, 27281, 2229, 36335, '1.0000', '26.0000', '26.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28340, '2021-10-25', 2656, 27282, 2229, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28341, '2021-10-25', 1637, 27283, 2229, 36327, '1.0000', '239.8270', '239.8270', '14.0000', '14.0000', '12.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28342, '2021-10-25', 2291, 27284, 2229, 38082, '1.0000', '21.0000', '21.0000', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28343, '2021-10-25', 2541, 27285, 2229, 37583, '1.0000', '10.0414', '10.0414', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28344, '2021-10-25', 1563, 27286, 2229, 1670, '1.0000', '4.9000', '4.9000', '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 (28345, '2021-10-25', 2409, 27287, 2229, 34692, '1.0000', '2.3100', '2.3100', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28346, '2021-10-25', 2039, 27288, 2229, 18356, '1.0000', '9.0000', '9.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 (28347, '2021-10-25', 1454, 27289, 2229, 5621, '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 (28348, '2021-10-25', 1761, 27290, 2229, 34421, '2.0000', '1.8200', '1.8200', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28349, '2021-10-25', 1863, 27291, 2229, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28350, '2021-10-25', 2669, 27292, 2229, 38079, '1.0000', '28.6241', '28.6241', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28351, '2021-10-25', 3074, 27293, 2229, 27317, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28352, '2021-10-25', 2035, 27294, 2229, 6415, '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 (28353, '2021-10-25', 2315, 27295, 2229, 3069, '2.0000', '0.3300', '0.3300', '0.6000', '0.6000', '217.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28354, '2021-10-25', 2123, 27296, 2229, 2645, '1.0000', '20.0000', '20.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 (28355, '2021-10-25', 7953, 27297, 2229, NULL, '1.0000', '6.0000', '6.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 (28356, '2021-10-25', 2221, 27298, 2229, 36361, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28357, '2021-10-25', 1782, 27299, 2229, 4935, '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 (28358, '2021-10-25', 2915, 27300, 2229, 32872, '1.0000', '15.4500', '15.4500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28359, '2021-10-25', 1811, 27301, 2229, 24346, '1.0000', '14.5300', '14.5300', '19.5000', '19.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 (28360, '2021-10-25', 1812, 27302, 2229, 36378, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28361, '2021-10-25', 2169, 27303, 2229, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28362, '2021-10-25', 2237, 27304, 2229, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '7.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 (28363, '2021-10-25', 2315, 27305, 2229, 3069, '1.0000', '0.3300', '0.3300', '0.6000', '0.6000', '218.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28364, '2021-10-25', 1658, 27306, 2229, 34675, '1.0000', '27.9300', '27.9300', '35.5000', '35.5000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28365, '2021-10-25', 2407, 27307, 2229, 4812, '1.0000', '20.2000', '20.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 (28366, '2021-10-25', 2354, 27308, 2229, 3905, '1.0000', '4.6000', '4.6000', '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 (28367, '2021-10-25', 1677, 27309, 2229, 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 (28368, '2021-10-25', 1665, 27310, 2229, 38076, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28369, '2021-10-25', 1602, 27311, 2229, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '42.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28370, '2021-10-25', 2660, 27312, 2229, 37560, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28371, '2021-10-25', 2656, 27313, 2229, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28372, '2021-10-26', 1816, 27314, 2230, NULL, '1.0000', '19.7500', '19.7500', '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 (28373, '2021-10-26', 2136, 27315, 2230, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28374, '2021-10-26', 2309, 27316, 2230, 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 (28375, '2021-10-26', 2136, 27317, 2230, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28376, '2021-10-26', 8074, 27318, 2230, NULL, '1.0000', '3.2800', '3.2800', '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 (28377, '2021-10-26', 2379, 27319, 2230, NULL, '1.0000', '1.8000', '1.8000', '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 (28378, '2021-10-26', 1667, 27320, 2230, 38942, '1.0000', '18.8988', '18.8988', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28379, '2021-10-26', 7703, 27321, 2230, NULL, '1.0000', '22.9900', '22.9900', '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 (28380, '2021-10-26', 1387, 27322, 2230, 23677, '1.0000', '11.7000', '11.7000', '16.0000', '16.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 (28381, '2021-10-26', 7750, 27323, 2230, NULL, '1.0000', '34.9000', '34.9000', '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 (28382, '2021-10-26', 7879, 27324, 2230, NULL, '10.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (28383, '2021-10-26', 2037, 27325, 2230, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '18.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 (28384, '2021-10-26', 2948, 27326, 2230, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '155.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 (28385, '2021-10-26', 2272, 27327, 2230, 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 (28386, '2021-10-26', 2221, 27328, 2230, 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 (28387, '2021-10-26', 2565, 27329, 2230, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '7.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 (28388, '2021-10-26', 1422, 27330, 2231, 37816, '1.0000', '18.0000', '18.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28389, '2021-10-26', 7719, 27331, 2232, NULL, '1.0000', '5.5000', '5.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 (28390, '2021-10-26', 8061, 27332, 2232, NULL, '1.0000', '1.6000', '1.6000', '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 (28391, '2021-10-26', 2384, 27333, 2232, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28392, '2021-10-26', 2295, 27334, 2232, 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 (28393, '2021-10-26', 1532, 27335, 2232, 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 (28394, '2021-10-26', 7741, 27336, 2232, 36081, '1.0000', '5.8811', '5.8811', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28395, '2021-10-26', 8456, 27337, 2232, NULL, '1.0000', '5.5400', '5.5400', '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 (28396, '2021-10-26', 2060, 27338, 2232, 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 (28397, '2021-10-26', 7514, 27339, 2232, NULL, '1.0000', '12.9983', '12.9983', '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 (28398, '2021-10-26', 8063, 27340, 2232, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '26.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28399, '2021-10-26', 9089, 27341, 2232, 39066, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28400, '2021-10-26', 7674, 27342, 2232, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '179.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28401, '2021-10-26', 8485, 27343, 2232, NULL, '1.0000', '7.0400', '7.0400', '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 (28402, '2021-10-26', 1409, 27344, 2232, 36049, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28403, '2021-10-26', 1311, 27345, 2232, 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 (28404, '2021-10-26', 7411, 27346, 2232, NULL, '2.0000', '1.3500', '1.3500', '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 (28405, '2021-10-26', 9280, 27347, 2232, NULL, '1.0000', '12.0000', '12.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 (28406, '2021-10-26', 7911, 27348, 2232, NULL, '1.0000', '4.3700', '4.3700', '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 (28407, '2021-10-26', 1314, 27349, 2232, 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 (28408, '2021-10-26', 7780, 27350, 2232, NULL, '1.0000', '2.6000', '2.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 (28409, '2021-10-26', 7753, 27351, 2232, NULL, '1.0000', '3.9360', '3.9360', '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 (28410, '2021-10-26', 7642, 27352, 2232, NULL, '1.0000', '34.9900', '34.9900', '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 (28411, '2021-10-26', 7819, 27353, 2232, NULL, '1.0000', '9.5000', '9.5000', '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 (28412, '2021-10-26', 1841, 27354, 2232, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '124.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28413, '2021-10-26', 7674, 27355, 2232, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '180.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28414, '2021-10-26', 7762, 27356, 2232, NULL, '1.0000', '5.1000', '5.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 (28415, '2021-10-26', 7473, 27357, 2232, NULL, '5.0000', '15.4731', '15.4731', '0.6000', '0.6000', '-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 (28416, '2021-10-26', 9240, 27358, 2232, NULL, '1.0000', '25.1200', '25.1200', '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 (28417, '2021-10-26', 2992, 27359, 2232, 35227, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28418, '2021-10-26', 2060, 27360, 2232, 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 (28419, '2021-10-26', 2992, 27361, 2232, 35227, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28420, '2021-10-26', 7411, 27362, 2232, NULL, '1.0000', '1.3500', '1.3500', '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 (28421, '2021-10-26', 9266, 27363, 2232, 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 (28422, '2021-10-26', 7385, 27364, 2232, 38611, '10.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28423, '2021-10-26', 1425, 27365, 2233, 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 (28424, '2021-10-26', 8448, 27366, 2233, NULL, '1.0000', '6.8900', '6.8900', '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 (28425, '2021-10-26', 2951, 27367, 2233, 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 (28426, '2021-10-26', 7411, 27368, 2233, NULL, '1.0000', '1.3500', '1.3500', '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 (28427, '2021-10-26', 1715, 27369, 2233, 37809, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28428, '2021-10-26', 1520, 27370, 2233, 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 (28429, '2021-10-26', 8984, 27371, 2233, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28430, '2021-10-26', 1501, 27372, 2233, NULL, '1.0000', '2.2100', '2.2100', '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 (28431, '2021-10-26', 2951, 27373, 2233, 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 (28432, '2021-10-26', 9503, 27374, 2233, 37717, '1.0000', '11.4766', '11.4766', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28433, '2021-10-26', 2237, 27375, 2233, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28434, '2021-10-26', 1651, 27376, 2233, 37782, '1.0000', '10.3802', '10.3802', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28435, '2021-10-26', 8677, 27377, 2233, NULL, '2.0000', '89.9250', '89.9250', '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 (28436, '2021-10-26', 1912, 27378, 2233, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28437, '2021-10-26', 1945, 27379, 2233, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.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 (28438, '2021-10-26', 1839, 27380, 2233, NULL, '1.0000', '6.0835', '6.0835', '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 (28439, '2021-10-26', 7780, 27381, 2233, NULL, '1.0000', '2.6000', '2.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 (28440, '2021-10-26', 2521, 27382, 2233, 38266, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28441, '2021-10-26', 7482, 27383, 2233, 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 (28442, '2021-10-26', 8677, 27384, 2233, NULL, '2.0000', '89.9250', '89.9250', '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 (28443, '2021-10-26', 1935, 27385, 2233, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28444, '2021-10-26', 1854, 27386, 2233, 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 (28445, '2021-10-26', 2169, 27387, 2233, NULL, '1.0000', '1.1500', '1.1500', '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 (28446, '2021-10-26', 2251, 27388, 2233, 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 (28447, '2021-10-26', 9563, 27389, 2233, 38991, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28448, '2021-10-26', 8638, 27390, 2233, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28449, '2021-10-26', 3058, 27391, 2233, 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 (28450, '2021-10-26', 7666, 27392, 2233, NULL, '1.0000', '10.0000', '10.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 (28451, '2021-10-26', 7482, 27393, 2233, 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 (28452, '2021-10-26', 1854, 27394, 2233, 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 (28453, '2021-10-26', 7514, 27395, 2233, NULL, '2.0000', '2.2500', '2.2500', '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 (28454, '2021-10-26', 2293, 27396, 2233, NULL, '3.0000', '1.4400', '1.4400', '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 (28455, '2021-10-26', 8763, 27397, 2233, NULL, '1.0000', '5.4000', '5.4000', '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 (28456, '2021-10-26', 7409, 27398, 2233, NULL, '3.0000', '1.3200', '1.3200', '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 (28457, '2021-10-26', 1380, 27399, 2233, 25020, '1.0000', '7.7000', '7.7000', '10.0000', '10.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 (28458, '2021-10-26', 7750, 27400, 2233, NULL, '1.0000', '34.9000', '34.9000', '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 (28459, '2021-10-26', 1649, 27401, 2233, 38535, '1.0000', '11.5000', '11.5000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28460, '2021-10-26', 7674, 27402, 2234, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '176.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28461, '2021-10-26', 7526, 27403, 2234, NULL, '1.0000', '0.2400', '0.2400', '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 (28462, '2021-10-26', 9554, 27404, 2234, 39023, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28463, '2021-10-26', 2869, 27405, 2234, NULL, '1.0000', '20.0000', '20.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 (28464, '2021-10-26', 7658, 27406, 2234, NULL, '2.0000', '18.1404', '18.1404', '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 (28465, '2021-10-26', 7886, 27407, 2234, NULL, '1.0000', '16.1667', '16.1667', '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 (28466, '2021-10-26', 7753, 27408, 2234, NULL, '2.0000', '3.9360', '3.9360', '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 (28467, '2021-10-26', 8097, 27409, 2234, NULL, '4.0000', '3.3994', '3.3994', '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 (28468, '2021-10-26', 7782, 27410, 2234, NULL, '1.0000', '5.0000', '5.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 (28469, '2021-10-26', 8735, 27411, 2234, NULL, '1.0000', '5.6000', '5.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 (28470, '2021-10-26', 7507, 27412, 2234, NULL, '3.0000', '6.5000', '6.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 (28471, '2021-10-26', 7514, 27413, 2234, NULL, '1.0000', '12.9983', '12.9983', '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 (28472, '2021-10-26', 7885, 27414, 2234, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28473, '2021-10-26', 7378, 27415, 2234, 30011, '1.0000', '40.9567', '40.9567', '197.0000', '197.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28474, '2021-10-26', 7952, 27416, 2234, NULL, '1.0000', '10.4000', '10.4000', '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 (28475, '2021-10-26', 2656, 27417, 2234, 31906, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28476, '2021-10-26', 7664, 27418, 2234, NULL, '1.0000', '3.6000', '3.6000', '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 (28477, '2021-10-26', 7507, 27419, 2234, NULL, '3.0000', '6.5000', '6.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 (28478, '2021-10-26', 7750, 27420, 2234, NULL, '1.0000', '34.9000', '34.9000', '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 (28479, '2021-10-26', 7781, 27421, 2234, NULL, '3.0000', '4.2500', '4.2500', '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 (28480, '2021-10-26', 7482, 27422, 2234, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28481, '2021-10-26', 7894, 27423, 2234, 38140, '1.0000', '-38.6667', '-38.6667', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28482, '2021-10-26', 2315, 27424, 2234, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '108.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28483, '2021-10-26', 7457, 27425, 2234, 37428, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28484, '2021-10-26', 9092, 27426, 2234, 39042, '1.0000', '0.1303', '0.1303', '0.5000', '0.5000', '319.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28485, '2021-10-26', 7641, 27427, 2234, NULL, '1.0000', '6.5038', '6.5038', '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 (28486, '2021-10-26', 7411, 27428, 2234, NULL, '1.0000', '1.3500', '1.3500', '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 (28487, '2021-10-26', 7411, 27429, 2234, NULL, '1.0000', '1.3500', '1.3500', '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 (28488, '2021-10-26', 7482, 27430, 2234, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28489, '2021-10-26', 9453, 27431, 2234, 36053, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28490, '2021-10-26', 9150, 27432, 2234, 35237, '1.0000', '16.1784', '16.1784', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28491, '2021-10-26', 8735, 27433, 2234, NULL, '1.0000', '5.6000', '5.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 (28492, '2021-10-26', 7412, 27434, 2234, NULL, '1.0000', '1.5200', '1.5200', '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 (28493, '2021-10-26', 7758, 27435, 2234, NULL, '1.0000', '10.8500', '10.8500', '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 (28494, '2021-10-26', 9098, 27436, 2234, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28495, '2021-10-26', 7748, 27437, 2234, NULL, '1.0000', '33.9800', '33.9800', '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 (28496, '2021-10-26', 7514, 27438, 2234, NULL, '1.0000', '12.9983', '12.9983', '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 (28497, '2021-10-26', 7819, 27439, 2234, NULL, '1.0000', '9.5000', '9.5000', '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 (28498, '2021-10-26', 7583, 27440, 2234, NULL, '1.0000', '4.0000', '4.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 (28499, '2021-10-26', 7412, 27441, 2234, NULL, '2.0000', '1.5200', '1.5200', '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 (28500, '2021-10-26', 7674, 27442, 2234, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '176.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28501, '2021-10-26', 7674, 27443, 2234, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '177.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28502, '2021-10-26', 1671, 27444, 2234, NULL, '10.0000', '90.0000', '90.0000', '6.4000', '6.4000', '-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 (28503, '2021-10-26', 7612, 27445, 2234, NULL, '2.0000', '1.1770', '1.1770', '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 (28504, '2021-10-26', 9154, 27446, 2234, 37372, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28505, '2021-10-26', 1917, 27447, 2234, 30925, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28506, '2021-10-26', 8188, 27448, 2234, 32132, '1.0000', '6.7000', '6.7000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28507, '2021-10-26', 8969, 27449, 2234, NULL, '1.0000', '2.0000', '2.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 (28508, '2021-10-26', 7507, 27450, 2234, NULL, '3.0000', '6.5000', '6.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 (28509, '2021-10-26', 9563, 27451, 2234, 39070, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '23.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28510, '2021-10-26', 9563, 27452, 2234, 39070, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '23.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28511, '2021-10-26', 7509, 27453, 2235, 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 (28512, '2021-10-26', 1602, 27454, 2236, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28513, '2021-10-26', 1863, 27455, 2236, NULL, '1.0000', '1.2830', '1.2830', '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 (28514, '2021-10-26', 8984, 27456, 2236, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28515, '2021-10-26', 2066, 27457, 2236, 34656, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28516, '2021-10-26', 9606, 27458, 2237, 38990, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28517, '2021-10-26', 2518, 27459, 2237, 38520, '1.0000', '117.9034', '117.9034', '155.0000', '155.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28518, '2021-10-27', 1665, 27460, 2238, 3235, '-19.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 (28519, '2021-10-27', 1665, 27460, 2238, NULL, '20.0000', '1.3000', '1.3000', '2.0000', '2.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 (28520, '2021-10-27', 1966, 27461, 2238, 3237, '-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 (28521, '2021-10-27', 1966, 27461, 2238, 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 (28522, '2021-10-27', 7444, 27462, 2238, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28523, '2021-10-27', 1895, 27463, 2238, NULL, '1.0000', '7.0200', '7.0200', '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 (28524, '2021-10-27', 7915, 27464, 2238, NULL, '1.0000', '2.8000', '2.8000', '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 (28525, '2021-10-27', 2486, 27465, 2239, 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 (28526, '2021-10-27', 2169, 27466, 2239, 10737, '1.0000', '3.8397', '3.8397', '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 (28527, '2021-10-27', 2360, 27467, 2239, 3862, '-13.0000', '0.5200', '0.5200', '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 (28528, '2021-10-27', 2360, 27467, 2239, NULL, '15.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (28529, '2021-10-27', 1337, 27468, 2239, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '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 (28530, '2021-10-27', 1638, 27469, 2239, 22271, '16.0000', '10.8843', '10.8843', '8.0000', '8.0000', '32.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 (28531, '2021-10-27', 1593, 27470, 2239, 8359, '7.0000', '57.4565', '57.4565', '8.7000', '8.7000', '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 (28532, '2021-10-27', 2315, 27471, 2239, 2735, '-130.0000', '0.3300', '0.3300', '0.6000', '0.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 (28533, '2021-10-27', 2315, 27471, 2239, NULL, '132.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-132.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28534, '2021-10-27', 1396, 27472, 2239, 22315, '4.0000', '2.7000', '2.7000', '3.5000', '3.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 (28535, '2021-10-27', 1549, 27473, 2239, NULL, '1.0000', '21.1300', '21.1300', '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 (28536, '2021-10-27', 1812, 27474, 2239, 8224, '-17.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 (28537, '2021-10-27', 1812, 27474, 2239, NULL, '18.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-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 (28538, '2021-10-27', 7875, 27475, 2240, NULL, '1.0000', '4.3000', '4.3000', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28539, '2021-10-27', 2384, 27476, 2240, 18845, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '7.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 (28540, '2021-10-27', 8190, 27477, 2240, NULL, '1.0000', '11.0500', '11.0500', '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 (28541, '2021-10-27', 1333, 27478, 2240, 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 (28542, '2021-10-27', 1521, 27479, 2240, 22243, '1.0000', '2.5754', '2.5754', '3.5000', '3.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 (28543, '2021-10-27', 2812, 27480, 2240, NULL, '1.0000', '98.5600', '98.5600', '130.0000', '130.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28544, '2021-10-27', 2262, 27481, 2240, 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 (28545, '2021-10-27', 2262, 27481, 2240, 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 (28546, '2021-10-27', 1665, 27482, 2240, 3235, '-20.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 (28547, '2021-10-27', 1665, 27482, 2240, NULL, '21.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28548, '2021-10-27', 2242, 27483, 2240, 22259, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '21.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 (28549, '2021-10-27', 2643, 27484, 2240, 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 (28550, '2021-10-27', 1550, 27485, 2240, NULL, '1.0000', '13.9000', '13.9000', '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 (28551, '2021-10-27', 1687, 27486, 2240, 5785, '-9.0000', '165.9024', '165.9024', '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 (28552, '2021-10-27', 1687, 27486, 2240, NULL, '10.0000', '165.9024', '165.9024', '16.0000', '16.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 (28553, '2021-10-27', 9554, 27487, 2240, 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 (28554, '2021-10-27', 1439, 27488, 2240, 4702, '2.0000', '1.0000', '1.0000', '1.3000', '1.3000', '7.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 (28555, '2021-10-27', 2240, 27489, 2240, NULL, '1.0000', '36.9100', '36.9100', '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 (28556, '2021-10-27', 1651, 27490, 2240, 3222, '-15.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 (28557, '2021-10-27', 1651, 27490, 2240, NULL, '16.0000', '6.7039', '6.7039', '10.0000', '10.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 (28558, '2021-10-27', 2592, 27491, 2240, 10812, '-8.0000', '7.9670', '7.9670', '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 (28559, '2021-10-27', 2592, 27491, 2240, NULL, '9.0000', '7.9670', '7.9670', '10.5000', '10.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 (28560, '2021-10-27', 1420, 27492, 2240, 22318, '5.0000', '1.2000', '1.2000', '2.0000', '2.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 (28561, '2021-10-27', 2656, 27493, 2240, NULL, '3.0000', '1.5000', '1.5000', '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 (28562, '2021-10-27', 3057, 27494, 2240, NULL, '12.0000', '2.7000', '2.7000', '4.5000', '4.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 (28563, '2021-10-27', 9480, 27495, 2240, NULL, '1.0000', '8.5000', '8.5000', '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 (28564, '2021-10-27', 2094, 27496, 2240, 1036, '1.0000', '2.9000', '2.9000', '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 (28565, '2021-10-27', 1338, 27497, 2240, 16502, '-5.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 (28566, '2021-10-27', 1338, 27497, 2240, NULL, '6.0000', '4.0000', '4.0000', '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 (28567, '2021-10-27', 2858, 27498, 2240, 17772, '-1.0000', '1.0000', '1.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 (28568, '2021-10-27', 2858, 27498, 2240, NULL, '2.0000', '1.0000', '1.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 (28569, '2021-10-27', 2916, 27499, 2240, 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 (28570, '2021-10-27', 1756, 27500, 2240, 3166, '-6.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 (28571, '2021-10-27', 1756, 27500, 2240, NULL, '8.0000', '90.0000', '90.0000', '6.5000', '6.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 (28572, '2021-10-27', 2730, 27501, 2240, 19267, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '38.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 (28573, '2021-10-27', 7532, 27502, 2240, NULL, '1.0000', '20.6000', '20.6000', '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 (28574, '2021-10-27', 1825, 27503, 2240, 11265, '-2.0000', '4.8000', '4.8000', '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 (28575, '2021-10-27', 1825, 27503, 2240, NULL, '3.0000', '4.8000', '4.8000', '7.0000', '7.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 (28576, '2021-10-27', 2546, 27504, 2240, 6310, '1.0000', '13.7598', '13.7598', '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 (28577, '2021-10-27', 2317, 27505, 2240, 3473, '2.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 (28578, '2021-10-27', 9532, 27506, 2240, 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 (28579, '2021-10-27', 2256, 27507, 2240, NULL, '1.0000', '12.7400', '12.7400', '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 (28580, '2021-10-27', 1310, 27508, 2240, NULL, '2.0000', '0.3700', '0.3700', '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 (28581, '2021-10-27', 2236, 27509, 2240, 2780, '-1.0000', '5.6599', '5.6599', '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 (28582, '2021-10-27', 2236, 27509, 2240, NULL, '2.0000', '5.6599', '5.6599', '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 (28583, '2021-10-27', 7886, 27510, 2240, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28584, '2021-10-27', 2154, 27511, 2240, 1369, '1.0000', '10.6849', '10.6849', '16.0000', '16.0000', '8.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 (28585, '2021-10-27', 1665, 27512, 2240, 3235, '-20.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 (28586, '2021-10-27', 1665, 27512, 2240, NULL, '21.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28587, '2021-10-27', 2327, 27513, 2240, 5083, '-12.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 (28588, '2021-10-27', 2327, 27513, 2240, NULL, '13.0000', '4.5000', '4.5000', '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 (28589, '2021-10-27', 1528, 27514, 2240, 18895, '1.0000', '38.6400', '38.6400', '6.0000', '6.0000', '12.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 (28590, '2021-10-27', 1783, 27515, 2240, 4901, '-6.0000', '7.8500', '7.8500', '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 (28591, '2021-10-27', 1783, 27515, 2240, NULL, '9.0000', '7.8500', '7.8500', '11.0000', '11.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 (28592, '2021-10-27', 2915, 27516, 2240, NULL, '1.0000', '15.4500', '15.4500', '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 (28593, '2021-10-27', 2876, 27517, 2240, 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 (28594, '2021-10-27', 1463, 27518, 2240, 114, '1.0000', '90.0000', '90.0000', '26.0000', '26.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 (28595, '2021-10-27', 1677, 27519, 2240, 3284, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '2.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 (28596, '2021-10-27', 1688, 27520, 2240, 4896, '-3.0000', '18.5000', '18.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 (28597, '2021-10-27', 1688, 27520, 2240, NULL, '4.0000', '18.5000', '18.5000', '25.0000', '25.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 (28598, '2021-10-27', 1867, 27521, 2240, NULL, '1.0000', '1.0500', '1.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 (28599, '2021-10-27', 2315, 27522, 2240, 2735, '-132.0000', '0.3300', '0.3300', '0.6000', '0.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 (28600, '2021-10-27', 2315, 27522, 2240, NULL, '133.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-133.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28601, '2021-10-27', 1828, 27523, 2240, NULL, '1.0000', '0.7300', '0.7300', '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 (28602, '2021-10-27', 1432, 27524, 2240, 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 (28603, '2021-10-27', 7824, 27525, 2240, NULL, '1.0000', '8.0000', '8.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 (28604, '2021-10-27', 1602, 27526, 2240, 5897, '-29.0000', '6.7859', '6.7859', '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 (28605, '2021-10-27', 1602, 27526, 2240, NULL, '30.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (28606, '2021-10-27', 2289, 27527, 2240, 2949, '-14.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 (28607, '2021-10-27', 2289, 27527, 2240, NULL, '16.0000', '0.3300', '0.3300', '0.5000', '0.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 (28608, '2021-10-27', 7544, 27528, 2240, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28609, '2021-10-27', 7328, 27529, 2240, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28610, '2021-10-27', 1966, 27530, 2240, 3237, '-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 (28611, '2021-10-27', 1966, 27530, 2240, 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 (28612, '2021-10-27', 2712, 27531, 2240, 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 (28613, '2021-10-27', 2656, 27532, 2240, 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 (28614, '2021-10-27', 2695, 27533, 2240, NULL, '4.0000', '2.0000', '2.0000', '2.7000', '2.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 (28615, '2021-10-27', 1518, 27534, 2240, 6524, '-2.0000', '6.9000', '6.9000', '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 (28616, '2021-10-27', 1518, 27534, 2240, NULL, '3.0000', '6.9000', '6.9000', '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 (28617, '2021-10-27', 2280, 27535, 2240, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '41.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28618, '2021-10-27', 1667, 27536, 2240, 9745, '-17.0000', '5.9400', '5.9400', '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 (28619, '2021-10-27', 1667, 27536, 2240, NULL, '18.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-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 (28620, '2021-10-27', 2822, 27537, 2240, 17166, '-4.0000', '2.7200', '2.7200', '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 (28621, '2021-10-27', 2822, 27537, 2240, NULL, '6.0000', '2.7200', '2.7200', '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 (28622, '2021-10-27', 2329, 27538, 2240, 18881, '1.0000', '30.1300', '30.1300', '40.0000', '40.0000', '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 (28623, '2021-10-27', 2643, 27539, 2240, 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 (28624, '2021-10-27', 2293, 27540, 2240, 22262, '3.0000', '1.4400', '1.4400', '1.0000', '1.0000', '87.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 (28625, '2021-10-27', 2109, 27541, 2240, 1053, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '136.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 (28626, '2021-10-27', 1504, 27542, 2240, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (28627, '2021-10-27', 2699, 27543, 2240, 12529, '-12.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 (28628, '2021-10-27', 2699, 27543, 2240, NULL, '13.0000', '3.0000', '3.0000', '4.5000', '4.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 (28629, '2021-10-27', 1499, 27544, 2241, 38940, '2.0000', '0.4684', '0.4684', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28630, '2021-10-27', 1665, 27545, 2241, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28631, '2021-10-27', 1499, 27546, 2241, 38940, '1.0000', '0.4684', '0.4684', '0.6000', '0.6000', '27.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28632, '2021-10-27', 2379, 27547, 2241, NULL, '1.0000', '1.8000', '1.8000', '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 (28633, '2021-10-27', 1337, 27548, 2241, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (28634, '2021-10-27', 2004, 27549, 2241, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28635, '2021-10-27', 7980, 27550, 2241, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (28636, '2021-10-27', 1863, 27551, 2241, NULL, '2.0000', '1.2830', '1.2830', '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 (28637, '2021-10-27', 2821, 27552, 2241, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28638, '2021-10-27', 1602, 27553, 2241, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28639, '2021-10-27', 8859, 27554, 2241, NULL, '1.0000', '7.0000', '7.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 (28640, '2021-10-27', 2430, 27555, 2241, 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 (28641, '2021-10-27', 9470, 27556, 2241, 38980, '1.0000', '9.7020', '9.7020', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28642, '2021-10-27', 8759, 27557, 2241, NULL, '1.0000', '6.2000', '6.2000', '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 (28643, '2021-10-27', 2366, 27558, 2241, NULL, '2.0000', '6.4500', '6.4500', '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 (28644, '2021-10-27', 2416, 27559, 2241, 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 (28645, '2021-10-27', 2275, 27560, 2242, 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 (28646, '2021-10-27', 2279, 27561, 2243, 2939, '-11.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 (28647, '2021-10-27', 2279, 27561, 2243, NULL, '13.0000', '2.7000', '2.7000', '4.0000', '4.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 (28648, '2021-10-27', 2389, 27562, 2243, 4041, '-14.0000', '3.1400', '3.1400', '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 (28649, '2021-10-27', 2389, 27562, 2243, NULL, '16.0000', '3.1400', '3.1400', '4.5000', '4.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 (28650, '2021-10-27', 2712, 27563, 2243, 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 (28651, '2021-10-27', 2066, 27564, 2243, 5484, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '23.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 (28652, '2021-10-27', 2543, 27565, 2243, 6304, '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 (28653, '2021-10-27', 1999, 27566, 2243, 6362, '-1.0000', '6.0000', '6.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 (28654, '2021-10-27', 1999, 27566, 2243, NULL, '2.0000', '6.0000', '6.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 (28655, '2021-10-27', 1504, 27567, 2243, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (28656, '2021-10-27', 7509, 27568, 2244, 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 (28657, '2021-10-27', 7473, 27569, 2244, NULL, '2.0000', '15.4731', '15.4731', '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 (28658, '2021-10-27', 7586, 27570, 2244, 38180, '1.0000', '4.1700', '4.1700', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28659, '2021-10-27', 2100, 27571, 2244, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28660, '2021-10-27', 8308, 27572, 2244, NULL, '1.0000', '11.0000', '11.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 (28661, '2021-10-27', 1760, 27573, 2244, 37408, '2.0000', '-44858.2237', '-44858.2237', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28662, '2021-10-27', 7674, 27574, 2244, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '172.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28663, '2021-10-27', 2992, 27575, 2244, 35227, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28664, '2021-10-27', 1532, 27576, 2244, 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 (28665, '2021-10-27', 1837, 27577, 2244, 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 (28666, '2021-10-27', 7362, 27578, 2244, 39062, '1.0000', '3.8092', '3.8092', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28667, '2021-10-27', 1771, 27579, 2244, 35186, '1.0000', '12.4894', '12.4894', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28668, '2021-10-27', 7411, 27580, 2244, NULL, '2.0000', '1.3500', '1.3500', '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 (28669, '2021-10-27', 7675, 27581, 2244, NULL, '1.0000', '11.4300', '11.4300', '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 (28670, '2021-10-27', 2296, 27582, 2244, 34515, '1.0000', '12.8812', '12.8812', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28671, '2021-10-27', 7685, 27583, 2244, NULL, '2.0000', '31.2000', '31.2000', '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 (28672, '2021-10-27', 7514, 27584, 2244, NULL, '1.0000', '12.9983', '12.9983', '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 (28673, '2021-10-27', 7641, 27585, 2244, NULL, '1.0000', '6.5038', '6.5038', '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 (28674, '2021-10-27', 8673, 27586, 2244, NULL, '1.0000', '37.5000', '37.5000', '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 (28675, '2021-10-27', 9563, 27587, 2244, 39070, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '21.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28676, '2021-10-27', 8361, 27588, 2245, NULL, '1.0000', '4.5800', '4.5800', '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 (28677, '2021-10-27', 8359, 27589, 2245, NULL, '1.0000', '16.7750', '16.7750', '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 (28678, '2021-10-27', 7641, 27590, 2245, NULL, '1.0000', '6.5038', '6.5038', '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 (28679, '2021-10-27', 8699, 27591, 2245, NULL, '1.0000', '6.3800', '6.3800', '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 (28680, '2021-10-27', 8119, 27592, 2245, 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 (28681, '2021-10-27', 7591, 27593, 2245, NULL, '1.0000', '2.7500', '2.7500', '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 (28682, '2021-10-27', 7674, 27594, 2245, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '171.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28683, '2021-10-27', 9469, 27595, 2245, NULL, '1.0000', '2.3000', '2.3000', '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 (28684, '2021-10-27', 7674, 27596, 2245, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '171.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28685, '2021-10-27', 8361, 27597, 2245, NULL, '1.0000', '4.5800', '4.5800', '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 (28686, '2021-10-27', 8057, 27598, 2245, NULL, '1.0000', '6.0000', '6.0000', '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 (28687, '2021-10-27', 7565, 27599, 2245, NULL, '1.0000', '0.2000', '0.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 (28688, '2021-10-27', 9335, 27600, 2245, NULL, '1.0000', '0.6600', '0.6600', '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 (28689, '2021-10-27', 8496, 27601, 2245, NULL, '1.0000', '2.4000', '2.4000', '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 (28690, '2021-10-27', 8914, 27602, 2245, NULL, '1.0000', '10.0400', '10.0400', '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 (28691, '2021-10-27', 8868, 27603, 2245, NULL, '5.0000', '15.5000', '15.5000', '0.6000', '0.6000', '-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 (28692, '2021-10-27', 9303, 27604, 2245, NULL, '1.0000', '9.0000', '9.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 (28693, '2021-10-27', 8735, 27605, 2245, NULL, '1.0000', '5.6000', '5.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 (28694, '2021-10-27', 1845, 27606, 2245, NULL, '1.0000', '19.5000', '19.5000', '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 (28695, '2021-10-27', 8539, 27607, 2245, 31000, '1.0000', '4.4300', '4.4300', '0.8000', '0.8000', '47.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28696, '2021-10-27', 7460, 27608, 2245, NULL, '6.0000', '51.2000', '51.2000', '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 (28697, '2021-10-27', 7557, 27609, 2245, 33079, '10.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28698, '2021-10-27', 7547, 27610, 2245, NULL, '4.0000', '0.0000', '0.0000', '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 (28699, '2021-10-27', 7509, 27611, 2245, 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 (28700, '2021-10-27', 8203, 27612, 2245, 38432, '3.0000', '1.0075', '1.0075', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28701, '2021-10-27', 8135, 27613, 2245, NULL, '1.0000', '13.9000', '13.9000', '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 (28702, '2021-10-27', 7910, 27614, 2245, NULL, '1.0000', '7.9800', '7.9800', '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 (28703, '2021-10-27', 7781, 27615, 2245, NULL, '3.0000', '4.2500', '4.2500', '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 (28704, '2021-10-27', 7819, 27616, 2245, NULL, '1.0000', '9.5000', '9.5000', '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 (28705, '2021-10-27', 7702, 27617, 2245, NULL, '1.0000', '0.4600', '0.4600', '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 (28706, '2021-10-27', 8752, 27618, 2245, NULL, '1.0000', '4.2000', '4.2000', '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 (28707, '2021-10-27', 7674, 27619, 2245, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '171.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28708, '2021-10-27', 2656, 27620, 2245, 31906, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28709, '2021-10-27', 8244, 27621, 2245, NULL, '4.0000', '37.4100', '37.4100', '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 (28710, '2021-10-27', 8763, 27622, 2245, 32138, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28711, '2021-10-27', 8243, 27623, 2245, NULL, '1.0000', '1.1400', '1.1400', '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 (28712, '2021-10-27', 9092, 27624, 2245, 39042, '3.0000', '0.1303', '0.1303', '0.5000', '0.5000', '316.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28713, '2021-10-27', 7411, 27625, 2245, NULL, '1.0000', '1.3500', '1.3500', '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 (28714, '2021-10-27', 1854, 27626, 2245, 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 (28715, '2021-10-27', 7807, 27627, 2245, NULL, '5.0000', '12.0000', '12.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 (28716, '2021-10-27', 7780, 27628, 2245, NULL, '1.0000', '2.6000', '2.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 (28717, '2021-10-27', 8000, 27629, 2245, NULL, '1.0000', '41.2918', '41.2918', '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 (28718, '2021-10-27', 1837, 27630, 2245, 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 (28719, '2021-10-27', 7507, 27631, 2245, NULL, '3.0000', '6.5000', '6.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 (28720, '2021-10-27', 7482, 27632, 2245, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28721, '2021-10-27', 7412, 27633, 2245, NULL, '1.0000', '1.5200', '1.5200', '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 (28722, '2021-10-27', 7780, 27634, 2245, NULL, '1.0000', '2.6000', '2.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 (28723, '2021-10-27', 7758, 27635, 2245, NULL, '1.0000', '10.8500', '10.8500', '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 (28724, '2021-10-27', 9094, 27636, 2245, NULL, '1.0000', '6.0000', '6.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 (28725, '2021-10-27', 7671, 27637, 2245, NULL, '1.0000', '15.5000', '15.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 (28726, '2021-10-27', 1577, 27638, 2245, 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 (28727, '2021-10-27', 7518, 27639, 2245, NULL, '1.0000', '-67.2578', '-67.2578', '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 (28728, '2021-10-27', 1339, 27640, 2245, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28729, '2021-10-27', 7590, 27641, 2245, NULL, '1.0000', '4.3600', '4.3600', '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 (28730, '2021-10-27', 8766, 27642, 2245, NULL, '1.0000', '5.8000', '5.8000', '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 (28731, '2021-10-27', 8775, 27643, 2245, 32152, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28732, '2021-10-27', 9250, 27644, 2245, NULL, '1.0000', '18.9800', '18.9800', '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 (28733, '2021-10-27', 7920, 27645, 2245, 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 (28734, '2021-10-27', 7548, 27646, 2246, NULL, '1.0000', '0.3400', '0.3400', '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 (28735, '2021-10-27', 7519, 27647, 2246, NULL, '1.0000', '0.8800', '0.8800', '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 (28736, '2021-10-27', 8135, 27648, 2247, NULL, '1.0000', '13.9000', '13.9000', '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 (28737, '2021-10-27', 7496, 27649, 2247, NULL, '1.0000', '0.9600', '0.9600', '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 (28738, '2021-10-27', 1501, 27650, 2247, NULL, '1.0000', '2.2100', '2.2100', '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 (28739, '2021-10-27', 8188, 27651, 2247, 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 (28740, '2021-10-27', 1912, 27652, 2248, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28741, '2021-10-27', 2557, 27653, 2248, 12741, '1.0000', '1.0000', '1.0000', '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 (28742, '2021-10-27', 9311, 27654, 2248, 35934, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28743, '2021-10-27', 2169, 27655, 2248, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28744, '2021-10-27', 9291, 27656, 2248, NULL, '1.0000', '11.9000', '11.9000', '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 (28745, '2021-10-27', 3053, 27657, 2248, 24334, '10.0000', '1.4600', '1.4600', '2.0000', '2.0000', '30.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 (28746, '2021-10-27', 1910, 27658, 2248, 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 (28747, '2021-10-27', 2315, 27659, 2248, 3069, '1.0000', '0.3300', '0.3300', '0.6000', '0.6000', '214.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28748, '2021-10-27', 2280, 27660, 2248, 21586, '1.0000', '1.9000', '1.9000', '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 (28749, '2021-10-27', 1596, 27661, 2248, 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 (28750, '2021-10-27', 1595, 27662, 2248, 9434, '1.0000', '18.6100', '18.6100', '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 (28751, '2021-10-27', 1904, 27663, 2248, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28752, '2021-10-27', 7532, 27664, 2248, 34677, '2.0000', '20.6000', '20.6000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28753, '2021-10-27', 1845, 27665, 2248, 4977, '1.0000', '19.5000', '19.5000', '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 (28754, '2021-10-27', 1435, 27666, 2248, 11878, '1.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 (28755, '2021-10-27', 2307, 27667, 2248, 33025, '1.0000', '162.5140', '162.5140', '190.0000', '190.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28756, '2021-10-27', 1876, 27668, 2248, 24343, '1.0000', '33.8475', '33.8475', '25.0000', '25.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 (28757, '2021-10-27', 1904, 27669, 2248, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28758, '2021-10-27', 2283, 27670, 2248, 3123, '1.0000', '1.4300', '1.4300', '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 (28759, '2021-10-27', 1602, 27671, 2248, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '41.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28760, '2021-10-27', 7609, 27672, 2248, NULL, '1.0000', '4.3300', '4.3300', '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 (28761, '2021-10-27', 2712, 27673, 2248, 35941, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28762, '2021-10-27', 1864, 27674, 2248, NULL, '1.0000', '5.9100', '5.9100', '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 (28763, '2021-10-27', 1863, 27675, 2248, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28764, '2021-10-27', 1783, 27676, 2248, 36383, '3.0000', '29.1265', '29.1265', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28765, '2021-10-27', 8759, 27677, 2248, 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 (28766, '2021-10-27', 7684, 27678, 2248, NULL, '2.0000', '9.0000', '9.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 (28767, '2021-10-27', 8395, 27679, 2248, NULL, '2.0000', '0.9700', '0.9700', '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 (28768, '2021-10-27', 2254, 27680, 2248, 18688, '1.0000', '17.9400', '17.9400', '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 (28769, '2021-10-27', 1504, 27681, 2248, 37581, '10.0000', '1.1357', '1.1357', '2.2000', '2.2000', '60.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28770, '2021-10-27', 1330, 27682, 2248, 3367, '1.0000', '2.8000', '2.8000', '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 (28771, '2021-10-27', 1329, 27683, 2248, 3369, '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 (28772, '2021-10-27', 2699, 27684, 2248, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28773, '2021-10-27', 1783, 27685, 2248, 36383, '3.0000', '29.1265', '29.1265', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28774, '2021-10-27', 2191, 27686, 2248, 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 (28775, '2021-10-27', 8677, 27687, 2249, NULL, '1.0000', '89.9250', '89.9250', '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 (28776, '2021-10-27', 7482, 27688, 2249, 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 (28777, '2021-10-27', 1529, 27689, 2249, NULL, '1.0000', '3.7110', '3.7110', '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 (28778, '2021-10-27', 1580, 27690, 2249, 33362, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28779, '2021-10-27', 1863, 27691, 2249, NULL, '2.0000', '1.2830', '1.2830', '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 (28780, '2021-10-27', 2167, 27692, 2249, 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 (28781, '2021-10-27', 3002, 27693, 2249, 30660, '1.0000', '6.2000', '6.2000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28782, '2021-10-27', 9503, 27694, 2249, 37717, '1.0000', '11.4766', '11.4766', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28783, '2021-10-27', 9603, 27695, 2249, 38979, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28784, '2021-10-27', 2167, 27696, 2249, 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 (28785, '2021-10-27', 1863, 27697, 2249, NULL, '2.0000', '1.2830', '1.2830', '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 (28786, '2021-10-27', 7713, 27698, 2249, NULL, '3.0000', '4.4000', '4.4000', '0.6000', '0.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 (28787, '2021-10-27', 7980, 27699, 2249, NULL, '2.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28788, '2021-10-27', 1665, 27700, 2249, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28789, '2021-10-27', 1912, 27701, 2249, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28790, '2021-10-27', 2465, 27702, 2249, 34596, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28791, '2021-10-27', 8638, 27703, 2249, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28792, '2021-10-27', 1519, 27704, 2249, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28793, '2021-10-27', 2699, 27705, 2249, 34663, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28794, '2021-10-27', 2248, 27706, 2249, 38530, '1.0000', '3.0734', '3.0734', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28795, '2021-10-27', 2361, 27707, 2249, 19350, '1.0000', '0.4700', '0.4700', '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 (28796, '2021-10-27', 1339, 27708, 2249, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28797, '2021-10-27', 8846, 27709, 2249, NULL, '1.0000', '4.3000', '4.3000', '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 (28798, '2021-10-27', 2169, 27710, 2249, NULL, '1.0000', '1.1500', '1.1500', '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 (28799, '2021-10-27', 2393, 27711, 2249, NULL, '1.0000', '3.2865', '3.2865', '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 (28800, '2021-10-27', 7482, 27712, 2249, 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 (28801, '2021-10-27', 2662, 27713, 2249, 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 (28802, '2021-10-27', 1573, 27714, 2249, 30676, '1.0000', '24.6200', '24.6200', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28803, '2021-10-27', 2660, 27715, 2249, 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 (28804, '2021-10-27', 1529, 27716, 2249, NULL, '1.0000', '3.7110', '3.7110', '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 (28805, '2021-10-27', 1760, 27717, 2249, NULL, '2.0000', '1.5900', '1.5900', '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 (28806, '2021-10-27', 2662, 27718, 2249, 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 (28807, '2021-10-27', 1882, 27719, 2249, 23182, '1.0000', '12.0500', '12.0500', '16.0000', '16.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 (28808, '2021-10-27', 7744, 27720, 2249, NULL, '2.0000', '1.9000', '1.9000', '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 (28809, '2021-10-27', 8133, 27721, 2249, 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 (28810, '2021-10-27', 2660, 27722, 2249, 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 (28811, '2021-10-27', 7482, 27723, 2249, 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 (28812, '2021-10-27', 2660, 27724, 2249, 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 (28813, '2021-10-27', 2293, 27725, 2249, NULL, '2.0000', '1.4400', '1.4400', '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 (28814, '2021-10-27', 2020, 27726, 2249, NULL, '1.0000', '7.8240', '7.8240', '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 (28815, '2021-10-27', 8771, 27727, 2250, 38984, '1.0000', '4.9473', '4.9473', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28816, '2021-10-27', 7744, 27728, 2250, NULL, '1.0000', '1.9000', '1.9000', '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 (28817, '2021-10-27', 1519, 27729, 2250, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28818, '2021-10-27', 1371, 27730, 2250, 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 (28819, '2021-10-27', 2169, 27731, 2250, NULL, '1.0000', '1.1500', '1.1500', '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 (28820, '2021-10-27', 1580, 27732, 2250, 33362, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28821, '2021-10-27', 2592, 27733, 2251, 24289, '1.0000', '7.9456', '7.9456', '10.5000', '10.5000', '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 (28822, '2021-10-27', 2237, 27734, 2251, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '6.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 (28823, '2021-10-27', 1374, 27735, 2251, 34413, '1.0000', '148.2851', '148.2851', '26.0000', '26.0000', '5.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28824, '2021-10-27', 2221, 27736, 2251, 36361, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28825, '2021-10-28', 2907, 27737, 2252, 18646, '-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 (28826, '2021-10-28', 2907, 27737, 2252, NULL, '2.0000', '6.0000', '6.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 (28827, '2021-10-28', 2169, 27738, 2252, 10737, '1.0000', '3.8397', '3.8397', '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 (28828, '2021-10-28', 1612, 27739, 2252, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.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 (28829, '2021-10-28', 1955, 27740, 2252, 266, '1.0000', '19.4666', '19.4666', '16.0000', '16.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 (28830, '2021-10-28', 2327, 27741, 2252, 5083, '-13.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 (28831, '2021-10-28', 2327, 27741, 2252, NULL, '15.0000', '4.5000', '4.5000', '6.0000', '6.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 (28832, '2021-10-28', 9563, 27742, 2252, NULL, '2.0000', '5.1000', '5.1000', '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 (28833, '2021-10-28', 2315, 27743, 2252, 2735, '-133.0000', '0.3300', '0.3300', '0.6000', '0.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 (28834, '2021-10-28', 2315, 27743, 2252, NULL, '135.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28835, '2021-10-28', 1533, 27744, 2252, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (28836, '2021-10-28', 9474, 27745, 2252, NULL, '1.0000', '9.8000', '9.8000', '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 (28837, '2021-10-28', 7411, 27746, 2252, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28838, '2021-10-28', 2712, 27747, 2252, 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 (28839, '2021-10-28', 9541, 27748, 2252, NULL, '1.0000', '42.0000', '42.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 (28840, '2021-10-28', 2105, 27749, 2252, 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 (28841, '2021-10-28', 9538, 27750, 2252, NULL, '1.0000', '23.0000', '23.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28842, '2021-10-28', 1661, 27751, 2252, 3232, '-1.0000', '90.0000', '90.0000', '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 (28843, '2021-10-28', 1661, 27751, 2252, NULL, '2.0000', '90.0000', '90.0000', '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 (28844, '2021-10-28', 1504, 27752, 2252, NULL, '20.0000', '1.5000', '1.5000', '2.2000', '2.2000', '-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 (28845, '2021-10-28', 2315, 27753, 2252, 2735, '-133.0000', '0.3300', '0.3300', '0.6000', '0.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 (28846, '2021-10-28', 2315, 27753, 2252, NULL, '134.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-134.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28847, '2021-10-28', 7391, 27754, 2252, NULL, '1.0000', '15.6000', '15.6000', '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 (28848, '2021-10-28', 9565, 27755, 2252, NULL, '1.0000', '4.5000', '4.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 (28849, '2021-10-28', 3051, 27756, 2253, NULL, '1.0000', '35.3300', '35.3300', '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 (28850, '2021-10-28', 1621, 27757, 2254, 7385, '-7.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 (28851, '2021-10-28', 1621, 27757, 2254, NULL, '8.0000', '6.6000', '6.6000', '9.0000', '9.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 (28852, '2021-10-28', 1812, 27758, 2254, 8224, '-18.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 (28853, '2021-10-28', 1812, 27758, 2254, NULL, '20.0000', '7.8900', '7.8900', '10.5000', '10.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 (28854, '2021-10-28', 1488, 27759, 2255, 22319, '1.0000', '3.9200', '3.9200', '5.5000', '5.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 (28855, '2021-10-28', 2315, 27760, 2255, 2735, '-136.0000', '0.3300', '0.3300', '0.6000', '0.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 (28856, '2021-10-28', 2315, 27760, 2255, NULL, '138.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-138.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28857, '2021-10-28', 2228, 27761, 2255, NULL, '1.0000', '25.0000', '25.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 (28858, '2021-10-28', 1665, 27762, 2255, 3235, '-22.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 (28859, '2021-10-28', 1665, 27762, 2255, NULL, '23.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (28860, '2021-10-28', 2109, 27763, 2255, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '134.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 (28861, '2021-10-28', 2285, 27764, 2255, 2945, '-10.0000', '35.8000', '35.8000', '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 (28862, '2021-10-28', 2285, 27764, 2255, NULL, '11.0000', '35.8000', '35.8000', '47.0000', '47.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 (28863, '2021-10-28', 8714, 27765, 2256, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28864, '2021-10-28', 7444, 27766, 2256, 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 (28865, '2021-10-28', 1854, 27767, 2256, 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 (28866, '2021-10-28', 2506, 27768, 2256, 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 (28867, '2021-10-28', 7963, 27769, 2256, NULL, '1.0000', '4.2500', '4.2500', '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 (28868, '2021-10-28', 7560, 27770, 2256, NULL, '1.0000', '4.4500', '4.4500', '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 (28869, '2021-10-28', 2060, 27771, 2256, 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 (28870, '2021-10-28', 7473, 27772, 2256, NULL, '2.0000', '15.4731', '15.4731', '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 (28871, '2021-10-28', 7531, 27773, 2256, NULL, '1.0000', '16.5000', '16.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 (28872, '2021-10-28', 7672, 27774, 2256, NULL, '1.0000', '1.0200', '1.0200', '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 (28873, '2021-10-28', 8883, 27775, 2256, NULL, '2.0000', '56.5500', '56.5500', '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 (28874, '2021-10-28', 8717, 27776, 2256, NULL, '1.0000', '4.7000', '4.7000', '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 (28875, '2021-10-28', 8960, 27777, 2256, NULL, '1.0000', '3.5400', '3.5400', '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 (28876, '2021-10-28', 9315, 27778, 2256, NULL, '1.0000', '12.5000', '12.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 (28877, '2021-10-28', 8769, 27779, 2256, NULL, '1.0000', '6.6000', '6.6000', '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 (28878, '2021-10-28', 8650, 27780, 2256, NULL, '2.0000', '3.0000', '3.0000', '18.5000', '18.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 (28879, '2021-10-28', 8166, 27781, 2256, NULL, '1.0000', '4.6000', '4.6000', '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 (28880, '2021-10-28', 7366, 27782, 2256, 30002, '1.0000', '14.9500', '14.9500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28881, '2021-10-28', 7641, 27783, 2256, NULL, '1.0000', '6.5038', '6.5038', '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 (28882, '2021-10-28', 9092, 27784, 2256, 39042, '4.0000', '0.1303', '0.1303', '0.5000', '0.5000', '312.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28883, '2021-10-28', 2656, 27785, 2256, 31906, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28884, '2021-10-28', 1848, 27786, 2256, NULL, '10.0000', '0.4200', '0.4200', '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 (28885, '2021-10-28', 7868, 27787, 2256, NULL, '2.0000', '28.7600', '28.7600', '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 (28886, '2021-10-28', 7547, 27788, 2256, NULL, '4.0000', '0.0000', '0.0000', '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 (28887, '2021-10-28', 8247, 27789, 2256, NULL, '2.0000', '10.0000', '10.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 (28888, '2021-10-28', 7460, 27790, 2256, NULL, '4.0000', '51.2000', '51.2000', '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 (28889, '2021-10-28', 7317, 27791, 2256, NULL, '1.0000', '29.3700', '29.3700', '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 (28890, '2021-10-28', 7659, 27792, 2256, NULL, '1.0000', '5.9700', '5.9700', '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 (28891, '2021-10-28', 2060, 27793, 2256, 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 (28892, '2021-10-28', 8915, 27794, 2256, NULL, '1.0000', '29.3500', '29.3500', '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 (28893, '2021-10-28', 2967, 27795, 2256, 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 (28894, '2021-10-28', 8033, 27796, 2256, NULL, '1.0000', '27.7000', '27.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 (28895, '2021-10-28', 7748, 27797, 2256, NULL, '1.0000', '33.9800', '33.9800', '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 (28896, '2021-10-28', 7530, 27798, 2256, NULL, '1.0000', '5.7200', '5.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 (28897, '2021-10-28', 1666, 27799, 2257, 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 (28898, '2021-10-28', 1666, 27799, 2257, 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 (28899, '2021-10-28', 7518, 27800, 2258, NULL, '2.0000', '-67.2578', '-67.2578', '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 (28900, '2021-10-28', 7671, 27801, 2258, NULL, '1.0000', '15.5000', '15.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 (28901, '2021-10-28', 7532, 27802, 2258, NULL, '1.0000', '5.2000', '5.2000', '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 (28902, '2021-10-28', 2906, 27803, 2258, 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 (28903, '2021-10-28', 8322, 27804, 2258, NULL, '1.0000', '3.2000', '3.2000', '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 (28904, '2021-10-28', 8361, 27805, 2258, NULL, '2.0000', '4.5800', '4.5800', '9.5000', '9.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 (28905, '2021-10-28', 7411, 27806, 2258, NULL, '1.0000', '1.3500', '1.3500', '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 (28906, '2021-10-28', 8166, 27807, 2258, NULL, '1.0000', '4.6000', '4.6000', '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 (28907, '2021-10-28', 2699, 27808, 2258, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28908, '2021-10-28', 2955, 27809, 2258, NULL, '1.0000', '4.8000', '4.8000', '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 (28909, '2021-10-28', 7715, 27810, 2258, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28910, '2021-10-28', 2655, 27811, 2258, 32803, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28911, '2021-10-28', 8735, 27812, 2258, NULL, '1.0000', '5.6000', '5.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 (28912, '2021-10-28', 7881, 27813, 2258, NULL, '1.0000', '32.7700', '32.7700', '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 (28913, '2021-10-28', 8868, 27814, 2258, NULL, '10.0000', '15.5000', '15.5000', '0.6000', '0.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 (28914, '2021-10-28', 9272, 27815, 2258, NULL, '1.0000', '3.1000', '3.1000', '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 (28915, '2021-10-28', 1588, 27816, 2258, NULL, '1.0000', '4.8000', '4.8000', '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 (28916, '2021-10-28', 9193, 27817, 2258, NULL, '1.0000', '6.8063', '6.8063', '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 (28917, '2021-10-28', 7782, 27818, 2258, NULL, '2.0000', '5.0000', '5.0000', '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 (28918, '2021-10-28', 8608, 27819, 2258, NULL, '1.0000', '5.7400', '5.7400', '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 (28919, '2021-10-28', 7887, 27820, 2258, NULL, '3.0000', '1.2000', '1.2000', '24.0000', '24.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 (28920, '2021-10-28', 8753, 27821, 2258, NULL, '9.0000', '20.0000', '20.0000', '5.0000', '5.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 (28921, '2021-10-28', 7877, 27822, 2258, NULL, '1.0000', '1.3600', '1.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 (28922, '2021-10-28', 7444, 27823, 2258, 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 (28923, '2021-10-28', 1501, 27824, 2258, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28924, '2021-10-28', 7743, 27825, 2258, NULL, '1.0000', '7.3900', '7.3900', '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 (28925, '2021-10-28', 8596, 27826, 2258, NULL, '1.0000', '17.0000', '17.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 (28926, '2021-10-28', 9160, 27827, 2258, NULL, '1.0000', '41.6640', '41.6640', '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 (28927, '2021-10-28', 9266, 27828, 2258, 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 (28928, '2021-10-28', 9092, 27829, 2258, 39042, '2.0000', '0.1303', '0.1303', '0.5000', '0.5000', '310.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28929, '2021-10-28', 7482, 27830, 2258, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28930, '2021-10-28', 7662, 27831, 2258, NULL, '1.0000', '6.3600', '6.3600', '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 (28931, '2021-10-28', 2588, 27832, 2258, 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 (28932, '2021-10-28', 9337, 27833, 2258, 36077, '8.0000', '6.8067', '6.8067', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28933, '2021-10-28', 7674, 27834, 2258, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '168.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28934, '2021-10-28', 2315, 27835, 2258, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '107.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28935, '2021-10-28', 7551, 27836, 2258, NULL, '3.0000', '1.2700', '1.2700', '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 (28936, '2021-10-28', 7411, 27837, 2258, NULL, '1.0000', '1.3500', '1.3500', '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 (28937, '2021-10-28', 7787, 27838, 2258, NULL, '1.0000', '3.9600', '3.9600', '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 (28938, '2021-10-28', 7782, 27839, 2258, NULL, '1.0000', '5.0000', '5.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 (28939, '2021-10-28', 7674, 27840, 2258, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '168.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28940, '2021-10-28', 2031, 27841, 2258, 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 (28941, '2021-10-28', 8203, 27842, 2258, 38432, '1.0000', '1.0075', '1.0075', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28942, '2021-10-28', 8203, 27842, 2258, NULL, '1.0000', '1.0075', '1.0075', '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 (28943, '2021-10-28', 3057, 27843, 2258, 33746, '1.0000', '3.2700', '3.2700', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28944, '2021-10-28', 7885, 27844, 2258, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28945, '2021-10-28', 1672, 27845, 2258, 34503, '10.0000', '2.9200', '2.9200', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28946, '2021-10-28', 1989, 27846, 2258, NULL, '1.0000', '3.5000', '3.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 (28947, '2021-10-28', 9012, 27847, 2258, NULL, '1.0000', '24.0000', '24.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 (28948, '2021-10-28', 1975, 27848, 2258, NULL, '1.0000', '8.5000', '8.5000', '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 (28949, '2021-10-28', 8425, 27849, 2258, NULL, '1.0000', '30.0000', '30.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 (28950, '2021-10-28', 7641, 27850, 2258, NULL, '1.0000', '6.5038', '6.5038', '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 (28951, '2021-10-28', 7824, 27851, 2259, NULL, '1.0000', '8.0000', '8.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 (28952, '2021-10-28', 2169, 27852, 2260, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28953, '2021-10-28', 2285, 27853, 2260, 36372, '1.0000', '36.2615', '36.2615', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28954, '2021-10-28', 7749, 27854, 2260, NULL, '1.0000', '3.0000', '3.0000', '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 (28955, '2021-10-28', 3058, 27855, 2260, 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 (28956, '2021-10-28', 2592, 27856, 2260, 24289, '1.0000', '7.9456', '7.9456', '10.5000', '10.5000', '0.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 (28957, '2021-10-28', 1637, 27857, 2260, 36327, '1.0000', '239.8270', '239.8270', '14.0000', '14.0000', '11.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28958, '2021-10-28', 1772, 27858, 2260, 32041, '1.0000', '6.3472', '6.3472', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28959, '2021-10-28', 1812, 27859, 2260, 36378, '1.0000', '7.9315', '7.9315', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28960, '2021-10-28', 1912, 27860, 2260, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28961, '2021-10-28', 1928, 27861, 2260, 33012, '1.0000', '55.2437', '55.2437', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28962, '2021-10-28', 1616, 27862, 2260, 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 (28963, '2021-10-28', 2280, 27863, 2260, 21586, '1.0000', '1.9000', '1.9000', '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 (28964, '2021-10-28', 2660, 27864, 2260, 37560, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28965, '2021-10-28', 3013, 27865, 2260, 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 (28966, '2021-10-28', 2270, 27866, 2260, 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 (28967, '2021-10-28', 1811, 27867, 2260, 24346, '2.0000', '14.5300', '14.5300', '19.5000', '19.5000', '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 (28968, '2021-10-28', 2089, 27868, 2260, 33009, '1.0000', '7.0900', '7.0900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28969, '2021-10-28', 2567, 27869, 2260, 39006, '1.0000', '34.7900', '34.7900', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28970, '2021-10-28', 1935, 27870, 2260, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28971, '2021-10-28', 1863, 27871, 2260, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28972, '2021-10-28', 2280, 27872, 2260, 21586, '1.0000', '1.9000', '1.9000', '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 (28973, '2021-10-28', 2302, 27873, 2260, 32815, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28974, '2021-10-28', 7536, 27874, 2260, NULL, '28.0000', '3.8500', '3.8500', '7.8000', '7.8000', '-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 (28975, '2021-10-28', 2459, 27875, 2260, 24004, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.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 (28976, '2021-10-28', 1825, 27876, 2260, 38065, '1.0000', '5.1714', '5.1714', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28977, '2021-10-28', 2557, 27877, 2260, 12741, '2.0000', '1.0000', '1.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 (28978, '2021-10-28', 2379, 27878, 2260, 38078, '1.0000', '1.8662', '1.8662', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28979, '2021-10-28', 2699, 27879, 2260, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28980, '2021-10-28', 2169, 27880, 2260, 37575, '1.0000', '1.0517', '1.0517', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28981, '2021-10-28', 8434, 27881, 2260, NULL, '1.0000', '27.4000', '27.4000', '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 (28982, '2021-10-28', 1812, 27882, 2260, 36378, '3.0000', '7.9315', '7.9315', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28983, '2021-10-28', 2025, 27883, 2260, 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 (28984, '2021-10-28', 1613, 27884, 2260, 33001, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28985, '2021-10-28', 1486, 27885, 2260, 37566, '1.0000', '95.8488', '95.8488', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28986, '2021-10-28', 1772, 27886, 2260, 32041, '1.0000', '6.3472', '6.3472', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28987, '2021-10-28', 2003, 27887, 2260, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28988, '2021-10-28', 2169, 27888, 2261, NULL, '1.0000', '1.1500', '1.1500', '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 (28989, '2021-10-28', 2237, 27889, 2261, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28990, '2021-10-28', 2152, 27890, 2261, 24976, '1.0000', '10.8300', '10.8300', '18.5000', '18.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 (28991, '2021-10-28', 1621, 27891, 2261, 37805, '1.0000', '9.6682', '9.6682', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28992, '2021-10-28', 2169, 27892, 2261, NULL, '1.0000', '1.1500', '1.1500', '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 (28993, '2021-10-28', 2315, 27893, 2261, NULL, '1.0000', '-6.8895', '-6.8895', '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 (28994, '2021-10-28', 2315, 27894, 2261, NULL, '1.0000', '-6.8895', '-6.8895', '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 (28995, '2021-10-28', 7672, 27895, 2261, NULL, '1.0000', '1.0200', '1.0200', '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 (28996, '2021-10-28', 2359, 27896, 2261, NULL, '2.0000', '16.2200', '16.2200', '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 (28997, '2021-10-28', 8984, 27897, 2261, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28998, '2021-10-28', 2917, 27898, 2261, 24932, '1.0000', '7.3500', '7.3500', '10.0000', '10.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 (28999, '2021-10-28', 2821, 27899, 2261, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29000, '2021-10-28', 7482, 27900, 2261, 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 (29001, '2021-10-28', 7518, 27901, 2261, NULL, '1.0000', '7.8200', '7.8200', '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 (29002, '2021-10-28', 1670, 27902, 2261, 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 (29003, '2021-10-28', 1536, 27903, 2261, 37793, '10.0000', '101.0896', '101.0896', '5.2000', '5.2000', '40.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29004, '2021-10-28', 2829, 27904, 2261, 38537, '1.0000', '24.8941', '24.8941', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29005, '2021-10-28', 7384, 27905, 2261, NULL, '1.0000', '8.2000', '8.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 (29006, '2021-10-28', 1674, 27906, 2261, NULL, '1.0000', '3.2473', '3.2473', '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 (29007, '2021-10-28', 9563, 27907, 2261, 38991, '2.0000', '5.1000', '5.1000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29008, '2021-10-28', 1337, 27908, 2261, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (29009, '2021-10-28', 2527, 27909, 2261, 24859, '1.0000', '40.0000', '40.0000', '48.0000', '48.0000', '1.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 (29010, '2021-10-28', 9563, 27910, 2261, 38991, '2.0000', '5.1000', '5.1000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29011, '2021-10-28', 9399, 27912, 2261, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29012, '2021-10-28', 2317, 27913, 2261, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '19.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 (29013, '2021-10-28', 8933, 27914, 2261, 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 (29014, '2021-10-28', 2154, 27915, 2261, 34960, '2.0000', '9.9480', '9.9480', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29015, '2021-10-28', 9603, 27916, 2261, 38979, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29016, '2021-10-28', 2864, 27917, 2261, 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 (29017, '2021-10-28', 7780, 27919, 2261, NULL, '1.0000', '2.6000', '2.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 (29018, '2021-10-28', 2284, 27921, 2261, 38563, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29019, '2021-10-28', 7899, 27922, 2261, 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 (29020, '2021-10-28', 8186, 27923, 2262, NULL, '2.0000', '1.0800', '1.0800', '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 (29021, '2021-10-28', 2951, 27924, 2262, 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 (29022, '2021-10-28', 9563, 27925, 2262, 38991, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29023, '2021-10-28', 2662, 27926, 2262, 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 (29024, '2021-10-28', 8677, 27927, 2262, NULL, '2.0000', '89.9250', '89.9250', '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 (29025, '2021-10-28', 7585, 27928, 2262, NULL, '1.0000', '3.9600', '3.9600', '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 (29026, '2021-10-28', 1715, 27929, 2262, 37809, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29027, '2021-10-28', 1863, 27930, 2262, NULL, '1.0000', '1.2830', '1.2830', '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 (29028, '2021-10-28', 9399, 27931, 2262, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29029, '2021-10-28', 2237, 27932, 2262, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29030, '2021-10-28', 1499, 27933, 2262, 38940, '1.0000', '0.4684', '0.4684', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29031, '2021-10-28', 1912, 27934, 2262, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29032, '2021-10-28', 7719, 27935, 2262, NULL, '1.0000', '5.5000', '5.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 (29033, '2021-10-28', 2281, 27936, 2262, NULL, '2.0000', '3.0000', '3.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 (29034, '2021-10-28', 9089, 27937, 2262, NULL, '1.0000', '3.8000', '3.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 (29035, '2021-10-28', 9084, 27938, 2262, NULL, '1.0000', '8.9000', '8.9000', '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 (29036, '2021-10-28', 1590, 27939, 2262, 38592, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '0.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29037, '2021-10-28', 1549, 27940, 2262, 19846, '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 (29038, '2021-10-28', 2546, 27942, 2262, 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 (29039, '2021-10-28', 2951, 27943, 2262, 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 (29040, '2021-10-28', 9591, 27944, 2262, NULL, '1.0000', '3.0000', '3.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 (29041, '2021-10-28', 2662, 27945, 2262, 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 (29042, '2021-10-28', 8208, 27946, 2262, NULL, '1.0000', '33.0000', '33.0000', '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 (29043, '2021-10-28', 2317, 27947, 2262, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '18.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 (29044, '2021-10-28', 7355, 27948, 2262, NULL, '1.0000', '19.4600', '19.4600', '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 (29045, '2021-10-28', 2317, 27949, 2262, 24868, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '17.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 (29046, '2021-10-28', 7564, 27950, 2262, 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 (29047, '2021-10-28', 2169, 27951, 2262, NULL, '1.0000', '1.1500', '1.1500', '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 (29048, '2021-10-28', 1420, 27952, 2262, 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 (29049, '2021-10-28', 1401, 27953, 2262, 31958, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29050, '2021-10-28', 7913, 27954, 2262, NULL, '1.0000', '2.5500', '2.5500', '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 (29051, '2021-10-28', 1863, 27955, 2262, NULL, '2.0000', '1.2830', '1.2830', '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 (29052, '2021-10-28', 2353, 27957, 2262, 34929, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29053, '2021-10-28', 2821, 27958, 2262, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29054, '2021-10-28', 1337, 27959, 2262, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (29055, '2021-10-28', 2917, 27960, 2262, 24932, '1.0000', '7.3500', '7.3500', '10.0000', '10.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 (29056, '2021-10-28', 1493, 27961, 2262, 37797, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29057, '2021-10-28', 2081, 27962, 2262, 38927, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29058, '2021-10-28', 2135, 27963, 2262, 23175, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (29059, '2021-10-28', 7411, 27964, 2262, NULL, '1.0000', '1.3500', '1.3500', '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 (29060, '2021-10-28', 2169, 27965, 2262, NULL, '1.0000', '1.1500', '1.1500', '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 (29061, '2021-10-28', 2167, 27966, 2262, 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 (29062, '2021-10-28', 7411, 27967, 2262, NULL, '1.0000', '1.3500', '1.3500', '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 (29063, '2021-10-28', 1339, 27968, 2262, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29064, '2021-10-28', 1529, 27969, 2262, NULL, '1.0000', '3.7110', '3.7110', '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 (29065, '2021-10-28', 1641, 27970, 2262, 38521, '5.0000', '1.9923', '1.9923', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29066, '2021-10-28', 7411, 27971, 2262, NULL, '2.0000', '1.3500', '1.3500', '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 (29067, '2021-10-28', 2169, 27972, 2262, NULL, '2.0000', '1.1500', '1.1500', '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 (29068, '2021-10-28', 1665, 27973, 2262, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29069, '2021-10-28', 1555, 27974, 2262, 23134, '1.0000', '22.2400', '22.2400', '29.0000', '29.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 (29070, '2021-10-28', 1845, 27975, 2262, 38939, '1.0000', '19.7000', '19.7000', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29071, '2021-10-29', 2010, 27976, 2263, 38969, '1.0000', '1.5910', '1.5910', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29072, '2021-10-29', 1596, 27977, 2263, 38943, '1.0000', '2.6940', '2.6940', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29073, '2021-10-29', 1529, 27978, 2263, NULL, '1.0000', '3.7110', '3.7110', '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 (29074, '2021-10-29', 8982, 27979, 2263, 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 (29075, '2021-10-29', 2713, 27980, 2263, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29076, '2021-10-29', 2643, 27981, 2263, 37731, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29077, '2021-10-29', 2948, 27982, 2263, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '154.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 (29078, '2021-10-29', 2169, 27983, 2263, NULL, '1.0000', '1.1500', '1.1500', '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 (29079, '2021-10-29', 1569, 27984, 2263, 37772, '1.0000', '14.2800', '14.2800', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29080, '2021-10-29', 2242, 27985, 2263, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29081, '2021-10-29', 1947, 27986, 2263, 33339, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29082, '2021-10-29', 8622, 27987, 2263, 38945, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29083, '2021-10-29', 2758, 27988, 2263, 34623, '1.0000', '5.4000', '5.4000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29084, '2021-10-29', 1841, 27989, 2263, 34025, '4.0000', '0.2601', '0.2601', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29085, '2021-10-29', 8984, 27990, 2263, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29086, '2021-10-29', 1409, 27991, 2263, NULL, '1.0000', '13.5000', '13.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 (29087, '2021-10-29', 1519, 27992, 2263, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29088, '2021-10-29', 1935, 27993, 2263, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29089, '2021-10-29', 1935, 27994, 2263, 30686, '1.0000', '37.9921', '37.9921', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29090, '2021-10-29', 2315, 27995, 2263, NULL, '1.0000', '-6.8895', '-6.8895', '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 (29091, '2021-10-29', 2965, 27996, 2263, NULL, '1.0000', '5.0000', '5.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 (29092, '2021-10-29', 1580, 27997, 2263, 33362, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29093, '2021-10-29', 1580, 27997, 2263, 19875, '1.0000', '0.9900', '0.9900', '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 (29094, '2021-10-29', 1409, 27998, 2263, NULL, '1.0000', '13.5000', '13.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 (29095, '2021-10-29', 1493, 27999, 2263, 37797, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29096, '2021-10-29', 2916, 28000, 2263, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29097, '2021-10-29', 7848, 28001, 2263, NULL, '1.0000', '1.3500', '1.3500', '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 (29098, '2021-10-29', 8607, 28002, 2263, NULL, '1.0000', '12.0000', '12.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 (29099, '2021-10-29', 2169, 28003, 2264, NULL, '1.0000', '1.1500', '1.1500', '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 (29100, '2021-10-29', 2169, 28004, 2264, NULL, '2.0000', '1.1500', '1.1500', '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 (29101, '2021-10-29', 1888, 28005, 2264, 37751, '1.0000', '194.0075', '194.0075', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29102, '2021-10-29', 1855, 28006, 2265, 22241, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '12.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 (29103, '2021-10-29', 2315, 28007, 2265, 2735, '-138.0000', '0.3300', '0.3300', '0.6000', '0.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 (29104, '2021-10-29', 2315, 28007, 2265, NULL, '140.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29105, '2021-10-29', 3035, 28008, 2265, NULL, '1.0000', '9.5000', '9.5000', '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 (29106, '2021-10-29', 2366, 28009, 2265, 3833, '-15.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 (29107, '2021-10-29', 2366, 28009, 2265, NULL, '17.0000', '3.7500', '3.7500', '6.0000', '6.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 (29108, '2021-10-29', 1831, 28010, 2265, NULL, '1.0000', '8.4400', '8.4400', '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 (29109, '2021-10-29', 9579, 28011, 2265, 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 (29110, '2021-10-29', 1884, 28012, 2265, 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 (29111, '2021-10-29', 2379, 28013, 2265, 4032, '-20.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 (29112, '2021-10-29', 2379, 28013, 2265, NULL, '21.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29113, '2021-10-29', 2315, 28014, 2265, 2735, '-138.0000', '0.3300', '0.3300', '0.6000', '0.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 (29114, '2021-10-29', 2315, 28014, 2265, NULL, '140.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29115, '2021-10-29', 2660, 28015, 2265, 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 (29116, '2021-10-29', 2169, 28016, 2265, 10737, '1.0000', '3.8397', '3.8397', '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 (29117, '2021-10-29', 1665, 28017, 2265, 3235, '-23.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 (29118, '2021-10-29', 1665, 28017, 2265, NULL, '24.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (29119, '2021-10-29', 1851, 28018, 2265, 2410, '1.0000', '10.6568', '10.6568', '17.0000', '17.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 (29120, '2021-10-29', 9554, 28019, 2265, 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 (29121, '2021-10-29', 1904, 28020, 2265, 5442, '-6.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 (29122, '2021-10-29', 1904, 28020, 2265, NULL, '7.0000', '0.3200', '0.3200', '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 (29123, '2021-10-29', 1449, 28021, 2265, 5569, '-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 (29124, '2021-10-29', 1449, 28021, 2265, 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 (29125, '2021-10-29', 1910, 28022, 2265, 167, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '44.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 (29126, '2021-10-29', 2266, 28023, 2265, 2801, '-4.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 (29127, '2021-10-29', 2266, 28023, 2265, NULL, '5.0000', '6.4900', '6.4900', '11.0000', '11.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 (29128, '2021-10-29', 1651, 28024, 2265, 3222, '-16.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 (29129, '2021-10-29', 1651, 28024, 2265, NULL, '17.0000', '6.7039', '6.7039', '10.0000', '10.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 (29130, '2021-10-29', 3029, 28025, 2265, NULL, '1.0000', '4.7700', '4.7700', '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 (29131, '2021-10-29', 1695, 28026, 2265, 12925, '-1.0000', '15.5000', '15.5000', '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 (29132, '2021-10-29', 1695, 28026, 2265, NULL, '2.0000', '15.5000', '15.5000', '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 (29133, '2021-10-29', 1593, 28027, 2265, 8359, '14.0000', '57.4565', '57.4565', '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 (29134, '2021-10-29', 2416, 28028, 2265, 4745, '-13.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 (29135, '2021-10-29', 2416, 28028, 2265, NULL, '14.0000', '1.2000', '1.2000', '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 (29136, '2021-10-29', 2315, 28029, 2265, 2735, '-138.0000', '0.3300', '0.3300', '0.6000', '0.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 (29137, '2021-10-29', 2315, 28029, 2265, NULL, '139.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-139.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29138, '2021-10-29', 7588, 28030, 2266, NULL, '1.0000', '7.3047', '7.3047', '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 (29139, '2021-10-29', 7674, 28031, 2266, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '166.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29140, '2021-10-29', 1338, 28032, 2266, 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 (29141, '2021-10-29', 2297, 28033, 2266, NULL, '1.0000', '7.2000', '7.2000', '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 (29142, '2021-10-29', 8166, 28034, 2266, NULL, '1.0000', '4.6000', '4.6000', '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 (29143, '2021-10-29', 7782, 28035, 2266, NULL, '1.0000', '5.0000', '5.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 (29144, '2021-10-29', 1332, 28036, 2266, 227, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29145, '2021-10-29', 8438, 28037, 2266, NULL, '1.0000', '11.5000', '11.5000', '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 (29146, '2021-10-29', 8834, 28038, 2266, NULL, '1.0000', '0.6000', '0.6000', '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 (29147, '2021-10-29', 2435, 28039, 2266, NULL, '1.0000', '4.8000', '4.8000', '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 (29148, '2021-10-29', 8086, 28040, 2266, NULL, '1.0000', '9.6204', '9.6204', '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 (29149, '2021-10-29', 7671, 28041, 2266, NULL, '1.0000', '15.5000', '15.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 (29150, '2021-10-29', 1904, 28042, 2266, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29151, '2021-10-29', 8208, 28043, 2266, NULL, '1.0000', '33.0000', '33.0000', '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 (29152, '2021-10-29', 1501, 28044, 2266, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29153, '2021-10-29', 7411, 28045, 2266, NULL, '1.0000', '1.3500', '1.3500', '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 (29154, '2021-10-29', 8344, 28046, 2266, NULL, '4.0000', '18.3800', '18.3800', '11.0000', '11.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 (29155, '2021-10-29', 1498, 28047, 2266, 33520, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29156, '2021-10-29', 7672, 28048, 2266, NULL, '1.0000', '1.0200', '1.0200', '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 (29157, '2021-10-29', 7910, 28049, 2266, NULL, '1.0000', '7.9800', '7.9800', '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 (29158, '2021-10-29', 9214, 28050, 2266, NULL, '1.0000', '16.3069', '16.3069', '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 (29159, '2021-10-29', 9544, 28051, 2266, NULL, '1.0000', '25.0000', '25.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 (29160, '2021-10-29', 7660, 28052, 2266, NULL, '1.0000', '3.6000', '3.6000', '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 (29161, '2021-10-29', 8315, 28053, 2266, NULL, '1.0000', '17.0000', '17.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 (29162, '2021-10-29', 8966, 28054, 2266, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29163, '2021-10-29', 7524, 28055, 2266, NULL, '1.0000', '11.9500', '11.9500', '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 (29164, '2021-10-29', 8643, 28056, 2266, NULL, '15.0000', '11.0000', '11.0000', '17.0000', '17.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 (29165, '2021-10-29', 7835, 28057, 2266, NULL, '1.0000', '27.0000', '27.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 (29166, '2021-10-29', 1303, 28058, 2266, 33727, '1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '105.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29167, '2021-10-29', 7317, 28059, 2267, NULL, '1.0000', '29.3700', '29.3700', '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 (29168, '2021-10-29', 9418, 28060, 2267, NULL, '1.0000', '19.8000', '19.8000', '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 (29169, '2021-10-29', 7518, 28061, 2267, NULL, '1.0000', '-67.2578', '-67.2578', '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 (29170, '2021-10-29', 8497, 28062, 2267, NULL, '2.0000', '-133.2800', '-133.2800', '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 (29171, '2021-10-29', 8920, 28063, 2267, 37425, '2.0000', '9.8500', '9.8500', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29172, '2021-10-29', 9272, 28064, 2267, NULL, '1.0000', '3.1000', '3.1000', '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 (29173, '2021-10-29', 1916, 28065, 2267, 30921, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29174, '2021-10-29', 8497, 28066, 2267, NULL, '1.0000', '-133.2800', '-133.2800', '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 (29175, '2021-10-29', 7411, 28067, 2267, NULL, '1.0000', '1.3500', '1.3500', '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 (29176, '2021-10-29', 7354, 28068, 2267, NULL, '3.0000', '18.0000', '18.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 (29177, '2021-10-29', 7391, 28069, 2267, NULL, '1.0000', '-49.8192', '-49.8192', '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 (29178, '2021-10-29', 2512, 28070, 2267, 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 (29179, '2021-10-29', 9499, 28071, 2267, 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 (29180, '2021-10-29', 2962, 28072, 2267, 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 (29181, '2021-10-29', 9177, 28073, 2267, NULL, '5.0000', '0.8000', '0.8000', '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 (29182, '2021-10-29', 7585, 28074, 2267, NULL, '1.0000', '6.2000', '6.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 (29183, '2021-10-29', 7411, 28075, 2267, NULL, '1.0000', '1.3500', '1.3500', '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 (29184, '2021-10-29', 9534, 28076, 2267, 36035, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29185, '2021-10-29', 9274, 28077, 2267, NULL, '1.0000', '3.1000', '3.1000', '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 (29186, '2021-10-29', 2315, 28078, 2267, 38451, '3.0000', '0.4740', '0.4740', '0.6000', '0.6000', '104.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29187, '2021-10-29', 7576, 28079, 2267, NULL, '1.0000', '6.9100', '6.9100', '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 (29188, '2021-10-29', 8359, 28080, 2267, NULL, '1.0000', '16.7750', '16.7750', '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 (29189, '2021-10-29', 7671, 28081, 2267, NULL, '2.0000', '15.5000', '15.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 (29190, '2021-10-29', 7848, 28082, 2267, NULL, '1.0000', '1.3500', '1.3500', '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 (29191, '2021-10-29', 7518, 28083, 2267, NULL, '1.0000', '-67.2578', '-67.2578', '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 (29192, '2021-10-29', 7554, 28084, 2267, NULL, '10.0000', '3.0308', '3.0308', '2.2000', '2.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 (29193, '2021-10-29', 9092, 28085, 2267, 39042, '4.0000', '0.1303', '0.1303', '0.5000', '0.5000', '306.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29194, '2021-10-29', 8941, 28086, 2267, NULL, '1.0000', '12.0000', '12.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 (29195, '2021-10-29', 2287, 28087, 2267, NULL, '4.0000', '2.3000', '2.3000', '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 (29196, '2021-10-29', 9304, 28088, 2267, NULL, '1.0000', '12.0000', '12.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 (29197, '2021-10-29', 1501, 28089, 2267, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29198, '2021-10-29', 8608, 28090, 2267, NULL, '1.0000', '5.7400', '5.7400', '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 (29199, '2021-10-29', 9240, 28091, 2267, NULL, '1.0000', '25.1200', '25.1200', '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 (29200, '2021-10-29', 7593, 28092, 2267, 36664, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29201, '2021-10-29', 7819, 28093, 2267, NULL, '1.0000', '9.5000', '9.5000', '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 (29202, '2021-10-29', 7411, 28094, 2267, NULL, '2.0000', '1.3500', '1.3500', '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 (29203, '2021-10-29', 7703, 28095, 2267, NULL, '2.0000', '22.9900', '22.9900', '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 (29204, '2021-10-29', 7674, 28096, 2267, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '165.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29205, '2021-10-29', 7954, 28097, 2267, NULL, '4.0000', '21.0000', '21.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 (29206, '2021-10-29', 7639, 28098, 2267, 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 (29207, '2021-10-29', 8702, 28099, 2267, NULL, '1.0000', '3.6700', '3.6700', '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 (29208, '2021-10-29', 7892, 28100, 2267, NULL, '1.0000', '4.2000', '4.2000', '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 (29209, '2021-10-29', 9508, 28101, 2267, NULL, '1.0000', '3.4000', '3.4000', '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 (29210, '2021-10-29', 1577, 28102, 2267, 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 (29211, '2021-10-29', 8000, 28103, 2267, NULL, '1.0000', '41.2918', '41.2918', '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 (29212, '2021-10-29', 2753, 28104, 2267, 32796, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29213, '2021-10-29', 7782, 28105, 2267, NULL, '1.0000', '5.0000', '5.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 (29214, '2021-10-29', 7736, 28106, 2267, NULL, '1.0000', '15.0000', '15.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 (29215, '2021-10-29', 9214, 28107, 2267, NULL, '1.0000', '16.3069', '16.3069', '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 (29216, '2021-10-29', 7641, 28108, 2267, NULL, '1.0000', '6.5038', '6.5038', '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 (29217, '2021-10-29', 7933, 28109, 2267, NULL, '1.0000', '5.5000', '5.5000', '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 (29218, '2021-10-29', 2467, 28110, 2268, NULL, '2.0000', '19.8000', '19.8000', '26.5000', '26.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 (29219, '2021-10-29', 7781, 28111, 2268, NULL, '3.0000', '4.2500', '4.2500', '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 (29220, '2021-10-29', 8000, 28112, 2268, NULL, '1.0000', '41.2918', '41.2918', '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 (29221, '2021-10-29', 7507, 28113, 2268, NULL, '3.0000', '6.5000', '6.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 (29222, '2021-10-29', 7889, 28114, 2268, 38147, '1.0000', '-8.6571', '-8.6571', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29223, '2021-10-29', 2315, 28115, 2268, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '102.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29224, '2021-10-29', 7671, 28116, 2268, NULL, '1.0000', '15.5000', '15.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 (29225, '2021-10-29', 8131, 28117, 2268, NULL, '1.0000', '6.9800', '6.9800', '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 (29226, '2021-10-29', 7354, 28118, 2268, NULL, '5.0000', '18.0000', '18.0000', '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 (29227, '2021-10-29', 2284, 28119, 2269, 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 (29228, '2021-10-29', 2951, 28120, 2270, 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 (29229, '2021-10-29', 8879, 28121, 2270, NULL, '1.0000', '4.0000', '4.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 (29230, '2021-10-29', 7626, 28122, 2270, 38922, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29231, '2021-10-29', 7609, 28123, 2270, NULL, '1.0000', '4.3300', '4.3300', '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 (29232, '2021-10-29', 9174, 28124, 2270, NULL, '1.0000', '15.5000', '15.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 (29233, '2021-10-29', 7411, 28125, 2270, NULL, '1.0000', '1.3500', '1.3500', '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 (29234, '2021-10-29', 7473, 28126, 2270, NULL, '2.0000', '9.2200', '9.2200', '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 (29235, '2021-10-29', 2283, 28127, 2270, 38564, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29236, '2021-10-29', 1928, 28128, 2270, NULL, '1.0000', '5.5000', '5.5000', '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 (29237, '2021-10-29', 7411, 28129, 2270, NULL, '2.0000', '1.3500', '1.3500', '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 (29238, '2021-10-29', 9591, 28130, 2270, NULL, '2.0000', '3.0000', '3.0000', '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 (29239, '2021-10-29', 8622, 28131, 2270, 38945, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29240, '2021-10-29', 7564, 28132, 2270, NULL, '1.0000', '0.6400', '0.6400', '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 (29241, '2021-10-29', 2315, 28133, 2270, NULL, '2.0000', '-6.8895', '-6.8895', '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 (29242, '2021-10-29', 7411, 28134, 2270, NULL, '1.0000', '1.3500', '1.3500', '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 (29243, '2021-10-29', 1670, 28135, 2270, 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 (29244, '2021-10-29', 2095, 28136, 2270, NULL, '1.0000', '1.5000', '1.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 (29245, '2021-10-29', 2241, 28137, 2270, 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 (29246, '2021-10-29', 1839, 28138, 2270, NULL, '1.0000', '6.0835', '6.0835', '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 (29247, '2021-10-29', 1672, 28139, 2270, NULL, '10.0000', '24.6900', '24.6900', '4.0000', '4.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 (29248, '2021-10-29', 1942, 28140, 2270, 23124, '1.0000', '19.0000', '19.0000', '26.0000', '26.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 (29249, '2021-10-29', 1942, 28141, 2270, 23124, '1.0000', '19.0000', '19.0000', '26.0000', '26.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 (29250, '2021-10-29', 2169, 28142, 2270, NULL, '1.0000', '1.1500', '1.1500', '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 (29251, '2021-10-29', 7459, 28143, 2270, NULL, '10.0000', '-6.1729', '-6.1729', '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 (29252, '2021-10-29', 1812, 28144, 2270, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29253, '2021-10-29', 8638, 28145, 2270, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29254, '2021-10-29', 1499, 28146, 2270, 38940, '3.0000', '0.4684', '0.4684', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29255, '2021-10-29', 1805, 28147, 2270, NULL, '1.0000', '4.5244', '4.5244', '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 (29256, '2021-10-29', 2379, 28148, 2270, NULL, '1.0000', '1.8000', '1.8000', '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 (29257, '2021-10-29', 1837, 28149, 2270, 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 (29258, '2021-10-29', 2242, 28150, 2270, 37444, '1.0000', '0.5518', '0.5518', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29259, '2021-10-29', 1787, 28151, 2270, 38914, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29260, '2021-10-29', 8984, 28152, 2270, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29261, '2021-10-29', 1856, 28153, 2270, 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 (29262, '2021-10-29', 2136, 28154, 2270, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29263, '2021-10-29', 1744, 28155, 2270, 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 (29264, '2021-10-29', 1630, 28156, 2270, 31083, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29265, '2021-10-29', 1837, 28157, 2270, 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 (29266, '2021-10-29', 9556, 28158, 2270, 38546, '3.0000', '0.5639', '0.5639', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29267, '2021-10-29', 1529, 28159, 2270, NULL, '1.0000', '3.7110', '3.7110', '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 (29268, '2021-10-29', 2379, 28160, 2270, 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 (29269, '2021-10-29', 2241, 28161, 2270, 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 (29270, '2021-10-29', 1555, 28162, 2270, 23134, '1.0000', '22.2400', '22.2400', '29.0000', '29.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 (29271, '2021-10-29', 1888, 28163, 2270, 29642, '1.0000', '194.0075', '194.0075', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29272, '2021-10-29', 8638, 28164, 2270, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29273, '2021-10-29', 2237, 28165, 2270, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29274, '2021-10-29', 8746, 28166, 2270, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29275, '2021-10-29', 8608, 28167, 2270, NULL, '1.0000', '0.9000', '0.9000', '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 (29276, '2021-10-29', 7814, 28168, 2270, NULL, '1.0000', '18.5000', '18.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 (29277, '2021-10-29', 7411, 28169, 2270, NULL, '1.0000', '1.3500', '1.3500', '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 (29278, '2021-10-29', 2320, 28170, 2270, 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 (29279, '2021-10-29', 1912, 28171, 2270, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29280, '2021-10-29', 1851, 28172, 2270, 30668, '1.0000', '12.2777', '12.2777', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29281, '2021-10-29', 2169, 28173, 2270, NULL, '2.0000', '1.1500', '1.1500', '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 (29282, '2021-10-29', 7713, 28174, 2270, NULL, '1.0000', '4.4000', '4.4000', '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 (29283, '2021-10-29', 1772, 28175, 2270, 30665, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29284, '2021-10-29', 2221, 28176, 2270, 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 (29285, '2021-10-29', 9541, 28177, 2271, NULL, '2.0000', '42.0000', '42.0000', '56.0000', '56.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 (29286, '2021-10-30', 1533, 28178, 2272, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29287, '2021-10-30', 2635, 28179, 2272, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29288, '2021-10-30', 2237, 28180, 2272, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29289, '2021-10-30', 1381, 28181, 2272, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29290, '2021-10-30', 1529, 28182, 2272, NULL, '1.0000', '3.7110', '3.7110', '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 (29291, '2021-10-30', 1346, 28183, 2272, 24923, '3.0000', '-20.8715', '-20.8715', '1.5000', '1.5000', '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 (29292, '2021-10-30', 1864, 28184, 2272, 34932, '1.0000', '5.9100', '5.9100', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29293, '2021-10-30', 1577, 28185, 2272, 38540, '1.0000', '2.5020', '2.5020', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29294, '2021-10-30', 1863, 28186, 2272, NULL, '1.0000', '1.2830', '1.2830', '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 (29295, '2021-10-30', 7741, 28187, 2272, NULL, '1.0000', '1.2000', '1.2000', '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 (29296, '2021-10-30', 2284, 28188, 2272, 38563, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29297, '2021-10-30', 1908, 28189, 2272, NULL, '3.0000', '1.7500', '1.7500', '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 (29298, '2021-10-30', 1912, 28190, 2272, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29299, '2021-10-30', 2967, 28191, 2272, 33376, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29300, '2021-10-30', 7531, 28192, 2272, 37804, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29301, '2021-10-30', 1571, 28193, 2272, 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 (29302, '2021-10-30', 2167, 28194, 2272, 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 (29303, '2021-10-30', 2948, 28195, 2272, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '153.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 (29304, '2021-10-30', 2393, 28196, 2273, NULL, '1.0000', '3.2865', '3.2865', '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 (29305, '2021-10-30', 9603, 28197, 2273, 38979, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29306, '2021-10-30', 2417, 28198, 2273, 32544, '1.0000', '3.7800', '3.7800', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29307, '2021-10-30', 7741, 28199, 2273, NULL, '1.0000', '1.2000', '1.2000', '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 (29308, '2021-10-30', 1841, 28200, 2273, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29309, '2021-10-30', 2908, 28201, 2273, 24963, '1.0000', '0.2700', '0.2700', '0.5000', '0.5000', '33.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 (29310, '2021-10-30', 1346, 28202, 2273, 24923, '7.0000', '-20.8715', '-20.8715', '1.5000', '1.5000', '32.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 (29311, '2021-10-30', 1651, 28203, 2273, 23126, '1.0000', '10.3802', '10.3802', '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 (29312, '2021-10-30', 1326, 28204, 2273, NULL, '1.0000', '3.0300', '3.0300', '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 (29313, '2021-10-30', 1665, 28205, 2273, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29314, '2021-10-30', 1760, 28206, 2273, NULL, '1.0000', '1.5900', '1.5900', '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 (29315, '2021-10-30', 2643, 28207, 2273, 37731, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29316, '2021-10-30', 1863, 28208, 2274, NULL, '1.0000', '1.2830', '1.2830', '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 (29317, '2021-10-30', 1409, 28209, 2275, NULL, '1.0000', '13.5000', '13.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 (29318, '2021-10-30', 2713, 28210, 2275, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29319, '2021-10-30', 2242, 28211, 2276, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29320, '2021-10-30', 2768, 28212, 2276, 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 (29321, '2021-10-30', 2293, 28213, 2276, NULL, '3.0000', '1.4400', '1.4400', '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 (29322, '2021-10-30', 7411, 28214, 2276, NULL, '1.0000', '1.3500', '1.3500', '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 (29323, '2021-10-30', 2360, 28215, 2277, 3862, '-15.0000', '0.5200', '0.5200', '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 (29324, '2021-10-30', 2360, 28215, 2277, NULL, '16.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (29325, '2021-10-30', 2169, 28216, 2277, 10737, '1.0000', '3.8397', '3.8397', '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 (29326, '2021-10-30', 8133, 28217, 2277, 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 (29327, '2021-10-30', 2618, 28218, 2277, 9836, '-15.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 (29328, '2021-10-30', 2618, 28218, 2277, NULL, '17.0000', '4.1000', '4.1000', '5.5000', '5.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 (29329, '2021-10-30', 2342, 28219, 2277, 3845, '-14.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 (29330, '2021-10-30', 2342, 28219, 2277, NULL, '24.0000', '1.8600', '1.8600', '2.5000', '2.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 (29331, '2021-10-30', 1311, 28220, 2277, 39, '1.0000', '79.3908', '79.3908', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29332, '2021-10-30', 1311, 28220, 2277, NULL, '1.0000', '79.3908', '79.3908', '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 (29333, '2021-10-30', 2237, 28221, 2277, 2781, '-12.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 (29334, '2021-10-30', 2237, 28221, 2277, NULL, '13.0000', '1.0600', '1.0600', '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 (29335, '2021-10-30', 2287, 28222, 2277, NULL, '3.0000', '1.8000', '1.8000', '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 (29336, '2021-10-30', 1748, 28223, 2277, 18844, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '42.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 (29337, '2021-10-30', 2458, 28224, 2277, NULL, '1.0000', '13.2000', '13.2000', '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 (29338, '2021-10-30', 1434, 28225, 2277, 22343, '1.0000', '15.3766', '15.3766', '23.0000', '23.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 (29339, '2021-10-30', 2712, 28226, 2277, 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 (29340, '2021-10-30', 1602, 28227, 2277, 5897, '-30.0000', '6.7859', '6.7859', '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 (29341, '2021-10-30', 1602, 28227, 2277, NULL, '31.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (29342, '2021-10-30', 1863, 28228, 2277, 10808, '-56.0000', '0.4136', '0.4136', '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 (29343, '2021-10-30', 1863, 28228, 2277, NULL, '57.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29344, '2021-10-30', 2454, 28229, 2277, 33792, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29345, '2021-10-30', 3029, 28230, 2277, NULL, '1.0000', '4.7700', '4.7700', '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 (29346, '2021-10-30', 2362, 28231, 2277, 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 (29347, '2021-10-30', 2362, 28231, 2277, NULL, '20.0000', '8.8300', '8.8300', '12.0000', '12.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 (29348, '2021-10-30', 1738, 28232, 2277, 18834, '1.0000', '7.1000', '7.1000', '9.5000', '9.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 (29349, '2021-10-30', 2109, 28233, 2277, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '133.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 (29350, '2021-10-30', 1912, 28234, 2277, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (29351, '2021-10-30', 2829, 28235, 2277, 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 (29352, '2021-10-30', 1824, 28236, 2277, NULL, '1.0000', '5.2000', '5.2000', '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 (29353, '2021-10-30', 1687, 28237, 2277, 5785, '-10.0000', '165.9024', '165.9024', '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 (29354, '2021-10-30', 1687, 28237, 2277, NULL, '11.0000', '165.9024', '165.9024', '16.0000', '16.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 (29355, '2021-10-30', 1935, 28238, 2277, 5586, '-23.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 (29356, '2021-10-30', 1935, 28238, 2277, NULL, '24.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (29357, '2021-10-30', 2315, 28239, 2277, 2735, '-143.0000', '0.3300', '0.3300', '0.6000', '0.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 (29358, '2021-10-30', 2315, 28239, 2277, NULL, '144.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-144.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29359, '2021-10-30', 1586, 28240, 2277, NULL, '1.0000', '45.8000', '45.8000', '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 (29360, '2021-10-30', 7828, 28241, 2278, NULL, '1.0000', '3.0000', '3.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 (29361, '2021-10-30', 8101, 28242, 2278, NULL, '2.0000', '21.7000', '21.7000', '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 (29362, '2021-10-30', 7411, 28243, 2278, NULL, '1.0000', '1.3500', '1.3500', '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 (29363, '2021-10-30', 7782, 28244, 2278, NULL, '2.0000', '5.0000', '5.0000', '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 (29364, '2021-10-30', 7703, 28245, 2278, NULL, '2.0000', '22.9900', '22.9900', '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 (29365, '2021-10-30', 8037, 28246, 2278, 36082, '2.0000', '45.3419', '45.3419', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29366, '2021-10-30', 7354, 28247, 2278, NULL, '1.0000', '18.0000', '18.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 (29367, '2021-10-30', 9456, 28248, 2278, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29368, '2021-10-30', 9193, 28249, 2278, NULL, '1.0000', '6.8063', '6.8063', '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 (29369, '2021-10-30', 7612, 28250, 2278, NULL, '2.0000', '1.1770', '1.1770', '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 (29370, '2021-10-30', 7911, 28251, 2278, NULL, '1.0000', '4.3700', '4.3700', '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 (29371, '2021-10-30', 7496, 28252, 2278, NULL, '1.0000', '0.9600', '0.9600', '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 (29372, '2021-10-30', 7722, 28253, 2278, NULL, '2.0000', '8.0000', '8.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 (29373, '2021-10-30', 7711, 28254, 2278, NULL, '2.0000', '-11.3567', '-11.3567', '47.0000', '47.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 (29374, '2021-10-30', 8188, 28255, 2278, NULL, '1.0000', '6.7000', '6.7000', '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 (29375, '2021-10-30', 8746, 28256, 2278, 32134, '1.0000', '3.8000', '3.8000', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29376, '2021-10-30', 7611, 28257, 2278, 33529, '1.0000', '5.0485', '5.0485', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29377, '2021-10-30', 7620, 28258, 2278, 33540, '1.0000', '9.3100', '9.3100', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29378, '2021-10-30', 7641, 28259, 2278, NULL, '1.0000', '6.5038', '6.5038', '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 (29379, '2021-10-30', 9092, 28260, 2278, 39042, '2.0000', '0.1303', '0.1303', '0.5000', '0.5000', '304.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29380, '2021-10-30', 7744, 28261, 2278, NULL, '3.0000', '2.5000', '2.5000', '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 (29381, '2021-10-30', 7920, 28262, 2278, 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 (29382, '2021-10-30', 9407, 28263, 2278, 30926, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29383, '2021-10-30', 7927, 28264, 2278, 30192, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29384, '2021-10-30', 2713, 28265, 2278, 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 (29385, '2021-10-30', 7333, 28266, 2278, NULL, '1.0000', '13.5000', '13.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 (29386, '2021-10-30', 9198, 28267, 2278, NULL, '1.0000', '5.7000', '5.7000', '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 (29387, '2021-10-30', 2388, 28268, 2278, 35197, '1.0000', '52.8500', '52.8500', '70.0000', '70.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29388, '2021-10-30', 7674, 28269, 2278, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '163.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29389, '2021-10-30', 2289, 28270, 2278, 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 (29390, '2021-10-30', 8608, 28271, 2278, NULL, '1.0000', '5.7400', '5.7400', '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 (29391, '2021-10-30', 7544, 28272, 2278, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (29392, '2021-10-30', 1841, 28273, 2278, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '120.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29393, '2021-10-30', 9021, 28274, 2278, NULL, '1.0000', '7.0000', '7.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 (29394, '2021-10-30', 1841, 28275, 2278, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '120.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29395, '2021-10-30', 7544, 28276, 2278, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (29396, '2021-10-30', 7506, 28277, 2278, NULL, '1.0000', '15.0000', '15.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 (29397, '2021-10-30', 7675, 28278, 2278, NULL, '3.0000', '11.4300', '11.4300', '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 (29398, '2021-10-30', 7881, 28279, 2278, NULL, '1.0000', '32.7700', '32.7700', '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 (29399, '2021-10-30', 7473, 28280, 2278, NULL, '10.0000', '15.4731', '15.4731', '0.6000', '0.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 (29400, '2021-10-30', 7357, 28281, 2278, 29997, '1.0000', '11.7500', '11.7500', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29401, '2021-10-30', 8721, 28282, 2279, NULL, '2.0000', '3.0000', '3.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 (29402, '2021-10-30', 8780, 28283, 2279, NULL, '1.0000', '25.5900', '25.5900', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29403, '2021-10-30', 1499, 28284, 2280, 20585, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '11.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 (29404, '2021-10-30', 1845, 28285, 2281, NULL, '1.0000', '19.5000', '19.5000', '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 (29405, '2021-10-30', 7411, 28286, 2281, NULL, '1.0000', '1.3500', '1.3500', '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 (29406, '2021-10-30', 1670, 28287, 2281, 32015, '1.0000', '190.9258', '190.9258', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29407, '2021-10-30', 1674, 28288, 2281, 32017, '1.0000', '135.4360', '135.4360', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29408, '2021-10-30', 1550, 28289, 2281, 37569, '1.0000', '337.8612', '337.8612', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29409, '2021-10-30', 3072, 28290, 2281, 27333, '1.0000', '14.0000', '14.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29410, '2021-10-30', 2327, 28291, 2281, 36342, '1.0000', '1997.3810', '1997.3810', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29411, '2021-10-30', 3004, 28292, 2281, 34676, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29412, '2021-10-30', 1851, 28293, 2281, 32064, '1.0000', '13.2013', '13.2013', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29413, '2021-10-30', 2315, 28294, 2281, 3069, '2.0000', '0.3300', '0.3300', '0.6000', '0.6000', '212.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29414, '2021-10-30', 1910, 28295, 2281, 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 (29415, '2021-10-30', 1310, 28296, 2281, 29814, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '4.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29416, '2021-10-30', 2916, 28297, 2281, 36373, '1.0000', '14.1311', '14.1311', '20.0000', '20.0000', '14.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29417, '2021-10-30', 1810, 28298, 2281, 33004, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29418, '2021-10-30', 1596, 28299, 2281, 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 (29419, '2021-10-30', 1863, 28300, 2281, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29420, '2021-10-30', 1935, 28301, 2281, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29421, '2021-10-30', 1533, 28302, 2281, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29422, '2021-10-30', 2656, 28303, 2281, 34432, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29423, '2021-10-30', 2660, 28304, 2281, 37560, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29424, '2021-10-30', 8133, 28305, 2281, 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 (29425, '2021-10-30', 2167, 28306, 2281, 36389, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29426, '2021-10-30', 1689, 28307, 2281, 36351, '1.0000', '12.6079', '12.6079', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29427, '2021-10-30', 2730, 28308, 2281, 21547, '2.0000', '1.2000', '1.2000', '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 (29428, '2021-10-30', 1321, 28309, 2281, 2490, '1.0000', '9.8000', '9.8000', '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 (29429, '2021-10-30', 2088, 28310, 2281, 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 (29430, '2021-10-30', 2299, 28311, 2281, 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 (29431, '2021-10-30', 2628, 28312, 2281, 10209, '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 (29432, '2021-10-30', 1651, 28313, 2281, 38071, '1.0000', '6.7649', '6.7649', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29433, '2021-10-30', 2295, 28314, 2282, NULL, '2.0000', '0.7000', '0.7000', '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 (29434, '2021-10-30', 7672, 28315, 2282, NULL, '1.0000', '1.0200', '1.0200', '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 (29435, '2021-10-30', 8918, 28316, 2282, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29436, '2021-10-30', 8203, 28317, 2282, NULL, '1.0000', '1.0075', '1.0075', '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 (29437, '2021-10-30', 1947, 28318, 2282, NULL, '1.0000', '6615.3206', '6615.3206', '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 (29438, '2021-10-30', 7411, 28319, 2282, NULL, '2.0000', '1.3500', '1.3500', '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 (29439, '2021-10-30', 9167, 28320, 2282, 36041, '1.0000', '-1253.5456', '-1253.5456', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29440, '2021-10-30', 7709, 28321, 2282, NULL, '2.0000', '35.8000', '35.8000', '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 (29441, '2021-10-30', 7674, 28322, 2282, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '162.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29442, '2021-10-30', 8780, 28323, 2282, NULL, '1.0000', '25.5900', '25.5900', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29443, '2021-10-30', 7671, 28324, 2282, NULL, '1.0000', '15.5000', '15.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 (29444, '2021-10-30', 8434, 28325, 2282, NULL, '1.0000', '27.4000', '27.4000', '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 (29445, '2021-10-30', 1542, 28326, 2282, 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 (29446, '2021-10-30', 7638, 28327, 2282, 30935, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29447, '2021-10-30', 7790, 28328, 2282, 38457, '4.0000', '-7.6667', '-7.6667', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29448, '2021-10-30', 7698, 28329, 2282, NULL, '2.0000', '4.5500', '4.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 (29449, '2021-10-30', 7672, 28330, 2282, NULL, '1.0000', '1.0200', '1.0200', '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 (29450, '2021-10-30', 9160, 28331, 2282, NULL, '1.0000', '41.6640', '41.6640', '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 (29451, '2021-10-30', 7671, 28332, 2282, NULL, '2.0000', '15.5000', '15.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 (29452, '2021-10-30', 8052, 28333, 2282, 36062, '2.0000', '26.0786', '26.0786', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29453, '2021-10-30', 8539, 28334, 2282, 31000, '1.0000', '4.4300', '4.4300', '0.8000', '0.8000', '46.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29454, '2021-10-30', 7558, 28335, 2282, NULL, '5.0000', '2.2000', '2.2000', '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 (29455, '2021-10-30', 7385, 28336, 2282, 38611, '5.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29456, '2021-10-30', 2753, 28337, 2282, 32796, '5.0000', '4.8000', '4.8000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29457, '2021-10-30', 7671, 28338, 2282, NULL, '1.0000', '15.5000', '15.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 (29458, '2021-10-30', 7524, 28339, 2282, NULL, '3.0000', '11.9500', '11.9500', '7.0000', '7.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 (29459, '2021-10-30', 8518, 28340, 2282, NULL, '1.0000', '17.6400', '17.6400', '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 (29460, '2021-10-30', 7411, 28341, 2282, NULL, '1.0000', '1.3500', '1.3500', '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 (29461, '2021-10-30', 7899, 28342, 2282, NULL, '1.0000', '0.7800', '0.7800', '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 (29462, '2021-10-30', 8243, 28343, 2282, NULL, '2.0000', '1.1400', '1.1400', '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 (29463, '2021-10-30', 7591, 28344, 2282, NULL, '1.0000', '2.7500', '2.7500', '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 (29464, '2021-10-30', 7824, 28345, 2282, NULL, '1.0000', '8.0000', '8.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 (29465, '2021-10-30', 8278, 28346, 2282, NULL, '1.0000', '7.0000', '7.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 (29466, '2021-10-30', 7714, 28347, 2282, 37846, '2.0000', '0.4200', '0.4200', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29467, '2021-10-30', 7518, 28348, 2282, NULL, '1.0000', '-67.2578', '-67.2578', '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 (29468, '2021-10-30', 7820, 28349, 2282, NULL, '2.0000', '-8.1000', '-8.1000', '20.5000', '20.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 (29469, '2021-10-30', 9317, 28350, 2282, NULL, '1.0000', '12.0000', '12.0000', '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 (29470, '2021-10-30', 7357, 28351, 2282, NULL, '1.0000', '11.7500', '11.7500', '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 (29471, '2021-10-30', 7519, 28352, 2282, NULL, '1.0000', '0.8800', '0.8800', '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 (29472, '2021-10-30', 2967, 28353, 2282, 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 (29473, '2021-10-30', 7743, 28354, 2282, NULL, '2.0000', '7.3900', '7.3900', '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 (29474, '2021-10-30', 8629, 28355, 2283, 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 (29475, '2021-10-30', 9092, 28356, 2283, 39042, '2.0000', '0.1303', '0.1303', '0.5000', '0.5000', '302.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29476, '2021-10-30', 2713, 28357, 2284, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29477, '2021-10-30', 2405, 28358, 2284, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '48.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29478, '2021-10-30', 2951, 28359, 2284, 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 (29479, '2021-10-30', 2699, 28360, 2284, 32554, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29480, '2021-10-30', 1573, 28361, 2284, 23173, '1.0000', '24.6200', '24.6200', '32.0000', '32.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 (29481, '2021-10-30', 1760, 28362, 2284, NULL, '1.0000', '1.5900', '1.5900', '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 (29482, '2021-10-30', 1760, 28363, 2284, NULL, '3.0000', '1.5900', '1.5900', '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 (29483, '2021-10-30', 2004, 28364, 2284, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29484, '2021-10-30', 7922, 28365, 2284, NULL, '1.0000', '6.9800', '6.9800', '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 (29485, '2021-10-30', 9461, 28366, 2284, NULL, '1.0000', '1.6000', '1.6000', '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 (29486, '2021-10-30', 7790, 28367, 2284, NULL, '6.0000', '17.0000', '17.0000', '3.0000', '3.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 (29487, '2021-10-30', 7514, 28368, 2284, NULL, '1.0000', '2.2500', '2.2500', '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 (29488, '2021-10-30', 7527, 28369, 2284, NULL, '2.0000', '0.8900', '0.8900', '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 (29489, '2021-10-30', 8767, 28370, 2284, NULL, '1.0000', '6.6900', '6.6900', '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 (29490, '2021-10-30', 7849, 28371, 2284, 37720, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29491, '2021-10-30', 7411, 28372, 2284, NULL, '1.0000', '1.3500', '1.3500', '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 (29492, '2021-10-30', 1590, 28373, 2284, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (29493, '2021-10-30', 7564, 28374, 2284, 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 (29494, '2021-10-30', 2315, 28375, 2284, NULL, '1.0000', '-6.8895', '-6.8895', '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 (29495, '2021-10-30', 1501, 28376, 2284, NULL, '1.0000', '2.2100', '2.2100', '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 (29496, '2021-10-30', 1912, 28377, 2284, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29497, '2021-10-30', 2135, 28378, 2284, 23175, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (29498, '2021-10-30', 2250, 28379, 2284, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29499, '2021-10-30', 2588, 28380, 2284, 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 (29500, '2021-10-30', 7981, 28381, 2284, NULL, '10.0000', '6.0000', '6.0000', '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 (29501, '2021-10-30', 9563, 28382, 2284, 38991, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29502, '2021-10-30', 9562, 28383, 2284, NULL, '1.0000', '5.4000', '5.4000', '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 (29503, '2021-10-30', 7411, 28384, 2284, NULL, '2.0000', '1.3500', '1.3500', '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 (29504, '2021-10-30', 1689, 28385, 2284, NULL, '1.0000', '12.3438', '12.3438', '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 (29505, '2021-10-30', 2506, 28386, 2284, 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 (29506, '2021-10-30', 7779, 28387, 2284, NULL, '1.0000', '0.6200', '0.6200', '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 (29507, '2021-10-30', 2924, 28388, 2284, 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 (29508, '2021-10-30', 1839, 28389, 2284, NULL, '1.0000', '6.0835', '6.0835', '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 (29509, '2021-10-30', 2293, 28390, 2284, NULL, '1.0000', '1.4400', '1.4400', '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 (29510, '2021-10-30', 2830, 28393, 2285, NULL, '1.0000', '20.5000', '20.5000', '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 (29511, '2021-10-30', 7411, 28394, 2285, NULL, '2.0000', '1.3500', '1.3500', '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 (29512, '2021-10-30', 3024, 28395, 2285, 37725, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29513, '2021-10-30', 7803, 28396, 2285, NULL, '1.0000', '1.8200', '1.8200', '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 (29514, '2021-10-30', 7579, 28397, 2285, NULL, '3.0000', '15.0000', '15.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 (29515, '2021-10-30', 2821, 28398, 2285, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29516, '2021-10-30', 2965, 28399, 2285, NULL, '1.0000', '5.0000', '5.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 (29517, '2021-10-30', 8846, 28400, 2285, NULL, '1.0000', '4.3000', '4.3000', '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 (29518, '2021-10-30', 2681, 28401, 2285, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '9.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29519, '2021-10-30', 1812, 28402, 2285, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29520, '2021-10-30', 2964, 28403, 2285, NULL, '2.0000', '6.6000', '6.6000', '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 (29521, '2021-10-31', 1761, 28404, 2286, 3171, '-2.0000', '1.8200', '1.8200', '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 (29522, '2021-10-31', 1761, 28404, 2286, NULL, '3.0000', '1.8200', '1.8200', '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 (29523, '2021-10-31', 1910, 28405, 2286, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '43.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 (29524, '2021-10-31', 2877, 28406, 2286, 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 (29525, '2021-10-31', 9547, 28407, 2286, 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 (29526, '2021-10-31', 1335, 28408, 2286, 12031, '-2.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 (29527, '2021-10-31', 1335, 28408, 2286, NULL, '3.0000', '0.8500', '0.8500', '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 (29528, '2021-10-31', 1337, 28409, 2286, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (29529, '2021-10-31', 1493, 28410, 2286, 9747, '-3.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 (29530, '2021-10-31', 1493, 28410, 2286, NULL, '4.0000', '1.5425', '1.5425', '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 (29531, '2021-10-31', 2612, 28411, 2286, 9748, '-1.0000', '7.1600', '7.1600', '9.5000', '9.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 (29532, '2021-10-31', 2612, 28411, 2286, NULL, '2.0000', '7.1600', '7.1600', '9.5000', '9.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 (29533, '2021-10-31', 2681, 28412, 2286, 12164, '-6.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 (29534, '2021-10-31', 2681, 28412, 2286, NULL, '7.0000', '12.5000', '12.5000', '16.5000', '16.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 (29535, '2021-10-31', 2821, 28413, 2286, 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 (29536, '2021-10-31', 1419, 28414, 2287, 22359, '1.0000', '11.0000', '11.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 (29537, '2021-10-31', 1863, 28415, 2287, 10808, '-57.0000', '0.4136', '0.4136', '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 (29538, '2021-10-31', 1863, 28415, 2287, NULL, '58.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29539, '2021-10-31', 1695, 28416, 2287, 12925, '-2.0000', '15.5000', '15.5000', '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 (29540, '2021-10-31', 1695, 28416, 2287, NULL, '3.0000', '15.5000', '15.5000', '20.0000', '20.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 (29541, '2021-10-31', 2511, 28417, 2287, 9740, '-4.0000', '8.5000', '8.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 (29542, '2021-10-31', 2511, 28417, 2287, NULL, '5.0000', '8.5000', '8.5000', '12.0000', '12.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 (29543, '2021-10-31', 1828, 28418, 2287, NULL, '1.0000', '0.7300', '0.7300', '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 (29544, '2021-10-31', 2169, 28419, 2287, 10737, '1.0000', '3.8397', '3.8397', '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 (29545, '2021-10-31', 1760, 28420, 2287, 22256, '1.0000', '111.8384', '111.8384', '1.0000', '1.0000', '20.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 (29546, '2021-10-31', 1602, 28421, 2287, 5897, '-31.0000', '6.7859', '6.7859', '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 (29547, '2021-10-31', 1602, 28421, 2287, NULL, '32.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29548, '2021-10-31', 1481, 28422, 2288, 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 (29549, '2021-10-31', 2169, 28423, 2288, NULL, '1.0000', '1.1500', '1.1500', '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 (29550, '2021-10-31', 2379, 28424, 2288, NULL, '1.0000', '1.8000', '1.8000', '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 (29551, '2021-10-31', 1837, 28425, 2288, 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 (29552, '2021-10-31', 1519, 28426, 2288, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29553, '2021-10-31', 1410, 28427, 2288, 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 (29554, '2021-10-31', 1339, 28428, 2288, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29555, '2021-10-31', 1596, 28429, 2288, 38943, '1.0000', '2.6940', '2.6940', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29556, '2021-10-31', 9603, 28430, 2288, 38979, '2.0000', '2.3300', '2.3300', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29557, '2021-10-31', 1489, 28431, 2288, 34950, '1.0000', '28.1700', '28.1700', '37.0000', '37.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29558, '2021-10-31', 1564, 28432, 2288, NULL, '1.0000', '90.0000', '90.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 (29559, '2021-10-31', 1912, 28433, 2288, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29560, '2021-10-31', 7741, 28434, 2288, NULL, '1.0000', '1.2000', '1.2000', '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 (29561, '2021-10-31', 2221, 28435, 2288, 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 (29562, '2021-10-31', 1805, 28436, 2288, NULL, '1.0000', '4.5244', '4.5244', '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 (29563, '2021-10-31', 1532, 28437, 2288, 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 (29564, '2021-10-31', 7790, 28438, 2288, NULL, '4.0000', '17.0000', '17.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 (29565, '2021-10-31', 1619, 28439, 2288, 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 (29566, '2021-10-31', 1871, 28440, 2288, 37801, '6.0000', '2.9308', '2.9308', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29567, '2021-10-31', 1337, 28441, 2288, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (29568, '2021-10-31', 1493, 28442, 2288, 37797, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29569, '2021-10-31', 2545, 28443, 2288, 38923, '1.0000', '5.5944', '5.5944', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29570, '2021-10-31', 7579, 28444, 2288, NULL, '1.0000', '15.0000', '15.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 (29571, '2021-10-31', 2635, 28445, 2288, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29572, '2021-10-31', 8608, 28446, 2288, NULL, '1.0000', '0.9000', '0.9000', '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 (29573, '2021-10-31', 8756, 28447, 2288, 32556, '2.0000', '7.0000', '7.0000', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29574, '2021-10-31', 7954, 28448, 2288, 34017, '2.0000', '11.1369', '11.1369', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29575, '2021-10-31', 8333, 28449, 2288, NULL, '1.0000', '10.0000', '10.0000', '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 (29576, '2021-10-31', 1651, 28450, 2288, NULL, '1.0000', '10.3802', '10.3802', '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 (29577, '2021-10-31', 9089, 28451, 2288, NULL, '1.0000', '3.8000', '3.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 (29578, '2021-10-31', 8179, 28452, 2288, NULL, '2.0000', '0.2200', '0.2200', '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 (29579, '2021-10-31', 7780, 28453, 2288, NULL, '1.0000', '2.6000', '2.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 (29580, '2021-10-31', 2660, 28454, 2288, 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 (29581, '2021-10-31', 2101, 28455, 2288, 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 (29582, '2021-10-31', 9463, 28456, 2288, NULL, '1.0000', '7.5000', '7.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 (29583, '2021-10-31', 1586, 28457, 2288, 37756, '1.0000', '69.6045', '69.6045', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29584, '2021-10-31', 1863, 28458, 2288, NULL, '1.0000', '1.2830', '1.2830', '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 (29585, '2021-10-31', 2237, 28459, 2288, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29586, '2021-10-31', 1564, 28460, 2288, NULL, '3.0000', '90.0000', '90.0000', '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 (29587, '2021-10-31', 8746, 28461, 2288, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29588, '2021-10-31', 1871, 28462, 2288, 37801, '2.0000', '2.9308', '2.9308', '3.0000', '3.0000', '54.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29589, '2021-10-31', 1912, 28463, 2288, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29590, '2021-10-31', 1837, 28464, 2288, 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 (29591, '2021-10-31', 2169, 28465, 2288, NULL, '1.0000', '1.1500', '1.1500', '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 (29592, '2021-10-31', 8746, 28466, 2288, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29593, '2021-10-31', 1937, 28467, 2289, 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 (29594, '2021-10-31', 2327, 28468, 2289, 5083, '-15.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 (29595, '2021-10-31', 2327, 28468, 2289, NULL, '17.0000', '4.5000', '4.5000', '6.0000', '6.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 (29596, '2021-10-31', 1855, 28469, 2289, 22241, '1.0000', '1.4000', '1.4000', '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 (29597, '2021-10-31', 3066, 28470, 2289, NULL, '1.0000', '24.6400', '24.6400', '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 (29598, '2021-10-31', 3017, 28471, 2289, NULL, '1.0000', '3.9000', '3.9000', '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 (29599, '2021-10-31', 1991, 28472, 2289, 761, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 58);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29600, '2021-10-31', 2948, 28473, 2289, NULL, '1.0000', '0.9000', '0.9000', '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 (29601, '2021-10-31', 1533, 28474, 2289, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (29602, '2021-10-31', 2948, 28475, 2290, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '152.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 (29603, '2021-10-31', 1856, 28476, 2290, 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 (29604, '2021-10-31', 8638, 28477, 2290, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29605, '2021-10-31', 8746, 28478, 2290, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29606, '2021-10-31', 1529, 28479, 2291, NULL, '1.0000', '3.7110', '3.7110', '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 (29607, '2021-10-31', 1499, 28480, 2291, 38940, '1.0000', '0.4684', '0.4684', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29608, '2021-10-31', 1595, 28481, 2291, 38539, '1.0000', '20.1970', '20.1970', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29609, '2021-10-31', 1837, 28482, 2291, 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 (29610, '2021-10-31', 1787, 28483, 2291, 38914, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29611, '2021-10-31', 1487, 28484, 2291, 37814, '1.0000', '-37.3500', '-37.3500', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29612, '2021-10-31', 2315, 28485, 2292, NULL, '2.0000', '-6.8895', '-6.8895', '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 (29613, '2021-10-31', 2003, 28486, 2292, 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 (29614, '2021-10-31', 2260, 28487, 2292, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29615, '2021-10-31', 2169, 28488, 2293, 10737, '1.0000', '3.8397', '3.8397', '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 (29616, '2021-10-31', 1651, 28489, 2293, 3222, '-17.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 (29617, '2021-10-31', 1651, 28489, 2293, NULL, '18.0000', '6.7039', '6.7039', '10.0000', '10.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 (29618, '2021-10-31', 2685, 28490, 2293, 12645, '-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 (29619, '2021-10-31', 2685, 28490, 2293, NULL, '2.0000', '35.0000', '35.0000', '45.0000', '45.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 (29620, '2021-10-31', 8208, 28491, 2293, NULL, '2.0000', '33.0000', '33.0000', '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 (29621, '2021-10-31', 7928, 28492, 2293, NULL, '1.0000', '1.2000', '1.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 (29622, '2021-10-31', 1616, 28493, 2293, 18912, '1.0000', '6.8900', '6.8900', '7.5000', '7.5000', '96.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 (29623, '2021-10-31', 2643, 28494, 2293, NULL, '2.0000', '0.8700', '0.8700', '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 (29624, '2021-10-31', 2948, 28495, 2293, NULL, '1.0000', '0.9000', '0.9000', '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 (29625, '2021-10-31', 2270, 28496, 2293, 2930, '1.0000', '0.9880', '0.9880', '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 (29626, '2021-10-31', 1824, 28497, 2293, NULL, '1.0000', '5.2000', '5.2000', '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 (29627, '2021-10-31', 2660, 28498, 2293, 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 (29628, '2021-10-31', 3001, 28499, 2293, NULL, '2.0000', '1.5000', '1.5000', '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 (29629, '2021-10-31', 8188, 28500, 2293, 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 (29630, '2021-10-31', 9214, 28501, 2294, NULL, '1.0000', '17.8160', '17.8160', '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 (29631, '2021-10-31', 1839, 28502, 2294, 36027, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29632, '2021-10-31', 8769, 28503, 2294, NULL, '1.0000', '6.6000', '6.6000', '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 (29633, '2021-10-31', 2100, 28504, 2294, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29634, '2021-10-31', 7913, 28505, 2294, NULL, '2.0000', '2.5500', '2.5500', '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 (29635, '2021-10-31', 1904, 28506, 2294, 37842, '2.0000', '27.8194', '27.8194', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29636, '2021-10-31', 7524, 28507, 2294, NULL, '1.0000', '11.9500', '11.9500', '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 (29637, '2021-10-31', 9150, 28508, 2294, 35237, '1.0000', '16.1784', '16.1784', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29638, '2021-10-31', 9092, 28509, 2294, 39260, '2.0000', '0.3844', '0.3844', '0.5000', '0.5000', '300.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29639, '2021-10-31', 8097, 28510, 2294, NULL, '2.0000', '3.3994', '3.3994', '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 (29640, '2021-10-31', 7680, 28511, 2294, NULL, '1.0000', '7.4000', '7.4000', '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 (29641, '2021-10-31', 1837, 28512, 2294, 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 (29642, '2021-10-31', 7339, 28513, 2294, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (29643, '2021-10-31', 7527, 28514, 2294, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29644, '2021-10-31', 7639, 28515, 2294, 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 (29645, '2021-10-31', 1501, 28516, 2294, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29646, '2021-10-31', 7753, 28517, 2294, NULL, '3.0000', '3.9360', '3.9360', '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 (29647, '2021-10-31', 8039, 28518, 2294, NULL, '1.0000', '18.3400', '18.3400', '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 (29648, '2021-10-31', 7994, 28519, 2294, NULL, '1.0000', '9.2800', '9.2800', '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 (29649, '2021-10-31', 7518, 28520, 2294, NULL, '1.0000', '-67.2578', '-67.2578', '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 (29650, '2021-10-31', 2299, 28521, 2294, 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 (29651, '2021-10-31', 9191, 28522, 2294, NULL, '2.0000', '6.6700', '6.6700', '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 (29652, '2021-10-31', 7316, 28523, 2294, 38455, '13.0000', '0.8600', '0.8600', '1.2000', '1.2000', '37.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29653, '2021-10-31', 9092, 28524, 2294, 39260, '1.0000', '0.3844', '0.3844', '0.5000', '0.5000', '301.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29654, '2021-10-31', 3001, 28525, 2294, NULL, '3.0000', '1.5000', '1.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 (29655, '2021-10-31', 2102, 28526, 2294, 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 (29656, '2021-10-31', 1819, 28527, 2294, 37401, '1.0000', '5.4309', '5.4309', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29657, '2021-10-31', 9579, 28528, 2294, 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 (29658, '2021-10-31', 9021, 28529, 2294, NULL, '1.0000', '7.0000', '7.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 (29659, '2021-10-31', 1914, 28530, 2294, NULL, '1.0000', '4.9000', '4.9000', '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 (29660, '2021-10-31', 9092, 28531, 2294, 39260, '1.0000', '0.3844', '0.3844', '0.5000', '0.5000', '301.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29661, '2021-10-31', 8308, 28532, 2294, NULL, '1.0000', '11.0000', '11.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 (29662, '2021-10-31', 8194, 28533, 2294, NULL, '1.0000', '31.8200', '31.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 (29663, '2021-10-31', 1810, 28534, 2294, NULL, '1.0000', '7.7967', '7.7967', '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 (29664, '2021-10-31', 1501, 28535, 2294, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29665, '2021-10-31', 7784, 28536, 2294, NULL, '2.0000', '4.2500', '4.2500', '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 (29666, '2021-10-31', 7886, 28537, 2294, NULL, '1.0000', '16.1667', '16.1667', '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 (29667, '2021-10-31', 8756, 28538, 2294, 39259, '1.0000', '7.5000', '7.5000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29668, '2021-10-31', 2442, 28539, 2294, 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 (29669, '2021-10-31', 1782, 28540, 2294, 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 (29670, '2021-10-31', 1520, 28541, 2294, 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 (29671, '2021-10-31', 1459, 28542, 2294, NULL, '1.0000', '78.7400', '78.7400', '113.0000', '113.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29672, '2021-10-31', 7411, 28543, 2294, NULL, '1.0000', '1.3500', '1.3500', '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 (29673, '2021-10-31', 8119, 28544, 2294, 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 (29674, '2021-10-31', 7727, 28545, 2294, NULL, '2.0000', '0.9000', '0.9000', '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 (29675, '2021-10-31', 1854, 28546, 2294, 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 (29676, '2021-10-31', 7641, 28547, 2294, NULL, '1.0000', '6.5038', '6.5038', '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 (29677, '2021-10-31', 2416, 28548, 2294, 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 (29678, '2021-10-31', 9177, 28549, 2294, NULL, '1.0000', '0.8000', '0.8000', '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 (29679, '2021-10-31', 8472, 28550, 2294, NULL, '1.0000', '6.5000', '6.5000', '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 (29680, '2021-10-31', 1904, 28551, 2294, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29681, '2021-10-31', 9214, 28552, 2294, NULL, '1.0000', '17.8160', '17.8160', '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 (29682, '2021-10-31', 8497, 28553, 2294, NULL, '1.0000', '-133.2800', '-133.2800', '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 (29683, '2021-10-31', 2906, 28554, 2294, 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 (29684, '2021-10-31', 7641, 28555, 2294, NULL, '1.0000', '6.5038', '6.5038', '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 (29685, '2021-10-31', 8316, 28556, 2294, 38458, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29686, '2021-10-31', 7339, 28557, 2294, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (29687, '2021-10-31', 8915, 28558, 2294, NULL, '1.0000', '29.3500', '29.3500', '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 (29688, '2021-10-31', 7412, 28559, 2294, NULL, '1.0000', '1.5200', '1.5200', '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 (29689, '2021-10-31', 1867, 28560, 2294, NULL, '1.0000', '9.9490', '9.9490', '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 (29690, '2021-10-31', 2416, 28561, 2294, 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 (29691, '2021-10-31', 8097, 28562, 2294, NULL, '1.0000', '3.3994', '3.3994', '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 (29692, '2021-10-31', 2289, 28563, 2294, 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 (29693, '2021-10-31', 9332, 28564, 2294, NULL, '1.0000', '72.0000', '72.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 (29694, '2021-10-31', 7848, 28565, 2294, NULL, '1.0000', '1.3500', '1.3500', '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 (29695, '2021-10-31', 9271, 28566, 2294, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29696, '2021-10-31', 7616, 28567, 2294, NULL, '1.0000', '21.5000', '21.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 (29697, '2021-10-31', 9092, 28568, 2294, 39260, '2.0000', '0.3844', '0.3844', '0.5000', '0.5000', '300.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29698, '2021-10-31', 8180, 28569, 2294, NULL, '10.0000', '4.4000', '4.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 (29699, '2021-10-31', 8756, 28570, 2294, 39259, '1.0000', '7.5000', '7.5000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29700, '2021-10-31', 7671, 28571, 2294, NULL, '2.0000', '15.5000', '15.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 (29701, '2021-10-31', 1672, 28572, 2294, 34503, '20.0000', '2.9200', '2.9200', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29702, '2021-10-31', 8680, 28573, 2294, NULL, '1.0000', '2.0000', '2.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 (29703, '2021-10-31', 1856, 28574, 2294, 35231, '1.0000', '4.3888', '4.3888', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29704, '2021-10-31', 7703, 28575, 2294, NULL, '1.0000', '22.9900', '22.9900', '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 (29705, '2021-10-31', 8717, 28576, 2294, NULL, '1.0000', '4.7000', '4.7000', '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 (29706, '2021-10-31', 9092, 28577, 2294, 39260, '1.0000', '0.3844', '0.3844', '0.5000', '0.5000', '301.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29707, '2021-10-31', 2251, 28578, 2294, 31028, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29708, '2021-10-31', 7518, 28579, 2294, NULL, '1.0000', '-67.2578', '-67.2578', '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 (29709, '2021-10-31', 1303, 28580, 2294, 33727, '2.0000', '1.3800', '1.3800', '4.0000', '4.0000', '103.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29710, '2021-10-31', 2906, 28581, 2294, 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 (29711, '2021-10-31', 1874, 28582, 2294, 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 (29712, '2021-10-31', 2283, 28583, 2294, 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 (29713, '2021-10-31', 7920, 28584, 2295, 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 (29714, '2021-10-31', 7781, 28585, 2295, NULL, '3.0000', '4.2500', '4.2500', '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 (29715, '2021-10-31', 2380, 28586, 2295, NULL, '1.0000', '37.9000', '37.9000', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29716, '2021-10-31', 9563, 28587, 2296, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29717, '2021-10-31', 2444, 28588, 2297, 5314, '-2.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 (29718, '2021-10-31', 2444, 28588, 2297, NULL, '3.0000', '6.0000', '6.0000', '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 (29719, '2021-10-31', 2648, 28589, 2297, NULL, '1.0000', '5.4000', '5.4000', '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 (29720, '2021-10-31', 2807, 28590, 2297, 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 (29721, '2021-10-31', 2916, 28591, 2297, 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 (29722, '2021-10-31', 2167, 28592, 2297, 17165, '-9.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 (29723, '2021-10-31', 2167, 28592, 2297, NULL, '10.0000', '2.2000', '2.2000', '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 (29724, '2021-10-31', 9541, 28593, 2297, NULL, '1.0000', '42.0000', '42.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 (29725, '2021-10-31', 8982, 28594, 2297, 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 (29726, '2021-10-31', 2233, 28595, 2298, 2777, '-7.0000', '19.0200', '19.0200', '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 (29727, '2021-10-31', 2233, 28595, 2298, NULL, '8.0000', '19.0200', '19.0200', '29.0000', '29.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 (29728, '2021-10-31', 1650, 28596, 2298, 3221, '-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 (29729, '2021-10-31', 1650, 28596, 2298, NULL, '2.0000', '14.8000', '14.8000', '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 (29730, '2021-10-31', 2768, 28597, 2299, NULL, '6.0000', '0.9600', '0.9600', '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 (29731, '2021-10-31', 7741, 28598, 2299, NULL, '1.0000', '1.2000', '1.2000', '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 (29732, '2021-10-31', 1339, 28599, 2300, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29733, '2021-10-31', 1665, 28600, 2300, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29734, '2021-11-01', 2547, 28601, 2301, 37792, '1.0000', '8.6575', '8.6575', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29735, '2021-11-01', 1867, 28602, 2301, 37799, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29736, '2021-11-01', 2734, 28603, 2301, 19382, '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 (29737, '2021-11-01', 2948, 28604, 2301, 24970, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '151.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 (29738, '2021-11-01', 2167, 28605, 2301, 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 (29739, '2021-11-01', 1863, 28606, 2301, NULL, '1.0000', '1.2830', '1.2830', '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 (29740, '2021-11-01', 2315, 28607, 2301, NULL, '2.0000', '-6.8895', '-6.8895', '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 (29741, '2021-11-01', 2662, 28608, 2301, 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 (29742, '2021-11-01', 1868, 28609, 2301, 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 (29743, '2021-11-01', 2379, 28610, 2301, NULL, '1.0000', '1.8000', '1.8000', '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 (29744, '2021-11-01', 1347, 28611, 2301, 30685, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29745, '2021-11-01', 1574, 28612, 2301, 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 (29746, '2021-11-01', 1837, 28613, 2301, 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 (29747, '2021-11-01', 8746, 28614, 2301, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29748, '2021-11-01', 2003, 28615, 2301, 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 (29749, '2021-11-01', 2169, 28616, 2301, NULL, '2.0000', '1.1500', '1.1500', '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 (29750, '2021-11-01', 2315, 28617, 2301, NULL, '2.0000', '-6.8895', '-6.8895', '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 (29751, '2021-11-01', 8638, 28618, 2301, 37757, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29752, '2021-11-01', 2315, 28619, 2301, NULL, '1.0000', '-6.8895', '-6.8895', '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 (29753, '2021-11-01', 9563, 28620, 2301, 38991, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29754, '2021-11-01', 2699, 28621, 2301, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29755, '2021-11-01', 2503, 28622, 2301, 25149, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.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 (29756, '2021-11-01', 2221, 28623, 2301, 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 (29757, '2021-11-01', 2521, 28624, 2301, 39212, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29758, '2021-11-01', 9561, 28625, 2301, 37736, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29759, '2021-11-01', 2353, 28626, 2301, 34929, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29760, '2021-11-01', 1519, 28627, 2301, 34016, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29761, '2021-11-01', 2277, 28628, 2301, 33144, '1.0000', '0.8982', '0.8982', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29762, '2021-11-01', 2277, 28628, 2301, NULL, '1.0000', '0.8982', '0.8982', '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 (29763, '2021-11-01', 2169, 28629, 2301, NULL, '1.0000', '1.1500', '1.1500', '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 (29764, '2021-11-01', 1602, 28630, 2301, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29765, '2021-11-01', 8034, 28631, 2301, NULL, '1.0000', '4.8900', '4.8900', '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 (29766, '2021-11-01', 1523, 28632, 2301, NULL, '1.0000', '1.0061', '1.0061', '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 (29767, '2021-11-01', 2948, 28633, 2302, 24970, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '149.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 (29768, '2021-11-01', 1621, 28634, 2302, 37805, '1.0000', '9.6682', '9.6682', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29769, '2021-11-01', 8746, 28635, 2302, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29770, '2021-11-01', 1609, 28636, 2302, 19393, '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 (29771, '2021-11-01', 1432, 28637, 2302, 38557, '1.0000', '9.5117', '9.5117', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29772, '2021-11-01', 9155, 28638, 2302, NULL, '1.0000', '13.5000', '13.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 (29773, '2021-11-01', 2706, 28639, 2302, 29643, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29774, '2021-11-01', 2374, 28640, 2302, 19836, '1.0000', '6.1000', '6.1000', '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 (29775, '2021-11-01', 3001, 28641, 2302, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29776, '2021-11-01', 9461, 28642, 2302, NULL, '1.0000', '1.6000', '1.6000', '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 (29777, '2021-11-01', 1342, 28643, 2302, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29778, '2021-11-01', 1755, 28644, 2303, 19326, '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 (29779, '2021-11-01', 1856, 28645, 2304, 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 (29780, '2021-11-01', 2169, 28646, 2304, 10737, '2.0000', '3.8397', '3.8397', '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 (29781, '2021-11-01', 1912, 28647, 2304, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (29782, '2021-11-01', 1863, 28648, 2304, 10808, '-58.0000', '0.4136', '0.4136', '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 (29783, '2021-11-01', 1863, 28648, 2304, NULL, '60.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29784, '2021-11-01', 1904, 28649, 2304, 5442, '-7.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 (29785, '2021-11-01', 1904, 28649, 2304, NULL, '8.0000', '0.3200', '0.3200', '1.0000', '1.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 (29786, '2021-11-01', 2382, 28650, 2304, NULL, '1.0000', '15.6600', '15.6600', '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 (29787, '2021-11-01', 2267, 28651, 2304, NULL, '1.0000', '9.5000', '9.5000', '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 (29788, '2021-11-01', 1584, 28652, 2304, 7601, '-3.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 (29789, '2021-11-01', 1584, 28652, 2304, NULL, '5.0000', '90.0000', '90.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 (29790, '2021-11-01', 2825, 28653, 2304, NULL, '3.0000', '12.0000', '12.0000', '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 (29791, '2021-11-01', 1632, 28654, 2304, 3206, '-5.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 (29792, '2021-11-01', 1632, 28654, 2304, NULL, '6.0000', '19.5000', '19.5000', '25.0000', '25.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 (29793, '2021-11-01', 2809, 28655, 2304, 33060, '1.0000', '28.0000', '28.0000', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29794, '2021-11-01', 3085, 28656, 2304, NULL, '1.0000', '55.0000', '55.0000', '75.0000', '75.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29795, '2021-11-01', 2392, 28657, 2304, 22307, '1.0000', '3.7000', '3.7000', '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 (29796, '2021-11-01', 2869, 28658, 2304, 17892, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 160);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29797, '2021-11-01', 2050, 28659, 2304, 6869, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 61);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29798, '2021-11-01', 1976, 28660, 2304, 6343, '-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 (29799, '2021-11-01', 1976, 28660, 2304, 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 (29800, '2021-11-01', 8208, 28661, 2304, NULL, '2.0000', '33.0000', '33.0000', '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 (29801, '2021-11-01', 1828, 28662, 2304, NULL, '1.0000', '0.7300', '0.7300', '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 (29802, '2021-11-01', 1731, 28663, 2305, NULL, '1.0000', '19.9600', '19.9600', '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 (29803, '2021-11-01', 7380, 28664, 2305, NULL, '1.0000', '5.6200', '5.6200', '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 (29804, '2021-11-01', 8918, 28665, 2305, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29805, '2021-11-01', 1866, 28666, 2305, NULL, '1.0000', '4.7500', '4.7500', '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 (29806, '2021-11-01', 7715, 28667, 2305, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29807, '2021-11-01', 7780, 28668, 2305, NULL, '1.0000', '2.6000', '2.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 (29808, '2021-11-01', 8328, 28669, 2305, NULL, '1.0000', '8.0882', '8.0882', '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 (29809, '2021-11-01', 7748, 28670, 2305, NULL, '1.0000', '33.9800', '33.9800', '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 (29810, '2021-11-01', 7385, 28671, 2305, 38611, '2.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29811, '2021-11-01', 9337, 28672, 2305, 36077, '2.0000', '6.8067', '6.8067', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29812, '2021-11-01', 8775, 28673, 2305, 39424, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29813, '2021-11-01', 7518, 28674, 2305, NULL, '1.0000', '-67.2578', '-67.2578', '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 (29814, '2021-11-01', 8134, 28675, 2305, NULL, '1.0000', '5.2600', '5.2600', '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 (29815, '2021-11-01', 9193, 28676, 2305, NULL, '1.0000', '5.5150', '5.5150', '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 (29816, '2021-11-01', 1501, 28677, 2305, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29817, '2021-11-01', 7385, 28678, 2305, 38611, '20.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29818, '2021-11-01', 7350, 28679, 2305, NULL, '2.0000', '30.4000', '30.4000', '40.5000', '40.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 (29819, '2021-11-01', 7689, 28680, 2305, NULL, '1.0000', '12.0700', '12.0700', '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 (29820, '2021-11-01', 7509, 28681, 2305, 39623, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29821, '2021-11-01', 7675, 28682, 2305, NULL, '1.0000', '11.4300', '11.4300', '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 (29822, '2021-11-01', 8699, 28683, 2305, NULL, '4.0000', '6.3800', '6.3800', '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 (29823, '2021-11-01', 1409, 28684, 2305, 36049, '2.0000', '13.5000', '13.5000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29824, '2021-11-01', 1650, 28685, 2305, NULL, '1.0000', '14.7450', '14.7450', '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 (29825, '2021-11-01', 7409, 28686, 2305, 30031, '3.0000', '1.3200', '1.3200', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29826, '2021-11-01', 2060, 28687, 2305, 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 (29827, '2021-11-01', 1689, 28688, 2305, NULL, '1.0000', '12.3500', '12.3500', '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 (29828, '2021-11-01', 7708, 28689, 2305, NULL, '2.0000', '6.1400', '6.1400', '8.5000', '8.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 (29829, '2021-11-01', 2004, 28690, 2305, 38465, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29830, '2021-11-01', 7514, 28691, 2305, NULL, '1.0000', '12.9983', '12.9983', '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 (29831, '2021-11-01', 1498, 28692, 2305, 33520, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29832, '2021-11-01', 2906, 28693, 2305, 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 (29833, '2021-11-01', 8702, 28694, 2305, NULL, '1.0000', '3.6700', '3.6700', '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 (29834, '2021-11-01', 7495, 28695, 2305, NULL, '1.0000', '17.8000', '17.8000', '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 (29835, '2021-11-01', 2225, 28696, 2305, 39264, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29836, '2021-11-01', 9092, 28697, 2305, 39260, '4.0000', '0.3844', '0.3844', '0.5000', '0.5000', '291.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29837, '2021-11-01', 8925, 28698, 2306, NULL, '1.0000', '2.4000', '2.4000', '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 (29838, '2021-11-01', 2353, 28699, 2307, 34929, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29839, '2021-11-01', 7769, 28700, 2307, 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 (29840, '2021-11-01', 2167, 28701, 2307, 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 (29841, '2021-11-01', 2237, 28702, 2307, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29842, '2021-11-01', 3044, 28703, 2307, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '45.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 (29843, '2021-11-01', 9461, 28704, 2307, NULL, '1.0000', '1.6000', '1.6000', '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 (29844, '2021-11-01', 2169, 28705, 2307, NULL, '3.0000', '1.1500', '1.1500', '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 (29845, '2021-11-01', 1602, 28706, 2307, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29846, '2021-11-01', 3067, 28707, 2307, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.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 (29847, '2021-11-01', 7411, 28708, 2307, NULL, '1.0000', '1.3500', '1.3500', '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 (29848, '2021-11-01', 2289, 28709, 2307, 38551, '3.0000', '0.2831', '0.2831', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29849, '2021-11-01', 1841, 28710, 2307, 34025, '3.0000', '0.2601', '0.2601', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29850, '2021-11-01', 1840, 28711, 2307, 19856, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29851, '2021-11-01', 1950, 28712, 2307, NULL, '2.0000', '3.5525', '3.5525', '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 (29852, '2021-11-01', 7741, 28713, 2307, NULL, '1.0000', '1.2000', '1.2000', '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 (29853, '2021-11-01', 8622, 28714, 2307, 38945, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29854, '2021-11-01', 2293, 28715, 2307, NULL, '7.0000', '1.4400', '1.4400', '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 (29855, '2021-11-01', 1649, 28716, 2307, 38535, '1.0000', '11.5000', '11.5000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29856, '2021-11-01', 2821, 28717, 2307, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29857, '2021-11-01', 1667, 28718, 2307, 38942, '1.0000', '18.8988', '18.8988', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29858, '2021-11-01', 2623, 28719, 2307, 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 (29859, '2021-11-01', 2412, 28720, 2307, NULL, '3.0000', '0.5200', '0.5200', '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 (29860, '2021-11-01', 7324, 28721, 2307, 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 (29861, '2021-11-01', 2681, 28722, 2307, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '8.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29862, '2021-11-01', 2821, 28723, 2307, 37784, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29863, '2021-11-01', 8638, 28724, 2307, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29864, '2021-11-01', 1810, 28725, 2307, NULL, '1.0000', '8.1600', '8.1600', '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 (29865, '2021-11-01', 2283, 28726, 2307, 38564, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29866, '2021-11-01', 2411, 28727, 2308, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29867, '2021-11-01', 2275, 28728, 2308, 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 (29868, '2021-11-01', 1318, 28729, 2308, 34639, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29869, '2021-11-01', 7750, 28730, 2308, NULL, '1.0000', '34.9000', '34.9000', '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 (29870, '2021-11-01', 2169, 28731, 2308, NULL, '2.0000', '1.1500', '1.1500', '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 (29871, '2021-11-01', 2167, 28732, 2308, 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 (29872, '2021-11-01', 1307, 28733, 2308, 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 (29873, '2021-11-01', 1519, 28734, 2308, 34016, '2.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29874, '2021-11-01', 2299, 28735, 2308, 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 (29875, '2021-11-01', 8454, 28736, 2308, NULL, '1.0000', '5.1700', '5.1700', '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 (29876, '2021-11-01', 2754, 28737, 2308, 18938, '1.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (29877, '2021-11-01', 1426, 28738, 2308, 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 (29878, '2021-11-01', 1501, 28739, 2308, NULL, '1.0000', '2.2100', '2.2100', '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 (29879, '2021-11-01', 1658, 28740, 2308, 29637, '1.0000', '58.9650', '58.9650', '35.5000', '35.5000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29880, '2021-11-01', 2599, 28741, 2308, NULL, '1.0000', '45.0000', '45.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 (29881, '2021-11-01', 2431, 28742, 2308, 25152, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '3.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 (29882, '2021-11-01', 1670, 28743, 2308, 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 (29883, '2021-11-01', 2829, 28744, 2308, 38537, '1.0000', '24.8941', '24.8941', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29884, '2021-11-01', 2105, 28745, 2308, 34630, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29885, '2021-11-01', 2662, 28746, 2308, 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 (29886, '2021-11-01', 1501, 28747, 2308, NULL, '1.0000', '2.2100', '2.2100', '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 (29887, '2021-11-01', 7524, 28748, 2308, NULL, '1.0000', '11.9500', '11.9500', '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 (29888, '2021-11-01', 2293, 28749, 2308, NULL, '1.0000', '1.4400', '1.4400', '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 (29889, '2021-11-01', 7411, 28750, 2308, NULL, '2.0000', '1.3500', '1.3500', '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 (29890, '2021-11-01', 1783, 28751, 2309, 4901, '-9.0000', '7.8500', '7.8500', '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 (29891, '2021-11-01', 1783, 28751, 2309, NULL, '12.0000', '7.8500', '7.8500', '11.0000', '11.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 (29892, '2021-11-01', 1851, 28752, 2310, 30668, '1.0000', '12.2777', '12.2777', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29893, '2021-11-01', 1873, 28753, 2310, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29894, '2021-11-01', 1946, 28754, 2310, NULL, '1.0000', '1.5500', '1.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 (29895, '2021-11-01', 2255, 28755, 2310, NULL, '1.0000', '18.9742', '18.9742', '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 (29896, '2021-11-01', 1888, 28756, 2311, 683, '1.0000', '134.8400', '134.8400', '21.0000', '21.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 (29897, '2021-11-01', 2749, 28757, 2311, 14490, '-2.0000', '20.5000', '20.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 (29898, '2021-11-01', 2749, 28757, 2311, NULL, '3.0000', '20.5000', '20.5000', '28.0000', '28.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 (29899, '2021-11-01', 9579, 28758, 2311, 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 (29900, '2021-11-01', 9461, 28759, 2311, NULL, '1.0000', '1.6000', '1.6000', '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 (29901, '2021-11-01', 9476, 28760, 2311, 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 (29902, '2021-11-01', 2858, 28761, 2311, 17772, '-2.0000', '1.0000', '1.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 (29903, '2021-11-01', 2858, 28761, 2311, NULL, '3.0000', '1.0000', '1.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 (29904, '2021-11-01', 2285, 28762, 2311, 2945, '-11.0000', '35.8000', '35.8000', '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 (29905, '2021-11-01', 2285, 28762, 2311, NULL, '12.0000', '35.8000', '35.8000', '47.0000', '47.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 (29906, '2021-11-01', 3029, 28763, 2311, NULL, '1.0000', '4.7700', '4.7700', '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 (29907, '2021-11-01', 1608, 28764, 2311, 8222, '-10.0000', '3.3500', '3.3500', '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 (29908, '2021-11-01', 1608, 28764, 2311, NULL, '11.0000', '3.3500', '3.3500', '5.5000', '5.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 (29909, '2021-11-01', 7411, 28765, 2311, 33804, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29910, '2021-11-01', 1647, 28766, 2311, 3218, '-3.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 (29911, '2021-11-01', 1647, 28766, 2311, NULL, '4.0000', '4.7200', '4.7200', '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 (29912, '2021-11-01', 2916, 28767, 2311, 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 (29913, '2021-11-01', 1863, 28768, 2311, 10808, '-60.0000', '0.4136', '0.4136', '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 (29914, '2021-11-01', 1863, 28768, 2311, NULL, '61.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29915, '2021-11-01', 2136, 28769, 2311, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '106.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 (29916, '2021-11-01', 1549, 28770, 2311, 17167, '-1.0000', '21.1300', '21.1300', '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 (29917, '2021-11-01', 1549, 28770, 2311, NULL, '2.0000', '21.1300', '21.1300', '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 (29918, '2021-11-01', 1687, 28771, 2311, 5785, '-11.0000', '165.9024', '165.9024', '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 (29919, '2021-11-01', 1687, 28771, 2311, NULL, '12.0000', '165.9024', '165.9024', '16.0000', '16.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 (29920, '2021-11-01', 1527, 28772, 2311, 18916, '3.0000', '13.1000', '13.1000', '17.5000', '17.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 (29921, '2021-11-01', 8923, 28773, 2311, NULL, '2.0000', '7.2500', '7.2500', '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 (29922, '2021-11-01', 2858, 28774, 2311, 17772, '-2.0000', '1.0000', '1.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 (29923, '2021-11-01', 2858, 28774, 2311, NULL, '3.0000', '1.0000', '1.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 (29924, '2021-11-01', 9578, 28775, 2311, NULL, '1.0000', '8.0000', '8.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 (29925, '2021-11-01', 2136, 28776, 2311, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '105.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 (29926, '2021-11-01', 1621, 28777, 2311, 7385, '-8.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 (29927, '2021-11-01', 1621, 28777, 2311, NULL, '9.0000', '6.6000', '6.6000', '9.0000', '9.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 (29928, '2021-11-01', 1736, 28778, 2311, 1080, '2.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '5.0000', 1, 0, NULL, 17);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29929, '2021-11-01', 1699, 28779, 2311, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '7.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 (29930, '2021-11-01', 1840, 28780, 2311, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29931, '2021-11-01', 1841, 28781, 2311, 18870, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '15.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 (29932, '2021-11-01', 2633, 28782, 2311, 22314, '2.0000', '3.5000', '3.5000', '5.0000', '5.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 (29933, '2021-11-01', 1787, 28783, 2312, 38914, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29934, '2021-11-01', 1873, 28784, 2312, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29935, '2021-11-01', 7483, 28785, 2312, NULL, '3.0000', '0.4200', '0.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 (29936, '2021-11-01', 7725, 28786, 2312, NULL, '1.0000', '7.0000', '7.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 (29937, '2021-11-01', 2633, 28787, 2313, 20654, '2.0000', '3.5000', '3.5000', '5.0000', '5.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 (29938, '2021-11-01', 1651, 28788, 2313, 3222, '-18.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 (29939, '2021-11-01', 1651, 28788, 2313, NULL, '19.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (29940, '2021-11-01', 2672, 28789, 2313, NULL, '1.0000', '7.6200', '7.6200', '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 (29941, '2021-11-01', 2389, 28790, 2313, 4041, '-16.0000', '3.1400', '3.1400', '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 (29942, '2021-11-01', 2389, 28790, 2313, NULL, '17.0000', '3.1400', '3.1400', '4.5000', '4.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 (29943, '2021-11-01', 2317, 28791, 2313, 3473, '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 (29944, '2021-11-01', 2221, 28792, 2313, 4154, '-9.0000', '14.4737', '14.4737', '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 (29945, '2021-11-01', 2221, 28792, 2313, NULL, '11.0000', '14.4737', '14.4737', '25.0000', '25.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 (29946, '2021-11-01', 8277, 28793, 2314, NULL, '1.0000', '5.0000', '5.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 (29947, '2021-11-01', 8194, 28794, 2314, NULL, '1.0000', '31.8200', '31.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 (29948, '2021-11-01', 8657, 28795, 2314, 38424, '1.0000', '6.3869', '6.3869', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29949, '2021-11-01', 9174, 28796, 2314, 31015, '1.0000', '13.7400', '13.7400', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29950, '2021-11-01', 9496, 28797, 2314, 38422, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29951, '2021-11-01', 7482, 28798, 2314, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29952, '2021-11-01', 8033, 28799, 2314, NULL, '1.0000', '27.7000', '27.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 (29953, '2021-11-01', 7507, 28800, 2314, NULL, '3.0000', '6.5000', '6.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 (29954, '2021-11-01', 7954, 28801, 2314, NULL, '4.0000', '21.0000', '21.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 (29955, '2021-11-01', 8851, 28802, 2314, NULL, '3.0000', '16.6600', '16.6600', '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 (29956, '2021-11-01', 7412, 28803, 2314, NULL, '1.0000', '1.5200', '1.5200', '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 (29957, '2021-11-01', 9272, 28804, 2314, NULL, '1.0000', '3.1000', '3.1000', '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 (29958, '2021-11-01', 7482, 28805, 2314, 36029, '2.0000', '2.4981', '2.4981', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29959, '2021-11-01', 7390, 28806, 2314, NULL, '1.0000', '18.2100', '18.2100', '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 (29960, '2021-11-01', 3001, 28807, 2314, NULL, '3.0000', '1.5000', '1.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 (29961, '2021-11-01', 8359, 28808, 2314, NULL, '1.0000', '20.4289', '20.4289', '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 (29962, '2021-11-01', 7671, 28809, 2314, NULL, '1.0000', '15.5000', '15.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 (29963, '2021-11-01', 7583, 28810, 2314, NULL, '1.0000', '4.0000', '4.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 (29964, '2021-11-01', 1501, 28811, 2314, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29965, '2021-11-01', 7473, 28812, 2314, NULL, '5.0000', '15.4731', '15.4731', '0.6000', '0.6000', '-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 (29966, '2021-11-01', 7848, 28813, 2314, NULL, '1.0000', '1.3500', '1.3500', '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 (29967, '2021-11-01', 7674, 28814, 2314, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '161.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29968, '2021-11-01', 8756, 28815, 2314, NULL, '1.0000', '7.0000', '7.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 (29969, '2021-11-01', 9561, 28816, 2314, 36679, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29970, '2021-11-01', 7657, 28817, 2314, NULL, '1.0000', '5.4700', '5.4700', '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 (29971, '2021-11-01', 7753, 28818, 2314, NULL, '1.0000', '3.9360', '3.9360', '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 (29972, '2021-11-01', 7664, 28819, 2314, NULL, '1.0000', '3.6000', '3.6000', '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 (29973, '2021-11-01', 8735, 28820, 2314, NULL, '1.0000', '5.6000', '5.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 (29974, '2021-11-01', 1339, 28821, 2314, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29975, '2021-11-01', 8689, 28822, 2314, NULL, '1.0000', '16.6700', '16.6700', '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 (29976, '2021-11-01', 8166, 28823, 2314, NULL, '1.0000', '4.6000', '4.6000', '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 (29977, '2021-11-01', 7411, 28824, 2314, NULL, '1.0000', '1.3500', '1.3500', '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 (29978, '2021-11-01', 8041, 28825, 2314, NULL, '1.0000', '0.4700', '0.4700', '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 (29979, '2021-11-01', 9240, 28826, 2314, NULL, '1.0000', '25.1200', '25.1200', '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 (29980, '2021-11-01', 7952, 28827, 2314, NULL, '1.0000', '10.4000', '10.4000', '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 (29981, '2021-11-01', 7586, 28828, 2314, NULL, '1.0000', '4.1700', '4.1700', '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 (29982, '2021-11-01', 8717, 28829, 2314, NULL, '1.0000', '4.7000', '4.7000', '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 (29983, '2021-11-01', 7666, 28830, 2314, NULL, '1.0000', '0.4000', '0.4000', '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 (29984, '2021-11-01', 7864, 28831, 2314, NULL, '4.0000', '2.9000', '2.9000', '23.5000', '23.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 (29985, '2021-11-01', 7675, 28832, 2314, NULL, '1.0000', '11.4300', '11.4300', '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 (29986, '2021-11-01', 8965, 28833, 2314, NULL, '1.0000', '52.9900', '52.9900', '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 (29987, '2021-11-01', 7354, 28834, 2314, NULL, '2.0000', '18.0000', '18.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 (29988, '2021-11-01', 7321, 28835, 2314, 38610, '1.0000', '12.6000', '12.6000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29989, '2021-11-01', 7482, 28836, 2314, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29990, '2021-11-01', 7507, 28837, 2314, NULL, '3.0000', '6.5000', '6.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 (29991, '2021-11-01', 8918, 28838, 2314, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29992, '2021-11-01', 7892, 28839, 2314, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29993, '2021-11-01', 8702, 28840, 2314, NULL, '1.0000', '3.6700', '3.6700', '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 (29994, '2021-11-01', 7318, 28841, 2314, 37431, '1.0000', '17.2098', '17.2098', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29995, '2021-11-01', 1904, 28842, 2314, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29996, '2021-11-01', 9092, 28843, 2314, 39260, '1.0000', '0.3844', '0.3844', '0.5000', '0.5000', '290.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29997, '2021-11-01', 9563, 28844, 2314, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29998, '2021-11-01', 9563, 28845, 2314, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29999, '2021-11-01', 2366, 28846, 2315, NULL, '2.0000', '6.4500', '6.4500', '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 (30000, '2021-11-01', 2673, 28847, 2315, 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 (30001, '2021-11-01', 2440, 28848, 2315, 38965, '2.0000', '5.2510', '5.2510', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30002, '2021-11-01', 7411, 28849, 2315, NULL, '1.0000', '1.3500', '1.3500', '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 (30003, '2021-11-01', 2237, 28850, 2315, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30004, '2021-11-01', 2965, 28851, 2315, NULL, '1.0000', '5.0000', '5.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 (30005, '2021-11-01', 9089, 28852, 2315, NULL, '1.0000', '3.8000', '3.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 (30006, '2021-11-01', 8774, 28853, 2315, NULL, '1.0000', '8.0000', '8.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 (30007, '2021-11-01', 8756, 28854, 2315, 32556, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30008, '2021-11-01', 1532, 28855, 2315, 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 (30009, '2021-11-01', 1501, 28856, 2315, NULL, '1.0000', '2.2100', '2.2100', '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 (30010, '2021-11-01', 9461, 28857, 2315, NULL, '1.0000', '1.6000', '1.6000', '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 (30011, '2021-11-01', 2699, 28858, 2315, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30012, '2021-11-01', 1661, 28859, 2315, 33344, '1.0000', '32.1800', '32.1800', '43.0000', '43.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30013, '2021-11-01', 7532, 28860, 2315, 33150, '1.0000', '15.4668', '15.4668', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30014, '2021-11-01', 7391, 28861, 2315, NULL, '1.0000', '15.6000', '15.6000', '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 (30015, '2021-11-01', 1574, 28862, 2315, 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 (30016, '2021-11-01', 2167, 28863, 2315, 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 (30017, '2021-11-01', 1706, 28864, 2315, 24948, '1.0000', '13.7192', '13.7192', '20.5000', '20.5000', '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 (30018, '2021-11-01', 1620, 28865, 2315, 38596, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30019, '2021-11-01', 7859, 28866, 2315, NULL, '1.0000', '3.6000', '3.6000', '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 (30020, '2021-11-01', 8735, 28867, 2316, NULL, '1.0000', '5.6000', '5.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 (30021, '2021-11-01', 2221, 28868, 2317, 4154, '-11.0000', '14.4737', '14.4737', '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 (30022, '2021-11-01', 2221, 28868, 2317, NULL, '12.0000', '14.4737', '14.4737', '25.0000', '25.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 (30023, '2021-11-01', 2681, 28869, 2317, 12164, '-7.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 (30024, '2021-11-01', 2681, 28869, 2317, NULL, '8.0000', '12.5000', '12.5000', '16.5000', '16.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 (30025, '2021-11-01', 1746, 28870, 2317, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '24.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 (30026, '2021-11-01', 2262, 28871, 2318, 2798, '-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 (30027, '2021-11-01', 2262, 28871, 2318, 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 (30028, '2021-11-01', 1501, 28872, 2319, NULL, '1.0000', '2.2100', '2.2100', '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 (30029, '2021-11-01', 2821, 28873, 2319, 19817, '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 (30030, '2021-11-01', 2315, 28874, 2319, NULL, '1.0000', '-6.8895', '-6.8895', '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 (30031, '2021-11-01', 1856, 28875, 2319, 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 (30032, '2021-11-01', 2823, 28876, 2319, 19868, '1.0000', '11.2100', '11.2100', '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 (30033, '2021-11-01', 2285, 28877, 2319, NULL, '1.0000', '36.1500', '36.1500', '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 (30034, '2021-11-01', 8638, 28878, 2319, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30035, '2021-11-01', 1730, 28879, 2319, 25009, '1.0000', '24.4163', '24.4163', '33.5000', '33.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 (30036, '2021-11-01', 3058, 28880, 2319, 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 (30037, '2021-11-01', 9015, 28881, 2319, NULL, '1.0000', '5.5000', '5.5000', '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 (30038, '2021-11-01', 2169, 28882, 2319, NULL, '1.0000', '1.1500', '1.1500', '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 (30039, '2021-11-01', 7641, 28883, 2319, NULL, '1.0000', '1.9000', '1.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 (30040, '2021-11-01', 2730, 28884, 2319, 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 (30041, '2021-11-01', 2004, 28885, 2319, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30042, '2021-11-01', 7666, 28886, 2319, NULL, '1.0000', '10.0000', '10.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 (30043, '2021-11-02', 1545, 28887, 2320, NULL, '1.0000', '34.9000', '34.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 (30044, '2021-11-02', 1674, 28888, 2320, NULL, '1.0000', '3.2473', '3.2473', '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 (30045, '2021-11-02', 7408, 28889, 2320, NULL, '1.0000', '1.0000', '1.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 (30046, '2021-11-02', 1673, 28890, 2320, 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 (30047, '2021-11-02', 7720, 28891, 2320, 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 (30048, '2021-11-02', 1868, 28892, 2320, 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 (30049, '2021-11-02', 2103, 28893, 2320, 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 (30050, '2021-11-02', 7335, 28894, 2320, NULL, '1.0000', '10.4000', '10.4000', '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 (30051, '2021-11-02', 8638, 28895, 2320, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30052, '2021-11-02', 2280, 28896, 2320, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (30053, '2021-11-02', 2102, 28897, 2320, 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 (30054, '2021-11-02', 2100, 28898, 2320, 31962, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30055, '2021-11-02', 1564, 28899, 2320, NULL, '3.0000', '90.0000', '90.0000', '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 (30056, '2021-11-02', 1863, 28900, 2320, NULL, '1.0000', '1.2830', '1.2830', '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 (30057, '2021-11-02', 8127, 28901, 2320, NULL, '1.0000', '24.5300', '24.5300', '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 (30058, '2021-11-02', 2169, 28902, 2320, NULL, '1.0000', '1.1500', '1.1500', '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 (30059, '2021-11-02', 2167, 28903, 2320, 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 (30060, '2021-11-02', 1322, 28904, 2320, 37796, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30061, '2021-11-02', 2642, 28905, 2320, 37719, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30062, '2021-11-02', 2965, 28906, 2321, NULL, '1.0000', '5.0000', '5.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 (30063, '2021-11-02', 2315, 28907, 2321, 39666, '3.0000', '9.9139', '9.9139', '0.6000', '0.6000', '84.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30064, '2021-11-02', 1665, 28908, 2321, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30065, '2021-11-02', 2007, 28909, 2321, 39214, '1.0000', '9.1748', '9.1748', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30066, '2021-11-02', 8179, 28910, 2321, NULL, '1.0000', '0.2200', '0.2200', '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 (30067, '2021-11-02', 1763, 28911, 2321, 19383, '1.0000', '4.6900', '4.6900', '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 (30068, '2021-11-02', 8133, 28912, 2321, 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 (30069, '2021-11-02', 1867, 28913, 2321, 37799, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30070, '2021-11-02', 1757, 28914, 2321, 37786, '1.0000', '4.0024', '4.0024', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30071, '2021-11-02', 7787, 28915, 2321, NULL, '1.0000', '10.9000', '10.9000', '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 (30072, '2021-11-02', 1680, 28916, 2321, NULL, '1.0000', '5.0300', '5.0300', '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 (30073, '2021-11-02', 8184, 28917, 2322, NULL, '10.0000', '2.4000', '2.4000', '3.5000', '3.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 (30074, '2021-11-02', 2106, 28918, 2322, 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 (30075, '2021-11-02', 1863, 28919, 2322, NULL, '1.0000', '1.2830', '1.2830', '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 (30076, '2021-11-02', 7406, 28920, 2322, NULL, '1.0000', '5.0000', '5.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 (30077, '2021-11-02', 2916, 28921, 2323, 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 (30078, '2021-11-02', 2136, 28922, 2323, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '103.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 (30079, '2021-11-02', 1532, 28923, 2323, 22261, '3.0000', '0.8000', '0.8000', '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 (30080, '2021-11-02', 2643, 28924, 2323, NULL, '3.0000', '0.8700', '0.8700', '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 (30081, '2021-11-02', 9498, 28925, 2323, 33074, '1.0000', '12.5000', '12.5000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30082, '2021-11-02', 1497, 28926, 2323, 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 (30083, '2021-11-02', 3029, 28927, 2323, NULL, '1.0000', '4.7700', '4.7700', '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 (30084, '2021-11-02', 2099, 28928, 2323, 1043, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '7.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 (30085, '2021-11-02', 1857, 28929, 2323, 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 (30086, '2021-11-02', 2818, 28930, 2323, NULL, '1.0000', '14.0000', '14.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 (30087, '2021-11-02', 2020, 28931, 2323, 10164, '-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 (30088, '2021-11-02', 2020, 28931, 2323, NULL, '2.0000', '7.5000', '7.5000', '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 (30089, '2021-11-02', 1632, 28932, 2323, 3206, '-6.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 (30090, '2021-11-02', 1632, 28932, 2323, NULL, '7.0000', '19.5000', '19.5000', '25.0000', '25.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 (30091, '2021-11-02', 9431, 28933, 2323, NULL, '1.0000', '30.0000', '30.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 (30092, '2021-11-02', 1884, 28934, 2323, 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 (30093, '2021-11-02', 1816, 28935, 2323, 18858, '1.0000', '18.2300', '18.2300', '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 (30094, '2021-11-02', 9521, 28936, 2323, 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 (30095, '2021-11-02', 2012, 28937, 2323, 5299, '-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 (30096, '2021-11-02', 2012, 28937, 2323, NULL, '2.0000', '12.0000', '12.0000', '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 (30097, '2021-11-02', 1945, 28938, 2323, 5559, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.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 (30098, '2021-11-02', 2315, 28939, 2323, 2735, '-144.0000', '0.3300', '0.3300', '0.6000', '0.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 (30099, '2021-11-02', 2315, 28939, 2323, NULL, '146.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-146.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30100, '2021-11-02', 1712, 28940, 2323, 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 (30101, '2021-11-02', 2506, 28941, 2323, 18839, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '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 (30102, '2021-11-02', 2379, 28942, 2323, 4032, '-21.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 (30103, '2021-11-02', 2379, 28942, 2323, NULL, '22.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30104, '2021-11-02', 1908, 28943, 2323, 5444, '-17.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 (30105, '2021-11-02', 1908, 28943, 2323, NULL, '19.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (30106, '2021-11-02', 9602, 28944, 2323, NULL, '1.0000', '1.0500', '1.0500', '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 (30107, '2021-11-02', 1708, 28945, 2324, 10382, '-4.0000', '20.1900', '20.1900', '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 (30108, '2021-11-02', 1708, 28945, 2324, NULL, '5.0000', '20.1900', '20.1900', '27.0000', '27.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 (30109, '2021-11-02', 1866, 28946, 2325, 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 (30110, '2021-11-02', 1417, 28947, 2325, 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 (30111, '2021-11-02', 1519, 28948, 2326, 33141, '3.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30112, '2021-11-02', 2269, 28949, 2326, 24965, '1.0000', '5.8300', '5.8300', '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 (30113, '2021-11-02', 1880, 28950, 2326, 37787, '1.0000', '4.7372', '4.7372', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30114, '2021-11-02', 1381, 28951, 2326, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30115, '2021-11-02', 7601, 28952, 2326, NULL, '1.0000', '13.5000', '13.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 (30116, '2021-11-02', 1928, 28953, 2326, NULL, '1.0000', '5.5000', '5.5000', '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 (30117, '2021-11-02', 1326, 28954, 2326, NULL, '1.0000', '3.0300', '3.0300', '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 (30118, '2021-11-02', 7593, 28955, 2327, NULL, '1.0000', '2.4500', '2.4500', '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 (30119, '2021-11-02', 8208, 28956, 2327, NULL, '4.0000', '33.0000', '33.0000', '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 (30120, '2021-11-02', 7954, 28957, 2328, 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 (30121, '2021-11-02', 1602, 28958, 2329, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30122, '2021-11-02', 2951, 28959, 2329, 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 (30123, '2021-11-02', 2169, 28960, 2329, NULL, '1.0000', '1.1500', '1.1500', '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 (30124, '2021-11-02', 8454, 28961, 2329, NULL, '1.0000', '5.1700', '5.1700', '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 (30125, '2021-11-02', 8033, 28962, 2329, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30126, '2021-11-02', 1854, 28963, 2329, 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 (30127, '2021-11-02', 2237, 28964, 2329, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30128, '2021-11-02', 8000, 28965, 2329, NULL, '1.0000', '25.8200', '25.8200', '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 (30129, '2021-11-02', 1386, 28966, 2329, 37975, '1.0000', '-1.9773', '-1.9773', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30130, '2021-11-02', 7886, 28967, 2329, NULL, '1.0000', '14.5000', '14.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 (30131, '2021-11-02', 7564, 28968, 2330, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30132, '2021-11-02', 8312, 28969, 2330, NULL, '1.0000', '10.2000', '10.2000', '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 (30133, '2021-11-02', 2289, 28970, 2330, 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 (30134, '2021-11-02', 7674, 28971, 2330, 33721, '4.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '157.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30135, '2021-11-02', 7412, 28972, 2330, NULL, '1.0000', '1.5200', '1.5200', '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 (30136, '2021-11-02', 9508, 28973, 2330, NULL, '1.0000', '3.4000', '3.4000', '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 (30137, '2021-11-02', 1440, 28974, 2330, 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 (30138, '2021-11-02', 9329, 28975, 2330, NULL, '1.0000', '5.8000', '5.8000', '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 (30139, '2021-11-02', 9496, 28976, 2330, 38422, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30140, '2021-11-02', 2574, 28977, 2330, 36095, '10.0000', '1.5800', '1.5800', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30141, '2021-11-02', 8063, 28978, 2330, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '25.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30142, '2021-11-02', 7821, 28979, 2330, NULL, '1.0000', '7.0000', '7.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 (30143, '2021-11-02', 7360, 28980, 2330, 33708, '2.0000', '10.0000', '10.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30144, '2021-11-02', 7836, 28981, 2330, NULL, '1.0000', '9.0000', '9.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30145, '2021-11-02', 9092, 28982, 2330, 39260, '1.0000', '0.3844', '0.3844', '0.5000', '0.5000', '289.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30146, '2021-11-02', 8074, 28983, 2330, NULL, '1.0000', '20.0000', '20.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 (30147, '2021-11-02', 9510, 28984, 2330, 37381, '1.0000', '23.4700', '23.4700', '30.1000', '30.1000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30148, '2021-11-02', 8163, 28985, 2330, NULL, '1.0000', '22.8591', '22.8591', '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 (30149, '2021-11-02', 1848, 28986, 2330, NULL, '10.0000', '0.4200', '0.4200', '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 (30150, '2021-11-02', 8033, 28987, 2330, NULL, '1.0000', '27.7000', '27.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 (30151, '2021-11-02', 9563, 28988, 2330, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30152, '2021-11-02', 8278, 28989, 2330, NULL, '1.0000', '7.0000', '7.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 (30153, '2021-11-02', 7709, 28990, 2330, NULL, '2.0000', '35.8000', '35.8000', '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 (30154, '2021-11-02', 7560, 28991, 2331, NULL, '1.0000', '4.4500', '4.4500', '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 (30155, '2021-11-02', 7724, 28992, 2331, 39256, '1.0000', '7.9970', '7.9970', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30156, '2021-11-02', 8588, 28993, 2331, NULL, '1.0000', '4.8000', '4.8000', '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 (30157, '2021-11-02', 2289, 28994, 2331, 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 (30158, '2021-11-02', 7666, 28995, 2331, NULL, '1.0000', '0.4000', '0.4000', '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 (30159, '2021-11-02', 7887, 28996, 2331, NULL, '1.0000', '1.2000', '1.2000', '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 (30160, '2021-11-02', 9234, 28997, 2331, NULL, '1.0000', '3.0000', '3.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 (30161, '2021-11-02', 1404, 28998, 2331, 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 (30162, '2021-11-02', 7781, 28999, 2331, NULL, '3.0000', '4.2500', '4.2500', '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 (30163, '2021-11-02', 2315, 29000, 2331, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '101.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30164, '2021-11-02', 1912, 29001, 2332, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (30165, '2021-11-02', 2136, 29002, 2332, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '101.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 (30166, '2021-11-02', 1840, 29003, 2332, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.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 (30167, '2021-11-02', 2289, 29004, 2332, 2949, '-16.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 (30168, '2021-11-02', 2289, 29004, 2332, 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 (30169, '2021-11-02', 1851, 29005, 2332, NULL, '1.0000', '10.6568', '10.6568', '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 (30170, '2021-11-02', 2236, 29006, 2332, 2780, '-2.0000', '5.6599', '5.6599', '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 (30171, '2021-11-02', 2236, 29006, 2332, NULL, '3.0000', '5.6599', '5.6599', '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 (30172, '2021-11-02', 1863, 29007, 2332, 10808, '-61.0000', '0.4136', '0.4136', '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 (30173, '2021-11-02', 1863, 29007, 2332, NULL, '64.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30174, '2021-11-02', 7991, 29008, 2333, NULL, '1.0000', '26.5700', '26.5700', '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 (30175, '2021-11-02', 7380, 29009, 2333, NULL, '1.0000', '5.6200', '5.6200', '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 (30176, '2021-11-02', 8769, 29010, 2333, 39416, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30177, '2021-11-02', 8775, 29011, 2333, 39424, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30178, '2021-11-02', 7641, 29012, 2333, NULL, '1.0000', '6.5056', '6.5056', '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 (30179, '2021-11-02', 7473, 29013, 2333, NULL, '5.0000', '15.4731', '15.4731', '0.6000', '0.6000', '-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 (30180, '2021-11-02', 8203, 29014, 2333, NULL, '4.0000', '1.0075', '1.0075', '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 (30181, '2021-11-02', 7447, 29015, 2333, NULL, '4.0000', '19.1100', '19.1100', '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 (30182, '2021-11-02', 8925, 29016, 2333, NULL, '1.0000', '2.4000', '2.4000', '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 (30183, '2021-11-02', 7507, 29017, 2333, NULL, '3.0000', '6.5000', '6.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 (30184, '2021-11-02', 9274, 29018, 2333, NULL, '1.0000', '3.1000', '3.1000', '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 (30185, '2021-11-02', 8949, 29019, 2333, 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 (30186, '2021-11-02', 7777, 29020, 2333, NULL, '4.0000', '9.5000', '9.5000', '11.5000', '11.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 (30187, '2021-11-02', 8277, 29021, 2333, NULL, '1.0000', '5.0000', '5.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 (30188, '2021-11-02', 7886, 29022, 2333, NULL, '1.0000', '2.8333', '2.8333', '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 (30189, '2021-11-02', 1665, 29023, 2333, 39577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30190, '2021-11-02', 1501, 29024, 2333, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30191, '2021-11-02', 7892, 29025, 2333, NULL, '1.0000', '4.2000', '4.2000', '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 (30192, '2021-11-02', 2251, 29026, 2333, 31028, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30193, '2021-11-02', 1910, 29027, 2333, 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 (30194, '2021-11-02', 2249, 29028, 2333, NULL, '2.0000', '2.5000', '2.5000', '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 (30195, '2021-11-02', 7697, 29029, 2333, NULL, '3.0000', '5.0000', '5.0000', '5.5000', '5.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 (30196, '2021-11-02', 9272, 29030, 2333, NULL, '1.0000', '3.1000', '3.1000', '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 (30197, '2021-11-02', 7509, 29031, 2333, 39623, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30198, '2021-11-02', 7482, 29032, 2333, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30199, '2021-11-02', 8849, 29033, 2333, NULL, '1.0000', '1.0700', '1.0700', '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 (30200, '2021-11-02', 7787, 29034, 2333, NULL, '1.0000', '3.9600', '3.9600', '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 (30201, '2021-11-02', 7640, 29035, 2333, NULL, '1.0000', '7.4344', '7.4344', '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 (30202, '2021-11-02', 7848, 29036, 2333, NULL, '1.0000', '1.3500', '1.3500', '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 (30203, '2021-11-02', 9193, 29037, 2333, NULL, '1.0000', '5.5150', '5.5150', '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 (30204, '2021-11-02', 8858, 29038, 2333, NULL, '2.0000', '8.5000', '8.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 (30205, '2021-11-02', 7711, 29039, 2333, NULL, '1.0000', '-78.4806', '-78.4806', '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 (30206, '2021-11-02', 7753, 29040, 2333, NULL, '1.0000', '3.9360', '3.9360', '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 (30207, '2021-11-02', 7715, 29041, 2333, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30208, '2021-11-02', 9456, 29042, 2333, 33755, '3.0000', '3.3200', '3.3200', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30209, '2021-11-02', 2315, 29043, 2333, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '100.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30210, '2021-11-02', 7736, 29044, 2333, NULL, '1.0000', '15.0000', '15.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 (30211, '2021-11-02', 9578, 29045, 2333, NULL, '1.0000', '8.0000', '8.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 (30212, '2021-11-02', 7857, 29046, 2333, NULL, '1.0000', '14.5620', '14.5620', '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 (30213, '2021-11-02', 1339, 29047, 2333, 36064, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30214, '2021-11-02', 2289, 29048, 2333, 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 (30215, '2021-11-02', 7641, 29049, 2333, NULL, '1.0000', '6.5056', '6.5056', '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 (30216, '2021-11-02', 1303, 29050, 2333, 33727, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '99.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30217, '2021-11-02', 7784, 29051, 2333, NULL, '1.0000', '4.2500', '4.2500', '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 (30218, '2021-11-02', 7804, 29052, 2333, NULL, '2.0000', '1.8000', '1.8000', '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 (30219, '2021-11-02', 8203, 29053, 2333, NULL, '2.0000', '1.0075', '1.0075', '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 (30220, '2021-11-02', 8135, 29054, 2333, NULL, '1.0000', '13.9000', '13.9000', '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 (30221, '2021-11-02', 9329, 29055, 2333, NULL, '1.0000', '5.8000', '5.8000', '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 (30222, '2021-11-02', 2506, 29056, 2333, 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 (30223, '2021-11-02', 7412, 29057, 2333, NULL, '1.0000', '1.5200', '1.5200', '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 (30224, '2021-11-02', 7848, 29058, 2333, NULL, '1.0000', '1.3500', '1.3500', '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 (30225, '2021-11-02', 2643, 29059, 2333, 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 (30226, '2021-11-02', 8234, 29060, 2333, 39282, '1.0000', '13.0000', '13.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30227, '2021-11-02', 2275, 29061, 2334, 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 (30228, '2021-11-02', 7482, 29062, 2334, 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 (30229, '2021-11-02', 2275, 29063, 2334, 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 (30230, '2021-11-02', 9214, 29064, 2334, NULL, '2.0000', '9.6000', '9.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 (30231, '2021-11-02', 7963, 29065, 2334, NULL, '1.0000', '14.7000', '14.7000', '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 (30232, '2021-11-02', 7780, 29066, 2334, NULL, '1.0000', '2.6000', '2.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 (30233, '2021-11-02', 1529, 29067, 2334, NULL, '1.0000', '3.7110', '3.7110', '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 (30234, '2021-11-02', 1602, 29068, 2334, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30235, '2021-11-02', 2250, 29069, 2334, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30236, '2021-11-02', 2270, 29070, 2334, 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 (30237, '2021-11-02', 2167, 29071, 2334, 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 (30238, '2021-11-02', 1322, 29072, 2334, NULL, '1.0000', '4.4000', '4.4000', '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 (30239, '2021-11-02', 1529, 29073, 2334, NULL, '1.0000', '3.7110', '3.7110', '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 (30240, '2021-11-02', 8133, 29074, 2334, 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 (30241, '2021-11-02', 9556, 29075, 2334, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30242, '2021-11-02', 2821, 29076, 2334, 19817, '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 (30243, '2021-11-02', 7411, 29077, 2334, NULL, '1.0000', '1.3500', '1.3500', '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 (30244, '2021-11-02', 1668, 29078, 2334, NULL, '1.0000', '-141.3000', '-141.3000', '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 (30245, '2021-11-02', 9556, 29079, 2334, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30246, '2021-11-02', 2152, 29080, 2334, 24976, '1.0000', '10.8300', '10.8300', '18.5000', '18.5000', '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 (30247, '2021-11-02', 1431, 29081, 2334, NULL, '1.0000', '9.8000', '9.8000', '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 (30248, '2021-11-02', 2003, 29082, 2334, 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 (30249, '2021-11-02', 7473, 29083, 2334, 39817, '2.0000', '0.1679', '0.1679', '0.6000', '0.6000', '118.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30250, '2021-11-02', 2038, 29084, 2334, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '5.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 (30251, '2021-11-02', 9563, 29085, 2334, 38991, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30252, '2021-11-02', 1425, 29086, 2334, 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 (30253, '2021-11-02', 7411, 29087, 2334, NULL, '1.0000', '1.3500', '1.3500', '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 (30254, '2021-11-02', 2229, 29088, 2334, 38975, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30255, '2021-11-02', 9175, 29090, 2334, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30256, '2021-11-02', 7780, 29091, 2334, NULL, '1.0000', '2.6000', '2.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 (30257, '2021-11-02', 2951, 29092, 2334, 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 (30258, '2021-11-02', 2242, 29093, 2334, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30259, '2021-11-02', 2073, 29094, 2334, NULL, '4.0000', '2.3000', '2.3000', '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 (30260, '2021-11-02', 1338, 29096, 2334, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30261, '2021-11-02', 1529, 29097, 2334, NULL, '1.0000', '3.7110', '3.7110', '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 (30262, '2021-11-02', 8011, 29098, 2334, NULL, '1.0000', '0.9500', '0.9500', '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 (30263, '2021-11-02', 2506, 29099, 2334, 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 (30264, '2021-11-02', 1602, 29100, 2334, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30265, '2021-11-02', 8607, 29101, 2334, NULL, '1.0000', '12.0000', '12.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 (30266, '2021-11-02', 8984, 29102, 2334, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30267, '2021-11-02', 2548, 29103, 2334, 13720, '2.0000', '6.7200', '6.7200', '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 (30268, '2021-11-02', 7318, 29104, 2334, NULL, '1.0000', '13.4400', '13.4400', '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 (30269, '2021-11-02', 9608, 29105, 2334, 38934, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30270, '2021-11-02', 9503, 29106, 2334, 37717, '1.0000', '11.4766', '11.4766', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30271, '2021-11-02', 9089, 29107, 2335, NULL, '1.0000', '3.8000', '3.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 (30272, '2021-11-02', 1805, 29108, 2335, NULL, '1.0000', '4.5244', '4.5244', '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 (30273, '2021-11-02', 2506, 29109, 2335, 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 (30274, '2021-11-02', 1602, 29110, 2335, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30275, '2021-11-03', 1912, 29111, 2336, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '13.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 (30276, '2021-11-03', 2136, 29112, 2336, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '99.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 (30277, '2021-11-03', 1840, 29113, 2336, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.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 (30278, '2021-11-03', 2289, 29114, 2336, 2949, '-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 (30279, '2021-11-03', 2289, 29114, 2336, NULL, '22.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30280, '2021-11-03', 1851, 29115, 2336, 8627, '-1.0000', '10.6568', '10.6568', '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 (30281, '2021-11-03', 1851, 29115, 2336, NULL, '2.0000', '10.6568', '10.6568', '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 (30282, '2021-11-03', 2236, 29116, 2336, 2780, '-3.0000', '5.6599', '5.6599', '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 (30283, '2021-11-03', 2236, 29116, 2336, NULL, '4.0000', '5.6599', '5.6599', '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 (30284, '2021-11-03', 1863, 29117, 2336, 10808, '-64.0000', '0.4136', '0.4136', '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 (30285, '2021-11-03', 1863, 29117, 2336, NULL, '67.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30286, '2021-11-03', 2793, 29118, 2336, NULL, '1.0000', '31.6200', '31.6200', '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 (30287, '2021-11-03', 2058, 29119, 2336, 7512, '-1.0000', '10.0000', '10.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 (30288, '2021-11-03', 2058, 29119, 2336, NULL, '2.0000', '10.0000', '10.0000', '40.0000', '40.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 (30289, '2021-11-03', 9373, 29120, 2336, NULL, '1.0000', '46.7300', '46.7300', '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 (30290, '2021-11-03', 2286, 29121, 2336, 2946, '-16.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 (30291, '2021-11-03', 2286, 29121, 2336, NULL, '17.0000', '4.3000', '4.3000', '6.0000', '6.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 (30292, '2021-11-03', 3001, 29122, 2336, NULL, '2.0000', '1.5000', '1.5000', '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 (30293, '2021-11-03', 1649, 29123, 2336, 3220, '-3.0000', '11.1900', '11.1900', '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 (30294, '2021-11-03', 1649, 29123, 2336, NULL, '4.0000', '11.1900', '11.1900', '15.5000', '15.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 (30295, '2021-11-03', 1904, 29124, 2336, 5442, '-8.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 (30296, '2021-11-03', 1904, 29124, 2336, NULL, '9.0000', '0.3200', '0.3200', '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 (30297, '2021-11-03', 1935, 29125, 2336, 5586, '-24.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 (30298, '2021-11-03', 1935, 29125, 2336, NULL, '25.0000', '0.7200', '0.7200', '2.0000', '2.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 (30299, '2021-11-03', 2315, 29126, 2336, 2735, '-146.0000', '0.3300', '0.3300', '0.6000', '0.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 (30300, '2021-11-03', 2315, 29126, 2336, NULL, '148.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30301, '2021-11-03', 2237, 29127, 2336, 2781, '-13.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 (30302, '2021-11-03', 2237, 29127, 2336, NULL, '14.0000', '1.0600', '1.0600', '2.0000', '2.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 (30303, '2021-11-03', 2231, 29128, 2336, 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 (30304, '2021-11-03', 9577, 29129, 2336, NULL, '2.0000', '0.3200', '0.3200', '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 (30305, '2021-11-03', 2302, 29130, 2336, 2963, '-12.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 (30306, '2021-11-03', 2302, 29130, 2336, NULL, '13.0000', '5.2000', '5.2000', '7.0000', '7.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 (30307, '2021-11-03', 2608, 29131, 2336, NULL, '1.0000', '83.3300', '83.3300', '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 (30308, '2021-11-03', 1651, 29132, 2336, 3222, '-19.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 (30309, '2021-11-03', 1651, 29132, 2336, NULL, '20.0000', '6.7039', '6.7039', '10.0000', '10.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 (30310, '2021-11-03', 2712, 29133, 2336, 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 (30311, '2021-11-03', 2299, 29134, 2336, 2142, '1.0000', '6.0000', '6.0000', '8.5000', '8.5000', '1.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 (30312, '2021-11-03', 2712, 29135, 2336, 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 (30313, '2021-11-03', 1382, 29136, 2336, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.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 (30314, '2021-11-03', 1863, 29137, 2336, 10808, '-64.0000', '0.4136', '0.4136', '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 (30315, '2021-11-03', 1863, 29137, 2336, NULL, '66.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30316, '2021-11-03', 2633, 29138, 2336, 20654, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (30317, '2021-11-03', 2543, 29139, 2336, 6304, '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 (30318, '2021-11-03', 2624, 29140, 2336, 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 (30319, '2021-11-03', 1863, 29141, 2336, 10808, '-64.0000', '0.4136', '0.4136', '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 (30320, '2021-11-03', 1863, 29141, 2336, NULL, '65.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30321, '2021-11-03', 1602, 29142, 2336, 5897, '-32.0000', '6.7859', '6.7859', '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 (30322, '2021-11-03', 1602, 29142, 2336, NULL, '33.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (30323, '2021-11-03', 1519, 29143, 2336, 20592, '1.0000', '3.3500', '3.3500', '5.0000', '5.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 (30324, '2021-11-03', 3085, 29144, 2336, NULL, '1.0000', '55.0000', '55.0000', '75.0000', '75.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30325, '2021-11-03', 1667, 29145, 2336, 9745, '-18.0000', '5.9400', '5.9400', '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 (30326, '2021-11-03', 1667, 29145, 2336, NULL, '19.0000', '5.9400', '5.9400', '8.5000', '8.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 (30327, '2021-11-03', 1651, 29146, 2336, 3222, '-19.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 (30328, '2021-11-03', 1651, 29146, 2336, NULL, '20.0000', '6.7039', '6.7039', '10.0000', '10.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 (30329, '2021-11-03', 1378, 29147, 2336, 278, '1.0000', '1675.2384', '1675.2384', '42.0000', '42.0000', '0.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 (30330, '2021-11-03', 2624, 29148, 2336, 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 (30331, '2021-11-03', 1572, 29149, 2336, 20586, '2.0000', '138.3520', '138.3520', '2.5000', '2.5000', '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 (30332, '2021-11-03', 1785, 29150, 2336, NULL, '1.0000', '4.8380', '4.8380', '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 (30333, '2021-11-03', 2270, 29151, 2336, 2930, '1.0000', '0.9880', '0.9880', '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 (30334, '2021-11-03', 1687, 29152, 2336, 5785, '-12.0000', '165.9024', '165.9024', '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 (30335, '2021-11-03', 1687, 29152, 2336, NULL, '13.0000', '165.9024', '165.9024', '16.0000', '16.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 (30336, '2021-11-03', 1670, 29153, 2336, 10163, '-4.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 (30337, '2021-11-03', 1670, 29153, 2336, NULL, '6.0000', '19.5000', '19.5000', '26.0000', '26.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 (30338, '2021-11-03', 2235, 29154, 2336, 33819, '1.0000', '19.4250', '19.4250', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30339, '2021-11-03', 1677, 29155, 2336, 3284, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '1.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 (30340, '2021-11-03', 1811, 29156, 2337, 24200, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '3.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 (30341, '2021-11-03', 8000, 29157, 2337, NULL, '1.0000', '25.8200', '25.8200', '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 (30342, '2021-11-03', 2431, 29158, 2337, 25152, '2.0000', '2.2000', '2.2000', '3.5000', '3.5000', '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 (30343, '2021-11-03', 1730, 29159, 2337, 25009, '1.0000', '24.4163', '24.4163', '33.5000', '33.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 (30344, '2021-11-03', 2315, 29160, 2337, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '83.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30345, '2021-11-03', 2315, 29161, 2337, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '82.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30346, '2021-11-03', 1431, 29162, 2337, NULL, '1.0000', '9.8000', '9.8000', '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 (30347, '2021-11-03', 7411, 29163, 2337, NULL, '1.0000', '1.3500', '1.3500', '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 (30348, '2021-11-03', 1912, 29164, 2337, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30349, '2021-11-03', 2088, 29165, 2337, 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 (30350, '2021-11-03', 9470, 29166, 2337, 38980, '1.0000', '9.7020', '9.7020', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30351, '2021-11-03', 8084, 29167, 2337, 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 (30352, '2021-11-03', 1837, 29168, 2337, 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 (30353, '2021-11-03', 2967, 29169, 2337, 33376, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30354, '2021-11-03', 7411, 29170, 2337, NULL, '1.0000', '1.3500', '1.3500', '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 (30355, '2021-11-03', 2713, 29171, 2337, 32555, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30356, '2021-11-03', 3026, 29172, 2337, 23976, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '6.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 (30357, '2021-11-03', 9469, 29173, 2337, NULL, '1.0000', '2.3000', '2.3000', '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 (30358, '2021-11-03', 8984, 29174, 2337, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30359, '2021-11-03', 1665, 29175, 2337, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30360, '2021-11-03', 2315, 29176, 2337, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '81.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30361, '2021-11-03', 8608, 29177, 2337, NULL, '1.0000', '0.9000', '0.9000', '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 (30362, '2021-11-03', 2643, 29178, 2337, 37731, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30363, '2021-11-03', 2289, 29179, 2337, 38551, '4.0000', '0.2831', '0.2831', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30364, '2021-11-03', 7331, 29180, 2338, 38916, '1.0000', '58.0000', '58.0000', '77.0000', '77.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30365, '2021-11-03', 7331, 29180, 2338, NULL, '1.0000', '58.0000', '58.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30366, '2021-11-03', 7411, 29181, 2338, NULL, '1.0000', '1.3500', '1.3500', '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 (30367, '2021-11-03', 2821, 29182, 2338, 19817, '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 (30368, '2021-11-03', 1519, 29183, 2338, 33141, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30369, '2021-11-03', 7328, 29184, 2338, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (30370, '2021-11-03', 1840, 29185, 2338, 19856, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30371, '2021-11-03', 2289, 29186, 2338, 38551, '3.0000', '0.2831', '0.2831', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30372, '2021-11-03', 1839, 29187, 2338, NULL, '1.0000', '6.0835', '6.0835', '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 (30373, '2021-11-03', 1875, 29188, 2339, 6949, '-15.0000', '2.4000', '2.4000', '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 (30374, '2021-11-03', 1875, 29188, 2339, NULL, '25.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-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 (30375, '2021-11-03', 2519, 29189, 2339, NULL, '3.0000', '11.0000', '11.0000', '14.5000', '14.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 (30376, '2021-11-03', 1651, 29190, 2339, 3222, '-21.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 (30377, '2021-11-03', 1651, 29190, 2339, NULL, '22.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30378, '2021-11-03', 2437, 29191, 2339, 5306, '-2.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 (30379, '2021-11-03', 2437, 29191, 2339, NULL, '3.0000', '80.0000', '80.0000', '100.0000', '100.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 (30380, '2021-11-03', 1839, 29192, 2339, 8734, '-9.0000', '6.1500', '6.1500', '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 (30381, '2021-11-03', 1839, 29192, 2339, NULL, '10.0000', '6.1500', '6.1500', '8.5000', '8.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 (30382, '2021-11-03', 2286, 29193, 2339, 2946, '-17.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 (30383, '2021-11-03', 2286, 29193, 2339, NULL, '20.0000', '4.3000', '4.3000', '6.0000', '6.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 (30384, '2021-11-03', 2511, 29194, 2339, 9740, '-5.0000', '8.5000', '8.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 (30385, '2021-11-03', 2511, 29194, 2339, NULL, '6.0000', '8.5000', '8.5000', '12.0000', '12.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 (30386, '2021-11-03', 1828, 29195, 2339, NULL, '1.0000', '0.7300', '0.7300', '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 (30387, '2021-11-03', 2169, 29196, 2339, 10737, '1.0000', '3.8397', '3.8397', '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 (30388, '2021-11-03', 7822, 29197, 2340, NULL, '1.0000', '3.2000', '3.2000', '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 (30389, '2021-11-03', 7828, 29198, 2340, NULL, '1.0000', '3.0000', '3.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 (30390, '2021-11-03', 1837, 29199, 2340, 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 (30391, '2021-11-03', 8097, 29200, 2340, NULL, '3.0000', '3.3994', '3.3994', '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 (30392, '2021-11-03', 9191, 29201, 2340, NULL, '2.0000', '6.6700', '6.6700', '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 (30393, '2021-11-03', 7980, 29202, 2340, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (30394, '2021-11-03', 7411, 29203, 2340, NULL, '1.0000', '1.3500', '1.3500', '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 (30395, '2021-11-03', 7514, 29204, 2340, NULL, '2.0000', '12.9983', '12.9983', '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 (30396, '2021-11-03', 7507, 29205, 2340, NULL, '3.0000', '6.5000', '6.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 (30397, '2021-11-03', 7527, 29206, 2340, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30398, '2021-11-03', 8596, 29207, 2340, NULL, '1.0000', '17.0000', '17.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 (30399, '2021-11-03', 8608, 29208, 2340, NULL, '1.0000', '5.7400', '5.7400', '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 (30400, '2021-11-03', 7967, 29209, 2340, 37382, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30401, '2021-11-03', 7833, 29210, 2340, NULL, '1.0000', '14.0000', '14.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30402, '2021-11-03', 7810, 29211, 2340, NULL, '1.0000', '13.5000', '13.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 (30403, '2021-11-03', 7507, 29212, 2340, NULL, '3.0000', '6.5000', '6.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 (30404, '2021-11-03', 7473, 29213, 2340, NULL, '1.0000', '15.4731', '15.4731', '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 (30405, '2021-11-03', 9445, 29214, 2340, 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 (30406, '2021-11-03', 8843, 29215, 2340, 34495, '1.0000', '40.0000', '40.0000', '53.5000', '53.5000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30407, '2021-11-03', 9193, 29216, 2340, NULL, '5.0000', '5.5150', '5.5150', '9.5000', '9.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 (30408, '2021-11-03', 7353, 29217, 2340, 30931, '3.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '6.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30409, '2021-11-03', 7672, 29218, 2340, NULL, '1.0000', '1.0200', '1.0200', '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 (30410, '2021-11-03', 9266, 29219, 2340, 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 (30411, '2021-11-03', 8166, 29220, 2340, NULL, '1.0000', '4.6000', '4.6000', '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 (30412, '2021-11-03', 7380, 29221, 2340, NULL, '2.0000', '5.6200', '5.6200', '11.5000', '11.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 (30413, '2021-11-03', 9563, 29222, 2340, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30414, '2021-11-03', 2656, 29223, 2341, NULL, '2.0000', '1.5000', '1.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 (30415, '2021-11-03', 2951, 29224, 2342, 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 (30416, '2021-11-03', 2965, 29225, 2342, NULL, '1.0000', '5.0000', '5.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 (30417, '2021-11-03', 2394, 29226, 2342, 31959, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30418, '2021-11-03', 7743, 29227, 2342, NULL, '1.0000', '7.3900', '7.3900', '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 (30419, '2021-11-03', 1399, 29228, 2342, NULL, '1.0000', '16.1094', '16.1094', '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 (30420, '2021-11-03', 8097, 29229, 2342, NULL, '3.0000', '7.6800', '7.6800', '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 (30421, '2021-11-03', 7558, 29230, 2342, 39820, '3.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30422, '2021-11-03', 1672, 29231, 2342, NULL, '10.0000', '24.6900', '24.6900', '4.0000', '4.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 (30423, '2021-11-03', 3054, 29232, 2342, 38912, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30424, '2021-11-03', 7642, 29233, 2342, NULL, '1.0000', '2.6900', '2.6900', '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 (30425, '2021-11-03', 1432, 29234, 2342, 38557, '1.0000', '9.5117', '9.5117', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30426, '2021-11-03', 2715, 29235, 2342, NULL, '1.0000', '9.2600', '9.2600', '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 (30427, '2021-11-03', 8746, 29236, 2342, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30428, '2021-11-03', 8773, 29237, 2342, 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 (30429, '2021-11-03', 2242, 29238, 2342, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30430, '2021-11-03', 9177, 29239, 2342, 39826, '10.0000', '0.8556', '0.8556', '1.2000', '1.2000', '40.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30431, '2021-11-03', 9399, 29240, 2342, 34949, '2.0000', '0.9800', '0.9800', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30432, '2021-11-03', 2962, 29241, 2342, 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 (30433, '2021-11-03', 2962, 29242, 2342, 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 (30434, '2021-11-03', 8057, 29243, 2342, NULL, '1.0000', '6.0000', '6.0000', '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 (30435, '2021-11-03', 7913, 29244, 2342, NULL, '2.0000', '2.5500', '2.5500', '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 (30436, '2021-11-03', 7780, 29245, 2342, NULL, '1.0000', '2.6000', '2.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 (30437, '2021-11-03', 7411, 29246, 2342, NULL, '2.0000', '1.3500', '1.3500', '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 (30438, '2021-11-03', 1499, 29247, 2342, 38940, '2.0000', '0.4684', '0.4684', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30439, '2021-11-03', 2660, 29248, 2342, 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 (30440, '2021-11-03', 7411, 29249, 2342, NULL, '2.0000', '1.3500', '1.3500', '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 (30441, '2021-11-03', 8333, 29250, 2342, NULL, '1.0000', '10.0000', '10.0000', '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 (30442, '2021-11-03', 1612, 29251, 2342, 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 (30443, '2021-11-03', 1374, 29252, 2342, NULL, '2.0000', '55.5900', '55.5900', '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 (30444, '2021-11-03', 8984, 29253, 2342, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30445, '2021-11-03', 2293, 29254, 2342, NULL, '1.0000', '1.4400', '1.4400', '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 (30446, '2021-11-03', 2962, 29255, 2342, 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 (30447, '2021-11-03', 8677, 29256, 2342, NULL, '1.0000', '89.9250', '89.9250', '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 (30448, '2021-11-03', 2241, 29257, 2342, 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 (30449, '2021-11-03', 1590, 29258, 2342, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (30450, '2021-11-03', 7514, 29259, 2342, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30451, '2021-11-03', 1310, 29260, 2342, 34631, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30452, '2021-11-03', 9603, 29261, 2342, 38979, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30453, '2021-11-03', 2951, 29262, 2342, 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 (30454, '2021-11-03', 7514, 29263, 2342, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30455, '2021-11-03', 2821, 29264, 2342, 19817, '1.0000', '3.5100', '3.5100', '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 (30456, '2021-11-03', 1322, 29265, 2342, NULL, '1.0000', '4.4000', '4.4000', '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 (30457, '2021-11-03', 9561, 29266, 2342, NULL, '2.0000', '6.0000', '6.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 (30458, '2021-11-03', 1374, 29267, 2343, 4655, '-2.0000', '24.0076', '24.0076', '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 (30459, '2021-11-03', 1374, 29267, 2343, NULL, '3.0000', '24.0076', '24.0076', '26.0000', '26.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 (30460, '2021-11-03', 1502, 29268, 2343, 18925, '1.0000', '7.8000', '7.8000', '11.0000', '11.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 (30461, '2021-11-03', 1863, 29269, 2343, 10808, '-70.0000', '0.4136', '0.4136', '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 (30462, '2021-11-03', 1863, 29269, 2343, NULL, '71.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30463, '2021-11-03', 1651, 29270, 2343, 3222, '-22.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 (30464, '2021-11-03', 1651, 29270, 2343, NULL, '24.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (30465, '2021-11-03', 2592, 29271, 2343, 10812, '-9.0000', '7.9670', '7.9670', '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 (30466, '2021-11-03', 2592, 29271, 2343, NULL, '11.0000', '7.9670', '7.9670', '10.5000', '10.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 (30467, '2021-11-03', 1572, 29272, 2343, 20586, '2.0000', '138.3520', '138.3520', '2.5000', '2.5000', '6.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 (30468, '2021-11-03', 2633, 29273, 2343, 20654, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (30469, '2021-11-03', 2302, 29274, 2343, 2963, '-13.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 (30470, '2021-11-03', 2302, 29274, 2343, NULL, '14.0000', '5.2000', '5.2000', '7.0000', '7.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 (30471, '2021-11-03', 2976, 29275, 2343, 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 (30472, '2021-11-03', 1524, 29276, 2343, 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 (30473, '2021-11-03', 1420, 29277, 2343, 22318, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (30474, '2021-11-03', 7756, 29278, 2343, NULL, '1.0000', '2.5000', '2.5000', '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 (30475, '2021-11-03', 1863, 29279, 2343, 10808, '-70.0000', '0.4136', '0.4136', '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 (30476, '2021-11-03', 1863, 29279, 2343, NULL, '72.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30477, '2021-11-03', 2169, 29280, 2343, 10737, '1.0000', '3.8397', '3.8397', '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 (30478, '2021-11-03', 2285, 29281, 2343, 2945, '-12.0000', '35.8000', '35.8000', '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 (30479, '2021-11-03', 2285, 29281, 2343, NULL, '13.0000', '35.8000', '35.8000', '47.0000', '47.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 (30480, '2021-11-03', 2360, 29282, 2343, 3862, '-16.0000', '0.5200', '0.5200', '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 (30481, '2021-11-03', 2360, 29282, 2343, NULL, '17.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (30482, '2021-11-03', 3019, 29283, 2343, NULL, '1.0000', '7.8000', '7.8000', '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 (30483, '2021-11-03', 1592, 29284, 2343, 6223, '-1.0000', '35.9000', '35.9000', '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 (30484, '2021-11-03', 1592, 29284, 2343, NULL, '2.0000', '35.9000', '35.9000', '47.0000', '47.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 (30485, '2021-11-03', 2221, 29285, 2343, 4154, '-12.0000', '14.4737', '14.4737', '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 (30486, '2021-11-03', 2221, 29285, 2343, NULL, '13.0000', '14.4737', '14.4737', '25.0000', '25.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 (30487, '2021-11-03', 2303, 29286, 2343, 18854, '2.0000', '16.1000', '16.1000', '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 (30488, '2021-11-03', 1445, 29287, 2343, 5565, '-3.0000', '2.6000', '2.6000', '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 (30489, '2021-11-03', 1445, 29287, 2343, NULL, '4.0000', '2.6000', '2.6000', '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 (30490, '2021-11-03', 2797, 29288, 2343, 18967, '1.0000', '27.4800', '27.4800', '70.0000', '70.0000', '1.0000', 1, 0, NULL, 139);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30491, '2021-11-03', 2852, 29289, 2343, 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 (30492, '2021-11-03', 8982, 29290, 2343, 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 (30493, '2021-11-03', 2093, 29291, 2343, 1035, '1.0000', '2.5500', '2.5500', '5.0000', '5.0000', '9.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 (30494, '2021-11-03', 1606, 29292, 2343, NULL, '10.0000', '4.6200', '4.6200', '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 (30495, '2021-11-03', 2317, 29293, 2343, 3473, '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 (30496, '2021-11-03', 1804, 29294, 2343, 4916, '-2.0000', '4.2500', '4.2500', '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 (30497, '2021-11-03', 1804, 29294, 2343, NULL, '3.0000', '4.2500', '4.2500', '5.5000', '5.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 (30498, '2021-11-03', 1533, 29295, 2343, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (30499, '2021-11-03', 1445, 29296, 2343, 5565, '-3.0000', '2.6000', '2.6000', '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 (30500, '2021-11-03', 1445, 29296, 2343, NULL, '4.0000', '2.6000', '2.6000', '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 (30501, '2021-11-03', 2169, 29297, 2343, 10737, '1.0000', '3.8397', '3.8397', '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 (30502, '2021-11-03', 2398, 29298, 2343, 22295, '1.0000', '15.0000', '15.0000', '20.0000', '20.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 (30503, '2021-11-03', 3035, 29299, 2343, NULL, '1.0000', '9.5000', '9.5000', '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 (30504, '2021-11-03', 9563, 29300, 2343, NULL, '1.0000', '5.1000', '5.1000', '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 (30505, '2021-11-03', 1872, 29301, 2343, 12520, '1.0000', '9.0500', '9.0500', '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 (30506, '2021-11-03', 9577, 29302, 2343, NULL, '3.0000', '0.3200', '0.3200', '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 (30507, '2021-11-03', 1432, 29303, 2343, 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 (30508, '2021-11-03', 1651, 29304, 2343, 3222, '-22.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 (30509, '2021-11-03', 1651, 29304, 2343, NULL, '23.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (30510, '2021-11-03', 2109, 29305, 2343, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '131.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 (30511, '2021-11-03', 7524, 29306, 2343, NULL, '1.0000', '11.9500', '11.9500', '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 (30512, '2021-11-03', 7824, 29307, 2343, NULL, '1.0000', '8.0000', '8.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 (30513, '2021-11-03', 8208, 29308, 2343, NULL, '1.0000', '33.0000', '33.0000', '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 (30514, '2021-11-03', 2616, 29309, 2343, 9742, '-2.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 (30515, '2021-11-03', 2616, 29309, 2343, NULL, '12.0000', '3.0000', '3.0000', '4.0000', '4.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 (30516, '2021-11-03', 2327, 29310, 2343, 5083, '-17.0000', '4.5000', '4.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 (30517, '2021-11-03', 2327, 29310, 2343, NULL, '18.0000', '4.5000', '4.5000', '5.0000', '5.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 (30518, '2021-11-03', 2285, 29311, 2343, 2945, '-12.0000', '35.8000', '35.8000', '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 (30519, '2021-11-03', 2285, 29311, 2343, NULL, '13.0000', '35.8000', '35.8000', '47.0000', '47.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 (30520, '2021-11-03', 3001, 29312, 2343, NULL, '5.0000', '1.5000', '1.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 (30521, '2021-11-03', 1349, 29313, 2343, 245, '1.0000', '20.8300', '20.8300', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30522, '2021-11-03', 9461, 29314, 2344, NULL, '1.0000', '1.6000', '1.6000', '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 (30523, '2021-11-03', 2504, 29315, 2344, 5863, '-2.0000', '35.0000', '35.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 (30524, '2021-11-03', 2504, 29315, 2344, NULL, '3.0000', '35.0000', '35.0000', '44.0000', '44.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 (30525, '2021-11-03', 1427, 29316, 2344, NULL, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30526, '2021-11-03', 2441, 29317, 2344, 5311, '-1.0000', '4.6000', '4.6000', '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 (30527, '2021-11-03', 2441, 29317, 2344, NULL, '2.0000', '4.6000', '4.6000', '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 (30528, '2021-11-03', 3059, 29318, 2345, 37758, '1.0000', '2.2083', '2.2083', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30529, '2021-11-03', 1595, 29319, 2345, 38539, '1.0000', '20.1970', '20.1970', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30530, '2021-11-03', 2829, 29320, 2345, 38537, '1.0000', '24.8941', '24.8941', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30531, '2021-11-03', 7744, 29321, 2345, NULL, '1.0000', '1.9000', '1.9000', '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 (30532, '2021-11-03', 9503, 29322, 2345, 37717, '1.0000', '11.4766', '11.4766', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30533, '2021-11-03', 2094, 29323, 2345, 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 (30534, '2021-11-03', 7514, 29324, 2345, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30535, '2021-11-03', 1620, 29325, 2345, 38596, '2.0000', '2.2300', '2.2300', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30536, '2021-11-03', 2681, 29326, 2345, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '7.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30537, '2021-11-03', 2315, 29327, 2345, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '77.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30538, '2021-11-03', 1529, 29328, 2345, NULL, '2.0000', '3.7110', '3.7110', '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 (30539, '2021-11-03', 2320, 29329, 2345, 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 (30540, '2021-11-03', 1738, 29330, 2345, 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 (30541, '2021-11-03', 8133, 29331, 2345, 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 (30542, '2021-11-03', 7411, 29332, 2345, NULL, '2.0000', '1.3500', '1.3500', '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 (30543, '2021-11-03', 1812, 29333, 2345, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30544, '2021-11-03', 7743, 29334, 2345, NULL, '1.0000', '7.3900', '7.3900', '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 (30545, '2021-11-03', 7819, 29335, 2346, NULL, '5.0000', '9.5000', '9.5000', '13.0000', '13.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 (30546, '2021-11-03', 7712, 29336, 2346, NULL, '1.0000', '0.3300', '0.3300', '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 (30547, '2021-11-03', 7411, 29337, 2346, NULL, '5.0000', '1.3500', '1.3500', '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 (30548, '2021-11-03', 7781, 29338, 2346, NULL, '6.0000', '4.2500', '4.2500', '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 (30549, '2021-11-03', 7412, 29339, 2346, NULL, '2.0000', '1.5200', '1.5200', '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 (30550, '2021-11-03', 9412, 29340, 2346, 39247, '2.0000', '25.0000', '25.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30551, '2021-11-03', 7910, 29341, 2346, 39619, '1.0000', '3.8467', '3.8467', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30552, '2021-11-03', 7954, 29342, 2346, NULL, '1.0000', '21.0000', '21.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 (30553, '2021-11-03', 1760, 29343, 2346, 37408, '3.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30554, '2021-11-03', 8203, 29344, 2346, NULL, '3.0000', '1.0075', '1.0075', '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 (30555, '2021-11-03', 2315, 29345, 2346, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '98.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30556, '2021-11-03', 1340, 29346, 2346, 34540, '1.0000', '2.7422', '2.7422', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30557, '2021-11-03', 8596, 29347, 2346, NULL, '2.0000', '17.0000', '17.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 (30558, '2021-11-03', 7412, 29348, 2346, NULL, '1.0000', '1.5200', '1.5200', '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 (30559, '2021-11-03', 2643, 29349, 2346, 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 (30560, '2021-11-03', 7671, 29350, 2346, NULL, '1.0000', '15.5000', '15.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 (30561, '2021-11-03', 2955, 29351, 2346, NULL, '1.0000', '4.8000', '4.8000', '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 (30562, '2021-11-03', 8938, 29352, 2346, NULL, '1.0000', '7.8500', '7.8500', '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 (30563, '2021-11-03', 7750, 29353, 2346, NULL, '1.0000', '34.9000', '34.9000', '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 (30564, '2021-11-03', 7472, 29354, 2346, NULL, '1.0000', '4.1000', '4.1000', '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 (30565, '2021-11-03', 8135, 29355, 2346, NULL, '1.0000', '13.9000', '13.9000', '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 (30566, '2021-11-03', 9329, 29356, 2346, NULL, '1.0000', '5.8000', '5.8000', '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 (30567, '2021-11-03', 7674, 29357, 2346, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '156.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30568, '2021-11-03', 7775, 29358, 2346, 39642, '1.0000', '-2.9800', '-2.9800', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30569, '2021-11-03', 9092, 29359, 2346, 39260, '12.0000', '0.3844', '0.3844', '0.5000', '0.5000', '277.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30570, '2021-11-03', 8188, 29360, 2346, NULL, '1.0000', '6.7000', '6.7000', '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 (30571, '2021-11-03', 7671, 29361, 2346, NULL, '2.0000', '15.5000', '15.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 (30572, '2021-11-03', 7713, 29362, 2346, 37845, '3.0000', '0.4202', '0.4202', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30573, '2021-11-03', 2104, 29363, 2346, NULL, '4.0000', '0.2000', '0.2000', '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 (30574, '2021-11-03', 7814, 29364, 2346, NULL, '1.0000', '13.0000', '13.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 (30575, '2021-11-03', 7815, 29365, 2346, NULL, '1.0000', '13.0000', '13.0000', '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 (30576, '2021-11-03', 9098, 29366, 2346, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30577, '2021-11-03', 2004, 29367, 2346, 38465, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30578, '2021-11-03', 7609, 29368, 2346, NULL, '1.0000', '4.3300', '4.3300', '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 (30579, '2021-11-03', 7708, 29369, 2346, NULL, '1.0000', '6.1400', '6.1400', '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 (30580, '2021-11-03', 8466, 29370, 2346, NULL, '30.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '-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 (30581, '2021-11-03', 9092, 29371, 2346, 39260, '2.0000', '0.3844', '0.3844', '0.5000', '0.5000', '287.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30582, '2021-11-03', 7852, 29372, 2346, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30583, '2021-11-03', 8548, 29373, 2346, NULL, '1.0000', '12.0000', '12.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 (30584, '2021-11-03', 7750, 29374, 2346, NULL, '1.0000', '34.9000', '34.9000', '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 (30585, '2021-11-03', 2473, 29375, 2346, 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 (30586, '2021-11-03', 7638, 29376, 2346, 30935, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30587, '2021-11-03', 9214, 29377, 2346, 39423, '2.0000', '11.2432', '11.2432', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30588, '2021-11-03', 7409, 29378, 2346, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30589, '2021-11-03', 7518, 29379, 2346, NULL, '1.0000', '-67.2578', '-67.2578', '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 (30590, '2021-11-03', 7749, 29380, 2346, 36051, '1.0000', '-3.8876', '-3.8876', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30591, '2021-11-03', 7507, 29381, 2346, NULL, '4.0000', '6.5000', '6.5000', '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 (30592, '2021-11-03', 7756, 29382, 2346, NULL, '1.0000', '21.7700', '21.7700', '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 (30593, '2021-11-03', 9445, 29383, 2346, 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 (30594, '2021-11-03', 7385, 29384, 2346, 38611, '3.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30595, '2021-11-03', 7872, 29385, 2346, 31012, '1.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30596, '2021-11-03', 7612, 29386, 2346, NULL, '2.0000', '1.1770', '1.1770', '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 (30597, '2021-11-03', 7921, 29387, 2346, NULL, '1.0000', '0.3000', '0.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 (30598, '2021-11-03', 1867, 29388, 2346, 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 (30599, '2021-11-03', 8737, 29389, 2346, NULL, '1.0000', '9.8000', '9.8000', '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 (30600, '2021-11-03', 7886, 29390, 2346, NULL, '1.0000', '2.8333', '2.8333', '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 (30601, '2021-11-03', 7954, 29391, 2346, NULL, '4.0000', '21.0000', '21.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 (30602, '2021-11-03', 8101, 29392, 2346, NULL, '2.0000', '21.7000', '21.7000', '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 (30603, '2021-11-03', 7385, 29393, 2346, 38611, '5.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30604, '2021-11-03', 8743, 29394, 2346, 39420, '1.0000', '9.6250', '9.6250', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30605, '2021-11-03', 8689, 29395, 2346, NULL, '1.0000', '16.6700', '16.6700', '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 (30606, '2021-11-03', 9272, 29396, 2346, NULL, '1.0000', '3.1000', '3.1000', '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 (30607, '2021-11-03', 7473, 29397, 2346, NULL, '3.0000', '15.4731', '15.4731', '0.6000', '0.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 (30608, '2021-11-03', 7917, 29398, 2346, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (30609, '2021-11-03', 7380, 29399, 2346, NULL, '1.0000', '5.6200', '5.6200', '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 (30610, '2021-11-03', 8275, 29400, 2346, NULL, '1.0000', '29.8500', '29.8500', '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 (30611, '2021-11-03', 7736, 29401, 2346, NULL, '1.0000', '15.0000', '15.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 (30612, '2021-11-03', 9202, 29402, 2346, NULL, '1.0000', '3.5000', '3.5000', '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 (30613, '2021-11-03', 7507, 29403, 2346, NULL, '3.0000', '6.5000', '6.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 (30614, '2021-11-03', 8166, 29404, 2347, NULL, '1.0000', '4.6000', '4.6000', '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 (30615, '2021-11-03', 2233, 29405, 2348, 2777, '-8.0000', '19.0200', '19.0200', '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 (30616, '2021-11-03', 2233, 29405, 2348, NULL, '9.0000', '19.0200', '19.0200', '29.0000', '29.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 (30617, '2021-11-03', 1810, 29406, 2348, 12166, '-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 (30618, '2021-11-03', 1810, 29406, 2348, NULL, '3.0000', '8.0500', '8.0500', '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 (30619, '2021-11-03', 1837, 29407, 2349, 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 (30620, '2021-11-03', 2660, 29408, 2349, 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 (30621, '2021-11-03', 2749, 29409, 2349, 23133, '1.0000', '20.5000', '20.5000', '28.0000', '28.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 (30622, '2021-11-03', 2320, 29410, 2349, 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 (30623, '2021-11-04', 7950, 29411, 2350, NULL, '1.0000', '2.4000', '2.4000', '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 (30624, '2021-11-04', 1374, 29412, 2350, NULL, '2.0000', '55.5900', '55.5900', '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 (30625, '2021-11-04', 3058, 29413, 2350, 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 (30626, '2021-11-04', 1499, 29414, 2350, 38940, '1.0000', '0.4684', '0.4684', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30627, '2021-11-04', 2135, 29415, 2350, 23175, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (30628, '2021-11-04', 7482, 29416, 2350, 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 (30629, '2021-11-04', 1592, 29417, 2350, 37973, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30630, '2021-11-04', 7848, 29418, 2350, 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 (30631, '2021-11-04', 1505, 29419, 2350, 24956, '1.0000', '1071.9996', '1071.9996', '20.0000', '20.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 (30632, '2021-11-04', 1871, 29420, 2350, 37801, '10.0000', '2.9308', '2.9308', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30633, '2021-11-04', 1863, 29421, 2350, NULL, '1.0000', '1.2830', '1.2830', '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 (30634, '2021-11-04', 1338, 29422, 2350, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30635, '2021-11-04', 8771, 29423, 2350, 38984, '1.0000', '4.9473', '4.9473', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30636, '2021-11-04', 2700, 29424, 2350, 23128, '1.0000', '27.9700', '27.9700', '38.0000', '38.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 (30637, '2021-11-04', 2251, 29425, 2350, 39868, '1.0000', '12.2160', '12.2160', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30638, '2021-11-04', 8177, 29426, 2350, 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 (30639, '2021-11-04', 2444, 29427, 2350, 39222, '1.0000', '6.9587', '6.9587', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30640, '2021-11-04', 8177, 29428, 2350, 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 (30641, '2021-11-04', 2821, 29429, 2350, 19817, '1.0000', '3.5100', '3.5100', '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 (30642, '2021-11-04', 1863, 29430, 2350, NULL, '1.0000', '1.2830', '1.2830', '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 (30643, '2021-11-04', 1704, 29431, 2350, 34958, '2.0000', '30.1576', '30.1576', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30644, '2021-11-04', 8448, 29432, 2350, NULL, '1.0000', '6.8900', '6.8900', '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 (30645, '2021-11-04', 2135, 29433, 2350, 23175, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (30646, '2021-11-04', 3058, 29434, 2350, 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 (30647, '2021-11-04', 1326, 29435, 2350, NULL, '1.0000', '3.0300', '3.0300', '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 (30648, '2021-11-04', 1665, 29436, 2350, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30649, '2021-11-04', 8622, 29437, 2350, 39815, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30650, '2021-11-04', 1844, 29438, 2350, 34022, '1.0000', '1.3981', '1.3981', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30651, '2021-11-04', 2275, 29439, 2350, NULL, '3.0000', '1.0900', '1.0900', '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 (30652, '2021-11-04', 2280, 29440, 2351, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '40.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30653, '2021-11-04', 2858, 29441, 2351, 17772, '-4.0000', '1.0000', '1.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 (30654, '2021-11-04', 2858, 29441, 2351, NULL, '5.0000', '1.0000', '1.0000', '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 (30655, '2021-11-04', 2286, 29442, 2351, 2946, '-20.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 (30656, '2021-11-04', 2286, 29442, 2351, NULL, '23.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-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 (30657, '2021-11-04', 1651, 29443, 2351, 3222, '-25.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 (30658, '2021-11-04', 1651, 29443, 2351, NULL, '26.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (30659, '2021-11-04', 2806, 29444, 2351, 16377, '-1.0000', '5.7500', '5.7500', '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 (30660, '2021-11-04', 2806, 29444, 2351, NULL, '2.0000', '5.7500', '5.7500', '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 (30661, '2021-11-04', 2525, 29445, 2351, 6079, '-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 (30662, '2021-11-04', 2525, 29445, 2351, NULL, '3.0000', '10.0000', '10.0000', '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 (30663, '2021-11-04', 2401, 29446, 2351, NULL, '1.0000', '2.8000', '2.8000', '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 (30664, '2021-11-04', 2521, 29447, 2351, 6035, '-2.0000', '8.8000', '8.8000', '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 (30665, '2021-11-04', 2521, 29447, 2351, NULL, '3.0000', '8.8000', '8.8000', '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 (30666, '2021-11-04', 8169, 29448, 2351, NULL, '1.0000', '7.9800', '7.9800', '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 (30667, '2021-11-04', 2059, 29449, 2351, 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 (30668, '2021-11-04', 9541, 29450, 2351, NULL, '1.0000', '42.0000', '42.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 (30669, '2021-11-04', 9577, 29451, 2351, NULL, '4.0000', '0.3200', '0.3200', '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 (30670, '2021-11-04', 1651, 29452, 2351, 3222, '-25.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 (30671, '2021-11-04', 1651, 29452, 2351, NULL, '26.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (30672, '2021-11-04', 2327, 29453, 2351, 5083, '-18.0000', '4.5000', '4.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 (30673, '2021-11-04', 2327, 29453, 2351, NULL, '20.0000', '4.5000', '4.5000', '5.0000', '5.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 (30674, '2021-11-04', 1577, 29454, 2351, 7596, '-2.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 (30675, '2021-11-04', 1577, 29454, 2351, NULL, '3.0000', '2.5000', '2.5000', '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 (30676, '2021-11-04', 1658, 29455, 2352, 3229, '-3.0000', '27.9300', '27.9300', '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 (30677, '2021-11-04', 1658, 29455, 2352, NULL, '4.0000', '27.9300', '27.9300', '35.5000', '35.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 (30678, '2021-11-04', 8497, 29456, 2353, NULL, '1.0000', '28.0000', '28.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 (30679, '2021-11-04', 2989, 29457, 2353, 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 (30680, '2021-11-04', 2293, 29458, 2353, NULL, '1.0000', '1.4400', '1.4400', '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 (30681, '2021-11-04', 1499, 29459, 2353, 38940, '2.0000', '0.4684', '0.4684', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30682, '2021-11-04', 2242, 29460, 2353, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30683, '2021-11-04', 1651, 29461, 2353, NULL, '1.0000', '10.3802', '10.3802', '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 (30684, '2021-11-04', 2260, 29462, 2353, 37790, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30685, '2021-11-04', 1854, 29463, 2353, 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 (30686, '2021-11-04', 2280, 29464, 2353, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (30687, '2021-11-04', 1696, 29465, 2353, 34611, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30688, '2021-11-04', 2167, 29466, 2353, 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 (30689, '2021-11-04', 1394, 29467, 2353, 37812, '1.0000', '9.2833', '9.2833', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30690, '2021-11-04', 2089, 29468, 2353, 39891, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30691, '2021-11-04', 1674, 29469, 2353, NULL, '1.0000', '3.2473', '3.2473', '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 (30692, '2021-11-04', 2135, 29470, 2353, 18930, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (30693, '2021-11-04', 1432, 29471, 2353, 38557, '1.0000', '9.5117', '9.5117', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30694, '2021-11-04', 2315, 29472, 2354, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '97.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30695, '2021-11-04', 2287, 29473, 2354, NULL, '4.0000', '2.3000', '2.3000', '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 (30696, '2021-11-04', 8172, 29474, 2354, NULL, '2.0000', '40.7000', '40.7000', '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 (30697, '2021-11-04', 7514, 29475, 2354, NULL, '2.0000', '12.9983', '12.9983', '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 (30698, '2021-11-04', 8497, 29476, 2354, NULL, '1.0000', '337.1200', '337.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 (30699, '2021-11-04', 9191, 29477, 2354, NULL, '1.0000', '6.6700', '6.6700', '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 (30700, '2021-11-04', 7507, 29478, 2354, NULL, '3.0000', '6.5000', '6.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 (30701, '2021-11-04', 8737, 29479, 2354, NULL, '1.0000', '9.8000', '9.8000', '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 (30702, '2021-11-04', 8063, 29480, 2354, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30703, '2021-11-04', 8328, 29481, 2354, NULL, '1.0000', '8.0882', '8.0882', '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 (30704, '2021-11-04', 8041, 29482, 2354, NULL, '1.0000', '0.4700', '0.4700', '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 (30705, '2021-11-04', 9021, 29483, 2354, NULL, '1.0000', '7.0000', '7.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 (30706, '2021-11-04', 7409, 29484, 2354, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '37.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30707, '2021-11-04', 7715, 29485, 2354, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30708, '2021-11-04', 7787, 29486, 2354, NULL, '1.0000', '3.9600', '3.9600', '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 (30709, '2021-11-04', 8172, 29487, 2354, NULL, '2.0000', '40.7000', '40.7000', '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 (30710, '2021-11-04', 7673, 29488, 2354, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30711, '2021-11-04', 8325, 29489, 2354, 36672, '1.0000', '6.3350', '6.3350', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30712, '2021-11-04', 7518, 29490, 2354, NULL, '1.0000', '-67.2578', '-67.2578', '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 (30713, '2021-11-04', 9412, 29491, 2354, NULL, '1.0000', '25.0000', '25.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 (30714, '2021-11-04', 7954, 29492, 2354, NULL, '1.0000', '21.0000', '21.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 (30715, '2021-11-04', 7385, 29493, 2354, 38611, '4.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30716, '2021-11-04', 2877, 29494, 2354, 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 (30717, '2021-11-04', 8835, 29495, 2354, NULL, '1.0000', '5.0830', '5.0830', '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 (30718, '2021-11-04', 9580, 29496, 2354, 39269, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30719, '2021-11-04', 7748, 29497, 2354, NULL, '1.0000', '33.9800', '33.9800', '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 (30720, '2021-11-04', 8634, 29498, 2354, NULL, '1.0000', '14.0000', '14.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 (30721, '2021-11-04', 7675, 29499, 2354, NULL, '2.0000', '11.4300', '11.4300', '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 (30722, '2021-11-04', 2258, 29500, 2354, NULL, '1.0000', '0.3500', '0.3500', '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 (30723, '2021-11-04', 2656, 29501, 2354, 31906, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30724, '2021-11-04', 2287, 29502, 2354, NULL, '4.0000', '2.3000', '2.3000', '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 (30725, '2021-11-04', 7686, 29503, 2354, NULL, '1.0000', '19.3000', '19.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 (30726, '2021-11-04', 9274, 29504, 2354, NULL, '1.0000', '3.1000', '3.1000', '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 (30727, '2021-11-04', 7748, 29505, 2354, NULL, '1.0000', '33.9800', '33.9800', '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 (30728, '2021-11-04', 8717, 29506, 2354, NULL, '1.0000', '4.7000', '4.7000', '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 (30729, '2021-11-04', 8702, 29507, 2354, NULL, '1.0000', '3.6700', '3.6700', '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 (30730, '2021-11-04', 7753, 29508, 2354, NULL, '1.0000', '3.9360', '3.9360', '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 (30731, '2021-11-04', 9092, 29509, 2354, 39260, '3.0000', '0.3844', '0.3844', '0.5000', '0.5000', '272.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30732, '2021-11-04', 2673, 29510, 2354, 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 (30733, '2021-11-04', 9579, 29511, 2354, 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 (30734, '2021-11-04', 7335, 29512, 2354, NULL, '1.0000', '10.4000', '10.4000', '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 (30735, '2021-11-04', 8657, 29513, 2354, 38424, '1.0000', '6.3869', '6.3869', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30736, '2021-11-04', 7518, 29514, 2354, NULL, '1.0000', '-67.2578', '-67.2578', '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 (30737, '2021-11-04', 8166, 29515, 2354, NULL, '1.0000', '4.6000', '4.6000', '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 (30738, '2021-11-04', 7954, 29516, 2354, NULL, '4.0000', '21.0000', '21.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 (30739, '2021-11-04', 8263, 29517, 2354, NULL, '1.0000', '5.0000', '5.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 (30740, '2021-11-04', 2972, 29518, 2354, 37370, '1.0000', '22.7100', '22.7100', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30741, '2021-11-04', 7641, 29519, 2354, NULL, '1.0000', '6.5056', '6.5056', '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 (30742, '2021-11-04', 7518, 29520, 2354, NULL, '1.0000', '-67.2578', '-67.2578', '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 (30743, '2021-11-04', 7832, 29521, 2354, 36086, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30744, '2021-11-04', 9272, 29522, 2354, NULL, '1.0000', '3.1000', '3.1000', '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 (30745, '2021-11-04', 7933, 29523, 2354, NULL, '1.0000', '5.5000', '5.5000', '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 (30746, '2021-11-04', 7671, 29524, 2354, NULL, '1.0000', '15.5000', '15.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 (30747, '2021-11-04', 9563, 29525, 2354, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30748, '2021-11-04', 1863, 29526, 2355, NULL, '1.0000', '1.2830', '1.2830', '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 (30749, '2021-11-04', 2573, 29527, 2355, 38559, '1.0000', '8.7800', '8.7800', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30750, '2021-11-04', 1519, 29528, 2355, 33141, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30751, '2021-11-04', 2293, 29529, 2355, NULL, '1.0000', '1.4400', '1.4400', '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 (30752, '2021-11-04', 7579, 29530, 2355, NULL, '1.0000', '15.0000', '15.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 (30753, '2021-11-04', 7987, 29531, 2355, NULL, '1.0000', '37.9400', '37.9400', '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 (30754, '2021-11-04', 2238, 29532, 2355, 39879, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '6.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30755, '2021-11-04', 1519, 29533, 2355, 33141, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30756, '2021-11-04', 1912, 29534, 2355, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30757, '2021-11-04', 2411, 29535, 2355, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30758, '2021-11-04', 8074, 29536, 2355, NULL, '1.0000', '3.2800', '3.2800', '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 (30759, '2021-11-04', 2295, 29537, 2355, NULL, '6.0000', '0.7000', '0.7000', '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 (30760, '2021-11-04', 2242, 29538, 2355, 37444, '6.0000', '0.5518', '0.5518', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30761, '2021-11-04', 8086, 29539, 2355, NULL, '1.0000', '9.3000', '9.3000', '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 (30762, '2021-11-04', 1863, 29540, 2355, NULL, '1.0000', '1.2830', '1.2830', '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 (30763, '2021-11-04', 2821, 29541, 2355, 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 (30764, '2021-11-04', 9461, 29542, 2355, NULL, '1.0000', '1.6000', '1.6000', '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 (30765, '2021-11-04', 1783, 29543, 2355, 13726, '3.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 (30766, '2021-11-04', 1499, 29544, 2355, 38940, '2.0000', '0.4684', '0.4684', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30767, '2021-11-04', 1837, 29545, 2355, 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 (30768, '2021-11-04', 1651, 29546, 2355, NULL, '1.0000', '10.3802', '10.3802', '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 (30769, '2021-11-04', 1812, 29547, 2355, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30770, '2021-11-04', 2408, 29548, 2355, 39899, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30771, '2021-11-04', 1805, 29549, 2355, NULL, '1.0000', '4.5244', '4.5244', '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 (30772, '2021-11-04', 1577, 29550, 2355, 39771, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30773, '2021-11-04', 1863, 29551, 2355, NULL, '1.0000', '1.2830', '1.2830', '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 (30774, '2021-11-04', 2302, 29552, 2355, 39904, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30775, '2021-11-04', 2088, 29553, 2355, 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 (30776, '2021-11-04', 2167, 29554, 2355, 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 (30777, '2021-11-04', 8454, 29555, 2355, NULL, '1.0000', '5.1700', '5.1700', '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 (30778, '2021-11-04', 1868, 29556, 2355, 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 (30779, '2021-11-04', 1953, 29557, 2355, 34626, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30780, '2021-11-04', 8740, 29558, 2355, NULL, '1.0000', '3.0000', '3.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 (30781, '2021-11-04', 8746, 29559, 2355, 38983, '1.0000', '77.8299', '77.8299', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30782, '2021-11-04', 8982, 29560, 2356, 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 (30783, '2021-11-04', 1557, 29561, 2356, NULL, '1.0000', '7.8420', '7.8420', '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 (30784, '2021-11-04', 2236, 29562, 2357, 31081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30785, '2021-11-04', 2612, 29563, 2357, 39897, '1.0000', '7.1600', '7.1600', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30786, '2021-11-04', 2821, 29564, 2357, 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 (30787, '2021-11-04', 1433, 29565, 2357, 24978, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (30788, '2021-11-04', 8438, 29566, 2358, 37721, '1.0000', '11.5000', '11.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30789, '2021-11-04', 7411, 29567, 2359, NULL, '1.0000', '1.3500', '1.3500', '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 (30790, '2021-11-04', 9414, 29568, 2359, NULL, '1.0000', '5.0000', '5.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 (30791, '2021-11-04', 7782, 29569, 2359, NULL, '2.0000', '5.0000', '5.0000', '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 (30792, '2021-11-04', 7658, 29570, 2359, NULL, '5.0000', '63.4193', '63.4193', '2.5000', '2.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 (30793, '2021-11-04', 1854, 29571, 2359, 39606, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30794, '2021-11-04', 7674, 29572, 2359, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '155.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30795, '2021-11-04', 2315, 29573, 2359, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '96.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30796, '2021-11-04', 8735, 29574, 2359, NULL, '1.0000', '5.6000', '5.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 (30797, '2021-11-04', 1577, 29575, 2359, 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 (30798, '2021-11-04', 7753, 29576, 2359, NULL, '1.0000', '3.9360', '3.9360', '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 (30799, '2021-11-04', 9272, 29577, 2359, NULL, '1.0000', '3.1000', '3.1000', '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 (30800, '2021-11-04', 2699, 29578, 2359, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30801, '2021-11-04', 7750, 29579, 2359, NULL, '1.0000', '34.9000', '34.9000', '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 (30802, '2021-11-04', 7608, 29580, 2359, NULL, '1.0000', '6.9800', '6.9800', '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 (30803, '2021-11-04', 8359, 29581, 2359, NULL, '1.0000', '20.4289', '20.4289', '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 (30804, '2021-11-04', 1947, 29582, 2359, NULL, '1.0000', '6615.3206', '6615.3206', '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 (30805, '2021-11-04', 7787, 29583, 2359, NULL, '1.0000', '3.9600', '3.9600', '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 (30806, '2021-11-04', 7411, 29584, 2359, NULL, '3.0000', '1.3500', '1.3500', '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 (30807, '2021-11-04', 7671, 29585, 2359, NULL, '2.0000', '15.5000', '15.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 (30808, '2021-11-04', 7385, 29586, 2359, 38611, '4.0000', '-325.1557', '-325.1557', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30809, '2021-11-04', 7385, 29586, 2359, NULL, '6.0000', '-325.1557', '-325.1557', '3.0000', '3.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 (30810, '2021-11-04', 2104, 29587, 2359, NULL, '2.0000', '0.2000', '0.2000', '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 (30811, '2021-11-04', 7674, 29588, 2359, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '155.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30812, '2021-11-04', 2925, 29589, 2359, NULL, '1.0000', '5.0000', '5.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 (30813, '2021-11-04', 7704, 29590, 2359, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30814, '2021-11-04', 9456, 29591, 2359, 33755, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30815, '2021-11-04', 1430, 29592, 2360, 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 (30816, '2021-11-04', 1748, 29593, 2360, NULL, '2.0000', '0.3200', '0.3200', '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 (30817, '2021-11-04', 1430, 29594, 2361, 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 (30818, '2021-11-04', 2103, 29595, 2361, 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 (30819, '2021-11-04', 2346, 29596, 2361, NULL, '1.0000', '5.8000', '5.8000', '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 (30820, '2021-11-04', 1346, 29597, 2361, 39869, '5.0000', '-6.6466', '-6.6466', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30821, '2021-11-04', 1760, 29598, 2361, NULL, '1.0000', '1.5900', '1.5900', '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 (30822, '2021-11-05', 2643, 29599, 2362, NULL, '4.0000', '0.8700', '0.8700', '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 (30823, '2021-11-05', 2710, 29600, 2362, NULL, '1.0000', '40.3000', '40.3000', '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 (30824, '2021-11-05', 1946, 29601, 2362, 740, '1.0000', '5.7750', '5.7750', '5.0000', '5.0000', '56.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 (30825, '2021-11-05', 2991, 29602, 2362, NULL, '1.0000', '0.5700', '0.5700', '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 (30826, '2021-11-05', 9577, 29603, 2362, NULL, '2.0000', '0.3200', '0.3200', '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 (30827, '2021-11-05', 1736, 29604, 2362, 1080, '2.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '3.0000', 1, 0, NULL, 17);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30828, '2021-11-05', 2967, 29605, 2362, 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 (30829, '2021-11-05', 1871, 29606, 2362, 469, '10.0000', '24.5246', '24.5246', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30830, '2021-11-05', 2109, 29607, 2362, 1053, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '127.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 (30831, '2021-11-05', 2288, 29608, 2362, 2948, '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 (30832, '2021-11-05', 1831, 29609, 2362, NULL, '1.0000', '8.4400', '8.4400', '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 (30833, '2021-11-05', 2109, 29610, 2362, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '130.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 (30834, '2021-11-05', 2516, 29611, 2362, 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 (30835, '2021-11-05', 2662, 29612, 2362, 12036, '-7.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 (30836, '2021-11-05', 2662, 29612, 2362, NULL, '8.0000', '4.5000', '4.5000', '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 (30837, '2021-11-05', 1609, 29613, 2362, 8729, '-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 (30838, '2021-11-05', 1609, 29613, 2362, NULL, '2.0000', '12.0000', '12.0000', '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 (30839, '2021-11-05', 1561, 29614, 2362, 1636, '1.0000', '27.0000', '27.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 (30840, '2021-11-05', 1867, 29615, 2362, NULL, '1.0000', '1.0500', '1.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 (30841, '2021-11-05', 1309, 29616, 2362, 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 (30842, '2021-11-05', 2660, 29617, 2362, 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 (30843, '2021-11-05', 1666, 29618, 2362, 3236, '-5.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 (30844, '2021-11-05', 1666, 29618, 2362, NULL, '6.0000', '2.7100', '2.7100', '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 (30845, '2021-11-05', 1499, 29619, 2362, 20585, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '10.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 (30846, '2021-11-05', 9602, 29620, 2362, NULL, '1.0000', '1.0500', '1.0500', '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 (30847, '2021-11-05', 1573, 29621, 2362, 9746, '-1.0000', '29.9042', '29.9042', '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 (30848, '2021-11-05', 1573, 29621, 2362, NULL, '2.0000', '29.9042', '29.9042', '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 (30849, '2021-11-05', 1839, 29622, 2362, 8734, '-10.0000', '6.1500', '6.1500', '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 (30850, '2021-11-05', 1839, 29622, 2362, NULL, '11.0000', '6.1500', '6.1500', '8.5000', '8.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 (30851, '2021-11-05', 1671, 29623, 2362, 7457, '-8.0000', '4.2000', '4.2000', '6.4000', '6.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 (30852, '2021-11-05', 1671, 29623, 2362, NULL, '18.0000', '4.2000', '4.2000', '6.4000', '6.4000', '-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 (30853, '2021-11-05', 2973, 29624, 2362, 22174, '-1.0000', '4.3000', '4.3000', '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 (30854, '2021-11-05', 2973, 29624, 2362, NULL, '11.0000', '4.3000', '4.3000', '3.0000', '3.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 (30855, '2021-11-05', 1651, 29625, 2362, 3222, '-27.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 (30856, '2021-11-05', 1651, 29625, 2362, NULL, '28.0000', '6.7039', '6.7039', '10.0000', '10.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 (30857, '2021-11-05', 1746, 29626, 2362, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '23.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 (30858, '2021-11-05', 8744, 29627, 2362, NULL, '1.0000', '3.6600', '3.6600', '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 (30859, '2021-11-05', 1641, 29628, 2362, 3214, '-70.0000', '0.9800', '0.9800', '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 (30860, '2021-11-05', 1641, 29628, 2362, NULL, '82.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30861, '2021-11-05', 1651, 29629, 2362, 3222, '-27.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 (30862, '2021-11-05', 1651, 29629, 2362, NULL, '28.0000', '6.7039', '6.7039', '10.0000', '10.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 (30863, '2021-11-05', 1689, 29630, 2362, 549, '1.0000', '60.7198', '60.7198', '18.0000', '18.0000', '0.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 (30864, '2021-11-05', 2109, 29631, 2362, 1053, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '128.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 (30865, '2021-11-05', 1855, 29632, 2362, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (30866, '2021-11-05', 1506, 29633, 2362, 18908, '1.0000', '16.2500', '16.2500', '21.5000', '21.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 (30867, '2021-11-05', 2660, 29634, 2362, 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 (30868, '2021-11-05', 2302, 29635, 2362, 2963, '-14.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 (30869, '2021-11-05', 2302, 29635, 2362, NULL, '16.0000', '5.2000', '5.2000', '7.0000', '7.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 (30870, '2021-11-05', 1843, 29636, 2362, 16249, '-2.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 (30871, '2021-11-05', 1843, 29636, 2362, NULL, '16.0000', '4.3000', '4.3000', '6.0000', '6.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 (30872, '2021-11-05', 1602, 29637, 2362, 5897, '-33.0000', '6.7859', '6.7859', '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 (30873, '2021-11-05', 1602, 29637, 2362, NULL, '34.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (30874, '2021-11-05', 1945, 29638, 2362, 5559, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '0.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 (30875, '2021-11-05', 2167, 29639, 2362, 17165, '-10.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 (30876, '2021-11-05', 2167, 29639, 2362, NULL, '11.0000', '2.2000', '2.2000', '3.0000', '3.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 (30877, '2021-11-05', 9089, 29640, 2362, NULL, '1.0000', '3.8000', '3.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 (30878, '2021-11-05', 1667, 29641, 2362, 9745, '-19.0000', '5.9400', '5.9400', '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 (30879, '2021-11-05', 1667, 29641, 2362, NULL, '20.0000', '5.9400', '5.9400', '8.5000', '8.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 (30880, '2021-11-05', 2286, 29642, 2362, 2946, '-23.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 (30881, '2021-11-05', 2286, 29642, 2362, NULL, '24.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-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 (30882, '2021-11-05', 2154, 29643, 2362, 1369, '3.0000', '10.6849', '10.6849', '16.0000', '16.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 (30883, '2021-11-05', 1831, 29644, 2362, NULL, '3.0000', '8.4400', '8.4400', '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 (30884, '2021-11-05', 8767, 29645, 2362, NULL, '1.0000', '6.6900', '6.6900', '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 (30885, '2021-11-05', 1667, 29646, 2362, 9745, '-19.0000', '5.9400', '5.9400', '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 (30886, '2021-11-05', 1667, 29646, 2362, NULL, '21.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30887, '2021-11-05', 2324, 29647, 2362, 3573, '-3.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30888, '2021-11-05', 2324, 29647, 2362, NULL, '4.0000', '10.5000', '10.5000', '14.0000', '14.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 (30889, '2021-11-05', 2291, 29648, 2363, NULL, '1.0000', '19.0000', '19.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 (30890, '2021-11-05', 1890, 29649, 2363, NULL, '6.0000', '90.0000', '90.0000', '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 (30891, '2021-11-05', 1904, 29650, 2363, 5442, '-9.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 (30892, '2021-11-05', 1904, 29650, 2363, NULL, '10.0000', '0.3200', '0.3200', '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 (30893, '2021-11-05', 2280, 29651, 2364, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '39.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30894, '2021-11-05', 2237, 29652, 2364, 2781, '-14.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 (30895, '2021-11-05', 2237, 29652, 2364, NULL, '15.0000', '1.0600', '1.0600', '2.0000', '2.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 (30896, '2021-11-05', 1310, 29653, 2364, NULL, '2.0000', '0.3700', '0.3700', '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 (30897, '2021-11-05', 9577, 29654, 2364, NULL, '2.0000', '0.3200', '0.3200', '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 (30898, '2021-11-05', 1912, 29655, 2364, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '12.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 (30899, '2021-11-05', 2858, 29656, 2364, 17772, '-5.0000', '1.0000', '1.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 (30900, '2021-11-05', 2858, 29656, 2364, NULL, '6.0000', '1.0000', '1.0000', '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 (30901, '2021-11-05', 2379, 29657, 2364, 4032, '-22.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 (30902, '2021-11-05', 2379, 29657, 2364, NULL, '23.0000', '1.5900', '1.5900', '2.5000', '2.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 (30903, '2021-11-05', 2289, 29658, 2364, 2949, '-22.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 (30904, '2021-11-05', 2289, 29658, 2364, 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 (30905, '2021-11-05', 1840, 29659, 2364, NULL, '6.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-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 (30906, '2021-11-05', 1841, 29660, 2364, 18870, '6.0000', '142.5780', '142.5780', '0.5000', '0.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 (30907, '2021-11-05', 2511, 29661, 2364, 9740, '-6.0000', '8.5000', '8.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 (30908, '2021-11-05', 2511, 29661, 2364, NULL, '7.0000', '8.5000', '8.5000', '12.0000', '12.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 (30909, '2021-11-05', 1904, 29662, 2364, 5442, '-10.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 (30910, '2021-11-05', 1904, 29662, 2364, NULL, '12.0000', '0.3200', '0.3200', '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 (30911, '2021-11-05', 1533, 29663, 2365, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30912, '2021-11-05', 2242, 29664, 2365, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30913, '2021-11-05', 1665, 29665, 2365, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30914, '2021-11-05', 7514, 29666, 2365, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30915, '2021-11-05', 2256, 29667, 2365, 23142, '1.0000', '13.0440', '13.0440', '18.0000', '18.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 (30916, '2021-11-05', 2715, 29668, 2365, NULL, '1.0000', '9.2600', '9.2600', '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 (30917, '2021-11-05', 1310, 29669, 2365, 34631, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30918, '2021-11-05', 1310, 29669, 2365, NULL, '1.0000', '0.3700', '0.3700', '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 (30919, '2021-11-05', 2289, 29670, 2365, 38551, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30920, '2021-11-05', 7883, 29671, 2365, 39836, '1.0000', '34.0000', '34.0000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30921, '2021-11-05', 1839, 29672, 2365, NULL, '1.0000', '6.0835', '6.0835', '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 (30922, '2021-11-05', 2315, 29673, 2365, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '74.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30923, '2021-11-05', 1863, 29674, 2365, NULL, '1.0000', '1.2830', '1.2830', '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 (30924, '2021-11-05', 1837, 29675, 2365, 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 (30925, '2021-11-05', 8984, 29676, 2365, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30926, '2021-11-05', 1863, 29677, 2365, NULL, '1.0000', '1.2830', '1.2830', '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 (30927, '2021-11-05', 1533, 29678, 2365, 37755, '1.0000', '2.1288', '2.1288', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30928, '2021-11-05', 1839, 29679, 2365, NULL, '1.0000', '6.0835', '6.0835', '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 (30929, '2021-11-05', 1942, 29680, 2365, NULL, '1.0000', '19.0000', '19.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 (30930, '2021-11-05', 8984, 29681, 2365, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30931, '2021-11-05', 2315, 29682, 2365, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '76.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30932, '2021-11-05', 7514, 29683, 2365, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30933, '2021-11-05', 2247, 29684, 2365, 33149, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30934, '2021-11-05', 2269, 29685, 2366, 2929, '-2.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 (30935, '2021-11-05', 2269, 29685, 2366, NULL, '3.0000', '4.9800', '4.9800', '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 (30936, '2021-11-05', 2109, 29686, 2366, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '122.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 (30937, '2021-11-05', 1912, 29687, 2366, 20584, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '10.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 (30938, '2021-11-05', 1910, 29688, 2366, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '42.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 (30939, '2021-11-05', 2315, 29689, 2367, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '94.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30940, '2021-11-05', 9150, 29690, 2367, 39582, '1.0000', '18.9951', '18.9951', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30941, '2021-11-05', 9252, 29691, 2367, 38436, '2.0000', '1.9700', '1.9700', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30942, '2021-11-05', 8032, 29692, 2367, NULL, '1.0000', '12.0000', '12.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 (30943, '2021-11-05', 7704, 29693, 2367, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30944, '2021-11-05', 7518, 29694, 2367, NULL, '1.0000', '-67.2578', '-67.2578', '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 (30945, '2021-11-05', 7641, 29695, 2367, NULL, '1.0000', '6.5056', '6.5056', '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 (30946, '2021-11-05', 8000, 29696, 2367, NULL, '1.0000', '74.7436', '74.7436', '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 (30947, '2021-11-05', 8193, 29697, 2367, NULL, '1.0000', '25.8000', '25.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 (30948, '2021-11-05', 1914, 29698, 2367, NULL, '1.0000', '4.9000', '4.9000', '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 (30949, '2021-11-05', 7651, 29699, 2367, NULL, '1.0000', '5.0000', '5.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 (30950, '2021-11-05', 8166, 29700, 2367, NULL, '2.0000', '4.6000', '4.6000', '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 (30951, '2021-11-05', 8196, 29701, 2367, NULL, '2.0000', '53.3100', '53.3100', '42.0000', '42.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 (30952, '2021-11-05', 7436, 29702, 2367, NULL, '3.0000', '28.5500', '28.5500', '3.2000', '3.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 (30953, '2021-11-05', 1837, 29703, 2367, 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 (30954, '2021-11-05', 8067, 29704, 2367, NULL, '1.0000', '29.1700', '29.1700', '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 (30955, '2021-11-05', 7663, 29705, 2367, NULL, '1.0000', '5.7000', '5.7000', '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 (30956, '2021-11-05', 7674, 29706, 2367, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '153.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30957, '2021-11-05', 7385, 29707, 2367, NULL, '3.0000', '-325.1557', '-325.1557', '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 (30958, '2021-11-05', 7886, 29708, 2367, NULL, '1.0000', '2.8333', '2.8333', '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 (30959, '2021-11-05', 7442, 29709, 2367, 30054, '1.0000', '2.9500', '2.9500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30960, '2021-11-05', 8395, 29710, 2367, NULL, '1.0000', '0.9700', '0.9700', '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 (30961, '2021-11-05', 8927, 29711, 2367, NULL, '10.0000', '36.0000', '36.0000', '3.5000', '3.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 (30962, '2021-11-05', 8456, 29712, 2367, NULL, '1.0000', '5.5400', '5.5400', '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 (30963, '2021-11-05', 2655, 29713, 2367, 39406, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30964, '2021-11-05', 9399, 29714, 2367, NULL, '4.0000', '0.4200', '0.4200', '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 (30965, '2021-11-05', 7518, 29715, 2367, NULL, '2.0000', '-67.2578', '-67.2578', '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 (30966, '2021-11-05', 8719, 29716, 2367, NULL, '1.0000', '21.7000', '21.7000', '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 (30967, '2021-11-05', 7411, 29717, 2367, NULL, '1.0000', '1.3500', '1.3500', '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 (30968, '2021-11-05', 7671, 29718, 2367, NULL, '2.0000', '15.5000', '15.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 (30969, '2021-11-05', 7469, 29719, 2367, NULL, '1.0000', '10.8000', '10.8000', '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 (30970, '2021-11-05', 7514, 29720, 2367, NULL, '3.0000', '12.9983', '12.9983', '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 (30971, '2021-11-05', 9401, 29721, 2367, 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 (30972, '2021-11-05', 1501, 29722, 2367, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30973, '2021-11-05', 9554, 29723, 2367, 39241, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30974, '2021-11-05', 7689, 29724, 2367, NULL, '1.0000', '12.0700', '12.0700', '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 (30975, '2021-11-05', 7707, 29725, 2367, NULL, '1.0000', '6.0124', '6.0124', '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 (30976, '2021-11-05', 2100, 29726, 2367, 36660, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30977, '2021-11-05', 8699, 29727, 2367, NULL, '2.0000', '6.3800', '6.3800', '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 (30978, '2021-11-05', 8810, 29728, 2367, NULL, '1.0000', '1.9200', '1.9200', '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 (30979, '2021-11-05', 7433, 29729, 2367, NULL, '6.0000', '6.2000', '6.2000', '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 (30980, '2021-11-05', 7353, 29730, 2367, 30931, '2.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '4.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30981, '2021-11-05', 9092, 29731, 2367, 39260, '3.0000', '0.3844', '0.3844', '0.5000', '0.5000', '269.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30982, '2021-11-05', 2656, 29732, 2367, 31906, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30983, '2021-11-05', 9308, 29733, 2367, NULL, '1.0000', '9.0000', '9.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 (30984, '2021-11-05', 7506, 29734, 2367, NULL, '1.0000', '15.0000', '15.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 (30985, '2021-11-05', 7959, 29735, 2367, NULL, '2.0000', '9.6000', '9.6000', '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 (30986, '2021-11-05', 7704, 29736, 2367, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30987, '2021-11-05', 7819, 29737, 2367, NULL, '1.0000', '9.5000', '9.5000', '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 (30988, '2021-11-05', 3085, 29738, 2367, 39555, '1.0000', '57.0000', '57.0000', '75.0000', '75.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30989, '2021-11-05', 7922, 29739, 2367, NULL, '1.0000', '6.9800', '6.9800', '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 (30990, '2021-11-05', 8359, 29740, 2367, NULL, '1.0000', '20.4289', '20.4289', '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 (30991, '2021-11-05', 7354, 29741, 2367, NULL, '2.0000', '18.0000', '18.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 (30992, '2021-11-05', 7482, 29742, 2367, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30993, '2021-11-05', 8941, 29743, 2367, NULL, '1.0000', '12.0000', '12.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 (30994, '2021-11-05', 7507, 29744, 2367, NULL, '3.0000', '6.5000', '6.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 (30995, '2021-11-05', 8858, 29745, 2367, NULL, '2.0000', '8.5000', '8.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 (30996, '2021-11-05', 9243, 29746, 2367, NULL, '1.0000', '22.0056', '22.0056', '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 (30997, '2021-11-05', 9272, 29747, 2367, NULL, '1.0000', '3.1000', '3.1000', '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 (30998, '2021-11-05', 7342, 29748, 2367, 38439, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30999, '2021-11-05', 8135, 29749, 2367, NULL, '1.0000', '13.9000', '13.9000', '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 (31000, '2021-11-05', 1667, 29750, 2368, 9745, '-22.0000', '5.9400', '5.9400', '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 (31001, '2021-11-05', 1667, 29750, 2368, NULL, '23.0000', '5.9400', '5.9400', '8.5000', '8.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 (31002, '2021-11-05', 2136, 29751, 2368, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '97.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 (31003, '2021-11-05', 2823, 29752, 2368, 19684, '-4.0000', '11.2100', '11.2100', '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 (31004, '2021-11-05', 2823, 29752, 2368, NULL, '6.0000', '11.2100', '11.2100', '7.5000', '7.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 (31005, '2021-11-05', 2307, 29753, 2368, 2960, '1.0000', '118.9901', '118.9901', '190.0000', '190.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31006, '2021-11-05', 9461, 29754, 2368, NULL, '1.0000', '1.6000', '1.6000', '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 (31007, '2021-11-05', 2109, 29755, 2368, 1053, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '119.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 (31008, '2021-11-05', 2939, 29756, 2368, NULL, '1.0000', '7.1100', '7.1100', '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 (31009, '2021-11-05', 2509, 29757, 2368, NULL, '1.0000', '24.5800', '24.5800', '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 (31010, '2021-11-05', 3017, 29758, 2368, NULL, '1.0000', '3.9000', '3.9000', '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 (31011, '2021-11-05', 1839, 29759, 2368, 8734, '-11.0000', '6.1500', '6.1500', '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 (31012, '2021-11-05', 1839, 29759, 2368, NULL, '12.0000', '6.1500', '6.1500', '8.5000', '8.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 (31013, '2021-11-05', 2302, 29760, 2368, 2963, '-16.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 (31014, '2021-11-05', 2302, 29760, 2368, NULL, '19.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (31015, '2021-11-05', 1855, 29761, 2368, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (31016, '2021-11-05', 2327, 29762, 2368, 5083, '-20.0000', '4.5000', '4.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 (31017, '2021-11-05', 2327, 29762, 2368, NULL, '21.0000', '4.5000', '4.5000', '5.0000', '5.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31018, '2021-11-05', 2379, 29763, 2368, 4032, '-23.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 (31019, '2021-11-05', 2379, 29763, 2368, NULL, '24.0000', '1.5900', '1.5900', '2.5000', '2.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 (31020, '2021-11-05', 2660, 29764, 2368, 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 (31021, '2021-11-05', 1690, 29765, 2368, 33808, '1.0000', '7.1466', '7.1466', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31022, '2021-11-05', 1760, 29766, 2368, 22256, '1.0000', '111.8384', '111.8384', '1.0000', '1.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 (31023, '2021-11-05', 2020, 29767, 2368, 10164, '-2.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 (31024, '2021-11-05', 2020, 29767, 2368, NULL, '3.0000', '7.5000', '7.5000', '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 (31025, '2021-11-05', 2821, 29768, 2368, 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 (31026, '2021-11-05', 9461, 29769, 2368, NULL, '1.0000', '1.6000', '1.6000', '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 (31027, '2021-11-05', 1949, 29770, 2368, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '9.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 (31028, '2021-11-05', 2936, 29771, 2368, 19978, '-1.0000', '6.0400', '6.0400', '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 (31029, '2021-11-05', 2936, 29771, 2368, NULL, '2.0000', '6.0400', '6.0400', '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 (31030, '2021-11-05', 2135, 29772, 2368, 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 (31031, '2021-11-05', 8208, 29773, 2368, NULL, '2.0000', '33.0000', '33.0000', '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 (31032, '2021-11-05', 2411, 29774, 2368, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.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 (31033, '2021-11-05', 2020, 29775, 2368, 10164, '-2.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 (31034, '2021-11-05', 2020, 29775, 2368, NULL, '3.0000', '7.5000', '7.5000', '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 (31035, '2021-11-05', 1584, 29776, 2368, 7601, '-5.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 (31036, '2021-11-05', 1584, 29776, 2368, NULL, '6.0000', '90.0000', '90.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 (31037, '2021-11-05', 2145, 29777, 2368, 1360, '1.0000', '15.0000', '15.0000', '20.0000', '20.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 (31038, '2021-11-05', 1329, 29778, 2368, 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 (31039, '2021-11-05', 2635, 29779, 2368, 10297, '-6.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 (31040, '2021-11-05', 2635, 29779, 2368, NULL, '7.0000', '3.0000', '3.0000', '4.0000', '4.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 (31041, '2021-11-05', 9579, 29780, 2368, 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 (31042, '2021-11-05', 1935, 29781, 2368, 5586, '-25.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 (31043, '2021-11-05', 1935, 29781, 2368, NULL, '28.0000', '0.7200', '0.7200', '2.0000', '2.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 (31044, '2021-11-05', 1487, 29782, 2368, NULL, '1.0000', '4.8700', '4.8700', '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 (31045, '2021-11-05', 8518, 29783, 2368, NULL, '1.0000', '17.6400', '17.6400', '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 (31046, '2021-11-05', 1647, 29784, 2369, 3218, '-4.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 (31047, '2021-11-05', 1647, 29784, 2369, NULL, '5.0000', '4.7200', '4.7200', '7.5000', '7.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 (31048, '2021-11-05', 2965, 29785, 2369, NULL, '1.0000', '5.0000', '5.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 (31049, '2021-11-05', 1935, 29786, 2369, 5586, '-28.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 (31050, '2021-11-05', 1935, 29786, 2369, NULL, '29.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31051, '2021-11-05', 2366, 29787, 2369, 3833, '-17.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 (31052, '2021-11-05', 2366, 29787, 2369, NULL, '19.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-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 (31053, '2021-11-05', 7342, 29788, 2369, NULL, '1.0000', '15.6000', '15.6000', '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 (31054, '2021-11-05', 2289, 29789, 2369, 2949, '-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 (31055, '2021-11-05', 2289, 29789, 2369, NULL, '32.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31056, '2021-11-05', 1602, 29790, 2370, 5897, '-34.0000', '6.7859', '6.7859', '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 (31057, '2021-11-05', 1602, 29790, 2370, NULL, '35.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31058, '2021-11-05', 2057, 29791, 2371, NULL, '4.0000', '1.5000', '1.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 (31059, '2021-11-05', 7411, 29792, 2371, NULL, '1.0000', '1.3500', '1.3500', '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 (31060, '2021-11-05', 2315, 29793, 2371, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '92.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31061, '2021-11-05', 7925, 29794, 2371, NULL, '1.0000', '6.8000', '6.8000', '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 (31062, '2021-11-05', 8518, 29795, 2371, NULL, '1.0000', '17.6400', '17.6400', '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 (31063, '2021-11-05', 8434, 29796, 2371, NULL, '1.0000', '27.4000', '27.4000', '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 (31064, '2021-11-05', 9299, 29797, 2371, NULL, '1.0000', '9.5000', '9.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 (31065, '2021-11-05', 1806, 29798, 2371, 30179, '2.0000', '28.1300', '28.1300', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31066, '2021-11-05', 2287, 29799, 2371, NULL, '4.0000', '2.3000', '2.3000', '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 (31067, '2021-11-05', 7335, 29800, 2371, NULL, '1.0000', '10.4000', '10.4000', '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 (31068, '2021-11-05', 2656, 29801, 2371, 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 (31069, '2021-11-05', 7612, 29802, 2371, NULL, '1.0000', '1.1770', '1.1770', '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 (31070, '2021-11-05', 7429, 29803, 2371, 30045, '1.0000', '18.0000', '18.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31071, '2021-11-05', 8077, 29804, 2371, NULL, '1.0000', '11.5000', '11.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 (31072, '2021-11-05', 1541, 29805, 2371, NULL, '2.0000', '90.0000', '90.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 (31073, '2021-11-05', 7781, 29806, 2371, NULL, '3.0000', '4.2500', '4.2500', '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 (31074, '2021-11-05', 8608, 29807, 2371, NULL, '1.0000', '5.7400', '5.7400', '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 (31075, '2021-11-05', 8188, 29808, 2371, NULL, '2.0000', '6.7000', '6.7000', '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 (31076, '2021-11-05', 7803, 29809, 2371, NULL, '2.0000', '1.8200', '1.8200', '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 (31077, '2021-11-05', 7753, 29810, 2371, NULL, '1.0000', '3.9360', '3.9360', '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 (31078, '2021-11-05', 8566, 29811, 2371, NULL, '1.0000', '2.5000', '2.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 (31079, '2021-11-05', 2289, 29812, 2371, NULL, '4.0000', '0.2300', '0.2300', '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 (31080, '2021-11-05', 2135, 29813, 2372, 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 (31081, '2021-11-05', 7411, 29814, 2373, NULL, '1.0000', '1.3500', '1.3500', '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 (31082, '2021-11-05', 7533, 29815, 2373, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31083, '2021-11-05', 2293, 29816, 2373, NULL, '1.0000', '1.4400', '1.4400', '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 (31084, '2021-11-05', 8984, 29817, 2373, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31085, '2021-11-05', 1513, 29818, 2373, 23185, '1.0000', '11.9600', '11.9600', '16.0000', '16.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 (31086, '2021-11-05', 1435, 29819, 2373, NULL, '1.0000', '22.5000', '22.5000', '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 (31087, '2021-11-05', 2994, 29820, 2373, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31088, '2021-11-05', 1580, 29821, 2373, 19875, '2.0000', '0.9900', '0.9900', '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 (31089, '2021-11-05', 2302, 29822, 2373, 39904, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31090, '2021-11-05', 7558, 29823, 2373, 39820, '1.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31091, '2021-11-05', 7514, 29824, 2373, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31092, '2021-11-05', 7558, 29825, 2373, 39820, '3.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31093, '2021-11-05', 1912, 29826, 2373, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31094, '2021-11-05', 7411, 29827, 2373, NULL, '1.0000', '1.3500', '1.3500', '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 (31095, '2021-11-05', 9474, 29828, 2373, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31096, '2021-11-05', 8740, 29829, 2373, NULL, '1.0000', '3.0000', '3.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 (31097, '2021-11-05', 8000, 29830, 2373, NULL, '1.0000', '25.8200', '25.8200', '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 (31098, '2021-11-05', 2145, 29831, 2374, 1360, '1.0000', '15.0000', '15.0000', '20.0000', '20.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 (31099, '2021-11-05', 2656, 29832, 2374, 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 (31100, '2021-11-05', 1785, 29833, 2374, 4903, '-1.0000', '4.8380', '4.8380', '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 (31101, '2021-11-05', 1785, 29833, 2374, NULL, '2.0000', '4.8380', '4.8380', '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 (31102, '2021-11-05', 9274, 29834, 2375, NULL, '1.0000', '3.1000', '3.1000', '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 (31103, '2021-11-05', 7753, 29835, 2375, NULL, '1.0000', '3.9360', '3.9360', '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 (31104, '2021-11-05', 9021, 29836, 2375, NULL, '1.0000', '7.0000', '7.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 (31105, '2021-11-05', 9089, 29837, 2376, NULL, '1.0000', '3.8000', '3.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 (31106, '2021-11-05', 2643, 29838, 2377, 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 (31107, '2021-11-05', 2395, 29839, 2377, 4202, '-2.0000', '27.0000', '27.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 (31108, '2021-11-05', 2395, 29839, 2377, NULL, '3.0000', '27.0000', '27.0000', '35.0000', '35.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 (31109, '2021-11-05', 8774, 29840, 2378, NULL, '1.0000', '8.0000', '8.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 (31110, '2021-11-05', 8607, 29841, 2378, NULL, '1.0000', '12.0000', '12.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 (31111, '2021-11-05', 2237, 29842, 2378, 34951, '1.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31112, '2021-11-05', 2280, 29843, 2378, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (31113, '2021-11-05', 2821, 29844, 2378, 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 (31114, '2021-11-05', 2277, 29845, 2378, NULL, '2.0000', '0.8982', '0.8982', '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 (31115, '2021-11-05', 7411, 29846, 2378, NULL, '1.0000', '1.3500', '1.3500', '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 (31116, '2021-11-06', 2302, 29847, 2379, 39904, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31117, '2021-11-06', 2275, 29848, 2379, 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 (31118, '2021-11-06', 1863, 29849, 2379, NULL, '1.0000', '1.2830', '1.2830', '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 (31119, '2021-11-06', 2643, 29850, 2379, 37731, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31120, '2021-11-06', 7642, 29851, 2379, NULL, '1.0000', '2.6900', '2.6900', '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 (31121, '2021-11-06', 2275, 29852, 2379, 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 (31122, '2021-11-06', 9603, 29853, 2379, 38979, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31123, '2021-11-06', 8740, 29854, 2379, NULL, '1.0000', '3.0000', '3.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 (31124, '2021-11-06', 2730, 29855, 2379, 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 (31125, '2021-11-06', 2465, 29856, 2379, 34596, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31126, '2021-11-06', 2167, 29857, 2379, 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 (31127, '2021-11-06', 1571, 29858, 2379, 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 (31128, '2021-11-06', 7576, 29859, 2379, 37777, '1.0000', '6.9100', '6.9100', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31129, '2021-11-06', 1532, 29860, 2379, 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 (31130, '2021-11-06', 2242, 29861, 2379, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31131, '2021-11-06', 2821, 29862, 2379, 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 (31132, '2021-11-06', 1912, 29863, 2379, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31133, '2021-11-06', 2733, 29864, 2379, 19362, '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 (31134, '2021-11-06', 1805, 29865, 2379, NULL, '1.0000', '4.5244', '4.5244', '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 (31135, '2021-11-06', 1863, 29866, 2379, NULL, '2.0000', '1.2830', '1.2830', '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 (31136, '2021-11-06', 2289, 29867, 2379, 38551, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31137, '2021-11-06', 1841, 29868, 2379, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31138, '2021-11-06', 2920, 29869, 2379, 34939, '2.0000', '30.0307', '30.0307', '16.5000', '16.5000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31139, '2021-11-06', 1499, 29870, 2379, 38940, '1.0000', '0.4684', '0.4684', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31140, '2021-11-06', 7799, 29871, 2379, NULL, '1.0000', '2.0000', '2.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 (31141, '2021-11-06', 2916, 29872, 2380, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31142, '2021-11-06', 1529, 29873, 2380, NULL, '1.0000', '3.7110', '3.7110', '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 (31143, '2021-11-06', 1867, 29874, 2380, 37799, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31144, '2021-11-06', 8740, 29875, 2381, NULL, '1.0000', '3.0000', '3.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 (31145, '2021-11-06', 1529, 29876, 2381, NULL, '1.0000', '3.7110', '3.7110', '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 (31146, '2021-11-06', 1501, 29877, 2381, NULL, '1.0000', '2.2100', '2.2100', '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 (31147, '2021-11-06', 1841, 29878, 2381, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31148, '2021-11-06', 7507, 29879, 2382, NULL, '3.0000', '6.5000', '6.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 (31149, '2021-11-06', 1837, 29880, 2382, 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 (31150, '2021-11-06', 8097, 29881, 2382, NULL, '1.0000', '3.3994', '3.3994', '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 (31151, '2021-11-06', 8918, 29882, 2382, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31152, '2021-11-06', 2713, 29883, 2382, 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 (31153, '2021-11-06', 8735, 29884, 2382, NULL, '1.0000', '5.6000', '5.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 (31154, '2021-11-06', 7753, 29885, 2382, NULL, '1.0000', '3.9360', '3.9360', '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 (31155, '2021-11-06', 9275, 29886, 2382, NULL, '2.0000', '6.3000', '6.3000', '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 (31156, '2021-11-06', 2656, 29887, 2382, 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 (31157, '2021-11-06', 2656, 29888, 2382, NULL, '4.0000', '1.5000', '1.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 (31158, '2021-11-06', 9092, 29889, 2382, 39260, '1.0000', '0.3844', '0.3844', '0.5000', '0.5000', '268.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31159, '2021-11-06', 7514, 29890, 2382, NULL, '2.0000', '12.9983', '12.9983', '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 (31160, '2021-11-06', 9304, 29891, 2382, NULL, '1.0000', '12.0000', '12.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 (31161, '2021-11-06', 7787, 29892, 2382, NULL, '1.0000', '3.9600', '3.9600', '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 (31162, '2021-11-06', 7411, 29893, 2382, NULL, '2.0000', '1.3500', '1.3500', '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 (31163, '2021-11-06', 7412, 29894, 2382, NULL, '2.0000', '1.5200', '1.5200', '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 (31164, '2021-11-06', 7703, 29895, 2382, NULL, '1.0000', '22.9900', '22.9900', '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 (31165, '2021-11-06', 7411, 29896, 2382, NULL, '1.0000', '1.3500', '1.3500', '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 (31166, '2021-11-06', 2289, 29897, 2382, NULL, '4.0000', '0.2300', '0.2300', '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 (31167, '2021-11-06', 8166, 29898, 2382, NULL, '1.0000', '4.6000', '4.6000', '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 (31168, '2021-11-06', 7473, 29899, 2382, NULL, '3.0000', '15.4731', '15.4731', '0.6000', '0.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 (31169, '2021-11-06', 1542, 29900, 2382, 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 (31170, '2021-11-06', 2495, 29901, 2382, 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 (31171, '2021-11-06', 1867, 29902, 2382, 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 (31172, '2021-11-06', 7612, 29903, 2382, NULL, '1.0000', '1.1770', '1.1770', '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 (31173, '2021-11-06', 7872, 29904, 2382, 31012, '1.0000', '-1695.2798', '-1695.2798', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31174, '2021-11-06', 7707, 29905, 2382, NULL, '1.0000', '6.0124', '6.0124', '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 (31175, '2021-11-06', 1501, 29906, 2382, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31176, '2021-11-06', 1760, 29907, 2382, 37408, '2.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31177, '2021-11-06', 7848, 29908, 2382, NULL, '1.0000', '1.3500', '1.3500', '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 (31178, '2021-11-06', 7954, 29909, 2382, NULL, '4.0000', '21.0000', '21.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 (31179, '2021-11-06', 7674, 29910, 2382, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '152.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31180, '2021-11-06', 8937, 29911, 2382, NULL, '2.0000', '3.5000', '3.5000', '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 (31181, '2021-11-06', 8608, 29912, 2382, NULL, '2.0000', '5.7400', '5.7400', '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 (31182, '2021-11-06', 2252, 29913, 2383, 2789, '-9.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 (31183, '2021-11-06', 2252, 29913, 2383, NULL, '11.0000', '9.5000', '9.5000', '12.5000', '12.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 (31184, '2021-11-06', 8921, 29914, 2383, NULL, '1.0000', '7.0000', '7.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 (31185, '2021-11-06', 1533, 29915, 2383, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (31186, '2021-11-06', 1533, 29916, 2383, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (31187, '2021-11-06', 8177, 29917, 2383, 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 (31188, '2021-11-06', 2320, 29918, 2383, 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 (31189, '2021-11-06', 1602, 29919, 2383, 5897, '-35.0000', '6.7859', '6.7859', '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 (31190, '2021-11-06', 1602, 29919, 2383, NULL, '36.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (31191, '2021-11-06', 1425, 29920, 2383, 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 (31192, '2021-11-06', 2821, 29921, 2383, 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 (31193, '2021-11-06', 2234, 29922, 2383, 2778, '1.0000', '16.9284', '16.9284', '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 (31194, '2021-11-06', 1839, 29923, 2383, 8734, '-12.0000', '6.1500', '6.1500', '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 (31195, '2021-11-06', 1839, 29923, 2383, NULL, '13.0000', '6.1500', '6.1500', '8.5000', '8.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 (31196, '2021-11-06', 2229, 29924, 2383, 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 (31197, '2021-11-06', 9521, 29925, 2383, 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 (31198, '2021-11-06', 1904, 29926, 2383, 5442, '-12.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 (31199, '2021-11-06', 1904, 29926, 2383, NULL, '13.0000', '0.3200', '0.3200', '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 (31200, '2021-11-06', 1439, 29927, 2383, 4702, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '6.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 (31201, '2021-11-06', 2256, 29928, 2383, 2793, '-1.0000', '12.7400', '12.7400', '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 (31202, '2021-11-06', 2256, 29928, 2383, NULL, '2.0000', '12.7400', '12.7400', '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 (31203, '2021-11-06', 7379, 29929, 2383, NULL, '1.0000', '12.5100', '12.5100', '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 (31204, '2021-11-06', 2732, 29930, 2383, NULL, '1.0000', '29.8900', '29.8900', '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 (31205, '2021-11-06', 1439, 29931, 2383, 4702, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '6.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 (31206, '2021-11-06', 2823, 29932, 2383, 19684, '-6.0000', '11.2100', '11.2100', '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 (31207, '2021-11-06', 2823, 29932, 2383, NULL, '10.0000', '11.2100', '11.2100', '7.5000', '7.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 (31208, '2021-11-06', 2681, 29933, 2383, 12164, '-8.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 (31209, '2021-11-06', 2681, 29933, 2383, NULL, '9.0000', '12.5000', '12.5000', '16.5000', '16.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 (31210, '2021-11-06', 1342, 29934, 2383, NULL, '1.0000', '6.8074', '6.8074', '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 (31211, '2021-11-06', 1307, 29935, 2383, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '10.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 (31212, '2021-11-06', 1746, 29936, 2383, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '22.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 (31213, '2021-11-06', 2320, 29937, 2384, 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 (31214, '2021-11-06', 2355, 29938, 2385, 23693, '7.0000', '5.4200', '5.4200', '7.2000', '7.2000', '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 (31215, '2021-11-06', 8984, 29939, 2385, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31216, '2021-11-06', 7391, 29940, 2385, NULL, '1.0000', '15.6000', '15.6000', '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 (31217, '2021-11-06', 1641, 29941, 2385, 38521, '8.0000', '1.9923', '1.9923', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31218, '2021-11-06', 2650, 29942, 2385, NULL, '1.0000', '7.9860', '7.9860', '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 (31219, '2021-11-06', 1845, 29943, 2385, 38939, '1.0000', '19.7000', '19.7000', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31220, '2021-11-06', 2362, 29944, 2385, 18935, '10.0000', '82.0200', '82.0200', '12.0000', '12.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 (31221, '2021-11-06', 2992, 29945, 2385, 23119, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (31222, '2021-11-06', 7579, 29946, 2385, NULL, '1.0000', '15.0000', '15.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 (31223, '2021-11-06', 1860, 29947, 2385, 19058, '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 (31224, '2021-11-06', 7645, 29948, 2385, NULL, '2.0000', '6.0000', '6.0000', '31.5000', '31.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 (31225, '2021-11-06', 1339, 29949, 2385, 37798, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31226, '2021-11-06', 1328, 29950, 2385, 32533, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31227, '2021-11-06', 1943, 29951, 2385, 34642, '1.0000', '5.7300', '5.7300', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31228, '2021-11-06', 9556, 29952, 2385, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31229, '2021-11-06', 2989, 29953, 2385, 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 (31230, '2021-11-06', 1519, 29954, 2385, 33141, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31231, '2021-11-06', 2821, 29955, 2385, 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 (31232, '2021-11-06', 1620, 29956, 2385, 38596, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31233, '2021-11-06', 1935, 29957, 2385, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31234, '2021-11-06', 8454, 29958, 2385, NULL, '1.0000', '5.1700', '5.1700', '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 (31235, '2021-11-06', 2169, 29959, 2385, NULL, '1.0000', '1.1500', '1.1500', '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 (31236, '2021-11-06', 8208, 29960, 2385, NULL, '4.0000', '33.0000', '33.0000', '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 (31237, '2021-11-06', 2353, 29961, 2385, 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 (31238, '2021-11-06', 2169, 29962, 2385, NULL, '1.0000', '1.1500', '1.1500', '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 (31239, '2021-11-06', 8000, 29963, 2385, NULL, '1.0000', '25.8200', '25.8200', '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 (31240, '2021-11-06', 7787, 29964, 2386, NULL, '1.0000', '3.9600', '3.9600', '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 (31241, '2021-11-06', 7411, 29965, 2386, NULL, '1.0000', '1.3500', '1.3500', '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 (31242, '2021-11-06', 7385, 29966, 2386, NULL, '1.0000', '-325.1557', '-325.1557', '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 (31243, '2021-11-06', 8085, 29967, 2386, NULL, '3.0000', '14.0000', '14.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 (31244, '2021-11-06', 7507, 29968, 2386, NULL, '3.0000', '6.5000', '6.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 (31245, '2021-11-06', 2315, 29969, 2386, 38451, '5.0000', '0.4740', '0.4740', '0.6000', '0.6000', '87.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31246, '2021-11-06', 7457, 29970, 2386, 37428, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31247, '2021-11-06', 9272, 29971, 2386, NULL, '1.0000', '3.1000', '3.1000', '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 (31248, '2021-11-06', 8097, 29972, 2386, NULL, '2.0000', '3.3994', '3.3994', '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 (31249, '2021-11-06', 7507, 29973, 2386, NULL, '3.0000', '6.5000', '6.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 (31250, '2021-11-06', 2004, 29974, 2386, 38465, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31251, '2021-11-06', 7473, 29975, 2386, NULL, '10.0000', '15.4731', '15.4731', '0.6000', '0.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 (31252, '2021-11-06', 7703, 29976, 2386, NULL, '2.0000', '22.9900', '22.9900', '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 (31253, '2021-11-06', 7531, 29977, 2386, NULL, '1.0000', '19.8275', '19.8275', '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 (31254, '2021-11-06', 7671, 29978, 2386, NULL, '1.0000', '15.5000', '15.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 (31255, '2021-11-06', 7588, 29979, 2386, NULL, '1.0000', '7.0762', '7.0762', '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 (31256, '2021-11-06', 8203, 29980, 2386, NULL, '4.0000', '1.0075', '1.0075', '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 (31257, '2021-11-06', 7753, 29981, 2386, NULL, '1.0000', '3.9360', '3.9360', '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 (31258, '2021-11-06', 7708, 29982, 2386, NULL, '1.0000', '6.1400', '6.1400', '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 (31259, '2021-11-06', 2289, 29983, 2386, NULL, '4.0000', '0.2300', '0.2300', '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 (31260, '2021-11-06', 7674, 29984, 2386, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '151.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31261, '2021-11-06', 9274, 29985, 2386, NULL, '1.0000', '3.1000', '3.1000', '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 (31262, '2021-11-06', 8664, 29986, 2386, NULL, '1.0000', '0.3500', '0.3500', '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 (31263, '2021-11-06', 1867, 29987, 2386, 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 (31264, '2021-11-06', 7652, 29988, 2386, NULL, '3.0000', '40.3000', '40.3000', '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 (31265, '2021-11-06', 2442, 29989, 2386, 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 (31266, '2021-11-06', 8188, 29990, 2386, NULL, '1.0000', '6.7000', '6.7000', '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 (31267, '2021-11-06', 1807, 29991, 2386, 33541, '4.0000', '-34.8462', '-34.8462', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31268, '2021-11-06', 8666, 29992, 2386, NULL, '1.0000', '0.4600', '0.4600', '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 (31269, '2021-11-06', 2506, 29993, 2386, 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 (31270, '2021-11-06', 2315, 29994, 2386, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '90.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31271, '2021-11-06', 7743, 29995, 2386, NULL, '1.0000', '7.3900', '7.3900', '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 (31272, '2021-11-06', 7333, 29996, 2386, NULL, '2.0000', '13.5000', '13.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 (31273, '2021-11-06', 7558, 29997, 2386, NULL, '10.0000', '2.2000', '2.2000', '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 (31274, '2021-11-06', 7400, 29998, 2386, NULL, '1.0000', '2.6200', '2.6200', '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 (31275, '2021-11-06', 7438, 29999, 2386, 30051, '1.0000', '28.6900', '28.6900', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31276, '2021-11-06', 7438, 29999, 2386, NULL, '1.0000', '28.6900', '28.6900', '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 (31277, '2021-11-06', 7671, 30000, 2386, NULL, '2.0000', '15.5000', '15.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 (31278, '2021-11-06', 7886, 30001, 2386, NULL, '1.0000', '2.8333', '2.8333', '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 (31279, '2021-11-06', 9089, 30002, 2386, 39284, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31280, '2021-11-06', 7672, 30003, 2386, NULL, '1.0000', '1.0200', '1.0200', '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 (31281, '2021-11-06', 7917, 30004, 2386, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31282, '2021-11-06', 7859, 30005, 2386, NULL, '1.0000', '3.6000', '3.6000', '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 (31283, '2021-11-06', 7507, 30006, 2386, NULL, '3.0000', '6.5000', '6.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 (31284, '2021-11-06', 7674, 30007, 2386, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '151.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31285, '2021-11-06', 7704, 30008, 2386, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31286, '2021-11-06', 9563, 30009, 2386, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31287, '2021-11-06', 9563, 30010, 2386, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31288, '2021-11-06', 2215, 30011, 2387, NULL, '3.0000', '12.0000', '12.0000', '18.0000', '18.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 (31289, '2021-11-06', 2285, 30012, 2387, 2945, '-14.0000', '35.8000', '35.8000', '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 (31290, '2021-11-06', 2285, 30012, 2387, NULL, '15.0000', '35.8000', '35.8000', '47.0000', '47.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 (31291, '2021-11-06', 1811, 30013, 2387, 6308, '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 (31292, '2021-11-06', 1969, 30014, 2387, NULL, '1.0000', '4.3300', '4.3300', '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 (31293, '2021-11-06', 2339, 30015, 2387, 3842, '-1.0000', '7.2300', '7.2300', '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 (31294, '2021-11-06', 2339, 30015, 2387, NULL, '2.0000', '7.2300', '7.2300', '14.5000', '14.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 (31295, '2021-11-06', 2037, 30016, 2387, 6389, '-6.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31296, '2021-11-06', 2037, 30016, 2387, NULL, '7.0000', '10.5000', '10.5000', '14.0000', '14.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 (31297, '2021-11-06', 9461, 30017, 2387, NULL, '1.0000', '1.6000', '1.6000', '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 (31298, '2021-11-06', 1338, 30018, 2387, 16502, '-6.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 (31299, '2021-11-06', 1338, 30018, 2387, NULL, '7.0000', '4.0000', '4.0000', '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 (31300, '2021-11-06', 1379, 30019, 2387, 279, '1.0000', '85.2466', '85.2466', '110.0000', '110.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 (31301, '2021-11-06', 1541, 30020, 2387, 18018, '-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 (31302, '2021-11-06', 1541, 30020, 2387, 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 (31303, '2021-11-06', 1386, 30021, 2387, 22316, '1.0000', '4.5000', '4.5000', '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 (31304, '2021-11-06', 1702, 30022, 2387, 4499, '-2.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 (31305, '2021-11-06', 1702, 30022, 2387, NULL, '3.0000', '14.9700', '14.9700', '20.0000', '20.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 (31306, '2021-11-06', 1651, 30023, 2387, 3222, '-29.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 (31307, '2021-11-06', 1651, 30023, 2387, NULL, '30.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (31308, '2021-11-06', 1910, 30024, 2387, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '41.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 (31309, '2021-11-06', 1504, 30025, 2387, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (31310, '2021-11-06', 7808, 30026, 2387, NULL, '1.0000', '13.9000', '13.9000', '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 (31311, '2021-11-06', 2016, 30027, 2387, 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 (31312, '2021-11-06', 1757, 30028, 2387, 3167, '-4.0000', '4.4000', '4.4000', '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 (31313, '2021-11-06', 1757, 30028, 2387, NULL, '5.0000', '4.4000', '4.4000', '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 (31314, '2021-11-06', 3017, 30029, 2387, NULL, '1.0000', '3.9000', '3.9000', '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 (31315, '2021-11-06', 2604, 30030, 2387, 14491, '-6.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31316, '2021-11-06', 2604, 30030, 2387, NULL, '7.0000', '90.0000', '90.0000', '110.0000', '110.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 (31317, '2021-11-06', 2614, 30031, 2387, NULL, '1.0000', '52.5100', '52.5100', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31318, '2021-11-06', 2251, 30032, 2387, 2788, '-3.0000', '10.9700', '10.9700', '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 (31319, '2021-11-06', 2251, 30032, 2387, NULL, '4.0000', '10.9700', '10.9700', '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 (31320, '2021-11-06', 2221, 30033, 2387, 4154, '-13.0000', '14.4737', '14.4737', '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 (31321, '2021-11-06', 2221, 30033, 2387, NULL, '14.0000', '14.4737', '14.4737', '25.0000', '25.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 (31322, '2021-11-06', 2280, 30034, 2387, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '38.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31323, '2021-11-06', 1855, 30035, 2387, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (31324, '2021-11-06', 9577, 30036, 2387, NULL, '4.0000', '0.3200', '0.3200', '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 (31325, '2021-11-06', 1760, 30037, 2387, 22256, '1.0000', '111.8384', '111.8384', '1.0000', '1.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 (31326, '2021-11-06', 1665, 30038, 2387, 3235, '-24.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 (31327, '2021-11-06', 1665, 30038, 2387, NULL, '25.0000', '1.3000', '1.3000', '2.0000', '2.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 (31328, '2021-11-06', 2643, 30039, 2387, 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 (31329, '2021-11-06', 2285, 30040, 2388, 2945, '-15.0000', '35.8000', '35.8000', '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 (31330, '2021-11-06', 2285, 30040, 2388, NULL, '16.0000', '35.8000', '35.8000', '47.0000', '47.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 (31331, '2021-11-06', 7514, 30041, 2389, NULL, '1.0000', '12.9983', '12.9983', '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 (31332, '2021-11-06', 7713, 30042, 2389, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31333, '2021-11-06', 8243, 30043, 2389, NULL, '2.0000', '1.1400', '1.1400', '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 (31334, '2021-11-06', 7588, 30044, 2389, NULL, '1.0000', '7.0762', '7.0762', '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 (31335, '2021-11-06', 7609, 30045, 2389, NULL, '1.0000', '4.3300', '4.3300', '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 (31336, '2021-11-06', 8135, 30046, 2389, NULL, '1.0000', '13.9000', '13.9000', '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 (31337, '2021-11-06', 7699, 30047, 2389, 31663, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31338, '2021-11-06', 8203, 30048, 2389, NULL, '2.0000', '1.0075', '1.0075', '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 (31339, '2021-11-06', 7947, 30049, 2389, NULL, '1.0000', '14.4400', '14.4400', '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 (31340, '2021-11-06', 8200, 30050, 2390, NULL, '1.0000', '8.5500', '8.5500', '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 (31341, '2021-11-06', 1854, 30051, 2390, 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 (31342, '2021-11-06', 2320, 30052, 2391, 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 (31343, '2021-11-06', 2506, 30053, 2391, 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 (31344, '2021-11-06', 7318, 30054, 2391, NULL, '1.0000', '13.4400', '13.4400', '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 (31345, '2021-11-06', 7411, 30055, 2391, NULL, '1.0000', '1.3500', '1.3500', '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 (31346, '2021-11-06', 8876, 30056, 2391, NULL, '1.0000', '0.9900', '0.9900', '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 (31347, '2021-11-06', 2315, 30057, 2391, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '71.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31348, '2021-11-06', 2916, 30058, 2391, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31349, '2021-11-06', 1871, 30059, 2391, 37801, '2.0000', '2.9308', '2.9308', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31350, '2021-11-06', 7953, 30060, 2391, NULL, '1.0000', '6.0000', '6.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 (31351, '2021-11-06', 1499, 30061, 2391, 38940, '3.0000', '0.4684', '0.4684', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31352, '2021-11-06', 2656, 30062, 2391, 37713, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31353, '2021-11-06', 1519, 30063, 2391, 33141, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31354, '2021-11-06', 8740, 30064, 2391, NULL, '1.0000', '3.0000', '3.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 (31355, '2021-11-06', 2656, 30065, 2391, 37713, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31356, '2021-11-06', 2655, 30066, 2391, 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 (31357, '2021-11-06', 2965, 30067, 2391, NULL, '1.0000', '5.0000', '5.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 (31358, '2021-11-06', 1950, 30068, 2391, NULL, '1.0000', '3.5525', '3.5525', '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 (31359, '2021-11-06', 7459, 30069, 2391, NULL, '10.0000', '-6.1729', '-6.1729', '3.5000', '3.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 (31360, '2021-11-06', 8476, 30070, 2391, NULL, '2.0000', '23.0000', '23.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 (31361, '2021-11-06', 1337, 30071, 2391, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31362, '2021-11-06', 1757, 30072, 2391, 37786, '1.0000', '4.0024', '4.0024', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31363, '2021-11-06', 2635, 30073, 2391, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31364, '2021-11-06', 8984, 30074, 2391, 37732, '1.0000', '58374.3700', '58374.3700', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31365, '2021-11-06', 9199, 30075, 2391, NULL, '1.0000', '5.4200', '5.4200', '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 (31366, '2021-11-06', 1665, 30076, 2391, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31367, '2021-11-06', 1673, 30077, 2391, 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 (31368, '2021-11-06', 7790, 30078, 2391, NULL, '6.0000', '17.0000', '17.0000', '3.0000', '3.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 (31369, '2021-11-06', 2057, 30079, 2391, 33373, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31370, '2021-11-06', 1574, 30080, 2391, 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 (31371, '2021-11-06', 2315, 30081, 2391, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '72.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31372, '2021-11-06', 8744, 30082, 2392, 38985, '1.0000', '2.6600', '2.6600', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31373, '2021-11-06', 2656, 30083, 2392, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31374, '2021-11-06', 1590, 30084, 2392, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (31375, '2021-11-06', 1580, 30085, 2392, 19875, '1.0000', '0.9900', '0.9900', '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 (31376, '2021-11-06', 9595, 30086, 2392, NULL, '1.0000', '1.7400', '1.7400', '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 (31377, '2021-11-06', 1863, 30087, 2393, 10808, '-73.0000', '0.4136', '0.4136', '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 (31378, '2021-11-06', 1863, 30087, 2393, NULL, '74.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31379, '2021-11-06', 2379, 30088, 2393, 4032, '-24.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 (31380, '2021-11-06', 2379, 30088, 2393, NULL, '25.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-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 (31381, '2021-11-06', 1504, 30089, 2393, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (31382, '2021-11-06', 2302, 30090, 2393, 2963, '-19.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 (31383, '2021-11-06', 2302, 30090, 2393, NULL, '20.0000', '5.2000', '5.2000', '7.0000', '7.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 (31384, '2021-11-06', 9561, 30091, 2393, 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 (31385, '2021-11-06', 2221, 30092, 2393, 4154, '-14.0000', '14.4737', '14.4737', '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 (31386, '2021-11-06', 2221, 30092, 2393, NULL, '15.0000', '14.4737', '14.4737', '25.0000', '25.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 (31387, '2021-11-06', 2829, 30093, 2393, 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 (31388, '2021-11-06', 2169, 30094, 2393, 1382, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '36.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 (31389, '2021-11-06', 1512, 30095, 2393, 378, '1.0000', '12.8276', '12.8276', '6.0000', '6.0000', '4.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 (31390, '2021-11-06', 2491, 30096, 2393, 6228, '-11.0000', '12.2000', '12.2000', '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 (31391, '2021-11-06', 2491, 30096, 2393, NULL, '12.0000', '12.2000', '12.2000', '17.0000', '17.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 (31392, '2021-11-06', 2972, 30097, 2393, NULL, '1.0000', '22.9800', '22.9800', '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 (31393, '2021-11-06', 1846, 30098, 2393, 12032, '-4.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 (31394, '2021-11-06', 1846, 30098, 2393, NULL, '5.0000', '12.0000', '12.0000', '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 (31395, '2021-11-07', 8298, 30099, 2394, NULL, '1.0000', '7.8400', '7.8400', '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 (31396, '2021-11-07', 9417, 30100, 2394, 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 (31397, '2021-11-07', 9214, 30101, 2394, NULL, '1.0000', '9.6000', '9.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 (31398, '2021-11-07', 9089, 30102, 2394, 35943, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31399, '2021-11-07', 8746, 30103, 2394, NULL, '1.0000', '3.8000', '3.8000', '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 (31400, '2021-11-07', 8744, 30104, 2394, 35938, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31401, '2021-11-07', 8774, 30105, 2394, NULL, '2.0000', '8.0000', '8.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 (31402, '2021-11-07', 1690, 30106, 2394, 34693, '1.0000', '6.2600', '6.2600', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31403, '2021-11-07', 2674, 30107, 2394, 37562, '1.0000', '3.0800', '3.0800', '4.5000', '4.5000', '49.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31404, '2021-11-07', 7787, 30108, 2394, NULL, '1.0000', '10.9000', '10.9000', '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 (31405, '2021-11-07', 2487, 30109, 2394, 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 (31406, '2021-11-07', 2602, 30110, 2394, 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 (31407, '2021-11-07', 2697, 30111, 2394, 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 (31408, '2021-11-07', 2479, 30112, 2394, 5192, '1.0000', '10.0000', '10.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 (31409, '2021-11-07', 2317, 30113, 2394, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '55.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31410, '2021-11-07', 2823, 30114, 2394, 34665, '2.0000', '5.7100', '5.7100', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31411, '2021-11-07', 1602, 30115, 2394, 36370, '1.0000', '6.8074', '6.8074', '10.0000', '10.0000', '40.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31412, '2021-11-07', 9498, 30116, 2394, 40081, '1.0000', '12.5000', '12.5000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31413, '2021-11-07', 2135, 30117, 2394, 35945, '1.0000', '2.4802', '2.4802', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31414, '2021-11-07', 2298, 30118, 2394, 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 (31415, '2021-11-07', 1425, 30119, 2394, 36343, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31416, '2021-11-07', 1863, 30120, 2394, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31417, '2021-11-07', 9452, 30121, 2394, 36329, '1.0000', '58.0000', '58.0000', '76.0000', '76.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31418, '2021-11-07', 7731, 30122, 2394, NULL, '1.0000', '0.0000', '0.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 (31419, '2021-11-07', 2640, 30123, 2394, 29800, '1.0000', '7.0400', '7.0400', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31420, '2021-11-07', 2379, 30124, 2394, 38078, '1.0000', '1.8662', '1.8662', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31421, '2021-11-07', 1837, 30125, 2394, 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 (31422, '2021-11-07', 1787, 30126, 2394, 36387, '1.0000', '0.8100', '0.8100', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31423, '2021-11-07', 2025, 30127, 2394, 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 (31424, '2021-11-07', 1322, 30128, 2394, 2491, '1.0000', '3.6000', '3.6000', '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 (31425, '2021-11-07', 7704, 30129, 2394, NULL, '1.0000', '0.4900', '0.4900', '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 (31426, '2021-11-07', 1340, 30130, 2394, 37577, '1.0000', '2.5835', '2.5835', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31427, '2021-11-07', 2079, 30131, 2395, 39400, '2.0000', '2.3000', '2.3000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31428, '2021-11-07', 1947, 30132, 2395, NULL, '1.0000', '6615.3206', '6615.3206', '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 (31429, '2021-11-07', 7509, 30133, 2395, 39623, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31430, '2021-11-07', 7753, 30134, 2395, NULL, '1.0000', '3.9360', '3.9360', '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 (31431, '2021-11-07', 8200, 30135, 2395, NULL, '1.0000', '10.1857', '10.1857', '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 (31432, '2021-11-07', 7672, 30136, 2395, NULL, '1.0000', '1.0200', '1.0200', '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 (31433, '2021-11-07', 7564, 30137, 2395, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31434, '2021-11-07', 7913, 30138, 2395, NULL, '2.0000', '2.5500', '2.5500', '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 (31435, '2021-11-07', 7704, 30139, 2395, 39631, '2.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31436, '2021-11-07', 8298, 30140, 2395, NULL, '1.0000', '7.8400', '7.8400', '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 (31437, '2021-11-07', 9272, 30141, 2395, NULL, '1.0000', '3.1000', '3.1000', '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 (31438, '2021-11-07', 8497, 30142, 2395, NULL, '1.0000', '337.1200', '337.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 (31439, '2021-11-07', 8548, 30143, 2395, NULL, '1.0000', '12.0000', '12.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 (31440, '2021-11-07', 8963, 30144, 2395, 39564, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31441, '2021-11-07', 7943, 30145, 2395, 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 (31442, '2021-11-07', 8735, 30146, 2395, NULL, '1.0000', '5.6000', '5.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 (31443, '2021-11-07', 9272, 30147, 2395, NULL, '1.0000', '3.1000', '3.1000', '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 (31444, '2021-11-07', 9092, 30148, 2395, 39260, '2.0000', '0.3844', '0.3844', '0.5000', '0.5000', '266.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31445, '2021-11-07', 7671, 30149, 2395, NULL, '1.0000', '15.5000', '15.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 (31446, '2021-11-07', 7519, 30150, 2395, NULL, '1.0000', '0.8800', '0.8800', '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 (31447, '2021-11-07', 8037, 30151, 2395, 36082, '1.0000', '45.3419', '45.3419', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31448, '2021-11-07', 7963, 30152, 2395, NULL, '1.0000', '4.2500', '4.2500', '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 (31449, '2021-11-07', 7671, 30153, 2395, NULL, '1.0000', '15.5000', '15.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 (31450, '2021-11-07', 8146, 30154, 2395, 37433, '1.0000', '17.2424', '17.2424', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31451, '2021-11-07', 9266, 30155, 2395, 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 (31452, '2021-11-07', 7518, 30156, 2395, NULL, '1.0000', '-67.2578', '-67.2578', '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 (31453, '2021-11-07', 7457, 30157, 2395, 37428, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31454, '2021-11-07', 7379, 30158, 2395, NULL, '1.0000', '12.5100', '12.5100', '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 (31455, '2021-11-07', 7892, 30159, 2395, NULL, '1.0000', '4.2000', '4.2000', '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 (31456, '2021-11-07', 7453, 30160, 2395, NULL, '1.0000', '28.5000', '28.5000', '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 (31457, '2021-11-07', 8188, 30161, 2395, NULL, '2.0000', '6.7000', '6.7000', '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 (31458, '2021-11-07', 9092, 30162, 2395, 39260, '2.0000', '0.3844', '0.3844', '0.5000', '0.5000', '266.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31459, '2021-11-07', 2102, 30163, 2395, 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 (31460, '2021-11-07', 9272, 30164, 2395, NULL, '2.0000', '3.1000', '3.1000', '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 (31461, '2021-11-07', 1501, 30165, 2395, 38430, '1.0000', '27.4349', '27.4349', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31462, '2021-11-07', 9274, 30166, 2395, NULL, '1.0000', '3.1000', '3.1000', '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 (31463, '2021-11-07', 9272, 30167, 2396, NULL, '1.0000', '3.1000', '3.1000', '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 (31464, '2021-11-07', 7453, 30168, 2396, NULL, '1.0000', '28.5000', '28.5000', '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 (31465, '2021-11-07', 2656, 30169, 2396, 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 (31466, '2021-11-07', 9272, 30170, 2396, NULL, '1.0000', '3.1000', '3.1000', '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 (31467, '2021-11-07', 7889, 30171, 2396, 38147, '1.0000', '-8.6571', '-8.6571', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31468, '2021-11-07', 1760, 30172, 2396, 37408, '3.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31469, '2021-11-07', 8539, 30173, 2396, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '44.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31470, '2021-11-07', 2877, 30174, 2396, 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 (31471, '2021-11-07', 8810, 30175, 2396, NULL, '1.0000', '1.9200', '1.9200', '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 (31472, '2021-11-07', 7703, 30176, 2396, NULL, '1.0000', '22.9900', '22.9900', '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 (31473, '2021-11-07', 7333, 30177, 2396, NULL, '1.0000', '13.5000', '13.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 (31474, '2021-11-07', 8969, 30178, 2396, NULL, '2.0000', '2.0000', '2.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 (31475, '2021-11-07', 7457, 30179, 2396, 36031, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31476, '2021-11-07', 2414, 30180, 2396, NULL, '2.0000', '3.4000', '3.4000', '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 (31477, '2021-11-07', 2950, 30181, 2396, 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 (31478, '2021-11-07', 7943, 30182, 2396, 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 (31479, '2021-11-07', 8166, 30183, 2396, NULL, '1.0000', '4.6000', '4.6000', '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 (31480, '2021-11-07', 2673, 30184, 2396, NULL, '2.0000', '11.0000', '11.0000', '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 (31481, '2021-11-07', 7524, 30185, 2396, NULL, '1.0000', '11.9500', '11.9500', '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 (31482, '2021-11-07', 7514, 30186, 2396, NULL, '1.0000', '12.9983', '12.9983', '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 (31483, '2021-11-07', 7518, 30187, 2396, NULL, '1.0000', '-67.2578', '-67.2578', '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 (31484, '2021-11-07', 8497, 30188, 2396, NULL, '1.0000', '337.1200', '337.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 (31485, '2021-11-07', 9174, 30189, 2396, NULL, '1.0000', '13.7400', '13.7400', '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 (31486, '2021-11-07', 9563, 30190, 2396, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31487, '2021-11-07', 9563, 30191, 2396, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31488, '2021-11-07', 8720, 30192, 2396, NULL, '1.0000', '31.1100', '31.1100', '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 (31489, '2021-11-07', 2763, 30193, 2396, 39248, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31490, '2021-11-07', 9160, 30194, 2396, NULL, '1.0000', '41.6640', '41.6640', '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 (31491, '2021-11-07', 9445, 30195, 2396, 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 (31492, '2021-11-07', 7932, 30196, 2396, NULL, '1.0000', '3.3000', '3.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 (31493, '2021-11-07', 9274, 30197, 2396, NULL, '1.0000', '3.1000', '3.1000', '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 (31494, '2021-11-07', 2242, 30198, 2397, 33027, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31495, '2021-11-07', 2295, 30199, 2397, 3134, '3.0000', '0.7000', '0.7000', '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 (31496, '2021-11-07', 2648, 30200, 2397, 10607, '1.0000', '5.4000', '5.4000', '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 (31497, '2021-11-07', 1772, 30201, 2397, 32041, '1.0000', '6.3472', '6.3472', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31498, '2021-11-07', 2169, 30202, 2397, 37575, '2.0000', '1.0517', '1.0517', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31499, '2021-11-07', 1935, 30203, 2397, 31718, '1.0000', '7.9589', '7.9589', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31500, '2021-11-07', 7524, 30204, 2397, NULL, '1.0000', '11.9500', '11.9500', '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 (31501, '2021-11-07', 2287, 30205, 2397, 3127, '14.0000', '1.8000', '1.8000', '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 (31502, '2021-11-07', 1855, 30206, 2397, 4986, '1.0000', '1.4000', '1.4000', '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 (31503, '2021-11-07', 2948, 30207, 2397, NULL, '1.0000', '0.9000', '0.9000', '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 (31504, '2021-11-07', 1533, 30208, 2397, 32887, '1.0000', '3.1739', '3.1739', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31505, '2021-11-07', 7608, 30209, 2397, NULL, '1.0000', '6.9800', '6.9800', '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 (31506, '2021-11-07', 1816, 30210, 2397, 33002, '1.0000', '11.9444', '11.9444', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31507, '2021-11-07', 2242, 30211, 2397, 33027, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31508, '2021-11-07', 1855, 30212, 2397, 4986, '1.0000', '1.4000', '1.4000', '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 (31509, '2021-11-07', 2384, 30213, 2397, 29813, '2.0000', '0.2683', '0.2683', '0.7000', '0.7000', '61.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31510, '2021-11-07', 1910, 30214, 2397, 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 (31511, '2021-11-07', 1367, 30215, 2397, NULL, '12.0000', '4.9000', '4.9000', '7.0000', '7.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 (31512, '2021-11-07', 8430, 30216, 2397, NULL, '1.0000', '31.6200', '31.6200', '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 (31513, '2021-11-07', 1687, 30217, 2397, NULL, '1.0000', '15.3580', '15.3580', '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 (31514, '2021-11-07', 2315, 30218, 2397, 3069, '2.0000', '0.3300', '0.3300', '0.6000', '0.6000', '210.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31515, '2021-11-07', 2823, 30219, 2397, 34665, '2.0000', '5.7100', '5.7100', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31516, '2021-11-07', 2293, 30220, 2397, 3064, '3.0000', '1.4400', '1.4400', '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 (31517, '2021-11-07', 1812, 30221, 2397, 36378, '3.0000', '7.9315', '7.9315', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31518, '2021-11-07', 1812, 30221, 2397, 32067, '2.0000', '7.9315', '7.9315', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31519, '2021-11-07', 9187, 30222, 2397, NULL, '1.0000', '7.3000', '7.3000', '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 (31520, '2021-11-07', 9103, 30223, 2398, 31036, '1.0000', '32.6700', '32.6700', '43.0000', '43.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31521, '2021-11-07', 7743, 30224, 2398, NULL, '2.0000', '15.0700', '15.0700', '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 (31522, '2021-11-07', 8429, 30225, 2398, NULL, '1.0000', '16.0000', '16.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 (31523, '2021-11-07', 7354, 30226, 2398, NULL, '2.0000', '18.0000', '18.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 (31524, '2021-11-07', 7864, 30227, 2398, NULL, '2.0000', '2.9000', '2.9000', '23.5000', '23.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 (31525, '2021-11-07', 7547, 30228, 2398, NULL, '2.0000', '0.0000', '0.0000', '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 (31526, '2021-11-07', 7641, 30229, 2398, NULL, '1.0000', '6.0638', '6.0638', '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 (31527, '2021-11-07', 7892, 30230, 2398, NULL, '1.0000', '4.2000', '4.2000', '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 (31528, '2021-11-07', 8702, 30231, 2398, NULL, '1.0000', '3.6700', '3.6700', '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 (31529, '2021-11-07', 8600, 30232, 2398, NULL, '1.0000', '0.6300', '0.6300', '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 (31530, '2021-11-07', 7702, 30233, 2398, NULL, '1.0000', '0.4600', '0.4600', '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 (31531, '2021-11-07', 7762, 30234, 2398, NULL, '1.0000', '5.1000', '5.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 (31532, '2021-11-07', 7674, 30235, 2398, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '149.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31533, '2021-11-07', 1667, 30236, 2399, 37587, '1.0000', '76.8317', '76.8317', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31534, '2021-11-07', 1687, 30237, 2399, NULL, '1.0000', '15.3580', '15.3580', '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 (31535, '2021-11-07', 2699, 30238, 2399, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31536, '2021-11-07', 9563, 30239, 2399, 40076, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31537, '2021-11-07', 1863, 30240, 2399, 37574, '1.0000', '1.1335', '1.1335', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31538, '2021-11-07', 1888, 30241, 2399, NULL, '1.0000', '-42.1250', '-42.1250', '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 (31539, '2021-11-07', 2656, 30242, 2400, 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 (31540, '2021-11-07', 8097, 30243, 2400, NULL, '2.0000', '3.3994', '3.3994', '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 (31541, '2021-11-07', 7507, 30244, 2400, NULL, '2.0000', '6.5000', '6.5000', '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 (31542, '2021-11-07', 1665, 30245, 2401, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31543, '2021-11-07', 1505, 30246, 2401, 24956, '1.0000', '1071.9996', '1071.9996', '20.0000', '20.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 (31544, '2021-11-07', 2233, 30247, 2401, 34013, '1.0000', '19.9766', '19.9766', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31545, '2021-11-07', 2066, 30248, 2401, 34656, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31546, '2021-11-07', 2574, 30249, 2401, 19819, '6.0000', '0.7800', '0.7800', '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 (31547, '2021-11-07', 7780, 30250, 2401, NULL, '1.0000', '2.6000', '2.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 (31548, '2021-11-07', 9556, 30251, 2401, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31549, '2021-11-07', 1529, 30252, 2401, NULL, '1.0000', '3.7110', '3.7110', '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 (31550, '2021-11-07', 1863, 30253, 2401, NULL, '1.0000', '1.2830', '1.2830', '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 (31551, '2021-11-07', 2821, 30254, 2401, 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 (31552, '2021-11-07', 8548, 30255, 2401, NULL, '2.0000', '12.0000', '12.0000', '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 (31553, '2021-11-07', 8325, 30256, 2401, 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 (31554, '2021-11-07', 7411, 30257, 2401, NULL, '1.0000', '1.3500', '1.3500', '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 (31555, '2021-11-07', 1574, 30258, 2401, 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 (31556, '2021-11-07', 2821, 30259, 2401, 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 (31557, '2021-11-07', 1641, 30260, 2401, 38521, '16.0000', '1.9923', '1.9923', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31558, '2021-11-07', 2379, 30261, 2401, NULL, '1.0000', '1.8000', '1.8000', '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 (31559, '2021-11-07', 1837, 30262, 2401, 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 (31560, '2021-11-07', 1787, 30263, 2401, 39911, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31561, '2021-11-07', 2565, 30264, 2401, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '6.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 (31562, '2021-11-07', 1863, 30265, 2401, NULL, '1.0000', '1.2830', '1.2830', '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 (31563, '2021-11-07', 2940, 30266, 2401, 31114, '1.0000', '6.3600', '6.3600', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31564, '2021-11-07', 2656, 30267, 2401, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31565, '2021-11-07', 9337, 30268, 2401, NULL, '3.0000', '5.7200', '5.7200', '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 (31566, '2021-11-07', 2317, 30269, 2401, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '15.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 (31567, '2021-11-07', 1706, 30270, 2401, 19842, '1.0000', '13.7192', '13.7192', '20.5000', '20.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 (31568, '2021-11-07', 2491, 30271, 2401, 13774, '1.0000', '12.2000', '12.2000', '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 (31569, '2021-11-07', 1608, 30272, 2401, 34659, '1.0000', '3.5436', '3.5436', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31570, '2021-11-07', 1646, 30273, 2401, 38937, '1.0000', '4.4866', '4.4866', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31571, '2021-11-07', 9604, 30274, 2401, NULL, '2.0000', '2.0000', '2.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 (31572, '2021-11-07', 8607, 30275, 2401, 40005, '1.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31573, '2021-11-07', 2088, 30276, 2401, 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 (31574, '2021-11-07', 2004, 30277, 2401, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31575, '2021-11-07', 2821, 30278, 2401, 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 (31576, '2021-11-07', 7635, 30279, 2401, NULL, '1.0000', '6.6300', '6.6300', '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 (31577, '2021-11-07', 2221, 30280, 2401, 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 (31578, '2021-11-07', 9461, 30281, 2401, NULL, '1.0000', '1.6000', '1.6000', '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 (31579, '2021-11-07', 1763, 30282, 2401, NULL, '1.0000', '4.6900', '4.6900', '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 (31580, '2021-11-07', 1339, 30283, 2401, 32530, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31581, '2021-11-07', 2221, 30284, 2401, 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 (31582, '2021-11-07', 2081, 30285, 2401, 38927, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31583, '2021-11-07', 1863, 30286, 2401, NULL, '1.0000', '1.2830', '1.2830', '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 (31584, '2021-11-07', 2227, 30287, 2401, 22523, '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 (31585, '2021-11-07', 1785, 30288, 2401, 37752, '1.0000', '14.9661', '14.9661', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31586, '2021-11-07', 9474, 30289, 2401, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31587, '2021-11-07', 2255, 30290, 2401, 39842, '1.0000', '17.5953', '17.5953', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31588, '2021-11-07', 7496, 30291, 2401, 39801, '1.0000', '2.0932', '2.0932', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31589, '2021-11-07', 9337, 30292, 2401, NULL, '3.0000', '5.7200', '5.7200', '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 (31590, '2021-11-07', 1863, 30293, 2401, NULL, '1.0000', '1.2830', '1.2830', '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 (31591, '2021-11-07', 8740, 30294, 2401, 40007, '1.0000', '1.2857', '1.2857', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31592, '2021-11-07', 1574, 30295, 2401, 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 (31593, '2021-11-07', 7641, 30296, 2401, NULL, '1.0000', '1.9000', '1.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 (31594, '2021-11-07', 9089, 30297, 2401, NULL, '1.0000', '3.8000', '3.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 (31595, '2021-11-07', 8596, 30298, 2401, NULL, '1.0000', '17.0000', '17.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 (31596, '2021-11-07', 8638, 30299, 2401, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31597, '2021-11-07', 1512, 30300, 2401, 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 (31598, '2021-11-07', 1851, 30301, 2401, 29648, '1.0000', '12.2777', '12.2777', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31599, '2021-11-07', 8638, 30302, 2401, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31600, '2021-11-07', 7380, 30303, 2401, 39764, '2.0000', '8.1295', '8.1295', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31601, '2021-11-07', 2354, 30304, 2401, 38531, '1.0000', '5.0600', '5.0600', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31602, '2021-11-07', 1523, 30305, 2401, NULL, '1.0000', '1.0061', '1.0061', '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 (31603, '2021-11-07', 1812, 30306, 2401, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31604, '2021-11-07', 7886, 30307, 2401, NULL, '1.0000', '14.5000', '14.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 (31605, '2021-11-07', 7780, 30308, 2401, NULL, '1.0000', '2.6000', '2.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 (31606, '2021-11-07', 2411, 30309, 2401, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31607, '2021-11-07', 1413, 30310, 2401, 37962, '1.0000', '17.3200', '17.3200', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31608, '2021-11-07', 9482, 30311, 2401, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '77.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31609, '2021-11-07', 1574, 30312, 2401, 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 (31610, '2021-11-07', 2167, 30313, 2401, 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 (31611, '2021-11-07', 1799, 30314, 2401, 13733, '1.0000', '22.8000', '22.8000', '38.5000', '38.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 (31612, '2021-11-07', 8401, 30315, 2401, NULL, '1.0000', '23.1600', '23.1600', '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 (31613, '2021-11-07', 7666, 30316, 2401, NULL, '1.0000', '10.0000', '10.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 (31614, '2021-11-07', 8037, 30317, 2401, NULL, '1.0000', '1.7600', '1.7600', '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 (31615, '2021-11-07', 2252, 30318, 2401, 38928, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31616, '2021-11-07', 1863, 30319, 2401, NULL, '1.0000', '1.2830', '1.2830', '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 (31617, '2021-11-07', 1689, 30320, 2401, 39798, '1.0000', '12.9745', '12.9745', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31618, '2021-11-07', 1873, 30321, 2401, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31619, '2021-11-07', 1650, 30322, 2401, 39791, '1.0000', '14.7840', '14.7840', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31620, '2021-11-07', 2506, 30323, 2401, 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 (31621, '2021-11-07', 1524, 30324, 2401, 39873, '1.0000', '4.4000', '4.4000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31622, '2021-11-07', 8756, 30325, 2401, 32556, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31623, '2021-11-07', 2231, 30326, 2401, 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 (31624, '2021-11-07', 1401, 30327, 2401, 31958, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31625, '2021-11-07', 1809, 30328, 2401, 39789, '1.0000', '9.2696', '9.2696', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31626, '2021-11-07', 1863, 30329, 2401, NULL, '1.0000', '1.2830', '1.2830', '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 (31627, '2021-11-07', 2352, 30330, 2401, NULL, '1.0000', '59.2000', '59.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 (31628, '2021-11-07', 8744, 30331, 2401, 39998, '1.0000', '-1.5050', '-1.5050', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31629, '2021-11-07', 2277, 30332, 2401, NULL, '2.0000', '0.8982', '0.8982', '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 (31630, '2021-11-07', 8497, 30333, 2401, NULL, '1.0000', '28.0000', '28.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 (31631, '2021-11-07', 9595, 30334, 2401, NULL, '2.0000', '1.7400', '1.7400', '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 (31632, '2021-11-07', 8740, 30335, 2401, 40007, '1.0000', '1.2857', '1.2857', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31633, '2021-11-07', 1339, 30336, 2401, 32530, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31634, '2021-11-07', 9399, 30337, 2401, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31635, '2021-11-07', 1602, 30338, 2401, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31636, '2021-11-07', 9620, 30339, 2402, 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 (31637, '2021-11-07', 9621, 30340, 2402, 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 (31638, '2021-11-07', 8321, 30341, 2402, NULL, '1.0000', '4.0200', '4.0200', '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 (31639, '2021-11-08', 2660, 30342, 2403, 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 (31640, '2021-11-08', 1687, 30343, 2403, 5785, '-13.0000', '165.9024', '165.9024', '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 (31641, '2021-11-08', 1687, 30343, 2403, NULL, '14.0000', '165.9024', '165.9024', '16.0000', '16.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 (31642, '2021-11-08', 2169, 30344, 2403, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '35.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 (31643, '2021-11-08', 2442, 30345, 2403, 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 (31644, '2021-11-08', 2357, 30346, 2403, 18852, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '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 (31645, '2021-11-08', 2908, 30347, 2403, 18647, '-4.0000', '0.2700', '0.2700', '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 (31646, '2021-11-08', 2908, 30347, 2403, NULL, '5.0000', '0.2700', '0.2700', '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 (31647, '2021-11-08', 2135, 30348, 2403, 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 (31648, '2021-11-08', 2660, 30349, 2403, 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 (31649, '2021-11-08', 1533, 30350, 2403, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (31650, '2021-11-08', 2379, 30351, 2403, 4032, '-25.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 (31651, '2021-11-08', 2379, 30351, 2403, NULL, '26.0000', '1.5900', '1.5900', '2.5000', '2.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 (31652, '2021-11-08', 1650, 30352, 2403, 3221, '-2.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 (31653, '2021-11-08', 1650, 30352, 2403, NULL, '3.0000', '14.8000', '14.8000', '20.0000', '20.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 (31654, '2021-11-08', 2354, 30353, 2403, 18836, '1.0000', '4.6000', '4.6000', '7.0000', '7.0000', '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 (31655, '2021-11-08', 1935, 30354, 2403, 5586, '-29.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 (31656, '2021-11-08', 1935, 30354, 2403, NULL, '31.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (31657, '2021-11-08', 1641, 30355, 2403, 3214, '-82.0000', '0.9800', '0.9800', '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 (31658, '2021-11-08', 1641, 30355, 2403, NULL, '94.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-94.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31659, '2021-11-08', 1665, 30356, 2403, 3235, '-25.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 (31660, '2021-11-08', 1665, 30356, 2403, NULL, '26.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (31661, '2021-11-08', 1699, 30357, 2403, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '6.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 (31662, '2021-11-08', 1837, 30358, 2404, 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 (31663, '2021-11-08', 2036, 30359, 2404, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '16.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 (31664, '2021-11-08', 8000, 30360, 2404, NULL, '1.0000', '25.8200', '25.8200', '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 (31665, '2021-11-08', 8746, 30361, 2404, 39996, '1.0000', '4.3169', '4.3169', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31666, '2021-11-08', 2279, 30362, 2404, 23106, '2.0000', '2.6000', '2.6000', '4.0000', '4.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 (31667, '2021-11-08', 2318, 30363, 2404, 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 (31668, '2021-11-08', 1337, 30364, 2404, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31669, '2021-11-08', 7781, 30365, 2404, NULL, '3.0000', '4.2500', '4.2500', '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 (31670, '2021-11-08', 2545, 30366, 2404, 38923, '1.0000', '5.5944', '5.5944', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31671, '2021-11-08', 1337, 30367, 2404, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31672, '2021-11-08', 1339, 30368, 2404, 23699, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '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 (31673, '2021-11-08', 2754, 30369, 2404, 18938, '2.0000', '0.0800', '0.0800', '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 (31674, '2021-11-08', 1337, 30370, 2404, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31675, '2021-11-08', 1863, 30371, 2404, NULL, '2.0000', '1.2830', '1.2830', '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 (31676, '2021-11-08', 2567, 30372, 2404, 39985, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31677, '2021-11-08', 7952, 30373, 2404, NULL, '1.0000', '2.3000', '2.3000', '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 (31678, '2021-11-08', 1523, 30374, 2404, NULL, '1.0000', '1.0061', '1.0061', '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 (31679, '2021-11-08', 2681, 30375, 2404, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '6.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31680, '2021-11-08', 7317, 30376, 2404, NULL, '1.0000', '19.5500', '19.5500', '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 (31681, '2021-11-08', 2821, 30377, 2404, 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 (31682, '2021-11-08', 1502, 30378, 2404, 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 (31683, '2021-11-08', 2315, 30379, 2404, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '68.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31684, '2021-11-08', 2411, 30380, 2404, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31685, '2021-11-08', 7753, 30381, 2404, NULL, '1.0000', '3.1400', '3.1400', '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 (31686, '2021-11-08', 7673, 30382, 2405, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31687, '2021-11-08', 7612, 30383, 2405, NULL, '1.0000', '1.1770', '1.1770', '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 (31688, '2021-11-08', 8038, 30384, 2405, NULL, '1.0000', '6.7600', '6.7600', '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 (31689, '2021-11-08', 7709, 30385, 2405, NULL, '2.0000', '35.8000', '35.8000', '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 (31690, '2021-11-08', 7385, 30386, 2405, NULL, '2.0000', '-325.1557', '-325.1557', '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 (31691, '2021-11-08', 8673, 30387, 2405, NULL, '1.0000', '37.5000', '37.5000', '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 (31692, '2021-11-08', 7353, 30388, 2405, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31693, '2021-11-08', 7507, 30389, 2405, NULL, '3.0000', '6.5000', '6.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 (31694, '2021-11-08', 1772, 30390, 2405, 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 (31695, '2021-11-08', 2102, 30391, 2405, 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 (31696, '2021-11-08', 1856, 30392, 2405, 39576, '1.0000', '4.4989', '4.4989', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31697, '2021-11-08', 7750, 30393, 2405, NULL, '1.0000', '34.9000', '34.9000', '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 (31698, '2021-11-08', 7385, 30394, 2405, NULL, '2.0000', '-325.1557', '-325.1557', '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 (31699, '2021-11-08', 7588, 30395, 2405, NULL, '1.0000', '7.0762', '7.0762', '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 (31700, '2021-11-08', 8417, 30396, 2405, NULL, '1.0000', '5.8000', '5.8000', '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 (31701, '2021-11-08', 8966, 30397, 2405, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31702, '2021-11-08', 8666, 30398, 2405, NULL, '1.0000', '0.4600', '0.4600', '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 (31703, '2021-11-08', 8889, 30399, 2405, 39263, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '6.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31704, '2021-11-08', 9092, 30400, 2405, 39260, '2.0000', '0.3844', '0.3844', '0.5000', '0.5000', '262.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31705, '2021-11-08', 7385, 30401, 2405, NULL, '3.0000', '-325.1557', '-325.1557', '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 (31706, '2021-11-08', 7335, 30402, 2405, NULL, '1.0000', '10.4000', '10.4000', '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 (31707, '2021-11-08', 7598, 30403, 2405, NULL, '2.0000', '1.2800', '1.2800', '8.5000', '8.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 (31708, '2021-11-08', 7347, 30404, 2405, NULL, '1.0000', '14.5500', '14.5500', '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 (31709, '2021-11-08', 7518, 30405, 2405, NULL, '1.0000', '-67.2578', '-67.2578', '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 (31710, '2021-11-08', 2217, 30406, 2405, 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 (31711, '2021-11-08', 7478, 30407, 2405, 30207, '6.0000', '4.0000', '4.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31712, '2021-11-08', 7576, 30408, 2405, NULL, '4.0000', '11.5100', '11.5100', '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 (31713, '2021-11-08', 9329, 30409, 2405, NULL, '1.0000', '5.8000', '5.8000', '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 (31714, '2021-11-08', 7342, 30410, 2405, 38439, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31715, '2021-11-08', 9213, 30411, 2405, 39428, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31716, '2021-11-08', 8027, 30412, 2405, NULL, '1.0000', '15.0000', '15.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 (31717, '2021-11-08', 9563, 30413, 2405, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31718, '2021-11-08', 2070, 30414, 2406, 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 (31719, '2021-11-08', 2237, 30415, 2406, 2781, '-15.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 (31720, '2021-11-08', 2237, 30415, 2406, NULL, '16.0000', '1.0600', '1.0600', '2.0000', '2.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 (31721, '2021-11-08', 2236, 30416, 2406, 2780, '-4.0000', '5.6599', '5.6599', '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 (31722, '2021-11-08', 2236, 30416, 2406, NULL, '5.0000', '5.6599', '5.6599', '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 (31723, '2021-11-08', 1312, 30417, 2406, 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 (31724, '2021-11-08', 2229, 30418, 2406, 1704, '-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 (31725, '2021-11-08', 2229, 30418, 2406, NULL, '2.0000', '24.5000', '24.5000', '28.0000', '28.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 (31726, '2021-11-08', 1590, 30419, 2406, 22260, '3.0000', '1.7100', '1.7100', '2.3000', '2.3000', '27.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 (31727, '2021-11-08', 1999, 30420, 2406, 6362, '-2.0000', '6.0000', '6.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 (31728, '2021-11-08', 1999, 30420, 2406, NULL, '3.0000', '6.0000', '6.0000', '8.5000', '8.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 (31729, '2021-11-08', 9577, 30421, 2406, NULL, '1.0000', '0.3200', '0.3200', '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 (31730, '2021-11-08', 2169, 30422, 2406, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '34.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 (31731, '2021-11-08', 1410, 30423, 2406, 22317, '1.0000', '2.2000', '2.2000', '3.5000', '3.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 (31732, '2021-11-08', 1508, 30424, 2406, NULL, '1.0000', '20.6800', '20.6800', '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 (31733, '2021-11-08', 1772, 30425, 2406, 4893, '-7.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 (31734, '2021-11-08', 1772, 30425, 2406, NULL, '8.0000', '6.0500', '6.0500', '8.0000', '8.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 (31735, '2021-11-08', 2277, 30426, 2406, 2937, '-10.0000', '0.7800', '0.7800', '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 (31736, '2021-11-08', 2277, 30426, 2406, NULL, '11.0000', '0.7800', '0.7800', '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 (31737, '2021-11-08', 7744, 30427, 2407, NULL, '1.0000', '2.7222', '2.7222', '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 (31738, '2021-11-08', 8061, 30428, 2407, NULL, '1.0000', '1.6000', '1.6000', '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 (31739, '2021-11-08', 1384, 30429, 2407, 37388, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31740, '2021-11-08', 1434, 30430, 2407, 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 (31741, '2021-11-08', 7709, 30431, 2407, NULL, '2.0000', '35.8000', '35.8000', '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 (31742, '2021-11-08', 7886, 30432, 2407, NULL, '1.0000', '2.8333', '2.8333', '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 (31743, '2021-11-08', 1339, 30433, 2407, 34539, '1.0000', '4.1934', '4.1934', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31744, '2021-11-08', 7385, 30434, 2407, NULL, '4.0000', '-325.1557', '-325.1557', '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 (31745, '2021-11-08', 7514, 30435, 2407, NULL, '2.0000', '12.9983', '12.9983', '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 (31746, '2021-11-08', 2506, 30436, 2407, 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 (31747, '2021-11-08', 7523, 30437, 2407, NULL, '1.0000', '1.8300', '1.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 (31748, '2021-11-08', 8084, 30438, 2407, NULL, '1.0000', '11.7200', '11.7200', '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 (31749, '2021-11-08', 7753, 30439, 2407, NULL, '2.0000', '3.9360', '3.9360', '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 (31750, '2021-11-08', 7507, 30440, 2407, NULL, '3.0000', '6.5000', '6.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 (31751, '2021-11-08', 7804, 30441, 2407, NULL, '3.0000', '1.8000', '1.8000', '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 (31752, '2021-11-08', 7558, 30442, 2407, 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 (31753, '2021-11-08', 7591, 30443, 2407, NULL, '1.0000', '2.7500', '2.7500', '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 (31754, '2021-11-08', 7712, 30444, 2407, NULL, '1.0000', '0.3300', '0.3300', '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 (31755, '2021-11-08', 7523, 30445, 2407, NULL, '1.0000', '1.8300', '1.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 (31756, '2021-11-08', 8730, 30446, 2407, NULL, '1.0000', '29.0000', '29.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 (31757, '2021-11-08', 9281, 30447, 2407, NULL, '1.0000', '8.5000', '8.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 (31758, '2021-11-08', 7727, 30448, 2407, NULL, '1.0000', '0.9000', '0.9000', '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 (31759, '2021-11-08', 1337, 30449, 2407, NULL, '2.0000', '2.0000', '2.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 (31760, '2021-11-08', 7585, 30450, 2407, NULL, '1.0000', '6.2000', '6.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 (31761, '2021-11-08', 7411, 30451, 2407, NULL, '1.0000', '1.3500', '1.3500', '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 (31762, '2021-11-08', 9394, 30452, 2407, NULL, '1.0000', '5.5000', '5.5000', '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 (31763, '2021-11-08', 8166, 30453, 2407, NULL, '1.0000', '4.6000', '4.6000', '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 (31764, '2021-11-08', 8548, 30454, 2407, NULL, '1.0000', '12.0000', '12.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 (31765, '2021-11-08', 8746, 30455, 2407, 39419, '1.0000', '3.5400', '3.5400', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31766, '2021-11-08', 8596, 30456, 2407, NULL, '1.0000', '17.0000', '17.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 (31767, '2021-11-08', 7507, 30457, 2407, NULL, '3.0000', '6.5000', '6.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 (31768, '2021-11-08', 7781, 30458, 2407, NULL, '3.0000', '4.2500', '4.2500', '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 (31769, '2021-11-08', 7804, 30459, 2407, NULL, '3.0000', '1.8000', '1.8000', '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 (31770, '2021-11-08', 1845, 30460, 2407, NULL, '1.0000', '19.5000', '19.5000', '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 (31771, '2021-11-08', 7342, 30461, 2407, 29987, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '80.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31772, '2021-11-08', 7586, 30462, 2407, NULL, '1.0000', '4.1700', '4.1700', '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 (31773, '2021-11-08', 7689, 30463, 2407, NULL, '1.0000', '12.0700', '12.0700', '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 (31774, '2021-11-08', 7507, 30464, 2407, NULL, '3.0000', '6.5000', '6.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 (31775, '2021-11-08', 7804, 30465, 2407, NULL, '3.0000', '1.8000', '1.8000', '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 (31776, '2021-11-08', 1874, 30466, 2407, 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 (31777, '2021-11-08', 8190, 30467, 2407, NULL, '1.0000', '11.0500', '11.0500', '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 (31778, '2021-11-08', 7709, 30468, 2407, NULL, '2.0000', '35.8000', '35.8000', '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 (31779, '2021-11-08', 7799, 30469, 2407, NULL, '1.0000', '2.0000', '2.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 (31780, '2021-11-08', 7954, 30470, 2407, NULL, '4.0000', '22.9726', '22.9726', '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 (31781, '2021-11-08', 7819, 30471, 2407, NULL, '1.0000', '9.5000', '9.5000', '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 (31782, '2021-11-08', 7781, 30472, 2407, NULL, '3.0000', '4.2500', '4.2500', '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 (31783, '2021-11-08', 8085, 30473, 2407, NULL, '3.0000', '14.0000', '14.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 (31784, '2021-11-08', 8033, 30474, 2407, NULL, '1.0000', '27.7000', '27.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 (31785, '2021-11-08', 9272, 30475, 2407, NULL, '1.0000', '3.1000', '3.1000', '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 (31786, '2021-11-08', 7641, 30476, 2407, NULL, '1.0000', '4.8283', '4.8283', '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 (31787, '2021-11-08', 1760, 30477, 2407, 37408, '1.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31788, '2021-11-08', 7652, 30478, 2407, NULL, '7.0000', '40.3000', '40.3000', '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 (31789, '2021-11-08', 7575, 30479, 2407, 36060, '1.0000', '5.5892', '5.5892', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31790, '2021-11-08', 9563, 30480, 2408, 39288, '2.0000', '5.1000', '5.1000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31791, '2021-11-08', 9563, 30481, 2408, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31792, '2021-11-08', 2642, 30483, 2409, NULL, '2.0000', '7.5000', '7.5000', '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 (31793, '2021-11-08', 1310, 30484, 2410, NULL, '2.0000', '0.3700', '0.3700', '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 (31794, '2021-11-08', 1867, 30485, 2410, NULL, '1.0000', '1.0500', '1.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 (31795, '2021-11-08', 1687, 30486, 2410, 5785, '-14.0000', '165.9024', '165.9024', '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 (31796, '2021-11-08', 1687, 30486, 2410, NULL, '15.0000', '165.9024', '165.9024', '16.0000', '16.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 (31797, '2021-11-08', 2105, 30487, 2410, 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 (31798, '2021-11-08', 1622, 30488, 2410, 8739, '2.0000', '44.8492', '44.8492', '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 (31799, '2021-11-08', 2135, 30489, 2410, 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 (31800, '2021-11-08', 9579, 30490, 2410, 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 (31801, '2021-11-08', 2479, 30491, 2410, NULL, '2.0000', '10.0000', '10.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 (31802, '2021-11-08', 8736, 30492, 2410, NULL, '1.0000', '3.4000', '3.4000', '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 (31803, '2021-11-08', 2279, 30493, 2410, 2939, '-13.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 (31804, '2021-11-08', 2279, 30493, 2410, NULL, '14.0000', '2.7000', '2.7000', '4.0000', '4.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 (31805, '2021-11-08', 1602, 30494, 2410, 5897, '-36.0000', '6.7859', '6.7859', '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 (31806, '2021-11-08', 1602, 30494, 2410, NULL, '37.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31807, '2021-11-08', 2262, 30495, 2410, 2798, '-3.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 (31808, '2021-11-08', 2262, 30495, 2410, 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 (31809, '2021-11-08', 2317, 30496, 2410, 3473, '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 (31810, '2021-11-08', 2149, 30497, 2410, 1364, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '2.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 (31811, '2021-11-08', 2411, 30498, 2410, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.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 (31812, '2021-11-08', 1863, 30499, 2410, 10808, '-74.0000', '0.4136', '0.4136', '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 (31813, '2021-11-08', 1863, 30499, 2410, NULL, '75.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31814, '2021-11-08', 2401, 30500, 2410, NULL, '1.0000', '2.8000', '2.8000', '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 (31815, '2021-11-08', 1855, 30501, 2410, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (31816, '2021-11-08', 1785, 30502, 2410, 4903, '-2.0000', '4.8380', '4.8380', '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 (31817, '2021-11-08', 1785, 30502, 2410, NULL, '3.0000', '4.8380', '4.8380', '20.0000', '20.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 (31818, '2021-11-08', 1782, 30503, 2410, 4900, '-3.0000', '2.9900', '2.9900', '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 (31819, '2021-11-08', 1782, 30503, 2410, NULL, '5.0000', '2.9900', '2.9900', '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 (31820, '2021-11-08', 2366, 30504, 2410, 3833, '-19.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 (31821, '2021-11-08', 2366, 30504, 2410, NULL, '21.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31822, '2021-11-08', 1928, 30505, 2411, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '4.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 (31823, '2021-11-08', 8933, 30506, 2411, NULL, '2.0000', '7.5000', '7.5000', '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 (31824, '2021-11-08', 8746, 30507, 2411, NULL, '2.0000', '3.1500', '3.1500', '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 (31825, '2021-11-08', 2656, 30508, 2411, 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 (31826, '2021-11-08', 2995, 30509, 2412, NULL, '1.0000', '13.2500', '13.2500', '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 (31827, '2021-11-08', 7522, 30510, 2412, NULL, '1.0000', '5.2000', '5.2000', '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 (31828, '2021-11-08', 8135, 30511, 2412, NULL, '1.0000', '13.9000', '13.9000', '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 (31829, '2021-11-08', 8789, 30512, 2412, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31830, '2021-11-08', 7585, 30513, 2412, NULL, '1.0000', '6.2000', '6.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 (31831, '2021-11-08', 7672, 30514, 2412, NULL, '1.0000', '1.0200', '1.0200', '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 (31832, '2021-11-08', 7952, 30515, 2412, NULL, '1.0000', '10.4000', '10.4000', '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 (31833, '2021-11-08', 9272, 30516, 2412, NULL, '2.0000', '3.1000', '3.1000', '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 (31834, '2021-11-08', 7587, 30517, 2412, NULL, '1.0000', '1.5000', '1.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 (31835, '2021-11-08', 7518, 30518, 2412, NULL, '1.0000', '-67.2578', '-67.2578', '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 (31836, '2021-11-08', 8984, 30519, 2413, 40124, '1.0000', '-100.8495', '-100.8495', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31837, '2021-11-08', 8984, 30519, 2413, NULL, '1.0000', '-100.8495', '-100.8495', '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 (31838, '2021-11-08', 8740, 30520, 2413, 40007, '2.0000', '1.2857', '1.2857', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31839, '2021-11-08', 8767, 30521, 2413, NULL, '1.0000', '6.6900', '6.6900', '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 (31840, '2021-11-08', 8773, 30522, 2413, 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 (31841, '2021-11-08', 7482, 30523, 2413, 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 (31842, '2021-11-08', 1612, 30524, 2413, 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 (31843, '2021-11-08', 1641, 30525, 2413, 38521, '8.0000', '1.9923', '1.9923', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31844, '2021-11-08', 1574, 30526, 2413, 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 (31845, '2021-11-08', 2241, 30527, 2413, 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 (31846, '2021-11-08', 2242, 30528, 2413, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31847, '2021-11-08', 7411, 30529, 2413, NULL, '1.0000', '1.3500', '1.3500', '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 (31848, '2021-11-08', 2169, 30530, 2413, NULL, '1.0000', '1.1500', '1.1500', '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 (31849, '2021-11-08', 7514, 30531, 2413, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31850, '2021-11-08', 1884, 30532, 2413, NULL, '1.0000', '4.8050', '4.8050', '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 (31851, '2021-11-08', 2299, 30533, 2413, 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 (31852, '2021-11-08', 2237, 30534, 2413, 34951, '2.0000', '-64.5817', '-64.5817', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31853, '2021-11-08', 2361, 30535, 2413, 19350, '2.0000', '0.4700', '0.4700', '0.6000', '0.6000', '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 (31854, '2021-11-08', 9482, 30536, 2413, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31855, '2021-11-08', 9215, 30537, 2413, NULL, '2.0000', '2.0000', '2.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 (31856, '2021-11-08', 1837, 30538, 2413, 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 (31857, '2021-11-08', 8622, 30539, 2413, 39815, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31858, '2021-11-08', 8208, 30540, 2413, NULL, '3.0000', '33.0000', '33.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 (31859, '2021-11-08', 8622, 30541, 2413, 39815, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31860, '2021-11-08', 2315, 30542, 2413, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '66.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31861, '2021-11-08', 1529, 30543, 2413, NULL, '1.0000', '3.7110', '3.7110', '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 (31862, '2021-11-08', 7652, 30544, 2413, NULL, '4.0000', '40.3000', '40.3000', '1.2000', '1.2000', '-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 (31863, '2021-11-08', 9482, 30545, 2413, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31864, '2021-11-08', 7532, 30546, 2413, 39818, '1.0000', '19.7445', '19.7445', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31865, '2021-11-08', 2749, 30547, 2413, 23133, '1.0000', '20.5000', '20.5000', '28.0000', '28.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 (31866, '2021-11-08', 9503, 30548, 2413, 40109, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31867, '2021-11-08', 1409, 30549, 2413, NULL, '1.0000', '13.5000', '13.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 (31868, '2021-11-08', 2169, 30550, 2413, NULL, '1.0000', '1.1500', '1.1500', '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 (31869, '2021-11-08', 2958, 30551, 2413, 40132, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31870, '2021-11-08', 1935, 30552, 2413, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31871, '2021-11-08', 1322, 30553, 2413, NULL, '1.0000', '4.4000', '4.4000', '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 (31872, '2021-11-08', 1409, 30554, 2413, NULL, '1.0000', '13.5000', '13.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 (31873, '2021-11-08', 1554, 30555, 2413, 38946, '1.0000', '2.6042', '2.6042', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31874, '2021-11-08', 7342, 30556, 2413, NULL, '1.0000', '15.6000', '15.6000', '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 (31875, '2021-11-08', 1605, 30557, 2413, 18941, '1.0000', '24.8500', '24.8500', '39.0000', '39.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31876, '2021-11-08', 1532, 30558, 2413, 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 (31877, '2021-11-08', 1499, 30559, 2413, 38940, '3.0000', '0.4684', '0.4684', '0.6000', '0.6000', '6.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31878, '2021-11-08', 8915, 30560, 2413, NULL, '1.0000', '29.3500', '29.3500', '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 (31879, '2021-11-08', 2315, 30561, 2413, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '66.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31880, '2021-11-08', 1657, 30562, 2413, 19371, '100.0000', '90.0000', '90.0000', '0.6000', '0.6000', '200.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31881, '2021-11-08', 2036, 30563, 2413, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '15.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 (31882, '2021-11-08', 1674, 30564, 2413, NULL, '1.0000', '3.2473', '3.2473', '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 (31883, '2021-11-08', 1543, 30565, 2413, NULL, '1.0000', '41.9600', '41.9600', '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 (31884, '2021-11-08', 9329, 30566, 2413, NULL, '1.0000', '5.8000', '5.8000', '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 (31885, '2021-11-08', 2095, 30567, 2413, NULL, '1.0000', '1.5000', '1.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 (31886, '2021-11-08', 2315, 30568, 2413, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '67.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31887, '2021-11-08', 7894, 30569, 2413, NULL, '1.0000', '22.0000', '22.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 (31888, '2021-11-08', 7558, 30570, 2413, 39820, '3.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31889, '2021-11-08', 2958, 30571, 2413, 40132, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31890, '2021-11-08', 2293, 30572, 2413, NULL, '2.0000', '1.4400', '1.4400', '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 (31891, '2021-11-08', 8208, 30573, 2413, NULL, '2.0000', '33.0000', '33.0000', '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 (31892, '2021-11-08', 7770, 30574, 2413, NULL, '1.0000', '33.0000', '33.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 (31893, '2021-11-08', 8745, 30575, 2413, 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 (31894, '2021-11-08', 8771, 30576, 2413, 39997, '1.0000', '4.0228', '4.0228', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31895, '2021-11-08', 2821, 30577, 2413, 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 (31896, '2021-11-08', 1935, 30578, 2413, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31897, '2021-11-08', 7411, 30579, 2413, NULL, '1.0000', '1.3500', '1.3500', '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 (31898, '2021-11-08', 2315, 30580, 2413, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '67.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31899, '2021-11-08', 7317, 30581, 2413, NULL, '1.0000', '19.5500', '19.5500', '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 (31900, '2021-11-08', 2989, 30582, 2413, 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 (31901, '2021-11-08', 2169, 30583, 2413, NULL, '1.0000', '1.1500', '1.1500', '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 (31902, '2021-11-08', 1520, 30584, 2413, 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 (31903, '2021-11-08', 2298, 30585, 2413, 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 (31904, '2021-11-08', 2765, 30586, 2413, 39903, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31905, '2021-11-08', 2730, 30587, 2413, 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 (31906, '2021-11-08', 7564, 30588, 2413, 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 (31907, '2021-11-08', 2511, 30589, 2413, NULL, '1.0000', '8.8000', '8.8000', '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 (31908, '2021-11-08', 2858, 30590, 2414, 17772, '-6.0000', '1.0000', '1.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 (31909, '2021-11-08', 2858, 30590, 2414, NULL, '8.0000', '1.0000', '1.0000', '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 (31910, '2021-11-08', 7612, 30591, 2415, NULL, '2.0000', '1.1770', '1.1770', '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 (31911, '2021-11-08', 1672, 30592, 2415, 34503, '10.0000', '2.9200', '2.9200', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31912, '2021-11-08', 7408, 30593, 2415, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31913, '2021-11-08', 1409, 30594, 2415, 36049, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31914, '2021-11-08', 7917, 30595, 2416, NULL, '4.0000', '5.0000', '5.0000', '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 (31915, '2021-11-08', 2237, 30596, 2416, NULL, '1.0000', '-64.5817', '-64.5817', '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 (31916, '2021-11-08', 1805, 30597, 2416, NULL, '1.0000', '4.5244', '4.5244', '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 (31917, '2021-11-09', 8335, 30598, 2417, NULL, '1.0000', '21.7000', '21.7000', '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 (31918, '2021-11-09', 1342, 30599, 2417, 34570, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31919, '2021-11-09', 1793, 30600, 2417, 34923, '1.0000', '18.0667', '18.0667', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31920, '2021-11-09', 1386, 30601, 2417, 37975, '1.0000', '-1.9773', '-1.9773', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31921, '2021-11-09', 2295, 30602, 2417, NULL, '6.0000', '0.7000', '0.7000', '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 (31922, '2021-11-09', 7671, 30603, 2417, NULL, '2.0000', '15.5000', '15.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 (31923, '2021-11-09', 1935, 30604, 2417, 39910, '2.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31924, '2021-11-09', 1618, 30605, 2417, NULL, '1.0000', '402.7200', '402.7200', '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 (31925, '2021-11-09', 1746, 30606, 2417, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (31926, '2021-11-09', 2916, 30607, 2417, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31927, '2021-11-09', 2593, 30608, 2417, 23153, '1.0000', '14.4000', '14.4000', '19.0000', '19.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 (31928, '2021-11-09', 2655, 30609, 2417, 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 (31929, '2021-11-09', 1504, 30610, 2417, 38525, '10.0000', '2.1038', '2.1038', '2.2000', '2.2000', '40.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31930, '2021-11-09', 7456, 30611, 2417, NULL, '1.0000', '1.3800', '1.3800', '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 (31931, '2021-11-09', 2169, 30612, 2417, NULL, '1.0000', '1.1500', '1.1500', '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 (31932, '2021-11-09', 1602, 30613, 2417, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31933, '2021-11-09', 2036, 30614, 2417, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '14.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 (31934, '2021-11-09', 2821, 30615, 2417, 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 (31935, '2021-11-09', 7608, 30616, 2417, 39812, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31936, '2021-11-09', 8184, 30617, 2417, NULL, '10.0000', '2.4000', '2.4000', '3.5000', '3.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 (31937, '2021-11-09', 8057, 30618, 2417, NULL, '1.0000', '6.0000', '6.0000', '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 (31938, '2021-11-09', 2565, 30619, 2418, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '5.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 (31939, '2021-11-09', 2293, 30620, 2418, NULL, '5.0000', '1.4400', '1.4400', '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 (31940, '2021-11-09', 2083, 30621, 2418, NULL, '4.0000', '0.5800', '0.5800', '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 (31941, '2021-11-09', 1580, 30622, 2418, 19875, '3.0000', '0.9900', '0.9900', '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 (31942, '2021-11-09', 2295, 30623, 2418, 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 (31943, '2021-11-09', 8033, 30624, 2418, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31944, '2021-11-09', 1699, 30625, 2419, NULL, '1.0000', '3.2000', '3.2000', '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 (31945, '2021-11-09', 1935, 30626, 2419, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31946, '2021-11-09', 1699, 30627, 2419, NULL, '1.0000', '3.2000', '3.2000', '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 (31947, '2021-11-09', 2315, 30628, 2419, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '61.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31948, '2021-11-09', 1529, 30629, 2419, NULL, '1.0000', '3.7110', '3.7110', '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 (31949, '2021-11-09', 1699, 30630, 2419, NULL, '1.0000', '3.2000', '3.2000', '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 (31950, '2021-11-09', 1529, 30631, 2419, NULL, '1.0000', '3.7110', '3.7110', '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 (31951, '2021-11-09', 2169, 30632, 2419, NULL, '3.0000', '1.1500', '1.1500', '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 (31952, '2021-11-09', 2908, 30633, 2419, 24963, '9.0000', '0.2700', '0.2700', '0.5000', '0.5000', '24.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 (31953, '2021-11-09', 2656, 30634, 2420, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31954, '2021-11-09', 2062, 30635, 2421, 13741, '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 (31955, '2021-11-09', 1387, 30636, 2422, NULL, '4.0000', '10.5068', '10.5068', '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 (31956, '2021-11-09', 1812, 30637, 2422, 8224, '-20.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 (31957, '2021-11-09', 1812, 30637, 2422, NULL, '25.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-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 (31958, '2021-11-09', 1432, 30638, 2422, 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 (31959, '2021-11-09', 2234, 30639, 2422, 2778, '1.0000', '16.9284', '16.9284', '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 (31960, '2021-11-09', 1302, 30640, 2422, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '7.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 (31961, '2021-11-09', 2135, 30641, 2422, 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 (31962, '2021-11-09', 2595, 30642, 2422, NULL, '1.0000', '17.8900', '17.8900', '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 (31963, '2021-11-09', 3009, 30643, 2422, NULL, '2.0000', '22.0000', '22.0000', '14.5000', '14.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 (31964, '2021-11-09', 2730, 30644, 2422, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '37.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 (31965, '2021-11-09', 2331, 30645, 2422, 3834, '-5.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 (31966, '2021-11-09', 2331, 30645, 2422, NULL, '6.0000', '12.0700', '12.0700', '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 (31967, '2021-11-09', 1912, 30646, 2422, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (31968, '2021-11-09', 2444, 30647, 2422, 5314, '-3.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 (31969, '2021-11-09', 2444, 30647, 2422, NULL, '4.0000', '6.0000', '6.0000', '9.0000', '9.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 (31970, '2021-11-09', 8758, 30648, 2422, NULL, '1.0000', '5.8000', '5.8000', '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 (31971, '2021-11-09', 8773, 30649, 2422, 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 (31972, '2021-11-09', 1816, 30650, 2422, 18858, '1.0000', '18.2300', '18.2300', '26.0000', '26.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 (31973, '2021-11-09', 7584, 30651, 2423, NULL, '1.0000', '3.8100', '3.8100', '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 (31974, '2021-11-09', 2656, 30652, 2423, 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 (31975, '2021-11-09', 7524, 30653, 2423, NULL, '1.0000', '11.9500', '11.9500', '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 (31976, '2021-11-09', 7704, 30654, 2423, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31977, '2021-11-09', 7671, 30655, 2423, NULL, '1.0000', '15.5000', '15.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 (31978, '2021-11-09', 8063, 30656, 2423, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31979, '2021-11-09', 2506, 30657, 2423, 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 (31980, '2021-11-09', 7666, 30658, 2423, NULL, '1.0000', '0.4000', '0.4000', '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 (31981, '2021-11-09', 2506, 30659, 2423, 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 (31982, '2021-11-09', 7357, 30660, 2423, NULL, '1.0000', '11.7500', '11.7500', '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 (31983, '2021-11-09', 2004, 30661, 2423, 38465, '4.0000', '1.5000', '1.5000', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31984, '2021-11-09', 7781, 30662, 2423, NULL, '3.0000', '4.2500', '4.2500', '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 (31985, '2021-11-09', 7507, 30663, 2423, NULL, '3.0000', '6.5000', '6.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 (31986, '2021-11-09', 8360, 30664, 2423, 39538, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31987, '2021-11-09', 7412, 30665, 2423, NULL, '12.0000', '1.5200', '1.5200', '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 (31988, '2021-11-09', 9580, 30666, 2423, 39269, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31989, '2021-11-09', 1468, 30667, 2423, NULL, '1.0000', '90.0000', '90.0000', '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 (31990, '2021-11-09', 7510, 30668, 2423, NULL, '1.0000', '4.5000', '4.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 (31991, '2021-11-09', 8325, 30669, 2423, 36672, '1.0000', '6.3350', '6.3350', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31992, '2021-11-09', 1460, 30670, 2423, 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 (31993, '2021-11-09', 7900, 30671, 2423, NULL, '2.0000', '2.5000', '2.5000', '3.2000', '3.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 (31994, '2021-11-09', 2025, 30672, 2423, 39413, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31995, '2021-11-09', 9160, 30673, 2423, NULL, '1.0000', '41.6640', '41.6640', '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 (31996, '2021-11-09', 7444, 30674, 2423, 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 (31997, '2021-11-09', 7411, 30675, 2423, NULL, '1.0000', '1.3500', '1.3500', '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 (31998, '2021-11-09', 7354, 30676, 2423, NULL, '2.0000', '18.0000', '18.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 (31999, '2021-11-09', 1805, 30677, 2423, 39574, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32000, '2021-11-09', 7473, 30678, 2423, NULL, '5.0000', '15.4731', '15.4731', '0.6000', '0.6000', '-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 (32001, '2021-11-09', 7564, 30679, 2423, 30930, '2.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32002, '2021-11-09', 7457, 30680, 2423, 36031, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32003, '2021-11-09', 2506, 30681, 2423, 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 (32004, '2021-11-09', 7482, 30682, 2423, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32005, '2021-11-09', 7507, 30683, 2423, NULL, '3.0000', '6.5000', '6.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 (32006, '2021-11-09', 9399, 30684, 2423, NULL, '1.0000', '0.4200', '0.4200', '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 (32007, '2021-11-09', 8698, 30685, 2423, NULL, '1.0000', '2.0000', '2.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 (32008, '2021-11-09', 8158, 30686, 2423, 39616, '1.0000', '24.9000', '24.9000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32009, '2021-11-09', 1947, 30687, 2423, NULL, '1.0000', '6615.3206', '6615.3206', '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 (32010, '2021-11-09', 7803, 30688, 2423, NULL, '1.0000', '1.8200', '1.8200', '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 (32011, '2021-11-09', 9445, 30689, 2423, 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 (32012, '2021-11-09', 8810, 30690, 2423, NULL, '1.0000', '1.9200', '1.9200', '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 (32013, '2021-11-09', 9544, 30691, 2423, NULL, '1.0000', '25.0000', '25.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 (32014, '2021-11-09', 2100, 30692, 2423, 34534, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32015, '2021-11-09', 7641, 30693, 2423, NULL, '2.0000', '4.8283', '4.8283', '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 (32016, '2021-11-09', 8052, 30694, 2423, 36062, '1.0000', '26.0786', '26.0786', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32017, '2021-11-09', 8052, 30694, 2423, NULL, '1.0000', '26.0786', '26.0786', '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 (32018, '2021-11-09', 8767, 30695, 2423, 32146, '2.0000', '6.6900', '6.6900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32019, '2021-11-09', 8769, 30696, 2423, 39416, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32020, '2021-11-09', 7473, 30697, 2423, NULL, '5.0000', '15.4731', '15.4731', '0.6000', '0.6000', '-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 (32021, '2021-11-09', 7641, 30698, 2423, NULL, '1.0000', '4.8283', '4.8283', '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 (32022, '2021-11-09', 8300, 30699, 2423, NULL, '2.0000', '7.4300', '7.4300', '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 (32023, '2021-11-09', 7834, 30700, 2423, NULL, '1.0000', '21.0000', '21.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 (32024, '2021-11-09', 9563, 30701, 2423, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32025, '2021-11-09', 9563, 30702, 2423, 39288, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32026, '2021-11-09', 1529, 30703, 2424, NULL, '1.0000', '3.7110', '3.7110', '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 (32027, '2021-11-09', 1381, 30704, 2424, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32028, '2021-11-09', 1318, 30705, 2424, 34639, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32029, '2021-11-09', 9609, 30706, 2424, 38938, '1.0000', '6.4000', '6.4000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32030, '2021-11-09', 2656, 30707, 2424, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32031, '2021-11-09', 7666, 30708, 2424, NULL, '1.0000', '10.0000', '10.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 (32032, '2021-11-09', 7867, 30709, 2424, NULL, '2.0000', '2.7700', '2.7700', '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 (32033, '2021-11-09', 7411, 30710, 2424, NULL, '1.0000', '1.3500', '1.3500', '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 (32034, '2021-11-09', 1590, 30711, 2424, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (32035, '2021-11-09', 7565, 30712, 2424, NULL, '1.0000', '0.2000', '0.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 (32036, '2021-11-09', 3041, 30713, 2424, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '13.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 (32037, '2021-11-09', 7411, 30714, 2424, NULL, '2.0000', '1.3500', '1.3500', '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 (32038, '2021-11-09', 2994, 30715, 2424, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32039, '2021-11-09', 1621, 30716, 2424, 37805, '1.0000', '9.6682', '9.6682', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32040, '2021-11-09', 1595, 30717, 2424, 38539, '1.0000', '20.1970', '20.1970', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32041, '2021-11-09', 2088, 30718, 2424, 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 (32042, '2021-11-09', 2167, 30719, 2424, 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 (32043, '2021-11-09', 1620, 30720, 2424, 38596, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32044, '2021-11-09', 1605, 30721, 2424, 18941, '1.0000', '24.8500', '24.8500', '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 (32045, '2021-11-09', 9215, 30722, 2424, NULL, '5.0000', '2.0000', '2.0000', '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 (32046, '2021-11-09', 8608, 30723, 2424, NULL, '1.0000', '0.9000', '0.9000', '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 (32047, '2021-11-09', 1388, 30724, 2424, NULL, '1.0000', '5.3000', '5.3000', '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 (32048, '2021-11-09', 9399, 30725, 2424, 34949, '2.0000', '0.9800', '0.9800', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32049, '2021-11-09', 2699, 30726, 2424, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32050, '2021-11-09', 7743, 30727, 2424, NULL, '2.0000', '7.3900', '7.3900', '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 (32051, '2021-11-09', 1935, 30728, 2424, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32052, '2021-11-09', 1499, 30729, 2424, 38940, '1.0000', '0.4684', '0.4684', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32053, '2021-11-09', 1999, 30730, 2424, 40312, '1.0000', '7.6667', '7.6667', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32054, '2021-11-09', 7317, 30731, 2424, NULL, '1.0000', '19.5500', '19.5500', '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 (32055, '2021-11-09', 1574, 30732, 2424, 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 (32056, '2021-11-09', 1520, 30733, 2424, 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 (32057, '2021-11-09', 1339, 30734, 2424, 23699, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '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 (32058, '2021-11-09', 1337, 30735, 2424, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32059, '2021-11-09', 2298, 30736, 2424, 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 (32060, '2021-11-09', 1590, 30737, 2424, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (32061, '2021-11-09', 1805, 30738, 2424, NULL, '1.0000', '4.5244', '4.5244', '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 (32062, '2021-11-09', 2315, 30739, 2424, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '60.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32063, '2021-11-09', 1848, 30740, 2424, 19357, '3.0000', '0.4200', '0.4200', '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 (32064, '2021-11-09', 1780, 30741, 2424, 38941, '1.0000', '82.9882', '82.9882', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32065, '2021-11-09', 7411, 30742, 2424, NULL, '1.0000', '1.3500', '1.3500', '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 (32066, '2021-11-09', 1590, 30743, 2424, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (32067, '2021-11-09', 7626, 30744, 2424, 38922, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32068, '2021-11-09', 9469, 30745, 2425, 39422, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32069, '2021-11-09', 7318, 30746, 2425, 37431, '1.0000', '17.2098', '17.2098', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32070, '2021-11-09', 7877, 30747, 2425, NULL, '1.0000', '1.3600', '1.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 (32071, '2021-11-09', 2102, 30748, 2425, 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 (32072, '2021-11-09', 7930, 30749, 2425, 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 (32073, '2021-11-09', 2506, 30750, 2425, 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 (32074, '2021-11-09', 7593, 30751, 2425, 36664, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32075, '2021-11-09', 9092, 30752, 2425, 39260, '2.0000', '0.3844', '0.3844', '0.5000', '0.5000', '260.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32076, '2021-11-09', 7641, 30753, 2425, NULL, '1.0000', '4.8283', '4.8283', '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 (32077, '2021-11-09', 2906, 30754, 2425, 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 (32078, '2021-11-09', 8679, 30755, 2425, NULL, '1.0000', '28.0000', '28.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 (32079, '2021-11-09', 7457, 30756, 2425, 36031, '3.0000', '2.8603', '2.8603', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32080, '2021-11-09', 9240, 30757, 2425, NULL, '1.0000', '25.1200', '25.1200', '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 (32081, '2021-11-09', 7781, 30758, 2425, NULL, '3.0000', '4.2500', '4.2500', '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 (32082, '2021-11-09', 2906, 30759, 2425, 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 (32083, '2021-11-09', 8052, 30760, 2425, NULL, '1.0000', '26.0786', '26.0786', '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 (32084, '2021-11-09', 7671, 30761, 2425, NULL, '2.0000', '15.5000', '15.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 (32085, '2021-11-09', 7400, 30762, 2425, NULL, '1.0000', '2.6200', '2.6200', '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 (32086, '2021-11-09', 7608, 30763, 2425, NULL, '1.0000', '6.9800', '6.9800', '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 (32087, '2021-11-09', 2713, 30764, 2425, 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 (32088, '2021-11-09', 2656, 30765, 2425, 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 (32089, '2021-11-09', 7641, 30766, 2425, NULL, '1.0000', '4.8283', '4.8283', '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 (32090, '2021-11-09', 9407, 30767, 2425, 30926, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32091, '2021-11-09', 2753, 30768, 2425, 39399, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32092, '2021-11-09', 7775, 30769, 2425, 39642, '1.0000', '-2.9800', '-2.9800', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32093, '2021-11-09', 8959, 30770, 2425, NULL, '3.0000', '5.3000', '5.3000', '17.6000', '17.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 (32094, '2021-11-09', 8903, 30771, 2425, 37394, '1.0000', '18.2043', '18.2043', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32095, '2021-11-09', 7641, 30772, 2425, NULL, '1.0000', '4.8283', '4.8283', '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 (32096, '2021-11-09', 8166, 30773, 2425, NULL, '1.0000', '4.6000', '4.6000', '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 (32097, '2021-11-09', 2315, 30774, 2425, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '84.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32098, '2021-11-09', 9456, 30775, 2425, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32099, '2021-11-09', 7507, 30776, 2425, NULL, '3.0000', '6.5000', '6.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 (32100, '2021-11-09', 1837, 30777, 2425, 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 (32101, '2021-11-09', 1452, 30778, 2425, NULL, '1.0000', '1.2300', '1.2300', '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 (32102, '2021-11-09', 8097, 30779, 2425, NULL, '2.0000', '3.3994', '3.3994', '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 (32103, '2021-11-09', 7411, 30780, 2426, NULL, '1.0000', '1.3500', '1.3500', '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 (32104, '2021-11-09', 1912, 30781, 2426, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32105, '2021-11-09', 2088, 30782, 2426, 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 (32106, '2021-11-09', 2004, 30783, 2426, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32107, '2021-11-09', 7743, 30784, 2426, NULL, '1.0000', '7.3900', '7.3900', '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 (32108, '2021-11-09', 2660, 30785, 2426, 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 (32109, '2021-11-09', 2315, 30786, 2426, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '58.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32110, '2021-11-09', 1851, 30787, 2426, 29648, '1.0000', '12.2777', '12.2777', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32111, '2021-11-09', 1751, 30788, 2426, 19368, '1.0000', '3.6900', '3.6900', '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 (32112, '2021-11-09', 7886, 30789, 2426, NULL, '1.0000', '14.5000', '14.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 (32113, '2021-11-09', 2379, 30790, 2426, 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 (32114, '2021-11-09', 2169, 30791, 2426, NULL, '4.0000', '1.1500', '1.1500', '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 (32115, '2021-11-09', 1574, 30792, 2426, NULL, '5.0000', '90.0000', '90.0000', '2.5000', '2.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 (32116, '2021-11-09', 1966, 30793, 2426, 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 (32117, '2021-11-09', 8941, 30794, 2427, NULL, '1.0000', '12.0000', '12.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 (32118, '2021-11-09', 7514, 30795, 2427, NULL, '2.0000', '12.9983', '12.9983', '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 (32119, '2021-11-09', 8336, 30796, 2427, NULL, '2.0000', '3.4000', '3.4000', '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 (32120, '2021-11-09', 7391, 30797, 2427, NULL, '1.0000', '-26.2683', '-26.2683', '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 (32121, '2021-11-09', 7465, 30798, 2427, 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 (32122, '2021-11-09', 7459, 30799, 2427, NULL, '4.0000', '40.3500', '40.3500', '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 (32123, '2021-11-09', 1439, 30800, 2428, NULL, '1.0000', '1.0000', '1.0000', '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 (32124, '2021-11-09', 1935, 30801, 2428, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32125, '2021-11-09', 7514, 30802, 2428, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32126, '2021-11-09', 3058, 30803, 2428, 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 (32127, '2021-11-09', 1674, 30804, 2428, NULL, '1.0000', '3.2473', '3.2473', '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 (32128, '2021-11-09', 2492, 30805, 2428, 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 (32129, '2021-11-09', 1602, 30806, 2428, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32130, '2021-11-09', 1689, 30807, 2428, 39798, '1.0000', '12.9745', '12.9745', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32131, '2021-11-09', 2221, 30808, 2428, 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 (32132, '2021-11-09', 2415, 30809, 2428, 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 (32133, '2021-11-10', 2823, 30810, 2429, 19684, '-10.0000', '11.2100', '11.2100', '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 (32134, '2021-11-10', 2823, 30810, 2429, NULL, '11.0000', '11.2100', '11.2100', '7.5000', '7.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 (32135, '2021-11-10', 2289, 30811, 2429, 2949, '-32.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 (32136, '2021-11-10', 2289, 30811, 2429, NULL, '35.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32137, '2021-11-10', 1841, 30812, 2429, 18870, '3.0000', '142.5780', '142.5780', '0.5000', '0.5000', '6.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 (32138, '2021-11-10', 2169, 30813, 2429, 1382, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '32.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 (32139, '2021-11-10', 1760, 30814, 2429, 22256, '1.0000', '111.8384', '111.8384', '1.0000', '1.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 (32140, '2021-11-10', 2479, 30815, 2429, 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 (32141, '2021-11-10', 2763, 30816, 2429, 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 (32142, '2021-11-10', 2602, 30817, 2429, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '12.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 (32143, '2021-11-10', 2694, 30818, 2429, 12283, '-3.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 (32144, '2021-11-10', 2694, 30818, 2429, NULL, '4.0000', '3.5000', '3.5000', '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 (32145, '2021-11-10', 2558, 30819, 2429, 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 (32146, '2021-11-10', 1841, 30820, 2429, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '7.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 (32147, '2021-11-10', 1840, 30821, 2429, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32148, '2021-11-10', 2289, 30822, 2429, 2949, '-32.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 (32149, '2021-11-10', 2289, 30822, 2429, 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 (32150, '2021-11-10', 8165, 30823, 2429, NULL, '1.0000', '8.0000', '8.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 (32151, '2021-11-10', 1757, 30824, 2429, 3167, '-5.0000', '4.4000', '4.4000', '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 (32152, '2021-11-10', 1757, 30824, 2429, NULL, '6.0000', '4.4000', '4.4000', '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 (32153, '2021-11-10', 1935, 30825, 2429, 5586, '-31.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 (32154, '2021-11-10', 1935, 30825, 2429, NULL, '32.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32155, '2021-11-10', 1885, 30826, 2429, 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 (32156, '2021-11-10', 2360, 30827, 2429, 3862, '-17.0000', '0.5200', '0.5200', '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 (32157, '2021-11-10', 2360, 30827, 2429, NULL, '18.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (32158, '2021-11-10', 1665, 30828, 2429, 3235, '-26.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 (32159, '2021-11-10', 1665, 30828, 2429, NULL, '27.0000', '1.3000', '1.3000', '2.0000', '2.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 (32160, '2021-11-10', 2135, 30829, 2429, 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 (32161, '2021-11-10', 1511, 30830, 2429, NULL, '1.0000', '19.0000', '19.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 (32162, '2021-11-10', 1328, 30831, 2429, 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 (32163, '2021-11-10', 2169, 30832, 2429, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '33.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 (32164, '2021-11-10', 2240, 30833, 2429, 13712, '-1.0000', '36.9100', '36.9100', '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 (32165, '2021-11-10', 2240, 30833, 2429, NULL, '2.0000', '36.9100', '36.9100', '44.0000', '44.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 (32166, '2021-11-10', 2821, 30834, 2429, 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 (32167, '2021-11-10', 2232, 30835, 2429, 2776, '-1.0000', '29.0000', '29.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32168, '2021-11-10', 2232, 30835, 2429, NULL, '2.0000', '29.0000', '29.0000', '42.0000', '42.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 (32169, '2021-11-10', 1525, 30836, 2429, NULL, '2.0000', '4.9100', '4.9100', '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 (32170, '2021-11-10', 1667, 30837, 2429, 9745, '-23.0000', '5.9400', '5.9400', '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 (32171, '2021-11-10', 1667, 30837, 2429, NULL, '24.0000', '5.9400', '5.9400', '8.5000', '8.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 (32172, '2021-11-10', 1666, 30838, 2429, 3236, '-6.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 (32173, '2021-11-10', 1666, 30838, 2429, NULL, '7.0000', '2.7100', '2.7100', '3.5000', '3.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 (32174, '2021-11-10', 2858, 30839, 2429, 17772, '-8.0000', '1.0000', '1.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 (32175, '2021-11-10', 2858, 30839, 2429, NULL, '9.0000', '1.0000', '1.0000', '5.0000', '5.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 (32176, '2021-11-10', 1439, 30840, 2429, 4702, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '4.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 (32177, '2021-11-10', 2169, 30841, 2429, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '33.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 (32178, '2021-11-10', 1665, 30842, 2429, 3235, '-26.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 (32179, '2021-11-10', 1665, 30842, 2429, NULL, '27.0000', '1.3000', '1.3000', '2.0000', '2.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 (32180, '2021-11-10', 1413, 30843, 2429, 22306, '1.0000', '16.0000', '16.0000', '22.5000', '22.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 (32181, '2021-11-10', 2260, 30844, 2429, 18628, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.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 (32182, '2021-11-10', 1432, 30845, 2429, 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 (32183, '2021-11-10', 3017, 30846, 2429, NULL, '1.0000', '3.9000', '3.9000', '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 (32184, '2021-11-10', 2938, 30847, 2429, NULL, '1.0000', '6.7900', '6.7900', '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 (32185, '2021-11-10', 1855, 30848, 2429, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (32186, '2021-11-10', 2260, 30849, 2429, 18628, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.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 (32187, '2021-11-10', 2574, 30850, 2429, 7383, '10.0000', '0.7800', '0.7800', '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 (32188, '2021-11-10', 1641, 30851, 2429, 3214, '-94.0000', '0.9800', '0.9800', '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 (32189, '2021-11-10', 1641, 30851, 2429, NULL, '106.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32190, '2021-11-10', 2825, 30852, 2429, NULL, '1.0000', '12.0000', '12.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 (32191, '2021-11-10', 3072, 30853, 2429, 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 (32192, '2021-11-10', 1651, 30854, 2429, 3222, '-30.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 (32193, '2021-11-10', 1651, 30854, 2429, NULL, '31.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (32194, '2021-11-10', 1826, 30855, 2429, 15039, '-4.0000', '0.2600', '0.2600', '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 (32195, '2021-11-10', 1826, 30855, 2429, NULL, '5.0000', '0.2600', '0.2600', '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 (32196, '2021-11-10', 1386, 30856, 2429, 22316, '1.0000', '4.5000', '4.5000', '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 (32197, '2021-11-10', 2109, 30857, 2429, 1053, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '115.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 (32198, '2021-11-10', 2566, 30858, 2429, 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 (32199, '2021-11-10', 2224, 30859, 2429, 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 (32200, '2021-11-10', 1380, 30860, 2430, 3356, '1.0000', '1640.1972', '1640.1972', '15.5000', '15.5000', '0.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 (32201, '2021-11-10', 1380, 30860, 2430, 280, '1.0000', '1640.1972', '1640.1972', '15.5000', '15.5000', '0.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 (32202, '2021-11-10', 1379, 30861, 2430, 279, '1.0000', '85.2466', '85.2466', '110.0000', '110.0000', '0.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 (32203, '2021-11-10', 1379, 30861, 2430, NULL, '1.0000', '85.2466', '85.2466', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32204, '2021-11-10', 7630, 30862, 2430, NULL, '12.0000', '10.0000', '10.0000', '3.2000', '3.2000', '-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 (32205, '2021-11-10', 2307, 30863, 2431, 34954, '1.0000', '142.8300', '142.8300', '190.0000', '190.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32206, '2021-11-10', 2825, 30864, 2431, NULL, '1.0000', '12.0000', '12.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 (32207, '2021-11-10', 9626, 30865, 2431, 40340, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32208, '2021-11-10', 1912, 30866, 2432, 37802, '2.0000', '0.6951', '0.6951', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32209, '2021-11-10', 2315, 30867, 2432, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '56.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32210, '2021-11-10', 2864, 30868, 2432, 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 (32211, '2021-11-10', 1695, 30869, 2432, NULL, '1.0000', '14.8348', '14.8348', '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 (32212, '2021-11-10', 1702, 30870, 2432, NULL, '1.0000', '14.9700', '14.9700', '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 (32213, '2021-11-10', 1945, 30871, 2432, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.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 (32214, '2021-11-10', 7482, 30872, 2432, 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 (32215, '2021-11-10', 2916, 30873, 2432, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32216, '2021-11-10', 1863, 30874, 2432, NULL, '1.0000', '1.2830', '1.2830', '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 (32217, '2021-11-10', 7802, 30875, 2432, NULL, '2.0000', '0.9200', '0.9200', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32218, '2021-11-10', 1420, 30876, 2432, 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 (32219, '2021-11-10', 7482, 30877, 2432, 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 (32220, '2021-11-10', 1812, 30878, 2432, 34943, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32221, '2021-11-10', 2259, 30879, 2432, NULL, '1.0000', '20.0000', '20.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 (32222, '2021-11-10', 2825, 30880, 2432, NULL, '1.0000', '12.0000', '12.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 (32223, '2021-11-10', 8746, 30881, 2432, 39996, '1.0000', '4.3169', '4.3169', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32224, '2021-11-10', 1912, 30882, 2432, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32225, '2021-11-10', 1871, 30883, 2432, 37801, '10.0000', '2.9308', '2.9308', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32226, '2021-11-10', 2992, 30884, 2432, 23119, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (32227, '2021-11-10', 2070, 30885, 2432, 29635, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32228, '2021-11-10', 1912, 30886, 2432, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32229, '2021-11-10', 1608, 30887, 2432, 34659, '1.0000', '3.5436', '3.5436', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32230, '2021-11-10', 1863, 30888, 2432, NULL, '1.0000', '1.2830', '1.2830', '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 (32231, '2021-11-10', 9469, 30889, 2432, NULL, '1.0000', '2.3000', '2.3000', '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 (32232, '2021-11-10', 2943, 30890, 2432, 38528, '1.0000', '2.8077', '2.8077', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32233, '2021-11-10', 2642, 30891, 2432, 40111, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32234, '2021-11-10', 1837, 30892, 2433, 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 (32235, '2021-11-10', 2916, 30893, 2433, 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 (32236, '2021-11-10', 9577, 30894, 2433, NULL, '2.0000', '0.3200', '0.3200', '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 (32237, '2021-11-10', 9089, 30895, 2433, NULL, '1.0000', '3.8000', '3.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 (32238, '2021-11-10', 1935, 30896, 2433, 5586, '-32.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 (32239, '2021-11-10', 1935, 30896, 2433, NULL, '33.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (32240, '2021-11-10', 2109, 30897, 2433, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '113.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 (32241, '2021-11-10', 2681, 30898, 2433, 12164, '-9.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 (32242, '2021-11-10', 2681, 30898, 2433, NULL, '10.0000', '12.5000', '12.5000', '16.5000', '16.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 (32243, '2021-11-10', 1645, 30899, 2433, 3217, '-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 (32244, '2021-11-10', 1645, 30899, 2433, 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 (32245, '2021-11-10', 2233, 30900, 2433, 2777, '-9.0000', '19.0200', '19.0200', '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 (32246, '2021-11-10', 2233, 30900, 2433, NULL, '11.0000', '19.0200', '19.0200', '29.0000', '29.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 (32247, '2021-11-10', 2699, 30901, 2433, 12529, '-13.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 (32248, '2021-11-10', 2699, 30901, 2433, NULL, '14.0000', '3.0000', '3.0000', '4.5000', '4.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 (32249, '2021-11-10', 2104, 30902, 2433, 1048, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '289.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 (32250, '2021-11-10', 1840, 30903, 2433, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32251, '2021-11-10', 2289, 30904, 2433, 2949, '-37.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 (32252, '2021-11-10', 2289, 30904, 2433, NULL, '39.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32253, '2021-11-10', 1841, 30905, 2433, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.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 (32254, '2021-11-10', 2237, 30906, 2433, 2781, '-16.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 (32255, '2021-11-10', 2237, 30906, 2433, NULL, '17.0000', '1.0600', '1.0600', '2.0000', '2.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 (32256, '2021-11-10', 1637, 30907, 2433, NULL, '1.0000', '10.2000', '10.2000', '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 (32257, '2021-11-10', 2519, 30908, 2433, NULL, '3.0000', '11.0000', '11.0000', '14.5000', '14.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 (32258, '2021-11-10', 1641, 30909, 2433, 3214, '-106.0000', '0.9800', '0.9800', '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 (32259, '2021-11-10', 1641, 30909, 2433, NULL, '112.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32260, '2021-11-10', 1525, 30910, 2433, NULL, '4.0000', '4.9100', '4.9100', '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 (32261, '2021-11-10', 2858, 30911, 2433, 17772, '-9.0000', '1.0000', '1.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 (32262, '2021-11-10', 2858, 30911, 2433, NULL, '10.0000', '1.0000', '1.0000', '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 (32263, '2021-11-10', 1321, 30912, 2434, NULL, '1.0000', '9.8000', '9.8000', '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 (32264, '2021-11-10', 1401, 30913, 2434, 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 (32265, '2021-11-10', 7391, 30914, 2435, NULL, '1.0000', '-26.2683', '-26.2683', '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 (32266, '2021-11-10', 8417, 30915, 2435, NULL, '1.0000', '5.8000', '5.8000', '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 (32267, '2021-11-10', 8810, 30916, 2435, NULL, '2.0000', '1.9200', '1.9200', '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 (32268, '2021-11-10', 7820, 30917, 2435, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32269, '2021-11-10', 8858, 30918, 2435, NULL, '2.0000', '8.5000', '8.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 (32270, '2021-11-10', 8765, 30919, 2435, 39427, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32271, '2021-11-10', 7967, 30920, 2435, 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 (32272, '2021-11-10', 7444, 30921, 2435, 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 (32273, '2021-11-10', 9272, 30922, 2435, NULL, '1.0000', '3.1000', '3.1000', '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 (32274, '2021-11-10', 9154, 30923, 2435, 37372, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32275, '2021-11-10', 7862, 30924, 2435, NULL, '1.0000', '17.8000', '17.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 (32276, '2021-11-10', 8804, 30925, 2435, NULL, '1.0000', '75.0000', '75.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 (32277, '2021-11-10', 7509, 30926, 2435, 39623, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32278, '2021-11-10', 7671, 30927, 2435, NULL, '2.0000', '15.5000', '15.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 (32279, '2021-11-10', 7711, 30928, 2435, NULL, '1.0000', '-78.4806', '-78.4806', '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 (32280, '2021-11-10', 8918, 30929, 2435, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32281, '2021-11-10', 7641, 30930, 2435, NULL, '1.0000', '3.6369', '3.6369', '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 (32282, '2021-11-10', 9620, 30931, 2435, 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 (32283, '2021-11-10', 8915, 30932, 2435, NULL, '1.0000', '29.3500', '29.3500', '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 (32284, '2021-11-10', 9286, 30933, 2435, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '12.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32285, '2021-11-10', 1867, 30934, 2435, 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 (32286, '2021-11-10', 1542, 30935, 2435, 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 (32287, '2021-11-10', 9401, 30936, 2435, 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 (32288, '2021-11-10', 1947, 30937, 2435, NULL, '1.0000', '6615.3206', '6615.3206', '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 (32289, '2021-11-10', 7993, 30938, 2435, NULL, '1.0000', '41.0000', '41.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32290, '2021-11-10', 2476, 30939, 2435, 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 (32291, '2021-11-10', 7703, 30940, 2435, NULL, '2.0000', '22.9900', '22.9900', '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 (32292, '2021-11-10', 7779, 30941, 2435, NULL, '1.0000', '8.3800', '8.3800', '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 (32293, '2021-11-10', 9271, 30942, 2435, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32294, '2021-11-10', 8362, 30943, 2435, NULL, '2.0000', '4.1000', '4.1000', '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 (32295, '2021-11-10', 7636, 30944, 2435, NULL, '1.0000', '11.8700', '11.8700', '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 (32296, '2021-11-10', 8672, 30945, 2435, NULL, '2.0000', '5.4500', '5.4500', '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 (32297, '2021-11-10', 7514, 30946, 2435, NULL, '1.0000', '12.9983', '12.9983', '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 (32298, '2021-11-10', 7708, 30947, 2435, NULL, '1.0000', '6.1400', '6.1400', '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 (32299, '2021-11-10', 8059, 30948, 2435, 40418, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32300, '2021-11-10', 2284, 30949, 2435, 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 (32301, '2021-11-10', 7558, 30950, 2435, NULL, '10.0000', '2.2000', '2.2000', '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 (32302, '2021-11-10', 7606, 30951, 2435, 34532, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32303, '2021-11-10', 9274, 30952, 2435, NULL, '1.0000', '3.1000', '3.1000', '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 (32304, '2021-11-10', 9092, 30953, 2435, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '258.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32305, '2021-11-10', 9183, 30954, 2435, 30188, '1.0000', '8.3000', '8.3000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32306, '2021-11-10', 9496, 30955, 2435, 38422, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32307, '2021-11-10', 1867, 30956, 2435, 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 (32308, '2021-11-10', 7890, 30957, 2435, NULL, '1.0000', '1.0000', '1.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32309, '2021-11-10', 8941, 30958, 2435, NULL, '1.0000', '12.0000', '12.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 (32310, '2021-11-10', 1760, 30959, 2435, 37408, '2.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32311, '2021-11-10', 8539, 30960, 2435, 31000, '3.0000', '4.4300', '4.4300', '0.8000', '0.8000', '41.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32312, '2021-11-10', 8849, 30961, 2435, NULL, '1.0000', '1.0700', '1.0700', '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 (32313, '2021-11-10', 7763, 30962, 2435, NULL, '1.0000', '1.1300', '1.1300', '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 (32314, '2021-11-10', 7959, 30963, 2435, NULL, '2.0000', '9.6000', '9.6000', '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 (32315, '2021-11-10', 9541, 30964, 2435, NULL, '2.0000', '42.0000', '42.0000', '56.0000', '56.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 (32316, '2021-11-10', 7820, 30965, 2435, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32317, '2021-11-10', 8666, 30966, 2435, NULL, '1.0000', '0.4600', '0.4600', '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 (32318, '2021-11-10', 7507, 30967, 2435, NULL, '3.0000', '6.5000', '6.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 (32319, '2021-11-10', 8485, 30968, 2435, NULL, '1.0000', '7.0400', '7.0400', '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 (32320, '2021-11-10', 7587, 30969, 2435, NULL, '1.0000', '1.5000', '1.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 (32321, '2021-11-10', 2167, 30970, 2436, 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 (32322, '2021-11-10', 2293, 30971, 2436, NULL, '1.0000', '1.4400', '1.4400', '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 (32323, '2021-11-10', 1746, 30972, 2436, 19863, '1.0000', '3.5000', '3.5000', '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 (32324, '2021-11-10', 2302, 30973, 2436, 39904, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32325, '2021-11-10', 1519, 30974, 2436, 33141, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32326, '2021-11-10', 2342, 30975, 2436, 19387, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '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 (32327, '2021-11-10', 2759, 30976, 2436, 38915, '1.0000', '3.9439', '3.9439', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32328, '2021-11-10', 2241, 30977, 2436, 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 (32329, '2021-11-10', 2546, 30978, 2436, 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 (32330, '2021-11-10', 1807, 30979, 2436, NULL, '1.0000', '41.5000', '41.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 (32331, '2021-11-10', 1529, 30980, 2436, NULL, '1.0000', '3.7110', '3.7110', '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 (32332, '2021-11-10', 7317, 30981, 2436, NULL, '1.0000', '19.5500', '19.5500', '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 (32333, '2021-11-10', 7411, 30982, 2436, NULL, '1.0000', '1.3500', '1.3500', '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 (32334, '2021-11-10', 7317, 30983, 2436, NULL, '1.0000', '19.5500', '19.5500', '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 (32335, '2021-11-10', 2315, 30984, 2436, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '55.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32336, '2021-11-10', 8202, 30985, 2436, NULL, '1.0000', '1.6600', '1.6600', '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 (32337, '2021-11-10', 2293, 30986, 2436, NULL, '1.0000', '1.4400', '1.4400', '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 (32338, '2021-11-10', 2491, 30987, 2436, 13774, '1.0000', '12.2000', '12.2000', '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 (32339, '2021-11-10', 2354, 30988, 2436, 38531, '1.0000', '5.0600', '5.0600', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32340, '2021-11-10', 2655, 30989, 2436, 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 (32341, '2021-11-10', 7514, 30990, 2436, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32342, '2021-11-10', 7411, 30991, 2436, NULL, '2.0000', '1.3500', '1.3500', '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 (32343, '2021-11-10', 1499, 30992, 2436, 38940, '2.0000', '0.4684', '0.4684', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32344, '2021-11-10', 8059, 30993, 2436, 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 (32345, '2021-11-10', 2374, 30994, 2436, 19836, '1.0000', '6.1000', '6.1000', '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 (32346, '2021-11-10', 2169, 30995, 2436, NULL, '2.0000', '1.1500', '1.1500', '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 (32347, '2021-11-10', 1805, 30996, 2436, NULL, '1.0000', '4.5244', '4.5244', '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 (32348, '2021-11-10', 1910, 30997, 2436, 23140, '2.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (32349, '2021-11-10', 1307, 30998, 2436, 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 (32350, '2021-11-10', 1321, 30999, 2436, NULL, '1.0000', '9.8000', '9.8000', '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 (32351, '2021-11-10', 7899, 31000, 2436, 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 (32352, '2021-11-10', 7411, 31001, 2436, NULL, '1.0000', '1.3500', '1.3500', '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 (32353, '2021-11-10', 8984, 31002, 2436, NULL, '1.0000', '-100.8495', '-100.8495', '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 (32354, '2021-11-10', 2242, 31003, 2437, 37444, '1.0000', '0.5518', '0.5518', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32355, '2021-11-10', 1529, 31004, 2437, NULL, '1.0000', '3.7110', '3.7110', '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 (32356, '2021-11-10', 1966, 31005, 2437, 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 (32357, '2021-11-10', 2280, 31006, 2437, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (32358, '2021-11-10', 2699, 31007, 2437, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32359, '2021-11-10', 2315, 31008, 2437, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '52.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32360, '2021-11-10', 7862, 31009, 2437, 39847, '1.0000', '3.8500', '3.8500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32361, '2021-11-10', 2302, 31010, 2437, 39904, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32362, '2021-11-10', 1325, 31011, 2437, NULL, '1.0000', '23.9800', '23.9800', '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 (32363, '2021-11-10', 2958, 31012, 2437, 40132, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32364, '2021-11-10', 2315, 31013, 2437, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '54.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32365, '2021-11-10', 2916, 31014, 2438, 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 (32366, '2021-11-10', 2251, 31015, 2438, 2788, '-4.0000', '10.9700', '10.9700', '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 (32367, '2021-11-10', 2251, 31015, 2438, NULL, '5.0000', '10.9700', '10.9700', '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 (32368, '2021-11-10', 1353, 31016, 2438, NULL, '1.0000', '20.5000', '20.5000', '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 (32369, '2021-11-10', 2353, 31017, 2438, 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 (32370, '2021-11-10', 2412, 31018, 2438, 22258, '4.0000', '0.5200', '0.5200', '1.0000', '1.0000', '24.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 (32371, '2021-11-10', 2670, 31019, 2438, NULL, '2.0000', '0.3200', '0.3200', '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 (32372, '2021-11-10', 1665, 31020, 2438, 3235, '-28.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 (32373, '2021-11-10', 1665, 31020, 2438, NULL, '30.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (32374, '2021-11-10', 1528, 31021, 2438, 18895, '10.0000', '38.6400', '38.6400', '6.0000', '6.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 (32375, '2021-11-10', 2635, 31022, 2438, 10297, '-7.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 (32376, '2021-11-10', 2635, 31022, 2438, NULL, '8.0000', '3.0000', '3.0000', '4.0000', '4.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 (32377, '2021-11-10', 3013, 31023, 2438, 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 (32378, '2021-11-10', 1362, 31024, 2438, 258, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.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 (32379, '2021-11-10', 2918, 31025, 2438, NULL, '1.0000', '14.9400', '14.9400', '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 (32380, '2021-11-10', 2302, 31026, 2438, 2963, '-20.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 (32381, '2021-11-10', 2302, 31026, 2438, NULL, '21.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32382, '2021-11-10', 1863, 31027, 2438, 10808, '-75.0000', '0.4136', '0.4136', '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 (32383, '2021-11-10', 1863, 31027, 2438, NULL, '78.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32384, '2021-11-10', 2411, 31028, 2438, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '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 (32385, '2021-11-10', 1303, 31029, 2438, 32, '4.0000', '54.5520', '54.5520', '4.0000', '4.0000', '90.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 (32386, '2021-11-10', 1954, 31030, 2438, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '6.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 (32387, '2021-11-10', 8594, 31031, 2438, 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 (32388, '2021-11-10', 1519, 31032, 2438, 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 (32389, '2021-11-10', 2262, 31033, 2438, 2798, '-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 (32390, '2021-11-10', 2262, 31033, 2438, 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 (32391, '2021-11-10', 9517, 31034, 2438, NULL, '1.0000', '18.0000', '18.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 (32392, '2021-11-10', 1334, 31035, 2438, 230, '1.0000', '0.7000', '0.7000', '1.5000', '1.5000', '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 (32393, '2021-11-10', 1337, 31036, 2438, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.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 (32394, '2021-11-10', 1499, 31037, 2439, 20585, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '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 (32395, '2021-11-10', 2167, 31038, 2439, 17165, '-11.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 (32396, '2021-11-10', 2167, 31038, 2439, NULL, '12.0000', '2.2000', '2.2000', '3.0000', '3.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 (32397, '2021-11-10', 1863, 31039, 2439, 10808, '-78.0000', '0.4136', '0.4136', '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 (32398, '2021-11-10', 1863, 31039, 2439, NULL, '79.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32399, '2021-11-10', 7588, 31040, 2440, NULL, '1.0000', '7.0762', '7.0762', '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 (32400, '2021-11-10', 8135, 31041, 2440, NULL, '1.0000', '13.9000', '13.9000', '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 (32401, '2021-11-10', 7465, 31042, 2440, 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 (32402, '2021-11-10', 9555, 31043, 2440, 40396, '1.0000', '40.0000', '40.0000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32403, '2021-11-10', 8203, 31044, 2440, NULL, '10.0000', '1.0075', '1.0075', '0.5000', '0.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 (32404, '2021-11-10', 7518, 31045, 2440, NULL, '1.0000', '-67.2578', '-67.2578', '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 (32405, '2021-11-10', 8135, 31046, 2440, NULL, '1.0000', '13.9000', '13.9000', '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 (32406, '2021-11-10', 7496, 31047, 2440, NULL, '1.0000', '0.9600', '0.9600', '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 (32407, '2021-11-10', 7532, 31048, 2440, NULL, '1.0000', '5.2000', '5.2000', '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 (32408, '2021-11-10', 7671, 31049, 2440, NULL, '10.0000', '15.5000', '15.5000', '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 (32409, '2021-11-10', 2350, 31050, 2440, NULL, '1.0000', '10.3800', '10.3800', '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 (32410, '2021-11-10', 7444, 31051, 2440, 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 (32411, '2021-11-10', 7411, 31052, 2440, NULL, '1.0000', '1.3500', '1.3500', '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 (32412, '2021-11-10', 8836, 31053, 2440, NULL, '2.0000', '12.0000', '12.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 (32413, '2021-11-10', 9556, 31054, 2440, 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 (32414, '2021-11-10', 9092, 31055, 2440, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '254.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32415, '2021-11-10', 7671, 31056, 2440, NULL, '1.0000', '15.5000', '15.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 (32416, '2021-11-10', 2699, 31057, 2440, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32417, '2021-11-10', 7671, 31058, 2440, NULL, '1.0000', '15.5000', '15.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 (32418, '2021-11-10', 8702, 31059, 2440, NULL, '1.0000', '3.6700', '3.6700', '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 (32419, '2021-11-10', 7892, 31060, 2440, NULL, '1.0000', '4.2000', '4.2000', '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 (32420, '2021-11-10', 7457, 31061, 2440, 30064, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '79.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32421, '2021-11-10', 9267, 31062, 2440, 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 (32422, '2021-11-10', 7318, 31063, 2440, 37431, '1.0000', '17.2098', '17.2098', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32423, '2021-11-10', 9496, 31064, 2440, 38422, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32424, '2021-11-10', 2699, 31065, 2440, 31907, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32425, '2021-11-10', 7806, 31066, 2440, NULL, '5.0000', '14.0000', '14.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 (32426, '2021-11-10', 7954, 31067, 2440, NULL, '1.0000', '23.1511', '23.1511', '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 (32427, '2021-11-10', 9445, 31068, 2440, 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 (32428, '2021-11-10', 1530, 31069, 2441, 7391, '-2.0000', '28.7012', '28.7012', '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 (32429, '2021-11-10', 1530, 31069, 2441, NULL, '3.0000', '28.7012', '28.7012', '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 (32430, '2021-11-10', 1867, 31070, 2441, NULL, '1.0000', '1.0500', '1.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 (32431, '2021-11-10', 2643, 31071, 2441, NULL, '2.0000', '0.8700', '0.8700', '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 (32432, '2021-11-10', 2287, 31072, 2441, 2947, '-3.0000', '1.8000', '1.8000', '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 (32433, '2021-11-10', 2287, 31072, 2441, NULL, '4.0000', '1.8000', '1.8000', '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 (32434, '2021-11-10', 2865, 31073, 2441, 17692, '-2.0000', '2.8000', '2.8000', '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 (32435, '2021-11-10', 2865, 31073, 2441, NULL, '3.0000', '2.8000', '2.8000', '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 (32436, '2021-11-10', 1619, 31074, 2441, 20621, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '6.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 (32437, '2021-11-10', 2829, 31075, 2441, 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 (32438, '2021-11-10', 1863, 31076, 2441, 10808, '-79.0000', '0.4136', '0.4136', '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 (32439, '2021-11-10', 1863, 31076, 2441, NULL, '81.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32440, '2021-11-10', 1888, 31077, 2441, 683, '1.0000', '134.8400', '134.8400', '21.0000', '21.0000', '1.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 (32441, '2021-11-10', 2624, 31078, 2441, 19678, '-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 (32442, '2021-11-10', 2624, 31078, 2441, 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 (32443, '2021-11-10', 2167, 31079, 2441, 17165, '-12.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 (32444, '2021-11-10', 2167, 31079, 2441, NULL, '13.0000', '2.2000', '2.2000', '3.0000', '3.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 (32445, '2021-11-10', 2640, 31080, 2441, NULL, '1.0000', '7.0400', '7.0400', '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 (32446, '2021-11-10', 8972, 31081, 2442, NULL, '2.0000', '4.5000', '4.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 (32447, '2021-11-10', 8941, 31082, 2442, NULL, '1.0000', '12.0000', '12.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 (32448, '2021-11-10', 7673, 31083, 2442, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32449, '2021-11-10', 7819, 31084, 2442, NULL, '1.0000', '9.5000', '9.5000', '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 (32450, '2021-11-10', 7889, 31085, 2442, 38147, '3.0000', '-8.6571', '-8.6571', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32451, '2021-11-10', 7954, 31086, 2442, NULL, '1.0000', '23.1511', '23.1511', '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 (32452, '2021-11-10', 7675, 31087, 2443, NULL, '1.0000', '11.4300', '11.4300', '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 (32453, '2021-11-10', 2332, 31088, 2444, 38567, '1.0000', '5.0900', '5.0900', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32454, '2021-11-10', 3082, 31089, 2444, 25167, '1.0000', '6.0000', '6.0000', '9.0000', '9.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 (32455, '2021-11-10', 1573, 31090, 2444, NULL, '1.0000', '24.6200', '24.6200', '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 (32456, '2021-11-10', 7743, 31091, 2444, NULL, '1.0000', '7.3900', '7.3900', '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 (32457, '2021-11-10', 8000, 31092, 2444, NULL, '2.0000', '25.8200', '25.8200', '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 (32458, '2021-11-10', 1529, 31093, 2444, NULL, '1.0000', '3.7110', '3.7110', '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 (32459, '2021-11-10', 8866, 31094, 2444, NULL, '1.0000', '0.4300', '0.4300', '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 (32460, '2021-11-10', 2950, 31095, 2444, 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 (32461, '2021-11-10', 2384, 31096, 2444, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (32462, '2021-11-10', 1425, 31097, 2444, 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 (32463, '2021-11-10', 2384, 31098, 2444, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (32464, '2021-11-10', 3009, 31099, 2445, NULL, '2.0000', '22.0000', '22.0000', '14.5000', '14.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 (32465, '2021-11-10', 2823, 31100, 2445, 19684, '-11.0000', '11.2100', '11.2100', '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 (32466, '2021-11-10', 2823, 31100, 2445, NULL, '12.0000', '11.2100', '11.2100', '7.5000', '7.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 (32467, '2021-11-10', 2594, 31101, 2445, NULL, '1.0000', '16.4000', '16.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32468, '2021-11-10', 2930, 31102, 2445, 18973, '1.0000', '37.7400', '37.7400', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 139);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32469, '2021-11-10', 1668, 31103, 2445, 3238, '-1.0000', '13.0442', '13.0442', '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 (32470, '2021-11-10', 1668, 31103, 2445, NULL, '2.0000', '13.0442', '13.0442', '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 (32471, '2021-11-10', 1651, 31104, 2445, 3222, '-31.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 (32472, '2021-11-10', 1651, 31104, 2445, NULL, '32.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32473, '2021-11-10', 1905, 31105, 2445, 5443, '-4.0000', '0.4000', '0.4000', '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 (32474, '2021-11-10', 1905, 31105, 2445, NULL, '6.0000', '0.4000', '0.4000', '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 (32475, '2021-11-10', 1602, 31106, 2445, 5897, '-37.0000', '6.7859', '6.7859', '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 (32476, '2021-11-10', 1602, 31106, 2445, NULL, '38.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32477, '2021-11-10', 1555, 31107, 2445, 1626, '1.0000', '22.2400', '22.2400', '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 (32478, '2021-11-10', 2879, 31108, 2445, 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 (32479, '2021-11-10', 1666, 31109, 2445, 3236, '-7.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 (32480, '2021-11-10', 1666, 31109, 2445, NULL, '8.0000', '2.7100', '2.7100', '3.5000', '3.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 (32481, '2021-11-10', 1595, 31110, 2445, 8360, '-1.0000', '20.6900', '20.6900', '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 (32482, '2021-11-10', 1595, 31110, 2445, NULL, '2.0000', '20.6900', '20.6900', '26.5000', '26.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 (32483, '2021-11-10', 1863, 31111, 2445, 10808, '-81.0000', '0.4136', '0.4136', '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 (32484, '2021-11-10', 1863, 31111, 2445, NULL, '82.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32485, '2021-11-11', 1698, 31112, 2446, 34937, '1.0000', '8.4500', '8.4500', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32486, '2021-11-11', 2100, 31113, 2446, 31962, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32487, '2021-11-11', 1772, 31114, 2446, 39905, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32488, '2021-11-11', 1945, 31115, 2446, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '0.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 (32489, '2021-11-11', 2237, 31116, 2446, NULL, '1.0000', '-64.5817', '-64.5817', '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 (32490, '2021-11-11', 2673, 31117, 2446, 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 (32491, '2021-11-11', 1380, 31118, 2446, 25020, '2.0000', '7.7000', '7.7000', '15.5000', '15.5000', '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 (32492, '2021-11-11', 2699, 31119, 2446, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32493, '2021-11-11', 7564, 31120, 2446, NULL, '1.0000', '0.6400', '0.6400', '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 (32494, '2021-11-11', 2004, 31121, 2446, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32495, '2021-11-11', 1307, 31122, 2446, 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 (32496, '2021-11-11', 1381, 31123, 2446, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32497, '2021-11-11', 1612, 31124, 2446, 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 (32498, '2021-11-11', 1950, 31125, 2446, NULL, '1.0000', '3.5525', '3.5525', '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 (32499, '2021-11-11', 2567, 31126, 2446, 39985, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32500, '2021-11-11', 1544, 31127, 2446, 39886, '1.0000', '-126.2100', '-126.2100', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32501, '2021-11-11', 8077, 31128, 2446, 39839, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32502, '2021-11-11', 2169, 31129, 2446, NULL, '1.0000', '1.1500', '1.1500', '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 (32503, '2021-11-11', 2466, 31130, 2446, 38548, '1.0000', '13.6800', '13.6800', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32504, '2021-11-11', 2574, 31131, 2446, 19819, '2.0000', '0.7800', '0.7800', '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 (32505, '2021-11-11', 2655, 31132, 2446, 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 (32506, '2021-11-11', 7564, 31133, 2446, NULL, '1.0000', '0.6400', '0.6400', '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 (32507, '2021-11-11', 1837, 31134, 2446, 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 (32508, '2021-11-11', 8984, 31135, 2446, NULL, '1.0000', '-100.8495', '-100.8495', '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 (32509, '2021-11-11', 2315, 31136, 2446, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '50.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32510, '2021-11-11', 7948, 31137, 2446, NULL, '5.0000', '2.1000', '2.1000', '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 (32511, '2021-11-11', 7639, 31138, 2446, 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 (32512, '2021-11-11', 7606, 31139, 2446, NULL, '1.0000', '4.8600', '4.8600', '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 (32513, '2021-11-11', 2656, 31140, 2446, 34662, '3.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32514, '2021-11-11', 2320, 31141, 2446, 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 (32515, '2021-11-11', 1863, 31142, 2446, NULL, '1.0000', '1.2830', '1.2830', '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 (32516, '2021-11-11', 1502, 31143, 2446, 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 (32517, '2021-11-11', 1665, 31144, 2446, 39909, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32518, '2021-11-11', 2167, 31145, 2446, 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 (32519, '2021-11-11', 2315, 31146, 2446, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32520, '2021-11-11', 1871, 31147, 2446, 37801, '1.0000', '2.9308', '2.9308', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32521, '2021-11-11', 8984, 31148, 2446, NULL, '1.0000', '-100.8495', '-100.8495', '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 (32522, '2021-11-11', 1339, 31149, 2446, 23699, '1.0000', '1.4463', '1.4463', '2.5000', '2.5000', '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 (32523, '2021-11-11', 1337, 31150, 2446, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32524, '2021-11-11', 2293, 31151, 2446, NULL, '1.0000', '1.4400', '1.4400', '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 (32525, '2021-11-11', 2730, 31152, 2446, 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 (32526, '2021-11-11', 1655, 31153, 2447, NULL, '1.0000', '33.8400', '33.8400', '49.5000', '49.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32527, '2021-11-11', 1668, 31154, 2447, 3238, '-2.0000', '13.0442', '13.0442', '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 (32528, '2021-11-11', 1668, 31154, 2447, NULL, '3.0000', '13.0442', '13.0442', '18.0000', '18.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 (32529, '2021-11-11', 9577, 31155, 2447, NULL, '2.0000', '0.3200', '0.3200', '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 (32530, '2021-11-11', 2821, 31156, 2447, 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 (32531, '2021-11-11', 1863, 31157, 2447, 10808, '-82.0000', '0.4136', '0.4136', '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 (32532, '2021-11-11', 1863, 31157, 2447, NULL, '83.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32533, '2021-11-11', 7672, 31158, 2447, NULL, '1.0000', '1.0200', '1.0200', '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 (32534, '2021-11-11', 2506, 31159, 2447, 18839, '1.0000', '3.4900', '3.4900', '5.0000', '5.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 (32535, '2021-11-11', 2178, 31160, 2447, 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 (32536, '2021-11-11', 2876, 31161, 2447, 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 (32537, '2021-11-11', 2643, 31162, 2447, 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 (32538, '2021-11-11', 1730, 31163, 2447, 11661, '-1.0000', '23.9100', '23.9100', '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 (32539, '2021-11-11', 1730, 31163, 2447, NULL, '2.0000', '23.9100', '23.9100', '33.5000', '33.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 (32540, '2021-11-11', 1665, 31164, 2447, 3235, '-30.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 (32541, '2021-11-11', 1665, 31164, 2447, NULL, '31.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (32542, '2021-11-11', 2252, 31165, 2447, 2789, '-11.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 (32543, '2021-11-11', 2252, 31165, 2447, NULL, '12.0000', '9.5000', '9.5000', '12.5000', '12.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 (32544, '2021-11-11', 1493, 31166, 2447, 9747, '-4.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 (32545, '2021-11-11', 1493, 31166, 2447, NULL, '5.0000', '1.5425', '1.5425', '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 (32546, '2021-11-11', 1337, 31167, 2447, 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 (32547, '2021-11-11', 2699, 31168, 2447, 12529, '-14.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 (32548, '2021-11-11', 2699, 31168, 2447, NULL, '15.0000', '3.0000', '3.0000', '4.5000', '4.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 (32549, '2021-11-11', 8773, 31169, 2447, 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 (32550, '2021-11-11', 1908, 31170, 2448, NULL, '2.0000', '1.7500', '1.7500', '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 (32551, '2021-11-11', 1338, 31171, 2448, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32552, '2021-11-11', 8133, 31172, 2448, 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 (32553, '2021-11-11', 8184, 31173, 2448, NULL, '10.0000', '2.4000', '2.4000', '3.5000', '3.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 (32554, '2021-11-11', 2596, 31174, 2448, 13758, '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 (32555, '2021-11-11', 3013, 31175, 2448, 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 (32556, '2021-11-11', 2315, 31176, 2448, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32557, '2021-11-11', 8133, 31177, 2448, 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 (32558, '2021-11-11', 2315, 31178, 2448, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32559, '2021-11-11', 1673, 31179, 2448, NULL, '1.0000', '12.9000', '12.9000', '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 (32560, '2021-11-11', 7408, 31180, 2448, NULL, '1.0000', '1.0000', '1.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 (32561, '2021-11-11', 8746, 31181, 2448, 39996, '1.0000', '4.3169', '4.3169', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32562, '2021-11-11', 1863, 31182, 2448, NULL, '2.0000', '1.2830', '1.2830', '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 (32563, '2021-11-11', 7335, 31183, 2448, NULL, '1.0000', '10.4000', '10.4000', '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 (32564, '2021-11-11', 1577, 31184, 2448, 39771, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32565, '2021-11-11', 2083, 31185, 2448, 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 (32566, '2021-11-11', 2286, 31186, 2448, NULL, '2.0000', '4.3000', '4.3000', '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 (32567, '2021-11-11', 1871, 31187, 2448, 37801, '3.0000', '2.9308', '2.9308', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32568, '2021-11-11', 2715, 31188, 2448, NULL, '1.0000', '9.2600', '9.2600', '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 (32569, '2021-11-11', 2286, 31189, 2448, NULL, '2.0000', '4.3000', '4.3000', '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 (32570, '2021-11-11', 1507, 31190, 2448, 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 (32571, '2021-11-11', 2643, 31191, 2448, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32572, '2021-11-11', 2295, 31192, 2448, 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 (32573, '2021-11-11', 2242, 31193, 2448, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32574, '2021-11-11', 9503, 31194, 2448, 40109, '2.0000', '24.1775', '24.1775', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32575, '2021-11-11', 1863, 31195, 2448, NULL, '1.0000', '1.2830', '1.2830', '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 (32576, '2021-11-11', 1665, 31196, 2448, 39909, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32577, '2021-11-11', 2169, 31197, 2448, NULL, '1.0000', '1.1500', '1.1500', '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 (32578, '2021-11-11', 2660, 31198, 2448, 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 (32579, '2021-11-11', 8074, 31199, 2448, NULL, '1.0000', '3.2800', '3.2800', '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 (32580, '2021-11-11', 2030, 31200, 2448, NULL, '1.0000', '10.0000', '10.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 (32581, '2021-11-11', 7633, 31201, 2448, NULL, '1.0000', '2.8700', '2.8700', '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 (32582, '2021-11-11', 2169, 31202, 2448, NULL, '2.0000', '1.1500', '1.1500', '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 (32583, '2021-11-11', 1874, 31203, 2448, 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 (32584, '2021-11-11', 1507, 31204, 2448, 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 (32585, '2021-11-11', 2484, 31205, 2449, 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 (32586, '2021-11-11', 2136, 31206, 2449, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '95.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 (32587, '2021-11-11', 2233, 31207, 2449, 2777, '-11.0000', '19.0200', '19.0200', '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 (32588, '2021-11-11', 2233, 31207, 2449, NULL, '12.0000', '19.0200', '19.0200', '29.0000', '29.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 (32589, '2021-11-11', 1577, 31208, 2449, 7596, '-3.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 (32590, '2021-11-11', 1577, 31208, 2449, NULL, '4.0000', '2.5000', '2.5000', '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 (32591, '2021-11-11', 1425, 31209, 2449, 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 (32592, '2021-11-11', 2059, 31210, 2449, 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 (32593, '2021-11-11', 7953, 31211, 2449, NULL, '1.0000', '6.0000', '6.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 (32594, '2021-11-11', 1872, 31212, 2449, NULL, '1.0000', '9.0500', '9.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 (32595, '2021-11-11', 1533, 31213, 2449, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '13.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 (32596, '2021-11-11', 1602, 31214, 2449, 5897, '-38.0000', '6.7859', '6.7859', '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 (32597, '2021-11-11', 1602, 31214, 2449, NULL, '39.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32598, '2021-11-11', 1783, 31215, 2449, 4901, '-12.0000', '7.8500', '7.8500', '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 (32599, '2021-11-11', 1783, 31215, 2449, NULL, '15.0000', '7.8500', '7.8500', '11.0000', '11.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 (32600, '2021-11-11', 2339, 31216, 2449, 3842, '-2.0000', '7.2300', '7.2300', '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 (32601, '2021-11-11', 2339, 31216, 2449, NULL, '3.0000', '7.2300', '7.2300', '14.5000', '14.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 (32602, '2021-11-11', 9577, 31217, 2449, NULL, '3.0000', '0.3200', '0.3200', '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 (32603, '2021-11-11', 2916, 31218, 2449, 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 (32604, '2021-11-11', 2341, 31219, 2449, 10958, '1.0000', '6.8000', '6.8000', '7.5000', '7.5000', '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 (32605, '2021-11-11', 7411, 31220, 2449, 33804, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32606, '2021-11-11', 2169, 31221, 2449, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '29.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 (32607, '2021-11-11', 2263, 31222, 2449, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '6.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 (32608, '2021-11-11', 2360, 31223, 2449, 3862, '-18.0000', '0.5200', '0.5200', '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 (32609, '2021-11-11', 2360, 31223, 2449, NULL, '20.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (32610, '2021-11-11', 1744, 31224, 2449, 2163, '1.0000', '26.5281', '26.5281', '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 (32611, '2021-11-11', 9578, 31225, 2449, NULL, '1.0000', '8.0000', '8.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 (32612, '2021-11-11', 8807, 31226, 2449, NULL, '1.0000', '3.4200', '3.4200', '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 (32613, '2021-11-11', 1651, 31227, 2449, 3222, '-32.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 (32614, '2021-11-11', 1651, 31227, 2449, NULL, '33.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (32615, '2021-11-11', 2221, 31228, 2449, 4154, '-15.0000', '14.4737', '14.4737', '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 (32616, '2021-11-11', 2221, 31228, 2449, NULL, '16.0000', '14.4737', '14.4737', '25.0000', '25.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 (32617, '2021-11-11', 9007, 31229, 2449, NULL, '1.0000', '22.2000', '22.2000', '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 (32618, '2021-11-11', 2352, 31230, 2449, 17437, '1.0000', '20.0000', '20.0000', '3.5000', '3.5000', '6.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 (32619, '2021-11-11', 1549, 31231, 2449, 17167, '-2.0000', '21.1300', '21.1300', '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 (32620, '2021-11-11', 1549, 31231, 2449, NULL, '3.0000', '21.1300', '21.1300', '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 (32621, '2021-11-11', 1772, 31232, 2449, 4893, '-8.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 (32622, '2021-11-11', 1772, 31232, 2449, NULL, '9.0000', '6.0500', '6.0500', '8.0000', '8.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 (32623, '2021-11-11', 1873, 31233, 2449, 16245, '-4.0000', '11.9500', '11.9500', '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 (32624, '2021-11-11', 1873, 31233, 2449, NULL, '5.0000', '11.9500', '11.9500', '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 (32625, '2021-11-11', 9399, 31234, 2450, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32626, '2021-11-11', 1425, 31235, 2450, 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 (32627, '2021-11-11', 2261, 31236, 2450, 23149, '1.0000', '18.9900', '18.9900', '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 (32628, '2021-11-11', 1812, 31237, 2450, 29639, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32629, '2021-11-11', 2565, 31238, 2450, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '4.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 (32630, '2021-11-11', 1871, 31239, 2450, 37801, '2.0000', '2.9308', '2.9308', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32631, '2021-11-11', 8454, 31240, 2450, NULL, '1.0000', '5.1700', '5.1700', '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 (32632, '2021-11-11', 9089, 31241, 2450, NULL, '1.0000', '3.8000', '3.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 (32633, '2021-11-11', 7742, 31242, 2450, 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 (32634, '2021-11-11', 1310, 31243, 2450, NULL, '2.0000', '0.3700', '0.3700', '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 (32635, '2021-11-11', 7933, 31244, 2450, 39778, '2.0000', '-0.1222', '-0.1222', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32636, '2021-11-11', 1604, 31245, 2450, NULL, '1.0000', '70.6900', '70.6900', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32637, '2021-11-11', 1653, 31246, 2450, 19862, '1.0000', '8.6200', '8.6200', '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 (32638, '2021-11-11', 3012, 31247, 2450, NULL, '1.0000', '4.7000', '4.7000', '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 (32639, '2021-11-11', 8033, 31248, 2450, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32640, '2021-11-11', 1521, 31249, 2450, 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 (32641, '2021-11-11', 1499, 31250, 2450, 38940, '2.0000', '0.4684', '0.4684', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32642, '2021-11-11', 1665, 31251, 2450, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32643, '2021-11-11', 8044, 31252, 2450, NULL, '1.0000', '1.5000', '1.5000', '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 (32644, '2021-11-11', 9266, 31253, 2451, 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 (32645, '2021-11-11', 9445, 31254, 2451, 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 (32646, '2021-11-11', 7675, 31255, 2451, NULL, '1.0000', '11.4300', '11.4300', '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 (32647, '2021-11-11', 8089, 31256, 2451, 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 (32648, '2021-11-11', 8657, 31257, 2451, 38424, '1.0000', '6.3869', '6.3869', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32649, '2021-11-11', 8676, 31258, 2451, NULL, '1.0000', '34.0000', '34.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 (32650, '2021-11-11', 2284, 31259, 2451, 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 (32651, '2021-11-11', 7658, 31260, 2451, NULL, '2.0000', '63.4193', '63.4193', '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 (32652, '2021-11-11', 3005, 31261, 2451, 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 (32653, '2021-11-11', 2004, 31262, 2451, 38465, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32654, '2021-11-11', 7897, 31263, 2451, NULL, '1.0000', '3.0000', '3.0000', '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 (32655, '2021-11-11', 2104, 31264, 2451, NULL, '1.0000', '0.2000', '0.2000', '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 (32656, '2021-11-11', 7819, 31265, 2451, NULL, '1.0000', '9.5000', '9.5000', '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 (32657, '2021-11-11', 7930, 31266, 2451, 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 (32658, '2021-11-11', 8810, 31267, 2451, NULL, '1.0000', '1.9200', '1.9200', '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 (32659, '2021-11-11', 7848, 31268, 2451, NULL, '1.0000', '1.3500', '1.3500', '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 (32660, '2021-11-11', 8243, 31269, 2451, NULL, '2.0000', '1.1400', '1.1400', '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 (32661, '2021-11-11', 7674, 31270, 2451, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '147.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32662, '2021-11-11', 9092, 31271, 2451, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '252.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32663, '2021-11-11', 7779, 31272, 2451, NULL, '1.0000', '8.3800', '8.3800', '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 (32664, '2021-11-11', 7981, 31273, 2451, NULL, '10.0000', '6.0000', '6.0000', '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 (32665, '2021-11-11', 8166, 31274, 2451, NULL, '1.0000', '4.6000', '4.6000', '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 (32666, '2021-11-11', 7316, 31275, 2451, 38455, '2.0000', '0.8600', '0.8600', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32667, '2021-11-11', 7385, 31276, 2451, NULL, '2.0000', '-325.1557', '-325.1557', '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 (32668, '2021-11-11', 7753, 31277, 2451, NULL, '1.0000', '3.9360', '3.9360', '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 (32669, '2021-11-11', 9618, 31278, 2451, NULL, '4.0000', '3.7500', '3.7500', '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 (32670, '2021-11-11', 2104, 31279, 2451, NULL, '2.0000', '0.2000', '0.2000', '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 (32671, '2021-11-11', 2315, 31280, 2451, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '83.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32672, '2021-11-11', 7641, 31281, 2451, NULL, '1.0000', '3.6369', '3.6369', '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 (32673, '2021-11-11', 7831, 31282, 2451, 39624, '1.0000', '27.7500', '27.7500', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32674, '2021-11-11', 7588, 31283, 2451, NULL, '1.0000', '7.0762', '7.0762', '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 (32675, '2021-11-11', 7711, 31284, 2451, NULL, '1.0000', '-78.4806', '-78.4806', '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 (32676, '2021-11-11', 8810, 31285, 2451, NULL, '1.0000', '1.9200', '1.9200', '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 (32677, '2021-11-11', 7591, 31286, 2451, NULL, '1.0000', '2.7500', '2.7500', '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 (32678, '2021-11-11', 7514, 31287, 2451, NULL, '1.0000', '12.9983', '12.9983', '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 (32679, '2021-11-11', 8254, 31288, 2451, NULL, '1.0000', '27.2800', '27.2800', '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 (32680, '2021-11-11', 2655, 31289, 2451, 39406, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32681, '2021-11-11', 7357, 31290, 2451, NULL, '1.0000', '11.7500', '11.7500', '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 (32682, '2021-11-11', 9092, 31291, 2451, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '250.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32683, '2021-11-11', 8135, 31292, 2451, NULL, '1.0000', '13.9000', '13.9000', '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 (32684, '2021-11-11', 8756, 31293, 2451, NULL, '1.0000', '7.5051', '7.5051', '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 (32685, '2021-11-11', 9177, 31294, 2451, NULL, '10.0000', '0.8000', '0.8000', '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 (32686, '2021-11-11', 7555, 31295, 2451, NULL, '1.0000', '0.5000', '0.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 (32687, '2021-11-11', 7591, 31296, 2451, NULL, '1.0000', '2.7500', '2.7500', '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 (32688, '2021-11-11', 7507, 31297, 2451, NULL, '3.0000', '6.5000', '6.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 (32689, '2021-11-11', 7536, 31298, 2451, NULL, '30.0000', '3.8500', '3.8500', '7.8000', '7.8000', '-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 (32690, '2021-11-11', 7743, 31299, 2451, NULL, '2.0000', '148.1444', '148.1444', '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 (32691, '2021-11-11', 7333, 31300, 2451, NULL, '10.0000', '13.5000', '13.5000', '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 (32692, '2021-11-11', 7335, 31301, 2451, NULL, '1.0000', '10.4000', '10.4000', '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 (32693, '2021-11-11', 7457, 31302, 2451, 30064, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '78.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32694, '2021-11-11', 8135, 31303, 2451, NULL, '1.0000', '13.9000', '13.9000', '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 (32695, '2021-11-11', 9142, 31304, 2451, 30927, '1.0000', '7.3800', '7.3800', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32696, '2021-11-11', 7411, 31305, 2451, NULL, '1.0000', '1.3500', '1.3500', '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 (32697, '2021-11-11', 7473, 31306, 2451, NULL, '2.0000', '15.4731', '15.4731', '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 (32698, '2021-11-11', 7518, 31307, 2451, NULL, '1.0000', '-67.2578', '-67.2578', '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 (32699, '2021-11-11', 7641, 31308, 2451, NULL, '1.0000', '3.6369', '3.6369', '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 (32700, '2021-11-11', 7709, 31309, 2451, NULL, '2.0000', '35.8000', '35.8000', '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 (32701, '2021-11-11', 7928, 31310, 2451, NULL, '1.0000', '1.2000', '1.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 (32702, '2021-11-11', 8949, 31311, 2451, 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 (32703, '2021-11-11', 7719, 31312, 2451, NULL, '1.0000', '5.5000', '5.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 (32704, '2021-11-11', 2315, 31313, 2451, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '83.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32705, '2021-11-11', 7743, 31314, 2451, NULL, '2.0000', '148.1444', '148.1444', '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 (32706, '2021-11-11', 8232, 31315, 2451, NULL, '1.0000', '11.0000', '11.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 (32707, '2021-11-11', 8200, 31316, 2451, NULL, '1.0000', '18.9793', '18.9793', '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 (32708, '2021-11-11', 9417, 31317, 2451, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32709, '2021-11-11', 9615, 31318, 2451, 39415, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32710, '2021-11-11', 7588, 31319, 2451, NULL, '1.0000', '7.0762', '7.0762', '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 (32711, '2021-11-11', 8304, 31320, 2451, NULL, '1.0000', '8.2400', '8.2400', '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 (32712, '2021-11-11', 8132, 31321, 2451, NULL, '1.0000', '4.7200', '4.7200', '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 (32713, '2021-11-11', 8450, 31322, 2451, 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 (32714, '2021-11-11', 7583, 31323, 2451, NULL, '1.0000', '4.0000', '4.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 (32715, '2021-11-11', 7866, 31324, 2451, 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 (32716, '2021-11-11', 7641, 31325, 2451, NULL, '1.0000', '3.6369', '3.6369', '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 (32717, '2021-11-11', 7457, 31326, 2451, 30064, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '78.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32718, '2021-11-11', 7947, 31327, 2451, NULL, '1.0000', '14.4400', '14.4400', '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 (32719, '2021-11-11', 9556, 31328, 2451, 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 (32720, '2021-11-11', 7473, 31329, 2451, NULL, '4.0000', '15.4731', '15.4731', '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 (32721, '2021-11-11', 7933, 31330, 2451, NULL, '2.0000', '5.5000', '5.5000', '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 (32722, '2021-11-11', 7509, 31331, 2451, 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 (32723, '2021-11-11', 7672, 31332, 2451, NULL, '1.0000', '1.0200', '1.0200', '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 (32724, '2021-11-11', 8134, 31333, 2451, NULL, '1.0000', '5.2600', '5.2600', '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 (32725, '2021-11-11', 7753, 31334, 2451, NULL, '1.0000', '3.9360', '3.9360', '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 (32726, '2021-11-11', 2274, 31335, 2452, 38917, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32727, '2021-11-11', 1501, 31336, 2452, NULL, '1.0000', '2.2100', '2.2100', '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 (32728, '2021-11-11', 1912, 31337, 2452, 37802, '1.0000', '0.6951', '0.6951', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32729, '2021-11-11', 1935, 31338, 2452, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32730, '2021-11-11', 7790, 31339, 2452, NULL, '1.0000', '17.0000', '17.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 (32731, '2021-11-11', 1425, 31340, 2452, 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 (32732, '2021-11-11', 1310, 31341, 2452, NULL, '2.0000', '0.3700', '0.3700', '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 (32733, '2021-11-11', 1667, 31342, 2452, 38942, '1.0000', '18.8988', '18.8988', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32734, '2021-11-11', 1666, 31343, 2452, 39908, '1.0000', '2.7819', '2.7819', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32735, '2021-11-11', 2275, 31344, 2452, 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 (32736, '2021-11-11', 2491, 31345, 2452, 13774, '1.0000', '12.2000', '12.2000', '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 (32737, '2021-11-11', 1628, 31346, 2453, 18856, '1.0000', '6.4000', '6.4000', '10.0000', '10.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 (32738, '2021-11-11', 2299, 31347, 2453, 2142, '1.0000', '6.0000', '6.0000', '9.0000', '9.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 (32739, '2021-11-11', 1530, 31348, 2453, 7391, '-3.0000', '28.7012', '28.7012', '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 (32740, '2021-11-11', 1530, 31348, 2453, NULL, '4.0000', '28.7012', '28.7012', '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 (32741, '2021-11-11', 7444, 31349, 2454, 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 (32742, '2021-11-11', 8166, 31350, 2454, NULL, '1.0000', '4.6000', '4.6000', '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 (32743, '2021-11-11', 7675, 31351, 2454, NULL, '1.0000', '11.4300', '11.4300', '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 (32744, '2021-11-11', 9092, 31352, 2454, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '246.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32745, '2021-11-11', 7509, 31353, 2454, 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 (32746, '2021-11-11', 7917, 31354, 2454, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32747, '2021-11-11', 7713, 31355, 2454, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32748, '2021-11-11', 1841, 31356, 2454, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '112.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32749, '2021-11-11', 2289, 31357, 2454, NULL, '4.0000', '0.2300', '0.2300', '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 (32750, '2021-11-11', 7890, 31358, 2454, NULL, '1.0000', '1.0000', '1.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32751, '2021-11-11', 7547, 31359, 2454, NULL, '4.0000', '0.0000', '0.0000', '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 (32752, '2021-11-11', 2565, 31360, 2455, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '3.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 (32753, '2021-11-11', 2656, 31361, 2455, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32754, '2021-11-11', 1855, 31362, 2456, 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 (32755, '2021-11-11', 1855, 31363, 2457, 22241, '3.0000', '1.4000', '1.4000', '2.0000', '2.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 (32756, '2021-11-11', 2428, 31364, 2458, NULL, '1.0000', '19.0000', '19.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 (32757, '2021-11-11', 1856, 31365, 2459, 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 (32758, '2021-11-11', 1478, 31366, 2460, 18919, '1.0000', '50.6858', '50.6858', '28.0000', '28.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 (32759, '2021-11-11', 2003, 31367, 2461, 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 (32760, '2021-11-11', 2958, 31368, 2462, 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 (32761, '2021-11-11', 8756, 31369, 2463, NULL, '1.0000', '7.5000', '7.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 (32762, '2021-11-11', 2656, 31370, 2463, 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 (32763, '2021-11-12', 1590, 31371, 2464, NULL, '4.0000', '1.9878', '1.9878', '2.3000', '2.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 (32764, '2021-11-12', 7802, 31372, 2464, NULL, '4.0000', '0.9200', '0.9200', '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 (32765, '2021-11-12', 1628, 31373, 2464, NULL, '1.0000', '5.7900', '5.7900', '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 (32766, '2021-11-12', 1602, 31374, 2464, 37781, '1.0000', '6.1514', '6.1514', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32767, '2021-11-12', 2169, 31375, 2464, NULL, '1.0000', '1.1500', '1.1500', '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 (32768, '2021-11-12', 1867, 31376, 2464, 33361, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32769, '2021-11-12', 2287, 31377, 2464, 29630, '3.0000', '1.1700', '1.1700', '3.0000', '3.0000', '74.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32770, '2021-11-12', 1523, 31378, 2464, NULL, '1.0000', '1.0061', '1.0061', '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 (32771, '2021-11-12', 1817, 31379, 2464, 39782, '2.0000', '10.4600', '10.4600', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32772, '2021-11-12', 8333, 31380, 2464, NULL, '1.0000', '10.0000', '10.0000', '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 (32773, '2021-11-12', 9469, 31381, 2464, NULL, '1.0000', '2.3000', '2.3000', '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 (32774, '2021-11-12', 7355, 31382, 2464, 39797, '1.0000', '18.6310', '18.6310', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32775, '2021-11-12', 7490, 31383, 2464, NULL, '4.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-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 (32776, '2021-11-12', 2237, 31384, 2464, NULL, '2.0000', '-64.5817', '-64.5817', '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 (32777, '2021-11-12', 2277, 31385, 2464, NULL, '1.0000', '0.8982', '0.8982', '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 (32778, '2021-11-12', 2506, 31386, 2464, 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 (32779, '2021-11-12', 2656, 31387, 2464, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32780, '2021-11-12', 1699, 31388, 2464, NULL, '1.0000', '3.2000', '3.2000', '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 (32781, '2021-11-12', 2948, 31389, 2465, NULL, '1.0000', '0.9000', '0.9000', '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 (32782, '2021-11-12', 9469, 31390, 2465, 35936, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32783, '2021-11-12', 7335, 31391, 2465, NULL, '1.0000', '10.4000', '10.4000', '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 (32784, '2021-11-12', 7704, 31392, 2465, NULL, '1.0000', '0.4900', '0.4900', '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 (32785, '2021-11-12', 2320, 31393, 2465, 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 (32786, '2021-11-12', 1868, 31394, 2465, 4997, '1.0000', '4.0300', '4.0300', '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 (32787, '2021-11-12', 2068, 31395, 2465, 40859, '1.0000', '11.8778', '11.8778', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32788, '2021-11-12', 8518, 31396, 2465, NULL, '1.0000', '17.6400', '17.6400', '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 (32789, '2021-11-12', 1665, 31397, 2465, 38076, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32790, '2021-11-12', 1602, 31398, 2465, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32791, '2021-11-12', 8044, 31399, 2465, NULL, '1.0000', '1.5000', '1.5000', '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 (32792, '2021-11-12', 1730, 31400, 2465, 33210, '1.0000', '23.9100', '23.9100', '33.5000', '33.5000', '1.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32793, '2021-11-12', 7532, 31401, 2465, 34677, '1.0000', '20.6000', '20.6000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32794, '2021-11-12', 2821, 31402, 2465, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32795, '2021-11-12', 1450, 31403, 2465, NULL, '4.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-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 (32796, '2021-11-12', 8608, 31404, 2465, NULL, '1.0000', '0.9000', '0.9000', '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 (32797, '2021-11-12', 2950, 31405, 2466, 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 (32798, '2021-11-12', 2354, 31406, 2466, 38531, '1.0000', '5.0600', '5.0600', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32799, '2021-11-12', 1670, 31407, 2467, 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 (32800, '2021-11-12', 8638, 31408, 2467, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32801, '2021-11-12', 7444, 31409, 2468, 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 (32802, '2021-11-12', 7881, 31410, 2468, NULL, '1.0000', '83.7700', '83.7700', '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 (32803, '2021-11-12', 8735, 31411, 2468, NULL, '1.0000', '5.6000', '5.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 (32804, '2021-11-12', 7353, 31412, 2468, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32805, '2021-11-12', 7775, 31413, 2468, 39642, '1.0000', '-2.9800', '-2.9800', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32806, '2021-11-12', 2315, 31414, 2468, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '80.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32807, '2021-11-12', 7482, 31415, 2468, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32808, '2021-11-12', 8735, 31416, 2468, NULL, '1.0000', '5.6000', '5.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 (32809, '2021-11-12', 7590, 31417, 2468, NULL, '1.0000', '4.3600', '4.3600', '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 (32810, '2021-11-12', 8063, 31418, 2468, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '22.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32811, '2021-11-12', 7671, 31419, 2468, NULL, '1.0000', '15.5000', '15.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 (32812, '2021-11-12', 7920, 31420, 2468, 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 (32813, '2021-11-12', 8452, 31421, 2468, NULL, '1.0000', '4.1500', '4.1500', '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 (32814, '2021-11-12', 7532, 31422, 2468, NULL, '1.0000', '5.2000', '5.2000', '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 (32815, '2021-11-12', 8804, 31423, 2468, NULL, '5.0000', '75.0000', '75.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 (32816, '2021-11-12', 7385, 31424, 2468, 40972, '5.0000', '205.3671', '205.3671', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32817, '2021-11-12', 8596, 31425, 2468, NULL, '1.0000', '17.0000', '17.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 (32818, '2021-11-12', 7564, 31426, 2468, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32819, '2021-11-12', 7509, 31427, 2468, 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 (32820, '2021-11-12', 7514, 31428, 2468, NULL, '1.0000', '12.9983', '12.9983', '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 (32821, '2021-11-12', 7905, 31429, 2468, NULL, '2.0000', '0.7000', '0.7000', '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 (32822, '2021-11-12', 7886, 31430, 2468, NULL, '1.0000', '2.8333', '2.8333', '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 (32823, '2021-11-12', 8296, 31431, 2468, NULL, '1.0000', '11.7600', '11.7600', '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 (32824, '2021-11-12', 7743, 31432, 2468, NULL, '2.0000', '1874.1978', '1874.1978', '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 (32825, '2021-11-12', 7886, 31433, 2468, NULL, '5.0000', '2.8333', '2.8333', '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 (32826, '2021-11-12', 7671, 31434, 2468, NULL, '1.0000', '15.5000', '15.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 (32827, '2021-11-12', 8699, 31435, 2468, NULL, '1.0000', '6.3800', '6.3800', '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 (32828, '2021-11-12', 9399, 31436, 2468, NULL, '2.0000', '0.4200', '0.4200', '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 (32829, '2021-11-12', 7885, 31437, 2468, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32830, '2021-11-12', 1671, 31438, 2468, NULL, '10.0000', '90.0000', '90.0000', '6.4000', '6.4000', '-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 (32831, '2021-11-12', 7910, 31439, 2468, 39619, '1.0000', '3.8467', '3.8467', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32832, '2021-11-12', 1837, 31440, 2468, 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 (32833, '2021-11-12', 7917, 31441, 2468, NULL, '1.0000', '5.0000', '5.0000', '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 (32834, '2021-11-12', 7756, 31442, 2468, NULL, '1.0000', '21.7700', '21.7700', '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 (32835, '2021-11-12', 7674, 31443, 2468, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '146.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32836, '2021-11-12', 8825, 31444, 2468, NULL, '1.0000', '7.4000', '7.4000', '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 (32837, '2021-11-12', 2350, 31445, 2468, NULL, '1.0000', '10.3800', '10.3800', '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 (32838, '2021-11-12', 7707, 31446, 2468, NULL, '1.0000', '6.0124', '6.0124', '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 (32839, '2021-11-12', 8789, 31447, 2468, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32840, '2021-11-12', 8666, 31448, 2468, NULL, '1.0000', '0.4600', '0.4600', '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 (32841, '2021-11-12', 8293, 31449, 2469, NULL, '1.0000', '24.7500', '24.7500', '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 (32842, '2021-11-12', 7634, 31450, 2469, NULL, '1.0000', '1.8000', '1.8000', '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 (32843, '2021-11-12', 7819, 31451, 2469, NULL, '1.0000', '9.5000', '9.5000', '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 (32844, '2021-11-12', 7457, 31452, 2469, 30064, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '76.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32845, '2021-11-12', 7756, 31453, 2469, NULL, '1.0000', '21.7700', '21.7700', '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 (32846, '2021-11-12', 7473, 31454, 2469, NULL, '2.0000', '15.4731', '15.4731', '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 (32847, '2021-11-12', 8034, 31455, 2469, NULL, '1.0000', '4.8900', '4.8900', '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 (32848, '2021-11-12', 7518, 31456, 2469, NULL, '1.0000', '-67.2578', '-67.2578', '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 (32849, '2021-11-12', 8849, 31457, 2469, NULL, '1.0000', '1.0700', '1.0700', '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 (32850, '2021-11-12', 8753, 31458, 2469, 40931, '1.0000', '3.9105', '3.9105', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32851, '2021-11-12', 8721, 31459, 2469, NULL, '2.0000', '3.0000', '3.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 (32852, '2021-11-12', 7608, 31460, 2469, NULL, '1.0000', '6.9800', '6.9800', '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 (32853, '2021-11-12', 7782, 31461, 2469, NULL, '1.0000', '5.0000', '5.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 (32854, '2021-11-12', 9399, 31462, 2469, NULL, '2.0000', '0.4200', '0.4200', '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 (32855, '2021-11-12', 7518, 31463, 2469, NULL, '1.0000', '-67.2578', '-67.2578', '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 (32856, '2021-11-12', 7673, 31464, 2469, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32857, '2021-11-12', 2643, 31465, 2469, NULL, '2.0000', '0.8700', '0.8700', '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 (32858, '2021-11-12', 8775, 31466, 2469, 39424, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32859, '2021-11-12', 2315, 31467, 2469, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '79.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32860, '2021-11-12', 9419, 31468, 2469, 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 (32861, '2021-11-12', 9183, 31469, 2469, NULL, '1.0000', '8.3000', '8.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 (32862, '2021-11-12', 7444, 31470, 2469, 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 (32863, '2021-11-12', 8027, 31471, 2469, NULL, '1.0000', '15.0000', '15.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 (32864, '2021-11-12', 2643, 31472, 2469, 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 (32865, '2021-11-12', 9280, 31473, 2469, NULL, '1.0000', '12.0000', '12.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 (32866, '2021-11-12', 7911, 31474, 2469, NULL, '1.0000', '4.3700', '4.3700', '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 (32867, '2021-11-12', 8457, 31475, 2469, NULL, '1.0000', '0.7500', '0.7500', '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 (32868, '2021-11-12', 7708, 31476, 2469, NULL, '1.0000', '6.1400', '6.1400', '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 (32869, '2021-11-12', 8657, 31477, 2469, NULL, '1.0000', '6.3869', '6.3869', '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 (32870, '2021-11-12', 7457, 31478, 2469, 30064, '1.0000', '2.8603', '2.8603', '8.0000', '8.0000', '76.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32871, '2021-11-12', 7518, 31479, 2469, NULL, '1.0000', '-67.2578', '-67.2578', '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 (32872, '2021-11-12', 8485, 31480, 2469, NULL, '1.0000', '7.0400', '7.0400', '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 (32873, '2021-11-12', 7872, 31481, 2469, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (32874, '2021-11-12', 7507, 31482, 2469, NULL, '3.0000', '6.5000', '6.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 (32875, '2021-11-12', 7518, 31483, 2469, NULL, '1.0000', '-67.2578', '-67.2578', '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 (32876, '2021-11-12', 8178, 31484, 2469, NULL, '1.0000', '0.0000', '0.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 (32877, '2021-11-12', 7532, 31485, 2469, NULL, '1.0000', '5.2000', '5.2000', '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 (32878, '2021-11-12', 7524, 31486, 2469, NULL, '2.0000', '11.9500', '11.9500', '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 (32879, '2021-11-12', 2350, 31487, 2469, NULL, '1.0000', '10.3800', '10.3800', '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 (32880, '2021-11-12', 8735, 31488, 2469, NULL, '1.0000', '5.6000', '5.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 (32881, '2021-11-12', 7666, 31489, 2470, NULL, '1.0000', '0.4000', '0.4000', '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 (32882, '2021-11-12', 8304, 31490, 2470, NULL, '1.0000', '8.2400', '8.2400', '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 (32883, '2021-11-12', 7641, 31491, 2470, NULL, '1.0000', '2.3177', '2.3177', '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 (32884, '2021-11-12', 8594, 31492, 2470, 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 (32885, '2021-11-12', 2506, 31493, 2470, 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 (32886, '2021-11-12', 7709, 31494, 2470, NULL, '2.0000', '35.8000', '35.8000', '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 (32887, '2021-11-12', 8686, 31495, 2470, NULL, '1.0000', '1.2000', '1.2000', '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 (32888, '2021-11-12', 2315, 31496, 2470, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '77.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32889, '2021-11-12', 7886, 31497, 2470, NULL, '1.0000', '2.8333', '2.8333', '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 (32890, '2021-11-12', 9266, 31498, 2470, 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 (32891, '2021-11-12', 7883, 31499, 2470, NULL, '1.0000', '131.7400', '131.7400', '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 (32892, '2021-11-12', 9563, 31500, 2470, 40449, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32893, '2021-11-12', 2655, 31501, 2471, 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 (32894, '2021-11-12', 8626, 31502, 2471, NULL, '1.0000', '10.0000', '10.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 (32895, '2021-11-12', 1805, 31503, 2471, NULL, '1.0000', '4.5244', '4.5244', '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 (32896, '2021-11-12', 1577, 31504, 2471, 39771, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32897, '2021-11-12', 9609, 31505, 2471, 38938, '1.0000', '6.4000', '6.4000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32898, '2021-11-12', 2169, 31506, 2471, NULL, '1.0000', '1.1500', '1.1500', '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 (32899, '2021-11-12', 1888, 31507, 2471, 29642, '1.0000', '194.0075', '194.0075', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32900, '2021-11-12', 2242, 31508, 2471, 37444, '1.0000', '0.5518', '0.5518', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32901, '2021-11-12', 2224, 31509, 2471, 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 (32902, '2021-11-12', 2242, 31510, 2471, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32903, '2021-11-12', 2315, 31511, 2471, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32904, '2021-11-12', 2916, 31512, 2471, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32905, '2021-11-12', 7583, 31513, 2471, NULL, '1.0000', '4.0000', '4.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 (32906, '2021-11-12', 7564, 31514, 2471, NULL, '1.0000', '0.6400', '0.6400', '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 (32907, '2021-11-12', 8033, 31515, 2471, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32908, '2021-11-12', 7317, 31516, 2471, NULL, '1.0000', '19.5500', '19.5500', '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 (32909, '2021-11-12', 1812, 31517, 2471, 29639, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32910, '2021-11-12', 1501, 31518, 2471, NULL, '1.0000', '2.2100', '2.2100', '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 (32911, '2021-11-12', 2315, 31519, 2471, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '43.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32912, '2021-11-12', 7961, 31520, 2471, 39799, '1.0000', '10.5600', '10.5600', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32913, '2021-11-12', 9561, 31521, 2471, 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 (32914, '2021-11-12', 1810, 31522, 2471, 39790, '1.0000', '8.5185', '8.5185', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32915, '2021-11-12', 1519, 31523, 2471, 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 (32916, '2021-11-12', 2169, 31524, 2471, NULL, '1.0000', '1.1500', '1.1500', '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 (32917, '2021-11-12', 2088, 31525, 2471, 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 (32918, '2021-11-12', 1621, 31526, 2471, 37805, '1.0000', '9.6682', '9.6682', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32919, '2021-11-12', 7725, 31527, 2471, NULL, '1.0000', '7.0000', '7.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 (32920, '2021-11-12', 2699, 31528, 2471, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32921, '2021-11-12', 2655, 31529, 2471, 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 (32922, '2021-11-12', 2169, 31530, 2471, NULL, '2.0000', '1.1500', '1.1500', '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 (32923, '2021-11-12', 1620, 31531, 2471, 38596, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32924, '2021-11-12', 2280, 31532, 2471, 24952, '2.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (32925, '2021-11-12', 7411, 31533, 2471, NULL, '2.0000', '1.3500', '1.3500', '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 (32926, '2021-11-12', 1590, 31534, 2471, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (32927, '2021-11-12', 1620, 31535, 2471, 38596, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32928, '2021-11-12', 7558, 31536, 2471, 39820, '3.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32929, '2021-11-12', 9399, 31537, 2471, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32930, '2021-11-12', 8608, 31538, 2471, NULL, '1.0000', '0.9000', '0.9000', '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 (32931, '2021-11-12', 7411, 31539, 2471, NULL, '2.0000', '1.3500', '1.3500', '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 (32932, '2021-11-12', 3058, 31540, 2471, 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 (32933, '2021-11-12', 8638, 31541, 2471, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32934, '2021-11-12', 8596, 31542, 2472, NULL, '1.0000', '17.0000', '17.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 (32935, '2021-11-12', 9541, 31543, 2472, NULL, '1.0000', '42.0000', '42.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 (32936, '2021-11-12', 7482, 31544, 2472, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32937, '2021-11-12', 9092, 31545, 2472, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '242.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32938, '2021-11-12', 7518, 31546, 2472, NULL, '1.0000', '-67.2578', '-67.2578', '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 (32939, '2021-11-12', 1364, 31547, 2472, 34505, '2.0000', '27.9463', '27.9463', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32940, '2021-11-12', 7768, 31548, 2472, NULL, '1.0000', '7.7800', '7.7800', '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 (32941, '2021-11-12', 8756, 31549, 2472, NULL, '1.0000', '7.5051', '7.5051', '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 (32942, '2021-11-12', 2317, 31550, 2472, 40395, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '34.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32943, '2021-11-12', 7743, 31551, 2472, NULL, '2.0000', '1874.1978', '1874.1978', '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 (32944, '2021-11-12', 7641, 31552, 2472, NULL, '1.0000', '2.3177', '2.3177', '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 (32945, '2021-11-12', 8435, 31553, 2473, NULL, '1.0000', '5.7000', '5.7000', '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 (32946, '2021-11-12', 2315, 31554, 2474, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32947, '2021-11-12', 2135, 31555, 2474, 18930, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (32948, '2021-11-12', 7514, 31556, 2474, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32949, '2021-11-12', 8000, 31557, 2474, NULL, '1.0000', '25.8200', '25.8200', '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 (32950, '2021-11-12', 7741, 31558, 2474, NULL, '1.0000', '1.2000', '1.2000', '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 (32951, '2021-11-12', 2375, 31559, 2474, NULL, '1.0000', '12.5000', '12.5000', '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 (32952, '2021-11-12', 1501, 31560, 2474, NULL, '1.0000', '2.2100', '2.2100', '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 (32953, '2021-11-12', 7317, 31561, 2474, NULL, '1.0000', '19.5500', '19.5500', '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 (32954, '2021-11-12', 8746, 31562, 2474, 39996, '1.0000', '4.3169', '4.3169', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32955, '2021-11-12', 7456, 31563, 2474, NULL, '1.0000', '1.3800', '1.3800', '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 (32956, '2021-11-12', 2726, 31564, 2474, 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 (32957, '2021-11-12', 7911, 31565, 2474, NULL, '1.0000', '4.3700', '4.3700', '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 (32958, '2021-11-12', 8756, 31566, 2474, 32556, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32959, '2021-11-13', 2068, 31567, 2475, 38541, '1.0000', '12.7670', '12.7670', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32960, '2021-11-13', 2297, 31568, 2475, 39882, '1.0000', '6.4800', '6.4800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32961, '2021-11-13', 1307, 31569, 2475, 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 (32962, '2021-11-13', 2242, 31570, 2475, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32963, '2021-11-13', 2279, 31571, 2475, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (32964, '2021-11-13', 7406, 31572, 2475, NULL, '1.0000', '5.0000', '5.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 (32965, '2021-11-13', 1645, 31573, 2475, 34638, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32966, '2021-11-13', 9556, 31574, 2475, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32967, '2021-11-13', 1463, 31575, 2475, 32537, '1.0000', '18.5000', '18.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32968, '2021-11-13', 1307, 31576, 2475, 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 (32969, '2021-11-13', 2167, 31577, 2475, 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 (32970, '2021-11-13', 1578, 31578, 2475, 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 (32971, '2021-11-13', 2280, 31579, 2475, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (32972, '2021-11-13', 1863, 31580, 2475, NULL, '1.0000', '1.2830', '1.2830', '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 (32973, '2021-11-13', 2694, 31581, 2475, 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 (32974, '2021-11-13', 1338, 31582, 2475, 32531, '1.0000', '3.7257', '3.7257', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32975, '2021-11-13', 2169, 31583, 2475, NULL, '1.0000', '1.1500', '1.1500', '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 (32976, '2021-11-13', 1696, 31584, 2475, 34611, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32977, '2021-11-13', 1888, 31585, 2475, 19330, '1.0000', '194.0075', '194.0075', '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 (32978, '2021-11-13', 2917, 31586, 2475, 24194, '1.0000', '7.3500', '7.3500', '10.0000', '10.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 (32979, '2021-11-13', 9556, 31587, 2475, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32980, '2021-11-13', 7639, 31588, 2475, 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 (32981, '2021-11-13', 1863, 31589, 2475, NULL, '1.0000', '1.2830', '1.2830', '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 (32982, '2021-11-13', 2280, 31590, 2475, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (32983, '2021-11-13', 1578, 31591, 2475, 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 (32984, '2021-11-13', 7866, 31592, 2475, 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 (32985, '2021-11-13', 1501, 31593, 2475, NULL, '1.0000', '2.2100', '2.2100', '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 (32986, '2021-11-13', 1435, 31594, 2475, NULL, '1.0000', '22.5000', '22.5000', '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 (32987, '2021-11-13', 2993, 31595, 2475, 39800, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32988, '2021-11-13', 7411, 31596, 2475, NULL, '1.0000', '1.3500', '1.3500', '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 (32989, '2021-11-13', 7344, 31597, 2475, NULL, '10.0000', '94.2800', '94.2800', '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 (32990, '2021-11-13', 1693, 31598, 2475, 33358, '1.0000', '7.8600', '7.8600', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32991, '2021-11-13', 7368, 31599, 2475, NULL, '1.0000', '11.4000', '11.4000', '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 (32992, '2021-11-13', 1590, 31600, 2475, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (32993, '2021-11-13', 2275, 31601, 2475, 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 (32994, '2021-11-13', 1945, 31602, 2476, 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 (32995, '2021-11-13', 1529, 31603, 2477, NULL, '1.0000', '3.7110', '3.7110', '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 (32996, '2021-11-13', 8746, 31604, 2477, 39996, '1.0000', '4.3169', '4.3169', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32997, '2021-11-13', 1839, 31605, 2477, NULL, '1.0000', '6.0835', '6.0835', '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 (32998, '2021-11-13', 8607, 31606, 2477, 40005, '1.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32999, '2021-11-13', 7753, 31607, 2477, NULL, '1.0000', '3.1400', '3.1400', '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 (33000, '2021-11-13', 2302, 31608, 2478, 2963, '-21.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 (33001, '2021-11-13', 2302, 31608, 2478, NULL, '22.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33002, '2021-11-13', 2169, 31609, 2478, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '28.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 (33003, '2021-11-13', 2298, 31610, 2478, 18816, '1.0000', '6.0000', '6.0000', '8.5000', '8.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 (33004, '2021-11-13', 1337, 31611, 2478, 10809, '-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 (33005, '2021-11-13', 1337, 31611, 2478, NULL, '2.0000', '2.0000', '2.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 (33006, '2021-11-13', 2660, 31612, 2478, 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 (33007, '2021-11-13', 2285, 31613, 2478, 2945, '-16.0000', '35.8000', '35.8000', '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 (33008, '2021-11-13', 2285, 31613, 2478, NULL, '17.0000', '35.8000', '35.8000', '47.0000', '47.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 (33009, '2021-11-13', 9577, 31614, 2478, NULL, '2.0000', '0.3200', '0.3200', '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 (33010, '2021-11-13', 1432, 31615, 2478, 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 (33011, '2021-11-13', 1573, 31616, 2478, 9746, '-2.0000', '29.9042', '29.9042', '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 (33012, '2021-11-13', 1573, 31616, 2478, NULL, '3.0000', '29.9042', '29.9042', '32.0000', '32.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 (33013, '2021-11-13', 1428, 31617, 2478, 4700, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '3.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 (33014, '2021-11-13', 2352, 31618, 2478, 17437, '6.0000', '20.0000', '20.0000', '3.5000', '3.5000', '0.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 (33015, '2021-11-13', 2352, 31618, 2478, NULL, '8.0000', '20.0000', '20.0000', '3.5000', '3.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 (33016, '2021-11-13', 1346, 31619, 2478, 242, '10.0000', '1.0594', '1.0594', '1.5000', '1.5000', '42.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 (33017, '2021-11-13', 2414, 31620, 2478, 4620, '-5.0000', '3.4000', '3.4000', '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 (33018, '2021-11-13', 2414, 31620, 2478, NULL, '9.0000', '3.4000', '3.4000', '5.0000', '5.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 (33019, '2021-11-13', 2660, 31621, 2478, 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 (33020, '2021-11-13', 2643, 31622, 2478, 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 (33021, '2021-11-13', 1519, 31623, 2478, 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 (33022, '2021-11-13', 1619, 31624, 2478, 20621, '2.0000', '9.8500', '9.8500', '13.0000', '13.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 (33023, '2021-11-13', 1954, 31625, 2478, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '5.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 (33024, '2021-11-13', 1621, 31626, 2478, 7385, '-9.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 (33025, '2021-11-13', 1621, 31626, 2478, NULL, '10.0000', '6.6000', '6.6000', '9.0000', '9.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 (33026, '2021-11-13', 2237, 31627, 2478, 2781, '-17.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 (33027, '2021-11-13', 2237, 31627, 2478, NULL, '18.0000', '1.0600', '1.0600', '2.0000', '2.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 (33028, '2021-11-13', 2342, 31628, 2478, 3845, '-24.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 (33029, '2021-11-13', 2342, 31628, 2478, NULL, '34.0000', '1.8600', '1.8600', '2.5000', '2.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 (33030, '2021-11-13', 2167, 31629, 2478, 17165, '-13.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 (33031, '2021-11-13', 2167, 31629, 2478, NULL, '14.0000', '2.2000', '2.2000', '3.0000', '3.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 (33032, '2021-11-13', 9565, 31630, 2478, NULL, '1.0000', '4.5000', '4.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 (33033, '2021-11-13', 2491, 31631, 2478, 6228, '-12.0000', '12.2000', '12.2000', '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 (33034, '2021-11-13', 2491, 31631, 2478, NULL, '13.0000', '12.2000', '12.2000', '17.0000', '17.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 (33035, '2021-11-13', 1302, 31632, 2478, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '6.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 (33036, '2021-11-13', 1935, 31633, 2478, 5586, '-33.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 (33037, '2021-11-13', 1935, 31633, 2478, NULL, '34.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (33038, '2021-11-13', 1822, 31634, 2478, 8225, '-50.0000', '2.4000', '2.4000', '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 (33039, '2021-11-13', 1822, 31634, 2478, NULL, '60.0000', '2.4000', '2.4000', '3.5000', '3.5000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33040, '2021-11-13', 1346, 31635, 2478, 242, '5.0000', '1.0594', '1.0594', '1.5000', '1.5000', '47.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 (33041, '2021-11-13', 8594, 31636, 2478, 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 (33042, '2021-11-13', 2068, 31637, 2478, 5568, '-12.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 (33043, '2021-11-13', 2068, 31637, 2478, NULL, '13.0000', '13.1000', '13.1000', '17.0000', '17.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 (33044, '2021-11-13', 1863, 31638, 2478, 10808, '-83.0000', '0.4136', '0.4136', '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 (33045, '2021-11-13', 1863, 31638, 2478, NULL, '84.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33046, '2021-11-13', 1867, 31639, 2479, 33361, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33047, '2021-11-13', 2105, 31640, 2479, 34630, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33048, '2021-11-13', 2105, 31640, 2479, 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 (33049, '2021-11-13', 2061, 31641, 2479, NULL, '1.0000', '10.6800', '10.6800', '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 (33050, '2021-11-13', 2655, 31642, 2480, 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 (33051, '2021-11-13', 2031, 31643, 2480, 40002, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33052, '2021-11-13', 1564, 31644, 2480, NULL, '1.0000', '90.0000', '90.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 (33053, '2021-11-13', 2020, 31645, 2480, NULL, '1.0000', '7.8240', '7.8240', '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 (33054, '2021-11-13', 7411, 31646, 2480, NULL, '1.0000', '1.3500', '1.3500', '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 (33055, '2021-11-13', 2102, 31647, 2480, 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 (33056, '2021-11-13', 1880, 31648, 2480, 37787, '1.0000', '4.7372', '4.7372', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33057, '2021-11-13', 1606, 31649, 2480, 37773, '5.0000', '4.9200', '4.9200', '6.0000', '6.0000', '25.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33058, '2021-11-13', 2220, 31650, 2481, 24950, '1.0000', '5.9300', '5.9300', '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 (33059, '2021-11-13', 2958, 31651, 2482, 40132, '5.0000', '1.0000', '1.0000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33060, '2021-11-13', 2295, 31652, 2483, NULL, '2.0000', '0.7000', '0.7000', '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 (33061, '2021-11-13', 7641, 31653, 2483, NULL, '1.0000', '1.9000', '1.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 (33062, '2021-11-13', 2169, 31654, 2483, NULL, '1.0000', '1.1500', '1.1500', '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 (33063, '2021-11-13', 8984, 31655, 2483, NULL, '1.0000', '-100.8495', '-100.8495', '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 (33064, '2021-11-13', 1577, 31656, 2484, 39771, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33065, '2021-11-13', 7411, 31657, 2484, NULL, '1.0000', '1.3500', '1.3500', '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 (33066, '2021-11-13', 1435, 31658, 2485, NULL, '1.0000', '22.5000', '22.5000', '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 (33067, '2021-11-13', 9438, 31659, 2486, NULL, '1.0000', '30.0000', '30.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 (33068, '2021-11-13', 1574, 31660, 2486, 7593, '-30.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 (33069, '2021-11-13', 1574, 31660, 2486, NULL, '32.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33070, '2021-11-13', 1670, 31661, 2486, 10163, '-6.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 (33071, '2021-11-13', 1670, 31661, 2486, NULL, '7.0000', '19.5000', '19.5000', '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 (33072, '2021-11-13', 2105, 31662, 2486, 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 (33073, '2021-11-13', 1346, 31663, 2486, 242, '6.0000', '1.0594', '1.0594', '1.5000', '1.5000', '31.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 (33074, '2021-11-13', 1618, 31664, 2486, NULL, '1.0000', '11.8200', '11.8200', '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 (33075, '2021-11-13', 7514, 31665, 2487, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33076, '2021-11-13', 8638, 31666, 2487, 37757, '4.0000', '0.5100', '0.5100', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33077, '2021-11-13', 1837, 31667, 2488, 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 (33078, '2021-11-13', 8607, 31668, 2488, 40005, '1.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33079, '2021-11-13', 2465, 31669, 2488, 34596, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33080, '2021-11-13', 1884, 31670, 2488, NULL, '1.0000', '4.8050', '4.8050', '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 (33081, '2021-11-13', 2475, 31671, 2488, 39983, '2.0000', '8.0000', '8.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33082, '2021-11-13', 1888, 31672, 2488, 19330, '1.0000', '194.0075', '194.0075', '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 (33083, '2021-11-13', 7411, 31673, 2488, NULL, '1.0000', '1.3500', '1.3500', '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 (33084, '2021-11-13', 7514, 31674, 2488, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33085, '2021-11-13', 7558, 31675, 2488, 39820, '2.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33086, '2021-11-13', 1670, 31676, 2488, 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 (33087, '2021-11-13', 2270, 31677, 2488, 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 (33088, '2021-11-13', 1618, 31678, 2488, NULL, '1.0000', '402.7200', '402.7200', '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 (33089, '2021-11-13', 8638, 31679, 2488, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33090, '2021-11-13', 1628, 31680, 2489, NULL, '1.0000', '5.7900', '5.7900', '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 (33091, '2021-11-13', 1854, 31681, 2490, 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 (33092, '2021-11-13', 2135, 31682, 2490, 18930, '2.0000', '2.4732', '2.4732', '5.0000', '5.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 (33093, '2021-11-13', 9608, 31683, 2490, 38934, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33094, '2021-11-13', 8097, 31684, 2491, NULL, '4.0000', '3.3980', '3.3980', '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 (33095, '2021-11-13', 7507, 31685, 2491, NULL, '3.0000', '6.5000', '6.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 (33096, '2021-11-13', 7758, 31686, 2491, 39621, '1.0000', '-2.1550', '-2.1550', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33097, '2021-11-13', 8360, 31687, 2491, 39538, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33098, '2021-11-13', 7848, 31688, 2491, NULL, '1.0000', '1.3500', '1.3500', '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 (33099, '2021-11-13', 1840, 31689, 2491, 33725, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '168.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33100, '2021-11-13', 1841, 31690, 2491, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '108.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33101, '2021-11-13', 2289, 31691, 2491, 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 (33102, '2021-11-13', 7385, 31692, 2491, 40972, '2.0000', '205.3671', '205.3671', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33103, '2021-11-13', 7930, 31693, 2491, 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 (33104, '2021-11-13', 8457, 31694, 2491, NULL, '1.0000', '0.7500', '0.7500', '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 (33105, '2021-11-13', 7674, 31695, 2491, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '144.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33106, '2021-11-13', 9272, 31696, 2491, NULL, '1.0000', '3.1000', '3.1000', '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 (33107, '2021-11-13', 8063, 31697, 2491, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33108, '2021-11-13', 8756, 31698, 2491, NULL, '1.0000', '7.5051', '7.5051', '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 (33109, '2021-11-13', 9330, 31699, 2491, 33724, '1.0000', '9.5399', '9.5399', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33110, '2021-11-13', 8918, 31700, 2491, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33111, '2021-11-13', 9578, 31701, 2491, NULL, '1.0000', '8.0000', '8.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 (33112, '2021-11-13', 8982, 31702, 2491, 32141, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33113, '2021-11-13', 7991, 31703, 2491, NULL, '1.0000', '26.5700', '26.5700', '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 (33114, '2021-11-13', 7743, 31704, 2491, NULL, '3.0000', '1874.1978', '1874.1978', '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 (33115, '2021-11-13', 7920, 31705, 2491, 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 (33116, '2021-11-13', 7781, 31706, 2491, NULL, '3.0000', '4.2500', '4.2500', '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 (33117, '2021-11-13', 7396, 31707, 2491, 30023, '1.0000', '6.0000', '6.0000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33118, '2021-11-13', 7482, 31708, 2491, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33119, '2021-11-13', 7385, 31709, 2491, 40972, '4.0000', '205.3671', '205.3671', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33120, '2021-11-13', 7672, 31710, 2491, NULL, '1.0000', '1.0200', '1.0200', '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 (33121, '2021-11-13', 7564, 31711, 2491, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33122, '2021-11-13', 7641, 31712, 2491, NULL, '1.0000', '2.3177', '2.3177', '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 (33123, '2021-11-13', 1339, 31713, 2491, NULL, '1.0000', '4.1934', '4.1934', '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 (33124, '2021-11-13', 2529, 31714, 2491, 40405, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33125, '2021-11-13', 7433, 31715, 2491, NULL, '14.0000', '6.2000', '6.2000', '6.5000', '6.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 (33126, '2021-11-13', 8735, 31716, 2491, NULL, '1.0000', '5.6000', '5.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 (33127, '2021-11-13', 7674, 31717, 2491, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '145.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33128, '2021-11-13', 1841, 31718, 2491, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '110.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33129, '2021-11-13', 8046, 31719, 2491, 37407, '10.0000', '456.2805', '456.2805', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33130, '2021-11-13', 8927, 31720, 2491, NULL, '14.0000', '36.0000', '36.0000', '3.5000', '3.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 (33131, '2021-11-13', 8401, 31721, 2491, NULL, '1.0000', '23.1600', '23.1600', '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 (33132, '2021-11-13', 2374, 31722, 2491, 38148, '1.0000', '6.1000', '6.1000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33133, '2021-11-13', 9092, 31723, 2491, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '241.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33134, '2021-11-13', 7368, 31724, 2491, 30004, '1.0000', '11.4000', '11.4000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33135, '2021-11-13', 1650, 31725, 2491, NULL, '1.0000', '14.7450', '14.7450', '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 (33136, '2021-11-13', 7411, 31726, 2491, NULL, '10.0000', '1.3500', '1.3500', '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 (33137, '2021-11-13', 7731, 31727, 2491, NULL, '1.0000', '0.0000', '0.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 (33138, '2021-11-13', 9103, 31728, 2491, NULL, '1.0000', '32.6700', '32.6700', '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 (33139, '2021-11-13', 7558, 31729, 2491, 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 (33140, '2021-11-13', 8393, 31730, 2491, 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 (33141, '2021-11-13', 7867, 31731, 2491, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33142, '2021-11-13', 7385, 31732, 2491, 40972, '1.0000', '205.3671', '205.3671', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33143, '2021-11-13', 8466, 31733, 2491, NULL, '1.0000', '-24.7500', '-24.7500', '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 (33144, '2021-11-13', 7981, 31734, 2491, NULL, '10.0000', '6.0000', '6.0000', '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 (33145, '2021-11-13', 8038, 31735, 2491, NULL, '1.0000', '6.7600', '6.7600', '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 (33146, '2021-11-13', 8053, 31736, 2491, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33147, '2021-11-13', 9566, 31737, 2491, 38176, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33148, '2021-11-13', 3001, 31738, 2491, NULL, '1.0000', '1.5000', '1.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 (33149, '2021-11-13', 1590, 31739, 2492, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (33150, '2021-11-13', 2169, 31740, 2492, NULL, '1.0000', '1.1500', '1.1500', '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 (33151, '2021-11-13', 1651, 31741, 2492, NULL, '1.0000', '10.3802', '10.3802', '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 (33152, '2021-11-13', 7890, 31742, 2493, NULL, '1.0000', '1.0000', '1.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33153, '2021-11-13', 9418, 31743, 2493, NULL, '1.0000', '46.2000', '46.2000', '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 (33154, '2021-11-13', 7759, 31744, 2493, NULL, '3.0000', '19.5000', '19.5000', '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 (33155, '2021-11-13', 8038, 31745, 2493, NULL, '1.0000', '6.7600', '6.7600', '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 (33156, '2021-11-13', 8053, 31746, 2493, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33157, '2021-11-13', 3001, 31747, 2493, NULL, '2.0000', '1.5000', '1.5000', '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 (33158, '2021-11-13', 7748, 31748, 2493, NULL, '1.0000', '61.7900', '61.7900', '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 (33159, '2021-11-13', 8849, 31749, 2493, NULL, '1.0000', '1.0700', '1.0700', '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 (33160, '2021-11-13', 8134, 31750, 2493, NULL, '1.0000', '5.2600', '5.2600', '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 (33161, '2021-11-13', 7704, 31751, 2493, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33162, '2021-11-13', 9272, 31752, 2493, NULL, '1.0000', '3.1000', '3.1000', '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 (33163, '2021-11-13', 7641, 31753, 2493, NULL, '1.0000', '2.3177', '2.3177', '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 (33164, '2021-11-13', 7781, 31754, 2493, NULL, '3.0000', '4.2500', '4.2500', '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 (33165, '2021-11-13', 7672, 31755, 2493, NULL, '1.0000', '1.0200', '1.0200', '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 (33166, '2021-11-13', 7984, 31756, 2493, NULL, '1.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33167, '2021-11-13', 7587, 31757, 2493, NULL, '1.0000', '1.5000', '1.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 (33168, '2021-11-13', 2100, 31758, 2493, 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 (33169, '2021-11-13', 7674, 31759, 2493, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '142.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33170, '2021-11-13', 7892, 31760, 2493, NULL, '1.0000', '4.2000', '4.2000', '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 (33171, '2021-11-13', 7926, 31761, 2493, 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 (33172, '2021-11-13', 9191, 31762, 2493, NULL, '2.0000', '6.6700', '6.6700', '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 (33173, '2021-11-13', 7507, 31763, 2493, NULL, '3.0000', '6.5000', '6.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 (33174, '2021-11-13', 7609, 31764, 2493, NULL, '1.0000', '4.3300', '4.3300', '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 (33175, '2021-11-13', 1339, 31765, 2493, NULL, '1.0000', '4.1934', '4.1934', '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 (33176, '2021-11-13', 8153, 31766, 2493, NULL, '1.0000', '0.3200', '0.3200', '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 (33177, '2021-11-13', 9482, 31767, 2494, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33178, '2021-11-13', 3001, 31768, 2494, 37759, '1.0000', '2.5621', '2.5621', '1.0000', '1.0000', '90.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33179, '2021-11-13', 7411, 31769, 2494, NULL, '1.0000', '1.3500', '1.3500', '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 (33180, '2021-11-13', 1844, 31770, 2494, 34022, '1.0000', '1.3981', '1.3981', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33181, '2021-11-13', 1381, 31771, 2494, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33182, '2021-11-13', 2254, 31772, 2494, 22382, '1.0000', '17.9400', '17.9400', '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 (33183, '2021-11-13', 2169, 31773, 2494, NULL, '1.0000', '1.1500', '1.1500', '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 (33184, '2021-11-13', 9213, 31774, 2494, NULL, '1.0000', '5.4000', '5.4000', '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 (33185, '2021-11-13', 8765, 31775, 2494, 39995, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33186, '2021-11-13', 1409, 31776, 2495, NULL, '1.0000', '13.5000', '13.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 (33187, '2021-11-13', 1339, 31777, 2495, NULL, '1.0000', '1.4463', '1.4463', '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 (33188, '2021-11-13', 2579, 31778, 2496, NULL, '1.0000', '20.0000', '20.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 (33189, '2021-11-13', 1704, 31779, 2496, 6311, '-1.0000', '27.0900', '27.0900', '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 (33190, '2021-11-13', 1704, 31779, 2496, NULL, '2.0000', '27.0900', '27.0900', '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 (33191, '2021-11-13', 2602, 31780, 2496, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '11.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 (33192, '2021-11-13', 1626, 31781, 2496, 18810, '1.0000', '7.5900', '7.5900', '10.5000', '10.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 (33193, '2021-11-13', 1346, 31782, 2496, 242, '10.0000', '1.0594', '1.0594', '1.5000', '1.5000', '21.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 (33194, '2021-11-13', 1610, 31783, 2496, 8730, '-2.0000', '15.7500', '15.7500', '21.5000', '21.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 (33195, '2021-11-13', 1610, 31783, 2496, NULL, '3.0000', '15.7500', '15.7500', '21.5000', '21.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 (33196, '2021-11-13', 9577, 31784, 2496, NULL, '1.0000', '0.3200', '0.3200', '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 (33197, '2021-11-13', 1910, 31785, 2496, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '40.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 (33198, '2021-11-13', 2167, 31786, 2496, 17165, '-14.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 (33199, '2021-11-13', 2167, 31786, 2496, NULL, '15.0000', '2.2000', '2.2000', '3.0000', '3.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 (33200, '2021-11-13', 2699, 31787, 2496, 12529, '-15.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 (33201, '2021-11-13', 2699, 31787, 2496, NULL, '16.0000', '3.0000', '3.0000', '4.5000', '4.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 (33202, '2021-11-13', 2643, 31788, 2496, 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 (33203, '2021-11-13', 2759, 31789, 2496, 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 (33204, '2021-11-13', 7379, 31790, 2496, NULL, '1.0000', '12.5100', '12.5100', '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 (33205, '2021-11-13', 1425, 31791, 2496, 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 (33206, '2021-11-13', 2699, 31792, 2496, 12529, '-15.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 (33207, '2021-11-13', 2699, 31792, 2496, NULL, '16.0000', '3.0000', '3.0000', '4.5000', '4.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 (33208, '2021-11-13', 1812, 31793, 2496, 8224, '-25.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 (33209, '2021-11-13', 1812, 31793, 2496, NULL, '26.0000', '7.8900', '7.8900', '10.5000', '10.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 (33210, '2021-11-13', 2486, 31794, 2496, 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 (33211, '2021-11-13', 2924, 31795, 2496, 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 (33212, '2021-11-13', 1703, 31796, 2496, NULL, '1.0000', '9.2200', '9.2200', '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 (33213, '2021-11-13', 1689, 31797, 2496, NULL, '1.0000', '60.7198', '60.7198', '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 (33214, '2021-11-13', 2254, 31798, 2496, 33806, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33215, '2021-11-13', 2825, 31799, 2496, NULL, '4.0000', '12.0000', '12.0000', '12.0000', '12.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 (33216, '2021-11-13', 2285, 31800, 2496, 2945, '-17.0000', '35.8000', '35.8000', '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 (33217, '2021-11-13', 2285, 31800, 2496, NULL, '18.0000', '35.8000', '35.8000', '47.0000', '47.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 (33218, '2021-11-13', 2823, 31801, 2496, 19684, '-12.0000', '11.2100', '11.2100', '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 (33219, '2021-11-13', 2823, 31801, 2496, NULL, '14.0000', '11.2100', '11.2100', '7.5000', '7.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 (33220, '2021-11-13', 2299, 31802, 2496, 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 (33221, '2021-11-13', 9089, 31803, 2496, NULL, '1.0000', '3.8000', '3.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 (33222, '2021-11-13', 9565, 31804, 2496, NULL, '1.0000', '4.5000', '4.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 (33223, '2021-11-13', 7411, 31805, 2496, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33224, '2021-11-13', 2699, 31806, 2496, 12529, '-15.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 (33225, '2021-11-13', 2699, 31806, 2496, NULL, '16.0000', '3.0000', '3.0000', '4.5000', '4.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 (33226, '2021-11-13', 1908, 31807, 2496, 5444, '-19.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 (33227, '2021-11-13', 1908, 31807, 2496, NULL, '21.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33228, '2021-11-13', 2250, 31808, 2496, 2787, '-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 (33229, '2021-11-13', 2250, 31808, 2496, NULL, '2.0000', '6.8900', '6.8900', '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 (33230, '2021-11-13', 2280, 31809, 2496, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '37.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33231, '2021-11-13', 1701, 31810, 2496, 11266, '-1.0000', '14.7800', '14.7800', '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 (33232, '2021-11-13', 1701, 31810, 2496, NULL, '2.0000', '14.7800', '14.7800', '18.5000', '18.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 (33233, '2021-11-13', 1363, 31811, 2496, 22255, '28.0000', '70541.0357', '70541.0357', '4.0000', '4.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 (33234, '2021-11-13', 2965, 31812, 2496, NULL, '1.0000', '5.0000', '5.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 (33235, '2021-11-13', 1845, 31813, 2496, 6222, '-7.0000', '19.5000', '19.5000', '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 (33236, '2021-11-13', 1845, 31813, 2496, NULL, '8.0000', '19.5000', '19.5000', '26.5000', '26.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 (33237, '2021-11-13', 2360, 31814, 2496, 3862, '-20.0000', '0.5200', '0.5200', '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 (33238, '2021-11-13', 2360, 31814, 2496, NULL, '30.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (33239, '2021-11-13', 2660, 31815, 2496, NULL, '10.0000', '0.7000', '0.7000', '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 (33240, '2021-11-13', 1569, 31816, 2496, 432, '1.0000', '96.0576', '96.0576', '20.0000', '20.0000', '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 (33241, '2021-11-13', 2649, 31817, 2496, 11163, '-2.0000', '71.9188', '71.9188', '101.0000', '101.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33242, '2021-11-13', 2649, 31817, 2496, NULL, '3.0000', '71.9188', '71.9188', '101.0000', '101.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 (33243, '2021-11-13', 1316, 31818, 2496, 11758, '-1.0000', '6.3000', '6.3000', '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 (33244, '2021-11-13', 1316, 31818, 2496, NULL, '2.0000', '6.3000', '6.3000', '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 (33245, '2021-11-13', 2221, 31819, 2496, 4154, '-16.0000', '14.4737', '14.4737', '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 (33246, '2021-11-13', 2221, 31819, 2496, NULL, '17.0000', '14.4737', '14.4737', '25.0000', '25.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 (33247, '2021-11-13', 1837, 31820, 2497, 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 (33248, '2021-11-13', 2475, 31821, 2497, 39983, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33249, '2021-11-13', 2287, 31822, 2497, 29630, '2.0000', '1.1700', '1.1700', '3.0000', '3.0000', '72.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33250, '2021-11-13', 1854, 31823, 2497, 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 (33251, '2021-11-13', 9482, 31824, 2498, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33252, '2021-11-13', 1637, 31825, 2498, 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 (33253, '2021-11-13', 9089, 31826, 2498, NULL, '1.0000', '3.8000', '3.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 (33254, '2021-11-13', 1512, 31827, 2499, 378, '1.0000', '12.8276', '12.8276', '6.0000', '6.0000', '3.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 (33255, '2021-11-13', 7411, 31828, 2500, NULL, '2.0000', '1.3500', '1.3500', '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 (33256, '2021-11-13', 8359, 31829, 2500, NULL, '1.0000', '20.4289', '20.4289', '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 (33257, '2021-11-13', 8101, 31830, 2500, NULL, '2.0000', '21.7000', '21.7000', '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 (33258, '2021-11-13', 7592, 31831, 2500, 36046, '1.0000', '14.2175', '14.2175', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33259, '2021-11-13', 7342, 31832, 2500, 29987, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '79.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33260, '2021-11-13', 7980, 31833, 2500, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (33261, '2021-11-13', 9089, 31834, 2500, 40445, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33262, '2021-11-13', 7712, 31835, 2500, NULL, '1.0000', '0.3300', '0.3300', '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 (33263, '2021-11-13', 9191, 31836, 2500, NULL, '1.0000', '6.6700', '6.6700', '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 (33264, '2021-11-13', 8548, 31837, 2500, NULL, '1.0000', '12.0000', '12.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 (33265, '2021-11-13', 7411, 31838, 2500, NULL, '1.0000', '1.3500', '1.3500', '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 (33266, '2021-11-13', 8276, 31839, 2500, NULL, '1.0000', '12.7063', '12.7063', '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 (33267, '2021-11-13', 7447, 31840, 2500, NULL, '8.0000', '19.1100', '19.1100', '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 (33268, '2021-11-13', 8913, 31841, 2500, 33706, '1.0000', '15.1316', '15.1316', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33269, '2021-11-13', 7715, 31842, 2500, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33270, '2021-11-13', 2526, 31843, 2500, 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 (33271, '2021-11-13', 2713, 31844, 2500, 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 (33272, '2021-11-13', 7713, 31845, 2500, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33273, '2021-11-13', 1351, 31846, 2501, 247, '1.0000', '35.4167', '35.4167', '53.0000', '53.0000', '0.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33274, '2021-11-13', 2924, 31847, 2501, 18775, '-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 (33275, '2021-11-13', 2924, 31847, 2501, NULL, '2.0000', '6.3000', '6.3000', '8.5000', '8.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 (33276, '2021-11-13', 1525, 31848, 2501, NULL, '2.0000', '4.9100', '4.9100', '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 (33277, '2021-11-13', 2252, 31849, 2501, 2789, '-12.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 (33278, '2021-11-13', 2252, 31849, 2501, NULL, '13.0000', '9.5000', '9.5000', '12.5000', '12.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 (33279, '2021-11-13', 2643, 31850, 2501, 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 (33280, '2021-11-13', 8767, 31851, 2502, NULL, '2.0000', '6.6900', '6.6900', '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 (33281, '2021-11-14', 2280, 31852, 2503, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '36.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33282, '2021-11-14', 2916, 31853, 2503, 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 (33283, '2021-11-14', 2379, 31854, 2503, 4032, '-26.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 (33284, '2021-11-14', 2379, 31854, 2503, NULL, '27.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-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 (33285, '2021-11-14', 2350, 31855, 2503, 3853, '-2.0000', '10.3800', '10.3800', '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 (33286, '2021-11-14', 2350, 31855, 2503, NULL, '3.0000', '10.3800', '10.3800', '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 (33287, '2021-11-14', 2095, 31856, 2503, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '55.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 (33288, '2021-11-14', 2101, 31857, 2503, 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 (33289, '2021-11-14', 2698, 31858, 2503, NULL, '1.0000', '36.8600', '36.8600', '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 (33290, '2021-11-14', 1669, 31859, 2503, NULL, '5.0000', '6.7000', '6.7000', '9.5000', '9.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 (33291, '2021-11-14', 1330, 31860, 2503, 14393, '-4.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 (33292, '2021-11-14', 1330, 31860, 2503, NULL, '5.0000', '3.7000', '3.7000', '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 (33293, '2021-11-14', 2660, 31861, 2503, 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 (33294, '2021-11-14', 2958, 31862, 2503, 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 (33295, '2021-11-14', 2068, 31863, 2503, 5568, '-13.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 (33296, '2021-11-14', 2068, 31863, 2503, NULL, '14.0000', '13.1000', '13.1000', '17.0000', '17.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 (33297, '2021-11-14', 1529, 31864, 2503, 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 (33298, '2021-11-14', 2942, 31865, 2503, 19985, '-4.0000', '0.4900', '0.4900', '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 (33299, '2021-11-14', 2942, 31865, 2503, NULL, '5.0000', '0.4900', '0.4900', '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 (33300, '2021-11-14', 1411, 31866, 2503, 33816, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33301, '2021-11-14', 1703, 31867, 2503, 5487, '-1.0000', '9.2200', '9.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 (33302, '2021-11-14', 1703, 31867, 2503, NULL, '2.0000', '9.2200', '9.2200', '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 (33303, '2021-11-14', 1602, 31868, 2503, 5897, '-39.0000', '6.7859', '6.7859', '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 (33304, '2021-11-14', 1602, 31868, 2503, NULL, '40.0000', '6.7859', '6.7859', '10.0000', '10.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 (33305, '2021-11-14', 1812, 31869, 2503, 8224, '-26.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 (33306, '2021-11-14', 1812, 31869, 2503, NULL, '28.0000', '7.8900', '7.8900', '10.5000', '10.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 (33307, '2021-11-14', 8743, 31870, 2503, 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 (33308, '2021-11-14', 1667, 31871, 2503, 9745, '-24.0000', '5.9400', '5.9400', '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 (33309, '2021-11-14', 1667, 31871, 2503, NULL, '25.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-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 (33310, '2021-11-14', 2511, 31872, 2503, 9740, '-7.0000', '8.5000', '8.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 (33311, '2021-11-14', 2511, 31872, 2503, NULL, '8.0000', '8.5000', '8.5000', '12.0000', '12.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 (33312, '2021-11-14', 1828, 31873, 2503, NULL, '1.0000', '0.7300', '0.7300', '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 (33313, '2021-11-14', 1845, 31874, 2503, 6222, '-8.0000', '19.5000', '19.5000', '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 (33314, '2021-11-14', 1845, 31874, 2503, NULL, '9.0000', '19.5000', '19.5000', '26.5000', '26.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 (33315, '2021-11-14', 2085, 31875, 2503, 1175, '2.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '0.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 (33316, '2021-11-14', 2085, 31875, 2503, NULL, '3.0000', '-1.0741', '-1.0741', '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 (33317, '2021-11-14', 2277, 31876, 2503, 2937, '-11.0000', '0.7800', '0.7800', '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 (33318, '2021-11-14', 2277, 31876, 2503, NULL, '15.0000', '0.7800', '0.7800', '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 (33319, '2021-11-14', 8745, 31877, 2503, 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 (33320, '2021-11-14', 1812, 31878, 2503, 8224, '-26.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 (33321, '2021-11-14', 1812, 31878, 2503, NULL, '28.0000', '7.8900', '7.8900', '10.5000', '10.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 (33322, '2021-11-14', 2592, 31879, 2503, 10812, '-11.0000', '7.9670', '7.9670', '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 (33323, '2021-11-14', 2592, 31879, 2503, NULL, '12.0000', '7.9670', '7.9670', '10.5000', '10.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 (33324, '2021-11-14', 1375, 31880, 2503, 33795, '1.0000', '92.1118', '92.1118', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33325, '2021-11-14', 8809, 31881, 2503, 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 (33326, '2021-11-14', 2277, 31882, 2503, 2937, '-11.0000', '0.7800', '0.7800', '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 (33327, '2021-11-14', 2277, 31882, 2503, NULL, '12.0000', '0.7800', '0.7800', '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 (33328, '2021-11-14', 1518, 31883, 2503, 6524, '-3.0000', '6.9000', '6.9000', '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 (33329, '2021-11-14', 1518, 31883, 2503, NULL, '4.0000', '6.9000', '6.9000', '10.0000', '10.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 (33330, '2021-11-14', 1505, 31884, 2503, NULL, '1.0000', '13.3062', '13.3062', '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 (33331, '2021-11-14', 2964, 31885, 2503, NULL, '1.0000', '6.6000', '6.6000', '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 (33332, '2021-11-14', 2280, 31886, 2503, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '36.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33333, '2021-11-14', 2334, 31887, 2503, 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 (33334, '2021-11-14', 1665, 31888, 2503, 3235, '-31.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 (33335, '2021-11-14', 1665, 31888, 2503, NULL, '32.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33336, '2021-11-14', 2135, 31889, 2503, 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 (33337, '2021-11-14', 2302, 31890, 2503, 2963, '-22.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 (33338, '2021-11-14', 2302, 31890, 2503, NULL, '23.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (33339, '2021-11-14', 1541, 31891, 2503, 18018, '-2.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 (33340, '2021-11-14', 1541, 31891, 2503, NULL, '3.0000', '19.0000', '19.0000', '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 (33341, '2021-11-14', 1674, 31892, 2503, 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 (33342, '2021-11-14', 1493, 31893, 2503, 9747, '-5.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 (33343, '2021-11-14', 1493, 31893, 2503, NULL, '6.0000', '1.5425', '1.5425', '3.0000', '3.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 (33344, '2021-11-14', 1602, 31894, 2503, 5897, '-39.0000', '6.7859', '6.7859', '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 (33345, '2021-11-14', 1602, 31894, 2503, NULL, '40.0000', '6.7859', '6.7859', '10.0000', '10.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 (33346, '2021-11-14', 2169, 31895, 2503, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '27.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 (33347, '2021-11-14', 1602, 31896, 2504, 5897, '-41.0000', '6.7859', '6.7859', '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 (33348, '2021-11-14', 1602, 31896, 2504, NULL, '42.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33349, '2021-11-14', 1523, 31897, 2505, NULL, '1.0000', '1.0061', '1.0061', '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 (33350, '2021-11-14', 2315, 31898, 2505, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33351, '2021-11-14', 1386, 31899, 2505, 37975, '1.0000', '-1.9773', '-1.9773', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33352, '2021-11-14', 1520, 31900, 2505, 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 (33353, '2021-11-14', 7428, 31901, 2505, NULL, '5.0000', '2.6100', '2.6100', '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 (33354, '2021-11-14', 1728, 31902, 2505, 19324, '4.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 (33355, '2021-11-14', 2272, 31903, 2505, 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 (33356, '2021-11-14', 8902, 31904, 2505, 34925, '1.0000', '16.4800', '16.4800', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33357, '2021-11-14', 2366, 31905, 2505, NULL, '2.0000', '6.4500', '6.4500', '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 (33358, '2021-11-14', 9461, 31906, 2505, NULL, '1.0000', '1.6000', '1.6000', '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 (33359, '2021-11-14', 2916, 31907, 2505, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33360, '2021-11-14', 1744, 31908, 2505, 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 (33361, '2021-11-14', 1580, 31909, 2505, 19875, '3.0000', '0.9900', '0.9900', '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 (33362, '2021-11-14', 2136, 31910, 2505, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33363, '2021-11-14', 1844, 31911, 2505, 34022, '1.0000', '1.3981', '1.3981', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33364, '2021-11-14', 8746, 31912, 2505, 39996, '1.0000', '4.3169', '4.3169', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33365, '2021-11-14', 8746, 31912, 2505, NULL, '1.0000', '4.3169', '4.3169', '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 (33366, '2021-11-14', 2167, 31913, 2505, 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 (33367, '2021-11-14', 2289, 31914, 2505, 38551, '1.0000', '0.2831', '0.2831', '0.5000', '0.5000', '26.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33368, '2021-11-14', 2237, 31915, 2505, NULL, '1.0000', '-64.5817', '-64.5817', '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 (33369, '2021-11-14', 1590, 31916, 2505, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (33370, '2021-11-14', 2167, 31917, 2505, 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 (33371, '2021-11-14', 1523, 31918, 2505, NULL, '1.0000', '1.0061', '1.0061', '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 (33372, '2021-11-14', 2417, 31919, 2505, 32544, '1.0000', '3.7800', '3.7800', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33373, '2021-11-14', 2260, 31920, 2505, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33374, '2021-11-14', 1519, 31921, 2505, 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 (33375, '2021-11-14', 2655, 31922, 2505, 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 (33376, '2021-11-14', 1381, 31923, 2505, 34962, '1.0000', '-3966.3380', '-3966.3380', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33377, '2021-11-14', 1519, 31924, 2505, 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 (33378, '2021-11-14', 1523, 31925, 2505, NULL, '1.0000', '1.0061', '1.0061', '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 (33379, '2021-11-14', 2169, 31926, 2505, NULL, '2.0000', '1.1500', '1.1500', '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 (33380, '2021-11-14', 2923, 31927, 2505, 34921, '1.0000', '11.1200', '11.1200', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33381, '2021-11-14', 7742, 31928, 2505, 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 (33382, '2021-11-14', 1668, 31929, 2505, NULL, '1.0000', '-141.3000', '-141.3000', '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 (33383, '2021-11-14', 2730, 31930, 2505, 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 (33384, '2021-11-14', 3058, 31931, 2505, 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 (33385, '2021-11-14', 2346, 31932, 2505, NULL, '1.0000', '5.8000', '5.8000', '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 (33386, '2021-11-14', 2103, 31933, 2505, 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 (33387, '2021-11-14', 2720, 31934, 2505, 13755, '1.0000', '2.7900', '2.7900', '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 (33388, '2021-11-14', 1519, 31935, 2505, 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 (33389, '2021-11-14', 2923, 31936, 2505, 34921, '1.0000', '11.1200', '11.1200', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33390, '2021-11-14', 7342, 31937, 2505, NULL, '1.0000', '15.6000', '15.6000', '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 (33391, '2021-11-14', 2235, 31938, 2505, 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 (33392, '2021-11-14', 9085, 31939, 2505, NULL, '1.0000', '2.7000', '2.7000', '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 (33393, '2021-11-14', 2247, 31940, 2505, 33149, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33394, '2021-11-14', 8876, 31941, 2505, NULL, '1.0000', '0.9900', '0.9900', '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 (33395, '2021-11-14', 2169, 31942, 2505, NULL, '1.0000', '1.1500', '1.1500', '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 (33396, '2021-11-14', 1521, 31943, 2505, 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 (33397, '2021-11-14', 3058, 31944, 2505, 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 (33398, '2021-11-14', 2262, 31945, 2505, 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 (33399, '2021-11-14', 1863, 31946, 2505, NULL, '1.0000', '1.2830', '1.2830', '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 (33400, '2021-11-14', 1529, 31947, 2505, NULL, '1.0000', '3.7110', '3.7110', '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 (33401, '2021-11-14', 1935, 31948, 2505, 39910, '1.0000', '-0.8330', '-0.8330', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33402, '2021-11-14', 9469, 31949, 2505, NULL, '1.0000', '2.3000', '2.3000', '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 (33403, '2021-11-14', 1884, 31950, 2505, NULL, '1.0000', '4.8050', '4.8050', '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 (33404, '2021-11-14', 1394, 31951, 2505, 37812, '1.0000', '9.2833', '9.2833', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33405, '2021-11-14', 1529, 31952, 2505, NULL, '1.0000', '3.7110', '3.7110', '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 (33406, '2021-11-14', 2103, 31953, 2505, NULL, '2.0000', '0.4500', '0.4500', '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 (33407, '2021-11-14', 2315, 31954, 2505, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33408, '2021-11-14', 1782, 31955, 2505, 19339, '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 (33409, '2021-11-14', 1863, 31956, 2505, NULL, '1.0000', '1.2830', '1.2830', '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 (33410, '2021-11-14', 2135, 31957, 2505, 18930, '1.0000', '2.4732', '2.4732', '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 (33411, '2021-11-14', 8133, 31958, 2505, 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 (33412, '2021-11-14', 7742, 31959, 2505, 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 (33413, '2021-11-14', 1480, 31960, 2506, 24922, '1.0000', '29.9900', '29.9900', '40.0000', '40.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 (33414, '2021-11-14', 2650, 31961, 2506, NULL, '1.0000', '7.9860', '7.9860', '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 (33415, '2021-11-14', 8740, 31962, 2507, NULL, '1.0000', '2.0000', '2.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 (33416, '2021-11-14', 1375, 31963, 2507, 33795, '1.0000', '92.1118', '92.1118', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33417, '2021-11-14', 9507, 31964, 2507, NULL, '1.0000', '42.8000', '42.8000', '56.5000', '56.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33418, '2021-11-14', 1642, 31965, 2507, 2166, '-2.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 (33419, '2021-11-14', 1642, 31965, 2507, NULL, '3.0000', '22.4127', '22.4127', '41.0000', '41.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 (33420, '2021-11-14', 2363, 31966, 2508, NULL, '2.0000', '6.8800', '6.8800', '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 (33421, '2021-11-14', 7736, 31967, 2508, NULL, '1.0000', '15.0000', '15.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 (33422, '2021-11-14', 1904, 31968, 2508, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33423, '2021-11-14', 7705, 31969, 2508, NULL, '1.0000', '5.9900', '5.9900', '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 (33424, '2021-11-14', 9098, 31970, 2508, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33425, '2021-11-14', 7514, 31971, 2508, NULL, '1.0000', '12.9983', '12.9983', '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 (33426, '2021-11-14', 7411, 31972, 2508, NULL, '1.0000', '1.3500', '1.3500', '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 (33427, '2021-11-14', 1665, 31973, 2508, 39577, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33428, '2021-11-14', 7954, 31974, 2508, NULL, '4.0000', '23.3229', '23.3229', '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 (33429, '2021-11-14', 9123, 31975, 2508, NULL, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33430, '2021-11-14', 1650, 31976, 2508, NULL, '1.0000', '14.7450', '14.7450', '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 (33431, '2021-11-14', 7482, 31977, 2508, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33432, '2021-11-14', 2289, 31978, 2508, NULL, '6.0000', '0.2300', '0.2300', '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 (33433, '2021-11-14', 8328, 31979, 2508, NULL, '1.0000', '8.0882', '8.0882', '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 (33434, '2021-11-14', 7780, 31980, 2508, NULL, '1.0000', '2.6000', '2.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 (33435, '2021-11-14', 7588, 31981, 2508, NULL, '1.0000', '7.0762', '7.0762', '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 (33436, '2021-11-14', 7927, 31982, 2508, NULL, '1.0000', '11.7000', '11.7000', '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 (33437, '2021-11-14', 8657, 31983, 2508, NULL, '1.0000', '6.3869', '6.3869', '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 (33438, '2021-11-14', 1629, 31984, 2508, NULL, '1.0000', '15.5000', '15.5000', '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 (33439, '2021-11-14', 7707, 31985, 2508, NULL, '1.0000', '6.0124', '6.0124', '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 (33440, '2021-11-14', 1757, 31986, 2508, 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 (33441, '2021-11-14', 1314, 31987, 2508, 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 (33442, '2021-11-14', 2315, 31988, 2508, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '75.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33443, '2021-11-14', 8444, 31989, 2508, NULL, '1.0000', '26.0000', '26.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 (33444, '2021-11-14', 7439, 31990, 2508, 30052, '1.0000', '2.0000', '2.0000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33445, '2021-11-14', 7335, 31991, 2508, NULL, '1.0000', '10.4000', '10.4000', '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 (33446, '2021-11-14', 7558, 31992, 2508, NULL, '5.0000', '2.2000', '2.2000', '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 (33447, '2021-11-14', 9329, 31993, 2508, NULL, '1.0000', '5.8000', '5.8000', '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 (33448, '2021-11-14', 1917, 31994, 2508, 30925, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33449, '2021-11-14', 8657, 31995, 2508, NULL, '1.0000', '6.3869', '6.3869', '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 (33450, '2021-11-14', 7609, 31996, 2508, NULL, '1.0000', '4.3300', '4.3300', '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 (33451, '2021-11-14', 7779, 31997, 2508, NULL, '1.0000', '8.3800', '8.3800', '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 (33452, '2021-11-14', 7776, 31998, 2508, NULL, '2.0000', '8.0000', '8.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 (33453, '2021-11-14', 7736, 31999, 2508, NULL, '1.0000', '15.0000', '15.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 (33454, '2021-11-14', 8699, 32000, 2508, NULL, '1.0000', '6.3800', '6.3800', '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 (33455, '2021-11-14', 1498, 32001, 2508, 33520, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33456, '2021-11-14', 1782, 32002, 2508, 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 (33457, '2021-11-14', 7473, 32003, 2508, NULL, '10.0000', '15.4731', '15.4731', '0.6000', '0.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 (33458, '2021-11-14', 8203, 32004, 2508, NULL, '3.0000', '1.0075', '1.0075', '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 (33459, '2021-11-14', 7781, 32005, 2508, NULL, '3.0000', '4.2500', '4.2500', '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 (33460, '2021-11-14', 1369, 32006, 2508, 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 (33461, '2021-11-14', 8765, 32007, 2508, 39427, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33462, '2021-11-14', 7385, 32008, 2508, 40972, '2.0000', '205.3671', '205.3671', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33463, '2021-11-14', 7527, 32009, 2508, 31031, '2.0000', '0.8900', '0.8900', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33464, '2021-11-14', 9193, 32010, 2508, NULL, '1.0000', '5.5150', '5.5150', '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 (33465, '2021-11-14', 8539, 32011, 2508, 31000, '1.0000', '4.4300', '4.4300', '0.8000', '0.8000', '40.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33466, '2021-11-14', 7411, 32012, 2508, NULL, '3.0000', '1.3500', '1.3500', '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 (33467, '2021-11-14', 7353, 32013, 2508, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33468, '2021-11-14', 2315, 32014, 2508, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '76.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33469, '2021-11-14', 7509, 32015, 2508, 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 (33470, '2021-11-14', 7881, 32016, 2508, NULL, '1.0000', '83.7700', '83.7700', '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 (33471, '2021-11-14', 7666, 32017, 2508, NULL, '1.0000', '0.4000', '0.4000', '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 (33472, '2021-11-14', 7672, 32018, 2508, NULL, '1.0000', '1.0200', '1.0200', '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 (33473, '2021-11-14', 9456, 32019, 2508, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33474, '2021-11-14', 9282, 32020, 2508, NULL, '1.0000', '6.5000', '6.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 (33475, '2021-11-14', 7728, 32021, 2508, 39409, '1.0000', '1.8257', '1.8257', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33476, '2021-11-14', 8166, 32022, 2508, NULL, '1.0000', '4.6000', '4.6000', '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 (33477, '2021-11-14', 8702, 32023, 2508, NULL, '1.0000', '3.6700', '3.6700', '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 (33478, '2021-11-14', 8744, 32024, 2508, 39418, '1.0000', '3.5640', '3.5640', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33479, '2021-11-14', 7564, 32025, 2508, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33480, '2021-11-14', 7509, 32026, 2508, 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 (33481, '2021-11-14', 7514, 32027, 2508, NULL, '1.0000', '12.9983', '12.9983', '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 (33482, '2021-11-14', 7482, 32028, 2508, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33483, '2021-11-14', 7507, 32029, 2508, NULL, '3.0000', '6.5000', '6.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 (33484, '2021-11-14', 9311, 32030, 2508, 39417, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33485, '2021-11-14', 7784, 32031, 2508, NULL, '4.0000', '4.2500', '4.2500', '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 (33486, '2021-11-14', 2315, 32032, 2508, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '75.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33487, '2021-11-14', 8677, 32033, 2508, NULL, '2.0000', '1.2300', '1.2300', '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 (33488, '2021-11-14', 7674, 32034, 2508, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '140.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33489, '2021-11-14', 2417, 32035, 2508, NULL, '1.0000', '14.5000', '14.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 (33490, '2021-11-14', 8566, 32036, 2508, NULL, '1.0000', '2.5000', '2.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 (33491, '2021-11-14', 8203, 32037, 2508, NULL, '2.0000', '1.0075', '1.0075', '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 (33492, '2021-11-14', 7411, 32038, 2508, NULL, '1.0000', '1.3500', '1.3500', '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 (33493, '2021-11-14', 1578, 32039, 2508, 37402, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33494, '2021-11-14', 8481, 32040, 2508, NULL, '1.0000', '31.0700', '31.0700', '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 (33495, '2021-11-14', 7931, 32041, 2508, NULL, '1.0000', '0.2500', '0.2500', '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 (33496, '2021-11-14', 2259, 32042, 2509, NULL, '1.0000', '20.0000', '20.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 (33497, '2021-11-14', 2315, 32043, 2509, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33498, '2021-11-14', 7333, 32044, 2509, NULL, '1.0000', '13.5000', '13.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 (33499, '2021-11-14', 9089, 32045, 2509, NULL, '1.0000', '3.8000', '3.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 (33500, '2021-11-14', 2275, 32046, 2509, 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 (33501, '2021-11-14', 2085, 32047, 2510, 8628, '-3.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 (33502, '2021-11-14', 2085, 32047, 2510, NULL, '13.0000', '-1.0741', '-1.0741', '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 (33503, '2021-11-14', 1854, 32048, 2510, 22240, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '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 (33504, '2021-11-14', 7987, 32049, 2511, NULL, '1.0000', '37.9400', '37.9400', '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 (33505, '2021-11-14', 7711, 32050, 2512, NULL, '2.0000', '-78.4806', '-78.4806', '49.0000', '49.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 (33506, '2021-11-14', 2962, 32051, 2512, 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 (33507, '2021-11-14', 7750, 32052, 2512, NULL, '1.0000', '34.9000', '34.9000', '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 (33508, '2021-11-14', 9410, 32053, 2512, NULL, '1.0000', '20.0000', '20.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 (33509, '2021-11-14', 1672, 32054, 2512, 34503, '10.0000', '2.9200', '2.9200', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33510, '2021-11-14', 7872, 32055, 2512, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (33511, '2021-11-14', 3013, 32056, 2512, 39441, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 279);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33512, '2021-11-14', 7885, 32057, 2512, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33513, '2021-11-14', 1409, 32058, 2512, 36049, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33514, '2021-11-14', 1665, 32059, 2512, 39577, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33515, '2021-11-14', 8765, 32060, 2512, 39427, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33516, '2021-11-14', 8166, 32061, 2512, NULL, '1.0000', '4.6000', '4.6000', '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 (33517, '2021-11-14', 2037, 32062, 2513, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '17.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 (33518, '2021-11-14', 2520, 32063, 2513, 40121, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33519, '2021-11-14', 2930, 32064, 2514, 18973, '1.0000', '37.7400', '37.7400', '55.0000', '55.0000', '0.0000', 1, 0, NULL, 139);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33520, '2021-11-14', 2136, 32065, 2514, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '94.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 (33521, '2021-11-14', 1884, 32066, 2515, NULL, '1.0000', '4.8050', '4.8050', '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 (33522, '2021-11-14', 7930, 32067, 2515, 39779, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33523, '2021-11-14', 2132, 32068, 2515, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '9.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 (33524, '2021-11-14', 1519, 32069, 2515, NULL, '2.0000', '3.3500', '3.3500', '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 (33525, '2021-11-14', 1757, 32070, 2515, 37786, '1.0000', '4.0024', '4.0024', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33526, '2021-11-14', 2522, 32071, 2515, 39213, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33527, '2021-11-14', 7671, 32072, 2516, NULL, '1.0000', '15.5000', '15.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 (33528, '2021-11-14', 9315, 32073, 2516, NULL, '1.0000', '12.5000', '12.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 (33529, '2021-11-15', 8065, 32074, 2517, NULL, '1.0000', '32.0000', '32.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 (33530, '2021-11-15', 1876, 32075, 2517, 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 (33531, '2021-11-15', 7848, 32076, 2517, 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 (33532, '2021-11-15', 2003, 32077, 2517, 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 (33533, '2021-11-15', 7671, 32078, 2517, NULL, '1.0000', '15.5000', '15.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 (33534, '2021-11-15', 1880, 32079, 2517, 37787, '1.0000', '4.7372', '4.7372', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33535, '2021-11-15', 1658, 32080, 2517, 41213, '1.0000', '46.0070', '46.0070', '35.5000', '35.5000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33536, '2021-11-15', 1312, 32081, 2517, 33347, '1.0000', '7.6371', '7.6371', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33537, '2021-11-15', 2167, 32082, 2517, 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 (33538, '2021-11-15', 2135, 32083, 2517, 18930, '1.0000', '2.4732', '2.4732', '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 (33539, '2021-11-15', 2315, 32084, 2517, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33540, '2021-11-15', 2237, 32085, 2517, NULL, '1.0000', '-64.5817', '-64.5817', '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 (33541, '2021-11-15', 1863, 32086, 2517, 41232, '1.0000', '2.0530', '2.0530', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33542, '2021-11-15', 1564, 32087, 2517, NULL, '10.0000', '90.0000', '90.0000', '4.0000', '4.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 (33543, '2021-11-15', 2167, 32088, 2517, 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 (33544, '2021-11-15', 1863, 32089, 2517, 41232, '1.0000', '2.0530', '2.0530', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33545, '2021-11-15', 9603, 32090, 2517, 39992, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33546, '2021-11-15', 8607, 32091, 2517, 40005, '1.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33547, '2021-11-15', 2407, 32092, 2517, 34582, '1.0000', '20.2000', '20.2000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33548, '2021-11-15', 2058, 32093, 2517, NULL, '1.0000', '10.0000', '10.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 (33549, '2021-11-15', 1863, 32094, 2517, 41232, '1.0000', '2.0530', '2.0530', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33550, '2021-11-15', 1912, 32095, 2517, 41243, '2.0000', '0.6840', '0.6840', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33551, '2021-11-15', 1401, 32096, 2517, 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 (33552, '2021-11-15', 7482, 32097, 2517, 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 (33553, '2021-11-15', 2251, 32098, 2517, 39868, '1.0000', '12.2160', '12.2160', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33554, '2021-11-15', 1375, 32099, 2517, 34919, '1.0000', '14.3000', '14.3000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33555, '2021-11-15', 1519, 32100, 2517, 41244, '1.0000', '3.4214', '3.4214', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33556, '2021-11-15', 1863, 32101, 2517, 41232, '1.0000', '2.0530', '2.0530', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33557, '2021-11-15', 2393, 32102, 2517, NULL, '1.0000', '3.2865', '3.2865', '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 (33558, '2021-11-15', 2256, 32103, 2517, NULL, '1.0000', '13.0440', '13.0440', '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 (33559, '2021-11-15', 1521, 32104, 2517, 41225, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33560, '2021-11-15', 2068, 32105, 2517, 38541, '1.0000', '12.7670', '12.7670', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33561, '2021-11-15', 2715, 32106, 2517, NULL, '1.0000', '9.2600', '9.2600', '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 (33562, '2021-11-15', 1812, 32107, 2517, 41206, '1.0000', '7.9463', '7.9463', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33563, '2021-11-15', 8638, 32108, 2517, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33564, '2021-11-15', 8472, 32109, 2517, NULL, '2.0000', '6.5000', '6.5000', '23.5000', '23.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 (33565, '2021-11-15', 1805, 32110, 2517, NULL, '1.0000', '4.5164', '4.5164', '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 (33566, '2021-11-15', 1650, 32111, 2517, 39791, '1.0000', '14.7840', '14.7840', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33567, '2021-11-15', 1661, 32112, 2517, 34021, '1.0000', '32.1800', '32.1800', '43.0000', '43.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33568, '2021-11-15', 1831, 32113, 2518, NULL, '1.0000', '8.4400', '8.4400', '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 (33569, '2021-11-15', 1704, 32114, 2518, 6311, '-2.0000', '27.0900', '27.0900', '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 (33570, '2021-11-15', 1704, 32114, 2518, NULL, '3.0000', '27.0900', '27.0900', '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 (33571, '2021-11-15', 2662, 32115, 2518, 12036, '-8.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 (33572, '2021-11-15', 2662, 32115, 2518, NULL, '9.0000', '4.5000', '4.5000', '6.0000', '6.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 (33573, '2021-11-15', 7915, 32116, 2518, NULL, '1.0000', '2.8000', '2.8000', '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 (33574, '2021-11-15', 1438, 32117, 2518, 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 (33575, '2021-11-15', 1410, 32118, 2518, 22317, '1.0000', '2.2000', '2.2000', '3.5000', '3.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 (33576, '2021-11-15', 2414, 32119, 2518, 4620, '-9.0000', '3.4000', '3.4000', '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 (33577, '2021-11-15', 2414, 32119, 2518, NULL, '11.0000', '3.4000', '3.4000', '5.0000', '5.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 (33578, '2021-11-15', 2623, 32120, 2518, 18884, '1.0000', '4.3000', '4.3000', '9.5000', '9.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 (33579, '2021-11-15', 1342, 32121, 2518, 11264, '-1.0000', '6.8074', '6.8074', '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 (33580, '2021-11-15', 1342, 32121, 2518, NULL, '2.0000', '6.8074', '6.8074', '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 (33581, '2021-11-15', 2662, 32122, 2518, 12036, '-8.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 (33582, '2021-11-15', 2662, 32122, 2518, NULL, '9.0000', '4.5000', '4.5000', '6.0000', '6.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 (33583, '2021-11-15', 7915, 32123, 2518, NULL, '1.0000', '2.8000', '2.8000', '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 (33584, '2021-11-15', 1949, 32124, 2518, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '8.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 (33585, '2021-11-15', 1592, 32125, 2518, 6223, '-2.0000', '35.9000', '35.9000', '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 (33586, '2021-11-15', 1592, 32125, 2518, NULL, '3.0000', '35.9000', '35.9000', '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 (33587, '2021-11-15', 1851, 32126, 2518, 8627, '-2.0000', '10.6568', '10.6568', '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 (33588, '2021-11-15', 1851, 32126, 2518, NULL, '3.0000', '10.6568', '10.6568', '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 (33589, '2021-11-15', 1863, 32127, 2518, 10808, '-84.0000', '0.4136', '0.4136', '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 (33590, '2021-11-15', 1863, 32127, 2518, NULL, '85.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33591, '2021-11-15', 2167, 32128, 2518, 17165, '-15.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 (33592, '2021-11-15', 2167, 32128, 2518, NULL, '16.0000', '2.2000', '2.2000', '3.0000', '3.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 (33593, '2021-11-15', 3058, 32129, 2518, 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 (33594, '2021-11-15', 9412, 32130, 2518, NULL, '1.0000', '25.0000', '25.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 (33595, '2021-11-15', 2451, 32131, 2518, 12922, '-1.0000', '10.3500', '10.3500', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33596, '2021-11-15', 2451, 32131, 2518, NULL, '2.0000', '10.3500', '10.3500', '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 (33597, '2021-11-15', 8324, 32132, 2519, NULL, '1.0000', '3.4130', '3.4130', '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 (33598, '2021-11-15', 7353, 32133, 2519, 30931, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33599, '2021-11-15', 7353, 32133, 2519, 29993, '2.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33600, '2021-11-15', 1409, 32134, 2519, 36049, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33601, '2021-11-15', 7806, 32135, 2519, NULL, '5.0000', '14.0000', '14.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 (33602, '2021-11-15', 7672, 32136, 2519, NULL, '1.0000', '1.0200', '1.0200', '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 (33603, '2021-11-15', 8166, 32137, 2519, NULL, '1.0000', '4.6000', '4.6000', '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 (33604, '2021-11-15', 7411, 32138, 2519, NULL, '1.0000', '1.3500', '1.3500', '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 (33605, '2021-11-15', 7835, 32139, 2519, NULL, '1.0000', '27.0000', '27.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 (33606, '2021-11-15', 1846, 32140, 2519, 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 (33607, '2021-11-15', 9311, 32141, 2519, 39417, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33608, '2021-11-15', 9337, 32142, 2519, 36077, '2.0000', '6.8067', '6.8067', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33609, '2021-11-15', 7385, 32143, 2519, 41152, '1.0000', '249.2382', '249.2382', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33610, '2021-11-15', 7411, 32144, 2519, NULL, '1.0000', '1.3500', '1.3500', '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 (33611, '2021-11-15', 7518, 32145, 2519, NULL, '2.0000', '-67.2578', '-67.2578', '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 (33612, '2021-11-15', 9579, 32146, 2519, 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 (33613, '2021-11-15', 7753, 32147, 2519, 41159, '1.0000', '3.3975', '3.3975', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33614, '2021-11-15', 1856, 32148, 2519, 41140, '1.0000', '4.4940', '4.4940', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33615, '2021-11-15', 2699, 32149, 2519, 31907, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33616, '2021-11-15', 7411, 32150, 2519, NULL, '2.0000', '1.3500', '1.3500', '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 (33617, '2021-11-15', 7465, 32151, 2519, 41166, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33618, '2021-11-15', 7491, 32152, 2519, 41143, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33619, '2021-11-15', 8657, 32153, 2519, NULL, '2.0000', '6.3869', '6.3869', '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 (33620, '2021-11-15', 7848, 32154, 2519, NULL, '1.0000', '1.3500', '1.3500', '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 (33621, '2021-11-15', 8411, 32155, 2519, 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 (33622, '2021-11-15', 7482, 32156, 2519, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33623, '2021-11-15', 9578, 32157, 2519, NULL, '1.0000', '8.0000', '8.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 (33624, '2021-11-15', 1806, 32158, 2519, NULL, '2.0000', '28.1300', '28.1300', '35.0000', '35.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 (33625, '2021-11-15', 3009, 32159, 2519, 36076, '1.0000', '8.3000', '8.3000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33626, '2021-11-15', 7672, 32160, 2520, NULL, '1.0000', '1.0200', '1.0200', '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 (33627, '2021-11-15', 1585, 32161, 2520, NULL, '1.0000', '8.9900', '8.9900', '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 (33628, '2021-11-15', 7806, 32162, 2520, NULL, '3.0000', '14.0000', '14.0000', '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 (33629, '2021-11-15', 7496, 32163, 2520, NULL, '1.0000', '0.9600', '0.9600', '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 (33630, '2021-11-15', 2315, 32164, 2520, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '71.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33631, '2021-11-15', 2289, 32165, 2520, NULL, '4.0000', '0.2300', '0.2300', '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 (33632, '2021-11-15', 1708, 32166, 2520, NULL, '1.0000', '20.1900', '20.1900', '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 (33633, '2021-11-15', 8756, 32167, 2520, NULL, '1.0000', '7.5051', '7.5051', '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 (33634, '2021-11-15', 7931, 32168, 2520, NULL, '2.0000', '0.2500', '0.2500', '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 (33635, '2021-11-15', 8328, 32169, 2520, NULL, '1.0000', '8.0882', '8.0882', '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 (33636, '2021-11-15', 7641, 32170, 2520, NULL, '1.0000', '-0.8850', '-0.8850', '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 (33637, '2021-11-15', 8445, 32171, 2520, NULL, '1.0000', '13.0000', '13.0000', '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 (33638, '2021-11-15', 7562, 32172, 2520, NULL, '2.0000', '0.4800', '0.4800', '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 (33639, '2021-11-15', 2612, 32173, 2520, NULL, '1.0000', '7.1600', '7.1600', '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 (33640, '2021-11-15', 9092, 32174, 2520, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '237.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33641, '2021-11-15', 1840, 32175, 2520, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '166.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33642, '2021-11-15', 1841, 32176, 2520, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '104.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33643, '2021-11-15', 1628, 32177, 2520, NULL, '1.0000', '5.7900', '5.7900', '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 (33644, '2021-11-15', 2363, 32178, 2520, 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 (33645, '2021-11-15', 9214, 32179, 2520, 39423, '1.0000', '9.3946', '9.3946', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33646, '2021-11-15', 8918, 32180, 2520, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33647, '2021-11-15', 2408, 32181, 2520, NULL, '1.0000', '8.6200', '8.6200', '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 (33648, '2021-11-15', 7907, 32182, 2520, NULL, '1.0000', '12.0000', '12.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 (33649, '2021-11-15', 9272, 32183, 2520, NULL, '2.0000', '3.1000', '3.1000', '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 (33650, '2021-11-15', 9452, 32184, 2521, NULL, '1.0000', '58.0000', '58.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 (33651, '2021-11-15', 2167, 32185, 2522, 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 (33652, '2021-11-15', 1592, 32186, 2522, 34586, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33653, '2021-11-15', 7742, 32187, 2522, 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 (33654, '2021-11-15', 2958, 32188, 2522, 40132, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33655, '2021-11-15', 1822, 32189, 2522, NULL, '8.0000', '2.8625', '2.8625', '3.5000', '3.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 (33656, '2021-11-15', 2221, 32190, 2522, 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 (33657, '2021-11-15', 1519, 32191, 2522, 41244, '1.0000', '3.4214', '3.4214', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33658, '2021-11-15', 1863, 32192, 2522, 41232, '1.0000', '2.0530', '2.0530', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33659, '2021-11-15', 8984, 32193, 2522, NULL, '1.0000', '-100.8495', '-100.8495', '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 (33660, '2021-11-15', 1590, 32194, 2522, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (33661, '2021-11-15', 2289, 32195, 2522, 38551, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '24.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33662, '2021-11-15', 1841, 32196, 2522, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '54.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33663, '2021-11-15', 1863, 32197, 2522, 41232, '1.0000', '2.0530', '2.0530', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33664, '2021-11-15', 2280, 32198, 2522, 24952, '2.0000', '-177.9360', '-177.9360', '4.5000', '4.5000', '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 (33665, '2021-11-15', 8177, 32199, 2522, 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 (33666, '2021-11-15', 9468, 32200, 2522, NULL, '2.0000', '17.5000', '17.5000', '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 (33667, '2021-11-15', 1621, 32201, 2522, 37805, '1.0000', '9.6682', '9.6682', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33668, '2021-11-15', 2221, 32202, 2522, 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 (33669, '2021-11-15', 8746, 32203, 2522, NULL, '1.0000', '4.3169', '4.3169', '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 (33670, '2021-11-15', 1386, 32204, 2522, 41234, '1.0000', '3.0279', '3.0279', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33671, '2021-11-15', 2937, 32205, 2522, 24930, '1.0000', '5.3700', '5.3700', '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 (33672, '2021-11-15', 7674, 32206, 2522, NULL, '1.0000', '1.3000', '1.3000', '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 (33673, '2021-11-15', 2068, 32207, 2522, 38541, '1.0000', '12.7670', '12.7670', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33674, '2021-11-15', 9469, 32208, 2522, NULL, '1.0000', '2.3000', '2.3000', '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 (33675, '2021-11-15', 2169, 32209, 2522, NULL, '1.0000', '1.1500', '1.1500', '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 (33676, '2021-11-15', 2565, 32210, 2522, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.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 (33677, '2021-11-15', 2603, 32211, 2522, 37968, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33678, '2021-11-15', 2656, 32212, 2522, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33679, '2021-11-15', 2662, 32213, 2522, 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 (33680, '2021-11-15', 2167, 32214, 2522, 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 (33681, '2021-11-15', 2088, 32215, 2522, 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 (33682, '2021-11-15', 2435, 32216, 2522, 39979, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33683, '2021-11-15', 1342, 32217, 2522, 33153, '1.0000', '29.5982', '29.5982', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33684, '2021-11-15', 1521, 32218, 2522, 41225, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33685, '2021-11-15', 1680, 32219, 2522, NULL, '1.0000', '5.0300', '5.0300', '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 (33686, '2021-11-15', 7703, 32220, 2522, NULL, '1.0000', '22.9900', '22.9900', '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 (33687, '2021-11-15', 1807, 32221, 2522, NULL, '3.0000', '41.5000', '41.5000', '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 (33688, '2021-11-15', 1529, 32222, 2522, NULL, '1.0000', '3.8260', '3.8260', '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 (33689, '2021-11-15', 2280, 32223, 2522, 24952, '1.0000', '-177.9360', '-177.9360', '4.5000', '4.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 (33690, '2021-11-15', 8608, 32224, 2522, NULL, '1.0000', '0.9000', '0.9000', '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 (33691, '2021-11-15', 2020, 32225, 2523, NULL, '1.0000', '7.8240', '7.8240', '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 (33692, '2021-11-15', 1935, 32226, 2523, 41204, '1.0000', '0.3803', '0.3803', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33693, '2021-11-15', 1493, 32227, 2523, 30679, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33694, '2021-11-15', 1864, 32228, 2523, 34932, '1.0000', '5.9100', '5.9100', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33695, '2021-11-15', 9561, 32229, 2523, 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 (33696, '2021-11-15', 8133, 32230, 2523, 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 (33697, '2021-11-15', 1521, 32231, 2523, 41225, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33698, '2021-11-15', 8638, 32232, 2523, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33699, '2021-11-15', 8208, 32233, 2523, NULL, '1.0000', '33.0000', '33.0000', '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 (33700, '2021-11-15', 7674, 32234, 2523, NULL, '1.0000', '1.3000', '1.3000', '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 (33701, '2021-11-15', 2100, 32235, 2523, 41252, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33702, '2021-11-15', 1945, 32236, 2523, 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 (33703, '2021-11-15', 1499, 32237, 2524, 20585, '1.0000', '0.4100', '0.4100', '0.7400', '0.7400', '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 (33704, '2021-11-15', 9577, 32238, 2524, NULL, '2.0000', '0.3200', '0.3200', '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 (33705, '2021-11-15', 1379, 32239, 2524, NULL, '1.0000', '85.2466', '85.2466', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33706, '2021-11-15', 9555, 32240, 2524, NULL, '1.0000', '40.0000', '40.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 (33707, '2021-11-15', 1731, 32241, 2524, 22329, '1.0000', '19.9600', '19.9600', '27.0000', '27.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 (33708, '2021-11-15', 9563, 32242, 2524, NULL, '1.0000', '5.1000', '5.1000', '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 (33709, '2021-11-15', 2015, 32243, 2525, 39217, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33710, '2021-11-15', 2004, 32244, 2526, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33711, '2021-11-15', 9098, 32245, 2527, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33712, '2021-11-15', 1841, 32246, 2527, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '102.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33713, '2021-11-15', 7429, 32247, 2527, NULL, '1.0000', '18.0000', '18.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 (33714, '2021-11-15', 7774, 32248, 2527, 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 (33715, '2021-11-15', 8359, 32249, 2527, NULL, '1.0000', '20.4289', '20.4289', '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 (33716, '2021-11-15', 8000, 32250, 2527, NULL, '1.0000', '74.7436', '74.7436', '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 (33717, '2021-11-15', 7385, 32251, 2527, 41152, '2.0000', '249.2382', '249.2382', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33718, '2021-11-15', 7473, 32252, 2527, NULL, '2.0000', '15.4731', '15.4731', '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 (33719, '2021-11-15', 8849, 32253, 2527, NULL, '1.0000', '1.0700', '1.0700', '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 (33720, '2021-11-15', 7780, 32254, 2527, NULL, '1.0000', '2.6000', '2.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 (33721, '2021-11-15', 1310, 32255, 2527, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (33722, '2021-11-15', 2506, 32256, 2527, 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 (33723, '2021-11-15', 8974, 32257, 2527, NULL, '1.0000', '5.4000', '5.4000', '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 (33724, '2021-11-15', 1841, 32258, 2527, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '102.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33725, '2021-11-15', 2289, 32259, 2527, NULL, '1.0000', '0.2300', '0.2300', '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 (33726, '2021-11-15', 1840, 32260, 2527, 33725, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '165.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33727, '2021-11-15', 7638, 32261, 2527, 30222, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33728, '2021-11-15', 8789, 32262, 2527, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33729, '2021-11-15', 7917, 32263, 2527, NULL, '4.0000', '5.0000', '5.0000', '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 (33730, '2021-11-15', 1629, 32264, 2527, NULL, '1.0000', '15.5000', '15.5000', '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 (33731, '2021-11-15', 7606, 32265, 2527, 41185, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33732, '2021-11-15', 9271, 32266, 2527, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33733, '2021-11-15', 9504, 32267, 2527, 33393, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 245);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33734, '2021-11-15', 2634, 32268, 2527, 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 (33735, '2021-11-15', 7514, 32269, 2527, NULL, '1.0000', '12.9983', '12.9983', '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 (33736, '2021-11-15', 7465, 32270, 2527, 41166, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33737, '2021-11-15', 9329, 32271, 2527, NULL, '1.0000', '5.8000', '5.8000', '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 (33738, '2021-11-15', 7911, 32272, 2527, NULL, '1.0000', '4.3700', '4.3700', '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 (33739, '2021-11-15', 9559, 32273, 2527, 40406, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33740, '2021-11-15', 9092, 32274, 2527, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '235.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33741, '2021-11-15', 7728, 32275, 2527, 39409, '1.0000', '1.8257', '1.8257', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33742, '2021-11-15', 7774, 32276, 2527, 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 (33743, '2021-11-15', 1578, 32277, 2527, 37402, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33744, '2021-11-15', 1895, 32278, 2527, NULL, '1.0000', '7.0200', '7.0200', '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 (33745, '2021-11-15', 7576, 32279, 2527, NULL, '4.0000', '11.5100', '11.5100', '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 (33746, '2021-11-15', 8466, 32280, 2527, NULL, '5.0000', '-24.7500', '-24.7500', '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 (33747, '2021-11-15', 2936, 32281, 2527, 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 (33748, '2021-11-15', 2217, 32282, 2527, 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 (33749, '2021-11-15', 8000, 32283, 2527, NULL, '1.0000', '74.7436', '74.7436', '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 (33750, '2021-11-15', 1904, 32284, 2527, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33751, '2021-11-15', 7819, 32285, 2527, NULL, '1.0000', '9.5000', '9.5000', '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 (33752, '2021-11-15', 7674, 32286, 2527, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '139.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33753, '2021-11-15', 1855, 32287, 2527, 39607, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33754, '2021-11-15', 9579, 32288, 2527, 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 (33755, '2021-11-15', 2958, 32289, 2528, 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 (33756, '2021-11-15', 8746, 32290, 2528, NULL, '1.0000', '3.1500', '3.1500', '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 (33757, '2021-11-15', 9089, 32291, 2528, NULL, '3.0000', '3.8000', '3.8000', '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 (33758, '2021-11-15', 8746, 32292, 2528, NULL, '1.0000', '3.1500', '3.1500', '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 (33759, '2021-11-15', 8746, 32293, 2528, NULL, '1.0000', '3.1500', '3.1500', '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 (33760, '2021-11-15', 2807, 32294, 2528, 16378, '-1.0000', '1.0000', '1.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 (33761, '2021-11-15', 2807, 32294, 2528, NULL, '7.0000', '1.0000', '1.0000', '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 (33762, '2021-11-15', 9533, 32295, 2528, 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 (33763, '2021-11-15', 2648, 32296, 2528, NULL, '1.0000', '5.4000', '5.4000', '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 (33764, '2021-11-15', 8177, 32297, 2528, 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 (33765, '2021-11-15', 1621, 32298, 2528, 7385, '-10.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 (33766, '2021-11-15', 1621, 32298, 2528, NULL, '11.0000', '6.6000', '6.6000', '9.0000', '9.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 (33767, '2021-11-15', 1837, 32299, 2528, 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 (33768, '2021-11-15', 1872, 32300, 2528, 12520, '-1.0000', '9.0500', '9.0500', '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 (33769, '2021-11-15', 1872, 32300, 2528, NULL, '2.0000', '9.0500', '9.0500', '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 (33770, '2021-11-15', 1318, 32301, 2528, 173, '1.0000', '95.3220', '95.3220', '7.0000', '7.0000', '5.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 (33771, '2021-11-15', 1580, 32302, 2528, 7598, '-19.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 (33772, '2021-11-15', 1580, 32302, 2528, NULL, '23.0000', '0.9900', '0.9900', '1.5000', '1.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 (33773, '2021-11-15', 2360, 32303, 2528, 3862, '-30.0000', '0.5200', '0.5200', '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 (33774, '2021-11-15', 2360, 32303, 2528, NULL, '31.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (33775, '2021-11-15', 1620, 32304, 2528, 8955, '4.0000', '408.8259', '408.8259', '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 (33776, '2021-11-15', 2317, 32305, 2528, 3473, '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 (33777, '2021-11-15', 1533, 32306, 2528, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '12.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 (33778, '2021-11-15', 1555, 32307, 2528, 1626, '1.0000', '22.2400', '22.2400', '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 (33779, '2021-11-15', 2772, 32308, 2528, 22339, '1.0000', '16.7000', '16.7000', '24.0000', '24.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 (33780, '2021-11-15', 1300, 32309, 2528, 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 (33781, '2021-11-15', 1501, 32310, 2528, 22242, '1.0000', '2.0500', '2.0500', '3.0000', '3.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 (33782, '2021-11-15', 2699, 32311, 2528, 12529, '-18.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 (33783, '2021-11-15', 2699, 32311, 2528, NULL, '19.0000', '3.0000', '3.0000', '4.5000', '4.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 (33784, '2021-11-15', 1455, 32312, 2528, 18913, '2.0000', '4.0000', '4.0000', '7.0000', '7.0000', '95.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 (33785, '2021-11-15', 2256, 32313, 2528, 2793, '-2.0000', '12.7400', '12.7400', '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 (33786, '2021-11-15', 2256, 32313, 2528, NULL, '3.0000', '12.7400', '12.7400', '18.0000', '18.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 (33787, '2021-11-15', 1863, 32314, 2528, 10808, '-85.0000', '0.4136', '0.4136', '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 (33788, '2021-11-15', 1863, 32314, 2528, NULL, '86.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33789, '2021-11-15', 1644, 32315, 2528, NULL, '1.0000', '33.8200', '33.8200', '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 (33790, '2021-11-15', 1706, 32316, 2528, 19677, '-1.0000', '15.2700', '15.2700', '20.5000', '20.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 (33791, '2021-11-15', 1706, 32316, 2528, NULL, '2.0000', '15.2700', '15.2700', '20.5000', '20.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 (33792, '2021-11-15', 2491, 32317, 2528, 6228, '-13.0000', '12.2000', '12.2000', '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 (33793, '2021-11-15', 2491, 32317, 2528, NULL, '14.0000', '12.2000', '12.2000', '17.0000', '17.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 (33794, '2021-11-15', 1602, 32318, 2528, 5897, '-42.0000', '6.7859', '6.7859', '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 (33795, '2021-11-15', 1602, 32318, 2528, NULL, '44.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33796, '2021-11-15', 3074, 32319, 2528, 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 (33797, '2021-11-15', 9461, 32320, 2528, NULL, '1.0000', '1.6000', '1.6000', '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 (33798, '2021-11-15', 1689, 32321, 2528, 4897, '-1.0000', '60.7198', '60.7198', '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 (33799, '2021-11-15', 1689, 32321, 2528, NULL, '2.0000', '60.7198', '60.7198', '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 (33800, '2021-11-15', 2235, 32322, 2528, 33819, '1.0000', '19.4250', '19.4250', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33801, '2021-11-15', 1641, 32323, 2528, 3214, '-112.0000', '0.9800', '0.9800', '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 (33802, '2021-11-15', 1641, 32323, 2528, NULL, '124.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-124.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33803, '2021-11-15', 9089, 32324, 2529, NULL, '1.0000', '3.8000', '3.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 (33804, '2021-11-15', 7411, 32325, 2530, NULL, '1.0000', '1.3500', '1.3500', '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 (33805, '2021-11-15', 9563, 32326, 2530, 40449, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33806, '2021-11-15', 7981, 32327, 2531, NULL, '4.0000', '6.0000', '6.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 (33807, '2021-11-15', 7318, 32328, 2531, NULL, '1.0000', '13.4400', '13.4400', '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 (33808, '2021-11-15', 7981, 32329, 2531, NULL, '4.0000', '6.0000', '6.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 (33809, '2021-11-15', 7708, 32330, 2531, 39851, '1.0000', '6.1400', '6.1400', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33810, '2021-11-15', 1629, 32331, 2531, 29650, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33811, '2021-11-15', 2656, 32332, 2531, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33812, '2021-11-15', 1665, 32333, 2532, 3235, '-32.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 (33813, '2021-11-15', 1665, 32333, 2532, NULL, '33.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (33814, '2021-11-15', 9160, 32334, 2532, NULL, '1.0000', '15.0000', '15.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 (33815, '2021-11-15', 2965, 32335, 2533, NULL, '1.0000', '5.0000', '5.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 (33816, '2021-11-16', 8771, 32336, 2534, 39997, '1.0000', '4.0228', '4.0228', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33817, '2021-11-16', 2169, 32337, 2534, NULL, '1.0000', '1.1500', '1.1500', '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 (33818, '2021-11-16', 2095, 32338, 2534, NULL, '1.0000', '1.5000', '1.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 (33819, '2021-11-16', 1839, 32339, 2534, NULL, '1.0000', '5.5986', '5.5986', '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 (33820, '2021-11-16', 2169, 32340, 2534, NULL, '2.0000', '1.1500', '1.1500', '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 (33821, '2021-11-16', 2662, 32341, 2534, 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 (33822, '2021-11-16', 1734, 32342, 2534, NULL, '2.0000', '14.9800', '14.9800', '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 (33823, '2021-11-16', 7317, 32343, 2534, NULL, '1.0000', '19.5500', '19.5500', '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 (33824, '2021-11-16', 2169, 32344, 2534, NULL, '1.0000', '1.1500', '1.1500', '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 (33825, '2021-11-16', 1337, 32345, 2534, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33826, '2021-11-16', 2135, 32346, 2534, 18930, '1.0000', '2.4732', '2.4732', '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 (33827, '2021-11-16', 1863, 32347, 2534, NULL, '1.0000', '2.0530', '2.0530', '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 (33828, '2021-11-16', 2821, 32348, 2534, 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 (33829, '2021-11-16', 2315, 32349, 2535, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33830, '2021-11-16', 2940, 32350, 2535, 31114, '1.0000', '6.3600', '6.3600', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33831, '2021-11-16', 2699, 32351, 2535, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33832, '2021-11-16', 8065, 32352, 2535, NULL, '1.0000', '32.0000', '32.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 (33833, '2021-11-16', 2681, 32353, 2535, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33834, '2021-11-16', 1844, 32354, 2535, NULL, '2.0000', '1.3981', '1.3981', '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 (33835, '2021-11-16', 1574, 32355, 2535, 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 (33836, '2021-11-16', 8142, 32356, 2535, NULL, '1.0000', '6.5100', '6.5100', '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 (33837, '2021-11-16', 2315, 32357, 2536, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33838, '2021-11-16', 2940, 32358, 2536, 24979, '1.0000', '6.3600', '6.3600', '8.5000', '8.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 (33839, '2021-11-16', 2699, 32359, 2536, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33840, '2021-11-16', 8065, 32360, 2536, NULL, '1.0000', '32.0000', '32.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 (33841, '2021-11-16', 2681, 32361, 2536, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33842, '2021-11-16', 1844, 32362, 2536, NULL, '2.0000', '1.3981', '1.3981', '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 (33843, '2021-11-16', 1574, 32363, 2536, 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 (33844, '2021-11-16', 8142, 32364, 2536, NULL, '1.0000', '6.5100', '6.5100', '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 (33845, '2021-11-16', 2656, 32365, 2536, 34662, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33846, '2021-11-16', 1529, 32366, 2537, NULL, '1.0000', '3.8260', '3.8260', '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 (33847, '2021-11-16', 1888, 32367, 2538, 41199, '1.0000', '15.8000', '15.8000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33848, '2021-11-16', 2089, 32368, 2538, 39891, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33849, '2021-11-16', 2167, 32369, 2539, 17165, '-16.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 (33850, '2021-11-16', 2167, 32369, 2539, NULL, '17.0000', '2.2000', '2.2000', '3.0000', '3.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 (33851, '2021-11-16', 2430, 32370, 2539, 5302, '-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 (33852, '2021-11-16', 2430, 32370, 2539, 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 (33853, '2021-11-16', 2682, 32371, 2539, NULL, '1.0000', '19.3000', '19.3000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33854, '2021-11-16', 9476, 32372, 2539, 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 (33855, '2021-11-16', 1425, 32373, 2539, 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 (33856, '2021-11-16', 2567, 32374, 2539, NULL, '1.0000', '33.0000', '33.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 (33857, '2021-11-16', 1420, 32375, 2539, 22318, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (33858, '2021-11-16', 9631, 32376, 2539, NULL, '1.0000', '7.0000', '7.0000', '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 (33859, '2021-11-16', 1863, 32377, 2539, 10808, '-86.0000', '0.4136', '0.4136', '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 (33860, '2021-11-16', 1863, 32377, 2539, NULL, '87.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33861, '2021-11-16', 1667, 32378, 2539, 9745, '-25.0000', '5.9400', '5.9400', '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 (33862, '2021-11-16', 1667, 32378, 2539, NULL, '26.0000', '5.9400', '5.9400', '8.5000', '8.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 (33863, '2021-11-16', 2643, 32379, 2539, 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 (33864, '2021-11-16', 1797, 32380, 2539, NULL, '1.0000', '90.0000', '90.0000', '68.0000', '68.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33865, '2021-11-16', 2109, 32381, 2539, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '112.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 (33866, '2021-11-16', 2236, 32382, 2539, 2780, '-5.0000', '5.6599', '5.6599', '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 (33867, '2021-11-16', 2236, 32382, 2539, NULL, '6.0000', '5.6599', '5.6599', '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 (33868, '2021-11-16', 2916, 32383, 2539, 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 (33869, '2021-11-16', 2423, 32384, 2540, 23981, '1.0000', '4.0000', '4.0000', '6.0000', '6.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 (33870, '2021-11-16', 1871, 32385, 2540, 37801, '14.0000', '2.9308', '2.9308', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33871, '2021-11-16', 2169, 32386, 2540, NULL, '2.0000', '1.1500', '1.1500', '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 (33872, '2021-11-16', 9503, 32387, 2540, 40109, '2.0000', '24.1775', '24.1775', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33873, '2021-11-16', 2660, 32388, 2540, 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 (33874, '2021-11-16', 1602, 32389, 2541, 5897, '-44.0000', '6.7859', '6.7859', '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 (33875, '2021-11-16', 1602, 32389, 2541, NULL, '45.0000', '6.7859', '6.7859', '10.0000', '10.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 (33876, '2021-11-16', 1511, 32390, 2541, 13713, '-1.0000', '19.0000', '19.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 (33877, '2021-11-16', 1511, 32390, 2541, NULL, '2.0000', '19.0000', '19.0000', '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 (33878, '2021-11-16', 1807, 32391, 2541, 16442, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '1.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 (33879, '2021-11-16', 1519, 32392, 2541, 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 (33880, '2021-11-16', 1912, 32393, 2541, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (33881, '2021-11-16', 1602, 32394, 2541, 5897, '-44.0000', '6.7859', '6.7859', '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 (33882, '2021-11-16', 1602, 32394, 2541, NULL, '45.0000', '6.7859', '6.7859', '10.0000', '10.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 (33883, '2021-11-16', 9563, 32395, 2541, NULL, '1.0000', '5.1000', '5.1000', '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 (33884, '2021-11-16', 2389, 32396, 2542, 4041, '-17.0000', '3.1400', '3.1400', '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 (33885, '2021-11-16', 2389, 32396, 2542, NULL, '20.0000', '3.1400', '3.1400', '4.5000', '4.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 (33886, '2021-11-16', 9577, 32397, 2542, NULL, '2.0000', '0.3200', '0.3200', '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 (33887, '2021-11-16', 2289, 32398, 2542, 2949, '-39.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 (33888, '2021-11-16', 2289, 32398, 2542, NULL, '42.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33889, '2021-11-16', 1828, 32399, 2542, NULL, '1.0000', '0.7300', '0.7300', '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 (33890, '2021-11-16', 2169, 32400, 2542, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '26.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 (33891, '2021-11-16', 1736, 32401, 2542, 1080, '2.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 17);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33892, '2021-11-16', 2660, 32402, 2542, NULL, '10.0000', '0.7000', '0.7000', '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 (33893, '2021-11-16', 1409, 32403, 2542, 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 (33894, '2021-11-16', 7741, 32404, 2542, NULL, '1.0000', '1.2000', '1.2000', '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 (33895, '2021-11-16', 1432, 32405, 2542, 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 (33896, '2021-11-16', 1382, 32406, 2542, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.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 (33897, '2021-11-16', 2342, 32407, 2542, 3845, '-34.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 (33898, '2021-11-16', 2342, 32407, 2542, NULL, '44.0000', '1.8600', '1.8600', '2.5000', '2.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33899, '2021-11-16', 1521, 32408, 2542, 22243, '1.0000', '2.5754', '2.5754', '3.5000', '3.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 (33900, '2021-11-16', 9577, 32409, 2542, NULL, '3.0000', '0.3200', '0.3200', '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 (33901, '2021-11-16', 1997, 32410, 2542, 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 (33902, '2021-11-16', 2592, 32411, 2542, 10812, '-12.0000', '7.9670', '7.9670', '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 (33903, '2021-11-16', 2592, 32411, 2542, NULL, '13.0000', '7.9670', '7.9670', '10.5000', '10.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 (33904, '2021-11-16', 1432, 32412, 2542, 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 (33905, '2021-11-16', 2169, 32413, 2542, 1382, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '25.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 (33906, '2021-11-16', 1702, 32414, 2542, 4499, '-3.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 (33907, '2021-11-16', 1702, 32414, 2542, NULL, '4.0000', '14.9700', '14.9700', '20.0000', '20.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 (33908, '2021-11-16', 1736, 32415, 2542, 1080, '1.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 17);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33909, '2021-11-16', 2263, 32416, 2542, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '5.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 (33910, '2021-11-16', 1426, 32417, 2542, 22356, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '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 (33911, '2021-11-16', 2660, 32418, 2542, 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 (33912, '2021-11-16', 1519, 32419, 2542, 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 (33913, '2021-11-16', 2142, 32420, 2542, 13718, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33914, '2021-11-16', 2075, 32421, 2542, NULL, '1.0000', '7.0000', '7.0000', '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 (33915, '2021-11-16', 2287, 32422, 2542, 2947, '-4.0000', '1.8000', '1.8000', '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 (33916, '2021-11-16', 2287, 32422, 2542, NULL, '8.0000', '1.8000', '1.8000', '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 (33917, '2021-11-16', 9577, 32423, 2542, NULL, '1.0000', '0.3200', '0.3200', '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 (33918, '2021-11-16', 1651, 32424, 2542, 3222, '-33.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 (33919, '2021-11-16', 1651, 32424, 2542, NULL, '34.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (33920, '2021-11-16', 2893, 32425, 2542, 18242, '-3.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 (33921, '2021-11-16', 2893, 32425, 2542, NULL, '4.0000', '6.0000', '6.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 (33922, '2021-11-16', 1602, 32426, 2542, 5897, '-46.0000', '6.7859', '6.7859', '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 (33923, '2021-11-16', 1602, 32426, 2542, NULL, '47.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (33924, '2021-11-16', 2320, 32427, 2542, 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 (33925, '2021-11-16', 1321, 32428, 2542, 18859, '1.0000', '9.8000', '9.8000', '13.0000', '13.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 (33926, '2021-11-16', 1761, 32429, 2542, 3171, '-3.0000', '1.8200', '1.8200', '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 (33927, '2021-11-16', 1761, 32429, 2542, NULL, '4.0000', '1.8200', '1.8200', '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 (33928, '2021-11-16', 1910, 32430, 2542, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '39.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 (33929, '2021-11-16', 7953, 32431, 2542, NULL, '1.0000', '6.0000', '6.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 (33930, '2021-11-16', 1863, 32432, 2542, 10808, '-87.0000', '0.4136', '0.4136', '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 (33931, '2021-11-16', 1863, 32432, 2542, NULL, '88.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33932, '2021-11-16', 2167, 32433, 2542, 17165, '-17.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 (33933, '2021-11-16', 2167, 32433, 2542, NULL, '18.0000', '2.2000', '2.2000', '3.0000', '3.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 (33934, '2021-11-16', 1533, 32434, 2542, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '11.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 (33935, '2021-11-16', 2242, 32435, 2542, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.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 (33936, '2021-11-16', 2352, 32436, 2542, 3855, '-8.0000', '20.0000', '20.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 (33937, '2021-11-16', 2352, 32436, 2542, NULL, '10.0000', '20.0000', '20.0000', '3.5000', '3.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 (33938, '2021-11-16', 2965, 32437, 2542, NULL, '1.0000', '5.0000', '5.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 (33939, '2021-11-16', 2958, 32438, 2542, 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 (33940, '2021-11-16', 1523, 32439, 2542, NULL, '1.0000', '213.0405', '213.0405', '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 (33941, '2021-11-16', 1651, 32440, 2542, 3222, '-33.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 (33942, '2021-11-16', 1651, 32440, 2542, NULL, '34.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (33943, '2021-11-16', 9461, 32441, 2542, NULL, '1.0000', '1.6000', '1.6000', '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 (33944, '2021-11-16', 2486, 32442, 2542, 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 (33945, '2021-11-16', 1481, 32443, 2542, 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 (33946, '2021-11-16', 1481, 32443, 2542, NULL, '2.0000', '25.0024', '25.0024', '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 (33947, '2021-11-16', 8518, 32444, 2542, NULL, '1.0000', '17.6400', '17.6400', '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 (33948, '2021-11-16', 1690, 32445, 2543, 33808, '1.0000', '7.1466', '7.1466', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33949, '2021-11-16', 1533, 32446, 2544, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '10.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 (33950, '2021-11-16', 1863, 32447, 2544, 10808, '-88.0000', '0.4136', '0.4136', '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 (33951, '2021-11-16', 1863, 32447, 2544, NULL, '93.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33952, '2021-11-16', 2623, 32448, 2544, 18884, '1.0000', '4.3000', '4.3000', '9.5000', '9.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 (33953, '2021-11-16', 2458, 32449, 2544, 18021, '-1.0000', '13.2000', '13.2000', '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 (33954, '2021-11-16', 2458, 32449, 2544, NULL, '2.0000', '13.2000', '13.2000', '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 (33955, '2021-11-16', 2000, 32450, 2544, 6363, '-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 (33956, '2021-11-16', 2000, 32450, 2544, NULL, '2.0000', '7.5000', '7.5000', '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 (33957, '2021-11-16', 7316, 32451, 2544, NULL, '10.0000', '9.5500', '9.5500', '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 (33958, '2021-11-16', 9373, 32452, 2544, NULL, '1.0000', '46.7300', '46.7300', '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 (33959, '2021-11-16', 7411, 32453, 2544, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33960, '2021-11-16', 1621, 32454, 2544, 7385, '-11.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 (33961, '2021-11-16', 1621, 32454, 2544, NULL, '12.0000', '6.6000', '6.6000', '9.0000', '9.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 (33962, '2021-11-16', 2280, 32455, 2544, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '34.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33963, '2021-11-16', 1828, 32456, 2544, NULL, '1.0000', '0.7300', '0.7300', '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 (33964, '2021-11-16', 2338, 32457, 2544, NULL, '1.0000', '9.6300', '9.6300', '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 (33965, '2021-11-16', 2169, 32458, 2544, 1382, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '22.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 (33966, '2021-11-16', 7411, 32459, 2544, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33967, '2021-11-16', 1342, 32460, 2544, 11264, '-2.0000', '6.8074', '6.8074', '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 (33968, '2021-11-16', 1342, 32460, 2544, NULL, '3.0000', '6.8074', '6.8074', '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 (33969, '2021-11-16', 2458, 32461, 2544, 18021, '-1.0000', '13.2000', '13.2000', '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 (33970, '2021-11-16', 2458, 32461, 2544, NULL, '2.0000', '13.2000', '13.2000', '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 (33971, '2021-11-16', 1704, 32462, 2544, 6311, '-3.0000', '27.0900', '27.0900', '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 (33972, '2021-11-16', 1704, 32462, 2544, NULL, '4.0000', '27.0900', '27.0900', '36.0000', '36.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 (33973, '2021-11-16', 2681, 32463, 2544, 12164, '-10.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 (33974, '2021-11-16', 2681, 32463, 2544, NULL, '11.0000', '12.5000', '12.5000', '16.5000', '16.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 (33975, '2021-11-16', 1346, 32464, 2544, 242, '20.0000', '1.0594', '1.0594', '1.5000', '1.5000', '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 (33976, '2021-11-16', 1595, 32465, 2544, 8360, '-2.0000', '20.6900', '20.6900', '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 (33977, '2021-11-16', 1595, 32465, 2544, NULL, '3.0000', '20.6900', '20.6900', '26.5000', '26.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 (33978, '2021-11-16', 2958, 32466, 2544, 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 (33979, '2021-11-16', 1785, 32467, 2544, 4903, '-3.0000', '4.8380', '4.8380', '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 (33980, '2021-11-16', 1785, 32467, 2544, NULL, '4.0000', '4.8380', '4.8380', '20.0000', '20.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 (33981, '2021-11-16', 2699, 32468, 2544, 12529, '-19.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 (33982, '2021-11-16', 2699, 32468, 2544, NULL, '21.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33983, '2021-11-16', 7411, 32469, 2544, 33804, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33984, '2021-11-16', 2518, 32470, 2544, 10167, '2.0000', '120.7354', '120.7354', '155.0000', '155.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33985, '2021-11-16', 1761, 32471, 2544, 3171, '-4.0000', '1.8200', '1.8200', '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 (33986, '2021-11-16', 1761, 32471, 2544, NULL, '5.0000', '1.8200', '1.8200', '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 (33987, '2021-11-16', 1910, 32472, 2544, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '38.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 (33988, '2021-11-16', 1912, 32473, 2544, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '7.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 (33989, '2021-11-16', 2169, 32474, 2544, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '23.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 (33990, '2021-11-16', 1812, 32475, 2544, 8224, '-30.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 (33991, '2021-11-16', 1812, 32475, 2544, NULL, '31.0000', '7.8900', '7.8900', '10.5000', '10.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 (33992, '2021-11-16', 2574, 32476, 2544, 7383, '8.0000', '0.7800', '0.7800', '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 (33993, '2021-11-16', 2574, 32476, 2544, NULL, '2.0000', '0.7800', '0.7800', '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 (33994, '2021-11-16', 1533, 32477, 2544, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '10.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 (33995, '2021-11-16', 1787, 32478, 2544, 4905, '-7.0000', '0.8100', '0.8100', '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 (33996, '2021-11-16', 1787, 32478, 2544, NULL, '8.0000', '0.8100', '0.8100', '1.0000', '1.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 (33997, '2021-11-16', 2085, 32479, 2544, 8628, '-13.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 (33998, '2021-11-16', 2085, 32479, 2544, NULL, '14.0000', '-1.0741', '-1.0741', '2.0000', '2.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 (33999, '2021-11-16', 7411, 32480, 2544, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34000, '2021-11-16', 1438, 32481, 2544, 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 (34001, '2021-11-16', 9213, 32482, 2545, NULL, '1.0000', '5.4000', '5.4000', '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 (34002, '2021-11-16', 1863, 32483, 2545, 10808, '-93.0000', '0.4136', '0.4136', '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 (34003, '2021-11-16', 1863, 32483, 2545, NULL, '95.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34004, '2021-11-16', 7753, 32484, 2546, 41159, '2.0000', '3.3975', '3.3975', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34005, '2021-11-16', 8626, 32485, 2546, NULL, '1.0000', '10.0000', '10.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 (34006, '2021-11-16', 2015, 32486, 2546, 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 (34007, '2021-11-16', 8359, 32487, 2546, NULL, '1.0000', '20.4289', '20.4289', '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 (34008, '2021-11-16', 7903, 32488, 2546, NULL, '1.0000', '4.2000', '4.2000', '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 (34009, '2021-11-16', 9463, 32489, 2546, NULL, '1.0000', '7.5000', '7.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 (34010, '2021-11-16', 8063, 32490, 2546, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34011, '2021-11-16', 8681, 32491, 2546, NULL, '1.0000', '10.0000', '10.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 (34012, '2021-11-16', 7762, 32492, 2546, NULL, '1.0000', '5.1000', '5.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 (34013, '2021-11-16', 2079, 32493, 2546, 39400, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34014, '2021-11-16', 7411, 32494, 2546, NULL, '1.0000', '1.3500', '1.3500', '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 (34015, '2021-11-16', 2555, 32495, 2546, NULL, '7.0000', '4.2000', '4.2000', '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 (34016, '2021-11-16', 7782, 32496, 2546, NULL, '1.0000', '5.0000', '5.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 (34017, '2021-11-16', 8539, 32497, 2546, 31000, '1.0000', '4.4300', '4.4300', '0.8000', '0.8000', '39.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34018, '2021-11-16', 8203, 32498, 2546, NULL, '2.0000', '1.0075', '1.0075', '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 (34019, '2021-11-16', 7671, 32499, 2546, NULL, '1.0000', '15.5000', '15.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 (34020, '2021-11-16', 9324, 32500, 2546, 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 (34021, '2021-11-16', 7781, 32501, 2546, NULL, '3.0000', '4.2500', '4.2500', '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 (34022, '2021-11-16', 8614, 32502, 2546, NULL, '1.0000', '20.0000', '20.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 (34023, '2021-11-16', 7459, 32503, 2546, NULL, '20.0000', '40.3500', '40.3500', '3.5000', '3.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 (34024, '2021-11-16', 2648, 32504, 2546, NULL, '1.0000', '5.1333', '5.1333', '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 (34025, '2021-11-16', 7832, 32505, 2546, 36086, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34026, '2021-11-16', 1805, 32506, 2546, 39574, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34027, '2021-11-16', 7514, 32507, 2546, NULL, '1.0000', '12.9983', '12.9983', '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 (34028, '2021-11-16', 7359, 32508, 2546, 40440, '3.0000', '11.4660', '11.4660', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34029, '2021-11-16', 7359, 32508, 2546, NULL, '2.0000', '11.4660', '11.4660', '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 (34030, '2021-11-16', 8166, 32509, 2546, NULL, '2.0000', '4.6000', '4.6000', '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 (34031, '2021-11-16', 8775, 32510, 2546, 39424, '2.0000', '2.6000', '2.6000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34032, '2021-11-16', 7674, 32511, 2546, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '138.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34033, '2021-11-16', 7473, 32512, 2546, NULL, '3.0000', '15.4731', '15.4731', '0.6000', '0.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 (34034, '2021-11-16', 8699, 32513, 2546, NULL, '1.0000', '6.3800', '6.3800', '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 (34035, '2021-11-16', 9399, 32514, 2546, NULL, '1.0000', '0.4200', '0.4200', '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 (34036, '2021-11-16', 8360, 32515, 2546, 39538, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34037, '2021-11-16', 9178, 32516, 2546, 40419, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34038, '2021-11-16', 2315, 32517, 2546, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '69.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34039, '2021-11-16', 7989, 32518, 2546, NULL, '2.0000', '26.9800', '26.9800', '50.0000', '50.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 (34040, '2021-11-16', 8466, 32519, 2546, NULL, '30.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '-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 (34041, '2021-11-16', 8918, 32520, 2546, 37847, '2.0000', '5.5250', '5.5250', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34042, '2021-11-16', 2442, 32521, 2546, 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 (34043, '2021-11-16', 1501, 32522, 2546, NULL, '1.0000', '27.4349', '27.4349', '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 (34044, '2021-11-16', 7555, 32523, 2546, NULL, '1.0000', '0.5000', '0.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 (34045, '2021-11-16', 7884, 32524, 2546, NULL, '1.0000', '4.2000', '4.2000', '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 (34046, '2021-11-16', 7672, 32525, 2546, NULL, '1.0000', '1.0200', '1.0200', '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 (34047, '2021-11-16', 7832, 32526, 2546, 36086, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34048, '2021-11-16', 7674, 32527, 2546, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '138.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34049, '2021-11-16', 7704, 32528, 2546, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34050, '2021-11-16', 8918, 32529, 2546, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34051, '2021-11-16', 9328, 32530, 2546, NULL, '1.0000', '7.9000', '7.9000', '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 (34052, '2021-11-16', 9272, 32531, 2546, NULL, '1.0000', '3.1000', '3.1000', '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 (34053, '2021-11-16', 1805, 32532, 2546, 39574, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34054, '2021-11-16', 8276, 32533, 2546, NULL, '1.0000', '12.7063', '12.7063', '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 (34055, '2021-11-16', 7703, 32534, 2546, NULL, '2.0000', '22.9900', '22.9900', '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 (34056, '2021-11-16', 8359, 32535, 2546, NULL, '1.0000', '20.4289', '20.4289', '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 (34057, '2021-11-16', 8744, 32536, 2546, 39418, '1.0000', '3.5640', '3.5640', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34058, '2021-11-16', 8228, 32537, 2546, NULL, '1.0000', '25.0000', '25.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 (34059, '2021-11-16', 9324, 32538, 2546, 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 (34060, '2021-11-16', 2315, 32539, 2546, 38451, '12.0000', '0.4740', '0.4740', '0.6000', '0.6000', '59.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34061, '2021-11-16', 8166, 32540, 2546, NULL, '1.0000', '4.6000', '4.6000', '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 (34062, '2021-11-16', 7666, 32541, 2546, NULL, '1.0000', '0.4000', '0.4000', '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 (34063, '2021-11-16', 7353, 32542, 2546, 29993, '1.0000', '7078.0785', '7078.0785', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34064, '2021-11-16', 7353, 32542, 2546, NULL, '2.0000', '7078.0785', '7078.0785', '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 (34065, '2021-11-16', 8166, 32543, 2546, NULL, '1.0000', '4.6000', '4.6000', '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 (34066, '2021-11-16', 7675, 32544, 2546, NULL, '1.0000', '11.4300', '11.4300', '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 (34067, '2021-11-16', 9177, 32545, 2546, NULL, '5.0000', '0.8000', '0.8000', '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 (34068, '2021-11-16', 8052, 32546, 2546, NULL, '1.0000', '26.0786', '26.0786', '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 (34069, '2021-11-16', 7864, 32547, 2546, NULL, '2.0000', '52.7300', '52.7300', '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 (34070, '2021-11-16', 8849, 32548, 2546, NULL, '1.0000', '1.0700', '1.0700', '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 (34071, '2021-11-16', 8300, 32549, 2546, NULL, '1.0000', '7.4300', '7.4300', '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 (34072, '2021-11-16', 7892, 32550, 2546, NULL, '1.0000', '4.2000', '4.2000', '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 (34073, '2021-11-16', 7674, 32551, 2546, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '138.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34074, '2021-11-16', 8702, 32552, 2546, NULL, '1.0000', '3.6700', '3.6700', '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 (34075, '2021-11-16', 7885, 32553, 2546, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34076, '2021-11-16', 7689, 32554, 2546, NULL, '1.0000', '12.0700', '12.0700', '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 (34077, '2021-11-16', 2259, 32555, 2547, NULL, '1.0000', '19.9405', '19.9405', '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 (34078, '2021-11-16', 7411, 32556, 2548, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34079, '2021-11-16', 9304, 32557, 2549, NULL, '1.0000', '12.0000', '12.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 (34080, '2021-11-16', 2642, 32558, 2549, NULL, '1.0000', '7.5000', '7.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 (34081, '2021-11-16', 2976, 32559, 2549, 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 (34082, '2021-11-16', 8851, 32560, 2549, NULL, '1.0000', '16.6600', '16.6600', '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 (34083, '2021-11-16', 9308, 32561, 2549, NULL, '1.0000', '9.0000', '9.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 (34084, '2021-11-16', 7641, 32562, 2550, NULL, '1.0000', '-0.8850', '-0.8850', '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 (34085, '2021-11-16', 9092, 32563, 2550, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '234.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34086, '2021-11-16', 1666, 32564, 2551, 3236, '-8.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 (34087, '2021-11-16', 1666, 32564, 2551, NULL, '9.0000', '2.7100', '2.7100', '3.5000', '3.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 (34088, '2021-11-16', 9648, 32565, 2551, 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 (34089, '2021-11-16', 7514, 32566, 2552, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34090, '2021-11-16', 7411, 32567, 2552, NULL, '1.0000', '1.3500', '1.3500', '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 (34091, '2021-11-16', 7328, 32568, 2552, NULL, '6.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (34092, '2021-11-16', 2354, 32569, 2552, NULL, '1.0000', '5.0600', '5.0600', '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 (34093, '2021-11-16', 2272, 32570, 2552, 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 (34094, '2021-11-16', 2256, 32571, 2552, NULL, '1.0000', '13.0440', '13.0440', '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 (34095, '2021-11-16', 7411, 32572, 2552, NULL, '2.0000', '1.3500', '1.3500', '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 (34096, '2021-11-16', 2699, 32573, 2552, 32554, '3.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34097, '2021-11-16', 2320, 32574, 2552, 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 (34098, '2021-11-16', 7317, 32575, 2552, NULL, '1.0000', '19.5500', '19.5500', '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 (34099, '2021-11-16', 7411, 32576, 2552, NULL, '1.0000', '1.3500', '1.3500', '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 (34100, '2021-11-16', 7564, 32577, 2552, NULL, '1.0000', '0.6400', '0.6400', '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 (34101, '2021-11-16', 7473, 32578, 2552, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '117.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34102, '2021-11-16', 7641, 32579, 2552, NULL, '1.0000', '1.9000', '1.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 (34103, '2021-11-16', 8756, 32580, 2552, 32556, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34104, '2021-11-16', 2655, 32581, 2552, 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 (34105, '2021-11-16', 2699, 32582, 2552, 32554, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34106, '2021-11-16', 2353, 32583, 2552, 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 (34107, '2021-11-16', 2392, 32584, 2552, NULL, '3.0000', '3.2000', '3.2000', '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 (34108, '2021-11-16', 2003, 32585, 2552, 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 (34109, '2021-11-16', 2379, 32586, 2552, NULL, '1.0000', '1.8000', '1.8000', '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 (34110, '2021-11-16', 2989, 32587, 2552, 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 (34111, '2021-11-16', 1425, 32588, 2552, NULL, '2.0000', '6.5000', '6.5000', '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 (34112, '2021-11-16', 2167, 32589, 2552, 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 (34113, '2021-11-16', 9445, 32590, 2552, 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 (34114, '2021-11-16', 2303, 32591, 2552, NULL, '1.0000', '16.1000', '16.1000', '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 (34115, '2021-11-16', 1337, 32592, 2552, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34116, '2021-11-16', 2315, 32593, 2552, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34117, '2021-11-16', 7336, 32594, 2552, NULL, '1.0000', '23.4800', '23.4800', '28.5000', '28.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34118, '2021-11-16', 1532, 32595, 2552, 41388, '1.0000', '7.4815', '7.4815', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34119, '2021-11-16', 1381, 32596, 2552, 41381, '1.0000', '-2376.8068', '-2376.8068', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34120, '2021-11-16', 1529, 32597, 2552, NULL, '1.0000', '4.0029', '4.0029', '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 (34121, '2021-11-16', 2315, 32598, 2552, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34122, '2021-11-16', 8607, 32599, 2552, 40005, '1.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34123, '2021-11-16', 1831, 32600, 2552, 34032, '1.0000', '28.8300', '28.8300', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34124, '2021-11-16', 2567, 32601, 2552, 39985, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34125, '2021-11-16', 1529, 32602, 2552, NULL, '1.0000', '4.0029', '4.0029', '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 (34126, '2021-11-16', 2068, 32603, 2552, 38541, '1.0000', '12.7670', '12.7670', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34127, '2021-11-16', 2315, 32604, 2552, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34128, '2021-11-16', 2293, 32605, 2552, NULL, '1.0000', '1.4400', '1.4400', '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 (34129, '2021-11-16', 2379, 32606, 2552, NULL, '1.0000', '1.8000', '1.8000', '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 (34130, '2021-11-16', 7913, 32607, 2552, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (34131, '2021-11-16', 7741, 32608, 2552, NULL, '1.0000', '1.2000', '1.2000', '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 (34132, '2021-11-16', 9468, 32609, 2552, NULL, '1.0000', '17.5000', '17.5000', '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 (34133, '2021-11-16', 2964, 32610, 2552, NULL, '2.0000', '6.6000', '6.6000', '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 (34134, '2021-11-16', 8982, 32611, 2552, 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 (34135, '2021-11-16', 1871, 32612, 2552, 37801, '2.0000', '2.9308', '2.9308', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34136, '2021-11-16', 1760, 32613, 2552, NULL, '2.0000', '1.5900', '1.5900', '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 (34137, '2021-11-16', 1310, 32614, 2552, NULL, '2.0000', '0.3700', '0.3700', '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 (34138, '2021-11-16', 1908, 32615, 2552, NULL, '2.0000', '1.7500', '1.7500', '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 (34139, '2021-11-16', 7702, 32616, 2552, NULL, '3.0000', '0.4600', '0.4600', '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 (34140, '2021-11-16', 1867, 32617, 2552, 33361, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34141, '2021-11-16', 2105, 32618, 2552, 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 (34142, '2021-11-16', 1519, 32619, 2552, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34143, '2021-11-16', 1651, 32620, 2552, 41407, '1.0000', '8.4739', '8.4739', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34144, '2021-11-16', 2821, 32621, 2552, 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 (34145, '2021-11-16', 2965, 32622, 2552, NULL, '1.0000', '5.0000', '5.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 (34146, '2021-11-16', 1966, 32623, 2552, 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 (34147, '2021-11-16', 1564, 32624, 2552, 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 (34148, '2021-11-16', 8608, 32625, 2552, NULL, '1.0000', '0.9000', '0.9000', '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 (34149, '2021-11-16', 7790, 32626, 2552, NULL, '2.0000', '17.0000', '17.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 (34150, '2021-11-16', 1665, 32627, 2552, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34151, '2021-11-16', 2950, 32628, 2552, 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 (34152, '2021-11-16', 2169, 32629, 2552, NULL, '1.0000', '1.1500', '1.1500', '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 (34153, '2021-11-16', 7533, 32630, 2552, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34154, '2021-11-16', 7482, 32631, 2552, 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 (34155, '2021-11-16', 7714, 32632, 2552, NULL, '3.0000', '5.0000', '5.0000', '0.6000', '0.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 (34156, '2021-11-16', 1854, 32633, 2552, NULL, '2.0000', '2.5000', '2.5000', '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 (34157, '2021-11-16', 7524, 32634, 2552, NULL, '1.0000', '11.9500', '11.9500', '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 (34158, '2021-11-16', 2231, 32635, 2552, 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 (34159, '2021-11-16', 1814, 32636, 2552, 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 (34160, '2021-11-16', 8756, 32637, 2552, 32556, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34161, '2021-11-16', 7822, 32638, 2552, NULL, '2.0000', '8.0000', '8.0000', '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 (34162, '2021-11-16', 2908, 32639, 2552, 24963, '3.0000', '0.2700', '0.2700', '0.5000', '0.5000', '21.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 (34163, '2021-11-16', 1871, 32640, 2552, 37801, '2.0000', '2.9308', '2.9308', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34164, '2021-11-16', 2169, 32641, 2552, NULL, '2.0000', '1.1500', '1.1500', '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 (34165, '2021-11-16', 2733, 32642, 2553, 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 (34166, '2021-11-17', 2948, 32643, 2554, NULL, '1.0000', '0.9000', '0.9000', '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 (34167, '2021-11-17', 1602, 32644, 2554, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34168, '2021-11-17', 9214, 32645, 2554, NULL, '1.0000', '9.6000', '9.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 (34169, '2021-11-17', 7790, 32646, 2554, 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 (34170, '2021-11-17', 1482, 32647, 2554, 24321, '1.0000', '90.9565', '90.9565', '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 (34171, '2021-11-17', 2283, 32648, 2554, 3123, '1.0000', '1.4300', '1.4300', '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 (34172, '2021-11-17', 1596, 32649, 2554, 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 (34173, '2021-11-17', 1841, 32650, 2554, 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 (34174, '2021-11-17', 2315, 32651, 2554, 3069, '1.0000', '0.3300', '0.3300', '0.6000', '0.6000', '209.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34175, '2021-11-17', 1602, 32652, 2554, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34176, '2021-11-17', 2555, 32653, 2554, NULL, '6.0000', '4.2000', '4.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 (34177, '2021-11-17', 2289, 32654, 2554, 40620, '30.0000', '0.2831', '0.2831', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34178, '2021-11-17', 1325, 32655, 2554, NULL, '1.0000', '23.9800', '23.9800', '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 (34179, '2021-11-17', 2237, 32656, 2554, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34180, '2021-11-17', 1667, 32657, 2554, 40905, '2.0000', '66.2744', '66.2744', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34181, '2021-11-17', 2363, 32658, 2554, 40897, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34182, '2021-11-17', 1504, 32659, 2554, 37581, '10.0000', '1.1357', '1.1357', '2.2000', '2.2000', '50.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34183, '2021-11-17', 2169, 32660, 2554, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34184, '2021-11-17', 2381, 32661, 2555, 40882, '1.0000', '-0.3142', '-0.3142', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34185, '2021-11-17', 1574, 32662, 2555, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (34186, '2021-11-17', 2621, 32663, 2555, 9940, '2.0000', '12.0000', '12.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 (34187, '2021-11-17', 7359, 32664, 2556, NULL, '1.0000', '20.0000', '20.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 (34188, '2021-11-17', 7802, 32665, 2556, NULL, '3.0000', '0.9200', '0.9200', '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 (34189, '2021-11-17', 1912, 32666, 2556, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34190, '2021-11-17', 3026, 32667, 2556, 23976, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '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 (34191, '2021-11-17', 1602, 32668, 2556, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34192, '2021-11-17', 2315, 32669, 2556, 39758, '10.0000', '0.8556', '0.8556', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34193, '2021-11-17', 1580, 32670, 2556, 19875, '6.0000', '0.9900', '0.9900', '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 (34194, '2021-11-17', 7802, 32671, 2556, NULL, '6.0000', '0.9200', '0.9200', '1.3000', '1.3000', '-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 (34195, '2021-11-17', 8677, 32672, 2556, NULL, '10.0000', '89.9250', '89.9250', '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 (34196, '2021-11-17', 1529, 32673, 2556, NULL, '1.0000', '4.0029', '4.0029', '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 (34197, '2021-11-17', 7438, 32674, 2556, NULL, '1.0000', '28.6900', '28.6900', '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 (34198, '2021-11-17', 2221, 32675, 2556, 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 (34199, '2021-11-17', 7333, 32676, 2556, NULL, '1.0000', '13.5000', '13.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 (34200, '2021-11-17', 7671, 32677, 2556, NULL, '1.0000', '15.5000', '15.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 (34201, '2021-11-17', 1409, 32678, 2556, NULL, '1.0000', '13.5000', '13.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 (34202, '2021-11-17', 1612, 32679, 2556, 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 (34203, '2021-11-17', 7994, 32680, 2556, NULL, '1.0000', '9.2800', '9.2800', '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 (34204, '2021-11-17', 2547, 32681, 2556, NULL, '1.0000', '8.6575', '8.6575', '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 (34205, '2021-11-17', 2167, 32682, 2556, 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 (34206, '2021-11-17', 2643, 32683, 2556, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34207, '2021-11-17', 2169, 32684, 2556, NULL, '1.0000', '1.1500', '1.1500', '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 (34208, '2021-11-17', 1346, 32685, 2556, 39869, '6.0000', '-6.6466', '-6.6466', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34209, '2021-11-17', 2318, 32686, 2556, 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 (34210, '2021-11-17', 8607, 32687, 2556, 40005, '1.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34211, '2021-11-17', 2163, 32688, 2557, 34033, '1.0000', '22.5600', '22.5600', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34212, '2021-11-17', 8607, 32689, 2557, 40005, '2.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34213, '2021-11-17', 2959, 32690, 2557, 22560, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '0.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 (34214, '2021-11-17', 9204, 32691, 2558, NULL, '1.0000', '8.1600', '8.1600', '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 (34215, '2021-11-17', 2750, 32692, 2559, 18931, '10.0000', '0.5500', '0.5500', '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 (34216, '2021-11-17', 3029, 32693, 2560, 23679, '1.0000', '4.7700', '4.7700', '8.0000', '8.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 (34217, '2021-11-17', 2315, 32694, 2561, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34218, '2021-11-17', 3059, 32695, 2561, 37758, '1.0000', '2.2083', '2.2083', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34219, '2021-11-17', 7741, 32696, 2561, NULL, '1.0000', '1.2000', '1.2000', '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 (34220, '2021-11-17', 2169, 32697, 2561, NULL, '2.0000', '1.1500', '1.1500', '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 (34221, '2021-11-17', 1602, 32698, 2562, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34222, '2021-11-17', 9215, 32699, 2562, NULL, '1.0000', '2.0000', '2.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 (34223, '2021-11-17', 2237, 32700, 2562, NULL, '1.0000', '-64.5817', '-64.5817', '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 (34224, '2021-11-17', 1501, 32701, 2562, NULL, '1.0000', '2.2100', '2.2100', '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 (34225, '2021-11-17', 2821, 32702, 2562, 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 (34226, '2021-11-17', 2315, 32703, 2562, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34227, '2021-11-17', 1612, 32704, 2562, 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 (34228, '2021-11-17', 2344, 32705, 2563, NULL, '1.0000', '19.8200', '19.8200', '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 (34229, '2021-11-17', 7741, 32706, 2563, NULL, '1.0000', '1.2000', '1.2000', '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 (34230, '2021-11-17', 2506, 32707, 2564, 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 (34231, '2021-11-17', 7491, 32708, 2564, NULL, '1.0000', '4.8000', '4.8000', '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 (34232, '2021-11-17', 1880, 32709, 2564, 37787, '1.0000', '4.7372', '4.7372', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34233, '2021-11-17', 2003, 32710, 2564, 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 (34234, '2021-11-17', 1590, 32711, 2564, NULL, '3.0000', '1.9878', '1.9878', '2.3000', '2.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 (34235, '2021-11-17', 1621, 32712, 2564, 37805, '1.0000', '9.6682', '9.6682', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34236, '2021-11-17', 7482, 32713, 2564, 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 (34237, '2021-11-17', 1837, 32714, 2564, 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 (34238, '2021-11-17', 7899, 32715, 2564, 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 (34239, '2021-11-17', 2009, 32716, 2564, 39999, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34240, '2021-11-17', 1856, 32717, 2565, 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 (34241, '2021-11-17', 2355, 32718, 2565, 23693, '10.0000', '5.4200', '5.4200', '7.2000', '7.2000', '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 (34242, '2021-11-17', 1871, 32719, 2565, 37801, '2.0000', '2.9308', '2.9308', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34243, '2021-11-17', 1871, 32719, 2565, 33359, '5.0000', '2.9308', '2.9308', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34244, '2021-11-17', 1871, 32719, 2565, NULL, '3.0000', '2.9308', '2.9308', '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 (34245, '2021-11-17', 7571, 32720, 2565, NULL, '11.0000', '2.1000', '2.1000', '2.7000', '2.7000', '-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 (34246, '2021-11-17', 2656, 32721, 2565, 32553, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34247, '2021-11-17', 2237, 32722, 2565, NULL, '1.0000', '-64.5817', '-64.5817', '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 (34248, '2021-11-17', 9215, 32723, 2565, NULL, '1.0000', '2.0000', '2.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 (34249, '2021-11-17', 2574, 32724, 2565, 19819, '2.0000', '0.7800', '0.7800', '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 (34250, '2021-11-17', 2302, 32725, 2565, 41373, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34251, '2021-11-17', 7564, 32726, 2565, NULL, '1.0000', '0.6400', '0.6400', '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 (34252, '2021-11-17', 1621, 32727, 2565, 37805, '1.0000', '9.6682', '9.6682', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34253, '2021-11-17', 7411, 32728, 2565, NULL, '1.0000', '1.3500', '1.3500', '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 (34254, '2021-11-17', 1867, 32729, 2565, 33361, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34255, '2021-11-17', 8021, 32730, 2565, NULL, '1.0000', '13.0000', '13.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 (34256, '2021-11-17', 2233, 32731, 2565, 34013, '1.0000', '19.9766', '19.9766', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34257, '2021-11-17', 1621, 32732, 2565, 37805, '1.0000', '9.6682', '9.6682', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34258, '2021-11-17', 1529, 32733, 2566, NULL, '1.0000', '4.0029', '4.0029', '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 (34259, '2021-11-17', 1672, 32734, 2566, NULL, '10.0000', '-4.3367', '-4.3367', '4.0000', '4.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 (34260, '2021-11-17', 1618, 32735, 2566, NULL, '1.0000', '402.7200', '402.7200', '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 (34261, '2021-11-17', 2270, 32736, 2566, 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 (34262, '2021-11-17', 7514, 32737, 2566, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34263, '2021-11-17', 1307, 32738, 2567, 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 (34264, '2021-11-17', 7782, 32739, 2567, 39829, '1.0000', '2.4468', '2.4468', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34265, '2021-11-17', 1381, 32740, 2567, 41381, '1.0000', '-2376.8068', '-2376.8068', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34266, '2021-11-17', 3062, 32741, 2567, 24982, '1.0000', '6.0700', '6.0700', '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 (34267, '2021-11-17', 2299, 32742, 2567, 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 (34268, '2021-11-17', 2315, 32743, 2567, 39758, '3.0000', '0.8556', '0.8556', '0.6000', '0.6000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34269, '2021-11-17', 2169, 32744, 2567, NULL, '1.0000', '1.1500', '1.1500', '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 (34270, '2021-11-17', 9399, 32745, 2568, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34271, '2021-11-17', 2315, 32746, 2568, 39758, '2.0000', '0.8556', '0.8556', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34272, '2021-11-17', 2280, 32747, 2568, NULL, '1.0000', '-177.9360', '-177.9360', '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 (34273, '2021-11-17', 7825, 32748, 2568, NULL, '1.0000', '6.5000', '6.5000', '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 (34274, '2021-11-17', 8476, 32749, 2568, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (34275, '2021-11-17', 7444, 32750, 2568, 39808, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34276, '2021-11-17', 2699, 32751, 2568, 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 (34277, '2021-11-17', 2295, 32752, 2568, 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 (34278, '2021-11-17', 7412, 32753, 2568, NULL, '1.0000', '1.5200', '1.5200', '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 (34279, '2021-11-17', 2541, 32754, 2568, 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 (34280, '2021-11-17', 1481, 32755, 2568, 39894, '1.0000', '-105.3000', '-105.3000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34281, '2021-11-17', 8638, 32756, 2569, 37757, '10.0000', '0.5100', '0.5100', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34282, '2021-11-17', 1856, 32757, 2569, 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 (34283, '2021-11-17', 7671, 32758, 2570, NULL, '1.0000', '15.5000', '15.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 (34284, '2021-11-17', 2315, 32759, 2570, 38451, '3.0000', '0.4740', '0.4740', '0.6000', '0.6000', '54.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34285, '2021-11-17', 8539, 32760, 2570, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '37.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34286, '2021-11-17', 9193, 32761, 2570, NULL, '1.0000', '5.5150', '5.5150', '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 (34287, '2021-11-17', 2104, 32762, 2570, NULL, '4.0000', '0.2000', '0.2000', '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 (34288, '2021-11-17', 1841, 32763, 2570, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34289, '2021-11-17', 1840, 32764, 2570, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '163.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34290, '2021-11-17', 2541, 32765, 2570, 38453, '1.0000', '9.7500', '9.7500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34291, '2021-11-17', 7641, 32766, 2570, NULL, '1.0000', '-8.8688', '-8.8688', '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 (34292, '2021-11-17', 7411, 32767, 2570, NULL, '1.0000', '1.3500', '1.3500', '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 (34293, '2021-11-17', 9401, 32768, 2570, 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 (34294, '2021-11-17', 8104, 32769, 2570, NULL, '10.0000', '1.6000', '1.6000', '2.2000', '2.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 (34295, '2021-11-17', 7411, 32770, 2570, NULL, '1.0000', '1.3500', '1.3500', '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 (34296, '2021-11-17', 7709, 32771, 2570, NULL, '2.0000', '35.8000', '35.8000', '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 (34297, '2021-11-17', 8277, 32772, 2570, NULL, '1.0000', '5.0000', '5.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 (34298, '2021-11-17', 7576, 32773, 2570, NULL, '8.0000', '11.5100', '11.5100', '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 (34299, '2021-11-17', 7601, 32774, 2570, 36074, '6.0000', '13.5000', '13.5000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34300, '2021-11-17', 9513, 32775, 2570, NULL, '1.0000', '6.8300', '6.8300', '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 (34301, '2021-11-17', 7541, 32776, 2570, NULL, '6.0000', '3.3000', '3.3000', '5.7000', '5.7000', '-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 (34302, '2021-11-17', 7509, 32777, 2570, 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 (34303, '2021-11-17', 8608, 32778, 2570, NULL, '3.0000', '5.7400', '5.7400', '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 (34304, '2021-11-17', 7507, 32779, 2570, NULL, '3.0000', '6.5000', '6.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 (34305, '2021-11-17', 7709, 32780, 2570, NULL, '2.0000', '35.8000', '35.8000', '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 (34306, '2021-11-17', 7427, 32781, 2570, 38437, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34307, '2021-11-17', 7638, 32782, 2570, 30222, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34308, '2021-11-17', 7680, 32783, 2570, NULL, '1.0000', '7.4000', '7.4000', '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 (34309, '2021-11-17', 1542, 32784, 2570, 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 (34310, '2021-11-17', 8163, 32785, 2570, NULL, '1.0000', '22.8600', '22.8600', '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 (34311, '2021-11-17', 8858, 32786, 2570, NULL, '2.0000', '8.5000', '8.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 (34312, '2021-11-17', 2102, 32787, 2570, 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 (34313, '2021-11-17', 7981, 32788, 2570, NULL, '10.0000', '6.0000', '6.0000', '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 (34314, '2021-11-17', 7984, 32789, 2570, NULL, '1.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34315, '2021-11-17', 2295, 32790, 2570, NULL, '5.0000', '0.7000', '0.7000', '1.5000', '1.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 (34316, '2021-11-17', 8515, 32791, 2570, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (34317, '2021-11-17', 2287, 32792, 2570, NULL, '2.0000', '2.3000', '2.3000', '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 (34318, '2021-11-17', 8737, 32793, 2570, NULL, '1.0000', '9.8000', '9.8000', '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 (34319, '2021-11-17', 7901, 32794, 2570, NULL, '1.0000', '14.5000', '14.5000', '3.2000', '3.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 (34320, '2021-11-17', 7902, 32795, 2570, NULL, '1.0000', '15.0000', '15.0000', '3.2000', '3.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 (34321, '2021-11-17', 7678, 32796, 2570, 41754, '1.0000', '5.1389', '5.1389', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34322, '2021-11-17', 2655, 32797, 2570, 39406, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34323, '2021-11-17', 7784, 32798, 2570, NULL, '4.0000', '4.2500', '4.2500', '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 (34324, '2021-11-17', 8965, 32799, 2570, NULL, '1.0000', '52.9900', '52.9900', '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 (34325, '2021-11-17', 7660, 32800, 2570, NULL, '1.0000', '3.6000', '3.6000', '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 (34326, '2021-11-17', 7472, 32801, 2570, NULL, '1.0000', '4.1000', '4.1000', '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 (34327, '2021-11-17', 9274, 32802, 2570, NULL, '1.0000', '3.1000', '3.1000', '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 (34328, '2021-11-17', 7963, 32803, 2570, NULL, '1.0000', '4.2500', '4.2500', '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 (34329, '2021-11-17', 9469, 32804, 2570, 39422, '2.0000', '2.3000', '2.3000', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34330, '2021-11-17', 8886, 32805, 2570, NULL, '1.0000', '27.0000', '27.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 (34331, '2021-11-17', 8316, 32806, 2570, 38458, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34332, '2021-11-17', 9534, 32807, 2570, NULL, '1.0000', '19.8900', '19.8900', '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 (34333, '2021-11-17', 7704, 32808, 2570, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34334, '2021-11-17', 7959, 32809, 2570, NULL, '2.0000', '9.6000', '9.6000', '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 (34335, '2021-11-17', 8918, 32810, 2570, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34336, '2021-11-17', 8810, 32811, 2570, NULL, '1.0000', '1.9200', '1.9200', '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 (34337, '2021-11-17', 7703, 32812, 2570, NULL, '1.0000', '22.9900', '22.9900', '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 (34338, '2021-11-17', 8456, 32813, 2570, NULL, '1.0000', '5.5400', '5.5400', '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 (34339, '2021-11-17', 7671, 32814, 2570, NULL, '1.0000', '15.5000', '15.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 (34340, '2021-11-17', 7518, 32815, 2570, NULL, '1.0000', '-67.2578', '-67.2578', '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 (34341, '2021-11-17', 8166, 32816, 2570, NULL, '1.0000', '4.6000', '4.6000', '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 (34342, '2021-11-17', 9337, 32817, 2570, 36077, '1.0000', '6.8067', '6.8067', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34343, '2021-11-17', 9337, 32817, 2570, NULL, '1.0000', '6.8067', '6.8067', '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 (34344, '2021-11-17', 8041, 32818, 2570, NULL, '1.0000', '0.4700', '0.4700', '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 (34345, '2021-11-17', 7444, 32819, 2570, 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 (34346, '2021-11-17', 7496, 32820, 2570, NULL, '1.0000', '0.9600', '0.9600', '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 (34347, '2021-11-17', 7411, 32821, 2570, NULL, '2.0000', '1.3500', '1.3500', '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 (34348, '2021-11-17', 9556, 32822, 2570, 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 (34349, '2021-11-17', 7857, 32823, 2570, NULL, '1.0000', '14.5620', '14.5620', '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 (34350, '2021-11-17', 9272, 32824, 2570, NULL, '1.0000', '3.1000', '3.1000', '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 (34351, '2021-11-17', 7482, 32825, 2570, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34352, '2021-11-17', 7781, 32826, 2570, NULL, '3.0000', '4.2500', '4.2500', '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 (34353, '2021-11-17', 2315, 32827, 2570, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '56.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34354, '2021-11-17', 7835, 32828, 2570, NULL, '1.0000', '27.0000', '27.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 (34355, '2021-11-17', 8000, 32829, 2570, NULL, '1.0000', '74.7436', '74.7436', '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 (34356, '2021-11-17', 1845, 32830, 2570, NULL, '1.0000', '19.5000', '19.5000', '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 (34357, '2021-11-17', 7659, 32831, 2570, NULL, '1.0000', '5.9700', '5.9700', '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 (34358, '2021-11-17', 7703, 32832, 2570, NULL, '1.0000', '22.9900', '22.9900', '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 (34359, '2021-11-17', 1805, 32833, 2570, NULL, '1.0000', '4.5500', '4.5500', '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 (34360, '2021-11-17', 7889, 32834, 2570, 38147, '1.0000', '-8.6571', '-8.6571', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34361, '2021-11-17', 7438, 32835, 2570, NULL, '1.0000', '28.6900', '28.6900', '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 (34362, '2021-11-17', 8595, 32836, 2570, NULL, '1.0000', '4.2100', '4.2100', '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 (34363, '2021-11-17', 8849, 32837, 2570, NULL, '1.0000', '1.0700', '1.0700', '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 (34364, '2021-11-17', 7376, 32838, 2570, NULL, '1.0000', '141.7100', '141.7100', '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 (34365, '2021-11-17', 8548, 32839, 2570, NULL, '1.0000', '12.0000', '12.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 (34366, '2021-11-17', 1321, 32840, 2570, NULL, '1.0000', '9.8000', '9.8000', '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 (34367, '2021-11-17', 7411, 32841, 2570, NULL, '2.0000', '1.3500', '1.3500', '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 (34368, '2021-11-17', 7708, 32842, 2570, NULL, '1.0000', '6.1400', '6.1400', '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 (34369, '2021-11-17', 7444, 32843, 2570, 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 (34370, '2021-11-17', 2354, 32844, 2570, 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 (34371, '2021-11-17', 7981, 32845, 2570, NULL, '10.0000', '6.0000', '6.0000', '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 (34372, '2021-11-17', 9193, 32846, 2570, NULL, '1.0000', '5.5150', '5.5150', '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 (34373, '2021-11-17', 7524, 32847, 2570, NULL, '1.0000', '14.3519', '14.3519', '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 (34374, '2021-11-17', 7954, 32848, 2570, NULL, '2.0000', '24.1269', '24.1269', '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 (34375, '2021-11-17', 9445, 32849, 2570, 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 (34376, '2021-11-17', 2699, 32850, 2570, 31907, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34377, '2021-11-17', 2699, 32850, 2570, 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 (34378, '2021-11-17', 7708, 32851, 2570, NULL, '1.0000', '6.1400', '6.1400', '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 (34379, '2021-11-17', 7642, 32852, 2570, NULL, '2.0000', '34.9900', '34.9900', '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 (34380, '2021-11-17', 8247, 32853, 2570, NULL, '2.0000', '54.0000', '54.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 (34381, '2021-11-17', 7715, 32854, 2570, 30500, '2.0000', '1.8900', '1.8900', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34382, '2021-11-17', 2277, 32855, 2571, NULL, '2.0000', '0.8982', '0.8982', '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 (34383, '2021-11-17', 7411, 32856, 2571, NULL, '1.0000', '1.3500', '1.3500', '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 (34384, '2021-11-17', 2384, 32857, 2571, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (34385, '2021-11-17', 7411, 32858, 2571, NULL, '1.0000', '1.3500', '1.3500', '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 (34386, '2021-11-17', 1499, 32859, 2571, 41408, '2.0000', '0.5117', '0.5117', '0.7400', '0.7400', '18.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34387, '2021-11-17', 9337, 32860, 2571, NULL, '2.0000', '5.7200', '5.7200', '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 (34388, '2021-11-17', 2315, 32861, 2571, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34389, '2021-11-17', 1478, 32862, 2571, 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 (34390, '2021-11-17', 9563, 32863, 2572, 40363, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34391, '2021-11-17', 1935, 32864, 2572, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34392, '2021-11-17', 2394, 32865, 2572, 10241, '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 (34393, '2021-11-17', 2273, 32866, 2572, 37557, '1.0000', '2.6700', '2.6700', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34394, '2021-11-17', 1493, 32867, 2572, 32033, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34395, '2021-11-17', 2379, 32868, 2572, 38078, '1.0000', '1.8662', '1.8662', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34396, '2021-11-17', 2506, 32869, 2573, 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 (34397, '2021-11-17', 8166, 32870, 2573, NULL, '1.0000', '4.6000', '4.6000', '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 (34398, '2021-11-17', 7682, 32871, 2573, NULL, '1.0000', '0.6600', '0.6600', '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 (34399, '2021-11-17', 7411, 32872, 2573, NULL, '1.0000', '1.3500', '1.3500', '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 (34400, '2021-11-17', 7514, 32873, 2573, NULL, '1.0000', '12.9983', '12.9983', '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 (34401, '2021-11-17', 2248, 32874, 2574, 41414, '1.0000', '3.0592', '3.0592', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34402, '2021-11-17', 1573, 32875, 2574, 41420, '1.0000', '23.5400', '23.5400', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34403, '2021-11-17', 2660, 32876, 2574, 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 (34404, '2021-11-17', 8984, 32877, 2574, NULL, '1.0000', '-100.8495', '-100.8495', '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 (34405, '2021-11-17', 1837, 32878, 2574, 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 (34406, '2021-11-17', 2315, 32879, 2574, 39758, '1.0000', '0.8556', '0.8556', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34407, '2021-11-17', 2104, 32880, 2575, NULL, '2.0000', '0.2000', '0.2000', '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 (34408, '2021-11-17', 7490, 32881, 2575, NULL, '4.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-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 (34409, '2021-11-17', 7670, 32882, 2575, NULL, '1.0000', '1.4000', '1.4000', '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 (34410, '2021-11-17', 2169, 32883, 2576, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34411, '2021-11-17', 2068, 32884, 2576, 40859, '1.0000', '11.8778', '11.8778', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34412, '2021-11-17', 1371, 32885, 2576, 41582, '1.0000', '1773.8249', '1773.8249', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34413, '2021-11-17', 1308, 32886, 2576, 2479, '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 (34414, '2021-11-17', 2478, 32887, 2576, 5191, '1.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 (34415, '2021-11-17', 2169, 32888, 2576, 40868, '2.0000', '1.0542', '1.0542', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34416, '2021-11-17', 2592, 32889, 2576, 16710, '1.0000', '7.9456', '7.9456', '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 (34417, '2021-11-17', 1602, 32890, 2576, 40198, '2.0000', '6.8550', '6.8550', '10.0000', '10.0000', '35.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34418, '2021-11-17', 1888, 32891, 2576, NULL, '1.0000', '-42.1250', '-42.1250', '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 (34419, '2021-11-17', 9464, 32892, 2576, 31694, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34420, '2021-11-17', 9089, 32893, 2576, 35943, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34421, '2021-11-17', 2136, 32894, 2576, 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 (34422, '2021-11-17', 1812, 32895, 2576, 40883, '1.0000', '7.9425', '7.9425', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34423, '2021-11-17', 1308, 32896, 2576, 2479, '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 (34424, '2021-11-17', 8065, 32897, 2576, NULL, '1.0000', '4.9800', '4.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 (34425, '2021-11-17', 2169, 32898, 2576, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34426, '2021-11-17', 1863, 32899, 2576, 40894, '3.0000', '1.1698', '1.1698', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34427, '2021-11-17', 2366, 32900, 2576, 8415, '2.0000', '3.7873', '3.7873', '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 (34428, '2021-11-17', 1818, 32901, 2576, 40880, '1.0000', '18.5185', '18.5185', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34429, '2021-11-17', 1347, 32902, 2576, NULL, '10.0000', '2.2038', '2.2038', '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 (34430, '2021-11-17', 1677, 32903, 2576, 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 (34431, '2021-11-17', 1757, 32904, 2576, 5005, '1.0000', '4.4000', '4.4000', '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 (34432, '2021-11-17', 7741, 32905, 2576, NULL, '1.0000', '1.2000', '1.2000', '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 (34433, '2021-11-17', 7671, 32906, 2576, NULL, '1.0000', '15.5000', '15.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 (34434, '2021-11-17', 2280, 32907, 2576, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '24.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34435, '2021-11-17', 1602, 32908, 2576, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '36.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34436, '2021-11-17', 9468, 32909, 2576, NULL, '1.0000', '17.5000', '17.5000', '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 (34437, '2021-11-17', 2252, 32910, 2576, 31713, '1.0000', '9.5963', '9.5963', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34438, '2021-11-17', 2280, 32911, 2576, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '24.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34439, '2021-11-17', 2231, 32912, 2576, 40367, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34440, '2021-11-17', 2411, 32913, 2576, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '5.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 (34441, '2021-11-17', 1538, 32914, 2576, 9054, '1.0000', '31.5200', '31.5200', '41.5000', '41.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 (34442, '2021-11-17', 2135, 32915, 2576, 41610, '1.0000', '1.5737', '1.5737', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34443, '2021-11-17', 2601, 32916, 2576, 39177, '1.0000', '16.0000', '16.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34444, '2021-11-17', 2306, 32917, 2576, 3141, '1.0000', '36.0000', '36.0000', '72.5000', '72.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 (34445, '2021-11-17', 1592, 32918, 2576, 33000, '1.0000', '38.9424', '38.9424', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34446, '2021-11-17', 1497, 32919, 2576, 32820, '1.0000', '10.6429', '10.6429', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34447, '2021-11-17', 1704, 32920, 2576, 24267, '1.0000', '910.4120', '910.4120', '36.0000', '36.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 (34448, '2021-11-17', 2221, 32921, 2576, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34449, '2021-11-17', 7756, 32922, 2576, NULL, '1.0000', '34.6167', '34.6167', '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 (34450, '2021-11-17', 2825, 32923, 2576, NULL, '1.0000', '12.0000', '12.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 (34451, '2021-11-17', 1602, 32924, 2576, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '36.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34452, '2021-11-17', 2557, 32925, 2576, 12741, '1.0000', '1.0000', '1.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 (34453, '2021-11-17', 1812, 32926, 2576, 40883, '2.0000', '7.9425', '7.9425', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34454, '2021-11-17', 1485, 32927, 2576, 11894, '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 (34455, '2021-11-17', 1410, 32928, 2576, NULL, '1.0000', '2.2220', '2.2220', '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 (34456, '2021-11-17', 1619, 32929, 2576, 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 (34457, '2021-11-17', 2546, 32930, 2577, NULL, '1.0000', '14.0100', '14.0100', '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 (34458, '2021-11-18', 2105, 32931, 2578, 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 (34459, '2021-11-18', 1667, 32932, 2578, 9745, '-26.0000', '5.9400', '5.9400', '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 (34460, '2021-11-18', 1667, 32932, 2578, NULL, '27.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-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 (34461, '2021-11-18', 1841, 32933, 2578, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.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 (34462, '2021-11-18', 1841, 32933, 2578, 645, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '18.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 (34463, '2021-11-18', 1592, 32934, 2578, 6223, '-3.0000', '35.9000', '35.9000', '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 (34464, '2021-11-18', 1592, 32934, 2578, NULL, '4.0000', '35.9000', '35.9000', '47.0000', '47.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 (34465, '2021-11-18', 2458, 32935, 2578, 18021, '-3.0000', '13.2000', '13.2000', '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 (34466, '2021-11-18', 2458, 32935, 2578, NULL, '4.0000', '13.2000', '13.2000', '20.0000', '20.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 (34467, '2021-11-18', 1530, 32936, 2578, 7391, '-4.0000', '28.7012', '28.7012', '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 (34468, '2021-11-18', 1530, 32936, 2578, NULL, '5.0000', '28.7012', '28.7012', '38.0000', '38.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 (34469, '2021-11-18', 1335, 32937, 2578, 12031, '-3.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 (34470, '2021-11-18', 1335, 32937, 2578, NULL, '7.0000', '0.8500', '0.8500', '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 (34471, '2021-11-18', 2635, 32938, 2578, 10297, '-8.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 (34472, '2021-11-18', 2635, 32938, 2578, 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 (34473, '2021-11-18', 2487, 32939, 2578, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.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 (34474, '2021-11-18', 1791, 32940, 2578, 4909, '-2.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 (34475, '2021-11-18', 1791, 32940, 2578, NULL, '3.0000', '90.0000', '90.0000', '18.5000', '18.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 (34476, '2021-11-18', 1666, 32941, 2578, 3236, '-9.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 (34477, '2021-11-18', 1666, 32941, 2578, NULL, '11.0000', '2.7100', '2.7100', '3.5000', '3.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 (34478, '2021-11-18', 2260, 32942, 2578, 2796, '-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 (34479, '2021-11-18', 2260, 32942, 2578, NULL, '6.0000', '4.2000', '4.2000', '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 (34480, '2021-11-18', 1863, 32943, 2578, 10808, '-95.0000', '0.4136', '0.4136', '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 (34481, '2021-11-18', 1863, 32943, 2578, NULL, '96.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-96.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34482, '2021-11-18', 1866, 32944, 2578, 16246, '-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 (34483, '2021-11-18', 1866, 32944, 2578, 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 (34484, '2021-11-18', 2285, 32945, 2578, 2945, '-18.0000', '35.8000', '35.8000', '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 (34485, '2021-11-18', 2285, 32945, 2578, NULL, '19.0000', '35.8000', '35.8000', '47.0000', '47.0000', '-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 (34486, '2021-11-18', 2233, 32946, 2578, 2777, '-12.0000', '19.0200', '19.0200', '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 (34487, '2021-11-18', 2233, 32946, 2578, NULL, '13.0000', '19.0200', '19.0200', '29.0000', '29.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 (34488, '2021-11-18', 1371, 32947, 2578, 10169, '1.0000', '5.5000', '5.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 (34489, '2021-11-18', 2169, 32948, 2578, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '20.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 (34490, '2021-11-18', 2680, 32949, 2578, 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 (34491, '2021-11-18', 2825, 32950, 2578, NULL, '1.0000', '12.0000', '12.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 (34492, '2021-11-18', 1310, 32951, 2578, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (34493, '2021-11-18', 1557, 32952, 2579, NULL, '1.0000', '7.8420', '7.8420', '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 (34494, '2021-11-18', 2324, 32953, 2579, 22558, '2.0000', '10.5000', '10.5000', '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 (34495, '2021-11-18', 1346, 32954, 2579, 39869, '7.0000', '-6.6466', '-6.6466', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34496, '2021-11-18', 1487, 32955, 2579, 37814, '1.0000', '-37.3500', '-37.3500', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34497, '2021-11-18', 2541, 32956, 2579, 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 (34498, '2021-11-18', 7342, 32957, 2579, NULL, '1.0000', '15.6000', '15.6000', '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 (34499, '2021-11-18', 8677, 32958, 2579, NULL, '2.0000', '89.9250', '89.9250', '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 (34500, '2021-11-18', 3029, 32959, 2579, 23679, '1.0000', '4.7700', '4.7700', '8.0000', '8.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 (34501, '2021-11-18', 3023, 32960, 2579, 24931, '1.0000', '5.6400', '5.6400', '7.5000', '7.5000', '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 (34502, '2021-11-18', 1908, 32961, 2579, NULL, '2.0000', '1.7500', '1.7500', '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 (34503, '2021-11-18', 2167, 32962, 2579, 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 (34504, '2021-11-18', 1666, 32963, 2579, 41371, '2.0000', '2.7615', '2.7615', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34505, '2021-11-18', 1863, 32964, 2579, NULL, '1.0000', '1.3589', '1.3589', '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 (34506, '2021-11-18', 2603, 32965, 2579, 37968, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34507, '2021-11-18', 8638, 32966, 2579, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34508, '2021-11-18', 9204, 32967, 2579, NULL, '1.0000', '8.1600', '8.1600', '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 (34509, '2021-11-18', 2444, 32968, 2579, 39222, '1.0000', '6.9587', '6.9587', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34510, '2021-11-18', 2650, 32969, 2579, NULL, '1.0000', '7.9860', '7.9860', '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 (34511, '2021-11-18', 7317, 32970, 2579, NULL, '1.0000', '19.5500', '19.5500', '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 (34512, '2021-11-18', 2418, 32971, 2579, 39981, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34513, '2021-11-18', 1564, 32972, 2579, NULL, '8.0000', '90.0000', '90.0000', '4.0000', '4.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 (34514, '2021-11-18', 2643, 32973, 2579, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34515, '2021-11-18', 8677, 32974, 2579, NULL, '1.0000', '89.9250', '89.9250', '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 (34516, '2021-11-18', 7802, 32975, 2579, NULL, '2.0000', '0.9200', '0.9200', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34517, '2021-11-18', 1580, 32976, 2579, 19875, '2.0000', '0.9900', '0.9900', '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 (34518, '2021-11-18', 7544, 32977, 2579, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (34519, '2021-11-18', 8200, 32978, 2579, NULL, '1.0000', '8.5500', '8.5500', '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 (34520, '2021-11-18', 2135, 32979, 2580, 18930, '1.0000', '2.4732', '2.4732', '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 (34521, '2021-11-18', 2700, 32980, 2581, 23128, '1.0000', '27.9700', '27.9700', '38.0000', '38.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 (34522, '2021-11-18', 7638, 32981, 2581, 39773, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34523, '2021-11-18', 2169, 32982, 2581, NULL, '1.0000', '1.1500', '1.1500', '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 (34524, '2021-11-18', 7533, 32983, 2581, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34525, '2021-11-18', 2234, 32984, 2581, 37441, '1.0000', '16.3300', '16.3300', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34526, '2021-11-18', 7411, 32985, 2581, NULL, '1.0000', '1.3500', '1.3500', '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 (34527, '2021-11-18', 1912, 32986, 2581, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34528, '2021-11-18', 7411, 32987, 2581, NULL, '1.0000', '1.3500', '1.3500', '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 (34529, '2021-11-18', 2315, 32988, 2581, NULL, '2.0000', '0.8556', '0.8556', '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 (34530, '2021-11-18', 7317, 32989, 2581, NULL, '1.0000', '19.5500', '19.5500', '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 (34531, '2021-11-18', 7402, 32990, 2581, NULL, '1.0000', '116.3300', '116.3300', '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 (34532, '2021-11-18', 7666, 32991, 2581, NULL, '1.0000', '10.0000', '10.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 (34533, '2021-11-18', 2176, 32992, 2581, 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 (34534, '2021-11-18', 2181, 32993, 2581, 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 (34535, '2021-11-18', 1492, 32994, 2581, 19359, '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 (34536, '2021-11-18', 1748, 32995, 2581, NULL, '2.0000', '0.3200', '0.3200', '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 (34537, '2021-11-18', 2169, 32996, 2581, NULL, '2.0000', '1.1500', '1.1500', '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 (34538, '2021-11-18', 2020, 32997, 2581, NULL, '1.0000', '7.8240', '7.8240', '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 (34539, '2021-11-18', 7585, 32998, 2581, NULL, '1.0000', '3.9600', '3.9600', '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 (34540, '2021-11-18', 1621, 32999, 2581, 37805, '1.0000', '9.6682', '9.6682', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34541, '2021-11-18', 1812, 33000, 2581, 41372, '1.0000', '7.9194', '7.9194', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34542, '2021-11-18', 2315, 33001, 2581, NULL, '2.0000', '0.8556', '0.8556', '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 (34543, '2021-11-18', 2169, 33002, 2581, NULL, '1.0000', '1.1500', '1.1500', '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 (34544, '2021-11-18', 7532, 33003, 2581, 39818, '2.0000', '19.7445', '19.7445', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34545, '2021-11-18', 1871, 33004, 2581, NULL, '2.0000', '2.9308', '2.9308', '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 (34546, '2021-11-18', 2329, 33005, 2582, 18881, '2.0000', '30.1300', '30.1300', '42.5000', '42.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 (34547, '2021-11-18', 1912, 33006, 2583, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34548, '2021-11-18', 2968, 33007, 2583, 21799, '1.0000', '18.0000', '18.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 (34549, '2021-11-18', 1704, 33008, 2583, 24267, '1.0000', '910.4120', '910.4120', '36.0000', '36.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 (34550, '2021-11-18', 2604, 33009, 2583, 40184, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34551, '2021-11-18', 1667, 33010, 2583, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34552, '2021-11-18', 1406, 33011, 2583, 41586, '1.0000', '16.9383', '16.9383', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34553, '2021-11-18', 2817, 33012, 2583, 22483, '22.0000', '1.8000', '1.8000', '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 (34554, '2021-11-18', 1688, 33013, 2583, 29810, '1.0000', '17.8694', '17.8694', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34555, '2021-11-18', 8598, 33014, 2583, NULL, '1.0000', '4.8000', '4.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 (34556, '2021-11-18', 2491, 33015, 2583, 40881, '1.0000', '13.2182', '13.2182', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34557, '2021-11-18', 1678, 33016, 2583, NULL, '1.0000', '18.5556', '18.5556', '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 (34558, '2021-11-18', 1904, 33017, 2583, 37558, '3.0000', '201.4970', '201.4970', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34559, '2021-11-18', 2109, 33018, 2583, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '89.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34560, '2021-11-18', 1504, 33019, 2583, 37581, '20.0000', '1.1357', '1.1357', '2.2000', '2.2000', '30.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34561, '2021-11-18', 2280, 33020, 2583, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34562, '2021-11-18', 2592, 33021, 2583, 16710, '1.0000', '7.9456', '7.9456', '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 (34563, '2021-11-18', 2394, 33022, 2583, 10241, '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 (34564, '2021-11-18', 1439, 33023, 2583, 3279, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '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 (34565, '2021-11-18', 9577, 33024, 2583, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34566, '2021-11-18', 1450, 33025, 2583, 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 (34567, '2021-11-18', 8622, 33026, 2583, 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 (34568, '2021-11-18', 1854, 33027, 2583, 4985, '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 (34569, '2021-11-18', 9174, 33028, 2583, NULL, '1.0000', '15.5000', '15.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 (34570, '2021-11-18', 2236, 33029, 2583, 34669, '1.0000', '5.5143', '5.5143', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34571, '2021-11-18', 1612, 33030, 2583, 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 (34572, '2021-11-18', 1667, 33031, 2583, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34573, '2021-11-18', 2858, 33032, 2583, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34574, '2021-11-18', 1904, 33033, 2583, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34575, '2021-11-18', 1645, 33034, 2583, 34687, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34576, '2021-11-18', 2277, 33035, 2583, 38069, '2.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34577, '2021-11-18', 2275, 33036, 2583, 32825, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '93.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34578, '2021-11-18', 9631, 33037, 2583, 40873, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34579, '2021-11-18', 2295, 33038, 2583, 3134, '3.0000', '0.7000', '0.7000', '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 (34580, '2021-11-18', 2506, 33039, 2583, 32007, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34581, '2021-11-18', 7759, 33040, 2583, NULL, '1.0000', '19.5000', '19.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 (34582, '2021-11-18', 2066, 33041, 2583, 5494, '2.0000', '0.5100', '0.5100', '1.0000', '1.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 (34583, '2021-11-18', 2681, 33042, 2583, 38083, '2.0000', '12.6664', '12.6664', '16.5000', '16.5000', '6.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34584, '2021-11-18', 1574, 33043, 2584, 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 (34585, '2021-11-18', 8984, 33044, 2584, NULL, '1.0000', '-100.8495', '-100.8495', '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 (34586, '2021-11-18', 2167, 33045, 2584, 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 (34587, '2021-11-18', 2315, 33046, 2584, NULL, '2.0000', '0.8556', '0.8556', '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 (34588, '2021-11-18', 3054, 33047, 2584, 38912, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34589, '2021-11-18', 2759, 33048, 2584, 38915, '1.0000', '3.9439', '3.9439', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34590, '2021-11-18', 2270, 33049, 2584, 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 (34591, '2021-11-18', 2250, 33050, 2584, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34592, '2021-11-18', 1322, 33051, 2584, NULL, '1.0000', '4.4000', '4.4000', '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 (34593, '2021-11-18', 7482, 33052, 2584, 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 (34594, '2021-11-18', 1912, 33053, 2585, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34595, '2021-11-18', 2968, 33054, 2585, 21799, '1.0000', '18.0000', '18.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 (34596, '2021-11-18', 1704, 33055, 2585, 23582, '1.0000', '910.4120', '910.4120', '36.0000', '36.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 (34597, '2021-11-18', 2604, 33056, 2585, 40184, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34598, '2021-11-18', 1667, 33057, 2585, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34599, '2021-11-18', 1406, 33058, 2585, 41586, '1.0000', '16.9383', '16.9383', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34600, '2021-11-18', 2817, 33059, 2585, 22483, '10.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 (34601, '2021-11-18', 2817, 33059, 2585, 16787, '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 (34602, '2021-11-18', 2817, 33059, 2585, NULL, '11.0000', '1.8000', '1.8000', '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 (34603, '2021-11-18', 1688, 33060, 2585, 24132, '1.0000', '17.8694', '17.8694', '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 (34604, '2021-11-18', 8598, 33061, 2585, NULL, '1.0000', '4.8000', '4.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 (34605, '2021-11-18', 2491, 33062, 2585, 40881, '1.0000', '13.2182', '13.2182', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34606, '2021-11-18', 1678, 33063, 2585, NULL, '1.0000', '18.5556', '18.5556', '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 (34607, '2021-11-18', 1904, 33064, 2585, 37558, '3.0000', '201.4970', '201.4970', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34608, '2021-11-18', 2109, 33065, 2585, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34609, '2021-11-18', 1504, 33066, 2585, 37581, '20.0000', '1.1357', '1.1357', '2.2000', '2.2000', '10.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34610, '2021-11-18', 2280, 33067, 2585, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '21.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34611, '2021-11-18', 2592, 33068, 2585, 16710, '1.0000', '7.9456', '7.9456', '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 (34612, '2021-11-18', 2394, 33069, 2585, 10241, '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 (34613, '2021-11-18', 1439, 33070, 2585, 3279, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '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 (34614, '2021-11-18', 9577, 33071, 2585, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34615, '2021-11-18', 1450, 33072, 2585, 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 (34616, '2021-11-18', 8622, 33073, 2585, 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 (34617, '2021-11-18', 1854, 33074, 2585, 4985, '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 (34618, '2021-11-18', 9174, 33075, 2585, NULL, '1.0000', '15.5000', '15.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 (34619, '2021-11-18', 2236, 33076, 2585, 34669, '1.0000', '5.5143', '5.5143', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34620, '2021-11-18', 1612, 33077, 2585, 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 (34621, '2021-11-18', 1667, 33078, 2585, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34622, '2021-11-18', 2858, 33079, 2585, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34623, '2021-11-18', 1904, 33080, 2585, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34624, '2021-11-18', 1645, 33081, 2585, 34687, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34625, '2021-11-18', 2277, 33082, 2585, 38069, '2.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '56.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34626, '2021-11-18', 2275, 33083, 2585, 32825, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '92.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34627, '2021-11-18', 9631, 33084, 2585, 40873, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34628, '2021-11-18', 2295, 33085, 2585, 3134, '3.0000', '0.7000', '0.7000', '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 (34629, '2021-11-18', 2506, 33086, 2585, 32007, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34630, '2021-11-18', 7759, 33087, 2585, NULL, '1.0000', '19.5000', '19.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 (34631, '2021-11-18', 2066, 33088, 2585, 5494, '2.0000', '0.5100', '0.5100', '1.0000', '1.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 (34632, '2021-11-18', 2681, 33089, 2585, 38083, '2.0000', '12.6664', '12.6664', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34633, '2021-11-18', 2317, 33090, 2585, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '54.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34634, '2021-11-18', 1872, 33091, 2586, 18676, '1.0000', '9.0500', '9.0500', '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 (34635, '2021-11-18', 1863, 33092, 2586, 40894, '1.0000', '1.1698', '1.1698', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34636, '2021-11-18', 7746, 33093, 2586, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34637, '2021-11-18', 9577, 33094, 2586, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34638, '2021-11-18', 9445, 33095, 2587, 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 (34639, '2021-11-18', 8457, 33096, 2587, NULL, '1.0000', '0.7500', '0.7500', '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 (34640, '2021-11-18', 9650, 33097, 2587, 41811, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34641, '2021-11-18', 9402, 33098, 2587, NULL, '11.0000', '3.5000', '3.5000', '0.7000', '0.7000', '-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 (34642, '2021-11-18', 8205, 33099, 2587, NULL, '1.0000', '2.9500', '2.9500', '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 (34643, '2021-11-18', 7705, 33100, 2587, NULL, '1.0000', '5.9900', '5.9900', '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 (34644, '2021-11-18', 7674, 33101, 2587, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '135.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34645, '2021-11-18', 9176, 33102, 2587, NULL, '1.0000', '5.0000', '5.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 (34646, '2021-11-18', 2315, 33103, 2587, 38451, '3.0000', '0.4740', '0.4740', '0.6000', '0.6000', '50.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34647, '2021-11-18', 8269, 33104, 2587, NULL, '1.0000', '10.0000', '10.0000', '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 (34648, '2021-11-18', 7926, 33105, 2587, 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 (34649, '2021-11-18', 7518, 33106, 2587, NULL, '1.0000', '-67.2578', '-67.2578', '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 (34650, '2021-11-18', 2655, 33107, 2587, 39406, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34651, '2021-11-18', 7640, 33108, 2587, NULL, '1.0000', '7.4344', '7.4344', '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 (34652, '2021-11-18', 9191, 33109, 2587, NULL, '2.0000', '6.6700', '6.6700', '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 (34653, '2021-11-18', 8034, 33110, 2587, NULL, '1.0000', '4.8900', '4.8900', '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 (34654, '2021-11-18', 7518, 33111, 2587, NULL, '1.0000', '-67.2578', '-67.2578', '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 (34655, '2021-11-18', 7334, 33112, 2587, NULL, '3.0000', '8.1600', '8.1600', '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 (34656, '2021-11-18', 7848, 33113, 2587, NULL, '2.0000', '1.3500', '1.3500', '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 (34657, '2021-11-18', 7672, 33114, 2587, NULL, '1.0000', '1.0200', '1.0200', '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 (34658, '2021-11-18', 7707, 33115, 2587, NULL, '1.0000', '6.0124', '6.0124', '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 (34659, '2021-11-18', 8457, 33116, 2587, NULL, '1.0000', '0.7500', '0.7500', '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 (34660, '2021-11-18', 7993, 33117, 2587, NULL, '4.0000', '41.0000', '41.0000', '51.5000', '51.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 (34661, '2021-11-18', 2289, 33118, 2587, NULL, '4.0000', '0.2300', '0.2300', '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 (34662, '2021-11-18', 7514, 33119, 2587, NULL, '2.0000', '12.9983', '12.9983', '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 (34663, '2021-11-18', 7385, 33120, 2587, 41759, '4.0000', '35259.1808', '35259.1808', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34664, '2021-11-18', 8927, 33121, 2587, NULL, '4.0000', '36.0000', '36.0000', '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 (34665, '2021-11-18', 7411, 33122, 2587, NULL, '1.0000', '1.3500', '1.3500', '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 (34666, '2021-11-18', 7496, 33123, 2587, NULL, '1.0000', '0.9600', '0.9600', '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 (34667, '2021-11-18', 7465, 33124, 2587, 41773, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34668, '2021-11-18', 8789, 33125, 2587, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34669, '2021-11-18', 8275, 33126, 2587, NULL, '2.0000', '29.8500', '29.8500', '40.0000', '40.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 (34670, '2021-11-18', 1734, 33127, 2587, 39556, '1.0000', '14.9800', '14.9800', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34671, '2021-11-18', 7704, 33128, 2587, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34672, '2021-11-18', 8595, 33129, 2587, NULL, '1.0000', '4.2100', '4.2100', '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 (34673, '2021-11-18', 8680, 33130, 2587, NULL, '1.0000', '2.0000', '2.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 (34674, '2021-11-18', 7715, 33131, 2587, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34675, '2021-11-18', 7839, 33132, 2587, NULL, '1.0000', '5.0000', '5.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 (34676, '2021-11-18', 8915, 33133, 2587, NULL, '1.0000', '29.3500', '29.3500', '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 (34677, '2021-11-18', 8101, 33134, 2587, NULL, '2.0000', '21.7000', '21.7000', '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 (34678, '2021-11-18', 7781, 33135, 2587, NULL, '3.0000', '4.2500', '4.2500', '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 (34679, '2021-11-18', 7507, 33136, 2587, NULL, '3.0000', '6.5000', '6.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 (34680, '2021-11-18', 2315, 33137, 2587, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '52.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34681, '2021-11-18', 7473, 33138, 2587, NULL, '2.0000', '15.4731', '15.4731', '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 (34682, '2021-11-18', 8166, 33139, 2587, NULL, '2.0000', '4.6000', '4.6000', '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 (34683, '2021-11-18', 8166, 33140, 2587, NULL, '1.0000', '4.6000', '4.6000', '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 (34684, '2021-11-18', 7930, 33141, 2587, 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 (34685, '2021-11-18', 1698, 33142, 2587, 33729, '1.0000', '8.4500', '8.4500', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34686, '2021-11-18', 7482, 33143, 2587, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34687, '2021-11-18', 2289, 33144, 2587, 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 (34688, '2021-11-18', 9274, 33145, 2587, NULL, '1.0000', '3.1000', '3.1000', '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 (34689, '2021-11-18', 1501, 33146, 2587, NULL, '1.0000', '27.4349', '27.4349', '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 (34690, '2021-11-18', 2315, 33147, 2587, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '52.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34691, '2021-11-18', 2289, 33148, 2587, NULL, '6.0000', '0.2300', '0.2300', '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 (34692, '2021-11-18', 2295, 33149, 2587, 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 (34693, '2021-11-18', 7641, 33150, 2587, NULL, '1.0000', '-8.8688', '-8.8688', '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 (34694, '2021-11-18', 8041, 33151, 2587, NULL, '1.0000', '0.4700', '0.4700', '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 (34695, '2021-11-18', 7775, 33152, 2587, 39642, '2.0000', '-2.9800', '-2.9800', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34696, '2021-11-18', 7640, 33153, 2587, NULL, '1.0000', '7.4344', '7.4344', '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 (34697, '2021-11-18', 8504, 33154, 2587, NULL, '2.0000', '2.5000', '2.5000', '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 (34698, '2021-11-18', 7800, 33155, 2587, NULL, '10.0000', '4.9000', '4.9000', '7.0000', '7.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 (34699, '2021-11-18', 1837, 33156, 2587, 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 (34700, '2021-11-18', 2753, 33157, 2587, 39399, '2.0000', '4.8000', '4.8000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34701, '2021-11-18', 1328, 33158, 2587, 39397, '4.0000', '436.9108', '436.9108', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34702, '2021-11-18', 9329, 33159, 2587, NULL, '2.0000', '5.8000', '5.8000', '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 (34703, '2021-11-18', 7848, 33160, 2587, NULL, '1.0000', '1.3500', '1.3500', '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 (34704, '2021-11-18', 8134, 33161, 2587, NULL, '1.0000', '5.2600', '5.2600', '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 (34705, '2021-11-18', 7518, 33162, 2587, NULL, '1.0000', '-67.2578', '-67.2578', '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 (34706, '2021-11-18', 8518, 33163, 2587, NULL, '1.0000', '17.6400', '17.6400', '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 (34707, '2021-11-18', 7379, 33164, 2587, NULL, '1.0000', '12.5100', '12.5100', '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 (34708, '2021-11-18', 7357, 33165, 2587, NULL, '1.0000', '11.7500', '11.7500', '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 (34709, '2021-11-18', 7342, 33166, 2587, 29987, '2.0000', '2.8539', '2.8539', '21.0000', '21.0000', '77.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34710, '2021-11-18', 7848, 33167, 2587, NULL, '1.0000', '1.3500', '1.3500', '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 (34711, '2021-11-18', 9401, 33168, 2587, 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 (34712, '2021-11-18', 7411, 33169, 2587, NULL, '1.0000', '1.3500', '1.3500', '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 (34713, '2021-11-18', 8810, 33170, 2587, NULL, '1.0000', '1.9200', '1.9200', '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 (34714, '2021-11-18', 7672, 33171, 2587, NULL, '1.0000', '1.0200', '1.0200', '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 (34715, '2021-11-18', 2070, 33172, 2587, 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 (34716, '2021-11-18', 7378, 33173, 2587, 30011, '1.0000', '40.9567', '40.9567', '197.0000', '197.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34717, '2021-11-18', 7781, 33174, 2587, NULL, '3.0000', '4.2500', '4.2500', '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 (34718, '2021-11-18', 2797, 33175, 2587, NULL, '1.0000', '27.4800', '27.4800', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34719, '2021-11-18', 7514, 33176, 2587, NULL, '1.0000', '12.9983', '12.9983', '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 (34720, '2021-11-18', 2366, 33177, 2588, 3901, '2.0000', '3.7873', '3.7873', '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 (34721, '2021-11-18', 7871, 33178, 2589, NULL, '7.0000', '6.0000', '6.0000', '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 (34722, '2021-11-18', 2965, 33179, 2590, NULL, '1.0000', '5.0000', '5.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 (34723, '2021-11-18', 1572, 33180, 2591, NULL, '4.0000', '1.7000', '1.7000', '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 (34724, '2021-11-18', 2221, 33181, 2591, 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 (34725, '2021-11-18', 1602, 33182, 2591, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34726, '2021-11-18', 1665, 33183, 2592, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34727, '2021-11-18', 2003, 33184, 2592, NULL, '2.0000', '4.0000', '4.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 (34728, '2021-11-19', 7882, 33185, 2593, NULL, '1.0000', '4.2000', '4.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 (34729, '2021-11-19', 2379, 33186, 2593, NULL, '1.0000', '1.8000', '1.8000', '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 (34730, '2021-11-19', 2662, 33187, 2593, 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 (34731, '2021-11-19', 2315, 33188, 2593, NULL, '2.0000', '0.8556', '0.8556', '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 (34732, '2021-11-19', 2662, 33189, 2593, 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 (34733, '2021-11-19', 9556, 33190, 2593, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '90.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34734, '2021-11-19', 2066, 33191, 2593, 34656, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34735, '2021-11-19', 2169, 33192, 2593, NULL, '1.0000', '1.1500', '1.1500', '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 (34736, '2021-11-19', 7881, 33193, 2593, NULL, '1.0000', '32.7700', '32.7700', '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 (34737, '2021-11-19', 7736, 33194, 2593, NULL, '1.0000', '15.0000', '15.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 (34738, '2021-11-19', 2415, 33195, 2593, 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 (34739, '2021-11-19', 2237, 33196, 2593, NULL, '1.0000', '-64.5817', '-64.5817', '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 (34740, '2021-11-19', 2037, 33197, 2593, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '16.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 (34741, '2021-11-19', 2038, 33198, 2593, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '4.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 (34742, '2021-11-19', 2503, 33199, 2593, 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 (34743, '2021-11-19', 2010, 33200, 2593, 39982, '3.0000', '0.2369', '0.2369', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34744, '2021-11-19', 9469, 33201, 2593, NULL, '1.0000', '2.3000', '2.3000', '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 (34745, '2021-11-19', 1577, 33202, 2593, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34746, '2021-11-19', 1863, 33203, 2593, NULL, '1.0000', '1.3589', '1.3589', '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 (34747, '2021-11-19', 2917, 33204, 2593, 24194, '1.0000', '7.3500', '7.3500', '10.0000', '10.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 (34748, '2021-11-19', 2958, 33205, 2593, 40132, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34749, '2021-11-19', 1863, 33206, 2593, NULL, '1.0000', '1.3589', '1.3589', '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 (34750, '2021-11-19', 1602, 33207, 2593, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34751, '2021-11-19', 2651, 33208, 2593, 31100, '1.0000', '10.7500', '10.7500', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34752, '2021-11-19', 7359, 33209, 2593, NULL, '1.0000', '20.0000', '20.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 (34753, '2021-11-19', 2699, 33210, 2593, 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 (34754, '2021-11-19', 1519, 33211, 2593, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34755, '2021-11-19', 8638, 33212, 2593, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34756, '2021-11-19', 2221, 33213, 2593, 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 (34757, '2021-11-19', 2511, 33214, 2593, NULL, '2.0000', '8.8000', '8.8000', '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 (34758, '2021-11-19', 2283, 33215, 2593, 38564, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34759, '2021-11-19', 8065, 33216, 2593, NULL, '1.0000', '32.0000', '32.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 (34760, '2021-11-19', 1605, 33217, 2593, 18941, '1.0000', '24.8500', '24.8500', '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 (34761, '2021-11-19', 8746, 33218, 2593, NULL, '1.0000', '4.3169', '4.3169', '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 (34762, '2021-11-19', 1941, 33219, 2594, 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 (34763, '2021-11-19', 2163, 33220, 2594, 23162, '1.0000', '22.5600', '22.5600', '30.0000', '30.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 (34764, '2021-11-19', 2003, 33221, 2594, 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 (34765, '2021-11-19', 2673, 33222, 2595, 22283, '1.0000', '11.0000', '11.0000', '15.0000', '15.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 (34766, '2021-11-19', 2366, 33223, 2595, 3833, '-21.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 (34767, '2021-11-19', 2366, 33223, 2595, NULL, '23.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-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 (34768, '2021-11-19', 2732, 33224, 2595, 14084, '-1.0000', '29.8900', '29.8900', '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 (34769, '2021-11-19', 2732, 33224, 2595, NULL, '2.0000', '29.8900', '29.8900', '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 (34770, '2021-11-19', 1497, 33225, 2595, 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 (34771, '2021-11-19', 2460, 33226, 2595, 12921, '-3.0000', '32.7700', '32.7700', '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 (34772, '2021-11-19', 2460, 33226, 2595, NULL, '4.0000', '32.7700', '32.7700', '47.0000', '47.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 (34773, '2021-11-19', 2458, 33227, 2595, 18021, '-4.0000', '13.2000', '13.2000', '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 (34774, '2021-11-19', 2458, 33227, 2595, NULL, '5.0000', '13.2000', '13.2000', '20.0000', '20.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 (34775, '2021-11-19', 2108, 33228, 2595, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '20.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 (34776, '2021-11-19', 2259, 33229, 2595, 2795, '-1.0000', '19.9405', '19.9405', '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 (34777, '2021-11-19', 2259, 33229, 2595, NULL, '2.0000', '19.9405', '19.9405', '28.0000', '28.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 (34778, '2021-11-19', 2695, 33230, 2595, 12336, '-4.0000', '2.0000', '2.0000', '2.7000', '2.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 (34779, '2021-11-19', 2695, 33230, 2595, NULL, '7.0000', '2.0000', '2.0000', '2.7000', '2.7000', '-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 (34780, '2021-11-19', 2228, 33231, 2595, 1703, '-1.0000', '25.0000', '25.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 (34781, '2021-11-19', 2228, 33231, 2595, NULL, '2.0000', '25.0000', '25.0000', '28.0000', '28.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 (34782, '2021-11-19', 1533, 33232, 2595, 20611, '1.0000', '2.5917', '2.5917', '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 (34783, '2021-11-19', 2681, 33233, 2595, 12164, '-11.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 (34784, '2021-11-19', 2681, 33233, 2595, NULL, '12.0000', '12.5000', '12.5000', '16.5000', '16.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 (34785, '2021-11-19', 2109, 33234, 2595, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '111.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 (34786, '2021-11-19', 2092, 33235, 2595, NULL, '1.0000', '4.1500', '4.1500', '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 (34787, '2021-11-19', 2221, 33236, 2595, 4154, '-17.0000', '14.4737', '14.4737', '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 (34788, '2021-11-19', 2221, 33236, 2595, NULL, '18.0000', '14.4737', '14.4737', '25.0000', '25.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 (34789, '2021-11-19', 2416, 33237, 2595, 4745, '-14.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 (34790, '2021-11-19', 2416, 33237, 2595, NULL, '15.0000', '1.2000', '1.2000', '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 (34791, '2021-11-19', 1863, 33238, 2595, 10808, '-96.0000', '0.4136', '0.4136', '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 (34792, '2021-11-19', 1863, 33238, 2595, NULL, '97.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-97.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34793, '2021-11-19', 2135, 33239, 2595, 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 (34794, '2021-11-19', 1493, 33240, 2595, 9747, '-6.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 (34795, '2021-11-19', 1493, 33240, 2595, NULL, '7.0000', '1.5425', '1.5425', '3.0000', '3.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 (34796, '2021-11-19', 2759, 33241, 2595, 22012, '-1.0000', '3.9500', '3.9500', '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 (34797, '2021-11-19', 2759, 33241, 2595, NULL, '2.0000', '3.9500', '3.9500', '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 (34798, '2021-11-19', 1674, 33242, 2595, 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 (34799, '2021-11-19', 1545, 33243, 2595, 18821, '1.0000', '7.3500', '7.3500', '10.0000', '10.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 (34800, '2021-11-19', 2352, 33244, 2595, 3855, '-10.0000', '20.0000', '20.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 (34801, '2021-11-19', 2352, 33244, 2595, NULL, '30.0000', '20.0000', '20.0000', '3.5000', '3.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 (34802, '2021-11-19', 1800, 33245, 2596, 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 (34803, '2021-11-19', 3029, 33246, 2596, NULL, '1.0000', '4.7700', '4.7700', '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 (34804, '2021-11-19', 8677, 33247, 2596, NULL, '2.0000', '89.9250', '89.9250', '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 (34805, '2021-11-19', 8622, 33248, 2596, 41397, '3.0000', '1.4000', '1.4000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34806, '2021-11-19', 1841, 33249, 2596, 34025, '10.0000', '0.2601', '0.2601', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34807, '2021-11-19', 1840, 33250, 2596, 19856, '1.0000', '0.2400', '0.2400', '0.3000', '0.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 (34808, '2021-11-19', 1840, 33250, 2596, NULL, '9.0000', '0.2400', '0.2400', '0.3000', '0.3000', '-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 (34809, '2021-11-19', 7514, 33251, 2596, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34810, '2021-11-19', 1432, 33252, 2597, 38557, '1.0000', '9.5117', '9.5117', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34811, '2021-11-19', 1501, 33253, 2597, NULL, '1.0000', '2.2100', '2.2100', '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 (34812, '2021-11-19', 1431, 33254, 2598, NULL, '1.0000', '9.8000', '9.8000', '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 (34813, '2021-11-19', 1659, 33255, 2598, 19825, '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 (34814, '2021-11-19', 3033, 33256, 2598, 23983, '1.0000', '22.0000', '22.0000', '30.0000', '30.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 (34815, '2021-11-19', 3062, 33257, 2598, NULL, '1.0000', '6.0700', '6.0700', '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 (34816, '2021-11-19', 2289, 33258, 2598, 38551, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '22.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34817, '2021-11-19', 7333, 33259, 2598, NULL, '1.0000', '13.5000', '13.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 (34818, '2021-11-19', 7411, 33260, 2598, NULL, '2.0000', '1.3500', '1.3500', '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 (34819, '2021-11-19', 2283, 33261, 2598, 38564, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34820, '2021-11-19', 2754, 33262, 2598, 18938, '1.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (34821, '2021-11-19', 2169, 33263, 2598, NULL, '2.0000', '1.1500', '1.1500', '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 (34822, '2021-11-19', 1674, 33264, 2598, NULL, '1.0000', '3.2473', '3.2473', '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 (34823, '2021-11-19', 9603, 33265, 2598, 39992, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34824, '2021-11-19', 9608, 33266, 2598, 38934, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34825, '2021-11-19', 7715, 33267, 2598, NULL, '1.0000', '1.8900', '1.8900', '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 (34826, '2021-11-19', 1873, 33268, 2598, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34827, '2021-11-19', 2331, 33269, 2598, 24195, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '0.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 (34828, '2021-11-19', 7541, 33270, 2598, NULL, '1.0000', '3.3000', '3.3000', '5.7000', '5.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 (34829, '2021-11-19', 9402, 33271, 2598, NULL, '3.0000', '3.5000', '3.5000', '0.7000', '0.7000', '-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 (34830, '2021-11-19', 7673, 33272, 2598, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34831, '2021-11-19', 1805, 33273, 2599, NULL, '1.0000', '4.5132', '4.5132', '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 (34832, '2021-11-19', 1427, 33274, 2599, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34833, '2021-11-19', 1665, 33275, 2599, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34834, '2021-11-19', 2660, 33276, 2599, 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 (34835, '2021-11-19', 2384, 33277, 2599, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34836, '2021-11-19', 2293, 33278, 2600, NULL, '2.0000', '1.4400', '1.4400', '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 (34837, '2021-11-19', 7609, 33279, 2600, NULL, '1.0000', '4.3300', '4.3300', '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 (34838, '2021-11-19', 9649, 33280, 2600, NULL, '1.0000', '14.4100', '14.4100', '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 (34839, '2021-11-19', 7636, 33281, 2600, NULL, '6.0000', '11.8700', '11.8700', '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 (34840, '2021-11-19', 2774, 33282, 2600, 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 (34841, '2021-11-19', 2092, 33283, 2600, 34585, '1.0000', '4.1583', '4.1583', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34842, '2021-11-19', 2135, 33284, 2600, 18930, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (34843, '2021-11-19', 7674, 33285, 2601, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '134.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34844, '2021-11-19', 8756, 33286, 2601, NULL, '1.0000', '7.5051', '7.5051', '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 (34845, '2021-11-19', 7911, 33287, 2601, NULL, '1.0000', '4.3700', '4.3700', '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 (34846, '2021-11-19', 8308, 33288, 2601, NULL, '1.0000', '11.0000', '11.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 (34847, '2021-11-19', 7930, 33289, 2601, 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 (34848, '2021-11-19', 7867, 33290, 2601, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34849, '2021-11-19', 7674, 33291, 2601, 33721, '3.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '132.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34850, '2021-11-19', 7507, 33292, 2601, NULL, '3.0000', '6.5000', '6.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 (34851, '2021-11-19', 7482, 33293, 2601, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34852, '2021-11-19', 7853, 33294, 2601, NULL, '1.0000', '35.0000', '35.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 (34853, '2021-11-19', 7368, 33295, 2601, 41778, '1.0000', '-1.8789', '-1.8789', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34854, '2021-11-19', 2315, 33296, 2601, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34855, '2021-11-19', 9556, 33297, 2601, 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 (34856, '2021-11-19', 8918, 33298, 2601, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34857, '2021-11-19', 8858, 33299, 2601, NULL, '1.0000', '8.5000', '8.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 (34858, '2021-11-19', 2928, 33300, 2601, NULL, '2.0000', '42.3000', '42.3000', '100.0000', '100.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 (34859, '2021-11-19', 2018, 33301, 2601, NULL, '1.0000', '18.0000', '18.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 (34860, '2021-11-19', 9286, 33302, 2601, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34861, '2021-11-19', 7816, 33303, 2601, NULL, '1.0000', '10.8300', '10.8300', '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 (34862, '2021-11-19', 7611, 33304, 2601, 33529, '1.0000', '5.0485', '5.0485', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34863, '2021-11-19', 8813, 33305, 2601, NULL, '1.0000', '17.6000', '17.6000', '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 (34864, '2021-11-19', 9469, 33306, 2601, 39422, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34865, '2021-11-19', 9092, 33307, 2601, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '231.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34866, '2021-11-19', 7482, 33308, 2601, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34867, '2021-11-19', 1840, 33309, 2601, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '161.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34868, '2021-11-19', 8308, 33310, 2601, NULL, '1.0000', '11.0000', '11.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 (34869, '2021-11-19', 7606, 33311, 2601, 41792, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34870, '2021-11-19', 7684, 33312, 2601, NULL, '1.0000', '9.0000', '9.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 (34871, '2021-11-19', 2315, 33313, 2601, 38451, '3.0000', '0.4740', '0.4740', '0.6000', '0.6000', '45.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34872, '2021-11-19', 9445, 33314, 2601, 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 (34873, '2021-11-19', 9410, 33315, 2601, NULL, '1.0000', '20.0000', '20.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 (34874, '2021-11-19', 7352, 33316, 2601, 41791, '10.0000', '-0.8587', '-0.8587', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34875, '2021-11-19', 8504, 33317, 2601, NULL, '2.0000', '2.5000', '2.5000', '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 (34876, '2021-11-19', 1855, 33318, 2601, 39607, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34877, '2021-11-19', 7482, 33319, 2601, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34878, '2021-11-19', 7704, 33320, 2601, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34879, '2021-11-19', 8657, 33321, 2601, NULL, '1.0000', '6.3869', '6.3869', '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 (34880, '2021-11-19', 7856, 33322, 2601, NULL, '1.0000', '6.4000', '6.4000', '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 (34881, '2021-11-19', 8763, 33323, 2601, 32138, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34882, '2021-11-19', 2104, 33324, 2601, NULL, '4.0000', '0.2000', '0.2000', '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 (34883, '2021-11-19', 8269, 33325, 2601, NULL, '1.0000', '10.0000', '10.0000', '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 (34884, '2021-11-19', 7666, 33326, 2601, NULL, '1.0000', '0.4000', '0.4000', '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 (34885, '2021-11-19', 7518, 33327, 2601, NULL, '1.0000', '-67.2578', '-67.2578', '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 (34886, '2021-11-19', 7609, 33328, 2601, NULL, '1.0000', '4.3300', '4.3300', '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 (34887, '2021-11-19', 7779, 33329, 2601, NULL, '1.0000', '8.3800', '8.3800', '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 (34888, '2021-11-19', 7930, 33330, 2601, 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 (34889, '2021-11-19', 9095, 33331, 2601, NULL, '1.0000', '17.5000', '17.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 (34890, '2021-11-19', 7444, 33332, 2601, 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 (34891, '2021-11-19', 9160, 33333, 2601, NULL, '1.0000', '41.6640', '41.6640', '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 (34892, '2021-11-19', 7750, 33334, 2601, NULL, '1.0000', '34.9000', '34.9000', '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 (34893, '2021-11-19', 1483, 33335, 2601, NULL, '1.0000', '90.0000', '90.0000', '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 (34894, '2021-11-19', 7385, 33336, 2601, 41759, '2.0000', '35259.1808', '35259.1808', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34895, '2021-11-19', 9465, 33337, 2601, 39439, '1.0000', '8.5000', '8.5000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34896, '2021-11-19', 2104, 33338, 2601, NULL, '2.0000', '0.2000', '0.2000', '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 (34897, '2021-11-19', 7952, 33339, 2601, NULL, '1.0000', '10.4000', '10.4000', '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 (34898, '2021-11-19', 2699, 33340, 2601, 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 (34899, '2021-11-19', 7637, 33341, 2601, 41787, '1.0000', '7.4854', '7.4854', '9.6800', '9.6800', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34900, '2021-11-19', 7782, 33342, 2601, NULL, '1.0000', '5.0000', '5.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 (34901, '2021-11-19', 2317, 33343, 2601, 40395, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '33.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34902, '2021-11-19', 7709, 33344, 2601, NULL, '1.0000', '35.8000', '35.8000', '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 (34903, '2021-11-19', 7639, 33345, 2601, 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 (34904, '2021-11-19', 9145, 33346, 2601, NULL, '1.0000', '9.0000', '9.0000', '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 (34905, '2021-11-19', 7674, 33347, 2601, 33721, '4.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '131.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34906, '2021-11-19', 7411, 33348, 2601, NULL, '1.0000', '1.3500', '1.3500', '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 (34907, '2021-11-19', 9394, 33349, 2601, NULL, '2.0000', '5.5000', '5.5000', '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 (34908, '2021-11-19', 2763, 33350, 2601, 40409, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34909, '2021-11-19', 8312, 33351, 2601, NULL, '1.0000', '10.2000', '10.2000', '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 (34910, '2021-11-19', 2297, 33352, 2601, NULL, '1.0000', '7.2000', '7.2000', '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 (34911, '2021-11-19', 7459, 33353, 2601, NULL, '21.0000', '40.3500', '40.3500', '3.5000', '3.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34912, '2021-11-19', 8324, 33354, 2601, NULL, '1.0000', '3.4130', '3.4130', '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 (34913, '2021-11-19', 7689, 33355, 2601, NULL, '1.0000', '12.0700', '12.0700', '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 (34914, '2021-11-19', 2442, 33356, 2601, 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 (34915, '2021-11-19', 2315, 33357, 2601, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34916, '2021-11-19', 7709, 33358, 2601, NULL, '1.0000', '35.8000', '35.8000', '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 (34917, '2021-11-19', 7673, 33359, 2601, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34918, '2021-11-19', 7518, 33360, 2601, NULL, '1.0000', '-67.2578', '-67.2578', '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 (34919, '2021-11-19', 8328, 33361, 2601, NULL, '1.0000', '8.0882', '8.0882', '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 (34920, '2021-11-19', 7713, 33362, 2601, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34921, '2021-11-19', 9271, 33363, 2601, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34922, '2021-11-19', 7457, 33364, 2601, 41784, '2.0000', '3.0710', '3.0710', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34923, '2021-11-19', 7524, 33365, 2601, NULL, '2.0000', '14.3519', '14.3519', '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 (34924, '2021-11-19', 8194, 33366, 2601, NULL, '1.0000', '31.8200', '31.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 (34925, '2021-11-19', 8702, 33367, 2601, NULL, '1.0000', '3.6700', '3.6700', '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 (34926, '2021-11-19', 7892, 33368, 2601, NULL, '1.0000', '4.2000', '4.2000', '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 (34927, '2021-11-19', 7671, 33369, 2601, NULL, '1.0000', '15.5000', '15.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 (34928, '2021-11-19', 7611, 33370, 2601, 33529, '1.0000', '5.0485', '5.0485', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34929, '2021-11-19', 7708, 33371, 2601, NULL, '1.0000', '6.1400', '6.1400', '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 (34930, '2021-11-19', 7929, 33372, 2601, 39598, '1.0000', '5.9888', '5.9888', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34931, '2021-11-19', 2699, 33373, 2601, 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 (34932, '2021-11-19', 8765, 33374, 2601, 39427, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34933, '2021-11-19', 7877, 33375, 2601, NULL, '1.0000', '1.3600', '1.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 (34934, '2021-11-19', 1805, 33376, 2601, NULL, '1.0000', '4.5500', '4.5500', '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 (34935, '2021-11-19', 7704, 33377, 2601, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34936, '2021-11-19', 7929, 33378, 2601, 39598, '1.0000', '5.9888', '5.9888', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34937, '2021-11-19', 9095, 33379, 2602, NULL, '1.0000', '17.5000', '17.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 (34938, '2021-11-19', 7519, 33380, 2602, NULL, '1.0000', '14.5200', '14.5200', '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 (34939, '2021-11-19', 8084, 33381, 2602, NULL, '1.0000', '11.7200', '11.7200', '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 (34940, '2021-11-19', 8608, 33382, 2602, NULL, '1.0000', '5.7400', '5.7400', '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 (34941, '2021-11-19', 7714, 33383, 2602, 37846, '4.0000', '0.4200', '0.4200', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34942, '2021-11-19', 7666, 33384, 2602, NULL, '1.0000', '0.4000', '0.4000', '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 (34943, '2021-11-19', 7674, 33385, 2602, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '126.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34944, '2021-11-19', 7444, 33386, 2602, 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 (34945, '2021-11-19', 7482, 33387, 2602, 36029, '1.0000', '2.4981', '2.4981', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34946, '2021-11-19', 2522, 33388, 2603, 39213, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34947, '2021-11-19', 3058, 33389, 2603, 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 (34948, '2021-11-19', 8984, 33390, 2603, NULL, '1.0000', '-100.8495', '-100.8495', '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 (34949, '2021-11-19', 2982, 33391, 2603, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '16.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 (34950, '2021-11-19', 2280, 33392, 2603, NULL, '1.0000', '-177.9360', '-177.9360', '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 (34951, '2021-11-19', 2283, 33393, 2603, 38564, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34952, '2021-11-19', 9539, 33394, 2603, 40116, '1.0000', '26.0000', '26.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34953, '2021-11-19', 7707, 33395, 2603, NULL, '1.0000', '7.0000', '7.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 (34954, '2021-11-19', 2546, 33396, 2603, NULL, '1.0000', '14.0100', '14.0100', '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 (34955, '2021-11-20', 8067, 33397, 2604, NULL, '1.0000', '29.1700', '29.1700', '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 (34956, '2021-11-20', 2506, 33398, 2604, 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 (34957, '2021-11-20', 8594, 33399, 2604, 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 (34958, '2021-11-20', 2079, 33400, 2604, 39400, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34959, '2021-11-20', 8063, 33401, 2604, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34960, '2021-11-20', 7672, 33402, 2604, NULL, '3.0000', '1.0200', '1.0200', '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 (34961, '2021-11-20', 7674, 33403, 2604, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '125.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34962, '2021-11-20', 8063, 33404, 2604, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34963, '2021-11-20', 9089, 33405, 2604, 40445, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34964, '2021-11-20', 7514, 33406, 2604, NULL, '1.0000', '12.9983', '12.9983', '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 (34965, '2021-11-20', 8735, 33407, 2604, NULL, '1.0000', '5.6000', '5.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 (34966, '2021-11-20', 9191, 33408, 2604, NULL, '2.0000', '6.6700', '6.6700', '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 (34967, '2021-11-20', 7810, 33409, 2604, NULL, '1.0000', '13.5000', '13.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 (34968, '2021-11-20', 8915, 33410, 2604, NULL, '1.0000', '29.3500', '29.3500', '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 (34969, '2021-11-20', 9092, 33411, 2604, 40421, '5.0000', '0.3051', '0.3051', '0.5000', '0.5000', '226.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34970, '2021-11-20', 8608, 33412, 2604, NULL, '1.0000', '5.7400', '5.7400', '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 (34971, '2021-11-20', 2491, 33413, 2605, 6228, '-14.0000', '12.2000', '12.2000', '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 (34972, '2021-11-20', 2491, 33413, 2605, NULL, '15.0000', '12.2000', '12.2000', '17.0000', '17.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 (34973, '2021-11-20', 2302, 33414, 2606, 41373, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34974, '2021-11-20', 1580, 33415, 2606, 19875, '2.0000', '0.9900', '0.9900', '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 (34975, '2021-11-20', 9482, 33416, 2606, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34976, '2021-11-20', 1346, 33417, 2606, 39869, '6.0000', '-6.6466', '-6.6466', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34977, '2021-11-20', 1867, 33418, 2606, 33361, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34978, '2021-11-20', 2105, 33419, 2606, 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 (34979, '2021-11-20', 2270, 33420, 2606, 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 (34980, '2021-11-20', 1946, 33421, 2606, NULL, '1.0000', '1.5500', '1.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 (34981, '2021-11-20', 7342, 33422, 2606, NULL, '1.0000', '15.6000', '15.6000', '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 (34982, '2021-11-20', 1804, 33423, 2606, 34646, '1.0000', '3.8408', '3.8408', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34983, '2021-11-20', 2169, 33424, 2606, NULL, '1.0000', '1.1500', '1.1500', '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 (34984, '2021-11-20', 2315, 33425, 2606, NULL, '3.0000', '0.8556', '0.8556', '0.6000', '0.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 (34985, '2021-11-20', 2825, 33426, 2606, NULL, '1.0000', '12.0000', '12.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 (34986, '2021-11-20', 1387, 33427, 2606, 23677, '1.0000', '11.7000', '11.7000', '16.0000', '16.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 (34987, '2021-11-20', 2237, 33428, 2606, NULL, '1.0000', '-64.5817', '-64.5817', '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 (34988, '2021-11-20', 1307, 33429, 2606, 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 (34989, '2021-11-20', 2643, 33430, 2606, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34990, '2021-11-20', 1501, 33431, 2606, NULL, '1.0000', '2.2100', '2.2100', '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 (34991, '2021-11-20', 2604, 33432, 2606, 34974, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34992, '2021-11-20', 2280, 33433, 2606, NULL, '1.0000', '-177.9360', '-177.9360', '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 (34993, '2021-11-20', 2965, 33434, 2606, NULL, '1.0000', '5.0000', '5.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 (34994, '2021-11-20', 8746, 33435, 2606, NULL, '1.0000', '4.3169', '4.3169', '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 (34995, '2021-11-20', 1871, 33436, 2606, NULL, '1.0000', '2.9308', '2.9308', '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 (34996, '2021-11-20', 8608, 33437, 2606, NULL, '1.0000', '0.9000', '0.9000', '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 (34997, '2021-11-20', 1533, 33438, 2606, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34998, '2021-11-20', 1665, 33439, 2606, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34999, '2021-11-20', 2260, 33440, 2606, 37790, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35000, '2021-11-20', 1629, 33441, 2606, 29650, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35001, '2021-11-20', 1371, 33442, 2606, 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 (35002, '2021-11-20', 8119, 33443, 2606, 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 (35003, '2021-11-20', 3049, 33444, 2606, NULL, '1.0000', '10.9000', '10.9000', '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 (35004, '2021-11-20', 2522, 33445, 2607, 39213, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35005, '2021-11-20', 2574, 33446, 2607, 19819, '2.0000', '0.7800', '0.7800', '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 (35006, '2021-11-20', 2020, 33447, 2607, NULL, '1.0000', '7.8240', '7.8240', '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 (35007, '2021-11-20', 1937, 33448, 2608, 5588, '-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 (35008, '2021-11-20', 1937, 33448, 2608, 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 (35009, '2021-11-20', 9584, 33449, 2608, 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 (35010, '2021-11-20', 1666, 33450, 2608, 3236, '-11.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 (35011, '2021-11-20', 1666, 33450, 2608, NULL, '12.0000', '2.7100', '2.7100', '3.5000', '3.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 (35012, '2021-11-20', 1935, 33451, 2608, 5586, '-34.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 (35013, '2021-11-20', 1935, 33451, 2608, NULL, '37.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35014, '2021-11-20', 2673, 33452, 2608, 22283, '1.0000', '11.0000', '11.0000', '15.0000', '15.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 (35015, '2021-11-20', 2067, 33453, 2608, NULL, '2.0000', '4.0000', '4.0000', '6.4700', '6.4700', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35016, '2021-11-20', 1612, 33454, 2608, 18862, '2.0000', '1.6000', '1.6000', '3.0000', '3.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 (35017, '2021-11-20', 1612, 33454, 2608, 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 (35018, '2021-11-20', 1888, 33455, 2608, 683, '1.0000', '134.8400', '134.8400', '21.0000', '21.0000', '0.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 (35019, '2021-11-20', 2643, 33456, 2608, 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 (35020, '2021-11-20', 1665, 33457, 2608, 3235, '-33.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 (35021, '2021-11-20', 1665, 33457, 2608, NULL, '34.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (35022, '2021-11-20', 2169, 33458, 2608, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '19.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 (35023, '2021-11-20', 2020, 33459, 2608, 10164, '-4.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 (35024, '2021-11-20', 2020, 33459, 2608, NULL, '5.0000', '7.5000', '7.5000', '10.0000', '10.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 (35025, '2021-11-20', 1602, 33460, 2608, 5897, '-47.0000', '6.7859', '6.7859', '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 (35026, '2021-11-20', 1602, 33460, 2608, NULL, '48.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35027, '2021-11-20', 9214, 33461, 2608, NULL, '1.0000', '9.6000', '9.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 (35028, '2021-11-20', 9213, 33462, 2608, NULL, '2.0000', '5.4000', '5.4000', '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 (35029, '2021-11-20', 1831, 33463, 2608, NULL, '1.0000', '8.4400', '8.4400', '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 (35030, '2021-11-20', 2665, 33464, 2608, 11663, '-3.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 (35031, '2021-11-20', 2665, 33464, 2608, NULL, '4.0000', '23.7600', '23.7600', '32.0000', '32.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 (35032, '2021-11-20', 1585, 33465, 2608, 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 (35033, '2021-11-20', 2020, 33466, 2608, 10164, '-4.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 (35034, '2021-11-20', 2020, 33466, 2608, NULL, '5.0000', '7.5000', '7.5000', '10.0000', '10.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 (35035, '2021-11-20', 2327, 33467, 2608, 5083, '-21.0000', '4.5000', '4.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 (35036, '2021-11-20', 2327, 33467, 2608, NULL, '22.0000', '4.5000', '4.5000', '5.0000', '5.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35037, '2021-11-20', 1759, 33468, 2608, 6746, '-3.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 (35038, '2021-11-20', 1759, 33468, 2608, NULL, '4.0000', '11.5000', '11.5000', '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 (35039, '2021-11-20', 1780, 33469, 2609, NULL, '1.0000', '18.7146', '18.7146', '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 (35040, '2021-11-20', 1311, 33470, 2609, 5437, '-1.0000', '79.3908', '79.3908', '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 (35041, '2021-11-20', 1311, 33470, 2609, NULL, '3.0000', '79.3908', '79.3908', '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 (35042, '2021-11-20', 2296, 33471, 2609, 2955, '-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 (35043, '2021-11-20', 2296, 33471, 2609, NULL, '2.0000', '13.2900', '13.2900', '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 (35044, '2021-11-20', 1519, 33472, 2609, 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 (35045, '2021-11-20', 2656, 33473, 2609, 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 (35046, '2021-11-20', 2437, 33474, 2609, 5306, '-3.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 (35047, '2021-11-20', 2437, 33474, 2609, NULL, '4.0000', '80.0000', '80.0000', '100.0000', '100.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 (35048, '2021-11-20', 1420, 33475, 2609, 22318, '2.0000', '1.2000', '1.2000', '2.0000', '2.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 (35049, '2021-11-20', 1420, 33475, 2609, 20658, '3.0000', '1.2000', '1.2000', '2.0000', '2.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 (35050, '2021-11-20', 2004, 33476, 2610, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35051, '2021-11-20', 7743, 33477, 2610, NULL, '4.0000', '7.3900', '7.3900', '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 (35052, '2021-11-20', 1760, 33478, 2610, NULL, '1.0000', '1.5900', '1.5900', '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 (35053, '2021-11-20', 8984, 33479, 2610, NULL, '1.0000', '-100.8495', '-100.8495', '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 (35054, '2021-11-20', 8608, 33480, 2610, NULL, '1.0000', '0.9000', '0.9000', '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 (35055, '2021-11-20', 9603, 33481, 2610, 39992, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35056, '2021-11-20', 1577, 33482, 2610, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35057, '2021-11-20', 7411, 33483, 2610, NULL, '1.0000', '1.3500', '1.3500', '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 (35058, '2021-11-20', 8638, 33484, 2610, 37757, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35059, '2021-11-20', 7514, 33485, 2610, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35060, '2021-11-20', 2280, 33486, 2610, NULL, '1.0000', '-177.9360', '-177.9360', '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 (35061, '2021-11-20', 1812, 33487, 2610, 41372, '1.0000', '7.9194', '7.9194', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35062, '2021-11-20', 7411, 33488, 2610, NULL, '1.0000', '1.3500', '1.3500', '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 (35063, '2021-11-20', 7333, 33489, 2610, NULL, '2.0000', '13.5000', '13.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 (35064, '2021-11-20', 1612, 33490, 2610, 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 (35065, '2021-11-20', 1822, 33491, 2610, NULL, '1.0000', '2.8625', '2.8625', '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 (35066, '2021-11-20', 9556, 33492, 2611, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35067, '2021-11-20', 7411, 33493, 2611, NULL, '1.0000', '1.3500', '1.3500', '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 (35068, '2021-11-20', 1381, 33494, 2611, 41381, '1.0000', '-2376.8068', '-2376.8068', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35069, '2021-11-20', 1519, 33495, 2611, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35070, '2021-11-20', 2315, 33496, 2611, NULL, '1.0000', '0.8556', '0.8556', '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 (35071, '2021-11-20', 2088, 33497, 2611, 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 (35072, '2021-11-20', 1529, 33498, 2611, NULL, '1.0000', '4.0029', '4.0029', '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 (35073, '2021-11-20', 7482, 33499, 2611, 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 (35074, '2021-11-20', 2242, 33500, 2611, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35075, '2021-11-20', 8677, 33501, 2611, NULL, '2.0000', '89.9250', '89.9250', '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 (35076, '2021-11-20', 1871, 33502, 2611, NULL, '2.0000', '2.9308', '2.9308', '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 (35077, '2021-11-20', 8889, 33503, 2612, 40424, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '5.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35078, '2021-11-20', 1839, 33504, 2612, 41752, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35079, '2021-11-20', 2506, 33505, 2612, 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 (35080, '2021-11-20', 7820, 33506, 2612, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35081, '2021-11-20', 7507, 33507, 2612, NULL, '1.0000', '6.5000', '6.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 (35082, '2021-11-20', 7412, 33508, 2612, NULL, '1.0000', '1.5200', '1.5200', '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 (35083, '2021-11-20', 7514, 33509, 2612, NULL, '3.0000', '12.9983', '12.9983', '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 (35084, '2021-11-20', 7743, 33510, 2612, NULL, '2.0000', '116849.3612', '116849.3612', '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 (35085, '2021-11-20', 7401, 33511, 2612, NULL, '1.0000', '55.7244', '55.7244', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35086, '2021-11-20', 8927, 33512, 2612, NULL, '6.0000', '36.0000', '36.0000', '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 (35087, '2021-11-20', 7709, 33513, 2612, NULL, '2.0000', '35.8000', '35.8000', '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 (35088, '2021-11-20', 8277, 33514, 2612, NULL, '1.0000', '5.0000', '5.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 (35089, '2021-11-20', 7514, 33515, 2612, NULL, '2.0000', '12.9983', '12.9983', '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 (35090, '2021-11-20', 7473, 33516, 2612, NULL, '4.0000', '15.4731', '15.4731', '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 (35091, '2021-11-20', 7675, 33517, 2612, NULL, '3.0000', '11.4300', '11.4300', '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 (35092, '2021-11-20', 8616, 33518, 2612, 36673, '2.0000', '-23.9580', '-23.9580', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35093, '2021-11-20', 1672, 33519, 2612, 32908, '10.0000', '2.9200', '2.9200', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35094, '2021-11-20', 7638, 33520, 2612, 30222, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35095, '2021-11-20', 9154, 33521, 2612, 37372, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35096, '2021-11-20', 1542, 33522, 2612, 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 (35097, '2021-11-20', 7967, 33523, 2612, 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 (35098, '2021-11-20', 8744, 33524, 2612, 39418, '1.0000', '3.5640', '3.5640', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35099, '2021-11-20', 8746, 33525, 2612, 39419, '3.0000', '3.5400', '3.5400', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35100, '2021-11-20', 8002, 33526, 2612, NULL, '1.0000', '33.0000', '33.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35101, '2021-11-20', 8044, 33527, 2612, NULL, '1.0000', '1.5000', '1.5000', '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 (35102, '2021-11-20', 2363, 33528, 2612, 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 (35103, '2021-11-20', 8608, 33529, 2612, NULL, '2.0000', '5.7400', '5.7400', '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 (35104, '2021-11-20', 7703, 33530, 2612, NULL, '2.0000', '22.9900', '22.9900', '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 (35105, '2021-11-20', 7473, 33531, 2612, NULL, '5.0000', '15.4731', '15.4731', '0.6000', '0.6000', '-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 (35106, '2021-11-20', 8595, 33532, 2612, NULL, '1.0000', '4.2100', '4.2100', '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 (35107, '2021-11-20', 7385, 33533, 2612, 41759, '14.0000', '35259.1808', '35259.1808', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35108, '2021-11-20', 7385, 33533, 2612, 41799, '16.0000', '35259.1808', '35259.1808', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35109, '2021-11-20', 7671, 33534, 2612, NULL, '1.0000', '15.5000', '15.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 (35110, '2021-11-20', 8539, 33535, 2612, 31000, '1.0000', '4.4300', '4.4300', '0.8000', '0.8000', '36.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35111, '2021-11-20', 2315, 33536, 2612, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35112, '2021-11-20', 8194, 33537, 2613, NULL, '1.0000', '31.8200', '31.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 (35113, '2021-11-20', 3029, 33538, 2613, NULL, '1.0000', '4.7700', '4.7700', '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 (35114, '2021-11-20', 1880, 33539, 2613, 37787, '1.0000', '4.7372', '4.7372', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35115, '2021-11-20', 2410, 33540, 2613, 38543, '1.0000', '4.3920', '4.3920', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35116, '2021-11-20', 7715, 33541, 2613, NULL, '1.0000', '1.8900', '1.8900', '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 (35117, '2021-11-20', 8417, 33542, 2613, NULL, '1.0000', '5.8000', '5.8000', '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 (35118, '2021-11-20', 7411, 33543, 2613, NULL, '1.0000', '1.3500', '1.3500', '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 (35119, '2021-11-20', 1612, 33544, 2613, 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 (35120, '2021-11-20', 7576, 33545, 2613, 37777, '1.0000', '6.9100', '6.9100', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35121, '2021-11-20', 8746, 33546, 2613, NULL, '2.0000', '4.3169', '4.3169', '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 (35122, '2021-11-20', 8763, 33547, 2613, NULL, '1.0000', '5.4000', '5.4000', '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 (35123, '2021-11-20', 1755, 33548, 2613, 19326, '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 (35124, '2021-11-20', 7473, 33549, 2613, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '114.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35125, '2021-11-20', 8982, 33550, 2613, 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 (35126, '2021-11-20', 1612, 33551, 2613, 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 (35127, '2021-11-20', 2320, 33552, 2613, 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 (35128, '2021-11-20', 2730, 33553, 2613, 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 (35129, '2021-11-20', 1935, 33554, 2613, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35130, '2021-11-20', 2068, 33555, 2613, 38541, '1.0000', '12.7670', '12.7670', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35131, '2021-11-20', 7514, 33556, 2613, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35132, '2021-11-20', 2283, 33557, 2613, 38564, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35133, '2021-11-20', 2662, 33558, 2614, 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 (35134, '2021-11-20', 2315, 33559, 2614, NULL, '2.0000', '0.8556', '0.8556', '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 (35135, '2021-11-20', 2068, 33560, 2614, 38541, '1.0000', '12.7670', '12.7670', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35136, '2021-11-20', 1612, 33561, 2614, 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 (35137, '2021-11-20', 1529, 33562, 2614, NULL, '1.0000', '4.0029', '4.0029', '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 (35138, '2021-11-20', 2280, 33563, 2614, NULL, '1.0000', '-177.9360', '-177.9360', '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 (35139, '2021-11-20', 9556, 33564, 2614, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35140, '2021-11-20', 1314, 33565, 2615, 39907, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35141, '2021-11-20', 2022, 33566, 2615, 39780, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35142, '2021-11-20', 1667, 33567, 2615, 38942, '1.0000', '18.8988', '18.8988', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35143, '2021-11-20', 2135, 33568, 2615, 18930, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (35144, '2021-11-20', 2038, 33569, 2615, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '3.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 (35145, '2021-11-20', 2169, 33570, 2615, NULL, '1.0000', '1.1500', '1.1500', '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 (35146, '2021-11-20', 1602, 33571, 2616, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '32.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35147, '2021-11-20', 1935, 33572, 2616, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35148, '2021-11-20', 1371, 33573, 2616, 41582, '1.0000', '1773.8249', '1773.8249', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35149, '2021-11-20', 7741, 33574, 2616, NULL, '1.0000', '1.2000', '1.2000', '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 (35150, '2021-11-20', 1912, 33575, 2616, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35151, '2021-11-20', 2763, 33576, 2616, 15805, '1.0000', '7.5000', '7.5000', '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 (35152, '2021-11-20', 8517, 33577, 2616, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35153, '2021-11-20', 1912, 33578, 2616, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35154, '2021-11-20', 2544, 33579, 2616, 29844, '1.0000', '6.8800', '6.8800', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35155, '2021-11-20', 1401, 33580, 2616, 31691, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35156, '2021-11-20', 2342, 33581, 2616, 38074, '10.0000', '1.8625', '1.8625', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35157, '2021-11-20', 1966, 33582, 2616, 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 (35158, '2021-11-20', 9084, 33583, 2616, 40354, '1.0000', '8.8832', '8.8832', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35159, '2021-11-20', 2444, 33584, 2616, 5829, '1.0000', '6.0000', '6.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 (35160, '2021-11-20', 1783, 33585, 2616, 40861, '3.0000', '-85.3042', '-85.3042', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35161, '2021-11-20', 1641, 33586, 2616, 34686, '4.0000', '76.5908', '76.5908', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35162, '2021-11-20', 2039, 33587, 2616, 18356, '1.0000', '9.0000', '9.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 (35163, '2021-11-20', 1863, 33588, 2616, 40894, '1.0000', '1.1698', '1.1698', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35164, '2021-11-20', 2302, 33589, 2616, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35165, '2021-11-20', 1499, 33590, 2616, 31996, '1.0000', '0.4100', '0.4100', '0.7400', '0.7400', '31.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35166, '2021-11-20', 1584, 33591, 2616, 35942, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35167, '2021-11-20', 1412, 33592, 2616, 18446, '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 (35168, '2021-11-20', 1991, 33593, 2616, 11192, '1.0000', '5.0000', '5.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 (35169, '2021-11-20', 8634, 33594, 2616, NULL, '1.0000', '14.0000', '14.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 (35170, '2021-11-20', 7711, 33595, 2617, NULL, '3.0000', '-78.4806', '-78.4806', '49.0000', '49.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 (35171, '2021-11-20', 2350, 33596, 2617, NULL, '1.0000', '10.3800', '10.3800', '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 (35172, '2021-11-20', 2351, 33597, 2617, 30211, '1.0000', '17.7000', '17.7000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35173, '2021-11-20', 2655, 33598, 2617, 39406, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35174, '2021-11-20', 2699, 33599, 2617, 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 (35175, '2021-11-20', 8166, 33600, 2617, NULL, '1.0000', '4.6000', '4.6000', '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 (35176, '2021-11-20', 8918, 33601, 2617, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35177, '2021-11-20', 7674, 33602, 2617, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '124.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35178, '2021-11-20', 7518, 33603, 2617, NULL, '2.0000', '-67.2578', '-67.2578', '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 (35179, '2021-11-20', 8000, 33604, 2617, NULL, '1.0000', '74.7436', '74.7436', '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 (35180, '2021-11-20', 8497, 33605, 2617, NULL, '2.0000', '337.1200', '337.1200', '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 (35181, '2021-11-20', 7671, 33606, 2617, NULL, '1.0000', '15.5000', '15.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 (35182, '2021-11-20', 7432, 33607, 2617, 30048, '1.0000', '3.2300', '3.2300', '20.0000', '20.0000', '53.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35183, '2021-11-20', 7671, 33608, 2617, NULL, '4.0000', '15.5000', '15.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 (35184, '2021-11-20', 8944, 33609, 2617, 30168, '1.0000', '38.1200', '38.1200', '51.0000', '51.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35185, '2021-11-20', 2102, 33610, 2617, 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 (35186, '2021-11-20', 7457, 33611, 2617, 41929, '1.0000', '3.0278', '3.0278', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35187, '2021-11-20', 7862, 33612, 2617, NULL, '1.0000', '17.8000', '17.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 (35188, '2021-11-20', 7731, 33613, 2617, NULL, '1.0000', '0.0000', '0.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 (35189, '2021-11-20', 2289, 33614, 2617, 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 (35190, '2021-11-20', 8756, 33615, 2617, NULL, '1.0000', '7.5051', '7.5051', '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 (35191, '2021-11-20', 7472, 33616, 2617, NULL, '1.0000', '4.1000', '4.1000', '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 (35192, '2021-11-20', 9652, 33617, 2617, 41957, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35193, '2021-11-20', 7709, 33618, 2617, NULL, '1.0000', '35.8000', '35.8000', '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 (35194, '2021-11-20', 9092, 33619, 2617, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '222.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35195, '2021-11-20', 9456, 33620, 2617, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35196, '2021-11-20', 7672, 33621, 2617, NULL, '1.0000', '1.0200', '1.0200', '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 (35197, '2021-11-20', 7666, 33622, 2617, NULL, '1.0000', '0.4000', '0.4000', '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 (35198, '2021-11-20', 7671, 33623, 2617, NULL, '1.0000', '15.5000', '15.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 (35199, '2021-11-20', 7411, 33624, 2617, NULL, '1.0000', '1.3500', '1.3500', '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 (35200, '2021-11-20', 7783, 33625, 2617, NULL, '4.0000', '3.6500', '3.6500', '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 (35201, '2021-11-20', 7714, 33626, 2617, 37846, '1.0000', '0.4200', '0.4200', '0.6000', '0.6000', '41.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35202, '2021-11-20', 7671, 33627, 2617, NULL, '1.0000', '15.5000', '15.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 (35203, '2021-11-20', 9191, 33628, 2617, NULL, '1.0000', '6.6700', '6.6700', '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 (35204, '2021-11-20', 7671, 33629, 2617, NULL, '1.0000', '15.5000', '15.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 (35205, '2021-11-20', 1339, 33630, 2617, NULL, '1.0000', '4.1934', '4.1934', '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 (35206, '2021-11-20', 9337, 33631, 2617, NULL, '1.0000', '6.8067', '6.8067', '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 (35207, '2021-11-20', 7651, 33632, 2617, NULL, '1.0000', '5.0000', '5.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 (35208, '2021-11-20', 9410, 33633, 2618, NULL, '1.0000', '20.0000', '20.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 (35209, '2021-11-20', 7906, 33634, 2618, 33752, '1.0000', '7.8800', '7.8800', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35210, '2021-11-20', 9412, 33635, 2618, NULL, '1.0000', '25.0000', '25.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 (35211, '2021-11-20', 2503, 33636, 2618, 36674, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35212, '2021-11-20', 1529, 33637, 2619, NULL, '1.0000', '4.0029', '4.0029', '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 (35213, '2021-11-20', 2169, 33638, 2619, NULL, '1.0000', '1.1500', '1.1500', '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 (35214, '2021-11-20', 2315, 33639, 2619, NULL, '2.0000', '0.8556', '0.8556', '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 (35215, '2021-11-20', 2283, 33640, 2619, 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 (35216, '2021-11-20', 7790, 33641, 2619, NULL, '4.0000', '17.0000', '17.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 (35217, '2021-11-20', 2506, 33642, 2619, 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 (35218, '2021-11-20', 2228, 33643, 2619, 39987, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35219, '2021-11-20', 2655, 33644, 2620, 31905, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35220, '2021-11-20', 2699, 33645, 2620, 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 (35221, '2021-11-20', 7782, 33646, 2620, NULL, '1.0000', '5.0000', '5.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 (35222, '2021-11-20', 8350, 33647, 2620, NULL, '1.0000', '12.0000', '12.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 (35223, '2021-11-20', 2992, 33648, 2621, 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 (35224, '2021-11-20', 1382, 33649, 2621, 3425, '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 (35225, '2021-11-20', 2059, 33650, 2621, 40371, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35226, '2021-11-20', 1807, 33651, 2622, NULL, '5.0000', '1.8000', '1.8000', '2.5000', '2.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 (35227, '2021-11-20', 2680, 33652, 2622, NULL, '1.0000', '11.8600', '11.8600', '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 (35228, '2021-11-20', 2221, 33653, 2623, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35229, '2021-11-20', 2003, 33654, 2624, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35230, '2021-11-20', 1386, 33655, 2624, 41972, '1.0000', '608.2647', '608.2647', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35231, '2021-11-20', 7744, 33656, 2625, NULL, '1.0000', '1.9000', '1.9000', '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 (35232, '2021-11-21', 1493, 33657, 2626, 30679, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35233, '2021-11-21', 8607, 33658, 2626, 40005, '2.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35234, '2021-11-21', 1529, 33659, 2626, NULL, '1.0000', '4.0029', '4.0029', '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 (35235, '2021-11-21', 2239, 33660, 2626, 39880, '1.0000', '25.8286', '25.8286', '35.0000', '35.0000', '5.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35236, '2021-11-21', 1425, 33661, 2627, 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 (35237, '2021-11-21', 2993, 33662, 2627, 39800, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35238, '2021-11-21', 7473, 33663, 2627, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '113.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35239, '2021-11-21', 7514, 33664, 2628, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35240, '2021-11-21', 2965, 33665, 2628, NULL, '1.0000', '5.0000', '5.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 (35241, '2021-11-21', 8033, 33666, 2628, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35242, '2021-11-21', 8771, 33667, 2628, 39997, '1.0000', '4.0228', '4.0228', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35243, '2021-11-21', 8746, 33668, 2628, NULL, '1.0000', '4.3169', '4.3169', '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 (35244, '2021-11-21', 7762, 33669, 2628, NULL, '1.0000', '5.1000', '5.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 (35245, '2021-11-21', 1337, 33670, 2628, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35246, '2021-11-21', 2095, 33671, 2628, NULL, '1.0000', '1.5000', '1.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 (35247, '2021-11-21', 7737, 33672, 2628, NULL, '2.0000', '3.0000', '3.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 (35248, '2021-11-21', 7642, 33673, 2628, NULL, '1.0000', '2.6900', '2.6900', '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 (35249, '2021-11-21', 2169, 33674, 2628, NULL, '1.0000', '1.1500', '1.1500', '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 (35250, '2021-11-21', 2237, 33675, 2628, NULL, '1.0000', '-64.5817', '-64.5817', '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 (35251, '2021-11-21', 1912, 33676, 2628, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35252, '2021-11-21', 2169, 33677, 2628, NULL, '1.0000', '1.1500', '1.1500', '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 (35253, '2021-11-21', 2092, 33678, 2628, 34585, '1.0000', '4.1583', '4.1583', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35254, '2021-11-21', 1602, 33679, 2628, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35255, '2021-11-21', 1966, 33680, 2628, 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 (35256, '2021-11-21', 9474, 33681, 2628, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35257, '2021-11-21', 1831, 33682, 2628, 33131, '1.0000', '28.8300', '28.8300', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35258, '2021-11-21', 1651, 33683, 2628, 41407, '1.0000', '8.4739', '8.4739', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35259, '2021-11-21', 8825, 33684, 2628, NULL, '2.0000', '7.4000', '7.4000', '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 (35260, '2021-11-21', 2649, 33685, 2628, 29629, '1.0000', '76.2400', '76.2400', '101.0000', '101.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35261, '2021-11-21', 2221, 33686, 2628, 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 (35262, '2021-11-21', 1595, 33687, 2628, 34632, '1.0000', '20.1970', '20.1970', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35263, '2021-11-21', 2169, 33688, 2628, NULL, '2.0000', '1.1500', '1.1500', '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 (35264, '2021-11-21', 2135, 33689, 2628, 18930, '2.0000', '2.4732', '2.4732', '5.0000', '5.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 (35265, '2021-11-21', 7411, 33690, 2628, NULL, '1.0000', '1.3500', '1.3500', '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 (35266, '2021-11-21', 2650, 33691, 2628, NULL, '1.0000', '7.9860', '7.9860', '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 (35267, '2021-11-21', 7411, 33692, 2628, NULL, '1.0000', '1.3500', '1.3500', '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 (35268, '2021-11-21', 2277, 33693, 2628, NULL, '1.0000', '0.8982', '0.8982', '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 (35269, '2021-11-21', 1864, 33694, 2628, 34932, '1.0000', '5.9100', '5.9100', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35270, '2021-11-21', 2088, 33695, 2628, 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 (35271, '2021-11-21', 2167, 33696, 2628, 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 (35272, '2021-11-21', 1519, 33697, 2628, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35273, '2021-11-21', 9105, 33698, 2628, NULL, '1.0000', '0.5800', '0.5800', '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 (35274, '2021-11-21', 2315, 33699, 2628, NULL, '1.0000', '0.8556', '0.8556', '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 (35275, '2021-11-21', 7763, 33700, 2628, NULL, '1.0000', '1.1300', '1.1300', '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 (35276, '2021-11-21', 2266, 33701, 2628, 13768, '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 (35277, '2021-11-21', 2237, 33702, 2628, NULL, '1.0000', '-64.5817', '-64.5817', '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 (35278, '2021-11-21', 2950, 33703, 2628, 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 (35279, '2021-11-21', 2386, 33704, 2628, 29634, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35280, '2021-11-21', 2353, 33705, 2628, 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 (35281, '2021-11-21', 2109, 33706, 2628, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '30.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 (35282, '2021-11-21', 2821, 33707, 2628, 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 (35283, '2021-11-21', 2699, 33708, 2628, 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 (35284, '2021-11-21', 7765, 33709, 2628, NULL, '2.0000', '16.0000', '16.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 (35285, '2021-11-21', 1487, 33710, 2628, NULL, '2.0000', '-37.3500', '-37.3500', '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 (35286, '2021-11-21', 8638, 33711, 2628, NULL, '1.0000', '0.5100', '0.5100', '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 (35287, '2021-11-21', 2638, 33712, 2628, NULL, '1.0000', '20.2067', '20.2067', '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 (35288, '2021-11-21', 1641, 33713, 2628, 38521, '5.0000', '1.9923', '1.9923', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35289, '2021-11-21', 7411, 33714, 2628, NULL, '1.0000', '1.3500', '1.3500', '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 (35290, '2021-11-21', 1519, 33715, 2628, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35291, '2021-11-21', 7328, 33716, 2628, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35292, '2021-11-21', 2289, 33717, 2628, 38551, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35293, '2021-11-21', 2169, 33718, 2628, NULL, '1.0000', '1.1500', '1.1500', '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 (35294, '2021-11-21', 7317, 33719, 2628, NULL, '1.0000', '19.5500', '19.5500', '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 (35295, '2021-11-21', 1935, 33720, 2628, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35296, '2021-11-21', 7411, 33721, 2628, NULL, '1.0000', '1.3500', '1.3500', '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 (35297, '2021-11-21', 1809, 33722, 2628, 39789, '1.0000', '9.2696', '9.2696', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35298, '2021-11-21', 7750, 33723, 2628, 39788, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35299, '2021-11-21', 2394, 33724, 2628, 31959, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35300, '2021-11-21', 7743, 33725, 2628, NULL, '1.0000', '7.3900', '7.3900', '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 (35301, '2021-11-21', 1966, 33726, 2628, 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 (35302, '2021-11-21', 2169, 33727, 2628, NULL, '1.0000', '1.1500', '1.1500', '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 (35303, '2021-11-21', 2095, 33728, 2628, NULL, '1.0000', '1.5000', '1.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 (35304, '2021-11-21', 8677, 33729, 2629, NULL, '2.0000', '89.9250', '89.9250', '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 (35305, '2021-11-21', 1519, 33730, 2629, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35306, '2021-11-21', 7857, 33731, 2630, NULL, '1.0000', '14.5620', '14.5620', '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 (35307, '2021-11-21', 8363, 33732, 2630, NULL, '1.0000', '38.0000', '38.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 (35308, '2021-11-21', 9272, 33733, 2630, NULL, '1.0000', '3.1000', '3.1000', '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 (35309, '2021-11-21', 1810, 33734, 2630, NULL, '1.0000', '7.7967', '7.7967', '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 (35310, '2021-11-21', 7333, 33735, 2630, NULL, '1.0000', '13.5000', '13.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 (35311, '2021-11-21', 7819, 33736, 2630, NULL, '1.0000', '9.5000', '9.5000', '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 (35312, '2021-11-21', 9337, 33737, 2630, NULL, '3.0000', '6.8067', '6.8067', '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 (35313, '2021-11-21', 7768, 33738, 2630, NULL, '1.0000', '7.7800', '7.7800', '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 (35314, '2021-11-21', 7411, 33739, 2630, NULL, '2.0000', '1.3500', '1.3500', '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 (35315, '2021-11-21', 9655, 33740, 2630, 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 (35316, '2021-11-21', 1947, 33741, 2630, 41901, '1.0000', '-49211.3981', '-49211.3981', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35317, '2021-11-21', 9094, 33742, 2630, NULL, '2.0000', '6.0000', '6.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 (35318, '2021-11-21', 7675, 33743, 2630, NULL, '1.0000', '11.4300', '11.4300', '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 (35319, '2021-11-21', 1577, 33744, 2630, 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 (35320, '2021-11-21', 7886, 33745, 2630, NULL, '1.0000', '2.8333', '2.8333', '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 (35321, '2021-11-21', 8178, 33746, 2630, NULL, '1.0000', '0.0000', '0.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 (35322, '2021-11-21', 8918, 33747, 2630, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35323, '2021-11-21', 8765, 33748, 2630, 39427, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35324, '2021-11-21', 7518, 33749, 2630, NULL, '1.0000', '-67.2578', '-67.2578', '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 (35325, '2021-11-21', 9092, 33750, 2630, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '220.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35326, '2021-11-21', 9174, 33751, 2630, NULL, '1.0000', '13.7400', '13.7400', '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 (35327, '2021-11-21', 8308, 33752, 2630, NULL, '1.0000', '11.0000', '11.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 (35328, '2021-11-21', 8918, 33753, 2630, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35329, '2021-11-21', 7507, 33754, 2630, NULL, '3.0000', '6.5000', '6.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 (35330, '2021-11-21', 7781, 33755, 2630, NULL, '3.0000', '4.2500', '4.2500', '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 (35331, '2021-11-21', 8172, 33756, 2630, NULL, '1.0000', '40.7000', '40.7000', '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 (35332, '2021-11-21', 7825, 33757, 2630, NULL, '1.0000', '6.5000', '6.5000', '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 (35333, '2021-11-21', 1837, 33758, 2630, NULL, '10.0000', '0.5500', '0.5500', '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 (35334, '2021-11-21', 7641, 33759, 2630, NULL, '2.0000', '-12.5865', '-12.5865', '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 (35335, '2021-11-21', 7444, 33760, 2630, 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 (35336, '2021-11-21', 7877, 33761, 2630, NULL, '1.0000', '1.3600', '1.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 (35337, '2021-11-21', 2315, 33762, 2630, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35338, '2021-11-21', 8872, 33763, 2630, NULL, '1.0000', '3.0000', '3.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 (35339, '2021-11-21', 7469, 33764, 2630, 41875, '1.0000', '18.8000', '18.8000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35340, '2021-11-21', 2287, 33765, 2630, NULL, '3.0000', '2.3000', '2.3000', '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 (35341, '2021-11-21', 8166, 33766, 2630, NULL, '1.0000', '4.6000', '4.6000', '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 (35342, '2021-11-21', 7472, 33767, 2630, NULL, '1.0000', '4.1000', '4.1000', '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 (35343, '2021-11-21', 9579, 33768, 2630, 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 (35344, '2021-11-21', 9193, 33769, 2630, NULL, '1.0000', '5.5150', '5.5150', '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 (35345, '2021-11-21', 7753, 33770, 2630, 41911, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35346, '2021-11-21', 2104, 33771, 2630, NULL, '4.0000', '0.2000', '0.2000', '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 (35347, '2021-11-21', 2163, 33772, 2631, 1378, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '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 (35348, '2021-11-21', 1667, 33773, 2631, 9745, '-27.0000', '5.9400', '5.9400', '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 (35349, '2021-11-21', 1667, 33773, 2631, NULL, '28.0000', '5.9400', '5.9400', '8.5000', '8.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 (35350, '2021-11-21', 2858, 33774, 2631, 17772, '-10.0000', '1.0000', '1.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 (35351, '2021-11-21', 2858, 33774, 2631, NULL, '11.0000', '1.0000', '1.0000', '5.0000', '5.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 (35352, '2021-11-21', 9577, 33775, 2631, NULL, '2.0000', '0.3200', '0.3200', '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 (35353, '2021-11-21', 2828, 33776, 2631, 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 (35354, '2021-11-21', 2136, 33777, 2631, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '93.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 (35355, '2021-11-21', 1497, 33778, 2631, 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 (35356, '2021-11-21', 1873, 33779, 2631, 16245, '-5.0000', '11.9500', '11.9500', '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 (35357, '2021-11-21', 1873, 33779, 2631, NULL, '6.0000', '11.9500', '11.9500', '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 (35358, '2021-11-21', 2643, 33780, 2631, 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 (35359, '2021-11-21', 2416, 33781, 2631, 4745, '-15.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 (35360, '2021-11-21', 2416, 33781, 2631, NULL, '16.0000', '1.2000', '1.2000', '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 (35361, '2021-11-21', 1837, 33782, 2631, 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 (35362, '2021-11-21', 2618, 33783, 2631, 9836, '-17.0000', '4.1000', '4.1000', '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 (35363, '2021-11-21', 2618, 33783, 2631, NULL, '18.0000', '4.1000', '4.1000', '6.0000', '6.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 (35364, '2021-11-21', 2607, 33784, 2631, 18805, '4.0000', '1.4000', '1.4000', '1.7000', '1.7000', '7.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 (35365, '2021-11-21', 7609, 33785, 2631, NULL, '1.0000', '4.3300', '4.3300', '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 (35366, '2021-11-21', 1337, 33786, 2631, 10809, '-2.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 (35367, '2021-11-21', 1337, 33786, 2631, NULL, '3.0000', '2.0000', '2.0000', '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 (35368, '2021-11-21', 1339, 33787, 2631, 235, '1.0000', '1.6012', '1.6012', '3.5000', '3.5000', '0.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 (35369, '2021-11-21', 1390, 33788, 2631, NULL, '1.0000', '7.5000', '7.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 (35370, '2021-11-21', 2444, 33789, 2631, 5314, '-4.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 (35371, '2021-11-21', 2444, 33789, 2631, NULL, '5.0000', '6.0000', '6.0000', '9.0000', '9.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 (35372, '2021-11-21', 2828, 33790, 2631, 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 (35373, '2021-11-21', 2136, 33791, 2631, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '93.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 (35374, '2021-11-21', 1497, 33792, 2631, 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 (35375, '2021-11-21', 1488, 33793, 2631, 22319, '1.0000', '3.9200', '3.9200', '5.5000', '5.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 (35376, '2021-11-21', 2476, 33794, 2631, NULL, '2.0000', '10.0000', '10.0000', '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 (35377, '2021-11-21', 2486, 33795, 2631, 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 (35378, '2021-11-21', 7721, 33796, 2631, NULL, '5.0000', '5.5000', '5.5000', '7.5000', '7.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 (35379, '2021-11-21', 2602, 33797, 2631, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '10.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 (35380, '2021-11-21', 2479, 33798, 2631, 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 (35381, '2021-11-21', 2484, 33799, 2631, 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 (35382, '2021-11-21', 2487, 33800, 2631, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '0.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 (35383, '2021-11-21', 1759, 33801, 2631, 6746, '-4.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 (35384, '2021-11-21', 1759, 33801, 2631, NULL, '5.0000', '11.5000', '11.5000', '15.0000', '15.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 (35385, '2021-11-21', 1347, 33802, 2631, 3320, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '7.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 (35386, '2021-11-21', 2379, 33803, 2631, 4032, '-27.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 (35387, '2021-11-21', 2379, 33803, 2631, NULL, '28.0000', '1.5900', '1.5900', '2.5000', '2.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 (35388, '2021-11-21', 1645, 33804, 2631, 3217, '-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 (35389, '2021-11-21', 1645, 33804, 2631, 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 (35390, '2021-11-21', 2384, 33805, 2631, 18845, '5.0000', '0.4000', '0.4000', '0.7000', '0.7000', '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 (35391, '2021-11-21', 2221, 33806, 2631, 4154, '-18.0000', '14.4737', '14.4737', '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 (35392, '2021-11-21', 2221, 33806, 2631, NULL, '19.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (35393, '2021-11-21', 3074, 33807, 2631, 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 (35394, '2021-11-21', 1904, 33808, 2631, 5442, '-13.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 (35395, '2021-11-21', 1904, 33808, 2631, NULL, '14.0000', '0.3200', '0.3200', '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 (35396, '2021-11-21', 1445, 33809, 2631, 5565, '-5.0000', '2.6000', '2.6000', '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 (35397, '2021-11-21', 1445, 33809, 2631, NULL, '7.0000', '2.6000', '2.6000', '3.5000', '3.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 (35398, '2021-11-21', 1346, 33810, 2631, 242, '1.0000', '1.0594', '1.0594', '1.5000', '1.5000', '0.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 (35399, '2021-11-21', 1346, 33810, 2631, NULL, '4.0000', '1.0594', '1.0594', '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 (35400, '2021-11-21', 9577, 33811, 2631, NULL, '1.0000', '0.3200', '0.3200', '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 (35401, '2021-11-21', 1304, 33812, 2631, 34, '1.0000', '89.2753', '89.2753', '3.0000', '3.0000', '110.0000', 1, 0, NULL, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35402, '2021-11-21', 2248, 33813, 2631, NULL, '1.0000', '2.5000', '2.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 (35403, '2021-11-21', 1596, 33814, 2631, 8361, '-6.0000', '2.5700', '2.5700', '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 (35404, '2021-11-21', 1596, 33814, 2631, NULL, '7.0000', '2.5700', '2.5700', '4.0000', '4.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 (35405, '2021-11-21', 1839, 33815, 2631, 8734, '-13.0000', '6.1500', '6.1500', '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 (35406, '2021-11-21', 1839, 33815, 2631, NULL, '14.0000', '6.1500', '6.1500', '9.0000', '9.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 (35407, '2021-11-21', 2481, 33816, 2631, 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 (35408, '2021-11-21', 1529, 33817, 2631, 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 (35409, '2021-11-21', 2285, 33818, 2631, 2945, '-19.0000', '35.8000', '35.8000', '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 (35410, '2021-11-21', 2285, 33818, 2631, NULL, '20.0000', '35.8000', '35.8000', '47.0000', '47.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 (35411, '2021-11-21', 2363, 33819, 2631, 3866, '-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 (35412, '2021-11-21', 2363, 33819, 2631, NULL, '2.0000', '6.8800', '6.8800', '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 (35413, '2021-11-21', 2643, 33820, 2631, 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 (35414, '2021-11-21', 2252, 33821, 2631, 2789, '-13.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 (35415, '2021-11-21', 2252, 33821, 2631, NULL, '14.0000', '9.5000', '9.5000', '12.5000', '12.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 (35416, '2021-11-21', 2320, 33822, 2631, 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 (35417, '2021-11-21', 2167, 33823, 2631, 17165, '-18.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 (35418, '2021-11-21', 2167, 33823, 2631, NULL, '19.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (35419, '2021-11-21', 1863, 33824, 2631, 10808, '-97.0000', '0.4136', '0.4136', '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 (35420, '2021-11-21', 1863, 33824, 2631, NULL, '99.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35421, '2021-11-21', 1846, 33825, 2631, 12032, '-5.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 (35422, '2021-11-21', 1846, 33825, 2631, NULL, '6.0000', '12.0000', '12.0000', '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 (35423, '2021-11-21', 1825, 33826, 2631, 11265, '-3.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 (35424, '2021-11-21', 1825, 33826, 2631, NULL, '4.0000', '4.8000', '4.8000', '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 (35425, '2021-11-21', 2379, 33827, 2631, 4032, '-27.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 (35426, '2021-11-21', 2379, 33827, 2631, NULL, '28.0000', '1.5900', '1.5900', '2.5000', '2.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 (35427, '2021-11-21', 1590, 33828, 2631, 22260, '3.0000', '1.7100', '1.7100', '2.3000', '2.3000', '24.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 (35428, '2021-11-21', 2384, 33829, 2631, 18845, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '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 (35429, '2021-11-21', 1590, 33830, 2631, 22260, '2.0000', '1.7100', '1.7100', '2.3000', '2.3000', '25.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 (35430, '2021-11-21', 2167, 33831, 2631, 17165, '-18.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 (35431, '2021-11-21', 2167, 33831, 2631, NULL, '19.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (35432, '2021-11-21', 2635, 33832, 2631, 10297, '-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 (35433, '2021-11-21', 2635, 33832, 2631, NULL, '10.0000', '3.0000', '3.0000', '4.0000', '4.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 (35434, '2021-11-21', 7953, 33833, 2631, NULL, '1.0000', '6.0000', '6.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 (35435, '2021-11-21', 2221, 33834, 2631, 4154, '-18.0000', '14.4737', '14.4737', '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 (35436, '2021-11-21', 2221, 33834, 2631, NULL, '19.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (35437, '2021-11-21', 9634, 33835, 2631, 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 (35438, '2021-11-21', 2958, 33836, 2631, NULL, '3.0000', '1.0000', '1.0000', '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 (35439, '2021-11-21', 2916, 33837, 2631, 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 (35440, '2021-11-21', 1912, 33838, 2631, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '6.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 (35441, '2021-11-21', 1519, 33839, 2631, 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 (35442, '2021-11-21', 1339, 33840, 2631, 235, '1.0000', '1.6012', '1.6012', '3.5000', '3.5000', '0.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 (35443, '2021-11-21', 2262, 33841, 2631, 2798, '-5.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 (35444, '2021-11-21', 2262, 33841, 2631, NULL, '6.0000', '4.5000', '4.5000', '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 (35445, '2021-11-21', 1667, 33842, 2631, 9745, '-27.0000', '5.9400', '5.9400', '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 (35446, '2021-11-21', 1667, 33842, 2631, NULL, '28.0000', '5.9400', '5.9400', '8.5000', '8.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 (35447, '2021-11-21', 1846, 33843, 2631, 12032, '-5.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 (35448, '2021-11-21', 1846, 33843, 2631, NULL, '6.0000', '12.0000', '12.0000', '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 (35449, '2021-11-21', 9489, 33844, 2631, NULL, '1.0000', '23.0000', '23.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 (35450, '2021-11-21', 2094, 33845, 2631, 1036, '1.0000', '2.9000', '2.9000', '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 (35451, '2021-11-21', 2401, 33846, 2631, NULL, '1.0000', '2.8000', '2.8000', '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 (35452, '2021-11-21', 1337, 33847, 2631, 10809, '-2.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 (35453, '2021-11-21', 1337, 33847, 2631, NULL, '3.0000', '2.0000', '2.0000', '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 (35454, '2021-11-21', 2968, 33848, 2631, NULL, '1.0000', '18.0000', '18.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 (35455, '2021-11-21', 2020, 33849, 2631, 10164, '-6.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 (35456, '2021-11-21', 2020, 33849, 2631, NULL, '7.0000', '7.5000', '7.5000', '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 (35457, '2021-11-21', 9461, 33850, 2631, NULL, '1.0000', '1.6000', '1.6000', '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 (35458, '2021-11-21', 1602, 33851, 2631, 5897, '-48.0000', '6.7859', '6.7859', '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 (35459, '2021-11-21', 1602, 33851, 2631, NULL, '50.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35460, '2021-11-21', 1602, 33852, 2631, 5897, '-48.0000', '6.7859', '6.7859', '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 (35461, '2021-11-21', 1602, 33852, 2631, NULL, '49.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35462, '2021-11-21', 2965, 33853, 2632, NULL, '1.0000', '5.0000', '5.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 (35463, '2021-11-21', 8743, 33854, 2632, NULL, '1.0000', '9.2500', '9.2500', '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 (35464, '2021-11-21', 9634, 33855, 2633, NULL, '3.0000', '4.8000', '4.8000', '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 (35465, '2021-11-21', 7411, 33856, 2633, 33804, '2.0000', '1.3500', '1.3500', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35466, '2021-11-21', 1746, 33857, 2633, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '21.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 (35467, '2021-11-21', 1530, 33858, 2633, 7391, '-5.0000', '28.7012', '28.7012', '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 (35468, '2021-11-21', 1530, 33858, 2633, NULL, '6.0000', '28.7012', '28.7012', '38.0000', '38.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 (35469, '2021-11-22', 7459, 33859, 2634, NULL, '3.0000', '2.3500', '2.3500', '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 (35470, '2021-11-22', 2923, 33860, 2634, NULL, '1.0000', '11.1200', '11.1200', '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 (35471, '2021-11-22', 9291, 33861, 2634, NULL, '1.0000', '11.9000', '11.9000', '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 (35472, '2021-11-22', 8740, 33862, 2634, NULL, '1.0000', '2.0000', '2.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 (35473, '2021-11-22', 1618, 33863, 2634, 8737, '-1.0000', '11.8200', '11.8200', '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 (35474, '2021-11-22', 1618, 33863, 2634, NULL, '2.0000', '11.8200', '11.8200', '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 (35475, '2021-11-22', 8878, 33864, 2634, NULL, '2.0000', '6.6700', '6.6700', '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 (35476, '2021-11-22', 1502, 33865, 2634, 18925, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '7.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 (35477, '2021-11-22', 2068, 33866, 2634, 5568, '-14.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 (35478, '2021-11-22', 2068, 33866, 2634, NULL, '15.0000', '13.1000', '13.1000', '17.0000', '17.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 (35479, '2021-11-22', 2074, 33867, 2634, 202, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '8.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 (35480, '2021-11-22', 1744, 33868, 2634, 79, '1.0000', '26.5281', '26.5281', '36.0000', '36.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 (35481, '2021-11-22', 2341, 33869, 2634, 10958, '1.0000', '6.8000', '6.8000', '7.5000', '7.5000', '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 (35482, '2021-11-22', 1846, 33870, 2634, 12032, '-7.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 (35483, '2021-11-22', 1846, 33870, 2634, NULL, '8.0000', '12.0000', '12.0000', '16.0000', '16.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 (35484, '2021-11-22', 1863, 33871, 2634, 10808, '-99.0000', '0.4136', '0.4136', '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 (35485, '2021-11-22', 1863, 33871, 2634, NULL, '101.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35486, '2021-11-22', 2288, 33872, 2634, 2948, '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 (35487, '2021-11-22', 1550, 33873, 2634, NULL, '1.0000', '13.9000', '13.9000', '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 (35488, '2021-11-22', 1687, 33874, 2634, 5785, '-15.0000', '165.9024', '165.9024', '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 (35489, '2021-11-22', 1687, 33874, 2634, NULL, '16.0000', '165.9024', '165.9024', '16.0000', '16.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 (35490, '2021-11-22', 1645, 33875, 2634, 3217, '-3.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 (35491, '2021-11-22', 1645, 33875, 2634, NULL, '4.0000', '4.7200', '4.7200', '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 (35492, '2021-11-22', 1908, 33876, 2634, 5444, '-21.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 (35493, '2021-11-22', 1908, 33876, 2634, NULL, '23.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (35494, '2021-11-22', 9480, 33877, 2634, NULL, '1.0000', '8.5000', '8.5000', '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 (35495, '2021-11-22', 1602, 33878, 2634, 5897, '-51.0000', '6.7859', '6.7859', '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 (35496, '2021-11-22', 1602, 33878, 2634, NULL, '52.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35497, '2021-11-22', 2154, 33879, 2634, 1369, '1.0000', '10.6849', '10.6849', '16.0000', '16.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 (35498, '2021-11-22', 1854, 33880, 2635, 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 (35499, '2021-11-22', 2237, 33881, 2635, NULL, '1.0000', '-64.5817', '-64.5817', '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 (35500, '2021-11-22', 2379, 33882, 2635, NULL, '1.0000', '1.8000', '1.8000', '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 (35501, '2021-11-22', 2643, 33883, 2635, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35502, '2021-11-22', 1523, 33884, 2635, NULL, '1.0000', '1.0061', '1.0061', '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 (35503, '2021-11-22', 1755, 33885, 2635, 42087, '1.0000', '5.7200', '5.7200', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35504, '2021-11-22', 1863, 33886, 2635, NULL, '1.0000', '1.3589', '1.3589', '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 (35505, '2021-11-22', 1621, 33887, 2635, 42079, '1.0000', '28.9137', '28.9137', '7.5000', '7.5000', '59.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35506, '2021-11-22', 1760, 33888, 2635, NULL, '5.0000', '1.5900', '1.5900', '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 (35507, '2021-11-22', 1523, 33889, 2635, NULL, '1.0000', '1.0061', '1.0061', '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 (35508, '2021-11-22', 1311, 33890, 2635, 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 (35509, '2021-11-22', 2315, 33891, 2635, NULL, '2.0000', '0.8556', '0.8556', '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 (35510, '2021-11-22', 1501, 33892, 2635, NULL, '1.0000', '2.2100', '2.2100', '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 (35511, '2021-11-22', 2662, 33893, 2635, 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 (35512, '2021-11-22', 2242, 33894, 2635, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35513, '2021-11-22', 1602, 33895, 2635, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35514, '2021-11-22', 2237, 33896, 2635, NULL, '1.0000', '-64.5817', '-64.5817', '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 (35515, '2021-11-22', 1647, 33897, 2635, 19838, '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 (35516, '2021-11-22', 2821, 33898, 2635, 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 (35517, '2021-11-22', 1946, 33899, 2635, NULL, '1.0000', '1.5500', '1.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 (35518, '2021-11-22', 1757, 33900, 2635, 25014, '1.0000', '4.0024', '4.0024', '7.0000', '7.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 (35519, '2021-11-22', 1863, 33901, 2635, NULL, '1.0000', '1.3589', '1.3589', '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 (35520, '2021-11-22', 1409, 33902, 2635, NULL, '1.0000', '13.5000', '13.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 (35521, '2021-11-22', 7473, 33903, 2635, 39817, '4.0000', '0.1679', '0.1679', '0.6000', '0.6000', '109.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35522, '2021-11-22', 1901, 33904, 2636, 5480, '1.0000', '3.8432', '3.8432', '3.0000', '3.0000', '17.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 (35523, '2021-11-22', 8722, 33905, 2637, 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 (35524, '2021-11-22', 2315, 33906, 2637, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35525, '2021-11-22', 9213, 33907, 2637, 39428, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35526, '2021-11-22', 7741, 33908, 2637, 36081, '1.0000', '5.8811', '5.8811', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35527, '2021-11-22', 9399, 33909, 2637, NULL, '2.0000', '0.4200', '0.4200', '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 (35528, '2021-11-22', 7674, 33910, 2637, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '123.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35529, '2021-11-22', 7776, 33911, 2637, NULL, '1.0000', '8.0000', '8.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 (35530, '2021-11-22', 7781, 33912, 2637, NULL, '3.0000', '4.2500', '4.2500', '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 (35531, '2021-11-22', 7482, 33913, 2637, NULL, '1.0000', '2.4981', '2.4981', '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 (35532, '2021-11-22', 9511, 33914, 2637, 33753, '1.0000', '15.7600', '15.7600', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35533, '2021-11-22', 8879, 33915, 2637, NULL, '1.0000', '17.0000', '17.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 (35534, '2021-11-22', 1819, 33916, 2637, 41922, '1.0000', '5.4300', '5.4300', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35535, '2021-11-22', 8063, 33917, 2637, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35536, '2021-11-22', 1612, 33918, 2637, 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 (35537, '2021-11-22', 7641, 33919, 2637, NULL, '1.0000', '-12.5865', '-12.5865', '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 (35538, '2021-11-22', 8166, 33920, 2637, NULL, '1.0000', '4.6000', '4.6000', '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 (35539, '2021-11-22', 1510, 33921, 2637, NULL, '1.0000', '10.5918', '10.5918', '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 (35540, '2021-11-22', 7385, 33922, 2637, 41944, '1.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35541, '2021-11-22', 7518, 33923, 2637, NULL, '2.0000', '-67.2578', '-67.2578', '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 (35542, '2021-11-22', 7331, 33924, 2637, 37404, '1.0000', '4.0000', '4.0000', '77.0000', '77.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35543, '2021-11-22', 7926, 33925, 2637, 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 (35544, '2021-11-22', 7609, 33926, 2637, NULL, '1.0000', '4.3300', '4.3300', '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 (35545, '2021-11-22', 9290, 33927, 2637, 41882, '1.0000', '15.2700', '15.2700', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35546, '2021-11-22', 8933, 33928, 2637, 32140, '2.0000', '10.0000', '10.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35547, '2021-11-22', 9496, 33929, 2637, 38422, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35548, '2021-11-22', 8974, 33930, 2637, NULL, '1.0000', '5.4000', '5.4000', '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 (35549, '2021-11-22', 7514, 33931, 2637, NULL, '1.0000', '12.9983', '12.9983', '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 (35550, '2021-11-22', 9092, 33932, 2637, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '219.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35551, '2021-11-22', 7804, 33933, 2637, NULL, '3.0000', '1.8000', '1.8000', '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 (35552, '2021-11-22', 8699, 33934, 2637, NULL, '2.0000', '6.3800', '6.3800', '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 (35553, '2021-11-22', 8548, 33935, 2637, NULL, '1.0000', '12.0000', '12.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 (35554, '2021-11-22', 8658, 33936, 2637, NULL, '1.0000', '17.1000', '17.1000', '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 (35555, '2021-11-22', 7447, 33937, 2637, NULL, '10.0000', '19.1100', '19.1100', '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 (35556, '2021-11-22', 7780, 33938, 2637, NULL, '1.0000', '2.6000', '2.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 (35557, '2021-11-22', 7671, 33939, 2637, NULL, '1.0000', '15.5000', '15.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 (35558, '2021-11-22', 1837, 33940, 2637, 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 (35559, '2021-11-22', 1762, 33941, 2638, 3181, '1.0000', '8.2900', '8.2900', '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 (35560, '2021-11-22', 1787, 33942, 2638, 40215, '1.0000', '0.8100', '0.8100', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35561, '2021-11-22', 1905, 33943, 2638, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.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 (35562, '2021-11-22', 7756, 33944, 2638, NULL, '1.0000', '34.6167', '34.6167', '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 (35563, '2021-11-22', 2242, 33945, 2638, 33027, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35564, '2021-11-22', 1871, 33946, 2638, 37565, '5.0000', '29.4135', '29.4135', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35565, '2021-11-22', 1871, 33946, 2638, 32818, '9.0000', '29.4135', '29.4135', '3.0000', '3.0000', '51.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35566, '2021-11-22', 2320, 33947, 2638, 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 (35567, '2021-11-22', 2884, 33948, 2638, 17909, '1.0000', '30.0000', '30.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 (35568, '2021-11-22', 1341, 33949, 2638, 3380, '1.0000', '13.5000', '13.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 (35569, '2021-11-22', 2699, 33950, 2638, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35570, '2021-11-22', 1967, 33951, 2638, NULL, '1.0000', '19.5900', '19.5900', '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 (35571, '2021-11-22', 1780, 33952, 2638, 31706, '1.0000', '35.6000', '35.6000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35572, '2021-11-22', 1780, 33952, 2638, 31979, '2.0000', '35.6000', '35.6000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35573, '2021-11-22', 1371, 33953, 2638, 41971, '1.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35574, '2021-11-22', 2221, 33954, 2638, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35575, '2021-11-22', 1816, 33955, 2638, NULL, '1.0000', '11.9444', '11.9444', '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 (35576, '2021-11-22', 2504, 33956, 2638, 6119, '1.0000', '35.0000', '35.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 (35577, '2021-11-22', 2627, 33957, 2638, 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 (35578, '2021-11-22', 1310, 33958, 2638, 29814, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35579, '2021-11-22', 1761, 33959, 2638, 34421, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35580, '2021-11-22', 2279, 33960, 2638, 34672, '1.0000', '2.3230', '2.3230', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35581, '2021-11-22', 1851, 33961, 2638, 40617, '1.0000', '12.9959', '12.9959', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35582, '2021-11-22', 1863, 33962, 2638, 40894, '1.0000', '1.1698', '1.1698', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35583, '2021-11-22', 2169, 33963, 2638, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35584, '2021-11-22', 1602, 33964, 2638, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35585, '2021-11-22', 1532, 33965, 2638, 1539, '3.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 (35586, '2021-11-22', 2167, 33966, 2638, 40903, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35587, '2021-11-22', 2255, 33967, 2638, 32027, '2.0000', '17.4900', '17.4900', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35588, '2021-11-22', 1371, 33968, 2638, 41971, '1.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35589, '2021-11-22', 2247, 33969, 2638, 24101, '1.0000', '2.5000', '2.5000', '3.5000', '3.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 (35590, '2021-11-22', 2839, 33970, 2638, 40355, '1.0000', '4.5000', '4.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35591, '2021-11-22', 7954, 33971, 2638, 33014, '2.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35592, '2021-11-22', 8756, 33972, 2638, 32593, '1.0000', '7.0000', '7.0000', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35593, '2021-11-22', 1666, 33973, 2638, 40906, '1.0000', '83.5178', '83.5178', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35594, '2021-11-22', 1602, 33974, 2638, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35595, '2021-11-22', 1863, 33975, 2638, 40894, '1.0000', '1.1698', '1.1698', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35596, '2021-11-22', 2167, 33976, 2638, 40903, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35597, '2021-11-22', 2948, 33977, 2638, NULL, '1.0000', '0.9000', '0.9000', '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 (35598, '2021-11-22', 1674, 33978, 2638, 32017, '1.0000', '135.4360', '135.4360', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35599, '2021-11-22', 2363, 33979, 2638, 40897, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35600, '2021-11-22', 1610, 33980, 2638, 29791, '1.0000', '53.0750', '53.0750', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35601, '2021-11-22', 8997, 33981, 2638, NULL, '1.0000', '3.0000', '3.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 (35602, '2021-11-22', 2381, 33982, 2638, 40882, '1.0000', '-0.3142', '-0.3142', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35603, '2021-11-22', 2169, 33983, 2638, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35604, '2021-11-22', 2136, 33984, 2638, 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 (35605, '2021-11-22', 1345, 33985, 2638, 18673, '1.0000', '44.0000', '44.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 (35606, '2021-11-22', 1787, 33986, 2638, 40215, '1.0000', '0.8100', '0.8100', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35607, '2021-11-22', 2392, 33987, 2638, 32037, '1.0000', '2.8712', '2.8712', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35608, '2021-11-22', 1506, 33988, 2638, 24106, '1.0000', '53.7259', '53.7259', '21.5000', '21.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 (35609, '2021-11-22', 1863, 33989, 2639, NULL, '1.0000', '1.3589', '1.3589', '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 (35610, '2021-11-22', 2656, 33990, 2639, 32553, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35611, '2021-11-22', 2565, 33991, 2639, 25159, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '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 (35612, '2021-11-22', 1935, 33992, 2639, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35613, '2021-11-22', 8622, 33993, 2639, 41397, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35614, '2021-11-22', 2315, 33994, 2639, NULL, '2.0000', '0.8556', '0.8556', '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 (35615, '2021-11-22', 2965, 33995, 2639, NULL, '2.0000', '5.0000', '5.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 (35616, '2021-11-22', 8767, 33996, 2639, NULL, '1.0000', '6.6900', '6.6900', '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 (35617, '2021-11-22', 1667, 33997, 2639, 42076, '2.0000', '18.6700', '18.6700', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35618, '2021-11-22', 8763, 33998, 2639, NULL, '2.0000', '5.4000', '5.4000', '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 (35619, '2021-11-22', 1863, 33999, 2639, NULL, '1.0000', '1.3589', '1.3589', '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 (35620, '2021-11-22', 9482, 34000, 2639, 32547, '5.0000', '0.5000', '0.5000', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35621, '2021-11-22', 2275, 34001, 2639, 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 (35622, '2021-11-22', 1602, 34002, 2639, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35623, '2021-11-22', 7703, 34003, 2639, NULL, '1.0000', '22.9900', '22.9900', '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 (35624, '2021-11-22', 1590, 34004, 2639, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35625, '2021-11-22', 8984, 34005, 2639, NULL, '1.0000', '-100.8495', '-100.8495', '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 (35626, '2021-11-22', 1935, 34006, 2639, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35627, '2021-11-22', 9399, 34007, 2639, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35628, '2021-11-22', 2169, 34008, 2639, NULL, '1.0000', '1.1500', '1.1500', '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 (35629, '2021-11-22', 8596, 34009, 2639, NULL, '1.0000', '17.0000', '17.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 (35630, '2021-11-22', 2352, 34010, 2639, NULL, '10.0000', '59.2000', '59.2000', '3.5000', '3.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 (35631, '2021-11-22', 2169, 34011, 2639, NULL, '1.0000', '1.1500', '1.1500', '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 (35632, '2021-11-22', 1520, 34012, 2639, 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 (35633, '2021-11-22', 1854, 34013, 2639, 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 (35634, '2021-11-22', 2237, 34014, 2639, NULL, '1.0000', '-64.5817', '-64.5817', '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 (35635, '2021-11-22', 2242, 34015, 2639, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35636, '2021-11-22', 2261, 34016, 2639, 23149, '1.0000', '18.9900', '18.9900', '25.0000', '25.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 (35637, '2021-11-22', 2169, 34017, 2639, NULL, '1.0000', '1.1500', '1.1500', '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 (35638, '2021-11-22', 1519, 34018, 2639, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35639, '2021-11-22', 1590, 34019, 2639, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (35640, '2021-11-22', 1493, 34020, 2639, 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 (35641, '2021-11-22', 7672, 34021, 2639, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '82.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35642, '2021-11-22', 2989, 34022, 2640, 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 (35643, '2021-11-22', 7671, 34023, 2640, NULL, '1.0000', '15.5000', '15.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 (35644, '2021-11-22', 1621, 34024, 2640, 42079, '1.0000', '28.9137', '28.9137', '7.5000', '7.5000', '58.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35645, '2021-11-22', 1386, 34025, 2640, 41400, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35646, '2021-11-22', 7671, 34026, 2640, NULL, '1.0000', '15.5000', '15.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 (35647, '2021-11-22', 9556, 34027, 2640, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35648, '2021-11-22', 2315, 34028, 2640, NULL, '2.0000', '0.8556', '0.8556', '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 (35649, '2021-11-22', 2068, 34029, 2640, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35650, '2021-11-22', 7671, 34030, 2640, NULL, '1.0000', '15.5000', '15.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 (35651, '2021-11-22', 1629, 34031, 2641, 34670, '1.0000', '13.9099', '13.9099', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35652, '2021-11-22', 2958, 34032, 2641, 40390, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35653, '2021-11-22', 1386, 34033, 2641, 41972, '1.0000', '608.2647', '608.2647', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35654, '2021-11-22', 1912, 34034, 2641, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35655, '2021-11-22', 9478, 34035, 2641, 40374, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35656, '2021-11-22', 2543, 34036, 2641, 9539, '1.0000', '2.0000', '2.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 (35657, '2021-11-22', 2169, 34037, 2641, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35658, '2021-11-22', 1321, 34038, 2641, NULL, '1.0000', '9.8000', '9.8000', '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 (35659, '2021-11-22', 2762, 34039, 2641, 42128, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35660, '2021-11-22', 1563, 34040, 2641, NULL, '1.0000', '4.9000', '4.9000', '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 (35661, '2021-11-22', 1873, 34041, 2641, 31971, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35662, '2021-11-22', 2169, 34042, 2641, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35663, '2021-11-22', 1780, 34043, 2641, NULL, '1.0000', '35.6000', '35.6000', '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 (35664, '2021-11-22', 1595, 34044, 2641, NULL, '1.0000', '18.6100', '18.6100', '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 (35665, '2021-11-22', 1371, 34045, 2641, 41971, '1.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35666, '2021-11-22', 2221, 34046, 2641, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35667, '2021-11-22', 2285, 34047, 2641, 40200, '1.0000', '36.0154', '36.0154', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35668, '2021-11-22', 1382, 34048, 2641, 3425, '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 (35669, '2021-11-22', 1321, 34049, 2641, NULL, '1.0000', '9.8000', '9.8000', '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 (35670, '2021-11-22', 1969, 34050, 2641, 1522, '1.0000', '4.3300', '4.3300', '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 (35671, '2021-11-22', 1935, 34051, 2641, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35672, '2021-11-22', 1667, 34052, 2641, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35673, '2021-11-22', 1840, 34053, 2641, NULL, '1.0000', '0.2400', '0.2400', '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 (35674, '2021-11-22', 1841, 34054, 2641, 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 (35675, '2021-11-22', 1949, 34055, 2641, 6004, '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 (35676, '2021-11-22', 2109, 34056, 2641, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '86.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35677, '2021-11-22', 2136, 34057, 2641, 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 (35678, '2021-11-22', 1966, 34058, 2641, 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 (35679, '2021-11-22', 1335, 34059, 2641, 33202, '1.0000', '0.7047', '0.7047', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35680, '2021-11-22', 1337, 34060, 2641, 40900, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35681, '2021-11-22', 1338, 34061, 2641, 40614, '1.0000', '0.3294', '0.3294', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35682, '2021-11-22', 2169, 34062, 2641, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35683, '2021-11-22', 7741, 34063, 2641, NULL, '1.0000', '1.2000', '1.2000', '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 (35684, '2021-11-22', 1658, 34064, 2642, 41379, '1.0000', '52.4860', '52.4860', '35.5000', '35.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35685, '2021-11-22', 1554, 34065, 2642, 41389, '1.0000', '2.7667', '2.7667', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35686, '2021-11-22', 2320, 34066, 2642, 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 (35687, '2021-11-22', 2068, 34067, 2642, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35688, '2021-11-22', 8596, 34068, 2642, NULL, '1.0000', '17.0000', '17.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 (35689, '2021-11-22', 1665, 34069, 2642, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35690, '2021-11-22', 7741, 34070, 2642, NULL, '1.0000', '1.2000', '1.2000', '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 (35691, '2021-11-22', 1855, 34071, 2642, NULL, '2.0000', '1.4000', '1.4000', '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 (35692, '2021-11-22', 1837, 34072, 2643, 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 (35693, '2021-11-22', 8984, 34073, 2643, NULL, '1.0000', '-100.8495', '-100.8495', '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 (35694, '2021-11-22', 2169, 34074, 2644, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35695, '2021-11-22', 1875, 34075, 2644, 40597, '20.0000', '168.6733', '168.6733', '3.6000', '3.6000', '80.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35696, '2021-11-22', 2794, 34076, 2644, 19040, '1.0000', '17.8200', '17.8200', '60.0000', '60.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35697, '2021-11-22', 7671, 34077, 2645, NULL, '1.0000', '15.5000', '15.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 (35698, '2021-11-22', 2169, 34078, 2645, NULL, '1.0000', '1.1500', '1.1500', '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 (35699, '2021-11-22', 2293, 34079, 2645, NULL, '3.0000', '1.4400', '1.4400', '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 (35700, '2021-11-22', 1533, 34080, 2645, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35701, '2021-11-22', 1665, 34081, 2646, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35702, '2021-11-22', 1602, 34082, 2647, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35703, '2021-11-22', 2858, 34083, 2647, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35704, '2021-11-22', 1812, 34084, 2647, 40883, '1.0000', '7.9425', '7.9425', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35705, '2021-11-22', 3012, 34085, 2648, NULL, '1.0000', '4.7000', '4.7000', '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 (35706, '2021-11-22', 2936, 34086, 2649, 22629, '1.0000', '6.0400', '6.0400', '8.0000', '8.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 (35707, '2021-11-22', 1533, 34087, 2649, 40902, '1.0000', '3.2241', '3.2241', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35708, '2021-11-22', 1658, 34088, 2649, 40850, '1.0000', '33.3236', '33.3236', '35.5000', '35.5000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35709, '2021-11-22', 8254, 34089, 2650, NULL, '1.0000', '27.2800', '27.2800', '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 (35710, '2021-11-22', 7509, 34090, 2650, 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 (35711, '2021-11-22', 7703, 34091, 2650, NULL, '1.0000', '22.9900', '22.9900', '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 (35712, '2021-11-22', 7385, 34092, 2650, 41944, '5.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35713, '2021-11-22', 2643, 34093, 2650, 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 (35714, '2021-11-22', 8054, 34094, 2650, NULL, '3.0000', '16.0000', '16.0000', '0.6000', '0.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 (35715, '2021-11-22', 7739, 34095, 2650, NULL, '2.0000', '2.7500', '2.7500', '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 (35716, '2021-11-22', 2604, 34096, 2650, NULL, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35717, '2021-11-22', 7355, 34097, 2650, NULL, '1.0000', '11.6400', '11.6400', '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 (35718, '2021-11-22', 1855, 34098, 2650, 39607, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35719, '2021-11-22', 7482, 34099, 2650, NULL, '2.0000', '2.4981', '2.4981', '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 (35720, '2021-11-22', 7980, 34100, 2650, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (35721, '2021-11-22', 7671, 34101, 2650, NULL, '2.0000', '15.5000', '15.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 (35722, '2021-11-22', 1840, 34102, 2650, 33725, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '158.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35723, '2021-11-22', 1841, 34103, 2650, 33726, '3.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35724, '2021-11-22', 7708, 34104, 2650, NULL, '1.0000', '6.1400', '6.1400', '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 (35725, '2021-11-22', 1498, 34105, 2650, 33520, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35726, '2021-11-22', 7741, 34106, 2650, 36081, '1.0000', '5.8811', '5.8811', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35727, '2021-11-22', 7593, 34107, 2650, 41902, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35728, '2021-11-22', 7780, 34108, 2650, NULL, '1.0000', '2.6000', '2.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 (35729, '2021-11-22', 8052, 34109, 2650, 42015, '2.0000', '27.7481', '27.7481', '42.0000', '42.0000', '7.0000', 1, 0, NULL, 289);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35730, '2021-11-22', 7671, 34110, 2650, NULL, '1.0000', '15.5000', '15.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 (35731, '2021-11-22', 7586, 34111, 2650, NULL, '1.0000', '4.1700', '4.1700', '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 (35732, '2021-11-22', 1845, 34112, 2650, NULL, '1.0000', '19.5000', '19.5000', '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 (35733, '2021-11-22', 7444, 34113, 2650, 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 (35734, '2021-11-22', 7411, 34114, 2650, NULL, '2.0000', '1.3500', '1.3500', '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 (35735, '2021-11-22', 7781, 34115, 2650, NULL, '3.0000', '4.2500', '4.2500', '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 (35736, '2021-11-22', 9399, 34116, 2650, NULL, '1.0000', '0.4200', '0.4200', '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 (35737, '2021-11-22', 9638, 34117, 2650, NULL, '1.0000', '34.5000', '34.5000', '45.5000', '45.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35738, '2021-11-22', 8712, 34118, 2650, NULL, '1.0000', '7.0400', '7.0400', '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 (35739, '2021-11-22', 1578, 34119, 2650, 37402, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35740, '2021-11-22', 1339, 34120, 2650, NULL, '1.0000', '4.1934', '4.1934', '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 (35741, '2021-11-22', 1337, 34121, 2650, 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 (35742, '2021-11-22', 9380, 34122, 2650, 39548, '1.0000', '22.3200', '22.3200', '29.5000', '29.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35743, '2021-11-22', 7317, 34123, 2650, NULL, '1.0000', '29.3700', '29.3700', '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 (35744, '2021-11-22', 7848, 34124, 2650, NULL, '1.0000', '1.3500', '1.3500', '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 (35745, '2021-11-22', 1388, 34125, 2650, 36088, '1.0000', '5.6098', '5.6098', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35746, '2021-11-22', 7765, 34126, 2650, NULL, '3.0000', '16.0000', '16.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 (35747, '2021-11-22', 7507, 34127, 2650, NULL, '3.0000', '6.5000', '6.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 (35748, '2021-11-22', 7805, 34128, 2650, NULL, '3.0000', '2.1800', '2.1800', '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 (35749, '2021-11-22', 7641, 34129, 2650, NULL, '1.0000', '-12.5865', '-12.5865', '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 (35750, '2021-11-22', 8166, 34130, 2650, NULL, '1.0000', '4.6000', '4.6000', '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 (35751, '2021-11-22', 1665, 34131, 2650, 39577, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35752, '2021-11-22', 7507, 34132, 2650, NULL, '3.0000', '6.5000', '6.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 (35753, '2021-11-22', 2496, 34133, 2650, NULL, '1.0000', '0.5900', '0.5900', '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 (35754, '2021-11-22', 7672, 34134, 2650, NULL, '4.0000', '1.0200', '1.0200', '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 (35755, '2021-11-22', 2822, 34135, 2650, 30155, '7.0000', '2.7200', '2.7200', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35756, '2021-11-22', 1760, 34136, 2650, 39629, '4.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35757, '2021-11-22', 1708, 34137, 2650, NULL, '1.0000', '20.1900', '20.1900', '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 (35758, '2021-11-22', 2384, 34138, 2650, 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 (35759, '2021-11-22', 8765, 34139, 2650, 39427, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35760, '2021-11-22', 8745, 34140, 2650, 32144, '2.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35761, '2021-11-22', 7612, 34141, 2650, NULL, '2.0000', '1.1770', '1.1770', '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 (35762, '2021-11-22', 8485, 34142, 2650, NULL, '1.0000', '7.0400', '7.0400', '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 (35763, '2021-11-22', 7774, 34143, 2650, 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 (35764, '2021-11-22', 8077, 34144, 2650, NULL, '3.0000', '11.5000', '11.5000', '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 (35765, '2021-11-23', 1666, 34145, 2651, 41371, '2.0000', '2.7615', '2.7615', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35766, '2021-11-23', 2656, 34146, 2651, 32553, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35767, '2021-11-23', 8133, 34147, 2651, NULL, '1.0000', '-618.7699', '-618.7699', '10.5300', '10.5300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35768, '2021-11-23', 1529, 34148, 2651, NULL, '1.0000', '4.0029', '4.0029', '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 (35769, '2021-11-23', 1738, 34149, 2651, 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 (35770, '2021-11-23', 1665, 34150, 2651, 39909, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35771, '2021-11-23', 2352, 34151, 2651, NULL, '2.0000', '59.2000', '59.2000', '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 (35772, '2021-11-23', 1694, 34152, 2651, 34612, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35773, '2021-11-23', 1577, 34153, 2651, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35774, '2021-11-23', 1863, 34154, 2651, NULL, '1.0000', '1.3589', '1.3589', '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 (35775, '2021-11-23', 7866, 34155, 2651, NULL, '2.0000', '2.5000', '2.5000', '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 (35776, '2021-11-23', 2263, 34156, 2651, 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 (35777, '2021-11-23', 2293, 34157, 2651, NULL, '4.0000', '1.4400', '1.4400', '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 (35778, '2021-11-23', 2916, 34158, 2651, 38542, '1.0000', '14.9294', '14.9294', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35779, '2021-11-23', 1529, 34159, 2651, NULL, '1.0000', '4.0029', '4.0029', '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 (35780, '2021-11-23', 1863, 34160, 2651, NULL, '1.0000', '1.3589', '1.3589', '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 (35781, '2021-11-23', 2660, 34161, 2651, 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 (35782, '2021-11-23', 8765, 34162, 2651, 39995, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35783, '2021-11-23', 7888, 34163, 2651, NULL, '1.0000', '17.7800', '17.7800', '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 (35784, '2021-11-23', 2169, 34164, 2651, NULL, '2.0000', '1.1500', '1.1500', '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 (35785, '2021-11-23', 1520, 34165, 2651, NULL, '2.0000', '1.4700', '1.4700', '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 (35786, '2021-11-23', 2825, 34166, 2651, NULL, '1.0000', '12.0000', '12.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 (35787, '2021-11-23', 1699, 34167, 2651, NULL, '1.0000', '3.2000', '3.2000', '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 (35788, '2021-11-23', 1674, 34168, 2651, NULL, '1.0000', '3.2473', '3.2473', '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 (35789, '2021-11-23', 2105, 34169, 2651, 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 (35790, '2021-11-23', 7703, 34170, 2651, NULL, '1.0000', '22.9900', '22.9900', '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 (35791, '2021-11-23', 8133, 34171, 2651, NULL, '1.0000', '-618.7699', '-618.7699', '10.5300', '10.5300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35792, '2021-11-23', 2908, 34172, 2651, 24963, '4.0000', '0.2700', '0.2700', '0.5000', '0.5000', '17.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 (35793, '2021-11-23', 9154, 34173, 2652, NULL, '1.0000', '10.6800', '10.6800', '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 (35794, '2021-11-23', 1305, 34174, 2652, 34636, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35795, '2021-11-23', 9556, 34175, 2652, 39822, '3.0000', '0.4814', '0.4814', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35796, '2021-11-23', 7466, 34176, 2653, NULL, '14.0000', '1.5100', '1.5100', '3.5000', '3.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 (35797, '2021-11-23', 8745, 34177, 2653, 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 (35798, '2021-11-23', 2965, 34178, 2653, NULL, '1.0000', '5.0000', '5.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 (35799, '2021-11-23', 2163, 34179, 2654, 23162, '1.0000', '22.5600', '22.5600', '30.0000', '30.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 (35800, '2021-11-23', 3026, 34180, 2655, 23976, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '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 (35801, '2021-11-23', 1790, 34181, 2656, NULL, '1.0000', '16.9500', '16.9500', '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 (35802, '2021-11-23', 2624, 34182, 2656, 19678, '-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 (35803, '2021-11-23', 2624, 34182, 2656, NULL, '3.0000', '15.0000', '15.0000', '20.0000', '20.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 (35804, '2021-11-23', 2289, 34183, 2656, 2949, '-42.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 (35805, '2021-11-23', 2289, 34183, 2656, NULL, '48.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35806, '2021-11-23', 7411, 34184, 2656, 33804, '5.0000', '1.3500', '1.3500', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35807, '2021-11-23', 2411, 34185, 2656, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.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 (35808, '2021-11-23', 2280, 34186, 2656, 33794, '2.0000', '3.0700', '3.0700', '4.5000', '4.5000', '32.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35809, '2021-11-23', 7411, 34187, 2656, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35810, '2021-11-23', 1371, 34188, 2656, 10169, '1.0000', '5.5000', '5.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 (35811, '2021-11-23', 1935, 34189, 2656, 5586, '-37.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 (35812, '2021-11-23', 1935, 34189, 2656, NULL, '38.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35813, '2021-11-23', 1812, 34190, 2656, 8224, '-31.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 (35814, '2021-11-23', 1812, 34190, 2656, NULL, '32.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35815, '2021-11-23', 2825, 34191, 2656, NULL, '1.0000', '12.0000', '12.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 (35816, '2021-11-23', 1840, 34192, 2656, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.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 (35817, '2021-11-23', 2068, 34193, 2657, 5568, '-15.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 (35818, '2021-11-23', 2068, 34193, 2657, NULL, '16.0000', '13.1000', '13.1000', '17.0000', '17.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 (35819, '2021-11-23', 2136, 34194, 2657, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '90.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 (35820, '2021-11-23', 1841, 34195, 2658, 645, '3.0000', '142.5780', '142.5780', '0.5000', '0.5000', '15.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 (35821, '2021-11-23', 9577, 34196, 2658, NULL, '2.0000', '0.3200', '0.3200', '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 (35822, '2021-11-23', 1805, 34197, 2658, 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 (35823, '2021-11-23', 2643, 34198, 2658, 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 (35824, '2021-11-23', 8746, 34199, 2658, NULL, '2.0000', '3.1500', '3.1500', '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 (35825, '2021-11-23', 9565, 34200, 2658, NULL, '1.0000', '4.5000', '4.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 (35826, '2021-11-23', 1427, 34201, 2658, NULL, '2.0000', '14.2181', '14.2181', '20.5000', '20.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 (35827, '2021-11-23', 2317, 34202, 2658, 3473, '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 (35828, '2021-11-23', 7411, 34203, 2658, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35829, '2021-11-23', 2252, 34204, 2658, 2789, '-14.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 (35830, '2021-11-23', 2252, 34204, 2658, NULL, '15.0000', '9.5000', '9.5000', '12.5000', '12.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 (35831, '2021-11-23', 8344, 34205, 2658, NULL, '2.0000', '18.3800', '18.3800', '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 (35832, '2021-11-23', 1695, 34206, 2658, 12925, '-3.0000', '15.5000', '15.5000', '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 (35833, '2021-11-23', 1695, 34206, 2658, NULL, '4.0000', '15.5000', '15.5000', '20.0000', '20.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 (35834, '2021-11-23', 8208, 34207, 2659, NULL, '2.0000', '33.0000', '33.0000', '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 (35835, '2021-11-23', 7576, 34208, 2659, 37777, '1.0000', '6.9100', '6.9100', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35836, '2021-11-23', 7507, 34209, 2660, NULL, '3.0000', '6.5000', '6.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 (35837, '2021-11-23', 7781, 34210, 2660, NULL, '3.0000', '4.2500', '4.2500', '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 (35838, '2021-11-23', 7836, 34211, 2660, NULL, '1.0000', '9.0000', '9.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35839, '2021-11-23', 7385, 34212, 2660, 41944, '3.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35840, '2021-11-23', 8457, 34213, 2660, NULL, '1.0000', '0.7500', '0.7500', '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 (35841, '2021-11-23', 8308, 34214, 2660, NULL, '1.0000', '11.0000', '11.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 (35842, '2021-11-23', 7910, 34215, 2660, 39619, '1.0000', '3.8467', '3.8467', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35843, '2021-11-23', 7707, 34216, 2660, NULL, '1.0000', '6.0124', '6.0124', '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 (35844, '2021-11-23', 7411, 34217, 2660, NULL, '1.0000', '1.3500', '1.3500', '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 (35845, '2021-11-23', 7885, 34218, 2660, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35846, '2021-11-23', 1672, 34219, 2660, 32908, '10.0000', '2.9200', '2.9200', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35847, '2021-11-23', 7641, 34220, 2660, NULL, '1.0000', '-12.5865', '-12.5865', '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 (35848, '2021-11-23', 7438, 34221, 2660, NULL, '1.0000', '28.6900', '28.6900', '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 (35849, '2021-11-23', 8161, 34222, 2660, 30172, '1.0000', '17.5473', '17.5473', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35850, '2021-11-23', 8161, 34222, 2660, NULL, '1.0000', '17.5473', '17.5473', '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 (35851, '2021-11-23', 7933, 34223, 2660, NULL, '1.0000', '5.5000', '5.5000', '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 (35852, '2021-11-23', 8359, 34224, 2660, NULL, '1.0000', '20.4289', '20.4289', '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 (35853, '2021-11-23', 9303, 34225, 2660, NULL, '1.0000', '9.0000', '9.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 (35854, '2021-11-23', 1841, 34226, 2660, 33726, '3.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '92.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35855, '2021-11-23', 2104, 34227, 2660, NULL, '2.0000', '0.2000', '0.2000', '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 (35856, '2021-11-23', 7375, 34228, 2660, 30010, '4.0000', '4.7000', '4.7000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35857, '2021-11-23', 7375, 34228, 2660, NULL, '6.0000', '4.7000', '4.7000', '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 (35858, '2021-11-23', 9380, 34229, 2660, 39548, '1.0000', '22.3200', '22.3200', '29.5000', '29.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35859, '2021-11-23', 7981, 34230, 2660, NULL, '5.0000', '6.0000', '6.0000', '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 (35860, '2021-11-23', 7927, 34231, 2660, 41935, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35861, '2021-11-23', 1840, 34232, 2660, 33725, '6.0000', '0.2400', '0.2400', '0.3000', '0.3000', '152.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35862, '2021-11-23', 8215, 34233, 2660, NULL, '1.0000', '11.0000', '11.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 (35863, '2021-11-23', 7674, 34234, 2660, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '122.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35864, '2021-11-23', 9094, 34235, 2660, NULL, '1.0000', '6.0000', '6.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 (35865, '2021-11-23', 7419, 34236, 2660, 30147, '1.0000', '24.8900', '24.8900', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35866, '2021-11-23', 1634, 34237, 2660, 36093, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35867, '2021-11-23', 8116, 34238, 2660, NULL, '1.0000', '57.5000', '57.5000', '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 (35868, '2021-11-23', 7473, 34239, 2660, NULL, '4.0000', '15.4731', '15.4731', '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 (35869, '2021-11-23', 7780, 34240, 2660, NULL, '1.0000', '2.6000', '2.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 (35870, '2021-11-23', 7779, 34241, 2660, NULL, '1.0000', '8.3800', '8.3800', '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 (35871, '2021-11-23', 7708, 34242, 2660, NULL, '1.0000', '6.1400', '6.1400', '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 (35872, '2021-11-23', 7671, 34243, 2660, NULL, '1.0000', '15.5000', '15.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 (35873, '2021-11-23', 8918, 34244, 2660, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35874, '2021-11-23', 7712, 34245, 2660, NULL, '1.0000', '0.3300', '0.3300', '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 (35875, '2021-11-23', 7967, 34246, 2660, 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 (35876, '2021-11-23', 7750, 34247, 2660, NULL, '1.0000', '34.9000', '34.9000', '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 (35877, '2021-11-23', 7684, 34248, 2660, NULL, '1.0000', '9.0000', '9.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 (35878, '2021-11-23', 7703, 34249, 2660, NULL, '2.0000', '22.9900', '22.9900', '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 (35879, '2021-11-23', 9154, 34250, 2660, 30190, '1.0000', '10.6800', '10.6800', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35880, '2021-11-23', 9154, 34250, 2660, NULL, '1.0000', '10.6800', '10.6800', '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 (35881, '2021-11-23', 2315, 34251, 2660, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35882, '2021-11-23', 7787, 34252, 2660, NULL, '1.0000', '3.9600', '3.9600', '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 (35883, '2021-11-23', 7776, 34253, 2660, NULL, '1.0000', '8.0000', '8.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 (35884, '2021-11-23', 2102, 34254, 2660, 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 (35885, '2021-11-23', 7411, 34255, 2660, NULL, '2.0000', '1.3500', '1.3500', '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 (35886, '2021-11-23', 8735, 34256, 2660, NULL, '1.0000', '5.6000', '5.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 (35887, '2021-11-23', 2965, 34257, 2660, 32149, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35888, '2021-11-23', 8889, 34258, 2660, 40424, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35889, '2021-11-23', 7803, 34259, 2660, NULL, '1.0000', '1.8200', '1.8200', '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 (35890, '2021-11-23', 9621, 34260, 2660, 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 (35891, '2021-11-23', 9533, 34261, 2660, 39431, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35892, '2021-11-23', 9399, 34262, 2660, NULL, '1.0000', '0.4200', '0.4200', '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 (35893, '2021-11-23', 7664, 34263, 2660, 41938, '1.0000', '6.7788', '6.7788', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35894, '2021-11-23', 7641, 34264, 2660, NULL, '1.0000', '-12.5865', '-12.5865', '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 (35895, '2021-11-23', 7965, 34265, 2660, NULL, '14.0000', '5.6100', '5.6100', '6.5000', '6.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 (35896, '2021-11-23', 2339, 34266, 2660, 37410, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35897, '2021-11-23', 8166, 34267, 2660, NULL, '1.0000', '4.6000', '4.6000', '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 (35898, '2021-11-23', 7514, 34268, 2660, NULL, '1.0000', '12.9983', '12.9983', '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 (35899, '2021-11-23', 9505, 34269, 2660, NULL, '1.0000', '77.0000', '77.0000', '102.0000', '102.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35900, '2021-11-23', 7357, 34270, 2660, NULL, '1.0000', '11.7500', '11.7500', '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 (35901, '2021-11-23', 7411, 34271, 2660, NULL, '2.0000', '1.3500', '1.3500', '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 (35902, '2021-11-23', 7447, 34272, 2660, NULL, '3.0000', '19.1100', '19.1100', '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 (35903, '2021-11-23', 8277, 34273, 2660, NULL, '1.0000', '5.0000', '5.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 (35904, '2021-11-23', 7819, 34274, 2660, NULL, '1.0000', '9.5000', '9.5000', '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 (35905, '2021-11-23', 7390, 34275, 2660, NULL, '1.0000', '18.2100', '18.2100', '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 (35906, '2021-11-23', 7753, 34276, 2660, 41911, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35907, '2021-11-23', 8858, 34277, 2660, NULL, '1.0000', '8.5000', '8.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 (35908, '2021-11-23', 7716, 34278, 2660, NULL, '1.0000', '0.0000', '0.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 (35909, '2021-11-23', 8680, 34279, 2660, NULL, '1.0000', '2.0000', '2.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 (35910, '2021-11-23', 8193, 34280, 2660, NULL, '1.0000', '25.8000', '25.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 (35911, '2021-11-23', 2315, 34281, 2660, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35912, '2021-11-23', 9337, 34282, 2660, NULL, '3.0000', '6.8067', '6.8067', '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 (35913, '2021-11-23', 2287, 34283, 2660, NULL, '4.0000', '2.3000', '2.3000', '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 (35914, '2021-11-23', 1840, 34284, 2660, 33725, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '154.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35915, '2021-11-23', 7411, 34285, 2660, NULL, '1.0000', '1.3500', '1.3500', '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 (35916, '2021-11-23', 7886, 34286, 2660, NULL, '1.0000', '2.8333', '2.8333', '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 (35917, '2021-11-23', 7385, 34287, 2660, 41944, '1.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35918, '2021-11-23', 7411, 34288, 2660, NULL, '1.0000', '1.3500', '1.3500', '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 (35919, '2021-11-23', 7672, 34289, 2660, NULL, '1.0000', '1.0200', '1.0200', '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 (35920, '2021-11-23', 8142, 34290, 2660, 37417, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35921, '2021-11-23', 7752, 34291, 2660, 41871, '1.0000', '-30242.8593', '-30242.8593', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35922, '2021-11-23', 1840, 34292, 2661, NULL, '1.0000', '0.2400', '0.2400', '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 (35923, '2021-11-23', 1841, 34293, 2661, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35924, '2021-11-23', 1699, 34294, 2661, NULL, '1.0000', '3.2000', '3.2000', '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 (35925, '2021-11-23', 1651, 34295, 2661, 41407, '2.0000', '8.4739', '8.4739', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35926, '2021-11-23', 2169, 34296, 2661, NULL, '1.0000', '1.1500', '1.1500', '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 (35927, '2021-11-23', 9606, 34297, 2661, 40003, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35928, '2021-11-23', 1427, 34298, 2661, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35929, '2021-11-23', 2250, 34299, 2661, 33375, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35930, '2021-11-23', 3058, 34300, 2661, 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 (35931, '2021-11-23', 2865, 34301, 2661, NULL, '1.0000', '2.8000', '2.8000', '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 (35932, '2021-11-23', 2821, 34302, 2661, NULL, '2.0000', '3.5100', '3.5100', '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 (35933, '2021-11-23', 1935, 34303, 2661, 41370, '2.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35934, '2021-11-23', 1674, 34304, 2661, NULL, '3.0000', '3.2473', '3.2473', '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 (35935, '2021-11-23', 7620, 34305, 2661, 39874, '2.0000', '9.3100', '9.3100', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35936, '2021-11-23', 2106, 34306, 2661, 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 (35937, '2021-11-23', 2105, 34307, 2661, 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 (35938, '2021-11-23', 1339, 34308, 2661, NULL, '1.0000', '1.4463', '1.4463', '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 (35939, '2021-11-23', 1601, 34309, 2661, 31098, '1.0000', '40.6380', '40.6380', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35940, '2021-11-23', 8132, 34310, 2661, NULL, '1.0000', '4.7200', '4.7200', '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 (35941, '2021-11-23', 7638, 34311, 2661, 39773, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35942, '2021-11-23', 2941, 34312, 2661, NULL, '1.0000', '2.6600', '2.6600', '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 (35943, '2021-11-23', 7380, 34313, 2661, 39764, '1.0000', '8.1295', '8.1295', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35944, '2021-11-23', 7447, 34314, 2661, NULL, '8.0000', '19.1100', '19.1100', '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 (35945, '2021-11-23', 1428, 34315, 2661, 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 (35946, '2021-11-23', 7411, 34316, 2661, NULL, '1.0000', '1.3500', '1.3500', '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 (35947, '2021-11-23', 7514, 34317, 2661, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35948, '2021-11-23', 2068, 34318, 2661, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35949, '2021-11-23', 2136, 34319, 2661, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35950, '2021-11-23', 1965, 34320, 2661, NULL, '1.0000', '17.2400', '17.2400', '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 (35951, '2021-11-23', 8288, 34321, 2661, 39785, '2.0000', '20.0000', '20.0000', '1.8000', '1.8000', '32.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35952, '2021-11-23', 1888, 34322, 2661, 42105, '1.0000', '16.4667', '16.4667', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35953, '2021-11-23', 7411, 34323, 2661, NULL, '1.0000', '1.3500', '1.3500', '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 (35954, '2021-11-23', 1576, 34324, 2661, NULL, '1.0000', '7.0500', '7.0500', '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 (35955, '2021-11-23', 1965, 34325, 2661, NULL, '1.0000', '17.2400', '17.2400', '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 (35956, '2021-11-23', 7564, 34326, 2661, NULL, '1.0000', '0.6400', '0.6400', '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 (35957, '2021-11-23', 2298, 34327, 2661, 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 (35958, '2021-11-23', 9608, 34328, 2661, 38934, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35959, '2021-11-23', 2332, 34329, 2661, 38567, '1.0000', '5.0900', '5.0900', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35960, '2021-11-23', 9556, 34330, 2661, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35961, '2021-11-23', 1337, 34331, 2661, 39805, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35962, '2021-11-23', 2635, 34332, 2661, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35963, '2021-11-23', 7317, 34333, 2661, NULL, '1.0000', '19.5500', '19.5500', '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 (35964, '2021-11-23', 7564, 34334, 2661, NULL, '1.0000', '0.6400', '0.6400', '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 (35965, '2021-11-23', 2283, 34335, 2661, 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 (35966, '2021-11-23', 2730, 34336, 2661, 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 (35967, '2021-11-23', 7411, 34337, 2661, NULL, '1.0000', '1.3500', '1.3500', '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 (35968, '2021-11-23', 7514, 34338, 2661, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35969, '2021-11-23', 9482, 34339, 2661, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35970, '2021-11-23', 7762, 34340, 2661, NULL, '1.0000', '5.1000', '5.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 (35971, '2021-11-23', 2726, 34341, 2661, NULL, '1.0000', '2.6400', '2.6400', '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 (35972, '2021-11-23', 2712, 34342, 2661, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35973, '2021-11-23', 9215, 34343, 2661, NULL, '1.0000', '2.0000', '2.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 (35974, '2021-11-23', 2169, 34344, 2661, NULL, '1.0000', '1.1500', '1.1500', '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 (35975, '2021-11-23', 2506, 34345, 2661, 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 (35976, '2021-11-23', 2315, 34346, 2661, NULL, '2.0000', '0.8556', '0.8556', '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 (35977, '2021-11-23', 8761, 34347, 2661, NULL, '1.0000', '5.4200', '5.4200', '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 (35978, '2021-11-23', 1330, 34348, 2662, 39398, '1.0000', '494.9994', '494.9994', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35979, '2021-11-23', 2713, 34349, 2662, 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 (35980, '2021-11-23', 7616, 34350, 2662, NULL, '1.0000', '21.5000', '21.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 (35981, '2021-11-23', 8941, 34351, 2662, NULL, '1.0000', '12.0000', '12.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 (35982, '2021-11-23', 7317, 34352, 2662, NULL, '1.0000', '29.3700', '29.3700', '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 (35983, '2021-11-23', 7509, 34353, 2662, 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 (35984, '2021-11-23', 9266, 34354, 2662, 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 (35985, '2021-11-23', 7317, 34355, 2662, NULL, '1.0000', '29.3700', '29.3700', '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 (35986, '2021-11-23', 8756, 34356, 2662, NULL, '1.0000', '7.5051', '7.5051', '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 (35987, '2021-11-23', 2655, 34357, 2662, 31905, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35988, '2021-11-23', 8941, 34358, 2662, NULL, '1.0000', '12.0000', '12.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 (35989, '2021-11-23', 9266, 34359, 2662, 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 (35990, '2021-11-23', 2315, 34360, 2662, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '36.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35991, '2021-11-23', 9620, 34361, 2662, 41908, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35992, '2021-11-23', 7411, 34362, 2662, NULL, '1.0000', '1.3500', '1.3500', '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 (35993, '2021-11-23', 7756, 34363, 2662, NULL, '1.0000', '21.7700', '21.7700', '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 (35994, '2021-11-23', 7427, 34364, 2662, 37371, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35995, '2021-11-23', 1760, 34365, 2662, 39629, '1.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35996, '2021-11-23', 7666, 34366, 2662, NULL, '1.0000', '0.4000', '0.4000', '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 (35997, '2021-11-23', 8067, 34367, 2662, NULL, '1.0000', '29.1700', '29.1700', '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 (35998, '2021-11-23', 8497, 34368, 2662, NULL, '1.0000', '337.1200', '337.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 (35999, '2021-11-23', 7671, 34369, 2662, NULL, '3.0000', '15.5000', '15.5000', '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 (36000, '2021-11-23', 8539, 34370, 2662, 31000, '10.0000', '4.4300', '4.4300', '0.8000', '0.8000', '26.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36001, '2021-11-23', 7717, 34371, 2662, NULL, '1.0000', '6.0000', '6.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 (36002, '2021-11-23', 8247, 34372, 2662, NULL, '4.0000', '54.0000', '54.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 (36003, '2021-11-23', 8466, 34373, 2662, NULL, '30.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '-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 (36004, '2021-11-23', 9089, 34374, 2662, 40445, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36005, '2021-11-23', 9089, 34374, 2662, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36006, '2021-11-23', 9156, 34375, 2662, NULL, '1.0000', '5.8900', '5.8900', '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 (36007, '2021-11-23', 2284, 34376, 2662, 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 (36008, '2021-11-23', 7411, 34377, 2662, NULL, '1.0000', '1.3500', '1.3500', '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 (36009, '2021-11-23', 9214, 34378, 2662, NULL, '1.0000', '9.3946', '9.3946', '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 (36010, '2021-11-23', 8350, 34379, 2662, NULL, '1.0000', '12.0000', '12.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 (36011, '2021-11-23', 8596, 34380, 2662, NULL, '1.0000', '17.0000', '17.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 (36012, '2021-11-23', 9254, 34381, 2663, 41955, '1.0000', '20.0000', '20.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36013, '2021-11-23', 7496, 34382, 2663, NULL, '1.0000', '0.9600', '0.9600', '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 (36014, '2021-11-23', 1689, 34383, 2664, 4897, '-2.0000', '60.7198', '60.7198', '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 (36015, '2021-11-23', 1689, 34383, 2664, NULL, '3.0000', '60.7198', '60.7198', '18.0000', '18.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 (36016, '2021-11-23', 2073, 34384, 2664, 22247, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '13.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 (36017, '2021-11-23', 2712, 34385, 2664, 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 (36018, '2021-11-23', 1666, 34386, 2664, 3236, '-12.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 (36019, '2021-11-23', 1666, 34386, 2664, NULL, '13.0000', '2.7100', '2.7100', '3.5000', '3.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 (36020, '2021-11-23', 8532, 34387, 2664, NULL, '1.0000', '22.0000', '22.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 (36021, '2021-11-23', 2135, 34388, 2664, 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 (36022, '2021-11-23', 2712, 34389, 2664, 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 (36023, '2021-11-23', 1349, 34390, 2664, 245, '1.0000', '20.8300', '20.8300', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36024, '2021-11-23', 1563, 34391, 2664, 1638, '-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 (36025, '2021-11-23', 1563, 34391, 2664, 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 (36026, '2021-11-23', 1857, 34392, 2664, 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 (36027, '2021-11-23', 3012, 34393, 2664, NULL, '1.0000', '4.7000', '4.7000', '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 (36028, '2021-11-23', 9438, 34394, 2664, NULL, '1.0000', '30.0000', '30.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 (36029, '2021-11-23', 2317, 34395, 2664, 3473, '1.0000', '15.0000', '15.0000', '18.0000', '18.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 (36030, '2021-11-23', 2681, 34396, 2664, 12164, '-12.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 (36031, '2021-11-23', 2681, 34396, 2664, NULL, '14.0000', '12.5000', '12.5000', '16.5000', '16.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 (36032, '2021-11-23', 1525, 34397, 2664, NULL, '4.0000', '4.9100', '4.9100', '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 (36033, '2021-11-23', 7459, 34398, 2664, NULL, '6.0000', '2.3500', '2.3500', '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 (36034, '2021-11-23', 2288, 34399, 2664, NULL, '1.0000', '7.5900', '7.5900', '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 (36035, '2021-11-23', 1826, 34400, 2664, 15039, '-5.0000', '0.2600', '0.2600', '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 (36036, '2021-11-23', 1826, 34400, 2664, NULL, '6.0000', '0.2600', '0.2600', '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 (36037, '2021-11-23', 1706, 34401, 2664, 19677, '-2.0000', '15.2700', '15.2700', '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 (36038, '2021-11-23', 1706, 34401, 2664, NULL, '3.0000', '15.2700', '15.2700', '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 (36039, '2021-11-23', 1585, 34402, 2664, 7602, '-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 (36040, '2021-11-23', 1585, 34402, 2664, NULL, '3.0000', '13.0000', '13.0000', '17.5000', '17.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 (36041, '2021-11-23', 2236, 34403, 2664, 2780, '-6.0000', '5.6599', '5.6599', '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 (36042, '2021-11-23', 2236, 34403, 2664, NULL, '8.0000', '5.6599', '5.6599', '8.0000', '8.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 (36043, '2021-11-23', 1935, 34404, 2664, 5586, '-38.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 (36044, '2021-11-23', 1935, 34404, 2664, NULL, '40.0000', '0.7200', '0.7200', '2.0000', '2.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 (36045, '2021-11-23', 2491, 34405, 2664, 6228, '-15.0000', '12.2000', '12.2000', '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 (36046, '2021-11-23', 2491, 34405, 2664, NULL, '17.0000', '12.2000', '12.2000', '17.0000', '17.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 (36047, '2021-11-23', 1621, 34406, 2664, 7385, '-12.0000', '6.6000', '6.6000', '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 (36048, '2021-11-23', 1621, 34406, 2664, NULL, '13.0000', '6.6000', '6.6000', '7.5000', '7.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 (36049, '2021-11-23', 2317, 34407, 2664, 3473, '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 (36050, '2021-11-23', 2649, 34408, 2664, 11163, '-3.0000', '71.9188', '71.9188', '101.0000', '101.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36051, '2021-11-23', 2649, 34408, 2664, NULL, '4.0000', '71.9188', '71.9188', '101.0000', '101.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 (36052, '2021-11-23', 1700, 34409, 2664, 6227, '-2.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 (36053, '2021-11-23', 1700, 34409, 2664, NULL, '4.0000', '8.0000', '8.0000', '11.0000', '11.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 (36054, '2021-11-23', 1573, 34410, 2664, 9746, '-3.0000', '29.9042', '29.9042', '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 (36055, '2021-11-23', 1573, 34410, 2664, NULL, '4.0000', '29.9042', '29.9042', '30.0000', '30.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 (36056, '2021-11-23', 9520, 34411, 2664, 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 (36057, '2021-11-23', 1592, 34412, 2664, 6223, '-4.0000', '35.9000', '35.9000', '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 (36058, '2021-11-23', 1592, 34412, 2664, NULL, '5.0000', '35.9000', '35.9000', '44.0000', '44.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 (36059, '2021-11-23', 1744, 34413, 2664, NULL, '1.0000', '26.5281', '26.5281', '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 (36060, '2021-11-23', 7836, 34414, 2664, NULL, '2.0000', '9.0000', '9.0000', '27.5000', '27.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 (36061, '2021-11-23', 2148, 34415, 2664, 1363, '1.0000', '35.0000', '35.0000', '46.0000', '46.0000', '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 (36062, '2021-11-23', 7411, 34416, 2664, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36063, '2021-11-23', 2283, 34417, 2664, 2943, '-5.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 (36064, '2021-11-23', 2283, 34417, 2664, NULL, '6.0000', '1.4300', '1.4300', '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 (36065, '2021-11-23', 1812, 34418, 2664, 8224, '-32.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 (36066, '2021-11-23', 1812, 34418, 2664, NULL, '33.0000', '7.8900', '7.8900', '10.5000', '10.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 (36067, '2021-11-23', 1488, 34419, 2664, 22319, '1.0000', '3.9200', '3.9200', '5.5000', '5.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 (36068, '2021-11-23', 1812, 34420, 2664, 8224, '-32.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 (36069, '2021-11-23', 1812, 34420, 2664, NULL, '33.0000', '7.8900', '7.8900', '10.5000', '10.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 (36070, '2021-11-23', 2809, 34421, 2664, 33060, '2.0000', '28.0000', '28.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36071, '2021-11-23', 2614, 34422, 2664, 9739, '-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 (36072, '2021-11-23', 2614, 34422, 2664, NULL, '3.0000', '52.5100', '52.5100', '71.0000', '71.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 (36073, '2021-11-23', 2698, 34423, 2664, NULL, '1.0000', '36.8600', '36.8600', '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 (36074, '2021-11-23', 1504, 34424, 2664, NULL, '20.0000', '1.5000', '1.5000', '2.2000', '2.2000', '-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 (36075, '2021-11-23', 2681, 34425, 2664, 12164, '-12.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 (36076, '2021-11-23', 2681, 34425, 2664, NULL, '13.0000', '12.5000', '12.5000', '16.5000', '16.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 (36077, '2021-11-23', 1525, 34426, 2664, NULL, '2.0000', '4.9100', '4.9100', '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 (36078, '2021-11-23', 1812, 34427, 2664, 8224, '-32.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 (36079, '2021-11-23', 1812, 34427, 2664, NULL, '33.0000', '7.8900', '7.8900', '10.5000', '10.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 (36080, '2021-11-23', 9089, 34428, 2664, NULL, '1.0000', '3.8000', '3.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 (36081, '2021-11-23', 1846, 34429, 2664, 12032, '-8.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 (36082, '2021-11-23', 1846, 34429, 2664, NULL, '9.0000', '12.0000', '12.0000', '16.0000', '16.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 (36083, '2021-11-23', 7411, 34430, 2664, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36084, '2021-11-23', 2280, 34431, 2664, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '31.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36085, '2021-11-23', 2169, 34432, 2664, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '18.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 (36086, '2021-11-23', 9521, 34433, 2664, 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 (36087, '2021-11-23', 1928, 34434, 2664, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '3.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 (36088, '2021-11-23', 2858, 34435, 2664, 17772, '-11.0000', '1.0000', '1.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 (36089, '2021-11-23', 2858, 34435, 2664, NULL, '12.0000', '1.0000', '1.0000', '5.0000', '5.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 (36090, '2021-11-23', 1518, 34436, 2664, 6524, '-4.0000', '6.9000', '6.9000', '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 (36091, '2021-11-23', 1518, 34436, 2664, NULL, '5.0000', '6.9000', '6.9000', '10.0000', '10.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 (36092, '2021-11-23', 1875, 34437, 2664, 6949, '-25.0000', '2.4000', '2.4000', '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 (36093, '2021-11-23', 1875, 34437, 2664, NULL, '33.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-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 (36094, '2021-11-23', 7706, 34438, 2664, NULL, '1.0000', '6.2500', '6.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 (36095, '2021-11-23', 2384, 34439, 2664, 12014, '10.0000', '0.4000', '0.4000', '0.7000', '0.7000', '81.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 (36096, '2021-11-23', 2712, 34440, 2664, 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 (36097, '2021-11-23', 1912, 34441, 2664, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '5.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 (36098, '2021-11-23', 2712, 34442, 2664, 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 (36099, '2021-11-23', 2916, 34443, 2664, 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 (36100, '2021-11-23', 2136, 34444, 2664, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '89.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 (36101, '2021-11-23', 1584, 34445, 2664, 7601, '-6.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 (36102, '2021-11-23', 1584, 34445, 2664, NULL, '7.0000', '90.0000', '90.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 (36103, '2021-11-23', 2916, 34446, 2664, 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 (36104, '2021-11-23', 2109, 34447, 2664, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '110.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 (36105, '2021-11-23', 2360, 34448, 2664, 3862, '-31.0000', '0.5200', '0.5200', '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 (36106, '2021-11-23', 2360, 34448, 2664, NULL, '41.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (36107, '2021-11-23', 7504, 34449, 2664, NULL, '1.0000', '1.2400', '1.2400', '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 (36108, '2021-11-23', 2277, 34450, 2664, 2937, '-16.0000', '0.7800', '0.7800', '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 (36109, '2021-11-23', 2277, 34450, 2664, NULL, '18.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-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 (36110, '2021-11-23', 2858, 34451, 2664, 17772, '-11.0000', '1.0000', '1.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 (36111, '2021-11-23', 2858, 34451, 2664, NULL, '12.0000', '1.0000', '1.0000', '5.0000', '5.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 (36112, '2021-11-23', 1700, 34452, 2664, 6227, '-2.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 (36113, '2021-11-23', 1700, 34452, 2664, NULL, '3.0000', '8.0000', '8.0000', '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 (36114, '2021-11-23', 1999, 34453, 2664, 6362, '-3.0000', '6.0000', '6.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 (36115, '2021-11-23', 1999, 34453, 2664, NULL, '5.0000', '6.0000', '6.0000', '8.5000', '8.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 (36116, '2021-11-23', 1651, 34454, 2664, 3222, '-35.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 (36117, '2021-11-23', 1651, 34454, 2664, NULL, '36.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (36118, '2021-11-23', 2362, 34455, 2664, 3864, '-20.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 (36119, '2021-11-23', 2362, 34455, 2664, NULL, '30.0000', '8.8300', '8.8300', '12.0000', '12.0000', '-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 (36120, '2021-11-23', 1812, 34456, 2664, 8224, '-32.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 (36121, '2021-11-23', 1812, 34456, 2664, NULL, '35.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36122, '2021-11-23', 2958, 34457, 2664, 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 (36123, '2021-11-23', 1411, 34458, 2665, 33816, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36124, '2021-11-23', 1432, 34459, 2665, 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 (36125, '2021-11-23', 2858, 34460, 2665, 17772, '-13.0000', '1.0000', '1.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 (36126, '2021-11-23', 2858, 34460, 2665, NULL, '14.0000', '1.0000', '1.0000', '5.0000', '5.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 (36127, '2021-11-23', 1856, 34461, 2665, 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 (36128, '2021-11-24', 9667, 34462, 2666, NULL, '2.0000', '17.0000', '17.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 (36129, '2021-11-24', 7951, 34463, 2667, NULL, '2.0000', '14.6000', '14.6000', '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 (36130, '2021-11-24', 9668, 34464, 2667, 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 (36131, '2021-11-24', 9669, 34465, 2668, 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 (36132, '2021-11-24', 2345, 34466, 2669, 3848, '-1.0000', '7.6400', '7.6400', '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 (36133, '2021-11-24', 2345, 34466, 2669, NULL, '2.0000', '7.6400', '7.6400', '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 (36134, '2021-11-24', 1590, 34467, 2669, 22260, '2.0000', '1.7100', '1.7100', '2.3000', '2.3000', '20.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 (36135, '2021-11-24', 9634, 34468, 2669, NULL, '3.0000', '4.8000', '4.8000', '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 (36136, '2021-11-24', 2511, 34469, 2669, 9740, '-8.0000', '8.5000', '8.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 (36137, '2021-11-24', 2511, 34469, 2669, NULL, '9.0000', '8.5000', '8.5000', '12.0000', '12.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 (36138, '2021-11-24', 1409, 34470, 2669, 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 (36139, '2021-11-24', 2887, 34471, 2669, 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 (36140, '2021-11-24', 7922, 34472, 2669, NULL, '1.0000', '6.9800', '6.9800', '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 (36141, '2021-11-24', 2379, 34473, 2669, 4032, '-29.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 (36142, '2021-11-24', 2379, 34473, 2669, NULL, '30.0000', '1.5900', '1.5900', '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 (36143, '2021-11-24', 2362, 34474, 2669, 3864, '-30.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 (36144, '2021-11-24', 2362, 34474, 2669, NULL, '40.0000', '8.8300', '8.8300', '12.0000', '12.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 (36145, '2021-11-24', 1620, 34475, 2669, 8955, '1.0000', '408.8259', '408.8259', '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 (36146, '2021-11-24', 1519, 34476, 2669, 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 (36147, '2021-11-24', 2858, 34477, 2669, 17772, '-14.0000', '1.0000', '1.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 (36148, '2021-11-24', 2858, 34477, 2669, NULL, '15.0000', '1.0000', '1.0000', '5.0000', '5.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 (36149, '2021-11-24', 1602, 34478, 2669, 5897, '-52.0000', '6.7859', '6.7859', '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 (36150, '2021-11-24', 1602, 34478, 2669, NULL, '53.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (36151, '2021-11-24', 2229, 34479, 2669, 1704, '-2.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 (36152, '2021-11-24', 2229, 34479, 2669, NULL, '3.0000', '24.5000', '24.5000', '28.0000', '28.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 (36153, '2021-11-24', 1670, 34480, 2669, 10163, '-7.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 (36154, '2021-11-24', 1670, 34480, 2669, NULL, '8.0000', '19.5000', '19.5000', '26.0000', '26.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 (36155, '2021-11-24', 1864, 34481, 2669, 7389, '-3.0000', '6.0500', '6.0500', '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 (36156, '2021-11-24', 1864, 34481, 2669, NULL, '4.0000', '6.0500', '6.0500', '8.5000', '8.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 (36157, '2021-11-24', 2109, 34482, 2669, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '109.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 (36158, '2021-11-24', 1689, 34483, 2669, 4897, '-3.0000', '60.7198', '60.7198', '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 (36159, '2021-11-24', 1689, 34483, 2669, NULL, '4.0000', '60.7198', '60.7198', '18.0000', '18.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 (36160, '2021-11-24', 2296, 34484, 2669, 2955, '-2.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 (36161, '2021-11-24', 2296, 34484, 2669, NULL, '3.0000', '13.2900', '13.2900', '18.0000', '18.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 (36162, '2021-11-24', 1432, 34485, 2669, 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 (36163, '2021-11-24', 9577, 34486, 2669, NULL, '2.0000', '0.3200', '0.3200', '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 (36164, '2021-11-24', 1912, 34487, 2669, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (36165, '2021-11-24', 1619, 34488, 2669, 20621, '1.0000', '9.8500', '9.8500', '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 (36166, '2021-11-24', 1581, 34489, 2669, 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 (36167, '2021-11-24', 1513, 34490, 2670, 41394, '1.0000', '11.9600', '11.9600', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36168, '2021-11-24', 1620, 34491, 2670, 41396, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36169, '2021-11-24', 7790, 34492, 2670, NULL, '4.0000', '17.0000', '17.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 (36170, '2021-11-24', 8746, 34493, 2670, NULL, '1.0000', '4.3169', '4.3169', '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 (36171, '2021-11-24', 9603, 34494, 2670, 39992, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36172, '2021-11-24', 2068, 34495, 2670, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36173, '2021-11-24', 2280, 34496, 2670, NULL, '1.0000', '-177.9360', '-177.9360', '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 (36174, '2021-11-24', 1529, 34497, 2670, NULL, '1.0000', '4.0029', '4.0029', '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 (36175, '2021-11-24', 9337, 34498, 2670, NULL, '2.0000', '5.7200', '5.7200', '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 (36176, '2021-11-24', 2095, 34499, 2670, NULL, '1.0000', '1.5000', '1.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 (36177, '2021-11-24', 9092, 34500, 2670, NULL, '2.0000', '5.2900', '5.2900', '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 (36178, '2021-11-24', 1602, 34501, 2670, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36179, '2021-11-24', 9214, 34502, 2670, NULL, '1.0000', '9.6000', '9.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 (36180, '2021-11-24', 8984, 34503, 2670, NULL, '2.0000', '-100.8495', '-100.8495', '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 (36181, '2021-11-24', 9092, 34504, 2670, NULL, '2.0000', '5.2900', '5.2900', '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 (36182, '2021-11-24', 2958, 34505, 2670, 40132, '2.0000', '1.0000', '1.0000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36183, '2021-11-24', 2221, 34506, 2671, 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 (36184, '2021-11-24', 7514, 34507, 2671, 39834, '2.0000', '2.2500', '2.2500', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36185, '2021-11-24', 9578, 34508, 2671, NULL, '1.0000', '8.0000', '8.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 (36186, '2021-11-24', 9579, 34509, 2671, 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 (36187, '2021-11-24', 9337, 34510, 2671, NULL, '1.0000', '5.7200', '5.7200', '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 (36188, '2021-11-24', 9092, 34511, 2671, NULL, '1.0000', '5.2900', '5.2900', '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 (36189, '2021-11-24', 2169, 34512, 2671, NULL, '1.0000', '1.1500', '1.1500', '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 (36190, '2021-11-24', 1819, 34513, 2671, 33345, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36191, '2021-11-24', 7317, 34514, 2671, NULL, '1.0000', '19.5500', '19.5500', '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 (36192, '2021-11-24', 1812, 34515, 2671, 42101, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36193, '2021-11-24', 1845, 34516, 2671, 34633, '1.0000', '19.7000', '19.7000', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36194, '2021-11-24', 2228, 34517, 2671, 39987, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36195, '2021-11-24', 9445, 34518, 2671, 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 (36196, '2021-11-24', 7790, 34519, 2671, NULL, '2.0000', '17.0000', '17.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 (36197, '2021-11-24', 8746, 34520, 2671, NULL, '1.0000', '4.3169', '4.3169', '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 (36198, '2021-11-24', 7408, 34521, 2671, NULL, '1.0000', '1.0000', '1.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 (36199, '2021-11-24', 7482, 34522, 2671, 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 (36200, '2021-11-24', 9242, 34523, 2671, NULL, '1.0000', '22.5000', '22.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 (36201, '2021-11-24', 1637, 34524, 2671, 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 (36202, '2021-11-24', 7317, 34525, 2671, NULL, '1.0000', '19.5500', '19.5500', '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 (36203, '2021-11-24', 2169, 34526, 2671, NULL, '1.0000', '1.1500', '1.1500', '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 (36204, '2021-11-24', 9092, 34527, 2671, NULL, '1.0000', '5.2900', '5.2900', '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 (36205, '2021-11-24', 7514, 34528, 2671, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36206, '2021-11-24', 2726, 34529, 2671, NULL, '1.0000', '2.6400', '2.6400', '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 (36207, '2021-11-24', 1501, 34530, 2671, NULL, '1.0000', '2.2100', '2.2100', '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 (36208, '2021-11-24', 9089, 34531, 2671, NULL, '1.0000', '3.8000', '3.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 (36209, '2021-11-24', 2068, 34532, 2671, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36210, '2021-11-24', 2020, 34533, 2671, NULL, '1.0000', '7.8240', '7.8240', '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 (36211, '2021-11-24', 7482, 34534, 2671, 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 (36212, '2021-11-24', 7514, 34535, 2671, 39834, '2.0000', '2.2500', '2.2500', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36213, '2021-11-24', 8208, 34536, 2671, NULL, '2.0000', '33.0000', '33.0000', '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 (36214, '2021-11-24', 2315, 34537, 2671, NULL, '1.0000', '0.8556', '0.8556', '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 (36215, '2021-11-24', 2280, 34538, 2671, NULL, '2.0000', '-177.9360', '-177.9360', '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 (36216, '2021-11-24', 2221, 34539, 2671, 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 (36217, '2021-11-24', 2285, 34540, 2671, NULL, '1.0000', '36.1500', '36.1500', '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 (36218, '2021-11-24', 7411, 34541, 2671, NULL, '1.0000', '1.3500', '1.3500', '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 (36219, '2021-11-24', 7514, 34542, 2671, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36220, '2021-11-24', 7473, 34543, 2671, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '106.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36221, '2021-11-24', 2821, 34544, 2671, 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 (36222, '2021-11-24', 2295, 34545, 2671, NULL, '2.0000', '0.7000', '0.7000', '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 (36223, '2021-11-24', 7514, 34546, 2671, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36224, '2021-11-24', 1888, 34547, 2671, 42105, '1.0000', '16.4667', '16.4667', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36225, '2021-11-24', 8043, 34548, 2671, NULL, '2.0000', '27.9800', '27.9800', '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 (36226, '2021-11-24', 1839, 34549, 2672, NULL, '1.0000', '4.9622', '4.9622', '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 (36227, '2021-11-24', 8746, 34550, 2672, NULL, '2.0000', '4.3169', '4.3169', '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 (36228, '2021-11-24', 1867, 34551, 2672, 30694, '2.0000', '7.1662', '7.1662', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36229, '2021-11-24', 2105, 34552, 2672, 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 (36230, '2021-11-24', 1346, 34553, 2672, 39869, '6.0000', '-6.6466', '-6.6466', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36231, '2021-11-24', 7482, 34554, 2672, 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 (36232, '2021-11-24', 1746, 34555, 2673, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (36233, '2021-11-24', 2277, 34556, 2674, NULL, '2.0000', '0.8982', '0.8982', '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 (36234, '2021-11-24', 2088, 34557, 2674, 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 (36235, '2021-11-24', 2237, 34558, 2675, NULL, '1.0000', '-64.5817', '-64.5817', '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 (36236, '2021-11-24', 2169, 34559, 2675, NULL, '1.0000', '1.1500', '1.1500', '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 (36237, '2021-11-24', 2712, 34560, 2675, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36238, '2021-11-24', 8566, 34561, 2676, 40107, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36239, '2021-11-24', 8566, 34561, 2676, 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 (36240, '2021-11-24', 8761, 34562, 2676, NULL, '1.0000', '5.4200', '5.4200', '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 (36241, '2021-11-24', 8745, 34563, 2676, NULL, '2.0000', '8.0000', '8.0000', '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 (36242, '2021-11-24', 1704, 34564, 2676, 34958, '1.0000', '30.1576', '30.1576', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36243, '2021-11-24', 9214, 34565, 2676, NULL, '1.0000', '9.6000', '9.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 (36244, '2021-11-24', 8763, 34566, 2676, NULL, '3.0000', '5.4000', '5.4000', '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 (36245, '2021-11-24', 9311, 34567, 2676, NULL, '1.0000', '6.6000', '6.6000', '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 (36246, '2021-11-24', 7790, 34568, 2676, NULL, '4.0000', '17.0000', '17.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 (36247, '2021-11-24', 1420, 34569, 2676, 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 (36248, '2021-11-24', 8933, 34570, 2676, 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 (36249, '2021-11-24', 2012, 34571, 2676, 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 (36250, '2021-11-24', 1667, 34572, 2676, 42076, '2.0000', '18.6700', '18.6700', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36251, '2021-11-24', 9482, 34573, 2676, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36252, '2021-11-24', 2699, 34574, 2676, 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 (36253, '2021-11-24', 9089, 34575, 2676, NULL, '1.0000', '3.8000', '3.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 (36254, '2021-11-24', 7741, 34576, 2676, NULL, '1.0000', '1.2000', '1.2000', '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 (36255, '2021-11-24', 2236, 34577, 2676, 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 (36256, '2021-11-24', 2169, 34578, 2676, NULL, '2.0000', '1.1500', '1.1500', '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 (36257, '2021-11-24', 1651, 34579, 2676, 41407, '1.0000', '8.4739', '8.4739', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36258, '2021-11-24', 1529, 34580, 2676, NULL, '1.0000', '4.0029', '4.0029', '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 (36259, '2021-11-24', 8200, 34581, 2676, NULL, '2.0000', '8.5500', '8.5500', '8.5000', '8.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 (36260, '2021-11-24', 9214, 34582, 2676, NULL, '1.0000', '9.6000', '9.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 (36261, '2021-11-24', 7913, 34583, 2677, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (36262, '2021-11-24', 1433, 34584, 2677, 24978, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (36263, '2021-11-24', 1928, 34585, 2678, 41412, '1.0000', '5.3300', '5.3300', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36264, '2021-11-24', 2344, 34586, 2678, NULL, '1.0000', '19.8200', '19.8200', '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 (36265, '2021-11-24', 1425, 34587, 2678, 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 (36266, '2021-11-24', 2965, 34588, 2678, NULL, '1.0000', '5.0000', '5.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 (36267, '2021-11-24', 2762, 34589, 2678, 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 (36268, '2021-11-24', 7411, 34590, 2678, NULL, '1.0000', '1.3500', '1.3500', '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 (36269, '2021-11-24', 2236, 34591, 2678, 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 (36270, '2021-11-24', 2293, 34592, 2679, NULL, '2.0000', '1.4400', '1.4400', '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 (36271, '2021-11-24', 7357, 34593, 2680, NULL, '1.0000', '12.2000', '12.2000', '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 (36272, '2021-11-24', 7601, 34594, 2680, NULL, '3.0000', '13.5000', '13.5000', '18.0000', '18.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 (36273, '2021-11-24', 8766, 34595, 2680, NULL, '1.0000', '5.8000', '5.8000', '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 (36274, '2021-11-24', 2457, 34596, 2680, 40168, '1.0000', '17.7440', '17.7440', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36275, '2021-11-24', 2456, 34597, 2680, 4804, '1.0000', '18.5000', '18.5000', '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 (36276, '2021-11-24', 1497, 34598, 2680, 32820, '1.0000', '10.6429', '10.6429', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36277, '2021-11-24', 1527, 34599, 2680, 25031, '1.0000', '96.1416', '96.1416', '17.5000', '17.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 (36278, '2021-11-24', 7482, 34600, 2680, 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 (36279, '2021-11-24', 1810, 34601, 2680, 40639, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36280, '2021-11-24', 1805, 34602, 2680, 40855, '1.0000', '4.0496', '4.0496', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36281, '2021-11-24', 1505, 34603, 2680, 32029, '1.0000', '129.6303', '129.6303', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36282, '2021-11-24', 9275, 34604, 2680, NULL, '1.0000', '6.3000', '6.3000', '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 (36283, '2021-11-24', 2288, 34605, 2680, 3128, '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 (36284, '2021-11-24', 3012, 34606, 2680, 40633, '1.0000', '4.7000', '4.7000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36285, '2021-11-24', 2285, 34607, 2680, 40200, '1.0000', '36.0154', '36.0154', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36286, '2021-11-24', 2228, 34608, 2680, 32620, '1.0000', '24.7010', '24.7010', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36287, '2021-11-24', 2224, 34609, 2680, 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 (36288, '2021-11-24', 2712, 34610, 2680, 42184, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36289, '2021-11-24', 9275, 34611, 2680, NULL, '1.0000', '6.3000', '6.3000', '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 (36290, '2021-11-24', 1339, 34612, 2680, 41979, '1.0000', '1.7384', '1.7384', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36291, '2021-11-24', 2649, 34613, 2680, 24003, '1.0000', '69.5976', '69.5976', '101.0000', '101.0000', '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 (36292, '2021-11-24', 1629, 34614, 2680, 34670, '2.0000', '13.9099', '13.9099', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36293, '2021-11-24', 2506, 34615, 2680, 32040, '2.0000', '3.4900', '3.4900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36294, '2021-11-24', 1706, 34616, 2680, 21568, '1.0000', '14.8866', '14.8866', '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 (36295, '2021-11-24', 2491, 34617, 2680, 42202, '1.0000', '13.1608', '13.1608', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36296, '2021-11-24', 2280, 34618, 2680, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36297, '2021-11-24', 2732, 34619, 2680, NULL, '1.0000', '26.3888', '26.3888', '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 (36298, '2021-11-24', 7756, 34620, 2680, 42212, '1.0000', '23.9111', '23.9111', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36299, '2021-11-24', 7756, 34620, 2680, NULL, '1.0000', '23.9111', '23.9111', '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 (36300, '2021-11-24', 1991, 34621, 2680, 42182, '1.0000', '5.3845', '5.3845', '7.9200', '7.9200', '4.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36301, '2021-11-24', 2695, 34622, 2680, 12681, '6.0000', '2.0000', '2.0000', '2.7000', '2.7000', '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 (36302, '2021-11-24', 1400, 34623, 2680, 9048, '1.0000', '22.0000', '22.0000', '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 (36303, '2021-11-24', 7391, 34624, 2680, NULL, '1.0000', '-144.1150', '-144.1150', '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 (36304, '2021-11-24', 1825, 34625, 2680, 38065, '1.0000', '5.1714', '5.1714', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36305, '2021-11-24', 1641, 34626, 2680, 34686, '8.0000', '76.5908', '76.5908', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36306, '2021-11-24', 2681, 34627, 2680, 38083, '1.0000', '12.6664', '12.6664', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36307, '2021-11-24', 8119, 34628, 2680, 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 (36308, '2021-11-24', 1991, 34629, 2680, 42182, '1.0000', '5.3845', '5.3845', '7.9200', '7.9200', '4.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36309, '2021-11-24', 2431, 34630, 2680, 5818, '1.0000', '2.2000', '2.2000', '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 (36310, '2021-11-24', 1371, 34631, 2680, 41971, '1.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36311, '2021-11-24', 2916, 34632, 2680, 40854, '1.0000', '11.0950', '11.0950', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36312, '2021-11-24', 1386, 34633, 2680, 41972, '1.0000', '608.2647', '608.2647', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36313, '2021-11-24', 1665, 34634, 2680, 42122, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36314, '2021-11-24', 1488, 34635, 2680, 33032, '1.0000', '18.3333', '18.3333', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36315, '2021-11-24', 2237, 34636, 2680, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36316, '2021-11-24', 2876, 34637, 2680, 39185, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36317, '2021-11-24', 9547, 34638, 2680, 39180, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36318, '2021-11-24', 2022, 34639, 2680, 32036, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36319, '2021-11-24', 1341, 34640, 2680, 3380, '1.0000', '13.5000', '13.5000', '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 (36320, '2021-11-24', 2522, 34641, 2680, 7523, '1.0000', '4.8000', '4.8000', '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 (36321, '2021-11-24', 1529, 34642, 2681, NULL, '1.0000', '4.0029', '4.0029', '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 (36322, '2021-11-24', 7482, 34643, 2681, 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 (36323, '2021-11-24', 2991, 34644, 2681, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '85.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 (36324, '2021-11-24', 2095, 34645, 2681, NULL, '1.0000', '1.5000', '1.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 (36325, '2021-11-24', 1305, 34646, 2681, 34636, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36326, '2021-11-24', 2284, 34647, 2681, 38563, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36327, '2021-11-24', 2237, 34648, 2681, NULL, '1.0000', '-64.5817', '-64.5817', '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 (36328, '2021-11-24', 2020, 34649, 2681, NULL, '1.0000', '7.8240', '7.8240', '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 (36329, '2021-11-24', 7886, 34650, 2681, NULL, '1.0000', '14.5000', '14.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 (36330, '2021-11-24', 1621, 34651, 2681, 42079, '1.0000', '28.9137', '28.9137', '7.5000', '7.5000', '57.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36331, '2021-11-24', 8200, 34652, 2681, NULL, '1.0000', '8.5500', '8.5500', '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 (36332, '2021-11-24', 1519, 34653, 2681, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36333, '2021-11-24', 7641, 34654, 2681, NULL, '1.0000', '1.9000', '1.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 (36334, '2021-11-24', 7411, 34655, 2681, NULL, '1.0000', '1.3500', '1.3500', '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 (36335, '2021-11-24', 1665, 34656, 2682, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36336, '2021-11-24', 7333, 34657, 2682, NULL, '2.0000', '13.5000', '13.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 (36337, '2021-11-24', 9337, 34658, 2683, NULL, '2.0000', '5.7200', '5.7200', '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 (36338, '2021-11-24', 1665, 34659, 2684, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36339, '2021-11-24', 9532, 34660, 2685, 40119, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36340, '2021-11-24', 9532, 34661, 2686, 40119, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36341, '2021-11-24', 9469, 34662, 2687, 39422, '4.0000', '2.3000', '2.3000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36342, '2021-11-24', 8941, 34663, 2687, NULL, '5.0000', '12.0000', '12.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 (36343, '2021-11-24', 7370, 34664, 2687, NULL, '1.0000', '12.1100', '12.1100', '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 (36344, '2021-11-24', 1841, 34665, 2687, 33726, '5.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '87.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36345, '2021-11-24', 1840, 34666, 2687, 33725, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '145.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36346, '2021-11-24', 8101, 34667, 2687, NULL, '2.0000', '21.7000', '21.7000', '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 (36347, '2021-11-24', 8535, 34668, 2687, NULL, '1.0000', '32.5000', '32.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 (36348, '2021-11-24', 7781, 34669, 2687, NULL, '3.0000', '4.2500', '4.2500', '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 (36349, '2021-11-24', 9250, 34670, 2687, NULL, '1.0000', '18.9800', '18.9800', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36350, '2021-11-24', 9098, 34671, 2687, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36351, '2021-11-24', 8775, 34672, 2687, 39424, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36352, '2021-11-24', 7675, 34673, 2687, NULL, '1.0000', '11.4300', '11.4300', '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 (36353, '2021-11-24', 8466, 34674, 2687, NULL, '1.0000', '-24.7500', '-24.7500', '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 (36354, '2021-11-24', 7591, 34675, 2687, NULL, '2.0000', '2.7500', '2.7500', '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 (36355, '2021-11-24', 8849, 34676, 2687, NULL, '1.0000', '1.0700', '1.0700', '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 (36356, '2021-11-24', 9534, 34677, 2687, NULL, '1.0000', '19.8900', '19.8900', '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 (36357, '2021-11-24', 9578, 34678, 2687, NULL, '1.0000', '8.0000', '8.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 (36358, '2021-11-24', 7671, 34679, 2687, NULL, '1.0000', '15.5000', '15.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 (36359, '2021-11-24', 7509, 34680, 2687, 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 (36360, '2021-11-24', 7385, 34681, 2687, 41944, '3.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36361, '2021-11-24', 7954, 34682, 2687, NULL, '1.0000', '24.2844', '24.2844', '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 (36362, '2021-11-24', 8918, 34683, 2687, 37847, '2.0000', '5.5250', '5.5250', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36363, '2021-11-24', 2506, 34684, 2687, 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 (36364, '2021-11-24', 7803, 34685, 2687, NULL, '1.0000', '1.8200', '1.8200', '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 (36365, '2021-11-24', 7411, 34686, 2687, NULL, '1.0000', '1.3500', '1.3500', '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 (36366, '2021-11-24', 8444, 34687, 2687, NULL, '1.0000', '26.0000', '26.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 (36367, '2021-11-24', 8359, 34688, 2687, NULL, '1.0000', '20.4289', '20.4289', '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 (36368, '2021-11-24', 7954, 34689, 2687, NULL, '4.0000', '24.2844', '24.2844', '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 (36369, '2021-11-24', 9193, 34690, 2687, NULL, '1.0000', '5.5150', '5.5150', '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 (36370, '2021-11-24', 1760, 34691, 2687, 39629, '4.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36371, '2021-11-24', 7799, 34692, 2687, NULL, '1.0000', '2.0000', '2.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 (36372, '2021-11-24', 9016, 34693, 2687, NULL, '1.0000', '2.9800', '2.9800', '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 (36373, '2021-11-24', 8769, 34694, 2687, 39416, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36374, '2021-11-24', 8515, 34695, 2687, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (36375, '2021-11-24', 2315, 34696, 2687, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36376, '2021-11-24', 7482, 34697, 2687, NULL, '1.0000', '2.4981', '2.4981', '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 (36377, '2021-11-24', 7980, 34698, 2687, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (36378, '2021-11-24', 7444, 34699, 2687, 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 (36379, '2021-11-24', 2226, 34700, 2687, NULL, '2.0000', '14.0000', '14.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 (36380, '2021-11-24', 8888, 34701, 2687, 40429, '2.0000', '28.0000', '28.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36381, '2021-11-24', 8228, 34702, 2687, NULL, '2.0000', '25.0000', '25.0000', '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 (36382, '2021-11-24', 2713, 34703, 2687, NULL, '2.0000', '1.5000', '1.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 (36383, '2021-11-24', 8175, 34704, 2687, NULL, '1.0000', '12.5000', '12.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 (36384, '2021-11-24', 2440, 34705, 2687, 31657, '1.0000', '5.1629', '5.1629', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36385, '2021-11-24', 8835, 34706, 2687, NULL, '3.0000', '3.1750', '3.1750', '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 (36386, '2021-11-24', 2225, 34707, 2687, 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 (36387, '2021-11-24', 7853, 34708, 2687, NULL, '1.0000', '35.0000', '35.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 (36388, '2021-11-24', 8698, 34709, 2687, NULL, '1.0000', '2.0000', '2.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 (36389, '2021-11-24', 2315, 34710, 2687, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36390, '2021-11-24', 8952, 34711, 2687, NULL, '1.0000', '9.0000', '9.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 (36391, '2021-11-24', 8166, 34712, 2687, NULL, '1.0000', '4.6000', '4.6000', '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 (36392, '2021-11-24', 7514, 34713, 2687, NULL, '1.0000', '12.9983', '12.9983', '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 (36393, '2021-11-24', 7634, 34714, 2687, NULL, '1.0000', '1.8000', '1.8000', '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 (36394, '2021-11-24', 7518, 34715, 2687, NULL, '1.0000', '-67.2578', '-67.2578', '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 (36395, '2021-11-24', 7657, 34716, 2687, NULL, '1.0000', '5.4700', '5.4700', '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 (36396, '2021-11-24', 7639, 34717, 2687, 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 (36397, '2021-11-24', 7457, 34718, 2687, 41929, '1.0000', '3.0278', '3.0278', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36398, '2021-11-24', 9311, 34719, 2687, 39417, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36399, '2021-11-24', 8200, 34720, 2687, NULL, '1.0000', '413.8935', '413.8935', '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 (36400, '2021-11-24', 7608, 34721, 2687, NULL, '1.0000', '6.9800', '6.9800', '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 (36401, '2021-11-24', 2506, 34722, 2687, 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 (36402, '2021-11-24', 7722, 34723, 2687, 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 (36403, '2021-11-24', 7385, 34724, 2687, 41944, '5.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36404, '2021-11-24', 7482, 34725, 2687, NULL, '1.0000', '2.4981', '2.4981', '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 (36405, '2021-11-24', 9607, 34726, 2687, 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 (36406, '2021-11-24', 7753, 34727, 2687, 41911, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36407, '2021-11-24', 7674, 34728, 2687, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '121.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36408, '2021-11-24', 7518, 34729, 2687, NULL, '1.0000', '-67.2578', '-67.2578', '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 (36409, '2021-11-24', 9578, 34730, 2687, NULL, '1.0000', '8.0000', '8.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 (36410, '2021-11-24', 7758, 34731, 2687, 41927, '1.0000', '-85.9921', '-85.9921', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36411, '2021-11-24', 2169, 34732, 2688, NULL, '1.0000', '1.1500', '1.1500', '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 (36412, '2021-11-24', 2298, 34733, 2688, 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 (36413, '2021-11-24', 1367, 34734, 2689, NULL, '10.0000', '4.9000', '4.9000', '7.0000', '7.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 (36414, '2021-11-24', 2958, 34735, 2689, 40390, '10.0000', '1.0000', '1.0000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36415, '2021-11-24', 1812, 34736, 2689, 40883, '1.0000', '7.9425', '7.9425', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36416, '2021-11-24', 8763, 34737, 2689, NULL, '2.0000', '5.4000', '5.4000', '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 (36417, '2021-11-24', 7750, 34738, 2689, NULL, '1.0000', '34.9000', '34.9000', '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 (36418, '2021-11-24', 1671, 34739, 2689, 40225, '10.0000', '46.5648', '46.5648', '6.4000', '6.4000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36419, '2021-11-24', 2311, 34740, 2689, 3536, '1.0000', '46.2900', '46.2900', '60.0000', '60.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 (36420, '2021-11-24', 7782, 34741, 2689, NULL, '1.0000', '5.0000', '5.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 (36421, '2021-11-24', 8740, 34742, 2689, 40383, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36422, '2021-11-24', 7954, 34743, 2689, 33014, '4.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36423, '2021-11-24', 9565, 34744, 2689, 40377, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36424, '2021-11-24', 7857, 34745, 2689, 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 (36425, '2021-11-24', 1744, 34746, 2689, 34416, '1.0000', '50.2499', '50.2499', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36426, '2021-11-24', 9471, 34747, 2690, 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 (36427, '2021-11-24', 7790, 34748, 2690, NULL, '1.0000', '17.0000', '17.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 (36428, '2021-11-24', 7411, 34749, 2690, NULL, '2.0000', '1.3500', '1.3500', '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 (36429, '2021-11-24', 1339, 34750, 2691, 41979, '1.0000', '1.7384', '1.7384', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36430, '2021-11-24', 8000, 34751, 2692, NULL, '1.0000', '74.7436', '74.7436', '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 (36431, '2021-11-24', 7921, 34752, 2692, NULL, '1.0000', '0.3000', '0.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 (36432, '2021-11-24', 7831, 34753, 2692, 39624, '1.0000', '27.7500', '27.7500', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36433, '2021-11-24', 1665, 34754, 2693, 42122, '4.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36434, '2021-11-24', 1935, 34755, 2693, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36435, '2021-11-24', 2660, 34756, 2694, 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 (36436, '2021-11-24', 1665, 34757, 2695, 42122, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36437, '2021-11-24', 1602, 34758, 2695, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36438, '2021-11-24', 2254, 34759, 2696, 42099, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36439, '2021-11-24', 2131, 34760, 2696, 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 (36440, '2021-11-24', 8982, 34761, 2697, 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 (36441, '2021-11-24', 1584, 34762, 2698, 35942, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36442, '2021-11-24', 2918, 34763, 2698, 18788, '1.0000', '14.9400', '14.9400', '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 (36443, '2021-11-24', 8775, 34764, 2699, NULL, '2.0000', '2.6000', '2.6000', '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 (36444, '2021-11-24', 1961, 34765, 2699, 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 (36445, '2021-11-24', 7514, 34766, 2699, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36446, '2021-11-25', 1564, 34767, 2700, 10386, '19.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 (36447, '2021-11-25', 1564, 34767, 2700, 9458, '1.0000', '90.0000', '90.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 (36448, '2021-11-25', 9413, 34768, 2701, 38544, '1.0000', '7.9285', '7.9285', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36449, '2021-11-25', 2697, 34769, 2701, 24877, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '2.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 (36450, '2021-11-25', 9482, 34770, 2701, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36451, '2021-11-25', 2169, 34771, 2701, NULL, '1.0000', '1.1500', '1.1500', '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 (36452, '2021-11-25', 2109, 34772, 2701, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '29.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 (36453, '2021-11-25', 2351, 34773, 2701, 30697, '1.0000', '17.7000', '17.7000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36454, '2021-11-25', 7671, 34774, 2701, NULL, '1.0000', '15.5000', '15.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 (36455, '2021-11-25', 1783, 34775, 2701, 42070, '1.0000', '137.4528', '137.4528', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36456, '2021-11-25', 8454, 34776, 2701, NULL, '1.0000', '5.1700', '5.1700', '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 (36457, '2021-11-25', 2758, 34777, 2701, 34623, '1.0000', '5.4000', '5.4000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36458, '2021-11-25', 1577, 34778, 2701, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36459, '2021-11-25', 2286, 34779, 2701, NULL, '1.0000', '4.3000', '4.3000', '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 (36460, '2021-11-25', 2379, 34780, 2701, NULL, '1.0000', '1.8000', '1.8000', '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 (36461, '2021-11-25', 1854, 34781, 2701, 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 (36462, '2021-11-25', 1954, 34782, 2701, 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 (36463, '2021-11-25', 2379, 34783, 2701, NULL, '1.0000', '1.8000', '1.8000', '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 (36464, '2021-11-25', 2302, 34784, 2701, 41373, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36465, '2021-11-25', 1529, 34785, 2701, NULL, '1.0000', '4.0029', '4.0029', '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 (36466, '2021-11-25', 8638, 34786, 2701, NULL, '1.0000', '0.5100', '0.5100', '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 (36467, '2021-11-25', 1645, 34787, 2701, 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 (36468, '2021-11-25', 2280, 34788, 2701, NULL, '1.0000', '-177.9360', '-177.9360', '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 (36469, '2021-11-25', 2366, 34789, 2701, NULL, '2.0000', '-17.8500', '-17.8500', '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 (36470, '2021-11-25', 2712, 34790, 2701, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36471, '2021-11-25', 1845, 34791, 2701, NULL, '1.0000', '19.7000', '19.7000', '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 (36472, '2021-11-25', 8607, 34792, 2701, 40005, '1.0000', '-3.0000', '-3.0000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36473, '2021-11-25', 2169, 34793, 2701, NULL, '1.0000', '1.1500', '1.1500', '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 (36474, '2021-11-25', 7671, 34794, 2701, NULL, '1.0000', '15.5000', '15.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 (36475, '2021-11-25', 1863, 34795, 2701, NULL, '1.0000', '1.3589', '1.3589', '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 (36476, '2021-11-25', 2662, 34796, 2701, 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 (36477, '2021-11-25', 2169, 34797, 2701, NULL, '1.0000', '1.1500', '1.1500', '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 (36478, '2021-11-25', 2352, 34798, 2701, NULL, '1.0000', '59.2000', '59.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 (36479, '2021-11-25', 8984, 34799, 2701, NULL, '1.0000', '-100.8495', '-100.8495', '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 (36480, '2021-11-25', 2965, 34800, 2701, NULL, '1.0000', '5.0000', '5.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 (36481, '2021-11-25', 3058, 34801, 2701, 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 (36482, '2021-11-25', 7658, 34802, 2701, NULL, '2.0000', '10.1500', '10.1500', '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 (36483, '2021-11-25', 2431, 34803, 2701, 25152, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '0.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 (36484, '2021-11-25', 7459, 34804, 2701, NULL, '10.0000', '-6.1729', '-6.1729', '3.5000', '3.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 (36485, '2021-11-25', 1825, 34805, 2701, 39871, '1.0000', '4.3850', '4.3850', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36486, '2021-11-25', 7532, 34806, 2701, 42102, '1.0000', '20.2334', '20.2334', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36487, '2021-11-25', 1337, 34807, 2702, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.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 (36488, '2021-11-25', 1533, 34808, 2702, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36489, '2021-11-25', 1602, 34809, 2702, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36490, '2021-11-25', 2643, 34810, 2702, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36491, '2021-11-25', 9214, 34811, 2702, NULL, '1.0000', '9.6000', '9.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 (36492, '2021-11-25', 8775, 34812, 2702, NULL, '1.0000', '2.6000', '2.6000', '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 (36493, '2021-11-25', 8746, 34813, 2702, NULL, '2.0000', '4.3169', '4.3169', '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 (36494, '2021-11-25', 2279, 34814, 2702, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (36495, '2021-11-25', 7473, 34815, 2702, 39817, '4.0000', '0.1679', '0.1679', '0.6000', '0.6000', '102.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36496, '2021-11-25', 2095, 34816, 2702, NULL, '1.0000', '1.5000', '1.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 (36497, '2021-11-25', 1394, 34817, 2702, 37812, '1.0000', '9.2833', '9.2833', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36498, '2021-11-25', 1577, 34818, 2702, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36499, '2021-11-25', 1863, 34819, 2702, NULL, '1.0000', '1.3589', '1.3589', '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 (36500, '2021-11-25', 1935, 34820, 2702, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36501, '2021-11-25', 2095, 34821, 2702, NULL, '1.0000', '1.5000', '1.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 (36502, '2021-11-25', 2400, 34822, 2702, 38562, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36503, '2021-11-25', 2293, 34823, 2702, NULL, '3.0000', '1.4400', '1.4400', '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 (36504, '2021-11-25', 1945, 34824, 2702, 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 (36505, '2021-11-25', 2992, 34825, 2702, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (36506, '2021-11-25', 2088, 34826, 2702, 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 (36507, '2021-11-25', 2167, 34827, 2702, 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 (36508, '2021-11-25', 9482, 34828, 2702, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36509, '2021-11-25', 2712, 34829, 2702, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36510, '2021-11-25', 2986, 34830, 2702, 22609, '2.0000', '0.7700', '0.7700', '1.0000', '1.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 (36511, '2021-11-25', 1580, 34831, 2702, 19875, '3.0000', '0.9900', '0.9900', '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 (36512, '2021-11-25', 2169, 34832, 2702, NULL, '1.0000', '1.1500', '1.1500', '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 (36513, '2021-11-25', 1863, 34833, 2702, NULL, '4.0000', '1.3589', '1.3589', '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 (36514, '2021-11-25', 1505, 34834, 2702, 42100, '1.0000', '285.0425', '285.0425', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36515, '2021-11-25', 2288, 34835, 2702, NULL, '1.0000', '7.8600', '7.8600', '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 (36516, '2021-11-25', 1839, 34836, 2702, NULL, '1.0000', '4.9622', '4.9622', '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 (36517, '2021-11-25', 1647, 34837, 2702, 19839, '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 (36518, '2021-11-25', 1825, 34838, 2702, 39871, '1.0000', '4.3850', '4.3850', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36519, '2021-11-25', 2440, 34839, 2702, 39978, '1.0000', '5.4115', '5.4115', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36520, '2021-11-25', 8454, 34840, 2702, NULL, '1.0000', '5.1700', '5.1700', '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 (36521, '2021-11-25', 2167, 34841, 2702, 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 (36522, '2021-11-25', 1912, 34842, 2702, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36523, '2021-11-25', 8735, 34843, 2702, NULL, '1.0000', '5.6000', '5.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 (36524, '2021-11-25', 1501, 34844, 2702, NULL, '1.0000', '2.2100', '2.2100', '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 (36525, '2021-11-25', 1577, 34845, 2702, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36526, '2021-11-25', 1577, 34846, 2703, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36527, '2021-11-25', 1839, 34847, 2703, NULL, '1.0000', '4.9622', '4.9622', '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 (36528, '2021-11-25', 2169, 34848, 2703, NULL, '1.0000', '1.1500', '1.1500', '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 (36529, '2021-11-25', 8127, 34849, 2703, NULL, '1.0000', '24.5300', '24.5300', '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 (36530, '2021-11-25', 8746, 34850, 2703, NULL, '1.0000', '4.3169', '4.3169', '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 (36531, '2021-11-25', 7518, 34851, 2703, NULL, '1.0000', '7.8200', '7.8200', '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 (36532, '2021-11-25', 2302, 34852, 2703, 41373, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36533, '2021-11-25', 1772, 34853, 2703, 39905, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36534, '2021-11-25', 2850, 34854, 2703, 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 (36535, '2021-11-25', 1855, 34855, 2703, 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 (36536, '2021-11-25', 1529, 34856, 2703, NULL, '1.0000', '4.0029', '4.0029', '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 (36537, '2021-11-25', 8029, 34857, 2703, NULL, '1.0000', '32.6600', '32.6600', '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 (36538, '2021-11-25', 2068, 34858, 2703, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36539, '2021-11-25', 1488, 34859, 2703, NULL, '1.0000', '90.0000', '90.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 (36540, '2021-11-25', 1501, 34860, 2703, NULL, '1.0000', '2.2100', '2.2100', '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 (36541, '2021-11-25', 1590, 34861, 2703, NULL, '3.0000', '1.9878', '1.9878', '2.3000', '2.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 (36542, '2021-11-25', 1665, 34862, 2703, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36543, '2021-11-25', 7741, 34863, 2703, NULL, '1.0000', '1.2000', '1.2000', '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 (36544, '2021-11-25', 2296, 34864, 2704, 2955, '-3.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 (36545, '2021-11-25', 2296, 34864, 2704, NULL, '4.0000', '13.2900', '13.2900', '18.0000', '18.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 (36546, '2021-11-25', 1347, 34865, 2704, 3320, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '5.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 (36547, '2021-11-25', 1905, 34866, 2704, 5443, '-6.0000', '0.4000', '0.4000', '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 (36548, '2021-11-25', 1905, 34866, 2704, NULL, '7.0000', '0.4000', '0.4000', '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 (36549, '2021-11-25', 1876, 34867, 2704, 672, '1.0000', '0.9126', '0.9126', '30.0000', '30.0000', '1.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 (36550, '2021-11-25', 1346, 34868, 2704, 21942, '-4.0000', '1.0594', '1.0594', '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 (36551, '2021-11-25', 1346, 34868, 2704, NULL, '14.0000', '1.0594', '1.0594', '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 (36552, '2021-11-25', 1525, 34869, 2704, 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 (36553, '2021-11-25', 2683, 34870, 2704, 12222, '-1.0000', '49.0000', '49.0000', '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 (36554, '2021-11-25', 2683, 34870, 2704, NULL, '2.0000', '49.0000', '49.0000', '70.0000', '70.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 (36555, '2021-11-25', 1602, 34871, 2704, 5897, '-53.0000', '6.7859', '6.7859', '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 (36556, '2021-11-25', 1602, 34871, 2704, NULL, '55.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (36557, '2021-11-25', 2287, 34872, 2704, 2947, '-8.0000', '1.8000', '1.8000', '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 (36558, '2021-11-25', 2287, 34872, 2704, NULL, '9.0000', '1.8000', '1.8000', '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 (36559, '2021-11-25', 1665, 34873, 2704, 3235, '-34.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 (36560, '2021-11-25', 1665, 34873, 2704, NULL, '37.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36561, '2021-11-25', 1480, 34874, 2704, 1441, '-1.0000', '29.9960', '29.9960', '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 (36562, '2021-11-25', 1480, 34874, 2704, NULL, '2.0000', '29.9960', '29.9960', '40.0000', '40.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 (36563, '2021-11-25', 1665, 34875, 2704, 3235, '-34.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 (36564, '2021-11-25', 1665, 34875, 2704, NULL, '35.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36565, '2021-11-25', 2363, 34876, 2704, 3866, '-2.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 (36566, '2021-11-25', 2363, 34876, 2704, NULL, '3.0000', '6.8800', '6.8800', '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 (36567, '2021-11-25', 1557, 34877, 2704, 1628, '-4.0000', '7.9500', '7.9500', '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 (36568, '2021-11-25', 1557, 34877, 2704, NULL, '5.0000', '7.9500', '7.9500', '11.0000', '11.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 (36569, '2021-11-25', 2135, 34878, 2704, 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 (36570, '2021-11-25', 2360, 34879, 2704, 3862, '-41.0000', '0.5200', '0.5200', '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 (36571, '2021-11-25', 2360, 34879, 2704, NULL, '42.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36572, '2021-11-25', 2169, 34880, 2704, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '17.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 (36573, '2021-11-25', 1450, 34881, 2705, 38925, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '48.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36574, '2021-11-25', 1580, 34882, 2705, 19875, '3.0000', '0.9900', '0.9900', '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 (36575, '2021-11-25', 2236, 34883, 2705, 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 (36576, '2021-11-25', 1431, 34884, 2705, NULL, '1.0000', '9.8000', '9.8000', '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 (36577, '2021-11-25', 1856, 34885, 2705, 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 (36578, '2021-11-25', 1340, 34886, 2705, 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 (36579, '2021-11-25', 2352, 34887, 2705, NULL, '10.0000', '59.2000', '59.2000', '3.5000', '3.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 (36580, '2021-11-25', 7819, 34888, 2706, NULL, '1.0000', '9.5000', '9.5000', '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 (36581, '2021-11-25', 8793, 34889, 2706, 31662, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36582, '2021-11-25', 2440, 34890, 2706, 31657, '1.0000', '5.1629', '5.1629', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36583, '2021-11-25', 8518, 34891, 2706, NULL, '1.0000', '17.6400', '17.6400', '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 (36584, '2021-11-25', 8097, 34892, 2706, 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 (36585, '2021-11-25', 8677, 34893, 2706, NULL, '2.0000', '1.2300', '1.2300', '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 (36586, '2021-11-25', 1837, 34894, 2706, 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 (36587, '2021-11-25', 8188, 34895, 2706, NULL, '1.0000', '6.7000', '6.7000', '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 (36588, '2021-11-25', 7671, 34896, 2706, NULL, '3.0000', '15.5000', '15.5000', '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 (36589, '2021-11-25', 8774, 34897, 2706, NULL, '1.0000', '8.0000', '8.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 (36590, '2021-11-25', 7457, 34898, 2706, 41929, '1.0000', '3.0278', '3.0278', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36591, '2021-11-25', 8457, 34899, 2706, NULL, '1.0000', '0.7500', '0.7500', '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 (36592, '2021-11-25', 8308, 34900, 2706, NULL, '1.0000', '11.0000', '11.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 (36593, '2021-11-25', 9407, 34901, 2706, NULL, '1.0000', '5.4000', '5.4000', '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 (36594, '2021-11-25', 7707, 34902, 2706, NULL, '1.0000', '6.0012', '6.0012', '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 (36595, '2021-11-25', 2643, 34903, 2706, 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 (36596, '2021-11-25', 7753, 34904, 2706, 41911, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36597, '2021-11-25', 7832, 34905, 2706, 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 (36598, '2021-11-25', 7444, 34906, 2706, 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 (36599, '2021-11-25', 8067, 34907, 2706, NULL, '1.0000', '29.1700', '29.1700', '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 (36600, '2021-11-25', 7444, 34908, 2706, 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 (36601, '2021-11-25', 9652, 34909, 2706, 41958, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36602, '2021-11-25', 8300, 34910, 2706, NULL, '4.0000', '7.4300', '7.4300', '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 (36603, '2021-11-25', 7409, 34911, 2706, 30031, '2.0000', '1.3200', '1.3200', '10.0000', '10.0000', '35.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36604, '2021-11-25', 7781, 34912, 2706, NULL, '3.0000', '4.2500', '4.2500', '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 (36605, '2021-11-25', 1533, 34913, 2706, 41877, '1.0000', '3.3999', '3.3999', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36606, '2021-11-25', 7482, 34914, 2706, NULL, '1.0000', '2.4981', '2.4981', '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 (36607, '2021-11-25', 8858, 34915, 2706, NULL, '2.0000', '27.7076', '27.7076', '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 (36608, '2021-11-25', 7810, 34916, 2706, NULL, '1.0000', '13.5000', '13.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 (36609, '2021-11-25', 8401, 34917, 2706, 42422, '1.0000', '13.7163', '13.7163', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36610, '2021-11-25', 8698, 34918, 2706, NULL, '1.0000', '2.0000', '2.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 (36611, '2021-11-25', 2289, 34919, 2706, 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 (36612, '2021-11-25', 8186, 34920, 2706, NULL, '3.0000', '1.0800', '1.0800', '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 (36613, '2021-11-25', 7344, 34921, 2706, NULL, '10.0000', '94.2800', '94.2800', '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 (36614, '2021-11-25', 7590, 34922, 2706, NULL, '1.0000', '4.3600', '4.3600', '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 (36615, '2021-11-25', 2315, 34923, 2706, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36616, '2021-11-25', 9272, 34924, 2706, NULL, '1.0000', '3.1000', '3.1000', '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 (36617, '2021-11-25', 8548, 34925, 2706, NULL, '1.0000', '12.0000', '12.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 (36618, '2021-11-25', 7514, 34926, 2706, NULL, '1.0000', '12.9983', '12.9983', '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 (36619, '2021-11-25', 7354, 34927, 2706, NULL, '1.0000', '18.0000', '18.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 (36620, '2021-11-25', 8735, 34928, 2706, NULL, '1.0000', '5.6000', '5.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 (36621, '2021-11-25', 7715, 34929, 2706, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36622, '2021-11-25', 2699, 34930, 2706, 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 (36623, '2021-11-25', 7530, 34931, 2706, NULL, '1.0000', '6.2000', '6.2000', '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 (36624, '2021-11-25', 7518, 34932, 2706, NULL, '1.0000', '-67.2578', '-67.2578', '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 (36625, '2021-11-25', 2315, 34933, 2706, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36626, '2021-11-25', 7674, 34934, 2706, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '120.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36627, '2021-11-25', 7807, 34935, 2706, NULL, '5.0000', '12.0000', '12.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 (36628, '2021-11-25', 7352, 34936, 2706, 41936, '3.0000', '-2.4203', '-2.4203', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36629, '2021-11-25', 7509, 34937, 2706, 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 (36630, '2021-11-25', 1427, 34938, 2706, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36631, '2021-11-25', 7473, 34939, 2706, NULL, '2.0000', '25.2998', '25.2998', '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 (36632, '2021-11-25', 1501, 34940, 2706, NULL, '1.0000', '27.4349', '27.4349', '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 (36633, '2021-11-25', 7391, 34941, 2706, NULL, '1.0000', '-26.2683', '-26.2683', '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 (36634, '2021-11-25', 1760, 34942, 2706, 39629, '4.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36635, '2021-11-25', 7781, 34943, 2706, NULL, '4.0000', '4.2500', '4.2500', '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 (36636, '2021-11-25', 8518, 34944, 2706, NULL, '1.0000', '17.6400', '17.6400', '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 (36637, '2021-11-25', 8155, 34945, 2706, NULL, '2.0000', '65.0000', '65.0000', '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 (36638, '2021-11-25', 7780, 34946, 2706, NULL, '1.0000', '2.6000', '2.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 (36639, '2021-11-25', 7753, 34947, 2706, 41911, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36640, '2021-11-25', 7778, 34948, 2706, NULL, '1.0000', '13.0100', '13.0100', '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 (36641, '2021-11-25', 2655, 34949, 2706, 31905, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36642, '2021-11-25', 2100, 34950, 2706, 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 (36643, '2021-11-25', 7514, 34951, 2706, NULL, '1.0000', '12.9983', '12.9983', '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 (36644, '2021-11-25', 7892, 34952, 2706, NULL, '1.0000', '4.2000', '4.2000', '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 (36645, '2021-11-25', 2925, 34953, 2706, NULL, '1.0000', '5.0000', '5.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 (36646, '2021-11-25', 7674, 34954, 2706, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '120.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36647, '2021-11-25', 7400, 34955, 2706, NULL, '1.0000', '2.6200', '2.6200', '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 (36648, '2021-11-25', 9463, 34956, 2707, NULL, '1.0000', '7.5000', '7.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 (36649, '2021-11-25', 1322, 34957, 2707, NULL, '1.0000', '4.4000', '4.4000', '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 (36650, '2021-11-25', 2273, 34958, 2707, 39870, '1.0000', '3.6337', '3.6337', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36651, '2021-11-25', 1590, 34959, 2707, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36652, '2021-11-25', 2038, 34960, 2708, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.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 (36653, '2021-11-25', 9105, 34961, 2708, NULL, '1.0000', '0.5800', '0.5800', '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 (36654, '2021-11-25', 1310, 34962, 2708, NULL, '3.0000', '0.3700', '0.3700', '0.6000', '0.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 (36655, '2021-11-25', 2655, 34963, 2709, 31905, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36656, '2021-11-25', 9579, 34964, 2709, 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 (36657, '2021-11-25', 7586, 34965, 2709, NULL, '1.0000', '4.1700', '4.1700', '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 (36658, '2021-11-25', 2242, 34966, 2710, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36659, '2021-11-25', 2169, 34967, 2710, NULL, '1.0000', '1.1500', '1.1500', '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 (36660, '2021-11-25', 7571, 34968, 2711, NULL, '30.0000', '2.1000', '2.1000', '2.7000', '2.7000', '-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 (36661, '2021-11-25', 2604, 34969, 2711, 14491, '-7.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36662, '2021-11-25', 2604, 34969, 2711, NULL, '8.0000', '90.0000', '90.0000', '110.0000', '110.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 (36663, '2021-11-25', 2167, 34970, 2711, 17165, '-20.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 (36664, '2021-11-25', 2167, 34970, 2711, NULL, '21.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36665, '2021-11-25', 2651, 34971, 2711, NULL, '1.0000', '10.7500', '10.7500', '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 (36666, '2021-11-25', 1504, 34972, 2711, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (36667, '2021-11-25', 9631, 34973, 2711, NULL, '1.0000', '7.0000', '7.0000', '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 (36668, '2021-11-25', 1518, 34974, 2711, 6524, '-5.0000', '6.9000', '6.9000', '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 (36669, '2021-11-25', 1518, 34974, 2711, NULL, '6.0000', '6.9000', '6.9000', '10.0000', '10.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 (36670, '2021-11-25', 2109, 34975, 2711, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '108.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 (36671, '2021-11-25', 1629, 34976, 2711, 3204, '-3.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 (36672, '2021-11-25', 1629, 34976, 2711, NULL, '4.0000', '15.5000', '15.5000', '21.0000', '21.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 (36673, '2021-11-25', 2236, 34977, 2711, 2780, '-8.0000', '5.6599', '5.6599', '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 (36674, '2021-11-25', 2236, 34977, 2711, NULL, '9.0000', '5.6599', '5.6599', '8.0000', '8.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 (36675, '2021-11-25', 2263, 34978, 2711, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '4.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 (36676, '2021-11-25', 9578, 34979, 2711, NULL, '1.0000', '8.0000', '8.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 (36677, '2021-11-25', 1670, 34980, 2711, 10163, '-8.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 (36678, '2021-11-25', 1670, 34980, 2711, NULL, '9.0000', '19.5000', '19.5000', '26.0000', '26.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 (36679, '2021-11-25', 2083, 34981, 2711, 1629, '-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 (36680, '2021-11-25', 2083, 34981, 2711, 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 (36681, '2021-11-25', 2821, 34982, 2711, 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 (36682, '2021-11-25', 2602, 34983, 2711, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.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 (36683, '2021-11-25', 1525, 34984, 2711, NULL, '2.0000', '4.9100', '4.9100', '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 (36684, '2021-11-25', 2486, 34985, 2711, 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 (36685, '2021-11-25', 2154, 34986, 2711, 1369, '1.0000', '10.6849', '10.6849', '16.0000', '16.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 (36686, '2021-11-25', 1482, 34987, 2711, NULL, '1.0000', '12.9900', '12.9900', '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 (36687, '2021-11-25', 7454, 34988, 2711, NULL, '2.0000', '26.2200', '26.2200', '35.0000', '35.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 (36688, '2021-11-25', 9160, 34989, 2711, NULL, '1.0000', '15.0000', '15.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 (36689, '2021-11-25', 2948, 34990, 2711, NULL, '1.0000', '0.9000', '0.9000', '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 (36690, '2021-11-25', 2277, 34991, 2711, 2937, '-18.0000', '0.7800', '0.7800', '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 (36691, '2021-11-25', 2277, 34991, 2711, NULL, '19.0000', '0.7800', '0.7800', '1.5000', '1.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 (36692, '2021-11-25', 2384, 34992, 2711, 12014, '1.0000', '0.4000', '0.4000', '0.7000', '0.7000', '80.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 (36693, '2021-11-25', 2916, 34993, 2711, 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 (36694, '2021-11-25', 1783, 34994, 2711, 4901, '-15.0000', '7.8500', '7.8500', '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 (36695, '2021-11-25', 1783, 34994, 2711, NULL, '18.0000', '7.8500', '7.8500', '11.0000', '11.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 (36696, '2021-11-25', 1736, 34995, 2711, 71, '1.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '0.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 (36697, '2021-11-25', 1736, 34995, 2711, NULL, '1.0000', '-6.2282', '-6.2282', '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 (36698, '2021-11-25', 9667, 34996, 2711, NULL, '1.0000', '17.0000', '17.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 (36699, '2021-11-25', 1689, 34997, 2711, 4897, '-4.0000', '60.7198', '60.7198', '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 (36700, '2021-11-25', 1689, 34997, 2711, NULL, '5.0000', '60.7198', '60.7198', '18.0000', '18.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 (36701, '2021-11-25', 2543, 34998, 2711, 6304, '1.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 (36702, '2021-11-25', 1935, 34999, 2711, 5586, '-40.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 (36703, '2021-11-25', 1935, 34999, 2711, NULL, '41.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (36704, '2021-11-25', 1812, 35000, 2711, 8224, '-38.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 (36705, '2021-11-25', 1812, 35000, 2711, NULL, '39.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36706, '2021-11-25', 1688, 35001, 2711, 4896, '-4.0000', '18.5000', '18.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 (36707, '2021-11-25', 1688, 35001, 2711, NULL, '5.0000', '18.5000', '18.5000', '25.0000', '25.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 (36708, '2021-11-25', 9563, 35002, 2711, NULL, '1.0000', '5.1000', '5.1000', '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 (36709, '2021-11-25', 1574, 35004, 2712, 7593, '-32.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 (36710, '2021-11-25', 1574, 35004, 2712, NULL, '33.0000', '1.9600', '1.9600', '2.5000', '2.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 (36711, '2021-11-25', 1935, 35005, 2712, 5586, '-41.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 (36712, '2021-11-25', 1935, 35005, 2712, NULL, '43.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (36713, '2021-11-25', 2392, 35006, 2713, 22307, '1.0000', '3.7000', '3.7000', '5.0000', '5.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 (36714, '2021-11-25', 2022, 35007, 2713, 22308, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (36715, '2021-11-26', 2920, 35008, 2714, 18795, '1.0000', '22.0000', '22.0000', '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 (36716, '2021-11-26', 2920, 35008, 2714, NULL, '1.0000', '22.0000', '22.0000', '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 (36717, '2021-11-26', 8517, 35009, 2714, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36718, '2021-11-26', 2366, 35010, 2714, 3901, '2.0000', '3.7873', '3.7873', '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 (36719, '2021-11-26', 7490, 35011, 2714, NULL, '2.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36720, '2021-11-26', 1506, 35012, 2714, 24106, '1.0000', '53.7259', '53.7259', '21.5000', '21.5000', '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 (36721, '2021-11-26', 9667, 35013, 2714, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36722, '2021-11-26', 2532, 35014, 2714, 6125, '1.0000', '8.0000', '8.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 (36723, '2021-11-26', 2525, 35015, 2714, 15801, '1.0000', '10.0000', '10.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 (36724, '2021-11-26', 2454, 35016, 2714, 40896, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36725, '2021-11-26', 2231, 35017, 2714, 40367, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36726, '2021-11-26', 1839, 35018, 2714, 40627, '1.0000', '6.3091', '6.3091', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36727, '2021-11-26', 1407, 35019, 2714, 41976, '3.0000', '17.0125', '17.0125', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36728, '2021-11-26', 2376, 35020, 2714, 40174, '3.0000', '30.7757', '30.7757', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36729, '2021-11-26', 2286, 35021, 2714, 40603, '3.0000', '4.2971', '4.2971', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36730, '2021-11-26', 1651, 35022, 2714, 40889, '1.0000', '6.7326', '6.7326', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36731, '2021-11-26', 8746, 35023, 2714, 42177, '3.0000', '3.4287', '3.4287', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36732, '2021-11-26', 2643, 35024, 2714, 40380, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36733, '2021-11-26', 2315, 35025, 2714, 3069, '3.0000', '0.3300', '0.3300', '0.6000', '0.6000', '206.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36734, '2021-11-26', 7684, 35026, 2715, NULL, '12.0000', '9.0000', '9.0000', '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 (36735, '2021-11-26', 7324, 35027, 2715, NULL, '1.0000', '55.7000', '55.7000', '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 (36736, '2021-11-26', 9577, 35028, 2715, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '92.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36737, '2021-11-26', 1450, 35029, 2715, 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 (36738, '2021-11-26', 1533, 35030, 2715, 40902, '1.0000', '3.2241', '3.2241', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36739, '2021-11-26', 1793, 35031, 2715, 4924, '1.0000', '90.0000', '90.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 (36740, '2021-11-26', 9667, 35032, 2715, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36741, '2021-11-26', 1417, 35033, 2716, NULL, '1.0000', '11.5000', '11.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 (36742, '2021-11-26', 2965, 35034, 2717, 42174, '2.0000', '4.6400', '4.6400', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36743, '2021-11-26', 8775, 35035, 2718, NULL, '3.0000', '2.6000', '2.6000', '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 (36744, '2021-11-26', 7779, 35036, 2718, NULL, '1.0000', '0.6200', '0.6200', '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 (36745, '2021-11-26', 7684, 35037, 2718, NULL, '1.0000', '9.0000', '9.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 (36746, '2021-11-26', 1413, 35038, 2718, 37962, '1.0000', '17.3200', '17.3200', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36747, '2021-11-26', 7385, 35039, 2718, NULL, '3.0000', '12.5000', '12.5000', '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 (36748, '2021-11-26', 7428, 35040, 2718, NULL, '1.0000', '2.6100', '2.6100', '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 (36749, '2021-11-26', 9634, 35041, 2718, 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 (36750, '2021-11-26', 2287, 35042, 2718, 29630, '1.0000', '1.1700', '1.1700', '3.0000', '3.0000', '71.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36751, '2021-11-26', 9445, 35043, 2718, 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 (36752, '2021-11-26', 7391, 35044, 2718, NULL, '1.0000', '15.6000', '15.6000', '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 (36753, '2021-11-26', 2220, 35045, 2718, 24950, '1.0000', '5.9300', '5.9300', '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 (36754, '2021-11-26', 1422, 35046, 2718, NULL, '1.0000', '18.0000', '18.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 (36755, '2021-11-26', 9529, 35047, 2718, NULL, '1.0000', '9.2200', '9.2200', '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 (36756, '2021-11-26', 1935, 35048, 2718, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36757, '2021-11-26', 2135, 35049, 2718, 18930, '1.0000', '2.4732', '2.4732', '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 (36758, '2021-11-26', 7514, 35050, 2718, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36759, '2021-11-26', 8202, 35051, 2718, NULL, '1.0000', '1.6600', '1.6600', '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 (36760, '2021-11-26', 1557, 35052, 2718, NULL, '1.0000', '7.8420', '7.8420', '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 (36761, '2021-11-26', 2962, 35053, 2719, 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 (36762, '2021-11-26', 7768, 35054, 2719, NULL, '1.0000', '7.7800', '7.7800', '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 (36763, '2021-11-26', 2248, 35055, 2719, 41414, '1.0000', '3.0592', '3.0592', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36764, '2021-11-26', 9482, 35056, 2719, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36765, '2021-11-26', 8208, 35057, 2719, NULL, '1.0000', '33.0000', '33.0000', '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 (36766, '2021-11-26', 7780, 35058, 2720, NULL, '1.0000', '2.6000', '2.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 (36767, '2021-11-26', 8345, 35059, 2720, NULL, '1.0000', '22.0000', '22.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 (36768, '2021-11-26', 7514, 35060, 2720, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36769, '2021-11-26', 2444, 35061, 2720, 39222, '1.0000', '6.9587', '6.9587', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36770, '2021-11-26', 7576, 35062, 2720, 37777, '1.0000', '6.9100', '6.9100', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36771, '2021-11-26', 2317, 35063, 2720, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '14.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 (36772, '2021-11-26', 1837, 35064, 2720, 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 (36773, '2021-11-26', 2366, 35065, 2720, NULL, '2.0000', '-17.8500', '-17.8500', '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 (36774, '2021-11-26', 8677, 35066, 2720, NULL, '2.0000', '89.9250', '89.9250', '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 (36775, '2021-11-26', 7412, 35067, 2720, NULL, '1.0000', '1.5200', '1.5200', '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 (36776, '2021-11-26', 2169, 35068, 2721, NULL, '1.0000', '1.1500', '1.1500', '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 (36777, '2021-11-26', 7411, 35069, 2721, NULL, '1.0000', '1.3500', '1.3500', '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 (36778, '2021-11-26', 1628, 35070, 2721, NULL, '1.0000', '5.7900', '5.7900', '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 (36779, '2021-11-26', 7774, 35071, 2721, 39783, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36780, '2021-11-26', 1672, 35072, 2721, NULL, '10.0000', '-4.3367', '-4.3367', '4.0000', '4.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 (36781, '2021-11-26', 1618, 35073, 2721, NULL, '1.0000', '36.2513', '36.2513', '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 (36782, '2021-11-26', 2821, 35074, 2721, 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 (36783, '2021-11-26', 1605, 35075, 2721, 18941, '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 (36784, '2021-11-26', 1349, 35076, 2721, 41390, '1.0000', '34.2225', '34.2225', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36785, '2021-11-26', 1912, 35077, 2721, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36786, '2021-11-26', 2237, 35078, 2721, NULL, '1.0000', '-64.5817', '-64.5817', '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 (36787, '2021-11-26', 2315, 35079, 2721, NULL, '2.0000', '0.8556', '0.8556', '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 (36788, '2021-11-26', 2289, 35080, 2722, 38551, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '18.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36789, '2021-11-26', 2237, 35081, 2722, NULL, '1.0000', '-64.5817', '-64.5817', '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 (36790, '2021-11-26', 2169, 35082, 2722, NULL, '2.0000', '1.1500', '1.1500', '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 (36791, '2021-11-26', 1805, 35083, 2723, NULL, '1.0000', '4.5132', '4.5132', '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 (36792, '2021-11-26', 1783, 35084, 2723, 42070, '3.0000', '137.4528', '137.4528', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36793, '2021-11-26', 1425, 35085, 2723, 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 (36794, '2021-11-26', 2712, 35086, 2723, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36795, '2021-11-26', 3058, 35087, 2723, 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 (36796, '2021-11-26', 8982, 35088, 2724, 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 (36797, '2021-11-26', 7685, 35089, 2725, NULL, '3.0000', '31.2000', '31.2000', '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 (36798, '2021-11-26', 8067, 35090, 2725, NULL, '1.0000', '29.1700', '29.1700', '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 (36799, '2021-11-26', 3016, 35091, 2725, 39586, '1.0000', '14.5200', '14.5200', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36800, '2021-11-26', 2296, 35092, 2725, NULL, '1.0000', '12.8812', '12.8812', '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 (36801, '2021-11-26', 7674, 35093, 2725, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '118.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36802, '2021-11-26', 8746, 35094, 2725, 39419, '2.0000', '3.5400', '3.5400', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36803, '2021-11-26', 7756, 35095, 2725, NULL, '1.0000', '21.7700', '21.7700', '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 (36804, '2021-11-26', 7819, 35096, 2725, NULL, '1.0000', '9.5000', '9.5000', '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 (36805, '2021-11-26', 2295, 35097, 2725, 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 (36806, '2021-11-26', 7548, 35098, 2725, NULL, '1.0000', '-10.4600', '-10.4600', '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 (36807, '2021-11-26', 7514, 35099, 2725, NULL, '1.0000', '12.9983', '12.9983', '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 (36808, '2021-11-26', 8539, 35100, 2725, 31000, '1.0000', '4.4300', '4.4300', '0.8000', '0.8000', '25.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36809, '2021-11-26', 9160, 35101, 2725, NULL, '1.0000', '41.6640', '41.6640', '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 (36810, '2021-11-26', 7552, 35102, 2725, 30164, '1.0000', '4.0000', '4.0000', '5.2800', '5.2800', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36811, '2021-11-26', 9650, 35103, 2725, 41956, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36812, '2021-11-26', 7992, 35104, 2725, NULL, '1.0000', '8.8700', '8.8700', '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 (36813, '2021-11-26', 7585, 35105, 2725, NULL, '1.0000', '6.2000', '6.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 (36814, '2021-11-26', 7333, 35106, 2725, NULL, '2.0000', '13.5000', '13.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 (36815, '2021-11-26', 7743, 35107, 2725, NULL, '1.0000', '232891.5638', '232891.5638', '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 (36816, '2021-11-26', 7684, 35108, 2725, NULL, '1.0000', '9.0000', '9.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 (36817, '2021-11-26', 7518, 35109, 2725, NULL, '1.0000', '-67.2578', '-67.2578', '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 (36818, '2021-11-26', 7317, 35110, 2725, NULL, '1.0000', '29.3700', '29.3700', '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 (36819, '2021-11-26', 9266, 35111, 2725, 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 (36820, '2021-11-26', 2104, 35112, 2725, NULL, '1.0000', '0.2000', '0.2000', '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 (36821, '2021-11-26', 2503, 35113, 2725, 36674, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36822, '2021-11-26', 8596, 35114, 2725, NULL, '1.0000', '17.0000', '17.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 (36823, '2021-11-26', 1591, 35115, 2725, 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 (36824, '2021-11-26', 8220, 35116, 2725, NULL, '1.0000', '32.7000', '32.7000', '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 (36825, '2021-11-26', 7708, 35117, 2725, NULL, '1.0000', '6.1400', '6.1400', '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 (36826, '2021-11-26', 2100, 35118, 2725, 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 (36827, '2021-11-26', 7819, 35119, 2725, NULL, '1.0000', '9.5000', '9.5000', '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 (36828, '2021-11-26', 7674, 35120, 2725, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '117.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36829, '2021-11-26', 2350, 35121, 2725, NULL, '1.0000', '10.3800', '10.3800', '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 (36830, '2021-11-26', 9496, 35122, 2725, 38422, '1.0000', '3.8800', '3.8800', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36831, '2021-11-26', 8119, 35123, 2725, 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 (36832, '2021-11-26', 8308, 35124, 2725, NULL, '1.0000', '11.0000', '11.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 (36833, '2021-11-26', 9160, 35125, 2725, NULL, '1.0000', '41.6640', '41.6640', '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 (36834, '2021-11-26', 2965, 35126, 2725, 32149, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36835, '2021-11-26', 7482, 35127, 2725, NULL, '1.0000', '2.4981', '2.4981', '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 (36836, '2021-11-26', 7447, 35128, 2725, NULL, '4.0000', '19.1100', '19.1100', '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 (36837, '2021-11-26', 8000, 35129, 2725, NULL, '1.0000', '74.7436', '74.7436', '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 (36838, '2021-11-26', 8626, 35130, 2725, NULL, '2.0000', '10.0000', '10.0000', '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 (36839, '2021-11-26', 8363, 35131, 2725, NULL, '2.0000', '38.0000', '38.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 (36840, '2021-11-26', 9252, 35132, 2725, NULL, '1.0000', '1.9700', '1.9700', '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 (36841, '2021-11-26', 8735, 35133, 2725, NULL, '1.0000', '5.6000', '5.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 (36842, '2021-11-26', 9092, 35134, 2725, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '216.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36843, '2021-11-26', 1413, 35135, 2725, 38144, '1.0000', '18.0000', '18.0000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36844, '2021-11-26', 8735, 35136, 2725, NULL, '1.0000', '5.6000', '5.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 (36845, '2021-11-26', 7753, 35137, 2725, NULL, '1.0000', '3.4000', '3.4000', '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 (36846, '2021-11-26', 7674, 35138, 2725, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '118.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36847, '2021-11-26', 9158, 35139, 2725, NULL, '1.0000', '5.8910', '5.8910', '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 (36848, '2021-11-26', 7707, 35140, 2725, NULL, '1.0000', '6.0012', '6.0012', '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 (36849, '2021-11-26', 8763, 35141, 2725, 32138, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36850, '2021-11-26', 7888, 35142, 2725, NULL, '2.0000', '17.7800', '17.7800', '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 (36851, '2021-11-26', 8074, 35143, 2725, 41920, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36852, '2021-11-26', 9456, 35144, 2725, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36853, '2021-11-26', 7810, 35145, 2725, NULL, '1.0000', '13.5000', '13.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 (36854, '2021-11-26', 1533, 35146, 2725, 41877, '1.0000', '3.3999', '3.3999', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36855, '2021-11-26', 7892, 35147, 2725, NULL, '1.0000', '4.2000', '4.2000', '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 (36856, '2021-11-26', 7514, 35148, 2725, NULL, '1.0000', '12.9983', '12.9983', '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 (36857, '2021-11-26', 7316, 35149, 2725, 38455, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '25.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36858, '2021-11-26', 7819, 35150, 2725, NULL, '1.0000', '9.5000', '9.5000', '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 (36859, '2021-11-26', 7611, 35151, 2725, NULL, '2.0000', '5.0485', '5.0485', '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 (36860, '2021-11-26', 8193, 35152, 2725, NULL, '1.0000', '25.8000', '25.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 (36861, '2021-11-26', 8548, 35153, 2725, NULL, '1.0000', '12.0000', '12.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 (36862, '2021-11-26', 8843, 35154, 2725, 34495, '1.0000', '40.0000', '40.0000', '53.5000', '53.5000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36863, '2021-11-26', 8481, 35155, 2725, NULL, '1.0000', '31.0700', '31.0700', '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 (36864, '2021-11-26', 9399, 35156, 2725, NULL, '3.0000', '0.4200', '0.4200', '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 (36865, '2021-11-26', 7848, 35157, 2725, NULL, '1.0000', '1.3500', '1.3500', '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 (36866, '2021-11-26', 8517, 35158, 2725, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36867, '2021-11-26', 7707, 35159, 2725, NULL, '1.0000', '6.0012', '6.0012', '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 (36868, '2021-11-26', 7385, 35160, 2725, 41944, '5.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36869, '2021-11-26', 7714, 35161, 2725, 37846, '16.0000', '0.4200', '0.4200', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36870, '2021-11-26', 7634, 35162, 2725, NULL, '1.0000', '1.8000', '1.8000', '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 (36871, '2021-11-26', 9242, 35163, 2725, 34528, '1.0000', '22.5000', '22.5000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36872, '2021-11-26', 9563, 35164, 2725, 40449, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36873, '2021-11-26', 9563, 35165, 2725, 40449, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36874, '2021-11-26', 9563, 35166, 2725, 40449, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36875, '2021-11-26', 2635, 35167, 2726, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36876, '2021-11-26', 2169, 35168, 2726, NULL, '1.0000', '1.1500', '1.1500', '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 (36877, '2021-11-26', 2020, 35169, 2726, NULL, '1.0000', '7.8240', '7.8240', '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 (36878, '2021-11-26', 1493, 35170, 2726, 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 (36879, '2021-11-26', 1337, 35171, 2726, 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 (36880, '2021-11-26', 8608, 35172, 2726, NULL, '5.0000', '0.9000', '0.9000', '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 (36881, '2021-11-26', 2298, 35173, 2726, 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 (36882, '2021-11-26', 1339, 35174, 2726, NULL, '1.0000', '1.4463', '1.4463', '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 (36883, '2021-11-26', 2989, 35175, 2726, 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 (36884, '2021-11-26', 7500, 35176, 2727, NULL, '1.0000', '0.0000', '0.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 (36885, '2021-11-26', 2642, 35177, 2727, NULL, '1.0000', '7.5000', '7.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 (36886, '2021-11-26', 8336, 35178, 2727, NULL, '2.0000', '3.4000', '3.4000', '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 (36887, '2021-11-26', 9021, 35179, 2727, NULL, '2.0000', '7.0000', '7.0000', '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 (36888, '2021-11-26', 7641, 35180, 2727, NULL, '2.0000', '-12.5865', '-12.5865', '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 (36889, '2021-11-26', 9090, 35181, 2727, 39421, '1.0000', '11.0000', '11.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36890, '2021-11-26', 8735, 35182, 2727, NULL, '1.0000', '5.6000', '5.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 (36891, '2021-11-26', 7675, 35183, 2727, NULL, '1.0000', '11.4300', '11.4300', '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 (36892, '2021-11-26', 8721, 35184, 2727, NULL, '1.0000', '3.0000', '3.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 (36893, '2021-11-26', 2889, 35185, 2728, NULL, '1.0000', '20.0000', '20.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 (36894, '2021-11-26', 8608, 35186, 2728, NULL, '1.0000', '0.9000', '0.9000', '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 (36895, '2021-11-26', 2136, 35187, 2729, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36896, '2021-11-26', 9579, 35188, 2730, 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 (36897, '2021-11-26', 8677, 35189, 2730, NULL, '3.0000', '89.9250', '89.9250', '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 (36898, '2021-11-26', 2712, 35190, 2731, 32557, '8.0000', '0.2600', '0.2600', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36899, '2021-11-26', 2068, 35191, 2731, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36900, '2021-11-26', 7666, 35192, 2731, NULL, '1.0000', '10.0000', '10.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 (36901, '2021-11-26', 1690, 35193, 2731, 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 (36902, '2021-11-26', 2287, 35194, 2732, 29630, '4.0000', '1.1700', '1.1700', '3.0000', '3.0000', '67.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36903, '2021-11-26', 2712, 35195, 2733, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36904, '2021-11-26', 9160, 35196, 2734, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36905, '2021-11-26', 1527, 35197, 2734, 25031, '1.0000', '96.1416', '96.1416', '17.5000', '17.5000', '0.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 (36906, '2021-11-26', 1527, 35197, 2734, 1534, '1.0000', '96.1416', '96.1416', '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 (36907, '2021-11-26', 2352, 35198, 2734, 17460, '3.0000', '20.0000', '20.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 (36908, '2021-11-26', 8763, 35199, 2734, NULL, '1.0000', '5.4000', '5.4000', '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 (36909, '2021-11-26', 2068, 35200, 2734, 40859, '1.0000', '11.8778', '11.8778', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36910, '2021-11-26', 7750, 35201, 2734, NULL, '1.0000', '34.9000', '34.9000', '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 (36911, '2021-11-26', 2342, 35202, 2734, 38074, '4.0000', '1.8625', '1.8625', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36912, '2021-11-26', 2633, 35203, 2734, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36913, '2021-11-26', 2712, 35204, 2734, 42184, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36914, '2021-11-26', 2363, 35205, 2734, 40897, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36915, '2021-11-26', 1382, 35206, 2734, 3425, '1.0000', '4.0000', '4.0000', '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 (36916, '2021-11-26', 2497, 35207, 2734, 40183, '1.0000', '31.2000', '31.2000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36917, '2021-11-26', 7741, 35208, 2734, NULL, '1.0000', '1.2000', '1.2000', '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 (36918, '2021-11-26', 7736, 35209, 2734, NULL, '1.0000', '15.0000', '15.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 (36919, '2021-11-26', 1812, 35210, 2734, 40883, '1.0000', '7.9425', '7.9425', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36920, '2021-11-26', 1551, 35211, 2734, 1655, '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 (36921, '2021-11-26', 9667, 35212, 2734, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36922, '2021-11-26', 1365, 35213, 2734, NULL, '2.0000', '38.9800', '38.9800', '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 (36923, '2021-11-26', 2285, 35214, 2734, 32021, '1.0000', '36.0154', '36.0154', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36924, '2021-11-26', 1516, 35215, 2734, 1518, '1.0000', '90.0000', '90.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 (36925, '2021-11-26', 2317, 35216, 2734, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '53.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36926, '2021-11-26', 1695, 35217, 2734, 40860, '1.0000', '83.8723', '83.8723', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36927, '2021-11-26', 8164, 35218, 2734, NULL, '1.0000', '3.1200', '3.1200', '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 (36928, '2021-11-26', 2699, 35219, 2734, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36929, '2021-11-26', 9565, 35220, 2734, 40377, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36930, '2021-11-26', 1953, 35221, 2734, 32866, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36931, '2021-11-26', 1942, 35222, 2734, 40204, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36932, '2021-11-26', 3001, 35223, 2734, NULL, '2.0000', '1.5000', '1.5000', '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 (36933, '2021-11-26', 2680, 35224, 2734, NULL, '3.0000', '11.8600', '11.8600', '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 (36934, '2021-11-26', 7663, 35225, 2734, 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 (36935, '2021-11-26', 1665, 35226, 2734, 42122, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36936, '2021-11-26', 7473, 35227, 2734, NULL, '1.0000', '0.5300', '0.5300', '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 (36937, '2021-11-26', 2656, 35228, 2734, 40382, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36938, '2021-11-26', 2660, 35229, 2734, 37560, '4.0000', '0.7000', '0.7000', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36939, '2021-11-26', 2858, 35230, 2734, 40607, '2.0000', '1.0000', '1.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36940, '2021-11-27', 2169, 35231, 2735, NULL, '1.0000', '1.1500', '1.1500', '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 (36941, '2021-11-27', 1715, 35232, 2735, 37809, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36942, '2021-11-27', 1825, 35233, 2735, 39871, '1.0000', '4.3850', '4.3850', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36943, '2021-11-27', 1307, 35234, 2735, 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 (36944, '2021-11-27', 2953, 35235, 2735, NULL, '3.0000', '8.0000', '8.0000', '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 (36945, '2021-11-27', 2167, 35236, 2735, 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 (36946, '2021-11-27', 7318, 35237, 2735, NULL, '1.0000', '13.4400', '13.4400', '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 (36947, '2021-11-27', 1310, 35238, 2735, NULL, '1.0000', '0.3700', '0.3700', '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 (36948, '2021-11-27', 1695, 35239, 2735, NULL, '1.0000', '14.8348', '14.8348', '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 (36949, '2021-11-27', 2712, 35240, 2735, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36950, '2021-11-27', 9482, 35241, 2735, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36951, '2021-11-27', 2712, 35242, 2735, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36952, '2021-11-27', 2660, 35243, 2735, 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 (36953, '2021-11-27', 2315, 35244, 2735, NULL, '2.0000', '0.8556', '0.8556', '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 (36954, '2021-11-27', 1602, 35245, 2735, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36955, '2021-11-27', 1612, 35246, 2735, 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 (36956, '2021-11-27', 8133, 35247, 2735, NULL, '1.0000', '-618.7699', '-618.7699', '10.5300', '10.5300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36957, '2021-11-27', 2769, 35248, 2735, 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 (36958, '2021-11-27', 1912, 35249, 2735, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36959, '2021-11-27', 8765, 35250, 2735, 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 (36960, '2021-11-27', 8454, 35251, 2736, NULL, '1.0000', '5.1700', '5.1700', '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 (36961, '2021-11-27', 1523, 35252, 2736, NULL, '1.0000', '1.0061', '1.0061', '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 (36962, '2021-11-27', 1605, 35253, 2736, 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 (36963, '2021-11-27', 8065, 35254, 2737, NULL, '1.0000', '32.0000', '32.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 (36964, '2021-11-27', 2479, 35255, 2737, 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 (36965, '2021-11-27', 2236, 35256, 2737, 2780, '-9.0000', '5.6599', '5.6599', '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 (36966, '2021-11-27', 2236, 35256, 2737, NULL, '10.0000', '5.6599', '5.6599', '8.0000', '8.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 (36967, '2021-11-27', 2136, 35257, 2737, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '88.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 (36968, '2021-11-27', 2293, 35258, 2737, 22262, '1.0000', '1.4400', '1.4400', '1.0000', '1.0000', '86.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 (36969, '2021-11-27', 2858, 35259, 2737, 17772, '-15.0000', '1.0000', '1.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 (36970, '2021-11-27', 2858, 35259, 2737, NULL, '16.0000', '1.0000', '1.0000', '5.0000', '5.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 (36971, '2021-11-27', 2135, 35260, 2737, 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 (36972, '2021-11-27', 2036, 35261, 2737, 4277, '-5.0000', '8.0000', '8.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 (36973, '2021-11-27', 2036, 35261, 2737, NULL, '6.0000', '8.0000', '8.0000', '10.0000', '10.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 (36974, '2021-11-27', 1486, 35262, 2737, 22327, '1.0000', '17.2400', '17.2400', '22.5000', '22.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 (36975, '2021-11-27', 2169, 35263, 2737, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '16.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 (36976, '2021-11-27', 7573, 35264, 2737, NULL, '1.0000', '5.5000', '5.5000', '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 (36977, '2021-11-27', 8744, 35265, 2737, NULL, '1.0000', '3.6600', '3.6600', '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 (36978, '2021-11-27', 1528, 35266, 2737, 18895, '2.0000', '38.6400', '38.6400', '6.0000', '6.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 (36979, '2021-11-27', 1528, 35266, 2737, NULL, '8.0000', '38.6400', '38.6400', '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 (36980, '2021-11-27', 2039, 35267, 2737, 6391, '-1.0000', '9.5000', '9.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36981, '2021-11-27', 2039, 35267, 2737, NULL, '2.0000', '9.5000', '9.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 (36982, '2021-11-27', 2876, 35268, 2737, 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 (36983, '2021-11-27', 2712, 35269, 2737, 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 (36984, '2021-11-27', 2920, 35270, 2737, 18777, '-2.0000', '22.0000', '22.0000', '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 (36985, '2021-11-27', 2920, 35270, 2737, NULL, '4.0000', '22.0000', '22.0000', '16.5000', '16.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 (36986, '2021-11-27', 1712, 35271, 2737, 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 (36987, '2021-11-27', 1912, 35272, 2737, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (36988, '2021-11-27', 2066, 35273, 2737, 5484, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '22.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 (36989, '2021-11-27', 2602, 35274, 2737, 18715, '2.0000', '4.0000', '4.0000', '5.0000', '5.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 (36990, '2021-11-27', 1867, 35275, 2737, NULL, '1.0000', '1.0500', '1.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 (36991, '2021-11-27', 1667, 35276, 2737, 9745, '-29.0000', '5.9400', '5.9400', '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 (36992, '2021-11-27', 1667, 35276, 2737, NULL, '30.0000', '5.9400', '5.9400', '8.5000', '8.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 (36993, '2021-11-27', 8518, 35277, 2737, NULL, '1.0000', '17.6400', '17.6400', '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 (36994, '2021-11-27', 2237, 35278, 2738, NULL, '1.0000', '-64.5817', '-64.5817', '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 (36995, '2021-11-27', 7530, 35279, 2738, 42073, '1.0000', '-2.9704', '-2.9704', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36996, '2021-11-27', 7391, 35280, 2739, NULL, '1.0000', '-144.1150', '-144.1150', '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 (36997, '2021-11-27', 2169, 35281, 2740, NULL, '1.0000', '1.1500', '1.1500', '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 (36998, '2021-11-27', 7411, 35282, 2740, NULL, '1.0000', '1.3500', '1.3500', '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 (36999, '2021-11-27', 7328, 35283, 2740, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (37000, '2021-11-27', 8208, 35284, 2740, NULL, '1.0000', '33.0000', '33.0000', '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 (37001, '2021-11-27', 7848, 35285, 2740, 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 (37002, '2021-11-27', 2315, 35286, 2740, NULL, '1.0000', '0.8556', '0.8556', '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 (37003, '2021-11-27', 2320, 35287, 2740, 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 (37004, '2021-11-27', 1810, 35288, 2740, 41386, '1.0000', '8.5104', '8.5104', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37005, '2021-11-27', 2821, 35289, 2740, 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 (37006, '2021-11-27', 7367, 35290, 2740, NULL, '1.0000', '35.0000', '35.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 (37007, '2021-11-27', 7411, 35291, 2740, NULL, '1.0000', '1.3500', '1.3500', '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 (37008, '2021-11-27', 1519, 35292, 2740, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37009, '2021-11-27', 1736, 35293, 2740, 19874, '6.0000', '26.7000', '26.7000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37010, '2021-11-27', 7935, 35294, 2740, NULL, '1.0000', '0.5500', '0.5500', '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 (37011, '2021-11-27', 2068, 35295, 2740, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37012, '2021-11-27', 2072, 35296, 2740, 34600, '1.0000', '8.1200', '8.1200', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37013, '2021-11-27', 2320, 35297, 2740, 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 (37014, '2021-11-27', 2315, 35298, 2740, NULL, '2.0000', '0.8556', '0.8556', '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 (37015, '2021-11-27', 7666, 35299, 2740, NULL, '1.0000', '10.0000', '10.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 (37016, '2021-11-27', 3054, 35300, 2740, 38912, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37017, '2021-11-27', 7774, 35301, 2740, 39783, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37018, '2021-11-27', 7411, 35302, 2740, NULL, '1.0000', '1.3500', '1.3500', '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 (37019, '2021-11-27', 7980, 35303, 2740, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (37020, '2021-11-27', 2289, 35304, 2741, 38551, '1.0000', '0.2831', '0.2831', '0.5000', '0.5000', '17.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37021, '2021-11-27', 1840, 35305, 2741, NULL, '1.0000', '0.2400', '0.2400', '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 (37022, '2021-11-27', 7411, 35306, 2741, NULL, '1.0000', '1.3500', '1.3500', '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 (37023, '2021-11-27', 1841, 35307, 2741, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37024, '2021-11-27', 8763, 35308, 2741, NULL, '3.0000', '5.4000', '5.4000', '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 (37025, '2021-11-27', 1463, 35309, 2742, 32537, '1.0000', '18.5000', '18.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37026, '2021-11-27', 2293, 35310, 2742, NULL, '1.0000', '1.4400', '1.4400', '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 (37027, '2021-11-27', 2169, 35311, 2742, NULL, '1.0000', '1.1500', '1.1500', '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 (37028, '2021-11-27', 8033, 35312, 2742, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37029, '2021-11-27', 1339, 35313, 2742, NULL, '1.0000', '1.4463', '1.4463', '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 (37030, '2021-11-27', 1330, 35314, 2742, 19334, '2.0000', '2.8000', '2.8000', '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 (37031, '2021-11-27', 2753, 35315, 2742, 32534, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37032, '2021-11-27', 7666, 35316, 2742, NULL, '1.0000', '10.0000', '10.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 (37033, '2021-11-27', 9482, 35317, 2742, 32547, '10.0000', '0.5000', '0.5000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37034, '2021-11-27', 7918, 35318, 2742, NULL, '1.0000', '1.6500', '1.6500', '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 (37035, '2021-11-27', 1381, 35319, 2742, 41381, '1.0000', '-2376.8068', '-2376.8068', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37036, '2021-11-27', 7583, 35320, 2742, NULL, '1.0000', '4.0000', '4.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 (37037, '2021-11-27', 1966, 35321, 2742, 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 (37038, '2021-11-27', 1888, 35322, 2742, 42105, '1.0000', '16.4667', '16.4667', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37039, '2021-11-27', 1602, 35323, 2742, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37040, '2021-11-27', 7514, 35324, 2742, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37041, '2021-11-27', 7853, 35325, 2743, NULL, '1.0000', '35.0000', '35.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 (37042, '2021-11-27', 7852, 35326, 2743, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37043, '2021-11-27', 7523, 35327, 2743, NULL, '1.0000', '1.8300', '1.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 (37044, '2021-11-27', 1837, 35328, 2743, 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 (37045, '2021-11-27', 8097, 35329, 2743, 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 (37046, '2021-11-27', 7807, 35330, 2743, NULL, '4.0000', '12.0000', '12.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 (37047, '2021-11-27', 8328, 35331, 2743, NULL, '1.0000', '8.0882', '8.0882', '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 (37048, '2021-11-27', 8269, 35332, 2743, NULL, '1.0000', '10.0000', '10.0000', '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 (37049, '2021-11-27', 9154, 35333, 2743, NULL, '1.0000', '10.6800', '10.6800', '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 (37050, '2021-11-27', 7674, 35334, 2743, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '114.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37051, '2021-11-27', 7564, 35335, 2743, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37052, '2021-11-27', 1501, 35336, 2743, NULL, '1.0000', '27.4349', '27.4349', '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 (37053, '2021-11-27', 2315, 35337, 2743, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37054, '2021-11-27', 7474, 35338, 2743, NULL, '1.0000', '67.6200', '67.6200', '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 (37055, '2021-11-27', 8438, 35339, 2743, NULL, '1.0000', '11.5000', '11.5000', '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 (37056, '2021-11-27', 9337, 35340, 2743, NULL, '2.0000', '6.8067', '6.8067', '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 (37057, '2021-11-27', 7514, 35341, 2743, NULL, '1.0000', '12.9983', '12.9983', '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 (37058, '2021-11-27', 7565, 35342, 2743, NULL, '1.0000', '0.2000', '0.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 (37059, '2021-11-27', 8608, 35343, 2743, NULL, '2.0000', '5.7400', '5.7400', '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 (37060, '2021-11-27', 7674, 35344, 2743, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '114.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37061, '2021-11-27', 7906, 35345, 2743, 33752, '1.0000', '7.8800', '7.8800', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37062, '2021-11-27', 7674, 35346, 2743, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '113.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37063, '2021-11-27', 7684, 35347, 2743, NULL, '1.0000', '9.0000', '9.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 (37064, '2021-11-27', 7444, 35348, 2743, 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 (37065, '2021-11-27', 8164, 35349, 2743, NULL, '1.0000', '3.1200', '3.1200', '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 (37066, '2021-11-27', 2289, 35350, 2743, NULL, '4.0000', '0.2300', '0.2300', '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 (37067, '2021-11-27', 1841, 35351, 2743, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37068, '2021-11-27', 8699, 35352, 2743, NULL, '5.0000', '6.3800', '6.3800', '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 (37069, '2021-11-27', 7612, 35353, 2743, NULL, '1.0000', '1.1770', '1.1770', '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 (37070, '2021-11-27', 9028, 35354, 2743, NULL, '2.0000', '42.1200', '42.1200', '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 (37071, '2021-11-27', 7473, 35355, 2743, NULL, '4.0000', '25.2998', '25.2998', '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 (37072, '2021-11-27', 7518, 35356, 2743, NULL, '4.0000', '-67.2578', '-67.2578', '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 (37073, '2021-11-27', 8652, 35357, 2743, NULL, '4.0000', '2.0600', '2.0600', '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 (37074, '2021-11-27', 7859, 35358, 2743, NULL, '1.0000', '3.6000', '3.6000', '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 (37075, '2021-11-27', 7720, 35359, 2743, NULL, '2.0000', '8.5000', '8.5000', '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 (37076, '2021-11-27', 7641, 35360, 2743, NULL, '1.0000', '-12.5865', '-12.5865', '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 (37077, '2021-11-27', 8135, 35361, 2743, NULL, '1.0000', '13.9000', '13.9000', '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 (37078, '2021-11-27', 7643, 35362, 2743, NULL, '1.0000', '2.1100', '2.1100', '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 (37079, '2021-11-27', 7357, 35363, 2743, NULL, '1.0000', '11.7500', '11.7500', '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 (37080, '2021-11-27', 9613, 35364, 2743, NULL, '1.0000', '30.0000', '30.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 (37081, '2021-11-27', 7385, 35365, 2743, 41944, '2.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37082, '2021-11-27', 7743, 35366, 2743, NULL, '1.0000', '232891.5638', '232891.5638', '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 (37083, '2021-11-27', 7752, 35367, 2743, 41871, '1.0000', '-30242.8593', '-30242.8593', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37084, '2021-11-27', 1837, 35368, 2743, 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 (37085, '2021-11-27', 8097, 35369, 2743, 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 (37086, '2021-11-27', 8069, 35370, 2743, 39636, '1.0000', '29.0525', '29.0525', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37087, '2021-11-27', 7368, 35371, 2743, 41923, '1.0000', '-39.6718', '-39.6718', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37088, '2021-11-27', 7780, 35372, 2743, NULL, '1.0000', '2.6000', '2.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 (37089, '2021-11-27', 7473, 35373, 2743, NULL, '1.0000', '25.2998', '25.2998', '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 (37090, '2021-11-27', 1501, 35374, 2743, NULL, '1.0000', '27.4349', '27.4349', '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 (37091, '2021-11-27', 7674, 35375, 2743, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '114.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37092, '2021-11-27', 7335, 35376, 2743, NULL, '1.0000', '10.4000', '10.4000', '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 (37093, '2021-11-27', 7915, 35377, 2743, NULL, '1.0000', '2.8000', '2.8000', '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 (37094, '2021-11-27', 8756, 35378, 2743, NULL, '1.0000', '7.5051', '7.5051', '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 (37095, '2021-11-27', 8401, 35379, 2743, 42422, '1.0000', '13.7163', '13.7163', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37096, '2021-11-27', 8918, 35380, 2743, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37097, '2021-11-27', 7552, 35381, 2743, 30164, '1.0000', '4.0000', '4.0000', '5.2800', '5.2800', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37098, '2021-11-27', 1605, 35382, 2743, NULL, '2.0000', '24.8500', '24.8500', '39.0000', '39.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 (37099, '2021-11-27', 1914, 35383, 2743, 41916, '1.0000', '5.2299', '5.2299', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37100, '2021-11-27', 9419, 35384, 2743, 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 (37101, '2021-11-27', 7756, 35385, 2743, NULL, '2.0000', '21.7700', '21.7700', '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 (37102, '2021-11-27', 8974, 35386, 2743, NULL, '1.0000', '5.4000', '5.4000', '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 (37103, '2021-11-27', 7704, 35387, 2743, 39631, '2.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37104, '2021-11-27', 7800, 35388, 2743, NULL, '20.0000', '4.9000', '4.9000', '7.0000', '7.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 (37105, '2021-11-27', 7532, 35389, 2743, NULL, '1.0000', '5.2000', '5.2000', '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 (37106, '2021-11-27', 7853, 35390, 2743, NULL, '1.0000', '35.0000', '35.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 (37107, '2021-11-27', 8269, 35391, 2743, NULL, '1.0000', '10.0000', '10.0000', '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 (37108, '2021-11-27', 7799, 35392, 2743, NULL, '1.0000', '2.0000', '2.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 (37109, '2021-11-27', 8722, 35393, 2743, 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 (37110, '2021-11-27', 8166, 35394, 2743, NULL, '1.0000', '4.6000', '4.6000', '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 (37111, '2021-11-27', 7736, 35395, 2743, NULL, '1.0000', '15.0000', '15.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 (37112, '2021-11-27', 7523, 35396, 2743, NULL, '1.0000', '1.8300', '1.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 (37113, '2021-11-27', 7753, 35397, 2743, NULL, '1.0000', '3.4000', '3.4000', '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 (37114, '2021-11-27', 7509, 35398, 2743, 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 (37115, '2021-11-27', 2289, 35399, 2743, NULL, '4.0000', '0.2300', '0.2300', '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 (37116, '2021-11-27', 7877, 35400, 2743, NULL, '1.0000', '1.3600', '1.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 (37117, '2021-11-27', 8698, 35401, 2743, NULL, '1.0000', '2.0000', '2.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 (37118, '2021-11-27', 8132, 35402, 2743, NULL, '1.0000', '4.7200', '4.7200', '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 (37119, '2021-11-27', 1557, 35403, 2743, NULL, '1.0000', '7.6000', '7.6000', '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 (37120, '2021-11-27', 9445, 35404, 2743, 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 (37121, '2021-11-27', 7385, 35405, 2743, 41944, '5.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37122, '2021-11-27', 7784, 35406, 2743, NULL, '2.0000', '4.2500', '4.2500', '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 (37123, '2021-11-27', 2289, 35407, 2743, 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 (37124, '2021-11-27', 1947, 35408, 2743, 41901, '1.0000', '-49211.3981', '-49211.3981', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37125, '2021-11-27', 2148, 35409, 2743, NULL, '1.0000', '35.0000', '35.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 (37126, '2021-11-27', 7863, 35410, 2743, NULL, '3.0000', '3.0000', '3.0000', '7.0000', '7.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 (37127, '2021-11-27', 2847, 35411, 2743, 30017, '1.0000', '13.8800', '13.8800', '18.0000', '18.0000', '26.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37128, '2021-11-27', 8769, 35412, 2743, 39416, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37129, '2021-11-27', 8769, 35412, 2743, NULL, '4.0000', '6.6000', '6.6000', '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 (37130, '2021-11-27', 8966, 35413, 2743, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37131, '2021-11-27', 7684, 35414, 2743, NULL, '2.0000', '9.0000', '9.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 (37132, '2021-11-27', 9612, 35415, 2743, 40452, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37133, '2021-11-27', 7358, 35416, 2743, 42421, '1.0000', '14.5455', '14.5455', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37134, '2021-11-27', 7606, 35417, 2743, 41937, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37135, '2021-11-27', 8810, 35418, 2743, NULL, '1.0000', '1.9200', '1.9200', '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 (37136, '2021-11-27', 7411, 35419, 2743, NULL, '1.0000', '1.3500', '1.3500', '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 (37137, '2021-11-27', 9498, 35420, 2743, NULL, '1.0000', '12.5000', '12.5000', '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 (37138, '2021-11-27', 7708, 35421, 2743, NULL, '1.0000', '6.1400', '6.1400', '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 (37139, '2021-11-27', 8098, 35422, 2743, 38463, '2.0000', '-3.2308', '-3.2308', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37140, '2021-11-27', 9413, 35423, 2743, NULL, '1.0000', '7.9000', '7.9000', '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 (37141, '2021-11-27', 2660, 35424, 2744, 37560, '10.0000', '0.7000', '0.7000', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37142, '2021-11-27', 1351, 35425, 2744, 40588, '1.0000', '40.0300', '40.0300', '53.0000', '53.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37143, '2021-11-27', 1592, 35426, 2744, 42214, '1.0000', '36.5795', '36.5795', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37144, '2021-11-27', 9638, 35427, 2744, 41985, '1.0000', '34.5000', '34.5000', '45.5000', '45.5000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37145, '2021-11-27', 1602, 35428, 2744, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '27.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37146, '2021-11-27', 1812, 35429, 2744, 40883, '1.0000', '7.9425', '7.9425', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37147, '2021-11-27', 2858, 35430, 2744, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37148, '2021-11-27', 9160, 35431, 2744, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37149, '2021-11-27', 9667, 35432, 2744, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37150, '2021-11-27', 2712, 35433, 2744, 42184, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '85.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37151, '2021-11-27', 9177, 35434, 2744, 37567, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '45.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37152, '2021-11-27', 1806, 35435, 2744, 40196, '1.0000', '7.3031', '7.3031', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37153, '2021-11-27', 1806, 35435, 2744, 12069, '1.0000', '7.3031', '7.3031', '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 (37154, '2021-11-27', 1871, 35436, 2744, 32818, '20.0000', '29.4135', '29.4135', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37155, '2021-11-27', 2167, 35437, 2744, 40903, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37156, '2021-11-27', 2712, 35438, 2744, 42184, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '85.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37157, '2021-11-27', 2277, 35439, 2744, 38069, '4.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37158, '2021-11-27', 2876, 35440, 2744, 39185, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37159, '2021-11-27', 9547, 35441, 2744, 39180, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37160, '2021-11-27', 9638, 35442, 2744, 41985, '1.0000', '34.5000', '34.5000', '45.5000', '45.5000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37161, '2021-11-27', 2317, 35443, 2744, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '52.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37162, '2021-11-27', 8622, 35444, 2744, 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 (37163, '2021-11-27', 1943, 35445, 2744, 34688, '1.0000', '4.6035', '4.6035', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37164, '2021-11-27', 2411, 35446, 2744, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.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 (37165, '2021-11-27', 7524, 35447, 2744, NULL, '2.0000', '11.9500', '11.9500', '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 (37166, '2021-11-27', 8746, 35448, 2744, 42177, '1.0000', '3.4287', '3.4287', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37167, '2021-11-27', 7748, 35449, 2744, NULL, '1.0000', '33.9800', '33.9800', '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 (37168, '2021-11-27', 1401, 35450, 2744, 31691, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37169, '2021-11-27', 2876, 35451, 2744, 39185, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37170, '2021-11-27', 2858, 35452, 2744, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37171, '2021-11-27', 1427, 35453, 2744, 38068, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37172, '2021-11-27', 9469, 35454, 2744, 35936, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37173, '2021-11-27', 2573, 35455, 2744, 7228, '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 (37174, '2021-11-27', 2916, 35456, 2745, 40854, '1.0000', '11.0950', '11.0950', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37175, '2021-11-27', 2320, 35457, 2745, 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 (37176, '2021-11-27', 2916, 35458, 2745, 40854, '1.0000', '11.0950', '11.0950', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37177, '2021-11-27', 7743, 35459, 2745, NULL, '1.0000', '1.3100', '1.3100', '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 (37178, '2021-11-27', 1637, 35460, 2745, 40155, '1.0000', '403.4397', '403.4397', '14.0000', '14.0000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37179, '2021-11-27', 1688, 35461, 2745, 24132, '1.0000', '17.8694', '17.8694', '25.0000', '25.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 (37180, '2021-11-27', 2109, 35462, 2745, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '84.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37181, '2021-11-27', 7642, 35463, 2745, NULL, '1.0000', '5.9200', '5.9200', '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 (37182, '2021-11-27', 1667, 35464, 2745, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37183, '2021-11-27', 9291, 35465, 2745, NULL, '1.0000', '11.9000', '11.9000', '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 (37184, '2021-11-27', 1880, 35466, 2745, 5006, '2.0000', '4.6000', '4.6000', '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 (37185, '2021-11-27', 7518, 35467, 2745, NULL, '1.0000', '5.1300', '5.1300', '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 (37186, '2021-11-27', 1935, 35468, 2745, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37187, '2021-11-27', 7736, 35469, 2746, NULL, '1.0000', '15.0000', '15.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 (37188, '2021-11-27', 1592, 35470, 2746, 42214, '1.0000', '36.5795', '36.5795', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37189, '2021-11-27', 8039, 35471, 2746, NULL, '1.0000', '34.6600', '34.6600', '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 (37190, '2021-11-27', 1602, 35472, 2746, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '26.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37191, '2021-11-27', 7613, 35473, 2746, 41990, '2.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37192, '2021-11-27', 2398, 35474, 2747, 17925, '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 (37193, '2021-11-27', 1966, 35475, 2748, 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 (37194, '2021-11-27', 2392, 35476, 2748, NULL, '1.0000', '3.2000', '3.2000', '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 (37195, '2021-11-27', 1420, 35477, 2748, 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 (37196, '2021-11-27', 1371, 35478, 2748, 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 (37197, '2021-11-27', 2413, 35479, 2748, NULL, '1.0000', '1.0500', '1.0500', '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 (37198, '2021-11-27', 8638, 35480, 2748, NULL, '1.0000', '0.5100', '0.5100', '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 (37199, '2021-11-27', 7743, 35481, 2748, NULL, '1.0000', '7.3900', '7.3900', '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 (37200, '2021-11-27', 2280, 35482, 2748, NULL, '1.0000', '-177.9360', '-177.9360', '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 (37201, '2021-11-27', 1541, 35483, 2748, NULL, '1.0000', '18.7200', '18.7200', '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 (37202, '2021-11-27', 1618, 35484, 2748, NULL, '1.0000', '36.2513', '36.2513', '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 (37203, '2021-11-27', 7620, 35485, 2748, 39874, '1.0000', '9.3100', '9.3100', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37204, '2021-11-27', 7822, 35486, 2748, 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 (37205, '2021-11-27', 1520, 35487, 2748, 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 (37206, '2021-11-27', 9442, 35488, 2748, 39228, '1.0000', '30.0000', '30.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37207, '2021-11-27', 1574, 35489, 2748, NULL, '1.0000', '1.7001', '1.7001', '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 (37208, '2021-11-27', 1386, 35490, 2748, 41400, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37209, '2021-11-27', 1760, 35491, 2748, NULL, '1.0000', '1.5900', '1.5900', '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 (37210, '2021-11-27', 7742, 35492, 2748, 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 (37211, '2021-11-27', 2298, 35493, 2748, 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 (37212, '2021-11-27', 2506, 35494, 2748, 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 (37213, '2021-11-27', 7411, 35495, 2748, NULL, '1.0000', '1.3500', '1.3500', '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 (37214, '2021-11-27', 9579, 35496, 2748, 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 (37215, '2021-11-27', 2762, 35497, 2748, 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 (37216, '2021-11-27', 2283, 35498, 2748, 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 (37217, '2021-11-27', 8677, 35499, 2748, NULL, '2.0000', '89.9250', '89.9250', '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 (37218, '2021-11-27', 1314, 35500, 2748, 39907, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37219, '2021-11-27', 1314, 35500, 2748, 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 (37220, '2021-11-27', 2506, 35501, 2748, 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 (37221, '2021-11-27', 1557, 35502, 2748, NULL, '1.0000', '7.8420', '7.8420', '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 (37222, '2021-11-27', 2728, 35503, 2748, 19354, '1.0000', '0.8000', '0.8000', '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 (37223, '2021-11-27', 2287, 35504, 2748, 29630, '4.0000', '1.1700', '1.1700', '3.0000', '3.0000', '63.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37224, '2021-11-27', 2815, 35505, 2748, 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 (37225, '2021-11-27', 7482, 35506, 2748, 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 (37226, '2021-11-27', 1700, 35507, 2748, 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 (37227, '2021-11-27', 8608, 35508, 2748, NULL, '1.0000', '0.9000', '0.9000', '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 (37228, '2021-11-27', 8775, 35509, 2748, NULL, '1.0000', '2.6000', '2.6000', '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 (37229, '2021-11-27', 9105, 35510, 2748, NULL, '1.0000', '0.5800', '0.5800', '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 (37230, '2021-11-27', 2262, 35511, 2748, 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 (37231, '2021-11-27', 1307, 35512, 2748, 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 (37232, '2021-11-27', 9092, 35513, 2748, NULL, '2.0000', '5.2900', '5.2900', '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 (37233, '2021-11-27', 9158, 35514, 2748, NULL, '1.0000', '5.8900', '5.8900', '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 (37234, '2021-11-27', 2237, 35515, 2748, NULL, '1.0000', '-64.5817', '-64.5817', '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 (37235, '2021-11-27', 2169, 35516, 2748, NULL, '1.0000', '1.1500', '1.1500', '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 (37236, '2021-11-27', 1314, 35517, 2748, 39907, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37237, '2021-11-27', 1574, 35518, 2748, NULL, '1.0000', '1.7001', '1.7001', '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 (37238, '2021-11-27', 1612, 35519, 2748, 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 (37239, '2021-11-27', 2280, 35520, 2748, NULL, '1.0000', '-177.9360', '-177.9360', '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 (37240, '2021-11-27', 9092, 35521, 2748, NULL, '7.0000', '5.2900', '5.2900', '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 (37241, '2021-11-27', 7514, 35522, 2748, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37242, '2021-11-27', 8638, 35523, 2748, NULL, '2.0000', '0.5100', '0.5100', '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 (37243, '2021-11-27', 1966, 35524, 2748, 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 (37244, '2021-11-27', 2417, 35525, 2748, 32544, '1.0000', '3.7800', '3.7800', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37245, '2021-11-27', 7743, 35526, 2749, NULL, '2.0000', '7.3900', '7.3900', '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 (37246, '2021-11-27', 2237, 35527, 2750, NULL, '1.0000', '-64.5817', '-64.5817', '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 (37247, '2021-11-27', 1667, 35528, 2750, 42076, '1.0000', '18.6700', '18.6700', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37248, '2021-11-27', 2277, 35529, 2751, 38069, '6.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37249, '2021-11-27', 2958, 35530, 2751, 40390, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37250, '2021-11-27', 1839, 35531, 2751, 40627, '1.0000', '6.3091', '6.3091', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37251, '2021-11-27', 2360, 35532, 2751, 17042, '2.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (37252, '2021-11-27', 2342, 35533, 2751, 38074, '10.0000', '1.8625', '1.8625', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37253, '2021-11-27', 2135, 35534, 2751, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37254, '2021-11-27', 2958, 35535, 2751, 40390, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37255, '2021-11-27', 1602, 35536, 2752, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '25.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37256, '2021-11-27', 2248, 35537, 2752, NULL, '2.0000', '2.4916', '2.4916', '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 (37257, '2021-11-27', 2363, 35538, 2752, 40897, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37258, '2021-11-27', 7593, 35539, 2753, 40622, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37259, '2021-11-27', 7518, 35540, 2754, NULL, '1.0000', '-67.2578', '-67.2578', '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 (37260, '2021-11-27', 8969, 35541, 2754, NULL, '4.0000', '2.0000', '2.0000', '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 (37261, '2021-11-27', 7819, 35542, 2754, NULL, '1.0000', '9.5000', '9.5000', '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 (37262, '2021-11-27', 8142, 35543, 2754, 37417, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37263, '2021-11-27', 2284, 35544, 2754, 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 (37264, '2021-11-27', 7548, 35545, 2754, NULL, '1.0000', '-10.4600', '-10.4600', '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 (37265, '2021-11-27', 8340, 35546, 2754, NULL, '14.0000', '23.9100', '23.9100', '2.4000', '2.4000', '-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 (37266, '2021-11-27', 8453, 35547, 2754, NULL, '1.0000', '5.0800', '5.0800', '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 (37267, '2021-11-27', 7713, 35548, 2754, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37268, '2021-11-27', 9269, 35549, 2754, 36661, '2.0000', '1.6500', '1.6500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37269, '2021-11-27', 9252, 35550, 2754, NULL, '1.0000', '1.9700', '1.9700', '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 (37270, '2021-11-27', 8140, 35551, 2754, NULL, '1.0000', '6.0500', '6.0500', '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 (37271, '2021-11-27', 7678, 35552, 2754, 41899, '1.0000', '5.1401', '5.1401', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37272, '2021-11-27', 2070, 35553, 2754, 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 (37273, '2021-11-27', 2699, 35554, 2754, 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 (37274, '2021-11-27', 9092, 35555, 2754, 40421, '5.0000', '0.3051', '0.3051', '0.5000', '0.5000', '211.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37275, '2021-11-27', 7753, 35556, 2754, NULL, '1.0000', '3.4000', '3.4000', '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 (37276, '2021-11-27', 7651, 35557, 2754, NULL, '1.0000', '5.0000', '5.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 (37277, '2021-11-27', 7674, 35558, 2754, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '109.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37278, '2021-11-27', 7359, 35559, 2754, NULL, '3.0000', '11.4660', '11.4660', '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 (37279, '2021-11-27', 7684, 35560, 2754, NULL, '5.0000', '9.0000', '9.0000', '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 (37280, '2021-11-27', 7862, 35561, 2754, NULL, '1.0000', '17.8000', '17.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 (37281, '2021-11-27', 1837, 35562, 2754, 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 (37282, '2021-11-27', 7459, 35563, 2754, NULL, '3.0000', '40.3500', '40.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 (37283, '2021-11-27', 7897, 35564, 2754, NULL, '1.0000', '3.0000', '3.0000', '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 (37284, '2021-11-27', 8057, 35565, 2754, NULL, '1.0000', '6.0000', '6.0000', '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 (37285, '2021-11-27', 7473, 35566, 2754, NULL, '2.0000', '25.2998', '25.2998', '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 (37286, '2021-11-27', 2289, 35567, 2754, NULL, '4.0000', '0.2300', '0.2300', '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 (37287, '2021-11-27', 2169, 35568, 2755, NULL, '1.0000', '1.1500', '1.1500', '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 (37288, '2021-11-27', 1700, 35569, 2755, 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 (37289, '2021-11-27', 7790, 35570, 2755, NULL, '1.0000', '17.0000', '17.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 (37290, '2021-11-27', 1665, 35571, 2755, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37291, '2021-11-27', 2712, 35572, 2755, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37292, '2021-11-27', 7411, 35573, 2755, NULL, '1.0000', '1.3500', '1.3500', '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 (37293, '2021-11-27', 7317, 35574, 2755, NULL, '1.0000', '19.5500', '19.5500', '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 (37294, '2021-11-27', 7333, 35575, 2755, NULL, '1.0000', '13.5000', '13.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 (37295, '2021-11-28', 2642, 35576, 2756, 40111, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37296, '2021-11-28', 7719, 35577, 2756, NULL, '1.0000', '5.5000', '5.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 (37297, '2021-11-28', 2381, 35578, 2756, 34920, '1.0000', '12.4824', '12.4824', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37298, '2021-11-28', 1493, 35579, 2756, 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 (37299, '2021-11-28', 2769, 35580, 2756, 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 (37300, '2021-11-28', 8529, 35581, 2756, NULL, '1.0000', '12.0000', '12.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 (37301, '2021-11-28', 2346, 35582, 2756, NULL, '1.0000', '5.8000', '5.8000', '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 (37302, '2021-11-28', 1760, 35583, 2756, NULL, '2.0000', '1.5900', '1.5900', '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 (37303, '2021-11-28', 2293, 35584, 2756, NULL, '1.0000', '1.4400', '1.4400', '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 (37304, '2021-11-28', 2083, 35585, 2756, 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 (37305, '2021-11-28', 3058, 35586, 2756, 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 (37306, '2021-11-28', 1863, 35587, 2756, NULL, '2.0000', '1.3589', '1.3589', '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 (37307, '2021-11-28', 2706, 35588, 2756, 42094, '1.0000', '7.0847', '7.0847', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37308, '2021-11-28', 1912, 35589, 2756, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37309, '2021-11-28', 2353, 35590, 2756, 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 (37310, '2021-11-28', 2712, 35591, 2756, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37311, '2021-11-28', 2821, 35592, 2756, 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 (37312, '2021-11-28', 2986, 35593, 2756, 22609, '1.0000', '0.7700', '0.7700', '1.0000', '1.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 (37313, '2021-11-28', 1399, 35594, 2756, NULL, '1.0000', '16.1094', '16.1094', '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 (37314, '2021-11-28', 2712, 35595, 2756, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37315, '2021-11-28', 8638, 35596, 2756, NULL, '1.0000', '0.5100', '0.5100', '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 (37316, '2021-11-28', 1602, 35597, 2756, 41376, '1.0000', '6.6054', '6.6054', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37317, '2021-11-28', 1592, 35598, 2756, 42068, '1.0000', '36.4908', '36.4908', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37318, '2021-11-28', 2102, 35599, 2756, 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 (37319, '2021-11-28', 1637, 35600, 2756, 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 (37320, '2021-11-28', 8187, 35601, 2756, NULL, '3.0000', '14.3900', '14.3900', '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 (37321, '2021-11-28', 2545, 35602, 2756, 38923, '1.0000', '5.5944', '5.5944', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37322, '2021-11-28', 1863, 35603, 2756, NULL, '2.0000', '1.3589', '1.3589', '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 (37323, '2021-11-28', 7703, 35604, 2756, NULL, '1.0000', '22.9900', '22.9900', '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 (37324, '2021-11-28', 1339, 35605, 2756, NULL, '1.0000', '1.4463', '1.4463', '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 (37325, '2021-11-28', 1337, 35606, 2756, 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 (37326, '2021-11-28', 1330, 35607, 2756, 19334, '1.0000', '2.8000', '2.8000', '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 (37327, '2021-11-28', 2379, 35608, 2756, NULL, '1.0000', '1.8000', '1.8000', '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 (37328, '2021-11-28', 1837, 35609, 2756, 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 (37329, '2021-11-28', 1529, 35610, 2756, NULL, '1.0000', '4.0029', '4.0029', '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 (37330, '2021-11-28', 2346, 35611, 2756, NULL, '1.0000', '5.8000', '5.8000', '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 (37331, '2021-11-28', 8061, 35612, 2757, NULL, '1.0000', '1.6000', '1.6000', '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 (37332, '2021-11-28', 1827, 35613, 2757, NULL, '1.0000', '0.2000', '0.2000', '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 (37333, '2021-11-28', 9274, 35614, 2757, NULL, '1.0000', '3.1000', '3.1000', '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 (37334, '2021-11-28', 9084, 35615, 2757, 40446, '1.0000', '8.9000', '8.9000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37335, '2021-11-28', 9193, 35616, 2757, NULL, '1.0000', '5.5150', '5.5150', '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 (37336, '2021-11-28', 9620, 35617, 2757, 41908, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37337, '2021-11-28', 7411, 35618, 2757, NULL, '2.0000', '1.3500', '1.3500', '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 (37338, '2021-11-28', 7518, 35619, 2757, NULL, '1.0000', '-67.2578', '-67.2578', '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 (37339, '2021-11-28', 7402, 35620, 2757, NULL, '1.0000', '116.3300', '116.3300', '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 (37340, '2021-11-28', 7708, 35621, 2757, NULL, '1.0000', '6.1400', '6.1400', '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 (37341, '2021-11-28', 8517, 35622, 2757, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37342, '2021-11-28', 7750, 35623, 2757, NULL, '1.0000', '34.9000', '34.9000', '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 (37343, '2021-11-28', 7879, 35624, 2757, NULL, '10.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (37344, '2021-11-28', 7952, 35625, 2757, NULL, '1.0000', '10.4000', '10.4000', '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 (37345, '2021-11-28', 9300, 35626, 2757, NULL, '1.0000', '12.0000', '12.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 (37346, '2021-11-28', 7524, 35627, 2757, NULL, '1.0000', '-11.2645', '-11.2645', '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 (37347, '2021-11-28', 7748, 35628, 2757, NULL, '1.0000', '68348.5203', '68348.5203', '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 (37348, '2021-11-28', 7671, 35629, 2757, NULL, '1.0000', '15.5000', '15.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 (37349, '2021-11-28', 3036, 35630, 2757, 30783, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37350, '2021-11-28', 8074, 35631, 2757, 41920, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37351, '2021-11-28', 8604, 35632, 2757, NULL, '1.0000', '13.0000', '13.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 (37352, '2021-11-28', 7411, 35633, 2757, NULL, '1.0000', '1.3500', '1.3500', '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 (37353, '2021-11-28', 7482, 35634, 2757, NULL, '1.0000', '2.4981', '2.4981', '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 (37354, '2021-11-28', 7709, 35635, 2757, NULL, '2.0000', '35.8000', '35.8000', '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 (37355, '2021-11-28', 1575, 35636, 2757, 33524, '1.0000', '12.6000', '12.6000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37356, '2021-11-28', 9578, 35637, 2757, NULL, '1.0000', '8.0000', '8.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 (37357, '2021-11-28', 9412, 35638, 2757, NULL, '1.0000', '25.0000', '25.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 (37358, '2021-11-28', 1590, 35639, 2757, 34520, '1.0000', '1.7100', '1.7100', '2.3000', '2.3000', '44.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37359, '2021-11-28', 9390, 35640, 2757, NULL, '1.0000', '25.0000', '25.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 (37360, '2021-11-28', 8061, 35641, 2757, NULL, '1.0000', '1.6000', '1.6000', '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 (37361, '2021-11-28', 7736, 35642, 2757, NULL, '1.0000', '15.0000', '15.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 (37362, '2021-11-28', 1404, 35643, 2757, 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 (37363, '2021-11-28', 1399, 35644, 2757, 38141, '1.0000', '16.8750', '16.8750', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37364, '2021-11-28', 1398, 35645, 2757, 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 (37365, '2021-11-28', 2269, 35646, 2757, 37395, '1.0000', '4.1848', '4.1848', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37366, '2021-11-28', 8054, 35647, 2757, NULL, '3.0000', '16.0000', '16.0000', '0.6000', '0.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 (37367, '2021-11-28', 1482, 35648, 2757, NULL, '1.0000', '90.0000', '90.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 (37368, '2021-11-28', 8608, 35649, 2757, NULL, '1.0000', '5.7400', '5.7400', '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 (37369, '2021-11-28', 8215, 35650, 2757, NULL, '1.0000', '11.0000', '11.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 (37370, '2021-11-28', 2992, 35651, 2757, 41886, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37371, '2021-11-28', 8061, 35652, 2757, NULL, '1.0000', '1.6000', '1.6000', '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 (37372, '2021-11-28', 7708, 35653, 2757, NULL, '1.0000', '6.1400', '6.1400', '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 (37373, '2021-11-28', 2279, 35654, 2757, NULL, '1.0000', '2.6000', '2.6000', '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 (37374, '2021-11-28', 9247, 35655, 2757, NULL, '2.0000', '5.5000', '5.5000', '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 (37375, '2021-11-28', 8074, 35656, 2757, 41920, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37376, '2021-11-28', 7473, 35657, 2757, NULL, '2.0000', '25.2998', '25.2998', '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 (37377, '2021-11-28', 7703, 35658, 2757, NULL, '3.0000', '22.9900', '22.9900', '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 (37378, '2021-11-28', 7736, 35659, 2757, NULL, '1.0000', '15.0000', '15.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 (37379, '2021-11-28', 1612, 35660, 2757, 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 (37380, '2021-11-28', 7514, 35661, 2757, NULL, '1.0000', '12.9983', '12.9983', '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 (37381, '2021-11-28', 9337, 35662, 2757, NULL, '4.0000', '6.8067', '6.8067', '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 (37382, '2021-11-28', 7819, 35663, 2757, NULL, '1.0000', '9.5000', '9.5000', '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 (37383, '2021-11-28', 7953, 35664, 2757, NULL, '1.0000', '6.0000', '6.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 (37384, '2021-11-28', 2638, 35665, 2757, 39618, '1.0000', '21.3800', '21.3800', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37385, '2021-11-28', 7728, 35666, 2757, 39409, '1.0000', '1.8257', '1.8257', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37386, '2021-11-28', 7518, 35667, 2757, NULL, '1.0000', '-67.2578', '-67.2578', '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 (37387, '2021-11-28', 2231, 35668, 2757, NULL, '1.0000', '33.0000', '33.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 (37388, '2021-11-28', 1440, 35669, 2757, 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 (37389, '2021-11-28', 1388, 35670, 2757, 36088, '1.0000', '5.6098', '5.6098', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37390, '2021-11-28', 8077, 35671, 2757, NULL, '1.0000', '11.5000', '11.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 (37391, '2021-11-28', 7638, 35672, 2757, 30222, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37392, '2021-11-28', 2506, 35673, 2757, 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 (37393, '2021-11-28', 2458, 35674, 2757, 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 (37394, '2021-11-28', 7514, 35675, 2757, NULL, '1.0000', '12.9983', '12.9983', '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 (37395, '2021-11-28', 7674, 35676, 2757, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '107.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37396, '2021-11-28', 7532, 35677, 2757, NULL, '1.0000', '5.2000', '5.2000', '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 (37397, '2021-11-28', 8457, 35678, 2757, NULL, '1.0000', '0.7500', '0.7500', '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 (37398, '2021-11-28', 7671, 35679, 2757, NULL, '1.0000', '15.5000', '15.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 (37399, '2021-11-28', 2279, 35680, 2757, NULL, '1.0000', '2.6000', '2.6000', '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 (37400, '2021-11-28', 7753, 35681, 2757, NULL, '1.0000', '3.4000', '3.4000', '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 (37401, '2021-11-28', 9308, 35682, 2757, NULL, '1.0000', '9.0000', '9.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 (37402, '2021-11-28', 2315, 35683, 2757, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '29.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37403, '2021-11-28', 1307, 35684, 2757, 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 (37404, '2021-11-28', 1439, 35685, 2757, NULL, '1.0000', '1.0000', '1.0000', '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 (37405, '2021-11-28', 8702, 35686, 2757, NULL, '1.0000', '3.6700', '3.6700', '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 (37406, '2021-11-28', 8849, 35687, 2757, NULL, '1.0000', '1.0700', '1.0700', '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 (37407, '2021-11-28', 7473, 35688, 2757, NULL, '2.0000', '25.2998', '25.2998', '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 (37408, '2021-11-28', 1655, 35689, 2757, 37405, '1.0000', '37.2800', '37.2800', '49.5000', '49.5000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37409, '2021-11-28', 8039, 35690, 2757, NULL, '1.0000', '27.4067', '27.4067', '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 (37410, '2021-11-28', 8677, 35691, 2757, NULL, '5.0000', '1.2300', '1.2300', '1.5000', '1.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 (37411, '2021-11-28', 8275, 35692, 2757, NULL, '1.0000', '29.8500', '29.8500', '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 (37412, '2021-11-28', 7524, 35693, 2757, NULL, '1.0000', '-11.2645', '-11.2645', '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 (37413, '2021-11-28', 7317, 35694, 2757, NULL, '1.0000', '29.3700', '29.3700', '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 (37414, '2021-11-28', 2992, 35695, 2757, 41886, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37415, '2021-11-28', 7753, 35696, 2757, NULL, '1.0000', '3.4000', '3.4000', '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 (37416, '2021-11-28', 2643, 35697, 2757, 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 (37417, '2021-11-28', 8198, 35698, 2757, NULL, '1.0000', '6.2900', '6.2900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37418, '2021-11-28', 7859, 35699, 2757, NULL, '1.0000', '3.6000', '3.6000', '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 (37419, '2021-11-28', 7482, 35700, 2757, NULL, '1.0000', '2.4981', '2.4981', '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 (37420, '2021-11-28', 7411, 35701, 2757, NULL, '1.0000', '1.3500', '1.3500', '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 (37421, '2021-11-28', 7819, 35702, 2757, NULL, '1.0000', '9.5000', '9.5000', '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 (37422, '2021-11-28', 2280, 35703, 2758, NULL, '1.0000', '-177.9360', '-177.9360', '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 (37423, '2021-11-28', 1839, 35704, 2758, NULL, '1.0000', '4.9622', '4.9622', '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 (37424, '2021-11-28', 2712, 35705, 2758, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37425, '2021-11-28', 9089, 35706, 2758, NULL, '1.0000', '3.8000', '3.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 (37426, '2021-11-28', 7703, 35707, 2758, NULL, '1.0000', '22.9900', '22.9900', '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 (37427, '2021-11-28', 1699, 35708, 2758, NULL, '1.0000', '3.2000', '3.2000', '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 (37428, '2021-11-28', 2237, 35709, 2758, NULL, '1.0000', '-64.5817', '-64.5817', '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 (37429, '2021-11-28', 1519, 35710, 2758, 41410, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37430, '2021-11-28', 1529, 35711, 2758, NULL, '1.0000', '4.0029', '4.0029', '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 (37431, '2021-11-28', 7473, 35712, 2758, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '99.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37432, '2021-11-28', 2025, 35713, 2758, 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 (37433, '2021-11-28', 1912, 35714, 2758, 41409, '1.0000', '0.6895', '0.6895', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37434, '2021-11-28', 2393, 35715, 2758, NULL, '1.0000', '3.2865', '3.2865', '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 (37435, '2021-11-28', 1746, 35716, 2758, 19863, '1.0000', '3.5000', '3.5000', '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 (37436, '2021-11-28', 2280, 35717, 2758, NULL, '1.0000', '-177.9360', '-177.9360', '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 (37437, '2021-11-28', 2109, 35718, 2759, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '107.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 (37438, '2021-11-28', 1610, 35719, 2759, 8730, '-3.0000', '15.7500', '15.7500', '21.5000', '21.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 (37439, '2021-11-28', 1610, 35719, 2759, NULL, '4.0000', '15.7500', '15.7500', '21.5000', '21.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 (37440, '2021-11-28', 1641, 35720, 2759, 3214, '-124.0000', '0.9800', '0.9800', '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 (37441, '2021-11-28', 1641, 35720, 2759, NULL, '132.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-132.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37442, '2021-11-28', 9089, 35721, 2759, NULL, '1.0000', '3.8000', '3.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 (37443, '2021-11-28', 2958, 35722, 2759, 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 (37444, '2021-11-28', 1665, 35723, 2759, 3235, '-38.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 (37445, '2021-11-28', 1665, 35723, 2759, NULL, '40.0000', '1.3000', '1.3000', '2.0000', '2.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 (37446, '2021-11-28', 1311, 35724, 2759, 5437, '-3.0000', '79.3908', '79.3908', '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 (37447, '2021-11-28', 1311, 35724, 2759, NULL, '6.0000', '79.3908', '79.3908', '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 (37448, '2021-11-28', 2329, 35725, 2759, 18881, '1.0000', '30.1300', '30.1300', '42.5000', '42.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 (37449, '2021-11-28', 2621, 35726, 2759, 9938, '1.0000', '12.0000', '12.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 109);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37450, '2021-11-28', 8518, 35727, 2759, NULL, '1.0000', '17.6400', '17.6400', '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 (37451, '2021-11-28', 2858, 35728, 2759, 17772, '-16.0000', '1.0000', '1.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 (37452, '2021-11-28', 2858, 35728, 2759, NULL, '17.0000', '1.0000', '1.0000', '5.0000', '5.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 (37453, '2021-11-28', 1674, 35729, 2759, 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 (37454, '2021-11-28', 2277, 35730, 2759, 2937, '-19.0000', '0.7800', '0.7800', '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 (37455, '2021-11-28', 2277, 35730, 2759, NULL, '22.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37456, '2021-11-28', 2821, 35731, 2759, 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 (37457, '2021-11-28', 1337, 35732, 2759, 10809, '-4.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 (37458, '2021-11-28', 1337, 35732, 2759, 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 (37459, '2021-11-28', 8982, 35733, 2759, 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 (37460, '2021-11-28', 9471, 35734, 2759, 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 (37461, '2021-11-28', 2042, 35735, 2759, NULL, '1.0000', '12.0000', '12.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 (37462, '2021-11-28', 9533, 35736, 2759, 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 (37463, '2021-11-28', 2100, 35737, 2759, 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 (37464, '2021-11-28', 2236, 35738, 2759, 2780, '-10.0000', '5.6599', '5.6599', '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 (37465, '2021-11-28', 2236, 35738, 2759, NULL, '11.0000', '5.6599', '5.6599', '8.0000', '8.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 (37466, '2021-11-28', 1339, 35739, 2759, 13004, '-1.0000', '1.6012', '1.6012', '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 (37467, '2021-11-28', 1339, 35739, 2759, NULL, '3.0000', '1.6012', '1.6012', '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 (37468, '2021-11-28', 2109, 35740, 2759, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '107.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 (37469, '2021-11-28', 2100, 35741, 2759, 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 (37470, '2021-11-28', 2618, 35742, 2759, 9836, '-18.0000', '4.1000', '4.1000', '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 (37471, '2021-11-28', 2618, 35742, 2759, NULL, '19.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-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 (37472, '2021-11-28', 2565, 35743, 2759, NULL, '13.0000', '0.8100', '0.8100', '1.5000', '1.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 (37473, '2021-11-28', 2712, 35744, 2759, 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 (37474, '2021-11-28', 2042, 35745, 2759, NULL, '1.0000', '12.0000', '12.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 (37475, '2021-11-28', 2709, 35746, 2759, 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 (37476, '2021-11-28', 2344, 35747, 2759, 3847, '-1.0000', '18.2000', '18.2000', '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 (37477, '2021-11-28', 2344, 35747, 2759, NULL, '2.0000', '18.2000', '18.2000', '26.5000', '26.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 (37478, '2021-11-28', 2916, 35748, 2759, 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 (37479, '2021-11-28', 2136, 35749, 2759, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '86.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 (37480, '2021-11-28', 2698, 35750, 2759, NULL, '1.0000', '36.8600', '36.8600', '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 (37481, '2021-11-28', 1326, 35751, 2759, 22322, '1.0000', '2.7762', '2.7762', '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 (37482, '2021-11-28', 2108, 35752, 2759, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '19.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 (37483, '2021-11-28', 1307, 35753, 2759, 20587, '1.0000', '110.4141', '110.4141', '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 (37484, '2021-11-28', 2695, 35754, 2759, 12336, '-7.0000', '2.0000', '2.0000', '2.7000', '2.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 (37485, '2021-11-28', 2695, 35754, 2759, NULL, '11.0000', '2.0000', '2.0000', '2.7000', '2.7000', '-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 (37486, '2021-11-28', 1334, 35755, 2759, 230, '1.0000', '0.7000', '0.7000', '1.5000', '1.5000', '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 (37487, '2021-11-28', 9577, 35756, 2759, NULL, '1.0000', '0.3200', '0.3200', '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 (37488, '2021-11-28', 1706, 35757, 2759, 19677, '-3.0000', '15.2700', '15.2700', '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 (37489, '2021-11-28', 1706, 35757, 2759, NULL, '4.0000', '15.2700', '15.2700', '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 (37490, '2021-11-28', 8517, 35758, 2759, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37491, '2021-11-28', 1851, 35759, 2759, 8627, '-3.0000', '10.6568', '10.6568', '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 (37492, '2021-11-28', 1851, 35759, 2759, NULL, '4.0000', '10.6568', '10.6568', '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 (37493, '2021-11-28', 7496, 35760, 2759, NULL, '1.0000', '0.9600', '0.9600', '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 (37494, '2021-11-28', 2068, 35761, 2759, 5568, '-16.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 (37495, '2021-11-28', 2068, 35761, 2759, NULL, '17.0000', '13.1000', '13.1000', '17.0000', '17.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 (37496, '2021-11-28', 2109, 35762, 2759, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '107.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 (37497, '2021-11-28', 2109, 35763, 2759, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '106.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 (37498, '2021-11-28', 1577, 35764, 2759, 7596, '-4.0000', '2.5000', '2.5000', '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 (37499, '2021-11-28', 1577, 35764, 2759, NULL, '5.0000', '2.5000', '2.5000', '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 (37500, '2021-11-28', 2574, 35765, 2759, 7383, '-2.0000', '0.7800', '0.7800', '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 (37501, '2021-11-28', 2574, 35765, 2759, NULL, '7.0000', '0.7800', '0.7800', '1.5000', '1.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 (37502, '2021-11-28', 2374, 35766, 2759, 3963, '-1.0000', '7.3300', '7.3300', '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 (37503, '2021-11-28', 2374, 35766, 2759, NULL, '2.0000', '7.3300', '7.3300', '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 (37504, '2021-11-28', 2344, 35767, 2759, 3847, '-1.0000', '18.2000', '18.2000', '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 (37505, '2021-11-28', 2344, 35767, 2759, NULL, '2.0000', '18.2000', '18.2000', '26.5000', '26.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 (37506, '2021-11-28', 2467, 35768, 2759, 33799, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37507, '2021-11-28', 2623, 35769, 2759, 18884, '1.0000', '4.3000', '4.3000', '9.5000', '9.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 (37508, '2021-11-28', 2232, 35770, 2759, 2776, '-2.0000', '29.0000', '29.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37509, '2021-11-28', 2232, 35770, 2759, NULL, '3.0000', '29.0000', '29.0000', '42.0000', '42.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 (37510, '2021-11-28', 1425, 35771, 2759, 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 (37511, '2021-11-28', 2237, 35772, 2759, 2781, '-18.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 (37512, '2021-11-28', 2237, 35772, 2759, NULL, '19.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (37513, '2021-11-28', 1399, 35773, 2759, 22285, '1.0000', '13.3890', '13.3890', '21.0000', '21.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 (37514, '2021-11-28', 2247, 35774, 2759, 2784, '-5.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 (37515, '2021-11-28', 2247, 35774, 2759, NULL, '6.0000', '2.5000', '2.5000', '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 (37516, '2021-11-28', 2167, 35775, 2759, 17165, '-21.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 (37517, '2021-11-28', 2167, 35775, 2759, NULL, '24.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (37518, '2021-11-28', 2660, 35776, 2759, 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 (37519, '2021-11-28', 2965, 35777, 2759, NULL, '1.0000', '5.0000', '5.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 (37520, '2021-11-28', 8743, 35778, 2759, 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 (37521, '2021-11-28', 9089, 35779, 2759, NULL, '1.0000', '3.8000', '3.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 (37522, '2021-11-28', 1667, 35780, 2759, 9745, '-30.0000', '5.9400', '5.9400', '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 (37523, '2021-11-28', 1667, 35780, 2759, NULL, '31.0000', '5.9400', '5.9400', '8.5000', '8.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 (37524, '2021-11-28', 1871, 35781, 2760, NULL, '1.0000', '2.9308', '2.9308', '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 (37525, '2021-11-28', 2643, 35782, 2760, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37526, '2021-11-28', 2769, 35783, 2760, 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 (37527, '2021-11-28', 8298, 35784, 2760, NULL, '1.0000', '7.8400', '7.8400', '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 (37528, '2021-11-28', 1487, 35785, 2760, NULL, '1.0000', '-37.3500', '-37.3500', '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 (37529, '2021-11-28', 1346, 35786, 2760, 39869, '5.0000', '-6.6466', '-6.6466', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37530, '2021-11-28', 2037, 35787, 2761, 6389, '-7.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37531, '2021-11-28', 2037, 35787, 2761, NULL, '8.0000', '10.5000', '10.5000', '14.0000', '14.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 (37532, '2021-11-28', 1840, 35788, 2761, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.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 (37533, '2021-11-28', 1841, 35789, 2761, 645, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '13.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 (37534, '2021-11-28', 2289, 35790, 2761, 2949, '-48.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 (37535, '2021-11-28', 2289, 35790, 2761, 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 (37536, '2021-11-28', 1665, 35791, 2762, 39909, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37537, '2021-11-28', 1425, 35792, 2762, 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 (37538, '2021-11-28', 2283, 35793, 2762, 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 (37539, '2021-11-28', 1837, 35794, 2762, 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 (37540, '2021-11-28', 1666, 35795, 2762, 41371, '2.0000', '2.7615', '2.7615', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37541, '2021-11-28', 1667, 35796, 2763, 38942, '1.0000', '18.6700', '18.6700', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37542, '2021-11-28', 1666, 35797, 2763, 41371, '1.0000', '2.7615', '2.7615', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37543, '2021-11-28', 2169, 35798, 2763, NULL, '1.0000', '1.1500', '1.1500', '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 (37544, '2021-11-28', 1573, 35799, 2764, 9746, '-4.0000', '29.9042', '29.9042', '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 (37545, '2021-11-28', 1573, 35799, 2764, NULL, '5.0000', '29.9042', '29.9042', '30.0000', '30.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 (37546, '2021-11-28', 7672, 35800, 2765, NULL, '1.0000', '1.0200', '1.0200', '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 (37547, '2021-11-28', 8596, 35801, 2765, NULL, '2.0000', '17.0000', '17.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 (37548, '2021-11-28', 1904, 35802, 2765, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37549, '2021-11-28', 8935, 35803, 2765, NULL, '1.0000', '0.2900', '0.2900', '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 (37550, '2021-11-28', 8061, 35804, 2765, NULL, '1.0000', '1.6000', '1.6000', '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 (37551, '2021-11-28', 9556, 35805, 2765, 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 (37552, '2021-11-28', 7705, 35806, 2765, NULL, '1.0000', '5.9900', '5.9900', '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 (37553, '2021-11-28', 8429, 35807, 2765, NULL, '1.0000', '16.0000', '16.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 (37554, '2021-11-28', 9563, 35808, 2765, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37555, '2021-11-28', 9563, 35809, 2765, 36681, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37556, '2021-11-28', 2712, 35810, 2766, 32557, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37557, '2021-11-28', 2565, 35811, 2767, 7197, '-13.0000', '0.8100', '0.8100', '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 (37558, '2021-11-28', 2565, 35811, 2767, NULL, '15.0000', '0.8100', '0.8100', '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 (37559, '2021-11-28', 1602, 35812, 2768, 5897, '-55.0000', '6.7859', '6.7859', '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 (37560, '2021-11-28', 1602, 35812, 2768, NULL, '56.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37561, '2021-11-28', 1947, 35813, 2768, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '55.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 (37562, '2021-11-29', 7609, 35814, 2769, NULL, '1.0000', '4.3300', '4.3300', '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 (37563, '2021-11-29', 7334, 35815, 2769, NULL, '1.0000', '8.1600', '8.1600', '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 (37564, '2021-11-29', 2237, 35816, 2769, NULL, '2.0000', '-64.5817', '-64.5817', '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 (37565, '2021-11-29', 1856, 35817, 2769, 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 (37566, '2021-11-29', 2089, 35818, 2769, 39891, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37567, '2021-11-29', 7415, 35819, 2769, NULL, '1.0000', '5.4200', '5.4200', '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 (37568, '2021-11-29', 1519, 35820, 2769, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37569, '2021-11-29', 7411, 35821, 2769, NULL, '2.0000', '1.3500', '1.3500', '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 (37570, '2021-11-29', 2167, 35822, 2769, 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 (37571, '2021-11-29', 2068, 35823, 2769, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37572, '2021-11-29', 1307, 35824, 2769, 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 (37573, '2021-11-29', 2712, 35825, 2769, 32557, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37574, '2021-11-29', 1875, 35826, 2769, 39796, '10.0000', '2.7000', '2.7000', '3.6000', '3.6000', '50.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37575, '2021-11-29', 2107, 35827, 2769, 31964, '3.0000', '0.2500', '0.2500', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37576, '2021-11-29', 8752, 35828, 2769, NULL, '3.0000', '4.2000', '4.2000', '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 (37577, '2021-11-29', 2948, 35829, 2769, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37578, '2021-11-29', 2512, 35830, 2769, 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 (37579, '2021-11-29', 2442, 35831, 2769, 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 (37580, '2021-11-29', 2169, 35832, 2769, NULL, '1.0000', '1.1500', '1.1500', '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 (37581, '2021-11-29', 2135, 35833, 2769, 18930, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (37582, '2021-11-29', 2948, 35834, 2769, 39872, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37583, '2021-11-29', 1665, 35835, 2769, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37584, '2021-11-29', 7385, 35836, 2769, NULL, '1.0000', '12.5000', '12.5000', '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 (37585, '2021-11-29', 1871, 35837, 2769, NULL, '2.0000', '2.9308', '2.9308', '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 (37586, '2021-11-29', 1912, 35838, 2769, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37587, '2021-11-29', 9643, 35839, 2769, 41421, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37588, '2021-11-29', 3041, 35840, 2769, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '12.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 (37589, '2021-11-29', 8065, 35841, 2769, NULL, '1.0000', '32.0000', '32.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 (37590, '2021-11-29', 2936, 35842, 2769, 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 (37591, '2021-11-29', 1621, 35843, 2769, 42079, '1.0000', '28.9137', '28.9137', '7.5000', '7.5000', '56.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37592, '2021-11-29', 1602, 35844, 2769, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37593, '2021-11-29', 1569, 35845, 2769, 23139, '1.0000', '14.2800', '14.2800', '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 (37594, '2021-11-29', 1805, 35846, 2769, NULL, '1.0000', '4.5132', '4.5132', '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 (37595, '2021-11-29', 2486, 35847, 2770, 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 (37596, '2021-11-29', 1839, 35848, 2770, 8734, '-14.0000', '6.1500', '6.1500', '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 (37597, '2021-11-29', 1839, 35848, 2770, NULL, '15.0000', '6.1500', '6.1500', '9.0000', '9.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 (37598, '2021-11-29', 2384, 35849, 2770, 12014, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '78.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 (37599, '2021-11-29', 1637, 35850, 2770, 3210, '-1.0000', '10.2000', '10.2000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37600, '2021-11-29', 1637, 35850, 2770, NULL, '2.0000', '10.2000', '10.2000', '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 (37601, '2021-11-29', 1425, 35851, 2770, 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 (37602, '2021-11-29', 2916, 35852, 2770, 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 (37603, '2021-11-29', 1321, 35853, 2770, 18859, '1.0000', '9.8000', '9.8000', '13.0000', '13.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 (37604, '2021-11-29', 2965, 35854, 2770, NULL, '1.0000', '5.0000', '5.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 (37605, '2021-11-29', 1440, 35855, 2770, 22353, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (37606, '2021-11-29', 1578, 35856, 2770, 7597, '-1.0000', '1.9700', '1.9700', '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 (37607, '2021-11-29', 1578, 35856, 2770, NULL, '2.0000', '1.9700', '1.9700', '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 (37608, '2021-11-29', 2858, 35857, 2770, 17772, '-17.0000', '1.0000', '1.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 (37609, '2021-11-29', 2858, 35857, 2770, NULL, '18.0000', '1.0000', '1.0000', '5.0000', '5.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 (37610, '2021-11-29', 2486, 35858, 2770, 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 (37611, '2021-11-29', 1828, 35859, 2770, NULL, '2.0000', '0.7300', '0.7300', '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 (37612, '2021-11-29', 1945, 35860, 2770, 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 (37613, '2021-11-29', 7961, 35861, 2771, 39799, '1.0000', '10.5600', '10.5600', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37614, '2021-11-29', 2135, 35862, 2771, 18930, '1.0000', '2.4732', '2.4732', '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 (37615, '2021-11-29', 1855, 35863, 2771, 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 (37616, '2021-11-29', 2712, 35864, 2771, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '39.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37617, '2021-11-29', 7926, 35865, 2772, 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 (37618, '2021-11-29', 7920, 35866, 2772, 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 (37619, '2021-11-29', 7711, 35867, 2772, NULL, '1.0000', '-78.4806', '-78.4806', '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 (37620, '2021-11-29', 7518, 35868, 2772, NULL, '1.0000', '-67.2578', '-67.2578', '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 (37621, '2021-11-29', 7780, 35869, 2772, NULL, '1.0000', '2.6000', '2.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 (37622, '2021-11-29', 7804, 35870, 2772, NULL, '6.0000', '1.8000', '1.8000', '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 (37623, '2021-11-29', 7507, 35871, 2772, NULL, '3.0000', '6.5000', '6.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 (37624, '2021-11-29', 7671, 35872, 2772, NULL, '1.0000', '15.5000', '15.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 (37625, '2021-11-29', 7753, 35873, 2772, NULL, '1.0000', '3.4000', '3.4000', '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 (37626, '2021-11-29', 8164, 35874, 2772, NULL, '1.0000', '3.1200', '3.1200', '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 (37627, '2021-11-29', 7514, 35875, 2772, NULL, '1.0000', '12.9983', '12.9983', '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 (37628, '2021-11-29', 7612, 35876, 2772, NULL, '4.0000', '1.1770', '1.1770', '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 (37629, '2021-11-29', 1840, 35877, 2772, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '143.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37630, '2021-11-29', 1762, 35878, 2772, NULL, '1.0000', '8.2900', '8.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 (37631, '2021-11-29', 9631, 35879, 2772, 41907, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37632, '2021-11-29', 9100, 35880, 2772, 39652, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '9.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37633, '2021-11-29', 8622, 35881, 2772, 42420, '1.0000', '-19.0040', '-19.0040', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37634, '2021-11-29', 7899, 35882, 2772, NULL, '1.0000', '0.7800', '0.7800', '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 (37635, '2021-11-29', 9300, 35883, 2772, NULL, '1.0000', '12.0000', '12.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 (37636, '2021-11-29', 7671, 35884, 2772, NULL, '1.0000', '15.5000', '15.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 (37637, '2021-11-29', 7518, 35885, 2772, NULL, '1.0000', '-67.2578', '-67.2578', '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 (37638, '2021-11-29', 7411, 35886, 2772, NULL, '2.0000', '1.3500', '1.3500', '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 (37639, '2021-11-29', 7443, 35887, 2772, NULL, '2.0000', '6.8600', '6.8600', '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 (37640, '2021-11-29', 2233, 35888, 2772, 37368, '1.0000', '8.2124', '8.2124', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37641, '2021-11-29', 9154, 35889, 2772, NULL, '1.0000', '10.6800', '10.6800', '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 (37642, '2021-11-29', 7989, 35890, 2772, NULL, '1.0000', '26.9800', '26.9800', '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 (37643, '2021-11-29', 7871, 35891, 2772, NULL, '7.0000', '6.0000', '6.0000', '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 (37644, '2021-11-29', 7558, 35892, 2772, NULL, '10.0000', '2.2000', '2.2000', '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 (37645, '2021-11-29', 7509, 35893, 2772, 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 (37646, '2021-11-29', 9275, 35894, 2772, NULL, '1.0000', '6.3000', '6.3000', '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 (37647, '2021-11-29', 8941, 35895, 2772, NULL, '1.0000', '12.0000', '12.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 (37648, '2021-11-29', 9461, 35896, 2772, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37649, '2021-11-29', 2256, 35897, 2772, 42401, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37650, '2021-11-29', 7753, 35898, 2772, NULL, '1.0000', '3.4000', '3.4000', '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 (37651, '2021-11-29', 7514, 35899, 2772, NULL, '1.0000', '12.9983', '12.9983', '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 (37652, '2021-11-29', 8456, 35900, 2772, NULL, '1.0000', '5.5400', '5.5400', '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 (37653, '2021-11-29', 7703, 35901, 2772, NULL, '1.0000', '22.9900', '22.9900', '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 (37654, '2021-11-29', 2315, 35902, 2772, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '28.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37655, '2021-11-29', 8005, 35903, 2772, NULL, '2.0000', '49.0000', '49.0000', '65.0000', '65.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 (37656, '2021-11-29', 9667, 35904, 2772, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '19.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37657, '2021-11-29', 7641, 35905, 2772, NULL, '1.0000', '-12.5865', '-12.5865', '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 (37658, '2021-11-29', 7674, 35906, 2772, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '106.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37659, '2021-11-29', 7409, 35907, 2772, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '34.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37660, '2021-11-29', 7514, 35908, 2772, NULL, '1.0000', '12.9983', '12.9983', '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 (37661, '2021-11-29', 7558, 35909, 2772, NULL, '10.0000', '2.2000', '2.2000', '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 (37662, '2021-11-29', 9089, 35910, 2772, 32139, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37663, '2021-11-29', 7703, 35911, 2772, NULL, '1.0000', '22.9900', '22.9900', '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 (37664, '2021-11-29', 7411, 35912, 2772, NULL, '1.0000', '1.3500', '1.3500', '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 (37665, '2021-11-29', 1663, 35913, 2773, 37588, '1.0000', '89.8780', '89.8780', '125.0000', '125.0000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37666, '2021-11-29', 2458, 35914, 2773, 4829, '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 (37667, '2021-11-29', 1748, 35915, 2773, 1527, '4.0000', '0.3200', '0.3200', '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 (37668, '2021-11-29', 2109, 35916, 2773, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '82.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37669, '2021-11-29', 7519, 35917, 2774, NULL, '1.0000', '0.8800', '0.8800', '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 (37670, '2021-11-29', 2076, 35918, 2774, NULL, '1.0000', '8.3000', '8.3000', '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 (37671, '2021-11-29', 1529, 35919, 2774, NULL, '1.0000', '4.0029', '4.0029', '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 (37672, '2021-11-29', 8454, 35920, 2774, NULL, '1.0000', '5.1700', '5.1700', '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 (37673, '2021-11-29', 7592, 35921, 2774, NULL, '1.0000', '8.6500', '8.6500', '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 (37674, '2021-11-29', 1693, 35922, 2774, 33358, '1.0000', '7.8600', '7.8600', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37675, '2021-11-29', 2681, 35923, 2774, 42104, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37676, '2021-11-29', 1641, 35924, 2774, 38521, '10.0000', '1.9923', '1.9923', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37677, '2021-11-29', 1665, 35925, 2774, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37678, '2021-11-29', 8438, 35926, 2774, 42509, '1.0000', '12.5000', '12.5000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37679, '2021-11-29', 2520, 35927, 2774, 40121, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37680, '2021-11-29', 2612, 35928, 2774, 39897, '1.0000', '7.1600', '7.1600', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37681, '2021-11-29', 2989, 35929, 2774, 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 (37682, '2021-11-29', 1912, 35930, 2774, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37683, '2021-11-29', 8638, 35931, 2774, NULL, '1.0000', '0.5100', '0.5100', '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 (37684, '2021-11-29', 1523, 35932, 2774, NULL, '1.0000', '1.0061', '1.0061', '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 (37685, '2021-11-29', 1700, 35933, 2774, 42550, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37686, '2021-11-29', 2287, 35934, 2774, 29630, '2.0000', '1.1700', '1.1700', '3.0000', '3.0000', '61.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37687, '2021-11-29', 2293, 35935, 2774, NULL, '2.0000', '1.4400', '1.4400', '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 (37688, '2021-11-29', 3058, 35936, 2774, NULL, '2.0000', '4.6750', '4.6750', '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 (37689, '2021-11-29', 7703, 35937, 2774, NULL, '1.0000', '22.9900', '22.9900', '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 (37690, '2021-11-29', 2551, 35938, 2774, 39881, '1.0000', '29.6500', '29.6500', '39.0000', '39.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37691, '2021-11-29', 7954, 35939, 2774, 34017, '4.0000', '11.1369', '11.1369', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37692, '2021-11-29', 1755, 35940, 2774, 42087, '1.0000', '5.7200', '5.7200', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37693, '2021-11-29', 1812, 35941, 2774, 42101, '2.0000', '7.9457', '7.9457', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37694, '2021-11-29', 3058, 35942, 2774, NULL, '1.0000', '4.6750', '4.6750', '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 (37695, '2021-11-29', 2346, 35943, 2774, NULL, '1.0000', '5.8000', '5.8000', '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 (37696, '2021-11-29', 1562, 35944, 2774, NULL, '1.0000', '5.1300', '5.1300', '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 (37697, '2021-11-29', 2643, 35945, 2774, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37698, '2021-11-29', 1519, 35946, 2774, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37699, '2021-11-29', 8638, 35947, 2774, NULL, '1.0000', '0.5100', '0.5100', '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 (37700, '2021-11-29', 1690, 35948, 2774, 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 (37701, '2021-11-29', 2754, 35949, 2774, 18938, '4.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (37702, '2021-11-29', 2295, 35950, 2774, 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 (37703, '2021-11-29', 2958, 35951, 2774, 40132, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37704, '2021-11-29', 1382, 35952, 2774, NULL, '2.0000', '4.0000', '4.0000', '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 (37705, '2021-11-29', 7385, 35953, 2774, NULL, '10.0000', '12.5000', '12.5000', '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 (37706, '2021-11-29', 1512, 35954, 2774, 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 (37707, '2021-11-29', 1533, 35955, 2774, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37708, '2021-11-29', 1577, 35956, 2774, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37709, '2021-11-29', 8638, 35957, 2774, NULL, '1.0000', '0.5100', '0.5100', '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 (37710, '2021-11-29', 2273, 35958, 2774, 39870, '1.0000', '3.6337', '3.6337', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37711, '2021-11-29', 1702, 35959, 2774, NULL, '1.0000', '14.9700', '14.9700', '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 (37712, '2021-11-29', 7398, 35960, 2774, NULL, '1.0000', '18.5000', '18.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 (37713, '2021-11-29', 1562, 35961, 2774, NULL, '1.0000', '5.1300', '5.1300', '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 (37714, '2021-11-29', 1519, 35962, 2774, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37715, '2021-11-29', 2097, 35963, 2775, 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 (37716, '2021-11-29', 1450, 35964, 2775, 38925, '3.0000', '0.8900', '0.8900', '1.2000', '1.2000', '45.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37717, '2021-11-29', 1501, 35965, 2775, NULL, '2.0000', '2.2100', '2.2100', '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 (37718, '2021-11-29', 1307, 35966, 2775, 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 (37719, '2021-11-29', 1430, 35967, 2775, 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 (37720, '2021-11-29', 1863, 35968, 2775, NULL, '2.0000', '1.3589', '1.3589', '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 (37721, '2021-11-29', 9214, 35969, 2776, NULL, '1.0000', '9.6000', '9.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 (37722, '2021-11-29', 2031, 35970, 2776, 40002, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37723, '2021-11-29', 1863, 35971, 2776, NULL, '1.0000', '1.3589', '1.3589', '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 (37724, '2021-11-29', 2221, 35972, 2776, 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 (37725, '2021-11-29', 3041, 35973, 2776, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '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 (37726, '2021-11-29', 2279, 35974, 2776, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (37727, '2021-11-29', 7950, 35975, 2776, NULL, '2.0000', '2.4000', '2.4000', '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 (37728, '2021-11-29', 1806, 35976, 2776, 38550, '2.0000', '34.3245', '34.3245', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37729, '2021-11-29', 7673, 35977, 2776, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37730, '2021-11-29', 1702, 35978, 2776, NULL, '1.0000', '14.9700', '14.9700', '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 (37731, '2021-11-29', 2491, 35979, 2776, 42551, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37732, '2021-11-29', 1381, 35980, 2776, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37733, '2021-11-29', 7390, 35981, 2776, NULL, '1.0000', '18.2100', '18.2100', '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 (37734, '2021-11-29', 1831, 35982, 2776, 42571, '1.0000', '16.2420', '16.2420', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37735, '2021-11-29', 1388, 35983, 2776, 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 (37736, '2021-11-29', 8765, 35984, 2776, 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 (37737, '2021-11-29', 1532, 35985, 2776, 41388, '3.0000', '7.4815', '7.4815', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37738, '2021-11-29', 2167, 35986, 2776, 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 (37739, '2021-11-29', 1665, 35987, 2776, 42577, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37740, '2021-11-29', 8444, 35988, 2776, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37741, '2021-11-29', 1712, 35989, 2777, 40152, '1.0000', '9.6500', '9.6500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37742, '2021-11-29', 1655, 35990, 2777, 3253, '1.0000', '54.8533', '54.8533', '49.5000', '49.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 (37743, '2021-11-29', 2814, 35991, 2777, 17363, '1.0000', '14.0400', '14.0400', '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 (37744, '2021-11-29', 9577, 35992, 2777, 38070, '5.0000', '0.3200', '0.3200', '0.5000', '0.5000', '87.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37745, '2021-11-29', 1841, 35993, 2777, 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 (37746, '2021-11-29', 1840, 35994, 2777, NULL, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37747, '2021-11-29', 2460, 35995, 2777, 38067, '1.0000', '33.9534', '33.9534', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37748, '2021-11-29', 1744, 35996, 2777, 33228, '1.0000', '50.2499', '50.2499', '34.5000', '34.5000', '2.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37749, '2021-11-29', 1641, 35997, 2777, 34686, '5.0000', '76.5908', '76.5908', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37750, '2021-11-29', 2681, 35998, 2777, 38083, '1.0000', '12.6664', '12.6664', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37751, '2021-11-29', 2511, 35999, 2777, 40178, '1.0000', '8.5981', '8.5981', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37752, '2021-11-29', 1772, 36000, 2777, 40908, '1.0000', '6.0491', '6.0491', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37753, '2021-11-29', 2302, 36001, 2777, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37754, '2021-11-29', 1644, 36002, 2777, 41988, '1.0000', '36.0800', '36.0800', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37755, '2021-11-29', 7756, 36003, 2777, NULL, '1.0000', '23.9111', '23.9111', '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 (37756, '2021-11-29', 7342, 36004, 2777, NULL, '1.0000', '15.6000', '15.6000', '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 (37757, '2021-11-29', 2634, 36005, 2777, 10299, '1.0000', '12.0000', '12.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 (37758, '2021-11-29', 2699, 36006, 2777, 34431, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37759, '2021-11-29', 2712, 36007, 2777, 42184, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37760, '2021-11-29', 1831, 36008, 2777, 40888, '1.0000', '3.2049', '3.2049', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37761, '2021-11-29', 2547, 36009, 2777, 24344, '1.0000', '9.0195', '9.0195', '13.0000', '13.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 (37762, '2021-11-29', 9469, 36010, 2777, 35936, '2.0000', '2.3000', '2.3000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37763, '2021-11-29', 1602, 36011, 2777, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37764, '2021-11-29', 8859, 36012, 2777, NULL, '1.0000', '7.0000', '7.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 (37765, '2021-11-29', 1763, 36013, 2777, 24015, '1.0000', '4.6900', '4.6900', '6.5000', '6.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 (37766, '2021-11-29', 2481, 36014, 2777, 5193, '3.0000', '3.5000', '3.5000', '4.5000', '4.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 (37767, '2021-11-29', 1602, 36015, 2777, 40198, '1.0000', '6.8550', '6.8550', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37768, '2021-11-29', 2098, 36016, 2777, 6010, '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 (37769, '2021-11-29', 1339, 36017, 2777, 41979, '1.0000', '1.7384', '1.7384', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37770, '2021-11-29', 8982, 36018, 2777, 40294, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37771, '2021-11-29', 7444, 36019, 2777, 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 (37772, '2021-11-29', 2360, 36020, 2777, 17042, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '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 (37773, '2021-11-29', 2248, 36021, 2777, NULL, '1.0000', '2.4916', '2.4916', '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 (37774, '2021-11-29', 1407, 36022, 2777, 41976, '1.0000', '17.0125', '17.0125', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37775, '2021-11-29', 9089, 36023, 2777, 42175, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37776, '2021-11-29', 1426, 36024, 2777, 37544, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37777, '2021-11-29', 9469, 36025, 2777, 35936, '5.0000', '2.3000', '2.3000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37778, '2021-11-29', 8767, 36026, 2777, 40293, '1.0000', '6.6900', '6.6900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37779, '2021-11-29', 9478, 36027, 2777, 40374, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37780, '2021-11-29', 2825, 36028, 2777, NULL, '1.0000', '12.0000', '12.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 (37781, '2021-11-29', 1912, 36029, 2777, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37782, '2021-11-29', 2352, 36030, 2777, 17460, '5.0000', '20.0000', '20.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 (37783, '2021-11-29', 2109, 36031, 2777, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '81.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37784, '2021-11-29', 2169, 36032, 2777, 40868, '1.0000', '1.0542', '1.0542', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37785, '2021-11-29', 1411, 36033, 2777, 33042, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '12.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37786, '2021-11-29', 1641, 36034, 2777, 34686, '12.0000', '76.5908', '76.5908', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37787, '2021-11-29', 7547, 36035, 2778, NULL, '1.0000', '0.0000', '0.0000', '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 (37788, '2021-11-29', 2554, 36036, 2778, 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 (37789, '2021-11-29', 7383, 36037, 2778, 30015, '1.0000', '1.9700', '1.9700', '73.0000', '73.0000', '28.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37790, '2021-11-29', 8288, 36038, 2778, NULL, '3.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-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 (37791, '2021-11-29', 7674, 36039, 2778, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '105.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37792, '2021-11-29', 1578, 36040, 2778, 37402, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37793, '2021-11-29', 2315, 36041, 2778, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37794, '2021-11-29', 1303, 36042, 2778, 33727, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '95.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37795, '2021-11-29', 8208, 36043, 2778, NULL, '1.0000', '33.0000', '33.0000', '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 (37796, '2021-11-29', 7672, 36044, 2778, NULL, '1.0000', '1.0200', '1.0200', '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 (37797, '2021-11-29', 8918, 36045, 2778, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37798, '2021-11-29', 7671, 36046, 2778, NULL, '1.0000', '15.5000', '15.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 (37799, '2021-11-29', 8360, 36047, 2778, 39538, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37800, '2021-11-29', 7385, 36048, 2778, 41944, '2.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37801, '2021-11-29', 9674, 36049, 2778, 42403, '5.0000', '2.0000', '2.0000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37802, '2021-11-29', 1848, 36050, 2778, 42416, '10.0000', '0.4200', '0.4200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37803, '2021-11-29', 7954, 36051, 2778, NULL, '4.0000', '24.2844', '24.2844', '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 (37804, '2021-11-29', 7709, 36052, 2778, NULL, '2.0000', '35.8000', '35.8000', '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 (37805, '2021-11-29', 7547, 36053, 2778, NULL, '4.0000', '0.0000', '0.0000', '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 (37806, '2021-11-29', 7803, 36054, 2778, NULL, '1.0000', '1.8200', '1.8200', '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 (37807, '2021-11-29', 8566, 36055, 2778, NULL, '1.0000', '2.5000', '2.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 (37808, '2021-11-29', 7564, 36056, 2778, 30930, '3.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37809, '2021-11-29', 9012, 36057, 2778, NULL, '1.0000', '24.0000', '24.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 (37810, '2021-11-29', 7411, 36058, 2778, NULL, '1.0000', '1.3500', '1.3500', '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 (37811, '2021-11-29', 7415, 36059, 2778, 38440, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37812, '2021-11-29', 2315, 36060, 2778, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37813, '2021-11-29', 7353, 36061, 2778, NULL, '1.0000', '7078.0785', '7078.0785', '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 (37814, '2021-11-29', 7659, 36062, 2778, NULL, '1.0000', '5.9700', '5.9700', '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 (37815, '2021-11-29', 2004, 36063, 2778, 38465, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37816, '2021-11-29', 8548, 36064, 2778, NULL, '1.0000', '12.0000', '12.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 (37817, '2021-11-29', 1590, 36065, 2778, 34520, '1.0000', '1.7100', '1.7100', '2.3000', '2.3000', '43.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37818, '2021-11-29', 7482, 36066, 2778, NULL, '2.0000', '2.4981', '2.4981', '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 (37819, '2021-11-29', 2315, 36067, 2778, 38451, '5.0000', '0.4740', '0.4740', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37820, '2021-11-29', 7736, 36068, 2778, NULL, '1.0000', '15.0000', '15.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 (37821, '2021-11-29', 8756, 36069, 2778, NULL, '1.0000', '7.5051', '7.5051', '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 (37822, '2021-11-29', 8084, 36070, 2778, NULL, '1.0000', '11.7200', '11.7200', '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 (37823, '2021-11-29', 9556, 36071, 2778, 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 (37824, '2021-11-29', 7415, 36072, 2778, 38440, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37825, '2021-11-29', 7889, 36073, 2778, NULL, '1.0000', '-8.6571', '-8.6571', '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 (37826, '2021-11-29', 1647, 36074, 2778, 39567, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37827, '2021-11-29', 8511, 36075, 2778, NULL, '1.0000', '26.0000', '26.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 (37828, '2021-11-29', 9657, 36076, 2778, 42108, '2.0000', '37.0000', '37.0000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37829, '2021-11-29', 7509, 36077, 2778, 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 (37830, '2021-11-29', 7671, 36078, 2778, NULL, '1.0000', '15.5000', '15.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 (37831, '2021-11-29', 7709, 36079, 2778, NULL, '2.0000', '35.8000', '35.8000', '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 (37832, '2021-11-29', 1665, 36080, 2778, 39577, '4.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37833, '2021-11-29', 7465, 36081, 2778, 42424, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37834, '2021-11-29', 1302, 36082, 2778, 33519, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37835, '2021-11-29', 1772, 36083, 2778, 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 (37836, '2021-11-29', 1590, 36084, 2778, 34520, '1.0000', '1.7100', '1.7100', '2.3000', '2.3000', '43.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37837, '2021-11-29', 7641, 36085, 2778, NULL, '1.0000', '-12.5865', '-12.5865', '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 (37838, '2021-11-29', 1310, 36086, 2778, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (37839, '2021-11-29', 7527, 36087, 2778, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37840, '2021-11-29', 9092, 36088, 2778, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '207.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37841, '2021-11-29', 7637, 36089, 2778, 41932, '1.0000', '7.3004', '7.3004', '9.6800', '9.6800', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37842, '2021-11-29', 9505, 36090, 2778, NULL, '1.0000', '77.0000', '77.0000', '102.0000', '102.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37843, '2021-11-29', 9563, 36091, 2778, NULL, '1.0000', '5.1000', '5.1000', '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 (37844, '2021-11-29', 1590, 36092, 2779, 9437, '1.0000', '1.7100', '1.7100', '2.3000', '2.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 (37845, '2021-11-29', 2302, 36093, 2779, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37846, '2021-11-29', 2858, 36094, 2780, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37847, '2021-11-29', 7459, 36095, 2780, 31998, '1.0000', '2.3500', '2.3500', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37848, '2021-11-29', 2936, 36096, 2781, 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 (37849, '2021-11-29', 1619, 36097, 2781, 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 (37850, '2021-11-29', 1510, 36098, 2781, NULL, '1.0000', '10.5918', '10.5918', '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 (37851, '2021-11-29', 7671, 36099, 2781, NULL, '2.0000', '15.5000', '15.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 (37852, '2021-11-29', 9214, 36100, 2781, NULL, '1.0000', '9.3946', '9.3946', '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 (37853, '2021-11-29', 1585, 36101, 2782, NULL, '1.0000', '8.9900', '8.9900', '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 (37854, '2021-11-30', 2073, 36102, 2783, NULL, '2.0000', '2.3000', '2.3000', '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 (37855, '2021-11-30', 1837, 36103, 2783, 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 (37856, '2021-11-30', 1822, 36104, 2783, NULL, '10.0000', '2.8625', '2.8625', '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 (37857, '2021-11-30', 1349, 36105, 2783, 24881, '1.0000', '34.2225', '34.2225', '46.0000', '46.0000', '1.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 (37858, '2021-11-30', 2766, 36106, 2783, 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 (37859, '2021-11-30', 1574, 36107, 2783, NULL, '1.0000', '1.7001', '1.7001', '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 (37860, '2021-11-30', 2289, 36108, 2783, 38551, '1.0000', '0.2831', '0.2831', '0.5000', '0.5000', '16.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37861, '2021-11-30', 1841, 36109, 2783, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37862, '2021-11-30', 2232, 36110, 2783, 42548, '1.0000', '28.7853', '28.7853', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37863, '2021-11-30', 1863, 36111, 2783, NULL, '1.0000', '1.3589', '1.3589', '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 (37864, '2021-11-30', 1574, 36112, 2783, NULL, '2.0000', '1.7001', '1.7001', '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 (37865, '2021-11-30', 8065, 36113, 2783, NULL, '1.0000', '32.0000', '32.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 (37866, '2021-11-30', 2272, 36114, 2783, 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 (37867, '2021-11-30', 1570, 36115, 2783, 23146, '1.0000', '42.0000', '42.0000', '55.0000', '55.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 (37868, '2021-11-30', 2135, 36116, 2783, 18930, '1.0000', '2.4732', '2.4732', '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 (37869, '2021-11-30', 2223, 36117, 2783, 42636, '1.0000', '10.7140', '10.7140', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37870, '2021-11-30', 1757, 36118, 2783, 13772, '1.0000', '4.0024', '4.0024', '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 (37871, '2021-11-30', 7683, 36119, 2783, NULL, '1.0000', '1.8400', '1.8400', '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 (37872, '2021-11-30', 9503, 36120, 2784, 40109, '2.0000', '24.1775', '24.1775', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37873, '2021-11-30', 2573, 36121, 2784, 38559, '1.0000', '8.7800', '8.7800', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37874, '2021-11-30', 2916, 36122, 2784, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37875, '2021-11-30', 1574, 36123, 2784, NULL, '1.0000', '1.7001', '1.7001', '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 (37876, '2021-11-30', 9561, 36124, 2785, 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 (37877, '2021-11-30', 1574, 36125, 2785, NULL, '1.0000', '1.7001', '1.7001', '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 (37878, '2021-11-30', 1339, 36126, 2786, NULL, '1.0000', '1.4463', '1.4463', '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 (37879, '2021-11-30', 8775, 36127, 2786, 42536, '1.0000', '2.6346', '2.6346', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37880, '2021-11-30', 8775, 36127, 2786, 42657, '1.0000', '2.6346', '2.6346', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37881, '2021-11-30', 2964, 36128, 2786, NULL, '1.0000', '6.6000', '6.6000', '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 (37882, '2021-11-30', 2255, 36129, 2787, 42097, '1.0000', '17.8880', '17.8880', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37883, '2021-11-30', 1528, 36130, 2787, 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 (37884, '2021-11-30', 2821, 36131, 2788, 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 (37885, '2021-11-30', 2277, 36132, 2788, 2937, '-22.0000', '0.7800', '0.7800', '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 (37886, '2021-11-30', 2277, 36132, 2788, NULL, '23.0000', '0.7800', '0.7800', '1.5000', '1.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 (37887, '2021-11-30', 2169, 36133, 2788, 1382, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '14.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 (37888, '2021-11-30', 1550, 36134, 2788, NULL, '1.0000', '13.9000', '13.9000', '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 (37889, '2021-11-30', 2135, 36135, 2788, 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 (37890, '2021-11-30', 9577, 36136, 2788, NULL, '2.0000', '0.3200', '0.3200', '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 (37891, '2021-11-30', 9453, 36137, 2788, NULL, '3.0000', '11.0000', '11.0000', '14.5000', '14.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 (37892, '2021-11-30', 1486, 36138, 2788, 22327, '1.0000', '17.2400', '17.2400', '22.5000', '22.5000', '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 (37893, '2021-11-30', 2167, 36139, 2788, 17165, '-24.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 (37894, '2021-11-30', 2167, 36139, 2788, NULL, '25.0000', '2.2000', '2.2000', '3.0000', '3.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 (37895, '2021-11-30', 2283, 36140, 2788, 2943, '-6.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 (37896, '2021-11-30', 2283, 36140, 2788, NULL, '7.0000', '1.4300', '1.4300', '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 (37897, '2021-11-30', 2342, 36141, 2788, 3845, '-44.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 (37898, '2021-11-30', 2342, 36141, 2788, NULL, '47.0000', '1.8600', '1.8600', '2.5000', '2.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 (37899, '2021-11-30', 1693, 36142, 2788, NULL, '1.0000', '7.8600', '7.8600', '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 (37900, '2021-11-30', 1771, 36143, 2788, 6775, '1.0000', '5.2450', '5.2450', '6.5000', '6.5000', '2.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 (37901, '2021-11-30', 2876, 36144, 2788, 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 (37902, '2021-11-30', 9478, 36145, 2788, NULL, '1.0000', '9.0000', '9.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 (37903, '2021-11-30', 1371, 36146, 2788, 10169, '1.0000', '5.5000', '5.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 (37904, '2021-11-30', 1649, 36147, 2788, 3220, '-4.0000', '11.1900', '11.1900', '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 (37905, '2021-11-30', 1649, 36147, 2788, NULL, '5.0000', '11.1900', '11.1900', '13.0000', '13.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 (37906, '2021-11-30', 2109, 36148, 2788, 1053, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '99.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 (37907, '2021-11-30', 1945, 36149, 2788, 18023, '-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 (37908, '2021-11-30', 1945, 36149, 2788, 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 (37909, '2021-11-30', 2092, 36150, 2788, 22005, '-1.0000', '4.1500', '4.1500', '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 (37910, '2021-11-30', 2092, 36150, 2788, NULL, '2.0000', '4.1500', '4.1500', '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 (37911, '2021-11-30', 2169, 36151, 2788, 1382, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '14.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 (37912, '2021-11-30', 2360, 36152, 2788, 3862, '-42.0000', '0.5200', '0.5200', '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 (37913, '2021-11-30', 2360, 36152, 2788, NULL, '47.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (37914, '2021-11-30', 1904, 36153, 2788, 5442, '-14.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 (37915, '2021-11-30', 1904, 36153, 2788, NULL, '16.0000', '0.3200', '0.3200', '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 (37916, '2021-11-30', 2854, 36154, 2789, NULL, '1.0000', '8.9500', '8.9500', '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 (37917, '2021-11-30', 1935, 36155, 2789, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37918, '2021-11-30', 1810, 36156, 2789, 41386, '1.0000', '8.5104', '8.5104', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37919, '2021-11-30', 7713, 36157, 2790, NULL, '3.0000', '4.4000', '4.4000', '0.6000', '0.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 (37920, '2021-11-30', 7316, 36158, 2791, 38455, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '15.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37921, '2021-11-30', 7411, 36159, 2791, NULL, '1.0000', '1.3500', '1.3500', '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 (37922, '2021-11-30', 7831, 36160, 2791, NULL, '1.0000', '27.7500', '27.7500', '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 (37923, '2021-11-30', 8735, 36161, 2791, NULL, '1.0000', '5.6000', '5.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 (37924, '2021-11-30', 7787, 36162, 2791, NULL, '1.0000', '3.9600', '3.9600', '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 (37925, '2021-11-30', 8941, 36163, 2791, NULL, '5.0000', '12.0000', '12.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 (37926, '2021-11-30', 7911, 36164, 2791, NULL, '1.0000', '4.3700', '4.3700', '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 (37927, '2021-11-30', 9329, 36165, 2791, NULL, '1.0000', '5.8000', '5.8000', '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 (37928, '2021-11-30', 2726, 36166, 2791, NULL, '1.0000', '4.0000', '4.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 (37929, '2021-11-30', 7981, 36167, 2791, NULL, '2.0000', '6.0000', '6.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 (37930, '2021-11-30', 8608, 36168, 2791, NULL, '2.0000', '5.7400', '5.7400', '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 (37931, '2021-11-30', 7725, 36169, 2791, 39432, '1.0000', '6.2371', '6.2371', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37932, '2021-11-30', 7749, 36170, 2791, 41900, '1.0000', '20.0200', '20.0200', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37933, '2021-11-30', 7482, 36171, 2791, NULL, '1.0000', '2.4981', '2.4981', '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 (37934, '2021-11-30', 1577, 36172, 2791, 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 (37935, '2021-11-30', 7673, 36173, 2791, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37936, '2021-11-30', 7881, 36174, 2791, NULL, '1.0000', '83.7700', '83.7700', '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 (37937, '2021-11-30', 8288, 36175, 2791, NULL, '2.0000', '20.0000', '20.0000', '1.8000', '1.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 (37938, '2021-11-30', 8475, 36176, 2791, NULL, '1.0000', '8.6000', '8.6000', '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 (37939, '2021-11-30', 7411, 36177, 2791, NULL, '1.0000', '1.3500', '1.3500', '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 (37940, '2021-11-30', 9274, 36178, 2791, NULL, '1.0000', '3.1000', '3.1000', '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 (37941, '2021-11-30', 7507, 36179, 2791, NULL, '3.0000', '6.5000', '6.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 (37942, '2021-11-30', 7482, 36180, 2791, NULL, '1.0000', '2.4981', '2.4981', '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 (37943, '2021-11-30', 8033, 36181, 2791, NULL, '1.0000', '27.7000', '27.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 (37944, '2021-11-30', 8759, 36182, 2791, 32143, '1.0000', '7.1571', '7.1571', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37945, '2021-11-30', 9445, 36183, 2791, 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 (37946, '2021-11-30', 7473, 36184, 2791, NULL, '5.0000', '25.2998', '25.2998', '0.6000', '0.6000', '-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 (37947, '2021-11-30', 7712, 36185, 2791, NULL, '1.0000', '0.3300', '0.3300', '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 (37948, '2021-11-30', 8608, 36186, 2791, NULL, '2.0000', '5.7400', '5.7400', '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 (37949, '2021-11-30', 7385, 36187, 2791, 41944, '4.0000', '47727.6277', '47727.6277', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37950, '2021-11-30', 7775, 36188, 2791, NULL, '1.0000', '-2.9800', '-2.9800', '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 (37951, '2021-11-30', 8918, 36189, 2791, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37952, '2021-11-30', 2776, 36190, 2791, NULL, '1.0000', '14.6000', '14.6000', '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 (37953, '2021-11-30', 7803, 36191, 2791, NULL, '1.0000', '1.8200', '1.8200', '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 (37954, '2021-11-30', 9361, 36192, 2791, NULL, '1.0000', '52.2000', '52.2000', '90.0000', '90.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37955, '2021-11-30', 7645, 36193, 2791, NULL, '1.0000', '6.0000', '6.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37956, '2021-11-30', 7657, 36194, 2791, NULL, '2.0000', '5.4700', '5.4700', '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 (37957, '2021-11-30', 7674, 36195, 2791, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '104.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37958, '2021-11-30', 7862, 36196, 2791, NULL, '1.0000', '17.8000', '17.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 (37959, '2021-11-30', 8101, 36197, 2791, NULL, '1.0000', '21.7000', '21.7000', '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 (37960, '2021-11-30', 7832, 36198, 2791, NULL, '2.0000', '10.0000', '10.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 (37961, '2021-11-30', 8065, 36199, 2791, 37369, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37962, '2021-11-30', 2655, 36200, 2791, 31905, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37963, '2021-11-30', 7473, 36201, 2792, 39817, '4.0000', '0.1679', '0.1679', '0.6000', '0.6000', '95.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37964, '2021-11-30', 1574, 36202, 2792, NULL, '1.0000', '1.7001', '1.7001', '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 (37965, '2021-11-30', 9663, 36203, 2793, 42081, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37966, '2021-11-30', 7317, 36204, 2793, NULL, '1.0000', '19.5500', '19.5500', '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 (37967, '2021-11-30', 7473, 36205, 2794, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '94.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37968, '2021-11-30', 1839, 36206, 2794, NULL, '1.0000', '1.8866', '1.8866', '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 (37969, '2021-11-30', 8000, 36207, 2794, NULL, '1.0000', '25.8200', '25.8200', '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 (37970, '2021-11-30', 1409, 36208, 2794, 42845, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37971, '2021-11-30', 9416, 36209, 2794, NULL, '1.0000', '7.0000', '7.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 (37972, '2021-11-30', 1595, 36210, 2794, 42820, '1.0000', '20.4928', '20.4928', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37973, '2021-11-30', 9214, 36211, 2794, NULL, '1.0000', '9.6000', '9.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 (37974, '2021-11-30', 8065, 36212, 2794, NULL, '1.0000', '32.0000', '32.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 (37975, '2021-11-30', 1863, 36213, 2794, 42816, '1.0000', '1.3606', '1.3606', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37976, '2021-11-30', 8982, 36214, 2794, NULL, '1.0000', '9.0159', '9.0159', '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 (37977, '2021-11-30', 2169, 36215, 2794, NULL, '1.0000', '1.1500', '1.1500', '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 (37978, '2021-11-30', 2712, 36216, 2794, 32557, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37979, '2021-11-30', 7743, 36217, 2795, NULL, '1.0000', '7.3900', '7.3900', '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 (37980, '2021-11-30', 7713, 36218, 2795, NULL, '5.0000', '4.4000', '4.4000', '0.6000', '0.6000', '-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 (37981, '2021-11-30', 2169, 36219, 2795, NULL, '1.0000', '1.1500', '1.1500', '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 (37982, '2021-11-30', 7514, 36220, 2795, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37983, '2021-11-30', 1854, 36221, 2796, 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 (37984, '2021-11-30', 8566, 36222, 2797, 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 (37985, '2021-11-30', 1935, 36223, 2797, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37986, '2021-11-30', 8000, 36224, 2797, NULL, '1.0000', '25.8200', '25.8200', '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 (37987, '2021-11-30', 2726, 36225, 2797, NULL, '1.0000', '2.6400', '2.6400', '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 (37988, '2021-11-30', 7411, 36226, 2797, NULL, '1.0000', '1.3500', '1.3500', '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 (37989, '2021-11-30', 1644, 36227, 2797, 29636, '1.0000', '33.8900', '33.8900', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37990, '2021-11-30', 2712, 36228, 2797, 32557, '3.0000', '0.2600', '0.2600', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37991, '2021-11-30', 1431, 36229, 2797, NULL, '1.0000', '9.8000', '9.8000', '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 (37992, '2021-11-30', 2260, 36230, 2797, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37993, '2021-11-30', 1519, 36231, 2797, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37994, '2021-11-30', 1501, 36232, 2798, NULL, '1.0000', '2.2100', '2.2100', '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 (37995, '2021-11-30', 1910, 36233, 2798, 23140, '2.0000', '1.0200', '1.0200', '1.5000', '1.5000', '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 (37996, '2021-11-30', 3023, 36234, 2799, NULL, '1.0000', '5.6400', '5.6400', '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 (37997, '2021-11-30', 1409, 36235, 2799, 42845, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37998, '2021-11-30', 1612, 36236, 2799, 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 (37999, '2021-11-30', 1658, 36237, 2800, 40850, '1.0000', '33.3236', '33.3236', '35.5000', '35.5000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38000, '2021-11-30', 1712, 36238, 2800, 40152, '1.0000', '9.6500', '9.6500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38001, '2021-11-30', 1584, 36239, 2800, 35942, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38002, '2021-11-30', 2327, 36240, 2800, 40170, '1.0000', '-110.9890', '-110.9890', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38003, '2021-11-30', 2252, 36241, 2800, 31713, '1.0000', '9.5963', '9.5963', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38004, '2021-11-30', 1380, 36242, 2800, 40590, '1.0000', '87.5647', '87.5647', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38005, '2021-11-30', 1380, 36242, 2800, 13631, '1.0000', '87.5647', '87.5647', '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 (38006, '2021-11-30', 2313, 36243, 2800, NULL, '3.0000', '8.7000', '8.7000', '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 (38007, '2021-11-30', 2256, 36244, 2800, 40223, '2.0000', '13.3931', '13.3931', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38008, '2021-11-30', 7544, 36245, 2800, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (38009, '2021-11-30', 2167, 36246, 2800, 40903, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38010, '2021-11-30', 2280, 36247, 2800, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38011, '2021-11-30', 1945, 36248, 2800, 18071, '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 (38012, '2021-11-30', 2381, 36249, 2800, 40882, '1.0000', '-0.3142', '-0.3142', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38013, '2021-11-30', 2635, 36250, 2800, 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 (38014, '2021-11-30', 1336, 36251, 2800, 24264, '1.0000', '15.0000', '15.0000', '20.0000', '20.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 (38015, '2021-11-30', 1584, 36252, 2800, 35942, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38016, '2021-11-30', 2712, 36253, 2800, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38017, '2021-11-30', 7380, 36254, 2800, NULL, '1.0000', '5.6200', '5.6200', '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 (38018, '2021-11-30', 1810, 36255, 2800, 40639, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38019, '2021-11-30', 1533, 36256, 2800, 40902, '1.0000', '3.2241', '3.2241', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38020, '2021-11-30', 1501, 36257, 2800, 12680, '1.0000', '1566.1965', '1566.1965', '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 (38021, '2021-11-30', 2169, 36258, 2801, NULL, '1.0000', '1.1500', '1.1500', '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 (38022, '2021-11-30', 2660, 36259, 2801, 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 (38023, '2021-11-30', 9480, 36260, 2801, 32540, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38024, '2021-11-30', 2712, 36261, 2801, 32557, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38025, '2021-11-30', 2242, 36262, 2801, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38026, '2021-11-30', 8677, 36263, 2801, NULL, '2.0000', '89.9250', '89.9250', '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 (38027, '2021-11-30', 7482, 36264, 2801, 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 (38028, '2021-11-30', 1867, 36265, 2801, 30694, '2.0000', '7.1662', '7.1662', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38029, '2021-11-30', 8566, 36266, 2801, 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 (38030, '2021-11-30', 2132, 36267, 2801, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.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 (38031, '2021-11-30', 7483, 36268, 2801, NULL, '5.0000', '0.4200', '0.4200', '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 (38032, '2021-11-30', 9092, 36269, 2801, NULL, '9.0000', '5.2900', '5.2900', '0.5000', '0.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 (38033, '2021-11-30', 2821, 36270, 2801, 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 (38034, '2021-11-30', 7713, 36271, 2801, NULL, '1.0000', '4.4000', '4.4000', '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 (38035, '2021-11-30', 3041, 36272, 2801, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '10.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 (38036, '2021-11-30', 2646, 36273, 2802, 10600, '2.0000', '6.0000', '6.0000', '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 (38037, '2021-11-30', 7385, 36274, 2802, NULL, '10.0000', '2.2000', '2.2000', '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 (38038, '2021-11-30', 9637, 36275, 2802, 41984, '1.0000', '36.5000', '36.5000', '48.5000', '48.5000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38039, '2021-11-30', 2582, 36276, 2802, 31977, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38040, '2021-11-30', 7391, 36277, 2802, NULL, '1.0000', '-144.1150', '-144.1150', '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 (38041, '2021-11-30', 1706, 36278, 2802, 21568, '1.0000', '14.8866', '14.8866', '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 (38042, '2021-11-30', 1537, 36279, 2802, 24348, '1.0000', '45.5701', '45.5701', '56.0000', '56.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 (38043, '2021-11-30', 1537, 36279, 2802, 23585, '1.0000', '45.5701', '45.5701', '56.0000', '56.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 (38044, '2021-11-30', 3058, 36280, 2802, 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 (38045, '2021-11-30', 1719, 36281, 2802, 6811, '1.0000', '4.5900', '4.5900', '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 (38046, '2021-11-30', 1812, 36282, 2803, 42101, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38047, '2021-11-30', 7980, 36283, 2804, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (38048, '2021-11-30', 9563, 36284, 2804, 42660, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38049, '2021-11-30', 9174, 36285, 2804, NULL, '1.0000', '15.5000', '15.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 (38050, '2021-11-30', 1760, 36286, 2804, NULL, '5.0000', '1.5900', '1.5900', '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 (38051, '2021-11-30', 7358, 36288, 2804, NULL, '1.0000', '18.8000', '18.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 (38052, '2021-11-30', 1302, 36289, 2804, 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 (38053, '2021-11-30', 7411, 36290, 2804, NULL, '1.0000', '1.3500', '1.3500', '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 (38054, '2021-11-30', 1602, 36291, 2805, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38055, '2021-11-30', 1674, 36292, 2805, NULL, '1.0000', '3.2473', '3.2473', '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 (38056, '2021-11-30', 7518, 36293, 2805, NULL, '1.0000', '7.8200', '7.8200', '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 (38057, '2021-11-30', 1506, 36294, 2805, NULL, '1.0000', '90.0000', '90.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38058, '2021-11-30', 2662, 36295, 2805, 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 (38059, '2021-11-30', 1307, 36296, 2805, 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 (38060, '2021-11-30', 2821, 36297, 2805, 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 (38061, '2021-11-30', 9324, 36298, 2806, 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 (38062, '2021-11-30', 8826, 36299, 2806, NULL, '1.0000', '6.0000', '6.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 (38063, '2021-11-30', 7514, 36300, 2806, NULL, '1.0000', '12.9983', '12.9983', '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 (38064, '2021-11-30', 7744, 36301, 2806, 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 (38065, '2021-11-30', 9021, 36302, 2806, NULL, '1.0000', '7.0000', '7.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 (38066, '2021-11-30', 8677, 36303, 2806, NULL, '2.0000', '1.2300', '1.2300', '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 (38067, '2021-11-30', 8097, 36304, 2806, 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 (38068, '2021-11-30', 1837, 36305, 2806, 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 (38069, '2021-11-30', 9620, 36306, 2806, 41908, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38070, '2021-11-30', 7518, 36307, 2806, NULL, '2.0000', '-67.2578', '-67.2578', '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 (38071, '2021-11-30', 2847, 36308, 2806, 30017, '1.0000', '13.8800', '13.8800', '18.0000', '18.0000', '25.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38072, '2021-11-30', 9063, 36309, 2806, NULL, '1.0000', '30.0000', '30.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 (38073, '2021-11-30', 2561, 36310, 2806, NULL, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38074, '2021-11-30', 7711, 36311, 2806, NULL, '1.0000', '-78.4806', '-78.4806', '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 (38075, '2021-11-30', 2315, 36312, 2806, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38076, '2021-11-30', 7900, 36313, 2806, NULL, '1.0000', '2.5000', '2.5000', '3.2000', '3.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 (38077, '2021-11-30', 7671, 36314, 2806, NULL, '1.0000', '15.5000', '15.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 (38078, '2021-11-30', 8666, 36315, 2806, NULL, '1.0000', '0.4600', '0.4600', '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 (38079, '2021-11-30', 7638, 36316, 2806, 30222, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38080, '2021-11-30', 7391, 36317, 2806, NULL, '1.0000', '-26.2683', '-26.2683', '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 (38081, '2021-11-30', 8359, 36318, 2806, NULL, '1.0000', '20.4289', '20.4289', '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 (38082, '2021-11-30', 7707, 36319, 2806, NULL, '1.0000', '6.0012', '6.0012', '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 (38083, '2021-11-30', 8127, 36320, 2806, NULL, '1.0000', '24.5300', '24.5300', '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 (38084, '2021-11-30', 8134, 36321, 2806, NULL, '1.0000', '5.2600', '5.2600', '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 (38085, '2021-11-30', 9193, 36322, 2806, NULL, '1.0000', '5.5150', '5.5150', '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 (38086, '2021-11-30', 7719, 36323, 2806, NULL, '3.0000', '5.5000', '5.5000', '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 (38087, '2021-11-30', 7674, 36324, 2806, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '103.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38088, '2021-11-30', 8000, 36325, 2806, NULL, '1.0000', '74.7436', '74.7436', '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 (38089, '2021-11-30', 7782, 36326, 2806, NULL, '1.0000', '5.0000', '5.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 (38090, '2021-11-30', 2284, 36327, 2806, 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 (38091, '2021-11-30', 7883, 36328, 2806, NULL, '1.0000', '131.7400', '131.7400', '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 (38092, '2021-11-30', 7753, 36329, 2806, NULL, '1.0000', '3.4000', '3.4000', '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 (38093, '2021-11-30', 9193, 36330, 2806, NULL, '1.0000', '5.5150', '5.5150', '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 (38094, '2021-11-30', 8308, 36331, 2806, NULL, '1.0000', '11.0000', '11.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 (38095, '2021-11-30', 8361, 36332, 2806, NULL, '1.0000', '7.4495', '7.4495', '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 (38096, '2021-11-30', 7744, 36333, 2806, NULL, '2.0000', '2.7000', '2.7000', '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 (38097, '2021-11-30', 9193, 36334, 2806, NULL, '2.0000', '5.5150', '5.5150', '9.5000', '9.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 (38098, '2021-11-30', 7703, 36335, 2806, NULL, '1.0000', '22.9900', '22.9900', '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 (38099, '2021-11-30', 9098, 36336, 2806, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38100, '2021-11-30', 7558, 36337, 2806, NULL, '20.0000', '2.2000', '2.2000', '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 (38101, '2021-11-30', 7370, 36338, 2806, 42427, '1.0000', '12.1100', '12.1100', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38102, '2021-11-30', 7514, 36339, 2806, NULL, '1.0000', '12.9983', '12.9983', '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 (38103, '2021-11-30', 2277, 36340, 2807, 38069, '2.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38104, '2021-11-30', 2281, 36341, 2807, 3121, '2.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 (38105, '2021-11-30', 7782, 36342, 2807, NULL, '2.0000', '5.0000', '5.0000', '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 (38106, '2021-11-30', 1525, 36343, 2807, NULL, '3.0000', '90.0000', '90.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 (38107, '2021-11-30', 2025, 36344, 2807, NULL, '2.0000', '4.0000', '4.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 (38108, '2021-11-30', 9667, 36345, 2807, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38109, '2021-11-30', 2262, 36346, 2808, 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 (38110, '2021-11-30', 7532, 36347, 2808, 42102, '1.0000', '20.2334', '20.2334', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38111, '2021-11-30', 2520, 36348, 2808, 40121, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38112, '2021-11-30', 2332, 36349, 2808, 38567, '1.0000', '5.0900', '5.0900', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38113, '2021-11-30', 2010, 36350, 2808, 39982, '4.0000', '0.2369', '0.2369', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38114, '2021-11-30', 3025, 36351, 2808, 23975, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '10.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 (38115, '2021-11-30', 1687, 36352, 2808, 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 (38116, '2021-11-30', 7411, 36353, 2808, NULL, '1.0000', '1.3500', '1.3500', '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 (38117, '2021-11-30', 2713, 36354, 2808, 32555, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38118, '2021-12-01', 2169, 36355, 2809, NULL, '1.0000', '1.1500', '1.1500', '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 (38119, '2021-12-01', 2221, 36356, 2809, 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 (38120, '2021-12-01', 8061, 36357, 2809, NULL, '1.0000', '1.6000', '1.6000', '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 (38121, '2021-12-01', 2948, 36358, 2809, 39872, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38122, '2021-12-01', 8746, 36359, 2809, 42913, '1.0000', '3.0035', '3.0035', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38123, '2021-12-01', 1602, 36360, 2809, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38124, '2021-12-01', 1388, 36361, 2809, 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 (38125, '2021-12-01', 7473, 36362, 2809, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '93.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38126, '2021-12-01', 1912, 36363, 2809, 42544, '5.0000', '0.6675', '0.6675', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38127, '2021-12-01', 7742, 36364, 2809, NULL, '5.0000', '2.5000', '2.5000', '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 (38128, '2021-12-01', 1580, 36365, 2809, 19875, '2.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 (38129, '2021-12-01', 1580, 36365, 2809, NULL, '1.0000', '0.9900', '0.9900', '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 (38130, '2021-12-01', 2242, 36366, 2809, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38131, '2021-12-01', 2250, 36367, 2809, 31082, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38132, '2021-12-01', 8065, 36368, 2809, NULL, '1.0000', '32.0000', '32.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 (38133, '2021-12-01', 2965, 36369, 2809, NULL, '1.0000', '5.2913', '5.2913', '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 (38134, '2021-12-01', 2382, 36370, 2809, 19869, '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 (38135, '2021-12-01', 2387, 36371, 2809, 19870, '1.0000', '14.0700', '14.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 (38136, '2021-12-01', 8454, 36372, 2809, NULL, '1.0000', '5.1700', '5.1700', '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 (38137, '2021-12-01', 2167, 36373, 2809, 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 (38138, '2021-12-01', 7657, 36374, 2809, 39824, '1.0000', '10.3000', '10.3000', '14.0000', '14.0000', '19.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38139, '2021-12-01', 1574, 36375, 2809, NULL, '1.0000', '1.7001', '1.7001', '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 (38140, '2021-12-01', 2393, 36376, 2809, NULL, '1.0000', '3.2865', '3.2865', '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 (38141, '2021-12-01', 1912, 36377, 2809, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38142, '2021-12-01', 2280, 36378, 2809, NULL, '1.0000', '-177.9360', '-177.9360', '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 (38143, '2021-12-01', 8333, 36379, 2809, 41402, '1.0000', '6.3000', '6.3000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38144, '2021-12-01', 8208, 36380, 2809, NULL, '1.0000', '33.0000', '33.0000', '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 (38145, '2021-12-01', 1518, 36381, 2810, 6524, '-6.0000', '6.9000', '6.9000', '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 (38146, '2021-12-01', 1518, 36381, 2810, NULL, '7.0000', '6.9000', '6.9000', '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 (38147, '2021-12-01', 9644, 36382, 2810, NULL, '1.0000', '3.6000', '3.6000', '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 (38148, '2021-12-01', 2169, 36383, 2810, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '11.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 (38149, '2021-12-01', 1701, 36384, 2810, 11266, '-2.0000', '14.7800', '14.7800', '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 (38150, '2021-12-01', 1701, 36384, 2810, NULL, '3.0000', '14.7800', '14.7800', '18.5000', '18.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 (38151, '2021-12-01', 2136, 36385, 2810, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '85.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 (38152, '2021-12-01', 2879, 36386, 2810, 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 (38153, '2021-12-01', 2821, 36387, 2810, 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 (38154, '2021-12-01', 2858, 36388, 2810, 17772, '-18.0000', '1.0000', '1.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 (38155, '2021-12-01', 2858, 36388, 2810, NULL, '19.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (38156, '2021-12-01', 1584, 36389, 2810, 7601, '-7.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 (38157, '2021-12-01', 1584, 36389, 2810, NULL, '9.0000', '90.0000', '90.0000', '8.0000', '8.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 (38158, '2021-12-01', 1693, 36390, 2810, 11004, '-1.0000', '7.8600', '7.8600', '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 (38159, '2021-12-01', 1693, 36390, 2810, NULL, '2.0000', '7.8600', '7.8600', '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 (38160, '2021-12-01', 1384, 36391, 2810, 284, '1.0000', '39.0000', '39.0000', '18.0000', '18.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 (38161, '2021-12-01', 2401, 36392, 2810, NULL, '1.0000', '2.8000', '2.8000', '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 (38162, '2021-12-01', 9089, 36393, 2810, NULL, '1.0000', '3.8000', '3.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 (38163, '2021-12-01', 1912, 36394, 2810, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.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 (38164, '2021-12-01', 1692, 36395, 2810, 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 (38165, '2021-12-01', 2460, 36396, 2810, 12921, '-4.0000', '32.7700', '32.7700', '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 (38166, '2021-12-01', 2460, 36396, 2810, NULL, '5.0000', '32.7700', '32.7700', '47.0000', '47.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 (38167, '2021-12-01', 2712, 36397, 2811, 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 (38168, '2021-12-01', 1863, 36398, 2812, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38169, '2021-12-01', 2920, 36399, 2812, 34939, '2.0000', '30.0307', '30.0307', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38170, '2021-12-01', 2169, 36400, 2812, NULL, '1.0000', '1.1500', '1.1500', '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 (38171, '2021-12-01', 3058, 36401, 2812, NULL, '2.0000', '4.6750', '4.6750', '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 (38172, '2021-12-01', 1562, 36402, 2812, NULL, '1.0000', '5.1300', '5.1300', '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 (38173, '2021-12-01', 2346, 36403, 2812, NULL, '1.0000', '5.8000', '5.8000', '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 (38174, '2021-12-01', 1346, 36404, 2812, 42807, '5.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38175, '2021-12-01', 1760, 36405, 2812, NULL, '1.0000', '1.5900', '1.5900', '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 (38176, '2021-12-01', 8765, 36406, 2812, 42912, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38177, '2021-12-01', 2859, 36407, 2812, NULL, '1.0000', '0.6700', '0.6700', '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 (38178, '2021-12-01', 8368, 36408, 2812, NULL, '1.0000', '35.0000', '35.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 (38179, '2021-12-01', 1523, 36409, 2812, NULL, '1.0000', '1.0061', '1.0061', '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 (38180, '2021-12-01', 2958, 36410, 2812, 40132, '4.0000', '1.0000', '1.0000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38181, '2021-12-01', 1966, 36411, 2812, 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 (38182, '2021-12-01', 9461, 36412, 2812, NULL, '1.0000', '1.6000', '1.6000', '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 (38183, '2021-12-01', 1912, 36413, 2812, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38184, '2021-12-01', 2712, 36414, 2812, 32557, '5.0000', '0.2600', '0.2600', '0.5000', '0.5000', '26.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38185, '2021-12-01', 2167, 36415, 2812, 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 (38186, '2021-12-01', 2088, 36416, 2812, 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 (38187, '2021-12-01', 2167, 36417, 2812, 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 (38188, '2021-12-01', 2280, 36418, 2812, NULL, '1.0000', '-177.9360', '-177.9360', '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 (38189, '2021-12-01', 1935, 36419, 2812, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38190, '2021-12-01', 2169, 36420, 2812, NULL, '2.0000', '1.1500', '1.1500', '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 (38191, '2021-12-01', 9556, 36421, 2812, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38192, '2021-12-01', 1381, 36422, 2812, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38193, '2021-12-01', 1499, 36423, 2812, 42841, '2.0000', '0.6447', '0.6447', '0.7000', '0.7000', '18.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38194, '2021-12-01', 1342, 36424, 2812, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38195, '2021-12-01', 1804, 36425, 2812, 34646, '1.0000', '3.8408', '3.8408', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38196, '2021-12-01', 2020, 36426, 2812, NULL, '1.0000', '9.2832', '9.2832', '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 (38197, '2021-12-01', 1401, 36427, 2812, 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 (38198, '2021-12-01', 1863, 36428, 2812, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38199, '2021-12-01', 2167, 36429, 2812, 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 (38200, '2021-12-01', 2088, 36430, 2812, 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 (38201, '2021-12-01', 2004, 36431, 2812, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38202, '2021-12-01', 1501, 36432, 2812, NULL, '1.0000', '2.2100', '2.2100', '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 (38203, '2021-12-01', 1550, 36433, 2812, 39885, '1.0000', '-24.1500', '-24.1500', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38204, '2021-12-01', 9399, 36434, 2812, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38205, '2021-12-01', 1665, 36435, 2812, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38206, '2021-12-01', 2272, 36436, 2812, 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 (38207, '2021-12-01', 2660, 36437, 2812, 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 (38208, '2021-12-01', 1310, 36438, 2812, NULL, '4.0000', '0.3700', '0.3700', '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 (38209, '2021-12-01', 2712, 36439, 2812, 32557, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38210, '2021-12-01', 2293, 36440, 2812, NULL, '3.0000', '1.4400', '1.4400', '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 (38211, '2021-12-01', 1339, 36441, 2812, NULL, '1.0000', '1.4463', '1.4463', '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 (38212, '2021-12-01', 1337, 36442, 2812, 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 (38213, '2021-12-01', 7703, 36443, 2812, NULL, '1.0000', '22.9900', '22.9900', '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 (38214, '2021-12-01', 2037, 36444, 2812, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '15.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 (38215, '2021-12-01', 1401, 36445, 2812, 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 (38216, '2021-12-01', 7579, 36446, 2812, NULL, '1.0000', '15.0000', '15.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 (38217, '2021-12-01', 1369, 36447, 2812, 19356, '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 (38218, '2021-12-01', 2293, 36448, 2812, NULL, '3.0000', '1.4400', '1.4400', '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 (38219, '2021-12-01', 2242, 36449, 2812, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38220, '2021-12-01', 2768, 36450, 2812, 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 (38221, '2021-12-01', 2544, 36451, 2812, NULL, '1.0000', '6.8800', '6.8800', '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 (38222, '2021-12-01', 1501, 36452, 2812, NULL, '1.0000', '2.2100', '2.2100', '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 (38223, '2021-12-01', 8746, 36453, 2812, 42913, '1.0000', '3.0035', '3.0035', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38224, '2021-12-01', 9469, 36454, 2812, NULL, '1.0000', '2.3000', '2.3000', '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 (38225, '2021-12-01', 2169, 36455, 2812, NULL, '1.0000', '1.1500', '1.1500', '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 (38226, '2021-12-01', 1863, 36456, 2812, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38227, '2021-12-01', 1523, 36457, 2812, NULL, '1.0000', '1.0061', '1.0061', '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 (38228, '2021-12-01', 7473, 36458, 2813, NULL, '5.0000', '25.2998', '25.2998', '0.6000', '0.6000', '-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 (38229, '2021-12-01', 7778, 36459, 2813, NULL, '1.0000', '13.0100', '13.0100', '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 (38230, '2021-12-01', 8097, 36460, 2813, 43137, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38231, '2021-12-01', 7643, 36461, 2813, NULL, '1.0000', '2.1100', '2.1100', '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 (38232, '2021-12-01', 1837, 36462, 2813, 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 (38233, '2021-12-01', 8322, 36463, 2813, NULL, '1.0000', '3.2000', '3.2000', '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 (38234, '2021-12-01', 7907, 36464, 2813, NULL, '1.0000', '12.0000', '12.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 (38235, '2021-12-01', 7444, 36465, 2813, 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 (38236, '2021-12-01', 8714, 36466, 2813, 33709, '1.0000', '20.7036', '20.7036', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38237, '2021-12-01', 9160, 36467, 2813, NULL, '1.0000', '41.6640', '41.6640', '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 (38238, '2021-12-01', 7713, 36468, 2813, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38239, '2021-12-01', 7708, 36469, 2813, NULL, '1.0000', '6.1400', '6.1400', '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 (38240, '2021-12-01', 7385, 36470, 2813, 43120, '2.0000', '17.6346', '17.6346', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38241, '2021-12-01', 7643, 36471, 2813, NULL, '1.0000', '2.1100', '2.1100', '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 (38242, '2021-12-01', 8097, 36472, 2813, 43137, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38243, '2021-12-01', 7867, 36473, 2813, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38244, '2021-12-01', 7743, 36474, 2813, NULL, '1.0000', '419203.7668', '419203.7668', '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 (38245, '2021-12-01', 7799, 36475, 2813, NULL, '1.0000', '2.0000', '2.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 (38246, '2021-12-01', 2295, 36476, 2813, 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 (38247, '2021-12-01', 7753, 36477, 2813, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '30.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38248, '2021-12-01', 7385, 36478, 2813, 43120, '5.0000', '17.6346', '17.6346', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38249, '2021-12-01', 7375, 36479, 2813, NULL, '5.0000', '4.7000', '4.7000', '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 (38250, '2021-12-01', 7819, 36480, 2813, NULL, '1.0000', '9.5000', '9.5000', '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 (38251, '2021-12-01', 8072, 36481, 2813, NULL, '24.0000', '20.0000', '20.0000', '8.6000', '8.6000', '-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 (38252, '2021-12-01', 8967, 36482, 2813, NULL, '1.0000', '1.5000', '1.5000', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38253, '2021-12-01', 7438, 36483, 2813, NULL, '1.0000', '28.6900', '28.6900', '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 (38254, '2021-12-01', 8166, 36484, 2813, NULL, '1.0000', '4.6000', '4.6000', '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 (38255, '2021-12-01', 7370, 36485, 2813, 42427, '1.0000', '12.1100', '12.1100', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38256, '2021-12-01', 8074, 36486, 2813, 43096, '1.0000', '24.9998', '24.9998', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38257, '2021-12-01', 7385, 36487, 2813, 43120, '1.0000', '17.6346', '17.6346', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38258, '2021-12-01', 7707, 36488, 2813, NULL, '1.0000', '6.0012', '6.0012', '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 (38259, '2021-12-01', 9098, 36489, 2813, 42997, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38260, '2021-12-01', 9098, 36489, 2813, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38261, '2021-12-01', 7674, 36490, 2813, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '102.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38262, '2021-12-01', 7857, 36491, 2813, NULL, '1.0000', '14.5620', '14.5620', '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 (38263, '2021-12-01', 2655, 36492, 2813, 42879, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38264, '2021-12-01', 1460, 36493, 2813, 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 (38265, '2021-12-01', 7316, 36494, 2813, 38455, '4.0000', '0.8600', '0.8600', '1.2000', '1.2000', '11.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38266, '2021-12-01', 9001, 36495, 2813, NULL, '1.0000', '4.3300', '4.3300', '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 (38267, '2021-12-01', 8134, 36496, 2813, NULL, '2.0000', '5.2600', '5.2600', '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 (38268, '2021-12-01', 7666, 36497, 2813, NULL, '1.0000', '0.4000', '0.4000', '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 (38269, '2021-12-01', 9182, 36498, 2813, NULL, '1.0000', '10.0000', '10.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 (38270, '2021-12-01', 8920, 36499, 2813, 37425, '1.0000', '9.8500', '9.8500', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38271, '2021-12-01', 7675, 36500, 2813, NULL, '1.0000', '11.4300', '11.4300', '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 (38272, '2021-12-01', 7358, 36501, 2813, 42421, '1.0000', '14.5455', '14.5455', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38273, '2021-12-01', 9226, 36502, 2813, NULL, '1.0000', '6.3300', '6.3300', '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 (38274, '2021-12-01', 7409, 36503, 2813, 30031, '2.0000', '1.3200', '1.3200', '10.0000', '10.0000', '32.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38275, '2021-12-01', 8457, 36504, 2813, NULL, '1.0000', '0.7500', '0.7500', '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 (38276, '2021-12-01', 9667, 36505, 2813, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '18.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38277, '2021-12-01', 1840, 36506, 2813, 33725, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '141.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38278, '2021-12-01', 1841, 36507, 2813, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '79.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38279, '2021-12-01', 2289, 36508, 2813, 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 (38280, '2021-12-01', 7524, 36509, 2813, NULL, '1.0000', '103.0922', '103.0922', '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 (38281, '2021-12-01', 7411, 36510, 2813, NULL, '1.0000', '1.3500', '1.3500', '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 (38282, '2021-12-01', 8166, 36511, 2813, NULL, '1.0000', '4.6000', '4.6000', '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 (38283, '2021-12-01', 7714, 36512, 2813, 37846, '8.0000', '0.4200', '0.4200', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38284, '2021-12-01', 7702, 36513, 2813, NULL, '1.0000', '0.4600', '0.4600', '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 (38285, '2021-12-01', 2655, 36514, 2813, 42879, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38286, '2021-12-01', 1321, 36515, 2813, NULL, '1.0000', '9.8000', '9.8000', '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 (38287, '2021-12-01', 9556, 36516, 2813, 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 (38288, '2021-12-01', 7674, 36517, 2813, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '102.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38289, '2021-12-01', 7952, 36518, 2813, NULL, '1.0000', '10.4000', '10.4000', '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 (38290, '2021-12-01', 1947, 36519, 2813, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38291, '2021-12-01', 2713, 36520, 2813, 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 (38292, '2021-12-01', 7431, 36521, 2813, 34498, '1.0000', '-2.1674', '-2.1674', '24.0000', '24.0000', '5.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38293, '2021-12-01', 7658, 36522, 2813, NULL, '10.0000', '63.4193', '63.4193', '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 (38294, '2021-12-01', 9183, 36523, 2813, NULL, '1.0000', '8.3000', '8.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 (38295, '2021-12-01', 7456, 36524, 2813, NULL, '1.0000', '1.3800', '1.3800', '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 (38296, '2021-12-01', 7743, 36525, 2813, NULL, '1.0000', '419203.7668', '419203.7668', '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 (38297, '2021-12-01', 7780, 36526, 2813, NULL, '2.0000', '2.6000', '2.6000', '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 (38298, '2021-12-01', 8562, 36527, 2813, NULL, '1.0000', '12.0000', '12.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 (38299, '2021-12-01', 2315, 36528, 2813, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38300, '2021-12-01', 7380, 36529, 2813, NULL, '1.0000', '8.0000', '8.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 (38301, '2021-12-01', 7743, 36530, 2813, NULL, '2.0000', '419203.7668', '419203.7668', '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 (38302, '2021-12-01', 7954, 36531, 2813, NULL, '4.0000', '24.4161', '24.4161', '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 (38303, '2021-12-01', 7411, 36532, 2813, NULL, '1.0000', '1.3500', '1.3500', '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 (38304, '2021-12-01', 2655, 36533, 2814, 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 (38305, '2021-12-01', 2440, 36534, 2814, 39978, '1.0000', '5.4115', '5.4115', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38306, '2021-12-01', 1381, 36535, 2814, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38307, '2021-12-01', 2169, 36536, 2814, NULL, '1.0000', '1.1500', '1.1500', '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 (38308, '2021-12-01', 1310, 36537, 2814, NULL, '2.0000', '0.3700', '0.3700', '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 (38309, '2021-12-01', 1841, 36538, 2814, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38310, '2021-12-01', 2381, 36539, 2814, 34920, '1.0000', '12.4824', '12.4824', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38311, '2021-12-01', 2506, 36540, 2814, 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 (38312, '2021-12-01', 2273, 36541, 2814, 39870, '1.0000', '3.6337', '3.6337', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38313, '2021-12-01', 1523, 36542, 2814, NULL, '1.0000', '1.0061', '1.0061', '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 (38314, '2021-12-01', 1863, 36543, 2814, 42816, '3.0000', '1.3603', '1.3603', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38315, '2021-12-01', 1816, 36544, 2814, NULL, '1.0000', '19.7500', '19.7500', '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 (38316, '2021-12-01', 2544, 36545, 2814, NULL, '1.0000', '6.8800', '6.8800', '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 (38317, '2021-12-01', 1386, 36546, 2814, 41400, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38318, '2021-12-01', 1592, 36547, 2814, 42068, '1.0000', '35.4585', '35.4585', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38319, '2021-12-01', 2269, 36548, 2814, NULL, '1.0000', '5.8300', '5.8300', '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 (38320, '2021-12-01', 2354, 36549, 2814, NULL, '1.0000', '5.0600', '5.0600', '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 (38321, '2021-12-01', 2106, 36550, 2814, 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 (38322, '2021-12-01', 7703, 36551, 2814, NULL, '1.0000', '22.9900', '22.9900', '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 (38323, '2021-12-01', 8746, 36552, 2815, 42913, '1.0000', '3.0035', '3.0035', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38324, '2021-12-01', 2299, 36553, 2815, 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 (38325, '2021-12-01', 2660, 36554, 2815, 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 (38326, '2021-12-01', 7790, 36555, 2815, NULL, '1.0000', '17.0000', '17.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 (38327, '2021-12-01', 2965, 36556, 2815, NULL, '1.0000', '5.2913', '5.2913', '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 (38328, '2021-12-01', 1888, 36557, 2815, 42105, '1.0000', '16.4667', '16.4667', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38329, '2021-12-01', 1800, 36558, 2816, 22403, '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 (38330, '2021-12-01', 9469, 36559, 2816, 42935, '2.0000', '2.3000', '2.3000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38331, '2021-12-01', 2280, 36560, 2816, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38332, '2021-12-01', 1805, 36561, 2816, 42975, '1.0000', '4.2421', '4.2421', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38333, '2021-12-01', 2109, 36562, 2816, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '79.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38334, '2021-12-01', 2136, 36563, 2816, 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 (38335, '2021-12-01', 2259, 36564, 2816, 40879, '1.0000', '19.7299', '19.7299', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38336, '2021-12-01', 2864, 36565, 2816, 40863, '10.0000', '1.4422', '1.4422', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38337, '2021-12-01', 2280, 36566, 2816, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38338, '2021-12-01', 2359, 36567, 2816, 40175, '1.0000', '5.2064', '5.2064', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38339, '2021-12-01', 2359, 36567, 2816, NULL, '1.0000', '5.2064', '5.2064', '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 (38340, '2021-12-01', 1783, 36568, 2816, 40861, '1.0000', '-85.3042', '-85.3042', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38341, '2021-12-01', 1584, 36569, 2816, 42924, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38342, '2021-12-01', 8759, 36570, 2816, 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 (38343, '2021-12-01', 9667, 36571, 2816, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38344, '2021-12-01', 1621, 36572, 2816, 40853, '1.0000', '54.8382', '54.8382', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38345, '2021-12-01', 1935, 36573, 2816, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38346, '2021-12-01', 1855, 36574, 2816, 4986, '1.0000', '1.4000', '1.4000', '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 (38347, '2021-12-01', 2602, 36575, 2816, 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 (38348, '2021-12-01', 1665, 36576, 2816, 43027, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38349, '2021-12-01', 2858, 36577, 2816, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38350, '2021-12-01', 2669, 36578, 2816, 38079, '1.0000', '28.6241', '28.6241', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38351, '2021-12-01', 1687, 36579, 2816, NULL, '1.0000', '12.1558', '12.1558', '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 (38352, '2021-12-01', 1670, 36580, 2816, 40657, '1.0000', '113.0050', '113.0050', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38353, '2021-12-01', 9160, 36581, 2816, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38354, '2021-12-01', 1665, 36582, 2816, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38355, '2021-12-01', 1501, 36583, 2816, 12680, '1.0000', '1566.1965', '1566.1965', '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 (38356, '2021-12-01', 7738, 36584, 2816, NULL, '1.0000', '8.0000', '8.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 (38357, '2021-12-01', 2299, 36585, 2816, 40867, '1.0000', '-3.7866', '-3.7866', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38358, '2021-12-01', 7385, 36586, 2816, NULL, '10.0000', '2.2000', '2.2000', '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 (38359, '2021-12-01', 8773, 36587, 2816, NULL, '2.0000', '2.5000', '2.5000', '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 (38360, '2021-12-01', 1345, 36588, 2816, 18673, '1.0000', '44.0000', '44.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 (38361, '2021-12-01', 2782, 36589, 2816, 19052, '1.0000', '91.8000', '91.8000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38362, '2021-12-01', 9667, 36590, 2816, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38363, '2021-12-01', 2168, 36591, 2816, 40601, '1.0000', '26.0000', '26.0000', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38364, '2021-12-01', 1812, 36592, 2816, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38365, '2021-12-01', 1346, 36593, 2817, 42807, '5.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38366, '2021-12-01', 2279, 36594, 2817, 23106, '1.0000', '2.6000', '2.6000', '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 (38367, '2021-12-01', 1665, 36595, 2817, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38368, '2021-12-01', 2169, 36596, 2818, NULL, '1.0000', '1.1500', '1.1500', '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 (38369, '2021-12-01', 2327, 36597, 2818, 39828, '1.0000', '3.8860', '3.8860', '5.0000', '5.0000', '49.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38370, '2021-12-01', 7671, 36598, 2818, NULL, '1.0000', '15.5000', '15.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 (38371, '2021-12-01', 1602, 36599, 2818, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38372, '2021-12-01', 2821, 36600, 2818, 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 (38373, '2021-12-01', 1837, 36601, 2818, 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 (38374, '2021-12-01', 2093, 36602, 2818, NULL, '1.0000', '2.5500', '2.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 (38375, '2021-12-01', 2106, 36603, 2818, 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 (38376, '2021-12-01', 1667, 36604, 2819, 42826, '1.0000', '22.4947', '22.4947', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38377, '2021-12-01', 8150, 36605, 2819, NULL, '1.0000', '27.9400', '27.9400', '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 (38378, '2021-12-01', 2020, 36606, 2820, 40153, '1.0000', '-10.0734', '-10.0734', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38379, '2021-12-01', 2280, 36607, 2820, 40891, '2.0000', '2.3427', '2.3427', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38380, '2021-12-01', 1345, 36608, 2820, 3384, '1.0000', '44.0000', '44.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 (38381, '2021-12-01', 2109, 36609, 2820, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '77.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38382, '2021-12-01', 1345, 36610, 2820, 3384, '1.0000', '44.0000', '44.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 (38383, '2021-12-01', 2260, 36611, 2820, 40885, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38384, '2021-12-01', 2317, 36612, 2820, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '51.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38385, '2021-12-01', 9554, 36613, 2820, 39184, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38386, '2021-12-01', 8666, 36614, 2821, NULL, '1.0000', '0.4600', '0.4600', '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 (38387, '2021-12-01', 8475, 36615, 2821, NULL, '1.0000', '8.6000', '8.6000', '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 (38388, '2021-12-01', 7612, 36616, 2821, NULL, '1.0000', '1.1770', '1.1770', '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 (38389, '2021-12-01', 7547, 36617, 2821, NULL, '4.0000', '0.0000', '0.0000', '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 (38390, '2021-12-01', 9098, 36618, 2821, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38391, '2021-12-01', 2642, 36619, 2821, NULL, '2.0000', '5.0000', '5.0000', '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 (38392, '2021-12-01', 7932, 36620, 2821, NULL, '1.0000', '3.3000', '3.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 (38393, '2021-12-01', 2582, 36621, 2822, 31977, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38394, '2021-12-01', 2094, 36622, 2822, 6002, '1.0000', '2.9000', '2.9000', '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 (38395, '2021-12-01', 1839, 36623, 2822, 42981, '1.0000', '6.3773', '6.3773', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38396, '2021-12-01', 1401, 36624, 2822, 42970, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38397, '2021-12-01', 2651, 36625, 2822, 41981, '1.0000', '-3.8051', '-3.8051', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38398, '2021-12-01', 9469, 36626, 2823, 42880, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38399, '2021-12-01', 9563, 36627, 2823, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '47.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38400, '2021-12-01', 9563, 36628, 2823, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '47.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38401, '2021-12-01', 1602, 36629, 2824, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38402, '2021-12-01', 9603, 36630, 2824, 42907, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38403, '2021-12-01', 9667, 36631, 2825, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '17.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38404, '2021-12-01', 2293, 36632, 2826, NULL, '3.0000', '1.4400', '1.4400', '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 (38405, '2021-12-01', 2695, 36633, 2827, 42961, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38406, '2021-12-01', 1788, 36634, 2827, 4929, '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 (38407, '2021-12-01', 2363, 36635, 2828, 40897, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38408, '2021-12-01', 1499, 36636, 2829, 31996, '1.0000', '0.4100', '0.4100', '0.7000', '0.7000', '30.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38409, '2021-12-01', 2327, 36637, 2829, 40170, '1.0000', '-110.9890', '-110.9890', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38410, '2021-12-01', 2695, 36638, 2829, 42961, '4.0000', '2.0000', '2.0000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38411, '2021-12-01', 1337, 36639, 2830, 40900, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38412, '2021-12-01', 1651, 36640, 2830, 43037, '2.0000', '6.8684', '6.8684', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38413, '2021-12-01', 2485, 36641, 2831, 39201, '1.0000', '29.8556', '29.8556', '18.0000', '18.0000', '65.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38414, '2021-12-01', 2487, 36642, 2831, 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 (38415, '2021-12-01', 1525, 36643, 2831, 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 (38416, '2021-12-01', 1641, 36644, 2831, 43040, '3.0000', '51.1126', '51.1126', '2.0000', '2.0000', '77.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38417, '2021-12-01', 7886, 36645, 2832, 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 (38418, '2021-12-01', 2313, 36646, 2832, NULL, '3.0000', '8.7000', '8.7000', '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 (38419, '2021-12-01', 2671, 36647, 2832, 43048, '1.0000', '30.3829', '30.3829', '41.0000', '41.0000', '4.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38420, '2021-12-01', 1811, 36648, 2832, 18067, '2.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 (38421, '2021-12-01', 1812, 36649, 2832, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38422, '2021-12-01', 1349, 36650, 2832, 42982, '1.0000', '34.3411', '34.3411', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38423, '2021-12-01', 2491, 36651, 2832, 42202, '1.0000', '13.1608', '13.1608', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38424, '2021-12-01', 2363, 36652, 2832, 40897, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38425, '2021-12-01', 9602, 36653, 2832, NULL, '1.0000', '1.0500', '1.0500', '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 (38426, '2021-12-01', 3057, 36654, 2832, 40219, '2.0000', '3.2700', '3.2700', '4.5000', '4.5000', '34.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38427, '2021-12-01', 9416, 36655, 2833, 42922, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38428, '2021-12-02', 1493, 36656, 2834, 9747, '-7.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 (38429, '2021-12-02', 1493, 36656, 2834, NULL, '8.0000', '1.5425', '1.5425', '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 (38430, '2021-12-02', 2136, 36657, 2834, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '83.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 (38431, '2021-12-02', 2363, 36658, 2834, 3866, '-3.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 (38432, '2021-12-02', 2363, 36658, 2834, NULL, '4.0000', '6.8800', '6.8800', '9.0000', '9.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 (38433, '2021-12-02', 1426, 36659, 2834, 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 (38434, '2021-12-02', 2366, 36660, 2834, 3833, '-23.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 (38435, '2021-12-02', 2366, 36660, 2834, NULL, '25.0000', '3.7500', '3.7500', '6.0000', '6.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 (38436, '2021-12-02', 1411, 36661, 2834, 33816, '3.0000', '25.9000', '25.9000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38437, '2021-12-02', 1411, 36661, 2834, 33816, '3.0000', '25.9000', '25.9000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38438, '2021-12-02', 1411, 36661, 2834, NULL, '1.0000', '25.9000', '25.9000', '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 (38439, '2021-12-02', 2228, 36662, 2834, 1703, '-2.0000', '25.0000', '25.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 (38440, '2021-12-02', 2228, 36662, 2834, NULL, '3.0000', '25.0000', '25.0000', '28.0000', '28.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 (38441, '2021-12-02', 9521, 36663, 2834, 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 (38442, '2021-12-02', 2346, 36664, 2834, 18804, '1.0000', '5.5000', '5.5000', '7.5000', '7.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 (38443, '2021-12-02', 2858, 36665, 2834, 17772, '-19.0000', '1.0000', '1.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 (38444, '2021-12-02', 2858, 36665, 2834, NULL, '20.0000', '1.0000', '1.0000', '5.0000', '5.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 (38445, '2021-12-02', 1928, 36666, 2834, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '2.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 (38446, '2021-12-02', 2411, 36667, 2835, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.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 (38447, '2021-12-02', 1700, 36668, 2836, 6227, '-5.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 (38448, '2021-12-02', 1700, 36668, 2836, NULL, '6.0000', '8.0000', '8.0000', '12.0000', '12.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 (38449, '2021-12-02', 7741, 36669, 2837, NULL, '1.0000', '1.2000', '1.2000', '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 (38450, '2021-12-02', 2825, 36670, 2838, NULL, '1.0000', '12.0000', '12.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 (38451, '2021-12-02', 2169, 36671, 2838, NULL, '1.0000', '1.1500', '1.1500', '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 (38452, '2021-12-02', 1519, 36672, 2838, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38453, '2021-12-02', 2237, 36673, 2838, NULL, '1.0000', '-329.8285', '-329.8285', '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 (38454, '2021-12-02', 8889, 36674, 2838, NULL, '1.0000', '34.0000', '34.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 (38455, '2021-12-02', 2237, 36675, 2838, NULL, '1.0000', '-329.8285', '-329.8285', '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 (38456, '2021-12-02', 7741, 36676, 2838, NULL, '1.0000', '1.2000', '1.2000', '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 (38457, '2021-12-02', 1935, 36677, 2838, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38458, '2021-12-02', 1839, 36678, 2838, NULL, '1.0000', '1.8866', '1.8866', '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 (38459, '2021-12-02', 2916, 36679, 2838, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38460, '2021-12-02', 1346, 36680, 2838, 42807, '2.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38461, '2021-12-02', 1863, 36681, 2838, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38462, '2021-12-02', 2237, 36682, 2838, NULL, '1.0000', '-329.8285', '-329.8285', '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 (38463, '2021-12-02', 1863, 36683, 2838, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38464, '2021-12-02', 2660, 36684, 2838, 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 (38465, '2021-12-02', 1800, 36685, 2838, 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 (38466, '2021-12-02', 9573, 36686, 2838, 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 (38467, '2021-12-02', 1825, 36687, 2838, 23678, '1.0000', '4.3850', '4.3850', '7.0000', '7.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 (38468, '2021-12-02', 7385, 36688, 2838, 42798, '1.0000', '-18.4000', '-18.4000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38469, '2021-12-02', 2643, 36689, 2838, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38470, '2021-12-02', 1941, 36690, 2838, 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 (38471, '2021-12-02', 9577, 36691, 2838, NULL, '2.0000', '0.3200', '0.3200', '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 (38472, '2021-12-02', 1863, 36692, 2838, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38473, '2021-12-02', 1533, 36693, 2838, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38474, '2021-12-02', 2821, 36694, 2838, 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 (38475, '2021-12-02', 1532, 36695, 2838, NULL, '1.0000', '7.4815', '7.4815', '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 (38476, '2021-12-02', 1533, 36696, 2838, 41387, '2.0000', '2.5082', '2.5082', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38477, '2021-12-02', 1529, 36697, 2838, NULL, '1.0000', '3.4997', '3.4997', '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 (38478, '2021-12-02', 2948, 36698, 2838, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38479, '2021-12-02', 1524, 36699, 2838, 39873, '1.0000', '4.4000', '4.4000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38480, '2021-12-02', 2029, 36700, 2838, 40001, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38481, '2021-12-02', 7645, 36701, 2839, NULL, '1.0000', '6.0000', '6.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38482, '2021-12-02', 7674, 36702, 2839, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '100.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38483, '2021-12-02', 2943, 36703, 2839, 43054, '1.0000', '2.1933', '2.1933', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38484, '2021-12-02', 8753, 36704, 2839, 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 (38485, '2021-12-02', 7736, 36705, 2839, NULL, '1.0000', '15.0000', '15.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 (38486, '2021-12-02', 7748, 36706, 2839, NULL, '1.0000', '139538.4686', '139538.4686', '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 (38487, '2021-12-02', 9682, 36707, 2839, 42892, '1.0000', '13.5000', '13.5000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38488, '2021-12-02', 7885, 36708, 2839, NULL, '1.0000', '17.8900', '17.8900', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38489, '2021-12-02', 1672, 36709, 2839, NULL, '10.0000', '2.9200', '2.9200', '4.0000', '4.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 (38490, '2021-12-02', 2351, 36710, 2839, NULL, '1.0000', '17.7000', '17.7000', '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 (38491, '2021-12-02', 7671, 36711, 2839, NULL, '1.0000', '15.5000', '15.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 (38492, '2021-12-02', 8657, 36712, 2839, NULL, '1.0000', '6.3869', '6.3869', '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 (38493, '2021-12-02', 7423, 36713, 2839, NULL, '1.0000', '7.3200', '7.3200', '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 (38494, '2021-12-02', 8562, 36714, 2839, NULL, '1.0000', '12.0000', '12.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 (38495, '2021-12-02', 7518, 36715, 2839, NULL, '1.0000', '-67.2578', '-67.2578', '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 (38496, '2021-12-02', 8581, 36716, 2839, 42776, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38497, '2021-12-02', 7675, 36717, 2839, NULL, '1.0000', '11.4300', '11.4300', '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 (38498, '2021-12-02', 7643, 36718, 2839, NULL, '1.0000', '2.1100', '2.1100', '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 (38499, '2021-12-02', 8135, 36719, 2839, NULL, '1.0000', '13.9000', '13.9000', '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 (38500, '2021-12-02', 7545, 36720, 2839, NULL, '1.0000', '0.3200', '0.3200', '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 (38501, '2021-12-02', 7917, 36721, 2839, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (38502, '2021-12-02', 9579, 36722, 2839, 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 (38503, '2021-12-02', 8858, 36723, 2839, NULL, '2.0000', '27.7076', '27.7076', '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 (38504, '2021-12-02', 7819, 36724, 2839, NULL, '1.0000', '9.5000', '9.5000', '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 (38505, '2021-12-02', 2363, 36725, 2839, 42406, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38506, '2021-12-02', 7674, 36726, 2839, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '100.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38507, '2021-12-02', 7671, 36727, 2839, NULL, '1.0000', '15.5000', '15.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 (38508, '2021-12-02', 7784, 36728, 2839, NULL, '1.0000', '4.2500', '4.2500', '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 (38509, '2021-12-02', 7755, 36729, 2839, NULL, '1.0000', '82.0200', '82.0200', '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 (38510, '2021-12-02', 9242, 36730, 2839, NULL, '1.0000', '22.5000', '22.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 (38511, '2021-12-02', 9667, 36731, 2839, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '16.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38512, '2021-12-02', 7674, 36732, 2839, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '100.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38513, '2021-12-02', 9178, 36733, 2839, 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 (38514, '2021-12-02', 7469, 36734, 2839, NULL, '1.0000', '18.8000', '18.8000', '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 (38515, '2021-12-02', 7675, 36735, 2839, NULL, '1.0000', '11.4300', '11.4300', '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 (38516, '2021-12-02', 7326, 36736, 2839, NULL, '2.0000', '0.1500', '0.1500', '74.0000', '74.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 (38517, '2021-12-02', 1634, 36737, 2839, NULL, '2.0000', '25.0000', '25.0000', '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 (38518, '2021-12-02', 7385, 36738, 2839, NULL, '3.0000', '17.6346', '17.6346', '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 (38519, '2021-12-02', 7375, 36739, 2839, NULL, '14.0000', '4.7000', '4.7000', '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 (38520, '2021-12-02', 7514, 36740, 2839, NULL, '1.0000', '12.9983', '12.9983', '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 (38521, '2021-12-02', 7954, 36741, 2839, NULL, '1.0000', '24.4161', '24.4161', '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 (38522, '2021-12-02', 7385, 36742, 2839, NULL, '1.0000', '17.6346', '17.6346', '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 (38523, '2021-12-02', 7685, 36743, 2839, NULL, '1.0000', '31.2000', '31.2000', '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 (38524, '2021-12-02', 9092, 36744, 2839, 40421, '5.0000', '0.3051', '0.3051', '0.5000', '0.5000', '202.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38525, '2021-12-02', 8038, 36745, 2839, 43025, '1.0000', '6.7600', '6.7600', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38526, '2021-12-02', 7709, 36746, 2839, NULL, '2.0000', '35.8000', '35.8000', '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 (38527, '2021-12-02', 8425, 36747, 2839, 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 (38528, '2021-12-02', 8325, 36748, 2839, 36672, '2.0000', '6.3350', '6.3350', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38529, '2021-12-02', 8440, 36749, 2839, NULL, '1.0000', '8.6000', '8.6000', '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 (38530, '2021-12-02', 9267, 36750, 2839, 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 (38531, '2021-12-02', 9643, 36751, 2839, 43126, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38532, '2021-12-02', 9271, 36752, 2839, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38533, '2021-12-02', 8308, 36753, 2839, NULL, '1.0000', '11.0000', '11.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 (38534, '2021-12-02', 2104, 36754, 2839, NULL, '3.0000', '0.2000', '0.2000', '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 (38535, '2021-12-02', 1760, 36755, 2839, 39629, '2.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38536, '2021-12-02', 2284, 36756, 2839, 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 (38537, '2021-12-02', 7447, 36757, 2839, NULL, '3.0000', '19.1100', '19.1100', '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 (38538, '2021-12-02', 9499, 36758, 2839, 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 (38539, '2021-12-02', 8721, 36759, 2839, NULL, '2.0000', '3.0000', '3.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 (38540, '2021-12-02', 2506, 36760, 2839, 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 (38541, '2021-12-02', 7712, 36761, 2839, NULL, '1.0000', '0.3300', '0.3300', '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 (38542, '2021-12-02', 7753, 36762, 2839, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38543, '2021-12-02', 8142, 36763, 2839, 37417, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38544, '2021-12-02', 8923, 36764, 2839, NULL, '2.0000', '7.2500', '7.2500', '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 (38545, '2021-12-02', 7316, 36765, 2839, 38455, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38546, '2021-12-02', 7825, 36766, 2839, NULL, '1.0000', '6.5000', '6.5000', '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 (38547, '2021-12-02', 7917, 36767, 2839, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38548, '2021-12-02', 7672, 36768, 2839, NULL, '1.0000', '1.0200', '1.0200', '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 (38549, '2021-12-02', 7666, 36769, 2839, NULL, '1.0000', '0.4000', '0.4000', '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 (38550, '2021-12-02', 7514, 36770, 2839, NULL, '1.0000', '12.9983', '12.9983', '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 (38551, '2021-12-02', 7514, 36771, 2839, NULL, '1.0000', '12.9983', '12.9983', '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 (38552, '2021-12-02', 7640, 36772, 2839, NULL, '1.0000', '7.4344', '7.4344', '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 (38553, '2021-12-02', 9456, 36773, 2839, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38554, '2021-12-02', 7854, 36774, 2839, NULL, '1.0000', '28.5800', '28.5800', '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 (38555, '2021-12-02', 7507, 36775, 2839, NULL, '3.0000', '6.5000', '6.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 (38556, '2021-12-02', 7482, 36776, 2839, NULL, '1.0000', '2.4981', '2.4981', '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 (38557, '2021-12-02', 9092, 36777, 2839, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '205.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38558, '2021-12-02', 9684, 36778, 2839, 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 (38559, '2021-12-02', 8166, 36779, 2839, NULL, '1.0000', '4.6000', '4.6000', '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 (38560, '2021-12-02', 8203, 36780, 2839, NULL, '2.0000', '1.0075', '1.0075', '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 (38561, '2021-12-02', 9655, 36781, 2839, 42663, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38562, '2021-12-02', 8063, 36782, 2839, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38563, '2021-12-02', 8673, 36783, 2839, NULL, '1.0000', '18.4487', '18.4487', '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 (38564, '2021-12-02', 1583, 36784, 2839, 42873, '1.0000', '5.8900', '5.8900', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38565, '2021-12-02', 8704, 36785, 2839, 30923, '1.0000', '6.0500', '6.0500', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38566, '2021-12-02', 7606, 36786, 2839, 43113, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38567, '2021-12-02', 7781, 36787, 2839, NULL, '3.0000', '4.2500', '4.2500', '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 (38568, '2021-12-02', 2315, 36788, 2839, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38569, '2021-12-02', 1947, 36789, 2839, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38570, '2021-12-02', 8360, 36790, 2840, NULL, '1.0000', '3.5200', '3.5200', '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 (38571, '2021-12-02', 1840, 36791, 2840, 42569, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '37.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38572, '2021-12-02', 1841, 36792, 2840, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38573, '2021-12-02', 2242, 36793, 2840, 37444, '3.0000', '0.5518', '0.5518', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38574, '2021-12-02', 7411, 36794, 2840, NULL, '2.0000', '1.3500', '1.3500', '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 (38575, '2021-12-02', 1665, 36795, 2840, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38576, '2021-12-02', 1520, 36796, 2840, 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 (38577, '2021-12-02', 1386, 36797, 2840, 41400, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38578, '2021-12-02', 2730, 36798, 2840, 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 (38579, '2021-12-02', 7317, 36799, 2840, NULL, '1.0000', '19.5500', '19.5500', '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 (38580, '2021-12-02', 7666, 36800, 2840, NULL, '1.0000', '10.0000', '10.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 (38581, '2021-12-02', 9158, 36801, 2840, NULL, '1.0000', '5.8900', '5.8900', '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 (38582, '2021-12-02', 7651, 36802, 2840, NULL, '1.0000', '5.0000', '5.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 (38583, '2021-12-02', 2811, 36803, 2840, 42815, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38584, '2021-12-02', 7743, 36804, 2840, NULL, '1.0000', '7.3900', '7.3900', '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 (38585, '2021-12-02', 2135, 36805, 2840, 18930, '1.0000', '2.4732', '2.4732', '5.0000', '5.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 (38586, '2021-12-02', 1420, 36806, 2840, 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 (38587, '2021-12-02', 7317, 36807, 2840, NULL, '1.0000', '19.5500', '19.5500', '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 (38588, '2021-12-02', 2237, 36808, 2840, NULL, '1.0000', '-329.8285', '-329.8285', '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 (38589, '2021-12-02', 9089, 36809, 2840, NULL, '1.0000', '3.8000', '3.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 (38590, '2021-12-02', 9470, 36810, 2840, 39993, '1.0000', '9.7867', '9.7867', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38591, '2021-12-02', 1856, 36811, 2840, 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 (38592, '2021-12-02', 1409, 36812, 2840, 42845, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38593, '2021-12-02', 1387, 36813, 2840, 23677, '1.0000', '11.7000', '11.7000', '16.0000', '16.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 (38594, '2021-12-02', 8444, 36814, 2840, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38595, '2021-12-02', 2506, 36815, 2840, 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 (38596, '2021-12-02', 7666, 36816, 2840, NULL, '1.0000', '10.0000', '10.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 (38597, '2021-12-02', 2962, 36817, 2840, 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 (38598, '2021-12-02', 2242, 36818, 2840, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38599, '2021-12-02', 7411, 36819, 2840, NULL, '1.0000', '1.3500', '1.3500', '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 (38600, '2021-12-02', 2548, 36820, 2840, 43273, '2.0000', '7.0500', '7.0500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38601, '2021-12-02', 2384, 36821, 2840, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (38602, '2021-12-02', 9204, 36822, 2840, NULL, '2.0000', '8.1600', '8.1600', '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 (38603, '2021-12-02', 1428, 36823, 2840, 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 (38604, '2021-12-02', 2994, 36824, 2840, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38605, '2021-12-02', 2713, 36825, 2840, 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 (38606, '2021-12-02', 7524, 36826, 2840, NULL, '1.0000', '11.9500', '11.9500', '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 (38607, '2021-12-02', 7601, 36827, 2840, NULL, '1.0000', '13.5000', '13.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 (38608, '2021-12-02', 2237, 36828, 2840, NULL, '1.0000', '-329.8285', '-329.8285', '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 (38609, '2021-12-02', 7411, 36829, 2840, NULL, '1.0000', '1.3500', '1.3500', '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 (38610, '2021-12-02', 1337, 36830, 2841, 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 (38611, '2021-12-02', 7765, 36831, 2841, NULL, '1.0000', '16.0000', '16.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 (38612, '2021-12-02', 8638, 36832, 2841, NULL, '1.0000', '0.5100', '0.5100', '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 (38613, '2021-12-02', 8638, 36833, 2841, NULL, '1.0000', '0.5100', '0.5100', '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 (38614, '2021-12-02', 2169, 36834, 2841, NULL, '1.0000', '1.1500', '1.1500', '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 (38615, '2021-12-02', 1854, 36835, 2841, 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 (38616, '2021-12-02', 1425, 36836, 2841, 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 (38617, '2021-12-02', 7514, 36837, 2841, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38618, '2021-12-02', 7524, 36838, 2842, NULL, '1.0000', '11.9500', '11.9500', '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 (38619, '2021-12-02', 2964, 36839, 2842, NULL, '1.0000', '6.6000', '6.6000', '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 (38620, '2021-12-02', 2109, 36840, 2842, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '28.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 (38621, '2021-12-02', 7411, 36841, 2842, NULL, '1.0000', '1.3500', '1.3500', '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 (38622, '2021-12-02', 1692, 36842, 2843, 2455, '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 (38623, '2021-12-02', 2712, 36843, 2843, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '79.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38624, '2021-12-02', 2360, 36844, 2843, 42957, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '49.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38625, '2021-12-02', 2858, 36845, 2843, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38626, '2021-12-02', 2256, 36846, 2843, 40223, '1.0000', '13.3931', '13.3931', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38627, '2021-12-02', 2812, 36847, 2843, 17362, '1.0000', '98.5600', '98.5600', '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 (38628, '2021-12-02', 2964, 36848, 2843, NULL, '1.0000', '6.6000', '6.6000', '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 (38629, '2021-12-02', 2279, 36849, 2843, 34672, '1.0000', '2.3230', '2.3230', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38630, '2021-12-02', 2236, 36850, 2843, 42954, '1.0000', '5.6661', '5.6661', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38631, '2021-12-02', 1602, 36851, 2843, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38632, '2021-12-02', 2329, 36852, 2843, 3904, '1.0000', '30.1300', '30.1300', '42.5000', '42.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 (38633, '2021-12-02', 1856, 36853, 2843, 40216, '1.0000', '4.2732', '4.2732', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38634, '2021-12-02', 2227, 36854, 2843, 32619, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38635, '2021-12-02', 1677, 36855, 2843, 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 (38636, '2021-12-02', 1759, 36856, 2843, 40630, '1.0000', '23.5769', '23.5769', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38637, '2021-12-02', 1687, 36857, 2843, NULL, '1.0000', '12.1558', '12.1558', '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 (38638, '2021-12-02', 7886, 36858, 2843, 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 (38639, '2021-12-02', 1812, 36859, 2843, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38640, '2021-12-02', 2592, 36860, 2843, 16710, '1.0000', '7.9456', '7.9456', '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 (38641, '2021-12-02', 3022, 36861, 2843, 23613, '1.0000', '4.1200', '4.1200', '6.0000', '6.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 (38642, '2021-12-02', 8065, 36862, 2843, NULL, '1.0000', '4.9800', '4.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 (38643, '2021-12-02', 2828, 36863, 2843, 16963, '1.0000', '17.6500', '17.6500', '24.0000', '24.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 (38644, '2021-12-02', 1306, 36864, 2843, NULL, '6.0000', '2.1000', '2.1000', '3.0000', '3.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 (38645, '2021-12-02', 2544, 36865, 2843, 29812, '1.0000', '6.8800', '6.8800', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38646, '2021-12-02', 9642, 36866, 2843, 41991, '1.0000', '51.3000', '51.3000', '68.0000', '68.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38647, '2021-12-02', 2109, 36867, 2843, 40229, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '73.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38648, '2021-12-02', 2169, 36868, 2843, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38649, '2021-12-02', 8645, 36869, 2843, 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 (38650, '2021-12-02', 1346, 36870, 2843, NULL, '5.0000', '0.9300', '0.9300', '1.5000', '1.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 (38651, '2021-12-02', 1831, 36871, 2843, 40888, '2.0000', '3.2049', '3.2049', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38652, '2021-12-02', 2660, 36872, 2843, 42944, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38653, '2021-12-02', 9468, 36873, 2843, NULL, '1.0000', '17.5000', '17.5000', '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 (38654, '2021-12-02', 3054, 36874, 2844, 43224, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38655, '2021-12-02', 7411, 36875, 2844, NULL, '1.0000', '1.3500', '1.3500', '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 (38656, '2021-12-02', 2681, 36876, 2844, 42104, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38657, '2021-12-02', 1665, 36877, 2844, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38658, '2021-12-02', 8761, 36878, 2844, NULL, '1.0000', '8.7100', '8.7100', '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 (38659, '2021-12-02', 8775, 36879, 2844, 42910, '1.0000', '2.5174', '2.5174', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38660, '2021-12-02', 1650, 36880, 2845, NULL, '1.0000', '15.2800', '15.2800', '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 (38661, '2021-12-02', 8053, 36881, 2846, 37844, '3.0000', '1.7988', '1.7988', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38662, '2021-12-02', 7671, 36882, 2846, NULL, '2.0000', '15.5000', '15.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 (38663, '2021-12-02', 8702, 36883, 2846, NULL, '1.0000', '3.6700', '3.6700', '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 (38664, '2021-12-02', 7892, 36884, 2846, NULL, '1.0000', '4.2000', '4.2000', '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 (38665, '2021-12-02', 7641, 36885, 2846, NULL, '1.0000', '-7.4783', '-7.4783', '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 (38666, '2021-12-02', 8740, 36886, 2846, NULL, '1.0000', '2.0000', '2.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 (38667, '2021-12-02', 7748, 36887, 2846, NULL, '1.0000', '139538.4686', '139538.4686', '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 (38668, '2021-12-02', 7507, 36888, 2846, NULL, '3.0000', '6.5000', '6.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 (38669, '2021-12-02', 7482, 36889, 2846, NULL, '1.0000', '2.4981', '2.4981', '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 (38670, '2021-12-02', 7518, 36890, 2846, NULL, '1.0000', '-67.2578', '-67.2578', '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 (38671, '2021-12-02', 2655, 36891, 2846, 42879, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38672, '2021-12-02', 7674, 36892, 2846, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '96.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38673, '2021-12-02', 7411, 36893, 2846, NULL, '2.0000', '1.3500', '1.3500', '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 (38674, '2021-12-02', 7415, 36894, 2846, 38440, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38675, '2021-12-02', 9563, 36895, 2846, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '45.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38676, '2021-12-02', 9563, 36896, 2846, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '45.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38677, '2021-12-02', 7756, 36897, 2847, NULL, '1.0000', '21.7700', '21.7700', '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 (38678, '2021-12-02', 9667, 36898, 2847, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '15.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38679, '2021-12-02', 9329, 36899, 2847, NULL, '1.0000', '5.8000', '5.8000', '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 (38680, '2021-12-02', 7892, 36900, 2847, NULL, '1.0000', '4.2000', '4.2000', '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 (38681, '2021-12-02', 8702, 36901, 2847, NULL, '1.0000', '3.6700', '3.6700', '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 (38682, '2021-12-02', 8188, 36902, 2848, NULL, '1.0000', '6.7000', '6.7000', '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 (38683, '2021-12-02', 1661, 36903, 2849, 40876, '1.0000', '32.1800', '32.1800', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38684, '2021-12-02', 2362, 36904, 2849, 40161, '10.0000', '87.0239', '87.0239', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38685, '2021-12-02', 9667, 36905, 2849, 42201, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38686, '2021-12-02', 2296, 36906, 2849, 42978, '1.0000', '12.2973', '12.2973', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38687, '2021-12-02', 1337, 36907, 2849, 40900, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38688, '2021-12-02', 1521, 36908, 2849, 40904, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38689, '2021-12-02', 2092, 36909, 2849, 31976, '1.0000', '3.6658', '3.6658', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38690, '2021-12-02', 2958, 36910, 2849, 40390, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38691, '2021-12-02', 2273, 36911, 2849, NULL, '1.0000', '2.6700', '2.6700', '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 (38692, '2021-12-02', 1358, 36912, 2849, 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 (38693, '2021-12-02', 1350, 36913, 2849, 40586, '1.0000', '-2.7180', '-2.7180', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38694, '2021-12-02', 2251, 36914, 2849, 34419, '1.0000', '11.7398', '11.7398', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38695, '2021-12-02', 1371, 36915, 2849, 41971, '1.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38696, '2021-12-02', 9563, 36916, 2849, 42629, '2.0000', '5.1000', '5.1000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38697, '2021-12-02', 1961, 36917, 2850, 24009, '1.0000', '17.7486', '17.7486', '22.0000', '22.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 (38698, '2021-12-02', 1687, 36918, 2851, NULL, '1.0000', '12.1558', '12.1558', '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 (38699, '2021-12-03', 2135, 36919, 2852, 18930, '1.0000', '2.4732', '2.4732', '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 (38700, '2021-12-03', 2415, 36920, 2852, 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 (38701, '2021-12-03', 1307, 36921, 2852, NULL, '1.0000', '1.7846', '1.7846', '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 (38702, '2021-12-03', 2643, 36922, 2852, 40006, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38703, '2021-12-03', 9577, 36923, 2852, NULL, '2.0000', '0.3200', '0.3200', '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 (38704, '2021-12-03', 1410, 36924, 2852, NULL, '1.0000', '2.1083', '2.1083', '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 (38705, '2021-12-03', 1602, 36925, 2852, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38706, '2021-12-03', 1863, 36926, 2852, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38707, '2021-12-03', 9461, 36927, 2852, NULL, '1.0000', '1.6000', '1.6000', '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 (38708, '2021-12-03', 2277, 36928, 2852, 43261, '1.0000', '0.9399', '0.9399', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38709, '2021-12-03', 9649, 36929, 2852, NULL, '1.0000', '14.4100', '14.4100', '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 (38710, '2021-12-03', 2221, 36930, 2852, 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 (38711, '2021-12-03', 2336, 36931, 2852, 38598, '1.0000', '6.4000', '6.4000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38712, '2021-12-03', 2169, 36932, 2852, NULL, '1.0000', '1.1500', '1.1500', '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 (38713, '2021-12-03', 2965, 36933, 2852, NULL, '1.0000', '5.2913', '5.2913', '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 (38714, '2021-12-03', 1629, 36934, 2852, 29650, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38715, '2021-12-03', 9556, 36935, 2852, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38716, '2021-12-03', 2237, 36936, 2852, NULL, '1.0000', '-329.8285', '-329.8285', '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 (38717, '2021-12-03', 2293, 36937, 2852, NULL, '3.0000', '1.4400', '1.4400', '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 (38718, '2021-12-03', 2109, 36938, 2852, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '27.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 (38719, '2021-12-03', 1935, 36939, 2852, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38720, '2021-12-03', 9577, 36940, 2852, NULL, '2.0000', '0.3200', '0.3200', '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 (38721, '2021-12-03', 1856, 36941, 2852, 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 (38722, '2021-12-03', 9577, 36942, 2852, NULL, '1.0000', '0.3200', '0.3200', '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 (38723, '2021-12-03', 9577, 36943, 2853, NULL, '2.0000', '0.3200', '0.3200', '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 (38724, '2021-12-03', 2293, 36944, 2853, NULL, '1.0000', '1.4400', '1.4400', '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 (38725, '2021-12-03', 9577, 36945, 2853, NULL, '4.0000', '0.3200', '0.3200', '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 (38726, '2021-12-03', 7630, 36946, 2853, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (38727, '2021-12-03', 9204, 36947, 2853, NULL, '1.0000', '8.1600', '8.1600', '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 (38728, '2021-12-03', 9214, 36948, 2853, NULL, '1.0000', '9.6000', '9.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 (38729, '2021-12-03', 7918, 36949, 2853, 42833, '1.0000', '11.0875', '11.0875', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38730, '2021-12-03', 2994, 36950, 2853, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38731, '2021-12-03', 2237, 36951, 2853, NULL, '1.0000', '-329.8285', '-329.8285', '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 (38732, '2021-12-03', 7482, 36952, 2853, 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 (38733, '2021-12-03', 2574, 36953, 2853, 19819, '2.0000', '0.7800', '0.7800', '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 (38734, '2021-12-03', 9577, 36954, 2853, NULL, '1.0000', '0.3200', '0.3200', '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 (38735, '2021-12-03', 3059, 36955, 2853, 37758, '1.0000', '2.2083', '2.2083', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38736, '2021-12-03', 1519, 36956, 2853, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38737, '2021-12-03', 2169, 36957, 2853, NULL, '1.0000', '1.1500', '1.1500', '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 (38738, '2021-12-03', 1339, 36958, 2853, NULL, '1.0000', '1.4463', '1.4463', '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 (38739, '2021-12-03', 1499, 36959, 2853, 42841, '4.0000', '0.6447', '0.6447', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38740, '2021-12-03', 1661, 36960, 2853, 42069, '1.0000', '35.9400', '35.9400', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38741, '2021-12-03', 2299, 36961, 2853, 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 (38742, '2021-12-03', 9663, 36962, 2853, 42081, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38743, '2021-12-03', 2503, 36963, 2853, 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 (38744, '2021-12-03', 2169, 36964, 2853, NULL, '1.0000', '1.1500', '1.1500', '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 (38745, '2021-12-03', 2821, 36965, 2853, 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 (38746, '2021-12-03', 2993, 36966, 2853, 39800, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38747, '2021-12-03', 7713, 36967, 2853, NULL, '1.0000', '4.4000', '4.4000', '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 (38748, '2021-12-03', 2384, 36968, 2853, 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 (38749, '2021-12-03', 1478, 36969, 2853, 42813, '1.0000', '-46.0000', '-46.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38750, '2021-12-03', 2411, 36970, 2854, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38751, '2021-12-03', 7641, 36971, 2855, NULL, '1.0000', '-7.4783', '-7.4783', '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 (38752, '2021-12-03', 9092, 36972, 2855, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '198.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38753, '2021-12-03', 8449, 36973, 2855, NULL, '1.0000', '9.5000', '9.5000', '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 (38754, '2021-12-03', 8938, 36974, 2855, NULL, '2.0000', '7.8500', '7.8500', '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 (38755, '2021-12-03', 8702, 36975, 2855, NULL, '1.0000', '3.6700', '3.6700', '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 (38756, '2021-12-03', 9272, 36976, 2855, NULL, '1.0000', '3.1000', '3.1000', '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 (38757, '2021-12-03', 1817, 36977, 2855, NULL, '1.0000', '9.5500', '9.5500', '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 (38758, '2021-12-03', 9362, 36978, 2855, NULL, '1.0000', '0.0000', '0.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 (38759, '2021-12-03', 3001, 36979, 2855, NULL, '2.0000', '1.5000', '1.5000', '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 (38760, '2021-12-03', 7767, 36980, 2855, NULL, '1.0000', '1.4000', '1.4000', '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 (38761, '2021-12-03', 7675, 36981, 2855, NULL, '1.0000', '11.4300', '11.4300', '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 (38762, '2021-12-03', 7385, 36982, 2855, NULL, '3.0000', '17.6346', '17.6346', '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 (38763, '2021-12-03', 8200, 36983, 2855, NULL, '1.0000', '629.5726', '629.5726', '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 (38764, '2021-12-03', 9667, 36984, 2855, 42419, '2.0000', '17.0000', '17.0000', '25.0000', '25.0000', '13.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38765, '2021-12-03', 2287, 36985, 2855, NULL, '2.0000', '2.3000', '2.3000', '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 (38766, '2021-12-03', 8608, 36986, 2855, NULL, '1.0000', '5.7400', '5.7400', '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 (38767, '2021-12-03', 7954, 36987, 2855, NULL, '4.0000', '24.4161', '24.4161', '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 (38768, '2021-12-03', 8188, 36988, 2855, NULL, '1.0000', '6.7000', '6.7000', '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 (38769, '2021-12-03', 8453, 36989, 2855, NULL, '1.0000', '5.0800', '5.0800', '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 (38770, '2021-12-03', 7524, 36990, 2855, NULL, '1.0000', '103.0922', '103.0922', '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 (38771, '2021-12-03', 8453, 36991, 2855, NULL, '1.0000', '5.0800', '5.0800', '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 (38772, '2021-12-03', 9304, 36992, 2855, NULL, '1.0000', '12.0000', '12.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 (38773, '2021-12-03', 2315, 36993, 2855, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38774, '2021-12-03', 7980, 36994, 2855, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (38775, '2021-12-03', 7606, 36995, 2855, 43113, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38776, '2021-12-03', 2906, 36996, 2855, 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 (38777, '2021-12-03', 8539, 36997, 2855, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '23.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38778, '2021-12-03', 7868, 36998, 2855, NULL, '2.0000', '28.7600', '28.7600', '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 (38779, '2021-12-03', 7658, 36999, 2855, NULL, '5.0000', '63.4193', '63.4193', '2.5000', '2.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 (38780, '2021-12-03', 9098, 37000, 2855, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38781, '2021-12-03', 8359, 37001, 2855, NULL, '1.0000', '24.5862', '24.5862', '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 (38782, '2021-12-03', 7620, 37002, 2855, 33540, '1.0000', '9.3100', '9.3100', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38783, '2021-12-03', 7562, 37003, 2855, NULL, '2.0000', '0.4800', '0.4800', '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 (38784, '2021-12-03', 8923, 37004, 2855, NULL, '2.0000', '7.2500', '7.2500', '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 (38785, '2021-12-03', 2104, 37005, 2855, NULL, '4.0000', '0.2000', '0.2000', '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 (38786, '2021-12-03', 2289, 37006, 2855, NULL, '4.0000', '0.2300', '0.2300', '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 (38787, '2021-12-03', 8702, 37007, 2855, NULL, '1.0000', '3.6700', '3.6700', '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 (38788, '2021-12-03', 8851, 37008, 2855, NULL, '2.0000', '16.6600', '16.6600', '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 (38789, '2021-12-03', 8889, 37009, 2855, 42760, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '6.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38790, '2021-12-03', 7743, 37010, 2855, NULL, '1.0000', '419203.7668', '419203.7668', '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 (38791, '2021-12-03', 9445, 37011, 2855, 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 (38792, '2021-12-03', 7385, 37012, 2855, NULL, '5.0000', '17.6346', '17.6346', '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 (38793, '2021-12-03', 9337, 37013, 2855, NULL, '2.0000', '6.8067', '6.8067', '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 (38794, '2021-12-03', 9271, 37014, 2855, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38795, '2021-12-03', 8457, 37015, 2855, NULL, '1.0000', '0.7500', '0.7500', '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 (38796, '2021-12-03', 8308, 37016, 2855, NULL, '1.0000', '11.0000', '11.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 (38797, '2021-12-03', 7457, 37017, 2855, 43105, '2.0000', '3.3581', '3.3581', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38798, '2021-12-03', 7671, 37018, 2855, NULL, '1.0000', '15.5000', '15.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 (38799, '2021-12-03', 7675, 37019, 2855, NULL, '1.0000', '11.4300', '11.4300', '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 (38800, '2021-12-03', 2289, 37020, 2855, NULL, '4.0000', '0.2300', '0.2300', '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 (38801, '2021-12-03', 7544, 37021, 2855, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (38802, '2021-12-03', 1841, 37022, 2855, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38803, '2021-12-03', 7673, 37023, 2855, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38804, '2021-12-03', 7661, 37024, 2855, NULL, '1.0000', '7.2000', '7.2000', '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 (38805, '2021-12-03', 8714, 37025, 2855, NULL, '1.0000', '20.7036', '20.7036', '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 (38806, '2021-12-03', 8622, 37026, 2855, 42420, '2.0000', '-19.0040', '-19.0040', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38807, '2021-12-03', 8203, 37027, 2855, NULL, '4.0000', '1.0075', '1.0075', '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 (38808, '2021-12-03', 7547, 37028, 2855, NULL, '1.0000', '0.0000', '0.0000', '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 (38809, '2021-12-03', 9337, 37029, 2855, NULL, '2.0000', '6.8067', '6.8067', '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 (38810, '2021-12-03', 7423, 37030, 2855, NULL, '1.0000', '7.3200', '7.3200', '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 (38811, '2021-12-03', 9579, 37031, 2855, 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 (38812, '2021-12-03', 9578, 37032, 2855, NULL, '1.0000', '8.0000', '8.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 (38813, '2021-12-03', 7815, 37033, 2855, NULL, '1.0000', '13.0000', '13.0000', '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 (38814, '2021-12-03', 7784, 37034, 2855, NULL, '4.0000', '4.2500', '4.2500', '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 (38815, '2021-12-03', 8166, 37035, 2855, NULL, '2.0000', '4.6000', '4.6000', '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 (38816, '2021-12-03', 7917, 37036, 2855, NULL, '4.0000', '5.0000', '5.0000', '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 (38817, '2021-12-03', 7954, 37037, 2855, NULL, '1.0000', '24.4161', '24.4161', '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 (38818, '2021-12-03', 8466, 37038, 2855, NULL, '3.0000', '-24.7500', '-24.7500', '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 (38819, '2021-12-03', 1501, 37039, 2855, 43011, '1.0000', '-22.8349', '-22.8349', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38820, '2021-12-03', 7687, 37040, 2855, 36026, '1.0000', '34.8226', '34.8226', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38821, '2021-12-03', 7981, 37041, 2855, NULL, '10.0000', '6.0000', '6.0000', '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 (38822, '2021-12-03', 8188, 37042, 2855, NULL, '1.0000', '6.7000', '6.7000', '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 (38823, '2021-12-03', 9243, 37043, 2855, NULL, '1.0000', '22.0056', '22.0056', '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 (38824, '2021-12-03', 7753, 37044, 2855, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38825, '2021-12-03', 8753, 37045, 2855, 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 (38826, '2021-12-03', 7489, 37046, 2855, NULL, '1.0000', '4.9000', '4.9000', '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 (38827, '2021-12-03', 7917, 37047, 2856, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38828, '2021-12-03', 7385, 37048, 2856, NULL, '2.0000', '17.6346', '17.6346', '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 (38829, '2021-12-03', 7981, 37049, 2856, NULL, '5.0000', '6.0000', '6.0000', '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 (38830, '2021-12-03', 7671, 37050, 2856, NULL, '1.0000', '15.5000', '15.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 (38831, '2021-12-03', 7824, 37051, 2856, NULL, '1.0000', '8.0000', '8.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 (38832, '2021-12-03', 2315, 37052, 2856, 38451, '8.0000', '0.4740', '0.4740', '0.6000', '0.6000', '6.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38833, '2021-12-03', 7411, 37053, 2856, NULL, '2.0000', '1.3500', '1.3500', '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 (38834, '2021-12-03', 8359, 37054, 2856, NULL, '1.0000', '24.5862', '24.5862', '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 (38835, '2021-12-03', 7713, 37055, 2856, 37845, '4.0000', '0.4202', '0.4202', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38836, '2021-12-03', 7564, 37056, 2856, 30930, '2.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38837, '2021-12-03', 1760, 37057, 2856, 39629, '4.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38838, '2021-12-03', 7544, 37058, 2856, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (38839, '2021-12-03', 8203, 37059, 2856, NULL, '4.0000', '1.0075', '1.0075', '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 (38840, '2021-12-03', 7674, 37060, 2856, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '95.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38841, '2021-12-03', 7672, 37061, 2856, NULL, '1.0000', '1.0200', '1.0200', '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 (38842, '2021-12-03', 7867, 37062, 2856, 39602, '3.0000', '2.1368', '2.1368', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38843, '2021-12-03', 8408, 37063, 2856, NULL, '1.0000', '43.5700', '43.5700', '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 (38844, '2021-12-03', 7825, 37064, 2856, NULL, '1.0000', '6.5000', '6.5000', '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 (38845, '2021-12-03', 7714, 37065, 2856, 37846, '2.0000', '0.4200', '0.4200', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38846, '2021-12-03', 8608, 37066, 2857, NULL, '1.0000', '0.9000', '0.9000', '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 (38847, '2021-12-03', 2381, 37067, 2857, 25013, '1.0000', '12.4824', '12.4824', '16.0000', '16.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 (38848, '2021-12-03', 2169, 37068, 2857, NULL, '2.0000', '1.1500', '1.1500', '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 (38849, '2021-12-03', 2132, 37069, 2857, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '7.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 (38850, '2021-12-03', 1627, 37070, 2857, 19375, '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 (38851, '2021-12-03', 7886, 37071, 2857, NULL, '2.0000', '14.5000', '14.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 (38852, '2021-12-03', 1574, 37072, 2857, NULL, '2.0000', '1.7001', '1.7001', '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 (38853, '2021-12-03', 8448, 37073, 2857, NULL, '1.0000', '6.8900', '6.8900', '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 (38854, '2021-12-03', 7411, 37074, 2857, NULL, '1.0000', '1.3500', '1.3500', '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 (38855, '2021-12-03', 1837, 37075, 2857, 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 (38856, '2021-12-03', 2288, 37076, 2857, NULL, '1.0000', '7.8600', '7.8600', '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 (38857, '2021-12-03', 8721, 37077, 2857, NULL, '1.0000', '3.0000', '3.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 (38858, '2021-12-03', 8773, 37078, 2857, 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 (38859, '2021-12-03', 8771, 37079, 2857, 42649, '1.0000', '3.4915', '3.4915', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38860, '2021-12-03', 7447, 37080, 2857, NULL, '4.0000', '19.1100', '19.1100', '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 (38861, '2021-12-03', 1665, 37081, 2857, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38862, '2021-12-03', 8638, 37082, 2857, NULL, '1.0000', '0.5100', '0.5100', '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 (38863, '2021-12-03', 1557, 37083, 2857, NULL, '1.0000', '7.6800', '7.6800', '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 (38864, '2021-12-03', 1330, 37084, 2857, 19334, '2.0000', '2.8000', '2.8000', '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 (38865, '2021-12-03', 8208, 37085, 2857, NULL, '2.0000', '33.0000', '33.0000', '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 (38866, '2021-12-03', 1807, 37086, 2857, NULL, '3.0000', '41.5000', '41.5000', '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 (38867, '2021-12-03', 7317, 37087, 2857, NULL, '1.0000', '19.5500', '19.5500', '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 (38868, '2021-12-03', 7947, 37088, 2858, NULL, '1.0000', '14.4400', '14.4400', '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 (38869, '2021-12-03', 8763, 37089, 2858, 42869, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38870, '2021-12-03', 2623, 37090, 2859, NULL, '1.0000', '0.6000', '0.6000', '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 (38871, '2021-12-03', 2959, 37091, 2860, 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 (38872, '2021-12-03', 9533, 37092, 2860, 40120, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38873, '2021-12-03', 2320, 37093, 2860, 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 (38874, '2021-12-03', 7950, 37094, 2860, NULL, '2.0000', '2.4000', '2.4000', '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 (38875, '2021-12-04', 1573, 37095, 2861, 9746, '-5.0000', '29.9042', '29.9042', '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 (38876, '2021-12-04', 1573, 37095, 2861, NULL, '6.0000', '29.9042', '29.9042', '30.0000', '30.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 (38877, '2021-12-04', 2274, 37096, 2861, 19250, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '0.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 (38878, '2021-12-04', 2331, 37097, 2861, 3834, '-6.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 (38879, '2021-12-04', 2331, 37097, 2861, NULL, '7.0000', '12.0700', '12.0700', '16.0000', '16.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 (38880, '2021-12-04', 1779, 37098, 2861, 4898, '-4.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 (38881, '2021-12-04', 1779, 37098, 2861, NULL, '5.0000', '90.0000', '90.0000', '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 (38882, '2021-12-04', 1943, 37099, 2861, 5594, '-1.0000', '5.0000', '5.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 (38883, '2021-12-04', 1943, 37099, 2861, NULL, '2.0000', '5.0000', '5.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 (38884, '2021-12-04', 9089, 37100, 2861, NULL, '1.0000', '3.8000', '3.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 (38885, '2021-12-04', 2405, 37101, 2861, 4452, '-7.0000', '1.2000', '1.2000', '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 (38886, '2021-12-04', 2405, 37101, 2861, NULL, '12.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (38887, '2021-12-04', 2825, 37102, 2861, NULL, '1.0000', '12.0000', '12.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 (38888, '2021-12-04', 1910, 37103, 2861, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '37.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 (38889, '2021-12-04', 2169, 37104, 2861, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '10.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 (38890, '2021-12-04', 1581, 37105, 2861, 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 (38891, '2021-12-04', 2887, 37106, 2861, NULL, '1.0000', '10.5000', '10.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 (38892, '2021-12-04', 1409, 37107, 2861, 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 (38893, '2021-12-04', 1602, 37108, 2861, 5897, '-56.0000', '6.7859', '6.7859', '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 (38894, '2021-12-04', 1602, 37108, 2861, NULL, '57.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38895, '2021-12-04', 3081, 37109, 2861, 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 (38896, '2021-12-04', 1637, 37110, 2861, 3210, '-2.0000', '10.2000', '10.2000', '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 (38897, '2021-12-04', 1637, 37110, 2861, NULL, '3.0000', '10.2000', '10.2000', '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 (38898, '2021-12-04', 2671, 37111, 2861, 11761, '-1.0000', '28.8900', '28.8900', '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 (38899, '2021-12-04', 2671, 37111, 2861, NULL, '2.0000', '28.8900', '28.8900', '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 (38900, '2021-12-04', 2491, 37112, 2861, 6228, '-17.0000', '12.2000', '12.2000', '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 (38901, '2021-12-04', 2491, 37112, 2861, NULL, '18.0000', '12.2000', '12.2000', '17.0000', '17.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 (38902, '2021-12-04', 1812, 37113, 2861, 8224, '-39.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 (38903, '2021-12-04', 1812, 37113, 2861, NULL, '40.0000', '7.8900', '7.8900', '10.5000', '10.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 (38904, '2021-12-04', 8765, 37114, 2861, 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 (38905, '2021-12-04', 1528, 37115, 2861, NULL, '3.0000', '38.6400', '38.6400', '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 (38906, '2021-12-04', 1575, 37116, 2861, 7594, '-2.0000', '66.8966', '66.8966', '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 (38907, '2021-12-04', 1575, 37116, 2861, NULL, '3.0000', '66.8966', '66.8966', '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 (38908, '2021-12-04', 2366, 37117, 2861, 3833, '-25.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 (38909, '2021-12-04', 2366, 37117, 2861, NULL, '26.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-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 (38910, '2021-12-04', 2272, 37118, 2861, 2932, '-11.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 (38911, '2021-12-04', 2272, 37118, 2861, NULL, '13.0000', '5.5000', '5.5000', '7.5000', '7.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 (38912, '2021-12-04', 1868, 37119, 2861, 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 (38913, '2021-12-04', 8677, 37120, 2861, NULL, '1.0000', '1.2800', '1.2800', '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 (38914, '2021-12-04', 2411, 37121, 2861, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.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 (38915, '2021-12-04', 1695, 37122, 2861, 12925, '-4.0000', '15.5000', '15.5000', '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 (38916, '2021-12-04', 1695, 37122, 2861, NULL, '5.0000', '15.5000', '15.5000', '20.0000', '20.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 (38917, '2021-12-04', 2252, 37123, 2861, 2789, '-15.0000', '9.5000', '9.5000', '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 (38918, '2021-12-04', 2252, 37123, 2861, NULL, '16.0000', '9.5000', '9.5000', '16.0000', '16.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 (38919, '2021-12-04', 1793, 37124, 2861, 18917, '1.0000', '15.3000', '15.3000', '20.0000', '20.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 (38920, '2021-12-04', 1501, 37125, 2862, 22242, '2.0000', '2.0500', '2.0500', '3.0000', '3.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 (38921, '2021-12-04', 2342, 37126, 2862, 3845, '-47.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 (38922, '2021-12-04', 2342, 37126, 2862, NULL, '49.0000', '1.8600', '1.8600', '2.5000', '2.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38923, '2021-12-04', 1812, 37127, 2862, 8224, '-40.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 (38924, '2021-12-04', 1812, 37127, 2862, NULL, '41.0000', '7.8900', '7.8900', '10.5000', '10.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 (38925, '2021-12-04', 2506, 37128, 2862, 18839, '1.0000', '3.4900', '3.4900', '5.0000', '5.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 (38926, '2021-12-04', 1602, 37129, 2862, 5897, '-57.0000', '6.7859', '6.7859', '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 (38927, '2021-12-04', 1602, 37129, 2862, NULL, '58.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38928, '2021-12-04', 1856, 37130, 2862, 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 (38929, '2021-12-04', 2237, 37131, 2862, 2781, '-19.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 (38930, '2021-12-04', 2237, 37131, 2862, NULL, '20.0000', '1.0600', '1.0600', '2.0000', '2.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 (38931, '2021-12-04', 1708, 37132, 2862, 10382, '-5.0000', '20.1900', '20.1900', '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 (38932, '2021-12-04', 1708, 37132, 2862, NULL, '6.0000', '20.1900', '20.1900', '27.0000', '27.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 (38933, '2021-12-04', 1622, 37133, 2862, NULL, '2.0000', '44.8492', '44.8492', '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 (38934, '2021-12-04', 2327, 37134, 2862, 5083, '-22.0000', '4.5000', '4.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 (38935, '2021-12-04', 2327, 37134, 2862, NULL, '32.0000', '4.5000', '4.5000', '5.0000', '5.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38936, '2021-12-04', 1950, 37135, 2862, 18848, '1.0000', '-13.5726', '-13.5726', '5.0000', '5.0000', '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 (38937, '2021-12-04', 1947, 37136, 2862, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '54.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 (38938, '2021-12-04', 2317, 37137, 2862, 3473, '1.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 (38939, '2021-12-04', 2187, 37138, 2862, 7755, '-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 (38940, '2021-12-04', 2187, 37138, 2862, 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 (38941, '2021-12-04', 2778, 37139, 2862, 16131, '1.0000', '89.4000', '89.4000', '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 (38942, '2021-12-04', 1356, 37140, 2862, 252, '1.0000', '51.9800', '51.9800', '80.0000', '80.0000', '0.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 (38943, '2021-12-04', 1846, 37141, 2862, 12032, '-9.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 (38944, '2021-12-04', 1846, 37141, 2862, NULL, '10.0000', '12.0000', '12.0000', '16.0000', '16.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 (38945, '2021-12-04', 1300, 37142, 2862, 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 (38946, '2021-12-04', 1905, 37143, 2862, 5443, '-7.0000', '0.4000', '0.4000', '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 (38947, '2021-12-04', 1905, 37143, 2862, NULL, '8.0000', '0.4000', '0.4000', '1.0000', '1.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 (38948, '2021-12-04', 2698, 37144, 2862, NULL, '1.0000', '36.8600', '36.8600', '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 (38949, '2021-12-04', 2762, 37145, 2862, 20706, '1.0000', '7.1000', '7.1000', '9.5000', '9.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 (38950, '2021-12-04', 2354, 37146, 2862, 18836, '1.0000', '4.6000', '4.6000', '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 (38951, '2021-12-04', 9631, 37147, 2862, NULL, '1.0000', '7.0000', '7.0000', '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 (38952, '2021-12-04', 2109, 37148, 2862, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '97.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 (38953, '2021-12-04', 9459, 37149, 2862, NULL, '2.0000', '3.0000', '3.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 (38954, '2021-12-04', 1880, 37150, 2862, 22270, '1.0000', '4.6000', '4.6000', '6.0700', '6.0700', '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 (38955, '2021-12-04', 1371, 37151, 2862, 10169, '1.0000', '5.5000', '5.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 (38956, '2021-12-04', 1912, 37152, 2862, 20584, '2.0000', '0.3200', '0.3200', '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 (38957, '2021-12-04', 1667, 37153, 2862, 9745, '-31.0000', '5.9400', '5.9400', '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 (38958, '2021-12-04', 1667, 37153, 2862, NULL, '32.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38959, '2021-12-04', 2352, 37154, 2862, 3855, '-30.0000', '20.0000', '20.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 (38960, '2021-12-04', 2352, 37154, 2862, NULL, '40.0000', '20.0000', '20.0000', '3.5000', '3.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 (38961, '2021-12-04', 2058, 37155, 2862, 7512, '-2.0000', '10.0000', '10.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 (38962, '2021-12-04', 2058, 37155, 2862, NULL, '3.0000', '10.0000', '10.0000', '40.0000', '40.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 (38963, '2021-12-04', 1867, 37156, 2862, NULL, '1.0000', '1.0500', '1.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 (38964, '2021-12-04', 1687, 37157, 2862, 5785, '-16.0000', '165.9024', '165.9024', '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 (38965, '2021-12-04', 1687, 37157, 2862, NULL, '17.0000', '165.9024', '165.9024', '16.0000', '16.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 (38966, '2021-12-04', 2216, 37158, 2862, 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 (38967, '2021-12-04', 1602, 37159, 2862, 5897, '-57.0000', '6.7859', '6.7859', '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 (38968, '2021-12-04', 1602, 37159, 2862, NULL, '58.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38969, '2021-12-04', 2699, 37160, 2862, 12529, '-21.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 (38970, '2021-12-04', 2699, 37160, 2862, NULL, '22.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38971, '2021-12-04', 2169, 37161, 2863, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '9.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 (38972, '2021-12-04', 9634, 37162, 2863, 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 (38973, '2021-12-04', 2142, 37163, 2863, 13718, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38974, '2021-12-04', 1630, 37164, 2863, 491, '1.0000', '66.3608', '66.3608', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 41);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38975, '2021-12-04', 9160, 37165, 2863, NULL, '1.0000', '15.0000', '15.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 (38976, '2021-12-04', 2003, 37166, 2863, NULL, '2.0000', '4.0000', '4.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 (38977, '2021-12-04', 7318, 37167, 2863, NULL, '1.0000', '13.4400', '13.4400', '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 (38978, '2021-12-04', 9084, 37168, 2863, NULL, '5.0000', '9.1000', '9.1000', '12.0000', '12.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 (38979, '2021-12-04', 9416, 37169, 2863, 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 (38980, '2021-12-04', 9577, 37170, 2863, NULL, '2.0000', '0.3200', '0.3200', '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 (38981, '2021-12-04', 1665, 37171, 2863, 3235, '-40.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 (38982, '2021-12-04', 1665, 37171, 2863, NULL, '43.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (38983, '2021-12-04', 2135, 37172, 2863, 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 (38984, '2021-12-04', 1452, 37173, 2863, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38985, '2021-12-04', 2351, 37174, 2863, 18808, '1.0000', '17.7000', '17.7000', '24.0000', '24.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 (38986, '2021-12-04', 1839, 37175, 2863, 8734, '-15.0000', '6.1500', '6.1500', '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 (38987, '2021-12-04', 1839, 37175, 2863, NULL, '16.0000', '6.1500', '6.1500', '9.0000', '9.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 (38988, '2021-12-04', 2912, 37176, 2863, 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 (38989, '2021-12-04', 1912, 37177, 2863, NULL, '2.0000', '0.3200', '0.3200', '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 (38990, '2021-12-04', 1699, 37178, 2864, NULL, '1.0000', '3.2000', '3.2000', '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 (38991, '2021-12-04', 8208, 37179, 2864, NULL, '2.0000', '33.0000', '33.0000', '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 (38992, '2021-12-04', 1841, 37180, 2864, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38993, '2021-12-04', 1912, 37181, 2864, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38994, '2021-12-04', 2758, 37182, 2864, 34623, '1.0000', '5.4000', '5.4000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38995, '2021-12-04', 2068, 37183, 2864, 42065, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38996, '2021-12-04', 1916, 37184, 2864, 34640, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38997, '2021-12-04', 1369, 37185, 2864, 19356, '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 (38998, '2021-12-04', 7342, 37186, 2864, NULL, '1.0000', '15.6000', '15.6000', '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 (38999, '2021-12-04', 7918, 37187, 2864, 42833, '1.0000', '11.0875', '11.0875', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39000, '2021-12-04', 2435, 37188, 2864, 39979, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39001, '2021-12-04', 2916, 37189, 2864, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39002, '2021-12-04', 7671, 37190, 2864, NULL, '1.0000', '15.5000', '15.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 (39003, '2021-12-04', 1807, 37191, 2864, NULL, '1.0000', '41.5000', '41.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 (39004, '2021-12-04', 2293, 37192, 2864, NULL, '2.0000', '1.4400', '1.4400', '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 (39005, '2021-12-04', 1580, 37193, 2864, 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 (39006, '2021-12-04', 9399, 37194, 2864, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39007, '2021-12-04', 9416, 37195, 2864, 42920, '1.0000', '5.8888', '5.8888', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39008, '2021-12-04', 1651, 37196, 2864, 41407, '1.0000', '8.4739', '8.4739', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39009, '2021-12-04', 8638, 37197, 2864, NULL, '1.0000', '0.5100', '0.5100', '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 (39010, '2021-12-04', 1610, 37198, 2864, 19392, '1.0000', '90.0000', '90.0000', '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 (39011, '2021-12-04', 1346, 37199, 2864, 42807, '6.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39012, '2021-12-04', 1409, 37200, 2864, NULL, '1.0000', '13.5000', '13.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 (39013, '2021-12-04', 8208, 37201, 2864, NULL, '7.0000', '33.0000', '33.0000', '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 (39014, '2021-12-04', 1677, 37202, 2864, 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 (39015, '2021-12-04', 2491, 37203, 2864, 42551, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39016, '2021-12-04', 2136, 37204, 2864, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39017, '2021-12-04', 1450, 37205, 2864, 43237, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39018, '2021-12-04', 8775, 37206, 2864, 42910, '1.0000', '2.5174', '2.5174', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39019, '2021-12-04', 8746, 37207, 2864, 42913, '1.0000', '3.0035', '3.0035', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39020, '2021-12-04', 2259, 37208, 2865, NULL, '1.0000', '20.0000', '20.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 (39021, '2021-12-04', 2293, 37209, 2865, NULL, '2.0000', '1.4400', '1.4400', '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 (39022, '2021-12-04', 9480, 37210, 2865, 32540, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39023, '2021-12-04', 9683, 37211, 2866, 42921, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39024, '2021-12-04', 1339, 37212, 2867, NULL, '1.0000', '1.4463', '1.4463', '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 (39025, '2021-12-04', 1622, 37213, 2868, 8739, '-2.0000', '44.8492', '44.8492', '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 (39026, '2021-12-04', 1622, 37213, 2868, NULL, '4.0000', '44.8492', '44.8492', '32.0000', '32.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 (39027, '2021-12-04', 2352, 37214, 2868, 3855, '-40.0000', '20.0000', '20.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 (39028, '2021-12-04', 2352, 37214, 2868, NULL, '50.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39029, '2021-12-04', 1394, 37215, 2868, 22358, '1.0000', '8.1700', '8.1700', '10.5000', '10.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 (39030, '2021-12-04', 2221, 37216, 2869, 4154, '-20.0000', '14.4737', '14.4737', '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 (39031, '2021-12-04', 2221, 37216, 2869, NULL, '21.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39032, '2021-12-04', 2699, 37217, 2870, 12529, '-22.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 (39033, '2021-12-04', 2699, 37217, 2870, NULL, '23.0000', '3.0000', '3.0000', '4.5000', '4.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 (39034, '2021-12-04', 1493, 37218, 2870, 9747, '-8.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 (39035, '2021-12-04', 1493, 37218, 2870, NULL, '9.0000', '1.5425', '1.5425', '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 (39036, '2021-12-04', 2762, 37219, 2870, 20706, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '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 (39037, '2021-12-04', 1809, 37220, 2871, 7386, '-3.0000', '9.6000', '9.6000', '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 (39038, '2021-12-04', 1809, 37220, 2871, NULL, '4.0000', '9.6000', '9.6000', '13.0000', '13.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 (39039, '2021-12-04', 2379, 37221, 2872, 4032, '-30.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 (39040, '2021-12-04', 2379, 37221, 2872, NULL, '31.0000', '1.5900', '1.5900', '2.5000', '2.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 (39041, '2021-12-04', 1905, 37222, 2872, 5443, '-8.0000', '0.4000', '0.4000', '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 (39042, '2021-12-04', 1905, 37222, 2872, NULL, '9.0000', '0.4000', '0.4000', '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 (39043, '2021-12-04', 2643, 37223, 2873, 43393, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39044, '2021-12-04', 9445, 37224, 2873, 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 (39045, '2021-12-04', 7675, 37225, 2873, NULL, '1.0000', '11.4300', '11.4300', '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 (39046, '2021-12-04', 8135, 37226, 2873, NULL, '1.0000', '13.9000', '13.9000', '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 (39047, '2021-12-04', 9423, 37227, 2873, NULL, '1.0000', '1.6000', '1.6000', '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 (39048, '2021-12-04', 7547, 37228, 2873, NULL, '5.0000', '0.0000', '0.0000', '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 (39049, '2021-12-04', 7490, 37229, 2873, NULL, '5.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-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 (39050, '2021-12-04', 7673, 37230, 2873, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39051, '2021-12-04', 7514, 37231, 2873, NULL, '1.0000', '12.9983', '12.9983', '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 (39052, '2021-12-04', 8063, 37232, 2873, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39053, '2021-12-04', 7715, 37233, 2873, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39054, '2021-12-04', 2955, 37234, 2873, NULL, '1.0000', '4.8000', '4.8000', '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 (39055, '2021-12-04', 7457, 37235, 2873, 43105, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39056, '2021-12-04', 8011, 37236, 2873, NULL, '1.0000', '0.9500', '0.9500', '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 (39057, '2021-12-04', 8083, 37237, 2873, NULL, '1.0000', '0.7700', '0.7700', '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 (39058, '2021-12-04', 7967, 37238, 2873, 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 (39059, '2021-12-04', 9667, 37239, 2873, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '12.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39060, '2021-12-04', 2012, 37240, 2873, 42792, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39061, '2021-12-04', 7641, 37241, 2873, NULL, '1.0000', '-7.4783', '-7.4783', '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 (39062, '2021-12-04', 9214, 37242, 2873, 43367, '1.0000', '9.5065', '9.5065', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39063, '2021-12-04', 7674, 37243, 2873, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '94.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39064, '2021-12-04', 7675, 37244, 2873, NULL, '1.0000', '11.4300', '11.4300', '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 (39065, '2021-12-04', 7641, 37245, 2873, NULL, '1.0000', '-7.4783', '-7.4783', '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 (39066, '2021-12-04', 2363, 37246, 2873, 42406, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39067, '2021-12-04', 8059, 37247, 2873, 40418, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39068, '2021-12-04', 8407, 37248, 2873, NULL, '1.0000', '2.9800', '2.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 (39069, '2021-12-04', 2289, 37249, 2873, 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 (39070, '2021-12-04', 7544, 37250, 2873, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39071, '2021-12-04', 1841, 37251, 2873, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39072, '2021-12-04', 7703, 37252, 2873, NULL, '1.0000', '22.9900', '22.9900', '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 (39073, '2021-12-04', 7657, 37253, 2873, NULL, '1.0000', '5.4700', '5.4700', '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 (39074, '2021-12-04', 2506, 37254, 2873, 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 (39075, '2021-12-04', 8393, 37255, 2873, 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 (39076, '2021-12-04', 8359, 37256, 2873, NULL, '1.0000', '24.5862', '24.5862', '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 (39077, '2021-12-04', 8966, 37257, 2873, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39078, '2021-12-04', 7473, 37258, 2873, NULL, '3.0000', '25.2998', '25.2998', '0.6000', '0.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 (39079, '2021-12-04', 9154, 37259, 2873, NULL, '1.0000', '10.6800', '10.6800', '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 (39080, '2021-12-04', 9320, 37260, 2873, 39643, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39081, '2021-12-04', 7708, 37261, 2873, NULL, '1.0000', '6.1400', '6.1400', '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 (39082, '2021-12-04', 8420, 37262, 2873, 31035, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '7.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39083, '2021-12-04', 7666, 37263, 2873, NULL, '1.0000', '0.4000', '0.4000', '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 (39084, '2021-12-04', 2153, 37264, 2873, 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 (39085, '2021-12-04', 9498, 37265, 2873, NULL, '1.0000', '12.5000', '12.5000', '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 (39086, '2021-12-04', 8765, 37266, 2873, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39087, '2021-12-04', 7370, 37267, 2873, 42427, '1.0000', '12.1100', '12.1100', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39088, '2021-12-04', 8918, 37268, 2873, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39089, '2021-12-04', 7674, 37269, 2873, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '94.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39090, '2021-12-04', 2655, 37270, 2873, 43379, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39091, '2021-12-04', 8600, 37271, 2873, NULL, '1.0000', '0.6300', '0.6300', '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 (39092, '2021-12-04', 8941, 37272, 2873, NULL, '1.0000', '12.0000', '12.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 (39093, '2021-12-04', 7704, 37273, 2873, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39094, '2021-12-04', 7833, 37274, 2873, NULL, '1.0000', '14.0000', '14.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39095, '2021-12-04', 2699, 37275, 2873, 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 (39096, '2021-12-04', 7588, 37276, 2873, NULL, '1.0000', '7.0762', '7.0762', '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 (39097, '2021-12-04', 2906, 37277, 2873, 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 (39098, '2021-12-04', 7473, 37278, 2873, NULL, '3.0000', '25.2998', '25.2998', '0.6000', '0.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 (39099, '2021-12-04', 7967, 37279, 2873, 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 (39100, '2021-12-04', 8596, 37280, 2873, NULL, '1.0000', '17.0000', '17.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 (39101, '2021-12-04', 1841, 37281, 2873, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39102, '2021-12-04', 8702, 37282, 2873, NULL, '1.0000', '3.6700', '3.6700', '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 (39103, '2021-12-04', 2315, 37283, 2873, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39104, '2021-12-04', 1747, 37284, 2874, 43340, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39105, '2021-12-04', 1738, 37285, 2875, 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 (39106, '2021-12-04', 7514, 37286, 2875, 39834, '2.0000', '2.2500', '2.2500', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39107, '2021-12-04', 2167, 37287, 2875, 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 (39108, '2021-12-04', 9577, 37288, 2875, NULL, '1.0000', '0.3200', '0.3200', '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 (39109, '2021-12-04', 2169, 37289, 2875, NULL, '1.0000', '1.1500', '1.1500', '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 (39110, '2021-12-04', 8208, 37290, 2875, NULL, '6.0000', '33.0000', '33.0000', '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 (39111, '2021-12-04', 1519, 37291, 2875, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39112, '2021-12-04', 8033, 37292, 2875, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39113, '2021-12-04', 2167, 37293, 2875, 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 (39114, '2021-12-04', 2260, 37294, 2875, 37790, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39115, '2021-12-04', 2242, 37295, 2875, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39116, '2021-12-04', 9577, 37296, 2875, NULL, '1.0000', '0.3200', '0.3200', '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 (39117, '2021-12-04', 8740, 37297, 2875, 43366, '2.0000', '1.6971', '1.6971', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39118, '2021-12-04', 9577, 37298, 2875, NULL, '2.0000', '0.3200', '0.3200', '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 (39119, '2021-12-04', 7411, 37299, 2875, NULL, '1.0000', '1.3500', '1.3500', '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 (39120, '2021-12-04', 2360, 37300, 2875, 19866, '1.0000', '0.5200', '0.5200', '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 (39121, '2021-12-04', 2360, 37300, 2875, 19867, '5.0000', '0.5200', '0.5200', '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 (39122, '2021-12-04', 1876, 37301, 2875, NULL, '1.0000', '22.8000', '22.8000', '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 (39123, '2021-12-04', 7411, 37302, 2875, NULL, '1.0000', '1.3500', '1.3500', '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 (39124, '2021-12-04', 1641, 37303, 2875, 38521, '2.0000', '1.9923', '1.9923', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39125, '2021-12-04', 8638, 37304, 2875, NULL, '1.0000', '0.5100', '0.5100', '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 (39126, '2021-12-04', 1665, 37305, 2875, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39127, '2021-12-04', 2135, 37306, 2875, 18930, '1.0000', '2.4732', '2.4732', '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 (39128, '2021-12-04', 9337, 37307, 2875, NULL, '2.0000', '5.7200', '5.7200', '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 (39129, '2021-12-04', 2699, 37308, 2875, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39130, '2021-12-04', 1499, 37309, 2875, 42841, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '13.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39131, '2021-12-04', 2821, 37310, 2875, 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 (39132, '2021-12-04', 2352, 37311, 2875, NULL, '1.0000', '59.2000', '59.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 (39133, '2021-12-04', 8608, 37312, 2875, NULL, '1.0000', '0.9000', '0.9000', '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 (39134, '2021-12-04', 7506, 37313, 2875, NULL, '1.0000', '15.0000', '15.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 (39135, '2021-12-04', 2109, 37314, 2875, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '26.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 (39136, '2021-12-04', 9577, 37315, 2875, NULL, '4.0000', '0.3200', '0.3200', '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 (39137, '2021-12-04', 2297, 37316, 2875, 39882, '1.0000', '6.4800', '6.4800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39138, '2021-12-04', 2237, 37317, 2875, NULL, '1.0000', '-329.8285', '-329.8285', '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 (39139, '2021-12-04', 2289, 37318, 2875, 42836, '9.0000', '0.3186', '0.3186', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39140, '2021-12-04', 1840, 37319, 2875, 42569, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '33.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39141, '2021-12-04', 1651, 37320, 2875, NULL, '1.0000', '8.4739', '8.4739', '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 (39142, '2021-12-04', 2083, 37321, 2875, 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 (39143, '2021-12-04', 7743, 37322, 2875, NULL, '1.0000', '7.3900', '7.3900', '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 (39144, '2021-12-04', 7638, 37323, 2875, 39773, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39145, '2021-12-04', 2418, 37324, 2876, 39981, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39146, '2021-12-04', 8746, 37325, 2876, 43354, '1.0000', '2.9988', '2.9988', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39147, '2021-12-04', 2428, 37326, 2876, NULL, '1.0000', '11.0000', '11.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 (39148, '2021-12-04', 2280, 37327, 2876, NULL, '2.0000', '-177.9360', '-177.9360', '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 (39149, '2021-12-04', 1706, 37328, 2876, NULL, '1.0000', '13.7192', '13.7192', '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 (39150, '2021-12-04', 1349, 37329, 2876, 24881, '1.0000', '34.2225', '34.2225', '46.0000', '46.0000', '0.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 (39151, '2021-12-04', 1497, 37330, 2876, 37779, '1.0000', '10.2908', '10.2908', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39152, '2021-12-04', 7719, 37331, 2876, NULL, '2.0000', '5.5000', '5.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 (39153, '2021-12-04', 2821, 37332, 2876, 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 (39154, '2021-12-04', 1529, 37333, 2876, NULL, '1.0000', '3.4997', '3.4997', '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 (39155, '2021-12-04', 1856, 37334, 2876, 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 (39156, '2021-12-04', 9177, 37335, 2876, 39826, '3.0000', '0.8556', '0.8556', '1.2000', '1.2000', '37.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39157, '2021-12-04', 1811, 37336, 2876, 42078, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '9.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39158, '2021-12-04', 2848, 37337, 2876, 43230, '1.0000', '16.2000', '16.2000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39159, '2021-12-04', 2135, 37338, 2876, 18930, '1.0000', '2.4732', '2.4732', '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 (39160, '2021-12-04', 9456, 37339, 2877, 33517, '3.0000', '3.3200', '3.3200', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39161, '2021-12-04', 8184, 37340, 2877, NULL, '4.0000', '-0.2804', '-0.2804', '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 (39162, '2021-12-04', 7375, 37341, 2877, NULL, '5.0000', '4.7000', '4.7000', '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 (39163, '2021-12-04', 7743, 37342, 2877, NULL, '2.0000', '419203.7668', '419203.7668', '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 (39164, '2021-12-04', 7601, 37343, 2877, 36074, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39165, '2021-12-04', 9103, 37344, 2877, NULL, '1.0000', '32.6700', '32.6700', '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 (39166, '2021-12-04', 9684, 37345, 2877, 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 (39167, '2021-12-04', 7411, 37346, 2877, NULL, '1.0000', '1.3500', '1.3500', '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 (39168, '2021-12-04', 8677, 37347, 2877, NULL, '2.0000', '1.2300', '1.2300', '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 (39169, '2021-12-04', 2295, 37348, 2877, 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 (39170, '2021-12-04', 7344, 37349, 2877, NULL, '10.0000', '94.2800', '94.2800', '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 (39171, '2021-12-04', 7933, 37350, 2877, 42418, '3.0000', '0.3245', '0.3245', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39172, '2021-12-04', 7933, 37350, 2877, NULL, '2.0000', '0.3245', '0.3245', '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 (39173, '2021-12-04', 7548, 37351, 2877, NULL, '3.0000', '-10.4600', '-10.4600', '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 (39174, '2021-12-04', 7585, 37352, 2877, NULL, '2.0000', '6.2000', '6.2000', '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 (39175, '2021-12-04', 7518, 37353, 2877, NULL, '2.0000', '-67.2578', '-67.2578', '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 (39176, '2021-12-04', 2350, 37354, 2877, NULL, '1.0000', '10.3800', '10.3800', '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 (39177, '2021-12-04', 9496, 37355, 2877, 38422, '2.0000', '3.8800', '3.8800', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39178, '2021-12-04', 9084, 37356, 2877, NULL, '1.0000', '8.9000', '8.9000', '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 (39179, '2021-12-04', 8744, 37357, 2877, 43372, '1.0000', '3.5960', '3.5960', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39180, '2021-12-04', 8413, 37358, 2877, NULL, '2.0000', '3.0000', '3.0000', '110.0000', '110.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 (39181, '2021-12-04', 2315, 37359, 2877, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39182, '2021-12-04', 1846, 37360, 2877, 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 (39183, '2021-12-04', 7447, 37361, 2877, NULL, '10.0000', '19.1100', '19.1100', '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 (39184, '2021-12-04', 8036, 37362, 2877, 43439, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39185, '2021-12-04', 7411, 37363, 2877, NULL, '1.0000', '1.3500', '1.3500', '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 (39186, '2021-12-04', 9684, 37364, 2877, 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 (39187, '2021-12-04', 1841, 37365, 2877, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39188, '2021-12-04', 7544, 37366, 2877, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (39189, '2021-12-04', 2289, 37367, 2877, 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 (39190, '2021-12-04', 9092, 37368, 2877, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '195.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39191, '2021-12-04', 7457, 37369, 2877, 43105, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39192, '2021-12-04', 7713, 37370, 2877, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39193, '2021-12-04', 7354, 37371, 2877, NULL, '1.0000', '18.0000', '18.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 (39194, '2021-12-04', 7755, 37372, 2877, NULL, '1.0000', '82.0200', '82.0200', '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 (39195, '2021-12-04', 7674, 37373, 2877, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '92.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39196, '2021-12-04', 8515, 37374, 2877, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (39197, '2021-12-04', 8154, 37375, 2877, NULL, '1.0000', '12.3000', '12.3000', '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 (39198, '2021-12-04', 3022, 37376, 2877, NULL, '1.0000', '4.1200', '4.1200', '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 (39199, '2021-12-04', 7981, 37377, 2877, NULL, '5.0000', '6.0000', '6.0000', '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 (39200, '2021-12-04', 1914, 37378, 2877, 43092, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39201, '2021-12-04', 8184, 37379, 2877, NULL, '10.0000', '-0.2804', '-0.2804', '3.5000', '3.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 (39202, '2021-12-04', 8166, 37380, 2877, NULL, '1.0000', '4.6000', '4.6000', '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 (39203, '2021-12-04', 8116, 37381, 2877, NULL, '1.0000', '57.5000', '57.5000', '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 (39204, '2021-12-04', 7699, 37382, 2877, 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 (39205, '2021-12-04', 2289, 37383, 2877, 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 (39206, '2021-12-04', 2350, 37384, 2877, NULL, '1.0000', '10.3800', '10.3800', '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 (39207, '2021-12-04', 7518, 37385, 2877, NULL, '1.0000', '-67.2578', '-67.2578', '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 (39208, '2021-12-04', 8052, 37386, 2877, 42015, '1.0000', '27.7481', '27.7481', '42.0000', '42.0000', '6.0000', 1, 0, NULL, 289);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39209, '2021-12-04', 7709, 37387, 2877, NULL, '2.0000', '35.8000', '35.8000', '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 (39210, '2021-12-04', 1338, 37388, 2877, 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 (39211, '2021-12-04', 8194, 37389, 2877, NULL, '1.0000', '31.8200', '31.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 (39212, '2021-12-04', 7993, 37390, 2877, NULL, '1.0000', '41.0000', '41.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39213, '2021-12-04', 7815, 37391, 2878, NULL, '1.0000', '13.0000', '13.0000', '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 (39214, '2021-12-04', 2964, 37392, 2878, NULL, '1.0000', '6.6000', '6.6000', '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 (39215, '2021-12-04', 8759, 37393, 2878, NULL, '1.0000', '5.9600', '5.9600', '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 (39216, '2021-12-04', 7411, 37394, 2878, NULL, '1.0000', '1.3500', '1.3500', '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 (39217, '2021-12-04', 7519, 37395, 2878, NULL, '1.0000', '0.8800', '0.8800', '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 (39218, '2021-12-04', 2169, 37396, 2878, NULL, '2.0000', '1.1500', '1.1500', '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 (39219, '2021-12-04', 9399, 37397, 2879, NULL, '1.0000', '0.4200', '0.4200', '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 (39220, '2021-12-04', 7825, 37398, 2879, NULL, '1.0000', '6.5000', '6.5000', '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 (39221, '2021-12-04', 9092, 37399, 2879, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '193.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39222, '2021-12-04', 2315, 37400, 2879, 38451, '1.0000', '0.4740', '0.4740', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39223, '2021-12-04', 9028, 37401, 2879, NULL, '2.0000', '42.1200', '42.1200', '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 (39224, '2021-12-04', 9638, 37402, 2880, 43014, '1.0000', '34.5000', '34.5000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39225, '2021-12-04', 9577, 37403, 2881, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '85.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39226, '2021-12-04', 2712, 37404, 2881, 42626, '6.0000', '0.2600', '0.2600', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39227, '2021-12-04', 1856, 37405, 2881, 40216, '1.0000', '4.2732', '4.2732', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39228, '2021-12-04', 2160, 37406, 2881, 5819, '1.0000', '2.6000', '2.6000', '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 (39229, '2021-12-04', 1578, 37407, 2881, 9447, '1.0000', '1.9700', '1.9700', '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 (39230, '2021-12-04', 8744, 37408, 2881, 43342, '1.0000', '3.5633', '3.5633', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39231, '2021-12-04', 1840, 37409, 2881, NULL, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39232, '2021-12-04', 2289, 37410, 2881, 40620, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39233, '2021-12-04', 9174, 37411, 2881, 42211, '2.0000', '15.5000', '15.5000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39234, '2021-12-04', 7318, 37412, 2881, 40886, '1.0000', '10.5000', '10.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39235, '2021-12-04', 1349, 37413, 2881, 42982, '1.0000', '34.3411', '34.3411', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39236, '2021-12-04', 2497, 37414, 2881, 42983, '1.0000', '31.2000', '31.2000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39237, '2021-12-04', 2712, 37415, 2881, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39238, '2021-12-04', 1665, 37416, 2881, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39239, '2021-12-04', 1410, 37417, 2881, NULL, '1.0000', '2.2220', '2.2220', '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 (39240, '2021-12-04', 1687, 37418, 2881, NULL, '1.0000', '12.1558', '12.1558', '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 (39241, '2021-12-04', 1867, 37419, 2881, NULL, '1.0000', '10.0599', '10.0599', '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 (39242, '2021-12-04', 2669, 37420, 2881, 38079, '1.0000', '28.6241', '28.6241', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39243, '2021-12-04', 1498, 37421, 2881, 1501, '2.0000', '0.3300', '0.3300', '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 (39244, '2021-12-04', 2660, 37422, 2881, 42944, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39245, '2021-12-04', 2136, 37423, 2881, 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 (39246, '2021-12-04', 2285, 37424, 2881, 43049, '1.0000', '36.5090', '36.5090', '49.0000', '49.0000', '4.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39247, '2021-12-04', 1533, 37425, 2881, 40902, '1.0000', '3.2241', '3.2241', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39248, '2021-12-04', 1645, 37426, 2881, 42976, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39249, '2021-12-04', 2025, 37427, 2881, 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 (39250, '2021-12-04', 1610, 37428, 2881, 29791, '1.0000', '53.0750', '53.0750', '21.5000', '21.5000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39251, '2021-12-04', 1904, 37429, 2881, 37558, '2.0000', '201.4970', '201.4970', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39252, '2021-12-04', 2342, 37430, 2881, 38074, '3.0000', '1.8625', '1.8625', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39253, '2021-12-04', 1337, 37431, 2881, 40900, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39254, '2021-12-04', 2660, 37432, 2881, 42944, '10.0000', '0.7000', '0.7000', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39255, '2021-12-04', 1876, 37433, 2881, 42977, '1.0000', '21.3163', '21.3163', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39256, '2021-12-04', 1499, 37434, 2881, 31996, '4.0000', '0.4100', '0.4100', '0.7000', '0.7000', '26.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39257, '2021-12-04', 9689, 37435, 2881, NULL, '1.0000', '40.1400', '40.1400', '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 (39258, '2021-12-04', 9641, 37436, 2881, 41989, '1.0000', '36.0800', '36.0800', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39259, '2021-12-04', 8124, 37437, 2881, NULL, '1.0000', '8.0000', '8.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 (39260, '2021-12-04', 2240, 37438, 2881, 37556, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39261, '2021-12-04', 2109, 37439, 2881, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39262, '2021-12-04', 2777, 37440, 2881, 34673, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39263, '2021-12-04', 2858, 37441, 2881, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39264, '2021-12-04', 1533, 37442, 2881, 40902, '1.0000', '3.2241', '3.2241', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39265, '2021-12-04', 2272, 37443, 2881, 33235, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39266, '2021-12-04', 2109, 37444, 2881, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39267, '2021-12-04', 7741, 37445, 2881, NULL, '1.0000', '1.2000', '1.2000', '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 (39268, '2021-12-04', 2237, 37446, 2881, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39269, '2021-12-04', 7411, 37447, 2882, NULL, '2.0000', '1.3500', '1.3500', '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 (39270, '2021-12-04', 7666, 37448, 2882, NULL, '1.0000', '10.0000', '10.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 (39271, '2021-12-04', 3058, 37449, 2882, NULL, '1.0000', '4.6750', '4.6750', '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 (39272, '2021-12-04', 7790, 37450, 2882, NULL, '4.0000', '17.0000', '17.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 (39273, '2021-12-05', 1785, 37451, 2883, 40202, '1.0000', '14.3181', '14.3181', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39274, '2021-12-05', 1669, 37452, 2883, 38080, '21.0000', '56.8800', '56.8800', '9.5000', '9.5000', '21.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39275, '2021-12-05', 1384, 37453, 2883, 12391, '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 (39276, '2021-12-05', 2109, 37454, 2883, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '68.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39277, '2021-12-05', 1602, 37455, 2884, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39278, '2021-12-05', 8608, 37456, 2884, NULL, '1.0000', '0.9000', '0.9000', '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 (39279, '2021-12-05', 2379, 37457, 2884, NULL, '1.0000', '1.8000', '1.8000', '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 (39280, '2021-12-05', 1837, 37458, 2884, 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 (39281, '2021-12-05', 1839, 37459, 2884, NULL, '1.0000', '1.8866', '1.8866', '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 (39282, '2021-12-05', 7918, 37460, 2884, 42833, '1.0000', '11.0875', '11.0875', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39283, '2021-12-05', 2004, 37461, 2884, 33374, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39284, '2021-12-05', 2004, 37461, 2884, 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 (39285, '2021-12-05', 7743, 37462, 2884, NULL, '1.0000', '7.3900', '7.3900', '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 (39286, '2021-12-05', 8775, 37463, 2884, 43351, '1.0000', '1.4728', '1.4728', '4.5000', '4.5000', '21.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39287, '2021-12-05', 9683, 37464, 2884, 43362, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39288, '2021-12-05', 8360, 37465, 2884, NULL, '2.0000', '3.5200', '3.5200', '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 (39289, '2021-12-05', 3081, 37466, 2884, 25166, '1.0000', '9.5000', '9.5000', '12.5000', '12.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 (39290, '2021-12-05', 2354, 37467, 2884, NULL, '1.0000', '5.0600', '5.0600', '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 (39291, '2021-12-05', 1917, 37468, 2884, 34657, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39292, '2021-12-05', 1338, 37469, 2884, 18934, '1.0000', '3.7257', '3.7257', '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 (39293, '2021-12-05', 1864, 37470, 2884, 42835, '1.0000', '6.2625', '6.2625', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39294, '2021-12-05', 7459, 37471, 2884, NULL, '3.0000', '-6.1729', '-6.1729', '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 (39295, '2021-12-05', 1839, 37472, 2884, NULL, '1.0000', '1.8866', '1.8866', '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 (39296, '2021-12-05', 2465, 37473, 2884, 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 (39297, '2021-12-05', 1557, 37474, 2884, NULL, '1.0000', '7.6800', '7.6800', '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 (39298, '2021-12-05', 8740, 37475, 2884, 43366, '2.0000', '1.6971', '1.6971', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39299, '2021-12-05', 8608, 37476, 2885, NULL, '1.0000', '0.9000', '0.9000', '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 (39300, '2021-12-05', 7558, 37477, 2885, 39820, '1.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39301, '2021-12-05', 2309, 37478, 2885, 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 (39302, '2021-12-05', 2242, 37479, 2885, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39303, '2021-12-05', 2302, 37480, 2885, 41373, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39304, '2021-12-05', 2169, 37481, 2885, NULL, '1.0000', '1.1500', '1.1500', '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 (39305, '2021-12-05', 1310, 37482, 2885, NULL, '2.0000', '0.3700', '0.3700', '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 (39306, '2021-12-05', 2366, 37483, 2885, NULL, '2.0000', '-17.8500', '-17.8500', '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 (39307, '2021-12-05', 1856, 37484, 2885, 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 (39308, '2021-12-05', 1519, 37485, 2885, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39309, '2021-12-05', 9098, 37486, 2885, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39310, '2021-12-05', 2923, 37487, 2885, 24941, '1.0000', '11.1200', '11.1200', '15.0000', '15.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 (39311, '2021-12-05', 9480, 37488, 2886, 32540, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39312, '2021-12-05', 1651, 37489, 2886, NULL, '1.0000', '8.4739', '8.4739', '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 (39313, '2021-12-05', 2592, 37490, 2886, 38524, '1.0000', '8.0156', '8.0156', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39314, '2021-12-05', 7630, 37491, 2886, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (39315, '2021-12-05', 8200, 37492, 2887, NULL, '1.0000', '629.5726', '629.5726', '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 (39316, '2021-12-05', 7643, 37493, 2887, NULL, '1.0000', '2.1100', '2.1100', '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 (39317, '2021-12-05', 8097, 37494, 2887, 43137, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39318, '2021-12-05', 9028, 37495, 2887, NULL, '1.0000', '42.1200', '42.1200', '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 (39319, '2021-12-05', 9620, 37496, 2887, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39320, '2021-12-05', 8097, 37497, 2887, 43137, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39321, '2021-12-05', 8937, 37498, 2887, NULL, '2.0000', '3.5000', '3.5000', '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 (39322, '2021-12-05', 8858, 37499, 2887, NULL, '2.0000', '27.7076', '27.7076', '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 (39323, '2021-12-05', 8918, 37500, 2887, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39324, '2021-12-05', 7674, 37501, 2887, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '91.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39325, '2021-12-05', 7756, 37502, 2887, NULL, '2.0000', '21.7700', '21.7700', '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 (39326, '2021-12-05', 7482, 37503, 2887, NULL, '4.0000', '2.4981', '2.4981', '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 (39327, '2021-12-05', 2100, 37504, 2887, 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 (39328, '2021-12-05', 7385, 37505, 2887, NULL, '2.0000', '17.6346', '17.6346', '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 (39329, '2021-12-05', 9092, 37506, 2887, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '191.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39330, '2021-12-05', 8067, 37507, 2887, NULL, '1.0000', '29.1700', '29.1700', '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 (39331, '2021-12-05', 7641, 37508, 2887, NULL, '1.0000', '-7.4783', '-7.4783', '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 (39332, '2021-12-05', 7819, 37509, 2887, NULL, '1.0000', '9.5000', '9.5000', '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 (39333, '2021-12-05', 7411, 37510, 2887, NULL, '2.0000', '1.3500', '1.3500', '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 (39334, '2021-12-05', 9094, 37511, 2887, NULL, '1.0000', '6.0000', '6.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 (39335, '2021-12-05', 8619, 37512, 2887, NULL, '1.0000', '17.3900', '17.3900', '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 (39336, '2021-12-05', 7385, 37513, 2887, NULL, '5.0000', '17.6346', '17.6346', '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 (39337, '2021-12-05', 9445, 37514, 2887, 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 (39338, '2021-12-05', 8744, 37515, 2887, 43372, '1.0000', '3.5960', '3.5960', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39339, '2021-12-05', 9202, 37516, 2887, NULL, '1.0000', '3.5000', '3.5000', '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 (39340, '2021-12-05', 7411, 37517, 2887, NULL, '1.0000', '1.3500', '1.3500', '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 (39341, '2021-12-05', 7927, 37518, 2887, 43111, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39342, '2021-12-05', 9092, 37519, 2887, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '192.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39343, '2021-12-05', 7674, 37520, 2887, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '91.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39344, '2021-12-05', 7465, 37521, 2887, 42424, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39345, '2021-12-05', 7709, 37522, 2887, NULL, '2.0000', '35.8000', '35.8000', '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 (39346, '2021-12-05', 9499, 37523, 2887, 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 (39347, '2021-12-05', 7411, 37524, 2887, NULL, '1.0000', '1.3500', '1.3500', '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 (39348, '2021-12-05', 7671, 37525, 2887, NULL, '1.0000', '15.5000', '15.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 (39349, '2021-12-05', 9154, 37526, 2887, NULL, '1.0000', '10.6800', '10.6800', '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 (39350, '2021-12-05', 7713, 37527, 2887, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39351, '2021-12-05', 2104, 37528, 2887, NULL, '1.0000', '0.2000', '0.2000', '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 (39352, '2021-12-05', 8449, 37529, 2887, NULL, '1.0000', '9.5000', '9.5000', '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 (39353, '2021-12-05', 9092, 37530, 2887, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '191.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39354, '2021-12-05', 7588, 37531, 2887, NULL, '1.0000', '7.0762', '7.0762', '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 (39355, '2021-12-05', 7711, 37532, 2887, NULL, '1.0000', '-78.4806', '-78.4806', '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 (39356, '2021-12-05', 7704, 37533, 2887, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39357, '2021-12-05', 7641, 37534, 2887, NULL, '1.0000', '-7.4783', '-7.4783', '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 (39358, '2021-12-05', 7478, 37535, 2887, NULL, '6.0000', '4.0000', '4.0000', '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 (39359, '2021-12-05', 7353, 37536, 2887, NULL, '4.0000', '7078.0785', '7078.0785', '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 (39360, '2021-12-05', 1867, 37537, 2887, 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 (39361, '2021-12-05', 7400, 37538, 2887, NULL, '1.0000', '2.6200', '2.6200', '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 (39362, '2021-12-05', 7401, 37539, 2887, NULL, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39363, '2021-12-05', 7852, 37540, 2887, NULL, '2.0000', '6.1100', '6.1100', '20.5000', '20.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 (39364, '2021-12-05', 9160, 37541, 2887, NULL, '1.0000', '41.6640', '41.6640', '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 (39365, '2021-12-05', 8359, 37542, 2887, NULL, '1.0000', '24.5862', '24.5862', '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 (39366, '2021-12-05', 7743, 37543, 2887, NULL, '4.0000', '419203.7668', '419203.7668', '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 (39367, '2021-12-05', 7954, 37544, 2887, NULL, '4.0000', '24.4161', '24.4161', '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 (39368, '2021-12-05', 8666, 37545, 2887, NULL, '1.0000', '0.4600', '0.4600', '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 (39369, '2021-12-05', 8057, 37546, 2887, NULL, '1.0000', '6.0000', '6.0000', '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 (39370, '2021-12-05', 2363, 37547, 2887, 42406, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39371, '2021-12-05', 9177, 37548, 2887, NULL, '10.0000', '0.8000', '0.8000', '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 (39372, '2021-12-05', 7719, 37549, 2887, NULL, '2.0000', '6.3333', '6.3333', '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 (39373, '2021-12-05', 9686, 37550, 2887, NULL, '1.0000', '13.4900', '13.4900', '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 (39374, '2021-12-05', 7961, 37551, 2888, 39799, '1.0000', '10.5600', '10.5600', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39375, '2021-12-05', 2662, 37552, 2888, 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 (39376, '2021-12-05', 1501, 37553, 2888, NULL, '1.0000', '2.2100', '2.2100', '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 (39377, '2021-12-05', 2287, 37554, 2888, 43279, '2.0000', '1.6790', '1.6790', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39378, '2021-12-05', 9683, 37555, 2888, 43362, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39379, '2021-12-05', 9603, 37556, 2888, 43348, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39380, '2021-12-05', 1310, 37557, 2888, NULL, '1.0000', '0.3700', '0.3700', '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 (39381, '2021-12-05', 2699, 37558, 2888, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39382, '2021-12-05', 2237, 37559, 2888, NULL, '1.0000', '-329.8285', '-329.8285', '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 (39383, '2021-12-05', 2109, 37560, 2888, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '25.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 (39384, '2021-12-05', 7514, 37561, 2888, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39385, '2021-12-05', 9204, 37562, 2888, NULL, '1.0000', '8.1600', '8.1600', '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 (39386, '2021-12-05', 2169, 37563, 2888, NULL, '1.0000', '1.1500', '1.1500', '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 (39387, '2021-12-05', 2699, 37564, 2888, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39388, '2021-12-05', 1810, 37565, 2888, 41386, '1.0000', '8.5104', '8.5104', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39389, '2021-12-05', 2994, 37566, 2888, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39390, '2021-12-05', 2287, 37567, 2888, 43279, '2.0000', '1.6790', '1.6790', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39391, '2021-12-05', 1431, 37568, 2889, NULL, '1.0000', '9.8000', '9.8000', '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 (39392, '2021-12-05', 1310, 37569, 2889, NULL, '2.0000', '0.3700', '0.3700', '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 (39393, '2021-12-05', 7713, 37570, 2889, NULL, '4.0000', '4.4000', '4.4000', '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 (39394, '2021-12-05', 7514, 37571, 2889, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39395, '2021-12-05', 1800, 37572, 2890, 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 (39396, '2021-12-05', 1800, 37572, 2890, NULL, '2.0000', '20.2784', '20.2784', '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 (39397, '2021-12-05', 2135, 37573, 2890, 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 (39398, '2021-12-05', 2169, 37574, 2890, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '8.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 (39399, '2021-12-05', 1910, 37575, 2890, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '36.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 (39400, '2021-12-05', 2280, 37576, 2890, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '30.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39401, '2021-12-05', 2506, 37577, 2890, 18839, '1.0000', '3.4900', '3.4900', '5.0000', '5.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 (39402, '2021-12-05', 3058, 37578, 2890, 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 (39403, '2021-12-05', 2683, 37579, 2890, 12222, '-2.0000', '49.0000', '49.0000', '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 (39404, '2021-12-05', 2683, 37579, 2890, NULL, '3.0000', '49.0000', '49.0000', '70.0000', '70.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 (39405, '2021-12-05', 2858, 37580, 2890, 17772, '-20.0000', '1.0000', '1.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 (39406, '2021-12-05', 2858, 37580, 2890, NULL, '21.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39407, '2021-12-05', 8775, 37581, 2890, NULL, '1.0000', '2.6000', '2.6000', '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 (39408, '2021-12-05', 2643, 37582, 2890, 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 (39409, '2021-12-05', 9160, 37583, 2890, NULL, '1.0000', '15.0000', '15.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 (39410, '2021-12-05', 9634, 37584, 2890, 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 (39411, '2021-12-05', 2401, 37585, 2890, NULL, '1.0000', '2.8000', '2.8000', '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 (39412, '2021-12-05', 1982, 37586, 2890, 33069, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39413, '2021-12-05', 2643, 37587, 2890, 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 (39414, '2021-12-05', 1493, 37588, 2890, 9747, '-9.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 (39415, '2021-12-05', 1493, 37588, 2890, NULL, '10.0000', '1.5425', '1.5425', '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 (39416, '2021-12-05', 2327, 37589, 2890, 5083, '-32.0000', '4.5000', '4.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 (39417, '2021-12-05', 2327, 37589, 2890, NULL, '34.0000', '4.5000', '4.5000', '5.0000', '5.0000', '-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 (39418, '2021-12-05', 2169, 37590, 2890, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '8.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 (39419, '2021-12-05', 8746, 37591, 2890, NULL, '1.0000', '3.1500', '3.1500', '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 (39420, '2021-12-05', 1912, 37592, 2890, 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 (39421, '2021-12-05', 2285, 37593, 2890, 2945, '-20.0000', '35.8000', '35.8000', '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 (39422, '2021-12-05', 2285, 37593, 2890, NULL, '21.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39423, '2021-12-05', 2798, 37594, 2890, 16150, '1.0000', '28.3800', '28.3800', '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 (39424, '2021-12-05', 2135, 37595, 2890, 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 (39425, '2021-12-05', 1905, 37596, 2890, 5443, '-9.0000', '0.4000', '0.4000', '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 (39426, '2021-12-05', 1905, 37596, 2890, NULL, '10.0000', '0.4000', '0.4000', '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 (39427, '2021-12-05', 2712, 37597, 2890, 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 (39428, '2021-12-05', 2266, 37598, 2890, 2801, '-5.0000', '6.4900', '6.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 (39429, '2021-12-05', 2266, 37598, 2890, NULL, '6.0000', '6.4900', '6.4900', '10.0000', '10.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 (39430, '2021-12-05', 1420, 37599, 2890, 20658, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (39431, '2021-12-05', 1822, 37600, 2890, 8225, '-60.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 (39432, '2021-12-05', 1822, 37600, 2890, NULL, '80.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39433, '2021-12-05', 9579, 37601, 2890, 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 (39434, '2021-12-05', 2280, 37602, 2890, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '30.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39435, '2021-12-05', 2618, 37603, 2890, 9836, '-19.0000', '4.1000', '4.1000', '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 (39436, '2021-12-05', 2618, 37603, 2890, NULL, '20.0000', '4.1000', '4.1000', '6.0000', '6.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 (39437, '2021-12-05', 1779, 37604, 2890, 4898, '-5.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 (39438, '2021-12-05', 1779, 37604, 2890, NULL, '7.0000', '90.0000', '90.0000', '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 (39439, '2021-12-05', 1888, 37605, 2890, NULL, '1.0000', '134.8400', '134.8400', '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 (39440, '2021-12-05', 2484, 37606, 2890, 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 (39441, '2021-12-05', 1921, 37607, 2890, 6873, '1.0000', '13.0375', '13.0375', '3.0000', '3.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 (39442, '2021-12-05', 2567, 37608, 2890, 7177, '-1.0000', '33.0000', '33.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 (39443, '2021-12-05', 2567, 37608, 2890, NULL, '2.0000', '33.0000', '33.0000', '38.0000', '38.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 (39444, '2021-12-05', 9563, 37609, 2890, NULL, '1.0000', '5.1000', '5.1000', '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 (39445, '2021-12-05', 7612, 37610, 2891, NULL, '1.0000', '1.1770', '1.1770', '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 (39446, '2021-12-05', 7674, 37611, 2891, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '89.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39447, '2021-12-05', 7542, 37612, 2891, 37849, '1.0000', '4.7100', '4.7100', '5.0300', '5.0300', '3.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39448, '2021-12-05', 9423, 37613, 2891, NULL, '1.0000', '1.6000', '1.6000', '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 (39449, '2021-12-05', 7509, 37614, 2891, 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 (39450, '2021-12-05', 7672, 37615, 2891, NULL, '1.0000', '1.0200', '1.0200', '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 (39451, '2021-12-05', 7666, 37616, 2891, NULL, '1.0000', '0.4000', '0.4000', '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 (39452, '2021-12-05', 9556, 37617, 2891, 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 (39453, '2021-12-05', 7675, 37618, 2891, NULL, '1.0000', '11.4300', '11.4300', '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 (39454, '2021-12-05', 2713, 37619, 2891, 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 (39455, '2021-12-05', 7950, 37620, 2891, NULL, '2.0000', '2.4000', '2.4000', '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 (39456, '2021-12-05', 8134, 37621, 2891, NULL, '1.0000', '5.2600', '5.2600', '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 (39457, '2021-12-05', 9274, 37622, 2891, NULL, '1.0000', '3.1000', '3.1000', '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 (39458, '2021-12-05', 7967, 37623, 2891, 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 (39459, '2021-12-05', 9095, 37624, 2891, NULL, '1.0000', '17.5000', '17.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 (39460, '2021-12-05', 8046, 37625, 2891, 37407, '10.0000', '456.2805', '456.2805', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39461, '2021-12-05', 1598, 37626, 2891, NULL, '1.0000', '2.9300', '2.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 (39462, '2021-12-05', 8657, 37627, 2891, NULL, '1.0000', '6.3869', '6.3869', '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 (39463, '2021-12-05', 8504, 37628, 2891, NULL, '2.0000', '2.5000', '2.5000', '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 (39464, '2021-12-05', 2922, 37629, 2891, NULL, '1.0000', '8.2000', '8.2000', '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 (39465, '2021-12-05', 7558, 37630, 2891, 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 (39466, '2021-12-05', 9399, 37631, 2891, NULL, '1.0000', '0.4200', '0.4200', '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 (39467, '2021-12-05', 7673, 37632, 2891, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39468, '2021-12-05', 9000, 37633, 2891, NULL, '34.0000', '14.7800', '14.7800', '1.0000', '1.0000', '-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 (39469, '2021-12-05', 7638, 37634, 2891, 30222, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39470, '2021-12-05', 7642, 37635, 2891, NULL, '1.0000', '34.9900', '34.9900', '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 (39471, '2021-12-05', 9399, 37636, 2891, NULL, '1.0000', '0.4200', '0.4200', '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 (39472, '2021-12-05', 7518, 37637, 2891, NULL, '1.0000', '-67.2578', '-67.2578', '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 (39473, '2021-12-05', 9620, 37638, 2891, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39474, '2021-12-05', 7709, 37639, 2891, NULL, '2.0000', '35.8000', '35.8000', '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 (39475, '2021-12-05', 7743, 37640, 2891, NULL, '2.0000', '419203.7668', '419203.7668', '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 (39476, '2021-12-05', 7954, 37641, 2891, NULL, '4.0000', '24.4161', '24.4161', '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 (39477, '2021-12-05', 1816, 37642, 2892, NULL, '1.0000', '18.2300', '18.2300', '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 (39478, '2021-12-05', 1386, 37643, 2892, 22316, '1.0000', '4.5000', '4.5000', '6.0000', '6.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 (39479, '2021-12-05', 2864, 37644, 2892, 17587, '10.0000', '1.5198', '1.5198', '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 (39480, '2021-12-05', 2864, 37644, 2892, NULL, '10.0000', '1.5198', '1.5198', '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 (39481, '2021-12-05', 1904, 37645, 2892, 5442, '-16.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 (39482, '2021-12-05', 1904, 37645, 2892, NULL, '17.0000', '0.3200', '0.3200', '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 (39483, '2021-12-05', 2699, 37646, 2892, 12529, '-23.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 (39484, '2021-12-05', 2699, 37646, 2892, NULL, '24.0000', '3.0000', '3.0000', '4.5000', '4.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 (39485, '2021-12-05', 2662, 37647, 2892, 12036, '-10.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 (39486, '2021-12-05', 2662, 37647, 2892, NULL, '11.0000', '4.5000', '4.5000', '6.0000', '6.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 (39487, '2021-12-05', 1307, 37648, 2892, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.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 (39488, '2021-12-05', 1950, 37649, 2892, 18848, '1.0000', '-13.5726', '-13.5726', '5.0000', '5.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 (39489, '2021-12-05', 1602, 37650, 2892, 5897, '-59.0000', '6.7859', '6.7859', '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 (39490, '2021-12-05', 1602, 37650, 2892, NULL, '60.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39491, '2021-12-05', 9639, 37651, 2892, NULL, '1.0000', '28.7900', '28.7900', '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 (39492, '2021-12-05', 2660, 37652, 2892, 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 (39493, '2021-12-05', 1666, 37653, 2892, 3236, '-13.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 (39494, '2021-12-05', 1666, 37653, 2892, NULL, '14.0000', '2.7100', '2.7100', '3.5000', '3.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 (39495, '2021-12-05', 9461, 37654, 2892, NULL, '1.0000', '1.6000', '1.6000', '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 (39496, '2021-12-05', 1610, 37655, 2892, 8730, '-4.0000', '15.7500', '15.7500', '21.5000', '21.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 (39497, '2021-12-05', 1610, 37655, 2892, NULL, '5.0000', '15.7500', '15.7500', '21.5000', '21.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 (39498, '2021-12-05', 2167, 37656, 2892, 17165, '-25.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 (39499, '2021-12-05', 2167, 37656, 2892, NULL, '26.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (39500, '2021-12-05', 1646, 37657, 2892, 3239, '-9.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 (39501, '2021-12-05', 1646, 37657, 2892, NULL, '10.0000', '4.5300', '4.5300', '7.5000', '7.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 (39502, '2021-12-05', 7744, 37658, 2892, 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 (39503, '2021-12-05', 8198, 37659, 2892, NULL, '1.0000', '6.2900', '6.2900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39504, '2021-12-05', 1871, 37660, 2892, 469, '10.0000', '24.5246', '24.5246', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39505, '2021-12-05', 7376, 37661, 2892, NULL, '2.0000', '141.7100', '141.7100', '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 (39506, '2021-12-05', 2762, 37662, 2892, 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 (39507, '2021-12-05', 2240, 37663, 2892, 13712, '-2.0000', '36.9100', '36.9100', '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 (39508, '2021-12-05', 2240, 37663, 2892, NULL, '3.0000', '36.9100', '36.9100', '44.0000', '44.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 (39509, '2021-12-05', 1825, 37664, 2892, 11265, '-4.0000', '4.8000', '4.8000', '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 (39510, '2021-12-05', 1825, 37664, 2892, NULL, '5.0000', '4.8000', '4.8000', '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 (39511, '2021-12-05', 1975, 37665, 2892, NULL, '1.0000', '9.5000', '9.5000', '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 (39512, '2021-12-05', 2655, 37666, 2892, 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 (39513, '2021-12-05', 7715, 37667, 2892, NULL, '1.0000', '1.8900', '1.8900', '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 (39514, '2021-12-05', 1644, 37668, 2892, 3216, '-1.0000', '33.8200', '33.8200', '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 (39515, '2021-12-05', 1644, 37668, 2892, NULL, '2.0000', '33.8200', '33.8200', '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 (39516, '2021-12-05', 9672, 37669, 2892, NULL, '1.0000', '2.0500', '2.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 (39517, '2021-12-05', 8085, 37670, 2893, NULL, '3.0000', '14.0000', '14.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 (39518, '2021-12-05', 2284, 37671, 2893, 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 (39519, '2021-12-05', 2104, 37672, 2893, NULL, '1.0000', '0.2000', '0.2000', '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 (39520, '2021-12-05', 9474, 37673, 2894, 32214, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39521, '2021-12-05', 1888, 37674, 2894, 42105, '1.0000', '16.4667', '16.4667', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39522, '2021-12-05', 7859, 37675, 2894, NULL, '1.0000', '3.6000', '3.6000', '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 (39523, '2021-12-05', 2169, 37676, 2895, NULL, '1.0000', '1.1500', '1.1500', '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 (39524, '2021-12-05', 2281, 37677, 2896, 2941, '-20.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 (39525, '2021-12-05', 2281, 37677, 2896, NULL, '22.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39526, '2021-12-05', 1904, 37678, 2896, 5442, '-17.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 (39527, '2021-12-05', 1904, 37678, 2896, NULL, '18.0000', '0.3200', '0.3200', '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 (39528, '2021-12-05', 2163, 37679, 2896, 1378, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '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 (39529, '2021-12-05', 2660, 37680, 2896, NULL, '10.0000', '0.7000', '0.7000', '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 (39530, '2021-12-05', 1585, 37681, 2896, 7602, '-3.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 (39531, '2021-12-05', 1585, 37681, 2896, NULL, '4.0000', '13.0000', '13.0000', '17.5000', '17.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 (39532, '2021-12-05', 1630, 37682, 2896, 491, '1.0000', '66.3608', '66.3608', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 41);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39533, '2021-12-05', 1835, 37683, 2896, 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 (39534, '2021-12-06', 1665, 37684, 2897, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39535, '2021-12-06', 2244, 37685, 2897, 42803, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39536, '2021-12-06', 3058, 37686, 2897, NULL, '1.0000', '4.6750', '4.6750', '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 (39537, '2021-12-06', 2681, 37687, 2897, 42104, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39538, '2021-12-06', 2221, 37688, 2897, 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 (39539, '2021-12-06', 1704, 37689, 2897, 34618, '1.0000', '30.1576', '30.1576', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39540, '2021-12-06', 1610, 37690, 2897, 19392, '1.0000', '90.0000', '90.0000', '21.5000', '21.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 (39541, '2021-12-06', 7318, 37691, 2897, NULL, '1.0000', '13.4400', '13.4400', '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 (39542, '2021-12-06', 2320, 37692, 2897, 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 (39543, '2021-12-06', 7358, 37693, 2897, NULL, '1.0000', '18.8000', '18.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 (39544, '2021-12-06', 2699, 37694, 2897, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39545, '2021-12-06', 2254, 37695, 2897, 42099, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39546, '2021-12-06', 1532, 37696, 2897, NULL, '3.0000', '7.4815', '7.4815', '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 (39547, '2021-12-06', 1908, 37697, 2897, NULL, '1.0000', '1.7500', '1.7500', '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 (39548, '2021-12-06', 3058, 37698, 2897, NULL, '1.0000', '4.6750', '4.6750', '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 (39549, '2021-12-06', 8638, 37699, 2897, NULL, '1.0000', '0.5100', '0.5100', '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 (39550, '2021-12-06', 1831, 37700, 2897, 42571, '1.0000', '16.2420', '16.2420', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39551, '2021-12-06', 2221, 37701, 2897, 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 (39552, '2021-12-06', 1854, 37702, 2897, 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 (39553, '2021-12-06', 2169, 37703, 2897, NULL, '1.0000', '1.1500', '1.1500', '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 (39554, '2021-12-06', 2726, 37704, 2897, NULL, '1.0000', '2.6400', '2.6400', '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 (39555, '2021-12-06', 1912, 37705, 2897, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39556, '2021-12-06', 1831, 37706, 2897, 42571, '1.0000', '16.2420', '16.2420', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39557, '2021-12-06', 1871, 37707, 2897, NULL, '1.0000', '2.9308', '2.9308', '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 (39558, '2021-12-06', 8454, 37708, 2897, NULL, '1.0000', '5.1700', '5.1700', '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 (39559, '2021-12-06', 2169, 37709, 2897, NULL, '1.0000', '1.1500', '1.1500', '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 (39560, '2021-12-06', 2277, 37710, 2897, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39561, '2021-12-06', 2937, 37711, 2897, 42801, '1.0000', '5.5233', '5.5233', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39562, '2021-12-06', 1946, 37712, 2897, NULL, '1.0000', '1.5500', '1.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 (39563, '2021-12-06', 1319, 37713, 2897, 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 (39564, '2021-12-06', 1314, 37714, 2897, 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 (39565, '2021-12-06', 2570, 37715, 2897, 34963, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39566, '2021-12-06', 1321, 37716, 2897, NULL, '1.0000', '9.8000', '9.8000', '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 (39567, '2021-12-06', 2506, 37717, 2897, 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 (39568, '2021-12-06', 1747, 37718, 2897, 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 (39569, '2021-12-06', 1946, 37719, 2897, NULL, '1.0000', '1.5500', '1.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 (39570, '2021-12-06', 1519, 37720, 2897, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39571, '2021-12-06', 2320, 37721, 2897, 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 (39572, '2021-12-06', 2974, 37722, 2897, 23155, '1.0000', '5.0000', '5.0000', '8.0000', '8.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 (39573, '2021-12-06', 2221, 37723, 2897, 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 (39574, '2021-12-06', 2285, 37724, 2897, NULL, '1.0000', '36.1500', '36.1500', '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 (39575, '2021-12-06', 1371, 37725, 2897, 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 (39576, '2021-12-06', 2293, 37726, 2897, NULL, '3.0000', '1.4400', '1.4400', '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 (39577, '2021-12-06', 9577, 37727, 2897, NULL, '2.0000', '0.3200', '0.3200', '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 (39578, '2021-12-06', 2068, 37728, 2897, 38541, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39579, '2021-12-06', 2353, 37729, 2897, NULL, '2.0000', '4.4500', '4.4500', '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 (39580, '2021-12-06', 2237, 37730, 2897, NULL, '1.0000', '-329.8285', '-329.8285', '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 (39581, '2021-12-06', 1592, 37731, 2897, 43260, '1.0000', '35.4585', '35.4585', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39582, '2021-12-06', 7519, 37732, 2897, NULL, '1.0000', '0.8800', '0.8800', '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 (39583, '2021-12-06', 2250, 37733, 2897, 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 (39584, '2021-12-06', 1586, 37734, 2897, 42092, '1.0000', '59.1099', '59.1099', '69.0000', '69.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39585, '2021-12-06', 1646, 37735, 2897, 43249, '1.0000', '4.2297', '4.2297', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39586, '2021-12-06', 1863, 37736, 2898, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39587, '2021-12-06', 1935, 37737, 2898, 41370, '6.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39588, '2021-12-06', 1665, 37738, 2898, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39589, '2021-12-06', 1328, 37739, 2899, NULL, '1.0000', '3.1500', '3.1500', '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 (39590, '2021-12-06', 1702, 37740, 2899, 4499, '-4.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 (39591, '2021-12-06', 1702, 37740, 2899, NULL, '5.0000', '14.9700', '14.9700', '20.0000', '20.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 (39592, '2021-12-06', 2251, 37741, 2899, 2788, '-5.0000', '10.9700', '10.9700', '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 (39593, '2021-12-06', 2251, 37741, 2899, NULL, '6.0000', '10.9700', '10.9700', '16.5000', '16.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 (39594, '2021-12-06', 2877, 37742, 2899, 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 (39595, '2021-12-06', 7586, 37743, 2899, NULL, '1.0000', '4.1700', '4.1700', '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 (39596, '2021-12-06', 9577, 37744, 2899, NULL, '2.0000', '0.3200', '0.3200', '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 (39597, '2021-12-06', 1999, 37745, 2899, 6362, '-5.0000', '6.0000', '6.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 (39598, '2021-12-06', 1999, 37745, 2899, NULL, '6.0000', '6.0000', '6.0000', '8.5000', '8.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 (39599, '2021-12-06', 2643, 37746, 2899, 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 (39600, '2021-12-06', 2645, 37747, 2899, NULL, '1.0000', '21.0000', '21.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 (39601, '2021-12-06', 1966, 37748, 2899, 3237, '-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 (39602, '2021-12-06', 1966, 37748, 2899, 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 (39603, '2021-12-06', 1602, 37749, 2899, 5897, '-60.0000', '6.7859', '6.7859', '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 (39604, '2021-12-06', 1602, 37749, 2899, NULL, '61.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39605, '2021-12-06', 7756, 37750, 2899, NULL, '1.0000', '2.5000', '2.5000', '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 (39606, '2021-12-06', 1641, 37751, 2899, 3214, '-132.0000', '0.9800', '0.9800', '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 (39607, '2021-12-06', 1641, 37751, 2899, NULL, '144.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-144.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39608, '2021-12-06', 1790, 37752, 2899, 4908, '-1.0000', '16.9500', '16.9500', '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 (39609, '2021-12-06', 1790, 37752, 2899, NULL, '2.0000', '16.9500', '16.9500', '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 (39610, '2021-12-06', 1604, 37753, 2899, 6525, '2.0000', '34.1212', '34.1212', '51.5000', '51.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 (39611, '2021-12-06', 3029, 37754, 2899, NULL, '1.0000', '4.7700', '4.7700', '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 (39612, '2021-12-06', 2506, 37755, 2899, 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 (39613, '2021-12-06', 2712, 37756, 2899, 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 (39614, '2021-12-06', 2169, 37757, 2899, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (39615, '2021-12-06', 2169, 37758, 2899, 1382, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (39616, '2021-12-06', 9577, 37759, 2899, NULL, '4.0000', '0.3200', '0.3200', '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 (39617, '2021-12-06', 9160, 37760, 2899, NULL, '1.0000', '15.0000', '15.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 (39618, '2021-12-06', 2252, 37761, 2899, 2789, '-16.0000', '9.5000', '9.5000', '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 (39619, '2021-12-06', 2252, 37761, 2899, NULL, '17.0000', '9.5000', '9.5000', '16.0000', '16.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 (39620, '2021-12-06', 2379, 37762, 2899, 4032, '-31.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 (39621, '2021-12-06', 2379, 37762, 2899, NULL, '32.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39622, '2021-12-06', 2169, 37763, 2899, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '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 (39623, '2021-12-06', 2643, 37764, 2899, 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 (39624, '2021-12-06', 1810, 37765, 2899, 12166, '-3.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 (39625, '2021-12-06', 1810, 37765, 2899, NULL, '4.0000', '8.0500', '8.0500', '11.0000', '11.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 (39626, '2021-12-06', 2277, 37766, 2899, 2937, '-23.0000', '0.7800', '0.7800', '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 (39627, '2021-12-06', 2277, 37766, 2899, NULL, '27.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-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 (39628, '2021-12-06', 1488, 37767, 2899, 22319, '1.0000', '3.9200', '3.9200', '5.5000', '5.5000', '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 (39629, '2021-12-06', 7642, 37768, 2900, NULL, '1.0000', '2.6900', '2.6900', '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 (39630, '2021-12-06', 9577, 37769, 2900, NULL, '2.0000', '0.3200', '0.3200', '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 (39631, '2021-12-06', 2109, 37770, 2900, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '24.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 (39632, '2021-12-06', 7514, 37771, 2900, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39633, '2021-12-06', 1381, 37772, 2900, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39634, '2021-12-06', 2352, 37773, 2900, NULL, '1.0000', '59.2000', '59.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 (39635, '2021-12-06', 3067, 37774, 2900, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.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 (39636, '2021-12-06', 7702, 37775, 2900, NULL, '1.0000', '0.4600', '0.4600', '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 (39637, '2021-12-06', 2132, 37776, 2900, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.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 (39638, '2021-12-06', 2567, 37777, 2900, 42637, '1.0000', '31.0140', '31.0140', '38.0000', '38.0000', '5.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39639, '2021-12-06', 7673, 37778, 2901, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39640, '2021-12-06', 7514, 37779, 2901, NULL, '1.0000', '12.9983', '12.9983', '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 (39641, '2021-12-06', 8566, 37780, 2901, 42783, '1.0000', '-57205.3825', '-57205.3825', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39642, '2021-12-06', 8780, 37781, 2901, NULL, '1.0000', '25.5900', '25.5900', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39643, '2021-12-06', 1501, 37782, 2901, 43011, '1.0000', '-22.8349', '-22.8349', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39644, '2021-12-06', 9578, 37783, 2901, NULL, '1.0000', '8.0000', '8.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 (39645, '2021-12-06', 9303, 37784, 2901, NULL, '1.0000', '9.0000', '9.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 (39646, '2021-12-06', 7769, 37785, 2902, 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 (39647, '2021-12-06', 2167, 37786, 2902, 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 (39648, '2021-12-06', 9577, 37787, 2903, NULL, '2.0000', '0.3200', '0.3200', '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 (39649, '2021-12-06', 8735, 37788, 2904, NULL, '1.0000', '5.6000', '5.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 (39650, '2021-12-06', 8858, 37789, 2904, NULL, '1.0000', '27.7076', '27.7076', '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 (39651, '2021-12-06', 9320, 37790, 2904, 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 (39652, '2021-12-06', 7641, 37791, 2904, NULL, '1.0000', '-7.4783', '-7.4783', '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 (39653, '2021-12-06', 7952, 37792, 2904, NULL, '1.0000', '10.4000', '10.4000', '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 (39654, '2021-12-06', 7684, 37793, 2904, NULL, '1.0000', '9.0000', '9.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 (39655, '2021-12-06', 9644, 37794, 2904, 43127, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39656, '2021-12-06', 7385, 37795, 2904, NULL, '2.0000', '17.6346', '17.6346', '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 (39657, '2021-12-06', 9684, 37796, 2904, 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 (39658, '2021-12-06', 7411, 37797, 2904, NULL, '1.0000', '1.3500', '1.3500', '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 (39659, '2021-12-06', 7671, 37798, 2904, NULL, '1.0000', '15.5000', '15.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 (39660, '2021-12-06', 2965, 37799, 2904, 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 (39661, '2021-12-06', 8105, 37800, 2904, NULL, '2.0000', '16.0000', '16.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 (39662, '2021-12-06', 8714, 37801, 2904, NULL, '1.0000', '20.7036', '20.7036', '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 (39663, '2021-12-06', 2315, 37802, 2904, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39664, '2021-12-06', 2315, 37802, 2904, NULL, '2.0000', '0.4740', '0.4740', '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 (39665, '2021-12-06', 8453, 37803, 2904, NULL, '1.0000', '5.0800', '5.0800', '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 (39666, '2021-12-06', 7560, 37804, 2904, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (39667, '2021-12-06', 1984, 37805, 2904, 42788, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39668, '2021-12-06', 8608, 37806, 2904, NULL, '1.0000', '5.7400', '5.7400', '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 (39669, '2021-12-06', 7318, 37807, 2904, 29973, '1.0000', '17.2098', '17.2098', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39670, '2021-12-06', 7981, 37808, 2904, NULL, '10.0000', '6.0000', '6.0000', '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 (39671, '2021-12-06', 7411, 37809, 2904, NULL, '2.0000', '1.3500', '1.3500', '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 (39672, '2021-12-06', 7583, 37810, 2904, NULL, '1.0000', '4.0000', '4.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 (39673, '2021-12-06', 8288, 37811, 2904, NULL, '1.0000', '20.0000', '20.0000', '1.8000', '1.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 (39674, '2021-12-06', 7411, 37812, 2904, NULL, '1.0000', '1.3500', '1.3500', '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 (39675, '2021-12-06', 1882, 37813, 2904, 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 (39676, '2021-12-06', 1989, 37814, 2904, NULL, '1.0000', '4.2500', '4.2500', '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 (39677, '2021-12-06', 1332, 37815, 2904, 227, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39678, '2021-12-06', 8200, 37816, 2904, NULL, '2.0000', '629.5726', '629.5726', '8.5000', '8.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 (39679, '2021-12-06', 8735, 37817, 2904, NULL, '1.0000', '5.6000', '5.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 (39680, '2021-12-06', 7881, 37818, 2904, NULL, '1.0000', '83.7700', '83.7700', '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 (39681, '2021-12-06', 7769, 37819, 2904, 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 (39682, '2021-12-06', 7881, 37820, 2904, NULL, '1.0000', '83.7700', '83.7700', '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 (39683, '2021-12-06', 7952, 37821, 2904, NULL, '2.0000', '10.4000', '10.4000', '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 (39684, '2021-12-06', 7708, 37822, 2904, NULL, '1.0000', '6.1400', '6.1400', '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 (39685, '2021-12-06', 1501, 37823, 2904, 43011, '1.0000', '-22.8349', '-22.8349', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39686, '2021-12-06', 8708, 37824, 2904, 30928, '1.0000', '8.6000', '8.6000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39687, '2021-12-06', 9618, 37825, 2904, NULL, '4.0000', '3.7500', '3.7500', '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 (39688, '2021-12-06', 7491, 37826, 2904, 43071, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39689, '2021-12-06', 7652, 37827, 2904, NULL, '15.0000', '40.3000', '40.3000', '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 (39690, '2021-12-06', 7781, 37828, 2904, NULL, '3.0000', '4.2500', '4.2500', '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 (39691, '2021-12-06', 7593, 37829, 2904, 43429, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39692, '2021-12-06', 8849, 37830, 2904, NULL, '2.0000', '1.0700', '1.0700', '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 (39693, '2021-12-06', 7473, 37831, 2904, NULL, '2.0000', '25.2998', '25.2998', '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 (39694, '2021-12-06', 8924, 37832, 2904, NULL, '1.0000', '4.5000', '4.5000', '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 (39695, '2021-12-06', 7532, 37833, 2904, NULL, '1.0000', '5.2000', '5.2000', '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 (39696, '2021-12-06', 2732, 37834, 2904, NULL, '1.0000', '29.8900', '29.8900', '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 (39697, '2021-12-06', 2284, 37835, 2904, 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 (39698, '2021-12-06', 2315, 37836, 2904, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39699, '2021-12-06', 2315, 37836, 2904, NULL, '1.0000', '0.4740', '0.4740', '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 (39700, '2021-12-06', 7519, 37837, 2904, 43150, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39701, '2021-12-06', 8622, 37838, 2904, 42420, '1.0000', '-19.0040', '-19.0040', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39702, '2021-12-06', 1713, 37839, 2904, NULL, '1.0000', '15.1700', '15.1700', '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 (39703, '2021-12-06', 7643, 37840, 2904, NULL, '1.0000', '2.1100', '2.1100', '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 (39704, '2021-12-06', 2315, 37841, 2904, 38451, '2.0000', '0.4740', '0.4740', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39705, '2021-12-06', 2315, 37841, 2904, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (39706, '2021-12-06', 9092, 37842, 2904, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '185.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39707, '2021-12-06', 2289, 37843, 2904, 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 (39708, '2021-12-06', 7967, 37844, 2904, 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 (39709, '2021-12-06', 8188, 37845, 2904, NULL, '1.0000', '6.7000', '6.7000', '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 (39710, '2021-12-06', 9562, 37846, 2904, 42670, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '13.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39711, '2021-12-06', 9563, 37847, 2904, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '43.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39712, '2021-12-06', 2169, 37848, 2905, NULL, '1.0000', '1.1500', '1.1500', '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 (39713, '2021-12-06', 7514, 37849, 2905, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39714, '2021-12-06', 2135, 37850, 2905, 18930, '1.0000', '2.4732', '2.4732', '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 (39715, '2021-12-06', 9577, 37851, 2905, NULL, '2.0000', '0.3200', '0.3200', '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 (39716, '2021-12-06', 7728, 37852, 2905, NULL, '1.0000', '1.8000', '1.8000', '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 (39717, '2021-12-06', 1912, 37853, 2905, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39718, '2021-12-06', 1762, 37854, 2905, 25011, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '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 (39719, '2021-12-06', 2713, 37855, 2906, 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 (39720, '2021-12-06', 7514, 37856, 2906, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39721, '2021-12-06', 1502, 37857, 2906, 42838, '1.0000', '-50.9143', '-50.9143', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39722, '2021-12-06', 7814, 37858, 2906, NULL, '1.0000', '18.5000', '18.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 (39723, '2021-12-06', 7886, 37859, 2907, NULL, '1.0000', '14.5000', '14.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 (39724, '2021-12-06', 7411, 37860, 2907, NULL, '2.0000', '1.3500', '1.3500', '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 (39725, '2021-12-06', 2283, 37861, 2907, 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 (39726, '2021-12-06', 1935, 37862, 2908, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39727, '2021-12-06', 8941, 37863, 2908, NULL, '1.0000', '12.0000', '12.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 (39728, '2021-12-06', 1871, 37864, 2909, NULL, '1.0000', '2.9308', '2.9308', '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 (39729, '2021-12-06', 8345, 37865, 2909, NULL, '1.0000', '22.0000', '22.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 (39730, '2021-12-06', 1912, 37866, 2909, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39731, '2021-12-06', 2237, 37867, 2909, NULL, '1.0000', '-329.8285', '-329.8285', '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 (39732, '2021-12-06', 7564, 37868, 2910, NULL, '1.0000', '0.6400', '0.6400', '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 (39733, '2021-12-06', 2287, 37869, 2910, 43279, '2.0000', '1.6790', '1.6790', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39734, '2021-12-06', 7514, 37870, 2910, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39735, '2021-12-06', 2699, 37871, 2911, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39736, '2021-12-06', 7601, 37872, 2912, NULL, '1.0000', '13.5000', '13.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 (39737, '2021-12-06', 2650, 37873, 2912, NULL, '1.0000', '7.7196', '7.7196', '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 (39738, '2021-12-06', 9577, 37874, 2912, NULL, '2.0000', '0.3200', '0.3200', '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 (39739, '2021-12-06', 2169, 37875, 2913, NULL, '1.0000', '1.1500', '1.1500', '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 (39740, '2021-12-06', 1776, 37876, 2914, 4941, '14.0000', '90.0000', '90.0000', '6.2000', '6.2000', '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 (39741, '2021-12-06', 2280, 37877, 2914, 40891, '2.0000', '2.3427', '2.3427', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39742, '2021-12-06', 2020, 37878, 2914, 40153, '1.0000', '-10.0734', '-10.0734', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39743, '2021-12-06', 1910, 37879, 2914, 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 (39744, '2021-12-06', 2403, 37880, 2914, 43041, '1.0000', '17.9929', '17.9929', '24.0900', '24.0900', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39745, '2021-12-06', 1584, 37881, 2914, 43341, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '22.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39746, '2021-12-06', 1532, 37882, 2914, 1539, '10.0000', '90.0000', '90.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 (39747, '2021-12-06', 1590, 37883, 2914, 9437, '10.0000', '1.7100', '1.7100', '2.3000', '2.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 (39748, '2021-12-06', 8164, 37884, 2914, NULL, '1.0000', '3.1200', '3.1200', '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 (39749, '2021-12-06', 1588, 37885, 2914, 9439, '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 (39750, '2021-12-06', 1706, 37886, 2914, NULL, '1.0000', '14.8866', '14.8866', '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 (39751, '2021-12-06', 2248, 37887, 2914, NULL, '1.0000', '2.4916', '2.4916', '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 (39752, '2021-12-06', 2280, 37888, 2914, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39753, '2021-12-06', 2235, 37889, 2914, 40895, '1.0000', '18.8000', '18.8000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39754, '2021-12-06', 9089, 37890, 2914, 43338, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39755, '2021-12-06', 2797, 37891, 2914, 19057, '1.0000', '27.4800', '27.4800', '70.0000', '70.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39756, '2021-12-06', 7318, 37892, 2914, 40886, '1.0000', '10.5000', '10.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39757, '2021-12-06', 8756, 37893, 2914, 42940, '1.0000', '7.2778', '7.2778', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39758, '2021-12-06', 2236, 37894, 2914, 42954, '1.0000', '5.6661', '5.6661', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39759, '2021-12-06', 2699, 37895, 2914, 42938, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39760, '2021-12-06', 9469, 37896, 2914, 42935, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39761, '2021-12-06', 2280, 37897, 2914, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39762, '2021-12-06', 2109, 37898, 2914, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39763, '2021-12-06', 1602, 37899, 2914, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39764, '2021-12-06', 2231, 37900, 2914, 40367, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39765, '2021-12-06', 1602, 37901, 2914, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39766, '2021-12-06', 1967, 37902, 2914, NULL, '1.0000', '19.5900', '19.5900', '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 (39767, '2021-12-06', 1432, 37903, 2914, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39768, '2021-12-06', 1595, 37904, 2914, 42206, '1.0000', '19.8580', '19.8580', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39769, '2021-12-06', 1504, 37905, 2914, 42966, '10.0000', '1.2125', '1.2125', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39770, '2021-12-06', 1478, 37906, 2914, 31970, '1.0000', '129.9208', '129.9208', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39771, '2021-12-06', 7337, 37907, 2914, NULL, '1.0000', '0.6500', '0.6500', '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 (39772, '2021-12-06', 2661, 37908, 2914, 12386, '1.0000', '9.0000', '9.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 (39773, '2021-12-06', 7482, 37909, 2914, 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 (39774, '2021-12-06', 2109, 37910, 2914, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39775, '2021-12-06', 2136, 37911, 2914, 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 (39776, '2021-12-06', 1670, 37912, 2914, 40657, '1.0000', '113.0050', '113.0050', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39777, '2021-12-06', 1541, 37913, 2914, 37570, '1.0000', '314.8018', '314.8018', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39778, '2021-12-06', 1542, 37914, 2914, 40852, '1.0000', '14.7800', '14.7800', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39779, '2021-12-06', 2858, 37915, 2914, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39780, '2021-12-06', 7933, 37916, 2914, NULL, '1.0000', '0.4400', '0.4400', '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 (39781, '2021-12-06', 2359, 37917, 2914, NULL, '4.0000', '5.2064', '5.2064', '11.0000', '11.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 (39782, '2021-12-06', 1999, 37918, 2914, 40305, '2.0000', '6.5000', '6.5000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39783, '2021-12-06', 9010, 37919, 2914, NULL, '1.0000', '0.7500', '0.7500', '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 (39784, '2021-12-06', 7848, 37920, 2914, 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 (39785, '2021-12-06', 1504, 37921, 2914, 42966, '10.0000', '1.2125', '1.2125', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39786, '2021-12-06', 1504, 37921, 2914, 37581, '10.0000', '1.2125', '1.2125', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39787, '2021-12-06', 1492, 37922, 2914, 9529, '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 (39788, '2021-12-06', 8065, 37923, 2914, NULL, '1.0000', '4.9800', '4.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 (39789, '2021-12-06', 2109, 37924, 2915, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '64.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39790, '2021-12-06', 1346, 37925, 2915, 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 (39791, '2021-12-06', 9563, 37926, 2915, 42629, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39792, '2021-12-06', 2712, 37927, 2915, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39793, '2021-12-06', 9445, 37928, 2916, 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 (39794, '2021-12-06', 8608, 37929, 2916, NULL, '1.0000', '5.7400', '5.7400', '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 (39795, '2021-12-06', 7671, 37930, 2916, NULL, '1.0000', '15.5000', '15.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 (39796, '2021-12-06', 7713, 37931, 2916, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39797, '2021-12-06', 7756, 37932, 2916, NULL, '1.0000', '21.7700', '21.7700', '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 (39798, '2021-12-06', 7411, 37933, 2916, NULL, '2.0000', '1.3500', '1.3500', '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 (39799, '2021-12-06', 8000, 37934, 2916, NULL, '2.0000', '74.7436', '74.7436', '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 (39800, '2021-12-06', 7544, 37935, 2916, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39801, '2021-12-06', 1841, 37936, 2916, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39802, '2021-12-06', 8849, 37937, 2916, NULL, '1.0000', '1.0700', '1.0700', '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 (39803, '2021-12-06', 2025, 37938, 2916, 39413, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39804, '2021-12-06', 2004, 37939, 2916, 38465, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39805, '2021-12-06', 7590, 37940, 2916, NULL, '1.0000', '4.3600', '4.3600', '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 (39806, '2021-12-06', 9684, 37941, 2916, 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 (39807, '2021-12-06', 1845, 37942, 2916, NULL, '1.0000', '19.5000', '19.5000', '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 (39808, '2021-12-06', 8276, 37943, 2916, NULL, '1.0000', '12.7063', '12.7063', '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 (39809, '2021-12-06', 9207, 37944, 2916, NULL, '1.0000', '4.6000', '4.6000', '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 (39810, '2021-12-06', 7473, 37945, 2916, NULL, '3.0000', '25.2998', '25.2998', '0.6000', '0.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 (39811, '2021-12-06', 7628, 37946, 2916, NULL, '12.0000', '2.9100', '2.9100', '4.0000', '4.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 (39812, '2021-12-06', 7334, 37947, 2916, NULL, '1.0000', '8.1600', '8.1600', '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 (39813, '2021-12-06', 9650, 37948, 2916, 43132, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39814, '2021-12-06', 7704, 37949, 2916, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39815, '2021-12-06', 7674, 37950, 2916, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39816, '2021-12-06', 7892, 37951, 2916, NULL, '1.0000', '4.2000', '4.2000', '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 (39817, '2021-12-06', 8702, 37952, 2916, NULL, '1.0000', '3.6700', '3.6700', '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 (39818, '2021-12-06', 7400, 37953, 2916, NULL, '1.0000', '2.6200', '2.6200', '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 (39819, '2021-12-06', 7806, 37954, 2916, NULL, '5.0000', '14.0000', '14.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 (39820, '2021-12-06', 7707, 37955, 2916, NULL, '1.0000', '6.0012', '6.0012', '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 (39821, '2021-12-06', 7674, 37956, 2916, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39822, '2021-12-06', 9634, 37957, 2917, 40901, '2.0000', '4.8000', '4.8000', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39823, '2021-12-06', 1812, 37958, 2918, 42101, '2.0000', '7.9457', '7.9457', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39824, '2021-12-06', 1574, 37959, 2918, NULL, '1.0000', '1.7001', '1.7001', '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 (39825, '2021-12-06', 7514, 37960, 2918, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39826, '2021-12-06', 2992, 37961, 2918, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (39827, '2021-12-06', 7412, 37962, 2918, NULL, '1.0000', '1.5200', '1.5200', '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 (39828, '2021-12-06', 2916, 37963, 2919, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39829, '2021-12-06', 2136, 37964, 2919, 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 (39830, '2021-12-06', 7619, 37965, 2920, 42210, '1.0000', '41.4500', '41.4500', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39831, '2021-12-06', 2699, 37966, 2920, 42938, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39832, '2021-12-07', 1342, 37967, 2921, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39833, '2021-12-07', 9577, 37968, 2921, NULL, '2.0000', '0.3200', '0.3200', '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 (39834, '2021-12-07', 2169, 37969, 2921, NULL, '1.0000', '1.1500', '1.1500', '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 (39835, '2021-12-07', 1519, 37970, 2921, 42576, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39836, '2021-12-07', 1863, 37971, 2921, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39837, '2021-12-07', 2305, 37972, 2921, NULL, '1.0000', '1.3300', '1.3300', '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 (39838, '2021-12-07', 9577, 37973, 2921, NULL, '2.0000', '0.3200', '0.3200', '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 (39839, '2021-12-07', 2289, 37974, 2921, 42836, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39840, '2021-12-07', 1805, 37975, 2921, NULL, '1.0000', '4.5132', '4.5132', '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 (39841, '2021-12-07', 1665, 37976, 2921, 42577, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39842, '2021-12-07', 1590, 37977, 2921, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39843, '2021-12-07', 1337, 37978, 2921, 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 (39844, '2021-12-07', 1677, 37979, 2921, 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 (39845, '2021-12-07', 7335, 37980, 2921, NULL, '1.0000', '10.4000', '10.4000', '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 (39846, '2021-12-07', 1912, 37981, 2921, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39847, '2021-12-07', 1863, 37982, 2921, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39848, '2021-12-07', 2417, 37983, 2921, 32544, '1.0000', '3.7800', '3.7800', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39849, '2021-12-07', 8634, 37984, 2921, NULL, '1.0000', '14.0000', '14.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 (39850, '2021-12-07', 1402, 37985, 2922, 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 (39851, '2021-12-07', 2169, 37986, 2922, NULL, '1.0000', '1.1500', '1.1500', '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 (39852, '2021-12-07', 1584, 37987, 2923, 7601, '-9.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 (39853, '2021-12-07', 1584, 37987, 2923, NULL, '10.0000', '90.0000', '90.0000', '8.0000', '8.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 (39854, '2021-12-07', 2821, 37988, 2923, 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 (39855, '2021-12-07', 9160, 37989, 2923, NULL, '1.0000', '15.0000', '15.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 (39856, '2021-12-07', 1382, 37990, 2923, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.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 (39857, '2021-12-07', 2169, 37991, 2923, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '2.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 (39858, '2021-12-07', 2109, 37992, 2923, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '96.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 (39859, '2021-12-07', 2924, 37993, 2923, 18775, '-2.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 (39860, '2021-12-07', 2924, 37993, 2923, NULL, '3.0000', '6.3000', '6.3000', '8.5000', '8.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 (39861, '2021-12-07', 2657, 37994, 2923, 11267, '-2.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 (39862, '2021-12-07', 2657, 37994, 2923, 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 (39863, '2021-12-07', 1620, 37995, 2923, 8955, '2.0000', '408.8259', '408.8259', '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 (39864, '2021-12-07', 2167, 37996, 2923, 17165, '-26.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 (39865, '2021-12-07', 2167, 37996, 2923, NULL, '27.0000', '2.2000', '2.2000', '3.0000', '3.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 (39866, '2021-12-07', 1311, 37997, 2923, 5437, '-6.0000', '79.3908', '79.3908', '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 (39867, '2021-12-07', 1311, 37997, 2923, NULL, '8.0000', '79.3908', '79.3908', '0.5000', '0.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 (39868, '2021-12-07', 2506, 37998, 2923, 16244, '-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 (39869, '2021-12-07', 2506, 37998, 2923, NULL, '2.0000', '3.4900', '3.4900', '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 (39870, '2021-12-07', 7496, 37999, 2923, NULL, '1.0000', '0.9600', '0.9600', '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 (39871, '2021-12-07', 2381, 38000, 2923, NULL, '1.0000', '12.1900', '12.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 (39872, '2021-12-07', 2196, 38001, 2923, 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 (39873, '2021-12-07', 1831, 38002, 2923, NULL, '1.0000', '8.4400', '8.4400', '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 (39874, '2021-12-07', 2132, 38003, 2923, 4280, '-1.0000', '21.0000', '21.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 (39875, '2021-12-07', 2132, 38003, 2923, NULL, '2.0000', '21.0000', '21.0000', '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 (39876, '2021-12-07', 1765, 38004, 2923, 3175, '-2.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 (39877, '2021-12-07', 1765, 38004, 2923, NULL, '3.0000', '90.0000', '90.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 (39878, '2021-12-07', 2216, 38005, 2923, 7754, '-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 (39879, '2021-12-07', 2216, 38005, 2923, NULL, '2.0000', '12.0000', '12.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 (39880, '2021-12-07', 2219, 38006, 2923, 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 (39881, '2021-12-07', 2176, 38007, 2923, 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 (39882, '2021-12-07', 2215, 38008, 2923, 7752, '-3.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 (39883, '2021-12-07', 2215, 38008, 2923, NULL, '4.0000', '12.0000', '12.0000', '18.0000', '18.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 (39884, '2021-12-07', 2181, 38009, 2923, 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 (39885, '2021-12-07', 7609, 38010, 2923, NULL, '1.0000', '4.3300', '4.3300', '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 (39886, '2021-12-07', 2712, 38011, 2923, 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 (39887, '2021-12-07', 1696, 38012, 2923, 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 (39888, '2021-12-07', 2519, 38013, 2923, NULL, '2.0000', '11.0000', '11.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 (39889, '2021-12-07', 2623, 38014, 2923, 18884, '1.0000', '4.3000', '4.3000', '10.5000', '10.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 (39890, '2021-12-07', 9688, 38015, 2923, NULL, '1.0000', '3.4000', '3.4000', '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 (39891, '2021-12-07', 1826, 38016, 2923, 15039, '-6.0000', '0.2600', '0.2600', '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 (39892, '2021-12-07', 1826, 38016, 2923, NULL, '10.0000', '0.2600', '0.2600', '0.5000', '0.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 (39893, '2021-12-07', 1307, 38017, 2923, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '7.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 (39894, '2021-12-07', 2948, 38018, 2924, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39895, '2021-12-07', 1912, 38019, 2925, 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 (39896, '2021-12-07', 2916, 38020, 2926, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39897, '2021-12-07', 1863, 38021, 2926, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39898, '2021-12-07', 2821, 38022, 2926, 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 (39899, '2021-12-07', 8740, 38023, 2927, 43366, '1.0000', '1.6971', '1.6971', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39900, '2021-12-07', 2495, 38024, 2927, 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 (39901, '2021-12-07', 2280, 38025, 2927, NULL, '1.0000', '-177.9360', '-177.9360', '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 (39902, '2021-12-07', 1812, 38026, 2927, 42101, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39903, '2021-12-07', 7415, 38027, 2927, NULL, '1.0000', '5.4200', '5.4200', '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 (39904, '2021-12-07', 1744, 38028, 2927, 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 (39905, '2021-12-07', 1621, 38029, 2927, 42079, '1.0000', '28.9137', '28.9137', '7.5000', '7.5000', '55.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39906, '2021-12-07', 2242, 38030, 2927, 37444, '2.0000', '0.5518', '0.5518', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39907, '2021-12-07', 1809, 38031, 2927, 42557, '1.0000', '9.5248', '9.5248', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39908, '2021-12-07', 7482, 38032, 2927, 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 (39909, '2021-12-07', 2987, 38033, 2927, 22607, '1.0000', '0.7500', '0.7500', '1.0000', '1.0000', '19.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 (39910, '2021-12-07', 7411, 38034, 2927, NULL, '1.0000', '1.3500', '1.3500', '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 (39911, '2021-12-07', 9577, 38035, 2927, NULL, '1.0000', '0.3200', '0.3200', '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 (39912, '2021-12-07', 9604, 38036, 2927, NULL, '1.0000', '2.0000', '2.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 (39913, '2021-12-07', 8746, 38037, 2927, 43354, '1.0000', '2.9988', '2.9988', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39914, '2021-12-07', 9603, 38038, 2927, 43348, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39915, '2021-12-07', 1839, 38039, 2927, NULL, '1.0000', '1.8866', '1.8866', '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 (39916, '2021-12-07', 2592, 38040, 2927, 38524, '2.0000', '8.0156', '8.0156', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39917, '2021-12-07', 9416, 38041, 2927, 43361, '2.0000', '4.5001', '4.5001', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39918, '2021-12-07', 9089, 38042, 2927, NULL, '1.0000', '3.8000', '3.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 (39919, '2021-12-07', 8773, 38043, 2927, 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 (39920, '2021-12-07', 2650, 38044, 2927, NULL, '1.0000', '7.7196', '7.7196', '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 (39921, '2021-12-07', 1706, 38045, 2927, NULL, '1.0000', '13.7192', '13.7192', '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 (39922, '2021-12-07', 7763, 38046, 2927, NULL, '1.0000', '1.1300', '1.1300', '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 (39923, '2021-12-07', 7666, 38047, 2927, NULL, '1.0000', '10.0000', '10.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 (39924, '2021-12-07', 1394, 38048, 2927, NULL, '1.0000', '9.2833', '9.2833', '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 (39925, '2021-12-07', 9481, 38049, 2927, 32542, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39926, '2021-12-07', 2673, 38050, 2927, 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 (39927, '2021-12-07', 7709, 38051, 2927, 39850, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39928, '2021-12-07', 7931, 38052, 2927, NULL, '1.0000', '0.2500', '0.2500', '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 (39929, '2021-12-07', 7780, 38053, 2927, NULL, '1.0000', '2.6000', '2.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 (39930, '2021-12-07', 8328, 38054, 2927, NULL, '1.0000', '8.1000', '8.1000', '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 (39931, '2021-12-07', 2415, 38055, 2927, 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 (39932, '2021-12-07', 2106, 38056, 2927, 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 (39933, '2021-12-07', 2821, 38057, 2927, 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 (39934, '2021-12-07', 7702, 38058, 2927, NULL, '2.0000', '0.4600', '0.4600', '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 (39935, '2021-12-07', 2354, 38059, 2927, NULL, '1.0000', '5.0600', '5.0600', '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 (39936, '2021-12-07', 7780, 38060, 2927, NULL, '1.0000', '2.6000', '2.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 (39937, '2021-12-07', 9577, 38061, 2927, NULL, '1.0000', '0.3200', '0.3200', '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 (39938, '2021-12-07', 2169, 38062, 2927, NULL, '3.0000', '1.1500', '1.1500', '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 (39939, '2021-12-07', 2758, 38063, 2927, 34623, '2.0000', '5.4000', '5.4000', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39940, '2021-12-07', 2004, 38064, 2928, 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 (39941, '2021-12-07', 1514, 38065, 2928, 23184, '1.0000', '11.9600', '11.9600', '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 (39942, '2021-12-07', 1846, 38066, 2928, 19327, '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 (39943, '2021-12-07', 7633, 38067, 2928, NULL, '1.0000', '2.8700', '2.8700', '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 (39944, '2021-12-07', 2638, 38068, 2928, 42840, '1.0000', '21.0866', '21.0866', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39945, '2021-12-07', 7411, 38069, 2928, NULL, '1.0000', '1.3500', '1.3500', '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 (39946, '2021-12-07', 1702, 38070, 2928, NULL, '1.0000', '14.9700', '14.9700', '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 (39947, '2021-12-07', 9643, 38071, 2928, 41421, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39948, '2021-12-07', 9643, 38072, 2928, 41421, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39949, '2021-12-07', 1699, 38073, 2928, NULL, '1.0000', '3.2000', '3.2000', '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 (39950, '2021-12-07', 7585, 38074, 2928, NULL, '1.0000', '3.9600', '3.9600', '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 (39951, '2021-12-07', 1337, 38075, 2928, 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 (39952, '2021-12-07', 2237, 38076, 2928, NULL, '2.0000', '-329.8285', '-329.8285', '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 (39953, '2021-12-07', 9606, 38077, 2928, 40003, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39954, '2021-12-07', 1647, 38078, 2928, 19839, '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 (39955, '2021-12-07', 1928, 38079, 2928, 41412, '1.0000', '5.3300', '5.3300', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39956, '2021-12-07', 7741, 38080, 2928, NULL, '1.0000', '1.2000', '1.2000', '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 (39957, '2021-12-07', 7328, 38081, 2928, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39958, '2021-12-07', 2693, 38082, 2928, 30699, '1.0000', '25.3300', '25.3300', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39959, '2021-12-07', 8608, 38083, 2928, NULL, '1.0000', '0.9000', '0.9000', '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 (39960, '2021-12-07', 1519, 38084, 2928, 41410, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39961, '2021-12-07', 1307, 38085, 2929, NULL, '1.0000', '1.7846', '1.7846', '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 (39962, '2021-12-07', 1935, 38086, 2929, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39963, '2021-12-07', 7762, 38087, 2929, NULL, '1.0000', '5.1000', '5.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 (39964, '2021-12-07', 1519, 38088, 2929, 41410, '1.0000', '3.3980', '3.3980', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39965, '2021-12-07', 9337, 38089, 2929, NULL, '1.0000', '5.7200', '5.7200', '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 (39966, '2021-12-07', 2167, 38090, 2929, 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 (39967, '2021-12-07', 9469, 38091, 2930, NULL, '1.0000', '2.3000', '2.3000', '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 (39968, '2021-12-07', 1529, 38092, 2931, NULL, '1.0000', '3.4997', '3.4997', '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 (39969, '2021-12-07', 9577, 38093, 2931, NULL, '4.0000', '0.3200', '0.3200', '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 (39970, '2021-12-07', 2263, 38094, 2931, NULL, '2.0000', '4.9800', '4.9800', '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 (39971, '2021-12-07', 2109, 38095, 2931, 24971, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '21.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 (39972, '2021-12-07', 9577, 38096, 2931, NULL, '2.0000', '0.3200', '0.3200', '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 (39973, '2021-12-07', 1608, 38097, 2931, 34659, '1.0000', '3.5436', '3.5436', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39974, '2021-12-07', 2544, 38098, 2931, NULL, '1.0000', '6.8800', '6.8800', '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 (39975, '2021-12-07', 1715, 38099, 2931, 42800, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39976, '2021-12-07', 1431, 38100, 2931, NULL, '1.0000', '9.8000', '9.8000', '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 (39977, '2021-12-07', 2408, 38101, 2931, 39899, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39978, '2021-12-07', 2131, 38102, 2931, 42641, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39979, '2021-12-07', 7927, 38103, 2931, NULL, '2.0000', '11.7000', '11.7000', '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 (39980, '2021-12-07', 8659, 38104, 2931, NULL, '1.0000', '3.8500', '3.8500', '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 (39981, '2021-12-07', 7984, 38105, 2931, NULL, '2.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39982, '2021-12-07', 1854, 38106, 2931, 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 (39983, '2021-12-07', 1912, 38107, 2931, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39984, '2021-12-07', 1812, 38108, 2931, 42101, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39985, '2021-12-07', 9337, 38109, 2931, NULL, '2.0000', '5.7200', '5.7200', '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 (39986, '2021-12-07', 1665, 38110, 2932, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39987, '2021-12-07', 2263, 38111, 2932, 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 (39988, '2021-12-07', 7506, 38112, 2932, NULL, '1.0000', '15.0000', '15.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 (39989, '2021-12-07', 8208, 38113, 2932, NULL, '1.0000', '33.0000', '33.0000', '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 (39990, '2021-12-07', 7993, 38114, 2932, NULL, '1.0000', '41.0000', '41.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39991, '2021-12-07', 1321, 38115, 2932, NULL, '1.0000', '9.8000', '9.8000', '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 (39992, '2021-12-07', 8638, 38116, 2932, NULL, '1.0000', '0.5100', '0.5100', '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 (39993, '2021-12-07', 2221, 38117, 2932, 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 (39994, '2021-12-07', 7509, 38118, 2933, 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 (39995, '2021-12-07', 3026, 38119, 2933, 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 (39996, '2021-12-07', 8951, 38120, 2933, NULL, '1.0000', '9.0000', '9.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 (39997, '2021-12-07', 1982, 38121, 2933, NULL, '1.0000', '4.5000', '4.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 (39998, '2021-12-07', 7641, 38122, 2933, NULL, '1.0000', '-7.4783', '-7.4783', '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 (39999, '2021-12-07', 7417, 38123, 2933, 30167, '16.0000', '6.4100', '6.4100', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40000, '2021-12-07', 7417, 38123, 2933, NULL, '5.0000', '6.4100', '6.4100', '8.5000', '8.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 (40001, '2021-12-07', 9469, 38124, 2933, 43380, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40002, '2021-12-07', 7736, 38125, 2933, NULL, '1.0000', '15.0000', '15.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 (40003, '2021-12-07', 2612, 38126, 2933, NULL, '1.0000', '7.1600', '7.1600', '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 (40004, '2021-12-07', 7360, 38127, 2933, 43115, '1.0000', '-284.5456', '-284.5456', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40005, '2021-12-07', 7622, 38128, 2933, NULL, '2.0000', '17.8100', '17.8100', '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 (40006, '2021-12-07', 7926, 38129, 2933, 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 (40007, '2021-12-07', 8539, 38130, 2933, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '21.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40008, '2021-12-07', 8608, 38131, 2933, NULL, '1.0000', '5.7400', '5.7400', '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 (40009, '2021-12-07', 7671, 38132, 2933, NULL, '1.0000', '15.5000', '15.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 (40010, '2021-12-07', 9401, 38133, 2933, 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 (40011, '2021-12-07', 9448, 38134, 2933, 30922, '1.0000', '7.5200', '7.5200', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40012, '2021-12-07', 7385, 38135, 2933, NULL, '2.0000', '17.6346', '17.6346', '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 (40013, '2021-12-07', 2315, 38136, 2933, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (40014, '2021-12-07', 9191, 38137, 2933, NULL, '2.0000', '6.6700', '6.6700', '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 (40015, '2021-12-07', 7754, 38138, 2933, NULL, '1.0000', '19.0200', '19.0200', '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 (40016, '2021-12-07', 7755, 38139, 2933, NULL, '1.0000', '82.0200', '82.0200', '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 (40017, '2021-12-07', 7514, 38140, 2933, NULL, '3.0000', '12.9983', '12.9983', '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 (40018, '2021-12-07', 9445, 38141, 2933, 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 (40019, '2021-12-07', 7565, 38142, 2933, NULL, '1.0000', '0.2000', '0.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 (40020, '2021-12-07', 7671, 38143, 2933, NULL, '1.0000', '15.5000', '15.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 (40021, '2021-12-07', 7518, 38144, 2933, NULL, '2.0000', '-67.2578', '-67.2578', '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 (40022, '2021-12-07', 7881, 38145, 2933, NULL, '2.0000', '83.7700', '83.7700', '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 (40023, '2021-12-07', 7947, 38146, 2933, NULL, '1.0000', '14.4400', '14.4400', '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 (40024, '2021-12-07', 9456, 38147, 2933, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40025, '2021-12-07', 7781, 38148, 2933, NULL, '3.0000', '4.2500', '4.2500', '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 (40026, '2021-12-07', 9399, 38149, 2933, NULL, '1.0000', '0.4200', '0.4200', '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 (40027, '2021-12-07', 7954, 38150, 2933, NULL, '1.0000', '24.4161', '24.4161', '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 (40028, '2021-12-07', 9496, 38151, 2933, NULL, '1.0000', '3.8800', '3.8800', '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 (40029, '2021-12-07', 8457, 38152, 2933, NULL, '1.0000', '0.7500', '0.7500', '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 (40030, '2021-12-07', 7707, 38153, 2933, NULL, '1.0000', '6.0012', '6.0012', '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 (40031, '2021-12-07', 1321, 38154, 2933, NULL, '1.0000', '9.8000', '9.8000', '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 (40032, '2021-12-07', 2351, 38155, 2933, NULL, '1.0000', '17.7000', '17.7000', '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 (40033, '2021-12-07', 7482, 38156, 2933, NULL, '1.0000', '2.4981', '2.4981', '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 (40034, '2021-12-07', 7674, 38157, 2933, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '86.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40035, '2021-12-07', 8677, 38158, 2933, NULL, '2.0000', '1.2300', '1.2300', '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 (40036, '2021-12-07', 9272, 38159, 2933, NULL, '1.0000', '3.1000', '3.1000', '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 (40037, '2021-12-07', 1805, 38160, 2933, NULL, '1.0000', '4.5500', '4.5500', '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 (40038, '2021-12-07', 7411, 38161, 2933, NULL, '2.0000', '1.3500', '1.3500', '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 (40039, '2021-12-07', 2315, 38162, 2933, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (40040, '2021-12-07', 2943, 38163, 2933, 43054, '1.0000', '2.1933', '2.1933', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40041, '2021-12-07', 7714, 38164, 2933, 37846, '3.0000', '0.4200', '0.4200', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40042, '2021-12-07', 2098, 38165, 2933, 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 (40043, '2021-12-07', 3062, 38166, 2933, 43019, '1.0000', '6.0700', '6.0700', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40044, '2021-12-07', 8244, 38167, 2933, NULL, '1.0000', '37.4100', '37.4100', '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 (40045, '2021-12-07', 8166, 38168, 2933, NULL, '1.0000', '4.6000', '4.6000', '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 (40046, '2021-12-07', 9317, 38169, 2933, NULL, '1.0000', '12.0000', '12.0000', '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 (40047, '2021-12-07', 8657, 38170, 2933, NULL, '1.0000', '6.3869', '6.3869', '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 (40048, '2021-12-07', 7782, 38171, 2933, NULL, '2.0000', '5.0000', '5.0000', '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 (40049, '2021-12-07', 8596, 38172, 2933, NULL, '1.0000', '17.0000', '17.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 (40050, '2021-12-07', 8134, 38173, 2933, NULL, '1.0000', '5.2600', '5.2600', '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 (40051, '2021-12-07', 9092, 38174, 2933, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '184.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40052, '2021-12-07', 2962, 38175, 2933, 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 (40053, '2021-12-07', 1501, 38176, 2933, 43011, '1.0000', '-22.8349', '-22.8349', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40054, '2021-12-07', 1340, 38177, 2933, NULL, '1.0000', '2.7422', '2.7422', '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 (40055, '2021-12-07', 9092, 38178, 2933, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '183.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40056, '2021-12-07', 8077, 38179, 2933, NULL, '2.0000', '11.5000', '11.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 (40057, '2021-12-07', 8756, 38180, 2933, 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 (40058, '2021-12-07', 2289, 38181, 2933, 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 (40059, '2021-12-07', 7612, 38182, 2933, NULL, '1.0000', '1.1770', '1.1770', '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 (40060, '2021-12-07', 7429, 38183, 2933, NULL, '1.0000', '18.0000', '18.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 (40061, '2021-12-07', 8677, 38184, 2933, NULL, '2.0000', '1.2300', '1.2300', '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 (40062, '2021-12-07', 7509, 38185, 2933, 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 (40063, '2021-12-07', 7411, 38186, 2933, NULL, '2.0000', '1.3500', '1.3500', '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 (40064, '2021-12-07', 8032, 38187, 2933, NULL, '1.0000', '12.0000', '12.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 (40065, '2021-12-07', 7472, 38188, 2933, NULL, '1.0000', '4.1000', '4.1000', '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 (40066, '2021-12-07', 7820, 38189, 2933, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40067, '2021-12-07', 7544, 38190, 2933, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40068, '2021-12-07', 1841, 38191, 2933, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40069, '2021-12-07', 7547, 38192, 2933, NULL, '4.0000', '0.0000', '0.0000', '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 (40070, '2021-12-07', 7643, 38193, 2933, NULL, '1.0000', '2.1100', '2.1100', '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 (40071, '2021-12-07', 9563, 38194, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40072, '2021-12-07', 9563, 38195, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40073, '2021-12-07', 9563, 38196, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40074, '2021-12-07', 9563, 38197, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40075, '2021-12-07', 9563, 38198, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40076, '2021-12-07', 9563, 38199, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40077, '2021-12-07', 9563, 38200, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40078, '2021-12-07', 9563, 38201, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40079, '2021-12-07', 9563, 38202, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40080, '2021-12-07', 9563, 38203, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40081, '2021-12-07', 9563, 38204, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40082, '2021-12-07', 9563, 38205, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40083, '2021-12-07', 9563, 38206, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40084, '2021-12-07', 9563, 38207, 2933, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '42.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40085, '2021-12-07', 9603, 38208, 2934, 43348, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40086, '2021-12-07', 7483, 38209, 2935, NULL, '1.0000', '0.4200', '0.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 (40087, '2021-12-07', 7412, 38210, 2935, NULL, '1.0000', '1.5200', '1.5200', '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 (40088, '2021-12-07', 7921, 38211, 2935, NULL, '1.0000', '0.3000', '0.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 (40089, '2021-12-07', 7619, 38212, 2936, 42210, '1.0000', '41.4500', '41.4500', '55.0000', '55.0000', '0.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40090, '2021-12-07', 2757, 38213, 2936, 40648, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40091, '2021-12-07', 2757, 38213, 2936, NULL, '1.0000', '6.8000', '6.8000', '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 (40092, '2021-12-07', 2252, 38214, 2936, 42955, '1.0000', '10.6889', '10.6889', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40093, '2021-12-07', 1502, 38215, 2936, 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 (40094, '2021-12-07', 2937, 38216, 2936, 23624, '1.0000', '5.3700', '5.3700', '7.5000', '7.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 (40095, '2021-12-07', 2937, 38216, 2936, 21561, '1.0000', '5.3700', '5.3700', '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 (40096, '2021-12-07', 2712, 38217, 2936, 42626, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40097, '2021-12-07', 2352, 38218, 2936, 17460, '2.0000', '20.0000', '20.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 (40098, '2021-12-07', 8164, 38219, 2936, NULL, '1.0000', '3.1200', '3.1200', '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 (40099, '2021-12-07', 7506, 38220, 2936, NULL, '1.0000', '15.0000', '15.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 (40100, '2021-12-07', 1602, 38221, 2936, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40101, '2021-12-07', 1575, 38222, 2936, 32861, '1.0000', '58.8203', '58.8203', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40102, '2021-12-07', 8277, 38223, 2936, NULL, '1.0000', '6.5700', '6.5700', '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 (40103, '2021-12-07', 1783, 38224, 2936, 40861, '3.0000', '-85.3042', '-85.3042', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40104, '2021-12-07', 7736, 38225, 2936, NULL, '1.0000', '15.0000', '15.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 (40105, '2021-12-07', 2806, 38226, 2936, NULL, '2.0000', '5.7500', '5.7500', '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 (40106, '2021-12-07', 2970, 38227, 2936, 21801, '1.0000', '5.0000', '5.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 (40107, '2021-12-07', 9214, 38228, 2936, NULL, '2.0000', '9.6000', '9.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 (40108, '2021-12-07', 2262, 38229, 2936, 18683, '1.0000', '4.5000', '4.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 (40109, '2021-12-07', 2237, 38230, 2936, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40110, '2021-12-07', 1693, 38231, 2936, 2456, '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 (40111, '2021-12-07', 2109, 38232, 2936, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40112, '2021-12-07', 1504, 38233, 2936, 24020, '10.0000', '1.2125', '1.2125', '2.2000', '2.2000', '20.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 (40113, '2021-12-07', 1420, 38234, 2936, 42972, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40114, '2021-12-07', 2961, 38235, 2936, 21829, '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 (40115, '2021-12-07', 2109, 38236, 2936, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40116, '2021-12-07', 2732, 38237, 2936, NULL, '1.0000', '26.3888', '26.3888', '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 (40117, '2021-12-07', 8765, 38238, 2936, 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 (40118, '2021-12-07', 8919, 38239, 2936, NULL, '1.0000', '15.0000', '15.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 (40119, '2021-12-07', 2169, 38240, 2936, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40120, '2021-12-07', 2417, 38241, 2936, 11193, '1.0000', '14.5420', '14.5420', '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 (40121, '2021-12-07', 7459, 38242, 2936, 31998, '6.0000', '2.3500', '2.3500', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40122, '2021-12-07', 7802, 38243, 2936, NULL, '3.0000', '0.9200', '0.9200', '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 (40123, '2021-12-07', 1665, 38244, 2936, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40124, '2021-12-07', 1771, 38245, 2936, 21570, '1.0000', '3.3900', '3.3900', '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 (40125, '2021-12-07', 1521, 38246, 2936, 40904, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40126, '2021-12-07', 1637, 38247, 2936, 40155, '1.0000', '403.4397', '403.4397', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40127, '2021-12-07', 2337, 38248, 2936, 40646, '1.0000', '51.0000', '51.0000', '67.5000', '67.5000', '1.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40128, '2021-12-07', 1631, 38249, 2936, 13534, '1.0000', '90.0000', '90.0000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40129, '2021-12-07', 1692, 38250, 2936, 2455, '1.0000', '10.2900', '10.2900', '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 (40130, '2021-12-07', 7609, 38251, 2936, NULL, '1.0000', '4.3300', '4.3300', '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 (40131, '2021-12-07', 8497, 38252, 2936, 43038, '3.0000', '20.8370', '20.8370', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40132, '2021-12-07', 9689, 38253, 2936, NULL, '1.0000', '40.1400', '40.1400', '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 (40133, '2021-12-07', 7609, 38254, 2936, NULL, '1.0000', '4.3300', '4.3300', '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 (40134, '2021-12-07', 2712, 38255, 2936, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40135, '2021-12-07', 7482, 38256, 2936, 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 (40136, '2021-12-07', 1590, 38257, 2936, 9437, '3.0000', '1.7100', '1.7100', '2.3000', '2.3000', '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 (40137, '2021-12-07', 2877, 38258, 2936, 17902, '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 (40138, '2021-12-07', 1747, 38259, 2936, 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 (40139, '2021-12-07', 7915, 38260, 2936, 40150, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40140, '2021-12-07', 2109, 38261, 2936, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '62.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40141, '2021-12-07', 7613, 38262, 2937, 41990, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40142, '2021-12-07', 1650, 38263, 2938, NULL, '1.0000', '15.2800', '15.2800', '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 (40143, '2021-12-07', 1935, 38264, 2938, 40874, '2.0000', '6.8496', '6.8496', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40144, '2021-12-08', 1411, 38265, 2939, 33158, '1.0000', '25.9000', '25.9000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40145, '2021-12-08', 9692, 38266, 2940, 43551, '1.0000', '10.4500', '10.4500', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40146, '2021-12-08', 9692, 38267, 2941, 43551, '1.0000', '10.4500', '10.4500', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40147, '2021-12-08', 9693, 38268, 2942, 43561, '1.0000', '37.0000', '37.0000', '49.0000', '49.0000', '2.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40148, '2021-12-08', 3058, 38269, 2943, NULL, '1.0000', '4.6750', '4.6750', '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 (40149, '2021-12-08', 8638, 38270, 2943, NULL, '1.0000', '0.5100', '0.5100', '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 (40150, '2021-12-08', 1831, 38271, 2943, 33131, '1.0000', '16.2420', '16.2420', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40151, '2021-12-08', 2318, 38272, 2943, NULL, '2.0000', '0.5000', '0.5000', '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 (40152, '2021-12-08', 7379, 38273, 2943, NULL, '1.0000', '12.5100', '12.5100', '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 (40153, '2021-12-08', 2491, 38274, 2943, 42551, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40154, '2021-12-08', 2251, 38275, 2943, 42067, '1.0000', '12.1904', '12.1904', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40155, '2021-12-08', 8876, 38276, 2943, NULL, '1.0000', '0.9900', '0.9900', '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 (40156, '2021-12-08', 2506, 38277, 2943, 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 (40157, '2021-12-08', 8763, 38278, 2943, NULL, '4.0000', '5.4000', '5.4000', '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 (40158, '2021-12-08', 1620, 38279, 2943, 42842, '2.0000', '2.2300', '2.2300', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40159, '2021-12-08', 2699, 38280, 2943, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40160, '2021-12-08', 1812, 38281, 2943, 42101, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40161, '2021-12-08', 9683, 38282, 2943, 43362, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40162, '2021-12-08', 1425, 38283, 2943, 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 (40163, '2021-12-08', 2817, 38284, 2943, 30692, '10.0000', '1.8200', '1.8200', '2.5000', '2.5000', '80.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40164, '2021-12-08', 7554, 38285, 2943, NULL, '10.0000', '16.0000', '16.0000', '2.2000', '2.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 (40165, '2021-12-08', 2866, 38286, 2943, 18927, '10.0000', '0.8800', '0.8800', '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 (40166, '2021-12-08', 2237, 38287, 2943, NULL, '1.0000', '-329.8285', '-329.8285', '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 (40167, '2021-12-08', 1863, 38288, 2943, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40168, '2021-12-08', 2135, 38289, 2943, 18930, '1.0000', '2.4732', '2.4732', '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 (40169, '2021-12-08', 1912, 38290, 2943, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40170, '2021-12-08', 7544, 38291, 2943, NULL, '5.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (40171, '2021-12-08', 7544, 38292, 2943, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40172, '2021-12-08', 2289, 38293, 2943, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40173, '2021-12-08', 2135, 38294, 2943, 18930, '1.0000', '2.4732', '2.4732', '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 (40174, '2021-12-08', 1409, 38295, 2943, NULL, '1.0000', '13.5000', '13.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 (40175, '2021-12-08', 1760, 38296, 2943, NULL, '1.0000', '1.5900', '1.5900', '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 (40176, '2021-12-08', 8155, 38297, 2943, NULL, '1.0000', '65.0000', '65.0000', '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 (40177, '2021-12-08', 2360, 38298, 2943, NULL, '1.0000', '0.5200', '0.5200', '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 (40178, '2021-12-08', 8638, 38299, 2943, NULL, '1.0000', '0.5100', '0.5100', '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 (40179, '2021-12-08', 1426, 38300, 2943, 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 (40180, '2021-12-08', 2828, 38301, 2944, 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 (40181, '2021-12-08', 2842, 38302, 2944, 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 (40182, '2021-12-08', 1574, 38303, 2944, 7593, '-33.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 (40183, '2021-12-08', 1574, 38303, 2944, NULL, '34.0000', '1.9600', '1.9600', '2.5000', '2.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 (40184, '2021-12-08', 2730, 38304, 2944, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '36.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 (40185, '2021-12-08', 2135, 38305, 2944, 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 (40186, '2021-12-08', 9577, 38306, 2944, NULL, '2.0000', '0.3200', '0.3200', '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 (40187, '2021-12-08', 3012, 38307, 2944, NULL, '1.0000', '4.7000', '4.7000', '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 (40188, '2021-12-08', 1529, 38308, 2944, 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 (40189, '2021-12-08', 8746, 38309, 2944, NULL, '1.0000', '3.1500', '3.1500', '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 (40190, '2021-12-08', 2331, 38310, 2944, 3834, '-7.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 (40191, '2021-12-08', 2331, 38310, 2944, NULL, '8.0000', '12.0700', '12.0700', '16.0000', '16.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 (40192, '2021-12-08', 1504, 38311, 2944, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (40193, '2021-12-08', 9160, 38312, 2944, NULL, '1.0000', '15.0000', '15.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 (40194, '2021-12-08', 2135, 38313, 2944, 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 (40195, '2021-12-08', 1426, 38314, 2944, 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 (40196, '2021-12-08', 1912, 38315, 2944, 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 (40197, '2021-12-08', 2280, 38316, 2944, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '28.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40198, '2021-12-08', 1872, 38317, 2944, 12520, '-2.0000', '9.0500', '9.0500', '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 (40199, '2021-12-08', 1872, 38317, 2944, NULL, '3.0000', '9.0500', '9.0500', '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 (40200, '2021-12-08', 2105, 38318, 2944, 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 (40201, '2021-12-08', 1311, 38319, 2944, 5437, '-8.0000', '79.3908', '79.3908', '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 (40202, '2021-12-08', 1311, 38319, 2944, NULL, '9.0000', '79.3908', '79.3908', '0.5000', '0.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 (40203, '2021-12-08', 7544, 38320, 2945, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (40204, '2021-12-08', 2289, 38321, 2945, 42836, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '37.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40205, '2021-12-08', 1854, 38322, 2945, 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 (40206, '2021-12-08', 8454, 38323, 2945, NULL, '1.0000', '5.1700', '5.1700', '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 (40207, '2021-12-08', 1646, 38324, 2946, 3239, '-10.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 (40208, '2021-12-08', 1646, 38324, 2946, NULL, '11.0000', '4.5300', '4.5300', '7.5000', '7.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 (40209, '2021-12-08', 2269, 38325, 2946, 2929, '-3.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 (40210, '2021-12-08', 2269, 38325, 2946, NULL, '4.0000', '4.9800', '4.9800', '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 (40211, '2021-12-08', 1302, 38326, 2946, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '5.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 (40212, '2021-12-08', 1440, 38327, 2947, 22353, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (40213, '2021-12-08', 7931, 38328, 2948, NULL, '1.0000', '0.2500', '0.2500', '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 (40214, '2021-12-08', 8136, 38329, 2948, NULL, '1.0000', '29.3500', '29.3500', '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 (40215, '2021-12-08', 7507, 38330, 2948, NULL, '3.0000', '6.5000', '6.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 (40216, '2021-12-08', 8097, 38331, 2948, 43137, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40217, '2021-12-08', 8097, 38331, 2948, 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 (40218, '2021-12-08', 7379, 38332, 2948, NULL, '1.0000', '12.5100', '12.5100', '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 (40219, '2021-12-08', 7526, 38333, 2948, NULL, '1.0000', '0.2400', '0.2400', '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 (40220, '2021-12-08', 9413, 38334, 2948, NULL, '1.0000', '7.9000', '7.9000', '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 (40221, '2021-12-08', 7671, 38335, 2948, NULL, '2.0000', '15.5000', '15.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 (40222, '2021-12-08', 7715, 38336, 2948, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40223, '2021-12-08', 7444, 38337, 2948, 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 (40224, '2021-12-08', 7411, 38338, 2948, NULL, '2.0000', '1.3500', '1.3500', '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 (40225, '2021-12-08', 9412, 38339, 2948, NULL, '1.0000', '25.0000', '25.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 (40226, '2021-12-08', 7586, 38340, 2948, NULL, '1.0000', '4.1700', '4.1700', '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 (40227, '2021-12-08', 9150, 38341, 2948, NULL, '1.0000', '19.8000', '19.8000', '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 (40228, '2021-12-08', 7415, 38342, 2948, 38440, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40229, '2021-12-08', 7411, 38343, 2948, NULL, '1.0000', '1.3500', '1.3500', '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 (40230, '2021-12-08', 7514, 38344, 2948, NULL, '1.0000', '12.9983', '12.9983', '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 (40231, '2021-12-08', 8170, 38345, 2948, NULL, '1.0000', '1.4600', '1.4600', '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 (40232, '2021-12-08', 8665, 38346, 2948, NULL, '1.0000', '6.2700', '6.2700', '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 (40233, '2021-12-08', 7674, 38347, 2948, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '85.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40234, '2021-12-08', 7952, 38348, 2948, NULL, '1.0000', '10.4000', '10.4000', '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 (40235, '2021-12-08', 9183, 38349, 2948, NULL, '1.0000', '8.3000', '8.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 (40236, '2021-12-08', 9092, 38350, 2948, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '179.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40237, '2021-12-08', 9337, 38351, 2948, NULL, '5.0000', '6.8067', '6.8067', '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 (40238, '2021-12-08', 7708, 38352, 2948, NULL, '1.0000', '6.1400', '6.1400', '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 (40239, '2021-12-08', 8089, 38353, 2948, 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 (40240, '2021-12-08', 2315, 38354, 2948, NULL, '1.0000', '0.4740', '0.4740', '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 (40241, '2021-12-08', 9271, 38355, 2948, 36662, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40242, '2021-12-08', 7674, 38356, 2948, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '85.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40243, '2021-12-08', 7518, 38357, 2948, NULL, '1.0000', '-67.2578', '-67.2578', '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 (40244, '2021-12-08', 7709, 38358, 2948, NULL, '2.0000', '35.8000', '35.8000', '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 (40245, '2021-12-08', 8063, 38359, 2948, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40246, '2021-12-08', 7482, 38360, 2948, NULL, '1.0000', '2.4981', '2.4981', '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 (40247, '2021-12-08', 2476, 38361, 2948, 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 (40248, '2021-12-08', 7674, 38362, 2948, 33721, '6.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40249, '2021-12-08', 8172, 38363, 2948, NULL, '6.0000', '40.7000', '40.7000', '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 (40250, '2021-12-08', 7995, 38364, 2948, NULL, '1.0000', '40.2000', '40.2000', '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 (40251, '2021-12-08', 7519, 38365, 2948, 43150, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40252, '2021-12-08', 7391, 38366, 2948, NULL, '1.0000', '-26.2683', '-26.2683', '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 (40253, '2021-12-08', 7524, 38367, 2948, NULL, '1.0000', '103.0922', '103.0922', '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 (40254, '2021-12-08', 8038, 38368, 2948, NULL, '1.0000', '6.7600', '6.7600', '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 (40255, '2021-12-08', 1837, 38369, 2948, 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 (40256, '2021-12-08', 8277, 38370, 2948, NULL, '1.0000', '6.9625', '6.9625', '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 (40257, '2021-12-08', 7709, 38371, 2948, NULL, '2.0000', '35.8000', '35.8000', '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 (40258, '2021-12-08', 9563, 38372, 2948, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '28.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40259, '2021-12-08', 9563, 38373, 2948, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '28.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40260, '2021-12-08', 9563, 38374, 2948, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '28.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40261, '2021-12-08', 9563, 38375, 2948, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '28.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40262, '2021-12-08', 2321, 38376, 2949, 39848, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40263, '2021-12-08', 2169, 38377, 2949, NULL, '1.0000', '1.1500', '1.1500', '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 (40264, '2021-12-08', 8746, 38378, 2949, 43354, '1.0000', '2.9988', '2.9988', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40265, '2021-12-08', 1499, 38379, 2949, 42841, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40266, '2021-12-08', 2293, 38380, 2949, NULL, '3.0000', '1.4400', '1.4400', '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 (40267, '2021-12-08', 8654, 38381, 2949, NULL, '1.0000', '5.8000', '5.8000', '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 (40268, '2021-12-08', 1338, 38382, 2949, 18934, '1.0000', '3.7257', '3.7257', '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 (40269, '2021-12-08', 2769, 38383, 2949, 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 (40270, '2021-12-08', 2451, 38384, 2949, 19830, '1.0000', '8.8000', '8.8000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40271, '2021-12-08', 1805, 38385, 2949, NULL, '1.0000', '4.5132', '4.5132', '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 (40272, '2021-12-08', 2229, 38386, 2949, 39988, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40273, '2021-12-08', 1425, 38387, 2949, 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 (40274, '2021-12-08', 2511, 38388, 2949, NULL, '1.0000', '8.8000', '8.8000', '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 (40275, '2021-12-08', 1728, 38389, 2949, 19324, '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 (40276, '2021-12-08', 1912, 38390, 2949, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40277, '2021-12-08', 1409, 38391, 2949, NULL, '1.0000', '13.5000', '13.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 (40278, '2021-12-08', 1912, 38392, 2949, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40279, '2021-12-08', 2068, 38393, 2949, 38541, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40280, '2021-12-08', 1621, 38394, 2949, 42079, '1.0000', '28.9137', '28.9137', '7.5000', '7.5000', '54.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40281, '2021-12-08', 1499, 38395, 2949, 42841, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40282, '2021-12-08', 1637, 38396, 2949, 42839, '1.0000', '-41.1667', '-41.1667', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40283, '2021-12-08', 8761, 38397, 2949, NULL, '1.0000', '8.7100', '8.7100', '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 (40284, '2021-12-08', 9673, 38398, 2949, 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 (40285, '2021-12-08', 8740, 38399, 2949, 43366, '1.0000', '1.6971', '1.6971', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40286, '2021-12-08', 1346, 38400, 2949, 42807, '6.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40287, '2021-12-08', 2636, 38401, 2950, 34956, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40288, '2021-12-08', 2236, 38402, 2950, 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 (40289, '2021-12-08', 1825, 38403, 2950, 23678, '1.0000', '4.3850', '4.3850', '7.0000', '7.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 (40290, '2021-12-08', 3005, 38404, 2950, 23148, '1.0000', '8.0000', '8.0000', '10.5000', '10.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 (40291, '2021-12-08', 2167, 38405, 2950, 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 (40292, '2021-12-08', 1837, 38406, 2951, NULL, '15.0000', '0.5500', '0.5500', '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 (40293, '2021-12-08', 2342, 38407, 2951, 42823, '1.0000', '1.8601', '1.8601', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40294, '2021-12-08', 2342, 38407, 2951, 19387, '9.0000', '1.8601', '1.8601', '2.5000', '2.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 (40295, '2021-12-08', 8982, 38408, 2951, NULL, '1.0000', '10.5040', '10.5040', '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 (40296, '2021-12-08', 1787, 38409, 2951, 39911, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40297, '2021-12-08', 3026, 38410, 2951, 23976, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '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 (40298, '2021-12-08', 2280, 38411, 2952, NULL, '1.0000', '-177.9360', '-177.9360', '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 (40299, '2021-12-08', 1863, 38412, 2952, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40300, '2021-12-08', 2242, 38413, 2952, NULL, '3.0000', '0.5518', '0.5518', '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 (40301, '2021-12-08', 2237, 38414, 2952, NULL, '1.0000', '-329.8285', '-329.8285', '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 (40302, '2021-12-08', 2020, 38415, 2952, NULL, '2.0000', '9.2832', '9.2832', '8.5000', '8.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 (40303, '2021-12-08', 8448, 38416, 2952, NULL, '1.0000', '6.8900', '6.8900', '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 (40304, '2021-12-08', 9563, 38417, 2952, 42660, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40305, '2021-12-08', 1874, 38418, 2952, 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 (40306, '2021-12-08', 2025, 38419, 2952, 42639, '2.0000', '5.0170', '5.0170', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40307, '2021-12-08', 2103, 38420, 2952, 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 (40308, '2021-12-08', 2237, 38421, 2952, NULL, '1.0000', '-329.8285', '-329.8285', '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 (40309, '2021-12-08', 1912, 38422, 2952, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40310, '2021-12-08', 1699, 38423, 2952, NULL, '1.0000', '3.2000', '3.2000', '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 (40311, '2021-12-08', 2315, 38424, 2953, NULL, '2.0000', '0.4740', '0.4740', '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 (40312, '2021-12-08', 7558, 38425, 2953, NULL, '10.0000', '2.2000', '2.2000', '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 (40313, '2021-12-08', 7671, 38426, 2953, NULL, '3.0000', '15.5000', '15.5000', '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 (40314, '2021-12-08', 7564, 38427, 2953, 30930, '3.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40315, '2021-12-08', 7380, 38428, 2953, NULL, '1.0000', '8.0000', '8.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 (40316, '2021-12-08', 8966, 38429, 2953, 37843, '2.0000', '6.4994', '6.4994', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40317, '2021-12-08', 7857, 38430, 2953, NULL, '1.0000', '14.5620', '14.5620', '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 (40318, '2021-12-08', 9640, 38431, 2953, 43541, '1.0000', '38.0000', '38.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40319, '2021-12-08', 2906, 38432, 2953, 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 (40320, '2021-12-08', 8324, 38433, 2953, 43390, '1.0000', '3.1377', '3.1377', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40321, '2021-12-08', 8793, 38434, 2953, 31662, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40322, '2021-12-08', 7473, 38435, 2953, NULL, '6.0000', '25.2998', '25.2998', '0.6000', '0.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 (40323, '2021-12-08', 7411, 38436, 2953, NULL, '3.0000', '1.3500', '1.3500', '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 (40324, '2021-12-08', 8085, 38437, 2953, NULL, '3.0000', '14.0000', '14.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 (40325, '2021-12-08', 7354, 38438, 2953, NULL, '1.0000', '18.0000', '18.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 (40326, '2021-12-08', 7674, 38439, 2953, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '77.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40327, '2021-12-08', 7591, 38440, 2953, NULL, '1.0000', '2.7500', '2.7500', '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 (40328, '2021-12-08', 8596, 38441, 2953, NULL, '1.0000', '17.0000', '17.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 (40329, '2021-12-08', 2506, 38442, 2953, 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 (40330, '2021-12-08', 7643, 38443, 2953, NULL, '1.0000', '2.1100', '2.1100', '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 (40331, '2021-12-08', 9330, 38444, 2953, 33724, '1.0000', '9.5399', '9.5399', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40332, '2021-12-08', 1501, 38445, 2953, 43535, '1.0000', '2.5539', '2.5539', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40333, '2021-12-08', 7714, 38446, 2953, 37846, '3.0000', '0.4200', '0.4200', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40334, '2021-12-08', 7385, 38447, 2953, NULL, '10.0000', '17.6346', '17.6346', '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 (40335, '2021-12-08', 7411, 38448, 2953, NULL, '1.0000', '1.3500', '1.3500', '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 (40336, '2021-12-08', 2652, 38449, 2953, 43510, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40337, '2021-12-08', 8166, 38450, 2953, NULL, '3.0000', '4.6000', '4.6000', '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 (40338, '2021-12-08', 7886, 38451, 2953, NULL, '1.0000', '2.8333', '2.8333', '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 (40339, '2021-12-08', 2295, 38452, 2953, 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 (40340, '2021-12-08', 2315, 38453, 2953, NULL, '1.0000', '0.4740', '0.4740', '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 (40341, '2021-12-08', 7753, 38454, 2953, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40342, '2021-12-08', 8154, 38455, 2953, NULL, '1.0000', '12.3000', '12.3000', '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 (40343, '2021-12-08', 7787, 38456, 2953, NULL, '1.0000', '-9.9201', '-9.9201', '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 (40344, '2021-12-08', 9160, 38457, 2953, NULL, '1.0000', '41.6640', '41.6640', '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 (40345, '2021-12-08', 7704, 38458, 2953, 39631, '2.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40346, '2021-12-08', 7609, 38459, 2953, NULL, '1.0000', '4.3300', '4.3300', '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 (40347, '2021-12-08', 7635, 38460, 2953, NULL, '1.0000', '6.6300', '6.6300', '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 (40348, '2021-12-08', 2231, 38461, 2953, NULL, '1.0000', '33.0000', '33.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 (40349, '2021-12-08', 7411, 38462, 2953, NULL, '2.0000', '1.3500', '1.3500', '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 (40350, '2021-12-08', 8467, 38463, 2953, NULL, '1.0000', '60.0000', '60.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40351, '2021-12-08', 7672, 38464, 2953, NULL, '1.0000', '1.0200', '1.0200', '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 (40352, '2021-12-08', 7524, 38465, 2953, NULL, '2.0000', '103.0922', '103.0922', '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 (40353, '2021-12-08', 9098, 38466, 2953, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40354, '2021-12-08', 9650, 38467, 2953, 43132, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40355, '2021-12-08', 7514, 38468, 2953, NULL, '1.0000', '12.9983', '12.9983', '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 (40356, '2021-12-08', 9556, 38469, 2953, 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 (40357, '2021-12-08', 1837, 38470, 2953, 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 (40358, '2021-12-08', 2289, 38471, 2953, NULL, '4.0000', '0.2300', '0.2300', '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 (40359, '2021-12-08', 7633, 38472, 2953, NULL, '1.0000', '2.8700', '2.8700', '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 (40360, '2021-12-08', 7446, 38473, 2953, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40361, '2021-12-08', 7412, 38474, 2953, NULL, '1.0000', '1.5200', '1.5200', '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 (40362, '2021-12-08', 2935, 38475, 2954, NULL, '1.0000', '7.9400', '7.9400', '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 (40363, '2021-12-08', 1387, 38476, 2954, 23677, '1.0000', '11.7000', '11.7000', '16.0000', '16.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 (40364, '2021-12-08', 1388, 38477, 2954, 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 (40365, '2021-12-08', 1432, 38478, 2954, 38557, '1.0000', '9.5117', '9.5117', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40366, '2021-12-08', 2254, 38479, 2954, 42099, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40367, '2021-12-08', 1621, 38480, 2954, 42079, '1.0000', '28.9137', '28.9137', '7.5000', '7.5000', '53.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40368, '2021-12-08', 1651, 38481, 2954, NULL, '1.0000', '8.4739', '8.4739', '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 (40369, '2021-12-08', 1346, 38482, 2954, 42807, '2.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40370, '2021-12-08', 7671, 38483, 2954, NULL, '2.0000', '15.5000', '15.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 (40371, '2021-12-08', 9563, 38484, 2954, 42660, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40372, '2021-12-08', 1831, 38485, 2954, 33131, '1.0000', '16.2420', '16.2420', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40373, '2021-12-08', 1637, 38486, 2954, 42839, '1.0000', '-41.1667', '-41.1667', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40374, '2021-12-08', 8444, 38487, 2954, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40375, '2021-12-08', 2028, 38488, 2954, 39221, '1.0000', '23.0000', '23.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40376, '2021-12-08', 1386, 38489, 2954, 41413, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40377, '2021-12-08', 2768, 38490, 2954, 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 (40378, '2021-12-08', 9577, 38491, 2954, NULL, '2.0000', '0.3200', '0.3200', '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 (40379, '2021-12-08', 1912, 38492, 2954, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40380, '2021-12-09', 1756, 38493, 2955, 6779, '3.0000', '4.9900', '4.9900', '6.5000', '6.5000', '11.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 (40381, '2021-12-09', 1337, 38494, 2955, 40900, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40382, '2021-12-09', 1493, 38495, 2955, 32033, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40383, '2021-12-09', 1561, 38496, 2955, 37586, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40384, '2021-12-09', 1428, 38497, 2955, 31728, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40385, '2021-12-09', 1665, 38498, 2955, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40386, '2021-12-09', 1550, 38499, 2955, 37569, '1.0000', '337.8612', '337.8612', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40387, '2021-12-09', 2712, 38500, 2955, 42626, '6.0000', '0.2600', '0.2600', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40388, '2021-12-09', 2712, 38501, 2955, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40389, '2021-12-09', 1432, 38502, 2955, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40390, '2021-12-09', 1843, 38503, 2955, 16896, '5.0000', '3.9000', '3.9000', '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 (40391, '2021-12-09', 1695, 38504, 2955, 40860, '1.0000', '83.8723', '83.8723', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40392, '2021-12-09', 7482, 38505, 2955, 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 (40393, '2021-12-09', 7523, 38506, 2955, NULL, '1.0000', '1.8300', '1.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 (40394, '2021-12-09', 2280, 38507, 2955, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40395, '2021-12-09', 2352, 38508, 2955, 17082, '4.0000', '20.0000', '20.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 (40396, '2021-12-09', 2352, 38508, 2955, 10317, '1.0000', '20.0000', '20.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 (40397, '2021-12-09', 2660, 38509, 2955, 42944, '9.0000', '0.7000', '0.7000', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40398, '2021-12-09', 2660, 38510, 2955, 42944, '9.0000', '0.7000', '0.7000', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40399, '2021-12-09', 1904, 38511, 2955, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40400, '2021-12-09', 9453, 38512, 2955, 40640, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40401, '2021-12-09', 1602, 38513, 2955, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40402, '2021-12-09', 9637, 38514, 2955, 41984, '1.0000', '36.5000', '36.5000', '48.5000', '48.5000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40403, '2021-12-09', 1706, 38515, 2955, NULL, '1.0000', '14.8866', '14.8866', '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 (40404, '2021-12-09', 2633, 38516, 2955, 41974, '2.0000', '3.5000', '3.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40405, '2021-12-09', 2285, 38517, 2955, 43049, '1.0000', '36.5090', '36.5090', '49.0000', '49.0000', '3.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40406, '2021-12-09', 2380, 38518, 2955, 32874, '2.0000', '49.5000', '49.5000', '65.5000', '65.5000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40407, '2021-12-09', 1668, 38519, 2955, 31982, '1.0000', '85.4496', '85.4496', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40408, '2021-12-09', 1888, 38520, 2955, NULL, '1.0000', '-187.9375', '-187.9375', '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 (40409, '2021-12-09', 2624, 38521, 2955, 40871, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40410, '2021-12-09', 2108, 38522, 2955, 6020, '1.0000', '4.7500', '4.7500', '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 (40411, '2021-12-09', 7824, 38523, 2955, 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 (40412, '2021-12-09', 2337, 38524, 2955, 40646, '1.0000', '51.0000', '51.0000', '67.5000', '67.5000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40413, '2021-12-09', 1928, 38525, 2955, 5630, '1.0000', '83.6578', '83.6578', '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 (40414, '2021-12-09', 1602, 38526, 2955, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40415, '2021-12-09', 2362, 38527, 2955, 22234, '2.0000', '87.0239', '87.0239', '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 (40416, '2021-12-09', 2362, 38527, 2955, 22405, '8.0000', '87.0239', '87.0239', '12.0000', '12.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 (40417, '2021-12-09', 8737, 38528, 2955, NULL, '1.0000', '9.8000', '9.8000', '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 (40418, '2021-12-09', 1502, 38529, 2955, NULL, '2.0000', '90.0000', '90.0000', '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 (40419, '2021-12-09', 1528, 38530, 2955, 40610, '4.0000', '68.1861', '68.1861', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40420, '2021-12-09', 9647, 38531, 2955, 41996, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40421, '2021-12-09', 8761, 38532, 2955, 42928, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40422, '2021-12-09', 9167, 38533, 2955, NULL, '1.0000', '11.9000', '11.9000', '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 (40423, '2021-12-09', 2224, 38534, 2955, 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 (40424, '2021-12-09', 9491, 38535, 2955, 32629, '1.0000', '14.5000', '14.5000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40425, '2021-12-09', 2259, 38536, 2955, 40879, '1.0000', '19.7299', '19.7299', '28.0000', '28.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40426, '2021-12-09', 1338, 38537, 2955, 40614, '1.0000', '0.3294', '0.3294', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40427, '2021-12-09', 2858, 38538, 2955, 40607, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40428, '2021-12-09', 1807, 38539, 2955, NULL, '1.0000', '2.3000', '2.3000', '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 (40429, '2021-12-09', 2167, 38540, 2955, 40903, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40430, '2021-12-09', 2643, 38541, 2955, 43344, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40431, '2021-12-09', 2615, 38542, 2955, 14562, '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 (40432, '2021-12-09', 2169, 38543, 2955, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40433, '2021-12-09', 1730, 38544, 2955, 33210, '1.0000', '23.9100', '23.9100', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40434, '2021-12-09', 1730, 38544, 2955, 23608, '1.0000', '23.9100', '23.9100', '32.0000', '32.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 (40435, '2021-12-09', 9577, 38545, 2955, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40436, '2021-12-09', 1409, 38546, 2955, 37542, '1.0000', '13.0996', '13.0996', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40437, '2021-12-09', 1602, 38547, 2955, 43035, '2.0000', '6.9202', '6.9202', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40438, '2021-12-09', 2276, 38548, 2955, 3116, '1.0000', '55.1000', '55.1000', '73.0000', '73.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40439, '2021-12-09', 2567, 38549, 2956, 42637, '2.0000', '31.0140', '31.0140', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40440, '2021-12-09', 2289, 38550, 2956, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40441, '2021-12-09', 8566, 38551, 2956, 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 (40442, '2021-12-09', 7564, 38552, 2956, NULL, '1.0000', '0.6400', '0.6400', '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 (40443, '2021-12-09', 1665, 38553, 2956, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40444, '2021-12-09', 7707, 38554, 2956, NULL, '1.0000', '7.0000', '7.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 (40445, '2021-12-09', 1529, 38555, 2956, NULL, '1.0000', '3.4997', '3.4997', '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 (40446, '2021-12-09', 7707, 38556, 2956, NULL, '1.0000', '7.0000', '7.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 (40447, '2021-12-09', 9577, 38557, 2956, NULL, '2.0000', '0.3200', '0.3200', '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 (40448, '2021-12-09', 2237, 38558, 2956, NULL, '1.0000', '-329.8285', '-329.8285', '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 (40449, '2021-12-09', 1305, 38559, 2956, 34636, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40450, '2021-12-09', 1863, 38560, 2956, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40451, '2021-12-09', 2277, 38561, 2956, 43261, '1.0000', '0.9399', '0.9399', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40452, '2021-12-09', 2379, 38562, 2956, NULL, '1.0000', '1.8000', '1.8000', '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 (40453, '2021-12-09', 2254, 38563, 2956, NULL, '1.0000', '17.9400', '17.9400', '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 (40454, '2021-12-09', 2221, 38564, 2956, 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 (40455, '2021-12-09', 2643, 38565, 2956, 43363, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40456, '2021-12-09', 2167, 38566, 2956, 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 (40457, '2021-12-09', 2486, 38567, 2957, 24874, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (40458, '2021-12-09', 1667, 38568, 2957, 42826, '2.0000', '22.4947', '22.4947', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40459, '2021-12-09', 1809, 38569, 2958, 42557, '1.0000', '9.5248', '9.5248', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40460, '2021-12-09', 1935, 38570, 2958, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40461, '2021-12-09', 7411, 38571, 2958, NULL, '1.0000', '1.3500', '1.3500', '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 (40462, '2021-12-09', 1580, 38572, 2959, NULL, '2.0000', '0.9900', '0.9900', '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 (40463, '2021-12-09', 1532, 38573, 2959, NULL, '2.0000', '7.4815', '7.4815', '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 (40464, '2021-12-09', 2242, 38574, 2959, NULL, '4.0000', '0.5518', '0.5518', '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 (40465, '2021-12-09', 2252, 38575, 2960, 2789, '-17.0000', '9.5000', '9.5000', '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 (40466, '2021-12-09', 2252, 38575, 2960, NULL, '18.0000', '9.5000', '9.5000', '16.0000', '16.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 (40467, '2021-12-09', 2706, 38576, 2960, 12525, '-1.0000', '6.5900', '6.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 (40468, '2021-12-09', 2706, 38576, 2960, NULL, '2.0000', '6.5900', '6.5900', '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 (40469, '2021-12-09', 1761, 38577, 2960, 3171, '-5.0000', '1.8200', '1.8200', '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 (40470, '2021-12-09', 1761, 38577, 2960, NULL, '6.0000', '1.8200', '1.8200', '3.0000', '3.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 (40471, '2021-12-09', 2360, 38578, 2960, 3862, '-47.0000', '0.5200', '0.5200', '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 (40472, '2021-12-09', 2360, 38578, 2960, NULL, '48.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40473, '2021-12-09', 1584, 38579, 2960, 7601, '-10.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 (40474, '2021-12-09', 1584, 38579, 2960, NULL, '11.0000', '90.0000', '90.0000', '8.0000', '8.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 (40475, '2021-12-09', 1904, 38580, 2960, 5442, '-18.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 (40476, '2021-12-09', 1904, 38580, 2960, NULL, '19.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (40477, '2021-12-09', 1912, 38581, 2960, NULL, '2.0000', '0.3200', '0.3200', '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 (40478, '2021-12-09', 1890, 38582, 2960, 5430, '-6.0000', '90.0000', '90.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 (40479, '2021-12-09', 1890, 38582, 2960, NULL, '12.0000', '90.0000', '90.0000', '4.5000', '4.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 (40480, '2021-12-09', 1411, 38583, 2960, NULL, '1.0000', '25.9000', '25.9000', '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 (40481, '2021-12-09', 1912, 38584, 2960, 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 (40482, '2021-12-09', 2964, 38585, 2960, NULL, '1.0000', '6.6000', '6.6000', '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 (40483, '2021-12-09', 1831, 38586, 2960, NULL, '1.0000', '8.4400', '8.4400', '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 (40484, '2021-12-09', 1837, 38587, 2960, 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 (40485, '2021-12-09', 1418, 38588, 2960, NULL, '1.0000', '8.0000', '8.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 (40486, '2021-12-09', 1840, 38589, 2960, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.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 (40487, '2021-12-09', 2290, 38590, 2960, 2950, '-2.0000', '6.8500', '6.8500', '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 (40488, '2021-12-09', 2290, 38590, 2960, NULL, '3.0000', '6.8500', '6.8500', '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 (40489, '2021-12-09', 2280, 38591, 2960, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40490, '2021-12-09', 1837, 38592, 2960, 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 (40491, '2021-12-09', 1863, 38593, 2960, 10808, '-101.0000', '0.4136', '0.4136', '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 (40492, '2021-12-09', 1863, 38593, 2960, NULL, '102.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-102.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40493, '2021-12-09', 1904, 38594, 2960, 5442, '-18.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 (40494, '2021-12-09', 1904, 38594, 2960, NULL, '19.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (40495, '2021-12-09', 1667, 38595, 2960, 9745, '-32.0000', '5.9400', '5.9400', '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 (40496, '2021-12-09', 1667, 38595, 2960, NULL, '33.0000', '5.9400', '5.9400', '8.5000', '8.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 (40497, '2021-12-09', 2244, 38596, 2960, 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 (40498, '2021-12-09', 1751, 38597, 2960, 6681, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '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 (40499, '2021-12-09', 2712, 38598, 2960, 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 (40500, '2021-12-09', 2136, 38599, 2960, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '81.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 (40501, '2021-12-09', 1533, 38600, 2960, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '7.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 (40502, '2021-12-09', 1502, 38601, 2960, 18925, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '6.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 (40503, '2021-12-09', 1595, 38602, 2960, 8360, '-3.0000', '20.6900', '20.6900', '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 (40504, '2021-12-09', 1595, 38602, 2960, NULL, '4.0000', '20.6900', '20.6900', '26.5000', '26.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 (40505, '2021-12-09', 1904, 38603, 2960, 5442, '-18.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 (40506, '2021-12-09', 1904, 38603, 2960, NULL, '19.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (40507, '2021-12-09', 9640, 38604, 2961, NULL, '1.0000', '38.0000', '38.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 (40508, '2021-12-09', 1761, 38605, 2961, 3171, '-6.0000', '1.8200', '1.8200', '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 (40509, '2021-12-09', 1761, 38605, 2961, NULL, '12.0000', '1.8200', '1.8200', '3.0000', '3.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 (40510, '2021-12-09', 1905, 38606, 2961, 5443, '-10.0000', '0.4000', '0.4000', '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 (40511, '2021-12-09', 1905, 38606, 2961, NULL, '11.0000', '0.4000', '0.4000', '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 (40512, '2021-12-09', 2821, 38607, 2961, 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 (40513, '2021-12-09', 8288, 38608, 2962, NULL, '1.0000', '20.0000', '20.0000', '1.8000', '1.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 (40514, '2021-12-09', 8735, 38609, 2962, NULL, '1.0000', '5.6000', '5.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 (40515, '2021-12-09', 7666, 38610, 2962, NULL, '1.0000', '0.4000', '0.4000', '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 (40516, '2021-12-09', 7385, 38611, 2962, NULL, '2.0000', '17.6346', '17.6346', '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 (40517, '2021-12-09', 2287, 38612, 2962, NULL, '2.0000', '2.3000', '2.3000', '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 (40518, '2021-12-09', 7704, 38613, 2962, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40519, '2021-12-09', 7641, 38614, 2962, NULL, '1.0000', '-7.4783', '-7.4783', '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 (40520, '2021-12-09', 8562, 38615, 2962, NULL, '1.0000', '12.0000', '12.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 (40521, '2021-12-09', 8300, 38616, 2962, NULL, '3.0000', '7.4300', '7.4300', '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 (40522, '2021-12-09', 7810, 38617, 2962, NULL, '1.0000', '13.5000', '13.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 (40523, '2021-12-09', 7385, 38618, 2962, NULL, '2.0000', '17.6346', '17.6346', '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 (40524, '2021-12-09', 8135, 38619, 2962, NULL, '1.0000', '13.9000', '13.9000', '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 (40525, '2021-12-09', 9681, 38620, 2962, 43578, '2.0000', '7.8000', '7.8000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40526, '2021-12-09', 7491, 38621, 2962, 43071, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40527, '2021-12-09', 9271, 38622, 2962, NULL, '1.0000', '0.9900', '0.9900', '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 (40528, '2021-12-09', 8735, 38623, 2962, NULL, '1.0000', '5.6000', '5.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 (40529, '2021-12-09', 9193, 38624, 2962, NULL, '1.0000', '5.5150', '5.5150', '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 (40530, '2021-12-09', 7666, 38625, 2962, NULL, '1.0000', '0.4000', '0.4000', '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 (40531, '2021-12-09', 8720, 38626, 2962, NULL, '1.0000', '31.1100', '31.1100', '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 (40532, '2021-12-09', 3001, 38627, 2962, NULL, '14.0000', '1.5000', '1.5000', '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 (40533, '2021-12-09', 7819, 38628, 2962, NULL, '1.0000', '9.5000', '9.5000', '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 (40534, '2021-12-09', 7370, 38629, 2962, 42427, '1.0000', '12.1100', '12.1100', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40535, '2021-12-09', 7967, 38630, 2962, 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 (40536, '2021-12-09', 8708, 38631, 2962, 30928, '1.0000', '8.6000', '8.6000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40537, '2021-12-09', 8002, 38632, 2962, NULL, '1.0000', '33.0000', '33.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40538, '2021-12-09', 9154, 38633, 2962, NULL, '1.0000', '10.6800', '10.6800', '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 (40539, '2021-12-09', 7674, 38634, 2962, 33721, '3.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '74.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40540, '2021-12-09', 8965, 38635, 2962, NULL, '1.0000', '52.9900', '52.9900', '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 (40541, '2021-12-09', 8504, 38636, 2962, NULL, '6.0000', '2.5000', '2.5000', '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 (40542, '2021-12-09', 7713, 38637, 2962, 37845, '5.0000', '0.4202', '0.4202', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40543, '2021-12-09', 7518, 38638, 2962, NULL, '1.0000', '-67.2578', '-67.2578', '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 (40544, '2021-12-09', 7473, 38639, 2962, NULL, '10.0000', '25.2998', '25.2998', '0.6000', '0.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 (40545, '2021-12-09', 7703, 38640, 2962, NULL, '2.0000', '22.9900', '22.9900', '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 (40546, '2021-12-09', 1557, 38641, 2962, NULL, '1.0000', '7.6000', '7.6000', '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 (40547, '2021-12-09', 7514, 38642, 2962, NULL, '2.0000', '12.9983', '12.9983', '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 (40548, '2021-12-09', 9092, 38643, 2962, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '177.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40549, '2021-12-09', 8941, 38644, 2962, NULL, '1.0000', '12.0000', '12.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 (40550, '2021-12-09', 8456, 38645, 2962, NULL, '1.0000', '5.5400', '5.5400', '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 (40551, '2021-12-09', 7917, 38646, 2962, NULL, '1.0000', '5.0000', '5.0000', '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 (40552, '2021-12-09', 7714, 38647, 2962, 37846, '2.0000', '0.4200', '0.4200', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40553, '2021-12-09', 7317, 38648, 2962, NULL, '1.0000', '29.3700', '29.3700', '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 (40554, '2021-12-09', 2315, 38649, 2962, NULL, '6.0000', '0.4740', '0.4740', '0.6000', '0.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 (40555, '2021-12-09', 2713, 38650, 2962, 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 (40556, '2021-12-09', 7886, 38651, 2962, NULL, '1.0000', '2.8333', '2.8333', '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 (40557, '2021-12-09', 8363, 38652, 2962, NULL, '1.0000', '38.0000', '38.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 (40558, '2021-12-09', 7753, 38653, 2962, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40559, '2021-12-09', 2219, 38654, 2962, 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 (40560, '2021-12-09', 7912, 38655, 2962, NULL, '1.0000', '8.0361', '8.0361', '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 (40561, '2021-12-09', 9193, 38656, 2962, NULL, '1.0000', '5.5150', '5.5150', '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 (40562, '2021-12-09', 7611, 38657, 2962, NULL, '1.0000', '5.0485', '5.0485', '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 (40563, '2021-12-09', 8858, 38658, 2962, NULL, '1.0000', '27.7076', '27.7076', '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 (40564, '2021-12-09', 9556, 38659, 2962, 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 (40565, '2021-12-09', 7758, 38660, 2962, 43103, '1.0000', '-45.9138', '-45.9138', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40566, '2021-12-09', 1533, 38661, 2962, 43053, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40567, '2021-12-09', 1841, 38662, 2962, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40568, '2021-12-09', 2315, 38663, 2962, NULL, '1.0000', '0.4740', '0.4740', '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 (40569, '2021-12-09', 7666, 38664, 2962, NULL, '1.0000', '0.4000', '0.4000', '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 (40570, '2021-12-09', 7444, 38665, 2962, 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 (40571, '2021-12-09', 9101, 38666, 2962, NULL, '1.0000', '32.1800', '32.1800', '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 (40572, '2021-12-09', 9534, 38667, 2962, NULL, '1.0000', '19.8900', '19.8900', '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 (40573, '2021-12-09', 7402, 38668, 2962, NULL, '1.0000', '116.3300', '116.3300', '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 (40574, '2021-12-09', 7983, 38669, 2962, NULL, '1.0000', '42.5100', '42.5100', '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 (40575, '2021-12-09', 7893, 38670, 2962, NULL, '1.0000', '12.0000', '12.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 (40576, '2021-12-09', 7797, 38671, 2962, NULL, '1.0000', '6.3000', '6.3000', '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 (40577, '2021-12-09', 7892, 38672, 2962, NULL, '1.0000', '4.2000', '4.2000', '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 (40578, '2021-12-09', 8067, 38673, 2962, NULL, '1.0000', '29.1700', '29.1700', '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 (40579, '2021-12-09', 1339, 38674, 2962, 43594, '1.0000', '1.5373', '1.5373', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40580, '2021-12-09', 8324, 38675, 2962, 43593, '1.0000', '2.9711', '2.9711', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40581, '2021-12-09', 8596, 38676, 2962, NULL, '1.0000', '17.0000', '17.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 (40582, '2021-12-09', 7509, 38677, 2962, 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 (40583, '2021-12-09', 7899, 38678, 2962, 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 (40584, '2021-12-09', 7334, 38679, 2962, NULL, '1.0000', '8.1600', '8.1600', '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 (40585, '2021-12-09', 9337, 38680, 2962, NULL, '2.0000', '6.8067', '6.8067', '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 (40586, '2021-12-09', 9445, 38681, 2963, 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 (40587, '2021-12-09', 1499, 38682, 2963, 42841, '2.0000', '0.6447', '0.6447', '0.7000', '0.7000', '9.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40588, '2021-12-09', 2655, 38683, 2963, 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 (40589, '2021-12-09', 1573, 38684, 2963, 42567, '1.0000', '23.1275', '23.1275', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40590, '2021-12-09', 1912, 38685, 2963, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40591, '2021-12-09', 1807, 38686, 2963, NULL, '4.0000', '41.5000', '41.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 (40592, '2021-12-09', 7609, 38687, 2963, NULL, '1.0000', '4.3300', '4.3300', '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 (40593, '2021-12-09', 2699, 38688, 2963, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40594, '2021-12-09', 1805, 38689, 2963, NULL, '1.0000', '4.5132', '4.5132', '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 (40595, '2021-12-09', 2221, 38690, 2963, 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 (40596, '2021-12-09', 1873, 38691, 2963, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40597, '2021-12-09', 1399, 38692, 2963, NULL, '1.0000', '16.1094', '16.1094', '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 (40598, '2021-12-09', 1400, 38693, 2963, 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 (40599, '2021-12-09', 7411, 38694, 2963, NULL, '1.0000', '1.3500', '1.3500', '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 (40600, '2021-12-09', 2280, 38695, 2963, NULL, '1.0000', '-177.9360', '-177.9360', '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 (40601, '2021-12-09', 1529, 38696, 2963, NULL, '1.0000', '3.4997', '3.4997', '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 (40602, '2021-12-09', 9532, 38697, 2963, 40119, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40603, '2021-12-09', 1967, 38698, 2963, 22605, '1.0000', '20.0200', '20.0200', '28.0000', '28.0000', '0.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 (40604, '2021-12-09', 1574, 38699, 2963, NULL, '1.0000', '1.7001', '1.7001', '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 (40605, '2021-12-09', 2953, 38700, 2963, NULL, '3.0000', '8.0000', '8.0000', '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 (40606, '2021-12-09', 1347, 38701, 2963, 41415, '2.0000', '3.3775', '3.3775', '4.5000', '4.5000', '28.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40607, '2021-12-09', 1541, 38702, 2963, 43276, '1.0000', '18.7200', '18.7200', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40608, '2021-12-09', 2699, 38703, 2963, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40609, '2021-12-09', 1665, 38704, 2963, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40610, '2021-12-09', 8608, 38705, 2963, NULL, '1.0000', '0.9000', '0.9000', '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 (40611, '2021-12-09', 2442, 38706, 2963, 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 (40612, '2021-12-09', 2775, 38707, 2963, 23161, '1.0000', '18.9000', '18.9000', '25.0000', '25.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 (40613, '2021-12-09', 3054, 38708, 2963, 43224, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40614, '2021-12-09', 1670, 38709, 2963, 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 (40615, '2021-12-09', 9199, 38710, 2963, NULL, '1.0000', '5.4200', '5.4200', '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 (40616, '2021-12-09', 9503, 38711, 2963, 33350, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40617, '2021-12-09', 2256, 38712, 2963, 43267, '1.0000', '13.6860', '13.6860', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40618, '2021-12-09', 7886, 38713, 2963, NULL, '2.0000', '14.5000', '14.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 (40619, '2021-12-09', 7743, 38714, 2963, NULL, '1.0000', '7.3900', '7.3900', '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 (40620, '2021-12-09', 8740, 38715, 2963, 43366, '2.0000', '1.6971', '1.6971', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40621, '2021-12-09', 2135, 38716, 2963, 18930, '1.0000', '2.4732', '2.4732', '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 (40622, '2021-12-09', 2379, 38717, 2963, NULL, '1.0000', '1.8000', '1.8000', '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 (40623, '2021-12-09', 1837, 38718, 2963, 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 (40624, '2021-12-09', 2592, 38719, 2963, 38524, '1.0000', '8.0156', '8.0156', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40625, '2021-12-09', 9577, 38720, 2963, NULL, '2.0000', '0.3200', '0.3200', '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 (40626, '2021-12-09', 1519, 38721, 2963, NULL, '1.0000', '3.3980', '3.3980', '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 (40627, '2021-12-09', 1339, 38722, 2963, NULL, '1.0000', '1.4463', '1.4463', '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 (40628, '2021-12-09', 1807, 38723, 2963, 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 (40629, '2021-12-09', 8984, 38724, 2963, NULL, '1.0000', '-100.8495', '-100.8495', '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 (40630, '2021-12-09', 2242, 38725, 2963, NULL, '1.0000', '0.5518', '0.5518', '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 (40631, '2021-12-09', 2635, 38726, 2963, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40632, '2021-12-09', 1337, 38727, 2963, 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 (40633, '2021-12-09', 2283, 38728, 2963, 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 (40634, '2021-12-09', 1863, 38729, 2963, 42816, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40635, '2021-12-09', 1501, 38730, 2963, NULL, '2.0000', '2.2100', '2.2100', '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 (40636, '2021-12-09', 1646, 38731, 2963, 43249, '1.0000', '4.2297', '4.2297', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40637, '2021-12-09', 2592, 38732, 2963, 38524, '1.0000', '8.0156', '8.0156', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40638, '2021-12-09', 2379, 38733, 2963, NULL, '1.0000', '1.8000', '1.8000', '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 (40639, '2021-12-09', 1837, 38734, 2963, 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 (40640, '2021-12-09', 1935, 38735, 2963, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40641, '2021-12-09', 2765, 38736, 2963, 39903, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40642, '2021-12-09', 2237, 38737, 2963, NULL, '1.0000', '-329.8285', '-329.8285', '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 (40643, '2021-12-09', 2283, 38738, 2963, 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 (40644, '2021-12-09', 7411, 38739, 2963, NULL, '1.0000', '1.3500', '1.3500', '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 (40645, '2021-12-09', 2167, 38740, 2963, 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 (40646, '2021-12-09', 1665, 38741, 2963, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40647, '2021-12-09', 1381, 38742, 2963, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40648, '2021-12-09', 1501, 38743, 2963, NULL, '1.0000', '2.2100', '2.2100', '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 (40649, '2021-12-09', 2607, 38744, 2963, 39774, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '16.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40650, '2021-12-09', 8740, 38745, 2963, 43366, '1.0000', '1.6971', '1.6971', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40651, '2021-12-09', 9577, 38746, 2963, NULL, '2.0000', '0.3200', '0.3200', '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 (40652, '2021-12-09', 1311, 38747, 2963, 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 (40653, '2021-12-09', 8106, 38748, 2963, NULL, '14.0000', '17.0000', '17.0000', '3.8000', '3.8000', '-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 (40654, '2021-12-09', 1935, 38749, 2963, 41370, '2.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40655, '2021-12-09', 7411, 38750, 2963, NULL, '1.0000', '1.3500', '1.3500', '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 (40656, '2021-12-09', 2037, 38751, 2963, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '14.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 (40657, '2021-12-09', 1521, 38752, 2963, 41391, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40658, '2021-12-09', 2546, 38753, 2963, NULL, '1.0000', '11.0000', '11.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 (40659, '2021-12-09', 1757, 38754, 2963, 13772, '1.0000', '4.0024', '4.0024', '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 (40660, '2021-12-09', 7918, 38755, 2963, 42833, '1.0000', '11.0875', '11.0875', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40661, '2021-12-09', 1339, 38756, 2963, NULL, '1.0000', '1.4463', '1.4463', '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 (40662, '2021-12-09', 1812, 38757, 2963, 42101, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40663, '2021-12-09', 1348, 38758, 2963, 23123, '1.0000', '15.5000', '15.5000', '21.0000', '21.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 (40664, '2021-12-09', 9577, 38759, 2963, NULL, '1.0000', '0.3200', '0.3200', '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 (40665, '2021-12-09', 2408, 38760, 2963, 39899, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40666, '2021-12-09', 7411, 38761, 2963, NULL, '1.0000', '1.3500', '1.3500', '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 (40667, '2021-12-09', 2475, 38762, 2963, 39983, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40668, '2021-12-09', 1854, 38763, 2963, 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 (40669, '2021-12-09', 2965, 38764, 2963, NULL, '1.0000', '5.3458', '5.3458', '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 (40670, '2021-12-09', 7334, 38765, 2963, NULL, '3.0000', '8.1600', '8.1600', '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 (40671, '2021-12-09', 9604, 38766, 2963, NULL, '1.0000', '2.0000', '2.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 (40672, '2021-12-09', 1339, 38767, 2964, 43594, '1.0000', '1.5373', '1.5373', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40673, '2021-12-09', 8196, 38768, 2964, NULL, '1.0000', '53.3100', '53.3100', '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 (40674, '2021-12-09', 2699, 38769, 2964, 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 (40675, '2021-12-09', 9193, 38770, 2964, NULL, '2.0000', '5.5150', '5.5150', '9.5000', '9.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 (40676, '2021-12-09', 7674, 38771, 2964, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '73.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40677, '2021-12-09', 7557, 38772, 2964, NULL, '8.0000', '0.5000', '0.5000', '1.0000', '1.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 (40678, '2021-12-09', 7547, 38773, 2964, NULL, '4.0000', '0.0000', '0.0000', '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 (40679, '2021-12-10', 7980, 38774, 2965, NULL, '1.0000', '17.4500', '17.4500', '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 (40680, '2021-12-10', 3058, 38775, 2965, NULL, '1.0000', '4.6750', '4.6750', '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 (40681, '2021-12-10', 1493, 38776, 2965, 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 (40682, '2021-12-10', 9413, 38777, 2965, 38544, '1.0000', '7.9285', '7.9285', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40683, '2021-12-10', 1965, 38778, 2965, NULL, '1.0000', '17.2400', '17.2400', '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 (40684, '2021-12-10', 7411, 38779, 2965, NULL, '1.0000', '1.3500', '1.3500', '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 (40685, '2021-12-10', 1804, 38780, 2965, 34646, '1.0000', '3.8408', '3.8408', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40686, '2021-12-10', 1432, 38781, 2965, 38557, '1.0000', '9.5117', '9.5117', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40687, '2021-12-10', 1409, 38782, 2965, NULL, '1.0000', '13.5000', '13.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 (40688, '2021-12-10', 2384, 38783, 2965, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (40689, '2021-12-10', 7514, 38784, 2965, 39834, '2.0000', '2.2500', '2.2500', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40690, '2021-12-10', 1499, 38785, 2965, 42841, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '8.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40691, '2021-12-10', 1410, 38786, 2965, NULL, '1.0000', '2.1083', '2.1083', '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 (40692, '2021-12-10', 1420, 38787, 2965, 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 (40693, '2021-12-10', 9544, 38788, 2965, 40125, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40694, '2021-12-10', 1935, 38789, 2965, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40695, '2021-12-10', 9577, 38790, 2965, NULL, '6.0000', '0.3200', '0.3200', '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 (40696, '2021-12-10', 1590, 38791, 2966, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40697, '2021-12-10', 8208, 38792, 2966, NULL, '1.0000', '33.0000', '33.0000', '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 (40698, '2021-12-10', 2320, 38793, 2966, 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 (40699, '2021-12-10', 7514, 38794, 2966, 39834, '1.0000', '2.2500', '2.2500', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40700, '2021-12-10', 7514, 38794, 2966, NULL, '1.0000', '2.2500', '2.2500', '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 (40701, '2021-12-10', 1519, 38795, 2966, NULL, '1.0000', '3.3980', '3.3980', '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 (40702, '2021-12-10', 2068, 38796, 2966, 38541, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40703, '2021-12-10', 7630, 38797, 2966, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (40704, '2021-12-10', 2283, 38798, 2966, 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 (40705, '2021-12-10', 1499, 38799, 2966, 42841, '3.0000', '0.6447', '0.6447', '0.7000', '0.7000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40706, '2021-12-10', 2342, 38800, 2966, 19387, '2.0000', '1.8601', '1.8601', '2.5000', '2.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 (40707, '2021-12-10', 2167, 38801, 2966, 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 (40708, '2021-12-10', 7749, 38802, 2966, NULL, '1.0000', '20.0200', '20.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 (40709, '2021-12-10', 1744, 38803, 2966, 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 (40710, '2021-12-10', 2109, 38804, 2966, 24971, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '19.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 (40711, '2021-12-10', 1428, 38805, 2967, 31728, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40712, '2021-12-10', 1429, 38806, 2967, 24332, '1.0000', '13.0444', '13.0444', '18.0000', '18.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 (40713, '2021-12-10', 2221, 38807, 2967, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40714, '2021-12-10', 8736, 38808, 2967, NULL, '1.0000', '3.4000', '3.4000', '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 (40715, '2021-12-10', 8765, 38809, 2967, 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 (40716, '2021-12-10', 9478, 38810, 2967, 40374, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40717, '2021-12-10', 1504, 38811, 2967, 24020, '10.0000', '1.2125', '1.2125', '2.2000', '2.2000', '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 (40718, '2021-12-10', 1420, 38812, 2967, 42972, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40719, '2021-12-10', 1555, 38813, 2967, 22238, '1.0000', '90.0000', '90.0000', '29.0000', '29.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40720, '2021-12-10', 2237, 38814, 2967, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40721, '2021-12-10', 1601, 38815, 2967, 9464, '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 (40722, '2021-12-10', 2237, 38816, 2967, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40723, '2021-12-10', 2248, 38817, 2967, NULL, '1.0000', '2.4916', '2.4916', '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 (40724, '2021-12-10', 9688, 38818, 2967, 43337, '1.0000', '3.4000', '3.4000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40725, '2021-12-10', 1831, 38819, 2967, 40888, '1.0000', '3.2049', '3.2049', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40726, '2021-12-10', 1541, 38820, 2967, 37570, '1.0000', '314.8018', '314.8018', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40727, '2021-12-10', 2411, 38821, 2967, 42968, '1.0000', '1.2564', '1.2564', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40728, '2021-12-10', 1603, 38822, 2967, 32883, '1.0000', '56.0200', '56.0200', '78.5000', '78.5000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40729, '2021-12-10', 2285, 38823, 2967, 43049, '1.0000', '36.5090', '36.5090', '49.0000', '49.0000', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40730, '2021-12-10', 1871, 38824, 2967, 32818, '20.0000', '29.4135', '29.4135', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40731, '2021-12-10', 1935, 38825, 2967, 40874, '2.0000', '6.8496', '6.8496', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40732, '2021-12-10', 2476, 38826, 2967, 5189, '1.0000', '10.0000', '10.0000', '12.0000', '12.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 (40733, '2021-12-10', 1382, 38827, 2967, 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 (40734, '2021-12-10', 1831, 38828, 2967, 40888, '1.0000', '3.2049', '3.2049', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40735, '2021-12-10', 1947, 38829, 2967, 40856, '1.0000', '3.3552', '3.3552', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40736, '2021-12-10', 1356, 38830, 2967, 32875, '1.0000', '51.2768', '51.2768', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40737, '2021-12-10', 2557, 38831, 2967, 12741, '3.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 (40738, '2021-12-10', 1669, 38832, 2967, 38080, '14.0000', '56.8800', '56.8800', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40739, '2021-12-10', 1350, 38833, 2967, 40586, '2.0000', '-2.7180', '-2.7180', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40740, '2021-12-10', 2454, 38834, 2967, 40896, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40741, '2021-12-10', 1644, 38835, 2967, 41988, '1.0000', '36.0800', '36.0800', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40742, '2021-12-10', 1584, 38836, 2967, 43341, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '20.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40743, '2021-12-10', 7609, 38837, 2967, NULL, '1.0000', '4.3300', '4.3300', '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 (40744, '2021-12-10', 2280, 38838, 2967, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40745, '2021-12-10', 2317, 38839, 2967, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '50.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40746, '2021-12-10', 1478, 38840, 2967, 31970, '1.0000', '129.9208', '129.9208', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40747, '2021-12-10', 1492, 38841, 2967, 9529, '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 (40748, '2021-12-10', 2136, 38842, 2967, 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 (40749, '2021-12-10', 9563, 38843, 2967, 42629, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40750, '2021-12-10', 2102, 38844, 2968, 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 (40751, '2021-12-10', 2320, 38845, 2968, 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 (40752, '2021-12-10', 1420, 38846, 2968, 20658, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '7.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 (40753, '2021-12-10', 1620, 38847, 2968, 8955, '1.0000', '408.8259', '408.8259', '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 (40754, '2021-12-10', 7756, 38848, 2968, NULL, '1.0000', '2.5000', '2.5000', '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 (40755, '2021-12-10', 7447, 38849, 2968, NULL, '12.0000', '19.1100', '19.1100', '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 (40756, '2021-12-10', 2643, 38850, 2968, 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 (40757, '2021-12-10', 7385, 38851, 2968, NULL, '6.0000', '2.0000', '2.0000', '3.0000', '3.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 (40758, '2021-12-10', 7585, 38852, 2968, 33812, '1.0000', '3.9600', '3.9600', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40759, '2021-12-10', 2522, 38853, 2968, NULL, '1.0000', '6.2000', '6.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 (40760, '2021-12-10', 2135, 38854, 2968, 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 (40761, '2021-12-10', 2281, 38855, 2968, 2941, '-22.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 (40762, '2021-12-10', 2281, 38855, 2968, NULL, '24.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-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 (40763, '2021-12-10', 1765, 38856, 2968, 3175, '-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 (40764, '2021-12-10', 1765, 38856, 2968, NULL, '4.0000', '90.0000', '90.0000', '10.0000', '10.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 (40765, '2021-12-10', 2657, 38857, 2968, 11267, '-3.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 (40766, '2021-12-10', 2657, 38857, 2968, NULL, '4.0000', '5.4200', '5.4200', '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 (40767, '2021-12-10', 7456, 38858, 2969, NULL, '1.0000', '1.3800', '1.3800', '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 (40768, '2021-12-10', 1841, 38859, 2969, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40769, '2021-12-10', 7411, 38860, 2969, NULL, '1.0000', '1.3500', '1.3500', '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 (40770, '2021-12-10', 8918, 38861, 2969, 37847, '2.0000', '5.5250', '5.5250', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40771, '2021-12-10', 2315, 38862, 2969, NULL, '1.0000', '0.4740', '0.4740', '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 (40772, '2021-12-10', 2418, 38863, 2969, NULL, '1.0000', '9.5000', '9.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 (40773, '2021-12-10', 9528, 38864, 2969, 39547, '1.0000', '27.2000', '27.2000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40774, '2021-12-10', 9578, 38865, 2969, NULL, '1.0000', '8.0000', '8.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 (40775, '2021-12-10', 9410, 38866, 2969, NULL, '1.0000', '20.0000', '20.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 (40776, '2021-12-10', 2965, 38867, 2969, 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 (40777, '2021-12-10', 8735, 38868, 2969, NULL, '1.0000', '5.6000', '5.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 (40778, '2021-12-10', 9193, 38869, 2969, NULL, '1.0000', '5.5150', '5.5150', '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 (40779, '2021-12-10', 9445, 38870, 2969, 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 (40780, '2021-12-10', 2442, 38871, 2969, 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 (40781, '2021-12-10', 7524, 38872, 2969, NULL, '1.0000', '103.0922', '103.0922', '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 (40782, '2021-12-10', 7672, 38873, 2969, NULL, '1.0000', '1.0200', '1.0200', '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 (40783, '2021-12-10', 8970, 38874, 2969, NULL, '1.0000', '1.1400', '1.1400', '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 (40784, '2021-12-10', 7547, 38875, 2969, NULL, '10.0000', '0.0000', '0.0000', '0.5000', '0.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 (40785, '2021-12-10', 8466, 38876, 2969, NULL, '5.0000', '-24.7500', '-24.7500', '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 (40786, '2021-12-10', 7917, 38877, 2969, NULL, '1.0000', '5.0000', '5.0000', '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 (40787, '2021-12-10', 8808, 38878, 2969, NULL, '1.0000', '2.0000', '2.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 (40788, '2021-12-10', 7524, 38879, 2969, NULL, '1.0000', '103.0922', '103.0922', '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 (40789, '2021-12-10', 7674, 38880, 2969, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40790, '2021-12-10', 8151, 38881, 2969, NULL, '2.0000', '1.9300', '1.9300', '51.0000', '51.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 (40791, '2021-12-10', 8622, 38882, 2969, 42420, '1.0000', '-19.0040', '-19.0040', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40792, '2021-12-10', 1533, 38883, 2969, 43053, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40793, '2021-12-10', 7703, 38884, 2969, NULL, '2.0000', '22.9900', '22.9900', '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 (40794, '2021-12-10', 8941, 38885, 2969, NULL, '1.0000', '12.0000', '12.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 (40795, '2021-12-10', 7779, 38886, 2969, NULL, '1.0000', '8.3800', '8.3800', '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 (40796, '2021-12-10', 7708, 38887, 2969, NULL, '1.0000', '6.1400', '6.1400', '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 (40797, '2021-12-10', 8608, 38888, 2969, NULL, '1.0000', '5.7400', '5.7400', '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 (40798, '2021-12-10', 7415, 38889, 2969, 38440, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40799, '2021-12-10', 9461, 38890, 2969, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40800, '2021-12-10', 8187, 38891, 2969, NULL, '3.0000', '14.3900', '14.3900', '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 (40801, '2021-12-10', 9510, 38892, 2969, NULL, '1.0000', '23.4700', '23.4700', '30.1000', '30.1000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40802, '2021-12-10', 7591, 38893, 2969, NULL, '1.0000', '2.7500', '2.7500', '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 (40803, '2021-12-10', 7411, 38894, 2969, NULL, '3.0000', '1.3500', '1.3500', '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 (40804, '2021-12-10', 2965, 38895, 2969, 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 (40805, '2021-12-10', 3001, 38896, 2969, NULL, '1.0000', '1.5000', '1.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 (40806, '2021-12-10', 7585, 38897, 2969, NULL, '1.0000', '6.2000', '6.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 (40807, '2021-12-10', 7674, 38898, 2969, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40808, '2021-12-10', 7925, 38899, 2969, NULL, '1.0000', '6.8000', '6.8000', '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 (40809, '2021-12-10', 7518, 38900, 2969, NULL, '2.0000', '-67.2578', '-67.2578', '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 (40810, '2021-12-10', 7657, 38901, 2969, NULL, '1.0000', '5.4700', '5.4700', '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 (40811, '2021-12-10', 8846, 38902, 2969, NULL, '1.0000', '4.3000', '4.3000', '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 (40812, '2021-12-10', 8425, 38903, 2969, NULL, '1.0000', '61.2000', '61.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 (40813, '2021-12-10', 7322, 38904, 2969, 29976, '1.0000', '4.3600', '4.3600', '12.0000', '12.0000', '23.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40814, '2021-12-10', 9684, 38905, 2969, 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 (40815, '2021-12-10', 1947, 38906, 2969, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40816, '2021-12-10', 7674, 38907, 2969, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40817, '2021-12-10', 7781, 38908, 2969, NULL, '3.0000', '4.2500', '4.2500', '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 (40818, '2021-12-10', 7642, 38909, 2969, NULL, '1.0000', '34.9900', '34.9900', '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 (40819, '2021-12-10', 7712, 38910, 2969, NULL, '1.0000', '0.3300', '0.3300', '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 (40820, '2021-12-10', 7415, 38911, 2969, 38440, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40821, '2021-12-10', 8608, 38912, 2969, NULL, '1.0000', '5.7400', '5.7400', '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 (40822, '2021-12-10', 7641, 38913, 2969, NULL, '1.0000', '-7.4783', '-7.4783', '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 (40823, '2021-12-10', 2965, 38914, 2969, 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 (40824, '2021-12-10', 7411, 38915, 2969, NULL, '3.0000', '1.3500', '1.3500', '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 (40825, '2021-12-10', 8904, 38916, 2969, 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 (40826, '2021-12-10', 7674, 38917, 2969, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40827, '2021-12-10', 7524, 38918, 2969, NULL, '2.0000', '103.0922', '103.0922', '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 (40828, '2021-12-10', 7714, 38919, 2969, 37846, '4.0000', '0.4200', '0.4200', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40829, '2021-12-10', 7867, 38920, 2969, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40830, '2021-12-10', 7931, 38921, 2969, NULL, '1.0000', '0.2500', '0.2500', '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 (40831, '2021-12-10', 7518, 38922, 2969, NULL, '1.0000', '-67.2578', '-67.2578', '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 (40832, '2021-12-10', 1557, 38923, 2969, NULL, '1.0000', '7.6000', '7.6000', '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 (40833, '2021-12-10', 8963, 38924, 2969, 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 (40834, '2021-12-10', 8756, 38925, 2969, 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 (40835, '2021-12-10', 2476, 38926, 2969, 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 (40836, '2021-12-10', 7787, 38927, 2969, NULL, '1.0000', '-9.9201', '-9.9201', '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 (40837, '2021-12-10', 1583, 38928, 2969, 43576, '1.0000', '5.8900', '5.8900', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40838, '2021-12-10', 7984, 38929, 2969, NULL, '1.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40839, '2021-12-10', 8444, 38930, 2969, NULL, '1.0000', '26.0000', '26.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 (40840, '2021-12-10', 9300, 38931, 2969, NULL, '1.0000', '12.0000', '12.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 (40841, '2021-12-10', 7715, 38932, 2969, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40842, '2021-12-10', 7423, 38933, 2969, NULL, '1.0000', '7.3200', '7.3200', '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 (40843, '2021-12-10', 8515, 38934, 2969, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (40844, '2021-12-10', 7674, 38935, 2969, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40845, '2021-12-10', 8233, 38936, 2969, 40439, '1.0000', '4.0449', '4.0449', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40846, '2021-12-10', 2104, 38937, 2969, NULL, '1.0000', '0.2000', '0.2000', '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 (40847, '2021-12-10', 8363, 38938, 2969, NULL, '3.0000', '38.0000', '38.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 (40848, '2021-12-10', 9018, 38939, 2969, NULL, '1.0000', '42.0000', '42.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 (40849, '2021-12-10', 9563, 38940, 2969, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '24.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40850, '2021-12-10', 9562, 38941, 2969, 42670, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '12.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40851, '2021-12-10', 1855, 38942, 2970, 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 (40852, '2021-12-10', 1326, 38943, 2970, NULL, '1.0000', '3.0300', '3.0300', '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 (40853, '2021-12-10', 9480, 38944, 2970, 32540, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40854, '2021-12-10', 2262, 38945, 2970, 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 (40855, '2021-12-10', 1339, 38946, 2970, NULL, '1.0000', '1.4463', '1.4463', '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 (40856, '2021-12-10', 1337, 38947, 2970, 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 (40857, '2021-12-10', 1665, 38948, 2970, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40858, '2021-12-10', 2320, 38949, 2970, 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 (40859, '2021-12-10', 2570, 38950, 2970, 34963, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40860, '2021-12-10', 2109, 38951, 2970, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '18.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 (40861, '2021-12-10', 1608, 38952, 2970, 34659, '1.0000', '3.5436', '3.5436', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40862, '2021-12-10', 2274, 38953, 2970, 43229, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40863, '2021-12-10', 9416, 38954, 2970, 43361, '1.0000', '4.5001', '4.5001', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40864, '2021-12-10', 2237, 38955, 2970, NULL, '1.0000', '-329.8285', '-329.8285', '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 (40865, '2021-12-10', 1647, 38956, 2970, 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 (40866, '2021-12-10', 2236, 38957, 2970, 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 (40867, '2021-12-10', 7728, 38958, 2970, NULL, '1.0000', '1.8000', '1.8000', '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 (40868, '2021-12-10', 1425, 38959, 2970, 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 (40869, '2021-12-10', 2384, 38960, 2970, 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 (40870, '2021-12-10', 2283, 38961, 2970, 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 (40871, '2021-12-10', 2287, 38962, 2970, 43279, '3.0000', '1.6790', '1.6790', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40872, '2021-12-10', 1577, 38963, 2970, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40873, '2021-12-10', 8086, 38964, 2970, NULL, '1.0000', '9.3000', '9.3000', '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 (40874, '2021-12-10', 8775, 38965, 2970, 43351, '1.0000', '1.4728', '1.4728', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40875, '2021-12-10', 9469, 38966, 2970, NULL, '1.0000', '2.3000', '2.3000', '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 (40876, '2021-12-10', 1689, 38967, 2970, 42821, '1.0000', '12.9279', '12.9279', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40877, '2021-12-10', 2068, 38968, 2970, 38541, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40878, '2021-12-10', 8638, 38969, 2970, NULL, '1.0000', '0.5100', '0.5100', '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 (40879, '2021-12-10', 7518, 38970, 2970, NULL, '1.0000', '7.8200', '7.8200', '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 (40880, '2021-12-10', 2031, 38971, 2970, 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 (40881, '2021-12-10', 2109, 38972, 2970, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '18.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 (40882, '2021-12-10', 1966, 38973, 2970, 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 (40883, '2021-12-10', 1577, 38974, 2970, 41374, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40884, '2021-12-10', 7641, 38975, 2970, NULL, '1.0000', '1.9000', '1.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 (40885, '2021-12-10', 1781, 38976, 2970, 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 (40886, '2021-12-10', 7518, 38977, 2971, NULL, '1.0000', '-67.2578', '-67.2578', '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 (40887, '2021-12-10', 7411, 38978, 2971, NULL, '1.0000', '1.3500', '1.3500', '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 (40888, '2021-12-10', 7518, 38979, 2971, NULL, '1.0000', '-67.2578', '-67.2578', '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 (40889, '2021-12-10', 7642, 38980, 2971, NULL, '2.0000', '34.9900', '34.9900', '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 (40890, '2021-12-10', 7514, 38981, 2971, NULL, '3.0000', '12.9983', '12.9983', '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 (40891, '2021-12-10', 7641, 38982, 2972, NULL, '1.0000', '-7.4783', '-7.4783', '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 (40892, '2021-12-10', 1670, 38983, 2973, 40657, '1.0000', '113.0050', '113.0050', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40893, '2021-12-10', 7411, 38984, 2973, NULL, '1.0000', '1.3500', '1.3500', '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 (40894, '2021-12-10', 2602, 38985, 2973, 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 (40895, '2021-12-10', 2712, 38986, 2973, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '56.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40896, '2021-12-10', 2693, 38987, 2973, 34426, '1.0000', '26.6200', '26.6200', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40897, '2021-12-10', 9555, 38988, 2973, 39178, '1.0000', '40.0000', '40.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40898, '2021-12-10', 2916, 38989, 2973, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40899, '2021-12-10', 2237, 38990, 2973, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40900, '2021-12-10', 1759, 38991, 2973, 40630, '1.0000', '23.5769', '23.5769', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40901, '2021-12-10', 2511, 38992, 2973, 42959, '1.0000', '8.6512', '8.6512', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40902, '2021-12-10', 7506, 38993, 2973, NULL, '1.0000', '15.0000', '15.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 (40903, '2021-12-10', 9634, 38994, 2973, 40901, '3.0000', '4.8000', '4.8000', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40904, '2021-12-10', 2283, 38995, 2973, 3123, '1.0000', '1.4300', '1.4300', '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 (40905, '2021-12-10', 1525, 38996, 2973, 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 (40906, '2021-12-10', 2280, 38997, 2973, 40891, '1.0000', '2.3427', '2.3427', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40907, '2021-12-10', 7848, 38998, 2973, 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 (40908, '2021-12-10', 7411, 38999, 2973, NULL, '1.0000', '1.3500', '1.3500', '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 (40909, '2021-12-10', 7447, 39000, 2973, NULL, '12.0000', '19.1100', '19.1100', '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 (40910, '2021-12-10', 7444, 39001, 2973, 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 (40911, '2021-12-10', 7411, 39002, 2973, NULL, '1.0000', '1.3500', '1.3500', '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 (40912, '2021-12-10', 2354, 39003, 2973, 3905, '2.0000', '4.6000', '4.6000', '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 (40913, '2021-12-10', 2712, 39004, 2973, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40914, '2021-12-10', 7532, 39005, 2973, NULL, '1.0000', '20.6000', '20.6000', '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 (40915, '2021-12-10', 8084, 39006, 2973, NULL, '1.0000', '11.7200', '11.7200', '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 (40916, '2021-12-10', 9579, 39007, 2973, 42631, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40917, '2021-12-10', 1602, 39008, 2973, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40918, '2021-12-10', 1338, 39009, 2973, 40614, '1.0000', '0.3294', '0.3294', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40919, '2021-12-10', 1935, 39010, 2973, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40920, '2021-12-10', 8097, 39011, 2973, NULL, '3.0000', '7.6800', '7.6800', '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 (40921, '2021-12-10', 1667, 39012, 2973, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40922, '2021-12-10', 1935, 39013, 2973, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40923, '2021-12-10', 1974, 39014, 2973, 27323, '1.0000', '12.1016', '12.1016', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40924, '2021-12-10', 2095, 39015, 2973, 6007, '1.0000', '1.5000', '1.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 (40925, '2021-12-10', 1363, 39016, 2973, NULL, '28.0000', '-69.9352', '-69.9352', '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 (40926, '2021-12-10', 3057, 39017, 2973, 40219, '2.0000', '3.2700', '3.2700', '4.5000', '4.5000', '32.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40927, '2021-12-10', 1504, 39018, 2973, 24020, '10.0000', '1.2125', '1.2125', '2.2000', '2.2000', '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 (40928, '2021-12-10', 1504, 39018, 2973, 17840, '7.0000', '1.2125', '1.2125', '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 (40929, '2021-12-10', 1504, 39018, 2973, NULL, '3.0000', '1.2125', '1.2125', '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 (40930, '2021-12-10', 1573, 39019, 2973, NULL, '1.0000', '17.4802', '17.4802', '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 (40931, '2021-12-10', 2916, 39020, 2973, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40932, '2021-12-10', 1908, 39021, 2973, 5510, '2.0000', '1.7500', '1.7500', '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 (40933, '2021-12-10', 8608, 39022, 2973, NULL, '1.0000', '0.9000', '0.9000', '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 (40934, '2021-12-10', 7334, 39023, 2973, NULL, '3.0000', '8.1600', '8.1600', '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 (40935, '2021-12-10', 2135, 39024, 2973, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40936, '2021-12-10', 1309, 39025, 2973, 3074, '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 (40937, '2021-12-10', 1760, 39026, 2973, 6783, '1.0000', '1.5900', '1.5900', '1.0000', '1.0000', '14.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 (40938, '2021-12-10', 1760, 39027, 2973, 6783, '5.0000', '1.5900', '1.5900', '1.0000', '1.0000', '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 (40939, '2021-12-10', 1670, 39028, 2973, 40657, '1.0000', '113.0050', '113.0050', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40940, '2021-12-10', 1561, 39029, 2973, 37586, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40941, '2021-12-10', 1543, 39030, 2973, 40203, '1.0000', '31.6707', '31.6707', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40942, '2021-12-10', 2821, 39031, 2973, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40943, '2021-12-10', 9560, 39032, 2973, 39200, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '14.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40944, '2021-12-10', 1541, 39033, 2973, 37570, '1.0000', '314.8018', '314.8018', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40945, '2021-12-10', 7447, 39034, 2973, NULL, '8.0000', '19.1100', '19.1100', '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 (40946, '2021-12-10', 1620, 39035, 2973, 40619, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40947, '2021-12-10', 2327, 39036, 2973, 40170, '2.0000', '-110.9890', '-110.9890', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40948, '2021-12-10', 9697, 39037, 2974, NULL, '4.0000', '13.0000', '13.0000', '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 (40949, '2021-12-10', 7926, 39038, 2975, 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 (40950, '2021-12-11', 2254, 39039, 2976, NULL, '1.0000', '17.9400', '17.9400', '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 (40951, '2021-12-11', 2068, 39040, 2976, 33354, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40952, '2021-12-11', 7672, 39041, 2977, NULL, '1.0000', '1.0200', '1.0200', '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 (40953, '2021-12-11', 1493, 39042, 2977, 36024, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40954, '2021-12-11', 1427, 39043, 2977, 43527, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40955, '2021-12-11', 1708, 39044, 2977, NULL, '1.0000', '20.1900', '20.1900', '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 (40956, '2021-12-11', 7518, 39045, 2977, NULL, '1.0000', '-67.2578', '-67.2578', '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 (40957, '2021-12-11', 1606, 39046, 2977, NULL, '10.0000', '4.6200', '4.6200', '6.5000', '6.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 (40958, '2021-12-11', 2506, 39047, 2977, 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 (40959, '2021-12-11', 7674, 39048, 2977, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '65.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40960, '2021-12-11', 7917, 39049, 2977, NULL, '1.0000', '5.0000', '5.0000', '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 (40961, '2021-12-11', 7606, 39050, 2977, 43113, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40962, '2021-12-11', 1646, 39051, 2977, 39568, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40963, '2021-12-11', 2726, 39052, 2977, NULL, '1.0000', '4.0000', '4.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 (40964, '2021-12-11', 8085, 39053, 2977, NULL, '3.0000', '14.0000', '14.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 (40965, '2021-12-11', 7675, 39054, 2977, NULL, '1.0000', '11.4300', '11.4300', '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 (40966, '2021-12-11', 1501, 39055, 2977, NULL, '1.0000', '2.5539', '2.5539', '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 (40967, '2021-12-11', 1670, 39056, 2977, 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 (40968, '2021-12-11', 7819, 39057, 2977, NULL, '1.0000', '9.5000', '9.5000', '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 (40969, '2021-12-11', 8177, 39058, 2977, 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 (40970, '2021-12-11', 2279, 39059, 2977, NULL, '2.0000', '2.6000', '2.6000', '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 (40971, '2021-12-11', 7331, 39060, 2977, 37404, '1.0000', '4.0000', '4.0000', '77.0000', '77.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40972, '2021-12-11', 9618, 39061, 2977, NULL, '4.0000', '3.7500', '3.7500', '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 (40973, '2021-12-11', 7926, 39062, 2977, 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 (40974, '2021-12-11', 8769, 39063, 2977, 43571, '2.0000', '6.6000', '6.6000', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40975, '2021-12-11', 7763, 39064, 2977, NULL, '1.0000', '1.1300', '1.1300', '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 (40976, '2021-12-11', 8083, 39065, 2977, NULL, '1.0000', '0.7700', '0.7700', '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 (40977, '2021-12-11', 7509, 39066, 2977, 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 (40978, '2021-12-11', 7385, 39067, 2977, NULL, '4.0000', '17.6346', '17.6346', '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 (40979, '2021-12-11', 7954, 39068, 2977, NULL, '1.0000', '24.4161', '24.4161', '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 (40980, '2021-12-11', 2315, 39069, 2977, NULL, '1.0000', '0.4740', '0.4740', '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 (40981, '2021-12-11', 1841, 39070, 2977, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40982, '2021-12-11', 7334, 39071, 2977, NULL, '6.0000', '8.1600', '8.1600', '11.0000', '11.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 (40983, '2021-12-11', 1575, 39072, 2977, 33524, '1.0000', '12.6000', '12.6000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40984, '2021-12-11', 7675, 39073, 2977, NULL, '3.0000', '11.4300', '11.4300', '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 (40985, '2021-12-11', 7318, 39074, 2977, 29973, '1.0000', '17.2098', '17.2098', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40986, '2021-12-11', 2491, 39075, 2977, 37367, '1.0000', '-11.7996', '-11.7996', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40987, '2021-12-11', 7750, 39076, 2977, NULL, '1.0000', '34.9000', '34.9000', '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 (40988, '2021-12-11', 2235, 39077, 2977, 43450, '1.0000', '20.4000', '20.4000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40989, '2021-12-11', 8208, 39078, 2977, NULL, '1.0000', '33.0000', '33.0000', '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 (40990, '2021-12-11', 8769, 39079, 2977, 43571, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40991, '2021-12-11', 2036, 39080, 2978, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '13.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 (40992, '2021-12-11', 2299, 39081, 2978, 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 (40993, '2021-12-11', 2355, 39082, 2978, 42084, '10.0000', '5.4200', '5.4200', '7.2000', '7.2000', '10.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40994, '2021-12-11', 9603, 39083, 2978, 43348, '2.0000', '2.3300', '2.3300', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40995, '2021-12-11', 1805, 39084, 2978, NULL, '1.0000', '4.5132', '4.5132', '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 (40996, '2021-12-11', 1912, 39085, 2978, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40997, '2021-12-11', 9579, 39086, 2978, 42662, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40998, '2021-12-11', 2109, 39087, 2978, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '16.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 (40999, '2021-12-11', 2379, 39088, 2978, NULL, '1.0000', '1.8000', '1.8000', '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 (41000, '2021-12-11', 8208, 39089, 2978, NULL, '1.0000', '33.0000', '33.0000', '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 (41001, '2021-12-11', 7324, 39090, 2978, 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 (41002, '2021-12-11', 1841, 39091, 2978, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41003, '2021-12-11', 8903, 39092, 2978, NULL, '1.0000', '5.3700', '5.3700', '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 (41004, '2021-12-11', 9438, 39093, 2978, NULL, '1.0000', '30.0000', '30.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 (41005, '2021-12-11', 2036, 39094, 2978, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '13.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 (41006, '2021-12-11', 8087, 39095, 2978, NULL, '1.0000', '14.6000', '14.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 (41007, '2021-12-11', 1991, 39096, 2979, 761, '1.0000', '6.0000', '6.0000', '7.9200', '7.9200', '0.0000', 1, 0, NULL, 58);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41008, '2021-12-11', 1991, 39096, 2979, NULL, '1.0000', '6.0000', '6.0000', '7.9200', '7.9200', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41009, '2021-12-11', 1602, 39097, 2979, 5897, '-61.0000', '6.7859', '6.7859', '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 (41010, '2021-12-11', 1602, 39097, 2979, NULL, '62.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41011, '2021-12-11', 2357, 39098, 2979, 18852, '2.0000', '4.0000', '4.0000', '5.0000', '5.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 (41012, '2021-12-11', 1800, 39099, 2979, 1627, '-2.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 (41013, '2021-12-11', 1800, 39099, 2979, NULL, '3.0000', '20.2784', '20.2784', '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 (41014, '2021-12-11', 7772, 39100, 2979, NULL, '3.0000', '32.2400', '32.2400', '43.0000', '43.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 (41015, '2021-12-11', 2487, 39101, 2979, NULL, '1.0000', '23.7500', '23.7500', '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 (41016, '2021-12-11', 2484, 39102, 2979, 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 (41017, '2021-12-11', 9438, 39103, 2979, NULL, '1.0000', '30.0000', '30.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 (41018, '2021-12-11', 7417, 39104, 2979, NULL, '12.0000', '6.4100', '6.4100', '8.5000', '8.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 (41019, '2021-12-11', 2221, 39105, 2979, 4154, '-21.0000', '14.4737', '14.4737', '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 (41020, '2021-12-11', 2221, 39105, 2979, NULL, '22.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41021, '2021-12-11', 1382, 39106, 2979, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.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 (41022, '2021-12-11', 2003, 39107, 2979, 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 (41023, '2021-12-11', 2237, 39108, 2979, 2781, '-20.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 (41024, '2021-12-11', 2237, 39108, 2979, NULL, '21.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41025, '2021-12-11', 2108, 39109, 2979, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '18.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 (41026, '2021-12-11', 1533, 39110, 2979, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '6.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 (41027, '2021-12-11', 2237, 39111, 2979, 2781, '-20.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 (41028, '2021-12-11', 2237, 39111, 2979, NULL, '21.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41029, '2021-12-11', 1863, 39112, 2979, 10808, '-102.0000', '0.4136', '0.4136', '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 (41030, '2021-12-11', 1863, 39112, 2979, NULL, '103.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41031, '2021-12-11', 1805, 39113, 2979, 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 (41032, '2021-12-11', 2290, 39114, 2979, 2950, '-3.0000', '6.8500', '6.8500', '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 (41033, '2021-12-11', 2290, 39114, 2979, NULL, '4.0000', '6.8500', '6.8500', '10.0000', '10.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 (41034, '2021-12-11', 2458, 39115, 2979, 18021, '-5.0000', '13.2000', '13.2000', '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 (41035, '2021-12-11', 2458, 39115, 2979, NULL, '6.0000', '13.2000', '13.2000', '20.0000', '20.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 (41036, '2021-12-11', 1577, 39116, 2979, 7596, '-5.0000', '2.5000', '2.5000', '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 (41037, '2021-12-11', 1577, 39116, 2979, NULL, '6.0000', '2.5000', '2.5000', '3.0000', '3.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 (41038, '2021-12-11', 1603, 39117, 2979, 8727, '1.0000', '59.4600', '59.4600', '78.5000', '78.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 (41039, '2021-12-11', 2058, 39118, 2979, 7512, '-3.0000', '10.0000', '10.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 (41040, '2021-12-11', 2058, 39118, 2979, NULL, '4.0000', '10.0000', '10.0000', '40.0000', '40.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 (41041, '2021-12-11', 2254, 39119, 2979, 33806, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41042, '2021-12-11', 1504, 39120, 2979, NULL, '20.0000', '1.5000', '1.5000', '2.2000', '2.2000', '-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 (41043, '2021-12-11', 1388, 39121, 2980, 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 (41044, '2021-12-11', 2167, 39122, 2980, 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 (41045, '2021-12-11', 2088, 39123, 2980, 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 (41046, '2021-12-11', 9577, 39124, 2980, NULL, '2.0000', '0.3200', '0.3200', '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 (41047, '2021-12-11', 1533, 39125, 2980, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41048, '2021-12-11', 9445, 39126, 2981, 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 (41049, '2021-12-11', 7514, 39127, 2981, NULL, '1.0000', '2.2500', '2.2500', '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 (41050, '2021-12-11', 1912, 39128, 2981, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41051, '2021-12-11', 7318, 39129, 2981, NULL, '1.0000', '13.4400', '13.4400', '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 (41052, '2021-12-11', 1946, 39130, 2981, NULL, '1.0000', '1.5500', '1.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 (41053, '2021-12-11', 1943, 39131, 2981, NULL, '1.0000', '5.7300', '5.7300', '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 (41054, '2021-12-11', 1501, 39132, 2981, NULL, '2.0000', '2.2100', '2.2100', '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 (41055, '2021-12-11', 1521, 39133, 2981, 41391, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41056, '2021-12-11', 9577, 39134, 2981, NULL, '1.0000', '0.3200', '0.3200', '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 (41057, '2021-12-11', 8608, 39135, 2981, NULL, '1.0000', '0.9000', '0.9000', '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 (41058, '2021-12-11', 1666, 39136, 2981, 42825, '3.0000', '2.7429', '2.7429', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41059, '2021-12-11', 7743, 39137, 2981, NULL, '1.0000', '7.3900', '7.3900', '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 (41060, '2021-12-11', 1590, 39138, 2981, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41061, '2021-12-11', 7641, 39139, 2981, NULL, '1.0000', '1.9000', '1.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 (41062, '2021-12-11', 1855, 39140, 2981, 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 (41063, '2021-12-11', 2135, 39141, 2981, 18930, '1.0000', '2.4732', '2.4732', '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 (41064, '2021-12-11', 1628, 39142, 2982, 42553, '1.0000', '12.0400', '12.0400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41065, '2021-12-11', 7652, 39143, 2982, NULL, '4.0000', '40.3000', '40.3000', '1.2000', '1.2000', '-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 (41066, '2021-12-11', 7380, 39144, 2982, 39764, '1.0000', '8.1295', '8.1295', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41067, '2021-12-11', 2109, 39145, 2982, 24971, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '14.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 (41068, '2021-12-11', 1314, 39146, 2983, 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 (41069, '2021-12-11', 2353, 39147, 2983, 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 (41070, '2021-12-11', 2274, 39148, 2983, 43229, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41071, '2021-12-11', 1691, 39149, 2983, 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 (41072, '2021-12-11', 9503, 39150, 2984, 33350, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41073, '2021-12-11', 2277, 39151, 2984, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41074, '2021-12-11', 2089, 39152, 2984, 37753, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41075, '2021-12-11', 2384, 39153, 2984, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (41076, '2021-12-11', 8202, 39154, 2984, NULL, '1.0000', '1.6600', '1.6600', '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 (41077, '2021-12-11', 2101, 39155, 2985, 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 (41078, '2021-12-11', 2269, 39156, 2985, NULL, '1.0000', '5.8300', '5.8300', '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 (41079, '2021-12-11', 1946, 39157, 2985, NULL, '1.0000', '1.5500', '1.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 (41080, '2021-12-11', 9577, 39158, 2985, NULL, '2.0000', '0.3200', '0.3200', '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 (41081, '2021-12-11', 9563, 39159, 2985, 42660, '2.0000', '5.1000', '5.1000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41082, '2021-12-11', 9105, 39160, 2985, NULL, '1.0000', '0.5800', '0.5800', '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 (41083, '2021-12-11', 8208, 39161, 2985, NULL, '2.0000', '33.0000', '33.0000', '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 (41084, '2021-12-11', 8608, 39162, 2986, NULL, '1.0000', '0.9000', '0.9000', '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 (41085, '2021-12-11', 1667, 39163, 2986, 42826, '1.0000', '22.4947', '22.4947', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41086, '2021-12-11', 1912, 39164, 2987, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41087, '2021-12-11', 2635, 39165, 2987, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41088, '2021-12-11', 7514, 39166, 2987, NULL, '1.0000', '2.2500', '2.2500', '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 (41089, '2021-12-11', 2280, 39167, 2988, NULL, '2.0000', '-177.9360', '-177.9360', '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 (41090, '2021-12-11', 2285, 39168, 2989, NULL, '1.0000', '36.1500', '36.1500', '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 (41091, '2021-12-11', 1501, 39169, 2990, NULL, '1.0000', '2.5539', '2.5539', '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 (41092, '2021-12-11', 7780, 39170, 2990, NULL, '1.0000', '2.6000', '2.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 (41093, '2021-12-11', 1670, 39171, 2990, 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 (41094, '2021-12-11', 9667, 39172, 2990, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41095, '2021-12-11', 2284, 39173, 2990, 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 (41096, '2021-12-11', 1493, 39174, 2990, 36024, '2.0000', '1.6300', '1.6300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41097, '2021-12-11', 7674, 39175, 2990, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '64.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41098, '2021-12-11', 8918, 39176, 2990, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41099, '2021-12-11', 7440, 39177, 2990, 30053, '1.0000', '9.6000', '9.6000', '31.0000', '31.0000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41100, '2021-12-11', 7757, 39178, 2990, NULL, '1.0000', '6.0000', '6.0000', '107.0000', '107.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41101, '2021-12-11', 7781, 39179, 2990, NULL, '10.0000', '4.2500', '4.2500', '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 (41102, '2021-12-11', 7892, 39180, 2990, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41103, '2021-12-11', 9461, 39181, 2990, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41104, '2021-12-11', 1520, 39182, 2990, 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 (41105, '2021-12-11', 7411, 39183, 2990, NULL, '1.0000', '1.3500', '1.3500', '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 (41106, '2021-12-11', 1332, 39184, 2990, 227, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41107, '2021-12-11', 1339, 39185, 2990, 43594, '2.0000', '1.5373', '1.5373', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41108, '2021-12-11', 8942, 39186, 2990, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41109, '2021-12-11', 7628, 39187, 2990, NULL, '3.0000', '2.9100', '2.9100', '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 (41110, '2021-12-11', 7560, 39188, 2990, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (41111, '2021-12-11', 8098, 39189, 2990, 36022, '1.0000', '-3.2308', '-3.2308', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41112, '2021-12-11', 8308, 39190, 2990, NULL, '1.0000', '11.0000', '11.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 (41113, '2021-12-11', 7465, 39191, 2990, 42424, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41114, '2021-12-11', 1772, 39192, 2990, 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 (41115, '2021-12-11', 7707, 39193, 2990, NULL, '1.0000', '6.0012', '6.0012', '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 (41116, '2021-12-11', 7779, 39194, 2990, NULL, '1.0000', '8.3800', '8.3800', '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 (41117, '2021-12-11', 8849, 39195, 2990, NULL, '1.0000', '1.0700', '1.0700', '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 (41118, '2021-12-11', 7781, 39196, 2990, NULL, '3.0000', '4.2500', '4.2500', '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 (41119, '2021-12-11', 7899, 39197, 2990, 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 (41120, '2021-12-11', 7635, 39198, 2990, NULL, '1.0000', '6.6300', '6.6300', '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 (41121, '2021-12-11', 7411, 39199, 2990, NULL, '1.0000', '1.3500', '1.3500', '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 (41122, '2021-12-11', 8359, 39200, 2990, NULL, '1.0000', '27.0806', '27.0806', '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 (41123, '2021-12-11', 7892, 39201, 2990, NULL, '1.0000', '4.2000', '4.2000', '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 (41124, '2021-12-11', 8702, 39202, 2990, NULL, '1.0000', '3.6700', '3.6700', '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 (41125, '2021-12-11', 9158, 39203, 2990, NULL, '1.0000', '5.8910', '5.8910', '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 (41126, '2021-12-11', 7709, 39204, 2990, NULL, '2.0000', '35.8000', '35.8000', '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 (41127, '2021-12-11', 8105, 39205, 2990, NULL, '2.0000', '16.0000', '16.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 (41128, '2021-12-11', 8852, 39206, 2990, NULL, '10.0000', '15.6000', '15.6000', '0.7000', '0.7000', '-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 (41129, '2021-12-11', 8686, 39207, 2990, NULL, '1.0000', '1.2000', '1.2000', '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 (41130, '2021-12-11', 2315, 39208, 2990, NULL, '2.0000', '0.4740', '0.4740', '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 (41131, '2021-12-11', 7775, 39209, 2990, NULL, '1.0000', '-2.9800', '-2.9800', '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 (41132, '2021-12-11', 7411, 39210, 2990, NULL, '2.0000', '1.3500', '1.3500', '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 (41133, '2021-12-11', 8735, 39211, 2990, NULL, '1.0000', '5.6000', '5.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 (41134, '2021-12-11', 7482, 39212, 2990, NULL, '1.0000', '2.4981', '2.4981', '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 (41135, '2021-12-11', 7675, 39213, 2990, NULL, '1.0000', '11.4300', '11.4300', '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 (41136, '2021-12-11', 7514, 39214, 2990, NULL, '1.0000', '12.9983', '12.9983', '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 (41137, '2021-12-11', 8052, 39215, 2990, 42015, '6.0000', '27.7481', '27.7481', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 289);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41138, '2021-12-11', 7687, 39216, 2990, NULL, '1.0000', '34.8226', '34.8226', '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 (41139, '2021-12-11', 7367, 39217, 2990, NULL, '1.0000', '35.0000', '35.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 (41140, '2021-12-11', 2857, 39218, 2990, NULL, '4.0000', '17.0000', '17.0000', '6.6000', '6.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 (41141, '2021-12-11', 2673, 39219, 2990, 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 (41142, '2021-12-11', 2315, 39220, 2990, NULL, '1.0000', '0.4740', '0.4740', '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 (41143, '2021-12-11', 1510, 39221, 2990, NULL, '1.0000', '10.5918', '10.5918', '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 (41144, '2021-12-11', 2541, 39222, 2990, 38453, '2.0000', '9.7500', '9.7500', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41145, '2021-12-11', 3067, 39223, 2990, 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 (41146, '2021-12-11', 8935, 39224, 2990, 43579, '1.0000', '0.2900', '0.2900', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41147, '2021-12-11', 1665, 39225, 2991, 39577, '4.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41148, '2021-12-11', 9697, 39226, 2992, 43818, '4.0000', '13.0000', '13.0000', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41149, '2021-12-11', 2503, 39227, 2992, 40162, '1.0000', '55.0258', '55.0258', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41150, '2021-12-11', 2655, 39228, 2992, 42939, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41151, '2021-12-11', 1303, 39229, 2992, 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 (41152, '2021-12-11', 1303, 39229, 2992, 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 (41153, '2021-12-11', 1303, 39229, 2992, 2657, '8.0000', '1.3800', '1.3800', '4.0000', '4.0000', '58.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 (41154, '2021-12-11', 2136, 39230, 2992, 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 (41155, '2021-12-11', 1665, 39231, 2992, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41156, '2021-12-11', 1839, 39232, 2992, 43883, '1.0000', '6.4114', '6.4114', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41157, '2021-12-11', 1498, 39233, 2992, 1501, '6.0000', '0.3300', '0.3300', '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 (41158, '2021-12-11', 8738, 39234, 2992, NULL, '20.0000', '1.3300', '1.3300', '4.5000', '4.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 (41159, '2021-12-11', 7848, 39235, 2992, 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 (41160, '2021-12-11', 2476, 39236, 2992, 5189, '1.0000', '10.0000', '10.0000', '12.0000', '12.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 (41161, '2021-12-11', 2458, 39237, 2992, 42951, '1.0000', '13.2000', '13.2000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41162, '2021-12-11', 2655, 39238, 2992, 42939, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41163, '2021-12-11', 1371, 39239, 2992, 41971, '1.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41164, '2021-12-11', 2060, 39240, 2992, 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 (41165, '2021-12-11', 1863, 39241, 2992, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41166, '2021-12-11', 1841, 39242, 2992, 43857, '6.0000', '0.2917', '0.2917', '0.5000', '0.5000', '87.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41167, '2021-12-11', 1912, 39243, 2992, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41168, '2021-12-11', 2698, 39244, 2992, 43834, '1.0000', '36.8600', '36.8600', '49.0000', '49.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41169, '2021-12-11', 1525, 39245, 2992, 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 (41170, '2021-12-11', 1602, 39246, 2992, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41171, '2021-12-11', 1677, 39247, 2992, 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 (41172, '2021-12-11', 9671, 39248, 2992, 42217, '1.0000', '10.9300', '10.9300', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41173, '2021-12-11', 1680, 39249, 2992, 34689, '1.0000', '4.9927', '4.9927', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41174, '2021-12-11', 7482, 39250, 2992, 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 (41175, '2021-12-11', 9642, 39251, 2992, 41991, '1.0000', '51.3000', '51.3000', '68.0000', '68.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41176, '2021-12-11', 1851, 39252, 2992, 40617, '1.0000', '12.9959', '12.9959', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41177, '2021-12-11', 1603, 39253, 2992, 16916, '1.0000', '56.0200', '56.0200', '78.5000', '78.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 (41178, '2021-12-11', 9214, 39254, 2992, NULL, '1.0000', '9.6000', '9.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 (41179, '2021-12-11', 2279, 39255, 2992, 34672, '3.0000', '2.3230', '2.3230', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41180, '2021-12-11', 2009, 39256, 2992, 6436, '1.0000', '18.0000', '18.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 (41181, '2021-12-11', 1641, 39257, 2992, 43040, '4.0000', '51.1126', '51.1126', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41182, '2021-12-11', 2178, 39258, 2992, 39194, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41183, '2021-12-11', 2299, 39259, 2992, 40867, '1.0000', '-3.7866', '-3.7866', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41184, '2021-12-11', 2699, 39260, 2992, 42938, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41185, '2021-12-11', 8677, 39261, 2992, NULL, '3.0000', '-1.2995', '-1.2995', '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 (41186, '2021-12-11', 2102, 39262, 2992, 6014, '1.0000', '1.9000', '1.9000', '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 (41187, '2021-12-11', 1335, 39263, 2992, 33202, '3.0000', '0.7047', '0.7047', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41188, '2021-12-11', 7385, 39264, 2992, 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 (41189, '2021-12-11', 8063, 39265, 2992, NULL, '1.0000', '1.6000', '1.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 (41190, '2021-12-11', 7744, 39266, 2992, NULL, '2.0000', '2.5000', '2.5000', '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 (41191, '2021-12-11', 2296, 39267, 2992, 42978, '1.0000', '12.2973', '12.2973', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41192, '2021-12-11', 7637, 39268, 2992, 43028, '1.0000', '8.8833', '8.8833', '9.6800', '9.6800', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41193, '2021-12-11', 2864, 39269, 2992, 40863, '10.0000', '1.4422', '1.4422', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41194, '2021-12-11', 1845, 39270, 2992, 42215, '1.0000', '20.0938', '20.0938', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41195, '2021-12-11', 2514, 39271, 2992, 7518, '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 (41196, '2021-12-11', 2445, 39272, 2992, 29837, '10.0000', '4.5913', '4.5913', '5.2800', '5.2800', '36.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41197, '2021-12-11', 1812, 39273, 2992, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '16.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41198, '2021-12-11', 2279, 39274, 2992, 34672, '2.0000', '2.3230', '2.3230', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41199, '2021-12-11', 1519, 39275, 2993, NULL, '1.0000', '3.3980', '3.3980', '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 (41200, '2021-12-11', 1966, 39276, 2993, 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 (41201, '2021-12-11', 1665, 39277, 2993, 42577, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41202, '2021-12-11', 1493, 39278, 2994, 43886, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41203, '2021-12-11', 3016, 39279, 2994, 40616, '1.0000', '14.5200', '14.5200', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41204, '2021-12-11', 1386, 39280, 2994, 41972, '2.0000', '608.2647', '608.2647', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41205, '2021-12-11', 9177, 39281, 2994, 37567, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41206, '2021-12-11', 1508, 39282, 2994, 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 (41207, '2021-12-11', 1346, 39283, 2994, NULL, '10.0000', '0.9289', '0.9289', '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 (41208, '2021-12-12', 1982, 39284, 2995, NULL, '1.0000', '4.5000', '4.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 (41209, '2021-12-12', 8350, 39285, 2995, NULL, '1.0000', '12.0000', '12.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 (41210, '2021-12-12', 7444, 39286, 2995, 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 (41211, '2021-12-12', 9469, 39287, 2995, 43583, '2.0000', '2.3000', '2.3000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41212, '2021-12-12', 9667, 39288, 2995, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41213, '2021-12-12', 7318, 39289, 2995, 29973, '1.0000', '17.2098', '17.2098', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41214, '2021-12-12', 1837, 39290, 2995, 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 (41215, '2021-12-12', 7806, 39291, 2995, NULL, '5.0000', '14.0000', '14.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 (41216, '2021-12-12', 7666, 39292, 2995, NULL, '2.0000', '0.4000', '0.4000', '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 (41217, '2021-12-12', 9681, 39293, 2995, 43578, '1.0000', '7.8000', '7.8000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41218, '2021-12-12', 8608, 39294, 2995, NULL, '2.0000', '5.7400', '5.7400', '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 (41219, '2021-12-12', 7641, 39295, 2995, NULL, '1.0000', '-7.4783', '-7.4783', '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 (41220, '2021-12-12', 7558, 39296, 2995, NULL, '10.0000', '2.2000', '2.2000', '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 (41221, '2021-12-12', 9667, 39297, 2995, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41222, '2021-12-12', 7685, 39298, 2995, NULL, '2.0000', '31.2000', '31.2000', '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 (41223, '2021-12-12', 8097, 39299, 2995, 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 (41224, '2021-12-12', 7674, 39300, 2995, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41225, '2021-12-12', 2315, 39301, 2995, NULL, '1.0000', '0.4740', '0.4740', '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 (41226, '2021-12-12', 7762, 39302, 2995, NULL, '1.0000', '5.1000', '5.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 (41227, '2021-12-12', 2295, 39303, 2995, NULL, '2.0000', '0.7000', '0.7000', '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 (41228, '2021-12-12', 9272, 39304, 2995, NULL, '1.0000', '3.1000', '3.1000', '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 (41229, '2021-12-12', 7651, 39305, 2995, NULL, '1.0000', '5.0000', '5.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 (41230, '2021-12-12', 9300, 39306, 2995, NULL, '1.0000', '12.0000', '12.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 (41231, '2021-12-12', 7507, 39307, 2995, NULL, '2.0000', '6.5000', '6.5000', '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 (41232, '2021-12-12', 7465, 39308, 2995, 42424, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41233, '2021-12-12', 7918, 39309, 2995, 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 (41234, '2021-12-12', 7967, 39310, 2995, 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 (41235, '2021-12-12', 7534, 39311, 2995, 30186, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41236, '2021-12-12', 9667, 39312, 2995, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41237, '2021-12-12', 7926, 39313, 2995, 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 (41238, '2021-12-12', 7704, 39314, 2995, 39631, '1.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41239, '2021-12-12', 7641, 39315, 2995, NULL, '1.0000', '-7.4783', '-7.4783', '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 (41240, '2021-12-12', 8359, 39316, 2995, NULL, '1.0000', '27.0806', '27.0806', '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 (41241, '2021-12-12', 7862, 39317, 2995, NULL, '1.0000', '17.8000', '17.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 (41242, '2021-12-12', 7385, 39318, 2995, NULL, '2.0000', '17.6346', '17.6346', '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 (41243, '2021-12-12', 7967, 39319, 2995, 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 (41244, '2021-12-12', 7411, 39320, 2995, NULL, '3.0000', '1.3500', '1.3500', '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 (41245, '2021-12-12', 9413, 39321, 2995, NULL, '1.0000', '7.9000', '7.9000', '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 (41246, '2021-12-12', 8328, 39322, 2995, NULL, '1.0000', '8.0882', '8.0882', '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 (41247, '2021-12-12', 7671, 39323, 2995, NULL, '1.0000', '15.5000', '15.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 (41248, '2021-12-12', 8097, 39324, 2995, 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 (41249, '2021-12-12', 8746, 39325, 2995, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41250, '2021-12-12', 9191, 39326, 2995, NULL, '1.0000', '6.6700', '6.6700', '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 (41251, '2021-12-12', 7680, 39327, 2995, NULL, '1.0000', '7.4000', '7.4000', '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 (41252, '2021-12-12', 8032, 39328, 2995, NULL, '1.0000', '12.0000', '12.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 (41253, '2021-12-12', 7385, 39329, 2995, NULL, '5.0000', '17.6346', '17.6346', '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 (41254, '2021-12-12', 2529, 39330, 2995, 40405, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41255, '2021-12-12', 7762, 39331, 2995, NULL, '1.0000', '5.1000', '5.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 (41256, '2021-12-12', 7641, 39332, 2995, NULL, '1.0000', '-7.4783', '-7.4783', '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 (41257, '2021-12-12', 7779, 39333, 2995, NULL, '1.0000', '8.3800', '8.3800', '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 (41258, '2021-12-12', 9092, 39334, 2995, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '174.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41259, '2021-12-12', 2295, 39335, 2995, 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 (41260, '2021-12-12', 8170, 39336, 2995, NULL, '1.0000', '1.4600', '1.4600', '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 (41261, '2021-12-12', 7391, 39337, 2995, NULL, '1.0000', '-26.2683', '-26.2683', '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 (41262, '2021-12-12', 7465, 39338, 2995, 42424, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41263, '2021-12-12', 9579, 39339, 2995, 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 (41264, '2021-12-12', 7674, 39340, 2995, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41265, '2021-12-12', 7671, 39341, 2995, NULL, '1.0000', '15.5000', '15.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 (41266, '2021-12-12', 7672, 39342, 2995, NULL, '1.0000', '1.0200', '1.0200', '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 (41267, '2021-12-12', 7609, 39343, 2995, NULL, '1.0000', '4.3300', '4.3300', '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 (41268, '2021-12-12', 7849, 39344, 2995, 43585, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41269, '2021-12-12', 7514, 39345, 2995, NULL, '1.0000', '12.9983', '12.9983', '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 (41270, '2021-12-12', 7832, 39346, 2995, 43532, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41271, '2021-12-12', 7534, 39347, 2995, 30186, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41272, '2021-12-12', 9272, 39348, 2995, NULL, '1.0000', '3.1000', '3.1000', '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 (41273, '2021-12-12', 7564, 39349, 2995, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41274, '2021-12-12', 7704, 39350, 2995, 39631, '3.0000', '-1.5625', '-1.5625', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41275, '2021-12-12', 8712, 39351, 2995, NULL, '1.0000', '7.0400', '7.0400', '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 (41276, '2021-12-12', 7547, 39352, 2995, NULL, '4.0000', '0.0000', '0.0000', '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 (41277, '2021-12-12', 7557, 39353, 2995, NULL, '10.0000', '0.5000', '0.5000', '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 (41278, '2021-12-12', 7868, 39354, 2995, NULL, '1.0000', '28.7600', '28.7600', '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 (41279, '2021-12-12', 7714, 39355, 2995, 37846, '2.0000', '0.4200', '0.4200', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41280, '2021-12-12', 7775, 39356, 2995, NULL, '1.0000', '-2.9800', '-2.9800', '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 (41281, '2021-12-12', 7810, 39357, 2995, NULL, '1.0000', '13.5000', '13.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 (41282, '2021-12-12', 8429, 39358, 2995, 43155, '1.0000', '-25.7500', '-25.7500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41283, '2021-12-12', 7744, 39359, 2995, 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 (41284, '2021-12-12', 2992, 39360, 2995, 43062, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41285, '2021-12-12', 7524, 39361, 2995, NULL, '1.0000', '103.0922', '103.0922', '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 (41286, '2021-12-12', 8969, 39362, 2996, NULL, '4.0000', '2.0000', '2.0000', '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 (41287, '2021-12-12', 7675, 39363, 2996, NULL, '1.0000', '11.4300', '11.4300', '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 (41288, '2021-12-12', 8666, 39364, 2996, NULL, '2.0000', '0.4600', '0.4600', '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 (41289, '2021-12-12', 1841, 39365, 2996, 33726, '3.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '56.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41290, '2021-12-12', 9175, 39366, 2996, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41291, '2021-12-12', 7820, 39367, 2996, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41292, '2021-12-12', 9643, 39368, 2996, 43126, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41293, '2021-12-12', 9578, 39369, 2996, NULL, '1.0000', '8.0000', '8.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 (41294, '2021-12-12', 8746, 39370, 2996, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41295, '2021-12-12', 7641, 39371, 2996, NULL, '1.0000', '-7.4783', '-7.4783', '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 (41296, '2021-12-12', 7731, 39372, 2996, NULL, '1.0000', '0.0000', '0.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 (41297, '2021-12-12', 8945, 39373, 2996, NULL, '20.0000', '9.0000', '9.0000', '1.1700', '1.1700', '-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 (41298, '2021-12-12', 7743, 39374, 2996, NULL, '1.0000', '419203.7668', '419203.7668', '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 (41299, '2021-12-12', 8101, 39375, 2996, NULL, '3.0000', '21.7000', '21.7000', '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 (41300, '2021-12-12', 9175, 39376, 2996, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41301, '2021-12-12', 7896, 39377, 2996, NULL, '1.0000', '7.0000', '7.0000', '28.6000', '28.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 (41302, '2021-12-12', 7917, 39378, 2996, NULL, '1.0000', '5.0000', '5.0000', '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 (41303, '2021-12-12', 7714, 39379, 2996, 37846, '1.0000', '0.4200', '0.4200', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41304, '2021-12-12', 7714, 39379, 2996, NULL, '2.0000', '0.4200', '0.4200', '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 (41305, '2021-12-12', 7411, 39380, 2996, NULL, '1.0000', '1.3500', '1.3500', '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 (41306, '2021-12-12', 7518, 39381, 2996, NULL, '5.0000', '-67.2578', '-67.2578', '10.5000', '10.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 (41307, '2021-12-12', 7671, 39382, 2996, NULL, '2.0000', '15.5000', '15.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 (41308, '2021-12-12', 7886, 39383, 2996, NULL, '1.0000', '2.8333', '2.8333', '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 (41309, '2021-12-12', 7672, 39384, 2996, NULL, '1.0000', '1.0200', '1.0200', '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 (41310, '2021-12-12', 7674, 39385, 2996, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '61.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41311, '2021-12-12', 8407, 39386, 2996, NULL, '2.0000', '2.9800', '2.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 (41312, '2021-12-12', 9547, 39387, 2996, 40401, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41313, '2021-12-12', 1841, 39388, 2996, 33726, '3.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '56.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41314, '2021-12-12', 9274, 39389, 2996, NULL, '1.0000', '3.1000', '3.1000', '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 (41315, '2021-12-12', 2315, 39390, 2996, NULL, '2.0000', '0.4740', '0.4740', '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 (41316, '2021-12-12', 7641, 39391, 2996, NULL, '1.0000', '-7.4783', '-7.4783', '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 (41317, '2021-12-12', 7810, 39392, 2996, NULL, '1.0000', '13.5000', '13.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 (41318, '2021-12-12', 7768, 39393, 2996, NULL, '1.0000', '7.7800', '7.7800', '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 (41319, '2021-12-12', 7659, 39394, 2996, NULL, '1.0000', '5.9700', '5.9700', '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 (41320, '2021-12-12', 1333, 39395, 2996, 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 (41321, '2021-12-12', 7684, 39396, 2996, NULL, '1.0000', '9.0000', '9.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 (41322, '2021-12-12', 1533, 39397, 2996, 43053, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41323, '2021-12-12', 2733, 39398, 2997, 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 (41324, '2021-12-12', 2662, 39399, 2998, 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 (41325, '2021-12-12', 1840, 39400, 2998, 42569, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '30.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41326, '2021-12-12', 1841, 39401, 2998, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41327, '2021-12-12', 2237, 39402, 2998, NULL, '1.0000', '-329.8285', '-329.8285', '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 (41328, '2021-12-12', 1855, 39403, 2998, 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 (41329, '2021-12-12', 2887, 39404, 2998, 42849, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41330, '2021-12-12', 7741, 39405, 2998, NULL, '1.0000', '1.2000', '1.2000', '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 (41331, '2021-12-12', 7317, 39406, 2998, NULL, '1.0000', '19.5500', '19.5500', '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 (41332, '2021-12-12', 1574, 39407, 2998, NULL, '1.0000', '1.7001', '1.7001', '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 (41333, '2021-12-12', 1637, 39408, 2998, 42839, '1.0000', '-41.1667', '-41.1667', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41334, '2021-12-12', 7391, 39409, 2998, 42564, '1.0000', '15.6000', '15.6000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41335, '2021-12-12', 8608, 39410, 2998, NULL, '1.0000', '0.9000', '0.9000', '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 (41336, '2021-12-12', 1520, 39411, 2998, 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 (41337, '2021-12-12', 1402, 39412, 2998, 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 (41338, '2021-12-12', 2109, 39413, 2998, 24971, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '12.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 (41339, '2021-12-12', 2252, 39414, 2998, 42804, '1.0000', '16.5900', '16.5900', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41340, '2021-12-12', 1305, 39415, 2998, 34636, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41341, '2021-12-12', 1647, 39416, 2998, 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 (41342, '2021-12-12', 9577, 39417, 2998, NULL, '2.0000', '0.3200', '0.3200', '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 (41343, '2021-12-12', 1912, 39418, 2998, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41344, '2021-12-12', 1499, 39419, 2998, 42841, '2.0000', '0.6447', '0.6447', '0.7000', '0.7000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41345, '2021-12-12', 7790, 39420, 2998, NULL, '2.0000', '17.0000', '17.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 (41346, '2021-12-12', 8638, 39421, 2998, NULL, '1.0000', '0.5100', '0.5100', '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 (41347, '2021-12-12', 2937, 39422, 2998, 42801, '1.0000', '5.5233', '5.5233', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41348, '2021-12-12', 2037, 39423, 2998, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '13.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 (41349, '2021-12-12', 1807, 39424, 2998, NULL, '5.0000', '41.5000', '41.5000', '2.5000', '2.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 (41350, '2021-12-12', 1311, 39425, 2998, 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 (41351, '2021-12-12', 1608, 39426, 2998, 34659, '1.0000', '3.5436', '3.5436', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41352, '2021-12-12', 2109, 39427, 2998, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '13.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 (41353, '2021-12-12', 9577, 39428, 2998, NULL, '2.0000', '0.3200', '0.3200', '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 (41354, '2021-12-12', 1666, 39429, 2998, 42825, '2.0000', '2.7429', '2.7429', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41355, '2021-12-12', 9577, 39430, 2998, NULL, '2.0000', '0.3200', '0.3200', '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 (41356, '2021-12-12', 2411, 39431, 2998, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41357, '2021-12-12', 1837, 39432, 2998, 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 (41358, '2021-12-12', 7414, 39433, 2998, NULL, '1.0000', '18.2100', '18.2100', '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 (41359, '2021-12-12', 2240, 39434, 2998, 13751, '1.0000', '34.0000', '34.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 (41360, '2021-12-12', 1577, 39435, 2998, 39771, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41361, '2021-12-12', 8775, 39436, 2998, 43351, '2.0000', '1.4728', '1.4728', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41362, '2021-12-12', 9603, 39437, 2998, 43348, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41363, '2021-12-12', 1499, 39438, 2998, 42841, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41364, '2021-12-12', 7447, 39439, 2998, NULL, '12.0000', '19.1100', '19.1100', '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 (41365, '2021-12-12', 2242, 39440, 2998, NULL, '2.0000', '0.5518', '0.5518', '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 (41366, '2021-12-12', 7482, 39441, 2998, 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 (41367, '2021-12-12', 1510, 39442, 2998, 37800, '1.0000', '9.5885', '9.5885', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41368, '2021-12-12', 2699, 39443, 2998, 43360, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41369, '2021-12-12', 1812, 39444, 2998, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41370, '2021-12-12', 2293, 39445, 2998, NULL, '1.0000', '1.4400', '1.4400', '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 (41371, '2021-12-12', 2989, 39446, 2998, 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 (41372, '2021-12-12', 9577, 39447, 2998, NULL, '2.0000', '0.3200', '0.3200', '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 (41373, '2021-12-12', 2303, 39448, 2998, NULL, '1.0000', '16.1000', '16.1000', '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 (41374, '2021-12-12', 1695, 39449, 2998, NULL, '1.0000', '14.8348', '14.8348', '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 (41375, '2021-12-12', 7398, 39450, 2998, NULL, '1.0000', '18.5000', '18.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 (41376, '2021-12-12', 9595, 39451, 2998, NULL, '2.0000', '1.7400', '1.7400', '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 (41377, '2021-12-12', 9683, 39452, 2998, 43362, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41378, '2021-12-12', 1519, 39453, 2998, NULL, '1.0000', '3.3980', '3.3980', '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 (41379, '2021-12-12', 1321, 39454, 2998, NULL, '1.0000', '9.8000', '9.8000', '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 (41380, '2021-12-12', 7626, 39455, 2998, 42559, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41381, '2021-12-12', 2167, 39456, 2998, 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 (41382, '2021-12-12', 9607, 39457, 2998, 39821, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41383, '2021-12-12', 7482, 39458, 2998, 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 (41384, '2021-12-12', 2242, 39459, 2998, NULL, '2.0000', '0.5518', '0.5518', '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 (41385, '2021-12-12', 1519, 39460, 2998, NULL, '1.0000', '3.3980', '3.3980', '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 (41386, '2021-12-12', 1501, 39461, 2998, NULL, '1.0000', '2.2100', '2.2100', '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 (41387, '2021-12-12', 2109, 39462, 2998, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '13.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 (41388, '2021-12-12', 1674, 39463, 2998, NULL, '1.0000', '3.2473', '3.2473', '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 (41389, '2021-12-12', 7780, 39464, 2998, NULL, '1.0000', '2.6000', '2.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 (41390, '2021-12-12', 1693, 39465, 2998, 33358, '1.0000', '7.8600', '7.8600', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41391, '2021-12-12', 2109, 39466, 2998, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '13.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 (41392, '2021-12-12', 8736, 39467, 2998, NULL, '1.0000', '3.4000', '3.4000', '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 (41393, '2021-12-12', 2342, 39468, 2998, 19387, '10.0000', '1.8601', '1.8601', '2.6000', '2.6000', '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 (41394, '2021-12-12', 2361, 39469, 2998, 42543, '1.0000', '0.4744', '0.4744', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41395, '2021-12-12', 2109, 39470, 2998, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '13.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 (41396, '2021-12-12', 7317, 39471, 2998, NULL, '1.0000', '19.5500', '19.5500', '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 (41397, '2021-12-12', 9577, 39472, 2998, NULL, '2.0000', '0.3200', '0.3200', '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 (41398, '2021-12-12', 1812, 39473, 2998, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41399, '2021-12-12', 2295, 39474, 2998, 42822, '3.0000', '1.8818', '1.8818', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41400, '2021-12-12', 2228, 39475, 2998, 22517, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '0.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 (41401, '2021-12-12', 9533, 39476, 2998, 40120, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41402, '2021-12-12', 1935, 39477, 2998, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41403, '2021-12-12', 1702, 39478, 2998, NULL, '1.0000', '14.9700', '14.9700', '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 (41404, '2021-12-12', 8444, 39479, 2998, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41405, '2021-12-12', 9683, 39480, 2998, 43362, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41406, '2021-12-12', 9337, 39481, 2998, NULL, '1.0000', '5.7200', '5.7200', '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 (41407, '2021-12-12', 2109, 39482, 2998, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '13.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 (41408, '2021-12-12', 2617, 39483, 2998, 42533, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41409, '2021-12-12', 2989, 39484, 2998, 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 (41410, '2021-12-12', 9577, 39485, 2998, NULL, '2.0000', '0.3200', '0.3200', '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 (41411, '2021-12-12', 2242, 39486, 2998, NULL, '1.0000', '0.5518', '0.5518', '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 (41412, '2021-12-12', 2036, 39487, 2998, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '11.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 (41413, '2021-12-12', 7514, 39488, 2998, NULL, '1.0000', '2.2500', '2.2500', '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 (41414, '2021-12-12', 1665, 39489, 2998, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41415, '2021-12-12', 2262, 39490, 2998, 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 (41416, '2021-12-12', 8759, 39491, 2998, NULL, '1.0000', '5.9600', '5.9600', '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 (41417, '2021-12-12', 8743, 39492, 2998, NULL, '1.0000', '10.4167', '10.4167', '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 (41418, '2021-12-12', 2169, 39493, 2999, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41419, '2021-12-12', 8638, 39494, 2999, NULL, '1.0000', '0.5100', '0.5100', '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 (41420, '2021-12-12', 1805, 39495, 2999, 42975, '1.0000', '4.2421', '4.2421', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41421, '2021-12-12', 7411, 39496, 2999, NULL, '1.0000', '1.3500', '1.3500', '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 (41422, '2021-12-12', 9577, 39497, 2999, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41423, '2021-12-12', 1610, 39498, 2999, 43856, '1.0000', '40.7666', '40.7666', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41424, '2021-12-12', 2331, 39499, 2999, 40156, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41425, '2021-12-12', 2289, 39500, 2999, 40620, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41426, '2021-12-12', 7328, 39501, 2999, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41427, '2021-12-12', 7544, 39502, 2999, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41428, '2021-12-12', 2353, 39503, 2999, 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 (41429, '2021-12-12', 2104, 39504, 2999, 29846, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '196.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41430, '2021-12-12', 7506, 39505, 2999, NULL, '2.0000', '15.0000', '15.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 (41431, '2021-12-12', 9695, 39506, 2999, 43804, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41432, '2021-12-12', 1342, 39507, 2999, 42947, '1.0000', '18.5909', '18.5909', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41433, '2021-12-12', 9160, 39508, 2999, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41434, '2021-12-12', 2250, 39509, 2999, 43907, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41435, '2021-12-12', 2327, 39510, 2999, 40170, '3.0000', '-110.9890', '-110.9890', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41436, '2021-12-12', 2327, 39510, 2999, NULL, '3.0000', '-110.9890', '-110.9890', '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 (41437, '2021-12-12', 1804, 39511, 2999, 43851, '1.0000', '4.3224', '4.3224', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41438, '2021-12-12', 8308, 39512, 2999, NULL, '1.0000', '11.0000', '11.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 (41439, '2021-12-12', 7514, 39513, 2999, NULL, '1.0000', '2.2500', '2.2500', '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 (41440, '2021-12-12', 2916, 39514, 2999, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41441, '2021-12-12', 8259, 39515, 2999, NULL, '1.0000', '35.0000', '35.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 (41442, '2021-12-12', 7609, 39516, 2999, NULL, '1.0000', '4.3300', '4.3300', '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 (41443, '2021-12-12', 1602, 39517, 2999, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41444, '2021-12-12', 2250, 39518, 2999, 43907, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41445, '2021-12-12', 1432, 39519, 2999, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41446, '2021-12-12', 1665, 39520, 2999, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41447, '2021-12-12', 2821, 39521, 2999, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41448, '2021-12-12', 9469, 39522, 2999, 42935, '2.0000', '2.3000', '2.3000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41449, '2021-12-12', 9469, 39522, 2999, 35936, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41450, '2021-12-12', 7641, 39523, 2999, NULL, '1.0000', '1.9000', '1.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 (41451, '2021-12-12', 1501, 39524, 2999, 1504, '1.0000', '1566.1965', '1566.1965', '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 (41452, '2021-12-12', 2285, 39525, 2999, 43049, '1.0000', '36.5090', '36.5090', '49.0000', '49.0000', '1.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41453, '2021-12-12', 2281, 39526, 2999, 3121, '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 (41454, '2021-12-12', 9089, 39527, 2999, 43338, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41455, '2021-12-12', 1346, 39528, 2999, NULL, '15.0000', '0.9289', '0.9289', '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 (41456, '2021-12-12', 1637, 39529, 2999, 40155, '1.0000', '403.4397', '403.4397', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41457, '2021-12-12', 1602, 39530, 2999, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41458, '2021-12-12', 3029, 39531, 2999, 42950, '1.0000', '5.9209', '5.9209', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41459, '2021-12-12', 1863, 39532, 2999, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41460, '2021-12-12', 1620, 39533, 2999, 40619, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41461, '2021-12-12', 2964, 39534, 2999, NULL, '1.0000', '6.6000', '6.6000', '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 (41462, '2021-12-12', 7963, 39535, 2999, NULL, '1.0000', '14.7000', '14.7000', '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 (41463, '2021-12-12', 1691, 39536, 2999, 34697, '1.0000', '10.3300', '10.3300', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41464, '2021-12-12', 1935, 39537, 2999, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41465, '2021-12-12', 1507, 39538, 2999, 1510, '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 (41466, '2021-12-12', 1574, 39539, 2999, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (41467, '2021-12-12', 1812, 39540, 2999, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '15.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41468, '2021-12-12', 2948, 39541, 2999, 43858, '3.0000', '0.9000', '0.9000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41469, '2021-12-12', 2574, 39542, 2999, 34422, '3.0000', '0.9166', '0.9166', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41470, '2021-12-12', 1337, 39543, 2999, 43900, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41471, '2021-12-12', 9399, 39544, 2999, NULL, '1.0000', '0.4200', '0.4200', '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 (41472, '2021-12-12', 7482, 39545, 2999, 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 (41473, '2021-12-12', 2260, 39546, 2999, 40885, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41474, '2021-12-12', 1516, 39547, 2999, 1518, '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 (41475, '2021-12-12', 2237, 39548, 2999, 40644, '2.0000', '1.3451', '1.3451', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41476, '2021-12-12', 1704, 39549, 2999, 43807, '1.0000', '3621.8219', '3621.8219', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41477, '2021-12-12', 2221, 39550, 2999, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41478, '2021-12-12', 1863, 39551, 2999, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41479, '2021-12-12', 1935, 39552, 2999, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41480, '2021-12-12', 2167, 39553, 2999, 40903, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41481, '2021-12-12', 1864, 39554, 2999, 42958, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41482, '2021-12-12', 2262, 39555, 2999, 18683, '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 (41483, '2021-12-12', 1646, 39556, 2999, 24107, '1.0000', '4.6225', '4.6225', '7.5000', '7.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 (41484, '2021-12-12', 9577, 39557, 2999, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41485, '2021-12-12', 2360, 39558, 2999, 42957, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '48.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41486, '2021-12-12', 2060, 39559, 2999, 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 (41487, '2021-12-12', 1867, 39560, 2999, NULL, '1.0000', '10.0599', '10.0599', '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 (41488, '2021-12-12', 7638, 39561, 2999, 43876, '1.0000', '5.3974', '5.3974', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41489, '2021-12-12', 1667, 39562, 2999, 40905, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41490, '2021-12-12', 1667, 39562, 2999, 37587, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41491, '2021-12-12', 7385, 39563, 2999, 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 (41492, '2021-12-13', 1629, 39564, 3000, NULL, '1.0000', '15.5000', '15.5000', '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 (41493, '2021-12-13', 7707, 39565, 3000, NULL, '1.0000', '6.0012', '6.0012', '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 (41494, '2021-12-13', 9329, 39566, 3000, NULL, '1.0000', '5.8000', '5.8000', '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 (41495, '2021-12-13', 1302, 39567, 3000, 33519, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41496, '2021-12-13', 2726, 39568, 3000, NULL, '1.0000', '4.0000', '4.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 (41497, '2021-12-13', 1884, 39569, 3000, 36052, '1.0000', '4.3958', '4.3958', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41498, '2021-12-13', 8039, 39570, 3000, NULL, '1.0000', '27.4067', '27.4067', '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 (41499, '2021-12-13', 7804, 39571, 3000, NULL, '3.0000', '1.8000', '1.8000', '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 (41500, '2021-12-13', 7641, 39572, 3000, NULL, '1.0000', '-7.4783', '-7.4783', '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 (41501, '2021-12-13', 1384, 39573, 3000, 37388, '2.0000', '13.5000', '13.5000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41502, '2021-12-13', 7719, 39574, 3000, NULL, '1.0000', '5.8125', '5.8125', '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 (41503, '2021-12-13', 8069, 39575, 3000, 39636, '1.0000', '29.0525', '29.0525', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41504, '2021-12-13', 8097, 39576, 3000, 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 (41505, '2021-12-13', 8063, 39577, 3000, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41506, '2021-12-13', 8361, 39578, 3000, NULL, '1.0000', '7.4495', '7.4495', '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 (41507, '2021-12-13', 7967, 39579, 3000, NULL, '2.0000', '6.3000', '6.3000', '8.5000', '8.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 (41508, '2021-12-13', 1590, 39580, 3000, 34520, '1.0000', '1.7100', '1.7100', '2.3000', '2.3000', '41.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41509, '2021-12-13', 7473, 39581, 3000, NULL, '1.0000', '25.2998', '25.2998', '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 (41510, '2021-12-13', 8166, 39582, 3000, NULL, '1.0000', '4.6000', '4.6000', '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 (41511, '2021-12-13', 7411, 39583, 3000, NULL, '1.0000', '1.3500', '1.3500', '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 (41512, '2021-12-13', 7757, 39584, 3000, NULL, '2.0000', '6.0000', '6.0000', '107.0000', '107.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 (41513, '2021-12-13', 7612, 39585, 3000, NULL, '2.0000', '1.1770', '1.1770', '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 (41514, '2021-12-13', 7872, 39586, 3000, NULL, '2.0000', '-1695.2798', '-1695.2798', '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 (41515, '2021-12-13', 8077, 39587, 3000, NULL, '2.0000', '11.5000', '11.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 (41516, '2021-12-13', 7774, 39588, 3000, 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 (41517, '2021-12-13', 8430, 39589, 3000, NULL, '2.0000', '31.6203', '31.6203', '42.0000', '42.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 (41518, '2021-12-13', 8756, 39590, 3000, 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 (41519, '2021-12-13', 1819, 39591, 3000, 43098, '1.0000', '5.4300', '5.4300', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41520, '2021-12-13', 7854, 39592, 3000, NULL, '1.0000', '28.5800', '28.5800', '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 (41521, '2021-12-13', 7711, 39593, 3000, NULL, '1.0000', '-78.4806', '-78.4806', '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 (41522, '2021-12-13', 2279, 39594, 3000, NULL, '1.0000', '2.6000', '2.6000', '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 (41523, '2021-12-13', 2296, 39595, 3000, NULL, '1.0000', '12.8812', '12.8812', '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 (41524, '2021-12-13', 8746, 39596, 3000, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41525, '2021-12-13', 8221, 39597, 3000, NULL, '1.0000', '3.9800', '3.9800', '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 (41526, '2021-12-13', 8759, 39598, 3000, 32143, '1.0000', '7.1571', '7.1571', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41527, '2021-12-13', 9092, 39599, 3000, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '173.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41528, '2021-12-13', 8703, 39600, 3000, NULL, '1.0000', '2.3100', '2.3100', '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 (41529, '2021-12-13', 9556, 39601, 3000, 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 (41530, '2021-12-13', 7550, 39602, 3000, NULL, '100.0000', '4.7300', '4.7300', '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 (41531, '2021-12-13', 9193, 39603, 3000, NULL, '2.0000', '5.5150', '5.5150', '9.5000', '9.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 (41532, '2021-12-13', 8539, 39604, 3000, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '19.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41533, '2021-12-13', 7963, 39605, 3000, NULL, '1.0000', '4.2500', '4.2500', '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 (41534, '2021-12-13', 7709, 39606, 3000, NULL, '2.0000', '35.8000', '35.8000', '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 (41535, '2021-12-13', 7442, 39607, 3000, 30054, '1.0000', '2.9500', '2.9500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41536, '2021-12-13', 7344, 39608, 3000, NULL, '10.0000', '94.2800', '94.2800', '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 (41537, '2021-12-13', 3009, 39609, 3000, 36076, '2.0000', '8.3000', '8.3000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41538, '2021-12-13', 7547, 39610, 3000, NULL, '2.0000', '0.0000', '0.0000', '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 (41539, '2021-12-13', 1849, 39611, 3000, 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 (41540, '2021-12-13', 7819, 39612, 3000, NULL, '1.0000', '9.5000', '9.5000', '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 (41541, '2021-12-13', 9413, 39613, 3001, 38544, '1.0000', '7.9285', '7.9285', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41542, '2021-12-13', 1519, 39614, 3001, NULL, '1.0000', '3.3980', '3.3980', '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 (41543, '2021-12-13', 7593, 39615, 3001, NULL, '1.0000', '0.8000', '0.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 (41544, '2021-12-13', 7641, 39616, 3001, NULL, '1.0000', '1.9000', '1.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 (41545, '2021-12-13', 7616, 39617, 3001, NULL, '1.0000', '21.5000', '21.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 (41546, '2021-12-13', 1410, 39618, 3001, NULL, '2.0000', '2.1083', '2.1083', '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 (41547, '2021-12-13', 1677, 39619, 3001, 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 (41548, '2021-12-13', 7641, 39620, 3001, NULL, '1.0000', '1.9000', '1.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 (41549, '2021-12-13', 2255, 39621, 3001, 42097, '1.0000', '17.8880', '17.8880', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41550, '2021-12-13', 1805, 39622, 3001, NULL, '1.0000', '4.5132', '4.5132', '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 (41551, '2021-12-13', 1912, 39623, 3001, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41552, '2021-12-13', 8765, 39624, 3001, 43353, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41553, '2021-12-13', 8746, 39625, 3001, 43354, '1.0000', '2.9988', '2.9988', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41554, '2021-12-13', 1574, 39626, 3001, NULL, '1.0000', '1.7001', '1.7001', '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 (41555, '2021-12-13', 7565, 39627, 3001, NULL, '1.0000', '0.2000', '0.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 (41556, '2021-12-13', 1871, 39628, 3001, NULL, '2.0000', '2.9308', '2.9308', '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 (41557, '2021-12-13', 7427, 39629, 3001, 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 (41558, '2021-12-13', 1935, 39630, 3001, 41370, '2.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41559, '2021-12-13', 8933, 39631, 3001, 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 (41560, '2021-12-13', 1621, 39632, 3001, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '52.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41561, '2021-12-13', 9577, 39633, 3001, NULL, '2.0000', '0.3200', '0.3200', '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 (41562, '2021-12-13', 8638, 39634, 3001, NULL, '1.0000', '0.5100', '0.5100', '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 (41563, '2021-12-13', 1831, 39635, 3001, NULL, '1.0000', '16.2420', '16.2420', '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 (41564, '2021-12-13', 3058, 39636, 3001, NULL, '1.0000', '4.6750', '4.6750', '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 (41565, '2021-12-13', 1519, 39637, 3001, NULL, '1.0000', '3.3980', '3.3980', '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 (41566, '2021-12-13', 1307, 39638, 3001, NULL, '1.0000', '1.7846', '1.7846', '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 (41567, '2021-12-13', 1744, 39639, 3001, 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 (41568, '2021-12-13', 1543, 39640, 3001, NULL, '1.0000', '41.9600', '41.9600', '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 (41569, '2021-12-13', 1867, 39641, 3001, 30694, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41570, '2021-12-13', 1674, 39642, 3001, NULL, '1.0000', '3.2473', '3.2473', '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 (41571, '2021-12-13', 1889, 39643, 3001, NULL, '1.0000', '1.3000', '1.3000', '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 (41572, '2021-12-13', 1386, 39644, 3001, 41413, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41573, '2021-12-13', 1621, 39645, 3001, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '52.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41574, '2021-12-13', 8548, 39646, 3001, NULL, '1.0000', '12.0000', '12.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 (41575, '2021-12-13', 8444, 39647, 3001, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41576, '2021-12-13', 1590, 39648, 3001, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (41577, '2021-12-13', 7802, 39649, 3001, NULL, '3.0000', '0.9200', '0.9200', '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 (41578, '2021-12-13', 1519, 39650, 3001, NULL, '1.0000', '3.3980', '3.3980', '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 (41579, '2021-12-13', 7544, 39651, 3001, NULL, '6.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (41580, '2021-12-13', 8984, 39652, 3001, NULL, '1.0000', '-100.8495', '-100.8495', '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 (41581, '2021-12-13', 2167, 39653, 3001, 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 (41582, '2021-12-13', 1841, 39654, 3001, 34025, '4.0000', '0.2601', '0.2601', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41583, '2021-12-13', 2108, 39655, 3002, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '17.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 (41584, '2021-12-13', 2167, 39656, 3002, 17165, '-27.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 (41585, '2021-12-13', 2167, 39656, 3002, NULL, '28.0000', '2.2000', '2.2000', '3.0000', '3.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 (41586, '2021-12-13', 1999, 39657, 3002, 6362, '-6.0000', '6.0000', '6.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 (41587, '2021-12-13', 1999, 39657, 3002, NULL, '7.0000', '6.0000', '6.0000', '8.5000', '8.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 (41588, '2021-12-13', 8177, 39658, 3002, 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 (41589, '2021-12-13', 1663, 39659, 3002, 3234, '-1.0000', '97.7700', '97.7700', '125.0000', '125.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41590, '2021-12-13', 1663, 39659, 3002, NULL, '2.0000', '97.7700', '97.7700', '125.0000', '125.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 (41591, '2021-12-13', 1592, 39660, 3002, 6223, '-5.0000', '35.9000', '35.9000', '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 (41592, '2021-12-13', 1592, 39660, 3002, NULL, '6.0000', '35.9000', '35.9000', '44.0000', '44.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 (41593, '2021-12-13', 1342, 39661, 3002, 11264, '-3.0000', '6.8074', '6.8074', '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 (41594, '2021-12-13', 1342, 39661, 3002, NULL, '4.0000', '6.8074', '6.8074', '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 (41595, '2021-12-13', 9577, 39662, 3002, NULL, '2.0000', '0.3200', '0.3200', '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 (41596, '2021-12-13', 2730, 39663, 3002, 19267, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '34.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 (41597, '2021-12-13', 2384, 39664, 3002, 12014, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '75.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 (41598, '2021-12-13', 1667, 39665, 3002, 9745, '-33.0000', '5.9400', '5.9400', '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 (41599, '2021-12-13', 1667, 39665, 3002, NULL, '34.0000', '5.9400', '5.9400', '8.5000', '8.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 (41600, '2021-12-13', 2567, 39666, 3002, 7177, '-2.0000', '33.0000', '33.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 (41601, '2021-12-13', 2567, 39666, 3002, NULL, '3.0000', '33.0000', '33.0000', '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 (41602, '2021-12-13', 1328, 39667, 3002, NULL, '1.0000', '3.1500', '3.1500', '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 (41603, '2021-12-13', 1641, 39668, 3002, 3214, '-144.0000', '0.9800', '0.9800', '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 (41604, '2021-12-13', 1641, 39668, 3002, NULL, '148.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41605, '2021-12-13', 1449, 39669, 3002, 5569, '-3.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 (41606, '2021-12-13', 1449, 39669, 3002, NULL, '4.0000', '90.0000', '90.0000', '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 (41607, '2021-12-13', 2109, 39670, 3002, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '95.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 (41608, '2021-12-13', 8938, 39671, 3002, NULL, '1.0000', '7.8500', '7.8500', '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 (41609, '2021-12-13', 7550, 39672, 3002, NULL, '1.0000', '4.7300', '4.7300', '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 (41610, '2021-12-13', 9291, 39673, 3002, NULL, '1.0000', '11.9000', '11.9000', '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 (41611, '2021-12-13', 1851, 39674, 3002, 8627, '-4.0000', '10.6568', '10.6568', '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 (41612, '2021-12-13', 1851, 39674, 3002, NULL, '5.0000', '10.6568', '10.6568', '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 (41613, '2021-12-13', 2233, 39675, 3002, 2777, '-13.0000', '19.0200', '19.0200', '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 (41614, '2021-12-13', 2233, 39675, 3002, NULL, '14.0000', '19.0200', '19.0200', '29.0000', '29.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 (41615, '2021-12-13', 1342, 39676, 3002, 11264, '-3.0000', '6.8074', '6.8074', '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 (41616, '2021-12-13', 1342, 39676, 3002, NULL, '4.0000', '6.8074', '6.8074', '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 (41617, '2021-12-13', 1602, 39677, 3002, 5897, '-62.0000', '6.7859', '6.7859', '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 (41618, '2021-12-13', 1602, 39677, 3002, NULL, '63.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41619, '2021-12-13', 9577, 39678, 3002, NULL, '2.0000', '0.3200', '0.3200', '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 (41620, '2021-12-13', 1867, 39679, 3002, NULL, '1.0000', '1.0500', '1.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 (41621, '2021-12-13', 2285, 39680, 3002, 2945, '-21.0000', '35.8000', '35.8000', '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 (41622, '2021-12-13', 2285, 39680, 3002, NULL, '22.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41623, '2021-12-13', 8177, 39681, 3002, 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 (41624, '2021-12-13', 1845, 39682, 3003, 6222, '-9.0000', '19.5000', '19.5000', '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 (41625, '2021-12-13', 1845, 39682, 3003, NULL, '10.0000', '19.5000', '19.5000', '26.5000', '26.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 (41626, '2021-12-13', 2136, 39683, 3003, 1351, '3.0000', '0.9500', '0.9500', '3.0000', '3.0000', '78.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 (41627, '2021-12-13', 2289, 39684, 3004, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41628, '2021-12-13', 1602, 39685, 3004, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41629, '2021-12-13', 8608, 39686, 3004, NULL, '1.0000', '0.9000', '0.9000', '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 (41630, '2021-12-13', 8362, 39687, 3004, NULL, '1.0000', '4.1000', '4.1000', '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 (41631, '2021-12-13', 7324, 39688, 3004, 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 (41632, '2021-12-13', 1499, 39689, 3004, 42841, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41633, '2021-12-13', 1602, 39690, 3004, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41634, '2021-12-13', 2225, 39691, 3004, 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 (41635, '2021-12-13', 2288, 39692, 3004, NULL, '1.0000', '7.8600', '7.8600', '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 (41636, '2021-12-13', 8774, 39693, 3004, NULL, '1.0000', '8.0000', '8.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 (41637, '2021-12-13', 1665, 39694, 3004, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41638, '2021-12-13', 1805, 39695, 3004, NULL, '1.0000', '4.5132', '4.5132', '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 (41639, '2021-12-13', 1501, 39696, 3004, NULL, '2.0000', '2.2100', '2.2100', '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 (41640, '2021-12-13', 1519, 39697, 3004, NULL, '1.0000', '3.3980', '3.3980', '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 (41641, '2021-12-13', 2283, 39698, 3004, 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 (41642, '2021-12-13', 9681, 39699, 3005, 43578, '1.0000', '7.8000', '7.8000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41643, '2021-12-13', 9089, 39700, 3005, 42765, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41644, '2021-12-13', 7317, 39701, 3005, NULL, '1.0000', '29.3700', '29.3700', '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 (41645, '2021-12-13', 7719, 39702, 3005, NULL, '1.0000', '5.8125', '5.8125', '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 (41646, '2021-12-13', 8276, 39703, 3005, NULL, '1.0000', '12.7063', '12.7063', '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 (41647, '2021-12-13', 7926, 39704, 3005, 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 (41648, '2021-12-13', 1916, 39705, 3005, 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 (41649, '2021-12-13', 9667, 39706, 3005, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41650, '2021-12-13', 7570, 39707, 3005, NULL, '1.0000', '10.0000', '10.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 (41651, '2021-12-13', 8844, 39708, 3005, NULL, '1.0000', '4.8500', '4.8500', '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 (41652, '2021-12-13', 7967, 39709, 3005, 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 (41653, '2021-12-13', 9642, 39710, 3005, 43539, '1.0000', '51.3000', '51.3000', '68.0000', '68.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41654, '2021-12-13', 8166, 39711, 3005, NULL, '2.0000', '4.6000', '4.6000', '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 (41655, '2021-12-13', 7671, 39712, 3005, NULL, '1.0000', '15.5000', '15.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 (41656, '2021-12-13', 2608, 39713, 3005, 36096, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41657, '2021-12-13', 8359, 39714, 3005, NULL, '2.0000', '27.0806', '27.0806', '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 (41658, '2021-12-13', 7411, 39715, 3005, NULL, '1.0000', '1.3500', '1.3500', '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 (41659, '2021-12-13', 7514, 39716, 3005, NULL, '3.0000', '12.9983', '12.9983', '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 (41660, '2021-12-13', 1427, 39717, 3005, 43527, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41661, '2021-12-13', 8970, 39718, 3005, NULL, '1.0000', '1.1400', '1.1400', '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 (41662, '2021-12-13', 1610, 39719, 3005, 39614, '1.0000', '16.1500', '16.1500', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41663, '2021-12-13', 9399, 39720, 3005, NULL, '1.0000', '0.4200', '0.4200', '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 (41664, '2021-12-13', 7778, 39721, 3005, NULL, '1.0000', '13.0100', '13.0100', '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 (41665, '2021-12-13', 2699, 39722, 3005, 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 (41666, '2021-12-13', 8214, 39723, 3005, NULL, '1.0000', '16.0000', '16.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 (41667, '2021-12-13', 8194, 39724, 3005, NULL, '1.0000', '31.8200', '31.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 (41668, '2021-12-13', 7707, 39725, 3005, NULL, '1.0000', '6.0012', '6.0012', '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 (41669, '2021-12-13', 8084, 39726, 3005, NULL, '1.0000', '11.7200', '11.7200', '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 (41670, '2021-12-13', 7768, 39727, 3005, NULL, '1.0000', '7.7800', '7.7800', '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 (41671, '2021-12-13', 7444, 39728, 3005, 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 (41672, '2021-12-13', 7509, 39729, 3005, 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 (41673, '2021-12-13', 8166, 39730, 3005, NULL, '1.0000', '4.6000', '4.6000', '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 (41674, '2021-12-13', 7674, 39731, 3005, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '60.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41675, '2021-12-13', 3062, 39732, 3005, 43543, '1.0000', '6.0700', '6.0700', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41676, '2021-12-13', 2100, 39733, 3005, 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 (41677, '2021-12-13', 8198, 39734, 3005, NULL, '1.0000', '6.2900', '6.2900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41678, '2021-12-13', 7926, 39735, 3005, 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 (41679, '2021-12-13', 3085, 39736, 3005, 39555, '1.0000', '57.0000', '57.0000', '75.0000', '75.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41680, '2021-12-13', 9647, 39737, 3005, 43130, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41681, '2021-12-13', 7769, 39738, 3005, 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 (41682, '2021-12-13', 9420, 39739, 3005, NULL, '1.0000', '5.5900', '5.5900', '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 (41683, '2021-12-13', 2232, 39740, 3005, 36037, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41684, '2021-12-13', 2235, 39741, 3005, 43450, '1.0000', '20.4000', '20.4000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41685, '2021-12-13', 7359, 39742, 3005, NULL, '1.0000', '10.6650', '10.6650', '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 (41686, '2021-12-13', 7854, 39743, 3005, NULL, '1.0000', '28.5800', '28.5800', '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 (41687, '2021-12-13', 2822, 39744, 3005, 30155, '5.0000', '2.7200', '2.7200', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41688, '2021-12-13', 2288, 39745, 3005, NULL, '1.0000', '7.5900', '7.5900', '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 (41689, '2021-12-13', 9338, 39746, 3005, NULL, '2.0000', '3.8000', '3.8000', '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 (41690, '2021-12-13', 8166, 39747, 3005, NULL, '1.0000', '4.6000', '4.6000', '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 (41691, '2021-12-13', 8208, 39748, 3005, NULL, '1.0000', '33.0000', '33.0000', '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 (41692, '2021-12-13', 1302, 39749, 3005, 33519, '2.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41693, '2021-12-13', 2726, 39750, 3005, NULL, '1.0000', '4.0000', '4.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 (41694, '2021-12-13', 7411, 39751, 3005, NULL, '1.0000', '1.3500', '1.3500', '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 (41695, '2021-12-13', 1772, 39752, 3005, 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 (41696, '2021-12-13', 2906, 39753, 3005, 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 (41697, '2021-12-13', 7473, 39754, 3005, NULL, '3.0000', '25.2998', '25.2998', '0.6000', '0.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 (41698, '2021-12-13', 8659, 39755, 3005, 30999, '1.0000', '3.8500', '3.8500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41699, '2021-12-13', 1772, 39756, 3005, 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 (41700, '2021-12-13', 7989, 39757, 3005, NULL, '1.0000', '26.9800', '26.9800', '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 (41701, '2021-12-13', 8712, 39758, 3005, NULL, '1.0000', '7.0400', '7.0400', '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 (41702, '2021-12-13', 8735, 39759, 3005, NULL, '1.0000', '5.6000', '5.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 (41703, '2021-12-13', 8780, 39760, 3005, NULL, '1.0000', '25.5900', '25.5900', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41704, '2021-12-13', 7736, 39761, 3005, NULL, '1.0000', '15.0000', '15.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 (41705, '2021-12-13', 7637, 39762, 3005, 43108, '1.0000', '7.3252', '7.3252', '9.6800', '9.6800', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41706, '2021-12-13', 7375, 39763, 3005, NULL, '10.0000', '4.7000', '4.7000', '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 (41707, '2021-12-13', 1546, 39764, 3006, 23159, '6.0000', '99.5612', '99.5612', '4.0000', '4.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 (41708, '2021-12-13', 7780, 39765, 3006, NULL, '1.0000', '2.6000', '2.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 (41709, '2021-12-13', 7447, 39766, 3006, NULL, '2.0000', '19.1100', '19.1100', '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 (41710, '2021-12-13', 1577, 39767, 3006, 39771, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41711, '2021-12-13', 2109, 39768, 3006, 24971, '1.0000', '0.2500', '0.2500', '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 (41712, '2021-12-13', 7589, 39769, 3006, NULL, '1.0000', '1.7700', '1.7700', '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 (41713, '2021-12-13', 2101, 39770, 3006, 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 (41714, '2021-12-13', 7473, 39771, 3006, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '90.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41715, '2021-12-13', 2681, 39772, 3006, 42104, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41716, '2021-12-13', 7473, 39773, 3006, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '90.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41717, '2021-12-13', 1322, 39774, 3006, NULL, '1.0000', '4.4000', '4.4000', '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 (41718, '2021-12-13', 1935, 39775, 3006, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41719, '2021-12-13', 2394, 39776, 3006, 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 (41720, '2021-12-13', 1377, 39777, 3006, 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 (41721, '2021-12-13', 2109, 39778, 3006, 24971, '1.0000', '0.2500', '0.2500', '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 (41722, '2021-12-13', 7683, 39779, 3006, NULL, '1.0000', '1.8400', '1.8400', '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 (41723, '2021-12-13', 1536, 39780, 3006, 37793, '10.0000', '101.0896', '101.0896', '6.0000', '6.0000', '30.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41724, '2021-12-13', 2109, 39781, 3006, 24971, '2.0000', '0.2500', '0.2500', '1.5000', '1.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 (41725, '2021-12-13', 2655, 39782, 3006, 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 (41726, '2021-12-13', 1427, 39783, 3006, 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 (41727, '2021-12-13', 7333, 39784, 3006, NULL, '1.0000', '13.5000', '13.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 (41728, '2021-12-13', 7954, 39785, 3006, 34017, '4.0000', '11.1369', '11.1369', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41729, '2021-12-13', 1837, 39786, 3006, 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 (41730, '2021-12-13', 2989, 39787, 3006, 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 (41731, '2021-12-13', 2280, 39788, 3006, NULL, '1.0000', '-177.9360', '-177.9360', '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 (41732, '2021-12-13', 2109, 39789, 3006, 24971, '1.0000', '0.2500', '0.2500', '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 (41733, '2021-12-13', 1910, 39790, 3006, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (41734, '2021-12-13', 8341, 39791, 3007, NULL, '1.0000', '30.7381', '30.7381', '40.1000', '40.1000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41735, '2021-12-13', 2280, 39792, 3008, NULL, '1.0000', '-177.9360', '-177.9360', '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 (41736, '2021-12-13', 2101, 39793, 3008, 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 (41737, '2021-12-13', 1501, 39794, 3008, NULL, '1.0000', '2.2100', '2.2100', '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 (41738, '2021-12-13', 2989, 39795, 3008, 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 (41739, '2021-12-13', 8608, 39796, 3008, NULL, '1.0000', '0.9000', '0.9000', '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 (41740, '2021-12-13', 1381, 39797, 3008, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41741, '2021-12-13', 2384, 39798, 3008, 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 (41742, '2021-12-13', 2109, 39799, 3008, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.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 (41743, '2021-12-13', 2109, 39800, 3008, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.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 (41744, '2021-12-13', 3054, 39801, 3008, 43224, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41745, '2021-12-13', 8638, 39802, 3008, NULL, '1.0000', '0.5100', '0.5100', '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 (41746, '2021-12-13', 8984, 39803, 3008, NULL, '1.0000', '-100.8495', '-100.8495', '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 (41747, '2021-12-13', 1674, 39804, 3008, NULL, '1.0000', '3.2473', '3.2473', '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 (41748, '2021-12-13', 8775, 39805, 3008, 43351, '1.0000', '1.4728', '1.4728', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41749, '2021-12-13', 7514, 39806, 3008, NULL, '1.0000', '2.2500', '2.2500', '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 (41750, '2021-12-13', 7857, 39807, 3008, 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 (41751, '2021-12-13', 1519, 39808, 3008, NULL, '1.0000', '3.3980', '3.3980', '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 (41752, '2021-12-13', 1592, 39809, 3009, 43260, '1.0000', '35.4585', '35.4585', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41753, '2021-12-13', 2247, 39810, 3010, 42802, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41754, '2021-12-13', 7509, 39811, 3011, 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 (41755, '2021-12-13', 9456, 39812, 3011, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41756, '2021-12-13', 8059, 39813, 3011, 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 (41757, '2021-12-13', 1655, 39814, 3011, 37405, '1.0000', '37.2800', '37.2800', '49.5000', '49.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41758, '2021-12-13', 7814, 39815, 3011, NULL, '1.0000', '22.1667', '22.1667', '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 (41759, '2021-12-13', 9098, 39816, 3011, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41760, '2021-12-13', 7804, 39817, 3011, NULL, '3.0000', '1.8000', '1.8000', '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 (41761, '2021-12-13', 9274, 39818, 3011, NULL, '1.0000', '3.1000', '3.1000', '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 (41762, '2021-12-13', 7671, 39819, 3011, NULL, '1.0000', '15.5000', '15.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 (41763, '2021-12-13', 7518, 39820, 3011, NULL, '2.0000', '-67.2578', '-67.2578', '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 (41764, '2021-12-13', 1772, 39821, 3011, 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 (41765, '2021-12-13', 2302, 39822, 3011, 37380, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41766, '2021-12-13', 7753, 39823, 3011, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41767, '2021-12-13', 8925, 39824, 3011, NULL, '1.0000', '2.4000', '2.4000', '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 (41768, '2021-12-13', 9391, 39825, 3011, NULL, '1.0000', '3.0000', '3.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 (41769, '2021-12-13', 7892, 39826, 3011, NULL, '1.0000', '4.2000', '4.2000', '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 (41770, '2021-12-13', 8429, 39827, 3011, NULL, '1.0000', '-25.7500', '-25.7500', '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 (41771, '2021-12-13', 2699, 39828, 3011, 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 (41772, '2021-12-13', 7608, 39829, 3011, NULL, '1.0000', '6.9800', '6.9800', '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 (41773, '2021-12-13', 7509, 39830, 3011, 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 (41774, '2021-12-13', 7411, 39831, 3011, NULL, '2.0000', '1.3500', '1.3500', '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 (41775, '2021-12-13', 2601, 39832, 3011, 40404, '1.0000', '16.0000', '16.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41776, '2021-12-13', 7715, 39833, 3011, 30500, '1.0000', '1.8900', '1.8900', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41777, '2021-12-13', 7642, 39834, 3011, NULL, '1.0000', '34.9900', '34.9900', '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 (41778, '2021-12-13', 1577, 39835, 3011, 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 (41779, '2021-12-13', 1339, 39836, 3011, 43961, '1.0000', '2.0193', '2.0193', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41780, '2021-12-13', 9337, 39837, 3011, NULL, '3.0000', '6.8067', '6.8067', '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 (41781, '2021-12-13', 7711, 39838, 3011, NULL, '2.0000', '-78.4806', '-78.4806', '49.0000', '49.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 (41782, '2021-12-13', 7317, 39839, 3011, NULL, '1.0000', '29.3700', '29.3700', '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 (41783, '2021-12-13', 7411, 39840, 3011, NULL, '3.0000', '1.3500', '1.3500', '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 (41784, '2021-12-13', 2416, 39841, 3011, 43964, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41785, '2021-12-13', 1301, 39842, 3011, NULL, '1.0000', '1.6800', '1.6800', '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 (41786, '2021-12-13', 2414, 39843, 3011, NULL, '2.0000', '3.4000', '3.4000', '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 (41787, '2021-12-13', 8769, 39844, 3011, 43938, '3.0000', '6.6000', '6.6000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41788, '2021-12-13', 9098, 39845, 3011, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41789, '2021-12-13', 7892, 39846, 3011, NULL, '1.0000', '4.2000', '4.2000', '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 (41790, '2021-12-13', 7790, 39847, 3012, NULL, '4.0000', '17.0000', '17.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 (41791, '2021-12-13', 7514, 39848, 3012, NULL, '1.0000', '2.2500', '2.2500', '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 (41792, '2021-12-13', 7889, 39849, 3013, NULL, '1.0000', '-8.6571', '-8.6571', '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 (41793, '2021-12-13', 1303, 39850, 3013, 33727, '2.0000', '1.3800', '1.3800', '4.0000', '4.0000', '93.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41794, '2021-12-13', 1665, 39851, 3013, 39577, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41795, '2021-12-13', 8761, 39852, 3013, 43941, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41796, '2021-12-13', 2643, 39853, 3013, 43963, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41797, '2021-12-13', 1837, 39854, 3014, 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 (41798, '2021-12-13', 8775, 39855, 3014, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41799, '2021-12-13', 1347, 39856, 3014, 41415, '3.0000', '3.3775', '3.3775', '4.5000', '4.5000', '25.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41800, '2021-12-13', 2379, 39857, 3014, NULL, '1.0000', '1.8000', '1.8000', '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 (41801, '2021-12-13', 2034, 39858, 3015, 5095, '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 (41802, '2021-12-13', 8011, 39859, 3015, NULL, '1.0000', '0.9500', '0.9500', '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 (41803, '2021-12-13', 9639, 39860, 3015, 41986, '1.0000', '28.7900', '28.7900', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41804, '2021-12-13', 7444, 39861, 3015, 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 (41805, '2021-12-13', 1863, 39862, 3015, 43815, '2.0000', '1.1829', '1.1829', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41806, '2021-12-13', 2907, 39863, 3015, 18690, '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 (41807, '2021-12-13', 1839, 39864, 3015, 43883, '1.0000', '6.4114', '6.4114', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41808, '2021-12-13', 2762, 39865, 3015, 43558, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41809, '2021-12-13', 2511, 39866, 3015, 42959, '1.0000', '8.6512', '8.6512', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41810, '2021-12-13', 2109, 39867, 3015, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '59.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41811, '2021-12-13', 1602, 39868, 3015, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41812, '2021-12-13', 1935, 39869, 3015, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41813, '2021-12-13', 1572, 39870, 3015, 31988, '5.0000', '-0.4738', '-0.4738', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41814, '2021-12-13', 1499, 39871, 3015, 31996, '3.0000', '0.4100', '0.4100', '0.7000', '0.7000', '23.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41815, '2021-12-13', 1499, 39872, 3015, 31996, '4.0000', '0.4100', '0.4100', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41816, '2021-12-13', 2360, 39873, 3015, 42957, '2.0000', '0.5200', '0.5200', '0.8000', '0.8000', '46.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41817, '2021-12-13', 1596, 39874, 3015, 43901, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41818, '2021-12-13', 2050, 39875, 3015, 40299, '1.0000', '6.7500', '6.7500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41819, '2021-12-13', 1704, 39876, 3015, 43807, '1.0000', '3621.8219', '3621.8219', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41820, '2021-12-13', 2699, 39877, 3015, 42938, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41821, '2021-12-13', 2169, 39878, 3015, 42967, '3.0000', '1.0678', '1.0678', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41822, '2021-12-13', 2285, 39879, 3015, 43049, '1.0000', '36.5090', '36.5090', '49.0000', '49.0000', '0.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41823, '2021-12-13', 7671, 39880, 3015, NULL, '2.0000', '15.5000', '15.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 (41824, '2021-12-13', 2221, 39881, 3015, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41825, '2021-12-13', 1731, 39882, 3015, 22636, '1.0000', '19.9600', '19.9600', '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 (41826, '2021-12-13', 2660, 39883, 3015, 42944, '10.0000', '0.7000', '0.7000', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41827, '2021-12-13', 2167, 39884, 3015, 40903, '3.0000', '2.2000', '2.2000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41828, '2021-12-13', 2109, 39885, 3015, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41829, '2021-12-13', 1880, 39886, 3015, 43840, '1.0000', '4.6011', '4.6011', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41830, '2021-12-13', 2095, 39887, 3015, 6007, '1.0000', '1.5000', '1.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 (41831, '2021-12-13', 2907, 39888, 3015, 18690, '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 (41832, '2021-12-13', 2858, 39889, 3015, 40607, '2.0000', '1.0000', '1.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41833, '2021-12-13', 1346, 39890, 3015, NULL, '30.0000', '0.9289', '0.9289', '1.5000', '1.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 (41834, '2021-12-13', 2221, 39891, 3015, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41835, '2021-12-13', 2263, 39892, 3015, 9567, '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 (41836, '2021-12-13', 2655, 39893, 3015, 42939, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41837, '2021-12-13', 1665, 39894, 3015, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41838, '2021-12-13', 1935, 39895, 3015, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41839, '2021-12-13', 1908, 39896, 3015, 5510, '2.0000', '1.7500', '1.7500', '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 (41840, '2021-12-13', 9577, 39897, 3015, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41841, '2021-12-13', 2068, 39898, 3015, 43884, '1.0000', '11.8601', '11.8601', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41842, '2021-12-13', 1585, 39899, 3015, 42953, '1.0000', '14.0025', '14.0025', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41843, '2021-12-13', 1863, 39900, 3015, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41844, '2021-12-13', 2612, 39901, 3015, 22632, '1.0000', '7.1600', '7.1600', '9.5000', '9.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 (41845, '2021-12-13', 2237, 39902, 3016, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41846, '2021-12-13', 1415, 39903, 3016, 40618, '1.0000', '14.5000', '14.5000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41847, '2021-12-13', 1602, 39904, 3017, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41848, '2021-12-13', 1935, 39905, 3017, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41849, '2021-12-14', 2381, 39906, 3018, NULL, '1.0000', '12.4824', '12.4824', '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 (41850, '2021-12-14', 2948, 39907, 3018, 39872, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '41.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41851, '2021-12-14', 2109, 39908, 3018, NULL, '3.0000', '0.2500', '0.2500', '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 (41852, '2021-12-14', 1873, 39909, 3018, 34941, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41853, '2021-12-14', 1347, 39910, 3018, 41415, '2.0000', '3.3775', '3.3775', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41854, '2021-12-14', 7672, 39911, 3018, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '81.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41855, '2021-12-14', 1504, 39912, 3018, 38525, '10.0000', '2.1038', '2.1038', '2.2000', '2.2000', '30.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41856, '2021-12-14', 2567, 39913, 3018, 42637, '1.0000', '31.0140', '31.0140', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41857, '2021-12-14', 1381, 39914, 3018, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41858, '2021-12-14', 2660, 39915, 3018, 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 (41859, '2021-12-14', 7579, 39916, 3018, NULL, '1.0000', '15.0000', '15.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 (41860, '2021-12-14', 2297, 39917, 3018, 39882, '1.0000', '6.4800', '6.4800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41861, '2021-12-14', 2298, 39918, 3018, 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 (41862, '2021-12-14', 7394, 39919, 3018, NULL, '1.0000', '12.7400', '12.7400', '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 (41863, '2021-12-14', 9634, 39920, 3018, 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 (41864, '2021-12-14', 1661, 39921, 3018, 42069, '1.0000', '35.9400', '35.9400', '47.5000', '47.5000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41865, '2021-12-14', 9612, 39922, 3018, 39230, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41866, '2021-12-14', 2454, 39923, 3018, 30701, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41867, '2021-12-14', 1612, 39924, 3018, 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 (41868, '2021-12-14', 7593, 39925, 3018, NULL, '1.0000', '0.8000', '0.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 (41869, '2021-12-14', 7748, 39926, 3018, NULL, '1.0000', '33.9800', '33.9800', '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 (41870, '2021-12-14', 8712, 39927, 3018, NULL, '1.0000', '7.0400', '7.0400', '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 (41871, '2021-12-14', 1502, 39928, 3018, 42838, '1.0000', '-50.9143', '-50.9143', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41872, '2021-12-14', 1674, 39929, 3018, NULL, '1.0000', '3.2473', '3.2473', '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 (41873, '2021-12-14', 1824, 39930, 3018, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41874, '2021-12-14', 2270, 39931, 3018, 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 (41875, '2021-12-14', 2105, 39932, 3018, 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 (41876, '2021-12-14', 7384, 39933, 3018, NULL, '1.0000', '8.2000', '8.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 (41877, '2021-12-14', 7880, 39934, 3018, NULL, '1.0000', '1.0000', '1.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 (41878, '2021-12-14', 7429, 39935, 3018, NULL, '1.0000', '18.0000', '18.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 (41879, '2021-12-14', 8984, 39936, 3018, NULL, '2.0000', '-100.8495', '-100.8495', '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 (41880, '2021-12-14', 1602, 39937, 3019, 42566, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41881, '2021-12-14', 2916, 39938, 3020, 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 (41882, '2021-12-14', 2136, 39939, 3020, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '77.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 (41883, '2021-12-14', 1409, 39940, 3020, 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 (41884, '2021-12-14', 7756, 39941, 3020, NULL, '1.0000', '2.5000', '2.5000', '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 (41885, '2021-12-14', 1382, 39942, 3020, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.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 (41886, '2021-12-14', 1386, 39943, 3020, 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 (41887, '2021-12-14', 1645, 39944, 3020, 3217, '-4.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 (41888, '2021-12-14', 1645, 39944, 3020, NULL, '5.0000', '4.7200', '4.7200', '7.5000', '7.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 (41889, '2021-12-14', 2237, 39945, 3020, 2781, '-22.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 (41890, '2021-12-14', 2237, 39945, 3020, NULL, '23.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (41891, '2021-12-14', 7411, 39946, 3020, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41892, '2021-12-14', 2068, 39947, 3020, 5568, '-17.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 (41893, '2021-12-14', 2068, 39947, 3020, NULL, '18.0000', '13.1000', '13.1000', '17.0000', '17.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 (41894, '2021-12-14', 1432, 39948, 3020, 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 (41895, '2021-12-14', 1630, 39949, 3020, 491, '1.0000', '66.3608', '66.3608', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 41);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41896, '2021-12-14', 1688, 39950, 3020, 4896, '-5.0000', '18.5000', '18.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 (41897, '2021-12-14', 1688, 39950, 3020, NULL, '6.0000', '18.5000', '18.5000', '25.0000', '25.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 (41898, '2021-12-14', 1574, 39951, 3020, 7593, '-34.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 (41899, '2021-12-14', 1574, 39951, 3020, NULL, '36.0000', '1.9600', '1.9600', '2.5000', '2.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 (41900, '2021-12-14', 2730, 39952, 3020, 19267, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '32.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 (41901, '2021-12-14', 1310, 39953, 3020, NULL, '1.0000', '0.3700', '0.3700', '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 (41902, '2021-12-14', 3081, 39954, 3020, 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 (41903, '2021-12-14', 1574, 39955, 3020, 7593, '-34.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 (41904, '2021-12-14', 1574, 39955, 3020, NULL, '35.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41905, '2021-12-14', 1426, 39956, 3020, 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 (41906, '2021-12-14', 7411, 39957, 3020, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41907, '2021-12-14', 2437, 39958, 3020, 5306, '-4.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 (41908, '2021-12-14', 2437, 39958, 3020, NULL, '5.0000', '80.0000', '80.0000', '100.0000', '100.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 (41909, '2021-12-14', 1687, 39959, 3020, 5785, '-17.0000', '165.9024', '165.9024', '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 (41910, '2021-12-14', 1687, 39959, 3020, NULL, '18.0000', '165.9024', '165.9024', '16.0000', '16.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 (41911, '2021-12-14', 2105, 39960, 3020, 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 (41912, '2021-12-14', 1550, 39961, 3020, NULL, '1.0000', '13.9000', '13.9000', '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 (41913, '2021-12-14', 1712, 39962, 3020, 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 (41914, '2021-12-14', 2623, 39963, 3020, 18884, '1.0000', '4.3000', '4.3000', '10.5000', '10.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 (41915, '2021-12-14', 3009, 39964, 3020, NULL, '2.0000', '22.0000', '22.0000', '14.5000', '14.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 (41916, '2021-12-14', 7411, 39965, 3020, 33804, '5.0000', '1.3500', '1.3500', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41917, '2021-12-14', 9577, 39966, 3020, NULL, '4.0000', '0.3200', '0.3200', '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 (41918, '2021-12-14', 9688, 39967, 3020, NULL, '1.0000', '3.4000', '3.4000', '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 (41919, '2021-12-14', 1871, 39968, 3020, 469, '10.0000', '24.5246', '24.5246', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41920, '2021-12-14', 2355, 39969, 3020, 3857, '10.0000', '5.3300', '5.3300', '7.2000', '7.2000', '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 (41921, '2021-12-14', 1584, 39970, 3020, 7601, '-11.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 (41922, '2021-12-14', 1584, 39970, 3020, NULL, '13.0000', '90.0000', '90.0000', '8.0000', '8.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 (41923, '2021-12-14', 1810, 39971, 3021, 39790, '1.0000', '8.5104', '8.5104', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41924, '2021-12-14', 2109, 39972, 3021, 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 (41925, '2021-12-14', 1651, 39973, 3021, NULL, '1.0000', '8.4739', '8.4739', '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 (41926, '2021-12-14', 8638, 39974, 3021, NULL, '1.0000', '0.5100', '0.5100', '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 (41927, '2021-12-14', 2167, 39975, 3021, 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 (41928, '2021-12-14', 7317, 39976, 3021, NULL, '1.0000', '19.5500', '19.5500', '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 (41929, '2021-12-14', 2353, 39977, 3021, 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 (41930, '2021-12-14', 7514, 39978, 3022, NULL, '1.0000', '2.2500', '2.2500', '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 (41931, '2021-12-14', 7514, 39979, 3023, NULL, '1.0000', '2.2500', '2.2500', '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 (41932, '2021-12-14', 2231, 39980, 3023, 42638, '1.0000', '33.9999', '33.9999', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41933, '2021-12-14', 1764, 39981, 3023, 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 (41934, '2021-12-14', 7899, 39982, 3023, 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 (41935, '2021-12-14', 7802, 39983, 3023, NULL, '4.0000', '0.9200', '0.9200', '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 (41936, '2021-12-14', 7736, 39984, 3023, NULL, '1.0000', '15.0000', '15.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 (41937, '2021-12-14', 1668, 39985, 3023, 42095, '1.0000', '44.2080', '44.2080', '18.0000', '18.0000', '24.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41938, '2021-12-14', 1519, 39986, 3024, NULL, '1.0000', '3.3980', '3.3980', '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 (41939, '2021-12-14', 1912, 39987, 3024, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41940, '2021-12-14', 2656, 39988, 3024, 32553, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41941, '2021-12-14', 9563, 39989, 3024, 42660, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41942, '2021-12-14', 7780, 39990, 3024, NULL, '1.0000', '2.6000', '2.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 (41943, '2021-12-14', 2283, 39991, 3025, 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 (41944, '2021-12-14', 1935, 39992, 3025, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41945, '2021-12-14', 2360, 39993, 3025, NULL, '1.0000', '0.5200', '0.5200', '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 (41946, '2021-12-14', 7415, 39994, 3025, NULL, '1.0000', '5.4200', '5.4200', '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 (41947, '2021-12-14', 7780, 39995, 3025, NULL, '1.0000', '2.6000', '2.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 (41948, '2021-12-14', 2167, 39996, 3025, 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 (41949, '2021-12-14', 2109, 39997, 3025, 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 (41950, '2021-12-14', 7675, 39998, 3026, NULL, '1.0000', '11.4300', '11.4300', '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 (41951, '2021-12-14', 9556, 39999, 3026, 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 (41952, '2021-12-14', 2315, 40000, 3026, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (41953, '2021-12-14', 7778, 40001, 3026, NULL, '1.0000', '13.0100', '13.0100', '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 (41954, '2021-12-14', 8166, 40002, 3026, NULL, '1.0000', '4.6000', '4.6000', '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 (41955, '2021-12-14', 7704, 40003, 3026, NULL, '5.0000', '-1.5625', '-1.5625', '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 (41956, '2021-12-14', 7591, 40004, 3026, NULL, '1.0000', '2.7500', '2.7500', '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 (41957, '2021-12-14', 8395, 40005, 3026, NULL, '2.0000', '0.9700', '0.9700', '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 (41958, '2021-12-14', 7411, 40006, 3026, NULL, '1.0000', '1.3500', '1.3500', '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 (41959, '2021-12-14', 7674, 40007, 3026, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '59.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41960, '2021-12-14', 7674, 40008, 3026, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41961, '2021-12-14', 7672, 40009, 3026, NULL, '1.0000', '1.0200', '1.0200', '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 (41962, '2021-12-14', 8269, 40010, 3026, NULL, '1.0000', '10.0000', '10.0000', '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 (41963, '2021-12-14', 7519, 40011, 3026, 43150, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41964, '2021-12-14', 7672, 40012, 3026, NULL, '2.0000', '1.0200', '1.0200', '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 (41965, '2021-12-14', 7544, 40013, 3026, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41966, '2021-12-14', 1841, 40014, 3026, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '51.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41967, '2021-12-14', 7990, 40015, 3026, NULL, '1.0000', '15.4600', '15.4600', '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 (41968, '2021-12-14', 8448, 40016, 3026, 39539, '1.0000', '6.8900', '6.8900', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41969, '2021-12-14', 9269, 40017, 3026, 36661, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41970, '2021-12-14', 2363, 40018, 3026, 42406, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41971, '2021-12-14', 8359, 40019, 3026, NULL, '1.0000', '27.0806', '27.0806', '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 (41972, '2021-12-14', 2315, 40020, 3026, NULL, '4.0000', '0.4740', '0.4740', '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 (41973, '2021-12-14', 8666, 40021, 3026, NULL, '1.0000', '0.4600', '0.4600', '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 (41974, '2021-12-14', 8666, 40022, 3026, NULL, '1.0000', '0.4600', '0.4600', '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 (41975, '2021-12-14', 7794, 40023, 3026, NULL, '2.0000', '9.8000', '9.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 (41976, '2021-12-14', 9667, 40024, 3026, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41977, '2021-12-14', 7507, 40025, 3026, NULL, '3.0000', '6.5000', '6.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 (41978, '2021-12-14', 8745, 40026, 3026, 43944, '1.0000', '7.0560', '7.0560', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41979, '2021-12-14', 7459, 40027, 3026, NULL, '10.0000', '40.3500', '40.3500', '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 (41980, '2021-12-14', 8359, 40028, 3026, NULL, '1.0000', '27.0806', '27.0806', '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 (41981, '2021-12-14', 2287, 40029, 3026, NULL, '4.0000', '2.3000', '2.3000', '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 (41982, '2021-12-14', 7411, 40030, 3026, NULL, '1.0000', '1.3500', '1.3500', '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 (41983, '2021-12-14', 9522, 40031, 3026, NULL, '1.0000', '10.0000', '10.0000', '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 (41984, '2021-12-14', 8940, 40032, 3026, NULL, '3.0000', '4.9900', '4.9900', '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 (41985, '2021-12-14', 7601, 40033, 3026, 36074, '5.0000', '13.5000', '13.5000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41986, '2021-12-14', 7601, 40033, 3026, NULL, '1.0000', '13.5000', '13.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 (41987, '2021-12-14', 7411, 40034, 3026, NULL, '2.0000', '1.3500', '1.3500', '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 (41988, '2021-12-14', 7576, 40035, 3026, NULL, '4.0000', '-11.8309', '-11.8309', '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 (41989, '2021-12-14', 8336, 40036, 3026, NULL, '4.0000', '3.4000', '3.4000', '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 (41990, '2021-12-14', 8753, 40037, 3026, 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 (41991, '2021-12-14', 7992, 40038, 3026, NULL, '1.0000', '8.8700', '8.8700', '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 (41992, '2021-12-14', 8151, 40039, 3026, NULL, '2.0000', '1.9300', '1.9300', '51.0000', '51.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 (41993, '2021-12-14', 2351, 40040, 3026, NULL, '1.0000', '17.7000', '17.7000', '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 (41994, '2021-12-14', 8097, 40041, 3026, 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 (41995, '2021-12-14', 9417, 40042, 3026, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41996, '2021-12-14', 7585, 40043, 3026, NULL, '1.0000', '6.2000', '6.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 (41997, '2021-12-14', 7514, 40044, 3026, NULL, '2.0000', '12.9983', '12.9983', '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 (41998, '2021-12-14', 7820, 40045, 3026, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41999, '2021-12-14', 8202, 40046, 3026, NULL, '1.0000', '1.6600', '1.6600', '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 (42000, '2021-12-14', 8918, 40047, 3026, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42001, '2021-12-14', 7898, 40048, 3026, NULL, '1.0000', '2.2000', '2.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 (42002, '2021-12-14', 7526, 40049, 3026, NULL, '1.0000', '0.2400', '0.2400', '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 (42003, '2021-12-14', 2699, 40050, 3026, 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 (42004, '2021-12-14', 9556, 40051, 3026, 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 (42005, '2021-12-14', 8497, 40052, 3026, NULL, '3.0000', '337.1200', '337.1200', '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 (42006, '2021-12-14', 7744, 40053, 3026, 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 (42007, '2021-12-14', 2295, 40054, 3026, 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 (42008, '2021-12-14', 7507, 40055, 3026, NULL, '3.0000', '6.5000', '6.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 (42009, '2021-12-14', 8596, 40056, 3026, NULL, '1.0000', '17.0000', '17.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 (42010, '2021-12-14', 7386, 40057, 3026, NULL, '1.0000', '3.0500', '3.0500', '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 (42011, '2021-12-14', 7524, 40058, 3026, NULL, '1.0000', '103.0922', '103.0922', '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 (42012, '2021-12-14', 2655, 40059, 3026, 43949, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42013, '2021-12-14', 9576, 40060, 3026, 43533, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42014, '2021-12-14', 7473, 40061, 3026, NULL, '10.0000', '25.2998', '25.2998', '0.6000', '0.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 (42015, '2021-12-14', 7703, 40062, 3026, NULL, '2.0000', '22.9900', '22.9900', '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 (42016, '2021-12-14', 7411, 40063, 3026, NULL, '4.0000', '1.3500', '1.3500', '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 (42017, '2021-12-14', 7657, 40064, 3026, NULL, '1.0000', '5.4700', '5.4700', '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 (42018, '2021-12-14', 7782, 40065, 3026, NULL, '1.0000', '5.0000', '5.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 (42019, '2021-12-14', 9274, 40066, 3026, NULL, '1.0000', '3.1000', '3.1000', '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 (42020, '2021-12-14', 9160, 40067, 3026, NULL, '1.0000', '41.6640', '41.6640', '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 (42021, '2021-12-14', 2315, 40068, 3026, NULL, '4.0000', '0.4740', '0.4740', '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 (42022, '2021-12-14', 7933, 40069, 3026, NULL, '1.0000', '0.3245', '0.3245', '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 (42023, '2021-12-14', 7930, 40070, 3026, 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 (42024, '2021-12-14', 8759, 40071, 3026, NULL, '1.0000', '7.1571', '7.1571', '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 (42025, '2021-12-14', 8666, 40072, 3026, NULL, '1.0000', '0.4600', '0.4600', '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 (42026, '2021-12-14', 7391, 40073, 3026, NULL, '1.0000', '-26.2683', '-26.2683', '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 (42027, '2021-12-14', 2315, 40074, 3026, NULL, '1.0000', '0.4740', '0.4740', '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 (42028, '2021-12-14', 8359, 40075, 3026, NULL, '1.0000', '27.0806', '27.0806', '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 (42029, '2021-12-14', 7432, 40076, 3026, 30048, '1.0000', '3.2300', '3.2300', '20.0000', '20.0000', '52.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42030, '2021-12-14', 7709, 40077, 3026, NULL, '2.0000', '35.8000', '35.8000', '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 (42031, '2021-12-14', 7892, 40078, 3026, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42032, '2021-12-14', 7917, 40079, 3026, NULL, '1.0000', '5.0000', '5.0000', '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 (42033, '2021-12-14', 9021, 40080, 3027, 39827, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42034, '2021-12-14', 7746, 40081, 3027, NULL, '3.0000', '2.8600', '2.8600', '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 (42035, '2021-12-14', 1590, 40082, 3027, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42036, '2021-12-14', 1966, 40083, 3027, 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 (42037, '2021-12-14', 7411, 40084, 3027, NULL, '1.0000', '1.3500', '1.3500', '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 (42038, '2021-12-14', 7780, 40085, 3027, NULL, '1.0000', '2.6000', '2.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 (42039, '2021-12-14', 7415, 40086, 3027, NULL, '1.0000', '5.4200', '5.4200', '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 (42040, '2021-12-14', 7411, 40087, 3027, NULL, '2.0000', '1.3500', '1.3500', '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 (42041, '2021-12-14', 2167, 40088, 3027, 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 (42042, '2021-12-14', 3058, 40089, 3027, NULL, '1.0000', '4.6750', '4.6750', '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 (42043, '2021-12-14', 3067, 40090, 3027, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '26.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 (42044, '2021-12-14', 1621, 40091, 3027, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '50.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42045, '2021-12-14', 2989, 40092, 3027, 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 (42046, '2021-12-14', 7762, 40093, 3027, NULL, '1.0000', '5.1000', '5.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 (42047, '2021-12-14', 2287, 40094, 3027, 43279, '6.0000', '1.6790', '1.6790', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42048, '2021-12-14', 7411, 40095, 3027, NULL, '1.0000', '1.3500', '1.3500', '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 (42049, '2021-12-14', 2167, 40096, 3027, 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 (42050, '2021-12-14', 1704, 40097, 3027, NULL, '1.0000', '30.1576', '30.1576', '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 (42051, '2021-12-14', 1837, 40098, 3028, NULL, '15.0000', '0.5500', '0.5500', '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 (42052, '2021-12-14', 8982, 40099, 3028, NULL, '1.0000', '9.8663', '9.8663', '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 (42053, '2021-12-14', 7912, 40100, 3029, NULL, '1.0000', '8.0361', '8.0361', '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 (42054, '2021-12-14', 7657, 40101, 3029, NULL, '1.0000', '5.4700', '5.4700', '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 (42055, '2021-12-14', 7704, 40102, 3029, NULL, '1.0000', '-1.5625', '-1.5625', '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 (42056, '2021-12-14', 7709, 40103, 3029, NULL, '2.0000', '35.8000', '35.8000', '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 (42057, '2021-12-14', 8038, 40104, 3029, NULL, '1.0000', '6.7600', '6.7600', '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 (42058, '2021-12-14', 8308, 40105, 3029, NULL, '1.0000', '11.0000', '11.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 (42059, '2021-12-14', 3022, 40106, 3029, NULL, '1.0000', '4.1200', '4.1200', '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 (42060, '2021-12-14', 7806, 40107, 3029, NULL, '5.0000', '14.0000', '14.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 (42061, '2021-12-14', 7523, 40108, 3029, NULL, '1.0000', '1.8300', '1.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 (42062, '2021-12-14', 2506, 40109, 3029, NULL, '2.0000', '3.4900', '3.4900', '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 (42063, '2021-12-14', 8393, 40110, 3029, 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 (42064, '2021-12-14', 7639, 40111, 3029, 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 (42065, '2021-12-14', 2226, 40112, 3029, NULL, '2.0000', '14.0000', '14.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 (42066, '2021-12-14', 2227, 40113, 3029, 42763, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42067, '2021-12-14', 2227, 40113, 3029, 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 (42068, '2021-12-14', 8888, 40114, 3029, 42764, '2.0000', '28.0000', '28.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42069, '2021-12-14', 2079, 40115, 3029, 39400, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42070, '2021-12-14', 7512, 40116, 3029, NULL, '2.0000', '1.0000', '1.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 (42071, '2021-12-14', 7754, 40117, 3029, NULL, '1.0000', '19.0200', '19.0200', '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 (42072, '2021-12-14', 8124, 40118, 3029, NULL, '1.0000', '8.0000', '8.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 (42073, '2021-12-14', 9214, 40119, 3029, 43937, '2.0000', '9.4452', '9.4452', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42074, '2021-12-14', 2713, 40120, 3029, NULL, '2.0000', '1.5000', '1.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 (42075, '2021-12-14', 7853, 40121, 3029, NULL, '2.0000', '35.0000', '35.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 (42076, '2021-12-14', 8608, 40122, 3029, NULL, '1.0000', '5.7400', '5.7400', '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 (42077, '2021-12-14', 9667, 40123, 3029, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42078, '2021-12-14', 7581, 40124, 3029, NULL, '1.0000', '1.3000', '1.3000', '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 (42079, '2021-12-14', 8965, 40125, 3029, NULL, '1.0000', '52.9900', '52.9900', '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 (42080, '2021-12-14', 7821, 40126, 3029, NULL, '1.0000', '7.0000', '7.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 (42081, '2021-12-14', 7524, 40127, 3029, NULL, '1.0000', '103.0922', '103.0922', '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 (42082, '2021-12-14', 7877, 40128, 3029, NULL, '1.0000', '1.3600', '1.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 (42083, '2021-12-14', 9640, 40129, 3029, 43541, '1.0000', '38.0000', '38.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42084, '2021-12-14', 7576, 40130, 3029, NULL, '4.0000', '-11.8309', '-11.8309', '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 (42085, '2021-12-14', 8596, 40131, 3029, NULL, '1.0000', '17.0000', '17.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 (42086, '2021-12-14', 2506, 40132, 3029, 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 (42087, '2021-12-14', 7411, 40133, 3029, NULL, '1.0000', '1.3500', '1.3500', '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 (42088, '2021-12-14', 7415, 40134, 3029, NULL, '1.0000', '5.4200', '5.4200', '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 (42089, '2021-12-14', 7639, 40135, 3029, 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 (42090, '2021-12-14', 7518, 40136, 3029, NULL, '1.0000', '-67.2578', '-67.2578', '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 (42091, '2021-12-14', 9563, 40137, 3030, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '23.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42092, '2021-12-14', 7411, 40138, 3031, NULL, '1.0000', '1.3500', '1.3500', '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 (42093, '2021-12-14', 3029, 40139, 3031, NULL, '1.0000', '4.7700', '4.7700', '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 (42094, '2021-12-14', 7626, 40140, 3031, 42559, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42095, '2021-12-14', 7398, 40141, 3031, NULL, '2.0000', '18.5000', '18.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 (42096, '2021-12-14', 8360, 40142, 3031, NULL, '1.0000', '3.5200', '3.5200', '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 (42097, '2021-12-14', 1854, 40143, 3031, 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 (42098, '2021-12-14', 8015, 40144, 3031, 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 (42099, '2021-12-14', 3058, 40145, 3031, NULL, '1.0000', '4.6750', '4.6750', '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 (42100, '2021-12-14', 8000, 40146, 3031, NULL, '1.0000', '25.8200', '25.8200', '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 (42101, '2021-12-14', 2237, 40147, 3031, NULL, '1.0000', '-329.8285', '-329.8285', '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 (42102, '2021-12-14', 7514, 40148, 3031, NULL, '1.0000', '2.2500', '2.2500', '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 (42103, '2021-12-14', 7640, 40149, 3031, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42104, '2021-12-14', 1665, 40150, 3032, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42105, '2021-12-14', 1854, 40151, 3032, 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 (42106, '2021-12-14', 2061, 40152, 3033, 11010, '1.0000', '10.9800', '10.9800', '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 (42107, '2021-12-14', 9577, 40153, 3033, 38070, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42108, '2021-12-14', 1871, 40154, 3033, 43862, '10.0000', '20.0938', '20.0938', '3.0000', '3.0000', '90.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42109, '2021-12-14', 7756, 40155, 3033, NULL, '1.0000', '23.9111', '23.9111', '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 (42110, '2021-12-14', 2135, 40156, 3033, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42111, '2021-12-14', 2762, 40157, 3033, 43558, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42112, '2021-12-14', 7741, 40158, 3033, NULL, '1.0000', '1.2000', '1.2000', '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 (42113, '2021-12-14', 3038, 40159, 3033, 24012, '1.0000', '25.0000', '25.0000', '33.0000', '33.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 (42114, '2021-12-14', 1780, 40160, 3033, NULL, '1.0000', '35.6000', '35.6000', '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 (42115, '2021-12-14', 1863, 40161, 3033, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42116, '2021-12-14', 9474, 40162, 3033, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42117, '2021-12-14', 1804, 40163, 3033, 43851, '1.0000', '4.3224', '4.3224', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42118, '2021-12-14', 2384, 40164, 3033, 29813, '1.0000', '0.2683', '0.2683', '0.7000', '0.7000', '60.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42119, '2021-12-14', 2350, 40165, 3033, 40907, '1.0000', '11.3244', '11.3244', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42120, '2021-12-14', 1661, 40166, 3033, 40876, '1.0000', '32.1800', '32.1800', '47.5000', '47.5000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42121, '2021-12-14', 1427, 40167, 3033, 43870, '1.0000', '14.7223', '14.7223', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42122, '2021-12-14', 1837, 40168, 3033, 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 (42123, '2021-12-14', 7385, 40169, 3033, NULL, '10.0000', '2.2000', '2.2000', '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 (42124, '2021-12-14', 1572, 40170, 3033, 31988, '1.0000', '-0.4738', '-0.4738', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42125, '2021-12-14', 2108, 40171, 3033, 6020, '1.0000', '4.7500', '4.7500', '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 (42126, '2021-12-14', 9474, 40172, 3033, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42127, '2021-12-14', 1533, 40173, 3033, 43843, '1.0000', '3.2474', '3.2474', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42128, '2021-12-14', 2136, 40174, 3033, 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 (42129, '2021-12-14', 2916, 40175, 3033, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42130, '2021-12-14', 1700, 40176, 3033, 42216, '1.0000', '32.6296', '32.6296', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42131, '2021-12-14', 1746, 40177, 3033, 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 (42132, '2021-12-14', 2682, 40178, 3033, 43046, '1.0000', '19.3000', '19.3000', '25.5000', '25.5000', '4.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42133, '2021-12-14', 7608, 40179, 3033, NULL, '1.0000', '6.9800', '6.9800', '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 (42134, '2021-12-14', 1658, 40180, 3033, 40850, '1.0000', '33.3236', '33.3236', '35.5000', '35.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42135, '2021-12-14', 1586, 40181, 3033, 40851, '1.0000', '49.0100', '49.0100', '69.0000', '69.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42136, '2021-12-14', 9453, 40182, 3033, 43864, '2.0000', '11.0000', '11.0000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42137, '2021-12-14', 2221, 40183, 3033, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42138, '2021-12-14', 1812, 40184, 3033, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '14.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42139, '2021-12-14', 2109, 40185, 3033, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '56.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42140, '2021-12-14', 9474, 40186, 3033, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42141, '2021-12-14', 1590, 40187, 3033, 9437, '3.0000', '1.7100', '1.7100', '2.3000', '2.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 (42142, '2021-12-14', 2916, 40188, 3033, 42980, '2.0000', '12.0163', '12.0163', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42143, '2021-12-14', 1863, 40189, 3033, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42144, '2021-12-14', 1945, 40190, 3033, 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 (42145, '2021-12-14', 1497, 40191, 3033, 32820, '1.0000', '10.6429', '10.6429', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42146, '2021-12-14', 2307, 40192, 3033, 43809, '1.0000', '210.7337', '210.7337', '161.0000', '161.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42147, '2021-12-14', 8622, 40193, 3033, 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 (42148, '2021-12-14', 2169, 40194, 3033, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42149, '2021-12-14', 1854, 40195, 3033, 4985, '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 (42150, '2021-12-14', 1619, 40196, 3033, 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 (42151, '2021-12-14', 2313, 40197, 3033, NULL, '1.0000', '8.7000', '8.7000', '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 (42152, '2021-12-14', 2098, 40198, 3033, 6010, '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 (42153, '2021-12-14', 2085, 40199, 3033, 43554, '10.0000', '15.6202', '15.6202', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42154, '2021-12-14', 1592, 40200, 3033, 43836, '1.0000', '35.4788', '35.4788', '44.0000', '44.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42155, '2021-12-14', 1758, 40201, 3033, 31717, '1.0000', '42.6760', '42.6760', '62.5000', '62.5000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42156, '2021-12-14', 2167, 40202, 3033, 40903, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42157, '2021-12-14', 1837, 40203, 3033, NULL, '7.0000', '0.5500', '0.5500', '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 (42158, '2021-12-14', 1945, 40204, 3033, 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 (42159, '2021-12-14', 2320, 40205, 3033, 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 (42160, '2021-12-14', 2285, 40206, 3033, 32021, '1.0000', '36.5090', '36.5090', '49.0000', '49.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42161, '2021-12-14', 1574, 40207, 3033, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.5000', '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 (42162, '2021-12-14', 9565, 40208, 3033, 40377, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42163, '2021-12-14', 2916, 40209, 3033, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42164, '2021-12-14', 2284, 40210, 3034, 38563, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42165, '2021-12-14', 2136, 40211, 3035, 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 (42166, '2021-12-14', 1301, 40212, 3036, 2472, '1.0000', '1.6800', '1.6800', '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 (42167, '2021-12-14', 7591, 40213, 3037, NULL, '1.0000', '2.7500', '2.7500', '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 (42168, '2021-12-14', 1695, 40214, 3038, 43875, '1.0000', '66.1165', '66.1165', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42169, '2021-12-14', 7857, 40215, 3039, 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 (42170, '2021-12-14', 2893, 40216, 3039, 18431, '2.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 (42171, '2021-12-14', 1518, 40217, 3039, 43860, '1.0000', '34.8230', '34.8230', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42172, '2021-12-14', 1602, 40218, 3040, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42173, '2021-12-14', 2965, 40219, 3041, NULL, '1.0000', '5.3990', '5.3990', '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 (42174, '2021-12-14', 8743, 40220, 3041, NULL, '1.0000', '10.4167', '10.4167', '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 (42175, '2021-12-14', 1665, 40221, 3041, 37445, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42176, '2021-12-14', 9577, 40222, 3041, NULL, '2.0000', '0.3200', '0.3200', '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 (42177, '2021-12-14', 7743, 40223, 3041, NULL, '3.0000', '7.3900', '7.3900', '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 (42178, '2021-12-14', 7678, 40224, 3041, NULL, '1.0000', '5.1400', '5.1400', '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 (42179, '2021-12-15', 8052, 40225, 3042, NULL, '1.0000', '0.4700', '0.4700', '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 (42180, '2021-12-15', 1800, 40226, 3043, 1627, '-3.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 (42181, '2021-12-15', 1800, 40226, 3043, NULL, '4.0000', '20.2784', '20.2784', '27.0000', '27.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 (42182, '2021-12-15', 9640, 40227, 3043, NULL, '1.0000', '38.0000', '38.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 (42183, '2021-12-15', 1585, 40228, 3043, 7602, '-4.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 (42184, '2021-12-15', 1585, 40228, 3043, NULL, '5.0000', '13.0000', '13.0000', '17.5000', '17.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 (42185, '2021-12-15', 2594, 40229, 3043, 8532, '-1.0000', '16.4000', '16.4000', '21.5000', '21.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 (42186, '2021-12-15', 2594, 40229, 3043, NULL, '4.0000', '16.4000', '16.4000', '21.5000', '21.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 (42187, '2021-12-15', 1493, 40230, 3043, 9747, '-10.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 (42188, '2021-12-15', 1493, 40230, 3043, NULL, '11.0000', '1.5425', '1.5425', '3.0000', '3.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 (42189, '2021-12-15', 1585, 40231, 3043, 7602, '-4.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 (42190, '2021-12-15', 1585, 40231, 3043, NULL, '5.0000', '13.0000', '13.0000', '17.5000', '17.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 (42191, '2021-12-15', 1302, 40232, 3043, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '4.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 (42192, '2021-12-15', 1407, 40233, 3043, 33791, '1.0000', '17.1680', '17.1680', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42193, '2021-12-15', 2916, 40234, 3043, 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 (42194, '2021-12-15', 2221, 40235, 3043, 4154, '-22.0000', '14.4737', '14.4737', '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 (42195, '2021-12-15', 2221, 40235, 3043, NULL, '23.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (42196, '2021-12-15', 1670, 40236, 3043, 10163, '-9.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 (42197, '2021-12-15', 1670, 40236, 3043, NULL, '10.0000', '19.5000', '19.5000', '26.0000', '26.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 (42198, '2021-12-15', 2105, 40237, 3043, 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 (42199, '2021-12-15', 8737, 40238, 3043, NULL, '1.0000', '9.8000', '9.8000', '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 (42200, '2021-12-15', 2266, 40239, 3044, 2801, '-6.0000', '6.4900', '6.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 (42201, '2021-12-15', 2266, 40239, 3044, NULL, '7.0000', '6.4900', '6.4900', '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 (42202, '2021-12-15', 1855, 40240, 3044, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (42203, '2021-12-15', 1812, 40241, 3044, 8224, '-41.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 (42204, '2021-12-15', 1812, 40241, 3044, NULL, '44.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42205, '2021-12-15', 9167, 40242, 3045, NULL, '1.0000', '50.0000', '50.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 (42206, '2021-12-15', 1510, 40243, 3045, 37800, '1.0000', '9.5885', '9.5885', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42207, '2021-12-15', 1598, 40244, 3045, 38533, '1.0000', '3.3065', '3.3065', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42208, '2021-12-15', 2132, 40245, 3045, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '5.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 (42209, '2021-12-15', 2263, 40246, 3045, 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 (42210, '2021-12-15', 1592, 40247, 3045, 43260, '1.0000', '35.4585', '35.4585', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42211, '2021-12-15', 2167, 40248, 3045, 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 (42212, '2021-12-15', 1912, 40249, 3045, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42213, '2021-12-15', 2167, 40250, 3045, 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 (42214, '2021-12-15', 1574, 40251, 3045, NULL, '1.0000', '1.7001', '1.7001', '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 (42215, '2021-12-15', 2169, 40252, 3045, NULL, '1.0000', '1.1500', '1.1500', '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 (42216, '2021-12-15', 1871, 40253, 3045, NULL, '1.0000', '2.9308', '2.9308', '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 (42217, '2021-12-15', 1574, 40254, 3045, NULL, '1.0000', '1.7001', '1.7001', '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 (42218, '2021-12-15', 1555, 40255, 3045, 41364, '1.0000', '22.2400', '22.2400', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42219, '2021-12-15', 1616, 40256, 3045, 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 (42220, '2021-12-15', 2491, 40257, 3045, 42551, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42221, '2021-12-15', 1806, 40258, 3045, 38550, '1.0000', '34.3245', '34.3245', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42222, '2021-12-15', 1501, 40259, 3045, NULL, '1.0000', '2.2100', '2.2100', '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 (42223, '2021-12-15', 2437, 40260, 3046, 5306, '-5.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 (42224, '2021-12-15', 2437, 40260, 3046, NULL, '6.0000', '80.0000', '80.0000', '100.0000', '100.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 (42225, '2021-12-15', 1602, 40261, 3046, 5897, '-63.0000', '6.7859', '6.7859', '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 (42226, '2021-12-15', 1602, 40261, 3046, NULL, '64.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42227, '2021-12-15', 8746, 40262, 3046, NULL, '1.0000', '3.1500', '3.1500', '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 (42228, '2021-12-15', 1524, 40263, 3046, 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 (42229, '2021-12-15', 2858, 40264, 3046, 17772, '-21.0000', '1.0000', '1.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 (42230, '2021-12-15', 2858, 40264, 3046, NULL, '22.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42231, '2021-12-15', 1665, 40265, 3046, 3235, '-43.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 (42232, '2021-12-15', 1665, 40265, 3046, NULL, '44.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42233, '2021-12-15', 9214, 40266, 3047, NULL, '1.0000', '9.6000', '9.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 (42234, '2021-12-15', 1804, 40267, 3047, NULL, '1.0000', '3.8408', '3.8408', '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 (42235, '2021-12-15', 8135, 40268, 3047, 39770, '1.0000', '3.1226', '3.1226', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42236, '2021-12-15', 1783, 40269, 3048, 4901, '-18.0000', '7.8500', '7.8500', '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 (42237, '2021-12-15', 1783, 40269, 3048, NULL, '24.0000', '7.8500', '7.8500', '11.0000', '11.0000', '-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 (42238, '2021-12-15', 2010, 40270, 3049, 39982, '1.0000', '0.2369', '0.2369', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42239, '2021-12-15', 9577, 40271, 3049, NULL, '6.0000', '0.3200', '0.3200', '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 (42240, '2021-12-15', 1501, 40272, 3049, NULL, '1.0000', '2.2100', '2.2100', '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 (42241, '2021-12-15', 1571, 40273, 3049, 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 (42242, '2021-12-15', 2109, 40274, 3049, 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 (42243, '2021-12-15', 1809, 40275, 3049, 42557, '1.0000', '9.5248', '9.5248', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42244, '2021-12-15', 1501, 40276, 3049, NULL, '1.0000', '2.2100', '2.2100', '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 (42245, '2021-12-15', 7984, 40277, 3050, NULL, '1.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42246, '2021-12-15', 7674, 40278, 3050, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '56.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42247, '2021-12-15', 7632, 40279, 3050, 37403, '1.0000', '9.8496', '9.8496', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42248, '2021-12-15', 7612, 40280, 3050, NULL, '1.0000', '1.1770', '1.1770', '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 (42249, '2021-12-15', 7408, 40281, 3050, 37373, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42250, '2021-12-15', 7429, 40282, 3050, NULL, '1.0000', '18.0000', '18.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 (42251, '2021-12-15', 7507, 40283, 3050, NULL, '3.0000', '6.5000', '6.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 (42252, '2021-12-15', 8097, 40284, 3050, 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 (42253, '2021-12-15', 9620, 40285, 3050, 43084, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42254, '2021-12-15', 8596, 40286, 3050, NULL, '1.0000', '17.0000', '17.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 (42255, '2021-12-15', 7807, 40287, 3050, NULL, '2.0000', '12.0000', '12.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 (42256, '2021-12-15', 9214, 40288, 3050, 43937, '1.0000', '9.4452', '9.4452', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42257, '2021-12-15', 8038, 40289, 3051, NULL, '1.0000', '6.7600', '6.7600', '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 (42258, '2021-12-15', 7784, 40290, 3051, NULL, '2.0000', '4.2500', '4.2500', '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 (42259, '2021-12-15', 9337, 40291, 3051, NULL, '1.0000', '6.8067', '6.8067', '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 (42260, '2021-12-15', 9193, 40292, 3051, NULL, '1.0000', '5.5150', '5.5150', '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 (42261, '2021-12-15', 7666, 40293, 3051, NULL, '1.0000', '0.4000', '0.4000', '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 (42262, '2021-12-15', 7482, 40294, 3051, NULL, '1.0000', '2.4981', '2.4981', '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 (42263, '2021-12-15', 7946, 40295, 3051, NULL, '1.0000', '-16.4800', '-16.4800', '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 (42264, '2021-12-15', 8515, 40296, 3051, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (42265, '2021-12-15', 7822, 40297, 3051, NULL, '1.0000', '11.2000', '11.2000', '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 (42266, '2021-12-15', 7823, 40298, 3051, 43513, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42267, '2021-12-15', 9304, 40299, 3051, NULL, '1.0000', '12.0000', '12.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 (42268, '2021-12-15', 7781, 40300, 3051, NULL, '3.0000', '4.2500', '4.2500', '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 (42269, '2021-12-15', 7558, 40301, 3051, NULL, '10.0000', '2.2000', '2.2000', '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 (42270, '2021-12-15', 7518, 40302, 3051, NULL, '1.0000', '-67.2578', '-67.2578', '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 (42271, '2021-12-15', 8097, 40303, 3051, 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 (42272, '2021-12-15', 8276, 40304, 3051, NULL, '1.0000', '12.7063', '12.7063', '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 (42273, '2021-12-15', 8269, 40305, 3051, NULL, '1.0000', '10.0000', '10.0000', '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 (42274, '2021-12-15', 8140, 40306, 3051, NULL, '1.0000', '6.0500', '6.0500', '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 (42275, '2021-12-15', 7411, 40307, 3051, NULL, '1.0000', '1.3500', '1.3500', '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 (42276, '2021-12-15', 8948, 40308, 3051, NULL, '1.0000', '4.6000', '4.6000', '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 (42277, '2021-12-15', 9092, 40309, 3051, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '172.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42278, '2021-12-15', 7491, 40310, 3051, 43071, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42279, '2021-12-15', 8457, 40311, 3051, NULL, '1.0000', '0.7500', '0.7500', '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 (42280, '2021-12-15', 8753, 40312, 3051, 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 (42281, '2021-12-15', 9274, 40313, 3051, NULL, '1.0000', '3.1000', '3.1000', '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 (42282, '2021-12-15', 7666, 40314, 3051, NULL, '1.0000', '0.4000', '0.4000', '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 (42283, '2021-12-15', 7682, 40315, 3051, NULL, '1.0000', '0.6600', '0.6600', '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 (42284, '2021-12-15', 8172, 40316, 3051, NULL, '1.0000', '40.7000', '40.7000', '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 (42285, '2021-12-15', 7672, 40317, 3051, NULL, '1.0000', '1.0200', '1.0200', '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 (42286, '2021-12-15', 2315, 40318, 3051, NULL, '2.0000', '0.4740', '0.4740', '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 (42287, '2021-12-15', 7860, 40319, 3051, NULL, '1.0000', '3.8500', '3.8500', '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 (42288, '2021-12-15', 9698, 40320, 3051, NULL, '1.0000', '7.7000', '7.7000', '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 (42289, '2021-12-15', 7675, 40321, 3051, NULL, '1.0000', '11.4300', '11.4300', '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 (42290, '2021-12-15', 8735, 40322, 3051, NULL, '1.0000', '5.6000', '5.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 (42291, '2021-12-15', 2927, 40323, 3051, NULL, '1.0000', '14.7000', '14.7000', '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 (42292, '2021-12-15', 7743, 40324, 3051, NULL, '1.0000', '419203.7668', '419203.7668', '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 (42293, '2021-12-15', 8063, 40325, 3052, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42294, '2021-12-15', 7715, 40326, 3052, NULL, '1.0000', '1.8900', '1.8900', '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 (42295, '2021-12-15', 9303, 40327, 3052, NULL, '1.0000', '9.0000', '9.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 (42296, '2021-12-15', 7411, 40328, 3052, NULL, '4.0000', '1.3500', '1.3500', '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 (42297, '2021-12-15', 9300, 40329, 3052, NULL, '1.0000', '12.0000', '12.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 (42298, '2021-12-15', 9339, 40330, 3052, NULL, '1.0000', '7.2200', '7.2200', '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 (42299, '2021-12-15', 7983, 40331, 3052, NULL, '2.0000', '42.5100', '42.5100', '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 (42300, '2021-12-15', 7674, 40332, 3052, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42301, '2021-12-15', 7444, 40333, 3052, 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 (42302, '2021-12-15', 7757, 40334, 3052, NULL, '1.0000', '6.0000', '6.0000', '107.0000', '107.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42303, '2021-12-15', 9399, 40335, 3052, NULL, '1.0000', '0.4200', '0.4200', '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 (42304, '2021-12-15', 1914, 40336, 3052, NULL, '1.0000', '5.2300', '5.2300', '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 (42305, '2021-12-15', 7671, 40337, 3052, NULL, '2.0000', '15.5000', '15.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 (42306, '2021-12-15', 7780, 40338, 3052, NULL, '2.0000', '2.6000', '2.6000', '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 (42307, '2021-12-15', 7652, 40339, 3052, NULL, '10.0000', '40.3000', '40.3000', '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 (42308, '2021-12-15', 7417, 40340, 3052, NULL, '16.0000', '6.4100', '6.4100', '8.5000', '8.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 (42309, '2021-12-15', 8000, 40341, 3052, NULL, '1.0000', '74.7436', '74.7436', '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 (42310, '2021-12-15', 8127, 40342, 3052, NULL, '2.0000', '24.5300', '24.5300', '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 (42311, '2021-12-15', 8814, 40343, 3052, NULL, '10.0000', '5.0000', '5.0000', '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 (42312, '2021-12-15', 7557, 40344, 3052, NULL, '10.0000', '0.5000', '0.5000', '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 (42313, '2021-12-15', 7547, 40345, 3052, NULL, '6.0000', '0.0000', '0.0000', '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 (42314, '2021-12-15', 9457, 40346, 3052, 43107, '1.0000', '2.9800', '2.9800', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42315, '2021-12-15', 7671, 40347, 3052, NULL, '2.0000', '15.5000', '15.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 (42316, '2021-12-15', 2315, 40348, 3052, NULL, '1.0000', '0.4740', '0.4740', '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 (42317, '2021-12-15', 9272, 40349, 3052, NULL, '1.0000', '3.1000', '3.1000', '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 (42318, '2021-12-15', 7877, 40350, 3052, NULL, '1.0000', '1.3600', '1.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 (42319, '2021-12-15', 7518, 40351, 3052, NULL, '2.0000', '-67.2578', '-67.2578', '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 (42320, '2021-12-15', 7641, 40352, 3052, NULL, '1.0000', '-7.4783', '-7.4783', '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 (42321, '2021-12-15', 8166, 40353, 3052, NULL, '1.0000', '4.6000', '4.6000', '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 (42322, '2021-12-15', 7674, 40354, 3052, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42323, '2021-12-15', 7671, 40355, 3052, NULL, '3.0000', '15.5000', '15.5000', '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 (42324, '2021-12-15', 1760, 40356, 3052, 39629, '2.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42325, '2021-12-15', 7527, 40357, 3052, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42326, '2021-12-15', 7427, 40358, 3052, NULL, '2.0000', '25.0000', '25.0000', '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 (42327, '2021-12-15', 1339, 40359, 3052, 43961, '1.0000', '2.0193', '2.0193', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42328, '2021-12-15', 9461, 40360, 3052, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42329, '2021-12-15', 8763, 40361, 3052, 43939, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42330, '2021-12-15', 7418, 40362, 3052, NULL, '2.0000', '25.3000', '25.3000', '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 (42331, '2021-12-15', 8039, 40363, 3052, NULL, '1.0000', '27.4067', '27.4067', '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 (42332, '2021-12-15', 7339, 40364, 3052, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (42333, '2021-12-15', 7671, 40365, 3052, NULL, '2.0000', '15.5000', '15.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 (42334, '2021-12-15', 7954, 40366, 3053, 34017, '1.0000', '11.1369', '11.1369', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42335, '2021-12-15', 1935, 40367, 3054, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42336, '2021-12-15', 9445, 40368, 3054, 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 (42337, '2021-12-15', 9577, 40369, 3054, NULL, '2.0000', '0.3200', '0.3200', '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 (42338, '2021-12-15', 7672, 40370, 3054, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '80.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42339, '2021-12-15', 7558, 40371, 3054, 39820, '1.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42340, '2021-12-15', 2773, 40372, 3054, 37957, '1.0000', '13.0136', '13.0136', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42341, '2021-12-15', 1413, 40373, 3054, NULL, '1.0000', '17.3200', '17.3200', '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 (42342, '2021-12-15', 7473, 40374, 3054, 39817, '2.0000', '0.1679', '0.1679', '0.6000', '0.6000', '85.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42343, '2021-12-15', 7564, 40375, 3054, NULL, '1.0000', '0.6400', '0.6400', '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 (42344, '2021-12-15', 2962, 40376, 3054, 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 (42345, '2021-12-15', 7672, 40377, 3054, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '80.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42346, '2021-12-15', 2280, 40378, 3054, NULL, '1.0000', '-177.9360', '-177.9360', '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 (42347, '2021-12-15', 8208, 40379, 3054, NULL, '8.0000', '33.0000', '33.0000', '0.5000', '0.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 (42348, '2021-12-15', 9577, 40380, 3054, NULL, '2.0000', '0.3200', '0.3200', '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 (42349, '2021-12-15', 7642, 40381, 3054, NULL, '1.0000', '2.6900', '2.6900', '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 (42350, '2021-12-15', 1650, 40382, 3054, 42555, '1.0000', '13.8051', '13.8051', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42351, '2021-12-15', 7411, 40383, 3054, NULL, '1.0000', '1.3500', '1.3500', '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 (42352, '2021-12-15', 2908, 40384, 3054, 42563, '1.0000', '0.2700', '0.2700', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42353, '2021-12-15', 2908, 40384, 3054, 24963, '9.0000', '0.2700', '0.2700', '0.5000', '0.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 (42354, '2021-12-15', 2038, 40385, 3055, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '1.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 (42355, '2021-12-15', 1763, 40386, 3055, NULL, '1.0000', '4.6900', '4.6900', '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 (42356, '2021-12-15', 1999, 40387, 3055, 40341, '1.0000', '6.8730', '6.8730', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42357, '2021-12-15', 3026, 40388, 3055, 23976, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '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 (42358, '2021-12-15', 1689, 40389, 3055, 42821, '1.0000', '12.9279', '12.9279', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42359, '2021-12-15', 7473, 40390, 3055, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '84.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42360, '2021-12-15', 9577, 40391, 3055, NULL, '2.0000', '0.3200', '0.3200', '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 (42361, '2021-12-15', 8328, 40392, 3055, NULL, '1.0000', '8.1000', '8.1000', '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 (42362, '2021-12-15', 7411, 40393, 3055, NULL, '2.0000', '1.3500', '1.3500', '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 (42363, '2021-12-15', 2829, 40394, 3055, NULL, '2.0000', '24.8941', '24.8941', '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 (42364, '2021-12-15', 1787, 40395, 3055, 39911, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42365, '2021-12-15', 2167, 40396, 3055, 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 (42366, '2021-12-15', 2169, 40397, 3055, NULL, '1.0000', '1.1500', '1.1500', '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 (42367, '2021-12-15', 1757, 40398, 3055, NULL, '1.0000', '4.0024', '4.0024', '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 (42368, '2021-12-15', 2916, 40399, 3055, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42369, '2021-12-15', 2280, 40400, 3055, NULL, '1.0000', '-177.9360', '-177.9360', '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 (42370, '2021-12-15', 1513, 40401, 3055, 23185, '1.0000', '11.9600', '11.9600', '17.5000', '17.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 (42371, '2021-12-15', 8429, 40402, 3055, NULL, '1.0000', '16.0000', '16.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 (42372, '2021-12-15', 2384, 40403, 3055, 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 (42373, '2021-12-15', 8205, 40404, 3055, NULL, '1.0000', '2.9500', '2.9500', '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 (42374, '2021-12-15', 7514, 40405, 3055, NULL, '1.0000', '2.2500', '2.2500', '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 (42375, '2021-12-15', 9556, 40406, 3055, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42376, '2021-12-15', 7411, 40407, 3055, NULL, '1.0000', '1.3500', '1.3500', '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 (42377, '2021-12-15', 2169, 40408, 3055, NULL, '1.0000', '1.1500', '1.1500', '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 (42378, '2021-12-15', 2995, 40409, 3056, NULL, '1.0000', '13.2500', '13.2500', '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 (42379, '2021-12-15', 7781, 40410, 3056, NULL, '3.0000', '4.2500', '4.2500', '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 (42380, '2021-12-15', 8101, 40411, 3056, NULL, '2.0000', '21.7000', '21.7000', '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 (42381, '2021-12-15', 7648, 40412, 3056, 37390, '1.0000', '12.1446', '12.1446', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42382, '2021-12-15', 7927, 40413, 3056, 43111, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42383, '2021-12-15', 8665, 40414, 3056, NULL, '1.0000', '6.2700', '6.2700', '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 (42384, '2021-12-15', 7583, 40415, 3056, NULL, '1.0000', '4.0000', '4.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 (42385, '2021-12-15', 8084, 40416, 3056, NULL, '1.0000', '11.7200', '11.7200', '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 (42386, '2021-12-15', 2965, 40417, 3056, 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 (42387, '2021-12-15', 8744, 40418, 3056, 43942, '2.0000', '3.5038', '3.5038', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42388, '2021-12-15', 7611, 40419, 3056, NULL, '1.0000', '5.0485', '5.0485', '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 (42389, '2021-12-15', 1914, 40420, 3056, NULL, '1.0000', '5.2300', '5.2300', '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 (42390, '2021-12-15', 9556, 40421, 3056, 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 (42391, '2021-12-15', 7703, 40422, 3056, NULL, '2.0000', '22.9900', '22.9900', '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 (42392, '2021-12-15', 7444, 40423, 3056, 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 (42393, '2021-12-15', 9300, 40424, 3056, NULL, '1.0000', '12.0000', '12.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 (42394, '2021-12-15', 7824, 40425, 3056, NULL, '1.0000', '8.0000', '8.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 (42395, '2021-12-15', 7606, 40426, 3056, 43113, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42396, '2021-12-15', 2506, 40427, 3056, 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 (42397, '2021-12-15', 8714, 40428, 3056, NULL, '1.0000', '20.7036', '20.7036', '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 (42398, '2021-12-15', 7933, 40429, 3056, NULL, '1.0000', '0.3245', '0.3245', '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 (42399, '2021-12-15', 7411, 40430, 3056, NULL, '2.0000', '1.3500', '1.3500', '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 (42400, '2021-12-15', 7820, 40431, 3056, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42401, '2021-12-15', 2255, 40432, 3056, NULL, '1.0000', '17.4900', '17.4900', '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 (42402, '2021-12-15', 7748, 40433, 3056, NULL, '1.0000', '139538.4686', '139538.4686', '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 (42403, '2021-12-15', 9667, 40434, 3056, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42404, '2021-12-15', 7782, 40435, 3056, NULL, '2.0000', '5.0000', '5.0000', '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 (42405, '2021-12-15', 8774, 40436, 3056, NULL, '1.0000', '8.0000', '8.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 (42406, '2021-12-15', 2315, 40437, 3056, NULL, '1.0000', '0.4740', '0.4740', '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 (42407, '2021-12-15', 9413, 40438, 3056, NULL, '1.0000', '7.9000', '7.9000', '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 (42408, '2021-12-15', 8177, 40439, 3056, 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 (42409, '2021-12-15', 9191, 40440, 3056, NULL, '1.0000', '6.6700', '6.6700', '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 (42410, '2021-12-15', 7671, 40441, 3056, NULL, '2.0000', '15.5000', '15.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 (42411, '2021-12-15', 7317, 40442, 3056, NULL, '1.0000', '29.3700', '29.3700', '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 (42412, '2021-12-15', 7518, 40443, 3056, NULL, '1.0000', '-67.2578', '-67.2578', '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 (42413, '2021-12-15', 7913, 40444, 3056, NULL, '2.0000', '2.5500', '2.5500', '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 (42414, '2021-12-15', 2067, 40445, 3056, NULL, '1.0000', '4.0000', '4.0000', '6.4700', '6.4700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42415, '2021-12-15', 2295, 40446, 3056, 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 (42416, '2021-12-15', 8154, 40447, 3056, NULL, '2.0000', '12.3000', '12.3000', '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 (42417, '2021-12-15', 7672, 40448, 3056, NULL, '1.0000', '1.0200', '1.0200', '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 (42418, '2021-12-15', 9399, 40449, 3056, NULL, '4.0000', '0.4200', '0.4200', '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 (42419, '2021-12-15', 7641, 40450, 3056, NULL, '1.0000', '-7.4783', '-7.4783', '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 (42420, '2021-12-15', 7743, 40451, 3056, NULL, '2.0000', '419203.7668', '419203.7668', '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 (42421, '2021-12-15', 9390, 40452, 3056, NULL, '1.0000', '25.0000', '25.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 (42422, '2021-12-15', 7881, 40453, 3056, NULL, '1.0000', '83.7700', '83.7700', '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 (42423, '2021-12-15', 9393, 40454, 3057, NULL, '1.0000', '15.0000', '15.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 (42424, '2021-12-15', 8328, 40455, 3057, NULL, '1.0000', '8.0882', '8.0882', '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 (42425, '2021-12-15', 2287, 40456, 3057, NULL, '4.0000', '2.3000', '2.3000', '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 (42426, '2021-12-15', 1415, 40457, 3058, 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 (42427, '2021-12-15', 2384, 40458, 3058, 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 (42428, '2021-12-15', 7713, 40459, 3058, NULL, '8.0000', '4.4000', '4.4000', '0.6000', '0.6000', '-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 (42429, '2021-12-15', 2280, 40460, 3058, NULL, '1.0000', '-177.9360', '-177.9360', '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 (42430, '2021-12-15', 7790, 40461, 3058, NULL, '2.0000', '17.0000', '17.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 (42431, '2021-12-15', 2287, 40462, 3058, 43279, '3.0000', '1.6790', '1.6790', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42432, '2021-12-15', 9577, 40463, 3058, NULL, '2.0000', '0.3200', '0.3200', '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 (42433, '2021-12-15', 7411, 40464, 3058, NULL, '1.0000', '1.3500', '1.3500', '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 (42434, '2021-12-15', 2169, 40465, 3058, NULL, '1.0000', '1.1500', '1.1500', '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 (42435, '2021-12-15', 7482, 40466, 3058, 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 (42436, '2021-12-15', 1687, 40467, 3058, 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 (42437, '2021-12-15', 1381, 40468, 3058, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42438, '2021-12-15', 2655, 40469, 3059, 43949, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42439, '2021-12-15', 9561, 40470, 3059, 42671, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42440, '2021-12-15', 2968, 40471, 3060, 21799, '1.0000', '18.0000', '18.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 (42441, '2021-12-15', 1704, 40472, 3060, 43807, '1.0000', '3621.8219', '3621.8219', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42442, '2021-12-15', 1839, 40473, 3060, 43883, '1.0000', '6.4114', '6.4114', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42443, '2021-12-15', 1863, 40474, 3060, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42444, '2021-12-15', 7886, 40475, 3060, 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 (42445, '2021-12-15', 1602, 40476, 3060, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42446, '2021-12-15', 1301, 40477, 3060, 2472, '2.0000', '1.6800', '1.6800', '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 (42447, '2021-12-15', 2916, 40478, 3060, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42448, '2021-12-15', 2136, 40479, 3060, 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 (42449, '2021-12-15', 1584, 40480, 3060, 44035, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42450, '2021-12-15', 8761, 40481, 3060, 42928, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42451, '2021-12-15', 2773, 40482, 3060, NULL, '1.0000', '15.0200', '15.0200', '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 (42452, '2021-12-15', 7756, 40483, 3060, NULL, '1.0000', '23.9111', '23.9111', '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 (42453, '2021-12-15', 2221, 40484, 3060, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42454, '2021-12-15', 1596, 40485, 3060, 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 (42455, '2021-12-15', 1574, 40486, 3060, 23615, '3.0000', '82.8731', '82.8731', '2.5000', '2.5000', '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 (42456, '2021-12-15', 1854, 40487, 3060, 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 (42457, '2021-12-15', 7385, 40488, 3060, 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 (42458, '2021-12-15', 1687, 40489, 3060, 43877, '1.0000', '11.8231', '11.8231', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42459, '2021-12-15', 2277, 40490, 3060, 38069, '4.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42460, '2021-12-15', 2068, 40491, 3060, 43884, '1.0000', '11.8601', '11.8601', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42461, '2021-12-15', 2167, 40492, 3060, 40217, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42462, '2021-12-15', 3012, 40493, 3060, 40633, '1.0000', '4.7000', '4.7000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42463, '2021-12-15', 7321, 40494, 3060, NULL, '1.0000', '7.9500', '7.9500', '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 (42464, '2021-12-15', 2414, 40495, 3060, NULL, '2.0000', '3.8350', '3.8350', '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 (42465, '2021-12-15', 2135, 40496, 3060, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42466, '2021-12-15', 1433, 40497, 3060, 43830, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42467, '2021-12-15', 1307, 40498, 3060, 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 (42468, '2021-12-15', 2237, 40499, 3060, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42469, '2021-12-15', 2411, 40500, 3060, 42968, '1.0000', '1.2564', '1.2564', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42470, '2021-12-15', 1425, 40501, 3060, 43826, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42471, '2021-12-15', 1747, 40502, 3060, NULL, '2.0000', '9.0000', '9.0000', '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 (42472, '2021-12-15', 9154, 40503, 3060, NULL, '2.0000', '10.6800', '10.6800', '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 (42473, '2021-12-15', 1839, 40504, 3060, 43883, '1.0000', '6.4114', '6.4114', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42474, '2021-12-15', 2109, 40505, 3060, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42475, '2021-12-15', 1912, 40506, 3060, 29799, '2.0000', '0.5743', '0.5743', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42476, '2021-12-15', 9577, 40507, 3060, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '72.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42477, '2021-12-15', 2601, 40508, 3060, 39177, '1.0000', '16.0000', '16.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42478, '2021-12-15', 1687, 40509, 3060, 43877, '1.0000', '11.8231', '11.8231', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42479, '2021-12-15', 2285, 40510, 3060, 22649, '1.0000', '36.5090', '36.5090', '49.0000', '49.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 (42480, '2021-12-15', 1871, 40511, 3060, 43862, '10.0000', '20.0938', '20.0938', '3.0000', '3.0000', '80.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42481, '2021-12-15', 8743, 40512, 3060, 35937, '1.0000', '9.9444', '9.9444', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42482, '2021-12-15', 1478, 40513, 3060, 43853, '1.0000', '94.2806', '94.2806', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42483, '2021-12-15', 1908, 40514, 3060, 5510, '1.0000', '1.7500', '1.7500', '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 (42484, '2021-12-15', 2289, 40515, 3060, 40620, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42485, '2021-12-15', 2337, 40516, 3060, 3894, '1.0000', '51.0000', '51.0000', '67.5000', '67.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 (42486, '2021-12-15', 2237, 40517, 3060, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42487, '2021-12-15', 2221, 40518, 3060, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42488, '2021-12-15', 3029, 40519, 3060, 42950, '1.0000', '5.9209', '5.9209', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42489, '2021-12-15', 2354, 40520, 3060, 3905, '1.0000', '4.6000', '4.6000', '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 (42490, '2021-12-15', 1304, 40521, 3060, 2475, '1.0000', '1.4500', '1.4500', '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 (42491, '2021-12-15', 1937, 40522, 3060, 5605, '1.0000', '3.0000', '3.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 (42492, '2021-12-15', 1812, 40523, 3060, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '13.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42493, '2021-12-15', 2109, 40524, 3060, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42494, '2021-12-15', 2083, 40525, 3060, 1662, '6.0000', '0.5800', '0.5800', '1.0000', '1.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 (42495, '2021-12-15', 2810, 40526, 3060, 37552, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42496, '2021-12-15', 2810, 40526, 3060, 40612, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42497, '2021-12-15', 1813, 40527, 3060, 12729, '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 (42498, '2021-12-15', 1954, 40528, 3060, 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 (42499, '2021-12-15', 1863, 40529, 3060, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42500, '2021-12-15', 2169, 40530, 3060, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42501, '2021-12-15', 1504, 40531, 3060, NULL, '20.0000', '1.2125', '1.2125', '2.2000', '2.2000', '-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 (42502, '2021-12-15', 7318, 40532, 3061, NULL, '1.0000', '13.4400', '13.4400', '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 (42503, '2021-12-15', 1917, 40533, 3061, 34657, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42504, '2021-12-15', 1935, 40534, 3061, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42505, '2021-12-15', 7411, 40535, 3061, NULL, '1.0000', '1.3500', '1.3500', '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 (42506, '2021-12-15', 1651, 40536, 3062, 43037, '1.0000', '6.8684', '6.8684', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42507, '2021-12-15', 2821, 40537, 3062, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42508, '2021-12-15', 2896, 40538, 3063, 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 (42509, '2021-12-15', 2964, 40539, 3064, NULL, '1.0000', '6.6000', '6.6000', '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 (42510, '2021-12-15', 1707, 40540, 3065, 40222, '1.0000', '25.1200', '25.1200', '34.0000', '34.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42511, '2021-12-15', 1504, 40541, 3065, NULL, '20.0000', '1.2125', '1.2125', '2.2000', '2.2000', '-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 (42512, '2021-12-15', 2916, 40542, 3065, 42980, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42513, '2021-12-15', 2320, 40543, 3065, 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 (42514, '2021-12-16', 2239, 40544, 3066, 39880, '1.0000', '25.8286', '25.8286', '42.0000', '42.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42515, '2021-12-16', 2601, 40545, 3067, 8611, '-1.0000', '16.0000', '16.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 (42516, '2021-12-16', 2601, 40545, 3067, NULL, '2.0000', '16.0000', '16.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 (42517, '2021-12-16', 2873, 40546, 3067, 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 (42518, '2021-12-16', 2602, 40547, 3067, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (42519, '2021-12-16', 2486, 40548, 3067, 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 (42520, '2021-12-16', 2911, 40549, 3067, NULL, '1.0000', '10.0000', '10.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 (42521, '2021-12-16', 2487, 40550, 3067, NULL, '1.0000', '23.7500', '23.7500', '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 (42522, '2021-12-16', 2022, 40551, 3067, 22308, '2.0000', '3.5000', '3.5000', '5.0000', '5.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 (42523, '2021-12-16', 2022, 40551, 3067, 20647, '2.0000', '3.5000', '3.5000', '5.0000', '5.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 (42524, '2021-12-16', 2392, 40552, 3067, 22307, '2.0000', '3.7000', '3.7000', '5.0000', '5.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 (42525, '2021-12-16', 2392, 40552, 3067, 20648, '2.0000', '3.7000', '3.7000', '5.0000', '5.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 (42526, '2021-12-16', 2160, 40553, 3067, 1375, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '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 (42527, '2021-12-16', 2450, 40554, 3068, NULL, '1.0000', '13.5000', '13.5000', '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 (42528, '2021-12-16', 1574, 40555, 3068, 7593, '-37.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 (42529, '2021-12-16', 1574, 40555, 3068, NULL, '38.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42530, '2021-12-16', 9631, 40556, 3068, NULL, '1.0000', '7.0000', '7.0000', '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 (42531, '2021-12-16', 2233, 40557, 3069, 2777, '-14.0000', '19.0200', '19.0200', '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 (42532, '2021-12-16', 2233, 40557, 3069, NULL, '16.0000', '19.0200', '19.0200', '29.0000', '29.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 (42533, '2021-12-16', 7411, 40558, 3069, 33804, '5.0000', '1.3500', '1.3500', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42534, '2021-12-16', 1760, 40559, 3069, 22256, '5.0000', '111.8384', '111.8384', '1.0000', '1.0000', '12.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 (42535, '2021-12-16', 2320, 40560, 3070, 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 (42536, '2021-12-16', 1504, 40561, 3070, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (42537, '2021-12-16', 1665, 40562, 3070, 3235, '-44.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 (42538, '2021-12-16', 1665, 40562, 3070, NULL, '45.0000', '1.3000', '1.3000', '2.0000', '2.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 (42539, '2021-12-16', 1602, 40563, 3070, 5897, '-64.0000', '6.7859', '6.7859', '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 (42540, '2021-12-16', 1602, 40563, 3070, NULL, '65.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42541, '2021-12-16', 1935, 40564, 3070, 5586, '-43.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 (42542, '2021-12-16', 1935, 40564, 3070, NULL, '45.0000', '0.7200', '0.7200', '2.0000', '2.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 (42543, '2021-12-16', 2858, 40565, 3070, 17772, '-22.0000', '1.0000', '1.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 (42544, '2021-12-16', 2858, 40565, 3070, NULL, '24.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (42545, '2021-12-16', 1637, 40566, 3070, 3210, '-3.0000', '10.2000', '10.2000', '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 (42546, '2021-12-16', 1637, 40566, 3070, NULL, '4.0000', '10.2000', '10.2000', '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 (42547, '2021-12-16', 2289, 40567, 3070, 2949, '-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 (42548, '2021-12-16', 2289, 40567, 3070, 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 (42549, '2021-12-16', 1905, 40568, 3070, 5443, '-11.0000', '0.4000', '0.4000', '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 (42550, '2021-12-16', 1905, 40568, 3070, NULL, '12.0000', '0.4000', '0.4000', '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 (42551, '2021-12-16', 8938, 40569, 3070, NULL, '1.0000', '7.8500', '7.8500', '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 (42552, '2021-12-16', 8013, 40570, 3070, NULL, '1.0000', '3.6500', '3.6500', '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 (42553, '2021-12-16', 2242, 40571, 3070, 22259, '1.0000', '0.4800', '0.4800', '1.0000', '1.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 (42554, '2021-12-16', 1841, 40572, 3070, 645, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '11.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 (42555, '2021-12-16', 1532, 40573, 3070, 22261, '3.0000', '0.8000', '0.8000', '1.5000', '1.5000', '33.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 (42556, '2021-12-16', 2167, 40574, 3070, 17165, '-28.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 (42557, '2021-12-16', 2167, 40574, 3070, NULL, '29.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42558, '2021-12-16', 2237, 40575, 3070, 2781, '-23.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 (42559, '2021-12-16', 2237, 40575, 3070, NULL, '24.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (42560, '2021-12-16', 7342, 40576, 3070, NULL, '1.0000', '15.6000', '15.6000', '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 (42561, '2021-12-16', 2169, 40577, 3070, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (42562, '2021-12-16', 2821, 40578, 3070, 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 (42563, '2021-12-16', 2136, 40579, 3070, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '76.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 (42564, '2021-12-16', 1390, 40580, 3070, NULL, '1.0000', '7.5000', '7.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 (42565, '2021-12-16', 1493, 40581, 3070, 9747, '-11.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 (42566, '2021-12-16', 1493, 40581, 3070, NULL, '12.0000', '1.5425', '1.5425', '3.0000', '3.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 (42567, '2021-12-16', 1335, 40582, 3070, 12031, '-7.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 (42568, '2021-12-16', 1335, 40582, 3070, NULL, '8.0000', '0.8500', '0.8500', '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 (42569, '2021-12-16', 2454, 40583, 3071, 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 (42570, '2021-12-16', 2221, 40584, 3071, 4154, '-23.0000', '14.4737', '14.4737', '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 (42571, '2021-12-16', 2221, 40584, 3071, NULL, '24.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (42572, '2021-12-16', 2307, 40585, 3071, 2960, '1.0000', '118.9901', '118.9901', '161.0000', '161.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42573, '2021-12-16', 1584, 40586, 3072, 7601, '-13.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 (42574, '2021-12-16', 1584, 40586, 3072, NULL, '15.0000', '90.0000', '90.0000', '8.0000', '8.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 (42575, '2021-12-16', 1650, 40587, 3073, 42555, '1.0000', '13.8051', '13.8051', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42576, '2021-12-16', 1863, 40588, 3073, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42577, '2021-12-16', 1935, 40589, 3073, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42578, '2021-12-16', 9556, 40590, 3073, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42579, '2021-12-16', 7514, 40591, 3073, NULL, '1.0000', '2.2500', '2.2500', '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 (42580, '2021-12-16', 1871, 40592, 3073, NULL, '1.0000', '2.9308', '2.9308', '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 (42581, '2021-12-16', 2379, 40593, 3073, NULL, '1.0000', '1.8000', '1.8000', '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 (42582, '2021-12-16', 1580, 40594, 3073, 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 (42583, '2021-12-16', 2169, 40595, 3073, NULL, '1.0000', '1.1500', '1.1500', '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 (42584, '2021-12-16', 2167, 40596, 3073, 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 (42585, '2021-12-16', 2283, 40597, 3073, 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 (42586, '2021-12-16', 1307, 40598, 3073, NULL, '1.0000', '1.7846', '1.7846', '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 (42587, '2021-12-16', 1839, 40599, 3073, NULL, '1.0000', '1.8866', '1.8866', '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 (42588, '2021-12-16', 8254, 40600, 3073, NULL, '1.0000', '27.2800', '27.2800', '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 (42589, '2021-12-16', 2223, 40601, 3073, 42636, '1.0000', '10.7140', '10.7140', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42590, '2021-12-16', 2228, 40602, 3073, NULL, '1.0000', '25.0000', '25.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 (42591, '2021-12-16', 7683, 40603, 3073, NULL, '1.0000', '1.8400', '1.8400', '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 (42592, '2021-12-16', 1371, 40604, 3073, 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 (42593, '2021-12-16', 2948, 40605, 3073, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42594, '2021-12-16', 2567, 40606, 3073, 42637, '1.0000', '31.0140', '31.0140', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42595, '2021-12-16', 7530, 40607, 3073, 42073, '1.0000', '-2.9704', '-2.9704', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42596, '2021-12-16', 8771, 40608, 3073, 42649, '1.0000', '3.4915', '3.4915', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42597, '2021-12-16', 7473, 40609, 3073, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '81.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42598, '2021-12-16', 1711, 40610, 3073, 34615, '1.0000', '8.0700', '8.0700', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42599, '2021-12-16', 1833, 40611, 3073, 19364, '1.0000', '20.8000', '20.8000', '31.0000', '31.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42600, '2021-12-16', 2916, 40612, 3073, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42601, '2021-12-16', 1841, 40613, 3073, 34025, '3.0000', '0.2601', '0.2601', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42602, '2021-12-16', 7354, 40614, 3073, 39856, '1.0000', '0.0102', '0.0102', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42603, '2021-12-16', 9577, 40615, 3073, NULL, '2.0000', '0.3200', '0.3200', '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 (42604, '2021-12-16', 1945, 40616, 3073, 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 (42605, '2021-12-16', 2543, 40617, 3073, 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 (42606, '2021-12-16', 1863, 40618, 3073, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42607, '2021-12-16', 2506, 40619, 3073, 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 (42608, '2021-12-16', 7709, 40620, 3073, 39850, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42609, '2021-12-16', 2660, 40621, 3073, 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 (42610, '2021-12-16', 9577, 40622, 3073, NULL, '2.0000', '0.3200', '0.3200', '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 (42611, '2021-12-16', 8061, 40623, 3073, NULL, '1.0000', '1.6000', '1.6000', '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 (42612, '2021-12-16', 1502, 40624, 3074, 18925, '1.0000', '7.8000', '7.8000', '11.0000', '11.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 (42613, '2021-12-16', 2828, 40625, 3074, 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 (42614, '2021-12-16', 2842, 40626, 3074, 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 (42615, '2021-12-16', 2233, 40627, 3075, 2777, '-16.0000', '19.0200', '19.0200', '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 (42616, '2021-12-16', 2233, 40627, 3075, NULL, '18.0000', '19.0200', '19.0200', '29.0000', '29.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 (42617, '2021-12-16', 1854, 40628, 3076, 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 (42618, '2021-12-16', 2169, 40629, 3076, NULL, '1.0000', '1.1500', '1.1500', '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 (42619, '2021-12-16', 8043, 40630, 3076, NULL, '1.0000', '27.9800', '27.9800', '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 (42620, '2021-12-16', 7558, 40631, 3076, 39820, '15.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42621, '2021-12-16', 2221, 40632, 3076, 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 (42622, '2021-12-16', 2272, 40633, 3076, 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 (42623, '2021-12-16', 7458, 40634, 3076, NULL, '2.0000', '3.0000', '3.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 (42624, '2021-12-16', 2749, 40635, 3076, NULL, '1.0000', '20.5000', '20.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 (42625, '2021-12-16', 9416, 40636, 3076, 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 (42626, '2021-12-16', 7482, 40637, 3076, 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 (42627, '2021-12-16', 9643, 40638, 3077, 41421, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42628, '2021-12-16', 7473, 40639, 3077, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '80.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42629, '2021-12-16', 2109, 40640, 3077, 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 (42630, '2021-12-16', 8308, 40641, 3077, NULL, '1.0000', '11.0000', '11.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 (42631, '2021-12-16', 1857, 40642, 3077, 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 (42632, '2021-12-16', 2506, 40643, 3077, 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 (42633, '2021-12-16', 2410, 40644, 3077, 38543, '2.0000', '4.3920', '4.3920', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42634, '2021-12-16', 1935, 40645, 3077, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42635, '2021-12-16', 7725, 40646, 3077, NULL, '1.0000', '5.0000', '5.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 (42636, '2021-12-16', 7411, 40647, 3077, NULL, '1.0000', '1.3500', '1.3500', '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 (42637, '2021-12-16', 2822, 40648, 3077, 44068, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42638, '2021-12-16', 7741, 40649, 3077, NULL, '1.0000', '1.2000', '1.2000', '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 (42639, '2021-12-16', 2487, 40650, 3078, NULL, '1.0000', '23.7500', '23.7500', '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 (42640, '2021-12-16', 7608, 40651, 3078, NULL, '1.0000', '6.9800', '6.9800', '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 (42641, '2021-12-16', 9671, 40652, 3078, NULL, '1.0000', '10.9300', '10.9300', '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 (42642, '2021-12-16', 2409, 40653, 3078, 4498, '-3.0000', '2.3100', '2.3100', '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 (42643, '2021-12-16', 2409, 40653, 3078, NULL, '4.0000', '2.3100', '2.3100', '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 (42644, '2021-12-16', 1513, 40654, 3078, 10888, '-1.0000', '11.9600', '11.9600', '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 (42645, '2021-12-16', 1513, 40654, 3078, NULL, '2.0000', '11.9600', '11.9600', '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 (42646, '2021-12-16', 2345, 40655, 3078, 3848, '-2.0000', '7.6400', '7.6400', '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 (42647, '2021-12-16', 2345, 40655, 3078, NULL, '3.0000', '7.6400', '7.6400', '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 (42648, '2021-12-16', 2809, 40656, 3078, 16855, '1.0000', '28.0000', '28.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 (42649, '2021-12-16', 2336, 40657, 3078, 3839, '-1.0000', '7.0000', '7.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 (42650, '2021-12-16', 2336, 40657, 3078, NULL, '2.0000', '7.0000', '7.0000', '11.5000', '11.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 (42651, '2021-12-16', 9577, 40658, 3078, NULL, '2.0000', '0.3200', '0.3200', '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 (42652, '2021-12-16', 1346, 40659, 3078, 21942, '-14.0000', '1.0594', '1.0594', '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 (42653, '2021-12-16', 1346, 40659, 3078, NULL, '29.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42654, '2021-12-16', 2673, 40660, 3078, 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 (42655, '2021-12-16', 1671, 40661, 3078, 7457, '-18.0000', '4.2000', '4.2000', '6.4000', '6.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 (42656, '2021-12-16', 1671, 40661, 3078, NULL, '28.0000', '4.2000', '4.2000', '6.4000', '6.4000', '-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 (42657, '2021-12-16', 1780, 40662, 3078, 3867, '-1.0000', '18.7146', '18.7146', '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 (42658, '2021-12-16', 1780, 40662, 3078, NULL, '2.0000', '18.7146', '18.7146', '47.0000', '47.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 (42659, '2021-12-16', 2699, 40663, 3078, 12529, '-24.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 (42660, '2021-12-16', 2699, 40663, 3078, NULL, '25.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-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 (42661, '2021-12-16', 8065, 40664, 3078, NULL, '1.0000', '32.0000', '32.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 (42662, '2021-12-16', 1935, 40665, 3078, 5586, '-45.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 (42663, '2021-12-16', 1935, 40665, 3078, NULL, '46.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42664, '2021-12-16', 9563, 40666, 3078, NULL, '1.0000', '5.1000', '5.1000', '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 (42665, '2021-12-16', 9638, 40667, 3078, NULL, '1.0000', '34.5000', '34.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 (42666, '2021-12-16', 2221, 40668, 3078, 4154, '-24.0000', '14.4737', '14.4737', '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 (42667, '2021-12-16', 2221, 40668, 3078, NULL, '25.0000', '14.4737', '14.4737', '25.0000', '25.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 (42668, '2021-12-16', 2160, 40669, 3078, 1375, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '2.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 (42669, '2021-12-16', 1744, 40670, 3078, 2163, '-1.0000', '26.5281', '26.5281', '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 (42670, '2021-12-16', 1744, 40670, 3078, NULL, '2.0000', '26.5281', '26.5281', '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 (42671, '2021-12-16', 2317, 40671, 3078, 3473, '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 (42672, '2021-12-16', 9490, 40672, 3078, NULL, '1.0000', '19.0000', '19.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 (42673, '2021-12-16', 2135, 40673, 3078, 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 (42674, '2021-12-16', 1812, 40674, 3078, 8224, '-44.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 (42675, '2021-12-16', 1812, 40674, 3078, NULL, '45.0000', '7.8900', '7.8900', '10.5000', '10.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 (42676, '2021-12-16', 2221, 40675, 3078, 4154, '-24.0000', '14.4737', '14.4737', '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 (42677, '2021-12-16', 2221, 40675, 3078, NULL, '25.0000', '14.4737', '14.4737', '25.0000', '25.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 (42678, '2021-12-16', 2260, 40676, 3078, 2796, '-6.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 (42679, '2021-12-16', 2260, 40676, 3078, NULL, '10.0000', '4.2000', '4.2000', '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 (42680, '2021-12-16', 1602, 40677, 3078, 5897, '-65.0000', '6.7859', '6.7859', '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 (42681, '2021-12-16', 1602, 40677, 3078, NULL, '66.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42682, '2021-12-16', 1346, 40678, 3078, 21942, '-14.0000', '1.0594', '1.0594', '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 (42683, '2021-12-16', 1346, 40678, 3078, NULL, '19.0000', '1.0594', '1.0594', '1.5000', '1.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 (42684, '2021-12-16', 7866, 40679, 3078, NULL, '3.0000', '2.5000', '2.5000', '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 (42685, '2021-12-16', 7671, 40680, 3078, NULL, '1.0000', '15.5000', '15.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 (42686, '2021-12-16', 2916, 40681, 3078, 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 (42687, '2021-12-16', 1744, 40682, 3078, 2163, '-1.0000', '26.5281', '26.5281', '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 (42688, '2021-12-16', 1744, 40682, 3078, NULL, '2.0000', '26.5281', '26.5281', '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 (42689, '2021-12-16', 2221, 40683, 3078, 4154, '-24.0000', '14.4737', '14.4737', '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 (42690, '2021-12-16', 2221, 40683, 3078, NULL, '25.0000', '14.4737', '14.4737', '25.0000', '25.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 (42691, '2021-12-16', 8810, 40684, 3079, NULL, '1.0000', '1.9200', '1.9200', '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 (42692, '2021-12-16', 7411, 40685, 3079, NULL, '1.0000', '1.3500', '1.3500', '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 (42693, '2021-12-16', 7675, 40686, 3079, NULL, '1.0000', '11.4300', '11.4300', '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 (42694, '2021-12-16', 1837, 40687, 3079, 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 (42695, '2021-12-16', 7674, 40688, 3079, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '53.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42696, '2021-12-16', 7385, 40689, 3079, NULL, '3.0000', '17.6346', '17.6346', '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 (42697, '2021-12-16', 7317, 40690, 3079, NULL, '1.0000', '29.3700', '29.3700', '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 (42698, '2021-12-16', 7671, 40691, 3079, NULL, '2.0000', '15.5000', '15.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 (42699, '2021-12-16', 9562, 40692, 3079, 42670, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42700, '2021-12-16', 7781, 40693, 3079, NULL, '3.0000', '4.2500', '4.2500', '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 (42701, '2021-12-16', 9274, 40694, 3079, NULL, '1.0000', '3.1000', '3.1000', '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 (42702, '2021-12-16', 7674, 40695, 3079, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42703, '2021-12-16', 7411, 40696, 3079, NULL, '1.0000', '1.3500', '1.3500', '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 (42704, '2021-12-16', 7632, 40697, 3079, 37403, '1.0000', '9.8496', '9.8496', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42705, '2021-12-16', 9445, 40698, 3079, 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 (42706, '2021-12-16', 7926, 40699, 3079, 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 (42707, '2021-12-16', 7317, 40700, 3079, NULL, '1.0000', '29.3700', '29.3700', '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 (42708, '2021-12-16', 7560, 40701, 3079, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (42709, '2021-12-16', 7886, 40702, 3079, NULL, '1.0000', '2.8333', '2.8333', '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 (42710, '2021-12-16', 8425, 40703, 3079, NULL, '1.0000', '35.6000', '35.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 (42711, '2021-12-16', 1760, 40704, 3079, 39629, '1.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42712, '2021-12-16', 2321, 40705, 3079, 32930, '1.0000', '2.5000', '2.5000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42713, '2021-12-16', 7509, 40706, 3079, 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 (42714, '2021-12-16', 1583, 40707, 3079, 43943, '1.0000', '5.8900', '5.8900', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42715, '2021-12-16', 8221, 40708, 3079, NULL, '1.0000', '3.9800', '3.9800', '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 (42716, '2021-12-16', 8735, 40709, 3079, NULL, '1.0000', '5.6000', '5.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 (42717, '2021-12-16', 7671, 40710, 3079, NULL, '2.0000', '15.5000', '15.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 (42718, '2021-12-16', 7675, 40711, 3079, NULL, '1.0000', '11.4300', '11.4300', '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 (42719, '2021-12-16', 8204, 40712, 3079, NULL, '3.0000', '10.0000', '10.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 (42720, '2021-12-16', 1806, 40713, 3079, NULL, '2.0000', '28.1300', '28.1300', '35.0000', '35.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 (42721, '2021-12-16', 7871, 40714, 3079, NULL, '14.0000', '6.0000', '6.0000', '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 (42722, '2021-12-16', 1631, 40715, 3079, NULL, '1.0000', '63.9000', '63.9000', '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 (42723, '2021-12-16', 3057, 40716, 3079, 33746, '12.0000', '3.2700', '3.2700', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42724, '2021-12-16', 9016, 40717, 3079, NULL, '1.0000', '2.9800', '2.9800', '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 (42725, '2021-12-16', 9286, 40718, 3079, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '10.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42726, '2021-12-16', 7359, 40719, 3079, NULL, '1.0000', '10.6650', '10.6650', '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 (42727, '2021-12-16', 7591, 40720, 3079, NULL, '1.0000', '2.7500', '2.7500', '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 (42728, '2021-12-16', 7822, 40721, 3079, NULL, '1.0000', '11.2000', '11.2000', '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 (42729, '2021-12-16', 8000, 40722, 3079, NULL, '1.0000', '74.7436', '74.7436', '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 (42730, '2021-12-16', 2315, 40723, 3079, NULL, '2.0000', '0.4740', '0.4740', '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 (42731, '2021-12-16', 9667, 40724, 3079, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42732, '2021-12-16', 8359, 40725, 3079, NULL, '1.0000', '27.0806', '27.0806', '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 (42733, '2021-12-16', 8497, 40726, 3079, NULL, '1.0000', '337.1200', '337.1200', '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 (42734, '2021-12-16', 8722, 40727, 3079, 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 (42735, '2021-12-16', 7473, 40728, 3079, NULL, '3.0000', '25.2998', '25.2998', '0.6000', '0.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 (42736, '2021-12-16', 7973, 40729, 3079, NULL, '1.0000', '15.9500', '15.9500', '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 (42737, '2021-12-16', 8849, 40730, 3079, NULL, '1.0000', '1.0700', '1.0700', '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 (42738, '2021-12-16', 7473, 40731, 3079, NULL, '2.0000', '25.2998', '25.2998', '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 (42739, '2021-12-16', 7334, 40732, 3079, NULL, '3.0000', '8.1600', '8.1600', '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 (42740, '2021-12-16', 7782, 40733, 3079, NULL, '2.0000', '5.0000', '5.0000', '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 (42741, '2021-12-16', 2965, 40734, 3079, 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 (42742, '2021-12-16', 9469, 40735, 3079, 43950, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42743, '2021-12-16', 7859, 40736, 3079, NULL, '1.0000', '3.6000', '3.6000', '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 (42744, '2021-12-16', 9556, 40737, 3079, 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 (42745, '2021-12-16', 7753, 40738, 3079, 43138, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42746, '2021-12-16', 7886, 40739, 3079, NULL, '1.0000', '2.8333', '2.8333', '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 (42747, '2021-12-16', 9445, 40740, 3079, 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 (42748, '2021-12-16', 7385, 40741, 3079, NULL, '5.0000', '17.6346', '17.6346', '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 (42749, '2021-12-16', 7784, 40742, 3079, NULL, '1.0000', '4.2500', '4.2500', '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 (42750, '2021-12-16', 8231, 40743, 3079, NULL, '1.0000', '4.5000', '4.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 (42751, '2021-12-16', 3067, 40744, 3079, 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 (42752, '2021-12-16', 7990, 40745, 3079, NULL, '1.0000', '15.4600', '15.4600', '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 (42753, '2021-12-16', 8753, 40746, 3079, 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 (42754, '2021-12-16', 8166, 40747, 3079, NULL, '2.0000', '4.6000', '4.6000', '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 (42755, '2021-12-16', 7457, 40748, 3079, 43105, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42756, '2021-12-16', 8739, 40749, 3079, NULL, '1.0000', '4.3200', '4.3200', '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 (42757, '2021-12-16', 8166, 40750, 3079, NULL, '2.0000', '4.6000', '4.6000', '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 (42758, '2021-12-16', 2315, 40751, 3079, NULL, '2.0000', '0.4740', '0.4740', '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 (42759, '2021-12-16', 7558, 40752, 3079, NULL, '10.0000', '2.2000', '2.2000', '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 (42760, '2021-12-16', 7755, 40753, 3079, NULL, '1.0000', '82.0200', '82.0200', '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 (42761, '2021-12-16', 2995, 40754, 3079, NULL, '1.0000', '13.2500', '13.2500', '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 (42762, '2021-12-16', 7380, 40755, 3079, NULL, '1.0000', '8.0000', '8.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 (42763, '2021-12-16', 2315, 40756, 3079, NULL, '2.0000', '0.4740', '0.4740', '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 (42764, '2021-12-16', 9274, 40757, 3079, NULL, '1.0000', '3.1000', '3.1000', '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 (42765, '2021-12-16', 8166, 40758, 3079, NULL, '1.0000', '4.6000', '4.6000', '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 (42766, '2021-12-16', 7704, 40759, 3079, NULL, '1.0000', '-1.5625', '-1.5625', '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 (42767, '2021-12-16', 8699, 40760, 3079, NULL, '1.0000', '6.3800', '6.3800', '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 (42768, '2021-12-16', 7472, 40761, 3079, NULL, '1.0000', '4.1000', '4.1000', '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 (42769, '2021-12-16', 7954, 40762, 3079, NULL, '4.0000', '24.4161', '24.4161', '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 (42770, '2021-12-16', 9561, 40763, 3079, 42671, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '10.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42771, '2021-12-16', 9562, 40764, 3079, 42670, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42772, '2021-12-16', 7518, 40765, 3079, NULL, '1.0000', '-67.2578', '-67.2578', '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 (42773, '2021-12-16', 8166, 40766, 3079, NULL, '1.0000', '4.6000', '4.6000', '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 (42774, '2021-12-16', 1810, 40767, 3079, NULL, '1.0000', '7.7967', '7.7967', '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 (42775, '2021-12-16', 8276, 40768, 3079, NULL, '1.0000', '12.7063', '12.7063', '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 (42776, '2021-12-16', 2315, 40769, 3079, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (42777, '2021-12-16', 7707, 40770, 3079, NULL, '1.0000', '6.0012', '6.0012', '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 (42778, '2021-12-16', 7715, 40771, 3079, NULL, '1.0000', '1.8900', '1.8900', '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 (42779, '2021-12-16', 7722, 40772, 3079, 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 (42780, '2021-12-16', 7685, 40773, 3079, NULL, '1.0000', '31.2000', '31.2000', '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 (42781, '2021-12-16', 7518, 40774, 3079, NULL, '1.0000', '-67.2578', '-67.2578', '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 (42782, '2021-12-16', 8203, 40775, 3079, NULL, '10.0000', '1.0075', '1.0075', '0.5000', '0.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 (42783, '2021-12-16', 8113, 40776, 3079, NULL, '5.0000', '29.5000', '29.5000', '3.2000', '3.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 (42784, '2021-12-16', 7947, 40777, 3079, NULL, '2.0000', '14.4400', '14.4400', '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 (42785, '2021-12-16', 8053, 40778, 3079, 37844, '2.0000', '1.7988', '1.7988', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42786, '2021-12-16', 7334, 40779, 3079, NULL, '1.0000', '8.1600', '8.1600', '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 (42787, '2021-12-16', 8132, 40780, 3079, NULL, '1.0000', '4.7200', '4.7200', '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 (42788, '2021-12-16', 7507, 40781, 3079, NULL, '3.0000', '6.5000', '6.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 (42789, '2021-12-16', 8756, 40782, 3079, 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 (42790, '2021-12-16', 2699, 40783, 3079, 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 (42791, '2021-12-16', 7530, 40784, 3079, NULL, '1.0000', '6.2000', '6.2000', '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 (42792, '2021-12-16', 7608, 40785, 3079, NULL, '1.0000', '6.9800', '6.9800', '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 (42793, '2021-12-16', 8608, 40786, 3079, NULL, '1.0000', '5.7400', '5.7400', '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 (42794, '2021-12-16', 7411, 40787, 3079, NULL, '2.0000', '1.3500', '1.3500', '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 (42795, '2021-12-16', 1805, 40788, 3079, NULL, '1.0000', '4.5500', '4.5500', '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 (42796, '2021-12-16', 7675, 40789, 3079, NULL, '1.0000', '11.4300', '11.4300', '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 (42797, '2021-12-16', 7702, 40790, 3079, NULL, '1.0000', '0.4600', '0.4600', '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 (42798, '2021-12-16', 7952, 40791, 3079, NULL, '1.0000', '10.4000', '10.4000', '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 (42799, '2021-12-16', 8674, 40792, 3079, NULL, '1.0000', '28.8900', '28.8900', '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 (42800, '2021-12-16', 7629, 40793, 3079, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42801, '2021-12-16', 8166, 40794, 3079, NULL, '2.0000', '4.6000', '4.6000', '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 (42802, '2021-12-16', 1381, 40795, 3079, 36091, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42803, '2021-12-16', 8730, 40796, 3079, NULL, '1.0000', '29.0000', '29.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 (42804, '2021-12-16', 7514, 40797, 3079, NULL, '2.0000', '12.9983', '12.9983', '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 (42805, '2021-12-16', 7641, 40798, 3079, NULL, '1.0000', '-12.6777', '-12.6777', '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 (42806, '2021-12-16', 8359, 40799, 3079, NULL, '1.0000', '27.0806', '27.0806', '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 (42807, '2021-12-16', 7967, 40800, 3079, 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 (42808, '2021-12-16', 9202, 40801, 3079, NULL, '1.0000', '3.5000', '3.5000', '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 (42809, '2021-12-16', 7411, 40802, 3079, NULL, '1.0000', '1.3500', '1.3500', '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 (42810, '2021-12-16', 8000, 40803, 3079, NULL, '1.0000', '74.7436', '74.7436', '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 (42811, '2021-12-16', 7689, 40804, 3079, NULL, '1.0000', '12.0700', '12.0700', '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 (42812, '2021-12-16', 9092, 40805, 3079, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '170.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42813, '2021-12-16', 8053, 40806, 3079, 37844, '2.0000', '1.7988', '1.7988', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42814, '2021-12-16', 7824, 40807, 3079, NULL, '1.0000', '8.0000', '8.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 (42815, '2021-12-16', 2320, 40808, 3080, 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 (42816, '2021-12-16', 8057, 40809, 3080, NULL, '1.0000', '6.0000', '6.0000', '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 (42817, '2021-12-16', 2916, 40810, 3080, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42818, '2021-12-16', 7411, 40811, 3080, NULL, '1.0000', '1.3500', '1.3500', '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 (42819, '2021-12-16', 2302, 40812, 3080, 39904, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42820, '2021-12-16', 1854, 40813, 3080, 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 (42821, '2021-12-16', 7514, 40814, 3080, NULL, '1.0000', '2.2500', '2.2500', '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 (42822, '2021-12-16', 9577, 40815, 3080, NULL, '6.0000', '0.3200', '0.3200', '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 (42823, '2021-12-16', 7641, 40816, 3080, NULL, '1.0000', '1.9000', '1.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 (42824, '2021-12-16', 7473, 40817, 3080, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '79.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42825, '2021-12-16', 2169, 40818, 3080, NULL, '1.0000', '1.1500', '1.1500', '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 (42826, '2021-12-16', 1854, 40819, 3080, 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 (42827, '2021-12-16', 7892, 40820, 3080, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42828, '2021-12-16', 1412, 40821, 3080, 24977, '1.0000', '14.0000', '14.0000', '18.5000', '18.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 (42829, '2021-12-16', 1809, 40822, 3080, 39789, '1.0000', '9.5248', '9.5248', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42830, '2021-12-16', 8608, 40823, 3080, NULL, '1.0000', '0.9000', '0.9000', '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 (42831, '2021-12-16', 1527, 40824, 3080, 24924, '1.0000', '13.1000', '13.1000', '17.5000', '17.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 (42832, '2021-12-16', 2511, 40825, 3080, NULL, '1.0000', '8.8000', '8.8000', '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 (42833, '2021-12-16', 1812, 40826, 3080, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42834, '2021-12-16', 2366, 40827, 3080, NULL, '2.0000', '-17.8500', '-17.8500', '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 (42835, '2021-12-16', 9481, 40828, 3080, 32542, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42836, '2021-12-16', 9577, 40829, 3080, NULL, '1.0000', '0.3200', '0.3200', '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 (42837, '2021-12-16', 7867, 40830, 3080, NULL, '2.0000', '2.7700', '2.7700', '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 (42838, '2021-12-16', 2342, 40831, 3080, 19387, '2.0000', '1.8601', '1.8601', '2.6000', '2.6000', '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 (42839, '2021-12-16', 7819, 40832, 3080, NULL, '1.0000', '9.5000', '9.5000', '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 (42840, '2021-12-16', 9577, 40833, 3081, NULL, '2.0000', '0.3200', '0.3200', '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 (42841, '2021-12-16', 1340, 40834, 3081, 236, '1.0000', '2.7025', '2.7025', '3.5000', '3.5000', '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 (42842, '2021-12-16', 1577, 40835, 3081, 7596, '-6.0000', '2.5000', '2.5000', '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 (42843, '2021-12-16', 1577, 40835, 3081, NULL, '7.0000', '2.5000', '2.5000', '3.0000', '3.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 (42844, '2021-12-16', 2285, 40836, 3081, 2945, '-22.0000', '35.8000', '35.8000', '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 (42845, '2021-12-16', 2285, 40836, 3081, NULL, '23.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-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 (42846, '2021-12-16', 2416, 40837, 3081, 4745, '-16.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 (42847, '2021-12-16', 2416, 40837, 3081, NULL, '17.0000', '1.2000', '1.2000', '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 (42848, '2021-12-16', 7608, 40838, 3081, NULL, '1.0000', '6.9800', '6.9800', '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 (42849, '2021-12-16', 9577, 40839, 3081, NULL, '4.0000', '0.3200', '0.3200', '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 (42850, '2021-12-16', 2237, 40840, 3081, 2781, '-24.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 (42851, '2021-12-16', 2237, 40840, 3081, NULL, '25.0000', '1.0600', '1.0600', '2.0000', '2.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 (42852, '2021-12-16', 3058, 40841, 3081, 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 (42853, '2021-12-16', 1702, 40842, 3081, 4499, '-5.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 (42854, '2021-12-16', 1702, 40842, 3081, NULL, '6.0000', '14.9700', '14.9700', '20.0000', '20.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 (42855, '2021-12-16', 2858, 40843, 3081, 17772, '-24.0000', '1.0000', '1.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 (42856, '2021-12-16', 2858, 40843, 3081, NULL, '25.0000', '1.0000', '1.0000', '5.0000', '5.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 (42857, '2021-12-16', 1696, 40844, 3081, 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 (42858, '2021-12-16', 2302, 40845, 3081, 2963, '-23.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 (42859, '2021-12-16', 2302, 40845, 3081, NULL, '26.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (42860, '2021-12-16', 1812, 40846, 3081, 8224, '-45.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 (42861, '2021-12-16', 1812, 40846, 3081, NULL, '46.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42862, '2021-12-16', 1828, 40847, 3081, NULL, '1.0000', '0.7300', '0.7300', '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 (42863, '2021-12-16', 1854, 40848, 3081, 22240, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '15.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 (42864, '2021-12-16', 1667, 40849, 3081, 9745, '-34.0000', '5.9400', '5.9400', '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 (42865, '2021-12-16', 1667, 40849, 3081, NULL, '35.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42866, '2021-12-16', 2256, 40850, 3081, 2793, '-3.0000', '12.7400', '12.7400', '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 (42867, '2021-12-16', 2256, 40850, 3081, NULL, '4.0000', '12.7400', '12.7400', '18.5000', '18.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 (42868, '2021-12-16', 1863, 40851, 3081, 10808, '-103.0000', '0.4136', '0.4136', '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 (42869, '2021-12-16', 1863, 40851, 3081, NULL, '106.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42870, '2021-12-16', 1321, 40852, 3081, 18859, '1.0000', '9.8000', '9.8000', '13.0000', '13.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 (42871, '2021-12-16', 1603, 40853, 3081, NULL, '1.0000', '59.4600', '59.4600', '78.5000', '78.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42872, '2021-12-16', 1755, 40854, 3081, NULL, '1.0000', '5.5900', '5.5900', '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 (42873, '2021-12-16', 1502, 40855, 3081, 18925, '1.0000', '7.8000', '7.8000', '11.0000', '11.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 (42874, '2021-12-16', 2109, 40856, 3081, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '94.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 (42875, '2021-12-16', 2906, 40857, 3082, 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 (42876, '2021-12-16', 1671, 40858, 3082, NULL, '10.0000', '90.0000', '90.0000', '6.4000', '6.4000', '-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 (42877, '2021-12-16', 8276, 40859, 3082, NULL, '1.0000', '12.7063', '12.7063', '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 (42878, '2021-12-16', 7780, 40860, 3082, NULL, '1.0000', '2.6000', '2.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 (42879, '2021-12-16', 7926, 40861, 3082, 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 (42880, '2021-12-16', 8810, 40862, 3082, NULL, '1.0000', '1.9200', '1.9200', '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 (42881, '2021-12-16', 2458, 40863, 3082, 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 (42882, '2021-12-16', 7609, 40864, 3082, NULL, '1.0000', '4.3300', '4.3300', '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 (42883, '2021-12-16', 7675, 40865, 3082, NULL, '1.0000', '11.4300', '11.4300', '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 (42884, '2021-12-16', 7931, 40866, 3082, NULL, '1.0000', '0.2500', '0.2500', '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 (42885, '2021-12-16', 9192, 40867, 3082, 43059, '1.0000', '17.9100', '17.9100', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42886, '2021-12-16', 9461, 40868, 3082, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42887, '2021-12-16', 8735, 40869, 3082, NULL, '1.0000', '5.6000', '5.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 (42888, '2021-12-16', 7753, 40870, 3082, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42889, '2021-12-16', 8810, 40871, 3082, NULL, '1.0000', '1.9200', '1.9200', '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 (42890, '2021-12-16', 7411, 40872, 3082, NULL, '1.0000', '1.3500', '1.3500', '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 (42891, '2021-12-16', 3017, 40873, 3083, NULL, '1.0000', '3.9000', '3.9000', '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 (42892, '2021-12-16', 1596, 40874, 3083, 8361, '-7.0000', '2.5700', '2.5700', '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 (42893, '2021-12-16', 1596, 40874, 3083, NULL, '8.0000', '2.5700', '2.5700', '4.0000', '4.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 (42894, '2021-12-16', 7548, 40875, 3084, NULL, '2.0000', '-10.4600', '-10.4600', '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 (42895, '2021-12-16', 9272, 40876, 3084, NULL, '1.0000', '3.1000', '3.1000', '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 (42896, '2021-12-16', 8135, 40877, 3085, 39770, '1.0000', '3.1226', '3.1226', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42897, '2021-12-16', 9088, 40878, 3086, 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 (42898, '2021-12-17', 1592, 40879, 3087, 34586, '1.0000', '35.4585', '35.4585', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42899, '2021-12-17', 1856, 40880, 3087, 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 (42900, '2021-12-17', 8744, 40881, 3087, 43993, '1.0000', '-4.2210', '-4.2210', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42901, '2021-12-17', 8746, 40882, 3087, 43991, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42902, '2021-12-17', 9577, 40883, 3087, NULL, '2.0000', '0.3200', '0.3200', '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 (42903, '2021-12-17', 7719, 40884, 3087, NULL, '1.0000', '5.5000', '5.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 (42904, '2021-12-17', 7657, 40885, 3087, 39824, '1.0000', '10.3000', '10.3000', '14.0000', '14.0000', '18.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42905, '2021-12-17', 2169, 40886, 3087, NULL, '1.0000', '1.1500', '1.1500', '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 (42906, '2021-12-17', 2916, 40887, 3087, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42907, '2021-12-17', 1574, 40888, 3087, NULL, '1.0000', '1.7001', '1.7001', '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 (42908, '2021-12-17', 7657, 40889, 3087, 39824, '1.0000', '10.3000', '10.3000', '14.0000', '14.0000', '18.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42909, '2021-12-17', 7716, 40890, 3087, NULL, '1.0000', '0.0000', '0.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 (42910, '2021-12-17', 2916, 40891, 3087, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42911, '2021-12-17', 1912, 40892, 3087, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42912, '2021-12-17', 1533, 40893, 3087, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42913, '2021-12-17', 2379, 40894, 3087, NULL, '1.0000', '1.8000', '1.8000', '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 (42914, '2021-12-17', 9577, 40895, 3087, NULL, '2.0000', '0.3200', '0.3200', '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 (42915, '2021-12-17', 1487, 40896, 3087, NULL, '1.0000', '-37.3500', '-37.3500', '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 (42916, '2021-12-17', 7447, 40897, 3087, NULL, '1.0000', '19.1100', '19.1100', '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 (42917, '2021-12-17', 7716, 40898, 3087, NULL, '1.0000', '0.0000', '0.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 (42918, '2021-12-17', 1501, 40899, 3087, NULL, '1.0000', '2.2100', '2.2100', '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 (42919, '2021-12-17', 8202, 40900, 3087, NULL, '1.0000', '1.6600', '1.6600', '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 (42920, '2021-12-17', 2379, 40901, 3087, NULL, '1.0000', '1.8000', '1.8000', '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 (42921, '2021-12-17', 2423, 40902, 3087, 23981, '1.0000', '4.0000', '4.0000', '6.0000', '6.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 (42922, '2021-12-17', 2713, 40903, 3087, 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 (42923, '2021-12-17', 7744, 40904, 3087, NULL, '1.0000', '1.9000', '1.9000', '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 (42924, '2021-12-17', 9577, 40905, 3087, NULL, '2.0000', '0.3200', '0.3200', '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 (42925, '2021-12-17', 1533, 40906, 3087, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42926, '2021-12-17', 1602, 40907, 3088, 41376, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42927, '2021-12-17', 2948, 40908, 3088, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42928, '2021-12-17', 8918, 40909, 3088, NULL, '1.0000', '1.0400', '1.0400', '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 (42929, '2021-12-17', 2660, 40910, 3089, 42944, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42930, '2021-12-17', 2262, 40911, 3089, 18683, '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 (42931, '2021-12-17', 1584, 40912, 3089, 44035, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '16.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42932, '2021-12-17', 2109, 40913, 3089, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '51.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42933, '2021-12-17', 2252, 40914, 3089, 42955, '1.0000', '10.6889', '10.6889', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42934, '2021-12-17', 2277, 40915, 3089, 38069, '2.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42935, '2021-12-17', 1739, 40916, 3089, 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 (42936, '2021-12-17', 1608, 40917, 3089, NULL, '1.0000', '3.3500', '3.3500', '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 (42937, '2021-12-17', 8106, 40918, 3089, NULL, '28.0000', '17.0000', '17.0000', '3.8000', '3.8000', '-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 (42938, '2021-12-17', 2135, 40919, 3089, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42939, '2021-12-17', 2379, 40920, 3089, 38078, '1.0000', '1.8662', '1.8662', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42940, '2021-12-17', 2661, 40921, 3089, 12386, '3.0000', '9.0000', '9.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 (42941, '2021-12-17', 2661, 40921, 3089, 12072, '1.0000', '9.0000', '9.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 (42942, '2021-12-17', 2661, 40921, 3089, NULL, '1.0000', '9.0000', '9.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 (42943, '2021-12-17', 1404, 40922, 3089, 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 (42944, '2021-12-17', 2167, 40923, 3089, 40217, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42945, '2021-12-17', 1374, 40924, 3089, 42207, '3.0000', '120.4740', '120.4740', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42946, '2021-12-17', 1377, 40925, 3089, 29817, '1.0000', '51.5700', '51.5700', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 206);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42947, '2021-12-17', 1864, 40926, 3089, 42958, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42948, '2021-12-17', 8744, 40927, 3090, 44036, '1.0000', '3.5421', '3.5421', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42949, '2021-12-17', 7658, 40928, 3091, NULL, '10.0000', '10.1500', '10.1500', '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 (42950, '2021-12-17', 1871, 40929, 3091, NULL, '20.0000', '2.9308', '2.9308', '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 (42951, '2021-12-17', 2366, 40930, 3091, NULL, '2.0000', '-17.8500', '-17.8500', '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 (42952, '2021-12-17', 7482, 40931, 3092, NULL, '1.0000', '2.4981', '2.4981', '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 (42953, '2021-12-17', 7674, 40932, 3092, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '50.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42954, '2021-12-17', 7780, 40933, 3092, NULL, '1.0000', '2.6000', '2.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 (42955, '2021-12-17', 2315, 40934, 3092, NULL, '2.0000', '0.4740', '0.4740', '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 (42956, '2021-12-17', 8034, 40935, 3092, NULL, '1.0000', '4.8900', '4.8900', '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 (42957, '2021-12-17', 8548, 40936, 3092, NULL, '1.0000', '12.0000', '12.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 (42958, '2021-12-17', 8275, 40937, 3092, NULL, '2.0000', '29.8500', '29.8500', '40.0000', '40.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 (42959, '2021-12-17', 8296, 40938, 3092, NULL, '2.0000', '11.7600', '11.7600', '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 (42960, '2021-12-17', 8677, 40939, 3092, NULL, '2.0000', '1.2300', '1.2300', '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 (42961, '2021-12-17', 1460, 40940, 3092, 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 (42962, '2021-12-17', 7472, 40941, 3092, NULL, '1.0000', '4.1000', '4.1000', '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 (42963, '2021-12-17', 7444, 40942, 3092, 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 (42964, '2021-12-17', 7411, 40943, 3092, NULL, '2.0000', '1.3500', '1.3500', '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 (42965, '2021-12-17', 7765, 40944, 3092, NULL, '4.0000', '16.0000', '16.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 (42966, '2021-12-17', 7780, 40945, 3092, NULL, '1.0000', '2.6000', '2.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 (42967, '2021-12-17', 9272, 40946, 3092, NULL, '1.0000', '3.1000', '3.1000', '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 (42968, '2021-12-17', 7809, 40947, 3092, NULL, '1.0000', '13.5000', '13.5000', '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 (42969, '2021-12-17', 7777, 40948, 3092, NULL, '1.0000', '9.5000', '9.5000', '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 (42970, '2021-12-17', 7931, 40949, 3092, NULL, '1.0000', '0.2500', '0.2500', '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 (42971, '2021-12-17', 7752, 40950, 3092, NULL, '1.0000', '2.6100', '2.6100', '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 (42972, '2021-12-17', 3057, 40951, 3092, 33746, '4.0000', '3.2700', '3.2700', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42973, '2021-12-17', 8053, 40952, 3092, 37844, '2.0000', '1.7988', '1.7988', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42974, '2021-12-17', 7354, 40953, 3092, NULL, '2.0000', '18.0000', '18.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 (42975, '2021-12-17', 7671, 40954, 3092, NULL, '1.0000', '15.5000', '15.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 (42976, '2021-12-17', 7780, 40955, 3092, NULL, '1.0000', '2.6000', '2.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 (42977, '2021-12-17', 7736, 40956, 3092, NULL, '1.0000', '15.0000', '15.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 (42978, '2021-12-17', 8033, 40957, 3092, NULL, '1.0000', '27.7000', '27.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 (42979, '2021-12-17', 9390, 40958, 3092, NULL, '1.0000', '25.0000', '25.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 (42980, '2021-12-17', 7708, 40959, 3092, NULL, '1.0000', '6.1400', '6.1400', '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 (42981, '2021-12-17', 9183, 40960, 3092, NULL, '1.0000', '8.3000', '8.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 (42982, '2021-12-17', 7333, 40961, 3092, NULL, '2.0000', '13.5000', '13.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 (42983, '2021-12-17', 9271, 40962, 3092, NULL, '1.0000', '0.9900', '0.9900', '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 (42984, '2021-12-17', 8333, 40963, 3092, NULL, '1.0000', '5.5600', '5.5600', '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 (42985, '2021-12-17', 8288, 40964, 3092, NULL, '1.0000', '20.0000', '20.0000', '1.8000', '1.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 (42986, '2021-12-17', 8393, 40965, 3092, 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 (42987, '2021-12-17', 2506, 40966, 3092, 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 (42988, '2021-12-17', 8328, 40967, 3093, NULL, '1.0000', '8.0882', '8.0882', '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 (42989, '2021-12-17', 7383, 40968, 3093, 30015, '1.0000', '1.9700', '1.9700', '73.0000', '73.0000', '27.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42990, '2021-12-17', 7672, 40969, 3093, NULL, '1.0000', '1.0200', '1.0200', '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 (42991, '2021-12-17', 7593, 40970, 3093, 43429, '2.0000', '2.4500', '2.4500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42992, '2021-12-17', 7671, 40971, 3093, NULL, '1.0000', '15.5000', '15.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 (42993, '2021-12-17', 8608, 40972, 3093, NULL, '1.0000', '5.7400', '5.7400', '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 (42994, '2021-12-17', 2315, 40973, 3093, NULL, '2.0000', '0.4740', '0.4740', '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 (42995, '2021-12-17', 7671, 40974, 3093, NULL, '3.0000', '15.5000', '15.5000', '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 (42996, '2021-12-17', 7411, 40975, 3093, NULL, '1.0000', '1.3500', '1.3500', '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 (42997, '2021-12-17', 7442, 40976, 3093, NULL, '2.0000', '2.9500', '2.9500', '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 (42998, '2021-12-17', 9393, 40977, 3093, NULL, '1.0000', '15.0000', '15.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 (42999, '2021-12-17', 2057, 40978, 3093, 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 (43000, '2021-12-17', 7881, 40979, 3093, NULL, '1.0000', '83.7700', '83.7700', '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 (43001, '2021-12-17', 8548, 40980, 3093, NULL, '1.0000', '12.0000', '12.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 (43002, '2021-12-17', 7520, 40981, 3093, NULL, '2.0000', '9.6000', '9.6000', '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 (43003, '2021-12-17', 7412, 40982, 3093, NULL, '1.0000', '1.5200', '1.5200', '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 (43004, '2021-12-17', 8849, 40983, 3093, NULL, '1.0000', '1.0700', '1.0700', '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 (43005, '2021-12-17', 8735, 40984, 3093, NULL, '1.0000', '5.6000', '5.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 (43006, '2021-12-17', 7769, 40985, 3093, 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 (43007, '2021-12-17', 7780, 40986, 3093, NULL, '1.0000', '2.6000', '2.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 (43008, '2021-12-17', 7671, 40987, 3094, NULL, '2.0000', '15.5000', '15.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 (43009, '2021-12-17', 7715, 40988, 3094, NULL, '1.0000', '1.8900', '1.8900', '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 (43010, '2021-12-17', 9461, 40989, 3094, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43011, '2021-12-17', 7415, 40990, 3094, NULL, '1.0000', '5.4200', '5.4200', '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 (43012, '2021-12-17', 7641, 40991, 3094, NULL, '1.0000', '-12.6777', '-12.6777', '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 (43013, '2021-12-17', 7370, 40992, 3094, NULL, '1.0000', '12.1100', '12.1100', '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 (43014, '2021-12-17', 7430, 40993, 3094, 30046, '1.0000', '15.0000', '15.0000', '64.0000', '64.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43015, '2021-12-17', 8970, 40994, 3094, NULL, '1.0000', '1.1400', '1.1400', '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 (43016, '2021-12-17', 8243, 40995, 3094, NULL, '1.0000', '1.1400', '1.1400', '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 (43017, '2021-12-17', 9271, 40996, 3094, NULL, '1.0000', '0.9900', '0.9900', '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 (43018, '2021-12-17', 8735, 40997, 3094, NULL, '2.0000', '5.6000', '5.6000', '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 (43019, '2021-12-17', 2315, 40998, 3094, NULL, '2.0000', '0.4740', '0.4740', '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 (43020, '2021-12-17', 7820, 40999, 3094, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43021, '2021-12-17', 8596, 41000, 3094, NULL, '1.0000', '17.0000', '17.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 (43022, '2021-12-17', 8083, 41001, 3094, NULL, '1.0000', '0.7700', '0.7700', '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 (43023, '2021-12-17', 7744, 41002, 3094, NULL, '2.0000', '2.7000', '2.7000', '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 (43024, '2021-12-17', 2015, 41003, 3094, 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 (43025, '2021-12-17', 1952, 41004, 3095, 34576, '1.0000', '37.2246', '37.2246', '49.0000', '49.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43026, '2021-12-17', 1935, 41005, 3095, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43027, '2021-12-17', 7482, 41006, 3095, 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 (43028, '2021-12-17', 8288, 41007, 3095, 39785, '1.0000', '20.0000', '20.0000', '1.8000', '1.8000', '31.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43029, '2021-12-17', 9577, 41008, 3095, NULL, '4.0000', '0.3200', '0.3200', '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 (43030, '2021-12-17', 1340, 41009, 3095, 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 (43031, '2021-12-17', 7658, 41010, 3095, NULL, '3.0000', '10.1500', '10.1500', '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 (43032, '2021-12-17', 9399, 41011, 3095, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43033, '2021-12-17', 7641, 41012, 3095, NULL, '1.0000', '1.9000', '1.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 (43034, '2021-12-17', 7411, 41013, 3095, NULL, '1.0000', '1.3500', '1.3500', '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 (43035, '2021-12-17', 1419, 41014, 3095, 34944, '1.0000', '13.1040', '13.1040', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43036, '2021-12-17', 8771, 41015, 3095, 42649, '2.0000', '3.4915', '3.4915', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43037, '2021-12-17', 9577, 41016, 3095, NULL, '2.0000', '0.3200', '0.3200', '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 (43038, '2021-12-17', 2916, 41017, 3095, 42560, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43039, '2021-12-17', 7482, 41018, 3095, 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 (43040, '2021-12-17', 2280, 41019, 3095, NULL, '1.0000', '-177.9360', '-177.9360', '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 (43041, '2021-12-17', 9577, 41020, 3095, NULL, '2.0000', '0.3200', '0.3200', '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 (43042, '2021-12-17', 1337, 41021, 3095, 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 (43043, '2021-12-17', 7473, 41022, 3095, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '76.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43044, '2021-12-17', 9556, 41023, 3095, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43045, '2021-12-17', 7564, 41024, 3095, NULL, '1.0000', '0.6400', '0.6400', '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 (43046, '2021-12-17', 2169, 41025, 3095, NULL, '1.0000', '1.1500', '1.1500', '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 (43047, '2021-12-17', 2167, 41026, 3095, 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 (43048, '2021-12-17', 2237, 41027, 3095, NULL, '1.0000', '-329.8285', '-329.8285', '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 (43049, '2021-12-17', 7411, 41028, 3095, NULL, '1.0000', '1.3500', '1.3500', '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 (43050, '2021-12-17', 7447, 41029, 3095, NULL, '4.0000', '19.1100', '19.1100', '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 (43051, '2021-12-17', 2169, 41030, 3095, NULL, '1.0000', '1.1500', '1.1500', '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 (43052, '2021-12-17', 7458, 41031, 3095, NULL, '1.0000', '3.0000', '3.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 (43053, '2021-12-17', 8984, 41032, 3095, NULL, '1.0000', '-100.8495', '-100.8495', '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 (43054, '2021-12-17', 7411, 41033, 3095, NULL, '1.0000', '1.3500', '1.3500', '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 (43055, '2021-12-17', 2511, 41034, 3095, NULL, '1.0000', '8.8000', '8.8000', '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 (43056, '2021-12-17', 2169, 41035, 3095, NULL, '1.0000', '1.1500', '1.1500', '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 (43057, '2021-12-17', 1837, 41036, 3095, 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 (43058, '2021-12-17', 1381, 41037, 3096, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43059, '2021-12-17', 2642, 41038, 3096, 42537, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43060, '2021-12-17', 1348, 41039, 3096, 23123, '1.0000', '15.5000', '15.5000', '21.0000', '21.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 (43061, '2021-12-17', 1689, 41040, 3096, 42821, '1.0000', '12.9279', '12.9279', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43062, '2021-12-17', 1328, 41041, 3096, 32533, '1.0000', '3.1500', '3.1500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43063, '2021-12-17', 2169, 41042, 3096, NULL, '1.0000', '1.1500', '1.1500', '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 (43064, '2021-12-17', 2237, 41043, 3096, NULL, '1.0000', '-329.8285', '-329.8285', '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 (43065, '2021-12-17', 7564, 41044, 3096, NULL, '1.0000', '0.6400', '0.6400', '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 (43066, '2021-12-17', 7917, 41045, 3096, NULL, '1.0000', '5.0000', '5.0000', '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 (43067, '2021-12-17', 7530, 41046, 3096, 42073, '1.0000', '-2.9704', '-2.9704', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43068, '2021-12-17', 9577, 41047, 3096, NULL, '2.0000', '0.3200', '0.3200', '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 (43069, '2021-12-17', 2252, 41048, 3096, 42804, '1.0000', '16.5900', '16.5900', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43070, '2021-12-17', 8133, 41049, 3096, NULL, '1.0000', '-618.7699', '-618.7699', '10.5300', '10.5300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43071, '2021-12-17', 7641, 41050, 3096, NULL, '1.0000', '1.9000', '1.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 (43072, '2021-12-17', 9089, 41051, 3097, NULL, '1.0000', '3.8000', '3.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 (43073, '2021-12-17', 1501, 41052, 3097, NULL, '1.0000', '2.2100', '2.2100', '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 (43074, '2021-12-17', 8765, 41053, 3097, 43990, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43075, '2021-12-17', 1381, 41054, 3097, 42562, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43076, '2021-12-17', 1501, 41055, 3097, NULL, '1.0000', '2.2100', '2.2100', '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 (43077, '2021-12-17', 7759, 41056, 3097, NULL, '1.0000', '19.5000', '19.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 (43078, '2021-12-17', 1839, 41057, 3097, NULL, '1.0000', '1.8866', '1.8866', '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 (43079, '2021-12-17', 9556, 41058, 3097, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43080, '2021-12-17', 2351, 41059, 3098, 32022, '1.0000', '17.7000', '17.7000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43081, '2021-12-17', 2285, 41060, 3098, 22649, '1.0000', '36.5090', '36.5090', '49.0000', '49.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 (43082, '2021-12-17', 9562, 41061, 3098, 42628, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43083, '2021-12-17', 9563, 41062, 3098, 42629, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43084, '2021-12-17', 7342, 41063, 3099, 43837, '1.0000', '14.5034', '14.5034', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43085, '2021-12-17', 2893, 41064, 3099, 18431, '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 (43086, '2021-12-17', 2251, 41065, 3099, 34419, '1.0000', '11.7398', '11.7398', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43087, '2021-12-17', 1574, 41066, 3099, 23615, '3.0000', '82.8731', '82.8731', '2.5000', '2.5000', '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 (43088, '2021-12-17', 1427, 41067, 3099, 43870, '1.0000', '14.7223', '14.7223', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43089, '2021-12-17', 1425, 41068, 3099, 43826, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43090, '2021-12-17', 2778, 41069, 3099, 19056, '1.0000', '89.4000', '89.4000', '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 (43091, '2021-12-17', 2286, 41070, 3099, 43904, '3.0000', '4.3709', '4.3709', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43092, '2021-12-17', 1510, 41071, 3099, 29790, '1.0000', '29.8200', '29.8200', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43093, '2021-12-17', 1330, 41072, 3099, 3367, '1.0000', '2.8000', '2.8000', '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 (43094, '2021-12-17', 2251, 41073, 3099, 34419, '1.0000', '11.7398', '11.7398', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43095, '2021-12-17', 9578, 41074, 3099, 42630, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43096, '2021-12-17', 1871, 41075, 3099, 43862, '20.0000', '20.0938', '20.0938', '3.0000', '3.0000', '60.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43097, '2021-12-17', 2916, 41076, 3099, 40854, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43098, '2021-12-17', 9577, 41077, 3099, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43099, '2021-12-17', 1342, 41078, 3099, 42947, '1.0000', '18.5909', '18.5909', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43100, '2021-12-17', 1382, 41079, 3099, 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 (43101, '2021-12-17', 1702, 41080, 3099, 33016, '1.0000', '60.1221', '60.1221', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43102, '2021-12-17', 1904, 41081, 3099, 37558, '5.0000', '201.4970', '201.4970', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43103, '2021-12-17', 2320, 41082, 3099, NULL, '3.0000', '5.0000', '5.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 (43104, '2021-12-17', 1651, 41083, 3099, 43037, '3.0000', '6.8684', '6.8684', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43105, '2021-12-17', 2035, 41084, 3099, 6415, '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 (43106, '2021-12-17', 2285, 41085, 3099, 11014, '1.0000', '36.5090', '36.5090', '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 (43107, '2021-12-17', 1639, 41086, 3099, 43553, '1.0000', '7.3300', '7.3300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43108, '2021-12-17', 9579, 41087, 3099, 42631, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43109, '2021-12-17', 2506, 41088, 3099, 42984, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43110, '2021-12-17', 2699, 41089, 3099, 42938, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43111, '2021-12-17', 7524, 41090, 3099, NULL, '1.0000', '11.9500', '11.9500', '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 (43112, '2021-12-17', 1772, 41091, 3099, 40908, '1.0000', '6.0491', '6.0491', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43113, '2021-12-17', 7532, 41092, 3099, NULL, '1.0000', '20.6000', '20.6000', '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 (43114, '2021-12-17', 2916, 41093, 3099, 40854, '1.0000', '12.0163', '12.0163', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43115, '2021-12-17', 1954, 41094, 3099, 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 (43116, '2021-12-17', 2948, 41095, 3099, NULL, '2.0000', '0.9000', '0.9000', '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 (43117, '2021-12-17', 9488, 41096, 3099, 32630, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43118, '2021-12-17', 7629, 41097, 3099, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43119, '2021-12-17', 2221, 41098, 3099, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43120, '2021-12-17', 1787, 41099, 3099, 40215, '1.0000', '0.8100', '0.8100', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43121, '2021-12-17', 1574, 41100, 3099, 23615, '3.0000', '82.8731', '82.8731', '2.5000', '2.5000', '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 (43122, '2021-12-17', 9275, 41101, 3099, NULL, '2.0000', '6.3000', '6.3000', '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 (43123, '2021-12-17', 1854, 41102, 3099, 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 (43124, '2021-12-17', 2285, 41103, 3099, 11014, '1.0000', '36.5090', '36.5090', '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 (43125, '2021-12-17', 1331, 41104, 3099, 33205, '1.0000', '4.1639', '4.1639', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43126, '2021-12-17', 1332, 41105, 3099, 40296, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43127, '2021-12-17', 2350, 41106, 3099, 40907, '1.0000', '11.3244', '11.3244', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43128, '2021-12-17', 2320, 41107, 3099, 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 (43129, '2021-12-17', 9554, 41108, 3099, 39184, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43130, '2021-12-17', 2948, 41109, 3099, NULL, '1.0000', '0.9000', '0.9000', '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 (43131, '2021-12-17', 7482, 41110, 3099, 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 (43132, '2021-12-17', 2237, 41111, 3099, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43133, '2021-12-17', 1603, 41112, 3099, 16916, '1.0000', '56.0200', '56.0200', '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 (43134, '2021-12-17', 1864, 41113, 3099, 42958, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43135, '2021-12-17', 2169, 41114, 3099, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43136, '2021-12-17', 2068, 41115, 3099, 43884, '1.0000', '11.8601', '11.8601', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43137, '2021-12-17', 2277, 41116, 3099, 38069, '6.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43138, '2021-12-17', 2256, 41117, 3099, 43855, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43139, '2021-12-17', 3059, 41118, 3099, NULL, '2.0000', '0.4500', '0.4500', '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 (43140, '2021-12-17', 9399, 41119, 3099, NULL, '1.0000', '0.4200', '0.4200', '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 (43141, '2021-12-17', 9577, 41120, 3100, NULL, '2.0000', '0.3200', '0.3200', '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 (43142, '2021-12-17', 1555, 41121, 3100, 41364, '1.0000', '22.2400', '22.2400', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43143, '2021-12-17', 2699, 41122, 3100, 43997, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43144, '2021-12-17', 7743, 41123, 3100, NULL, '1.0000', '7.3900', '7.3900', '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 (43145, '2021-12-17', 9445, 41124, 3100, 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 (43146, '2021-12-17', 2283, 41125, 3100, 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 (43147, '2021-12-17', 1809, 41126, 3100, 39789, '1.0000', '9.5248', '9.5248', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43148, '2021-12-17', 8203, 41127, 3101, NULL, '4.0000', '1.0075', '1.0075', '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 (43149, '2021-12-17', 7834, 41128, 3101, 43528, '2.0000', '16.0000', '16.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43150, '2021-12-17', 7780, 41129, 3101, NULL, '1.0000', '2.6000', '2.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 (43151, '2021-12-17', 7672, 41130, 3101, NULL, '2.0000', '1.0200', '1.0200', '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 (43152, '2021-12-17', 2295, 41131, 3101, 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 (43153, '2021-12-17', 7628, 41132, 3101, NULL, '12.0000', '2.9100', '2.9100', '4.0000', '4.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 (43154, '2021-12-17', 7776, 41133, 3101, NULL, '1.0000', '8.0000', '8.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 (43155, '2021-12-17', 7672, 41134, 3101, NULL, '1.0000', '1.0200', '1.0200', '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 (43156, '2021-12-17', 1806, 41135, 3101, NULL, '2.0000', '28.1300', '28.1300', '35.0000', '35.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 (43157, '2021-12-17', 7657, 41136, 3101, NULL, '1.0000', '5.4700', '5.4700', '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 (43158, '2021-12-17', 8844, 41137, 3101, NULL, '1.0000', '4.8500', '4.8500', '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 (43159, '2021-12-17', 7913, 41138, 3101, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (43160, '2021-12-17', 3016, 41139, 3101, 39586, '1.0000', '14.5200', '14.5200', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43161, '2021-12-17', 2296, 41140, 3101, NULL, '1.0000', '12.8812', '12.8812', '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 (43162, '2021-12-17', 7824, 41141, 3101, NULL, '1.0000', '8.0000', '8.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 (43163, '2021-12-17', 7674, 41142, 3101, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43164, '2021-12-17', 7967, 41143, 3101, 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 (43165, '2021-12-17', 7444, 41144, 3101, 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 (43166, '2021-12-17', 8243, 41145, 3101, NULL, '1.0000', '1.1400', '1.1400', '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 (43167, '2021-12-17', 8548, 41146, 3101, NULL, '1.0000', '12.0000', '12.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 (43168, '2021-12-17', 8198, 41147, 3101, NULL, '1.0000', '6.2900', '6.2900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43169, '2021-12-17', 7674, 41148, 3101, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43170, '2021-12-17', 8135, 41149, 3101, NULL, '1.0000', '13.9000', '13.9000', '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 (43171, '2021-12-17', 7640, 41150, 3101, NULL, '1.0000', '7.4344', '7.4344', '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 (43172, '2021-12-17', 8608, 41151, 3101, NULL, '1.0000', '5.7400', '5.7400', '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 (43173, '2021-12-17', 7913, 41152, 3101, NULL, '2.0000', '2.5500', '2.5500', '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 (43174, '2021-12-17', 7819, 41153, 3101, NULL, '1.0000', '9.5000', '9.5000', '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 (43175, '2021-12-17', 7894, 41154, 3101, 38140, '1.0000', '-38.6667', '-38.6667', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43176, '2021-12-17', 7641, 41155, 3101, NULL, '1.0000', '-12.6777', '-12.6777', '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 (43177, '2021-12-17', 7557, 41156, 3101, NULL, '10.0000', '0.5000', '0.5000', '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 (43178, '2021-12-17', 7879, 41157, 3101, NULL, '5.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (43179, '2021-12-17', 7547, 41158, 3101, NULL, '4.0000', '0.0000', '0.0000', '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 (43180, '2021-12-17', 7819, 41159, 3101, NULL, '1.0000', '9.5000', '9.5000', '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 (43181, '2021-12-17', 7524, 41160, 3101, NULL, '1.0000', '103.0922', '103.0922', '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 (43182, '2021-12-17', 7411, 41161, 3101, NULL, '2.0000', '1.3500', '1.3500', '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 (43183, '2021-12-17', 8966, 41162, 3101, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43184, '2021-12-17', 7379, 41163, 3101, NULL, '1.0000', '12.5100', '12.5100', '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 (43185, '2021-12-17', 7641, 41164, 3101, NULL, '1.0000', '-12.6777', '-12.6777', '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 (43186, '2021-12-17', 7611, 41165, 3101, NULL, '1.0000', '5.0485', '5.0485', '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 (43187, '2021-12-17', 7743, 41166, 3101, NULL, '1.0000', '419203.7668', '419203.7668', '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 (43188, '2021-12-17', 9092, 41167, 3101, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '168.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43189, '2021-12-17', 7355, 41168, 3101, NULL, '1.0000', '11.6400', '11.6400', '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 (43190, '2021-12-17', 7820, 41169, 3101, NULL, '1.0000', '-8.1000', '-8.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43191, '2021-12-17', 7780, 41170, 3101, NULL, '1.0000', '2.6000', '2.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 (43192, '2021-12-17', 7415, 41171, 3101, NULL, '1.0000', '5.4200', '5.4200', '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 (43193, '2021-12-17', 2216, 41172, 3102, 39187, '2.0000', '12.0000', '12.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43194, '2021-12-17', 2015, 41173, 3102, 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 (43195, '2021-12-17', 1704, 41174, 3102, 43807, '1.0000', '3621.8219', '3621.8219', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43196, '2021-12-17', 2036, 41175, 3102, 40347, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43197, '2021-12-17', 2272, 41176, 3102, 32823, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43198, '2021-12-17', 8767, 41177, 3102, 42933, '1.0000', '6.6900', '6.6900', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43199, '2021-12-17', 1338, 41178, 3102, 43888, '1.0000', '3.3760', '3.3760', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43200, '2021-12-17', 1602, 41179, 3103, 41376, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43201, '2021-12-17', 7848, 41180, 3104, NULL, '1.0000', '1.3500', '1.3500', '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 (43202, '2021-12-17', 8304, 41181, 3104, NULL, '1.0000', '8.2400', '8.2400', '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 (43203, '2021-12-17', 8136, 41182, 3104, NULL, '1.0000', '29.3500', '29.3500', '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 (43204, '2021-12-17', 9213, 41183, 3105, 42925, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43205, '2021-12-17', 8933, 41184, 3105, NULL, '1.0000', '10.0000', '10.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 (43206, '2021-12-17', 2662, 41185, 3105, 31983, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43207, '2021-12-18', 1663, 41186, 3106, 3234, '-2.0000', '97.7700', '97.7700', '125.0000', '125.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43208, '2021-12-18', 1663, 41186, 3106, NULL, '3.0000', '97.7700', '97.7700', '125.0000', '125.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 (43209, '2021-12-18', 7459, 41187, 3106, NULL, '20.0000', '2.3500', '2.3500', '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 (43210, '2021-12-18', 2221, 41188, 3106, 4154, '-27.0000', '14.4737', '14.4737', '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 (43211, '2021-12-18', 2221, 41188, 3106, NULL, '28.0000', '14.4737', '14.4737', '25.0000', '25.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 (43212, '2021-12-18', 9214, 41189, 3106, NULL, '1.0000', '9.6000', '9.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 (43213, '2021-12-18', 7642, 41190, 3107, NULL, '1.0000', '2.6900', '2.6900', '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 (43214, '2021-12-18', 3041, 41191, 3107, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '9.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 (43215, '2021-12-18', 1307, 41192, 3107, NULL, '1.0000', '1.7846', '1.7846', '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 (43216, '2021-12-18', 7500, 41193, 3107, 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 (43217, '2021-12-18', 2169, 41194, 3107, NULL, '1.0000', '1.1500', '1.1500', '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 (43218, '2021-12-18', 9577, 41195, 3107, NULL, '1.0000', '0.3200', '0.3200', '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 (43219, '2021-12-18', 1746, 41196, 3107, 19863, '1.0000', '3.5000', '3.5000', '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 (43220, '2021-12-18', 9503, 41197, 3107, 33350, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43221, '2021-12-18', 2379, 41198, 3107, NULL, '1.0000', '1.8000', '1.8000', '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 (43222, '2021-12-18', 1701, 41199, 3107, 34961, '1.0000', '15.0619', '15.0619', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43223, '2021-12-18', 2068, 41200, 3107, 33354, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43224, '2021-12-18', 1501, 41201, 3107, NULL, '1.0000', '2.2100', '2.2100', '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 (43225, '2021-12-18', 1602, 41202, 3107, 41376, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43226, '2021-12-18', 1910, 41203, 3107, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (43227, '2021-12-18', 2285, 41204, 3107, NULL, '1.0000', '36.1500', '36.1500', '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 (43228, '2021-12-18', 1432, 41205, 3107, 44067, '1.0000', '9.9302', '9.9302', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43229, '2021-12-18', 2237, 41206, 3107, NULL, '1.0000', '-329.8285', '-329.8285', '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 (43230, '2021-12-18', 1696, 41207, 3107, 42552, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43231, '2021-12-18', 2948, 41208, 3107, 39872, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43232, '2021-12-18', 2068, 41209, 3107, 33354, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43233, '2021-12-18', 1501, 41210, 3107, NULL, '1.0000', '2.2100', '2.2100', '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 (43234, '2021-12-18', 1612, 41211, 3107, 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 (43235, '2021-12-18', 1947, 41212, 3107, 42574, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43236, '2021-12-18', 7544, 41213, 3107, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43237, '2021-12-18', 2289, 41214, 3107, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43238, '2021-12-18', 1841, 41215, 3107, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43239, '2021-12-18', 7456, 41216, 3108, NULL, '1.0000', '1.3800', '1.3800', '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 (43240, '2021-12-18', 8013, 41217, 3109, NULL, '1.0000', '3.6500', '3.6500', '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 (43241, '2021-12-18', 9577, 41218, 3109, NULL, '3.0000', '0.3200', '0.3200', '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 (43242, '2021-12-18', 2366, 41219, 3109, 3833, '-26.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 (43243, '2021-12-18', 2366, 41219, 3109, NULL, '28.0000', '3.7500', '3.7500', '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 (43244, '2021-12-18', 2036, 41220, 3109, 4277, '-6.0000', '8.0000', '8.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 (43245, '2021-12-18', 2036, 41220, 3109, NULL, '8.0000', '8.0000', '8.0000', '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 (43246, '2021-12-18', 2428, 41221, 3109, 5300, '-1.0000', '19.0000', '19.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 (43247, '2021-12-18', 2428, 41221, 3109, NULL, '2.0000', '19.0000', '19.0000', '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 (43248, '2021-12-18', 1671, 41222, 3109, 7457, '-28.0000', '4.2000', '4.2000', '6.4000', '6.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 (43249, '2021-12-18', 1671, 41222, 3109, NULL, '38.0000', '4.2000', '4.2000', '6.4000', '6.4000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43250, '2021-12-18', 2221, 41223, 3109, 4154, '-28.0000', '14.4737', '14.4737', '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 (43251, '2021-12-18', 2221, 41223, 3109, NULL, '29.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43252, '2021-12-18', 9577, 41224, 3109, NULL, '2.0000', '0.3200', '0.3200', '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 (43253, '2021-12-18', 7496, 41225, 3109, NULL, '1.0000', '0.9600', '0.9600', '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 (43254, '2021-12-18', 2169, 41226, 3109, 1382, '1.0000', '3.8397', '3.8397', '1.5000', '1.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 (43255, '2021-12-18', 1665, 41227, 3109, 3235, '-45.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 (43256, '2021-12-18', 1665, 41227, 3109, NULL, '47.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (43257, '2021-12-18', 1592, 41228, 3109, 6223, '-6.0000', '35.9000', '35.9000', '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 (43258, '2021-12-18', 1592, 41228, 3109, NULL, '7.0000', '35.9000', '35.9000', '44.0000', '44.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 (43259, '2021-12-18', 1427, 41229, 3109, NULL, '1.0000', '14.2181', '14.2181', '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 (43260, '2021-12-18', 2221, 41230, 3109, 4154, '-28.0000', '14.4737', '14.4737', '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 (43261, '2021-12-18', 2221, 41230, 3109, NULL, '29.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43262, '2021-12-18', 1304, 41231, 3109, 34, '1.0000', '89.2753', '89.2753', '3.0000', '3.0000', '109.0000', 1, 0, NULL, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43263, '2021-12-18', 2272, 41232, 3109, 2932, '-13.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 (43264, '2021-12-18', 2272, 41232, 3109, NULL, '14.0000', '5.5000', '5.5000', '7.5000', '7.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 (43265, '2021-12-18', 2360, 41233, 3109, 3862, '-48.0000', '0.5200', '0.5200', '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 (43266, '2021-12-18', 2360, 41233, 3109, NULL, '49.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43267, '2021-12-18', 2825, 41234, 3109, NULL, '2.0000', '12.0000', '12.0000', '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 (43268, '2021-12-18', 2237, 41235, 3109, 2781, '-25.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 (43269, '2021-12-18', 2237, 41235, 3109, NULL, '26.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (43270, '2021-12-18', 9577, 41236, 3109, NULL, '4.0000', '0.3200', '0.3200', '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 (43271, '2021-12-18', 7459, 41237, 3109, NULL, '20.0000', '2.3500', '2.3500', '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 (43272, '2021-12-18', 2958, 41238, 3109, 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 (43273, '2021-12-18', 1663, 41239, 3109, 3234, '-3.0000', '97.7700', '97.7700', '125.0000', '125.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43274, '2021-12-18', 1663, 41239, 3109, NULL, '4.0000', '97.7700', '97.7700', '125.0000', '125.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 (43275, '2021-12-18', 2221, 41240, 3109, 4154, '-28.0000', '14.4737', '14.4737', '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 (43276, '2021-12-18', 2221, 41240, 3109, NULL, '29.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43277, '2021-12-18', 1399, 41241, 3109, 22285, '1.0000', '13.3890', '13.3890', '21.0000', '21.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 (43278, '2021-12-18', 2285, 41242, 3109, 2945, '-23.0000', '35.8000', '35.8000', '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 (43279, '2021-12-18', 2285, 41242, 3109, NULL, '24.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-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 (43280, '2021-12-18', 2699, 41243, 3109, 12529, '-25.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 (43281, '2021-12-18', 2699, 41243, 3109, NULL, '26.0000', '3.0000', '3.0000', '4.5000', '4.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 (43282, '2021-12-18', 1399, 41244, 3109, 22285, '1.0000', '13.3890', '13.3890', '21.0000', '21.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 (43283, '2021-12-18', 1651, 41245, 3109, 3222, '-36.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 (43284, '2021-12-18', 1651, 41245, 3109, NULL, '37.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43285, '2021-12-18', 1584, 41246, 3109, 7601, '-15.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 (43286, '2021-12-18', 1584, 41246, 3109, NULL, '17.0000', '90.0000', '90.0000', '8.0000', '8.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 (43287, '2021-12-18', 1504, 41247, 3110, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (43288, '2021-12-18', 8325, 41248, 3111, 36672, '2.0000', '6.3350', '6.3350', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43289, '2021-12-18', 8481, 41249, 3111, NULL, '1.0000', '31.0700', '31.0700', '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 (43290, '2021-12-18', 8517, 41250, 3111, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43291, '2021-12-18', 7335, 41251, 3111, NULL, '1.0000', '10.4000', '10.4000', '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 (43292, '2021-12-18', 9469, 41252, 3111, 39422, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43293, '2021-12-18', 7753, 41253, 3111, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43294, '2021-12-18', 1620, 41254, 3111, NULL, '4.0000', '97.9791', '97.9791', '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 (43295, '2021-12-18', 9618, 41255, 3111, NULL, '6.0000', '3.7500', '3.7500', '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 (43296, '2021-12-18', 9674, 41256, 3111, 42403, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43297, '2021-12-18', 8401, 41257, 3111, 42422, '1.0000', '13.7163', '13.7163', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43298, '2021-12-18', 7892, 41258, 3111, NULL, '1.0000', '4.2000', '4.2000', '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 (43299, '2021-12-18', 7780, 41259, 3111, NULL, '1.0000', '2.6000', '2.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 (43300, '2021-12-18', 8927, 41260, 3111, NULL, '2.0000', '36.0000', '36.0000', '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 (43301, '2021-12-18', 2624, 41261, 3111, 39552, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43302, '2021-12-18', 8203, 41262, 3111, NULL, '2.0000', '1.0075', '1.0075', '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 (43303, '2021-12-18', 7708, 41263, 3111, NULL, '1.0000', '6.1400', '6.1400', '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 (43304, '2021-12-18', 7762, 41264, 3111, NULL, '1.0000', '5.1000', '5.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 (43305, '2021-12-18', 8166, 41265, 3111, NULL, '4.0000', '4.6000', '4.6000', '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 (43306, '2021-12-18', 7881, 41266, 3111, NULL, '1.0000', '83.7700', '83.7700', '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 (43307, '2021-12-18', 7334, 41267, 3111, NULL, '3.0000', '8.1600', '8.1600', '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 (43308, '2021-12-18', 2868, 41268, 3111, 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 (43309, '2021-12-18', 8872, 41269, 3111, NULL, '1.0000', '3.0000', '3.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 (43310, '2021-12-18', 7753, 41270, 3111, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43311, '2021-12-18', 7526, 41271, 3111, NULL, '1.0000', '0.2400', '0.2400', '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 (43312, '2021-12-18', 7379, 41272, 3111, NULL, '1.0000', '12.5100', '12.5100', '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 (43313, '2021-12-18', 7980, 41273, 3111, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (43314, '2021-12-18', 9098, 41274, 3111, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43315, '2021-12-18', 7674, 41275, 3111, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43316, '2021-12-18', 7412, 41276, 3111, NULL, '2.0000', '1.5200', '1.5200', '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 (43317, '2021-12-18', 8515, 41277, 3111, NULL, '7.0000', '28.0200', '28.0200', '1.8000', '1.8000', '-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 (43318, '2021-12-18', 7782, 41278, 3111, NULL, '1.0000', '5.0000', '5.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 (43319, '2021-12-18', 8677, 41279, 3111, NULL, '2.0000', '1.2300', '1.2300', '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 (43320, '2021-12-18', 2655, 41280, 3111, 43949, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43321, '2021-12-18', 7473, 41281, 3111, NULL, '3.0000', '25.2998', '25.2998', '0.6000', '0.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 (43322, '2021-12-18', 9556, 41282, 3111, 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 (43323, '2021-12-18', 2315, 41283, 3111, NULL, '2.0000', '0.4740', '0.4740', '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 (43324, '2021-12-18', 9098, 41284, 3111, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43325, '2021-12-18', 8810, 41285, 3111, NULL, '1.0000', '1.9200', '1.9200', '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 (43326, '2021-12-18', 7744, 41286, 3111, NULL, '2.0000', '2.7000', '2.7000', '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 (43327, '2021-12-18', 8097, 41287, 3111, 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 (43328, '2021-12-18', 1837, 41288, 3111, 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 (43329, '2021-12-18', 9158, 41289, 3111, NULL, '1.0000', '5.8910', '5.8910', '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 (43330, '2021-12-18', 7591, 41290, 3111, NULL, '1.0000', '2.7500', '2.7500', '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 (43331, '2021-12-18', 8363, 41291, 3111, NULL, '2.0000', '38.0000', '38.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 (43332, '2021-12-18', 8677, 41292, 3111, NULL, '2.0000', '1.2300', '1.2300', '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 (43333, '2021-12-18', 1381, 41293, 3111, 36091, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43334, '2021-12-18', 7819, 41294, 3111, NULL, '1.0000', '9.5000', '9.5000', '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 (43335, '2021-12-18', 9088, 41295, 3111, 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 (43336, '2021-12-18', 7612, 41296, 3111, NULL, '1.0000', '1.1770', '1.1770', '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 (43337, '2021-12-18', 7507, 41297, 3111, NULL, '3.0000', '6.5000', '6.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 (43338, '2021-12-18', 7411, 41298, 3111, NULL, '3.0000', '1.3500', '1.3500', '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 (43339, '2021-12-18', 7482, 41299, 3111, NULL, '1.0000', '2.4981', '2.4981', '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 (43340, '2021-12-18', 7926, 41300, 3111, 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 (43341, '2021-12-18', 7800, 41301, 3111, NULL, '10.0000', '4.9000', '4.9000', '7.0000', '7.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 (43342, '2021-12-18', 2315, 41302, 3111, NULL, '2.0000', '0.4740', '0.4740', '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 (43343, '2021-12-18', 8233, 41303, 3111, 40439, '1.0000', '4.0449', '4.0449', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43344, '2021-12-18', 7411, 41304, 3111, NULL, '1.0000', '1.3500', '1.3500', '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 (43345, '2021-12-18', 1817, 41305, 3111, NULL, '1.0000', '9.5500', '9.5500', '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 (43346, '2021-12-18', 7588, 41306, 3111, NULL, '1.0000', '7.0762', '7.0762', '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 (43347, '2021-12-18', 7346, 41307, 3111, 34524, '1.0000', '94.2800', '94.2800', '125.0000', '125.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43348, '2021-12-18', 9579, 41308, 3111, 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 (43349, '2021-12-18', 7912, 41309, 3111, NULL, '2.0000', '8.0361', '8.0361', '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 (43350, '2021-12-18', 1631, 41310, 3111, NULL, '1.0000', '63.9000', '63.9000', '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 (43351, '2021-12-18', 7753, 41311, 3111, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43352, '2021-12-18', 8735, 41312, 3111, NULL, '1.0000', '5.6000', '5.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 (43353, '2021-12-18', 2295, 41313, 3111, 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 (43354, '2021-12-18', 7674, 41314, 3111, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43355, '2021-12-18', 8046, 41315, 3111, 37407, '10.0000', '456.2805', '456.2805', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43356, '2021-12-18', 7674, 41316, 3111, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43357, '2021-12-18', 7703, 41317, 3111, NULL, '1.0000', '22.9900', '22.9900', '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 (43358, '2021-12-18', 7682, 41318, 3111, NULL, '1.0000', '0.6600', '0.6600', '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 (43359, '2021-12-18', 7507, 41319, 3111, NULL, '3.0000', '6.5000', '6.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 (43360, '2021-12-18', 8393, 41320, 3111, 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 (43361, '2021-12-18', 7641, 41321, 3111, NULL, '1.0000', '-12.6777', '-12.6777', '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 (43362, '2021-12-18', 2295, 41322, 3111, NULL, '4.0000', '0.7000', '0.7000', '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 (43363, '2021-12-18', 8154, 41323, 3111, NULL, '2.0000', '12.3000', '12.3000', '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 (43364, '2021-12-18', 9417, 41324, 3111, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43365, '2021-12-18', 8735, 41325, 3111, NULL, '1.0000', '5.6000', '5.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 (43366, '2021-12-18', 8810, 41326, 3111, NULL, '1.0000', '1.9200', '1.9200', '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 (43367, '2021-12-18', 7965, 41327, 3111, NULL, '14.0000', '5.6100', '5.6100', '6.5000', '6.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 (43368, '2021-12-18', 8735, 41328, 3111, NULL, '1.0000', '5.6000', '5.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 (43369, '2021-12-18', 9275, 41329, 3111, NULL, '4.0000', '6.3000', '6.3000', '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 (43370, '2021-12-18', 7715, 41330, 3111, NULL, '1.0000', '1.8900', '1.8900', '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 (43371, '2021-12-18', 7817, 41331, 3111, NULL, '2.0000', '9.8000', '9.8000', '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 (43372, '2021-12-18', 9254, 41332, 3111, 43131, '1.0000', '20.0000', '20.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43373, '2021-12-18', 7491, 41333, 3111, 43071, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43374, '2021-12-18', 7411, 41334, 3111, NULL, '4.0000', '1.3500', '1.3500', '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 (43375, '2021-12-18', 7918, 41335, 3111, 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 (43376, '2021-12-18', 2315, 41336, 3111, NULL, '2.0000', '0.4740', '0.4740', '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 (43377, '2021-12-18', 8456, 41337, 3111, NULL, '1.0000', '5.5400', '5.5400', '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 (43378, '2021-12-18', 1810, 41338, 3111, NULL, '1.0000', '7.7967', '7.7967', '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 (43379, '2021-12-18', 7509, 41339, 3111, 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 (43380, '2021-12-18', 7420, 41340, 3111, 30166, '1.0000', '40.9116', '40.9116', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43381, '2021-12-18', 7822, 41341, 3111, NULL, '1.0000', '11.2000', '11.2000', '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 (43382, '2021-12-18', 9098, 41342, 3111, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43383, '2021-12-18', 8166, 41343, 3111, NULL, '1.0000', '4.6000', '4.6000', '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 (43384, '2021-12-18', 7967, 41344, 3111, 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 (43385, '2021-12-18', 9160, 41345, 3111, NULL, '1.0000', '41.6640', '41.6640', '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 (43386, '2021-12-18', 9143, 41346, 3111, 37848, '1.0000', '9.4967', '9.4967', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43387, '2021-12-18', 7317, 41347, 3111, NULL, '1.0000', '29.3700', '29.3700', '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 (43388, '2021-12-18', 7411, 41348, 3111, NULL, '3.0000', '1.3500', '1.3500', '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 (43389, '2021-12-18', 8463, 41349, 3111, NULL, '2.0000', '18.0000', '18.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 (43390, '2021-12-18', 7544, 41350, 3111, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (43391, '2021-12-18', 7711, 41351, 3111, NULL, '1.0000', '-78.4806', '-78.4806', '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 (43392, '2021-12-18', 8658, 41352, 3111, NULL, '1.0000', '17.1000', '17.1000', '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 (43393, '2021-12-18', 7657, 41353, 3111, NULL, '1.0000', '5.4700', '5.4700', '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 (43394, '2021-12-18', 2057, 41354, 3111, 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 (43395, '2021-12-18', 7588, 41355, 3111, NULL, '1.0000', '7.0762', '7.0762', '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 (43396, '2021-12-18', 9461, 41356, 3111, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43397, '2021-12-18', 1381, 41357, 3111, 36091, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43398, '2021-12-18', 9245, 41358, 3111, 30170, '1.0000', '6.6100', '6.6100', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43399, '2021-12-18', 7524, 41359, 3111, NULL, '1.0000', '103.0922', '103.0922', '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 (43400, '2021-12-18', 8720, 41360, 3111, NULL, '1.0000', '31.1100', '31.1100', '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 (43401, '2021-12-18', 8359, 41361, 3111, NULL, '1.0000', '27.0806', '27.0806', '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 (43402, '2021-12-18', 2315, 41362, 3111, NULL, '2.0000', '0.4740', '0.4740', '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 (43403, '2021-12-18', 7518, 41363, 3112, NULL, '2.0000', '-67.2578', '-67.2578', '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 (43404, '2021-12-18', 7509, 41364, 3112, 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 (43405, '2021-12-18', 7641, 41365, 3112, NULL, '1.0000', '-12.6777', '-12.6777', '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 (43406, '2021-12-18', 2545, 41366, 3112, NULL, '1.0000', '5.8800', '5.8800', '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 (43407, '2021-12-18', 9563, 41367, 3113, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '22.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43408, '2021-12-18', 9563, 41368, 3113, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '22.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43409, '2021-12-18', 9563, 41369, 3113, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '22.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43410, '2021-12-18', 1580, 41370, 3114, 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 (43411, '2021-12-18', 2251, 41371, 3114, 42067, '1.0000', '12.1904', '12.1904', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43412, '2021-12-18', 2227, 41372, 3114, 42635, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43413, '2021-12-18', 1312, 41373, 3114, 42534, '1.0000', '7.2295', '7.2295', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43414, '2021-12-18', 7756, 41374, 3114, NULL, '1.0000', '2.5000', '2.5000', '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 (43415, '2021-12-18', 8021, 41375, 3114, NULL, '1.0000', '13.0000', '13.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 (43416, '2021-12-18', 2730, 41376, 3114, 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 (43417, '2021-12-18', 9577, 41377, 3114, NULL, '2.0000', '0.3200', '0.3200', '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 (43418, '2021-12-18', 7411, 41378, 3114, NULL, '1.0000', '1.3500', '1.3500', '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 (43419, '2021-12-18', 2655, 41379, 3114, 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 (43420, '2021-12-18', 1618, 41380, 3114, NULL, '1.0000', '36.2513', '36.2513', '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 (43421, '2021-12-18', 2270, 41381, 3114, 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 (43422, '2021-12-18', 1670, 41382, 3114, 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 (43423, '2021-12-18', 9577, 41383, 3114, NULL, '2.0000', '0.3200', '0.3200', '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 (43424, '2021-12-18', 8903, 41384, 3114, NULL, '1.0000', '5.3700', '5.3700', '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 (43425, '2021-12-18', 1715, 41385, 3114, 42800, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43426, '2021-12-18', 2642, 41386, 3114, 42646, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43427, '2021-12-18', 2821, 41387, 3114, 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 (43428, '2021-12-18', 9577, 41388, 3114, NULL, '1.0000', '0.3200', '0.3200', '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 (43429, '2021-12-18', 1912, 41389, 3114, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43430, '2021-12-18', 1637, 41390, 3114, 42839, '1.0000', '-41.1667', '-41.1667', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43431, '2021-12-18', 7926, 41391, 3114, 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 (43432, '2021-12-18', 9577, 41392, 3114, NULL, '3.0000', '0.3200', '0.3200', '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 (43433, '2021-12-18', 7798, 41393, 3114, NULL, '1.0000', '4.6200', '4.6200', '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 (43434, '2021-12-18', 2068, 41394, 3114, 34034, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43435, '2021-12-18', 9604, 41395, 3114, NULL, '1.0000', '2.0000', '2.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 (43436, '2021-12-18', 9577, 41396, 3114, NULL, '2.0000', '0.3200', '0.3200', '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 (43437, '2021-12-18', 2231, 41397, 3114, NULL, '1.0000', '33.9999', '33.9999', '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 (43438, '2021-12-18', 7743, 41398, 3114, NULL, '2.0000', '7.3900', '7.3900', '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 (43439, '2021-12-18', 2712, 41399, 3114, 32557, '10.0000', '0.2600', '0.2600', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43440, '2021-12-18', 7640, 41400, 3114, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43441, '2021-12-18', 2384, 41401, 3114, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43442, '2021-12-18', 8444, 41402, 3114, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43443, '2021-12-18', 9556, 41403, 3114, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43444, '2021-12-18', 8074, 41404, 3114, NULL, '1.0000', '3.2800', '3.2800', '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 (43445, '2021-12-18', 1521, 41405, 3114, 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 (43446, '2021-12-18', 9577, 41406, 3114, NULL, '1.0000', '0.3200', '0.3200', '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 (43447, '2021-12-18', 8677, 41407, 3114, NULL, '2.0000', '89.9250', '89.9250', '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 (43448, '2021-12-18', 7411, 41408, 3114, NULL, '1.0000', '1.3500', '1.3500', '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 (43449, '2021-12-18', 1854, 41409, 3114, 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 (43450, '2021-12-18', 8359, 41410, 3114, NULL, '1.0000', '13.5000', '13.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 (43451, '2021-12-18', 1574, 41411, 3114, NULL, '1.0000', '1.7001', '1.7001', '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 (43452, '2021-12-18', 2169, 41412, 3114, NULL, '1.0000', '1.1500', '1.1500', '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 (43453, '2021-12-18', 2280, 41413, 3114, NULL, '1.0000', '-177.9360', '-177.9360', '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 (43454, '2021-12-18', 8622, 41414, 3114, 42570, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43455, '2021-12-18', 8208, 41415, 3114, NULL, '1.0000', '33.0000', '33.0000', '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 (43456, '2021-12-18', 2394, 41416, 3114, 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 (43457, '2021-12-18', 2289, 41417, 3114, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43458, '2021-12-18', 7328, 41418, 3114, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43459, '2021-12-18', 2749, 41419, 3114, NULL, '1.0000', '20.5000', '20.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 (43460, '2021-12-18', 1943, 41420, 3114, NULL, '1.0000', '5.7300', '5.7300', '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 (43461, '2021-12-18', 2280, 41421, 3114, NULL, '1.0000', '-177.9360', '-177.9360', '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 (43462, '2021-12-18', 3029, 41422, 3114, NULL, '1.0000', '4.7700', '4.7700', '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 (43463, '2021-12-18', 9021, 41423, 3114, 39827, '2.0000', '7.0000', '7.0000', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43464, '2021-12-18', 9092, 41424, 3114, NULL, '2.0000', '5.2900', '5.2900', '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 (43465, '2021-12-18', 9204, 41425, 3114, NULL, '1.0000', '8.1600', '8.1600', '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 (43466, '2021-12-18', 2360, 41426, 3114, NULL, '5.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (43467, '2021-12-18', 2655, 41427, 3114, 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 (43468, '2021-12-18', 7411, 41428, 3114, NULL, '1.0000', '1.3500', '1.3500', '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 (43469, '2021-12-18', 2057, 41429, 3114, 33373, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43470, '2021-12-18', 1501, 41430, 3114, NULL, '1.0000', '2.2100', '2.2100', '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 (43471, '2021-12-18', 7411, 41431, 3114, NULL, '1.0000', '1.3500', '1.3500', '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 (43472, '2021-12-18', 2916, 41432, 3114, 38542, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43473, '2021-12-18', 2287, 41433, 3114, 43279, '3.0000', '1.6790', '1.6790', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43474, '2021-12-18', 2280, 41434, 3114, NULL, '1.0000', '-177.9360', '-177.9360', '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 (43475, '2021-12-18', 9556, 41435, 3114, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43476, '2021-12-18', 2506, 41436, 3114, 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 (43477, '2021-12-18', 1647, 41437, 3114, 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 (43478, '2021-12-18', 2242, 41438, 3114, NULL, '2.0000', '0.5518', '0.5518', '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 (43479, '2021-12-18', 7558, 41439, 3114, 39820, '1.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43480, '2021-12-18', 2916, 41440, 3114, 38542, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43481, '2021-12-18', 1746, 41441, 3114, 19863, '1.0000', '3.5000', '3.5000', '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 (43482, '2021-12-18', 1429, 41442, 3114, 19834, '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 (43483, '2021-12-18', 2989, 41443, 3114, 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 (43484, '2021-12-18', 1647, 41444, 3114, 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 (43485, '2021-12-18', 7411, 41445, 3114, NULL, '1.0000', '1.3500', '1.3500', '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 (43486, '2021-12-18', 7447, 41446, 3114, NULL, '4.0000', '19.1100', '19.1100', '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 (43487, '2021-12-18', 1501, 41447, 3114, NULL, '2.0000', '2.2100', '2.2100', '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 (43488, '2021-12-18', 7411, 41448, 3114, NULL, '1.0000', '1.3500', '1.3500', '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 (43489, '2021-12-18', 1647, 41449, 3114, 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 (43490, '2021-12-18', 8228, 41450, 3114, 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 (43491, '2021-12-18', 2169, 41451, 3114, NULL, '1.0000', '1.1500', '1.1500', '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 (43492, '2021-12-18', 1375, 41452, 3114, 34919, '2.0000', '14.3000', '14.3000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43493, '2021-12-18', 9158, 41453, 3114, NULL, '1.0000', '5.8900', '5.8900', '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 (43494, '2021-12-18', 1401, 41454, 3114, 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 (43495, '2021-12-18', 2712, 41455, 3114, 32557, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43496, '2021-12-18', 2887, 41456, 3114, 42849, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43497, '2021-12-18', 8771, 41457, 3115, 39997, '1.0000', '3.4915', '3.4915', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43498, '2021-12-18', 2109, 41458, 3115, 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 (43499, '2021-12-18', 7447, 41459, 3115, NULL, '1.0000', '19.1100', '19.1100', '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 (43500, '2021-12-18', 7411, 41460, 3115, NULL, '1.0000', '1.3500', '1.3500', '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 (43501, '2021-12-18', 1337, 41461, 3115, 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 (43502, '2021-12-18', 7743, 41462, 3115, NULL, '1.0000', '7.3900', '7.3900', '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 (43503, '2021-12-18', 1340, 41463, 3115, 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 (43504, '2021-12-18', 7652, 41464, 3116, NULL, '2.0000', '40.3000', '40.3000', '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 (43505, '2021-12-18', 7411, 41465, 3116, NULL, '1.0000', '1.3500', '1.3500', '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 (43506, '2021-12-18', 2906, 41466, 3116, 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 (43507, '2021-12-18', 8215, 41467, 3116, NULL, '1.0000', '11.0000', '11.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 (43508, '2021-12-18', 8720, 41468, 3116, NULL, '1.0000', '31.1100', '31.1100', '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 (43509, '2021-12-18', 7715, 41469, 3116, NULL, '1.0000', '1.8900', '1.8900', '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 (43510, '2021-12-18', 1672, 41470, 3116, NULL, '10.0000', '2.9200', '2.9200', '4.0000', '4.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 (43511, '2021-12-18', 8970, 41471, 3116, NULL, '2.0000', '1.1400', '1.1400', '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 (43512, '2021-12-18', 7671, 41472, 3116, NULL, '1.0000', '15.5000', '15.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 (43513, '2021-12-18', 2315, 41473, 3116, NULL, '2.0000', '0.4740', '0.4740', '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 (43514, '2021-12-18', 9191, 41474, 3116, NULL, '2.0000', '6.6700', '6.6700', '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 (43515, '2021-12-18', 8720, 41475, 3116, NULL, '1.0000', '31.1100', '31.1100', '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 (43516, '2021-12-18', 2104, 41476, 3116, NULL, '4.0000', '0.2000', '0.2000', '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 (43517, '2021-12-18', 7671, 41477, 3116, NULL, '1.0000', '15.5000', '15.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 (43518, '2021-12-18', 7317, 41478, 3116, NULL, '1.0000', '29.3700', '29.3700', '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 (43519, '2021-12-18', 7848, 41479, 3116, NULL, '1.0000', '1.3500', '1.3500', '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 (43520, '2021-12-18', 7415, 41480, 3116, NULL, '1.0000', '5.4200', '5.4200', '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 (43521, '2021-12-18', 7411, 41481, 3116, NULL, '2.0000', '1.3500', '1.3500', '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 (43522, '2021-12-18', 7926, 41482, 3116, 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 (43523, '2021-12-18', 8596, 41483, 3116, NULL, '1.0000', '17.0000', '17.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 (43524, '2021-12-18', 7886, 41484, 3116, NULL, '1.0000', '2.8333', '2.8333', '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 (43525, '2021-12-18', 7892, 41485, 3116, NULL, '1.0000', '4.2000', '4.2000', '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 (43526, '2021-12-18', 8702, 41486, 3116, NULL, '1.0000', '3.6700', '3.6700', '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 (43527, '2021-12-18', 9667, 41487, 3116, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43528, '2021-12-18', 7712, 41488, 3116, NULL, '1.0000', '0.3300', '0.3300', '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 (43529, '2021-12-18', 7560, 41489, 3116, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (43530, '2021-12-18', 7522, 41490, 3116, NULL, '1.0000', '5.2000', '5.2000', '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 (43531, '2021-12-18', 7715, 41491, 3116, NULL, '1.0000', '1.8900', '1.8900', '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 (43532, '2021-12-18', 7411, 41492, 3116, NULL, '1.0000', '1.3500', '1.3500', '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 (43533, '2021-12-18', 9556, 41493, 3116, 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 (43534, '2021-12-18', 8904, 41494, 3116, 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 (43535, '2021-12-18', 9399, 41495, 3116, NULL, '1.0000', '0.4200', '0.4200', '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 (43536, '2021-12-18', 7674, 41496, 3116, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43537, '2021-12-18', 7743, 41497, 3116, NULL, '1.0000', '419203.7668', '419203.7668', '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 (43538, '2021-12-18', 7672, 41498, 3116, NULL, '1.0000', '1.0200', '1.0200', '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 (43539, '2021-12-18', 2315, 41499, 3116, NULL, '2.0000', '0.4740', '0.4740', '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 (43540, '2021-12-18', 7411, 41500, 3116, NULL, '2.0000', '1.3500', '1.3500', '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 (43541, '2021-12-18', 7781, 41501, 3116, NULL, '3.0000', '4.2500', '4.2500', '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 (43542, '2021-12-18', 2295, 41502, 3116, 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 (43543, '2021-12-18', 1947, 41503, 3116, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43544, '2021-12-18', 7743, 41504, 3117, NULL, '1.0000', '7.3900', '7.3900', '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 (43545, '2021-12-18', 2163, 41505, 3117, 42806, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43546, '2021-12-18', 7825, 41506, 3118, NULL, '1.0000', '6.5000', '6.5000', '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 (43547, '2021-12-18', 1837, 41507, 3119, 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 (43548, '2021-12-18', 1871, 41508, 3120, 43862, '20.0000', '20.0938', '20.0938', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43549, '2021-12-18', 7886, 41509, 3120, 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 (43550, '2021-12-18', 9577, 41510, 3120, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43551, '2021-12-18', 2221, 41511, 3120, 43852, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43552, '2021-12-18', 2403, 41512, 3120, 43041, '1.0000', '17.9929', '17.9929', '24.0900', '24.0900', '1.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43553, '2021-12-18', 2089, 41513, 3120, 24328, '1.0000', '7.0900', '7.0900', '9.0000', '9.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 (43554, '2021-12-18', 2698, 41514, 3120, 43834, '1.0000', '36.8600', '36.8600', '49.0000', '49.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43555, '2021-12-18', 9636, 41515, 3120, 41983, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43556, '2021-12-18', 1603, 41516, 3120, 16916, '1.0000', '56.0200', '56.0200', '78.5000', '78.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 (43557, '2021-12-18', 8063, 41517, 3120, NULL, '1.0000', '1.6000', '1.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 (43558, '2021-12-18', 1574, 41518, 3120, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.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 (43559, '2021-12-18', 8594, 41519, 3120, 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 (43560, '2021-12-18', 1910, 41520, 3120, 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 (43561, '2021-12-18', 1432, 41521, 3120, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43562, '2021-12-18', 8759, 41522, 3120, 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 (43563, '2021-12-18', 2088, 41523, 3120, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43564, '2021-12-18', 2695, 41524, 3120, 42961, '5.0000', '2.0000', '2.0000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43565, '2021-12-18', 7391, 41525, 3120, NULL, '1.0000', '-144.1150', '-144.1150', '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 (43566, '2021-12-18', 1706, 41526, 3120, NULL, '1.0000', '14.8866', '14.8866', '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 (43567, '2021-12-18', 2302, 41527, 3120, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43568, '2021-12-18', 1651, 41528, 3120, 43037, '1.0000', '6.8684', '6.8684', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43569, '2021-12-18', 2237, 41529, 3120, 40644, '5.0000', '1.3451', '1.3451', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43570, '2021-12-18', 2280, 41530, 3120, 40891, '4.0000', '2.3427', '2.3427', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43571, '2021-12-18', 2858, 41531, 3120, 17780, '2.0000', '1.0000', '1.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 (43572, '2021-12-18', 1888, 41532, 3120, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43573, '2021-12-18', 1668, 41533, 3120, 43881, '1.0000', '61.3964', '61.3964', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43574, '2021-12-18', 1371, 41534, 3120, 41971, '1.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43575, '2021-12-18', 7456, 41535, 3120, NULL, '1.0000', '1.3800', '1.3800', '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 (43576, '2021-12-18', 1338, 41536, 3120, 43888, '1.0000', '3.3760', '3.3760', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43577, '2021-12-18', 1908, 41537, 3120, 5510, '1.0000', '1.7500', '1.7500', '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 (43578, '2021-12-18', 9577, 41538, 3120, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43579, '2021-12-18', 1621, 41539, 3120, 43893, '1.0000', '44.3364', '44.3364', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43580, '2021-12-18', 1846, 41540, 3120, NULL, '1.0000', '31.0430', '31.0430', '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 (43581, '2021-12-18', 1534, 41541, 3120, 1667, '10.0000', '9.8500', '9.8500', '1.3000', '1.3000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43582, '2021-12-18', 2272, 41542, 3120, 32823, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43583, '2021-12-18', 1863, 41543, 3120, 43815, '2.0000', '1.1829', '1.1829', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43584, '2021-12-18', 9461, 41544, 3120, 40877, '1.0000', '1.5845', '1.5845', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43585, '2021-12-18', 7736, 41545, 3120, NULL, '1.0000', '15.0000', '15.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 (43586, '2021-12-18', 1608, 41546, 3120, NULL, '1.0000', '3.3500', '3.3500', '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 (43587, '2021-12-18', 2088, 41547, 3120, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43588, '2021-12-18', 7638, 41548, 3120, 43876, '1.0000', '5.3974', '5.3974', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43589, '2021-12-18', 1904, 41549, 3120, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43590, '2021-12-18', 2916, 41550, 3121, 34035, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43591, '2021-12-18', 9603, 41551, 3121, 43985, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43592, '2021-12-18', 8133, 41552, 3121, NULL, '1.0000', '-618.7699', '-618.7699', '10.5300', '10.5300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43593, '2021-12-18', 1501, 41553, 3121, NULL, '1.0000', '2.2100', '2.2100', '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 (43594, '2021-12-18', 9556, 41554, 3121, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43595, '2021-12-18', 1401, 41555, 3121, 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 (43596, '2021-12-19', 1666, 41556, 3122, 3236, '-14.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 (43597, '2021-12-19', 1666, 41556, 3122, NULL, '15.0000', '2.7100', '2.7100', '3.5000', '3.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 (43598, '2021-12-19', 9577, 41557, 3122, NULL, '2.0000', '0.3200', '0.3200', '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 (43599, '2021-12-19', 1455, 41558, 3122, 18913, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '94.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 (43600, '2021-12-19', 1867, 41559, 3122, NULL, '1.0000', '1.0500', '1.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 (43601, '2021-12-19', 1687, 41560, 3122, 5785, '-18.0000', '165.9024', '165.9024', '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 (43602, '2021-12-19', 1687, 41560, 3122, NULL, '19.0000', '165.9024', '165.9024', '16.0000', '16.0000', '-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 (43603, '2021-12-19', 8737, 41561, 3122, NULL, '1.0000', '9.8000', '9.8000', '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 (43604, '2021-12-19', 2105, 41562, 3122, 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 (43605, '2021-12-19', 7411, 41563, 3122, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43606, '2021-12-19', 2277, 41564, 3122, 2937, '-27.0000', '0.7800', '0.7800', '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 (43607, '2021-12-19', 2277, 41564, 3122, NULL, '29.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43608, '2021-12-19', 2829, 41565, 3122, 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 (43609, '2021-12-19', 7411, 41566, 3122, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43610, '2021-12-19', 2109, 41567, 3122, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '93.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 (43611, '2021-12-19', 2825, 41568, 3122, NULL, '2.0000', '12.0000', '12.0000', '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 (43612, '2021-12-19', 9520, 41569, 3122, 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 (43613, '2021-12-19', 1871, 41570, 3123, 469, '3.0000', '24.5246', '24.5246', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43614, '2021-12-19', 1871, 41570, 3123, NULL, '17.0000', '24.5246', '24.5246', '3.0000', '3.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 (43615, '2021-12-19', 2455, 41571, 3123, 5643, '-2.0000', '7.5300', '7.5300', '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 (43616, '2021-12-19', 2455, 41571, 3123, NULL, '3.0000', '7.5300', '7.5300', '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 (43617, '2021-12-19', 9629, 41572, 3123, NULL, '1.0000', '22.0000', '22.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 (43618, '2021-12-19', 9579, 41573, 3124, 44191, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43619, '2021-12-19', 1620, 41574, 3124, NULL, '12.0000', '97.9791', '97.9791', '4.0000', '4.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 (43620, '2021-12-19', 8097, 41575, 3124, 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 (43621, '2021-12-19', 7807, 41576, 3124, NULL, '2.0000', '12.0000', '12.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 (43622, '2021-12-19', 9272, 41577, 3124, NULL, '1.0000', '3.1000', '3.1000', '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 (43623, '2021-12-19', 9587, 41578, 3124, 44185, '2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43624, '2021-12-19', 7705, 41579, 3124, NULL, '1.0000', '5.9900', '5.9900', '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 (43625, '2021-12-19', 1557, 41580, 3124, NULL, '1.0000', '7.6000', '7.6000', '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 (43626, '2021-12-19', 8307, 41581, 3124, NULL, '1.0000', '14.5000', '14.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 (43627, '2021-12-19', 9166, 41582, 3124, NULL, '1.0000', '3.5000', '3.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 (43628, '2021-12-19', 1895, 41583, 3124, NULL, '1.0000', '7.0200', '7.0200', '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 (43629, '2021-12-19', 7674, 41584, 3124, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43630, '2021-12-19', 7703, 41585, 3124, NULL, '2.0000', '22.9900', '22.9900', '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 (43631, '2021-12-19', 7335, 41586, 3124, NULL, '1.0000', '10.4000', '10.4000', '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 (43632, '2021-12-19', 8172, 41587, 3124, NULL, '2.0000', '40.7000', '40.7000', '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 (43633, '2021-12-19', 7848, 41588, 3124, NULL, '1.0000', '1.3500', '1.3500', '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 (43634, '2021-12-19', 7509, 41589, 3124, NULL, '2.0000', '6.1333', '6.1333', '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 (43635, '2021-12-19', 1771, 41590, 3124, 39531, '1.0000', '11.9058', '11.9058', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43636, '2021-12-19', 7671, 41591, 3124, NULL, '1.0000', '15.5000', '15.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 (43637, '2021-12-19', 1647, 41592, 3124, 39567, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43638, '2021-12-19', 9329, 41593, 3124, NULL, '2.0000', '5.8000', '5.8000', '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 (43639, '2021-12-19', 7335, 41594, 3124, NULL, '1.0000', '10.4000', '10.4000', '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 (43640, '2021-12-19', 7411, 41595, 3124, NULL, '2.0000', '1.3500', '1.3500', '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 (43641, '2021-12-19', 1846, 41596, 3124, 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 (43642, '2021-12-19', 2506, 41597, 3124, 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 (43643, '2021-12-19', 1493, 41598, 3124, 36024, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43644, '2021-12-19', 7781, 41599, 3124, NULL, '3.0000', '4.2500', '4.2500', '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 (43645, '2021-12-19', 7715, 41600, 3124, NULL, '1.0000', '1.8900', '1.8900', '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 (43646, '2021-12-19', 1804, 41601, 3124, NULL, '1.0000', '4.2500', '4.2500', '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 (43647, '2021-12-19', 7518, 41602, 3124, NULL, '1.0000', '-67.2578', '-67.2578', '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 (43648, '2021-12-19', 7705, 41603, 3124, NULL, '1.0000', '5.9900', '5.9900', '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 (43649, '2021-12-19', 8188, 41604, 3124, NULL, '1.0000', '6.7000', '6.7000', '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 (43650, '2021-12-19', 7339, 41605, 3124, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (43651, '2021-12-19', 8061, 41606, 3124, NULL, '1.0000', '1.6000', '1.6000', '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 (43652, '2021-12-19', 9620, 41607, 3124, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43653, '2021-12-19', 8501, 41608, 3124, NULL, '1.0000', '47.0000', '47.0000', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43654, '2021-12-19', 9092, 41609, 3124, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '166.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43655, '2021-12-19', 2269, 41610, 3124, 37395, '1.0000', '4.1848', '4.1848', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43656, '2021-12-19', 7781, 41611, 3124, NULL, '3.0000', '4.2500', '4.2500', '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 (43657, '2021-12-19', 7672, 41612, 3124, NULL, '1.0000', '1.0200', '1.0200', '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 (43658, '2021-12-19', 7857, 41613, 3124, NULL, '1.0000', '14.5620', '14.5620', '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 (43659, '2021-12-19', 8918, 41614, 3124, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43660, '2021-12-19', 7548, 41615, 3124, NULL, '1.0000', '-10.4600', '-10.4600', '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 (43661, '2021-12-19', 7411, 41616, 3124, NULL, '2.0000', '1.3500', '1.3500', '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 (43662, '2021-12-19', 7787, 41617, 3124, NULL, '1.0000', '-9.9201', '-9.9201', '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 (43663, '2021-12-19', 8548, 41618, 3124, NULL, '1.0000', '12.0000', '12.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 (43664, '2021-12-19', 7671, 41619, 3124, NULL, '2.0000', '15.5000', '15.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 (43665, '2021-12-19', 8456, 41620, 3124, NULL, '1.0000', '5.5400', '5.5400', '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 (43666, '2021-12-19', 9556, 41621, 3124, 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 (43667, '2021-12-19', 8200, 41622, 3124, NULL, '1.0000', '629.5726', '629.5726', '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 (43668, '2021-12-19', 7514, 41623, 3124, NULL, '1.0000', '12.9983', '12.9983', '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 (43669, '2021-12-19', 7708, 41624, 3124, NULL, '1.0000', '6.1400', '6.1400', '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 (43670, '2021-12-19', 9092, 41625, 3124, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '167.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43671, '2021-12-19', 7460, 41626, 3124, NULL, '4.0000', '51.2000', '51.2000', '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 (43672, '2021-12-19', 1848, 41627, 3124, NULL, '10.0000', '0.4200', '0.4200', '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 (43673, '2021-12-19', 1848, 41628, 3124, NULL, '1.0000', '0.4200', '0.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 (43674, '2021-12-19', 7547, 41629, 3124, NULL, '10.0000', '0.0000', '0.0000', '0.5000', '0.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 (43675, '2021-12-19', 7411, 41630, 3124, NULL, '2.0000', '1.3500', '1.3500', '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 (43676, '2021-12-19', 7764, 41631, 3124, NULL, '1.0000', '12.0300', '12.0300', '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 (43677, '2021-12-19', 1904, 41632, 3124, 37842, '2.0000', '27.8194', '27.8194', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43678, '2021-12-19', 7611, 41633, 3124, NULL, '1.0000', '5.0485', '5.0485', '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 (43679, '2021-12-19', 1689, 41634, 3124, NULL, '1.0000', '12.3500', '12.3500', '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 (43680, '2021-12-19', 7558, 41635, 3124, NULL, '10.0000', '2.2000', '2.2000', '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 (43681, '2021-12-19', 7317, 41636, 3124, NULL, '1.0000', '29.3700', '29.3700', '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 (43682, '2021-12-19', 8667, 41637, 3124, NULL, '1.0000', '30.9800', '30.9800', '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 (43683, '2021-12-19', 7859, 41638, 3124, NULL, '1.0000', '3.6000', '3.6000', '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 (43684, '2021-12-19', 8134, 41639, 3124, NULL, '1.0000', '5.2600', '5.2600', '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 (43685, '2021-12-19', 7509, 41640, 3124, NULL, '2.0000', '6.1333', '6.1333', '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 (43686, '2021-12-19', 8456, 41641, 3124, NULL, '1.0000', '5.5400', '5.5400', '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 (43687, '2021-12-19', 7778, 41642, 3124, NULL, '1.0000', '13.0100', '13.0100', '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 (43688, '2021-12-19', 9240, 41643, 3124, NULL, '1.0000', '25.1200', '25.1200', '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 (43689, '2021-12-19', 7318, 41644, 3124, NULL, '1.0000', '17.2098', '17.2098', '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 (43690, '2021-12-19', 1816, 41645, 3124, 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 (43691, '2021-12-19', 7609, 41646, 3124, NULL, '1.0000', '4.3300', '4.3300', '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 (43692, '2021-12-19', 9332, 41647, 3124, NULL, '1.0000', '72.0000', '72.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 (43693, '2021-12-19', 7889, 41648, 3124, NULL, '1.0000', '-8.6571', '-8.6571', '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 (43694, '2021-12-19', 8924, 41649, 3124, NULL, '3.0000', '4.5000', '4.5000', '7.0000', '7.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 (43695, '2021-12-19', 7848, 41650, 3124, NULL, '1.0000', '1.3500', '1.3500', '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 (43696, '2021-12-19', 9089, 41651, 3124, 42765, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43697, '2021-12-19', 7640, 41652, 3124, NULL, '1.0000', '7.4344', '7.4344', '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 (43698, '2021-12-19', 7530, 41653, 3124, NULL, '1.0000', '6.2000', '6.2000', '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 (43699, '2021-12-19', 1760, 41654, 3124, 39629, '10.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43700, '2021-12-19', 7657, 41655, 3124, NULL, '1.0000', '5.4700', '5.4700', '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 (43701, '2021-12-19', 9578, 41656, 3124, 44190, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43702, '2021-12-19', 7531, 41657, 3124, NULL, '1.0000', '19.8275', '19.8275', '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 (43703, '2021-12-19', 7879, 41658, 3124, NULL, '10.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (43704, '2021-12-19', 7641, 41659, 3124, NULL, '1.0000', '-12.6777', '-12.6777', '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 (43705, '2021-12-19', 7473, 41660, 3124, NULL, '4.0000', '25.2998', '25.2998', '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 (43706, '2021-12-19', 8456, 41661, 3124, NULL, '1.0000', '5.5400', '5.5400', '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 (43707, '2021-12-19', 8918, 41662, 3124, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43708, '2021-12-19', 1916, 41663, 3124, 44048, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43709, '2021-12-19', 7671, 41664, 3124, NULL, '2.0000', '15.5000', '15.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 (43710, '2021-12-19', 1583, 41665, 3124, 43943, '1.0000', '5.8900', '5.8900', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43711, '2021-12-19', 2324, 41666, 3124, 44177, '1.0000', '12.0000', '12.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43712, '2021-12-19', 1337, 41667, 3124, 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 (43713, '2021-12-19', 8166, 41668, 3124, NULL, '1.0000', '4.6000', '4.6000', '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 (43714, '2021-12-19', 8763, 41669, 3124, 43939, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43715, '2021-12-19', 2602, 41670, 3124, 36668, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43716, '2021-12-19', 7641, 41671, 3124, NULL, '1.0000', '-12.6777', '-12.6777', '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 (43717, '2021-12-19', 8746, 41672, 3124, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43718, '2021-12-19', 7509, 41673, 3124, NULL, '1.0000', '6.1333', '6.1333', '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 (43719, '2021-12-19', 8858, 41674, 3124, NULL, '1.0000', '27.7076', '27.7076', '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 (43720, '2021-12-19', 7411, 41675, 3124, NULL, '1.0000', '1.3500', '1.3500', '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 (43721, '2021-12-19', 2642, 41676, 3124, NULL, '1.0000', '-13.8420', '-13.8420', '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 (43722, '2021-12-19', 7411, 41677, 3124, NULL, '1.0000', '1.3500', '1.3500', '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 (43723, '2021-12-19', 9337, 41678, 3124, NULL, '2.0000', '6.8067', '6.8067', '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 (43724, '2021-12-19', 7363, 41679, 3124, NULL, '1.0000', '26.0000', '26.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 (43725, '2021-12-19', 7821, 41680, 3124, NULL, '1.0000', '7.0000', '7.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 (43726, '2021-12-19', 7411, 41681, 3124, NULL, '1.0000', '1.3500', '1.3500', '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 (43727, '2021-12-19', 8548, 41682, 3124, NULL, '1.0000', '12.0000', '12.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 (43728, '2021-12-19', 9577, 41683, 3125, NULL, '2.0000', '0.3200', '0.3200', '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 (43729, '2021-12-19', 8033, 41684, 3125, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43730, '2021-12-19', 2916, 41685, 3125, 34035, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43731, '2021-12-19', 1330, 41686, 3125, 19334, '1.0000', '2.8000', '2.8000', '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 (43732, '2021-12-19', 2085, 41687, 3125, 43264, '3.0000', '3.1057', '3.1057', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43733, '2021-12-19', 1966, 41688, 3125, 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 (43734, '2021-12-19', 7642, 41689, 3125, NULL, '1.0000', '2.6900', '2.6900', '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 (43735, '2021-12-19', 2169, 41690, 3125, NULL, '1.0000', '1.1500', '1.1500', '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 (43736, '2021-12-19', 7359, 41691, 3125, NULL, '1.0000', '20.0000', '20.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 (43737, '2021-12-19', 1856, 41692, 3125, 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 (43738, '2021-12-19', 2280, 41693, 3125, NULL, '1.0000', '-177.9360', '-177.9360', '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 (43739, '2021-12-19', 2825, 41694, 3125, NULL, '1.0000', '12.0000', '12.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 (43740, '2021-12-19', 2169, 41695, 3125, NULL, '1.0000', '1.1500', '1.1500', '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 (43741, '2021-12-19', 9699, 41696, 3125, 44151, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43742, '2021-12-19', 2169, 41697, 3125, NULL, '1.0000', '1.1500', '1.1500', '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 (43743, '2021-12-19', 1912, 41698, 3125, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43744, '2021-12-19', 7473, 41699, 3125, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '75.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43745, '2021-12-19', 2237, 41700, 3125, NULL, '1.0000', '-329.8285', '-329.8285', '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 (43746, '2021-12-19', 1574, 41701, 3125, NULL, '1.0000', '1.7001', '1.7001', '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 (43747, '2021-12-19', 7411, 41702, 3125, NULL, '1.0000', '1.3500', '1.3500', '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 (43748, '2021-12-19', 9562, 41703, 3125, 42659, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43749, '2021-12-19', 2916, 41704, 3125, 34035, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43750, '2021-12-19', 2167, 41705, 3125, 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 (43751, '2021-12-19', 9092, 41706, 3125, NULL, '1.0000', '5.2900', '5.2900', '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 (43752, '2021-12-19', 2287, 41707, 3125, 43279, '4.0000', '1.6790', '1.6790', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43753, '2021-12-19', 2068, 41708, 3125, 34034, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43754, '2021-12-19', 7514, 41709, 3125, NULL, '1.0000', '2.2500', '2.2500', '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 (43755, '2021-12-19', 2169, 41710, 3125, NULL, '1.0000', '1.1500', '1.1500', '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 (43756, '2021-12-19', 2283, 41711, 3125, 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 (43757, '2021-12-19', 7911, 41712, 3125, NULL, '1.0000', '4.3700', '4.3700', '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 (43758, '2021-12-19', 7411, 41713, 3125, NULL, '1.0000', '1.3500', '1.3500', '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 (43759, '2021-12-19', 3054, 41714, 3125, 43224, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43760, '2021-12-19', 1867, 41715, 3125, 30694, '1.0000', '7.1662', '7.1662', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43761, '2021-12-19', 9470, 41716, 3125, 39993, '2.0000', '9.7867', '9.7867', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43762, '2021-12-19', 7482, 41717, 3125, 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 (43763, '2021-12-19', 1487, 41718, 3125, NULL, '1.0000', '-37.3500', '-37.3500', '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 (43764, '2021-12-19', 7411, 41719, 3125, NULL, '2.0000', '1.3500', '1.3500', '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 (43765, '2021-12-19', 9577, 41720, 3125, NULL, '2.0000', '0.3200', '0.3200', '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 (43766, '2021-12-19', 1831, 41721, 3125, NULL, '1.0000', '16.2420', '16.2420', '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 (43767, '2021-12-19', 2020, 41722, 3125, NULL, '2.0000', '9.2832', '9.2832', '9.5000', '9.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 (43768, '2021-12-19', 7630, 41723, 3125, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (43769, '2021-12-19', 2451, 41724, 3125, NULL, '1.0000', '8.8000', '8.8000', '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 (43770, '2021-12-19', 7411, 41725, 3125, NULL, '1.0000', '1.3500', '1.3500', '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 (43771, '2021-12-19', 2821, 41726, 3125, 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 (43772, '2021-12-19', 7762, 41727, 3125, NULL, '1.0000', '5.1000', '5.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 (43773, '2021-12-19', 2169, 41728, 3125, NULL, '1.0000', '1.1500', '1.1500', '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 (43774, '2021-12-19', 1574, 41729, 3125, NULL, '1.0000', '1.7001', '1.7001', '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 (43775, '2021-12-19', 9577, 41730, 3125, NULL, '1.0000', '0.3200', '0.3200', '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 (43776, '2021-12-19', 1625, 41731, 3125, 19332, '2.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 (43777, '2021-12-19', 1651, 41732, 3125, 44058, '1.0000', '5.0422', '5.0422', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43778, '2021-12-19', 7911, 41733, 3125, NULL, '1.0000', '4.3700', '4.3700', '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 (43779, '2021-12-19', 2003, 41734, 3125, 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 (43780, '2021-12-19', 1349, 41735, 3125, 44062, '1.0000', '35.0700', '35.0700', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43781, '2021-12-19', 1519, 41736, 3125, NULL, '1.0000', '3.3980', '3.3980', '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 (43782, '2021-12-19', 2916, 41737, 3125, 34035, '1.0000', '14.8227', '14.8227', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43783, '2021-12-19', 8638, 41738, 3125, NULL, '2.0000', '0.5100', '0.5100', '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 (43784, '2021-12-19', 3054, 41739, 3125, 43224, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43785, '2021-12-19', 8177, 41740, 3125, 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 (43786, '2021-12-19', 7819, 41741, 3125, NULL, '1.0000', '9.5000', '9.5000', '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 (43787, '2021-12-19', 1621, 41742, 3125, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '49.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43788, '2021-12-19', 2717, 41743, 3125, NULL, '1.0000', '14.0000', '14.0000', '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 (43789, '2021-12-19', 2061, 41744, 3125, NULL, '1.0000', '10.6800', '10.6800', '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 (43790, '2021-12-19', 1884, 41745, 3125, NULL, '1.0000', '4.8050', '4.8050', '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 (43791, '2021-12-19', 2143, 41746, 3125, 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 (43792, '2021-12-19', 7728, 41747, 3125, 44149, '3.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43793, '2021-12-19', 7411, 41748, 3125, NULL, '1.0000', '1.3500', '1.3500', '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 (43794, '2021-12-19', 2908, 41749, 3125, 24963, '6.0000', '0.2700', '0.2700', '0.5000', '0.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 (43795, '2021-12-19', 7411, 41750, 3125, NULL, '1.0000', '1.3500', '1.3500', '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 (43796, '2021-12-19', 1519, 41751, 3125, NULL, '1.0000', '3.3980', '3.3980', '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 (43797, '2021-12-19', 2022, 41752, 3125, 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 (43798, '2021-12-19', 9092, 41753, 3125, NULL, '1.0000', '5.2900', '5.2900', '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 (43799, '2021-12-19', 7514, 41754, 3125, NULL, '1.0000', '2.2500', '2.2500', '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 (43800, '2021-12-19', 2057, 41755, 3125, 33373, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43801, '2021-12-19', 7859, 41756, 3125, NULL, '1.0000', '3.6000', '3.6000', '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 (43802, '2021-12-19', 8328, 41757, 3125, NULL, '1.0000', '8.1000', '8.1000', '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 (43803, '2021-12-19', 7411, 41758, 3125, NULL, '1.0000', '1.3500', '1.3500', '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 (43804, '2021-12-19', 1751, 41759, 3125, NULL, '1.0000', '3.6900', '3.6900', '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 (43805, '2021-12-19', 1574, 41760, 3125, NULL, '1.0000', '1.7001', '1.7001', '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 (43806, '2021-12-19', 1604, 41761, 3125, NULL, '2.0000', '70.6900', '70.6900', '51.5000', '51.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 (43807, '2021-12-19', 7400, 41762, 3125, 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 (43808, '2021-12-19', 9092, 41763, 3125, NULL, '2.0000', '5.2900', '5.2900', '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 (43809, '2021-12-19', 1884, 41764, 3125, NULL, '1.0000', '4.8050', '4.8050', '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 (43810, '2021-12-19', 1574, 41765, 3125, NULL, '1.0000', '1.7001', '1.7001', '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 (43811, '2021-12-19', 7564, 41766, 3125, NULL, '1.0000', '0.6400', '0.6400', '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 (43812, '2021-12-19', 1647, 41767, 3125, 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 (43813, '2021-12-19', 7741, 41768, 3125, NULL, '1.0000', '1.2000', '1.2000', '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 (43814, '2021-12-19', 2280, 41769, 3125, NULL, '1.0000', '-177.9360', '-177.9360', '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 (43815, '2021-12-19', 7762, 41770, 3125, NULL, '1.0000', '5.1000', '5.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 (43816, '2021-12-19', 7333, 41771, 3125, NULL, '2.0000', '13.5000', '13.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 (43817, '2021-12-19', 2003, 41772, 3125, 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 (43818, '2021-12-19', 1651, 41773, 3125, 44058, '2.0000', '5.0422', '5.0422', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43819, '2021-12-19', 8638, 41774, 3125, NULL, '1.0000', '0.5100', '0.5100', '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 (43820, '2021-12-19', 2022, 41775, 3125, 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 (43821, '2021-12-19', 7913, 41776, 3125, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (43822, '2021-12-19', 8677, 41777, 3125, NULL, '3.0000', '89.9250', '89.9250', '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 (43823, '2021-12-19', 7482, 41778, 3125, 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 (43824, '2021-12-19', 1935, 41779, 3125, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43825, '2021-12-19', 2068, 41780, 3125, 34034, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43826, '2021-12-19', 7834, 41781, 3125, NULL, '2.0000', '13.0000', '13.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 (43827, '2021-12-19', 1855, 41782, 3125, NULL, '2.0000', '1.4000', '1.4000', '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 (43828, '2021-12-19', 2093, 41783, 3125, NULL, '1.0000', '2.5500', '2.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 (43829, '2021-12-19', 1819, 41784, 3125, 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 (43830, '2021-12-19', 2699, 41785, 3125, 43997, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43831, '2021-12-19', 2263, 41786, 3125, 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 (43832, '2021-12-19', 9578, 41787, 3125, 42661, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43833, '2021-12-19', 7911, 41788, 3125, NULL, '1.0000', '4.3700', '4.3700', '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 (43834, '2021-12-19', 1574, 41789, 3125, NULL, '3.0000', '1.7001', '1.7001', '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 (43835, '2021-12-19', 9556, 41790, 3125, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43836, '2021-12-19', 9577, 41791, 3125, NULL, '2.0000', '0.3200', '0.3200', '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 (43837, '2021-12-19', 1668, 41792, 3125, 42095, '1.0000', '44.2080', '44.2080', '18.0000', '18.0000', '23.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43838, '2021-12-19', 2289, 41793, 3125, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43839, '2021-12-19', 1435, 41794, 3125, NULL, '1.0000', '22.5000', '22.5000', '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 (43840, '2021-12-19', 1595, 41795, 3125, 42820, '1.0000', '20.4928', '20.4928', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43841, '2021-12-19', 1574, 41796, 3125, NULL, '1.0000', '1.7001', '1.7001', '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 (43842, '2021-12-19', 2821, 41797, 3125, 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 (43843, '2021-12-19', 2003, 41798, 3125, 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 (43844, '2021-12-19', 2381, 41799, 3125, 44065, '1.0000', '11.7169', '11.7169', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43845, '2021-12-19', 1700, 41800, 3125, 42550, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43846, '2021-12-19', 1501, 41801, 3125, NULL, '1.0000', '2.2100', '2.2100', '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 (43847, '2021-12-19', 8000, 41802, 3126, NULL, '1.0000', '74.7436', '74.7436', '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 (43848, '2021-12-19', 7833, 41803, 3126, NULL, '1.0000', '14.0000', '14.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43849, '2021-12-19', 8957, 41804, 3126, NULL, '1.0000', '13.5000', '13.5000', '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 (43850, '2021-12-19', 9456, 41805, 3126, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43851, '2021-12-19', 7707, 41806, 3126, NULL, '1.0000', '6.0012', '6.0012', '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 (43852, '2021-12-19', 8166, 41807, 3126, NULL, '2.0000', '4.6000', '4.6000', '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 (43853, '2021-12-19', 7666, 41808, 3126, NULL, '1.0000', '0.4000', '0.4000', '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 (43854, '2021-12-19', 2315, 41809, 3126, NULL, '1.0000', '0.4740', '0.4740', '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 (43855, '2021-12-19', 7709, 41810, 3126, NULL, '1.0000', '35.8000', '35.8000', '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 (43856, '2021-12-19', 7671, 41811, 3126, NULL, '1.0000', '15.5000', '15.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 (43857, '2021-12-19', 7518, 41812, 3126, NULL, '1.0000', '-67.2578', '-67.2578', '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 (43858, '2021-12-19', 7719, 41813, 3126, NULL, '1.0000', '6.3333', '6.3333', '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 (43859, '2021-12-19', 7711, 41814, 3126, NULL, '1.0000', '-78.4806', '-78.4806', '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 (43860, '2021-12-19', 9470, 41815, 3127, NULL, '1.0000', '9.7700', '9.7700', '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 (43861, '2021-12-19', 1411, 41816, 3127, NULL, '1.0000', '25.9000', '25.9000', '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 (43862, '2021-12-19', 2829, 41817, 3127, 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 (43863, '2021-12-19', 2136, 41818, 3127, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '75.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 (43864, '2021-12-19', 1772, 41819, 3127, 4893, '-9.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 (43865, '2021-12-19', 1772, 41819, 3127, NULL, '10.0000', '6.0500', '6.0500', '8.0000', '8.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 (43866, '2021-12-19', 1386, 41820, 3127, 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 (43867, '2021-12-19', 1342, 41821, 3127, 11264, '-5.0000', '6.8074', '6.8074', '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 (43868, '2021-12-19', 1342, 41821, 3127, NULL, '6.0000', '6.8074', '6.8074', '7.5000', '7.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 (43869, '2021-12-19', 1502, 41822, 3127, 18925, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '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 (43870, '2021-12-19', 2400, 41823, 3127, 22357, '1.0000', '12.5000', '12.5000', '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 (43871, '2021-12-19', 2221, 41824, 3127, 4154, '-31.0000', '14.4737', '14.4737', '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 (43872, '2021-12-19', 2221, 41824, 3127, NULL, '32.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43873, '2021-12-19', 2352, 41825, 3127, 3855, '-50.0000', '20.0000', '20.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 (43874, '2021-12-19', 2352, 41825, 3127, NULL, '60.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43875, '2021-12-19', 2167, 41826, 3127, 17165, '-29.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 (43876, '2021-12-19', 2167, 41826, 3127, NULL, '30.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (43877, '2021-12-19', 1912, 41827, 3127, 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 (43878, '2021-12-19', 1813, 41828, 3127, 12527, '-2.0000', '28.2400', '28.2400', '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 (43879, '2021-12-19', 1813, 41828, 3127, NULL, '3.0000', '28.2400', '28.2400', '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 (43880, '2021-12-19', 2608, 41829, 3127, NULL, '1.0000', '83.3300', '83.3300', '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 (43881, '2021-12-19', 3017, 41830, 3127, NULL, '1.0000', '3.9000', '3.9000', '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 (43882, '2021-12-19', 1904, 41831, 3127, 5442, '-21.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 (43883, '2021-12-19', 1904, 41831, 3127, NULL, '22.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43884, '2021-12-19', 1602, 41832, 3127, 5897, '-66.0000', '6.7859', '6.7859', '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 (43885, '2021-12-19', 1602, 41832, 3127, NULL, '67.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43886, '2021-12-19', 1340, 41833, 3127, 236, '1.0000', '2.7025', '2.7025', '3.5000', '3.5000', '0.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 (43887, '2021-12-19', 2109, 41834, 3127, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '92.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 (43888, '2021-12-19', 7411, 41835, 3127, 33804, '5.0000', '1.3500', '1.3500', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43889, '2021-12-19', 2858, 41836, 3127, 17772, '-25.0000', '1.0000', '1.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 (43890, '2021-12-19', 2858, 41836, 3127, NULL, '26.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (43891, '2021-12-19', 1584, 41837, 3127, 7601, '-17.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 (43892, '2021-12-19', 1584, 41837, 3127, NULL, '20.0000', '90.0000', '90.0000', '8.0000', '8.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 (43893, '2021-12-19', 1625, 41838, 3127, NULL, '2.0000', '16.6997', '16.6997', '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 (43894, '2021-12-19', 2272, 41839, 3127, 2932, '-14.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 (43895, '2021-12-19', 2272, 41839, 3127, NULL, '15.0000', '5.5000', '5.5000', '7.5000', '7.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 (43896, '2021-12-19', 7411, 41840, 3127, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43897, '2021-12-19', 1646, 41841, 3127, 3239, '-11.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 (43898, '2021-12-19', 1646, 41841, 3127, NULL, '12.0000', '4.5300', '4.5300', '7.5000', '7.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 (43899, '2021-12-19', 7411, 41842, 3127, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43900, '2021-12-19', 2169, 41843, 3127, NULL, '1.0000', '3.8397', '3.8397', '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 (43901, '2021-12-19', 1706, 41844, 3127, 19677, '-4.0000', '15.2700', '15.2700', '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 (43902, '2021-12-19', 1706, 41844, 3127, NULL, '5.0000', '15.2700', '15.2700', '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 (43903, '2021-12-19', 2285, 41845, 3127, 2945, '-24.0000', '35.8000', '35.8000', '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 (43904, '2021-12-19', 2285, 41845, 3127, NULL, '25.0000', '35.8000', '35.8000', '49.0000', '49.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 (43905, '2021-12-19', 2491, 41846, 3127, 6228, '-18.0000', '12.2000', '12.2000', '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 (43906, '2021-12-19', 2491, 41846, 3127, NULL, '19.0000', '12.2000', '12.2000', '17.0000', '17.0000', '-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 (43907, '2021-12-19', 1303, 41847, 3127, 32, '1.0000', '54.5520', '54.5520', '4.0000', '4.0000', '89.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 (43908, '2021-12-19', 1346, 41848, 3127, 21942, '-34.0000', '1.0594', '1.0594', '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 (43909, '2021-12-19', 1346, 41848, 3127, NULL, '39.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43910, '2021-12-19', 1641, 41849, 3127, 3214, '-148.0000', '0.9800', '0.9800', '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 (43911, '2021-12-19', 1641, 41849, 3127, NULL, '155.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43912, '2021-12-19', 1904, 41850, 3127, 5442, '-21.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 (43913, '2021-12-19', 1904, 41850, 3127, NULL, '22.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43914, '2021-12-19', 7411, 41851, 3127, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43915, '2021-12-19', 2362, 41852, 3127, 3864, '-40.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 (43916, '2021-12-19', 2362, 41852, 3127, NULL, '54.0000', '8.8300', '8.8300', '12.0000', '12.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43917, '2021-12-19', 7630, 41853, 3127, NULL, '3.0000', '10.0000', '10.0000', '3.2000', '3.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 (43918, '2021-12-19', 2384, 41854, 3127, 12014, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '72.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 (43919, '2021-12-19', 7550, 41855, 3127, NULL, '30.0000', '4.7300', '4.7300', '0.5000', '0.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 (43920, '2021-12-19', 1602, 41856, 3127, 5897, '-66.0000', '6.7859', '6.7859', '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 (43921, '2021-12-19', 1602, 41856, 3127, NULL, '67.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43922, '2021-12-19', 9634, 41857, 3127, 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 (43923, '2021-12-19', 2401, 41858, 3127, NULL, '1.0000', '2.8000', '2.8000', '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 (43924, '2021-12-19', 1401, 41859, 3127, 20651, '1.0000', '3.0000', '3.0000', '4.0000', '4.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 (43925, '2021-12-19', 8878, 41860, 3127, NULL, '1.0000', '6.6700', '6.6700', '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 (43926, '2021-12-19', 1574, 41861, 3127, 7593, '-38.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 (43927, '2021-12-19', 1574, 41861, 3127, NULL, '39.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43928, '2021-12-19', 2237, 41862, 3127, 2781, '-26.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 (43929, '2021-12-19', 2237, 41862, 3127, NULL, '27.0000', '1.0600', '1.0600', '2.0000', '2.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 (43930, '2021-12-19', 2271, 41863, 3127, 18830, '1.0000', '12.0000', '12.0000', '16.5000', '16.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 (43931, '2021-12-19', 1935, 41864, 3127, 5586, '-46.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 (43932, '2021-12-19', 1935, 41864, 3127, NULL, '47.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (43933, '2021-12-19', 1666, 41865, 3127, 3236, '-15.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 (43934, '2021-12-19', 1666, 41865, 3127, NULL, '17.0000', '2.7100', '2.7100', '3.5000', '3.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 (43935, '2021-12-19', 2893, 41866, 3127, 18242, '-4.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 (43936, '2021-12-19', 2893, 41866, 3127, NULL, '5.0000', '6.0000', '6.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 (43937, '2021-12-19', 9577, 41867, 3127, NULL, '2.0000', '0.3200', '0.3200', '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 (43938, '2021-12-19', 2660, 41868, 3127, 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 (43939, '2021-12-19', 2169, 41869, 3127, NULL, '1.0000', '3.8397', '3.8397', '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 (43940, '2021-12-19', 1416, 41870, 3127, NULL, '1.0000', '50.0000', '50.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 (43941, '2021-12-19', 1871, 41871, 3127, 8223, '-17.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 (43942, '2021-12-19', 1871, 41871, 3127, NULL, '27.0000', '24.5246', '24.5246', '3.0000', '3.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 (43943, '2021-12-19', 1602, 41872, 3127, 5897, '-66.0000', '6.7859', '6.7859', '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 (43944, '2021-12-19', 1602, 41872, 3127, NULL, '67.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43945, '2021-12-19', 2320, 41873, 3127, 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 (43946, '2021-12-19', 2328, 41874, 3127, NULL, '1.0000', '64.2000', '64.2000', '85.0000', '85.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43947, '2021-12-19', 2307, 41875, 3127, 2960, '1.0000', '118.9901', '118.9901', '161.0000', '161.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43948, '2021-12-19', 2221, 41876, 3127, 4154, '-31.0000', '14.4737', '14.4737', '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 (43949, '2021-12-19', 2221, 41876, 3127, NULL, '32.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43950, '2021-12-19', 1574, 41877, 3127, 7593, '-38.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 (43951, '2021-12-19', 1574, 41877, 3127, NULL, '41.0000', '1.9600', '1.9600', '2.5000', '2.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 (43952, '2021-12-19', 2699, 41878, 3127, 12529, '-26.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 (43953, '2021-12-19', 2699, 41878, 3127, NULL, '27.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-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 (43954, '2021-12-19', 1967, 41879, 3127, 4690, '1.0000', '19.5900', '19.5900', '28.0000', '28.0000', '0.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 (43955, '2021-12-19', 1755, 41880, 3127, 3165, '-1.0000', '5.5900', '5.5900', '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 (43956, '2021-12-19', 1755, 41880, 3127, NULL, '2.0000', '5.5900', '5.5900', '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 (43957, '2021-12-19', 2233, 41881, 3127, 2777, '-18.0000', '19.0200', '19.0200', '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 (43958, '2021-12-19', 2233, 41881, 3127, NULL, '19.0000', '19.0200', '19.0200', '29.0000', '29.0000', '-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 (43959, '2021-12-19', 1805, 41882, 3127, 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 (43960, '2021-12-19', 2574, 41883, 3127, 7383, '-7.0000', '0.7800', '0.7800', '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 (43961, '2021-12-19', 2574, 41883, 3127, NULL, '17.0000', '0.7800', '0.7800', '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 (43962, '2021-12-19', 1533, 41884, 3127, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '5.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 (43963, '2021-12-19', 2003, 41885, 3127, 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 (43964, '2021-12-19', 2352, 41886, 3127, 3855, '-50.0000', '20.0000', '20.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 (43965, '2021-12-19', 2352, 41886, 3127, NULL, '55.0000', '20.0000', '20.0000', '3.5000', '3.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 (43966, '2021-12-19', 2695, 41887, 3127, 12336, '-11.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 (43967, '2021-12-19', 2695, 41887, 3127, NULL, '13.0000', '2.0000', '2.0000', '3.0000', '3.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 (43968, '2021-12-19', 1432, 41888, 3127, 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 (43969, '2021-12-19', 1425, 41889, 3127, 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 (43970, '2021-12-19', 2280, 41890, 3127, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '26.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43971, '2021-12-19', 1580, 41891, 3127, 7598, '-23.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 (43972, '2021-12-19', 1580, 41891, 3127, NULL, '25.0000', '0.9900', '0.9900', '1.5000', '1.5000', '-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 (43973, '2021-12-19', 9688, 41892, 3127, NULL, '1.0000', '3.4000', '3.4000', '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 (43974, '2021-12-19', 2360, 41893, 3127, 3862, '-49.0000', '0.5200', '0.5200', '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 (43975, '2021-12-19', 2360, 41893, 3127, NULL, '50.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43976, '2021-12-19', 2169, 41894, 3127, NULL, '1.0000', '3.8397', '3.8397', '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 (43977, '2021-12-19', 1696, 41895, 3127, 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 (43978, '2021-12-19', 1602, 41896, 3127, 5897, '-66.0000', '6.7859', '6.7859', '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 (43979, '2021-12-19', 1602, 41896, 3127, NULL, '67.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43980, '2021-12-19', 2285, 41897, 3127, 2945, '-24.0000', '35.8000', '35.8000', '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 (43981, '2021-12-19', 2285, 41897, 3127, NULL, '25.0000', '35.8000', '35.8000', '49.0000', '49.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 (43982, '2021-12-19', 2169, 41898, 3127, NULL, '1.0000', '3.8397', '3.8397', '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 (43983, '2021-12-19', 2592, 41899, 3127, 10812, '-13.0000', '7.9670', '7.9670', '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 (43984, '2021-12-19', 2592, 41899, 3127, NULL, '15.0000', '7.9670', '7.9670', '10.5000', '10.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 (43985, '2021-12-19', 1846, 41900, 3127, 12032, '-10.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 (43986, '2021-12-19', 1846, 41900, 3127, NULL, '11.0000', '12.0000', '12.0000', '16.0000', '16.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 (43987, '2021-12-19', 2342, 41901, 3128, 3845, '-49.0000', '1.8600', '1.8600', '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 (43988, '2021-12-19', 2342, 41901, 3128, NULL, '59.0000', '1.8600', '1.8600', '2.6000', '2.6000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43989, '2021-12-19', 1328, 41902, 3128, NULL, '1.0000', '3.1500', '3.1500', '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 (43990, '2021-12-19', 1831, 41903, 3128, NULL, '1.0000', '8.4400', '8.4400', '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 (43991, '2021-12-19', 1328, 41904, 3129, NULL, '1.0000', '3.1500', '3.1500', '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 (43992, '2021-12-19', 7880, 41905, 3130, NULL, '1.0000', '1.0000', '1.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 (43993, '2021-12-19', 8133, 41906, 3130, NULL, '1.0000', '-618.7699', '-618.7699', '10.5300', '10.5300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43994, '2021-12-19', 1916, 41907, 3130, 34640, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43995, '2021-12-19', 9556, 41908, 3130, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43996, '2021-12-19', 1501, 41909, 3130, NULL, '1.0000', '2.2100', '2.2100', '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 (43997, '2021-12-19', 2989, 41910, 3130, 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 (43998, '2021-12-19', 1310, 41911, 3130, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (43999, '2021-12-19', 1425, 41912, 3130, 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 (44000, '2021-12-19', 1637, 41913, 3131, 3210, '-4.0000', '10.2000', '10.2000', '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 (44001, '2021-12-19', 1637, 41913, 3131, NULL, '5.0000', '10.2000', '10.2000', '15.0000', '15.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 (44002, '2021-12-19', 2237, 41914, 3131, 2781, '-27.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 (44003, '2021-12-19', 2237, 41914, 3131, NULL, '28.0000', '1.0600', '1.0600', '2.0000', '2.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 (44004, '2021-12-19', 2698, 41915, 3132, NULL, '1.0000', '36.8600', '36.8600', '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 (44005, '2021-12-19', 2280, 41916, 3132, 33794, '2.0000', '3.0700', '3.0700', '4.5000', '4.5000', '24.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44006, '2021-12-19', 7743, 41917, 3133, NULL, '1.0000', '7.3900', '7.3900', '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 (44007, '2021-12-19', 1337, 41918, 3133, 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 (44008, '2021-12-20', 9560, 41919, 3134, 40407, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44009, '2021-12-20', 2623, 41920, 3135, NULL, '1.0000', '4.3000', '4.3000', '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 (44010, '2021-12-20', 7848, 41921, 3136, NULL, '1.0000', '1.3500', '1.3500', '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 (44011, '2021-12-20', 2255, 41922, 3137, NULL, '1.0000', '17.4900', '17.4900', '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 (44012, '2021-12-20', 7324, 41923, 3137, 37423, '3.0000', '32.2000', '32.2000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44013, '2021-12-20', 7848, 41924, 3137, NULL, '1.0000', '1.3500', '1.3500', '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 (44014, '2021-12-20', 7695, 41925, 3137, NULL, '1.0000', '3.9400', '3.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 (44015, '2021-12-20', 2411, 41926, 3137, 43089, '1.0000', '68.8404', '68.8404', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44016, '2021-12-20', 7758, 41927, 3137, 43103, '1.0000', '-45.9138', '-45.9138', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44017, '2021-12-20', 9274, 41928, 3137, NULL, '1.0000', '3.1000', '3.1000', '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 (44018, '2021-12-20', 7583, 41929, 3137, NULL, '1.0000', '4.0000', '4.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 (44019, '2021-12-20', 1764, 41930, 3137, 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 (44020, '2021-12-20', 2637, 41931, 3137, NULL, '1.0000', '10.0000', '10.0000', '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 (44021, '2021-12-20', 2256, 41932, 3137, 42401, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44022, '2021-12-20', 1837, 41933, 3137, 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 (44023, '2021-12-20', 1772, 41934, 3137, 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 (44024, '2021-12-20', 7509, 41935, 3137, NULL, '1.0000', '6.1333', '6.1333', '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 (44025, '2021-12-20', 8924, 41936, 3137, NULL, '2.0000', '4.5000', '4.5000', '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 (44026, '2021-12-20', 2233, 41937, 3137, 37368, '1.0000', '8.2124', '8.2124', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44027, '2021-12-20', 1904, 41938, 3137, 37842, '2.0000', '27.8194', '27.8194', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44028, '2021-12-20', 1944, 41939, 3137, 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 (44029, '2021-12-20', 7411, 41940, 3137, NULL, '1.0000', '1.3500', '1.3500', '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 (44030, '2021-12-20', 8444, 41941, 3137, NULL, '1.0000', '26.0000', '26.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 (44031, '2021-12-20', 3071, 41942, 3137, 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 (44032, '2021-12-20', 7379, 41943, 3137, NULL, '1.0000', '12.5100', '12.5100', '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 (44033, '2021-12-20', 2642, 41944, 3137, NULL, '1.0000', '-14.8354', '-14.8354', '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 (44034, '2021-12-20', 8751, 41945, 3137, 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 (44035, '2021-12-20', 1620, 41946, 3137, NULL, '4.0000', '97.9791', '97.9791', '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 (44036, '2021-12-20', 9587, 41947, 3137, 44326, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44037, '2021-12-20', 8456, 41948, 3137, NULL, '1.0000', '5.5400', '5.5400', '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 (44038, '2021-12-20', 7657, 41949, 3137, NULL, '1.0000', '5.4700', '5.4700', '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 (44039, '2021-12-20', 9274, 41950, 3137, NULL, '1.0000', '3.1000', '3.1000', '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 (44040, '2021-12-20', 7703, 41951, 3137, NULL, '2.0000', '22.9900', '22.9900', '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 (44041, '2021-12-20', 8595, 41952, 3137, NULL, '1.0000', '4.2100', '4.2100', '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 (44042, '2021-12-20', 7675, 41953, 3137, NULL, '1.0000', '11.4300', '11.4300', '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 (44043, '2021-12-20', 7769, 41954, 3137, 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 (44044, '2021-12-20', 7848, 41955, 3137, NULL, '1.0000', '1.3500', '1.3500', '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 (44045, '2021-12-20', 7731, 41956, 3137, NULL, '1.0000', '0.0000', '0.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 (44046, '2021-12-20', 2324, 41957, 3137, 44318, '1.0000', '12.0000', '12.0000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44047, '2021-12-20', 7728, 41958, 3137, 44325, '2.0000', '1.8485', '1.8485', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44048, '2021-12-20', 2442, 41959, 3137, 44313, '1.0000', '4.8000', '4.8000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44049, '2021-12-20', 2012, 41960, 3137, 42792, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44050, '2021-12-20', 7375, 41961, 3137, NULL, '20.0000', '4.7000', '4.7000', '6.0000', '6.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 (44051, '2021-12-20', 8677, 41962, 3137, NULL, '2.0000', '1.2300', '1.2300', '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 (44052, '2021-12-20', 1544, 41963, 3137, 37415, '1.0000', '17.9300', '17.9300', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44053, '2021-12-20', 8166, 41964, 3137, NULL, '1.0000', '4.6000', '4.6000', '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 (44054, '2021-12-20', 2315, 41965, 3137, NULL, '1.0000', '0.4740', '0.4740', '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 (44055, '2021-12-20', 7711, 41966, 3137, NULL, '1.0000', '-78.4806', '-78.4806', '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 (44056, '2021-12-20', 7558, 41967, 3137, 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 (44057, '2021-12-20', 7753, 41968, 3137, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44058, '2021-12-20', 9191, 41969, 3137, NULL, '1.0000', '6.6700', '6.6700', '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 (44059, '2021-12-20', 7675, 41970, 3137, NULL, '1.0000', '11.4300', '11.4300', '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 (44060, '2021-12-20', 2643, 41971, 3137, 43963, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44061, '2021-12-20', 7531, 41972, 3137, NULL, '1.0000', '19.8275', '19.8275', '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 (44062, '2021-12-20', 7779, 41973, 3137, NULL, '1.0000', '8.3800', '8.3800', '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 (44063, '2021-12-20', 7527, 41974, 3137, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44064, '2021-12-20', 7675, 41975, 3137, NULL, '1.0000', '11.4300', '11.4300', '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 (44065, '2021-12-20', 7509, 41976, 3137, NULL, '1.0000', '6.1333', '6.1333', '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 (44066, '2021-12-20', 9674, 41977, 3137, 42403, '6.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44067, '2021-12-20', 1849, 41978, 3137, NULL, '3.0000', '2.5000', '2.5000', '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 (44068, '2021-12-20', 7547, 41979, 3137, NULL, '4.0000', '0.0000', '0.0000', '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 (44069, '2021-12-20', 7490, 41980, 3137, NULL, '2.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44070, '2021-12-20', 1307, 41981, 3137, 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 (44071, '2021-12-20', 8924, 41982, 3137, NULL, '1.0000', '4.5000', '4.5000', '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 (44072, '2021-12-20', 1904, 41983, 3137, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44073, '2021-12-20', 1760, 41984, 3137, 39629, '1.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44074, '2021-12-20', 7428, 41985, 3137, NULL, '1.0000', '744.9056', '744.9056', '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 (44075, '2021-12-20', 7674, 41986, 3137, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44076, '2021-12-20', 8596, 41987, 3137, NULL, '1.0000', '17.0000', '17.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 (44077, '2021-12-20', 9650, 41988, 3137, 43132, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44078, '2021-12-20', 8065, 41989, 3137, 37369, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44079, '2021-12-20', 7848, 41990, 3137, NULL, '2.0000', '1.3500', '1.3500', '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 (44080, '2021-12-20', 8984, 41991, 3137, NULL, '1.0000', '0.6700', '0.6700', '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 (44081, '2021-12-20', 8456, 41992, 3137, NULL, '1.0000', '5.5400', '5.5400', '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 (44082, '2021-12-20', 1307, 41993, 3137, 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 (44083, '2021-12-20', 9308, 41994, 3137, NULL, '1.0000', '9.0000', '9.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 (44084, '2021-12-20', 9160, 41995, 3137, NULL, '1.0000', '41.6640', '41.6640', '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 (44085, '2021-12-20', 8714, 41996, 3137, NULL, '1.0000', '20.7036', '20.7036', '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 (44086, '2021-12-20', 1945, 41997, 3138, 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 (44087, '2021-12-20', 2109, 41998, 3138, 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 (44088, '2021-12-20', 2662, 41999, 3138, 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 (44089, '2021-12-20', 2169, 42000, 3138, NULL, '1.0000', '1.1500', '1.1500', '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 (44090, '2021-12-20', 7447, 42001, 3138, NULL, '2.0000', '19.1100', '19.1100', '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 (44091, '2021-12-20', 2277, 42002, 3138, 43261, '1.0000', '0.9399', '0.9399', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44092, '2021-12-20', 2237, 42003, 3138, NULL, '2.0000', '-329.8285', '-329.8285', '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 (44093, '2021-12-20', 1854, 42004, 3138, 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 (44094, '2021-12-20', 9577, 42005, 3138, NULL, '2.0000', '0.3200', '0.3200', '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 (44095, '2021-12-20', 1946, 42006, 3138, NULL, '1.0000', '1.5500', '1.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 (44096, '2021-12-20', 1910, 42007, 3138, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (44097, '2021-12-20', 2660, 42008, 3138, 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 (44098, '2021-12-20', 1839, 42009, 3138, NULL, '1.0000', '1.8866', '1.8866', '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 (44099, '2021-12-20', 2307, 42010, 3138, NULL, '2.0000', '142.8300', '142.8300', '161.0000', '161.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 (44100, '2021-12-20', 1787, 42011, 3138, 39911, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44101, '2021-12-20', 2221, 42012, 3138, 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 (44102, '2021-12-20', 2916, 42013, 3138, NULL, '1.0000', '14.8227', '14.8227', '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 (44103, '2021-12-20', 1519, 42014, 3138, NULL, '1.0000', '3.3980', '3.3980', '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 (44104, '2021-12-20', 2643, 42015, 3138, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44105, '2021-12-20', 9649, 42016, 3138, NULL, '1.0000', '14.4100', '14.4100', '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 (44106, '2021-12-20', 9503, 42017, 3138, 33350, '2.0000', '24.1775', '24.1775', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44107, '2021-12-20', 3058, 42018, 3138, NULL, '1.0000', '4.6750', '4.6750', '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 (44108, '2021-12-20', 1595, 42019, 3138, 42820, '1.0000', '20.4928', '20.4928', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44109, '2021-12-20', 9416, 42020, 3138, 44150, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44110, '2021-12-20', 9699, 42021, 3138, 44151, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44111, '2021-12-20', 1577, 42022, 3138, 39771, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44112, '2021-12-20', 1935, 42023, 3138, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44113, '2021-12-20', 9438, 42024, 3138, NULL, '1.0000', '30.0000', '30.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 (44114, '2021-12-20', 1440, 42025, 3138, 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 (44115, '2021-12-20', 1908, 42026, 3138, NULL, '1.0000', '1.7500', '1.7500', '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 (44116, '2021-12-20', 2916, 42027, 3138, NULL, '1.0000', '14.8227', '14.8227', '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 (44117, '2021-12-20', 2283, 42028, 3138, 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 (44118, '2021-12-20', 1781, 42029, 3138, 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 (44119, '2021-12-20', 8711, 42030, 3138, NULL, '1.0000', '5.1000', '5.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 (44120, '2021-12-20', 1912, 42031, 3138, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44121, '2021-12-20', 1425, 42032, 3138, 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 (44122, '2021-12-20', 2221, 42033, 3138, 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 (44123, '2021-12-20', 8454, 42034, 3138, NULL, '1.0000', '5.1700', '5.1700', '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 (44124, '2021-12-20', 2283, 42035, 3138, 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 (44125, '2021-12-20', 9577, 42036, 3138, NULL, '2.0000', '0.3200', '0.3200', '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 (44126, '2021-12-20', 7609, 42037, 3138, NULL, '1.0000', '4.3300', '4.3300', '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 (44127, '2021-12-20', 2293, 42038, 3138, NULL, '3.0000', '1.4400', '1.4400', '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 (44128, '2021-12-20', 8057, 42039, 3138, NULL, '1.0000', '6.0000', '6.0000', '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 (44129, '2021-12-20', 1425, 42040, 3138, 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 (44130, '2021-12-20', 2320, 42041, 3138, 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 (44131, '2021-12-20', 2283, 42042, 3138, 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 (44132, '2021-12-20', 2662, 42043, 3138, 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 (44133, '2021-12-20', 7514, 42044, 3138, NULL, '1.0000', '2.2500', '2.2500', '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 (44134, '2021-12-20', 1343, 42045, 3139, 239, '1.0000', '43.9000', '43.9000', '58.0000', '58.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 (44135, '2021-12-20', 1602, 42046, 3139, 5897, '-70.0000', '6.7859', '6.7859', '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 (44136, '2021-12-20', 1602, 42046, 3139, NULL, '71.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44137, '2021-12-20', 1873, 42047, 3139, 16245, '-6.0000', '11.9500', '11.9500', '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 (44138, '2021-12-20', 1873, 42047, 3139, NULL, '7.0000', '11.9500', '11.9500', '16.0000', '16.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 (44139, '2021-12-20', 2353, 42048, 3139, 3856, '-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 (44140, '2021-12-20', 2353, 42048, 3139, NULL, '2.0000', '4.4500', '4.4500', '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 (44141, '2021-12-20', 2389, 42049, 3139, 4041, '-20.0000', '3.1400', '3.1400', '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 (44142, '2021-12-20', 2389, 42049, 3139, NULL, '22.0000', '3.1400', '3.1400', '4.5000', '4.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44143, '2021-12-20', 2108, 42050, 3139, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '16.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 (44144, '2021-12-20', 1307, 42051, 3139, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '6.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 (44145, '2021-12-20', 2662, 42052, 3139, 12036, '-11.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 (44146, '2021-12-20', 2662, 42052, 3139, NULL, '12.0000', '4.5000', '4.5000', '6.0000', '6.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 (44147, '2021-12-20', 7411, 42053, 3139, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44148, '2021-12-20', 2281, 42054, 3139, 2941, '-24.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 (44149, '2021-12-20', 2281, 42054, 3139, NULL, '27.0000', '3.0000', '3.0000', '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 (44150, '2021-12-20', 1312, 42055, 3139, 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 (44151, '2021-12-20', 2567, 42056, 3139, 7177, '-3.0000', '33.0000', '33.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 (44152, '2021-12-20', 2567, 42056, 3139, NULL, '4.0000', '33.0000', '33.0000', '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 (44153, '2021-12-20', 2231, 42057, 3139, 1706, '-1.0000', '33.0000', '33.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 (44154, '2021-12-20', 2231, 42057, 3139, NULL, '2.0000', '33.0000', '33.0000', '38.0000', '38.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 (44155, '2021-12-20', 9695, 42058, 3139, NULL, '1.0000', '4.5000', '4.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 (44156, '2021-12-20', 1589, 42059, 3139, 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 (44157, '2021-12-20', 2660, 42060, 3139, 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 (44158, '2021-12-20', 2712, 42061, 3139, 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 (44159, '2021-12-20', 1667, 42062, 3139, 9745, '-35.0000', '5.9400', '5.9400', '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 (44160, '2021-12-20', 1667, 42062, 3139, NULL, '36.0000', '5.9400', '5.9400', '8.5000', '8.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 (44161, '2021-12-20', 1409, 42063, 3139, 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 (44162, '2021-12-20', 2394, 42064, 3139, 4201, '-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 (44163, '2021-12-20', 2394, 42064, 3139, NULL, '2.0000', '4.0000', '4.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 (44164, '2021-12-20', 1665, 42065, 3139, 3235, '-47.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 (44165, '2021-12-20', 1665, 42065, 3139, NULL, '48.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44166, '2021-12-20', 1432, 42066, 3139, 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 (44167, '2021-12-20', 2237, 42067, 3139, 2781, '-28.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 (44168, '2021-12-20', 2237, 42067, 3139, NULL, '29.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44169, '2021-12-20', 1854, 42068, 3139, 22240, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '14.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 (44170, '2021-12-20', 1342, 42069, 3139, 11264, '-6.0000', '6.8074', '6.8074', '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 (44171, '2021-12-20', 1342, 42069, 3139, NULL, '7.0000', '6.8074', '6.8074', '7.5000', '7.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 (44172, '2021-12-20', 7411, 42070, 3139, 33804, '1.0000', '1.3500', '1.3500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44173, '2021-12-20', 1912, 42071, 3139, 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 (44174, '2021-12-20', 7989, 42072, 3140, NULL, '1.0000', '26.9800', '26.9800', '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 (44175, '2021-12-20', 2593, 42073, 3140, 23153, '3.0000', '14.4000', '14.4000', '19.0000', '19.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 (44176, '2021-12-20', 9096, 42074, 3140, 44299, '1.0000', '6.0000', '6.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44177, '2021-12-20', 2655, 42075, 3140, 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 (44178, '2021-12-20', 2643, 42076, 3140, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44179, '2021-12-20', 1564, 42077, 3140, NULL, '3.0000', '90.0000', '90.0000', '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 (44180, '2021-12-20', 8325, 42078, 3140, 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 (44181, '2021-12-20', 7953, 42079, 3140, NULL, '1.0000', '6.0000', '6.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 (44182, '2021-12-20', 2332, 42080, 3140, NULL, '1.0000', '5.0900', '5.0900', '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 (44183, '2021-12-20', 2273, 42081, 3140, 39870, '1.0000', '3.6337', '3.6337', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44184, '2021-12-20', 2103, 42082, 3140, 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 (44185, '2021-12-20', 8654, 42083, 3140, NULL, '1.0000', '5.8000', '5.8000', '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 (44186, '2021-12-20', 1512, 42084, 3140, 43269, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44187, '2021-12-20', 2283, 42085, 3140, 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 (44188, '2021-12-20', 1425, 42086, 3140, 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 (44189, '2021-12-20', 1665, 42087, 3140, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44190, '2021-12-20', 1571, 42088, 3140, 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 (44191, '2021-12-20', 2730, 42089, 3140, 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 (44192, '2021-12-20', 2286, 42090, 3140, NULL, '2.0000', '4.3000', '4.3000', '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 (44193, '2021-12-20', 8101, 42091, 3140, NULL, '2.0000', '21.7000', '21.7000', '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 (44194, '2021-12-20', 1619, 42092, 3140, 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 (44195, '2021-12-20', 7954, 42093, 3140, 34017, '4.0000', '11.1369', '11.1369', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44196, '2021-12-20', 1487, 42094, 3140, NULL, '1.0000', '-37.3500', '-37.3500', '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 (44197, '2021-12-20', 3058, 42095, 3140, NULL, '1.0000', '4.6750', '4.6750', '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 (44198, '2021-12-20', 2280, 42096, 3140, NULL, '2.0000', '-177.9360', '-177.9360', '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 (44199, '2021-12-20', 2506, 42097, 3140, 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 (44200, '2021-12-20', 2269, 42098, 3140, NULL, '1.0000', '5.8300', '5.8300', '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 (44201, '2021-12-20', 1825, 42099, 3140, 23678, '1.0000', '4.3850', '4.3850', '7.0000', '7.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 (44202, '2021-12-20', 1342, 42100, 3140, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44203, '2021-12-20', 1602, 42101, 3140, 41376, '2.0000', '6.8552', '6.8552', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44204, '2021-12-20', 1814, 42102, 3140, 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 (44205, '2021-12-20', 1950, 42103, 3140, NULL, '1.0000', '3.5525', '3.5525', '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 (44206, '2021-12-20', 2361, 42104, 3140, 42543, '10.0000', '0.4744', '0.4744', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44207, '2021-12-20', 2284, 42105, 3140, 38563, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44208, '2021-12-20', 1574, 42106, 3140, NULL, '1.0000', '1.7001', '1.7001', '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 (44209, '2021-12-20', 3058, 42107, 3140, NULL, '3.0000', '4.6750', '4.6750', '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 (44210, '2021-12-20', 1487, 42108, 3140, NULL, '1.0000', '-37.3500', '-37.3500', '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 (44211, '2021-12-20', 1782, 42109, 3140, 19340, '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 (44212, '2021-12-20', 2344, 42110, 3140, NULL, '1.0000', '19.8200', '19.8200', '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 (44213, '2021-12-20', 2169, 42111, 3140, NULL, '1.0000', '1.1500', '1.1500', '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 (44214, '2021-12-20', 2167, 42112, 3140, 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 (44215, '2021-12-20', 2346, 42113, 3140, NULL, '1.0000', '5.8000', '5.8000', '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 (44216, '2021-12-20', 1519, 42114, 3141, NULL, '1.0000', '3.3980', '3.3980', '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 (44217, '2021-12-20', 1839, 42115, 3141, NULL, '1.0000', '1.8866', '1.8866', '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 (44218, '2021-12-20', 2712, 42116, 3141, 44298, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44219, '2021-12-20', 3058, 42117, 3141, NULL, '1.0000', '4.6750', '4.6750', '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 (44220, '2021-12-20', 9470, 42118, 3141, 39993, '1.0000', '9.7867', '9.7867', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44221, '2021-12-20', 2642, 42119, 3141, 42646, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44222, '2021-12-20', 1650, 42120, 3141, 42555, '1.0000', '13.8051', '13.8051', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44223, '2021-12-20', 2758, 42121, 3141, 34623, '3.0000', '5.4000', '5.4000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44224, '2021-12-20', 8817, 42122, 3141, NULL, '1.0000', '18.0000', '18.0000', '20.0600', '20.0600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44225, '2021-12-20', 1667, 42123, 3141, 42826, '2.0000', '22.4947', '22.4947', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44226, '2021-12-20', 1670, 42124, 3141, 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 (44227, '2021-12-20', 2169, 42125, 3141, NULL, '1.0000', '1.1500', '1.1500', '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 (44228, '2021-12-20', 1863, 42126, 3141, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44229, '2021-12-20', 2109, 42127, 3141, 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 (44230, '2021-12-20', 2712, 42128, 3141, 44298, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44231, '2021-12-20', 2238, 42129, 3142, 39879, '2.0000', '39.0000', '39.0000', '60.5000', '60.5000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44232, '2021-12-20', 9561, 42130, 3142, NULL, '2.0000', '6.0000', '6.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 (44233, '2021-12-20', 9705, 42131, 3142, 44305, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44234, '2021-12-20', 1943, 42132, 3142, NULL, '1.0000', '5.7300', '5.7300', '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 (44235, '2021-12-20', 1864, 42133, 3142, 42835, '1.0000', '6.2625', '6.2625', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44236, '2021-12-20', 2231, 42134, 3142, NULL, '1.0000', '33.9999', '33.9999', '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 (44237, '2021-12-20', 2643, 42135, 3142, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44238, '2021-12-20', 1519, 42136, 3142, NULL, '1.0000', '3.3980', '3.3980', '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 (44239, '2021-12-20', 2821, 42137, 3142, 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 (44240, '2021-12-20', 1410, 42138, 3142, NULL, '1.0000', '2.1083', '2.1083', '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 (44241, '2021-12-20', 2475, 42139, 3142, 39983, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44242, '2021-12-20', 1666, 42140, 3142, 42825, '2.0000', '2.7429', '2.7429', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44243, '2021-12-20', 8205, 42141, 3142, NULL, '1.0000', '2.9500', '2.9500', '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 (44244, '2021-12-20', 1310, 42142, 3142, NULL, '4.0000', '0.3700', '0.3700', '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 (44245, '2021-12-20', 1755, 42143, 3142, 42087, '1.0000', '5.7200', '5.7200', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44246, '2021-12-20', 2392, 42144, 3142, NULL, '1.0000', '2.7000', '2.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 (44247, '2021-12-20', 2712, 42145, 3143, 44298, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44248, '2021-12-20', 8202, 42146, 3143, NULL, '1.0000', '1.6600', '1.6600', '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 (44249, '2021-12-20', 1771, 42147, 3143, 13766, '2.0000', '3.3900', '3.3900', '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 (44250, '2021-12-20', 1571, 42148, 3143, NULL, '10.0000', '90.0000', '90.0000', '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 (44251, '2021-12-20', 7752, 42149, 3143, NULL, '1.0000', '2.6100', '2.6100', '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 (44252, '2021-12-20', 2448, 42150, 3143, 23980, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '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 (44253, '2021-12-20', 2440, 42151, 3143, 39978, '1.0000', '5.4115', '5.4115', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44254, '2021-12-20', 1523, 42152, 3143, NULL, '1.0000', '1.0061', '1.0061', '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 (44255, '2021-12-20', 2169, 42153, 3143, NULL, '1.0000', '1.1500', '1.1500', '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 (44256, '2021-12-20', 2245, 42154, 3143, 23178, '3.0000', '0.7000', '0.7000', '1.0000', '1.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 (44257, '2021-12-20', 1621, 42155, 3143, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '48.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44258, '2021-12-20', 2603, 42156, 3143, 37968, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44259, '2021-12-20', 1499, 42157, 3143, 42841, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44260, '2021-12-20', 1523, 42158, 3143, NULL, '1.0000', '1.0061', '1.0061', '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 (44261, '2021-12-20', 1621, 42159, 3143, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '48.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44262, '2021-12-20', 1912, 42160, 3143, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44263, '2021-12-20', 2169, 42161, 3144, NULL, '1.0000', '1.1500', '1.1500', '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 (44264, '2021-12-20', 2289, 42162, 3144, 42836, '4.0000', '0.3186', '0.3186', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44265, '2021-12-20', 1520, 42163, 3144, 44064, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44266, '2021-12-20', 2315, 42164, 3144, NULL, '2.0000', '0.8556', '0.8556', '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 (44267, '2021-12-20', 7678, 42165, 3144, NULL, '1.0000', '5.1400', '5.1400', '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 (44268, '2021-12-20', 9486, 42166, 3145, 32627, '1.0000', '23.0000', '23.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44269, '2021-12-20', 1690, 42167, 3145, 34693, '1.0000', '6.2600', '6.2600', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44270, '2021-12-20', 1651, 42168, 3145, 43037, '1.0000', '6.8684', '6.8684', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44271, '2021-12-20', 7532, 42169, 3145, NULL, '1.0000', '20.6000', '20.6000', '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 (44272, '2021-12-20', 1851, 42170, 3145, 40617, '1.0000', '12.9959', '12.9959', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44273, '2021-12-20', 2592, 42171, 3145, 8436, '2.0000', '7.9456', '7.9456', '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 (44274, '2021-12-20', 2592, 42171, 3145, NULL, '1.0000', '7.9456', '7.9456', '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 (44275, '2021-12-20', 1805, 42172, 3145, 42975, '1.0000', '4.2421', '4.2421', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44276, '2021-12-20', 2712, 42173, 3145, 42626, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '50.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44277, '2021-12-20', 1935, 42174, 3145, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44278, '2021-12-20', 1596, 42175, 3145, 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 (44279, '2021-12-20', 9640, 42176, 3145, 41987, '1.0000', '38.0000', '38.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44280, '2021-12-20', 1371, 42177, 3145, 41971, '4.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44281, '2021-12-20', 1863, 42178, 3145, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44282, '2021-12-20', 8878, 42179, 3145, NULL, '1.0000', '6.6700', '6.6700', '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 (44283, '2021-12-20', 1371, 42180, 3145, 41971, '2.0000', '4338.0639', '4338.0639', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44284, '2021-12-20', 1818, 42181, 3145, 40880, '1.0000', '18.5185', '18.5185', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44285, '2021-12-20', 1433, 42182, 3145, 43830, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44286, '2021-12-20', 7629, 42183, 3145, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44287, '2021-12-20', 1307, 42184, 3145, 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 (44288, '2021-12-20', 1337, 42185, 3145, 43900, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44289, '2021-12-20', 1602, 42186, 3145, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44290, '2021-12-20', 3029, 42187, 3145, 42950, '1.0000', '5.9209', '5.9209', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44291, '2021-12-20', 1572, 42188, 3145, 31988, '2.0000', '-0.4738', '-0.4738', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44292, '2021-12-20', 2633, 42189, 3145, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44293, '2021-12-20', 1649, 42190, 3145, 38066, '1.0000', '12.3713', '12.3713', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44294, '2021-12-20', 2169, 42191, 3145, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44295, '2021-12-20', 2835, 42192, 3145, 16988, '1.0000', '23.0000', '23.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 (44296, '2021-12-20', 2169, 42193, 3145, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44297, '2021-12-20', 2814, 42194, 3145, 17363, '1.0000', '14.0400', '14.0400', '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 (44298, '2021-12-20', 1601, 42195, 3145, 9464, '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 (44299, '2021-12-20', 1945, 42196, 3145, 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 (44300, '2021-12-20', 2574, 42197, 3145, 34422, '2.0000', '0.9166', '0.9166', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44301, '2021-12-20', 7746, 42198, 3145, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44302, '2021-12-20', 2284, 42199, 3145, 3124, '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 (44303, '2021-12-20', 8208, 42200, 3145, NULL, '2.0000', '33.0000', '33.0000', '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 (44304, '2021-12-20', 1382, 42201, 3145, 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 (44305, '2021-12-20', 2828, 42202, 3145, 16963, '1.0000', '17.6500', '17.6500', '24.0000', '24.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 (44306, '2021-12-20', 2302, 42203, 3145, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44307, '2021-12-20', 2221, 42204, 3145, 43852, '4.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44308, '2021-12-20', 2869, 42205, 3145, 17894, '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 (44309, '2021-12-20', 2163, 42206, 3145, NULL, '1.0000', '4.9600', '4.9600', '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 (44310, '2021-12-20', 2167, 42207, 3145, 40217, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44311, '2021-12-20', 2567, 42208, 3145, 44275, '1.0000', '-192.2803', '-192.2803', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44312, '2021-12-20', 7613, 42209, 3145, 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 (44313, '2021-12-20', 8888, 42210, 3145, NULL, '1.0000', '28.0000', '28.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 (44314, '2021-12-20', 1989, 42211, 3145, 42623, '1.0000', '3.6459', '3.6459', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44315, '2021-12-20', 9579, 42212, 3145, 44286, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44316, '2021-12-20', 7459, 42213, 3145, 31998, '10.0000', '2.3500', '2.3500', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44317, '2021-12-20', 1592, 42214, 3145, 43836, '1.0000', '35.4788', '35.4788', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44318, '2021-12-20', 2657, 42215, 3145, 11407, '2.0000', '5.4200', '5.4200', '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 (44319, '2021-12-20', 1707, 42216, 3145, 40222, '1.0000', '25.1200', '25.1200', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44320, '2021-12-20', 2285, 42217, 3145, NULL, '1.0000', '36.5090', '36.5090', '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 (44321, '2021-12-20', 1504, 42218, 3145, NULL, '20.0000', '1.2125', '1.2125', '2.2000', '2.2000', '-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 (44322, '2021-12-20', 2251, 42219, 3145, 13530, '1.0000', '11.7398', '11.7398', '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 (44323, '2021-12-20', 7401, 42220, 3145, NULL, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44324, '2021-12-20', 2248, 42221, 3145, NULL, '1.0000', '2.4916', '2.4916', '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 (44325, '2021-12-20', 1502, 42222, 3145, 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 (44326, '2021-12-20', 1805, 42223, 3145, 42975, '1.0000', '4.2421', '4.2421', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44327, '2021-12-20', 7447, 42224, 3145, NULL, '3.0000', '19.1100', '19.1100', '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 (44328, '2021-12-20', 1388, 42225, 3145, 43827, '1.0000', '5.3298', '5.3298', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44329, '2021-12-20', 1783, 42226, 3145, 40861, '3.0000', '-85.3042', '-85.3042', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44330, '2021-12-20', 1863, 42227, 3145, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44331, '2021-12-20', 2163, 42228, 3146, NULL, '1.0000', '4.9600', '4.9600', '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 (44332, '2021-12-20', 1667, 42229, 3146, 37587, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44333, '2021-12-20', 8324, 42230, 3147, 43960, '1.0000', '3.0036', '3.0036', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44334, '2021-12-20', 7554, 42231, 3147, NULL, '10.0000', '3.0308', '3.0308', '2.2000', '2.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 (44335, '2021-12-20', 7711, 42232, 3147, NULL, '1.0000', '-78.4806', '-78.4806', '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 (44336, '2021-12-20', 7453, 42233, 3147, NULL, '1.0000', '28.5000', '28.5000', '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 (44337, '2021-12-20', 7967, 42234, 3147, 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 (44338, '2021-12-20', 7518, 42235, 3147, NULL, '1.0000', '-67.2578', '-67.2578', '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 (44339, '2021-12-20', 7366, 42236, 3147, 39591, '1.0000', '6.9800', '6.9800', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44340, '2021-12-20', 1585, 42237, 3147, NULL, '1.0000', '8.9900', '8.9900', '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 (44341, '2021-12-20', 2277, 42238, 3147, NULL, '3.0000', '0.7800', '0.7800', '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 (44342, '2021-12-20', 9579, 42239, 3147, 44332, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44343, '2021-12-20', 7674, 42240, 3147, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44344, '2021-12-20', 2279, 42241, 3147, NULL, '1.0000', '2.6000', '2.6000', '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 (44345, '2021-12-20', 9329, 42242, 3147, NULL, '1.0000', '5.8000', '5.8000', '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 (44346, '2021-12-20', 7764, 42243, 3147, NULL, '1.0000', '12.0300', '12.0300', '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 (44347, '2021-12-20', 2315, 42244, 3147, NULL, '1.0000', '0.4740', '0.4740', '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 (44348, '2021-12-20', 8086, 42245, 3147, 42784, '1.0000', '9.3820', '9.3820', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44349, '2021-12-20', 7671, 42246, 3147, NULL, '2.0000', '15.5000', '15.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 (44350, '2021-12-20', 7411, 42247, 3147, NULL, '1.0000', '1.3500', '1.3500', '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 (44351, '2021-12-20', 1339, 42248, 3147, NULL, '1.0000', '2.0193', '2.0193', '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 (44352, '2021-12-20', 9556, 42249, 3147, 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 (44353, '2021-12-20', 7946, 42250, 3147, NULL, '1.0000', '-16.4800', '-16.4800', '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 (44354, '2021-12-20', 7707, 42251, 3147, NULL, '1.0000', '6.0012', '6.0012', '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 (44355, '2021-12-20', 2315, 42252, 3147, NULL, '1.0000', '0.4740', '0.4740', '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 (44356, '2021-12-20', 7736, 42253, 3147, NULL, '1.0000', '15.0000', '15.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 (44357, '2021-12-20', 8135, 42254, 3147, NULL, '1.0000', '13.9000', '13.9000', '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 (44358, '2021-12-20', 7444, 42255, 3147, 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 (44359, '2021-12-20', 7952, 42256, 3147, NULL, '1.0000', '10.4000', '10.4000', '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 (44360, '2021-12-20', 7412, 42257, 3147, NULL, '1.0000', '1.5200', '1.5200', '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 (44361, '2021-12-20', 9399, 42258, 3147, NULL, '1.0000', '0.4200', '0.4200', '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 (44362, '2021-12-20', 8186, 42259, 3147, NULL, '3.0000', '1.0800', '1.0800', '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 (44363, '2021-12-20', 8324, 42260, 3147, 43960, '1.0000', '3.0036', '3.0036', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44364, '2021-12-20', 9330, 42261, 3147, 33724, '1.0000', '9.5399', '9.5399', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44365, '2021-12-20', 9330, 42261, 3147, NULL, '1.0000', '9.5399', '9.5399', '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 (44366, '2021-12-20', 9274, 42262, 3147, NULL, '1.0000', '3.1000', '3.1000', '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 (44367, '2021-12-20', 7674, 42263, 3147, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44368, '2021-12-20', 7411, 42264, 3147, NULL, '1.0000', '1.3500', '1.3500', '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 (44369, '2021-12-20', 7711, 42265, 3147, NULL, '1.0000', '-78.4806', '-78.4806', '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 (44370, '2021-12-20', 7915, 42266, 3147, NULL, '1.0000', '2.8000', '2.8000', '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 (44371, '2021-12-20', 7715, 42267, 3147, NULL, '1.0000', '1.8900', '1.8900', '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 (44372, '2021-12-20', 2458, 42268, 3147, 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 (44373, '2021-12-20', 9016, 42269, 3147, NULL, '1.0000', '2.9800', '2.9800', '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 (44374, '2021-12-20', 9019, 42270, 3147, NULL, '3.0000', '6.0000', '6.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 (44375, '2021-12-20', 7509, 42271, 3147, NULL, '1.0000', '6.1333', '6.1333', '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 (44376, '2021-12-20', 7715, 42272, 3147, NULL, '1.0000', '1.8900', '1.8900', '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 (44377, '2021-12-20', 1849, 42273, 3147, NULL, '2.0000', '2.5000', '2.5000', '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 (44378, '2021-12-20', 9461, 42274, 3147, 40416, '1.0000', '2.8615', '2.8615', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44379, '2021-12-20', 7460, 42275, 3147, NULL, '5.0000', '51.2000', '51.2000', '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 (44380, '2021-12-20', 7547, 42276, 3147, NULL, '4.0000', '0.0000', '0.0000', '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 (44381, '2021-12-20', 7927, 42277, 3147, 43111, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44382, '2021-12-20', 7879, 42278, 3147, NULL, '10.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (44383, '2021-12-20', 8085, 42279, 3147, NULL, '3.0000', '14.0000', '14.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 (44384, '2021-12-20', 8246, 42280, 3147, NULL, '1.0000', '7.0000', '7.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 (44385, '2021-12-20', 7879, 42281, 3147, NULL, '5.0000', '1.9800', '1.9800', '1.8000', '1.8000', '-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 (44386, '2021-12-20', 7344, 42282, 3147, NULL, '5.0000', '94.2800', '94.2800', '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 (44387, '2021-12-20', 7942, 42283, 3147, NULL, '2.0000', '1.1500', '1.1500', '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 (44388, '2021-12-20', 1337, 42284, 3147, NULL, '2.0000', '2.0000', '2.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 (44389, '2021-12-20', 9176, 42285, 3147, NULL, '2.0000', '5.0000', '5.0000', '28.0000', '28.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 (44390, '2021-12-20', 9274, 42286, 3147, NULL, '1.0000', '3.1000', '3.1000', '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 (44391, '2021-12-20', 9154, 42287, 3147, NULL, '1.0000', '10.6800', '10.6800', '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 (44392, '2021-12-20', 7447, 42288, 3147, NULL, '16.0000', '19.1100', '19.1100', '2.0000', '2.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 (44393, '2021-12-20', 7886, 42289, 3147, NULL, '1.0000', '2.8333', '2.8333', '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 (44394, '2021-12-20', 7427, 42290, 3147, 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 (44395, '2021-12-20', 8496, 42291, 3147, NULL, '1.0000', '2.4000', '2.4000', '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 (44396, '2021-12-20', 1856, 42292, 3147, 43068, '1.0000', '-33.1541', '-33.1541', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44397, '2021-12-20', 2506, 42293, 3147, 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 (44398, '2021-12-20', 2857, 42294, 3147, NULL, '4.0000', '17.0000', '17.0000', '6.6000', '6.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 (44399, '2021-12-20', 2648, 42295, 3147, NULL, '1.0000', '5.1333', '5.1333', '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 (44400, '2021-12-20', 2277, 42296, 3147, NULL, '1.0000', '0.7800', '0.7800', '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 (44401, '2021-12-20', 1303, 42297, 3147, 33727, '2.0000', '1.3800', '1.3800', '4.0000', '4.0000', '91.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44402, '2021-12-20', 7709, 42298, 3147, NULL, '2.0000', '35.8000', '35.8000', '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 (44403, '2021-12-20', 8200, 42299, 3147, NULL, '2.0000', '629.5726', '629.5726', '8.5000', '8.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 (44404, '2021-12-20', 8686, 42300, 3147, NULL, '1.0000', '1.2000', '1.2000', '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 (44405, '2021-12-20', 2315, 42301, 3147, NULL, '1.0000', '0.4740', '0.4740', '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 (44406, '2021-12-20', 7444, 42302, 3147, 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 (44407, '2021-12-20', 8089, 42303, 3147, 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 (44408, '2021-12-20', 7358, 42304, 3147, 42421, '1.0000', '14.5455', '14.5455', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44409, '2021-12-20', 8036, 42305, 3147, 43439, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44410, '2021-12-20', 7514, 42306, 3147, NULL, '2.0000', '12.9983', '12.9983', '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 (44411, '2021-12-20', 7848, 42307, 3147, NULL, '1.0000', '1.3500', '1.3500', '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 (44412, '2021-12-20', 2414, 42308, 3147, NULL, '4.0000', '3.4000', '3.4000', '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 (44413, '2021-12-20', 1805, 42309, 3147, NULL, '1.0000', '4.5500', '4.5500', '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 (44414, '2021-12-20', 7674, 42310, 3147, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44415, '2021-12-20', 7672, 42311, 3147, NULL, '1.0000', '1.0200', '1.0200', '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 (44416, '2021-12-20', 8166, 42312, 3147, NULL, '1.0000', '4.6000', '4.6000', '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 (44417, '2021-12-20', 7711, 42313, 3147, NULL, '1.0000', '-78.4806', '-78.4806', '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 (44418, '2021-12-20', 2726, 42314, 3147, NULL, '1.0000', '4.0000', '4.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 (44419, '2021-12-20', 1409, 42315, 3147, 36049, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44420, '2021-12-20', 8047, 42316, 3147, NULL, '1.0000', '9.2000', '9.2000', '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 (44421, '2021-12-20', 1463, 42317, 3147, 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 (44422, '2021-12-20', 7411, 42318, 3147, NULL, '1.0000', '1.3500', '1.3500', '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 (44423, '2021-12-20', 7671, 42319, 3147, NULL, '1.0000', '15.5000', '15.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 (44424, '2021-12-20', 7641, 42320, 3147, NULL, '1.0000', '-12.6777', '-12.6777', '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 (44425, '2021-12-20', 2235, 42321, 3147, 43450, '1.0000', '20.4000', '20.4000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44426, '2021-12-20', 1644, 42322, 3147, 43093, '1.0000', '38.3811', '38.3811', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44427, '2021-12-20', 1650, 42323, 3147, NULL, '1.0000', '14.7450', '14.7450', '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 (44428, '2021-12-20', 2726, 42324, 3147, NULL, '1.0000', '4.0000', '4.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 (44429, '2021-12-20', 7674, 42325, 3147, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44430, '2021-12-20', 1409, 42326, 3147, 36049, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44431, '2021-12-20', 1935, 42327, 3147, NULL, '5.0000', '90.0000', '90.0000', '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 (44432, '2021-12-20', 7671, 42328, 3147, NULL, '1.0000', '15.5000', '15.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 (44433, '2021-12-20', 7673, 42329, 3147, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44434, '2021-12-20', 2315, 42330, 3147, NULL, '1.0000', '0.4740', '0.4740', '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 (44435, '2021-12-20', 8135, 42331, 3147, NULL, '1.0000', '13.9000', '13.9000', '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 (44436, '2021-12-20', 1841, 42332, 3147, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44437, '2021-12-20', 8307, 42333, 3147, NULL, '1.0000', '14.5000', '14.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 (44438, '2021-12-20', 2699, 42334, 3147, 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 (44439, '2021-12-20', 2289, 42335, 3147, NULL, '1.0000', '0.2300', '0.2300', '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 (44440, '2021-12-20', 7781, 42336, 3147, NULL, '3.0000', '4.2500', '4.2500', '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 (44441, '2021-12-20', 7411, 42337, 3147, NULL, '1.0000', '1.3500', '1.3500', '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 (44442, '2021-12-20', 7744, 42338, 3147, 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 (44443, '2021-12-20', 8166, 42339, 3147, NULL, '1.0000', '4.6000', '4.6000', '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 (44444, '2021-12-20', 8032, 42340, 3147, NULL, '1.0000', '12.0000', '12.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 (44445, '2021-12-20', 8756, 42341, 3148, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44446, '2021-12-20', 2655, 42342, 3148, 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 (44447, '2021-12-20', 2295, 42343, 3148, 42822, '3.0000', '1.8818', '1.8818', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44448, '2021-12-20', 2242, 42344, 3148, NULL, '5.0000', '0.5518', '0.5518', '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 (44449, '2021-12-20', 9463, 42345, 3148, NULL, '1.0000', '7.5000', '7.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 (44450, '2021-12-20', 2269, 42346, 3148, NULL, '1.0000', '5.8300', '5.8300', '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 (44451, '2021-12-20', 7495, 42347, 3148, NULL, '1.0000', '17.8000', '17.8000', '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 (44452, '2021-12-20', 2768, 42348, 3148, 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 (44453, '2021-12-20', 1369, 42349, 3148, 19356, '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 (44454, '2021-12-20', 2320, 42350, 3148, 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 (44455, '2021-12-20', 1816, 42351, 3148, NULL, '1.0000', '19.7500', '19.7500', '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 (44456, '2021-12-20', 7671, 42352, 3148, NULL, '1.0000', '15.5000', '15.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 (44457, '2021-12-20', 8745, 42353, 3148, 44144, '1.0000', '8.9932', '8.9932', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44458, '2021-12-20', 7318, 42354, 3148, NULL, '1.0000', '13.4400', '13.4400', '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 (44459, '2021-12-20', 1409, 42355, 3148, NULL, '1.0000', '13.5000', '13.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 (44460, '2021-12-20', 2344, 42356, 3148, NULL, '1.0000', '19.8200', '19.8200', '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 (44461, '2021-12-21', 2906, 42357, 3149, NULL, '1.0000', '2.6000', '2.6000', '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 (44462, '2021-12-21', 2821, 42358, 3150, 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 (44463, '2021-12-21', 1912, 42359, 3150, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44464, '2021-12-21', 2315, 42360, 3150, NULL, '2.0000', '0.8556', '0.8556', '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 (44465, '2021-12-21', 2662, 42361, 3150, 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 (44466, '2021-12-21', 1499, 42362, 3150, 41408, '5.0000', '0.6447', '0.6447', '0.7000', '0.7000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44467, '2021-12-21', 1863, 42363, 3150, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44468, '2021-12-21', 1854, 42364, 3150, 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 (44469, '2021-12-21', 8101, 42365, 3150, NULL, '2.0000', '21.7000', '21.7000', '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 (44470, '2021-12-21', 2295, 42366, 3150, 42822, '2.0000', '1.8818', '1.8818', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44471, '2021-12-21', 1580, 42367, 3150, NULL, '1.0000', '0.9900', '0.9900', '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 (44472, '2021-12-21', 9707, 42368, 3150, 44395, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44473, '2021-12-21', 2068, 42369, 3150, 34034, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44474, '2021-12-21', 2823, 42370, 3150, 19868, '2.0000', '11.2100', '11.2100', '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 (44475, '2021-12-21', 2252, 42371, 3150, 42804, '1.0000', '16.5900', '16.5900', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44476, '2021-12-21', 8454, 42372, 3150, NULL, '1.0000', '5.1700', '5.1700', '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 (44477, '2021-12-21', 2320, 42373, 3150, 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 (44478, '2021-12-21', 2415, 42374, 3150, 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 (44479, '2021-12-21', 1432, 42375, 3150, 44067, '1.0000', '9.9302', '9.9302', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44480, '2021-12-21', 2411, 42376, 3150, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44481, '2021-12-21', 1839, 42377, 3150, NULL, '1.0000', '1.8866', '1.8866', '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 (44482, '2021-12-21', 1646, 42378, 3150, 37774, '1.0000', '4.2297', '4.2297', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44483, '2021-12-21', 8308, 42379, 3150, NULL, '1.0000', '11.0000', '11.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 (44484, '2021-12-21', 2506, 42380, 3150, 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 (44485, '2021-12-21', 9550, 42381, 3150, 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 (44486, '2021-12-21', 2089, 42382, 3150, 37753, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44487, '2021-12-21', 1577, 42383, 3150, 39771, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44488, '2021-12-21', 1863, 42384, 3150, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44489, '2021-12-21', 7671, 42385, 3150, NULL, '1.0000', '15.5000', '15.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 (44490, '2021-12-21', 1912, 42386, 3150, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44491, '2021-12-21', 2916, 42387, 3150, NULL, '1.0000', '14.8227', '14.8227', '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 (44492, '2021-12-21', 1409, 42388, 3150, NULL, '1.0000', '13.5000', '13.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 (44493, '2021-12-21', 2242, 42389, 3150, NULL, '5.0000', '0.5518', '0.5518', '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 (44494, '2021-12-21', 2237, 42390, 3150, NULL, '1.0000', '-329.8285', '-329.8285', '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 (44495, '2021-12-21', 2887, 42391, 3150, 42849, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44496, '2021-12-21', 3004, 42392, 3151, 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 (44497, '2021-12-21', 1668, 42393, 3151, 42095, '1.0000', '44.2080', '44.2080', '18.0000', '18.0000', '22.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44498, '2021-12-21', 1533, 42394, 3151, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44499, '2021-12-21', 7759, 42395, 3151, NULL, '3.0000', '19.5000', '19.5000', '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 (44500, '2021-12-21', 1532, 42396, 3151, NULL, '2.0000', '7.4815', '7.4815', '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 (44501, '2021-12-21', 1580, 42397, 3151, NULL, '1.0000', '0.9900', '0.9900', '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 (44502, '2021-12-21', 2221, 42398, 3151, 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 (44503, '2021-12-21', 1489, 42399, 3152, 34950, '1.0000', '28.1700', '28.1700', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44504, '2021-12-21', 7544, 42400, 3153, NULL, '4.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-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 (44505, '2021-12-21', 2410, 42401, 3153, 38543, '1.0000', '4.3920', '4.3920', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44506, '2021-12-21', 1608, 42402, 3153, 34659, '1.0000', '3.5436', '3.5436', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44507, '2021-12-21', 1313, 42403, 3153, 39906, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44508, '2021-12-21', 8454, 42404, 3154, NULL, '1.0000', '5.1700', '5.1700', '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 (44509, '2021-12-21', 2169, 42405, 3154, NULL, '1.0000', '1.1500', '1.1500', '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 (44510, '2021-12-21', 1935, 42406, 3154, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44511, '2021-12-21', 7753, 42407, 3154, NULL, '1.0000', '3.1400', '3.1400', '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 (44512, '2021-12-21', 7671, 42408, 3154, NULL, '1.0000', '15.5000', '15.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 (44513, '2021-12-21', 2169, 42409, 3155, 10737, '-1.0000', '3.8397', '3.8397', '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 (44514, '2021-12-21', 2169, 42409, 3155, NULL, '2.0000', '3.8397', '3.8397', '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 (44515, '2021-12-21', 2943, 42410, 3155, 19987, '-5.0000', '2.1800', '2.1800', '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 (44516, '2021-12-21', 2943, 42410, 3155, NULL, '6.0000', '2.1800', '2.1800', '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 (44517, '2021-12-21', 1533, 42411, 3155, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (44518, '2021-12-21', 2088, 42412, 3155, 21781, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '2.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 (44519, '2021-12-21', 1445, 42413, 3155, 5565, '-7.0000', '2.6000', '2.6000', '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 (44520, '2021-12-21', 1445, 42413, 3155, NULL, '8.0000', '2.6000', '2.6000', '3.5000', '3.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 (44521, '2021-12-21', 2915, 42414, 3155, 18785, '-1.0000', '15.4500', '15.4500', '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 (44522, '2021-12-21', 2915, 42414, 3155, NULL, '2.0000', '15.4500', '15.4500', '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 (44523, '2021-12-21', 1529, 42415, 3155, 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 (44524, '2021-12-21', 1837, 42416, 3155, 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 (44525, '2021-12-21', 2357, 42417, 3155, 18852, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (44526, '2021-12-21', 1532, 42418, 3155, 22261, '3.0000', '0.8000', '0.8000', '1.5000', '1.5000', '30.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 (44527, '2021-12-21', 8761, 42419, 3155, 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 (44528, '2021-12-21', 1584, 42420, 3155, 7601, '-20.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 (44529, '2021-12-21', 1584, 42420, 3155, NULL, '22.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44530, '2021-12-21', 1349, 42421, 3155, 245, '1.0000', '20.8300', '20.8300', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44531, '2021-12-21', 7318, 42422, 3155, NULL, '1.0000', '13.4400', '13.4400', '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 (44532, '2021-12-21', 1306, 42423, 3155, 6879, '3.0000', '22.5969', '22.5969', '3.0000', '3.0000', '5.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 (44533, '2021-12-21', 2059, 42424, 3155, 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 (44534, '2021-12-21', 1846, 42425, 3155, 12032, '-11.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 (44535, '2021-12-21', 1846, 42425, 3155, NULL, '12.0000', '12.0000', '12.0000', '16.0000', '16.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 (44536, '2021-12-21', 1529, 42426, 3155, 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 (44537, '2021-12-21', 2232, 42427, 3155, 2776, '-3.0000', '29.0000', '29.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44538, '2021-12-21', 2232, 42427, 3155, NULL, '4.0000', '29.0000', '29.0000', '42.0000', '42.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 (44539, '2021-12-21', 1618, 42428, 3155, 8737, '-2.0000', '11.8200', '11.8200', '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 (44540, '2021-12-21', 1618, 42428, 3155, NULL, '3.0000', '11.8200', '11.8200', '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 (44541, '2021-12-21', 2167, 42429, 3155, 17165, '-30.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 (44542, '2021-12-21', 2167, 42429, 3155, NULL, '31.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (44543, '2021-12-21', 2921, 42430, 3155, 18778, '-1.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 (44544, '2021-12-21', 2921, 42430, 3155, NULL, '2.0000', '4.9000', '4.9000', '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 (44545, '2021-12-21', 1949, 42431, 3155, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '7.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 (44546, '2021-12-21', 2098, 42432, 3155, 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 (44547, '2021-12-21', 1863, 42433, 3155, 10808, '-106.0000', '0.4136', '0.4136', '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 (44548, '2021-12-21', 1863, 42433, 3155, NULL, '108.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-108.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44549, '2021-12-21', 1822, 42434, 3155, 8225, '-80.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 (44550, '2021-12-21', 1822, 42434, 3155, NULL, '100.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-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 (44551, '2021-12-21', 2357, 42435, 3155, 18852, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (44552, '2021-12-21', 2943, 42436, 3155, 19987, '-5.0000', '2.1800', '2.1800', '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 (44553, '2021-12-21', 2943, 42436, 3155, NULL, '6.0000', '2.1800', '2.1800', '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 (44554, '2021-12-21', 1521, 42437, 3155, 22243, '2.0000', '2.5754', '2.5754', '3.5000', '3.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 (44555, '2021-12-21', 1390, 42438, 3155, NULL, '1.0000', '7.5000', '7.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 (44556, '2021-12-21', 1602, 42439, 3155, 5897, '-71.0000', '6.7859', '6.7859', '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 (44557, '2021-12-21', 1602, 42439, 3155, NULL, '72.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44558, '2021-12-21', 2280, 42440, 3155, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44559, '2021-12-21', 2272, 42441, 3155, 2932, '-15.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 (44560, '2021-12-21', 2272, 42441, 3155, NULL, '16.0000', '5.5000', '5.5000', '7.5000', '7.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 (44561, '2021-12-21', 1912, 42442, 3155, 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 (44562, '2021-12-21', 9577, 42443, 3155, NULL, '4.0000', '0.3200', '0.3200', '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 (44563, '2021-12-21', 1665, 42444, 3155, 3235, '-48.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 (44564, '2021-12-21', 1665, 42444, 3155, NULL, '53.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (44565, '2021-12-21', 1809, 42445, 3156, 7386, '-4.0000', '9.6000', '9.6000', '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 (44566, '2021-12-21', 1809, 42445, 3156, NULL, '6.0000', '9.6000', '9.6000', '13.0000', '13.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 (44567, '2021-12-21', 1342, 42446, 3157, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44568, '2021-12-21', 2327, 42447, 3157, 39828, '2.0000', '3.8860', '3.8860', '5.0000', '5.0000', '47.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44569, '2021-12-21', 8746, 42448, 3157, 44142, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44570, '2021-12-21', 7317, 42449, 3158, NULL, '1.0000', '29.3700', '29.3700', '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 (44571, '2021-12-21', 7385, 42450, 3158, NULL, '4.0000', '17.6346', '17.6346', '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 (44572, '2021-12-21', 7375, 42451, 3158, NULL, '10.0000', '4.7000', '4.7000', '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 (44573, '2021-12-21', 9405, 42452, 3158, NULL, '1.0000', '5.4000', '5.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 (44574, '2021-12-21', 7819, 42453, 3158, NULL, '1.0000', '9.5000', '9.5000', '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 (44575, '2021-12-21', 7671, 42454, 3158, NULL, '3.0000', '15.5000', '15.5000', '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 (44576, '2021-12-21', 7674, 42455, 3158, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44577, '2021-12-21', 9245, 42456, 3158, 30170, '1.0000', '6.6100', '6.6100', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44578, '2021-12-21', 8172, 42457, 3158, NULL, '1.0000', '40.7000', '40.7000', '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 (44579, '2021-12-21', 9154, 42458, 3158, NULL, '1.0000', '10.6800', '10.6800', '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 (44580, '2021-12-21', 8135, 42459, 3158, NULL, '1.0000', '13.9000', '13.9000', '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 (44581, '2021-12-21', 2129, 42460, 3158, 39650, '1.0000', '8.3350', '8.3350', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44582, '2021-12-21', 7317, 42461, 3158, NULL, '1.0000', '29.3700', '29.3700', '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 (44583, '2021-12-21', 1854, 42462, 3158, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44584, '2021-12-21', 2315, 42463, 3158, NULL, '2.0000', '0.4740', '0.4740', '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 (44585, '2021-12-21', 8166, 42464, 3158, NULL, '1.0000', '4.6000', '4.6000', '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 (44586, '2021-12-21', 8821, 42465, 3158, NULL, '1.0000', '15.0000', '15.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 (44587, '2021-12-21', 9652, 42466, 3158, 43134, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44588, '2021-12-21', 2726, 42467, 3158, NULL, '1.0000', '4.0000', '4.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 (44589, '2021-12-21', 1501, 42468, 3158, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44590, '2021-12-21', 7428, 42469, 3158, NULL, '5.0000', '744.9056', '744.9056', '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 (44591, '2021-12-21', 8941, 42470, 3158, NULL, '1.0000', '12.0000', '12.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 (44592, '2021-12-21', 9274, 42471, 3158, NULL, '2.0000', '3.1000', '3.1000', '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 (44593, '2021-12-21', 1841, 42472, 3158, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '45.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44594, '2021-12-21', 2289, 42473, 3158, NULL, '4.0000', '0.2300', '0.2300', '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 (44595, '2021-12-21', 7781, 42474, 3158, NULL, '4.0000', '4.2500', '4.2500', '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 (44596, '2021-12-21', 7671, 42475, 3158, NULL, '2.0000', '15.5000', '15.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 (44597, '2021-12-21', 2634, 42476, 3158, 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 (44598, '2021-12-21', 7444, 42477, 3158, 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 (44599, '2021-12-21', 7967, 42478, 3158, 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 (44600, '2021-12-21', 7409, 42479, 3158, 30031, '1.0000', '1.3200', '1.3200', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44601, '2021-12-21', 8215, 42480, 3158, NULL, '1.0000', '11.0000', '11.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 (44602, '2021-12-21', 8135, 42481, 3158, NULL, '1.0000', '13.9000', '13.9000', '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 (44603, '2021-12-21', 7705, 42482, 3158, NULL, '1.0000', '5.9900', '5.9900', '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 (44604, '2021-12-21', 8969, 42483, 3158, NULL, '1.0000', '2.0000', '2.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 (44605, '2021-12-21', 7564, 42484, 3158, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44606, '2021-12-21', 7704, 42485, 3158, NULL, '1.0000', '-1.5625', '-1.5625', '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 (44607, '2021-12-21', 8135, 42486, 3158, NULL, '1.0000', '13.9000', '13.9000', '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 (44608, '2021-12-21', 1760, 42487, 3158, 39629, '4.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44609, '2021-12-21', 8154, 42488, 3158, NULL, '2.0000', '12.3000', '12.3000', '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 (44610, '2021-12-21', 8247, 42489, 3158, NULL, '2.0000', '54.0000', '54.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 (44611, '2021-12-21', 8918, 42490, 3158, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44612, '2021-12-21', 7641, 42491, 3158, NULL, '1.0000', '-12.6777', '-12.6777', '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 (44613, '2021-12-21', 2315, 42492, 3158, NULL, '2.0000', '0.4740', '0.4740', '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 (44614, '2021-12-21', 7933, 42493, 3158, NULL, '1.0000', '0.3245', '0.3245', '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 (44615, '2021-12-21', 7672, 42494, 3158, NULL, '1.0000', '1.0200', '1.0200', '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 (44616, '2021-12-21', 7473, 42495, 3158, NULL, '5.0000', '25.2998', '25.2998', '0.6000', '0.6000', '-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 (44617, '2021-12-21', 7509, 42496, 3158, NULL, '1.0000', '6.1333', '6.1333', '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 (44618, '2021-12-21', 7459, 42497, 3158, NULL, '2.0000', '40.3500', '40.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 (44619, '2021-12-21', 9191, 42498, 3158, NULL, '1.0000', '6.6700', '6.6700', '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 (44620, '2021-12-21', 7671, 42499, 3158, NULL, '2.0000', '15.5000', '15.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 (44621, '2021-12-21', 7473, 42500, 3158, NULL, '5.0000', '25.2998', '25.2998', '0.6000', '0.6000', '-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 (44622, '2021-12-21', 7758, 42501, 3158, 43103, '1.0000', '-45.9138', '-45.9138', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44623, '2021-12-21', 7518, 42502, 3158, NULL, '1.0000', '-67.2578', '-67.2578', '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 (44624, '2021-12-21', 7473, 42503, 3158, NULL, '2.0000', '25.2998', '25.2998', '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 (44625, '2021-12-21', 7558, 42504, 3158, 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 (44626, '2021-12-21', 8065, 42505, 3158, 37369, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44627, '2021-12-21', 1837, 42506, 3158, 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 (44628, '2021-12-21', 9098, 42507, 3158, NULL, '2.0000', '25.0000', '25.0000', '34.5000', '34.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 (44629, '2021-12-21', 7514, 42508, 3158, NULL, '1.0000', '12.9983', '12.9983', '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 (44630, '2021-12-21', 3001, 42509, 3158, NULL, '2.0000', '1.5000', '1.5000', '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 (44631, '2021-12-21', 1914, 42510, 3158, NULL, '1.0000', '5.2300', '5.2300', '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 (44632, '2021-12-21', 7658, 42511, 3158, NULL, '2.0000', '63.4193', '63.4193', '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 (44633, '2021-12-21', 7547, 42512, 3158, NULL, '6.0000', '0.0000', '0.0000', '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 (44634, '2021-12-21', 7527, 42513, 3158, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44635, '2021-12-21', 7541, 42514, 3158, NULL, '1.0000', '3.3000', '3.3000', '5.7000', '5.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 (44636, '2021-12-21', 7562, 42515, 3158, NULL, '1.0000', '0.4800', '0.4800', '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 (44637, '2021-12-21', 7674, 42516, 3158, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44638, '2021-12-21', 8445, 42517, 3158, NULL, '1.0000', '34.5000', '34.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 (44639, '2021-12-21', 8101, 42518, 3158, NULL, '2.0000', '21.7000', '21.7000', '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 (44640, '2021-12-21', 1301, 42519, 3158, NULL, '1.0000', '1.6800', '1.6800', '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 (44641, '2021-12-21', 8476, 42520, 3158, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (44642, '2021-12-21', 7641, 42521, 3158, NULL, '1.0000', '-12.6777', '-12.6777', '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 (44643, '2021-12-21', 7451, 42522, 3158, 30197, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44644, '2021-12-21', 1760, 42523, 3158, 39629, '10.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44645, '2021-12-21', 7658, 42524, 3158, NULL, '10.0000', '63.4193', '63.4193', '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 (44646, '2021-12-21', 7554, 42525, 3158, NULL, '16.0000', '3.0308', '3.0308', '2.2000', '2.2000', '-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 (44647, '2021-12-21', 8175, 42526, 3158, NULL, '1.0000', '12.5000', '12.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 (44648, '2021-12-21', 7853, 42527, 3158, NULL, '1.0000', '35.0000', '35.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 (44649, '2021-12-21', 8714, 42528, 3158, NULL, '1.0000', '20.7036', '20.7036', '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 (44650, '2021-12-21', 8941, 42529, 3158, NULL, '1.0000', '12.0000', '12.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 (44651, '2021-12-21', 8594, 42530, 3158, 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 (44652, '2021-12-21', 2287, 42531, 3158, NULL, '4.0000', '2.3000', '2.3000', '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 (44653, '2021-12-21', 8699, 42532, 3158, NULL, '4.0000', '6.3800', '6.3800', '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 (44654, '2021-12-21', 9320, 42533, 3159, NULL, '1.0000', '8.9800', '8.9800', '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 (44655, '2021-12-21', 1706, 42534, 3159, 19677, '-5.0000', '15.2700', '15.2700', '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 (44656, '2021-12-21', 1706, 42534, 3159, NULL, '6.0000', '15.2700', '15.2700', '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 (44657, '2021-12-21', 1586, 42535, 3159, 7603, '-1.0000', '45.8000', '45.8000', '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 (44658, '2021-12-21', 1586, 42535, 3159, NULL, '2.0000', '45.8000', '45.8000', '69.0000', '69.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 (44659, '2021-12-21', 9642, 42536, 3159, NULL, '1.0000', '51.3000', '51.3000', '68.0000', '68.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44660, '2021-12-21', 2965, 42537, 3160, 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 (44661, '2021-12-21', 8200, 42538, 3160, NULL, '3.0000', '629.5726', '629.5726', '8.5000', '8.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 (44662, '2021-12-21', 7590, 42539, 3160, NULL, '1.0000', '4.3600', '4.3600', '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 (44663, '2021-12-21', 8969, 42540, 3160, NULL, '4.0000', '2.0000', '2.0000', '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 (44664, '2021-12-21', 7641, 42541, 3160, NULL, '1.0000', '-12.6777', '-12.6777', '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 (44665, '2021-12-21', 7671, 42542, 3160, NULL, '1.0000', '15.5000', '15.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 (44666, '2021-12-21', 9534, 42543, 3160, NULL, '1.0000', '19.8900', '19.8900', '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 (44667, '2021-12-21', 7853, 42544, 3160, NULL, '1.0000', '35.0000', '35.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 (44668, '2021-12-21', 7358, 42545, 3160, 42421, '1.0000', '14.5455', '14.5455', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44669, '2021-12-21', 9254, 42546, 3160, NULL, '1.0000', '20.0000', '20.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 (44670, '2021-12-21', 2962, 42547, 3160, 44311, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44671, '2021-12-21', 9274, 42548, 3160, NULL, '1.0000', '3.1000', '3.1000', '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 (44672, '2021-12-21', 7674, 42549, 3160, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44673, '2021-12-21', 1557, 42550, 3160, NULL, '1.0000', '7.6000', '7.6000', '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 (44674, '2021-12-21', 7886, 42551, 3160, NULL, '1.0000', '2.8333', '2.8333', '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 (44675, '2021-12-21', 7391, 42552, 3160, NULL, '1.0000', '-26.2683', '-26.2683', '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 (44676, '2021-12-21', 9274, 42553, 3160, NULL, '1.0000', '3.1000', '3.1000', '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 (44677, '2021-12-21', 2315, 42554, 3160, NULL, '2.0000', '0.4740', '0.4740', '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 (44678, '2021-12-21', 7848, 42555, 3160, NULL, '1.0000', '1.3500', '1.3500', '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 (44679, '2021-12-21', 7464, 42556, 3160, NULL, '1.0000', '-57.6000', '-57.6000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44680, '2021-12-21', 1321, 42557, 3160, NULL, '1.0000', '9.8000', '9.8000', '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 (44681, '2021-12-21', 7831, 42558, 3160, NULL, '1.0000', '27.7500', '27.7500', '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 (44682, '2021-12-21', 1967, 42559, 3160, NULL, '1.0000', '19.5900', '19.5900', '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 (44683, '2021-12-21', 7514, 42560, 3160, NULL, '2.0000', '12.9983', '12.9983', '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 (44684, '2021-12-21', 8204, 42561, 3160, NULL, '2.0000', '10.0000', '10.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 (44685, '2021-12-21', 7674, 42562, 3160, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44686, '2021-12-21', 7981, 42563, 3160, NULL, '10.0000', '6.0000', '6.0000', '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 (44687, '2021-12-21', 8810, 42564, 3160, NULL, '1.0000', '1.9200', '1.9200', '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 (44688, '2021-12-21', 7514, 42565, 3160, NULL, '1.0000', '12.9983', '12.9983', '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 (44689, '2021-12-21', 2104, 42566, 3160, NULL, '2.0000', '0.2000', '0.2000', '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 (44690, '2021-12-21', 9561, 42567, 3160, 42671, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44691, '2021-12-21', 9562, 42568, 3160, 42670, '5.0000', '5.4000', '5.4000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44692, '2021-12-21', 8243, 42569, 3160, NULL, '2.0000', '1.1400', '1.1400', '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 (44693, '2021-12-21', 7411, 42570, 3160, NULL, '1.0000', '1.3500', '1.3500', '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 (44694, '2021-12-21', 8288, 42571, 3160, NULL, '50.0000', '20.0000', '20.0000', '1.8000', '1.8000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44695, '2021-12-21', 8034, 42572, 3160, NULL, '1.0000', '4.8900', '4.8900', '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 (44696, '2021-12-21', 7390, 42573, 3160, NULL, '1.0000', '18.2100', '18.2100', '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 (44697, '2021-12-21', 9667, 42574, 3160, 42419, '1.0000', '17.0000', '17.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44698, '2021-12-21', 9394, 42575, 3160, NULL, '1.0000', '5.5000', '5.5000', '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 (44699, '2021-12-21', 2476, 42576, 3160, NULL, '2.0000', '10.0000', '10.0000', '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 (44700, '2021-12-21', 9412, 42577, 3160, NULL, '1.0000', '25.0000', '25.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 (44701, '2021-12-21', 9393, 42578, 3160, NULL, '1.0000', '15.0000', '15.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 (44702, '2021-12-21', 2763, 42579, 3160, 40409, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44703, '2021-12-21', 9680, 42580, 3160, 42786, '1.0000', '37.0000', '37.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44704, '2021-12-21', 7657, 42581, 3160, NULL, '1.0000', '5.4700', '5.4700', '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 (44705, '2021-12-21', 1328, 42582, 3160, 39397, '1.0000', '436.9108', '436.9108', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44706, '2021-12-21', 7781, 42583, 3160, NULL, '3.0000', '4.2500', '4.2500', '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 (44707, '2021-12-21', 2350, 42584, 3160, NULL, '1.0000', '10.3800', '10.3800', '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 (44708, '2021-12-21', 8596, 42585, 3160, NULL, '1.0000', '17.0000', '17.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 (44709, '2021-12-21', 7671, 42586, 3160, NULL, '2.0000', '15.5000', '15.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 (44710, '2021-12-21', 7447, 42587, 3160, NULL, '12.0000', '19.1100', '19.1100', '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 (44711, '2021-12-21', 8596, 42588, 3160, NULL, '1.0000', '17.0000', '17.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 (44712, '2021-12-21', 7779, 42589, 3160, NULL, '1.0000', '8.3800', '8.3800', '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 (44713, '2021-12-21', 7593, 42590, 3160, 43429, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44714, '2021-12-21', 7927, 42591, 3160, 43164, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44715, '2021-12-21', 7633, 42592, 3160, NULL, '1.0000', '2.8700', '2.8700', '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 (44716, '2021-12-21', 7707, 42593, 3160, NULL, '1.0000', '6.0012', '6.0012', '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 (44717, '2021-12-21', 7715, 42594, 3160, NULL, '1.0000', '1.8900', '1.8900', '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 (44718, '2021-12-21', 7674, 42595, 3160, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44719, '2021-12-21', 9178, 42596, 3160, 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 (44720, '2021-12-21', 2289, 42597, 3160, NULL, '1.0000', '0.2300', '0.2300', '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 (44721, '2021-12-21', 2699, 42598, 3161, 43997, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44722, '2021-12-21', 1311, 42599, 3161, 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 (44723, '2021-12-21', 1557, 42600, 3161, NULL, '1.0000', '7.6800', '7.6800', '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 (44724, '2021-12-21', 2444, 42601, 3161, 42645, '1.0000', '6.7956', '6.7956', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44725, '2021-12-21', 2730, 42602, 3161, 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 (44726, '2021-12-21', 7633, 42603, 3161, NULL, '1.0000', '2.8700', '2.8700', '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 (44727, '2021-12-21', 7780, 42604, 3161, NULL, '1.0000', '2.6000', '2.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 (44728, '2021-12-21', 2003, 42605, 3161, 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 (44729, '2021-12-21', 1409, 42606, 3161, NULL, '1.0000', '13.5000', '13.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 (44730, '2021-12-21', 8539, 42607, 3161, NULL, '5.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (44731, '2021-12-21', 2891, 42608, 3161, 34014, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44732, '2021-12-21', 2109, 42609, 3161, 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 (44733, '2021-12-21', 1528, 42610, 3161, 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 (44734, '2021-12-21', 1394, 42611, 3161, NULL, '1.0000', '9.2833', '9.2833', '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 (44735, '2021-12-21', 2289, 42612, 3161, 42836, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '22.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44736, '2021-12-21', 2061, 42613, 3161, NULL, '1.0000', '10.6800', '10.6800', '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 (44737, '2021-12-21', 7848, 42614, 3161, 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 (44738, '2021-12-21', 7411, 42615, 3161, NULL, '2.0000', '1.3500', '1.3500', '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 (44739, '2021-12-21', 1650, 42616, 3161, 39791, '1.0000', '13.8051', '13.8051', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44740, '2021-12-21', 1704, 42617, 3161, NULL, '1.0000', '30.1576', '30.1576', '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 (44741, '2021-12-21', 7458, 42618, 3161, NULL, '5.0000', '3.0000', '3.0000', '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 (44742, '2021-12-21', 1665, 42619, 3161, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44743, '2021-12-21', 1425, 42620, 3161, 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 (44744, '2021-12-21', 8033, 42621, 3161, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44745, '2021-12-21', 7317, 42622, 3161, NULL, '1.0000', '19.5500', '19.5500', '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 (44746, '2021-12-21', 7926, 42623, 3161, 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 (44747, '2021-12-21', 1916, 42624, 3161, 34640, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44748, '2021-12-21', 7411, 42625, 3161, NULL, '3.0000', '1.3500', '1.3500', '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 (44749, '2021-12-21', 7671, 42626, 3161, NULL, '1.0000', '15.5000', '15.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 (44750, '2021-12-21', 7672, 42627, 3161, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '78.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44751, '2021-12-21', 9012, 42628, 3161, NULL, '1.0000', '24.0000', '24.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 (44752, '2021-12-21', 2163, 42629, 3161, 42806, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44753, '2021-12-21', 1912, 42630, 3161, 42544, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44754, '2021-12-21', 1812, 42631, 3161, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44755, '2021-12-21', 1649, 42632, 3161, 42556, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44756, '2021-12-21', 2280, 42633, 3161, NULL, '1.0000', '-177.9360', '-177.9360', '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 (44757, '2021-12-21', 7688, 42634, 3161, NULL, '1.0000', '13.3400', '13.3400', '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 (44758, '2021-12-21', 8476, 42635, 3161, NULL, '8.0000', '23.0000', '23.0000', '0.6000', '0.6000', '-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 (44759, '2021-12-21', 2101, 42636, 3161, 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 (44760, '2021-12-21', 1825, 42637, 3161, NULL, '1.0000', '4.3850', '4.3850', '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 (44761, '2021-12-21', 8011, 42638, 3161, NULL, '1.0000', '0.9500', '0.9500', '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 (44762, '2021-12-21', 1641, 42639, 3161, 38521, '9.0000', '1.9923', '1.9923', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44763, '2021-12-21', 9556, 42640, 3161, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44764, '2021-12-21', 8456, 42641, 3161, NULL, '1.0000', '5.5400', '5.5400', '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 (44765, '2021-12-21', 7674, 42642, 3161, NULL, '1.0000', '1.3000', '1.3000', '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 (44766, '2021-12-21', 7645, 42643, 3161, NULL, '1.0000', '6.0000', '6.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44767, '2021-12-21', 1839, 42644, 3161, NULL, '1.0000', '1.8866', '1.8866', '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 (44768, '2021-12-21', 3027, 42645, 3161, 23977, '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 (44769, '2021-12-21', 1935, 42646, 3161, 41370, '2.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44770, '2021-12-21', 7672, 42647, 3161, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '78.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44771, '2021-12-21', 1855, 42648, 3161, 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 (44772, '2021-12-21', 7411, 42649, 3161, NULL, '1.0000', '1.3500', '1.3500', '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 (44773, '2021-12-21', 7639, 42650, 3161, 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 (44774, '2021-12-21', 9275, 42651, 3161, NULL, '1.0000', '6.3000', '6.3000', '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 (44775, '2021-12-21', 1602, 42652, 3161, 41376, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44776, '2021-12-21', 8763, 42653, 3161, 44148, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44777, '2021-12-21', 1665, 42654, 3161, 37445, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44778, '2021-12-21', 2302, 42655, 3161, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44779, '2021-12-21', 2822, 42656, 3161, 44068, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '48.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44780, '2021-12-21', 2315, 42657, 3161, NULL, '2.0000', '0.8556', '0.8556', '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 (44781, '2021-12-21', 7458, 42658, 3161, NULL, '5.0000', '3.0000', '3.0000', '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 (44782, '2021-12-21', 7514, 42659, 3161, NULL, '1.0000', '2.2500', '2.2500', '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 (44783, '2021-12-21', 2280, 42660, 3161, NULL, '1.0000', '-177.9360', '-177.9360', '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 (44784, '2021-12-21', 1386, 42661, 3161, 41413, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44785, '2021-12-21', 1450, 42662, 3161, 43237, '1.0000', '0.8900', '0.8900', '1.2000', '1.2000', '34.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44786, '2021-12-21', 7674, 42663, 3161, NULL, '1.0000', '1.3000', '1.3000', '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 (44787, '2021-12-21', 7671, 42664, 3161, NULL, '1.0000', '15.5000', '15.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 (44788, '2021-12-21', 7639, 42665, 3161, 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 (44789, '2021-12-21', 3025, 42666, 3161, 44157, '1.0000', '2.9545', '2.9545', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44790, '2021-12-21', 1871, 42667, 3161, NULL, '2.0000', '2.9308', '2.9308', '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 (44791, '2021-12-21', 1612, 42668, 3161, 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 (44792, '2021-12-21', 9578, 42669, 3161, 42661, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44793, '2021-12-21', 7674, 42670, 3161, NULL, '1.0000', '1.3000', '1.3000', '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 (44794, '2021-12-21', 2037, 42671, 3161, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '12.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 (44795, '2021-12-21', 2732, 42672, 3161, 33156, '1.0000', '28.0563', '28.0563', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44796, '2021-12-21', 1570, 42673, 3161, 23146, '1.0000', '42.0000', '42.0000', '55.0000', '55.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 (44797, '2021-12-21', 3071, 42674, 3161, 25156, '1.0000', '12.5000', '12.5000', '16.5000', '16.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 (44798, '2021-12-21', 2105, 42675, 3161, 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 (44799, '2021-12-21', 1674, 42676, 3161, NULL, '1.0000', '3.2473', '3.2473', '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 (44800, '2021-12-21', 1953, 42677, 3161, 34626, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44801, '2021-12-21', 8485, 42678, 3161, NULL, '1.0000', '7.0400', '7.0400', '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 (44802, '2021-12-21', 7429, 42679, 3161, NULL, '1.0000', '18.0000', '18.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 (44803, '2021-12-21', 3058, 42680, 3161, NULL, '1.0000', '4.6750', '4.6750', '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 (44804, '2021-12-21', 2315, 42681, 3161, NULL, '1.0000', '0.8556', '0.8556', '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 (44805, '2021-12-21', 7411, 42682, 3161, NULL, '1.0000', '1.3500', '1.3500', '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 (44806, '2021-12-21', 9707, 42683, 3161, 44395, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44807, '2021-12-21', 2251, 42684, 3161, 42067, '1.0000', '12.1904', '12.1904', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44808, '2021-12-21', 9478, 42685, 3161, 32539, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44809, '2021-12-21', 2950, 42686, 3161, 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 (44810, '2021-12-21', 1746, 42687, 3161, 19863, '1.0000', '3.5000', '3.5000', '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 (44811, '2021-12-21', 7473, 42688, 3161, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '72.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44812, '2021-12-21', 9556, 42689, 3161, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44813, '2021-12-21', 1365, 42690, 3161, 34575, '2.0000', '42.5894', '42.5894', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44814, '2021-12-21', 1519, 42691, 3161, NULL, '1.0000', '3.3980', '3.3980', '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 (44815, '2021-12-21', 7411, 42692, 3161, NULL, '1.0000', '1.3500', '1.3500', '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 (44816, '2021-12-21', 7448, 42693, 3162, NULL, '12.0000', '15.8500', '15.8500', '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 (44817, '2021-12-21', 1837, 42694, 3162, 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 (44818, '2021-12-21', 2829, 42695, 3162, 40166, '1.0000', '24.9924', '24.9924', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44819, '2021-12-21', 1502, 42696, 3162, 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 (44820, '2021-12-21', 1935, 42697, 3162, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44821, '2021-12-21', 2829, 42698, 3162, 40166, '1.0000', '24.9924', '24.9924', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44822, '2021-12-21', 3013, 42699, 3162, 40651, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44823, '2021-12-21', 9642, 42700, 3162, 41991, '1.0000', '51.3000', '51.3000', '68.0000', '68.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44824, '2021-12-21', 1586, 42701, 3162, 40851, '1.0000', '49.0100', '49.0100', '69.0000', '69.0000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44825, '2021-12-21', 1706, 42702, 3162, 44295, '1.0000', '10.2680', '10.2680', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44826, '2021-12-21', 9320, 42703, 3162, NULL, '1.0000', '8.9800', '8.9800', '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 (44827, '2021-12-21', 2285, 42704, 3162, 9582, '-1.0000', '36.5090', '36.5090', '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 (44828, '2021-12-21', 2285, 42704, 3162, 9582, '-1.0000', '36.5090', '36.5090', '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 (44829, '2021-12-21', 2285, 42704, 3162, 4835, '1.0000', '36.5090', '36.5090', '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 (44830, '2021-12-21', 2285, 42704, 3162, 3125, '1.0000', '36.5090', '36.5090', '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 (44831, '2021-12-21', 2858, 42705, 3162, 17780, '2.0000', '1.0000', '1.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 (44832, '2021-12-21', 7886, 42706, 3162, 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 (44833, '2021-12-21', 7316, 42707, 3162, NULL, '20.0000', '9.5500', '9.5500', '1.2000', '1.2000', '-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 (44834, '2021-12-21', 1863, 42708, 3162, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44835, '2021-12-21', 1603, 42709, 3162, 10027, '1.0000', '56.0200', '56.0200', '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 (44836, '2021-12-21', 7629, 42710, 3162, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44837, '2021-12-21', 2221, 42711, 3162, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44838, '2021-12-21', 2292, 42712, 3162, 3132, '1.0000', '55.0000', '55.0000', '73.0000', '73.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44839, '2021-12-21', 1863, 42713, 3162, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44840, '2021-12-21', 1382, 42714, 3162, 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 (44841, '2021-12-21', 2285, 42715, 3162, 9582, '-1.0000', '36.5090', '36.5090', '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 (44842, '2021-12-21', 2285, 42715, 3162, 9582, '-1.0000', '36.5090', '36.5090', '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 (44843, '2021-12-21', 2285, 42715, 3162, 4835, '1.0000', '36.5090', '36.5090', '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 (44844, '2021-12-21', 2285, 42715, 3162, 3125, '1.0000', '36.5090', '36.5090', '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 (44845, '2021-12-21', 2698, 42716, 3162, 43834, '1.0000', '36.8600', '36.8600', '49.0000', '49.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44846, '2021-12-21', 2060, 42717, 3162, 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 (44847, '2021-12-21', 8743, 42718, 3162, NULL, '1.0000', '9.9444', '9.9444', '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 (44848, '2021-12-21', 1863, 42719, 3162, 43815, '3.0000', '1.1829', '1.1829', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44849, '2021-12-21', 2228, 42720, 3162, 44273, '1.0000', '24.7277', '24.7277', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44850, '2021-12-21', 1584, 42721, 3162, 44284, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44851, '2021-12-21', 7963, 42722, 3162, NULL, '1.0000', '14.7000', '14.7000', '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 (44852, '2021-12-21', 1836, 42723, 3162, 4969, '2.0000', '10.6000', '10.6000', '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 (44853, '2021-12-21', 2366, 42724, 3162, 3901, '1.0000', '3.7873', '3.7873', '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 (44854, '2021-12-21', 2366, 42724, 3162, NULL, '1.0000', '3.7873', '3.7873', '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 (44855, '2021-12-21', 2657, 42725, 3162, 11407, '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 (44856, '2021-12-21', 2169, 42726, 3162, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44857, '2021-12-21', 1303, 42727, 3162, 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 (44858, '2021-12-21', 1636, 42728, 3162, 10308, '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 (44859, '2021-12-21', 2285, 42729, 3162, 9582, '-1.0000', '36.5090', '36.5090', '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 (44860, '2021-12-21', 2285, 42729, 3162, 9582, '-1.0000', '36.5090', '36.5090', '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 (44861, '2021-12-21', 2285, 42729, 3162, 4835, '1.0000', '36.5090', '36.5090', '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 (44862, '2021-12-21', 2285, 42729, 3162, 3125, '1.0000', '36.5090', '36.5090', '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 (44863, '2021-12-21', 2056, 42730, 3162, 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 (44864, '2021-12-21', 2602, 42731, 3162, NULL, '2.0000', '4.0000', '4.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 (44865, '2021-12-21', 1650, 42732, 3162, 43880, '1.0000', '14.3200', '14.3200', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44866, '2021-12-21', 1863, 42733, 3162, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44867, '2021-12-21', 1863, 42734, 3162, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44868, '2021-12-21', 1704, 42735, 3162, 43807, '1.0000', '3621.8219', '3621.8219', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44869, '2021-12-21', 1935, 42736, 3162, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44870, '2021-12-21', 1525, 42737, 3162, NULL, '3.0000', '90.0000', '90.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 (44871, '2021-12-21', 2281, 42738, 3162, NULL, '3.0000', '3.0000', '3.0000', '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 (44872, '2021-12-21', 1584, 42739, 3162, 44284, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44873, '2021-12-21', 1639, 42740, 3162, 43553, '1.0000', '7.3300', '7.3300', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44874, '2021-12-21', 2155, 42741, 3162, 17327, '1.0000', '21.7000', '21.7000', '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 (44875, '2021-12-21', 1688, 42742, 3162, 43845, '1.0000', '17.9506', '17.9506', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44876, '2021-12-21', 1863, 42743, 3163, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44877, '2021-12-21', 9695, 42744, 3163, 43804, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44878, '2021-12-21', 2155, 42745, 3163, 17327, '1.0000', '21.7000', '21.7000', '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 (44879, '2021-12-21', 7509, 42746, 3164, NULL, '1.0000', '6.1333', '6.1333', '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 (44880, '2021-12-21', 7736, 42747, 3164, NULL, '1.0000', '15.0000', '15.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 (44881, '2021-12-21', 8166, 42748, 3164, NULL, '1.0000', '4.6000', '4.6000', '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 (44882, '2021-12-21', 1598, 42749, 3164, NULL, '1.0000', '2.9300', '2.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 (44883, '2021-12-21', 7411, 42750, 3164, NULL, '1.0000', '1.3500', '1.3500', '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 (44884, '2021-12-21', 7317, 42751, 3164, NULL, '1.0000', '29.3700', '29.3700', '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 (44885, '2021-12-21', 7411, 42752, 3164, NULL, '1.0000', '1.3500', '1.3500', '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 (44886, '2021-12-21', 7317, 42753, 3164, NULL, '1.0000', '29.3700', '29.3700', '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 (44887, '2021-12-21', 1329, 42754, 3164, 225, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44888, '2021-12-21', 8203, 42755, 3164, NULL, '2.0000', '1.0075', '1.0075', '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 (44889, '2021-12-21', 7671, 42756, 3164, NULL, '1.0000', '15.5000', '15.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 (44890, '2021-12-21', 7359, 42757, 3164, NULL, '1.0000', '10.6650', '10.6650', '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 (44891, '2021-12-21', 2315, 42758, 3164, NULL, '1.0000', '0.4740', '0.4740', '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 (44892, '2021-12-21', 7411, 42759, 3164, NULL, '1.0000', '1.3500', '1.3500', '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 (44893, '2021-12-21', 1841, 42760, 3164, 33726, '3.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44894, '2021-12-21', 2289, 42761, 3164, 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 (44895, '2021-12-21', 7588, 42762, 3164, NULL, '1.0000', '7.0762', '7.0762', '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 (44896, '2021-12-21', 7892, 42763, 3164, NULL, '1.0000', '4.2000', '4.2000', '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 (44897, '2021-12-21', 8702, 42764, 3164, NULL, '1.0000', '3.6700', '3.6700', '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 (44898, '2021-12-21', 8515, 42765, 3164, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (44899, '2021-12-21', 7815, 42766, 3164, NULL, '1.0000', '13.0000', '13.0000', '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 (44900, '2021-12-21', 8395, 42767, 3164, NULL, '1.0000', '0.9700', '0.9700', '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 (44901, '2021-12-21', 7756, 42768, 3164, NULL, '1.0000', '21.7700', '21.7700', '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 (44902, '2021-12-21', 2295, 42769, 3164, 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 (44903, '2021-12-21', 7784, 42770, 3164, NULL, '1.0000', '4.2500', '4.2500', '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 (44904, '2021-12-21', 8457, 42771, 3164, NULL, '1.0000', '0.7500', '0.7500', '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 (44905, '2021-12-21', 7980, 42772, 3164, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (44906, '2021-12-21', 8200, 42773, 3164, NULL, '1.0000', '629.5726', '629.5726', '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 (44907, '2021-12-21', 9445, 42774, 3164, 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 (44908, '2021-12-21', 7671, 42775, 3164, NULL, '1.0000', '15.5000', '15.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 (44909, '2021-12-21', 9214, 42776, 3164, 43937, '1.0000', '9.4452', '9.4452', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44910, '2021-12-21', 7639, 42777, 3164, 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 (44911, '2021-12-21', 7317, 42778, 3164, NULL, '1.0000', '29.3700', '29.3700', '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 (44912, '2021-12-21', 7518, 42779, 3164, NULL, '4.0000', '-67.2578', '-67.2578', '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 (44913, '2021-12-21', 8106, 42780, 3164, NULL, '14.0000', '17.0000', '17.0000', '3.8000', '3.8000', '-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 (44914, '2021-12-21', 9417, 42781, 3164, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44915, '2021-12-21', 8952, 42782, 3164, 44315, '1.0000', '6.5333', '6.5333', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44916, '2021-12-21', 2351, 42783, 3164, NULL, '1.0000', '17.7000', '17.7000', '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 (44917, '2021-12-21', 7674, 42784, 3164, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44918, '2021-12-21', 8720, 42785, 3164, NULL, '1.0000', '31.1100', '31.1100', '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 (44919, '2021-12-21', 7317, 42786, 3164, NULL, '1.0000', '29.3700', '29.3700', '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 (44920, '2021-12-21', 1510, 42787, 3165, 1513, '1.0000', '29.8200', '29.8200', '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 (44921, '2021-12-21', 7411, 42788, 3165, NULL, '1.0000', '1.3500', '1.3500', '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 (44922, '2021-12-21', 2003, 42789, 3165, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44923, '2021-12-21', 7411, 42790, 3166, NULL, '2.0000', '1.3500', '1.3500', '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 (44924, '2021-12-21', 2020, 42791, 3166, NULL, '1.0000', '9.2832', '9.2832', '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 (44925, '2021-12-21', 1339, 42792, 3166, NULL, '1.0000', '2.0000', '2.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 (44926, '2021-12-21', 1532, 42793, 3166, NULL, '3.0000', '7.4815', '7.4815', '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 (44927, '2021-12-21', 1846, 42794, 3167, 19327, '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 (44928, '2021-12-21', 7411, 42795, 3167, NULL, '1.0000', '1.3500', '1.3500', '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 (44929, '2021-12-21', 2662, 42796, 3168, 31983, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44930, '2021-12-21', 2283, 42797, 3168, 3123, '1.0000', '1.4300', '1.4300', '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 (44931, '2021-12-21', 1872, 42798, 3168, 12746, '1.0000', '9.0500', '9.0500', '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 (44932, '2021-12-21', 7877, 42799, 3169, NULL, '1.0000', '1.3600', '1.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 (44933, '2021-12-21', 7674, 42800, 3169, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44934, '2021-12-21', 7444, 42801, 3170, 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 (44935, '2021-12-21', 9639, 42802, 3170, 43540, '1.0000', '28.7900', '28.7900', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44936, '2021-12-21', 9692, 42803, 3170, 43551, '2.0000', '10.4500', '10.4500', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44937, '2021-12-21', 9097, 42804, 3170, 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 (44938, '2021-12-22', 1504, 42805, 3171, NULL, '20.0000', '1.5000', '1.5000', '2.2000', '2.2000', '-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 (44939, '2021-12-22', 2916, 42806, 3171, 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 (44940, '2021-12-22', 1755, 42807, 3172, 42087, '1.0000', '5.7200', '5.7200', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44941, '2021-12-22', 2821, 42808, 3172, 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 (44942, '2021-12-22', 2003, 42809, 3172, 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 (44943, '2021-12-22', 7635, 42810, 3172, NULL, '1.0000', '6.6300', '6.6300', '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 (44944, '2021-12-22', 7672, 42811, 3172, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44945, '2021-12-22', 8775, 42812, 3172, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44946, '2021-12-22', 2662, 42813, 3172, 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 (44947, '2021-12-22', 2321, 42814, 3172, 39848, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44948, '2021-12-22', 2277, 42815, 3172, 43261, '1.0000', '0.9399', '0.9399', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44949, '2021-12-22', 2821, 42816, 3172, 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 (44950, '2021-12-22', 1381, 42817, 3172, 41381, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44951, '2021-12-22', 1950, 42818, 3172, NULL, '1.0000', '3.5525', '3.5525', '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 (44952, '2021-12-22', 1519, 42819, 3172, NULL, '1.0000', '3.3980', '3.3980', '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 (44953, '2021-12-22', 2320, 42820, 3172, 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 (44954, '2021-12-22', 2993, 42821, 3172, 43232, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44955, '2021-12-22', 1382, 42822, 3172, 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 (44956, '2021-12-22', 1630, 42823, 3172, 31083, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44957, '2021-12-22', 2169, 42824, 3172, NULL, '1.0000', '1.1500', '1.1500', '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 (44958, '2021-12-22', 1863, 42825, 3172, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44959, '2021-12-22', 7741, 42826, 3172, NULL, '1.0000', '1.2000', '1.2000', '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 (44960, '2021-12-22', 7328, 42827, 3172, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (44961, '2021-12-22', 9512, 42828, 3172, NULL, '1.0000', '1.3100', '1.3100', '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 (44962, '2021-12-22', 8863, 42829, 3172, 44441, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44963, '2021-12-22', 2916, 42830, 3172, NULL, '1.0000', '14.8227', '14.8227', '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 (44964, '2021-12-22', 2169, 42831, 3172, NULL, '1.0000', '1.1500', '1.1500', '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 (44965, '2021-12-22', 1771, 42832, 3172, 13766, '1.0000', '3.3900', '3.3900', '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 (44966, '2021-12-22', 1577, 42833, 3172, 39771, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44967, '2021-12-22', 1771, 42834, 3172, 13766, '1.0000', '3.3900', '3.3900', '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 (44968, '2021-12-22', 1863, 42835, 3172, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44969, '2021-12-22', 9577, 42836, 3172, NULL, '1.0000', '0.3200', '0.3200', '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 (44970, '2021-12-22', 8188, 42837, 3172, NULL, '2.0000', '0.9000', '0.9000', '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 (44971, '2021-12-22', 8177, 42838, 3172, 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 (44972, '2021-12-22', 7658, 42839, 3172, NULL, '5.0000', '10.1500', '10.1500', '2.5000', '2.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 (44973, '2021-12-22', 1695, 42840, 3172, 44430, '1.0000', '22.6608', '22.6608', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 316);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44974, '2021-12-22', 8638, 42841, 3172, NULL, '1.0000', '0.5100', '0.5100', '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 (44975, '2021-12-22', 2573, 42842, 3172, NULL, '1.0000', '8.7800', '8.7800', '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 (44976, '2021-12-22', 8407, 42843, 3172, NULL, '1.0000', '2.9800', '2.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 (44977, '2021-12-22', 9468, 42844, 3172, NULL, '1.0000', '18.7500', '18.7500', '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 (44978, '2021-12-22', 1504, 42845, 3172, 38525, '10.0000', '2.1038', '2.1038', '2.2000', '2.2000', '20.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44979, '2021-12-22', 8188, 42846, 3172, 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 (44980, '2021-12-22', 2643, 42847, 3172, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44981, '2021-12-22', 7802, 42848, 3172, NULL, '1.0000', '0.9200', '0.9200', '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 (44982, '2021-12-22', 2712, 42849, 3172, 44438, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44983, '2021-12-22', 2379, 42850, 3172, NULL, '1.0000', '1.8000', '1.8000', '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 (44984, '2021-12-22', 1863, 42851, 3172, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44985, '2021-12-22', 2643, 42852, 3172, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44986, '2021-12-22', 2416, 42853, 3172, 44001, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44987, '2021-12-22', 2058, 42854, 3172, NULL, '1.0000', '10.0000', '10.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 (44988, '2021-12-22', 2379, 42855, 3172, NULL, '1.0000', '1.8000', '1.8000', '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 (44989, '2021-12-22', 1845, 42856, 3173, NULL, '1.0000', '19.9667', '19.9667', '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 (44990, '2021-12-22', 7415, 42857, 3173, NULL, '1.0000', '5.4200', '5.4200', '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 (44991, '2021-12-22', 1863, 42858, 3173, 42816, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44992, '2021-12-22', 7917, 42859, 3173, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44993, '2021-12-22', 1371, 42860, 3173, 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 (44994, '2021-12-22', 7713, 42861, 3173, NULL, '2.0000', '4.4000', '4.4000', '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 (44995, '2021-12-22', 2362, 42862, 3174, 3864, '-54.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 (44996, '2021-12-22', 2362, 42862, 3174, NULL, '64.0000', '8.8300', '8.8300', '12.0000', '12.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44997, '2021-12-22', 1375, 42863, 3174, 33795, '1.0000', '92.1118', '92.1118', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44998, '2021-12-22', 1375, 42863, 3174, 275, '1.0000', '92.1118', '92.1118', '19.0000', '19.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 (44999, '2021-12-22', 7339, 42864, 3174, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (45000, '2021-12-22', 3013, 42865, 3174, 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 (45001, '2021-12-22', 1641, 42866, 3174, 3214, '-155.0000', '0.9800', '0.9800', '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 (45002, '2021-12-22', 1641, 42866, 3174, NULL, '160.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-160.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45003, '2021-12-22', 1533, 42867, 3174, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (45004, '2021-12-22', 2285, 42868, 3174, 2945, '-26.0000', '35.8000', '35.8000', '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 (45005, '2021-12-22', 2285, 42868, 3174, NULL, '27.0000', '35.8000', '35.8000', '49.0000', '49.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 (45006, '2021-12-22', 1593, 42869, 3174, 8359, '5.0000', '57.4565', '57.4565', '8.7000', '8.7000', '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 (45007, '2021-12-22', 1912, 42870, 3174, 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 (45008, '2021-12-22', 1812, 42871, 3174, 8224, '-46.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 (45009, '2021-12-22', 1812, 42871, 3174, NULL, '47.0000', '7.8900', '7.8900', '10.5000', '10.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 (45010, '2021-12-22', 2712, 42872, 3174, NULL, '6.0000', '0.2600', '0.2600', '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 (45011, '2021-12-22', 1550, 42873, 3174, NULL, '1.0000', '13.9000', '13.9000', '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 (45012, '2021-12-22', 1687, 42874, 3174, 5785, '-19.0000', '165.9024', '165.9024', '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 (45013, '2021-12-22', 1687, 42874, 3174, NULL, '20.0000', '165.9024', '165.9024', '16.0000', '16.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 (45014, '2021-12-22', 1346, 42875, 3174, 21942, '-39.0000', '1.0594', '1.0594', '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 (45015, '2021-12-22', 1346, 42875, 3174, NULL, '54.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45016, '2021-12-22', 2712, 42876, 3174, 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 (45017, '2021-12-22', 2281, 42877, 3174, 2941, '-27.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 (45018, '2021-12-22', 2281, 42877, 3174, NULL, '31.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-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 (45019, '2021-12-22', 2916, 42878, 3174, 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 (45020, '2021-12-22', 7573, 42879, 3174, NULL, '1.0000', '5.5000', '5.5000', '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 (45021, '2021-12-22', 2277, 42880, 3174, 2937, '-29.0000', '0.7800', '0.7800', '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 (45022, '2021-12-22', 2277, 42880, 3174, NULL, '31.0000', '0.7800', '0.7800', '1.5000', '1.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 (45023, '2021-12-22', 3074, 42881, 3174, 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 (45024, '2021-12-22', 1876, 42882, 3174, 672, '1.0000', '0.9126', '0.9126', '25.0000', '25.0000', '0.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 (45025, '2021-12-22', 2307, 42883, 3174, NULL, '1.0000', '118.9901', '118.9901', '161.0000', '161.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45026, '2021-12-22', 1688, 42884, 3174, 4896, '-6.0000', '18.5000', '18.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 (45027, '2021-12-22', 1688, 42884, 3174, NULL, '7.0000', '18.5000', '18.5000', '25.0000', '25.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 (45028, '2021-12-22', 1603, 42885, 3174, 8727, '-1.0000', '59.4600', '59.4600', '78.5000', '78.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 (45029, '2021-12-22', 1603, 42885, 3174, NULL, '2.0000', '59.4600', '59.4600', '78.5000', '78.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 (45030, '2021-12-22', 1912, 42886, 3174, 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 (45031, '2021-12-22', 9577, 42887, 3174, NULL, '2.0000', '0.3200', '0.3200', '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 (45032, '2021-12-22', 1644, 42888, 3174, 3216, '-2.0000', '33.8200', '33.8200', '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 (45033, '2021-12-22', 1644, 42888, 3174, NULL, '3.0000', '33.8200', '33.8200', '48.0000', '48.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 (45034, '2021-12-22', 1650, 42889, 3174, 3221, '-3.0000', '14.8000', '14.8000', '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 (45035, '2021-12-22', 1650, 42889, 3174, NULL, '4.0000', '14.8000', '14.8000', '19.5000', '19.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 (45036, '2021-12-22', 1592, 42890, 3174, 6223, '-7.0000', '35.9000', '35.9000', '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 (45037, '2021-12-22', 1592, 42890, 3174, NULL, '8.0000', '35.9000', '35.9000', '44.0000', '44.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 (45038, '2021-12-22', 1935, 42891, 3174, 5586, '-47.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 (45039, '2021-12-22', 1935, 42891, 3174, NULL, '49.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45040, '2021-12-22', 2655, 42892, 3174, 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 (45041, '2021-12-22', 1529, 42893, 3174, 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 (45042, '2021-12-22', 1949, 42894, 3174, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '6.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 (45043, '2021-12-22', 7728, 42895, 3174, NULL, '1.0000', '1.8000', '1.8000', '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 (45044, '2021-12-22', 2712, 42896, 3174, 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 (45045, '2021-12-22', 2167, 42897, 3174, 17165, '-31.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 (45046, '2021-12-22', 2167, 42897, 3174, NULL, '32.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45047, '2021-12-22', 7728, 42898, 3174, NULL, '1.0000', '1.8000', '1.8000', '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 (45048, '2021-12-22', 1622, 42899, 3174, 8739, '-4.0000', '44.8492', '44.8492', '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 (45049, '2021-12-22', 1622, 42899, 3174, NULL, '5.0000', '44.8492', '44.8492', '32.0000', '32.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 (45050, '2021-12-22', 2056, 42900, 3174, 1034, '1.0000', '5.4100', '5.4100', '7.5000', '7.5000', '8.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 (45051, '2021-12-22', 1460, 42901, 3174, 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 (45052, '2021-12-22', 2320, 42902, 3174, 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 (45053, '2021-12-22', 1411, 42903, 3174, NULL, '1.0000', '25.9000', '25.9000', '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 (45054, '2021-12-22', 1908, 42904, 3174, 5444, '-23.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 (45055, '2021-12-22', 1908, 42904, 3174, NULL, '24.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (45056, '2021-12-22', 2618, 42905, 3174, 9836, '-20.0000', '4.1000', '4.1000', '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 (45057, '2021-12-22', 2618, 42905, 3174, NULL, '21.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45058, '2021-12-22', 2643, 42906, 3174, 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 (45059, '2021-12-22', 1816, 42907, 3175, NULL, '1.0000', '19.7500', '19.7500', '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 (45060, '2021-12-22', 2167, 42908, 3175, 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 (45061, '2021-12-22', 2169, 42909, 3175, NULL, '1.0000', '1.1500', '1.1500', '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 (45062, '2021-12-22', 2916, 42910, 3175, NULL, '1.0000', '14.8227', '14.8227', '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 (45063, '2021-12-22', 2924, 42911, 3175, 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 (45064, '2021-12-22', 1805, 42912, 3175, NULL, '1.0000', '4.5132', '4.5132', '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 (45065, '2021-12-22', 1800, 42913, 3175, 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 (45066, '2021-12-22', 2699, 42914, 3175, 43997, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45067, '2021-12-22', 9416, 42915, 3175, 44150, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45068, '2021-12-22', 7608, 42916, 3175, 39812, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45069, '2021-12-22', 2506, 42917, 3175, 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 (45070, '2021-12-22', 2410, 42918, 3175, 38543, '1.0000', '4.3920', '4.3920', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45071, '2021-12-22', 7317, 42919, 3176, NULL, '1.0000', '29.3700', '29.3700', '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 (45072, '2021-12-22', 3067, 42920, 3176, 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 (45073, '2021-12-22', 7674, 42921, 3176, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45074, '2021-12-22', 7412, 42922, 3176, NULL, '1.0000', '1.5200', '1.5200', '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 (45075, '2021-12-22', 1308, 42923, 3176, 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 (45076, '2021-12-22', 8063, 42924, 3176, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45077, '2021-12-22', 7427, 42925, 3176, NULL, '2.0000', '25.0000', '25.0000', '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 (45078, '2021-12-22', 8915, 42926, 3176, NULL, '1.0000', '29.3500', '29.3500', '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 (45079, '2021-12-22', 7637, 42927, 3176, 43161, '1.0000', '7.3252', '7.3252', '9.6800', '9.6800', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45080, '2021-12-22', 8333, 42928, 3176, NULL, '1.0000', '5.5600', '5.5600', '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 (45081, '2021-12-22', 7411, 42929, 3176, NULL, '1.0000', '1.3500', '1.3500', '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 (45082, '2021-12-22', 2289, 42930, 3176, NULL, '6.0000', '0.2300', '0.2300', '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 (45083, '2021-12-22', 8720, 42931, 3176, NULL, '1.0000', '31.1100', '31.1100', '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 (45084, '2021-12-22', 7609, 42932, 3176, NULL, '1.0000', '4.3300', '4.3300', '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 (45085, '2021-12-22', 7780, 42933, 3176, NULL, '1.0000', '2.6000', '2.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 (45086, '2021-12-22', 7544, 42934, 3176, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45087, '2021-12-22', 1841, 42935, 3176, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45088, '2021-12-22', 8101, 42936, 3176, NULL, '2.0000', '21.7000', '21.7000', '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 (45089, '2021-12-22', 7715, 42937, 3176, NULL, '1.0000', '1.8900', '1.8900', '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 (45090, '2021-12-22', 8328, 42938, 3176, NULL, '1.0000', '8.0882', '8.0882', '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 (45091, '2021-12-22', 9017, 42939, 3176, 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 (45092, '2021-12-22', 8166, 42940, 3176, NULL, '1.0000', '4.6000', '4.6000', '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 (45093, '2021-12-22', 1916, 42941, 3176, 44048, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45094, '2021-12-22', 9367, 42942, 3176, NULL, '1.0000', '32.9800', '32.9800', '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 (45095, '2021-12-22', 9092, 42943, 3176, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '162.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45096, '2021-12-22', 7775, 42944, 3176, NULL, '1.0000', '-2.9800', '-2.9800', '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 (45097, '2021-12-22', 7989, 42945, 3176, NULL, '1.0000', '26.9800', '26.9800', '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 (45098, '2021-12-22', 9179, 42946, 3176, 44479, '1.0000', '12.0000', '12.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45099, '2021-12-22', 8915, 42947, 3176, NULL, '1.0000', '29.3500', '29.3500', '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 (45100, '2021-12-22', 7433, 42948, 3176, NULL, '14.0000', '6.2000', '6.2000', '6.5000', '6.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 (45101, '2021-12-22', 7967, 42949, 3176, 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 (45102, '2021-12-22', 3005, 42950, 3176, 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 (45103, '2021-12-22', 7558, 42951, 3176, 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 (45104, '2021-12-22', 9191, 42952, 3176, NULL, '1.0000', '6.6700', '6.6700', '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 (45105, '2021-12-22', 7674, 42953, 3176, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45106, '2021-12-22', 7357, 42954, 3176, NULL, '1.0000', '11.7500', '11.7500', '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 (45107, '2021-12-22', 2506, 42955, 3176, 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 (45108, '2021-12-22', 7411, 42956, 3176, NULL, '5.0000', '1.3500', '1.3500', '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 (45109, '2021-12-22', 8808, 42957, 3176, NULL, '1.0000', '2.0000', '2.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 (45110, '2021-12-22', 7671, 42958, 3176, NULL, '2.0000', '15.5000', '15.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 (45111, '2021-12-22', 7637, 42959, 3176, 43161, '1.0000', '7.3252', '7.3252', '9.6800', '9.6800', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45112, '2021-12-22', 2295, 42960, 3176, 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 (45113, '2021-12-22', 7806, 42961, 3176, NULL, '5.0000', '14.0000', '14.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 (45114, '2021-12-22', 7394, 42962, 3176, 36054, '1.0000', '178.5879', '178.5879', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45115, '2021-12-22', 7643, 42963, 3176, NULL, '1.0000', '2.1100', '2.1100', '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 (45116, '2021-12-22', 9274, 42964, 3176, NULL, '1.0000', '3.1000', '3.1000', '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 (45117, '2021-12-22', 8359, 42965, 3176, NULL, '1.0000', '61.0320', '61.0320', '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 (45118, '2021-12-22', 7507, 42966, 3176, NULL, '3.0000', '6.5000', '6.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 (45119, '2021-12-22', 7781, 42967, 3176, NULL, '3.0000', '4.2500', '4.2500', '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 (45120, '2021-12-22', 9650, 42968, 3176, 43132, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45121, '2021-12-22', 2295, 42969, 3176, 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 (45122, '2021-12-22', 8166, 42970, 3176, NULL, '1.0000', '4.6000', '4.6000', '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 (45123, '2021-12-22', 7703, 42971, 3176, NULL, '3.0000', '22.9900', '22.9900', '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 (45124, '2021-12-22', 7411, 42972, 3176, NULL, '2.0000', '1.3500', '1.3500', '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 (45125, '2021-12-22', 8539, 42973, 3176, 31000, '2.0000', '4.4300', '4.4300', '0.8000', '0.8000', '17.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45126, '2021-12-22', 7671, 42974, 3176, NULL, '2.0000', '15.5000', '15.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 (45127, '2021-12-22', 7518, 42975, 3176, NULL, '1.0000', '-67.2578', '-67.2578', '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 (45128, '2021-12-22', 8300, 42976, 3176, NULL, '4.0000', '7.4300', '7.4300', '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 (45129, '2021-12-22', 2776, 42977, 3176, NULL, '1.0000', '14.6000', '14.6000', '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 (45130, '2021-12-22', 9684, 42978, 3176, 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 (45131, '2021-12-22', 8277, 42979, 3176, NULL, '1.0000', '6.9625', '6.9625', '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 (45132, '2021-12-22', 2655, 42980, 3176, 43949, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45133, '2021-12-22', 7473, 42981, 3176, NULL, '2.0000', '25.2998', '25.2998', '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 (45134, '2021-12-22', 7779, 42982, 3176, NULL, '1.0000', '8.3800', '8.3800', '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 (45135, '2021-12-22', 8037, 42983, 3176, 36082, '1.0000', '45.3419', '45.3419', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45136, '2021-12-22', 8178, 42984, 3176, 42425, '1.0000', '4.5000', '4.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45137, '2021-12-22', 7411, 42985, 3176, NULL, '1.0000', '1.3500', '1.3500', '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 (45138, '2021-12-22', 7674, 42986, 3176, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45139, '2021-12-22', 2315, 42987, 3176, NULL, '2.0000', '0.4740', '0.4740', '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 (45140, '2021-12-22', 7334, 42988, 3176, NULL, '2.0000', '8.1600', '8.1600', '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 (45141, '2021-12-22', 8084, 42989, 3176, NULL, '1.0000', '11.7200', '11.7200', '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 (45142, '2021-12-22', 9098, 42990, 3176, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45143, '2021-12-22', 7444, 42991, 3176, 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 (45144, '2021-12-22', 8243, 42992, 3176, NULL, '1.0000', '1.1400', '1.1400', '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 (45145, '2021-12-22', 1743, 42993, 3176, 43100, '1.0000', '2.5926', '2.5926', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45146, '2021-12-22', 2506, 42994, 3176, 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 (45147, '2021-12-22', 9399, 42995, 3176, NULL, '1.0000', '0.4200', '0.4200', '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 (45148, '2021-12-22', 7671, 42996, 3176, NULL, '1.0000', '15.5000', '15.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 (45149, '2021-12-22', 7444, 42997, 3176, 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 (45150, '2021-12-22', 1947, 42998, 3176, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45151, '2021-12-22', 7674, 42999, 3176, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45152, '2021-12-22', 9390, 43000, 3176, NULL, '1.0000', '25.0000', '25.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 (45153, '2021-12-22', 7703, 43001, 3176, NULL, '1.0000', '22.9900', '22.9900', '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 (45154, '2021-12-22', 7675, 43002, 3176, NULL, '1.0000', '11.4300', '11.4300', '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 (45155, '2021-12-22', 2289, 43003, 3176, NULL, '1.0000', '0.2300', '0.2300', '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 (45156, '2021-12-22', 1841, 43004, 3176, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45157, '2021-12-22', 8324, 43005, 3176, 43960, '1.0000', '3.0036', '3.0036', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45158, '2021-12-22', 1340, 43006, 3176, NULL, '1.0000', '2.7422', '2.7422', '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 (45159, '2021-12-22', 9274, 43007, 3176, NULL, '1.0000', '3.1000', '3.1000', '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 (45160, '2021-12-22', 2315, 43008, 3176, NULL, '1.0000', '0.4740', '0.4740', '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 (45161, '2021-12-22', 8712, 43009, 3176, NULL, '1.0000', '7.0400', '7.0400', '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 (45162, '2021-12-22', 7672, 43010, 3176, NULL, '1.0000', '1.0200', '1.0200', '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 (45163, '2021-12-22', 2379, 43011, 3177, NULL, '1.0000', '1.8000', '1.8000', '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 (45164, '2021-12-22', 1440, 43012, 3177, 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 (45165, '2021-12-22', 7711, 43013, 3177, NULL, '1.0000', '0.3900', '0.3900', '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 (45166, '2021-12-22', 2280, 43014, 3177, NULL, '1.0000', '-177.9360', '-177.9360', '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 (45167, '2021-12-22', 1521, 43015, 3177, 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 (45168, '2021-12-22', 7671, 43016, 3177, NULL, '1.0000', '15.5000', '15.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 (45169, '2021-12-22', 7671, 43017, 3177, NULL, '2.0000', '15.5000', '15.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 (45170, '2021-12-22', 1871, 43018, 3177, NULL, '2.0000', '2.9308', '2.9308', '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 (45171, '2021-12-22', 9699, 43019, 3177, 44151, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45172, '2021-12-22', 7675, 43020, 3177, NULL, '1.0000', '11.4300', '11.4300', '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 (45173, '2021-12-22', 7411, 43021, 3177, NULL, '1.0000', '1.3500', '1.3500', '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 (45174, '2021-12-22', 1837, 43022, 3177, 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 (45175, '2021-12-22', 1488, 43023, 3177, NULL, '1.0000', '90.0000', '90.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 (45176, '2021-12-22', 2320, 43024, 3177, 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 (45177, '2021-12-22', 7672, 43025, 3177, 39816, '2.0000', '1.0200', '1.0200', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45178, '2021-12-22', 8984, 43026, 3177, NULL, '1.0000', '-100.8495', '-100.8495', '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 (45179, '2021-12-22', 7980, 43027, 3177, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (45180, '2021-12-22', 7981, 43028, 3177, NULL, '5.0000', '6.0000', '6.0000', '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 (45181, '2021-12-22', 1846, 43029, 3177, 19327, '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 (45182, '2021-12-22', 2955, 43030, 3177, 41366, '1.0000', '4.8000', '4.8000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45183, '2021-12-22', 7444, 43031, 3177, 39808, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45184, '2021-12-22', 7674, 43032, 3177, NULL, '2.0000', '1.3000', '1.3000', '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 (45185, '2021-12-22', 2277, 43033, 3177, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45186, '2021-12-22', 2263, 43034, 3177, 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 (45187, '2021-12-22', 1665, 43035, 3177, 34008, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45188, '2021-12-22', 8969, 43036, 3177, 39814, '4.0000', '2.0000', '2.0000', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45189, '2021-12-22', 2699, 43037, 3177, 43997, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45190, '2021-12-22', 7385, 43038, 3177, 42798, '1.0000', '-18.4000', '-18.4000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45191, '2021-12-22', 7428, 43039, 3177, NULL, '1.0000', '2.6100', '2.6100', '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 (45192, '2021-12-22', 7819, 43040, 3177, NULL, '2.0000', '9.5000', '9.5000', '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 (45193, '2021-12-22', 1620, 43041, 3177, 42842, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45194, '2021-12-22', 2307, 43042, 3177, NULL, '1.0000', '142.8300', '142.8300', '161.0000', '161.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45195, '2021-12-22', 2252, 43043, 3177, 42804, '1.0000', '16.5900', '16.5900', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45196, '2021-12-22', 3041, 43044, 3177, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '8.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 (45197, '2021-12-22', 1935, 43045, 3177, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45198, '2021-12-22', 2712, 43046, 3177, 44438, '18.0000', '0.2600', '0.2600', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45199, '2021-12-22', 9556, 43047, 3177, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45200, '2021-12-22', 8454, 43048, 3177, NULL, '2.0000', '5.1700', '5.1700', '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 (45201, '2021-12-22', 7671, 43049, 3177, NULL, '2.0000', '15.5000', '15.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 (45202, '2021-12-22', 7753, 43050, 3177, NULL, '2.0000', '3.1400', '3.1400', '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 (45203, '2021-12-22', 7905, 43051, 3177, NULL, '1.0000', '0.7000', '0.7000', '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 (45204, '2021-12-22', 1928, 43052, 3177, 41412, '1.0000', '5.3300', '5.3300', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45205, '2021-12-22', 7411, 43053, 3177, NULL, '2.0000', '1.3500', '1.3500', '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 (45206, '2021-12-22', 7675, 43054, 3177, NULL, '1.0000', '11.4300', '11.4300', '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 (45207, '2021-12-22', 7781, 43055, 3177, NULL, '6.0000', '4.2500', '4.2500', '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 (45208, '2021-12-22', 1912, 43056, 3177, 42544, '5.0000', '0.6675', '0.6675', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45209, '2021-12-22', 1533, 43057, 3177, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45210, '2021-12-22', 1670, 43058, 3177, 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 (45211, '2021-12-22', 7671, 43059, 3177, NULL, '3.0000', '15.5000', '15.5000', '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 (45212, '2021-12-22', 8984, 43060, 3177, NULL, '2.0000', '-100.8495', '-100.8495', '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 (45213, '2021-12-22', 7411, 43061, 3177, NULL, '2.0000', '1.3500', '1.3500', '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 (45214, '2021-12-22', 1577, 43062, 3177, 39771, '1.0000', '2.3271', '2.3271', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45215, '2021-12-22', 7317, 43063, 3177, NULL, '1.0000', '19.5500', '19.5500', '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 (45216, '2021-12-22', 2073, 43064, 3177, NULL, '5.0000', '2.3000', '2.3000', '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 (45217, '2021-12-22', 2320, 43065, 3177, 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 (45218, '2021-12-22', 8444, 43066, 3177, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45219, '2021-12-22', 2169, 43067, 3177, NULL, '7.0000', '1.1500', '1.1500', '1.5000', '1.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 (45220, '2021-12-22', 2660, 43068, 3177, 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 (45221, '2021-12-22', 1912, 43069, 3177, 42544, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45222, '2021-12-22', 2315, 43070, 3177, NULL, '1.0000', '0.8556', '0.8556', '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 (45223, '2021-12-22', 7593, 43071, 3177, NULL, '1.0000', '0.8000', '0.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 (45224, '2021-12-22', 2384, 43072, 3177, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45225, '2021-12-22', 2245, 43073, 3177, 23178, '1.0000', '0.7000', '0.7000', '1.0000', '1.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 (45226, '2021-12-22', 2233, 43074, 3177, 43275, '1.0000', '20.5833', '20.5833', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45227, '2021-12-22', 1689, 43075, 3177, 42821, '1.0000', '12.9279', '12.9279', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45228, '2021-12-22', 1489, 43076, 3177, 34950, '1.0000', '28.1700', '28.1700', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45229, '2021-12-22', 7848, 43077, 3177, 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 (45230, '2021-12-22', 2573, 43078, 3177, NULL, '1.0000', '8.7800', '8.7800', '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 (45231, '2021-12-22', 7672, 43079, 3177, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '75.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45232, '2021-12-22', 2307, 43080, 3177, NULL, '1.0000', '142.8300', '142.8300', '161.0000', '161.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45233, '2021-12-22', 7482, 43081, 3177, 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 (45234, '2021-12-22', 2943, 43082, 3177, 38528, '1.0000', '2.8077', '2.8077', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45235, '2021-12-22', 2315, 43083, 3177, NULL, '1.0000', '0.8556', '0.8556', '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 (45236, '2021-12-22', 2023, 43084, 3177, NULL, '1.0000', '14.0000', '14.0000', '19.8000', '19.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 (45237, '2021-12-22', 7496, 43085, 3178, NULL, '1.0000', '0.9600', '0.9600', '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 (45238, '2021-12-22', 7672, 43086, 3178, NULL, '1.0000', '1.0200', '1.0200', '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 (45239, '2021-12-22', 7892, 43087, 3178, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45240, '2021-12-22', 7518, 43088, 3178, NULL, '2.0000', '-67.2578', '-67.2578', '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 (45241, '2021-12-22', 7507, 43089, 3178, NULL, '3.0000', '6.5000', '6.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 (45242, '2021-12-22', 8873, 43090, 3178, NULL, '1.0000', '14.5000', '14.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 (45243, '2021-12-22', 7411, 43091, 3178, NULL, '1.0000', '1.3500', '1.3500', '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 (45244, '2021-12-22', 7820, 43092, 3178, NULL, '1.0000', '-46.6000', '-46.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45245, '2021-12-22', 7666, 43093, 3178, NULL, '1.0000', '0.4000', '0.4000', '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 (45246, '2021-12-22', 7756, 43094, 3178, NULL, '1.0000', '21.7700', '21.7700', '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 (45247, '2021-12-22', 1916, 43095, 3178, 44048, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45248, '2021-12-22', 7622, 43096, 3178, NULL, '2.0000', '17.8100', '17.8100', '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 (45249, '2021-12-22', 8677, 43097, 3178, NULL, '2.0000', '1.2300', '1.2300', '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 (45250, '2021-12-22', 8097, 43098, 3178, 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 (45251, '2021-12-22', 7933, 43099, 3178, NULL, '1.0000', '0.3245', '0.3245', '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 (45252, '2021-12-22', 7714, 43100, 3178, NULL, '2.0000', '0.4200', '0.4200', '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 (45253, '2021-12-22', 8449, 43101, 3178, NULL, '1.0000', '9.5000', '9.5000', '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 (45254, '2021-12-22', 7822, 43102, 3178, NULL, '1.0000', '11.2000', '11.2000', '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 (45255, '2021-12-22', 8166, 43103, 3178, NULL, '1.0000', '4.6000', '4.6000', '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 (45256, '2021-12-22', 8164, 43104, 3178, NULL, '1.0000', '3.1200', '3.1200', '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 (45257, '2021-12-22', 7391, 43105, 3178, NULL, '1.0000', '-26.2683', '-26.2683', '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 (45258, '2021-12-22', 7534, 43106, 3178, 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 (45259, '2021-12-22', 7317, 43107, 3178, NULL, '1.0000', '29.3700', '29.3700', '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 (45260, '2021-12-22', 2315, 43108, 3178, NULL, '2.0000', '0.4740', '0.4740', '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 (45261, '2021-12-22', 7367, 43109, 3178, NULL, '1.0000', '35.0000', '35.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 (45262, '2021-12-22', 7576, 43110, 3178, NULL, '2.0000', '-11.8309', '-11.8309', '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 (45263, '2021-12-22', 7756, 43111, 3178, NULL, '1.0000', '21.7700', '21.7700', '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 (45264, '2021-12-22', 7711, 43112, 3178, NULL, '1.0000', '-78.4806', '-78.4806', '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 (45265, '2021-12-22', 8134, 43113, 3178, NULL, '1.0000', '5.2600', '5.2600', '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 (45266, '2021-12-22', 7444, 43114, 3178, 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 (45267, '2021-12-22', 8749, 43115, 3178, NULL, '1.0000', '12.0000', '12.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 (45268, '2021-12-22', 2473, 43116, 3178, 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 (45269, '2021-12-22', 3022, 43117, 3178, NULL, '1.0000', '4.1200', '4.1200', '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 (45270, '2021-12-22', 2295, 43118, 3178, NULL, '5.0000', '0.7000', '0.7000', '1.5000', '1.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 (45271, '2021-12-22', 7411, 43119, 3178, NULL, '3.0000', '1.3500', '1.3500', '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 (45272, '2021-12-22', 7671, 43120, 3178, NULL, '2.0000', '15.5000', '15.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 (45273, '2021-12-22', 9274, 43121, 3178, NULL, '1.0000', '3.1000', '3.1000', '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 (45274, '2021-12-22', 7708, 43122, 3178, NULL, '1.0000', '6.1400', '6.1400', '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 (45275, '2021-12-22', 7576, 43123, 3178, NULL, '4.0000', '-11.8309', '-11.8309', '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 (45276, '2021-12-22', 8920, 43124, 3178, NULL, '1.0000', '9.8500', '9.8500', '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 (45277, '2021-12-22', 7514, 43125, 3178, NULL, '3.0000', '12.9983', '12.9983', '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 (45278, '2021-12-22', 1914, 43126, 3178, NULL, '1.0000', '5.2300', '5.2300', '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 (45279, '2021-12-22', 7886, 43127, 3178, NULL, '1.0000', '2.8333', '2.8333', '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 (45280, '2021-12-22', 7671, 43128, 3178, NULL, '1.0000', '15.5000', '15.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 (45281, '2021-12-22', 7524, 43129, 3178, NULL, '1.0000', '103.0922', '103.0922', '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 (45282, '2021-12-22', 8810, 43130, 3178, NULL, '1.0000', '1.9200', '1.9200', '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 (45283, '2021-12-22', 8032, 43131, 3178, NULL, '1.0000', '12.0000', '12.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 (45284, '2021-12-22', 7708, 43132, 3178, NULL, '1.0000', '6.1400', '6.1400', '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 (45285, '2021-12-22', 8032, 43133, 3178, NULL, '2.0000', '12.0000', '12.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 (45286, '2021-12-22', 2315, 43134, 3178, NULL, '1.0000', '0.4740', '0.4740', '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 (45287, '2021-12-22', 8677, 43135, 3178, NULL, '2.0000', '1.2300', '1.2300', '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 (45288, '2021-12-22', 1884, 43136, 3178, 36052, '1.0000', '4.3958', '4.3958', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45289, '2021-12-22', 8485, 43137, 3178, NULL, '1.0000', '7.0400', '7.0400', '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 (45290, '2021-12-22', 3022, 43138, 3178, NULL, '1.0000', '4.1200', '4.1200', '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 (45291, '2021-12-22', 7612, 43139, 3178, NULL, '1.0000', '1.1770', '1.1770', '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 (45292, '2021-12-22', 7658, 43140, 3178, NULL, '10.0000', '63.4193', '63.4193', '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 (45293, '2021-12-22', 7673, 43141, 3178, NULL, '2.0000', '15.5000', '15.5000', '20.5000', '20.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 (45294, '2021-12-22', 9445, 43142, 3178, 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 (45295, '2021-12-22', 9533, 43143, 3178, 39431, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45296, '2021-12-22', 9092, 43144, 3178, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '158.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45297, '2021-12-22', 7640, 43145, 3178, NULL, '1.0000', '7.4344', '7.4344', '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 (45298, '2021-12-22', 7713, 43146, 3178, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45299, '2021-12-22', 7906, 43147, 3178, 33752, '1.0000', '7.8800', '7.8800', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45300, '2021-12-22', 9655, 43148, 3178, 42663, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45301, '2021-12-22', 7989, 43149, 3178, NULL, '2.0000', '26.9800', '26.9800', '50.0000', '50.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 (45302, '2021-12-22', 7454, 43150, 3178, 30062, '1.0000', '26.2200', '26.2200', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45303, '2021-12-22', 7454, 43150, 3178, NULL, '1.0000', '26.2200', '26.2200', '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 (45304, '2021-12-22', 7632, 43151, 3178, NULL, '1.0000', '9.8496', '9.8496', '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 (45305, '2021-12-22', 8097, 43152, 3178, 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 (45306, '2021-12-22', 7527, 43153, 3178, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45307, '2021-12-22', 7400, 43154, 3178, NULL, '1.0000', '2.6200', '2.6200', '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 (45308, '2021-12-22', 1837, 43155, 3178, 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 (45309, '2021-12-22', 9465, 43156, 3178, 39439, '1.0000', '8.5000', '8.5000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45310, '2021-12-22', 2221, 43157, 3179, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45311, '2021-12-22', 1677, 43158, 3179, 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 (45312, '2021-12-22', 2070, 43159, 3179, 5618, '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 (45313, '2021-12-22', 1651, 43160, 3179, 43037, '1.0000', '6.8684', '6.8684', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45314, '2021-12-22', 8335, 43161, 3179, NULL, '1.0000', '21.7000', '21.7000', '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 (45315, '2021-12-22', 1409, 43162, 3179, 43829, '1.0000', '13.1516', '13.1516', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45316, '2021-12-22', 2317, 43163, 3179, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '49.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45317, '2021-12-22', 9579, 43164, 3179, 44500, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45318, '2021-12-22', 8135, 43165, 3179, 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 (45319, '2021-12-22', 2712, 43166, 3179, 42626, '12.0000', '0.2600', '0.2600', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45320, '2021-12-22', 9577, 43167, 3179, 38070, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45321, '2021-12-22', 2285, 43168, 3179, 9582, '-1.0000', '36.5090', '36.5090', '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 (45322, '2021-12-22', 2285, 43168, 3179, 9582, '-1.0000', '36.5090', '36.5090', '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 (45323, '2021-12-22', 2285, 43168, 3179, NULL, '3.0000', '36.5090', '36.5090', '49.0000', '49.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 (45324, '2021-12-22', 2655, 43169, 3179, 42939, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45325, '2021-12-22', 1935, 43170, 3179, 40874, '2.0000', '6.8496', '6.8496', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45326, '2021-12-22', 1695, 43171, 3179, 43875, '1.0000', '66.1165', '66.1165', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45327, '2021-12-22', 2903, 43172, 3179, 18664, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45328, '2021-12-22', 1427, 43173, 3179, 43870, '1.0000', '14.7223', '14.7223', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45329, '2021-12-22', 2302, 43174, 3179, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45330, '2021-12-22', 1671, 43175, 3179, 43848, '20.0000', '40.1777', '40.1777', '6.4000', '6.4000', '20.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45331, '2021-12-22', 2221, 43176, 3179, 40909, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45332, '2021-12-22', 1863, 43177, 3179, 43815, '1.0000', '1.1829', '1.1829', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45333, '2021-12-22', 9645, 43178, 3179, 41994, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45334, '2021-12-22', 1935, 43179, 3179, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45335, '2021-12-22', 2451, 43180, 3179, 31690, '1.0000', '10.0400', '10.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45336, '2021-12-22', 2451, 43180, 3179, 5371, '1.0000', '10.0400', '10.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45337, '2021-12-22', 2907, 43181, 3179, 18690, '2.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 (45338, '2021-12-22', 2907, 43181, 3179, 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 (45339, '2021-12-22', 1863, 43182, 3179, 43815, '2.0000', '1.1829', '1.1829', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45340, '2021-12-22', 1715, 43183, 3179, NULL, '1.0000', '4.9200', '4.9200', '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 (45341, '2021-12-22', 1949, 43184, 3179, 6004, '1.0000', '33.0000', '33.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 (45342, '2021-12-22', 2547, 43185, 3179, 24344, '1.0000', '9.0195', '9.0195', '13.0000', '13.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 (45343, '2021-12-22', 2221, 43186, 3179, 40909, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45344, '2021-12-22', 7886, 43187, 3179, 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 (45345, '2021-12-22', 2237, 43188, 3179, 40644, '2.0000', '1.3451', '1.3451', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45346, '2021-12-22', 2411, 43189, 3179, 42968, '1.0000', '1.2564', '1.2564', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45347, '2021-12-22', 2281, 43190, 3179, 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 (45348, '2021-12-22', 1845, 43191, 3179, 42215, '1.0000', '20.0938', '20.0938', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45349, '2021-12-22', 2072, 43192, 3179, 13557, '1.0000', '7.3800', '7.3800', '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 (45350, '2021-12-22', 7482, 43193, 3179, 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 (45351, '2021-12-22', 1644, 43194, 3179, 41988, '1.0000', '36.0800', '36.0800', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45352, '2021-12-22', 1706, 43195, 3179, 44509, '1.0000', '12.5773', '12.5773', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45353, '2021-12-22', 7342, 43196, 3179, 43837, '1.0000', '14.5034', '14.5034', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45354, '2021-12-22', 2759, 43197, 3179, 32822, '1.0000', '4.0864', '4.0864', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45355, '2021-12-22', 1673, 43198, 3179, 9409, '2.0000', '12.9000', '12.9000', '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 (45356, '2021-12-22', 1382, 43199, 3179, 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 (45357, '2021-12-22', 1502, 43200, 3179, 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 (45358, '2021-12-22', 1573, 43201, 3179, 43865, '1.0000', '21.4158', '21.4158', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45359, '2021-12-22', 1602, 43202, 3179, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45360, '2021-12-22', 1525, 43203, 3179, 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 (45361, '2021-12-22', 1639, 43204, 3179, 43553, '2.0000', '7.3300', '7.3300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45362, '2021-12-22', 1519, 43205, 3179, 40645, '2.0000', '3.3717', '3.3717', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45363, '2021-12-22', 2486, 43206, 3179, 21821, '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 (45364, '2021-12-22', 2481, 43207, 3179, 5193, '1.0000', '3.5000', '3.5000', '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 (45365, '2021-12-22', 2263, 43208, 3179, 9567, '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 (45366, '2021-12-22', 2167, 43209, 3179, 40217, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45367, '2021-12-22', 2285, 43210, 3179, 9582, '-1.0000', '36.5090', '36.5090', '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 (45368, '2021-12-22', 2285, 43210, 3179, 9582, '-1.0000', '36.5090', '36.5090', '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 (45369, '2021-12-22', 2285, 43210, 3179, NULL, '2.0000', '36.5090', '36.5090', '49.0000', '49.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 (45370, '2021-12-22', 8746, 43211, 3179, 42931, '1.0000', '3.0415', '3.0415', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45371, '2021-12-22', 1812, 43212, 3179, 42979, '1.0000', '7.9569', '7.9569', '10.5000', '10.5000', '12.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45372, '2021-12-22', 1508, 43213, 3179, 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 (45373, '2021-12-22', 7756, 43214, 3179, NULL, '1.0000', '23.9111', '23.9111', '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 (45374, '2021-12-22', 9636, 43215, 3179, 41983, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45375, '2021-12-22', 1863, 43216, 3179, 43815, '5.0000', '1.1829', '1.1829', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45376, '2021-12-22', 2280, 43217, 3179, 40891, '4.0000', '2.3427', '2.3427', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45377, '2021-12-22', 1641, 43218, 3179, 43040, '5.0000', '51.1126', '51.1126', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45378, '2021-12-22', 8915, 43219, 3179, NULL, '1.0000', '29.3500', '29.3500', '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 (45379, '2021-12-22', 8065, 43220, 3179, NULL, '1.0000', '4.9800', '4.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 (45380, '2021-12-22', 1409, 43221, 3180, 43829, '1.0000', '13.1516', '13.1516', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45381, '2021-12-22', 7679, 43222, 3181, NULL, '2.0000', '25.0000', '25.0000', '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 (45382, '2021-12-22', 1572, 43223, 3182, 42827, '2.0000', '2.0000', '2.0000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45383, '2021-12-22', 2713, 43224, 3182, 44440, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45384, '2021-12-22', 9707, 43225, 3182, 44447, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45385, '2021-12-22', 2167, 43226, 3182, 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 (45386, '2021-12-22', 9336, 43227, 3182, 33370, '1.0000', '4.9500', '4.9500', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45387, '2021-12-22', 7411, 43228, 3182, NULL, '1.0000', '1.3500', '1.3500', '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 (45388, '2021-12-22', 1577, 43229, 3182, NULL, '1.0000', '2.3271', '2.3271', '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 (45389, '2021-12-22', 2271, 43230, 3182, NULL, '1.0000', '12.0000', '12.0000', '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 (45390, '2021-12-22', 2955, 43231, 3182, 41366, '2.0000', '4.8000', '4.8000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45391, '2021-12-22', 1572, 43232, 3182, 42827, '2.0000', '2.0000', '2.0000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45392, '2021-12-22', 7447, 43233, 3182, NULL, '12.0000', '19.1100', '19.1100', '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 (45393, '2021-12-22', 8933, 43234, 3182, 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 (45394, '2021-12-22', 1618, 43235, 3182, NULL, '1.0000', '36.2513', '36.2513', '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 (45395, '2021-12-22', 9275, 43236, 3182, NULL, '3.0000', '6.3000', '6.3000', '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 (45396, '2021-12-22', 2003, 43237, 3182, 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 (45397, '2021-12-23', 7674, 43238, 3183, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45398, '2021-12-23', 1837, 43239, 3183, 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 (45399, '2021-12-23', 9556, 43240, 3183, NULL, '1.0000', '1.6375', '1.6375', '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 (45400, '2021-12-23', 7464, 43241, 3183, NULL, '1.0000', '-57.6000', '-57.6000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45401, '2021-12-23', 7848, 43242, 3183, NULL, '1.0000', '1.3500', '1.3500', '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 (45402, '2021-12-23', 8466, 43243, 3183, NULL, '3.0000', '-24.7500', '-24.7500', '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 (45403, '2021-12-23', 7849, 43244, 3183, 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 (45404, '2021-12-23', 9274, 43245, 3183, NULL, '1.0000', '3.1000', '3.1000', '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 (45405, '2021-12-23', 8463, 43246, 3183, NULL, '1.0000', '18.0000', '18.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 (45406, '2021-12-23', 1805, 43247, 3183, NULL, '1.0000', '4.5500', '4.5500', '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 (45407, '2021-12-23', 7496, 43248, 3183, NULL, '1.0000', '0.9600', '0.9600', '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 (45408, '2021-12-23', 9274, 43249, 3183, NULL, '1.0000', '3.1000', '3.1000', '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 (45409, '2021-12-23', 7674, 43250, 3183, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45410, '2021-12-23', 2104, 43251, 3183, NULL, '2.0000', '0.2000', '0.2000', '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 (45411, '2021-12-23', 7778, 43252, 3183, NULL, '1.0000', '13.0100', '13.0100', '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 (45412, '2021-12-23', 7641, 43253, 3183, NULL, '1.0000', '-12.6777', '-12.6777', '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 (45413, '2021-12-23', 7514, 43254, 3183, NULL, '1.0000', '12.9983', '12.9983', '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 (45414, '2021-12-23', 2315, 43255, 3183, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (45415, '2021-12-23', 9110, 43256, 3183, NULL, '1.0000', '7.0000', '7.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 (45416, '2021-12-23', 7591, 43257, 3183, NULL, '1.0000', '2.7500', '2.7500', '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 (45417, '2021-12-23', 8316, 43258, 3183, 42394, '1.0000', '44.3312', '44.3312', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45418, '2021-12-23', 7715, 43259, 3183, NULL, '1.0000', '1.8900', '1.8900', '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 (45419, '2021-12-23', 8296, 43260, 3183, NULL, '1.0000', '11.7600', '11.7600', '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 (45420, '2021-12-23', 9245, 43261, 3183, 30170, '1.0000', '6.6100', '6.6100', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45421, '2021-12-23', 2295, 43262, 3183, 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 (45422, '2021-12-23', 7762, 43263, 3183, NULL, '1.0000', '-0.4000', '-0.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 (45423, '2021-12-23', 7781, 43264, 3183, NULL, '3.0000', '4.2500', '4.2500', '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 (45424, '2021-12-23', 2315, 43265, 3183, NULL, '2.0000', '0.4740', '0.4740', '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 (45425, '2021-12-23', 7780, 43266, 3183, NULL, '1.0000', '2.6000', '2.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 (45426, '2021-12-23', 8614, 43267, 3183, NULL, '1.0000', '20.0000', '20.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 (45427, '2021-12-23', 9191, 43268, 3183, NULL, '2.0000', '6.6700', '6.6700', '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 (45428, '2021-12-23', 7671, 43269, 3183, NULL, '3.0000', '15.5000', '15.5000', '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 (45429, '2021-12-23', 8023, 43270, 3183, NULL, '1.0000', '20.5000', '20.5000', '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 (45430, '2021-12-23', 8064, 43271, 3183, 30161, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45431, '2021-12-23', 8057, 43272, 3183, NULL, '1.0000', '6.0000', '6.0000', '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 (45432, '2021-12-23', 9367, 43273, 3183, NULL, '1.0000', '32.9800', '32.9800', '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 (45433, '2021-12-23', 7715, 43274, 3183, NULL, '1.0000', '1.8900', '1.8900', '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 (45434, '2021-12-23', 7593, 43275, 3183, 43429, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45435, '2021-12-23', 7867, 43276, 3183, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45436, '2021-12-23', 7881, 43277, 3183, NULL, '1.0000', '83.7700', '83.7700', '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 (45437, '2021-12-23', 1501, 43278, 3183, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45438, '2021-12-23', 2100, 43279, 3183, 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 (45439, '2021-12-23', 7911, 43280, 3183, NULL, '1.0000', '4.3700', '4.3700', '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 (45440, '2021-12-23', 8308, 43281, 3183, NULL, '1.0000', '11.0000', '11.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 (45441, '2021-12-23', 7967, 43282, 3183, 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 (45442, '2021-12-23', 7642, 43283, 3183, 44050, '1.0000', '-110.3600', '-110.3600', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45443, '2021-12-23', 9016, 43284, 3183, NULL, '1.0000', '2.9800', '2.9800', '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 (45444, '2021-12-23', 7564, 43285, 3183, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45445, '2021-12-23', 9160, 43286, 3183, NULL, '1.0000', '41.6640', '41.6640', '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 (45446, '2021-12-23', 8246, 43287, 3183, NULL, '1.0000', '7.0000', '7.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 (45447, '2021-12-23', 8184, 43288, 3183, NULL, '10.0000', '-0.2804', '-0.2804', '3.5000', '3.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 (45448, '2021-12-23', 7415, 43289, 3183, NULL, '1.0000', '5.4200', '5.4200', '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 (45449, '2021-12-23', 7848, 43290, 3183, NULL, '1.0000', '1.3500', '1.3500', '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 (45450, '2021-12-23', 8101, 43291, 3183, NULL, '2.0000', '21.7000', '21.7000', '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 (45451, '2021-12-23', 1755, 43292, 3183, NULL, '1.0000', '5.5900', '5.5900', '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 (45452, '2021-12-23', 8810, 43293, 3183, NULL, '1.0000', '1.9200', '1.9200', '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 (45453, '2021-12-23', 2233, 43294, 3184, 43275, '1.0000', '20.5833', '20.5833', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45454, '2021-12-23', 9089, 43295, 3184, NULL, '1.0000', '3.8000', '3.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 (45455, '2021-12-23', 2986, 43296, 3184, 22609, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '0.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 (45456, '2021-12-23', 1771, 43297, 3184, 13766, '1.0000', '3.3900', '3.3900', '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 (45457, '2021-12-23', 2277, 43298, 3184, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45458, '2021-12-23', 7657, 43299, 3184, 39824, '1.0000', '10.3000', '10.3000', '14.0000', '14.0000', '16.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45459, '2021-12-23', 7459, 43300, 3184, NULL, '10.0000', '-6.1729', '-6.1729', '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 (45460, '2021-12-23', 1935, 43301, 3184, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45461, '2021-12-23', 8127, 43302, 3184, NULL, '2.0000', '24.5300', '24.5300', '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 (45462, '2021-12-23', 8188, 43303, 3184, 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 (45463, '2021-12-23', 2280, 43304, 3184, NULL, '1.0000', '-177.9360', '-177.9360', '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 (45464, '2021-12-23', 2163, 43305, 3184, 42806, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45465, '2021-12-23', 2167, 43306, 3184, 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 (45466, '2021-12-23', 2411, 43307, 3184, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45467, '2021-12-23', 1630, 43308, 3184, 31083, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45468, '2021-12-23', 2279, 43309, 3184, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (45469, '2021-12-23', 1935, 43310, 3184, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45470, '2021-12-23', 1382, 43311, 3184, 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 (45471, '2021-12-23', 1592, 43312, 3184, 34586, '1.0000', '35.4585', '35.4585', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45472, '2021-12-23', 1811, 43313, 3184, 42078, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '8.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45473, '2021-12-23', 9532, 43314, 3184, NULL, '1.0000', '11.0000', '11.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 (45474, '2021-12-23', 2444, 43315, 3184, 42645, '1.0000', '6.7956', '6.7956', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45475, '2021-12-23', 2642, 43316, 3184, 42646, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45476, '2021-12-23', 1381, 43317, 3184, 41381, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45477, '2021-12-23', 1771, 43318, 3184, 13766, '1.0000', '3.3900', '3.3900', '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 (45478, '2021-12-23', 7544, 43319, 3184, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (45479, '2021-12-23', 2289, 43320, 3184, 42836, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '21.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45480, '2021-12-23', 1841, 43321, 3184, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '24.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45481, '2021-12-23', 2320, 43322, 3184, 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 (45482, '2021-12-23', 2280, 43323, 3184, NULL, '1.0000', '-177.9360', '-177.9360', '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 (45483, '2021-12-23', 2280, 43324, 3184, NULL, '1.0000', '-177.9360', '-177.9360', '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 (45484, '2021-12-23', 7713, 43325, 3184, NULL, '8.0000', '4.4000', '4.4000', '0.6000', '0.6000', '-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 (45485, '2021-12-23', 1340, 43326, 3184, 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 (45486, '2021-12-23', 1621, 43327, 3184, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '46.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45487, '2021-12-23', 7585, 43328, 3184, NULL, '1.0000', '3.9600', '3.9600', '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 (45488, '2021-12-23', 8863, 43329, 3184, 44441, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45489, '2021-12-23', 8064, 43330, 3184, NULL, '1.0000', '4.9000', '4.9000', '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 (45490, '2021-12-23', 1946, 43331, 3184, NULL, '1.0000', '1.5500', '1.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 (45491, '2021-12-23', 2726, 43332, 3184, 44454, '1.0000', '2.7004', '2.7004', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45492, '2021-12-23', 1381, 43333, 3184, 41381, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45493, '2021-12-23', 1645, 43334, 3184, 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 (45494, '2021-12-23', 1935, 43335, 3184, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45495, '2021-12-23', 1771, 43336, 3184, 13766, '1.0000', '3.3900', '3.3900', '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 (45496, '2021-12-23', 1602, 43337, 3185, 41376, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45497, '2021-12-23', 2254, 43338, 3186, NULL, '1.0000', '17.9400', '17.9400', '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 (45498, '2021-12-23', 9413, 43339, 3186, 38544, '1.0000', '7.9285', '7.9285', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45499, '2021-12-23', 1504, 43340, 3186, 38525, '10.0000', '2.1038', '2.1038', '2.2000', '2.2000', '10.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45500, '2021-12-23', 2916, 43341, 3187, 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 (45501, '2021-12-23', 1524, 43342, 3187, 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 (45502, '2021-12-23', 2280, 43343, 3187, 33794, '1.0000', '3.0700', '3.0700', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45503, '2021-12-23', 2252, 43344, 3187, 2789, '-18.0000', '9.5000', '9.5000', '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 (45504, '2021-12-23', 2252, 43344, 3187, NULL, '19.0000', '9.5000', '9.5000', '16.0000', '16.0000', '-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 (45505, '2021-12-23', 2916, 43345, 3187, 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 (45506, '2021-12-23', 1602, 43346, 3187, 5897, '-72.0000', '6.7859', '6.7859', '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 (45507, '2021-12-23', 1602, 43346, 3187, NULL, '73.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45508, '2021-12-23', 2169, 43347, 3187, 10737, '-2.0000', '3.8397', '3.8397', '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 (45509, '2021-12-23', 2169, 43347, 3187, NULL, '3.0000', '3.8397', '3.8397', '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 (45510, '2021-12-23', 1871, 43348, 3187, 8223, '-27.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 (45511, '2021-12-23', 1871, 43348, 3187, NULL, '47.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-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 (45512, '2021-12-23', 1845, 43349, 3187, 6222, '-10.0000', '19.5000', '19.5000', '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 (45513, '2021-12-23', 1845, 43349, 3187, NULL, '11.0000', '19.5000', '19.5000', '26.5000', '26.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 (45514, '2021-12-23', 2221, 43350, 3187, 4154, '-33.0000', '14.4737', '14.4737', '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 (45515, '2021-12-23', 2221, 43350, 3187, NULL, '34.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (45516, '2021-12-23', 1935, 43351, 3187, 5586, '-49.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 (45517, '2021-12-23', 1935, 43351, 3187, NULL, '50.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45518, '2021-12-23', 2303, 43352, 3187, 18854, '1.0000', '16.1000', '16.1000', '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 (45519, '2021-12-23', 1502, 43353, 3187, 18925, '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 (45520, '2021-12-23', 7411, 43354, 3187, NULL, '1.0000', '1.3500', '1.3500', '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 (45521, '2021-12-23', 7431, 43355, 3187, NULL, '1.0000', '18.0000', '18.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 (45522, '2021-12-23', 1871, 43356, 3187, 8223, '-27.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 (45523, '2021-12-23', 1871, 43356, 3187, NULL, '37.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45524, '2021-12-23', 2655, 43357, 3187, 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 (45525, '2021-12-23', 2285, 43358, 3187, 2945, '-27.0000', '35.8000', '35.8000', '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 (45526, '2021-12-23', 2285, 43358, 3187, NULL, '28.0000', '35.8000', '35.8000', '49.0000', '49.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 (45527, '2021-12-23', 2221, 43359, 3187, 4154, '-33.0000', '14.4737', '14.4737', '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 (45528, '2021-12-23', 2221, 43359, 3187, NULL, '34.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (45529, '2021-12-23', 1371, 43360, 3187, 10169, '1.0000', '5.5000', '5.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 (45530, '2021-12-23', 1371, 43360, 3187, NULL, '1.0000', '5.5000', '5.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 (45531, '2021-12-23', 2272, 43361, 3187, 2932, '-16.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 (45532, '2021-12-23', 2272, 43361, 3187, NULL, '17.0000', '5.5000', '5.5000', '8.0000', '8.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 (45533, '2021-12-23', 7447, 43362, 3187, NULL, '12.0000', '19.1100', '19.1100', '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 (45534, '2021-12-23', 1905, 43363, 3187, 5443, '-12.0000', '0.4000', '0.4000', '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 (45535, '2021-12-23', 1905, 43363, 3187, NULL, '14.0000', '0.4000', '0.4000', '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 (45536, '2021-12-23', 1577, 43364, 3187, 7596, '-7.0000', '2.5000', '2.5000', '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 (45537, '2021-12-23', 1577, 43364, 3187, NULL, '8.0000', '2.5000', '2.5000', '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 (45538, '2021-12-23', 2657, 43365, 3187, 11267, '-4.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 (45539, '2021-12-23', 2657, 43365, 3187, NULL, '5.0000', '5.4200', '5.4200', '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 (45540, '2021-12-23', 1863, 43366, 3187, 10808, '-108.0000', '0.4136', '0.4136', '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 (45541, '2021-12-23', 1863, 43366, 3187, NULL, '110.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45542, '2021-12-23', 8059, 43367, 3187, 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 (45543, '2021-12-23', 2285, 43368, 3187, 2945, '-27.0000', '35.8000', '35.8000', '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 (45544, '2021-12-23', 2285, 43368, 3187, NULL, '28.0000', '35.8000', '35.8000', '49.0000', '49.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 (45545, '2021-12-23', 1504, 43369, 3187, NULL, '20.0000', '1.5000', '1.5000', '2.2000', '2.2000', '-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 (45546, '2021-12-23', 1812, 43370, 3187, 8224, '-47.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 (45547, '2021-12-23', 1812, 43370, 3187, NULL, '54.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45548, '2021-12-23', 2277, 43371, 3187, 2937, '-31.0000', '0.7800', '0.7800', '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 (45549, '2021-12-23', 2277, 43371, 3187, NULL, '32.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45550, '2021-12-23', 1863, 43372, 3187, 10808, '-108.0000', '0.4136', '0.4136', '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 (45551, '2021-12-23', 1863, 43372, 3187, NULL, '109.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-109.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45552, '2021-12-23', 1519, 43373, 3187, 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 (45553, '2021-12-23', 1863, 43374, 3187, 10808, '-108.0000', '0.4136', '0.4136', '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 (45554, '2021-12-23', 1863, 43374, 3187, NULL, '109.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-109.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45555, '2021-12-23', 2169, 43375, 3187, 10737, '-2.0000', '3.8397', '3.8397', '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 (45556, '2021-12-23', 2169, 43375, 3187, NULL, '3.0000', '3.8397', '3.8397', '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 (45557, '2021-12-23', 1828, 43376, 3187, NULL, '1.0000', '0.7300', '0.7300', '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 (45558, '2021-12-23', 1618, 43377, 3187, 8737, '-3.0000', '11.8200', '11.8200', '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 (45559, '2021-12-23', 1618, 43377, 3187, NULL, '4.0000', '11.8200', '11.8200', '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 (45560, '2021-12-23', 2221, 43378, 3187, 4154, '-33.0000', '14.4737', '14.4737', '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 (45561, '2021-12-23', 2221, 43378, 3187, NULL, '34.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (45562, '2021-12-23', 1889, 43379, 3187, 5429, '-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 (45563, '2021-12-23', 1889, 43379, 3187, 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 (45564, '2021-12-23', 1787, 43380, 3187, 4905, '-8.0000', '0.8100', '0.8100', '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 (45565, '2021-12-23', 1787, 43380, 3187, NULL, '10.0000', '0.8100', '0.8100', '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 (45566, '2021-12-23', 1427, 43381, 3187, NULL, '1.0000', '14.2181', '14.2181', '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 (45567, '2021-12-23', 1584, 43382, 3188, 7601, '-22.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 (45568, '2021-12-23', 1584, 43382, 3188, NULL, '24.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-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 (45569, '2021-12-23', 1637, 43383, 3189, 42839, '1.0000', '-41.1667', '-41.1667', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45570, '2021-12-23', 8333, 43384, 3189, NULL, '1.0000', '6.3000', '6.3000', '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 (45571, '2021-12-23', 3029, 43385, 3189, NULL, '1.0000', '4.7700', '4.7700', '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 (45572, '2021-12-23', 2315, 43386, 3189, NULL, '2.0000', '0.8556', '0.8556', '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 (45573, '2021-12-23', 1945, 43387, 3189, 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 (45574, '2021-12-23', 1450, 43388, 3189, 43237, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '24.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45575, '2021-12-23', 2148, 43389, 3189, NULL, '1.0000', '35.0000', '35.0000', '52.5000', '52.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45576, '2021-12-23', 1820, 43390, 3189, 42541, '1.0000', '8.3700', '8.3700', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45577, '2021-12-23', 2408, 43391, 3189, NULL, '1.0000', '9.3500', '9.3500', '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 (45578, '2021-12-23', 2409, 43392, 3189, 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 (45579, '2021-12-23', 2444, 43393, 3189, 42645, '1.0000', '6.7956', '6.7956', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45580, '2021-12-23', 2227, 43394, 3189, 42635, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45581, '2021-12-23', 2169, 43395, 3189, NULL, '1.0000', '1.1500', '1.1500', '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 (45582, '2021-12-23', 2232, 43396, 3189, 42548, '1.0000', '28.7853', '28.7853', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45583, '2021-12-23', 2109, 43397, 3189, 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 (45584, '2021-12-23', 1672, 43398, 3190, NULL, '14.0000', '-4.3367', '-4.3367', '4.0000', '4.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 (45585, '2021-12-23', 2662, 43399, 3190, 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 (45586, '2021-12-23', 2223, 43400, 3190, 42636, '1.0000', '10.7140', '10.7140', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45587, '2021-12-23', 2227, 43401, 3190, 42635, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45588, '2021-12-23', 1737, 43402, 3190, 19344, '1.0000', '90.0000', '90.0000', '62.0000', '62.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45589, '2021-12-23', 2285, 43403, 3190, NULL, '1.0000', '36.1500', '36.1500', '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 (45590, '2021-12-23', 2169, 43404, 3190, NULL, '1.0000', '1.1500', '1.1500', '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 (45591, '2021-12-23', 1409, 43405, 3190, NULL, '1.0000', '13.5000', '13.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 (45592, '2021-12-23', 2237, 43406, 3190, NULL, '1.0000', '-329.8285', '-329.8285', '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 (45593, '2021-12-23', 2277, 43407, 3190, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45594, '2021-12-23', 1651, 43408, 3190, NULL, '1.0000', '5.0422', '5.0422', '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 (45595, '2021-12-23', 2228, 43409, 3190, NULL, '1.0000', '25.0000', '25.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 (45596, '2021-12-23', 2288, 43410, 3190, NULL, '1.0000', '7.8600', '7.8600', '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 (45597, '2021-12-23', 1825, 43411, 3190, NULL, '1.0000', '4.3850', '4.3850', '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 (45598, '2021-12-23', 1482, 43412, 3190, 39898, '1.0000', '-26.5500', '-26.5500', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45599, '2021-12-23', 2642, 43413, 3190, 40111, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45600, '2021-12-23', 9335, 43414, 3190, 42091, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45601, '2021-12-23', 2250, 43415, 3190, 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 (45602, '2021-12-23', 1903, 43416, 3190, 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 (45603, '2021-12-23', 1577, 43417, 3190, NULL, '1.0000', '2.3271', '2.3271', '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 (45604, '2021-12-23', 1339, 43418, 3190, NULL, '1.0000', '2.0000', '2.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 (45605, '2021-12-23', 3054, 43419, 3190, 43224, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45606, '2021-12-23', 2280, 43420, 3190, NULL, '1.0000', '-177.9360', '-177.9360', '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 (45607, '2021-12-23', 2315, 43421, 3190, NULL, '2.0000', '0.8556', '0.8556', '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 (45608, '2021-12-23', 1837, 43422, 3190, 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 (45609, '2021-12-23', 1595, 43423, 3190, 31096, '1.0000', '20.4928', '20.4928', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45610, '2021-12-23', 9214, 43424, 3190, 44141, '2.0000', '9.6000', '9.6000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45611, '2021-12-23', 1863, 43425, 3190, 42816, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45612, '2021-12-23', 1410, 43426, 3190, NULL, '1.0000', '2.1083', '2.1083', '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 (45613, '2021-12-23', 1313, 43427, 3191, 39906, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45614, '2021-12-23', 2435, 43428, 3191, 39979, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45615, '2021-12-23', 8746, 43429, 3191, 44142, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45616, '2021-12-23', 7762, 43430, 3192, NULL, '1.0000', '-0.4000', '-0.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 (45617, '2021-12-23', 7419, 43431, 3192, NULL, '1.0000', '24.8900', '24.8900', '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 (45618, '2021-12-23', 7514, 43432, 3192, NULL, '1.0000', '12.9983', '12.9983', '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 (45619, '2021-12-23', 8135, 43433, 3192, NULL, '1.0000', '13.9000', '13.9000', '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 (45620, '2021-12-23', 9092, 43434, 3192, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '156.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45621, '2021-12-23', 9308, 43435, 3192, NULL, '1.0000', '9.0000', '9.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 (45622, '2021-12-23', 9294, 43436, 3192, 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 (45623, '2021-12-23', 9187, 43437, 3192, NULL, '1.0000', '7.3000', '7.3000', '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 (45624, '2021-12-23', 8254, 43438, 3192, NULL, '1.0000', '27.2800', '27.2800', '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 (45625, '2021-12-23', 9193, 43439, 3192, NULL, '1.0000', '5.5150', '5.5150', '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 (45626, '2021-12-23', 8134, 43440, 3192, NULL, '1.0000', '5.2600', '5.2600', '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 (45627, '2021-12-23', 9272, 43441, 3192, NULL, '1.0000', '3.1000', '3.1000', '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 (45628, '2021-12-23', 2106, 43442, 3192, NULL, '3.0000', '0.9900', '0.9900', '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 (45629, '2021-12-23', 7708, 43443, 3192, NULL, '1.0000', '6.1400', '6.1400', '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 (45630, '2021-12-23', 7927, 43444, 3192, 43164, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45631, '2021-12-23', 7585, 43445, 3192, NULL, '1.0000', '6.2000', '6.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 (45632, '2021-12-23', 8810, 43446, 3192, NULL, '1.0000', '1.9200', '1.9200', '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 (45633, '2021-12-23', 9631, 43447, 3192, 43451, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45634, '2021-12-23', 7848, 43448, 3192, NULL, '1.0000', '1.3500', '1.3500', '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 (45635, '2021-12-23', 7671, 43449, 3192, NULL, '1.0000', '15.5000', '15.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 (45636, '2021-12-23', 1837, 43450, 3192, 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 (45637, '2021-12-23', 8097, 43451, 3192, 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 (45638, '2021-12-23', 7321, 43452, 3192, NULL, '1.0000', '12.6000', '12.6000', '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 (45639, '2021-12-23', 8336, 43453, 3192, NULL, '2.0000', '3.4000', '3.4000', '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 (45640, '2021-12-23', 7819, 43454, 3192, NULL, '1.0000', '9.5000', '9.5000', '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 (45641, '2021-12-23', 7753, 43455, 3192, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45642, '2021-12-23', 9399, 43456, 3192, NULL, '2.0000', '0.4200', '0.4200', '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 (45643, '2021-12-23', 7459, 43457, 3192, NULL, '20.0000', '40.3500', '40.3500', '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 (45644, '2021-12-23', 9092, 43458, 3192, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '157.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45645, '2021-12-23', 7415, 43459, 3192, NULL, '1.0000', '5.4200', '5.4200', '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 (45646, '2021-12-23', 7674, 43460, 3192, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45647, '2021-12-23', 7848, 43461, 3192, NULL, '1.0000', '1.3500', '1.3500', '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 (45648, '2021-12-23', 7671, 43462, 3192, NULL, '1.0000', '15.5000', '15.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 (45649, '2021-12-23', 7947, 43463, 3192, NULL, '1.0000', '14.4400', '14.4400', '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 (45650, '2021-12-23', 7334, 43464, 3192, NULL, '2.0000', '8.1600', '8.1600', '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 (45651, '2021-12-23', 8038, 43465, 3192, NULL, '1.0000', '6.7600', '6.7600', '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 (45652, '2021-12-23', 7514, 43466, 3192, NULL, '2.0000', '12.9983', '12.9983', '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 (45653, '2021-12-23', 7780, 43467, 3192, NULL, '1.0000', '2.6000', '2.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 (45654, '2021-12-23', 9191, 43468, 3192, NULL, '2.0000', '6.6700', '6.6700', '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 (45655, '2021-12-23', 8858, 43469, 3192, NULL, '1.0000', '27.7076', '27.7076', '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 (45656, '2021-12-23', 2009, 43470, 3192, 39545, '1.0000', '-4.4056', '-4.4056', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45657, '2021-12-23', 7819, 43471, 3192, NULL, '1.0000', '9.5000', '9.5000', '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 (45658, '2021-12-23', 9273, 43472, 3192, NULL, '1.0000', '0.3500', '0.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 (45659, '2021-12-23', 7911, 43473, 3192, NULL, '1.0000', '4.3700', '4.3700', '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 (45660, '2021-12-23', 8566, 43474, 3192, 44480, '1.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45661, '2021-12-23', 2070, 43475, 3192, 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 (45662, '2021-12-23', 7411, 43476, 3192, NULL, '1.0000', '1.3500', '1.3500', '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 (45663, '2021-12-23', 1501, 43477, 3192, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45664, '2021-12-23', 7508, 43478, 3192, NULL, '1.0000', '8.5100', '8.5100', '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 (45665, '2021-12-23', 2315, 43479, 3192, NULL, '1.0000', '0.4740', '0.4740', '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 (45666, '2021-12-23', 7848, 43480, 3192, NULL, '1.0000', '1.3500', '1.3500', '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 (45667, '2021-12-23', 7415, 43481, 3192, NULL, '1.0000', '5.4200', '5.4200', '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 (45668, '2021-12-23', 1501, 43482, 3192, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45669, '2021-12-23', 7780, 43483, 3192, NULL, '1.0000', '2.6000', '2.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 (45670, '2021-12-23', 2315, 43484, 3192, NULL, '2.0000', '0.4740', '0.4740', '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 (45671, '2021-12-23', 7609, 43485, 3192, NULL, '1.0000', '4.3300', '4.3300', '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 (45672, '2021-12-23', 7735, 43486, 3192, NULL, '2.0000', '20.7500', '20.7500', '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 (45673, '2021-12-23', 1806, 43487, 3192, NULL, '2.0000', '28.1300', '28.1300', '35.0000', '35.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 (45674, '2021-12-23', 1845, 43488, 3192, NULL, '1.0000', '19.5000', '19.5000', '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 (45675, '2021-12-23', 7819, 43489, 3192, NULL, '1.0000', '9.5000', '9.5000', '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 (45676, '2021-12-23', 7518, 43490, 3192, NULL, '2.0000', '-67.2578', '-67.2578', '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 (45677, '2021-12-23', 1846, 43491, 3192, 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 (45678, '2021-12-23', 7428, 43492, 3192, NULL, '2.0000', '744.9056', '744.9056', '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 (45679, '2021-12-23', 8744, 43493, 3192, 44478, '2.0000', '3.5260', '3.5260', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45680, '2021-12-23', 1367, 43494, 3192, NULL, '10.0000', '49.2100', '49.2100', '7.0000', '7.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 (45681, '2021-12-23', 7963, 43495, 3192, NULL, '1.0000', '4.2500', '4.2500', '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 (45682, '2021-12-23', 8243, 43496, 3192, NULL, '1.0000', '1.1400', '1.1400', '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 (45683, '2021-12-23', 7411, 43497, 3192, NULL, '1.0000', '1.3500', '1.3500', '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 (45684, '2021-12-23', 7672, 43498, 3192, NULL, '1.0000', '1.0200', '1.0200', '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 (45685, '2021-12-23', 7560, 43499, 3192, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (45686, '2021-12-23', 9274, 43500, 3192, NULL, '1.0000', '3.1000', '3.1000', '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 (45687, '2021-12-23', 7412, 43501, 3192, NULL, '1.0000', '1.5200', '1.5200', '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 (45688, '2021-12-23', 7781, 43502, 3192, NULL, '3.0000', '4.2500', '4.2500', '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 (45689, '2021-12-23', 7848, 43503, 3192, NULL, '1.0000', '1.3500', '1.3500', '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 (45690, '2021-12-23', 9620, 43504, 3192, 43084, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45691, '2021-12-23', 7743, 43505, 3192, NULL, '1.0000', '419203.7668', '419203.7668', '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 (45692, '2021-12-23', 7918, 43506, 3192, 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 (45693, '2021-12-23', 9274, 43507, 3192, NULL, '1.0000', '3.1000', '3.1000', '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 (45694, '2021-12-23', 9556, 43508, 3192, NULL, '2.0000', '1.6375', '1.6375', '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 (45695, '2021-12-23', 7473, 43509, 3192, NULL, '1.0000', '25.2998', '25.2998', '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 (45696, '2021-12-23', 7457, 43510, 3192, 43158, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45697, '2021-12-23', 7643, 43511, 3192, NULL, '1.0000', '2.1100', '2.1100', '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 (45698, '2021-12-23', 7806, 43512, 3192, NULL, '5.0000', '14.0000', '14.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 (45699, '2021-12-23', 7715, 43513, 3192, NULL, '1.0000', '1.8900', '1.8900', '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 (45700, '2021-12-23', 8166, 43514, 3192, NULL, '1.0000', '4.6000', '4.6000', '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 (45701, '2021-12-23', 2315, 43515, 3192, NULL, '1.0000', '0.4740', '0.4740', '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 (45702, '2021-12-23', 1602, 43516, 3193, 41376, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45703, '2021-12-23', 2662, 43517, 3193, 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 (45704, '2021-12-23', 2020, 43518, 3193, NULL, '1.0000', '9.2832', '9.2832', '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 (45705, '2021-12-23', 9533, 43519, 3193, 40120, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45706, '2021-12-23', 2293, 43520, 3193, NULL, '1.0000', '2.7733', '2.7733', '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 (45707, '2021-12-23', 1499, 43521, 3193, 41408, '2.0000', '0.6447', '0.6447', '0.7000', '0.7000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45708, '2021-12-23', 1825, 43522, 3193, NULL, '1.0000', '4.3850', '4.3850', '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 (45709, '2021-12-23', 7586, 43523, 3193, NULL, '1.0000', '4.1700', '4.1700', '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 (45710, '2021-12-23', 2103, 43524, 3193, 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 (45711, '2021-12-23', 7750, 43525, 3193, NULL, '1.0000', '34.9000', '34.9000', '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 (45712, '2021-12-23', 1678, 43526, 3193, 41377, '1.0000', '33.9300', '33.9300', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45713, '2021-12-23', 3029, 43527, 3193, NULL, '1.0000', '4.7700', '4.7700', '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 (45714, '2021-12-23', 2273, 43528, 3193, 39870, '1.0000', '3.6337', '3.6337', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45715, '2021-12-23', 2762, 43529, 3193, 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 (45716, '2021-12-23', 9609, 43530, 3193, 43250, '1.0000', '6.4000', '6.4000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45717, '2021-12-23', 1880, 43531, 3193, 42565, '1.0000', '4.6392', '4.6392', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45718, '2021-12-23', 2603, 43532, 3193, 37968, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45719, '2021-12-23', 2865, 43533, 3193, NULL, '1.0000', '2.8000', '2.8000', '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 (45720, '2021-12-23', 1533, 43534, 3193, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45721, '2021-12-23', 1863, 43535, 3193, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45722, '2021-12-23', 2435, 43536, 3193, 39979, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45723, '2021-12-23', 1782, 43537, 3193, 19340, '2.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 (45724, '2021-12-23', 8146, 43538, 3193, NULL, '1.0000', '3.8200', '3.8200', '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 (45725, '2021-12-23', 2730, 43539, 3193, 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 (45726, '2021-12-23', 1863, 43540, 3193, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45727, '2021-12-23', 1519, 43541, 3193, NULL, '2.0000', '3.3980', '3.3980', '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 (45728, '2021-12-23', 1342, 43542, 3193, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45729, '2021-12-23', 1950, 43543, 3193, NULL, '1.0000', '3.5525', '3.5525', '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 (45730, '2021-12-23', 2643, 43544, 3193, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45731, '2021-12-23', 8638, 43545, 3193, NULL, '5.0000', '0.5100', '0.5100', '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 (45732, '2021-12-23', 1502, 43546, 3193, 42838, '1.0000', '-50.9143', '-50.9143', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45733, '2021-12-23', 2662, 43547, 3193, 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 (45734, '2021-12-23', 9482, 43548, 3193, 32547, '4.0000', '0.5000', '0.5000', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45735, '2021-12-23', 2415, 43549, 3193, 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 (45736, '2021-12-23', 7716, 43550, 3193, NULL, '1.0000', '0.0000', '0.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 (45737, '2021-12-23', 1780, 43551, 3193, 43253, '1.0000', '95.5759', '95.5759', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45738, '2021-12-23', 1381, 43552, 3193, 41381, '1.0000', '-1241.3274', '-1241.3274', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45739, '2021-12-23', 2221, 43553, 3193, 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 (45740, '2021-12-23', 1382, 43554, 3193, 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 (45741, '2021-12-23', 8276, 43555, 3193, NULL, '1.0000', '11.8200', '11.8200', '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 (45742, '2021-12-23', 1699, 43556, 3193, NULL, '1.0000', '3.2000', '3.2000', '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 (45743, '2021-12-23', 1854, 43557, 3193, 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 (45744, '2021-12-23', 1419, 43558, 3193, NULL, '1.0000', '13.1040', '13.1040', '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 (45745, '2021-12-23', 9160, 43559, 3194, NULL, '1.0000', '41.6640', '41.6640', '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 (45746, '2021-12-23', 9642, 43560, 3194, 43539, '1.0000', '51.3000', '51.3000', '68.0000', '68.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45747, '2021-12-23', 7411, 43561, 3194, NULL, '2.0000', '1.3500', '1.3500', '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 (45748, '2021-12-23', 7786, 43562, 3194, NULL, '1.0000', '22.0000', '22.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 (45749, '2021-12-23', 7375, 43563, 3194, NULL, '10.0000', '4.7000', '4.7000', '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 (45750, '2021-12-23', 7612, 43564, 3194, NULL, '1.0000', '1.1770', '1.1770', '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 (45751, '2021-12-23', 1542, 43565, 3194, 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 (45752, '2021-12-23', 9193, 43566, 3194, NULL, '1.0000', '5.5150', '5.5150', '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 (45753, '2021-12-23', 7753, 43567, 3194, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45754, '2021-12-23', 7391, 43568, 3194, NULL, '1.0000', '-26.2683', '-26.2683', '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 (45755, '2021-12-23', 1854, 43569, 3194, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45756, '2021-12-23', 8518, 43570, 3194, NULL, '1.0000', '17.6400', '17.6400', '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 (45757, '2021-12-23', 7780, 43571, 3194, NULL, '1.0000', '2.6000', '2.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 (45758, '2021-12-23', 8596, 43572, 3194, NULL, '1.0000', '17.0000', '17.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 (45759, '2021-12-23', 7411, 43573, 3194, NULL, '1.0000', '1.3500', '1.3500', '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 (45760, '2021-12-23', 2916, 43574, 3195, 44640, '1.0000', '12.8015', '12.8015', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45761, '2021-12-23', 2169, 43575, 3195, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45762, '2021-12-23', 2916, 43576, 3195, 44640, '1.0000', '12.8015', '12.8015', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45763, '2021-12-23', 1382, 43577, 3195, 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 (45764, '2021-12-23', 2221, 43578, 3195, 44634, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45765, '2021-12-23', 8608, 43579, 3195, NULL, '1.0000', '0.9000', '0.9000', '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 (45766, '2021-12-23', 1350, 43580, 3195, 40586, '1.0000', '-2.7180', '-2.7180', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45767, '2021-12-23', 1346, 43581, 3195, NULL, '60.0000', '0.9289', '0.9289', '1.5000', '1.5000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45768, '2021-12-23', 9578, 43582, 3195, 44499, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45769, '2021-12-23', 1481, 43583, 3195, 37573, '1.0000', '65.5875', '65.5875', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45770, '2021-12-23', 9568, 43584, 3195, 44557, '1.0000', '52.9800', '52.9800', '70.0000', '70.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45771, '2021-12-23', 2698, 43585, 3195, 44556, '1.0000', '36.8600', '36.8600', '49.0000', '49.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45772, '2021-12-23', 7459, 43586, 3195, 31998, '10.0000', '2.3500', '2.3500', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45773, '2021-12-23', 2437, 43587, 3195, 44491, '1.0000', '88.0000', '88.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45774, '2021-12-23', 2166, 43588, 3195, 44544, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45775, '2021-12-23', 9568, 43589, 3195, 44557, '1.0000', '52.9800', '52.9800', '70.0000', '70.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45776, '2021-12-23', 2281, 43590, 3195, NULL, '2.0000', '3.0000', '3.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 (45777, '2021-12-23', 1935, 43591, 3195, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45778, '2021-12-23', 1650, 43592, 3195, 44602, '1.0000', '14.8320', '14.8320', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45779, '2021-12-23', 2169, 43593, 3195, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45780, '2021-12-23', 2320, 43594, 3195, 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 (45781, '2021-12-23', 2862, 43595, 3195, 17481, '1.0000', '5.0000', '5.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 (45782, '2021-12-23', 1433, 43596, 3195, 44552, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45783, '2021-12-23', 1864, 43597, 3195, 42958, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45784, '2021-12-23', 1506, 43598, 3195, 23212, '1.0000', '53.7259', '53.7259', '21.5000', '21.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 (45785, '2021-12-23', 1704, 43599, 3195, 23582, '1.0000', '-6363.1556', '-6363.1556', '36.0000', '36.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 (45786, '2021-12-23', 1845, 43600, 3195, 40638, '1.0000', '20.0938', '20.0938', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45787, '2021-12-23', 2825, 43601, 3195, NULL, '2.0000', '12.0000', '12.0000', '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 (45788, '2021-12-23', 1846, 43602, 3195, NULL, '1.0000', '31.0430', '31.0430', '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 (45789, '2021-12-23', 7756, 43603, 3195, NULL, '1.0000', '23.9111', '23.9111', '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 (45790, '2021-12-23', 9577, 43604, 3195, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45791, '2021-12-23', 1715, 43605, 3195, NULL, '1.0000', '4.9200', '4.9200', '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 (45792, '2021-12-23', 9577, 43606, 3195, 38070, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45793, '2021-12-23', 1888, 43607, 3195, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45794, '2021-12-23', 1584, 43608, 3195, 44498, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45795, '2021-12-23', 1595, 43609, 3195, 42206, '1.0000', '19.8580', '19.8580', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45796, '2021-12-23', 2655, 43610, 3195, 42939, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45797, '2021-12-23', 2697, 43611, 3195, 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 (45798, '2021-12-23', 1478, 43612, 3195, 44575, '1.0000', '128.8409', '128.8409', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45799, '2021-12-23', 1700, 43613, 3195, 42216, '1.0000', '32.6296', '32.6296', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45800, '2021-12-23', 1602, 43614, 3195, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45801, '2021-12-23', 1504, 43615, 3195, NULL, '10.0000', '1.2125', '1.2125', '2.2000', '2.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 (45802, '2021-12-23', 7746, 43616, 3195, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45803, '2021-12-23', 1995, 43617, 3195, 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 (45804, '2021-12-23', 1502, 43618, 3195, 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 (45805, '2021-12-23', 7447, 43619, 3195, NULL, '12.0000', '19.1100', '19.1100', '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 (45806, '2021-12-23', 1888, 43620, 3195, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45807, '2021-12-23', 1602, 43621, 3195, 43035, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45808, '2021-12-23', 2916, 43622, 3195, 44640, '1.0000', '12.8015', '12.8015', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45809, '2021-12-23', 1519, 43623, 3195, 40645, '1.0000', '3.3717', '3.3717', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45810, '2021-12-23', 9634, 43624, 3195, 40901, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45811, '2021-12-23', 2858, 43625, 3195, 17780, '1.0000', '1.0000', '1.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 (45812, '2021-12-23', 2440, 43626, 3196, 39978, '1.0000', '5.4115', '5.4115', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45813, '2021-12-23', 1519, 43627, 3196, NULL, '1.0000', '3.3980', '3.3980', '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 (45814, '2021-12-23', 1592, 43628, 3196, 34586, '1.0000', '35.4585', '35.4585', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45815, '2021-12-23', 8596, 43629, 3197, NULL, '1.0000', '17.0000', '17.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 (45816, '2021-12-23', 2859, 43630, 3198, NULL, '2.0000', '0.6700', '0.6700', '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 (45817, '2021-12-23', 2713, 43631, 3198, 44440, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45818, '2021-12-24', 2108, 43632, 3199, 6020, '1.0000', '4.7500', '4.7500', '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 (45819, '2021-12-24', 2060, 43633, 3199, 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 (45820, '2021-12-24', 1578, 43634, 3199, 9447, '1.0000', '1.9700', '1.9700', '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 (45821, '2021-12-24', 1954, 43635, 3199, 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 (45822, '2021-12-24', 2887, 43636, 3199, 44546, '2.0000', '9.7831', '9.7831', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45823, '2021-12-24', 1409, 43637, 3199, 44551, '2.0000', '13.1360', '13.1360', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45824, '2021-12-24', 1621, 43638, 3199, 44615, '1.0000', '46.2610', '46.2610', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45825, '2021-12-24', 1602, 43639, 3199, 42964, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45826, '2021-12-24', 2916, 43640, 3199, 44640, '1.0000', '12.8015', '12.8015', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45827, '2021-12-24', 1910, 43641, 3199, 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 (45828, '2021-12-24', 1680, 43642, 3199, 34689, '1.0000', '4.9927', '4.9927', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45829, '2021-12-24', 1839, 43643, 3199, 44605, '1.0000', '6.3984', '6.3984', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45830, '2021-12-24', 9517, 43644, 3199, 44045, '1.0000', '18.0000', '18.0000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45831, '2021-12-24', 2221, 43645, 3199, 44634, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45832, '2021-12-24', 7532, 43646, 3199, NULL, '1.0000', '20.6000', '20.6000', '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 (45833, '2021-12-24', 2109, 43647, 3199, 40229, '10.0000', '0.2500', '0.2500', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45834, '2021-12-24', 2280, 43648, 3199, 21586, '1.0000', '2.3427', '2.3427', '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 (45835, '2021-12-24', 2280, 43648, 3199, 21587, '3.0000', '2.3427', '2.3427', '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 (45836, '2021-12-24', 7684, 43649, 3199, NULL, '2.0000', '9.0000', '9.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 (45837, '2021-12-24', 1337, 43650, 3199, 44622, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45838, '2021-12-24', 2224, 43651, 3199, NULL, '4.0000', '14.0000', '14.0000', '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 (45839, '2021-12-24', 1908, 43652, 3199, 5510, '2.0000', '1.7500', '1.7500', '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 (45840, '2021-12-24', 1672, 43653, 3199, 40214, '10.0000', '44.9003', '44.9003', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45841, '2021-12-24', 2302, 43654, 3199, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45842, '2021-12-24', 2544, 43655, 3200, 29812, '1.0000', '6.8800', '6.8800', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45843, '2021-12-24', 8335, 43656, 3200, NULL, '1.0000', '21.7000', '21.7000', '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 (45844, '2021-12-24', 2293, 43657, 3200, 3064, '5.0000', '1.4400', '1.4400', '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 (45845, '2021-12-24', 1954, 43658, 3200, 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 (45846, '2021-12-24', 2083, 43659, 3200, 1662, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '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 (45847, '2021-12-24', 2544, 43660, 3201, 23574, '1.0000', '6.8800', '6.8800', '9.5000', '9.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 (45848, '2021-12-24', 8335, 43661, 3201, NULL, '1.0000', '21.7000', '21.7000', '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 (45849, '2021-12-24', 2293, 43662, 3201, 3064, '5.0000', '1.4400', '1.4400', '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 (45850, '2021-12-24', 1954, 43663, 3201, 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 (45851, '2021-12-24', 2083, 43664, 3201, 1662, '1.0000', '0.5800', '0.5800', '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 (45852, '2021-12-24', 2221, 43665, 3201, 44634, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45853, '2021-12-24', 1342, 43666, 3202, 42947, '2.0000', '18.5909', '18.5909', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45854, '2021-12-24', 1519, 43667, 3202, 40645, '1.0000', '3.3717', '3.3717', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45855, '2021-12-24', 1923, 43668, 3202, 5616, '1.0000', '1.8000', '1.8000', '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 (45856, '2021-12-24', 9097, 43669, 3203, 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 (45857, '2021-12-24', 9274, 43670, 3203, NULL, '1.0000', '3.1000', '3.1000', '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 (45858, '2021-12-24', 1501, 43671, 3203, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45859, '2021-12-24', 7704, 43672, 3203, NULL, '1.0000', '-1.5625', '-1.5625', '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 (45860, '2021-12-24', 7867, 43673, 3203, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45861, '2021-12-24', 7411, 43674, 3203, NULL, '1.0000', '1.3500', '1.3500', '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 (45862, '2021-12-24', 8393, 43675, 3203, 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 (45863, '2021-12-24', 2699, 43676, 3203, 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 (45864, '2021-12-24', 8926, 43677, 3203, NULL, '1.0000', '39.0000', '39.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 (45865, '2021-12-24', 8359, 43678, 3203, NULL, '1.0000', '61.0320', '61.0320', '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 (45866, '2021-12-24', 2315, 43679, 3203, NULL, '4.0000', '0.4740', '0.4740', '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 (45867, '2021-12-24', 8080, 43680, 3203, NULL, '4.0000', '2.9000', '2.9000', '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 (45868, '2021-12-24', 8097, 43681, 3203, 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 (45869, '2021-12-24', 7758, 43682, 3203, 43103, '1.0000', '-45.9138', '-45.9138', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45870, '2021-12-24', 2295, 43683, 3203, 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 (45871, '2021-12-24', 7674, 43684, 3203, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45872, '2021-12-24', 2315, 43685, 3203, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (45873, '2021-12-24', 7411, 43686, 3203, NULL, '2.0000', '1.3500', '1.3500', '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 (45874, '2021-12-24', 7671, 43687, 3203, NULL, '2.0000', '15.5000', '15.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 (45875, '2021-12-24', 7674, 43688, 3203, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45876, '2021-12-24', 8672, 43689, 3203, NULL, '2.0000', '5.4500', '5.4500', '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 (45877, '2021-12-24', 7472, 43690, 3203, NULL, '1.0000', '4.1000', '4.1000', '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 (45878, '2021-12-24', 9098, 43691, 3203, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45879, '2021-12-24', 9098, 43692, 3203, NULL, '6.0000', '25.0000', '25.0000', '34.5000', '34.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 (45880, '2021-12-24', 2648, 43693, 3203, NULL, '1.0000', '5.1333', '5.1333', '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 (45881, '2021-12-24', 7333, 43694, 3203, NULL, '1.0000', '13.5000', '13.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 (45882, '2021-12-24', 3022, 43695, 3203, NULL, '1.0000', '4.1200', '4.1200', '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 (45883, '2021-12-24', 7547, 43696, 3203, NULL, '6.0000', '0.0000', '0.0000', '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 (45884, '2021-12-24', 2321, 43697, 3203, NULL, '1.0000', '2.5000', '2.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 (45885, '2021-12-24', 9193, 43698, 3203, NULL, '2.0000', '5.5150', '5.5150', '9.5000', '9.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 (45886, '2021-12-24', 8361, 43699, 3203, NULL, '1.0000', '7.4495', '7.4495', '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 (45887, '2021-12-24', 7672, 43700, 3203, NULL, '1.0000', '1.0200', '1.0200', '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 (45888, '2021-12-24', 7530, 43701, 3203, NULL, '1.0000', '6.2000', '6.2000', '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 (45889, '2021-12-24', 7780, 43702, 3203, NULL, '1.0000', '2.6000', '2.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 (45890, '2021-12-24', 8463, 43703, 3203, NULL, '1.0000', '18.0000', '18.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 (45891, '2021-12-24', 7781, 43704, 3203, NULL, '3.0000', '4.2500', '4.2500', '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 (45892, '2021-12-24', 2315, 43705, 3203, NULL, '2.0000', '0.4740', '0.4740', '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 (45893, '2021-12-24', 8166, 43706, 3203, NULL, '1.0000', '4.6000', '4.6000', '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 (45894, '2021-12-24', 8614, 43707, 3203, NULL, '1.0000', '20.0000', '20.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 (45895, '2021-12-24', 2506, 43708, 3203, 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 (45896, '2021-12-24', 8359, 43709, 3203, NULL, '1.0000', '61.0320', '61.0320', '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 (45897, '2021-12-24', 7756, 43710, 3203, NULL, '1.0000', '21.7700', '21.7700', '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 (45898, '2021-12-24', 8775, 43711, 3203, 43940, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45899, '2021-12-24', 7860, 43712, 3203, NULL, '1.0000', '3.8500', '3.8500', '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 (45900, '2021-12-24', 7674, 43713, 3203, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45901, '2021-12-24', 7798, 43714, 3203, NULL, '4.0000', '4.6200', '4.6200', '18.0000', '18.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 (45902, '2021-12-24', 7799, 43715, 3203, NULL, '2.0000', '2.0000', '2.0000', '8.5000', '8.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 (45903, '2021-12-24', 7711, 43716, 3203, NULL, '1.0000', '-78.4806', '-78.4806', '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 (45904, '2021-12-24', 7411, 43717, 3203, NULL, '2.0000', '1.3500', '1.3500', '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 (45905, '2021-12-24', 7895, 43718, 3203, 31023, '2.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45906, '2021-12-24', 7701, 43719, 3203, NULL, '1.0000', '0.6300', '0.6300', '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 (45907, '2021-12-24', 7713, 43720, 3203, 37845, '4.0000', '0.4202', '0.4202', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45908, '2021-12-24', 7411, 43721, 3203, NULL, '2.0000', '1.3500', '1.3500', '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 (45909, '2021-12-24', 8918, 43722, 3203, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45910, '2021-12-24', 7867, 43723, 3203, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45911, '2021-12-24', 1854, 43724, 3203, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45912, '2021-12-24', 9154, 43725, 3203, NULL, '2.0000', '10.6800', '10.6800', '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 (45913, '2021-12-24', 7782, 43726, 3203, NULL, '4.0000', '5.0000', '5.0000', '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 (45914, '2021-12-24', 8512, 43727, 3203, 43136, '10.0000', '1.8000', '1.8000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45915, '2021-12-24', 8097, 43728, 3203, 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 (45916, '2021-12-24', 7848, 43729, 3203, NULL, '1.0000', '1.3500', '1.3500', '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 (45917, '2021-12-24', 2699, 43730, 3203, 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 (45918, '2021-12-24', 7527, 43731, 3203, 31031, '2.0000', '0.8900', '0.8900', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45919, '2021-12-24', 1993, 43732, 3203, 39438, '1.0000', '1.5914', '1.5914', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45920, '2021-12-24', 7931, 43733, 3203, NULL, '1.0000', '0.2500', '0.2500', '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 (45921, '2021-12-24', 7704, 43734, 3203, NULL, '1.0000', '-1.5625', '-1.5625', '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 (45922, '2021-12-24', 1854, 43735, 3203, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45923, '2021-12-24', 7590, 43736, 3203, NULL, '1.0000', '4.3600', '4.3600', '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 (45924, '2021-12-24', 8350, 43737, 3203, NULL, '1.0000', '12.0000', '12.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 (45925, '2021-12-24', 1947, 43738, 3203, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45926, '2021-12-24', 9092, 43739, 3203, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '154.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45927, '2021-12-24', 8247, 43740, 3203, NULL, '2.0000', '54.0000', '54.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 (45928, '2021-12-24', 7674, 43741, 3203, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45929, '2021-12-24', 9274, 43742, 3203, NULL, '1.0000', '3.1000', '3.1000', '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 (45930, '2021-12-24', 7967, 43743, 3203, 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 (45931, '2021-12-24', 7447, 43744, 3203, NULL, '7.0000', '19.1100', '19.1100', '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 (45932, '2021-12-24', 8937, 43745, 3203, NULL, '2.0000', '3.5000', '3.5000', '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 (45933, '2021-12-24', 7674, 43746, 3203, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45934, '2021-12-24', 7967, 43747, 3203, 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 (45935, '2021-12-24', 8475, 43748, 3203, NULL, '1.0000', '8.6000', '8.6000', '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 (45936, '2021-12-24', 7612, 43749, 3203, NULL, '1.0000', '1.1770', '1.1770', '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 (45937, '2021-12-24', 8793, 43750, 3203, 31662, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45938, '2021-12-24', 8418, 43751, 3203, NULL, '1.0000', '43.8200', '43.8200', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45939, '2021-12-24', 7832, 43752, 3203, 43532, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45940, '2021-12-24', 9192, 43753, 3203, 43059, '1.0000', '17.9100', '17.9100', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45941, '2021-12-24', 2315, 43754, 3203, NULL, '5.0000', '0.4740', '0.4740', '0.6000', '0.6000', '-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 (45942, '2021-12-24', 7780, 43755, 3203, NULL, '2.0000', '2.6000', '2.6000', '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 (45943, '2021-12-24', 9367, 43756, 3203, NULL, '1.0000', '32.9800', '32.9800', '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 (45944, '2021-12-24', 7530, 43757, 3203, NULL, '1.0000', '6.2000', '6.2000', '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 (45945, '2021-12-24', 8497, 43758, 3203, NULL, '1.0000', '337.1200', '337.1200', '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 (45946, '2021-12-24', 1947, 43759, 3203, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45947, '2021-12-24', 9498, 43760, 3203, NULL, '2.0000', '12.5000', '12.5000', '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 (45948, '2021-12-24', 7853, 43761, 3203, NULL, '1.0000', '35.0000', '35.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 (45949, '2021-12-24', 1854, 43762, 3203, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45950, '2021-12-24', 7668, 43763, 3203, NULL, '1.0000', '19.6600', '19.6600', '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 (45951, '2021-12-24', 7799, 43764, 3203, NULL, '1.0000', '2.0000', '2.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 (45952, '2021-12-24', 7725, 43765, 3203, NULL, '1.0000', '6.2371', '6.2371', '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 (45953, '2021-12-24', 8918, 43766, 3204, 37847, '1.0000', '5.5250', '5.5250', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45954, '2021-12-24', 9556, 43767, 3204, NULL, '1.0000', '1.6375', '1.6375', '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 (45955, '2021-12-24', 7378, 43768, 3204, 30011, '1.0000', '40.9567', '40.9567', '197.0000', '197.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45956, '2021-12-24', 7428, 43769, 3204, NULL, '2.0000', '744.9056', '744.9056', '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 (45957, '2021-12-24', 7671, 43770, 3204, NULL, '1.0000', '15.5000', '15.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 (45958, '2021-12-24', 7728, 43771, 3204, 44476, '1.0000', '1.8806', '1.8806', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45959, '2021-12-24', 8200, 43772, 3204, NULL, '1.0000', '629.5726', '629.5726', '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 (45960, '2021-12-24', 7848, 43773, 3204, NULL, '1.0000', '1.3500', '1.3500', '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 (45961, '2021-12-24', 7825, 43774, 3204, NULL, '1.0000', '6.5000', '6.5000', '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 (45962, '2021-12-24', 7687, 43775, 3204, NULL, '1.0000', '34.8226', '34.8226', '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 (45963, '2021-12-24', 8164, 43776, 3204, NULL, '1.0000', '3.1200', '3.1200', '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 (45964, '2021-12-24', 7848, 43777, 3204, NULL, '1.0000', '1.3500', '1.3500', '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 (45965, '2021-12-24', 8714, 43778, 3204, NULL, '1.0000', '20.7036', '20.7036', '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 (45966, '2021-12-24', 9449, 43779, 3204, NULL, '1.0000', '8.5000', '8.5000', '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 (45967, '2021-12-24', 9274, 43780, 3204, NULL, '1.0000', '3.1000', '3.1000', '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 (45968, '2021-12-24', 7827, 43781, 3204, NULL, '2.0000', '9.5000', '9.5000', '8.5000', '8.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 (45969, '2021-12-24', 3018, 43782, 3204, 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 (45970, '2021-12-24', 8548, 43783, 3204, NULL, '1.0000', '12.0000', '12.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 (45971, '2021-12-24', 8200, 43784, 3204, NULL, '1.0000', '629.5726', '629.5726', '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 (45972, '2021-12-24', 2506, 43785, 3204, 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 (45973, '2021-12-24', 7674, 43786, 3204, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45974, '2021-12-24', 7675, 43787, 3204, NULL, '1.0000', '11.4300', '11.4300', '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 (45975, '2021-12-24', 9684, 43788, 3204, 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 (45976, '2021-12-24', 7360, 43789, 3204, 43115, '2.0000', '-284.5456', '-284.5456', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45977, '2021-12-24', 7565, 43790, 3204, NULL, '1.0000', '0.2000', '0.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 (45978, '2021-12-24', 7333, 43791, 3204, NULL, '2.0000', '13.5000', '13.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 (45979, '2021-12-24', 8858, 43792, 3204, NULL, '2.0000', '27.7076', '27.7076', '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 (45980, '2021-12-24', 9344, 43793, 3204, NULL, '1.0000', '17.9400', '17.9400', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45981, '2021-12-24', 7673, 43794, 3204, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45982, '2021-12-24', 8714, 43795, 3204, NULL, '1.0000', '20.7036', '20.7036', '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 (45983, '2021-12-24', 8308, 43796, 3204, NULL, '1.0000', '11.0000', '11.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 (45984, '2021-12-24', 2317, 43797, 3204, 40395, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '32.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45985, '2021-12-24', 7456, 43798, 3204, NULL, '1.0000', '1.3800', '1.3800', '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 (45986, '2021-12-24', 9272, 43799, 3204, NULL, '1.0000', '3.1000', '3.1000', '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 (45987, '2021-12-24', 1672, 43800, 3204, NULL, '10.0000', '2.9200', '2.9200', '4.0000', '4.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 (45988, '2021-12-24', 7412, 43801, 3204, NULL, '1.0000', '1.5200', '1.5200', '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 (45989, '2021-12-24', 8135, 43802, 3204, NULL, '1.0000', '13.9000', '13.9000', '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 (45990, '2021-12-24', 7514, 43803, 3204, NULL, '1.0000', '12.9983', '12.9983', '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 (45991, '2021-12-24', 8756, 43804, 3204, 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 (45992, '2021-12-24', 7560, 43805, 3204, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (45993, '2021-12-24', 7524, 43806, 3204, NULL, '1.0000', '103.0922', '103.0922', '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 (45994, '2021-12-24', 7782, 43807, 3204, NULL, '2.0000', '5.0000', '5.0000', '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 (45995, '2021-12-24', 7852, 43808, 3204, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45996, '2021-12-24', 7769, 43809, 3204, 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 (45997, '2021-12-24', 7711, 43810, 3204, NULL, '2.0000', '-78.4806', '-78.4806', '49.0000', '49.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 (45998, '2021-12-24', 7749, 43811, 3204, 43076, '1.0000', '20.0200', '20.0200', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45999, '2021-12-24', 7411, 43812, 3204, NULL, '5.0000', '1.3500', '1.3500', '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 (46000, '2021-12-24', 1584, 43813, 3205, 44498, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46001, '2021-12-24', 1634, 43814, 3205, 24327, '1.0000', '23.0102', '23.0102', '33.0000', '33.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 (46002, '2021-12-24', 2602, 43815, 3205, 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 (46003, '2021-12-24', 1409, 43816, 3205, 44551, '1.0000', '13.1360', '13.1360', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46004, '2021-12-24', 1432, 43817, 3205, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46005, '2021-12-24', 1863, 43818, 3205, 44537, '3.0000', '1.1780', '1.1780', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46006, '2021-12-24', 2109, 43819, 3205, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46007, '2021-12-24', 9554, 43820, 3205, 39184, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46008, '2021-12-24', 2169, 43821, 3205, 42967, '2.0000', '1.0678', '1.0678', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46009, '2021-12-24', 1695, 43822, 3205, 44597, '1.0000', '76.5611', '76.5611', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46010, '2021-12-24', 1707, 43823, 3205, 40222, '1.0000', '25.1200', '25.1200', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46011, '2021-12-24', 3017, 43824, 3205, 44527, '1.0000', '3.9000', '3.9000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46012, '2021-12-24', 3029, 43825, 3205, 42950, '1.0000', '5.9209', '5.9209', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46013, '2021-12-24', 9480, 43826, 3205, 44506, '2.0000', '8.5000', '8.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46014, '2021-12-24', 1892, 43827, 3205, 5497, '1.0000', '0.5200', '0.5200', '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 (46015, '2021-12-24', 1863, 43828, 3205, 44537, '2.0000', '1.1780', '1.1780', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46016, '2021-12-24', 1612, 43829, 3205, 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 (46017, '2021-12-24', 2511, 43830, 3205, 42959, '1.0000', '8.6512', '8.6512', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46018, '2021-12-24', 1618, 43831, 3205, 32863, '1.0000', '11.8200', '11.8200', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46019, '2021-12-24', 2281, 43832, 3205, 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 (46020, '2021-12-24', 1813, 43833, 3205, 12729, '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 (46021, '2021-12-24', 7632, 43834, 3205, 32014, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46022, '2021-12-24', 1673, 43835, 3205, 9409, '1.0000', '12.9000', '12.9000', '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 (46023, '2021-12-24', 2825, 43836, 3205, NULL, '1.0000', '12.0000', '12.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 (46024, '2021-12-24', 9688, 43837, 3205, 44031, '3.0000', '3.4000', '3.4000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46025, '2021-12-24', 1935, 43838, 3205, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46026, '2021-12-24', 1935, 43838, 3205, 31718, '3.0000', '6.8496', '6.8496', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46027, '2021-12-24', 2829, 43839, 3205, 16965, '1.0000', '24.9924', '24.9924', '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 (46028, '2021-12-24', 2695, 43840, 3205, 42961, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46029, '2021-12-24', 7385, 43841, 3205, 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 (46030, '2021-12-24', 1609, 43842, 3205, 9425, '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 (46031, '2021-12-24', 2277, 43843, 3205, 38069, '2.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46032, '2021-12-24', 1935, 43844, 3205, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46033, '2021-12-24', 2366, 43845, 3205, NULL, '2.0000', '3.7873', '3.7873', '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 (46034, '2021-12-24', 1712, 43846, 3205, 44627, '1.0000', '9.6500', '9.6500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46035, '2021-12-24', 2280, 43847, 3205, 21587, '1.0000', '2.3427', '2.3427', '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 (46036, '2021-12-24', 1863, 43848, 3205, 44537, '1.0000', '1.1780', '1.1780', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46037, '2021-12-24', 2661, 43849, 3205, NULL, '5.0000', '9.0000', '9.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 (46038, '2021-12-24', 7444, 43850, 3205, 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 (46039, '2021-12-24', 2414, 43851, 3205, NULL, '2.0000', '3.8350', '3.8350', '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 (46040, '2021-12-24', 1602, 43852, 3205, 42964, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46041, '2021-12-24', 2916, 43853, 3205, 44640, '1.0000', '12.8015', '12.8015', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46042, '2021-12-24', 1502, 43854, 3205, 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 (46043, '2021-12-24', 2221, 43855, 3205, 44634, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46044, '2021-12-24', 2320, 43856, 3205, 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 (46045, '2021-12-24', 2484, 43857, 3205, 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 (46046, '2021-12-24', 2487, 43858, 3205, 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 (46047, '2021-12-24', 2936, 43859, 3205, 22629, '1.0000', '6.0400', '6.0400', '8.0000', '8.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 (46048, '2021-12-24', 1863, 43860, 3205, 44537, '1.0000', '1.1780', '1.1780', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46049, '2021-12-24', 2221, 43861, 3205, 44634, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46050, '2021-12-24', 2232, 43862, 3205, 43047, '1.0000', '30.4927', '30.4927', '42.0000', '42.0000', '4.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46051, '2021-12-24', 2699, 43863, 3205, 42938, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46052, '2021-12-24', 1667, 43864, 3205, 37587, '1.0000', '66.2744', '66.2744', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46053, '2021-12-24', 1935, 43865, 3205, 40874, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46054, '2021-12-24', 2280, 43866, 3205, 21587, '1.0000', '2.3427', '2.3427', '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 (46055, '2021-12-24', 8743, 43867, 3206, NULL, '1.0000', '10.4167', '10.4167', '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 (46056, '2021-12-24', 8745, 43868, 3206, 44144, '1.0000', '8.9932', '8.9932', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46057, '2021-12-24', 2435, 43869, 3206, 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 (46058, '2021-12-24', 2169, 43870, 3206, NULL, '1.0000', '1.1500', '1.1500', '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 (46059, '2021-12-24', 1307, 43871, 3206, NULL, '1.0000', '1.7846', '1.7846', '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 (46060, '2021-12-24', 2366, 43872, 3206, NULL, '2.0000', '-17.8500', '-17.8500', '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 (46061, '2021-12-24', 2169, 43873, 3206, NULL, '1.0000', '1.1500', '1.1500', '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 (46062, '2021-12-24', 1810, 43874, 3206, NULL, '1.0000', '8.5104', '8.5104', '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 (46063, '2021-12-24', 2354, 43875, 3206, NULL, '1.0000', '5.0600', '5.0600', '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 (46064, '2021-12-24', 2277, 43876, 3206, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46065, '2021-12-24', 2320, 43877, 3206, 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 (46066, '2021-12-24', 2475, 43878, 3206, 39983, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46067, '2021-12-24', 7514, 43879, 3206, NULL, '2.0000', '2.2500', '2.2500', '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 (46068, '2021-12-24', 7639, 43880, 3206, 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 (46069, '2021-12-24', 2821, 43881, 3206, 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 (46070, '2021-12-24', 1912, 43882, 3206, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46071, '2021-12-24', 1999, 43883, 3206, 40341, '1.0000', '6.8730', '6.8730', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46072, '2021-12-24', 7980, 43884, 3206, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (46073, '2021-12-24', 1689, 43885, 3206, 42821, '1.0000', '12.9279', '12.9279', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46074, '2021-12-24', 2221, 43886, 3206, 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 (46075, '2021-12-24', 1665, 43887, 3206, 34008, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46076, '2021-12-24', 1966, 43888, 3206, 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 (46077, '2021-12-24', 2839, 43889, 3206, 44004, '1.0000', '4.5000', '4.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46078, '2021-12-24', 1411, 43890, 3206, NULL, '1.0000', '25.9000', '25.9000', '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 (46079, '2021-12-24', 1855, 43891, 3206, 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 (46080, '2021-12-24', 1571, 43892, 3206, 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 (46081, '2021-12-24', 7411, 43893, 3206, NULL, '1.0000', '1.3500', '1.3500', '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 (46082, '2021-12-24', 1854, 43894, 3206, 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 (46083, '2021-12-24', 2269, 43895, 3206, NULL, '1.0000', '5.8300', '5.8300', '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 (46084, '2021-12-24', 1744, 43896, 3206, 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 (46085, '2021-12-24', 2277, 43897, 3206, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46086, '2021-12-24', 2733, 43898, 3206, 19362, '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 (46087, '2021-12-24', 2730, 43899, 3206, 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 (46088, '2021-12-24', 7398, 43900, 3206, NULL, '1.0000', '18.5000', '18.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 (46089, '2021-12-24', 2169, 43901, 3206, NULL, '1.0000', '1.1500', '1.1500', '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 (46090, '2021-12-24', 1519, 43902, 3206, NULL, '1.0000', '3.3980', '3.3980', '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 (46091, '2021-12-24', 1375, 43903, 3206, NULL, '2.0000', '14.3000', '14.3000', '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 (46092, '2021-12-24', 1855, 43904, 3206, 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 (46093, '2021-12-24', 2821, 43905, 3206, 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 (46094, '2021-12-24', 9482, 43906, 3206, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46095, '2021-12-24', 7344, 43907, 3206, NULL, '5.0000', '94.2800', '94.2800', '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 (46096, '2021-12-24', 1854, 43908, 3206, 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 (46097, '2021-12-24', 2916, 43909, 3206, NULL, '1.0000', '14.8227', '14.8227', '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 (46098, '2021-12-24', 8746, 43910, 3206, 44142, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46099, '2021-12-24', 1673, 43911, 3206, NULL, '4.0000', '12.9000', '12.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 (46100, '2021-12-24', 2405, 43912, 3206, 37770, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '47.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46101, '2021-12-24', 7458, 43913, 3206, NULL, '5.0000', '3.0000', '3.0000', '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 (46102, '2021-12-24', 2167, 43914, 3206, 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 (46103, '2021-12-24', 1307, 43915, 3206, NULL, '1.0000', '1.7846', '1.7846', '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 (46104, '2021-12-24', 2384, 43916, 3206, 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 (46105, '2021-12-24', 2916, 43917, 3206, NULL, '1.0000', '14.8227', '14.8227', '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 (46106, '2021-12-24', 1854, 43918, 3206, 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 (46107, '2021-12-24', 1699, 43919, 3206, NULL, '1.0000', '3.2000', '3.2000', '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 (46108, '2021-12-24', 2109, 43920, 3206, 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 (46109, '2021-12-24', 1670, 43921, 3206, 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 (46110, '2021-12-24', 1837, 43922, 3206, 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 (46111, '2021-12-24', 7926, 43923, 3206, 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 (46112, '2021-12-24', 8984, 43924, 3206, NULL, '1.0000', '-100.8495', '-100.8495', '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 (46113, '2021-12-24', 2277, 43925, 3206, 43261, '1.0000', '0.9399', '0.9399', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46114, '2021-12-24', 8735, 43926, 3206, NULL, '1.0000', '5.6000', '5.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 (46115, '2021-12-24', 2237, 43927, 3206, NULL, '1.0000', '-329.8285', '-329.8285', '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 (46116, '2021-12-24', 7641, 43928, 3206, NULL, '1.0000', '1.9000', '1.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 (46117, '2021-12-24', 2302, 43929, 3206, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46118, '2021-12-24', 7564, 43930, 3206, NULL, '1.0000', '0.6400', '0.6400', '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 (46119, '2021-12-24', 7482, 43931, 3206, 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 (46120, '2021-12-24', 8677, 43932, 3206, NULL, '2.0000', '89.9250', '89.9250', '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 (46121, '2021-12-24', 7411, 43933, 3206, NULL, '2.0000', '1.3500', '1.3500', '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 (46122, '2021-12-24', 9577, 43934, 3206, NULL, '2.0000', '0.3200', '0.3200', '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 (46123, '2021-12-24', 2277, 43935, 3206, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46124, '2021-12-24', 7756, 43936, 3206, NULL, '1.0000', '2.5000', '2.5000', '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 (46125, '2021-12-24', 7630, 43937, 3206, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (46126, '2021-12-24', 1935, 43938, 3206, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46127, '2021-12-24', 7458, 43939, 3206, NULL, '3.0000', '3.0000', '3.0000', '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 (46128, '2021-12-24', 1612, 43940, 3206, 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 (46129, '2021-12-24', 1307, 43941, 3206, NULL, '1.0000', '1.7846', '1.7846', '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 (46130, '2021-12-24', 9175, 43942, 3207, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46131, '2021-12-24', 7886, 43943, 3207, NULL, '1.0000', '2.8333', '2.8333', '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 (46132, '2021-12-24', 8059, 43944, 3207, 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 (46133, '2021-12-24', 7411, 43945, 3207, NULL, '1.0000', '1.3500', '1.3500', '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 (46134, '2021-12-24', 7641, 43946, 3207, NULL, '1.0000', '-12.6777', '-12.6777', '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 (46135, '2021-12-24', 9562, 43947, 3207, 42670, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46136, '2021-12-24', 7848, 43948, 3207, NULL, '2.0000', '1.3500', '1.3500', '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 (46137, '2021-12-24', 2315, 43949, 3207, NULL, '1.0000', '0.4740', '0.4740', '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 (46138, '2021-12-24', 1841, 43950, 3207, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46139, '2021-12-24', 7819, 43951, 3207, NULL, '1.0000', '9.5000', '9.5000', '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 (46140, '2021-12-24', 7544, 43952, 3207, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (46141, '2021-12-24', 1450, 43953, 3208, 43237, '8.0000', '0.8900', '0.8900', '1.2000', '1.2000', '16.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46142, '2021-12-24', 9601, 43954, 3208, NULL, '10.0000', '0.3000', '0.3000', '0.4000', '0.4000', '-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 (46143, '2021-12-24', 2068, 43955, 3208, 34034, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46144, '2021-12-24', 2012, 43956, 3208, 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 (46145, '2021-12-24', 3039, 43957, 3208, 23985, '1.0000', '13.5000', '13.5000', '18.0000', '18.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 (46146, '2021-12-24', 2280, 43958, 3208, NULL, '1.0000', '-177.9360', '-177.9360', '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 (46147, '2021-12-27', 7675, 43959, 3209, NULL, '1.0000', '11.4300', '11.4300', '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 (46148, '2021-12-27', 3009, 43960, 3209, 36076, '1.0000', '8.3000', '8.3000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46149, '2021-12-27', 2633, 43961, 3210, 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 (46150, '2021-12-27', 1912, 43962, 3210, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46151, '2021-12-27', 2022, 43963, 3210, 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 (46152, '2021-12-27', 8638, 43964, 3210, NULL, '1.0000', '0.5100', '0.5100', '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 (46153, '2021-12-27', 7473, 43965, 3210, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '71.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46154, '2021-12-27', 1771, 43966, 3210, NULL, '1.0000', '3.3900', '3.3900', '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 (46155, '2021-12-27', 1519, 43967, 3210, NULL, '1.0000', '3.3980', '3.3980', '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 (46156, '2021-12-27', 1577, 43968, 3210, NULL, '1.0000', '2.3271', '2.3271', '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 (46157, '2021-12-27', 2274, 43969, 3210, 43229, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46158, '2021-12-27', 1825, 43970, 3210, NULL, '1.0000', '4.3850', '4.3850', '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 (46159, '2021-12-27', 7950, 43971, 3210, NULL, '2.0000', '2.4000', '2.4000', '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 (46160, '2021-12-27', 1863, 43972, 3210, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46161, '2021-12-27', 3029, 43973, 3210, NULL, '1.0000', '4.7700', '4.7700', '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 (46162, '2021-12-27', 1800, 43974, 3210, 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 (46163, '2021-12-27', 2331, 43975, 3210, 25015, '1.0000', '12.0700', '12.0700', '16.0000', '16.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 (46164, '2021-12-27', 7483, 43976, 3210, NULL, '4.0000', '0.4200', '0.4200', '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 (46165, '2021-12-27', 8608, 43977, 3210, NULL, '1.0000', '0.9000', '0.9000', '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 (46166, '2021-12-27', 1863, 43978, 3210, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46167, '2021-12-27', 1744, 43979, 3210, 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 (46168, '2021-12-27', 2543, 43980, 3210, 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 (46169, '2021-12-27', 2068, 43981, 3210, 34034, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46170, '2021-12-27', 2284, 43982, 3210, 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 (46171, '2021-12-27', 2068, 43983, 3210, 34034, '1.0000', '13.0094', '13.0094', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46172, '2021-12-27', 1912, 43984, 3210, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46173, '2021-12-27', 2821, 43985, 3210, 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 (46174, '2021-12-27', 1863, 43986, 3210, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46175, '2021-12-27', 7518, 43987, 3210, NULL, '1.0000', '7.8200', '7.8200', '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 (46176, '2021-12-27', 8933, 43988, 3210, 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 (46177, '2021-12-27', 7753, 43989, 3210, NULL, '1.0000', '3.1400', '3.1400', '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 (46178, '2021-12-27', 2643, 43990, 3210, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46179, '2021-12-27', 8863, 43991, 3210, 44441, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46180, '2021-12-27', 9089, 43992, 3210, NULL, '1.0000', '3.8000', '3.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 (46181, '2021-12-27', 9603, 43993, 3210, 44146, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46182, '2021-12-27', 3041, 43994, 3210, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '7.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 (46183, '2021-12-27', 9480, 43995, 3210, 44436, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46184, '2021-12-27', 2315, 43996, 3210, NULL, '2.0000', '0.8556', '0.8556', '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 (46185, '2021-12-27', 1912, 43997, 3211, 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 (46186, '2021-12-27', 1935, 43998, 3211, 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 (46187, '2021-12-27', 2315, 43999, 3211, NULL, '2.0000', '0.4740', '0.4740', '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 (46188, '2021-12-27', 7806, 44000, 3211, NULL, '5.0000', '14.0000', '14.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 (46189, '2021-12-27', 7342, 44001, 3211, 29987, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '76.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46190, '2021-12-27', 7911, 44002, 3211, NULL, '1.0000', '4.3700', '4.3700', '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 (46191, '2021-12-27', 9498, 44003, 3211, NULL, '1.0000', '12.5000', '12.5000', '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 (46192, '2021-12-27', 7641, 44004, 3211, NULL, '1.0000', '-12.6777', '-12.6777', '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 (46193, '2021-12-27', 7780, 44005, 3211, NULL, '2.0000', '2.6000', '2.6000', '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 (46194, '2021-12-27', 7675, 44006, 3211, NULL, '1.0000', '11.4300', '11.4300', '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 (46195, '2021-12-27', 7671, 44007, 3211, NULL, '2.0000', '15.5000', '15.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 (46196, '2021-12-27', 7428, 44008, 3211, NULL, '1.0000', '744.9056', '744.9056', '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 (46197, '2021-12-27', 1501, 44009, 3211, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46198, '2021-12-27', 7612, 44010, 3211, NULL, '1.0000', '1.1770', '1.1770', '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 (46199, '2021-12-27', 1493, 44011, 3211, 36024, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46200, '2021-12-27', 7674, 44012, 3211, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46201, '2021-12-27', 8596, 44013, 3211, NULL, '1.0000', '17.0000', '17.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 (46202, '2021-12-27', 2283, 44014, 3211, 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 (46203, '2021-12-27', 1928, 44015, 3211, 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 (46204, '2021-12-27', 7411, 44016, 3211, NULL, '1.0000', '1.3500', '1.3500', '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 (46205, '2021-12-27', 2289, 44017, 3211, 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 (46206, '2021-12-27', 7544, 44018, 3211, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46207, '2021-12-27', 2244, 44019, 3211, 44046, '1.0000', '6.6314', '6.6314', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46208, '2021-12-27', 7518, 44020, 3211, NULL, '1.0000', '-67.2578', '-67.2578', '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 (46209, '2021-12-27', 7780, 44021, 3211, NULL, '1.0000', '2.6000', '2.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 (46210, '2021-12-27', 1650, 44022, 3211, NULL, '1.0000', '14.7450', '14.7450', '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 (46211, '2021-12-27', 1856, 44023, 3211, 43068, '1.0000', '-33.1541', '-33.1541', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46212, '2021-12-27', 7819, 44024, 3211, NULL, '1.0000', '9.5000', '9.5000', '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 (46213, '2021-12-27', 7994, 44025, 3211, NULL, '1.0000', '9.2800', '9.2800', '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 (46214, '2021-12-27', 8454, 44026, 3211, NULL, '1.0000', '5.1700', '5.1700', '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 (46215, '2021-12-27', 8134, 44027, 3211, NULL, '1.0000', '5.2600', '5.2600', '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 (46216, '2021-12-27', 7411, 44028, 3211, NULL, '1.0000', '1.3500', '1.3500', '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 (46217, '2021-12-27', 1854, 44029, 3211, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46218, '2021-12-27', 7647, 44030, 3211, NULL, '1.0000', '7.1000', '7.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 (46219, '2021-12-27', 2289, 44031, 3211, 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 (46220, '2021-12-27', 2950, 44032, 3211, 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 (46221, '2021-12-27', 7741, 44033, 3211, 36081, '1.0000', '5.8811', '5.8811', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46222, '2021-12-27', 7848, 44034, 3211, NULL, '1.0000', '1.3500', '1.3500', '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 (46223, '2021-12-27', 8064, 44035, 3211, 30161, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46224, '2021-12-27', 7411, 44036, 3211, NULL, '1.0000', '1.3500', '1.3500', '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 (46225, '2021-12-27', 8712, 44037, 3211, NULL, '1.0000', '7.0400', '7.0400', '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 (46226, '2021-12-27', 7672, 44038, 3211, NULL, '1.0000', '1.0200', '1.0200', '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 (46227, '2021-12-27', 8063, 44039, 3211, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46228, '2021-12-27', 7518, 44040, 3211, NULL, '1.0000', '-67.2578', '-67.2578', '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 (46229, '2021-12-27', 7719, 44041, 3211, NULL, '1.0000', '6.3333', '6.3333', '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 (46230, '2021-12-27', 9456, 44042, 3211, 33517, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46231, '2021-12-27', 7709, 44043, 3211, NULL, '1.0000', '35.8000', '35.8000', '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 (46232, '2021-12-27', 7666, 44044, 3211, NULL, '1.0000', '0.4000', '0.4000', '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 (46233, '2021-12-27', 2004, 44045, 3211, 38465, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46234, '2021-12-27', 7708, 44046, 3211, NULL, '1.0000', '6.1400', '6.1400', '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 (46235, '2021-12-27', 7608, 44047, 3211, NULL, '1.0000', '6.9800', '6.9800', '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 (46236, '2021-12-27', 7871, 44048, 3211, NULL, '7.0000', '6.0000', '6.0000', '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 (46237, '2021-12-27', 7339, 44049, 3211, NULL, '30.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (46238, '2021-12-27', 7558, 44050, 3211, NULL, '10.0000', '2.2000', '2.2000', '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 (46239, '2021-12-27', 8006, 44051, 3211, NULL, '1.0000', '7.3500', '7.3500', '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 (46240, '2021-12-27', 7412, 44052, 3211, NULL, '1.0000', '1.5200', '1.5200', '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 (46241, '2021-12-27', 7641, 44053, 3211, NULL, '2.0000', '-12.6777', '-12.6777', '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 (46242, '2021-12-27', 7473, 44054, 3211, NULL, '2.0000', '25.2998', '25.2998', '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 (46243, '2021-12-27', 7318, 44055, 3211, NULL, '1.0000', '17.2098', '17.2098', '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 (46244, '2021-12-27', 9324, 44056, 3211, 44221, '1.0000', '13.4546', '13.4546', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46245, '2021-12-27', 1493, 44057, 3211, 36024, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46246, '2021-12-27', 8154, 44058, 3211, NULL, '2.0000', '12.3000', '12.3000', '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 (46247, '2021-12-27', 8166, 44059, 3211, NULL, '1.0000', '4.6000', '4.6000', '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 (46248, '2021-12-27', 8032, 44060, 3211, NULL, '1.0000', '12.0000', '12.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 (46249, '2021-12-27', 2016, 44061, 3211, 33391, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 245);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46250, '2021-12-27', 7428, 44062, 3211, NULL, '4.0000', '744.9056', '744.9056', '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 (46251, '2021-12-27', 7490, 44063, 3211, NULL, '17.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-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 (46252, '2021-12-27', 2315, 44064, 3211, NULL, '2.0000', '0.4740', '0.4740', '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 (46253, '2021-12-27', 8208, 44065, 3211, NULL, '4.0000', '33.0000', '33.0000', '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 (46254, '2021-12-27', 7518, 44066, 3211, NULL, '1.0000', '-67.2578', '-67.2578', '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 (46255, '2021-12-27', 1637, 44067, 3211, 32929, '1.0000', '10.3600', '10.3600', '15.0000', '15.0000', '7.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46256, '2021-12-27', 8324, 44068, 3211, 43960, '1.0000', '3.0036', '3.0036', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46257, '2021-12-27', 2482, 44069, 3211, 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 (46258, '2021-12-27', 2763, 44070, 3211, 40409, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46259, '2021-12-27', 1641, 44071, 3211, 43446, '1.0000', '1.1243', '1.1243', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46260, '2021-12-27', 2357, 44072, 3212, 3859, '-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 (46261, '2021-12-27', 2357, 44072, 3212, NULL, '2.0000', '4.0000', '4.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 (46262, '2021-12-27', 2320, 44073, 3212, 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 (46263, '2021-12-27', 2405, 44074, 3212, 4452, '-12.0000', '1.2000', '1.2000', '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 (46264, '2021-12-27', 2405, 44074, 3212, NULL, '13.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (46265, '2021-12-27', 1670, 44075, 3212, 10163, '-10.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 (46266, '2021-12-27', 1670, 44075, 3212, NULL, '11.0000', '19.5000', '19.5000', '26.0000', '26.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 (46267, '2021-12-27', 1837, 44076, 3212, 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 (46268, '2021-12-27', 1533, 44077, 3212, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (46269, '2021-12-27', 1666, 44078, 3212, 3236, '-17.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 (46270, '2021-12-27', 1666, 44078, 3212, NULL, '18.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-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 (46271, '2021-12-27', 9214, 44079, 3212, NULL, '1.0000', '9.6000', '9.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 (46272, '2021-12-27', 2285, 44080, 3212, 2945, '-29.0000', '35.8000', '35.8000', '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 (46273, '2021-12-27', 2285, 44080, 3212, NULL, '30.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-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 (46274, '2021-12-27', 9577, 44081, 3212, NULL, '1.0000', '0.3200', '0.3200', '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 (46275, '2021-12-27', 2233, 44082, 3212, 2777, '-19.0000', '19.0200', '19.0200', '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 (46276, '2021-12-27', 2233, 44082, 3212, NULL, '20.0000', '19.0200', '19.0200', '29.0000', '29.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 (46277, '2021-12-27', 2923, 44083, 3212, 18780, '-1.0000', '11.1200', '11.1200', '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 (46278, '2021-12-27', 2923, 44083, 3212, NULL, '2.0000', '11.1200', '11.1200', '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 (46279, '2021-12-27', 1618, 44084, 3212, 8737, '-4.0000', '11.8200', '11.8200', '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 (46280, '2021-12-27', 1618, 44084, 3212, NULL, '5.0000', '11.8200', '11.8200', '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 (46281, '2021-12-27', 2221, 44085, 3212, 4154, '-36.0000', '14.4737', '14.4737', '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 (46282, '2021-12-27', 2221, 44085, 3212, NULL, '37.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46283, '2021-12-27', 2167, 44086, 3212, 17165, '-32.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 (46284, '2021-12-27', 2167, 44086, 3212, NULL, '33.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (46285, '2021-12-27', 2169, 44087, 3212, 10737, '-4.0000', '3.8397', '3.8397', '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 (46286, '2021-12-27', 2169, 44087, 3212, NULL, '6.0000', '3.8397', '3.8397', '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 (46287, '2021-12-27', 2277, 44088, 3212, 2937, '-32.0000', '0.7800', '0.7800', '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 (46288, '2021-12-27', 2277, 44088, 3212, NULL, '34.0000', '0.7800', '0.7800', '1.5000', '1.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 (46289, '2021-12-27', 1533, 44089, 3212, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (46290, '2021-12-27', 1637, 44090, 3212, 3210, '-5.0000', '10.2000', '10.2000', '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 (46291, '2021-12-27', 1637, 44090, 3212, NULL, '6.0000', '10.2000', '10.2000', '15.0000', '15.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 (46292, '2021-12-27', 1896, 44091, 3212, 5434, '-1.0000', '90.0000', '90.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 (46293, '2021-12-27', 1896, 44091, 3212, 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 (46294, '2021-12-27', 1715, 44092, 3212, 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 (46295, '2021-12-27', 1935, 44093, 3212, 5586, '-50.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 (46296, '2021-12-27', 1935, 44093, 3212, NULL, '51.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (46297, '2021-12-27', 1432, 44094, 3212, 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 (46298, '2021-12-27', 2237, 44095, 3212, 2781, '-29.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 (46299, '2021-12-27', 2237, 44095, 3212, NULL, '30.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (46300, '2021-12-27', 2169, 44096, 3212, 10737, '-4.0000', '3.8397', '3.8397', '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 (46301, '2021-12-27', 2169, 44096, 3212, NULL, '5.0000', '3.8397', '3.8397', '1.5000', '1.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 (46302, '2021-12-27', 2821, 44097, 3212, 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 (46303, '2021-12-27', 8622, 44098, 3212, 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 (46304, '2021-12-27', 2662, 44099, 3212, 12036, '-12.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 (46305, '2021-12-27', 2662, 44099, 3212, NULL, '13.0000', '4.5000', '4.5000', '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 (46306, '2021-12-27', 2858, 44100, 3212, 17772, '-26.0000', '1.0000', '1.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 (46307, '2021-12-27', 2858, 44100, 3212, NULL, '27.0000', '1.0000', '1.0000', '5.0000', '5.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 (46308, '2021-12-27', 2320, 44101, 3212, 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 (46309, '2021-12-27', 2405, 44102, 3212, 4452, '-12.0000', '1.2000', '1.2000', '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 (46310, '2021-12-27', 2405, 44102, 3212, NULL, '13.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (46311, '2021-12-27', 2916, 44103, 3212, 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 (46312, '2021-12-27', 2730, 44104, 3212, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '31.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 (46313, '2021-12-27', 9177, 44105, 3212, 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 (46314, '2021-12-27', 1680, 44106, 3212, 18829, '1.0000', '5.0209', '5.0209', '7.0000', '7.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 (46315, '2021-12-27', 1934, 44107, 3212, 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 (46316, '2021-12-27', 9577, 44108, 3212, NULL, '1.0000', '0.3200', '0.3200', '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 (46317, '2021-12-27', 1912, 44109, 3212, 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 (46318, '2021-12-27', 2307, 44110, 3212, 2960, '-1.0000', '118.9901', '118.9901', '161.0000', '161.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46319, '2021-12-27', 2307, 44110, 3212, NULL, '2.0000', '118.9901', '118.9901', '161.0000', '161.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 (46320, '2021-12-27', 2916, 44111, 3212, 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 (46321, '2021-12-27', 2221, 44112, 3212, 4154, '-36.0000', '14.4737', '14.4737', '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 (46322, '2021-12-27', 2221, 44112, 3212, NULL, '37.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46323, '2021-12-27', 2281, 44113, 3212, 2941, '-31.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 (46324, '2021-12-27', 2281, 44113, 3212, NULL, '32.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46325, '2021-12-27', 2916, 44114, 3212, 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 (46326, '2021-12-27', 2208, 44115, 3212, 7870, '-1.0000', '7.5000', '7.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 (46327, '2021-12-27', 2208, 44115, 3212, NULL, '2.0000', '7.5000', '7.5000', '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 (46328, '2021-12-27', 2829, 44116, 3212, 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 (46329, '2021-12-27', 2233, 44117, 3212, 2777, '-19.0000', '19.0200', '19.0200', '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 (46330, '2021-12-27', 2233, 44117, 3212, NULL, '20.0000', '19.0200', '19.0200', '29.0000', '29.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 (46331, '2021-12-27', 1688, 44118, 3212, 4896, '-7.0000', '18.5000', '18.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 (46332, '2021-12-27', 1688, 44118, 3212, NULL, '8.0000', '18.5000', '18.5000', '25.0000', '25.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 (46333, '2021-12-27', 9577, 44119, 3212, NULL, '2.0000', '0.3200', '0.3200', '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 (46334, '2021-12-27', 2285, 44120, 3212, 2945, '-29.0000', '35.8000', '35.8000', '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 (46335, '2021-12-27', 2285, 44120, 3212, NULL, '30.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-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 (46336, '2021-12-27', 7411, 44121, 3212, NULL, '2.0000', '1.3500', '1.3500', '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 (46337, '2021-12-27', 9452, 44122, 3213, NULL, '1.0000', '58.0000', '58.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 (46338, '2021-12-27', 2624, 44123, 3213, 39552, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46339, '2021-12-27', 8062, 44124, 3213, NULL, '32.0000', '4.8200', '4.8200', '3.0000', '3.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46340, '2021-12-27', 2863, 44125, 3213, NULL, '25.0000', '0.2000', '0.2000', '0.3000', '0.3000', '-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 (46341, '2021-12-27', 7448, 44126, 3214, NULL, '2.0000', '15.8500', '15.8500', '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 (46342, '2021-12-27', 8941, 44127, 3214, NULL, '1.0000', '12.0000', '12.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 (46343, '2021-12-27', 7633, 44128, 3214, NULL, '1.0000', '2.8700', '2.8700', '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 (46344, '2021-12-27', 7703, 44129, 3214, NULL, '1.0000', '22.9900', '22.9900', '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 (46345, '2021-12-27', 7674, 44130, 3214, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46346, '2021-12-27', 7448, 44131, 3214, NULL, '2.0000', '15.8500', '15.8500', '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 (46347, '2021-12-27', 8454, 44132, 3214, NULL, '2.0000', '5.1700', '5.1700', '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 (46348, '2021-12-27', 7411, 44133, 3214, NULL, '2.0000', '1.3500', '1.3500', '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 (46349, '2021-12-27', 7415, 44134, 3214, NULL, '1.0000', '5.4200', '5.4200', '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 (46350, '2021-12-27', 7705, 44135, 3214, NULL, '2.0000', '5.9900', '5.9900', '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 (46351, '2021-12-27', 9407, 44136, 3214, 44047, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46352, '2021-12-27', 1804, 44137, 3214, NULL, '1.0000', '4.2500', '4.2500', '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 (46353, '2021-12-27', 8135, 44138, 3214, NULL, '1.0000', '13.9000', '13.9000', '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 (46354, '2021-12-27', 7335, 44139, 3214, NULL, '1.0000', '10.4000', '10.4000', '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 (46355, '2021-12-27', 7819, 44140, 3214, NULL, '1.0000', '9.5000', '9.5000', '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 (46356, '2021-12-27', 1311, 44141, 3214, 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 (46357, '2021-12-27', 1843, 44142, 3214, 36055, '10.0000', '4.4600', '4.4600', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46358, '2021-12-27', 2458, 44143, 3214, 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 (46359, '2021-12-27', 2506, 44144, 3214, 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 (46360, '2021-12-27', 9243, 44145, 3214, NULL, '1.0000', '22.0056', '22.0056', '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 (46361, '2021-12-27', 7674, 44146, 3214, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46362, '2021-12-27', 7779, 44147, 3214, NULL, '1.0000', '8.3800', '8.3800', '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 (46363, '2021-12-27', 7342, 44148, 3214, 29987, '1.0000', '2.8539', '2.8539', '21.0000', '21.0000', '75.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46364, '2021-12-27', 1841, 44149, 3214, 33726, '4.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46365, '2021-12-27', 2140, 44150, 3214, 39534, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46366, '2021-12-27', 7411, 44151, 3214, NULL, '1.0000', '1.3500', '1.3500', '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 (46367, '2021-12-27', 7967, 44152, 3214, 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 (46368, '2021-12-27', 9167, 44153, 3214, 34497, '1.0000', '-1253.5456', '-1253.5456', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46369, '2021-12-27', 7736, 44154, 3214, NULL, '1.0000', '15.0000', '15.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 (46370, '2021-12-27', 8769, 44155, 3214, 43938, '2.0000', '6.6000', '6.6000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46371, '2021-12-27', 7674, 44156, 3214, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46372, '2021-12-27', 8767, 44157, 3214, 32146, '1.0000', '6.6900', '6.6900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46373, '2021-12-27', 2315, 44158, 3214, NULL, '1.0000', '0.4740', '0.4740', '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 (46374, '2021-12-27', 8666, 44159, 3214, NULL, '1.0000', '0.4600', '0.4600', '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 (46375, '2021-12-27', 7674, 44160, 3214, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46376, '2021-12-27', 7641, 44161, 3214, NULL, '1.0000', '-12.6777', '-12.6777', '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 (46377, '2021-12-27', 7448, 44162, 3214, NULL, '2.0000', '15.8500', '15.8500', '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 (46378, '2021-12-27', 7591, 44163, 3214, NULL, '1.0000', '2.7500', '2.7500', '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 (46379, '2021-12-27', 8596, 44164, 3214, NULL, '2.0000', '17.0000', '17.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 (46380, '2021-12-27', 2289, 44165, 3214, 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 (46381, '2021-12-27', 7411, 44166, 3214, NULL, '2.0000', '1.3500', '1.3500', '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 (46382, '2021-12-27', 9308, 44167, 3214, NULL, '1.0000', '9.0000', '9.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 (46383, '2021-12-27', 1647, 44168, 3214, 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 (46384, '2021-12-27', 7496, 44169, 3214, NULL, '1.0000', '0.9600', '0.9600', '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 (46385, '2021-12-27', 2274, 44170, 3214, NULL, '1.0000', '3.9800', '3.9800', '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 (46386, '2021-12-27', 7674, 44171, 3214, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46387, '2021-12-27', 7514, 44172, 3214, NULL, '1.0000', '12.9983', '12.9983', '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 (46388, '2021-12-27', 7672, 44173, 3214, NULL, '3.0000', '1.0200', '1.0200', '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 (46389, '2021-12-27', 8036, 44174, 3214, 43439, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46390, '2021-12-27', 7482, 44175, 3214, NULL, '1.0000', '2.4981', '2.4981', '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 (46391, '2021-12-27', 1987, 44176, 3214, NULL, '1.0000', '4.5000', '4.5000', '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 (46392, '2021-12-27', 8548, 44177, 3214, NULL, '1.0000', '12.0000', '12.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 (46393, '2021-12-27', 7671, 44178, 3214, NULL, '1.0000', '15.5000', '15.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 (46394, '2021-12-27', 7848, 44179, 3214, NULL, '1.0000', '1.3500', '1.3500', '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 (46395, '2021-12-27', 7527, 44180, 3214, 31031, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46396, '2021-12-27', 7527, 44180, 3214, NULL, '2.0000', '0.8900', '0.8900', '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 (46397, '2021-12-27', 9207, 44181, 3214, NULL, '6.0000', '4.6000', '4.6000', '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 (46398, '2021-12-27', 9016, 44182, 3214, NULL, '1.0000', '2.9800', '2.9800', '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 (46399, '2021-12-27', 8454, 44183, 3214, NULL, '1.0000', '5.1700', '5.1700', '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 (46400, '2021-12-27', 7674, 44184, 3214, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46401, '2021-12-27', 8548, 44185, 3214, NULL, '1.0000', '12.0000', '12.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 (46402, '2021-12-27', 9274, 44186, 3214, NULL, '1.0000', '3.1000', '3.1000', '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 (46403, '2021-12-27', 1690, 44187, 3214, 43432, '1.0000', '-11.4004', '-11.4004', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46404, '2021-12-27', 8915, 44188, 3214, NULL, '1.0000', '29.3500', '29.3500', '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 (46405, '2021-12-27', 2176, 44189, 3214, 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 (46406, '2021-12-27', 2921, 44190, 3214, NULL, '1.0000', '4.9000', '4.9000', '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 (46407, '2021-12-27', 7609, 44191, 3214, NULL, '1.0000', '4.3300', '4.3300', '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 (46408, '2021-12-27', 7853, 44192, 3214, NULL, '1.0000', '35.0000', '35.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 (46409, '2021-12-27', 8318, 44193, 3214, NULL, '1.0000', '5.5000', '5.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 (46410, '2021-12-27', 7715, 44194, 3214, NULL, '1.0000', '1.8900', '1.8900', '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 (46411, '2021-12-27', 9214, 44195, 3214, 43937, '1.0000', '9.4452', '9.4452', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46412, '2021-12-27', 8124, 44196, 3214, NULL, '1.0000', '8.0000', '8.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 (46413, '2021-12-27', 1989, 44197, 3214, NULL, '1.0000', '4.2500', '4.2500', '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 (46414, '2021-12-27', 1747, 44198, 3214, 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 (46415, '2021-12-27', 8324, 44199, 3214, NULL, '1.0000', '3.0036', '3.0036', '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 (46416, '2021-12-27', 7708, 44200, 3214, NULL, '1.0000', '6.1400', '6.1400', '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 (46417, '2021-12-27', 7380, 44201, 3214, NULL, '1.0000', '8.0000', '8.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 (46418, '2021-12-27', 7675, 44202, 3214, NULL, '1.0000', '11.4300', '11.4300', '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 (46419, '2021-12-27', 8753, 44203, 3214, 44232, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46420, '2021-12-27', 1837, 44204, 3214, 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 (46421, '2021-12-27', 7674, 44205, 3214, 33721, '2.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46422, '2021-12-27', 7911, 44206, 3214, NULL, '1.0000', '4.3700', '4.3700', '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 (46423, '2021-12-27', 8135, 44207, 3214, NULL, '1.0000', '13.9000', '13.9000', '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 (46424, '2021-12-27', 7853, 44208, 3214, NULL, '1.0000', '35.0000', '35.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 (46425, '2021-12-27', 2726, 44209, 3214, NULL, '1.0000', '4.0000', '4.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 (46426, '2021-12-27', 7703, 44210, 3214, NULL, '2.0000', '22.9900', '22.9900', '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 (46427, '2021-12-27', 7411, 44211, 3214, NULL, '2.0000', '1.3500', '1.3500', '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 (46428, '2021-12-27', 2315, 44212, 3214, NULL, '2.0000', '0.4740', '0.4740', '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 (46429, '2021-12-27', 1904, 44213, 3214, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46430, '2021-12-27', 1398, 44214, 3214, 43515, '1.0000', '8.7500', '8.7500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46431, '2021-12-27', 7334, 44215, 3214, NULL, '3.0000', '8.1600', '8.1600', '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 (46432, '2021-12-27', 2650, 44216, 3215, NULL, '1.0000', '7.7196', '7.7196', '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 (46433, '2021-12-27', 1564, 44217, 3215, 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 (46434, '2021-12-27', 1665, 44218, 3215, 34008, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46435, '2021-12-27', 8065, 44219, 3215, NULL, '1.0000', '32.0000', '32.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 (46436, '2021-12-27', 1493, 44220, 3215, 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 (46437, '2021-12-27', 2254, 44221, 3215, NULL, '1.0000', '17.9400', '17.9400', '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 (46438, '2021-12-27', 7411, 44222, 3215, NULL, '2.0000', '1.3500', '1.3500', '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 (46439, '2021-12-27', 1529, 44223, 3215, NULL, '1.0000', '3.4997', '3.4997', '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 (46440, '2021-12-27', 1483, 44224, 3215, 39896, '1.0000', '25.1867', '25.1867', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46441, '2021-12-27', 1307, 44225, 3215, NULL, '1.0000', '1.7846', '1.7846', '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 (46442, '2021-12-27', 1650, 44226, 3215, 39791, '1.0000', '13.8051', '13.8051', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46443, '2021-12-27', 1650, 44226, 3215, 33143, '1.0000', '13.8051', '13.8051', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46444, '2021-12-27', 1649, 44227, 3215, 42556, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46445, '2021-12-27', 9204, 44228, 3215, NULL, '1.0000', '8.1600', '8.1600', '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 (46446, '2021-12-27', 9105, 44229, 3215, NULL, '1.0000', '0.5800', '0.5800', '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 (46447, '2021-12-27', 7412, 44230, 3215, NULL, '1.0000', '1.5200', '1.5200', '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 (46448, '2021-12-27', 8677, 44231, 3215, NULL, '2.0000', '89.9250', '89.9250', '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 (46449, '2021-12-27', 7651, 44232, 3215, NULL, '1.0000', '5.0000', '5.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 (46450, '2021-12-27', 7514, 44233, 3215, NULL, '1.0000', '2.2500', '2.2500', '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 (46451, '2021-12-27', 1508, 44234, 3215, 13748, '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 (46452, '2021-12-27', 1529, 44235, 3215, NULL, '1.0000', '3.4997', '3.4997', '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 (46453, '2021-12-27', 1809, 44236, 3215, 39789, '1.0000', '9.5248', '9.5248', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46454, '2021-12-27', 7411, 44237, 3215, NULL, '2.0000', '1.3500', '1.3500', '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 (46455, '2021-12-27', 1700, 44238, 3215, 42550, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46456, '2021-12-27', 2475, 44239, 3215, NULL, '2.0000', '8.0000', '8.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 (46457, '2021-12-27', 8362, 44240, 3215, NULL, '3.0000', '4.1000', '4.1000', '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 (46458, '2021-12-27', 7398, 44241, 3215, NULL, '1.0000', '18.5000', '18.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 (46459, '2021-12-27', 9577, 44242, 3215, NULL, '4.0000', '0.3200', '0.3200', '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 (46460, '2021-12-27', 2299, 44243, 3215, 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 (46461, '2021-12-27', 1484, 44244, 3215, NULL, '1.0000', '90.0000', '90.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 (46462, '2021-12-27', 2721, 44245, 3215, 13757, '1.0000', '8.9800', '8.9800', '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 (46463, '2021-12-27', 2237, 44246, 3215, NULL, '1.0000', '-329.8285', '-329.8285', '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 (46464, '2021-12-27', 2109, 44247, 3215, 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 (46465, '2021-12-27', 2475, 44248, 3215, 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 (46466, '2021-12-27', 2244, 44249, 3215, 42803, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46467, '2021-12-27', 2106, 44250, 3215, 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 (46468, '2021-12-27', 2950, 44251, 3215, 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 (46469, '2021-12-27', 7728, 44252, 3215, 44149, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46470, '2021-12-27', 2169, 44253, 3215, NULL, '2.0000', '1.1500', '1.1500', '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 (46471, '2021-12-27', 9577, 44254, 3215, NULL, '2.0000', '0.3200', '0.3200', '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 (46472, '2021-12-27', 1502, 44255, 3215, 42838, '1.0000', '-50.9143', '-50.9143', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46473, '2021-12-27', 2673, 44256, 3215, 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 (46474, '2021-12-27', 1876, 44257, 3215, NULL, '1.0000', '22.8000', '22.8000', '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 (46475, '2021-12-27', 7411, 44258, 3215, NULL, '1.0000', '1.3500', '1.3500', '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 (46476, '2021-12-27', 8444, 44259, 3215, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46477, '2021-12-27', 7921, 44260, 3215, NULL, '1.0000', '0.3000', '0.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 (46478, '2021-12-27', 7411, 44261, 3215, NULL, '1.0000', '1.3500', '1.3500', '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 (46479, '2021-12-27', 7641, 44262, 3215, NULL, '1.0000', '1.9000', '1.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 (46480, '2021-12-27', 2169, 44263, 3215, NULL, '1.0000', '1.1500', '1.1500', '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 (46481, '2021-12-27', 7447, 44264, 3215, NULL, '4.0000', '19.1100', '19.1100', '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 (46482, '2021-12-27', 7666, 44265, 3215, NULL, '1.0000', '10.0000', '10.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 (46483, '2021-12-27', 1839, 44266, 3215, NULL, '1.0000', '1.8866', '1.8866', '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 (46484, '2021-12-27', 1577, 44267, 3215, NULL, '1.0000', '2.3271', '2.3271', '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 (46485, '2021-12-27', 9577, 44268, 3215, NULL, '4.0000', '0.3200', '0.3200', '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 (46486, '2021-12-27', 7458, 44269, 3215, NULL, '1.0000', '3.0000', '3.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 (46487, '2021-12-27', 2068, 44270, 3215, NULL, '1.0000', '13.0094', '13.0094', '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 (46488, '2021-12-27', 1687, 44271, 3215, 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 (46489, '2021-12-27', 7867, 44272, 3215, NULL, '1.0000', '2.7700', '2.7700', '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 (46490, '2021-12-27', 7640, 44273, 3215, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46491, '2021-12-27', 9577, 44274, 3215, NULL, '2.0000', '0.3200', '0.3200', '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 (46492, '2021-12-27', 2346, 44275, 3215, NULL, '1.0000', '5.8000', '5.8000', '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 (46493, '2021-12-27', 8438, 44276, 3215, 42647, '1.0000', '12.8750', '12.8750', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46494, '2021-12-27', 8735, 44277, 3215, NULL, '1.0000', '5.6000', '5.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 (46495, '2021-12-27', 2287, 44278, 3215, 43279, '4.0000', '1.6790', '1.6790', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46496, '2021-12-27', 1555, 44279, 3215, 23134, '1.0000', '22.2400', '22.2400', '29.0000', '29.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 (46497, '2021-12-27', 9556, 44280, 3215, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46498, '2021-12-27', 1674, 44281, 3215, NULL, '1.0000', '3.2473', '3.2473', '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 (46499, '2021-12-27', 1641, 44282, 3215, 38521, '3.0000', '1.9923', '1.9923', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46500, '2021-12-27', 1641, 44282, 3215, NULL, '1.0000', '1.9923', '1.9923', '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 (46501, '2021-12-27', 2169, 44283, 3215, NULL, '1.0000', '1.1500', '1.1500', '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 (46502, '2021-12-27', 2280, 44284, 3215, NULL, '1.0000', '-177.9360', '-177.9360', '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 (46503, '2021-12-27', 1809, 44285, 3215, 39789, '1.0000', '9.5248', '9.5248', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46504, '2021-12-27', 1888, 44286, 3215, 41365, '1.0000', '16.4667', '16.4667', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46505, '2021-12-27', 1667, 44287, 3215, 43254, '1.0000', '22.4947', '22.4947', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46506, '2021-12-27', 2655, 44288, 3215, 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 (46507, '2021-12-27', 2037, 44289, 3215, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '11.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 (46508, '2021-12-27', 2444, 44290, 3215, 42645, '2.0000', '6.7956', '6.7956', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46509, '2021-12-27', 1818, 44291, 3215, NULL, '1.0000', '18.8200', '18.8200', '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 (46510, '2021-12-27', 9579, 44292, 3215, 42662, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46511, '2021-12-27', 7514, 44293, 3215, NULL, '2.0000', '2.2500', '2.2500', '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 (46512, '2021-12-27', 1665, 44294, 3215, 34008, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46513, '2021-12-27', 7963, 44295, 3215, NULL, '1.0000', '14.7000', '14.7000', '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 (46514, '2021-12-27', 1592, 44296, 3215, NULL, '1.0000', '35.4585', '35.4585', '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 (46515, '2021-12-27', 8476, 44297, 3216, NULL, '1.0000', '23.0000', '23.0000', '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 (46516, '2021-12-27', 9416, 44298, 3216, 44150, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46517, '2021-12-27', 9482, 44299, 3216, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46518, '2021-12-27', 7629, 44300, 3217, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46519, '2021-12-27', 2004, 44301, 3217, 38465, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46520, '2021-12-27', 8127, 44302, 3217, NULL, '1.0000', '24.5300', '24.5300', '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 (46521, '2021-12-27', 7989, 44303, 3217, NULL, '1.0000', '26.9800', '26.9800', '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 (46522, '2021-12-27', 7848, 44304, 3217, NULL, '2.0000', '1.3500', '1.3500', '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 (46523, '2021-12-27', 7527, 44305, 3217, NULL, '1.0000', '0.8900', '0.8900', '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 (46524, '2021-12-27', 1805, 44306, 3217, NULL, '1.0000', '4.5500', '4.5500', '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 (46525, '2021-12-27', 7946, 44307, 3217, NULL, '1.0000', '-16.4800', '-16.4800', '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 (46526, '2021-12-27', 8166, 44308, 3217, NULL, '5.0000', '4.6000', '4.6000', '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 (46527, '2021-12-27', 7848, 44309, 3217, NULL, '1.0000', '1.3500', '1.3500', '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 (46528, '2021-12-27', 9092, 44310, 3217, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '153.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46529, '2021-12-27', 7628, 44311, 3217, NULL, '10.0000', '2.9100', '2.9100', '4.0000', '4.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 (46530, '2021-12-27', 9272, 44312, 3217, NULL, '1.0000', '3.1000', '3.1000', '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 (46531, '2021-12-27', 1399, 44313, 3217, 38141, '1.0000', '16.8750', '16.8750', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46532, '2021-12-27', 9655, 44314, 3217, 42663, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46533, '2021-12-27', 1427, 44315, 3217, 43527, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46534, '2021-12-27', 7784, 44316, 3217, NULL, '2.0000', '4.2500', '4.2500', '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 (46535, '2021-12-27', 1863, 44317, 3218, 44537, '1.0000', '1.1780', '1.1780', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46536, '2021-12-27', 9577, 44318, 3218, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46537, '2021-12-27', 7744, 44319, 3218, 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 (46538, '2021-12-27', 1572, 44320, 3218, 31988, '2.0000', '-0.4738', '-0.4738', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46539, '2021-12-27', 9577, 44321, 3218, 38070, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46540, '2021-12-27', 1369, 44322, 3218, 8433, '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 (46541, '2021-12-27', 1427, 44323, 3218, 44592, '1.0000', '14.9630', '14.9630', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46542, '2021-12-27', 7447, 44324, 3218, NULL, '13.0000', '19.1100', '19.1100', '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 (46543, '2021-12-27', 8132, 44325, 3218, NULL, '1.0000', '4.7200', '4.7200', '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 (46544, '2021-12-27', 9275, 44326, 3218, NULL, '1.0000', '6.3000', '6.3000', '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 (46545, '2021-12-27', 1348, 44327, 3218, 3387, '1.0000', '15.5000', '15.5000', '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 (46546, '2021-12-27', 1910, 44328, 3218, 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 (46547, '2021-12-27', 1761, 44329, 3218, 34421, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46548, '2021-12-27', 1645, 44330, 3218, 42976, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46549, '2021-12-27', 2511, 44331, 3218, 42959, '1.0000', '8.6512', '8.6512', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46550, '2021-12-27', 2169, 44332, 3218, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46551, '2021-12-27', 1569, 44333, 3218, 32028, '1.0000', '14.2800', '14.2800', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46552, '2021-12-27', 1701, 44334, 3218, 17463, '1.0000', '14.7800', '14.7800', '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 (46553, '2021-12-27', 2712, 44335, 3218, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46554, '2021-12-27', 1787, 44336, 3218, 40215, '2.0000', '0.8100', '0.8100', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46555, '2021-12-27', 2916, 44337, 3218, 44640, '1.0000', '12.8015', '12.8015', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46556, '2021-12-27', 2384, 44338, 3218, 29813, '2.0000', '0.2683', '0.2683', '0.7000', '0.7000', '58.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46557, '2021-12-27', 1529, 44339, 3218, 40154, '2.0000', '136969208.6110', '136969208.6110', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46558, '2021-12-27', 1888, 44340, 3218, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46559, '2021-12-27', 8177, 44341, 3218, 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 (46560, '2021-12-27', 9577, 44342, 3218, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46561, '2021-12-27', 2281, 44343, 3218, 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 (46562, '2021-12-27', 1573, 44344, 3218, 44587, '1.0000', '23.0556', '23.0556', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46563, '2021-12-27', 2643, 44345, 3218, 44038, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46564, '2021-12-27', 1935, 44346, 3218, 31718, '2.0000', '6.8496', '6.8496', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46565, '2021-12-27', 1904, 44347, 3218, 37558, '1.0000', '201.4970', '201.4970', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46566, '2021-12-27', 1759, 44348, 3218, 40630, '1.0000', '23.5769', '23.5769', '15.0000', '15.0000', '7.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46567, '2021-12-27', 1592, 44349, 3218, 44558, '1.0000', '35.7449', '35.7449', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46568, '2021-12-27', 2964, 44350, 3218, NULL, '1.0000', '6.6000', '6.6000', '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 (46569, '2021-12-27', 2051, 44351, 3218, 6405, '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 (46570, '2021-12-27', 2020, 44352, 3218, 44618, '1.0000', '-5.0518', '-5.0518', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46571, '2021-12-27', 1602, 44353, 3218, 42964, '1.0000', '6.9202', '6.9202', '10.0000', '10.0000', '37.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46572, '2021-12-27', 2169, 44354, 3218, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46573, '2021-12-27', 2169, 44355, 3218, 42967, '1.0000', '1.0678', '1.0678', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46574, '2021-12-27', 2360, 44356, 3218, 42957, '9.0000', '0.5200', '0.5200', '0.8000', '0.8000', '37.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46575, '2021-12-27', 1910, 44357, 3218, 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 (46576, '2021-12-27', 2221, 44358, 3218, 44634, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46577, '2021-12-27', 1846, 44359, 3218, NULL, '1.0000', '31.0430', '31.0430', '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 (46578, '2021-12-27', 7623, 44360, 3218, NULL, '1.0000', '34.7700', '34.7700', '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 (46579, '2021-12-27', 1387, 44361, 3218, 42942, '1.0000', '86.1100', '86.1100', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46580, '2021-12-27', 1641, 44362, 3218, 43040, '6.0000', '51.1126', '51.1126', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46581, '2021-12-27', 9565, 44363, 3218, 40377, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46582, '2021-12-27', 9565, 44364, 3218, 40377, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46583, '2021-12-27', 8765, 44365, 3218, 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 (46584, '2021-12-27', 3041, 44366, 3218, 24002, '2.0000', '1.6000', '1.6000', '3.0000', '3.0000', '16.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 (46585, '2021-12-27', 2503, 44367, 3218, 40162, '1.0000', '55.0258', '55.0258', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46586, '2021-12-27', 1935, 44368, 3218, 31718, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46587, '2021-12-27', 3025, 44369, 3218, 40388, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46588, '2021-12-27', 2896, 44370, 3218, 18357, '1.0000', '14.0000', '14.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 (46589, '2021-12-27', 2167, 44371, 3218, 40217, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46590, '2021-12-27', 2543, 44372, 3218, 9539, '1.0000', '2.0000', '2.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 (46591, '2021-12-27', 2004, 44373, 3218, 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 (46592, '2021-12-27', 7768, 44374, 3218, NULL, '1.0000', '7.7800', '7.7800', '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 (46593, '2021-12-27', 1665, 44375, 3218, 43027, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46594, '2021-12-27', 2454, 44376, 3218, 40896, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46595, '2021-12-27', 1863, 44377, 3218, 44537, '1.0000', '1.1780', '1.1780', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46596, '2021-12-27', 1621, 44378, 3218, 44615, '1.0000', '46.2610', '46.2610', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46597, '2021-12-27', 1846, 44379, 3218, NULL, '1.0000', '31.0430', '31.0430', '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 (46598, '2021-12-27', 1863, 44380, 3218, 44537, '1.0000', '1.1780', '1.1780', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46599, '2021-12-27', 1573, 44381, 3219, NULL, '1.0000', '23.0556', '23.0556', '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 (46600, '2021-12-27', 1839, 44382, 3220, NULL, '1.0000', '1.8866', '1.8866', '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 (46601, '2021-12-27', 9096, 44383, 3220, 44439, '1.0000', '6.0000', '6.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46602, '2021-12-27', 8745, 44384, 3220, NULL, '1.0000', '8.9932', '8.9932', '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 (46603, '2021-12-27', 7756, 44385, 3221, NULL, '1.0000', '23.9111', '23.9111', '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 (46604, '2021-12-27', 1935, 44386, 3221, 31718, '1.0000', '6.8496', '6.8496', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46605, '2021-12-28', 2916, 44387, 3222, NULL, '1.0000', '14.8227', '14.8227', '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 (46606, '2021-12-28', 1868, 44388, 3222, 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 (46607, '2021-12-28', 8735, 44389, 3222, NULL, '1.0000', '5.6000', '5.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 (46608, '2021-12-28', 1855, 44390, 3222, 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 (46609, '2021-12-28', 1307, 44391, 3222, NULL, '1.0000', '1.7846', '1.7846', '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 (46610, '2021-12-28', 1912, 44392, 3222, 41409, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46611, '2021-12-28', 7719, 44393, 3222, NULL, '1.0000', '5.5000', '5.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 (46612, '2021-12-28', 2263, 44394, 3222, 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 (46613, '2021-12-28', 1410, 44395, 3222, NULL, '1.0000', '2.1083', '2.1083', '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 (46614, '2021-12-28', 1863, 44396, 3222, 42816, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46615, '2021-12-28', 2859, 44397, 3222, NULL, '1.0000', '0.6700', '0.6700', '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 (46616, '2021-12-28', 1837, 44398, 3222, 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 (46617, '2021-12-28', 7390, 44399, 3222, NULL, '1.0000', '18.2100', '18.2100', '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 (46618, '2021-12-28', 2237, 44400, 3222, NULL, '1.0000', '-329.8285', '-329.8285', '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 (46619, '2021-12-28', 2916, 44401, 3222, NULL, '1.0000', '14.8227', '14.8227', '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 (46620, '2021-12-28', 1501, 44402, 3222, NULL, '1.0000', '2.2100', '2.2100', '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 (46621, '2021-12-28', 1841, 44403, 3222, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '22.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46622, '2021-12-28', 2068, 44404, 3222, NULL, '1.0000', '13.0094', '13.0094', '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 (46623, '2021-12-28', 2283, 44405, 3222, 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 (46624, '2021-12-28', 2167, 44406, 3222, 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 (46625, '2021-12-28', 1871, 44407, 3222, NULL, '10.0000', '2.9308', '2.9308', '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 (46626, '2021-12-28', 2167, 44408, 3222, 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 (46627, '2021-12-28', 7989, 44409, 3222, NULL, '1.0000', '26.9800', '26.9800', '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 (46628, '2021-12-28', 2566, 44410, 3222, 39980, '1.0000', '16.0625', '16.0625', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46629, '2021-12-28', 2989, 44411, 3222, 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 (46630, '2021-12-28', 1935, 44412, 3222, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46631, '2021-12-28', 2940, 44413, 3222, 24979, '1.0000', '6.3600', '6.3600', '8.5000', '8.5000', '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 (46632, '2021-12-28', 1863, 44414, 3222, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46633, '2021-12-28', 1935, 44415, 3222, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46634, '2021-12-28', 9556, 44416, 3222, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46635, '2021-12-28', 2416, 44417, 3222, 44001, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46636, '2021-12-28', 2642, 44418, 3222, 40111, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46637, '2021-12-28', 2381, 44419, 3222, 44065, '1.0000', '11.7169', '11.7169', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46638, '2021-12-28', 2132, 44420, 3222, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '4.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 (46639, '2021-12-28', 1831, 44421, 3222, NULL, '1.0000', '16.2420', '16.2420', '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 (46640, '2021-12-28', 7805, 44422, 3223, NULL, '2.0000', '2.1800', '2.1800', '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 (46641, '2021-12-28', 1529, 44423, 3223, NULL, '1.0000', '3.4997', '3.4997', '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 (46642, '2021-12-28', 1873, 44424, 3223, 33148, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46643, '2021-12-28', 1523, 44425, 3223, NULL, '2.0000', '1.0061', '1.0061', '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 (46644, '2021-12-28', 1863, 44426, 3223, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46645, '2021-12-28', 2249, 44427, 3223, 39853, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46646, '2021-12-28', 2223, 44428, 3223, 42636, '1.0000', '10.7140', '10.7140', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46647, '2021-12-28', 1871, 44429, 3223, NULL, '10.0000', '2.9308', '2.9308', '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 (46648, '2021-12-28', 2916, 44430, 3223, NULL, '1.0000', '14.8227', '14.8227', '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 (46649, '2021-12-28', 1945, 44431, 3223, 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 (46650, '2021-12-28', 1574, 44432, 3223, NULL, '1.0000', '1.7001', '1.7001', '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 (46651, '2021-12-28', 7984, 44433, 3223, NULL, '1.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46652, '2021-12-28', 1935, 44434, 3223, 41370, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46653, '2021-12-28', 9707, 44435, 3223, 44447, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46654, '2021-12-28', 2769, 44436, 3223, 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 (46655, '2021-12-28', 7703, 44437, 3223, NULL, '2.0000', '22.9900', '22.9900', '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 (46656, '2021-12-28', 8775, 44438, 3223, 43988, '2.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46657, '2021-12-28', 7805, 44439, 3224, NULL, '2.0000', '2.1800', '2.1800', '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 (46658, '2021-12-28', 1529, 44440, 3224, NULL, '1.0000', '3.4997', '3.4997', '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 (46659, '2021-12-28', 1873, 44441, 3224, 33148, '1.0000', '11.9500', '11.9500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46660, '2021-12-28', 1523, 44442, 3224, NULL, '2.0000', '1.0061', '1.0061', '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 (46661, '2021-12-28', 1863, 44443, 3224, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46662, '2021-12-28', 2249, 44444, 3224, 39853, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46663, '2021-12-28', 2223, 44445, 3224, 22519, '1.0000', '10.7140', '10.7140', '17.0000', '17.0000', '0.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 (46664, '2021-12-28', 1871, 44446, 3224, NULL, '10.0000', '2.9308', '2.9308', '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 (46665, '2021-12-28', 2916, 44447, 3224, NULL, '1.0000', '14.8227', '14.8227', '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 (46666, '2021-12-28', 1945, 44448, 3224, 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 (46667, '2021-12-28', 7671, 44449, 3224, NULL, '1.0000', '15.5000', '15.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 (46668, '2021-12-28', 7984, 44450, 3224, NULL, '1.0000', '16.4500', '16.4500', '15.5500', '15.5500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46669, '2021-12-28', 1935, 44451, 3224, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46670, '2021-12-28', 9707, 44452, 3224, 44447, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46671, '2021-12-28', 2769, 44453, 3224, 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 (46672, '2021-12-28', 7703, 44454, 3224, NULL, '2.0000', '22.9900', '22.9900', '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 (46673, '2021-12-28', 8775, 44455, 3224, 43988, '2.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46674, '2021-12-28', 2101, 44456, 3224, 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 (46675, '2021-12-28', 9463, 44457, 3224, NULL, '1.0000', '7.5000', '7.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 (46676, '2021-12-28', 1686, 44458, 3225, NULL, '1.0000', '29.0000', '29.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 (46677, '2021-12-28', 1673, 44459, 3225, 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 (46678, '2021-12-28', 1867, 44460, 3225, NULL, '2.0000', '7.1662', '7.1662', '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 (46679, '2021-12-28', 2360, 44461, 3226, NULL, '1.0000', '0.5200', '0.5200', '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 (46680, '2021-12-28', 9214, 44462, 3226, 44141, '1.0000', '9.6000', '9.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46681, '2021-12-28', 8775, 44463, 3226, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46682, '2021-12-28', 2237, 44464, 3226, NULL, '1.0000', '-329.8285', '-329.8285', '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 (46683, '2021-12-28', 2916, 44465, 3226, NULL, '1.0000', '14.8227', '14.8227', '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 (46684, '2021-12-28', 2169, 44466, 3226, NULL, '1.0000', '1.1500', '1.1500', '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 (46685, '2021-12-28', 7671, 44467, 3226, NULL, '1.0000', '15.5000', '15.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 (46686, '2021-12-28', 1912, 44468, 3227, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46687, '2021-12-28', 1912, 44469, 3228, 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 (46688, '2021-12-28', 1603, 44470, 3228, 8727, '-2.0000', '59.4600', '59.4600', '79.0000', '79.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46689, '2021-12-28', 1603, 44470, 3228, NULL, '3.0000', '59.4600', '59.4600', '79.0000', '79.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 (46690, '2021-12-28', 3038, 44471, 3228, 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 (46691, '2021-12-28', 1668, 44472, 3228, 3238, '-3.0000', '13.0442', '13.0442', '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 (46692, '2021-12-28', 1668, 44472, 3228, NULL, '4.0000', '13.0442', '13.0442', '18.0000', '18.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 (46693, '2021-12-28', 7339, 44473, 3228, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (46694, '2021-12-28', 1672, 44474, 3228, 7384, '-54.0000', '2.8700', '2.8700', '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 (46695, '2021-12-28', 1672, 44474, 3228, NULL, '64.0000', '2.8700', '2.8700', '4.0000', '4.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46696, '2021-12-28', 9577, 44475, 3228, NULL, '3.0000', '0.3200', '0.3200', '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 (46697, '2021-12-28', 2317, 44476, 3228, 3473, '1.0000', '15.0000', '15.0000', '18.0000', '18.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 (46698, '2021-12-28', 1641, 44477, 3228, 3214, '-160.0000', '0.9800', '0.9800', '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 (46699, '2021-12-28', 1641, 44477, 3228, NULL, '165.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-165.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46700, '2021-12-28', 1346, 44478, 3228, 21942, '-54.0000', '1.0594', '1.0594', '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 (46701, '2021-12-28', 1346, 44478, 3228, NULL, '69.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46702, '2021-12-28', 9577, 44479, 3228, NULL, '2.0000', '0.3200', '0.3200', '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 (46703, '2021-12-28', 1602, 44480, 3228, 5897, '-73.0000', '6.7859', '6.7859', '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 (46704, '2021-12-28', 1602, 44480, 3228, NULL, '74.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46705, '2021-12-28', 2059, 44481, 3228, 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 (46706, '2021-12-28', 1943, 44482, 3228, 5594, '-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 (46707, '2021-12-28', 1943, 44482, 3228, NULL, '3.0000', '5.0000', '5.0000', '7.0000', '7.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 (46708, '2021-12-28', 9551, 44483, 3228, 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 (46709, '2021-12-28', 2916, 44484, 3228, 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 (46710, '2021-12-28', 2281, 44485, 3228, 2941, '-32.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 (46711, '2021-12-28', 2281, 44485, 3228, NULL, '34.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-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 (46712, '2021-12-28', 2073, 44486, 3228, 22247, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '12.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 (46713, '2021-12-28', 2020, 44487, 3228, 10164, '-7.0000', '7.5000', '7.5000', '9.5000', '9.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 (46714, '2021-12-28', 2020, 44487, 3228, NULL, '8.0000', '7.5000', '7.5000', '9.5000', '9.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 (46715, '2021-12-28', 2858, 44488, 3228, 17772, '-27.0000', '1.0000', '1.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 (46716, '2021-12-28', 2858, 44488, 3228, NULL, '28.0000', '1.0000', '1.0000', '5.0000', '5.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 (46717, '2021-12-28', 1347, 44489, 3228, 3320, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '3.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 (46718, '2021-12-28', 2657, 44490, 3228, 11267, '-5.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 (46719, '2021-12-28', 2657, 44490, 3228, NULL, '6.0000', '5.4200', '5.4200', '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 (46720, '2021-12-28', 1837, 44491, 3228, 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 (46721, '2021-12-28', 7411, 44492, 3228, NULL, '1.0000', '1.3500', '1.3500', '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 (46722, '2021-12-28', 2320, 44493, 3228, 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 (46723, '2021-12-28', 2285, 44494, 3228, 2945, '-31.0000', '35.8000', '35.8000', '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 (46724, '2021-12-28', 2285, 44494, 3228, NULL, '32.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46725, '2021-12-28', 2405, 44495, 3228, 4452, '-14.0000', '1.2000', '1.2000', '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 (46726, '2021-12-28', 2405, 44495, 3228, NULL, '15.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (46727, '2021-12-28', 1630, 44496, 3228, 491, '1.0000', '66.3608', '66.3608', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 41);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46728, '2021-12-28', 1502, 44497, 3228, 18925, '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 (46729, '2021-12-28', 3059, 44498, 3228, NULL, '5.0000', '0.4500', '0.4500', '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 (46730, '2021-12-28', 1949, 44499, 3228, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '5.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 (46731, '2021-12-28', 1534, 44500, 3228, 18882, '1.0000', '0.9800', '0.9800', '1.3000', '1.3000', '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 (46732, '2021-12-28', 2358, 44501, 3228, 22278, '1.0000', '13.6000', '13.6000', '18.0000', '18.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 (46733, '2021-12-28', 9577, 44502, 3228, NULL, '1.0000', '0.3200', '0.3200', '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 (46734, '2021-12-28', 2486, 44503, 3228, 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 (46735, '2021-12-28', 1423, 44504, 3228, 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 (46736, '2021-12-28', 1312, 44505, 3228, 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 (46737, '2021-12-28', 2248, 44506, 3228, 2785, '-1.0000', '2.5000', '2.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 (46738, '2021-12-28', 2248, 44506, 3228, NULL, '3.0000', '2.5000', '2.5000', '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 (46739, '2021-12-28', 2825, 44507, 3228, NULL, '1.0000', '12.0000', '12.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 (46740, '2021-12-28', 2337, 44508, 3228, 18851, '1.0000', '51.0000', '51.0000', '67.5000', '67.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 (46741, '2021-12-28', 1345, 44509, 3228, NULL, '1.0000', '49.0000', '49.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 (46742, '2021-12-28', 8518, 44510, 3228, NULL, '1.0000', '17.6400', '17.6400', '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 (46743, '2021-12-28', 2916, 44511, 3228, 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 (46744, '2021-12-28', 1502, 44512, 3228, 18925, '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 (46745, '2021-12-28', 1923, 44513, 3228, 5576, '-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 (46746, '2021-12-28', 1923, 44513, 3228, 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 (46747, '2021-12-28', 1569, 44514, 3228, 432, '1.0000', '96.0576', '96.0576', '20.0000', '20.0000', '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 (46748, '2021-12-28', 2858, 44515, 3228, 17772, '-27.0000', '1.0000', '1.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 (46749, '2021-12-28', 2858, 44515, 3228, NULL, '28.0000', '1.0000', '1.0000', '5.0000', '5.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 (46750, '2021-12-28', 2547, 44516, 3228, 6309, '-1.0000', '8.7600', '8.7600', '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 (46751, '2021-12-28', 2547, 44516, 3228, NULL, '2.0000', '8.7600', '8.7600', '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 (46752, '2021-12-28', 7411, 44517, 3228, NULL, '1.0000', '1.3500', '1.3500', '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 (46753, '2021-12-28', 1744, 44518, 3228, 2163, '-3.0000', '26.5281', '26.5281', '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 (46754, '2021-12-28', 1744, 44518, 3228, NULL, '4.0000', '26.5281', '26.5281', '36.0000', '36.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 (46755, '2021-12-28', 8622, 44519, 3228, 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 (46756, '2021-12-28', 9089, 44520, 3228, NULL, '1.0000', '3.8000', '3.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 (46757, '2021-12-28', 2277, 44521, 3229, 2937, '-34.0000', '0.7800', '0.7800', '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 (46758, '2021-12-28', 2277, 44521, 3229, NULL, '36.0000', '0.7800', '0.7800', '1.5000', '1.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 (46759, '2021-12-28', 7588, 44522, 3230, NULL, '1.0000', '7.0762', '7.0762', '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 (46760, '2021-12-28', 2965, 44523, 3230, 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 (46761, '2021-12-28', 2315, 44524, 3230, NULL, '7.0000', '0.4740', '0.4740', '0.6000', '0.6000', '-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 (46762, '2021-12-28', 7557, 44525, 3230, 44363, '10.0000', '0.5000', '0.5000', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46763, '2021-12-28', 7490, 44526, 3230, NULL, '4.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-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 (46764, '2021-12-28', 7428, 44527, 3230, NULL, '10.0000', '744.9056', '744.9056', '4.0000', '4.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 (46765, '2021-12-28', 1916, 44528, 3230, 44048, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46766, '2021-12-28', 9193, 44529, 3230, NULL, '1.0000', '5.5150', '5.5150', '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 (46767, '2021-12-28', 8454, 44530, 3230, NULL, '1.0000', '5.1700', '5.1700', '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 (46768, '2021-12-28', 8063, 44531, 3230, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46769, '2021-12-28', 8097, 44532, 3230, 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 (46770, '2021-12-28', 8677, 44533, 3230, NULL, '2.0000', '1.2300', '1.2300', '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 (46771, '2021-12-28', 8515, 44534, 3230, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (46772, '2021-12-28', 1837, 44535, 3230, 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 (46773, '2021-12-28', 7354, 44536, 3230, NULL, '1.0000', '18.0000', '18.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 (46774, '2021-12-28', 7478, 44537, 3230, NULL, '2.0000', '4.0000', '4.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 (46775, '2021-12-28', 8080, 44538, 3230, NULL, '4.0000', '2.9000', '2.9000', '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 (46776, '2021-12-28', 7412, 44539, 3230, NULL, '1.0000', '1.5200', '1.5200', '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 (46777, '2021-12-28', 8243, 44540, 3230, NULL, '1.0000', '1.1400', '1.1400', '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 (46778, '2021-12-28', 7744, 44541, 3230, 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 (46779, '2021-12-28', 8712, 44542, 3230, NULL, '1.0000', '7.0400', '7.0400', '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 (46780, '2021-12-28', 7514, 44543, 3230, NULL, '1.0000', '12.9983', '12.9983', '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 (46781, '2021-12-28', 7725, 44544, 3230, NULL, '1.0000', '6.2371', '6.2371', '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 (46782, '2021-12-28', 7641, 44545, 3230, NULL, '1.0000', '-12.6777', '-12.6777', '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 (46783, '2021-12-28', 7967, 44546, 3230, NULL, '1.0000', '6.2538', '6.2538', '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 (46784, '2021-12-28', 7317, 44547, 3230, NULL, '1.0000', '29.3700', '29.3700', '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 (46785, '2021-12-28', 1854, 44548, 3230, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46786, '2021-12-28', 9579, 44549, 3230, 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 (46787, '2021-12-28', 8166, 44550, 3230, NULL, '2.0000', '4.6000', '4.6000', '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 (46788, '2021-12-28', 7639, 44551, 3230, 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 (46789, '2021-12-28', 8063, 44552, 3230, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46790, '2021-12-28', 7558, 44553, 3230, NULL, '10.0000', '2.2000', '2.2000', '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 (46791, '2021-12-28', 7522, 44554, 3230, NULL, '1.0000', '5.2000', '5.2000', '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 (46792, '2021-12-28', 7780, 44555, 3230, NULL, '1.0000', '2.6000', '2.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 (46793, '2021-12-28', 8166, 44556, 3230, NULL, '1.0000', '4.6000', '4.6000', '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 (46794, '2021-12-28', 2927, 44557, 3230, NULL, '1.0000', '14.7000', '14.7000', '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 (46795, '2021-12-28', 9154, 44558, 3230, NULL, '1.0000', '10.6800', '10.6800', '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 (46796, '2021-12-28', 8002, 44559, 3230, NULL, '1.0000', '33.0000', '33.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46797, '2021-12-28', 7385, 44560, 3230, NULL, '4.0000', '17.6346', '17.6346', '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 (46798, '2021-12-28', 7551, 44561, 3230, NULL, '10.0000', '1.2700', '1.2700', '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 (46799, '2021-12-28', 7355, 44562, 3230, NULL, '1.0000', '11.6400', '11.6400', '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 (46800, '2021-12-28', 8825, 44563, 3230, NULL, '1.0000', '7.4000', '7.4000', '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 (46801, '2021-12-28', 7473, 44564, 3230, NULL, '5.0000', '25.2998', '25.2998', '0.6000', '0.6000', '-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 (46802, '2021-12-28', 7592, 44565, 3230, 36046, '1.0000', '14.2175', '14.2175', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46803, '2021-12-28', 2315, 44566, 3230, NULL, '2.0000', '0.4740', '0.4740', '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 (46804, '2021-12-28', 7680, 44567, 3230, NULL, '1.0000', '7.4000', '7.4000', '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 (46805, '2021-12-28', 7427, 44568, 3230, 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 (46806, '2021-12-28', 2315, 44569, 3230, NULL, '1.0000', '0.4740', '0.4740', '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 (46807, '2021-12-28', 2315, 44570, 3230, NULL, '2.0000', '0.4740', '0.4740', '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 (46808, '2021-12-28', 7774, 44571, 3230, 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 (46809, '2021-12-28', 8137, 44572, 3230, NULL, '1.0000', '3.0000', '3.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 (46810, '2021-12-28', 8485, 44573, 3230, NULL, '1.0000', '7.0400', '7.0400', '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 (46811, '2021-12-28', 7638, 44574, 3230, 30222, '1.0000', '7.6034', '7.6034', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46812, '2021-12-28', 1542, 44575, 3230, 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 (46813, '2021-12-28', 7702, 44576, 3230, NULL, '1.0000', '0.4600', '0.4600', '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 (46814, '2021-12-28', 7755, 44577, 3230, NULL, '1.0000', '-48.8467', '-48.8467', '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 (46815, '2021-12-28', 1837, 44578, 3230, 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 (46816, '2021-12-28', 7906, 44579, 3230, NULL, '1.0000', '7.8800', '7.8800', '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 (46817, '2021-12-28', 9356, 44580, 3230, NULL, '1.0000', '30.7800', '30.7800', '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 (46818, '2021-12-28', 7317, 44581, 3230, NULL, '1.0000', '29.3700', '29.3700', '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 (46819, '2021-12-28', 8328, 44582, 3230, NULL, '1.0000', '8.0882', '8.0882', '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 (46820, '2021-12-28', 7848, 44583, 3230, NULL, '1.0000', '1.3500', '1.3500', '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 (46821, '2021-12-28', 1805, 44584, 3230, NULL, '1.0000', '4.5500', '4.5500', '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 (46822, '2021-12-28', 8722, 44585, 3230, 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 (46823, '2021-12-28', 8984, 44586, 3230, NULL, '1.0000', '0.6700', '0.6700', '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 (46824, '2021-12-28', 8360, 44587, 3230, 39538, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46825, '2021-12-28', 7709, 44588, 3230, NULL, '2.0000', '35.8000', '35.8000', '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 (46826, '2021-12-28', 7366, 44589, 3230, 39591, '1.0000', '6.9800', '6.9800', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46827, '2021-12-28', 7780, 44590, 3230, NULL, '1.0000', '2.6000', '2.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 (46828, '2021-12-28', 9620, 44591, 3230, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46829, '2021-12-28', 7522, 44592, 3230, NULL, '1.0000', '5.2000', '5.2000', '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 (46830, '2021-12-28', 7666, 44593, 3230, NULL, '1.0000', '0.4000', '0.4000', '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 (46831, '2021-12-28', 7780, 44594, 3230, NULL, '1.0000', '2.6000', '2.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 (46832, '2021-12-28', 7457, 44595, 3230, 43158, '2.0000', '3.3581', '3.3581', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46833, '2021-12-28', 2100, 44596, 3230, 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 (46834, '2021-12-28', 8457, 44597, 3230, NULL, '1.0000', '0.7500', '0.7500', '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 (46835, '2021-12-28', 7819, 44598, 3230, NULL, '1.0000', '9.5000', '9.5000', '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 (46836, '2021-12-28', 9578, 44599, 3230, NULL, '1.0000', '8.0000', '8.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 (46837, '2021-12-28', 8557, 44600, 3230, NULL, '1.0000', '12.7706', '12.7706', '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 (46838, '2021-12-28', 9469, 44601, 3230, 39422, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46839, '2021-12-28', 7371, 44602, 3230, 30007, '1.0000', '23.9900', '23.9900', '45.0000', '45.0000', '4.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46840, '2021-12-28', 2965, 44603, 3230, 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 (46841, '2021-12-28', 7848, 44604, 3230, NULL, '1.0000', '1.3500', '1.3500', '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 (46842, '2021-12-28', 7900, 44605, 3230, NULL, '1.0000', '2.5000', '2.5000', '3.2000', '3.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 (46843, '2021-12-28', 8457, 44606, 3230, NULL, '1.0000', '0.7500', '0.7500', '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 (46844, '2021-12-28', 1577, 44607, 3230, 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 (46845, '2021-12-28', 7518, 44608, 3230, NULL, '1.0000', '-67.2578', '-67.2578', '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 (46846, '2021-12-28', 7753, 44609, 3230, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46847, '2021-12-28', 7472, 44610, 3230, NULL, '1.0000', '4.1000', '4.1000', '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 (46848, '2021-12-28', 8063, 44611, 3230, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46849, '2021-12-28', 7780, 44612, 3230, NULL, '1.0000', '2.6000', '2.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 (46850, '2021-12-28', 7753, 44613, 3230, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46851, '2021-12-28', 7482, 44614, 3230, NULL, '1.0000', '2.4981', '2.4981', '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 (46852, '2021-12-28', 8178, 44615, 3230, NULL, '1.0000', '4.5000', '4.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 (46853, '2021-12-28', 2283, 44616, 3230, 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 (46854, '2021-12-28', 8548, 44617, 3230, NULL, '1.0000', '12.0000', '12.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 (46855, '2021-12-28', 7819, 44618, 3230, NULL, '1.0000', '9.5000', '9.5000', '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 (46856, '2021-12-28', 8276, 44619, 3230, NULL, '1.0000', '12.7063', '12.7063', '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 (46857, '2021-12-28', 9568, 44620, 3230, 37384, '1.0000', '53.1600', '53.1600', '70.0000', '70.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46858, '2021-12-28', 7527, 44621, 3230, NULL, '1.0000', '0.8900', '0.8900', '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 (46859, '2021-12-28', 7780, 44622, 3230, NULL, '1.0000', '2.6000', '2.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 (46860, '2021-12-28', 8097, 44623, 3230, 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 (46861, '2021-12-28', 7675, 44624, 3230, NULL, '1.0000', '11.4300', '11.4300', '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 (46862, '2021-12-28', 7457, 44625, 3230, 43158, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46863, '2021-12-28', 8548, 44626, 3230, NULL, '1.0000', '12.0000', '12.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 (46864, '2021-12-28', 7629, 44627, 3230, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46865, '2021-12-28', 7713, 44628, 3230, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46866, '2021-12-28', 7825, 44629, 3230, NULL, '1.0000', '6.5000', '6.5000', '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 (46867, '2021-12-28', 7411, 44630, 3230, NULL, '1.0000', '1.3500', '1.3500', '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 (46868, '2021-12-28', 7459, 44631, 3230, NULL, '4.0000', '40.3500', '40.3500', '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 (46869, '2021-12-28', 1577, 44632, 3230, 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 (46870, '2021-12-28', 7473, 44633, 3230, NULL, '10.0000', '25.2998', '25.2998', '0.6000', '0.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 (46871, '2021-12-28', 3001, 44634, 3230, NULL, '2.0000', '1.5000', '1.5000', '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 (46872, '2021-12-28', 8032, 44635, 3230, NULL, '1.0000', '12.0000', '12.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 (46873, '2021-12-28', 7848, 44636, 3230, NULL, '1.0000', '1.3500', '1.3500', '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 (46874, '2021-12-28', 1805, 44637, 3231, NULL, '1.0000', '4.5132', '4.5132', '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 (46875, '2021-12-28', 2076, 44638, 3231, NULL, '1.0000', '8.3000', '8.3000', '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 (46876, '2021-12-28', 7411, 44639, 3231, NULL, '1.0000', '1.3500', '1.3500', '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 (46877, '2021-12-28', 1641, 44640, 3231, NULL, '1.0000', '1.9923', '1.9923', '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 (46878, '2021-12-28', 9577, 44641, 3231, NULL, '2.0000', '0.3200', '0.3200', '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 (46879, '2021-12-28', 2937, 44642, 3231, 42801, '1.0000', '5.5233', '5.5233', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46880, '2021-12-28', 8746, 44643, 3231, 44142, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46881, '2021-12-28', 8933, 44644, 3231, 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 (46882, '2021-12-28', 2713, 44645, 3231, 44440, '3.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46883, '2021-12-28', 2068, 44646, 3231, NULL, '1.0000', '13.0094', '13.0094', '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 (46884, '2021-12-28', 1557, 44647, 3231, NULL, '1.0000', '7.6800', '7.6800', '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 (46885, '2021-12-28', 8325, 44648, 3231, 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 (46886, '2021-12-28', 9577, 44649, 3231, NULL, '2.0000', '0.3200', '0.3200', '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 (46887, '2021-12-28', 2169, 44650, 3231, NULL, '1.0000', '1.1500', '1.1500', '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 (46888, '2021-12-28', 2989, 44651, 3231, 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 (46889, '2021-12-28', 1307, 44652, 3231, NULL, '1.0000', '1.7846', '1.7846', '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 (46890, '2021-12-28', 1651, 44653, 3231, NULL, '1.0000', '5.0422', '5.0422', '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 (46891, '2021-12-28', 2320, 44654, 3231, 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 (46892, '2021-12-28', 1529, 44655, 3231, NULL, '1.0000', '3.4997', '3.4997', '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 (46893, '2021-12-28', 1910, 44656, 3231, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (46894, '2021-12-28', 8345, 44657, 3231, NULL, '1.0000', '22.0000', '22.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 (46895, '2021-12-28', 1612, 44658, 3231, 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 (46896, '2021-12-28', 2643, 44659, 3231, 44000, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46897, '2021-12-28', 8735, 44660, 3231, NULL, '1.0000', '5.6000', '5.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 (46898, '2021-12-28', 1499, 44661, 3231, 41408, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '10.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46899, '2021-12-28', 2068, 44662, 3231, NULL, '1.0000', '13.0094', '13.0094', '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 (46900, '2021-12-28', 1501, 44663, 3231, NULL, '1.0000', '2.2100', '2.2100', '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 (46901, '2021-12-28', 7886, 44664, 3231, NULL, '2.0000', '14.5000', '14.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 (46902, '2021-12-28', 8756, 44665, 3231, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46903, '2021-12-28', 2221, 44666, 3231, 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 (46904, '2021-12-28', 9577, 44667, 3231, NULL, '2.0000', '0.3200', '0.3200', '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 (46905, '2021-12-28', 1854, 44668, 3231, 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 (46906, '2021-12-28', 8132, 44669, 3231, NULL, '1.0000', '4.7200', '4.7200', '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 (46907, '2021-12-28', 2073, 44670, 3231, 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 (46908, '2021-12-28', 8638, 44671, 3231, NULL, '1.0000', '0.5100', '0.5100', '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 (46909, '2021-12-28', 7530, 44672, 3231, 42073, '1.0000', '-2.9704', '-2.9704', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46910, '2021-12-28', 2236, 44673, 3231, 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 (46911, '2021-12-28', 7708, 44674, 3231, NULL, '1.0000', '6.1400', '6.1400', '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 (46912, '2021-12-28', 2250, 44675, 3231, 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 (46913, '2021-12-28', 7411, 44676, 3231, NULL, '1.0000', '1.3500', '1.3500', '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 (46914, '2021-12-28', 2169, 44677, 3231, NULL, '1.0000', '1.1500', '1.1500', '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 (46915, '2021-12-28', 1621, 44678, 3231, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '45.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46916, '2021-12-28', 1529, 44679, 3231, NULL, '1.0000', '3.4997', '3.4997', '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 (46917, '2021-12-28', 1555, 44680, 3231, NULL, '1.0000', '22.2400', '22.2400', '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 (46918, '2021-12-28', 2320, 44681, 3231, 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 (46919, '2021-12-28', 8033, 44682, 3231, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46920, '2021-12-28', 9577, 44683, 3231, NULL, '2.0000', '0.3200', '0.3200', '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 (46921, '2021-12-28', 1840, 44684, 3231, 42569, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '28.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46922, '2021-12-28', 7328, 44685, 3231, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46923, '2021-12-28', 8359, 44686, 3231, NULL, '1.0000', '13.5000', '13.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 (46924, '2021-12-28', 8638, 44687, 3231, NULL, '1.0000', '0.5100', '0.5100', '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 (46925, '2021-12-28', 9577, 44688, 3231, NULL, '2.0000', '0.3200', '0.3200', '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 (46926, '2021-12-28', 7355, 44689, 3231, 39797, '1.0000', '18.6310', '18.6310', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46927, '2021-12-28', 2036, 44690, 3231, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '10.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 (46928, '2021-12-28', 2010, 44691, 3231, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46929, '2021-12-28', 7708, 44692, 3231, NULL, '1.0000', '6.1400', '6.1400', '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 (46930, '2021-12-28', 7564, 44693, 3232, NULL, '1.0000', '0.6400', '0.6400', '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 (46931, '2021-12-28', 2280, 44694, 3232, NULL, '1.0000', '-177.9360', '-177.9360', '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 (46932, '2021-12-28', 1529, 44695, 3232, NULL, '1.0000', '3.4997', '3.4997', '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 (46933, '2021-12-28', 2250, 44696, 3232, 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 (46934, '2021-12-28', 7411, 44697, 3232, NULL, '1.0000', '1.3500', '1.3500', '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 (46935, '2021-12-28', 1837, 44698, 3232, 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 (46936, '2021-12-28', 2109, 44699, 3232, 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 (46937, '2021-12-28', 1479, 44700, 3232, 23172, '1.0000', '44.0000', '44.0000', '58.0000', '58.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 (46938, '2021-12-28', 9603, 44701, 3232, 44146, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46939, '2021-12-28', 9214, 44702, 3232, NULL, '1.0000', '9.6000', '9.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 (46940, '2021-12-28', 1410, 44703, 3232, NULL, '1.0000', '2.1083', '2.1083', '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 (46941, '2021-12-28', 2713, 44704, 3232, 44440, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46942, '2021-12-28', 7799, 44705, 3232, NULL, '1.0000', '2.0000', '2.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 (46943, '2021-12-28', 2019, 44706, 3232, 44161, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46944, '2021-12-28', 2937, 44707, 3232, 42801, '1.0000', '5.5233', '5.5233', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46945, '2021-12-28', 2169, 44708, 3232, NULL, '1.0000', '1.1500', '1.1500', '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 (46946, '2021-12-28', 7558, 44709, 3232, 39820, '1.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46947, '2021-12-28', 8608, 44710, 3232, NULL, '1.0000', '0.9000', '0.9000', '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 (46948, '2021-12-28', 7666, 44711, 3232, NULL, '1.0000', '10.0000', '10.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 (46949, '2021-12-28', 8735, 44712, 3232, NULL, '1.0000', '5.6000', '5.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 (46950, '2021-12-28', 7666, 44713, 3232, NULL, '1.0000', '10.0000', '10.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 (46951, '2021-12-28', 8608, 44714, 3232, NULL, '1.0000', '0.9000', '0.9000', '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 (46952, '2021-12-28', 9092, 44715, 3232, NULL, '2.0000', '5.2900', '5.2900', '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 (46953, '2021-12-28', 1501, 44716, 3232, NULL, '1.0000', '2.2100', '2.2100', '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 (46954, '2021-12-28', 7453, 44717, 3233, NULL, '1.0000', '28.5000', '28.5000', '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 (46955, '2021-12-28', 1339, 44718, 3233, NULL, '1.0000', '2.0193', '2.0193', '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 (46956, '2021-12-28', 7411, 44719, 3233, NULL, '1.0000', '1.3500', '1.3500', '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 (46957, '2021-12-28', 8200, 44720, 3233, NULL, '1.0000', '629.5726', '629.5726', '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 (46958, '2021-12-28', 7753, 44721, 3233, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46959, '2021-12-28', 7675, 44722, 3233, NULL, '1.0000', '11.4300', '11.4300', '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 (46960, '2021-12-28', 8324, 44723, 3233, NULL, '2.0000', '3.0036', '3.0036', '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 (46961, '2021-12-28', 2869, 44724, 3233, NULL, '1.0000', '20.0000', '20.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 (46962, '2021-12-28', 8328, 44725, 3233, NULL, '1.0000', '8.0882', '8.0882', '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 (46963, '2021-12-28', 7715, 44726, 3233, NULL, '1.0000', '1.8900', '1.8900', '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 (46964, '2021-12-28', 8254, 44727, 3233, NULL, '1.0000', '27.2800', '27.2800', '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 (46965, '2021-12-28', 1810, 44728, 3233, NULL, '1.0000', '7.7967', '7.7967', '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 (46966, '2021-12-28', 2560, 44729, 3233, NULL, '1.0000', '17.0000', '17.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 (46967, '2021-12-28', 7560, 44730, 3233, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (46968, '2021-12-28', 7711, 44731, 3233, NULL, '1.0000', '-78.4806', '-78.4806', '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 (46969, '2021-12-28', 8462, 44732, 3233, 32919, '1.0000', '7.0400', '7.0400', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46970, '2021-12-28', 8793, 44733, 3233, 31662, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46971, '2021-12-28', 7642, 44734, 3233, 44050, '1.0000', '-110.3600', '-110.3600', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46972, '2021-12-28', 8454, 44735, 3233, NULL, '1.0000', '5.1700', '5.1700', '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 (46973, '2021-12-28', 8833, 44736, 3233, NULL, '1.0000', '4.2000', '4.2000', '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 (46974, '2021-12-28', 8708, 44737, 3233, 30928, '1.0000', '8.6000', '8.6000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46975, '2021-12-28', 7593, 44738, 3233, 43078, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46976, '2021-12-28', 7411, 44739, 3233, NULL, '1.0000', '1.3500', '1.3500', '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 (46977, '2021-12-28', 8203, 44740, 3233, NULL, '2.0000', '1.0075', '1.0075', '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 (46978, '2021-12-28', 7473, 44741, 3233, NULL, '2.0000', '25.2998', '25.2998', '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 (46979, '2021-12-28', 7848, 44742, 3233, NULL, '1.0000', '1.3500', '1.3500', '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 (46980, '2021-12-28', 8247, 44743, 3233, NULL, '1.0000', '54.0000', '54.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 (46981, '2021-12-28', 7444, 44744, 3233, 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 (46982, '2021-12-28', 8858, 44745, 3233, NULL, '2.0000', '27.7076', '27.7076', '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 (46983, '2021-12-28', 7704, 44746, 3233, NULL, '1.0000', '-1.5625', '-1.5625', '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 (46984, '2021-12-28', 8205, 44747, 3233, NULL, '1.0000', '2.9500', '2.9500', '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 (46985, '2021-12-28', 8134, 44748, 3233, NULL, '1.0000', '5.2600', '5.2600', '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 (46986, '2021-12-28', 8418, 44749, 3233, NULL, '1.0000', '43.8200', '43.8200', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46987, '2021-12-28', 7411, 44750, 3233, NULL, '1.0000', '1.3500', '1.3500', '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 (46988, '2021-12-28', 7652, 44751, 3233, NULL, '3.0000', '40.3000', '40.3000', '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 (46989, '2021-12-28', 7711, 44752, 3233, NULL, '1.0000', '-78.4806', '-78.4806', '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 (46990, '2021-12-28', 7799, 44753, 3233, NULL, '1.0000', '2.0000', '2.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 (46991, '2021-12-28', 7719, 44754, 3233, NULL, '1.0000', '6.3333', '6.3333', '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 (46992, '2021-12-28', 1837, 44755, 3233, 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 (46993, '2021-12-28', 9337, 44756, 3233, NULL, '2.0000', '6.8067', '6.8067', '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 (46994, '2021-12-28', 2943, 44757, 3233, 43054, '1.0000', '2.1933', '2.1933', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46995, '2021-12-28', 8363, 44758, 3233, NULL, '1.0000', '38.0000', '38.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 (46996, '2021-12-28', 7736, 44759, 3233, NULL, '1.0000', '15.0000', '15.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 (46997, '2021-12-28', 1665, 44760, 3234, 34008, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46998, '2021-12-28', 1666, 44761, 3234, 42825, '1.0000', '2.7429', '2.7429', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46999, '2021-12-28', 1757, 44762, 3234, NULL, '1.0000', '4.0024', '4.0024', '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 (47000, '2021-12-28', 2354, 44763, 3234, NULL, '1.0000', '5.0600', '5.0600', '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 (47001, '2021-12-28', 2088, 44764, 3235, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47002, '2021-12-28', 2221, 44765, 3235, 44730, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47003, '2021-12-28', 9508, 44766, 3235, NULL, '1.0000', '3.4000', '3.4000', '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 (47004, '2021-12-28', 9577, 44767, 3235, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47005, '2021-12-28', 7753, 44768, 3235, NULL, '1.0000', '3.1400', '3.1400', '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 (47006, '2021-12-28', 1840, 44769, 3235, NULL, '3.0000', '0.2400', '0.2400', '0.3000', '0.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 (47007, '2021-12-28', 1555, 44770, 3235, 44601, '1.0000', '80.1191', '80.1191', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47008, '2021-12-28', 2539, 44771, 3235, 12244, '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 (47009, '2021-12-28', 1602, 44772, 3235, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47010, '2021-12-28', 1846, 44773, 3235, NULL, '1.0000', '31.0430', '31.0430', '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 (47011, '2021-12-28', 2221, 44774, 3235, 44730, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47012, '2021-12-28', 2221, 44775, 3235, 44730, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47013, '2021-12-28', 7427, 44776, 3235, 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 (47014, '2021-12-28', 2567, 44777, 3235, 44489, '1.0000', '-212.3941', '-212.3941', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47015, '2021-12-28', 1846, 44778, 3235, NULL, '1.0000', '31.0430', '31.0430', '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 (47016, '2021-12-28', 7482, 44779, 3235, 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 (47017, '2021-12-28', 1598, 44780, 3235, 31712, '1.0000', '3.0920', '3.0920', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47018, '2021-12-28', 2917, 44781, 3235, 18791, '1.0000', '7.3500', '7.3500', '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 (47019, '2021-12-28', 1409, 44782, 3235, 44694, '1.0000', '13.1141', '13.1141', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47020, '2021-12-28', 2237, 44783, 3235, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47021, '2021-12-28', 1863, 44784, 3235, 44791, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47022, '2021-12-28', 2317, 44785, 3235, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '48.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47023, '2021-12-28', 9630, 44786, 3235, 40623, '4.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47024, '2021-12-28', 1504, 44787, 3235, NULL, '20.0000', '1.2125', '1.2125', '2.2000', '2.2000', '-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 (47025, '2021-12-28', 1303, 44788, 3235, 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 (47026, '2021-12-28', 1303, 44788, 3235, 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 (47027, '2021-12-28', 1303, 44788, 3235, 2657, '5.0000', '1.3800', '1.3800', '4.0000', '4.0000', '53.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 (47028, '2021-12-28', 8476, 44789, 3235, NULL, '12.0000', '23.0000', '23.0000', '0.6000', '0.6000', '-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 (47029, '2021-12-28', 9275, 44790, 3235, NULL, '5.0000', '6.3000', '6.3000', '1.5000', '1.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 (47030, '2021-12-28', 1863, 44791, 3235, 44791, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47031, '2021-12-28', 8200, 44792, 3235, 42960, '2.0000', '6.1395', '6.1395', '8.5000', '8.5000', '17.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47032, '2021-12-28', 2713, 44793, 3235, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47033, '2021-12-28', 8876, 44794, 3235, NULL, '1.0000', '0.9900', '0.9900', '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 (47034, '2021-12-28', 1950, 44795, 3235, 6005, '1.0000', '10.0000', '10.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 (47035, '2021-12-28', 9089, 44796, 3235, 44032, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47036, '2021-12-28', 1812, 44797, 3235, 44713, '5.0000', '7.9641', '7.9641', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47037, '2021-12-28', 1674, 44798, 3235, 32017, '1.0000', '135.4360', '135.4360', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47038, '2021-12-28', 1674, 44798, 3235, 2439, '2.0000', '135.4360', '135.4360', '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 (47039, '2021-12-28', 7741, 44799, 3235, NULL, '1.0000', '1.2000', '1.2000', '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 (47040, '2021-12-28', 1937, 44800, 3235, 5605, '1.0000', '3.0000', '3.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 (47041, '2021-12-28', 8677, 44801, 3235, NULL, '3.0000', '-1.2995', '-1.2995', '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 (47042, '2021-12-28', 7482, 44802, 3235, 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 (47043, '2021-12-28', 1367, 44803, 3235, NULL, '10.0000', '4.9000', '4.9000', '7.0000', '7.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 (47044, '2021-12-28', 2317, 44804, 3235, 39176, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '47.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47045, '2021-12-28', 1655, 44805, 3235, 44571, '1.0000', '37.2800', '37.2800', '49.5000', '49.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47046, '2021-12-28', 1669, 44806, 3235, 44717, '14.0000', '42.6857', '42.6857', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47047, '2021-12-28', 3058, 44807, 3235, 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 (47048, '2021-12-28', 2163, 44808, 3235, 44721, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47049, '2021-12-28', 2712, 44809, 3235, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47050, '2021-12-28', 2713, 44810, 3235, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47051, '2021-12-28', 7383, 44811, 3235, NULL, '1.0000', '1.9700', '1.9700', '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 (47052, '2021-12-28', 1432, 44812, 3235, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47053, '2021-12-28', 2317, 44813, 3235, 39176, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '47.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47054, '2021-12-28', 2487, 44814, 3235, 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 (47055, '2021-12-28', 2660, 44815, 3235, 42944, '4.0000', '0.7000', '0.7000', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47056, '2021-12-28', 2607, 44816, 3235, 42956, '4.0000', '1.4000', '1.4000', '1.7000', '1.7000', '21.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47057, '2021-12-28', 1621, 44817, 3235, 44615, '1.0000', '46.2610', '46.2610', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47058, '2021-12-28', 8532, 44818, 3235, NULL, '1.0000', '22.0000', '22.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 (47059, '2021-12-28', 9626, 44819, 3235, 40291, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47060, '2021-12-28', 2132, 44820, 3235, 4404, '1.0000', '22.0000', '22.0000', '24.0000', '24.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 (47061, '2021-12-28', 9642, 44821, 3235, NULL, '1.0000', '51.3000', '51.3000', '68.0000', '68.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47062, '2021-12-28', 1846, 44822, 3235, NULL, '1.0000', '31.0430', '31.0430', '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 (47063, '2021-12-28', 8052, 44823, 3235, NULL, '1.0000', '29.0000', '29.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 (47064, '2021-12-28', 2695, 44824, 3235, 42961, '4.0000', '2.0000', '2.0000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47065, '2021-12-28', 2221, 44825, 3235, 44730, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47066, '2021-12-28', 2416, 44826, 3235, 44039, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47067, '2021-12-28', 2643, 44827, 3235, 44038, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47068, '2021-12-28', 1519, 44828, 3235, 40645, '1.0000', '3.3717', '3.3717', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47069, '2021-12-28', 2821, 44829, 3235, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47070, '2021-12-28', 2224, 44830, 3235, 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 (47071, '2021-12-28', 2437, 44831, 3235, 44491, '1.0000', '88.0000', '88.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47072, '2021-12-28', 1935, 44832, 3235, 44781, '1.0000', '3.0998', '3.0998', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47073, '2021-12-28', 2858, 44833, 3235, 17780, '1.0000', '1.0000', '1.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 (47074, '2021-12-28', 2624, 44834, 3235, 44772, '1.0000', '14.9167', '14.9167', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47075, '2021-12-28', 9577, 44835, 3235, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47076, '2021-12-28', 1595, 44836, 3235, NULL, '1.0000', '19.8580', '19.8580', '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 (47077, '2021-12-28', 1502, 44837, 3235, 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 (47078, '2021-12-28', 1346, 44838, 3235, NULL, '30.0000', '0.9289', '0.9289', '1.5000', '1.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 (47079, '2021-12-28', 1699, 44839, 3235, NULL, '1.0000', '3.2000', '3.2000', '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 (47080, '2021-12-28', 1564, 44840, 3235, 44767, '5.0000', '10.2805', '10.2805', '4.0000', '4.0000', '145.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47081, '2021-12-28', 1807, 44841, 3235, NULL, '2.0000', '2.3000', '2.3000', '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 (47082, '2021-12-28', 1602, 44842, 3235, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47083, '2021-12-28', 7482, 44843, 3235, 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 (47084, '2021-12-28', 9578, 44844, 3235, 44499, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47085, '2021-12-28', 8208, 44845, 3235, NULL, '1.0000', '33.0000', '33.0000', '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 (47086, '2021-12-28', 9089, 44846, 3235, 44032, '2.0000', '3.8000', '3.8000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47087, '2021-12-28', 2025, 44847, 3235, 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 (47088, '2021-12-28', 2821, 44848, 3235, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47089, '2021-12-28', 1846, 44849, 3236, 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 (47090, '2021-12-28', 1573, 44850, 3237, NULL, '1.0000', '23.0556', '23.0556', '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 (47091, '2021-12-28', 1966, 44851, 3237, 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 (47092, '2021-12-28', 1590, 44852, 3237, 9437, '1.0000', '1.7100', '1.7100', '2.3000', '2.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 (47093, '2021-12-28', 1339, 44853, 3237, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47094, '2021-12-28', 1337, 44854, 3237, 44622, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47095, '2021-12-28', 1486, 44855, 3238, 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 (47096, '2021-12-28', 2302, 44856, 3238, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47097, '2021-12-28', 1854, 44857, 3238, 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 (47098, '2021-12-28', 1928, 44858, 3238, 41412, '1.0000', '5.3300', '5.3300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47099, '2021-12-28', 2712, 44859, 3238, 44438, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '54.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47100, '2021-12-28', 2221, 44860, 3238, 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 (47101, '2021-12-28', 8677, 44861, 3238, NULL, '2.0000', '89.9250', '89.9250', '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 (47102, '2021-12-29', 8361, 44862, 3239, NULL, '1.0000', '4.5800', '4.5800', '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 (47103, '2021-12-29', 7674, 44863, 3239, NULL, '1.0000', '1.3000', '1.3000', '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 (47104, '2021-12-29', 2315, 44864, 3239, NULL, '1.0000', '0.8556', '0.8556', '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 (47105, '2021-12-29', 8677, 44865, 3239, NULL, '3.0000', '89.9250', '89.9250', '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 (47106, '2021-12-29', 1695, 44866, 3239, NULL, '1.0000', '22.6608', '22.6608', '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 (47107, '2021-12-29', 2068, 44867, 3239, NULL, '1.0000', '13.0094', '13.0094', '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 (47108, '2021-12-29', 2311, 44868, 3239, NULL, '1.0000', '46.2900', '46.2900', '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 (47109, '2021-12-29', 8866, 44869, 3239, NULL, '1.0000', '0.4300', '0.4300', '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 (47110, '2021-12-29', 8876, 44870, 3239, NULL, '1.0000', '0.9900', '0.9900', '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 (47111, '2021-12-29', 1507, 44871, 3239, 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 (47112, '2021-12-29', 7815, 44872, 3239, NULL, '1.0000', '13.0000', '13.0000', '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 (47113, '2021-12-29', 1310, 44873, 3239, NULL, '2.0000', '0.3700', '0.3700', '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 (47114, '2021-12-29', 2379, 44874, 3239, NULL, '1.0000', '1.8000', '1.8000', '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 (47115, '2021-12-29', 1678, 44875, 3239, 41377, '1.0000', '33.9300', '33.9300', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47116, '2021-12-29', 2726, 44876, 3239, NULL, '1.0000', '2.7004', '2.7004', '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 (47117, '2021-12-29', 1338, 44877, 3239, 18934, '1.0000', '3.7257', '3.7257', '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 (47118, '2021-12-29', 1602, 44878, 3239, 37781, '1.0000', '6.8552', '6.8552', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47119, '2021-12-29', 8984, 44879, 3239, NULL, '1.0000', '-100.8495', '-100.8495', '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 (47120, '2021-12-29', 9713, 44880, 3239, 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 (47121, '2021-12-29', 7674, 44881, 3239, NULL, '1.0000', '1.3000', '1.3000', '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 (47122, '2021-12-29', 2315, 44882, 3239, NULL, '1.0000', '0.8556', '0.8556', '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 (47123, '2021-12-29', 1787, 44883, 3239, 39911, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47124, '2021-12-29', 7447, 44884, 3239, NULL, '8.0000', '19.1100', '19.1100', '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 (47125, '2021-12-29', 1590, 44885, 3239, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47126, '2021-12-29', 1908, 44886, 3239, NULL, '1.0000', '1.7500', '1.7500', '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 (47127, '2021-12-29', 1501, 44887, 3239, NULL, '1.0000', '2.2100', '2.2100', '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 (47128, '2021-12-29', 8608, 44888, 3239, NULL, '1.0000', '0.9000', '0.9000', '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 (47129, '2021-12-29', 8333, 44889, 3239, 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 (47130, '2021-12-29', 8711, 44890, 3239, NULL, '1.0000', '5.1000', '5.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 (47131, '2021-12-29', 7535, 44891, 3239, 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 (47132, '2021-12-29', 1944, 44892, 3239, 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 (47133, '2021-12-29', 1844, 44893, 3239, NULL, '2.0000', '1.3981', '1.3981', '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 (47134, '2021-12-29', 1703, 44894, 3239, 34619, '1.0000', '9.2200', '9.2200', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47135, '2021-12-29', 1602, 44895, 3240, 5897, '-74.0000', '6.7859', '6.7859', '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 (47136, '2021-12-29', 1602, 44895, 3240, NULL, '75.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47137, '2021-12-29', 1638, 44896, 3240, 22271, '18.0000', '10.8843', '10.8843', '8.5000', '8.5000', '14.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 (47138, '2021-12-29', 9626, 44897, 3240, 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 (47139, '2021-12-29', 7586, 44898, 3240, NULL, '2.0000', '4.1700', '4.1700', '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 (47140, '2021-12-29', 1641, 44899, 3240, 3214, '-165.0000', '0.9800', '0.9800', '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 (47141, '2021-12-29', 1641, 44899, 3240, NULL, '171.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-171.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47142, '2021-12-29', 2484, 44900, 3240, 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 (47143, '2021-12-29', 2860, 44901, 3240, 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 (47144, '2021-12-29', 2763, 44902, 3240, 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 (47145, '2021-12-29', 2487, 44903, 3240, NULL, '2.0000', '23.7500', '23.7500', '30.0000', '30.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 (47146, '2021-12-29', 9577, 44904, 3240, NULL, '2.0000', '0.3200', '0.3200', '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 (47147, '2021-12-29', 3038, 44905, 3240, 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 (47148, '2021-12-29', 2221, 44906, 3240, 4154, '-38.0000', '14.4737', '14.4737', '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 (47149, '2021-12-29', 2221, 44906, 3240, NULL, '39.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47150, '2021-12-29', 2109, 44907, 3240, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '91.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 (47151, '2021-12-29', 1584, 44908, 3240, 7601, '-24.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 (47152, '2021-12-29', 1584, 44908, 3240, NULL, '26.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-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 (47153, '2021-12-29', 2638, 44909, 3240, 22333, '1.0000', '19.6200', '19.6200', '27.0000', '27.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 (47154, '2021-12-29', 2297, 44910, 3240, 2956, '-1.0000', '6.6000', '6.6000', '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 (47155, '2021-12-29', 2297, 44910, 3240, NULL, '2.0000', '6.6000', '6.6000', '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 (47156, '2021-12-29', 7536, 44911, 3240, NULL, '30.0000', '6.5000', '6.5000', '8.6000', '8.6000', '-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 (47157, '2021-12-29', 2221, 44912, 3240, 4154, '-38.0000', '14.4737', '14.4737', '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 (47158, '2021-12-29', 2221, 44912, 3240, NULL, '39.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47159, '2021-12-29', 2858, 44913, 3240, 17772, '-29.0000', '1.0000', '1.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 (47160, '2021-12-29', 2858, 44913, 3240, NULL, '30.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (47161, '2021-12-29', 2964, 44914, 3240, NULL, '1.0000', '6.6000', '6.6000', '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 (47162, '2021-12-29', 2221, 44915, 3240, 4154, '-38.0000', '14.4737', '14.4737', '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 (47163, '2021-12-29', 2221, 44915, 3240, NULL, '39.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47164, '2021-12-29', 2547, 44916, 3240, 6309, '-2.0000', '8.7600', '8.7600', '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 (47165, '2021-12-29', 2547, 44916, 3240, NULL, '3.0000', '8.7600', '8.7600', '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 (47166, '2021-12-29', 2095, 44917, 3240, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '54.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 (47167, '2021-12-29', 7848, 44918, 3241, 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 (47168, '2021-12-29', 9647, 44919, 3241, 41425, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47169, '2021-12-29', 8179, 44920, 3241, NULL, '1.0000', '0.2200', '0.2200', '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 (47170, '2021-12-29', 2019, 44921, 3241, 44161, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47171, '2021-12-29', 1662, 44922, 3242, 44718, '1.0000', '77.0000', '77.0000', '69.0000', '69.0000', '0.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47172, '2021-12-29', 8395, 44923, 3242, NULL, '2.0000', '0.9700', '0.9700', '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 (47173, '2021-12-29', 1871, 44924, 3242, 44584, '28.0000', '12.3809', '12.3809', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47174, '2021-12-29', 2004, 44925, 3242, 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 (47175, '2021-12-29', 7744, 44926, 3242, 44790, '1.0000', '2.9400', '2.9400', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47176, '2021-12-29', 9551, 44927, 3242, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '15.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47177, '2021-12-29', 2763, 44928, 3242, 15805, '1.0000', '7.5000', '7.5000', '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 (47178, '2021-12-29', 1706, 44929, 3242, 44509, '1.0000', '12.5773', '12.5773', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47179, '2021-12-29', 8648, 44930, 3242, NULL, '1.0000', '14.0000', '14.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 (47180, '2021-12-29', 2544, 44931, 3242, 23574, '1.0000', '6.8800', '6.8800', '9.5000', '9.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 (47181, '2021-12-29', 2317, 44932, 3242, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '43.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47182, '2021-12-29', 2943, 44933, 3242, 40637, '1.0000', '2.1925', '2.1925', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47183, '2021-12-29', 2088, 44934, 3242, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47184, '2021-12-29', 2825, 44935, 3242, NULL, '1.0000', '12.0000', '12.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 (47185, '2021-12-29', 2712, 44936, 3242, 42626, '3.0000', '0.2600', '0.2600', '0.5000', '0.5000', '32.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47186, '2021-12-29', 2154, 44937, 3242, 44729, '2.0000', '12.4444', '12.4444', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47187, '2021-12-29', 9577, 44938, 3242, 38070, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47188, '2021-12-29', 1432, 44939, 3242, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47189, '2021-12-29', 1340, 44940, 3242, 44609, '1.0000', '2.6321', '2.6321', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47190, '2021-12-29', 9512, 44941, 3242, NULL, '1.0000', '1.3100', '1.3100', '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 (47191, '2021-12-29', 1854, 44942, 3242, 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 (47192, '2021-12-29', 1604, 44943, 3242, 44701, '2.0000', '72.6682', '72.6682', '113.0000', '113.0000', '0.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47193, '2021-12-29', 9636, 44944, 3242, 41983, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47194, '2021-12-29', 1787, 44945, 3242, 40215, '2.0000', '0.8100', '0.8100', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47195, '2021-12-29', 3013, 44946, 3242, 44697, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47196, '2021-12-29', 2352, 44947, 3242, 44595, '10.0000', '233.6176', '233.6176', '3.5000', '3.5000', '90.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47197, '2021-12-29', 1935, 44948, 3242, 44781, '1.0000', '3.0998', '3.0998', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47198, '2021-12-29', 2657, 44949, 3242, 11408, '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 (47199, '2021-12-29', 1663, 44950, 3242, 37588, '1.0000', '89.8780', '89.8780', '125.0000', '125.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47200, '2021-12-29', 1432, 44951, 3242, 37543, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47201, '2021-12-29', 2285, 44952, 3242, 44630, '1.0000', '37.4303', '37.4303', '49.0000', '49.0000', '15.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47202, '2021-12-29', 8677, 44953, 3243, NULL, '2.0000', '-1.2995', '-1.2995', '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 (47203, '2021-12-29', 1504, 44954, 3244, NULL, '20.0000', '1.2125', '1.2125', '2.2000', '2.2000', '-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 (47204, '2021-12-29', 7564, 44955, 3245, NULL, '1.0000', '0.6400', '0.6400', '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 (47205, '2021-12-29', 2169, 44956, 3245, NULL, '1.0000', '1.1500', '1.1500', '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 (47206, '2021-12-29', 1854, 44957, 3245, 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 (47207, '2021-12-29', 7411, 44958, 3245, NULL, '1.0000', '1.3500', '1.3500', '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 (47208, '2021-12-29', 3054, 44959, 3245, 43224, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47209, '2021-12-29', 2759, 44960, 3245, 43227, '1.0000', '3.9167', '3.9167', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47210, '2021-12-29', 2270, 44961, 3245, 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 (47211, '2021-12-29', 1674, 44962, 3245, NULL, '1.0000', '3.2473', '3.2473', '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 (47212, '2021-12-29', 3059, 44963, 3245, 37758, '1.0000', '2.2083', '2.2083', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47213, '2021-12-29', 2283, 44964, 3245, 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 (47214, '2021-12-29', 7564, 44965, 3245, NULL, '1.0000', '0.6400', '0.6400', '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 (47215, '2021-12-29', 7473, 44966, 3245, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '70.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47216, '2021-12-29', 2916, 44967, 3245, NULL, '1.0000', '14.8227', '14.8227', '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 (47217, '2021-12-29', 7802, 44968, 3245, NULL, '3.0000', '0.9200', '0.9200', '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 (47218, '2021-12-29', 2728, 44969, 3245, 19354, '1.0000', '0.8000', '0.8000', '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 (47219, '2021-12-29', 2280, 44970, 3245, NULL, '1.0000', '-177.9360', '-177.9360', '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 (47220, '2021-12-29', 7411, 44971, 3245, NULL, '1.0000', '1.3500', '1.3500', '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 (47221, '2021-12-29', 9577, 44972, 3245, NULL, '2.0000', '0.3200', '0.3200', '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 (47222, '2021-12-29', 2244, 44973, 3245, 42803, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47223, '2021-12-29', 2315, 44974, 3245, NULL, '4.0000', '0.8556', '0.8556', '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 (47224, '2021-12-29', 2916, 44975, 3245, NULL, '1.0000', '14.8227', '14.8227', '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 (47225, '2021-12-29', 1519, 44976, 3245, NULL, '1.0000', '3.3980', '3.3980', '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 (47226, '2021-12-29', 2506, 44977, 3245, 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 (47227, '2021-12-29', 2169, 44978, 3245, NULL, '1.0000', '1.1500', '1.1500', '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 (47228, '2021-12-29', 2821, 44979, 3245, 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 (47229, '2021-12-29', 2506, 44980, 3245, 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 (47230, '2021-12-29', 8750, 44981, 3245, NULL, '1.0000', '2.6600', '2.6600', '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 (47231, '2021-12-29', 1746, 44982, 3245, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (47232, '2021-12-29', 2315, 44983, 3245, NULL, '1.0000', '0.8556', '0.8556', '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 (47233, '2021-12-29', 7482, 44984, 3245, 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 (47234, '2021-12-29', 2293, 44985, 3245, NULL, '2.0000', '2.7733', '2.7733', '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 (47235, '2021-12-29', 2280, 44986, 3245, NULL, '1.0000', '-177.9360', '-177.9360', '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 (47236, '2021-12-29', 8677, 44987, 3245, NULL, '2.0000', '89.9250', '89.9250', '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 (47237, '2021-12-29', 7917, 44988, 3245, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (47238, '2021-12-29', 8033, 44989, 3245, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47239, '2021-12-29', 7482, 44990, 3245, 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 (47240, '2021-12-29', 1433, 44991, 3245, 19829, '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 (47241, '2021-12-29', 1431, 44992, 3245, NULL, '1.0000', '9.8000', '9.8000', '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 (47242, '2021-12-29', 2353, 44993, 3245, NULL, '2.0000', '4.4500', '4.4500', '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 (47243, '2021-12-29', 2266, 44994, 3245, 13768, '1.0000', '6.4900', '6.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 (47244, '2021-12-29', 2315, 44995, 3245, NULL, '1.0000', '0.8556', '0.8556', '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 (47245, '2021-12-29', 3058, 44996, 3245, 44426, '2.0000', '2.3000', '2.3000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 316);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47246, '2021-12-29', 8679, 44997, 3245, NULL, '1.0000', '28.0000', '28.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 (47247, '2021-12-29', 3056, 44998, 3245, NULL, '1.0000', '52.4500', '52.4500', '69.5000', '69.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47248, '2021-12-29', 8680, 44999, 3245, NULL, '1.0000', '2.0000', '2.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 (47249, '2021-12-29', 2506, 45000, 3245, 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 (47250, '2021-12-29', 3018, 45001, 3245, 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 (47251, '2021-12-29', 2109, 45002, 3245, 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 (47252, '2021-12-29', 2169, 45003, 3245, NULL, '1.0000', '1.1500', '1.1500', '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 (47253, '2021-12-29', 1867, 45004, 3245, NULL, '1.0000', '7.1662', '7.1662', '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 (47254, '2021-12-29', 7715, 45005, 3245, NULL, '1.0000', '1.8900', '1.8900', '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 (47255, '2021-12-29', 1501, 45006, 3245, NULL, '1.0000', '2.2100', '2.2100', '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 (47256, '2021-12-29', 2068, 45007, 3245, NULL, '1.0000', '13.0094', '13.0094', '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 (47257, '2021-12-29', 2384, 45008, 3245, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47258, '2021-12-29', 1912, 45009, 3245, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47259, '2021-12-29', 1303, 45010, 3245, 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 (47260, '2021-12-29', 9204, 45011, 3245, NULL, '1.0000', '8.1600', '8.1600', '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 (47261, '2021-12-29', 2660, 45012, 3245, 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 (47262, '2021-12-29', 9012, 45013, 3245, NULL, '1.0000', '24.0000', '24.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 (47263, '2021-12-29', 1502, 45014, 3245, 42838, '1.0000', '-50.9143', '-50.9143', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47264, '2021-12-29', 2068, 45015, 3245, NULL, '1.0000', '13.0094', '13.0094', '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 (47265, '2021-12-29', 2320, 45016, 3245, 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 (47266, '2021-12-29', 8308, 45017, 3245, NULL, '1.0000', '11.0000', '11.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 (47267, '2021-12-29', 2570, 45018, 3245, 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 (47268, '2021-12-29', 2546, 45019, 3245, NULL, '1.0000', '11.0000', '11.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 (47269, '2021-12-29', 2466, 45020, 3245, 42098, '1.0000', '14.3175', '14.3175', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47270, '2021-12-29', 2342, 45021, 3245, 19387, '2.0000', '1.8601', '1.8601', '2.6000', '2.6000', '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 (47271, '2021-12-29', 1382, 45022, 3245, 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 (47272, '2021-12-29', 7714, 45023, 3245, NULL, '1.0000', '5.0000', '5.0000', '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 (47273, '2021-12-29', 1812, 45024, 3245, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47274, '2021-12-29', 2315, 45025, 3245, NULL, '1.0000', '0.8556', '0.8556', '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 (47275, '2021-12-29', 1574, 45026, 3245, NULL, '1.0000', '1.7001', '1.7001', '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 (47276, '2021-12-29', 7614, 45027, 3245, NULL, '1.0000', '50.7500', '50.7500', '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 (47277, '2021-12-29', 1758, 45028, 3245, 19345, '1.0000', '42.0000', '42.0000', '62.5000', '62.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 (47278, '2021-12-29', 7743, 45029, 3245, NULL, '1.0000', '7.3900', '7.3900', '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 (47279, '2021-12-29', 1945, 45030, 3245, 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 (47280, '2021-12-29', 1311, 45031, 3245, 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 (47281, '2021-12-29', 7714, 45032, 3245, NULL, '3.0000', '5.0000', '5.0000', '0.6000', '0.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 (47282, '2021-12-29', 7743, 45033, 3245, NULL, '1.0000', '7.3900', '7.3900', '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 (47283, '2021-12-29', 7980, 45034, 3245, NULL, '2.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47284, '2021-12-29', 1415, 45035, 3245, 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 (47285, '2021-12-29', 9012, 45036, 3245, NULL, '1.0000', '24.0000', '24.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 (47286, '2021-12-29', 2730, 45037, 3245, 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 (47287, '2021-12-29', 7518, 45038, 3246, NULL, '1.0000', '-112.5817', '-112.5817', '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 (47288, '2021-12-29', 8851, 45039, 3246, NULL, '2.0000', '16.6600', '16.6600', '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 (47289, '2021-12-29', 8243, 45040, 3246, NULL, '1.0000', '1.1400', '1.1400', '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 (47290, '2021-12-29', 7980, 45041, 3246, NULL, '2.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47291, '2021-12-29', 7981, 45042, 3246, NULL, '4.0000', '6.0000', '6.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 (47292, '2021-12-29', 8361, 45043, 3246, NULL, '1.0000', '7.4495', '7.4495', '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 (47293, '2021-12-29', 9498, 45044, 3246, NULL, '1.0000', '12.5000', '12.5000', '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 (47294, '2021-12-29', 1854, 45045, 3246, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47295, '2021-12-29', 8063, 45046, 3246, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47296, '2021-12-29', 7899, 45047, 3246, 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 (47297, '2021-12-29', 7317, 45048, 3246, NULL, '1.0000', '29.3700', '29.3700', '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 (47298, '2021-12-29', 7671, 45049, 3246, NULL, '4.0000', '15.5000', '15.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 (47299, '2021-12-29', 7672, 45050, 3246, NULL, '1.0000', '1.0200', '1.0200', '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 (47300, '2021-12-29', 8359, 45051, 3246, NULL, '2.0000', '87.2313', '87.2313', '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 (47301, '2021-12-29', 1837, 45052, 3246, NULL, '1.0000', '0.6041', '0.6041', '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 (47302, '2021-12-29', 7447, 45053, 3246, NULL, '6.0000', '19.1100', '19.1100', '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 (47303, '2021-12-29', 9561, 45054, 3246, 42671, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47304, '2021-12-29', 8041, 45055, 3246, NULL, '1.0000', '0.4700', '0.4700', '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 (47305, '2021-12-29', 2713, 45056, 3246, 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 (47306, '2021-12-29', 7427, 45057, 3246, 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 (47307, '2021-12-29', 8454, 45058, 3246, NULL, '1.0000', '5.1700', '5.1700', '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 (47308, '2021-12-29', 8515, 45059, 3246, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (47309, '2021-12-29', 9272, 45060, 3246, NULL, '1.0000', '3.1000', '3.1000', '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 (47310, '2021-12-29', 7672, 45061, 3246, NULL, '1.0000', '1.0200', '1.0200', '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 (47311, '2021-12-29', 7906, 45062, 3246, NULL, '1.0000', '7.8800', '7.8800', '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 (47312, '2021-12-29', 7411, 45063, 3246, NULL, '1.0000', '1.3460', '1.3460', '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 (47313, '2021-12-29', 9697, 45064, 3246, 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 (47314, '2021-12-29', 2315, 45065, 3246, NULL, '2.0000', '0.4740', '0.4740', '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 (47315, '2021-12-29', 9088, 45066, 3246, 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 (47316, '2021-12-29', 8457, 45067, 3246, NULL, '1.0000', '-0.8125', '-0.8125', '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 (47317, '2021-12-29', 7678, 45068, 3246, 43441, '1.0000', '5.1400', '5.1400', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47318, '2021-12-29', 7668, 45069, 3246, NULL, '1.0000', '19.6600', '19.6600', '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 (47319, '2021-12-29', 7927, 45070, 3246, 44944, '1.0000', '11.8400', '11.8400', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47320, '2021-12-29', 7612, 45071, 3246, NULL, '1.0000', '1.1770', '1.1770', '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 (47321, '2021-12-29', 7880, 45072, 3246, NULL, '1.0000', '1.0000', '1.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 (47322, '2021-12-29', 8485, 45073, 3246, NULL, '1.0000', '7.0400', '7.0400', '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 (47323, '2021-12-29', 7317, 45074, 3246, NULL, '1.0000', '29.3700', '29.3700', '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 (47324, '2021-12-29', 9191, 45075, 3246, NULL, '1.0000', '6.6700', '6.6700', '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 (47325, '2021-12-29', 7715, 45076, 3246, 44954, '1.0000', '11.9400', '11.9400', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47326, '2021-12-29', 8293, 45077, 3246, NULL, '1.0000', '24.7500', '24.7500', '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 (47327, '2021-12-29', 7975, 45078, 3246, NULL, '1.0000', '21.7000', '21.7000', '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 (47328, '2021-12-29', 9644, 45079, 3246, 43127, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47329, '2021-12-29', 8918, 45080, 3246, 37847, '2.0000', '5.5250', '5.5250', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47330, '2021-12-29', 9092, 45081, 3246, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '151.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47331, '2021-12-29', 7428, 45082, 3246, NULL, '1.0000', '744.9056', '744.9056', '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 (47332, '2021-12-29', 7743, 45083, 3246, NULL, '1.0000', '419203.7668', '419203.7668', '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 (47333, '2021-12-29', 7762, 45084, 3246, NULL, '1.0000', '-0.4000', '-0.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 (47334, '2021-12-29', 8753, 45085, 3246, 44232, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47335, '2021-12-29', 1577, 45086, 3246, 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 (47336, '2021-12-29', 1841, 45087, 3246, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '32.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47337, '2021-12-29', 7544, 45088, 3246, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47338, '2021-12-29', 7671, 45089, 3246, NULL, '1.0000', '15.5000', '15.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 (47339, '2021-12-29', 8765, 45090, 3246, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47340, '2021-12-29', 7640, 45091, 3246, NULL, '1.0000', '7.4344', '7.4344', '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 (47341, '2021-12-29', 7980, 45092, 3246, NULL, '3.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (47342, '2021-12-29', 2418, 45093, 3246, NULL, '1.0000', '9.5000', '9.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 (47343, '2021-12-29', 8953, 45094, 3246, 44472, '1.0000', '18.0000', '18.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47344, '2021-12-29', 8064, 45095, 3246, 30161, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47345, '2021-12-29', 8498, 45096, 3246, NULL, '1.0000', '10.4000', '10.4000', '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 (47346, '2021-12-29', 9471, 45097, 3246, 32154, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47347, '2021-12-29', 9193, 45098, 3246, NULL, '10.0000', '3.2304', '3.2304', '9.5000', '9.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 (47348, '2021-12-29', 8276, 45099, 3246, NULL, '5.0000', '13.4126', '13.4126', '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 (47349, '2021-12-29', 1854, 45100, 3246, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47350, '2021-12-29', 7848, 45101, 3246, NULL, '2.0000', '1.3500', '1.3500', '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 (47351, '2021-12-29', 8097, 45102, 3246, 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 (47352, '2021-12-29', 8677, 45103, 3246, NULL, '2.0000', '1.2300', '1.2300', '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 (47353, '2021-12-29', 9148, 45104, 3246, NULL, '1.0000', '20.1000', '20.1000', '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 (47354, '2021-12-29', 8924, 45105, 3246, NULL, '1.0000', '4.5000', '4.5000', '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 (47355, '2021-12-29', 2297, 45106, 3246, NULL, '1.0000', '7.2000', '7.2000', '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 (47356, '2021-12-29', 1329, 45107, 3246, 225, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47357, '2021-12-29', 8548, 45108, 3246, NULL, '1.0000', '12.0000', '12.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 (47358, '2021-12-29', 8034, 45109, 3246, NULL, '1.0000', '4.8900', '4.8900', '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 (47359, '2021-12-29', 8127, 45110, 3246, NULL, '1.0000', '24.5300', '24.5300', '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 (47360, '2021-12-29', 7518, 45111, 3246, NULL, '1.0000', '-112.5817', '-112.5817', '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 (47361, '2021-12-29', 7890, 45112, 3246, NULL, '1.0000', '1.0000', '1.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47362, '2021-12-29', 7482, 45113, 3246, NULL, '1.0000', '2.4981', '2.4981', '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 (47363, '2021-12-29', 7967, 45114, 3246, NULL, '1.0000', '6.1742', '6.1742', '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 (47364, '2021-12-29', 7743, 45115, 3246, NULL, '1.0000', '419203.7668', '419203.7668', '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 (47365, '2021-12-29', 8224, 45116, 3246, NULL, '2.0000', '1.5000', '1.5000', '23.5000', '23.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 (47366, '2021-12-29', 7658, 45117, 3246, NULL, '10.0000', '63.4193', '63.4193', '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 (47367, '2021-12-29', 9193, 45118, 3246, NULL, '1.0000', '3.2304', '3.2304', '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 (47368, '2021-12-29', 8104, 45119, 3246, NULL, '10.0000', '1.6000', '1.6000', '2.2000', '2.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 (47369, '2021-12-29', 1846, 45120, 3246, NULL, '1.0000', '220.0000', '220.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 (47370, '2021-12-29', 8063, 45121, 3246, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47371, '2021-12-29', 7447, 45122, 3246, NULL, '5.0000', '19.1100', '19.1100', '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 (47372, '2021-12-29', 7672, 45123, 3246, NULL, '1.0000', '1.0200', '1.0200', '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 (47373, '2021-12-29', 2927, 45124, 3246, NULL, '1.0000', '14.7000', '14.7000', '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 (47374, '2021-12-29', 2290, 45125, 3246, 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 (47375, '2021-12-29', 7590, 45126, 3246, NULL, '1.0000', '4.3600', '4.3600', '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 (47376, '2021-12-29', 7803, 45127, 3246, NULL, '1.0000', '1.8200', '1.8200', '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 (47377, '2021-12-29', 2315, 45128, 3246, NULL, '1.0000', '0.4740', '0.4740', '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 (47378, '2021-12-29', 7527, 45129, 3246, NULL, '1.0000', '0.8900', '0.8900', '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 (47379, '2021-12-29', 7848, 45130, 3246, NULL, '1.0000', '1.3500', '1.3500', '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 (47380, '2021-12-29', 7853, 45131, 3246, NULL, '1.0000', '42.8571', '42.8571', '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 (47381, '2021-12-29', 7911, 45132, 3246, NULL, '1.0000', '4.3700', '4.3700', '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 (47382, '2021-12-29', 2315, 45133, 3246, NULL, '4.0000', '0.4740', '0.4740', '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 (47383, '2021-12-29', 7317, 45134, 3246, NULL, '1.0000', '29.3700', '29.3700', '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 (47384, '2021-12-29', 7816, 45135, 3246, 44227, '1.0000', '11.9433', '11.9433', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47385, '2021-12-29', 7334, 45136, 3246, NULL, '2.0000', '8.0645', '8.0645', '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 (47386, '2021-12-29', 7411, 45137, 3246, NULL, '1.0000', '1.3460', '1.3460', '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 (47387, '2021-12-29', 7913, 45138, 3246, NULL, '1.0000', '2.5500', '2.5500', '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 (47388, '2021-12-29', 8517, 45139, 3246, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47389, '2021-12-29', 7750, 45140, 3246, NULL, '1.0000', '35.5900', '35.5900', '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 (47390, '2021-12-29', 7825, 45141, 3246, NULL, '1.0000', '6.5000', '6.5000', '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 (47391, '2021-12-29', 7542, 45142, 3246, 37849, '1.0000', '4.7100', '4.7100', '5.0300', '5.0300', '2.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47392, '2021-12-29', 7518, 45143, 3246, NULL, '1.0000', '-112.5817', '-112.5817', '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 (47393, '2021-12-29', 7782, 45144, 3246, NULL, '2.0000', '5.0000', '5.0000', '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 (47394, '2021-12-29', 7967, 45145, 3246, NULL, '1.0000', '6.1742', '6.1742', '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 (47395, '2021-12-29', 7411, 45146, 3246, NULL, '1.0000', '1.3460', '1.3460', '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 (47396, '2021-12-29', 8454, 45147, 3246, NULL, '1.0000', '5.1700', '5.1700', '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 (47397, '2021-12-29', 7671, 45148, 3246, NULL, '2.0000', '15.5000', '15.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 (47398, '2021-12-29', 9021, 45149, 3246, NULL, '3.0000', '7.0000', '7.0000', '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 (47399, '2021-12-29', 7753, 45150, 3246, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47400, '2021-12-29', 8614, 45151, 3246, NULL, '1.0000', '20.0000', '20.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 (47401, '2021-12-29', 1340, 45152, 3246, NULL, '1.0000', '2.7422', '2.7422', '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 (47402, '2021-12-29', 7781, 45153, 3246, NULL, '3.0000', '4.2500', '4.2500', '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 (47403, '2021-12-29', 7674, 45154, 3246, 33721, '1.0000', '-115.5436', '-115.5436', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47404, '2021-12-29', 7715, 45155, 3246, 44954, '1.0000', '11.9400', '11.9400', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47405, '2021-12-29', 7560, 45156, 3246, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (47406, '2021-12-29', 7657, 45157, 3246, NULL, '1.0000', '5.4700', '5.4700', '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 (47407, '2021-12-29', 7711, 45158, 3246, NULL, '1.0000', '-78.4806', '-78.4806', '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 (47408, '2021-12-29', 9272, 45159, 3246, NULL, '1.0000', '3.1000', '3.1000', '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 (47409, '2021-12-29', 8596, 45160, 3246, NULL, '1.0000', '17.0000', '17.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 (47410, '2021-12-29', 3062, 45161, 3246, 43543, '1.0000', '6.0700', '6.0700', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47411, '2021-12-29', 8963, 45162, 3246, 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 (47412, '2021-12-29', 7781, 45163, 3246, NULL, '6.0000', '4.2500', '4.2500', '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 (47413, '2021-12-29', 7803, 45164, 3246, NULL, '1.0000', '1.8200', '1.8200', '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 (47414, '2021-12-29', 7848, 45165, 3246, NULL, '1.0000', '1.3500', '1.3500', '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 (47415, '2021-12-29', 7715, 45166, 3246, 44954, '1.0000', '11.9400', '11.9400', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47416, '2021-12-29', 7819, 45167, 3246, NULL, '1.0000', '10.1667', '10.1667', '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 (47417, '2021-12-29', 7913, 45168, 3246, NULL, '1.0000', '2.5500', '2.5500', '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 (47418, '2021-12-29', 9652, 45169, 3246, 43134, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47419, '2021-12-29', 7719, 45170, 3246, NULL, '1.0000', '6.3333', '6.3333', '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 (47420, '2021-12-29', 2315, 45171, 3246, NULL, '2.0000', '0.4740', '0.4740', '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 (47421, '2021-12-29', 9576, 45172, 3246, 43533, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47422, '2021-12-29', 7411, 45173, 3246, NULL, '1.0000', '1.3460', '1.3460', '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 (47423, '2021-12-29', 7903, 45174, 3246, 44869, '1.0000', '15.2000', '15.2000', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47424, '2021-12-29', 8178, 45175, 3246, NULL, '1.0000', '4.5000', '4.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 (47425, '2021-12-29', 7411, 45176, 3246, NULL, '1.0000', '1.3460', '1.3460', '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 (47426, '2021-12-29', 2315, 45177, 3246, NULL, '2.0000', '0.4740', '0.4740', '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 (47427, '2021-12-29', 7803, 45178, 3246, NULL, '1.0000', '1.8200', '1.8200', '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 (47428, '2021-12-29', 8325, 45179, 3246, 36672, '1.0000', '6.3350', '6.3350', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47429, '2021-12-29', 2289, 45180, 3246, NULL, '4.0000', '0.2069', '0.2069', '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 (47430, '2021-12-29', 8196, 45181, 3246, NULL, '1.0000', '53.3100', '53.3100', '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 (47431, '2021-12-29', 7524, 45182, 3246, NULL, '1.0000', '103.0922', '103.0922', '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 (47432, '2021-12-29', 7420, 45183, 3246, 30036, '1.0000', '40.9116', '40.9116', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47433, '2021-12-29', 7411, 45184, 3247, NULL, '1.0000', '1.3460', '1.3460', '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 (47434, '2021-12-30', 9373, 45185, 3248, NULL, '1.0000', '46.7300', '46.7300', '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 (47435, '2021-12-30', 2058, 45186, 3248, 7512, '-4.0000', '10.0000', '10.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 (47436, '2021-12-30', 2058, 45186, 3248, NULL, '5.0000', '10.0000', '10.0000', '40.0000', '40.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 (47437, '2021-12-30', 8166, 45187, 3249, NULL, '1.0000', '4.6000', '4.6000', '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 (47438, '2021-12-30', 7674, 45188, 3249, NULL, '1.0000', '1.3000', '1.3000', '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 (47439, '2021-12-30', 8677, 45189, 3249, NULL, '3.0000', '89.9250', '89.9250', '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 (47440, '2021-12-30', 1811, 45190, 3249, 42078, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '7.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47441, '2021-12-30', 7674, 45191, 3249, NULL, '1.0000', '1.3000', '1.3000', '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 (47442, '2021-12-30', 7857, 45192, 3249, 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 (47443, '2021-12-30', 2491, 45193, 3249, 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 (47444, '2021-12-30', 9578, 45194, 3249, 42661, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47445, '2021-12-30', 1903, 45195, 3249, 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 (47446, '2021-12-30', 2712, 45196, 3249, 44438, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47447, '2021-12-30', 2411, 45197, 3249, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47448, '2021-12-30', 2003, 45198, 3249, 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 (47449, '2021-12-30', 1912, 45199, 3249, 41409, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47450, '2021-12-30', 1518, 45200, 3249, 29651, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47451, '2021-12-30', 7848, 45201, 3249, 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 (47452, '2021-12-30', 8065, 45202, 3249, NULL, '1.0000', '32.0000', '32.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 (47453, '2021-12-30', 8043, 45203, 3249, NULL, '10.0000', '27.9800', '27.9800', '0.6000', '0.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 (47454, '2021-12-30', 2315, 45204, 3249, NULL, '2.0000', '0.8556', '0.8556', '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 (47455, '2021-12-30', 2293, 45205, 3249, NULL, '3.0000', '2.7733', '2.7733', '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 (47456, '2021-12-30', 1531, 45206, 3249, 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 (47457, '2021-12-30', 7391, 45207, 3249, NULL, '1.0000', '15.6000', '15.6000', '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 (47458, '2021-12-30', 1863, 45208, 3249, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47459, '2021-12-30', 1532, 45209, 3249, NULL, '1.0000', '7.4815', '7.4815', '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 (47460, '2021-12-30', 8064, 45210, 3249, NULL, '1.0000', '4.9000', '4.9000', '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 (47461, '2021-12-30', 2749, 45211, 3249, NULL, '1.0000', '20.5000', '20.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 (47462, '2021-12-30', 1817, 45212, 3249, 39782, '1.0000', '10.4600', '10.4600', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47463, '2021-12-30', 2285, 45213, 3249, NULL, '1.0000', '36.1500', '36.1500', '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 (47464, '2021-12-30', 2491, 45214, 3249, 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 (47465, '2021-12-30', 7848, 45215, 3249, 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 (47466, '2021-12-30', 9704, 45216, 3249, 44444, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47467, '2021-12-30', 1637, 45217, 3249, 42839, '1.0000', '-41.1667', '-41.1667', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47468, '2021-12-30', 1863, 45218, 3249, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47469, '2021-12-30', 9634, 45219, 3249, 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 (47470, '2021-12-30', 7411, 45220, 3249, NULL, '2.0000', '1.3500', '1.3500', '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 (47471, '2021-12-30', 7753, 45221, 3249, NULL, '1.0000', '3.1400', '3.1400', '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 (47472, '2021-12-30', 2712, 45222, 3249, 44438, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47473, '2021-12-30', 2020, 45223, 3249, NULL, '1.0000', '9.2832', '9.2832', '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 (47474, '2021-12-30', 7514, 45224, 3249, NULL, '2.0000', '2.2500', '2.2500', '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 (47475, '2021-12-30', 1863, 45225, 3249, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47476, '2021-12-30', 2271, 45226, 3249, NULL, '1.0000', '12.0000', '12.0000', '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 (47477, '2021-12-30', 8065, 45227, 3249, NULL, '1.0000', '32.0000', '32.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 (47478, '2021-12-30', 1863, 45228, 3249, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47479, '2021-12-30', 1935, 45229, 3249, 39910, '2.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47480, '2021-12-30', 1863, 45230, 3249, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47481, '2021-12-30', 8638, 45231, 3249, NULL, '2.0000', '0.5100', '0.5100', '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 (47482, '2021-12-30', 1695, 45232, 3249, NULL, '1.0000', '22.6608', '22.6608', '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 (47483, '2021-12-30', 2916, 45233, 3249, NULL, '1.0000', '14.8227', '14.8227', '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 (47484, '2021-12-30', 1771, 45234, 3249, NULL, '1.0000', '3.3900', '3.3900', '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 (47485, '2021-12-30', 7674, 45235, 3249, NULL, '1.0000', '1.3000', '1.3000', '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 (47486, '2021-12-30', 1912, 45236, 3249, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47487, '2021-12-30', 2604, 45237, 3249, 34974, '2.0000', '90.0000', '90.0000', '110.0000', '110.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47488, '2021-12-30', 1863, 45238, 3249, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47489, '2021-12-30', 1571, 45239, 3249, 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 (47490, '2021-12-30', 2237, 45240, 3249, NULL, '1.0000', '-329.8285', '-329.8285', '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 (47491, '2021-12-30', 8566, 45241, 3250, 33072, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '10.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47492, '2021-12-30', 1504, 45242, 3250, NULL, '10.0000', '1.5000', '1.5000', '2.2000', '2.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 (47493, '2021-12-30', 2519, 45243, 3250, NULL, '1.0000', '11.0000', '11.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 (47494, '2021-12-30', 2336, 45244, 3250, 3839, '-2.0000', '7.0000', '7.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 (47495, '2021-12-30', 2336, 45244, 3250, NULL, '3.0000', '7.0000', '7.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 (47496, '2021-12-30', 9693, 45245, 3250, NULL, '1.0000', '37.0000', '37.0000', '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 (47497, '2021-12-30', 2240, 45246, 3250, 13712, '-3.0000', '36.9100', '36.9100', '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 (47498, '2021-12-30', 2240, 45246, 3250, NULL, '4.0000', '36.9100', '36.9100', '44.0000', '44.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 (47499, '2021-12-30', 1349, 45247, 3250, NULL, '1.0000', '20.8300', '20.8300', '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 (47500, '2021-12-30', 1961, 45248, 3250, 4501, '-2.0000', '20.4530', '20.4530', '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 (47501, '2021-12-30', 1961, 45248, 3250, NULL, '3.0000', '20.4530', '20.4530', '22.0000', '22.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 (47502, '2021-12-30', 2231, 45249, 3250, 1706, '-2.0000', '33.0000', '33.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 (47503, '2021-12-30', 2231, 45249, 3250, NULL, '3.0000', '33.0000', '33.0000', '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 (47504, '2021-12-30', 2642, 45250, 3250, 10573, '-5.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 (47505, '2021-12-30', 2642, 45250, 3250, NULL, '6.0000', '9.2000', '9.2000', '12.0000', '12.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 (47506, '2021-12-30', 2642, 45251, 3250, 10573, '-5.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 (47507, '2021-12-30', 2642, 45251, 3250, NULL, '7.0000', '9.2000', '9.2000', '12.0000', '12.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 (47508, '2021-12-30', 1460, 45252, 3250, 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 (47509, '2021-12-30', 2858, 45253, 3250, 17772, '-30.0000', '1.0000', '1.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 (47510, '2021-12-30', 2858, 45253, 3250, NULL, '31.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (47511, '2021-12-30', 1585, 45254, 3250, 7602, '-6.0000', '13.0000', '13.0000', '12.1400', '12.1400', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47512, '2021-12-30', 1585, 45254, 3250, NULL, '7.0000', '13.0000', '13.0000', '12.1400', '12.1400', '-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 (47513, '2021-12-30', 3017, 45255, 3250, NULL, '1.0000', '3.9000', '3.9000', '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 (47514, '2021-12-30', 7744, 45256, 3250, 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 (47515, '2021-12-30', 8065, 45257, 3250, NULL, '1.0000', '32.0000', '32.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 (47516, '2021-12-30', 2302, 45258, 3250, 2963, '-26.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 (47517, '2021-12-30', 2302, 45258, 3250, NULL, '27.0000', '5.2000', '5.2000', '7.0000', '7.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 (47518, '2021-12-30', 2381, 45259, 3250, 11263, '-1.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 (47519, '2021-12-30', 2381, 45259, 3250, NULL, '2.0000', '12.1900', '12.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 (47520, '2021-12-30', 9577, 45260, 3250, NULL, '1.0000', '0.3200', '0.3200', '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 (47521, '2021-12-30', 1410, 45261, 3250, 22317, '1.0000', '2.2000', '2.2000', '3.5000', '3.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 (47522, '2021-12-30', 1658, 45262, 3250, 3229, '-4.0000', '27.9300', '27.9300', '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 (47523, '2021-12-30', 1658, 45262, 3250, NULL, '5.0000', '27.9300', '27.9300', '35.5000', '35.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 (47524, '2021-12-30', 1538, 45263, 3250, NULL, '1.0000', '31.5200', '31.5200', '41.5000', '41.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47525, '2021-12-30', 2588, 45264, 3250, 8276, '-2.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 (47526, '2021-12-30', 2588, 45264, 3250, 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 (47527, '2021-12-30', 1396, 45265, 3250, 22315, '1.0000', '2.7000', '2.7000', '3.5000', '3.5000', '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 (47528, '2021-12-30', 1396, 45265, 3250, 22315, '1.0000', '2.7000', '2.7000', '3.5000', '3.5000', '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 (47529, '2021-12-30', 1396, 45265, 3250, 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 (47530, '2021-12-30', 1863, 45266, 3251, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47531, '2021-12-30', 2989, 45267, 3251, 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 (47532, '2021-12-30', 9603, 45268, 3251, 44146, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47533, '2021-12-30', 2379, 45269, 3251, NULL, '1.0000', '1.8000', '1.8000', '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 (47534, '2021-12-30', 7880, 45270, 3251, NULL, '1.0000', '1.0000', '1.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 (47535, '2021-12-30', 2169, 45271, 3251, NULL, '1.0000', '1.1500', '1.1500', '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 (47536, '2021-12-30', 1818, 45272, 3251, NULL, '1.0000', '18.8200', '18.8200', '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 (47537, '2021-12-30', 2293, 45273, 3251, NULL, '3.0000', '2.7733', '2.7733', '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 (47538, '2021-12-30', 2093, 45274, 3251, NULL, '1.0000', '2.5500', '2.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 (47539, '2021-12-30', 1577, 45275, 3251, NULL, '1.0000', '2.3271', '2.3271', '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 (47540, '2021-12-30', 1863, 45276, 3251, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47541, '2021-12-30', 1386, 45277, 3251, 41413, '2.0000', '2.5285', '2.5285', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47542, '2021-12-30', 7719, 45278, 3251, NULL, '1.0000', '5.5000', '5.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 (47543, '2021-12-30', 8638, 45279, 3251, NULL, '2.0000', '0.5100', '0.5100', '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 (47544, '2021-12-30', 1386, 45280, 3251, 41413, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47545, '2021-12-30', 7608, 45281, 3251, 39812, '1.0000', '6.9800', '6.9800', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47546, '2021-12-30', 1499, 45282, 3251, 41408, '1.0000', '0.6447', '0.6447', '0.7000', '0.7000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47547, '2021-12-30', 1433, 45283, 3251, 19829, '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 (47548, '2021-12-30', 8254, 45284, 3251, NULL, '1.0000', '27.2800', '27.2800', '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 (47549, '2021-12-30', 2088, 45285, 3251, 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 (47550, '2021-12-30', 1523, 45286, 3251, NULL, '1.0000', '1.0061', '1.0061', '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 (47551, '2021-12-30', 1590, 45287, 3251, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47552, '2021-12-30', 2451, 45288, 3251, NULL, '1.0000', '8.8000', '8.8000', '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 (47553, '2021-12-30', 8166, 45289, 3251, NULL, '1.0000', '4.6000', '4.6000', '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 (47554, '2021-12-30', 1854, 45290, 3251, 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 (47555, '2021-12-30', 1863, 45291, 3251, 42816, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47556, '2021-12-30', 1935, 45292, 3251, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47557, '2021-12-30', 2083, 45293, 3251, 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 (47558, '2021-12-30', 1680, 45294, 3251, NULL, '1.0000', '5.0300', '5.0300', '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 (47559, '2021-12-30', 7674, 45295, 3251, NULL, '1.0000', '1.3000', '1.3000', '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 (47560, '2021-12-30', 1518, 45296, 3251, 29651, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47561, '2021-12-30', 2548, 45297, 3251, 43273, '1.0000', '7.0500', '7.0500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47562, '2021-12-30', 1874, 45298, 3252, 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 (47563, '2021-12-30', 2306, 45299, 3253, 39895, '1.0000', '55.0000', '55.0000', '72.5000', '72.5000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47564, '2021-12-30', 2289, 45300, 3254, NULL, '2.0000', '0.2069', '0.2069', '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 (47565, '2021-12-30', 1841, 45301, 3254, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47566, '2021-12-30', 7641, 45302, 3254, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47567, '2021-12-30', 8984, 45303, 3254, NULL, '2.0000', '0.6700', '0.6700', '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 (47568, '2021-12-30', 9449, 45304, 3254, NULL, '1.0000', '8.5000', '8.5000', '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 (47569, '2021-12-30', 9193, 45305, 3254, NULL, '1.0000', '3.2304', '3.2304', '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 (47570, '2021-12-30', 7415, 45306, 3254, NULL, '1.0000', '5.4200', '5.4200', '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 (47571, '2021-12-30', 7518, 45307, 3254, NULL, '1.0000', '-112.5817', '-112.5817', '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 (47572, '2021-12-30', 7954, 45308, 3254, NULL, '4.0000', '24.4161', '24.4161', '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 (47573, '2021-12-30', 7784, 45309, 3254, NULL, '4.0000', '4.2500', '4.2500', '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 (47574, '2021-12-30', 7782, 45310, 3254, NULL, '1.0000', '5.0000', '5.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 (47575, '2021-12-30', 8063, 45311, 3254, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47576, '2021-12-30', 8515, 45312, 3254, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (47577, '2021-12-30', 2315, 45313, 3254, NULL, '2.0000', '0.4740', '0.4740', '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 (47578, '2021-12-30', 7674, 45314, 3254, NULL, '2.0000', '-115.5436', '-115.5436', '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 (47579, '2021-12-30', 8965, 45315, 3254, NULL, '1.0000', '52.9900', '52.9900', '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 (47580, '2021-12-30', 7428, 45316, 3254, NULL, '5.0000', '744.9056', '744.9056', '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 (47581, '2021-12-30', 7411, 45317, 3254, NULL, '1.0000', '1.3460', '1.3460', '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 (47582, '2021-12-30', 8454, 45318, 3254, NULL, '1.0000', '5.1700', '5.1700', '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 (47583, '2021-12-30', 8178, 45319, 3254, NULL, '1.0000', '4.5000', '4.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 (47584, '2021-12-30', 7671, 45320, 3254, NULL, '1.0000', '15.5000', '15.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 (47585, '2021-12-30', 7674, 45321, 3254, NULL, '1.0000', '-115.5436', '-115.5436', '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 (47586, '2021-12-30', 8745, 45322, 3254, 43944, '1.0000', '7.0560', '7.0560', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47587, '2021-12-30', 7770, 45323, 3254, NULL, '1.0000', '33.0000', '33.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 (47588, '2021-12-30', 7675, 45324, 3254, NULL, '1.0000', '11.4300', '11.4300', '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 (47589, '2021-12-30', 9684, 45325, 3254, 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 (47590, '2021-12-30', 8200, 45326, 3254, NULL, '1.0000', '629.5726', '629.5726', '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 (47591, '2021-12-30', 2713, 45327, 3254, 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 (47592, '2021-12-30', 7641, 45328, 3254, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47593, '2021-12-30', 7412, 45329, 3254, NULL, '1.0000', '1.5200', '1.5200', '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 (47594, '2021-12-30', 8131, 45330, 3254, 43154, '1.0000', '33.6700', '33.6700', '44.5000', '44.5000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47595, '2021-12-30', 8395, 45331, 3254, NULL, '1.0000', '0.9700', '0.9700', '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 (47596, '2021-12-30', 9445, 45332, 3254, 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 (47597, '2021-12-30', 3014, 45333, 3254, NULL, '1.0000', '55.2200', '55.2200', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47598, '2021-12-30', 1845, 45334, 3254, NULL, '1.0000', '18.8750', '18.8750', '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 (47599, '2021-12-30', 8548, 45335, 3254, NULL, '1.0000', '12.0000', '12.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 (47600, '2021-12-30', 8626, 45336, 3254, NULL, '1.0000', '10.0000', '10.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 (47601, '2021-12-30', 7612, 45337, 3254, NULL, '1.0000', '1.1770', '1.1770', '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 (47602, '2021-12-30', 9445, 45338, 3254, 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 (47603, '2021-12-30', 2315, 45339, 3254, NULL, '2.0000', '0.4740', '0.4740', '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 (47604, '2021-12-30', 8596, 45340, 3254, NULL, '1.0000', '17.0000', '17.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 (47605, '2021-12-30', 7753, 45341, 3254, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47606, '2021-12-30', 8244, 45342, 3254, NULL, '3.0000', '37.4100', '37.4100', '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 (47607, '2021-12-30', 7709, 45343, 3254, NULL, '2.0000', '35.8000', '35.8000', '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 (47608, '2021-12-30', 2104, 45344, 3254, NULL, '2.0000', '0.2000', '0.2000', '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 (47609, '2021-12-30', 7544, 45345, 3254, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47610, '2021-12-30', 1841, 45346, 3254, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47611, '2021-12-30', 1875, 45347, 3254, NULL, '2.0000', '90.0000', '90.0000', '3.6000', '3.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 (47612, '2021-12-30', 7715, 45348, 3254, 44954, '1.0000', '11.9400', '11.9400', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47613, '2021-12-30', 8393, 45349, 3254, 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 (47614, '2021-12-30', 7514, 45350, 3254, NULL, '1.0000', '17.4792', '17.4792', '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 (47615, '2021-12-30', 1807, 45351, 3254, 33541, '6.0000', '-34.8462', '-34.8462', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47616, '2021-12-30', 1807, 45351, 3254, NULL, '4.0000', '-34.8462', '-34.8462', '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 (47617, '2021-12-30', 7317, 45352, 3254, NULL, '1.0000', '29.3700', '29.3700', '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 (47618, '2021-12-30', 9456, 45353, 3254, 33517, '3.0000', '3.3200', '3.3200', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47619, '2021-12-30', 8063, 45354, 3254, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47620, '2021-12-30', 7348, 45355, 3254, 29990, '1.0000', '25.3000', '25.3000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47621, '2021-12-30', 7925, 45356, 3254, NULL, '1.0000', '6.8000', '6.8000', '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 (47622, '2021-12-30', 8766, 45357, 3254, NULL, '1.0000', '5.8000', '5.8000', '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 (47623, '2021-12-30', 8247, 45358, 3254, NULL, '1.0000', '54.0000', '54.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 (47624, '2021-12-30', 1837, 45359, 3254, NULL, '3.0000', '0.6041', '0.6041', '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 (47625, '2021-12-30', 7675, 45360, 3254, NULL, '1.0000', '11.4300', '11.4300', '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 (47626, '2021-12-30', 8097, 45361, 3254, 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 (47627, '2021-12-30', 7848, 45362, 3254, NULL, '1.0000', '1.3500', '1.3500', '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 (47628, '2021-12-30', 7714, 45363, 3254, NULL, '4.0000', '0.4200', '0.4200', '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 (47629, '2021-12-30', 7848, 45364, 3254, NULL, '1.0000', '1.3500', '1.3500', '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 (47630, '2021-12-30', 7674, 45365, 3254, NULL, '1.0000', '-115.5436', '-115.5436', '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 (47631, '2021-12-30', 1730, 45366, 3254, NULL, '1.0000', '23.9100', '23.9100', '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 (47632, '2021-12-30', 9252, 45367, 3254, NULL, '2.0000', '1.9700', '1.9700', '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 (47633, '2021-12-30', 9243, 45368, 3254, 44942, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47634, '2021-12-30', 9572, 45369, 3254, 44467, '3.0000', '14.0000', '14.0000', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47635, '2021-12-30', 7317, 45370, 3254, NULL, '1.0000', '29.3700', '29.3700', '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 (47636, '2021-12-30', 8489, 45371, 3254, NULL, '1.0000', '30.3000', '30.3000', '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 (47637, '2021-12-30', 7391, 45372, 3254, NULL, '1.0000', '-26.2683', '-26.2683', '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 (47638, '2021-12-30', 2315, 45373, 3254, NULL, '2.0000', '0.4740', '0.4740', '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 (47639, '2021-12-30', 7744, 45374, 3254, NULL, '2.0000', '2.7000', '2.7000', '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 (47640, '2021-12-30', 9290, 45375, 3254, NULL, '1.0000', '15.2700', '15.2700', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47641, '2021-12-30', 9603, 45376, 3255, 44146, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47642, '2021-12-30', 1420, 45377, 3256, 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 (47643, '2021-12-30', 7666, 45378, 3256, NULL, '1.0000', '0.4000', '0.4000', '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 (47644, '2021-12-30', 7514, 45379, 3256, NULL, '1.0000', '17.4792', '17.4792', '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 (47645, '2021-12-30', 7715, 45380, 3256, NULL, '2.0000', '11.9400', '11.9400', '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 (47646, '2021-12-30', 7848, 45381, 3256, NULL, '1.0000', '1.3500', '1.3500', '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 (47647, '2021-12-30', 7518, 45382, 3256, NULL, '1.0000', '-112.5817', '-112.5817', '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 (47648, '2021-12-30', 7852, 45383, 3256, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47649, '2021-12-30', 9252, 45384, 3256, NULL, '2.0000', '1.9700', '1.9700', '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 (47650, '2021-12-30', 7518, 45385, 3256, NULL, '3.0000', '-112.5817', '-112.5817', '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 (47651, '2021-12-30', 9243, 45386, 3256, 44942, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47652, '2021-12-30', 7711, 45387, 3256, NULL, '1.0000', '-78.4806', '-78.4806', '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 (47653, '2021-12-30', 7782, 45388, 3256, NULL, '4.0000', '5.0000', '5.0000', '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 (47654, '2021-12-30', 8758, 45389, 3256, 32145, '1.0000', '5.8000', '5.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47655, '2021-12-30', 7954, 45390, 3256, NULL, '4.0000', '24.4161', '24.4161', '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 (47656, '2021-12-30', 7641, 45391, 3256, NULL, '2.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47657, '2021-12-30', 9272, 45392, 3256, NULL, '1.0000', '3.1000', '3.1000', '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 (47658, '2021-12-30', 8276, 45393, 3256, NULL, '1.0000', '13.4126', '13.4126', '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 (47659, '2021-12-30', 1914, 45394, 3256, NULL, '1.0000', '5.2300', '5.2300', '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 (47660, '2021-12-30', 7411, 45395, 3256, NULL, '2.0000', '1.3460', '1.3460', '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 (47661, '2021-12-30', 9177, 45396, 3256, NULL, '2.0000', '0.8000', '0.8000', '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 (47662, '2021-12-30', 7674, 45397, 3256, NULL, '1.0000', '-115.5436', '-115.5436', '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 (47663, '2021-12-30', 7527, 45398, 3256, NULL, '1.0000', '0.8900', '0.8900', '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 (47664, '2021-12-30', 2506, 45399, 3257, 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 (47665, '2021-12-30', 2315, 45400, 3257, NULL, '1.0000', '0.4740', '0.4740', '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 (47666, '2021-12-30', 2411, 45401, 3258, 42968, '1.0000', '1.2564', '1.2564', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47667, '2021-12-30', 2126, 45402, 3258, 2646, '1.0000', '30.0000', '30.0000', '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 (47668, '2021-12-30', 2858, 45403, 3258, 17780, '1.0000', '1.0000', '1.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 (47669, '2021-12-30', 1761, 45404, 3258, 44765, '1.0000', '1.8333', '1.8333', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47670, '2021-12-30', 1602, 45405, 3258, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '37.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47671, '2021-12-30', 9275, 45406, 3258, NULL, '2.0000', '6.3000', '6.3000', '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 (47672, '2021-12-30', 8065, 45407, 3258, NULL, '1.0000', '4.9800', '4.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 (47673, '2021-12-30', 1688, 45408, 3258, 44567, '1.0000', '17.6606', '17.6606', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47674, '2021-12-30', 2237, 45409, 3258, 40644, '2.0000', '1.3451', '1.3451', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47675, '2021-12-30', 2004, 45410, 3258, NULL, '2.0000', '1.5000', '1.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 (47676, '2021-12-30', 1935, 45411, 3258, 44781, '3.0000', '3.0998', '3.0998', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47677, '2021-12-30', 1518, 45412, 3258, 44582, '1.0000', '40.6829', '40.6829', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47678, '2021-12-30', 1812, 45413, 3258, 44713, '1.0000', '7.9641', '7.9641', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47679, '2021-12-30', 1529, 45414, 3258, 40154, '1.0000', '136969208.6110', '136969208.6110', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47680, '2021-12-30', 1518, 45415, 3258, 44582, '1.0000', '40.6829', '40.6829', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47681, '2021-12-30', 7464, 45416, 3258, NULL, '1.0000', '22.2400', '22.2400', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47682, '2021-12-30', 1928, 45417, 3258, 44613, '1.0000', '55.6837', '55.6837', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47683, '2021-12-30', 2857, 45418, 3258, 44541, '4.0000', '5.0000', '5.0000', '6.6000', '6.6000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47684, '2021-12-30', 2280, 45419, 3258, 44766, '10.0000', '2.9290', '2.9290', '5.0000', '5.0000', '40.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47685, '2021-12-30', 9577, 45420, 3258, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47686, '2021-12-30', 1738, 45421, 3258, 6795, '1.0000', '7.1000', '7.1000', '9.5000', '9.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 (47687, '2021-12-30', 2712, 45422, 3258, 42626, '3.0000', '0.2600', '0.2600', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47688, '2021-12-30', 1807, 45423, 3258, NULL, '2.0000', '2.3000', '2.3000', '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 (47689, '2021-12-30', 1435, 45424, 3258, 11878, '1.0000', '18.5000', '18.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 (47690, '2021-12-30', 7482, 45425, 3258, 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 (47691, '2021-12-30', 9273, 45426, 3258, NULL, '1.0000', '0.3500', '0.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 (47692, '2021-12-30', 9512, 45427, 3258, NULL, '1.0000', '1.3100', '1.3100', '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 (47693, '2021-12-30', 1687, 45428, 3258, 44599, '1.0000', '11.6845', '11.6845', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47694, '2021-12-30', 1543, 45429, 3258, 40203, '1.0000', '31.6707', '31.6707', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47695, '2021-12-30', 7380, 45430, 3258, NULL, '1.0000', '5.6200', '5.6200', '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 (47696, '2021-12-30', 1943, 45431, 3258, 44585, '1.0000', '4.6310', '4.6310', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47697, '2021-12-30', 2302, 45432, 3258, 40890, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47698, '2021-12-30', 2712, 45433, 3258, 42626, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47699, '2021-12-30', 9275, 45434, 3258, NULL, '1.0000', '6.3000', '6.3000', '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 (47700, '2021-12-30', 2810, 45435, 3258, 40612, '5.0000', '2.2000', '2.2000', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47701, '2021-12-30', 1839, 45436, 3258, 42981, '1.0000', '6.3984', '6.3984', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47702, '2021-12-30', 9577, 45437, 3258, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47703, '2021-12-30', 1590, 45438, 3258, 9437, '3.0000', '1.7100', '1.7100', '2.3000', '2.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 (47704, '2021-12-30', 1807, 45439, 3258, NULL, '1.0000', '2.3000', '2.3000', '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 (47705, '2021-12-30', 1604, 45440, 3258, 24329, '1.0000', '72.6682', '72.6682', '113.0000', '113.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 (47706, '2021-12-30', 2607, 45441, 3258, 42956, '3.0000', '1.4000', '1.4000', '1.7000', '1.7000', '18.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47707, '2021-12-30', 2660, 45442, 3258, 42944, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47708, '2021-12-30', 2221, 45443, 3258, 44730, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47709, '2021-12-30', 2576, 45444, 3258, NULL, '2.0000', '107.9300', '107.9300', '71.0000', '71.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 (47710, '2021-12-30', 1655, 45445, 3259, 44571, '1.0000', '37.2800', '37.2800', '49.5000', '49.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47711, '2021-12-30', 7321, 45446, 3259, NULL, '1.0000', '7.9500', '7.9500', '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 (47712, '2021-12-31', 8805, 45447, 3260, NULL, '1.0000', '3.9800', '3.9800', '300.0000', '300.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47713, '2021-12-31', 9089, 45448, 3261, 44032, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47714, '2021-12-31', 2580, 45449, 3261, 39182, '2.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47715, '2021-12-31', 9578, 45450, 3261, 44499, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47716, '2021-12-31', 2095, 45451, 3261, 6007, '1.0000', '1.5000', '1.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 (47717, '2021-12-31', 7741, 45452, 3261, NULL, '1.0000', '1.2000', '1.2000', '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 (47718, '2021-12-31', 2916, 45453, 3261, 44712, '1.0000', '13.3250', '13.3250', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47719, '2021-12-31', 2248, 45454, 3261, NULL, '1.0000', '2.4916', '2.4916', '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 (47720, '2021-12-31', 2916, 45455, 3261, 44712, '1.0000', '13.3250', '13.3250', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47721, '2021-12-31', 2602, 45456, 3261, 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 (47722, '2021-12-31', 9577, 45457, 3261, 38070, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '39.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47723, '2021-12-31', 2657, 45458, 3261, 11408, '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 (47724, '2021-12-31', 1329, 45459, 3261, 40295, '1.0000', '6.1200', '6.1200', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47725, '2021-12-31', 1618, 45460, 3261, 44785, '1.0000', '11.8800', '11.8800', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47726, '2021-12-31', 2437, 45461, 3261, 44491, '1.0000', '88.0000', '88.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47727, '2021-12-31', 2657, 45462, 3261, 11408, '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 (47728, '2021-12-31', 1519, 45463, 3261, 40645, '1.0000', '3.3717', '3.3717', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47729, '2021-12-31', 1602, 45464, 3261, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '36.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47730, '2021-12-31', 1592, 45465, 3261, 44558, '1.0000', '35.7449', '35.7449', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47731, '2021-12-31', 8872, 45466, 3261, NULL, '1.0000', '3.0000', '3.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 (47732, '2021-12-31', 2366, 45467, 3261, NULL, '2.0000', '3.7873', '3.7873', '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 (47733, '2021-12-31', 2169, 45468, 3261, 44716, '1.0000', '1.0993', '1.0993', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47734, '2021-12-31', 2135, 45469, 3261, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47735, '2021-12-31', 1812, 45470, 3261, 44713, '1.0000', '7.9641', '7.9641', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47736, '2021-12-31', 1502, 45471, 3261, 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 (47737, '2021-12-31', 2699, 45472, 3261, 42938, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47738, '2021-12-31', 1935, 45473, 3261, 44781, '1.0000', '3.0998', '3.0998', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47739, '2021-12-31', 9474, 45474, 3261, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47740, '2021-12-31', 2794, 45475, 3262, 19040, '1.0000', '17.8200', '17.8200', '60.0000', '60.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47741, '2021-12-31', 8933, 45476, 3263, NULL, '1.0000', '10.0000', '10.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 (47742, '2021-12-31', 1382, 45477, 3264, 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 (47743, '2021-12-31', 7848, 45478, 3264, 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 (47744, '2021-12-31', 1612, 45479, 3264, 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 (47745, '2021-12-31', 1910, 45480, 3264, 23140, '2.0000', '1.0200', '1.0200', '1.5000', '1.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 (47746, '2021-12-31', 7674, 45481, 3264, NULL, '2.0000', '1.3000', '1.3000', '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 (47747, '2021-12-31', 1771, 45482, 3264, NULL, '1.0000', '3.3900', '3.3900', '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 (47748, '2021-12-31', 7482, 45483, 3264, 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 (47749, '2021-12-31', 1863, 45484, 3264, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47750, '2021-12-31', 2287, 45485, 3264, 43279, '4.0000', '1.6790', '1.6790', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47751, '2021-12-31', 7412, 45486, 3264, NULL, '1.0000', '1.5200', '1.5200', '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 (47752, '2021-12-31', 2068, 45487, 3264, 45013, '1.0000', '8.9781', '8.9781', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47753, '2021-12-31', 7674, 45488, 3264, NULL, '1.0000', '1.3000', '1.3000', '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 (47754, '2021-12-31', 1306, 45489, 3264, 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 (47755, '2021-12-31', 2916, 45490, 3264, NULL, '1.0000', '14.8227', '14.8227', '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 (47756, '2021-12-31', 2283, 45491, 3264, 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 (47757, '2021-12-31', 2682, 45492, 3264, 24925, '1.0000', '19.3000', '19.3000', '25.5000', '25.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 (47758, '2021-12-31', 3058, 45493, 3264, 44426, '2.0000', '2.3000', '2.3000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 316);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47759, '2021-12-31', 1867, 45494, 3264, 44989, '1.0000', '3.6240', '3.6240', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47760, '2021-12-31', 7642, 45495, 3264, NULL, '1.0000', '2.6900', '2.6900', '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 (47761, '2021-12-31', 1665, 45496, 3264, 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 (47762, '2021-12-31', 1854, 45497, 3264, 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 (47763, '2021-12-31', 2237, 45498, 3264, NULL, '1.0000', '-329.8285', '-329.8285', '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 (47764, '2021-12-31', 1841, 45499, 3264, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47765, '2021-12-31', 7544, 45500, 3264, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47766, '2021-12-31', 8084, 45501, 3264, 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 (47767, '2021-12-31', 7342, 45502, 3264, NULL, '1.0000', '15.6000', '15.6000', '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 (47768, '2021-12-31', 7707, 45503, 3264, NULL, '1.0000', '7.0000', '7.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 (47769, '2021-12-31', 1837, 45504, 3264, 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 (47770, '2021-12-31', 7714, 45505, 3264, NULL, '2.0000', '5.0000', '5.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 (47771, '2021-12-31', 8360, 45506, 3264, NULL, '1.0000', '3.5200', '3.5200', '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 (47772, '2021-12-31', 1602, 45507, 3264, NULL, '1.0000', '6.8552', '6.8552', '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 (47773, '2021-12-31', 2916, 45508, 3264, NULL, '1.0000', '14.8227', '14.8227', '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 (47774, '2021-12-31', 1935, 45509, 3264, 39910, '5.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47775, '2021-12-31', 1307, 45510, 3264, NULL, '1.0000', '1.7846', '1.7846', '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 (47776, '2021-12-31', 1574, 45511, 3264, NULL, '1.0000', '1.7001', '1.7001', '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 (47777, '2021-12-31', 1340, 45512, 3264, 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 (47778, '2021-12-31', 2491, 45513, 3264, 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 (47779, '2021-12-31', 8969, 45514, 3264, 39814, '4.0000', '2.0000', '2.0000', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47780, '2021-12-31', 2366, 45515, 3264, NULL, '2.0000', '-17.8500', '-17.8500', '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 (47781, '2021-12-31', 8360, 45516, 3264, NULL, '1.0000', '3.5200', '3.5200', '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 (47782, '2021-12-31', 1307, 45517, 3264, NULL, '1.0000', '1.7846', '1.7846', '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 (47783, '2021-12-31', 1557, 45518, 3264, NULL, '1.0000', '7.6800', '7.6800', '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 (47784, '2021-12-31', 9105, 45519, 3264, NULL, '1.0000', '0.5800', '0.5800', '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 (47785, '2021-12-31', 2315, 45520, 3264, NULL, '2.0000', '0.8556', '0.8556', '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 (47786, '2021-12-31', 2280, 45521, 3264, NULL, '1.0000', '-177.9360', '-177.9360', '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 (47787, '2021-12-31', 7359, 45522, 3264, NULL, '1.0000', '20.0000', '20.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 (47788, '2021-12-31', 7360, 45523, 3264, NULL, '3.0000', '18.8900', '18.8900', '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 (47789, '2021-12-31', 9470, 45524, 3264, NULL, '1.0000', '9.7867', '9.7867', '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 (47790, '2021-12-31', 9373, 45525, 3265, NULL, '1.0000', '46.7300', '46.7300', '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 (47791, '2021-12-31', 2290, 45526, 3265, 44530, '1.0000', '7.5430', '7.5430', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47792, '2021-12-31', 1671, 45527, 3265, 44570, '10.0000', '50.2406', '50.2406', '6.4000', '6.4000', '10.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47793, '2021-12-31', 2281, 45528, 3265, 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 (47794, '2021-12-31', 1435, 45529, 3266, 10235, '1.0000', '18.5000', '18.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 (47795, '2021-12-31', 7706, 45530, 3266, NULL, '1.0000', '6.2500', '6.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 (47796, '2021-12-31', 8132, 45531, 3266, NULL, '1.0000', '4.7200', '4.7200', '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 (47797, '2021-12-31', 1828, 45532, 3266, 33003, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47798, '2021-12-31', 1731, 45533, 3266, 44779, '1.0000', '19.8600', '19.8600', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47799, '2021-12-31', 1550, 45534, 3266, 44770, '1.0000', '194.2562', '194.2562', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47800, '2021-12-31', 2825, 45535, 3266, NULL, '1.0000', '12.0000', '12.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 (47801, '2021-12-31', 8608, 45536, 3266, NULL, '2.0000', '0.9000', '0.9000', '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 (47802, '2021-12-31', 8765, 45537, 3266, 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 (47803, '2021-12-31', 2642, 45538, 3266, 35923, '1.0000', '7.4583', '7.4583', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47804, '2021-12-31', 2236, 45539, 3266, 42954, '1.0000', '5.6661', '5.6661', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47805, '2021-12-31', 9577, 45540, 3266, 38070, '6.0000', '0.3200', '0.3200', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47806, '2021-12-31', 1386, 45541, 3266, 41972, '1.0000', '608.2647', '608.2647', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47807, '2021-12-31', 8746, 45542, 3266, 42931, '1.0000', '3.0415', '3.0415', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47808, '2021-12-31', 2673, 45543, 3266, 11868, '1.0000', '11.0000', '11.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 (47809, '2021-12-31', 7954, 45544, 3266, 33014, '8.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47810, '2021-12-31', 2236, 45545, 3266, 42954, '1.0000', '5.6661', '5.6661', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47811, '2021-12-31', 1736, 45546, 3267, 38081, '2.0000', '32.3226', '32.3226', '42.0000', '42.0000', '7.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47812, '2021-12-31', 2549, 45547, 3267, 9534, '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 (47813, '2021-12-31', 1871, 45548, 3267, 44584, '10.0000', '12.3809', '12.3809', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47814, '2021-12-31', 9416, 45549, 3267, 44493, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47815, '2021-12-31', 1544, 45550, 3267, 40910, '1.0000', '32.4160', '32.4160', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47816, '2021-12-31', 1666, 45551, 3267, 44538, '1.0000', '81.1043', '81.1043', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47817, '2021-12-31', 2486, 45552, 3267, 21821, '1.0000', '4.0000', '4.0000', '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 (47818, '2021-12-31', 1912, 45553, 3268, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47819, '2021-12-31', 8608, 45554, 3268, NULL, '1.0000', '0.9000', '0.9000', '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 (47820, '2021-12-31', 2089, 45555, 3268, 24328, '1.0000', '7.0900', '7.0900', '9.0000', '9.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 (47821, '2021-12-31', 7514, 45556, 3268, NULL, '1.0000', '2.2500', '2.2500', '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 (47822, '2021-12-31', 1672, 45557, 3268, 40214, '14.0000', '44.9003', '44.9003', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47823, '2021-12-31', 2066, 45558, 3268, 5494, '3.0000', '0.5100', '0.5100', '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 (47824, '2021-12-31', 9295, 45559, 3269, NULL, '1.0000', '4.4000', '4.4000', '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 (47825, '2021-12-31', 7756, 45560, 3269, NULL, '1.0000', '21.7700', '21.7700', '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 (47826, '2021-12-31', 8466, 45561, 3269, NULL, '6.0000', '-24.7500', '-24.7500', '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 (47827, '2021-12-31', 7447, 45562, 3269, NULL, '12.0000', '19.1100', '19.1100', '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 (47828, '2021-12-31', 8063, 45563, 3269, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47829, '2021-12-31', 9639, 45564, 3269, 43540, '1.0000', '28.7900', '28.7900', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47830, '2021-12-31', 7848, 45565, 3269, NULL, '1.0000', '1.3500', '1.3500', '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 (47831, '2021-12-31', 8275, 45566, 3269, NULL, '1.0000', '29.8500', '29.8500', '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 (47832, '2021-12-31', 8039, 45567, 3269, NULL, '1.0000', '27.4067', '27.4067', '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 (47833, '2021-12-31', 8626, 45568, 3269, NULL, '1.0000', '10.0000', '10.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 (47834, '2021-12-31', 8097, 45569, 3269, 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 (47835, '2021-12-31', 8677, 45570, 3269, NULL, '2.0000', '1.2300', '1.2300', '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 (47836, '2021-12-31', 7825, 45571, 3269, NULL, '1.0000', '6.5000', '6.5000', '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 (47837, '2021-12-31', 7509, 45572, 3269, NULL, '1.0000', '6.1333', '6.1333', '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 (47838, '2021-12-31', 7820, 45573, 3269, NULL, '1.0000', '-46.6000', '-46.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47839, '2021-12-31', 7780, 45574, 3269, NULL, '1.0000', '2.6000', '2.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 (47840, '2021-12-31', 7335, 45575, 3269, NULL, '2.0000', '10.4000', '10.4000', '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 (47841, '2021-12-31', 7848, 45576, 3269, NULL, '1.0000', '1.3500', '1.3500', '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 (47842, '2021-12-31', 7753, 45577, 3269, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47843, '2021-12-31', 8127, 45578, 3269, NULL, '1.0000', '24.5300', '24.5300', '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 (47844, '2021-12-31', 7428, 45579, 3269, NULL, '4.0000', '744.9056', '744.9056', '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 (47845, '2021-12-31', 7825, 45580, 3269, NULL, '1.0000', '6.5000', '6.5000', '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 (47846, '2021-12-31', 8132, 45581, 3269, NULL, '1.0000', '4.7200', '4.7200', '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 (47847, '2021-12-31', 7674, 45582, 3269, NULL, '2.0000', '-115.5436', '-115.5436', '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 (47848, '2021-12-31', 8101, 45583, 3269, NULL, '4.0000', '21.7000', '21.7000', '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 (47849, '2021-12-31', 7675, 45584, 3269, NULL, '3.0000', '11.4300', '11.4300', '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 (47850, '2021-12-31', 7554, 45585, 3269, 44893, '10.0000', '-0.1804', '-0.1804', '2.2000', '2.2000', '33.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47851, '2021-12-31', 8467, 45586, 3269, NULL, '1.0000', '60.0000', '60.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47852, '2021-12-31', 8161, 45587, 3269, NULL, '2.0000', '17.5473', '17.5473', '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 (47853, '2021-12-31', 7819, 45588, 3269, NULL, '1.0000', '10.1667', '10.1667', '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 (47854, '2021-12-31', 7906, 45589, 3269, NULL, '1.0000', '7.8800', '7.8800', '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 (47855, '2021-12-31', 7675, 45590, 3269, NULL, '2.0000', '11.4300', '11.4300', '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 (47856, '2021-12-31', 8065, 45591, 3269, NULL, '1.0000', '32.0000', '32.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 (47857, '2021-12-31', 7557, 45592, 3269, 44363, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47858, '2021-12-31', 7557, 45592, 3269, NULL, '8.0000', '0.5000', '0.5000', '1.0000', '1.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 (47859, '2021-12-31', 8539, 45593, 3269, 31000, '3.0000', '4.4300', '4.4300', '0.8000', '0.8000', '14.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47860, '2021-12-31', 7527, 45594, 3269, NULL, '1.0000', '0.8900', '0.8900', '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 (47861, '2021-12-31', 7570, 45595, 3269, NULL, '1.0000', '10.0000', '10.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 (47862, '2021-12-31', 7317, 45596, 3269, NULL, '1.0000', '29.3700', '29.3700', '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 (47863, '2021-12-31', 1845, 45597, 3269, NULL, '1.0000', '18.8750', '18.8750', '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 (47864, '2021-12-31', 7482, 45598, 3269, NULL, '1.0000', '2.4981', '2.4981', '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 (47865, '2021-12-31', 7674, 45599, 3269, NULL, '1.0000', '-115.5436', '-115.5436', '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 (47866, '2021-12-31', 8360, 45600, 3269, 39538, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47867, '2021-12-31', 7671, 45601, 3269, NULL, '3.0000', '15.5000', '15.5000', '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 (47868, '2021-12-31', 7980, 45602, 3269, NULL, '3.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (47869, '2021-12-31', 7428, 45603, 3269, NULL, '3.0000', '744.9056', '744.9056', '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 (47870, '2021-12-31', 9001, 45604, 3269, NULL, '1.0000', '4.3300', '4.3300', '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 (47871, '2021-12-31', 7641, 45605, 3269, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47872, '2021-12-31', 7359, 45606, 3269, NULL, '1.0000', '10.6650', '10.6650', '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 (47873, '2021-12-31', 2012, 45607, 3269, 42792, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47874, '2021-12-31', 8566, 45608, 3269, 44480, '1.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47875, '2021-12-31', 7411, 45609, 3269, NULL, '1.0000', '1.3460', '1.3460', '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 (47876, '2021-12-31', 7959, 45610, 3269, NULL, '2.0000', '9.6000', '9.6000', '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 (47877, '2021-12-31', 2315, 45611, 3269, NULL, '1.0000', '0.4740', '0.4740', '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 (47878, '2021-12-31', 1841, 45612, 3269, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47879, '2021-12-31', 8851, 45613, 3269, NULL, '2.0000', '16.6600', '16.6600', '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 (47880, '2021-12-31', 2699, 45614, 3269, 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 (47881, '2021-12-31', 7339, 45615, 3269, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (47882, '2021-12-31', 7674, 45616, 3269, NULL, '1.0000', '-115.5436', '-115.5436', '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 (47883, '2021-12-31', 7514, 45617, 3269, NULL, '1.0000', '17.4792', '17.4792', '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 (47884, '2021-12-31', 8872, 45618, 3269, NULL, '1.0000', '3.0000', '3.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 (47885, '2021-12-31', 8063, 45619, 3269, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47886, '2021-12-31', 7671, 45620, 3269, NULL, '1.0000', '15.5000', '15.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 (47887, '2021-12-31', 7675, 45621, 3269, NULL, '1.0000', '11.4300', '11.4300', '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 (47888, '2021-12-31', 7547, 45622, 3269, NULL, '6.0000', '0.0000', '0.0000', '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 (47889, '2021-12-31', 7482, 45623, 3269, NULL, '1.0000', '2.4981', '2.4981', '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 (47890, '2021-12-31', 7674, 45624, 3269, NULL, '1.0000', '-115.5436', '-115.5436', '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 (47891, '2021-12-31', 8596, 45625, 3269, NULL, '1.0000', '17.0000', '17.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 (47892, '2021-12-31', 2104, 45626, 3269, NULL, '10.0000', '0.2000', '0.2000', '0.5000', '0.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 (47893, '2021-12-31', 9406, 45627, 3269, NULL, '2.0000', '10.5000', '10.5000', '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 (47894, '2021-12-31', 9272, 45628, 3269, NULL, '5.0000', '3.1000', '3.1000', '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 (47895, '2021-12-31', 7457, 45629, 3269, 43158, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47896, '2021-12-31', 8359, 45630, 3269, NULL, '1.0000', '87.2313', '87.2313', '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 (47897, '2021-12-31', 7952, 45631, 3269, NULL, '3.0000', '14.9000', '14.9000', '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 (47898, '2021-12-31', 8194, 45632, 3269, 44894, '1.0000', '-126.3400', '-126.3400', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47899, '2021-12-31', 8069, 45633, 3269, 39636, '1.0000', '29.0525', '29.0525', '38.5000', '38.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47900, '2021-12-31', 8497, 45634, 3269, NULL, '1.0000', '337.1200', '337.1200', '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 (47901, '2021-12-31', 8339, 45635, 3269, NULL, '1.0000', '26.0000', '26.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 (47902, '2021-12-31', 8918, 45636, 3269, 37847, '2.0000', '5.5250', '5.5250', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47903, '2021-12-31', 9556, 45637, 3269, NULL, '2.0000', '1.6375', '1.6375', '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 (47904, '2021-12-31', 2001, 45638, 3269, 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 (47905, '2021-12-31', 3022, 45639, 3269, NULL, '1.0000', '4.1200', '4.1200', '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 (47906, '2021-12-31', 7753, 45640, 3269, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47907, '2021-12-31', 7611, 45641, 3269, 44902, '1.0000', '3.4273', '3.4273', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47908, '2021-12-31', 7821, 45642, 3269, NULL, '1.0000', '7.0000', '7.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 (47909, '2021-12-31', 7884, 45643, 3270, NULL, '1.0000', '4.2000', '4.2000', '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 (47910, '2021-12-31', 7419, 45644, 3270, 39759, '1.0000', '24.8900', '24.8900', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47911, '2021-12-31', 7583, 45645, 3270, NULL, '1.0000', '4.0000', '4.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 (47912, '2021-12-31', 7886, 45646, 3270, NULL, '1.0000', '14.5000', '14.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 (47913, '2021-12-31', 1621, 45647, 3270, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '44.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47914, '2021-12-31', 8729, 45648, 3270, NULL, '1.0000', '22.0000', '22.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 (47915, '2021-12-31', 1386, 45649, 3270, 37815, '2.0000', '2.5285', '2.5285', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47916, '2021-12-31', 7411, 45650, 3270, NULL, '1.0000', '1.3474', '1.3474', '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 (47917, '2021-12-31', 2242, 45651, 3270, NULL, '3.0000', '0.5518', '0.5518', '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 (47918, '2021-12-31', 7822, 45652, 3270, 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 (47919, '2021-12-31', 7514, 45653, 3270, NULL, '1.0000', '2.2500', '2.2500', '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 (47920, '2021-12-31', 2379, 45654, 3270, NULL, '1.0000', '1.8000', '1.8000', '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 (47921, '2021-12-31', 7411, 45655, 3270, NULL, '1.0000', '1.3474', '1.3474', '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 (47922, '2021-12-31', 1935, 45656, 3270, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47923, '2021-12-31', 8208, 45657, 3270, NULL, '2.0000', '33.0000', '33.0000', '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 (47924, '2021-12-31', 2315, 45658, 3270, NULL, '2.0000', '0.8556', '0.8556', '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 (47925, '2021-12-31', 9401, 45659, 3270, 39792, '1.0000', '2.7665', '2.7665', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47926, '2021-12-31', 1644, 45660, 3270, 44984, '1.0000', '33.9450', '33.9450', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47927, '2021-12-31', 1651, 45661, 3270, NULL, '1.0000', '5.0422', '5.0422', '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 (47928, '2021-12-31', 2491, 45662, 3270, 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 (47929, '2021-12-31', 1651, 45663, 3270, NULL, '1.0000', '5.0422', '5.0422', '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 (47930, '2021-12-31', 9399, 45664, 3270, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47931, '2021-12-31', 1501, 45665, 3270, NULL, '1.0000', '2.2100', '2.2100', '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 (47932, '2021-12-31', 1521, 45666, 3270, 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 (47933, '2021-12-31', 1446, 45667, 3270, NULL, '1.0000', '4.1000', '4.1000', '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 (47934, '2021-12-31', 1837, 45668, 3270, 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 (47935, '2021-12-31', 2169, 45669, 3270, NULL, '1.0000', '1.1500', '1.1500', '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 (47936, '2021-12-31', 7762, 45670, 3270, NULL, '1.0000', '5.1000', '5.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 (47937, '2021-12-31', 1337, 45671, 3270, NULL, '1.0000', '2.0000', '2.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 (47938, '2021-12-31', 2298, 45672, 3270, 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 (47939, '2021-12-31', 1687, 45673, 3270, NULL, '1.0000', '12.0722', '12.0722', '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 (47940, '2021-12-31', 1543, 45674, 3270, NULL, '1.0000', '41.9600', '41.9600', '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 (47941, '2021-12-31', 2384, 45675, 3270, NULL, '7.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (47942, '2021-12-31', 1854, 45676, 3270, 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 (47943, '2021-12-31', 2712, 45677, 3270, 44438, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47944, '2021-12-31', 1628, 45678, 3270, NULL, '1.0000', '12.0400', '12.0400', '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 (47945, '2021-12-31', 1602, 45679, 3270, NULL, '1.0000', '6.8552', '6.8552', '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 (47946, '2021-12-31', 1880, 45680, 3270, 42565, '1.0000', '4.6392', '4.6392', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47947, '2021-12-31', 1646, 45681, 3270, 44979, '1.0000', '4.6576', '4.6576', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47948, '2021-12-31', 1812, 45682, 3270, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47949, '2021-12-31', 1666, 45683, 3270, 42825, '1.0000', '2.7429', '2.7429', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47950, '2021-12-31', 2660, 45684, 3270, NULL, '6.0000', '0.7000', '0.7000', '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 (47951, '2021-12-31', 8277, 45685, 3270, NULL, '1.0000', '6.5700', '6.5700', '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 (47952, '2021-12-31', 2673, 45686, 3270, 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 (47953, '2021-12-31', 7478, 45687, 3270, NULL, '3.0000', '4.0000', '4.0000', '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 (47954, '2021-12-31', 7630, 45688, 3270, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (47955, '2021-12-31', 2315, 45689, 3270, NULL, '2.0000', '0.8556', '0.8556', '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 (47956, '2021-12-31', 2231, 45690, 3270, NULL, '1.0000', '33.9999', '33.9999', '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 (47957, '2021-12-31', 2712, 45691, 3270, 44438, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47958, '2021-12-31', 2221, 45692, 3270, 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 (47959, '2021-12-31', 7473, 45693, 3270, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '69.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47960, '2021-12-31', 2411, 45694, 3271, 42968, '1.0000', '1.2564', '1.2564', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47961, '2021-12-31', 2916, 45695, 3271, 44712, '1.0000', '13.3250', '13.3250', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47962, '2021-12-31', 9214, 45696, 3271, NULL, '1.0000', '9.6000', '9.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 (47963, '2021-12-31', 9089, 45697, 3271, 44032, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47964, '2021-12-31', 2037, 45698, 3271, 40346, '1.0000', '9.5755', '9.5755', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47965, '2021-12-31', 7947, 45699, 3272, NULL, '1.0000', '14.4400', '14.4400', '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 (47966, '2021-12-31', 2713, 45700, 3272, NULL, '2.0000', '1.5000', '1.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 (47967, '2021-12-31', 2753, 45701, 3272, 39399, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47968, '2021-12-31', 7965, 45702, 3272, NULL, '28.0000', '5.6100', '5.6100', '6.5000', '6.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 (47969, '2021-12-31', 7588, 45703, 3272, NULL, '1.0000', '7.0762', '7.0762', '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 (47970, '2021-12-31', 7753, 45704, 3272, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47971, '2021-12-31', 7643, 45705, 3272, NULL, '1.0000', '2.1100', '2.1100', '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 (47972, '2021-12-31', 7411, 45706, 3272, NULL, '3.0000', '1.3460', '1.3460', '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 (47973, '2021-12-31', 9453, 45707, 3272, 36053, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47974, '2021-12-31', 1501, 45708, 3272, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47975, '2021-12-31', 2001, 45709, 3272, 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 (47976, '2021-12-31', 7359, 45710, 3272, NULL, '1.0000', '10.6650', '10.6650', '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 (47977, '2021-12-31', 7360, 45711, 3272, 43115, '1.0000', '-284.5456', '-284.5456', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47978, '2021-12-31', 9456, 45712, 3272, 30936, '1.0000', '3.3200', '3.3200', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47979, '2021-12-31', 8434, 45713, 3272, NULL, '1.0000', '7.6300', '7.6300', '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 (47980, '2021-12-31', 7438, 45714, 3272, NULL, '1.0000', '36.7600', '36.7600', '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 (47981, '2021-12-31', 2289, 45715, 3272, NULL, '4.0000', '0.2069', '0.2069', '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 (47982, '2021-12-31', 8401, 45716, 3272, NULL, '1.0000', '13.7163', '13.7163', '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 (47983, '2021-12-31', 8677, 45717, 3272, NULL, '2.0000', '1.2300', '1.2300', '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 (47984, '2021-12-31', 7482, 45718, 3272, NULL, '1.0000', '2.4981', '2.4981', '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 (47985, '2021-12-31', 7750, 45719, 3272, NULL, '1.0000', '35.5900', '35.5900', '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 (47986, '2021-12-31', 7668, 45720, 3272, NULL, '1.0000', '19.6600', '19.6600', '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 (47987, '2021-12-31', 7411, 45721, 3272, NULL, '1.0000', '1.3460', '1.3460', '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 (47988, '2021-12-31', 1809, 45722, 3273, 11860, '1.0000', '9.1873', '9.1873', '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 (47989, '2021-12-31', 9474, 45723, 3273, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47990, '2021-12-31', 2109, 45724, 3273, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47991, '2021-12-31', 9577, 45725, 3273, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '32.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47992, '2021-12-31', 2154, 45726, 3273, 44729, '1.0000', '12.4444', '12.4444', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47993, '2021-12-31', 2713, 45727, 3273, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47994, '2021-12-31', 1999, 45728, 3273, 40305, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47995, '2021-12-31', 8740, 45729, 3273, 44040, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47996, '2021-12-31', 2154, 45730, 3273, 44729, '1.0000', '12.4444', '12.4444', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47997, '2021-12-31', 7609, 45731, 3273, NULL, '1.0000', '4.3300', '4.3300', '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 (47998, '2021-12-31', 9474, 45732, 3273, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47999, '2021-12-31', 2273, 45733, 3273, NULL, '1.0000', '2.6700', '2.6700', '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 (48000, '2021-12-31', 7954, 45734, 3273, 33014, '4.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48001, '2021-12-31', 1348, 45735, 3274, 3387, '1.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 (48002, '2021-12-31', 2286, 45736, 3274, 44626, '2.0000', '4.3486', '4.3486', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48003, '2021-12-31', 8298, 45737, 3274, NULL, '1.0000', '7.8400', '7.8400', '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 (48004, '2021-12-31', 1602, 45738, 3275, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '35.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48005, '2021-12-31', 7715, 45739, 3276, NULL, '1.0000', '11.9400', '11.9400', '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 (48006, '2021-12-31', 7506, 45740, 3276, NULL, '1.0000', '15.0000', '15.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 (48007, '2021-12-31', 7711, 45741, 3276, NULL, '1.0000', '-78.4806', '-78.4806', '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 (48008, '2021-12-31', 9243, 45742, 3276, 44942, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48009, '2021-12-31', 7753, 45743, 3276, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48010, '2021-12-31', 8941, 45744, 3276, NULL, '1.0000', '12.0000', '12.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 (48011, '2021-12-31', 7674, 45745, 3276, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48012, '2021-12-31', 9579, 45746, 3276, 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 (48013, '2021-12-31', 8756, 45747, 3276, 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 (48014, '2021-12-31', 8984, 45748, 3276, NULL, '1.0000', '0.6700', '0.6700', '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 (48015, '2021-12-31', 2315, 45749, 3276, NULL, '1.0000', '0.4740', '0.4740', '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 (48016, '2021-12-31', 2458, 45750, 3277, NULL, '1.0000', '7.0000', '7.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 (48017, '2021-12-31', 8966, 45751, 3277, 37843, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48018, '2021-12-31', 8547, 45752, 3277, 39596, '1.0000', '7.7333', '7.7333', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48019, '2021-12-31', 7714, 45753, 3277, NULL, '10.0000', '0.4200', '0.4200', '0.6000', '0.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 (48020, '2021-12-31', 9142, 45754, 3277, 30927, '1.0000', '7.3800', '7.3800', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48021, '2021-12-31', 8517, 45755, 3278, 44774, '1.0000', '30.3750', '30.3750', '37.5000', '37.5000', '1.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48022, '2021-12-31', 1935, 45756, 3278, 44781, '2.0000', '3.0998', '3.0998', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48023, '2021-12-31', 1621, 45757, 3278, 44615, '1.0000', '46.2610', '46.2610', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48024, '2021-12-31', 7848, 45758, 3279, NULL, '1.0000', '1.3500', '1.3500', '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 (48025, '2021-12-31', 7446, 45759, 3280, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48026, '2021-12-31', 1546, 45760, 3281, 23159, '2.0000', '99.5612', '99.5612', '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 (48027, '2021-12-31', 2825, 45761, 3281, NULL, '1.0000', '12.0000', '12.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 (48028, '2021-12-31', 8393, 45762, 3281, 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 (48029, '2021-12-31', 2908, 45763, 3281, 24963, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '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 (48030, '2021-12-31', 7411, 45764, 3281, NULL, '1.0000', '1.3474', '1.3474', '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 (48031, '2021-12-31', 2129, 45765, 3281, 34597, '1.0000', '6.4100', '6.4100', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48032, '2021-12-31', 2315, 45766, 3281, NULL, '2.0000', '0.8556', '0.8556', '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 (48033, '2021-12-31', 1501, 45767, 3281, NULL, '1.0000', '2.2100', '2.2100', '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 (48034, '2021-12-31', 7411, 45768, 3281, NULL, '1.0000', '1.3474', '1.3474', '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 (48035, '2021-12-31', 8876, 45769, 3281, NULL, '1.0000', '0.9900', '0.9900', '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 (48036, '2021-12-31', 1501, 45770, 3281, NULL, '1.0000', '2.2100', '2.2100', '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 (48037, '2021-12-31', 7411, 45771, 3281, NULL, '1.0000', '1.3474', '1.3474', '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 (48038, '2021-12-31', 1612, 45772, 3281, 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 (48039, '2021-12-31', 1519, 45773, 3281, NULL, '1.0000', '3.3980', '3.3980', '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 (48040, '2021-12-31', 7741, 45774, 3281, NULL, '1.0000', '1.2000', '1.2000', '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 (48041, '2021-12-31', 9556, 45775, 3281, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48042, '2021-12-31', 2315, 45776, 3281, NULL, '2.0000', '0.8556', '0.8556', '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 (48043, '2021-12-31', 1574, 45777, 3281, NULL, '1.0000', '1.7001', '1.7001', '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 (48044, '2021-12-31', 7411, 45778, 3281, NULL, '1.0000', '1.3474', '1.3474', '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 (48045, '2021-12-31', 1837, 45779, 3281, 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 (48046, '2021-12-31', 8677, 45780, 3281, NULL, '2.0000', '89.9250', '89.9250', '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 (48047, '2021-12-31', 2020, 45781, 3281, NULL, '1.0000', '9.2832', '9.2832', '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 (48048, '2021-12-31', 3012, 45782, 3281, NULL, '1.0000', '4.7000', '4.7000', '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 (48049, '2021-12-31', 7411, 45783, 3281, NULL, '1.0000', '1.3474', '1.3474', '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 (48050, '2021-12-31', 3018, 45784, 3281, 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 (48051, '2021-12-31', 1577, 45785, 3281, NULL, '1.0000', '2.3271', '2.3271', '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 (48052, '2021-12-31', 1621, 45786, 3281, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '43.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48053, '2021-12-31', 7411, 45787, 3281, NULL, '1.0000', '1.3474', '1.3474', '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 (48054, '2021-12-31', 1598, 45788, 3281, 38533, '1.0000', '3.3065', '3.3065', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48055, '2021-12-31', 7514, 45789, 3281, NULL, '1.0000', '2.2500', '2.2500', '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 (48056, '2021-12-31', 9482, 45790, 3281, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48057, '2021-12-31', 1841, 45791, 3282, 44579, '10.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48058, '2021-12-31', 2154, 45792, 3283, 44729, '1.0000', '12.4444', '12.4444', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48059, '2021-12-31', 1759, 45793, 3283, 40630, '2.0000', '23.5769', '23.5769', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48060, '2021-12-31', 2916, 45794, 3283, 44712, '1.0000', '13.3250', '13.3250', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48061, '2021-12-31', 2411, 45795, 3283, 42968, '1.0000', '1.2564', '1.2564', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48062, '2021-12-31', 1888, 45796, 3284, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48063, '2022-01-03', 9714, 45797, 3285, 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 (48064, '2022-01-03', 9714, 45798, 3286, NULL, '2.0000', '25.0000', '25.0000', '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 (48065, '2022-01-03', 2315, 45799, 3287, NULL, '1.0000', '0.4740', '0.4740', '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 (48066, '2022-01-03', 1871, 45800, 3288, NULL, '1.0000', '2.9308', '2.9308', '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 (48067, '2022-01-03', 2263, 45801, 3288, 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 (48068, '2022-01-03', 2284, 45802, 3288, 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 (48069, '2022-01-03', 2962, 45803, 3288, 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 (48070, '2022-01-03', 1820, 45804, 3288, 42541, '1.0000', '8.3700', '8.3700', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48071, '2022-01-03', 7744, 45805, 3288, NULL, '1.0000', '1.9000', '1.9000', '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 (48072, '2022-01-03', 2712, 45806, 3288, 44438, '6.0000', '0.2600', '0.2600', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48073, '2022-01-03', 7674, 45807, 3288, NULL, '1.0000', '1.3000', '1.3000', '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 (48074, '2022-01-03', 1618, 45808, 3288, NULL, '1.0000', '36.2513', '36.2513', '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 (48075, '2022-01-03', 8825, 45809, 3288, NULL, '1.0000', '7.4000', '7.4000', '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 (48076, '2022-01-03', 8944, 45810, 3288, NULL, '1.0000', '38.1200', '38.1200', '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 (48077, '2022-01-03', 7674, 45811, 3288, NULL, '1.0000', '1.3000', '1.3000', '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 (48078, '2022-01-03', 2283, 45812, 3288, 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 (48079, '2022-01-03', 1590, 45813, 3288, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (48080, '2022-01-03', 1602, 45814, 3288, NULL, '1.0000', '6.8552', '6.8552', '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 (48081, '2022-01-03', 3016, 45815, 3288, NULL, '1.0000', '14.5200', '14.5200', '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 (48082, '2022-01-03', 7674, 45816, 3288, NULL, '1.0000', '1.3000', '1.3000', '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 (48083, '2022-01-03', 1783, 45817, 3288, 42070, '1.0000', '137.4528', '137.4528', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48084, '2022-01-03', 2237, 45818, 3288, NULL, '1.0000', '-329.8285', '-329.8285', '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 (48085, '2022-01-03', 8454, 45819, 3288, NULL, '1.0000', '10.2700', '10.2700', '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 (48086, '2022-01-03', 1574, 45820, 3288, NULL, '1.0000', '1.7001', '1.7001', '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 (48087, '2022-01-03', 1338, 45821, 3288, 18934, '1.0000', '3.7257', '3.7257', '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 (48088, '2022-01-03', 1387, 45822, 3288, NULL, '1.0000', '11.7000', '11.7000', '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 (48089, '2022-01-03', 2169, 45823, 3288, NULL, '1.0000', '1.1500', '1.1500', '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 (48090, '2022-01-03', 1665, 45824, 3288, 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 (48091, '2022-01-03', 7639, 45825, 3288, 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 (48092, '2022-01-03', 2660, 45826, 3288, 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 (48093, '2022-01-03', 2277, 45827, 3288, 43261, '1.0000', '0.9399', '0.9399', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48094, '2022-01-03', 1590, 45828, 3288, NULL, '3.0000', '1.9878', '1.9878', '2.3000', '2.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 (48095, '2022-01-03', 1533, 45829, 3288, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48096, '2022-01-03', 1331, 45830, 3288, NULL, '1.0000', '4.2000', '4.2000', '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 (48097, '2022-01-03', 7756, 45831, 3288, NULL, '1.0000', '2.5000', '2.5000', '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 (48098, '2022-01-03', 1637, 45832, 3288, NULL, '1.0000', '-41.1667', '-41.1667', '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 (48099, '2022-01-03', 7459, 45833, 3288, NULL, '4.0000', '-6.1729', '-6.1729', '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 (48100, '2022-01-03', 2315, 45834, 3288, NULL, '1.0000', '0.8556', '0.8556', '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 (48101, '2022-01-03', 1665, 45835, 3288, 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 (48102, '2022-01-03', 1863, 45836, 3288, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48103, '2022-01-03', 1602, 45837, 3288, NULL, '1.0000', '6.8552', '6.8552', '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 (48104, '2022-01-03', 1935, 45838, 3288, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48105, '2022-01-03', 8352, 45839, 3289, NULL, '1.0000', '-153.7209', '-153.7209', '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 (48106, '2022-01-03', 8172, 45840, 3289, NULL, '1.0000', '40.7000', '40.7000', '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 (48107, '2022-01-03', 2822, 45841, 3289, 30155, '3.0000', '2.7200', '2.7200', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48108, '2022-01-03', 7641, 45842, 3289, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48109, '2022-01-03', 8063, 45843, 3289, 36671, '1.0000', '20.7988', '20.7988', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48110, '2022-01-03', 7317, 45844, 3289, NULL, '1.0000', '29.3700', '29.3700', '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 (48111, '2022-01-03', 7719, 45845, 3289, NULL, '1.0000', '6.3333', '6.3333', '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 (48112, '2022-01-03', 2315, 45846, 3289, NULL, '1.0000', '0.4740', '0.4740', '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 (48113, '2022-01-03', 7385, 45847, 3289, NULL, '2.0000', '17.6346', '17.6346', '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 (48114, '2022-01-03', 8596, 45848, 3289, NULL, '1.0000', '17.0000', '17.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 (48115, '2022-01-03', 2825, 45849, 3289, 30221, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48116, '2022-01-03', 1935, 45850, 3289, 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 (48117, '2022-01-03', 7514, 45851, 3289, NULL, '1.0000', '17.4792', '17.4792', '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 (48118, '2022-01-03', 1843, 45852, 3289, 36055, '4.0000', '4.4600', '4.4600', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48119, '2022-01-03', 1843, 45852, 3289, NULL, '3.0000', '4.4600', '4.4600', '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 (48120, '2022-01-03', 7769, 45853, 3289, 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 (48121, '2022-01-03', 7641, 45854, 3289, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48122, '2022-01-03', 7579, 45855, 3289, NULL, '3.0000', '15.0000', '15.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 (48123, '2022-01-03', 8134, 45856, 3289, NULL, '1.0000', '5.2600', '5.2600', '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 (48124, '2022-01-03', 8984, 45857, 3289, NULL, '1.0000', '0.6700', '0.6700', '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 (48125, '2022-01-03', 8448, 45858, 3289, 39539, '1.0000', '6.8900', '6.8900', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48126, '2022-01-03', 1884, 45859, 3289, 36052, '1.0000', '4.3958', '4.3958', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48127, '2022-01-03', 8463, 45860, 3289, NULL, '1.0000', '18.0000', '18.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 (48128, '2022-01-03', 8198, 45861, 3289, NULL, '1.0000', '-40.7300', '-40.7300', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48129, '2022-01-03', 7518, 45862, 3289, NULL, '2.0000', '-112.5817', '-112.5817', '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 (48130, '2022-01-03', 8969, 45863, 3289, NULL, '8.0000', '2.0000', '2.0000', '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 (48131, '2022-01-03', 7967, 45864, 3289, NULL, '1.0000', '6.1742', '6.1742', '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 (48132, '2022-01-03', 7411, 45865, 3289, NULL, '3.0000', '1.3460', '1.3460', '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 (48133, '2022-01-03', 8036, 45866, 3289, 43439, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48134, '2022-01-03', 8550, 45867, 3289, 44235, '1.0000', '15.3000', '15.3000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48135, '2022-01-03', 9456, 45868, 3289, 30936, '2.0000', '3.3200', '3.3200', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48136, '2022-01-03', 9561, 45869, 3289, 42671, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48137, '2022-01-03', 9026, 45870, 3289, 33077, '1.0000', '15.0000', '15.0000', '19.8000', '19.8000', '2.0000', 1, 0, NULL, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48138, '2022-01-03', 8940, 45871, 3289, NULL, '9.0000', '4.9900', '4.9900', '11.0000', '11.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 (48139, '2022-01-03', 7753, 45872, 3289, 43138, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48140, '2022-01-03', 1837, 45873, 3289, NULL, '2.0000', '0.6041', '0.6041', '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 (48141, '2022-01-03', 2655, 45874, 3289, 43949, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48142, '2022-01-03', 1750, 45875, 3289, 37399, '1.0000', '29.4721', '29.4721', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48143, '2022-01-03', 7524, 45876, 3289, NULL, '1.0000', '103.0922', '103.0922', '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 (48144, '2022-01-03', 8924, 45877, 3289, NULL, '1.0000', '4.5000', '4.5000', '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 (48145, '2022-01-03', 8011, 45878, 3289, NULL, '1.0000', '0.9500', '0.9500', '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 (48146, '2022-01-03', 7863, 45879, 3289, NULL, '9.0000', '3.0000', '3.0000', '7.0000', '7.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 (48147, '2022-01-03', 2491, 45880, 3289, 37367, '1.0000', '-11.7996', '-11.7996', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48148, '2022-01-03', 8064, 45881, 3289, NULL, '1.0000', '4.9000', '4.9000', '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 (48149, '2022-01-03', 1839, 45882, 3289, 44743, '1.0000', '6.6034', '6.6034', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48150, '2022-01-03', 7729, 45883, 3289, NULL, '1.0000', '13.0000', '13.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 (48151, '2022-01-03', 7447, 45884, 3289, NULL, '1.0000', '19.1100', '19.1100', '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 (48152, '2022-01-03', 7524, 45885, 3289, NULL, '1.0000', '103.0922', '103.0922', '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 (48153, '2022-01-03', 9272, 45886, 3289, NULL, '1.0000', '3.1000', '3.1000', '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 (48154, '2022-01-03', 8924, 45887, 3289, NULL, '1.0000', '4.5000', '4.5000', '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 (48155, '2022-01-03', 9098, 45888, 3289, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48156, '2022-01-03', 7558, 45889, 3289, NULL, '10.0000', '2.2000', '2.2000', '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 (48157, '2022-01-03', 7658, 45890, 3289, NULL, '5.0000', '63.4193', '63.4193', '2.5000', '2.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 (48158, '2022-01-03', 7428, 45891, 3289, NULL, '4.0000', '744.9056', '744.9056', '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 (48159, '2022-01-03', 7926, 45892, 3289, 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 (48160, '2022-01-03', 8595, 45893, 3289, NULL, '1.0000', '4.2100', '4.2100', '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 (48161, '2022-01-03', 7658, 45894, 3289, NULL, '2.0000', '63.4193', '63.4193', '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 (48162, '2022-01-03', 8924, 45895, 3289, NULL, '1.0000', '4.5000', '4.5000', '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 (48163, '2022-01-03', 7411, 45896, 3289, NULL, '1.0000', '1.3460', '1.3460', '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 (48164, '2022-01-03', 7703, 45897, 3289, NULL, '2.0000', '22.9900', '22.9900', '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 (48165, '2022-01-03', 1759, 45898, 3289, 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 (48166, '2022-01-03', 7411, 45899, 3289, NULL, '9.0000', '1.3460', '1.3460', '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 (48167, '2022-01-03', 2924, 45900, 3289, 39563, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48168, '2022-01-03', 7804, 45901, 3289, NULL, '3.0000', '1.8000', '1.8000', '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 (48169, '2022-01-03', 1665, 45902, 3289, 44757, '1.0000', '1.1703', '1.1703', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48170, '2022-01-03', 7658, 45903, 3289, NULL, '1.0000', '63.4193', '63.4193', '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 (48171, '2022-01-03', 2699, 45904, 3289, 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 (48172, '2022-01-03', 7814, 45905, 3289, NULL, '1.0000', '22.1667', '22.1667', '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 (48173, '2022-01-03', 7815, 45906, 3289, NULL, '1.0000', '13.0000', '13.0000', '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 (48174, '2022-01-03', 7674, 45907, 3289, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48175, '2022-01-03', 7889, 45908, 3289, NULL, '1.0000', '-8.6571', '-8.6571', '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 (48176, '2022-01-03', 1688, 45909, 3289, NULL, '1.0000', '16.9900', '16.9900', '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 (48177, '2022-01-03', 8548, 45910, 3289, NULL, '1.0000', '12.0000', '12.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 (48178, '2022-01-03', 2962, 45911, 3289, 44462, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48179, '2022-01-03', 7524, 45912, 3289, NULL, '2.0000', '103.0922', '103.0922', '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 (48180, '2022-01-03', 7383, 45913, 3289, 30015, '1.0000', '1.9700', '1.9700', '73.0000', '73.0000', '26.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48181, '2022-01-03', 7909, 45914, 3289, NULL, '1.0000', '4.0000', '4.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 (48182, '2022-01-03', 7715, 45915, 3289, NULL, '1.0000', '11.9400', '11.9400', '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 (48183, '2022-01-03', 7411, 45916, 3289, NULL, '1.0000', '1.3460', '1.3460', '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 (48184, '2022-01-03', 1884, 45917, 3289, 36052, '1.0000', '4.3958', '4.3958', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48185, '2022-01-03', 8200, 45918, 3289, NULL, '2.0000', '629.5726', '629.5726', '8.5000', '8.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 (48186, '2022-01-03', 7694, 45919, 3289, NULL, '1.0000', '4.7900', '4.7900', '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 (48187, '2022-01-03', 7547, 45920, 3289, NULL, '2.0000', '0.0000', '0.0000', '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 (48188, '2022-01-03', 2250, 45921, 3289, 38444, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48189, '2022-01-03', 8679, 45922, 3289, NULL, '1.0000', '28.0000', '28.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 (48190, '2022-01-03', 1337, 45923, 3289, 44932, '1.0000', '0.3333', '0.3333', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48191, '2022-01-03', 7672, 45924, 3289, NULL, '1.0000', '1.0200', '1.0200', '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 (48192, '2022-01-03', 7609, 45925, 3289, NULL, '1.0000', '4.3300', '4.3300', '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 (48193, '2022-01-03', 7318, 45926, 3289, NULL, '1.0000', '17.2098', '17.2098', '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 (48194, '2022-01-03', 2363, 45927, 3289, 42406, '2.0000', '6.8800', '6.8800', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48195, '2022-01-03', 7524, 45928, 3289, NULL, '1.0000', '103.0922', '103.0922', '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 (48196, '2022-01-03', 7640, 45929, 3289, NULL, '2.0000', '7.4344', '7.4344', '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 (48197, '2022-01-03', 7674, 45930, 3289, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48198, '2022-01-03', 2289, 45931, 3289, NULL, '2.0000', '0.2069', '0.2069', '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 (48199, '2022-01-03', 7478, 45932, 3289, NULL, '4.0000', '4.0000', '4.0000', '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 (48200, '2022-01-03', 1841, 45933, 3289, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48201, '2022-01-03', 7473, 45934, 3289, NULL, '3.0000', '25.2998', '25.2998', '0.6000', '0.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 (48202, '2022-01-03', 8203, 45935, 3289, NULL, '2.0000', '1.0075', '1.0075', '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 (48203, '2022-01-03', 8359, 45936, 3289, NULL, '1.0000', '87.2313', '87.2313', '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 (48204, '2022-01-03', 1817, 45937, 3289, NULL, '1.0000', '9.5500', '9.5500', '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 (48205, '2022-01-03', 9556, 45938, 3289, NULL, '1.0000', '1.6375', '1.6375', '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 (48206, '2022-01-03', 7411, 45939, 3289, NULL, '1.0000', '1.3460', '1.3460', '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 (48207, '2022-01-03', 2260, 45940, 3290, 43060, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48208, '2022-01-03', 7588, 45941, 3290, NULL, '1.0000', '7.0762', '7.0762', '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 (48209, '2022-01-03', 9620, 45942, 3290, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48210, '2022-01-03', 7952, 45943, 3290, NULL, '1.0000', '14.9000', '14.9000', '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 (48211, '2022-01-03', 7652, 45944, 3290, NULL, '5.0000', '40.3000', '40.3000', '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 (48212, '2022-01-03', 9018, 45945, 3290, NULL, '1.0000', '42.0000', '42.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 (48213, '2022-01-03', 8198, 45946, 3290, NULL, '1.0000', '-40.7300', '-40.7300', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48214, '2022-01-03', 2332, 45947, 3290, NULL, '1.0000', '5.0900', '5.0900', '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 (48215, '2022-01-03', 7651, 45948, 3290, 44860, '1.0000', '-6.6500', '-6.6500', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48216, '2022-01-03', 8145, 45949, 3290, NULL, '1.0000', '28.0000', '28.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 (48217, '2022-01-03', 7520, 45950, 3290, NULL, '1.0000', '9.6000', '9.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 (48218, '2022-01-03', 7674, 45951, 3290, NULL, '6.0000', '-115.5436', '-115.5436', '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 (48219, '2022-01-03', 3085, 45952, 3290, NULL, '1.0000', '57.0000', '57.0000', '75.0000', '75.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48220, '2022-01-03', 1501, 45953, 3290, 44358, '1.0000', '2.2365', '2.2365', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48221, '2022-01-03', 7674, 45954, 3290, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48222, '2022-01-03', 9202, 45955, 3290, NULL, '1.0000', '3.5000', '3.5000', '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 (48223, '2022-01-03', 2699, 45956, 3290, 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 (48224, '2022-01-03', 7769, 45957, 3290, 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 (48225, '2022-01-03', 2295, 45958, 3290, NULL, '2.0000', '0.7000', '0.7000', '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 (48226, '2022-01-03', 8626, 45959, 3290, NULL, '1.0000', '10.0000', '10.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 (48227, '2022-01-03', 7703, 45960, 3290, NULL, '1.0000', '22.9900', '22.9900', '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 (48228, '2022-01-03', 9311, 45961, 3290, 39417, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48229, '2022-01-03', 8769, 45962, 3290, 43938, '2.0000', '6.6000', '6.6000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48230, '2022-01-03', 8941, 45963, 3290, NULL, '2.0000', '12.0000', '12.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 (48231, '2022-01-03', 2295, 45964, 3290, NULL, '2.0000', '0.7000', '0.7000', '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 (48232, '2022-01-03', 2279, 45965, 3290, NULL, '1.0000', '2.6000', '2.6000', '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 (48233, '2022-01-03', 1311, 45966, 3290, NULL, '8.0000', '0.3700', '0.3700', '0.5000', '0.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 (48234, '2022-01-03', 1908, 45967, 3290, NULL, '1.0000', '1.7500', '1.7500', '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 (48235, '2022-01-03', 7354, 45968, 3290, NULL, '1.0000', '18.0000', '18.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 (48236, '2022-01-03', 7886, 45969, 3290, NULL, '1.0000', '-8.1003', '-8.1003', '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 (48237, '2022-01-03', 7473, 45970, 3290, NULL, '2.0000', '25.2998', '25.2998', '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 (48238, '2022-01-03', 2277, 45971, 3290, 44889, '1.0000', '0.7800', '0.7800', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48239, '2022-01-03', 1935, 45972, 3290, 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 (48240, '2022-01-03', 9092, 45973, 3290, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '149.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48241, '2022-01-03', 8064, 45974, 3290, NULL, '2.0000', '4.9000', '4.9000', '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 (48242, '2022-01-03', 2950, 45975, 3290, 44851, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48243, '2022-01-03', 7892, 45976, 3290, NULL, '1.0000', '4.2000', '4.2000', '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 (48244, '2022-01-03', 7432, 45977, 3290, 30048, '1.0000', '3.2300', '3.2300', '20.0000', '20.0000', '51.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48245, '2022-01-03', 8355, 45978, 3290, NULL, '1.0000', '21.7500', '21.7500', '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 (48246, '2022-01-03', 7324, 45979, 3290, 37423, '4.0000', '32.2000', '32.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48247, '2022-01-03', 7324, 45979, 3290, 29977, '1.0000', '32.2000', '32.2000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48248, '2022-01-03', 8362, 45980, 3290, NULL, '10.0000', '4.1000', '4.1000', '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 (48249, '2022-01-03', 2506, 45981, 3290, 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 (48250, '2022-01-03', 9556, 45982, 3290, NULL, '2.0000', '1.6375', '1.6375', '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 (48251, '2022-01-03', 2315, 45983, 3290, NULL, '2.0000', '0.4740', '0.4740', '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 (48252, '2022-01-03', 1311, 45984, 3290, 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 (48253, '2022-01-03', 9202, 45985, 3290, NULL, '1.0000', '3.5000', '3.5000', '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 (48254, '2022-01-03', 1720, 45986, 3290, 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 (48255, '2022-01-03', 2169, 45987, 3291, NULL, '1.0000', '1.1500', '1.1500', '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 (48256, '2022-01-03', 9482, 45988, 3291, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48257, '2022-01-03', 2240, 45989, 3291, 13751, '1.0000', '34.0000', '34.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 (48258, '2022-01-03', 8913, 45990, 3291, NULL, '1.0000', '15.1700', '15.1700', '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 (48259, '2022-01-03', 2167, 45991, 3291, 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 (48260, '2022-01-03', 2287, 45992, 3291, 43279, '2.0000', '1.6790', '1.6790', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48261, '2022-01-03', 2318, 45993, 3291, 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 (48262, '2022-01-03', 2083, 45994, 3291, 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 (48263, '2022-01-03', 7741, 45995, 3291, NULL, '1.0000', '1.2000', '1.2000', '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 (48264, '2022-01-03', 2610, 45996, 3291, 44006, '1.0000', '44.5000', '44.5000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48265, '2022-01-03', 7752, 45997, 3291, NULL, '1.0000', '2.6100', '2.6100', '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 (48266, '2022-01-03', 2512, 45998, 3291, 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 (48267, '2022-01-03', 1880, 45999, 3291, 42565, '1.0000', '4.6392', '4.6392', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48268, '2022-01-03', 9663, 46000, 3291, NULL, '1.0000', '18.0000', '18.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 (48269, '2022-01-03', 1308, 46001, 3291, 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 (48270, '2022-01-03', 7324, 46002, 3291, 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 (48271, '2022-01-03', 7780, 46003, 3291, NULL, '1.0000', '2.6000', '2.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 (48272, '2022-01-03', 7411, 46004, 3291, NULL, '1.0000', '1.3474', '1.3474', '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 (48273, '2022-01-03', 2366, 46005, 3291, NULL, '2.0000', '-17.8500', '-17.8500', '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 (48274, '2022-01-03', 2730, 46006, 3291, 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 (48275, '2022-01-03', 1486, 46007, 3291, 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 (48276, '2022-01-03', 7639, 46008, 3291, 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 (48277, '2022-01-03', 1665, 46009, 3291, 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 (48278, '2022-01-03', 7860, 46010, 3291, NULL, '1.0000', '3.8500', '3.8500', '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 (48279, '2022-01-03', 1730, 46011, 3291, 42832, '1.0000', '24.1993', '24.1993', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48280, '2022-01-03', 1612, 46012, 3291, 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 (48281, '2022-01-03', 2315, 46013, 3291, NULL, '2.0000', '0.8556', '0.8556', '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 (48282, '2022-01-03', 8775, 46014, 3291, 43988, '2.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48283, '2022-01-03', 1450, 46015, 3291, 43237, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '11.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48284, '2022-01-03', 8228, 46016, 3291, 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 (48285, '2022-01-03', 2943, 46017, 3291, 38528, '1.0000', '2.8077', '2.8077', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48286, '2022-01-03', 8775, 46018, 3291, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48287, '2022-01-03', 7411, 46019, 3291, NULL, '1.0000', '1.3474', '1.3474', '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 (48288, '2022-01-03', 2109, 46020, 3291, 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 (48289, '2022-01-03', 7514, 46021, 3291, NULL, '1.0000', '2.2500', '2.2500', '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 (48290, '2022-01-03', 7411, 46022, 3291, NULL, '1.0000', '1.3474', '1.3474', '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 (48291, '2022-01-03', 1519, 46023, 3291, NULL, '1.0000', '3.3980', '3.3980', '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 (48292, '2022-01-03', 2315, 46024, 3291, NULL, '2.0000', '0.8556', '0.8556', '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 (48293, '2022-01-03', 8444, 46025, 3291, 42545, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48294, '2022-01-03', 1772, 46026, 3291, 39905, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48295, '2022-01-03', 2057, 46027, 3291, 33373, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48296, '2022-01-03', 7823, 46028, 3291, NULL, '1.0000', '11.3000', '11.3000', '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 (48297, '2022-01-03', 1501, 46029, 3291, NULL, '1.0000', '2.2100', '2.2100', '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 (48298, '2022-01-03', 2315, 46030, 3291, NULL, '2.0000', '0.8556', '0.8556', '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 (48299, '2022-01-03', 7473, 46031, 3291, 39817, '2.0000', '0.1679', '0.1679', '0.6000', '0.6000', '67.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48300, '2022-01-03', 7575, 46032, 3291, NULL, '1.0000', '28.3200', '28.3200', '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 (48301, '2022-01-03', 2273, 46033, 3291, 45037, '1.0000', '3.0555', '3.0555', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48302, '2022-01-03', 1665, 46034, 3291, 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 (48303, '2022-01-03', 1771, 46035, 3291, NULL, '1.0000', '3.3900', '3.3900', '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 (48304, '2022-01-03', 1810, 46036, 3291, NULL, '1.0000', '8.5104', '8.5104', '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 (48305, '2022-01-03', 7736, 46037, 3291, NULL, '1.0000', '15.0000', '15.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 (48306, '2022-01-03', 1728, 46038, 3291, 19324, '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 (48307, '2022-01-03', 2506, 46039, 3291, 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 (48308, '2022-01-03', 3029, 46040, 3291, NULL, '1.0000', '4.7700', '4.7700', '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 (48309, '2022-01-03', 2655, 46041, 3291, 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 (48310, '2022-01-03', 8745, 46042, 3291, NULL, '1.0000', '8.9932', '8.9932', '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 (48311, '2022-01-03', 7524, 46043, 3291, NULL, '1.0000', '11.9500', '11.9500', '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 (48312, '2022-01-03', 1311, 46044, 3291, 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 (48313, '2022-01-03', 2315, 46045, 3291, NULL, '8.0000', '0.8556', '0.8556', '0.6000', '0.6000', '-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 (48314, '2022-01-03', 1410, 46046, 3291, NULL, '2.0000', '2.1083', '2.1083', '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 (48315, '2022-01-03', 1532, 46047, 3291, NULL, '1.0000', '7.4815', '7.4815', '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 (48316, '2022-01-03', 1912, 46048, 3291, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48317, '2022-01-03', 1390, 46049, 3291, 19831, '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 (48318, '2022-01-03', 7558, 46050, 3291, 39820, '1.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48319, '2022-01-04', 2167, 46051, 3292, 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 (48320, '2022-01-04', 1863, 46052, 3292, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48321, '2022-01-04', 9482, 46053, 3292, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48322, '2022-01-04', 9399, 46054, 3292, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48323, '2022-01-04', 2136, 46055, 3292, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48324, '2022-01-04', 1863, 46056, 3292, 43283, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48325, '2022-01-04', 2135, 46057, 3292, 18930, '1.0000', '2.4732', '2.4732', '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 (48326, '2022-01-04', 2642, 46058, 3292, 22561, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '8.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 (48327, '2022-01-04', 1384, 46059, 3292, NULL, '1.0000', '13.5000', '13.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 (48328, '2022-01-04', 2167, 46060, 3292, 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 (48329, '2022-01-04', 1501, 46061, 3292, NULL, '1.0000', '2.2100', '2.2100', '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 (48330, '2022-01-04', 7746, 46062, 3292, NULL, '1.0000', '2.8600', '2.8600', '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 (48331, '2022-01-04', 1935, 46063, 3292, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48332, '2022-01-04', 7703, 46064, 3292, NULL, '1.0000', '22.9900', '22.9900', '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 (48333, '2022-01-04', 2766, 46065, 3292, 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 (48334, '2022-01-04', 2293, 46066, 3292, NULL, '3.0000', '2.7733', '2.7733', '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 (48335, '2022-01-04', 1602, 46067, 3292, NULL, '1.0000', '6.8552', '6.8552', '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 (48336, '2022-01-04', 2859, 46068, 3292, NULL, '1.0000', '0.6700', '0.6700', '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 (48337, '2022-01-04', 1863, 46069, 3292, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48338, '2022-01-04', 2237, 46070, 3292, NULL, '2.0000', '-329.8285', '-329.8285', '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 (48339, '2022-01-04', 8466, 46071, 3292, NULL, '30.0000', '2.8900', '2.8900', '4.0000', '4.0000', '-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 (48340, '2022-01-04', 1546, 46072, 3292, 23159, '11.0000', '99.5612', '99.5612', '4.0000', '4.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 (48341, '2022-01-04', 1546, 46072, 3292, 19827, '1.0000', '99.5612', '99.5612', '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 (48342, '2022-01-04', 1912, 46073, 3292, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48343, '2022-01-04', 1590, 46074, 3292, NULL, '2.0000', '1.9878', '1.9878', '2.3000', '2.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48344, '2022-01-04', 1864, 46075, 3292, 42835, '1.0000', '6.2625', '6.2625', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48345, '2022-01-04', 2545, 46076, 3292, 38553, '1.0000', '4.2678', '4.2678', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48346, '2022-01-04', 2509, 46077, 3292, 34580, '1.0000', '24.5800', '24.5800', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48347, '2022-01-04', 1555, 46078, 3292, NULL, '1.0000', '22.2400', '22.2400', '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 (48348, '2022-01-04', 2136, 46079, 3293, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48349, '2022-01-04', 1602, 46080, 3293, NULL, '2.0000', '6.8552', '6.8552', '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 (48350, '2022-01-04', 2169, 46081, 3293, NULL, '1.0000', '1.1500', '1.1500', '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 (48351, '2022-01-04', 7703, 46082, 3294, NULL, '1.0000', '22.9900', '22.9900', '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 (48352, '2022-01-04', 1590, 46083, 3294, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (48353, '2022-01-04', 2293, 46084, 3294, NULL, '2.0000', '2.7733', '2.7733', '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 (48354, '2022-01-04', 1807, 46085, 3294, NULL, '5.0000', '41.5000', '41.5000', '2.5000', '2.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 (48355, '2022-01-04', 1807, 46086, 3295, NULL, '1.0000', '41.5000', '41.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 (48356, '2022-01-04', 1839, 46087, 3296, 8734, '-16.0000', '6.1500', '6.1500', '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 (48357, '2022-01-04', 1839, 46087, 3296, NULL, '17.0000', '6.1500', '6.1500', '9.0000', '9.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 (48358, '2022-01-04', 1452, 46088, 3296, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48359, '2022-01-04', 2293, 46089, 3296, 22262, '3.0000', '1.4400', '1.4400', '1.0000', '1.0000', '83.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 (48360, '2022-01-04', 2472, 46090, 3296, NULL, '1.0000', '9.5000', '9.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 (48361, '2022-01-04', 2037, 46091, 3296, 6389, '-8.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48362, '2022-01-04', 2037, 46091, 3296, NULL, '9.0000', '10.5000', '10.5000', '14.0000', '14.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 (48363, '2022-01-04', 2285, 46092, 3296, 2945, '-32.0000', '35.8000', '35.8000', '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 (48364, '2022-01-04', 2285, 46092, 3296, NULL, '33.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-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 (48365, '2022-01-04', 2320, 46093, 3296, 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 (48366, '2022-01-04', 7411, 46094, 3296, NULL, '1.0000', '1.3500', '1.3500', '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 (48367, '2022-01-04', 1433, 46095, 3296, 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 (48368, '2022-01-04', 2342, 46096, 3296, 3845, '-59.0000', '1.8600', '1.8600', '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 (48369, '2022-01-04', 2342, 46096, 3296, NULL, '62.0000', '1.8600', '1.8600', '2.6000', '2.6000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48370, '2022-01-04', 7375, 46097, 3296, NULL, '10.0000', '3.9300', '3.9300', '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 (48371, '2022-01-04', 1452, 46098, 3296, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48372, '2022-01-04', 2320, 46099, 3296, 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 (48373, '2022-01-04', 2916, 46100, 3296, 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 (48374, '2022-01-04', 2339, 46101, 3296, 3842, '-3.0000', '7.2300', '7.2300', '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 (48375, '2022-01-04', 2339, 46101, 3296, NULL, '4.0000', '7.2300', '7.2300', '14.5000', '14.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 (48376, '2022-01-04', 2455, 46102, 3296, 5643, '-3.0000', '7.5300', '7.5300', '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 (48377, '2022-01-04', 2455, 46102, 3296, NULL, '4.0000', '7.5300', '7.5300', '10.0000', '10.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 (48378, '2022-01-04', 2221, 46103, 3296, 4154, '-41.0000', '14.4737', '14.4737', '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 (48379, '2022-01-04', 2221, 46103, 3296, NULL, '42.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48380, '2022-01-04', 1505, 46104, 3296, 10379, '-1.0000', '13.3062', '13.3062', '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 (48381, '2022-01-04', 1505, 46104, 3296, NULL, '2.0000', '13.3062', '13.3062', '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 (48382, '2022-01-04', 1904, 46105, 3296, 5442, '-23.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 (48383, '2022-01-04', 1904, 46105, 3296, NULL, '24.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (48384, '2022-01-04', 2916, 46106, 3296, 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 (48385, '2022-01-04', 1519, 46107, 3296, 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 (48386, '2022-01-04', 1348, 46108, 3296, 244, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48387, '2022-01-04', 1533, 46109, 3296, 20611, '1.0000', '2.5917', '2.5917', '5.0000', '5.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 (48388, '2022-01-04', 2109, 46110, 3296, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '89.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 (48389, '2022-01-04', 1641, 46111, 3296, 3214, '-171.0000', '0.9800', '0.9800', '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 (48390, '2022-01-04', 1641, 46111, 3296, NULL, '177.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-177.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48391, '2022-01-04', 7411, 46112, 3296, NULL, '1.0000', '1.3500', '1.3500', '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 (48392, '2022-01-04', 2660, 46113, 3296, 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 (48393, '2022-01-04', 1574, 46114, 3296, 7593, '-42.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 (48394, '2022-01-04', 1574, 46114, 3296, NULL, '43.0000', '1.9600', '1.9600', '2.5000', '2.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 (48395, '2022-01-04', 2633, 46115, 3296, 20654, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (48396, '2022-01-04', 1393, 46116, 3296, 22344, '1.0000', '6.5000', '6.5000', '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 (48397, '2022-01-04', 1513, 46117, 3296, 10888, '-2.0000', '11.9600', '11.9600', '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 (48398, '2022-01-04', 1513, 46117, 3296, NULL, '3.0000', '11.9600', '11.9600', '17.5000', '17.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 (48399, '2022-01-04', 8933, 46118, 3296, 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 (48400, '2022-01-04', 2366, 46119, 3296, 3833, '-28.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 (48401, '2022-01-04', 2366, 46119, 3296, NULL, '30.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-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 (48402, '2022-01-04', 1812, 46120, 3296, 8224, '-54.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 (48403, '2022-01-04', 1812, 46120, 3296, NULL, '55.0000', '7.8900', '7.8900', '10.5000', '10.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 (48404, '2022-01-04', 2059, 46121, 3296, 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 (48405, '2022-01-04', 1831, 46122, 3296, NULL, '1.0000', '8.4400', '8.4400', '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 (48406, '2022-01-04', 2413, 46123, 3296, 4505, '-5.0000', '1.0500', '1.0500', '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 (48407, '2022-01-04', 2413, 46123, 3296, NULL, '6.0000', '1.0500', '1.0500', '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 (48408, '2022-01-04', 2221, 46124, 3296, 4154, '-41.0000', '14.4737', '14.4737', '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 (48409, '2022-01-04', 2221, 46124, 3296, NULL, '42.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48410, '2022-01-04', 1992, 46125, 3296, 6355, '-3.0000', '1.5000', '1.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 (48411, '2022-01-04', 1992, 46125, 3296, NULL, '4.0000', '1.5000', '1.5000', '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 (48412, '2022-01-04', 2924, 46126, 3296, 18775, '-3.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 (48413, '2022-01-04', 2924, 46126, 3296, NULL, '4.0000', '6.3000', '6.3000', '8.5000', '8.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 (48414, '2022-01-04', 2250, 46127, 3296, 2787, '-2.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 (48415, '2022-01-04', 2250, 46127, 3296, NULL, '3.0000', '6.8900', '6.8900', '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 (48416, '2022-01-04', 1935, 46128, 3296, 5586, '-51.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 (48417, '2022-01-04', 1935, 46128, 3296, NULL, '52.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48418, '2022-01-04', 2812, 46129, 3296, 17356, '-1.0000', '98.5600', '98.5600', '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 (48419, '2022-01-04', 2812, 46129, 3296, NULL, '2.0000', '98.5600', '98.5600', '130.0000', '130.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 (48420, '2022-01-04', 2276, 46130, 3297, 18897, '1.0000', '55.1000', '55.1000', '73.0000', '73.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 (48421, '2022-01-04', 2276, 46130, 3297, NULL, '1.0000', '55.1000', '55.1000', '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 (48422, '2022-01-04', 1602, 46131, 3297, 5897, '-75.0000', '6.7859', '6.7859', '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 (48423, '2022-01-04', 1602, 46131, 3297, NULL, '76.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48424, '2022-01-04', 2511, 46132, 3297, 9740, '-9.0000', '8.5000', '8.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 (48425, '2022-01-04', 2511, 46132, 3297, NULL, '10.0000', '8.5000', '8.5000', '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 (48426, '2022-01-04', 2169, 46133, 3297, 10737, '-7.0000', '3.8397', '3.8397', '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 (48427, '2022-01-04', 2169, 46133, 3297, NULL, '9.0000', '3.8397', '3.8397', '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 (48428, '2022-01-04', 1828, 46134, 3297, NULL, '1.0000', '0.7300', '0.7300', '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 (48429, '2022-01-04', 1872, 46135, 3297, 12520, '-3.0000', '9.0500', '9.0500', '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 (48430, '2022-01-04', 1872, 46135, 3297, NULL, '4.0000', '9.0500', '9.0500', '13.0000', '13.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 (48431, '2022-01-04', 1704, 46136, 3297, 6311, '-4.0000', '27.0900', '27.0900', '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 (48432, '2022-01-04', 1704, 46136, 3297, NULL, '5.0000', '27.0900', '27.0900', '36.0000', '36.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 (48433, '2022-01-04', 1533, 46137, 3297, NULL, '1.0000', '2.5917', '2.5917', '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 (48434, '2022-01-04', 8677, 46138, 3297, NULL, '2.0000', '1.2800', '1.2800', '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 (48435, '2022-01-04', 2458, 46139, 3297, 18021, '-6.0000', '13.2000', '13.2000', '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 (48436, '2022-01-04', 2458, 46139, 3297, NULL, '7.0000', '13.2000', '13.2000', '17.5000', '17.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 (48437, '2022-01-04', 2669, 46140, 3297, NULL, '1.0000', '24.5336', '24.5336', '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 (48438, '2022-01-04', 1674, 46141, 3297, 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 (48439, '2022-01-04', 2254, 46142, 3297, 33806, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48440, '2022-01-04', 9458, 46143, 3297, NULL, '1.0000', '1.5000', '1.5000', '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 (48441, '2022-01-04', 1602, 46144, 3297, 5897, '-75.0000', '6.7859', '6.7859', '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 (48442, '2022-01-04', 1602, 46144, 3297, NULL, '76.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48443, '2022-01-04', 2497, 46145, 3297, 5652, '1.0000', '34.4493', '34.4493', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 89);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48444, '2022-01-04', 2864, 46146, 3297, 17587, '-10.0000', '1.5198', '1.5198', '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 (48445, '2022-01-04', 2864, 46146, 3297, NULL, '20.0000', '1.5198', '1.5198', '2.0000', '2.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 (48446, '2022-01-04', 1602, 46147, 3297, 5897, '-75.0000', '6.7859', '6.7859', '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 (48447, '2022-01-04', 1602, 46147, 3297, NULL, '76.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48448, '2022-01-04', 2020, 46148, 3297, 10164, '-8.0000', '7.5000', '7.5000', '9.5000', '9.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 (48449, '2022-01-04', 2020, 46148, 3297, NULL, '9.0000', '7.5000', '7.5000', '9.5000', '9.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 (48450, '2022-01-04', 1519, 46149, 3297, 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 (48451, '2022-01-04', 2518, 46150, 3297, NULL, '1.0000', '120.7354', '120.7354', '157.0000', '157.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48452, '2022-01-04', 1671, 46151, 3297, 7457, '-38.0000', '4.2000', '4.2000', '64.0000', '64.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48453, '2022-01-04', 1671, 46151, 3297, NULL, '39.0000', '4.2000', '4.2000', '64.0000', '64.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48454, '2022-01-04', 2298, 46152, 3297, NULL, '2.0000', '6.0000', '6.0000', '8.5000', '8.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 (48455, '2022-01-04', 8608, 46153, 3297, NULL, '1.0000', '0.9000', '0.9000', '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 (48456, '2022-01-04', 2290, 46154, 3297, 2950, '-4.0000', '6.8500', '6.8500', '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 (48457, '2022-01-04', 2290, 46154, 3297, NULL, '5.0000', '6.8500', '6.8500', '10.0000', '10.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 (48458, '2022-01-04', 1840, 46155, 3297, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.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 (48459, '2022-01-04', 2916, 46156, 3297, 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 (48460, '2022-01-04', 2642, 46157, 3297, 10573, '-8.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 (48461, '2022-01-04', 2642, 46157, 3297, NULL, '9.0000', '9.2000', '9.2000', '12.0000', '12.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 (48462, '2022-01-04', 2627, 46158, 3297, 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 (48463, '2022-01-04', 7417, 46159, 3297, NULL, '4.0000', '6.4100', '6.4100', '8.5000', '8.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 (48464, '2022-01-04', 1812, 46160, 3297, 8224, '-55.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 (48465, '2022-01-04', 1812, 46160, 3297, NULL, '57.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48466, '2022-01-04', 2095, 46161, 3297, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '53.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 (48467, '2022-01-04', 2250, 46162, 3297, 2787, '-3.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 (48468, '2022-01-04', 2250, 46162, 3297, NULL, '4.0000', '6.8900', '6.8900', '10.0000', '10.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 (48469, '2022-01-04', 1667, 46163, 3297, 9745, '-36.0000', '5.9400', '5.9400', '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 (48470, '2022-01-04', 1667, 46163, 3297, NULL, '37.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48471, '2022-01-04', 2643, 46164, 3297, 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 (48472, '2022-01-04', 1546, 46165, 3297, 1633, '-6.0000', '2.3697', '2.3697', '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 (48473, '2022-01-04', 1546, 46165, 3297, NULL, '12.0000', '2.3697', '2.3697', '4.0000', '4.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 (48474, '2022-01-04', 2643, 46166, 3297, 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 (48475, '2022-01-04', 1651, 46167, 3297, 3222, '-37.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 (48476, '2022-01-04', 1651, 46167, 3297, NULL, '38.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48477, '2022-01-04', 1802, 46168, 3297, NULL, '1.0000', '86.0000', '86.0000', '113.5000', '113.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48478, '2022-01-04', 1602, 46169, 3297, 5897, '-75.0000', '6.7859', '6.7859', '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 (48479, '2022-01-04', 1602, 46169, 3297, NULL, '76.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48480, '2022-01-04', 1584, 46170, 3297, 7601, '-26.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 (48481, '2022-01-04', 1584, 46170, 3297, NULL, '27.0000', '90.0000', '90.0000', '8.0000', '8.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 (48482, '2022-01-04', 2643, 46171, 3297, 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 (48483, '2022-01-04', 2236, 46172, 3297, 2780, '-11.0000', '5.6599', '5.6599', '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 (48484, '2022-01-04', 2236, 46172, 3297, NULL, '12.0000', '5.6599', '5.6599', '8.0000', '8.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 (48485, '2022-01-04', 7318, 46173, 3297, NULL, '1.0000', '13.4400', '13.4400', '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 (48486, '2022-01-04', 1936, 46174, 3297, 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 (48487, '2022-01-04', 2109, 46175, 3297, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '88.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 (48488, '2022-01-04', 1936, 46176, 3297, 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 (48489, '2022-01-04', 2643, 46177, 3297, 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 (48490, '2022-01-04', 1904, 46178, 3297, 5442, '-24.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 (48491, '2022-01-04', 1904, 46178, 3297, NULL, '25.0000', '0.3200', '0.3200', '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 (48492, '2022-01-04', 2772, 46179, 3297, 22339, '1.0000', '16.7000', '16.7000', '48.0000', '48.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 (48493, '2022-01-04', 1574, 46180, 3297, 7593, '-43.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 (48494, '2022-01-04', 1574, 46180, 3297, NULL, '46.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48495, '2022-01-04', 1433, 46181, 3297, 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 (48496, '2022-01-04', 1602, 46182, 3297, 5897, '-75.0000', '6.7859', '6.7859', '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 (48497, '2022-01-04', 1602, 46182, 3297, NULL, '76.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48498, '2022-01-04', 1701, 46183, 3298, 11266, '-3.0000', '14.7800', '14.7800', '20.5000', '20.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 (48499, '2022-01-04', 1701, 46183, 3298, NULL, '4.0000', '14.7800', '14.7800', '20.5000', '20.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 (48500, '2022-01-04', 7411, 46184, 3298, NULL, '1.0000', '1.3500', '1.3500', '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 (48501, '2022-01-04', 1912, 46185, 3298, 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 (48502, '2022-01-04', 3025, 46186, 3298, NULL, '1.0000', '1.8000', '1.8000', '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 (48503, '2022-01-04', 2342, 46187, 3298, 3845, '-62.0000', '1.8600', '1.8600', '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 (48504, '2022-01-04', 2342, 46187, 3298, NULL, '65.0000', '1.8600', '1.8600', '2.6000', '2.6000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48505, '2022-01-04', 2458, 46188, 3298, 18021, '-7.0000', '13.2000', '13.2000', '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 (48506, '2022-01-04', 2458, 46188, 3298, NULL, '8.0000', '13.2000', '13.2000', '17.5000', '17.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 (48507, '2022-01-04', 2065, 46189, 3298, NULL, '1.0000', '1.6000', '1.6000', '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 (48508, '2022-01-04', 1620, 46190, 3298, 8955, '4.0000', '408.8259', '408.8259', '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 (48509, '2022-01-04', 1666, 46191, 3298, 3236, '-18.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 (48510, '2022-01-04', 1666, 46191, 3298, NULL, '19.0000', '2.7100', '2.7100', '3.5000', '3.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 (48511, '2022-01-04', 2916, 46192, 3298, 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 (48512, '2022-01-04', 2065, 46193, 3298, NULL, '1.0000', '1.6000', '1.6000', '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 (48513, '2022-01-04', 2248, 46194, 3298, 2785, '-3.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 (48514, '2022-01-04', 2248, 46194, 3298, NULL, '4.0000', '2.5000', '2.5000', '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 (48515, '2022-01-04', 2302, 46195, 3298, 2963, '-27.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 (48516, '2022-01-04', 2302, 46195, 3298, NULL, '28.0000', '5.2000', '5.2000', '7.0000', '7.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 (48517, '2022-01-04', 1949, 46196, 3298, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '4.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 (48518, '2022-01-04', 2025, 46197, 3298, 6378, '-2.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 (48519, '2022-01-04', 2025, 46197, 3298, NULL, '3.0000', '4.0000', '4.0000', '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 (48520, '2022-01-04', 1602, 46198, 3298, 5897, '-80.0000', '6.7859', '6.7859', '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 (48521, '2022-01-04', 1602, 46198, 3298, NULL, '81.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48522, '2022-01-04', 2858, 46199, 3298, 17772, '-31.0000', '1.0000', '1.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 (48523, '2022-01-04', 2858, 46199, 3298, NULL, '33.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (48524, '2022-01-04', 2643, 46200, 3298, 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 (48525, '2022-01-04', 9438, 46201, 3298, NULL, '1.0000', '30.0000', '30.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 (48526, '2022-01-04', 2221, 46202, 3298, 4154, '-43.0000', '14.4737', '14.4737', '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 (48527, '2022-01-04', 2221, 46202, 3298, NULL, '44.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48528, '2022-01-04', 1574, 46203, 3298, 7593, '-46.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 (48529, '2022-01-04', 1574, 46203, 3298, NULL, '47.0000', '1.9600', '1.9600', '2.5000', '2.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 (48530, '2022-01-04', 1809, 46204, 3298, 7386, '-6.0000', '9.6000', '9.6000', '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 (48531, '2022-01-04', 1809, 46204, 3298, NULL, '7.0000', '9.6000', '9.6000', '13.0000', '13.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 (48532, '2022-01-04', 7411, 46205, 3298, NULL, '1.0000', '1.3500', '1.3500', '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 (48533, '2022-01-04', 1935, 46206, 3298, 5586, '-52.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 (48534, '2022-01-04', 1935, 46206, 3298, NULL, '53.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (48535, '2022-01-04', 2221, 46207, 3298, 4154, '-43.0000', '14.4737', '14.4737', '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 (48536, '2022-01-04', 2221, 46207, 3298, NULL, '44.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48537, '2022-01-04', 2025, 46208, 3298, 6378, '-2.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 (48538, '2022-01-04', 2025, 46208, 3298, NULL, '4.0000', '4.0000', '4.0000', '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 (48539, '2022-01-04', 2511, 46209, 3298, 9740, '-10.0000', '8.5000', '8.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 (48540, '2022-01-04', 2511, 46209, 3298, NULL, '11.0000', '8.5000', '8.5000', '12.0000', '12.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 (48541, '2022-01-04', 2965, 46210, 3298, NULL, '1.0000', '5.0000', '5.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 (48542, '2022-01-04', 2486, 46211, 3298, 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 (48543, '2022-01-04', 2482, 46212, 3298, 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 (48544, '2022-01-04', 9715, 46213, 3298, NULL, '1.0000', '9.4000', '9.4000', '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 (48545, '2022-01-04', 1612, 46214, 3298, 8732, '-1.0000', '1.6000', '1.6000', '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 (48546, '2022-01-04', 1612, 46214, 3298, 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 (48547, '2022-01-04', 2097, 46215, 3298, 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 (48548, '2022-01-04', 1730, 46216, 3298, 11661, '-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 (48549, '2022-01-04', 1730, 46216, 3298, NULL, '4.0000', '23.9100', '23.9100', '32.0000', '32.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 (48550, '2022-01-04', 2285, 46217, 3298, 2945, '-33.0000', '35.8000', '35.8000', '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 (48551, '2022-01-04', 2285, 46217, 3298, NULL, '34.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-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 (48552, '2022-01-04', 9577, 46218, 3298, NULL, '1.0000', '0.3200', '0.3200', '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 (48553, '2022-01-04', 2865, 46219, 3298, 17692, '-3.0000', '2.8000', '2.8000', '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 (48554, '2022-01-04', 2865, 46219, 3298, NULL, '4.0000', '2.8000', '2.8000', '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 (48555, '2022-01-04', 2036, 46220, 3298, 4277, '-8.0000', '8.0000', '8.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 (48556, '2022-01-04', 2036, 46220, 3298, NULL, '9.0000', '8.0000', '8.0000', '10.0000', '10.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 (48557, '2022-01-04', 1601, 46221, 3298, NULL, '1.0000', '7.7300', '7.7300', '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 (48558, '2022-01-04', 2221, 46222, 3298, 4154, '-43.0000', '14.4737', '14.4737', '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 (48559, '2022-01-04', 2221, 46222, 3298, NULL, '44.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48560, '2022-01-04', 2169, 46223, 3298, 10737, '-9.0000', '3.8397', '3.8397', '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 (48561, '2022-01-04', 2169, 46223, 3298, NULL, '10.0000', '3.8397', '3.8397', '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 (48562, '2022-01-04', 1688, 46224, 3298, 4896, '-8.0000', '18.5000', '18.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 (48563, '2022-01-04', 1688, 46224, 3298, NULL, '9.0000', '18.5000', '18.5000', '25.0000', '25.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 (48564, '2022-01-04', 7585, 46225, 3299, NULL, '1.0000', '6.2000', '6.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 (48565, '2022-01-04', 7674, 46226, 3299, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48566, '2022-01-04', 8566, 46227, 3299, 44480, '2.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48567, '2022-01-04', 8666, 46228, 3299, NULL, '2.0000', '0.4600', '0.4600', '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 (48568, '2022-01-04', 8097, 46229, 3299, 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 (48569, '2022-01-04', 8677, 46230, 3299, NULL, '2.0000', '1.2300', '1.2300', '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 (48570, '2022-01-04', 7526, 46231, 3299, NULL, '1.0000', '0.2400', '0.2400', '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 (48571, '2022-01-04', 2315, 46232, 3299, NULL, '1.0000', '0.4740', '0.4740', '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 (48572, '2022-01-04', 7847, 46233, 3299, 31664, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48573, '2022-01-04', 8063, 46234, 3299, NULL, '1.0000', '20.7988', '20.7988', '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 (48574, '2022-01-04', 1845, 46235, 3299, NULL, '1.0000', '18.8750', '18.8750', '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 (48575, '2022-01-04', 2289, 46236, 3299, NULL, '4.0000', '0.2069', '0.2069', '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 (48576, '2022-01-04', 7411, 46237, 3299, NULL, '2.0000', '1.3460', '1.3460', '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 (48577, '2022-01-04', 8849, 46238, 3299, NULL, '1.0000', '1.0700', '1.0700', '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 (48578, '2022-01-04', 7674, 46239, 3299, NULL, '4.0000', '-115.5436', '-115.5436', '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 (48579, '2022-01-04', 7411, 46240, 3299, NULL, '4.0000', '1.3460', '1.3460', '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 (48580, '2022-01-04', 7750, 46241, 3299, NULL, '1.0000', '35.5900', '35.5900', '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 (48581, '2022-01-04', 7608, 46242, 3299, NULL, '2.0000', '6.9800', '6.9800', '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 (48582, '2022-01-04', 9690, 46243, 3299, 43452, '1.0000', '25.4200', '25.4200', '33.5000', '33.5000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48583, '2022-01-04', 8753, 46244, 3299, 44232, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48584, '2022-01-04', 2079, 46245, 3299, 39400, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48585, '2022-01-04', 7753, 46246, 3299, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48586, '2022-01-04', 7409, 46247, 3299, 44950, '1.0000', '1.5856', '1.5856', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48587, '2022-01-04', 7852, 46248, 3299, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48588, '2022-01-04', 8097, 46249, 3299, 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 (48589, '2022-01-04', 8677, 46250, 3299, NULL, '2.0000', '1.2300', '1.2300', '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 (48590, '2022-01-04', 7412, 46251, 3299, NULL, '2.0000', '1.5200', '1.5200', '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 (48591, '2022-01-04', 7967, 46252, 3299, NULL, '1.0000', '6.1742', '6.1742', '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 (48592, '2022-01-04', 8745, 46253, 3299, 32144, '1.0000', '7.0560', '7.0560', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48593, '2022-01-04', 7592, 46254, 3299, 36046, '1.0000', '14.2175', '14.2175', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48594, '2022-01-04', 9498, 46255, 3299, NULL, '1.0000', '12.5000', '12.5000', '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 (48595, '2022-01-04', 1837, 46256, 3299, NULL, '2.0000', '0.6041', '0.6041', '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 (48596, '2022-01-04', 7473, 46257, 3299, NULL, '6.0000', '25.2998', '25.2998', '0.6000', '0.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 (48597, '2022-01-04', 7438, 46258, 3299, NULL, '1.0000', '36.7600', '36.7600', '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 (48598, '2022-01-04', 8077, 46259, 3299, NULL, '1.0000', '11.5000', '11.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 (48599, '2022-01-04', 8485, 46260, 3299, NULL, '1.0000', '7.0400', '7.0400', '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 (48600, '2022-01-04', 7612, 46261, 3299, NULL, '1.0000', '1.1770', '1.1770', '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 (48601, '2022-01-04', 8737, 46262, 3299, NULL, '1.0000', '9.8000', '9.8000', '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 (48602, '2022-01-04', 9193, 46263, 3299, NULL, '1.0000', '3.2304', '3.2304', '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 (48603, '2022-01-04', 7799, 46264, 3299, NULL, '1.0000', '2.0000', '2.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 (48604, '2022-01-04', 8931, 46265, 3299, NULL, '4.0000', '6.9000', '6.9000', '105.0000', '105.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 (48605, '2022-01-04', 7317, 46266, 3299, NULL, '1.0000', '29.3700', '29.3700', '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 (48606, '2022-01-04', 7355, 46267, 3299, NULL, '1.0000', '11.6400', '11.6400', '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 (48607, '2022-01-04', 8810, 46268, 3299, NULL, '1.0000', '2.1486', '2.1486', '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 (48608, '2022-01-04', 7482, 46269, 3299, NULL, '1.0000', '2.4981', '2.4981', '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 (48609, '2022-01-04', 7755, 46270, 3299, NULL, '1.0000', '-48.8467', '-48.8467', '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 (48610, '2022-01-04', 7887, 46271, 3299, 44820, '1.0000', '18.1224', '18.1224', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48611, '2022-01-04', 9177, 46272, 3299, NULL, '10.0000', '0.8000', '0.8000', '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 (48612, '2022-01-04', 7648, 46273, 3299, 37390, '1.0000', '12.1446', '12.1446', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48613, '2022-01-04', 7514, 46274, 3299, NULL, '2.0000', '17.4792', '17.4792', '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 (48614, '2022-01-04', 7705, 46275, 3299, NULL, '1.0000', '-22.3433', '-22.3433', '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 (48615, '2022-01-04', 7667, 46276, 3299, 43447, '1.0000', '8.6120', '8.6120', '9.0000', '9.0000', '23.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48616, '2022-01-04', 7359, 46277, 3299, NULL, '1.0000', '10.6650', '10.6650', '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 (48617, '2022-01-04', 7672, 46278, 3299, NULL, '1.0000', '1.0200', '1.0200', '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 (48618, '2022-01-04', 7781, 46279, 3299, NULL, '1.0000', '4.2500', '4.2500', '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 (48619, '2022-01-04', 8300, 46280, 3299, NULL, '3.0000', '7.4300', '7.4300', '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 (48620, '2022-01-04', 8065, 46281, 3299, NULL, '1.0000', '32.0000', '32.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 (48621, '2022-01-04', 8359, 46282, 3299, NULL, '1.0000', '87.2313', '87.2313', '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 (48622, '2022-01-04', 7709, 46283, 3299, NULL, '2.0000', '35.8000', '35.8000', '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 (48623, '2022-01-04', 8278, 46284, 3299, NULL, '1.0000', '7.0000', '7.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 (48624, '2022-01-04', 8275, 46285, 3299, NULL, '1.0000', '29.8500', '29.8500', '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 (48625, '2022-01-04', 8140, 46286, 3299, NULL, '1.0000', '6.0500', '6.0500', '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 (48626, '2022-01-04', 7709, 46287, 3299, NULL, '2.0000', '35.8000', '35.8000', '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 (48627, '2022-01-04', 7447, 46288, 3299, NULL, '3.0000', '19.1100', '19.1100', '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 (48628, '2022-01-04', 1760, 46289, 3299, 39629, '2.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48629, '2022-01-04', 8203, 46290, 3299, NULL, '1.0000', '1.0075', '1.0075', '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 (48630, '2022-01-04', 7509, 46291, 3299, NULL, '1.0000', '6.1333', '6.1333', '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 (48631, '2022-01-04', 8247, 46292, 3299, NULL, '6.0000', '54.0000', '54.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 (48632, '2022-01-04', 9292, 46293, 3299, NULL, '1.0000', '3.4000', '3.4000', '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 (48633, '2022-01-04', 7820, 46294, 3299, NULL, '1.0000', '-46.6000', '-46.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48634, '2022-01-04', 8920, 46295, 3299, NULL, '1.0000', '9.8500', '9.8500', '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 (48635, '2022-01-04', 2227, 46296, 3299, 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 (48636, '2022-01-04', 2287, 46297, 3299, NULL, '4.0000', '2.3000', '2.3000', '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 (48637, '2022-01-04', 1339, 46298, 3299, 44865, '1.0000', '1.4952', '1.4952', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48638, '2022-01-04', 8000, 46299, 3299, NULL, '1.0000', '102.6201', '102.6201', '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 (48639, '2022-01-04', 7641, 46300, 3299, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48640, '2022-01-04', 8097, 46301, 3299, 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 (48641, '2022-01-04', 8677, 46302, 3299, NULL, '2.0000', '1.2300', '1.2300', '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 (48642, '2022-01-04', 7885, 46303, 3299, NULL, '1.0000', '-63.3350', '-63.3350', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48643, '2022-01-04', 7560, 46304, 3299, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (48644, '2022-01-04', 7874, 46305, 3299, 33516, '1.0000', '52.9094', '52.9094', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48645, '2022-01-04', 9092, 46306, 3299, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '145.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48646, '2022-01-04', 7892, 46307, 3299, NULL, '1.0000', '4.2000', '4.2000', '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 (48647, '2022-01-04', 8702, 46308, 3299, NULL, '1.0000', '3.6700', '3.6700', '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 (48648, '2022-01-04', 8304, 46309, 3299, NULL, '1.0000', '8.2400', '8.2400', '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 (48649, '2022-01-04', 7643, 46310, 3299, NULL, '1.0000', '2.1100', '2.1100', '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 (48650, '2022-01-04', 7473, 46311, 3299, NULL, '1.0000', '25.2998', '25.2998', '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 (48651, '2022-01-04', 7711, 46312, 3299, NULL, '1.0000', '-78.4806', '-78.4806', '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 (48652, '2022-01-04', 8063, 46313, 3299, NULL, '1.0000', '20.7988', '20.7988', '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 (48653, '2022-01-04', 8000, 46314, 3299, NULL, '1.0000', '102.6201', '102.6201', '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 (48654, '2022-01-04', 7674, 46315, 3299, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48655, '2022-01-04', 7820, 46316, 3299, NULL, '1.0000', '-46.6000', '-46.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48656, '2022-01-04', 7638, 46317, 3299, NULL, '1.0000', '7.6034', '7.6034', '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 (48657, '2022-01-04', 1321, 46318, 3299, NULL, '1.0000', '9.8000', '9.8000', '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 (48658, '2022-01-04', 8944, 46319, 3299, 30168, '1.0000', '38.1200', '38.1200', '51.0000', '51.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48659, '2022-01-04', 9715, 46320, 3299, NULL, '1.0000', '9.4000', '9.4000', '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 (48660, '2022-01-04', 8304, 46321, 3299, NULL, '1.0000', '8.2400', '8.2400', '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 (48661, '2022-01-04', 2289, 46322, 3299, NULL, '2.0000', '0.2069', '0.2069', '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 (48662, '2022-01-04', 1501, 46323, 3299, NULL, '1.0000', '2.2365', '2.2365', '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 (48663, '2022-01-04', 7886, 46324, 3299, NULL, '1.0000', '-8.1003', '-8.1003', '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 (48664, '2022-01-04', 7874, 46325, 3299, 33516, '1.0000', '52.9094', '52.9094', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48665, '2022-01-04', 9691, 46326, 3299, 43453, '1.0000', '57.5200', '57.5200', '76.0000', '76.0000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48666, '2022-01-04', 7401, 46327, 3299, NULL, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48667, '2022-01-04', 2678, 46328, 3299, 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 (48668, '2022-01-04', 8942, 46329, 3299, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48669, '2022-01-04', 8170, 46330, 3299, NULL, '1.0000', '1.4600', '1.4600', '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 (48670, '2022-01-04', 2408, 46331, 3299, NULL, '1.0000', '8.6200', '8.6200', '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 (48671, '2022-01-04', 1854, 46332, 3299, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48672, '2022-01-04', 7848, 46333, 3299, NULL, '1.0000', '1.3500', '1.3500', '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 (48673, '2022-01-04', 8203, 46334, 3299, NULL, '2.0000', '1.0075', '1.0075', '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 (48674, '2022-01-04', 1612, 46335, 3300, 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 (48675, '2022-01-04', 1574, 46336, 3300, NULL, '1.0000', '1.7001', '1.7001', '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 (48676, '2022-01-04', 2169, 46337, 3300, NULL, '1.0000', '1.1500', '1.1500', '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 (48677, '2022-01-04', 1810, 46338, 3300, NULL, '1.0000', '8.5104', '8.5104', '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 (48678, '2022-01-04', 7398, 46339, 3300, NULL, '2.0000', '18.5000', '18.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 (48679, '2022-01-04', 2916, 46340, 3300, NULL, '1.0000', '14.8227', '14.8227', '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 (48680, '2022-01-04', 2092, 46341, 3300, 34585, '1.0000', '4.1583', '4.1583', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48681, '2022-01-04', 7652, 46342, 3300, NULL, '5.0000', '40.3000', '40.3000', '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 (48682, '2022-01-04', 2521, 46343, 3300, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48683, '2022-01-04', 9622, 46344, 3300, 40335, '1.0000', '35.0000', '35.0000', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48684, '2022-01-04', 2346, 46345, 3300, NULL, '1.0000', '5.8000', '5.8000', '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 (48685, '2022-01-04', 8325, 46346, 3300, 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 (48686, '2022-01-04', 7636, 46347, 3300, NULL, '3.0000', '11.8700', '11.8700', '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 (48687, '2022-01-04', 1411, 46348, 3300, 45167, '1.0000', '25.9556', '25.9556', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48688, '2022-01-04', 2492, 46349, 3300, 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 (48689, '2022-01-04', 7530, 46350, 3300, 45187, '1.0000', '0.6506', '0.6506', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48690, '2022-01-04', 2475, 46351, 3300, 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 (48691, '2022-01-04', 9644, 46352, 3300, 41422, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48692, '2022-01-04', 1812, 46353, 3300, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48693, '2022-01-04', 1411, 46354, 3300, 45167, '1.0000', '25.9556', '25.9556', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48694, '2022-01-04', 2250, 46355, 3300, 45146, '1.0000', '6.9650', '6.9650', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48695, '2022-01-04', 2699, 46356, 3300, 43997, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48696, '2022-01-04', 7514, 46357, 3300, NULL, '1.0000', '2.2500', '2.2500', '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 (48697, '2022-01-04', 2332, 46358, 3300, NULL, '1.0000', '5.0900', '5.0900', '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 (48698, '2022-01-04', 2221, 46359, 3300, 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 (48699, '2022-01-04', 1912, 46360, 3300, 41409, '3.0000', '0.6675', '0.6675', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48700, '2022-01-04', 2066, 46361, 3300, 34656, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48701, '2022-01-04', 2277, 46362, 3300, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48702, '2022-01-04', 2088, 46363, 3300, NULL, '1.0000', '1.1450', '1.1450', '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 (48703, '2022-01-04', 2167, 46364, 3300, 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 (48704, '2022-01-04', 9603, 46365, 3300, 44146, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48705, '2022-01-04', 8608, 46366, 3300, NULL, '1.0000', '0.9000', '0.9000', '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 (48706, '2022-01-04', 2411, 46367, 3300, 37795, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48707, '2022-01-04', 1665, 46368, 3300, 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 (48708, '2022-01-04', 8744, 46369, 3300, 43993, '1.0000', '-4.2210', '-4.2210', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48709, '2022-01-04', 1812, 46370, 3300, 41372, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48710, '2022-01-04', 1410, 46371, 3300, NULL, '1.0000', '2.1083', '2.1083', '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 (48711, '2022-01-04', 9608, 46372, 3300, 43246, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48712, '2022-01-04', 8595, 46373, 3300, 43272, '1.0000', '3.9640', '3.9640', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48713, '2022-01-04', 2010, 46374, 3300, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48714, '2022-01-04', 2010, 46375, 3300, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48715, '2022-01-04', 8325, 46376, 3300, 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 (48716, '2022-01-04', 8208, 46377, 3300, NULL, '1.0000', '33.0000', '33.0000', '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 (48717, '2022-01-04', 2250, 46378, 3300, 45146, '1.0000', '6.9650', '6.9650', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48718, '2022-01-04', 1856, 46379, 3300, NULL, '1.0000', '4.2500', '4.2500', '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 (48719, '2022-01-04', 7411, 46380, 3300, NULL, '1.0000', '1.3466', '1.3466', '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 (48720, '2022-01-04', 8476, 46381, 3300, NULL, '2.0000', '23.0000', '23.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 (48721, '2022-01-04', 2943, 46382, 3300, 38528, '1.0000', '2.8077', '2.8077', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48722, '2022-01-04', 7482, 46383, 3300, 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 (48723, '2022-01-04', 2072, 46384, 3300, 34600, '1.0000', '8.1200', '8.1200', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48724, '2022-01-04', 7780, 46385, 3300, NULL, '1.0000', '2.6000', '2.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 (48725, '2022-01-04', 1502, 46386, 3300, 42838, '1.0000', '-50.9143', '-50.9143', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48726, '2022-01-04', 9482, 46387, 3300, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48727, '2022-01-04', 8677, 46388, 3301, NULL, '2.0000', '89.9250', '89.9250', '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 (48728, '2022-01-04', 1935, 46389, 3301, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48729, '2022-01-04', 1667, 46390, 3301, 43254, '2.0000', '22.4947', '22.4947', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48730, '2022-01-04', 7411, 46391, 3301, NULL, '1.0000', '1.3466', '1.3466', '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 (48731, '2022-01-04', 2342, 46392, 3302, 19387, '20.0000', '1.8601', '1.8601', '2.6000', '2.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 (48732, '2022-01-04', 2354, 46393, 3303, NULL, '1.0000', '5.0600', '5.0600', '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 (48733, '2022-01-04', 7472, 46394, 3303, 39768, '1.0000', '4.2055', '4.2055', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48734, '2022-01-04', 8155, 46395, 3303, NULL, '2.0000', '65.0000', '65.0000', '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 (48735, '2022-01-04', 2360, 46396, 3303, NULL, '3.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (48736, '2022-01-04', 1854, 46397, 3303, NULL, '2.0000', '2.5000', '2.5000', '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 (48737, '2022-01-04', 2231, 46398, 3303, NULL, '1.0000', '33.9999', '33.9999', '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 (48738, '2022-01-04', 1665, 46399, 3303, 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 (48739, '2022-01-04', 2379, 46400, 3303, 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 (48740, '2022-01-04', 7799, 46401, 3303, NULL, '1.0000', '2.0000', '2.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 (48741, '2022-01-04', 8638, 46402, 3303, NULL, '3.0000', '0.5100', '0.5100', '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 (48742, '2022-01-04', 2315, 46403, 3303, NULL, '3.0000', '0.8556', '0.8556', '0.6000', '0.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 (48743, '2022-01-04', 2999, 46404, 3303, 31104, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48744, '2022-01-04', 9533, 46405, 3304, 39431, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48745, '2022-01-04', 1904, 46406, 3304, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48746, '2022-01-04', 9532, 46407, 3304, 39429, '1.0000', '15.0000', '15.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48747, '2022-01-04', 7548, 46408, 3304, NULL, '1.0000', '-10.4600', '-10.4600', '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 (48748, '2022-01-04', 1311, 46409, 3304, 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 (48749, '2022-01-04', 7743, 46410, 3304, NULL, '2.0000', '419203.7668', '419203.7668', '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 (48750, '2022-01-04', 2458, 46411, 3304, NULL, '1.0000', '7.0000', '7.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 (48751, '2022-01-04', 7666, 46412, 3304, NULL, '1.0000', '0.4000', '0.4000', '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 (48752, '2022-01-04', 7428, 46413, 3304, NULL, '4.0000', '744.9056', '744.9056', '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 (48753, '2022-01-04', 2315, 46414, 3304, NULL, '1.0000', '0.4740', '0.4740', '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 (48754, '2022-01-04', 7674, 46415, 3304, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48755, '2022-01-04', 9337, 46416, 3304, 44951, '2.0000', '-1.0224', '-1.0224', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48756, '2022-01-04', 7672, 46417, 3304, NULL, '1.0000', '1.0200', '1.0200', '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 (48757, '2022-01-04', 2245, 46418, 3304, 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 (48758, '2022-01-04', 7703, 46419, 3304, NULL, '1.0000', '22.9900', '22.9900', '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 (48759, '2022-01-04', 9294, 46420, 3304, 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 (48760, '2022-01-04', 2284, 46421, 3304, 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 (48761, '2022-01-04', 7713, 46422, 3304, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48762, '2022-01-04', 2332, 46423, 3304, NULL, '1.0000', '5.0900', '5.0900', '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 (48763, '2022-01-04', 1420, 46424, 3304, 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 (48764, '2022-01-04', 7411, 46425, 3304, NULL, '2.0000', '1.3460', '1.3460', '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 (48765, '2022-01-04', 7886, 46426, 3304, NULL, '1.0000', '-8.1003', '-8.1003', '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 (48766, '2022-01-04', 2547, 46427, 3304, 39647, '1.0000', '9.5202', '9.5202', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48767, '2022-01-04', 2405, 46428, 3305, 40158, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '46.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48768, '2022-01-04', 2483, 46429, 3305, 5195, '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 (48769, '2022-01-04', 7318, 46430, 3305, 44769, '1.0000', '10.4167', '10.4167', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48770, '2022-01-04', 7707, 46431, 3305, NULL, '1.0000', '5.9900', '5.9900', '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 (48771, '2022-01-04', 2237, 46432, 3305, 40644, '2.0000', '1.3451', '1.3451', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48772, '2022-01-04', 2660, 46433, 3305, 42944, '7.0000', '0.7000', '0.7000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48773, '2022-01-04', 1434, 46434, 3305, 18447, '1.0000', '14.5000', '14.5000', '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 (48774, '2022-01-04', 1863, 46435, 3305, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '123.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48775, '2022-01-04', 2916, 46436, 3305, 45075, '1.0000', '13.6740', '13.6740', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48776, '2022-01-04', 2169, 46437, 3305, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48777, '2022-01-04', 2416, 46438, 3305, 44039, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48778, '2022-01-04', 2486, 46439, 3305, 21821, '2.0000', '4.0000', '4.0000', '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 (48779, '2022-01-04', 1564, 46440, 3305, 44767, '1.0000', '10.2805', '10.2805', '4.0000', '4.0000', '144.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48780, '2022-01-04', 1651, 46441, 3305, 44714, '1.0000', '6.8545', '6.8545', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48781, '2022-01-04', 8711, 46442, 3305, NULL, '1.0000', '5.1000', '5.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 (48782, '2022-01-04', 7741, 46443, 3305, NULL, '1.0000', '1.2000', '1.2000', '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 (48783, '2022-01-04', 1863, 46444, 3305, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '124.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48784, '2022-01-04', 9577, 46445, 3305, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48785, '2022-01-04', 2169, 46446, 3305, 45082, '2.0000', '1.1234', '1.1234', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48786, '2022-01-04', 1935, 46447, 3305, 44781, '2.0000', '3.0998', '3.0998', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48787, '2022-01-04', 2277, 46448, 3305, 38069, '2.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48788, '2022-01-04', 1810, 46449, 3305, 44619, '1.0000', '8.5625', '8.5625', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48789, '2022-01-04', 1504, 46450, 3305, NULL, '20.0000', '-2.1529', '-2.1529', '2.2000', '2.2000', '-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 (48790, '2022-01-04', 2858, 46451, 3305, 17780, '1.0000', '1.0000', '1.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 (48791, '2022-01-04', 2659, 46452, 3305, 12043, '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 (48792, '2022-01-04', 1304, 46453, 3305, 2475, '1.0000', '1.4500', '1.4500', '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 (48793, '2022-01-04', 9643, 46454, 3305, 41992, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48794, '2022-01-04', 9311, 46455, 3305, 40379, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48795, '2022-01-04', 9275, 46456, 3305, NULL, '1.0000', '6.3000', '6.3000', '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 (48796, '2022-01-04', 2327, 46457, 3305, 45068, '2.0000', '16.5543', '16.5543', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48797, '2022-01-04', 1602, 46458, 3305, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '34.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48798, '2022-01-04', 1555, 46459, 3305, 44601, '1.0000', '80.1191', '80.1191', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48799, '2022-01-04', 7756, 46460, 3305, NULL, '1.0000', '23.9111', '23.9111', '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 (48800, '2022-01-04', 2929, 46461, 3305, 19028, '1.0000', '46.7300', '46.7300', '90.0000', '90.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48801, '2022-01-04', 2342, 46462, 3306, 19387, '4.0000', '1.8601', '1.8601', '2.6000', '2.6000', '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 (48802, '2022-01-04', 8454, 46463, 3306, NULL, '1.0000', '3.7420', '3.7420', '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 (48803, '2022-01-04', 2315, 46464, 3306, NULL, '1.0000', '0.8556', '0.8556', '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 (48804, '2022-01-04', 2135, 46465, 3307, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48805, '2022-01-04', 1631, 46466, 3308, 13535, '1.0000', '90.0000', '90.0000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48806, '2022-01-04', 1665, 46467, 3309, 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 (48807, '2022-01-04', 9273, 46468, 3310, NULL, '2.0000', '0.3500', '0.3500', '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 (48808, '2022-01-04', 1760, 46469, 3310, 39629, '1.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48809, '2022-01-04', 1760, 46469, 3310, 34509, '1.0000', '-8681.5917', '-8681.5917', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48810, '2022-01-04', 1760, 46469, 3310, NULL, '1.0000', '-8681.5917', '-8681.5917', '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 (48811, '2022-01-04', 7781, 46470, 3310, NULL, '3.0000', '4.2500', '4.2500', '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 (48812, '2022-01-04', 7892, 46471, 3310, NULL, '1.0000', '4.2000', '4.2000', '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 (48813, '2022-01-04', 1351, 46472, 3310, NULL, '1.0000', '40.0300', '40.0300', '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 (48814, '2022-01-04', 8000, 46473, 3310, NULL, '1.0000', '102.6201', '102.6201', '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 (48815, '2022-01-04', 7564, 46474, 3310, 30930, '2.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48816, '2022-01-04', 7674, 46475, 3310, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48817, '2022-01-04', 2750, 46476, 3311, NULL, '5.0000', '0.5500', '0.5500', '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 (48818, '2022-01-04', 8965, 46477, 3312, NULL, '1.0000', '52.9900', '52.9900', '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 (48819, '2022-01-04', 7685, 46478, 3312, NULL, '2.0000', '31.2000', '31.2000', '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 (48820, '2022-01-04', 9214, 46479, 3312, 43937, '1.0000', '9.4452', '9.4452', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48821, '2022-01-04', 9468, 46480, 3312, 32155, '1.0000', '17.5000', '17.5000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48822, '2022-01-04', 2699, 46481, 3312, 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 (48823, '2022-01-05', 2221, 46482, 3313, 4154, '-46.0000', '14.4737', '14.4737', '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 (48824, '2022-01-05', 2221, 46482, 3313, NULL, '47.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (48825, '2022-01-05', 9373, 46483, 3313, NULL, '1.0000', '46.7300', '46.7300', '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 (48826, '2022-01-05', 1410, 46484, 3313, 22317, '2.0000', '2.2000', '2.2000', '3.5000', '3.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 (48827, '2022-01-05', 7362, 46485, 3314, 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 (48828, '2022-01-05', 2916, 46486, 3314, 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 (48829, '2022-01-05', 8566, 46487, 3314, 33072, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48830, '2022-01-05', 9577, 46488, 3314, NULL, '1.0000', '0.3200', '0.3200', '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 (48831, '2022-01-05', 2108, 46489, 3314, 1052, '1.0000', '4.7500', '4.7500', '5.0000', '5.0000', '15.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 (48832, '2022-01-05', 2074, 46490, 3314, 202, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.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 (48833, '2022-01-05', 2284, 46491, 3314, 22249, '2.0000', '1.3000', '1.3000', '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 (48834, '2022-01-05', 1854, 46492, 3314, 22240, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '13.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 (48835, '2022-01-05', 1555, 46493, 3314, NULL, '1.0000', '22.2400', '22.2400', '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 (48836, '2022-01-05', 1342, 46494, 3314, 11264, '-7.0000', '6.8074', '6.8074', '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 (48837, '2022-01-05', 1342, 46494, 3314, NULL, '8.0000', '6.8074', '6.8074', '7.5000', '7.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 (48838, '2022-01-05', 1618, 46495, 3314, 8737, '-5.0000', '11.8200', '11.8200', '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 (48839, '2022-01-05', 1618, 46495, 3314, NULL, '6.0000', '11.8200', '11.8200', '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 (48840, '2022-01-05', 1845, 46496, 3314, 6222, '-11.0000', '19.5000', '19.5000', '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 (48841, '2022-01-05', 1845, 46496, 3314, NULL, '12.0000', '19.5000', '19.5000', '26.5000', '26.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 (48842, '2022-01-05', 2221, 46497, 3314, 4154, '-47.0000', '14.4737', '14.4737', '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 (48843, '2022-01-05', 2221, 46497, 3314, NULL, '48.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48844, '2022-01-05', 1355, 46498, 3314, 18819, '1.0000', '17.6200', '17.6200', '23.5000', '23.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 (48845, '2022-01-05', 1760, 46499, 3314, 22256, '3.0000', '111.8384', '111.8384', '1.0000', '1.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 (48846, '2022-01-05', 1529, 46500, 3314, 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 (48847, '2022-01-05', 1557, 46501, 3314, 1628, '-5.0000', '7.9500', '7.9500', '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 (48848, '2022-01-05', 1557, 46501, 3314, NULL, '6.0000', '7.9500', '7.9500', '11.0000', '11.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 (48849, '2022-01-05', 7825, 46502, 3314, NULL, '1.0000', '6.5000', '6.5000', '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 (48850, '2022-01-05', 1675, 46503, 3314, NULL, '1.0000', '21.3600', '21.3600', '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 (48851, '2022-01-05', 7638, 46504, 3314, 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 (48852, '2022-01-05', 1426, 46505, 3314, 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 (48853, '2022-01-05', 2712, 46506, 3314, 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 (48854, '2022-01-05', 7725, 46507, 3314, 33062, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48855, '2022-01-05', 1602, 46508, 3314, 5897, '-81.0000', '6.7859', '6.7859', '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 (48856, '2022-01-05', 1602, 46508, 3314, NULL, '82.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48857, '2022-01-05', 1746, 46509, 3315, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (48858, '2022-01-05', 2810, 46510, 3315, 24933, '1.0000', '6788008906.4158', '6788008906.4158', '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 (48859, '2022-01-05', 2810, 46510, 3315, 24934, '1.0000', '6788008906.4158', '6788008906.4158', '3.0000', '3.0000', '29.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 (48860, '2022-01-05', 2643, 46511, 3315, 45273, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48861, '2022-01-05', 3058, 46512, 3315, 44426, '1.0000', '2.3000', '2.3000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 316);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48862, '2022-01-05', 1910, 46513, 3315, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (48863, '2022-01-05', 9631, 46514, 3315, 41419, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48864, '2022-01-05', 7626, 46515, 3315, 43234, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48865, '2022-01-05', 1947, 46516, 3315, 42574, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48866, '2022-01-05', 8177, 46517, 3315, NULL, '1.0000', '12.9000', '12.9000', '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 (48867, '2022-01-05', 2169, 46518, 3315, NULL, '1.0000', '1.1500', '1.1500', '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 (48868, '2022-01-05', 2284, 46519, 3315, 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 (48869, '2022-01-05', 1307, 46520, 3315, NULL, '1.0000', '1.7846', '1.7846', '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 (48870, '2022-01-05', 2962, 46521, 3315, 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 (48871, '2022-01-05', 8065, 46522, 3315, NULL, '1.0000', '32.0000', '32.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 (48872, '2022-01-05', 7533, 46523, 3315, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48873, '2022-01-05', 8133, 46524, 3315, NULL, '1.0000', '-618.7699', '-618.7699', '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 (48874, '2022-01-05', 1520, 46525, 3315, 44064, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48875, '2022-01-05', 8065, 46526, 3315, NULL, '1.0000', '32.0000', '32.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 (48876, '2022-01-05', 3054, 46527, 3315, NULL, '3.0000', '7.0000', '7.0000', '9.5000', '9.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 (48877, '2022-01-05', 2353, 46528, 3315, 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 (48878, '2022-01-05', 2315, 46529, 3315, NULL, '2.0000', '0.8556', '0.8556', '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 (48879, '2022-01-05', 2283, 46530, 3315, 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 (48880, '2022-01-05', 1762, 46531, 3315, 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 (48881, '2022-01-05', 2623, 46532, 3315, NULL, '1.0000', '0.6000', '0.6000', '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 (48882, '2022-01-05', 2226, 46533, 3315, 42632, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48883, '2022-01-05', 2224, 46534, 3315, 42633, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48884, '2022-01-05', 1501, 46535, 3315, NULL, '1.0000', '2.2100', '2.2100', '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 (48885, '2022-01-05', 2237, 46536, 3315, NULL, '1.0000', '-329.8285', '-329.8285', '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 (48886, '2022-01-05', 1863, 46537, 3315, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48887, '2022-01-05', 1800, 46538, 3315, NULL, '1.0000', '194.6400', '194.6400', '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 (48888, '2022-01-05', 1825, 46539, 3315, NULL, '1.0000', '5.6075', '5.6075', '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 (48889, '2022-01-05', 7609, 46540, 3315, NULL, '1.0000', '4.3300', '4.3300', '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 (48890, '2022-01-05', 2989, 46541, 3315, 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 (48891, '2022-01-05', 1435, 46542, 3315, NULL, '1.0000', '22.5000', '22.5000', '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 (48892, '2022-01-05', 1854, 46543, 3315, 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 (48893, '2022-01-05', 2279, 46544, 3315, 23106, '2.0000', '2.6000', '2.6000', '4.0000', '4.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 (48894, '2022-01-05', 2821, 46545, 3315, NULL, '1.0000', '3.6016', '3.6016', '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 (48895, '2022-01-05', 2916, 46546, 3315, NULL, '1.0000', '14.8227', '14.8227', '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 (48896, '2022-01-05', 1806, 46547, 3315, 38550, '1.0000', '34.3245', '34.3245', '37.5000', '37.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48897, '2022-01-05', 1425, 46548, 3315, 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 (48898, '2022-01-05', 2436, 46549, 3315, 22556, '1.0000', '11.5000', '11.5000', '15.0000', '15.0000', '1.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 (48899, '2022-01-05', 2566, 46550, 3315, 39980, '1.0000', '16.0625', '16.0625', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48900, '2022-01-05', 1519, 46551, 3315, NULL, '1.0000', '3.3980', '3.3980', '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 (48901, '2022-01-05', 1787, 46552, 3315, 39911, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48902, '2022-01-05', 1425, 46553, 3315, 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 (48903, '2022-01-05', 7514, 46554, 3315, NULL, '2.0000', '2.2500', '2.2500', '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 (48904, '2022-01-05', 1941, 46555, 3315, 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 (48905, '2022-01-05', 2247, 46556, 3315, 42802, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48906, '2022-01-05', 7362, 46557, 3316, 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 (48907, '2022-01-05', 2916, 46558, 3316, 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 (48908, '2022-01-05', 8566, 46559, 3316, 33072, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48909, '2022-01-05', 9577, 46560, 3316, NULL, '1.0000', '0.3200', '0.3200', '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 (48910, '2022-01-05', 2108, 46561, 3316, 1052, '1.0000', '4.7500', '4.7500', '5.0000', '5.0000', '14.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 (48911, '2022-01-05', 2074, 46562, 3316, 202, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '6.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 (48912, '2022-01-05', 2284, 46563, 3316, 22249, '2.0000', '1.3000', '1.3000', '2.0000', '2.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 (48913, '2022-01-05', 1854, 46564, 3316, 22240, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '12.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 (48914, '2022-01-05', 1555, 46565, 3316, 1626, '-1.0000', '22.2400', '22.2400', '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 (48915, '2022-01-05', 1555, 46565, 3316, NULL, '2.0000', '22.2400', '22.2400', '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 (48916, '2022-01-05', 1342, 46566, 3316, 11264, '-8.0000', '6.8074', '6.8074', '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 (48917, '2022-01-05', 1342, 46566, 3316, NULL, '9.0000', '6.8074', '6.8074', '7.5000', '7.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 (48918, '2022-01-05', 1618, 46567, 3316, 8737, '-6.0000', '11.8200', '11.8200', '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 (48919, '2022-01-05', 1618, 46567, 3316, NULL, '7.0000', '11.8200', '11.8200', '16.0000', '16.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 (48920, '2022-01-05', 1845, 46568, 3316, 6222, '-12.0000', '19.5000', '19.5000', '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 (48921, '2022-01-05', 1845, 46568, 3316, NULL, '13.0000', '19.5000', '19.5000', '26.5000', '26.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 (48922, '2022-01-05', 2221, 46569, 3316, 4154, '-48.0000', '14.4737', '14.4737', '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 (48923, '2022-01-05', 2221, 46569, 3316, NULL, '49.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48924, '2022-01-05', 1355, 46570, 3316, 18819, '1.0000', '17.6200', '17.6200', '23.5000', '23.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 (48925, '2022-01-05', 1760, 46571, 3316, 22256, '3.0000', '111.8384', '111.8384', '1.0000', '1.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 (48926, '2022-01-05', 1529, 46572, 3316, 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 (48927, '2022-01-05', 1557, 46573, 3316, 1628, '-6.0000', '7.9500', '7.9500', '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 (48928, '2022-01-05', 1557, 46573, 3316, NULL, '7.0000', '7.9500', '7.9500', '11.0000', '11.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 (48929, '2022-01-05', 7825, 46574, 3316, NULL, '1.0000', '6.5000', '6.5000', '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 (48930, '2022-01-05', 1675, 46575, 3316, NULL, '1.0000', '21.3600', '21.3600', '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 (48931, '2022-01-05', 7638, 46576, 3316, 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 (48932, '2022-01-05', 1426, 46577, 3316, 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 (48933, '2022-01-05', 2712, 46578, 3316, 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 (48934, '2022-01-05', 7725, 46579, 3316, 33062, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48935, '2022-01-05', 1602, 46580, 3316, 5897, '-82.0000', '6.7859', '6.7859', '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 (48936, '2022-01-05', 1602, 46580, 3316, NULL, '83.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48937, '2022-01-05', 1426, 46581, 3317, 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 (48938, '2022-01-05', 8721, 46582, 3317, NULL, '1.0000', '3.0000', '3.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 (48939, '2022-01-05', 1904, 46583, 3318, 37842, '2.0000', '27.8194', '27.8194', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48940, '2022-01-05', 1331, 46584, 3318, 226, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48941, '2022-01-05', 7799, 46585, 3318, NULL, '1.0000', '2.0000', '2.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 (48942, '2022-01-05', 8660, 46586, 3318, 30217, '1.0000', '20.0500', '20.0500', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48943, '2022-01-05', 2289, 46587, 3318, NULL, '10.0000', '0.2069', '0.2069', '0.5000', '0.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 (48944, '2022-01-05', 7967, 46588, 3318, NULL, '1.0000', '5.2452', '5.2452', '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 (48945, '2022-01-05', 2315, 46589, 3318, NULL, '1.0000', '0.4740', '0.4740', '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 (48946, '2022-01-05', 7685, 46590, 3318, NULL, '1.0000', '31.2000', '31.2000', '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 (48947, '2022-01-05', 7640, 46591, 3318, NULL, '1.0000', '7.4344', '7.4344', '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 (48948, '2022-01-05', 7820, 46592, 3318, NULL, '1.0000', '-46.6000', '-46.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48949, '2022-01-05', 7777, 46593, 3318, NULL, '1.0000', '9.5000', '9.5000', '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 (48950, '2022-01-05', 2100, 46594, 3318, 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 (48951, '2022-01-05', 8720, 46595, 3318, NULL, '1.0000', '31.1100', '31.1100', '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 (48952, '2022-01-05', 7672, 46596, 3318, NULL, '3.0000', '1.0200', '1.0200', '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 (48953, '2022-01-05', 8765, 46597, 3318, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48954, '2022-01-05', 3001, 46598, 3318, NULL, '2.0000', '1.5000', '1.5000', '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 (48955, '2022-01-05', 7411, 46599, 3318, NULL, '2.0000', '1.3460', '1.3460', '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 (48956, '2022-01-05', 1916, 46600, 3318, 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 (48957, '2022-01-05', 7671, 46601, 3318, NULL, '1.0000', '19.4429', '19.4429', '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 (48958, '2022-01-05', 7412, 46602, 3318, NULL, '1.0000', '1.5200', '1.5200', '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 (48959, '2022-01-05', 8401, 46603, 3318, NULL, '1.0000', '13.7163', '13.7163', '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 (48960, '2022-01-05', 8452, 46604, 3318, NULL, '1.0000', '4.1500', '4.1500', '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 (48961, '2022-01-05', 9656, 46605, 3318, 42665, '1.0000', '33.0000', '33.0000', '43.5000', '43.5000', '1.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48962, '2022-01-05', 7519, 46606, 3318, 43150, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48963, '2022-01-05', 8918, 46607, 3318, 45352, '1.0000', '1.6807', '1.6807', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48964, '2022-01-05', 7353, 46608, 3318, NULL, '1.0000', '7078.0785', '7078.0785', '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 (48965, '2022-01-05', 7819, 46609, 3318, NULL, '1.0000', '10.1667', '10.1667', '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 (48966, '2022-01-05', 7638, 46610, 3318, 45317, '1.0000', '12.8793', '12.8793', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48967, '2022-01-05', 8485, 46611, 3318, NULL, '1.0000', '7.0400', '7.0400', '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 (48968, '2022-01-05', 1541, 46612, 3318, NULL, '1.0000', '132.6000', '132.6000', '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 (48969, '2022-01-05', 1303, 46613, 3318, 33727, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '87.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48970, '2022-01-05', 1837, 46614, 3318, NULL, '2.0000', '0.6041', '0.6041', '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 (48971, '2022-01-05', 7799, 46615, 3318, NULL, '1.0000', '2.0000', '2.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 (48972, '2022-01-05', 7674, 46616, 3318, NULL, '1.0000', '-115.5436', '-115.5436', '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 (48973, '2022-01-05', 7609, 46617, 3318, NULL, '1.0000', '4.3300', '4.3300', '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 (48974, '2022-01-05', 7694, 46618, 3318, NULL, '10.0000', '4.7900', '4.7900', '3.5000', '3.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 (48975, '2022-01-05', 7439, 46619, 3318, 30052, '1.0000', '2.0000', '2.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48976, '2022-01-05', 1845, 46620, 3318, NULL, '1.0000', '16.0625', '16.0625', '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 (48977, '2022-01-05', 7848, 46621, 3318, NULL, '1.0000', '-1.8447', '-1.8447', '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 (48978, '2022-01-05', 8744, 46622, 3318, 44478, '2.0000', '3.5260', '3.5260', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48979, '2022-01-05', 8188, 46623, 3318, NULL, '1.0000', '6.7000', '6.7000', '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 (48980, '2022-01-05', 3018, 46624, 3319, 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 (48981, '2022-01-05', 7459, 46625, 3319, NULL, '6.0000', '40.3500', '40.3500', '3.0000', '3.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 (48982, '2022-01-05', 2868, 46626, 3319, 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 (48983, '2022-01-05', 1338, 46627, 3319, 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 (48984, '2022-01-05', 8359, 46628, 3319, NULL, '1.0000', '87.2313', '87.2313', '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 (48985, '2022-01-05', 7640, 46629, 3319, NULL, '1.0000', '7.4344', '7.4344', '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 (48986, '2022-01-05', 7518, 46630, 3319, NULL, '2.0000', '-112.5817', '-112.5817', '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 (48987, '2022-01-05', 8065, 46631, 3319, NULL, '1.0000', '32.0000', '32.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 (48988, '2022-01-05', 9154, 46632, 3319, NULL, '1.0000', '10.6800', '10.6800', '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 (48989, '2022-01-05', 7778, 46633, 3319, NULL, '1.0000', '17.8220', '17.8220', '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 (48990, '2022-01-05', 1519, 46634, 3319, 38425, '1.0000', '3.3678', '3.3678', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48991, '2022-01-05', 1763, 46635, 3319, 37436, '1.0000', '4.8157', '4.8157', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48992, '2022-01-05', 2290, 46636, 3319, 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 (48993, '2022-01-05', 2995, 46637, 3319, NULL, '3.0000', '13.2500', '13.2500', '18.0000', '18.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 (48994, '2022-01-05', 7652, 46638, 3319, NULL, '2.0000', '40.3000', '40.3000', '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 (48995, '2022-01-05', 7643, 46639, 3319, NULL, '1.0000', '2.1100', '2.1100', '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 (48996, '2022-01-05', 7991, 46640, 3319, NULL, '1.0000', '26.5700', '26.5700', '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 (48997, '2022-01-05', 7339, 46641, 3319, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (48998, '2022-01-05', 1671, 46642, 3319, NULL, '1.0000', '90.0000', '90.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 (48999, '2022-01-05', 2315, 46643, 3319, NULL, '2.0000', '0.4740', '0.4740', '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 (49000, '2022-01-05', 7411, 46644, 3319, NULL, '2.0000', '1.3460', '1.3460', '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 (49001, '2022-01-05', 7848, 46645, 3319, NULL, '1.0000', '-1.8447', '-1.8447', '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 (49002, '2022-01-05', 7482, 46646, 3319, NULL, '1.0000', '1.2449', '1.2449', '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 (49003, '2022-01-05', 7959, 46647, 3319, NULL, '2.0000', '9.6000', '9.6000', '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 (49004, '2022-01-05', 2315, 46648, 3319, NULL, '1.0000', '0.4740', '0.4740', '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 (49005, '2022-01-05', 8296, 46649, 3319, NULL, '1.0000', '11.7600', '11.7600', '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 (49006, '2022-01-05', 7703, 46650, 3319, NULL, '1.0000', '22.9900', '22.9900', '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 (49007, '2022-01-05', 8359, 46651, 3319, NULL, '1.0000', '87.2313', '87.2313', '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 (49008, '2022-01-05', 7507, 46652, 3319, NULL, '2.0000', '6.5000', '6.5000', '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 (49009, '2022-01-05', 7473, 46653, 3319, NULL, '5.0000', '38.3365', '38.3365', '0.6000', '0.6000', '-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 (49010, '2022-01-05', 8720, 46654, 3319, NULL, '1.0000', '31.1100', '31.1100', '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 (49011, '2022-01-05', 7830, 46655, 3319, NULL, '1.0000', '10.0000', '10.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 (49012, '2022-01-05', 8731, 46656, 3319, NULL, '1.0000', '11.0000', '11.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 (49013, '2022-01-05', 1339, 46657, 3319, 44865, '1.0000', '1.4952', '1.4952', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49014, '2022-01-05', 8756, 46658, 3319, 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 (49015, '2022-01-05', 2287, 46659, 3319, NULL, '4.0000', '2.3000', '2.3000', '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 (49016, '2022-01-05', 8858, 46660, 3319, NULL, '2.0000', '27.7076', '27.7076', '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 (49017, '2022-01-05', 7641, 46661, 3319, NULL, '3.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-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 (49018, '2022-01-05', 7674, 46662, 3319, NULL, '1.0000', '-115.5436', '-115.5436', '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 (49019, '2022-01-05', 8769, 46663, 3319, 43938, '2.0000', '6.6000', '6.6000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49020, '2022-01-05', 9311, 46664, 3319, 39417, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49021, '2022-01-05', 1626, 46665, 3320, 40655, '1.0000', '7.5900', '7.5900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49022, '2022-01-05', 1787, 46666, 3320, 40215, '1.0000', '0.8100', '0.8100', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49023, '2022-01-05', 1840, 46667, 3320, NULL, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49024, '2022-01-05', 7328, 46668, 3320, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (49025, '2022-01-05', 8518, 46669, 3320, NULL, '1.0000', '17.6400', '17.6400', '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 (49026, '2022-01-05', 1521, 46670, 3320, 40904, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49027, '2022-01-05', 2657, 46671, 3320, 11408, '1.0000', '5.4200', '5.4200', '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 (49028, '2022-01-05', 8084, 46672, 3320, NULL, '1.0000', '11.7200', '11.7200', '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 (49029, '2022-01-05', 7411, 46673, 3320, NULL, '1.0000', '1.3500', '1.3500', '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 (49030, '2022-01-05', 1694, 46674, 3320, 31707, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49031, '2022-01-05', 1310, 46675, 3320, 44625, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49032, '2022-01-05', 7609, 46676, 3320, NULL, '1.0000', '4.3300', '4.3300', '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 (49033, '2022-01-05', 1510, 46677, 3320, NULL, '1.0000', '29.8200', '29.8200', '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 (49034, '2022-01-05', 9628, 46678, 3320, 40391, '1.0000', '46.1200', '46.1200', '55.0000', '55.0000', '7.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49035, '2022-01-05', 1669, 46679, 3320, 44717, '14.0000', '42.6857', '42.6857', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49036, '2022-01-05', 2414, 46680, 3320, NULL, '4.0000', '3.8350', '3.8350', '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 (49037, '2022-01-05', 7928, 46681, 3321, NULL, '2.0000', '1.2000', '1.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 (49038, '2022-01-05', 1837, 46682, 3321, 44787, '2.0000', '0.4630', '0.4630', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49039, '2022-01-05', 1863, 46683, 3321, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '121.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49040, '2022-01-05', 2020, 46684, 3321, 44618, '1.0000', '-5.0518', '-5.0518', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49041, '2022-01-05', 9469, 46685, 3322, 39422, '1.0000', '2.3000', '2.3000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49042, '2022-01-05', 8746, 46686, 3322, 39419, '2.0000', '3.5400', '3.5400', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49043, '2022-01-05', 7548, 46687, 3322, NULL, '1.0000', '-10.4600', '-10.4600', '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 (49044, '2022-01-05', 9694, 46688, 3322, 43966, '1.0000', '16.3000', '16.3000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49045, '2022-01-05', 8407, 46689, 3322, 44883, '1.0000', '0.8578', '0.8578', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49046, '2022-01-05', 7680, 46690, 3322, NULL, '1.0000', '0.5100', '0.5100', '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 (49047, '2022-01-05', 1807, 46691, 3323, NULL, '4.0000', '2.3000', '2.3000', '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 (49048, '2022-01-05', 1536, 46692, 3323, 37564, '14.0000', '90.4026', '90.4026', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49049, '2022-01-05', 1621, 46693, 3323, 44615, '1.0000', '46.2610', '46.2610', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49050, '2022-01-05', 1807, 46694, 3323, NULL, '6.0000', '2.3000', '2.3000', '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 (49051, '2022-01-05', 2221, 46695, 3323, 45118, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '23.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49052, '2022-01-05', 2991, 46696, 3323, 34701, '2.0000', '-0.0569', '-0.0569', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49053, '2022-01-05', 1687, 46697, 3323, 44599, '1.0000', '11.6845', '11.6845', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49054, '2022-01-05', 1807, 46698, 3323, NULL, '2.0000', '2.3000', '2.3000', '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 (49055, '2022-01-05', 2036, 46699, 3323, 40347, '2.0000', '8.0000', '8.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49056, '2022-01-05', 7411, 46700, 3323, NULL, '1.0000', '1.3500', '1.3500', '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 (49057, '2022-01-05', 2712, 46701, 3323, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '24.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49058, '2022-01-05', 2280, 46702, 3323, 44766, '1.0000', '2.9290', '2.9290', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49059, '2022-01-05', 1845, 46703, 3323, 45111, '2.0000', '20.0352', '20.0352', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49060, '2022-01-05', 8736, 46704, 3323, NULL, '1.0000', '3.4000', '3.4000', '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 (49061, '2022-01-05', 2327, 46705, 3323, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49062, '2022-01-05', 7728, 46706, 3323, NULL, '1.0000', '1.8000', '1.8000', '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 (49063, '2022-01-05', 2858, 46707, 3323, 17780, '1.0000', '1.0000', '1.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 (49064, '2022-01-05', 8469, 46708, 3323, NULL, '1.0000', '15.0000', '15.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 (49065, '2022-01-05', 2280, 46709, 3323, 44766, '1.0000', '2.9290', '2.9290', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49066, '2022-01-06', 9469, 46710, 3324, 39422, '1.0000', '2.3000', '2.3000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49067, '2022-01-06', 8746, 46711, 3324, 39419, '2.0000', '3.5400', '3.5400', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49068, '2022-01-06', 7548, 46712, 3324, NULL, '1.0000', '-10.4600', '-10.4600', '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 (49069, '2022-01-06', 9694, 46713, 3324, 43966, '1.0000', '16.3000', '16.3000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49070, '2022-01-06', 1350, 46714, 3324, NULL, '1.0000', '33.0000', '33.0000', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49071, '2022-01-06', 8407, 46715, 3324, 44883, '1.0000', '0.8578', '0.8578', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49072, '2022-01-06', 7680, 46716, 3324, NULL, '1.0000', '0.5100', '0.5100', '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 (49073, '2022-01-06', 7847, 46717, 3324, 31664, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49074, '2022-01-06', 2427, 46718, 3324, NULL, '1.0000', '5.8000', '5.8000', '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 (49075, '2022-01-06', 7894, 46719, 3324, 38140, '1.0000', '-38.6667', '-38.6667', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49076, '2022-01-06', 7473, 46720, 3324, NULL, '1.0000', '38.3365', '38.3365', '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 (49077, '2022-01-06', 7778, 46721, 3324, NULL, '1.0000', '17.8220', '17.8220', '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 (49078, '2022-01-06', 2284, 46722, 3324, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49079, '2022-01-06', 8595, 46723, 3324, NULL, '1.0000', '4.2100', '4.2100', '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 (49080, '2022-01-06', 7674, 46724, 3324, NULL, '1.0000', '-115.5436', '-115.5436', '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 (49081, '2022-01-06', 7457, 46725, 3324, 43158, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49082, '2022-01-06', 9098, 46726, 3324, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49083, '2022-01-06', 8032, 46727, 3324, NULL, '1.0000', '12.0000', '12.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 (49084, '2022-01-06', 8920, 46728, 3324, NULL, '1.0000', '9.8500', '9.8500', '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 (49085, '2022-01-06', 9320, 46729, 3324, NULL, '2.0000', '8.5000', '8.5000', '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 (49086, '2022-01-06', 7560, 46730, 3324, NULL, '1.0000', '-71441.5232', '-71441.5232', '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 (49087, '2022-01-06', 7585, 46731, 3324, NULL, '1.0000', '6.2000', '6.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 (49088, '2022-01-06', 1984, 46732, 3324, 42788, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49089, '2022-01-06', 7585, 46733, 3324, NULL, '1.0000', '6.2000', '6.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 (49090, '2022-01-06', 7675, 46734, 3324, NULL, '1.0000', '15.0420', '15.0420', '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 (49091, '2022-01-06', 3001, 46735, 3324, NULL, '2.0000', '1.5000', '1.5000', '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 (49092, '2022-01-06', 7672, 46736, 3324, NULL, '1.0000', '1.0200', '1.0200', '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 (49093, '2022-01-06', 8702, 46737, 3324, NULL, '1.0000', '3.6700', '3.6700', '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 (49094, '2022-01-06', 7558, 46738, 3324, NULL, '5.0000', '2.2000', '2.2000', '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 (49095, '2022-01-06', 8154, 46739, 3324, NULL, '1.0000', '12.3000', '12.3000', '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 (49096, '2022-01-06', 2463, 46740, 3324, 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 (49097, '2022-01-06', 1588, 46741, 3325, NULL, '1.0000', '4.8000', '4.8000', '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 (49098, '2022-01-06', 1762, 46742, 3325, 3172, '-1.0000', '90.0000', '90.0000', '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 (49099, '2022-01-06', 1762, 46742, 3325, NULL, '2.0000', '90.0000', '90.0000', '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 (49100, '2022-01-06', 2169, 46743, 3325, 10737, '-10.0000', '3.8397', '3.8397', '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 (49101, '2022-01-06', 2169, 46743, 3325, NULL, '11.0000', '3.8397', '3.8397', '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 (49102, '2022-01-06', 9577, 46744, 3325, NULL, '2.0000', '0.3200', '0.3200', '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 (49103, '2022-01-06', 1602, 46745, 3325, 5897, '-83.0000', '6.7859', '6.7859', '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 (49104, '2022-01-06', 1602, 46745, 3325, NULL, '84.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49105, '2022-01-06', 2479, 46746, 3325, 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 (49106, '2022-01-06', 2486, 46747, 3325, 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 (49107, '2022-01-06', 1935, 46748, 3325, 5586, '-53.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 (49108, '2022-01-06', 1935, 46748, 3325, NULL, '54.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49109, '2022-01-06', 1602, 46749, 3325, 5897, '-83.0000', '6.7859', '6.7859', '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 (49110, '2022-01-06', 1602, 46749, 3325, NULL, '84.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49111, '2022-01-06', 8767, 46750, 3325, NULL, '1.0000', '6.6900', '6.6900', '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 (49112, '2022-01-06', 2655, 46751, 3325, 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 (49113, '2022-01-06', 2416, 46752, 3325, 4745, '-17.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 (49114, '2022-01-06', 2416, 46752, 3325, NULL, '18.0000', '1.2000', '1.2000', '1.5000', '1.5000', '-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 (49115, '2022-01-06', 2643, 46753, 3325, 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 (49116, '2022-01-06', 1651, 46754, 3325, 3222, '-38.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 (49117, '2022-01-06', 1651, 46754, 3325, NULL, '40.0000', '6.7039', '6.7039', '10.5000', '10.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 (49118, '2022-01-06', 2263, 46755, 3325, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '3.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 (49119, '2022-01-06', 1825, 46756, 3325, 11265, '-5.0000', '4.8000', '4.8000', '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 (49120, '2022-01-06', 1825, 46756, 3325, NULL, '6.0000', '4.8000', '4.8000', '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 (49121, '2022-01-06', 2712, 46757, 3325, 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 (49122, '2022-01-06', 1672, 46758, 3325, 7384, '-64.0000', '2.8700', '2.8700', '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 (49123, '2022-01-06', 1672, 46758, 3325, NULL, '74.0000', '2.8700', '2.8700', '4.0000', '4.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49124, '2022-01-06', 1650, 46759, 3325, 3221, '-4.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 (49125, '2022-01-06', 1650, 46759, 3325, NULL, '5.0000', '14.8000', '14.8000', '20.0000', '20.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 (49126, '2022-01-06', 2039, 46760, 3326, 6391, '-2.0000', '9.5000', '9.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49127, '2022-01-06', 2039, 46760, 3326, NULL, '3.0000', '9.5000', '9.5000', '14.0000', '14.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 (49128, '2022-01-06', 2003, 46761, 3326, 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 (49129, '2022-01-06', 2712, 46762, 3326, 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 (49130, '2022-01-06', 2221, 46763, 3327, 4154, '-49.0000', '14.4737', '14.4737', '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 (49131, '2022-01-06', 2221, 46763, 3327, NULL, '50.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49132, '2022-01-06', 1584, 46764, 3328, 7601, '-27.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 (49133, '2022-01-06', 1584, 46764, 3328, NULL, '29.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49134, '2022-01-06', 7848, 46765, 3329, 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 (49135, '2022-01-06', 2068, 46766, 3329, 45176, '1.0000', '11.9176', '11.9176', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49136, '2022-01-06', 1501, 46767, 3329, NULL, '1.0000', '2.2100', '2.2100', '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 (49137, '2022-01-06', 1807, 46768, 3329, 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 (49138, '2022-01-06', 1912, 46769, 3329, 41409, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49139, '2022-01-06', 9711, 46770, 3329, 44459, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49140, '2022-01-06', 3054, 46771, 3329, NULL, '1.0000', '7.0000', '7.0000', '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 (49141, '2022-01-06', 1670, 46772, 3329, 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 (49142, '2022-01-06', 8677, 46773, 3329, NULL, '3.0000', '89.9250', '89.9250', '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 (49143, '2022-01-06', 9717, 46774, 3329, 45205, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49144, '2022-01-06', 1851, 46775, 3329, 41405, '1.0000', '12.4818', '12.4818', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49145, '2022-01-06', 1651, 46776, 3329, NULL, '1.0000', '5.0422', '5.0422', '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 (49146, '2022-01-06', 1673, 46777, 3329, 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 (49147, '2022-01-06', 8677, 46778, 3329, NULL, '3.0000', '89.9250', '89.9250', '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 (49148, '2022-01-06', 1602, 46779, 3329, NULL, '1.0000', '6.8552', '6.8552', '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 (49149, '2022-01-06', 1845, 46780, 3329, NULL, '1.0000', '19.9667', '19.9667', '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 (49150, '2022-01-06', 1846, 46781, 3329, 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 (49151, '2022-01-06', 1502, 46782, 3329, 42838, '1.0000', '-50.9143', '-50.9143', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49152, '2022-01-06', 1510, 46783, 3329, 23187, '1.0000', '9.5885', '9.5885', '13.0000', '13.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 (49153, '2022-01-06', 3054, 46784, 3329, NULL, '1.0000', '7.0000', '7.0000', '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 (49154, '2022-01-06', 2315, 46785, 3329, NULL, '3.0000', '0.8556', '0.8556', '0.6000', '0.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 (49155, '2022-01-06', 1602, 46786, 3329, NULL, '1.0000', '6.8552', '6.8552', '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 (49156, '2022-01-06', 8065, 46787, 3329, NULL, '1.0000', '32.0000', '32.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 (49157, '2022-01-06', 1941, 46788, 3329, 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 (49158, '2022-01-06', 8247, 46789, 3329, NULL, '3.0000', '2.9600', '2.9600', '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 (49159, '2022-01-06', 2169, 46790, 3329, NULL, '1.0000', '1.1500', '1.1500', '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 (49160, '2022-01-06', 2651, 46791, 3329, 31100, '1.0000', '10.7500', '10.7500', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49161, '2022-01-06', 9699, 46792, 3329, 45283, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49162, '2022-01-06', 1831, 46793, 3329, NULL, '1.0000', '16.2420', '16.2420', '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 (49163, '2022-01-06', 1573, 46794, 3329, 42567, '1.0000', '23.1275', '23.1275', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49164, '2022-01-06', 1574, 46795, 3330, 7593, '-47.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 (49165, '2022-01-06', 1574, 46795, 3330, NULL, '49.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49166, '2022-01-06', 2384, 46796, 3330, 12014, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '69.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 (49167, '2022-01-06', 7848, 46797, 3331, 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 (49168, '2022-01-06', 2068, 46798, 3331, 45176, '1.0000', '11.9176', '11.9176', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49169, '2022-01-06', 1501, 46799, 3331, NULL, '1.0000', '2.2100', '2.2100', '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 (49170, '2022-01-06', 1807, 46800, 3331, 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 (49171, '2022-01-06', 1912, 46801, 3331, 41409, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49172, '2022-01-06', 9711, 46802, 3331, 44459, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49173, '2022-01-06', 3054, 46803, 3331, NULL, '1.0000', '7.0000', '7.0000', '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 (49174, '2022-01-06', 1670, 46804, 3331, 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 (49175, '2022-01-06', 8677, 46805, 3331, NULL, '3.0000', '89.9250', '89.9250', '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 (49176, '2022-01-06', 9717, 46806, 3331, 45205, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49177, '2022-01-06', 1851, 46807, 3331, 41405, '1.0000', '12.4818', '12.4818', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49178, '2022-01-06', 1651, 46808, 3331, NULL, '1.0000', '5.0422', '5.0422', '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 (49179, '2022-01-06', 1673, 46809, 3331, 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 (49180, '2022-01-06', 8677, 46810, 3331, NULL, '3.0000', '89.9250', '89.9250', '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 (49181, '2022-01-06', 1602, 46811, 3331, NULL, '1.0000', '6.8552', '6.8552', '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 (49182, '2022-01-06', 1845, 46812, 3331, NULL, '1.0000', '19.9667', '19.9667', '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 (49183, '2022-01-06', 1846, 46813, 3331, 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 (49184, '2022-01-06', 1502, 46814, 3331, NULL, '1.0000', '-50.9143', '-50.9143', '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 (49185, '2022-01-06', 1510, 46815, 3331, NULL, '1.0000', '9.5885', '9.5885', '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 (49186, '2022-01-06', 3054, 46816, 3331, NULL, '1.0000', '7.0000', '7.0000', '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 (49187, '2022-01-06', 2315, 46817, 3331, NULL, '3.0000', '0.8556', '0.8556', '0.6000', '0.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 (49188, '2022-01-06', 1602, 46818, 3331, NULL, '1.0000', '6.8552', '6.8552', '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 (49189, '2022-01-06', 8065, 46819, 3331, NULL, '1.0000', '32.0000', '32.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 (49190, '2022-01-06', 1941, 46820, 3331, 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 (49191, '2022-01-06', 8247, 46821, 3331, NULL, '3.0000', '2.9600', '2.9600', '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 (49192, '2022-01-06', 2169, 46822, 3331, NULL, '1.0000', '1.1500', '1.1500', '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 (49193, '2022-01-06', 2651, 46823, 3331, NULL, '1.0000', '10.7500', '10.7500', '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 (49194, '2022-01-06', 9699, 46824, 3331, 45283, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49195, '2022-01-06', 1831, 46825, 3331, NULL, '1.0000', '16.2420', '16.2420', '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 (49196, '2022-01-06', 1573, 46826, 3331, 42567, '1.0000', '23.1275', '23.1275', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49197, '2022-01-06', 2293, 46827, 3332, 22262, '3.0000', '1.4400', '1.4400', '1.0000', '1.0000', '80.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 (49198, '2022-01-06', 9577, 46828, 3333, NULL, '2.0000', '0.3200', '0.3200', '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 (49199, '2022-01-06', 8825, 46829, 3334, NULL, '1.0000', '7.4000', '7.4000', '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 (49200, '2022-01-06', 1590, 46830, 3334, NULL, '3.0000', '1.9878', '1.9878', '2.3000', '2.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 (49201, '2022-01-06', 2548, 46831, 3334, 45434, '1.0000', '7.0500', '7.0500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49202, '2022-01-06', 2100, 46832, 3334, 41418, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49203, '2022-01-06', 8677, 46833, 3334, NULL, '3.0000', '89.9250', '89.9250', '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 (49204, '2022-01-06', 2916, 46834, 3334, NULL, '1.0000', '14.8227', '14.8227', '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 (49205, '2022-01-06', 2315, 46835, 3334, NULL, '2.0000', '0.8556', '0.8556', '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 (49206, '2022-01-06', 9109, 46836, 3334, 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 (49207, '2022-01-06', 1863, 46837, 3334, 43283, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49208, '2022-01-06', 9699, 46838, 3334, 45283, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49209, '2022-01-06', 1666, 46839, 3334, 42825, '1.0000', '2.7429', '2.7429', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49210, '2022-01-06', 8528, 46840, 3334, NULL, '1.0000', '16.4000', '16.4000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49211, '2022-01-06', 1845, 46841, 3334, NULL, '1.0000', '19.9667', '19.9667', '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 (49212, '2022-01-06', 1419, 46842, 3334, NULL, '1.0000', '13.1040', '13.1040', '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 (49213, '2022-01-06', 2163, 46843, 3334, 43271, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49214, '2022-01-06', 1665, 46844, 3334, 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 (49215, '2022-01-06', 2713, 46845, 3334, 44440, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49216, '2022-01-06', 1667, 46846, 3334, 43254, '2.0000', '22.4947', '22.4947', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49217, '2022-01-06', 2651, 46847, 3334, NULL, '1.0000', '10.7500', '10.7500', '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 (49218, '2022-01-06', 8721, 46848, 3334, NULL, '1.0000', '3.0000', '3.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 (49219, '2022-01-06', 2169, 46849, 3334, NULL, '1.0000', '1.1500', '1.1500', '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 (49220, '2022-01-06', 2821, 46850, 3334, NULL, '1.0000', '3.6016', '3.6016', '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 (49221, '2022-01-06', 2237, 46851, 3334, NULL, '1.0000', '-329.8285', '-329.8285', '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 (49222, '2022-01-06', 1935, 46852, 3334, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49223, '2022-01-06', 1935, 46852, 3334, NULL, '1.0000', '-0.1979', '-0.1979', '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 (49224, '2022-01-06', 2418, 46853, 3334, 39981, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49225, '2022-01-06', 8763, 46854, 3334, 44148, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49226, '2022-01-06', 2169, 46855, 3334, NULL, '1.0000', '1.1500', '1.1500', '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 (49227, '2022-01-06', 1628, 46856, 3334, NULL, '1.0000', '12.0400', '12.0400', '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 (49228, '2022-01-06', 1479, 46857, 3334, 23172, '1.0000', '44.0000', '44.0000', '58.0000', '58.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 (49229, '2022-01-06', 1812, 46858, 3334, 23688, '1.0000', '7.9457', '7.9457', '10.5000', '10.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 (49230, '2022-01-06', 8721, 46859, 3334, NULL, '1.0000', '3.0000', '3.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 (49231, '2022-01-06', 8595, 46860, 3334, 43272, '1.0000', '3.9640', '3.9640', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49232, '2022-01-06', 2283, 46861, 3334, 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 (49233, '2022-01-06', 2135, 46862, 3334, 18930, '1.0000', '2.4732', '2.4732', '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 (49234, '2022-01-06', 8677, 46863, 3334, NULL, '1.0000', '89.9250', '89.9250', '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 (49235, '2022-01-06', 1533, 46864, 3334, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49236, '2022-01-06', 1501, 46865, 3334, NULL, '2.0000', '2.2100', '2.2100', '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 (49237, '2022-01-06', 3059, 46866, 3334, 37758, '1.0000', '2.2083', '2.2083', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49238, '2022-01-06', 2221, 46867, 3334, 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 (49239, '2022-01-06', 9214, 46868, 3334, 45278, '1.0000', '9.8180', '9.8180', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49240, '2022-01-06', 1519, 46869, 3334, NULL, '1.0000', '3.3980', '3.3980', '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 (49241, '2022-01-06', 1499, 46870, 3334, 41408, '2.0000', '0.6447', '0.6447', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49242, '2022-01-06', 7719, 46871, 3334, NULL, '1.0000', '5.5000', '5.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 (49243, '2022-01-06', 2315, 46872, 3334, NULL, '2.0000', '0.8556', '0.8556', '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 (49244, '2022-01-06', 1409, 46873, 3334, NULL, '1.0000', '12.7500', '12.7500', '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 (49245, '2022-01-06', 1519, 46874, 3334, NULL, '1.0000', '3.3980', '3.3980', '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 (49246, '2022-01-06', 1612, 46875, 3334, 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 (49247, '2022-01-06', 2603, 46876, 3334, 37968, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49248, '2022-01-06', 2037, 46877, 3334, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '10.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 (49249, '2022-01-06', 1488, 46878, 3334, NULL, '1.0000', '90.0000', '90.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 (49250, '2022-01-06', 1425, 46879, 3334, 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 (49251, '2022-01-06', 1310, 46880, 3334, NULL, '1.0000', '0.4288', '0.4288', '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 (49252, '2022-01-06', 1602, 46881, 3334, NULL, '1.0000', '6.8552', '6.8552', '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 (49253, '2022-01-06', 9503, 46882, 3334, 33350, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49254, '2022-01-06', 2169, 46883, 3334, NULL, '1.0000', '1.1500', '1.1500', '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 (49255, '2022-01-06', 1935, 46884, 3334, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49256, '2022-01-06', 1863, 46885, 3334, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49257, '2022-01-06', 2237, 46886, 3334, NULL, '1.0000', '-329.8285', '-329.8285', '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 (49258, '2022-01-06', 2635, 46887, 3334, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49259, '2022-01-06', 1692, 46888, 3334, 45435, '1.0000', '9.6500', '9.6500', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49260, '2022-01-06', 7592, 46889, 3334, NULL, '1.0000', '8.6500', '8.6500', '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 (49261, '2022-01-06', 2274, 46890, 3334, NULL, '1.0000', '3.9800', '3.9800', '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 (49262, '2022-01-06', 1533, 46891, 3334, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49263, '2022-01-06', 8677, 46892, 3334, NULL, '2.0000', '89.9250', '89.9250', '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 (49264, '2022-01-06', 1863, 46893, 3334, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49265, '2022-01-06', 9021, 46894, 3334, 39827, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49266, '2022-01-06', 1501, 46895, 3334, NULL, '1.0000', '2.2100', '2.2100', '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 (49267, '2022-01-06', 2315, 46896, 3334, NULL, '2.0000', '0.8556', '0.8556', '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 (49268, '2022-01-06', 7576, 46897, 3334, 37777, '4.0000', '6.9100', '6.9100', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49269, '2022-01-06', 2953, 46898, 3334, NULL, '3.0000', '8.0000', '8.0000', '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 (49270, '2022-01-06', 1425, 46899, 3334, 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 (49271, '2022-01-06', 8454, 46900, 3334, NULL, '1.0000', '3.7420', '3.7420', '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 (49272, '2022-01-06', 1935, 46901, 3334, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49273, '2022-01-06', 1690, 46902, 3334, 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 (49274, '2022-01-06', 7671, 46903, 3334, NULL, '1.0000', '15.5000', '15.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 (49275, '2022-01-06', 2303, 46904, 3334, NULL, '1.0000', '16.1000', '16.1000', '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 (49276, '2022-01-06', 2965, 46905, 3334, NULL, '1.0000', '5.6266', '5.6266', '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 (49277, '2022-01-06', 2965, 46906, 3334, NULL, '1.0000', '5.6266', '5.6266', '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 (49278, '2022-01-06', 1519, 46907, 3334, NULL, '1.0000', '3.3980', '3.3980', '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 (49279, '2022-01-06', 1935, 46908, 3334, 39910, '1.0000', '-0.1979', '-0.1979', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49280, '2022-01-06', 1651, 46909, 3334, NULL, '1.0000', '5.0422', '5.0422', '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 (49281, '2022-01-06', 2924, 46910, 3334, 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 (49282, '2022-01-06', 7741, 46911, 3334, NULL, '1.0000', '1.2000', '1.2000', '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 (49283, '2022-01-06', 2609, 46912, 3334, 38549, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49284, '2022-01-06', 2408, 46913, 3334, NULL, '1.0000', '9.3500', '9.3500', '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 (49285, '2022-01-06', 8127, 46914, 3334, NULL, '1.0000', '24.5300', '24.5300', '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 (49286, '2022-01-06', 2916, 46915, 3334, NULL, '1.0000', '14.8227', '14.8227', '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 (49287, '2022-01-06', 2239, 46916, 3335, 39880, '1.0000', '25.8286', '25.8286', '42.0000', '42.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49288, '2022-01-06', 1871, 46917, 3336, NULL, '1.0000', '2.9308', '2.9308', '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 (49289, '2022-01-06', 8746, 46918, 3336, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49290, '2022-01-06', 2169, 46919, 3336, NULL, '1.0000', '1.1500', '1.1500', '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 (49291, '2022-01-06', 1523, 46920, 3336, NULL, '1.0000', '1.0061', '1.0061', '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 (49292, '2022-01-06', 2221, 46921, 3336, 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 (49293, '2022-01-06', 1488, 46922, 3336, NULL, '1.0000', '90.0000', '90.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 (49294, '2022-01-06', 2103, 46923, 3336, NULL, '3.0000', '0.4500', '0.4500', '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 (49295, '2022-01-06', 2693, 46924, 3336, 30699, '1.0000', '25.3300', '25.3300', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49296, '2022-01-06', 2267, 46925, 3336, 45149, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49297, '2022-01-06', 2769, 46926, 3336, 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 (49298, '2022-01-06', 1612, 46927, 3336, 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 (49299, '2022-01-06', 1828, 46928, 3336, 19855, '2.0000', '0.7300', '0.7300', '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 (49300, '2022-01-06', 2989, 46929, 3336, 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 (49301, '2022-01-06', 2293, 46930, 3336, NULL, '1.0000', '2.7733', '2.7733', '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 (49302, '2022-01-06', 7530, 46931, 3336, 45187, '1.0000', '0.6506', '0.6506', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49303, '2022-01-06', 1342, 46932, 3336, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49304, '2022-01-06', 1999, 46933, 3336, NULL, '1.0000', '6.8730', '6.8730', '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 (49305, '2022-01-06', 2231, 46934, 3336, NULL, '1.0000', '34.0000', '34.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 (49306, '2022-01-06', 2327, 46935, 3336, 39828, '6.0000', '3.8860', '3.8860', '5.0000', '5.0000', '41.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49307, '2022-01-06', 2344, 46936, 3336, NULL, '1.0000', '19.8200', '19.8200', '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 (49308, '2022-01-06', 1863, 46937, 3336, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49309, '2022-01-06', 1757, 46938, 3336, NULL, '1.0000', '4.0024', '4.0024', '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 (49310, '2022-01-06', 1409, 46939, 3336, NULL, '1.0000', '12.7500', '12.7500', '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 (49311, '2022-01-06', 1863, 46940, 3336, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49312, '2022-01-06', 2315, 46941, 3336, NULL, '2.0000', '0.8556', '0.8556', '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 (49313, '2022-01-06', 1602, 46942, 3336, NULL, '1.0000', '6.8552', '6.8552', '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 (49314, '2022-01-06', 1935, 46943, 3336, NULL, '1.0000', '-0.1979', '-0.1979', '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 (49315, '2022-01-06', 1499, 46944, 3336, 41408, '2.0000', '0.6447', '0.6447', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49316, '2022-01-06', 2302, 46945, 3336, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49317, '2022-01-06', 7673, 46946, 3336, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49318, '2022-01-06', 2010, 46947, 3336, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49319, '2022-01-06', 1523, 46948, 3336, NULL, '2.0000', '1.0061', '1.0061', '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 (49320, '2022-01-06', 1702, 46949, 3336, NULL, '1.0000', '14.9700', '14.9700', '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 (49321, '2022-01-06', 9683, 46950, 3336, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49322, '2022-01-06', 2660, 46951, 3336, 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 (49323, '2022-01-06', 2573, 46952, 3336, NULL, '1.0000', '8.7800', '8.7800', '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 (49324, '2022-01-06', 8918, 46953, 3337, 45352, '1.0000', '1.6807', '1.6807', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49325, '2022-01-06', 8229, 46954, 3337, NULL, '1.0000', '8.0000', '8.0000', '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 (49326, '2022-01-06', 7967, 46955, 3337, NULL, '1.0000', '5.2452', '5.2452', '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 (49327, '2022-01-06', 2415, 46956, 3337, 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 (49328, '2022-01-06', 7482, 46957, 3337, NULL, '2.0000', '1.2449', '1.2449', '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 (49329, '2022-01-06', 7675, 46958, 3337, NULL, '1.0000', '15.0420', '15.0420', '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 (49330, '2022-01-06', 7317, 46959, 3337, NULL, '1.0000', '44.1600', '44.1600', '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 (49331, '2022-01-06', 8037, 46960, 3337, 36082, '2.0000', '45.3419', '45.3419', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49332, '2022-01-06', 7641, 46961, 3337, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49333, '2022-01-06', 7674, 46962, 3337, NULL, '1.0000', '-115.5436', '-115.5436', '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 (49334, '2022-01-06', 9361, 46963, 3337, NULL, '1.0000', '52.2000', '52.2000', '90.0000', '90.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49335, '2022-01-06', 8360, 46964, 3337, 39538, '1.0000', '3.5200', '3.5200', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49336, '2022-01-06', 7428, 46965, 3337, NULL, '2.0000', '744.9056', '744.9056', '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 (49337, '2022-01-06', 9092, 46966, 3337, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '144.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49338, '2022-01-06', 2982, 46967, 3337, 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 (49339, '2022-01-06', 8666, 46968, 3337, NULL, '1.0000', '0.4600', '0.4600', '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 (49340, '2022-01-06', 9413, 46969, 3337, NULL, '1.0000', '7.9000', '7.9000', '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 (49341, '2022-01-06', 7444, 46970, 3337, 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 (49342, '2022-01-06', 7673, 46971, 3337, NULL, '1.0000', '16.0057', '16.0057', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49343, '2022-01-06', 7781, 46972, 3337, NULL, '3.0000', '4.2500', '4.2500', '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 (49344, '2022-01-06', 7980, 46973, 3337, NULL, '7.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (49345, '2022-01-06', 7920, 46974, 3337, 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 (49346, '2022-01-06', 8457, 46975, 3337, NULL, '1.0000', '-0.8125', '-0.8125', '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 (49347, '2022-01-06', 1772, 46976, 3337, 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 (49348, '2022-01-06', 9092, 46977, 3337, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '144.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49349, '2022-01-06', 7694, 46978, 3337, NULL, '3.0000', '4.7900', '4.7900', '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 (49350, '2022-01-06', 7478, 46979, 3337, NULL, '2.0000', '4.0000', '4.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 (49351, '2022-01-06', 9098, 46980, 3337, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49352, '2022-01-06', 7355, 46981, 3337, NULL, '1.0000', '11.6400', '11.6400', '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 (49353, '2022-01-06', 7782, 46982, 3337, NULL, '1.0000', '5.0000', '5.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 (49354, '2022-01-06', 7711, 46983, 3337, NULL, '1.0000', '-78.4806', '-78.4806', '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 (49355, '2022-01-06', 7641, 46984, 3337, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49356, '2022-01-06', 9098, 46985, 3337, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49357, '2022-01-06', 7703, 46986, 3337, NULL, '2.0000', '22.9900', '22.9900', '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 (49358, '2022-01-06', 7675, 46987, 3337, NULL, '1.0000', '15.0420', '15.0420', '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 (49359, '2022-01-06', 8208, 46988, 3337, NULL, '2.0000', '33.0000', '33.0000', '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 (49360, '2022-01-06', 1841, 46989, 3337, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49361, '2022-01-06', 2289, 46990, 3337, NULL, '2.0000', '0.2069', '0.2069', '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 (49362, '2022-01-06', 8844, 46991, 3337, NULL, '1.0000', '4.8500', '4.8500', '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 (49363, '2022-01-06', 9303, 46992, 3337, NULL, '1.0000', '9.0000', '9.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 (49364, '2022-01-06', 7335, 46993, 3337, NULL, '1.0000', '8.5400', '8.5400', '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 (49365, '2022-01-06', 1841, 46994, 3337, 33726, '2.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49366, '2022-01-06', 2070, 46995, 3337, 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 (49367, '2022-01-06', 8923, 46996, 3337, NULL, '1.0000', '7.2500', '7.2500', '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 (49368, '2022-01-06', 2284, 46997, 3337, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49369, '2022-01-06', 7664, 46998, 3337, 43114, '1.0000', '6.7801', '6.7801', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49370, '2022-01-06', 8600, 46999, 3337, NULL, '1.0000', '0.6300', '0.6300', '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 (49371, '2022-01-06', 8753, 47000, 3337, 44232, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49372, '2022-01-06', 7736, 47001, 3337, NULL, '1.0000', '13.1876', '13.1876', '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 (49373, '2022-01-06', 1650, 47002, 3337, NULL, '1.0000', '14.7450', '14.7450', '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 (49374, '2022-01-06', 8566, 47003, 3337, 44480, '1.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49375, '2022-01-06', 7412, 47004, 3337, NULL, '1.0000', '1.5200', '1.5200', '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 (49376, '2022-01-06', 9092, 47005, 3337, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '144.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49377, '2022-01-06', 7832, 47006, 3337, 43532, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49378, '2022-01-06', 7729, 47007, 3337, NULL, '1.0000', '13.0000', '13.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 (49379, '2022-01-06', 1602, 47008, 3338, NULL, '1.0000', '6.8552', '6.8552', '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 (49380, '2022-01-06', 2699, 47009, 3338, 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 (49381, '2022-01-06', 2103, 47010, 3338, 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 (49382, '2022-01-06', 2302, 47011, 3338, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49383, '2022-01-06', 1499, 47012, 3338, 41408, '3.0000', '0.6447', '0.6447', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49384, '2022-01-06', 2384, 47013, 3338, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49385, '2022-01-06', 2169, 47014, 3338, NULL, '1.0000', '1.1500', '1.1500', '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 (49386, '2022-01-06', 8444, 47015, 3338, 42545, '1.0000', '1.4000', '1.4000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49387, '2022-01-06', 2260, 47016, 3338, 45178, '5.0000', '4.2128', '4.2128', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49388, '2022-01-06', 1637, 47017, 3338, NULL, '1.0000', '-41.1667', '-41.1667', '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 (49389, '2022-01-06', 2136, 47018, 3338, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49390, '2022-01-06', 1863, 47019, 3338, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49391, '2022-01-06', 1828, 47020, 3338, 19855, '1.0000', '0.7300', '0.7300', '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 (49392, '2022-01-06', 2643, 47021, 3338, 45273, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49393, '2022-01-06', 2272, 47022, 3339, 44731, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49394, '2022-01-06', 2237, 47023, 3339, 40644, '1.0000', '1.3451', '1.3451', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49395, '2022-01-06', 8984, 47024, 3339, NULL, '2.0000', '304.7000', '304.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 (49396, '2022-01-06', 7609, 47025, 3339, NULL, '1.0000', '4.3300', '4.3300', '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 (49397, '2022-01-06', 2221, 47026, 3339, 45118, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '22.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49398, '2022-01-06', 1493, 47027, 3339, 44608, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49399, '2022-01-06', 9577, 47028, 3339, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49400, '2022-01-06', 2511, 47029, 3339, 45071, '1.0000', '8.7052', '8.7052', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49401, '2022-01-06', 1828, 47030, 3339, 33003, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49402, '2022-01-06', 2169, 47031, 3339, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49403, '2022-01-06', 1425, 47032, 3339, 44548, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49404, '2022-01-06', 2712, 47033, 3339, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49405, '2022-01-06', 2227, 47034, 3339, 32619, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49406, '2022-01-06', 1863, 47035, 3339, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '120.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49407, '2022-01-06', 2635, 47036, 3339, 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 (49408, '2022-01-06', 2497, 47037, 3339, 42983, '1.0000', '31.2000', '31.2000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49409, '2022-01-06', 2486, 47038, 3339, 21821, '1.0000', '4.0000', '4.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 (49410, '2022-01-06', 2169, 47039, 3339, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49411, '2022-01-06', 9695, 47040, 3339, 44526, '2.0000', '4.5000', '4.5000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49412, '2022-01-06', 2135, 47041, 3339, 41999, '2.0000', '1.2424', '1.2424', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49413, '2022-01-06', 7790, 47042, 3339, 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 (49414, '2022-01-06', 2327, 47043, 3339, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49415, '2022-01-06', 7744, 47044, 3339, 44790, '1.0000', '2.9400', '2.9400', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49416, '2022-01-06', 7638, 47045, 3339, 44598, '1.0000', '1.1651', '1.1651', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49417, '2022-01-06', 9715, 47046, 3339, 45077, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49418, '2022-01-06', 7802, 47047, 3339, NULL, '3.0000', '0.9200', '0.9200', '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 (49419, '2022-01-06', 2858, 47048, 3339, 17780, '1.0000', '1.0000', '1.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 (49420, '2022-01-06', 7790, 47049, 3339, 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 (49421, '2022-01-06', 8566, 47050, 3339, 35940, '1.0000', '-8.9555', '-8.9555', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49422, '2022-01-06', 2020, 47051, 3339, 44618, '1.0000', '-5.0518', '-5.0518', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49423, '2022-01-06', 1425, 47052, 3339, 44548, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49424, '2022-01-06', 1584, 47053, 3339, 45231, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49425, '2022-01-06', 2964, 47054, 3339, NULL, '1.0000', '6.6000', '6.6000', '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 (49426, '2022-01-06', 1572, 47055, 3339, 44794, '2.0000', '1.6737', '1.6737', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49427, '2022-01-06', 1831, 47056, 3339, 40888, '1.0000', '3.2049', '3.2049', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49428, '2022-01-06', 2557, 47057, 3339, 12741, '2.0000', '1.0000', '1.0000', '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 (49429, '2022-01-06', 1863, 47058, 3339, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '120.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49430, '2022-01-06', 1479, 47059, 3339, 1489, '1.0000', '90.0000', '90.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 (49431, '2022-01-06', 1478, 47060, 3339, 44575, '2.0000', '128.8409', '128.8409', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49432, '2022-01-06', 2256, 47061, 3339, 44577, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49433, '2022-01-06', 1935, 47062, 3339, 44781, '1.0000', '3.0998', '3.0998', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49434, '2022-01-06', 8059, 47063, 3339, 29840, '3.0000', '6.0000', '6.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49435, '2022-01-06', 9577, 47064, 3339, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49436, '2022-01-06', 2999, 47065, 3340, 31104, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49437, '2022-01-06', 2769, 47066, 3340, NULL, '3.0000', '0.5000', '0.5000', '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 (49438, '2022-01-06', 1326, 47067, 3340, NULL, '1.0000', '5.3133', '5.3133', '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 (49439, '2022-01-06', 9109, 47068, 3340, 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 (49440, '2022-01-06', 8033, 47069, 3340, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49441, '2022-01-06', 1608, 47070, 3340, 33146, '1.0000', '3.5436', '3.5436', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49442, '2022-01-06', 1867, 47071, 3341, 45445, '1.0000', '-47.4652', '-47.4652', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49443, '2022-01-06', 1674, 47072, 3341, NULL, '1.0000', '3.2473', '3.2473', '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 (49444, '2022-01-06', 2270, 47073, 3341, 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 (49445, '2022-01-06', 1645, 47074, 3341, 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 (49446, '2022-01-06', 8166, 47075, 3342, NULL, '1.0000', '4.6000', '4.6000', '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 (49447, '2022-01-06', 1935, 47076, 3342, NULL, '1.0000', '-0.1979', '-0.1979', '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 (49448, '2022-01-06', 9715, 47077, 3342, NULL, '1.0000', '9.4000', '9.4000', '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 (49449, '2022-01-06', 1386, 47078, 3342, 37815, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49450, '2022-01-06', 7963, 47079, 3343, NULL, '1.0000', '4.2500', '4.2500', '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 (49451, '2022-01-06', 1650, 47080, 3343, NULL, '1.0000', '14.7450', '14.7450', '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 (49452, '2022-01-06', 7555, 47081, 3343, NULL, '1.0000', '0.5000', '0.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 (49453, '2022-01-06', 2235, 47082, 3343, 44759, '1.0000', '20.5000', '20.5000', '27.5000', '27.5000', '2.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49454, '2022-01-06', 9608, 47083, 3343, NULL, '1.0000', '3.3000', '3.3000', '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 (49455, '2022-01-06', 7741, 47084, 3343, 36081, '1.0000', '5.8811', '5.8811', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49456, '2022-01-06', 8203, 47085, 3343, NULL, '4.0000', '1.0075', '1.0075', '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 (49457, '2022-01-06', 8166, 47086, 3343, NULL, '1.0000', '4.6000', '4.6000', '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 (49458, '2022-01-06', 1935, 47087, 3344, NULL, '1.0000', '-0.1979', '-0.1979', '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 (49459, '2022-01-06', 1839, 47088, 3344, NULL, '1.0000', '1.8866', '1.8866', '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 (49460, '2022-01-06', 1606, 47089, 3345, 44566, '10.0000', '4.7735', '4.7735', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49461, '2022-01-06', 1606, 47090, 3345, 44566, '10.0000', '4.7735', '4.7735', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49462, '2022-01-06', 8518, 47091, 3345, NULL, '1.0000', '17.6400', '17.6400', '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 (49463, '2022-01-06', 2020, 47092, 3345, 44618, '1.0000', '-5.0518', '-5.0518', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49464, '2022-01-06', 9695, 47093, 3345, 44526, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49465, '2022-01-06', 1574, 47094, 3345, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49466, '2022-01-06', 1665, 47095, 3345, 43027, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49467, '2022-01-06', 2712, 47096, 3345, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '22.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49468, '2022-01-06', 2906, 47097, 3346, NULL, '1.0000', '2.6000', '2.6000', '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 (49469, '2022-01-06', 7464, 47098, 3346, NULL, '1.0000', '-57.6000', '-57.6000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49470, '2022-01-06', 8032, 47099, 3346, NULL, '1.0000', '12.0000', '12.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 (49471, '2022-01-06', 8920, 47100, 3346, NULL, '1.0000', '9.8500', '9.8500', '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 (49472, '2022-01-06', 8920, 47101, 3346, NULL, '1.0000', '9.8500', '9.8500', '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 (49473, '2022-01-06', 7518, 47102, 3346, NULL, '1.0000', '-112.5817', '-112.5817', '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 (49474, '2022-01-06', 8765, 47103, 3347, 45286, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49475, '2022-01-07', 1431, 47104, 3348, 10407, '2.0000', '10.5000', '10.5000', '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 (49476, '2022-01-07', 1670, 47105, 3348, 44569, '1.0000', '106.3579', '106.3579', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49477, '2022-01-07', 7954, 47106, 3348, 33014, '2.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49478, '2022-01-07', 2487, 47107, 3348, 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 (49479, '2022-01-07', 1668, 47108, 3348, 44603, '1.0000', '68.4295', '68.4295', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49480, '2022-01-07', 1935, 47109, 3348, 44781, '1.0000', '3.0998', '3.0998', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49481, '2022-01-07', 2076, 47110, 3348, 9581, '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 (49482, '2022-01-07', 2320, 47111, 3348, 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 (49483, '2022-01-07', 2916, 47112, 3348, 45075, '1.0000', '13.6740', '13.6740', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49484, '2022-01-07', 1868, 47113, 3348, 4997, '1.0000', '4.0300', '4.0300', '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 (49485, '2022-01-07', 1837, 47114, 3348, 44787, '2.0000', '0.4630', '0.4630', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49486, '2022-01-07', 2657, 47115, 3348, 11408, '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 (49487, '2022-01-07', 1650, 47116, 3348, 45135, '1.0000', '14.8000', '14.8000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49488, '2022-01-07', 1751, 47117, 3348, 44764, '1.0000', '3.8718', '3.8718', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49489, '2022-01-07', 9715, 47118, 3348, 45077, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49490, '2022-01-07', 2643, 47119, 3348, 44038, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49491, '2022-01-07', 2415, 47120, 3348, 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 (49492, '2022-01-07', 9416, 47121, 3348, 44493, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49493, '2022-01-07', 8756, 47122, 3348, 42940, '1.0000', '7.2778', '7.2778', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49494, '2022-01-07', 1863, 47123, 3348, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '118.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49495, '2022-01-07', 2237, 47124, 3348, 40644, '2.0000', '1.3451', '1.3451', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49496, '2022-01-07', 8677, 47125, 3348, NULL, '2.0000', '-1.2995', '-1.2995', '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 (49497, '2022-01-07', 1418, 47126, 3348, 37549, '1.0000', '7.8118', '7.8118', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49498, '2022-01-07', 9578, 47127, 3348, 42630, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49499, '2022-01-07', 1666, 47128, 3349, 44538, '1.0000', '81.1043', '81.1043', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49500, '2022-01-07', 9213, 47129, 3349, 42925, '2.0000', '5.4000', '5.4000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49501, '2022-01-07', 1450, 47130, 3349, 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 (49502, '2022-01-07', 1665, 47131, 3350, 45608, '2.0000', '1.2495', '1.2495', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49503, '2022-01-07', 1966, 47132, 3350, 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 (49504, '2022-01-07', 2446, 47133, 3351, 5831, '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 (49505, '2022-01-07', 3025, 47134, 3351, 40388, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49506, '2022-01-07', 1665, 47135, 3351, 45608, '1.0000', '1.2495', '1.2495', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49507, '2022-01-07', 1944, 47136, 3352, 5598, '1.0000', '5.0000', '5.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 (49508, '2022-01-07', 2948, 47137, 3353, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49509, '2022-01-07', 9109, 47138, 3353, 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 (49510, '2022-01-07', 2303, 47139, 3353, NULL, '2.0000', '16.1000', '16.1000', '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 (49511, '2022-01-07', 2948, 47140, 3353, 39872, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49512, '2022-01-07', 1654, 47141, 3353, 42824, '1.0000', '9.2613', '9.2613', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49513, '2022-01-07', 7565, 47142, 3353, NULL, '1.0000', '0.2000', '0.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 (49514, '2022-01-07', 1950, 47143, 3353, NULL, '1.0000', '3.5525', '3.5525', '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 (49515, '2022-01-07', 1947, 47144, 3353, 42574, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49516, '2022-01-07', 9479, 47145, 3353, 32541, '1.0000', '3.0000', '3.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49517, '2022-01-07', 2105, 47146, 3353, 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 (49518, '2022-01-07', 1687, 47147, 3353, NULL, '1.0000', '12.1396', '12.1396', '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 (49519, '2022-01-07', 1564, 47148, 3353, NULL, '4.0000', '90.0000', '90.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 (49520, '2022-01-07', 2302, 47149, 3353, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49521, '2022-01-07', 1651, 47150, 3353, NULL, '1.0000', '5.0422', '5.0422', '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 (49522, '2022-01-07', 2315, 47151, 3353, NULL, '2.0000', '0.8556', '0.8556', '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 (49523, '2022-01-07', 2073, 47152, 3353, NULL, '2.0000', '2.3000', '2.3000', '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 (49524, '2022-01-07', 1837, 47153, 3353, 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 (49525, '2022-01-07', 7524, 47154, 3353, NULL, '1.0000', '11.9500', '11.9500', '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 (49526, '2022-01-07', 9145, 47155, 3353, NULL, '1.0000', '9.0000', '9.0000', '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 (49527, '2022-01-07', 1856, 47156, 3353, NULL, '1.0000', '4.2500', '4.2500', '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 (49528, '2022-01-07', 2948, 47157, 3353, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49529, '2022-01-07', 8773, 47158, 3353, 45287, '1.0000', '4.4800', '4.4800', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49530, '2022-01-07', 2660, 47159, 3353, 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 (49531, '2022-01-07', 8476, 47160, 3353, NULL, '1.0000', '23.0000', '23.0000', '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 (49532, '2022-01-07', 7606, 47161, 3353, NULL, '1.0000', '4.8600', '4.8600', '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 (49533, '2022-01-07', 2109, 47162, 3353, 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 (49534, '2022-01-07', 2285, 47163, 3353, NULL, '1.0000', '36.1500', '36.1500', '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 (49535, '2022-01-07', 1621, 47164, 3353, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '42.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49536, '2022-01-07', 1935, 47165, 3353, NULL, '1.0000', '-0.1979', '-0.1979', '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 (49537, '2022-01-07', 2948, 47166, 3353, 39872, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49538, '2022-01-07', 1863, 47167, 3353, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49539, '2022-01-07', 1420, 47168, 3353, 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 (49540, '2022-01-07', 2633, 47169, 3353, 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 (49541, '2022-01-07', 2283, 47170, 3353, 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 (49542, '2022-01-07', 2341, 47171, 3353, 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 (49543, '2022-01-07', 2862, 47172, 3353, 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 (49544, '2022-01-07', 8765, 47173, 3353, 45286, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49545, '2022-01-07', 2643, 47174, 3353, 45273, '2.0000', '0.8700', '0.8700', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49546, '2022-01-07', 8984, 47175, 3353, NULL, '1.0000', '-100.8495', '-100.8495', '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 (49547, '2022-01-07', 7910, 47176, 3354, 39619, '1.0000', '3.8467', '3.8467', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49548, '2022-01-07', 9092, 47177, 3354, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '141.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49549, '2022-01-07', 7967, 47178, 3354, NULL, '1.0000', '5.2452', '5.2452', '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 (49550, '2022-01-07', 7804, 47179, 3354, 45340, '1.0000', '0.6529', '0.6529', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49551, '2022-01-07', 8677, 47180, 3354, NULL, '2.0000', '1.2300', '1.2300', '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 (49552, '2022-01-07', 7411, 47181, 3354, NULL, '1.0000', '1.4255', '1.4255', '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 (49553, '2022-01-07', 8208, 47182, 3354, NULL, '2.0000', '33.0000', '33.0000', '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 (49554, '2022-01-07', 9372, 47183, 3354, NULL, '1.0000', '42.3000', '42.3000', '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 (49555, '2022-01-07', 8123, 47184, 3354, 39437, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49556, '2022-01-07', 7512, 47185, 3354, NULL, '1.0000', '1.0000', '1.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 (49557, '2022-01-07', 2925, 47186, 3354, NULL, '2.0000', '5.0000', '5.0000', '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 (49558, '2022-01-07', 7778, 47187, 3354, NULL, '1.0000', '17.8220', '17.8220', '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 (49559, '2022-01-07', 7756, 47188, 3354, NULL, '1.0000', '21.3576', '21.3576', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49560, '2022-01-07', 7751, 47189, 3354, NULL, '1.0000', '3.4000', '3.4000', '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 (49561, '2022-01-07', 7781, 47190, 3354, NULL, '3.0000', '4.2500', '4.2500', '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 (49562, '2022-01-07', 7719, 47191, 3354, 45227, '2.0000', '3.8336', '3.8336', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49563, '2022-01-07', 9177, 47192, 3354, NULL, '10.0000', '0.6259', '0.6259', '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 (49564, '2022-01-07', 8712, 47193, 3354, NULL, '1.0000', '7.0400', '7.0400', '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 (49565, '2022-01-07', 8844, 47194, 3354, 45686, '1.0000', '4.9500', '4.9500', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49566, '2022-01-07', 9183, 47195, 3354, NULL, '1.0000', '8.3000', '8.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 (49567, '2022-01-07', 7491, 47196, 3354, 45681, '1.0000', '5.0500', '5.0500', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49568, '2022-01-07', 7674, 47197, 3354, NULL, '1.0000', '-115.5436', '-115.5436', '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 (49569, '2022-01-07', 8444, 47198, 3354, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49570, '2022-01-07', 1904, 47199, 3354, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49571, '2022-01-07', 7959, 47200, 3354, NULL, '1.0000', '9.6000', '9.6000', '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 (49572, '2022-01-07', 7753, 47201, 3354, 43138, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49573, '2022-01-07', 8677, 47202, 3354, NULL, '2.0000', '1.2300', '1.2300', '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 (49574, '2022-01-07', 8166, 47203, 3354, NULL, '1.0000', '4.6000', '4.6000', '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 (49575, '2022-01-07', 8465, 47204, 3354, NULL, '1.0000', '60.0000', '60.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 (49576, '2022-01-07', 1339, 47205, 3354, 44865, '1.0000', '1.4952', '1.4952', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49577, '2022-01-07', 8101, 47206, 3354, NULL, '2.0000', '21.7000', '21.7000', '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 (49578, '2022-01-07', 8224, 47207, 3354, NULL, '1.0000', '1.5000', '1.5000', '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 (49579, '2022-01-07', 3016, 47208, 3354, NULL, '1.0000', '14.5200', '14.5200', '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 (49580, '2022-01-07', 7866, 47209, 3354, NULL, '2.0000', '2.5000', '2.5000', '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 (49581, '2022-01-07', 9275, 47210, 3354, NULL, '4.0000', '6.3000', '6.3000', '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 (49582, '2022-01-07', 7482, 47211, 3354, 45652, '1.0000', '2.5816', '2.5816', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49583, '2022-01-07', 7447, 47212, 3354, NULL, '8.0000', '19.1100', '19.1100', '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 (49584, '2022-01-07', 9320, 47213, 3354, NULL, '1.0000', '8.8900', '8.8900', '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 (49585, '2022-01-07', 7411, 47214, 3354, NULL, '2.0000', '1.4255', '1.4255', '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 (49586, '2022-01-07', 7457, 47215, 3354, 43158, '2.0000', '3.3581', '3.3581', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49587, '2022-01-07', 2495, 47216, 3355, 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 (49588, '2022-01-07', 7678, 47217, 3355, NULL, '1.0000', '5.1400', '5.1400', '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 (49589, '2022-01-07', 2315, 47218, 3355, NULL, '2.0000', '0.8556', '0.8556', '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 (49590, '2022-01-07', 7728, 47219, 3355, 44149, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49591, '2022-01-07', 9699, 47220, 3355, 45283, '4.0000', '5.0000', '5.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49592, '2022-01-07', 2003, 47221, 3355, 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 (49593, '2022-01-07', 2020, 47222, 3355, NULL, '1.0000', '9.2832', '9.2832', '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 (49594, '2022-01-07', 2416, 47223, 3355, 44001, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49595, '2022-01-07', 7411, 47224, 3355, NULL, '1.0000', '1.3466', '1.3466', '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 (49596, '2022-01-07', 2655, 47225, 3355, 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 (49597, '2022-01-07', 2315, 47226, 3355, NULL, '1.0000', '0.8556', '0.8556', '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 (49598, '2022-01-07', 1674, 47227, 3355, NULL, '1.0000', '3.2473', '3.2473', '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 (49599, '2022-01-07', 1779, 47228, 3356, 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 (49600, '2022-01-07', 2623, 47229, 3356, NULL, '1.0000', '0.6000', '0.6000', '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 (49601, '2022-01-07', 2353, 47230, 3356, 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 (49602, '2022-01-07', 1602, 47231, 3357, NULL, '2.0000', '6.8552', '6.8552', '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 (49603, '2022-01-07', 1912, 47232, 3357, 41409, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49604, '2022-01-07', 7411, 47233, 3357, NULL, '1.0000', '1.3466', '1.3466', '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 (49605, '2022-01-07', 1935, 47234, 3357, NULL, '1.0000', '-0.1979', '-0.1979', '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 (49606, '2022-01-07', 7674, 47235, 3357, NULL, '1.0000', '1.3000', '1.3000', '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 (49607, '2022-01-07', 2237, 47236, 3357, NULL, '1.0000', '-329.8285', '-329.8285', '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 (49608, '2022-01-07', 2821, 47237, 3357, NULL, '1.0000', '3.6016', '3.6016', '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 (49609, '2022-01-07', 1665, 47238, 3357, 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 (49610, '2022-01-07', 8608, 47239, 3357, NULL, '1.0000', '0.9000', '0.9000', '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 (49611, '2022-01-07', 8408, 47240, 3357, 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 (49612, '2022-01-07', 1912, 47241, 3357, 41409, '3.0000', '0.6675', '0.6675', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49613, '2022-01-07', 7892, 47242, 3357, NULL, '1.0000', '4.2000', '4.2000', '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 (49614, '2022-01-07', 2169, 47243, 3357, NULL, '2.0000', '1.1500', '1.1500', '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 (49615, '2022-01-07', 2135, 47244, 3357, 18930, '1.0000', '2.4732', '2.4732', '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 (49616, '2022-01-07', 2655, 47245, 3357, 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 (49617, '2022-01-07', 9337, 47246, 3357, NULL, '2.0000', '5.7200', '5.7200', '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 (49618, '2022-01-07', 2916, 47247, 3357, NULL, '2.0000', '14.8227', '14.8227', '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 (49619, '2022-01-07', 8184, 47248, 3357, NULL, '10.0000', '2.4000', '2.4000', '3.5000', '3.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 (49620, '2022-01-07', 7913, 47249, 3357, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (49621, '2022-01-07', 2315, 47250, 3357, NULL, '2.0000', '0.8556', '0.8556', '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 (49622, '2022-01-07', 2135, 47251, 3358, 18930, '1.0000', '2.4732', '2.4732', '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 (49623, '2022-01-07', 2169, 47252, 3358, NULL, '2.0000', '1.1500', '1.1500', '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 (49624, '2022-01-07', 2315, 47253, 3358, NULL, '1.0000', '0.8556', '0.8556', '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 (49625, '2022-01-07', 7991, 47254, 3358, NULL, '1.0000', '26.5700', '26.5700', '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 (49626, '2022-01-07', 1311, 47255, 3358, 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 (49627, '2022-01-07', 1837, 47256, 3358, 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 (49628, '2022-01-07', 1532, 47257, 3358, NULL, '2.0000', '7.4815', '7.4815', '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 (49629, '2022-01-07', 7334, 47258, 3358, NULL, '1.0000', '8.1600', '8.1600', '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 (49630, '2022-01-07', 8745, 47259, 3358, 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 (49631, '2022-01-07', 9706, 47260, 3358, 44446, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49632, '2022-01-07', 1310, 47261, 3358, NULL, '5.0000', '0.4288', '0.4288', '0.6000', '0.6000', '-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 (49633, '2022-01-07', 2384, 47262, 3358, NULL, '7.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (49634, '2022-01-07', 7886, 47263, 3359, NULL, '1.0000', '-8.1003', '-8.1003', '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 (49635, '2022-01-07', 7366, 47264, 3359, 45810, '1.0000', '7.6500', '7.6500', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49636, '2022-01-07', 9631, 47265, 3359, 45866, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49637, '2022-01-07', 1867, 47266, 3359, NULL, '1.0000', '10.0000', '10.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 (49638, '2022-01-07', 2242, 47267, 3359, 45849, '3.0000', '0.5356', '0.5356', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49639, '2022-01-07', 7457, 47268, 3359, 43158, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49640, '2022-01-07', 2277, 47269, 3359, 44889, '6.0000', '0.7800', '0.7800', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49641, '2022-01-07', 2315, 47270, 3359, NULL, '1.0000', '0.4740', '0.4740', '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 (49642, '2022-01-07', 7353, 47271, 3359, 45856, '2.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49643, '2022-01-07', 8918, 47272, 3359, 45579, '2.0000', '4.7316', '4.7316', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49644, '2022-01-07', 9729, 47273, 3359, 45676, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49645, '2022-01-07', 8046, 47274, 3359, 37407, '10.0000', '456.2805', '456.2805', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49646, '2022-01-07', 8712, 47275, 3359, NULL, '1.0000', '7.0400', '7.0400', '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 (49647, '2022-01-07', 8677, 47276, 3359, NULL, '2.0000', '1.2300', '1.2300', '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 (49648, '2022-01-07', 7482, 47277, 3359, 45652, '1.0000', '2.5816', '2.5816', '5.5000', '5.5000', '13.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49649, '2022-01-07', 8793, 47278, 3359, 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 (49650, '2022-01-07', 7478, 47279, 3359, 45731, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49651, '2022-01-07', 1982, 47280, 3359, NULL, '1.0000', '4.5000', '4.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 (49652, '2022-01-07', 7609, 47281, 3359, NULL, '1.0000', '4.3300', '4.3300', '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 (49653, '2022-01-07', 2332, 47282, 3359, 45735, '1.0000', '5.5568', '5.5568', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49654, '2022-01-07', 7741, 47283, 3359, 45696, '1.0000', '4.5767', '4.5767', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49655, '2022-01-07', 7671, 47284, 3359, NULL, '2.0000', '39.0276', '39.0276', '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 (49656, '2022-01-07', 7588, 47285, 3359, NULL, '1.0000', '7.1270', '7.1270', '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 (49657, '2022-01-07', 8518, 47286, 3359, NULL, '1.0000', '17.6400', '17.6400', '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 (49658, '2022-01-07', 8064, 47287, 3359, 45745, '1.0000', '4.9571', '4.9571', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49659, '2022-01-07', 7714, 47288, 3359, NULL, '5.0000', '0.4200', '0.4200', '0.6000', '0.6000', '-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 (49660, '2022-01-07', 7630, 47289, 3359, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (49661, '2022-01-07', 2651, 47290, 3359, 45684, '1.0000', '11.5000', '11.5000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49662, '2022-01-07', 1361, 47291, 3359, NULL, '1.0000', '59.0300', '59.0300', '78.0000', '78.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49663, '2022-01-07', 2427, 47292, 3359, NULL, '1.0000', '5.8000', '5.8000', '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 (49664, '2022-01-07', 8388, 47293, 3359, NULL, '1.0000', '10.0000', '10.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 (49665, '2022-01-07', 8325, 47294, 3359, 36672, '1.0000', '6.3350', '6.3350', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49666, '2022-01-07', 8965, 47295, 3359, NULL, '1.0000', '52.9900', '52.9900', '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 (49667, '2022-01-07', 8548, 47296, 3359, NULL, '1.0000', '12.0000', '12.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 (49668, '2022-01-07', 7907, 47297, 3359, NULL, '1.0000', '12.0000', '12.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 (49669, '2022-01-07', 1854, 47298, 3359, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49670, '2022-01-07', 7946, 47299, 3359, 44904, '1.0000', '4.6160', '4.6160', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49671, '2022-01-07', 9734, 47300, 3359, 45645, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49672, '2022-01-07', 7704, 47301, 3359, NULL, '1.0000', '-1.5625', '-1.5625', '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 (49673, '2022-01-07', 7514, 47302, 3359, NULL, '1.0000', '37.6978', '37.6978', '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 (49674, '2022-01-07', 7848, 47303, 3359, NULL, '1.0000', '-4.6522', '-4.6522', '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 (49675, '2022-01-07', 8858, 47304, 3359, NULL, '2.0000', '34.0226', '34.0226', '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 (49676, '2022-01-07', 8872, 47305, 3359, NULL, '1.0000', '3.0000', '3.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 (49677, '2022-01-07', 7675, 47306, 3359, NULL, '1.0000', '17.2368', '17.2368', '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 (49678, '2022-01-07', 8203, 47307, 3359, NULL, '10.0000', '2.3282', '2.3282', '0.5000', '0.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 (49679, '2022-01-07', 7459, 47308, 3359, NULL, '2.0000', '192.3500', '192.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 (49680, '2022-01-07', 7524, 47309, 3359, NULL, '1.0000', '103.0922', '103.0922', '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 (49681, '2022-01-07', 7632, 47310, 3359, 45788, '1.0000', '10.7728', '10.7728', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49682, '2022-01-07', 8886, 47311, 3359, NULL, '3.0000', '27.0000', '27.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 (49683, '2022-01-07', 9715, 47312, 3359, 45593, '2.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49684, '2022-01-07', 8941, 47313, 3359, NULL, '1.0000', '12.0000', '12.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 (49685, '2022-01-07', 9275, 47314, 3359, NULL, '4.0000', '6.3000', '6.3000', '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 (49686, '2022-01-07', 9561, 47315, 3359, 42671, '2.0000', '6.0000', '6.0000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49687, '2022-01-07', 7674, 47316, 3359, NULL, '1.0000', '-115.5436', '-115.5436', '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 (49688, '2022-01-07', 2655, 47317, 3359, 31905, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49689, '2022-01-07', 8984, 47318, 3359, NULL, '1.0000', '0.6700', '0.6700', '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 (49690, '2022-01-07', 7820, 47319, 3360, NULL, '1.0000', '-416.2000', '-416.2000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49691, '2022-01-07', 7743, 47320, 3360, NULL, '1.0000', '419203.7668', '419203.7668', '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 (49692, '2022-01-07', 1602, 47321, 3361, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '33.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49693, '2022-01-07', 2556, 47322, 3361, 7199, '1.0000', '0.5800', '0.5800', '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 (49694, '2022-01-07', 2317, 47323, 3361, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '42.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49695, '2022-01-07', 2643, 47324, 3361, 44038, '3.0000', '0.8700', '0.8700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49696, '2022-01-07', 1602, 47325, 3361, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '33.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49697, '2022-01-07', 2712, 47326, 3361, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49698, '2022-01-07', 2791, 47327, 3361, 19043, '2.0000', '41.2200', '41.2200', '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 (49699, '2022-01-07', 2712, 47328, 3361, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49700, '2022-01-07', 1884, 47329, 3361, 40864, '1.0000', '5.4596', '5.4596', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49701, '2022-01-07', 1863, 47330, 3361, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '116.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49702, '2022-01-07', 2762, 47331, 3361, 45127, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49703, '2022-01-07', 1878, 47332, 3361, NULL, '3.0000', '0.2800', '0.2800', '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 (49704, '2022-01-07', 7411, 47333, 3361, NULL, '2.0000', '1.3500', '1.3500', '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 (49705, '2022-01-07', 1665, 47334, 3361, 45608, '1.0000', '1.2495', '1.2495', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49706, '2022-01-07', 3081, 47335, 3361, 27336, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49707, '2022-01-07', 7741, 47336, 3361, NULL, '1.0000', '1.2000', '1.2000', '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 (49708, '2022-01-07', 9577, 47337, 3361, 38070, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49709, '2022-01-07', 2135, 47338, 3361, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49710, '2022-01-07', 9401, 47339, 3361, NULL, '1.0000', '4.8500', '4.8500', '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 (49711, '2022-01-07', 7593, 47340, 3361, 45105, '1.0000', '2.4500', '2.4500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49712, '2022-01-07', 2990, 47341, 3361, 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 (49713, '2022-01-07', 2916, 47342, 3361, 45075, '1.0000', '13.6740', '13.6740', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49714, '2022-01-07', 2917, 47343, 3361, 18791, '1.0000', '7.3500', '7.3500', '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 (49715, '2022-01-07', 2327, 47344, 3361, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49716, '2022-01-07', 1759, 47345, 3361, 45119, '1.0000', '17.1453', '17.1453', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49717, '2022-01-07', 2713, 47346, 3361, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49718, '2022-01-07', 1321, 47347, 3361, NULL, '1.0000', '9.8000', '9.8000', '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 (49719, '2022-01-07', 8775, 47348, 3361, 42927, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49720, '2022-01-07', 9565, 47349, 3361, 40377, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49721, '2022-01-07', 2293, 47350, 3361, 3064, '3.0000', '1.4400', '1.4400', '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 (49722, '2022-01-07', 2695, 47351, 3361, 45122, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '58.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49723, '2022-01-07', 7385, 47352, 3361, 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 (49724, '2022-01-07', 1666, 47353, 3361, 44538, '1.0000', '81.1043', '81.1043', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49725, '2022-01-07', 1651, 47354, 3361, 44714, '1.0000', '6.8545', '6.8545', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49726, '2022-01-07', 2068, 47355, 3361, 45081, '1.0000', '11.7734', '11.7734', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49727, '2022-01-07', 1501, 47356, 3361, 1504, '1.0000', '1566.1965', '1566.1965', '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 (49728, '2022-01-07', 2289, 47357, 3361, 40620, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '51.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49729, '2022-01-07', 9512, 47358, 3361, NULL, '1.0000', '1.3100', '1.3100', '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 (49730, '2022-01-07', 1564, 47359, 3361, 44767, '2.0000', '10.2805', '10.2805', '4.0000', '4.0000', '142.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49731, '2022-01-07', 1855, 47360, 3361, 4986, '1.0000', '1.4000', '1.4000', '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 (49732, '2022-01-07', 1339, 47361, 3361, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49733, '2022-01-07', 1651, 47362, 3361, 44714, '1.0000', '6.8545', '6.8545', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49734, '2022-01-07', 8677, 47363, 3361, NULL, '2.0000', '-1.2995', '-1.2995', '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 (49735, '2022-01-07', 1673, 47364, 3361, 9409, '2.0000', '12.9000', '12.9000', '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 (49736, '2022-01-07', 7886, 47365, 3361, 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 (49737, '2022-01-07', 7411, 47366, 3362, NULL, '1.0000', '1.3466', '1.3466', '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 (49738, '2022-01-07', 2109, 47367, 3362, 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 (49739, '2022-01-07', 1499, 47368, 3362, 41408, '1.0000', '0.6447', '0.6447', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49740, '2022-01-07', 3058, 47369, 3362, 44426, '1.0000', '2.3000', '2.3000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 316);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49741, '2022-01-07', 2315, 47370, 3362, NULL, '1.0000', '0.8556', '0.8556', '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 (49742, '2022-01-07', 7616, 47371, 3362, NULL, '1.0000', '21.5000', '21.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 (49743, '2022-01-07', 1674, 47372, 3362, NULL, '1.0000', '3.2473', '3.2473', '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 (49744, '2022-01-07', 1837, 47373, 3362, 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 (49745, '2022-01-07', 9734, 47374, 3362, NULL, '2.0000', '0.3200', '0.3200', '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 (49746, '2022-01-07', 2221, 47375, 3363, 45118, '3.0000', '15.0000', '15.0000', '25.0000', '25.0000', '19.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49747, '2022-01-08', 2567, 47376, 3364, 45284, '1.0000', '32.0997', '32.0997', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49748, '2022-01-08', 2136, 47377, 3364, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49749, '2022-01-08', 1935, 47378, 3364, NULL, '1.0000', '-0.1979', '-0.1979', '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 (49750, '2022-01-08', 1386, 47379, 3364, 37815, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49751, '2022-01-08', 2073, 47380, 3364, 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 (49752, '2022-01-08', 1512, 47381, 3364, 43269, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49753, '2022-01-08', 8638, 47382, 3364, NULL, '1.0000', '0.5100', '0.5100', '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 (49754, '2022-01-08', 1699, 47383, 3364, NULL, '1.0000', '3.2000', '3.2000', '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 (49755, '2022-01-08', 2169, 47384, 3364, NULL, '1.0000', '1.1500', '1.1500', '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 (49756, '2022-01-08', 1715, 47385, 3364, 42800, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49757, '2022-01-08', 8638, 47386, 3364, NULL, '1.0000', '0.5100', '0.5100', '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 (49758, '2022-01-08', 2221, 47387, 3364, 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 (49759, '2022-01-08', 1822, 47388, 3364, NULL, '5.0000', '2.8709', '2.8709', '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 (49760, '2022-01-08', 7533, 47389, 3364, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49761, '2022-01-08', 1630, 47390, 3364, 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 (49762, '2022-01-08', 2302, 47391, 3364, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49763, '2022-01-08', 2038, 47392, 3364, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.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 (49764, '2022-01-08', 2011, 47393, 3364, 44156, '1.0000', '0.5300', '0.5300', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49765, '2022-01-08', 3028, 47394, 3364, 23982, '2.0000', '2.0000', '2.0000', '3.5000', '3.5000', '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 (49766, '2022-01-08', 1564, 47395, 3365, NULL, '3.0000', '90.0000', '90.0000', '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 (49767, '2022-01-08', 2224, 47396, 3365, 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 (49768, '2022-01-08', 7533, 47397, 3365, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49769, '2022-01-08', 8746, 47398, 3365, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49770, '2022-01-08', 2169, 47399, 3365, NULL, '1.0000', '1.1500', '1.1500', '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 (49771, '2022-01-08', 2377, 47400, 3366, NULL, '2.0000', '8.8000', '8.8000', '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 (49772, '2022-01-08', 1772, 47401, 3366, 39905, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49773, '2022-01-08', 1819, 47402, 3366, 45145, '1.0000', '5.4940', '5.4940', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49774, '2022-01-08', 2769, 47403, 3366, 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 (49775, '2022-01-08', 2169, 47404, 3367, NULL, '1.0000', '1.1500', '1.1500', '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 (49776, '2022-01-08', 2136, 47405, 3367, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49777, '2022-01-08', 2315, 47406, 3367, NULL, '1.0000', '0.8556', '0.8556', '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 (49778, '2022-01-08', 2506, 47407, 3367, NULL, '1.0000', '3.4900', '3.4900', '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 (49779, '2022-01-08', 2169, 47408, 3368, NULL, '1.0000', '1.1500', '1.1500', '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 (49780, '2022-01-08', 2136, 47409, 3368, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49781, '2022-01-08', 2315, 47410, 3368, NULL, '1.0000', '0.8556', '0.8556', '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 (49782, '2022-01-08', 2506, 47411, 3368, NULL, '1.0000', '3.4900', '3.4900', '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 (49783, '2022-01-08', 2295, 47412, 3368, 45160, '3.0000', '1.3471', '1.3471', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49784, '2022-01-08', 2293, 47413, 3368, NULL, '3.0000', '2.7733', '2.7733', '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 (49785, '2022-01-08', 1935, 47414, 3369, 45606, '1.0000', '28.7657', '28.7657', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49786, '2022-01-08', 7825, 47415, 3369, NULL, '1.0000', '6.5000', '6.5000', '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 (49787, '2022-01-08', 7672, 47416, 3369, NULL, '1.0000', '1.0200', '1.0200', '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 (49788, '2022-01-08', 7622, 47417, 3369, NULL, '1.0000', '17.8100', '17.8100', '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 (49789, '2022-01-08', 8203, 47418, 3369, NULL, '2.0000', '2.3282', '2.3282', '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 (49790, '2022-01-08', 7514, 47419, 3369, NULL, '1.0000', '37.6978', '37.6978', '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 (49791, '2022-01-08', 7753, 47420, 3369, 43138, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49792, '2022-01-08', 1810, 47421, 3369, NULL, '1.0000', '5.4135', '5.4135', '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 (49793, '2022-01-08', 8969, 47422, 3369, NULL, '4.0000', '2.0000', '2.0000', '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 (49794, '2022-01-08', 1884, 47423, 3369, 45321, '1.0000', '5.5994', '5.5994', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49795, '2022-01-08', 1501, 47424, 3369, NULL, '1.0000', '2.2365', '2.2365', '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 (49796, '2022-01-08', 7473, 47425, 3369, NULL, '3.0000', '51.6412', '51.6412', '0.6000', '0.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 (49797, '2022-01-08', 9274, 47426, 3369, NULL, '1.0000', '5.5998', '5.5998', '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 (49798, '2022-01-08', 7643, 47427, 3369, NULL, '1.0000', '2.1100', '2.1100', '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 (49799, '2022-01-08', 9716, 47428, 3369, 45605, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49800, '2022-01-08', 7524, 47429, 3369, NULL, '1.0000', '103.0922', '103.0922', '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 (49801, '2022-01-08', 7457, 47430, 3369, 43158, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49802, '2022-01-08', 7778, 47431, 3369, NULL, '1.0000', '17.8220', '17.8220', '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 (49803, '2022-01-08', 7947, 47432, 3369, NULL, '1.0000', '14.4400', '14.4400', '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 (49804, '2022-01-08', 9084, 47433, 3369, NULL, '1.0000', '8.9000', '8.9000', '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 (49805, '2022-01-08', 8539, 47434, 3369, 31000, '3.0000', '4.4300', '4.4300', '0.8000', '0.8000', '11.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49806, '2022-01-08', 1760, 47435, 3369, NULL, '1.0000', '-8681.5917', '-8681.5917', '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 (49807, '2022-01-08', 7428, 47436, 3369, NULL, '10.0000', '744.9056', '744.9056', '4.0000', '4.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 (49808, '2022-01-08', 1689, 47437, 3369, NULL, '1.0000', '12.3500', '12.3500', '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 (49809, '2022-01-08', 2965, 47438, 3369, NULL, '1.0000', '5.0000', '5.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 (49810, '2022-01-08', 7604, 47439, 3369, NULL, '1.0000', '4.3900', '4.3900', '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 (49811, '2022-01-08', 7672, 47440, 3369, NULL, '1.0000', '1.0200', '1.0200', '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 (49812, '2022-01-08', 9576, 47441, 3369, 43533, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49813, '2022-01-08', 9399, 47442, 3369, NULL, '1.0000', '0.4200', '0.4200', '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 (49814, '2022-01-08', 8851, 47443, 3369, NULL, '2.0000', '16.6600', '16.6600', '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 (49815, '2022-01-08', 7506, 47444, 3369, NULL, '1.0000', '15.0000', '15.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 (49816, '2022-01-08', 7664, 47445, 3369, NULL, '1.0000', '6.7801', '6.7801', '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 (49817, '2022-01-08', 7554, 47446, 3369, 44893, '10.0000', '-0.1804', '-0.1804', '2.2000', '2.2000', '23.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49818, '2022-01-08', 7446, 47447, 3369, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49819, '2022-01-08', 2699, 47448, 3369, 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 (49820, '2022-01-08', 2297, 47449, 3369, NULL, '1.0000', '7.2000', '7.2000', '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 (49821, '2022-01-08', 1331, 47450, 3369, 226, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49822, '2022-01-08', 7685, 47451, 3369, NULL, '1.0000', '31.2000', '31.2000', '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 (49823, '2022-01-08', 7564, 47452, 3369, 30930, '2.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49824, '2022-01-08', 7666, 47453, 3369, NULL, '1.0000', '0.4000', '0.4000', '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 (49825, '2022-01-08', 8889, 47454, 3369, 42760, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '5.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49826, '2022-01-08', 7465, 47455, 3369, 45343, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49827, '2022-01-08', 7714, 47456, 3369, NULL, '10.0000', '0.4200', '0.4200', '0.6000', '0.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 (49828, '2022-01-08', 9631, 47457, 3369, 45866, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '13.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49829, '2022-01-08', 7379, 47458, 3369, NULL, '1.0000', '12.5100', '12.5100', '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 (49830, '2022-01-08', 7959, 47459, 3369, NULL, '2.0000', '9.6000', '9.6000', '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 (49831, '2022-01-08', 7722, 47460, 3369, 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 (49832, '2022-01-08', 7894, 47461, 3369, NULL, '1.0000', '-38.6667', '-38.6667', '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 (49833, '2022-01-08', 9337, 47462, 3369, 44951, '3.0000', '-1.0224', '-1.0224', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49834, '2022-01-08', 2221, 47463, 3370, 4154, '-50.0000', '14.4737', '14.4737', '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 (49835, '2022-01-08', 2221, 47463, 3370, NULL, '51.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (49836, '2022-01-08', 1787, 47464, 3370, 4905, '-10.0000', '0.8100', '0.8100', '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 (49837, '2022-01-08', 1787, 47464, 3370, NULL, '11.0000', '0.8100', '0.8100', '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 (49838, '2022-01-08', 2991, 47465, 3370, NULL, '2.0000', '0.5700', '0.5700', '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 (49839, '2022-01-08', 9577, 47466, 3370, NULL, '3.0000', '0.3200', '0.3200', '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 (49840, '2022-01-08', 2556, 47467, 3370, 7196, '-26.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 (49841, '2022-01-08', 2556, 47467, 3370, NULL, '27.0000', '0.5800', '0.5800', '1.0000', '1.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 (49842, '2022-01-08', 2260, 47468, 3370, 2796, '-10.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 (49843, '2022-01-08', 2260, 47468, 3370, NULL, '11.0000', '4.2000', '4.2000', '6.0000', '6.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 (49844, '2022-01-08', 2965, 47469, 3370, NULL, '2.0000', '5.0000', '5.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 (49845, '2022-01-08', 1449, 47470, 3370, 5569, '-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 (49846, '2022-01-08', 1449, 47470, 3370, NULL, '5.0000', '90.0000', '90.0000', '2.5000', '2.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 (49847, '2022-01-08', 1529, 47471, 3370, 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 (49848, '2022-01-08', 1867, 47472, 3370, NULL, '1.0000', '1.0500', '1.0500', '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 (49849, '2022-01-08', 1904, 47473, 3370, 5442, '-25.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 (49850, '2022-01-08', 1904, 47473, 3370, NULL, '26.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (49851, '2022-01-08', 2415, 47474, 3370, 4656, '-11.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 (49852, '2022-01-08', 2415, 47474, 3370, NULL, '12.0000', '5.0000', '5.0000', '7.0000', '7.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 (49853, '2022-01-08', 1665, 47475, 3370, 3235, '-53.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 (49854, '2022-01-08', 1665, 47475, 3370, NULL, '54.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49855, '2022-01-08', 3047, 47476, 3370, NULL, '1.0000', '52.0200', '52.0200', '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 (49856, '2022-01-08', 2066, 47477, 3370, 5484, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '21.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 (49857, '2022-01-08', 2237, 47478, 3370, 2781, '-30.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 (49858, '2022-01-08', 2237, 47478, 3370, NULL, '31.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (49859, '2022-01-08', 8775, 47479, 3370, NULL, '1.0000', '2.6000', '2.6000', '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 (49860, '2022-01-08', 1585, 47480, 3370, 7602, '-7.0000', '13.0000', '13.0000', '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 (49861, '2022-01-08', 1585, 47480, 3370, NULL, '8.0000', '13.0000', '13.0000', '12.5000', '12.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 (49862, '2022-01-08', 2773, 47481, 3370, NULL, '1.0000', '15.0200', '15.0200', '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 (49863, '2022-01-08', 2354, 47482, 3370, 18836, '1.0000', '4.6000', '4.6000', '7.0000', '7.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 (49864, '2022-01-08', 1825, 47483, 3370, 11265, '-6.0000', '4.8000', '4.8000', '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 (49865, '2022-01-08', 1825, 47483, 3370, NULL, '7.0000', '4.8000', '4.8000', '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 (49866, '2022-01-08', 2236, 47484, 3370, 2780, '-12.0000', '5.6599', '5.6599', '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 (49867, '2022-01-08', 2236, 47484, 3370, NULL, '13.0000', '5.6599', '5.6599', '8.0000', '8.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 (49868, '2022-01-08', 9498, 47485, 3370, 33074, '1.0000', '12.5000', '12.5000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49869, '2022-01-08', 1872, 47486, 3370, 12520, '-4.0000', '9.0500', '9.0500', '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 (49870, '2022-01-08', 1872, 47486, 3370, NULL, '5.0000', '9.0500', '9.0500', '13.0000', '13.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 (49871, '2022-01-08', 2169, 47487, 3370, 10737, '-11.0000', '3.8397', '3.8397', '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 (49872, '2022-01-08', 2169, 47487, 3370, NULL, '12.0000', '3.8397', '3.8397', '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 (49873, '2022-01-08', 2317, 47488, 3370, 3473, '1.0000', '15.0000', '15.0000', '18.0000', '18.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 (49874, '2022-01-08', 9695, 47489, 3370, NULL, '1.0000', '4.5000', '4.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 (49875, '2022-01-08', 1871, 47490, 3370, 8223, '-57.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 (49876, '2022-01-08', 1871, 47490, 3370, NULL, '85.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49877, '2022-01-08', 7411, 47491, 3370, NULL, '1.0000', '1.3500', '1.3500', '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 (49878, '2022-01-08', 2849, 47492, 3370, NULL, '1.0000', '5.8500', '5.8500', '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 (49879, '2022-01-08', 7825, 47493, 3371, NULL, '1.0000', '6.5000', '6.5000', '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 (49880, '2022-01-08', 8170, 47494, 3371, NULL, '1.0000', '1.4600', '1.4600', '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 (49881, '2022-01-08', 9274, 47495, 3371, NULL, '1.0000', '5.5998', '5.5998', '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 (49882, '2022-01-08', 7554, 47496, 3371, 44893, '10.0000', '-0.1804', '-0.1804', '2.2000', '2.2000', '13.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49883, '2022-01-08', 9272, 47497, 3371, NULL, '1.0000', '3.1000', '3.1000', '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 (49884, '2022-01-08', 7635, 47498, 3371, NULL, '1.0000', '6.6300', '6.6300', '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 (49885, '2022-01-08', 7674, 47499, 3371, NULL, '1.0000', '-115.5436', '-115.5436', '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 (49886, '2022-01-08', 8206, 47500, 3371, NULL, '1.0000', '0.2000', '0.2000', '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 (49887, '2022-01-08', 7641, 47501, 3371, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49888, '2022-01-08', 8596, 47502, 3371, NULL, '1.0000', '17.0000', '17.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 (49889, '2022-01-08', 9303, 47503, 3371, NULL, '1.0000', '9.0000', '9.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 (49890, '2022-01-08', 7711, 47504, 3371, NULL, '1.0000', '-104.2475', '-104.2475', '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 (49891, '2022-01-08', 1935, 47505, 3371, 45606, '2.0000', '28.7657', '28.7657', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49892, '2022-01-08', 2655, 47506, 3371, 31905, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49893, '2022-01-08', 2289, 47507, 3371, NULL, '4.0000', '0.2069', '0.2069', '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 (49894, '2022-01-08', 7675, 47508, 3371, NULL, '2.0000', '17.2368', '17.2368', '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 (49895, '2022-01-08', 8172, 47509, 3371, NULL, '1.0000', '40.7000', '40.7000', '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 (49896, '2022-01-08', 8879, 47510, 3371, NULL, '1.0000', '17.0000', '17.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 (49897, '2022-01-08', 1904, 47511, 3371, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49898, '2022-01-08', 8000, 47512, 3371, NULL, '1.0000', '232.7104', '232.7104', '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 (49899, '2022-01-08', 2279, 47513, 3371, NULL, '2.0000', '2.6000', '2.6000', '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 (49900, '2022-01-08', 7428, 47514, 3371, NULL, '3.0000', '744.9056', '744.9056', '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 (49901, '2022-01-08', 8746, 47515, 3372, 45281, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49902, '2022-01-08', 2068, 47516, 3372, NULL, '1.0000', '11.9176', '11.9176', '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 (49903, '2022-01-08', 2547, 47517, 3372, NULL, '1.0000', '8.6575', '8.6575', '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 (49904, '2022-01-08', 7532, 47518, 3372, 42102, '1.0000', '20.2334', '20.2334', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49905, '2022-01-08', 9734, 47519, 3372, NULL, '8.0000', '0.3200', '0.3200', '0.5000', '0.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 (49906, '2022-01-08', 2455, 47520, 3372, 19876, '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 (49907, '2022-01-08', 1602, 47521, 3372, NULL, '1.0000', '6.8552', '6.8552', '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 (49908, '2022-01-08', 1499, 47522, 3372, 41408, '1.0000', '0.6447', '0.6447', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49909, '2022-01-08', 1499, 47522, 3372, 43252, '1.0000', '0.6447', '0.6447', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49910, '2022-01-08', 7585, 47523, 3372, NULL, '1.0000', '3.9600', '3.9600', '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 (49911, '2022-01-08', 2135, 47524, 3372, 18930, '1.0000', '2.4732', '2.4732', '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 (49912, '2022-01-08', 2169, 47525, 3372, NULL, '1.0000', '1.1500', '1.1500', '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 (49913, '2022-01-08', 2315, 47526, 3372, NULL, '1.0000', '0.8556', '0.8556', '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 (49914, '2022-01-08', 2681, 47527, 3372, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49915, '2022-01-08', 1573, 47528, 3372, 41420, '1.0000', '23.1275', '23.1275', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49916, '2022-01-08', 1700, 47529, 3372, 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 (49917, '2022-01-08', 2169, 47530, 3372, NULL, '1.0000', '1.1500', '1.1500', '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 (49918, '2022-01-08', 2169, 47531, 3372, NULL, '1.0000', '1.1500', '1.1500', '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 (49919, '2022-01-08', 7524, 47532, 3372, NULL, '1.0000', '11.9500', '11.9500', '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 (49920, '2022-01-08', 1371, 47533, 3372, 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 (49921, '2022-01-08', 7666, 47534, 3372, NULL, '1.0000', '-6.0000', '-6.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 (49922, '2022-01-08', 2332, 47535, 3372, NULL, '1.0000', '5.0900', '5.0900', '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 (49923, '2022-01-08', 2384, 47536, 3372, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49924, '2022-01-08', 1837, 47537, 3372, 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 (49925, '2022-01-08', 2169, 47538, 3372, NULL, '1.0000', '1.1500', '1.1500', '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 (49926, '2022-01-08', 3001, 47539, 3372, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49927, '2022-01-08', 2850, 47540, 3372, 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 (49928, '2022-01-08', 8454, 47541, 3372, NULL, '1.0000', '3.7420', '3.7420', '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 (49929, '2022-01-08', 1307, 47542, 3372, NULL, '1.0000', '1.7846', '1.7846', '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 (49930, '2022-01-08', 2299, 47543, 3372, 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 (49931, '2022-01-08', 1581, 47544, 3372, 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 (49932, '2022-01-08', 8325, 47545, 3372, 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 (49933, '2022-01-08', 9647, 47546, 3372, 41425, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49934, '2022-01-08', 1529, 47547, 3372, NULL, '1.0000', '3.4997', '3.4997', '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 (49935, '2022-01-08', 2726, 47548, 3372, NULL, '1.0000', '2.7004', '2.7004', '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 (49936, '2022-01-08', 7565, 47549, 3372, NULL, '2.0000', '0.2000', '0.2000', '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 (49937, '2022-01-08', 2169, 47550, 3372, NULL, '1.0000', '1.1500', '1.1500', '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 (49938, '2022-01-08', 7565, 47551, 3372, NULL, '1.0000', '0.2000', '0.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 (49939, '2022-01-08', 2315, 47552, 3372, NULL, '1.0000', '0.8556', '0.8556', '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 (49940, '2022-01-08', 7354, 47553, 3372, 39856, '1.0000', '0.0102', '0.0102', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49941, '2022-01-08', 7708, 47554, 3372, 45203, '1.0000', '6.3400', '6.3400', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49942, '2022-01-08', 2655, 47555, 3372, 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 (49943, '2022-01-08', 9469, 47556, 3372, NULL, '1.0000', '3.1000', '3.1000', '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 (49944, '2022-01-08', 8608, 47557, 3372, NULL, '1.0000', '0.9000', '0.9000', '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 (49945, '2022-01-08', 2299, 47558, 3372, 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 (49946, '2022-01-08', 1708, 47559, 3372, 43245, '1.0000', '14.1733', '14.1733', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49947, '2022-01-08', 8206, 47560, 3373, NULL, '1.0000', '0.2000', '0.2000', '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 (49948, '2022-01-08', 7482, 47561, 3373, 45652, '1.0000', '2.5816', '2.5816', '5.5000', '5.5000', '12.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49949, '2022-01-08', 9734, 47562, 3373, 45645, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49950, '2022-01-08', 7509, 47563, 3373, NULL, '1.0000', '6.6667', '6.6667', '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 (49951, '2022-01-08', 7671, 47564, 3373, NULL, '4.0000', '39.0276', '39.0276', '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 (49952, '2022-01-08', 9293, 47565, 3373, 45295, '10.0000', '0.2188', '0.2188', '1.8000', '1.8000', '38.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49953, '2022-01-08', 1651, 47566, 3374, NULL, '1.0000', '5.0422', '5.0422', '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 (49954, '2022-01-08', 1427, 47567, 3374, 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 (49955, '2022-01-08', 1348, 47568, 3374, 23123, '1.0000', '15.5000', '15.5000', '21.0000', '21.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 (49956, '2022-01-08', 8745, 47569, 3374, 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 (49957, '2022-01-08', 9699, 47570, 3374, 44151, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49958, '2022-01-08', 9469, 47571, 3374, NULL, '1.0000', '3.1000', '3.1000', '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 (49959, '2022-01-08', 1651, 47572, 3374, NULL, '1.0000', '5.0422', '5.0422', '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 (49960, '2022-01-08', 7412, 47573, 3375, NULL, '1.0000', '1.5200', '1.5200', '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 (49961, '2022-01-08', 1912, 47574, 3376, 29799, '1.0000', '0.5743', '0.5743', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49962, '2022-01-08', 1425, 47575, 3376, 45618, '1.0000', '6.7045', '6.7045', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49963, '2022-01-08', 2454, 47576, 3376, 45070, '1.0000', '9.0417', '9.0417', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49964, '2022-01-08', 2262, 47577, 3376, 18683, '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 (49965, '2022-01-08', 2699, 47578, 3376, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49966, '2022-01-08', 1602, 47579, 3376, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49967, '2022-01-08', 7744, 47580, 3376, 44790, '1.0000', '2.9400', '2.9400', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49968, '2022-01-08', 1863, 47581, 3376, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '115.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49969, '2022-01-08', 2135, 47582, 3376, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49970, '2022-01-08', 7802, 47583, 3376, NULL, '3.0000', '0.9200', '0.9200', '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 (49971, '2022-01-08', 7608, 47584, 3376, NULL, '1.0000', '6.9800', '6.9800', '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 (49972, '2022-01-08', 2712, 47585, 3376, 42626, '6.0000', '0.2600', '0.2600', '0.5000', '0.5000', '12.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49973, '2022-01-08', 1602, 47586, 3376, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49974, '2022-01-08', 2293, 47587, 3376, 3064, '3.0000', '1.4400', '1.4400', '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 (49975, '2022-01-08', 7917, 47588, 3376, NULL, '1.0000', '5.0000', '5.0000', '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 (49976, '2022-01-08', 2169, 47589, 3376, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49977, '2022-01-08', 1612, 47590, 3376, 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 (49978, '2022-01-08', 2858, 47591, 3376, 17780, '1.0000', '1.0000', '1.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 (49979, '2022-01-08', 2169, 47592, 3376, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49980, '2022-01-08', 1699, 47593, 3376, NULL, '1.0000', '3.2000', '3.2000', '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 (49981, '2022-01-08', 1339, 47594, 3376, 44501, '2.0000', '1.7611', '1.7611', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49982, '2022-01-08', 1844, 47595, 3376, 4976, '4.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 (49983, '2022-01-08', 7459, 47596, 3376, 31998, '1.0000', '2.3500', '2.3500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49984, '2022-01-08', 7459, 47596, 3376, NULL, '39.0000', '2.3500', '2.3500', '3.0000', '3.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49985, '2022-01-08', 9734, 47597, 3376, NULL, '5.0000', '0.3200', '0.3200', '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 (49986, '2022-01-08', 1904, 47598, 3376, 45091, '2.0000', '39.3704', '39.3704', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49987, '2022-01-08', 2695, 47599, 3376, 45122, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '56.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49988, '2022-01-08', 2352, 47600, 3376, 44595, '4.0000', '233.6176', '233.6176', '3.5000', '3.5000', '86.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49989, '2022-01-08', 1844, 47601, 3376, 4976, '1.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 (49990, '2022-01-08', 1787, 47602, 3376, 40215, '2.0000', '0.8100', '0.8100', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49991, '2022-01-08', 2991, 47603, 3376, 34701, '2.0000', '-0.0569', '-0.0569', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49992, '2022-01-08', 7532, 47604, 3376, NULL, '1.0000', '20.6000', '20.6000', '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 (49993, '2022-01-08', 2794, 47605, 3376, 19040, '1.0000', '17.8200', '17.8200', '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 (49994, '2022-01-08', 2240, 47606, 3376, 37556, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49995, '2022-01-08', 7318, 47607, 3376, 44769, '1.0000', '10.4167', '10.4167', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49996, '2022-01-08', 2699, 47608, 3376, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49997, '2022-01-08', 1339, 47609, 3376, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49998, '2022-01-08', 1993, 47610, 3376, 40304, '1.0000', '2.0250', '2.0250', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49999, '2022-01-08', 1812, 47611, 3376, 44713, '1.0000', '7.9641', '7.9641', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50000, '2022-01-08', 2990, 47612, 3376, 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 (50001, '2022-01-08', 2557, 47613, 3376, 12741, '1.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 (50002, '2022-01-08', 2327, 47614, 3376, 45068, '2.0000', '16.5543', '16.5543', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50003, '2022-01-08', 2699, 47615, 3376, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50004, '2022-01-08', 7917, 47616, 3376, NULL, '4.0000', '5.0000', '5.0000', '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 (50005, '2022-01-08', 1321, 47617, 3376, NULL, '1.0000', '9.8000', '9.8000', '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 (50006, '2022-01-08', 2221, 47618, 3376, 45118, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '17.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50007, '2022-01-08', 1662, 47619, 3376, 18790, '1.0000', '77.0000', '77.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 (50008, '2022-01-08', 2781, 47620, 3376, 19054, '1.0000', '31.3200', '31.3200', '65.0000', '65.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50009, '2022-01-08', 2991, 47621, 3376, 34701, '4.0000', '-0.0569', '-0.0569', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50010, '2022-01-09', 2850, 47622, 3377, 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 (50011, '2022-01-09', 8454, 47623, 3377, NULL, '1.0000', '3.7420', '3.7420', '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 (50012, '2022-01-09', 7354, 47624, 3377, 39856, '1.0000', '0.0102', '0.0102', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50013, '2022-01-09', 1826, 47625, 3377, 19385, '5.0000', '0.2100', '0.2100', '0.5000', '0.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 (50014, '2022-01-09', 7635, 47626, 3377, NULL, '1.0000', '6.6300', '6.6300', '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 (50015, '2022-01-09', 1425, 47627, 3377, 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 (50016, '2022-01-09', 2169, 47628, 3377, NULL, '1.0000', '1.1500', '1.1500', '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 (50017, '2022-01-09', 1595, 47629, 3377, 45159, '1.0000', '20.2958', '20.2958', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50018, '2022-01-09', 2315, 47630, 3377, NULL, '2.0000', '0.8556', '0.8556', '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 (50019, '2022-01-09', 7823, 47631, 3377, NULL, '1.0000', '11.3000', '11.3000', '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 (50020, '2022-01-09', 2250, 47632, 3377, NULL, '1.0000', '6.9650', '6.9650', '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 (50021, '2022-01-09', 7514, 47633, 3377, NULL, '1.0000', '2.2500', '2.2500', '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 (50022, '2022-01-09', 7411, 47634, 3377, NULL, '3.0000', '1.3466', '1.3466', '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 (50023, '2022-01-09', 8740, 47635, 3378, NULL, '1.0000', '2.0000', '2.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 (50024, '2022-01-09', 7333, 47636, 3378, NULL, '2.0000', '13.5000', '13.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 (50025, '2022-01-09', 7651, 47637, 3378, 44860, '1.0000', '-6.6500', '-6.6500', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50026, '2022-01-09', 8137, 47638, 3378, NULL, '1.0000', '3.0000', '3.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 (50027, '2022-01-09', 7885, 47639, 3378, NULL, '1.0000', '-160.8050', '-160.8050', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50028, '2022-01-09', 1845, 47640, 3378, NULL, '1.0000', '20.0000', '20.0000', '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 (50029, '2022-01-09', 7416, 47641, 3378, NULL, '1.0000', '1.2500', '1.2500', '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 (50030, '2022-01-09', 9674, 47642, 3378, 42403, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50031, '2022-01-09', 7780, 47643, 3378, NULL, '1.0000', '-8.7461', '-8.7461', '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 (50032, '2022-01-09', 7490, 47644, 3378, 44941, '2.0000', '-4.4639', '-4.4639', '0.4000', '0.4000', '65.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50033, '2022-01-09', 7857, 47645, 3378, NULL, '1.0000', '14.5620', '14.5620', '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 (50034, '2022-01-09', 8288, 47646, 3378, 44822, '40.0000', '-44.2273', '-44.2273', '1.8000', '1.8000', '4.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50035, '2022-01-09', 8712, 47647, 3378, NULL, '1.0000', '7.0400', '7.0400', '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 (50036, '2022-01-09', 7530, 47648, 3378, NULL, '1.0000', '5.4000', '5.4000', '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 (50037, '2022-01-09', 7633, 47649, 3378, 45782, '1.0000', '2.8700', '2.8700', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50038, '2022-01-09', 2315, 47650, 3378, NULL, '1.0000', '0.4740', '0.4740', '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 (50039, '2022-01-09', 7609, 47651, 3378, NULL, '1.0000', '4.3300', '4.3300', '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 (50040, '2022-01-09', 7712, 47652, 3378, NULL, '1.0000', '-15.7138', '-15.7138', '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 (50041, '2022-01-09', 7411, 47653, 3378, NULL, '1.0000', '1.4255', '1.4255', '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 (50042, '2022-01-09', 9193, 47654, 3378, NULL, '1.0000', '8.6155', '8.6155', '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 (50043, '2022-01-09', 8000, 47655, 3378, NULL, '1.0000', '232.7104', '232.7104', '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 (50044, '2022-01-09', 1845, 47656, 3378, NULL, '1.0000', '20.0000', '20.0000', '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 (50045, '2022-01-09', 8333, 47657, 3378, 44754, '1.0000', '7.5100', '7.5100', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50046, '2022-01-09', 2104, 47658, 3378, NULL, '2.0000', '0.2000', '0.2000', '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 (50047, '2022-01-09', 7672, 47659, 3378, NULL, '1.0000', '1.0200', '1.0200', '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 (50048, '2022-01-09', 8515, 47660, 3378, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (50049, '2022-01-09', 7317, 47661, 3378, NULL, '1.0000', '621.9867', '621.9867', '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 (50050, '2022-01-09', 7514, 47662, 3378, NULL, '1.0000', '37.6978', '37.6978', '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 (50051, '2022-01-09', 7391, 47663, 3378, NULL, '1.0000', '-26.2683', '-26.2683', '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 (50052, '2022-01-09', 9716, 47664, 3378, 45605, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50053, '2022-01-09', 8497, 47665, 3378, NULL, '1.0000', '519.4089', '519.4089', '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 (50054, '2022-01-09', 8079, 47666, 3378, NULL, '1.0000', '0.2900', '0.2900', '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 (50055, '2022-01-09', 7990, 47667, 3378, 44901, '1.0000', '8.0800', '8.0800', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50056, '2022-01-09', 8198, 47668, 3378, NULL, '1.0000', '-104.1767', '-104.1767', '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 (50057, '2022-01-09', 9445, 47669, 3378, 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 (50058, '2022-01-09', 7608, 47670, 3378, NULL, '1.0000', '6.9800', '6.9800', '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 (50059, '2022-01-09', 7411, 47671, 3378, NULL, '1.0000', '1.4255', '1.4255', '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 (50060, '2022-01-09', 1837, 47672, 3378, 45863, '2.0000', '0.3520', '0.3520', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50061, '2022-01-09', 9092, 47673, 3378, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '139.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50062, '2022-01-09', 8276, 47674, 3378, NULL, '1.0000', '13.4126', '13.4126', '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 (50063, '2022-01-09', 7809, 47675, 3378, NULL, '1.0000', '13.5000', '13.5000', '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 (50064, '2022-01-09', 7385, 47676, 3378, 45811, '3.0000', '-29.7430', '-29.7430', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50065, '2022-01-09', 8067, 47677, 3378, NULL, '1.0000', '69.9700', '69.9700', '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 (50066, '2022-01-09', 8187, 47678, 3378, NULL, '4.0000', '14.3900', '14.3900', '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 (50067, '2022-01-09', 7776, 47679, 3378, NULL, '1.0000', '8.0000', '8.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 (50068, '2022-01-09', 7671, 47680, 3378, NULL, '1.0000', '39.0276', '39.0276', '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 (50069, '2022-01-09', 8186, 47681, 3378, NULL, '3.0000', '1.0800', '1.0800', '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 (50070, '2022-01-09', 7324, 47682, 3378, 45796, '1.0000', '5.3429', '5.3429', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50071, '2022-01-09', 8154, 47683, 3378, NULL, '1.0000', '12.3000', '12.3000', '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 (50072, '2022-01-09', 2027, 47684, 3378, 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 (50073, '2022-01-09', 7518, 47685, 3378, NULL, '1.0000', '-214.0750', '-214.0750', '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 (50074, '2022-01-09', 7632, 47686, 3378, 45788, '1.0000', '10.7728', '10.7728', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50075, '2022-01-09', 7641, 47687, 3378, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50076, '2022-01-09', 7460, 47688, 3378, NULL, '4.0000', '294.7000', '294.7000', '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 (50077, '2022-01-09', 2295, 47689, 3378, NULL, '5.0000', '0.7000', '0.7000', '1.5000', '1.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 (50078, '2022-01-09', 7547, 47690, 3378, NULL, '4.0000', '0.0000', '0.0000', '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 (50079, '2022-01-09', 7557, 47691, 3378, NULL, '10.0000', '0.5000', '0.5000', '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 (50080, '2022-01-09', 9394, 47692, 3378, NULL, '1.0000', '5.5000', '5.5000', '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 (50081, '2022-01-09', 8596, 47693, 3378, NULL, '2.0000', '17.0000', '17.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 (50082, '2022-01-09', 7473, 47694, 3378, NULL, '10.0000', '51.6412', '51.6412', '0.6000', '0.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 (50083, '2022-01-09', 8702, 47695, 3378, NULL, '1.0000', '3.6700', '3.6700', '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 (50084, '2022-01-09', 2315, 47696, 3378, NULL, '1.0000', '0.4740', '0.4740', '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 (50085, '2022-01-09', 9092, 47697, 3378, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '137.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50086, '2022-01-09', 9393, 47698, 3378, NULL, '1.0000', '15.0000', '15.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 (50087, '2022-01-09', 8276, 47699, 3378, NULL, '1.0000', '13.4126', '13.4126', '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 (50088, '2022-01-09', 9337, 47700, 3378, 44951, '2.0000', '-1.0224', '-1.0224', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50089, '2022-01-09', 7630, 47701, 3378, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (50090, '2022-01-09', 9734, 47702, 3379, NULL, '8.0000', '0.3200', '0.3200', '0.5000', '0.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 (50091, '2022-01-09', 2003, 47703, 3379, 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 (50092, '2022-01-09', 2287, 47704, 3379, 43279, '2.0000', '1.6790', '1.6790', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50093, '2022-01-09', 1493, 47705, 3379, 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 (50094, '2022-01-09', 2221, 47706, 3379, 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 (50095, '2022-01-09', 2965, 47707, 3379, NULL, '1.0000', '5.6266', '5.6266', '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 (50096, '2022-01-09', 7950, 47708, 3379, NULL, '2.0000', '2.4000', '2.4000', '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 (50097, '2022-01-09', 2237, 47709, 3379, NULL, '2.0000', '-329.8285', '-329.8285', '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 (50098, '2022-01-09', 9734, 47710, 3379, NULL, '2.0000', '0.3200', '0.3200', '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 (50099, '2022-01-09', 2287, 47711, 3379, 43279, '2.0000', '1.6790', '1.6790', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50100, '2022-01-09', 7666, 47712, 3379, NULL, '1.0000', '-6.0000', '-6.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 (50101, '2022-01-09', 2916, 47713, 3379, NULL, '1.0000', '14.8227', '14.8227', '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 (50102, '2022-01-09', 7666, 47714, 3379, NULL, '1.0000', '-6.0000', '-6.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 (50103, '2022-01-09', 2452, 47715, 3379, NULL, '1.0000', '2.5000', '2.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 (50104, '2022-01-09', 1935, 47716, 3379, NULL, '1.0000', '-0.1979', '-0.1979', '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 (50105, '2022-01-09', 9702, 47717, 3379, 44442, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50106, '2022-01-09', 1837, 47718, 3379, 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 (50107, '2022-01-09', 1912, 47719, 3379, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50108, '2022-01-09', 7411, 47720, 3379, NULL, '1.0000', '1.3466', '1.3466', '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 (50109, '2022-01-09', 1854, 47721, 3379, 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 (50110, '2022-01-09', 9275, 47722, 3379, NULL, '1.0000', '6.3000', '6.3000', '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 (50111, '2022-01-09', 1854, 47723, 3379, 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 (50112, '2022-01-09', 7641, 47724, 3379, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50113, '2022-01-09', 2280, 47725, 3379, NULL, '1.0000', '-177.9360', '-177.9360', '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 (50114, '2022-01-09', 7411, 47726, 3379, NULL, '1.0000', '1.3466', '1.3466', '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 (50115, '2022-01-09', 1388, 47727, 3379, 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 (50116, '2022-01-09', 9503, 47728, 3379, 33350, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50117, '2022-01-09', 1407, 47729, 3379, 37813, '1.0000', '17.0500', '17.0500', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50118, '2022-01-09', 8444, 47730, 3379, 45634, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50119, '2022-01-09', 7666, 47731, 3379, NULL, '1.0000', '-6.0000', '-6.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 (50120, '2022-01-09', 1837, 47732, 3379, 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 (50121, '2022-01-09', 7411, 47733, 3379, NULL, '1.0000', '1.3466', '1.3466', '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 (50122, '2022-01-09', 1480, 47734, 3379, 42086, '1.0000', '29.9900', '29.9900', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50123, '2022-01-09', 1928, 47735, 3379, 41412, '1.0000', '5.3300', '5.3300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50124, '2022-01-09', 2287, 47736, 3379, 43279, '1.0000', '1.6790', '1.6790', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50125, '2022-01-09', 7913, 47737, 3379, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (50126, '2022-01-09', 7638, 47738, 3379, 39773, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50127, '2022-01-09', 7514, 47739, 3379, NULL, '1.0000', '2.2500', '2.2500', '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 (50128, '2022-01-09', 2908, 47740, 3379, NULL, '5.0000', '0.2700', '0.2700', '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 (50129, '2022-01-09', 2020, 47741, 3379, NULL, '1.0000', '9.2832', '9.2832', '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 (50130, '2022-01-09', 2982, 47742, 3379, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '15.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 (50131, '2022-01-09', 1519, 47743, 3379, NULL, '1.0000', '3.3980', '3.3980', '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 (50132, '2022-01-09', 1715, 47744, 3379, 42800, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50133, '2022-01-09', 1910, 47745, 3379, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (50134, '2022-01-09', 2635, 47746, 3379, 32532, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50135, '2022-01-09', 1620, 47747, 3379, 42842, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50136, '2022-01-09', 1689, 47748, 3379, 39798, '1.0000', '12.9279', '12.9279', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50137, '2022-01-09', 1841, 47749, 3379, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50138, '2022-01-09', 2289, 47750, 3379, 42836, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50139, '2022-01-09', 1748, 47751, 3379, NULL, '1.0000', '0.3200', '0.3200', '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 (50140, '2022-01-09', 1782, 47752, 3379, 19340, '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 (50141, '2022-01-09', 1840, 47753, 3379, 42569, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '27.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50142, '2022-01-09', 1546, 47754, 3379, 19827, '5.0000', '99.5612', '99.5612', '4.0000', '4.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 (50143, '2022-01-09', 2287, 47755, 3379, 43279, '3.0000', '1.6790', '1.6790', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50144, '2022-01-09', 2825, 47756, 3380, NULL, '1.0000', '12.0000', '12.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 (50145, '2022-01-09', 9089, 47757, 3380, NULL, '2.0000', '3.8000', '3.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 (50146, '2022-01-09', 2916, 47758, 3380, 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 (50147, '2022-01-09', 9741, 47759, 3380, NULL, '1.0000', '7.6000', '7.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 (50148, '2022-01-09', 9750, 47760, 3380, NULL, '1.0000', '3.3000', '3.3000', '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 (50149, '2022-01-09', 2712, 47761, 3380, 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 (50150, '2022-01-09', 2236, 47762, 3380, 2780, '-13.0000', '5.6599', '5.6599', '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 (50151, '2022-01-09', 2236, 47762, 3380, NULL, '14.0000', '5.6599', '5.6599', '8.0000', '8.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 (50152, '2022-01-09', 1857, 47763, 3380, 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 (50153, '2022-01-09', 2351, 47764, 3380, 3854, '1.0000', '17.7000', '17.7000', '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 (50154, '2022-01-09', 1398, 47765, 3380, 22286, '1.0000', '7.5000', '7.5000', '13.0000', '13.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 (50155, '2022-01-09', 1347, 47766, 3380, 3320, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '1.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 (50156, '2022-01-09', 1908, 47767, 3380, 5444, '-24.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 (50157, '2022-01-09', 1908, 47767, 3380, NULL, '25.0000', '90.0000', '90.0000', '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 (50158, '2022-01-09', 2331, 47768, 3380, 3834, '-8.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 (50159, '2022-01-09', 2331, 47768, 3380, NULL, '9.0000', '12.0700', '12.0700', '16.0000', '16.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 (50160, '2022-01-09', 1845, 47769, 3380, 6222, '-13.0000', '19.5000', '19.5000', '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 (50161, '2022-01-09', 1845, 47769, 3380, NULL, '14.0000', '19.5000', '19.5000', '26.5000', '26.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 (50162, '2022-01-09', 7741, 47770, 3380, NULL, '1.0000', '1.2000', '1.2000', '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 (50163, '2022-01-09', 9499, 47771, 3380, 33075, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50164, '2022-01-09', 3074, 47772, 3380, 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 (50165, '2022-01-09', 7411, 47773, 3380, NULL, '2.0000', '1.3500', '1.3500', '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 (50166, '2022-01-09', 2761, 47774, 3380, 20705, '1.0000', '6.0000', '6.0000', '8.0000', '8.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 (50167, '2022-01-09', 2411, 47775, 3380, 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 (50168, '2022-01-09', 1401, 47776, 3380, 20651, '1.0000', '3.0000', '3.0000', '4.0000', '4.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 (50169, '2022-01-09', 1665, 47777, 3380, 3235, '-54.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 (50170, '2022-01-09', 1665, 47777, 3380, NULL, '55.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (50171, '2022-01-09', 2297, 47778, 3380, 2956, '-2.0000', '6.6000', '6.6000', '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 (50172, '2022-01-09', 2297, 47778, 3380, NULL, '3.0000', '6.6000', '6.6000', '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 (50173, '2022-01-09', 1812, 47779, 3380, 8224, '-57.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 (50174, '2022-01-09', 1812, 47779, 3380, NULL, '58.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50175, '2022-01-09', 2169, 47780, 3380, 10737, '-12.0000', '3.8397', '3.8397', '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 (50176, '2022-01-09', 2169, 47780, 3380, NULL, '13.0000', '3.8397', '3.8397', '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 (50177, '2022-01-09', 1612, 47781, 3380, 8732, '-2.0000', '1.6000', '1.6000', '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 (50178, '2022-01-09', 1612, 47781, 3380, NULL, '3.0000', '1.6000', '1.6000', '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 (50179, '2022-01-09', 2066, 47782, 3380, 5484, '5.0000', '0.5100', '0.5100', '1.0000', '1.0000', '16.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 (50180, '2022-01-09', 7411, 47783, 3380, NULL, '1.0000', '1.3500', '1.3500', '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 (50181, '2022-01-09', 1326, 47784, 3380, 22322, '1.0000', '2.7762', '2.7762', '6.0000', '6.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 (50182, '2022-01-09', 1602, 47785, 3380, 5897, '-85.0000', '6.7859', '6.7859', '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 (50183, '2022-01-09', 1602, 47785, 3380, NULL, '86.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50184, '2022-01-09', 2088, 47786, 3380, 21781, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '1.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 (50185, '2022-01-09', 2712, 47787, 3380, 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 (50186, '2022-01-09', 1708, 47788, 3380, 10382, '-6.0000', '20.1900', '20.1900', '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 (50187, '2022-01-09', 1708, 47788, 3380, NULL, '7.0000', '20.1900', '20.1900', '27.0000', '27.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 (50188, '2022-01-09', 9634, 47789, 3380, NULL, '3.0000', '4.8000', '4.8000', '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 (50189, '2022-01-09', 9743, 47790, 3380, NULL, '1.0000', '11.7000', '11.7000', '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 (50190, '2022-01-09', 2712, 47791, 3380, 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 (50191, '2022-01-09', 1908, 47792, 3380, 5444, '-24.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 (50192, '2022-01-09', 1908, 47792, 3380, NULL, '26.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (50193, '2022-01-09', 1337, 47793, 3380, 10809, '-5.0000', '2.0000', '2.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 (50194, '2022-01-09', 1337, 47793, 3380, NULL, '6.0000', '2.0000', '2.0000', '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 (50195, '2022-01-09', 1340, 47794, 3380, NULL, '1.0000', '2.7025', '2.7025', '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 (50196, '2022-01-09', 1493, 47795, 3380, 9747, '-12.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 (50197, '2022-01-09', 1493, 47795, 3380, NULL, '13.0000', '1.5425', '1.5425', '3.0000', '3.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 (50198, '2022-01-09', 2169, 47796, 3380, 10737, '-12.0000', '3.8397', '3.8397', '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 (50199, '2022-01-09', 2169, 47796, 3380, NULL, '13.0000', '3.8397', '3.8397', '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 (50200, '2022-01-09', 1506, 47797, 3380, 18908, '1.0000', '16.2500', '16.2500', '21.0000', '21.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 (50201, '2022-01-09', 9556, 47798, 3381, NULL, '1.0000', '1.6375', '1.6375', '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 (50202, '2022-01-09', 2284, 47799, 3381, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50203, '2022-01-09', 7803, 47800, 3381, NULL, '1.0000', '1.8200', '1.8200', '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 (50204, '2022-01-09', 9734, 47801, 3381, 45645, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50205, '2022-01-09', 7524, 47802, 3381, NULL, '1.0000', '103.0922', '103.0922', '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 (50206, '2022-01-09', 9393, 47803, 3381, NULL, '2.0000', '15.0000', '15.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 (50207, '2022-01-09', 7641, 47804, 3381, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50208, '2022-01-09', 8810, 47805, 3381, NULL, '1.0000', '2.1486', '2.1486', '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 (50209, '2022-01-09', 1557, 47806, 3381, NULL, '1.0000', '7.6000', '7.6000', '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 (50210, '2022-01-09', 7514, 47807, 3381, NULL, '1.0000', '37.6978', '37.6978', '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 (50211, '2022-01-09', 7899, 47808, 3381, 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 (50212, '2022-01-09', 7889, 47809, 3381, NULL, '1.0000', '-8.6571', '-8.6571', '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 (50213, '2022-01-09', 7674, 47810, 3381, NULL, '1.0000', '-115.5436', '-115.5436', '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 (50214, '2022-01-09', 7736, 47811, 3381, NULL, '1.0000', '11.6196', '11.6196', '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 (50215, '2022-01-09', 8006, 47812, 3381, 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 (50216, '2022-01-09', 8039, 47813, 3381, NULL, '1.0000', '114.4469', '114.4469', '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 (50217, '2022-01-09', 8677, 47814, 3381, NULL, '2.0000', '1.2300', '1.2300', '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 (50218, '2022-01-09', 7482, 47815, 3381, 45652, '1.0000', '2.5816', '2.5816', '5.5000', '5.5000', '11.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50219, '2022-01-09', 7411, 47816, 3381, NULL, '1.0000', '1.4255', '1.4255', '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 (50220, '2022-01-09', 9692, 47817, 3381, 43551, '1.0000', '10.4500', '10.4500', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50221, '2022-01-09', 7514, 47818, 3381, NULL, '1.0000', '37.6978', '37.6978', '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 (50222, '2022-01-09', 7743, 47819, 3381, NULL, '2.0000', '419203.7668', '419203.7668', '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 (50223, '2022-01-09', 1935, 47820, 3381, 45606, '1.0000', '28.7657', '28.7657', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50224, '2022-01-09', 9556, 47821, 3381, NULL, '2.0000', '1.6375', '1.6375', '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 (50225, '2022-01-09', 9478, 47822, 3381, 39403, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50226, '2022-01-09', 2972, 47823, 3381, 45713, '1.0000', '22.8256', '22.8256', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50227, '2022-01-09', 3001, 47824, 3381, NULL, '3.0000', '1.5000', '1.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 (50228, '2022-01-09', 7526, 47825, 3381, NULL, '1.0000', '27.7600', '27.7600', '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 (50229, '2022-01-09', 8158, 47826, 3381, 39616, '1.0000', '24.9000', '24.9000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50230, '2022-01-09', 2287, 47827, 3381, NULL, '4.0000', '2.3000', '2.3000', '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 (50231, '2022-01-09', 7641, 47828, 3381, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50232, '2022-01-09', 8188, 47829, 3381, NULL, '1.0000', '6.7000', '6.7000', '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 (50233, '2022-01-09', 8969, 47830, 3381, NULL, '4.0000', '2.0000', '2.0000', '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 (50234, '2022-01-09', 8941, 47831, 3381, NULL, '1.0000', '12.0000', '12.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 (50235, '2022-01-09', 7892, 47832, 3381, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50236, '2022-01-09', 7411, 47833, 3381, NULL, '1.0000', '1.4255', '1.4255', '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 (50237, '2022-01-09', 7412, 47834, 3381, NULL, '2.0000', '1.5200', '1.5200', '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 (50238, '2022-01-09', 2699, 47835, 3381, 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 (50239, '2022-01-09', 1519, 47836, 3382, NULL, '1.0000', '3.3980', '3.3980', '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 (50240, '2022-01-09', 7741, 47837, 3382, NULL, '1.0000', '1.2000', '1.2000', '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 (50241, '2022-01-09', 8933, 47838, 3382, 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 (50242, '2022-01-09', 7666, 47839, 3382, NULL, '1.0000', '-6.0000', '-6.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 (50243, '2022-01-09', 7886, 47840, 3382, NULL, '1.0000', '14.5000', '14.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 (50244, '2022-01-09', 8184, 47841, 3382, NULL, '10.0000', '2.4000', '2.4000', '3.5000', '3.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 (50245, '2022-01-09', 8328, 47842, 3382, NULL, '1.0000', '8.1000', '8.1000', '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 (50246, '2022-01-09', 1349, 47843, 3382, 44062, '1.0000', '35.0700', '35.0700', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50247, '2022-01-09', 9175, 47844, 3382, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50248, '2022-01-09', 9683, 47845, 3382, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50249, '2022-01-09', 2556, 47846, 3382, 25158, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '22.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 (50250, '2022-01-09', 7711, 47847, 3382, NULL, '1.0000', '0.3900', '0.3900', '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 (50251, '2022-01-09', 1871, 47848, 3382, NULL, '1.0000', '2.9308', '2.9308', '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 (50252, '2022-01-09', 8638, 47849, 3382, NULL, '3.0000', '0.5100', '0.5100', '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 (50253, '2022-01-09', 8984, 47850, 3382, NULL, '1.0000', '-100.8495', '-100.8495', '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 (50254, '2022-01-09', 2574, 47851, 3383, 45644, '4.0000', '1.1133', '1.1133', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50255, '2022-01-09', 1595, 47852, 3383, 45159, '1.0000', '20.2958', '20.2958', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50256, '2022-01-09', 7524, 47853, 3384, NULL, '1.0000', '103.0922', '103.0922', '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 (50257, '2022-01-09', 7864, 47854, 3384, 45822, '2.0000', '19.5100', '19.5100', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50258, '2022-01-09', 8547, 47855, 3384, 39596, '1.0000', '7.7333', '7.7333', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50259, '2022-01-09', 8360, 47856, 3384, NULL, '1.0000', '3.5200', '3.5200', '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 (50260, '2022-01-09', 9734, 47857, 3385, NULL, '2.0000', '0.3200', '0.3200', '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 (50261, '2022-01-09', 2135, 47858, 3385, 18930, '1.0000', '2.4732', '2.4732', '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 (50262, '2022-01-10', 1342, 47859, 3386, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50263, '2022-01-10', 2761, 47860, 3386, 39866, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50264, '2022-01-10', 1912, 47861, 3386, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50265, '2022-01-10', 2315, 47862, 3386, NULL, '1.0000', '0.8556', '0.8556', '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 (50266, '2022-01-10', 2989, 47863, 3386, 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 (50267, '2022-01-10', 2315, 47864, 3386, NULL, '2.0000', '0.8556', '0.8556', '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 (50268, '2022-01-10', 1851, 47865, 3386, 41405, '1.0000', '12.4818', '12.4818', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50269, '2022-01-10', 7334, 47866, 3386, NULL, '1.0000', '8.1600', '8.1600', '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 (50270, '2022-01-10', 8043, 47867, 3386, NULL, '10.0000', '27.9800', '27.9800', '0.6000', '0.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 (50271, '2022-01-10', 1501, 47868, 3386, NULL, '2.0000', '2.2100', '2.2100', '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 (50272, '2022-01-10', 9109, 47869, 3386, 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 (50273, '2022-01-10', 1533, 47870, 3386, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50274, '2022-01-10', 1912, 47871, 3386, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50275, '2022-01-10', 2660, 47872, 3386, 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 (50276, '2022-01-10', 2989, 47873, 3386, 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 (50277, '2022-01-10', 2315, 47874, 3386, NULL, '2.0000', '0.8556', '0.8556', '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 (50278, '2022-01-10', 1590, 47875, 3386, NULL, '3.0000', '1.9878', '1.9878', '2.3000', '2.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 (50279, '2022-01-10', 9399, 47876, 3386, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50280, '2022-01-10', 1386, 47877, 3386, 34018, '1.0000', '2.5285', '2.5285', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50281, '2022-01-10', 8429, 47878, 3386, NULL, '1.0000', '16.0000', '16.0000', '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 (50282, '2022-01-10', 1657, 47879, 3386, 19371, '10.0000', '90.0000', '90.0000', '0.6000', '0.6000', '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 (50283, '2022-01-10', 2825, 47880, 3386, NULL, '1.0000', '12.0000', '12.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 (50284, '2022-01-10', 8771, 47881, 3386, 45275, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50285, '2022-01-10', 1420, 47882, 3386, 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 (50286, '2022-01-10', 7586, 47883, 3387, NULL, '1.0000', '4.1700', '4.1700', '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 (50287, '2022-01-10', 2506, 47884, 3387, 16244, '-2.0000', '3.4900', '3.4900', '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 (50288, '2022-01-10', 2506, 47884, 3387, NULL, '3.0000', '3.4900', '3.4900', '5.5000', '5.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 (50289, '2022-01-10', 1947, 47885, 3387, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '53.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 (50290, '2022-01-10', 2167, 47886, 3387, 17165, '-33.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 (50291, '2022-01-10', 2167, 47886, 3387, NULL, '34.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (50292, '2022-01-10', 1592, 47887, 3387, 6223, '-8.0000', '35.9000', '35.9000', '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 (50293, '2022-01-10', 1592, 47887, 3387, NULL, '9.0000', '35.9000', '35.9000', '44.0000', '44.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 (50294, '2022-01-10', 2491, 47888, 3387, 6228, '-19.0000', '12.2000', '12.2000', '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 (50295, '2022-01-10', 2491, 47888, 3387, NULL, '20.0000', '12.2000', '12.2000', '17.0000', '17.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 (50296, '2022-01-10', 9748, 47889, 3387, NULL, '1.0000', '2.5300', '2.5300', '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 (50297, '2022-01-10', 9747, 47890, 3387, NULL, '5.0000', '0.6500', '0.6500', '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 (50298, '2022-01-10', 1519, 47891, 3388, 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 (50299, '2022-01-10', 2405, 47892, 3388, 4452, '-15.0000', '1.2000', '1.2000', '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 (50300, '2022-01-10', 2405, 47892, 3388, NULL, '16.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (50301, '2022-01-10', 1695, 47893, 3388, 12925, '-5.0000', '15.5000', '15.5000', '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 (50302, '2022-01-10', 1695, 47893, 3388, NULL, '6.0000', '15.5000', '15.5000', '22.0000', '22.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 (50303, '2022-01-10', 1978, 47894, 3388, 6345, '-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 (50304, '2022-01-10', 1978, 47894, 3388, NULL, '2.0000', '6.5000', '6.5000', '8.5000', '8.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 (50305, '2022-01-10', 1585, 47895, 3388, 7602, '-8.0000', '13.0000', '13.0000', '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 (50306, '2022-01-10', 1585, 47895, 3388, NULL, '9.0000', '13.0000', '13.0000', '12.5000', '12.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 (50307, '2022-01-10', 1772, 47896, 3388, 4893, '-10.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 (50308, '2022-01-10', 1772, 47896, 3388, NULL, '11.0000', '6.0500', '6.0500', '8.0000', '8.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 (50309, '2022-01-10', 1992, 47897, 3388, 6355, '-4.0000', '1.5000', '1.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 (50310, '2022-01-10', 1992, 47897, 3388, NULL, '5.0000', '1.5000', '1.5000', '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 (50311, '2022-01-10', 2457, 47898, 3388, 4801, '-1.0000', '23.0000', '23.0000', '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 (50312, '2022-01-10', 2457, 47898, 3388, NULL, '2.0000', '23.0000', '23.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 (50313, '2022-01-10', 1501, 47899, 3388, 22242, '4.0000', '2.0500', '2.0500', '3.0000', '3.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 (50314, '2022-01-10', 1501, 47899, 3388, 20590, '1.0000', '2.0500', '2.0500', '3.0000', '3.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 (50315, '2022-01-10', 1574, 47900, 3388, 7593, '-49.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 (50316, '2022-01-10', 1574, 47900, 3388, NULL, '51.0000', '1.9600', '1.9600', '2.5000', '2.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 (50317, '2022-01-10', 2567, 47901, 3388, 7177, '-4.0000', '33.0000', '33.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 (50318, '2022-01-10', 2567, 47901, 3388, NULL, '5.0000', '33.0000', '33.0000', '38.0000', '38.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 (50319, '2022-01-10', 9626, 47902, 3388, 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 (50320, '2022-01-10', 2080, 47903, 3388, 248, '1.0000', '17.9638', '17.9638', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50321, '2022-01-10', 1449, 47904, 3388, 5569, '-5.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 (50322, '2022-01-10', 1449, 47904, 3388, 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 (50323, '2022-01-10', 2858, 47905, 3388, 17772, '-33.0000', '1.0000', '1.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 (50324, '2022-01-10', 2858, 47905, 3388, NULL, '35.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50325, '2022-01-10', 2916, 47906, 3388, 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 (50326, '2022-01-10', 1519, 47907, 3388, 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 (50327, '2022-01-10', 1781, 47908, 3388, 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 (50328, '2022-01-10', 9499, 47909, 3388, 33075, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50329, '2022-01-10', 2485, 47910, 3388, NULL, '1.0000', '17.0000', '17.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 (50330, '2022-01-10', 9561, 47911, 3388, 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 (50331, '2022-01-10', 8119, 47912, 3389, 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 (50332, '2022-01-10', 7354, 47913, 3389, NULL, '1.0000', '18.0000', '18.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 (50333, '2022-01-10', 7714, 47914, 3389, NULL, '4.0000', '0.4200', '0.4200', '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 (50334, '2022-01-10', 8752, 47915, 3389, NULL, '1.0000', '4.2000', '4.2000', '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 (50335, '2022-01-10', 7679, 47916, 3389, NULL, '4.0000', '25.0000', '25.0000', '25.0000', '25.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 (50336, '2022-01-10', 9734, 47917, 3389, 45645, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '92.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50337, '2022-01-10', 2315, 47918, 3389, NULL, '2.0000', '0.4740', '0.4740', '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 (50338, '2022-01-10', 7852, 47919, 3389, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50339, '2022-01-10', 9635, 47920, 3389, 43125, '1.0000', '8.6800', '8.6800', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50340, '2022-01-10', 7980, 47921, 3389, NULL, '10.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (50341, '2022-01-10', 9167, 47922, 3389, 45785, '1.0000', '-1112.9272', '-1112.9272', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50342, '2022-01-10', 7411, 47923, 3389, NULL, '1.0000', '1.4255', '1.4255', '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 (50343, '2022-01-10', 7428, 47924, 3389, NULL, '10.0000', '744.9056', '744.9056', '4.0000', '4.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 (50344, '2022-01-10', 2332, 47925, 3389, 45735, '1.0000', '5.5568', '5.5568', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50345, '2022-01-10', 9716, 47926, 3389, 45605, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50346, '2022-01-10', 1946, 47927, 3389, 36666, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50347, '2022-01-10', 7899, 47928, 3389, 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 (50348, '2022-01-10', 7558, 47929, 3389, NULL, '10.0000', '2.2000', '2.2000', '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 (50349, '2022-01-10', 7859, 47930, 3389, 45844, '2.0000', '12.9400', '12.9400', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50350, '2022-01-10', 7457, 47931, 3389, 30064, '1.0000', '3.3581', '3.3581', '8.0000', '8.0000', '74.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50351, '2022-01-10', 1557, 47932, 3389, NULL, '1.0000', '7.6000', '7.6000', '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 (50352, '2022-01-10', 9731, 47933, 3389, 45678, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50353, '2022-01-10', 8202, 47934, 3389, NULL, '1.0000', '1.6600', '1.6600', '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 (50354, '2022-01-10', 3013, 47935, 3389, 44863, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50355, '2022-01-10', 8077, 47936, 3389, NULL, '1.0000', '11.5000', '11.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 (50356, '2022-01-10', 7872, 47937, 3389, NULL, '2.0000', '-1695.2798', '-1695.2798', '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 (50357, '2022-01-10', 7774, 47938, 3389, 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 (50358, '2022-01-10', 7612, 47939, 3389, NULL, '1.0000', '1.1770', '1.1770', '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 (50359, '2022-01-10', 7848, 47940, 3389, NULL, '1.0000', '-4.6522', '-4.6522', '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 (50360, '2022-01-10', 8844, 47941, 3389, 45686, '1.0000', '4.9500', '4.9500', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50361, '2022-01-10', 8198, 47942, 3389, NULL, '1.0000', '-104.1767', '-104.1767', '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 (50362, '2022-01-10', 8984, 47943, 3389, NULL, '1.0000', '0.6700', '0.6700', '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 (50363, '2022-01-10', 9734, 47944, 3389, 45645, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '93.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50364, '2022-01-10', 8960, 47945, 3389, NULL, '1.0000', '3.5400', '3.5400', '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 (50365, '2022-01-10', 7411, 47946, 3389, NULL, '1.0000', '1.4255', '1.4255', '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 (50366, '2022-01-10', 8667, 47947, 3389, NULL, '1.0000', '30.9800', '30.9800', '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 (50367, '2022-01-10', 7817, 47948, 3389, NULL, '2.0000', '9.8000', '9.8000', '18.5000', '18.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 (50368, '2022-01-10', 7967, 47949, 3389, NULL, '1.0000', '5.2452', '5.2452', '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 (50369, '2022-01-10', 7702, 47950, 3389, NULL, '1.0000', '-3.9650', '-3.9650', '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 (50370, '2022-01-10', 9640, 47951, 3389, 45715, '1.0000', '40.5000', '40.5000', '53.5000', '53.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50371, '2022-01-10', 7555, 47952, 3389, NULL, '2.0000', '0.5000', '0.5000', '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 (50372, '2022-01-10', 9734, 47953, 3389, 45645, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '92.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50373, '2022-01-10', 7832, 47954, 3389, 43532, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50374, '2022-01-10', 8028, 47955, 3389, 45865, '2.0000', '15.0000', '15.0000', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50375, '2022-01-10', 2414, 47956, 3389, NULL, '2.0000', '3.4000', '3.4000', '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 (50376, '2022-01-10', 7428, 47957, 3389, NULL, '1.0000', '744.9056', '744.9056', '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 (50377, '2022-01-10', 7708, 47958, 3389, NULL, '1.0000', '5.9956', '5.9956', '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 (50378, '2022-01-10', 7709, 47959, 3389, NULL, '2.0000', '35.8000', '35.8000', '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 (50379, '2022-01-10', 8169, 47960, 3389, NULL, '1.0000', '7.9800', '7.9800', '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 (50380, '2022-01-10', 7641, 47961, 3389, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50381, '2022-01-10', 8761, 47962, 3389, 43941, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50382, '2022-01-10', 9740, 47963, 3389, NULL, '1.0000', '0.6600', '0.6600', '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 (50383, '2022-01-10', 8581, 47964, 3389, 42776, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50384, '2022-01-10', 8119, 47965, 3389, 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 (50385, '2022-01-10', 2990, 47966, 3390, 39769, '1.0000', '1.1200', '1.1200', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50386, '2022-01-10', 1533, 47967, 3390, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50387, '2022-01-10', 9734, 47968, 3390, NULL, '6.0000', '0.3200', '0.3200', '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 (50388, '2022-01-10', 7411, 47969, 3390, NULL, '1.0000', '1.3466', '1.3466', '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 (50389, '2022-01-10', 9683, 47970, 3390, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50390, '2022-01-10', 1812, 47971, 3390, 23688, '1.0000', '7.9457', '7.9457', '10.5000', '10.5000', '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 (50391, '2022-01-10', 2167, 47972, 3390, 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 (50392, '2022-01-10', 8984, 47973, 3390, NULL, '1.0000', '-100.8495', '-100.8495', '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 (50393, '2022-01-10', 9159, 47974, 3390, NULL, '1.0000', '30.0000', '30.0000', '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 (50394, '2022-01-10', 7411, 47975, 3390, NULL, '1.0000', '1.3466', '1.3466', '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 (50395, '2022-01-10', 9556, 47976, 3390, 39822, '3.0000', '0.4814', '0.4814', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50396, '2022-01-10', 1598, 47977, 3390, 45633, '1.0000', '3.9533', '3.9533', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50397, '2022-01-10', 8039, 47978, 3390, 45163, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50398, '2022-01-10', 1837, 47979, 3390, 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 (50399, '2022-01-10', 1787, 47980, 3390, 39911, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50400, '2022-01-10', 1764, 47981, 3390, 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 (50401, '2022-01-10', 2451, 47982, 3390, NULL, '1.0000', '8.8000', '8.8000', '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 (50402, '2022-01-10', 1499, 47983, 3390, NULL, '1.0000', '0.6447', '0.6447', '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 (50403, '2022-01-10', 2169, 47984, 3390, NULL, '1.0000', '1.1500', '1.1500', '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 (50404, '2022-01-10', 2759, 47985, 3390, 43227, '2.0000', '3.9167', '3.9167', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50405, '2022-01-10', 8677, 47986, 3390, NULL, '2.0000', '89.9250', '89.9250', '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 (50406, '2022-01-10', 2105, 47987, 3390, 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 (50407, '2022-01-10', 9747, 47988, 3391, NULL, '1.0000', '0.6500', '0.6500', '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 (50408, '2022-01-10', 1571, 47989, 3391, 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 (50409, '2022-01-10', 1967, 47990, 3391, NULL, '1.0000', '20.0200', '20.0200', '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 (50410, '2022-01-10', 1648, 47991, 3391, 34637, '1.0000', '5.6700', '5.6700', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50411, '2022-01-10', 1519, 47992, 3391, NULL, '1.0000', '3.3980', '3.3980', '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 (50412, '2022-01-10', 2891, 47993, 3391, 34014, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50413, '2022-01-10', 7641, 47994, 3391, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50414, '2022-01-10', 2167, 47995, 3391, 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 (50415, '2022-01-10', 1499, 47996, 3391, NULL, '1.0000', '0.6447', '0.6447', '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 (50416, '2022-01-10', 7981, 47997, 3391, NULL, '1.0000', '6.0000', '6.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 (50417, '2022-01-10', 1519, 47998, 3391, NULL, '1.0000', '3.3980', '3.3980', '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 (50418, '2022-01-10', 7848, 47999, 3391, 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 (50419, '2022-01-10', 1519, 48000, 3392, NULL, '1.0000', '3.3980', '3.3980', '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 (50420, '2022-01-10', 2221, 48001, 3392, 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 (50421, '2022-01-10', 9750, 48002, 3392, NULL, '1.0000', '3.3000', '3.3000', '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 (50422, '2022-01-10', 7743, 48003, 3392, NULL, '1.0000', '7.3900', '7.3900', '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 (50423, '2022-01-10', 2344, 48004, 3392, NULL, '1.0000', '19.8200', '19.8200', '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 (50424, '2022-01-10', 1837, 48005, 3392, 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 (50425, '2022-01-10', 1935, 48006, 3392, NULL, '1.0000', '-0.1979', '-0.1979', '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 (50426, '2022-01-10', 7954, 48007, 3392, 34017, '1.0000', '11.1369', '11.1369', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50427, '2022-01-10', 2660, 48008, 3392, 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 (50428, '2022-01-10', 2681, 48009, 3392, 38522, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50429, '2022-01-10', 7411, 48010, 3392, NULL, '1.0000', '1.3466', '1.3466', '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 (50430, '2022-01-10', 7743, 48011, 3392, NULL, '2.0000', '7.3900', '7.3900', '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 (50431, '2022-01-10', 1871, 48012, 3392, NULL, '2.0000', '2.9308', '2.9308', '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 (50432, '2022-01-10', 2167, 48013, 3392, 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 (50433, '2022-01-10', 2169, 48014, 3392, NULL, '1.0000', '1.1500', '1.1500', '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 (50434, '2022-01-10', 9740, 48015, 3392, NULL, '1.0000', '0.6600', '0.6600', '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 (50435, '2022-01-10', 2237, 48016, 3392, NULL, '1.0000', '-329.8285', '-329.8285', '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 (50436, '2022-01-10', 1837, 48017, 3392, 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 (50437, '2022-01-10', 1840, 48018, 3392, 42569, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '24.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50438, '2022-01-10', 2289, 48019, 3392, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '18.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50439, '2022-01-10', 7328, 48020, 3392, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50440, '2022-01-10', 1432, 48021, 3393, 44067, '1.0000', '9.9302', '9.9302', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50441, '2022-01-10', 2169, 48022, 3393, NULL, '1.0000', '1.1500', '1.1500', '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 (50442, '2022-01-10', 7390, 48023, 3394, NULL, '1.0000', '18.2100', '18.2100', '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 (50443, '2022-01-10', 8228, 48024, 3394, NULL, '1.0000', '14.9219', '14.9219', '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 (50444, '2022-01-10', 2315, 48025, 3394, NULL, '2.0000', '0.4740', '0.4740', '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 (50445, '2022-01-10', 8039, 48026, 3394, NULL, '2.0000', '114.4469', '114.4469', '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 (50446, '2022-01-10', 2506, 48027, 3394, NULL, '1.0000', '2.9591', '2.9591', '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 (50447, '2022-01-10', 9572, 48028, 3394, 44467, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '6.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50448, '2022-01-10', 3001, 48029, 3394, NULL, '2.0000', '1.5000', '1.5000', '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 (50449, '2022-01-10', 8719, 48030, 3394, NULL, '1.0000', '21.7000', '21.7000', '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 (50450, '2022-01-10', 8000, 48031, 3394, NULL, '1.0000', '232.7104', '232.7104', '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 (50451, '2022-01-10', 8497, 48032, 3394, NULL, '2.0000', '519.4089', '519.4089', '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 (50452, '2022-01-10', 1810, 48033, 3394, NULL, '1.0000', '5.4135', '5.4135', '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 (50453, '2022-01-10', 7689, 48034, 3394, 45805, '1.0000', '56.6200', '56.6200', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50454, '2022-01-10', 2761, 48035, 3394, 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 (50455, '2022-01-10', 7428, 48036, 3394, NULL, '3.0000', '744.9056', '744.9056', '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 (50456, '2022-01-10', 9727, 48037, 3394, 45654, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50457, '2022-01-10', 9734, 48038, 3394, 45645, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50458, '2022-01-10', 8000, 48039, 3394, NULL, '1.0000', '232.7104', '232.7104', '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 (50459, '2022-01-10', 7509, 48040, 3394, NULL, '1.0000', '6.6667', '6.6667', '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 (50460, '2022-01-10', 7704, 48041, 3394, NULL, '1.0000', '-1.5625', '-1.5625', '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 (50461, '2022-01-10', 7713, 48042, 3394, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '6.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50462, '2022-01-10', 2948, 48043, 3394, 44940, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50463, '2022-01-10', 9337, 48044, 3394, 44951, '1.0000', '-1.0224', '-1.0224', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50464, '2022-01-10', 7933, 48045, 3394, NULL, '1.0000', '0.3245', '0.3245', '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 (50465, '2022-01-10', 7675, 48046, 3394, NULL, '1.0000', '17.2368', '17.2368', '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 (50466, '2022-01-10', 8208, 48047, 3394, NULL, '1.0000', '33.0000', '33.0000', '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 (50467, '2022-01-10', 7741, 48048, 3394, 45696, '1.0000', '4.5767', '4.5767', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50468, '2022-01-10', 7909, 48049, 3394, NULL, '1.0000', '4.0000', '4.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 (50469, '2022-01-10', 8984, 48050, 3394, NULL, '2.0000', '0.6700', '0.6700', '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 (50470, '2022-01-10', 8608, 48051, 3394, NULL, '1.0000', '5.7400', '5.7400', '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 (50471, '2022-01-10', 7457, 48052, 3394, 30064, '3.0000', '3.3581', '3.3581', '8.0000', '8.0000', '71.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50472, '2022-01-10', 8000, 48053, 3394, NULL, '3.0000', '232.7104', '232.7104', '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 (50473, '2022-01-10', 9556, 48054, 3394, NULL, '1.0000', '1.6375', '1.6375', '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 (50474, '2022-01-10', 7675, 48055, 3394, NULL, '1.0000', '17.2368', '17.2368', '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 (50475, '2022-01-10', 7473, 48056, 3394, NULL, '2.0000', '51.6412', '51.6412', '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 (50476, '2022-01-10', 7709, 48057, 3394, NULL, '2.0000', '35.8000', '35.8000', '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 (50477, '2022-01-10', 8429, 48058, 3394, 45708, '1.0000', '-4.7200', '-4.7200', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50478, '2022-01-10', 2761, 48059, 3394, 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 (50479, '2022-01-10', 8534, 48060, 3394, 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 (50480, '2022-01-10', 7411, 48061, 3394, NULL, '2.0000', '1.4255', '1.4255', '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 (50481, '2022-01-10', 8756, 48062, 3394, 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 (50482, '2022-01-10', 1855, 48063, 3394, 44359, '1.0000', '1.4625', '1.4625', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50483, '2022-01-10', 2315, 48064, 3394, NULL, '2.0000', '0.4740', '0.4740', '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 (50484, '2022-01-10', 7482, 48065, 3395, 45652, '1.0000', '2.5816', '2.5816', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50485, '2022-01-10', 7711, 48066, 3395, NULL, '1.0000', '-104.2475', '-104.2475', '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 (50486, '2022-01-10', 2350, 48067, 3395, NULL, '1.0000', '10.3800', '10.3800', '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 (50487, '2022-01-10', 2070, 48068, 3395, 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 (50488, '2022-01-10', 1763, 48069, 3395, 37436, '1.0000', '4.8157', '4.8157', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50489, '2022-01-10', 9729, 48070, 3395, 45676, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50490, '2022-01-10', 8813, 48071, 3396, NULL, '1.0000', '17.6000', '17.6000', '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 (50491, '2022-01-10', 1650, 48072, 3396, 45717, '1.0000', '14.7793', '14.7793', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50492, '2022-01-10', 2277, 48073, 3396, 44889, '1.0000', '0.7800', '0.7800', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50493, '2022-01-10', 7674, 48074, 3396, NULL, '1.0000', '-115.5436', '-115.5436', '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 (50494, '2022-01-10', 2284, 48075, 3396, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50495, '2022-01-10', 7641, 48076, 3396, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50496, '2022-01-10', 9734, 48077, 3396, 45645, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50497, '2022-01-10', 1935, 48078, 3396, 45606, '2.0000', '28.7657', '28.7657', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50498, '2022-01-10', 7558, 48079, 3396, NULL, '5.0000', '2.2000', '2.2000', '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 (50499, '2022-01-10', 1493, 48080, 3397, 44608, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50500, '2022-01-10', 1610, 48081, 3397, 44578, '1.0000', '54.6135', '54.6135', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50501, '2022-01-10', 2167, 48082, 3397, 45090, '1.0000', '2.2662', '2.2662', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50502, '2022-01-10', 2169, 48083, 3397, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50503, '2022-01-10', 2462, 48084, 3397, 23588, '1.0000', '72.3166', '72.3166', '63.0000', '63.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 (50504, '2022-01-10', 2316, 48085, 3397, 32617, '1.0000', '44.3250', '44.3250', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50505, '2022-01-10', 1493, 48086, 3397, 44608, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50506, '2022-01-10', 1864, 48087, 3397, 45087, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50507, '2022-01-10', 1935, 48088, 3397, 45614, '1.0000', '2.4871', '2.4871', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50508, '2022-01-10', 1329, 48089, 3397, 40295, '1.0000', '6.1200', '6.1200', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50509, '2022-01-10', 1954, 48090, 3397, NULL, '1.0000', '79.0000', '79.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 (50510, '2022-01-10', 7411, 48091, 3397, NULL, '1.0000', '1.3500', '1.3500', '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 (50511, '2022-01-10', 2411, 48092, 3397, 45089, '1.0000', '1.3762', '1.3762', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50512, '2022-01-10', 2279, 48093, 3398, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (50513, '2022-01-10', 7819, 48094, 3398, NULL, '1.0000', '10.0999', '10.0999', '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 (50514, '2022-01-10', 2169, 48095, 3398, NULL, '1.0000', '1.1500', '1.1500', '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 (50515, '2022-01-10', 1532, 48096, 3398, NULL, '2.0000', '7.4815', '7.4815', '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 (50516, '2022-01-10', 7981, 48097, 3398, NULL, '1.0000', '6.0000', '6.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 (50517, '2022-01-10', 8767, 48098, 3398, 45267, '1.0000', '6.9975', '6.9975', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50518, '2022-01-10', 1837, 48099, 3398, 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 (50519, '2022-01-10', 2169, 48100, 3398, NULL, '1.0000', '1.1500', '1.1500', '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 (50520, '2022-01-10', 2543, 48101, 3398, 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 (50521, '2022-01-10', 2231, 48102, 3399, 45629, '1.0000', '32.9466', '32.9466', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50522, '2022-01-10', 2285, 48103, 3399, 45076, '1.0000', '37.3343', '37.3343', '49.0000', '49.0000', '9.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50523, '2022-01-10', 1502, 48104, 3399, 45140, '1.0000', '-401.4000', '-401.4000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50524, '2022-01-10', 1935, 48105, 3399, 45614, '2.0000', '2.4871', '2.4871', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50525, '2022-01-10', 1863, 48106, 3399, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '114.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50526, '2022-01-10', 8142, 48107, 3399, NULL, '1.0000', '84.7900', '84.7900', '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 (50527, '2022-01-10', 2327, 48108, 3399, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50528, '2022-01-10', 2642, 48109, 3399, 35923, '1.0000', '7.4583', '7.4583', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50529, '2022-01-10', 2936, 48110, 3399, 21562, '1.0000', '6.0400', '6.0400', '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 (50530, '2022-01-10', 2221, 48111, 3399, 45118, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '16.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50531, '2022-01-10', 9498, 48112, 3399, 40368, '1.0000', '12.5000', '12.5000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50532, '2022-01-10', 2991, 48113, 3399, 34701, '3.0000', '-0.0569', '-0.0569', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50533, '2022-01-10', 1825, 48114, 3399, 44620, '1.0000', '5.0960', '5.0960', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50534, '2022-01-10', 2915, 48115, 3399, 43043, '1.0000', '16.2417', '16.2417', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50535, '2022-01-10', 1504, 48116, 3399, NULL, '10.0000', '-2.1529', '-2.1529', '2.2000', '2.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 (50536, '2022-01-10', 1432, 48117, 3399, 40625, '1.0000', '9.0942', '9.0942', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50537, '2022-01-10', 8984, 48118, 3399, NULL, '1.0000', '304.7000', '304.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 (50538, '2022-01-10', 9750, 48119, 3399, NULL, '1.0000', '3.3000', '3.3000', '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 (50539, '2022-01-10', 8485, 48120, 3399, NULL, '1.0000', '7.0400', '7.0400', '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 (50540, '2022-01-10', 1574, 48121, 3399, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50541, '2022-01-10', 1602, 48122, 3399, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50542, '2022-01-10', 7744, 48123, 3399, 44790, '1.0000', '2.9400', '2.9400', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50543, '2022-01-10', 1813, 48124, 3399, 45074, '1.0000', '26.6200', '26.6200', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50544, '2022-01-10', 2004, 48125, 3399, NULL, '4.0000', '1.5000', '1.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 (50545, '2022-01-10', 2484, 48126, 3399, 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 (50546, '2022-01-10', 2697, 48127, 3399, 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 (50547, '2022-01-10', 2479, 48128, 3399, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (50548, '2022-01-10', 1541, 48129, 3399, 37570, '1.0000', '314.8018', '314.8018', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50549, '2022-01-11', 7900, 48130, 3400, NULL, '2.0000', '2.5000', '2.5000', '3.2000', '3.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 (50550, '2022-01-11', 7886, 48131, 3400, NULL, '1.0000', '-8.1003', '-8.1003', '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 (50551, '2022-01-11', 7675, 48132, 3400, NULL, '1.0000', '17.2368', '17.2368', '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 (50552, '2022-01-11', 2315, 48133, 3400, NULL, '1.0000', '0.4740', '0.4740', '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 (50553, '2022-01-11', 8046, 48134, 3400, NULL, '10.0000', '456.2805', '456.2805', '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 (50554, '2022-01-11', 7557, 48135, 3400, NULL, '10.0000', '0.5000', '0.5000', '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 (50555, '2022-01-11', 2104, 48136, 3400, NULL, '6.0000', '0.2000', '0.2000', '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 (50556, '2022-01-11', 8172, 48137, 3400, NULL, '2.0000', '40.7000', '40.7000', '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 (50557, '2022-01-11', 7337, 48138, 3400, 29986, '1.0000', '0.6500', '0.6500', '14.0000', '14.0000', '31.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50558, '2022-01-11', 1989, 48139, 3400, NULL, '1.0000', '4.2500', '4.2500', '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 (50559, '2022-01-11', 7585, 48140, 3400, NULL, '1.0000', '6.2000', '6.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 (50560, '2022-01-11', 7815, 48141, 3400, NULL, '2.0000', '13.0000', '13.0000', '23.0000', '23.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 (50561, '2022-01-11', 7825, 48142, 3400, NULL, '2.0000', '6.5000', '6.5000', '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 (50562, '2022-01-11', 7778, 48143, 3400, NULL, '1.0000', '17.8220', '17.8220', '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 (50563, '2022-01-11', 1837, 48144, 3400, 45863, '1.0000', '0.3520', '0.3520', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50564, '2022-01-11', 8676, 48145, 3400, NULL, '1.0000', '34.0000', '34.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 (50565, '2022-01-11', 8069, 48146, 3400, 45304, '1.0000', '29.1308', '29.1308', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50566, '2022-01-11', 9603, 48147, 3400, 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 (50567, '2022-01-11', 7834, 48148, 3400, 43528, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50568, '2022-01-11', 7781, 48149, 3400, NULL, '3.0000', '4.2500', '4.2500', '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 (50569, '2022-01-11', 8721, 48150, 3400, NULL, '2.0000', '62.0000', '62.0000', '30.5000', '30.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 (50570, '2022-01-11', 7609, 48151, 3400, NULL, '1.0000', '4.3300', '4.3300', '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 (50571, '2022-01-11', 2761, 48152, 3400, 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 (50572, '2022-01-11', 9746, 48153, 3400, NULL, '1.0000', '13.5000', '13.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 (50573, '2022-01-11', 9745, 48154, 3400, NULL, '3.0000', '7.2000', '7.2000', '9.5000', '9.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 (50574, '2022-01-11', 9272, 48155, 3400, NULL, '1.0000', '3.1000', '3.1000', '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 (50575, '2022-01-11', 7385, 48156, 3400, 45811, '1.0000', '-29.7430', '-29.7430', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50576, '2022-01-11', 9092, 48157, 3400, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '133.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50577, '2022-01-11', 7744, 48158, 3400, NULL, '1.0000', '2.7400', '2.7400', '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 (50578, '2022-01-11', 8395, 48159, 3400, NULL, '2.0000', '0.9700', '0.9700', '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 (50579, '2022-01-11', 7799, 48160, 3400, NULL, '1.0000', '-0.2001', '-0.2001', '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 (50580, '2022-01-11', 2906, 48161, 3400, NULL, '1.0000', '2.6000', '2.6000', '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 (50581, '2022-01-11', 1841, 48162, 3400, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50582, '2022-01-11', 7544, 48163, 3400, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (50583, '2022-01-11', 8408, 48164, 3400, 44885, '1.0000', '-39.1050', '-39.1050', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50584, '2022-01-11', 8186, 48165, 3400, NULL, '3.0000', '1.0800', '1.0800', '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 (50585, '2022-01-11', 2519, 48166, 3401, NULL, '3.0000', '11.0000', '11.0000', '18.0000', '18.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 (50586, '2022-01-11', 2623, 48167, 3401, 10064, '-1.0000', '4.3000', '4.3000', '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 (50587, '2022-01-11', 2623, 48167, 3401, NULL, '2.0000', '4.3000', '4.3000', '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 (50588, '2022-01-11', 2455, 48168, 3401, 5643, '-4.0000', '7.5300', '7.5300', '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 (50589, '2022-01-11', 2455, 48168, 3401, NULL, '5.0000', '7.5300', '7.5300', '10.0000', '10.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 (50590, '2022-01-11', 1688, 48169, 3401, 4896, '-9.0000', '18.5000', '18.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 (50591, '2022-01-11', 1688, 48169, 3401, NULL, '10.0000', '18.5000', '18.5000', '25.0000', '25.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 (50592, '2022-01-11', 2379, 48170, 3401, 4032, '-32.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 (50593, '2022-01-11', 2379, 48170, 3401, NULL, '34.0000', '1.5900', '1.5900', '2.5000', '2.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 (50594, '2022-01-11', 2713, 48171, 3401, 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 (50595, '2022-01-11', 2293, 48172, 3401, 22262, '3.0000', '1.4400', '1.4400', '1.0000', '1.0000', '77.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 (50596, '2022-01-11', 1759, 48173, 3401, 6746, '-5.0000', '11.5000', '11.5000', '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 (50597, '2022-01-11', 1759, 48173, 3401, NULL, '6.0000', '11.5000', '11.5000', '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 (50598, '2022-01-11', 2389, 48174, 3401, 4041, '-22.0000', '3.1400', '3.1400', '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 (50599, '2022-01-11', 2389, 48174, 3401, NULL, '23.0000', '3.1400', '3.1400', '4.5000', '4.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 (50600, '2022-01-11', 2973, 48175, 3401, 22174, '-11.0000', '4.3000', '4.3000', '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 (50601, '2022-01-11', 2973, 48175, 3401, NULL, '12.0000', '4.3000', '4.3000', '3.0000', '3.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 (50602, '2022-01-11', 2100, 48176, 3401, 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 (50603, '2022-01-11', 1825, 48177, 3401, 11265, '-7.0000', '4.8000', '4.8000', '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 (50604, '2022-01-11', 1825, 48177, 3401, NULL, '8.0000', '4.8000', '4.8000', '7.0000', '7.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 (50605, '2022-01-11', 2556, 48178, 3401, 7196, '-27.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 (50606, '2022-01-11', 2556, 48178, 3401, NULL, '28.0000', '0.5800', '0.5800', '1.0000', '1.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 (50607, '2022-01-11', 1306, 48179, 3401, 6879, '1.0000', '22.5969', '22.5969', '3.0000', '3.0000', '4.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 (50608, '2022-01-11', 2095, 48180, 3401, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '52.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 (50609, '2022-01-11', 2237, 48181, 3401, 2781, '-31.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 (50610, '2022-01-11', 2237, 48181, 3401, NULL, '33.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (50611, '2022-01-11', 2135, 48182, 3401, 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 (50612, '2022-01-11', 2612, 48183, 3401, 9748, '-2.0000', '7.1600', '7.1600', '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 (50613, '2022-01-11', 2612, 48183, 3401, NULL, '3.0000', '7.1600', '7.1600', '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 (50614, '2022-01-11', 2106, 48184, 3401, 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 (50615, '2022-01-11', 2616, 48185, 3401, 9742, '-12.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 (50616, '2022-01-11', 2616, 48185, 3401, NULL, '13.0000', '3.0000', '3.0000', '4.0000', '4.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 (50617, '2022-01-11', 1427, 48186, 3401, NULL, '1.0000', '14.2181', '14.2181', '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 (50618, '2022-01-11', 1687, 48187, 3401, 5785, '-20.0000', '165.9024', '165.9024', '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 (50619, '2022-01-11', 1687, 48187, 3401, NULL, '22.0000', '165.9024', '165.9024', '16.0000', '16.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50620, '2022-01-11', 2270, 48188, 3401, NULL, '1.0000', '0.9880', '0.9880', '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 (50621, '2022-01-11', 9577, 48189, 3402, 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 (50622, '2022-01-11', 9744, 48190, 3403, NULL, '1.0000', '8.6000', '8.6000', '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 (50623, '2022-01-11', 7564, 48191, 3403, NULL, '3.0000', '0.6400', '0.6400', '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 (50624, '2022-01-11', 8984, 48192, 3403, NULL, '1.0000', '-100.8495', '-100.8495', '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 (50625, '2022-01-11', 2379, 48193, 3403, NULL, '1.0000', '1.7560', '1.7560', '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 (50626, '2022-01-11', 2293, 48194, 3403, NULL, '3.0000', '2.7733', '2.7733', '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 (50627, '2022-01-11', 1390, 48195, 3403, 19831, '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 (50628, '2022-01-11', 8969, 48196, 3403, 39814, '8.0000', '2.0000', '2.0000', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50629, '2022-01-11', 2167, 48197, 3403, 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 (50630, '2022-01-11', 1512, 48198, 3403, 43269, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50631, '2022-01-11', 9631, 48199, 3403, 41419, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50632, '2022-01-11', 1409, 48200, 3403, NULL, '1.0000', '12.7500', '12.7500', '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 (50633, '2022-01-11', 2293, 48201, 3403, NULL, '3.0000', '2.7733', '2.7733', '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 (50634, '2022-01-11', 1621, 48202, 3403, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '41.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50635, '2022-01-11', 9634, 48203, 3403, NULL, '3.0000', '4.8000', '4.8000', '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 (50636, '2022-01-11', 1863, 48204, 3403, 43283, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50637, '2022-01-11', 9715, 48205, 3403, 45632, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50638, '2022-01-11', 2916, 48206, 3403, NULL, '1.0000', '14.8227', '14.8227', '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 (50639, '2022-01-11', 2283, 48207, 3403, 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 (50640, '2022-01-11', 2650, 48208, 3403, NULL, '1.0000', '8.0748', '8.0748', '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 (50641, '2022-01-11', 1851, 48209, 3403, 29648, '1.0000', '12.4818', '12.4818', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50642, '2022-01-11', 2681, 48210, 3403, 38522, '2.0000', '12.5000', '12.5000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50643, '2022-01-11', 1863, 48211, 3403, 43283, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50644, '2022-01-11', 7596, 48212, 3403, NULL, '1.0000', '6.5000', '6.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 (50645, '2022-01-11', 2241, 48213, 3403, 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 (50646, '2022-01-11', 1787, 48214, 3403, 39911, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50647, '2022-01-11', 1787, 48214, 3403, 43226, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50648, '2022-01-11', 1338, 48215, 3403, 18934, '1.0000', '3.7257', '3.7257', '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 (50649, '2022-01-11', 1602, 48216, 3403, NULL, '2.0000', '6.8552', '6.8552', '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 (50650, '2022-01-11', 2982, 48217, 3403, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '14.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 (50651, '2022-01-11', 3041, 48218, 3403, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '6.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 (50652, '2022-01-11', 8454, 48219, 3403, NULL, '1.0000', '3.7420', '3.7420', '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 (50653, '2022-01-11', 1855, 48220, 3403, 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 (50654, '2022-01-11', 8984, 48221, 3403, NULL, '1.0000', '-100.8495', '-100.8495', '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 (50655, '2022-01-11', 2416, 48222, 3403, 44001, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50656, '2022-01-11', 2169, 48223, 3403, NULL, '1.0000', '1.1500', '1.1500', '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 (50657, '2022-01-11', 2548, 48224, 3404, 45434, '1.0000', '7.0500', '7.0500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50658, '2022-01-11', 1399, 48225, 3405, NULL, '1.0000', '13.3890', '13.3890', '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 (50659, '2022-01-11', 2289, 48226, 3405, 2949, '-53.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 (50660, '2022-01-11', 2289, 48226, 3405, 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 (50661, '2022-01-11', 2401, 48227, 3405, NULL, '1.0000', '2.8000', '2.8000', '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 (50662, '2022-01-11', 7824, 48228, 3406, 39802, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50663, '2022-01-11', 1425, 48229, 3407, 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 (50664, '2022-01-11', 7742, 48230, 3408, 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 (50665, '2022-01-11', 1580, 48231, 3409, 7598, '-25.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 (50666, '2022-01-11', 1580, 48231, 3409, NULL, '28.0000', '0.9900', '0.9900', '1.5000', '1.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 (50667, '2022-01-11', 1499, 48232, 3410, NULL, '3.0000', '0.6447', '0.6447', '0.6000', '0.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 (50668, '2022-01-11', 2018, 48233, 3410, 44162, '1.0000', '18.0000', '18.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50669, '2022-01-11', 1519, 48234, 3410, NULL, '1.0000', '3.3980', '3.3980', '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 (50670, '2022-01-11', 2237, 48235, 3410, NULL, '1.0000', '-329.8285', '-329.8285', '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 (50671, '2022-01-11', 2353, 48236, 3410, 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 (50672, '2022-01-11', 8322, 48237, 3410, NULL, '1.0000', '7.0000', '7.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 (50673, '2022-01-11', 7970, 48238, 3410, NULL, '3.0000', '5.5000', '5.5000', '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 (50674, '2022-01-11', 7639, 48239, 3410, 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 (50675, '2022-01-11', 7886, 48240, 3410, NULL, '1.0000', '14.5000', '14.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 (50676, '2022-01-11', 1602, 48241, 3410, 46336, '1.0000', '10.3512', '10.3512', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50677, '2022-01-11', 1602, 48241, 3410, NULL, '1.0000', '10.3512', '10.3512', '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 (50678, '2022-01-11', 2943, 48242, 3410, 46284, '2.0000', '2.4645', '2.4645', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50679, '2022-01-11', 7907, 48243, 3410, NULL, '1.0000', '12.0000', '12.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 (50680, '2022-01-11', 2280, 48244, 3410, NULL, '1.0000', '-177.9360', '-177.9360', '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 (50681, '2022-01-11', 7459, 48245, 3410, NULL, '10.0000', '-6.1729', '-6.1729', '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 (50682, '2022-01-11', 7865, 48246, 3410, NULL, '1.0000', '1.6300', '1.6300', '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 (50683, '2022-01-11', 2169, 48247, 3410, NULL, '1.0000', '1.0284', '1.0284', '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 (50684, '2022-01-11', 7762, 48248, 3410, NULL, '1.0000', '5.1000', '5.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 (50685, '2022-01-11', 2503, 48249, 3410, 44455, '1.0000', '16.3200', '16.3200', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50686, '2022-01-11', 7533, 48250, 3410, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50687, '2022-01-11', 7459, 48251, 3410, NULL, '3.0000', '-6.1729', '-6.1729', '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 (50688, '2022-01-11', 7564, 48252, 3410, NULL, '1.0000', '0.6400', '0.6400', '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 (50689, '2022-01-11', 2283, 48253, 3410, 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 (50690, '2022-01-11', 3067, 48254, 3410, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '25.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 (50691, '2022-01-11', 2277, 48255, 3410, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50692, '2022-01-11', 2237, 48256, 3410, NULL, '1.0000', '-329.8285', '-329.8285', '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 (50693, '2022-01-11', 8454, 48257, 3410, NULL, '1.0000', '3.7420', '3.7420', '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 (50694, '2022-01-11', 1612, 48258, 3410, 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 (50695, '2022-01-11', 2254, 48259, 3410, NULL, '1.0000', '17.9400', '17.9400', '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 (50696, '2022-01-11', 7743, 48260, 3410, NULL, '1.0000', '7.3900', '7.3900', '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 (50697, '2022-01-11', 2068, 48261, 3410, NULL, '1.0000', '11.9176', '11.9176', '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 (50698, '2022-01-11', 2285, 48262, 3410, NULL, '1.0000', '36.1500', '36.1500', '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 (50699, '2022-01-11', 9734, 48263, 3410, 46294, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50700, '2022-01-11', 2167, 48264, 3410, 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 (50701, '2022-01-11', 7514, 48265, 3410, NULL, '1.0000', '2.2500', '2.2500', '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 (50702, '2022-01-11', 8000, 48266, 3410, NULL, '1.0000', '25.8200', '25.8200', '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 (50703, '2022-01-11', 2239, 48267, 3410, 39880, '1.0000', '25.8286', '25.8286', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50704, '2022-01-11', 1425, 48268, 3410, NULL, '1.0000', '6.3962', '6.3962', '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 (50705, '2022-01-11', 8765, 48269, 3410, 45286, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50706, '2022-01-11', 1406, 48270, 3410, 34926, '1.0000', '18.4200', '18.4200', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50707, '2022-01-11', 2169, 48271, 3410, NULL, '1.0000', '1.0284', '1.0284', '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 (50708, '2022-01-11', 7411, 48272, 3411, NULL, '1.0000', '1.3532', '1.3532', '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 (50709, '2022-01-11', 7585, 48273, 3411, NULL, '2.0000', '6.3120', '6.3120', '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 (50710, '2022-01-11', 7453, 48274, 3411, 45845, '1.0000', '11.3750', '11.3750', '28.5000', '28.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50711, '2022-01-11', 7473, 48275, 3411, NULL, '5.0000', '51.6412', '51.6412', '0.6000', '0.6000', '-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 (50712, '2022-01-11', 2655, 48276, 3411, 31905, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50713, '2022-01-11', 2245, 48277, 3411, 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 (50714, '2022-01-11', 7412, 48278, 3411, NULL, '1.0000', '1.5200', '1.5200', '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 (50715, '2022-01-11', 7804, 48279, 3411, 45340, '3.0000', '0.6529', '0.6529', '1.5000', '1.5000', '64.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50716, '2022-01-11', 2242, 48280, 3411, 45849, '3.0000', '0.5356', '0.5356', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50717, '2022-01-11', 8941, 48281, 3411, NULL, '1.0000', '12.0000', '12.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 (50718, '2022-01-11', 8033, 48282, 3411, NULL, '1.0000', '27.7000', '27.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 (50719, '2022-01-11', 1837, 48283, 3411, 46128, '1.0000', '0.3581', '0.3581', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50720, '2022-01-11', 7674, 48284, 3411, NULL, '1.0000', '-115.5436', '-115.5436', '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 (50721, '2022-01-11', 7927, 48285, 3411, 46237, '1.0000', '11.8554', '11.8554', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50722, '2022-01-11', 9716, 48286, 3411, 45605, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50723, '2022-01-11', 7825, 48287, 3411, NULL, '1.0000', '3.5000', '3.5000', '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 (50724, '2022-01-11', 2699, 48288, 3411, 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 (50725, '2022-01-11', 7671, 48289, 3411, NULL, '1.0000', '47.1963', '47.1963', '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 (50726, '2022-01-11', 1728, 48290, 3411, NULL, '10.0000', '90.0000', '90.0000', '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 (50727, '2022-01-11', 7965, 48291, 3411, 45916, '7.0000', '5.6100', '5.6100', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50728, '2022-01-11', 7685, 48292, 3411, NULL, '2.0000', '31.2000', '31.2000', '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 (50729, '2022-01-11', 8140, 48293, 3411, NULL, '3.0000', '6.0500', '6.0500', '14.5000', '14.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 (50730, '2022-01-11', 9555, 48294, 3411, 40396, '1.0000', '40.0000', '40.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50731, '2022-01-11', 7551, 48295, 3411, NULL, '1.0000', '-19.2050', '-19.2050', '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 (50732, '2022-01-11', 2315, 48296, 3411, NULL, '2.0000', '0.4740', '0.4740', '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 (50733, '2022-01-11', 1914, 48297, 3411, NULL, '1.0000', '5.2300', '5.2300', '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 (50734, '2022-01-11', 7729, 48298, 3411, NULL, '1.0000', '13.0000', '13.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 (50735, '2022-01-11', 1854, 48299, 3411, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50736, '2022-01-11', 7674, 48300, 3411, NULL, '1.0000', '-115.5436', '-115.5436', '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 (50737, '2022-01-11', 7671, 48301, 3411, NULL, '1.0000', '47.1963', '47.1963', '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 (50738, '2022-01-11', 7641, 48302, 3411, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50739, '2022-01-11', 7963, 48303, 3411, NULL, '1.0000', '-9.5000', '-9.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50740, '2022-01-11', 7781, 48304, 3411, NULL, '3.0000', '4.2500', '4.2500', '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 (50741, '2022-01-11', 7711, 48305, 3411, NULL, '1.0000', '-135.3314', '-135.3314', '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 (50742, '2022-01-11', 7430, 48306, 3411, 30046, '1.0000', '15.0000', '15.0000', '64.0000', '64.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50743, '2022-01-11', 8324, 48307, 3411, NULL, '1.0000', '3.0036', '3.0036', '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 (50744, '2022-01-11', 8566, 48308, 3411, 44480, '1.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50745, '2022-01-11', 9712, 48309, 3411, 44485, '1.0000', '20.0000', '20.0000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50746, '2022-01-11', 2992, 48310, 3411, 43062, '10.0000', '2.6000', '2.6000', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50747, '2022-01-11', 1992, 48311, 3411, 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 (50748, '2022-01-11', 9499, 48312, 3411, 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 (50749, '2022-01-11', 2242, 48313, 3411, 45849, '3.0000', '0.5356', '0.5356', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50750, '2022-01-11', 2906, 48314, 3411, NULL, '1.0000', '2.6000', '2.6000', '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 (50751, '2022-01-11', 7509, 48315, 3411, NULL, '1.0000', '6.6667', '6.6667', '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 (50752, '2022-01-11', 8372, 48316, 3411, 42771, '1.0000', '9.1160', '9.1160', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50753, '2022-01-11', 8206, 48317, 3411, NULL, '1.0000', '0.2000', '0.2000', '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 (50754, '2022-01-11', 3001, 48318, 3411, NULL, '2.0000', '1.5000', '1.5000', '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 (50755, '2022-01-11', 7524, 48319, 3411, 46120, '1.0000', '-119.5492', '-119.5492', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50756, '2022-01-11', 9668, 48320, 3411, 46093, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50757, '2022-01-11', 2748, 48321, 3411, NULL, '1.0000', '35.5000', '35.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 (50758, '2022-01-11', 7619, 48322, 3411, 45915, '1.0000', '102.1600', '102.1600', '49.0000', '49.0000', '0.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50759, '2022-01-11', 7334, 48323, 3411, 45914, '3.0000', '8.1867', '8.1867', '11.0000', '11.0000', '14.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50760, '2022-01-11', 8038, 48324, 3411, 45808, '1.0000', '6.7600', '6.7600', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50761, '2022-01-11', 7514, 48325, 3412, NULL, '1.0000', '2.2500', '2.2500', '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 (50762, '2022-01-11', 8941, 48326, 3412, NULL, '1.0000', '12.0000', '12.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 (50763, '2022-01-11', 2237, 48327, 3412, NULL, '1.0000', '-329.8285', '-329.8285', '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 (50764, '2022-01-11', 9399, 48328, 3412, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50765, '2022-01-11', 2169, 48329, 3412, NULL, '1.0000', '1.0284', '1.0284', '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 (50766, '2022-01-11', 7802, 48330, 3412, 46285, '1.0000', '0.9200', '0.9200', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50767, '2022-01-11', 2825, 48331, 3412, NULL, '1.0000', '12.0000', '12.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 (50768, '2022-01-11', 1856, 48332, 3412, NULL, '1.0000', '4.0781', '4.0781', '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 (50769, '2022-01-11', 2753, 48333, 3412, 32534, '2.0000', '4.8000', '4.8000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50770, '2022-01-11', 1425, 48334, 3412, NULL, '1.0000', '6.3962', '6.3962', '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 (50771, '2022-01-11', 2244, 48335, 3412, 39892, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50772, '2022-01-11', 8033, 48336, 3412, 39781, '1.0000', '27.7000', '27.7000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50773, '2022-01-11', 2465, 48337, 3412, 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 (50774, '2022-01-11', 9413, 48338, 3412, 38544, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50775, '2022-01-11', 7411, 48339, 3412, NULL, '2.0000', '1.3466', '1.3466', '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 (50776, '2022-01-11', 9750, 48340, 3412, NULL, '2.0000', '3.3000', '3.3000', '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 (50777, '2022-01-11', 1602, 48341, 3412, NULL, '1.0000', '10.3512', '10.3512', '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 (50778, '2022-01-11', 2491, 48342, 3413, 44711, '1.0000', '13.0919', '13.0919', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50779, '2022-01-11', 7342, 48343, 3413, 44703, '1.0000', '15.8000', '15.8000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50780, '2022-01-11', 2135, 48344, 3413, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50781, '2022-01-11', 2592, 48345, 3413, 45141, '1.0000', '9.2636', '9.2636', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50782, '2022-01-11', 1812, 48346, 3413, 46067, '1.0000', '7.9683', '7.9683', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50783, '2022-01-11', 2221, 48347, 3413, 45118, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '15.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50784, '2022-01-11', 2916, 48348, 3413, 46066, '1.0000', '14.0820', '14.0820', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50785, '2022-01-11', 7610, 48349, 3413, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50786, '2022-01-11', 9715, 48350, 3413, 46036, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50787, '2022-01-11', 7741, 48351, 3413, NULL, '1.0000', '1.2000', '1.2000', '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 (50788, '2022-01-11', 2712, 48352, 3413, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50789, '2022-01-11', 2712, 48353, 3413, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '11.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50790, '2022-01-11', 9734, 48354, 3413, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '99.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50791, '2022-01-11', 1811, 48355, 3413, 44607, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50792, '2022-01-11', 9560, 48356, 3413, 39200, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '13.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50793, '2022-01-11', 1602, 48357, 3413, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50794, '2022-01-11', 1953, 48358, 3413, 32866, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50795, '2022-01-11', 2280, 48359, 3413, 44766, '1.0000', '2.9290', '2.9290', '5.0000', '5.0000', '37.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50796, '2022-01-11', 1432, 48360, 3413, 46022, '2.0000', '9.2136', '9.2136', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50797, '2022-01-11', 2531, 48361, 3413, 6124, '1.0000', '20.0000', '20.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 (50798, '2022-01-11', 1695, 48362, 3413, 45108, '1.0000', '57.7608', '57.7608', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50799, '2022-01-11', 1620, 48363, 3413, 40619, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50800, '2022-01-11', 1888, 48364, 3413, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50801, '2022-01-11', 2908, 48365, 3413, 18685, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '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 (50802, '2022-01-11', 1311, 48366, 3413, 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 (50803, '2022-01-11', 7756, 48367, 3413, NULL, '1.0000', '23.9111', '23.9111', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50804, '2022-01-11', 1650, 48368, 3413, 45135, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50805, '2022-01-11', 9735, 48369, 3413, 46029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50806, '2022-01-11', 1863, 48370, 3413, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '113.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50807, '2022-01-11', 3025, 48371, 3413, 40388, '2.0000', '2.3000', '2.3000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50808, '2022-01-11', 2293, 48372, 3413, 3064, '2.0000', '1.4400', '1.4400', '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 (50809, '2022-01-11', 2313, 48373, 3413, NULL, '3.0000', '8.7000', '8.7000', '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 (50810, '2022-01-11', 1888, 48374, 3413, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50811, '2022-01-11', 1574, 48375, 3413, 45115, '3.0000', '39.2960', '39.2960', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50812, '2022-01-11', 2088, 48376, 3413, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50813, '2022-01-11', 1602, 48377, 3413, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50814, '2022-01-11', 2491, 48378, 3414, 44711, '1.0000', '13.0919', '13.0919', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50815, '2022-01-11', 7342, 48379, 3414, 44703, '1.0000', '15.8000', '15.8000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50816, '2022-01-11', 2135, 48380, 3414, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50817, '2022-01-11', 2592, 48381, 3414, 45141, '1.0000', '9.2636', '9.2636', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50818, '2022-01-11', 1812, 48382, 3414, 46067, '1.0000', '7.9683', '7.9683', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50819, '2022-01-11', 2221, 48383, 3414, 45118, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '14.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50820, '2022-01-11', 2916, 48384, 3414, 46066, '1.0000', '14.0820', '14.0820', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50821, '2022-01-11', 7610, 48385, 3414, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50822, '2022-01-11', 9715, 48386, 3414, 46036, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50823, '2022-01-11', 7741, 48387, 3414, NULL, '1.0000', '1.2000', '1.2000', '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 (50824, '2022-01-11', 2712, 48388, 3414, 42626, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '7.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50825, '2022-01-11', 2712, 48389, 3414, 42626, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50826, '2022-01-11', 9734, 48390, 3414, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50827, '2022-01-11', 1811, 48391, 3414, 44607, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50828, '2022-01-11', 9560, 48392, 3414, 39200, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '12.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50829, '2022-01-11', 1602, 48393, 3414, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '26.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50830, '2022-01-11', 1953, 48394, 3414, 32866, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50831, '2022-01-11', 2280, 48395, 3414, 44766, '1.0000', '2.9290', '2.9290', '5.0000', '5.0000', '36.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50832, '2022-01-11', 1432, 48396, 3414, 46022, '2.0000', '9.2136', '9.2136', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50833, '2022-01-11', 2531, 48397, 3414, 6124, '1.0000', '20.0000', '20.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 (50834, '2022-01-11', 1695, 48398, 3414, 45108, '1.0000', '57.7608', '57.7608', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50835, '2022-01-11', 1620, 48399, 3414, 40619, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50836, '2022-01-11', 1888, 48400, 3414, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50837, '2022-01-11', 2908, 48401, 3414, 18685, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '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 (50838, '2022-01-11', 1311, 48402, 3414, 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 (50839, '2022-01-11', 7756, 48403, 3414, NULL, '1.0000', '23.9111', '23.9111', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50840, '2022-01-11', 1650, 48404, 3414, 45135, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50841, '2022-01-11', 9735, 48405, 3414, 46029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50842, '2022-01-11', 1863, 48406, 3414, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '112.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50843, '2022-01-11', 3025, 48407, 3414, 40388, '2.0000', '2.3000', '2.3000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50844, '2022-01-11', 2293, 48408, 3414, 3064, '2.0000', '1.4400', '1.4400', '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 (50845, '2022-01-11', 2313, 48409, 3414, NULL, '3.0000', '8.7000', '8.7000', '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 (50846, '2022-01-11', 1888, 48410, 3414, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50847, '2022-01-11', 1574, 48411, 3414, 45115, '3.0000', '39.2960', '39.2960', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50848, '2022-01-11', 2088, 48412, 3414, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50849, '2022-01-11', 1602, 48413, 3414, 44792, '1.0000', '6.9398', '6.9398', '10.0000', '10.0000', '26.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50850, '2022-01-11', 2384, 48414, 3415, 29813, '12.0000', '0.2683', '0.2683', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50851, '2022-01-11', 3069, 48415, 3416, 25154, '1.0000', '5.0000', '5.0000', '6.0000', '6.0000', '3.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 (50852, '2022-01-11', 2821, 48416, 3416, NULL, '1.0000', '3.6016', '3.6016', '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 (50853, '2022-01-11', 9598, 48417, 3416, 42837, '1.0000', '3.7600', '3.7600', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50854, '2022-01-11', 2242, 48418, 3417, 45849, '3.0000', '0.5356', '0.5356', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50855, '2022-01-11', 7989, 48419, 3417, NULL, '1.0000', '26.9800', '26.9800', '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 (50856, '2022-01-11', 7713, 48420, 3417, 37845, '3.0000', '0.4202', '0.4202', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50857, '2022-01-11', 7641, 48421, 3417, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50858, '2022-01-11', 7412, 48422, 3417, NULL, '1.0000', '1.5200', '1.5200', '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 (50859, '2022-01-11', 1908, 48423, 3417, NULL, '2.0000', '1.7500', '1.7500', '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 (50860, '2022-01-11', 7709, 48424, 3417, NULL, '1.0000', '38.7953', '38.7953', '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 (50861, '2022-01-11', 7576, 48425, 3417, NULL, '4.0000', '-11.8309', '-11.8309', '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 (50862, '2022-01-11', 7824, 48426, 3417, NULL, '1.0000', '10.0834', '10.0834', '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 (50863, '2022-01-11', 2965, 48427, 3417, NULL, '1.0000', '3.9200', '3.9200', '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 (50864, '2022-01-11', 7380, 48428, 3417, NULL, '1.0000', '8.0000', '8.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 (50865, '2022-01-11', 7775, 48429, 3417, NULL, '1.0000', '-2.9800', '-2.9800', '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 (50866, '2022-01-11', 9084, 48430, 3417, NULL, '1.0000', '8.9000', '8.9000', '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 (50867, '2022-01-11', 7412, 48431, 3417, NULL, '2.0000', '1.5200', '1.5200', '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 (50868, '2022-01-11', 8596, 48432, 3417, NULL, '1.0000', '17.0000', '17.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 (50869, '2022-01-11', 8763, 48433, 3417, 43939, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50870, '2022-01-11', 1339, 48434, 3417, 44865, '1.0000', '1.4952', '1.4952', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50871, '2022-01-11', 1667, 48435, 3418, 38523, '1.0000', '22.4947', '22.4947', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50872, '2022-01-11', 9734, 48436, 3418, 46294, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '66.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50873, '2022-01-11', 9595, 48437, 3418, NULL, '2.0000', '1.7400', '1.7400', '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 (50874, '2022-01-11', 1812, 48438, 3418, 46319, '2.0000', '7.9721', '7.9721', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50875, '2022-01-11', 1785, 48439, 3418, 42810, '1.0000', '15.0000', '15.0000', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50876, '2022-01-11', 8771, 48440, 3418, 45275, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50877, '2022-01-11', 1651, 48441, 3419, 3222, '-40.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 (50878, '2022-01-11', 1651, 48441, 3419, NULL, '41.0000', '6.7039', '6.7039', '10.5000', '10.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 (50879, '2022-01-11', 9337, 48442, 3419, 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 (50880, '2022-01-12', 9747, 48443, 3420, 46299, '10.0000', '0.6500', '0.6500', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50881, '2022-01-12', 7781, 48444, 3420, NULL, '6.0000', '4.2500', '4.2500', '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 (50882, '2022-01-12', 2289, 48445, 3420, 42836, '4.0000', '0.3186', '0.3186', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50883, '2022-01-12', 1841, 48446, 3420, 34025, '4.0000', '0.2601', '0.2601', '0.5000', '0.5000', '15.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50884, '2022-01-12', 1840, 48447, 3420, 42569, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '20.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50885, '2022-01-12', 1710, 48448, 3420, 19851, '1.0000', '3.4300', '3.4300', '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 (50886, '2022-01-12', 8454, 48449, 3420, NULL, '1.0000', '3.7420', '3.7420', '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 (50887, '2022-01-12', 2169, 48450, 3420, NULL, '1.0000', '1.0284', '1.0284', '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 (50888, '2022-01-12', 9729, 48451, 3420, 46295, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50889, '2022-01-12', 8133, 48452, 3420, NULL, '1.0000', '-618.7699', '-618.7699', '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 (50890, '2022-01-12', 8746, 48453, 3420, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50891, '2022-01-12', 1787, 48454, 3420, 43226, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50892, '2022-01-12', 3058, 48455, 3420, NULL, '1.0000', '2.3000', '2.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 (50893, '2022-01-12', 8984, 48456, 3420, NULL, '2.0000', '-100.8495', '-100.8495', '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 (50894, '2022-01-12', 7713, 48457, 3420, NULL, '5.0000', '21.0666', '21.0666', '0.6000', '0.6000', '-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 (50895, '2022-01-12', 1779, 48458, 3420, 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 (50896, '2022-01-12', 2346, 48459, 3420, NULL, '1.0000', '5.8000', '5.8000', '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 (50897, '2022-01-12', 1816, 48460, 3420, NULL, '1.0000', '19.7500', '19.7500', '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 (50898, '2022-01-12', 1999, 48461, 3420, NULL, '1.0000', '6.8730', '6.8730', '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 (50899, '2022-01-12', 7565, 48462, 3420, NULL, '1.0000', '0.2000', '0.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 (50900, '2022-01-12', 1912, 48463, 3420, 41409, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50901, '2022-01-12', 2280, 48464, 3421, 33794, '1.0000', '3.0700', '3.0700', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50902, '2022-01-12', 2440, 48465, 3421, 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 (50903, '2022-01-12', 2556, 48466, 3421, 7196, '-28.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 (50904, '2022-01-12', 2556, 48466, 3421, NULL, '29.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50905, '2022-01-12', 1602, 48467, 3421, 5897, '-86.0000', '6.7859', '6.7859', '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 (50906, '2022-01-12', 1602, 48467, 3421, NULL, '87.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50907, '2022-01-12', 2400, 48468, 3421, 20694, '1.0000', '12.5000', '12.5000', '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 (50908, '2022-01-12', 1564, 48469, 3421, 18921, '2.0000', '2.6000', '2.6000', '4.0000', '4.0000', '88.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 (50909, '2022-01-12', 2317, 48470, 3421, 3473, '1.0000', '15.0000', '15.0000', '18.0000', '18.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 (50910, '2022-01-12', 2169, 48471, 3421, 10737, '-14.0000', '3.8397', '3.8397', '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 (50911, '2022-01-12', 2169, 48471, 3421, NULL, '16.0000', '3.8397', '3.8397', '2.0000', '2.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 (50912, '2022-01-12', 2285, 48472, 3421, 2945, '-34.0000', '35.8000', '35.8000', '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 (50913, '2022-01-12', 2285, 48472, 3421, NULL, '35.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50914, '2022-01-12', 3035, 48473, 3421, NULL, '1.0000', '9.5000', '9.5000', '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 (50915, '2022-01-12', 2169, 48474, 3421, 10737, '-14.0000', '3.8397', '3.8397', '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 (50916, '2022-01-12', 2169, 48474, 3421, NULL, '15.0000', '3.8397', '3.8397', '2.0000', '2.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 (50917, '2022-01-12', 9745, 48475, 3421, NULL, '1.0000', '7.2000', '7.2000', '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 (50918, '2022-01-12', 1580, 48476, 3421, 7598, '-28.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 (50919, '2022-01-12', 1580, 48476, 3421, NULL, '31.0000', '0.9900', '0.9900', '1.5000', '1.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 (50920, '2022-01-12', 7411, 48477, 3421, NULL, '1.0000', '1.3500', '1.3500', '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 (50921, '2022-01-12', 8104, 48478, 3422, NULL, '10.0000', '1.6000', '1.6000', '2.2000', '2.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 (50922, '2022-01-12', 9513, 48479, 3422, NULL, '1.0000', '6.8300', '6.8300', '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 (50923, '2022-01-12', 9734, 48480, 3422, 45925, '5.0000', '0.3200', '0.3200', '0.5000', '0.5000', '145.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50924, '2022-01-12', 7514, 48481, 3422, NULL, '1.0000', '51.3956', '51.3956', '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 (50925, '2022-01-12', 2315, 48482, 3422, NULL, '2.0000', '0.4740', '0.4740', '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 (50926, '2022-01-12', 1837, 48483, 3422, 45863, '1.0000', '0.3581', '0.3581', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50927, '2022-01-12', 9160, 48484, 3422, NULL, '1.0000', '41.6640', '41.6640', '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 (50928, '2022-01-12', 8178, 48485, 3422, NULL, '1.0000', '4.5000', '4.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 (50929, '2022-01-12', 7913, 48486, 3422, NULL, '2.0000', '2.5500', '2.5500', '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 (50930, '2022-01-12', 7776, 48487, 3422, NULL, '1.0000', '8.0000', '8.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 (50931, '2022-01-12', 7852, 48488, 3422, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50932, '2022-01-12', 9620, 48489, 3422, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50933, '2022-01-12', 7674, 48490, 3422, NULL, '1.0000', '-115.5436', '-115.5436', '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 (50934, '2022-01-12', 8866, 48491, 3422, 45784, '1.0000', '0.4300', '0.4300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50935, '2022-01-12', 7335, 48492, 3422, NULL, '1.0000', '4.4067', '4.4067', '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 (50936, '2022-01-12', 7672, 48493, 3422, NULL, '1.0000', '1.0200', '1.0200', '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 (50937, '2022-01-12', 7641, 48494, 3422, NULL, '2.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50938, '2022-01-12', 9092, 48495, 3422, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '132.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50939, '2022-01-12', 7675, 48496, 3422, NULL, '2.0000', '17.2368', '17.2368', '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 (50940, '2022-01-12', 7902, 48497, 3422, NULL, '1.0000', '15.0000', '15.0000', '3.2000', '3.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 (50941, '2022-01-12', 7658, 48498, 3422, NULL, '14.0000', '165.7515', '165.7515', '2.8000', '2.8000', '-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 (50942, '2022-01-12', 9681, 48499, 3422, NULL, '1.0000', '7.8000', '7.8000', '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 (50943, '2022-01-12', 7564, 48500, 3422, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50944, '2022-01-12', 1851, 48501, 3422, NULL, '1.0000', '11.5600', '11.5600', '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 (50945, '2022-01-12', 9734, 48502, 3422, 45925, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '148.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50946, '2022-01-12', 1337, 48503, 3422, 45599, '1.0000', '1.0180', '1.0180', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50947, '2022-01-12', 7847, 48504, 3422, 31664, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50948, '2022-01-12', 7509, 48505, 3422, NULL, '2.0000', '6.6667', '6.6667', '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 (50949, '2022-01-12', 2315, 48506, 3422, NULL, '2.0000', '0.4740', '0.4740', '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 (50950, '2022-01-12', 1326, 48507, 3422, 222, '2.0000', '3.0856', '3.0856', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 6);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50951, '2022-01-12', 7459, 48508, 3422, NULL, '20.0000', '467.7123', '467.7123', '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 (50952, '2022-01-12', 8497, 48509, 3422, NULL, '2.0000', '567.7431', '567.7431', '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 (50953, '2022-01-12', 2612, 48510, 3422, 45772, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50954, '2022-01-12', 2414, 48511, 3422, NULL, '4.0000', '3.4000', '3.4000', '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 (50955, '2022-01-12', 7671, 48512, 3422, NULL, '1.0000', '47.1963', '47.1963', '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 (50956, '2022-01-12', 7473, 48513, 3422, NULL, '5.0000', '51.6412', '51.6412', '0.6000', '0.6000', '-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 (50957, '2022-01-12', 2284, 48514, 3422, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50958, '2022-01-12', 7411, 48515, 3422, NULL, '1.0000', '1.3532', '1.3532', '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 (50959, '2022-01-12', 8676, 48516, 3422, NULL, '1.0000', '34.0000', '34.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 (50960, '2022-01-12', 2699, 48517, 3422, 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 (50961, '2022-01-12', 7729, 48518, 3422, NULL, '1.0000', '13.0000', '13.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 (50962, '2022-01-12', 8359, 48519, 3422, NULL, '1.0000', '124.3470', '124.3470', '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 (50963, '2022-01-12', 7819, 48520, 3422, NULL, '2.0000', '10.6154', '10.6154', '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 (50964, '2022-01-12', 7907, 48521, 3422, NULL, '1.0000', '12.0000', '12.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 (50965, '2022-01-12', 7530, 48522, 3422, NULL, '1.0000', '5.9000', '5.9000', '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 (50966, '2022-01-12', 7547, 48523, 3422, NULL, '1.0000', '0.0000', '0.0000', '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 (50967, '2022-01-12', 7819, 48524, 3422, NULL, '1.0000', '10.6154', '10.6154', '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 (50968, '2022-01-12', 7804, 48525, 3422, 45340, '3.0000', '0.6529', '0.6529', '1.5000', '1.5000', '61.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50969, '2022-01-12', 7518, 48526, 3422, NULL, '1.0000', '-1030.4559', '-1030.4559', '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 (50970, '2022-01-12', 9177, 48527, 3422, NULL, '4.0000', '2.2517', '2.2517', '1.2000', '1.2000', '-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 (50971, '2022-01-12', 7807, 48528, 3422, NULL, '5.0000', '12.0000', '12.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 (50972, '2022-01-12', 7672, 48529, 3422, NULL, '1.0000', '1.0200', '1.0200', '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 (50973, '2022-01-12', 7401, 48530, 3422, NULL, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50974, '2022-01-12', 1935, 48531, 3422, 45606, '1.0000', '28.7657', '28.7657', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50975, '2022-01-12', 1647, 48532, 3422, 46229, '1.0000', '5.2212', '5.2212', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50976, '2022-01-12', 7565, 48533, 3422, NULL, '1.0000', '0.2000', '0.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 (50977, '2022-01-12', 7641, 48534, 3422, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50978, '2022-01-12', 7518, 48535, 3422, NULL, '1.0000', '-1030.4559', '-1030.4559', '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 (50979, '2022-01-12', 2655, 48536, 3422, 31905, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50980, '2022-01-12', 9750, 48537, 3422, 45946, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '49.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50981, '2022-01-12', 7713, 48538, 3422, 37845, '1.0000', '0.4202', '0.4202', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50982, '2022-01-12', 7781, 48539, 3422, NULL, '3.0000', '4.2500', '4.2500', '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 (50983, '2022-01-12', 2284, 48540, 3422, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50984, '2022-01-12', 2761, 48541, 3422, 45932, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50985, '2022-01-12', 9734, 48542, 3422, 45925, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '149.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50986, '2022-01-12', 8101, 48543, 3422, NULL, '2.0000', '21.7000', '21.7000', '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 (50987, '2022-01-12', 8920, 48544, 3422, NULL, '1.0000', '9.8500', '9.8500', '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 (50988, '2022-01-12', 8924, 48545, 3422, NULL, '1.0000', '4.5000', '4.5000', '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 (50989, '2022-01-12', 7803, 48546, 3423, NULL, '1.0000', '1.8200', '1.8200', '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 (50990, '2022-01-12', 9445, 48547, 3423, 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 (50991, '2022-01-12', 8984, 48548, 3423, NULL, '1.0000', '-100.8495', '-100.8495', '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 (50992, '2022-01-12', 2280, 48549, 3423, NULL, '1.0000', '-177.9360', '-177.9360', '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 (50993, '2022-01-12', 2908, 48550, 3423, NULL, '3.0000', '0.2700', '0.2700', '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 (50994, '2022-01-12', 2287, 48551, 3423, 43279, '5.0000', '1.6790', '1.6790', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50995, '2022-01-12', 7411, 48552, 3423, NULL, '1.0000', '1.3466', '1.3466', '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 (50996, '2022-01-12', 2990, 48553, 3423, 39769, '1.0000', '1.1200', '1.1200', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50997, '2022-01-12', 2254, 48554, 3423, NULL, '2.0000', '17.9400', '17.9400', '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 (50998, '2022-01-12', 1557, 48555, 3423, NULL, '1.0000', '7.0650', '7.0650', '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 (50999, '2022-01-12', 7473, 48556, 3423, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '66.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51000, '2022-01-12', 2169, 48557, 3423, NULL, '1.0000', '1.0284', '1.0284', '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 (51001, '2022-01-12', 2237, 48558, 3423, NULL, '1.0000', '-329.8285', '-329.8285', '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 (51002, '2022-01-12', 2169, 48559, 3423, NULL, '2.0000', '1.0284', '1.0284', '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 (51003, '2022-01-12', 8444, 48560, 3423, 46270, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51004, '2022-01-12', 7560, 48561, 3423, 39844, '1.0000', '90.1600', '90.1600', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51005, '2022-01-12', 1686, 48562, 3423, 45153, '1.0000', '27.6667', '27.6667', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51006, '2022-01-12', 7514, 48563, 3423, NULL, '3.0000', '2.2500', '2.2500', '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 (51007, '2022-01-12', 2699, 48564, 3423, 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 (51008, '2022-01-12', 8969, 48565, 3423, 39814, '3.0000', '2.0000', '2.0000', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51009, '2022-01-12', 7743, 48566, 3423, NULL, '1.0000', '7.3900', '7.3900', '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 (51010, '2022-01-12', 2169, 48567, 3423, NULL, '1.0000', '1.0284', '1.0284', '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 (51011, '2022-01-12', 9743, 48568, 3423, 46309, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51012, '2022-01-12', 1665, 48569, 3423, 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 (51013, '2022-01-12', 2699, 48570, 3423, 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 (51014, '2022-01-12', 1619, 48571, 3423, NULL, '3.0000', '9.8500', '9.8500', '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 (51015, '2022-01-12', 2306, 48572, 3423, 39895, '1.0000', '55.0000', '55.0000', '72.5000', '72.5000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51016, '2022-01-12', 1760, 48573, 3423, NULL, '3.0000', '1.5900', '1.5900', '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 (51017, '2022-01-12', 2352, 48574, 3423, NULL, '2.0000', '59.2000', '59.2000', '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 (51018, '2022-01-12', 8984, 48575, 3423, NULL, '1.0000', '-100.8495', '-100.8495', '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 (51019, '2022-01-12', 2244, 48576, 3423, 39892, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51020, '2022-01-12', 2699, 48577, 3423, 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 (51021, '2022-01-12', 9734, 48578, 3423, 46294, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51022, '2022-01-12', 1935, 48579, 3423, NULL, '1.0000', '-0.2795', '-0.2795', '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 (51023, '2022-01-12', 7411, 48580, 3423, NULL, '1.0000', '1.3466', '1.3466', '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 (51024, '2022-01-12', 2317, 48581, 3423, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '13.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 (51025, '2022-01-12', 2293, 48582, 3423, NULL, '3.0000', '2.7733', '2.7733', '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 (51026, '2022-01-12', 2822, 48583, 3423, 44068, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '47.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51027, '2022-01-12', 1695, 48584, 3423, NULL, '1.0000', '22.6608', '22.6608', '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 (51028, '2022-01-12', 2280, 48585, 3423, NULL, '1.0000', '-177.9360', '-177.9360', '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 (51029, '2022-01-12', 1502, 48586, 3423, NULL, '1.0000', '-50.9143', '-50.9143', '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 (51030, '2022-01-12', 2475, 48587, 3423, 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 (51031, '2022-01-12', 7514, 48588, 3423, NULL, '1.0000', '2.2500', '2.2500', '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 (51032, '2022-01-12', 1665, 48589, 3423, 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 (51033, '2022-01-12', 1782, 48590, 3423, 19340, '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 (51034, '2022-01-12', 7411, 48591, 3423, NULL, '1.0000', '1.3466', '1.3466', '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 (51035, '2022-01-12', 7713, 48592, 3423, NULL, '2.0000', '21.0666', '21.0666', '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 (51036, '2022-01-12', 1612, 48593, 3423, 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 (51037, '2022-01-12', 2318, 48594, 3423, 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 (51038, '2022-01-12', 1888, 48595, 3423, 45156, '1.0000', '16.3778', '16.3778', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51039, '2022-01-12', 9413, 48596, 3423, 38544, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51040, '2022-01-12', 8345, 48597, 3423, NULL, '1.0000', '22.0000', '22.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 (51041, '2022-01-12', 2221, 48598, 3423, 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 (51042, '2022-01-12', 7514, 48599, 3423, NULL, '1.0000', '2.2500', '2.2500', '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 (51043, '2022-01-12', 1854, 48600, 3423, NULL, '2.0000', '2.3947', '2.3947', '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 (51044, '2022-01-12', 1557, 48601, 3423, NULL, '1.0000', '7.0650', '7.0650', '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 (51045, '2022-01-12', 1863, 48602, 3424, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '111.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51046, '2022-01-12', 1905, 48603, 3424, 5509, '4.0000', '0.4000', '0.4000', '1.0000', '1.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 (51047, '2022-01-12', 1863, 48604, 3425, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '110.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51048, '2022-01-12', 1905, 48605, 3425, 5509, '4.0000', '0.4000', '0.4000', '1.0000', '1.0000', '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 (51049, '2022-01-12', 9577, 48606, 3426, 38070, '4.0000', '0.3200', '0.3200', '0.8000', '0.8000', '24.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51050, '2022-01-12', 2965, 48607, 3426, 42932, '1.0000', '4.3925', '4.3925', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51051, '2022-01-12', 1762, 48608, 3426, 46071, '1.0000', '9.2557', '9.2557', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51052, '2022-01-12', 2858, 48609, 3426, 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 (51053, '2022-01-12', 1772, 48610, 3426, 40908, '1.0000', '6.0491', '6.0491', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51054, '2022-01-12', 2924, 48611, 3426, 40635, '1.0000', '6.3000', '6.3000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51055, '2022-01-12', 1863, 48612, 3426, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '108.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51056, '2022-01-12', 1504, 48613, 3426, NULL, '10.0000', '-2.1529', '-2.1529', '2.2000', '2.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 (51057, '2022-01-12', 8984, 48614, 3426, NULL, '1.0000', '304.7000', '304.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 (51058, '2022-01-12', 2858, 48615, 3426, 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 (51059, '2022-01-12', 2169, 48616, 3426, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51060, '2022-01-12', 2135, 48617, 3426, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51061, '2022-01-12', 9566, 48618, 3426, 37555, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51062, '2022-01-12', 1893, 48619, 3426, 5498, '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 (51063, '2022-01-12', 2713, 48620, 3426, 32592, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51064, '2022-01-12', 7744, 48621, 3426, 44790, '1.0000', '2.9400', '2.9400', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51065, '2022-01-12', 7391, 48622, 3426, NULL, '1.0000', '-543.4025', '-543.4025', '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 (51066, '2022-01-12', 1546, 48623, 3426, 46055, '6.0000', '-23.2417', '-23.2417', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51067, '2022-01-12', 8984, 48624, 3426, NULL, '1.0000', '304.7000', '304.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 (51068, '2022-01-12', 9744, 48625, 3426, 46044, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51069, '2022-01-12', 1812, 48626, 3426, 46067, '1.0000', '7.9683', '7.9683', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51070, '2022-01-12', 8395, 48627, 3426, NULL, '1.0000', '0.9700', '0.9700', '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 (51071, '2022-01-12', 8758, 48628, 3426, 42620, '1.0000', '5.8000', '5.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51072, '2022-01-12', 2858, 48629, 3426, 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 (51073, '2022-01-12', 9577, 48630, 3426, 38070, '1.0000', '0.3200', '0.3200', '0.8000', '0.8000', '27.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51074, '2022-01-12', 7334, 48631, 3426, NULL, '3.0000', '8.1600', '8.1600', '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 (51075, '2022-01-12', 1493, 48632, 3426, 44608, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51076, '2022-01-12', 2169, 48633, 3426, 45082, '1.0000', '1.1234', '1.1234', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51077, '2022-01-12', 2366, 48634, 3426, NULL, '2.0000', '3.7873', '3.7873', '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 (51078, '2022-01-12', 1695, 48635, 3426, 45108, '1.0000', '57.7608', '57.7608', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51079, '2022-01-12', 1981, 48636, 3426, 27326, '1.0000', '8.5256', '8.5256', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51080, '2022-01-12', 2135, 48637, 3426, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51081, '2022-01-12', 2049, 48638, 3426, NULL, '1.0000', '8.5000', '8.5000', '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 (51082, '2022-01-12', 9021, 48639, 3427, 39827, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51083, '2022-01-12', 7672, 48640, 3427, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51084, '2022-01-12', 1999, 48641, 3427, NULL, '1.0000', '6.8730', '6.8730', '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 (51085, '2022-01-12', 2908, 48642, 3427, 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 (51086, '2022-01-12', 1809, 48643, 3427, 13765, '1.0000', '9.5248', '9.5248', '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 (51087, '2022-01-12', 7781, 48644, 3428, NULL, '3.0000', '4.2500', '4.2500', '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 (51088, '2022-01-12', 2106, 48645, 3428, NULL, '2.0000', '0.9900', '0.9900', '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 (51089, '2022-01-12', 7703, 48646, 3428, NULL, '2.0000', '22.9900', '22.9900', '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 (51090, '2022-01-12', 2384, 48647, 3428, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51091, '2022-01-12', 7473, 48648, 3428, NULL, '2.0000', '51.6412', '51.6412', '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 (51092, '2022-01-12', 7509, 48649, 3428, NULL, '1.0000', '6.6667', '6.6667', '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 (51093, '2022-01-12', 9730, 48650, 3428, 46182, '1.0000', '18.2000', '18.2000', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51094, '2022-01-12', 9275, 48651, 3428, NULL, '3.0000', '6.3000', '6.3000', '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 (51095, '2022-01-12', 2616, 48652, 3428, 45807, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51096, '2022-01-12', 7848, 48653, 3428, NULL, '1.0000', '-5.0424', '-5.0424', '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 (51097, '2022-01-12', 2655, 48654, 3428, 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 (51098, '2022-01-12', 8352, 48655, 3428, NULL, '1.0000', '-153.7209', '-153.7209', '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 (51099, '2022-01-12', 8119, 48656, 3428, 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 (51100, '2022-01-12', 7762, 48657, 3428, NULL, '1.0000', '-0.4000', '-0.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 (51101, '2022-01-12', 1665, 48658, 3429, 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 (51102, '2022-01-12', 1646, 48659, 3429, 45142, '1.0000', '4.4381', '4.4381', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51103, '2022-01-12', 7472, 48660, 3429, 39768, '1.0000', '4.2055', '4.2055', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51104, '2022-01-12', 2416, 48661, 3429, 44001, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51105, '2022-01-12', 1493, 48662, 3430, 44608, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51106, '2022-01-12', 1337, 48663, 3430, 44622, '1.0000', '2.0000', '2.0000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51107, '2022-01-12', 2247, 48664, 3430, 24101, '1.0000', '2.5000', '2.5000', '3.5000', '3.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 (51108, '2022-01-12', 2635, 48665, 3430, 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 (51109, '2022-01-12', 1333, 48666, 3430, 33203, '1.0000', '0.2530', '0.2530', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51110, '2022-01-12', 1335, 48667, 3430, 45126, '1.0000', '0.7346', '0.7346', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51111, '2022-01-12', 1837, 48668, 3430, 44787, '2.0000', '0.4630', '0.4630', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51112, '2022-01-12', 3025, 48669, 3430, 40388, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51113, '2022-01-12', 2454, 48670, 3430, 45070, '1.0000', '9.0417', '9.0417', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51114, '2022-01-12', 1468, 48671, 3430, NULL, '1.0000', '90.0000', '90.0000', '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 (51115, '2022-01-12', 8596, 48672, 3430, NULL, '1.0000', '17.0000', '17.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 (51116, '2022-01-13', 1432, 48673, 3431, 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 (51117, '2022-01-13', 2858, 48674, 3431, 17772, '-35.0000', '1.0000', '1.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 (51118, '2022-01-13', 2858, 48674, 3431, NULL, '36.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (51119, '2022-01-13', 2234, 48675, 3431, 2778, '1.0000', '16.9284', '16.9284', '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 (51120, '2022-01-13', 9750, 48676, 3431, NULL, '1.0000', '3.3000', '3.3000', '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 (51121, '2022-01-13', 1386, 48677, 3431, 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 (51122, '2022-01-13', 1409, 48678, 3431, 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 (51123, '2022-01-13', 2730, 48679, 3431, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '30.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 (51124, '2022-01-13', 1452, 48680, 3431, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51125, '2022-01-13', 1966, 48681, 3431, 3237, '-5.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 (51126, '2022-01-13', 1966, 48681, 3431, NULL, '6.0000', '2.7100', '2.7100', '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 (51127, '2022-01-13', 2109, 48682, 3431, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '87.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 (51128, '2022-01-13', 2169, 48683, 3431, 10737, '-17.0000', '3.8397', '3.8397', '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 (51129, '2022-01-13', 2169, 48683, 3431, NULL, '18.0000', '3.8397', '3.8397', '2.0000', '2.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 (51130, '2022-01-13', 1839, 48684, 3431, 8734, '-17.0000', '6.1500', '6.1500', '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 (51131, '2022-01-13', 1839, 48684, 3431, NULL, '18.0000', '6.1500', '6.1500', '10.5000', '10.5000', '-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 (51132, '2022-01-13', 1825, 48685, 3431, 11265, '-8.0000', '4.8000', '4.8000', '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 (51133, '2022-01-13', 1825, 48685, 3431, NULL, '9.0000', '4.8000', '4.8000', '7.0000', '7.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 (51134, '2022-01-13', 1584, 48686, 3432, 7601, '-29.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 (51135, '2022-01-13', 1584, 48686, 3432, NULL, '30.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-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 (51136, '2022-01-13', 1584, 48687, 3433, 7601, '-30.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 (51137, '2022-01-13', 1584, 48687, 3433, NULL, '31.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-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 (51138, '2022-01-13', 1621, 48688, 3434, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '40.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51139, '2022-01-13', 2986, 48689, 3434, 46289, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51140, '2022-01-13', 2169, 48690, 3434, NULL, '1.0000', '1.0284', '1.0284', '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 (51141, '2022-01-13', 3041, 48691, 3434, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.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 (51142, '2022-01-13', 2761, 48692, 3434, 46296, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51143, '2022-01-13', 2916, 48693, 3434, NULL, '1.0000', '14.8227', '14.8227', '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 (51144, '2022-01-13', 1310, 48694, 3434, NULL, '2.0000', '0.4288', '0.4288', '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 (51145, '2022-01-13', 2287, 48695, 3434, 43279, '2.0000', '1.6790', '1.6790', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51146, '2022-01-13', 2287, 48695, 3434, 29630, '1.0000', '1.6790', '1.6790', '3.0000', '3.0000', '60.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51147, '2022-01-13', 8743, 48696, 3434, NULL, '1.0000', '11.2917', '11.2917', '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 (51148, '2022-01-13', 7744, 48697, 3434, NULL, '1.0000', '1.9000', '1.9000', '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 (51149, '2022-01-13', 7385, 48698, 3434, 42798, '2.0000', '-18.4000', '-18.4000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51150, '2022-01-13', 7802, 48699, 3434, 46285, '1.0000', '0.9200', '0.9200', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51151, '2022-01-13', 2169, 48700, 3434, NULL, '1.0000', '1.0284', '1.0284', '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 (51152, '2022-01-13', 8638, 48701, 3434, NULL, '1.0000', '0.5100', '0.5100', '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 (51153, '2022-01-13', 3058, 48702, 3434, NULL, '1.0000', '2.3000', '2.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 (51154, '2022-01-13', 2169, 48703, 3434, NULL, '1.0000', '1.0284', '1.0284', '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 (51155, '2022-01-13', 8677, 48704, 3434, NULL, '3.0000', '127.5532', '127.5532', '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 (51156, '2022-01-13', 8622, 48705, 3434, 42570, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51157, '2022-01-13', 1841, 48706, 3434, 34025, '4.0000', '0.2601', '0.2601', '0.5000', '0.5000', '11.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51158, '2022-01-13', 7506, 48707, 3434, NULL, '1.0000', '15.0000', '15.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 (51159, '2022-01-13', 1533, 48708, 3434, 41387, '1.0000', '2.5082', '2.5082', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51160, '2022-01-13', 2293, 48709, 3434, NULL, '3.0000', '2.7733', '2.7733', '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 (51161, '2022-01-13', 2405, 48710, 3435, 4452, '-16.0000', '1.2000', '1.2000', '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 (51162, '2022-01-13', 2405, 48710, 3435, NULL, '20.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (51163, '2022-01-13', 1519, 48711, 3435, 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 (51164, '2022-01-13', 2169, 48712, 3436, NULL, '2.0000', '1.0284', '1.0284', '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 (51165, '2022-01-13', 1572, 48713, 3436, NULL, '1.0000', '2.0000', '2.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 (51166, '2022-01-13', 1342, 48714, 3436, 43262, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51167, '2022-01-13', 2136, 48715, 3436, 31115, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51168, '2022-01-13', 2811, 48716, 3436, 42815, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51169, '2022-01-13', 7849, 48717, 3436, 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 (51170, '2022-01-13', 9557, 48718, 3436, 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 (51171, '2022-01-13', 2169, 48719, 3436, NULL, '1.0000', '1.0284', '1.0284', '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 (51172, '2022-01-13', 1386, 48720, 3436, 46352, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51173, '2022-01-13', 1342, 48721, 3436, 43262, '2.0000', '22.5105', '22.5105', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51174, '2022-01-13', 2136, 48722, 3436, 31115, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51175, '2022-01-13', 2256, 48723, 3436, NULL, '1.0000', '13.6860', '13.6860', '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 (51176, '2022-01-13', 1358, 48724, 3436, 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 (51177, '2022-01-13', 9740, 48725, 3436, 46291, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51178, '2022-01-13', 1912, 48726, 3436, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51179, '2022-01-13', 1884, 48727, 3436, NULL, '1.0000', '4.8050', '4.8050', '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 (51180, '2022-01-13', 2103, 48728, 3436, 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 (51181, '2022-01-13', 7589, 48729, 3436, NULL, '1.0000', '1.7700', '1.7700', '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 (51182, '2022-01-13', 2167, 48730, 3436, 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 (51183, '2022-01-13', 2088, 48731, 3436, NULL, '1.0000', '1.1450', '1.1450', '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 (51184, '2022-01-13', 2642, 48732, 3436, 22561, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '7.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 (51185, '2022-01-13', 1440, 48733, 3436, NULL, '2.0000', '10.0000', '10.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 (51186, '2022-01-13', 2263, 48734, 3436, 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 (51187, '2022-01-13', 7790, 48735, 3436, NULL, '4.0000', '17.0000', '17.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 (51188, '2022-01-13', 9728, 48736, 3436, 46287, '1.0000', '5.4000', '5.4000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51189, '2022-01-13', 1812, 48737, 3437, 46319, '1.0000', '7.9721', '7.9721', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51190, '2022-01-13', 2655, 48738, 3437, 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 (51191, '2022-01-13', 1908, 48739, 3437, NULL, '3.0000', '1.7500', '1.7500', '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 (51192, '2022-01-13', 2289, 48740, 3437, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '12.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51193, '2022-01-13', 2236, 48741, 3437, 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 (51194, '2022-01-13', 1772, 48742, 3437, 39905, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51195, '2022-01-13', 1310, 48743, 3437, NULL, '3.0000', '0.4288', '0.4288', '0.6000', '0.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 (51196, '2022-01-13', 8746, 48744, 3437, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51197, '2022-01-13', 1695, 48745, 3437, NULL, '1.0000', '22.6608', '22.6608', '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 (51198, '2022-01-13', 1863, 48746, 3437, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51199, '2022-01-13', 2289, 48747, 3437, 42836, '4.0000', '0.3186', '0.3186', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51200, '2022-01-13', 2293, 48748, 3437, NULL, '3.0000', '2.7733', '2.7733', '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 (51201, '2022-01-13', 1410, 48749, 3437, NULL, '1.0000', '2.1083', '2.1083', '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 (51202, '2022-01-13', 2655, 48750, 3437, 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 (51203, '2022-01-13', 2416, 48751, 3438, 44001, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51204, '2022-01-13', 2769, 48752, 3438, 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 (51205, '2022-01-13', 2384, 48753, 3438, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (51206, '2022-01-13', 1812, 48754, 3438, 46319, '1.0000', '7.9721', '7.9721', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51207, '2022-01-13', 1666, 48755, 3438, 41371, '1.0000', '2.7429', '2.7429', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51208, '2022-01-13', 1952, 48756, 3438, 34576, '1.0000', '37.2246', '37.2246', '49.0000', '49.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51209, '2022-01-13', 2169, 48757, 3438, NULL, '1.0000', '1.0284', '1.0284', '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 (51210, '2022-01-13', 2384, 48758, 3438, NULL, '7.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (51211, '2022-01-13', 1310, 48759, 3438, NULL, '5.0000', '0.4288', '0.4288', '0.6000', '0.6000', '-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 (51212, '2022-01-13', 1337, 48760, 3439, 45599, '1.0000', '1.0180', '1.0180', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51213, '2022-01-13', 7674, 48761, 3439, NULL, '2.0000', '-115.5436', '-115.5436', '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 (51214, '2022-01-13', 2612, 48762, 3439, 46872, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51215, '2022-01-13', 9750, 48763, 3439, 46406, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '48.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51216, '2022-01-13', 2315, 48764, 3439, NULL, '3.0000', '0.4740', '0.4740', '0.6000', '0.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 (51217, '2022-01-13', 7641, 48765, 3439, NULL, '2.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51218, '2022-01-13', 7482, 48766, 3439, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51219, '2022-01-13', 8924, 48767, 3439, NULL, '1.0000', '4.5000', '4.5000', '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 (51220, '2022-01-13', 8208, 48768, 3439, NULL, '4.0000', '33.0000', '33.0000', '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 (51221, '2022-01-13', 7412, 48769, 3439, NULL, '1.0000', '1.5200', '1.5200', '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 (51222, '2022-01-13', 7762, 48770, 3439, NULL, '1.0000', '-0.4000', '-0.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 (51223, '2022-01-13', 9090, 48771, 3439, 39421, '1.0000', '11.0000', '11.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51224, '2022-01-13', 7671, 48772, 3439, NULL, '2.0000', '47.1963', '47.1963', '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 (51225, '2022-01-13', 9445, 48773, 3439, 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 (51226, '2022-01-13', 9620, 48774, 3439, 43084, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51227, '2022-01-13', 8702, 48775, 3439, NULL, '2.0000', '3.6700', '3.6700', '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 (51228, '2022-01-13', 1854, 48776, 3439, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51229, '2022-01-13', 7482, 48777, 3439, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51230, '2022-01-13', 9534, 48778, 3439, 45799, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51231, '2022-01-13', 7708, 48779, 3439, NULL, '1.0000', '4.7325', '4.7325', '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 (51232, '2022-01-13', 7784, 48780, 3439, NULL, '1.0000', '4.2500', '4.2500', '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 (51233, '2022-01-13', 7643, 48781, 3439, NULL, '1.0000', '2.1100', '2.1100', '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 (51234, '2022-01-13', 7946, 48782, 3439, 44904, '1.0000', '4.6160', '4.6160', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51235, '2022-01-13', 7333, 48783, 3439, NULL, '1.0000', '13.5000', '13.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 (51236, '2022-01-13', 2529, 48784, 3439, 40405, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51237, '2022-01-13', 7514, 48785, 3439, NULL, '1.0000', '51.3956', '51.3956', '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 (51238, '2022-01-13', 8127, 48786, 3439, NULL, '1.0000', '24.5300', '24.5300', '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 (51239, '2022-01-13', 9758, 48787, 3439, 46411, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51240, '2022-01-13', 2295, 48788, 3439, 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 (51241, '2022-01-13', 7781, 48789, 3439, NULL, '3.0000', '4.2500', '4.2500', '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 (51242, '2022-01-13', 7518, 48790, 3439, NULL, '1.0000', '3007201.9315', '3007201.9315', '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 (51243, '2022-01-13', 9620, 48791, 3439, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51244, '2022-01-13', 2324, 48792, 3439, 44469, '1.0000', '12.0000', '12.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51245, '2022-01-13', 2414, 48793, 3439, NULL, '2.0000', '3.4000', '3.4000', '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 (51246, '2022-01-13', 7514, 48794, 3439, NULL, '1.0000', '51.3956', '51.3956', '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 (51247, '2022-01-13', 7472, 48795, 3439, NULL, '1.0000', '1.1694', '1.1694', '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 (51248, '2022-01-13', 9620, 48796, 3439, 43084, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51249, '2022-01-13', 7892, 48797, 3439, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51250, '2022-01-13', 7518, 48798, 3439, NULL, '1.0000', '3007201.9315', '3007201.9315', '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 (51251, '2022-01-13', 7959, 48799, 3439, NULL, '2.0000', '9.6000', '9.6000', '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 (51252, '2022-01-13', 2315, 48800, 3439, NULL, '1.0000', '0.4740', '0.4740', '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 (51253, '2022-01-13', 9734, 48801, 3439, 46385, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '140.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51254, '2022-01-13', 8766, 48802, 3439, NULL, '1.0000', '5.8000', '5.8000', '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 (51255, '2022-01-13', 1650, 48803, 3439, 46222, '1.0000', '14.8039', '14.8039', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51256, '2022-01-13', 2287, 48804, 3439, NULL, '4.0000', '2.3000', '2.3000', '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 (51257, '2022-01-13', 9273, 48805, 3439, NULL, '1.0000', '0.3500', '0.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 (51258, '2022-01-13', 7926, 48806, 3439, 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 (51259, '2022-01-13', 7317, 48807, 3439, 46664, '1.0000', '21.1436', '21.1436', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51260, '2022-01-13', 7674, 48808, 3439, NULL, '1.0000', '-115.5436', '-115.5436', '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 (51261, '2022-01-13', 2506, 48809, 3439, NULL, '1.0000', '3.8970', '3.8970', '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 (51262, '2022-01-13', 7749, 48810, 3439, 43076, '1.0000', '20.0200', '20.0200', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51263, '2022-01-13', 7411, 48811, 3439, NULL, '2.0000', '1.3600', '1.3600', '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 (51264, '2022-01-13', 1386, 48812, 3440, 46352, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51265, '2022-01-13', 1693, 48813, 3440, 45150, '1.0000', '7.9116', '7.9116', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51266, '2022-01-13', 9109, 48814, 3440, 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 (51267, '2022-01-13', 8638, 48815, 3440, NULL, '1.0000', '0.5100', '0.5100', '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 (51268, '2022-01-13', 7626, 48816, 3440, NULL, '1.0000', '7.6000', '7.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 (51269, '2022-01-13', 7560, 48817, 3440, NULL, '1.0000', '90.1600', '90.1600', '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 (51270, '2022-01-13', 9751, 48818, 3440, 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 (51271, '2022-01-13', 7723, 48819, 3440, 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 (51272, '2022-01-13', 3058, 48820, 3440, NULL, '1.0000', '2.3000', '2.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 (51273, '2022-01-13', 7790, 48821, 3440, NULL, '1.0000', '17.0000', '17.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 (51274, '2022-01-13', 2286, 48822, 3440, NULL, '2.0000', '4.3000', '4.3000', '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 (51275, '2022-01-13', 9105, 48823, 3440, NULL, '1.0000', '0.5800', '0.5800', '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 (51276, '2022-01-13', 1310, 48824, 3440, NULL, '2.0000', '0.4288', '0.4288', '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 (51277, '2022-01-13', 1863, 48825, 3440, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51278, '2022-01-13', 2280, 48826, 3441, NULL, '1.0000', '-177.9360', '-177.9360', '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 (51279, '2022-01-13', 8638, 48827, 3441, NULL, '2.0000', '0.5100', '0.5100', '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 (51280, '2022-01-13', 1425, 48828, 3442, NULL, '1.0000', '6.3962', '6.3962', '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 (51281, '2022-01-13', 1395, 48829, 3442, 37958, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51282, '2022-01-13', 7485, 48830, 3443, NULL, '1.0000', '19.3500', '19.3500', '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 (51283, '2022-01-13', 1863, 48831, 3443, 43283, '2.0000', '1.3603', '1.3603', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51284, '2022-01-13', 7886, 48832, 3444, NULL, '1.0000', '-8.1003', '-8.1003', '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 (51285, '2022-01-13', 7967, 48833, 3444, NULL, '1.0000', '5.2452', '5.2452', '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 (51286, '2022-01-13', 9092, 48834, 3444, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '128.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51287, '2022-01-13', 7674, 48835, 3444, NULL, '4.0000', '-118.4647', '-118.4647', '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 (51288, '2022-01-13', 8596, 48836, 3444, NULL, '2.0000', '17.0000', '17.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 (51289, '2022-01-13', 7524, 48837, 3444, 46661, '2.0000', '6.3550', '6.3550', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51290, '2022-01-13', 8254, 48838, 3444, NULL, '1.0000', '27.2800', '27.2800', '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 (51291, '2022-01-13', 8740, 48839, 3444, NULL, '1.0000', '2.0000', '2.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 (51292, '2022-01-13', 2895, 48840, 3444, NULL, '1.0000', '11.6000', '11.6000', '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 (51293, '2022-01-13', 7411, 48841, 3444, NULL, '1.0000', '1.3600', '1.3600', '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 (51294, '2022-01-13', 7877, 48842, 3444, NULL, '1.0000', '3.3867', '3.3867', '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 (51295, '2022-01-13', 9311, 48843, 3445, 44147, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51296, '2022-01-13', 2941, 48844, 3445, NULL, '1.0000', '2.6600', '2.6600', '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 (51297, '2022-01-13', 2777, 48845, 3445, 39893, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51298, '2022-01-13', 1837, 48846, 3445, 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 (51299, '2022-01-13', 2451, 48847, 3446, 44690, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51300, '2022-01-13', 2455, 48848, 3446, 13628, '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 (51301, '2022-01-13', 1602, 48849, 3446, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51302, '2022-01-13', 1812, 48850, 3446, 46737, '1.0000', '7.9697', '7.9697', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51303, '2022-01-13', 1432, 48851, 3446, 46022, '1.0000', '9.2136', '9.2136', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51304, '2022-01-13', 1504, 48852, 3446, 46596, '10.0000', '3.0211', '3.0211', '2.2000', '2.2000', '137.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51305, '2022-01-13', 9089, 48853, 3446, 44032, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51306, '2022-01-13', 2169, 48854, 3446, 46750, '1.0000', '1.1430', '1.1430', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51307, '2022-01-13', 7672, 48855, 3446, NULL, '1.0000', '1.0200', '1.0200', '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 (51308, '2022-01-13', 1991, 48856, 3446, 46958, '1.0000', '4.2735', '4.2735', '7.9200', '7.9200', '0.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51309, '2022-01-13', 9117, 48857, 3446, NULL, '1.0000', '38.5700', '38.5700', '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 (51310, '2022-01-13', 1943, 48858, 3446, 44585, '1.0000', '4.6310', '4.6310', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51311, '2022-01-13', 1407, 48859, 3446, 44545, '1.0000', '17.1011', '17.1011', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51312, '2022-01-13', 1406, 48860, 3446, 41975, '1.0000', '16.8273', '16.8273', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51313, '2022-01-13', 9551, 48861, 3446, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '14.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51314, '2022-01-13', 2528, 48862, 3446, 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 (51315, '2022-01-13', 2260, 48863, 3446, 46704, '2.0000', '4.2164', '4.2164', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51316, '2022-01-13', 2237, 48864, 3446, 46708, '1.0000', '1.4654', '1.4654', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51317, '2022-01-13', 1828, 48865, 3446, 46955, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51318, '2022-01-13', 1828, 48865, 3446, 33003, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51319, '2022-01-13', 8984, 48866, 3446, NULL, '1.0000', '304.7000', '304.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 (51320, '2022-01-13', 1519, 48867, 3446, 46751, '1.0000', '3.3898', '3.3898', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51321, '2022-01-13', 8132, 48868, 3446, NULL, '1.0000', '4.7200', '4.7200', '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 (51322, '2022-01-13', 2169, 48869, 3446, 46750, '2.0000', '1.1430', '1.1430', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51323, '2022-01-13', 7756, 48870, 3446, NULL, '1.0000', '23.9111', '23.9111', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51324, '2022-01-13', 1602, 48871, 3446, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51325, '2022-01-13', 1328, 48872, 3446, 3366, '2.0000', '3.1500', '3.1500', '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 (51326, '2022-01-13', 1871, 48873, 3446, 44584, '2.0000', '12.3809', '12.3809', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51327, '2022-01-13', 1871, 48873, 3446, 44644, '8.0000', '12.3809', '12.3809', '3.0000', '3.0000', '92.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51328, '2022-01-13', 1310, 48874, 3446, 46075, '4.0000', '0.4041', '0.4041', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51329, '2022-01-13', 1504, 48875, 3446, 46596, '20.0000', '3.0211', '3.0211', '2.2000', '2.2000', '127.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51330, '2022-01-13', 1812, 48876, 3446, 46737, '1.0000', '7.9697', '7.9697', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51331, '2022-01-13', 7915, 48877, 3446, 46622, '2.0000', '2.8000', '2.8000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51332, '2022-01-13', 2169, 48878, 3446, 46750, '1.0000', '1.1430', '1.1430', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51333, '2022-01-13', 1628, 48879, 3446, 33020, '1.0000', '6.1025', '6.1025', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51334, '2022-01-13', 2541, 48880, 3446, 37583, '2.0000', '10.0414', '10.0414', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51335, '2022-01-13', 1477, 48881, 3446, 43050, '1.0000', '39.1625', '39.1625', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51336, '2022-01-13', 1478, 48882, 3446, 1490, '2.0000', '128.8409', '128.8409', '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 (51337, '2022-01-13', 7451, 48883, 3446, NULL, '1.0000', '9.8000', '9.8000', '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 (51338, '2022-01-13', 7339, 48884, 3446, 46753, '20.0000', '-11.4250', '-11.4250', '0.9000', '0.9000', '60.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51339, '2022-01-13', 1763, 48885, 3446, 45123, '1.0000', '4.7323', '4.7323', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51340, '2022-01-13', 8763, 48886, 3446, NULL, '1.0000', '5.4000', '5.4000', '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 (51341, '2022-01-13', 1602, 48887, 3446, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51342, '2022-01-13', 2858, 48888, 3446, 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 (51343, '2022-01-13', 1863, 48889, 3446, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '107.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51344, '2022-01-13', 2858, 48890, 3446, 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 (51345, '2022-01-13', 1452, 48891, 3446, 5632, '1.0000', '1.2300', '1.2300', '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 (51346, '2022-01-13', 7743, 48892, 3446, NULL, '3.0000', '1.3100', '1.3100', '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 (51347, '2022-01-13', 2286, 48893, 3446, 44626, '1.0000', '4.3486', '4.3486', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51348, '2022-01-13', 1574, 48894, 3446, 45115, '2.0000', '39.2960', '39.2960', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51349, '2022-01-13', 2286, 48895, 3446, 44626, '3.0000', '4.3486', '4.3486', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51350, '2022-01-14', 1533, 48896, 3447, 47152, '1.0000', '3.4772', '3.4772', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51351, '2022-01-14', 2297, 48897, 3447, 45088, '1.0000', '7.8250', '7.8250', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51352, '2022-01-14', 9747, 48898, 3447, 46049, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51353, '2022-01-14', 1863, 48899, 3447, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '105.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51354, '2022-01-14', 7915, 48900, 3447, 46622, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51355, '2022-01-14', 1884, 48901, 3447, 40864, '1.0000', '5.4596', '5.4596', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51356, '2022-01-14', 2415, 48902, 3447, 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 (51357, '2022-01-14', 8744, 48903, 3447, 44036, '1.0000', '3.5421', '3.5421', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51358, '2022-01-14', 2305, 48904, 3447, 3138, '1.0000', '1.3300', '1.3300', '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 (51359, '2022-01-14', 1748, 48905, 3447, 1527, '2.0000', '0.3200', '0.3200', '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 (51360, '2022-01-14', 2109, 48906, 3447, 40229, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51361, '2022-01-14', 7531, 48907, 3447, NULL, '2.0000', '3.1900', '3.1900', '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 (51362, '2022-01-14', 7444, 48908, 3448, 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 (51363, '2022-01-14', 1863, 48909, 3448, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '103.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51364, '2022-01-14', 9747, 48910, 3448, 46049, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51365, '2022-01-14', 2380, 48911, 3449, 46588, '1.0000', '35.2600', '35.2600', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51366, '2022-01-14', 9095, 48912, 3449, 46953, '1.0000', '8.7600', '8.7600', '12.0000', '12.0000', '11.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51367, '2022-01-14', 2352, 48913, 3449, 44595, '10.0000', '233.6176', '233.6176', '3.5000', '3.5000', '76.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51368, '2022-01-14', 1959, 48914, 3449, 6807, '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 (51369, '2022-01-14', 1959, 48914, 3449, 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 (51370, '2022-01-14', 7709, 48915, 3450, NULL, '2.0000', '39.7124', '39.7124', '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 (51371, '2022-01-14', 7641, 48916, 3450, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51372, '2022-01-14', 8063, 48917, 3450, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '98.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51373, '2022-01-14', 7719, 48918, 3450, NULL, '2.0000', '6.0000', '6.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 (51374, '2022-01-14', 7490, 48919, 3450, 44941, '10.0000', '-4.4639', '-4.4639', '0.4000', '0.4000', '55.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51375, '2022-01-14', 9275, 48920, 3450, NULL, '2.0000', '6.3000', '6.3000', '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 (51376, '2022-01-14', 7663, 48921, 3450, 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 (51377, '2022-01-14', 7547, 48922, 3450, NULL, '2.0000', '0.0000', '0.0000', '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 (51378, '2022-01-14', 7570, 48923, 3450, NULL, '1.0000', '10.0000', '10.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 (51379, '2022-01-14', 7557, 48924, 3450, NULL, '10.0000', '0.5000', '0.5000', '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 (51380, '2022-01-14', 7428, 48925, 3450, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '57.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51381, '2022-01-14', 7609, 48926, 3450, NULL, '1.0000', '4.3713', '4.3713', '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 (51382, '2022-01-14', 8637, 48927, 3450, NULL, '4.0000', '40.3000', '40.3000', '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 (51383, '2022-01-14', 7743, 48928, 3450, NULL, '1.0000', '419203.7668', '419203.7668', '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 (51384, '2022-01-14', 9409, 48929, 3450, 46960, '1.0000', '5.6784', '5.6784', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 344);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51385, '2022-01-14', 2655, 48930, 3450, 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 (51386, '2022-01-14', 9734, 48931, 3450, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '138.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51387, '2022-01-14', 7385, 48932, 3450, 45811, '3.0000', '-29.7430', '-29.7430', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51388, '2022-01-14', 7672, 48933, 3450, NULL, '2.0000', '1.0200', '1.0200', '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 (51389, '2022-01-14', 7709, 48934, 3450, NULL, '2.0000', '39.7124', '39.7124', '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 (51390, '2022-01-14', 9106, 48935, 3450, NULL, '1.0000', '5.3500', '5.3500', '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 (51391, '2022-01-14', 2315, 48936, 3450, NULL, '2.0000', '0.4743', '0.4743', '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 (51392, '2022-01-14', 7530, 48937, 3450, NULL, '1.0000', '5.9000', '5.9000', '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 (51393, '2022-01-14', 2287, 48938, 3450, NULL, '4.0000', '2.3000', '2.3000', '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 (51394, '2022-01-14', 9337, 48939, 3450, 44951, '5.0000', '-1.0224', '-1.0224', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51395, '2022-01-14', 8608, 48940, 3450, NULL, '1.0000', '5.7400', '5.7400', '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 (51396, '2022-01-14', 7859, 48941, 3450, 45844, '1.0000', '12.9400', '12.9400', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51397, '2022-01-14', 9154, 48942, 3450, NULL, '1.0000', '10.6800', '10.6800', '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 (51398, '2022-01-14', 1810, 48943, 3450, NULL, '1.0000', '5.4135', '5.4135', '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 (51399, '2022-01-14', 8672, 48944, 3450, 44842, '3.0000', '-3.9944', '-3.9944', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51400, '2022-01-14', 7530, 48945, 3450, NULL, '2.0000', '5.9000', '5.9000', '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 (51401, '2022-01-14', 7954, 48946, 3450, NULL, '4.0000', '24.4161', '24.4161', '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 (51402, '2022-01-14', 9409, 48947, 3450, 46960, '1.0000', '5.6784', '5.6784', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 344);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51403, '2022-01-14', 7657, 48948, 3450, NULL, '1.0000', '-20.7289', '-20.7289', '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 (51404, '2022-01-14', 7848, 48949, 3450, NULL, '1.0000', '-5.0424', '-5.0424', '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 (51405, '2022-01-14', 8040, 48950, 3450, 46216, '1.0000', '10.6400', '10.6400', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51406, '2022-01-14', 7704, 48951, 3450, NULL, '2.0000', '-1.5625', '-1.5625', '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 (51407, '2022-01-14', 8466, 48952, 3450, NULL, '5.0000', '-24.7500', '-24.7500', '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 (51408, '2022-01-14', 7632, 48953, 3450, 45788, '1.0000', '10.5363', '10.5363', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51409, '2022-01-14', 8104, 48954, 3450, NULL, '10.0000', '1.6000', '1.6000', '2.2000', '2.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 (51410, '2022-01-14', 7611, 48955, 3450, 44902, '1.0000', '3.4273', '3.4273', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51411, '2022-01-14', 7473, 48956, 3450, NULL, '5.0000', '104.1526', '104.1526', '0.6000', '0.6000', '-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 (51412, '2022-01-14', 8849, 48957, 3450, 45802, '1.0000', '1.0700', '1.0700', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51413, '2022-01-14', 8198, 48958, 3450, NULL, '1.0000', '-205.2807', '-205.2807', '85.0000', '85.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51414, '2022-01-14', 7643, 48959, 3450, NULL, '1.0000', '2.1100', '2.1100', '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 (51415, '2022-01-14', 8497, 48960, 3450, NULL, '1.0000', '567.7431', '567.7431', '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 (51416, '2022-01-14', 8596, 48961, 3450, NULL, '1.0000', '17.0000', '17.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 (51417, '2022-01-14', 8243, 48962, 3450, NULL, '2.0000', '1.1400', '1.1400', '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 (51418, '2022-01-14', 7396, 48963, 3450, 30023, '1.0000', '6.0000', '6.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51419, '2022-01-14', 7857, 48964, 3450, NULL, '1.0000', '14.5620', '14.5620', '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 (51420, '2022-01-14', 2284, 48965, 3450, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51421, '2022-01-14', 7459, 48966, 3450, NULL, '20.0000', '467.7123', '467.7123', '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 (51422, '2022-01-14', 7518, 48967, 3450, NULL, '1.0000', '3007201.9315', '3007201.9315', '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 (51423, '2022-01-14', 8206, 48968, 3450, NULL, '1.0000', '0.2000', '0.2000', '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 (51424, '2022-01-14', 9715, 48969, 3450, 45593, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51425, '2022-01-14', 7514, 48970, 3450, NULL, '1.0000', '51.3956', '51.3956', '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 (51426, '2022-01-14', 7432, 48971, 3450, 46158, '1.0000', '3.2300', '3.2300', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51427, '2022-01-14', 9748, 48972, 3450, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51428, '2022-01-14', 2068, 48973, 3451, NULL, '1.0000', '11.9176', '11.9176', '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 (51429, '2022-01-14', 8328, 48974, 3451, NULL, '1.0000', '8.1000', '8.1000', '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 (51430, '2022-01-14', 2681, 48975, 3451, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '9.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51431, '2022-01-14', 7411, 48976, 3451, NULL, '1.0000', '1.3466', '1.3466', '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 (51432, '2022-01-14', 2015, 48977, 3451, 42644, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51433, '2022-01-14', 7472, 48978, 3451, NULL, '1.0000', '4.2055', '4.2055', '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 (51434, '2022-01-14', 2414, 48979, 3451, NULL, '2.0000', '3.4000', '3.4000', '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 (51435, '2022-01-14', 2547, 48980, 3451, NULL, '1.0000', '8.6575', '8.6575', '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 (51436, '2022-01-14', 1871, 48981, 3451, NULL, '10.0000', '2.9308', '2.9308', '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 (51437, '2022-01-14', 1816, 48982, 3451, NULL, '1.0000', '19.7500', '19.7500', '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 (51438, '2022-01-14', 1695, 48983, 3451, NULL, '1.0000', '22.6608', '22.6608', '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 (51439, '2022-01-14', 2237, 48984, 3451, NULL, '1.0000', '-329.8285', '-329.8285', '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 (51440, '2022-01-14', 1499, 48985, 3451, NULL, '1.0000', '0.6447', '0.6447', '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 (51441, '2022-01-14', 1557, 48986, 3451, NULL, '1.0000', '5.9489', '5.9489', '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 (51442, '2022-01-14', 1809, 48987, 3451, NULL, '1.0000', '9.5248', '9.5248', '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 (51443, '2022-01-14', 2169, 48988, 3451, NULL, '1.0000', '0.3873', '0.3873', '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 (51444, '2022-01-14', 2612, 48989, 3451, 39897, '1.0000', '7.1600', '7.1600', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51445, '2022-01-14', 2167, 48990, 3451, 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 (51446, '2022-01-14', 2245, 48991, 3451, 23178, '4.0000', '0.7000', '0.7000', '1.0000', '1.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 (51447, '2022-01-14', 1837, 48992, 3451, 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 (51448, '2022-01-14', 1425, 48993, 3451, NULL, '1.0000', '6.3744', '6.3744', '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 (51449, '2022-01-14', 2237, 48994, 3451, NULL, '1.0000', '-329.8285', '-329.8285', '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 (51450, '2022-01-14', 8984, 48995, 3451, NULL, '1.0000', '-100.8495', '-100.8495', '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 (51451, '2022-01-14', 1807, 48996, 3451, NULL, '6.0000', '41.5000', '41.5000', '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 (51452, '2022-01-14', 3069, 48997, 3451, 25154, '1.0000', '5.0000', '5.0000', '6.0000', '6.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 (51453, '2022-01-14', 7333, 48998, 3452, NULL, '1.0000', '13.5000', '13.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 (51454, '2022-01-14', 7743, 48999, 3452, NULL, '1.0000', '7.3900', '7.3900', '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 (51455, '2022-01-14', 7564, 49000, 3452, NULL, '1.0000', '0.6400', '0.6400', '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 (51456, '2022-01-14', 1966, 49001, 3452, 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 (51457, '2022-01-14', 2655, 49002, 3452, 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 (51458, '2022-01-14', 1818, 49003, 3452, NULL, '1.0000', '18.8200', '18.8200', '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 (51459, '2022-01-14', 1888, 49004, 3453, 45156, '1.0000', '16.3778', '16.3778', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51460, '2022-01-14', 1668, 49005, 3453, 42095, '1.0000', '44.2080', '44.2080', '18.0000', '18.0000', '21.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51461, '2022-01-14', 2315, 49006, 3453, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '77.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51462, '2022-01-14', 7384, 49007, 3453, NULL, '1.0000', '8.2000', '8.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 (51463, '2022-01-14', 1670, 49008, 3453, NULL, '1.0000', '19.5000', '19.5000', '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 (51464, '2022-01-14', 2169, 49009, 3453, NULL, '1.0000', '0.3873', '0.3873', '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 (51465, '2022-01-14', 7564, 49010, 3453, NULL, '1.0000', '0.6400', '0.6400', '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 (51466, '2022-01-14', 1337, 49011, 3453, NULL, '1.0000', '2.0000', '2.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 (51467, '2022-01-14', 2101, 49012, 3453, 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 (51468, '2022-01-14', 1339, 49013, 3453, NULL, '1.0000', '2.0000', '2.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 (51469, '2022-01-14', 2327, 49014, 3454, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51470, '2022-01-14', 2135, 49015, 3454, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51471, '2022-01-14', 2344, 49016, 3454, 43045, '1.0000', '20.1294', '20.1294', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51472, '2022-01-14', 2248, 49017, 3454, 46762, '1.0000', '1.1723', '1.1723', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51473, '2022-01-14', 1863, 49018, 3455, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '102.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51474, '2022-01-14', 2302, 49019, 3455, 46725, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51475, '2022-01-14', 7886, 49020, 3455, 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 (51476, '2022-01-14', 2254, 49021, 3455, 46749, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51477, '2022-01-14', 1863, 49022, 3455, 45136, '4.0000', '1.2570', '1.2570', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51478, '2022-01-14', 1935, 49023, 3455, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51479, '2022-01-14', 2821, 49024, 3455, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51480, '2022-01-14', 2085, 49025, 3455, 43554, '3.0000', '15.6202', '15.6202', '1.9000', '1.9000', '37.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51481, '2022-01-14', 1665, 49026, 3455, 46079, '1.0000', '1.2330', '1.2330', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51482, '2022-01-14', 2699, 49027, 3455, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51483, '2022-01-14', 2237, 49028, 3455, 46708, '1.0000', '1.4654', '1.4654', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51484, '2022-01-14', 1518, 49029, 3455, 44582, '1.0000', '40.6829', '40.6829', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51485, '2022-01-14', 1863, 49030, 3456, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '97.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51486, '2022-01-14', 2302, 49031, 3456, 46725, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51487, '2022-01-14', 7886, 49032, 3456, 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 (51488, '2022-01-14', 2254, 49033, 3456, 46749, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51489, '2022-01-14', 1863, 49034, 3456, 45136, '4.0000', '1.2570', '1.2570', '2.0000', '2.0000', '94.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51490, '2022-01-14', 1935, 49035, 3456, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51491, '2022-01-14', 2821, 49036, 3456, 40892, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51492, '2022-01-14', 2085, 49037, 3456, 43554, '3.0000', '15.6202', '15.6202', '1.9000', '1.9000', '34.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51493, '2022-01-14', 1665, 49038, 3456, 46079, '1.0000', '1.2330', '1.2330', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51494, '2022-01-14', 2699, 49039, 3456, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51495, '2022-01-14', 2237, 49040, 3456, 46708, '1.0000', '1.4654', '1.4654', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51496, '2022-01-14', 1518, 49041, 3456, 44582, '1.0000', '40.6829', '40.6829', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51497, '2022-01-14', 9271, 49042, 3457, NULL, '1.0000', '0.9900', '0.9900', '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 (51498, '2022-01-14', 9743, 49043, 3457, 47094, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51499, '2022-01-14', 9750, 49044, 3457, NULL, '1.0000', '3.3000', '3.3000', '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 (51500, '2022-01-14', 1620, 49045, 3457, 42842, '2.0000', '2.2300', '2.2300', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51501, '2022-01-14', 7743, 49046, 3457, NULL, '2.0000', '7.3900', '7.3900', '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 (51502, '2022-01-14', 7317, 49047, 3458, 46664, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51503, '2022-01-14', 7641, 49048, 3458, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51504, '2022-01-14', 7822, 49049, 3458, NULL, '1.0000', '8.0333', '8.0333', '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 (51505, '2022-01-14', 7640, 49050, 3458, 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 (51506, '2022-01-14', 7672, 49051, 3458, NULL, '1.0000', '1.0200', '1.0200', '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 (51507, '2022-01-14', 7514, 49052, 3458, NULL, '1.0000', '51.3956', '51.3956', '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 (51508, '2022-01-14', 8184, 49053, 3458, NULL, '6.0000', '-0.2804', '-0.2804', '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 (51509, '2022-01-14', 7872, 49054, 3458, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (51510, '2022-01-14', 7774, 49055, 3458, NULL, '1.0000', '1.4724', '1.4724', '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 (51511, '2022-01-14', 1542, 49056, 3458, NULL, '1.0000', '115.7329', '115.7329', '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 (51512, '2022-01-14', 7612, 49057, 3458, NULL, '1.0000', '1.1770', '1.1770', '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 (51513, '2022-01-14', 8359, 49058, 3458, NULL, '1.0000', '192.7830', '192.7830', '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 (51514, '2022-01-14', 2699, 49059, 3458, 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 (51515, '2022-01-14', 1590, 49060, 3458, 46857, '1.0000', '1.7112', '1.7112', '2.3000', '2.3000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51516, '2022-01-14', 7544, 49061, 3458, NULL, '1.0000', '9.4300', '9.4300', '0.4000', '0.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 (51517, '2022-01-14', 1841, 49062, 3458, 33726, '1.0000', '-0.0355', '-0.0355', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51518, '2022-01-14', 7411, 49063, 3458, NULL, '3.0000', '1.3600', '1.3600', '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 (51519, '2022-01-14', 9329, 49064, 3458, NULL, '3.0000', '13.9601', '13.9601', '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 (51520, '2022-01-14', 2506, 49065, 3458, NULL, '3.0000', '3.8970', '3.8970', '5.5000', '5.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 (51521, '2022-01-14', 9556, 49066, 3458, NULL, '2.0000', '1.6969', '1.6969', '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 (51522, '2022-01-14', 7675, 49067, 3458, NULL, '1.0000', '17.2368', '17.2368', '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 (51523, '2022-01-14', 1837, 49068, 3458, 46669, '1.0000', '0.4201', '0.4201', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51524, '2022-01-14', 7473, 49069, 3458, NULL, '2.0000', '104.1526', '104.1526', '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 (51525, '2022-01-14', 7857, 49070, 3458, NULL, '1.0000', '14.5620', '14.5620', '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 (51526, '2022-01-14', 7744, 49071, 3458, NULL, '3.0000', '2.7400', '2.7400', '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 (51527, '2022-01-14', 7333, 49072, 3458, NULL, '1.0000', '13.5000', '13.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 (51528, '2022-01-14', 7674, 49073, 3458, NULL, '1.0000', '-118.4647', '-118.4647', '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 (51529, '2022-01-14', 7729, 49074, 3458, NULL, '1.0000', '13.0000', '13.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 (51530, '2022-01-14', 7671, 49075, 3458, NULL, '2.0000', '47.1963', '47.1963', '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 (51531, '2022-01-14', 7518, 49076, 3458, NULL, '1.0000', '3007201.9315', '3007201.9315', '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 (51532, '2022-01-14', 7704, 49077, 3458, NULL, '1.0000', '-1.5625', '-1.5625', '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 (51533, '2022-01-14', 2386, 49078, 3458, 45783, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51534, '2022-01-14', 8154, 49079, 3458, NULL, '1.0000', '12.3000', '12.3000', '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 (51535, '2022-01-14', 7674, 49080, 3458, NULL, '1.0000', '-118.4647', '-118.4647', '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 (51536, '2022-01-14', 8737, 49081, 3459, NULL, '1.0000', '9.8000', '9.8000', '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 (51537, '2022-01-14', 9476, 49082, 3459, 42213, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51538, '2022-01-14', 2105, 49083, 3459, 2511, '1.0000', '1.3500', '1.3500', '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 (51539, '2022-01-14', 1670, 49084, 3459, 44569, '1.0000', '106.3579', '106.3579', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51540, '2022-01-14', 7744, 49085, 3459, NULL, '1.0000', '2.9400', '2.9400', '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 (51541, '2022-01-14', 2248, 49086, 3459, 46762, '1.0000', '1.1723', '1.1723', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51542, '2022-01-14', 1569, 49087, 3459, 45116, '1.0000', '14.2800', '14.2800', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51543, '2022-01-14', 1521, 49088, 3459, 40904, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51544, '2022-01-14', 7961, 49089, 3459, NULL, '2.0000', '10.5600', '10.5600', '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 (51545, '2022-01-14', 1904, 49090, 3459, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51546, '2022-01-14', 1665, 49091, 3459, 46079, '1.0000', '1.2330', '1.2330', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51547, '2022-01-14', 2462, 49092, 3459, 4839, '1.0000', '72.3166', '72.3166', '63.0000', '63.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51548, '2022-01-14', 2847, 49093, 3459, 45131, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51549, '2022-01-14', 2440, 49094, 3459, 21806, '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 (51550, '2022-01-14', 2036, 49095, 3459, 4401, '1.0000', '8.0000', '8.0000', '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 (51551, '2022-01-14', 1386, 49096, 3459, 46705, '1.0000', '422.4909', '422.4909', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51552, '2022-01-14', 1502, 49097, 3459, 46563, '1.0000', '-13.4526', '-13.4526', '11.0000', '11.0000', '17.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51553, '2022-01-14', 1338, 49098, 3459, 44610, '2.0000', '-0.9768', '-0.9768', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51554, '2022-01-14', 9734, 49099, 3459, 46028, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51555, '2022-01-15', 1384, 49100, 3460, 47087, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51556, '2022-01-15', 2315, 49101, 3460, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '76.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51557, '2022-01-15', 8771, 49102, 3460, 45275, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51558, '2022-01-15', 2416, 49103, 3460, 44001, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51559, '2022-01-15', 2352, 49104, 3460, NULL, '4.0000', '59.2000', '59.2000', '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 (51560, '2022-01-15', 1856, 49105, 3460, NULL, '1.0000', '3.9349', '3.9349', '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 (51561, '2022-01-15', 9214, 49106, 3460, 45278, '1.0000', '9.8180', '9.8180', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51562, '2022-01-15', 2167, 49107, 3460, 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 (51563, '2022-01-15', 1863, 49108, 3460, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51564, '2022-01-15', 2916, 49109, 3460, NULL, '1.0000', '14.8227', '14.8227', '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 (51565, '2022-01-15', 2660, 49110, 3460, 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 (51566, '2022-01-15', 8608, 49111, 3460, NULL, '1.0000', '0.9000', '0.9000', '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 (51567, '2022-01-15', 1450, 49112, 3460, 43237, '3.0000', '0.8900', '0.8900', '1.2000', '1.2000', '8.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51568, '2022-01-15', 1912, 49113, 3460, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51569, '2022-01-15', 7531, 49114, 3460, 39811, '1.0000', '2.7209', '2.7209', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51570, '2022-01-15', 1314, 49115, 3460, 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 (51571, '2022-01-15', 1564, 49116, 3460, 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 (51572, '2022-01-15', 2352, 49117, 3460, NULL, '2.0000', '59.2000', '59.2000', '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 (51573, '2022-01-15', 1412, 49118, 3461, 24977, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '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 (51574, '2022-01-15', 3048, 49119, 3462, NULL, '1.0000', '46.0000', '46.0000', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51575, '2022-01-15', 3048, 49120, 3463, NULL, '1.0000', '46.0000', '46.0000', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51576, '2022-01-15', 1493, 49121, 3464, 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 (51577, '2022-01-15', 2029, 49122, 3465, NULL, '1.0000', '13.0000', '13.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 (51578, '2022-01-15', 2545, 49123, 3465, 6306, '-5.0000', '5.8819', '5.8819', '9.5000', '9.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 (51579, '2022-01-15', 2545, 49123, 3465, NULL, '6.0000', '5.8819', '5.8819', '9.5000', '9.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 (51580, '2022-01-15', 2910, 49124, 3465, 18716, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 167);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51581, '2022-01-15', 7411, 49125, 3465, NULL, '1.0000', '1.3500', '1.3500', '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 (51582, '2022-01-15', 2280, 49126, 3465, 33794, '1.0000', '3.0700', '3.0700', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51583, '2022-01-15', 1651, 49127, 3465, 3222, '-41.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 (51584, '2022-01-15', 1651, 49127, 3465, NULL, '42.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51585, '2022-01-15', 2095, 49128, 3465, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '51.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 (51586, '2022-01-15', 2109, 49129, 3465, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '86.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 (51587, '2022-01-15', 2556, 49130, 3465, 7196, '-29.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 (51588, '2022-01-15', 2556, 49130, 3465, NULL, '30.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-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 (51589, '2022-01-15', 9648, 49131, 3465, 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 (51590, '2022-01-15', 2285, 49132, 3465, 2945, '-35.0000', '35.8000', '35.8000', '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 (51591, '2022-01-15', 2285, 49132, 3465, NULL, '37.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51592, '2022-01-15', 1524, 49133, 3465, 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 (51593, '2022-01-15', 9409, 49134, 3465, NULL, '1.0000', '5.7000', '5.7000', '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 (51594, '2022-01-15', 2699, 49135, 3465, 12529, '-27.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 (51595, '2022-01-15', 2699, 49135, 3465, NULL, '28.0000', '3.0000', '3.0000', '4.5000', '4.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 (51596, '2022-01-15', 8746, 49136, 3465, NULL, '1.0000', '3.1500', '3.1500', '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 (51597, '2022-01-15', 1665, 49137, 3465, 3235, '-55.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 (51598, '2022-01-15', 1665, 49137, 3465, NULL, '57.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51599, '2022-01-15', 1837, 49138, 3465, NULL, '10.0000', '0.9642', '0.9642', '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 (51600, '2022-01-15', 1435, 49139, 3465, NULL, '1.0000', '22.5000', '22.5000', '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 (51601, '2022-01-15', 1695, 49140, 3465, 12925, '-6.0000', '15.5000', '15.5000', '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 (51602, '2022-01-15', 1695, 49140, 3465, NULL, '7.0000', '15.5000', '15.5000', '22.0000', '22.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 (51603, '2022-01-15', 2574, 49141, 3465, 7383, '-17.0000', '0.7800', '0.7800', '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 (51604, '2022-01-15', 2574, 49141, 3465, NULL, '37.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51605, '2022-01-15', 2858, 49142, 3466, 17772, '-36.0000', '1.0000', '1.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 (51606, '2022-01-15', 2858, 49142, 3466, NULL, '37.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51607, '2022-01-15', 2303, 49143, 3467, NULL, '2.0000', '16.1000', '16.1000', '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 (51608, '2022-01-15', 1856, 49144, 3467, NULL, '1.0000', '3.9349', '3.9349', '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 (51609, '2022-01-15', 2241, 49145, 3467, 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 (51610, '2022-01-15', 8736, 49146, 3467, NULL, '2.0000', '3.4000', '3.4000', '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 (51611, '2022-01-15', 1602, 49147, 3467, NULL, '1.0000', '7.0303', '7.0303', '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 (51612, '2022-01-15', 9021, 49148, 3467, 39827, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51613, '2022-01-15', 2255, 49149, 3467, 41399, '1.0000', '17.8880', '17.8880', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51614, '2022-01-15', 8638, 49150, 3467, NULL, '1.0000', '0.5100', '0.5100', '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 (51615, '2022-01-15', 7765, 49151, 3467, NULL, '2.0000', '16.0000', '16.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 (51616, '2022-01-15', 1651, 49152, 3467, NULL, '1.0000', '-8.3043', '-8.3043', '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 (51617, '2022-01-15', 9718, 49153, 3467, 45204, '1.0000', '13.3000', '13.3000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51618, '2022-01-15', 7411, 49154, 3467, NULL, '1.0000', '1.3427', '1.3427', '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 (51619, '2022-01-15', 7799, 49155, 3467, NULL, '1.0000', '2.0000', '2.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 (51620, '2022-01-15', 1912, 49156, 3467, 41409, '3.0000', '0.6675', '0.6675', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51621, '2022-01-15', 7411, 49157, 3468, NULL, '6.0000', '1.3500', '1.3500', '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 (51622, '2022-01-15', 2400, 49158, 3468, 20694, '1.0000', '12.5000', '12.5000', '17.5000', '17.5000', '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 (51623, '2022-01-15', 1758, 49159, 3468, NULL, '1.0000', '45.3800', '45.3800', '62.5000', '62.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51624, '2022-01-15', 2289, 49160, 3468, 2949, '-55.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 (51625, '2022-01-15', 2289, 49160, 3468, NULL, '59.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51626, '2022-01-15', 1478, 49161, 3469, 18919, '1.0000', '50.6858', '50.6858', '30.0000', '30.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 (51627, '2022-01-15', 2994, 49162, 3470, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51628, '2022-01-15', 1888, 49163, 3470, 47741, '1.0000', '16.3271', '16.3271', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51629, '2022-01-15', 2315, 49164, 3470, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '75.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51630, '2022-01-15', 7719, 49165, 3471, 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 (51631, '2022-01-15', 7514, 49166, 3471, NULL, '1.0000', '51.3956', '51.3956', '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 (51632, '2022-01-15', 7820, 49167, 3471, NULL, '1.0000', '-970.6000', '-970.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51633, '2022-01-15', 7641, 49168, 3471, NULL, '1.0000', '-34.5951', '-34.5951', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51634, '2022-01-15', 9735, 49169, 3471, 46929, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51635, '2022-01-15', 8194, 49170, 3471, 45308, '1.0000', '5.4600', '5.4600', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51636, '2022-01-15', 7564, 49171, 3471, 30930, '2.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51637, '2022-01-15', 8945, 49172, 3471, NULL, '20.0000', '9.0000', '9.0000', '1.1700', '1.1700', '-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 (51638, '2022-01-15', 2411, 49173, 3471, 43089, '2.0000', '68.8404', '68.8404', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51639, '2022-01-15', 7814, 49174, 3471, NULL, '1.0000', '22.1667', '22.1667', '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 (51640, '2022-01-15', 8304, 49175, 3471, NULL, '1.0000', '6.0233', '6.0233', '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 (51641, '2022-01-15', 7457, 49176, 3471, 46665, '3.0000', '3.6088', '3.6088', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51642, '2022-01-15', 7586, 49177, 3471, NULL, '1.0000', '4.1700', '4.1700', '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 (51643, '2022-01-15', 7822, 49178, 3471, NULL, '1.0000', '8.0333', '8.0333', '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 (51644, '2022-01-15', 7324, 49179, 3471, 45796, '3.0000', '5.3429', '5.3429', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51645, '2022-01-15', 9272, 49180, 3471, NULL, '1.0000', '3.1000', '3.1000', '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 (51646, '2022-01-15', 7507, 49181, 3471, NULL, '3.0000', '6.5000', '6.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 (51647, '2022-01-15', 7380, 49182, 3471, NULL, '1.0000', '8.0000', '8.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 (51648, '2022-01-15', 9761, 49183, 3471, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51649, '2022-01-15', 8548, 49184, 3471, NULL, '1.0000', '12.0000', '12.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 (51650, '2022-01-15', 8038, 49185, 3471, 45808, '1.0000', '6.7600', '6.7600', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51651, '2022-01-15', 7357, 49186, 3471, NULL, '1.0000', '11.7500', '11.7500', '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 (51652, '2022-01-15', 7506, 49187, 3471, NULL, '1.0000', '15.0000', '15.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 (51653, '2022-01-15', 7954, 49188, 3471, NULL, '1.0000', '24.4161', '24.4161', '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 (51654, '2022-01-15', 1332, 49189, 3471, 227, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51655, '2022-01-15', 9569, 49190, 3471, 44829, '1.0000', '114.0900', '114.0900', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51656, '2022-01-15', 7671, 49191, 3471, NULL, '1.0000', '47.1963', '47.1963', '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 (51657, '2022-01-15', 7593, 49192, 3471, 47528, '1.0000', '2.5368', '2.5368', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51658, '2022-01-15', 1771, 49193, 3471, 39531, '1.0000', '11.9058', '11.9058', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51659, '2022-01-15', 7628, 49194, 3471, NULL, '12.0000', '5.1992', '5.1992', '4.5000', '4.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 (51660, '2022-01-15', 8683, 49195, 3471, NULL, '1.0000', '5.7000', '5.7000', '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 (51661, '2022-01-15', 7886, 49196, 3471, NULL, '1.0000', '-8.1003', '-8.1003', '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 (51662, '2022-01-15', 7368, 49197, 3471, 43099, '1.0000', '-12.4609', '-12.4609', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51663, '2022-01-15', 7514, 49198, 3471, NULL, '1.0000', '51.3956', '51.3956', '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 (51664, '2022-01-15', 2242, 49199, 3471, 45849, '3.0000', '0.5356', '0.5356', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51665, '2022-01-15', 7518, 49200, 3471, NULL, '1.0000', '3007201.9315', '3007201.9315', '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 (51666, '2022-01-15', 8889, 49201, 3471, 42760, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '4.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51667, '2022-01-15', 9458, 49202, 3471, 47471, '1.0000', '1.8000', '1.8000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51668, '2022-01-15', 8038, 49203, 3471, 45808, '1.0000', '6.7600', '6.7600', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51669, '2022-01-15', 7709, 49204, 3471, NULL, '2.0000', '39.7124', '39.7124', '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 (51670, '2022-01-15', 2544, 49205, 3471, NULL, '1.0000', '6.8800', '6.8800', '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 (51671, '2022-01-15', 8918, 49206, 3471, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51672, '2022-01-15', 9571, 49207, 3472, 37434, '1.0000', '17.1000', '17.1000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51673, '2022-01-15', 7928, 49208, 3472, NULL, '2.0000', '1.2000', '1.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 (51674, '2022-01-15', 7709, 49209, 3472, NULL, '1.0000', '39.7124', '39.7124', '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 (51675, '2022-01-15', 3022, 49210, 3472, 46226, '1.0000', '4.4424', '4.4424', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51676, '2022-01-15', 9337, 49211, 3472, 44951, '2.0000', '-1.0224', '-1.0224', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51677, '2022-01-15', 7514, 49212, 3472, NULL, '1.0000', '51.3956', '51.3956', '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 (51678, '2022-01-15', 8596, 49213, 3472, NULL, '1.0000', '17.0000', '17.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 (51679, '2022-01-15', 7530, 49214, 3472, NULL, '1.0000', '5.9000', '5.9000', '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 (51680, '2022-01-15', 8203, 49215, 3472, NULL, '2.0000', '2.3282', '2.3282', '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 (51681, '2022-01-15', 2295, 49216, 3472, 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 (51682, '2022-01-15', 9391, 49217, 3472, NULL, '1.0000', '3.0000', '3.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 (51683, '2022-01-15', 7444, 49218, 3472, 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 (51684, '2022-01-15', 2458, 49219, 3472, 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 (51685, '2022-01-15', 8053, 49220, 3472, 37844, '2.0000', '1.7988', '1.7988', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51686, '2022-01-15', 8208, 49221, 3472, NULL, '2.0000', '33.0000', '33.0000', '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 (51687, '2022-01-15', 7704, 49222, 3472, NULL, '2.0000', '-1.5625', '-1.5625', '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 (51688, '2022-01-15', 8596, 49223, 3472, NULL, '1.0000', '17.0000', '17.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 (51689, '2022-01-15', 1688, 49224, 3472, 45859, '1.0000', '19.4050', '19.4050', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51690, '2022-01-15', 2315, 49225, 3472, NULL, '2.0000', '0.4743', '0.4743', '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 (51691, '2022-01-15', 2315, 49226, 3472, NULL, '4.0000', '0.4743', '0.4743', '0.8000', '0.8000', '-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 (51692, '2022-01-15', 7657, 49227, 3472, NULL, '1.0000', '-20.7289', '-20.7289', '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 (51693, '2022-01-15', 1840, 49228, 3472, 33725, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '138.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51694, '2022-01-15', 2315, 49229, 3472, NULL, '1.0000', '0.4743', '0.4743', '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 (51695, '2022-01-15', 7781, 49230, 3472, NULL, '3.0000', '4.2500', '4.2500', '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 (51696, '2022-01-15', 7359, 49231, 3472, NULL, '2.0000', '10.6650', '10.6650', '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 (51697, '2022-01-15', 8536, 49232, 3472, NULL, '1.0000', '12.5000', '12.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 (51698, '2022-01-15', 1837, 49233, 3472, 46669, '3.0000', '0.4201', '0.4201', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51699, '2022-01-15', 8548, 49234, 3472, NULL, '1.0000', '12.0000', '12.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 (51700, '2022-01-15', 1519, 49235, 3473, NULL, '1.0000', '3.3972', '3.3972', '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 (51701, '2022-01-15', 1622, 49236, 3473, 19343, '1.0000', '90.0000', '90.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 (51702, '2022-01-15', 1502, 49237, 3473, NULL, '1.0000', '-50.9143', '-50.9143', '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 (51703, '2022-01-15', 8984, 49238, 3473, NULL, '1.0000', '-100.8495', '-100.8495', '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 (51704, '2022-01-15', 2315, 49239, 3473, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '74.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51705, '2022-01-15', 2962, 49240, 3473, 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 (51706, '2022-01-15', 2347, 49241, 3473, 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 (51707, '2022-01-15', 7743, 49242, 3473, NULL, '1.0000', '7.3900', '7.3900', '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 (51708, '2022-01-15', 2668, 49243, 3473, 47796, '1.0000', '6.6198', '6.6198', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51709, '2022-01-15', 1651, 49244, 3473, NULL, '1.0000', '-8.3043', '-8.3043', '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 (51710, '2022-01-15', 2262, 49245, 3473, 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 (51711, '2022-01-15', 7564, 49246, 3473, NULL, '1.0000', '0.6400', '0.6400', '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 (51712, '2022-01-15', 7412, 49247, 3473, NULL, '1.0000', '1.5200', '1.5200', '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 (51713, '2022-01-15', 8746, 49248, 3473, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51714, '2022-01-15', 9750, 49249, 3473, NULL, '1.0000', '3.3000', '3.3000', '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 (51715, '2022-01-15', 7411, 49250, 3473, NULL, '1.0000', '1.3427', '1.3427', '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 (51716, '2022-01-15', 2288, 49251, 3473, NULL, '1.0000', '7.8600', '7.8600', '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 (51717, '2022-01-15', 1620, 49252, 3473, 47783, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51718, '2022-01-15', 2169, 49253, 3473, NULL, '1.0000', '0.3873', '0.3873', '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 (51719, '2022-01-15', 7411, 49254, 3473, NULL, '1.0000', '1.3427', '1.3427', '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 (51720, '2022-01-15', 2366, 49255, 3473, NULL, '2.0000', '-17.8500', '-17.8500', '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 (51721, '2022-01-15', 1950, 49256, 3473, NULL, '1.0000', '3.5525', '3.5525', '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 (51722, '2022-01-15', 8677, 49257, 3473, NULL, '2.0000', '182.2674', '182.2674', '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 (51723, '2022-01-15', 1590, 49258, 3473, NULL, '3.0000', '1.9878', '1.9878', '2.3000', '2.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 (51724, '2022-01-15', 2506, 49259, 3473, NULL, '1.0000', '3.3617', '3.3617', '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 (51725, '2022-01-15', 2768, 49260, 3473, 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 (51726, '2022-01-15', 1688, 49261, 3473, 43243, '1.0000', '15.3265', '15.3265', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51727, '2022-01-15', 1689, 49262, 3473, 39798, '1.0000', '12.9279', '12.9279', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51728, '2022-01-15', 2289, 49263, 3473, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51729, '2022-01-15', 1550, 49264, 3473, 39885, '1.0000', '-24.1500', '-24.1500', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51730, '2022-01-15', 1550, 49264, 3473, NULL, '1.0000', '-24.1500', '-24.1500', '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 (51731, '2022-01-15', 1487, 49265, 3473, NULL, '1.0000', '-144.1000', '-144.1000', '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 (51732, '2022-01-15', 1626, 49266, 3473, 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 (51733, '2022-01-15', 1606, 49267, 3473, 37773, '5.0000', '4.9200', '4.9200', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51734, '2022-01-15', 1498, 49268, 3473, 19871, '5.0000', '0.3300', '0.3300', '0.6000', '0.6000', '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 (51735, '2022-01-15', 7333, 49269, 3473, NULL, '5.0000', '13.5000', '13.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 (51736, '2022-01-15', 8984, 49270, 3473, NULL, '1.0000', '-100.8495', '-100.8495', '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 (51737, '2022-01-15', 2256, 49271, 3473, NULL, '1.0000', '13.6860', '13.6860', '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 (51738, '2022-01-15', 7899, 49272, 3473, 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 (51739, '2022-01-15', 1564, 49273, 3473, 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 (51740, '2022-01-15', 2169, 49274, 3473, NULL, '1.0000', '0.3873', '0.3873', '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 (51741, '2022-01-15', 7411, 49275, 3473, NULL, '1.0000', '1.3427', '1.3427', '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 (51742, '2022-01-15', 9758, 49276, 3473, NULL, '1.0000', '3.1400', '3.1400', '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 (51743, '2022-01-15', 1701, 49277, 3473, 34961, '1.0000', '15.0619', '15.0619', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51744, '2022-01-15', 2231, 49278, 3473, NULL, '1.0000', '34.0000', '34.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 (51745, '2022-01-15', 7585, 49279, 3473, NULL, '1.0000', '3.9600', '3.9600', '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 (51746, '2022-01-15', 9211, 49280, 3473, NULL, '2.0000', '5.8300', '5.8300', '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 (51747, '2022-01-15', 7411, 49281, 3473, NULL, '1.0000', '1.3427', '1.3427', '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 (51748, '2022-01-15', 1782, 49282, 3473, 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 (51749, '2022-01-15', 2759, 49283, 3473, 34928, '1.0000', '3.9167', '3.9167', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51750, '2022-01-15', 1499, 49284, 3473, NULL, '1.0000', '0.6447', '0.6447', '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 (51751, '2022-01-15', 2109, 49285, 3473, 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 (51752, '2022-01-15', 9747, 49286, 3473, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51753, '2022-01-15', 7819, 49287, 3473, NULL, '1.0000', '10.0999', '10.0999', '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 (51754, '2022-01-15', 1307, 49288, 3473, NULL, '1.0000', '1.7738', '1.7738', '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 (51755, '2022-01-15', 2332, 49289, 3473, NULL, '1.0000', '5.0900', '5.0900', '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 (51756, '2022-01-15', 9731, 49290, 3473, 47083, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51757, '2022-01-15', 7411, 49291, 3473, NULL, '1.0000', '1.3427', '1.3427', '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 (51758, '2022-01-15', 2320, 49292, 3473, 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 (51759, '2022-01-15', 2916, 49293, 3473, NULL, '1.0000', '14.8227', '14.8227', '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 (51760, '2022-01-15', 2761, 49294, 3473, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51761, '2022-01-15', 2169, 49295, 3473, NULL, '1.0000', '0.3873', '0.3873', '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 (51762, '2022-01-15', 1529, 49296, 3473, 47769, '2.0000', '3.5500', '3.5500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51763, '2022-01-15', 2020, 49297, 3473, NULL, '1.0000', '9.2832', '9.2832', '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 (51764, '2022-01-15', 2093, 49298, 3473, NULL, '1.0000', '2.5500', '2.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 (51765, '2022-01-15', 7514, 49299, 3473, NULL, '1.0000', '2.2500', '2.2500', '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 (51766, '2022-01-15', 8177, 49300, 3473, NULL, '1.0000', '12.9000', '12.9000', '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 (51767, '2022-01-15', 1602, 49301, 3473, NULL, '1.0000', '7.0303', '7.0303', '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 (51768, '2022-01-15', 1628, 49302, 3473, 47067, '1.0000', '6.9972', '6.9972', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51769, '2022-01-15', 1401, 49303, 3473, 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 (51770, '2022-01-15', 9214, 49304, 3473, 45278, '1.0000', '9.8180', '9.8180', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51771, '2022-01-15', 7642, 49305, 3473, NULL, '1.0000', '2.6900', '2.6900', '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 (51772, '2022-01-16', 1590, 49306, 3474, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (51773, '2022-01-16', 2221, 49307, 3474, 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 (51774, '2022-01-16', 3054, 49308, 3474, NULL, '1.0000', '7.0000', '7.0000', '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 (51775, '2022-01-16', 1665, 49309, 3474, 47792, '1.0000', '0.0304', '0.0304', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51776, '2022-01-16', 2169, 49310, 3474, NULL, '1.0000', '0.3873', '0.3873', '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 (51777, '2022-01-16', 1851, 49311, 3474, 29648, '1.0000', '12.4818', '12.4818', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51778, '2022-01-16', 2169, 49312, 3474, NULL, '1.0000', '0.3873', '0.3873', '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 (51779, '2022-01-16', 2352, 49313, 3474, NULL, '2.0000', '59.2000', '59.2000', '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 (51780, '2022-01-16', 8765, 49314, 3474, 45286, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51781, '2022-01-16', 9758, 49315, 3474, NULL, '1.0000', '3.1400', '3.1400', '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 (51782, '2022-01-16', 7752, 49316, 3474, NULL, '1.0000', '2.6100', '2.6100', '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 (51783, '2022-01-16', 2908, 49317, 3474, NULL, '6.0000', '0.2700', '0.2700', '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 (51784, '2022-01-16', 1665, 49318, 3474, 47792, '1.0000', '0.0304', '0.0304', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51785, '2022-01-16', 9482, 49319, 3474, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51786, '2022-01-16', 1746, 49320, 3474, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (51787, '2022-01-16', 1313, 49321, 3474, 39906, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51788, '2022-01-16', 2738, 49322, 3474, 19348, '1.0000', '7.6000', '7.6000', '12.0000', '12.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 (51789, '2022-01-16', 2810, 49323, 3474, 24934, '3.0000', '6788008906.4158', '6788008906.4158', '3.0000', '3.0000', '26.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 (51790, '2022-01-16', 2346, 49324, 3474, NULL, '1.0000', '5.8000', '5.8000', '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 (51791, '2022-01-16', 1562, 49325, 3474, NULL, '1.0000', '5.1300', '5.1300', '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 (51792, '2022-01-16', 1760, 49326, 3474, NULL, '2.0000', '1.5900', '1.5900', '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 (51793, '2022-01-16', 2167, 49327, 3474, 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 (51794, '2022-01-16', 1450, 49328, 3474, 43237, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51795, '2022-01-16', 7589, 49329, 3474, NULL, '1.0000', '1.7700', '1.7700', '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 (51796, '2022-01-16', 2982, 49330, 3474, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '13.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 (51797, '2022-01-16', 1935, 49331, 3474, NULL, '1.0000', '-0.2932', '-0.2932', '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 (51798, '2022-01-16', 1602, 49332, 3474, NULL, '1.0000', '7.0303', '7.0303', '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 (51799, '2022-01-16', 1666, 49333, 3474, 41371, '1.0000', '2.7429', '2.7429', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51800, '2022-01-16', 1528, 49334, 3474, NULL, '3.0000', '90.0000', '90.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 (51801, '2022-01-16', 1700, 49335, 3474, 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 (51802, '2022-01-16', 2237, 49336, 3475, NULL, '1.0000', '-514.0277', '-514.0277', '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 (51803, '2022-01-16', 2392, 49337, 3475, 47132, '1.0000', '3.7070', '3.7070', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51804, '2022-01-16', 9758, 49338, 3475, NULL, '1.0000', '3.1400', '3.1400', '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 (51805, '2022-01-16', 2768, 49339, 3475, 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 (51806, '2022-01-16', 2242, 49340, 3475, NULL, '3.0000', '0.5518', '0.5518', '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 (51807, '2022-01-16', 9734, 49341, 3475, 47079, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51808, '2022-01-16', 2136, 49342, 3475, 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 (51809, '2022-01-16', 1910, 49343, 3475, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (51810, '2022-01-16', 1665, 49344, 3475, 47792, '2.0000', '0.0304', '0.0304', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51811, '2022-01-16', 1651, 49345, 3476, NULL, '1.0000', '-8.3043', '-8.3043', '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 (51812, '2022-01-16', 2169, 49346, 3476, NULL, '1.0000', '0.3873', '0.3873', '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 (51813, '2022-01-16', 9758, 49347, 3476, NULL, '1.0000', '3.1400', '3.1400', '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 (51814, '2022-01-16', 1386, 49348, 3476, 47137, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51815, '2022-01-16', 2136, 49349, 3476, 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 (51816, '2022-01-16', 2315, 49350, 3476, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '73.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51817, '2022-01-16', 1650, 49351, 3476, 47117, '1.0000', '13.8890', '13.8890', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51818, '2022-01-16', 2681, 49352, 3476, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51819, '2022-01-16', 9482, 49353, 3476, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51820, '2022-01-16', 9747, 49354, 3476, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51821, '2022-01-16', 1479, 49355, 3476, NULL, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51822, '2022-01-16', 1612, 49356, 3476, 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 (51823, '2022-01-16', 1807, 49357, 3476, NULL, '4.0000', '41.5000', '41.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 (51824, '2022-01-16', 8941, 49358, 3477, NULL, '1.0000', '12.0000', '12.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 (51825, '2022-01-16', 9561, 49359, 3477, 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 (51826, '2022-01-16', 7674, 49360, 3477, 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 (51827, '2022-01-16', 7731, 49361, 3477, 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 (51828, '2022-01-16', 1610, 49362, 3477, 8730, '-5.0000', '15.7500', '15.7500', '20.5000', '20.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 (51829, '2022-01-16', 1610, 49362, 3477, NULL, '6.0000', '15.7500', '15.7500', '20.5000', '20.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 (51830, '2022-01-16', 9731, 49363, 3477, 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 (51831, '2022-01-16', 7457, 49364, 3477, NULL, '2.0000', '6.0000', '6.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 (51832, '2022-01-16', 1837, 49365, 3477, 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 (51833, '2022-01-16', 7743, 49366, 3477, NULL, '2.0000', '1.3100', '1.3100', '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 (51834, '2022-01-16', 7954, 49367, 3477, 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 (51835, '2022-01-16', 9274, 49368, 3477, 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 (51836, '2022-01-16', 1841, 49369, 3477, 645, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '9.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 (51837, '2022-01-16', 2289, 49370, 3477, 2949, '-59.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 (51838, '2022-01-16', 2289, 49370, 3477, NULL, '63.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51839, '2022-01-16', 7781, 49371, 3477, NULL, '3.0000', '4.2500', '4.2500', '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 (51840, '2022-01-16', 8539, 49372, 3477, NULL, '2.0000', '31.8000', '31.8000', '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 (51841, '2022-01-16', 8234, 49373, 3477, NULL, '1.0000', '13.0000', '13.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 (51842, '2022-01-16', 7781, 49374, 3477, NULL, '6.0000', '4.2500', '4.2500', '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 (51843, '2022-01-16', 8680, 49375, 3477, NULL, '1.0000', '2.0000', '2.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 (51844, '2022-01-16', 1498, 49376, 3477, NULL, '2.0000', '0.3300', '0.3300', '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 (51845, '2022-01-16', 8699, 49377, 3477, NULL, '1.0000', '6.3800', '6.3800', '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 (51846, '2022-01-16', 9734, 49378, 3477, NULL, '2.0000', '0.3200', '0.3200', '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 (51847, '2022-01-16', 7675, 49379, 3477, NULL, '1.0000', '11.4300', '11.4300', '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 (51848, '2022-01-16', 7428, 49380, 3477, NULL, '1.0000', '2.6100', '2.6100', '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 (51849, '2022-01-16', 7671, 49381, 3477, NULL, '1.0000', '15.5000', '15.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 (51850, '2022-01-16', 1650, 49382, 3477, 3221, '-5.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 (51851, '2022-01-16', 1650, 49382, 3477, NULL, '6.0000', '14.8000', '14.8000', '20.0000', '20.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 (51852, '2022-01-16', 9092, 49383, 3477, NULL, '2.0000', '5.2900', '5.2900', '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 (51853, '2022-01-16', 9272, 49384, 3477, NULL, '1.0000', '3.1000', '3.1000', '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 (51854, '2022-01-16', 2962, 49385, 3477, 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 (51855, '2022-01-16', 7526, 49386, 3477, 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 (51856, '2022-01-16', 7523, 49387, 3477, 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 (51857, '2022-01-16', 7805, 49388, 3477, NULL, '2.0000', '2.1800', '2.1800', '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 (51858, '2022-01-16', 8721, 49389, 3477, NULL, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51859, '2022-01-16', 7630, 49390, 3477, NULL, '4.0000', '10.0000', '10.0000', '3.2000', '3.2000', '-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 (51860, '2022-01-16', 8208, 49391, 3477, NULL, '6.0000', '33.0000', '33.0000', '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 (51861, '2022-01-16', 9245, 49392, 3477, NULL, '1.0000', '6.6100', '6.6100', '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 (51862, '2022-01-16', 8033, 49393, 3477, NULL, '1.0000', '27.7000', '27.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 (51863, '2022-01-16', 7524, 49394, 3477, NULL, '1.0000', '11.9500', '11.9500', '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 (51864, '2022-01-16', 7518, 49395, 3477, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51865, '2022-01-16', 7917, 49396, 3477, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (51866, '2022-01-16', 8810, 49397, 3477, 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 (51867, '2022-01-16', 8566, 49398, 3477, 33072, '2.0000', '11.0000', '11.0000', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51868, '2022-01-16', 7415, 49399, 3477, 33809, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51869, '2022-01-16', 9254, 49400, 3477, NULL, '1.0000', '20.0000', '20.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 (51870, '2022-01-16', 7853, 49401, 3477, 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 (51871, '2022-01-16', 8722, 49402, 3477, 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 (51872, '2022-01-16', 7348, 49403, 3477, NULL, '1.0000', '25.3000', '25.3000', '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 (51873, '2022-01-16', 7518, 49404, 3477, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51874, '2022-01-16', 8945, 49405, 3477, NULL, '10.0000', '9.0000', '9.0000', '1.1700', '1.1700', '-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 (51875, '2022-01-16', 7729, 49406, 3477, NULL, '1.0000', '13.0000', '13.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 (51876, '2022-01-16', 7674, 49407, 3477, 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 (51877, '2022-01-16', 7672, 49408, 3477, NULL, '1.0000', '1.0200', '1.0200', '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 (51878, '2022-01-16', 9407, 49409, 3477, NULL, '1.0000', '5.4000', '5.4000', '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 (51879, '2022-01-16', 8046, 49410, 3477, NULL, '4.0000', '1.5000', '1.5000', '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 (51880, '2022-01-16', 9758, 49411, 3477, NULL, '1.0000', '3.1400', '3.1400', '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 (51881, '2022-01-16', 2279, 49412, 3477, 2939, '-14.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 (51882, '2022-01-16', 2279, 49412, 3477, NULL, '16.0000', '2.7000', '2.7000', '4.0000', '4.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 (51883, '2022-01-16', 7674, 49413, 3477, 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 (51884, '2022-01-16', 7917, 49414, 3477, NULL, '1.0000', '5.0000', '5.0000', '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 (51885, '2022-01-16', 2332, 49415, 3477, NULL, '2.0000', '5.8900', '5.8900', '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 (51886, '2022-01-16', 9732, 49416, 3477, 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 (51887, '2022-01-16', 8417, 49417, 3477, 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 (51888, '2022-01-16', 7715, 49418, 3477, NULL, '1.0000', '1.8900', '1.8900', '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 (51889, '2022-01-16', 8444, 49419, 3477, NULL, '1.0000', '1.6000', '1.6000', '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 (51890, '2022-01-16', 7672, 49420, 3477, NULL, '1.0000', '1.0200', '1.0200', '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 (51891, '2022-01-16', 2295, 49421, 3477, 22264, '1.0000', '0.9600', '0.9600', '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 (51892, '2022-01-16', 1580, 49422, 3477, 7598, '-31.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 (51893, '2022-01-16', 1580, 49422, 3477, NULL, '33.0000', '0.9900', '0.9900', '1.5000', '1.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 (51894, '2022-01-16', 7411, 49423, 3477, NULL, '2.0000', '1.3500', '1.3500', '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 (51895, '2022-01-16', 1812, 49424, 3478, 47104, '2.0000', '7.8378', '7.8378', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51896, '2022-01-16', 2135, 49425, 3478, 18930, '1.0000', '2.4732', '2.4732', '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 (51897, '2022-01-16', 1824, 49426, 3478, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51898, '2022-01-16', 1674, 49427, 3478, NULL, '1.0000', '3.2473', '3.2473', '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 (51899, '2022-01-16', 2574, 49428, 3478, 45644, '12.0000', '1.1133', '1.1133', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51900, '2022-01-16', 2384, 49429, 3478, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (51901, '2022-01-16', 1824, 49430, 3478, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51902, '2022-01-16', 1674, 49431, 3478, NULL, '1.0000', '3.2473', '3.2473', '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 (51903, '2022-01-16', 1700, 49432, 3478, 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 (51904, '2022-01-16', 8622, 49433, 3478, 42570, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51905, '2022-01-16', 7411, 49434, 3478, NULL, '1.0000', '1.3427', '1.3427', '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 (51906, '2022-01-16', 1673, 49435, 3478, 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 (51907, '2022-01-16', 9732, 49436, 3478, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51908, '2022-01-16', 2169, 49437, 3478, NULL, '1.0000', '0.3873', '0.3873', '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 (51909, '2022-01-16', 2643, 49438, 3479, 45273, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51910, '2022-01-16', 1665, 49439, 3479, NULL, '2.0000', '0.0304', '0.0304', '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 (51911, '2022-01-16', 9094, 49440, 3480, NULL, '1.0000', '5.7000', '5.7000', '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 (51912, '2022-01-16', 9095, 49441, 3480, NULL, '1.0000', '8.7600', '8.7600', '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 (51913, '2022-01-16', 9409, 49442, 3480, NULL, '1.0000', '5.7000', '5.7000', '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 (51914, '2022-01-16', 2289, 49443, 3480, 2949, '-63.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 (51915, '2022-01-16', 2289, 49443, 3480, NULL, '65.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51916, '2022-01-16', 1840, 49444, 3480, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51917, '2022-01-16', 7472, 49445, 3480, 33824, '1.0000', '4.1000', '4.1000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51918, '2022-01-16', 8037, 49446, 3480, NULL, '2.0000', '1.7600', '1.7600', '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 (51919, '2022-01-16', 2332, 49447, 3480, 3835, '-2.0000', '5.8900', '5.8900', '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 (51920, '2022-01-16', 2332, 49447, 3480, NULL, '3.0000', '5.8900', '5.8900', '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 (51921, '2022-01-16', 8304, 49448, 3480, NULL, '1.0000', '6.0000', '6.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 (51922, '2022-01-16', 7892, 49449, 3480, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51923, '2022-01-17', 2916, 49450, 3481, NULL, '1.0000', '14.8227', '14.8227', '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 (51924, '2022-01-17', 9207, 49451, 3481, NULL, '2.0000', '4.6000', '4.6000', '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 (51925, '2022-01-17', 2289, 49452, 3481, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51926, '2022-01-17', 1841, 49453, 3481, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '9.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51927, '2022-01-17', 7544, 49454, 3481, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51928, '2022-01-17', 1935, 49455, 3481, NULL, '1.0000', '-0.2932', '-0.2932', '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 (51929, '2022-01-17', 1863, 49456, 3481, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51930, '2022-01-17', 1651, 49457, 3481, NULL, '1.0000', '-8.3043', '-8.3043', '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 (51931, '2022-01-17', 1520, 49458, 3481, 44064, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51932, '2022-01-17', 9734, 49459, 3481, 47079, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51933, '2022-01-17', 2754, 49460, 3481, 18938, '2.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (51934, '2022-01-17', 1621, 49461, 3481, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '39.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51935, '2022-01-17', 9758, 49462, 3481, NULL, '1.0000', '3.1400', '3.1400', '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 (51936, '2022-01-17', 8133, 49463, 3481, NULL, '1.0000', '-618.7699', '-618.7699', '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 (51937, '2022-01-17', 7482, 49464, 3481, NULL, '1.0000', '2.8136', '2.8136', '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 (51938, '2022-01-17', 2289, 49465, 3481, 42836, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51939, '2022-01-17', 9207, 49466, 3481, NULL, '2.0000', '4.6000', '4.6000', '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 (51940, '2022-01-17', 7544, 49467, 3481, NULL, '2.0000', '9.4300', '9.4300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51941, '2022-01-17', 1856, 49468, 3481, NULL, '1.0000', '3.9349', '3.9349', '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 (51942, '2022-01-17', 2989, 49469, 3481, 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 (51943, '2022-01-17', 1602, 49470, 3481, NULL, '1.0000', '7.0303', '7.0303', '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 (51944, '2022-01-17', 7723, 49471, 3481, 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 (51945, '2022-01-17', 1602, 49472, 3481, NULL, '1.0000', '7.0303', '7.0303', '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 (51946, '2022-01-17', 7385, 49473, 3481, 42798, '3.0000', '-18.4000', '-18.4000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51947, '2022-01-17', 2169, 49474, 3481, NULL, '1.0000', '0.3873', '0.3873', '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 (51948, '2022-01-17', 2167, 49475, 3481, 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 (51949, '2022-01-17', 7857, 49476, 3481, 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 (51950, '2022-01-17', 1306, 49477, 3481, 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 (51951, '2022-01-17', 7472, 49478, 3481, NULL, '1.0000', '4.2055', '4.2055', '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 (51952, '2022-01-17', 1406, 49479, 3481, 34926, '1.0000', '18.4200', '18.4200', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51953, '2022-01-17', 2169, 49480, 3481, NULL, '1.0000', '0.3873', '0.3873', '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 (51954, '2022-01-17', 9734, 49481, 3481, 47079, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51955, '2022-01-17', 1425, 49482, 3481, NULL, '1.0000', '6.3744', '6.3744', '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 (51956, '2022-01-17', 2379, 49483, 3481, NULL, '1.0000', '1.6341', '1.6341', '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 (51957, '2022-01-17', 9683, 49484, 3481, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51958, '2022-01-17', 9579, 49485, 3481, 47857, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 350);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51959, '2022-01-17', 7385, 49486, 3481, 42798, '2.0000', '-18.4000', '-18.4000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51960, '2022-01-17', 1564, 49487, 3481, NULL, '1.0000', '90.0000', '90.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 (51961, '2022-01-17', 1580, 49488, 3481, 47780, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51962, '2022-01-17', 1564, 49489, 3481, 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 (51963, '2022-01-17', 1501, 49490, 3482, NULL, '1.0000', '2.2100', '2.2100', '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 (51964, '2022-01-17', 2135, 49491, 3482, 18930, '1.0000', '2.4732', '2.4732', '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 (51965, '2022-01-17', 2401, 49492, 3483, NULL, '1.0000', '2.8000', '2.8000', '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 (51966, '2022-01-17', 1337, 49493, 3483, 10809, '-6.0000', '2.0000', '2.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 (51967, '2022-01-17', 1337, 49493, 3483, NULL, '7.0000', '2.0000', '2.0000', '3.5000', '3.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 (51968, '2022-01-17', 8177, 49494, 3483, NULL, '1.0000', '12.5000', '12.5000', '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 (51969, '2022-01-17', 1928, 49495, 3483, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '1.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 (51970, '2022-01-17', 9772, 49496, 3483, 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 (51971, '2022-01-17', 9772, 49497, 3483, 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 (51972, '2022-01-17', 9453, 49498, 3483, 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 (51973, '2022-01-17', 2317, 49499, 3483, 3473, '4.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 (51974, '2022-01-17', 1873, 49500, 3483, 16245, '-7.0000', '11.9500', '11.9500', '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 (51975, '2022-01-17', 1873, 49500, 3483, NULL, '8.0000', '11.9500', '11.9500', '16.0000', '16.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 (51976, '2022-01-17', 2858, 49501, 3483, 17772, '-37.0000', '1.0000', '1.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 (51977, '2022-01-17', 2858, 49501, 3483, NULL, '38.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51978, '2022-01-17', 2020, 49502, 3483, 10164, '-9.0000', '7.5000', '7.5000', '9.5000', '9.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 (51979, '2022-01-17', 2020, 49502, 3483, NULL, '10.0000', '7.5000', '7.5000', '9.5000', '9.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 (51980, '2022-01-17', 2169, 49503, 3483, 10737, '-18.0000', '3.8397', '3.8397', '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 (51981, '2022-01-17', 2169, 49503, 3483, NULL, '19.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (51982, '2022-01-17', 1736, 49504, 3483, 7382, '-1.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51983, '2022-01-17', 1736, 49504, 3483, NULL, '2.0000', '-6.2282', '-6.2282', '42.0000', '42.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 (51984, '2022-01-17', 1650, 49505, 3483, 3221, '-6.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 (51985, '2022-01-17', 1650, 49505, 3483, NULL, '7.0000', '14.8000', '14.8000', '20.0000', '20.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 (51986, '2022-01-17', 1521, 49506, 3483, 22243, '1.0000', '2.5754', '2.5754', '3.5000', '3.5000', '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 (51987, '2022-01-17', 1512, 49507, 3483, 378, '1.0000', '12.8276', '12.8276', '6.0000', '6.0000', '2.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 (51988, '2022-01-17', 1564, 49508, 3483, 18921, '4.0000', '2.6000', '2.6000', '4.0000', '4.0000', '84.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 (51989, '2022-01-17', 1662, 49509, 3483, 3233, '1.0000', '51.4566', '51.4566', '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 (51990, '2022-01-17', 1663, 49510, 3483, 3234, '-4.0000', '97.7700', '97.7700', '125.0000', '125.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51991, '2022-01-17', 1663, 49510, 3483, NULL, '5.0000', '97.7700', '97.7700', '125.0000', '125.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 (51992, '2022-01-17', 1518, 49511, 3483, 6524, '-7.0000', '6.9000', '6.9000', '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 (51993, '2022-01-17', 1518, 49511, 3483, NULL, '8.0000', '6.9000', '6.9000', '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 (51994, '2022-01-17', 2020, 49512, 3483, 10164, '-9.0000', '7.5000', '7.5000', '9.5000', '9.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 (51995, '2022-01-17', 2020, 49512, 3483, NULL, '10.0000', '7.5000', '7.5000', '9.5000', '9.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 (51996, '2022-01-17', 2036, 49513, 3483, 4277, '-9.0000', '8.0000', '8.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 (51997, '2022-01-17', 2036, 49513, 3483, NULL, '10.0000', '8.0000', '8.0000', '10.0000', '10.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 (51998, '2022-01-17', 2037, 49514, 3483, 6389, '-9.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51999, '2022-01-17', 2037, 49514, 3483, NULL, '10.0000', '10.5000', '10.5000', '14.0000', '14.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 (52000, '2022-01-17', 7741, 49515, 3483, NULL, '1.0000', '1.2000', '1.2000', '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 (52001, '2022-01-17', 2669, 49516, 3483, 11757, '-1.0000', '24.5336', '24.5336', '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 (52002, '2022-01-17', 2669, 49516, 3483, NULL, '3.0000', '24.5336', '24.5336', '32.0000', '32.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 (52003, '2022-01-17', 2169, 49517, 3483, 10737, '-18.0000', '3.8397', '3.8397', '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 (52004, '2022-01-17', 2169, 49517, 3483, NULL, '19.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (52005, '2022-01-17', 1831, 49518, 3483, NULL, '1.0000', '8.4400', '8.4400', '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 (52006, '2022-01-17', 7609, 49519, 3483, NULL, '1.0000', '4.3300', '4.3300', '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 (52007, '2022-01-17', 2169, 49520, 3483, 10737, '-18.0000', '3.8397', '3.8397', '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 (52008, '2022-01-17', 2169, 49520, 3483, NULL, '19.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (52009, '2022-01-17', 7411, 49521, 3483, NULL, '1.0000', '1.3500', '1.3500', '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 (52010, '2022-01-17', 1667, 49522, 3483, 9745, '-37.0000', '5.9400', '5.9400', '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 (52011, '2022-01-17', 1667, 49522, 3483, NULL, '38.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52012, '2022-01-17', 7532, 49523, 3483, NULL, '1.0000', '20.6000', '20.6000', '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 (52013, '2022-01-17', 1346, 49524, 3483, 21942, '-69.0000', '1.0594', '1.0594', '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 (52014, '2022-01-17', 1346, 49524, 3483, NULL, '99.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52015, '2022-01-17', 8065, 49525, 3483, NULL, '1.0000', '32.0000', '32.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 (52016, '2022-01-17', 1462, 49526, 3483, NULL, '1.0000', '175.9730', '175.9730', '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 (52017, '2022-01-17', 1634, 49527, 3483, 2431, '1.0000', '24.6308', '24.6308', '33.0000', '33.0000', '1.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 (52018, '2022-01-17', 2695, 49528, 3483, 12336, '-13.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 (52019, '2022-01-17', 2695, 49528, 3483, NULL, '14.0000', '2.0000', '2.0000', '3.0000', '3.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 (52020, '2022-01-17', 2303, 49529, 3483, 18854, '1.0000', '16.1000', '16.1000', '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 (52021, '2022-01-17', 2635, 49530, 3483, 10297, '-10.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 (52022, '2022-01-17', 2635, 49530, 3483, NULL, '11.0000', '3.0000', '3.0000', '4.0000', '4.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 (52023, '2022-01-17', 1337, 49531, 3483, 10809, '-6.0000', '2.0000', '2.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 (52024, '2022-01-17', 1337, 49531, 3483, NULL, '7.0000', '2.0000', '2.0000', '3.5000', '3.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 (52025, '2022-01-17', 1701, 49532, 3483, 11266, '-4.0000', '14.7800', '14.7800', '20.5000', '20.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 (52026, '2022-01-17', 1701, 49532, 3483, NULL, '5.0000', '14.7800', '14.7800', '20.5000', '20.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 (52027, '2022-01-17', 1871, 49533, 3483, 8223, '-85.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 (52028, '2022-01-17', 1871, 49533, 3483, NULL, '105.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52029, '2022-01-17', 9480, 49534, 3483, NULL, '1.0000', '8.5000', '8.5000', '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 (52030, '2022-01-17', 2401, 49535, 3484, NULL, '1.0000', '2.8000', '2.8000', '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 (52031, '2022-01-17', 1337, 49536, 3484, 10809, '-8.0000', '2.0000', '2.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 (52032, '2022-01-17', 1337, 49536, 3484, NULL, '9.0000', '2.0000', '2.0000', '3.5000', '3.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 (52033, '2022-01-17', 8177, 49537, 3484, NULL, '1.0000', '12.5000', '12.5000', '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 (52034, '2022-01-17', 1928, 49538, 3484, 6878, '1.0000', '186.5625', '186.5625', '7.0000', '7.0000', '0.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 (52035, '2022-01-17', 9772, 49539, 3484, 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 (52036, '2022-01-17', 9772, 49540, 3484, 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 (52037, '2022-01-17', 9453, 49541, 3484, 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 (52038, '2022-01-17', 2317, 49542, 3484, 3473, '3.0000', '15.0000', '15.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 (52039, '2022-01-17', 2317, 49542, 3484, 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 (52040, '2022-01-17', 1873, 49543, 3484, 16245, '-8.0000', '11.9500', '11.9500', '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 (52041, '2022-01-17', 1873, 49543, 3484, NULL, '9.0000', '11.9500', '11.9500', '16.0000', '16.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 (52042, '2022-01-17', 2858, 49544, 3484, 17772, '-38.0000', '1.0000', '1.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 (52043, '2022-01-17', 2858, 49544, 3484, NULL, '39.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52044, '2022-01-17', 2020, 49545, 3484, 10164, '-11.0000', '7.5000', '7.5000', '9.5000', '9.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 (52045, '2022-01-17', 2020, 49545, 3484, NULL, '12.0000', '7.5000', '7.5000', '9.5000', '9.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 (52046, '2022-01-17', 2169, 49546, 3484, 10737, '-21.0000', '3.8397', '3.8397', '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 (52047, '2022-01-17', 2169, 49546, 3484, NULL, '22.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52048, '2022-01-17', 1736, 49547, 3484, 7382, '-2.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52049, '2022-01-17', 1736, 49547, 3484, NULL, '3.0000', '-6.2282', '-6.2282', '42.0000', '42.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 (52050, '2022-01-17', 1650, 49548, 3484, 3221, '-7.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 (52051, '2022-01-17', 1650, 49548, 3484, NULL, '8.0000', '14.8000', '14.8000', '20.0000', '20.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 (52052, '2022-01-17', 1521, 49549, 3484, 20591, '1.0000', '2.5754', '2.5754', '3.5000', '3.5000', '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 (52053, '2022-01-17', 1512, 49550, 3484, 378, '1.0000', '12.8276', '12.8276', '6.0000', '6.0000', '1.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 (52054, '2022-01-17', 1564, 49551, 3484, 18921, '4.0000', '2.6000', '2.6000', '4.0000', '4.0000', '80.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 (52055, '2022-01-17', 1662, 49552, 3484, 3233, '1.0000', '51.4566', '51.4566', '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 (52056, '2022-01-17', 1663, 49553, 3484, 3234, '-5.0000', '97.7700', '97.7700', '125.0000', '125.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52057, '2022-01-17', 1663, 49553, 3484, NULL, '6.0000', '97.7700', '97.7700', '125.0000', '125.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 (52058, '2022-01-17', 1518, 49554, 3484, 6524, '-8.0000', '6.9000', '6.9000', '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 (52059, '2022-01-17', 1518, 49554, 3484, NULL, '9.0000', '6.9000', '6.9000', '10.0000', '10.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 (52060, '2022-01-17', 2020, 49555, 3484, 10164, '-11.0000', '7.5000', '7.5000', '9.5000', '9.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 (52061, '2022-01-17', 2020, 49555, 3484, NULL, '12.0000', '7.5000', '7.5000', '9.5000', '9.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 (52062, '2022-01-17', 2036, 49556, 3484, 4277, '-10.0000', '8.0000', '8.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 (52063, '2022-01-17', 2036, 49556, 3484, NULL, '11.0000', '8.0000', '8.0000', '10.0000', '10.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 (52064, '2022-01-17', 2037, 49557, 3484, 6389, '-10.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52065, '2022-01-17', 2037, 49557, 3484, NULL, '11.0000', '10.5000', '10.5000', '14.0000', '14.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 (52066, '2022-01-17', 7741, 49558, 3484, NULL, '1.0000', '1.2000', '1.2000', '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 (52067, '2022-01-17', 2669, 49559, 3484, 11757, '-3.0000', '24.5336', '24.5336', '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 (52068, '2022-01-17', 2669, 49559, 3484, NULL, '5.0000', '24.5336', '24.5336', '32.0000', '32.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 (52069, '2022-01-17', 2169, 49560, 3484, 10737, '-21.0000', '3.8397', '3.8397', '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 (52070, '2022-01-17', 2169, 49560, 3484, NULL, '22.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52071, '2022-01-17', 1831, 49561, 3484, NULL, '1.0000', '8.4400', '8.4400', '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 (52072, '2022-01-17', 7609, 49562, 3484, NULL, '1.0000', '4.3300', '4.3300', '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 (52073, '2022-01-17', 2169, 49563, 3484, 10737, '-21.0000', '3.8397', '3.8397', '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 (52074, '2022-01-17', 2169, 49563, 3484, NULL, '22.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52075, '2022-01-17', 7411, 49564, 3484, NULL, '1.0000', '1.3500', '1.3500', '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 (52076, '2022-01-17', 1667, 49565, 3484, 9745, '-38.0000', '5.9400', '5.9400', '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 (52077, '2022-01-17', 1667, 49565, 3484, NULL, '39.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52078, '2022-01-17', 7532, 49566, 3484, NULL, '1.0000', '20.6000', '20.6000', '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 (52079, '2022-01-17', 1346, 49567, 3484, 21942, '-99.0000', '1.0594', '1.0594', '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 (52080, '2022-01-17', 1346, 49567, 3484, NULL, '129.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-129.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52081, '2022-01-17', 8065, 49568, 3484, NULL, '1.0000', '32.0000', '32.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 (52082, '2022-01-17', 1462, 49569, 3484, NULL, '1.0000', '175.9730', '175.9730', '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 (52083, '2022-01-17', 1634, 49570, 3484, 2431, '1.0000', '24.6308', '24.6308', '33.0000', '33.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 (52084, '2022-01-17', 2695, 49571, 3484, 12336, '-14.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 (52085, '2022-01-17', 2695, 49571, 3484, NULL, '15.0000', '2.0000', '2.0000', '3.0000', '3.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 (52086, '2022-01-17', 2303, 49572, 3484, NULL, '1.0000', '16.1000', '16.1000', '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 (52087, '2022-01-17', 2635, 49573, 3484, 10297, '-11.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 (52088, '2022-01-17', 2635, 49573, 3484, NULL, '12.0000', '3.0000', '3.0000', '4.0000', '4.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 (52089, '2022-01-17', 1337, 49574, 3484, 10809, '-8.0000', '2.0000', '2.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 (52090, '2022-01-17', 1337, 49574, 3484, NULL, '9.0000', '2.0000', '2.0000', '3.5000', '3.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 (52091, '2022-01-17', 1701, 49575, 3484, 11266, '-5.0000', '14.7800', '14.7800', '20.5000', '20.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 (52092, '2022-01-17', 1701, 49575, 3484, NULL, '6.0000', '14.7800', '14.7800', '20.5000', '20.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 (52093, '2022-01-17', 1871, 49576, 3484, 8223, '-105.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 (52094, '2022-01-17', 1871, 49576, 3484, NULL, '125.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-125.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52095, '2022-01-17', 9480, 49577, 3484, NULL, '1.0000', '8.5000', '8.5000', '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 (52096, '2022-01-17', 2354, 49578, 3485, NULL, '1.0000', '5.0600', '5.0600', '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 (52097, '2022-01-17', 9623, 49579, 3485, 40336, '6.0000', '22.0000', '22.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52098, '2022-01-17', 9021, 49580, 3485, 39827, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52099, '2022-01-17', 8746, 49581, 3485, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52100, '2022-01-17', 1425, 49582, 3485, NULL, '1.0000', '6.3744', '6.3744', '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 (52101, '2022-01-17', 1602, 49583, 3485, NULL, '1.0000', '7.0303', '7.0303', '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 (52102, '2022-01-17', 9747, 49584, 3485, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52103, '2022-01-17', 2951, 49585, 3485, 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 (52104, '2022-01-17', 2020, 49586, 3485, NULL, '1.0000', '9.2832', '9.2832', '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 (52105, '2022-01-17', 1532, 49587, 3486, NULL, '1.0000', '7.4815', '7.4815', '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 (52106, '2022-01-17', 1580, 49588, 3486, 47780, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52107, '2022-01-17', 2169, 49589, 3486, NULL, '1.0000', '0.3873', '0.3873', '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 (52108, '2022-01-17', 1704, 49590, 3486, 44428, '1.0000', '21.3748', '21.3748', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 316);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52109, '2022-01-17', 8677, 49591, 3486, NULL, '1.0000', '182.2674', '182.2674', '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 (52110, '2022-01-17', 7802, 49592, 3486, 47070, '1.0000', '0.9200', '0.9200', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52111, '2022-01-17', 1840, 49593, 3486, 42569, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '18.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52112, '2022-01-17', 2993, 49594, 3486, 43232, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52113, '2022-01-17', 7411, 49595, 3486, NULL, '1.0000', '1.3427', '1.3427', '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 (52114, '2022-01-17', 2354, 49596, 3486, NULL, '1.0000', '5.0600', '5.0600', '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 (52115, '2022-01-17', 7672, 49597, 3486, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52116, '2022-01-17', 1912, 49598, 3486, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52117, '2022-01-17', 2169, 49599, 3486, NULL, '1.0000', '0.3873', '0.3873', '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 (52118, '2022-01-17', 7848, 49600, 3487, NULL, '1.0000', '-5.0424', '-5.0424', '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 (52119, '2022-01-17', 2769, 49601, 3487, 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 (52120, '2022-01-17', 2315, 49602, 3487, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '49.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52121, '2022-01-17', 7428, 49603, 3487, 46632, '10.0000', '9.6296', '9.6296', '4.0000', '4.0000', '47.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52122, '2022-01-17', 7877, 49604, 3487, NULL, '2.0000', '3.3867', '3.3867', '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 (52123, '2022-01-17', 7744, 49605, 3487, NULL, '1.0000', '2.7400', '2.7400', '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 (52124, '2022-01-17', 7592, 49606, 3487, NULL, '1.0000', '14.2175', '14.2175', '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 (52125, '2022-01-17', 1612, 49607, 3487, 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 (52126, '2022-01-17', 7848, 49608, 3487, NULL, '1.0000', '-5.0424', '-5.0424', '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 (52127, '2022-01-17', 8539, 49609, 3487, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '73.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52128, '2022-01-17', 8721, 49610, 3487, 47944, '2.0000', '-16.0000', '-16.0000', '30.5000', '30.5000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52129, '2022-01-17', 8466, 49611, 3487, NULL, '5.0000', '-24.7500', '-24.7500', '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 (52130, '2022-01-17', 7564, 49612, 3487, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52131, '2022-01-17', 7411, 49613, 3487, NULL, '1.0000', '1.3600', '1.3600', '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 (52132, '2022-01-17', 2906, 49614, 3487, 48118, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52133, '2022-01-17', 2363, 49615, 3487, 45806, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52134, '2022-01-17', 1623, 49616, 3487, NULL, '1.0000', '90.0000', '90.0000', '186.0000', '186.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52135, '2022-01-17', 8857, 49617, 3487, NULL, '1.0000', '21.1000', '21.1000', '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 (52136, '2022-01-17', 7527, 49618, 3487, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '92.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52137, '2022-01-17', 8417, 49619, 3487, NULL, '1.0000', '6.5500', '6.5500', '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 (52138, '2022-01-17', 7798, 49620, 3487, 45583, '1.0000', '13.1867', '13.1867', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52139, '2022-01-17', 9716, 49621, 3487, 45605, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52140, '2022-01-17', 1557, 49622, 3487, NULL, '1.0000', '7.7406', '7.7406', '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 (52141, '2022-01-17', 9202, 49623, 3487, NULL, '1.0000', '3.5000', '3.5000', '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 (52142, '2022-01-17', 7671, 49624, 3487, NULL, '2.0000', '47.1963', '47.1963', '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 (52143, '2022-01-17', 8063, 49625, 3487, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '97.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52144, '2022-01-17', 7715, 49626, 3487, 45339, '1.0000', '3.0922', '3.0922', '6.0000', '6.0000', '45.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52145, '2022-01-17', 7848, 49627, 3487, NULL, '1.0000', '-5.0424', '-5.0424', '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 (52146, '2022-01-17', 9498, 49628, 3487, NULL, '1.0000', '12.5000', '12.5000', '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 (52147, '2022-01-17', 8085, 49629, 3487, NULL, '3.0000', '61.8571', '61.8571', '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 (52148, '2022-01-17', 7411, 49630, 3487, NULL, '1.0000', '1.3600', '1.3600', '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 (52149, '2022-01-17', 7514, 49631, 3487, NULL, '1.0000', '51.3956', '51.3956', '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 (52150, '2022-01-17', 7674, 49632, 3487, NULL, '1.0000', '-249.1171', '-249.1171', '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 (52151, '2022-01-17', 8127, 49633, 3487, NULL, '1.0000', '24.5300', '24.5300', '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 (52152, '2022-01-17', 9098, 49634, 3487, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52153, '2022-01-17', 9744, 49635, 3487, 46911, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52154, '2022-01-17', 7933, 49636, 3487, NULL, '1.0000', '0.3245', '0.3245', '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 (52155, '2022-01-17', 8203, 49637, 3487, NULL, '2.0000', '2.3282', '2.3282', '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 (52156, '2022-01-17', 9001, 49638, 3487, NULL, '1.0000', '4.3300', '4.3300', '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 (52157, '2022-01-17', 8200, 49639, 3487, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (52158, '2022-01-17', 8456, 49640, 3487, 46178, '1.0000', '5.4911', '5.4911', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52159, '2022-01-17', 1867, 49641, 3487, NULL, '1.0000', '10.6996', '10.6996', '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 (52160, '2022-01-17', 9734, 49642, 3487, 46910, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '134.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52161, '2022-01-17', 2315, 49643, 3487, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '48.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52162, '2022-01-17', 2473, 49644, 3487, 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 (52163, '2022-01-17', 7514, 49645, 3487, NULL, '1.0000', '51.3956', '51.3956', '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 (52164, '2022-01-17', 7411, 49646, 3487, NULL, '1.0000', '1.3600', '1.3600', '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 (52165, '2022-01-17', 1612, 49647, 3487, 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 (52166, '2022-01-17', 7744, 49648, 3487, NULL, '1.0000', '2.7400', '2.7400', '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 (52167, '2022-01-17', 7640, 49649, 3487, 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 (52168, '2022-01-17', 7651, 49650, 3487, NULL, '1.0000', '-6.6500', '-6.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 (52169, '2022-01-17', 7459, 49651, 3487, NULL, '10.0000', '467.7123', '467.7123', '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 (52170, '2022-01-17', 9177, 49652, 3487, NULL, '5.0000', '2.2517', '2.2517', '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 (52171, '2022-01-17', 1672, 49653, 3487, 45817, '10.0000', '2.9200', '2.9200', '4.2000', '4.2000', '10.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52172, '2022-01-17', 9686, 49654, 3487, NULL, '1.0000', '13.4900', '13.4900', '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 (52173, '2022-01-17', 8722, 49655, 3487, NULL, '2.0000', '4.5000', '4.5000', '28.0000', '28.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 (52174, '2022-01-17', 1837, 49656, 3487, 46669, '3.0000', '0.4201', '0.4201', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52175, '2022-01-17', 8000, 49657, 3487, NULL, '1.0000', '249.4419', '249.4419', '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 (52176, '2022-01-17', 8481, 49658, 3487, NULL, '1.0000', '28.9290', '28.9290', '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 (52177, '2022-01-17', 7672, 49659, 3487, 48003, '1.0000', '3.8200', '3.8200', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52178, '2022-01-17', 7963, 49660, 3487, NULL, '1.0000', '-9.5000', '-9.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52179, '2022-01-17', 9089, 49661, 3488, NULL, '1.0000', '3.8000', '3.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 (52180, '2022-01-17', 1807, 49662, 3488, 16442, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.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 (52181, '2022-01-17', 1807, 49662, 3488, 16243, '4.0000', '1.8000', '1.8000', '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 (52182, '2022-01-17', 1528, 49663, 3488, NULL, '1.0000', '38.6400', '38.6400', '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 (52183, '2022-01-17', 7685, 49664, 3488, NULL, '3.0000', '31.2000', '31.2000', '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 (52184, '2022-01-17', 1910, 49665, 3488, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '35.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 (52185, '2022-01-17', 1573, 49666, 3488, 9746, '-6.0000', '29.9042', '29.9042', '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 (52186, '2022-01-17', 1573, 49666, 3488, NULL, '7.0000', '29.9042', '29.9042', '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 (52187, '2022-01-17', 1328, 49667, 3488, NULL, '1.0000', '3.1500', '3.1500', '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 (52188, '2022-01-17', 1645, 49668, 3488, 3217, '-5.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 (52189, '2022-01-17', 1645, 49668, 3488, NULL, '6.0000', '4.7200', '4.7200', '7.5000', '7.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 (52190, '2022-01-17', 8065, 49669, 3488, NULL, '1.0000', '32.0000', '32.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 (52191, '2022-01-17', 1440, 49670, 3488, 22353, '1.0000', '10.0000', '10.0000', '13.0000', '13.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 (52192, '2022-01-17', 7376, 49671, 3488, NULL, '1.0000', '141.7100', '141.7100', '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 (52193, '2022-01-17', 1519, 49672, 3488, 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 (52194, '2022-01-17', 2327, 49673, 3488, 5083, '-34.0000', '4.5000', '4.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 (52195, '2022-01-17', 2327, 49673, 3488, NULL, '35.0000', '4.5000', '4.5000', '5.0000', '5.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52196, '2022-01-17', 9734, 49674, 3488, NULL, '2.0000', '0.3200', '0.3200', '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 (52197, '2022-01-17', 2916, 49675, 3488, 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 (52198, '2022-01-17', 1347, 49676, 3488, 3320, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '0.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 (52199, '2022-01-17', 1347, 49676, 3488, 243, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '49.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52200, '2022-01-17', 2379, 49677, 3488, 4032, '-34.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 (52201, '2022-01-17', 2379, 49677, 3488, NULL, '35.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52202, '2022-01-17', 1602, 49678, 3488, 5897, '-87.0000', '6.7859', '6.7859', '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 (52203, '2022-01-17', 1602, 49678, 3488, NULL, '88.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52204, '2022-01-17', 2635, 49679, 3488, 10297, '-12.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 (52205, '2022-01-17', 2635, 49679, 3488, NULL, '13.0000', '3.0000', '3.0000', '4.0000', '4.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 (52206, '2022-01-17', 1602, 49680, 3488, 5897, '-87.0000', '6.7859', '6.7859', '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 (52207, '2022-01-17', 1602, 49680, 3488, NULL, '88.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52208, '2022-01-17', 2643, 49681, 3489, 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 (52209, '2022-01-17', 2379, 49682, 3489, 4032, '-35.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 (52210, '2022-01-17', 2379, 49682, 3489, NULL, '36.0000', '1.5900', '1.5900', '2.5000', '2.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 (52211, '2022-01-17', 2557, 49683, 3489, 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 (52212, '2022-01-17', 1602, 49684, 3489, 5897, '-89.0000', '6.7859', '6.7859', '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 (52213, '2022-01-17', 1602, 49684, 3489, NULL, '90.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52214, '2022-01-17', 1864, 49685, 3489, 7389, '-4.0000', '6.0500', '6.0500', '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 (52215, '2022-01-17', 1864, 49685, 3489, NULL, '5.0000', '6.0500', '6.0500', '9.0000', '9.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 (52216, '2022-01-17', 9723, 49686, 3489, 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 (52217, '2022-01-17', 3029, 49687, 3489, NULL, '1.0000', '4.7700', '4.7700', '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 (52218, '2022-01-17', 2970, 49688, 3489, 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 (52219, '2022-01-17', 1573, 49689, 3489, 9746, '-7.0000', '29.9042', '29.9042', '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 (52220, '2022-01-17', 1573, 49689, 3489, NULL, '8.0000', '29.9042', '29.9042', '32.0000', '32.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 (52221, '2022-01-17', 2442, 49690, 3489, 5312, '-1.0000', '4.8000', '4.8000', '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 (52222, '2022-01-17', 2442, 49690, 3489, NULL, '3.0000', '4.8000', '4.8000', '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 (52223, '2022-01-17', 1763, 49691, 3489, 3173, '1.0000', '4.6900', '4.6900', '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 (52224, '2022-01-17', 1574, 49692, 3489, 7593, '-51.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 (52225, '2022-01-17', 1574, 49692, 3489, NULL, '52.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52226, '2022-01-17', 1307, 49693, 3489, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '5.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 (52227, '2022-01-17', 2556, 49694, 3489, 7196, '-30.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 (52228, '2022-01-17', 2556, 49694, 3489, NULL, '31.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-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 (52229, '2022-01-17', 2350, 49695, 3489, 3853, '-3.0000', '10.3800', '10.3800', '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 (52230, '2022-01-17', 2350, 49695, 3489, NULL, '5.0000', '10.3800', '10.3800', '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 (52231, '2022-01-17', 1328, 49696, 3489, NULL, '1.0000', '3.1500', '3.1500', '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 (52232, '2022-01-17', 2543, 49697, 3489, 6304, '1.0000', '2.0000', '2.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 (52233, '2022-01-17', 2908, 49698, 3490, 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 (52234, '2022-01-17', 8984, 49699, 3490, NULL, '1.0000', '-100.8495', '-100.8495', '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 (52235, '2022-01-17', 1310, 49700, 3490, NULL, '3.0000', '0.4100', '0.4100', '0.6000', '0.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 (52236, '2022-01-17', 8677, 49701, 3490, NULL, '2.0000', '182.2674', '182.2674', '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 (52237, '2022-01-17', 9556, 49702, 3490, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52238, '2022-01-17', 2293, 49703, 3490, NULL, '2.0000', '2.7733', '2.7733', '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 (52239, '2022-01-17', 8759, 49704, 3490, NULL, '1.0000', '15.0800', '15.0800', '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 (52240, '2022-01-17', 7564, 49705, 3490, 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 (52241, '2022-01-17', 7741, 49706, 3490, NULL, '1.0000', '1.2000', '1.2000', '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 (52242, '2022-01-17', 2169, 49707, 3490, NULL, '1.0000', '0.3873', '0.3873', '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 (52243, '2022-01-17', 8208, 49708, 3490, NULL, '2.0000', '33.0000', '33.0000', '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 (52244, '2022-01-17', 1863, 49709, 3490, 43283, '1.0000', '1.3603', '1.3603', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52245, '2022-01-17', 9556, 49710, 3490, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52246, '2022-01-17', 9579, 49711, 3490, 47857, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 350);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52247, '2022-01-17', 2169, 49712, 3490, NULL, '1.0000', '0.3873', '0.3873', '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 (52248, '2022-01-17', 1499, 49713, 3490, NULL, '2.0000', '0.6447', '0.6447', '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 (52249, '2022-01-17', 2237, 49714, 3490, NULL, '1.0000', '-726.9308', '-726.9308', '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 (52250, '2022-01-17', 7630, 49715, 3490, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (52251, '2022-01-17', 9607, 49716, 3490, 39821, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52252, '2022-01-17', 1665, 49717, 3490, NULL, '1.0000', '1.1075', '1.1075', '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 (52253, '2022-01-17', 2821, 49718, 3490, NULL, '1.0000', '3.9376', '3.9376', '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 (52254, '2022-01-17', 2169, 49719, 3490, NULL, '1.0000', '0.3873', '0.3873', '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 (52255, '2022-01-17', 2989, 49720, 3490, 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 (52256, '2022-01-17', 7411, 49721, 3490, NULL, '1.0000', '1.3413', '1.3413', '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 (52257, '2022-01-17', 7736, 49722, 3490, 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 (52258, '2022-01-17', 9155, 49723, 3490, NULL, '1.0000', '13.5000', '13.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 (52259, '2022-01-17', 1687, 49724, 3490, NULL, '1.0000', '-3.8008', '-3.8008', '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 (52260, '2022-01-17', 7954, 49725, 3490, 34017, '4.0000', '11.1369', '11.1369', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52261, '2022-01-17', 1489, 49726, 3490, 34950, '1.0000', '28.1700', '28.1700', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52262, '2022-01-17', 8761, 49727, 3490, 45282, '1.0000', '11.3420', '11.3420', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52263, '2022-01-17', 1478, 49728, 3490, 42813, '1.0000', '-46.0000', '-46.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52264, '2022-01-17', 7824, 49729, 3490, 39802, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52265, '2022-01-17', 9740, 49730, 3490, 47076, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52266, '2022-01-17', 9155, 49731, 3490, NULL, '1.0000', '13.5000', '13.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 (52267, '2022-01-17', 7799, 49732, 3490, NULL, '1.0000', '2.0000', '2.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 (52268, '2022-01-17', 2237, 49733, 3490, NULL, '1.0000', '-726.9308', '-726.9308', '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 (52269, '2022-01-17', 9204, 49734, 3490, NULL, '4.0000', '8.1600', '8.1600', '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 (52270, '2022-01-17', 1746, 49735, 3490, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (52271, '2022-01-17', 8057, 49736, 3490, NULL, '1.0000', '6.0000', '6.0000', '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 (52272, '2022-01-17', 9758, 49737, 3490, NULL, '1.0000', '3.1400', '3.1400', '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 (52273, '2022-01-17', 1699, 49738, 3490, NULL, '1.0000', '3.2000', '3.2000', '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 (52274, '2022-01-17', 1840, 49739, 3490, 42569, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '16.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52275, '2022-01-17', 1841, 49740, 3490, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '7.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52276, '2022-01-17', 2169, 49741, 3491, 10737, '-24.0000', '3.8397', '3.8397', '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 (52277, '2022-01-17', 2169, 49741, 3491, NULL, '25.0000', '3.8397', '3.8397', '2.0000', '2.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 (52278, '2022-01-17', 1665, 49742, 3491, 3235, '-57.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 (52279, '2022-01-17', 1665, 49742, 3491, NULL, '58.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52280, '2022-01-17', 2964, 49743, 3491, NULL, '1.0000', '6.6000', '6.6000', '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 (52281, '2022-01-17', 9734, 49744, 3491, NULL, '2.0000', '0.3200', '0.3200', '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 (52282, '2022-01-17', 2221, 49745, 3491, 4154, '-51.0000', '14.4737', '14.4737', '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 (52283, '2022-01-17', 2221, 49745, 3491, NULL, '52.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52284, '2022-01-17', 1871, 49746, 3491, 8223, '-125.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 (52285, '2022-01-17', 1871, 49746, 3491, NULL, '135.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52286, '2022-01-17', 1658, 49747, 3491, 3229, '-5.0000', '27.9300', '27.9300', '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 (52287, '2022-01-17', 1658, 49747, 3491, NULL, '6.0000', '27.9300', '27.9300', '37.0000', '37.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 (52288, '2022-01-17', 2455, 49748, 3491, 5643, '-5.0000', '7.5300', '7.5300', '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 (52289, '2022-01-17', 2455, 49748, 3491, NULL, '6.0000', '7.5300', '7.5300', '10.0000', '10.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 (52290, '2022-01-17', 2315, 49749, 3492, 47139, '2.0000', '0.0977', '0.0977', '0.8000', '0.8000', '71.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52291, '2022-01-17', 9741, 49750, 3492, 47101, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52292, '2022-01-17', 7411, 49751, 3492, NULL, '2.0000', '1.3413', '1.3413', '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 (52293, '2022-01-17', 2315, 49752, 3492, 47139, '2.0000', '0.0977', '0.0977', '0.8000', '0.8000', '71.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52294, '2022-01-17', 1689, 49753, 3492, 39798, '1.0000', '12.9279', '12.9279', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52295, '2022-01-17', 1590, 49754, 3492, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (52296, '2022-01-17', 2315, 49755, 3492, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '72.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52297, '2022-01-17', 9772, 49756, 3493, 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 (52298, '2022-01-17', 2068, 49757, 3493, 5568, '-18.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 (52299, '2022-01-17', 2068, 49757, 3493, NULL, '19.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-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 (52300, '2022-01-17', 2163, 49758, 3493, NULL, '1.0000', '20.0000', '20.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 (52301, '2022-01-17', 9577, 49759, 3493, NULL, '2.0000', '0.3200', '0.3200', '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 (52302, '2022-01-17', 1568, 49760, 3493, 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 (52303, '2022-01-17', 3017, 49761, 3493, NULL, '1.0000', '3.9000', '3.9000', '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 (52304, '2022-01-17', 9636, 49762, 3493, NULL, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52305, '2022-01-17', 8756, 49763, 3493, 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 (52306, '2022-01-17', 1602, 49764, 3493, 5897, '-90.0000', '6.7859', '6.7859', '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 (52307, '2022-01-17', 1602, 49764, 3493, NULL, '91.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-91.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52308, '2022-01-17', 9094, 49765, 3493, NULL, '1.0000', '5.7000', '5.7000', '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 (52309, '2022-01-17', 2858, 49766, 3493, 17772, '-39.0000', '1.0000', '1.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 (52310, '2022-01-17', 2858, 49766, 3493, NULL, '40.0000', '1.0000', '1.0000', '5.0000', '5.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 (52311, '2022-01-17', 1621, 49767, 3493, 7385, '-13.0000', '6.6000', '6.6000', '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 (52312, '2022-01-17', 1621, 49767, 3493, NULL, '14.0000', '6.6000', '6.6000', '8.0000', '8.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 (52313, '2022-01-17', 2817, 49768, 3493, NULL, '20.0000', '1.8200', '1.8200', '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 (52314, '2022-01-17', 1807, 49769, 3493, 16243, '4.0000', '1.8000', '1.8000', '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 (52315, '2022-01-17', 7711, 49770, 3494, NULL, '1.0000', '35.6300', '35.6300', '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 (52316, '2022-01-17', 7473, 49771, 3494, NULL, '3.0000', '0.5300', '0.5300', '0.6000', '0.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 (52317, '2022-01-17', 1367, 49772, 3494, 11001, '14.0000', '-17710.9284', '-17710.9284', '7.0000', '7.0000', '6.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 (52318, '2022-01-17', 7671, 49773, 3494, NULL, '1.0000', '15.5000', '15.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 (52319, '2022-01-17', 7892, 49774, 3494, NULL, '1.0000', '4.2000', '4.2000', '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 (52320, '2022-01-17', 7318, 49775, 3494, NULL, '1.0000', '13.4400', '13.4400', '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 (52321, '2022-01-17', 8064, 49776, 3494, 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 (52322, '2022-01-17', 7778, 49777, 3494, 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 (52323, '2022-01-17', 7651, 49778, 3494, NULL, '1.0000', '2.6700', '2.6700', '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 (52324, '2022-01-17', 7822, 49779, 3494, 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 (52325, '2022-01-17', 7412, 49780, 3494, NULL, '1.0000', '1.5200', '1.5200', '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 (52326, '2022-01-17', 8200, 49781, 3494, NULL, '1.0000', '6.2600', '6.2600', '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 (52327, '2022-01-17', 7671, 49782, 3494, NULL, '2.0000', '15.5000', '15.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 (52328, '2022-01-17', 8308, 49783, 3494, NULL, '1.0000', '2.0800', '2.0800', '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 (52329, '2022-01-17', 7489, 49784, 3494, NULL, '2.0000', '2.4300', '2.4300', '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 (52330, '2022-01-17', 7769, 49785, 3494, 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 (52331, '2022-01-17', 7678, 49786, 3494, NULL, '1.0000', '5.1400', '5.1400', '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 (52332, '2022-01-17', 1935, 49787, 3494, 5586, '-54.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 (52333, '2022-01-17', 1935, 49787, 3494, NULL, '55.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (52334, '2022-01-17', 7411, 49788, 3494, NULL, '1.0000', '1.3500', '1.3500', '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 (52335, '2022-01-17', 1755, 49789, 3494, 3165, '-2.0000', '5.5900', '5.5900', '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 (52336, '2022-01-17', 1755, 49789, 3494, NULL, '3.0000', '5.5900', '5.5900', '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 (52337, '2022-01-17', 7715, 49790, 3494, NULL, '1.0000', '1.8900', '1.8900', '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 (52338, '2022-01-17', 7518, 49791, 3494, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52339, '2022-01-17', 9668, 49792, 3494, 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 (52340, '2022-01-17', 8000, 49793, 3494, NULL, '1.0000', '6.8400', '6.8400', '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 (52341, '2022-01-17', 7774, 49794, 3494, NULL, '1.0000', '3.3000', '3.3000', '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 (52342, '2022-01-17', 7872, 49795, 3494, 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 (52343, '2022-01-17', 1867, 49796, 3494, NULL, '2.0000', '1.0500', '1.0500', '14.5000', '14.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 (52344, '2022-01-17', 9498, 49797, 3494, 33074, '1.0000', '12.5000', '12.5000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52345, '2022-01-17', 9498, 49797, 3494, NULL, '1.0000', '12.5000', '12.5000', '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 (52346, '2022-01-17', 9394, 49798, 3494, NULL, '1.0000', '5.5000', '5.5000', '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 (52347, '2022-01-17', 9691, 49799, 3494, NULL, '1.0000', '57.5200', '57.5200', '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 (52348, '2022-01-17', 7705, 49800, 3494, NULL, '1.0000', '22.9900', '22.9900', '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 (52349, '2022-01-17', 7774, 49801, 3494, NULL, '1.0000', '3.3000', '3.3000', '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 (52350, '2022-01-17', 7921, 49802, 3494, NULL, '1.0000', '0.3000', '0.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 (52351, '2022-01-17', 7612, 49803, 3494, NULL, '2.0000', '1.7300', '1.7300', '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 (52352, '2022-01-17', 7324, 49804, 3494, NULL, '4.0000', '4.0000', '4.0000', '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 (52353, '2022-01-17', 7674, 49805, 3494, 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 (52354, '2022-01-17', 2761, 49806, 3494, 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 (52355, '2022-01-17', 7317, 49807, 3494, NULL, '1.0000', '19.5500', '19.5500', '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 (52356, '2022-01-17', 8698, 49808, 3494, NULL, '1.0000', '2.0000', '2.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 (52357, '2022-01-17', 7678, 49809, 3494, NULL, '1.0000', '5.1400', '5.1400', '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 (52358, '2022-01-17', 7886, 49810, 3494, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52359, '2022-01-17', 7334, 49811, 3494, NULL, '3.0000', '8.2300', '8.2300', '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 (52360, '2022-01-17', 7719, 49812, 3494, NULL, '2.0000', '6.0000', '6.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 (52361, '2022-01-17', 7703, 49813, 3494, NULL, '2.0000', '22.9900', '22.9900', '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 (52362, '2022-01-17', 9095, 49814, 3494, NULL, '1.0000', '8.7600', '8.7600', '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 (52363, '2022-01-17', 7927, 49815, 3494, NULL, '1.0000', '11.9800', '11.9800', '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 (52364, '2022-01-17', 7946, 49816, 3494, NULL, '1.0000', '1.1000', '1.1000', '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 (52365, '2022-01-17', 8488, 49817, 3494, NULL, '1.0000', '35.0000', '35.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 (52366, '2022-01-17', 1578, 49818, 3494, 7597, '-2.0000', '1.9700', '1.9700', '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 (52367, '2022-01-17', 1578, 49818, 3494, NULL, '4.0000', '1.9700', '1.9700', '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 (52368, '2022-01-17', 7379, 49819, 3494, NULL, '1.0000', '12.5100', '12.5100', '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 (52369, '2022-01-17', 9013, 49820, 3495, NULL, '1.0000', '18.0000', '18.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 (52370, '2022-01-17', 9012, 49821, 3495, NULL, '1.0000', '24.0000', '24.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 (52371, '2022-01-17', 7825, 49822, 3495, NULL, '1.0000', '6.5000', '6.5000', '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 (52372, '2022-01-17', 9532, 49823, 3495, NULL, '2.0000', '11.0000', '11.0000', '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 (52373, '2022-01-17', 8616, 49824, 3495, 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 (52374, '2022-01-17', 7514, 49825, 3496, NULL, '1.0000', '2.2500', '2.2500', '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 (52375, '2022-01-17', 7459, 49826, 3496, NULL, '20.0000', '-6.1729', '-6.1729', '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 (52376, '2022-01-17', 2887, 49827, 3497, 44546, '1.0000', '9.7831', '9.7831', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52377, '2022-01-17', 9579, 49828, 3497, 47855, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 349);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52378, '2022-01-17', 2360, 49829, 3497, 42957, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '36.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52379, '2022-01-17', 2317, 49830, 3497, 39176, '6.0000', '15.0000', '15.0000', '18.0000', '18.0000', '36.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52380, '2022-01-17', 2407, 49831, 3497, 46779, '1.0000', '20.5200', '20.5200', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52381, '2022-01-17', 8761, 49832, 3497, 45623, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52382, '2022-01-17', 2660, 49833, 3497, 42944, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52383, '2022-01-17', 1935, 49834, 3497, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52384, '2022-01-17', 2135, 49835, 3497, 41999, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52385, '2022-01-17', 1935, 49836, 3497, 46073, '2.0000', '1.9058', '1.9058', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52386, '2022-01-17', 1621, 49837, 3497, 44615, '1.0000', '46.2610', '46.2610', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52387, '2022-01-17', 2106, 49838, 3497, 6018, '1.0000', '0.9900', '0.9900', '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 (52388, '2022-01-17', 1313, 49839, 3497, 18414, '1.0000', '0.4200', '0.4200', '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 (52389, '2022-01-17', 1574, 49840, 3497, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52390, '2022-01-17', 2169, 49841, 3497, 46750, '1.0000', '1.1430', '1.1430', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52391, '2022-01-17', 1602, 49842, 3497, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52392, '2022-01-17', 7954, 49843, 3497, 33014, '4.0000', '-168.0501', '-168.0501', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52393, '2022-01-17', 2511, 49844, 3497, 47832, '1.0000', '8.8021', '8.8021', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 348);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52394, '2022-01-17', 1425, 49845, 3497, 46765, '1.0000', '6.9825', '6.9825', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52395, '2022-01-17', 1537, 49846, 3497, 44604, '1.0000', '44.0400', '44.0400', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52396, '2022-01-17', 1839, 49847, 3497, 46723, '1.0000', '7.3995', '7.3995', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52397, '2022-01-17', 1863, 49848, 3497, 45136, '3.0000', '1.2570', '1.2570', '2.0000', '2.0000', '90.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52398, '2022-01-17', 2458, 49849, 3497, 47959, '1.0000', '13.0286', '13.0286', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52399, '2022-01-17', 1604, 49850, 3497, 45086, '1.0000', '78.6236', '78.6236', '57.0000', '57.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52400, '2022-01-17', 2003, 49851, 3497, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52401, '2022-01-17', 1339, 49852, 3497, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52402, '2022-01-17', 2858, 49853, 3497, 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 (52403, '2022-01-17', 2302, 49854, 3497, 47976, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52404, '2022-01-17', 2858, 49855, 3497, 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 (52405, '2022-01-17', 1561, 49856, 3497, 37586, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52406, '2022-01-17', 2491, 49857, 3497, 44711, '1.0000', '13.0919', '13.0919', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52407, '2022-01-17', 2307, 49858, 3497, 46710, '2.0000', '185.3498', '185.3498', '190.0000', '190.0000', '2.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52408, '2022-01-17', 2020, 49859, 3497, 44618, '1.0000', '-5.0518', '-5.0518', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52409, '2022-01-17', 1502, 49860, 3497, 46563, '1.0000', '-13.4526', '-13.4526', '11.0000', '11.0000', '16.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52410, '2022-01-17', 1812, 49861, 3497, 46737, '1.0000', '7.9697', '7.9697', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52411, '2022-01-17', 3016, 49862, 3497, 40616, '1.0000', '14.5200', '14.5200', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52412, '2022-01-17', 8052, 49863, 3497, NULL, '1.0000', '29.0000', '29.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 (52413, '2022-01-18', 1523, 49864, 3498, NULL, '1.0000', '1.0061', '1.0061', '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 (52414, '2022-01-18', 2315, 49865, 3498, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '67.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52415, '2022-01-18', 2136, 49866, 3498, 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 (52416, '2022-01-18', 1386, 49867, 3498, 47137, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52417, '2022-01-18', 1782, 49868, 3498, 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 (52418, '2022-01-18', 2633, 49869, 3498, 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 (52419, '2022-01-18', 7406, 49870, 3498, NULL, '1.0000', '2.3750', '2.3750', '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 (52420, '2022-01-18', 1856, 49871, 3498, NULL, '1.0000', '3.9349', '3.9349', '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 (52421, '2022-01-18', 3058, 49872, 3498, NULL, '1.0000', '2.3000', '2.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 (52422, '2022-01-18', 1783, 49873, 3498, 42070, '1.0000', '137.4528', '137.4528', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52423, '2022-01-18', 2458, 49874, 3498, 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 (52424, '2022-01-18', 1501, 49875, 3498, NULL, '1.0000', '2.2100', '2.2100', '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 (52425, '2022-01-18', 7954, 49876, 3498, 34017, '1.0000', '11.1369', '11.1369', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52426, '2022-01-18', 1912, 49877, 3498, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52427, '2022-01-18', 7869, 49878, 3498, 39883, '2.0000', '4.2900', '4.2900', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52428, '2022-01-18', 2713, 49879, 3498, 44440, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52429, '2022-01-18', 1571, 49880, 3498, 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 (52430, '2022-01-18', 9503, 49881, 3498, 33350, '2.0000', '24.1775', '24.1775', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52431, '2022-01-18', 1590, 49882, 3498, NULL, '1.0000', '1.9878', '1.9878', '2.3000', '2.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 (52432, '2022-01-18', 1854, 49883, 3499, NULL, '1.0000', '2.1572', '2.1572', '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 (52433, '2022-01-18', 1419, 49884, 3500, NULL, '1.0000', '13.1040', '13.1040', '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 (52434, '2022-01-18', 1401, 49885, 3500, 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 (52435, '2022-01-18', 1672, 49886, 3500, 47106, '14.0000', '6.1898', '6.1898', '4.2000', '4.2000', '22.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52436, '2022-01-18', 1824, 49887, 3500, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52437, '2022-01-18', 2270, 49888, 3500, 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 (52438, '2022-01-18', 2296, 49889, 3501, NULL, '1.0000', '13.2900', '13.2900', '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 (52439, '2022-01-18', 1523, 49890, 3501, NULL, '1.0000', '1.0061', '1.0061', '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 (52440, '2022-01-18', 2643, 49891, 3501, 45273, '6.0000', '0.8700', '0.8700', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52441, '2022-01-18', 3054, 49892, 3501, NULL, '1.0000', '7.0000', '7.0000', '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 (52442, '2022-01-18', 9726, 49893, 3501, 47063, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52443, '2022-01-18', 2221, 49894, 3501, 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 (52444, '2022-01-18', 1342, 49895, 3502, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52445, '2022-01-18', 2573, 49896, 3503, NULL, '1.0000', '8.7800', '8.7800', '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 (52446, '2022-01-18', 1339, 49897, 3504, NULL, '1.0000', '2.0000', '2.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 (52447, '2022-01-18', 1665, 49898, 3505, 3235, '-58.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 (52448, '2022-01-18', 1665, 49898, 3505, NULL, '59.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52449, '2022-01-18', 9577, 49899, 3505, 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 (52450, '2022-01-18', 2382, 49900, 3505, 4035, '-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 (52451, '2022-01-18', 2382, 49900, 3505, NULL, '2.0000', '15.6600', '15.6600', '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 (52452, '2022-01-18', 1572, 49901, 3505, 20586, '1.0000', '138.3520', '138.3520', '2.5000', '2.5000', '5.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 (52453, '2022-01-18', 1661, 49902, 3505, 3232, '-2.0000', '90.0000', '90.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 (52454, '2022-01-18', 1661, 49902, 3505, NULL, '3.0000', '90.0000', '90.0000', '47.5000', '47.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 (52455, '2022-01-18', 9714, 49903, 3505, 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 (52456, '2022-01-18', 9772, 49904, 3505, 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 (52457, '2022-01-18', 7376, 49905, 3505, NULL, '10.0000', '141.7100', '141.7100', '15.0000', '15.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 (52458, '2022-01-18', 2131, 49906, 3505, 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 (52459, '2022-01-18', 2335, 49907, 3505, 21488, '1.0000', '12.8784', '12.8784', '21.0000', '21.0000', '2.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 (52460, '2022-01-18', 9750, 49908, 3505, NULL, '1.0000', '3.3000', '3.3000', '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 (52461, '2022-01-18', 2916, 49909, 3505, 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 (52462, '2022-01-18', 2476, 49910, 3505, 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 (52463, '2022-01-18', 1912, 49911, 3505, 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 (52464, '2022-01-18', 9734, 49912, 3505, NULL, '4.0000', '0.3200', '0.3200', '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 (52465, '2022-01-18', 1859, 49913, 3505, 7388, '1.0000', '22.6760', '22.6760', '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 (52466, '2022-01-18', 1912, 49914, 3505, 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 (52467, '2022-01-18', 2681, 49915, 3505, 12164, '-15.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 (52468, '2022-01-18', 2681, 49915, 3505, NULL, '18.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-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 (52469, '2022-01-18', 9538, 49916, 3505, NULL, '1.0000', '23.0000', '23.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52470, '2022-01-18', 2556, 49917, 3505, 7196, '-31.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 (52471, '2022-01-18', 2556, 49917, 3505, NULL, '32.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52472, '2022-01-18', 2315, 49918, 3506, 47139, '3.0000', '0.0977', '0.0977', '0.8000', '0.8000', '64.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52473, '2022-01-18', 1674, 49919, 3507, NULL, '1.0000', '2.8008', '2.8008', '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 (52474, '2022-01-18', 2135, 49920, 3507, 18930, '1.0000', '2.4732', '2.4732', '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 (52475, '2022-01-18', 2169, 49921, 3507, NULL, '1.0000', '5.0338', '5.0338', '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 (52476, '2022-01-18', 2315, 49922, 3507, 47139, '4.0000', '0.0977', '0.0977', '0.8000', '0.8000', '60.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52477, '2022-01-18', 1574, 49923, 3507, 48648, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52478, '2022-01-18', 2036, 49924, 3507, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '9.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 (52479, '2022-01-18', 8775, 49925, 3507, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52480, '2022-01-18', 7641, 49926, 3507, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52481, '2022-01-18', 9204, 49927, 3507, NULL, '1.0000', '8.1600', '8.1600', '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 (52482, '2022-01-18', 2379, 49928, 3507, NULL, '2.0000', '1.6341', '1.6341', '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 (52483, '2022-01-18', 1512, 49929, 3507, 43269, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52484, '2022-01-18', 1339, 49930, 3507, NULL, '1.0000', '2.0000', '2.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 (52485, '2022-01-18', 2250, 49931, 3507, 48128, '1.0000', '6.9835', '6.9835', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52486, '2022-01-18', 9413, 49932, 3507, 38544, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52487, '2022-01-18', 1912, 49933, 3507, 41409, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52488, '2022-01-18', 1602, 49934, 3507, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52489, '2022-01-18', 7411, 49935, 3507, NULL, '1.0000', '1.3013', '1.3013', '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 (52490, '2022-01-18', 9725, 49936, 3507, 47064, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52491, '2022-01-18', 9556, 49937, 3507, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52492, '2022-01-18', 3054, 49938, 3507, 48502, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52493, '2022-01-18', 1499, 49939, 3507, NULL, '2.0000', '0.6447', '0.6447', '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 (52494, '2022-01-18', 2291, 49940, 3507, 48672, '1.0000', '21.0000', '21.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52495, '2022-01-18', 7802, 49941, 3507, 47070, '1.0000', '0.9200', '0.9200', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52496, '2022-01-18', 3044, 49942, 3507, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '44.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 (52497, '2022-01-18', 1499, 49943, 3507, NULL, '2.0000', '0.6447', '0.6447', '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 (52498, '2022-01-18', 1840, 49944, 3507, 42569, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52499, '2022-01-18', 1912, 49945, 3507, 41409, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52500, '2022-01-18', 9214, 49946, 3507, 45278, '1.0000', '9.8180', '9.8180', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52501, '2022-01-18', 1387, 49947, 3507, NULL, '1.0000', '11.7000', '11.7000', '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 (52502, '2022-01-18', 2242, 49948, 3507, 48480, '1.0000', '6.1534', '6.1534', '1.5000', '1.5000', '68.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52503, '2022-01-18', 7799, 49949, 3507, NULL, '1.0000', '2.0000', '2.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 (52504, '2022-01-18', 2169, 49950, 3507, NULL, '1.0000', '5.0338', '5.0338', '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 (52505, '2022-01-18', 3044, 49951, 3507, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '44.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 (52506, '2022-01-18', 9732, 49952, 3507, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52507, '2022-01-18', 7411, 49953, 3508, NULL, '1.0000', '1.3600', '1.3600', '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 (52508, '2022-01-18', 9656, 49954, 3508, 42665, '1.0000', '33.0000', '33.0000', '43.5000', '43.5000', '0.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52509, '2022-01-18', 7547, 49955, 3508, NULL, '2.0000', '0.0000', '0.0000', '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 (52510, '2022-01-18', 7694, 49956, 3508, NULL, '1.0000', '4.7900', '4.7900', '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 (52511, '2022-01-18', 7641, 49957, 3508, NULL, '1.0000', '-60.9381', '-60.9381', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52512, '2022-01-18', 7727, 49958, 3508, NULL, '1.0000', '0.9000', '0.9000', '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 (52513, '2022-01-18', 8941, 49959, 3508, NULL, '1.0000', '12.0000', '12.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 (52514, '2022-01-18', 7715, 49960, 3508, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '44.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52515, '2022-01-18', 8945, 49961, 3508, NULL, '12.0000', '9.0000', '9.0000', '1.1700', '1.1700', '-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 (52516, '2022-01-18', 9413, 49962, 3508, 46252, '1.0000', '9.0251', '9.0251', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52517, '2022-01-18', 2965, 49963, 3508, NULL, '1.0000', '3.9200', '3.9200', '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 (52518, '2022-01-18', 9761, 49964, 3508, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52519, '2022-01-18', 7412, 49965, 3508, NULL, '1.0000', '1.5200', '1.5200', '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 (52520, '2022-01-18', 9758, 49966, 3508, 46936, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52521, '2022-01-18', 7684, 49967, 3508, NULL, '2.0000', '9.0000', '9.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 (52522, '2022-01-18', 1337, 49968, 3508, 48105, '1.0000', '0.6544', '0.6544', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52523, '2022-01-18', 7980, 49969, 3508, NULL, '10.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (52524, '2022-01-18', 7862, 49970, 3508, NULL, '1.0000', '17.8000', '17.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 (52525, '2022-01-18', 7824, 49971, 3508, NULL, '1.0000', '10.0834', '10.0834', '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 (52526, '2022-01-18', 7473, 49972, 3508, NULL, '5.0000', '104.1526', '104.1526', '0.6000', '0.6000', '-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 (52527, '2022-01-18', 9337, 49973, 3508, 48301, '5.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52528, '2022-01-18', 7754, 49974, 3508, NULL, '1.0000', '19.0200', '19.0200', '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 (52529, '2022-01-18', 7459, 49975, 3508, NULL, '4.0000', '467.7123', '467.7123', '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 (52530, '2022-01-18', 7658, 49976, 3508, 47945, '2.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '14.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52531, '2022-01-18', 7473, 49977, 3508, NULL, '10.0000', '104.1526', '104.1526', '0.6000', '0.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 (52532, '2022-01-18', 7509, 49978, 3508, NULL, '1.0000', '6.6934', '6.6934', '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 (52533, '2022-01-18', 7703, 49979, 3508, NULL, '2.0000', '22.9900', '22.9900', '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 (52534, '2022-01-18', 9409, 49980, 3508, NULL, '1.0000', '5.6784', '5.6784', '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 (52535, '2022-01-18', 1542, 49981, 3508, NULL, '1.0000', '115.7329', '115.7329', '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 (52536, '2022-01-18', 7625, 49982, 3508, 48261, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52537, '2022-01-18', 7930, 49983, 3508, NULL, '1.0000', '1.3000', '1.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 (52538, '2022-01-18', 9337, 49984, 3508, 48301, '1.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52539, '2022-01-18', 2921, 49985, 3508, NULL, '1.0000', '4.9000', '4.9000', '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 (52540, '2022-01-18', 8539, 49986, 3508, 46695, '5.0000', '2.6082', '2.6082', '0.8000', '0.8000', '68.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52541, '2022-01-18', 7518, 49987, 3508, NULL, '1.0000', '20764214.8274', '20764214.8274', '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 (52542, '2022-01-18', 2289, 49988, 3508, NULL, '2.0000', '0.9629', '0.9629', '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 (52543, '2022-01-18', 1840, 49989, 3508, 48008, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52544, '2022-01-18', 1841, 49990, 3508, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52545, '2022-01-18', 7708, 49991, 3508, NULL, '1.0000', '4.1860', '4.1860', '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 (52546, '2022-01-18', 2448, 49992, 3508, 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 (52547, '2022-01-18', 9761, 49993, 3508, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52548, '2022-01-18', 7507, 49994, 3508, NULL, '3.0000', '6.5000', '6.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 (52549, '2022-01-18', 7786, 49995, 3508, NULL, '1.0000', '22.0000', '22.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 (52550, '2022-01-18', 2295, 49996, 3508, 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 (52551, '2022-01-18', 7412, 49997, 3508, NULL, '1.0000', '1.5200', '1.5200', '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 (52552, '2022-01-18', 7518, 49998, 3508, NULL, '1.0000', '20764214.8274', '20764214.8274', '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 (52553, '2022-01-18', 9272, 49999, 3508, NULL, '1.0000', '3.1000', '3.1000', '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 (52554, '2022-01-18', 7743, 50000, 3508, NULL, '1.0000', '419203.7668', '419203.7668', '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 (52555, '2022-01-18', 7886, 50001, 3508, NULL, '1.0000', '6.7841', '6.7841', '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 (52556, '2022-01-18', 7641, 50002, 3508, NULL, '1.0000', '-60.9381', '-60.9381', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52557, '2022-01-18', 2616, 50003, 3508, 45807, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52558, '2022-01-18', 7482, 50004, 3508, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52559, '2022-01-18', 7473, 50005, 3508, NULL, '2.0000', '104.1526', '104.1526', '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 (52560, '2022-01-18', 1837, 50006, 3508, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52561, '2022-01-18', 9021, 50007, 3508, NULL, '3.0000', '7.0000', '7.0000', '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 (52562, '2022-01-18', 7703, 50008, 3508, NULL, '2.0000', '22.9900', '22.9900', '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 (52563, '2022-01-18', 7781, 50009, 3509, NULL, '3.0000', '4.2500', '4.2500', '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 (52564, '2022-01-18', 7353, 50010, 3509, 45856, '1.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52565, '2022-01-18', 7820, 50011, 3509, NULL, '1.0000', '-970.6000', '-970.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52566, '2022-01-18', 7524, 50012, 3509, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52567, '2022-01-18', 7712, 50013, 3509, NULL, '1.0000', '-34.3361', '-34.3361', '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 (52568, '2022-01-18', 8046, 50014, 3509, NULL, '6.0000', '456.2805', '456.2805', '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 (52569, '2022-01-18', 7636, 50015, 3509, 48834, '2.0000', '11.8700', '11.8700', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52570, '2022-01-18', 8362, 50016, 3509, NULL, '2.0000', '4.1000', '4.1000', '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 (52571, '2022-01-18', 7412, 50017, 3509, NULL, '1.0000', '1.5200', '1.5200', '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 (52572, '2022-01-18', 1837, 50018, 3509, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52573, '2022-01-18', 7641, 50019, 3509, NULL, '1.0000', '-60.9381', '-60.9381', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52574, '2022-01-18', 7674, 50020, 3509, NULL, '1.0000', '-249.1171', '-249.1171', '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 (52575, '2022-01-18', 7996, 50021, 3509, NULL, '1.0000', '19.0200', '19.0200', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52576, '2022-01-18', 7856, 50022, 3509, NULL, '1.0000', '6.4000', '6.4000', '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 (52577, '2022-01-18', 8308, 50023, 3509, NULL, '1.0000', '14.1857', '14.1857', '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 (52578, '2022-01-18', 7743, 50024, 3509, NULL, '2.0000', '419203.7668', '419203.7668', '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 (52579, '2022-01-18', 7886, 50025, 3509, NULL, '1.0000', '6.7841', '6.7841', '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 (52580, '2022-01-18', 1854, 50026, 3509, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52581, '2022-01-18', 7704, 50027, 3509, NULL, '1.0000', '-1.5625', '-1.5625', '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 (52582, '2022-01-19', 2965, 50028, 3510, NULL, '1.0000', '5.6266', '5.6266', '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 (52583, '2022-01-19', 1666, 50029, 3510, 41371, '1.0000', '2.7429', '2.7429', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52584, '2022-01-19', 9399, 50030, 3510, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52585, '2022-01-19', 9758, 50031, 3510, NULL, '1.0000', '3.1400', '3.1400', '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 (52586, '2022-01-19', 1760, 50032, 3510, NULL, '1.0000', '1.5900', '1.5900', '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 (52587, '2022-01-19', 9734, 50033, 3510, 47079, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '56.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52588, '2022-01-19', 2660, 50034, 3510, 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 (52589, '2022-01-19', 1651, 50035, 3510, 48637, '1.0000', '4.9996', '4.9996', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52590, '2022-01-19', 2251, 50036, 3510, 39868, '1.0000', '12.1904', '12.1904', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52591, '2022-01-19', 2360, 50037, 3510, NULL, '1.0000', '0.5200', '0.5200', '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 (52592, '2022-01-19', 1807, 50038, 3510, 48635, '2.0000', '34.9993', '34.9993', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52593, '2022-01-19', 2556, 50039, 3510, 25158, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '21.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 (52594, '2022-01-19', 1665, 50040, 3510, 48596, '1.0000', '1.0998', '1.0998', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52595, '2022-01-19', 2635, 50041, 3510, 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 (52596, '2022-01-19', 7482, 50042, 3510, NULL, '1.0000', '2.8136', '2.8136', '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 (52597, '2022-01-19', 1564, 50043, 3510, 48457, '2.0000', '2.4842', '2.4842', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52598, '2022-01-19', 1805, 50044, 3510, 48676, '1.0000', '15.0770', '15.0770', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52599, '2022-01-19', 1347, 50045, 3510, 41415, '3.0000', '3.3775', '3.3775', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52600, '2022-01-19', 2242, 50046, 3510, 48899, '2.0000', '4.6984', '4.6984', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52601, '2022-01-19', 9750, 50047, 3510, NULL, '1.0000', '3.3000', '3.3000', '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 (52602, '2022-01-19', 2713, 50048, 3510, 44440, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52603, '2022-01-19', 2295, 50049, 3510, 48904, '1.0000', '1.1161', '1.1161', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52604, '2022-01-19', 8984, 50050, 3510, NULL, '1.0000', '-100.8495', '-100.8495', '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 (52605, '2022-01-19', 1863, 50051, 3510, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52606, '2022-01-19', 8745, 50052, 3510, 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 (52607, '2022-01-19', 2315, 50053, 3510, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '59.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52608, '2022-01-19', 2454, 50054, 3511, 45070, '1.0000', '9.0417', '9.0417', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52609, '2022-01-19', 1425, 50055, 3511, 46765, '1.0000', '6.9825', '6.9825', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52610, '2022-01-19', 1841, 50056, 3511, 44579, '2.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52611, '2022-01-19', 8608, 50057, 3511, NULL, '1.0000', '0.9000', '0.9000', '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 (52612, '2022-01-19', 1602, 50058, 3511, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52613, '2022-01-19', 2287, 50059, 3511, 3127, '3.0000', '1.8000', '1.8000', '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 (52614, '2022-01-19', 2065, 50060, 3511, 5492, '1.0000', '1.6000', '1.6000', '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 (52615, '2022-01-19', 1863, 50061, 3511, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52616, '2022-01-19', 9579, 50062, 3511, 47855, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 349);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52617, '2022-01-19', 1353, 50063, 3511, 17041, '1.0000', '20.5000', '20.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 (52618, '2022-01-19', 1650, 50064, 3511, 46729, '1.0000', '14.8000', '14.8000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52619, '2022-01-19', 1665, 50065, 3511, 48781, '1.0000', '1.2108', '1.2108', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52620, '2022-01-19', 9750, 50066, 3511, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '49.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52621, '2022-01-19', 2236, 50067, 3511, 46027, '1.0000', '5.7498', '5.7498', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52622, '2022-01-19', 9094, 50068, 3511, 46952, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52623, '2022-01-19', 2864, 50069, 3511, 44797, '1.0000', '1.0421', '1.0421', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52624, '2022-01-19', 2135, 50070, 3511, 41999, '2.0000', '1.2424', '1.2424', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52625, '2022-01-19', 1602, 50071, 3511, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52626, '2022-01-19', 8965, 50072, 3511, NULL, '1.0000', '52.9900', '52.9900', '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 (52627, '2022-01-19', 8133, 50073, 3511, NULL, '1.0000', '5.0000', '5.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 (52628, '2022-01-19', 8111, 50074, 3511, NULL, '1.0000', '2.4000', '2.4000', '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 (52629, '2022-01-19', 2255, 50075, 3511, 29807, '1.0000', '17.4900', '17.4900', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52630, '2022-01-19', 1651, 50076, 3511, 48792, '1.0000', '6.7088', '6.7088', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52631, '2022-01-19', 2169, 50077, 3511, 46750, '1.0000', '1.1430', '1.1430', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52632, '2022-01-19', 2414, 50078, 3511, NULL, '2.0000', '3.8350', '3.8350', '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 (52633, '2022-01-19', 2244, 50079, 3511, 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 (52634, '2022-01-19', 1942, 50080, 3511, 46610, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52635, '2022-01-19', 2327, 50081, 3511, 45068, '2.0000', '16.5543', '16.5543', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52636, '2022-01-19', 1303, 50082, 3511, 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 (52637, '2022-01-19', 1671, 50083, 3511, 45109, '1.0000', '50.1006', '50.1006', '70.0000', '70.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52638, '2022-01-19', 1687, 50084, 3511, 48796, '1.0000', '12.9700', '12.9700', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52639, '2022-01-19', 1761, 50085, 3511, 44765, '1.0000', '1.8333', '1.8333', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52640, '2022-01-19', 1908, 50086, 3511, 5510, '1.0000', '1.7500', '1.7500', '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 (52641, '2022-01-19', 1574, 50087, 3511, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52642, '2022-01-19', 7715, 50088, 3512, NULL, '1.0000', '1.8900', '1.8900', '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 (52643, '2022-01-19', 1854, 50089, 3512, 48880, '1.0000', '2.6997', '2.6997', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52644, '2022-01-19', 7411, 50090, 3512, NULL, '1.0000', '1.3013', '1.3013', '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 (52645, '2022-01-19', 1428, 50091, 3512, 48938, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52646, '2022-01-19', 1831, 50092, 3512, 48957, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52647, '2022-01-19', 7411, 50093, 3512, NULL, '1.0000', '1.3013', '1.3013', '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 (52648, '2022-01-19', 1337, 50094, 3512, NULL, '1.0000', '2.0000', '2.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 (52649, '2022-01-19', 3057, 50095, 3512, 24958, '2.0000', '2.7000', '2.7000', '4.5000', '4.5000', '22.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 (52650, '2022-01-19', 9758, 50096, 3512, NULL, '1.0000', '3.1400', '3.1400', '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 (52651, '2022-01-19', 8780, 50097, 3512, NULL, '1.0000', '46.0000', '46.0000', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52652, '2022-01-19', 2169, 50098, 3512, 48884, '1.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52653, '2022-01-19', 2142, 50099, 3513, 1357, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '2.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 (52654, '2022-01-19', 9577, 50100, 3513, NULL, '2.0000', '0.3200', '0.3200', '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 (52655, '2022-01-19', 1339, 50101, 3513, 13004, '-3.0000', '1.6012', '1.6012', '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 (52656, '2022-01-19', 1339, 50101, 3513, NULL, '4.0000', '1.6012', '1.6012', '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 (52657, '2022-01-19', 1347, 50102, 3513, 243, '5.0000', '3.4000', '3.4000', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52658, '2022-01-19', 1908, 50103, 3513, 5444, '-27.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 (52659, '2022-01-19', 1908, 50103, 3513, NULL, '28.0000', '90.0000', '90.0000', '1.0000', '1.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 (52660, '2022-01-19', 2379, 50104, 3513, 4032, '-36.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 (52661, '2022-01-19', 2379, 50104, 3513, NULL, '37.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52662, '2022-01-19', 1380, 50105, 3513, NULL, '1.0000', '1640.1972', '1640.1972', '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 (52663, '2022-01-19', 3005, 50106, 3513, 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 (52664, '2022-01-19', 2221, 50107, 3513, 4154, '-52.0000', '14.4737', '14.4737', '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 (52665, '2022-01-19', 2221, 50107, 3513, NULL, '53.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-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 (52666, '2022-01-19', 1583, 50108, 3513, NULL, '2.0000', '90.0000', '90.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 (52667, '2022-01-19', 2858, 50109, 3513, 17772, '-40.0000', '1.0000', '1.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 (52668, '2022-01-19', 2858, 50109, 3513, NULL, '41.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (52669, '2022-01-19', 9749, 50110, 3513, NULL, '1.0000', '8.2900', '8.2900', '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 (52670, '2022-01-19', 1574, 50111, 3513, 7593, '-52.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 (52671, '2022-01-19', 1574, 50111, 3513, NULL, '53.0000', '1.9600', '1.9600', '2.5000', '2.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 (52672, '2022-01-19', 1602, 50112, 3513, 5897, '-91.0000', '6.7859', '6.7859', '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 (52673, '2022-01-19', 1602, 50112, 3513, NULL, '92.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52674, '2022-01-19', 9094, 50113, 3513, NULL, '1.0000', '5.7000', '5.7000', '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 (52675, '2022-01-19', 2352, 50114, 3513, 3855, '-65.0000', '20.0000', '20.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 (52676, '2022-01-19', 2352, 50114, 3513, NULL, '70.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52677, '2022-01-19', 1935, 50115, 3513, 5586, '-55.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 (52678, '2022-01-19', 1935, 50115, 3513, NULL, '56.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52679, '2022-01-19', 1409, 50116, 3513, 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 (52680, '2022-01-19', 1871, 50117, 3513, 8223, '-135.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 (52681, '2022-01-19', 1871, 50117, 3513, NULL, '145.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52682, '2022-01-19', 2299, 50118, 3513, 22479, '-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 (52683, '2022-01-19', 2299, 50118, 3513, NULL, '2.0000', '6.0000', '6.0000', '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 (52684, '2022-01-19', 9734, 50119, 3513, NULL, '2.0000', '0.3200', '0.3200', '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 (52685, '2022-01-19', 2331, 50120, 3513, 3834, '-9.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 (52686, '2022-01-19', 2331, 50120, 3513, NULL, '10.0000', '12.0700', '12.0700', '16.0000', '16.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 (52687, '2022-01-19', 1840, 50121, 3513, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (52688, '2022-01-19', 1841, 50122, 3513, 645, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '7.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 (52689, '2022-01-19', 1912, 50123, 3513, 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 (52690, '2022-01-19', 1505, 50124, 3513, 10379, '-2.0000', '13.3062', '13.3062', '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 (52691, '2022-01-19', 1505, 50124, 3513, NULL, '3.0000', '13.3062', '13.3062', '18.0000', '18.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 (52692, '2022-01-19', 1812, 50125, 3513, 8224, '-58.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 (52693, '2022-01-19', 1812, 50125, 3513, NULL, '59.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52694, '2022-01-19', 9716, 50126, 3514, NULL, '1.0000', '4.4000', '4.4000', '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 (52695, '2022-01-19', 8774, 50127, 3514, NULL, '1.0000', '2.3000', '2.3000', '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 (52696, '2022-01-19', 7564, 50128, 3514, 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 (52697, '2022-01-19', 9557, 50129, 3515, 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 (52698, '2022-01-19', 8457, 50130, 3515, NULL, '1.0000', '5.0785', '5.0785', '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 (52699, '2022-01-19', 9267, 50131, 3515, 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 (52700, '2022-01-19', 8101, 50132, 3515, NULL, '2.0000', '21.7000', '21.7000', '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 (52701, '2022-01-19', 7457, 50133, 3515, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '16.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52702, '2022-01-19', 7938, 50134, 3515, 39599, '1.0000', '2.9000', '2.9000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52703, '2022-01-19', 7506, 50135, 3515, NULL, '1.0000', '15.0000', '15.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 (52704, '2022-01-19', 7673, 50136, 3515, NULL, '1.0000', '15.9274', '15.9274', '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 (52705, '2022-01-19', 1840, 50137, 3515, 48008, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52706, '2022-01-19', 1841, 50138, 3515, 48007, '1.0000', '0.1792', '0.1792', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52707, '2022-01-19', 9740, 50139, 3515, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52708, '2022-01-19', 1837, 50140, 3515, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52709, '2022-01-19', 7674, 50141, 3515, NULL, '1.0000', '-249.1171', '-249.1171', '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 (52710, '2022-01-19', 1413, 50142, 3515, 43522, '4.0000', '17.0000', '17.0000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52711, '2022-01-19', 9217, 50143, 3515, 44475, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52712, '2022-01-19', 8318, 50144, 3515, NULL, '1.0000', '5.5000', '5.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 (52713, '2022-01-19', 9579, 50145, 3515, 47858, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 351);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52714, '2022-01-19', 1762, 50146, 3515, 45800, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52715, '2022-01-19', 1510, 50147, 3515, 47901, '1.0000', '8.7203', '8.7203', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52716, '2022-01-19', 9274, 50148, 3515, NULL, '1.0000', '3.5638', '3.5638', '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 (52717, '2022-01-19', 7749, 50149, 3515, 43076, '1.0000', '20.0200', '20.0200', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52718, '2022-01-19', 7552, 50150, 3515, 46672, '1.0000', '4.3990', '4.3990', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52719, '2022-01-19', 1989, 50151, 3515, NULL, '1.0000', '4.2500', '4.2500', '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 (52720, '2022-01-19', 7473, 50152, 3515, NULL, '1.0000', '104.1526', '104.1526', '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 (52721, '2022-01-19', 2315, 50153, 3515, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '46.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52722, '2022-01-19', 9729, 50154, 3515, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52723, '2022-01-19', 9001, 50155, 3515, NULL, '1.0000', '4.3300', '4.3300', '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 (52724, '2022-01-19', 7704, 50156, 3515, NULL, '1.0000', '-1.5625', '-1.5625', '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 (52725, '2022-01-19', 9303, 50157, 3515, NULL, '1.0000', '9.0000', '9.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 (52726, '2022-01-19', 1854, 50158, 3515, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52727, '2022-01-19', 9092, 50159, 3515, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '126.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52728, '2022-01-19', 9167, 50160, 3515, 34497, '1.0000', '-1112.9272', '-1112.9272', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52729, '2022-01-19', 9579, 50161, 3515, 47858, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 351);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52730, '2022-01-19', 7674, 50162, 3515, NULL, '1.0000', '-249.1171', '-249.1171', '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 (52731, '2022-01-19', 9560, 50163, 3515, 40407, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52732, '2022-01-19', 8444, 50164, 3515, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52733, '2022-01-19', 7638, 50165, 3515, 45317, '2.0000', '12.8793', '12.8793', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52734, '2022-01-19', 7368, 50166, 3515, 43099, '1.0000', '-12.4609', '-12.4609', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52735, '2022-01-19', 1689, 50167, 3515, NULL, '1.0000', '12.3500', '12.3500', '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 (52736, '2022-01-19', 7507, 50168, 3515, NULL, '3.0000', '6.5000', '6.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 (52737, '2022-01-19', 2284, 50169, 3515, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52738, '2022-01-19', 7518, 50170, 3515, NULL, '1.0000', '20764214.8274', '20764214.8274', '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 (52739, '2022-01-19', 9740, 50171, 3515, 46921, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52740, '2022-01-19', 7879, 50172, 3515, NULL, '10.0000', '1.9800', '1.9800', '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 (52741, '2022-01-19', 9751, 50173, 3515, 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 (52742, '2022-01-19', 7641, 50174, 3515, NULL, '1.0000', '-60.9381', '-60.9381', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52743, '2022-01-19', 2315, 50175, 3515, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '46.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52744, '2022-01-19', 8810, 50176, 3515, NULL, '1.0000', '2.5002', '2.5002', '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 (52745, '2022-01-19', 7743, 50177, 3515, NULL, '1.0000', '419203.7668', '419203.7668', '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 (52746, '2022-01-19', 2012, 50178, 3515, 42792, '2.0000', '12.0000', '12.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52747, '2022-01-19', 8497, 50179, 3515, NULL, '1.0000', '1126.4862', '1126.4862', '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 (52748, '2022-01-19', 8186, 50180, 3515, NULL, '3.0000', '1.0800', '1.0800', '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 (52749, '2022-01-19', 8089, 50181, 3515, 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 (52750, '2022-01-19', 7741, 50182, 3515, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52751, '2022-01-19', 8208, 50183, 3515, NULL, '1.0000', '33.0000', '33.0000', '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 (52752, '2022-01-19', 1612, 50184, 3515, 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 (52753, '2022-01-19', 8203, 50185, 3515, NULL, '2.0000', '2.3282', '2.3282', '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 (52754, '2022-01-19', 2506, 50186, 3515, NULL, '1.0000', '3.3543', '3.3543', '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 (52755, '2022-01-19', 9736, 50187, 3515, 46927, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52756, '2022-01-19', 7318, 50188, 3515, NULL, '1.0000', '17.2098', '17.2098', '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 (52757, '2022-01-19', 9534, 50189, 3515, 45799, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52758, '2022-01-19', 8547, 50190, 3515, 39596, '1.0000', '7.7333', '7.7333', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52759, '2022-01-19', 9756, 50191, 3515, NULL, '1.0000', '52.0000', '52.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 (52760, '2022-01-19', 8702, 50192, 3515, NULL, '1.0000', '3.6700', '3.6700', '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 (52761, '2022-01-19', 2603, 50193, 3515, 44231, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52762, '2022-01-19', 7518, 50194, 3515, NULL, '1.0000', '20764214.8274', '20764214.8274', '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 (52763, '2022-01-19', 9747, 50195, 3516, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52764, '2022-01-19', 7411, 50196, 3516, NULL, '1.0000', '1.3013', '1.3013', '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 (52765, '2022-01-19', 1425, 50197, 3516, NULL, '1.0000', '6.1845', '6.1845', '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 (52766, '2022-01-19', 1527, 50198, 3516, 24924, '1.0000', '13.1000', '13.1000', '17.5000', '17.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 (52767, '2022-01-19', 2753, 50199, 3516, 32534, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52768, '2022-01-19', 2545, 50200, 3516, 38553, '1.0000', '4.2678', '4.2678', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52769, '2022-01-19', 2298, 50201, 3516, NULL, '1.0000', '5.7840', '5.7840', '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 (52770, '2022-01-19', 7684, 50202, 3516, NULL, '1.0000', '9.0000', '9.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 (52771, '2022-01-19', 2635, 50203, 3516, 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 (52772, '2022-01-19', 9613, 50204, 3517, 39208, '1.0000', '30.0000', '30.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52773, '2022-01-19', 1407, 50205, 3517, 44545, '1.0000', '17.1011', '17.1011', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52774, '2022-01-19', 7825, 50206, 3517, NULL, '1.0000', '6.5000', '6.5000', '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 (52775, '2022-01-19', 2445, 50207, 3517, 29837, '10.0000', '4.5913', '4.5913', '5.2800', '5.2800', '26.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52776, '2022-01-19', 7824, 50208, 3517, 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 (52777, '2022-01-19', 2167, 50209, 3517, 48783, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52778, '2022-01-19', 2699, 50210, 3517, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52779, '2022-01-19', 2858, 50211, 3517, 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 (52780, '2022-01-19', 9488, 50212, 3517, 32630, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52781, '2022-01-19', 7857, 50213, 3517, 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 (52782, '2022-01-19', 1763, 50214, 3517, 45123, '1.0000', '4.7323', '4.7323', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52783, '2022-01-19', 8119, 50215, 3517, 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 (52784, '2022-01-19', 7756, 50216, 3517, NULL, '1.0000', '23.9111', '23.9111', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52785, '2022-01-19', 7736, 50217, 3517, 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 (52786, '2022-01-19', 7408, 50218, 3517, NULL, '1.0000', '1.0000', '1.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 (52787, '2022-01-19', 9520, 50219, 3517, 34702, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52788, '2022-01-19', 2810, 50220, 3517, 40612, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52789, '2022-01-19', 8216, 50221, 3517, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52790, '2022-01-19', 2366, 50222, 3517, 47955, '2.0000', '4.0694', '4.0694', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52791, '2022-01-19', 9529, 50223, 3517, 44533, '1.0000', '9.2200', '9.2200', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52792, '2022-01-19', 2920, 50224, 3517, NULL, '2.0000', '22.0000', '22.0000', '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 (52793, '2022-01-19', 9734, 50225, 3517, 46028, '10.0000', '0.3200', '0.3200', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52794, '2022-01-19', 2169, 50226, 3517, 46750, '1.0000', '1.1430', '1.1430', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52795, '2022-01-19', 2320, 50227, 3517, 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 (52796, '2022-01-19', 2916, 50228, 3517, 48791, '1.0000', '14.3032', '14.3032', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52797, '2022-01-19', 8190, 50229, 3517, NULL, '1.0000', '11.0500', '11.0500', '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 (52798, '2022-01-19', 9735, 50230, 3517, 46029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52799, '2022-01-19', 1944, 50231, 3517, 5598, '1.0000', '5.0000', '5.0000', '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 (52800, '2022-01-19', 2413, 50232, 3517, 24121, '3.0000', '1.0500', '1.0500', '1.5000', '1.5000', '37.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 (52801, '2022-01-19', 8677, 50233, 3517, 49108, '2.0000', '2.2418', '2.2418', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52802, '2022-01-19', 7933, 50234, 3517, NULL, '1.0000', '0.4400', '0.4400', '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 (52803, '2022-01-19', 1812, 50235, 3517, 49109, '1.0000', '7.9718', '7.9718', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52804, '2022-01-19', 7324, 50236, 3517, NULL, '1.0000', '55.7000', '55.7000', '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 (52805, '2022-01-19', 9487, 50237, 3517, 32628, '1.0000', '23.0000', '23.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52806, '2022-01-19', 9486, 50238, 3517, 32627, '1.0000', '23.0000', '23.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52807, '2022-01-19', 1349, 50239, 3517, 49027, '1.0000', '34.4144', '34.4144', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52808, '2022-01-19', 2612, 50240, 3517, 46606, '1.0000', '7.6850', '7.6850', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52809, '2022-01-19', 2612, 50241, 3517, 46606, '1.0000', '7.6850', '7.6850', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52810, '2022-01-19', 2135, 50242, 3517, 40580, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52811, '2022-01-19', 1863, 50243, 3517, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52812, '2022-01-19', 2858, 50244, 3517, 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 (52813, '2022-01-19', 2762, 50245, 3517, 45127, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52814, '2022-01-19', 1854, 50246, 3517, 49092, '1.0000', '2.7353', '2.7353', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52815, '2022-01-19', 9442, 50247, 3518, 40450, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52816, '2022-01-19', 2251, 50248, 3518, 45857, '1.0000', '11.7132', '11.7132', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52817, '2022-01-19', 7991, 50249, 3518, NULL, '1.0000', '26.5700', '26.5700', '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 (52818, '2022-01-19', 9631, 50250, 3518, 45866, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '12.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52819, '2022-01-19', 7496, 50251, 3518, NULL, '1.0000', '0.9600', '0.9600', '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 (52820, '2022-01-19', 7709, 50252, 3518, NULL, '2.0000', '39.7124', '39.7124', '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 (52821, '2022-01-19', 1765, 50253, 3518, 48061, '1.0000', '5.4523', '5.4523', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52822, '2022-01-19', 9734, 50254, 3518, 46910, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '131.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52823, '2022-01-19', 7509, 50255, 3518, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52824, '2022-01-19', 8200, 50256, 3518, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (52825, '2022-01-19', 1935, 50257, 3518, 45606, '1.0000', '28.7657', '28.7657', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52826, '2022-01-19', 2169, 50258, 3519, 48884, '1.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52827, '2022-01-19', 8000, 50259, 3519, NULL, '1.0000', '25.8200', '25.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 (52828, '2022-01-19', 2169, 50260, 3519, 48884, '1.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52829, '2022-01-19', 7819, 50261, 3519, NULL, '1.0000', '10.0999', '10.0999', '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 (52830, '2022-01-19', 2315, 50262, 3519, 47139, '1.0000', '0.0977', '0.0977', '0.8000', '0.8000', '58.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52831, '2022-01-19', 7958, 50263, 3519, NULL, '1.0000', '13.0000', '13.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 (52832, '2022-01-19', 1863, 50264, 3519, 48719, '2.0000', '1.3601', '1.3601', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52833, '2022-01-19', 2169, 50265, 3519, 48884, '1.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52834, '2022-01-19', 8775, 50266, 3519, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52835, '2022-01-19', 1426, 50267, 3520, 44591, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52836, '2022-01-19', 2593, 50268, 3520, NULL, '1.0000', '14.4000', '14.4000', '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 (52837, '2022-01-19', 1510, 50269, 3520, 49059, '1.0000', '4.7450', '4.7450', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52838, '2022-01-19', 1880, 50270, 3520, 44562, '1.0000', '4.7065', '4.7065', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52839, '2022-01-19', 1954, 50271, 3521, 47998, '1.0000', '-21.8000', '-21.8000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52840, '2022-01-19', 1668, 50272, 3521, 46771, '1.0000', '53.1130', '53.1130', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52841, '2022-01-19', 8743, 50273, 3522, 39420, '1.0000', '9.6250', '9.6250', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52842, '2022-01-19', 1337, 50274, 3523, NULL, '1.0000', '2.0000', '2.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 (52843, '2022-01-20', 2068, 50275, 3524, 48158, '1.0000', '11.8658', '11.8658', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52844, '2022-01-20', 2761, 50276, 3524, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52845, '2022-01-20', 1698, 50277, 3524, 34937, '1.0000', '8.4500', '8.4500', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52846, '2022-01-20', 2384, 50278, 3524, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52847, '2022-01-20', 1805, 50279, 3524, 48676, '1.0000', '15.0770', '15.0770', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52848, '2022-01-20', 2169, 50280, 3524, 48884, '2.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52849, '2022-01-20', 2659, 50281, 3524, 23129, '1.0000', '25.4800', '25.4800', '34.0000', '34.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 (52850, '2022-01-20', 7514, 50282, 3524, NULL, '1.0000', '2.2500', '2.2500', '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 (52851, '2022-01-20', 1672, 50283, 3524, 47106, '10.0000', '6.1898', '6.1898', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52852, '2022-01-20', 9750, 50284, 3524, NULL, '1.0000', '3.3000', '3.3000', '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 (52853, '2022-01-20', 1450, 50285, 3524, 43237, '3.0000', '0.8900', '0.8900', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52854, '2022-01-20', 1450, 50285, 3524, 24966, '1.0000', '0.8900', '0.8900', '1.2000', '1.2000', '19.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 (52855, '2022-01-20', 9335, 50286, 3524, 42091, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52856, '2022-01-20', 2366, 50287, 3524, NULL, '4.0000', '-17.8500', '-17.8500', '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 (52857, '2022-01-20', 1520, 50288, 3524, 48888, '2.0000', '1.4700', '1.4700', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52858, '2022-01-20', 1779, 50289, 3524, 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 (52859, '2022-01-20', 2169, 50290, 3524, 48884, '1.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52860, '2022-01-20', 7419, 50291, 3524, 39759, '1.0000', '24.8900', '24.8900', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52861, '2022-01-20', 1812, 50292, 3524, 48636, '1.0000', '7.8904', '7.8904', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52862, '2022-01-20', 9601, 50293, 3524, NULL, '5.0000', '0.3000', '0.3000', '0.4000', '0.4000', '-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 (52863, '2022-01-20', 2245, 50294, 3524, 23178, '2.0000', '0.7000', '0.7000', '1.0000', '1.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 (52864, '2022-01-20', 2318, 50295, 3524, NULL, '2.0000', '0.5000', '0.5000', '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 (52865, '2022-01-20', 2379, 50296, 3524, NULL, '1.0000', '1.6341', '1.6341', '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 (52866, '2022-01-20', 9601, 50297, 3524, NULL, '10.0000', '0.3000', '0.3000', '0.4000', '0.4000', '-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 (52867, '2022-01-20', 3058, 50298, 3524, NULL, '1.0000', '2.3000', '2.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 (52868, '2022-01-20', 1812, 50299, 3524, 48636, '1.0000', '7.8904', '7.8904', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52869, '2022-01-20', 2713, 50300, 3524, 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 (52870, '2022-01-20', 1947, 50301, 3524, 41417, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52871, '2022-01-20', 2169, 50302, 3524, 48884, '1.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52872, '2022-01-20', 8984, 50303, 3524, NULL, '1.0000', '-100.8495', '-100.8495', '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 (52873, '2022-01-20', 8000, 50304, 3524, NULL, '1.0000', '25.8200', '25.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 (52874, '2022-01-20', 1947, 50305, 3524, 41417, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52875, '2022-01-20', 2761, 50306, 3524, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52876, '2022-01-20', 1746, 50307, 3524, 19863, '1.0000', '3.5000', '3.5000', '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 (52877, '2022-01-20', 1935, 50308, 3524, 48658, '1.0000', '0.9686', '0.9686', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52878, '2022-01-20', 1950, 50309, 3524, NULL, '1.0000', '3.5525', '3.5525', '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 (52879, '2022-01-20', 9750, 50310, 3524, NULL, '1.0000', '3.3000', '3.3000', '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 (52880, '2022-01-20', 2109, 50311, 3524, 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 (52881, '2022-01-20', 9734, 50312, 3524, 47079, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52882, '2022-01-20', 1863, 50313, 3524, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52883, '2022-01-20', 2754, 50314, 3524, 18938, '2.0000', '0.0800', '0.0800', '0.5000', '0.5000', '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 (52884, '2022-01-20', 1564, 50315, 3524, 48457, '3.0000', '2.4842', '2.4842', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52885, '2022-01-20', 2916, 50316, 3524, NULL, '1.0000', '11.2778', '11.2778', '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 (52886, '2022-01-20', 2169, 50317, 3524, 48884, '1.0000', '-3.9273', '-3.9273', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52887, '2022-01-20', 9702, 50318, 3524, 44442, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52888, '2022-01-20', 9683, 50319, 3524, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52889, '2022-01-20', 1831, 50320, 3525, NULL, '2.0000', '8.4400', '8.4400', '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 (52890, '2022-01-20', 1349, 50321, 3525, 10162, '-1.0000', '20.8300', '20.8300', '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 (52891, '2022-01-20', 1349, 50321, 3525, NULL, '2.0000', '20.8300', '20.8300', '46.0000', '46.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 (52892, '2022-01-20', 2916, 50322, 3525, 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 (52893, '2022-01-20', 9772, 50323, 3525, 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 (52894, '2022-01-20', 2169, 50324, 3525, 10737, '-25.0000', '3.8397', '3.8397', '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 (52895, '2022-01-20', 2169, 50324, 3525, NULL, '27.0000', '3.8397', '3.8397', '2.0000', '2.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 (52896, '2022-01-20', 2968, 50325, 3525, NULL, '1.0000', '18.0000', '18.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 (52897, '2022-01-20', 2898, 50326, 3525, 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 (52898, '2022-01-20', 9579, 50327, 3525, 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 (52899, '2022-01-20', 2624, 50328, 3525, 19678, '-3.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 (52900, '2022-01-20', 2624, 50328, 3525, NULL, '4.0000', '15.0000', '15.0000', '20.0000', '20.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 (52901, '2022-01-20', 2345, 50329, 3525, 3848, '-3.0000', '7.6400', '7.6400', '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 (52902, '2022-01-20', 2345, 50329, 3525, NULL, '4.0000', '7.6400', '7.6400', '11.0000', '11.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 (52903, '2022-01-20', 1831, 50330, 3525, NULL, '1.0000', '8.4400', '8.4400', '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 (52904, '2022-01-20', 9734, 50331, 3525, NULL, '4.0000', '0.3200', '0.3200', '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 (52905, '2022-01-20', 9738, 50332, 3525, NULL, '1.0000', '5.9000', '5.9000', '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 (52906, '2022-01-20', 1761, 50333, 3525, 3171, '-12.0000', '1.8200', '1.8200', '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 (52907, '2022-01-20', 1761, 50333, 3525, NULL, '13.0000', '1.8200', '1.8200', '3.0000', '3.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 (52908, '2022-01-20', 1564, 50334, 3525, 18921, '2.0000', '2.6000', '2.6000', '4.0000', '4.0000', '78.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 (52909, '2022-01-20', 1673, 50335, 3525, 9406, '-1.0000', '1.2900', '1.2900', '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 (52910, '2022-01-20', 1673, 50335, 3525, NULL, '3.0000', '1.2900', '1.2900', '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 (52911, '2022-01-20', 3001, 50336, 3526, 37759, '3.0000', '2.5621', '2.5621', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52912, '2022-01-20', 2169, 50337, 3526, 49264, '1.0000', '0.6850', '0.6850', '2.0000', '2.0000', '119.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52913, '2022-01-20', 2237, 50338, 3526, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52914, '2022-01-20', 2169, 50339, 3526, 49264, '1.0000', '0.6850', '0.6850', '2.0000', '2.0000', '119.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52915, '2022-01-20', 7882, 50340, 3526, 48209, '1.0000', '1.6737', '1.6737', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52916, '2022-01-20', 2283, 50341, 3526, 48600, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52917, '2022-01-20', 2259, 50342, 3526, 48669, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52918, '2022-01-20', 2541, 50343, 3526, 48961, '1.0000', '11.3875', '11.3875', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52919, '2022-01-20', 1314, 50344, 3526, 48145, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52920, '2022-01-20', 2103, 50345, 3526, 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 (52921, '2022-01-20', 1342, 50346, 3526, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52922, '2022-01-20', 9766, 50347, 3526, NULL, '1.0000', '12.7500', '12.7500', '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 (52923, '2022-01-20', 9747, 50348, 3526, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52924, '2022-01-20', 2221, 50349, 3526, 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 (52925, '2022-01-20', 2169, 50350, 3526, 49264, '1.0000', '0.6850', '0.6850', '2.0000', '2.0000', '119.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52926, '2022-01-20', 2315, 50351, 3526, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '299.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52927, '2022-01-20', 2315, 50352, 3526, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '298.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52928, '2022-01-20', 2068, 50353, 3526, 48158, '1.0000', '11.8658', '11.8658', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52929, '2022-01-20', 2237, 50354, 3526, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52930, '2022-01-20', 9729, 50355, 3526, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52931, '2022-01-20', 1425, 50356, 3526, NULL, '1.0000', '5.0176', '5.0176', '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 (52932, '2022-01-20', 2059, 50357, 3526, 44437, '1.0000', '8.8934', '8.8934', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52933, '2022-01-20', 2642, 50358, 3526, 22561, '1.0000', '9.3605', '9.3605', '12.0000', '12.0000', '6.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 (52934, '2022-01-20', 7955, 50359, 3526, 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 (52935, '2022-01-20', 2135, 50360, 3526, 18930, '1.0000', '2.4732', '2.4732', '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 (52936, '2022-01-20', 3058, 50361, 3526, NULL, '1.0000', '2.3000', '2.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 (52937, '2022-01-20', 2315, 50362, 3527, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '296.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52938, '2022-01-20', 1342, 50363, 3527, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52939, '2022-01-20', 2136, 50364, 3527, 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 (52940, '2022-01-20', 1577, 50365, 3527, NULL, '1.0000', '2.3271', '2.3271', '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 (52941, '2022-01-20', 2169, 50366, 3527, 49264, '1.0000', '0.6850', '0.6850', '2.0000', '2.0000', '116.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52942, '2022-01-20', 2506, 50367, 3527, NULL, '1.0000', '4.2180', '4.2180', '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 (52943, '2022-01-20', 2237, 50368, 3527, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52944, '2022-01-20', 2103, 50369, 3527, 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 (52945, '2022-01-20', 2136, 50370, 3527, 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 (52946, '2022-01-20', 2169, 50371, 3527, 49264, '1.0000', '0.6850', '0.6850', '2.0000', '2.0000', '116.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52947, '2022-01-20', 1564, 50372, 3527, 48457, '10.0000', '2.4842', '2.4842', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52948, '2022-01-20', 8746, 50373, 3527, 45281, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52949, '2022-01-20', 8773, 50374, 3527, 45287, '1.0000', '4.4800', '4.4800', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52950, '2022-01-20', 3058, 50375, 3527, NULL, '1.0000', '2.3000', '2.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 (52951, '2022-01-20', 9470, 50376, 3527, NULL, '1.0000', '9.7867', '9.7867', '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 (52952, '2022-01-20', 1533, 50377, 3527, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52953, '2022-01-20', 2109, 50378, 3527, 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 (52954, '2022-01-20', 8485, 50379, 3528, NULL, '1.0000', '7.0400', '7.0400', '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 (52955, '2022-01-20', 7612, 50380, 3528, NULL, '1.0000', '0.3870', '0.3870', '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 (52956, '2022-01-20', 9193, 50381, 3528, NULL, '1.0000', '7.0315', '7.0315', '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 (52957, '2022-01-20', 7774, 50382, 3528, NULL, '1.0000', '1.4724', '1.4724', '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 (52958, '2022-01-20', 7881, 50383, 3528, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52959, '2022-01-20', 1837, 50384, 3528, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52960, '2022-01-20', 7781, 50385, 3528, NULL, '3.0000', '4.2500', '4.2500', '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 (52961, '2022-01-20', 8164, 50386, 3528, NULL, '1.0000', '15.5606', '15.5606', '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 (52962, '2022-01-20', 9409, 50387, 3528, NULL, '1.0000', '5.6784', '5.6784', '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 (52963, '2022-01-20', 7411, 50388, 3528, NULL, '1.0000', '1.3600', '1.3600', '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 (52964, '2022-01-20', 7820, 50389, 3528, NULL, '1.0000', '-970.6000', '-970.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52965, '2022-01-20', 7428, 50390, 3528, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '45.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52966, '2022-01-20', 9681, 50391, 3528, NULL, '1.0000', '7.8000', '7.8000', '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 (52967, '2022-01-20', 7641, 50392, 3528, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52968, '2022-01-20', 8637, 50393, 3528, NULL, '4.0000', '40.3000', '40.3000', '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 (52969, '2022-01-20', 8188, 50394, 3528, NULL, '1.0000', '6.7000', '6.7000', '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 (52970, '2022-01-20', 7507, 50395, 3528, NULL, '3.0000', '6.5000', '6.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 (52971, '2022-01-20', 8065, 50396, 3528, NULL, '1.0000', '32.0000', '32.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 (52972, '2022-01-20', 9092, 50397, 3528, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '124.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52973, '2022-01-20', 1498, 50398, 3528, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '73.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52974, '2022-01-20', 9735, 50399, 3528, 46929, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52975, '2022-01-20', 7609, 50400, 3528, NULL, '1.0000', '4.4011', '4.4011', '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 (52976, '2022-01-20', 7375, 50401, 3528, 45326, '14.0000', '4.5167', '4.5167', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52977, '2022-01-20', 7392, 50402, 3528, 46208, '1.0000', '2.0718', '2.0718', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52978, '2022-01-20', 2648, 50403, 3528, NULL, '1.0000', '5.1333', '5.1333', '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 (52979, '2022-01-20', 7950, 50404, 3528, NULL, '1.0000', '2.4000', '2.4000', '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 (52980, '2022-01-20', 7438, 50405, 3528, 48822, '1.0000', '26.0000', '26.0000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52981, '2022-01-20', 8744, 50406, 3528, 44478, '1.0000', '3.5260', '3.5260', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52982, '2022-01-20', 1908, 50407, 3528, NULL, '2.0000', '1.7500', '1.7500', '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 (52983, '2022-01-20', 9429, 50408, 3528, 30154, '1.0000', '78.1200', '78.1200', '103.5000', '103.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52984, '2022-01-20', 2733, 50409, 3528, NULL, '2.0000', '7.5000', '7.5000', '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 (52985, '2022-01-20', 7507, 50410, 3528, NULL, '3.0000', '6.5000', '6.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 (52986, '2022-01-20', 3001, 50411, 3528, NULL, '2.0000', '1.5000', '1.5000', '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 (52987, '2022-01-20', 7453, 50412, 3528, 45845, '1.0000', '11.3750', '11.3750', '28.5000', '28.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52988, '2022-01-20', 9453, 50413, 3528, 36053, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52989, '2022-01-20', 7383, 50414, 3528, 45820, '1.0000', '7.8552', '7.8552', '78.0000', '78.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52990, '2022-01-20', 1916, 50415, 3528, 46224, '1.0000', '9.3400', '9.3400', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52991, '2022-01-20', 8125, 50416, 3528, NULL, '1.0000', '0.8000', '0.8000', '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 (52992, '2022-01-20', 9579, 50417, 3528, 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 (52993, '2022-01-20', 2699, 50418, 3528, 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 (52994, '2022-01-20', 2248, 50419, 3528, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52995, '2022-01-20', 9681, 50420, 3528, NULL, '1.0000', '7.8000', '7.8000', '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 (52996, '2022-01-20', 7776, 50421, 3528, NULL, '1.0000', '8.0000', '8.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 (52997, '2022-01-20', 7781, 50422, 3528, NULL, '3.0000', '4.2500', '4.2500', '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 (52998, '2022-01-20', 8229, 50423, 3528, NULL, '3.0000', '8.0000', '8.0000', '0.6000', '0.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 (52999, '2022-01-20', 7518, 50424, 3528, NULL, '1.0000', '20764214.8274', '20764214.8274', '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 (53000, '2022-01-20', 7672, 50425, 3528, 48003, '1.0000', '3.8200', '3.8200', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53001, '2022-01-20', 7824, 50426, 3528, NULL, '1.0000', '10.0834', '10.0834', '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 (53002, '2022-01-20', 8596, 50427, 3528, NULL, '1.0000', '17.0000', '17.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 (53003, '2022-01-20', 7832, 50428, 3528, 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 (53004, '2022-01-20', 9272, 50429, 3528, NULL, '1.0000', '3.1000', '3.1000', '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 (53005, '2022-01-20', 9399, 50430, 3528, NULL, '2.0000', '0.9794', '0.9794', '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 (53006, '2022-01-20', 1564, 50431, 3529, NULL, '3.0000', '2.4842', '2.4842', '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 (53007, '2022-01-20', 2352, 50432, 3529, NULL, '1.0000', '59.2000', '59.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 (53008, '2022-01-20', 8763, 50433, 3529, 44148, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53009, '2022-01-20', 2293, 50434, 3529, 48902, '3.0000', '-15.8931', '-15.8931', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53010, '2022-01-20', 9729, 50435, 3529, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53011, '2022-01-20', 1478, 50436, 3529, NULL, '1.0000', '-46.0000', '-46.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 (53012, '2022-01-20', 1668, 50437, 3529, 48146, '1.0000', '42.0055', '42.0055', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53013, '2022-01-20', 1410, 50438, 3529, NULL, '1.0000', '1.8562', '1.8562', '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 (53014, '2022-01-20', 1805, 50439, 3529, 48676, '1.0000', '15.0770', '15.0770', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53015, '2022-01-20', 1825, 50440, 3529, 48673, '1.0000', '5.1984', '5.1984', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53016, '2022-01-20', 9683, 50441, 3530, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53017, '2022-01-20', 1665, 50442, 3530, 48596, '1.0000', '1.0998', '1.0998', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53018, '2022-01-20', 8765, 50443, 3530, 45286, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53019, '2022-01-20', 1425, 50444, 3530, NULL, '1.0000', '5.0176', '5.0176', '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 (53020, '2022-01-20', 2221, 50445, 3530, 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 (53021, '2022-01-20', 1580, 50446, 3530, 48178, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53022, '2022-01-20', 2242, 50447, 3530, 48899, '1.0000', '4.6984', '4.6984', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53023, '2022-01-20', 2384, 50448, 3531, NULL, '7.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (53024, '2022-01-20', 2768, 50449, 3531, 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 (53025, '2022-01-20', 7905, 50450, 3531, NULL, '1.0000', '0.7000', '0.7000', '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 (53026, '2022-01-20', 1590, 50451, 3531, 48900, '2.0000', '1.4454', '1.4454', '2.3000', '2.3000', '40.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53027, '2022-01-20', 8296, 50452, 3532, NULL, '1.0000', '112.3600', '112.3600', '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 (53028, '2022-01-20', 7514, 50453, 3532, NULL, '1.0000', '65.8461', '65.8461', '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 (53029, '2022-01-20', 2284, 50454, 3532, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53030, '2022-01-20', 8363, 50455, 3532, NULL, '1.0000', '38.0000', '38.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 (53031, '2022-01-20', 1541, 50456, 3532, NULL, '1.0000', '19.0062', '19.0062', '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 (53032, '2022-01-20', 8000, 50457, 3532, NULL, '1.0000', '249.4419', '249.4419', '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 (53033, '2022-01-20', 7416, 50458, 3532, NULL, '1.0000', '1.2500', '1.2500', '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 (53034, '2022-01-20', 7705, 50459, 3532, NULL, '1.0000', '23.1081', '23.1081', '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 (53035, '2022-01-20', 7482, 50460, 3532, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53036, '2022-01-20', 7375, 50461, 3532, 45326, '6.0000', '4.5167', '4.5167', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53037, '2022-01-20', 7375, 50461, 3532, NULL, '8.0000', '4.5167', '4.5167', '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 (53038, '2022-01-20', 1916, 50462, 3532, 46224, '1.0000', '9.3400', '9.3400', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53039, '2022-01-20', 2287, 50463, 3532, NULL, '2.0000', '2.3000', '2.3000', '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 (53040, '2022-01-20', 9022, 50464, 3532, NULL, '1.0000', '6.2900', '6.2900', '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 (53041, '2022-01-20', 1943, 50465, 3533, 49223, '1.0000', '4.8068', '4.8068', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53042, '2022-01-20', 1763, 50466, 3533, 45123, '2.0000', '4.7323', '4.7323', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53043, '2022-01-20', 1528, 50467, 3533, 44554, '2.0000', '53.0619', '53.0619', '6.5000', '6.5000', '28.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53044, '2022-01-20', 9094, 50468, 3533, 46952, '2.0000', '5.7000', '5.7000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53045, '2022-01-20', 2251, 50469, 3533, 49070, '1.0000', '11.5988', '11.5988', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53046, '2022-01-20', 2574, 50470, 3533, 49033, '12.0000', '1.0049', '1.0049', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53047, '2022-01-20', 1321, 50471, 3533, 48789, '1.0000', '10.6580', '10.6580', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53048, '2022-01-20', 8937, 50472, 3533, NULL, '1.0000', '3.5000', '3.5000', '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 (53049, '2022-01-20', 2379, 50473, 3533, 46060, '1.0000', '1.8761', '1.8761', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53050, '2022-01-20', 2486, 50474, 3533, 21821, '1.0000', '4.0000', '4.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 (53051, '2022-01-20', 1761, 50475, 3533, 44765, '1.0000', '1.8333', '1.8333', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53052, '2022-01-20', 9738, 50476, 3533, 46032, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53053, '2022-01-20', 9554, 50477, 3533, 39184, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53054, '2022-01-20', 2169, 50478, 3533, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53055, '2022-01-20', 1330, 50479, 3533, 3367, '2.0000', '2.8000', '2.8000', '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 (53056, '2022-01-20', 1543, 50480, 3533, 18701, '1.0000', '31.6707', '31.6707', '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 (53057, '2022-01-20', 9772, 50481, 3533, 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 (53058, '2022-01-20', 2251, 50482, 3533, 49070, '1.0000', '11.5988', '11.5988', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53059, '2022-01-20', 9095, 50483, 3533, 46953, '2.0000', '8.7600', '8.7600', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53060, '2022-01-20', 2604, 50484, 3533, 46954, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '3.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53061, '2022-01-20', 1810, 50485, 3533, 40639, '1.0000', '8.5625', '8.5625', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53062, '2022-01-20', 2635, 50486, 3533, 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 (53063, '2022-01-20', 2681, 50487, 3533, 49028, '1.0000', '12.5555', '12.5555', '16.5000', '16.5000', '9.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53064, '2022-01-20', 8616, 50488, 3533, NULL, '2.0000', '23.0000', '23.0000', '30.0000', '30.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 (53065, '2022-01-20', 2135, 50489, 3533, 40580, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53066, '2022-01-20', 1446, 50490, 3533, 46043, '1.0000', '4.4636', '4.4636', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53067, '2022-01-20', 1330, 50491, 3533, 3367, '1.0000', '2.8000', '2.8000', '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 (53068, '2022-01-20', 2243, 50492, 3533, 3065, '1.0000', '3.5000', '3.5000', '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 (53069, '2022-01-20', 9695, 50493, 3533, 45631, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53070, '2022-01-20', 2135, 50494, 3533, 40580, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53071, '2022-01-20', 2660, 50495, 3533, 42944, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53072, '2022-01-20', 9265, 50496, 3534, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53073, '2022-01-20', 7743, 50497, 3534, NULL, '2.0000', '419203.7668', '419203.7668', '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 (53074, '2022-01-20', 8566, 50498, 3535, 42783, '2.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53075, '2022-01-20', 1707, 50499, 3536, 40222, '1.0000', '25.1200', '25.1200', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53076, '2022-01-20', 9538, 50500, 3536, 49129, '1.0000', '23.0000', '23.0000', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53077, '2022-01-20', 2221, 50501, 3536, 46707, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53078, '2022-01-20', 2313, 50502, 3536, NULL, '3.0000', '8.7000', '8.7000', '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 (53079, '2022-01-20', 1386, 50503, 3536, 46705, '1.0000', '422.4909', '422.4909', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53080, '2022-01-21', 2512, 50504, 3537, 7520, '1.0000', '20.0000', '20.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 (53081, '2022-01-21', 8387, 50505, 3537, 46950, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '4.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53082, '2022-01-21', 9766, 50506, 3537, NULL, '1.0000', '12.7500', '12.7500', '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 (53083, '2022-01-21', 2512, 50507, 3538, 7520, '1.0000', '20.0000', '20.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 (53084, '2022-01-21', 8387, 50508, 3538, 46950, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '3.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53085, '2022-01-21', 9766, 50509, 3538, NULL, '1.0000', '12.7500', '12.7500', '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 (53086, '2022-01-21', 1532, 50510, 3539, 48901, '1.0000', '1.5750', '1.5750', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53087, '2022-01-21', 1672, 50511, 3540, 47106, '10.0000', '6.1898', '6.1898', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53088, '2022-01-21', 7638, 50512, 3540, 39773, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53089, '2022-01-21', 1889, 50513, 3540, NULL, '1.0000', '1.3000', '1.3000', '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 (53090, '2022-01-21', 1545, 50514, 3540, 48141, '1.0000', '18.7440', '18.7440', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53091, '2022-01-21', 1889, 50515, 3540, NULL, '2.0000', '1.3000', '1.3000', '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 (53092, '2022-01-21', 3058, 50516, 3540, NULL, '1.0000', '2.3000', '2.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 (53093, '2022-01-21', 9732, 50517, 3540, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53094, '2022-01-21', 2169, 50518, 3540, 49264, '1.0000', '0.6850', '0.6850', '2.0000', '2.0000', '114.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53095, '2022-01-21', 1410, 50519, 3540, NULL, '1.0000', '1.8562', '1.8562', '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 (53096, '2022-01-21', 1308, 50520, 3540, 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 (53097, '2022-01-21', 8155, 50521, 3540, NULL, '3.0000', '65.0000', '65.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 (53098, '2022-01-21', 2360, 50522, 3540, NULL, '10.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (53099, '2022-01-21', 9732, 50523, 3540, 47082, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53100, '2022-01-21', 1409, 50524, 3540, 48985, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53101, '2022-01-21', 2521, 50525, 3540, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '10.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53102, '2022-01-21', 1840, 50526, 3540, 42569, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '13.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53103, '2022-01-21', 2289, 50527, 3540, 42836, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53104, '2022-01-21', 1910, 50528, 3541, 23140, '1.0000', '1.0200', '1.0200', '1.5000', '1.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 (53105, '2022-01-21', 1590, 50529, 3541, 48900, '3.0000', '1.4454', '1.4454', '2.3000', '2.3000', '37.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53106, '2022-01-21', 8444, 50530, 3541, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53107, '2022-01-21', 7684, 50531, 3542, NULL, '1.0000', '9.0000', '9.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 (53108, '2022-01-21', 2236, 50532, 3542, 46027, '1.0000', '5.7568', '5.7568', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53109, '2022-01-21', 2280, 50533, 3542, 44766, '1.0000', '2.9290', '2.9290', '5.0000', '5.0000', '35.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53110, '2022-01-21', 9474, 50534, 3542, 32211, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53111, '2022-01-21', 2918, 50535, 3542, 18788, '1.0000', '14.9400', '14.9400', '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 (53112, '2022-01-21', 2270, 50536, 3542, 45078, '1.0000', '3.0208', '3.0208', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53113, '2022-01-21', 1673, 50537, 3542, 9409, '1.0000', '12.9000', '12.9000', '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 (53114, '2022-01-21', 1912, 50538, 3542, 49055, '1.0000', '0.6036', '0.6036', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53115, '2022-01-21', 1863, 50539, 3542, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53116, '2022-01-21', 1820, 50540, 3542, 4956, '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 (53117, '2022-01-21', 1342, 50541, 3542, 46074, '1.0000', '11.8062', '11.8062', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53118, '2022-01-21', 9094, 50542, 3542, 46952, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53119, '2022-01-21', 2670, 50543, 3542, 11896, '1.0000', '0.3200', '0.3200', '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 (53120, '2022-01-21', 7411, 50544, 3543, NULL, '2.0000', '1.3600', '1.3600', '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 (53121, '2022-01-21', 2290, 50545, 3543, NULL, '1.0000', '7.0000', '7.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 (53122, '2022-01-21', 7641, 50546, 3543, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53123, '2022-01-21', 8539, 50547, 3543, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '67.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53124, '2022-01-21', 7984, 50548, 3543, NULL, '1.0000', '23.2750', '23.2750', '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 (53125, '2022-01-21', 7954, 50549, 3543, NULL, '4.0000', '24.4161', '24.4161', '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 (53126, '2022-01-21', 7853, 50550, 3543, NULL, '1.0000', '2629.4761', '2629.4761', '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 (53127, '2022-01-21', 9329, 50551, 3543, NULL, '1.0000', '13.9601', '13.9601', '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 (53128, '2022-01-21', 7411, 50552, 3543, NULL, '1.0000', '1.3600', '1.3600', '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 (53129, '2022-01-21', 8205, 50553, 3543, NULL, '1.0000', '2.9500', '2.9500', '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 (53130, '2022-01-21', 2418, 50554, 3543, NULL, '1.0000', '9.5000', '9.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 (53131, '2022-01-21', 8466, 50555, 3543, NULL, '1.0000', '-24.7500', '-24.7500', '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 (53132, '2022-01-21', 8359, 50556, 3543, NULL, '1.0000', '783.8197', '783.8197', '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 (53133, '2022-01-21', 2289, 50557, 3543, NULL, '4.0000', '0.9629', '0.9629', '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 (53134, '2022-01-21', 9758, 50558, 3543, 46936, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53135, '2022-01-21', 9740, 50559, 3543, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53136, '2022-01-21', 7674, 50560, 3543, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53137, '2022-01-21', 7657, 50561, 3543, NULL, '1.0000', '-20.7289', '-20.7289', '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 (53138, '2022-01-21', 8310, 50562, 3543, NULL, '2.0000', '22.5000', '22.5000', '14.5000', '14.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 (53139, '2022-01-21', 2787, 50563, 3543, NULL, '1.0000', '16.0200', '16.0200', '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 (53140, '2022-01-21', 9098, 50564, 3543, NULL, '1.0000', '24.7368', '24.7368', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53141, '2022-01-21', 7629, 50565, 3543, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53142, '2022-01-21', 7514, 50566, 3543, NULL, '1.0000', '65.8461', '65.8461', '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 (53143, '2022-01-21', 7353, 50567, 3543, 45856, '3.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '36.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53144, '2022-01-21', 9337, 50568, 3543, 48301, '4.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53145, '2022-01-21', 8063, 50569, 3543, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '96.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53146, '2022-01-21', 7756, 50570, 3543, NULL, '1.0000', '18.7452', '18.7452', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53147, '2022-01-21', 7672, 50571, 3543, 48003, '4.0000', '3.8200', '3.8200', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53148, '2022-01-21', 9579, 50572, 3543, 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 (53149, '2022-01-21', 7866, 50573, 3543, 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 (53150, '2022-01-21', 8941, 50574, 3543, NULL, '2.0000', '12.0000', '12.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 (53151, '2022-01-21', 9556, 50575, 3543, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53152, '2022-01-21', 7576, 50576, 3543, NULL, '4.0000', '-11.8309', '-11.8309', '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 (53153, '2022-01-21', 7781, 50577, 3543, NULL, '3.0000', '4.2500', '4.2500', '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 (53154, '2022-01-21', 2295, 50578, 3543, 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 (53155, '2022-01-21', 7507, 50579, 3543, NULL, '3.0000', '6.5000', '6.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 (53156, '2022-01-21', 7640, 50580, 3543, 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 (53157, '2022-01-21', 8637, 50581, 3543, NULL, '10.0000', '40.3000', '40.3000', '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 (53158, '2022-01-21', 7776, 50582, 3543, NULL, '1.0000', '8.0000', '8.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 (53159, '2022-01-21', 7867, 50583, 3543, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53160, '2022-01-21', 7894, 50584, 3543, NULL, '1.0000', '-38.6667', '-38.6667', '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 (53161, '2022-01-21', 9148, 50585, 3543, NULL, '1.0000', '20.1000', '20.1000', '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 (53162, '2022-01-21', 7514, 50586, 3543, NULL, '1.0000', '65.8461', '65.8461', '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 (53163, '2022-01-21', 2315, 50587, 3543, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '44.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53164, '2022-01-21', 2284, 50588, 3543, 45302, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53165, '2022-01-21', 7723, 50589, 3543, 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 (53166, '2022-01-21', 9191, 50590, 3543, 48816, '1.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53167, '2022-01-21', 7952, 50591, 3543, NULL, '2.0000', '62.3792', '62.3792', '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 (53168, '2022-01-21', 7714, 50592, 3544, NULL, '4.0000', '5.0000', '5.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 (53169, '2022-01-21', 2169, 50593, 3544, 49348, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53170, '2022-01-21', 8756, 50594, 3544, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53171, '2022-01-21', 2237, 50595, 3544, 48702, '2.0000', '558.9412', '558.9412', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53172, '2022-01-21', 7514, 50596, 3544, NULL, '1.0000', '2.2500', '2.2500', '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 (53173, '2022-01-21', 1947, 50597, 3544, 41417, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53174, '2022-01-21', 7926, 50598, 3544, 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 (53175, '2022-01-21', 7800, 50599, 3544, NULL, '10.0000', '4.0000', '4.0000', '7.0000', '7.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 (53176, '2022-01-21', 8746, 50600, 3544, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53177, '2022-01-21', 2024, 50601, 3544, 39220, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53178, '2022-01-21', 2521, 50602, 3544, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53179, '2022-01-21', 8773, 50603, 3544, 45287, '1.0000', '4.4800', '4.4800', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53180, '2022-01-21', 8744, 50604, 3544, 45268, '1.0000', '-1.8567', '-1.8567', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53181, '2022-01-21', 2491, 50605, 3544, 49313, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53182, '2022-01-21', 8000, 50606, 3544, NULL, '1.0000', '25.8200', '25.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 (53183, '2022-01-21', 9579, 50607, 3544, 47857, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 350);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53184, '2022-01-21', 7672, 50608, 3544, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53185, '2022-01-21', 7819, 50609, 3544, NULL, '1.0000', '10.0999', '10.0999', '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 (53186, '2022-01-21', 1402, 50610, 3544, NULL, '2.0000', '2.2000', '2.2000', '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 (53187, '2022-01-21', 1411, 50611, 3544, 48987, '1.0000', '25.9626', '25.9626', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53188, '2022-01-21', 7514, 50612, 3544, NULL, '1.0000', '2.2500', '2.2500', '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 (53189, '2022-01-21', 2315, 50613, 3544, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '295.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53190, '2022-01-21', 8177, 50614, 3544, NULL, '1.0000', '12.9000', '12.9000', '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 (53191, '2022-01-21', 7666, 50615, 3544, NULL, '1.0000', '-6.0000', '-6.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 (53192, '2022-01-21', 1342, 50616, 3544, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53193, '2022-01-21', 7333, 50617, 3544, NULL, '1.0000', '13.5000', '13.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 (53194, '2022-01-21', 2109, 50618, 3544, 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 (53195, '2022-01-21', 1807, 50619, 3544, 48635, '4.0000', '34.9993', '34.9993', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53196, '2022-01-21', 1408, 50620, 3544, 37961, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53197, '2022-01-21', 9747, 50621, 3544, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53198, '2022-01-21', 1307, 50622, 3544, NULL, '1.0000', '0.6103', '0.6103', '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 (53199, '2022-01-21', 7762, 50623, 3544, NULL, '1.0000', '5.1000', '5.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 (53200, '2022-01-21', 2293, 50624, 3544, 48902, '1.0000', '-15.8931', '-15.8931', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53201, '2022-01-21', 2088, 50625, 3544, NULL, '1.0000', '-1.0956', '-1.0956', '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 (53202, '2022-01-21', 2135, 50626, 3544, 18930, '1.0000', '2.4732', '2.4732', '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 (53203, '2022-01-21', 1529, 50627, 3544, 48650, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53204, '2022-01-21', 1310, 50628, 3544, 49358, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53205, '2022-01-21', 2417, 50629, 3544, 32544, '1.0000', '3.7800', '3.7800', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53206, '2022-01-21', 2758, 50630, 3544, 22379, '2.0000', '5.4000', '5.4000', '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 (53207, '2022-01-21', 9751, 50631, 3544, 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 (53208, '2022-01-21', 2163, 50632, 3544, 43271, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53209, '2022-01-21', 2135, 50633, 3544, 18930, '1.0000', '2.4732', '2.4732', '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 (53210, '2022-01-21', 1748, 50634, 3544, NULL, '2.0000', '0.3200', '0.3200', '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 (53211, '2022-01-21', 1425, 50635, 3544, NULL, '1.0000', '5.0176', '5.0176', '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 (53212, '2022-01-21', 1812, 50636, 3544, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53213, '2022-01-21', 7514, 50637, 3544, NULL, '1.0000', '2.2500', '2.2500', '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 (53214, '2022-01-21', 2156, 50638, 3544, 19853, '1.0000', '3.2500', '3.2500', '4.5000', '4.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 (53215, '2022-01-21', 1667, 50639, 3544, 49364, '2.0000', '13.0832', '13.0832', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53216, '2022-01-21', 2360, 50640, 3544, NULL, '3.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (53217, '2022-01-21', 1590, 50641, 3544, 48900, '1.0000', '1.4454', '1.4454', '2.3000', '2.3000', '36.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53218, '2022-01-21', 2066, 50642, 3544, 34656, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53219, '2022-01-21', 7411, 50643, 3544, NULL, '1.0000', '1.3013', '1.3013', '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 (53220, '2022-01-21', 7473, 50644, 3544, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '65.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53221, '2022-01-21', 1665, 50645, 3544, 49365, '5.0000', '1.0999', '1.0999', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53222, '2022-01-21', 9751, 50646, 3544, 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 (53223, '2022-01-21', 2546, 50647, 3544, NULL, '1.0000', '11.0000', '11.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 (53224, '2022-01-21', 1661, 50648, 3544, 48625, '1.0000', '32.6700', '32.6700', '47.5000', '47.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53225, '2022-01-21', 1734, 50649, 3544, 48174, '1.0000', '14.9800', '14.9800', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53226, '2022-01-21', 7666, 50650, 3544, NULL, '1.0000', '-6.0000', '-6.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 (53227, '2022-01-21', 1425, 50651, 3544, NULL, '1.0000', '5.0176', '5.0176', '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 (53228, '2022-01-21', 1856, 50652, 3544, NULL, '1.0000', '1.7723', '1.7723', '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 (53229, '2022-01-21', 7514, 50653, 3545, NULL, '1.0000', '65.8461', '65.8461', '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 (53230, '2022-01-21', 9556, 50654, 3545, 48080, '1.0000', '0.2770', '0.2770', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53231, '2022-01-21', 7749, 50655, 3545, NULL, '1.0000', '20.0200', '20.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 (53232, '2022-01-21', 8000, 50656, 3545, NULL, '1.0000', '249.4419', '249.4419', '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 (53233, '2022-01-21', 7519, 50657, 3545, 46682, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53234, '2022-01-21', 7411, 50658, 3545, NULL, '1.0000', '1.3600', '1.3600', '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 (53235, '2022-01-21', 7703, 50659, 3545, NULL, '3.0000', '22.9900', '22.9900', '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 (53236, '2022-01-21', 8328, 50660, 3545, NULL, '1.0000', '8.0175', '8.0175', '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 (53237, '2022-01-21', 7507, 50661, 3545, NULL, '3.0000', '6.5000', '6.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 (53238, '2022-01-21', 8359, 50662, 3545, NULL, '1.0000', '783.8197', '783.8197', '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 (53239, '2022-01-21', 7946, 50663, 3545, 48254, '2.0000', '-3.9133', '-3.9133', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53240, '2022-01-21', 7318, 50664, 3545, NULL, '1.0000', '17.2098', '17.2098', '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 (53241, '2022-01-21', 9265, 50665, 3545, 30995, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53242, '2022-01-21', 8308, 50666, 3545, NULL, '1.0000', '14.1857', '14.1857', '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 (53243, '2022-01-21', 9271, 50667, 3545, 46698, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53244, '2022-01-21', 8237, 50668, 3545, NULL, '1.0000', '8.5000', '8.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 (53245, '2022-01-21', 8942, 50669, 3545, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53246, '2022-01-21', 7675, 50670, 3545, NULL, '1.0000', '37.2865', '37.2865', '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 (53247, '2022-01-21', 1837, 50671, 3545, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53248, '2022-01-21', 7564, 50672, 3545, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53249, '2022-01-21', 7473, 50673, 3545, NULL, '2.0000', '104.1526', '104.1526', '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 (53250, '2022-01-21', 7881, 50674, 3545, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53251, '2022-01-21', 7657, 50675, 3545, NULL, '1.0000', '-20.7289', '-20.7289', '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 (53252, '2022-01-21', 8810, 50676, 3545, NULL, '1.0000', '2.5002', '2.5002', '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 (53253, '2022-01-21', 7629, 50677, 3545, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53254, '2022-01-21', 8882, 50678, 3545, NULL, '1.0000', '8.0000', '8.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 (53255, '2022-01-21', 9531, 50679, 3545, 39430, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53256, '2022-01-21', 7892, 50680, 3545, NULL, '1.0000', '4.2000', '4.2000', '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 (53257, '2022-01-21', 8702, 50681, 3545, NULL, '1.0000', '3.6700', '3.6700', '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 (53258, '2022-01-21', 2965, 50682, 3546, NULL, '1.0000', '5.6266', '5.6266', '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 (53259, '2022-01-21', 1665, 50683, 3547, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53260, '2022-01-21', 8744, 50684, 3548, 44036, '1.0000', '3.5421', '3.5421', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53261, '2022-01-21', 1602, 50685, 3548, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53262, '2022-01-21', 9565, 50686, 3548, 39206, '1.0000', '4.5000', '4.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53263, '2022-01-21', 2607, 50687, 3548, 42956, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '17.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53264, '2022-01-21', 2699, 50688, 3548, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53265, '2022-01-21', 2360, 50689, 3548, 49128, '10.0000', '0.5200', '0.5200', '0.8000', '0.8000', '40.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53266, '2022-01-21', 2136, 50690, 3548, 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 (53267, '2022-01-21', 8456, 50691, 3548, 47147, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53268, '2022-01-21', 1863, 50692, 3548, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53269, '2022-01-21', 2136, 50693, 3548, 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 (53270, '2022-01-21', 1510, 50694, 3548, 49059, '1.0000', '4.7450', '4.7450', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53271, '2022-01-21', 8301, 50695, 3548, 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 (53272, '2022-01-21', 2398, 50696, 3548, 44588, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53273, '2022-01-21', 8517, 50697, 3548, 47988, '1.0000', '28.2341', '28.2341', '37.5000', '37.5000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53274, '2022-01-21', 9716, 50698, 3548, 45080, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53275, '2022-01-21', 2592, 50699, 3548, 46739, '2.0000', '9.0439', '9.0439', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53276, '2022-01-21', 2403, 50700, 3548, 46568, '1.0000', '18.1582', '18.1582', '24.0000', '24.0000', '8.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53277, '2022-01-21', 2959, 50701, 3548, 45627, '1.0000', '4.1853', '4.1853', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53278, '2022-01-21', 7719, 50702, 3548, 42937, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53279, '2022-01-21', 2366, 50703, 3548, 47955, '2.0000', '4.0593', '4.0593', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53280, '2022-01-21', 1602, 50704, 3548, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53281, '2022-01-21', 1828, 50705, 3548, 33003, '2.0000', '0.7300', '0.7300', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53282, '2022-01-21', 7638, 50706, 3548, 44598, '1.0000', '1.1651', '1.1651', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53283, '2022-01-21', 1904, 50707, 3548, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53284, '2022-01-21', 3058, 50708, 3548, 49093, '1.0000', '3.8000', '3.8000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53285, '2022-01-21', 2504, 50709, 3548, 44505, '1.0000', '35.0000', '35.0000', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53286, '2022-01-21', 1346, 50710, 3548, 46772, '2.0000', '0.9485', '0.9485', '1.5000', '1.5000', '148.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53287, '2022-01-21', 2280, 50711, 3548, 44766, '2.0000', '2.9290', '2.9290', '5.0000', '5.0000', '33.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53288, '2022-01-21', 1812, 50712, 3548, 49149, '1.0000', '7.9726', '7.9726', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53289, '2022-01-21', 2224, 50713, 3548, 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 (53290, '2022-01-21', 9095, 50714, 3548, 46953, '1.0000', '8.7600', '8.7600', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53291, '2022-01-21', 9409, 50715, 3548, 46951, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53292, '2022-01-21', 8135, 50716, 3548, 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 (53293, '2022-01-21', 1706, 50717, 3548, 44509, '1.0000', '12.5773', '12.5773', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53294, '2022-01-21', 9577, 50718, 3548, 38070, '1.0000', '0.3200', '0.3200', '0.8000', '0.8000', '22.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53295, '2022-01-21', 1670, 50719, 3548, 49036, '1.0000', '63.1789', '63.1789', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53296, '2022-01-21', 8744, 50720, 3548, 44036, '2.0000', '3.5421', '3.5421', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53297, '2022-01-21', 1573, 50721, 3548, 46757, '1.0000', '22.9463', '22.9463', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53298, '2022-01-21', 8387, 50722, 3548, 46950, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '2.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53299, '2022-01-21', 1452, 50723, 3548, 5632, '1.0000', '1.2300', '1.2300', '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 (53300, '2022-01-21', 2317, 50724, 3548, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '35.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53301, '2022-01-21', 1386, 50725, 3548, 46705, '1.0000', '422.4909', '422.4909', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53302, '2022-01-21', 2699, 50726, 3548, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53303, '2022-01-21', 7744, 50727, 3548, NULL, '1.0000', '2.9400', '2.9400', '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 (53304, '2022-01-21', 1950, 50728, 3548, 6005, '1.0000', '10.0000', '10.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 (53305, '2022-01-21', 2379, 50729, 3548, 46060, '1.0000', '1.8761', '1.8761', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53306, '2022-01-21', 1872, 50730, 3548, 49016, '1.0000', '9.6180', '9.6180', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53307, '2022-01-21', 8744, 50731, 3549, 45268, '1.0000', '-1.8567', '-1.8567', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53308, '2022-01-21', 1409, 50732, 3549, 48985, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53309, '2022-01-21', 9214, 50733, 3549, 45278, '1.0000', '9.8180', '9.8180', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53310, '2022-01-21', 9214, 50733, 3549, NULL, '1.0000', '9.8180', '9.8180', '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 (53311, '2022-01-21', 7411, 50734, 3550, NULL, '2.0000', '1.3600', '1.3600', '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 (53312, '2022-01-21', 2943, 50735, 3550, 43054, '1.0000', '2.1933', '2.1933', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53313, '2022-01-21', 9650, 50736, 3550, 43132, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53314, '2022-01-21', 1769, 50737, 3550, 44740, '1.0000', '26.8000', '26.8000', '35.5000', '35.5000', '3.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53315, '2022-01-21', 9143, 50738, 3550, 37848, '1.0000', '9.4967', '9.4967', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53316, '2022-01-21', 1695, 50739, 3551, 48754, '1.0000', '50.0057', '50.0057', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53317, '2022-01-21', 1595, 50740, 3552, 47973, '1.0000', '20.0158', '20.0158', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53318, '2022-01-21', 9416, 50741, 3553, 44493, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53319, '2022-01-21', 8744, 50742, 3553, 44036, '1.0000', '3.5421', '3.5421', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53320, '2022-01-21', 2655, 50743, 3554, 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 (53321, '2022-01-21', 8756, 50744, 3554, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53322, '2022-01-21', 1966, 50745, 3554, 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 (53323, '2022-01-21', 9695, 50746, 3555, 45631, '2.0000', '4.5000', '4.5000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53324, '2022-01-22', 2607, 50747, 3556, 42956, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '16.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53325, '2022-01-22', 2169, 50748, 3556, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53326, '2022-01-22', 8740, 50749, 3556, 44040, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53327, '2022-01-22', 1493, 50750, 3556, 49232, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53328, '2022-01-22', 1337, 50751, 3556, 47979, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53329, '2022-01-22', 1339, 50752, 3556, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53330, '2022-01-22', 1809, 50753, 3556, 47974, '1.0000', '9.7321', '9.7321', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53331, '2022-01-22', 1602, 50754, 3556, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53332, '2022-01-22', 2624, 50755, 3556, 44772, '1.0000', '14.9167', '14.9167', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53333, '2022-01-22', 2311, 50756, 3556, NULL, '1.0000', '46.2900', '46.2900', '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 (53334, '2022-01-22', 1822, 50757, 3556, 49222, '20.0000', '2.3131', '2.3131', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53335, '2022-01-22', 1409, 50758, 3556, 46768, '1.0000', '13.0978', '13.0978', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53336, '2022-01-22', 2547, 50759, 3556, 49048, '2.0000', '8.8341', '8.8341', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53337, '2022-01-22', 1618, 50760, 3556, 49017, '2.0000', '11.8800', '11.8800', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53338, '2022-01-22', 3013, 50761, 3556, 46770, '2.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53339, '2022-01-22', 2655, 50762, 3556, 45625, '2.0000', '6.5000', '6.5000', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53340, '2022-01-22', 1328, 50763, 3556, 3366, '1.0000', '3.1500', '3.1500', '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 (53341, '2022-01-22', 1533, 50764, 3557, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '18.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53342, '2022-01-22', 2315, 50765, 3557, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '294.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53343, '2022-01-22', 2247, 50766, 3557, 42802, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53344, '2022-01-22', 2169, 50767, 3557, 49348, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53345, '2022-01-22', 2293, 50768, 3557, 48902, '3.0000', '-15.8931', '-15.8931', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53346, '2022-01-22', 1577, 50769, 3557, NULL, '1.0000', '2.3271', '2.3271', '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 (53347, '2022-01-22', 2268, 50770, 3557, 30698, '1.0000', '7.3000', '7.3000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53348, '2022-01-22', 8384, 50771, 3557, 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 (53349, '2022-01-22', 2243, 50772, 3557, NULL, '1.0000', '3.5000', '3.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 (53350, '2022-01-22', 2287, 50773, 3557, 48629, '2.0000', '1.8730', '1.8730', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53351, '2022-01-22', 2950, 50774, 3557, 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 (53352, '2022-01-22', 1564, 50775, 3557, NULL, '1.0000', '2.4842', '2.4842', '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 (53353, '2022-01-22', 1307, 50776, 3557, NULL, '1.0000', '0.6103', '0.6103', '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 (53354, '2022-01-22', 9732, 50777, 3557, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53355, '2022-01-22', 7684, 50778, 3557, NULL, '1.0000', '9.0000', '9.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 (53356, '2022-01-22', 1401, 50779, 3557, 48948, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53357, '2022-01-22', 1337, 50780, 3557, NULL, '1.0000', '2.0000', '2.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 (53358, '2022-01-22', 1493, 50781, 3557, 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 (53359, '2022-01-22', 7802, 50782, 3557, 47070, '2.0000', '0.9200', '0.9200', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53360, '2022-01-22', 1322, 50783, 3557, NULL, '1.0000', '4.4000', '4.4000', '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 (53361, '2022-01-22', 1339, 50784, 3557, 49355, '1.0000', '1.2000', '1.2000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53362, '2022-01-22', 1863, 50785, 3557, 48719, '4.0000', '1.3601', '1.3601', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53363, '2022-01-22', 1598, 50786, 3557, 47054, '1.0000', '4.0526', '4.0526', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53364, '2022-01-22', 1326, 50787, 3557, 48959, '1.0000', '4.5325', '4.5325', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53365, '2022-01-22', 2136, 50788, 3557, 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 (53366, '2022-01-22', 1564, 50789, 3557, NULL, '2.0000', '2.4842', '2.4842', '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 (53367, '2022-01-22', 2169, 50790, 3557, 49348, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53368, '2022-01-22', 1564, 50791, 3557, NULL, '1.0000', '2.4842', '2.4842', '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 (53369, '2022-01-22', 2699, 50792, 3557, 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 (53370, '2022-01-22', 8413, 50793, 3558, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53371, '2022-01-22', 7886, 50794, 3558, NULL, '1.0000', '14.5000', '14.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 (53372, '2022-01-22', 2339, 50795, 3559, 49076, '1.0000', '7.7601', '7.7601', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53373, '2022-01-22', 2366, 50796, 3559, 47955, '4.0000', '4.0593', '4.0593', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53374, '2022-01-22', 1712, 50797, 3559, 44627, '1.0000', '11.5450', '11.5450', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53375, '2022-01-22', 2221, 50798, 3559, 46707, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53376, '2022-01-22', 1425, 50799, 3559, 49167, '1.0000', '7.0340', '7.0340', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53377, '2022-01-22', 8746, 50800, 3559, 42931, '1.0000', '3.0415', '3.0415', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53378, '2022-01-22', 2228, 50801, 3559, 44487, '1.0000', '24.7059', '24.7059', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53379, '2022-01-22', 2556, 50802, 3559, 7199, '1.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 (53380, '2022-01-22', 1943, 50803, 3559, 49223, '1.0000', '4.8068', '4.8068', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53381, '2022-01-22', 2932, 50804, 3559, 19024, '1.0000', '62.0200', '62.0200', '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 (53382, '2022-01-22', 1863, 50805, 3559, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53383, '2022-01-22', 2068, 50806, 3559, 45081, '1.0000', '11.7734', '11.7734', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53384, '2022-01-22', 9100, 50807, 3559, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53385, '2022-01-22', 1666, 50808, 3559, 49241, '2.0000', '47.1662', '47.1662', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53386, '2022-01-22', 2948, 50809, 3559, 49143, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53387, '2022-01-22', 1863, 50810, 3559, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '85.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53388, '2022-01-22', 7420, 50811, 3559, NULL, '1.0000', '29.9500', '29.9500', '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 (53389, '2022-01-22', 7357, 50812, 3560, NULL, '1.0000', '11.7500', '11.7500', '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 (53390, '2022-01-22', 2315, 50813, 3560, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '42.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53391, '2022-01-22', 9740, 50814, 3560, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53392, '2022-01-22', 7646, 50815, 3560, NULL, '1.0000', '4.9500', '4.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 (53393, '2022-01-22', 7630, 50816, 3560, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (53394, '2022-01-22', 7947, 50817, 3560, NULL, '1.0000', '14.4400', '14.4400', '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 (53395, '2022-01-22', 7848, 50818, 3560, NULL, '1.0000', '-8.0868', '-8.0868', '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 (53396, '2022-01-22', 8615, 50819, 3560, 42775, '1.0000', '4.5052', '4.5052', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53397, '2022-01-22', 7675, 50820, 3560, NULL, '1.0000', '37.2865', '37.2865', '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 (53398, '2022-01-22', 9337, 50821, 3560, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53399, '2022-01-22', 7428, 50822, 3560, 46632, '1.0000', '9.6296', '9.6296', '4.0000', '4.0000', '44.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53400, '2022-01-22', 7385, 50823, 3560, 45811, '1.0000', '-29.7430', '-29.7430', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53401, '2022-01-22', 8203, 50824, 3560, NULL, '2.0000', '2.3282', '2.3282', '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 (53402, '2022-01-22', 9092, 50825, 3560, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '122.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53403, '2022-01-22', 1647, 50826, 3560, 48841, '1.0000', '5.0737', '5.0737', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53404, '2022-01-22', 7496, 50827, 3560, NULL, '1.0000', '0.9600', '0.9600', '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 (53405, '2022-01-22', 7473, 50828, 3560, NULL, '5.0000', '104.1526', '104.1526', '0.6000', '0.6000', '-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 (53406, '2022-01-22', 7593, 50829, 3560, 48087, '1.0000', '2.5263', '2.5263', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53407, '2022-01-22', 7741, 50830, 3560, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53408, '2022-01-22', 1340, 50831, 3560, 49280, '1.0000', '4.3962', '4.3962', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53409, '2022-01-22', 8067, 50832, 3560, 47930, '1.0000', '15.5700', '15.5700', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53410, '2022-01-22', 1329, 50833, 3560, 225, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53411, '2022-01-22', 2449, 50834, 3560, NULL, '1.0000', '5.5000', '5.5000', '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 (53412, '2022-01-22', 9103, 50835, 3560, NULL, '1.0000', '32.6700', '32.6700', '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 (53413, '2022-01-22', 1765, 50836, 3560, 48061, '1.0000', '5.4523', '5.4523', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53414, '2022-01-22', 1680, 50837, 3560, 48036, '1.0000', '5.0266', '5.0266', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53415, '2022-01-22', 8966, 50838, 3560, 30184, '2.0000', '6.4994', '6.4994', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53416, '2022-01-22', 9758, 50839, 3560, 46936, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53417, '2022-01-22', 2251, 50840, 3560, 45857, '1.0000', '11.7132', '11.7132', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53418, '2022-01-22', 2965, 50841, 3560, NULL, '1.0000', '3.9200', '3.9200', '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 (53419, '2022-01-22', 7603, 50842, 3560, NULL, '1.0000', '1.1500', '1.1500', '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 (53420, '2022-01-22', 8673, 50843, 3560, 47904, '1.0000', '20.0000', '20.0000', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53421, '2022-01-22', 9409, 50844, 3560, NULL, '1.0000', '5.6784', '5.6784', '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 (53422, '2022-01-22', 9579, 50845, 3560, 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 (53423, '2022-01-22', 7762, 50846, 3560, 48006, '1.0000', '4.5695', '4.5695', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53424, '2022-01-22', 7984, 50847, 3560, NULL, '1.0000', '23.2750', '23.2750', '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 (53425, '2022-01-22', 7913, 50848, 3560, NULL, '2.0000', '2.5500', '2.5500', '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 (53426, '2022-01-22', 7671, 50849, 3560, NULL, '2.0000', '76.3606', '76.3606', '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 (53427, '2022-01-22', 7641, 50850, 3560, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53428, '2022-01-22', 8214, 50851, 3560, NULL, '1.0000', '16.0000', '16.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 (53429, '2022-01-22', 8913, 50852, 3560, 46649, '1.0000', '15.1700', '15.1700', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53430, '2022-01-22', 7428, 50853, 3560, 46632, '3.0000', '9.6296', '9.6296', '4.0000', '4.0000', '42.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53431, '2022-01-22', 9734, 50854, 3560, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '130.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53432, '2022-01-22', 8328, 50855, 3560, NULL, '1.0000', '8.0175', '8.0175', '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 (53433, '2022-01-22', 2360, 50856, 3561, 49128, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '39.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53434, '2022-01-22', 2821, 50857, 3561, 49245, '2.0000', '3.4487', '3.4487', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53435, '2022-01-22', 2315, 50858, 3561, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '205.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53436, '2022-01-22', 1863, 50859, 3561, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '82.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53437, '2022-01-22', 2221, 50860, 3561, 46707, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53438, '2022-01-22', 2716, 50861, 3561, 13545, '1.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 (53439, '2022-01-22', 1751, 50862, 3561, 44764, '1.0000', '3.8718', '3.8718', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53440, '2022-01-22', 1837, 50863, 3561, 46752, '1.0000', '0.4981', '0.4981', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53441, '2022-01-22', 2286, 50864, 3561, 44626, '2.0000', '4.3486', '4.3486', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53442, '2022-01-22', 1744, 50865, 3561, 48753, '1.0000', '35.3208', '35.3208', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53443, '2022-01-22', 1665, 50866, 3561, 49242, '2.0000', '1.1871', '1.1871', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53444, '2022-01-22', 9214, 50867, 3561, 45622, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53445, '2022-01-22', 2699, 50868, 3561, 45624, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53446, '2022-01-22', 2231, 50869, 3561, 45629, '1.0000', '32.9466', '32.9466', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53447, '2022-01-22', 1765, 50870, 3561, 40899, '1.0000', '5.9694', '5.9694', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53448, '2022-01-22', 1863, 50871, 3562, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '81.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53449, '2022-01-22', 2296, 50872, 3562, 42978, '1.0000', '12.2973', '12.2973', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53450, '2022-01-22', 2655, 50873, 3562, 45625, '2.0000', '6.5000', '6.5000', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53451, '2022-01-22', 2891, 50874, 3562, 18061, '1.0000', '8.0000', '8.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 (53452, '2022-01-22', 9480, 50875, 3562, 44506, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53453, '2022-01-22', 1783, 50876, 3562, 46745, '3.0000', '-22.9481', '-22.9481', '11.0000', '11.0000', '12.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53454, '2022-01-22', 2366, 50877, 3562, 47955, '1.0000', '4.0593', '4.0593', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53455, '2022-01-22', 7886, 50878, 3563, NULL, '1.0000', '14.5000', '14.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 (53456, '2022-01-22', 8413, 50879, 3563, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53457, '2022-01-22', 9529, 50880, 3563, 45436, '1.0000', '9.2200', '9.2200', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53458, '2022-01-22', 9413, 50881, 3563, 38544, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53459, '2022-01-22', 2315, 50882, 3563, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '293.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53460, '2022-01-22', 7411, 50883, 3563, NULL, '1.0000', '1.3013', '1.3013', '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 (53461, '2022-01-22', 2169, 50884, 3563, 49348, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53462, '2022-01-22', 7514, 50885, 3563, NULL, '2.0000', '2.2500', '2.2500', '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 (53463, '2022-01-22', 8746, 50886, 3563, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53464, '2022-01-22', 1564, 50887, 3563, NULL, '10.0000', '2.4842', '2.4842', '4.0000', '4.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 (53465, '2022-01-22', 7671, 50888, 3563, NULL, '2.0000', '15.5000', '15.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 (53466, '2022-01-22', 1807, 50889, 3563, 48635, '3.0000', '34.9993', '34.9993', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53467, '2022-01-22', 1307, 50890, 3563, NULL, '1.0000', '0.6103', '0.6103', '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 (53468, '2022-01-22', 2315, 50891, 3563, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '292.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53469, '2022-01-22', 1499, 50892, 3563, 49347, '2.0000', '0.3411', '0.3411', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53470, '2022-01-22', 7564, 50893, 3563, NULL, '4.0000', '0.6400', '0.6400', '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 (53471, '2022-01-22', 1805, 50894, 3563, 48676, '1.0000', '15.0770', '15.0770', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53472, '2022-01-22', 1499, 50895, 3563, 49347, '1.0000', '0.3411', '0.3411', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53473, '2022-01-22', 9631, 50896, 3563, 48514, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53474, '2022-01-22', 1819, 50897, 3563, 48617, '1.0000', '5.4939', '5.4939', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53475, '2022-01-22', 7980, 50898, 3563, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (53476, '2022-01-22', 9413, 50899, 3563, 38544, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53477, '2022-01-22', 1501, 50900, 3563, NULL, '1.0000', '2.1784', '2.1784', '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 (53478, '2022-01-22', 2169, 50901, 3563, 49348, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53479, '2022-01-22', 7411, 50902, 3563, NULL, '1.0000', '1.3013', '1.3013', '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 (53480, '2022-01-22', 2237, 50903, 3563, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53481, '2022-01-22', 1871, 50904, 3563, NULL, '2.0000', '1.6959', '1.6959', '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 (53482, '2022-01-22', 1501, 50905, 3563, NULL, '1.0000', '2.1784', '2.1784', '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 (53483, '2022-01-22', 1812, 50906, 3563, 49332, '2.0000', '7.9262', '7.9262', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53484, '2022-01-22', 2821, 50907, 3563, 48490, '1.0000', '3.4701', '3.4701', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53485, '2022-01-22', 1307, 50908, 3563, NULL, '1.0000', '0.6103', '0.6103', '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 (53486, '2022-01-22', 1855, 50909, 3563, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53487, '2022-01-22', 1564, 50910, 3563, NULL, '2.0000', '2.4842', '2.4842', '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 (53488, '2022-01-22', 2520, 50911, 3563, 40121, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53489, '2022-01-22', 7411, 50912, 3563, NULL, '2.0000', '1.3013', '1.3013', '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 (53490, '2022-01-22', 1665, 50913, 3563, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53491, '2022-01-22', 2315, 50914, 3563, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '291.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53492, '2022-01-22', 9741, 50915, 3563, 47101, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53493, '2022-01-22', 1837, 50916, 3563, NULL, '1.0000', '1.5967', '1.5967', '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 (53494, '2022-01-22', 9750, 50917, 3563, NULL, '1.0000', '3.3000', '3.3000', '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 (53495, '2022-01-22', 2320, 50918, 3563, 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 (53496, '2022-01-22', 8223, 50919, 3563, NULL, '1.0000', '1.5000', '1.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 (53497, '2022-01-22', 1854, 50920, 3563, 48880, '1.0000', '2.6997', '2.6997', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53498, '2022-01-22', 7639, 50921, 3564, 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 (53499, '2022-01-22', 8539, 50922, 3564, NULL, '2.0000', '0.5200', '0.5200', '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 (53500, '2022-01-22', 2315, 50923, 3564, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '287.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53501, '2022-01-22', 7672, 50924, 3564, 39816, '1.0000', '1.0200', '1.0200', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53502, '2022-01-22', 2753, 50925, 3564, 32534, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53503, '2022-01-22', 1863, 50926, 3565, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53504, '2022-01-22', 8746, 50927, 3565, 42931, '1.0000', '3.0415', '3.0415', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53505, '2022-01-22', 2484, 50928, 3565, 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 (53506, '2022-01-22', 2763, 50929, 3565, 15805, '1.0000', '7.5000', '7.5000', '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 (53507, '2022-01-22', 2487, 50930, 3565, 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 (53508, '2022-01-22', 1585, 50931, 3565, 49072, '1.0000', '10.2467', '10.2467', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53509, '2022-01-22', 2169, 50932, 3565, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53510, '2022-01-22', 1602, 50933, 3566, 46758, '2.0000', '6.9543', '6.9543', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53511, '2022-01-22', 1665, 50934, 3566, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53512, '2022-01-22', 2315, 50935, 3566, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '204.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53513, '2022-01-22', 1700, 50936, 3566, 44709, '1.0000', '21.6025', '21.6025', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53514, '2022-01-22', 2517, 50937, 3566, 40349, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53515, '2022-01-22', 1666, 50938, 3566, 49241, '1.0000', '47.1662', '47.1662', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53516, '2022-01-22', 9579, 50939, 3566, 47855, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 349);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53517, '2022-01-22', 8328, 50940, 3567, NULL, '1.0000', '8.0175', '8.0175', '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 (53518, '2022-01-22', 7585, 50941, 3567, NULL, '1.0000', '-3.1011', '-3.1011', '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 (53519, '2022-01-22', 8763, 50942, 3567, 43939, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53520, '2022-01-22', 9337, 50943, 3567, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53521, '2022-01-22', 8061, 50944, 3567, NULL, '2.0000', '1.6000', '1.6000', '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 (53522, '2022-01-22', 7630, 50945, 3567, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (53523, '2022-01-22', 1837, 50946, 3567, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53524, '2022-01-22', 1612, 50947, 3567, 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 (53525, '2022-01-22', 9698, 50948, 3567, 46180, '1.0000', '7.7000', '7.7000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53526, '2022-01-22', 8359, 50949, 3567, NULL, '1.0000', '783.8197', '783.8197', '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 (53527, '2022-01-22', 7780, 50950, 3567, NULL, '1.0000', '-8.7461', '-8.7461', '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 (53528, '2022-01-22', 7899, 50951, 3567, 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 (53529, '2022-01-22', 7411, 50952, 3567, NULL, '1.0000', '1.3600', '1.3600', '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 (53530, '2022-01-22', 8325, 50953, 3567, 36672, '1.0000', '6.3350', '6.3350', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53531, '2022-01-22', 7324, 50954, 3567, 45796, '6.0000', '5.3429', '5.3429', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53532, '2022-01-22', 7741, 50955, 3567, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53533, '2022-01-22', 8889, 50956, 3567, 42760, '1.0000', '34.0000', '34.0000', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53534, '2022-01-22', 8596, 50957, 3567, NULL, '1.0000', '17.0000', '17.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 (53535, '2022-01-22', 7719, 50958, 3567, NULL, '2.0000', '6.0000', '6.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 (53536, '2022-01-22', 8972, 50959, 3567, NULL, '2.0000', '4.5000', '4.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 (53537, '2022-01-22', 9740, 50960, 3567, 46921, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53538, '2022-01-22', 2315, 50961, 3567, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '40.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53539, '2022-01-22', 9579, 50962, 3567, 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 (53540, '2022-01-22', 7675, 50963, 3567, NULL, '1.0000', '37.2865', '37.2865', '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 (53541, '2022-01-22', 7744, 50964, 3567, NULL, '1.0000', '2.7400', '2.7400', '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 (53542, '2022-01-22', 8756, 50965, 3567, 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 (53543, '2022-01-22', 2616, 50966, 3567, 45807, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53544, '2022-01-22', 1837, 50967, 3567, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53545, '2022-01-22', 7672, 50968, 3567, 48003, '1.0000', '3.8200', '3.8200', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53546, '2022-01-22', 9273, 50969, 3567, NULL, '1.0000', '0.3500', '0.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 (53547, '2022-01-22', 7593, 50970, 3567, 48087, '1.0000', '2.5263', '2.5263', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53548, '2022-01-22', 9716, 50971, 3567, 45605, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53549, '2022-01-22', 8872, 50972, 3567, NULL, '1.0000', '3.0000', '3.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 (53550, '2022-01-22', 7894, 50973, 3568, NULL, '1.0000', '-38.6667', '-38.6667', '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 (53551, '2022-01-22', 7675, 50974, 3568, NULL, '1.0000', '37.2865', '37.2865', '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 (53552, '2022-01-22', 7752, 50975, 3568, 48062, '1.0000', '2.4834', '2.4834', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53553, '2022-01-22', 8557, 50976, 3568, NULL, '1.0000', '12.7706', '12.7706', '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 (53554, '2022-01-22', 7612, 50977, 3568, NULL, '1.0000', '0.3870', '0.3870', '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 (53555, '2022-01-22', 7892, 50978, 3568, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53556, '2022-01-22', 7736, 50979, 3568, NULL, '1.0000', '10.0928', '10.0928', '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 (53557, '2022-01-22', 7672, 50980, 3568, 48003, '1.0000', '3.8200', '3.8200', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53558, '2022-01-22', 1310, 50981, 3569, 46075, '2.0000', '0.4035', '0.4035', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53559, '2022-01-22', 1812, 50982, 3570, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53560, '2022-01-22', 1401, 50983, 3570, 48948, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53561, '2022-01-22', 2135, 50984, 3570, 18930, '1.0000', '2.4732', '2.4732', '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 (53562, '2022-01-22', 7958, 50985, 3570, NULL, '1.0000', '13.0000', '13.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 (53563, '2022-01-22', 7641, 50986, 3570, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53564, '2022-01-22', 2994, 50987, 3570, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53565, '2022-01-22', 1837, 50988, 3570, NULL, '2.0000', '1.5967', '1.5967', '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 (53566, '2022-01-22', 1347, 50989, 3570, 41415, '3.0000', '3.3775', '3.3775', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53567, '2022-01-22', 7671, 50990, 3570, NULL, '1.0000', '15.5000', '15.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 (53568, '2022-01-22', 9758, 50991, 3570, NULL, '1.0000', '3.1400', '3.1400', '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 (53569, '2022-01-22', 2315, 50992, 3570, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '286.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53570, '2022-01-22', 2250, 50993, 3570, 48128, '1.0000', '6.9835', '6.9835', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53571, '2022-01-22', 1564, 50994, 3570, NULL, '1.0000', '2.4842', '2.4842', '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 (53572, '2022-01-22', 2733, 50995, 3570, 19362, '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 (53573, '2022-01-22', 2299, 50996, 3570, 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 (53574, '2022-01-22', 2169, 50997, 3570, 49348, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53575, '2022-01-22', 2345, 50998, 3570, 48652, '1.0000', '9.2733', '9.2733', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53576, '2022-01-22', 9750, 50999, 3570, NULL, '1.0000', '3.3000', '3.3000', '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 (53577, '2022-01-23', 2280, 51000, 3571, NULL, '2.0000', '18.8857', '18.8857', '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 (53578, '2022-01-23', 7482, 51001, 3571, NULL, '1.0000', '2.8136', '2.8136', '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 (53579, '2022-01-23', 2287, 51002, 3571, 48629, '2.0000', '1.8730', '1.8730', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53580, '2022-01-23', 1935, 51003, 3571, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53581, '2022-01-23', 9605, 51004, 3571, 39984, '1.0000', '50.0000', '50.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53582, '2022-01-23', 8773, 51005, 3571, 45287, '1.0000', '4.4800', '4.4800', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53583, '2022-01-23', 2821, 51006, 3571, 48490, '1.0000', '3.4701', '3.4701', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53584, '2022-01-23', 2318, 51007, 3571, 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 (53585, '2022-01-23', 8177, 51008, 3571, NULL, '1.0000', '12.9000', '12.9000', '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 (53586, '2022-01-23', 1524, 51009, 3571, 49335, '1.0000', '4.2656', '4.2656', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53587, '2022-01-23', 1855, 51010, 3571, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53588, '2022-01-23', 9758, 51011, 3571, NULL, '1.0000', '3.1400', '3.1400', '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 (53589, '2022-01-23', 8288, 51012, 3571, 39785, '2.0000', '20.0000', '20.0000', '1.8000', '1.8000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53590, '2022-01-23', 7367, 51013, 3571, NULL, '1.0000', '35.0000', '35.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 (53591, '2022-01-23', 2315, 51014, 3571, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '284.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53592, '2022-01-23', 1854, 51015, 3571, 48880, '1.0000', '2.6997', '2.6997', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53593, '2022-01-23', 9469, 51016, 3571, NULL, '1.0000', '3.1000', '3.1000', '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 (53594, '2022-01-23', 1783, 51017, 3571, 13726, '1.0000', '137.4528', '137.4528', '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 (53595, '2022-01-23', 1783, 51017, 3571, 13727, '2.0000', '137.4528', '137.4528', '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 (53596, '2022-01-23', 2336, 51018, 3571, 49321, '1.0000', '8.2640', '8.2640', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53597, '2022-01-23', 2252, 51019, 3571, 42804, '1.0000', '16.5900', '16.5900', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53598, '2022-01-23', 2221, 51020, 3571, 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 (53599, '2022-01-23', 1840, 51021, 3571, 42569, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53600, '2022-01-23', 8622, 51022, 3571, 42570, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53601, '2022-01-23', 8677, 51023, 3571, NULL, '1.0000', '292.4641', '292.4641', '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 (53602, '2022-01-23', 2221, 51024, 3571, 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 (53603, '2022-01-23', 1628, 51025, 3571, 48711, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53604, '2022-01-23', 7411, 51026, 3571, NULL, '1.0000', '1.3013', '1.3013', '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 (53605, '2022-01-23', 7324, 51027, 3571, NULL, '3.0000', '4.0000', '4.0000', '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 (53606, '2022-01-23', 8957, 51028, 3572, NULL, '1.0000', '13.5000', '13.5000', '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 (53607, '2022-01-23', 1622, 51029, 3572, NULL, '1.0000', '31.5675', '31.5675', '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 (53608, '2022-01-23', 7781, 51030, 3572, NULL, '3.0000', '4.2500', '4.2500', '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 (53609, '2022-01-23', 7482, 51031, 3572, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53610, '2022-01-23', 7641, 51032, 3572, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53611, '2022-01-23', 7585, 51033, 3572, NULL, '1.0000', '-3.1011', '-3.1011', '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 (53612, '2022-01-23', 8322, 51034, 3572, NULL, '2.0000', '7.0000', '7.0000', '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 (53613, '2022-01-23', 7715, 51035, 3572, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '43.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53614, '2022-01-23', 7675, 51036, 3572, NULL, '1.0000', '37.2865', '37.2865', '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 (53615, '2022-01-23', 8359, 51037, 3572, NULL, '1.0000', '783.8197', '783.8197', '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 (53616, '2022-01-23', 8154, 51038, 3572, NULL, '2.0000', '12.3000', '12.3000', '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 (53617, '2022-01-23', 8849, 51039, 3572, NULL, '1.0000', '1.0700', '1.0700', '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 (53618, '2022-01-23', 8083, 51040, 3572, NULL, '1.0000', '0.7700', '0.7700', '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 (53619, '2022-01-23', 2315, 51041, 3572, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '38.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53620, '2022-01-23', 9092, 51042, 3572, 40421, '3.0000', '0.3051', '0.3051', '0.5000', '0.5000', '119.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53621, '2022-01-23', 7642, 51043, 3572, 46653, '1.0000', '5.9200', '5.9200', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53622, '2022-01-23', 7674, 51044, 3572, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '92.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53623, '2022-01-23', 9758, 51045, 3572, 46936, '2.0000', '3.1400', '3.1400', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53624, '2022-01-23', 8069, 51046, 3572, 47910, '1.0000', '29.1504', '29.1504', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53625, '2022-01-23', 7368, 51047, 3572, 49290, '1.0000', '1.1446', '1.1446', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53626, '2022-01-23', 7358, 51048, 3572, 42421, '1.0000', '14.5455', '14.5455', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53627, '2022-01-23', 9760, 51049, 3572, 46938, '1.0000', '1.1000', '1.1000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53628, '2022-01-23', 1760, 51050, 3572, 48091, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53629, '2022-01-23', 1760, 51050, 3572, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53630, '2022-01-23', 9715, 51051, 3572, 49277, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53631, '2022-01-23', 8188, 51052, 3572, NULL, '1.0000', '6.7000', '6.7000', '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 (53632, '2022-01-23', 8682, 51053, 3572, NULL, '1.0000', '30.0000', '30.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 (53633, '2022-01-23', 7641, 51054, 3572, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53634, '2022-01-23', 7524, 51055, 3572, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53635, '2022-01-23', 2315, 51056, 3572, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '38.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53636, '2022-01-23', 9681, 51057, 3572, NULL, '1.0000', '7.8000', '7.8000', '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 (53637, '2022-01-23', 8457, 51058, 3572, NULL, '1.0000', '5.0785', '5.0785', '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 (53638, '2022-01-23', 7514, 51059, 3572, NULL, '1.0000', '65.8461', '65.8461', '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 (53639, '2022-01-23', 7643, 51060, 3572, NULL, '1.0000', '2.1100', '2.1100', '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 (53640, '2022-01-23', 1837, 51061, 3572, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53641, '2022-01-23', 8814, 51062, 3572, NULL, '2.0000', '5.0000', '5.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 (53642, '2022-01-23', 7557, 51063, 3572, NULL, '10.0000', '0.5000', '0.5000', '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 (53643, '2022-01-23', 7570, 51064, 3572, NULL, '1.0000', '10.0000', '10.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 (53644, '2022-01-23', 7822, 51065, 3572, NULL, '1.0000', '8.0333', '8.0333', '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 (53645, '2022-01-23', 9098, 51066, 3572, NULL, '1.0000', '24.7368', '24.7368', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53646, '2022-01-23', 7784, 51067, 3572, NULL, '1.0000', '4.2500', '4.2500', '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 (53647, '2022-01-23', 9012, 51068, 3572, NULL, '1.0000', '24.0000', '24.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 (53648, '2022-01-23', 7959, 51069, 3572, NULL, '2.0000', '9.6000', '9.6000', '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 (53649, '2022-01-23', 8237, 51070, 3572, NULL, '1.0000', '8.5000', '8.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 (53650, '2022-01-23', 9092, 51071, 3572, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '120.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53651, '2022-01-23', 9714, 51072, 3572, 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 (53652, '2022-01-23', 9729, 51073, 3572, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53653, '2022-01-23', 7886, 51074, 3572, NULL, '1.0000', '6.7841', '6.7841', '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 (53654, '2022-01-23', 8127, 51075, 3572, NULL, '1.0000', '24.5300', '24.5300', '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 (53655, '2022-01-23', 8941, 51076, 3572, NULL, '2.0000', '12.0000', '12.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 (53656, '2022-01-23', 2315, 51077, 3572, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '38.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53657, '2022-01-23', 8308, 51078, 3572, NULL, '1.0000', '14.1857', '14.1857', '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 (53658, '2022-01-23', 8063, 51079, 3572, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '95.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53659, '2022-01-23', 8596, 51080, 3572, NULL, '1.0000', '17.0000', '17.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 (53660, '2022-01-23', 7675, 51081, 3572, NULL, '1.0000', '37.2865', '37.2865', '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 (53661, '2022-01-23', 7509, 51082, 3572, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53662, '2022-01-23', 9736, 51083, 3573, 47093, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53663, '2022-01-23', 2315, 51084, 3573, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '283.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53664, '2022-01-23', 1762, 51085, 3573, 48707, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53665, '2022-01-23', 7980, 51086, 3573, NULL, '4.0000', '17.4500', '17.4500', '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 (53666, '2022-01-23', 1488, 51087, 3573, 48956, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53667, '2022-01-23', 2435, 51088, 3573, 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 (53668, '2022-01-23', 2660, 51089, 3573, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53669, '2022-01-23', 9556, 51090, 3573, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53670, '2022-01-23', 7411, 51091, 3573, NULL, '1.0000', '1.3013', '1.3013', '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 (53671, '2022-01-23', 7692, 51092, 3574, NULL, '1.0000', '2.7000', '2.7000', '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 (53672, '2022-01-23', 7514, 51093, 3574, NULL, '1.0000', '2.2500', '2.2500', '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 (53673, '2022-01-23', 1966, 51094, 3574, 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 (53674, '2022-01-23', 7411, 51095, 3574, NULL, '1.0000', '1.3013', '1.3013', '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 (53675, '2022-01-23', 2166, 51096, 3574, 19833, '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 (53676, '2022-01-23', 9734, 51097, 3574, 47079, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53677, '2022-01-23', 2989, 51098, 3574, 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 (53678, '2022-01-23', 2386, 51099, 3574, 48461, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53679, '2022-01-23', 2704, 51100, 3574, NULL, '1.0000', '14.9700', '14.9700', '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 (53680, '2022-01-23', 7708, 51101, 3574, 45203, '1.0000', '6.3400', '6.3400', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53681, '2022-01-23', 2908, 51102, 3574, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '50.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53682, '2022-01-23', 2169, 51103, 3574, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '113.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53683, '2022-01-23', 2163, 51104, 3574, NULL, '1.0000', '22.0000', '22.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 (53684, '2022-01-23', 2887, 51105, 3574, 47130, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53685, '2022-01-23', 9762, 51106, 3574, 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 (53686, '2022-01-23', 2283, 51107, 3574, 48600, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53687, '2022-01-23', 7411, 51108, 3574, NULL, '1.0000', '1.3013', '1.3013', '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 (53688, '2022-01-23', 2511, 51109, 3574, 48700, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53689, '2022-01-23', 1680, 51110, 3575, 18829, '1.0000', '5.0209', '5.0209', '7.0000', '7.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 (53690, '2022-01-23', 1533, 51111, 3575, 10381, '-1.0000', '2.5917', '2.5917', '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 (53691, '2022-01-23', 1533, 51111, 3575, NULL, '2.0000', '2.5917', '2.5917', '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 (53692, '2022-01-23', 2669, 51112, 3575, 11757, '-5.0000', '24.5336', '24.5336', '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 (53693, '2022-01-23', 2669, 51112, 3575, NULL, '6.0000', '24.5336', '24.5336', '32.0000', '32.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 (53694, '2022-01-23', 2959, 51113, 3575, 33063, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53695, '2022-01-23', 1687, 51114, 3575, 5785, '-22.0000', '165.9024', '165.9024', '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 (53696, '2022-01-23', 1687, 51114, 3575, NULL, '23.0000', '165.9024', '165.9024', '16.0000', '16.0000', '-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 (53697, '2022-01-23', 1671, 51115, 3575, 7457, '-39.0000', '4.2000', '4.2000', '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 (53698, '2022-01-23', 1671, 51115, 3575, NULL, '40.0000', '4.2000', '4.2000', '70.0000', '70.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 (53699, '2022-01-23', 8469, 51116, 3575, NULL, '1.0000', '15.0000', '15.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 (53700, '2022-01-23', 1904, 51117, 3575, 5442, '-26.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 (53701, '2022-01-23', 1904, 51117, 3575, NULL, '27.0000', '0.3200', '0.3200', '1.0000', '1.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 (53702, '2022-01-23', 2109, 51118, 3575, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '84.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 (53703, '2022-01-23', 1602, 51119, 3575, 5897, '-92.0000', '6.7859', '6.7859', '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 (53704, '2022-01-23', 1602, 51119, 3575, NULL, '93.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53705, '2022-01-23', 2959, 51120, 3575, 33063, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53706, '2022-01-23', 2379, 51121, 3575, 4032, '-37.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 (53707, '2022-01-23', 2379, 51121, 3575, NULL, '39.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53708, '2022-01-23', 2302, 51122, 3575, 2963, '-28.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 (53709, '2022-01-23', 2302, 51122, 3575, NULL, '30.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (53710, '2022-01-23', 1697, 51123, 3575, NULL, '1.0000', '9.2100', '9.2100', '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 (53711, '2022-01-23', 1572, 51124, 3575, 20586, '4.0000', '138.3520', '138.3520', '2.5000', '2.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 (53712, '2022-01-23', 1314, 51125, 3575, 2710, '-1.0000', '1.2000', '1.2000', '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 (53713, '2022-01-23', 1314, 51125, 3575, 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 (53714, '2022-01-23', 1812, 51126, 3575, 8224, '-59.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 (53715, '2022-01-23', 1812, 51126, 3575, NULL, '60.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53716, '2022-01-23', 1651, 51127, 3575, 3222, '-42.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 (53717, '2022-01-23', 1651, 51127, 3575, NULL, '43.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-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 (53718, '2022-01-23', 2592, 51128, 3575, 10812, '-15.0000', '7.9670', '7.9670', '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 (53719, '2022-01-23', 2592, 51128, 3575, NULL, '16.0000', '7.9670', '7.9670', '12.0000', '12.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 (53720, '2022-01-23', 2231, 51129, 3575, 1706, '-3.0000', '33.0000', '33.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 (53721, '2022-01-23', 2231, 51129, 3575, NULL, '4.0000', '33.0000', '33.0000', '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 (53722, '2022-01-23', 1519, 51130, 3575, 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 (53723, '2022-01-23', 9748, 51131, 3575, NULL, '1.0000', '2.5300', '2.5300', '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 (53724, '2022-01-23', 9577, 51132, 3575, NULL, '3.0000', '0.3200', '0.3200', '0.8000', '0.8000', '-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 (53725, '2022-01-23', 2660, 51133, 3575, 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 (53726, '2022-01-23', 2342, 51134, 3575, 3845, '-65.0000', '1.8600', '1.8600', '2.7000', '2.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 (53727, '2022-01-23', 2342, 51134, 3575, NULL, '70.0000', '1.8600', '1.8600', '2.7000', '2.7000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53728, '2022-01-23', 2244, 51135, 3575, 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 (53729, '2022-01-23', 2491, 51136, 3575, 6228, '-20.0000', '12.2000', '12.2000', '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 (53730, '2022-01-23', 2491, 51136, 3575, NULL, '21.0000', '12.2000', '12.2000', '17.5000', '17.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53731, '2022-01-23', 1602, 51137, 3575, 5897, '-92.0000', '6.7859', '6.7859', '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 (53732, '2022-01-23', 1602, 51137, 3575, NULL, '93.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53733, '2022-01-23', 1498, 51138, 3575, 19685, '-2.0000', '0.3300', '0.3300', '0.6000', '0.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 (53734, '2022-01-23', 1498, 51138, 3575, NULL, '6.0000', '0.3300', '0.3300', '0.6000', '0.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 (53735, '2022-01-23', 1857, 51139, 3575, 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 (53736, '2022-01-23', 9094, 51140, 3575, NULL, '1.0000', '5.7000', '5.7000', '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 (53737, '2022-01-23', 9772, 51141, 3576, 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 (53738, '2022-01-23', 1888, 51142, 3576, 14663, '-1.0000', '134.8400', '134.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 (53739, '2022-01-23', 1888, 51142, 3576, NULL, '2.0000', '134.8400', '134.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 (53740, '2022-01-23', 2237, 51143, 3576, 2781, '-33.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 (53741, '2022-01-23', 2237, 51143, 3576, NULL, '34.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (53742, '2022-01-23', 7685, 51144, 3577, NULL, '2.0000', '31.2000', '31.2000', '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 (53743, '2022-01-23', 8454, 51145, 3577, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53744, '2022-01-23', 2135, 51146, 3577, 18930, '2.0000', '2.4732', '2.4732', '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 (53745, '2022-01-23', 1912, 51147, 3577, 37802, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53746, '2022-01-23', 2389, 51148, 3578, 4041, '-23.0000', '3.1400', '3.1400', '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 (53747, '2022-01-23', 2389, 51148, 3578, NULL, '25.0000', '3.1400', '3.1400', '4.5000', '4.5000', '-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 (53748, '2022-01-23', 1455, 51149, 3578, 18913, '2.0000', '4.0000', '4.0000', '7.0000', '7.0000', '92.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 (53749, '2022-01-23', 8007, 51150, 3579, NULL, '1.0000', '8.2000', '8.2000', '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 (53750, '2022-01-23', 7675, 51151, 3579, NULL, '1.0000', '37.2865', '37.2865', '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 (53751, '2022-01-23', 7643, 51152, 3579, NULL, '1.0000', '2.1100', '2.1100', '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 (53752, '2022-01-23', 1837, 51153, 3579, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53753, '2022-01-23', 7719, 51154, 3579, 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 (53754, '2022-01-23', 7411, 51155, 3579, NULL, '1.0000', '1.3600', '1.3600', '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 (53755, '2022-01-23', 7514, 51156, 3579, NULL, '1.0000', '65.8461', '65.8461', '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 (53756, '2022-01-23', 2284, 51157, 3579, 45302, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53757, '2022-01-23', 7981, 51158, 3579, NULL, '10.0000', '12.3059', '12.3059', '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 (53758, '2022-01-23', 7743, 51159, 3579, NULL, '1.0000', '419203.7668', '419203.7668', '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 (53759, '2022-01-23', 8077, 51160, 3579, NULL, '1.0000', '21.3750', '21.3750', '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 (53760, '2022-01-23', 7641, 51161, 3579, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53761, '2022-01-23', 7962, 51162, 3579, 38177, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53762, '2022-01-23', 9758, 51163, 3579, 46936, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53763, '2022-01-23', 8304, 51164, 3579, NULL, '1.0000', '6.0233', '6.0233', '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 (53764, '2022-01-23', 7866, 51165, 3579, NULL, '2.0000', '2.5000', '2.5000', '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 (53765, '2022-01-23', 9337, 51166, 3579, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53766, '2022-01-23', 2761, 51167, 3579, 46917, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53767, '2022-01-23', 7848, 51168, 3579, NULL, '1.0000', '-8.0868', '-8.0868', '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 (53768, '2022-01-23', 8938, 51169, 3579, NULL, '2.0000', '7.8500', '7.8500', '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 (53769, '2022-01-23', 8756, 51170, 3579, 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 (53770, '2022-01-23', 1854, 51171, 3579, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53771, '2022-01-23', 8101, 51172, 3579, NULL, '2.0000', '21.7000', '21.7000', '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 (53772, '2022-01-23', 8188, 51173, 3579, NULL, '2.0000', '6.7000', '6.7000', '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 (53773, '2022-01-23', 9084, 51174, 3579, NULL, '2.0000', '8.9000', '8.9000', '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 (53774, '2022-01-23', 9089, 51175, 3579, 42765, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53775, '2022-01-23', 9272, 51176, 3579, NULL, '1.0000', '3.1000', '3.1000', '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 (53776, '2022-01-23', 8765, 51177, 3579, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53777, '2022-01-23', 1871, 51178, 3580, 8223, '-145.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 (53778, '2022-01-23', 1871, 51178, 3580, NULL, '155.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53779, '2022-01-23', 1695, 51179, 3580, 12925, '-7.0000', '15.5000', '15.5000', '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 (53780, '2022-01-23', 1695, 51179, 3580, NULL, '8.0000', '15.5000', '15.5000', '22.0000', '22.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 (53781, '2022-01-23', 2283, 51180, 3580, 2943, '-7.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 (53782, '2022-01-23', 2283, 51180, 3580, NULL, '8.0000', '1.4300', '1.4300', '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 (53783, '2022-01-23', 1502, 51181, 3580, 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 (53784, '2022-01-23', 9758, 51182, 3581, NULL, '1.0000', '3.1400', '3.1400', '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 (53785, '2022-01-23', 1590, 51183, 3581, 48900, '2.0000', '1.4454', '1.4454', '2.3000', '2.3000', '34.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53786, '2022-01-23', 2295, 51184, 3581, 48904, '2.0000', '1.1161', '1.1161', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53787, '2022-01-23', 1608, 51185, 3581, 48697, '1.0000', '3.7818', '3.7818', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53788, '2022-01-23', 9079, 51186, 3581, NULL, '1.0000', '15.0000', '15.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 (53789, '2022-01-23', 1757, 51187, 3581, NULL, '1.0000', '4.0024', '4.0024', '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 (53790, '2022-01-23', 7626, 51188, 3581, 48505, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53791, '2022-01-23', 2169, 51189, 3581, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '112.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53792, '2022-01-23', 1499, 51190, 3581, 49347, '1.0000', '0.3411', '0.3411', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53793, '2022-01-23', 7514, 51191, 3581, NULL, '1.0000', '2.2500', '2.2500', '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 (53794, '2022-01-23', 1665, 51192, 3581, 49365, '3.0000', '1.0999', '1.0999', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53795, '2022-01-24', 7675, 51193, 3582, NULL, '1.0000', '37.2865', '37.2865', '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 (53796, '2022-01-24', 8062, 51194, 3582, NULL, '6.0000', '4.8200', '4.8200', '3.0000', '3.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 (53797, '2022-01-24', 7514, 51195, 3582, NULL, '1.0000', '65.8461', '65.8461', '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 (53798, '2022-01-24', 7672, 51196, 3582, 48003, '2.0000', '3.8200', '3.8200', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53799, '2022-01-24', 9275, 51197, 3582, NULL, '2.0000', '6.3000', '6.3000', '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 (53800, '2022-01-24', 7762, 51198, 3582, 48006, '1.0000', '4.5695', '4.5695', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53801, '2022-01-24', 9511, 51199, 3582, 48837, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53802, '2022-01-24', 2848, 51200, 3582, NULL, '1.0000', '16.2000', '16.2000', '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 (53803, '2022-01-24', 7412, 51201, 3582, NULL, '1.0000', '1.5200', '1.5200', '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 (53804, '2022-01-24', 9758, 51202, 3582, 46936, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53805, '2022-01-24', 9254, 51203, 3582, NULL, '1.0000', '20.0000', '20.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 (53806, '2022-01-24', 8164, 51204, 3582, NULL, '1.0000', '15.5606', '15.5606', '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 (53807, '2022-01-24', 7401, 51205, 3582, NULL, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53808, '2022-01-24', 7318, 51206, 3582, NULL, '1.0000', '17.2098', '17.2098', '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 (53809, '2022-01-24', 7467, 51207, 3582, NULL, '1.0000', '16.5500', '16.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 (53810, '2022-01-24', 7750, 51208, 3582, 49286, '1.0000', '22.7100', '22.7100', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53811, '2022-01-24', 8216, 51209, 3582, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53812, '2022-01-24', 8596, 51210, 3582, NULL, '1.0000', '17.0000', '17.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 (53813, '2022-01-24', 8188, 51211, 3582, NULL, '1.0000', '6.7000', '6.7000', '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 (53814, '2022-01-24', 8744, 51212, 3582, 44478, '1.0000', '3.5260', '3.5260', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53815, '2022-01-24', 1854, 51213, 3582, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53816, '2022-01-24', 8061, 51214, 3582, NULL, '1.0000', '1.6000', '1.6000', '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 (53817, '2022-01-24', 9734, 51215, 3582, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '128.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53818, '2022-01-24', 9150, 51216, 3582, NULL, '1.0000', '19.8000', '19.8000', '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 (53819, '2022-01-24', 8596, 51217, 3582, NULL, '1.0000', '17.0000', '17.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 (53820, '2022-01-24', 7509, 51218, 3582, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53821, '2022-01-24', 7820, 51219, 3582, NULL, '1.0000', '-970.6000', '-970.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53822, '2022-01-24', 7848, 51220, 3582, NULL, '1.0000', '-8.0868', '-8.0868', '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 (53823, '2022-01-24', 7674, 51221, 3582, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53824, '2022-01-24', 8596, 51222, 3582, NULL, '1.0000', '17.0000', '17.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 (53825, '2022-01-24', 7509, 51223, 3582, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53826, '2022-01-24', 8672, 51224, 3582, 48338, '2.0000', '1.7137', '1.7137', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53827, '2022-01-24', 8208, 51225, 3582, NULL, '2.0000', '33.0000', '33.0000', '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 (53828, '2022-01-24', 7877, 51226, 3582, NULL, '1.0000', '3.3867', '3.3867', '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 (53829, '2022-01-24', 1619, 51227, 3583, NULL, '3.0000', '9.8500', '9.8500', '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 (53830, '2022-01-24', 2821, 51228, 3583, 48490, '1.0000', '3.4701', '3.4701', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53831, '2022-01-24', 1863, 51229, 3583, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53832, '2022-01-24', 1564, 51230, 3583, NULL, '2.0000', '2.4842', '2.4842', '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 (53833, '2022-01-24', 7354, 51231, 3583, 39856, '1.0000', '0.0102', '0.0102', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53834, '2022-01-24', 9634, 51232, 3583, 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 (53835, '2022-01-24', 8876, 51233, 3583, NULL, '1.0000', '0.9900', '0.9900', '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 (53836, '2022-01-24', 2283, 51234, 3583, 48600, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53837, '2022-01-24', 7917, 51235, 3583, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (53838, '2022-01-24', 7482, 51236, 3583, NULL, '1.0000', '2.8136', '2.8136', '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 (53839, '2022-01-24', 1863, 51237, 3583, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53840, '2022-01-24', 7658, 51238, 3583, NULL, '10.0000', '10.1500', '10.1500', '2.8000', '2.8000', '-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 (53841, '2022-01-24', 1935, 51239, 3583, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53842, '2022-01-24', 2848, 51240, 3583, 49339, '1.0000', '16.2000', '16.2000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53843, '2022-01-24', 2263, 51241, 3583, 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 (53844, '2022-01-24', 1431, 51242, 3583, NULL, '2.0000', '9.8000', '9.8000', '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 (53845, '2022-01-24', 2405, 51243, 3583, 37770, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '46.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53846, '2022-01-24', 1571, 51244, 3583, 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 (53847, '2022-01-24', 2633, 51245, 3583, 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 (53848, '2022-01-24', 8454, 51246, 3583, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53849, '2022-01-24', 3054, 51247, 3583, 49351, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53850, '2022-01-24', 1841, 51248, 3583, 34025, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53851, '2022-01-24', 1840, 51249, 3583, 42569, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '7.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53852, '2022-01-24', 2289, 51250, 3583, 42836, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53853, '2022-01-24', 2289, 51250, 3583, 38551, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '15.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53854, '2022-01-24', 7514, 51251, 3583, NULL, '1.0000', '2.2500', '2.2500', '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 (53855, '2022-01-24', 2386, 51252, 3583, 48461, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53856, '2022-01-24', 1840, 51253, 3584, 42569, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53857, '2022-01-24', 2289, 51254, 3584, 38551, '5.0000', '0.3186', '0.3186', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53858, '2022-01-24', 7328, 51255, 3584, NULL, '5.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (53859, '2022-01-24', 1856, 51256, 3584, NULL, '1.0000', '1.7723', '1.7723', '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 (53860, '2022-01-24', 7723, 51257, 3584, 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 (53861, '2022-01-24', 8746, 51258, 3584, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53862, '2022-01-24', 2299, 51259, 3584, 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 (53863, '2022-01-24', 2221, 51260, 3584, 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 (53864, '2022-01-24', 1520, 51261, 3584, 48888, '2.0000', '1.4700', '1.4700', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53865, '2022-01-24', 1690, 51262, 3584, 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 (53866, '2022-01-24', 7886, 51263, 3584, NULL, '1.0000', '14.5000', '14.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 (53867, '2022-01-24', 7411, 51264, 3584, NULL, '1.0000', '1.3013', '1.3013', '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 (53868, '2022-01-24', 2272, 51265, 3584, NULL, '1.0000', '5.5000', '5.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 (53869, '2022-01-24', 2250, 51266, 3584, 48128, '1.0000', '6.9835', '6.9835', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53870, '2022-01-24', 1410, 51267, 3584, NULL, '1.0000', '1.8562', '1.8562', '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 (53871, '2022-01-24', 2255, 51268, 3584, 48508, '1.0000', '17.7288', '17.7288', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53872, '2022-01-24', 1557, 51269, 3584, 48869, '1.0000', '7.3662', '7.3662', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53873, '2022-01-24', 7739, 51270, 3585, NULL, '1.0000', '2.7500', '2.7500', '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 (53874, '2022-01-24', 2545, 51271, 3585, 38553, '1.0000', '4.2678', '4.2678', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53875, '2022-01-24', 1574, 51272, 3586, 48648, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53876, '2022-01-24', 2315, 51273, 3586, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '282.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53877, '2022-01-24', 8169, 51274, 3586, NULL, '1.0000', '7.9800', '7.9800', '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 (53878, '2022-01-24', 9592, 51275, 3586, 48715, '20.0000', '3.2000', '3.2000', '4.2000', '4.2000', '20.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53879, '2022-01-24', 1950, 51276, 3586, NULL, '1.0000', '3.5525', '3.5525', '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 (53880, '2022-01-24', 9463, 51277, 3586, NULL, '1.0000', '7.5000', '7.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 (53881, '2022-01-24', 1602, 51278, 3587, 5897, '-94.0000', '6.7859', '6.7859', '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 (53882, '2022-01-24', 1602, 51278, 3587, NULL, '95.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53883, '2022-01-24', 1602, 51279, 3587, 5897, '-94.0000', '6.7859', '6.7859', '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 (53884, '2022-01-24', 1602, 51279, 3587, NULL, '95.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53885, '2022-01-24', 9520, 51280, 3587, 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 (53886, '2022-01-24', 2887, 51281, 3587, 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 (53887, '2022-01-24', 1409, 51282, 3587, 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 (53888, '2022-01-24', 2416, 51283, 3587, 4745, '-18.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 (53889, '2022-01-24', 2416, 51283, 3587, NULL, '19.0000', '1.2000', '1.2000', '1.5000', '1.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 (53890, '2022-01-24', 2109, 51284, 3587, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '82.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 (53891, '2022-01-24', 1650, 51285, 3587, 3221, '-8.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 (53892, '2022-01-24', 1650, 51285, 3587, NULL, '9.0000', '14.8000', '14.8000', '20.0000', '20.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 (53893, '2022-01-24', 2763, 51286, 3587, 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 (53894, '2022-01-24', 2608, 51287, 3587, NULL, '1.0000', '83.3300', '83.3300', '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 (53895, '2022-01-24', 2545, 51288, 3587, 6306, '-6.0000', '5.8819', '5.8819', '9.5000', '9.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 (53896, '2022-01-24', 2545, 51288, 3587, NULL, '7.0000', '5.8819', '5.8819', '9.5000', '9.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 (53897, '2022-01-24', 9628, 51289, 3587, NULL, '1.0000', '46.1200', '46.1200', '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 (53898, '2022-01-24', 1602, 51290, 3587, 5897, '-94.0000', '6.7859', '6.7859', '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 (53899, '2022-01-24', 1602, 51290, 3587, NULL, '95.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53900, '2022-01-24', 2661, 51291, 3587, NULL, '5.0000', '9.0000', '9.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 (53901, '2022-01-24', 7619, 51292, 3587, NULL, '1.0000', '36.9800', '36.9800', '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 (53902, '2022-01-24', 1513, 51293, 3587, 10888, '-3.0000', '11.9600', '11.9600', '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 (53903, '2022-01-24', 1513, 51293, 3587, NULL, '4.0000', '11.9600', '11.9600', '17.5000', '17.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 (53904, '2022-01-24', 9722, 51294, 3587, 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 (53905, '2022-01-24', 7802, 51295, 3587, NULL, '3.0000', '0.9200', '0.9200', '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 (53906, '2022-01-24', 9747, 51296, 3587, NULL, '2.0000', '0.6500', '0.6500', '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 (53907, '2022-01-24', 2990, 51297, 3587, NULL, '1.0000', '1.1200', '1.1200', '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 (53908, '2022-01-24', 1410, 51298, 3587, 22317, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '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 (53909, '2022-01-24', 1402, 51299, 3587, 22313, '1.0000', '2.2000', '2.2000', '3.5000', '3.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 (53910, '2022-01-24', 2315, 51300, 3587, 2735, '-148.0000', '0.3300', '0.3300', '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 (53911, '2022-01-24', 2315, 51300, 3587, NULL, '149.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-149.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53912, '2022-01-24', 2379, 51301, 3587, 4032, '-39.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 (53913, '2022-01-24', 2379, 51301, 3587, NULL, '40.0000', '1.5900', '1.5900', '2.5000', '2.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 (53914, '2022-01-24', 1339, 51302, 3587, 13004, '-4.0000', '1.6012', '1.6012', '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 (53915, '2022-01-24', 1339, 51302, 3587, NULL, '5.0000', '1.6012', '1.6012', '2.5000', '2.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 (53916, '2022-01-24', 2655, 51303, 3587, 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 (53917, '2022-01-24', 1966, 51304, 3587, 3237, '-6.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 (53918, '2022-01-24', 1966, 51304, 3587, NULL, '7.0000', '2.7100', '2.7100', '3.5000', '3.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 (53919, '2022-01-24', 1665, 51305, 3587, 3235, '-59.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 (53920, '2022-01-24', 1665, 51305, 3587, NULL, '61.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53921, '2022-01-24', 1812, 51306, 3587, 8224, '-60.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 (53922, '2022-01-24', 1812, 51306, 3587, NULL, '63.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53923, '2022-01-24', 1841, 51307, 3587, 645, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '6.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 (53924, '2022-01-24', 1840, 51308, 3587, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (53925, '2022-01-24', 2366, 51309, 3587, 3833, '-30.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 (53926, '2022-01-24', 2366, 51309, 3587, NULL, '32.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53927, '2022-01-24', 7509, 51310, 3588, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53928, '2022-01-24', 8047, 51311, 3588, 47906, '1.0000', '45.8000', '45.8000', '36.5000', '36.5000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53929, '2022-01-24', 1340, 51312, 3588, 49280, '1.0000', '4.3962', '4.3962', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53930, '2022-01-24', 7673, 51313, 3588, NULL, '1.0000', '15.9274', '15.9274', '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 (53931, '2022-01-24', 7411, 51314, 3588, NULL, '1.0000', '1.3600', '1.3600', '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 (53932, '2022-01-24', 1612, 51315, 3588, 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 (53933, '2022-01-24', 9274, 51316, 3588, NULL, '1.0000', '3.5638', '3.5638', '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 (53934, '2022-01-24', 8969, 51317, 3588, NULL, '1.0000', '2.0000', '2.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 (53935, '2022-01-24', 7954, 51318, 3588, NULL, '4.0000', '24.4161', '24.4161', '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 (53936, '2022-01-24', 7333, 51319, 3588, NULL, '5.0000', '13.5000', '13.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 (53937, '2022-01-24', 8743, 51320, 3588, NULL, '1.0000', '9.6250', '9.6250', '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 (53938, '2022-01-24', 8466, 51321, 3588, NULL, '1.0000', '-24.7500', '-24.7500', '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 (53939, '2022-01-24', 7507, 51322, 3588, NULL, '4.0000', '6.5000', '6.5000', '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 (53940, '2022-01-24', 7621, 51323, 3588, 44735, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53941, '2022-01-24', 8136, 51324, 3588, NULL, '1.0000', '29.3500', '29.3500', '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 (53942, '2022-01-24', 8135, 51325, 3588, NULL, '1.0000', '43.5453', '43.5453', '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 (53943, '2022-01-24', 7491, 51326, 3588, 46186, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53944, '2022-01-24', 1340, 51327, 3588, 49280, '1.0000', '4.3962', '4.3962', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53945, '2022-01-24', 8965, 51328, 3588, NULL, '1.0000', '52.9900', '52.9900', '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 (53946, '2022-01-24', 7658, 51329, 3588, 47945, '5.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '9.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53947, '2022-01-24', 9309, 51330, 3588, NULL, '1.0000', '6.6600', '6.6600', '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 (53948, '2022-01-24', 8666, 51331, 3588, NULL, '1.0000', '0.4600', '0.4600', '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 (53949, '2022-01-24', 1541, 51332, 3588, NULL, '1.0000', '19.0062', '19.0062', '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 (53950, '2022-01-24', 7921, 51333, 3588, NULL, '1.0000', '0.3000', '0.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 (53951, '2022-01-24', 7872, 51334, 3588, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (53952, '2022-01-24', 8077, 51335, 3588, NULL, '1.0000', '21.3750', '21.3750', '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 (53953, '2022-01-24', 7704, 51336, 3588, NULL, '1.0000', '-1.5625', '-1.5625', '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 (53954, '2022-01-24', 2965, 51337, 3588, NULL, '1.0000', '3.9200', '3.9200', '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 (53955, '2022-01-24', 8279, 51338, 3588, 42781, '1.0000', '7.4044', '7.4044', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53956, '2022-01-24', 7931, 51339, 3588, NULL, '1.0000', '0.2500', '0.2500', '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 (53957, '2022-01-24', 9092, 51340, 3588, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '116.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53958, '2022-01-24', 7704, 51341, 3588, NULL, '1.0000', '-1.5625', '-1.5625', '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 (53959, '2022-01-24', 7394, 51342, 3588, 36054, '1.0000', '178.5879', '178.5879', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53960, '2022-01-24', 7765, 51343, 3588, NULL, '1.0000', '16.0000', '16.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 (53961, '2022-01-24', 8084, 51344, 3588, NULL, '1.0000', '8.6981', '8.6981', '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 (53962, '2022-01-24', 7826, 51345, 3588, 43524, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53963, '2022-01-24', 1856, 51346, 3588, 44749, '1.0000', '-13.1783', '-13.1783', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53964, '2022-01-24', 1620, 51347, 3588, 46658, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53965, '2022-01-24', 1620, 51347, 3588, NULL, '7.0000', '2.2300', '2.2300', '4.0000', '4.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 (53966, '2022-01-24', 7554, 51348, 3588, 48389, '10.0000', '1.6815', '1.6815', '2.2000', '2.2000', '3.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53967, '2022-01-24', 7431, 51349, 3588, 34498, '1.0000', '-2.1674', '-2.1674', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53968, '2022-01-24', 9394, 51350, 3588, NULL, '2.0000', '5.5000', '5.5000', '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 (53969, '2022-01-24', 2476, 51351, 3588, 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 (53970, '2022-01-24', 9513, 51352, 3588, NULL, '1.0000', '6.8300', '6.8300', '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 (53971, '2022-01-24', 7523, 51353, 3588, NULL, '1.0000', '51.7066', '51.7066', '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 (53972, '2022-01-24', 7411, 51354, 3588, NULL, '5.0000', '1.3600', '1.3600', '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 (53973, '2022-01-24', 7394, 51355, 3588, 36054, '1.0000', '178.5879', '178.5879', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53974, '2022-01-24', 7723, 51356, 3588, 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 (53975, '2022-01-24', 9729, 51357, 3588, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53976, '2022-01-24', 7366, 51358, 3588, 45810, '1.0000', '7.6500', '7.6500', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53977, '2022-01-24', 7709, 51359, 3588, NULL, '2.0000', '39.7124', '39.7124', '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 (53978, '2022-01-24', 3001, 51360, 3588, NULL, '2.0000', '1.5000', '1.5000', '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 (53979, '2022-01-24', 7428, 51361, 3588, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53980, '2022-01-24', 9337, 51362, 3588, 48301, '1.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53981, '2022-01-24', 7820, 51363, 3588, NULL, '1.0000', '-970.6000', '-970.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53982, '2022-01-24', 1981, 51364, 3589, 33068, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53983, '2022-01-24', 1350, 51365, 3590, 45120, '1.0000', '22.6564', '22.6564', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53984, '2022-01-24', 1347, 51366, 3590, 49034, '1.0000', '59.0138', '59.0138', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53985, '2022-01-24', 1347, 51366, 3590, NULL, '2.0000', '59.0138', '59.0138', '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 (53986, '2022-01-24', 8065, 51367, 3590, NULL, '1.0000', '4.9800', '4.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 (53987, '2022-01-24', 2254, 51368, 3590, 48771, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53988, '2022-01-24', 9557, 51369, 3590, 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 (53989, '2022-01-24', 9735, 51370, 3590, 46029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53990, '2022-01-24', 8517, 51371, 3590, 47988, '1.0000', '28.2341', '28.2341', '37.5000', '37.5000', '3.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53991, '2022-01-24', 1584, 51372, 3590, 45620, '5.0000', '5.4000', '5.4000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53992, '2022-01-24', 1584, 51372, 3590, 44035, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53993, '2022-01-24', 8761, 51373, 3590, 45623, '2.0000', '12.0000', '12.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53994, '2022-01-24', 8387, 51374, 3590, 46950, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53995, '2022-01-24', 2511, 51375, 3590, 49238, '2.0000', '8.8015', '8.8015', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53996, '2022-01-24', 1659, 51376, 3590, 13632, '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 (53997, '2022-01-24', 2154, 51377, 3590, 40629, '1.0000', '12.4444', '12.4444', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53998, '2022-01-24', 1427, 51378, 3590, 46760, '1.0000', '14.5073', '14.5073', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53999, '2022-01-24', 2247, 51379, 3590, 24101, '2.0000', '2.5000', '2.5000', '3.5000', '3.5000', '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 (54000, '2022-01-24', 1592, 51380, 3590, 46733, '1.0000', '34.2121', '34.2121', '47.0000', '47.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54001, '2022-01-24', 2482, 51381, 3590, 5194, '1.0000', '6.0000', '6.0000', '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 (54002, '2022-01-24', 2460, 51382, 3590, 46076, '1.0000', '34.3112', '34.3112', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54003, '2022-01-24', 7915, 51383, 3590, 46622, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54004, '2022-01-24', 2821, 51384, 3590, 49245, '1.0000', '3.4487', '3.4487', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54005, '2022-01-24', 1904, 51385, 3590, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54006, '2022-01-24', 1425, 51386, 3590, 49167, '1.0000', '7.0340', '7.0340', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54007, '2022-01-24', 1425, 51387, 3590, 49167, '1.0000', '7.0340', '7.0340', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54008, '2022-01-24', 9734, 51388, 3590, 46028, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54009, '2022-01-24', 1347, 51389, 3590, 49034, '1.0000', '59.0138', '59.0138', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54010, '2022-01-24', 1347, 51389, 3590, NULL, '3.0000', '59.0138', '59.0138', '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 (54011, '2022-01-24', 2856, 51390, 3590, 44539, '4.0000', '7.2000', '7.2000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54012, '2022-01-24', 1863, 51391, 3590, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '78.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54013, '2022-01-24', 3001, 51392, 3590, NULL, '1.0000', '1.5000', '1.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 (54014, '2022-01-24', 9291, 51393, 3590, 49021, '1.0000', '16.3250', '16.3250', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54015, '2022-01-24', 1667, 51394, 3590, 49133, '1.0000', '47.5293', '47.5293', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54016, '2022-01-24', 1692, 51395, 3590, 49014, '1.0000', '9.7033', '9.7033', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54017, '2022-01-24', 2221, 51396, 3590, 46707, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54018, '2022-01-24', 2655, 51397, 3590, 45625, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54019, '2022-01-24', 2366, 51398, 3590, 47955, '2.0000', '4.0593', '4.0593', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54020, '2022-01-24', 1812, 51399, 3590, 49149, '1.0000', '7.9726', '7.9726', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54021, '2022-01-24', 1574, 51400, 3590, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54022, '2022-01-24', 1980, 51401, 3590, 40372, '1.0000', '0.5480', '0.5480', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54023, '2022-01-24', 8566, 51402, 3590, 35940, '1.0000', '-8.9555', '-8.9555', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54024, '2022-01-24', 9644, 51403, 3590, 41993, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54025, '2022-01-24', 8208, 51404, 3590, NULL, '1.0000', '33.0000', '33.0000', '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 (54026, '2022-01-24', 2481, 51405, 3590, 5193, '1.0000', '3.5000', '3.5000', '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 (54027, '2022-01-24', 2478, 51406, 3590, 5191, '1.0000', '3.0000', '3.0000', '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 (54028, '2022-01-24', 9557, 51407, 3590, 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 (54029, '2022-01-24', 8756, 51408, 3591, 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 (54030, '2022-01-24', 7514, 51409, 3591, NULL, '2.0000', '2.2500', '2.2500', '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 (54031, '2022-01-24', 8940, 51410, 3591, NULL, '1.0000', '4.9900', '4.9900', '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 (54032, '2022-01-24', 7518, 51411, 3591, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54033, '2022-01-24', 7952, 51412, 3591, 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 (54034, '2022-01-24', 2295, 51413, 3591, 22264, '3.0000', '0.9600', '0.9600', '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 (54035, '2022-01-24', 7699, 51414, 3591, 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 (54036, '2022-01-24', 9098, 51415, 3591, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54037, '2022-01-24', 7857, 51416, 3591, 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 (54038, '2022-01-24', 8296, 51417, 3591, NULL, '1.0000', '1.7000', '1.7000', '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 (54039, '2022-01-24', 7514, 51418, 3591, NULL, '1.0000', '2.2500', '2.2500', '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 (54040, '2022-01-24', 8596, 51419, 3591, 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 (54041, '2022-01-24', 7892, 51420, 3591, NULL, '1.0000', '4.2000', '4.2000', '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 (54042, '2022-01-24', 2363, 51421, 3591, 3866, '-4.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 (54043, '2022-01-24', 2363, 51421, 3591, NULL, '5.0000', '6.8800', '6.8800', '9.0000', '9.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 (54044, '2022-01-24', 9214, 51422, 3591, NULL, '1.0000', '9.6000', '9.6000', '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 (54045, '2022-01-24', 3027, 51423, 3592, 23977, '1.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 (54046, '2022-01-24', 2435, 51424, 3592, 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 (54047, '2022-01-24', 2251, 51425, 3592, 39813, '1.0000', '12.1904', '12.1904', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54048, '2022-01-24', 7411, 51426, 3592, NULL, '1.0000', '1.3013', '1.3013', '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 (54049, '2022-01-24', 7352, 51427, 3592, 48486, '2.0000', '1.9800', '1.9800', '2.6000', '2.6000', '28.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54050, '2022-01-24', 2254, 51428, 3592, 48608, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54051, '2022-01-24', 2994, 51429, 3592, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54052, '2022-01-24', 1502, 51430, 3592, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '32.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54053, '2022-01-24', 1668, 51431, 3592, 49367, '1.0000', '38.5128', '38.5128', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54054, '2022-01-24', 1888, 51432, 3592, 49369, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54055, '2022-01-24', 1692, 51433, 3592, 48703, '1.0000', '9.5341', '9.5341', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54056, '2022-01-24', 1855, 51434, 3592, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54057, '2022-01-24', 2169, 51435, 3592, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '111.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54058, '2022-01-24', 7530, 51436, 3592, 48170, '1.0000', '2.2088', '2.2088', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54059, '2022-01-24', 2289, 51437, 3592, 38551, '5.0000', '0.3186', '0.3186', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54060, '2022-01-24', 2699, 51438, 3592, 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 (54061, '2022-01-24', 1746, 51439, 3592, 19863, '3.0000', '3.5000', '3.5000', '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 (54062, '2022-01-24', 2020, 51440, 3592, NULL, '1.0000', '10.1614', '10.1614', '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 (54063, '2022-01-24', 1420, 51441, 3592, 48955, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54064, '2022-01-24', 9758, 51442, 3592, NULL, '1.0000', '3.1400', '3.1400', '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 (54065, '2022-01-24', 2299, 51443, 3592, 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 (54066, '2022-01-24', 7514, 51444, 3592, NULL, '2.0000', '2.2500', '2.2500', '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 (54067, '2022-01-24', 2393, 51445, 3592, 48949, '1.0000', '4.0019', '4.0019', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54068, '2022-01-24', 2260, 51446, 3592, 49305, '1.0000', '4.2238', '4.2238', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54069, '2022-01-24', 7564, 51447, 3592, 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 (54070, '2022-01-24', 2320, 51448, 3592, 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 (54071, '2022-01-24', 2072, 51449, 3592, 34600, '1.0000', '8.1200', '8.1200', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54072, '2022-01-24', 2907, 51450, 3592, 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 (54073, '2022-01-24', 1670, 51451, 3592, NULL, '1.0000', '19.0833', '19.0833', '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 (54074, '2022-01-24', 3054, 51452, 3592, 49351, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54075, '2022-01-24', 8476, 51453, 3592, NULL, '2.0000', '23.0000', '23.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 (54076, '2022-01-24', 2916, 51454, 3592, NULL, '1.0000', '11.2778', '11.2778', '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 (54077, '2022-01-24', 7411, 51455, 3592, NULL, '1.0000', '1.3013', '1.3013', '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 (54078, '2022-01-24', 2169, 51456, 3592, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '111.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54079, '2022-01-24', 8444, 51457, 3592, 49349, '2.0000', '1.6000', '1.6000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54080, '2022-01-24', 7564, 51458, 3592, NULL, '1.0000', '0.6400', '0.6400', '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 (54081, '2022-01-24', 2131, 51459, 3592, 44163, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54082, '2022-01-24', 1602, 51460, 3592, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54083, '2022-01-24', 1731, 51461, 3592, 48966, '1.0000', '19.7600', '19.7600', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54084, '2022-01-24', 7609, 51462, 3592, NULL, '1.0000', '4.3300', '4.3300', '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 (54085, '2022-01-24', 2671, 51463, 3592, 42075, '1.0000', '30.9800', '30.9800', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54086, '2022-01-24', 9706, 51464, 3592, 44446, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54087, '2022-01-24', 2068, 51465, 3592, 48158, '1.0000', '11.8658', '11.8658', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54088, '2022-01-24', 2765, 51466, 3592, NULL, '1.0000', '5.3000', '5.3000', '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 (54089, '2022-01-24', 1854, 51467, 3592, 48880, '1.0000', '2.6997', '2.6997', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54090, '2022-01-24', 1371, 51468, 3592, NULL, '1.0000', '180.8891', '180.8891', '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 (54091, '2022-01-24', 8359, 51469, 3592, NULL, '1.0000', '13.5000', '13.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 (54092, '2022-01-24', 8208, 51470, 3592, NULL, '2.0000', '33.0000', '33.0000', '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 (54093, '2022-01-24', 7411, 51471, 3592, NULL, '1.0000', '1.3013', '1.3013', '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 (54094, '2022-01-24', 7819, 51472, 3592, NULL, '1.0000', '10.0999', '10.0999', '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 (54095, '2022-01-24', 9734, 51473, 3592, 47079, '8.0000', '0.3200', '0.3200', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54096, '2022-01-24', 9556, 51474, 3592, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54097, '2022-01-24', 1564, 51475, 3592, NULL, '9.0000', '2.4842', '2.4842', '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 (54098, '2022-01-24', 2169, 51476, 3592, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '111.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54099, '2022-01-24', 7482, 51477, 3592, NULL, '1.0000', '2.8136', '2.8136', '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 (54100, '2022-01-24', 9750, 51478, 3592, NULL, '1.0000', '3.3000', '3.3000', '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 (54101, '2022-01-24', 2315, 51479, 3592, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '280.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54102, '2022-01-24', 9482, 51480, 3593, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54103, '2022-01-24', 7743, 51481, 3593, NULL, '1.0000', '7.3900', '7.3900', '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 (54104, '2022-01-24', 2732, 51482, 3593, 49317, '1.0000', '27.0375', '27.0375', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54105, '2022-01-24', 1501, 51483, 3594, 20590, '1.0000', '2.0500', '2.0500', '3.0000', '3.0000', '7.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 (54106, '2022-01-24', 1950, 51484, 3594, 18848, '1.0000', '-13.5726', '-13.5726', '5.0000', '5.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 (54107, '2022-01-24', 2540, 51485, 3594, 6300, '1.0000', '45.0000', '45.0000', '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 (54108, '2022-01-25', 2217, 51486, 3595, 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 (54109, '2022-01-25', 1647, 51487, 3595, 3218, '-5.0000', '4.7200', '4.7200', '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 (54110, '2022-01-25', 1647, 51487, 3595, NULL, '6.0000', '4.7200', '4.7200', '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 (54111, '2022-01-25', 2924, 51488, 3595, 18775, '-4.0000', '6.3000', '6.3000', '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 (54112, '2022-01-25', 2924, 51488, 3595, NULL, '5.0000', '6.3000', '6.3000', '9.0000', '9.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 (54113, '2022-01-25', 9734, 51489, 3595, NULL, '2.0000', '0.3200', '0.3200', '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 (54114, '2022-01-25', 2366, 51490, 3595, 3833, '-32.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 (54115, '2022-01-25', 2366, 51490, 3595, NULL, '34.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-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 (54116, '2022-01-25', 1670, 51491, 3595, 10163, '-11.0000', '19.5000', '19.5000', '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 (54117, '2022-01-25', 1670, 51491, 3595, NULL, '12.0000', '19.5000', '19.5000', '26.5000', '26.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 (54118, '2022-01-25', 1347, 51492, 3595, 243, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '41.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54119, '2022-01-25', 2379, 51493, 3595, 4032, '-40.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 (54120, '2022-01-25', 2379, 51493, 3595, NULL, '41.0000', '1.5900', '1.5900', '2.5000', '2.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 (54121, '2022-01-25', 2655, 51494, 3595, 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 (54122, '2022-01-25', 2394, 51495, 3595, 4201, '-2.0000', '4.0000', '4.0000', '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 (54123, '2022-01-25', 2394, 51495, 3595, NULL, '3.0000', '4.0000', '4.0000', '5.5000', '5.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 (54124, '2022-01-25', 2481, 51496, 3595, 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 (54125, '2022-01-25', 2315, 51497, 3595, 2735, '-149.0000', '0.3300', '0.3300', '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 (54126, '2022-01-25', 2315, 51497, 3595, NULL, '150.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54127, '2022-01-25', 1665, 51498, 3595, 3235, '-61.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 (54128, '2022-01-25', 1665, 51498, 3595, NULL, '62.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54129, '2022-01-25', 2109, 51499, 3595, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '80.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 (54130, '2022-01-25', 1602, 51500, 3595, 5897, '-97.0000', '6.7859', '6.7859', '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 (54131, '2022-01-25', 1602, 51500, 3595, NULL, '98.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54132, '2022-01-25', 2320, 51501, 3595, 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 (54133, '2022-01-25', 1572, 51502, 3596, 48878, '1.0000', '1.9556', '1.9556', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54134, '2022-01-25', 3058, 51503, 3596, NULL, '1.0000', '2.3000', '2.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 (54135, '2022-01-25', 1851, 51504, 3596, 19852, '1.0000', '12.4818', '12.4818', '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 (54136, '2022-01-25', 7411, 51505, 3596, NULL, '1.0000', '1.3013', '1.3013', '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 (54137, '2022-01-25', 1562, 51506, 3596, NULL, '1.0000', '5.1300', '5.1300', '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 (54138, '2022-01-25', 3058, 51507, 3596, NULL, '1.0000', '2.3000', '2.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 (54139, '2022-01-25', 1653, 51508, 3596, 19862, '1.0000', '8.6200', '8.6200', '12.0000', '12.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 (54140, '2022-01-25', 1793, 51509, 3596, 34923, '1.0000', '18.0667', '18.0667', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54141, '2022-01-25', 1867, 51510, 3596, 48507, '1.0000', '-3.3648', '-3.3648', '14.5000', '14.5000', '19.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54142, '2022-01-25', 9556, 51511, 3596, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54143, '2022-01-25', 2167, 51512, 3596, NULL, '2.0000', '2.1310', '2.1310', '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 (54144, '2022-01-25', 2088, 51513, 3596, NULL, '1.0000', '-1.0956', '-1.0956', '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 (54145, '2022-01-25', 7367, 51514, 3596, NULL, '1.0000', '35.0000', '35.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 (54146, '2022-01-25', 2136, 51515, 3596, 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 (54147, '2022-01-25', 1650, 51516, 3596, 48665, '1.0000', '14.3923', '14.3923', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54148, '2022-01-25', 1863, 51517, 3596, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54149, '2022-01-25', 2293, 51518, 3596, 48902, '3.0000', '-15.8931', '-15.8931', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54150, '2022-01-25', 8765, 51519, 3596, 45286, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54151, '2022-01-25', 8077, 51520, 3597, NULL, '1.0000', '21.3750', '21.3750', '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 (54152, '2022-01-25', 2290, 51521, 3597, NULL, '1.0000', '7.0000', '7.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 (54153, '2022-01-25', 7400, 51522, 3597, NULL, '1.0000', '-37.0800', '-37.0800', '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 (54154, '2022-01-25', 7674, 51523, 3597, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '90.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54155, '2022-01-25', 7980, 51524, 3597, NULL, '10.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (54156, '2022-01-25', 9758, 51525, 3597, 46936, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54157, '2022-01-25', 8918, 51526, 3597, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54158, '2022-01-25', 7514, 51527, 3597, NULL, '2.0000', '65.8461', '65.8461', '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 (54159, '2022-01-25', 1837, 51528, 3597, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54160, '2022-01-25', 1856, 51529, 3597, 44749, '1.0000', '-13.1783', '-13.1783', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54161, '2022-01-25', 8941, 51530, 3597, NULL, '1.0000', '12.0000', '12.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 (54162, '2022-01-25', 7518, 51531, 3597, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (54163, '2022-01-25', 7657, 51532, 3597, NULL, '2.0000', '-20.7289', '-20.7289', '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 (54164, '2022-01-25', 7848, 51533, 3597, NULL, '1.0000', '-8.0868', '-8.0868', '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 (54165, '2022-01-25', 1332, 51534, 3597, 227, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54166, '2022-01-25', 7317, 51535, 3597, 46664, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54167, '2022-01-25', 7514, 51536, 3597, NULL, '1.0000', '65.8461', '65.8461', '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 (54168, '2022-01-25', 8596, 51537, 3597, NULL, '1.0000', '17.0000', '17.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 (54169, '2022-01-25', 7780, 51538, 3597, NULL, '1.0000', '-8.7461', '-8.7461', '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 (54170, '2022-01-25', 8466, 51539, 3597, NULL, '1.0000', '-24.7500', '-24.7500', '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 (54171, '2022-01-25', 7663, 51540, 3597, 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 (54172, '2022-01-25', 7317, 51541, 3597, 46664, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54173, '2022-01-25', 8444, 51542, 3597, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54174, '2022-01-25', 9734, 51543, 3597, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '126.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54175, '2022-01-25', 7641, 51544, 3597, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54176, '2022-01-25', 8608, 51545, 3597, NULL, '1.0000', '5.7400', '5.7400', '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 (54177, '2022-01-25', 1612, 51546, 3597, 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 (54178, '2022-01-25', 8941, 51547, 3597, NULL, '2.0000', '12.0000', '12.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 (54179, '2022-01-25', 7675, 51548, 3597, NULL, '1.0000', '37.2865', '37.2865', '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 (54180, '2022-01-25', 9578, 51549, 3597, NULL, '1.0000', '8.0000', '8.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 (54181, '2022-01-25', 7672, 51550, 3597, 48003, '1.0000', '3.8200', '3.8200', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54182, '2022-01-25', 1856, 51551, 3597, 44749, '1.0000', '-13.1783', '-13.1783', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54183, '2022-01-25', 7379, 51552, 3597, 49282, '1.0000', '134.5492', '134.5492', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54184, '2022-01-25', 7514, 51553, 3597, NULL, '1.0000', '65.8461', '65.8461', '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 (54185, '2022-01-25', 7342, 51554, 3597, 48856, '1.0000', '5.2127', '5.2127', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54186, '2022-01-25', 7630, 51555, 3597, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (54187, '2022-01-25', 7491, 51556, 3597, 46186, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54188, '2022-01-25', 7750, 51557, 3597, NULL, '1.0000', '22.7100', '22.7100', '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 (54189, '2022-01-25', 7367, 51558, 3597, 45809, '1.0000', '-29.5750', '-29.5750', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54190, '2022-01-25', 7333, 51559, 3597, NULL, '1.0000', '13.5000', '13.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 (54191, '2022-01-25', 7672, 51560, 3597, 48003, '1.0000', '3.8200', '3.8200', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54192, '2022-01-25', 7496, 51561, 3597, NULL, '1.0000', '0.9600', '0.9600', '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 (54193, '2022-01-25', 9017, 51562, 3597, 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 (54194, '2022-01-25', 7867, 51563, 3597, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54195, '2022-01-25', 7900, 51564, 3597, NULL, '1.0000', '2.5000', '2.5000', '3.2000', '3.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 (54196, '2022-01-25', 8308, 51565, 3597, NULL, '1.0000', '14.1857', '14.1857', '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 (54197, '2022-01-25', 7704, 51566, 3597, NULL, '2.0000', '-1.5625', '-1.5625', '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 (54198, '2022-01-25', 9748, 51567, 3597, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54199, '2022-01-25', 9272, 51568, 3597, NULL, '1.0000', '3.1000', '3.1000', '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 (54200, '2022-01-25', 7781, 51569, 3597, NULL, '3.0000', '4.2500', '4.2500', '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 (54201, '2022-01-25', 1841, 51570, 3597, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54202, '2022-01-25', 1840, 51571, 3597, 48008, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54203, '2022-01-25', 2248, 51572, 3597, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54204, '2022-01-25', 7729, 51573, 3597, NULL, '1.0000', '13.0000', '13.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 (54205, '2022-01-25', 8277, 51574, 3597, 45331, '1.0000', '10.8063', '10.8063', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54206, '2022-01-25', 9369, 51575, 3597, NULL, '1.0000', '51.7800', '51.7800', '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 (54207, '2022-01-25', 1671, 51576, 3597, NULL, '1.0000', '92.5588', '92.5588', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54208, '2022-01-25', 3013, 51577, 3597, 47924, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54209, '2022-01-25', 7774, 51578, 3597, NULL, '1.0000', '1.4724', '1.4724', '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 (54210, '2022-01-25', 7459, 51579, 3597, NULL, '20.0000', '467.7123', '467.7123', '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 (54211, '2022-01-25', 7703, 51580, 3597, NULL, '10.0000', '22.9900', '22.9900', '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 (54212, '2022-01-25', 7507, 51581, 3597, NULL, '3.0000', '6.5000', '6.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 (54213, '2022-01-25', 8279, 51582, 3597, 42781, '1.0000', '7.4044', '7.4044', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54214, '2022-01-25', 7641, 51583, 3597, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54215, '2022-01-25', 8133, 51584, 3597, NULL, '2.0000', '5.0000', '5.0000', '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 (54216, '2022-01-25', 1908, 51585, 3597, NULL, '3.0000', '1.7500', '1.7500', '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 (54217, '2022-01-25', 9337, 51586, 3597, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54218, '2022-01-25', 7428, 51587, 3597, 46632, '1.0000', '9.6296', '9.6296', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54219, '2022-01-25', 9267, 51588, 3597, 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 (54220, '2022-01-25', 7743, 51589, 3597, NULL, '1.0000', '419203.7668', '419203.7668', '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 (54221, '2022-01-25', 1880, 51590, 3597, 46238, '1.0000', '4.4789', '4.4789', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54222, '2022-01-25', 7709, 51591, 3597, NULL, '2.0000', '39.7124', '39.7124', '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 (54223, '2022-01-25', 9275, 51592, 3597, NULL, '2.0000', '6.3000', '6.3000', '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 (54224, '2022-01-25', 2284, 51593, 3597, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54225, '2022-01-25', 1634, 51594, 3598, 24327, '1.0000', '23.0102', '23.0102', '33.0000', '33.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 (54226, '2022-01-25', 9772, 51595, 3598, 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 (54227, '2022-01-25', 9734, 51596, 3598, 46028, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54228, '2022-01-25', 2858, 51597, 3598, 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 (54229, '2022-01-25', 2557, 51598, 3598, 12741, '1.0000', '1.0000', '1.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 (54230, '2022-01-25', 9716, 51599, 3598, 45080, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54231, '2022-01-25', 2073, 51600, 3598, 46732, '3.0000', '2.3000', '2.3000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54232, '2022-01-25', 2136, 51601, 3598, 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 (54233, '2022-01-25', 1487, 51602, 3598, 10030, '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 (54234, '2022-01-25', 1818, 51603, 3598, 40880, '1.0000', '18.5185', '18.5185', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54235, '2022-01-25', 1859, 51604, 3598, 49228, '1.0000', '61.5187', '61.5187', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54236, '2022-01-25', 2362, 51605, 3598, 44696, '1.0000', '72.6993', '72.6993', '115.0000', '115.0000', '19.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54237, '2022-01-25', 2635, 51606, 3598, 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 (54238, '2022-01-25', 2297, 51607, 3598, 47997, '1.0000', '7.9813', '7.9813', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54239, '2022-01-25', 1812, 51608, 3598, 49149, '1.0000', '7.9726', '7.9726', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54240, '2022-01-25', 1425, 51609, 3598, 49167, '1.0000', '7.0340', '7.0340', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54241, '2022-01-25', 2169, 51610, 3598, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54242, '2022-01-25', 1665, 51611, 3598, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54243, '2022-01-25', 1592, 51612, 3598, 46733, '1.0000', '34.2121', '34.2121', '47.0000', '47.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54244, '2022-01-25', 7608, 51613, 3598, NULL, '1.0000', '6.9800', '6.9800', '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 (54245, '2022-01-25', 1779, 51614, 3598, 4938, '1.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 (54246, '2022-01-25', 1380, 51615, 3598, 44722, '1.0000', '19.4636', '19.4636', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54247, '2022-01-25', 1863, 51616, 3598, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '77.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54248, '2022-01-25', 1602, 51617, 3598, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54249, '2022-01-25', 8900, 51618, 3598, NULL, '2.0000', '16.4000', '16.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 (54250, '2022-01-25', 2268, 51619, 3598, 38075, '2.0000', '7.8833', '7.8833', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54251, '2022-01-25', 2169, 51620, 3598, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54252, '2022-01-25', 1602, 51621, 3598, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54253, '2022-01-25', 1822, 51622, 3598, 49222, '20.0000', '2.3131', '2.3131', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54254, '2022-01-25', 2891, 51623, 3598, 18061, '1.0000', '8.0000', '8.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 (54255, '2022-01-25', 1841, 51624, 3598, 44579, '6.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54256, '2022-01-25', 1763, 51625, 3598, 45123, '1.0000', '4.7323', '4.7323', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54257, '2022-01-25', 2440, 51626, 3598, 21806, '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 (54258, '2022-01-25', 1519, 51627, 3599, 46751, '1.0000', '3.3898', '3.3898', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54259, '2022-01-25', 2293, 51628, 3600, 48902, '1.0000', '-15.8931', '-15.8931', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54260, '2022-01-25', 2989, 51629, 3600, 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 (54261, '2022-01-25', 2948, 51630, 3600, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54262, '2022-01-25', 2315, 51631, 3600, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '279.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54263, '2022-01-25', 1912, 51632, 3600, 37802, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54264, '2022-01-25', 3029, 51633, 3600, NULL, '1.0000', '4.7700', '4.7700', '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 (54265, '2022-01-25', 1501, 51634, 3600, NULL, '1.0000', '2.1784', '2.1784', '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 (54266, '2022-01-25', 7626, 51635, 3600, NULL, '1.0000', '7.6000', '7.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 (54267, '2022-01-25', 7411, 51636, 3600, NULL, '1.0000', '1.3013', '1.3013', '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 (54268, '2022-01-25', 1574, 51637, 3600, 48648, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54269, '2022-01-25', 1602, 51638, 3600, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54270, '2022-01-25', 1762, 51639, 3600, 48707, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54271, '2022-01-25', 9758, 51640, 3600, NULL, '1.0000', '3.1400', '3.1400', '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 (54272, '2022-01-25', 2916, 51641, 3600, NULL, '1.0000', '11.2778', '11.2778', '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 (54273, '2022-01-25', 1856, 51642, 3600, NULL, '1.0000', '1.7723', '1.7723', '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 (54274, '2022-01-25', 1393, 51643, 3600, 48981, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54275, '2022-01-25', 9572, 51644, 3600, 44460, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54276, '2022-01-25', 9732, 51645, 3600, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54277, '2022-01-25', 2221, 51646, 3600, 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 (54278, '2022-01-25', 2233, 51647, 3600, 49357, '1.0000', '21.4251', '21.4251', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54279, '2022-01-25', 1650, 51648, 3600, 48665, '1.0000', '14.3923', '14.3923', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54280, '2022-01-25', 1863, 51649, 3600, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54281, '2022-01-25', 9204, 51650, 3600, NULL, '1.0000', '8.1600', '8.1600', '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 (54282, '2022-01-25', 7482, 51651, 3600, NULL, '1.0000', '2.8136', '2.8136', '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 (54283, '2022-01-25', 1590, 51652, 3600, 48900, '2.0000', '1.4454', '1.4454', '2.3000', '2.3000', '32.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54284, '2022-01-25', 2521, 51653, 3600, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54285, '2022-01-25', 1863, 51654, 3600, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54286, '2022-01-25', 7728, 51655, 3600, 44149, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54287, '2022-01-25', 2384, 51656, 3600, NULL, '1.0000', '0.1500', '0.1500', '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 (54288, '2022-01-25', 9399, 51657, 3600, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54289, '2022-01-25', 7862, 51658, 3600, 39847, '1.0000', '3.8500', '3.8500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54290, '2022-01-25', 9503, 51659, 3600, 33350, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54291, '2022-01-25', 2315, 51660, 3600, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '279.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54292, '2022-01-25', 8677, 51661, 3600, NULL, '2.0000', '292.4641', '292.4641', '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 (54293, '2022-01-25', 1499, 51662, 3600, 49347, '2.0000', '0.3411', '0.3411', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54294, '2022-01-25', 8657, 51663, 3600, NULL, '1.0000', '7.5200', '7.5200', '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 (54295, '2022-01-25', 2354, 51664, 3600, NULL, '1.0000', '5.0600', '5.0600', '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 (54296, '2022-01-25', 1572, 51665, 3600, 48878, '1.0000', '1.9556', '1.9556', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54297, '2022-01-25', 1855, 51666, 3600, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54298, '2022-01-25', 2315, 51667, 3600, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '279.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54299, '2022-01-25', 2057, 51668, 3600, 33373, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54300, '2022-01-25', 2637, 51669, 3600, NULL, '1.0000', '10.0000', '10.0000', '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 (54301, '2022-01-25', 1387, 51670, 3600, 48936, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54302, '2022-01-25', 2668, 51671, 3600, 48912, '1.0000', '6.6518', '6.6518', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54303, '2022-01-25', 1863, 51672, 3600, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54304, '2022-01-25', 9204, 51673, 3600, NULL, '1.0000', '8.1600', '8.1600', '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 (54305, '2022-01-25', 9644, 51674, 3600, 41422, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54306, '2022-01-25', 2993, 51675, 3600, 43232, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54307, '2022-01-25', 2169, 51676, 3600, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '108.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54308, '2022-01-25', 2315, 51677, 3600, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '279.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54309, '2022-01-25', 2544, 51678, 3600, 44452, '1.0000', '6.8800', '6.8800', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54310, '2022-01-25', 1450, 51679, 3600, 24966, '1.0000', '0.8900', '0.8900', '1.2000', '1.2000', '18.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 (54311, '2022-01-25', 2229, 51680, 3600, 49418, '1.0000', '26.0000', '26.0000', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54312, '2022-01-25', 1812, 51681, 3600, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54313, '2022-01-25', 7565, 51682, 3600, NULL, '1.0000', '0.2000', '0.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 (54314, '2022-01-25', 2277, 51683, 3600, 43261, '2.0000', '0.9399', '0.9399', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54315, '2022-01-25', 1645, 51684, 3600, 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 (54316, '2022-01-25', 2237, 51685, 3601, 46708, '1.0000', '1.4654', '1.4654', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54317, '2022-01-25', 2491, 51686, 3601, 44711, '1.0000', '13.0788', '13.0788', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54318, '2022-01-25', 9557, 51687, 3601, 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 (54319, '2022-01-25', 2486, 51688, 3601, 21821, '1.0000', '4.0000', '4.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 (54320, '2022-01-25', 8077, 51689, 3602, 39839, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54321, '2022-01-25', 7411, 51690, 3602, NULL, '1.0000', '1.3013', '1.3013', '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 (54322, '2022-01-25', 8773, 51691, 3602, NULL, '1.0000', '4.4800', '4.4800', '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 (54323, '2022-01-25', 8771, 51692, 3602, 45275, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54324, '2022-01-25', 1564, 51693, 3602, NULL, '1.0000', '2.4842', '2.4842', '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 (54325, '2022-01-25', 8982, 51694, 3602, NULL, '1.0000', '7.5989', '7.5989', '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 (54326, '2022-01-25', 2068, 51695, 3602, 48158, '1.0000', '11.8658', '11.8658', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54327, '2022-01-25', 1428, 51696, 3602, 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 (54328, '2022-01-25', 9750, 51697, 3602, NULL, '1.0000', '3.3000', '3.3000', '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 (54329, '2022-01-25', 1590, 51698, 3602, 48900, '2.0000', '1.4454', '1.4454', '2.3000', '2.3000', '30.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54330, '2022-01-25', 2617, 51699, 3602, 42533, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54331, '2022-01-25', 2132, 51700, 3603, 4404, '1.0000', '22.0000', '22.0000', '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 (54332, '2022-01-25', 1602, 51701, 3603, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54333, '2022-01-25', 1871, 51702, 3603, 48782, '10.0000', '8.3621', '8.3621', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54334, '2022-01-25', 1863, 51703, 3604, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '75.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54335, '2022-01-25', 9715, 51704, 3604, 46036, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54336, '2022-01-25', 1533, 51705, 3604, 48773, '1.0000', '3.4252', '3.4252', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54337, '2022-01-25', 7672, 51706, 3605, NULL, '1.0000', '3.8200', '3.8200', '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 (54338, '2022-01-25', 7709, 51707, 3605, NULL, '1.0000', '39.7124', '39.7124', '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 (54339, '2022-01-25', 7708, 51708, 3605, NULL, '1.0000', '4.1860', '4.1860', '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 (54340, '2022-01-25', 7713, 51709, 3605, 37845, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54341, '2022-01-25', 7713, 51709, 3605, 37398, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '51.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54342, '2022-01-25', 8200, 51710, 3605, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (54343, '2022-01-25', 9021, 51711, 3605, NULL, '1.0000', '7.0000', '7.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 (54344, '2022-01-25', 7647, 51712, 3605, NULL, '1.0000', '7.1000', '7.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 (54345, '2022-01-25', 7674, 51713, 3605, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54346, '2022-01-25', 1855, 51714, 3605, 44359, '1.0000', '1.4625', '1.4625', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54347, '2022-01-25', 2699, 51715, 3605, 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 (54348, '2022-01-25', 9561, 51716, 3605, 42671, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54349, '2022-01-25', 8000, 51717, 3605, NULL, '4.0000', '249.4419', '249.4419', '10.0000', '10.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 (54350, '2022-01-25', 1863, 51718, 3606, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54351, '2022-01-25', 9734, 51719, 3606, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '79.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54352, '2022-01-25', 2761, 51720, 3606, 46038, '2.0000', '6.0000', '6.0000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54353, '2022-01-25', 2229, 51721, 3607, 49418, '1.0000', '26.0000', '26.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54354, '2022-01-25', 9750, 51722, 3607, NULL, '1.0000', '3.3000', '3.3000', '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 (54355, '2022-01-25', 7980, 51723, 3607, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (54356, '2022-01-25', 2431, 51724, 3607, NULL, '2.0000', '2.2000', '2.2000', '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 (54357, '2022-01-25', 2026, 51725, 3607, 44167, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54358, '2022-01-25', 1807, 51726, 3607, 48635, '2.0000', '34.9993', '34.9993', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54359, '2022-01-25', 9382, 51727, 3607, NULL, '2.0000', '5.2000', '5.2000', '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 (54360, '2022-01-25', 7411, 51728, 3607, NULL, '1.0000', '1.3013', '1.3013', '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 (54361, '2022-01-25', 1585, 51729, 3607, 49371, '1.0000', '9.2000', '9.2000', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54362, '2022-01-26', 2761, 51730, 3608, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54363, '2022-01-26', 2731, 51731, 3608, 19358, '1.0000', '2.8500', '2.8500', '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 (54364, '2022-01-26', 9734, 51732, 3608, 47079, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '37.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54365, '2022-01-26', 7459, 51733, 3608, NULL, '10.0000', '-6.1729', '-6.1729', '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 (54366, '2022-01-26', 1867, 51734, 3608, 48507, '1.0000', '-3.3648', '-3.3648', '14.5000', '14.5000', '18.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54367, '2022-01-26', 8077, 51735, 3608, 39839, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54368, '2022-01-26', 7514, 51736, 3608, NULL, '1.0000', '2.2500', '2.2500', '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 (54369, '2022-01-26', 9758, 51737, 3608, NULL, '1.0000', '3.1400', '3.1400', '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 (54370, '2022-01-26', 9748, 51738, 3608, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54371, '2022-01-26', 2543, 51739, 3608, 48867, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54372, '2022-01-26', 2293, 51740, 3608, NULL, '3.0000', '-15.8931', '-15.8931', '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 (54373, '2022-01-26', 9751, 51741, 3608, 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 (54374, '2022-01-26', 2379, 51742, 3608, NULL, '1.0000', '1.0877', '1.0877', '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 (54375, '2022-01-26', 1837, 51743, 3608, NULL, '2.0000', '1.5967', '1.5967', '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 (54376, '2022-01-26', 1947, 51744, 3608, 41417, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54377, '2022-01-26', 8622, 51745, 3608, 41397, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54378, '2022-01-26', 2327, 51746, 3608, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54379, '2022-01-26', 2699, 51747, 3608, 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 (54380, '2022-01-26', 2169, 51748, 3608, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '107.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54381, '2022-01-26', 2916, 51749, 3608, NULL, '1.0000', '11.2778', '11.2778', '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 (54382, '2022-01-26', 8756, 51750, 3608, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54383, '2022-01-26', 7779, 51751, 3608, NULL, '1.0000', '0.6200', '0.6200', '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 (54384, '2022-01-26', 1863, 51752, 3608, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54385, '2022-01-26', 2315, 51753, 3608, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '275.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54386, '2022-01-26', 8746, 51754, 3608, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54387, '2022-01-26', 1313, 51755, 3608, 39906, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54388, '2022-01-26', 2169, 51756, 3608, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '107.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54389, '2022-01-26', 1341, 51757, 3609, 19363, '1.0000', '13.5000', '13.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 (54390, '2022-01-26', 7723, 51758, 3609, 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 (54391, '2022-01-26', 1602, 51759, 3610, 5897, '-98.0000', '6.7859', '6.7859', '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 (54392, '2022-01-26', 1602, 51759, 3610, NULL, '99.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54393, '2022-01-26', 2681, 51760, 3610, 12164, '-18.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 (54394, '2022-01-26', 2681, 51760, 3610, NULL, '19.0000', '12.5000', '12.5000', '16.5000', '16.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 (54395, '2022-01-26', 1912, 51761, 3610, 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 (54396, '2022-01-26', 7589, 51762, 3610, 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 (54397, '2022-01-26', 7802, 51763, 3610, NULL, '3.0000', '0.9200', '0.9200', '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 (54398, '2022-01-26', 1578, 51764, 3610, 7597, '-4.0000', '1.9700', '1.9700', '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 (54399, '2022-01-26', 1578, 51764, 3610, NULL, '5.0000', '1.9700', '1.9700', '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 (54400, '2022-01-26', 2135, 51765, 3610, 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 (54401, '2022-01-26', 2360, 51766, 3610, 3862, '-50.0000', '0.5200', '0.5200', '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 (54402, '2022-01-26', 2360, 51766, 3610, NULL, '52.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54403, '2022-01-26', 8151, 51767, 3611, NULL, '2.0000', '1.9300', '1.9300', '51.0000', '51.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 (54404, '2022-01-26', 7642, 51768, 3611, 46653, '1.0000', '5.9200', '5.9200', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54405, '2022-01-26', 7514, 51769, 3611, NULL, '2.0000', '65.8461', '65.8461', '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 (54406, '2022-01-26', 8063, 51770, 3611, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '94.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54407, '2022-01-26', 8161, 51771, 3611, 48833, '1.0000', '25.3581', '25.3581', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54408, '2022-01-26', 8161, 51771, 3611, NULL, '1.0000', '25.3581', '25.3581', '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 (54409, '2022-01-26', 7719, 51772, 3611, 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 (54410, '2022-01-26', 7823, 51773, 3611, 43513, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54411, '2022-01-26', 8146, 51774, 3611, 46165, '1.0000', '17.3749', '17.3749', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54412, '2022-01-26', 8359, 51775, 3611, 49451, '1.0000', '-3070.2788', '-3070.2788', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54413, '2022-01-26', 8413, 51776, 3611, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54414, '2022-01-26', 1992, 51777, 3611, 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 (54415, '2022-01-26', 8367, 51778, 3611, NULL, '1.0000', '9.5000', '9.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 (54416, '2022-01-26', 7430, 51779, 3611, 30046, '1.0000', '15.0000', '15.0000', '64.0000', '64.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54417, '2022-01-26', 8077, 51780, 3611, NULL, '1.0000', '21.3750', '21.3750', '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 (54418, '2022-01-26', 7872, 51781, 3611, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (54419, '2022-01-26', 7786, 51782, 3611, NULL, '1.0000', '22.0000', '22.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 (54420, '2022-01-26', 7385, 51783, 3611, 45811, '5.0000', '-29.7430', '-29.7430', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54421, '2022-01-26', 9295, 51784, 3611, NULL, '1.0000', '-11.6667', '-11.6667', '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 (54422, '2022-01-26', 7514, 51785, 3611, NULL, '2.0000', '65.8461', '65.8461', '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 (54423, '2022-01-26', 7473, 51786, 3611, NULL, '1.0000', '104.1526', '104.1526', '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 (54424, '2022-01-26', 7638, 51787, 3611, 45317, '2.0000', '12.8793', '12.8793', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54425, '2022-01-26', 8467, 51788, 3611, NULL, '1.0000', '60.0000', '60.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54426, '2022-01-26', 8053, 51789, 3611, 37844, '10.0000', '1.7988', '1.7988', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54427, '2022-01-26', 7641, 51790, 3611, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54428, '2022-01-26', 7321, 51791, 3611, NULL, '1.0000', '12.6000', '12.6000', '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 (54429, '2022-01-26', 7920, 51792, 3611, 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 (54430, '2022-01-26', 9271, 51793, 3611, 46698, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54431, '2022-01-26', 9274, 51794, 3611, NULL, '1.0000', '3.5638', '3.5638', '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 (54432, '2022-01-26', 8041, 51795, 3611, NULL, '1.0000', '0.4700', '0.4700', '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 (54433, '2022-01-26', 8766, 51796, 3611, NULL, '1.0000', '5.8000', '5.8000', '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 (54434, '2022-01-26', 7412, 51797, 3611, NULL, '1.0000', '1.5200', '1.5200', '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 (54435, '2022-01-26', 8451, 51798, 3612, NULL, '1.0000', '8.5000', '8.5000', '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 (54436, '2022-01-26', 2660, 51799, 3612, 49361, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54437, '2022-01-26', 2320, 51800, 3612, 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 (54438, '2022-01-26', 1502, 51801, 3612, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '31.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54439, '2022-01-26', 9741, 51802, 3612, 47101, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54440, '2022-01-26', 1557, 51803, 3612, 48869, '1.0000', '7.3662', '7.3662', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54441, '2022-01-26', 7514, 51804, 3612, NULL, '1.0000', '2.2500', '2.2500', '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 (54442, '2022-01-26', 8188, 51805, 3612, 45271, '2.0000', '0.9180', '0.9180', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54443, '2022-01-26', 9751, 51806, 3612, 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 (54444, '2022-01-26', 1807, 51807, 3612, 48635, '2.0000', '34.9993', '34.9993', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54445, '2022-01-26', 1807, 51807, 3612, NULL, '1.0000', '34.9993', '34.9993', '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 (54446, '2022-01-26', 7739, 51808, 3612, NULL, '1.0000', '2.7500', '2.7500', '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 (54447, '2022-01-26', 9762, 51809, 3612, 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 (54448, '2022-01-26', 7647, 51810, 3612, NULL, '1.0000', '7.1000', '7.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 (54449, '2022-01-26', 8876, 51811, 3612, NULL, '1.0000', '0.9900', '0.9900', '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 (54450, '2022-01-26', 7414, 51812, 3612, NULL, '1.0000', '18.2100', '18.2100', '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 (54451, '2022-01-26', 1928, 51813, 3612, NULL, '1.0000', '5.3300', '5.3300', '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 (54452, '2022-01-26', 2231, 51814, 3612, NULL, '1.0000', '34.0000', '34.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 (54453, '2022-01-26', 2251, 51815, 3612, 39813, '1.0000', '12.1904', '12.1904', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54454, '2022-01-26', 2315, 51816, 3612, 49255, '5.0000', '0.4851', '0.4851', '0.8000', '0.8000', '270.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54455, '2022-01-26', 8476, 51817, 3612, NULL, '2.0000', '23.0000', '23.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 (54456, '2022-01-26', 9413, 51818, 3612, 34036, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54457, '2022-01-26', 1912, 51819, 3612, 37802, '2.0000', '0.6675', '0.6675', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54458, '2022-01-26', 2699, 51820, 3612, 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 (54459, '2022-01-26', 2148, 51821, 3612, NULL, '1.0000', '35.0000', '35.0000', '55.5000', '55.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54460, '2022-01-26', 1855, 51822, 3612, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54461, '2022-01-26', 1307, 51823, 3612, NULL, '1.0000', '0.6103', '0.6103', '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 (54462, '2022-01-26', 1665, 51824, 3612, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54463, '2022-01-26', 2511, 51825, 3612, 48700, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54464, '2022-01-26', 7411, 51826, 3612, NULL, '1.0000', '1.3013', '1.3013', '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 (54465, '2022-01-26', 2315, 51827, 3612, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '274.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54466, '2022-01-26', 1935, 51828, 3612, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54467, '2022-01-26', 7339, 51829, 3612, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (54468, '2022-01-26', 7472, 51830, 3612, NULL, '1.0000', '4.2055', '4.2055', '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 (54469, '2022-01-26', 1501, 51831, 3612, NULL, '2.0000', '2.1784', '2.1784', '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 (54470, '2022-01-26', 2293, 51832, 3612, NULL, '1.0000', '-15.8931', '-15.8931', '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 (54471, '2022-01-26', 1493, 51833, 3612, 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 (54472, '2022-01-26', 1433, 51834, 3612, 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 (54473, '2022-01-26', 1590, 51835, 3612, 48900, '1.0000', '1.4454', '1.4454', '2.3000', '2.3000', '29.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54474, '2022-01-26', 1871, 51836, 3612, NULL, '2.0000', '1.6959', '1.6959', '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 (54475, '2022-01-26', 8454, 51837, 3613, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54476, '2022-01-26', 2315, 51838, 3613, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '268.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54477, '2022-01-26', 2511, 51839, 3613, 48700, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54478, '2022-01-26', 3017, 51840, 3613, 38532, '1.0000', '3.9000', '3.9000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54479, '2022-01-26', 1596, 51841, 3613, 43255, '1.0000', '2.0328', '2.0328', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54480, '2022-01-26', 9416, 51842, 3614, 44150, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54481, '2022-01-26', 9469, 51843, 3615, NULL, '1.0000', '3.1000', '3.1000', '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 (54482, '2022-01-26', 1856, 51844, 3615, NULL, '1.0000', '1.7723', '1.7723', '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 (54483, '2022-01-26', 1888, 51845, 3615, 49369, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54484, '2022-01-26', 8077, 51846, 3615, 39839, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54485, '2022-01-26', 9750, 51847, 3615, NULL, '1.0000', '3.3000', '3.3000', '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 (54486, '2022-01-26', 2761, 51848, 3615, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54487, '2022-01-26', 7514, 51849, 3615, NULL, '1.0000', '2.2500', '2.2500', '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 (54488, '2022-01-26', 1935, 51850, 3615, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54489, '2022-01-26', 9482, 51851, 3615, 32547, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54490, '2022-01-26', 1855, 51852, 3615, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54491, '2022-01-26', 9634, 51853, 3616, 40901, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54492, '2022-01-26', 2342, 51854, 3616, 49131, '10.0000', '1.9268', '1.9268', '2.7000', '2.7000', '20.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54493, '2022-01-26', 7722, 51855, 3616, 35927, '1.0000', '8.0000', '8.0000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54494, '2022-01-26', 2060, 51856, 3616, 45073, '1.0000', '0.6071', '0.6071', '0.8000', '0.8000', '248.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54495, '2022-01-26', 2360, 51857, 3616, 49128, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '38.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54496, '2022-01-26', 2384, 51858, 3616, 46599, '1.0000', '0.3266', '0.3266', '0.7000', '0.7000', '49.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54497, '2022-01-26', 1892, 51859, 3616, 5497, '1.0000', '0.5200', '0.5200', '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 (54498, '2022-01-26', 1690, 51860, 3616, 49237, '1.0000', '6.6670', '6.6670', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54499, '2022-01-26', 2252, 51861, 3616, 47980, '1.0000', '11.5931', '11.5931', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54500, '2022-01-26', 1863, 51862, 3616, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54501, '2022-01-26', 8763, 51863, 3616, NULL, '1.0000', '5.4000', '5.4000', '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 (54502, '2022-01-26', 9094, 51864, 3616, 46952, '2.0000', '5.7000', '5.7000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54503, '2022-01-26', 7396, 51865, 3616, NULL, '2.0000', '6.0000', '6.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 (54504, '2022-01-26', 9747, 51866, 3616, 46049, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54505, '2022-01-26', 1584, 51867, 3616, 44035, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '14.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54506, '2022-01-26', 8775, 51868, 3616, 42927, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54507, '2022-01-26', 1783, 51869, 3616, 46745, '2.0000', '-22.9481', '-22.9481', '11.0000', '11.0000', '10.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54508, '2022-01-26', 2302, 51870, 3616, 48759, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54509, '2022-01-26', 9734, 51871, 3616, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '78.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54510, '2022-01-26', 9695, 51872, 3616, 49478, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54511, '2022-01-26', 2315, 51873, 3616, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '203.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54512, '2022-01-26', 2169, 51874, 3616, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54513, '2022-01-26', 1519, 51875, 3616, 46751, '1.0000', '3.3898', '3.3898', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54514, '2022-01-26', 2169, 51876, 3616, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54515, '2022-01-26', 7684, 51877, 3617, NULL, '1.0000', '9.0000', '9.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 (54516, '2022-01-26', 7777, 51878, 3617, NULL, '2.0000', '9.5000', '9.5000', '11.5000', '11.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 (54517, '2022-01-26', 7852, 51879, 3617, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54518, '2022-01-26', 9758, 51880, 3617, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54519, '2022-01-26', 8203, 51881, 3617, NULL, '4.0000', '2.3282', '2.3282', '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 (54520, '2022-01-26', 9715, 51882, 3617, 49277, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54521, '2022-01-26', 8608, 51883, 3617, NULL, '1.0000', '5.7400', '5.7400', '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 (54522, '2022-01-26', 8596, 51884, 3617, NULL, '1.0000', '17.0000', '17.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 (54523, '2022-01-26', 7727, 51885, 3617, NULL, '1.0000', '0.9000', '0.9000', '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 (54524, '2022-01-26', 7798, 51886, 3617, NULL, '1.0000', '13.1867', '13.1867', '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 (54525, '2022-01-26', 8596, 51887, 3617, NULL, '1.0000', '17.0000', '17.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 (54526, '2022-01-26', 7514, 51888, 3617, NULL, '2.0000', '65.8461', '65.8461', '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 (54527, '2022-01-26', 7564, 51889, 3617, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54528, '2022-01-26', 7672, 51890, 3617, NULL, '1.0000', '3.8200', '3.8200', '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 (54529, '2022-01-26', 1993, 51891, 3617, 39438, '1.0000', '1.5914', '1.5914', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54530, '2022-01-26', 8052, 51892, 3617, NULL, '1.0000', '27.7481', '27.7481', '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 (54531, '2022-01-26', 7514, 51893, 3617, NULL, '1.0000', '65.8461', '65.8461', '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 (54532, '2022-01-26', 9416, 51894, 3617, 49433, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54533, '2022-01-26', 9092, 51895, 3617, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '115.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54534, '2022-01-26', 8685, 51896, 3617, NULL, '1.0000', '32.0000', '32.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 (54535, '2022-01-26', 7514, 51897, 3617, NULL, '1.0000', '65.8461', '65.8461', '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 (54536, '2022-01-26', 7708, 51898, 3617, NULL, '1.0000', '4.1860', '4.1860', '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 (54537, '2022-01-26', 7588, 51899, 3617, NULL, '1.0000', '7.3387', '7.3387', '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 (54538, '2022-01-26', 7641, 51900, 3617, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54539, '2022-01-26', 7892, 51901, 3617, NULL, '1.0000', '4.2000', '4.2000', '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 (54540, '2022-01-26', 8328, 51902, 3617, NULL, '1.0000', '8.0175', '8.0175', '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 (54541, '2022-01-26', 8948, 51903, 3617, NULL, '1.0000', '4.6000', '4.6000', '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 (54542, '2022-01-26', 1837, 51904, 3617, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54543, '2022-01-26', 9556, 51905, 3617, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54544, '2022-01-26', 2315, 51906, 3617, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '33.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54545, '2022-01-26', 7630, 51907, 3617, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (54546, '2022-01-26', 7473, 51908, 3617, NULL, '4.0000', '104.1526', '104.1526', '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 (54547, '2022-01-26', 2290, 51909, 3617, NULL, '1.0000', '7.0000', '7.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 (54548, '2022-01-26', 1908, 51910, 3617, NULL, '2.0000', '1.7500', '1.7500', '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 (54549, '2022-01-26', 2863, 51911, 3617, NULL, '25.0000', '0.2000', '0.2000', '0.3000', '0.3000', '-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 (54550, '2022-01-26', 7963, 51912, 3617, NULL, '1.0000', '-9.5000', '-9.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54551, '2022-01-26', 7514, 51913, 3617, NULL, '1.0000', '65.8461', '65.8461', '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 (54552, '2022-01-26', 2463, 51914, 3617, 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 (54553, '2022-01-26', 1895, 51915, 3617, 45324, '1.0000', '8.5800', '8.5800', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54554, '2022-01-26', 9556, 51916, 3617, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54555, '2022-01-26', 7675, 51917, 3617, NULL, '1.0000', '37.2865', '37.2865', '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 (54556, '2022-01-26', 7524, 51918, 3617, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54557, '2022-01-26', 9299, 51919, 3617, NULL, '3.0000', '9.5000', '9.5000', '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 (54558, '2022-01-26', 7514, 51920, 3617, NULL, '1.0000', '65.8461', '65.8461', '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 (54559, '2022-01-26', 7317, 51921, 3617, 46664, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54560, '2022-01-26', 9758, 51922, 3617, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54561, '2022-01-26', 7409, 51923, 3617, 48300, '2.0000', '1.5627', '1.5627', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54562, '2022-01-26', 7409, 51923, 3617, 30031, '1.0000', '1.5627', '1.5627', '10.0000', '10.0000', '30.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54563, '2022-01-26', 8456, 51924, 3617, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54564, '2022-01-26', 8539, 51925, 3617, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '65.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54565, '2022-01-26', 1760, 51926, 3617, 46907, '4.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54566, '2022-01-26', 9692, 51927, 3617, 43551, '1.0000', '10.4500', '10.4500', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54567, '2022-01-26', 2392, 51928, 3617, NULL, '1.0000', '3.2000', '3.2000', '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 (54568, '2022-01-26', 7416, 51929, 3617, NULL, '1.0000', '1.2500', '1.2500', '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 (54569, '2022-01-26', 7674, 51930, 3618, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54570, '2022-01-26', 7354, 51931, 3618, NULL, '1.0000', '18.0000', '18.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 (54571, '2022-01-26', 7641, 51932, 3618, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54572, '2022-01-26', 7411, 51933, 3618, NULL, '1.0000', '1.3600', '1.3600', '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 (54573, '2022-01-26', 8566, 51934, 3619, 33072, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54574, '2022-01-26', 1620, 51935, 3619, 8955, '2.0000', '408.8259', '408.8259', '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 (54575, '2022-01-26', 2256, 51936, 3619, 2793, '-4.0000', '12.7400', '12.7400', '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 (54576, '2022-01-26', 2256, 51936, 3619, NULL, '5.0000', '12.7400', '12.7400', '19.5000', '19.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 (54577, '2022-01-26', 2259, 51937, 3620, 2795, '-2.0000', '19.9405', '19.9405', '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 (54578, '2022-01-26', 2259, 51937, 3620, NULL, '3.0000', '19.9405', '19.9405', '30.0000', '30.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 (54579, '2022-01-26', 1686, 51938, 3620, NULL, '1.0000', '26.6000', '26.6000', '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 (54580, '2022-01-26', 1708, 51939, 3620, 10382, '-7.0000', '20.1900', '20.1900', '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 (54581, '2022-01-26', 1708, 51939, 3620, NULL, '8.0000', '20.1900', '20.1900', '27.0000', '27.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 (54582, '2022-01-26', 1618, 51940, 3620, 8737, '-7.0000', '11.8200', '11.8200', '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 (54583, '2022-01-26', 1618, 51940, 3620, NULL, '8.0000', '11.8200', '11.8200', '16.0000', '16.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 (54584, '2022-01-26', 1670, 51941, 3620, 10163, '-12.0000', '19.5000', '19.5000', '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 (54585, '2022-01-26', 1670, 51941, 3620, NULL, '13.0000', '19.5000', '19.5000', '26.5000', '26.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 (54586, '2022-01-27', 7333, 51942, 3621, NULL, '1.0000', '13.5000', '13.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 (54587, '2022-01-27', 9015, 51943, 3621, NULL, '1.0000', '5.5000', '5.5000', '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 (54588, '2022-01-27', 2318, 51944, 3621, 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 (54589, '2022-01-27', 2015, 51945, 3621, 42644, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54590, '2022-01-27', 7821, 51946, 3621, NULL, '1.0000', '7.0000', '7.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 (54591, '2022-01-27', 1935, 51947, 3621, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54592, '2022-01-27', 7917, 51948, 3621, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54593, '2022-01-27', 7558, 51949, 3621, 39820, '9.0000', '-37.0255', '-37.0255', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54594, '2022-01-27', 7558, 51949, 3621, NULL, '11.0000', '-37.0255', '-37.0255', '3.0000', '3.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 (54595, '2022-01-27', 9399, 51950, 3621, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54596, '2022-01-27', 3025, 51951, 3621, 44157, '3.0000', '2.9545', '2.9545', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54597, '2022-01-27', 2435, 51952, 3621, 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 (54598, '2022-01-27', 7752, 51953, 3621, NULL, '1.0000', '2.6100', '2.6100', '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 (54599, '2022-01-27', 7984, 51954, 3621, NULL, '1.0000', '16.4500', '16.4500', '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 (54600, '2022-01-27', 1935, 51955, 3621, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54601, '2022-01-27', 2315, 51956, 3621, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '267.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54602, '2022-01-27', 2887, 51957, 3621, 47130, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54603, '2022-01-27', 1395, 51958, 3621, 37958, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54604, '2022-01-27', 8763, 51959, 3621, 44148, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54605, '2022-01-27', 9470, 51960, 3622, NULL, '1.0000', '9.7867', '9.7867', '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 (54606, '2022-01-27', 8155, 51961, 3622, NULL, '1.0000', '65.0000', '65.0000', '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 (54607, '2022-01-27', 2487, 51962, 3623, NULL, '1.0000', '23.7500', '23.7500', '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 (54608, '2022-01-27', 2350, 51963, 3623, 3853, '-5.0000', '10.3800', '10.3800', '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 (54609, '2022-01-27', 2350, 51963, 3623, NULL, '6.0000', '10.3800', '10.3800', '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 (54610, '2022-01-27', 1584, 51964, 3623, 7601, '-31.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 (54611, '2022-01-27', 1584, 51964, 3623, NULL, '33.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-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 (54612, '2022-01-27', 1665, 51965, 3623, 3235, '-62.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 (54613, '2022-01-27', 1665, 51965, 3623, NULL, '64.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54614, '2022-01-27', 9736, 51966, 3624, NULL, '1.0000', '3.9100', '3.9100', '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 (54615, '2022-01-27', 1455, 51967, 3624, 18913, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '91.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 (54616, '2022-01-27', 2169, 51968, 3625, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '105.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54617, '2022-01-27', 1863, 51969, 3625, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54618, '2022-01-27', 2167, 51970, 3625, NULL, '1.0000', '2.1310', '2.1310', '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 (54619, '2022-01-27', 2545, 51971, 3625, 37768, '1.0000', '4.2678', '4.2678', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54620, '2022-01-27', 7604, 51972, 3625, NULL, '1.0000', '4.3900', '4.3900', '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 (54621, '2022-01-27', 8759, 51973, 3625, NULL, '1.0000', '15.0800', '15.0800', '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 (54622, '2022-01-27', 1873, 51974, 3625, 33148, '1.0000', '11.9500', '11.9500', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54623, '2022-01-27', 2293, 51975, 3625, NULL, '1.0000', '-15.8931', '-15.8931', '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 (54624, '2022-01-27', 7394, 51976, 3625, NULL, '1.0000', '12.7400', '12.7400', '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 (54625, '2022-01-27', 1394, 51977, 3625, 48995, '1.0000', '7.8985', '7.8985', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54626, '2022-01-27', 1501, 51978, 3625, NULL, '1.0000', '2.1784', '2.1784', '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 (54627, '2022-01-27', 2240, 51979, 3625, 48169, '1.0000', '32.4083', '32.4083', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54628, '2022-01-27', 1700, 51980, 3625, 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 (54629, '2022-01-27', 2059, 51981, 3625, 44437, '1.0000', '8.8934', '8.8934', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54630, '2022-01-27', 2037, 51982, 3625, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '9.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 (54631, '2022-01-27', 1856, 51983, 3625, NULL, '1.0000', '1.7723', '1.7723', '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 (54632, '2022-01-27', 1499, 51984, 3625, 49347, '1.0000', '0.3411', '0.3411', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54633, '2022-01-27', 7412, 51985, 3626, NULL, '1.0000', '1.5200', '1.5200', '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 (54634, '2022-01-27', 7674, 51986, 3626, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54635, '2022-01-27', 8714, 51987, 3626, 46686, '1.0000', '9.3473', '9.3473', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54636, '2022-01-27', 9329, 51988, 3626, NULL, '1.0000', '13.9601', '13.9601', '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 (54637, '2022-01-27', 7675, 51989, 3626, NULL, '1.0000', '37.2865', '37.2865', '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 (54638, '2022-01-27', 7473, 51990, 3626, NULL, '2.0000', '104.1526', '104.1526', '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 (54639, '2022-01-27', 9556, 51991, 3626, 48080, '3.0000', '0.2770', '0.2770', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54640, '2022-01-27', 2315, 51992, 3626, 48004, '3.0000', '0.8863', '0.8863', '0.8000', '0.8000', '30.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54641, '2022-01-27', 7899, 51993, 3626, 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 (54642, '2022-01-27', 9758, 51994, 3626, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54643, '2022-01-27', 1841, 51995, 3626, 48007, '3.0000', '0.1792', '0.1792', '0.5000', '0.5000', '92.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54644, '2022-01-27', 7867, 51996, 3626, 39602, '2.0000', '2.1368', '2.1368', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54645, '2022-01-27', 1840, 51997, 3626, 48008, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54646, '2022-01-27', 7715, 51998, 3626, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '42.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54647, '2022-01-27', 7823, 51999, 3626, 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 (54648, '2022-01-27', 9445, 52001, 3626, 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 (54649, '2022-01-27', 8205, 52002, 3627, NULL, '1.0000', '2.9500', '2.9500', '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 (54650, '2022-01-27', 8924, 52003, 3627, NULL, '1.0000', '4.5000', '4.5000', '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 (54651, '2022-01-27', 9629, 52004, 3627, NULL, '5.0000', '22.0000', '22.0000', '9.3000', '9.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 (54652, '2022-01-27', 7428, 52005, 3627, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54653, '2022-01-27', 1498, 52006, 3627, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '71.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54654, '2022-01-27', 3001, 52007, 3627, NULL, '2.0000', '1.5000', '1.5000', '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 (54655, '2022-01-27', 7341, 52008, 3627, 38427, '1.0000', '24.0100', '24.0100', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54656, '2022-01-27', 8137, 52009, 3627, NULL, '1.0000', '3.0000', '3.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 (54657, '2022-01-27', 7514, 52010, 3627, NULL, '1.0000', '65.8461', '65.8461', '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 (54658, '2022-01-27', 7482, 52011, 3627, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54659, '2022-01-27', 7507, 52012, 3627, NULL, '3.0000', '6.5000', '6.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 (54660, '2022-01-27', 7514, 52013, 3627, NULL, '1.0000', '65.8461', '65.8461', '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 (54661, '2022-01-27', 7776, 52014, 3627, NULL, '1.0000', '8.0000', '8.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 (54662, '2022-01-27', 7337, 52015, 3627, 29986, '1.0000', '0.6500', '0.6500', '14.0000', '14.0000', '30.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54663, '2022-01-27', 7658, 52016, 3627, 47945, '2.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '7.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54664, '2022-01-27', 7473, 52017, 3627, NULL, '2.0000', '104.1526', '104.1526', '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 (54665, '2022-01-27', 7657, 52018, 3627, NULL, '1.0000', '-20.7289', '-20.7289', '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 (54666, '2022-01-27', 2768, 52019, 3627, 34521, '1.0000', '0.9600', '0.9600', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54667, '2022-01-27', 8417, 52020, 3627, NULL, '1.0000', '4.9094', '4.9094', '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 (54668, '2022-01-27', 9732, 52021, 3627, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54669, '2022-01-27', 9267, 52022, 3627, 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 (54670, '2022-01-27', 9736, 52023, 3627, 46927, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54671, '2022-01-27', 9273, 52024, 3627, NULL, '1.0000', '0.3500', '0.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 (54672, '2022-01-27', 2284, 52025, 3627, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54673, '2022-01-27', 7898, 52026, 3627, NULL, '1.0000', '2.2000', '2.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 (54674, '2022-01-27', 8039, 52027, 3627, 47916, '1.0000', '-393.2876', '-393.2876', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54675, '2022-01-27', 2699, 52028, 3627, 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 (54676, '2022-01-27', 7671, 52029, 3627, NULL, '1.0000', '76.3606', '76.3606', '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 (54677, '2022-01-27', 8316, 52030, 3627, 42394, '1.0000', '44.3312', '44.3312', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54678, '2022-01-27', 2655, 52031, 3627, 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 (54679, '2022-01-27', 7671, 52032, 3627, NULL, '1.0000', '76.3606', '76.3606', '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 (54680, '2022-01-27', 7507, 52033, 3627, NULL, '3.0000', '6.5000', '6.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 (54681, '2022-01-27', 7642, 52034, 3627, 46653, '1.0000', '5.9200', '5.9200', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54682, '2022-01-27', 8084, 52035, 3627, NULL, '1.0000', '8.6981', '8.6981', '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 (54683, '2022-01-27', 8966, 52036, 3627, 30184, '1.0000', '6.4994', '6.4994', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54684, '2022-01-27', 7433, 52037, 3627, 48807, '7.0000', '1.7200', '1.7200', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54685, '2022-01-27', 2655, 52038, 3627, 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 (54686, '2022-01-27', 7805, 52039, 3627, NULL, '4.0000', '2.1800', '2.1800', '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 (54687, '2022-01-27', 1419, 52040, 3628, NULL, '1.0000', '13.1040', '13.1040', '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 (54688, '2022-01-27', 1856, 52041, 3628, NULL, '1.0000', '1.7723', '1.7723', '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 (54689, '2022-01-27', 2135, 52042, 3628, 18930, '1.0000', '2.4732', '2.4732', '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 (54690, '2022-01-27', 1590, 52043, 3628, 48900, '1.0000', '1.4454', '1.4454', '2.3000', '2.3000', '28.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54691, '2022-01-27', 7532, 52044, 3628, 42102, '1.0000', '20.2334', '20.2334', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54692, '2022-01-27', 1647, 52045, 3628, NULL, '1.0000', '5.0700', '5.0700', '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 (54693, '2022-01-27', 7342, 52046, 3628, NULL, '1.0000', '15.6000', '15.6000', '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 (54694, '2022-01-27', 2169, 52047, 3628, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '104.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54695, '2022-01-27', 1386, 52048, 3628, 48953, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54696, '2022-01-27', 2435, 52049, 3628, 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 (54697, '2022-01-27', 2088, 52050, 3628, NULL, '1.0000', '-1.0956', '-1.0956', '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 (54698, '2022-01-27', 7708, 52051, 3628, 45203, '1.0000', '6.3400', '6.3400', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54699, '2022-01-27', 9750, 52052, 3629, NULL, '1.0000', '3.3000', '3.3000', '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 (54700, '2022-01-27', 1338, 52053, 3629, 18934, '1.0000', '3.7257', '3.7257', '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 (54701, '2022-01-27', 1665, 52054, 3629, 49365, '3.0000', '1.0999', '1.0999', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54702, '2022-01-27', 9531, 52055, 3629, 40118, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54703, '2022-01-27', 8146, 52056, 3629, NULL, '1.0000', '4.4100', '4.4100', '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 (54704, '2022-01-27', 1871, 52057, 3629, NULL, '3.0000', '1.6959', '1.6959', '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 (54705, '2022-01-27', 1615, 52058, 3629, 48893, '14.0000', '5.3000', '5.3000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54706, '2022-01-27', 7411, 52059, 3630, NULL, '1.0000', '1.3013', '1.3013', '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 (54707, '2022-01-27', 1809, 52060, 3630, 49374, '1.0000', '10.0911', '10.0911', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54708, '2022-01-27', 2327, 52061, 3630, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54709, '2022-01-27', 9758, 52062, 3630, NULL, '1.0000', '3.1400', '3.1400', '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 (54710, '2022-01-27', 9706, 52063, 3630, 44446, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54711, '2022-01-27', 8146, 52064, 3631, NULL, '1.0000', '4.4100', '4.4100', '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 (54712, '2022-01-27', 2169, 52065, 3631, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '102.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54713, '2022-01-27', 1401, 52066, 3631, 48948, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54714, '2022-01-27', 1497, 52067, 3631, 37779, '2.0000', '10.2908', '10.2908', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54715, '2022-01-27', 7382, 52068, 3631, NULL, '1.0000', '7.4500', '7.4500', '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 (54716, '2022-01-27', 1868, 52069, 3631, 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 (54717, '2022-01-27', 1504, 52070, 3632, 46596, '10.0000', '3.0211', '3.0211', '2.2000', '2.2000', '107.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54718, '2022-01-27', 3066, 52071, 3632, 49026, '1.0000', '25.0000', '25.0000', '36.5000', '36.5000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54719, '2022-01-27', 9731, 52072, 3632, 46034, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54720, '2022-01-27', 2240, 52073, 3632, 49047, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54721, '2022-01-27', 1706, 52074, 3632, 44509, '1.0000', '12.5773', '12.5773', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54722, '2022-01-27', 2169, 52075, 3632, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54723, '2022-01-27', 1427, 52076, 3632, 46760, '1.0000', '14.5073', '14.5073', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54724, '2022-01-27', 9743, 52077, 3632, 46041, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54725, '2022-01-27', 7744, 52078, 3632, NULL, '2.0000', '2.9400', '2.9400', '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 (54726, '2022-01-27', 1411, 52079, 3632, 49166, '1.0000', '25.9313', '25.9313', '35.0000', '35.0000', '9.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54727, '2022-01-27', 2608, 52080, 3632, 40185, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54728, '2022-01-27', 8146, 52081, 3633, NULL, '1.0000', '4.4100', '4.4100', '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 (54729, '2022-01-27', 2169, 52082, 3633, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '100.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54730, '2022-01-27', 1401, 52083, 3633, 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 (54731, '2022-01-27', 1497, 52084, 3633, 34601, '1.0000', '10.2908', '10.2908', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54732, '2022-01-27', 1497, 52084, 3633, NULL, '1.0000', '10.2908', '10.2908', '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 (54733, '2022-01-27', 7382, 52085, 3633, NULL, '1.0000', '7.4500', '7.4500', '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 (54734, '2022-01-27', 1868, 52086, 3633, 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 (54735, '2022-01-27', 9213, 52087, 3634, 45280, '1.0000', '5.5090', '5.5090', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54736, '2022-01-27', 1493, 52088, 3634, 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 (54737, '2022-01-27', 1912, 52089, 3634, 37802, '1.0000', '0.6675', '0.6675', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54738, '2022-01-27', 2237, 52090, 3634, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54739, '2022-01-27', 1935, 52091, 3635, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54740, '2022-01-27', 1666, 52092, 3635, 49363, '2.0000', '2.7286', '2.7286', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54741, '2022-01-27', 9727, 52093, 3635, 47071, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54742, '2022-01-27', 1513, 52094, 3636, 44782, '1.0000', '24.5998', '24.5998', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54743, '2022-01-27', 7848, 52095, 3637, NULL, '1.0000', '-8.0868', '-8.0868', '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 (54744, '2022-01-27', 1841, 52096, 3637, 48007, '9.0000', '0.1792', '0.1792', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54745, '2022-01-27', 8203, 52097, 3637, NULL, '4.0000', '2.3282', '2.3282', '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 (54746, '2022-01-27', 1571, 52098, 3637, 39595, '1.0000', '43.6688', '43.6688', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54747, '2022-01-27', 7867, 52099, 3637, 39602, '1.0000', '2.1368', '2.1368', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54748, '2022-01-27', 7867, 52099, 3637, NULL, '1.0000', '2.1368', '2.1368', '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 (54749, '2022-01-27', 8154, 52100, 3637, NULL, '2.0000', '12.3000', '12.3000', '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 (54750, '2022-01-27', 7435, 52101, 3637, NULL, '14.0000', '4.0200', '4.0200', '8.0000', '8.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 (54751, '2022-01-27', 1855, 52102, 3637, 44359, '1.0000', '1.4625', '1.4625', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54752, '2022-01-27', 9416, 52103, 3637, 49433, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54753, '2022-01-27', 8746, 52104, 3637, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54754, '2022-01-27', 2248, 52105, 3637, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54755, '2022-01-27', 7909, 52106, 3637, NULL, '1.0000', '4.0000', '4.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 (54756, '2022-01-27', 7442, 52107, 3637, 45341, '1.0000', '14.7000', '14.7000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54757, '2022-01-27', 1908, 52108, 3637, NULL, '2.0000', '1.7500', '1.7500', '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 (54758, '2022-01-27', 8938, 52109, 3637, NULL, '2.0000', '7.8500', '7.8500', '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 (54759, '2022-01-27', 7881, 52110, 3637, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54760, '2022-01-27', 7622, 52111, 3637, NULL, '1.0000', '17.8100', '17.8100', '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 (54761, '2022-01-27', 7672, 52112, 3637, NULL, '1.0000', '3.8200', '3.8200', '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 (54762, '2022-01-27', 7881, 52113, 3637, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54763, '2022-01-27', 7496, 52114, 3637, NULL, '1.0000', '0.9600', '0.9600', '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 (54764, '2022-01-27', 9092, 52115, 3637, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '114.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54765, '2022-01-27', 8203, 52116, 3637, NULL, '1.0000', '2.3282', '2.3282', '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 (54766, '2022-01-27', 7514, 52117, 3637, NULL, '1.0000', '65.8461', '65.8461', '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 (54767, '2022-01-27', 1427, 52118, 3638, NULL, '1.0000', '19.0000', '19.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 (54768, '2022-01-27', 2135, 52119, 3639, 40580, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54769, '2022-01-27', 9783, 52120, 3639, 49467, '1.0000', '17.6000', '17.6000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54770, '2022-01-27', 2313, 52121, 3639, NULL, '3.0000', '8.7000', '8.7000', '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 (54771, '2022-01-27', 8743, 52122, 3640, NULL, '1.0000', '11.2917', '11.2917', '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 (54772, '2022-01-28', 2948, 52123, 3641, 49143, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54773, '2022-01-28', 1545, 52124, 3641, 10550, '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 (54774, '2022-01-28', 1673, 52125, 3641, 9409, '1.0000', '12.9000', '12.9000', '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 (54775, '2022-01-28', 2169, 52126, 3641, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54776, '2022-01-28', 2270, 52127, 3641, 45078, '1.0000', '3.0208', '3.0208', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54777, '2022-01-28', 1953, 52128, 3641, 32866, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54778, '2022-01-28', 2169, 52129, 3641, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54779, '2022-01-28', 1667, 52130, 3641, 49550, '1.0000', '37.4709', '37.4709', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54780, '2022-01-28', 2286, 52131, 3641, 49547, '1.0000', '4.3959', '4.3959', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54781, '2022-01-28', 8301, 52132, 3642, 34946, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54782, '2022-01-28', 1602, 52133, 3642, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54783, '2022-01-28', 1612, 52134, 3642, 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 (54784, '2022-01-28', 7802, 52135, 3642, 47070, '3.0000', '0.9200', '0.9200', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54785, '2022-01-28', 2289, 52136, 3642, 38551, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54786, '2022-01-28', 1602, 52137, 3642, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54787, '2022-01-28', 2221, 52138, 3642, 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 (54788, '2022-01-28', 8127, 52139, 3642, 48732, '1.0000', '24.5300', '24.5300', '1.2000', '1.2000', '18.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54789, '2022-01-28', 9748, 52140, 3642, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54790, '2022-01-28', 2283, 52141, 3642, 48600, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54791, '2022-01-28', 2460, 52142, 3642, 34606, '1.0000', '33.6400', '33.6400', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54792, '2022-01-28', 2289, 52143, 3642, 38551, '2.0000', '0.3186', '0.3186', '0.5000', '0.5000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54793, '2022-01-28', 2237, 52144, 3642, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54794, '2022-01-28', 1588, 52145, 3642, 48708, '1.0000', '4.8000', '4.8000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54795, '2022-01-28', 2491, 52146, 3642, 49313, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54796, '2022-01-28', 1574, 52147, 3642, 48648, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54797, '2022-01-28', 2136, 52148, 3642, 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 (54798, '2022-01-28', 1807, 52149, 3642, NULL, '2.0000', '34.9993', '34.9993', '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 (54799, '2022-01-28', 2169, 52150, 3642, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54800, '2022-01-28', 1590, 52151, 3642, 48900, '3.0000', '1.4454', '1.4454', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54801, '2022-01-28', 1935, 52152, 3642, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54802, '2022-01-28', 9747, 52153, 3642, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54803, '2022-01-28', 8061, 52154, 3642, NULL, '1.0000', '1.6000', '1.6000', '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 (54804, '2022-01-28', 2318, 52155, 3642, NULL, '2.0000', '0.5000', '0.5000', '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 (54805, '2022-01-28', 1746, 52156, 3642, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (54806, '2022-01-28', 1502, 52157, 3643, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '30.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54807, '2022-01-28', 8773, 52158, 3643, NULL, '1.0000', '4.4800', '4.4800', '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 (54808, '2022-01-28', 7641, 52159, 3644, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54809, '2022-01-28', 8889, 52160, 3644, 49403, '1.0000', '35.2500', '35.2500', '39.0000', '39.0000', '4.0000', 1, 0, NULL, 372);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54810, '2022-01-28', 8408, 52161, 3644, 48381, '1.0000', '12.5669', '12.5669', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54811, '2022-01-28', 7959, 52162, 3644, NULL, '2.0000', '9.6000', '9.6000', '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 (54812, '2022-01-28', 7921, 52163, 3644, NULL, '1.0000', '0.3000', '0.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 (54813, '2022-01-28', 8814, 52164, 3644, NULL, '10.0000', '5.0000', '5.0000', '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 (54814, '2022-01-28', 8137, 52165, 3644, NULL, '1.0000', '3.0000', '3.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 (54815, '2022-01-28', 8000, 52166, 3644, NULL, '1.0000', '249.4419', '249.4419', '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 (54816, '2022-01-28', 8924, 52167, 3644, NULL, '1.0000', '4.5000', '4.5000', '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 (54817, '2022-01-28', 9272, 52168, 3644, NULL, '1.0000', '3.1000', '3.1000', '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 (54818, '2022-01-28', 8457, 52169, 3644, NULL, '1.0000', '5.0785', '5.0785', '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 (54819, '2022-01-28', 7379, 52170, 3644, NULL, '1.0000', '134.5492', '134.5492', '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 (54820, '2022-01-28', 7920, 52171, 3644, 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 (54821, '2022-01-28', 7824, 52172, 3644, NULL, '1.0000', '10.0834', '10.0834', '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 (54822, '2022-01-28', 2655, 52173, 3644, 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 (54823, '2022-01-28', 9694, 52174, 3644, 43966, '2.0000', '16.3000', '16.3000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54824, '2022-01-28', 7428, 52175, 3644, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54825, '2022-01-28', 7385, 52176, 3644, 45811, '2.0000', '-29.7430', '-29.7430', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54826, '2022-01-28', 7946, 52177, 3644, 48254, '2.0000', '-3.9133', '-3.9133', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54827, '2022-01-28', 7564, 52178, 3644, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54828, '2022-01-28', 2321, 52179, 3644, NULL, '1.0000', '2.5000', '2.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 (54829, '2022-01-28', 7554, 52180, 3644, 48389, '3.0000', '1.6815', '1.6815', '2.2000', '2.2000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54830, '2022-01-28', 7554, 52180, 3644, NULL, '17.0000', '1.6815', '1.6815', '2.2000', '2.2000', '-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 (54831, '2022-01-28', 8395, 52181, 3644, NULL, '2.0000', '0.9700', '0.9700', '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 (54832, '2022-01-28', 9556, 52182, 3644, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54833, '2022-01-28', 7819, 52183, 3644, NULL, '1.0000', '17.5480', '17.5480', '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 (54834, '2022-01-28', 8677, 52184, 3644, NULL, '3.0000', '1.2300', '1.2300', '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 (54835, '2022-01-28', 7781, 52185, 3644, NULL, '3.0000', '4.2500', '4.2500', '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 (54836, '2022-01-28', 7779, 52186, 3644, 48848, '1.0000', '9.6790', '9.6790', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54837, '2022-01-28', 7411, 52187, 3644, NULL, '2.0000', '1.3600', '1.3600', '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 (54838, '2022-01-28', 7674, 52188, 3644, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '85.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54839, '2022-01-28', 8918, 52189, 3644, 45579, '2.0000', '4.7316', '4.7316', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54840, '2022-01-28', 7822, 52190, 3644, NULL, '1.0000', '8.0333', '8.0333', '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 (54841, '2022-01-28', 7396, 52191, 3644, 30023, '1.0000', '6.0000', '6.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54842, '2022-01-28', 8616, 52192, 3644, 36673, '1.0000', '-23.9580', '-23.9580', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54843, '2022-01-28', 2315, 52193, 3644, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '28.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54844, '2022-01-28', 7643, 52194, 3644, NULL, '1.0000', '2.1100', '2.1100', '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 (54845, '2022-01-28', 7514, 52195, 3644, NULL, '1.0000', '65.8461', '65.8461', '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 (54846, '2022-01-28', 8608, 52196, 3644, NULL, '1.0000', '5.7400', '5.7400', '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 (54847, '2022-01-28', 7756, 52197, 3644, NULL, '1.0000', '18.7452', '18.7452', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54848, '2022-01-28', 8517, 52198, 3644, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54849, '2022-01-28', 2865, 52199, 3644, 31910, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54850, '2022-01-28', 7473, 52200, 3644, NULL, '2.0000', '104.1526', '104.1526', '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 (54851, '2022-01-28', 7959, 52201, 3644, NULL, '2.0000', '9.6000', '9.6000', '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 (54852, '2022-01-28', 2965, 52202, 3644, NULL, '1.0000', '3.9200', '3.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 (54853, '2022-01-28', 8596, 52203, 3644, NULL, '1.0000', '17.0000', '17.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 (54854, '2022-01-28', 7514, 52204, 3644, NULL, '2.0000', '65.8461', '65.8461', '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 (54855, '2022-01-28', 7482, 52205, 3644, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54856, '2022-01-28', 2069, 52206, 3645, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '19.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54857, '2022-01-28', 7713, 52207, 3645, 37398, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54858, '2022-01-28', 7593, 52208, 3645, 48087, '1.0000', '2.5263', '2.5263', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54859, '2022-01-28', 7509, 52209, 3645, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54860, '2022-01-28', 8466, 52210, 3645, NULL, '17.0000', '-24.7500', '-24.7500', '4.0000', '4.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 (54861, '2022-01-28', 8127, 52211, 3645, NULL, '1.0000', '24.5300', '24.5300', '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 (54862, '2022-01-28', 2284, 52212, 3645, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54863, '2022-01-28', 9273, 52213, 3645, NULL, '1.0000', '0.3500', '0.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 (54864, '2022-01-28', 2315, 52214, 3645, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '27.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54865, '2022-01-28', 7881, 52215, 3645, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54866, '2022-01-28', 9272, 52216, 3645, NULL, '2.0000', '3.1000', '3.1000', '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 (54867, '2022-01-28', 7457, 52217, 3645, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54868, '2022-01-28', 7317, 52218, 3645, 46664, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54869, '2022-01-28', 9734, 52219, 3645, 46910, '6.0000', '0.3200', '0.3200', '0.5000', '0.5000', '120.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54870, '2022-01-28', 7457, 52220, 3645, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54871, '2022-01-28', 9732, 52221, 3645, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54872, '2022-01-28', 7585, 52222, 3645, NULL, '1.0000', '-3.1011', '-3.1011', '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 (54873, '2022-01-28', 9272, 52223, 3645, NULL, '3.0000', '3.1000', '3.1000', '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 (54874, '2022-01-28', 9207, 52224, 3645, NULL, '2.0000', '4.6000', '4.6000', '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 (54875, '2022-01-28', 7806, 52225, 3645, NULL, '5.0000', '16.4658', '16.4658', '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 (54876, '2022-01-28', 1837, 52226, 3645, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54877, '2022-01-28', 7453, 52227, 3645, NULL, '1.0000', '11.3750', '11.3750', '28.5000', '28.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54878, '2022-01-28', 7512, 52228, 3645, NULL, '2.0000', '1.0000', '1.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 (54879, '2022-01-28', 8497, 52229, 3645, NULL, '2.0000', '1126.4862', '1126.4862', '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 (54880, '2022-01-28', 7428, 52230, 3645, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '32.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54881, '2022-01-28', 2699, 52231, 3645, 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 (54882, '2022-01-28', 9734, 52232, 3645, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '125.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54883, '2022-01-28', 8622, 52233, 3646, 39815, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54884, '2022-01-28', 7328, 52234, 3646, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (54885, '2022-01-28', 1840, 52235, 3646, 42569, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54886, '2022-01-28', 2289, 52236, 3646, 38551, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54887, '2022-01-28', 2289, 52236, 3646, NULL, '3.0000', '0.3186', '0.3186', '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 (54888, '2022-01-28', 1593, 52237, 3646, NULL, '14.0000', '5.9000', '5.9000', '8.7000', '8.7000', '-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 (54889, '2022-01-28', 1871, 52238, 3646, NULL, '20.0000', '1.6959', '1.6959', '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 (54890, '2022-01-28', 2254, 52239, 3646, NULL, '1.0000', '17.9400', '17.9400', '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 (54891, '2022-01-28', 2131, 52240, 3646, 44163, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54892, '2022-01-28', 1499, 52241, 3646, 49347, '1.0000', '0.3411', '0.3411', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54893, '2022-01-28', 9556, 52242, 3646, 39822, '5.0000', '0.4814', '0.4814', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54894, '2022-01-28', 7558, 52243, 3646, NULL, '10.0000', '-37.0255', '-37.0255', '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 (54895, '2022-01-28', 2293, 52244, 3646, NULL, '1.0000', '-15.8931', '-15.8931', '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 (54896, '2022-01-28', 1839, 52245, 3646, NULL, '1.0000', '-9.7683', '-9.7683', '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 (54897, '2022-01-28', 7880, 52246, 3646, NULL, '1.0000', '1.0000', '1.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 (54898, '2022-01-28', 8077, 52247, 3646, 39839, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54899, '2022-01-28', 7554, 52248, 3646, NULL, '10.0000', '16.0000', '16.0000', '2.2000', '2.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 (54900, '2022-01-28', 9213, 52249, 3646, 45280, '1.0000', '5.5090', '5.5090', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54901, '2022-01-28', 2036, 52250, 3646, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.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 (54902, '2022-01-28', 2169, 52251, 3646, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '98.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54903, '2022-01-28', 9337, 52252, 3646, NULL, '4.0000', '5.7200', '5.7200', '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 (54904, '2022-01-28', 1577, 52253, 3646, NULL, '1.0000', '2.3271', '2.3271', '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 (54905, '2022-01-28', 2315, 52254, 3646, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '266.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54906, '2022-01-28', 9556, 52255, 3646, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54907, '2022-01-28', 7411, 52256, 3646, NULL, '1.0000', '1.3013', '1.3013', '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 (54908, '2022-01-28', 7482, 52257, 3646, NULL, '1.0000', '2.8136', '2.8136', '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 (54909, '2022-01-28', 8335, 52258, 3646, NULL, '1.0000', '21.7000', '21.7000', '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 (54910, '2022-01-28', 1840, 52259, 3646, 42569, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54911, '2022-01-28', 2289, 52260, 3646, 38551, '1.0000', '0.3186', '0.3186', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54912, '2022-01-28', 2289, 52260, 3646, NULL, '3.0000', '0.3186', '0.3186', '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 (54913, '2022-01-28', 1841, 52261, 3646, 34025, '4.0000', '0.2601', '0.2601', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54914, '2022-01-28', 7609, 52262, 3646, NULL, '1.0000', '4.3300', '4.3300', '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 (54915, '2022-01-28', 8037, 52263, 3646, NULL, '1.0000', '1.7600', '1.7600', '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 (54916, '2022-01-28', 8420, 52264, 3646, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '19.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54917, '2022-01-28', 2382, 52265, 3646, 19869, '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 (54918, '2022-01-28', 2320, 52266, 3646, 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 (54919, '2022-01-28', 7558, 52267, 3646, NULL, '5.0000', '-37.0255', '-37.0255', '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 (54920, '2022-01-28', 2315, 52268, 3646, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '265.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54921, '2022-01-28', 2169, 52269, 3646, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '97.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54922, '2022-01-28', 2293, 52270, 3646, NULL, '2.0000', '-15.8931', '-15.8931', '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 (54923, '2022-01-28', 8746, 52271, 3646, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54924, '2022-01-28', 9416, 52272, 3646, 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 (54925, '2022-01-28', 7411, 52273, 3646, NULL, '1.0000', '1.3013', '1.3013', '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 (54926, '2022-01-28', 7482, 52274, 3646, NULL, '1.0000', '2.8136', '2.8136', '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 (54927, '2022-01-28', 2655, 52275, 3646, 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 (54928, '2022-01-28', 7636, 52276, 3646, NULL, '1.0000', '11.8700', '11.8700', '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 (54929, '2022-01-28', 7411, 52277, 3646, NULL, '1.0000', '1.3013', '1.3013', '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 (54930, '2022-01-28', 9503, 52278, 3646, 33350, '1.0000', '24.1775', '24.1775', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54931, '2022-01-28', 8539, 52279, 3646, NULL, '1.0000', '0.5200', '0.5200', '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 (54932, '2022-01-28', 1307, 52280, 3646, NULL, '1.0000', '0.6103', '0.6103', '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 (54933, '2022-01-28', 7473, 52281, 3646, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '64.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54934, '2022-01-28', 1805, 52282, 3646, NULL, '1.0000', '15.0770', '15.0770', '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 (54935, '2022-01-28', 1668, 52283, 3646, 49367, '1.0000', '38.5128', '38.5128', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54936, '2022-01-28', 1888, 52284, 3646, 49369, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54937, '2022-01-28', 7411, 52285, 3646, NULL, '1.0000', '1.3013', '1.3013', '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 (54938, '2022-01-28', 7354, 52286, 3646, 39856, '1.0000', '0.0102', '0.0102', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54939, '2022-01-28', 7894, 52287, 3646, NULL, '1.0000', '22.0000', '22.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 (54940, '2022-01-28', 2237, 52288, 3646, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54941, '2022-01-28', 7514, 52289, 3646, NULL, '1.0000', '2.2500', '2.2500', '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 (54942, '2022-01-28', 9750, 52290, 3646, NULL, '1.0000', '3.3000', '3.3000', '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 (54943, '2022-01-28', 1426, 52291, 3646, 48992, '1.0000', '34.9584', '34.9584', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54944, '2022-01-28', 2738, 52292, 3646, 19348, '1.0000', '7.6000', '7.6000', '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 (54945, '2022-01-28', 2699, 52293, 3646, 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 (54946, '2022-01-28', 1871, 52294, 3646, NULL, '1.0000', '1.6959', '1.6959', '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 (54947, '2022-01-28', 7609, 52295, 3646, NULL, '1.0000', '4.3300', '4.3300', '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 (54948, '2022-01-28', 2379, 52296, 3646, NULL, '1.0000', '1.0877', '1.0877', '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 (54949, '2022-01-28', 7483, 52297, 3646, 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 (54950, '2022-01-28', 8677, 52298, 3646, NULL, '2.0000', '292.4641', '292.4641', '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 (54951, '2022-01-28', 3013, 52299, 3646, 44057, '2.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54952, '2022-01-28', 8763, 52300, 3646, 44148, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54953, '2022-01-28', 1410, 52301, 3646, NULL, '1.0000', '1.8562', '1.8562', '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 (54954, '2022-01-28', 9750, 52302, 3646, NULL, '1.0000', '3.3000', '3.3000', '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 (54955, '2022-01-28', 9413, 52303, 3646, 34036, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54956, '2022-01-28', 7411, 52304, 3646, NULL, '1.0000', '1.3013', '1.3013', '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 (54957, '2022-01-28', 3058, 52305, 3646, NULL, '1.0000', '2.3000', '2.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 (54958, '2022-01-28', 2169, 52306, 3646, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '98.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54959, '2022-01-28', 2038, 52307, 3646, 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 (54960, '2022-01-28', 9747, 52308, 3646, 47084, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54961, '2022-01-28', 9713, 52309, 3646, 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 (54962, '2022-01-28', 2315, 52310, 3646, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '266.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54963, '2022-01-28', 2237, 52311, 3646, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54964, '2022-01-28', 1690, 52312, 3646, 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 (54965, '2022-01-28', 2221, 52313, 3646, 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 (54966, '2022-01-28', 1394, 52314, 3647, 33037, '1.0000', '6.8340', '6.8340', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54967, '2022-01-28', 1512, 52315, 3647, 9528, '1.0000', '4.1000', '4.1000', '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 (54968, '2022-01-28', 2660, 52316, 3647, 49531, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54969, '2022-01-28', 1935, 52317, 3647, 46073, '2.0000', '1.9058', '1.9058', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54970, '2022-01-28', 2315, 52318, 3647, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '202.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54971, '2022-01-28', 2169, 52319, 3647, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54972, '2022-01-28', 8876, 52320, 3647, NULL, '1.0000', '0.9900', '0.9900', '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 (54973, '2022-01-28', 2924, 52321, 3647, 47840, '1.0000', '6.3700', '6.3700', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 348);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54974, '2022-01-28', 2699, 52322, 3647, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54975, '2022-01-28', 9688, 52323, 3647, 44031, '1.0000', '3.4000', '3.4000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54976, '2022-01-28', 9590, 52324, 3647, NULL, '1.0000', '0.0000', '0.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 (54977, '2022-01-28', 9695, 52325, 3647, 49478, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54978, '2022-01-28', 1493, 52326, 3647, 49232, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54979, '2022-01-28', 1584, 52327, 3647, 44035, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54980, '2022-01-28', 2003, 52328, 3647, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54981, '2022-01-28', 7790, 52329, 3647, 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 (54982, '2022-01-28', 1904, 52330, 3647, 45091, '2.0000', '39.3704', '39.3704', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54983, '2022-01-28', 2088, 52331, 3647, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54984, '2022-01-28', 2088, 52331, 3647, 40230, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54985, '2022-01-28', 2088, 52331, 3647, 2444, '1.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 (54986, '2022-01-28', 2858, 52332, 3647, 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 (54987, '2022-01-28', 2284, 52333, 3648, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54988, '2022-01-28', 7756, 52334, 3648, NULL, '1.0000', '18.7452', '18.7452', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54989, '2022-01-28', 1564, 52335, 3649, NULL, '3.0000', '2.4842', '2.4842', '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 (54990, '2022-01-29', 2768, 52336, 3650, 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 (54991, '2022-01-29', 8085, 52337, 3650, NULL, '2.0000', '14.0000', '14.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 (54992, '2022-01-29', 2242, 52338, 3650, 48899, '1.0000', '4.6984', '4.6984', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54993, '2022-01-29', 2259, 52339, 3650, 49309, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54994, '2022-01-29', 1665, 52340, 3650, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54995, '2022-01-29', 2491, 52341, 3650, 49313, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54996, '2022-01-29', 1585, 52342, 3650, 49371, '1.0000', '9.2000', '9.2000', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54997, '2022-01-29', 3017, 52343, 3650, 38532, '1.0000', '3.9000', '3.9000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54998, '2022-01-29', 2405, 52344, 3650, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '44.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54999, '2022-01-29', 2660, 52345, 3650, 49361, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55000, '2022-01-29', 1401, 52346, 3650, 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 (55001, '2022-01-29', 8085, 52347, 3650, NULL, '3.0000', '14.0000', '14.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 (55002, '2022-01-29', 1307, 52348, 3650, NULL, '3.0000', '0.6103', '0.6103', '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 (55003, '2022-01-29', 1855, 52349, 3650, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55004, '2022-01-29', 2169, 52350, 3650, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '94.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55005, '2022-01-29', 2089, 52351, 3650, 37753, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55006, '2022-01-29', 2768, 52352, 3651, 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 (55007, '2022-01-29', 2083, 52353, 3651, 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 (55008, '2022-01-29', 8746, 52354, 3651, 49616, '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 (55009, '2022-01-29', 1856, 52355, 3651, NULL, '1.0000', '1.7723', '1.7723', '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 (55010, '2022-01-29', 2352, 52356, 3651, NULL, '10.0000', '59.2000', '59.2000', '3.5000', '3.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 (55011, '2022-01-29', 2136, 52357, 3651, 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 (55012, '2022-01-29', 1450, 52358, 3651, 24966, '6.0000', '0.8900', '0.8900', '1.2000', '1.2000', '12.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 (55013, '2022-01-29', 2887, 52359, 3651, 47130, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55014, '2022-01-29', 2136, 52360, 3652, 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 (55015, '2022-01-29', 1863, 52361, 3652, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55016, '2022-01-29', 2360, 52362, 3653, 3862, '-52.0000', '0.5200', '0.5200', '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 (55017, '2022-01-29', 2360, 52362, 3653, NULL, '53.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (55018, '2022-01-29', 9546, 52363, 3653, 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 (55019, '2022-01-29', 1602, 52364, 3653, 5897, '-99.0000', '6.7859', '6.7859', '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 (55020, '2022-01-29', 1602, 52364, 3653, NULL, '100.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-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 (55021, '2022-01-29', 1450, 52365, 3653, 5570, '5.0000', '61.1074', '61.1074', '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 (55022, '2022-01-29', 1574, 52366, 3653, 7593, '-53.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 (55023, '2022-01-29', 1574, 52366, 3653, NULL, '54.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55024, '2022-01-29', 9750, 52367, 3653, NULL, '1.0000', '3.3000', '3.3000', '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 (55025, '2022-01-29', 1665, 52368, 3653, 3235, '-64.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 (55026, '2022-01-29', 1665, 52368, 3653, NULL, '65.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55027, '2022-01-29', 1859, 52369, 3653, 7388, '1.0000', '22.6760', '22.6760', '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 (55028, '2022-01-29', 1860, 52370, 3653, 22336, '1.0000', '21.5000', '21.5000', '28.0000', '28.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 (55029, '2022-01-29', 2099, 52371, 3653, 1043, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '6.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 (55030, '2022-01-29', 9399, 52372, 3653, NULL, '1.0000', '0.9800', '0.9800', '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 (55031, '2022-01-29', 1339, 52373, 3653, 13004, '-5.0000', '1.6012', '1.6012', '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 (55032, '2022-01-29', 1339, 52373, 3653, NULL, '6.0000', '1.6012', '1.6012', '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 (55033, '2022-01-29', 2167, 52374, 3653, 17165, '-34.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 (55034, '2022-01-29', 2167, 52374, 3653, NULL, '35.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55035, '2022-01-29', 7743, 52375, 3654, NULL, '3.0000', '419203.7668', '419203.7668', '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 (55036, '2022-01-29', 7641, 52376, 3654, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55037, '2022-01-29', 7799, 52377, 3654, NULL, '1.0000', '-0.9144', '-0.9144', '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 (55038, '2022-01-29', 9758, 52378, 3654, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55039, '2022-01-29', 8810, 52379, 3654, NULL, '1.0000', '2.5002', '2.5002', '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 (55040, '2022-01-29', 3001, 52380, 3654, NULL, '2.0000', '1.5000', '1.5000', '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 (55041, '2022-01-29', 8536, 52381, 3654, NULL, '1.0000', '12.5000', '12.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 (55042, '2022-01-29', 7708, 52382, 3654, NULL, '1.0000', '4.1860', '4.1860', '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 (55043, '2022-01-29', 7859, 52383, 3654, NULL, '1.0000', '12.9400', '12.9400', '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 (55044, '2022-01-29', 8146, 52384, 3654, 46165, '1.0000', '17.3749', '17.3749', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55045, '2022-01-29', 8596, 52385, 3654, NULL, '1.0000', '17.0000', '17.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 (55046, '2022-01-29', 8457, 52386, 3654, NULL, '1.0000', '5.0785', '5.0785', '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 (55047, '2022-01-29', 7762, 52387, 3654, 48006, '1.0000', '4.5695', '4.5695', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55048, '2022-01-29', 7339, 52388, 3654, 47938, '10.0000', '774.1000', '774.1000', '0.9000', '0.9000', '10.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55049, '2022-01-29', 7473, 52389, 3654, NULL, '4.0000', '104.1526', '104.1526', '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 (55050, '2022-01-29', 1880, 52390, 3654, 46238, '1.0000', '4.4789', '4.4789', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55051, '2022-01-29', 9758, 52391, 3654, 49453, '2.0000', '3.1400', '3.1400', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55052, '2022-01-29', 2544, 52392, 3654, NULL, '1.0000', '6.8800', '6.8800', '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 (55053, '2022-01-29', 8135, 52393, 3654, NULL, '1.0000', '43.5453', '43.5453', '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 (55054, '2022-01-29', 2255, 52394, 3654, NULL, '2.0000', '17.4900', '17.4900', '23.0000', '23.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 (55055, '2022-01-29', 2604, 52395, 3654, 46963, '2.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 344);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55056, '2022-01-29', 7457, 52396, 3654, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55057, '2022-01-29', 7606, 52397, 3654, 43113, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55058, '2022-01-29', 8135, 52398, 3654, NULL, '1.0000', '43.5453', '43.5453', '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 (55059, '2022-01-29', 1580, 52399, 3654, 34522, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55060, '2022-01-29', 7674, 52400, 3654, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55061, '2022-01-29', 8937, 52401, 3654, NULL, '1.0000', '3.5000', '3.5000', '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 (55062, '2022-01-29', 7411, 52402, 3654, NULL, '1.0000', '1.3600', '1.3600', '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 (55063, '2022-01-29', 9158, 52403, 3654, NULL, '1.0000', '5.8916', '5.8916', '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 (55064, '2022-01-29', 7674, 52404, 3654, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '83.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55065, '2022-01-29', 7762, 52405, 3654, 48006, '1.0000', '4.5695', '4.5695', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55066, '2022-01-29', 7674, 52406, 3654, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55067, '2022-01-29', 7825, 52407, 3654, NULL, '1.0000', '-9.1758', '-9.1758', '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 (55068, '2022-01-29', 7954, 52408, 3654, NULL, '4.0000', '24.4161', '24.4161', '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 (55069, '2022-01-29', 1760, 52409, 3654, 46907, '5.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55070, '2022-01-29', 7465, 52410, 3654, 45343, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55071, '2022-01-29', 1841, 52411, 3654, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55072, '2022-01-29', 1840, 52412, 3654, 48008, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '92.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55073, '2022-01-29', 7657, 52413, 3654, NULL, '1.0000', '-20.7289', '-20.7289', '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 (55074, '2022-01-29', 9715, 52414, 3654, 49277, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55075, '2022-01-29', 7674, 52415, 3654, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55076, '2022-01-29', 8132, 52416, 3654, NULL, '1.0000', '4.7200', '4.7200', '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 (55077, '2022-01-29', 3022, 52417, 3654, 46226, '1.0000', '4.2199', '4.2199', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55078, '2022-01-29', 9736, 52418, 3654, 46927, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55079, '2022-01-29', 1884, 52419, 3654, 45321, '1.0000', '5.5994', '5.5994', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55080, '2022-01-29', 7675, 52420, 3654, NULL, '1.0000', '37.2865', '37.2865', '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 (55081, '2022-01-29', 1571, 52421, 3654, 39595, '10.0000', '43.6688', '43.6688', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55082, '2022-01-29', 8686, 52422, 3654, 48332, '1.0000', '6.8583', '6.8583', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55083, '2022-01-29', 7709, 52423, 3654, NULL, '2.0000', '46.8129', '46.8129', '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 (55084, '2022-01-29', 2673, 52424, 3654, 45793, '1.0000', '17.0000', '17.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55085, '2022-01-29', 7591, 52425, 3654, 47915, '1.0000', '2.7500', '2.7500', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55086, '2022-01-29', 7591, 52425, 3654, NULL, '1.0000', '2.7500', '2.7500', '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 (55087, '2022-01-29', 7428, 52426, 3654, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55088, '2022-01-29', 8608, 52427, 3654, NULL, '1.0000', '5.7400', '5.7400', '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 (55089, '2022-01-29', 9337, 52428, 3654, 48301, '1.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55090, '2022-01-29', 7991, 52429, 3654, NULL, '1.0000', '26.5700', '26.5700', '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 (55091, '2022-01-29', 7778, 52430, 3654, NULL, '1.0000', '17.8220', '17.8220', '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 (55092, '2022-01-29', 7907, 52431, 3654, NULL, '1.0000', '12.0000', '12.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 (55093, '2022-01-29', 8203, 52432, 3654, NULL, '1.0000', '2.3282', '2.3282', '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 (55094, '2022-01-29', 7671, 52433, 3654, NULL, '1.0000', '76.3606', '76.3606', '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 (55095, '2022-01-29', 7674, 52434, 3654, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55096, '2022-01-29', 8203, 52435, 3654, NULL, '10.0000', '2.3282', '2.3282', '0.5000', '0.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 (55097, '2022-01-29', 1592, 52436, 3655, 46733, '1.0000', '34.2121', '34.2121', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55098, '2022-01-29', 8982, 52437, 3655, 44037, '1.0000', '8.0140', '8.0140', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55099, '2022-01-29', 3017, 52438, 3655, 49539, '2.0000', '3.9000', '3.9000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55100, '2022-01-29', 2487, 52439, 3655, 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 (55101, '2022-01-29', 2643, 52440, 3655, 44038, '2.0000', '0.8700', '0.8700', '1.2000', '1.2000', '21.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55102, '2022-01-29', 2437, 52441, 3655, 44491, '1.0000', '88.0000', '88.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55103, '2022-01-29', 1504, 52442, 3655, 49558, '10.0000', '2.5896', '2.5896', '2.4000', '2.4000', '50.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55104, '2022-01-29', 7753, 52443, 3655, NULL, '1.0000', '3.1400', '3.1400', '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 (55105, '2022-01-29', 2511, 52444, 3655, 49526, '1.0000', '8.8545', '8.8545', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55106, '2022-01-29', 1828, 52445, 3655, 33003, '2.0000', '0.7300', '0.7300', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55107, '2022-01-29', 2169, 52446, 3655, 46750, '2.0000', '1.1531', '1.1531', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55108, '2022-01-29', 1334, 52447, 3655, 3373, '1.0000', '0.7000', '0.7000', '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 (55109, '2022-01-29', 9579, 52448, 3655, 47855, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 349);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55110, '2022-01-29', 1585, 52449, 3655, 49072, '1.0000', '10.2467', '10.2467', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55111, '2022-01-29', 2354, 52450, 3655, 49042, '1.0000', '5.2900', '5.2900', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55112, '2022-01-29', 2560, 52451, 3655, 46949, '1.0000', '16.5716', '16.5716', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55113, '2022-01-29', 1425, 52452, 3655, 49167, '1.0000', '7.0340', '7.0340', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55114, '2022-01-29', 2315, 52453, 3655, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '201.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55115, '2022-01-29', 2135, 52454, 3655, 40580, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55116, '2022-01-29', 2302, 52455, 3655, 48759, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55117, '2022-01-29', 9734, 52456, 3655, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55118, '2022-01-29', 2167, 52457, 3656, NULL, '1.0000', '2.1310', '2.1310', '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 (55119, '2022-01-29', 1809, 52458, 3656, 49374, '1.0000', '10.0911', '10.0911', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55120, '2022-01-29', 2156, 52459, 3656, 19853, '1.0000', '3.2500', '3.2500', '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 (55121, '2022-01-29', 2315, 52460, 3656, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '262.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55122, '2022-01-29', 1999, 52461, 3656, 49625, '1.0000', '6.8730', '6.8730', '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 (55123, '2022-01-29', 1702, 52462, 3656, NULL, '1.0000', '14.9000', '14.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 (55124, '2022-01-29', 7482, 52463, 3656, NULL, '1.0000', '2.8136', '2.8136', '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 (55125, '2022-01-29', 1839, 52464, 3656, NULL, '1.0000', '-9.7683', '-9.7683', '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 (55126, '2022-01-29', 1502, 52465, 3656, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '29.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55127, '2022-01-29', 2277, 52466, 3656, 43261, '1.0000', '0.9399', '0.9399', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55128, '2022-01-29', 2277, 52466, 3656, NULL, '1.0000', '0.9399', '0.9399', '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 (55129, '2022-01-29', 2623, 52467, 3656, NULL, '1.0000', '0.6000', '0.6000', '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 (55130, '2022-01-29', 9663, 52468, 3656, NULL, '1.0000', '18.0000', '18.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 (55131, '2022-01-29', 2891, 52469, 3656, 24957, '1.0000', '9.5000', '9.5000', '13.0000', '13.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 (55132, '2022-01-29', 8816, 52470, 3656, NULL, '1.0000', '18.0000', '18.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 (55133, '2022-01-29', 1590, 52471, 3656, 48900, '2.0000', '1.4454', '1.4454', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55134, '2022-01-29', 1499, 52472, 3656, 49347, '2.0000', '0.3411', '0.3411', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55135, '2022-01-29', 2037, 52473, 3656, 49613, '1.0000', '10.7500', '10.7500', '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 (55136, '2022-01-29', 2132, 52474, 3656, 22537, '1.0000', '21.0000', '21.0000', '24.0000', '24.0000', '3.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 (55137, '2022-01-29', 2315, 52475, 3656, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '262.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55138, '2022-01-29', 2695, 52476, 3656, NULL, '3.0000', '2.0000', '2.0000', '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 (55139, '2022-01-29', 2169, 52477, 3656, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55140, '2022-01-29', 8721, 52478, 3656, NULL, '1.0000', '3.0000', '3.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55141, '2022-01-29', 2315, 52479, 3656, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '262.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55142, '2022-01-29', 9529, 52480, 3656, NULL, '1.0000', '9.2200', '9.2200', '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 (55143, '2022-01-29', 2276, 52481, 3656, 34953, '1.0000', '55.1000', '55.1000', '73.0000', '73.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55144, '2022-01-29', 2346, 52482, 3656, NULL, '1.0000', '5.8000', '5.8000', '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 (55145, '2022-01-29', 7520, 52483, 3656, NULL, '1.0000', '9.6000', '9.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 (55146, '2022-01-29', 8149, 52484, 3656, 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 (55147, '2022-01-29', 2162, 52485, 3656, 23989, '1.0000', '6.5000', '6.5000', '8.5000', '8.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 (55148, '2022-01-29', 8000, 52486, 3656, NULL, '1.0000', '25.8200', '25.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 (55149, '2022-01-29', 3058, 52487, 3656, NULL, '1.0000', '2.3000', '2.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 (55150, '2022-01-29', 8355, 52488, 3656, NULL, '1.0000', '22.0000', '22.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 (55151, '2022-01-29', 7394, 52489, 3656, NULL, '2.0000', '12.7400', '12.7400', '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 (55152, '2022-01-29', 2411, 52490, 3656, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55153, '2022-01-29', 2283, 52491, 3656, 48600, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55154, '2022-01-29', 1542, 52492, 3656, 19389, '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 (55155, '2022-01-29', 2293, 52493, 3656, NULL, '2.0000', '-15.8931', '-15.8931', '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 (55156, '2022-01-29', 7905, 52494, 3656, NULL, '1.0000', '0.7000', '0.7000', '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 (55157, '2022-01-29', 8765, 52495, 3656, 45286, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55158, '2022-01-29', 2068, 52496, 3656, 48158, '1.0000', '11.8658', '11.8658', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55159, '2022-01-29', 9750, 52497, 3656, NULL, '1.0000', '3.3000', '3.3000', '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 (55160, '2022-01-29', 2280, 52498, 3656, NULL, '1.0000', '18.8857', '18.8857', '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 (55161, '2022-01-29', 1855, 52499, 3656, 48881, '2.0000', '1.5003', '1.5003', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55162, '2022-01-29', 1519, 52500, 3656, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55163, '2022-01-29', 1969, 52501, 3656, NULL, '1.0000', '4.3300', '4.3300', '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 (55164, '2022-01-29', 7482, 52502, 3656, NULL, '1.0000', '2.8136', '2.8136', '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 (55165, '2022-01-29', 7411, 52503, 3656, NULL, '1.0000', '1.3013', '1.3013', '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 (55166, '2022-01-29', 1665, 52504, 3656, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55167, '2022-01-29', 2169, 52505, 3656, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55168, '2022-01-29', 1564, 52506, 3656, NULL, '1.0000', '2.4842', '2.4842', '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 (55169, '2022-01-29', 1425, 52507, 3656, NULL, '1.0000', '5.0176', '5.0176', '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 (55170, '2022-01-29', 1590, 52508, 3656, 48900, '1.0000', '1.4454', '1.4454', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55171, '2022-01-29', 7318, 52509, 3656, 48729, '1.0000', '10.5283', '10.5283', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55172, '2022-01-29', 7927, 52510, 3656, NULL, '1.0000', '11.7000', '11.7000', '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 (55173, '2022-01-29', 1621, 52511, 3656, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '38.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55174, '2022-01-29', 9482, 52512, 3656, 32547, '4.0000', '0.5000', '0.5000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55175, '2022-01-29', 7743, 52513, 3656, NULL, '1.0000', '7.3900', '7.3900', '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 (55176, '2022-01-29', 1956, 52514, 3657, 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 (55177, '2022-01-29', 2068, 52515, 3658, 48158, '1.0000', '11.8658', '11.8658', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55178, '2022-01-29', 1574, 52516, 3658, 48648, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55179, '2022-01-29', 2255, 52517, 3658, 48508, '1.0000', '17.7288', '17.7288', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55180, '2022-01-29', 2255, 52517, 3658, 41399, '1.0000', '17.7288', '17.7288', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55181, '2022-01-29', 2906, 52518, 3659, 48118, '4.0000', '2.6000', '2.6000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55182, '2022-01-29', 8449, 52519, 3659, NULL, '1.0000', '11.9000', '11.9000', '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 (55183, '2022-01-29', 7588, 52520, 3659, NULL, '1.0000', '7.3387', '7.3387', '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 (55184, '2022-01-29', 7781, 52521, 3659, NULL, '3.0000', '4.2500', '4.2500', '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 (55185, '2022-01-29', 2295, 52522, 3659, 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 (55186, '2022-01-29', 7411, 52523, 3659, NULL, '1.0000', '1.3600', '1.3600', '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 (55187, '2022-01-29', 7741, 52524, 3659, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55188, '2022-01-29', 7643, 52525, 3659, NULL, '1.0000', '2.1100', '2.1100', '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 (55189, '2022-01-29', 8539, 52526, 3659, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '64.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55190, '2022-01-29', 7803, 52527, 3659, NULL, '1.0000', '1.8200', '1.8200', '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 (55191, '2022-01-29', 8053, 52528, 3659, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55192, '2022-01-29', 2435, 52529, 3659, NULL, '1.0000', '4.8000', '4.8000', '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 (55193, '2022-01-29', 9647, 52530, 3659, 43130, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55194, '2022-01-29', 8200, 52531, 3659, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (55195, '2022-01-29', 9734, 52532, 3659, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '118.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55196, '2022-01-29', 7675, 52533, 3659, NULL, '1.0000', '37.2865', '37.2865', '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 (55197, '2022-01-29', 7411, 52534, 3660, NULL, '2.0000', '1.3013', '1.3013', '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 (55198, '2022-01-29', 1602, 52535, 3660, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55199, '2022-01-30', 1501, 52536, 3661, NULL, '1.0000', '2.1784', '2.1784', '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 (55200, '2022-01-30', 8608, 52537, 3661, NULL, '1.0000', '0.9000', '0.9000', '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 (55201, '2022-01-30', 2989, 52538, 3661, 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 (55202, '2022-01-30', 2643, 52539, 3661, 49624, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '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 (55203, '2022-01-30', 8085, 52540, 3661, NULL, '3.0000', '14.0000', '14.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 (55204, '2022-01-30', 9109, 52541, 3661, 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 (55205, '2022-01-30', 9750, 52542, 3661, NULL, '1.0000', '3.3000', '3.3000', '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 (55206, '2022-01-30', 7531, 52543, 3661, 39811, '1.0000', '2.7209', '2.7209', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55207, '2022-01-30', 2768, 52544, 3661, 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 (55208, '2022-01-30', 2242, 52545, 3661, 48899, '3.0000', '4.6984', '4.6984', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55209, '2022-01-30', 2416, 52546, 3661, 49623, '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 (55210, '2022-01-30', 2635, 52547, 3661, 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 (55211, '2022-01-30', 2103, 52548, 3661, NULL, '2.0000', '0.4500', '0.4500', '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 (55212, '2022-01-30', 1314, 52549, 3661, 48145, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55213, '2022-01-30', 2315, 52550, 3661, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '259.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55214, '2022-01-30', 3053, 52551, 3661, 49645, '4.0000', '29.6800', '29.6800', '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 (55215, '2022-01-30', 1856, 52552, 3661, NULL, '1.0000', '1.7723', '1.7723', '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 (55216, '2022-01-30', 3044, 52553, 3661, 25017, '3.0000', '0.4000', '0.4000', '0.5000', '0.5000', '40.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 (55217, '2022-01-30', 1612, 52554, 3661, 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 (55218, '2022-01-30', 2103, 52555, 3661, 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 (55219, '2022-01-30', 1793, 52556, 3661, 34923, '1.0000', '18.0667', '18.0667', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55220, '2022-01-30', 1935, 52557, 3661, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55221, '2022-01-30', 2393, 52558, 3661, 48949, '1.0000', '4.0019', '4.0019', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55222, '2022-01-30', 1748, 52559, 3661, NULL, '2.0000', '0.3200', '0.3200', '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 (55223, '2022-01-30', 1410, 52560, 3661, NULL, '1.0000', '1.8562', '1.8562', '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 (55224, '2022-01-30', 2315, 52561, 3661, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '259.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55225, '2022-01-30', 2280, 52562, 3661, NULL, '1.0000', '18.8857', '18.8857', '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 (55226, '2022-01-30', 2633, 52563, 3661, 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 (55227, '2022-01-30', 2315, 52564, 3661, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '259.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55228, '2022-01-30', 2223, 52565, 3661, NULL, '1.0000', '10.7140', '10.7140', '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 (55229, '2022-01-30', 2229, 52566, 3661, 49418, '1.0000', '26.0000', '26.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55230, '2022-01-30', 7482, 52567, 3661, NULL, '1.0000', '2.8136', '2.8136', '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 (55231, '2022-01-30', 8677, 52568, 3661, NULL, '2.0000', '292.4641', '292.4641', '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 (55232, '2022-01-30', 1946, 52569, 3661, NULL, '1.0000', '1.5500', '1.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 (55233, '2022-01-30', 2354, 52570, 3662, NULL, '1.0000', '5.0600', '5.0600', '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 (55234, '2022-01-30', 8444, 52571, 3662, 49349, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55235, '2022-01-30', 9775, 52572, 3662, NULL, '1.0000', '7.9000', '7.9000', '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 (55236, '2022-01-30', 1734, 52573, 3662, 48174, '1.0000', '14.9800', '14.9800', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55237, '2022-01-30', 2169, 52574, 3662, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55238, '2022-01-30', 1935, 52575, 3662, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55239, '2022-01-30', 8454, 52576, 3662, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55240, '2022-01-30', 9399, 52577, 3663, NULL, '1.0000', '0.9800', '0.9800', '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 (55241, '2022-01-30', 2444, 52578, 3663, 5314, '-5.0000', '6.0000', '6.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 (55242, '2022-01-30', 2444, 52578, 3663, NULL, '6.0000', '6.0000', '6.0000', '12.0000', '12.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 (55243, '2022-01-30', 2642, 52579, 3663, 10573, '-9.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 (55244, '2022-01-30', 2642, 52579, 3663, NULL, '10.0000', '9.2000', '9.2000', '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 (55245, '2022-01-30', 1528, 52580, 3663, NULL, '1.0000', '38.6400', '38.6400', '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 (55246, '2022-01-30', 2360, 52581, 3663, 3862, '-53.0000', '0.5200', '0.5200', '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 (55247, '2022-01-30', 2360, 52581, 3663, NULL, '57.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55248, '2022-01-30', 2592, 52582, 3663, 10812, '-16.0000', '7.9670', '7.9670', '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 (55249, '2022-01-30', 2592, 52582, 3663, NULL, '17.0000', '7.9670', '7.9670', '12.0000', '12.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 (55250, '2022-01-30', 2503, 52583, 3663, 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 (55251, '2022-01-30', 7318, 52584, 3663, NULL, '1.0000', '13.4400', '13.4400', '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 (55252, '2022-01-30', 1825, 52585, 3663, 11265, '-9.0000', '4.8000', '4.8000', '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 (55253, '2022-01-30', 1825, 52585, 3663, NULL, '10.0000', '4.8000', '4.8000', '7.0000', '7.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 (55254, '2022-01-30', 2237, 52586, 3663, 2781, '-34.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 (55255, '2022-01-30', 2237, 52586, 3663, NULL, '35.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55256, '2022-01-30', 1340, 52587, 3663, 13005, '-1.0000', '2.7025', '2.7025', '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 (55257, '2022-01-30', 1340, 52587, 3663, NULL, '2.0000', '2.7025', '2.7025', '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 (55258, '2022-01-30', 1904, 52588, 3663, 5442, '-27.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 (55259, '2022-01-30', 1904, 52588, 3663, NULL, '28.0000', '0.3200', '0.3200', '1.0000', '1.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 (55260, '2022-01-30', 9634, 52589, 3663, 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 (55261, '2022-01-30', 2317, 52590, 3663, 3473, '-1.0000', '15.0000', '15.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 (55262, '2022-01-30', 2317, 52590, 3663, 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 (55263, '2022-01-30', 1602, 52591, 3663, 5897, '-100.0000', '6.7859', '6.7859', '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 (55264, '2022-01-30', 1602, 52591, 3663, NULL, '101.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55265, '2022-01-30', 1884, 52592, 3663, 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 (55266, '2022-01-30', 1513, 52593, 3663, 10888, '-4.0000', '11.9600', '11.9600', '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 (55267, '2022-01-30', 1513, 52593, 3663, NULL, '5.0000', '11.9600', '11.9600', '17.5000', '17.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 (55268, '2022-01-30', 2991, 52594, 3663, NULL, '1.0000', '0.5700', '0.5700', '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 (55269, '2022-01-30', 1665, 52595, 3663, 3235, '-65.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 (55270, '2022-01-30', 1665, 52595, 3663, NULL, '67.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55271, '2022-01-30', 9750, 52596, 3663, NULL, '2.0000', '3.3000', '3.3000', '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 (55272, '2022-01-30', 7411, 52597, 3663, NULL, '3.0000', '1.3500', '1.3500', '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 (55273, '2022-01-30', 1334, 52598, 3663, 230, '1.0000', '0.7000', '0.7000', '2.0000', '2.0000', '7.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 (55274, '2022-01-30', 2604, 52599, 3663, 14491, '-8.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55275, '2022-01-30', 2604, 52599, 3663, NULL, '9.0000', '90.0000', '90.0000', '110.0000', '110.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 (55276, '2022-01-30', 7411, 52600, 3663, NULL, '1.0000', '1.3500', '1.3500', '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 (55277, '2022-01-30', 9665, 52601, 3664, 42088, '1.0000', '30.7500', '30.7500', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55278, '2022-01-30', 1628, 52602, 3664, 48711, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55279, '2022-01-30', 2169, 52603, 3664, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '90.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55280, '2022-01-30', 1564, 52604, 3664, NULL, '10.0000', '2.4842', '2.4842', '4.0000', '4.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 (55281, '2022-01-30', 1580, 52605, 3664, 48178, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55282, '2022-01-30', 2411, 52606, 3664, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55283, '2022-01-30', 2315, 52607, 3664, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '255.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55284, '2022-01-30', 2221, 52608, 3664, 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 (55285, '2022-01-30', 2340, 52609, 3664, 49311, '1.0000', '7.4200', '7.4200', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55286, '2022-01-30', 7741, 52610, 3664, NULL, '1.0000', '1.2000', '1.2000', '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 (55287, '2022-01-30', 2280, 52611, 3664, NULL, '1.0000', '18.8857', '18.8857', '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 (55288, '2022-01-30', 9762, 52612, 3664, 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 (55289, '2022-01-30', 2037, 52613, 3664, 49613, '1.0000', '10.7500', '10.7500', '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 (55290, '2022-01-30', 1313, 52614, 3664, 39906, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55291, '2022-01-30', 1394, 52615, 3665, 48995, '1.0000', '7.8985', '7.8985', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55292, '2022-01-30', 2109, 52616, 3665, 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 (55293, '2022-01-30', 8556, 52617, 3665, NULL, '1.0000', '6.0000', '6.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 (55294, '2022-01-30', 8101, 52618, 3665, NULL, '1.0000', '21.7000', '21.7000', '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 (55295, '2022-01-30', 1819, 52619, 3665, 48617, '1.0000', '5.4939', '5.4939', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55296, '2022-01-30', 1499, 52620, 3666, 20585, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '5.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 (55297, '2022-01-30', 1506, 52621, 3666, 18908, '1.0000', '16.2500', '16.2500', '21.0000', '21.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 (55298, '2022-01-30', 2858, 52622, 3666, 17772, '-41.0000', '1.0000', '1.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 (55299, '2022-01-30', 2858, 52622, 3666, NULL, '42.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55300, '2022-01-30', 1812, 52623, 3666, 8224, '-63.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 (55301, '2022-01-30', 1812, 52623, 3666, NULL, '64.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55302, '2022-01-30', 1780, 52624, 3666, 3867, '-2.0000', '18.7146', '18.7146', '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 (55303, '2022-01-30', 1780, 52624, 3666, NULL, '3.0000', '18.7146', '18.7146', '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 (55304, '2022-01-30', 1726, 52625, 3666, NULL, '1.0000', '90.0000', '90.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 (55305, '2022-01-30', 9695, 52626, 3666, 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 (55306, '2022-01-30', 2315, 52627, 3666, 2735, '-150.0000', '0.3300', '0.3300', '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 (55307, '2022-01-30', 2315, 52627, 3666, NULL, '151.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-151.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55308, '2022-01-30', 1665, 52628, 3666, 3235, '-67.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 (55309, '2022-01-30', 1665, 52628, 3666, NULL, '69.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55310, '2022-01-30', 1602, 52629, 3667, 5897, '-101.0000', '6.7859', '6.7859', '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 (55311, '2022-01-30', 1602, 52629, 3667, NULL, '102.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-102.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55312, '2022-01-30', 2254, 52630, 3668, 33806, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55313, '2022-01-30', 1999, 52631, 3668, 6362, '-7.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 (55314, '2022-01-30', 1999, 52631, 3668, NULL, '8.0000', '6.0000', '6.0000', '8.0000', '8.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 (55315, '2022-01-30', 2109, 52632, 3668, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '79.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 (55316, '2022-01-30', 2108, 52633, 3668, 1052, '1.0000', '4.7500', '4.7500', '5.0000', '5.0000', '13.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 (55317, '2022-01-30', 7741, 52634, 3669, NULL, '1.0000', '1.2000', '1.2000', '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 (55318, '2022-01-30', 9482, 52635, 3669, 32547, '5.0000', '0.5000', '0.5000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55319, '2022-01-30', 1665, 52636, 3669, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55320, '2022-01-30', 2491, 52637, 3669, 49313, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55321, '2022-01-30', 7531, 52638, 3669, 39811, '1.0000', '2.7209', '2.7209', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55322, '2022-01-30', 2293, 52639, 3669, NULL, '3.0000', '-15.8931', '-15.8931', '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 (55323, '2022-01-30', 1602, 52640, 3669, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55324, '2022-01-30', 9695, 52641, 3669, 49617, '1.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 (55325, '2022-01-30', 7335, 52642, 3670, NULL, '1.0000', '4.4067', '4.4067', '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 (55326, '2022-01-30', 7954, 52643, 3670, NULL, '1.0000', '24.4161', '24.4161', '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 (55327, '2022-01-30', 9620, 52644, 3670, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55328, '2022-01-30', 7518, 52645, 3670, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (55329, '2022-01-30', 2315, 52646, 3670, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '25.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55330, '2022-01-30', 9423, 52647, 3670, NULL, '1.0000', '1.6000', '1.6000', '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 (55331, '2022-01-30', 1764, 52648, 3670, 48060, '1.0000', '65.4708', '65.4708', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55332, '2022-01-30', 1337, 52649, 3670, 48105, '1.0000', '0.6544', '0.6544', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55333, '2022-01-30', 7412, 52650, 3670, NULL, '1.0000', '1.5200', '1.5200', '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 (55334, '2022-01-30', 7674, 52651, 3670, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '77.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55335, '2022-01-30', 9274, 52652, 3670, NULL, '1.0000', '3.5638', '3.5638', '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 (55336, '2022-01-30', 2248, 52653, 3670, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55337, '2022-01-30', 7666, 52654, 3670, NULL, '1.0000', '-1.5200', '-1.5200', '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 (55338, '2022-01-30', 7524, 52655, 3670, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55339, '2022-01-30', 9726, 52656, 3670, 46155, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55340, '2022-01-30', 8915, 52657, 3670, NULL, '1.0000', '36.9667', '36.9667', '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 (55341, '2022-01-30', 7736, 52658, 3670, NULL, '1.0000', '10.0928', '10.0928', '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 (55342, '2022-01-30', 7472, 52659, 3670, NULL, '1.0000', '1.1694', '1.1694', '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 (55343, '2022-01-30', 7459, 52660, 3670, NULL, '4.0000', '467.7123', '467.7123', '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 (55344, '2022-01-30', 7385, 52661, 3670, 45811, '1.0000', '-29.7430', '-29.7430', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55345, '2022-01-30', 8608, 52662, 3670, NULL, '1.0000', '5.7400', '5.7400', '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 (55346, '2022-01-30', 8596, 52663, 3670, NULL, '1.0000', '17.0000', '17.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 (55347, '2022-01-30', 7621, 52664, 3670, 44735, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55348, '2022-01-30', 7453, 52665, 3670, NULL, '1.0000', '11.3750', '11.3750', '28.5000', '28.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55349, '2022-01-30', 7651, 52666, 3670, NULL, '1.0000', '2.7641', '2.7641', '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 (55350, '2022-01-30', 9272, 52667, 3670, NULL, '1.0000', '3.1000', '3.1000', '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 (55351, '2022-01-30', 2255, 52668, 3670, NULL, '1.0000', '17.4900', '17.4900', '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 (55352, '2022-01-30', 7630, 52669, 3670, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (55353, '2022-01-30', 1908, 52670, 3670, NULL, '2.0000', '1.7500', '1.7500', '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 (55354, '2022-01-30', 7473, 52671, 3670, NULL, '5.0000', '104.1526', '104.1526', '0.6000', '0.6000', '-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 (55355, '2022-01-30', 7703, 52672, 3670, NULL, '1.0000', '102.7757', '102.7757', '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 (55356, '2022-01-30', 7518, 52673, 3670, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (55357, '2022-01-30', 7641, 52674, 3670, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55358, '2022-01-30', 8454, 52675, 3670, 45779, '1.0000', '5.1700', '5.1700', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55359, '2022-01-30', 9092, 52676, 3670, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '113.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55360, '2022-01-30', 2269, 52677, 3670, 44353, '1.0000', '5.5010', '5.5010', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55361, '2022-01-30', 1498, 52678, 3670, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '69.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55362, '2022-01-30', 2315, 52679, 3670, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '26.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55363, '2022-01-30', 8359, 52680, 3670, 49451, '1.0000', '-3070.2788', '-3070.2788', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55364, '2022-01-30', 7411, 52681, 3670, NULL, '1.0000', '1.3600', '1.3600', '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 (55365, '2022-01-30', 7674, 52682, 3670, 49267, '5.0000', '70.5643', '70.5643', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55366, '2022-01-30', 7473, 52683, 3670, NULL, '1.0000', '104.1526', '104.1526', '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 (55367, '2022-01-30', 7317, 52684, 3670, 46664, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55368, '2022-01-30', 7671, 52685, 3670, NULL, '3.0000', '76.3606', '76.3606', '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 (55369, '2022-01-30', 7444, 52686, 3670, NULL, '1.0000', '2.0190', '2.0190', '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 (55370, '2022-01-30', 7672, 52687, 3670, NULL, '1.0000', '3.8200', '3.8200', '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 (55371, '2022-01-30', 7652, 52688, 3670, NULL, '10.0000', '343.2872', '343.2872', '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 (55372, '2022-01-30', 1841, 52689, 3670, 48007, '3.0000', '0.1792', '0.1792', '0.5000', '0.5000', '78.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55373, '2022-01-30', 2414, 52690, 3670, NULL, '2.0000', '3.4000', '3.4000', '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 (55374, '2022-01-30', 8105, 52691, 3670, NULL, '1.0000', '17.7033', '17.7033', '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 (55375, '2022-01-30', 1501, 52692, 3670, NULL, '1.0000', '2.2365', '2.2365', '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 (55376, '2022-01-30', 9643, 52693, 3670, 43126, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55377, '2022-01-30', 2163, 52694, 3670, 36071, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55378, '2022-01-30', 7518, 52695, 3670, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (55379, '2022-01-30', 7411, 52696, 3670, NULL, '1.0000', '1.3600', '1.3600', '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 (55380, '2022-01-30', 7673, 52697, 3670, NULL, '1.0000', '15.9274', '15.9274', '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 (55381, '2022-01-30', 7980, 52698, 3670, NULL, '3.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (55382, '2022-01-30', 7638, 52699, 3670, NULL, '1.0000', '12.8793', '12.8793', '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 (55383, '2022-01-30', 7612, 52700, 3670, NULL, '1.0000', '0.3870', '0.3870', '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 (55384, '2022-01-30', 8666, 52701, 3670, NULL, '1.0000', '0.4600', '0.4600', '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 (55385, '2022-01-30', 8608, 52702, 3670, NULL, '1.0000', '5.7400', '5.7400', '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 (55386, '2022-01-30', 7641, 52703, 3670, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55387, '2022-01-30', 2640, 52704, 3670, NULL, '1.0000', '7.0400', '7.0400', '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 (55388, '2022-01-30', 2289, 52705, 3670, NULL, '3.0000', '0.9629', '0.9629', '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 (55389, '2022-01-30', 7411, 52706, 3670, NULL, '2.0000', '1.3600', '1.3600', '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 (55390, '2022-01-30', 8098, 52707, 3670, 48345, '1.0000', '5.5694', '5.5694', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55391, '2022-01-30', 8015, 52708, 3670, 46231, '5.0000', '2.6039', '2.6039', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55392, '2022-01-30', 8038, 52709, 3670, 45808, '1.0000', '6.7600', '6.7600', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55393, '2022-01-30', 7478, 52710, 3670, 46236, '5.0000', '4.0000', '4.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55394, '2022-01-30', 9729, 52711, 3670, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55395, '2022-01-30', 8810, 52712, 3670, NULL, '1.0000', '2.5002', '2.5002', '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 (55396, '2022-01-30', 9409, 52713, 3670, NULL, '1.0000', '5.6784', '5.6784', '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 (55397, '2022-01-30', 8061, 52714, 3670, NULL, '1.0000', '-5.4000', '-5.4000', '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 (55398, '2022-01-30', 2351, 52715, 3670, 46700, '1.0000', '17.0375', '17.0375', '27.5000', '27.5000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55399, '2022-01-30', 1639, 52716, 3670, 44354, '1.0000', '7.3300', '7.3300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55400, '2022-01-30', 2989, 52717, 3671, 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 (55401, '2022-01-30', 2015, 52718, 3671, 42644, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55402, '2022-01-30', 9631, 52719, 3671, 48514, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55403, '2022-01-30', 7550, 52720, 3671, NULL, '20.0000', '4.7300', '4.7300', '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 (55404, '2022-01-30', 1700, 52721, 3671, 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 (55405, '2022-01-30', 1564, 52722, 3672, NULL, '2.0000', '2.4842', '2.4842', '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 (55406, '2022-01-30', 1863, 52723, 3672, 48719, '3.0000', '1.3601', '1.3601', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55407, '2022-01-30', 1667, 52724, 3673, 49364, '1.0000', '13.0832', '13.0832', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55408, '2022-01-30', 1715, 52725, 3673, 48633, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55409, '2022-01-30', 1564, 52726, 3673, NULL, '2.0000', '2.4842', '2.4842', '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 (55410, '2022-01-30', 7324, 52727, 3674, NULL, '3.0000', '4.0000', '4.0000', '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 (55411, '2022-01-30', 2642, 52728, 3674, 10573, '-10.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 (55412, '2022-01-30', 2642, 52728, 3674, NULL, '11.0000', '9.2000', '9.2000', '12.0000', '12.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 (55413, '2022-01-30', 7630, 52729, 3674, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (55414, '2022-01-30', 7947, 52730, 3674, NULL, '1.0000', '14.4400', '14.4400', '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 (55415, '2022-01-30', 9463, 52731, 3675, NULL, '1.0000', '7.5000', '7.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 (55416, '2022-01-30', 1562, 52732, 3675, 49515, '1.0000', '5.5300', '5.5300', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 382);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55417, '2022-01-30', 2346, 52733, 3675, NULL, '1.0000', '5.8000', '5.8000', '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 (55418, '2022-01-30', 1640, 52734, 3675, 47119, '1.0000', '3.0496', '3.0496', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55419, '2022-01-31', 1908, 52735, 3676, 48495, '1.0000', '0.9032', '0.9032', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55420, '2022-01-31', 2088, 52736, 3676, NULL, '1.0000', '-1.0956', '-1.0956', '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 (55421, '2022-01-31', 2167, 52737, 3676, NULL, '2.0000', '2.1310', '2.1310', '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 (55422, '2022-01-31', 8677, 52738, 3676, NULL, '2.0000', '292.4641', '292.4641', '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 (55423, '2022-01-31', 2237, 52739, 3676, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55424, '2022-01-31', 2257, 52740, 3676, NULL, '2.0000', '4.0000', '4.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 (55425, '2022-01-31', 2337, 52741, 3676, NULL, '1.0000', '51.0000', '51.0000', '71.5000', '71.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55426, '2022-01-31', 1606, 52742, 3676, 37773, '6.0000', '4.9200', '4.9200', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55427, '2022-01-31', 1498, 52743, 3676, 19871, '2.0000', '0.3300', '0.3300', '0.6000', '0.6000', '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 (55428, '2022-01-31', 2315, 52744, 3676, 49255, '10.0000', '0.4851', '0.4851', '0.8000', '0.8000', '245.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55429, '2022-01-31', 1523, 52745, 3676, NULL, '1.0000', '1.0061', '1.0061', '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 (55430, '2022-01-31', 9503, 52746, 3676, 33350, '3.0000', '24.1775', '24.1775', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55431, '2022-01-31', 2236, 52747, 3676, NULL, '1.0000', '9.3108', '9.3108', '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 (55432, '2022-01-31', 2864, 52748, 3676, 43265, '2.0000', '1.5150', '1.5150', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55433, '2022-01-31', 2085, 52749, 3676, 43264, '2.0000', '3.1057', '3.1057', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55434, '2022-01-31', 2154, 52750, 3676, 44166, '2.0000', '10.8030', '10.8030', '14.5200', '14.5200', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55435, '2022-01-31', 1647, 52751, 3676, NULL, '1.0000', '5.0700', '5.0700', '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 (55436, '2022-01-31', 7911, 52752, 3676, NULL, '1.0000', '4.3700', '4.3700', '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 (55437, '2022-01-31', 2167, 52753, 3676, NULL, '1.0000', '2.1310', '2.1310', '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 (55438, '2022-01-31', 1394, 52754, 3676, 48995, '1.0000', '7.8985', '7.8985', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55439, '2022-01-31', 1665, 52755, 3676, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55440, '2022-01-31', 1577, 52756, 3676, NULL, '1.0000', '2.3271', '2.3271', '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 (55441, '2022-01-31', 2083, 52757, 3677, 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 (55442, '2022-01-31', 2296, 52758, 3677, NULL, '1.0000', '13.2900', '13.2900', '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 (55443, '2022-01-31', 7684, 52759, 3677, NULL, '2.0000', '9.0000', '9.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 (55444, '2022-01-31', 1450, 52760, 3677, 24966, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '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 (55445, '2022-01-31', 1523, 52761, 3677, NULL, '1.0000', '1.0061', '1.0061', '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 (55446, '2022-01-31', 1580, 52762, 3677, 48178, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55447, '2022-01-31', 7790, 52763, 3677, NULL, '1.0000', '17.0000', '17.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 (55448, '2022-01-31', 1580, 52764, 3678, 48178, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55449, '2022-01-31', 2293, 52765, 3678, NULL, '3.0000', '-15.8931', '-15.8931', '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 (55450, '2022-01-31', 8101, 52766, 3678, NULL, '2.0000', '21.7000', '21.7000', '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 (55451, '2022-01-31', 1499, 52767, 3678, 49347, '3.0000', '0.3411', '0.3411', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55452, '2022-01-31', 8183, 52768, 3679, NULL, '1.0000', '81.9100', '81.9100', '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 (55453, '2022-01-31', 2379, 52769, 3679, NULL, '1.0000', '1.0877', '1.0877', '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 (55454, '2022-01-31', 2167, 52770, 3679, NULL, '1.0000', '2.1310', '2.1310', '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 (55455, '2022-01-31', 9725, 52771, 3679, 47064, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55456, '2022-01-31', 7835, 52772, 3680, NULL, '1.0000', '27.0000', '27.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 (55457, '2022-01-31', 1332, 52773, 3681, 19335, '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 (55458, '2022-01-31', 1856, 52774, 3682, 44749, '1.0000', '-13.1783', '-13.1783', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55459, '2022-01-31', 7729, 52775, 3682, NULL, '1.0000', '13.0000', '13.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 (55460, '2022-01-31', 7675, 52776, 3682, NULL, '1.0000', '37.2865', '37.2865', '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 (55461, '2022-01-31', 7641, 52777, 3682, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55462, '2022-01-31', 7673, 52778, 3682, NULL, '1.0000', '15.9274', '15.9274', '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 (55463, '2022-01-31', 1841, 52779, 3682, 48007, '1.0000', '0.1792', '0.1792', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55464, '2022-01-31', 1840, 52780, 3682, 48008, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '91.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55465, '2022-01-31', 8062, 52781, 3682, NULL, '3.0000', '4.8200', '4.8200', '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 (55466, '2022-01-31', 8288, 52782, 3682, 48318, '3.0000', '1.1923', '1.1923', '1.8000', '1.8000', '1.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55467, '2022-01-31', 7490, 52783, 3682, 48291, '8.0000', '2.2657', '2.2657', '0.4000', '0.4000', '47.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55468, '2022-01-31', 8539, 52784, 3682, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '63.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55469, '2022-01-31', 8208, 52785, 3682, NULL, '4.0000', '33.0000', '33.0000', '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 (55470, '2022-01-31', 1840, 52786, 3682, 48008, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55471, '2022-01-31', 7638, 52787, 3682, NULL, '1.0000', '12.8793', '12.8793', '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 (55472, '2022-01-31', 7514, 52788, 3682, NULL, '1.0000', '65.8461', '65.8461', '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 (55473, '2022-01-31', 7974, 52789, 3682, 48823, '1.0000', '28.0000', '28.0000', '37.0000', '37.0000', '1.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55474, '2022-01-31', 9734, 52790, 3682, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '117.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55475, '2022-01-31', 2248, 52791, 3682, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55476, '2022-01-31', 7464, 52792, 3682, NULL, '1.0000', '-57.6000', '-57.6000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55477, '2022-01-31', 7491, 52793, 3682, 46186, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55478, '2022-01-31', 9786, 52794, 3682, 49663, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55479, '2022-01-31', 9337, 52795, 3682, 48301, '5.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55480, '2022-01-31', 9579, 52796, 3682, 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 (55481, '2022-01-31', 1908, 52797, 3682, NULL, '2.0000', '1.7500', '1.7500', '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 (55482, '2022-01-31', 7671, 52798, 3682, NULL, '1.0000', '76.3606', '76.3606', '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 (55483, '2022-01-31', 7317, 52799, 3682, 46664, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55484, '2022-01-31', 9784, 52800, 3682, 49662, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55485, '2022-01-31', 8766, 52801, 3682, NULL, '1.0000', '5.8000', '5.8000', '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 (55486, '2022-01-31', 8296, 52802, 3682, NULL, '1.0000', '112.3600', '112.3600', '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 (55487, '2022-01-31', 7514, 52803, 3682, NULL, '2.0000', '65.8461', '65.8461', '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 (55488, '2022-01-31', 7674, 52804, 3682, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55489, '2022-01-31', 7759, 52805, 3682, NULL, '3.0000', '19.5000', '19.5000', '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 (55490, '2022-01-31', 1806, 52806, 3682, NULL, '2.0000', '27.3200', '27.3200', '37.5000', '37.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 (55491, '2022-01-31', 7911, 52807, 3682, NULL, '1.0000', '4.3700', '4.3700', '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 (55492, '2022-01-31', 9556, 52808, 3682, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55493, '2022-01-31', 7674, 52809, 3682, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55494, '2022-01-31', 7459, 52810, 3682, NULL, '4.0000', '674.5400', '674.5400', '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 (55495, '2022-01-31', 2394, 52811, 3682, 38146, '2.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55496, '2022-01-31', 7428, 52812, 3682, 46632, '1.0000', '9.6296', '9.6296', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55497, '2022-01-31', 9740, 52813, 3682, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55498, '2022-01-31', 9734, 52814, 3682, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '116.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55499, '2022-01-31', 9578, 52815, 3682, NULL, '1.0000', '8.0000', '8.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 (55500, '2022-01-31', 7853, 52816, 3682, NULL, '1.0000', '2629.4761', '2629.4761', '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 (55501, '2022-01-31', 7496, 52817, 3682, NULL, '1.0000', '0.9600', '0.9600', '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 (55502, '2022-01-31', 7614, 52818, 3682, NULL, '1.0000', '50.7500', '50.7500', '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 (55503, '2022-01-31', 7848, 52819, 3682, NULL, '1.0000', '-17.3215', '-17.3215', '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 (55504, '2022-01-31', 9242, 52820, 3682, 48293, '1.0000', '24.2142', '24.2142', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55505, '2022-01-31', 7641, 52821, 3682, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55506, '2022-01-31', 2251, 52822, 3682, 45857, '1.0000', '11.7132', '11.7132', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55507, '2022-01-31', 2612, 52823, 3682, 47941, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55508, '2022-01-31', 1904, 52824, 3682, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55509, '2022-01-31', 7411, 52825, 3682, NULL, '1.0000', '1.3600', '1.3600', '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 (55510, '2022-01-31', 1578, 52826, 3682, 49287, '1.0000', '2.0643', '2.0643', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55511, '2022-01-31', 7507, 52827, 3682, NULL, '6.0000', '6.5000', '6.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 (55512, '2022-01-31', 7703, 52828, 3682, NULL, '10.0000', '102.7757', '102.7757', '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 (55513, '2022-01-31', 2699, 52829, 3682, 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 (55514, '2022-01-31', 7532, 52830, 3682, NULL, '1.0000', '1.9999', '1.9999', '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 (55515, '2022-01-31', 7707, 52831, 3682, NULL, '1.0000', '6.0018', '6.0018', '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 (55516, '2022-01-31', 7343, 52832, 3682, 29988, '1.0000', '47.1000', '47.1000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55517, '2022-01-31', 8137, 52833, 3682, NULL, '1.0000', '3.0000', '3.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 (55518, '2022-01-31', 1501, 52834, 3683, NULL, '2.0000', '2.1784', '2.1784', '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 (55519, '2022-01-31', 1602, 52835, 3684, 5897, '-102.0000', '6.7859', '6.7859', '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 (55520, '2022-01-31', 1602, 52835, 3684, NULL, '103.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55521, '2022-01-31', 2037, 52836, 3684, 6389, '-11.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55522, '2022-01-31', 2037, 52836, 3684, NULL, '12.0000', '10.5000', '10.5000', '14.0000', '14.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 (55523, '2022-01-31', 9578, 52837, 3684, NULL, '1.0000', '8.0000', '8.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 (55524, '2022-01-31', 2237, 52838, 3684, 2781, '-35.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 (55525, '2022-01-31', 2237, 52838, 3684, NULL, '36.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (55526, '2022-01-31', 1487, 52839, 3684, 1448, '-1.0000', '4.8700', '4.8700', '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 (55527, '2022-01-31', 1487, 52839, 3684, NULL, '2.0000', '4.8700', '4.8700', '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 (55528, '2022-01-31', 1644, 52840, 3684, 3216, '-3.0000', '33.8200', '33.8200', '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 (55529, '2022-01-31', 1644, 52840, 3684, NULL, '4.0000', '33.8200', '33.8200', '48.0000', '48.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 (55530, '2022-01-31', 8740, 52841, 3684, NULL, '1.0000', '2.0000', '2.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 (55531, '2022-01-31', 1945, 52842, 3684, 18023, '-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 (55532, '2022-01-31', 1945, 52842, 3684, 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 (55533, '2022-01-31', 1839, 52843, 3684, 8734, '-18.0000', '6.1500', '6.1500', '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 (55534, '2022-01-31', 1839, 52843, 3684, NULL, '19.0000', '6.1500', '6.1500', '10.5000', '10.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 (55535, '2022-01-31', 1498, 52844, 3684, 19685, '-6.0000', '0.3300', '0.3300', '0.6000', '0.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 (55536, '2022-01-31', 1498, 52844, 3684, NULL, '16.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (55537, '2022-01-31', 2408, 52845, 3684, 4497, '-2.0000', '9.3500', '9.3500', '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 (55538, '2022-01-31', 2408, 52845, 3684, NULL, '3.0000', '9.3500', '9.3500', '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 (55539, '2022-01-31', 1504, 52846, 3684, NULL, '10.0000', '1.5000', '1.5000', '2.4000', '2.4000', '-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 (55540, '2022-01-31', 1602, 52847, 3684, 5897, '-102.0000', '6.7859', '6.7859', '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 (55541, '2022-01-31', 1602, 52847, 3684, NULL, '103.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55542, '2022-01-31', 2237, 52848, 3684, 2781, '-35.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 (55543, '2022-01-31', 2237, 52848, 3684, NULL, '36.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-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 (55544, '2022-01-31', 3009, 52849, 3684, NULL, '2.0000', '22.0000', '22.0000', '14.5000', '14.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 (55545, '2022-01-31', 2891, 52850, 3684, 33803, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55546, '2022-01-31', 7411, 52851, 3684, NULL, '2.0000', '1.3500', '1.3500', '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 (55547, '2022-01-31', 2167, 52852, 3684, 17165, '-35.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 (55548, '2022-01-31', 2167, 52852, 3684, NULL, '36.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (55549, '2022-01-31', 9726, 52853, 3685, 46155, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55550, '2022-01-31', 1935, 52854, 3685, 45606, '1.0000', '28.7657', '28.7657', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55551, '2022-01-31', 7411, 52855, 3685, NULL, '2.0000', '1.3600', '1.3600', '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 (55552, '2022-01-31', 1580, 52856, 3685, 34522, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55553, '2022-01-31', 7708, 52857, 3685, NULL, '1.0000', '4.1860', '4.1860', '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 (55554, '2022-01-31', 7749, 52858, 3685, NULL, '1.0000', '20.0200', '20.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 (55555, '2022-01-31', 7409, 52859, 3685, 30031, '3.0000', '1.5627', '1.5627', '10.0000', '10.0000', '27.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55556, '2022-01-31', 8134, 52860, 3685, NULL, '1.0000', '5.2600', '5.2600', '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 (55557, '2022-01-31', 7411, 52861, 3685, NULL, '1.0000', '1.3600', '1.3600', '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 (55558, '2022-01-31', 7711, 52862, 3685, NULL, '1.0000', '-204.0169', '-204.0169', '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 (55559, '2022-01-31', 7675, 52863, 3685, NULL, '1.0000', '37.2865', '37.2865', '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 (55560, '2022-01-31', 8942, 52864, 3685, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55561, '2022-01-31', 1935, 52865, 3685, 45606, '1.0000', '28.7657', '28.7657', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55562, '2022-01-31', 7428, 52866, 3685, 46632, '2.0000', '9.6296', '9.6296', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55563, '2022-01-31', 7778, 52867, 3685, NULL, '1.0000', '17.8220', '17.8220', '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 (55564, '2022-01-31', 8135, 52868, 3685, NULL, '1.0000', '43.5453', '43.5453', '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 (55565, '2022-01-31', 7560, 52869, 3685, NULL, '1.0000', '-165127.7734', '-165127.7734', '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 (55566, '2022-01-31', 7411, 52870, 3685, NULL, '2.0000', '1.3600', '1.3600', '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 (55567, '2022-01-31', 8038, 52871, 3685, 45808, '1.0000', '6.7600', '6.7600', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55568, '2022-01-31', 9106, 52872, 3685, NULL, '1.0000', '5.3500', '5.3500', '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 (55569, '2022-01-31', 8135, 52873, 3685, NULL, '1.0000', '43.5453', '43.5453', '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 (55570, '2022-01-31', 7853, 52874, 3685, NULL, '1.0000', '2629.4761', '2629.4761', '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 (55571, '2022-01-31', 1728, 52875, 3685, 47950, '1.0000', '-95.4737', '-95.4737', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55572, '2022-01-31', 1590, 52876, 3685, 34520, '2.0000', '1.7112', '1.7112', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55573, '2022-01-31', 7411, 52877, 3685, NULL, '1.0000', '1.3600', '1.3600', '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 (55574, '2022-01-31', 9729, 52878, 3685, 46181, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55575, '2022-01-31', 1399, 52879, 3685, 45775, '1.0000', '16.4375', '16.4375', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55576, '2022-01-31', 1494, 52880, 3685, NULL, '1.0000', '4.3900', '4.3900', '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 (55577, '2022-01-31', 7482, 52881, 3685, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55578, '2022-01-31', 7518, 52882, 3685, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (55579, '2022-01-31', 8548, 52883, 3685, NULL, '1.0000', '12.0000', '12.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 (55580, '2022-01-31', 9337, 52884, 3685, 48301, '5.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55581, '2022-01-31', 2315, 52885, 3685, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '23.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55582, '2022-01-31', 2289, 52886, 3685, NULL, '8.0000', '0.9629', '0.9629', '0.5000', '0.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 (55583, '2022-01-31', 7736, 52887, 3685, NULL, '1.0000', '10.0928', '10.0928', '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 (55584, '2022-01-31', 8117, 52888, 3685, NULL, '1.0000', '1.5100', '1.5100', '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 (55585, '2022-01-31', 7741, 52889, 3685, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55586, '2022-01-31', 7658, 52890, 3685, 47945, '3.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55587, '2022-01-31', 9572, 52891, 3685, 44467, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55588, '2022-01-31', 9095, 52892, 3685, NULL, '2.0000', '9.7084', '9.7084', '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 (55589, '2022-01-31', 7354, 52893, 3685, NULL, '1.0000', '18.0000', '18.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 (55590, '2022-01-31', 8052, 52894, 3685, NULL, '1.0000', '27.7481', '27.7481', '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 (55591, '2022-01-31', 7928, 52895, 3685, NULL, '1.0000', '1.2000', '1.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 (55592, '2022-01-31', 7965, 52896, 3685, 46901, '12.0000', '5.6100', '5.6100', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55593, '2022-01-31', 7965, 52896, 3685, NULL, '2.0000', '5.6100', '5.6100', '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 (55594, '2022-01-31', 9300, 52897, 3685, 48861, '1.0000', '3.0968', '3.0968', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55595, '2022-01-31', 7428, 52898, 3685, 46632, '3.0000', '9.6296', '9.6296', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55596, '2022-01-31', 8608, 52899, 3685, NULL, '1.0000', '5.7400', '5.7400', '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 (55597, '2022-01-31', 9760, 52900, 3685, 46938, '1.0000', '1.1000', '1.1000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55598, '2022-01-31', 8539, 52901, 3685, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '62.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55599, '2022-01-31', 2295, 52902, 3685, NULL, '2.0000', '0.7000', '0.7000', '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 (55600, '2022-01-31', 8666, 52903, 3685, NULL, '1.0000', '0.4600', '0.4600', '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 (55601, '2022-01-31', 1871, 52904, 3686, NULL, '5.0000', '1.6959', '1.6959', '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 (55602, '2022-01-31', 2272, 52905, 3687, 46564, '1.0000', '5.8041', '5.8041', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55603, '2022-01-31', 1493, 52906, 3687, 49232, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55604, '2022-01-31', 2315, 52907, 3687, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '200.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55605, '2022-01-31', 2888, 52908, 3687, 17921, '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 (55606, '2022-01-31', 1532, 52909, 3687, 46593, '3.0000', '41.7946', '41.7946', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55607, '2022-01-31', 2135, 52910, 3687, 40580, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55608, '2022-01-31', 1806, 52911, 3687, 49146, '2.0000', '24.1806', '24.1806', '37.5000', '37.5000', '2.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55609, '2022-01-31', 1812, 52912, 3687, 49537, '1.0000', '7.9732', '7.9732', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55610, '2022-01-31', 1935, 52913, 3687, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55611, '2022-01-31', 9734, 52914, 3687, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55612, '2022-01-31', 2573, 52915, 3687, 7228, '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 (55613, '2022-01-31', 9399, 52916, 3687, 45139, '1.0000', '1.0422', '1.0422', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55614, '2022-01-31', 9160, 52917, 3687, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55615, '2022-01-31', 1840, 52918, 3687, NULL, '1.0000', '0.2400', '0.2400', '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 (55616, '2022-01-31', 1841, 52919, 3687, 44579, '1.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55617, '2022-01-31', 1904, 52920, 3687, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55618, '2022-01-31', 9734, 52921, 3687, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55619, '2022-01-31', 7350, 52922, 3688, NULL, '2.0000', '30.4000', '30.4000', '40.5000', '40.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 (55620, '2022-01-31', 7411, 52923, 3688, NULL, '1.0000', '1.3013', '1.3013', '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 (55621, '2022-01-31', 2821, 52924, 3688, NULL, '1.0000', '3.4701', '3.4701', '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 (55622, '2022-01-31', 1935, 52925, 3688, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55623, '2022-01-31', 2169, 52926, 3688, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55624, '2022-01-31', 7639, 52927, 3688, 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 (55625, '2022-01-31', 7419, 52928, 3688, NULL, '1.0000', '24.8900', '24.8900', '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 (55626, '2022-01-31', 1666, 52929, 3688, 49363, '1.0000', '2.7286', '2.7286', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55627, '2022-01-31', 1812, 52930, 3688, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55628, '2022-01-31', 1502, 52931, 3688, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '28.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55629, '2022-01-31', 1967, 52932, 3688, NULL, '1.0000', '20.0200', '20.0200', '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 (55630, '2022-01-31', 1760, 52933, 3688, NULL, '2.0000', '1.5900', '1.5900', '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 (55631, '2022-01-31', 9109, 52934, 3688, 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 (55632, '2022-01-31', 7411, 52935, 3688, NULL, '1.0000', '1.3013', '1.3013', '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 (55633, '2022-01-31', 1502, 52936, 3688, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '28.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55634, '2022-01-31', 1928, 52937, 3688, NULL, '1.0000', '5.3300', '5.3300', '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 (55635, '2022-01-31', 8657, 52938, 3688, NULL, '1.0000', '7.5200', '7.5200', '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 (55636, '2022-01-31', 7609, 52939, 3688, NULL, '1.0000', '4.3300', '4.3300', '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 (55637, '2022-01-31', 9337, 52940, 3688, NULL, '1.0000', '5.7200', '5.7200', '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 (55638, '2022-01-31', 2228, 52941, 3688, 49417, '1.0000', '27.0000', '27.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55639, '2022-01-31', 1665, 52942, 3688, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55640, '2022-01-31', 2169, 52943, 3688, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55641, '2022-01-31', 8677, 52944, 3688, NULL, '2.0000', '292.4641', '292.4641', '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 (55642, '2022-01-31', 7411, 52945, 3688, NULL, '1.0000', '1.3013', '1.3013', '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 (55643, '2022-01-31', 2143, 52946, 3688, 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 (55644, '2022-01-31', 2315, 52947, 3688, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '244.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55645, '2022-01-31', 2293, 52948, 3688, NULL, '2.0000', '-15.8931', '-15.8931', '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 (55646, '2022-01-31', 1947, 52949, 3688, 41417, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55647, '2022-01-31', 2541, 52950, 3688, 48961, '1.0000', '11.3875', '11.3875', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55648, '2022-01-31', 2274, 52951, 3688, 49315, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55649, '2022-01-31', 2272, 52952, 3688, NULL, '1.0000', '5.5000', '5.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 (55650, '2022-01-31', 7411, 52953, 3688, NULL, '1.0000', '1.3013', '1.3013', '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 (55651, '2022-01-31', 2135, 52954, 3688, 18930, '1.0000', '2.4732', '2.4732', '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 (55652, '2022-01-31', 1646, 52955, 3688, 49372, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55653, '2022-01-31', 7411, 52956, 3688, NULL, '1.0000', '1.3013', '1.3013', '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 (55654, '2022-01-31', 2315, 52957, 3688, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '244.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55655, '2022-01-31', 2237, 52958, 3688, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55656, '2022-01-31', 1446, 52959, 3688, 47088, '1.0000', '4.8156', '4.8156', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55657, '2022-01-31', 2169, 52960, 3688, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55658, '2022-01-31', 9762, 52961, 3688, 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 (55659, '2022-01-31', 1809, 52962, 3688, 49374, '1.0000', '10.0911', '10.0911', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55660, '2022-01-31', 7411, 52963, 3688, NULL, '1.0000', '1.3013', '1.3013', '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 (55661, '2022-01-31', 2221, 52964, 3688, 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 (55662, '2022-01-31', 1519, 52965, 3688, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55663, '2022-01-31', 1748, 52966, 3688, NULL, '1.0000', '0.3200', '0.3200', '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 (55664, '2022-01-31', 8203, 52967, 3688, NULL, '2.0000', '9.8000', '9.8000', '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 (55665, '2022-01-31', 3046, 52968, 3688, NULL, '1.0000', '5.4000', '5.4000', '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 (55666, '2022-01-31', 7414, 52969, 3688, NULL, '1.0000', '18.2100', '18.2100', '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 (55667, '2022-01-31', 1592, 52970, 3688, 48494, '1.0000', '34.1036', '34.1036', '47.0000', '47.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55668, '2022-01-31', 1564, 52971, 3688, NULL, '1.0000', '2.4842', '2.4842', '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 (55669, '2022-01-31', 1961, 52972, 3688, 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 (55670, '2022-01-31', 1678, 52973, 3688, 41377, '1.0000', '33.9300', '33.9300', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55671, '2022-01-31', 2864, 52974, 3688, 43265, '8.0000', '1.5150', '1.5150', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55672, '2022-01-31', 2649, 52975, 3688, 29629, '1.0000', '76.2400', '76.2400', '101.0000', '101.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55673, '2022-01-31', 9647, 52976, 3688, 41425, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55674, '2022-01-31', 2302, 52977, 3688, 48638, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55675, '2022-01-31', 2018, 52978, 3688, 44162, '1.0000', '18.0000', '18.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55676, '2022-01-31', 2440, 52979, 3688, 49680, '1.0000', '6.6029', '6.6029', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55677, '2022-01-31', 1863, 52980, 3688, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55678, '2022-01-31', 8608, 52981, 3688, NULL, '1.0000', '0.9000', '0.9000', '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 (55679, '2022-01-31', 9416, 52982, 3688, 49675, '1.0000', '4.2857', '4.2857', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55680, '2022-01-31', 2908, 52983, 3688, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55681, '2022-01-31', 8677, 52984, 3688, NULL, '2.0000', '292.4641', '292.4641', '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 (55682, '2022-01-31', 9747, 52985, 3688, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55683, '2022-01-31', 7324, 52986, 3688, NULL, '2.0000', '4.0000', '4.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 (55684, '2022-01-31', 1519, 52987, 3688, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55685, '2022-01-31', 2277, 52988, 3688, NULL, '1.0000', '0.9399', '0.9399', '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 (55686, '2022-01-31', 7609, 52989, 3688, NULL, '1.0000', '4.3300', '4.3300', '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 (55687, '2022-01-31', 7684, 52990, 3688, NULL, '2.0000', '9.0000', '9.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 (55688, '2022-01-31', 8539, 52991, 3688, NULL, '3.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-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 (55689, '2022-01-31', 8155, 52992, 3688, NULL, '2.0000', '65.0000', '65.0000', '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 (55690, '2022-01-31', 2989, 52993, 3688, 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 (55691, '2022-01-31', 7641, 52994, 3688, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55692, '2022-01-31', 2315, 52995, 3688, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '244.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55693, '2022-01-31', 1574, 52996, 3689, 48648, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55694, '2022-01-31', 1519, 52997, 3689, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55695, '2022-01-31', 8155, 52998, 3689, NULL, '3.0000', '65.0000', '65.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 (55696, '2022-01-31', 1307, 52999, 3690, NULL, '1.0000', '0.6103', '0.6103', '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 (55697, '2022-01-31', 1337, 53000, 3691, 10809, '-10.0000', '2.0000', '2.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 (55698, '2022-01-31', 1337, 53000, 3691, NULL, '11.0000', '2.0000', '2.0000', '3.5000', '3.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 (55699, '2022-01-31', 2394, 53001, 3691, 4201, '-3.0000', '4.0000', '4.0000', '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 (55700, '2022-01-31', 2394, 53001, 3691, NULL, '4.0000', '4.0000', '4.0000', '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 (55701, '2022-01-31', 8714, 53002, 3691, NULL, '1.0000', '5.2100', '5.2100', '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 (55702, '2022-01-31', 7852, 53003, 3691, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55703, '2022-01-31', 7411, 53004, 3691, NULL, '1.0000', '1.3500', '1.3500', '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 (55704, '2022-01-31', 7514, 53005, 3691, NULL, '1.0000', '2.2500', '2.2500', '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 (55705, '2022-01-31', 2315, 53006, 3691, 2735, '-151.0000', '0.3300', '0.3300', '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 (55706, '2022-01-31', 2315, 53006, 3691, NULL, '152.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-152.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55707, '2022-01-31', 2229, 53007, 3691, 1704, '-3.0000', '24.5000', '24.5000', '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 (55708, '2022-01-31', 2229, 53007, 3691, NULL, '4.0000', '24.5000', '24.5000', '29.0000', '29.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 (55709, '2022-01-31', 7465, 53008, 3691, 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 (55710, '2022-01-31', 8077, 53009, 3691, 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 (55711, '2022-01-31', 7612, 53010, 3691, NULL, '1.0000', '1.7300', '1.7300', '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 (55712, '2022-01-31', 7872, 53011, 3691, 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 (55713, '2022-01-31', 7375, 53012, 3691, NULL, '10.0000', '3.9300', '3.9300', '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 (55714, '2022-01-31', 7774, 53013, 3691, NULL, '1.0000', '3.3000', '3.3000', '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 (55715, '2022-01-31', 8308, 53014, 3691, NULL, '1.0000', '2.0800', '2.0800', '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 (55716, '2022-01-31', 9095, 53015, 3691, NULL, '1.0000', '8.7600', '8.7600', '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 (55717, '2022-01-31', 8120, 53016, 3691, NULL, '1.0000', '33.0000', '33.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 (55718, '2022-01-31', 7560, 53017, 3691, NULL, '1.0000', '33.0200', '33.0200', '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 (55719, '2022-01-31', 8923, 53018, 3691, NULL, '1.0000', '7.2500', '7.2500', '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 (55720, '2022-01-31', 1875, 53019, 3691, 6949, '-33.0000', '2.4000', '2.4000', '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 (55721, '2022-01-31', 1875, 53019, 3691, NULL, '43.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-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 (55722, '2022-02-01', 8902, 53020, 3692, 49698, '1.0000', '16.4800', '16.4800', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 393);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55723, '2022-02-01', 8902, 53020, 3692, NULL, '1.0000', '16.4800', '16.4800', '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 (55724, '2022-02-01', 7367, 53021, 3692, 45809, '1.0000', '-29.5750', '-29.5750', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55725, '2022-02-01', 7709, 53022, 3692, NULL, '2.0000', '46.8129', '46.8129', '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 (55726, '2022-02-01', 1590, 53023, 3693, 48900, '1.0000', '1.4454', '1.4454', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55727, '2022-02-01', 2754, 53024, 3693, 18938, '1.0000', '0.0800', '0.0800', '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 (55728, '2022-02-01', 1702, 53025, 3693, NULL, '1.0000', '14.9000', '14.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 (55729, '2022-02-01', 1631, 53026, 3693, 39843, '1.0000', '37.8000', '37.8000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55730, '2022-02-01', 1806, 53027, 3693, 33130, '1.0000', '34.3245', '34.3245', '37.5000', '37.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55731, '2022-02-01', 1806, 53027, 3693, NULL, '1.0000', '34.3245', '34.3245', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55732, '2022-02-01', 2293, 53028, 3693, NULL, '3.0000', '-15.8931', '-15.8931', '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 (55733, '2022-02-01', 8744, 53029, 3693, 49674, '1.0000', '-0.5256', '-0.5256', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55734, '2022-02-01', 7406, 53030, 3693, NULL, '1.0000', '2.3750', '2.3750', '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 (55735, '2022-02-01', 1796, 53031, 3693, 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 (55736, '2022-02-01', 2699, 53032, 3693, 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 (55737, '2022-02-01', 2777, 53033, 3693, 49368, '1.0000', '2.6714', '2.6714', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55738, '2022-02-01', 2289, 53034, 3693, NULL, '2.0000', '0.3186', '0.3186', '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 (55739, '2022-02-01', 8208, 53035, 3693, NULL, '2.0000', '33.0000', '33.0000', '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 (55740, '2022-02-01', 2965, 53036, 3693, NULL, '1.0000', '5.8007', '5.8007', '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 (55741, '2022-02-01', 1901, 53037, 3693, NULL, '1.0000', '2.0100', '2.0100', '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 (55742, '2022-02-01', 1710, 53038, 3693, 48468, '1.0000', '3.4300', '3.4300', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55743, '2022-02-01', 2167, 53039, 3693, NULL, '1.0000', '2.1310', '2.1310', '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 (55744, '2022-02-01', 2643, 53040, 3693, 49624, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '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 (55745, '2022-02-01', 2167, 53041, 3693, NULL, '1.0000', '2.1310', '2.1310', '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 (55746, '2022-02-01', 2948, 53042, 3693, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55747, '2022-02-01', 2384, 53043, 3693, NULL, '1.0000', '0.1500', '0.1500', '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 (55748, '2022-02-01', 2989, 53044, 3693, 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 (55749, '2022-02-01', 2315, 53045, 3693, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '241.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55750, '2022-02-01', 1511, 53046, 3693, 13749, '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 (55751, '2022-02-01', 2237, 53047, 3693, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55752, '2022-02-01', 2655, 53048, 3693, 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 (55753, '2022-02-01', 9653, 53049, 3694, NULL, '2.0000', '46.0000', '46.0000', '60.0000', '60.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 (55754, '2022-02-01', 8040, 53050, 3695, 46216, '1.0000', '10.6400', '10.6400', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55755, '2022-02-01', 7848, 53051, 3695, NULL, '1.0000', '-17.3215', '-17.3215', '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 (55756, '2022-02-01', 7885, 53052, 3695, NULL, '1.0000', '-907.3013', '-907.3013', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55757, '2022-02-01', 8539, 53053, 3695, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '60.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55758, '2022-02-01', 7547, 53054, 3695, NULL, '4.0000', '0.0000', '0.0000', '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 (55759, '2022-02-01', 8132, 53055, 3695, NULL, '1.0000', '4.7200', '4.7200', '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 (55760, '2022-02-01', 7963, 53056, 3695, NULL, '1.0000', '-9.5000', '-9.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55761, '2022-02-01', 7641, 53057, 3695, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55762, '2022-02-01', 8352, 53058, 3695, NULL, '1.0000', '-153.7209', '-153.7209', '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 (55763, '2022-02-01', 2284, 53059, 3695, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55764, '2022-02-01', 8101, 53060, 3695, NULL, '1.0000', '21.7000', '21.7000', '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 (55765, '2022-02-01', 8677, 53061, 3695, NULL, '2.0000', '1.2300', '1.2300', '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 (55766, '2022-02-01', 7697, 53062, 3695, 45301, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55767, '2022-02-01', 9506, 53063, 3695, 33533, '1.0000', '4.9800', '4.9800', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55768, '2022-02-01', 7554, 53064, 3695, NULL, '10.0000', '1.6815', '1.6815', '2.2000', '2.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 (55769, '2022-02-01', 9094, 53065, 3695, NULL, '1.0000', '5.7002', '5.7002', '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 (55770, '2022-02-01', 8746, 53066, 3695, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55771, '2022-02-01', 1782, 53067, 3695, 46628, '3.0000', '-0.2748', '-0.2748', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55772, '2022-02-01', 7438, 53068, 3695, 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 (55773, '2022-02-01', 7576, 53069, 3695, NULL, '2.0000', '-11.8309', '-11.8309', '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 (55774, '2022-02-01', 8756, 53070, 3695, 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 (55775, '2022-02-01', 7411, 53071, 3695, NULL, '3.0000', '1.3600', '1.3600', '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 (55776, '2022-02-01', 7862, 53072, 3695, NULL, '1.0000', '17.8000', '17.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 (55777, '2022-02-01', 7809, 53073, 3695, NULL, '1.0000', '13.5000', '13.5000', '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 (55778, '2022-02-01', 8127, 53074, 3695, NULL, '1.0000', '24.5300', '24.5300', '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 (55779, '2022-02-01', 7872, 53075, 3695, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (55780, '2022-02-01', 1867, 53076, 3695, NULL, '1.0000', '10.6996', '10.6996', '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 (55781, '2022-02-01', 9784, 53077, 3695, 49662, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55782, '2022-02-01', 7707, 53078, 3695, NULL, '1.0000', '6.0018', '6.0018', '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 (55783, '2022-02-01', 1665, 53079, 3695, 49284, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55784, '2022-02-01', 1812, 53080, 3695, 47928, '1.0000', '7.9221', '7.9221', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55785, '2022-02-01', 7473, 53081, 3695, NULL, '2.0000', '104.1526', '104.1526', '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 (55786, '2022-02-01', 7952, 53082, 3695, NULL, '1.0000', '62.3792', '62.3792', '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 (55787, '2022-02-01', 7752, 53083, 3695, 48062, '1.0000', '2.4834', '2.4834', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55788, '2022-02-01', 1332, 53084, 3695, 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 (55789, '2022-02-01', 7757, 53085, 3695, NULL, '1.0000', '-74.3667', '-74.3667', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55790, '2022-02-01', 7560, 53086, 3695, NULL, '1.0000', '-165127.7734', '-165127.7734', '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 (55791, '2022-02-01', 8395, 53087, 3695, NULL, '1.0000', '0.9700', '0.9700', '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 (55792, '2022-02-01', 7905, 53088, 3696, NULL, '2.0000', '0.7000', '0.7000', '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 (55793, '2022-02-01', 9109, 53089, 3696, 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 (55794, '2022-02-01', 8187, 53090, 3696, NULL, '4.0000', '14.3900', '14.3900', '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 (55795, '2022-02-01', 9789, 53091, 3696, NULL, '10.0000', '0.3000', '0.3000', '0.5000', '0.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 (55796, '2022-02-01', 2315, 53092, 3696, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '240.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55797, '2022-02-01', 9109, 53093, 3696, 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 (55798, '2022-02-01', 8746, 53094, 3696, 49616, '2.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 (55799, '2022-02-01', 2643, 53095, 3696, 49624, '2.0000', '0.8700', '0.8700', '1.2000', '1.2000', '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 (55800, '2022-02-01', 9485, 53096, 3696, 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 (55801, '2022-02-01', 2713, 53097, 3697, 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 (55802, '2022-02-01', 8942, 53098, 3698, NULL, '1.0000', '4.4000', '4.4000', '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 (55803, '2022-02-01', 7740, 53099, 3698, NULL, '1.0000', '3.9500', '3.9500', '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 (55804, '2022-02-01', 7513, 53100, 3698, NULL, '1.0000', '7.1000', '7.1000', '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 (55805, '2022-02-01', 1804, 53101, 3699, 45306, '1.0000', '5.0938', '5.0938', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55806, '2022-02-01', 7678, 53102, 3699, NULL, '1.0000', '5.1400', '5.1400', '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 (55807, '2022-02-01', 7412, 53103, 3699, NULL, '1.0000', '1.5200', '1.5200', '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 (55808, '2022-02-01', 7532, 53104, 3699, NULL, '1.0000', '1.9999', '1.9999', '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 (55809, '2022-02-01', 2491, 53105, 3699, 37367, '1.0000', '-11.7996', '-11.7996', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55810, '2022-02-01', 7708, 53106, 3699, NULL, '1.0000', '4.1860', '4.1860', '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 (55811, '2022-02-01', 7507, 53107, 3699, NULL, '3.0000', '6.5000', '6.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 (55812, '2022-02-01', 2069, 53108, 3699, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '18.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55813, '2022-02-01', 2350, 53109, 3699, NULL, '1.0000', '15.9150', '15.9150', '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 (55814, '2022-02-01', 7588, 53110, 3699, NULL, '1.0000', '7.3387', '7.3387', '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 (55815, '2022-02-01', 7748, 53111, 3699, NULL, '1.0000', '519097.6932', '519097.6932', '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 (55816, '2022-02-01', 7598, 53112, 3699, NULL, '1.0000', '1.2800', '1.2800', '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 (55817, '2022-02-01', 8200, 53113, 3699, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (55818, '2022-02-01', 9416, 53114, 3699, 49433, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55819, '2022-02-01', 2015, 53115, 3699, 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 (55820, '2022-02-01', 1916, 53116, 3699, 46224, '1.0000', '9.3400', '9.3400', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55821, '2022-02-01', 8941, 53117, 3699, NULL, '1.0000', '12.0000', '12.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 (55822, '2022-02-01', 2295, 53118, 3699, 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 (55823, '2022-02-01', 7459, 53119, 3699, NULL, '10.0000', '674.5400', '674.5400', '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 (55824, '2022-02-01', 7703, 53120, 3699, NULL, '3.0000', '102.7757', '102.7757', '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 (55825, '2022-02-01', 8596, 53121, 3699, NULL, '1.0000', '17.0000', '17.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 (55826, '2022-02-01', 7779, 53122, 3699, NULL, '1.0000', '9.6790', '9.6790', '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 (55827, '2022-02-01', 7920, 53123, 3699, 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 (55828, '2022-02-01', 8972, 53124, 3699, NULL, '1.0000', '4.5000', '4.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 (55829, '2022-02-01', 9747, 53125, 3699, 46923, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55830, '2022-02-01', 7664, 53126, 3699, NULL, '1.0000', '6.7801', '6.7801', '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 (55831, '2022-02-01', 9299, 53127, 3699, NULL, '1.0000', '9.5000', '9.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 (55832, '2022-02-01', 7612, 53128, 3699, NULL, '1.0000', '0.3870', '0.3870', '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 (55833, '2022-02-01', 9736, 53129, 3699, 46927, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55834, '2022-02-01', 2753, 53130, 3699, 45602, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55835, '2022-02-01', 7411, 53131, 3699, NULL, '1.0000', '1.3600', '1.3600', '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 (55836, '2022-02-01', 1650, 53132, 3699, 48102, '1.0000', '15.2896', '15.2896', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55837, '2022-02-01', 7457, 53133, 3699, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '12.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55838, '2022-02-01', 7695, 53134, 3699, NULL, '1.0000', '3.9400', '3.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 (55839, '2022-02-01', 8866, 53135, 3699, 45784, '1.0000', '0.4300', '0.4300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55840, '2022-02-01', 7514, 53136, 3699, NULL, '1.0000', '65.8461', '65.8461', '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 (55841, '2022-02-01', 7825, 53137, 3699, NULL, '1.0000', '-9.1758', '-9.1758', '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 (55842, '2022-02-01', 2315, 53138, 3699, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '21.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55843, '2022-02-01', 7781, 53139, 3699, NULL, '6.0000', '4.2500', '4.2500', '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 (55844, '2022-02-01', 2289, 53140, 3699, NULL, '4.0000', '0.9629', '0.9629', '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 (55845, '2022-02-01', 7411, 53141, 3699, NULL, '1.0000', '1.3600', '1.3600', '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 (55846, '2022-02-01', 7622, 53142, 3699, NULL, '1.0000', '17.8100', '17.8100', '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 (55847, '2022-02-01', 8134, 53143, 3699, NULL, '2.0000', '5.2600', '5.2600', '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 (55848, '2022-02-01', 7848, 53144, 3699, NULL, '2.0000', '-17.3215', '-17.3215', '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 (55849, '2022-02-01', 2098, 53145, 3700, 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 (55850, '2022-02-01', 2694, 53146, 3700, 12283, '-4.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 (55851, '2022-02-01', 2694, 53146, 3700, NULL, '5.0000', '3.5000', '3.5000', '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 (55852, '2022-02-01', 2858, 53147, 3700, 17772, '-42.0000', '1.0000', '1.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 (55853, '2022-02-01', 2858, 53147, 3700, NULL, '43.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (55854, '2022-02-01', 1816, 53148, 3700, 22478, '-1.0000', '18.2300', '18.2300', '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 (55855, '2022-02-01', 1816, 53148, 3700, NULL, '2.0000', '18.2300', '18.2300', '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 (55856, '2022-02-01', 1493, 53149, 3700, 9747, '-13.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 (55857, '2022-02-01', 1493, 53149, 3700, NULL, '14.0000', '1.5425', '1.5425', '3.0000', '3.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 (55858, '2022-02-01', 8677, 53150, 3700, NULL, '2.0000', '1.2800', '1.2800', '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 (55859, '2022-02-01', 1339, 53151, 3700, 13004, '-6.0000', '1.6012', '1.6012', '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 (55860, '2022-02-01', 1339, 53151, 3700, NULL, '7.0000', '1.6012', '1.6012', '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 (55861, '2022-02-01', 3059, 53152, 3700, NULL, '5.0000', '0.4500', '0.4500', '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 (55862, '2022-02-01', 2451, 53153, 3700, 12922, '-2.0000', '10.3500', '10.3500', '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 (55863, '2022-02-01', 2451, 53153, 3700, NULL, '3.0000', '10.3500', '10.3500', '17.5000', '17.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 (55864, '2022-02-01', 7924, 53154, 3700, NULL, '1.0000', '4.7100', '4.7100', '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 (55865, '2022-02-01', 2379, 53155, 3700, 4032, '-41.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 (55866, '2022-02-01', 2379, 53155, 3700, NULL, '42.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55867, '2022-02-01', 2251, 53156, 3700, 2788, '-6.0000', '10.9700', '10.9700', '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 (55868, '2022-02-01', 2251, 53156, 3700, NULL, '7.0000', '10.9700', '10.9700', '16.0000', '16.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 (55869, '2022-02-01', 2592, 53157, 3700, 10812, '-17.0000', '7.9670', '7.9670', '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 (55870, '2022-02-01', 2592, 53157, 3700, NULL, '18.0000', '7.9670', '7.9670', '12.0000', '12.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 (55871, '2022-02-01', 2950, 53158, 3700, 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 (55872, '2022-02-01', 2169, 53159, 3700, 10737, '-27.0000', '3.8397', '3.8397', '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 (55873, '2022-02-01', 2169, 53159, 3700, NULL, '28.0000', '3.8397', '3.8397', '2.0000', '2.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 (55874, '2022-02-01', 1499, 53160, 3701, 45093, '1.0000', '0.4164', '0.4164', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55875, '2022-02-01', 2237, 53161, 3701, 46708, '1.0000', '1.4654', '1.4654', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55876, '2022-02-01', 2379, 53162, 3701, 46060, '1.0000', '1.8761', '1.8761', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55877, '2022-02-01', 2169, 53163, 3701, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55878, '2022-02-01', 2060, 53164, 3701, 45073, '1.0000', '0.6071', '0.6071', '0.8000', '0.8000', '247.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55879, '2022-02-01', 2169, 53165, 3701, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55880, '2022-02-01', 2858, 53166, 3701, 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 (55881, '2022-02-01', 2360, 53167, 3701, 49128, '9.0000', '0.5200', '0.5200', '0.8000', '0.8000', '29.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55882, '2022-02-01', 2916, 53168, 3701, 49229, '1.0000', '14.3789', '14.3789', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55883, '2022-02-01', 1812, 53169, 3701, 49537, '1.0000', '7.9732', '7.9732', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55884, '2022-02-01', 1493, 53170, 3701, 49232, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55885, '2022-02-01', 1502, 53171, 3701, 46563, '1.0000', '-13.4526', '-13.4526', '11.0000', '11.0000', '15.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55886, '2022-02-01', 2916, 53172, 3701, 49229, '1.0000', '14.3789', '14.3789', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55887, '2022-02-01', 1964, 53173, 3701, 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 (55888, '2022-02-01', 2092, 53174, 3701, 46775, '1.0000', '4.1161', '4.1161', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55889, '2022-02-01', 1863, 53175, 3701, 45136, '2.0000', '1.2570', '1.2570', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55890, '2022-02-01', 7496, 53176, 3701, NULL, '1.0000', '0.9600', '0.9600', '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 (55891, '2022-02-01', 2334, 53177, 3701, 40199, '1.0000', '16.0000', '16.0000', '29.5000', '29.5000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55892, '2022-02-01', 2379, 53178, 3701, 46060, '1.0000', '1.8761', '1.8761', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55893, '2022-02-01', 8517, 53179, 3702, 46592, '1.0000', '28.2341', '28.2341', '37.5000', '37.5000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55894, '2022-02-01', 3029, 53180, 3703, 49248, '1.0000', '6.5711', '6.5711', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55895, '2022-02-01', 7674, 53181, 3704, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55896, '2022-02-01', 7743, 53182, 3704, NULL, '1.0000', '419203.7668', '419203.7668', '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 (55897, '2022-02-01', 8596, 53183, 3704, NULL, '2.0000', '17.0000', '17.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 (55898, '2022-02-01', 7712, 53184, 3704, NULL, '1.0000', '-94.6722', '-94.6722', '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 (55899, '2022-02-01', 7628, 53185, 3705, NULL, '12.0000', '1.2071', '1.2071', '4.5000', '4.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 (55900, '2022-02-01', 2992, 53186, 3705, 43062, '2.0000', '2.6000', '2.6000', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55901, '2022-02-01', 8147, 53187, 3706, 39846, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55902, '2022-02-01', 8622, 53188, 3706, 43257, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55903, '2022-02-01', 8208, 53189, 3706, NULL, '4.0000', '33.0000', '33.0000', '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 (55904, '2022-02-01', 2857, 53190, 3706, NULL, '2.0000', '17.0000', '17.0000', '6.6000', '6.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 (55905, '2022-02-01', 9788, 53191, 3706, 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 (55906, '2022-02-01', 7328, 53192, 3706, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (55907, '2022-02-01', 2289, 53193, 3706, NULL, '3.0000', '0.3186', '0.3186', '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 (55908, '2022-02-01', 1748, 53194, 3706, NULL, '3.0000', '0.3200', '0.3200', '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 (55909, '2022-02-01', 1840, 53195, 3706, NULL, '3.0000', '0.2400', '0.2400', '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 (55910, '2022-02-01', 8740, 53196, 3706, 44003, '2.0000', '1.8343', '1.8343', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55911, '2022-02-01', 2135, 53197, 3706, 18930, '1.0000', '2.4732', '2.4732', '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 (55912, '2022-02-01', 2466, 53198, 3706, 38548, '1.0000', '14.3175', '14.3175', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55913, '2022-02-01', 1658, 53199, 3706, 49328, '1.0000', '45.3715', '45.3715', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55914, '2022-02-01', 2950, 53200, 3706, 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 (55915, '2022-02-01', 7482, 53201, 3706, NULL, '1.0000', '2.8136', '2.8136', '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 (55916, '2022-02-01', 8677, 53202, 3706, NULL, '2.0000', '292.4641', '292.4641', '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 (55917, '2022-02-01', 1590, 53203, 3706, 48900, '2.0000', '1.4454', '1.4454', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55918, '2022-02-01', 7334, 53204, 3706, NULL, '1.0000', '8.1600', '8.1600', '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 (55919, '2022-02-01', 1855, 53205, 3706, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55920, '2022-02-01', 1590, 53206, 3706, 48900, '2.0000', '1.4454', '1.4454', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55921, '2022-02-01', 1564, 53207, 3706, NULL, '5.0000', '2.4842', '2.4842', '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 (55922, '2022-02-01', 8773, 53208, 3706, NULL, '1.0000', '4.4800', '4.4800', '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 (55923, '2022-02-01', 1841, 53209, 3706, 34025, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55924, '2022-02-01', 8208, 53210, 3706, NULL, '1.0000', '33.0000', '33.0000', '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 (55925, '2022-02-01', 2315, 53211, 3706, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '239.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55926, '2022-02-01', 7411, 53212, 3706, NULL, '1.0000', '1.3013', '1.3013', '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 (55927, '2022-02-01', 2315, 53213, 3706, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '238.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55928, '2022-02-01', 1839, 53214, 3706, NULL, '1.0000', '-9.7683', '-9.7683', '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 (55929, '2022-02-01', 7980, 53215, 3706, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (55930, '2022-02-01', 1863, 53216, 3706, 48719, '1.0000', '1.3601', '1.3601', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55931, '2022-02-01', 2315, 53217, 3706, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '239.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55932, '2022-02-01', 2280, 53218, 3706, NULL, '1.0000', '18.8857', '18.8857', '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 (55933, '2022-02-01', 7514, 53219, 3706, NULL, '1.0000', '2.2500', '2.2500', '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 (55934, '2022-02-01', 8638, 53220, 3706, NULL, '1.0000', '0.5100', '0.5100', '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 (55935, '2022-02-01', 2135, 53221, 3706, 18930, '1.0000', '2.4732', '2.4732', '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 (55936, '2022-02-01', 9482, 53222, 3706, 32547, '5.0000', '0.5000', '0.5000', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55937, '2022-02-01', 2237, 53223, 3706, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55938, '2022-02-01', 8866, 53224, 3706, NULL, '1.0000', '0.4300', '0.4300', '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 (55939, '2022-02-01', 7482, 53225, 3706, NULL, '1.0000', '2.8136', '2.8136', '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 (55940, '2022-02-01', 8000, 53226, 3706, NULL, '1.0000', '25.8200', '25.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 (55941, '2022-02-01', 2167, 53227, 3706, NULL, '2.0000', '2.1310', '2.1310', '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 (55942, '2022-02-01', 7514, 53228, 3706, NULL, '3.0000', '2.2500', '2.2500', '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 (55943, '2022-02-01', 1665, 53229, 3706, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55944, '2022-02-01', 2135, 53230, 3706, 18930, '1.0000', '2.4732', '2.4732', '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 (55945, '2022-02-01', 1628, 53231, 3706, 48711, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55946, '2022-02-01', 2260, 53232, 3706, 49305, '1.0000', '4.2238', '4.2238', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55947, '2022-02-01', 2361, 53233, 3706, 42543, '1.0000', '0.4744', '0.4744', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55948, '2022-02-01', 1590, 53234, 3706, 48900, '2.0000', '1.4454', '1.4454', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55949, '2022-02-01', 2315, 53235, 3706, 49255, '6.0000', '0.4851', '0.4851', '0.8000', '0.8000', '234.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55950, '2022-02-01', 1771, 53236, 3706, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55951, '2022-02-01', 2280, 53237, 3706, NULL, '1.0000', '18.8857', '18.8857', '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 (55952, '2022-02-01', 7612, 53238, 3706, NULL, '2.0000', '1.7300', '1.7300', '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 (55953, '2022-02-01', 1618, 53239, 3706, NULL, '1.0000', '157.5078', '157.5078', '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 (55954, '2022-02-01', 2231, 53240, 3706, NULL, '1.0000', '34.0000', '34.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 (55955, '2022-02-01', 2237, 53241, 3706, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55956, '2022-02-01', 1700, 53242, 3706, 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 (55957, '2022-02-01', 1668, 53243, 3706, 49367, '1.0000', '38.5128', '38.5128', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55958, '2022-02-01', 8677, 53244, 3706, NULL, '2.0000', '292.4641', '292.4641', '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 (55959, '2022-02-01', 7514, 53245, 3706, NULL, '1.0000', '2.2500', '2.2500', '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 (55960, '2022-02-01', 2293, 53246, 3706, NULL, '1.0000', '-15.8931', '-15.8931', '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 (55961, '2022-02-01', 7514, 53247, 3706, NULL, '1.0000', '2.2500', '2.2500', '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 (55962, '2022-02-01', 2143, 53248, 3706, 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 (55963, '2022-02-01', 2237, 53249, 3706, 48702, '1.0000', '558.9412', '558.9412', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55964, '2022-02-01', 7533, 53250, 3706, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55965, '2022-02-01', 9577, 53251, 3706, 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 (55966, '2022-02-01', 7514, 53252, 3706, NULL, '1.0000', '2.2500', '2.2500', '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 (55967, '2022-02-01', 3044, 53253, 3706, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '39.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 (55968, '2022-02-01', 2252, 53254, 3706, 43240, '1.0000', '16.5900', '16.5900', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55969, '2022-02-01', 1935, 53255, 3706, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55970, '2022-02-01', 7411, 53256, 3706, NULL, '1.0000', '1.3013', '1.3013', '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 (55971, '2022-02-01', 2965, 53257, 3706, NULL, '1.0000', '5.8007', '5.8007', '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 (55972, '2022-02-01', 2231, 53258, 3707, 1706, '-4.0000', '33.0000', '33.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 (55973, '2022-02-01', 2231, 53258, 3707, NULL, '5.0000', '33.0000', '33.0000', '39.0000', '39.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 (55974, '2022-02-01', 2161, 53259, 3707, 1376, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '2.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 (55975, '2022-02-01', 2225, 53260, 3707, 1700, '-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 (55976, '2022-02-01', 2225, 53260, 3707, NULL, '2.0000', '14.0000', '14.0000', '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 (55977, '2022-02-01', 2169, 53261, 3707, 10737, '-28.0000', '3.8397', '3.8397', '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 (55978, '2022-02-01', 2169, 53261, 3707, NULL, '29.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55979, '2022-02-02', 1572, 53262, 3708, 48878, '1.0000', '1.9556', '1.9556', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55980, '2022-02-02', 1912, 53263, 3708, 49717, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55981, '2022-02-02', 2315, 53264, 3708, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '229.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55982, '2022-02-02', 1331, 53265, 3708, NULL, '1.0000', '4.2000', '4.2000', '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 (55983, '2022-02-02', 2762, 53266, 3708, NULL, '1.0000', '7.1000', '7.1000', '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 (55984, '2022-02-02', 1961, 53267, 3708, 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 (55985, '2022-02-02', 2234, 53268, 3708, 49356, '1.0000', '15.8190', '15.8190', '21.0000', '21.0000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55986, '2022-02-02', 7853, 53269, 3708, NULL, '1.0000', '35.0000', '35.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 (55987, '2022-02-02', 1678, 53270, 3708, NULL, '1.0000', '33.9300', '33.9300', '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 (55988, '2022-02-02', 1855, 53271, 3708, 48881, '2.0000', '1.5003', '1.5003', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55989, '2022-02-02', 2221, 53272, 3708, 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 (55990, '2022-02-02', 1809, 53273, 3708, 49374, '1.0000', '10.0911', '10.0911', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55991, '2022-02-02', 7756, 53274, 3708, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55992, '2022-02-02', 9715, 53275, 3708, 47053, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55993, '2022-02-02', 1771, 53276, 3708, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55994, '2022-02-02', 1837, 53277, 3708, NULL, '3.0000', '1.5967', '1.5967', '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 (55995, '2022-02-02', 1863, 53278, 3708, 49716, '2.0000', '1.3799', '1.3799', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55996, '2022-02-02', 1946, 53279, 3708, NULL, '1.0000', '1.5500', '1.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 (55997, '2022-02-02', 1910, 53280, 3708, 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 (55998, '2022-02-02', 1612, 53281, 3708, 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 (55999, '2022-02-02', 1501, 53282, 3708, NULL, '1.0000', '2.1784', '2.1784', '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 (56000, '2022-02-02', 9766, 53283, 3708, NULL, '1.0000', '12.7500', '12.7500', '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 (56001, '2022-02-02', 1426, 53284, 3708, 48992, '1.0000', '34.9584', '34.9584', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56002, '2022-02-02', 9213, 53285, 3708, 45280, '1.0000', '5.5090', '5.5090', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56003, '2022-02-02', 1812, 53286, 3708, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56004, '2022-02-02', 2241, 53287, 3708, 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 (56005, '2022-02-02', 1863, 53288, 3708, 49716, '1.0000', '1.3799', '1.3799', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56006, '2022-02-02', 3035, 53289, 3708, NULL, '1.0000', '9.5000', '9.5000', '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 (56007, '2022-02-02', 1602, 53290, 3708, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56008, '2022-02-02', 3005, 53291, 3708, 23148, '1.0000', '8.0000', '8.0000', '10.5000', '10.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 (56009, '2022-02-02', 1637, 53292, 3708, NULL, '1.0000', '-41.1667', '-41.1667', '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 (56010, '2022-02-02', 1863, 53293, 3708, 49716, '2.0000', '1.3799', '1.3799', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56011, '2022-02-02', 8745, 53294, 3708, 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 (56012, '2022-02-02', 2821, 53295, 3708, NULL, '1.0000', '3.4701', '3.4701', '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 (56013, '2022-02-02', 9084, 53296, 3708, 49621, '1.0000', '8.9000', '8.9000', '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 (56014, '2022-02-02', 9545, 53297, 3708, 40126, '1.0000', '45.0000', '45.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56015, '2022-02-02', 1411, 53298, 3708, 48987, '1.0000', '25.9626', '25.9626', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56016, '2022-02-02', 9695, 53299, 3708, 49617, '1.0000', '4.5000', '4.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 (56017, '2022-02-02', 2948, 53300, 3708, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56018, '2022-02-02', 8000, 53301, 3709, NULL, '1.0000', '249.4419', '249.4419', '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 (56019, '2022-02-02', 7428, 53302, 3709, 46632, '1.0000', '9.6296', '9.6296', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56020, '2022-02-02', 2317, 53303, 3709, 40395, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '31.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56021, '2022-02-02', 7375, 53304, 3709, NULL, '10.0000', '4.5167', '4.5167', '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 (56022, '2022-02-02', 7872, 53305, 3709, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (56023, '2022-02-02', 7774, 53306, 3709, NULL, '1.0000', '1.4724', '1.4724', '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 (56024, '2022-02-02', 7671, 53307, 3709, NULL, '1.0000', '76.3606', '76.3606', '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 (56025, '2022-02-02', 8607, 53308, 3709, 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 (56026, '2022-02-02', 7740, 53309, 3709, NULL, '1.0000', '3.9500', '3.9500', '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 (56027, '2022-02-02', 7950, 53310, 3709, NULL, '1.0000', '2.4000', '2.4000', '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 (56028, '2022-02-02', 2648, 53311, 3709, 49432, '1.0000', '3.5337', '3.5337', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56029, '2022-02-02', 7674, 53312, 3709, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56030, '2022-02-02', 9735, 53313, 3709, 46929, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56031, '2022-02-02', 1947, 53314, 3709, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56032, '2022-02-02', 7727, 53315, 3709, NULL, '1.0000', '0.9000', '0.9000', '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 (56033, '2022-02-02', 8735, 53316, 3709, NULL, '1.0000', '5.6000', '5.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 (56034, '2022-02-02', 8941, 53317, 3709, NULL, '2.0000', '12.0000', '12.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 (56035, '2022-02-02', 8889, 53318, 3709, 49403, '1.0000', '35.2500', '35.2500', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 372);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56036, '2022-02-02', 8413, 53319, 3709, NULL, '1.0000', '3.0000', '3.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56037, '2022-02-02', 8596, 53320, 3709, NULL, '1.0000', '17.0000', '17.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 (56038, '2022-02-02', 7719, 53321, 3709, 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 (56039, '2022-02-02', 7820, 53322, 3709, NULL, '1.0000', '-1586.6000', '-1586.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56040, '2022-02-02', 7881, 53323, 3709, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56041, '2022-02-02', 8178, 53324, 3709, NULL, '1.0000', '4.5000', '4.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 (56042, '2022-02-02', 8548, 53325, 3709, NULL, '2.0000', '12.0000', '12.0000', '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 (56043, '2022-02-02', 7439, 53326, 3709, 30052, '1.0000', '2.0000', '2.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56044, '2022-02-02', 8608, 53327, 3709, NULL, '1.0000', '5.7400', '5.7400', '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 (56045, '2022-02-02', 8672, 53328, 3709, 48338, '4.0000', '1.7137', '1.7137', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56046, '2022-02-02', 2100, 53329, 3709, NULL, '1.0000', '2.0531', '2.0531', '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 (56047, '2022-02-02', 7412, 53330, 3709, NULL, '1.0000', '1.5200', '1.5200', '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 (56048, '2022-02-02', 9734, 53331, 3709, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '114.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56049, '2022-02-02', 8155, 53332, 3709, NULL, '1.0000', '65.0000', '65.0000', '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 (56050, '2022-02-02', 7428, 53333, 3709, 46632, '1.0000', '9.6296', '9.6296', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56051, '2022-02-02', 9245, 53334, 3709, 45582, '1.0000', '6.6100', '6.6100', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56052, '2022-02-02', 9267, 53335, 3709, 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 (56053, '2022-02-02', 8006, 53336, 3709, 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 (56054, '2022-02-02', 7736, 53337, 3709, NULL, '1.0000', '10.0928', '10.0928', '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 (56055, '2022-02-02', 2320, 53338, 3710, 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 (56056, '2022-02-02', 2916, 53339, 3710, 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 (56057, '2022-02-02', 1707, 53340, 3710, 10380, '-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 (56058, '2022-02-02', 1707, 53340, 3710, NULL, '2.0000', '25.1200', '25.1200', '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 (56059, '2022-02-02', 1645, 53341, 3710, 3217, '-6.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 (56060, '2022-02-02', 1645, 53341, 3710, NULL, '7.0000', '4.7200', '4.7200', '7.5000', '7.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 (56061, '2022-02-02', 7411, 53342, 3710, NULL, '1.0000', '1.3500', '1.3500', '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 (56062, '2022-02-02', 3013, 53343, 3710, 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 (56063, '2022-02-02', 2169, 53344, 3710, 10737, '-29.0000', '3.8397', '3.8397', '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 (56064, '2022-02-02', 2169, 53344, 3710, NULL, '30.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (56065, '2022-02-02', 1793, 53345, 3710, 18917, '1.0000', '15.3000', '15.3000', '20.0000', '20.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 (56066, '2022-02-02', 2169, 53346, 3710, 10737, '-29.0000', '3.8397', '3.8397', '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 (56067, '2022-02-02', 2169, 53346, 3710, NULL, '30.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (56068, '2022-02-02', 2354, 53347, 3710, 18836, '1.0000', '4.6000', '4.6000', '7.0000', '7.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 (56069, '2022-02-02', 1646, 53348, 3710, 3239, '-12.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 (56070, '2022-02-02', 1646, 53348, 3710, NULL, '13.0000', '4.5300', '4.5300', '7.5000', '7.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 (56071, '2022-02-02', 9095, 53349, 3710, NULL, '2.0000', '8.7600', '8.7600', '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 (56072, '2022-02-02', 1328, 53350, 3710, NULL, '1.0000', '3.1500', '3.1500', '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 (56073, '2022-02-02', 2169, 53351, 3710, 10737, '-29.0000', '3.8397', '3.8397', '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 (56074, '2022-02-02', 2169, 53351, 3710, NULL, '30.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (56075, '2022-02-02', 2252, 53352, 3710, 2789, '-19.0000', '9.5000', '9.5000', '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 (56076, '2022-02-02', 2252, 53352, 3710, NULL, '20.0000', '9.5000', '9.5000', '16.0000', '16.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 (56077, '2022-02-02', 7459, 53353, 3710, NULL, '20.0000', '2.3500', '2.3500', '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 (56078, '2022-02-02', 2460, 53354, 3710, 12921, '-5.0000', '32.7700', '32.7700', '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 (56079, '2022-02-02', 2460, 53354, 3710, NULL, '6.0000', '32.7700', '32.7700', '45.0000', '45.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 (56080, '2022-02-02', 2237, 53355, 3710, 2781, '-37.0000', '1.0600', '1.0600', '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 (56081, '2022-02-02', 2237, 53355, 3710, NULL, '38.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56082, '2022-02-02', 2484, 53356, 3710, 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 (56083, '2022-02-02', 2317, 53357, 3710, 3473, '-2.0000', '15.0000', '15.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 (56084, '2022-02-02', 2317, 53357, 3710, NULL, '3.0000', '15.0000', '15.0000', '18.0000', '18.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 (56085, '2022-02-02', 9736, 53358, 3711, 46927, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56086, '2022-02-02', 8969, 53359, 3711, NULL, '4.0000', '2.0000', '2.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 (56087, '2022-02-02', 7509, 53360, 3711, 48827, '2.0000', '6.3733', '6.3733', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56088, '2022-02-02', 8974, 53361, 3711, NULL, '1.0000', '5.4000', '5.4000', '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 (56089, '2022-02-02', 7779, 53362, 3711, NULL, '1.0000', '9.6790', '9.6790', '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 (56090, '2022-02-02', 7509, 53363, 3711, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56091, '2022-02-02', 8825, 53364, 3711, NULL, '1.0000', '11.9150', '11.9150', '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 (56092, '2022-02-02', 7865, 53365, 3711, NULL, '1.0000', '1.6300', '1.6300', '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 (56093, '2022-02-02', 8609, 53366, 3711, 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 (56094, '2022-02-02', 1409, 53367, 3712, 49528, '1.0000', '13.0756', '13.0756', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56095, '2022-02-02', 1310, 53368, 3713, 49358, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56096, '2022-02-02', 9718, 53369, 3713, 48466, '1.0000', '13.3235', '13.3235', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56097, '2022-02-02', 2237, 53370, 3713, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56098, '2022-02-02', 1779, 53371, 3713, 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 (56099, '2022-02-02', 2865, 53372, 3713, NULL, '1.0000', '2.8000', '2.8000', '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 (56100, '2022-02-02', 7411, 53373, 3713, NULL, '1.0000', '1.3013', '1.3013', '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 (56101, '2022-02-02', 1590, 53374, 3713, 48900, '2.0000', '1.4454', '1.4454', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56102, '2022-02-02', 2762, 53375, 3713, NULL, '1.0000', '7.1000', '7.1000', '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 (56103, '2022-02-02', 9329, 53376, 3713, NULL, '1.0000', '5.8000', '5.8000', '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 (56104, '2022-02-02', 7343, 53377, 3713, NULL, '1.0000', '47.1000', '47.1000', '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 (56105, '2022-02-02', 2274, 53378, 3713, 49315, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56106, '2022-02-02', 9747, 53379, 3713, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56107, '2022-02-02', 1965, 53380, 3713, NULL, '1.0000', '17.2400', '17.2400', '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 (56108, '2022-02-02', 1688, 53381, 3713, 49636, '1.0000', '15.3265', '15.3265', '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 (56109, '2022-02-02', 2289, 53382, 3713, NULL, '1.0000', '0.3186', '0.3186', '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 (56110, '2022-02-02', 9177, 53383, 3713, 39826, '10.0000', '0.8556', '0.8556', '1.2000', '1.2000', '27.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56111, '2022-02-02', 7482, 53384, 3713, NULL, '1.0000', '2.8136', '2.8136', '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 (56112, '2022-02-02', 1435, 53385, 3713, NULL, '1.0000', '22.5000', '22.5000', '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 (56113, '2022-02-02', 8186, 53386, 3713, NULL, '2.0000', '1.0800', '1.0800', '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 (56114, '2022-02-02', 2427, 53387, 3713, NULL, '1.0000', '5.8000', '5.8000', '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 (56115, '2022-02-02', 2315, 53388, 3713, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '227.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56116, '2022-02-02', 2964, 53389, 3713, NULL, '2.0000', '6.6000', '6.6000', '8.5000', '8.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 (56117, '2022-02-02', 2251, 53390, 3713, NULL, '1.0000', '12.1904', '12.1904', '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 (56118, '2022-02-02', 9089, 53391, 3713, NULL, '2.0000', '3.8000', '3.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 (56119, '2022-02-02', 2118, 53392, 3713, 49629, '1.0000', '8.5000', '8.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 (56120, '2022-02-02', 7719, 53393, 3713, NULL, '1.0000', '5.5000', '5.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 (56121, '2022-02-02', 1809, 53394, 3713, 49374, '1.0000', '10.0911', '10.0911', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56122, '2022-02-02', 2821, 53395, 3713, NULL, '1.0000', '3.4701', '3.4701', '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 (56123, '2022-02-02', 1310, 53396, 3713, 49358, '8.0000', '0.4100', '0.4100', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56124, '2022-02-02', 1748, 53397, 3713, NULL, '1.0000', '0.3200', '0.3200', '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 (56125, '2022-02-02', 2289, 53398, 3713, NULL, '1.0000', '0.3186', '0.3186', '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 (56126, '2022-02-02', 1840, 53399, 3713, NULL, '1.0000', '0.2400', '0.2400', '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 (56127, '2022-02-02', 7328, 53400, 3713, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (56128, '2022-02-02', 2169, 53401, 3713, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56129, '2022-02-02', 7765, 53402, 3713, NULL, '2.0000', '16.0000', '16.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 (56130, '2022-02-02', 7333, 53403, 3713, NULL, '2.0000', '13.5000', '13.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 (56131, '2022-02-02', 2965, 53404, 3714, NULL, '1.0000', '5.8007', '5.8007', '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 (56132, '2022-02-02', 1626, 53405, 3714, 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 (56133, '2022-02-02', 2353, 53406, 3714, NULL, '2.0000', '4.4500', '4.4500', '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 (56134, '2022-02-02', 2366, 53407, 3714, NULL, '2.0000', '-17.8500', '-17.8500', '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 (56135, '2022-02-02', 7806, 53408, 3714, 39775, '5.0000', '2.0000', '2.0000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56136, '2022-02-02', 7483, 53409, 3714, NULL, '3.0000', '0.4200', '0.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 (56137, '2022-02-02', 8740, 53410, 3714, 44003, '1.0000', '1.8343', '1.8343', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56138, '2022-02-02', 2643, 53411, 3714, 49624, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '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 (56139, '2022-02-02', 7411, 53412, 3714, NULL, '1.0000', '1.3013', '1.3013', '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 (56140, '2022-02-02', 2734, 53413, 3714, 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 (56141, '2022-02-02', 1581, 53414, 3714, 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 (56142, '2022-02-02', 2289, 53415, 3714, NULL, '1.0000', '0.3186', '0.3186', '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 (56143, '2022-02-02', 9695, 53416, 3714, 49617, '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 (56144, '2022-02-02', 1942, 53417, 3714, 48604, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56145, '2022-02-02', 2169, 53418, 3714, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '85.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56146, '2022-02-02', 2221, 53419, 3714, 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 (56147, '2022-02-02', 2277, 53420, 3714, NULL, '2.0000', '0.9399', '0.9399', '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 (56148, '2022-02-02', 2272, 53421, 3714, NULL, '1.0000', '5.5000', '5.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 (56149, '2022-02-02', 2256, 53422, 3714, NULL, '1.0000', '13.6860', '13.6860', '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 (56150, '2022-02-02', 2272, 53423, 3714, NULL, '1.0000', '5.5000', '5.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 (56151, '2022-02-02', 2221, 53424, 3714, 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 (56152, '2022-02-02', 9240, 53425, 3714, NULL, '1.0000', '25.1200', '25.1200', '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 (56153, '2022-02-02', 1667, 53426, 3714, 49364, '2.0000', '13.0832', '13.0832', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56154, '2022-02-02', 7411, 53427, 3714, NULL, '1.0000', '1.3013', '1.3013', '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 (56155, '2022-02-02', 9758, 53428, 3714, NULL, '1.0000', '3.1400', '3.1400', '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 (56156, '2022-02-02', 7411, 53429, 3714, NULL, '1.0000', '1.3013', '1.3013', '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 (56157, '2022-02-02', 8065, 53430, 3714, NULL, '1.0000', '32.0000', '32.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 (56158, '2022-02-02', 1595, 53431, 3714, 49324, '1.0000', '20.2024', '20.2024', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56159, '2022-02-02', 1307, 53432, 3714, NULL, '1.0000', '0.6103', '0.6103', '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 (56160, '2022-02-02', 2366, 53433, 3714, NULL, '2.0000', '-17.8500', '-17.8500', '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 (56161, '2022-02-02', 9704, 53434, 3714, 44444, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56162, '2022-02-02', 2156, 53435, 3714, 19853, '1.0000', '3.2500', '3.2500', '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 (56163, '2022-02-02', 7411, 53436, 3714, NULL, '1.0000', '1.3013', '1.3013', '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 (56164, '2022-02-02', 2295, 53437, 3714, 48904, '4.0000', '1.1161', '1.1161', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56165, '2022-02-02', 2986, 53438, 3714, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56166, '2022-02-02', 2635, 53439, 3714, 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 (56167, '2022-02-02', 2298, 53440, 3714, NULL, '1.0000', '5.7840', '5.7840', '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 (56168, '2022-02-02', 7411, 53441, 3714, NULL, '1.0000', '1.3013', '1.3013', '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 (56169, '2022-02-02', 2277, 53442, 3714, NULL, '1.0000', '0.9399', '0.9399', '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 (56170, '2022-02-02', 2935, 53443, 3714, NULL, '1.0000', '7.9400', '7.9400', '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 (56171, '2022-02-02', 2068, 53444, 3714, 48158, '1.0000', '11.8658', '11.8658', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56172, '2022-02-02', 2242, 53445, 3714, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56173, '2022-02-02', 7674, 53446, 3714, 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 (56174, '2022-02-02', 9399, 53447, 3714, 34949, '2.0000', '0.9800', '0.9800', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56175, '2022-02-02', 8158, 53448, 3715, 39616, '1.0000', '24.9000', '24.9000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56176, '2022-02-02', 1340, 53449, 3715, 49280, '1.0000', '4.3962', '4.3962', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56177, '2022-02-02', 9166, 53450, 3715, NULL, '1.0000', '3.5000', '3.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 (56178, '2022-02-02', 9734, 53451, 3715, 46910, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '110.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56179, '2022-02-02', 7385, 53452, 3715, 49756, '2.0000', '-2.2533', '-2.2533', '3.5000', '3.5000', '98.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56180, '2022-02-02', 7608, 53453, 3715, NULL, '1.0000', '6.9800', '6.9800', '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 (56181, '2022-02-02', 7412, 53454, 3715, NULL, '1.0000', '1.5200', '1.5200', '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 (56182, '2022-02-02', 9092, 53455, 3715, 40421, '1.0000', '0.3051', '0.3051', '0.5000', '0.5000', '112.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56183, '2022-02-02', 7671, 53456, 3715, NULL, '3.0000', '76.3606', '76.3606', '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 (56184, '2022-02-02', 7708, 53457, 3715, NULL, '1.0000', '4.1860', '4.1860', '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 (56185, '2022-02-02', 7548, 53458, 3715, NULL, '2.0000', '1.9507', '1.9507', '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 (56186, '2022-02-02', 7781, 53459, 3715, NULL, '3.0000', '4.2500', '4.2500', '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 (56187, '2022-02-02', 7507, 53460, 3715, NULL, '3.0000', '6.5000', '6.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 (56188, '2022-02-02', 7671, 53461, 3715, NULL, '1.0000', '76.3606', '76.3606', '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 (56189, '2022-02-02', 1772, 53462, 3715, NULL, '1.0000', '6.4250', '6.4250', '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 (56190, '2022-02-02', 7411, 53463, 3715, NULL, '2.0000', '1.3600', '1.3600', '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 (56191, '2022-02-02', 1935, 53464, 3715, 45606, '1.0000', '28.7657', '28.7657', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56192, '2022-02-02', 1935, 53464, 3715, NULL, '1.0000', '28.7657', '28.7657', '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 (56193, '2022-02-02', 7674, 53465, 3715, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56194, '2022-02-02', 2284, 53466, 3715, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56195, '2022-02-02', 8915, 53467, 3715, NULL, '1.0000', '36.9667', '36.9667', '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 (56196, '2022-02-02', 7709, 53468, 3715, NULL, '2.0000', '46.8129', '46.8129', '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 (56197, '2022-02-02', 2673, 53469, 3715, 45793, '1.0000', '17.0000', '17.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56198, '2022-02-02', 8674, 53470, 3715, NULL, '1.0000', '28.8900', '28.8900', '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 (56199, '2022-02-02', 7457, 53471, 3715, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56200, '2022-02-02', 8308, 53472, 3715, NULL, '1.0000', '14.1857', '14.1857', '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 (56201, '2022-02-02', 9337, 53473, 3715, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56202, '2022-02-02', 7743, 53474, 3715, NULL, '1.0000', '419203.7668', '419203.7668', '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 (56203, '2022-02-02', 2611, 53475, 3715, 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 (56204, '2022-02-02', 7397, 53476, 3715, NULL, '1.0000', '74.1500', '74.1500', '98.0000', '98.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56205, '2022-02-02', 9337, 53477, 3715, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56206, '2022-02-02', 2962, 53478, 3715, 44462, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56207, '2022-02-02', 7933, 53479, 3715, NULL, '1.0000', '0.3245', '0.3245', '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 (56208, '2022-02-02', 9092, 53480, 3715, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '111.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56209, '2022-02-02', 2251, 53481, 3715, 45857, '1.0000', '11.7132', '11.7132', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56210, '2022-02-02', 7898, 53482, 3715, NULL, '1.0000', '2.2000', '2.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 (56211, '2022-02-02', 1806, 53483, 3715, NULL, '2.0000', '27.3200', '27.3200', '37.5000', '37.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 (56212, '2022-02-02', 2315, 53484, 3715, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '20.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56213, '2022-02-02', 1498, 53485, 3715, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '67.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56214, '2022-02-02', 7674, 53486, 3715, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56215, '2022-02-02', 2669, 53487, 3715, 36678, '1.0000', '24.0100', '24.0100', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56216, '2022-02-02', 9724, 53488, 3715, 46153, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56217, '2022-02-02', 7671, 53489, 3715, NULL, '1.0000', '76.3606', '76.3606', '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 (56218, '2022-02-02', 8359, 53490, 3715, NULL, '1.0000', '-3070.2788', '-3070.2788', '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 (56219, '2022-02-02', 9747, 53491, 3716, 46049, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56220, '2022-02-02', 2411, 53492, 3716, 45089, '1.0000', '1.3762', '1.3762', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56221, '2022-02-02', 2167, 53493, 3716, 48783, '1.0000', '2.3022', '2.3022', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56222, '2022-02-02', 1409, 53494, 3716, 49528, '1.0000', '13.0756', '13.0756', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56223, '2022-02-02', 1630, 53495, 3716, 48760, '1.0000', '17.7346', '17.7346', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56224, '2022-02-02', 1618, 53496, 3716, 49545, '1.0000', '11.9300', '11.9300', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56225, '2022-02-02', 9747, 53497, 3716, 46049, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56226, '2022-02-02', 7741, 53498, 3716, NULL, '1.0000', '-1.3429', '-1.3429', '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 (56227, '2022-02-02', 1528, 53499, 3716, 44554, '1.0000', '53.0619', '53.0619', '6.5000', '6.5000', '27.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56228, '2022-02-02', 2243, 53500, 3716, 3065, '1.0000', '3.5000', '3.5000', '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 (56229, '2022-02-02', 1854, 53501, 3716, 49092, '1.0000', '2.7353', '2.7353', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56230, '2022-02-02', 2286, 53502, 3716, 49547, '3.0000', '4.3959', '4.3959', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56231, '2022-02-02', 9747, 53503, 3716, 46049, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56232, '2022-02-02', 1812, 53504, 3716, 49537, '1.0000', '7.9732', '7.9732', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56233, '2022-02-02', 8309, 53505, 3716, NULL, '2.0000', '14.5000', '14.5000', '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 (56234, '2022-02-02', 2607, 53506, 3717, 42956, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '14.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56235, '2022-02-02', 2109, 53507, 3717, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56236, '2022-02-02', 7318, 53508, 3718, 49538, '1.0000', '10.4630', '10.4630', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56237, '2022-02-02', 2236, 53509, 3718, 49463, '1.0000', '5.7648', '5.7648', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56238, '2022-02-02', 2937, 53510, 3719, 48124, '1.0000', '5.5551', '5.5551', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56239, '2022-02-02', 7674, 53511, 3720, 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 (56240, '2022-02-02', 8395, 53512, 3720, NULL, '1.0000', '0.9700', '0.9700', '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 (56241, '2022-02-02', 7570, 53513, 3720, NULL, '1.0000', '10.0000', '10.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 (56242, '2022-02-02', 7547, 53514, 3720, NULL, '2.0000', '0.0000', '0.0000', '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 (56243, '2022-02-02', 2293, 53515, 3721, 22262, '2.0000', '1.4400', '1.4400', '1.0000', '1.0000', '75.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 (56244, '2022-02-02', 9715, 53516, 3722, 46036, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56245, '2022-02-02', 1667, 53517, 3722, 49550, '1.0000', '37.4709', '37.4709', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56246, '2022-02-03', 1825, 53518, 3723, 48673, '1.0000', '5.1984', '5.1984', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56247, '2022-02-03', 2089, 53519, 3723, 37753, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56248, '2022-02-03', 2761, 53520, 3723, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56249, '2022-02-03', 2241, 53521, 3723, 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 (56250, '2022-02-03', 1831, 53522, 3723, 48957, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56251, '2022-02-03', 2379, 53523, 3723, NULL, '1.0000', '1.0877', '1.0877', '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 (56252, '2022-02-03', 2297, 53524, 3723, 33348, '1.0000', '6.4800', '6.4800', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56253, '2022-02-03', 7984, 53525, 3723, NULL, '1.0000', '16.4500', '16.4500', '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 (56254, '2022-02-03', 1945, 53526, 3723, 48186, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56255, '2022-02-03', 2633, 53527, 3723, 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 (56256, '2022-02-03', 2315, 53528, 3723, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '226.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56257, '2022-02-03', 1855, 53529, 3723, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56258, '2022-02-03', 9758, 53530, 3723, NULL, '1.0000', '3.1400', '3.1400', '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 (56259, '2022-02-03', 2486, 53531, 3723, 24874, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (56260, '2022-02-03', 9748, 53532, 3723, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56261, '2022-02-03', 1863, 53533, 3723, 49716, '1.0000', '1.3799', '1.3799', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56262, '2022-02-03', 2004, 53534, 3723, 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 (56263, '2022-02-03', 1520, 53535, 3723, 48888, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56264, '2022-02-03', 9089, 53536, 3723, NULL, '1.0000', '3.8000', '3.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 (56265, '2022-02-03', 1590, 53537, 3723, 48900, '2.0000', '1.4454', '1.4454', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56266, '2022-02-03', 9416, 53538, 3723, 49675, '1.0000', '4.2857', '4.2857', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56267, '2022-02-03', 1409, 53539, 3723, 49522, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 383);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56268, '2022-02-03', 8746, 53540, 3723, 49616, '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 (56269, '2022-02-03', 7911, 53541, 3724, NULL, '1.0000', '4.3700', '4.3700', '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 (56270, '2022-02-03', 7879, 53542, 3724, NULL, '5.0000', '1.9800', '1.9800', '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 (56271, '2022-02-03', 7496, 53543, 3724, NULL, '1.0000', '0.9600', '0.9600', '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 (56272, '2022-02-03', 1532, 53544, 3724, 22261, '3.0000', '0.8000', '0.8000', '1.5000', '1.5000', '27.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 (56273, '2022-02-03', 7890, 53545, 3724, NULL, '1.0000', '1.0000', '1.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56274, '2022-02-03', 7638, 53546, 3724, 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 (56275, '2022-02-03', 7411, 53547, 3724, NULL, '2.0000', '1.3500', '1.3500', '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 (56276, '2022-02-03', 1650, 53548, 3724, 3221, '-9.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 (56277, '2022-02-03', 1650, 53548, 3724, NULL, '10.0000', '14.8000', '14.8000', '20.0000', '20.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 (56278, '2022-02-03', 7819, 53549, 3724, 33817, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56279, '2022-02-03', 7877, 53550, 3724, NULL, '1.0000', '4.4000', '4.4000', '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 (56280, '2022-02-03', 7708, 53551, 3724, NULL, '1.0000', '7.8000', '7.8000', '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 (56281, '2022-02-03', 7514, 53552, 3724, NULL, '1.0000', '2.2500', '2.2500', '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 (56282, '2022-02-03', 8324, 53553, 3724, NULL, '1.0000', '3.0000', '3.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 (56283, '2022-02-03', 7473, 53554, 3724, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (56284, '2022-02-03', 7911, 53555, 3724, NULL, '1.0000', '4.3700', '4.3700', '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 (56285, '2022-02-03', 7918, 53556, 3724, 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 (56286, '2022-02-03', 8308, 53557, 3724, NULL, '1.0000', '2.0800', '2.0800', '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 (56287, '2022-02-03', 7473, 53558, 3724, NULL, '10.0000', '0.5300', '0.5300', '0.6000', '0.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 (56288, '2022-02-03', 7741, 53559, 3724, NULL, '1.0000', '1.2000', '1.2000', '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 (56289, '2022-02-03', 8844, 53560, 3724, NULL, '1.0000', '4.9900', '4.9900', '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 (56290, '2022-02-03', 8915, 53561, 3724, 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 (56291, '2022-02-03', 7657, 53562, 3724, NULL, '1.0000', '11.3200', '11.3200', '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 (56292, '2022-02-03', 2217, 53563, 3724, 7760, '-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 (56293, '2022-02-03', 2217, 53563, 3724, NULL, '2.0000', '12.0000', '12.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 (56294, '2022-02-03', 7514, 53564, 3724, NULL, '3.0000', '2.2500', '2.2500', '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 (56295, '2022-02-03', 8164, 53565, 3724, 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 (56296, '2022-02-03', 7672, 53566, 3724, NULL, '1.0000', '1.0200', '1.0200', '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 (56297, '2022-02-03', 7743, 53567, 3724, NULL, '1.0000', '1.3100', '1.3100', '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 (56298, '2022-02-03', 9100, 53568, 3724, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56299, '2022-02-03', 7825, 53569, 3724, NULL, '1.0000', '6.5000', '6.5000', '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 (56300, '2022-02-03', 7674, 53570, 3724, 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 (56301, '2022-02-03', 7658, 53571, 3724, NULL, '5.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (56302, '2022-02-03', 7547, 53572, 3724, NULL, '4.0000', '0.0000', '0.0000', '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 (56303, '2022-02-03', 7570, 53573, 3724, NULL, '1.0000', '10.0000', '10.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 (56304, '2022-02-03', 1849, 53574, 3724, NULL, '2.0000', '2.5000', '2.5000', '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 (56305, '2022-02-03', 1760, 53575, 3724, 22256, '5.0000', '111.8384', '111.8384', '1.0000', '1.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 (56306, '2022-02-03', 2233, 53576, 3724, 2777, '-21.0000', '19.0200', '19.0200', '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 (56307, '2022-02-03', 2233, 53576, 3724, NULL, '22.0000', '19.0200', '19.0200', '29.0000', '29.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56308, '2022-02-03', 7720, 53577, 3724, 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 (56309, '2022-02-03', 2604, 53578, 3724, 14491, '-9.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56310, '2022-02-03', 2604, 53578, 3724, NULL, '10.0000', '90.0000', '90.0000', '110.0000', '110.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 (56311, '2022-02-03', 2217, 53579, 3724, 7760, '-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 (56312, '2022-02-03', 2217, 53579, 3724, NULL, '2.0000', '12.0000', '12.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 (56313, '2022-02-03', 7409, 53580, 3724, NULL, '1.0000', '4.3300', '4.3300', '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 (56314, '2022-02-03', 9286, 53581, 3724, 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 (56315, '2022-02-03', 2486, 53582, 3725, 24874, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.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 (56316, '2022-02-03', 1541, 53583, 3726, 48705, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56317, '2022-02-03', 7612, 53584, 3726, NULL, '2.0000', '1.7300', '1.7300', '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 (56318, '2022-02-03', 1824, 53585, 3726, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56319, '2022-02-03', 1435, 53586, 3726, NULL, '1.0000', '22.5000', '22.5000', '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 (56320, '2022-02-03', 9214, 53587, 3726, 49676, '1.0000', '10.8410', '10.8410', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56321, '2022-02-03', 9695, 53588, 3726, 49617, '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 (56322, '2022-02-03', 2495, 53589, 3726, 49635, '1.0000', '8.6100', '8.6100', '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 (56323, '2022-02-03', 7612, 53590, 3726, NULL, '2.0000', '1.7300', '1.7300', '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 (56324, '2022-02-03', 1824, 53591, 3726, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56325, '2022-02-03', 1571, 53592, 3726, 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 (56326, '2022-02-03', 1863, 53593, 3726, 49716, '1.0000', '1.3799', '1.3799', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56327, '2022-02-03', 7472, 53594, 3726, NULL, '1.0000', '4.2055', '4.2055', '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 (56328, '2022-02-03', 1554, 53595, 3726, 41389, '1.0000', '2.5497', '2.5497', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56329, '2022-02-03', 2491, 53596, 3726, 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 (56330, '2022-02-03', 2102, 53597, 3726, 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 (56331, '2022-02-03', 9755, 53598, 3726, 49261, '2.0000', '17.0000', '17.0000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56332, '2022-02-03', 9576, 53599, 3726, 47133, '2.0000', '16.0000', '16.0000', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56333, '2022-02-03', 1978, 53600, 3726, 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 (56334, '2022-02-03', 2169, 53601, 3726, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56335, '2022-02-03', 8202, 53602, 3726, NULL, '1.0000', '1.6600', '1.6600', '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 (56336, '2022-02-03', 1612, 53603, 3726, 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 (56337, '2022-02-03', 9747, 53604, 3726, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56338, '2022-02-03', 2361, 53605, 3726, 42543, '4.0000', '0.4744', '0.4744', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56339, '2022-02-03', 1339, 53606, 3727, 49355, '1.0000', '1.2000', '1.2000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56340, '2022-02-03', 1501, 53607, 3727, NULL, '1.0000', '2.1784', '2.1784', '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 (56341, '2022-02-03', 1621, 53608, 3727, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '37.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56342, '2022-02-03', 1564, 53609, 3727, NULL, '2.0000', '2.4842', '2.4842', '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 (56343, '2022-02-03', 2083, 53610, 3727, 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 (56344, '2022-02-03', 1841, 53611, 3727, 31077, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56345, '2022-02-03', 9743, 53612, 3727, 47094, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56346, '2022-02-03', 2083, 53613, 3727, 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 (56347, '2022-02-03', 2066, 53614, 3727, 34656, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56348, '2022-02-03', 1577, 53615, 3727, NULL, '1.0000', '2.3271', '2.3271', '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 (56349, '2022-02-03', 1935, 53616, 3727, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56350, '2022-02-03', 1602, 53617, 3728, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56351, '2022-02-03', 1512, 53618, 3728, 48872, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56352, '2022-02-03', 9109, 53619, 3728, 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 (56353, '2022-02-03', 2738, 53620, 3728, 19348, '1.0000', '7.6000', '7.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 (56354, '2022-02-03', 7756, 53621, 3728, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56355, '2022-02-03', 7704, 53622, 3728, NULL, '1.0000', '0.4900', '0.4900', '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 (56356, '2022-02-03', 2948, 53623, 3728, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '26.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56357, '2022-02-03', 1431, 53624, 3728, NULL, '1.0000', '9.8000', '9.8000', '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 (56358, '2022-02-03', 2633, 53625, 3728, 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 (56359, '2022-02-03', 2169, 53626, 3728, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '83.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56360, '2022-02-03', 1307, 53627, 3728, NULL, '1.0000', '0.6103', '0.6103', '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 (56361, '2022-02-03', 2965, 53628, 3728, NULL, '1.0000', '5.8007', '5.8007', '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 (56362, '2022-02-03', 1867, 53629, 3729, 48507, '1.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '17.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56363, '2022-02-03', 2025, 53630, 3729, 44164, '2.0000', '4.6723', '4.6723', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56364, '2022-02-03', 2458, 53631, 3729, 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 (56365, '2022-02-03', 2089, 53632, 3729, 33371, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56366, '2022-02-03', 1532, 53633, 3729, 48901, '3.0000', '1.5750', '1.5750', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56367, '2022-02-03', 7915, 53634, 3729, NULL, '1.0000', '2.8000', '2.8000', '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 (56368, '2022-02-03', 1825, 53635, 3729, 48673, '1.0000', '5.1984', '5.1984', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56369, '2022-02-03', 9609, 53636, 3729, 43250, '1.0000', '6.4000', '6.4000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56370, '2022-02-03', 7671, 53637, 3729, NULL, '1.0000', '15.5000', '15.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 (56371, '2022-02-03', 9214, 53638, 3729, 49676, '1.0000', '10.8410', '10.8410', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56372, '2022-02-03', 2135, 53639, 3729, 18930, '1.0000', '2.4732', '2.4732', '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 (56373, '2022-02-03', 1856, 53640, 3729, NULL, '1.0000', '1.7723', '1.7723', '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 (56374, '2022-02-03', 1668, 53641, 3729, 48146, '1.0000', '38.5128', '38.5128', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56375, '2022-02-03', 1454, 53642, 3729, 47092, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56376, '2022-02-03', 9726, 53643, 3729, 47063, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56377, '2022-02-03', 9556, 53644, 3729, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56378, '2022-02-03', 8203, 53645, 3729, NULL, '1.0000', '9.8000', '9.8000', '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 (56379, '2022-02-03', 1564, 53646, 3729, NULL, '3.0000', '2.4842', '2.4842', '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 (56380, '2022-02-03', 1608, 53647, 3729, 48697, '1.0000', '3.7818', '3.7818', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56381, '2022-02-03', 3027, 53648, 3729, 23977, '1.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 (56382, '2022-02-03', 2695, 53649, 3729, NULL, '3.0000', '2.0000', '2.0000', '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 (56383, '2022-02-03', 1602, 53650, 3729, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56384, '2022-02-03', 8235, 53651, 3729, NULL, '1.0000', '7.0000', '7.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 (56385, '2022-02-03', 9577, 53652, 3729, NULL, '2.0000', '0.3200', '0.3200', '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 (56386, '2022-02-03', 7911, 53653, 3730, NULL, '1.0000', '4.3700', '4.3700', '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 (56387, '2022-02-03', 7496, 53654, 3730, NULL, '1.0000', '0.9600', '0.9600', '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 (56388, '2022-02-03', 8308, 53655, 3730, NULL, '1.0000', '14.1857', '14.1857', '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 (56389, '2022-02-03', 7883, 53656, 3730, NULL, '1.0000', '131.7400', '131.7400', '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 (56390, '2022-02-03', 9193, 53657, 3730, NULL, '1.0000', '7.0315', '7.0315', '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 (56391, '2022-02-03', 7695, 53658, 3730, NULL, '1.0000', '3.9400', '3.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 (56392, '2022-02-03', 1855, 53659, 3730, 44359, '1.0000', '1.4625', '1.4625', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56393, '2022-02-03', 8067, 53660, 3730, NULL, '1.0000', '15.5700', '15.5700', '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 (56394, '2022-02-03', 9337, 53661, 3730, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56395, '2022-02-03', 7411, 53662, 3730, NULL, '1.0000', '1.3600', '1.3600', '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 (56396, '2022-02-03', 8457, 53663, 3730, NULL, '1.0000', '5.0785', '5.0785', '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 (56397, '2022-02-03', 7723, 53664, 3730, 49444, '1.0000', '4.5000', '4.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56398, '2022-02-03', 7642, 53665, 3730, 46653, '1.0000', '5.9200', '5.9200', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56399, '2022-02-03', 8038, 53666, 3730, 45808, '1.0000', '6.7600', '6.7600', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56400, '2022-02-03', 7334, 53667, 3730, 46899, '1.0000', '8.4162', '8.4162', '11.0000', '11.0000', '13.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56401, '2022-02-03', 7608, 53668, 3730, NULL, '1.0000', '6.9800', '6.9800', '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 (56402, '2022-02-03', 7496, 53669, 3730, NULL, '1.0000', '0.9600', '0.9600', '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 (56403, '2022-02-03', 9117, 53670, 3730, NULL, '1.0000', '38.5700', '38.5700', '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 (56404, '2022-02-03', 1603, 53671, 3730, NULL, '1.0000', '55.1600', '55.1600', '84.5000', '84.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56405, '2022-02-03', 7680, 53672, 3730, NULL, '1.0000', '-10.8899', '-10.8899', '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 (56406, '2022-02-03', 8925, 53673, 3730, 45584, '1.0000', '2.4000', '2.4000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56407, '2022-02-03', 7674, 53674, 3730, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '65.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56408, '2022-02-03', 7473, 53675, 3730, NULL, '5.0000', '104.1526', '104.1526', '0.6000', '0.6000', '-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 (56409, '2022-02-03', 1501, 53676, 3730, 49770, '1.0000', '2.3071', '2.3071', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56410, '2022-02-03', 7447, 53677, 3730, NULL, '12.0000', '22.2074', '22.2074', '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 (56411, '2022-02-03', 9579, 53678, 3730, 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 (56412, '2022-02-03', 1408, 53679, 3730, 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 (56413, '2022-02-03', 7709, 53680, 3730, NULL, '2.0000', '46.8129', '46.8129', '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 (56414, '2022-02-03', 7524, 53681, 3730, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56415, '2022-02-03', 7411, 53682, 3730, NULL, '1.0000', '1.3600', '1.3600', '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 (56416, '2022-02-03', 1804, 53683, 3730, 45306, '1.0000', '5.0938', '5.0938', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56417, '2022-02-03', 7415, 53684, 3730, NULL, '1.0000', '4.5501', '4.5501', '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 (56418, '2022-02-03', 2612, 53685, 3730, 47941, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56419, '2022-02-03', 9399, 53686, 3730, NULL, '1.0000', '0.9794', '0.9794', '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 (56420, '2022-02-03', 7411, 53687, 3730, NULL, '3.0000', '1.3600', '1.3600', '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 (56421, '2022-02-03', 7592, 53688, 3730, 49749, '1.0000', '2.1942', '2.1942', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56422, '2022-02-03', 7606, 53689, 3730, 43113, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56423, '2022-02-03', 7411, 53690, 3730, NULL, '1.0000', '1.3600', '1.3600', '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 (56424, '2022-02-03', 7358, 53691, 3730, NULL, '1.0000', '14.5455', '14.5455', '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 (56425, '2022-02-03', 7719, 53692, 3730, 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 (56426, '2022-02-03', 7641, 53693, 3730, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56427, '2022-02-03', 2642, 53694, 3730, NULL, '1.0000', '-15.5450', '-15.5450', '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 (56428, '2022-02-03', 7585, 53695, 3730, NULL, '1.0000', '-3.1011', '-3.1011', '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 (56429, '2022-02-03', 8208, 53696, 3730, NULL, '2.0000', '33.0000', '33.0000', '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 (56430, '2022-02-03', 8900, 53697, 3730, 48847, '20.0000', '0.4000', '0.4000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56431, '2022-02-03', 7642, 53698, 3730, 46653, '3.0000', '5.9200', '5.9200', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56432, '2022-02-03', 2411, 53699, 3731, 4503, '-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 (56433, '2022-02-03', 2411, 53699, 3731, NULL, '2.0000', '1.5000', '1.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 (56434, '2022-02-03', 3058, 53700, 3731, 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 (56435, '2022-02-03', 8298, 53701, 3731, NULL, '1.0000', '7.8400', '7.8400', '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 (56436, '2022-02-03', 9732, 53702, 3731, 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 (56437, '2022-02-03', 1519, 53703, 3731, 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 (56438, '2022-02-03', 9741, 53704, 3731, NULL, '1.0000', '7.6000', '7.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 (56439, '2022-02-03', 9695, 53705, 3731, 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 (56440, '2022-02-03', 9734, 53706, 3731, NULL, '2.0000', '0.3200', '0.3200', '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 (56441, '2022-02-03', 1867, 53707, 3732, 48507, '1.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '16.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56442, '2022-02-03', 2025, 53708, 3732, 44164, '2.0000', '4.6723', '4.6723', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56443, '2022-02-03', 2458, 53709, 3732, 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 (56444, '2022-02-03', 2089, 53710, 3732, 24196, '1.0000', '6.7656', '6.7656', '9.0000', '9.0000', '0.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 (56445, '2022-02-03', 1532, 53711, 3732, 48901, '3.0000', '1.5750', '1.5750', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56446, '2022-02-03', 7915, 53712, 3732, NULL, '1.0000', '2.8000', '2.8000', '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 (56447, '2022-02-03', 1825, 53713, 3732, 48129, '1.0000', '5.1984', '5.1984', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56448, '2022-02-03', 9609, 53714, 3732, NULL, '1.0000', '6.4000', '6.4000', '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 (56449, '2022-02-03', 7671, 53715, 3732, NULL, '1.0000', '15.5000', '15.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 (56450, '2022-02-03', 9214, 53716, 3732, NULL, '1.0000', '10.8410', '10.8410', '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 (56451, '2022-02-03', 2135, 53717, 3732, 18930, '1.0000', '2.4732', '2.4732', '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 (56452, '2022-02-03', 1856, 53718, 3732, NULL, '1.0000', '1.7723', '1.7723', '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 (56453, '2022-02-03', 1668, 53719, 3732, 42095, '1.0000', '38.5128', '38.5128', '17.0000', '17.0000', '20.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56454, '2022-02-03', 1454, 53720, 3732, 47092, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56455, '2022-02-03', 9726, 53721, 3732, 47063, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56456, '2022-02-03', 9556, 53722, 3732, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56457, '2022-02-03', 8203, 53723, 3732, NULL, '1.0000', '9.8000', '9.8000', '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 (56458, '2022-02-03', 1564, 53724, 3732, NULL, '3.0000', '2.4842', '2.4842', '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 (56459, '2022-02-03', 1608, 53725, 3732, 48697, '1.0000', '3.7818', '3.7818', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56460, '2022-02-03', 3027, 53726, 3732, 23977, '1.0000', '5.0000', '5.0000', '7.0000', '7.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 (56461, '2022-02-03', 2695, 53727, 3732, NULL, '3.0000', '2.0000', '2.0000', '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 (56462, '2022-02-03', 1602, 53728, 3732, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56463, '2022-02-03', 8235, 53729, 3732, NULL, '1.0000', '7.0000', '7.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 (56464, '2022-02-03', 9577, 53730, 3732, NULL, '2.0000', '0.3200', '0.3200', '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 (56465, '2022-02-03', 7741, 53731, 3733, NULL, '1.0000', '1.2000', '1.2000', '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 (56466, '2022-02-03', 2948, 53732, 3733, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56467, '2022-02-03', 1855, 53733, 3733, 48881, '2.0000', '1.5003', '1.5003', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56468, '2022-02-03', 2948, 53734, 3733, 48718, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56469, '2022-02-03', 2089, 53735, 3733, NULL, '1.0000', '6.7656', '6.7656', '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 (56470, '2022-02-03', 2034, 53736, 3733, 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 (56471, '2022-02-03', 2360, 53737, 3734, 49128, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '28.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56472, '2022-02-03', 1493, 53738, 3734, 49232, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56473, '2022-02-03', 2136, 53739, 3734, 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 (56474, '2022-02-03', 2136, 53740, 3734, 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 (56475, '2022-02-03', 7741, 53741, 3734, NULL, '1.0000', '-1.3429', '-1.3429', '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 (56476, '2022-02-03', 1394, 53742, 3734, 33037, '1.0000', '6.8340', '6.8340', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56477, '2022-02-03', 1689, 53743, 3734, 49118, '1.0000', '13.4086', '13.4086', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56478, '2022-02-03', 1602, 53744, 3734, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56479, '2022-02-03', 2169, 53745, 3734, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56480, '2022-02-03', 9743, 53746, 3734, 46041, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56481, '2022-02-03', 2169, 53747, 3734, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56482, '2022-02-03', 1904, 53748, 3734, 45091, '2.0000', '39.3704', '39.3704', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56483, '2022-02-03', 7742, 53749, 3734, 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 (56484, '2022-02-03', 1863, 53750, 3734, 45136, '1.0000', '1.2570', '1.2570', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56485, '2022-02-03', 2511, 53751, 3734, 49526, '1.0000', '8.8545', '8.8545', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56486, '2022-02-03', 1812, 53752, 3735, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56487, '2022-02-03', 7509, 53753, 3736, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56488, '2022-02-03', 7628, 53754, 3736, NULL, '2.0000', '1.2071', '1.2071', '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 (56489, '2022-02-03', 2274, 53755, 3737, 49315, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56490, '2022-02-03', 1880, 53756, 3737, 49320, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56491, '2022-02-03', 2315, 53757, 3737, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '225.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56492, '2022-02-03', 2280, 53758, 3737, NULL, '2.0000', '18.8857', '18.8857', '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 (56493, '2022-02-03', 2857, 53759, 3737, NULL, '2.0000', '17.0000', '17.0000', '6.6000', '6.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 (56494, '2022-02-03', 2439, 53760, 3737, 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 (56495, '2022-02-04', 2415, 53761, 3738, 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 (56496, '2022-02-04', 2136, 53762, 3738, 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 (56497, '2022-02-04', 7531, 53763, 3738, NULL, '1.0000', '3.1900', '3.1900', '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 (56498, '2022-02-04', 2100, 53764, 3738, 44561, '1.0000', '1.7307', '1.7307', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56499, '2022-02-04', 1314, 53765, 3738, 21584, '1.0000', '1.2000', '1.2000', '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 (56500, '2022-02-04', 1612, 53766, 3738, 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 (56501, '2022-02-04', 9747, 53767, 3738, 46049, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56502, '2022-02-04', 2416, 53768, 3738, 49490, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56503, '2022-02-04', 1748, 53769, 3738, 49137, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56504, '2022-02-04', 1689, 53770, 3738, 49118, '1.0000', '13.4086', '13.4086', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56505, '2022-02-04', 1602, 53771, 3738, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56506, '2022-02-04', 2955, 53772, 3738, 40593, '1.0000', '4.8000', '4.8000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56507, '2022-02-04', 2681, 53773, 3738, 49028, '2.0000', '12.5555', '12.5555', '16.5000', '16.5000', '7.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56508, '2022-02-04', 8677, 53774, 3738, 49108, '2.0000', '2.2418', '2.2418', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56509, '2022-02-04', 1502, 53775, 3738, 46563, '1.0000', '-13.4526', '-13.4526', '11.0000', '11.0000', '14.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56510, '2022-02-04', 1409, 53776, 3738, 49528, '1.0000', '13.0756', '13.0756', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56511, '2022-02-04', 1602, 53777, 3739, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56512, '2022-02-04', 2169, 53778, 3739, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '82.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56513, '2022-02-04', 2136, 53779, 3739, 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 (56514, '2022-02-04', 9775, 53780, 3739, NULL, '1.0000', '7.9000', '7.9000', '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 (56515, '2022-02-04', 7391, 53781, 3739, NULL, '1.0000', '15.6000', '15.6000', '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 (56516, '2022-02-04', 2085, 53782, 3739, NULL, '5.0000', '3.1057', '3.1057', '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 (56517, '2022-02-04', 1828, 53783, 3739, 19855, '1.0000', '0.7300', '0.7300', '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 (56518, '2022-02-04', 1863, 53784, 3739, 49716, '1.0000', '1.3799', '1.3799', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56519, '2022-02-04', 9754, 53785, 3739, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56520, '2022-02-04', 2284, 53786, 3739, 49646, '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 (56521, '2022-02-04', 1425, 53787, 3739, NULL, '1.0000', '5.0176', '5.0176', '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 (56522, '2022-02-04', 2131, 53788, 3739, 44163, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56523, '2022-02-04', 8746, 53789, 3739, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56524, '2022-02-04', 2009, 53790, 3739, 44153, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56525, '2022-02-04', 2355, 53791, 3739, 42084, '3.0000', '5.4200', '5.4200', '7.2000', '7.2000', '7.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56526, '2022-02-04', 1912, 53792, 3739, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56527, '2022-02-04', 1697, 53793, 3739, 34610, '1.0000', '24.8800', '24.8800', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56528, '2022-02-04', 1811, 53794, 3739, 42078, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '6.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56529, '2022-02-04', 2655, 53795, 3739, 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 (56530, '2022-02-04', 2280, 53796, 3739, NULL, '1.0000', '18.8857', '18.8857', '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 (56531, '2022-02-04', 8638, 53797, 3739, NULL, '1.0000', '0.5100', '0.5100', '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 (56532, '2022-02-04', 2643, 53798, 3739, 49624, '1.0000', '0.8700', '0.8700', '1.2000', '1.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 (56533, '2022-02-04', 8454, 53799, 3739, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56534, '2022-02-04', 2135, 53800, 3739, 18930, '1.0000', '2.4732', '2.4732', '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 (56535, '2022-02-04', 1621, 53801, 3739, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '36.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56536, '2022-02-04', 2169, 53802, 3740, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '80.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56537, '2022-02-04', 7628, 53803, 3741, NULL, '2.0000', '2.2900', '2.2900', '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 (56538, '2022-02-04', 8054, 53804, 3741, NULL, '2.0000', '16.0000', '16.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 (56539, '2022-02-04', 8208, 53805, 3741, NULL, '2.0000', '33.0000', '33.0000', '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 (56540, '2022-02-04', 7591, 53806, 3741, NULL, '1.0000', '2.7500', '2.7500', '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 (56541, '2022-02-04', 7334, 53807, 3741, NULL, '6.0000', '8.2300', '8.2300', '11.0000', '11.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 (56542, '2022-02-04', 8344, 53808, 3741, NULL, '2.0000', '18.3800', '18.3800', '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 (56543, '2022-02-04', 8187, 53809, 3741, NULL, '3.0000', '14.3900', '14.3900', '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 (56544, '2022-02-04', 7531, 53810, 3741, NULL, '1.0000', '3.1900', '3.1900', '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 (56545, '2022-02-04', 9245, 53811, 3741, NULL, '1.0000', '6.6100', '6.6100', '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 (56546, '2022-02-04', 8308, 53812, 3741, NULL, '1.0000', '2.0800', '2.0800', '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 (56547, '2022-02-04', 7720, 53813, 3741, 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 (56548, '2022-02-04', 7848, 53814, 3741, NULL, '1.0000', '1.3500', '1.3500', '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 (56549, '2022-02-04', 9193, 53815, 3741, NULL, '1.0000', '10.0000', '10.0000', '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 (56550, '2022-02-04', 8941, 53816, 3741, NULL, '1.0000', '12.0000', '12.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 (56551, '2022-02-04', 2315, 53817, 3741, 2735, '-152.0000', '0.3300', '0.3300', '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 (56552, '2022-02-04', 2315, 53817, 3741, NULL, '155.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56553, '2022-02-04', 9413, 53818, 3741, 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 (56554, '2022-02-04', 8942, 53819, 3741, NULL, '1.0000', '4.4000', '4.4000', '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 (56555, '2022-02-04', 2289, 53820, 3741, 2949, '-65.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 (56556, '2022-02-04', 2289, 53820, 3741, NULL, '67.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56557, '2022-02-04', 1840, 53821, 3741, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (56558, '2022-02-04', 1841, 53822, 3741, 645, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '4.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 (56559, '2022-02-04', 7506, 53823, 3741, NULL, '1.0000', '15.0000', '15.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 (56560, '2022-02-04', 8765, 53824, 3741, 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 (56561, '2022-02-04', 1388, 53825, 3741, 22361, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (56562, '2022-02-04', 8359, 53826, 3742, NULL, '1.0000', '-3070.2788', '-3070.2788', '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 (56563, '2022-02-04', 9001, 53827, 3742, NULL, '1.0000', '4.3300', '4.3300', '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 (56564, '2022-02-04', 8036, 53828, 3742, 43439, '1.0000', '6.5100', '6.5100', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56565, '2022-02-04', 1501, 53829, 3742, 49770, '1.0000', '2.3071', '2.3071', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56566, '2022-02-04', 7317, 53830, 3742, 46942, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56567, '2022-02-04', 7428, 53831, 3742, 49757, '4.0000', '3.9788', '3.9788', '4.5000', '4.5000', '146.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56568, '2022-02-04', 7848, 53832, 3742, NULL, '1.0000', '-17.3215', '-17.3215', '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 (56569, '2022-02-04', 7548, 53833, 3742, NULL, '1.0000', '1.9507', '1.9507', '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 (56570, '2022-02-04', 8673, 53834, 3742, 47904, '1.0000', '20.0000', '20.0000', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56571, '2022-02-04', 7743, 53835, 3742, NULL, '2.0000', '419203.7668', '419203.7668', '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 (56572, '2022-02-04', 9274, 53836, 3742, NULL, '1.0000', '3.5638', '3.5638', '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 (56573, '2022-02-04', 1841, 53837, 3742, 48007, '4.0000', '0.1792', '0.1792', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56574, '2022-02-04', 2289, 53838, 3742, NULL, '4.0000', '0.9629', '0.9629', '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 (56575, '2022-02-04', 2315, 53839, 3742, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '18.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56576, '2022-02-04', 8826, 53840, 3742, NULL, '1.0000', '6.0000', '6.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 (56577, '2022-02-04', 7720, 53841, 3742, 46017, '1.0000', '5.8333', '5.8333', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56578, '2022-02-04', 7672, 53842, 3742, NULL, '1.0000', '3.8200', '3.8200', '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 (56579, '2022-02-04', 7666, 53843, 3742, NULL, '1.0000', '-1.5200', '-1.5200', '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 (56580, '2022-02-04', 7590, 53844, 3742, NULL, '1.0000', '4.3600', '4.3600', '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 (56581, '2022-02-04', 7611, 53845, 3742, 47934, '1.0000', '4.6669', '4.6669', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56582, '2022-02-04', 7583, 53846, 3742, 45312, '1.0000', '-0.4828', '-0.4828', '0.9900', '0.9900', '28.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56583, '2022-02-04', 7848, 53847, 3742, NULL, '1.0000', '-17.3215', '-17.3215', '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 (56584, '2022-02-04', 7672, 53848, 3742, NULL, '1.0000', '3.8200', '3.8200', '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 (56585, '2022-02-04', 2024, 53849, 3742, 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 (56586, '2022-02-04', 9650, 53850, 3742, 43132, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56587, '2022-02-04', 8886, 53851, 3742, NULL, '1.0000', '27.0000', '27.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 (56588, '2022-02-04', 8765, 53852, 3742, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56589, '2022-02-04', 7514, 53853, 3742, NULL, '1.0000', '65.8461', '65.8461', '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 (56590, '2022-02-04', 8203, 53854, 3742, NULL, '2.0000', '2.3282', '2.3282', '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 (56591, '2022-02-04', 7317, 53855, 3742, 46942, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56592, '2022-02-04', 8941, 53856, 3742, NULL, '2.0000', '12.0000', '12.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 (56593, '2022-02-04', 8704, 53857, 3742, NULL, '1.0000', '6.0500', '6.0500', '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 (56594, '2022-02-04', 7506, 53858, 3742, NULL, '1.0000', '15.0000', '15.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 (56595, '2022-02-04', 9339, 53859, 3742, NULL, '1.0000', '7.2200', '7.2200', '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 (56596, '2022-02-04', 9271, 53860, 3742, 46698, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56597, '2022-02-04', 7317, 53861, 3742, 46942, '1.0000', '20.3569', '20.3569', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56598, '2022-02-04', 7780, 53862, 3742, NULL, '1.0000', '-8.7461', '-8.7461', '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 (56599, '2022-02-04', 7703, 53863, 3742, NULL, '16.0000', '102.7757', '102.7757', '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 (56600, '2022-02-04', 8743, 53864, 3742, NULL, '1.0000', '9.6250', '9.6250', '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 (56601, '2022-02-04', 2299, 53865, 3742, 48022, '1.0000', '6.5400', '6.5400', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56602, '2022-02-04', 2148, 53866, 3742, 43530, '1.0000', '37.8125', '37.8125', '55.5000', '55.5000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56603, '2022-02-04', 8411, 53867, 3742, NULL, '1.0000', '8.8100', '8.8100', '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 (56604, '2022-02-04', 8308, 53868, 3742, NULL, '1.0000', '14.1857', '14.1857', '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 (56605, '2022-02-04', 8011, 53869, 3742, NULL, '1.0000', '0.9500', '0.9500', '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 (56606, '2022-02-04', 7588, 53870, 3742, NULL, '1.0000', '7.3387', '7.3387', '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 (56607, '2022-02-04', 8951, 53871, 3742, NULL, '1.0000', '9.0000', '9.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 (56608, '2022-02-04', 9337, 53872, 3742, 48301, '1.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56609, '2022-02-04', 7514, 53873, 3742, NULL, '1.0000', '65.8461', '65.8461', '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 (56610, '2022-02-04', 7411, 53874, 3742, NULL, '2.0000', '1.3600', '1.3600', '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 (56611, '2022-02-04', 7962, 53875, 3742, 38177, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56612, '2022-02-04', 7380, 53876, 3742, NULL, '1.0000', '8.0000', '8.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 (56613, '2022-02-04', 9191, 53877, 3742, 48816, '1.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56614, '2022-02-04', 9740, 53878, 3742, 46921, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56615, '2022-02-04', 3022, 53879, 3742, 46226, '1.0000', '4.2199', '4.2199', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56616, '2022-02-04', 8739, 53880, 3742, NULL, '1.0000', '4.3200', '4.3200', '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 (56617, '2022-02-04', 8170, 53881, 3742, 46670, '1.0000', '5.6600', '5.6600', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56618, '2022-02-04', 7672, 53882, 3742, NULL, '1.0000', '3.8200', '3.8200', '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 (56619, '2022-02-04', 8970, 53883, 3742, NULL, '1.0000', '-26.3000', '-26.3000', '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 (56620, '2022-02-04', 8444, 53884, 3742, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56621, '2022-02-04', 9791, 53885, 3742, 49771, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '148.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56622, '2022-02-04', 1837, 53886, 3742, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56623, '2022-02-04', 7675, 53887, 3742, NULL, '1.0000', '84.8590', '84.8590', '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 (56624, '2022-02-04', 7915, 53888, 3742, NULL, '1.0000', '2.8000', '2.8000', '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 (56625, '2022-02-04', 7411, 53889, 3742, NULL, '3.0000', '1.3600', '1.3600', '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 (56626, '2022-02-04', 7524, 53890, 3742, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56627, '2022-02-04', 9204, 53891, 3743, NULL, '2.0000', '8.1600', '8.1600', '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 (56628, '2022-02-04', 1746, 53892, 3743, 19863, '2.0000', '3.5000', '3.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 (56629, '2022-02-04', 2315, 53893, 3743, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '224.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56630, '2022-02-04', 7769, 53894, 3743, 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 (56631, '2022-02-04', 7482, 53895, 3743, NULL, '1.0000', '2.8136', '2.8136', '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 (56632, '2022-02-04', 2169, 53896, 3743, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56633, '2022-02-04', 8677, 53897, 3743, NULL, '2.0000', '292.4641', '292.4641', '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 (56634, '2022-02-04', 1812, 53898, 3743, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56635, '2022-02-04', 2821, 53899, 3743, NULL, '1.0000', '3.4701', '3.4701', '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 (56636, '2022-02-04', 7411, 53900, 3743, NULL, '1.0000', '1.3013', '1.3013', '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 (56637, '2022-02-04', 8355, 53901, 3743, NULL, '1.0000', '22.0000', '22.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 (56638, '2022-02-04', 8740, 53902, 3743, 40007, '1.0000', '1.8343', '1.8343', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56639, '2022-02-04', 9556, 53903, 3743, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56640, '2022-02-04', 9750, 53904, 3743, NULL, '1.0000', '3.3000', '3.3000', '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 (56641, '2022-02-04', 7411, 53905, 3743, NULL, '1.0000', '1.3013', '1.3013', '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 (56642, '2022-02-04', 2924, 53906, 3743, NULL, '1.0000', '6.5800', '6.5800', '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 (56643, '2022-02-04', 2223, 53907, 3743, NULL, '1.0000', '10.7140', '10.7140', '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 (56644, '2022-02-04', 9736, 53908, 3743, 47093, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56645, '2022-02-04', 7482, 53909, 3743, NULL, '1.0000', '2.8136', '2.8136', '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 (56646, '2022-02-04', 7641, 53910, 3743, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56647, '2022-02-04', 3016, 53911, 3743, 48164, '1.0000', '14.9500', '14.9500', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56648, '2022-02-04', 7459, 53912, 3743, NULL, '20.0000', '-6.1729', '-6.1729', '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 (56649, '2022-02-04', 2315, 53913, 3743, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '224.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56650, '2022-02-04', 2169, 53914, 3743, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56651, '2022-02-04', 7756, 53915, 3743, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56652, '2022-02-04', 8933, 53916, 3743, 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 (56653, '2022-02-04', 1618, 53917, 3743, NULL, '1.0000', '157.5078', '157.5078', '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 (56654, '2022-02-04', 1670, 53918, 3743, NULL, '1.0000', '19.0833', '19.0833', '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 (56655, '2022-02-04', 7483, 53919, 3743, 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 (56656, '2022-02-04', 8677, 53920, 3743, NULL, '2.0000', '292.4641', '292.4641', '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 (56657, '2022-02-04', 2236, 53921, 3743, NULL, '1.0000', '9.3108', '9.3108', '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 (56658, '2022-02-04', 2695, 53922, 3743, NULL, '2.0000', '2.0000', '2.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 (56659, '2022-02-04', 7411, 53923, 3743, NULL, '1.0000', '1.3013', '1.3013', '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 (56660, '2022-02-04', 9556, 53924, 3743, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56661, '2022-02-04', 2169, 53925, 3743, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56662, '2022-02-04', 7359, 53926, 3743, NULL, '1.0000', '20.0000', '20.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 (56663, '2022-02-04', 8744, 53927, 3743, 49674, '1.0000', '-0.5256', '-0.5256', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56664, '2022-02-04', 7612, 53928, 3743, NULL, '3.0000', '1.7300', '1.7300', '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 (56665, '2022-02-04', 1307, 53929, 3743, NULL, '1.0000', '0.6103', '0.6103', '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 (56666, '2022-02-04', 3057, 53930, 3743, 24958, '4.0000', '2.7000', '2.7000', '4.5000', '4.5000', '18.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 (56667, '2022-02-04', 8188, 53931, 3743, 45271, '1.0000', '0.9180', '0.9180', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56668, '2022-02-04', 1412, 53932, 3743, 48991, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56669, '2022-02-04', 9734, 53933, 3743, 47079, '16.0000', '0.3200', '0.3200', '0.5000', '0.5000', '21.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56670, '2022-02-04', 2272, 53934, 3743, NULL, '2.0000', '5.5000', '5.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 (56671, '2022-02-04', 1574, 53935, 3743, 48648, '10.0000', '1.7000', '1.7000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56672, '2022-02-04', 9734, 53936, 3743, 47079, '6.0000', '0.3200', '0.3200', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56673, '2022-02-04', 1499, 53937, 3743, 49347, '1.0000', '0.3411', '0.3411', '0.6000', '0.6000', '11.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56674, '2022-02-04', 2280, 53938, 3743, NULL, '2.0000', '18.8857', '18.8857', '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 (56675, '2022-02-04', 1519, 53939, 3743, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56676, '2022-02-04', 8609, 53940, 3743, 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 (56677, '2022-02-04', 7411, 53941, 3743, NULL, '1.0000', '1.3013', '1.3013', '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 (56678, '2022-02-04', 1828, 53942, 3743, 19855, '2.0000', '0.7300', '0.7300', '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 (56679, '2022-02-04', 7673, 53943, 3743, NULL, '1.0000', '15.5000', '15.5000', '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 (56680, '2022-02-04', 2167, 53944, 3743, NULL, '1.0000', '2.1310', '2.1310', '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 (56681, '2022-02-04', 8548, 53945, 3743, NULL, '1.0000', '12.0000', '12.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 (56682, '2022-02-04', 2733, 53946, 3743, 19362, '1.0000', '7.5000', '7.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 (56683, '2022-02-04', 2547, 53947, 3743, 49375, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56684, '2022-02-04', 2315, 53948, 3743, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '224.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56685, '2022-02-04', 2496, 53949, 3743, NULL, '2.0000', '0.5900', '0.5900', '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 (56686, '2022-02-04', 7368, 53950, 3743, 42096, '1.0000', '21.4500', '21.4500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56687, '2022-02-04', 7585, 53951, 3743, NULL, '1.0000', '3.9600', '3.9600', '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 (56688, '2022-02-04', 1969, 53952, 3743, NULL, '1.0000', '4.3300', '4.3300', '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 (56689, '2022-02-04', 7411, 53953, 3743, NULL, '1.0000', '1.3013', '1.3013', '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 (56690, '2022-02-04', 7514, 53954, 3743, NULL, '1.0000', '2.2500', '2.2500', '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 (56691, '2022-02-04', 2713, 53955, 3743, 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 (56692, '2022-02-04', 8444, 53956, 3744, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56693, '2022-02-04', 7522, 53957, 3744, NULL, '1.0000', '5.2000', '5.2000', '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 (56694, '2022-02-04', 7672, 53958, 3744, NULL, '1.0000', '3.8200', '3.8200', '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 (56695, '2022-02-04', 7524, 53959, 3744, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56696, '2022-02-04', 9177, 53960, 3744, NULL, '10.0000', '2.2517', '2.2517', '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 (56697, '2022-02-04', 8053, 53961, 3744, 37844, '3.0000', '1.7988', '1.7988', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56698, '2022-02-04', 8057, 53962, 3744, NULL, '1.0000', '6.0000', '6.0000', '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 (56699, '2022-02-04', 2699, 53963, 3744, 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 (56700, '2022-02-04', 9758, 53964, 3744, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56701, '2022-02-04', 7848, 53965, 3744, NULL, '1.0000', '-17.3215', '-17.3215', '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 (56702, '2022-02-04', 2887, 53966, 3745, 47130, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56703, '2022-02-04', 7411, 53967, 3745, NULL, '1.0000', '1.3013', '1.3013', '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 (56704, '2022-02-04', 2315, 53968, 3745, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '221.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56705, '2022-02-04', 1665, 53969, 3746, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56706, '2022-02-04', 9577, 53970, 3746, 38070, '1.0000', '0.3200', '0.3200', '0.8000', '0.8000', '21.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56707, '2022-02-04', 2243, 53971, 3746, 3065, '1.0000', '3.5000', '3.5000', '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 (56708, '2022-02-04', 2633, 53972, 3746, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56709, '2022-02-04', 1651, 53973, 3746, 48792, '1.0000', '6.7088', '6.7088', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56710, '2022-02-04', 2169, 53974, 3746, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56711, '2022-02-04', 2315, 53975, 3746, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '199.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56712, '2022-02-04', 1841, 53976, 3746, 44579, '1.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56713, '2022-02-04', 1525, 53977, 3746, 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 (56714, '2022-02-04', 1844, 53978, 3746, 4976, '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 (56715, '2022-02-04', 2821, 53979, 3746, 49245, '1.0000', '3.4487', '3.4487', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56716, '2022-02-04', 2642, 53980, 3746, 35923, '1.0000', '7.4583', '7.4583', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56717, '2022-02-04', 1864, 53981, 3746, 49124, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56718, '2022-02-04', 1494, 53982, 3746, 34684, '1.0000', '9.2896', '9.2896', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56719, '2022-02-04', 2237, 53983, 3746, 46708, '1.0000', '1.4654', '1.4654', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56720, '2022-02-04', 2167, 53984, 3746, 48783, '1.0000', '2.3022', '2.3022', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56721, '2022-02-04', 7390, 53985, 3746, NULL, '1.0000', '5.8300', '5.8300', '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 (56722, '2022-02-04', 2633, 53986, 3746, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56723, '2022-02-04', 7746, 53987, 3746, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56724, '2022-02-04', 8013, 53988, 3746, 47991, '1.0000', '3.6500', '3.6500', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56725, '2022-02-04', 3035, 53989, 3746, 49471, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56726, '2022-02-04', 9731, 53990, 3746, 46034, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56727, '2022-02-04', 8756, 53991, 3746, 42940, '2.0000', '7.2778', '7.2778', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56728, '2022-02-04', 7848, 53992, 3746, 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 (56729, '2022-02-04', 9711, 53993, 3746, NULL, '1.0000', '5.2800', '5.2800', '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 (56730, '2022-02-04', 3057, 53994, 3746, 49066, '2.0000', '3.2700', '3.2700', '4.5000', '4.5000', '34.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56731, '2022-02-04', 1608, 53995, 3746, 49148, '1.0000', '4.2430', '4.2430', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56732, '2022-02-04', 2695, 53996, 3746, 45122, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '54.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56733, '2022-02-04', 8775, 53997, 3746, 42927, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56734, '2022-02-04', 2858, 53998, 3746, 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 (56735, '2022-02-05', 2154, 53999, 3747, 49536, '1.0000', '11.4815', '11.4815', '14.5200', '14.5200', '5.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56736, '2022-02-05', 8774, 54000, 3747, NULL, '1.0000', '8.0000', '8.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 (56737, '2022-02-05', 7824, 54001, 3747, 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 (56738, '2022-02-05', 9740, 54002, 3747, 46037, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56739, '2022-02-05', 7482, 54003, 3747, NULL, '1.0000', '3.0500', '3.0500', '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 (56740, '2022-02-05', 2699, 54004, 3747, 45624, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56741, '2022-02-05', 1519, 54005, 3748, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56742, '2022-02-05', 2109, 54006, 3748, 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 (56743, '2022-02-05', 9711, 54007, 3748, 44459, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56744, '2022-02-05', 1342, 54008, 3748, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56745, '2022-02-05', 2136, 54009, 3748, 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 (56746, '2022-02-05', 1310, 54010, 3748, 49358, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56747, '2022-02-05', 2167, 54011, 3748, NULL, '1.0000', '2.1310', '2.1310', '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 (56748, '2022-02-05', 2277, 54012, 3748, NULL, '1.0000', '0.9399', '0.9399', '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 (56749, '2022-02-05', 2405, 54013, 3748, 37770, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '43.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56750, '2022-02-05', 1812, 54014, 3748, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56751, '2022-02-05', 9478, 54015, 3748, 32539, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56752, '2022-02-05', 8740, 54016, 3748, 40007, '1.0000', '1.8343', '1.8343', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56753, '2022-02-05', 1602, 54017, 3748, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56754, '2022-02-05', 2948, 54018, 3748, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56755, '2022-02-05', 1499, 54019, 3748, 49347, '1.0000', '0.3411', '0.3411', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56756, '2022-02-05', 2379, 54020, 3748, NULL, '1.0000', '1.0877', '1.0877', '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 (56757, '2022-02-05', 9748, 54021, 3748, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56758, '2022-02-05', 2315, 54022, 3748, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '220.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56759, '2022-02-05', 1999, 54023, 3748, 49625, '1.0000', '6.8730', '6.8730', '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 (56760, '2022-02-05', 1425, 54024, 3748, NULL, '1.0000', '5.0176', '5.0176', '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 (56761, '2022-02-05', 1812, 54025, 3748, 49332, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56762, '2022-02-05', 9399, 54026, 3748, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56763, '2022-02-05', 8702, 54027, 3748, NULL, '1.0000', '3.6700', '3.6700', '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 (56764, '2022-02-05', 9734, 54028, 3748, 47079, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56765, '2022-02-05', 1785, 54029, 3748, 49370, '1.0000', '15.5500', '15.5500', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56766, '2022-02-05', 7769, 54030, 3748, 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 (56767, '2022-02-05', 1534, 54031, 3748, NULL, '1.0000', '9.8500', '9.8500', '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 (56768, '2022-02-05', 1530, 54032, 3749, 49075, '1.0000', '49.1094', '49.1094', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56769, '2022-02-05', 1425, 54033, 3749, 49167, '1.0000', '7.0340', '7.0340', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56770, '2022-02-05', 2068, 54034, 3749, 45081, '1.0000', '11.7734', '11.7734', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56771, '2022-02-05', 1550, 54035, 3749, 49071, '1.0000', '125.2154', '125.2154', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56772, '2022-02-05', 1674, 54036, 3749, 49556, '1.0000', '14.5864', '14.5864', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56773, '2022-02-05', 1954, 54037, 3749, 47998, '1.0000', '-11.3000', '-11.3000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56774, '2022-02-05', 1440, 54038, 3749, 49476, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56775, '2022-02-05', 2068, 54039, 3749, 45081, '1.0000', '11.7734', '11.7734', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56776, '2022-02-05', 9750, 54040, 3749, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '48.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56777, '2022-02-05', 2320, 54041, 3749, 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 (56778, '2022-02-05', 9715, 54042, 3749, 46036, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56779, '2022-02-05', 1337, 54043, 3749, 47979, '2.0000', '1.9543', '1.9543', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56780, '2022-02-05', 1839, 54044, 3749, 48750, '1.0000', '7.4430', '7.4430', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56781, '2022-02-05', 2411, 54045, 3750, 45089, '1.0000', '1.3762', '1.3762', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56782, '2022-02-05', 8325, 54046, 3751, NULL, '1.0000', '6.3350', '6.3350', '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 (56783, '2022-02-05', 8645, 54047, 3751, 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 (56784, '2022-02-05', 9337, 54048, 3751, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56785, '2022-02-05', 8208, 54049, 3751, NULL, '4.0000', '33.0000', '33.0000', '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 (56786, '2022-02-05', 9094, 54050, 3751, NULL, '1.0000', '5.7002', '5.7002', '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 (56787, '2022-02-05', 7820, 54051, 3751, NULL, '1.0000', '-1586.6000', '-1586.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56788, '2022-02-05', 7744, 54052, 3751, NULL, '1.0000', '2.7400', '2.7400', '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 (56789, '2022-02-05', 9779, 54053, 3751, 49745, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56790, '2022-02-05', 8276, 54054, 3751, 49730, '1.0000', '12.3574', '12.3574', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56791, '2022-02-05', 9320, 54055, 3751, 47905, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56792, '2022-02-05', 7708, 54056, 3751, NULL, '1.0000', '2.3100', '2.3100', '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 (56793, '2022-02-05', 8359, 54057, 3751, NULL, '1.0000', '-3070.2788', '-3070.2788', '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 (56794, '2022-02-05', 8753, 54058, 3751, 44232, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56795, '2022-02-05', 1841, 54059, 3751, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56796, '2022-02-05', 9747, 54060, 3751, 46923, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56797, '2022-02-05', 7608, 54061, 3751, NULL, '1.0000', '6.9800', '6.9800', '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 (56798, '2022-02-05', 7759, 54062, 3751, NULL, '1.0000', '19.5000', '19.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 (56799, '2022-02-05', 8340, 54063, 3751, NULL, '6.0000', '23.9100', '23.9100', '3.0000', '3.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 (56800, '2022-02-05', 1782, 54064, 3751, 46628, '2.0000', '-0.2748', '-0.2748', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56801, '2022-02-05', 8208, 54065, 3751, NULL, '2.0000', '33.0000', '33.0000', '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 (56802, '2022-02-05', 2315, 54066, 3751, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '16.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56803, '2022-02-05', 7428, 54067, 3751, 49757, '2.0000', '3.9788', '3.9788', '4.5000', '4.5000', '144.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56804, '2022-02-05', 9734, 54068, 3751, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '108.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56805, '2022-02-05', 7674, 54069, 3751, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56806, '2022-02-05', 8083, 54070, 3751, 49404, '1.0000', '51.2300', '51.2300', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 372);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56807, '2022-02-05', 8821, 54071, 3751, NULL, '1.0000', '15.0000', '15.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 (56808, '2022-02-05', 7674, 54072, 3751, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56809, '2022-02-05', 7532, 54073, 3751, NULL, '1.0000', '1.9999', '1.9999', '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 (56810, '2022-02-05', 7744, 54074, 3751, NULL, '2.0000', '2.7400', '2.7400', '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 (56811, '2022-02-05', 7412, 54075, 3751, NULL, '1.0000', '1.5200', '1.5200', '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 (56812, '2022-02-05', 7695, 54076, 3751, NULL, '1.0000', '3.9400', '3.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 (56813, '2022-02-05', 7446, 54077, 3751, 30057, '1.0000', '1.3100', '1.3100', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56814, '2022-02-05', 7642, 54078, 3751, 46653, '1.0000', '5.9200', '5.9200', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56815, '2022-02-05', 7675, 54079, 3751, NULL, '3.0000', '84.8590', '84.8590', '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 (56816, '2022-02-05', 7782, 54080, 3751, NULL, '1.0000', '5.0000', '5.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 (56817, '2022-02-05', 8188, 54081, 3751, NULL, '1.0000', '6.7000', '6.7000', '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 (56818, '2022-02-05', 8608, 54082, 3751, NULL, '2.0000', '5.7400', '5.7400', '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 (56819, '2022-02-05', 7954, 54083, 3751, NULL, '4.0000', '24.4161', '24.4161', '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 (56820, '2022-02-05', 1728, 54084, 3751, 47950, '11.0000', '-95.4737', '-95.4737', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56821, '2022-02-05', 7991, 54085, 3751, NULL, '1.0000', '26.5700', '26.5700', '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 (56822, '2022-02-05', 7380, 54086, 3751, NULL, '1.0000', '8.0000', '8.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 (56823, '2022-02-05', 7333, 54087, 3751, NULL, '1.0000', '13.5000', '13.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 (56824, '2022-02-05', 7770, 54088, 3751, 45768, '1.0000', '-4.7700', '-4.7700', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56825, '2022-02-05', 7927, 54089, 3751, 46237, '1.0000', '11.8399', '11.8399', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56826, '2022-02-05', 7428, 54090, 3751, 49757, '3.0000', '3.9788', '3.9788', '4.5000', '4.5000', '143.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56827, '2022-02-05', 2699, 54091, 3751, 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 (56828, '2022-02-05', 7428, 54092, 3751, 49757, '4.0000', '3.9788', '3.9788', '4.5000', '4.5000', '142.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56829, '2022-02-05', 9417, 54093, 3751, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56830, '2022-02-05', 9729, 54094, 3751, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56831, '2022-02-05', 8119, 54095, 3751, 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 (56832, '2022-02-05', 7641, 54096, 3751, NULL, '1.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56833, '2022-02-05', 8940, 54097, 3751, NULL, '1.0000', '4.9900', '4.9900', '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 (56834, '2022-02-05', 8113, 54098, 3751, NULL, '5.0000', '29.5000', '29.5000', '3.2000', '3.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 (56835, '2022-02-05', 8214, 54099, 3751, NULL, '1.0000', '16.0000', '16.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 (56836, '2022-02-05', 1578, 54100, 3751, 49287, '1.0000', '2.0643', '2.0643', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56837, '2022-02-05', 7411, 54101, 3751, NULL, '1.0000', '1.3600', '1.3600', '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 (56838, '2022-02-05', 2284, 54102, 3751, 45302, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56839, '2022-02-05', 1337, 54103, 3751, 48105, '1.0000', '0.6544', '0.6544', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56840, '2022-02-05', 7415, 54104, 3751, NULL, '1.0000', '4.5501', '4.5501', '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 (56841, '2022-02-05', 7411, 54105, 3751, NULL, '1.0000', '1.3600', '1.3600', '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 (56842, '2022-02-05', 7518, 54106, 3751, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (56843, '2022-02-05', 9758, 54107, 3751, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56844, '2022-02-05', 7675, 54108, 3751, NULL, '1.0000', '84.8590', '84.8590', '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 (56845, '2022-02-05', 2299, 54109, 3751, 48022, '1.0000', '6.5400', '6.5400', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56846, '2022-02-05', 7886, 54110, 3751, NULL, '1.0000', '6.7841', '6.7841', '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 (56847, '2022-02-05', 2435, 54111, 3751, NULL, '1.0000', '4.8000', '4.8000', '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 (56848, '2022-02-05', 7714, 54112, 3751, NULL, '2.0000', '0.4200', '0.4200', '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 (56849, '2022-02-05', 7722, 54113, 3751, NULL, '1.0000', '3.5000', '3.5000', '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 (56850, '2022-02-05', 7723, 54114, 3751, NULL, '1.0000', '4.5000', '4.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 (56851, '2022-02-05', 7588, 54115, 3751, NULL, '1.0000', '7.3387', '7.3387', '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 (56852, '2022-02-05', 8498, 54116, 3751, NULL, '1.0000', '10.4000', '10.4000', '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 (56853, '2022-02-05', 7848, 54117, 3751, NULL, '1.0000', '-17.3215', '-17.3215', '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 (56854, '2022-02-05', 7673, 54118, 3751, NULL, '1.0000', '15.9274', '15.9274', '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 (56855, '2022-02-05', 7674, 54119, 3751, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56856, '2022-02-05', 8202, 54120, 3751, NULL, '1.0000', '1.6600', '1.6600', '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 (56857, '2022-02-05', 9729, 54121, 3751, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56858, '2022-02-05', 9762, 54122, 3752, 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 (56859, '2022-02-05', 7612, 54123, 3752, NULL, '3.0000', '1.7300', '1.7300', '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 (56860, '2022-02-05', 2103, 54124, 3752, 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 (56861, '2022-02-05', 7524, 54125, 3752, NULL, '1.0000', '11.9500', '11.9500', '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 (56862, '2022-02-05', 2068, 54126, 3752, NULL, '1.0000', '11.8658', '11.8658', '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 (56863, '2022-02-05', 2642, 54127, 3752, 49615, '1.0000', '9.3605', '9.3605', '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 (56864, '2022-02-05', 2761, 54128, 3752, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56865, '2022-02-05', 8638, 54129, 3752, NULL, '2.0000', '0.5100', '0.5100', '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 (56866, '2022-02-05', 7702, 54130, 3752, NULL, '1.0000', '0.4600', '0.4600', '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 (56867, '2022-02-05', 8879, 54131, 3752, 39777, '1.0000', '27.2712', '27.2712', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56868, '2022-02-05', 1687, 54132, 3752, 49633, '1.0000', '11.5480', '11.5480', '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 (56869, '2022-02-05', 1980, 54133, 3752, 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 (56870, '2022-02-05', 9644, 54134, 3752, 41422, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56871, '2022-02-05', 9647, 54135, 3752, 41425, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56872, '2022-02-05', 2037, 54136, 3752, 49613, '1.0000', '10.7500', '10.7500', '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 (56873, '2022-02-05', 9734, 54137, 3752, 47079, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56874, '2022-02-05', 7514, 54138, 3752, NULL, '1.0000', '2.2500', '2.2500', '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 (56875, '2022-02-05', 1347, 54139, 3752, 41415, '4.0000', '3.3775', '3.3775', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56876, '2022-02-05', 8223, 54140, 3752, NULL, '1.0000', '1.5000', '1.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 (56877, '2022-02-05', 1425, 54141, 3752, NULL, '1.0000', '5.0176', '5.0176', '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 (56878, '2022-02-05', 1311, 54142, 3752, 49359, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56879, '2022-02-05', 1763, 54143, 3752, NULL, '1.0000', '4.6900', '4.6900', '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 (56880, '2022-02-05', 8746, 54144, 3752, 45281, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56881, '2022-02-05', 9654, 54145, 3752, 42106, '1.0000', '18.1100', '18.1100', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56882, '2022-02-05', 1602, 54146, 3752, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56883, '2022-02-05', 7736, 54147, 3752, 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 (56884, '2022-02-05', 9202, 54148, 3752, NULL, '3.0000', '3.5000', '3.5000', '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 (56885, '2022-02-05', 2762, 54149, 3752, NULL, '1.0000', '7.1000', '7.1000', '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 (56886, '2022-02-05', 7779, 54150, 3752, NULL, '1.0000', '0.6200', '0.6200', '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 (56887, '2022-02-05', 2749, 54151, 3752, 47111, '1.0000', '27.0867', '27.0867', '35.5000', '35.5000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56888, '2022-02-05', 9409, 54152, 3752, NULL, '1.0000', '5.7000', '5.7000', '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 (56889, '2022-02-05', 1665, 54153, 3752, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56890, '2022-02-05', 9470, 54154, 3752, NULL, '1.0000', '9.7867', '9.7867', '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 (56891, '2022-02-05', 7411, 54155, 3752, NULL, '1.0000', '1.3013', '1.3013', '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 (56892, '2022-02-05', 7743, 54156, 3752, NULL, '1.0000', '7.3900', '7.3900', '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 (56893, '2022-02-05', 7483, 54157, 3752, NULL, '1.0000', '0.4200', '0.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 (56894, '2022-02-05', 2660, 54158, 3752, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56895, '2022-02-05', 2695, 54159, 3752, 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 (56896, '2022-02-05', 2237, 54160, 3752, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56897, '2022-02-05', 9556, 54161, 3752, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56898, '2022-02-05', 7514, 54162, 3752, NULL, '1.0000', '2.2500', '2.2500', '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 (56899, '2022-02-05', 2315, 54163, 3752, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '218.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56900, '2022-02-05', 2315, 54164, 3752, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '219.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56901, '2022-02-05', 8085, 54165, 3752, NULL, '3.0000', '14.0000', '14.0000', '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 (56902, '2022-02-05', 7411, 54166, 3752, NULL, '1.0000', '1.3013', '1.3013', '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 (56903, '2022-02-05', 2020, 54167, 3752, NULL, '1.0000', '10.1614', '10.1614', '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 (56904, '2022-02-05', 1855, 54168, 3752, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56905, '2022-02-05', 1618, 54169, 3752, NULL, '1.0000', '157.5078', '157.5078', '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 (56906, '2022-02-05', 8077, 54170, 3752, 39839, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56907, '2022-02-05', 8183, 54171, 3752, NULL, '1.0000', '81.9100', '81.9100', '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 (56908, '2022-02-05', 2744, 54172, 3752, 19323, '1.0000', '9.9800', '9.9800', '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 (56909, '2022-02-05', 7411, 54173, 3752, NULL, '1.0000', '1.3013', '1.3013', '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 (56910, '2022-02-05', 8328, 54174, 3752, NULL, '1.0000', '8.1000', '8.1000', '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 (56911, '2022-02-05', 1674, 54175, 3752, NULL, '1.0000', '0.8028', '0.8028', '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 (56912, '2022-02-05', 9199, 54176, 3752, NULL, '1.0000', '5.4200', '5.4200', '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 (56913, '2022-02-05', 7756, 54177, 3752, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56914, '2022-02-05', 1810, 54178, 3752, 49323, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56915, '2022-02-05', 7328, 54179, 3752, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56916, '2022-02-05', 1840, 54180, 3752, NULL, '1.0000', '0.2400', '0.2400', '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 (56917, '2022-02-05', 2289, 54181, 3752, NULL, '1.0000', '0.3186', '0.3186', '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 (56918, '2022-02-05', 7524, 54182, 3752, NULL, '1.0000', '11.9500', '11.9500', '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 (56919, '2022-02-05', 2315, 54183, 3752, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '218.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56920, '2022-02-05', 2660, 54184, 3752, 49361, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56921, '2022-02-05', 2260, 54185, 3752, 49305, '2.0000', '4.2238', '4.2238', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56922, '2022-02-05', 2135, 54186, 3752, 18930, '1.0000', '2.4732', '2.4732', '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 (56923, '2022-02-05', 7743, 54187, 3752, NULL, '1.0000', '7.3900', '7.3900', '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 (56924, '2022-02-05', 7652, 54188, 3752, NULL, '8.0000', '40.3000', '40.3000', '1.3000', '1.3000', '-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 (56925, '2022-02-05', 7762, 54189, 3752, NULL, '1.0000', '5.1000', '5.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 (56926, '2022-02-05', 2169, 54190, 3752, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56927, '2022-02-05', 1339, 54191, 3752, 49355, '1.0000', '1.2000', '1.2000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56928, '2022-02-05', 2635, 54192, 3752, 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 (56929, '2022-02-05', 1969, 54193, 3752, NULL, '1.0000', '4.3300', '4.3300', '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 (56930, '2022-02-05', 8200, 54194, 3752, NULL, '1.0000', '8.5500', '8.5500', '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 (56931, '2022-02-05', 7641, 54195, 3752, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56932, '2022-02-05', 9758, 54196, 3752, NULL, '1.0000', '3.1400', '3.1400', '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 (56933, '2022-02-05', 7641, 54197, 3752, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56934, '2022-02-05', 7514, 54198, 3752, NULL, '1.0000', '2.2500', '2.2500', '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 (56935, '2022-02-05', 1935, 54199, 3752, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56936, '2022-02-05', 2761, 54200, 3752, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56937, '2022-02-05', 3067, 54201, 3752, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '24.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 (56938, '2022-02-05', 2302, 54202, 3752, 48638, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56939, '2022-02-05', 7652, 54203, 3752, NULL, '7.0000', '40.3000', '40.3000', '1.3000', '1.3000', '-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 (56940, '2022-02-05', 1665, 54204, 3753, 49242, '2.0000', '1.1871', '1.1871', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56941, '2022-02-05', 9734, 54205, 3753, 46028, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56942, '2022-02-05', 2989, 54206, 3753, 48775, '8.0000', '0.9200', '0.9200', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56943, '2022-02-05', 1602, 54207, 3753, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56944, '2022-02-05', 2221, 54208, 3753, 49454, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '23.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56945, '2022-02-05', 1904, 54209, 3753, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56946, '2022-02-05', 2360, 54210, 3753, 49128, '2.0000', '0.5200', '0.5200', '0.8000', '0.8000', '26.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56947, '2022-02-05', 1871, 54211, 3753, 49455, '10.0000', '6.7981', '6.7981', '3.0000', '3.0000', '90.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56948, '2022-02-05', 1782, 54212, 3753, 4935, '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 (56949, '2022-02-05', 2655, 54213, 3754, 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 (56950, '2022-02-05', 7411, 54214, 3754, NULL, '1.0000', '1.3013', '1.3013', '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 (56951, '2022-02-05', 1665, 54215, 3754, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56952, '2022-02-05', 2167, 54216, 3754, NULL, '3.0000', '2.1310', '2.1310', '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 (56953, '2022-02-05', 1665, 54217, 3754, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56954, '2022-02-05', 1425, 54218, 3754, NULL, '1.0000', '5.0176', '5.0176', '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 (56955, '2022-02-05', 3053, 54219, 3755, 24334, '10.0000', '1.4600', '1.4600', '2.0000', '2.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 (56956, '2022-02-05', 7411, 54220, 3756, NULL, '1.0000', '1.3600', '1.3600', '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 (56957, '2022-02-05', 9021, 54221, 3756, NULL, '1.0000', '7.0000', '7.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 (56958, '2022-02-05', 8200, 54222, 3756, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (56959, '2022-02-05', 8015, 54223, 3756, 46231, '7.0000', '2.6039', '2.6039', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56960, '2022-02-05', 7715, 54224, 3756, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '41.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56961, '2022-02-05', 7822, 54225, 3756, NULL, '1.0000', '8.0333', '8.0333', '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 (56962, '2022-02-05', 7509, 54226, 3756, 48827, '1.0000', '6.3733', '6.3733', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56963, '2022-02-05', 7593, 54227, 3756, 48087, '1.0000', '2.5263', '2.5263', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56964, '2022-02-05', 7323, 54228, 3756, 37386, '1.0000', '7.9800', '7.9800', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56965, '2022-02-05', 8972, 54229, 3756, NULL, '1.0000', '4.5000', '4.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 (56966, '2022-02-05', 9337, 54230, 3756, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56967, '2022-02-05', 9734, 54231, 3756, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '106.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56968, '2022-02-05', 7641, 54232, 3756, NULL, '2.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56969, '2022-02-05', 9748, 54233, 3756, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56970, '2022-02-05', 9092, 54234, 3756, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '108.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56971, '2022-02-05', 1855, 54235, 3756, 49820, '1.0000', '1.4365', '1.4365', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56972, '2022-02-05', 7714, 54236, 3756, NULL, '3.0000', '0.4200', '0.4200', '0.6000', '0.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 (56973, '2022-02-05', 1765, 54237, 3756, 48061, '1.0000', '5.4523', '5.4523', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56974, '2022-02-05', 7622, 54238, 3756, NULL, '1.0000', '17.8100', '17.8100', '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 (56975, '2022-02-05', 7888, 54239, 3756, NULL, '1.0000', '14.2363', '14.2363', '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 (56976, '2022-02-05', 8328, 54240, 3756, NULL, '1.0000', '8.0175', '8.0175', '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 (56977, '2022-02-05', 7684, 54241, 3756, NULL, '2.0000', '9.0000', '9.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 (56978, '2022-02-05', 2699, 54242, 3756, 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 (56979, '2022-02-05', 8203, 54243, 3756, NULL, '3.0000', '2.3282', '2.3282', '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 (56980, '2022-02-05', 7755, 54244, 3756, NULL, '1.0000', '-48.8467', '-48.8467', '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 (56981, '2022-02-05', 9631, 54245, 3756, 45866, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '11.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56982, '2022-02-05', 9631, 54246, 3756, 45866, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '11.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56983, '2022-02-05', 9290, 54247, 3756, NULL, '1.0000', '15.2700', '15.2700', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56984, '2022-02-05', 8957, 54248, 3756, NULL, '1.0000', '13.5000', '13.5000', '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 (56985, '2022-02-05', 1427, 54249, 3757, NULL, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56986, '2022-02-05', 8765, 54250, 3757, 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 (56987, '2022-02-05', 8740, 54251, 3757, NULL, '1.0000', '2.0000', '2.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 (56988, '2022-02-05', 7514, 54252, 3757, NULL, '2.0000', '2.2500', '2.2500', '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 (56989, '2022-02-06', 7708, 54253, 3758, NULL, '1.0000', '2.3100', '2.3100', '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 (56990, '2022-02-06', 8328, 54254, 3758, NULL, '1.0000', '8.0175', '8.0175', '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 (56991, '2022-02-06', 7518, 54255, 3758, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (56992, '2022-02-06', 2284, 54256, 3758, 45302, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56993, '2022-02-06', 2016, 54257, 3758, 33391, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 245);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56994, '2022-02-06', 8957, 54258, 3758, NULL, '1.0000', '13.5000', '13.5000', '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 (56995, '2022-02-06', 9409, 54259, 3758, NULL, '1.0000', '5.6784', '5.6784', '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 (56996, '2022-02-06', 7411, 54260, 3758, NULL, '1.0000', '1.3600', '1.3600', '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 (56997, '2022-02-06', 7707, 54261, 3758, NULL, '1.0000', '6.0018', '6.0018', '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 (56998, '2022-02-06', 7674, 54262, 3758, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56999, '2022-02-06', 7959, 54263, 3758, NULL, '2.0000', '9.6000', '9.6000', '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 (57000, '2022-02-06', 2315, 54264, 3758, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '15.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57001, '2022-02-06', 9734, 54265, 3758, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '104.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57002, '2022-02-06', 8243, 54266, 3758, NULL, '2.0000', '1.1400', '1.1400', '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 (57003, '2022-02-06', 9160, 54267, 3758, NULL, '1.0000', '41.6640', '41.6640', '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 (57004, '2022-02-06', 9250, 54268, 3758, NULL, '1.0000', '18.9800', '18.9800', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57005, '2022-02-06', 7674, 54269, 3758, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57006, '2022-02-06', 7385, 54270, 3758, 49756, '10.0000', '-2.2533', '-2.2533', '3.5000', '3.5000', '88.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57007, '2022-02-06', 8740, 54271, 3758, NULL, '1.0000', '2.0000', '2.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 (57008, '2022-02-06', 7915, 54272, 3758, NULL, '1.0000', '2.8000', '2.8000', '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 (57009, '2022-02-06', 9393, 54273, 3758, NULL, '2.0000', '15.0000', '15.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 (57010, '2022-02-06', 9092, 54274, 3758, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '106.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57011, '2022-02-06', 8363, 54275, 3758, NULL, '1.0000', '38.0000', '38.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 (57012, '2022-02-06', 7514, 54276, 3758, NULL, '1.0000', '65.8461', '65.8461', '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 (57013, '2022-02-06', 7558, 54277, 3758, NULL, '10.0000', '2.2000', '2.2000', '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 (57014, '2022-02-06', 9417, 54278, 3758, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57015, '2022-02-06', 7819, 54279, 3758, NULL, '1.0000', '17.5480', '17.5480', '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 (57016, '2022-02-06', 7524, 54280, 3758, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57017, '2022-02-06', 2100, 54281, 3758, NULL, '1.0000', '2.0531', '2.0531', '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 (57018, '2022-02-06', 7448, 54282, 3758, NULL, '1.0000', '15.8500', '15.8500', '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 (57019, '2022-02-06', 7641, 54283, 3758, NULL, '2.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57020, '2022-02-06', 7514, 54284, 3758, NULL, '2.0000', '65.8461', '65.8461', '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 (57021, '2022-02-06', 7638, 54285, 3758, 49728, '1.0000', '11.5604', '11.5604', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57022, '2022-02-06', 2733, 54286, 3758, NULL, '2.0000', '-5.0000', '-5.0000', '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 (57023, '2022-02-06', 1340, 54287, 3758, 49280, '1.0000', '4.3962', '4.3962', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57024, '2022-02-06', 7514, 54288, 3758, NULL, '1.0000', '65.8461', '65.8461', '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 (57025, '2022-02-06', 7671, 54289, 3758, NULL, '1.0000', '76.3606', '76.3606', '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 (57026, '2022-02-06', 7330, 54290, 3758, 29981, '1.0000', '3.0500', '3.0500', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57027, '2022-02-06', 7518, 54291, 3758, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (57028, '2022-02-06', 8395, 54292, 3758, NULL, '3.0000', '0.9700', '0.9700', '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 (57029, '2022-02-06', 7664, 54293, 3758, NULL, '1.0000', '6.7801', '6.7801', '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 (57030, '2022-02-06', 7317, 54294, 3758, NULL, '2.0000', '20.3569', '20.3569', '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 (57031, '2022-02-06', 7819, 54295, 3758, NULL, '1.0000', '17.5480', '17.5480', '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 (57032, '2022-02-06', 1350, 54296, 3758, NULL, '1.0000', '33.0000', '33.0000', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57033, '2022-02-06', 7707, 54297, 3758, NULL, '1.0000', '6.0018', '6.0018', '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 (57034, '2022-02-06', 7750, 54298, 3758, NULL, '1.0000', '22.7100', '22.7100', '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 (57035, '2022-02-06', 7532, 54299, 3759, NULL, '1.0000', '1.9999', '1.9999', '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 (57036, '2022-02-06', 7457, 54300, 3759, 46665, '3.0000', '3.6088', '3.6088', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57037, '2022-02-06', 7524, 54301, 3759, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57038, '2022-02-06', 9740, 54302, 3759, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57039, '2022-02-06', 8000, 54303, 3759, NULL, '1.0000', '384.5041', '384.5041', '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 (57040, '2022-02-06', 7641, 54304, 3759, NULL, '3.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-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 (57041, '2022-02-06', 9779, 54305, 3759, 49745, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57042, '2022-02-06', 8132, 54306, 3759, NULL, '1.0000', '4.7200', '4.7200', '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 (57043, '2022-02-06', 8677, 54307, 3759, NULL, '2.0000', '1.2300', '1.2300', '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 (57044, '2022-02-06', 7971, 54308, 3759, NULL, '1.0000', '42.0000', '42.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 (57045, '2022-02-06', 7456, 54309, 3759, 46166, '1.0000', '25.0000', '25.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57046, '2022-02-06', 7323, 54310, 3759, 37386, '2.0000', '7.9800', '7.9800', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57047, '2022-02-06', 7559, 54311, 3759, NULL, '14.0000', '6.0000', '6.0000', '9.0000', '9.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 (57048, '2022-02-06', 7378, 54312, 3759, 48367, '1.0000', '148.9000', '148.9000', '197.0000', '197.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57049, '2022-02-06', 9214, 54313, 3759, 43937, '3.0000', '9.4452', '9.4452', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57050, '2022-02-06', 2560, 54314, 3759, NULL, '1.0000', '17.0000', '17.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 (57051, '2022-02-06', 7448, 54315, 3759, NULL, '1.0000', '15.8500', '15.8500', '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 (57052, '2022-02-06', 2699, 54316, 3759, 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 (57053, '2022-02-06', 9740, 54317, 3759, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57054, '2022-02-06', 7637, 54318, 3759, 43161, '1.0000', '7.3252', '7.3252', '9.6800', '9.6800', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57055, '2022-02-06', 7635, 54319, 3759, 46904, '1.0000', '14.8224', '14.8224', '16.5000', '16.5000', '6.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57056, '2022-02-06', 8101, 54320, 3759, NULL, '2.0000', '21.7000', '21.7000', '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 (57057, '2022-02-06', 7608, 54321, 3759, NULL, '1.0000', '6.9800', '6.9800', '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 (57058, '2022-02-06', 7820, 54322, 3759, NULL, '1.0000', '-1586.6000', '-1586.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57059, '2022-02-06', 7411, 54323, 3759, NULL, '1.0000', '1.3600', '1.3600', '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 (57060, '2022-02-06', 7721, 54324, 3759, 44474, '4.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57061, '2022-02-06', 7743, 54325, 3759, NULL, '1.0000', '419203.7668', '419203.7668', '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 (57062, '2022-02-06', 8539, 54326, 3759, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '59.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57063, '2022-02-06', 7558, 54327, 3759, NULL, '5.0000', '2.2000', '2.2000', '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 (57064, '2022-02-06', 7448, 54328, 3759, NULL, '2.0000', '15.8500', '15.8500', '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 (57065, '2022-02-06', 7507, 54329, 3759, NULL, '3.0000', '6.5000', '6.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 (57066, '2022-02-06', 2169, 54330, 3760, 10737, '-32.0000', '3.8397', '3.8397', '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 (57067, '2022-02-06', 2169, 54330, 3760, NULL, '33.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (57068, '2022-02-06', 2935, 54331, 3760, 21534, '1.0000', '7.9400', '7.9400', '10.5000', '10.5000', '1.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 (57069, '2022-02-06', 1839, 54332, 3760, 8734, '-19.0000', '6.1500', '6.1500', '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 (57070, '2022-02-06', 1839, 54332, 3760, NULL, '20.0000', '6.1500', '6.1500', '10.5000', '10.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 (57071, '2022-02-06', 2350, 54333, 3760, 3853, '-6.0000', '10.3800', '10.3800', '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 (57072, '2022-02-06', 2350, 54333, 3760, NULL, '7.0000', '10.3800', '10.3800', '16.0000', '16.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 (57073, '2022-02-06', 1306, 54334, 3760, 6879, '1.0000', '22.5969', '22.5969', '3.0000', '3.0000', '3.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 (57074, '2022-02-06', 2643, 54335, 3760, NULL, '1.0000', '0.8700', '0.8700', '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 (57075, '2022-02-06', 1845, 54336, 3760, 6222, '-14.0000', '19.5000', '19.5000', '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 (57076, '2022-02-06', 1845, 54336, 3760, NULL, '15.0000', '19.5000', '19.5000', '26.5000', '26.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 (57077, '2022-02-06', 2916, 54337, 3760, 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 (57078, '2022-02-06', 2169, 54338, 3760, 10737, '-32.0000', '3.8397', '3.8397', '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 (57079, '2022-02-06', 2169, 54338, 3760, NULL, '33.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (57080, '2022-02-06', 9214, 54339, 3760, NULL, '1.0000', '9.6000', '9.6000', '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 (57081, '2022-02-06', 2169, 54340, 3760, 10737, '-32.0000', '3.8397', '3.8397', '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 (57082, '2022-02-06', 2169, 54340, 3760, NULL, '33.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (57083, '2022-02-06', 2360, 54341, 3760, 3862, '-57.0000', '0.5200', '0.5200', '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 (57084, '2022-02-06', 2360, 54341, 3760, NULL, '58.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57085, '2022-02-06', 2302, 54342, 3760, 2963, '-30.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 (57086, '2022-02-06', 2302, 54342, 3760, NULL, '31.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (57087, '2022-02-06', 8775, 54343, 3760, NULL, '1.0000', '2.6000', '2.6000', '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 (57088, '2022-02-06', 1310, 54344, 3760, NULL, '2.0000', '0.3700', '0.3700', '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 (57089, '2022-02-06', 1493, 54345, 3760, 9747, '-14.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 (57090, '2022-02-06', 1493, 54345, 3760, NULL, '15.0000', '1.5425', '1.5425', '3.0000', '3.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 (57091, '2022-02-06', 2242, 54346, 3760, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '14.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 (57092, '2022-02-06', 1904, 54347, 3760, 5442, '-28.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 (57093, '2022-02-06', 1904, 54347, 3760, NULL, '29.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57094, '2022-02-06', 2990, 54348, 3760, NULL, '1.0000', '1.1200', '1.1200', '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 (57095, '2022-02-06', 1650, 54349, 3760, 3221, '-10.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 (57096, '2022-02-06', 1650, 54349, 3760, NULL, '11.0000', '14.8000', '14.8000', '20.0000', '20.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 (57097, '2022-02-06', 1493, 54350, 3760, 9747, '-14.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 (57098, '2022-02-06', 1493, 54350, 3760, NULL, '15.0000', '1.5425', '1.5425', '3.0000', '3.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 (57099, '2022-02-06', 1502, 54351, 3761, 6307, '-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 (57100, '2022-02-06', 1502, 54351, 3761, NULL, '2.0000', '7.8000', '7.8000', '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 (57101, '2022-02-06', 2379, 54352, 3762, NULL, '1.0000', '1.0877', '1.0877', '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 (57102, '2022-02-06', 1810, 54353, 3762, 49323, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57103, '2022-02-06', 7514, 54354, 3762, NULL, '1.0000', '2.2500', '2.2500', '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 (57104, '2022-02-06', 8744, 54355, 3762, 49674, '1.0000', '-0.5256', '-0.5256', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57105, '2022-02-06', 2315, 54356, 3762, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '214.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57106, '2022-02-06', 2699, 54357, 3762, 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 (57107, '2022-02-06', 7911, 54358, 3762, NULL, '1.0000', '4.3700', '4.3700', '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 (57108, '2022-02-06', 8135, 54359, 3762, 39770, '1.0000', '3.1226', '3.1226', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57109, '2022-02-06', 2068, 54360, 3762, NULL, '1.0000', '11.8658', '11.8658', '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 (57110, '2022-02-06', 2315, 54361, 3762, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '214.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57111, '2022-02-06', 2167, 54362, 3762, NULL, '2.0000', '2.1310', '2.1310', '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 (57112, '2022-02-06', 8816, 54363, 3762, NULL, '1.0000', '18.0000', '18.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 (57113, '2022-02-06', 8965, 54364, 3762, NULL, '1.0000', '52.9900', '52.9900', '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 (57114, '2022-02-06', 1339, 54365, 3762, 49355, '1.0000', '1.2000', '1.2000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57115, '2022-02-06', 2315, 54366, 3762, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '213.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57116, '2022-02-06', 2379, 54367, 3762, NULL, '1.0000', '1.0877', '1.0877', '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 (57117, '2022-02-06', 8677, 54368, 3762, NULL, '1.0000', '292.4641', '292.4641', '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 (57118, '2022-02-06', 1307, 54369, 3762, NULL, '2.0000', '0.6103', '0.6103', '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 (57119, '2022-02-06', 2088, 54370, 3762, NULL, '1.0000', '-1.0956', '-1.0956', '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 (57120, '2022-02-06', 2695, 54371, 3762, NULL, '2.0000', '2.0000', '2.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 (57121, '2022-02-06', 9758, 54372, 3762, NULL, '1.0000', '3.1400', '3.1400', '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 (57122, '2022-02-06', 7411, 54373, 3762, NULL, '1.0000', '1.3013', '1.3013', '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 (57123, '2022-02-06', 7741, 54374, 3762, NULL, '2.0000', '1.2000', '1.2000', '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 (57124, '2022-02-06', 1666, 54375, 3762, 49363, '1.0000', '2.7286', '2.7286', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57125, '2022-02-06', 2655, 54376, 3762, 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 (57126, '2022-02-06', 7564, 54377, 3762, NULL, '1.0000', '0.6400', '0.6400', '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 (57127, '2022-02-06', 1602, 54378, 3762, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57128, '2022-02-06', 7913, 54379, 3762, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (57129, '2022-02-06', 7683, 54380, 3762, NULL, '1.0000', '1.8400', '1.8400', '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 (57130, '2022-02-06', 2293, 54381, 3762, NULL, '1.0000', '-15.8931', '-15.8931', '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 (57131, '2022-02-06', 7824, 54382, 3762, 39802, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57132, '2022-02-06', 8166, 54383, 3762, NULL, '1.0000', '4.6000', '4.6000', '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 (57133, '2022-02-06', 8166, 54384, 3762, NULL, '1.0000', '4.6000', '4.6000', '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 (57134, '2022-02-06', 2315, 54385, 3762, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '214.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57135, '2022-02-06', 1532, 54386, 3762, 48901, '2.0000', '1.5750', '1.5750', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57136, '2022-02-06', 9750, 54387, 3762, NULL, '1.0000', '3.3000', '3.3000', '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 (57137, '2022-02-06', 1574, 54388, 3762, 48648, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57138, '2022-02-06', 2152, 54389, 3762, 48922, '1.0000', '14.0800', '14.0800', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57139, '2022-02-06', 8767, 54390, 3762, 45267, '1.0000', '6.9975', '6.9975', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57140, '2022-02-06', 2277, 54391, 3762, NULL, '2.0000', '0.9399', '0.9399', '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 (57141, '2022-02-06', 2295, 54392, 3762, 48904, '3.0000', '1.1161', '1.1161', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57142, '2022-02-06', 7482, 54393, 3762, NULL, '1.0000', '2.8136', '2.8136', '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 (57143, '2022-02-06', 1478, 54394, 3762, 49326, '1.0000', '31.6250', '31.6250', '30.5000', '30.5000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57144, '2022-02-06', 7641, 54395, 3762, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57145, '2022-02-06', 9158, 54396, 3762, NULL, '1.0000', '5.8900', '5.8900', '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 (57146, '2022-02-06', 9775, 54397, 3762, NULL, '1.0000', '7.9000', '7.9000', '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 (57147, '2022-02-06', 9750, 54398, 3762, NULL, '1.0000', '3.3000', '3.3000', '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 (57148, '2022-02-06', 7358, 54399, 3762, NULL, '1.0000', '18.8000', '18.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 (57149, '2022-02-06', 2761, 54400, 3762, 47081, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57150, '2022-02-06', 9337, 54401, 3762, NULL, '2.0000', '5.7200', '5.7200', '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 (57151, '2022-02-06', 2293, 54402, 3762, NULL, '1.0000', '-15.8931', '-15.8931', '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 (57152, '2022-02-06', 9214, 54403, 3762, NULL, '1.0000', '10.8410', '10.8410', '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 (57153, '2022-02-06', 1807, 54404, 3762, NULL, '2.0000', '34.9993', '34.9993', '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 (57154, '2022-02-06', 8608, 54405, 3762, NULL, '1.0000', '0.9000', '0.9000', '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 (57155, '2022-02-06', 1337, 54406, 3762, NULL, '1.0000', '2.0000', '2.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 (57156, '2022-02-06', 9758, 54407, 3762, NULL, '1.0000', '3.1400', '3.1400', '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 (57157, '2022-02-06', 2169, 54408, 3762, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '75.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57158, '2022-02-06', 9750, 54409, 3762, NULL, '1.0000', '3.3000', '3.3000', '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 (57159, '2022-02-06', 2272, 54410, 3763, NULL, '1.0000', '5.5000', '5.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 (57160, '2022-02-06', 7411, 54411, 3763, NULL, '1.0000', '1.3013', '1.3013', '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 (57161, '2022-02-06', 2908, 54412, 3763, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57162, '2022-02-06', 2891, 54413, 3764, 37376, '1.0000', '9.4983', '9.4983', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57163, '2022-02-06', 7674, 54414, 3764, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57164, '2022-02-06', 2351, 54415, 3764, 46700, '1.0000', '17.0375', '17.0375', '27.5000', '27.5000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57165, '2022-02-06', 2315, 54416, 3764, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '13.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57166, '2022-02-06', 8154, 54417, 3764, NULL, '2.0000', '12.3000', '12.3000', '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 (57167, '2022-02-06', 7714, 54418, 3764, NULL, '3.0000', '0.4200', '0.4200', '0.6000', '0.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 (57168, '2022-02-06', 7886, 54419, 3764, NULL, '1.0000', '6.7841', '6.7841', '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 (57169, '2022-02-06', 9272, 54420, 3764, NULL, '1.0000', '3.1000', '3.1000', '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 (57170, '2022-02-06', 9778, 54421, 3765, 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 (57171, '2022-02-06', 1307, 54422, 3765, NULL, '1.0000', '0.6103', '0.6103', '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 (57172, '2022-02-07', 1339, 54423, 3766, 49355, '1.0000', '1.2000', '1.2000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57173, '2022-02-07', 2694, 54424, 3766, 42809, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57174, '2022-02-07', 1337, 54425, 3766, NULL, '1.0000', '2.0000', '2.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 (57175, '2022-02-07', 2297, 54426, 3766, 33348, '1.0000', '6.4800', '6.4800', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57176, '2022-02-07', 8876, 54427, 3766, NULL, '1.0000', '0.9900', '0.9900', '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 (57177, '2022-02-07', 1912, 54428, 3766, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57178, '2022-02-07', 1816, 54429, 3766, NULL, '1.0000', '19.6000', '19.6000', '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 (57179, '2022-02-07', 2503, 54430, 3766, 44455, '1.0000', '16.3200', '16.3200', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57180, '2022-02-07', 1946, 54431, 3766, NULL, '1.0000', '1.5500', '1.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 (57181, '2022-02-07', 7324, 54432, 3766, 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 (57182, '2022-02-07', 2810, 54433, 3766, 24934, '1.0000', '6788008906.4158', '6788008906.4158', '3.0000', '3.0000', '25.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 (57183, '2022-02-07', 1692, 54434, 3766, 48703, '1.0000', '9.5341', '9.5341', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57184, '2022-02-07', 2302, 54435, 3766, 49896, '4.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 (57185, '2022-02-07', 1621, 54436, 3766, 42079, '3.0000', '28.9137', '28.9137', '8.0000', '8.0000', '33.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57186, '2022-02-07', 2237, 54437, 3766, 49715, '10.0000', '207.0499', '207.0499', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57187, '2022-02-07', 1837, 54438, 3766, NULL, '10.0000', '1.5967', '1.5967', '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 (57188, '2022-02-07', 7756, 54439, 3766, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57189, '2022-02-07', 1602, 54440, 3766, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57190, '2022-02-07', 2916, 54441, 3766, NULL, '1.0000', '11.2778', '11.2778', '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 (57191, '2022-02-07', 2280, 54442, 3766, NULL, '1.0000', '18.8857', '18.8857', '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 (57192, '2022-02-07', 1912, 54443, 3766, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57193, '2022-02-07', 2948, 54444, 3766, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57194, '2022-02-07', 1310, 54445, 3766, 49358, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '11.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57195, '2022-02-07', 2135, 54446, 3766, 18930, '1.0000', '2.4732', '2.4732', '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 (57196, '2022-02-07', 2379, 54447, 3766, NULL, '1.0000', '1.0877', '1.0877', '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 (57197, '2022-02-07', 1574, 54448, 3766, 48648, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57198, '2022-02-07', 1760, 54449, 3766, NULL, '1.0000', '1.5900', '1.5900', '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 (57199, '2022-02-07', 9754, 54450, 3766, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57200, '2022-02-07', 9399, 54451, 3766, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57201, '2022-02-07', 2713, 54452, 3767, 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 (57202, '2022-02-07', 9089, 54453, 3767, NULL, '1.0000', '3.8000', '3.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 (57203, '2022-02-07', 2965, 54454, 3767, NULL, '1.0000', '5.8007', '5.8007', '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 (57204, '2022-02-07', 9409, 54455, 3767, NULL, '1.0000', '5.7000', '5.7000', '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 (57205, '2022-02-07', 1670, 54456, 3768, 10163, '-13.0000', '19.5000', '19.5000', '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 (57206, '2022-02-07', 1670, 54456, 3768, NULL, '14.0000', '19.5000', '19.5000', '26.5000', '26.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 (57207, '2022-02-07', 1908, 54457, 3768, 5444, '-28.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 (57208, '2022-02-07', 1908, 54457, 3768, NULL, '29.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57209, '2022-02-07', 2379, 54458, 3768, 4032, '-42.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 (57210, '2022-02-07', 2379, 54458, 3768, NULL, '43.0000', '1.5900', '1.5900', '2.5000', '2.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 (57211, '2022-02-07', 2858, 54459, 3768, 17772, '-43.0000', '1.0000', '1.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 (57212, '2022-02-07', 2858, 54459, 3768, NULL, '44.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57213, '2022-02-07', 2135, 54460, 3768, 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 (57214, '2022-02-07', 7824, 54461, 3768, NULL, '1.0000', '8.0000', '8.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 (57215, '2022-02-07', 2978, 54462, 3768, 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 (57216, '2022-02-07', 1533, 54463, 3768, 10381, '-2.0000', '2.5917', '2.5917', '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 (57217, '2022-02-07', 1533, 54463, 3768, NULL, '3.0000', '2.5917', '2.5917', '5.5000', '5.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 (57218, '2022-02-07', 1665, 54464, 3768, 3235, '-69.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 (57219, '2022-02-07', 1665, 54464, 3768, NULL, '71.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57220, '2022-02-07', 2643, 54465, 3768, NULL, '1.0000', '0.8700', '0.8700', '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 (57221, '2022-02-07', 1719, 54466, 3768, 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 (57222, '2022-02-07', 1602, 54467, 3768, 5897, '-104.0000', '6.7859', '6.7859', '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 (57223, '2022-02-07', 1602, 54467, 3768, NULL, '105.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57224, '2022-02-07', 2237, 54468, 3768, 2781, '-38.0000', '1.0600', '1.0600', '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 (57225, '2022-02-07', 2237, 54468, 3768, NULL, '39.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57226, '2022-02-07', 2315, 54469, 3768, 2735, '-155.0000', '0.3300', '0.3300', '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 (57227, '2022-02-07', 2315, 54469, 3768, NULL, '156.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-156.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57228, '2022-02-07', 1410, 54470, 3768, NULL, '1.0000', '2.2000', '2.2000', '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 (57229, '2022-02-07', 1420, 54471, 3768, 20658, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '6.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 (57230, '2022-02-07', 9743, 54472, 3769, 46041, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57231, '2022-02-07', 1618, 54473, 3769, 49545, '1.0000', '11.9300', '11.9300', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57232, '2022-02-07', 1904, 54474, 3770, 5442, '-29.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 (57233, '2022-02-07', 1904, 54474, 3770, NULL, '30.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (57234, '2022-02-07', 7444, 54475, 3770, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57235, '2022-02-07', 8666, 54476, 3770, NULL, '1.0000', '0.4600', '0.4600', '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 (57236, '2022-02-07', 7482, 54477, 3770, NULL, '1.0000', '3.0500', '3.0500', '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 (57237, '2022-02-07', 2244, 54478, 3770, 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 (57238, '2022-02-07', 7885, 54479, 3770, NULL, '1.0000', '82.8700', '82.8700', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57239, '2022-02-07', 8188, 54480, 3770, 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 (57240, '2022-02-07', 9337, 54481, 3770, 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 (57241, '2022-02-07', 7883, 54482, 3770, NULL, '1.0000', '34.0000', '34.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 (57242, '2022-02-07', 7552, 54483, 3770, 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 (57243, '2022-02-07', 7738, 54484, 3770, NULL, '1.0000', '8.0000', '8.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 (57244, '2022-02-07', 2062, 54485, 3770, 6676, '2.0000', '5.7540', '5.7540', '12.0000', '12.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 (57245, '2022-02-07', 7518, 54486, 3770, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57246, '2022-02-07', 8882, 54487, 3770, NULL, '1.0000', '8.0000', '8.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 (57247, '2022-02-07', 8276, 54488, 3770, 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 (57248, '2022-02-07', 8810, 54489, 3770, 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 (57249, '2022-02-07', 8177, 54490, 3770, NULL, '1.0000', '12.5000', '12.5000', '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 (57250, '2022-02-07', 7317, 54491, 3770, NULL, '1.0000', '19.5500', '19.5500', '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 (57251, '2022-02-07', 9758, 54492, 3770, NULL, '1.0000', '3.1400', '3.1400', '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 (57252, '2022-02-07', 7715, 54493, 3770, NULL, '1.0000', '1.8900', '1.8900', '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 (57253, '2022-02-07', 7729, 54494, 3770, NULL, '1.0000', '13.0000', '13.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 (57254, '2022-02-07', 9758, 54495, 3770, NULL, '1.0000', '3.1400', '3.1400', '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 (57255, '2022-02-07', 8352, 54496, 3770, NULL, '3.0000', '12.0000', '12.0000', '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 (57256, '2022-02-07', 9785, 54497, 3770, 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 (57257, '2022-02-07', 8475, 54498, 3770, NULL, '1.0000', '8.6000', '8.6000', '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 (57258, '2022-02-07', 7557, 54499, 3770, NULL, '10.0000', '0.5000', '0.5000', '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 (57259, '2022-02-07', 2590, 54500, 3770, 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 (57260, '2022-02-07', 8677, 54501, 3770, NULL, '3.0000', '1.2800', '1.2800', '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 (57261, '2022-02-07', 7781, 54502, 3770, NULL, '3.0000', '4.2500', '4.2500', '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 (57262, '2022-02-07', 7482, 54503, 3770, NULL, '1.0000', '3.0500', '3.0500', '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 (57263, '2022-02-07', 9776, 54504, 3770, NULL, '1.0000', '7.6700', '7.6700', '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 (57264, '2022-02-07', 7805, 54505, 3770, NULL, '4.0000', '2.1800', '2.1800', '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 (57265, '2022-02-07', 7672, 54506, 3770, NULL, '1.0000', '1.0200', '1.0200', '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 (57266, '2022-02-07', 9092, 54507, 3770, NULL, '2.0000', '5.2900', '5.2900', '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 (57267, '2022-02-07', 7523, 54508, 3770, 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 (57268, '2022-02-07', 7412, 54509, 3770, NULL, '1.0000', '1.5200', '1.5200', '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 (57269, '2022-02-07', 7832, 54510, 3770, 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 (57270, '2022-02-07', 2442, 54511, 3770, 5312, '-3.0000', '4.8000', '4.8000', '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 (57271, '2022-02-07', 2442, 54511, 3770, NULL, '4.0000', '4.8000', '4.8000', '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 (57272, '2022-02-07', 9178, 54512, 3770, 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 (57273, '2022-02-07', 7674, 54513, 3770, 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 (57274, '2022-02-07', 7736, 54514, 3770, NULL, '1.0000', '16.2000', '16.2000', '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 (57275, '2022-02-07', 7782, 54515, 3770, 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 (57276, '2022-02-07', 7428, 54516, 3770, NULL, '1.0000', '2.6100', '2.6100', '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 (57277, '2022-02-07', 8186, 54517, 3770, NULL, '2.0000', '1.0800', '1.0800', '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 (57278, '2022-02-07', 1908, 54518, 3770, 5444, '-29.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 (57279, '2022-02-07', 1908, 54518, 3770, NULL, '31.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (57280, '2022-02-07', 9672, 54519, 3770, NULL, '1.0000', '2.0500', '2.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 (57281, '2022-02-07', 9743, 54520, 3770, NULL, '1.0000', '11.7000', '11.7000', '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 (57282, '2022-02-07', 9028, 54521, 3770, 33823, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57283, '2022-02-07', 9098, 54522, 3770, NULL, '2.0000', '26.0000', '26.0000', '34.5000', '34.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 (57284, '2022-02-07', 8172, 54523, 3770, NULL, '2.0000', '40.7000', '40.7000', '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 (57285, '2022-02-07', 7514, 54524, 3770, NULL, '2.0000', '2.2500', '2.2500', '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 (57286, '2022-02-07', 7638, 54525, 3770, 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 (57287, '2022-02-07', 7412, 54526, 3770, NULL, '1.0000', '1.5200', '1.5200', '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 (57288, '2022-02-07', 1845, 54527, 3770, 6222, '-15.0000', '19.5000', '19.5000', '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 (57289, '2022-02-07', 1845, 54527, 3770, NULL, '17.0000', '19.5000', '19.5000', '26.5000', '26.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 (57290, '2022-02-07', 9098, 54528, 3770, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57291, '2022-02-07', 8989, 54529, 3770, NULL, '2.0000', '4.5000', '4.5000', '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 (57292, '2022-02-07', 8372, 54530, 3770, NULL, '1.0000', '9.5000', '9.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 (57293, '2022-02-07', 7879, 54531, 3770, NULL, '3.0000', '1.9800', '1.9800', '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 (57294, '2022-02-07', 7672, 54532, 3770, NULL, '1.0000', '1.0200', '1.0200', '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 (57295, '2022-02-07', 7411, 54533, 3770, NULL, '1.0000', '1.3500', '1.3500', '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 (57296, '2022-02-07', 8677, 54534, 3770, NULL, '3.0000', '1.2800', '1.2800', '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 (57297, '2022-02-07', 8187, 54535, 3770, NULL, '3.0000', '14.3900', '14.3900', '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 (57298, '2022-02-07', 9393, 54536, 3770, NULL, '1.0000', '15.0000', '15.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 (57299, '2022-02-07', 7482, 54537, 3770, NULL, '1.0000', '3.0500', '3.0500', '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 (57300, '2022-02-07', 9560, 54538, 3770, NULL, '1.0000', '15.0000', '15.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 (57301, '2022-02-07', 9775, 54539, 3770, NULL, '1.0000', '7.9000', '7.9000', '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 (57302, '2022-02-07', 9776, 54540, 3770, NULL, '1.0000', '7.6700', '7.6700', '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 (57303, '2022-02-07', 7930, 54541, 3770, NULL, '2.0000', '1.3000', '1.3000', '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 (57304, '2022-02-07', 7344, 54542, 3770, NULL, '3.0000', '1.5400', '1.5400', '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 (57305, '2022-02-07', 9721, 54543, 3770, NULL, '1.0000', '11.7000', '11.7000', '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 (57306, '2022-02-07', 2588, 54544, 3770, 8276, '-3.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 (57307, '2022-02-07', 2588, 54544, 3770, NULL, '4.0000', '4.0000', '4.0000', '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 (57308, '2022-02-07', 9747, 54545, 3770, NULL, '3.0000', '0.6500', '0.6500', '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 (57309, '2022-02-07', 9743, 54546, 3771, 46041, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57310, '2022-02-07', 1618, 54547, 3771, 49545, '1.0000', '11.9300', '11.9300', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57311, '2022-02-07', 9399, 54548, 3771, 45139, '1.0000', '1.0422', '1.0422', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57312, '2022-02-07', 3020, 54549, 3771, 32857, '1.0000', '11.1170', '11.1170', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57313, '2022-02-07', 1572, 54550, 3771, 49525, '1.0000', '1.9151', '1.9151', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57314, '2022-02-07', 1425, 54551, 3771, 49167, '1.0000', '7.0340', '7.0340', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57315, '2022-02-07', 2660, 54552, 3771, 49531, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57316, '2022-02-07', 1810, 54553, 3771, 40639, '1.0000', '8.5625', '8.5625', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57317, '2022-02-07', 9715, 54554, 3771, 46036, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57318, '2022-02-07', 2317, 54555, 3771, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '34.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57319, '2022-02-07', 2858, 54556, 3771, 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 (57320, '2022-02-07', 1943, 54557, 3771, 49223, '1.0000', '4.8068', '4.8068', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57321, '2022-02-07', 1893, 54558, 3771, 5498, '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 (57322, '2022-02-07', 1945, 54559, 3771, 49084, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57323, '2022-02-07', 2055, 54560, 3771, 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 (57324, '2022-02-07', 2285, 54561, 3771, 47982, '1.0000', '37.2582', '37.2582', '49.0000', '49.0000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57325, '2022-02-07', 9750, 54562, 3771, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '47.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57326, '2022-02-07', 1863, 54563, 3771, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57327, '2022-02-07', 2394, 54564, 3771, 46024, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57328, '2022-02-07', 1863, 54565, 3771, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57329, '2022-02-07', 1846, 54566, 3772, 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 (57330, '2022-02-07', 2169, 54567, 3772, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57331, '2022-02-07', 9095, 54568, 3772, 49901, '1.0000', '8.7600', '8.7600', '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 (57332, '2022-02-07', 9409, 54569, 3772, NULL, '3.0000', '5.7000', '5.7000', '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 (57333, '2022-02-07', 8744, 54570, 3772, 49674, '1.0000', '-0.5256', '-0.5256', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57334, '2022-02-07', 1574, 54571, 3772, 48648, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57335, '2022-02-07', 1574, 54571, 3772, 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 (57336, '2022-02-07', 8188, 54572, 3772, 45271, '1.0000', '0.9180', '0.9180', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57337, '2022-02-07', 1349, 54573, 3772, NULL, '1.0000', '35.0700', '35.0700', '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 (57338, '2022-02-07', 1884, 54574, 3772, NULL, '1.0000', '4.5207', '4.5207', '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 (57339, '2022-02-07', 2237, 54575, 3772, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57340, '2022-02-07', 1595, 54576, 3772, 49324, '1.0000', '20.2024', '20.2024', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57341, '2022-02-07', 7756, 54577, 3772, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57342, '2022-02-07', 7533, 54578, 3772, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57343, '2022-02-07', 2296, 54579, 3772, NULL, '1.0000', '13.2900', '13.2900', '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 (57344, '2022-02-07', 1539, 54580, 3772, 19848, '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 (57345, '2022-02-07', 2965, 54581, 3772, NULL, '1.0000', '5.8007', '5.8007', '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 (57346, '2022-02-07', 1425, 54582, 3772, NULL, '1.0000', '5.0176', '5.0176', '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 (57347, '2022-02-07', 9204, 54583, 3772, NULL, '1.0000', '8.1600', '8.1600', '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 (57348, '2022-02-07', 2823, 54584, 3772, 19868, '1.0000', '11.2100', '11.2100', '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 (57349, '2022-02-07', 7411, 54585, 3772, NULL, '1.0000', '1.3013', '1.3013', '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 (57350, '2022-02-07', 2221, 54586, 3772, 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 (57351, '2022-02-07', 2088, 54587, 3772, NULL, '1.0000', '-1.0956', '-1.0956', '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 (57352, '2022-02-07', 8903, 54588, 3772, NULL, '1.0000', '5.3700', '5.3700', '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 (57353, '2022-02-07', 2315, 54589, 3772, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '208.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57354, '2022-02-07', 1310, 54590, 3772, 49358, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57355, '2022-02-07', 2758, 54591, 3772, 22379, '2.0000', '5.4000', '5.4000', '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 (57356, '2022-02-07', 1812, 54592, 3772, 49895, '1.0000', '7.9262', '7.9262', '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 (57357, '2022-02-07', 1382, 54593, 3772, 48886, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57358, '2022-02-07', 1912, 54594, 3772, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57359, '2022-02-07', 2068, 54595, 3772, NULL, '1.0000', '11.8658', '11.8658', '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 (57360, '2022-02-07', 2169, 54596, 3772, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57361, '2022-02-07', 1845, 54597, 3772, NULL, '1.0000', '19.9667', '19.9667', '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 (57362, '2022-02-07', 1793, 54598, 3772, NULL, '1.0000', '18.0667', '18.0667', '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 (57363, '2022-02-07', 2221, 54599, 3772, 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 (57364, '2022-02-07', 7411, 54600, 3772, NULL, '4.0000', '1.3013', '1.3013', '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 (57365, '2022-02-07', 7609, 54601, 3772, NULL, '1.0000', '4.3300', '4.3300', '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 (57366, '2022-02-07', 2169, 54602, 3772, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57367, '2022-02-07', 2275, 54603, 3772, 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 (57368, '2022-02-07', 2272, 54604, 3772, NULL, '1.0000', '5.5000', '5.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 (57369, '2022-02-07', 1602, 54605, 3772, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57370, '2022-02-07', 7514, 54606, 3772, NULL, '1.0000', '2.2500', '2.2500', '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 (57371, '2022-02-07', 8188, 54607, 3772, 45271, '2.0000', '0.9180', '0.9180', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57372, '2022-02-07', 1690, 54608, 3772, 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 (57373, '2022-02-07', 7859, 54609, 3772, NULL, '1.0000', '3.6000', '3.6000', '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 (57374, '2022-02-07', 7411, 54610, 3772, NULL, '1.0000', '1.3013', '1.3013', '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 (57375, '2022-02-07', 8065, 54611, 3772, NULL, '1.0000', '32.0000', '32.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 (57376, '2022-02-07', 9399, 54612, 3772, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57377, '2022-02-07', 3044, 54613, 3772, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '38.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 (57378, '2022-02-07', 2455, 54614, 3772, 19876, '1.0000', '7.5300', '7.5300', '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 (57379, '2022-02-07', 2784, 54615, 3772, NULL, '1.0000', '53.4600', '53.4600', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57380, '2022-02-07', 1590, 54616, 3772, 49903, '2.0000', '1.4454', '1.4454', '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 (57381, '2022-02-07', 3017, 54617, 3772, 49886, '1.0000', '3.9000', '3.9000', '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 (57382, '2022-02-07', 2906, 54618, 3772, NULL, '1.0000', '2.6000', '2.6000', '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 (57383, '2022-02-07', 2726, 54619, 3772, NULL, '1.0000', '2.7004', '2.7004', '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 (57384, '2022-02-07', 2237, 54620, 3772, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57385, '2022-02-07', 1665, 54621, 3772, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57386, '2022-02-07', 2260, 54622, 3772, 49305, '1.0000', '4.2238', '4.2238', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57387, '2022-02-07', 7564, 54623, 3772, NULL, '1.0000', '0.6400', '0.6400', '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 (57388, '2022-02-07', 1493, 54624, 3772, 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 (57389, '2022-02-07', 2244, 54625, 3772, 39892, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57390, '2022-02-07', 2291, 54626, 3772, 48672, '1.0000', '21.0000', '21.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57391, '2022-02-07', 7848, 54627, 3773, NULL, '2.0000', '1.3500', '1.3500', '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 (57392, '2022-02-07', 7641, 54628, 3773, NULL, '1.0000', '1.9000', '1.9000', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57393, '2022-02-07', 7411, 54629, 3773, NULL, '2.0000', '1.3500', '1.3500', '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 (57394, '2022-02-07', 2295, 54630, 3773, 22264, '3.0000', '0.9600', '0.9600', '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 (57395, '2022-02-07', 7514, 54631, 3773, NULL, '2.0000', '2.2500', '2.2500', '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 (57396, '2022-02-07', 7907, 54632, 3773, NULL, '1.0000', '12.0000', '12.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 (57397, '2022-02-07', 7331, 54633, 3773, NULL, '1.0000', '58.0000', '58.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57398, '2022-02-07', 8677, 54634, 3773, NULL, '2.0000', '1.2800', '1.2800', '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 (57399, '2022-02-07', 7702, 54635, 3773, 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 (57400, '2022-02-07', 7765, 54636, 3773, NULL, '9.0000', '16.0000', '16.0000', '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 (57401, '2022-02-07', 1908, 54637, 3773, 5444, '-31.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 (57402, '2022-02-07', 1908, 54637, 3773, NULL, '33.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (57403, '2022-02-07', 7954, 54638, 3773, 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 (57404, '2022-02-07', 7671, 54639, 3773, NULL, '1.0000', '15.5000', '15.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 (57405, '2022-02-07', 9272, 54640, 3773, NULL, '1.0000', '3.1000', '3.1000', '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 (57406, '2022-02-07', 9337, 54641, 3773, 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 (57407, '2022-02-07', 7780, 54642, 3773, NULL, '1.0000', '11.6000', '11.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 (57408, '2022-02-07', 8276, 54643, 3773, 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 (57409, '2022-02-07', 9533, 54644, 3773, 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 (57410, '2022-02-07', 7411, 54645, 3773, NULL, '3.0000', '1.3500', '1.3500', '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 (57411, '2022-02-07', 2062, 54646, 3773, 6676, '1.0000', '5.7540', '5.7540', '12.0000', '12.0000', '1.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 (57412, '2022-02-07', 7999, 54647, 3773, NULL, '1.0000', '1.7500', '1.7500', '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 (57413, '2022-02-07', 7981, 54648, 3773, NULL, '4.0000', '6.0000', '6.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 (57414, '2022-02-07', 7877, 54649, 3773, NULL, '1.0000', '4.4000', '4.4000', '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 (57415, '2022-02-07', 8680, 54650, 3773, NULL, '1.0000', '2.0000', '2.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 (57416, '2022-02-07', 7877, 54651, 3773, NULL, '1.0000', '4.4000', '4.4000', '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 (57417, '2022-02-07', 8680, 54652, 3773, NULL, '1.0000', '2.0000', '2.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 (57418, '2022-02-07', 8059, 54653, 3773, 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 (57419, '2022-02-07', 8940, 54654, 3773, NULL, '1.0000', '4.9900', '4.9900', '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 (57420, '2022-02-07', 2315, 54655, 3773, 2735, '-156.0000', '0.3300', '0.3300', '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 (57421, '2022-02-07', 2315, 54655, 3773, NULL, '157.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-157.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57422, '2022-02-07', 9579, 54656, 3773, 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 (57423, '2022-02-07', 7689, 54657, 3773, NULL, '1.0000', '9.1000', '9.1000', '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 (57424, '2022-02-07', 8069, 54658, 3773, NULL, '1.0000', '29.1700', '29.1700', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57425, '2022-02-07', 8456, 54659, 3773, 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 (57426, '2022-02-07', 7892, 54660, 3773, NULL, '1.0000', '4.2000', '4.2000', '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 (57427, '2022-02-07', 8702, 54661, 3773, NULL, '1.0000', '3.6700', '3.6700', '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 (57428, '2022-02-07', 7674, 54662, 3773, 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 (57429, '2022-02-07', 9094, 54663, 3773, NULL, '1.0000', '5.7000', '5.7000', '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 (57430, '2022-02-07', 7411, 54664, 3773, NULL, '5.0000', '1.3500', '1.3500', '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 (57431, '2022-02-07', 7657, 54665, 3773, NULL, '1.0000', '11.3200', '11.3200', '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 (57432, '2022-02-07', 7473, 54666, 3773, NULL, '3.0000', '0.5300', '0.5300', '0.6000', '0.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 (57433, '2022-02-07', 7564, 54667, 3773, NULL, '1.0000', '0.6400', '0.6400', '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 (57434, '2022-02-07', 7933, 54668, 3773, NULL, '1.0000', '0.4400', '0.4400', '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 (57435, '2022-02-07', 8596, 54669, 3773, 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 (57436, '2022-02-07', 1689, 54670, 3773, 4897, '-5.0000', '60.7198', '60.7198', '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 (57437, '2022-02-07', 1689, 54670, 3773, NULL, '6.0000', '60.7198', '60.7198', '19.0000', '19.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 (57438, '2022-02-07', 8308, 54671, 3773, NULL, '1.0000', '2.0800', '2.0800', '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 (57439, '2022-02-07', 7465, 54672, 3773, 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 (57440, '2022-02-07', 9254, 54673, 3773, NULL, '1.0000', '20.0000', '20.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 (57441, '2022-02-07', 9793, 54674, 3773, NULL, '1.0000', '23.5000', '23.5000', '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 (57442, '2022-02-07', 7565, 54675, 3773, NULL, '1.0000', '0.2000', '0.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 (57443, '2022-02-07', 7518, 54676, 3773, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57444, '2022-02-07', 2822, 54677, 3773, 17166, '-6.0000', '2.7200', '2.7200', '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 (57445, '2022-02-07', 2822, 54677, 3773, NULL, '7.0000', '2.7200', '2.7200', '4.0000', '4.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 (57446, '2022-02-07', 1916, 54678, 3773, 5445, '-4.0000', '8.2300', '8.2300', '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 (57447, '2022-02-07', 1916, 54678, 3773, NULL, '5.0000', '8.2300', '8.2300', '12.0000', '12.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 (57448, '2022-02-07', 1578, 54679, 3773, 7597, '-5.0000', '1.9700', '1.9700', '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 (57449, '2022-02-07', 1578, 54679, 3773, NULL, '6.0000', '1.9700', '1.9700', '3.0000', '3.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 (57450, '2022-02-07', 1650, 54680, 3773, 3221, '-11.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 (57451, '2022-02-07', 1650, 54680, 3773, NULL, '12.0000', '14.8000', '14.8000', '20.0000', '20.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 (57452, '2022-02-07', 9272, 54681, 3773, NULL, '2.0000', '3.1000', '3.1000', '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 (57453, '2022-02-07', 1884, 54682, 3773, 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 (57454, '2022-02-07', 7666, 54683, 3773, 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 (57455, '2022-02-07', 7674, 54684, 3773, 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 (57456, '2022-02-07', 7482, 54685, 3773, NULL, '1.0000', '3.0500', '3.0500', '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 (57457, '2022-02-07', 2320, 54686, 3774, 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 (57458, '2022-02-07', 8065, 54687, 3775, NULL, '1.0000', '32.0000', '32.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 (57459, '2022-02-07', 7411, 54688, 3775, NULL, '3.0000', '1.3600', '1.3600', '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 (57460, '2022-02-07', 9095, 54689, 3775, NULL, '1.0000', '9.7084', '9.7084', '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 (57461, '2022-02-07', 2068, 54690, 3776, NULL, '1.0000', '11.8658', '11.8658', '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 (57462, '2022-02-07', 1871, 54691, 3776, NULL, '1.0000', '1.6959', '1.6959', '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 (57463, '2022-02-07', 2221, 54692, 3776, 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 (57464, '2022-02-07', 1617, 54693, 3776, NULL, '1.0000', '4.6300', '4.6300', '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 (57465, '2022-02-07', 1812, 54694, 3776, 49895, '1.0000', '7.9262', '7.9262', '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 (57466, '2022-02-07', 7368, 54695, 3777, 49874, '1.0000', '14.7500', '14.7500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57467, '2022-02-07', 1812, 54696, 3777, 49895, '2.0000', '7.9262', '7.9262', '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 (57468, '2022-02-07', 1811, 54697, 3777, 42078, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '5.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57469, '2022-02-08', 2293, 54698, 3778, NULL, '3.0000', '-15.8931', '-15.8931', '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 (57470, '2022-02-08', 2289, 54699, 3778, 49873, '5.0000', '0.2222', '0.2222', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57471, '2022-02-08', 1841, 54700, 3778, 31077, '4.0000', '0.2601', '0.2601', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57472, '2022-02-08', 1590, 54701, 3778, 49903, '2.0000', '1.4454', '1.4454', '2.5000', '2.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 (57473, '2022-02-08', 2167, 54702, 3778, NULL, '1.0000', '2.1310', '2.1310', '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 (57474, '2022-02-08', 1908, 54703, 3778, 48495, '4.0000', '0.9032', '0.9032', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57475, '2022-02-08', 2302, 54704, 3778, 49896, '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 (57476, '2022-02-08', 2302, 54704, 3778, 48638, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57477, '2022-02-08', 1772, 54705, 3778, 48639, '2.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57478, '2022-02-08', 2234, 54706, 3778, 49356, '1.0000', '15.8190', '15.8190', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57479, '2022-02-08', 2405, 54707, 3778, 37770, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '40.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57480, '2022-02-08', 2237, 54708, 3778, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57481, '2022-02-08', 2315, 54709, 3778, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '206.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57482, '2022-02-08', 2821, 54710, 3778, NULL, '1.0000', '3.4701', '3.4701', '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 (57483, '2022-02-08', 8208, 54711, 3778, NULL, '2.0000', '33.0000', '33.0000', '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 (57484, '2022-02-08', 2713, 54712, 3778, 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 (57485, '2022-02-08', 2506, 54713, 3778, NULL, '1.0000', '4.2180', '4.2180', '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 (57486, '2022-02-08', 9741, 54714, 3778, 47101, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57487, '2022-02-08', 1880, 54715, 3778, 49320, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57488, '2022-02-08', 1807, 54716, 3778, NULL, '1.0000', '34.9993', '34.9993', '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 (57489, '2022-02-08', 2315, 54717, 3778, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '207.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57490, '2022-02-08', 2919, 54718, 3778, NULL, '15.0000', '2.9000', '2.9000', '5.0000', '5.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 (57491, '2022-02-08', 1859, 54719, 3778, 48972, '1.0000', '22.8640', '22.8640', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57492, '2022-02-08', 1793, 54720, 3779, NULL, '1.0000', '18.0667', '18.0667', '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 (57493, '2022-02-08', 1912, 54721, 3780, 49717, '3.0000', '0.6298', '0.6298', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57494, '2022-02-08', 1531, 54722, 3781, 48906, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57495, '2022-02-08', 2003, 54723, 3782, 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 (57496, '2022-02-08', 8422, 54724, 3782, NULL, '1.0000', '34.8900', '34.8900', '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 (57497, '2022-02-08', 1665, 54725, 3782, 3235, '-71.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 (57498, '2022-02-08', 1665, 54725, 3782, NULL, '73.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57499, '2022-02-08', 1726, 54726, 3782, 6623, '-1.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 (57500, '2022-02-08', 1726, 54726, 3782, NULL, '2.0000', '90.0000', '90.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 (57501, '2022-02-08', 1928, 54727, 3782, NULL, '1.0000', '186.5625', '186.5625', '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 (57502, '2022-02-08', 1699, 54728, 3782, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '5.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 (57503, '2022-02-08', 2135, 54729, 3782, 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 (57504, '2022-02-08', 8063, 54730, 3783, NULL, '1.0000', '1.6000', '1.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 (57505, '2022-02-08', 7412, 54731, 3783, NULL, '1.0000', '1.5200', '1.5200', '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 (57506, '2022-02-08', 2242, 54732, 3783, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.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 (57507, '2022-02-08', 7711, 54733, 3783, NULL, '2.0000', '35.6300', '35.6300', '49.0000', '49.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 (57508, '2022-02-08', 7671, 54734, 3783, NULL, '1.0000', '15.5000', '15.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 (57509, '2022-02-08', 1498, 54735, 3783, 19685, '-16.0000', '0.3300', '0.3300', '0.6000', '0.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 (57510, '2022-02-08', 1498, 54735, 3783, NULL, '18.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (57511, '2022-02-08', 2315, 54736, 3783, 2735, '-157.0000', '0.3300', '0.3300', '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 (57512, '2022-02-08', 2315, 54736, 3783, NULL, '158.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-158.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57513, '2022-02-08', 7911, 54737, 3783, NULL, '1.0000', '4.3700', '4.3700', '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 (57514, '2022-02-08', 7674, 54738, 3783, 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 (57515, '2022-02-08', 8677, 54739, 3783, NULL, '3.0000', '1.2800', '1.2800', '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 (57516, '2022-02-08', 7495, 54740, 3783, NULL, '1.0000', '17.8000', '17.8000', '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 (57517, '2022-02-08', 2069, 54741, 3783, NULL, '2.0000', '2.0400', '2.0400', '9.5000', '9.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 (57518, '2022-02-08', 1849, 54742, 3783, NULL, '2.0000', '2.5000', '2.5000', '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 (57519, '2022-02-08', 7799, 54743, 3783, NULL, '1.0000', '6.4000', '6.4000', '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 (57520, '2022-02-08', 1760, 54744, 3783, 22256, '1.0000', '111.8384', '111.8384', '1.0000', '1.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 (57521, '2022-02-08', 7415, 54745, 3783, 33809, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57522, '2022-02-08', 7782, 54746, 3783, 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 (57523, '2022-02-08', 2279, 54747, 3783, 2939, '-16.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 (57524, '2022-02-08', 2279, 54747, 3783, NULL, '17.0000', '2.7000', '2.7000', '4.0000', '4.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 (57525, '2022-02-08', 8359, 54748, 3783, NULL, '2.0000', '13.0000', '13.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 (57526, '2022-02-08', 8063, 54749, 3783, NULL, '1.0000', '1.6000', '1.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 (57527, '2022-02-08', 8444, 54750, 3783, NULL, '1.0000', '1.6000', '1.6000', '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 (57528, '2022-02-08', 9797, 54751, 3783, NULL, '2.0000', '2.0000', '2.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 (57529, '2022-02-08', 7906, 54752, 3783, NULL, '1.0000', '9.3000', '9.3000', '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 (57530, '2022-02-08', 9413, 54753, 3783, 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 (57531, '2022-02-08', 7473, 54754, 3783, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (57532, '2022-02-08', 7674, 54755, 3783, 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 (57533, '2022-02-08', 7411, 54756, 3783, NULL, '2.0000', '1.3500', '1.3500', '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 (57534, '2022-02-08', 7385, 54757, 3783, NULL, '1.0000', '2.0000', '2.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 (57535, '2022-02-08', 8127, 54758, 3783, NULL, '1.0000', '24.5300', '24.5300', '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 (57536, '2022-02-08', 9473, 54759, 3783, NULL, '2.0000', '17.0000', '17.0000', '23.0000', '23.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 (57537, '2022-02-08', 2169, 54760, 3784, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57538, '2022-02-08', 1499, 54761, 3784, 45093, '1.0000', '0.4164', '0.4164', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57539, '2022-02-08', 2289, 54762, 3784, 40620, '2.0000', '0.2831', '0.2831', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57540, '2022-02-08', 2317, 54763, 3784, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '33.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57541, '2022-02-08', 2858, 54764, 3784, 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 (57542, '2022-02-08', 7915, 54765, 3784, 46622, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57543, '2022-02-08', 9794, 54766, 3784, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '99.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57544, '2022-02-08', 1812, 54767, 3784, 49993, '1.0000', '7.9738', '7.9738', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57545, '2022-02-08', 1840, 54768, 3784, NULL, '1.0000', '0.2400', '0.2400', '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 (57546, '2022-02-08', 7328, 54769, 3784, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (57547, '2022-02-08', 1695, 54770, 3784, 49541, '2.0000', '44.4048', '44.4048', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57548, '2022-02-08', 1346, 54771, 3784, 46772, '2.0000', '0.9485', '0.9485', '1.5000', '1.5000', '146.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57549, '2022-02-08', 9734, 54772, 3784, 46028, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57550, '2022-02-08', 1935, 54773, 3784, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57551, '2022-02-08', 2256, 54774, 3784, 49552, '2.0000', '14.4000', '14.4000', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57552, '2022-02-08', 7612, 54775, 3784, NULL, '3.0000', '46.0000', '46.0000', '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 (57553, '2022-02-08', 7756, 54776, 3784, NULL, '1.0000', '23.9111', '23.9111', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57554, '2022-02-08', 2858, 54777, 3784, 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 (57555, '2022-02-08', 7459, 54778, 3784, 50008, '3.0000', '2.3500', '2.3500', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57556, '2022-02-08', 7746, 54779, 3785, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57557, '2022-02-08', 7560, 54780, 3786, NULL, '1.0000', '-165127.7734', '-165127.7734', '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 (57558, '2022-02-08', 7547, 54781, 3786, NULL, '2.0000', '0.0000', '0.0000', '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 (57559, '2022-02-08', 7519, 54782, 3786, 46682, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57560, '2022-02-08', 7952, 54783, 3786, NULL, '1.0000', '62.3792', '62.3792', '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 (57561, '2022-02-08', 7899, 54784, 3786, 49763, '1.0000', '4.0000', '4.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57562, '2022-02-08', 7781, 54785, 3786, NULL, '3.0000', '4.2500', '4.2500', '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 (57563, '2022-02-08', 2295, 54786, 3786, NULL, '2.0000', '0.7000', '0.7000', '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 (57564, '2022-02-08', 7784, 54787, 3786, NULL, '4.0000', '4.2645', '4.2645', '5.5800', '5.5800', '-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 (57565, '2022-02-08', 9092, 54788, 3786, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '104.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57566, '2022-02-08', 7774, 54789, 3786, NULL, '1.0000', '1.4724', '1.4724', '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 (57567, '2022-02-08', 3013, 54790, 3786, 47924, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57568, '2022-02-08', 9193, 54791, 3786, NULL, '1.0000', '7.0315', '7.0315', '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 (57569, '2022-02-08', 7612, 54792, 3786, NULL, '1.0000', '0.3870', '0.3870', '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 (57570, '2022-02-08', 1541, 54793, 3786, NULL, '1.0000', '19.0062', '19.0062', '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 (57571, '2022-02-08', 7330, 54794, 3786, NULL, '1.0000', '3.0500', '3.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 (57572, '2022-02-08', 1743, 54795, 3786, 43100, '1.0000', '2.5926', '2.5926', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57573, '2022-02-08', 8395, 54796, 3786, NULL, '1.0000', '0.9700', '0.9700', '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 (57574, '2022-02-08', 8077, 54797, 3786, NULL, '1.0000', '21.3750', '21.3750', '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 (57575, '2022-02-08', 7872, 54798, 3786, NULL, '1.0000', '-1695.2798', '-1695.2798', '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 (57576, '2022-02-08', 8296, 54799, 3786, NULL, '1.0000', '112.3600', '112.3600', '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 (57577, '2022-02-08', 7703, 54800, 3786, NULL, '2.0000', '102.7757', '102.7757', '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 (57578, '2022-02-08', 7591, 54801, 3786, NULL, '1.0000', '2.7500', '2.7500', '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 (57579, '2022-02-08', 2315, 54802, 3786, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '12.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57580, '2022-02-08', 7509, 54803, 3786, NULL, '1.0000', '6.3733', '6.3733', '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 (57581, '2022-02-08', 2315, 54804, 3786, 48004, '3.0000', '0.8863', '0.8863', '0.8000', '0.8000', '10.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57582, '2022-02-08', 7612, 54805, 3786, NULL, '1.0000', '0.3870', '0.3870', '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 (57583, '2022-02-08', 7514, 54806, 3786, NULL, '1.0000', '65.8461', '65.8461', '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 (57584, '2022-02-08', 7457, 54807, 3786, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57585, '2022-02-08', 9740, 54808, 3786, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57586, '2022-02-08', 7411, 54809, 3786, NULL, '1.0000', '1.3600', '1.3600', '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 (57587, '2022-02-08', 7509, 54810, 3786, NULL, '1.0000', '6.3733', '6.3733', '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 (57588, '2022-02-08', 7787, 54811, 3786, NULL, '1.0000', '11.7735', '11.7735', '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 (57589, '2022-02-08', 8154, 54812, 3786, NULL, '1.0000', '12.3000', '12.3000', '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 (57590, '2022-02-08', 8359, 54813, 3786, NULL, '1.0000', '-3070.2788', '-3070.2788', '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 (57591, '2022-02-08', 7674, 54814, 3786, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57592, '2022-02-08', 7958, 54815, 3786, NULL, '1.0000', '-5.5000', '-5.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 (57593, '2022-02-08', 2435, 54816, 3786, NULL, '1.0000', '4.8000', '4.8000', '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 (57594, '2022-02-08', 7721, 54817, 3786, 49976, '2.0000', '6.1818', '6.1818', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57595, '2022-02-08', 2324, 54818, 3786, 49975, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '7.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57596, '2022-02-08', 8075, 54819, 3786, NULL, '1.0000', '3.0000', '3.0000', '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 (57597, '2022-02-08', 1590, 54820, 3786, 34520, '2.0000', '1.7112', '1.7112', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57598, '2022-02-08', 7675, 54821, 3786, NULL, '1.0000', '84.8590', '84.8590', '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 (57599, '2022-02-08', 1837, 54822, 3786, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57600, '2022-02-08', 9791, 54823, 3786, 49771, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '146.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57601, '2022-02-08', 9089, 54824, 3786, 42765, '1.0000', '3.8000', '3.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57602, '2022-02-08', 7344, 54825, 3786, 45299, '1.0000', '-333.7508', '-333.7508', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57603, '2022-02-08', 8596, 54826, 3786, NULL, '2.0000', '17.0000', '17.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 (57604, '2022-02-08', 9160, 54827, 3786, NULL, '1.0000', '41.6640', '41.6640', '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 (57605, '2022-02-08', 8942, 54828, 3786, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57606, '2022-02-08', 7518, 54829, 3786, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (57607, '2022-02-08', 9094, 54830, 3786, NULL, '1.0000', '5.7002', '5.7002', '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 (57608, '2022-02-08', 7836, 54831, 3786, NULL, '1.0000', '9.0000', '9.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57609, '2022-02-08', 8467, 54832, 3786, NULL, '1.0000', '60.0000', '60.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57610, '2022-02-08', 7641, 54833, 3786, NULL, '2.0000', '-157.2782', '-157.2782', '8.5800', '8.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57611, '2022-02-08', 8677, 54834, 3786, NULL, '2.0000', '1.2300', '1.2300', '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 (57612, '2022-02-08', 7743, 54835, 3786, NULL, '1.0000', '419203.7668', '419203.7668', '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 (57613, '2022-02-08', 7514, 54836, 3786, NULL, '2.0000', '65.8461', '65.8461', '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 (57614, '2022-02-08', 7695, 54837, 3786, NULL, '1.0000', '3.9400', '3.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 (57615, '2022-02-08', 7704, 54838, 3786, NULL, '2.0000', '-1.5625', '-1.5625', '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 (57616, '2022-02-08', 8154, 54839, 3786, NULL, '1.0000', '12.3000', '12.3000', '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 (57617, '2022-02-08', 7999, 54840, 3787, 46264, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57618, '2022-02-08', 8040, 54841, 3787, 46216, '1.0000', '10.6400', '10.6400', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57619, '2022-02-08', 9747, 54842, 3787, 46923, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57620, '2022-02-08', 9214, 54843, 3787, NULL, '1.0000', '9.4452', '9.4452', '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 (57621, '2022-02-08', 7324, 54844, 3788, NULL, '2.0000', '4.0000', '4.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 (57622, '2022-02-08', 1771, 54845, 3788, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57623, '2022-02-08', 7411, 54846, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57624, '2022-02-08', 2315, 54847, 3788, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '203.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57625, '2022-02-08', 1647, 54848, 3788, NULL, '1.0000', '5.0700', '5.0700', '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 (57626, '2022-02-08', 3029, 54849, 3788, NULL, '1.0000', '4.7700', '4.7700', '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 (57627, '2022-02-08', 9399, 54850, 3788, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57628, '2022-02-08', 2054, 54851, 3788, 49628, '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 (57629, '2022-02-08', 9579, 54852, 3788, 49672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57630, '2022-02-08', 2036, 54853, 3788, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '7.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 (57631, '2022-02-08', 1644, 54854, 3788, 45147, '1.0000', '33.9010', '33.9010', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57632, '2022-02-08', 9747, 54855, 3788, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57633, '2022-02-08', 7554, 54856, 3788, NULL, '10.0000', '16.0000', '16.0000', '2.2000', '2.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 (57634, '2022-02-08', 7915, 54857, 3788, NULL, '1.0000', '2.8000', '2.8000', '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 (57635, '2022-02-08', 8407, 54858, 3788, NULL, '1.0000', '2.9800', '2.9800', '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 (57636, '2022-02-08', 1841, 54859, 3788, 31077, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57637, '2022-02-08', 1840, 54860, 3788, NULL, '1.0000', '0.2400', '0.2400', '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 (57638, '2022-02-08', 7411, 54861, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57639, '2022-02-08', 8034, 54862, 3788, NULL, '1.0000', '4.8900', '4.8900', '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 (57640, '2022-02-08', 2169, 54863, 3788, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57641, '2022-02-08', 7411, 54864, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57642, '2022-02-08', 7877, 54865, 3788, 39849, '1.0000', '5.1600', '5.1600', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57643, '2022-02-08', 7918, 54866, 3788, NULL, '1.0000', '11.0875', '11.0875', '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 (57644, '2022-02-08', 2088, 54867, 3788, NULL, '1.0000', '-1.0956', '-1.0956', '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 (57645, '2022-02-08', 2169, 54868, 3788, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57646, '2022-02-08', 8752, 54869, 3788, NULL, '3.0000', '4.2000', '4.2000', '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 (57647, '2022-02-08', 1871, 54870, 3788, NULL, '2.0000', '1.6959', '1.6959', '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 (57648, '2022-02-08', 9578, 54871, 3788, 47856, '2.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 350);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57649, '2022-02-08', 7411, 54872, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57650, '2022-02-08', 2754, 54873, 3788, 18938, '20.0000', '0.0800', '0.0800', '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 (57651, '2022-02-08', 1520, 54874, 3788, 48888, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57652, '2022-02-08', 1571, 54875, 3788, 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 (57653, '2022-02-08', 2633, 54876, 3788, 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 (57654, '2022-02-08', 1841, 54877, 3788, 31077, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57655, '2022-02-08', 1840, 54878, 3788, NULL, '1.0000', '0.2400', '0.2400', '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 (57656, '2022-02-08', 1564, 54879, 3788, NULL, '2.0000', '2.4842', '2.4842', '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 (57657, '2022-02-08', 7324, 54880, 3788, NULL, '2.0000', '4.0000', '4.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 (57658, '2022-02-08', 8913, 54881, 3788, NULL, '1.0000', '15.1700', '15.1700', '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 (57659, '2022-02-08', 1935, 54882, 3788, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57660, '2022-02-08', 2681, 54883, 3788, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57661, '2022-02-08', 1647, 54884, 3788, NULL, '1.0000', '5.0700', '5.0700', '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 (57662, '2022-02-08', 7411, 54885, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57663, '2022-02-08', 1498, 54886, 3788, 19871, '1.0000', '0.3300', '0.3300', '0.6000', '0.6000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57664, '2022-02-08', 7877, 54887, 3788, 39849, '1.0000', '5.1600', '5.1600', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57665, '2022-02-08', 8903, 54888, 3788, NULL, '1.0000', '5.3700', '5.3700', '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 (57666, '2022-02-08', 7769, 54889, 3788, 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 (57667, '2022-02-08', 7411, 54890, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57668, '2022-02-08', 2237, 54891, 3788, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57669, '2022-02-08', 2167, 54892, 3788, NULL, '1.0000', '2.1310', '2.1310', '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 (57670, '2022-02-08', 2252, 54893, 3788, NULL, '1.0000', '16.5900', '16.5900', '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 (57671, '2022-02-08', 2821, 54894, 3788, NULL, '1.0000', '3.4701', '3.4701', '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 (57672, '2022-02-08', 7918, 54895, 3788, NULL, '1.0000', '11.0875', '11.0875', '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 (57673, '2022-02-08', 9715, 54896, 3788, 49884, '1.0000', '9.4000', '9.4000', '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 (57674, '2022-02-08', 7411, 54897, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57675, '2022-02-08', 2221, 54898, 3788, 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 (57676, '2022-02-08', 7411, 54899, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57677, '2022-02-08', 1394, 54900, 3788, 48995, '1.0000', '7.8985', '7.8985', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57678, '2022-02-08', 2660, 54901, 3788, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57679, '2022-02-08', 1520, 54902, 3788, 48888, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57680, '2022-02-08', 2592, 54903, 3788, 48144, '1.0000', '7.6936', '7.6936', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57681, '2022-02-08', 7411, 54904, 3788, NULL, '1.0000', '1.3013', '1.3013', '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 (57682, '2022-02-08', 2003, 54905, 3788, 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 (57683, '2022-02-08', 2660, 54906, 3788, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57684, '2022-02-08', 1871, 54907, 3788, NULL, '2.0000', '1.6959', '1.6959', '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 (57685, '2022-02-08', 9740, 54908, 3788, 47076, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57686, '2022-02-08', 7472, 54909, 3788, NULL, '1.0000', '4.2055', '4.2055', '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 (57687, '2022-02-08', 2167, 54910, 3788, NULL, '1.0000', '2.1310', '2.1310', '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 (57688, '2022-02-08', 2354, 54911, 3788, NULL, '1.0000', '5.0600', '5.0600', '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 (57689, '2022-02-08', 2774, 54912, 3788, NULL, '3.0000', '2.0000', '2.0000', '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 (57690, '2022-02-08', 2237, 54913, 3788, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57691, '2022-02-08', 1519, 54914, 3788, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57692, '2022-02-08', 7554, 54915, 3788, NULL, '10.0000', '16.0000', '16.0000', '2.2000', '2.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 (57693, '2022-02-08', 1965, 54916, 3788, NULL, '1.0000', '17.2400', '17.2400', '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 (57694, '2022-02-08', 1730, 54917, 3788, 42832, '1.0000', '24.1993', '24.1993', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57695, '2022-02-08', 2959, 54918, 3788, 49917, '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 (57696, '2022-02-08', 8686, 54919, 3788, NULL, '1.0000', '7.9900', '7.9900', '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 (57697, '2022-02-08', 7857, 54920, 3788, 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 (57698, '2022-02-08', 7762, 54921, 3788, NULL, '1.0000', '5.1000', '5.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 (57699, '2022-02-08', 9794, 54922, 3788, NULL, '1.0000', '1.0800', '1.0800', '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 (57700, '2022-02-08', 2384, 54923, 3788, NULL, '1.0000', '0.1500', '0.1500', '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 (57701, '2022-02-08', 2315, 54924, 3788, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '204.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57702, '2022-02-08', 8677, 54925, 3788, NULL, '1.0000', '292.4641', '292.4641', '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 (57703, '2022-02-08', 7739, 54926, 3788, NULL, '1.0000', '2.7500', '2.7500', '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 (57704, '2022-02-08', 8166, 54927, 3788, NULL, '1.0000', '4.6000', '4.6000', '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 (57705, '2022-02-08', 7411, 54928, 3788, NULL, '2.0000', '1.3013', '1.3013', '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 (57706, '2022-02-08', 3057, 54929, 3788, 24958, '2.0000', '2.7000', '2.7000', '4.5000', '4.5000', '16.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 (57707, '2022-02-08', 2992, 54930, 3788, 23119, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (57708, '2022-02-08', 1935, 54931, 3788, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57709, '2022-02-08', 2136, 54932, 3788, 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 (57710, '2022-02-08', 7824, 54933, 3788, 39802, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57711, '2022-02-08', 2971, 54934, 3788, 22552, '1.0000', '3.5000', '3.5000', '6.5000', '6.5000', '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 (57712, '2022-02-08', 2506, 54935, 3788, NULL, '2.0000', '4.2180', '4.2180', '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 (57713, '2022-02-08', 1602, 54936, 3788, 49254, '2.0000', '7.0300', '7.0300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57714, '2022-02-08', 2466, 54937, 3788, 38548, '1.0000', '14.3175', '14.3175', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57715, '2022-02-08', 1519, 54938, 3788, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57716, '2022-02-08', 9647, 54939, 3788, 41425, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57717, '2022-02-08', 2506, 54940, 3788, NULL, '1.0000', '4.2180', '4.2180', '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 (57718, '2022-02-08', 2315, 54941, 3788, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '204.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57719, '2022-02-08', 8322, 54942, 3789, NULL, '1.0000', '7.0000', '7.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 (57720, '2022-02-08', 7893, 54943, 3790, 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 (57721, '2022-02-08', 7411, 54944, 3790, NULL, '3.0000', '1.3013', '1.3013', '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 (57722, '2022-02-08', 1519, 54945, 3790, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57723, '2022-02-08', 2277, 54946, 3790, NULL, '1.0000', '0.9399', '0.9399', '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 (57724, '2022-02-08', 1520, 54947, 3791, 33822, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57725, '2022-02-09', 9726, 54948, 3792, 46155, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57726, '2022-02-09', 2169, 54949, 3792, NULL, '2.0000', '0.9800', '0.9800', '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 (57727, '2022-02-09', 2678, 54950, 3792, 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 (57728, '2022-02-09', 1480, 54951, 3792, NULL, '1.0000', '90.0000', '90.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 (57729, '2022-02-09', 1559, 54952, 3792, 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 (57730, '2022-02-09', 1863, 54953, 3792, 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 (57731, '2022-02-09', 8774, 54954, 3792, NULL, '1.0000', '2.3000', '2.3000', '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 (57732, '2022-02-09', 1580, 54955, 3792, 34522, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57733, '2022-02-09', 2293, 54956, 3792, 48341, '3.0000', '0.7200', '0.7200', '1.0000', '1.0000', '197.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57734, '2022-02-09', 9413, 54957, 3792, 46252, '1.0000', '9.0251', '9.0251', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57735, '2022-02-09', 1856, 54958, 3792, 49813, '1.0000', '-5.9870', '-5.9870', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57736, '2022-02-09', 1912, 54959, 3792, 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 (57737, '2022-02-09', 2262, 54960, 3792, 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 (57738, '2022-02-09', 2916, 54961, 3792, 39571, '1.0000', '13.3720', '13.3720', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57739, '2022-02-09', 1867, 54962, 3792, 49740, '1.0000', '13.3004', '13.3004', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57740, '2022-02-09', 2136, 54963, 3792, 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 (57741, '2022-02-09', 1828, 54964, 3792, NULL, '1.0000', '0.7300', '0.7300', '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 (57742, '2022-02-09', 2104, 54965, 3792, NULL, '1.0000', '0.2000', '0.2000', '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 (57743, '2022-02-09', 1694, 54966, 3792, 32909, '1.0000', '7.1900', '7.1900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57744, '2022-02-09', 2315, 54967, 3792, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '7.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57745, '2022-02-09', 2414, 54968, 3792, NULL, '4.0000', '3.4000', '3.4000', '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 (57746, '2022-02-09', 7671, 54969, 3792, NULL, '1.0000', '76.3606', '76.3606', '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 (57747, '2022-02-09', 1564, 54970, 3792, 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 (57748, '2022-02-09', 1935, 54971, 3792, NULL, '1.0000', '28.7657', '28.7657', '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 (57749, '2022-02-09', 1527, 54972, 3792, NULL, '3.0000', '90.0000', '90.0000', '18.0000', '18.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 (57750, '2022-02-09', 1748, 54973, 3792, NULL, '2.0000', '0.3200', '0.3200', '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 (57751, '2022-02-09', 1863, 54974, 3792, 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 (57752, '2022-02-09', 2948, 54975, 3793, 48290, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57753, '2022-02-09', 8677, 54976, 3793, NULL, '2.0000', '1.2300', '1.2300', '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 (57754, '2022-02-09', 2293, 54977, 3793, 48341, '3.0000', '0.7200', '0.7200', '1.0000', '1.0000', '194.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57755, '2022-02-09', 1561, 54978, 3793, NULL, '3.0000', '27.0000', '27.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 (57756, '2022-02-09', 1541, 54979, 3793, NULL, '1.0000', '19.0062', '19.0062', '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 (57757, '2022-02-09', 9578, 54980, 3794, NULL, '1.0000', '8.0000', '8.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 (57758, '2022-02-09', 2366, 54981, 3794, 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 (57759, '2022-02-09', 2376, 54982, 3794, NULL, '2.0000', '19.5000', '19.5000', '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 (57760, '2022-02-09', 9399, 54983, 3794, NULL, '1.0000', '0.9794', '0.9794', '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 (57761, '2022-02-09', 3059, 54984, 3794, NULL, '2.0000', '0.4500', '0.4500', '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 (57762, '2022-02-09', 2633, 54985, 3794, 32921, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57763, '2022-02-09', 9740, 54986, 3794, 46921, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57764, '2022-02-09', 1701, 54987, 3794, NULL, '1.0000', '14.7800', '14.7800', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57765, '2022-02-09', 1549, 54988, 3794, 33705, '1.0000', '15.2000', '15.2000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57766, '2022-02-09', 9734, 54989, 3794, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '102.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57767, '2022-02-09', 1425, 54990, 3795, 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 (57768, '2022-02-09', 8765, 54991, 3795, 32136, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57769, '2022-02-09', 1631, 54992, 3795, 45318, '3.0000', '-28.0260', '-28.0260', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57770, '2022-02-09', 1700, 54993, 3795, 42423, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57771, '2022-02-09', 2234, 54994, 3795, 31010, '1.0000', '18.7000', '18.7000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57772, '2022-02-09', 2864, 54995, 3795, 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 (57773, '2022-02-09', 2073, 54996, 3795, NULL, '2.0000', '2.3000', '2.3000', '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 (57774, '2022-02-09', 2263, 54997, 3796, 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 (57775, '2022-02-09', 2088, 54998, 3796, NULL, '1.0000', '-1.0956', '-1.0956', '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 (57776, '2022-02-09', 2169, 54999, 3796, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57777, '2022-02-09', 2379, 55000, 3796, NULL, '1.0000', '1.0877', '1.0877', '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 (57778, '2022-02-09', 1837, 55001, 3796, NULL, '2.0000', '1.5967', '1.5967', '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 (57779, '2022-02-09', 1564, 55002, 3796, NULL, '10.0000', '2.4842', '2.4842', '4.0000', '4.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 (57780, '2022-02-09', 1665, 55003, 3796, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57781, '2022-02-09', 1771, 55004, 3796, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57782, '2022-02-09', 1577, 55005, 3796, NULL, '1.0000', '2.3271', '2.3271', '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 (57783, '2022-02-09', 1863, 55006, 3796, 49716, '1.0000', '1.3799', '1.3799', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57784, '2022-02-09', 8638, 55007, 3796, NULL, '1.0000', '0.5100', '0.5100', '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 (57785, '2022-02-09', 1839, 55008, 3796, NULL, '1.0000', '-9.7683', '-9.7683', '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 (57786, '2022-02-09', 1602, 55009, 3796, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57787, '2022-02-09', 2699, 55010, 3796, 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 (57788, '2022-02-09', 2948, 55011, 3796, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57789, '2022-02-09', 8915, 55012, 3797, NULL, '1.0000', '54.3762', '54.3762', '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 (57790, '2022-02-09', 9695, 55013, 3798, 49617, '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 (57791, '2022-02-09', 2169, 55014, 3798, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57792, '2022-02-09', 2948, 55015, 3798, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57793, '2022-02-09', 2169, 55016, 3799, 10737, '-35.0000', '3.8397', '3.8397', '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 (57794, '2022-02-09', 2169, 55016, 3799, NULL, '36.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (57795, '2022-02-09', 2315, 55017, 3799, 2735, '-158.0000', '0.3300', '0.3300', '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 (57796, '2022-02-09', 2315, 55017, 3799, NULL, '159.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-159.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57797, '2022-02-09', 2379, 55018, 3799, 4032, '-43.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 (57798, '2022-02-09', 2379, 55018, 3799, NULL, '44.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57799, '2022-02-09', 1892, 55019, 3799, 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 (57800, '2022-02-09', 1837, 55020, 3799, 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 (57801, '2022-02-09', 9770, 55021, 3799, 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 (57802, '2022-02-09', 1602, 55022, 3799, 5897, '-105.0000', '6.7859', '6.7859', '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 (57803, '2022-02-09', 1602, 55022, 3799, NULL, '107.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-107.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57804, '2022-02-09', 1519, 55023, 3799, 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 (57805, '2022-02-09', 2635, 55024, 3799, 10297, '-13.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 (57806, '2022-02-09', 2635, 55024, 3799, NULL, '14.0000', '3.0000', '3.0000', '4.0000', '4.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 (57807, '2022-02-09', 1828, 55025, 3800, 33003, '2.0000', '0.7300', '0.7300', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57808, '2022-02-09', 2169, 55026, 3800, 46750, '2.0000', '1.1531', '1.1531', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57809, '2022-02-09', 2511, 55027, 3800, 49526, '1.0000', '8.8545', '8.8545', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57810, '2022-02-09', 8759, 55028, 3800, 49481, '1.0000', '4.0000', '4.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57811, '2022-02-09', 9734, 55029, 3800, 46028, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57812, '2022-02-09', 7380, 55030, 3800, NULL, '1.0000', '5.6200', '5.6200', '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 (57813, '2022-02-09', 1712, 55031, 3800, 44627, '1.0000', '11.5450', '11.5450', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57814, '2022-02-09', 8200, 55032, 3800, 42960, '1.0000', '6.1395', '6.1395', '8.5000', '8.5000', '16.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57815, '2022-02-09', 2660, 55033, 3800, 49531, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57816, '2022-02-09', 1665, 55034, 3800, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57817, '2022-02-09', 2383, 55035, 3800, 10543, '1.0000', '16.3000', '16.3000', '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 (57818, '2022-02-09', 1703, 55036, 3800, 46735, '1.0000', '8.1333', '8.1333', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57819, '2022-02-09', 1840, 55037, 3800, NULL, '3.0000', '0.2400', '0.2400', '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 (57820, '2022-02-09', 1841, 55038, 3800, 44579, '3.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '64.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57821, '2022-02-09', 1349, 55039, 3800, 49554, '1.0000', '34.2624', '34.2624', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57822, '2022-02-09', 9731, 55040, 3800, 46034, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57823, '2022-02-09', 2231, 55041, 3800, 49409, '1.0000', '35.2628', '35.2628', '39.0000', '39.0000', '7.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57824, '2022-02-09', 2315, 55042, 3800, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '198.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57825, '2022-02-09', 3029, 55043, 3800, 49991, '1.0000', '6.5895', '6.5895', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57826, '2022-02-09', 2660, 55044, 3800, 49531, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57827, '2022-02-09', 2360, 55045, 3800, 49990, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '49.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57828, '2022-02-09', 2660, 55046, 3800, 49531, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57829, '2022-02-09', 7430, 55047, 3800, NULL, '1.0000', '15.0000', '15.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 (57830, '2022-02-09', 9741, 55048, 3800, 46039, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57831, '2022-02-09', 9732, 55049, 3800, 46033, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57832, '2022-02-09', 7980, 55050, 3800, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (57833, '2022-02-09', 1935, 55051, 3800, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57834, '2022-02-09', 7526, 55052, 3801, NULL, '1.0000', '27.7600', '27.7600', '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 (57835, '2022-02-09', 2449, 55053, 3801, NULL, '1.0000', '5.5000', '5.5000', '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 (57836, '2022-02-09', 8233, 55054, 3801, 40439, '1.0000', '4.0449', '4.0449', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57837, '2022-02-09', 9734, 55055, 3801, 46910, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '99.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57838, '2022-02-09', 8735, 55056, 3801, NULL, '1.0000', '5.6000', '5.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 (57839, '2022-02-09', 7514, 55057, 3801, NULL, '1.0000', '65.8461', '65.8461', '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 (57840, '2022-02-09', 7380, 55058, 3801, NULL, '1.0000', '8.0000', '8.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 (57841, '2022-02-09', 8465, 55059, 3801, NULL, '1.0000', '60.0000', '60.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 (57842, '2022-02-09', 2699, 55060, 3801, NULL, '5.0000', '3.0000', '3.0000', '4.5000', '4.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 (57843, '2022-02-09', 1765, 55061, 3801, 48061, '1.0000', '5.4523', '5.4523', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57844, '2022-02-09', 8101, 55062, 3801, NULL, '2.0000', '21.7000', '21.7000', '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 (57845, '2022-02-09', 8970, 55063, 3801, NULL, '1.0000', '-26.3000', '-26.3000', '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 (57846, '2022-02-09', 7411, 55064, 3801, NULL, '2.0000', '1.3600', '1.3600', '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 (57847, '2022-02-09', 9272, 55065, 3801, NULL, '1.0000', '3.1000', '3.1000', '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 (57848, '2022-02-09', 7496, 55066, 3801, NULL, '1.0000', '0.9600', '0.9600', '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 (57849, '2022-02-09', 7491, 55067, 3801, 46186, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57850, '2022-02-09', 8497, 55068, 3801, NULL, '1.0000', '1126.4862', '1126.4862', '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 (57851, '2022-02-09', 9721, 55069, 3801, NULL, '1.0000', '11.7000', '11.7000', '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 (57852, '2022-02-09', 9723, 55070, 3801, 46152, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57853, '2022-02-09', 7354, 55071, 3801, NULL, '1.0000', '18.0000', '18.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 (57854, '2022-02-09', 7335, 55072, 3801, NULL, '1.0000', '4.4067', '4.4067', '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 (57855, '2022-02-09', 8429, 55073, 3801, 46213, '1.0000', '11.0525', '11.0525', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57856, '2022-02-09', 7708, 55074, 3801, NULL, '1.0000', '2.3100', '2.3100', '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 (57857, '2022-02-09', 2251, 55075, 3801, 49817, '1.0000', '11.7094', '11.7094', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57858, '2022-02-09', 8137, 55076, 3801, NULL, '1.0000', '3.0000', '3.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 (57859, '2022-02-09', 8810, 55077, 3801, NULL, '1.0000', '2.5002', '2.5002', '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 (57860, '2022-02-09', 8966, 55078, 3801, NULL, '1.0000', '6.4994', '6.4994', '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 (57861, '2022-02-09', 8208, 55079, 3801, NULL, '1.0000', '33.0000', '33.0000', '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 (57862, '2022-02-09', 7674, 55080, 3801, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57863, '2022-02-09', 9499, 55081, 3801, 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 (57864, '2022-02-09', 2295, 55082, 3801, 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 (57865, '2022-02-09', 8941, 55083, 3801, NULL, '1.0000', '12.0000', '12.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 (57866, '2022-02-09', 8918, 55084, 3801, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57867, '2022-02-09', 8883, 55085, 3801, NULL, '2.0000', '56.5500', '56.5500', '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 (57868, '2022-02-09', 8596, 55086, 3801, NULL, '1.0000', '17.0000', '17.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 (57869, '2022-02-09', 7876, 55087, 3801, 49823, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57870, '2022-02-09', 8566, 55088, 3801, 42783, '1.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57871, '2022-02-09', 7638, 55089, 3801, 49728, '1.0000', '11.5604', '11.5604', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57872, '2022-02-09', 9092, 55090, 3801, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '102.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57873, '2022-02-09', 7903, 55091, 3801, 48365, '1.0000', '11.7625', '11.7625', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57874, '2022-02-09', 7927, 55092, 3801, 46237, '1.0000', '11.8399', '11.8399', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57875, '2022-02-09', 8335, 55093, 3801, NULL, '1.0000', '21.7000', '21.7000', '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 (57876, '2022-02-09', 1329, 55094, 3801, 225, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57877, '2022-02-09', 7743, 55095, 3801, NULL, '1.0000', '419203.7668', '419203.7668', '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 (57878, '2022-02-09', 9637, 55096, 3801, 43544, '1.0000', '36.5000', '36.5000', '48.5000', '48.5000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57879, '2022-02-09', 8497, 55097, 3801, NULL, '1.0000', '1126.4862', '1126.4862', '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 (57880, '2022-02-09', 7954, 55098, 3801, NULL, '2.0000', '24.4161', '24.4161', '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 (57881, '2022-02-09', 9469, 55099, 3801, 39422, '1.0000', '2.3000', '2.3000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57882, '2022-02-09', 7518, 55100, 3801, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (57883, '2022-02-09', 1604, 55101, 3801, 45329, '4.0000', '29.1550', '29.1550', '57.0000', '57.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57884, '2022-02-09', 7472, 55102, 3801, NULL, '1.0000', '-4.3873', '-4.3873', '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 (57885, '2022-02-09', 8079, 55103, 3801, 46666, '1.0000', '-5.4032', '-5.4032', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57886, '2022-02-09', 7911, 55104, 3801, NULL, '1.0000', '4.3700', '4.3700', '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 (57887, '2022-02-09', 8308, 55105, 3801, NULL, '1.0000', '14.1857', '14.1857', '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 (57888, '2022-02-09', 7857, 55106, 3801, NULL, '1.0000', '14.2780', '14.2780', '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 (57889, '2022-02-09', 9747, 55107, 3801, 46923, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57890, '2022-02-09', 9409, 55108, 3801, NULL, '1.0000', '5.6784', '5.6784', '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 (57891, '2022-02-09', 7522, 55109, 3801, NULL, '1.0000', '5.2000', '5.2000', '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 (57892, '2022-02-09', 7514, 55110, 3801, NULL, '1.0000', '65.8461', '65.8461', '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 (57893, '2022-02-09', 8810, 55111, 3801, NULL, '1.0000', '2.5002', '2.5002', '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 (57894, '2022-02-09', 8677, 55112, 3801, NULL, '1.0000', '1.2300', '1.2300', '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 (57895, '2022-02-09', 7671, 55113, 3801, NULL, '1.0000', '76.3606', '76.3606', '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 (57896, '2022-02-09', 7709, 55114, 3801, NULL, '2.0000', '46.8129', '46.8129', '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 (57897, '2022-02-09', 2858, 55115, 3802, 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 (57898, '2022-02-09', 2448, 55116, 3803, 5802, '1.0000', '5.0000', '5.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 (57899, '2022-02-09', 8816, 55117, 3804, NULL, '1.0000', '18.0000', '18.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 (57900, '2022-02-09', 2416, 55118, 3804, 49623, '1.0000', '1.2000', '1.2000', '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 (57901, '2022-02-09', 3066, 55119, 3804, 41378, '1.0000', '25.0000', '25.0000', '36.5000', '36.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57902, '2022-02-09', 7411, 55120, 3804, NULL, '1.0000', '1.3013', '1.3013', '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 (57903, '2022-02-09', 1855, 55121, 3804, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57904, '2022-02-09', 9556, 55122, 3804, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57905, '2022-02-09', 7672, 55123, 3804, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57906, '2022-02-09', 2315, 55124, 3804, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '200.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57907, '2022-02-09', 7588, 55125, 3804, 39763, '1.0000', '7.0000', '7.0000', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57908, '2022-02-09', 8517, 55126, 3804, 49638, '1.0000', '28.0200', '28.0200', '37.5000', '37.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 (57909, '2022-02-09', 7411, 55127, 3804, NULL, '1.0000', '1.3013', '1.3013', '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 (57910, '2022-02-09', 2263, 55128, 3804, 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 (57911, '2022-02-09', 2891, 55129, 3804, 24957, '1.0000', '9.5000', '9.5000', '13.0000', '13.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 (57912, '2022-02-09', 1590, 55130, 3804, 49903, '2.0000', '1.4454', '1.4454', '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 (57913, '2022-02-09', 2237, 55131, 3804, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57914, '2022-02-09', 2695, 55132, 3804, 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 (57915, '2022-02-09', 1751, 55133, 3804, 49640, '1.0000', '4.1376', '4.1376', '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 (57916, '2022-02-09', 1454, 55134, 3804, 47092, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57917, '2022-02-09', 1837, 55135, 3804, NULL, '2.0000', '1.5967', '1.5967', '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 (57918, '2022-02-09', 2379, 55136, 3804, NULL, '1.0000', '1.0877', '1.0877', '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 (57919, '2022-02-09', 2225, 55137, 3804, NULL, '1.0000', '14.0000', '14.0000', '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 (57920, '2022-02-09', 8888, 55138, 3804, NULL, '1.0000', '28.0000', '28.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 (57921, '2022-02-09', 7612, 55139, 3804, NULL, '2.0000', '1.7300', '1.7300', '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 (57922, '2022-02-09', 7756, 55140, 3804, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57923, '2022-02-09', 2169, 55141, 3804, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57924, '2022-02-09', 1874, 55142, 3804, NULL, '1.0000', '6.1000', '6.1000', '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 (57925, '2022-02-09', 8548, 55143, 3804, NULL, '1.0000', '12.0000', '12.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 (57926, '2022-02-09', 9747, 55144, 3804, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57927, '2022-02-09', 2940, 55145, 3804, 24198, '1.0000', '6.3600', '6.3600', '8.5000', '8.5000', '0.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 (57928, '2022-02-09', 2272, 55146, 3804, NULL, '1.0000', '5.5000', '5.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 (57929, '2022-02-09', 1573, 55147, 3804, NULL, '1.0000', '23.1275', '23.1275', '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 (57930, '2022-02-09', 1837, 55148, 3804, NULL, '1.0000', '1.5967', '1.5967', '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 (57931, '2022-02-09', 2379, 55149, 3804, NULL, '1.0000', '1.0877', '1.0877', '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 (57932, '2022-02-09', 1347, 55150, 3804, 41415, '2.0000', '3.3775', '3.3775', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57933, '2022-02-09', 2242, 55151, 3804, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57934, '2022-02-09', 7482, 55152, 3804, NULL, '1.0000', '2.8136', '2.8136', '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 (57935, '2022-02-09', 8407, 55153, 3804, NULL, '1.0000', '2.9800', '2.9800', '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 (57936, '2022-02-09', 2908, 55154, 3804, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57937, '2022-02-09', 2256, 55155, 3804, NULL, '1.0000', '13.6860', '13.6860', '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 (57938, '2022-02-09', 1651, 55156, 3804, 49333, '1.0000', '6.3300', '6.3300', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57939, '2022-02-09', 1904, 55157, 3804, 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 (57940, '2022-02-09', 1812, 55158, 3804, 48636, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57941, '2022-02-09', 8677, 55159, 3804, NULL, '2.0000', '292.4641', '292.4641', '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 (57942, '2022-02-09', 7411, 55160, 3804, NULL, '1.0000', '1.3013', '1.3013', '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 (57943, '2022-02-09', 2275, 55161, 3804, 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 (57944, '2022-02-09', 2169, 55162, 3804, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57945, '2022-02-09', 2315, 55163, 3804, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '199.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57946, '2022-02-09', 2726, 55164, 3804, NULL, '1.0000', '2.7004', '2.7004', '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 (57947, '2022-02-09', 7411, 55165, 3804, NULL, '2.0000', '1.3013', '1.3013', '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 (57948, '2022-02-09', 2169, 55166, 3804, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57949, '2022-02-09', 1912, 55167, 3804, 49717, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57950, '2022-02-09', 7728, 55168, 3804, 44149, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57951, '2022-02-09', 2169, 55169, 3804, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57952, '2022-02-09', 1969, 55170, 3804, NULL, '1.0000', '4.3300', '4.3300', '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 (57953, '2022-02-09', 8454, 55171, 3804, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57954, '2022-02-09', 1839, 55172, 3804, NULL, '1.0000', '-9.7683', '-9.7683', '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 (57955, '2022-02-09', 9778, 55173, 3804, 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 (57956, '2022-02-09', 1590, 55174, 3804, 49903, '2.0000', '1.4454', '1.4454', '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 (57957, '2022-02-09', 7482, 55175, 3804, NULL, '1.0000', '2.8136', '2.8136', '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 (57958, '2022-02-09', 1818, 55176, 3804, 49373, '1.0000', '16.1640', '16.1640', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57959, '2022-02-09', 7763, 55177, 3804, NULL, '1.0000', '1.1300', '1.1300', '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 (57960, '2022-02-09', 9747, 55178, 3804, 47084, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57961, '2022-02-09', 2991, 55179, 3804, 22612, '1.0000', '0.5700', '0.5700', '2.0000', '2.0000', '84.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 (57962, '2022-02-09', 7666, 55180, 3804, NULL, '1.0000', '-6.0000', '-6.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 (57963, '2022-02-09', 9644, 55181, 3804, 41422, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57964, '2022-02-09', 1818, 55182, 3804, 49373, '1.0000', '16.1640', '16.1640', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57965, '2022-02-09', 1529, 55183, 3804, 48650, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57966, '2022-02-09', 2342, 55184, 3804, 49330, '5.0000', '1.9292', '1.9292', '2.7000', '2.7000', '25.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57967, '2022-02-09', 7411, 55185, 3804, NULL, '1.0000', '1.3013', '1.3013', '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 (57968, '2022-02-09', 1602, 55186, 3804, 49254, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57969, '2022-02-09', 9766, 55187, 3804, NULL, '1.0000', '12.7500', '12.7500', '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 (57970, '2022-02-09', 1519, 55188, 3804, 48885, '1.0000', '3.3995', '3.3995', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57971, '2022-02-09', 3044, 55189, 3804, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '37.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 (57972, '2022-02-09', 2283, 55190, 3804, 48600, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57973, '2022-02-09', 7588, 55191, 3804, 39763, '2.0000', '7.0000', '7.0000', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57974, '2022-02-09', 7769, 55192, 3804, 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 (57975, '2022-02-09', 2169, 55193, 3804, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57976, '2022-02-09', 1999, 55194, 3804, 49625, '1.0000', '6.8730', '6.8730', '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 (57977, '2022-02-09', 1425, 55195, 3804, NULL, '1.0000', '5.0176', '5.0176', '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 (57978, '2022-02-09', 7514, 55196, 3804, NULL, '2.0000', '2.2500', '2.2500', '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 (57979, '2022-02-09', 1692, 55197, 3804, 48703, '1.0000', '9.5341', '9.5341', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57980, '2022-02-09', 3058, 55198, 3805, NULL, '1.0000', '2.3000', '2.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 (57981, '2022-02-09', 8149, 55199, 3805, 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 (57982, '2022-02-09', 2269, 55200, 3806, 44353, '1.0000', '5.5010', '5.5010', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57983, '2022-02-09', 7411, 55201, 3806, NULL, '1.0000', '1.3600', '1.3600', '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 (57984, '2022-02-09', 7892, 55202, 3806, NULL, '1.0000', '4.2000', '4.2000', '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 (57985, '2022-02-09', 2295, 55203, 3806, NULL, '2.0000', '0.7000', '0.7000', '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 (57986, '2022-02-09', 7672, 55204, 3806, NULL, '1.0000', '3.8200', '3.8200', '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 (57987, '2022-02-09', 9092, 55205, 3806, 40421, '2.0000', '0.3051', '0.3051', '0.5000', '0.5000', '100.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57988, '2022-02-09', 1989, 55206, 3806, NULL, '1.0000', '4.2500', '4.2500', '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 (57989, '2022-02-09', 7641, 55207, 3806, NULL, '1.0000', '-543.6034', '-543.6034', '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 (57990, '2022-02-09', 1409, 55208, 3807, 49522, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 383);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57991, '2022-02-10', 7612, 55209, 3808, NULL, '1.0000', '1.7300', '1.7300', '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 (57992, '2022-02-10', 1674, 55210, 3808, NULL, '1.0000', '0.8028', '0.8028', '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 (57993, '2022-02-10', 2759, 55211, 3808, 34928, '1.0000', '3.9167', '3.9167', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57994, '2022-02-10', 2454, 55212, 3808, 30701, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57995, '2022-02-10', 2427, 55213, 3808, NULL, '1.0000', '5.8000', '5.8000', '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 (57996, '2022-02-10', 9748, 55214, 3808, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57997, '2022-02-10', 2167, 55215, 3808, NULL, '1.0000', '2.1310', '2.1310', '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 (57998, '2022-02-10', 3058, 55216, 3808, NULL, '1.0000', '2.3000', '2.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 (57999, '2022-02-10', 2379, 55217, 3808, NULL, '1.0000', '1.0877', '1.0877', '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 (58000, '2022-02-10', 1837, 55218, 3808, NULL, '2.0000', '1.5967', '1.5967', '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 (58001, '2022-02-10', 7848, 55219, 3808, 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 (58002, '2022-02-10', 2237, 55220, 3808, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58003, '2022-02-10', 1863, 55221, 3808, 49716, '1.0000', '1.3799', '1.3799', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58004, '2022-02-10', 1855, 55222, 3808, 48881, '2.0000', '1.5003', '1.5003', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58005, '2022-02-10', 2916, 55223, 3808, NULL, '1.0000', '11.2778', '11.2778', '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 (58006, '2022-02-10', 9740, 55224, 3808, 47076, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58007, '2022-02-10', 9794, 55225, 3808, NULL, '1.0000', '1.0800', '1.0800', '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 (58008, '2022-02-10', 1846, 55226, 3808, NULL, '1.0000', '90.0000', '90.0000', '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 (58009, '2022-02-10', 1837, 55227, 3808, NULL, '2.0000', '1.5967', '1.5967', '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 (58010, '2022-02-10', 1590, 55228, 3808, 49903, '3.0000', '1.4454', '1.4454', '2.5000', '2.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 (58011, '2022-02-10', 7331, 55229, 3808, 41401, '1.0000', '58.0000', '58.0000', '77.0000', '77.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58012, '2022-02-10', 1863, 55230, 3808, 49716, '4.0000', '1.3799', '1.3799', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58013, '2022-02-10', 2699, 55231, 3808, 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 (58014, '2022-02-10', 1867, 55232, 3808, 48507, '1.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '15.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58015, '2022-02-10', 3054, 55233, 3808, 49351, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58016, '2022-02-10', 7612, 55234, 3808, NULL, '2.0000', '1.7300', '1.7300', '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 (58017, '2022-02-10', 2389, 55235, 3808, 23156, '2.0000', '3.1400', '3.1400', '4.5000', '4.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 (58018, '2022-02-10', 7848, 55236, 3808, 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 (58019, '2022-02-10', 1876, 55237, 3808, 47058, '1.0000', '18.8100', '18.8100', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58020, '2022-02-10', 2168, 55238, 3808, NULL, '1.0000', '32.0000', '32.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 (58021, '2022-02-10', 9207, 55239, 3808, NULL, '2.0000', '4.6000', '4.6000', '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 (58022, '2022-02-10', 2289, 55240, 3808, 49873, '2.0000', '0.2222', '0.2222', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58023, '2022-02-10', 1841, 55241, 3808, 31077, '2.0000', '0.2601', '0.2601', '0.5000', '0.5000', '2.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58024, '2022-02-10', 1840, 55242, 3808, NULL, '2.0000', '0.2400', '0.2400', '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 (58025, '2022-02-10', 1670, 55243, 3808, NULL, '1.0000', '19.0833', '19.0833', '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 (58026, '2022-02-10', 7638, 55244, 3808, 39773, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58027, '2022-02-10', 7612, 55245, 3808, NULL, '2.0000', '1.7300', '1.7300', '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 (58028, '2022-02-10', 2948, 55246, 3808, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58029, '2022-02-10', 9644, 55247, 3808, 41422, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58030, '2022-02-10', 2354, 55248, 3808, NULL, '1.0000', '5.0600', '5.0600', '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 (58031, '2022-02-10', 2655, 55249, 3808, 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 (58032, '2022-02-10', 2296, 55250, 3809, 2955, '-4.0000', '13.2900', '13.2900', '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 (58033, '2022-02-10', 2296, 55250, 3809, NULL, '5.0000', '13.2900', '13.2900', '19.0000', '19.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 (58034, '2022-02-10', 9731, 55251, 3810, 49289, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58035, '2022-02-10', 7518, 55252, 3810, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (58036, '2022-02-10', 7697, 55253, 3810, 45301, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58037, '2022-02-10', 8288, 55254, 3810, 48318, '1.0000', '1.1923', '1.1923', '1.8000', '1.8000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58038, '2022-02-10', 8288, 55254, 3810, NULL, '2.0000', '1.1923', '1.1923', '1.8000', '1.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 (58039, '2022-02-10', 7989, 55255, 3810, NULL, '1.0000', '-16.3800', '-16.3800', '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 (58040, '2022-02-10', 8448, 55256, 3810, 39539, '1.0000', '6.8900', '6.8900', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58041, '2022-02-10', 9394, 55257, 3810, NULL, '1.0000', '5.5000', '5.5000', '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 (58042, '2022-02-10', 9544, 55258, 3810, NULL, '1.0000', '25.0000', '25.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 (58043, '2022-02-10', 7641, 55259, 3810, NULL, '1.0000', '-543.6034', '-543.6034', '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 (58044, '2022-02-10', 7651, 55260, 3810, NULL, '1.0000', '2.7641', '2.7641', '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 (58045, '2022-02-10', 7849, 55261, 3810, 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 (58046, '2022-02-10', 1533, 55262, 3810, 48373, '1.0000', '3.3568', '3.3568', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58047, '2022-02-10', 2332, 55263, 3810, 49739, '1.0000', '6.3883', '6.3883', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58048, '2022-02-10', 8339, 55264, 3810, 46642, '1.0000', '26.0000', '26.0000', '27.5000', '27.5000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58049, '2022-02-10', 9094, 55265, 3810, NULL, '1.0000', '5.7002', '5.7002', '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 (58050, '2022-02-10', 1805, 55266, 3810, 48074, '1.0000', '4.9973', '4.9973', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58051, '2022-02-10', 7781, 55267, 3810, NULL, '3.0000', '4.2500', '4.2500', '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 (58052, '2022-02-10', 8355, 55268, 3810, NULL, '1.0000', '21.7500', '21.7500', '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 (58053, '2022-02-10', 9332, 55269, 3810, NULL, '1.0000', '72.0000', '72.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 (58054, '2022-02-10', 7826, 55270, 3810, 43524, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58055, '2022-02-10', 9511, 55271, 3810, 48837, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58056, '2022-02-10', 9095, 55272, 3810, NULL, '1.0000', '9.7084', '9.7084', '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 (58057, '2022-02-10', 9286, 55273, 3810, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58058, '2022-02-10', 9417, 55274, 3810, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58059, '2022-02-10', 8758, 55275, 3810, 32145, '1.0000', '5.8000', '5.8000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58060, '2022-02-10', 2479, 55276, 3811, 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 (58061, '2022-02-10', 8102, 55277, 3811, 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 (58062, '2022-02-10', 9167, 55278, 3811, NULL, '1.0000', '13.3000', '13.3000', '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 (58063, '2022-02-10', 1524, 55279, 3811, NULL, '1.0000', '3.8400', '3.8400', '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 (58064, '2022-02-10', 2862, 55280, 3811, 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 (58065, '2022-02-10', 2260, 55281, 3811, 2796, '-11.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 (58066, '2022-02-10', 2260, 55281, 3811, NULL, '12.0000', '4.2000', '4.2000', '6.0000', '6.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 (58067, '2022-02-10', 1665, 55282, 3811, 3235, '-73.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 (58068, '2022-02-10', 1665, 55282, 3811, NULL, '74.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58069, '2022-02-10', 1892, 55283, 3811, 5431, '-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 (58070, '2022-02-10', 1892, 55283, 3811, 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 (58071, '2022-02-10', 2543, 55284, 3811, 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 (58072, '2022-02-10', 2699, 55285, 3811, 12529, '-28.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 (58073, '2022-02-10', 2699, 55285, 3811, NULL, '29.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58074, '2022-02-10', 1307, 55286, 3812, NULL, '1.0000', '0.6103', '0.6103', '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 (58075, '2022-02-10', 1554, 55287, 3812, 41389, '1.0000', '2.5497', '2.5497', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58076, '2022-02-10', 1863, 55288, 3812, 49716, '2.0000', '1.3799', '1.3799', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58077, '2022-02-10', 2239, 55289, 3812, 39880, '2.0000', '25.8286', '25.8286', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58078, '2022-02-10', 1806, 55290, 3812, NULL, '1.0000', '34.3245', '34.3245', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58079, '2022-02-10', 1699, 55291, 3812, NULL, '1.0000', '3.2000', '3.2000', '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 (58080, '2022-02-10', 2036, 55292, 3812, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.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 (58081, '2022-02-10', 8208, 55293, 3812, NULL, '2.0000', '33.0000', '33.0000', '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 (58082, '2022-02-10', 1855, 55294, 3812, 48881, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58083, '2022-02-10', 1493, 55295, 3812, 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 (58084, '2022-02-10', 2821, 55296, 3812, NULL, '1.0000', '3.4701', '3.4701', '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 (58085, '2022-02-10', 2948, 55297, 3812, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58086, '2022-02-10', 7554, 55298, 3812, NULL, '10.0000', '16.0000', '16.0000', '2.2000', '2.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 (58087, '2022-02-10', 2237, 55299, 3812, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58088, '2022-02-10', 2169, 55300, 3812, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58089, '2022-02-10', 1573, 55301, 3812, NULL, '1.0000', '23.1275', '23.1275', '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 (58090, '2022-02-10', 9399, 55302, 3812, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58091, '2022-02-10', 2315, 55303, 3812, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '197.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58092, '2022-02-10', 1912, 55304, 3812, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58093, '2022-02-10', 7790, 55305, 3812, NULL, '1.0000', '17.0000', '17.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 (58094, '2022-02-10', 9794, 55306, 3812, NULL, '1.0000', '1.0800', '1.0800', '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 (58095, '2022-02-10', 8455, 55307, 3812, NULL, '1.0000', '4.5000', '4.5000', '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 (58096, '2022-02-10', 1693, 55308, 3812, 48131, '1.0000', '7.9174', '7.9174', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58097, '2022-02-10', 9770, 55309, 3812, 48585, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58098, '2022-02-10', 1314, 55310, 3812, 48145, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58099, '2022-02-10', 1616, 55311, 3812, 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 (58100, '2022-02-10', 2135, 55312, 3812, 18930, '1.0000', '2.4732', '2.4732', '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 (58101, '2022-02-10', 2618, 55313, 3812, 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 (58102, '2022-02-10', 7409, 55314, 3812, 39838, '1.0000', '5.0825', '5.0825', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58103, '2022-02-10', 2284, 55315, 3812, 49646, '1.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 (58104, '2022-02-10', 1825, 55316, 3812, NULL, '1.0000', '5.1984', '5.1984', '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 (58105, '2022-02-10', 3017, 55317, 3812, 49886, '1.0000', '3.9000', '3.9000', '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 (58106, '2022-02-10', 1665, 55318, 3812, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58107, '2022-02-10', 8649, 55319, 3813, 38156, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58108, '2022-02-10', 2214, 55320, 3813, 40394, '1.0000', '15.0000', '15.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58109, '2022-02-10', 8915, 55321, 3813, NULL, '1.0000', '54.3762', '54.3762', '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 (58110, '2022-02-10', 7671, 55322, 3813, NULL, '2.0000', '76.3606', '76.3606', '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 (58111, '2022-02-10', 7621, 55323, 3813, 44735, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58112, '2022-02-10', 7967, 55324, 3813, 49737, '1.0000', '9.6072', '9.6072', '9.5000', '9.5000', '12.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58113, '2022-02-10', 9734, 55325, 3813, 46910, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58114, '2022-02-10', 7588, 55326, 3813, NULL, '1.0000', '7.3387', '7.3387', '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 (58115, '2022-02-10', 7428, 55327, 3813, 49757, '3.0000', '3.9788', '3.9788', '4.5000', '4.5000', '134.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58116, '2022-02-10', 7959, 55328, 3813, NULL, '2.0000', '9.6000', '9.6000', '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 (58117, '2022-02-10', 1321, 55329, 3813, NULL, '1.0000', '9.8000', '9.8000', '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 (58118, '2022-02-10', 2289, 55330, 3813, NULL, '4.0000', '0.9629', '0.9629', '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 (58119, '2022-02-10', 7333, 55331, 3813, NULL, '2.0000', '13.5000', '13.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 (58120, '2022-02-10', 7728, 55332, 3813, 44476, '1.0000', '1.8806', '1.8806', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58121, '2022-02-10', 7524, 55333, 3813, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58122, '2022-02-10', 7408, 55334, 3813, 49747, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58123, '2022-02-10', 8077, 55335, 3813, NULL, '1.0000', '21.3750', '21.3750', '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 (58124, '2022-02-10', 9723, 55336, 3813, 46152, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58125, '2022-02-10', 9143, 55337, 3813, NULL, '1.0000', '9.4967', '9.4967', '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 (58126, '2022-02-10', 8244, 55338, 3813, NULL, '3.0000', '37.4100', '37.4100', '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 (58127, '2022-02-10', 8849, 55339, 3813, NULL, '1.0000', '1.0700', '1.0700', '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 (58128, '2022-02-10', 7411, 55340, 3813, NULL, '1.0000', '1.3600', '1.3600', '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 (58129, '2022-02-10', 2289, 55341, 3813, NULL, '1.0000', '0.9629', '0.9629', '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 (58130, '2022-02-10', 7544, 55342, 3813, NULL, '1.0000', '9.4300', '9.4300', '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 (58131, '2022-02-10', 7704, 55343, 3813, NULL, '1.0000', '-1.5625', '-1.5625', '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 (58132, '2022-02-10', 1935, 55344, 3813, NULL, '1.0000', '28.7657', '28.7657', '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 (58133, '2022-02-10', 7744, 55345, 3813, NULL, '2.0000', '2.7400', '2.7400', '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 (58134, '2022-02-10', 9272, 55346, 3813, NULL, '1.0000', '3.1000', '3.1000', '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 (58135, '2022-02-10', 7630, 55347, 3813, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (58136, '2022-02-10', 7674, 55348, 3813, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58137, '2022-02-10', 9401, 55349, 3813, 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 (58138, '2022-02-10', 7345, 55350, 3813, NULL, '1.0000', '38.2000', '38.2000', '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 (58139, '2022-02-10', 8203, 55351, 3813, NULL, '4.0000', '2.3282', '2.3282', '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 (58140, '2022-02-10', 8063, 55352, 3813, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '93.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58141, '2022-02-10', 8517, 55353, 3813, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58142, '2022-02-10', 9747, 55354, 3813, 46923, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58143, '2022-02-10', 2001, 55355, 3813, 49441, '1.0000', '3.3333', '3.3333', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58144, '2022-02-10', 8097, 55356, 3813, 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 (58145, '2022-02-10', 8677, 55357, 3813, NULL, '2.0000', '1.2300', '1.2300', '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 (58146, '2022-02-10', 7518, 55358, 3813, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (58147, '2022-02-10', 9758, 55359, 3813, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58148, '2022-02-10', 7611, 55360, 3813, 47934, '1.0000', '4.6669', '4.6669', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58149, '2022-02-10', 8497, 55361, 3813, NULL, '2.0000', '1126.4862', '1126.4862', '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 (58150, '2022-02-10', 9576, 55362, 3813, 46894, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '5.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58151, '2022-02-10', 9098, 55363, 3813, NULL, '1.0000', '23.5884', '23.5884', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58152, '2022-02-10', 9151, 55364, 3813, 45589, '2.0000', '9.7000', '9.7000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58153, '2022-02-10', 8324, 55365, 3813, NULL, '1.0000', '3.0036', '3.0036', '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 (58154, '2022-02-10', 8038, 55366, 3813, NULL, '1.0000', '6.7600', '6.7600', '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 (58155, '2022-02-10', 7709, 55367, 3813, NULL, '2.0000', '46.8129', '46.8129', '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 (58156, '2022-02-10', 2249, 55368, 3813, NULL, '1.0000', '2.5000', '2.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 (58157, '2022-02-10', 7592, 55369, 3813, 49749, '1.0000', '2.1942', '2.1942', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58158, '2022-02-10', 2768, 55370, 3813, 34521, '2.0000', '0.9600', '0.9600', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58159, '2022-02-10', 7518, 55371, 3813, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (58160, '2022-02-10', 9028, 55372, 3813, 45777, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58161, '2022-02-10', 8097, 55373, 3813, 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 (58162, '2022-02-10', 1837, 55374, 3813, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58163, '2022-02-10', 7643, 55375, 3813, NULL, '1.0000', '2.1100', '2.1100', '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 (58164, '2022-02-10', 9747, 55376, 3813, 46923, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58165, '2022-02-10', 2948, 55377, 3814, 48718, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58166, '2022-02-10', 2989, 55378, 3814, 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 (58167, '2022-02-10', 1751, 55379, 3814, 49640, '1.0000', '4.1376', '4.1376', '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 (58168, '2022-02-10', 1837, 55380, 3814, NULL, '1.0000', '1.5967', '1.5967', '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 (58169, '2022-02-10', 2285, 55381, 3814, NULL, '1.0000', '35.2503', '35.2503', '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 (58170, '2022-02-10', 1536, 55382, 3814, 37793, '10.0000', '101.0896', '101.0896', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58171, '2022-02-10', 2068, 55383, 3814, NULL, '1.0000', '11.8658', '11.8658', '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 (58172, '2022-02-10', 2455, 55384, 3814, 19876, '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 (58173, '2022-02-10', 1787, 55385, 3814, NULL, '1.0000', '0.5000', '0.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 (58174, '2022-02-10', 2821, 55386, 3814, NULL, '1.0000', '3.4701', '3.4701', '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 (58175, '2022-02-10', 2948, 55387, 3814, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58176, '2022-02-10', 1425, 55388, 3814, NULL, '1.0000', '5.0176', '5.0176', '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 (58177, '2022-02-10', 2237, 55389, 3814, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58178, '2022-02-10', 2169, 55390, 3814, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58179, '2022-02-10', 1602, 55391, 3814, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '30.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58180, '2022-02-10', 8969, 55392, 3814, 49342, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58181, '2022-02-10', 1863, 55393, 3814, 49716, '1.0000', '1.3799', '1.3799', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58182, '2022-02-10', 1580, 55394, 3815, 48178, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58183, '2022-02-10', 1529, 55395, 3815, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58184, '2022-02-10', 2103, 55396, 3815, 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 (58185, '2022-02-10', 2169, 55397, 3815, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58186, '2022-02-10', 9556, 55398, 3815, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58187, '2022-02-10', 2344, 55399, 3815, NULL, '1.0000', '19.4201', '19.4201', '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 (58188, '2022-02-10', 1419, 55400, 3815, NULL, '1.0000', '13.1040', '13.1040', '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 (58189, '2022-02-10', 2821, 55401, 3816, NULL, '2.0000', '3.4701', '3.4701', '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 (58190, '2022-02-10', 1935, 55402, 3817, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58191, '2022-02-10', 2286, 55403, 3817, 50105, '1.0000', '4.4213', '4.4213', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58192, '2022-02-10', 1639, 55404, 3817, 41380, '1.0000', '6.8925', '6.8925', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58193, '2022-02-10', 1780, 55405, 3817, 34587, '1.0000', '95.5759', '95.5759', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58194, '2022-02-10', 7447, 55406, 3817, NULL, '13.0000', '19.1100', '19.1100', '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 (58195, '2022-02-10', 1533, 55407, 3817, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58196, '2022-02-10', 1825, 55408, 3817, NULL, '1.0000', '5.1984', '5.1984', '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 (58197, '2022-02-10', 1646, 55409, 3817, 49372, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58198, '2022-02-10', 3017, 55410, 3817, 38532, '1.0000', '3.9000', '3.9000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58199, '2022-02-10', 2088, 55411, 3817, NULL, '1.0000', '3.8137', '3.8137', '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 (58200, '2022-02-10', 1856, 55412, 3817, NULL, '1.0000', '9.3416', '9.3416', '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 (58201, '2022-02-10', 2135, 55413, 3817, 18930, '1.0000', '2.4732', '2.4732', '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 (58202, '2022-02-10', 2858, 55414, 3818, 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 (58203, '2022-02-10', 1812, 55415, 3818, 49993, '1.0000', '7.9738', '7.9738', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58204, '2022-02-10', 2858, 55416, 3818, 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 (58205, '2022-02-10', 2315, 55417, 3818, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '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 (58206, '2022-02-10', 1890, 55418, 3818, 5496, '2.0000', '3.3000', '3.3000', '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 (58207, '2022-02-10', 1845, 55419, 3818, 49540, '1.0000', '20.0081', '20.0081', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58208, '2022-02-10', 9750, 55420, 3818, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '46.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58209, '2022-02-10', 2660, 55421, 3818, 49531, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58210, '2022-02-10', 2327, 55422, 3818, 45068, '4.0000', '16.5543', '16.5543', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58211, '2022-02-10', 8745, 55423, 3818, 40378, '1.0000', '8.5371', '8.5371', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58212, '2022-02-10', 1771, 55424, 3819, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58213, '2022-02-10', 2289, 55425, 3820, 40620, '6.0000', '0.2831', '0.2831', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58214, '2022-02-10', 9463, 55426, 3821, NULL, '1.0000', '7.5000', '7.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 (58215, '2022-02-10', 1598, 55427, 3822, 47054, '1.0000', '4.0526', '4.0526', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58216, '2022-02-10', 2332, 55428, 3823, 49739, '1.0000', '6.3883', '6.3883', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58217, '2022-02-10', 7588, 55429, 3823, NULL, '1.0000', '7.3387', '7.3387', '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 (58218, '2022-02-10', 7917, 55430, 3823, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58219, '2022-02-10', 7671, 55431, 3823, NULL, '1.0000', '76.3606', '76.3606', '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 (58220, '2022-02-10', 9275, 55432, 3823, NULL, '2.0000', '6.3000', '6.3000', '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 (58221, '2022-02-10', 8702, 55433, 3823, NULL, '1.0000', '3.6700', '3.6700', '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 (58222, '2022-02-10', 2067, 55434, 3823, NULL, '1.0000', '4.0000', '4.0000', '6.4700', '6.4700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58223, '2022-02-10', 8735, 55435, 3823, NULL, '1.0000', '5.6000', '5.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 (58224, '2022-02-10', 9272, 55436, 3823, NULL, '1.0000', '3.1000', '3.1000', '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 (58225, '2022-02-10', 7954, 55437, 3823, NULL, '4.0000', '24.4161', '24.4161', '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 (58226, '2022-02-10', 7570, 55438, 3823, NULL, '1.0000', '10.0000', '10.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 (58227, '2022-02-10', 8746, 55439, 3823, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58228, '2022-02-10', 7518, 55440, 3823, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (58229, '2022-02-10', 7675, 55441, 3823, NULL, '1.0000', '84.8590', '84.8590', '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 (58230, '2022-02-10', 1564, 55442, 3824, 50077, '4.0000', '3.4988', '3.4988', '4.0000', '4.0000', '90.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58231, '2022-02-10', 2167, 55443, 3825, NULL, '1.0000', '2.1310', '2.1310', '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 (58232, '2022-02-10', 2315, 55444, 3825, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '194.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58233, '2022-02-10', 2381, 55445, 3825, 48511, '1.0000', '11.8190', '11.8190', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58234, '2022-02-10', 9794, 55446, 3825, NULL, '1.0000', '1.0800', '1.0800', '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 (58235, '2022-02-10', 2100, 55447, 3826, 47100, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58236, '2022-02-10', 9723, 55448, 3826, 47060, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58237, '2022-02-11', 2237, 55449, 3827, 46708, '1.0000', '1.4654', '1.4654', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58238, '2022-02-11', 2285, 55450, 3827, 47982, '1.0000', '37.2582', '37.2582', '49.0000', '49.0000', '3.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58239, '2022-02-11', 7550, 55451, 3827, NULL, '4.0000', '4.7300', '4.7300', '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 (58240, '2022-02-11', 2135, 55452, 3827, 40580, '1.0000', '1.2424', '1.2424', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58241, '2022-02-11', 2761, 55453, 3827, 46038, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58242, '2022-02-11', 2856, 55454, 3827, 44539, '2.0000', '7.2000', '7.2000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58243, '2022-02-11', 2948, 55455, 3827, 49143, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58244, '2022-02-11', 1584, 55456, 3827, 50090, '1.0000', '6.1043', '6.1043', '9.0000', '9.0000', '23.0000', 1, 0, NULL, 406);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58245, '2022-02-11', 1583, 55457, 3827, 45621, '1.0000', '56.3560', '56.3560', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58246, '2022-02-11', 2302, 55458, 3827, 50003, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58247, '2022-02-11', 1824, 55459, 3827, 40858, '1.0000', '52.1519', '52.1519', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58248, '2022-02-11', 2643, 55460, 3827, 44038, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '20.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58249, '2022-02-11', 2286, 55461, 3828, 50105, '3.0000', '4.4213', '4.4213', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58250, '2022-02-11', 1602, 55462, 3828, 48493, '2.0000', '7.0300', '7.0300', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58251, '2022-02-11', 1659, 55463, 3828, 19825, '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 (58252, '2022-02-11', 9420, 55464, 3828, NULL, '1.0000', '20.1600', '20.1600', '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 (58253, '2022-02-11', 7532, 55465, 3828, 39818, '1.0000', '20.2334', '20.2334', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58254, '2022-02-11', 9748, 55466, 3828, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58255, '2022-02-11', 2073, 55467, 3828, 48887, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58256, '2022-02-11', 7391, 55468, 3828, NULL, '1.0000', '15.6000', '15.6000', '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 (58257, '2022-02-11', 2409, 55469, 3828, 48659, '1.0000', '2.3100', '2.3100', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58258, '2022-02-11', 2989, 55470, 3828, 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 (58259, '2022-02-11', 1837, 55471, 3828, NULL, '2.0000', '1.5967', '1.5967', '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 (58260, '2022-02-11', 2315, 55472, 3828, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '192.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58261, '2022-02-11', 1856, 55473, 3828, NULL, '1.0000', '9.3416', '9.3416', '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 (58262, '2022-02-11', 2169, 55474, 3828, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58263, '2022-02-11', 2825, 55475, 3828, NULL, '1.0000', '12.0000', '12.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 (58264, '2022-02-11', 1602, 55476, 3828, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58265, '2022-02-11', 9578, 55477, 3828, 47856, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 350);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58266, '2022-02-11', 1612, 55478, 3828, 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 (58267, '2022-02-11', 2379, 55479, 3828, NULL, '1.0000', '1.0877', '1.0877', '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 (58268, '2022-02-11', 2318, 55480, 3828, 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 (58269, '2022-02-11', 1590, 55481, 3828, 50113, '3.0000', '1.6980', '1.6980', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58270, '2022-02-11', 7896, 55482, 3828, NULL, '1.0000', '7.0000', '7.0000', '28.6000', '28.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 (58271, '2022-02-11', 2379, 55483, 3828, NULL, '1.0000', '1.0877', '1.0877', '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 (58272, '2022-02-11', 8745, 55484, 3828, 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 (58273, '2022-02-11', 1935, 55485, 3828, 49259, '2.0000', '0.8402', '0.8402', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58274, '2022-02-11', 2660, 55486, 3828, 49361, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58275, '2022-02-11', 1409, 55487, 3828, 49522, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 383);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58276, '2022-02-11', 1602, 55488, 3828, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58277, '2022-02-11', 2460, 55489, 3828, 34606, '1.0000', '33.6400', '33.6400', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58278, '2022-02-11', 1781, 55490, 3828, 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 (58279, '2022-02-11', 7385, 55491, 3829, 49078, '2.0000', '1.8552', '1.8552', '3.5000', '3.5000', '56.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58280, '2022-02-11', 2634, 55492, 3829, 10299, '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 (58281, '2022-02-11', 1382, 55493, 3829, 49163, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58282, '2022-02-11', 7518, 55494, 3830, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (58283, '2022-02-11', 7317, 55495, 3830, 50038, '1.0000', '11.1787', '11.1787', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58284, '2022-02-11', 1856, 55496, 3830, 49813, '1.0000', '-5.9870', '-5.9870', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58285, '2022-02-11', 7641, 55497, 3830, NULL, '2.0000', '-543.6034', '-543.6034', '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 (58286, '2022-02-11', 1339, 55498, 3830, 48361, '1.0000', '1.6199', '1.6199', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58287, '2022-02-11', 3018, 55499, 3830, 46689, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58288, '2022-02-11', 7899, 55500, 3830, 49763, '1.0000', '4.0000', '4.0000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58289, '2022-02-11', 9805, 55501, 3830, 50137, '1.0000', '31.5000', '31.5000', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58290, '2022-02-11', 9469, 55502, 3830, 39422, '1.0000', '2.3000', '2.3000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58291, '2022-02-11', 7385, 55503, 3830, 49756, '2.0000', '-2.2533', '-2.2533', '3.5000', '3.5000', '86.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58292, '2022-02-11', 8288, 55504, 3830, NULL, '2.0000', '1.1923', '1.1923', '1.8000', '1.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 (58293, '2022-02-11', 7883, 55505, 3830, NULL, '1.0000', '424.9600', '424.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 (58294, '2022-02-11', 9724, 55506, 3830, 46153, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58295, '2022-02-11', 2289, 55507, 3830, NULL, '4.0000', '0.9629', '0.9629', '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 (58296, '2022-02-11', 8296, 55508, 3830, NULL, '1.0000', '112.3600', '112.3600', '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 (58297, '2022-02-11', 2602, 55509, 3830, 36668, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58298, '2022-02-11', 9448, 55510, 3830, 44049, '1.0000', '7.5200', '7.5200', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58299, '2022-02-11', 1807, 55511, 3830, NULL, '10.0000', '-34.8462', '-34.8462', '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 (58300, '2022-02-11', 7641, 55512, 3830, NULL, '1.0000', '-543.6034', '-543.6034', '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 (58301, '2022-02-11', 7317, 55513, 3830, 50038, '1.0000', '11.1787', '11.1787', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58302, '2022-02-11', 7411, 55514, 3830, NULL, '2.0000', '1.3600', '1.3600', '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 (58303, '2022-02-11', 8810, 55515, 3830, NULL, '1.0000', '2.5604', '2.5604', '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 (58304, '2022-02-11', 9740, 55516, 3830, 46921, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58305, '2022-02-11', 8915, 55517, 3830, NULL, '1.0000', '54.3762', '54.3762', '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 (58306, '2022-02-11', 7671, 55518, 3830, NULL, '1.0000', '76.3606', '76.3606', '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 (58307, '2022-02-11', 2451, 55519, 3830, 43518, '1.0000', '10.3500', '10.3500', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58308, '2022-02-11', 2315, 55520, 3830, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '6.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58309, '2022-02-11', 7675, 55521, 3830, NULL, '1.0000', '84.8590', '84.8590', '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 (58310, '2022-02-11', 1689, 55522, 3831, NULL, '1.0000', '9.1667', '9.1667', '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 (58311, '2022-02-11', 1689, 55523, 3832, NULL, '1.0000', '9.1667', '9.1667', '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 (58312, '2022-02-11', 1689, 55524, 3833, NULL, '1.0000', '9.1667', '9.1667', '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 (58313, '2022-02-11', 8146, 55525, 3834, NULL, '1.0000', '4.4100', '4.4100', '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 (58314, '2022-02-11', 7514, 55526, 3834, NULL, '1.0000', '2.2500', '2.2500', '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 (58315, '2022-02-11', 9213, 55527, 3834, 45280, '1.0000', '5.5090', '5.5090', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58316, '2022-02-11', 7411, 55528, 3834, NULL, '1.0000', '1.3013', '1.3013', '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 (58317, '2022-02-11', 2315, 55529, 3834, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '190.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58318, '2022-02-11', 9556, 55530, 3834, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58319, '2022-02-11', 2167, 55531, 3834, NULL, '1.0000', '2.1310', '2.1310', '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 (58320, '2022-02-11', 7913, 55532, 3834, NULL, '3.0000', '2.5500', '2.5500', '7.0000', '7.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 (58321, '2022-02-11', 2681, 55533, 3834, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58322, '2022-02-11', 9794, 55534, 3834, NULL, '1.0000', '1.0800', '1.0800', '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 (58323, '2022-02-11', 7762, 55535, 3834, NULL, '1.0000', '5.1000', '5.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 (58324, '2022-02-11', 2923, 55536, 3834, 49890, '1.0000', '11.1200', '11.1200', '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 (58325, '2022-02-11', 2354, 55537, 3834, NULL, '1.0000', '5.0600', '5.0600', '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 (58326, '2022-02-11', 8153, 55538, 3834, NULL, '1.0000', '0.3200', '0.3200', '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 (58327, '2022-02-11', 1544, 55539, 3834, 48512, '1.0000', '18.0200', '18.0200', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58328, '2022-02-11', 1647, 55540, 3834, NULL, '1.0000', '5.0700', '5.0700', '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 (58329, '2022-02-11', 2541, 55541, 3834, 48961, '1.0000', '11.3875', '11.3875', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58330, '2022-02-11', 2169, 55542, 3834, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58331, '2022-02-11', 7765, 55543, 3834, NULL, '1.0000', '16.0000', '16.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 (58332, '2022-02-11', 2762, 55544, 3834, NULL, '1.0000', '7.1000', '7.1000', '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 (58333, '2022-02-11', 2491, 55545, 3834, 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 (58334, '2022-02-11', 8079, 55546, 3834, NULL, '1.0000', '14.3600', '14.3600', '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 (58335, '2022-02-11', 2642, 55547, 3834, 49615, '1.0000', '9.3605', '9.3605', '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 (58336, '2022-02-11', 3017, 55548, 3834, 38532, '1.0000', '3.9000', '3.9000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58337, '2022-02-11', 2402, 55549, 3834, 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 (58338, '2022-02-11', 2457, 55550, 3834, 29649, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58339, '2022-02-11', 1590, 55551, 3834, 50113, '2.0000', '1.6980', '1.6980', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58340, '2022-02-11', 2169, 55552, 3834, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58341, '2022-02-11', 2088, 55553, 3834, NULL, '1.0000', '3.8137', '3.8137', '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 (58342, '2022-02-11', 3002, 55554, 3835, 48162, '1.0000', '6.2000', '6.2000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58343, '2022-02-11', 2405, 55555, 3835, 37770, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '39.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58344, '2022-02-11', 2906, 55556, 3835, NULL, '1.0000', '2.6000', '2.6000', '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 (58345, '2022-02-11', 2768, 55557, 3835, 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 (58346, '2022-02-11', 1665, 55558, 3835, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58347, '2022-02-11', 2296, 55559, 3835, NULL, '1.0000', '13.2900', '13.2900', '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 (58348, '2022-02-11', 2821, 55560, 3835, NULL, '1.0000', '3.4701', '3.4701', '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 (58349, '2022-02-11', 2655, 55561, 3835, 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 (58350, '2022-02-11', 7641, 55562, 3835, NULL, '1.0000', '1.9000', '1.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 (58351, '2022-02-11', 1529, 55563, 3835, 50073, '2.0000', '3.5500', '3.5500', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58352, '2022-02-11', 9794, 55564, 3835, NULL, '1.0000', '1.0800', '1.0800', '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 (58353, '2022-02-11', 1519, 55565, 3835, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58354, '2022-02-11', 7756, 55566, 3835, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58355, '2022-02-11', 1626, 55567, 3835, 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 (58356, '2022-02-11', 8735, 55568, 3836, NULL, '1.0000', '5.6000', '5.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 (58357, '2022-02-11', 9556, 55569, 3836, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58358, '2022-02-11', 1339, 55570, 3836, 48361, '1.0000', '1.6199', '1.6199', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58359, '2022-02-11', 7743, 55571, 3836, NULL, '2.0000', '419203.7668', '419203.7668', '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 (58360, '2022-02-11', 7744, 55572, 3836, NULL, '1.0000', '2.7400', '2.7400', '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 (58361, '2022-02-11', 2699, 55573, 3836, 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 (58362, '2022-02-11', 7989, 55574, 3836, NULL, '1.0000', '-16.3800', '-16.3800', '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 (58363, '2022-02-11', 8703, 55575, 3836, 47914, '1.0000', '8.7767', '8.7767', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58364, '2022-02-11', 2655, 55576, 3836, NULL, '2.0000', '6.5000', '6.5000', '8.5000', '8.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 (58365, '2022-02-11', 8146, 55577, 3836, 46165, '1.0000', '17.3749', '17.3749', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58366, '2022-02-11', 2768, 55578, 3836, 34521, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58367, '2022-02-11', 7359, 55579, 3836, NULL, '1.0000', '7.5813', '7.5813', '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 (58368, '2022-02-11', 8000, 55580, 3836, NULL, '1.0000', '384.5041', '384.5041', '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 (58369, '2022-02-11', 7518, 55581, 3836, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (58370, '2022-02-11', 1914, 55582, 3836, NULL, '1.0000', '5.2300', '5.2300', '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 (58371, '2022-02-11', 8215, 55583, 3836, 50134, '1.0000', '23.5567', '23.5567', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58372, '2022-02-11', 7591, 55584, 3836, NULL, '1.0000', '2.7500', '2.7500', '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 (58373, '2022-02-11', 7954, 55585, 3836, NULL, '4.0000', '24.4161', '24.4161', '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 (58374, '2022-02-11', 9092, 55586, 3836, 40421, '4.0000', '0.3051', '0.3051', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58375, '2022-02-11', 7672, 55587, 3836, NULL, '1.0000', '3.8200', '3.8200', '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 (58376, '2022-02-11', 2922, 55588, 3836, NULL, '1.0000', '8.2000', '8.2000', '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 (58377, '2022-02-11', 7334, 55589, 3836, 50118, '3.0000', '8.3165', '8.3165', '11.0000', '11.0000', '12.0000', 1, 0, NULL, 408);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58378, '2022-02-11', 7694, 55590, 3836, NULL, '3.0000', '4.7900', '4.7900', '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 (58379, '2022-02-11', 7674, 55591, 3836, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58380, '2022-02-11', 3016, 55592, 3836, 46652, '1.0000', '14.3456', '14.3456', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58381, '2022-02-11', 7519, 55593, 3836, 46682, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58382, '2022-02-11', 8924, 55594, 3836, NULL, '3.0000', '4.5000', '4.5000', '7.0000', '7.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 (58383, '2022-02-11', 8000, 55595, 3836, NULL, '1.0000', '384.5041', '384.5041', '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 (58384, '2022-02-11', 9150, 55596, 3836, NULL, '1.0000', '19.8000', '19.8000', '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 (58385, '2022-02-11', 7913, 55597, 3836, NULL, '2.0000', '2.5500', '2.5500', '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 (58386, '2022-02-11', 7743, 55598, 3836, NULL, '1.0000', '419203.7668', '419203.7668', '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 (58387, '2022-02-11', 7672, 55599, 3836, NULL, '1.0000', '3.8200', '3.8200', '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 (58388, '2022-02-11', 9337, 55600, 3836, 48301, '5.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58389, '2022-02-11', 7514, 55601, 3836, NULL, '1.0000', '65.8461', '65.8461', '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 (58390, '2022-02-11', 8000, 55602, 3836, NULL, '1.0000', '384.5041', '384.5041', '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 (58391, '2022-02-11', 8359, 55603, 3836, 50046, '1.0000', '2068.5192', '2068.5192', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58392, '2022-02-11', 9682, 55604, 3836, 43962, '1.0000', '13.5000', '13.5000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58393, '2022-02-11', 7914, 55605, 3836, NULL, '2.0000', '5.3556', '5.3556', '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 (58394, '2022-02-11', 2965, 55606, 3836, NULL, '1.0000', '1.7600', '1.7600', '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 (58395, '2022-02-11', 7674, 55607, 3836, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58396, '2022-02-11', 7780, 55608, 3836, NULL, '1.0000', '-8.7461', '-8.7461', '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 (58397, '2022-02-11', 7748, 55609, 3836, NULL, '1.0000', '519097.6932', '519097.6932', '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 (58398, '2022-02-11', 7884, 55610, 3836, NULL, '1.0000', '4.2000', '4.2000', '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 (58399, '2022-02-11', 9750, 55611, 3837, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '45.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58400, '2022-02-11', 7612, 55612, 3837, NULL, '2.0000', '46.0000', '46.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 (58401, '2022-02-11', 7390, 55613, 3837, NULL, '1.0000', '5.8300', '5.8300', '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 (58402, '2022-02-11', 1935, 55614, 3837, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58403, '2022-02-11', 1425, 55615, 3837, 49992, '1.0000', '7.0572', '7.0572', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58404, '2022-02-11', 1310, 55616, 3837, 46075, '4.0000', '0.4035', '0.4035', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58405, '2022-02-11', 1910, 55617, 3837, NULL, '2.0000', '0.4600', '0.4600', '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 (58406, '2022-02-11', 1999, 55618, 3837, 45626, '2.0000', '6.3147', '6.3147', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58407, '2022-02-11', 2167, 55619, 3837, 48783, '1.0000', '2.3022', '2.3022', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58408, '2022-02-11', 1908, 55620, 3837, 5510, '2.0000', '1.7500', '1.7500', '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 (58409, '2022-02-11', 1863, 55621, 3837, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58410, '2022-02-11', 2240, 55622, 3837, 49047, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58411, '2022-02-11', 1602, 55623, 3837, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58412, '2022-02-11', 1804, 55624, 3837, 49085, '1.0000', '4.4115', '4.4115', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58413, '2022-02-11', 2366, 55625, 3837, 49527, '2.0000', '3.8356', '3.8356', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58414, '2022-02-11', 1519, 55626, 3838, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58415, '2022-02-11', 2965, 55627, 3838, NULL, '1.0000', '5.8007', '5.8007', '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 (58416, '2022-02-11', 1855, 55628, 3838, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58417, '2022-02-11', 7514, 55629, 3838, NULL, '1.0000', '2.2500', '2.2500', '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 (58418, '2022-02-11', 9806, 55630, 3838, 50121, '1.0000', '1.0800', '1.0800', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58419, '2022-02-11', 1761, 55631, 3838, NULL, '3.0000', '1.8200', '1.8200', '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 (58420, '2022-02-11', 9695, 55632, 3838, 49617, '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 (58421, '2022-02-11', 1454, 55633, 3838, 47092, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58422, '2022-02-11', 2169, 55634, 3838, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58423, '2022-02-11', 2994, 55635, 3838, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58424, '2022-02-11', 2275, 55636, 3838, 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 (58425, '2022-02-11', 2169, 55637, 3838, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58426, '2022-02-11', 9482, 55638, 3838, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58427, '2022-02-11', 2109, 55639, 3838, 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 (58428, '2022-02-11', 7684, 55640, 3838, NULL, '1.0000', '9.0000', '9.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 (58429, '2022-02-11', 2277, 55641, 3838, NULL, '3.0000', '0.9399', '0.9399', '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 (58430, '2022-02-11', 9109, 55642, 3838, 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 (58431, '2022-02-11', 2237, 55643, 3838, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58432, '2022-02-11', 7984, 55644, 3838, NULL, '1.0000', '16.4500', '16.4500', '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 (58433, '2022-02-11', 9272, 55645, 3839, NULL, '8.0000', '3.1000', '3.1000', '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 (58434, '2022-02-11', 7548, 55646, 3839, NULL, '1.0000', '1.9507', '1.9507', '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 (58435, '2022-02-11', 7345, 55647, 3839, NULL, '1.0000', '38.2000', '38.2000', '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 (58436, '2022-02-11', 2655, 55648, 3839, 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 (58437, '2022-02-11', 2476, 55649, 3839, NULL, '2.0000', '10.0000', '10.0000', '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 (58438, '2022-02-11', 2602, 55650, 3839, 36668, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58439, '2022-02-11', 9394, 55651, 3839, NULL, '1.0000', '5.5000', '5.5000', '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 (58440, '2022-02-11', 8434, 55652, 3839, NULL, '1.0000', '7.6300', '7.6300', '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 (58441, '2022-02-11', 1655, 55653, 3839, 47936, '1.0000', '37.2800', '37.2800', '49.5000', '49.5000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58442, '2022-02-11', 8039, 55654, 3839, NULL, '1.0000', '-393.2876', '-393.2876', '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 (58443, '2022-02-11', 9191, 55655, 3839, 48816, '2.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58444, '2022-02-11', 9018, 55656, 3839, NULL, '1.0000', '42.0000', '42.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 (58445, '2022-02-11', 2366, 55657, 3840, NULL, '2.0000', '-17.8500', '-17.8500', '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 (58446, '2022-02-11', 1700, 55658, 3840, 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 (58447, '2022-02-11', 2315, 55659, 3840, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '189.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58448, '2022-02-11', 2908, 55660, 3840, 49362, '3.0000', '0.2700', '0.2700', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58449, '2022-02-11', 2169, 55661, 3840, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58450, '2022-02-11', 1999, 55662, 3840, 49625, '1.0000', '6.8730', '6.8730', '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 (58451, '2022-02-11', 7666, 55663, 3840, NULL, '1.0000', '-6.0000', '-6.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 (58452, '2022-02-12', 9811, 55664, 3841, NULL, '1.0000', '29.0000', '29.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 (58453, '2022-02-12', 8731, 55665, 3842, NULL, '1.0000', '11.0000', '11.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 (58454, '2022-02-12', 2089, 55666, 3842, 49893, '1.0000', '6.7656', '6.7656', '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 (58455, '2022-02-12', 2169, 55667, 3842, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58456, '2022-02-12', 1863, 55668, 3842, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58457, '2022-02-12', 2810, 55669, 3842, 24934, '1.0000', '6788008906.4158', '6788008906.4158', '3.0000', '3.0000', '24.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 (58458, '2022-02-12', 1590, 55670, 3842, 50267, '3.0000', '1.8024', '1.8024', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58459, '2022-02-12', 1783, 55671, 3842, 50119, '1.0000', '40.5357', '40.5357', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58460, '2022-02-12', 2315, 55672, 3842, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '187.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58461, '2022-02-12', 2024, 55673, 3842, 39220, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58462, '2022-02-12', 2066, 55674, 3842, 34656, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58463, '2022-02-12', 2935, 55675, 3842, NULL, '1.0000', '7.9400', '7.9400', '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 (58464, '2022-02-12', 2169, 55676, 3842, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58465, '2022-02-12', 8759, 55677, 3842, NULL, '1.0000', '15.0800', '15.0800', '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 (58466, '2022-02-12', 8745, 55678, 3842, 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 (58467, '2022-02-12', 8065, 55679, 3842, NULL, '1.0000', '32.0000', '32.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 (58468, '2022-02-12', 7802, 55680, 3842, 47070, '3.0000', '0.9200', '0.9200', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58469, '2022-02-12', 8677, 55681, 3842, NULL, '3.0000', '292.4641', '292.4641', '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 (58470, '2022-02-12', 2635, 55682, 3842, 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 (58471, '2022-02-12', 7579, 55683, 3842, NULL, '1.0000', '15.0000', '15.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 (58472, '2022-02-12', 1590, 55684, 3842, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58473, '2022-02-12', 1580, 55685, 3842, 48178, '2.0000', '0.9900', '0.9900', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58474, '2022-02-12', 1532, 55686, 3842, 48901, '2.0000', '1.5750', '1.5750', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58475, '2022-02-12', 7671, 55687, 3842, NULL, '2.0000', '15.5000', '15.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 (58476, '2022-02-12', 7411, 55688, 3842, NULL, '1.0000', '1.3013', '1.3013', '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 (58477, '2022-02-12', 2682, 55689, 3842, 48606, '1.0000', '19.3000', '19.3000', '25.5000', '25.5000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58478, '2022-02-12', 2252, 55690, 3842, NULL, '1.0000', '16.5900', '16.5900', '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 (58479, '2022-02-12', 1863, 55691, 3842, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58480, '2022-02-12', 2315, 55692, 3842, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '188.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58481, '2022-02-12', 1697, 55693, 3842, 34610, '1.0000', '24.8800', '24.8800', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58482, '2022-02-12', 7802, 55694, 3842, 47070, '3.0000', '0.9200', '0.9200', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58483, '2022-02-12', 9812, 55695, 3842, NULL, '1.0000', '20.0000', '20.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 (58484, '2022-02-12', 9811, 55696, 3842, NULL, '1.0000', '29.0000', '29.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 (58485, '2022-02-12', 9214, 55697, 3843, NULL, '1.0000', '10.8410', '10.8410', '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 (58486, '2022-02-12', 1631, 55698, 3843, 39843, '1.0000', '37.8000', '37.8000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58487, '2022-02-12', 8638, 55699, 3843, NULL, '1.0000', '0.5100', '0.5100', '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 (58488, '2022-02-12', 7741, 55700, 3844, NULL, '2.0000', '1.2000', '1.2000', '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 (58489, '2022-02-12', 2169, 55701, 3844, 10737, '-36.0000', '3.8397', '3.8397', '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 (58490, '2022-02-12', 2169, 55701, 3844, NULL, '37.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58491, '2022-02-12', 1904, 55702, 3844, 5442, '-30.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 (58492, '2022-02-12', 1904, 55702, 3844, NULL, '31.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (58493, '2022-02-12', 2315, 55703, 3844, 2735, '-159.0000', '0.3300', '0.3300', '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 (58494, '2022-02-12', 2315, 55703, 3844, NULL, '160.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-160.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58495, '2022-02-12', 2816, 55704, 3844, NULL, '3.0000', '0.8000', '0.8000', '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 (58496, '2022-02-12', 1904, 55705, 3844, 5442, '-30.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 (58497, '2022-02-12', 1904, 55705, 3844, NULL, '32.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58498, '2022-02-12', 2444, 55706, 3844, 5314, '-6.0000', '6.0000', '6.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 (58499, '2022-02-12', 2444, 55706, 3844, NULL, '7.0000', '6.0000', '6.0000', '12.0000', '12.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 (58500, '2022-02-12', 2285, 55707, 3844, 2945, '-37.0000', '35.8000', '35.8000', '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 (58501, '2022-02-12', 2285, 55707, 3844, NULL, '38.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58502, '2022-02-12', 2136, 55708, 3844, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '73.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 (58503, '2022-02-12', 8102, 55709, 3844, 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 (58504, '2022-02-12', 1971, 55710, 3844, 6344, '-1.0000', '11.0000', '11.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 (58505, '2022-02-12', 1971, 55710, 3844, NULL, '2.0000', '11.0000', '11.0000', '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 (58506, '2022-02-12', 9734, 55711, 3845, NULL, '1.0000', '0.3200', '0.3200', '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 (58507, '2022-02-12', 9556, 55712, 3846, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58508, '2022-02-12', 9740, 55713, 3846, 46921, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58509, '2022-02-12', 9191, 55714, 3846, 48816, '2.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58510, '2022-02-12', 7641, 55715, 3846, NULL, '1.0000', '-543.6034', '-543.6034', '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 (58511, '2022-02-12', 7652, 55716, 3846, NULL, '4.0000', '343.2872', '343.2872', '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 (58512, '2022-02-12', 2289, 55717, 3846, NULL, '2.0000', '0.9629', '0.9629', '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 (58513, '2022-02-12', 8965, 55718, 3846, NULL, '1.0000', '52.9900', '52.9900', '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 (58514, '2022-02-12', 8040, 55719, 3846, 46216, '1.0000', '10.6400', '10.6400', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58515, '2022-02-12', 9715, 55720, 3846, 49277, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58516, '2022-02-12', 8849, 55721, 3846, NULL, '1.0000', '1.0700', '1.0700', '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 (58517, '2022-02-12', 1841, 55722, 3846, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58518, '2022-02-12', 8288, 55723, 3846, NULL, '1.0000', '1.1923', '1.1923', '1.8000', '1.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 (58519, '2022-02-12', 7500, 55724, 3846, 42772, '1.0000', '4.4987', '4.4987', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58520, '2022-02-12', 8243, 55725, 3846, NULL, '2.0000', '1.1400', '1.1400', '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 (58521, '2022-02-12', 7558, 55726, 3846, 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 (58522, '2022-02-12', 9715, 55727, 3846, 49277, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58523, '2022-02-12', 7848, 55728, 3846, NULL, '1.0000', '-17.3215', '-17.3215', '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 (58524, '2022-02-12', 9804, 55729, 3846, 50150, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58525, '2022-02-12', 7473, 55730, 3846, NULL, '5.0000', '162.5864', '162.5864', '0.6000', '0.6000', '-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 (58526, '2022-02-12', 7478, 55731, 3846, NULL, '2.0000', '4.0000', '4.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 (58527, '2022-02-12', 7867, 55732, 3846, NULL, '2.0000', '2.1368', '2.1368', '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 (58528, '2022-02-12', 9809, 55733, 3846, 50143, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58529, '2022-02-12', 9809, 55734, 3846, 50143, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58530, '2022-02-12', 7385, 55735, 3846, 49756, '5.0000', '-2.2533', '-2.2533', '3.0000', '3.0000', '81.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58531, '2022-02-12', 8077, 55736, 3846, NULL, '2.0000', '21.3750', '21.3750', '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 (58532, '2022-02-12', 7619, 55737, 3846, NULL, '1.0000', '36.9800', '36.9800', '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 (58533, '2022-02-12', 7867, 55738, 3846, NULL, '2.0000', '2.1368', '2.1368', '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 (58534, '2022-02-12', 9734, 55739, 3846, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58535, '2022-02-12', 7428, 55740, 3846, 49757, '2.0000', '3.9788', '3.9788', '4.5000', '4.5000', '132.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58536, '2022-02-12', 7672, 55741, 3846, NULL, '1.0000', '3.8200', '3.8200', '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 (58537, '2022-02-12', 2648, 55742, 3846, NULL, '1.0000', '3.5337', '3.5337', '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 (58538, '2022-02-12', 9758, 55743, 3846, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58539, '2022-02-12', 2655, 55744, 3846, NULL, '2.0000', '6.5000', '6.5000', '8.5000', '8.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 (58540, '2022-02-12', 9160, 55745, 3846, NULL, '1.0000', '41.6640', '41.6640', '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 (58541, '2022-02-12', 7743, 55746, 3846, NULL, '2.0000', '419203.7668', '419203.7668', '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 (58542, '2022-02-12', 9008, 55747, 3846, 47939, '1.0000', '45.2700', '45.2700', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58543, '2022-02-12', 8539, 55748, 3846, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '57.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58544, '2022-02-12', 1961, 55749, 3847, 47993, '1.0000', '16.6760', '16.6760', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58545, '2022-02-12', 7548, 55750, 3848, NULL, '1.0000', '1.9507', '1.9507', '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 (58546, '2022-02-12', 9021, 55751, 3848, NULL, '2.0000', '7.0000', '7.0000', '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 (58547, '2022-02-12', 7385, 55752, 3848, 49756, '5.0000', '-2.2533', '-2.2533', '3.0000', '3.0000', '76.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58548, '2022-02-12', 7883, 55753, 3848, NULL, '1.0000', '424.9600', '424.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 (58549, '2022-02-12', 8038, 55754, 3848, 50131, '1.0000', '6.4350', '6.4350', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58550, '2022-02-12', 7334, 55755, 3848, 50118, '2.0000', '8.3165', '8.3165', '11.0000', '11.0000', '10.0000', 1, 0, NULL, 408);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58551, '2022-02-12', 8721, 55756, 3848, NULL, '1.0000', '22.0000', '22.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58552, '2022-02-12', 7672, 55757, 3848, NULL, '1.0000', '3.8200', '3.8200', '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 (58553, '2022-02-12', 8434, 55758, 3848, NULL, '1.0000', '7.6300', '7.6300', '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 (58554, '2022-02-12', 7457, 55759, 3848, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58555, '2022-02-12', 9092, 55760, 3848, 40421, '11.0000', '0.3051', '0.3051', '0.5000', '0.5000', '85.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58556, '2022-02-12', 7674, 55761, 3848, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58557, '2022-02-12', 7482, 55762, 3848, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58558, '2022-02-12', 7781, 55763, 3848, NULL, '3.0000', '4.2500', '4.2500', '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 (58559, '2022-02-12', 7703, 55764, 3848, NULL, '1.0000', '102.7757', '102.7757', '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 (58560, '2022-02-12', 7412, 55765, 3848, NULL, '1.0000', '1.5200', '1.5200', '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 (58561, '2022-02-12', 7641, 55766, 3848, NULL, '1.0000', '-543.6034', '-543.6034', '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 (58562, '2022-02-12', 2624, 55767, 3848, 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 (58563, '2022-02-12', 2351, 55768, 3848, 46700, '1.0000', '17.0375', '17.0375', '27.5000', '27.5000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58564, '2022-02-12', 8360, 55769, 3848, 50156, '1.0000', '3.1575', '3.1575', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58565, '2022-02-12', 7748, 55770, 3848, NULL, '1.0000', '519097.6932', '519097.6932', '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 (58566, '2022-02-12', 9148, 55771, 3848, NULL, '1.0000', '20.1000', '20.1000', '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 (58567, '2022-02-12', 8530, 55772, 3848, NULL, '1.0000', '19.0000', '19.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58568, '2022-02-12', 7913, 55773, 3848, NULL, '2.0000', '2.5500', '2.5500', '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 (58569, '2022-02-12', 7645, 55774, 3848, NULL, '1.0000', '6.0000', '6.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58570, '2022-02-12', 8497, 55775, 3848, NULL, '1.0000', '1126.4862', '1126.4862', '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 (58571, '2022-02-12', 8022, 55776, 3848, NULL, '1.0000', '57.9500', '57.9500', '76.4900', '76.4900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58572, '2022-02-12', 7756, 55777, 3848, NULL, '1.0000', '18.7452', '18.7452', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58573, '2022-02-12', 1760, 55778, 3848, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58574, '2022-02-12', 7548, 55779, 3848, NULL, '1.0000', '1.9507', '1.9507', '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 (58575, '2022-02-12', 7442, 55780, 3848, 45341, '1.0000', '14.7000', '14.7000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58576, '2022-02-12', 8228, 55781, 3848, NULL, '1.0000', '15.8438', '15.8438', '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 (58577, '2022-02-12', 9092, 55782, 3848, 40421, '8.0000', '0.3051', '0.3051', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58578, '2022-02-12', 9722, 55783, 3848, 46151, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58579, '2022-02-12', 8155, 55784, 3848, NULL, '2.0000', '65.0000', '65.0000', '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 (58580, '2022-02-12', 7825, 55785, 3848, NULL, '1.0000', '-9.1758', '-9.1758', '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 (58581, '2022-02-12', 7707, 55786, 3849, NULL, '1.0000', '5.9900', '5.9900', '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 (58582, '2022-02-12', 7707, 55787, 3849, NULL, '2.0000', '5.9900', '5.9900', '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 (58583, '2022-02-12', 2001, 55788, 3849, 6442, '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 (58584, '2022-02-12', 1759, 55789, 3849, 45119, '1.0000', '17.1453', '17.1453', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58585, '2022-02-12', 1339, 55790, 3849, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58586, '2022-02-12', 1863, 55791, 3849, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58587, '2022-02-12', 2701, 55792, 3849, 40186, '1.0000', '31.5484', '31.5484', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58588, '2022-02-12', 2020, 55793, 3849, 50006, '1.0000', '4.3402', '4.3402', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58589, '2022-02-12', 2411, 55794, 3849, 45089, '1.0000', '1.3762', '1.3762', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58590, '2022-02-12', 1811, 55795, 3849, 44607, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58591, '2022-02-12', 1840, 55796, 3849, NULL, '2.0000', '0.2400', '0.2400', '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 (58592, '2022-02-12', 2379, 55797, 3849, 46060, '1.0000', '1.8761', '1.8761', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58593, '2022-02-12', 1908, 55798, 3849, 5510, '1.0000', '1.7500', '1.7500', '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 (58594, '2022-02-12', 7411, 55799, 3849, 48774, '1.0000', '1.3632', '1.3632', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58595, '2022-02-12', 1602, 55800, 3849, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58596, '2022-02-12', 1763, 55801, 3849, 49529, '1.0000', '4.7583', '4.7583', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58597, '2022-02-12', 2136, 55802, 3849, 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 (58598, '2022-02-12', 2916, 55803, 3849, 49229, '1.0000', '14.3789', '14.3789', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58599, '2022-02-12', 2683, 55804, 3849, 46743, '1.0000', '45.3823', '45.3823', '70.0000', '70.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58600, '2022-02-12', 2891, 55805, 3849, 49995, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58601, '2022-02-12', 2317, 55806, 3849, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '32.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58602, '2022-02-12', 2237, 55807, 3849, 46708, '1.0000', '1.4654', '1.4654', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58603, '2022-02-12', 2263, 55808, 3849, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58604, '2022-02-12', 9750, 55809, 3849, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58605, '2022-02-12', 7781, 55810, 3850, NULL, '3.0000', '4.2500', '4.2500', '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 (58606, '2022-02-12', 7411, 55811, 3850, NULL, '1.0000', '1.3600', '1.3600', '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 (58607, '2022-02-12', 7954, 55812, 3850, NULL, '2.0000', '24.4161', '24.4161', '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 (58608, '2022-02-12', 8722, 55813, 3850, 49755, '1.0000', '20.3006', '20.3006', '28.0000', '28.0000', '6.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58609, '2022-02-12', 7836, 55814, 3850, NULL, '1.0000', '9.0000', '9.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58610, '2022-02-12', 8683, 55815, 3850, NULL, '1.0000', '5.7000', '5.7000', '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 (58611, '2022-02-12', 8657, 55816, 3850, 50058, '1.0000', '19.1180', '19.1180', '10.3000', '10.3000', '0.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58612, '2022-02-12', 7671, 55817, 3850, NULL, '1.0000', '76.3606', '76.3606', '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 (58613, '2022-02-12', 1854, 55818, 3850, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58614, '2022-02-12', 7824, 55819, 3850, NULL, '1.0000', '10.0834', '10.0834', '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 (58615, '2022-02-12', 9337, 55820, 3850, 48301, '3.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58616, '2022-02-12', 9809, 55821, 3850, 50143, '2.0000', '5.7900', '5.7900', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58617, '2022-02-12', 7779, 55822, 3850, NULL, '1.0000', '9.6790', '9.6790', '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 (58618, '2022-02-12', 8449, 55823, 3850, 50056, '1.0000', '11.9000', '11.9000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58619, '2022-02-12', 7640, 55824, 3850, 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 (58620, '2022-02-12', 7495, 55825, 3851, NULL, '1.0000', '17.8000', '17.8000', '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 (58621, '2022-02-12', 7959, 55826, 3851, NULL, '2.0000', '9.6000', '9.6000', '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 (58622, '2022-02-12', 8497, 55827, 3851, NULL, '1.0000', '1126.4862', '1126.4862', '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 (58623, '2022-02-12', 8539, 55828, 3851, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '55.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58624, '2022-02-12', 2225, 55829, 3852, NULL, '1.0000', '14.0000', '14.0000', '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 (58625, '2022-02-12', 1751, 55830, 3852, 49640, '1.0000', '4.1376', '4.1376', '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 (58626, '2022-02-12', 7412, 55831, 3852, NULL, '1.0000', '1.5200', '1.5200', '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 (58627, '2022-02-12', 7483, 55832, 3852, 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 (58628, '2022-02-12', 8097, 55833, 3852, NULL, '2.0000', '7.6800', '7.6800', '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 (58629, '2022-02-12', 9788, 55834, 3852, 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 (58630, '2022-02-12', 2163, 55835, 3852, NULL, '1.0000', '22.0000', '22.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 (58631, '2022-02-12', 1658, 55836, 3852, 48464, '1.0000', '45.3715', '45.3715', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58632, '2022-02-12', 1762, 55837, 3852, 50082, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58633, '2022-02-12', 2237, 55838, 3852, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58634, '2022-02-12', 2437, 55839, 3852, 49909, '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 (58635, '2022-02-12', 2545, 55840, 3852, 49900, '1.0000', '4.2678', '4.2678', '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 (58636, '2022-02-12', 2296, 55841, 3852, NULL, '1.0000', '13.2900', '13.2900', '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 (58637, '2022-02-12', 1339, 55842, 3852, NULL, '1.0000', '1.2000', '1.2000', '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 (58638, '2022-02-12', 7514, 55843, 3852, NULL, '2.0000', '2.2500', '2.2500', '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 (58639, '2022-02-12', 2315, 55844, 3852, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '185.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58640, '2022-02-12', 2717, 55845, 3852, NULL, '1.0000', '14.0000', '14.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 (58641, '2022-02-12', 1390, 55846, 3852, 47134, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58642, '2022-02-12', 9204, 55847, 3852, NULL, '1.0000', '8.1600', '8.1600', '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 (58643, '2022-02-12', 7514, 55848, 3852, NULL, '1.0000', '2.2500', '2.2500', '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 (58644, '2022-02-12', 2302, 55849, 3852, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58645, '2022-02-12', 1580, 55850, 3852, 48178, '2.0000', '0.9900', '0.9900', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58646, '2022-02-12', 7672, 55851, 3852, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58647, '2022-02-12', 1855, 55852, 3852, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58648, '2022-02-12', 1349, 55853, 3852, NULL, '1.0000', '35.0700', '35.0700', '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 (58649, '2022-02-12', 9609, 55854, 3852, NULL, '1.0000', '6.4000', '6.4000', '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 (58650, '2022-02-12', 2167, 55855, 3852, NULL, '1.0000', '2.1310', '2.1310', '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 (58651, '2022-02-12', 1872, 55856, 3852, 37970, '1.0000', '8.5555', '8.5555', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58652, '2022-02-12', 2989, 55857, 3852, NULL, '3.0000', '0.9200', '0.9200', '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 (58653, '2022-02-12', 1651, 55858, 3852, 49333, '1.0000', '6.3300', '6.3300', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58654, '2022-02-12', 8497, 55859, 3852, 45161, '2.0000', '13.0000', '13.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58655, '2022-02-12', 7411, 55860, 3852, NULL, '1.0000', '1.3013', '1.3013', '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 (58656, '2022-02-12', 1590, 55861, 3852, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58657, '2022-02-12', 1564, 55862, 3852, 50077, '3.0000', '3.4988', '3.4988', '4.0000', '4.0000', '87.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58658, '2022-02-12', 7411, 55863, 3852, NULL, '1.0000', '1.3013', '1.3013', '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 (58659, '2022-02-12', 2169, 55864, 3852, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58660, '2022-02-12', 1757, 55865, 3852, NULL, '1.0000', '4.0024', '4.0024', '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 (58661, '2022-02-12', 7514, 55866, 3852, NULL, '1.0000', '2.2500', '2.2500', '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 (58662, '2022-02-12', 8328, 55867, 3852, NULL, '1.0000', '8.1000', '8.1000', '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 (58663, '2022-02-12', 8444, 55868, 3852, 49349, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58664, '2022-02-12', 2315, 55869, 3852, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '185.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58665, '2022-02-12', 7355, 55870, 3852, 39797, '1.0000', '18.6310', '18.6310', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58666, '2022-02-12', 9569, 55871, 3852, 43225, '1.0000', '114.0900', '114.0900', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58667, '2022-02-12', 1779, 55872, 3852, 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 (58668, '2022-02-12', 1499, 55873, 3852, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58669, '2022-02-12', 2169, 55874, 3852, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58670, '2022-02-12', 7514, 55875, 3852, NULL, '1.0000', '2.2500', '2.2500', '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 (58671, '2022-02-12', 7411, 55876, 3852, NULL, '1.0000', '1.3013', '1.3013', '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 (58672, '2022-02-12', 2004, 55877, 3852, 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 (58673, '2022-02-12', 1519, 55878, 3852, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58674, '2022-02-12', 1667, 55879, 3852, 49364, '2.0000', '13.0832', '13.0832', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58675, '2022-02-12', 2660, 55880, 3852, 49361, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58676, '2022-02-12', 2098, 55881, 3852, 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 (58677, '2022-02-12', 9202, 55882, 3852, NULL, '1.0000', '3.5000', '3.5000', '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 (58678, '2022-02-12', 2237, 55883, 3852, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58679, '2022-02-12', 9732, 55884, 3852, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58680, '2022-02-12', 2302, 55885, 3852, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58681, '2022-02-12', 1564, 55886, 3852, 50077, '4.0000', '3.4988', '3.4988', '4.0000', '4.0000', '86.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58682, '2022-02-12', 3027, 55887, 3852, 23977, '1.0000', '5.0000', '5.0000', '7.0000', '7.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 (58683, '2022-02-12', 2009, 55888, 3852, 44153, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58684, '2022-02-12', 7713, 55889, 3852, 48657, '3.0000', '24.6545', '24.6545', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58685, '2022-02-12', 2169, 55890, 3852, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58686, '2022-02-12', 1841, 55891, 3852, 31077, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58687, '2022-02-12', 1840, 55892, 3852, NULL, '1.0000', '0.2400', '0.2400', '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 (58688, '2022-02-12', 1699, 55893, 3852, NULL, '1.0000', '3.2000', '3.2000', '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 (58689, '2022-02-12', 2315, 55894, 3852, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '183.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58690, '2022-02-12', 7641, 55895, 3852, NULL, '1.0000', '1.9000', '1.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 (58691, '2022-02-12', 9750, 55896, 3852, NULL, '1.0000', '3.3000', '3.3000', '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 (58692, '2022-02-12', 2221, 55897, 3852, 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 (58693, '2022-02-12', 8548, 55898, 3852, NULL, '1.0000', '12.0000', '12.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 (58694, '2022-02-12', 2405, 55899, 3852, 37770, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '36.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58695, '2022-02-12', 2440, 55900, 3852, 49680, '1.0000', '6.6029', '6.6029', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58696, '2022-02-12', 1812, 55901, 3852, 48636, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58697, '2022-02-12', 9021, 55902, 3852, 50081, '1.0000', '6.9147', '6.9147', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58698, '2022-02-12', 9556, 55903, 3852, 39822, '2.0000', '0.4814', '0.4814', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58699, '2022-02-12', 9211, 55904, 3852, NULL, '2.0000', '5.8300', '5.8300', '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 (58700, '2022-02-12', 2088, 55905, 3852, 50259, '1.0000', '-1.0956', '-1.0956', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58701, '2022-02-12', 2699, 55906, 3852, 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 (58702, '2022-02-12', 7684, 55907, 3852, NULL, '1.0000', '9.0000', '9.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 (58703, '2022-02-12', 2635, 55908, 3852, 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 (58704, '2022-02-12', 7564, 55909, 3852, NULL, '1.0000', '0.6400', '0.6400', '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 (58705, '2022-02-12', 2655, 55910, 3852, 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 (58706, '2022-02-12', 2315, 55911, 3852, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '185.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58707, '2022-02-12', 1646, 55912, 3852, 49372, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58708, '2022-02-12', 9729, 55913, 3852, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58709, '2022-02-12', 2169, 55914, 3852, 49264, '3.0000', '0.7121', '0.7121', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58710, '2022-02-12', 9105, 55915, 3852, NULL, '2.0000', '0.5800', '0.5800', '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 (58711, '2022-02-12', 7564, 55916, 3852, NULL, '1.0000', '0.6400', '0.6400', '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 (58712, '2022-02-12', 9021, 55917, 3852, 50081, '1.0000', '6.9147', '6.9147', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58713, '2022-02-12', 9105, 55918, 3852, NULL, '1.0000', '0.5800', '0.5800', '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 (58714, '2022-02-12', 7564, 55919, 3852, NULL, '1.0000', '0.6400', '0.6400', '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 (58715, '2022-02-12', 7411, 55920, 3852, NULL, '1.0000', '1.3013', '1.3013', '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 (58716, '2022-02-12', 7330, 55921, 3852, NULL, '1.0000', '3.0500', '3.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 (58717, '2022-02-12', 7355, 55922, 3852, 39797, '1.0000', '18.6310', '18.6310', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58718, '2022-02-12', 2503, 55923, 3852, 44455, '1.0000', '16.3200', '16.3200', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58719, '2022-02-12', 7720, 55924, 3853, NULL, '1.0000', '8.5000', '8.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 (58720, '2022-02-12', 2965, 55925, 3853, NULL, '1.0000', '5.8007', '5.8007', '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 (58721, '2022-02-12', 8982, 55926, 3854, 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 (58722, '2022-02-13', 1602, 55927, 3855, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '25.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58723, '2022-02-13', 9715, 55928, 3855, 49884, '1.0000', '9.4000', '9.4000', '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 (58724, '2022-02-13', 9723, 55929, 3855, 47060, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58725, '2022-02-13', 2442, 55930, 3855, 49679, '1.0000', '7.3500', '7.3500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58726, '2022-02-13', 1665, 55931, 3855, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58727, '2022-02-13', 2169, 55932, 3855, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58728, '2022-02-13', 1571, 55933, 3855, 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 (58729, '2022-02-13', 1534, 55934, 3855, NULL, '1.0000', '9.8500', '9.8500', '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 (58730, '2022-02-13', 2242, 55935, 3855, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58731, '2022-02-13', 7548, 55936, 3855, NULL, '1.0000', '0.3400', '0.3400', '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 (58732, '2022-02-13', 2315, 55937, 3855, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '178.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58733, '2022-02-13', 1401, 55938, 3855, 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 (58734, '2022-02-13', 1510, 55939, 3855, NULL, '1.0000', '9.5885', '9.5885', '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 (58735, '2022-02-13', 1519, 55940, 3855, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58736, '2022-02-13', 1493, 55941, 3855, 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 (58737, '2022-02-13', 1455, 55942, 3855, 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 (58738, '2022-02-13', 9775, 55943, 3855, NULL, '1.0000', '7.9000', '7.9000', '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 (58739, '2022-02-13', 1912, 55944, 3855, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58740, '2022-02-13', 2135, 55945, 3855, NULL, '1.0000', '2.4732', '2.4732', '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 (58741, '2022-02-13', 1945, 55946, 3855, 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 (58742, '2022-02-13', 2236, 55947, 3855, NULL, '1.0000', '9.3108', '9.3108', '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 (58743, '2022-02-13', 1804, 55948, 3855, 48590, '1.0000', '4.3180', '4.3180', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58744, '2022-02-13', 1772, 55949, 3855, 50227, '1.0000', '5.9152', '5.9152', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58745, '2022-02-13', 1825, 55950, 3855, NULL, '1.0000', '5.1984', '5.1984', '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 (58746, '2022-02-13', 1410, 55951, 3855, NULL, '1.0000', '1.8562', '1.8562', '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 (58747, '2022-02-13', 7586, 55952, 3855, NULL, '1.0000', '4.1700', '4.1700', '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 (58748, '2022-02-13', 1499, 55953, 3855, 50243, '1.0000', '0.3303', '0.3303', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58749, '2022-02-13', 2327, 55954, 3855, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58750, '2022-02-13', 2299, 55955, 3855, 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 (58751, '2022-02-13', 2167, 55956, 3855, NULL, '1.0000', '2.1310', '2.1310', '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 (58752, '2022-02-13', 2821, 55957, 3855, NULL, '1.0000', '3.4701', '3.4701', '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 (58753, '2022-02-13', 2066, 55958, 3855, 34656, '4.0000', '0.5100', '0.5100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58754, '2022-02-13', 2088, 55959, 3855, 50259, '1.0000', '-1.0956', '-1.0956', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58755, '2022-02-13', 1812, 55960, 3855, 48636, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58756, '2022-02-13', 2295, 55961, 3855, 48904, '3.0000', '1.1161', '1.1161', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58757, '2022-02-13', 1689, 55962, 3855, NULL, '1.0000', '12.9279', '12.9279', '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 (58758, '2022-02-13', 2768, 55963, 3855, 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 (58759, '2022-02-13', 3058, 55964, 3855, NULL, '1.0000', '2.3000', '2.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 (58760, '2022-02-13', 1873, 55965, 3855, 33148, '1.0000', '11.9500', '11.9500', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58761, '2022-02-13', 7394, 55966, 3855, NULL, '1.0000', '12.7400', '12.7400', '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 (58762, '2022-02-13', 1901, 55967, 3855, NULL, '1.0000', '2.0100', '2.0100', '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 (58763, '2022-02-13', 1307, 55968, 3855, NULL, '1.0000', '0.6103', '0.6103', '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 (58764, '2022-02-13', 2228, 55969, 3855, 49417, '1.0000', '27.0000', '27.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58765, '2022-02-13', 9794, 55970, 3855, NULL, '2.0000', '1.0800', '1.0800', '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 (58766, '2022-02-13', 2135, 55971, 3855, NULL, '1.0000', '2.4732', '2.4732', '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 (58767, '2022-02-13', 1307, 55972, 3855, NULL, '1.0000', '0.6103', '0.6103', '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 (58768, '2022-02-13', 2169, 55973, 3855, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58769, '2022-02-13', 1314, 55974, 3856, 48145, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58770, '2022-02-13', 1950, 55975, 3856, NULL, '1.0000', '3.4496', '3.4496', '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 (58771, '2022-02-13', 2821, 55976, 3856, NULL, '1.0000', '3.4701', '3.4701', '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 (58772, '2022-02-13', 2948, 55977, 3856, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58773, '2022-02-13', 1609, 55978, 3856, 19393, '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 (58774, '2022-02-13', 7918, 55979, 3856, NULL, '1.0000', '11.0875', '11.0875', '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 (58775, '2022-02-13', 7658, 55980, 3856, NULL, '2.0000', '10.1500', '10.1500', '2.8000', '2.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 (58776, '2022-02-13', 2821, 55981, 3856, NULL, '1.0000', '3.4701', '3.4701', '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 (58777, '2022-02-13', 2655, 55982, 3856, NULL, '2.0000', '6.5000', '6.5000', '8.5000', '8.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 (58778, '2022-02-13', 2088, 55983, 3856, 50259, '1.0000', '-1.0956', '-1.0956', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58779, '2022-02-13', 2083, 55984, 3856, 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 (58780, '2022-02-13', 2167, 55985, 3856, NULL, '2.0000', '2.1310', '2.1310', '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 (58781, '2022-02-13', 9740, 55986, 3856, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58782, '2022-02-13', 2286, 55987, 3856, 50260, '1.0000', '4.4756', '4.4756', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58783, '2022-02-13', 9578, 55988, 3856, 47856, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 350);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58784, '2022-02-13', 7584, 55989, 3856, NULL, '1.0000', '3.8100', '3.8100', '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 (58785, '2022-02-13', 1863, 55990, 3856, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58786, '2022-02-13', 9311, 55991, 3856, 44147, '2.0000', '6.6000', '6.6000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58787, '2022-02-13', 2948, 55992, 3856, 48718, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58788, '2022-02-13', 1935, 55993, 3856, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58789, '2022-02-13', 2289, 55994, 3856, 49873, '6.0000', '0.2222', '0.2222', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58790, '2022-02-13', 1841, 55995, 3857, 31077, '1.0000', '0.2601', '0.2601', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58791, '2022-02-13', 1841, 55995, 3857, NULL, '1.0000', '0.2601', '0.2601', '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 (58792, '2022-02-13', 1401, 55996, 3857, 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 (58793, '2022-02-13', 1687, 55997, 3857, 49633, '1.0000', '11.5480', '11.5480', '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 (58794, '2022-02-13', 2495, 55998, 3857, 49635, '1.0000', '8.6100', '8.6100', '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 (58795, '2022-02-13', 1868, 55999, 3857, 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 (58796, '2022-02-13', 2541, 56000, 3857, 48961, '1.0000', '11.3875', '11.3875', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58797, '2022-02-13', 2374, 56001, 3857, 49637, '1.0000', '6.1000', '6.1000', '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 (58798, '2022-02-13', 1863, 56002, 3857, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58799, '2022-02-13', 2543, 56003, 3857, 48867, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58800, '2022-02-13', 1590, 56004, 3858, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58801, '2022-02-13', 1450, 56005, 3858, 24966, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '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 (58802, '2022-02-13', 1450, 56005, 3858, 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 (58803, '2022-02-13', 2660, 56006, 3858, 49361, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58804, '2022-02-13', 1665, 56007, 3858, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58805, '2022-02-13', 9747, 56008, 3858, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58806, '2022-02-13', 1410, 56009, 3858, NULL, '1.0000', '1.8562', '1.8562', '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 (58807, '2022-02-13', 9732, 56010, 3858, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58808, '2022-02-13', 2286, 56011, 3858, 50260, '2.0000', '4.4756', '4.4756', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58809, '2022-02-13', 1771, 56012, 3858, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58810, '2022-02-13', 2354, 56013, 3858, NULL, '1.0000', '3.6465', '3.6465', '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 (58811, '2022-02-13', 2327, 56014, 3858, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58812, '2022-02-13', 1863, 56015, 3858, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58813, '2022-02-13', 9580, 56016, 3858, 39225, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58814, '2022-02-13', 2327, 56017, 3859, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58815, '2022-02-13', 8444, 56018, 3859, 49349, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58816, '2022-02-13', 1805, 56019, 3859, NULL, '1.0000', '15.0770', '15.0770', '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 (58817, '2022-02-13', 7472, 56020, 3859, NULL, '1.0000', '4.2055', '4.2055', '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 (58818, '2022-02-13', 8809, 56021, 3859, 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 (58819, '2022-02-13', 1855, 56022, 3859, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58820, '2022-02-13', 2777, 56023, 3859, 49887, '1.0000', '2.6714', '2.6714', '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 (58821, '2022-02-13', 9422, 56024, 3859, NULL, '1.0000', '4.3200', '4.3200', '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 (58822, '2022-02-13', 1375, 56025, 3860, NULL, '1.0000', '14.3000', '14.3000', '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 (58823, '2022-02-13', 2891, 56026, 3860, 24957, '1.0000', '9.5000', '9.5000', '13.0000', '13.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 (58824, '2022-02-13', 2809, 56027, 3860, 40114, '1.0000', '28.0000', '28.0000', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58825, '2022-02-13', 2011, 56028, 3860, 44156, '2.0000', '0.5300', '0.5300', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58826, '2022-02-13', 8775, 56029, 3860, 49870, '1.0000', '-5.5188', '-5.5188', '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 (58827, '2022-02-13', 9105, 56030, 3861, NULL, '1.0000', '0.5800', '0.5800', '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 (58828, '2022-02-13', 2992, 56031, 3862, 43062, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58829, '2022-02-13', 7518, 56032, 3862, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (58830, '2022-02-13', 7836, 56033, 3862, NULL, '1.0000', '9.0000', '9.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58831, '2022-02-13', 8718, 56034, 3862, NULL, '1.0000', '7.6800', '7.6800', '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 (58832, '2022-02-13', 7642, 56035, 3862, 46653, '1.0000', '5.9200', '5.9200', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58833, '2022-02-13', 2279, 56036, 3862, NULL, '2.0000', '2.6000', '2.6000', '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 (58834, '2022-02-13', 7321, 56037, 3862, NULL, '1.0000', '12.6000', '12.6000', '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 (58835, '2022-02-13', 8097, 56038, 3862, 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 (58836, '2022-02-13', 7473, 56039, 3862, NULL, '5.0000', '162.5864', '162.5864', '0.6000', '0.6000', '-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 (58837, '2022-02-13', 7411, 56040, 3862, NULL, '1.0000', '1.3600', '1.3600', '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 (58838, '2022-02-13', 7708, 56041, 3862, NULL, '1.0000', '2.3100', '2.3100', '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 (58839, '2022-02-13', 7707, 56042, 3862, NULL, '1.0000', '6.0018', '6.0018', '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 (58840, '2022-02-13', 2251, 56043, 3862, 49817, '1.0000', '11.7094', '11.7094', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58841, '2022-02-13', 3013, 56044, 3862, 47924, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58842, '2022-02-13', 7612, 56045, 3862, NULL, '4.0000', '0.3870', '0.3870', '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 (58843, '2022-02-13', 9160, 56046, 3862, NULL, '1.0000', '41.6640', '41.6640', '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 (58844, '2022-02-13', 7411, 56047, 3862, NULL, '1.0000', '1.3600', '1.3600', '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 (58845, '2022-02-13', 7318, 56048, 3862, 49762, '1.0000', '0.4353', '0.4353', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58846, '2022-02-13', 1532, 56049, 3862, 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 (58847, '2022-02-13', 1590, 56050, 3862, 34520, '1.0000', '1.7112', '1.7112', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58848, '2022-02-13', 7823, 56051, 3862, 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 (58849, '2022-02-13', 2315, 56052, 3862, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '5.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58850, '2022-02-13', 7554, 56053, 3862, NULL, '10.0000', '1.6815', '1.6815', '2.2000', '2.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 (58851, '2022-02-13', 7741, 56054, 3862, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58852, '2022-02-13', 9631, 56055, 3862, 45866, '1.0000', '7.0000', '7.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58853, '2022-02-13', 9272, 56056, 3862, NULL, '1.0000', '3.1000', '3.1000', '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 (58854, '2022-02-13', 8942, 56057, 3862, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58855, '2022-02-13', 7743, 56058, 3862, NULL, '1.0000', '419203.7668', '419203.7668', '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 (58856, '2022-02-13', 1867, 56059, 3862, 49740, '1.0000', '13.3004', '13.3004', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58857, '2022-02-13', 7430, 56060, 3862, NULL, '1.0000', '15.0000', '15.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 (58858, '2022-02-13', 7438, 56061, 3862, 49985, '1.0000', '25.8440', '25.8440', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58859, '2022-02-13', 8692, 56062, 3862, NULL, '1.0000', '2.5000', '2.5000', '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 (58860, '2022-02-13', 2416, 56063, 3862, 43964, '2.0000', '1.2000', '1.2000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58861, '2022-02-13', 8789, 56064, 3862, 37366, '1.0000', '4.6647', '4.6647', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58862, '2022-02-13', 8612, 56065, 3862, 49738, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58863, '2022-02-13', 7673, 56066, 3862, NULL, '1.0000', '15.4911', '15.4911', '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 (58864, '2022-02-13', 7715, 56067, 3862, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '40.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58865, '2022-02-13', 7664, 56068, 3862, 50043, '1.0000', '7.1799', '7.1799', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58866, '2022-02-13', 2761, 56069, 3862, 46917, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58867, '2022-02-13', 7671, 56070, 3862, NULL, '2.0000', '76.3606', '76.3606', '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 (58868, '2022-02-13', 7708, 56071, 3862, NULL, '1.0000', '2.3100', '2.3100', '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 (58869, '2022-02-13', 7482, 56072, 3862, 46157, '1.0000', '3.3336', '3.3336', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58870, '2022-02-13', 8047, 56073, 3862, NULL, '1.0000', '45.8000', '45.8000', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58871, '2022-02-13', 7641, 56074, 3862, NULL, '1.0000', '-543.6034', '-543.6034', '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 (58872, '2022-02-13', 7473, 56075, 3862, NULL, '10.0000', '162.5864', '162.5864', '0.6000', '0.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 (58873, '2022-02-13', 7703, 56076, 3862, NULL, '2.0000', '102.7757', '102.7757', '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 (58874, '2022-02-13', 8607, 56077, 3862, 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 (58875, '2022-02-13', 7674, 56078, 3862, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58876, '2022-02-13', 8134, 56079, 3862, NULL, '1.0000', '5.2600', '5.2600', '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 (58877, '2022-02-13', 8721, 56080, 3862, NULL, '2.0000', '22.0000', '22.0000', '30.5000', '30.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 (58878, '2022-02-13', 1983, 56081, 3862, 42787, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58879, '2022-02-13', 1984, 56082, 3862, 42788, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58880, '2022-02-13', 7585, 56083, 3862, NULL, '1.0000', '-3.1011', '-3.1011', '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 (58881, '2022-02-13', 7867, 56084, 3862, NULL, '3.0000', '2.1368', '2.1368', '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 (58882, '2022-02-13', 7899, 56085, 3862, 49763, '1.0000', '4.0000', '4.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58883, '2022-02-13', 2235, 56086, 3862, 50050, '1.0000', '20.3500', '20.3500', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58884, '2022-02-13', 3018, 56087, 3862, 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 (58885, '2022-02-13', 9329, 56088, 3862, NULL, '1.0000', '13.9601', '13.9601', '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 (58886, '2022-02-13', 2296, 56089, 3862, NULL, '1.0000', '12.8812', '12.8812', '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 (58887, '2022-02-13', 7963, 56090, 3862, NULL, '1.0000', '-9.5000', '-9.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58888, '2022-02-13', 2699, 56091, 3862, 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 (58889, '2022-02-13', 9556, 56092, 3862, 48080, '1.0000', '0.2770', '0.2770', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58890, '2022-02-13', 2269, 56093, 3862, 44353, '1.0000', '5.5010', '5.5010', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58891, '2022-02-13', 7522, 56094, 3862, NULL, '1.0000', '5.2000', '5.2000', '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 (58892, '2022-02-13', 7952, 56095, 3862, NULL, '1.0000', '62.3792', '62.3792', '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 (58893, '2022-02-13', 2039, 56096, 3862, NULL, '1.0000', '9.0000', '9.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 (58894, '2022-02-13', 7917, 56097, 3862, NULL, '4.0000', '5.0000', '5.0000', '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 (58895, '2022-02-13', 8230, 56098, 3862, NULL, '1.0000', '5.0000', '5.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 (58896, '2022-02-13', 2012, 56099, 3862, 42792, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58897, '2022-02-13', 2273, 56100, 3862, NULL, '1.0000', '2.6700', '2.6700', '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 (58898, '2022-02-13', 2248, 56101, 3862, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58899, '2022-02-13', 7509, 56102, 3862, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58900, '2022-02-13', 8052, 56103, 3862, NULL, '1.0000', '27.7481', '27.7481', '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 (58901, '2022-02-13', 1310, 56104, 3862, 49285, '5.0000', '0.4135', '0.4135', '0.6000', '0.6000', '110.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58902, '2022-02-13', 8083, 56105, 3862, 49404, '1.0000', '51.2300', '51.2300', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 372);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58903, '2022-02-13', 1588, 56106, 3862, 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 (58904, '2022-02-13', 7674, 56107, 3862, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58905, '2022-02-13', 7671, 56108, 3862, NULL, '1.0000', '76.3606', '76.3606', '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 (58906, '2022-02-13', 8702, 56109, 3862, NULL, '1.0000', '3.6700', '3.6700', '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 (58907, '2022-02-13', 9726, 56110, 3862, 46155, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58908, '2022-02-13', 9022, 56111, 3862, NULL, '1.0000', '6.2900', '6.2900', '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 (58909, '2022-02-13', 2321, 56112, 3862, NULL, '3.0000', '2.5000', '2.5000', '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 (58910, '2022-02-13', 9809, 56113, 3862, 50143, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58911, '2022-02-13', 8308, 56114, 3862, NULL, '1.0000', '14.1857', '14.1857', '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 (58912, '2022-02-13', 8061, 56115, 3862, NULL, '1.0000', '-5.4000', '-5.4000', '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 (58913, '2022-02-13', 9084, 56116, 3862, NULL, '1.0000', '6.5000', '6.5000', '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 (58914, '2022-02-13', 9796, 56117, 3862, 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 (58915, '2022-02-13', 1807, 56118, 3862, NULL, '1.0000', '-34.8462', '-34.8462', '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 (58916, '2022-02-13', 2283, 56119, 3862, 50041, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58917, '2022-02-13', 8172, 56120, 3862, NULL, '1.0000', '40.7000', '40.7000', '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 (58918, '2022-02-13', 1837, 56121, 3862, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58919, '2022-02-13', 1310, 56122, 3862, 49285, '15.0000', '0.4135', '0.4135', '0.6000', '0.6000', '100.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58920, '2022-02-13', 9796, 56123, 3862, 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 (58921, '2022-02-13', 1564, 56124, 3863, 50077, '10.0000', '3.4988', '3.4988', '4.0000', '4.0000', '73.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58922, '2022-02-13', 2088, 56125, 3863, 50259, '1.0000', '-1.0956', '-1.0956', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58923, '2022-02-13', 9416, 56126, 3863, 49675, '1.0000', '4.2857', '4.2857', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58924, '2022-02-13', 2699, 56127, 3863, NULL, '4.0000', '3.0000', '3.0000', '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 (58925, '2022-02-13', 2660, 56128, 3863, 49361, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58926, '2022-02-13', 1665, 56129, 3863, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58927, '2022-02-13', 1912, 56130, 3864, 49717, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58928, '2022-02-14', 2617, 56131, 3865, 42533, '3.0000', '4.4000', '4.4000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58929, '2022-02-14', 1564, 56132, 3865, 50077, '2.0000', '3.4988', '3.4988', '4.0000', '4.0000', '71.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58930, '2022-02-14', 8849, 56133, 3865, NULL, '1.0000', '1.0700', '1.0700', '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 (58931, '2022-02-14', 2655, 56134, 3865, 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 (58932, '2022-02-14', 2699, 56135, 3865, NULL, '4.0000', '3.0000', '3.0000', '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 (58933, '2022-02-14', 2354, 56136, 3865, NULL, '1.0000', '3.6465', '3.6465', '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 (58934, '2022-02-14', 1602, 56137, 3865, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58935, '2022-02-14', 2277, 56138, 3865, NULL, '2.0000', '0.9399', '0.9399', '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 (58936, '2022-02-14', 9482, 56139, 3865, 32547, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58937, '2022-02-14', 1425, 56140, 3865, 50262, '1.0000', '7.6655', '7.6655', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58938, '2022-02-14', 1695, 56141, 3865, NULL, '1.0000', '22.6608', '22.6608', '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 (58939, '2022-02-14', 8876, 56142, 3865, NULL, '1.0000', '0.9900', '0.9900', '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 (58940, '2022-02-14', 2242, 56143, 3865, 48899, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58941, '2022-02-14', 9762, 56144, 3865, 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 (58942, '2022-02-14', 2383, 56145, 3865, 19822, '1.0000', '16.3000', '16.3000', '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 (58943, '2022-02-14', 8761, 56146, 3865, NULL, '1.0000', '11.3420', '11.3420', '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 (58944, '2022-02-14', 1888, 56147, 3865, 49369, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58945, '2022-02-14', 1657, 56148, 3865, 19371, '4.0000', '90.0000', '90.0000', '0.6000', '0.6000', '186.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58946, '2022-02-14', 2169, 56149, 3865, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58947, '2022-02-14', 1859, 56150, 3866, 48972, '1.0000', '22.8640', '22.8640', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58948, '2022-02-14', 9095, 56151, 3866, 49901, '2.0000', '8.7600', '8.7600', '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 (58949, '2022-02-14', 9409, 56152, 3866, NULL, '1.0000', '5.7000', '5.7000', '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 (58950, '2022-02-14', 9695, 56153, 3866, 50256, '3.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58951, '2022-02-14', 2360, 56154, 3867, 3862, '-58.0000', '0.5200', '0.5200', '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 (58952, '2022-02-14', 2360, 56154, 3867, NULL, '59.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58953, '2022-02-14', 3058, 56155, 3867, 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 (58954, '2022-02-14', 1601, 56156, 3867, 8892, '-1.0000', '7.7300', '7.7300', '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 (58955, '2022-02-14', 1601, 56156, 3867, NULL, '2.0000', '7.7300', '7.7300', '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 (58956, '2022-02-14', 1856, 56157, 3867, NULL, '1.0000', '4.2500', '4.2500', '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 (58957, '2022-02-14', 2315, 56158, 3867, 2735, '-160.0000', '0.3300', '0.3300', '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 (58958, '2022-02-14', 2315, 56158, 3867, NULL, '161.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-161.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58959, '2022-02-14', 2366, 56159, 3867, 3833, '-34.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 (58960, '2022-02-14', 2366, 56159, 3867, NULL, '36.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-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 (58961, '2022-02-14', 2234, 56160, 3867, NULL, '1.0000', '16.9284', '16.9284', '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 (58962, '2022-02-14', 2229, 56161, 3867, 1704, '-4.0000', '24.5000', '24.5000', '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 (58963, '2022-02-14', 2229, 56161, 3867, NULL, '5.0000', '24.5000', '24.5000', '29.0000', '29.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 (58964, '2022-02-14', 2636, 56162, 3867, 10378, '1.0000', '7.2738', '7.2738', '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 (58965, '2022-02-14', 1828, 56163, 3867, NULL, '2.0000', '0.7300', '0.7300', '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 (58966, '2022-02-14', 2169, 56164, 3867, 10737, '-37.0000', '3.8397', '3.8397', '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 (58967, '2022-02-14', 2169, 56164, 3867, NULL, '39.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58968, '2022-02-14', 2280, 56165, 3867, 33794, '1.0000', '3.0700', '3.0700', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58969, '2022-02-14', 2402, 56166, 3867, 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 (58970, '2022-02-14', 1674, 56167, 3867, 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 (58971, '2022-02-14', 8809, 56168, 3867, 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 (58972, '2022-02-14', 1943, 56169, 3867, 5594, '-3.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 (58973, '2022-02-14', 1943, 56169, 3867, 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 (58974, '2022-02-14', 2907, 56170, 3867, 18646, '-2.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 (58975, '2022-02-14', 2907, 56170, 3867, NULL, '3.0000', '6.0000', '6.0000', '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 (58976, '2022-02-14', 7411, 56171, 3867, NULL, '1.0000', '1.3500', '1.3500', '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 (58977, '2022-02-14', 2272, 56172, 3867, 2932, '-17.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 (58978, '2022-02-14', 2272, 56172, 3867, NULL, '18.0000', '5.5000', '5.5000', '8.0000', '8.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 (58979, '2022-02-14', 7411, 56173, 3867, NULL, '1.0000', '1.3500', '1.3500', '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 (58980, '2022-02-14', 1595, 56174, 3867, 8360, '-4.0000', '20.6900', '20.6900', '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 (58981, '2022-02-14', 1595, 56174, 3867, NULL, '5.0000', '20.6900', '20.6900', '26.5000', '26.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 (58982, '2022-02-14', 1533, 56175, 3867, 10381, '-3.0000', '2.5917', '2.5917', '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 (58983, '2022-02-14', 1533, 56175, 3867, NULL, '4.0000', '2.5917', '2.5917', '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 (58984, '2022-02-14', 1947, 56176, 3868, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '52.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 (58985, '2022-02-14', 2169, 56177, 3868, 10737, '-39.0000', '3.8397', '3.8397', '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 (58986, '2022-02-14', 2169, 56177, 3868, NULL, '40.0000', '3.8397', '3.8397', '2.0000', '2.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 (58987, '2022-02-14', 1866, 56178, 3868, 16246, '-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 (58988, '2022-02-14', 1866, 56178, 3868, NULL, '3.0000', '5.2000', '5.2000', '7.0000', '7.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 (58989, '2022-02-14', 9723, 56179, 3868, 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 (58990, '2022-02-14', 2260, 56180, 3868, 2796, '-12.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 (58991, '2022-02-14', 2260, 56180, 3868, NULL, '13.0000', '4.2000', '4.2000', '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 (58992, '2022-02-14', 9747, 56181, 3868, NULL, '1.0000', '0.6500', '0.6500', '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 (58993, '2022-02-14', 2233, 56182, 3868, 2777, '-22.0000', '19.0200', '19.0200', '29.5000', '29.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 (58994, '2022-02-14', 2233, 56182, 3868, NULL, '23.0000', '19.0200', '19.0200', '29.5000', '29.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 (58995, '2022-02-14', 9794, 56183, 3868, NULL, '1.0000', '1.0800', '1.0800', '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 (58996, '2022-02-14', 2270, 56184, 3868, 2930, '-1.0000', '0.9880', '0.9880', '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 (58997, '2022-02-14', 2270, 56184, 3868, NULL, '2.0000', '0.9880', '0.9880', '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 (58998, '2022-02-14', 1435, 56185, 3868, NULL, '1.0000', '22.5000', '22.5000', '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 (58999, '2022-02-14', 7911, 56186, 3869, NULL, '1.0000', '4.3700', '4.3700', '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 (59000, '2022-02-14', 7472, 56187, 3869, NULL, '1.0000', '-4.3873', '-4.3873', '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 (59001, '2022-02-14', 7867, 56188, 3869, NULL, '1.0000', '2.1368', '2.1368', '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 (59002, '2022-02-14', 1807, 56189, 3869, NULL, '3.0000', '-34.8462', '-34.8462', '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 (59003, '2022-02-14', 7317, 56190, 3869, 50038, '1.0000', '11.1787', '11.1787', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59004, '2022-02-14', 2233, 56191, 3869, 50051, '1.0000', '15.1062', '15.1062', '29.5000', '29.5000', '4.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59005, '2022-02-14', 7741, 56192, 3869, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59006, '2022-02-14', 9660, 56193, 3869, 42668, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59007, '2022-02-14', 8059, 56194, 3869, 50301, '3.0000', '6.3125', '6.3125', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59008, '2022-02-14', 9178, 56195, 3869, 46013, '1.0000', '4.2725', '4.2725', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59009, '2022-02-14', 7641, 56196, 3869, NULL, '2.0000', '-543.6034', '-543.6034', '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 (59010, '2022-02-14', 9747, 56197, 3869, 46923, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59011, '2022-02-14', 9726, 56198, 3869, 46155, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59012, '2022-02-14', 8596, 56199, 3869, NULL, '1.0000', '17.0000', '17.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 (59013, '2022-02-14', 7954, 56200, 3869, NULL, '2.0000', '24.4161', '24.4161', '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 (59014, '2022-02-14', 8288, 56201, 3869, NULL, '3.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (59015, '2022-02-14', 7708, 56202, 3869, NULL, '1.0000', '2.3100', '2.3100', '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 (59016, '2022-02-14', 7657, 56203, 3869, NULL, '2.0000', '-42.0948', '-42.0948', '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 (59017, '2022-02-14', 7509, 56204, 3869, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59018, '2022-02-14', 7411, 56205, 3869, NULL, '1.0000', '1.3600', '1.3600', '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 (59019, '2022-02-14', 1904, 56206, 3869, 37842, '2.0000', '27.8194', '27.8194', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59020, '2022-02-14', 1339, 56207, 3869, 48361, '1.0000', '1.6199', '1.6199', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59021, '2022-02-14', 1880, 56208, 3869, 46238, '1.0000', '4.4789', '4.4789', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59022, '2022-02-14', 7620, 56209, 3869, 33540, '1.0000', '9.3100', '9.3100', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59023, '2022-02-14', 7703, 56210, 3869, NULL, '2.0000', '102.7757', '102.7757', '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 (59024, '2022-02-14', 8032, 56211, 3869, 50135, '1.0000', '-0.1309', '-0.1309', '8.5000', '8.5000', '10.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59025, '2022-02-14', 7411, 56212, 3869, NULL, '1.0000', '1.3600', '1.3600', '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 (59026, '2022-02-14', 8415, 56213, 3869, 50304, '2.0000', '4.3750', '4.3750', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59027, '2022-02-14', 7888, 56214, 3869, NULL, '1.0000', '14.2363', '14.2363', '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 (59028, '2022-02-14', 7514, 56215, 3869, NULL, '2.0000', '65.8461', '65.8461', '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 (59029, '2022-02-14', 2284, 56216, 3869, 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 (59030, '2022-02-14', 7507, 56217, 3869, NULL, '2.0000', '6.5000', '6.5000', '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 (59031, '2022-02-14', 1554, 56218, 3869, NULL, '1.0000', '3.1600', '3.1600', '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 (59032, '2022-02-14', 7922, 56219, 3869, NULL, '2.0000', '3.2097', '3.2097', '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 (59033, '2022-02-14', 8714, 56220, 3869, 46686, '1.0000', '9.3473', '9.3473', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59034, '2022-02-14', 8361, 56221, 3869, NULL, '1.0000', '8.5470', '8.5470', '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 (59035, '2022-02-14', 7593, 56222, 3869, 43078, '1.0000', '2.5263', '2.5263', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59036, '2022-02-14', 2315, 56223, 3869, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '3.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59037, '2022-02-14', 9021, 56224, 3869, NULL, '1.0000', '7.0000', '7.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 (59038, '2022-02-14', 8918, 56225, 3869, 45579, '2.0000', '4.7316', '4.7316', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59039, '2022-02-14', 7641, 56226, 3869, NULL, '1.0000', '-543.6034', '-543.6034', '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 (59040, '2022-02-14', 8000, 56227, 3869, NULL, '1.0000', '384.5041', '384.5041', '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 (59041, '2022-02-14', 8883, 56228, 3869, NULL, '2.0000', '56.5500', '56.5500', '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 (59042, '2022-02-14', 7781, 56229, 3869, NULL, '3.0000', '4.2500', '4.2500', '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 (59043, '2022-02-14', 1612, 56230, 3869, 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 (59044, '2022-02-14', 2224, 56231, 3870, 49416, '1.0000', '17.0000', '17.0000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59045, '2022-02-14', 1517, 56232, 3870, NULL, '1.0000', '23.6400', '23.6400', '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 (59046, '2022-02-14', 2374, 56233, 3870, 49637, '1.0000', '6.1000', '6.1000', '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 (59047, '2022-02-14', 2169, 56234, 3870, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59048, '2022-02-14', 2135, 56235, 3870, NULL, '1.0000', '2.4732', '2.4732', '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 (59049, '2022-02-14', 7639, 56236, 3870, 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 (59050, '2022-02-14', 7411, 56237, 3870, NULL, '1.0000', '1.3013', '1.3013', '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 (59051, '2022-02-14', 2272, 56238, 3870, NULL, '1.0000', '5.5000', '5.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 (59052, '2022-02-14', 7411, 56239, 3870, NULL, '2.0000', '1.3013', '1.3013', '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 (59053, '2022-02-14', 9609, 56240, 3870, NULL, '1.0000', '6.4000', '6.4000', '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 (59054, '2022-02-14', 7917, 56241, 3870, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59055, '2022-02-14', 1346, 56242, 3870, 42807, '1.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59056, '2022-02-14', 8328, 56243, 3870, NULL, '1.0000', '8.1000', '8.1000', '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 (59057, '2022-02-14', 2302, 56244, 3870, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59058, '2022-02-14', 8746, 56245, 3870, 49879, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59059, '2022-02-14', 2964, 56246, 3870, NULL, '1.0000', '6.6000', '6.6000', '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 (59060, '2022-02-14', 9799, 56247, 3870, 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 (59061, '2022-02-14', 7514, 56248, 3870, NULL, '1.0000', '2.2500', '2.2500', '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 (59062, '2022-02-14', 7472, 56249, 3870, NULL, '1.0000', '4.2055', '4.2055', '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 (59063, '2022-02-14', 9703, 56250, 3870, 44443, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59064, '2022-02-14', 2699, 56251, 3870, 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 (59065, '2022-02-14', 9695, 56252, 3870, 50256, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59066, '2022-02-14', 2169, 56253, 3870, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59067, '2022-02-14', 2275, 56254, 3870, NULL, '3.0000', '1.0900', '1.0900', '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 (59068, '2022-02-14', 1590, 56255, 3870, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59069, '2022-02-14', 1519, 56256, 3870, 50078, '2.0000', '3.3998', '3.3998', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59070, '2022-02-14', 9704, 56257, 3870, 44444, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59071, '2022-02-14', 9095, 56258, 3870, 49901, '1.0000', '8.7600', '8.7600', '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 (59072, '2022-02-14', 7411, 56259, 3870, NULL, '1.0000', '1.3013', '1.3013', '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 (59073, '2022-02-14', 2908, 56260, 3870, 49362, '1.0000', '0.2700', '0.2700', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59074, '2022-02-14', 9214, 56261, 3870, NULL, '1.0000', '10.8410', '10.8410', '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 (59075, '2022-02-14', 1845, 56262, 3870, NULL, '1.0000', '19.9667', '19.9667', '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 (59076, '2022-02-14', 7675, 56263, 3870, NULL, '1.0000', '11.4300', '11.4300', '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 (59077, '2022-02-14', 7641, 56264, 3870, NULL, '1.0000', '1.9000', '1.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 (59078, '2022-02-14', 1839, 56265, 3870, NULL, '1.0000', '-9.7683', '-9.7683', '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 (59079, '2022-02-14', 1812, 56266, 3870, 48636, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59080, '2022-02-14', 2092, 56267, 3870, 22388, '1.0000', '4.1583', '4.1583', '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 (59081, '2022-02-14', 8454, 56268, 3870, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59082, '2022-02-14', 2295, 56269, 3870, 48904, '1.0000', '1.1161', '1.1161', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59083, '2022-02-14', 7514, 56270, 3870, NULL, '1.0000', '2.2500', '2.2500', '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 (59084, '2022-02-14', 2169, 56271, 3870, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59085, '2022-02-14', 7411, 56272, 3870, NULL, '1.0000', '1.3013', '1.3013', '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 (59086, '2022-02-14', 1757, 56273, 3870, NULL, '1.0000', '4.0024', '4.0024', '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 (59087, '2022-02-14', 7514, 56274, 3870, NULL, '1.0000', '2.2500', '2.2500', '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 (59088, '2022-02-14', 2169, 56275, 3870, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59089, '2022-02-14', 8444, 56276, 3870, 49349, '2.0000', '1.6000', '1.6000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59090, '2022-02-14', 9729, 56277, 3870, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59091, '2022-02-14', 9695, 56278, 3870, 50256, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59092, '2022-02-14', 2320, 56279, 3870, 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 (59093, '2022-02-14', 7918, 56280, 3870, NULL, '1.0000', '11.0875', '11.0875', '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 (59094, '2022-02-14', 2642, 56281, 3870, 49615, '1.0000', '9.3605', '9.3605', '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 (59095, '2022-02-14', 2266, 56282, 3870, 50251, '1.0000', '5.7780', '5.7780', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59096, '2022-02-14', 7609, 56283, 3870, NULL, '1.0000', '4.3300', '4.3300', '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 (59097, '2022-02-14', 1529, 56284, 3870, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59098, '2022-02-14', 8085, 56285, 3871, 49815, '3.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59099, '2022-02-14', 1904, 56286, 3871, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59100, '2022-02-14', 1498, 56287, 3871, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '65.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59101, '2022-02-14', 2315, 56288, 3871, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '2.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59102, '2022-02-14', 8702, 56289, 3871, NULL, '2.0000', '3.6700', '3.6700', '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 (59103, '2022-02-14', 8074, 56290, 3871, 43149, '1.0000', '24.9998', '24.9998', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59104, '2022-02-14', 7333, 56291, 3871, NULL, '1.0000', '13.5000', '13.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 (59105, '2022-02-14', 7530, 56292, 3871, NULL, '1.0000', '2.9000', '2.9000', '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 (59106, '2022-02-14', 2761, 56293, 3871, 46917, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59107, '2022-02-14', 7848, 56294, 3871, NULL, '1.0000', '-17.3215', '-17.3215', '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 (59108, '2022-02-14', 9715, 56295, 3871, 45593, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59109, '2022-02-14', 7999, 56296, 3871, 46264, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59110, '2022-02-14', 7659, 56297, 3871, NULL, '1.0000', '5.9700', '5.9700', '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 (59111, '2022-02-14', 8596, 56298, 3871, NULL, '1.0000', '17.0000', '17.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 (59112, '2022-02-14', 7507, 56299, 3871, NULL, '3.0000', '6.5000', '6.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 (59113, '2022-02-14', 7781, 56300, 3871, NULL, '2.0000', '4.2500', '4.2500', '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 (59114, '2022-02-14', 8000, 56301, 3871, NULL, '4.0000', '384.5041', '384.5041', '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 (59115, '2022-02-14', 9273, 56302, 3871, NULL, '2.0000', '0.3500', '0.3500', '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 (59116, '2022-02-14', 7820, 56303, 3871, NULL, '2.0000', '-1586.6000', '-1586.6000', '20.5000', '20.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 (59117, '2022-02-14', 9556, 56304, 3871, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59118, '2022-02-14', 9160, 56305, 3871, NULL, '1.0000', '41.6640', '41.6640', '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 (59119, '2022-02-14', 8430, 56306, 3871, 50287, '1.0000', '32.1050', '32.1050', '42.5000', '42.5000', '1.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59120, '2022-02-14', 7786, 56307, 3871, NULL, '1.0000', '22.0000', '22.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 (59121, '2022-02-14', 9214, 56308, 3871, NULL, '2.0000', '9.4452', '9.4452', '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 (59122, '2022-02-14', 8415, 56309, 3871, 50304, '3.0000', '4.3750', '4.3750', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59123, '2022-02-14', 2616, 56310, 3871, 45807, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59124, '2022-02-14', 2467, 56311, 3871, 45794, '1.0000', '-33.6600', '-33.6600', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59125, '2022-02-14', 7709, 56312, 3871, NULL, '2.0000', '46.8129', '46.8129', '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 (59126, '2022-02-14', 7744, 56313, 3871, NULL, '1.0000', '2.7400', '2.7400', '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 (59127, '2022-02-14', 9791, 56314, 3871, 49771, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '144.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59128, '2022-02-14', 8415, 56315, 3871, 50304, '1.0000', '4.3750', '4.3750', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59129, '2022-02-14', 1837, 56316, 3871, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59130, '2022-02-14', 9576, 56317, 3871, 46894, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59131, '2022-02-14', 9755, 56318, 3871, 46932, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '5.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59132, '2022-02-14', 8942, 56319, 3871, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59133, '2022-02-14', 7741, 56320, 3871, 46201, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59134, '2022-02-14', 7459, 56321, 3871, NULL, '4.0000', '674.5400', '674.5400', '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 (59135, '2022-02-14', 8415, 56322, 3871, 50304, '2.0000', '4.3750', '4.3750', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59136, '2022-02-14', 7317, 56323, 3871, 50038, '1.0000', '11.1787', '11.1787', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59137, '2022-02-14', 9761, 56324, 3871, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59138, '2022-02-14', 7641, 56325, 3871, NULL, '1.0000', '-543.6034', '-543.6034', '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 (59139, '2022-02-14', 8714, 56326, 3871, 46686, '1.0000', '9.3473', '9.3473', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59140, '2022-02-14', 7472, 56327, 3871, NULL, '1.0000', '-4.3873', '-4.3873', '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 (59141, '2022-02-14', 8415, 56328, 3871, 50304, '2.0000', '4.3750', '4.3750', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59142, '2022-02-14', 9095, 56329, 3871, NULL, '1.0000', '9.7084', '9.7084', '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 (59143, '2022-02-14', 7641, 56330, 3871, NULL, '1.0000', '-543.6034', '-543.6034', '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 (59144, '2022-02-14', 7564, 56331, 3871, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59145, '2022-02-14', 9734, 56332, 3872, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59146, '2022-02-14', 2135, 56333, 3872, 16894, '1.0000', '1.2424', '1.2424', '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 (59147, '2022-02-14', 2643, 56334, 3872, 44038, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '19.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59148, '2022-02-14', 1602, 56335, 3872, 46758, '1.0000', '6.9543', '6.9543', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59149, '2022-02-14', 1845, 56336, 3872, 49540, '1.0000', '20.0081', '20.0081', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59150, '2022-02-14', 7482, 56337, 3872, NULL, '1.0000', '3.0500', '3.0500', '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 (59151, '2022-02-14', 1672, 56338, 3872, 46717, '24.0000', '23.6444', '23.6444', '4.2000', '4.2000', '6.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59152, '2022-02-14', 2416, 56339, 3872, 49490, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59153, '2022-02-14', 7532, 56340, 3872, NULL, '1.0000', '20.6000', '20.6000', '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 (59154, '2022-02-14', 1845, 56341, 3872, 49540, '1.0000', '20.0081', '20.0081', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59155, '2022-02-14', 7482, 56342, 3872, NULL, '1.0000', '3.0500', '3.0500', '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 (59156, '2022-02-14', 1667, 56343, 3872, 49550, '1.0000', '37.4709', '37.4709', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59157, '2022-02-14', 1855, 56344, 3872, 46773, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59158, '2022-02-14', 2384, 56345, 3872, 46599, '2.0000', '0.3266', '0.3266', '0.7000', '0.7000', '47.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59159, '2022-02-14', 8756, 56346, 3872, 42940, '1.0000', '7.2778', '7.2778', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59160, '2022-02-14', 2699, 56347, 3872, 45624, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59161, '2022-02-14', 9740, 56348, 3872, 46037, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59162, '2022-02-14', 1339, 56349, 3872, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59163, '2022-02-14', 1890, 56350, 3872, 5496, '6.0000', '3.3000', '3.3000', '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 (59164, '2022-02-14', 2916, 56351, 3872, 49229, '1.0000', '14.3789', '14.3789', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59165, '2022-02-14', 7573, 56352, 3872, NULL, '1.0000', '5.5000', '5.5000', '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 (59166, '2022-02-14', 2135, 56353, 3872, 16894, '1.0000', '1.2424', '1.2424', '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 (59167, '2022-02-14', 9728, 56354, 3872, NULL, '1.0000', '5.4000', '5.4000', '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 (59168, '2022-02-14', 9734, 56355, 3872, 46028, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59169, '2022-02-14', 1339, 56356, 3872, 44501, '1.0000', '1.7611', '1.7611', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59170, '2022-02-14', 2135, 56357, 3873, NULL, '1.0000', '2.4732', '2.4732', '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 (59171, '2022-02-14', 2506, 56358, 3873, NULL, '1.0000', '4.2640', '4.2640', '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 (59172, '2022-02-14', 2109, 56359, 3873, 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 (59173, '2022-02-14', 2342, 56360, 3873, 49330, '1.0000', '1.9292', '1.9292', '2.7000', '2.7000', '24.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59174, '2022-02-14', 9750, 56361, 3873, NULL, '1.0000', '3.3000', '3.3000', '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 (59175, '2022-02-14', 2650, 56362, 3873, NULL, '1.0000', '8.0748', '8.0748', '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 (59176, '2022-02-14', 7411, 56363, 3873, NULL, '1.0000', '1.3013', '1.3013', '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 (59177, '2022-02-14', 9729, 56364, 3873, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59178, '2022-02-14', 9508, 56365, 3873, 48645, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59179, '2022-02-14', 1342, 56366, 3873, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59180, '2022-02-14', 1912, 56367, 3873, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59181, '2022-02-14', 1646, 56368, 3873, 49372, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59182, '2022-02-14', 1731, 56369, 3873, 48966, '1.0000', '19.7600', '19.7600', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59183, '2022-02-14', 2295, 56370, 3873, 48904, '3.0000', '1.1161', '1.1161', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59184, '2022-02-14', 7411, 56371, 3873, NULL, '1.0000', '1.3013', '1.3013', '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 (59185, '2022-02-14', 9806, 56372, 3873, 50121, '1.0000', '1.0800', '1.0800', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59186, '2022-02-14', 2228, 56373, 3873, NULL, '1.0000', '27.0000', '27.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 (59187, '2022-02-14', 2971, 56374, 3873, 22552, '1.0000', '3.5000', '3.5000', '6.5000', '6.5000', '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 (59188, '2022-02-14', 8756, 56375, 3873, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59189, '2022-02-14', 1818, 56376, 3873, 49373, '1.0000', '16.1640', '16.1640', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59190, '2022-02-14', 1810, 56377, 3873, 48681, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59191, '2022-02-14', 2318, 56378, 3873, 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 (59192, '2022-02-14', 2237, 56379, 3873, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59193, '2022-02-14', 1528, 56380, 3873, 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 (59194, '2022-02-14', 1564, 56381, 3873, 50077, '4.0000', '3.4988', '3.4988', '4.0000', '4.0000', '67.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59195, '2022-02-14', 1690, 56382, 3873, 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 (59196, '2022-02-14', 2295, 56383, 3873, 48904, '3.0000', '1.1161', '1.1161', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59197, '2022-02-14', 7411, 56384, 3873, NULL, '1.0000', '1.3013', '1.3013', '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 (59198, '2022-02-14', 2341, 56385, 3873, 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 (59199, '2022-02-14', 2821, 56386, 3873, NULL, '1.0000', '3.4701', '3.4701', '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 (59200, '2022-02-14', 7411, 56387, 3873, NULL, '1.0000', '1.3013', '1.3013', '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 (59201, '2022-02-14', 1855, 56388, 3873, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59202, '2022-02-14', 1590, 56389, 3873, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59203, '2022-02-14', 1425, 56390, 3874, 49992, '1.0000', '7.0572', '7.0572', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59204, '2022-02-14', 7952, 56391, 3875, 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 (59205, '2022-02-14', 1425, 56392, 3876, 50262, '1.0000', '7.6655', '7.6655', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59206, '2022-02-14', 7411, 56393, 3876, NULL, '1.0000', '1.3013', '1.3013', '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 (59207, '2022-02-14', 2237, 56394, 3876, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59208, '2022-02-14', 3044, 56395, 3877, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '36.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 (59209, '2022-02-14', 8763, 56396, 3877, 44148, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59210, '2022-02-14', 9750, 56397, 3877, NULL, '1.0000', '3.3000', '3.3000', '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 (59211, '2022-02-14', 2242, 56398, 3877, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59212, '2022-02-14', 2169, 56399, 3877, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59213, '2022-02-15', 1499, 56400, 3878, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '45.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59214, '2022-02-15', 1519, 56401, 3878, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59215, '2022-02-15', 2941, 56402, 3878, NULL, '1.0000', '2.6600', '2.6600', '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 (59216, '2022-02-15', 2169, 56403, 3878, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59217, '2022-02-15', 1912, 56404, 3878, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59218, '2022-02-15', 2761, 56405, 3878, 39866, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59219, '2022-02-15', 2660, 56406, 3878, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59220, '2022-02-15', 1564, 56407, 3878, 50077, '2.0000', '3.4988', '3.4988', '4.0000', '4.0000', '65.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59221, '2022-02-15', 1912, 56408, 3878, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59222, '2022-02-15', 2014, 56409, 3878, 49634, '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 (59223, '2022-02-15', 9479, 56410, 3878, 32541, '1.0000', '3.0000', '3.0000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59224, '2022-02-15', 7586, 56411, 3878, NULL, '1.0000', '4.1700', '4.1700', '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 (59225, '2022-02-15', 1410, 56412, 3878, NULL, '1.0000', '1.8562', '1.8562', '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 (59226, '2022-02-15', 1946, 56413, 3878, NULL, '1.0000', '1.5500', '1.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 (59227, '2022-02-15', 7741, 56414, 3878, NULL, '1.0000', '0.5684', '0.5684', '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 (59228, '2022-02-15', 9778, 56415, 3878, 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 (59229, '2022-02-15', 1602, 56416, 3878, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '23.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59230, '2022-02-15', 2574, 56417, 3878, 45644, '2.0000', '1.1133', '1.1133', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59231, '2022-02-15', 1519, 56418, 3879, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59232, '2022-02-15', 2633, 56419, 3879, 50265, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59233, '2022-02-15', 2284, 56420, 3879, 49646, '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 (59234, '2022-02-15', 8454, 56421, 3880, 48202, '1.0000', '4.1722', '4.1722', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59235, '2022-02-15', 8677, 56422, 3880, NULL, '2.0000', '292.4641', '292.4641', '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 (59236, '2022-02-15', 7577, 56423, 3881, NULL, '1.0000', '0.5900', '0.5900', '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 (59237, '2022-02-15', 7478, 56424, 3881, 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 (59238, '2022-02-15', 9796, 56425, 3881, 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 (59239, '2022-02-15', 8596, 56426, 3881, 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 (59240, '2022-02-15', 8430, 56427, 3881, NULL, '1.0000', '32.0800', '32.0800', '42.5000', '42.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59241, '2022-02-15', 7428, 56428, 3881, NULL, '2.0000', '2.6100', '2.6100', '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 (59242, '2022-02-15', 7762, 56429, 3881, NULL, '1.0000', '1.5000', '1.5000', '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 (59243, '2022-02-15', 7342, 56430, 3881, NULL, '1.0000', '15.6000', '15.6000', '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 (59244, '2022-02-15', 1544, 56431, 3881, NULL, '1.0000', '18.2100', '18.2100', '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 (59245, '2022-02-15', 7444, 56432, 3881, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59246, '2022-02-15', 9726, 56433, 3881, 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 (59247, '2022-02-15', 8852, 56434, 3881, NULL, '10.0000', '15.6000', '15.6000', '0.7000', '0.7000', '-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 (59248, '2022-02-15', 2279, 56435, 3881, 2939, '-17.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 (59249, '2022-02-15', 2279, 56435, 3881, NULL, '18.0000', '2.7000', '2.7000', '4.0000', '4.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 (59250, '2022-02-15', 7514, 56436, 3881, NULL, '1.0000', '2.2500', '2.2500', '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 (59251, '2022-02-15', 7641, 56437, 3881, NULL, '1.0000', '1.9000', '1.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 (59252, '2022-02-15', 2001, 56438, 3881, 3169, '-5.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 (59253, '2022-02-15', 2001, 56438, 3881, NULL, '6.0000', '2.5000', '2.5000', '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 (59254, '2022-02-15', 8067, 56439, 3881, NULL, '1.0000', '4.6900', '4.6900', '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 (59255, '2022-02-15', 7473, 56440, 3881, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (59256, '2022-02-15', 1400, 56441, 3881, NULL, '1.0000', '22.0000', '22.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59257, '2022-02-15', 7925, 56442, 3881, NULL, '1.0000', '8.3000', '8.3000', '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 (59258, '2022-02-15', 8408, 56443, 3881, 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 (59259, '2022-02-15', 7711, 56444, 3881, NULL, '1.0000', '35.6300', '35.6300', '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 (59260, '2022-02-15', 8063, 56445, 3881, NULL, '1.0000', '1.6000', '1.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 (59261, '2022-02-15', 7558, 56446, 3881, 33814, '10.0000', '1.9700', '1.9700', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59262, '2022-02-15', 8548, 56447, 3881, NULL, '1.0000', '12.0000', '12.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 (59263, '2022-02-15', 9150, 56448, 3881, NULL, '1.0000', '19.8000', '19.8000', '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 (59264, '2022-02-15', 1602, 56449, 3882, 5897, '-107.0000', '6.7859', '6.7859', '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 (59265, '2022-02-15', 1602, 56449, 3882, NULL, '108.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-108.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59266, '2022-02-15', 7586, 56450, 3882, NULL, '1.0000', '4.1700', '4.1700', '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 (59267, '2022-02-15', 1592, 56451, 3882, 6223, '-9.0000', '35.9000', '35.9000', '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 (59268, '2022-02-15', 1592, 56451, 3882, NULL, '10.0000', '35.9000', '35.9000', '47.0000', '47.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 (59269, '2022-02-15', 1409, 56452, 3882, NULL, '2.0000', '13.0000', '13.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 (59270, '2022-02-15', 2521, 56453, 3882, 6035, '-3.0000', '8.8000', '8.8000', '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 (59271, '2022-02-15', 2521, 56453, 3882, NULL, '4.0000', '8.8000', '8.8000', '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 (59272, '2022-02-15', 1845, 56454, 3882, 6222, '-17.0000', '19.5000', '19.5000', '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 (59273, '2022-02-15', 1845, 56454, 3882, NULL, '18.0000', '19.5000', '19.5000', '26.5000', '26.5000', '-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 (59274, '2022-02-15', 2221, 56455, 3882, 4154, '-53.0000', '14.4737', '14.4737', '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 (59275, '2022-02-15', 2221, 56455, 3882, NULL, '54.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59276, '2022-02-15', 2233, 56456, 3882, 2777, '-23.0000', '19.0200', '19.0200', '29.5000', '29.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 (59277, '2022-02-15', 2233, 56456, 3882, NULL, '24.0000', '19.0200', '19.0200', '29.5000', '29.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 (59278, '2022-02-15', 2221, 56457, 3882, 4154, '-53.0000', '14.4737', '14.4737', '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 (59279, '2022-02-15', 2221, 56457, 3882, NULL, '54.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59280, '2022-02-15', 1650, 56458, 3882, 3221, '-12.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 (59281, '2022-02-15', 1650, 56458, 3882, NULL, '13.0000', '14.8000', '14.8000', '20.0000', '20.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 (59282, '2022-02-15', 9794, 56459, 3882, NULL, '1.0000', '1.0800', '1.0800', '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 (59283, '2022-02-15', 7586, 56460, 3882, NULL, '1.0000', '4.1700', '4.1700', '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 (59284, '2022-02-15', 1612, 56461, 3882, 8732, '-3.0000', '1.6000', '1.6000', '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 (59285, '2022-02-15', 1612, 56461, 3882, NULL, '4.0000', '1.6000', '1.6000', '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 (59286, '2022-02-15', 1577, 56462, 3883, NULL, '1.0000', '2.3271', '2.3271', '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 (59287, '2022-02-15', 1755, 56463, 3883, 48488, '1.0000', '5.8128', '5.8128', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59288, '2022-02-15', 1855, 56464, 3883, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59289, '2022-02-15', 1810, 56465, 3883, 48681, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59290, '2022-02-15', 7411, 56466, 3883, NULL, '1.0000', '1.3013', '1.3013', '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 (59291, '2022-02-15', 3030, 56467, 3883, 23701, '1.0000', '9.0000', '9.0000', '12.0000', '12.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 (59292, '2022-02-15', 2315, 56468, 3883, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '176.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59293, '2022-02-15', 2992, 56469, 3883, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59294, '2022-02-15', 9715, 56470, 3883, 49884, '1.0000', '9.4000', '9.4000', '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 (59295, '2022-02-15', 7411, 56471, 3883, NULL, '1.0000', '1.3013', '1.3013', '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 (59296, '2022-02-15', 1771, 56472, 3883, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59297, '2022-02-15', 1824, 56473, 3883, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59298, '2022-02-15', 7913, 56474, 3883, NULL, '2.0000', '2.5500', '2.5500', '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 (59299, '2022-02-15', 9778, 56475, 3883, 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 (59300, '2022-02-15', 8763, 56476, 3883, 44148, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59301, '2022-02-15', 1785, 56477, 3883, 50245, '1.0000', '15.6346', '15.6346', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59302, '2022-02-15', 8767, 56478, 3883, NULL, '1.0000', '6.9975', '6.9975', '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 (59303, '2022-02-15', 7609, 56479, 3883, NULL, '1.0000', '4.3300', '4.3300', '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 (59304, '2022-02-15', 2031, 56480, 3883, 49683, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59305, '2022-02-15', 7411, 56481, 3883, NULL, '1.0000', '1.3013', '1.3013', '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 (59306, '2022-02-15', 1425, 56482, 3883, 50262, '1.0000', '7.6655', '7.6655', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59307, '2022-02-15', 7411, 56483, 3883, NULL, '1.0000', '1.3013', '1.3013', '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 (59308, '2022-02-15', 9729, 56484, 3883, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59309, '2022-02-15', 8208, 56485, 3883, NULL, '2.0000', '33.0000', '33.0000', '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 (59310, '2022-02-15', 3025, 56486, 3883, 44157, '1.0000', '2.9545', '2.9545', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59311, '2022-02-15', 2624, 56487, 3883, 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 (59312, '2022-02-15', 2414, 56488, 3883, 48492, '2.0000', '3.9438', '3.9438', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59313, '2022-02-15', 7798, 56489, 3883, NULL, '1.0000', '4.6200', '4.6200', '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 (59314, '2022-02-15', 9482, 56490, 3883, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59315, '2022-02-15', 9482, 56490, 3883, 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 (59316, '2022-02-15', 3030, 56491, 3883, 23701, '1.0000', '9.0000', '9.0000', '12.0000', '12.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 (59317, '2022-02-15', 7514, 56492, 3883, NULL, '1.0000', '2.2500', '2.2500', '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 (59318, '2022-02-15', 9480, 56493, 3883, 44436, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59319, '2022-02-15', 9794, 56494, 3883, NULL, '1.0000', '1.0800', '1.0800', '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 (59320, '2022-02-15', 9424, 56495, 3883, NULL, '1.0000', '68.0000', '68.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 (59321, '2022-02-15', 9482, 56496, 3883, 32547, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59322, '2022-02-15', 9482, 56496, 3883, NULL, '2.0000', '0.5000', '0.5000', '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 (59323, '2022-02-15', 1339, 56497, 3884, 48361, '1.0000', '1.6199', '1.6199', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59324, '2022-02-15', 7675, 56498, 3884, NULL, '1.0000', '84.8590', '84.8590', '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 (59325, '2022-02-15', 9747, 56499, 3884, 46923, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59326, '2022-02-15', 7781, 56500, 3884, NULL, '3.0000', '4.2500', '4.2500', '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 (59327, '2022-02-15', 7532, 56501, 3884, NULL, '1.0000', '1.9999', '1.9999', '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 (59328, '2022-02-15', 7491, 56502, 3884, 43071, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59329, '2022-02-15', 7489, 56503, 3884, 48374, '1.0000', '3.3563', '3.3563', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59330, '2022-02-15', 7642, 56504, 3885, 46653, '1.0000', '5.9200', '5.9200', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59331, '2022-02-15', 7959, 56505, 3885, NULL, '6.0000', '9.6000', '9.6000', '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 (59332, '2022-02-15', 2315, 56506, 3885, 48004, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '1.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59333, '2022-02-15', 1577, 56507, 3885, NULL, '1.0000', '2.7885', '2.7885', '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 (59334, '2022-02-15', 9556, 56508, 3885, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59335, '2022-02-15', 7886, 56509, 3885, NULL, '1.0000', '6.7841', '6.7841', '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 (59336, '2022-02-15', 8649, 56510, 3885, 38156, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59337, '2022-02-15', 7788, 56511, 3885, 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 (59338, '2022-02-15', 7708, 56512, 3885, NULL, '1.0000', '2.3100', '2.3100', '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 (59339, '2022-02-15', 8067, 56513, 3885, NULL, '1.0000', '15.5700', '15.5700', '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 (59340, '2022-02-15', 1367, 56514, 3885, NULL, '10.0000', '49.2100', '49.2100', '7.0000', '7.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 (59341, '2022-02-15', 8203, 56515, 3885, NULL, '2.0000', '4.7385', '4.7385', '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 (59342, '2022-02-15', 1760, 56516, 3885, 46907, '2.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59343, '2022-02-15', 2906, 56517, 3885, 49741, '1.0000', '2.7563', '2.7563', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59344, '2022-02-15', 8032, 56518, 3885, 50135, '1.0000', '-0.1309', '-0.1309', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59345, '2022-02-15', 7623, 56519, 3885, 37383, '1.0000', '34.7700', '34.7700', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59346, '2022-02-15', 7704, 56520, 3885, NULL, '3.0000', '-1.5625', '-1.5625', '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 (59347, '2022-02-15', 9272, 56521, 3885, NULL, '1.0000', '3.1000', '3.1000', '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 (59348, '2022-02-15', 7518, 56522, 3885, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (59349, '2022-02-15', 9094, 56523, 3885, NULL, '1.0000', '5.7002', '5.7002', '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 (59350, '2022-02-15', 8196, 56524, 3885, NULL, '1.0000', '53.3100', '53.3100', '42.5000', '42.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59351, '2022-02-15', 7947, 56525, 3885, NULL, '5.0000', '14.4400', '14.4400', '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 (59352, '2022-02-15', 7780, 56526, 3885, NULL, '1.0000', '-8.7461', '-8.7461', '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 (59353, '2022-02-15', 7952, 56527, 3885, NULL, '1.0000', '62.3792', '62.3792', '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 (59354, '2022-02-15', 1631, 56528, 3885, 45318, '2.0000', '-28.0260', '-28.0260', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59355, '2022-02-15', 1631, 56528, 3885, NULL, '4.0000', '-28.0260', '-28.0260', '18.0000', '18.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 (59356, '2022-02-15', 8044, 56529, 3885, NULL, '1.0000', '1.5000', '1.5000', '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 (59357, '2022-02-15', 2761, 56530, 3885, 46917, '2.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59358, '2022-02-15', 7820, 56531, 3885, NULL, '1.0000', '-1586.6000', '-1586.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59359, '2022-02-15', 8011, 56532, 3885, NULL, '1.0000', '0.9500', '0.9500', '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 (59360, '2022-02-15', 8308, 56533, 3885, NULL, '1.0000', '14.1857', '14.1857', '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 (59361, '2022-02-15', 2315, 56534, 3885, 48004, '2.0000', '0.8863', '0.8863', '0.8000', '0.8000', '0.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59362, '2022-02-15', 2287, 56535, 3885, NULL, '4.0000', '2.3000', '2.3000', '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 (59363, '2022-02-15', 7577, 56536, 3885, NULL, '1.0000', '0.5900', '0.5900', '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 (59364, '2022-02-15', 9179, 56537, 3885, 44479, '1.0000', '12.0000', '12.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59365, '2022-02-15', 7953, 56538, 3885, NULL, '1.0000', '6.0000', '6.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 (59366, '2022-02-15', 7725, 56539, 3885, NULL, '1.0000', '6.2371', '6.2371', '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 (59367, '2022-02-15', 7621, 56540, 3885, 44735, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59368, '2022-02-15', 9804, 56541, 3885, 50150, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59369, '2022-02-15', 1837, 56542, 3885, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59370, '2022-02-15', 8704, 56543, 3885, NULL, '1.0000', '6.0500', '6.0500', '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 (59371, '2022-02-15', 8949, 56544, 3885, 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 (59372, '2022-02-15', 8920, 56545, 3885, NULL, '1.0000', '-0.9000', '-0.9000', '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 (59373, '2022-02-15', 9286, 56546, 3885, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59374, '2022-02-15', 8039, 56547, 3885, NULL, '1.0000', '-393.2876', '-393.2876', '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 (59375, '2022-02-15', 9274, 56548, 3885, NULL, '1.0000', '3.5638', '3.5638', '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 (59376, '2022-02-15', 2109, 56549, 3886, 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 (59377, '2022-02-15', 2167, 56550, 3886, NULL, '1.0000', '2.1310', '2.1310', '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 (59378, '2022-02-15', 7317, 56551, 3886, NULL, '1.0000', '19.5500', '19.5500', '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 (59379, '2022-02-15', 8177, 56552, 3886, NULL, '1.0000', '12.9000', '12.9000', '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 (59380, '2022-02-15', 2237, 56553, 3886, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59381, '2022-02-15', 9729, 56554, 3886, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59382, '2022-02-15', 7411, 56555, 3886, NULL, '1.0000', '1.3013', '1.3013', '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 (59383, '2022-02-15', 1855, 56556, 3886, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59384, '2022-02-15', 2020, 56557, 3886, NULL, '1.0000', '10.1614', '10.1614', '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 (59385, '2022-02-15', 2167, 56558, 3886, NULL, '1.0000', '2.1310', '2.1310', '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 (59386, '2022-02-15', 7411, 56559, 3886, NULL, '1.0000', '1.3013', '1.3013', '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 (59387, '2022-02-15', 1620, 56560, 3886, 50079, '2.0000', '2.2300', '2.2300', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59388, '2022-02-15', 7641, 56561, 3886, NULL, '1.0000', '1.9000', '1.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 (59389, '2022-02-15', 7411, 56562, 3886, NULL, '1.0000', '1.3013', '1.3013', '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 (59390, '2022-02-15', 9794, 56563, 3886, NULL, '1.0000', '1.0800', '1.0800', '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 (59391, '2022-02-15', 2353, 56564, 3886, NULL, '1.0000', '3.9633', '3.9633', '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 (59392, '2022-02-15', 7524, 56565, 3886, NULL, '1.0000', '11.9500', '11.9500', '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 (59393, '2022-02-15', 2523, 56566, 3886, 23979, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '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 (59394, '2022-02-15', 2642, 56567, 3886, 49615, '1.0000', '9.3605', '9.3605', '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 (59395, '2022-02-15', 7355, 56568, 3886, 39797, '1.0000', '18.6310', '18.6310', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59396, '2022-02-15', 9747, 56569, 3886, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59397, '2022-02-15', 1586, 56570, 3886, 48584, '1.0000', '57.4965', '57.4965', '69.0000', '69.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59398, '2022-02-15', 7500, 56571, 3886, 44160, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59399, '2022-02-15', 2315, 56572, 3886, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '174.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59400, '2022-02-15', 1519, 56573, 3886, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59401, '2022-02-15', 1410, 56574, 3886, NULL, '1.0000', '1.8562', '1.8562', '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 (59402, '2022-02-15', 1590, 56575, 3886, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59403, '2022-02-15', 1493, 56576, 3886, 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 (59404, '2022-02-15', 1519, 56577, 3886, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59405, '2022-02-15', 1504, 56578, 3887, 49558, '10.0000', '2.5896', '2.5896', '2.4000', '2.4000', '40.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59406, '2022-02-15', 2437, 56579, 3887, 44491, '1.0000', '88.0000', '88.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59407, '2022-02-15', 2169, 56580, 3887, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59408, '2022-02-15', 7506, 56581, 3887, NULL, '2.0000', '15.0000', '15.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 (59409, '2022-02-15', 7459, 56582, 3887, 50008, '10.0000', '2.3500', '2.3500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59410, '2022-02-15', 2254, 56583, 3887, 49997, '1.0000', '17.8763', '17.8763', '23.2300', '23.2300', '2.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59411, '2022-02-15', 7334, 56584, 3887, NULL, '2.0000', '8.1600', '8.1600', '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 (59412, '2022-02-15', 2408, 56585, 3887, 40209, '1.0000', '8.9516', '8.9516', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59413, '2022-02-15', 1310, 56586, 3887, 46075, '3.0000', '0.4035', '0.4035', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59414, '2022-02-15', 2237, 56587, 3887, 46708, '1.0000', '1.4654', '1.4654', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59415, '2022-02-15', 1837, 56588, 3887, 46752, '1.0000', '0.4981', '0.4981', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59416, '2022-02-15', 2221, 56589, 3887, 49454, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '12.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59417, '2022-02-15', 1488, 56590, 3887, 42962, '1.0000', '11.8182', '11.8182', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59418, '2022-02-15', 7391, 56591, 3887, 48747, '1.0000', '15.6000', '15.6000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59419, '2022-02-15', 2858, 56592, 3887, 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 (59420, '2022-02-15', 1812, 56593, 3887, 49993, '1.0000', '7.9738', '7.9738', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59421, '2022-02-15', 8965, 56594, 3888, NULL, '1.0000', '52.9900', '52.9900', '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 (59422, '2022-02-15', 8065, 56595, 3888, NULL, '1.0000', '32.0000', '32.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 (59423, '2022-02-15', 7333, 56596, 3888, NULL, '2.0000', '13.5000', '13.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 (59424, '2022-02-15', 2761, 56597, 3888, 46917, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59425, '2022-02-15', 7317, 56598, 3888, 50038, '1.0000', '11.1787', '11.1787', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59426, '2022-02-15', 7635, 56599, 3888, 46904, '1.0000', '14.8224', '14.8224', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59427, '2022-02-15', 7357, 56600, 3888, NULL, '1.0000', '11.7500', '11.7500', '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 (59428, '2022-02-15', 7750, 56601, 3888, NULL, '1.0000', '22.7100', '22.7100', '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 (59429, '2022-02-15', 7564, 56602, 3888, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59430, '2022-02-15', 2965, 56603, 3888, NULL, '2.0000', '7.5920', '7.5920', '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 (59431, '2022-02-15', 7380, 56604, 3888, NULL, '1.0000', '8.0000', '8.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 (59432, '2022-02-15', 9692, 56605, 3888, NULL, '1.0000', '10.4500', '10.4500', '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 (59433, '2022-02-15', 7913, 56606, 3888, NULL, '1.0000', '2.5500', '2.5500', '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 (59434, '2022-02-15', 1760, 56607, 3888, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59435, '2022-02-15', 2965, 56608, 3888, NULL, '2.0000', '7.5920', '7.5920', '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 (59436, '2022-02-15', 8221, 56609, 3888, NULL, '1.0000', '3.9800', '3.9800', '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 (59437, '2022-02-15', 8872, 56610, 3888, NULL, '1.0000', '3.0000', '3.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 (59438, '2022-02-15', 8963, 56611, 3889, 39855, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59439, '2022-02-15', 8033, 56612, 3889, 49366, '1.0000', '18.1074', '18.1074', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59440, '2022-02-15', 7533, 56613, 3889, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59441, '2022-02-15', 2992, 56614, 3889, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59442, '2022-02-15', 7483, 56615, 3889, NULL, '1.0000', '0.4200', '0.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 (59443, '2022-02-15', 9815, 56616, 3889, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '19.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59444, '2022-02-15', 7411, 56617, 3889, NULL, '1.0000', '1.3013', '1.3013', '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 (59445, '2022-02-15', 7509, 56618, 3890, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59446, '2022-02-15', 1626, 56619, 3891, 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 (59447, '2022-02-15', 9729, 56620, 3891, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59448, '2022-02-15', 1810, 56621, 3891, 48681, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59449, '2022-02-15', 9413, 56622, 3891, 34036, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59450, '2022-02-15', 7641, 56623, 3891, NULL, '1.0000', '1.9000', '1.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 (59451, '2022-02-15', 1871, 56624, 3891, 50241, '1.0000', '2.2081', '2.2081', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59452, '2022-02-16', 1736, 56625, 3892, 7382, '-3.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59453, '2022-02-16', 1736, 56625, 3892, NULL, '4.0000', '-6.2282', '-6.2282', '42.0000', '42.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 (59454, '2022-02-16', 2178, 56626, 3892, 7862, '-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 (59455, '2022-02-16', 2178, 56626, 3892, 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 (59456, '2022-02-16', 2035, 56627, 3892, 6388, '-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 (59457, '2022-02-16', 2035, 56627, 3892, 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 (59458, '2022-02-16', 1420, 56628, 3892, 20658, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '5.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 (59459, '2022-02-16', 2073, 56629, 3892, 22247, '2.0000', '2.3000', '2.3000', '3.0000', '3.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 (59460, '2022-02-16', 2366, 56630, 3892, 3833, '-36.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 (59461, '2022-02-16', 2366, 56630, 3892, NULL, '38.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59462, '2022-02-16', 1452, 56631, 3892, 928, '2.0000', '45.6150', '45.6150', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59463, '2022-02-16', 2221, 56632, 3892, 4154, '-55.0000', '14.4737', '14.4737', '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 (59464, '2022-02-16', 2221, 56632, 3892, NULL, '56.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59465, '2022-02-16', 7411, 56633, 3892, NULL, '1.0000', '1.3500', '1.3500', '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 (59466, '2022-02-16', 1411, 56634, 3892, NULL, '1.0000', '25.9000', '25.9000', '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 (59467, '2022-02-16', 2904, 56635, 3892, NULL, '1.0000', '19.6100', '19.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 (59468, '2022-02-16', 9734, 56636, 3892, NULL, '1.0000', '0.3200', '0.3200', '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 (59469, '2022-02-16', 7459, 56637, 3893, NULL, '4.0000', '-6.1729', '-6.1729', '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 (59470, '2022-02-16', 2167, 56638, 3893, NULL, '1.0000', '2.1310', '2.1310', '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 (59471, '2022-02-16', 9762, 56639, 3893, 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 (59472, '2022-02-16', 2169, 56640, 3893, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59473, '2022-02-16', 7560, 56641, 3893, NULL, '1.0000', '90.1600', '90.1600', '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 (59474, '2022-02-16', 1863, 56642, 3893, 50237, '2.0000', '1.3829', '1.3829', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59475, '2022-02-16', 9748, 56643, 3893, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59476, '2022-02-16', 2948, 56644, 3893, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59477, '2022-02-16', 1743, 56645, 3893, 29646, '1.0000', '4.6550', '4.6550', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59478, '2022-02-16', 2726, 56646, 3893, NULL, '1.0000', '2.7004', '2.7004', '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 (59479, '2022-02-16', 8079, 56647, 3893, NULL, '1.0000', '14.3600', '14.3600', '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 (59480, '2022-02-16', 2066, 56648, 3893, NULL, '4.0000', '0.5100', '0.5100', '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 (59481, '2022-02-16', 2237, 56649, 3893, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59482, '2022-02-16', 2379, 56650, 3893, NULL, '1.0000', '1.0877', '1.0877', '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 (59483, '2022-02-16', 1336, 56651, 3893, 19336, '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 (59484, '2022-02-16', 1321, 56652, 3893, NULL, '1.0000', '4.0234', '4.0234', '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 (59485, '2022-02-16', 8208, 56653, 3893, NULL, '1.0000', '33.0000', '33.0000', '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 (59486, '2022-02-16', 2738, 56654, 3893, 19348, '1.0000', '7.6000', '7.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 (59487, '2022-02-16', 8638, 56655, 3893, NULL, '1.0000', '0.5100', '0.5100', '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 (59488, '2022-02-16', 1580, 56656, 3893, 48178, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59489, '2022-02-16', 1665, 56657, 3893, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59490, '2022-02-16', 7917, 56658, 3893, NULL, '8.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (59491, '2022-02-16', 7379, 56659, 3893, NULL, '1.0000', '12.5100', '12.5100', '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 (59492, '2022-02-16', 2020, 56660, 3893, NULL, '1.0000', '10.1614', '10.1614', '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 (59493, '2022-02-16', 8454, 56661, 3893, NULL, '1.0000', '4.1722', '4.1722', '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 (59494, '2022-02-16', 1863, 56662, 3893, 50237, '2.0000', '1.3829', '1.3829', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59495, '2022-02-16', 1308, 56663, 3893, 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 (59496, '2022-02-16', 2169, 56664, 3893, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59497, '2022-02-16', 2237, 56665, 3893, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59498, '2022-02-16', 9399, 56666, 3894, NULL, '1.0000', '0.9800', '0.9800', '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 (59499, '2022-02-16', 7743, 56667, 3895, NULL, '1.0000', '1.3100', '1.3100', '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 (59500, '2022-02-16', 2408, 56668, 3895, 4497, '-3.0000', '9.3500', '9.3500', '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 (59501, '2022-02-16', 2408, 56668, 3895, NULL, '4.0000', '9.3500', '9.3500', '12.5000', '12.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 (59502, '2022-02-16', 7562, 56669, 3895, NULL, '2.0000', '5.5300', '5.5300', '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 (59503, '2022-02-16', 7641, 56670, 3895, NULL, '1.0000', '1.9000', '1.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 (59504, '2022-02-16', 7514, 56671, 3895, NULL, '2.0000', '2.2500', '2.2500', '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 (59505, '2022-02-16', 2315, 56672, 3895, 2735, '-161.0000', '0.3300', '0.3300', '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 (59506, '2022-02-16', 2315, 56672, 3895, NULL, '162.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-162.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59507, '2022-02-16', 7473, 56673, 3895, NULL, '3.0000', '0.5300', '0.5300', '0.6000', '0.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 (59508, '2022-02-16', 7671, 56674, 3895, NULL, '2.0000', '15.5000', '15.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 (59509, '2022-02-16', 9556, 56675, 3895, 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 (59510, '2022-02-16', 7411, 56676, 3895, NULL, '1.0000', '1.3500', '1.3500', '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 (59511, '2022-02-16', 7675, 56677, 3895, NULL, '1.0000', '11.4300', '11.4300', '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 (59512, '2022-02-16', 7967, 56678, 3895, NULL, '2.0000', '7.0000', '7.0000', '9.5000', '9.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 (59513, '2022-02-16', 1520, 56679, 3895, 33822, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59514, '2022-02-16', 1760, 56680, 3895, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '48.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 (59515, '2022-02-16', 2733, 56681, 3895, NULL, '1.0000', '7.5000', '7.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 (59516, '2022-02-16', 7514, 56682, 3895, NULL, '1.0000', '2.2500', '2.2500', '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 (59517, '2022-02-16', 2315, 56683, 3895, 2735, '-161.0000', '0.3300', '0.3300', '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 (59518, '2022-02-16', 2315, 56683, 3895, NULL, '162.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-162.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59519, '2022-02-16', 7535, 56684, 3895, NULL, '1.0000', '4.9000', '4.9000', '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 (59520, '2022-02-16', 9784, 56685, 3895, 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 (59521, '2022-02-16', 1501, 56686, 3895, 20590, '1.0000', '2.0500', '2.0500', '3.5000', '3.5000', '6.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 (59522, '2022-02-16', 7527, 56687, 3895, NULL, '3.0000', '0.8900', '0.8900', '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 (59523, '2022-02-16', 1837, 56688, 3895, NULL, '4.0000', '0.9642', '0.9642', '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 (59524, '2022-02-16', 7962, 56689, 3895, 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 (59525, '2022-02-16', 8657, 56690, 3895, NULL, '1.0000', '6.3900', '6.3900', '10.3000', '10.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 (59526, '2022-02-16', 8466, 56691, 3895, NULL, '60.0000', '2.8900', '2.8900', '4.0000', '4.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59527, '2022-02-16', 7453, 56692, 3895, NULL, '1.0000', '28.5000', '28.5000', '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 (59528, '2022-02-16', 7558, 56693, 3895, 33814, '10.0000', '1.9700', '1.9700', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59529, '2022-02-16', 8883, 56694, 3895, NULL, '2.0000', '56.5500', '56.5500', '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 (59530, '2022-02-16', 8721, 56695, 3895, NULL, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59531, '2022-02-16', 7967, 56696, 3895, NULL, '2.0000', '7.0000', '7.0000', '9.5000', '9.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 (59532, '2022-02-16', 7333, 56697, 3895, NULL, '5.0000', '13.5000', '13.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 (59533, '2022-02-16', 7672, 56698, 3895, NULL, '1.0000', '1.0200', '1.0200', '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 (59534, '2022-02-16', 8084, 56699, 3895, NULL, '1.0000', '12.7000', '12.7000', '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 (59535, '2022-02-16', 7989, 56700, 3895, NULL, '1.0000', '37.8200', '37.8200', '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 (59536, '2022-02-16', 1871, 56701, 3896, 49455, '6.0000', '6.7981', '6.7981', '3.0000', '3.0000', '84.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59537, '2022-02-16', 1409, 56702, 3897, 49522, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 383);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59538, '2022-02-16', 9743, 56703, 3897, 50238, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59539, '2022-02-16', 2020, 56704, 3897, NULL, '1.0000', '10.1614', '10.1614', '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 (59540, '2022-02-16', 9177, 56705, 3897, 50249, '5.0000', '0.8600', '0.8600', '1.2000', '1.2000', '45.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59541, '2022-02-16', 2948, 56706, 3897, 48718, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59542, '2022-02-16', 2302, 56707, 3897, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59543, '2022-02-16', 2315, 56708, 3897, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '172.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59544, '2022-02-16', 2109, 56709, 3897, 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 (59545, '2022-02-16', 1912, 56710, 3897, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59546, '2022-02-16', 2169, 56711, 3897, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59547, '2022-02-16', 8033, 56712, 3897, 49366, '1.0000', '18.1074', '18.1074', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59548, '2022-02-16', 2169, 56713, 3897, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59549, '2022-02-16', 1704, 56714, 3897, 48615, '1.0000', '27.2300', '27.2300', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59550, '2022-02-16', 2916, 56715, 3897, NULL, '1.0000', '11.2778', '11.2778', '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 (59551, '2022-02-16', 1771, 56716, 3897, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59552, '2022-02-16', 9794, 56717, 3897, NULL, '2.0000', '1.0800', '1.0800', '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 (59553, '2022-02-16', 2642, 56718, 3897, 49615, '1.0000', '9.3605', '9.3605', '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 (59554, '2022-02-16', 2103, 56719, 3897, 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 (59555, '2022-02-16', 2660, 56720, 3897, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59556, '2022-02-16', 1590, 56721, 3897, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59557, '2022-02-16', 2169, 56722, 3897, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59558, '2022-02-16', 2944, 56723, 3897, NULL, '1.0000', '51.9700', '51.9700', '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 (59559, '2022-02-16', 2274, 56724, 3897, 49315, '1.0000', '3.9800', '3.9800', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59560, '2022-02-16', 9794, 56725, 3897, NULL, '2.0000', '1.0800', '1.0800', '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 (59561, '2022-02-16', 8667, 56726, 3897, NULL, '1.0000', '30.9800', '30.9800', '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 (59562, '2022-02-16', 2999, 56727, 3897, 23108, '1.0000', '13.0000', '13.0000', '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 (59563, '2022-02-16', 2948, 56728, 3897, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59564, '2022-02-16', 1863, 56729, 3897, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59565, '2022-02-16', 9727, 56730, 3897, 47071, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59566, '2022-02-16', 9788, 56731, 3897, 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 (59567, '2022-02-16', 1564, 56732, 3897, 50077, '3.0000', '3.4988', '3.4988', '4.0000', '4.0000', '62.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59568, '2022-02-16', 1667, 56733, 3897, 49364, '2.0000', '13.0832', '13.0832', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59569, '2022-02-16', 1580, 56734, 3897, 48178, '3.0000', '0.9900', '0.9900', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59570, '2022-02-16', 2443, 56735, 3897, 49916, '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 (59571, '2022-02-16', 2486, 56736, 3898, 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 (59572, '2022-02-16', 8188, 56737, 3898, NULL, '1.0000', '6.7000', '6.7000', '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 (59573, '2022-02-16', 7348, 56738, 3898, 29990, '1.0000', '25.3000', '25.3000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59574, '2022-02-16', 7642, 56739, 3898, NULL, '1.0000', '5.9200', '5.9200', '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 (59575, '2022-02-16', 7824, 56740, 3898, NULL, '1.0000', '10.0834', '10.0834', '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 (59576, '2022-02-16', 7825, 56741, 3898, NULL, '1.0000', '-9.1758', '-9.1758', '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 (59577, '2022-02-16', 2699, 56742, 3898, 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 (59578, '2022-02-16', 8360, 56743, 3898, 50395, '1.0000', '3.2071', '3.2071', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59579, '2022-02-16', 8515, 56744, 3898, NULL, '1.0000', '28.0200', '28.0200', '1.8000', '1.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 (59580, '2022-02-16', 8336, 56745, 3898, NULL, '1.0000', '3.4000', '3.4000', '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 (59581, '2022-02-16', 8178, 56746, 3898, NULL, '1.0000', '4.5000', '4.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 (59582, '2022-02-16', 9808, 56747, 3898, 50377, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59583, '2022-02-16', 9272, 56748, 3898, NULL, '1.0000', '3.1000', '3.1000', '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 (59584, '2022-02-16', 7907, 56749, 3898, NULL, '1.0000', '12.0000', '12.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 (59585, '2022-02-16', 8548, 56750, 3898, NULL, '1.0000', '12.0000', '12.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 (59586, '2022-02-16', 7317, 56751, 3898, 50407, '1.0000', '14.2708', '14.2708', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59587, '2022-02-16', 1935, 56752, 3898, NULL, '1.0000', '28.7657', '28.7657', '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 (59588, '2022-02-16', 9735, 56753, 3898, 50057, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59589, '2022-02-16', 7674, 56754, 3898, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59590, '2022-02-16', 9724, 56755, 3898, 46153, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59591, '2022-02-16', 8202, 56756, 3898, NULL, '1.0000', '1.6600', '1.6600', '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 (59592, '2022-02-16', 7781, 56757, 3898, NULL, '3.0000', '4.2500', '4.2500', '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 (59593, '2022-02-16', 8179, 56758, 3898, NULL, '1.0000', '0.2200', '0.2200', '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 (59594, '2022-02-16', 7663, 56759, 3898, 50415, '1.0000', '8.6733', '8.6733', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59595, '2022-02-16', 9578, 56760, 3898, NULL, '1.0000', '8.0000', '8.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 (59596, '2022-02-16', 1730, 56761, 3898, 45344, '1.0000', '23.9100', '23.9100', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59597, '2022-02-16', 9150, 56762, 3898, NULL, '1.0000', '19.8000', '19.8000', '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 (59598, '2022-02-16', 7886, 56763, 3898, NULL, '1.0000', '6.7841', '6.7841', '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 (59599, '2022-02-16', 9337, 56764, 3898, 48301, '5.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59600, '2022-02-16', 8454, 56765, 3898, 45779, '1.0000', '5.1700', '5.1700', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59601, '2022-02-16', 7925, 56766, 3898, 47911, '1.0000', '10.5500', '10.5500', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59602, '2022-02-16', 7591, 56767, 3898, NULL, '1.0000', '2.7500', '2.7500', '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 (59603, '2022-02-16', 7750, 56768, 3898, NULL, '1.0000', '22.7100', '22.7100', '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 (59604, '2022-02-16', 8039, 56769, 3898, NULL, '1.0000', '-393.2876', '-393.2876', '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 (59605, '2022-02-16', 1672, 56770, 3898, 50368, '10.0000', '2.9607', '2.9607', '4.2000', '4.2000', '10.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59606, '2022-02-16', 7711, 56771, 3898, NULL, '1.0000', '-204.0169', '-204.0169', '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 (59607, '2022-02-16', 7953, 56772, 3898, NULL, '1.0000', '6.0000', '6.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 (59608, '2022-02-16', 8637, 56773, 3898, NULL, '10.0000', '40.3000', '40.3000', '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 (59609, '2022-02-16', 9417, 56774, 3898, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59610, '2022-02-16', 9098, 56775, 3898, NULL, '1.0000', '23.5884', '23.5884', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59611, '2022-02-16', 7917, 56776, 3898, NULL, '4.0000', '5.0000', '5.0000', '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 (59612, '2022-02-16', 1532, 56777, 3899, 48901, '3.0000', '1.5750', '1.5750', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59613, '2022-02-16', 2379, 56778, 3900, NULL, '1.0000', '1.0877', '1.0877', '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 (59614, '2022-02-16', 1602, 56779, 3900, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59615, '2022-02-16', 2384, 56780, 3900, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59616, '2022-02-16', 1818, 56781, 3900, 49373, '1.0000', '16.1640', '16.1640', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59617, '2022-02-16', 9794, 56782, 3900, NULL, '1.0000', '1.0800', '1.0800', '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 (59618, '2022-02-16', 2948, 56783, 3900, 48718, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59619, '2022-02-16', 1575, 56784, 3900, NULL, '1.0000', '90.0000', '90.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 (59620, '2022-02-16', 9740, 56785, 3900, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59621, '2022-02-16', 2936, 56786, 3900, 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 (59622, '2022-02-16', 2353, 56787, 3900, NULL, '1.0000', '3.9633', '3.9633', '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 (59623, '2022-02-16', 1590, 56788, 3900, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59624, '2022-02-16', 9654, 56789, 3900, 42106, '1.0000', '18.1100', '18.1100', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59625, '2022-02-16', 2440, 56790, 3900, 49680, '1.0000', '6.6029', '6.6029', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59626, '2022-02-16', 3026, 56791, 3900, 44158, '1.0000', '2.2857', '2.2857', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59627, '2022-02-16', 2038, 56792, 3900, 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 (59628, '2022-02-16', 2928, 56793, 3901, 19029, '1.0000', '42.3000', '42.3000', '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 (59629, '2022-02-16', 2237, 56794, 3901, 46708, '1.0000', '1.4654', '1.4654', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59630, '2022-02-16', 1871, 56795, 3901, 49455, '6.0000', '6.7981', '6.7981', '3.0000', '3.0000', '78.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59631, '2022-02-16', 7579, 56796, 3901, NULL, '2.0000', '15.0000', '15.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 (59632, '2022-02-16', 7652, 56797, 3901, 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 (59633, '2022-02-16', 2360, 56798, 3901, 49990, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '48.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59634, '2022-02-16', 7391, 56799, 3901, 48747, '1.0000', '15.6000', '15.6000', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59635, '2022-02-16', 1855, 56800, 3902, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59636, '2022-02-16', 1519, 56801, 3902, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59637, '2022-02-16', 2169, 56802, 3902, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59638, '2022-02-16', 1449, 56803, 3902, 49862, '1.0000', '0.6600', '0.6600', '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 (59639, '2022-02-16', 2022, 56804, 3902, 48945, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59640, '2022-02-16', 1529, 56805, 3902, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59641, '2022-02-16', 1763, 56806, 3902, 50252, '1.0000', '4.8352', '4.8352', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59642, '2022-02-16', 1863, 56807, 3903, 49847, '2.0000', '1.2686', '1.2686', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59643, '2022-02-16', 1651, 56808, 3903, 50000, '1.0000', '6.6615', '6.6615', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59644, '2022-02-16', 7444, 56809, 3903, 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 (59645, '2022-02-16', 8395, 56810, 3903, NULL, '1.0000', '0.9700', '0.9700', '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 (59646, '2022-02-16', 1904, 56811, 3903, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59647, '2022-02-16', 2392, 56812, 3903, 42971, '1.0000', '3.2165', '3.2165', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59648, '2022-02-16', 1647, 56813, 3903, 48751, '1.0000', '4.9533', '4.9533', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59649, '2022-02-16', 7922, 56814, 3903, 49142, '1.0000', '-4.4500', '-4.4500', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59650, '2022-02-16', 3029, 56815, 3903, 49991, '1.0000', '6.5895', '6.5895', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59651, '2022-02-16', 1694, 56816, 3903, 31707, '1.0000', '7.1900', '7.1900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59652, '2022-02-16', 7814, 56817, 3903, NULL, '1.0000', '13.0000', '13.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 (59653, '2022-02-16', 9794, 56818, 3903, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '98.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59654, '2022-02-16', 9747, 56819, 3903, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59655, '2022-02-16', 7825, 56820, 3904, NULL, '1.0000', '-9.1758', '-9.1758', '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 (59656, '2022-02-16', 7671, 56821, 3904, NULL, '1.0000', '76.3606', '76.3606', '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 (59657, '2022-02-16', 1935, 56822, 3904, NULL, '2.0000', '28.7657', '28.7657', '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 (59658, '2022-02-16', 8040, 56823, 3904, 46216, '1.0000', '10.6400', '10.6400', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59659, '2022-02-16', 2216, 56824, 3904, 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 (59660, '2022-02-16', 9337, 56825, 3904, 48301, '3.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59661, '2022-02-16', 8000, 56826, 3904, NULL, '1.0000', '384.5041', '384.5041', '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 (59662, '2022-02-16', 7641, 56827, 3904, NULL, '2.0000', '-543.6034', '-543.6034', '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 (59663, '2022-02-16', 8288, 56828, 3904, NULL, '8.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (59664, '2022-02-16', 2733, 56829, 3904, NULL, '1.0000', '-5.0000', '-5.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 (59665, '2022-02-16', 8702, 56830, 3904, NULL, '1.0000', '3.6700', '3.6700', '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 (59666, '2022-02-16', 7781, 56831, 3904, NULL, '3.0000', '4.2500', '4.2500', '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 (59667, '2022-02-16', 2284, 56832, 3904, 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 (59668, '2022-02-16', 7743, 56833, 3904, NULL, '1.0000', '419203.7668', '419203.7668', '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 (59669, '2022-02-16', 7714, 56834, 3904, NULL, '2.0000', '0.4200', '0.4200', '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 (59670, '2022-02-16', 8454, 56835, 3904, 45779, '1.0000', '5.1700', '5.1700', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59671, '2022-02-16', 7831, 56836, 3904, NULL, '1.0000', '22.5000', '22.5000', '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 (59672, '2022-02-16', 1339, 56837, 3904, NULL, '1.0000', '1.6199', '1.6199', '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 (59673, '2022-02-16', 7672, 56838, 3904, NULL, '2.0000', '3.8200', '3.8200', '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 (59674, '2022-02-16', 1339, 56839, 3904, NULL, '1.0000', '1.6199', '1.6199', '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 (59675, '2022-02-16', 1912, 56840, 3905, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59676, '2022-02-16', 9695, 56841, 3905, 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 (59677, '2022-02-16', 1564, 56842, 3905, 50077, '10.0000', '3.4988', '3.4988', '4.0000', '4.0000', '52.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59678, '2022-02-16', 2131, 56843, 3905, 44163, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59679, '2022-02-16', 8767, 56844, 3905, NULL, '1.0000', '6.9975', '6.9975', '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 (59680, '2022-02-16', 7954, 56845, 3905, 48477, '2.0000', '7.8822', '7.8822', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59681, '2022-02-16', 7608, 56846, 3905, 39812, '1.0000', '6.9800', '6.9800', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59682, '2022-02-16', 1863, 56847, 3905, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59683, '2022-02-16', 2035, 56848, 3906, 49905, '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 (59684, '2022-02-16', 9645, 56849, 3907, 41423, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59685, '2022-02-16', 2761, 56850, 3907, 39866, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59686, '2022-02-16', 7381, 56851, 3907, 49866, '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 (59687, '2022-02-16', 9482, 56852, 3907, NULL, '4.0000', '0.5000', '0.5000', '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 (59688, '2022-02-17', 1875, 56853, 3908, 6949, '-43.0000', '2.4000', '2.4000', '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 (59689, '2022-02-17', 1875, 56853, 3908, NULL, '53.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-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 (59690, '2022-02-17', 2315, 56854, 3908, 2735, '-163.0000', '0.3300', '0.3300', '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 (59691, '2022-02-17', 2315, 56854, 3908, NULL, '164.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-164.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59692, '2022-02-17', 1564, 56855, 3909, 50077, '2.0000', '3.4988', '3.4988', '4.0000', '4.0000', '50.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59693, '2022-02-17', 2405, 56856, 3909, 37770, '5.0000', '1.2000', '1.2000', '1.8000', '1.8000', '31.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59694, '2022-02-17', 1873, 56857, 3909, 22597, '1.0000', '11.9500', '11.9500', '17.0000', '17.0000', '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 (59695, '2022-02-17', 2991, 56858, 3909, 22612, '1.0000', '0.5700', '0.5700', '2.0000', '2.0000', '83.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 (59696, '2022-02-17', 9735, 56859, 3909, 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 (59697, '2022-02-17', 1644, 56860, 3909, 23694, '1.0000', '33.9010', '33.9010', '48.0000', '48.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 (59698, '2022-02-17', 2726, 56861, 3909, NULL, '1.0000', '2.7004', '2.7004', '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 (59699, '2022-02-17', 1564, 56862, 3909, 50077, '3.0000', '3.4988', '3.4988', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59700, '2022-02-17', 2948, 56863, 3909, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59701, '2022-02-17', 7684, 56864, 3909, NULL, '1.0000', '9.0000', '9.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 (59702, '2022-02-17', 2612, 56865, 3909, NULL, '1.0000', '7.1600', '7.1600', '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 (59703, '2022-02-17', 8775, 56866, 3909, 49870, '1.0000', '-5.5188', '-5.5188', '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 (59704, '2022-02-17', 1855, 56867, 3909, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59705, '2022-02-17', 1602, 56868, 3909, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '21.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59706, '2022-02-17', 9695, 56869, 3909, 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 (59707, '2022-02-17', 9647, 56870, 3909, 41425, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59708, '2022-02-17', 1564, 56871, 3909, 50077, '10.0000', '3.4988', '3.4988', '4.0000', '4.0000', '42.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59709, '2022-02-17', 1678, 56872, 3909, NULL, '1.0000', '33.9300', '33.9300', '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 (59710, '2022-02-17', 2135, 56873, 3909, NULL, '1.0000', '2.4732', '2.4732', '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 (59711, '2022-02-17', 8180, 56874, 3910, NULL, '3.0000', '4.4000', '4.4000', '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 (59712, '2022-02-17', 3018, 56875, 3910, 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 (59713, '2022-02-17', 7342, 56876, 3910, 48856, '1.0000', '5.2127', '5.2127', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59714, '2022-02-17', 1689, 56877, 3910, NULL, '1.0000', '9.1667', '9.1667', '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 (59715, '2022-02-17', 8158, 56878, 3910, NULL, '1.0000', '24.9000', '24.9000', '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 (59716, '2022-02-17', 7832, 56879, 3910, 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 (59717, '2022-02-17', 9556, 56880, 3910, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59718, '2022-02-17', 7588, 56881, 3910, NULL, '1.0000', '7.3387', '7.3387', '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 (59719, '2022-02-17', 1340, 56882, 3910, 49280, '1.0000', '4.3962', '4.3962', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59720, '2022-02-17', 7558, 56883, 3910, NULL, '10.0000', '2.2000', '2.2000', '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 (59721, '2022-02-17', 2761, 56884, 3910, 50409, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59722, '2022-02-17', 7697, 56885, 3910, 45301, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59723, '2022-02-17', 8341, 56886, 3910, NULL, '1.0000', '30.7381', '30.7381', '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 (59724, '2022-02-17', 2487, 56887, 3910, 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 (59725, '2022-02-17', 1914, 56888, 3910, NULL, '1.0000', '5.2300', '5.2300', '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 (59726, '2022-02-17', 7674, 56889, 3910, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59727, '2022-02-17', 1637, 56890, 3910, 32929, '1.0000', '10.3600', '10.3600', '15.0000', '15.0000', '6.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59728, '2022-02-17', 7833, 56891, 3910, NULL, '1.0000', '2.0000', '2.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 (59729, '2022-02-17', 7728, 56892, 3910, 50306, '1.0000', '1.8605', '1.8605', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59730, '2022-02-17', 9747, 56893, 3910, 46923, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59731, '2022-02-17', 7881, 56894, 3910, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59732, '2022-02-17', 2167, 56895, 3911, 17165, '-36.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 (59733, '2022-02-17', 2167, 56895, 3911, NULL, '37.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59734, '2022-02-17', 1410, 56896, 3911, NULL, '1.0000', '2.2000', '2.2000', '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 (59735, '2022-02-17', 1859, 56897, 3911, NULL, '1.0000', '22.6760', '22.6760', '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 (59736, '2022-02-17', 1665, 56898, 3911, 3235, '-74.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 (59737, '2022-02-17', 1665, 56898, 3911, NULL, '77.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59738, '2022-02-17', 7411, 56899, 3911, NULL, '1.0000', '1.3500', '1.3500', '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 (59739, '2022-02-17', 2237, 56900, 3911, 2781, '-39.0000', '1.0600', '1.0600', '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 (59740, '2022-02-17', 2237, 56900, 3911, NULL, '40.0000', '1.0600', '1.0600', '2.5000', '2.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 (59741, '2022-02-17', 1337, 56901, 3911, 10809, '-11.0000', '2.0000', '2.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 (59742, '2022-02-17', 1337, 56901, 3911, NULL, '12.0000', '2.0000', '2.0000', '3.5000', '3.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 (59743, '2022-02-17', 1339, 56902, 3911, 13004, '-7.0000', '1.6012', '1.6012', '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 (59744, '2022-02-17', 1339, 56902, 3911, NULL, '8.0000', '1.6012', '1.6012', '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 (59745, '2022-02-17', 9748, 56903, 3911, NULL, '1.0000', '2.5300', '2.5300', '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 (59746, '2022-02-17', 1651, 56904, 3911, 3222, '-43.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 (59747, '2022-02-17', 1651, 56904, 3911, NULL, '44.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59748, '2022-02-17', 2403, 56905, 3912, 48210, '1.0000', '17.7915', '17.7915', '24.0000', '24.0000', '5.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59749, '2022-02-17', 2169, 56906, 3912, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59750, '2022-02-17', 2270, 56907, 3912, 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 (59751, '2022-02-17', 1687, 56908, 3912, 49633, '1.0000', '11.5480', '11.5480', '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 (59752, '2022-02-17', 1672, 56909, 3912, 49340, '10.0000', '3.0458', '3.0458', '4.2000', '4.2000', '40.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59753, '2022-02-17', 1942, 56910, 3912, 48604, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59754, '2022-02-17', 9272, 56911, 3912, NULL, '1.0000', '3.1000', '3.1000', '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 (59755, '2022-02-17', 2681, 56912, 3912, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59756, '2022-02-17', 1450, 56913, 3912, 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 (59757, '2022-02-17', 2169, 56914, 3912, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59758, '2022-02-17', 7762, 56915, 3912, NULL, '1.0000', '5.1000', '5.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 (59759, '2022-02-17', 9413, 56916, 3912, 34036, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59760, '2022-02-17', 7412, 56917, 3912, NULL, '1.0000', '1.5200', '1.5200', '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 (59761, '2022-02-17', 1425, 56918, 3912, 50262, '1.0000', '7.6655', '7.6655', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59762, '2022-02-17', 1529, 56919, 3912, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59763, '2022-02-17', 1805, 56920, 3912, NULL, '1.0000', '15.0770', '15.0770', '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 (59764, '2022-02-17', 1644, 56921, 3912, 23694, '1.0000', '33.9010', '33.9010', '48.0000', '48.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 (59765, '2022-02-17', 7514, 56922, 3912, NULL, '1.0000', '2.2500', '2.2500', '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 (59766, '2022-02-17', 2283, 56923, 3912, 48600, '3.0000', '1.4300', '1.4300', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59767, '2022-02-17', 2289, 56924, 3912, 49873, '2.0000', '0.2222', '0.2222', '0.5000', '0.5000', '39.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59768, '2022-02-17', 1805, 56925, 3912, NULL, '1.0000', '15.0770', '15.0770', '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 (59769, '2022-02-17', 7609, 56926, 3912, NULL, '1.0000', '4.3300', '4.3300', '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 (59770, '2022-02-17', 2167, 56927, 3912, NULL, '1.0000', '2.1310', '2.1310', '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 (59771, '2022-02-17', 1663, 56928, 3912, 19372, '1.0000', '90.0000', '90.0000', '125.0000', '125.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59772, '2022-02-17', 2458, 56929, 3912, 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 (59773, '2022-02-17', 9482, 56930, 3912, NULL, '2.0000', '0.5000', '0.5000', '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 (59774, '2022-02-17', 7514, 56931, 3912, NULL, '1.0000', '2.2500', '2.2500', '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 (59775, '2022-02-17', 1805, 56932, 3912, NULL, '1.0000', '15.0770', '15.0770', '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 (59776, '2022-02-17', 9413, 56933, 3912, 34036, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59777, '2022-02-17', 7802, 56934, 3912, NULL, '5.0000', '0.9200', '0.9200', '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 (59778, '2022-02-17', 9735, 56935, 3912, 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 (59779, '2022-02-17', 8756, 56936, 3912, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59780, '2022-02-17', 1640, 56937, 3912, 47119, '1.0000', '3.0496', '3.0496', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59781, '2022-02-17', 9715, 56938, 3912, 47053, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59782, '2022-02-17', 9794, 56939, 3912, NULL, '1.0000', '1.0800', '1.0800', '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 (59783, '2022-02-17', 2237, 56940, 3912, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59784, '2022-02-17', 2260, 56941, 3912, 49305, '1.0000', '4.2238', '4.2238', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59785, '2022-02-17', 7915, 56942, 3912, NULL, '1.0000', '2.8000', '2.8000', '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 (59786, '2022-02-17', 2315, 56943, 3912, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '170.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59787, '2022-02-17', 2169, 56944, 3912, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59788, '2022-02-17', 1904, 56945, 3912, 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 (59789, '2022-02-17', 1935, 56946, 3912, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59790, '2022-02-17', 1519, 56947, 3912, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59791, '2022-02-17', 2167, 56948, 3912, NULL, '1.0000', '2.1310', '2.1310', '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 (59792, '2022-02-17', 7552, 56949, 3912, 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 (59793, '2022-02-17', 7769, 56950, 3912, 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 (59794, '2022-02-17', 7412, 56951, 3913, NULL, '1.0000', '1.5200', '1.5200', '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 (59795, '2022-02-17', 7428, 56952, 3913, 49757, '3.0000', '3.9788', '3.9788', '4.5000', '4.5000', '129.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59796, '2022-02-17', 2069, 56953, 3913, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '17.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59797, '2022-02-17', 8069, 56954, 3913, 47910, '1.0000', '29.1504', '29.1504', '38.5000', '38.5000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59798, '2022-02-17', 2332, 56955, 3913, 49739, '2.0000', '6.3883', '6.3883', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59799, '2022-02-17', 9329, 56956, 3913, NULL, '1.0000', '20.0102', '20.0102', '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 (59800, '2022-02-17', 7633, 56957, 3913, 45782, '1.0000', '2.8700', '2.8700', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59801, '2022-02-17', 7472, 56958, 3913, NULL, '1.0000', '-4.3873', '-4.3873', '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 (59802, '2022-02-17', 7643, 56959, 3913, NULL, '1.0000', '2.1100', '2.1100', '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 (59803, '2022-02-17', 9694, 56960, 3913, 43966, '1.0000', '16.3000', '16.3000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59804, '2022-02-17', 7509, 56961, 3913, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59805, '2022-02-17', 9272, 56962, 3913, NULL, '1.0000', '3.1000', '3.1000', '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 (59806, '2022-02-17', 8254, 56963, 3913, 50049, '1.0000', '25.8883', '25.8883', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59807, '2022-02-17', 2104, 56964, 3913, NULL, '2.0000', '0.2000', '0.2000', '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 (59808, '2022-02-17', 7704, 56965, 3913, NULL, '1.0000', '-1.5625', '-1.5625', '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 (59809, '2022-02-17', 1947, 56966, 3913, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59810, '2022-02-17', 2289, 56967, 3913, NULL, '4.0000', '0.9629', '0.9629', '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 (59811, '2022-02-17', 1841, 56968, 3913, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59812, '2022-02-17', 7544, 56969, 3913, NULL, '2.0000', '9.4300', '9.4300', '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 (59813, '2022-02-17', 9735, 56970, 3913, 50057, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59814, '2022-02-17', 7664, 56971, 3913, 50043, '1.0000', '7.1799', '7.1799', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59815, '2022-02-17', 9303, 56972, 3913, NULL, '1.0000', '9.0000', '9.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 (59816, '2022-02-17', 9193, 56973, 3913, NULL, '1.0000', '7.0315', '7.0315', '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 (59817, '2022-02-17', 7353, 56974, 3913, 45856, '1.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59818, '2022-02-17', 7411, 56975, 3913, NULL, '5.0000', '1.3600', '1.3600', '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 (59819, '2022-02-17', 9791, 56976, 3913, 49771, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '143.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59820, '2022-02-17', 1837, 56977, 3913, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59821, '2022-02-17', 1501, 56978, 3913, 49770, '1.0000', '2.3071', '2.3071', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59822, '2022-02-17', 9735, 56979, 3913, 50057, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59823, '2022-02-17', 8637, 56980, 3913, NULL, '2.0000', '40.3000', '40.3000', '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 (59824, '2022-02-17', 7713, 56981, 3913, 37398, '2.0000', '0.4202', '0.4202', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59825, '2022-02-17', 9337, 56982, 3913, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59826, '2022-02-17', 7609, 56983, 3913, NULL, '1.0000', '4.4011', '4.4011', '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 (59827, '2022-02-17', 7317, 56984, 3913, 50407, '1.0000', '14.2708', '14.2708', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59828, '2022-02-17', 7674, 56985, 3913, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59829, '2022-02-17', 8539, 56986, 3913, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '54.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59830, '2022-02-17', 8740, 56987, 3913, NULL, '1.0000', '2.0000', '2.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 (59831, '2022-02-17', 8969, 56988, 3913, NULL, '4.0000', '2.0000', '2.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 (59832, '2022-02-17', 7672, 56989, 3913, NULL, '1.0000', '3.8200', '3.8200', '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 (59833, '2022-02-17', 7622, 56990, 3913, NULL, '1.0000', '17.8100', '17.8100', '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 (59834, '2022-02-17', 9794, 56991, 3914, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '97.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59835, '2022-02-17', 9320, 56992, 3914, 44784, '1.0000', '8.8675', '8.8675', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59836, '2022-02-17', 3029, 56993, 3914, 49991, '1.0000', '6.5895', '6.5895', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59837, '2022-02-17', 2660, 56994, 3914, 49531, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59838, '2022-02-17', 2607, 56995, 3914, 42956, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '13.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59839, '2022-02-17', 2295, 56996, 3914, 3134, '3.0000', '0.7000', '0.7000', '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 (59840, '2022-02-17', 2242, 56997, 3914, 49112, '3.0000', '0.6543', '0.6543', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59841, '2022-02-17', 1765, 56998, 3914, 40899, '1.0000', '5.9694', '5.9694', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59842, '2022-02-17', 2228, 56999, 3914, 49411, '1.0000', '25.0045', '25.0045', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59843, '2022-02-17', 1863, 57000, 3914, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59844, '2022-02-17', 1839, 57001, 3914, 48750, '1.0000', '7.4430', '7.4430', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59845, '2022-02-17', 2574, 57002, 3914, 49033, '4.0000', '1.0049', '1.0049', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59846, '2022-02-17', 1532, 57003, 3914, 46593, '3.0000', '41.7946', '41.7946', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59847, '2022-02-17', 2858, 57004, 3914, 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 (59848, '2022-02-17', 1863, 57005, 3914, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59849, '2022-02-17', 1884, 57006, 3914, 47968, '1.0000', '5.5617', '5.5617', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59850, '2022-02-17', 1699, 57007, 3914, 49088, '1.0000', '3.2000', '3.2000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59851, '2022-02-17', 2169, 57008, 3914, 46750, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59852, '2022-02-17', 1520, 57009, 3914, 11038, '1.0000', '1.4700', '1.4700', '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 (59853, '2022-02-17', 2169, 57010, 3915, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59854, '2022-02-17', 1771, 57011, 3915, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59855, '2022-02-17', 8763, 57012, 3915, NULL, '1.0000', '5.4000', '5.4000', '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 (59856, '2022-02-17', 2908, 57013, 3915, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59857, '2022-02-17', 2109, 57014, 3915, 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 (59858, '2022-02-17', 7918, 57015, 3915, NULL, '1.0000', '11.0875', '11.0875', '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 (59859, '2022-02-17', 7394, 57016, 3915, NULL, '1.0000', '12.7400', '12.7400', '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 (59860, '2022-02-17', 9724, 57017, 3915, 48467, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59861, '2022-02-17', 2169, 57018, 3915, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59862, '2022-02-17', 2237, 57019, 3915, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59863, '2022-02-17', 2989, 57020, 3915, 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 (59864, '2022-02-17', 7411, 57021, 3915, NULL, '1.0000', '1.3013', '1.3013', '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 (59865, '2022-02-17', 1855, 57022, 3915, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59866, '2022-02-17', 9794, 57023, 3915, NULL, '1.0000', '1.0800', '1.0800', '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 (59867, '2022-02-17', 7560, 57024, 3915, NULL, '1.0000', '90.1600', '90.1600', '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 (59868, '2022-02-17', 2242, 57025, 3915, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59869, '2022-02-17', 2511, 57026, 3915, 48700, '1.0000', '8.8000', '8.8000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59870, '2022-02-17', 2320, 57027, 3915, 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 (59871, '2022-02-17', 9740, 57028, 3915, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59872, '2022-02-17', 7411, 57029, 3915, NULL, '1.0000', '1.3013', '1.3013', '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 (59873, '2022-02-17', 7593, 57030, 3915, NULL, '1.0000', '0.8000', '0.8000', '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 (59874, '2022-02-17', 7684, 57031, 3915, NULL, '1.0000', '9.0000', '9.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 (59875, '2022-02-17', 7802, 57032, 3915, NULL, '5.0000', '0.9200', '0.9200', '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 (59876, '2022-02-17', 2506, 57033, 3915, NULL, '1.0000', '4.2640', '4.2640', '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 (59877, '2022-02-17', 1945, 57034, 3915, 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 (59878, '2022-02-17', 7411, 57035, 3915, NULL, '1.0000', '1.3013', '1.3013', '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 (59879, '2022-02-17', 1618, 57036, 3915, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59880, '2022-02-17', 1670, 57037, 3915, NULL, '1.0000', '19.0833', '19.0833', '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 (59881, '2022-02-17', 9727, 57038, 3915, 47071, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59882, '2022-02-17', 2270, 57039, 3915, 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 (59883, '2022-02-17', 1545, 57040, 3915, 48141, '1.0000', '18.7440', '18.7440', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59884, '2022-02-17', 1812, 57041, 3915, 48636, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59885, '2022-02-17', 7429, 57042, 3916, NULL, '1.0000', '18.0000', '18.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 (59886, '2022-02-17', 2315, 57043, 3916, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '169.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59887, '2022-02-17', 2543, 57044, 3916, 48867, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59888, '2022-02-17', 1590, 57045, 3916, 50267, '2.0000', '1.8024', '1.8024', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59889, '2022-02-17', 2242, 57046, 3916, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59890, '2022-02-17', 7802, 57047, 3916, NULL, '2.0000', '0.9200', '0.9200', '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 (59891, '2022-02-17', 1912, 57048, 3917, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59892, '2022-02-17', 8360, 57049, 3917, NULL, '1.0000', '3.5200', '3.5200', '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 (59893, '2022-02-17', 9092, 57050, 3918, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59894, '2022-02-17', 9758, 57051, 3918, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59895, '2022-02-17', 2962, 57052, 3918, 44462, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59896, '2022-02-17', 7954, 57053, 3918, NULL, '4.0000', '24.4161', '24.4161', '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 (59897, '2022-02-17', 9578, 57054, 3918, NULL, '1.0000', '8.0000', '8.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 (59898, '2022-02-17', 7831, 57055, 3918, NULL, '1.0000', '22.5000', '22.5000', '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 (59899, '2022-02-17', 1665, 57056, 3919, 3235, '-77.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 (59900, '2022-02-17', 1665, 57056, 3919, NULL, '78.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59901, '2022-02-17', 3073, 57057, 3919, 33073, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59902, '2022-02-18', 1837, 57058, 3920, 46752, '2.0000', '0.4981', '0.4981', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59903, '2022-02-18', 1728, 57059, 3920, 31711, '5.0000', '25.9273', '25.9273', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59904, '2022-02-18', 2357, 57060, 3920, 49999, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59905, '2022-02-18', 1675, 57061, 3920, 47962, '1.0000', '38.4964', '38.4964', '28.5000', '28.5000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59906, '2022-02-18', 7612, 57062, 3920, NULL, '2.0000', '46.0000', '46.0000', '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 (59907, '2022-02-18', 1674, 57063, 3920, 49556, '1.0000', '14.5864', '14.5864', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59908, '2022-02-18', 2283, 57064, 3920, 3123, '1.0000', '1.4300', '1.4300', '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 (59909, '2022-02-18', 7533, 57065, 3920, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59910, '2022-02-18', 1399, 57066, 3920, 49080, '1.0000', '13.3750', '13.3750', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59911, '2022-02-18', 1687, 57067, 3920, 49136, '1.0000', '12.9700', '12.9700', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59912, '2022-02-18', 1671, 57068, 3920, 45109, '1.0000', '50.1673', '50.1673', '70.0000', '70.0000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59913, '2022-02-18', 2916, 57069, 3921, 49229, '1.0000', '14.3789', '14.3789', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59914, '2022-02-18', 1867, 57070, 3921, NULL, '1.0000', '9.9596', '9.9596', '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 (59915, '2022-02-18', 2315, 57071, 3921, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '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 (59916, '2022-02-18', 2135, 57072, 3922, NULL, '1.0000', '2.4732', '2.4732', '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 (59917, '2022-02-18', 1310, 57073, 3922, 49358, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59918, '2022-02-18', 1564, 57074, 3922, 50077, '2.0000', '3.4988', '3.4988', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59919, '2022-02-18', 1672, 57075, 3922, 49340, '10.0000', '3.0458', '3.0458', '4.2000', '4.2000', '30.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59920, '2022-02-18', 2270, 57076, 3922, 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 (59921, '2022-02-18', 1618, 57077, 3922, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59922, '2022-02-18', 2986, 57078, 3922, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59923, '2022-02-18', 2091, 57079, 3922, NULL, '1.0000', '28.0000', '28.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 (59924, '2022-02-18', 3044, 57080, 3922, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '34.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 (59925, '2022-02-18', 2379, 57081, 3922, NULL, '1.0000', '1.0877', '1.0877', '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 (59926, '2022-02-18', 1672, 57082, 3922, 49340, '10.0000', '3.0458', '3.0458', '4.2000', '4.2000', '30.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59927, '2022-02-18', 2105, 57083, 3922, 48179, '2.0000', '1.3500', '1.3500', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59928, '2022-02-18', 1687, 57084, 3922, 49353, '1.0000', '11.5480', '11.5480', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59929, '2022-02-18', 2916, 57085, 3922, NULL, '1.0000', '11.2778', '11.2778', '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 (59930, '2022-02-18', 2296, 57086, 3922, NULL, '1.0000', '13.2900', '13.2900', '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 (59931, '2022-02-18', 1812, 57087, 3922, 48636, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59932, '2022-02-18', 2135, 57088, 3922, NULL, '2.0000', '2.4732', '2.4732', '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 (59933, '2022-02-18', 2379, 57089, 3922, NULL, '1.0000', '1.0877', '1.0877', '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 (59934, '2022-02-18', 1837, 57090, 3922, NULL, '2.0000', '1.5967', '1.5967', '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 (59935, '2022-02-18', 2169, 57091, 3922, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59936, '2022-02-18', 1912, 57092, 3922, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59937, '2022-02-18', 2169, 57093, 3922, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59938, '2022-02-18', 9337, 57094, 3923, 48301, '1.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59939, '2022-02-18', 1874, 57095, 3923, NULL, '1.0000', '5.5175', '5.5175', '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 (59940, '2022-02-18', 2315, 57096, 3923, 47952, '1.0000', '0.8863', '0.8863', '0.8000', '0.8000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59941, '2022-02-18', 2315, 57096, 3923, NULL, '1.0000', '0.8863', '0.8863', '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 (59942, '2022-02-18', 7917, 57097, 3923, NULL, '4.0000', '5.0000', '5.0000', '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 (59943, '2022-02-18', 8918, 57098, 3923, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59944, '2022-02-18', 2616, 57099, 3923, 45807, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59945, '2022-02-18', 2442, 57100, 3923, 44464, '1.0000', '4.8000', '4.8000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59946, '2022-02-18', 1557, 57101, 3923, 48817, '1.0000', '11.5376', '11.5376', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59947, '2022-02-18', 7914, 57102, 3923, NULL, '1.0000', '5.3556', '5.3556', '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 (59948, '2022-02-18', 9747, 57103, 3923, 46923, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59949, '2022-02-18', 7999, 57104, 3923, 46264, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59950, '2022-02-18', 8038, 57105, 3923, 50370, '1.0000', '6.4795', '6.4795', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59951, '2022-02-18', 7317, 57106, 3923, 50496, '1.0000', '15.8985', '15.8985', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59952, '2022-02-18', 7703, 57107, 3923, NULL, '1.0000', '102.7757', '102.7757', '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 (59953, '2022-02-18', 8866, 57108, 3923, 45784, '1.0000', '0.4300', '0.4300', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59954, '2022-02-18', 7672, 57109, 3923, NULL, '1.0000', '3.8200', '3.8200', '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 (59955, '2022-02-18', 1498, 57110, 3923, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '63.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59956, '2022-02-18', 7419, 57111, 3923, 48839, '1.0000', '25.0061', '25.0061', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59957, '2022-02-18', 1760, 57112, 3923, 46907, '2.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59958, '2022-02-18', 9556, 57113, 3923, 48080, '2.0000', '0.2770', '0.2770', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59959, '2022-02-18', 9556, 57113, 3923, NULL, '2.0000', '0.2770', '0.2770', '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 (59960, '2022-02-18', 7630, 57114, 3923, NULL, '2.0000', '10.0000', '10.0000', '3.2000', '3.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 (59961, '2022-02-18', 8952, 57115, 3923, 44466, '2.0000', '5.1459', '5.1459', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59962, '2022-02-18', 7674, 57116, 3923, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59963, '2022-02-18', 2416, 57117, 3923, 43964, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59964, '2022-02-18', 3026, 57118, 3923, NULL, '1.0000', '1.0000', '1.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 (59965, '2022-02-18', 8228, 57119, 3923, NULL, '1.0000', '15.8438', '15.8438', '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 (59966, '2022-02-18', 7428, 57120, 3923, 50471, '3.0000', '65.9358', '65.9358', '4.5000', '4.5000', '126.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59967, '2022-02-18', 7385, 57121, 3923, 50470, '2.0000', '32.3381', '32.3381', '3.0000', '3.0000', '74.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59968, '2022-02-18', 7911, 57122, 3923, NULL, '1.0000', '4.3700', '4.3700', '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 (59969, '2022-02-18', 8308, 57123, 3923, NULL, '1.0000', '14.1857', '14.1857', '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 (59970, '2022-02-18', 9092, 57124, 3923, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59971, '2022-02-18', 9734, 57125, 3923, 46910, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '91.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59972, '2022-02-18', 2870, 57126, 3924, 23992, '1.0000', '45.0000', '45.0000', '80.0000', '80.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 (59973, '2022-02-18', 1905, 57127, 3924, NULL, '1.0000', '0.4000', '0.4000', '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 (59974, '2022-02-18', 2989, 57128, 3924, NULL, '5.0000', '0.9200', '0.9200', '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 (59975, '2022-02-18', 8984, 57129, 3924, NULL, '1.0000', '-100.8495', '-100.8495', '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 (59976, '2022-02-18', 7596, 57130, 3924, NULL, '1.0000', '6.5000', '6.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 (59977, '2022-02-18', 2916, 57131, 3924, NULL, '1.0000', '11.2778', '11.2778', '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 (59978, '2022-02-18', 9740, 57132, 3924, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59979, '2022-02-18', 2167, 57133, 3924, NULL, '3.0000', '2.1310', '2.1310', '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 (59980, '2022-02-18', 9794, 57134, 3924, NULL, '1.0000', '1.0800', '1.0800', '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 (59981, '2022-02-18', 2750, 57135, 3924, NULL, '5.0000', '0.5500', '0.5500', '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 (59982, '2022-02-18', 1425, 57136, 3924, 50262, '1.0000', '7.6655', '7.6655', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59983, '2022-02-18', 8984, 57137, 3924, NULL, '1.0000', '-100.8495', '-100.8495', '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 (59984, '2022-02-18', 1612, 57138, 3924, 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 (59985, '2022-02-18', 2315, 57139, 3924, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '168.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59986, '2022-02-18', 2415, 57140, 3924, 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 (59987, '2022-02-18', 8079, 57141, 3924, NULL, '1.0000', '14.3600', '14.3600', '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 (59988, '2022-02-18', 8941, 57142, 3924, NULL, '2.0000', '12.0000', '12.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 (59989, '2022-02-18', 2088, 57143, 3924, NULL, '1.0000', '-1.0956', '-1.0956', '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 (59990, '2022-02-18', 1947, 57144, 3924, 41417, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59991, '2022-02-18', 2315, 57145, 3924, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '168.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59992, '2022-02-18', 9762, 57146, 3924, 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 (59993, '2022-02-18', 7554, 57147, 3924, NULL, '10.0000', '16.0000', '16.0000', '2.2000', '2.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 (59994, '2022-02-18', 2266, 57148, 3924, 50251, '1.0000', '5.7780', '5.7780', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59995, '2022-02-18', 7763, 57149, 3924, NULL, '1.0000', '1.1300', '1.1300', '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 (59996, '2022-02-18', 7619, 57150, 3925, NULL, '1.0000', '36.9800', '36.9800', '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 (59997, '2022-02-18', 7514, 57151, 3925, NULL, '2.0000', '97.7006', '97.7006', '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 (59998, '2022-02-18', 7641, 57152, 3925, NULL, '2.0000', '-543.6034', '-543.6034', '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 (59999, '2022-02-18', 9022, 57153, 3925, NULL, '1.0000', '6.2900', '6.2900', '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 (60000, '2022-02-18', 7490, 57154, 3925, 48291, '10.0000', '2.2657', '2.2657', '0.4000', '0.4000', '37.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60001, '2022-02-18', 8361, 57155, 3925, NULL, '1.0000', '7.2778', '7.2778', '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 (60002, '2022-02-18', 7509, 57156, 3925, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60003, '2022-02-18', 7756, 57157, 3925, NULL, '2.0000', '18.7452', '18.7452', '29.5000', '29.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 (60004, '2022-02-18', 2612, 57158, 3925, 50036, '1.0000', '8.2560', '8.2560', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60005, '2022-02-18', 2069, 57159, 3925, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '16.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60006, '2022-02-18', 8677, 57160, 3925, NULL, '2.0000', '1.2300', '1.2300', '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 (60007, '2022-02-18', 8158, 57161, 3925, NULL, '1.0000', '24.9000', '24.9000', '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 (60008, '2022-02-18', 9809, 57162, 3925, 50488, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60009, '2022-02-18', 7318, 57163, 3925, 50476, '1.0000', '11.4954', '11.4954', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60010, '2022-02-18', 7608, 57164, 3925, 50394, '1.0000', '10.2344', '10.2344', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60011, '2022-02-18', 7807, 57165, 3925, NULL, '4.0000', '85.8000', '85.8000', '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 (60012, '2022-02-18', 7524, 57166, 3925, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60013, '2022-02-18', 7959, 57167, 3925, NULL, '2.0000', '9.6000', '9.6000', '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 (60014, '2022-02-18', 2315, 57168, 3925, NULL, '1.0000', '0.8863', '0.8863', '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 (60015, '2022-02-18', 9758, 57169, 3925, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60016, '2022-02-18', 7736, 57170, 3925, NULL, '1.0000', '5.1374', '5.1374', '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 (60017, '2022-02-18', 8039, 57171, 3925, NULL, '1.0000', '-393.2876', '-393.2876', '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 (60018, '2022-02-18', 7799, 57172, 3925, NULL, '1.0000', '-0.9144', '-0.9144', '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 (60019, '2022-02-18', 9720, 57173, 3925, NULL, '1.0000', '10.6000', '10.6000', '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 (60020, '2022-02-18', 7518, 57174, 3925, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (60021, '2022-02-18', 7804, 57175, 3925, 45340, '3.0000', '0.6529', '0.6529', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60022, '2022-02-18', 7638, 57176, 3925, 50503, '1.0000', '15.3556', '15.3556', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60023, '2022-02-18', 9308, 57177, 3925, NULL, '1.0000', '9.0000', '9.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 (60024, '2022-02-18', 2384, 57178, 3926, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60025, '2022-02-18', 8548, 57179, 3926, NULL, '1.0000', '12.0000', '12.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 (60026, '2022-02-18', 2237, 57180, 3926, 49715, '2.0000', '207.0499', '207.0499', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60027, '2022-02-18', 1519, 57181, 3926, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60028, '2022-02-18', 9245, 57182, 3926, NULL, '1.0000', '15.1700', '15.1700', '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 (60029, '2022-02-18', 1912, 57183, 3926, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60030, '2022-02-18', 1818, 57184, 3926, 48616, '1.0000', '16.1640', '16.1640', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60031, '2022-02-18', 7472, 57185, 3926, NULL, '1.0000', '4.2055', '4.2055', '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 (60032, '2022-02-18', 2237, 57186, 3926, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60033, '2022-02-18', 2260, 57187, 3926, 49305, '2.0000', '4.2238', '4.2238', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60034, '2022-02-18', 2255, 57188, 3926, 39842, '1.0000', '17.7288', '17.7288', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60035, '2022-02-18', 1912, 57189, 3926, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60036, '2022-02-18', 7680, 57190, 3926, NULL, '1.0000', '7.4000', '7.4000', '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 (60037, '2022-02-18', 1812, 57191, 3926, 48636, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60038, '2022-02-18', 9732, 57192, 3926, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60039, '2022-02-18', 2240, 57193, 3926, 48169, '1.0000', '32.4083', '32.4083', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60040, '2022-02-18', 2638, 57194, 3926, 48970, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60041, '2022-02-18', 2068, 57195, 3926, NULL, '1.0000', '11.8658', '11.8658', '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 (60042, '2022-02-18', 7367, 57196, 3926, NULL, '1.0000', '35.0000', '35.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 (60043, '2022-02-18', 2916, 57197, 3926, NULL, '1.0000', '11.2778', '11.2778', '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 (60044, '2022-02-18', 2260, 57198, 3926, 49305, '9.0000', '4.2238', '4.2238', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60045, '2022-02-18', 1529, 57199, 3926, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60046, '2022-02-18', 7915, 57200, 3926, NULL, '1.0000', '2.8000', '2.8000', '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 (60047, '2022-02-18', 9578, 57201, 3926, 42661, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60048, '2022-02-18', 2163, 57202, 3926, NULL, '1.0000', '22.0000', '22.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 (60049, '2022-02-18', 7802, 57203, 3926, NULL, '3.0000', '0.9200', '0.9200', '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 (60050, '2022-02-18', 2906, 57204, 3926, NULL, '2.0000', '2.6000', '2.6000', '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 (60051, '2022-02-18', 2169, 57205, 3926, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60052, '2022-02-18', 7765, 57206, 3926, NULL, '2.0000', '16.0000', '16.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 (60053, '2022-02-18', 8743, 57207, 3926, NULL, '1.0000', '12.8751', '12.8751', '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 (60054, '2022-02-18', 2633, 57208, 3926, 50265, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60055, '2022-02-18', 2283, 57209, 3926, 48600, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60056, '2022-02-18', 1665, 57210, 3926, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60057, '2022-02-18', 2972, 57211, 3927, 50472, '1.0000', '22.9325', '22.9325', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60058, '2022-02-18', 9742, 57212, 3927, 46267, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60059, '2022-02-18', 9556, 57213, 3927, NULL, '2.0000', '0.2770', '0.2770', '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 (60060, '2022-02-18', 9804, 57214, 3927, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60061, '2022-02-18', 7633, 57215, 3927, 45782, '1.0000', '2.8700', '2.8700', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60062, '2022-02-18', 1680, 57216, 3927, 48036, '1.0000', '5.0266', '5.0266', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60063, '2022-02-18', 7877, 57217, 3927, NULL, '1.0000', '3.3867', '3.3867', '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 (60064, '2022-02-18', 8735, 57218, 3927, NULL, '1.0000', '5.6000', '5.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 (60065, '2022-02-18', 7674, 57219, 3927, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60066, '2022-02-18', 7832, 57220, 3927, 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 (60067, '2022-02-18', 1947, 57221, 3927, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60068, '2022-02-18', 9740, 57222, 3927, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60069, '2022-02-18', 9007, 57223, 3927, NULL, '1.0000', '22.2000', '22.2000', '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 (60070, '2022-02-18', 7412, 57224, 3927, NULL, '1.0000', '1.5200', '1.5200', '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 (60071, '2022-02-18', 7408, 57225, 3927, 50461, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60072, '2022-02-18', 2063, 57226, 3927, 50502, '1.0000', '3.3577', '3.3577', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60073, '2022-02-18', 8485, 57227, 3927, NULL, '1.0000', '7.0400', '7.0400', '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 (60074, '2022-02-18', 8879, 57228, 3927, NULL, '1.0000', '17.0000', '17.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 (60075, '2022-02-18', 9801, 57229, 3927, 50117, '1.0000', '3.2300', '3.2300', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 408);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60076, '2022-02-18', 9644, 57230, 3927, 43127, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60077, '2022-02-18', 9758, 57231, 3927, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60078, '2022-02-18', 8085, 57232, 3927, 49815, '2.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60079, '2022-02-18', 7781, 57233, 3927, NULL, '3.0000', '4.2500', '4.2500', '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 (60080, '2022-02-18', 2315, 57234, 3927, NULL, '2.0000', '0.8863', '0.8863', '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 (60081, '2022-02-18', 9334, 57235, 3927, NULL, '1.0000', '6.0000', '6.0000', '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 (60082, '2022-02-18', 1935, 57236, 3928, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60083, '2022-02-18', 2223, 57237, 3928, 1715, '1.0000', '14.0000', '14.0000', '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 (60084, '2022-02-18', 1837, 57238, 3928, 46752, '3.0000', '0.4981', '0.4981', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60085, '2022-02-18', 1665, 57239, 3928, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60086, '2022-02-18', 2384, 57240, 3928, 46599, '1.0000', '0.3266', '0.3266', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60087, '2022-02-18', 2237, 57241, 3928, 46708, '1.0000', '1.4654', '1.4654', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60088, '2022-02-18', 1837, 57242, 3928, 46752, '2.0000', '0.4981', '0.4981', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60089, '2022-02-18', 2068, 57243, 3928, 45081, '1.0000', '11.7734', '11.7734', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60090, '2022-02-18', 9750, 57244, 3928, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '43.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60091, '2022-02-18', 1665, 57245, 3928, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60092, '2022-02-18', 2331, 57246, 3928, 46754, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60093, '2022-02-18', 1818, 57247, 3928, 40880, '1.0000', '18.5185', '18.5185', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60094, '2022-02-18', 1493, 57248, 3928, 49232, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60095, '2022-02-18', 1337, 57249, 3928, 47979, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60096, '2022-02-18', 1880, 57250, 3928, 44562, '1.0000', '4.7945', '4.7945', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60097, '2022-02-18', 8077, 57251, 3929, NULL, '1.0000', '21.3750', '21.3750', '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 (60098, '2022-02-18', 7509, 57252, 3929, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60099, '2022-02-18', 9763, 57253, 3930, NULL, '3.0000', '2.1000', '2.1000', '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 (60100, '2022-02-18', 1519, 57254, 3930, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60101, '2022-02-18', 8328, 57255, 3930, NULL, '1.0000', '8.1000', '8.1000', '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 (60102, '2022-02-18', 9731, 57256, 3931, 45993, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 337);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60103, '2022-02-19', 1337, 57257, 3932, NULL, '1.0000', '2.0000', '2.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 (60104, '2022-02-19', 2167, 57258, 3932, NULL, '2.0000', '2.1310', '2.1310', '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 (60105, '2022-02-19', 9729, 57259, 3932, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60106, '2022-02-19', 2277, 57260, 3932, NULL, '1.0000', '0.9399', '0.9399', '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 (60107, '2022-02-19', 1469, 57261, 3932, NULL, '1.0000', '6.1800', '6.1800', '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 (60108, '2022-02-19', 2284, 57262, 3932, 49646, '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 (60109, '2022-02-19', 2948, 57263, 3932, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60110, '2022-02-19', 1905, 57264, 3932, NULL, '1.0000', '0.4000', '0.4000', '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 (60111, '2022-02-19', 2986, 57265, 3932, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60112, '2022-02-19', 2237, 57266, 3932, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60113, '2022-02-19', 7954, 57267, 3932, 48477, '4.0000', '7.8822', '7.8822', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60114, '2022-02-19', 1564, 57268, 3932, 50077, '2.0000', '3.4988', '3.4988', '4.0000', '4.0000', '33.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60115, '2022-02-19', 8984, 57269, 3932, NULL, '1.0000', '-100.8495', '-100.8495', '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 (60116, '2022-02-19', 2379, 57270, 3932, NULL, '1.0000', '1.0877', '1.0877', '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 (60117, '2022-02-19', 2777, 57271, 3932, 49887, '1.0000', '2.6714', '2.6714', '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 (60118, '2022-02-19', 2167, 57272, 3932, NULL, '1.0000', '2.1310', '2.1310', '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 (60119, '2022-02-19', 2135, 57273, 3932, NULL, '1.0000', '2.4732', '2.4732', '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 (60120, '2022-02-19', 2761, 57274, 3932, 39866, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60121, '2022-02-19', 7406, 57275, 3933, NULL, '1.0000', '2.3750', '2.3750', '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 (60122, '2022-02-19', 7684, 57276, 3934, NULL, '2.0000', '9.0000', '9.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 (60123, '2022-02-19', 1812, 57277, 3934, 47104, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60124, '2022-02-19', 2302, 57278, 3934, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60125, '2022-02-19', 2360, 57279, 3935, 49990, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '47.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60126, '2022-02-19', 2169, 57280, 3935, 45082, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60127, '2022-02-19', 1872, 57281, 3935, 49551, '1.0000', '9.6617', '9.6617', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60128, '2022-02-19', 3029, 57282, 3935, 49991, '1.0000', '6.5895', '6.5895', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60129, '2022-02-19', 2777, 57283, 3935, 46727, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60130, '2022-02-19', 2486, 57284, 3935, 21821, '2.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 (60131, '2022-02-19', 8461, 57285, 3935, NULL, '15.0000', '1.0400', '1.0400', '12.5000', '12.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 (60132, '2022-02-19', 9627, 57286, 3935, 40292, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60133, '2022-02-19', 2580, 57287, 3935, 39182, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60134, '2022-02-19', 9084, 57288, 3935, 42934, '1.0000', '8.8972', '8.8972', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60135, '2022-02-19', 2858, 57289, 3936, 17772, '-44.0000', '1.0000', '1.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 (60136, '2022-02-19', 2858, 57289, 3936, NULL, '45.0000', '1.0000', '1.0000', '5.0000', '5.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 (60137, '2022-02-19', 2320, 57290, 3936, 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 (60138, '2022-02-19', 2237, 57291, 3936, 2781, '-40.0000', '1.0600', '1.0600', '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 (60139, '2022-02-19', 2237, 57291, 3936, NULL, '41.0000', '1.0600', '1.0600', '2.5000', '2.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 (60140, '2022-02-19', 2504, 57292, 3936, 5863, '-3.0000', '35.0000', '35.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 (60141, '2022-02-19', 2504, 57292, 3936, NULL, '4.0000', '35.0000', '35.0000', '44.0000', '44.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 (60142, '2022-02-19', 1826, 57293, 3936, 15039, '-10.0000', '0.2600', '0.2600', '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 (60143, '2022-02-19', 1826, 57293, 3936, NULL, '20.0000', '0.2600', '0.2600', '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 (60144, '2022-02-19', 7411, 57294, 3936, NULL, '4.0000', '1.3500', '1.3500', '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 (60145, '2022-02-19', 9747, 57295, 3936, NULL, '1.0000', '0.6500', '0.6500', '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 (60146, '2022-02-19', 1384, 57296, 3936, 284, '1.0000', '39.0000', '39.0000', '20.0000', '20.0000', '0.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 (60147, '2022-02-19', 2360, 57297, 3936, 3862, '-59.0000', '0.5200', '0.5200', '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 (60148, '2022-02-19', 2360, 57297, 3936, NULL, '69.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60149, '2022-02-19', 8616, 57298, 3936, 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 (60150, '2022-02-19', 2169, 57299, 3936, 10737, '-40.0000', '3.8397', '3.8397', '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 (60151, '2022-02-19', 2169, 57299, 3936, NULL, '42.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60152, '2022-02-19', 2169, 57300, 3936, 10737, '-40.0000', '3.8397', '3.8397', '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 (60153, '2022-02-19', 2169, 57300, 3936, NULL, '42.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60154, '2022-02-19', 2384, 57301, 3936, 12014, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '66.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 (60155, '2022-02-19', 9634, 57302, 3936, NULL, '4.0000', '4.8000', '4.8000', '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 (60156, '2022-02-19', 1502, 57303, 3936, 6307, '-2.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 (60157, '2022-02-19', 1502, 57303, 3936, NULL, '3.0000', '7.8000', '7.8000', '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 (60158, '2022-02-19', 2169, 57304, 3936, 10737, '-40.0000', '3.8397', '3.8397', '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 (60159, '2022-02-19', 2169, 57304, 3936, NULL, '41.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (60160, '2022-02-19', 2315, 57305, 3936, 2735, '-164.0000', '0.3300', '0.3300', '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 (60161, '2022-02-19', 2315, 57305, 3936, NULL, '165.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-165.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60162, '2022-02-19', 7411, 57306, 3936, NULL, '1.0000', '1.3500', '1.3500', '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 (60163, '2022-02-19', 2607, 57307, 3936, 18805, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '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 (60164, '2022-02-19', 2105, 57308, 3936, NULL, '1.0000', '1.3500', '1.3500', '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 (60165, '2022-02-19', 1590, 57309, 3936, 22260, '1.0000', '1.7100', '1.7100', '3.0000', '3.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 (60166, '2022-02-19', 1499, 57310, 3936, 20585, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '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 (60167, '2022-02-19', 1912, 57311, 3936, NULL, '2.0000', '0.3200', '0.3200', '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 (60168, '2022-02-19', 2283, 57312, 3937, 48600, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60169, '2022-02-19', 2366, 57313, 3937, NULL, '2.0000', '-17.8500', '-17.8500', '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 (60170, '2022-02-19', 1695, 57314, 3937, NULL, '1.0000', '22.6608', '22.6608', '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 (60171, '2022-02-19', 1534, 57315, 3937, NULL, '1.0000', '9.8500', '9.8500', '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 (60172, '2022-02-19', 1571, 57316, 3937, 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 (60173, '2022-02-19', 8454, 57317, 3937, NULL, '1.0000', '4.1722', '4.1722', '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 (60174, '2022-02-19', 2237, 57318, 3937, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60175, '2022-02-19', 2224, 57319, 3937, 49416, '1.0000', '17.0000', '17.0000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60176, '2022-02-19', 1757, 57320, 3937, NULL, '1.0000', '4.0024', '4.0024', '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 (60177, '2022-02-19', 2992, 57321, 3937, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60178, '2022-02-19', 7339, 57322, 3937, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (60179, '2022-02-19', 1888, 57323, 3937, 49369, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60180, '2022-02-19', 1912, 57324, 3937, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60181, '2022-02-19', 9778, 57325, 3937, 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 (60182, '2022-02-19', 2443, 57326, 3937, 49916, '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 (60183, '2022-02-19', 1519, 57327, 3937, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60184, '2022-02-19', 1612, 57328, 3937, 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 (60185, '2022-02-19', 2167, 57329, 3937, NULL, '1.0000', '2.1310', '2.1310', '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 (60186, '2022-02-19', 2285, 57330, 3937, NULL, '1.0000', '35.2503', '35.2503', '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 (60187, '2022-02-19', 9214, 57331, 3937, NULL, '1.0000', '10.8410', '10.8410', '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 (60188, '2022-02-19', 8517, 57332, 3937, 49638, '1.0000', '28.0200', '28.0200', '37.5000', '37.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 (60189, '2022-02-19', 1529, 57333, 3937, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60190, '2022-02-19', 7342, 57334, 3937, NULL, '1.0000', '15.6000', '15.6000', '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 (60191, '2022-02-19', 2169, 57335, 3937, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60192, '2022-02-19', 2237, 57336, 3937, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60193, '2022-02-19', 2169, 57337, 3937, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60194, '2022-02-19', 2527, 57338, 3937, 24859, '1.0000', '40.0000', '40.0000', '48.0000', '48.0000', '0.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 (60195, '2022-02-19', 2393, 57339, 3937, 48949, '1.0000', '4.0019', '4.0019', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60196, '2022-02-19', 1529, 57340, 3937, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60197, '2022-02-19', 2442, 57341, 3937, 49679, '1.0000', '7.3500', '7.3500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60198, '2022-02-19', 3027, 57342, 3937, 23977, '1.0000', '5.0000', '5.0000', '7.0000', '7.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 (60199, '2022-02-19', 1564, 57343, 3937, 50077, '2.0000', '3.4988', '3.4988', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60200, '2022-02-19', 2142, 57344, 3937, 38545, '1.0000', '57.0000', '57.0000', '77.0000', '77.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60201, '2022-02-19', 1831, 57345, 3937, 49898, '1.0000', '8.0000', '8.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 (60202, '2022-02-19', 7483, 57346, 3937, NULL, '1.0000', '0.4200', '0.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 (60203, '2022-02-19', 2345, 57347, 3937, 48652, '3.0000', '9.2733', '9.2733', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60204, '2022-02-19', 1665, 57348, 3937, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60205, '2022-02-19', 7917, 57349, 3937, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60206, '2022-02-19', 2726, 57350, 3937, NULL, '2.0000', '2.7004', '2.7004', '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 (60207, '2022-02-19', 1888, 57351, 3937, 49369, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60208, '2022-02-19', 7453, 57352, 3937, NULL, '1.0000', '21.6500', '21.6500', '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 (60209, '2022-02-19', 1855, 57353, 3937, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60210, '2022-02-19', 1595, 57354, 3937, 50231, '1.0000', '20.1715', '20.1715', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60211, '2022-02-19', 2908, 57355, 3937, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60212, '2022-02-19', 9469, 57356, 3937, NULL, '1.0000', '3.1000', '3.1000', '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 (60213, '2022-02-19', 8395, 57357, 3937, NULL, '1.0000', '0.9700', '0.9700', '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 (60214, '2022-02-19', 1839, 57358, 3937, NULL, '1.0000', '-9.7683', '-9.7683', '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 (60215, '2022-02-19', 2315, 57359, 3937, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '165.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60216, '2022-02-19', 7411, 57360, 3937, NULL, '1.0000', '1.3013', '1.3013', '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 (60217, '2022-02-19', 1912, 57361, 3937, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60218, '2022-02-19', 2159, 57362, 3937, 48926, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60219, '2022-02-19', 7411, 57363, 3937, NULL, '1.0000', '1.3013', '1.3013', '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 (60220, '2022-02-19', 9272, 57364, 3937, NULL, '1.0000', '3.1000', '3.1000', '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 (60221, '2022-02-19', 1337, 57365, 3937, NULL, '1.0000', '2.0000', '2.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 (60222, '2022-02-19', 2283, 57366, 3937, 48600, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60223, '2022-02-19', 2283, 57366, 3937, 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 (60224, '2022-02-19', 7411, 57367, 3938, NULL, '1.0000', '1.3500', '1.3500', '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 (60225, '2022-02-19', 2169, 57368, 3939, 10737, '-45.0000', '3.8397', '3.8397', '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 (60226, '2022-02-19', 2169, 57368, 3939, NULL, '46.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60227, '2022-02-19', 2360, 57369, 3939, 3862, '-69.0000', '0.5200', '0.5200', '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 (60228, '2022-02-19', 2360, 57369, 3939, NULL, '70.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60229, '2022-02-19', 2302, 57370, 3939, 2963, '-31.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 (60230, '2022-02-19', 2302, 57370, 3939, NULL, '33.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (60231, '2022-02-19', 1499, 57371, 3940, 20585, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '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 (60232, '2022-02-19', 1966, 57372, 3941, 3237, '-7.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 (60233, '2022-02-19', 1966, 57372, 3941, NULL, '8.0000', '2.7100', '2.7100', '3.5000', '3.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 (60234, '2022-02-19', 1947, 57373, 3942, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '51.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 (60235, '2022-02-19', 7428, 57374, 3943, 50471, '2.0000', '65.9358', '65.9358', '4.5000', '4.5000', '124.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60236, '2022-02-19', 2315, 57375, 3943, NULL, '2.0000', '0.8863', '0.8863', '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 (60237, '2022-02-19', 8476, 57376, 3943, NULL, '1.0000', '23.0000', '23.0000', '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 (60238, '2022-02-19', 2315, 57377, 3943, NULL, '2.0000', '0.8863', '0.8863', '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 (60239, '2022-02-19', 7432, 57378, 3943, 48810, '1.0000', '3.2300', '3.2300', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60240, '2022-02-19', 7685, 57379, 3943, NULL, '2.0000', '31.2000', '31.2000', '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 (60241, '2022-02-19', 7694, 57380, 3943, NULL, '1.0000', '4.7900', '4.7900', '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 (60242, '2022-02-19', 7547, 57381, 3943, NULL, '2.0000', '0.0000', '0.0000', '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 (60243, '2022-02-19', 8714, 57382, 3943, NULL, '1.0000', '9.3473', '9.3473', '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 (60244, '2022-02-19', 9809, 57383, 3943, 50488, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60245, '2022-02-19', 7491, 57384, 3943, 43071, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60246, '2022-02-19', 7585, 57385, 3943, NULL, '1.0000', '-3.1011', '-3.1011', '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 (60247, '2022-02-19', 7781, 57386, 3943, NULL, '6.0000', '4.2500', '4.2500', '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 (60248, '2022-02-19', 1337, 57387, 3943, 50507, '1.0000', '0.9749', '0.9749', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60249, '2022-02-19', 8154, 57388, 3943, NULL, '3.0000', '12.3000', '12.3000', '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 (60250, '2022-02-19', 2891, 57389, 3944, 33803, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60251, '2022-02-19', 7802, 57390, 3944, NULL, '1.0000', '0.9200', '0.9200', '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 (60252, '2022-02-19', 9715, 57391, 3944, NULL, '1.0000', '9.4000', '9.4000', '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 (60253, '2022-02-19', 7482, 57392, 3945, NULL, '1.0000', '3.3336', '3.3336', '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 (60254, '2022-02-19', 2069, 57393, 3945, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '15.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60255, '2022-02-19', 7672, 57394, 3945, NULL, '1.0000', '3.8200', '3.8200', '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 (60256, '2022-02-19', 7317, 57395, 3945, 50496, '1.0000', '15.8985', '15.8985', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60257, '2022-02-19', 8548, 57396, 3945, NULL, '3.0000', '12.0000', '12.0000', '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 (60258, '2022-02-19', 7612, 57397, 3945, 50495, '1.0000', '1.8249', '1.8249', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60259, '2022-02-19', 8324, 57398, 3945, NULL, '2.0000', '3.0036', '3.0036', '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 (60260, '2022-02-19', 9758, 57399, 3945, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60261, '2022-02-19', 7712, 57400, 3945, NULL, '1.0000', '-94.6722', '-94.6722', '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 (60262, '2022-02-19', 9579, 57401, 3945, 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 (60263, '2022-02-19', 8596, 57402, 3945, NULL, '1.0000', '17.0000', '17.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 (60264, '2022-02-19', 7518, 57403, 3945, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (60265, '2022-02-19', 9094, 57404, 3945, NULL, '1.0000', '5.7002', '5.7002', '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 (60266, '2022-02-19', 8097, 57405, 3945, 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 (60267, '2022-02-19', 9720, 57406, 3945, NULL, '1.0000', '10.6000', '10.6000', '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 (60268, '2022-02-19', 8039, 57407, 3945, NULL, '1.0000', '-393.2876', '-393.2876', '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 (60269, '2022-02-19', 1532, 57408, 3945, 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 (60270, '2022-02-19', 8335, 57409, 3945, NULL, '1.0000', '21.7000', '21.7000', '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 (60271, '2022-02-19', 8361, 57410, 3945, NULL, '1.0000', '7.2778', '7.2778', '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 (60272, '2022-02-19', 9785, 57411, 3945, 49664, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60273, '2022-02-19', 7564, 57412, 3946, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60274, '2022-02-19', 9335, 57413, 3946, NULL, '1.0000', '0.6600', '0.6600', '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 (60275, '2022-02-19', 8496, 57414, 3946, NULL, '1.0000', '2.4000', '2.4000', '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 (60276, '2022-02-19', 7672, 57415, 3946, NULL, '1.0000', '3.8200', '3.8200', '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 (60277, '2022-02-19', 9373, 57416, 3946, NULL, '1.0000', '46.7300', '46.7300', '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 (60278, '2022-02-19', 7419, 57417, 3946, 46210, '1.0000', '25.0061', '25.0061', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60279, '2022-02-19', 8690, 57418, 3946, 50462, '1.0000', '10.8000', '10.8000', '14.5000', '14.5000', '19.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60280, '2022-02-19', 7621, 57419, 3946, 44735, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60281, '2022-02-19', 8136, 57420, 3946, NULL, '1.0000', '29.3500', '29.3500', '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 (60282, '2022-02-19', 8119, 57421, 3946, 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 (60283, '2022-02-19', 9092, 57422, 3946, 50305, '3.0000', '0.3129', '0.3129', '0.5000', '0.5000', '79.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60284, '2022-02-19', 7641, 57423, 3946, NULL, '1.0000', '-543.6034', '-543.6034', '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 (60285, '2022-02-19', 2315, 57424, 3946, NULL, '1.0000', '0.8863', '0.8863', '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 (60286, '2022-02-19', 7674, 57425, 3946, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60287, '2022-02-19', 7428, 57426, 3946, 50471, '2.0000', '65.9358', '65.9358', '4.5000', '4.5000', '122.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60288, '2022-02-19', 7473, 57427, 3946, NULL, '3.0000', '162.5864', '162.5864', '0.6000', '0.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 (60289, '2022-02-19', 9556, 57428, 3946, NULL, '4.0000', '0.2770', '0.2770', '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 (60290, '2022-02-19', 8849, 57429, 3946, NULL, '1.0000', '1.0700', '1.0700', '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 (60291, '2022-02-19', 2075, 57430, 3946, NULL, '1.0000', '7.0000', '7.0000', '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 (60292, '2022-02-19', 8038, 57431, 3946, 50370, '1.0000', '6.4795', '6.4795', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60293, '2022-02-19', 7709, 57432, 3946, NULL, '2.0000', '58.2110', '58.2110', '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 (60294, '2022-02-19', 7704, 57433, 3946, NULL, '1.0000', '-1.5625', '-1.5625', '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 (60295, '2022-02-19', 8129, 57434, 3946, NULL, '2.0000', '29.0000', '29.0000', '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 (60296, '2022-02-19', 9095, 57435, 3946, NULL, '1.0000', '9.7084', '9.7084', '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 (60297, '2022-02-19', 9791, 57436, 3946, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '142.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60298, '2022-02-19', 7609, 57437, 3946, NULL, '1.0000', '4.4011', '4.4011', '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 (60299, '2022-02-19', 1339, 57438, 3946, NULL, '1.0000', '1.6199', '1.6199', '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 (60300, '2022-02-19', 7927, 57439, 3946, 50499, '1.0000', '11.8281', '11.8281', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60301, '2022-02-19', 2490, 57440, 3946, NULL, '1.0000', '8.6300', '8.6300', '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 (60302, '2022-02-19', 9092, 57441, 3946, 50305, '6.0000', '0.3129', '0.3129', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60303, '2022-02-19', 9534, 57442, 3946, 50375, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60304, '2022-02-19', 2332, 57443, 3946, 50453, '1.0000', '7.0810', '7.0810', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60305, '2022-02-19', 9329, 57444, 3946, NULL, '1.0000', '33.8750', '33.8750', '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 (60306, '2022-02-19', 8194, 57445, 3946, 45308, '1.0000', '5.4600', '5.4600', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60307, '2022-02-19', 8101, 57446, 3946, NULL, '3.0000', '21.7000', '21.7000', '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 (60308, '2022-02-19', 7927, 57447, 3946, 50499, '1.0000', '11.8281', '11.8281', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60309, '2022-02-19', 2699, 57448, 3946, 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 (60310, '2022-02-19', 9084, 57449, 3946, NULL, '1.0000', '8.5000', '8.5000', '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 (60311, '2022-02-19', 7363, 57450, 3946, NULL, '1.0000', '26.0000', '26.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 (60312, '2022-02-19', 7317, 57451, 3946, 50496, '1.0000', '15.8985', '15.8985', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60313, '2022-02-19', 7514, 57452, 3946, NULL, '1.0000', '97.7006', '97.7006', '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 (60314, '2022-02-19', 8136, 57453, 3946, NULL, '1.0000', '29.3500', '29.3500', '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 (60315, '2022-02-19', 9534, 57454, 3946, 50375, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60316, '2022-02-19', 7472, 57455, 3947, NULL, '1.0000', '-4.3873', '-4.3873', '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 (60317, '2022-02-19', 8497, 57456, 3947, NULL, '1.0000', '1126.4862', '1126.4862', '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 (60318, '2022-02-19', 7609, 57457, 3947, NULL, '1.0000', '4.4011', '4.4011', '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 (60319, '2022-02-19', 2284, 57458, 3947, 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 (60320, '2022-02-19', 7509, 57459, 3947, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60321, '2022-02-19', 2289, 57460, 3947, NULL, '2.0000', '0.9629', '0.9629', '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 (60322, '2022-02-19', 7640, 57461, 3947, 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 (60323, '2022-02-19', 7728, 57462, 3947, 50306, '1.0000', '1.8605', '1.8605', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60324, '2022-02-19', 7707, 57463, 3947, NULL, '1.0000', '6.1848', '6.1848', '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 (60325, '2022-02-19', 7675, 57464, 3947, NULL, '1.0000', '84.8590', '84.8590', '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 (60326, '2022-02-19', 7459, 57465, 3947, NULL, '6.0000', '674.5400', '674.5400', '3.0000', '3.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 (60327, '2022-02-19', 7544, 57466, 3947, NULL, '6.0000', '9.4300', '9.4300', '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 (60328, '2022-02-19', 7482, 57467, 3947, NULL, '1.0000', '3.3336', '3.3336', '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 (60329, '2022-02-19', 7400, 57468, 3947, NULL, '1.0000', '-37.0800', '-37.0800', '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 (60330, '2022-02-19', 9758, 57469, 3947, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60331, '2022-02-19', 7391, 57470, 3947, NULL, '1.0000', '-26.2683', '-26.2683', '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 (60332, '2022-02-19', 9214, 57471, 3947, NULL, '1.0000', '9.4452', '9.4452', '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 (60333, '2022-02-19', 9272, 57472, 3947, NULL, '1.0000', '3.1000', '3.1000', '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 (60334, '2022-02-19', 2906, 57473, 3947, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '48.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60335, '2022-02-19', 7715, 57474, 3947, 45339, '2.0000', '2.8934', '2.8934', '6.0000', '6.0000', '38.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60336, '2022-02-19', 7711, 57475, 3947, NULL, '1.0000', '-204.0169', '-204.0169', '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 (60337, '2022-02-19', 8203, 57476, 3947, NULL, '2.0000', '29.8095', '29.8095', '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 (60338, '2022-02-19', 1501, 57477, 3947, 50484, '1.0000', '2.2872', '2.2872', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60339, '2022-02-19', 2255, 57478, 3947, NULL, '1.0000', '17.4447', '17.4447', '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 (60340, '2022-02-19', 7886, 57479, 3947, NULL, '1.0000', '6.7841', '6.7841', '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 (60341, '2022-02-19', 7769, 57480, 3947, 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 (60342, '2022-02-19', 1339, 57481, 3947, NULL, '1.0000', '1.6199', '1.6199', '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 (60343, '2022-02-19', 8214, 57482, 3948, NULL, '1.0000', '16.0000', '16.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 (60344, '2022-02-19', 7741, 57483, 3948, NULL, '1.0000', '0.5684', '0.5684', '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 (60345, '2022-02-19', 1529, 57484, 3948, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60346, '2022-02-19', 9409, 57485, 3948, NULL, '1.0000', '5.7000', '5.7000', '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 (60347, '2022-02-19', 1855, 57486, 3948, 48722, '2.0000', '1.5003', '1.5003', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60348, '2022-02-19', 9762, 57487, 3948, 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 (60349, '2022-02-19', 1499, 57488, 3948, 50243, '1.0000', '0.3303', '0.3303', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60350, '2022-02-19', 2379, 57489, 3948, NULL, '1.0000', '1.0877', '1.0877', '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 (60351, '2022-02-19', 7483, 57490, 3948, 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 (60352, '2022-02-19', 7473, 57491, 3948, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '61.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60353, '2022-02-19', 8033, 57492, 3948, 49366, '1.0000', '18.1074', '18.1074', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60354, '2022-02-19', 2221, 57493, 3948, 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 (60355, '2022-02-19', 2135, 57494, 3948, NULL, '1.0000', '2.4732', '2.4732', '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 (60356, '2022-02-19', 1731, 57495, 3948, 48966, '1.0000', '19.7600', '19.7600', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60357, '2022-02-19', 7915, 57496, 3948, NULL, '1.0000', '2.8000', '2.8000', '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 (60358, '2022-02-19', 7385, 57497, 3949, 50470, '5.0000', '32.3381', '32.3381', '3.0000', '3.0000', '69.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60359, '2022-02-19', 2906, 57498, 3949, 50455, '2.0000', '2.6818', '2.6818', '4.0000', '4.0000', '46.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60360, '2022-02-19', 7680, 57499, 3949, NULL, '1.0000', '-10.8899', '-10.8899', '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 (60361, '2022-02-19', 2908, 57500, 3950, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60362, '2022-02-19', 9748, 57501, 3950, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60363, '2022-02-19', 7564, 57502, 3950, NULL, '1.0000', '0.6400', '0.6400', '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 (60364, '2022-02-20', 1665, 57503, 3951, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60365, '2022-02-20', 9482, 57504, 3951, 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 (60366, '2022-02-20', 7915, 57505, 3951, NULL, '1.0000', '2.8000', '2.8000', '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 (60367, '2022-02-20', 2167, 57506, 3951, NULL, '1.0000', '2.1310', '2.1310', '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 (60368, '2022-02-20', 2167, 57507, 3951, NULL, '1.0000', '2.1310', '2.1310', '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 (60369, '2022-02-20', 1665, 57508, 3951, 49365, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60370, '2022-02-20', 2105, 57509, 3951, 48179, '1.0000', '1.3500', '1.3500', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60371, '2022-02-20', 2169, 57510, 3951, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60372, '2022-02-20', 8328, 57511, 3951, NULL, '1.0000', '8.1000', '8.1000', '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 (60373, '2022-02-20', 8775, 57512, 3951, 49870, '1.0000', '-5.5188', '-5.5188', '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 (60374, '2022-02-20', 7925, 57513, 3951, 44060, '1.0000', '6.8000', '6.8000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60375, '2022-02-20', 2341, 57514, 3951, 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 (60376, '2022-02-20', 9794, 57515, 3951, NULL, '1.0000', '1.0800', '1.0800', '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 (60377, '2022-02-20', 7666, 57516, 3951, NULL, '1.0000', '-6.0000', '-6.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 (60378, '2022-02-20', 9729, 57517, 3951, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60379, '2022-02-20', 2169, 57518, 3951, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60380, '2022-02-20', 8208, 57519, 3951, NULL, '1.0000', '33.0000', '33.0000', '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 (60381, '2022-02-20', 2360, 57520, 3951, NULL, '110.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60382, '2022-02-20', 2315, 57521, 3951, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '164.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60383, '2022-02-20', 1904, 57522, 3951, 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 (60384, '2022-02-20', 8155, 57523, 3951, NULL, '2.0000', '65.0000', '65.0000', '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 (60385, '2022-02-20', 1760, 57524, 3951, NULL, '2.0000', '1.5900', '1.5900', '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 (60386, '2022-02-20', 2891, 57525, 3951, NULL, '1.0000', '9.5000', '9.5000', '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 (60387, '2022-02-20', 8359, 57526, 3951, NULL, '1.0000', '13.5000', '13.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 (60388, '2022-02-20', 2346, 57527, 3951, NULL, '1.0000', '5.8000', '5.8000', '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 (60389, '2022-02-20', 2379, 57528, 3951, NULL, '1.0000', '1.0877', '1.0877', '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 (60390, '2022-02-20', 1328, 57529, 3951, 32533, '1.0000', '3.1500', '3.1500', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60391, '2022-02-20', 2169, 57530, 3951, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60392, '2022-02-20', 2414, 57531, 3951, 48492, '2.0000', '3.9438', '3.9438', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60393, '2022-02-20', 9740, 57532, 3951, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60394, '2022-02-20', 1646, 57533, 3951, 49372, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60395, '2022-02-20', 2299, 57534, 3951, 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 (60396, '2022-02-20', 7333, 57535, 3951, NULL, '1.0000', '13.5000', '13.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 (60397, '2022-02-20', 2283, 57536, 3951, 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 (60398, '2022-02-20', 7666, 57537, 3951, NULL, '1.0000', '-6.0000', '-6.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 (60399, '2022-02-20', 8608, 57538, 3952, NULL, '1.0000', '0.9000', '0.9000', '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 (60400, '2022-02-20', 2315, 57539, 3952, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '162.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60401, '2022-02-20', 7483, 57540, 3952, NULL, '1.0000', '0.4200', '0.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 (60402, '2022-02-20', 1612, 57541, 3952, 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 (60403, '2022-02-20', 2169, 57542, 3952, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60404, '2022-02-20', 7459, 57543, 3952, NULL, '1.0000', '-6.1729', '-6.1729', '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 (60405, '2022-02-20', 7564, 57544, 3952, NULL, '1.0000', '0.6400', '0.6400', '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 (60406, '2022-02-20', 1762, 57545, 3952, 50082, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60407, '2022-02-20', 7608, 57546, 3952, 39812, '1.0000', '6.9800', '6.9800', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60408, '2022-02-20', 2167, 57547, 3952, NULL, '1.0000', '2.1310', '2.1310', '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 (60409, '2022-02-20', 1855, 57548, 3952, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60410, '2022-02-20', 9815, 57549, 3952, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '18.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60411, '2022-02-20', 1935, 57550, 3952, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60412, '2022-02-20', 2167, 57551, 3952, NULL, '1.0000', '2.1310', '2.1310', '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 (60413, '2022-02-20', 7769, 57552, 3952, 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 (60414, '2022-02-20', 7353, 57553, 3952, NULL, '2.0000', '0.1900', '0.1900', '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 (60415, '2022-02-20', 1665, 57554, 3952, 49365, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60416, '2022-02-20', 7411, 57555, 3952, NULL, '1.0000', '1.3013', '1.3013', '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 (60417, '2022-02-20', 2511, 57556, 3952, 48700, '1.0000', '8.8000', '8.8000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60418, '2022-02-20', 8328, 57557, 3952, NULL, '1.0000', '8.1000', '8.1000', '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 (60419, '2022-02-20', 2103, 57558, 3952, 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 (60420, '2022-02-20', 7386, 57559, 3953, NULL, '1.0000', '-2.1000', '-2.1000', '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 (60421, '2022-02-20', 7744, 57560, 3953, NULL, '1.0000', '2.7400', '2.7400', '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 (60422, '2022-02-20', 7412, 57561, 3953, NULL, '1.0000', '1.5200', '1.5200', '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 (60423, '2022-02-20', 7544, 57562, 3953, NULL, '2.0000', '9.4300', '9.4300', '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 (60424, '2022-02-20', 1841, 57563, 3953, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60425, '2022-02-20', 7472, 57564, 3953, NULL, '1.0000', '-4.3873', '-4.3873', '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 (60426, '2022-02-20', 8497, 57565, 3953, NULL, '1.0000', '1126.4862', '1126.4862', '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 (60427, '2022-02-20', 2100, 57566, 3953, NULL, '1.0000', '2.0531', '2.0531', '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 (60428, '2022-02-20', 1837, 57567, 3953, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60429, '2022-02-20', 8596, 57568, 3953, NULL, '1.0000', '17.0000', '17.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 (60430, '2022-02-20', 7514, 57569, 3953, NULL, '1.0000', '97.7006', '97.7006', '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 (60431, '2022-02-20', 7428, 57570, 3953, 50471, '3.0000', '65.9358', '65.9358', '4.5000', '4.5000', '119.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60432, '2022-02-20', 7385, 57571, 3953, 50470, '1.0000', '32.3381', '32.3381', '3.0000', '3.0000', '68.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60433, '2022-02-20', 7867, 57572, 3953, NULL, '1.0000', '2.1368', '2.1368', '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 (60434, '2022-02-20', 2950, 57573, 3953, 48347, '1.0000', '1.6429', '1.6429', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60435, '2022-02-20', 7469, 57574, 3953, NULL, '1.0000', '18.8000', '18.8000', '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 (60436, '2022-02-20', 2332, 57575, 3953, 50453, '1.0000', '7.0810', '7.0810', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60437, '2022-02-20', 7799, 57576, 3953, NULL, '1.0000', '-0.9144', '-0.9144', '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 (60438, '2022-02-20', 7901, 57577, 3953, NULL, '1.0000', '14.5000', '14.5000', '3.2000', '3.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 (60439, '2022-02-20', 7744, 57578, 3953, NULL, '2.0000', '2.7400', '2.7400', '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 (60440, '2022-02-20', 7548, 57579, 3953, NULL, '1.0000', '1.9507', '1.9507', '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 (60441, '2022-02-20', 7719, 57580, 3953, 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 (60442, '2022-02-20', 9092, 57581, 3953, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '72.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60443, '2022-02-20', 9416, 57582, 3953, 50298, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60444, '2022-02-20', 7411, 57583, 3953, NULL, '1.0000', '1.3600', '1.3600', '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 (60445, '2022-02-20', 1541, 57584, 3953, NULL, '1.0000', '19.0062', '19.0062', '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 (60446, '2022-02-20', 7638, 57585, 3953, 50552, '2.0000', '20.7772', '20.7772', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60447, '2022-02-20', 7509, 57586, 3953, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60448, '2022-02-20', 7675, 57587, 3953, NULL, '1.0000', '84.8590', '84.8590', '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 (60449, '2022-02-20', 8067, 57588, 3953, NULL, '1.0000', '15.5700', '15.5700', '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 (60450, '2022-02-20', 7685, 57589, 3953, NULL, '1.0000', '31.2000', '31.2000', '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 (60451, '2022-02-20', 2297, 57590, 3953, NULL, '1.0000', '7.9071', '7.9071', '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 (60452, '2022-02-20', 7774, 57591, 3953, NULL, '1.0000', '0.6534', '0.6534', '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 (60453, '2022-02-20', 7865, 57592, 3953, NULL, '1.0000', '1.6300', '1.6300', '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 (60454, '2022-02-20', 7428, 57593, 3953, 50471, '5.0000', '65.9358', '65.9358', '4.5000', '4.5000', '117.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60455, '2022-02-20', 7728, 57594, 3953, 50306, '1.0000', '1.8605', '1.8605', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60456, '2022-02-20', 9092, 57595, 3953, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60457, '2022-02-20', 2315, 57596, 3953, NULL, '1.0000', '0.8863', '0.8863', '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 (60458, '2022-02-20', 9092, 57597, 3953, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '72.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60459, '2022-02-20', 2289, 57598, 3953, NULL, '4.0000', '0.9629', '0.9629', '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 (60460, '2022-02-20', 1334, 57599, 3954, 230, '3.0000', '0.7000', '0.7000', '2.0000', '2.0000', '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 (60461, '2022-02-20', 2545, 57600, 3954, 6306, '-7.0000', '5.8819', '5.8819', '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 (60462, '2022-02-20', 2545, 57600, 3954, NULL, '8.0000', '5.8819', '5.8819', '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 (60463, '2022-02-20', 1328, 57601, 3954, NULL, '1.0000', '3.1500', '3.1500', '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 (60464, '2022-02-20', 1837, 57602, 3954, 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 (60465, '2022-02-20', 2416, 57603, 3954, 4745, '-19.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 (60466, '2022-02-20', 2416, 57603, 3954, NULL, '20.0000', '1.2000', '1.2000', '1.5000', '1.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 (60467, '2022-02-20', 9688, 57604, 3954, NULL, '1.0000', '3.4000', '3.4000', '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 (60468, '2022-02-20', 1493, 57605, 3954, 9747, '-16.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 (60469, '2022-02-20', 1493, 57605, 3954, NULL, '17.0000', '1.5425', '1.5425', '3.0000', '3.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 (60470, '2022-02-20', 1602, 57606, 3954, 5897, '-108.0000', '6.7859', '6.7859', '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 (60471, '2022-02-20', 1602, 57606, 3954, NULL, '109.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-109.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60472, '2022-02-20', 2610, 57607, 3954, 10021, '-2.0000', '40.0000', '40.0000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60473, '2022-02-20', 2610, 57607, 3954, NULL, '3.0000', '40.0000', '40.0000', '52.0000', '52.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 (60474, '2022-02-20', 1346, 57608, 3954, 21942, '-129.0000', '1.0594', '1.0594', '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 (60475, '2022-02-20', 1346, 57608, 3954, NULL, '131.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-131.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60476, '2022-02-20', 1647, 57609, 3954, 3218, '-6.0000', '4.7200', '4.7200', '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 (60477, '2022-02-20', 1647, 57609, 3954, NULL, '7.0000', '4.7200', '4.7200', '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 (60478, '2022-02-20', 2236, 57610, 3954, 2780, '-14.0000', '5.6599', '5.6599', '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 (60479, '2022-02-20', 2236, 57610, 3954, NULL, '15.0000', '5.6599', '5.6599', '8.0000', '8.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 (60480, '2022-02-20', 9435, 57611, 3954, NULL, '1.0000', '30.0000', '30.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 (60481, '2022-02-20', 1960, 57612, 3954, NULL, '1.0000', '3.5600', '3.5600', '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 (60482, '2022-02-20', 1420, 57613, 3954, 20658, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (60483, '2022-02-20', 1999, 57614, 3954, 6362, '-8.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 (60484, '2022-02-20', 1999, 57614, 3954, NULL, '9.0000', '6.0000', '6.0000', '8.0000', '8.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 (60485, '2022-02-20', 2237, 57615, 3954, 2781, '-41.0000', '1.0600', '1.0600', '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 (60486, '2022-02-20', 2237, 57615, 3954, NULL, '42.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60487, '2022-02-20', 2679, 57616, 3954, 12162, '-2.0000', '32.3500', '32.3500', '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 (60488, '2022-02-20', 2679, 57616, 3954, NULL, '3.0000', '32.3500', '32.3500', '44.0000', '44.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 (60489, '2022-02-20', 1313, 57617, 3954, 21496, '2.0000', '2.6700', '2.6700', '2.0000', '2.0000', '22.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 (60490, '2022-02-20', 9737, 57618, 3954, NULL, '1.0000', '7.3000', '7.3000', '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 (60491, '2022-02-20', 2169, 57619, 3954, 10737, '-46.0000', '3.8397', '3.8397', '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 (60492, '2022-02-20', 2169, 57619, 3954, NULL, '47.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (60493, '2022-02-20', 1449, 57620, 3954, 5569, '-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 (60494, '2022-02-20', 1449, 57620, 3954, 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 (60495, '2022-02-20', 1620, 57621, 3954, 8955, '4.0000', '408.8259', '408.8259', '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 (60496, '2022-02-20', 2416, 57622, 3954, 4745, '-19.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 (60497, '2022-02-20', 2416, 57622, 3954, NULL, '20.0000', '1.2000', '1.2000', '1.5000', '1.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 (60498, '2022-02-20', 1425, 57623, 3954, NULL, '1.0000', '6.4405', '6.4405', '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 (60499, '2022-02-20', 2237, 57624, 3954, 2781, '-41.0000', '1.0600', '1.0600', '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 (60500, '2022-02-20', 2237, 57624, 3954, NULL, '42.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60501, '2022-02-20', 2753, 57625, 3955, 45602, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60502, '2022-02-20', 8203, 57626, 3955, NULL, '6.0000', '29.8095', '29.8095', '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 (60503, '2022-02-20', 9273, 57627, 3955, NULL, '1.0000', '0.3500', '0.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 (60504, '2022-02-20', 8918, 57628, 3955, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60505, '2022-02-20', 8923, 57629, 3955, NULL, '2.0000', '7.2500', '7.2500', '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 (60506, '2022-02-20', 7689, 57630, 3955, NULL, '1.0000', '9.1000', '9.1000', '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 (60507, '2022-02-20', 7509, 57631, 3955, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60508, '2022-02-20', 2299, 57632, 3955, 48022, '1.0000', '6.5400', '6.5400', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60509, '2022-02-20', 7780, 57633, 3955, NULL, '1.0000', '-8.7461', '-8.7461', '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 (60510, '2022-02-20', 7899, 57634, 3955, NULL, '1.0000', '3.3000', '3.3000', '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 (60511, '2022-02-20', 7704, 57635, 3955, NULL, '1.0000', '-1.5625', '-1.5625', '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 (60512, '2022-02-20', 7762, 57636, 3955, 48006, '1.0000', '4.5695', '4.5695', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60513, '2022-02-20', 1947, 57637, 3955, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60514, '2022-02-20', 2655, 57638, 3955, 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 (60515, '2022-02-20', 7548, 57639, 3955, NULL, '1.0000', '1.9507', '1.9507', '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 (60516, '2022-02-20', 9740, 57640, 3955, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60517, '2022-02-20', 9758, 57641, 3955, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60518, '2022-02-20', 7591, 57642, 3955, NULL, '1.0000', '2.7500', '2.7500', '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 (60519, '2022-02-20', 7444, 57643, 3955, NULL, '1.0000', '2.0190', '2.0190', '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 (60520, '2022-02-20', 7641, 57644, 3955, NULL, '1.0000', '-543.6034', '-543.6034', '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 (60521, '2022-02-20', 7412, 57645, 3955, NULL, '1.0000', '1.5200', '1.5200', '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 (60522, '2022-02-20', 1762, 57646, 3955, 45800, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60523, '2022-02-20', 1841, 57647, 3955, 48007, '4.0000', '0.1792', '0.1792', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60524, '2022-02-20', 7544, 57648, 3955, NULL, '4.0000', '9.4300', '9.4300', '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 (60525, '2022-02-20', 2289, 57649, 3955, NULL, '2.0000', '0.9629', '0.9629', '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 (60526, '2022-02-20', 8372, 57650, 3955, 42771, '1.0000', '9.1160', '9.1160', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60527, '2022-02-20', 7591, 57651, 3955, NULL, '1.0000', '2.7500', '2.7500', '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 (60528, '2022-02-20', 7379, 57652, 3955, NULL, '1.0000', '134.5492', '134.5492', '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 (60529, '2022-02-20', 9337, 57653, 3955, 48301, '5.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60530, '2022-02-20', 7848, 57654, 3955, NULL, '1.0000', '-17.3215', '-17.3215', '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 (60531, '2022-02-20', 9505, 57655, 3955, 48832, '1.0000', '77.0000', '77.0000', '102.0000', '102.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60532, '2022-02-20', 8702, 57656, 3955, NULL, '1.0000', '3.6700', '3.6700', '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 (60533, '2022-02-20', 9394, 57657, 3955, NULL, '1.0000', '5.5000', '5.5000', '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 (60534, '2022-02-20', 2962, 57658, 3955, 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 (60535, '2022-02-20', 7781, 57659, 3955, NULL, '3.0000', '4.2500', '4.2500', '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 (60536, '2022-02-20', 7657, 57660, 3955, NULL, '1.0000', '-70.3566', '-70.3566', '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 (60537, '2022-02-20', 7719, 57661, 3955, 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 (60538, '2022-02-20', 7518, 57662, 3955, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (60539, '2022-02-20', 7704, 57663, 3955, NULL, '1.0000', '-1.5625', '-1.5625', '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 (60540, '2022-02-20', 7641, 57664, 3955, NULL, '1.0000', '-543.6034', '-543.6034', '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 (60541, '2022-02-20', 7548, 57665, 3956, NULL, '1.0000', '1.9507', '1.9507', '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 (60542, '2022-02-20', 7482, 57666, 3956, NULL, '1.0000', '3.3336', '3.3336', '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 (60543, '2022-02-20', 7744, 57667, 3956, NULL, '1.0000', '2.7400', '2.7400', '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 (60544, '2022-02-20', 7641, 57668, 3956, NULL, '1.0000', '-543.6034', '-543.6034', '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 (60545, '2022-02-20', 9330, 57669, 3956, 50446, '1.0000', '8.6288', '8.6288', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60546, '2022-02-20', 7523, 57670, 3956, NULL, '1.0000', '9.7000', '9.7000', '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 (60547, '2022-02-20', 8596, 57671, 3956, NULL, '1.0000', '17.0000', '17.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 (60548, '2022-02-20', 9740, 57672, 3956, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60549, '2022-02-20', 2075, 57673, 3956, NULL, '1.0000', '7.0000', '7.0000', '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 (60550, '2022-02-20', 8539, 57674, 3956, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '53.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60551, '2022-02-20', 7876, 57675, 3956, 49823, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60552, '2022-02-20', 7514, 57676, 3956, NULL, '2.0000', '97.7006', '97.7006', '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 (60553, '2022-02-20', 7560, 57677, 3956, NULL, '1.0000', '-165127.7734', '-165127.7734', '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 (60554, '2022-02-20', 7784, 57678, 3956, NULL, '2.0000', '4.2782', '4.2782', '5.5800', '5.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60555, '2022-02-20', 2036, 57679, 3957, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '5.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 (60556, '2022-02-20', 1425, 57680, 3957, 50525, '1.0000', '7.5328', '7.5328', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60557, '2022-02-20', 1665, 57681, 3957, 48596, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60558, '2022-02-20', 2379, 57682, 3957, NULL, '1.0000', '1.0877', '1.0877', '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 (60559, '2022-02-20', 1837, 57683, 3957, NULL, '1.0000', '1.5967', '1.5967', '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 (60560, '2022-02-20', 7394, 57684, 3957, NULL, '1.0000', '12.7400', '12.7400', '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 (60561, '2022-02-20', 3025, 57685, 3957, 44157, '2.0000', '2.9545', '2.9545', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60562, '2022-02-20', 1935, 57686, 3957, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60563, '2022-02-20', 1349, 57687, 3957, NULL, '1.0000', '35.0700', '35.0700', '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 (60564, '2022-02-20', 7741, 57688, 3957, NULL, '1.0000', '0.5684', '0.5684', '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 (60565, '2022-02-20', 1518, 57689, 3957, 49331, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60566, '2022-02-20', 1425, 57690, 3957, 50525, '1.0000', '7.5328', '7.5328', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60567, '2022-02-20', 1855, 57691, 3957, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60568, '2022-02-20', 2633, 57692, 3957, 50528, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60569, '2022-02-20', 2315, 57693, 3957, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '160.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60570, '2022-02-20', 7802, 57694, 3957, NULL, '3.0000', '0.9200', '0.9200', '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 (60571, '2022-02-20', 1590, 57695, 3957, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60572, '2022-02-20', 7741, 57696, 3957, NULL, '1.0000', '0.5684', '0.5684', '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 (60573, '2022-02-20', 2169, 57697, 3957, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60574, '2022-02-20', 7612, 57698, 3957, NULL, '1.0000', '1.7300', '1.7300', '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 (60575, '2022-02-20', 7385, 57699, 3957, 50524, '3.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60576, '2022-02-20', 8674, 57700, 3958, NULL, '1.0000', '28.8900', '28.8900', '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 (60577, '2022-02-20', 9796, 57701, 3959, 49880, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60578, '2022-02-20', 2733, 57702, 3959, 19362, '1.0000', '7.5000', '7.5000', '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 (60579, '2022-02-20', 8984, 57703, 3959, NULL, '1.0000', '-100.8495', '-100.8495', '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 (60580, '2022-02-20', 2908, 57704, 3959, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '32.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60581, '2022-02-21', 1512, 57705, 3960, 48872, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60582, '2022-02-21', 9783, 57706, 3960, NULL, '1.0000', '17.6000', '17.6000', '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 (60583, '2022-02-21', 2948, 57707, 3960, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60584, '2022-02-21', 2237, 57708, 3960, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60585, '2022-02-21', 2277, 57709, 3960, NULL, '1.0000', '0.9399', '0.9399', '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 (60586, '2022-02-21', 7741, 57710, 3960, NULL, '1.0000', '0.5684', '0.5684', '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 (60587, '2022-02-21', 7925, 57711, 3960, NULL, '1.0000', '6.8000', '6.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 (60588, '2022-02-21', 7368, 57712, 3960, 50521, '1.0000', '14.7500', '14.7500', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60589, '2022-02-21', 2169, 57713, 3960, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60590, '2022-02-21', 9592, 57714, 3960, 48715, '1.0000', '3.2000', '3.2000', '4.2000', '4.2000', '19.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60591, '2022-02-21', 2262, 57715, 3960, 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 (60592, '2022-02-21', 1947, 57716, 3960, 34039, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60593, '2022-02-21', 9806, 57717, 3960, 50121, '1.0000', '1.0800', '1.0800', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60594, '2022-02-21', 2758, 57718, 3960, 22379, '2.0000', '5.4000', '5.4000', '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 (60595, '2022-02-21', 1346, 57719, 3960, 42807, '3.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60596, '2022-02-21', 1346, 57719, 3960, 39869, '4.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60597, '2022-02-21', 2103, 57720, 3960, 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 (60598, '2022-02-21', 1510, 57721, 3960, NULL, '1.0000', '9.5885', '9.5885', '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 (60599, '2022-02-21', 2895, 57722, 3960, NULL, '1.0000', '11.6000', '11.6000', '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 (60600, '2022-02-21', 9727, 57723, 3960, 47071, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60601, '2022-02-21', 8984, 57724, 3960, NULL, '2.0000', '-100.8495', '-100.8495', '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 (60602, '2022-02-21', 1528, 57725, 3960, 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 (60603, '2022-02-21', 1310, 57726, 3961, NULL, '10.0000', '0.3700', '0.3700', '0.6000', '0.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 (60604, '2022-02-21', 2109, 57727, 3961, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '77.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 (60605, '2022-02-21', 1736, 57728, 3961, 7382, '-4.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60606, '2022-02-21', 1736, 57728, 3961, NULL, '5.0000', '-6.2282', '-6.2282', '42.0000', '42.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 (60607, '2022-02-21', 1840, 57729, 3961, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (60608, '2022-02-21', 1841, 57730, 3961, 645, '4.0000', '142.5780', '142.5780', '0.5000', '0.5000', '0.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 (60609, '2022-02-21', 2937, 57731, 3961, NULL, '1.0000', '5.3700', '5.3700', '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 (60610, '2022-02-21', 1584, 57732, 3961, 7601, '-33.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 (60611, '2022-02-21', 1584, 57732, 3961, NULL, '35.0000', '90.0000', '90.0000', '9.0000', '9.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60612, '2022-02-21', 9748, 57733, 3961, NULL, '1.0000', '2.5300', '2.5300', '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 (60613, '2022-02-21', 2280, 57734, 3961, 33794, '1.0000', '3.0700', '3.0700', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60614, '2022-02-21', 1510, 57735, 3962, NULL, '1.0000', '9.5885', '9.5885', '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 (60615, '2022-02-21', 1863, 57736, 3962, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60616, '2022-02-21', 9653, 57737, 3963, NULL, '1.0000', '46.0000', '46.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 (60617, '2022-02-21', 1584, 57738, 3963, 7601, '-35.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 (60618, '2022-02-21', 1584, 57738, 3963, NULL, '36.0000', '90.0000', '90.0000', '9.0000', '9.0000', '-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 (60619, '2022-02-21', 2375, 57739, 3963, 22291, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '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 (60620, '2022-02-21', 2395, 57740, 3963, 4202, '-3.0000', '27.0000', '27.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 (60621, '2022-02-21', 2395, 57740, 3963, NULL, '4.0000', '27.0000', '27.0000', '35.0000', '35.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 (60622, '2022-02-21', 2363, 57741, 3964, 45806, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60623, '2022-02-21', 8180, 57742, 3964, NULL, '3.0000', '4.4000', '4.4000', '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 (60624, '2022-02-21', 2761, 57743, 3964, 50547, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60625, '2022-02-21', 1563, 57744, 3964, NULL, '1.0000', '4.9000', '4.9000', '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 (60626, '2022-02-21', 7411, 57745, 3964, NULL, '1.0000', '1.3600', '1.3600', '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 (60627, '2022-02-21', 3001, 57746, 3964, NULL, '1.0000', '1.5000', '1.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 (60628, '2022-02-21', 7507, 57747, 3964, NULL, '3.0000', '6.5000', '6.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 (60629, '2022-02-21', 8825, 57748, 3964, NULL, '1.0000', '11.9150', '11.9150', '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 (60630, '2022-02-21', 9329, 57749, 3964, NULL, '1.0000', '51.2949', '51.2949', '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 (60631, '2022-02-21', 9407, 57750, 3964, 44047, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60632, '2022-02-21', 7428, 57751, 3964, 50471, '2.0000', '65.9358', '65.9358', '4.5000', '4.5000', '112.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60633, '2022-02-21', 2315, 57752, 3964, NULL, '1.0000', '0.8863', '0.8863', '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 (60634, '2022-02-21', 8539, 57753, 3964, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '51.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60635, '2022-02-21', 2069, 57754, 3964, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60636, '2022-02-21', 8288, 57755, 3964, NULL, '5.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (60637, '2022-02-21', 7330, 57756, 3964, NULL, '1.0000', '3.0500', '3.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 (60638, '2022-02-21', 7423, 57757, 3964, NULL, '1.0000', '13.2000', '13.2000', '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 (60639, '2022-02-21', 9740, 57758, 3964, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60640, '2022-02-21', 1578, 57759, 3964, 49287, '1.0000', '2.0643', '2.0643', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60641, '2022-02-21', 9794, 57760, 3964, NULL, '2.0000', '1.0800', '1.0800', '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 (60642, '2022-02-21', 7608, 57761, 3964, 50394, '1.0000', '10.2344', '10.2344', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60643, '2022-02-21', 2100, 57762, 3964, NULL, '1.0000', '2.0531', '2.0531', '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 (60644, '2022-02-21', 1498, 57763, 3964, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '61.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60645, '2022-02-21', 9785, 57764, 3964, 49664, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60646, '2022-02-21', 8064, 57765, 3964, 50541, '1.0000', '4.9144', '4.9144', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60647, '2022-02-21', 7695, 57766, 3964, NULL, '1.0000', '3.9400', '3.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 (60648, '2022-02-21', 8208, 57767, 3964, NULL, '6.0000', '33.0000', '33.0000', '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 (60649, '2022-02-21', 7584, 57768, 3964, NULL, '1.0000', '3.8100', '3.8100', '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 (60650, '2022-02-21', 2289, 57769, 3964, NULL, '6.0000', '0.9629', '0.9629', '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 (60651, '2022-02-21', 7690, 57770, 3964, NULL, '1.0000', '5.3000', '5.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 (60652, '2022-02-21', 8925, 57771, 3964, 45584, '1.0000', '2.4000', '2.4000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60653, '2022-02-21', 9103, 57772, 3964, NULL, '1.0000', '32.6700', '32.6700', '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 (60654, '2022-02-21', 7316, 57773, 3964, 50386, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '40.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60655, '2022-02-21', 2769, 57774, 3964, 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 (60656, '2022-02-21', 7593, 57775, 3964, 43078, '1.0000', '2.5263', '2.5263', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60657, '2022-02-21', 2251, 57776, 3964, 49817, '1.0000', '11.7094', '11.7094', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60658, '2022-02-21', 7521, 57777, 3964, NULL, '1.0000', '8.7600', '8.7600', '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 (60659, '2022-02-21', 7952, 57778, 3964, NULL, '1.0000', '62.3792', '62.3792', '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 (60660, '2022-02-21', 2770, 57779, 3964, NULL, '1.0000', '53.4000', '53.4000', '70.5000', '70.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60661, '2022-02-21', 8775, 57780, 3964, 43940, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60662, '2022-02-21', 9092, 57781, 3964, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60663, '2022-02-21', 9740, 57782, 3964, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60664, '2022-02-21', 8746, 57783, 3964, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60665, '2022-02-21', 7344, 57784, 3964, 45299, '5.0000', '-333.7508', '-333.7508', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60666, '2022-02-21', 7347, 57785, 3964, 45840, '1.0000', '31.3300', '31.3300', '30.5000', '30.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60667, '2022-02-21', 9748, 57786, 3964, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60668, '2022-02-21', 1578, 57787, 3964, 49287, '1.0000', '2.0643', '2.0643', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60669, '2022-02-21', 9761, 57788, 3964, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60670, '2022-02-21', 2256, 57789, 3964, 47953, '1.0000', '14.5250', '14.5250', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60671, '2022-02-21', 9320, 57790, 3964, 47905, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60672, '2022-02-21', 1644, 57791, 3964, 43093, '1.0000', '38.3811', '38.3811', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60673, '2022-02-21', 3072, 57792, 3964, 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 (60674, '2022-02-21', 1530, 57793, 3964, 45839, '1.0000', '28.7000', '28.7000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60675, '2022-02-21', 2648, 57794, 3964, NULL, '1.0000', '3.5337', '3.5337', '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 (60676, '2022-02-21', 8745, 57795, 3964, NULL, '1.0000', '7.0560', '7.0560', '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 (60677, '2022-02-21', 7641, 57796, 3964, NULL, '1.0000', '-543.6034', '-543.6034', '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 (60678, '2022-02-21', 9092, 57797, 3964, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60679, '2022-02-21', 1501, 57798, 3964, 50484, '1.0000', '2.2872', '2.2872', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60680, '2022-02-21', 7674, 57799, 3964, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60681, '2022-02-21', 1498, 57800, 3964, 45580, '2.0000', '0.3790', '0.3790', '0.6000', '0.6000', '61.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60682, '2022-02-21', 7472, 57801, 3964, NULL, '1.0000', '-4.3873', '-4.3873', '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 (60683, '2022-02-21', 7867, 57802, 3964, NULL, '3.0000', '2.1368', '2.1368', '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 (60684, '2022-02-21', 1837, 57803, 3965, 46752, '2.0000', '0.4981', '0.4981', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60685, '2022-02-21', 1872, 57804, 3965, 49551, '1.0000', '9.6617', '9.6617', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60686, '2022-02-21', 1545, 57805, 3965, 10550, '1.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 (60687, '2022-02-21', 1674, 57806, 3965, 49556, '1.0000', '14.5864', '14.5864', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60688, '2022-02-21', 1868, 57807, 3965, 4997, '1.0000', '4.0300', '4.0300', '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 (60689, '2022-02-21', 9794, 57808, 3965, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '95.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60690, '2022-02-21', 2384, 57809, 3965, 46599, '1.0000', '0.3266', '0.3266', '0.7000', '0.7000', '45.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60691, '2022-02-21', 7790, 57810, 3965, 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 (60692, '2022-02-21', 1863, 57811, 3965, 49847, '2.0000', '1.2686', '1.2686', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60693, '2022-02-21', 9750, 57812, 3965, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '42.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60694, '2022-02-21', 2730, 57813, 3965, 21547, '2.0000', '1.2000', '1.2000', '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 (60695, '2022-02-21', 9731, 57814, 3965, 45993, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 337);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60696, '2022-02-21', 2668, 57815, 3965, 40604, '1.0000', '10.0994', '10.0994', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60697, '2022-02-21', 2106, 57816, 3965, 6018, '1.0000', '0.9900', '0.9900', '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 (60698, '2022-02-21', 2346, 57817, 3965, 47846, '1.0000', '5.6828', '5.6828', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 348);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60699, '2022-02-21', 1562, 57818, 3965, 1669, '1.0000', '5.1300', '5.1300', '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 (60700, '2022-02-21', 1331, 57819, 3965, 44503, '1.0000', '4.2366', '4.2366', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60701, '2022-02-21', 2242, 57820, 3965, 49112, '2.0000', '0.6543', '0.6543', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60702, '2022-02-21', 1328, 57821, 3965, 49464, '1.0000', '3.8357', '3.8357', '5.5000', '5.5000', '11.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60703, '2022-02-21', 1701, 57822, 3965, 45107, '1.0000', '15.2229', '15.2229', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60704, '2022-02-21', 7741, 57823, 3965, NULL, '1.0000', '-1.3429', '-1.3429', '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 (60705, '2022-02-21', 1950, 57824, 3965, 6005, '1.0000', '10.0000', '10.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 (60706, '2022-02-21', 2572, 57825, 3965, 16687, '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 (60707, '2022-02-21', 2821, 57826, 3965, 49245, '1.0000', '3.4487', '3.4487', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60708, '2022-02-21', 2615, 57827, 3965, 14562, '1.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 (60709, '2022-02-21', 9732, 57828, 3965, 46033, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60710, '2022-02-21', 8984, 57829, 3965, NULL, '1.0000', '304.7000', '304.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 (60711, '2022-02-21', 2167, 57830, 3965, 45090, '1.0000', '2.3022', '2.3022', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60712, '2022-02-21', 2384, 57831, 3965, 46599, '3.0000', '0.3266', '0.3266', '0.7000', '0.7000', '43.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60713, '2022-02-21', 1831, 57832, 3965, 50007, '1.0000', '6.2226', '6.2226', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60714, '2022-02-21', 2020, 57833, 3966, NULL, '1.0000', '10.1614', '10.1614', '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 (60715, '2022-02-21', 2466, 57834, 3966, 23141, '1.0000', '14.3175', '14.3175', '22.0000', '22.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 (60716, '2022-02-21', 2283, 57835, 3966, 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 (60717, '2022-02-21', 2360, 57836, 3966, NULL, '1.0000', '0.5200', '0.5200', '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 (60718, '2022-02-21', 7514, 57837, 3966, NULL, '1.0000', '2.2500', '2.2500', '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 (60719, '2022-02-21', 8311, 57838, 3966, NULL, '1.0000', '12.5900', '12.5900', '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 (60720, '2022-02-21', 1912, 57839, 3966, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60721, '2022-02-21', 7412, 57840, 3966, NULL, '1.0000', '1.5200', '1.5200', '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 (60722, '2022-02-21', 2511, 57841, 3966, 48509, '1.0000', '8.8000', '8.8000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60723, '2022-02-21', 9748, 57842, 3966, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60724, '2022-02-21', 1755, 57843, 3966, 48488, '1.0000', '5.8128', '5.8128', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60725, '2022-02-21', 2315, 57844, 3966, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '159.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60726, '2022-02-21', 1856, 57845, 3966, 50520, '1.0000', '5.5569', '5.5569', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60727, '2022-02-21', 7741, 57846, 3966, NULL, '1.0000', '0.5684', '0.5684', '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 (60728, '2022-02-21', 8208, 57847, 3966, NULL, '2.0000', '33.0000', '33.0000', '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 (60729, '2022-02-21', 1612, 57848, 3966, 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 (60730, '2022-02-21', 8205, 57849, 3966, NULL, '1.0000', '2.9500', '2.9500', '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 (60731, '2022-02-21', 1580, 57850, 3966, 48178, '2.0000', '0.9900', '0.9900', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60732, '2022-02-21', 1908, 57851, 3966, 48495, '1.0000', '0.9032', '0.9032', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60733, '2022-02-21', 9695, 57852, 3966, 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 (60734, '2022-02-21', 8984, 57853, 3966, NULL, '1.0000', '-100.8495', '-100.8495', '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 (60735, '2022-02-21', 8740, 57854, 3966, 40007, '1.0000', '1.8343', '1.8343', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60736, '2022-02-21', 9695, 57855, 3966, 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 (60737, '2022-02-21', 2289, 57856, 3966, 49873, '2.0000', '0.2222', '0.2222', '0.5000', '0.5000', '37.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60738, '2022-02-21', 1409, 57857, 3966, 49522, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 383);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60739, '2022-02-21', 7411, 57858, 3966, NULL, '1.0000', '1.3013', '1.3013', '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 (60740, '2022-02-21', 2169, 57859, 3966, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60741, '2022-02-21', 1520, 57860, 3966, 48888, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60742, '2022-02-21', 2986, 57861, 3966, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60743, '2022-02-21', 8984, 57862, 3966, NULL, '1.0000', '-100.8495', '-100.8495', '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 (60744, '2022-02-21', 1665, 57863, 3966, 48596, '3.0000', '1.0999', '1.0999', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60745, '2022-02-21', 9794, 57864, 3966, NULL, '2.0000', '1.0800', '1.0800', '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 (60746, '2022-02-21', 2315, 57865, 3966, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '159.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60747, '2022-02-21', 1415, 57866, 3966, 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 (60748, '2022-02-21', 2169, 57867, 3966, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60749, '2022-02-21', 3002, 57868, 3966, 48162, '2.0000', '6.2000', '6.2000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60750, '2022-02-21', 7459, 57869, 3966, NULL, '1.0000', '-6.1729', '-6.1729', '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 (60751, '2022-02-21', 1855, 57870, 3966, 48722, '1.0000', '1.5003', '1.5003', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60752, '2022-02-21', 2660, 57871, 3966, 49361, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60753, '2022-02-21', 8984, 57872, 3966, NULL, '1.0000', '-100.8495', '-100.8495', '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 (60754, '2022-02-21', 9482, 57873, 3966, 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 (60755, '2022-02-21', 2169, 57874, 3966, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60756, '2022-02-21', 2167, 57875, 3966, NULL, '1.0000', '2.1310', '2.1310', '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 (60757, '2022-02-21', 7802, 57876, 3966, NULL, '2.0000', '0.9200', '0.9200', '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 (60758, '2022-02-21', 9743, 57877, 3966, 50238, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60759, '2022-02-21', 1690, 57878, 3966, 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 (60760, '2022-02-21', 9512, 57879, 3966, NULL, '1.0000', '1.3100', '1.3100', '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 (60761, '2022-02-21', 1901, 57880, 3966, NULL, '2.0000', '2.0100', '2.0100', '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 (60762, '2022-02-21', 2234, 57881, 3966, 49356, '1.0000', '15.8190', '15.8190', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60763, '2022-02-21', 3029, 57882, 3966, NULL, '1.0000', '4.7700', '4.7700', '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 (60764, '2022-02-21', 2169, 57883, 3966, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60765, '2022-02-21', 2237, 57884, 3966, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60766, '2022-02-21', 9735, 57885, 3966, 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 (60767, '2022-02-21', 1914, 57886, 3966, 48161, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60768, '2022-02-21', 2169, 57887, 3966, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60769, '2022-02-21', 7980, 57888, 3966, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (60770, '2022-02-21', 8187, 57889, 3966, NULL, '3.0000', '14.3900', '14.3900', '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 (60771, '2022-02-21', 1493, 57890, 3966, 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 (60772, '2022-02-21', 1339, 57891, 3966, NULL, '1.0000', '1.2000', '1.2000', '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 (60773, '2022-02-21', 1527, 57892, 3966, 24924, '1.0000', '13.1000', '13.1000', '18.0000', '18.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 (60774, '2022-02-21', 1572, 57893, 3966, 48878, '1.0000', '1.9556', '1.9556', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60775, '2022-02-21', 8420, 57894, 3966, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '18.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60776, '2022-02-21', 8984, 57895, 3966, NULL, '1.0000', '-100.8495', '-100.8495', '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 (60777, '2022-02-21', 1904, 57896, 3966, 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 (60778, '2022-02-21', 1728, 57897, 3966, 19324, '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 (60779, '2022-02-21', 9743, 57898, 3967, 46041, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60780, '2022-02-21', 2089, 57899, 3967, 46581, '1.0000', '6.7500', '6.7500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60781, '2022-02-21', 1665, 57900, 3967, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60782, '2022-02-21', 7523, 57901, 3968, NULL, '1.0000', '9.7000', '9.7000', '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 (60783, '2022-02-21', 7518, 57902, 3968, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (60784, '2022-02-21', 8596, 57903, 3968, NULL, '2.0000', '17.0000', '17.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 (60785, '2022-02-21', 7719, 57904, 3968, NULL, '2.0000', '6.0000', '6.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 (60786, '2022-02-21', 7593, 57905, 3968, 43078, '1.0000', '2.5263', '2.5263', '5.5000', '5.5000', '15.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60787, '2022-02-21', 7509, 57906, 3968, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60788, '2022-02-21', 2427, 57907, 3968, NULL, '1.0000', '5.8000', '5.8000', '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 (60789, '2022-02-21', 9092, 57908, 3968, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '64.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60790, '2022-02-21', 7608, 57909, 3968, NULL, '1.0000', '10.2344', '10.2344', '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 (60791, '2022-02-21', 9748, 57910, 3968, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60792, '2022-02-21', 7736, 57911, 3968, NULL, '1.0000', '5.1374', '5.1374', '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 (60793, '2022-02-21', 7709, 57912, 3968, NULL, '2.0000', '60.5887', '60.5887', '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 (60794, '2022-02-21', 1806, 57913, 3968, NULL, '2.0000', '27.3200', '27.3200', '37.5000', '37.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 (60795, '2022-02-21', 2467, 57914, 3968, NULL, '1.0000', '-33.6600', '-33.6600', '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 (60796, '2022-02-21', 7411, 57915, 3968, NULL, '1.0000', '1.3600', '1.3600', '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 (60797, '2022-02-21', 9329, 57916, 3968, NULL, '1.0000', '51.2949', '51.2949', '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 (60798, '2022-02-21', 7707, 57917, 3968, NULL, '1.0000', '6.1848', '6.1848', '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 (60799, '2022-02-21', 7762, 57918, 3968, 48006, '1.0000', '4.5695', '4.5695', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60800, '2022-02-21', 1585, 57919, 3968, 45767, '1.0000', '9.2525', '9.2525', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60801, '2022-02-21', 8596, 57920, 3968, NULL, '1.0000', '17.0000', '17.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 (60802, '2022-02-21', 8607, 57921, 3968, 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 (60803, '2022-02-21', 7846, 57922, 3968, 37422, '3.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60804, '2022-02-21', 8415, 57923, 3968, 50304, '2.0000', '4.3750', '4.3750', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60805, '2022-02-21', 1425, 57924, 3969, NULL, '1.0000', '6.4405', '6.4405', '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 (60806, '2022-02-21', 2315, 57925, 3969, 2735, '-165.0000', '0.3300', '0.3300', '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 (60807, '2022-02-21', 2315, 57925, 3969, NULL, '167.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-167.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60808, '2022-02-21', 8214, 57926, 3969, NULL, '1.0000', '16.0000', '16.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 (60809, '2022-02-21', 2360, 57927, 3970, 49990, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '46.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60810, '2022-02-21', 1665, 57928, 3970, 49242, '1.0000', '1.1871', '1.1871', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60811, '2022-02-21', 9578, 57929, 3971, 47854, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 349);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60812, '2022-02-21', 2132, 57930, 3972, 4280, '-2.0000', '21.0000', '21.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 (60813, '2022-02-21', 2132, 57930, 3972, NULL, '3.0000', '21.0000', '21.0000', '24.0000', '24.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 (60814, '2022-02-21', 2131, 57931, 3972, 4279, '-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 (60815, '2022-02-21', 2131, 57931, 3972, NULL, '3.0000', '12.0000', '12.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 (60816, '2022-02-21', 2660, 57932, 3973, 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 (60817, '2022-02-21', 2315, 57933, 3973, 2735, '-167.0000', '0.3300', '0.3300', '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 (60818, '2022-02-21', 2315, 57933, 3973, NULL, '168.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-168.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60819, '2022-02-22', 7318, 57934, 3974, 48729, '1.0000', '10.5283', '10.5283', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60820, '2022-02-22', 1950, 57935, 3974, NULL, '1.0000', '3.4496', '3.4496', '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 (60821, '2022-02-22', 1687, 57936, 3974, 49353, '1.0000', '11.5480', '11.5480', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60822, '2022-02-22', 2102, 57937, 3974, 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 (60823, '2022-02-22', 1782, 57938, 3974, 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 (60824, '2022-02-22', 1793, 57939, 3974, NULL, '1.0000', '18.0667', '18.0667', '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 (60825, '2022-02-22', 2633, 57940, 3974, 50528, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60826, '2022-02-22', 2242, 57941, 3974, 48899, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60827, '2022-02-22', 2295, 57942, 3974, 48904, '3.0000', '1.1161', '1.1161', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60828, '2022-02-22', 2252, 57943, 3974, NULL, '1.0000', '16.5900', '16.5900', '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 (60829, '2022-02-22', 9762, 57944, 3974, 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 (60830, '2022-02-22', 9734, 57945, 3974, 47079, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60831, '2022-02-22', 2131, 57946, 3974, 44163, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60832, '2022-02-22', 1590, 57947, 3974, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60833, '2022-02-22', 2948, 57948, 3974, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60834, '2022-02-22', 2252, 57949, 3974, NULL, '1.0000', '16.5900', '16.5900', '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 (60835, '2022-02-22', 9732, 57950, 3974, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60836, '2022-02-22', 2416, 57951, 3974, 50534, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60837, '2022-02-22', 1602, 57952, 3974, 48493, '2.0000', '7.0300', '7.0300', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60838, '2022-02-22', 1863, 57953, 3974, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60839, '2022-02-22', 2948, 57954, 3974, 48718, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60840, '2022-02-22', 1562, 57955, 3974, 49515, '1.0000', '5.5300', '5.5300', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 382);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60841, '2022-02-22', 1806, 57956, 3974, NULL, '1.0000', '34.3245', '34.3245', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60842, '2022-02-22', 1529, 57957, 3974, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60843, '2022-02-22', 8740, 57958, 3974, NULL, '1.0000', '1.8343', '1.8343', '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 (60844, '2022-02-22', 9566, 57959, 3974, 49868, '1.0000', '33.0000', '33.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 (60845, '2022-02-22', 2660, 57960, 3975, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60846, '2022-02-22', 8775, 57961, 3975, 49870, '1.0000', '-5.5188', '-5.5188', '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 (60847, '2022-02-22', 1339, 57962, 3976, NULL, '1.0000', '1.2000', '1.2000', '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 (60848, '2022-02-22', 1529, 57963, 3977, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60849, '2022-02-22', 2891, 57964, 3978, NULL, '1.0000', '9.5000', '9.5000', '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 (60850, '2022-02-22', 7954, 57965, 3978, 48477, '1.0000', '7.8822', '7.8822', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60851, '2022-02-22', 8969, 57966, 3978, 49342, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60852, '2022-02-22', 7412, 57967, 3979, NULL, '1.0000', '1.5200', '1.5200', '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 (60853, '2022-02-22', 7954, 57968, 3979, 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 (60854, '2022-02-22', 7638, 57969, 3979, NULL, '1.0000', '12.0000', '12.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 (60855, '2022-02-22', 8203, 57970, 3979, NULL, '2.0000', '0.4000', '0.4000', '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 (60856, '2022-02-22', 9728, 57971, 3979, NULL, '1.0000', '5.4000', '5.4000', '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 (60857, '2022-02-22', 7886, 57972, 3979, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60858, '2022-02-22', 1760, 57973, 3979, 20604, '2.0000', '111.8384', '111.8384', '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 (60859, '2022-02-22', 8406, 57974, 3979, NULL, '1.0000', '6.7300', '6.7300', '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 (60860, '2022-02-22', 2351, 57975, 3979, 3854, '1.0000', '17.7000', '17.7000', '27.5000', '27.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 (60861, '2022-02-22', 9579, 57976, 3979, 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 (60862, '2022-02-22', 1720, 57977, 3979, 6661, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '148.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 (60863, '2022-02-22', 1369, 57978, 3979, 7392, '-1.0000', '2.2209', '2.2209', '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 (60864, '2022-02-22', 1369, 57978, 3979, NULL, '2.0000', '2.2209', '2.2209', '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 (60865, '2022-02-22', 8083, 57979, 3979, NULL, '1.0000', '26.0000', '26.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 (60866, '2022-02-22', 7562, 57980, 3979, NULL, '2.0000', '5.5300', '5.5300', '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 (60867, '2022-02-22', 7781, 57981, 3979, NULL, '3.0000', '4.2500', '4.2500', '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 (60868, '2022-02-22', 1510, 57982, 3979, 18904, '1.0000', '8.8600', '8.8600', '13.0000', '13.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 (60869, '2022-02-22', 7980, 57983, 3979, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (60870, '2022-02-22', 9100, 57984, 3979, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60871, '2022-02-22', 7423, 57985, 3979, NULL, '1.0000', '13.2000', '13.2000', '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 (60872, '2022-02-22', 8079, 57986, 3979, NULL, '1.0000', '14.3600', '14.3600', '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 (60873, '2022-02-22', 7879, 57987, 3979, NULL, '5.0000', '1.9800', '1.9800', '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 (60874, '2022-02-22', 1612, 57988, 3979, 8732, '-4.0000', '1.6000', '1.6000', '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 (60875, '2022-02-22', 1612, 57988, 3979, NULL, '5.0000', '1.6000', '1.6000', '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 (60876, '2022-02-22', 8942, 57989, 3979, NULL, '6.0000', '4.4000', '4.4000', '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 (60877, '2022-02-22', 8690, 57990, 3979, NULL, '1.0000', '10.8000', '10.8000', '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 (60878, '2022-02-22', 7412, 57991, 3979, NULL, '1.0000', '1.5200', '1.5200', '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 (60879, '2022-02-22', 9654, 57992, 3980, 42106, '1.0000', '18.1100', '18.1100', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60880, '2022-02-22', 1888, 57993, 3980, 48501, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60881, '2022-02-22', 2237, 57994, 3980, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60882, '2022-02-22', 2302, 57995, 3980, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60883, '2022-02-22', 1783, 57996, 3980, 50119, '1.0000', '40.5357', '40.5357', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60884, '2022-02-22', 2020, 57997, 3980, NULL, '1.0000', '10.1614', '10.1614', '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 (60885, '2022-02-22', 1841, 57998, 3980, NULL, '4.0000', '0.2601', '0.2601', '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 (60886, '2022-02-22', 9679, 57999, 3980, 42546, '1.0000', '36.2000', '36.2000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60887, '2022-02-22', 2315, 58000, 3980, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '155.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60888, '2022-02-22', 2289, 58001, 3980, 49873, '1.0000', '0.2222', '0.2222', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60889, '2022-02-22', 1840, 58002, 3980, NULL, '1.0000', '0.2400', '0.2400', '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 (60890, '2022-02-22', 2240, 58003, 3980, NULL, '1.0000', '32.4083', '32.4083', '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 (60891, '2022-02-22', 2320, 58004, 3980, 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 (60892, '2022-02-22', 1391, 58005, 3980, 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 (60893, '2022-02-22', 7915, 58006, 3980, NULL, '1.0000', '2.8000', '2.8000', '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 (60894, '2022-02-22', 8731, 58007, 3980, NULL, '1.0000', '11.0000', '11.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 (60895, '2022-02-22', 2366, 58008, 3980, NULL, '2.0000', '-17.8500', '-17.8500', '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 (60896, '2022-02-22', 9480, 58009, 3980, 44436, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60897, '2022-02-22', 2221, 58010, 3980, 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 (60898, '2022-02-22', 1672, 58011, 3980, 49340, '10.0000', '3.0458', '3.0458', '4.2000', '4.2000', '10.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60899, '2022-02-22', 9479, 58012, 3980, 32541, '1.0000', '3.0000', '3.0000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60900, '2022-02-22', 7355, 58013, 3980, NULL, '1.0000', '18.6310', '18.6310', '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 (60901, '2022-02-22', 7459, 58014, 3980, NULL, '10.0000', '-6.1729', '-6.1729', '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 (60902, '2022-02-22', 7637, 58015, 3980, NULL, '1.0000', '5.0000', '5.0000', '9.6800', '9.6800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60903, '2022-02-22', 1839, 58016, 3980, NULL, '1.0000', '-9.7683', '-9.7683', '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 (60904, '2022-02-22', 9736, 58017, 3980, 47093, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60905, '2022-02-22', 2010, 58018, 3980, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60906, '2022-02-22', 9695, 58019, 3980, 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 (60907, '2022-02-22', 1499, 58020, 3980, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60908, '2022-02-22', 2225, 58021, 3980, NULL, '1.0000', '14.0000', '14.0000', '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 (60909, '2022-02-22', 8067, 58022, 3980, NULL, '1.0000', '4.6900', '4.6900', '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 (60910, '2022-02-22', 2169, 58023, 3980, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60911, '2022-02-22', 2699, 58024, 3980, 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 (60912, '2022-02-22', 8441, 58025, 3980, 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 (60913, '2022-02-22', 2099, 58026, 3980, 49924, '1.0000', '2.8000', '2.8000', '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 (60914, '2022-02-22', 3012, 58027, 3980, NULL, '1.0000', '4.7000', '4.7000', '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 (60915, '2022-02-22', 2289, 58028, 3980, 49873, '2.0000', '0.2222', '0.2222', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60916, '2022-02-22', 1860, 58029, 3980, 48973, '2.0000', '38.6250', '38.6250', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60917, '2022-02-22', 7411, 58030, 3980, NULL, '1.0000', '1.3013', '1.3013', '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 (60918, '2022-02-22', 8740, 58031, 3980, NULL, '2.0000', '1.8343', '1.8343', '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 (60919, '2022-02-22', 9734, 58032, 3980, 47079, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60920, '2022-02-22', 8187, 58033, 3980, NULL, '3.0000', '14.3900', '14.3900', '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 (60921, '2022-02-22', 8183, 58034, 3980, NULL, '1.0000', '81.9100', '81.9100', '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 (60922, '2022-02-22', 1751, 58035, 3980, 48456, '1.0000', '4.1376', '4.1376', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60923, '2022-02-22', 7472, 58036, 3980, NULL, '1.0000', '4.2055', '4.2055', '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 (60924, '2022-02-22', 1901, 58037, 3980, NULL, '1.0000', '2.0100', '2.0100', '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 (60925, '2022-02-22', 1665, 58038, 3980, 48596, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60926, '2022-02-22', 1303, 58039, 3980, 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 (60927, '2022-02-22', 9750, 58040, 3980, NULL, '1.0000', '3.3000', '3.3000', '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 (60928, '2022-02-22', 7459, 58041, 3981, NULL, '1.0000', '674.5400', '674.5400', '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 (60929, '2022-02-22', 9254, 58042, 3981, NULL, '1.0000', '20.0000', '20.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 (60930, '2022-02-22', 7675, 58043, 3981, NULL, '2.0000', '84.8590', '84.8590', '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 (60931, '2022-02-22', 2069, 58044, 3981, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '13.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60932, '2022-02-22', 7881, 58045, 3981, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60933, '2022-02-22', 9742, 58046, 3981, 46267, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60934, '2022-02-22', 7518, 58047, 3981, NULL, '1.0000', '42621274.6668', '42621274.6668', '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 (60935, '2022-02-22', 8739, 58048, 3981, NULL, '1.0000', '4.3200', '4.3200', '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 (60936, '2022-02-22', 7428, 58049, 3981, 50471, '3.0000', '65.9358', '65.9358', '4.5000', '4.5000', '109.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60937, '2022-02-22', 7385, 58050, 3981, 50470, '1.0000', '32.3381', '32.3381', '3.0000', '3.0000', '67.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60938, '2022-02-22', 2642, 58051, 3981, NULL, '1.0000', '-15.5450', '-15.5450', '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 (60939, '2022-02-22', 8866, 58052, 3981, 45784, '1.0000', '0.4300', '0.4300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60940, '2022-02-22', 2070, 58053, 3981, NULL, '1.0000', '2.0000', '2.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 (60941, '2022-02-22', 7750, 58054, 3981, NULL, '1.0000', '22.7100', '22.7100', '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 (60942, '2022-02-22', 9243, 58055, 3981, 48292, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60943, '2022-02-22', 2699, 58056, 3981, 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 (60944, '2022-02-22', 7558, 58057, 3981, NULL, '10.0000', '2.2000', '2.2000', '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 (60945, '2022-02-22', 9808, 58058, 3981, 50377, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60946, '2022-02-22', 7507, 58059, 3981, NULL, '3.0000', '6.5000', '6.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 (60947, '2022-02-22', 7673, 58060, 3981, NULL, '2.0000', '15.4911', '15.4911', '22.5000', '22.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 (60948, '2022-02-22', 8177, 58061, 3981, NULL, '1.0000', '12.5000', '12.5000', '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 (60949, '2022-02-22', 9573, 58062, 3981, 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 (60950, '2022-02-22', 2284, 58063, 3981, 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 (60951, '2022-02-22', 7674, 58064, 3981, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60952, '2022-02-22', 7824, 58065, 3981, NULL, '1.0000', '10.0834', '10.0834', '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 (60953, '2022-02-22', 7368, 58066, 3981, 49290, '1.0000', '1.1446', '1.1446', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60954, '2022-02-22', 1672, 58067, 3981, 50368, '10.0000', '2.9607', '2.9607', '4.2000', '4.2000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60955, '2022-02-22', 7825, 58068, 3981, NULL, '1.0000', '-9.1758', '-9.1758', '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 (60956, '2022-02-22', 7482, 58069, 3981, NULL, '1.0000', '3.3336', '3.3336', '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 (60957, '2022-02-22', 9740, 58070, 3981, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60958, '2022-02-22', 7473, 58071, 3981, NULL, '1.0000', '162.5864', '162.5864', '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 (60959, '2022-02-22', 7640, 58072, 3981, 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 (60960, '2022-02-22', 7514, 58073, 3981, NULL, '1.0000', '97.7006', '97.7006', '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 (60961, '2022-02-22', 9001, 58074, 3981, NULL, '1.0000', '4.3300', '4.3300', '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 (60962, '2022-02-22', 7641, 58075, 3981, NULL, '2.0000', '-543.6034', '-543.6034', '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 (60963, '2022-02-22', 7588, 58076, 3981, NULL, '1.0000', '7.3387', '7.3387', '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 (60964, '2022-02-22', 1854, 58077, 3981, 44360, '1.0000', '2.6053', '2.6053', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60965, '2022-02-22', 7379, 58078, 3981, NULL, '1.0000', '134.5492', '134.5492', '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 (60966, '2022-02-22', 1947, 58079, 3982, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60967, '2022-02-22', 9715, 58080, 3982, 45593, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60968, '2022-02-22', 8924, 58081, 3982, NULL, '1.0000', '4.5000', '4.5000', '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 (60969, '2022-02-22', 7852, 58082, 3982, NULL, '1.0000', '6.1100', '6.1100', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60970, '2022-02-22', 9732, 58083, 3982, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60971, '2022-02-22', 7931, 58084, 3982, NULL, '1.0000', '-5.6250', '-5.6250', '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 (60972, '2022-02-22', 9734, 58085, 3982, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '90.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60973, '2022-02-22', 7765, 58086, 3982, NULL, '3.0000', '16.0000', '16.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 (60974, '2022-02-22', 7354, 58087, 3982, NULL, '1.0000', '18.0000', '18.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 (60975, '2022-02-22', 9092, 58088, 3982, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60976, '2022-02-22', 9758, 58089, 3982, 49453, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 376);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60977, '2022-02-22', 9801, 58090, 3982, 50117, '1.0000', '3.2300', '3.2300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 408);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60978, '2022-02-22', 8203, 58091, 3982, NULL, '1.0000', '29.8095', '29.8095', '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 (60979, '2022-02-22', 2379, 58092, 3983, NULL, '1.0000', '1.0877', '1.0877', '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 (60980, '2022-02-22', 7802, 58093, 3983, NULL, '3.0000', '0.9200', '0.9200', '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 (60981, '2022-02-22', 7915, 58094, 3983, NULL, '1.0000', '2.8000', '2.8000', '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 (60982, '2022-02-22', 9813, 58095, 3983, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60983, '2022-02-22', 2059, 58096, 3983, 49914, '1.0000', '8.8934', '8.8934', '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 (60984, '2022-02-22', 8984, 58097, 3983, NULL, '1.0000', '-100.8495', '-100.8495', '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 (60985, '2022-02-22', 9482, 58098, 3983, 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 (60986, '2022-02-22', 2315, 58099, 3983, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '154.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60987, '2022-02-22', 7769, 58100, 3983, 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 (60988, '2022-02-22', 9021, 58101, 3983, 50081, '2.0000', '6.9147', '6.9147', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60989, '2022-02-22', 9778, 58102, 3983, 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 (60990, '2022-02-22', 7411, 58103, 3983, NULL, '1.0000', '1.3013', '1.3013', '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 (60991, '2022-02-22', 1425, 58104, 3983, 50239, '1.0000', '7.5328', '7.5328', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60992, '2022-02-22', 2237, 58105, 3983, 49715, '5.0000', '207.0499', '207.0499', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60993, '2022-02-22', 1839, 58106, 3983, NULL, '2.0000', '-9.7683', '-9.7683', '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 (60994, '2022-02-22', 7802, 58107, 3983, NULL, '6.0000', '0.9200', '0.9200', '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 (60995, '2022-02-22', 2315, 58108, 3983, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '154.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60996, '2022-02-22', 7411, 58109, 3983, NULL, '1.0000', '1.3013', '1.3013', '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 (60997, '2022-02-22', 2353, 58110, 3983, NULL, '1.0000', '3.9633', '3.9633', '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 (60998, '2022-02-22', 2761, 58111, 3983, 39866, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60999, '2022-02-22', 8454, 58112, 3983, NULL, '1.0000', '4.1722', '4.1722', '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 (61000, '2022-02-23', 9482, 58113, 3984, 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 (61001, '2022-02-23', 9811, 58114, 3984, NULL, '1.0000', '29.0000', '29.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 (61002, '2022-02-23', 8040, 58115, 3984, NULL, '1.0000', '10.6400', '10.6400', '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 (61003, '2022-02-23', 1492, 58116, 3984, 19359, '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 (61004, '2022-02-23', 1478, 58117, 3984, 49326, '1.0000', '31.6250', '31.6250', '30.5000', '30.5000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61005, '2022-02-23', 2167, 58118, 3984, NULL, '2.0000', '2.1310', '2.1310', '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 (61006, '2022-02-23', 2315, 58119, 3984, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '151.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61007, '2022-02-23', 2289, 58120, 3984, 49873, '1.0000', '0.2222', '0.2222', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61008, '2022-02-23', 1840, 58121, 3984, NULL, '1.0000', '0.2400', '0.2400', '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 (61009, '2022-02-23', 1841, 58122, 3984, NULL, '2.0000', '0.2601', '0.2601', '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 (61010, '2022-02-23', 1564, 58123, 3984, 50077, '3.0000', '3.4988', '3.4988', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61011, '2022-02-23', 2083, 58124, 3984, 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 (61012, '2022-02-23', 1564, 58125, 3984, 50077, '10.0000', '3.4988', '3.4988', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61013, '2022-02-23', 1855, 58126, 3984, NULL, '1.0000', '1.5003', '1.5003', '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 (61014, '2022-02-23', 1478, 58127, 3984, 49326, '1.0000', '31.6250', '31.6250', '30.5000', '30.5000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61015, '2022-02-23', 1661, 58128, 3984, NULL, '1.0000', '32.6700', '32.6700', '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 (61016, '2022-02-23', 1855, 58129, 3984, NULL, '1.0000', '1.5003', '1.5003', '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 (61017, '2022-02-23', 1702, 58130, 3984, NULL, '1.0000', '14.9000', '14.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 (61018, '2022-02-23', 2100, 58131, 3984, 47100, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61019, '2022-02-23', 1302, 58132, 3984, 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 (61020, '2022-02-23', 1837, 58133, 3984, NULL, '2.0000', '1.5967', '1.5967', '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 (61021, '2022-02-23', 1873, 58134, 3984, 22597, '1.0000', '11.9500', '11.9500', '17.0000', '17.0000', '0.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 (61022, '2022-02-23', 1734, 58135, 3984, 48174, '1.0000', '14.9800', '14.9800', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61023, '2022-02-23', 1928, 58136, 3984, NULL, '1.0000', '5.3300', '5.3300', '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 (61024, '2022-02-23', 1502, 58137, 3984, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '26.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61025, '2022-02-23', 2342, 58138, 3984, 49330, '5.0000', '1.9292', '1.9292', '2.7000', '2.7000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61026, '2022-02-23', 7334, 58139, 3984, NULL, '1.0000', '8.1600', '8.1600', '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 (61027, '2022-02-23', 2297, 58140, 3984, 31101, '1.0000', '6.4800', '6.4800', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61028, '2022-02-23', 1619, 58141, 3984, 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 (61029, '2022-02-23', 2761, 58142, 3984, 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 (61030, '2022-02-23', 2342, 58143, 3984, 49330, '2.0000', '1.9292', '1.9292', '2.7000', '2.7000', '22.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61031, '2022-02-23', 1602, 58144, 3984, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61032, '2022-02-23', 8984, 58145, 3984, NULL, '1.0000', '-100.8495', '-100.8495', '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 (61033, '2022-02-23', 2660, 58146, 3984, 49361, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61034, '2022-02-23', 1628, 58147, 3984, NULL, '1.0000', '7.1500', '7.1500', '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 (61035, '2022-02-23', 1760, 58148, 3984, NULL, '3.0000', '1.5900', '1.5900', '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 (61036, '2022-02-23', 1964, 58149, 3984, 39875, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61037, '2022-02-23', 1839, 58150, 3984, NULL, '1.0000', '-9.7683', '-9.7683', '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 (61038, '2022-02-23', 8384, 58151, 3984, 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 (61039, '2022-02-23', 2405, 58152, 3984, 37770, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '28.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61040, '2022-02-23', 1330, 58153, 3984, 19334, '1.0000', '2.8000', '2.8000', '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 (61041, '2022-02-23', 8740, 58154, 3984, NULL, '1.0000', '1.8343', '1.8343', '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 (61042, '2022-02-23', 2645, 58155, 3984, NULL, '1.0000', '21.0000', '21.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 (61043, '2022-02-23', 2959, 58156, 3984, 49917, '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 (61044, '2022-02-23', 2104, 58157, 3985, NULL, '2.0000', '0.2000', '0.2000', '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 (61045, '2022-02-23', 9735, 58158, 3985, 50057, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61046, '2022-02-23', 2317, 58159, 3985, 40395, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '30.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61047, '2022-02-23', 2317, 58160, 3985, 40395, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '30.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61048, '2022-02-23', 8927, 58161, 3985, NULL, '3.0000', '36.0000', '36.0000', '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 (61049, '2022-02-23', 2315, 58162, 3985, NULL, '1.0000', '0.8863', '0.8863', '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 (61050, '2022-02-23', 9740, 58163, 3985, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61051, '2022-02-23', 8359, 58164, 3985, 50046, '1.0000', '2068.5192', '2068.5192', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61052, '2022-02-23', 8288, 58165, 3985, NULL, '1.0000', '1.1923', '1.1923', '1.8000', '1.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 (61053, '2022-02-23', 9300, 58166, 3985, 48861, '1.0000', '3.0968', '3.0968', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61054, '2022-02-23', 8941, 58167, 3985, NULL, '1.0000', '12.0000', '12.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 (61055, '2022-02-23', 7674, 58168, 3985, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61056, '2022-02-23', 8234, 58169, 3985, 40443, '1.0000', '13.0000', '13.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61057, '2022-02-23', 8037, 58170, 3985, 36082, '2.0000', '45.3419', '45.3419', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61058, '2022-02-23', 8340, 58171, 3985, NULL, '19.0000', '23.9100', '23.9100', '3.0000', '3.0000', '-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 (61059, '2022-02-23', 2655, 58172, 3985, 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 (61060, '2022-02-23', 1501, 58173, 3985, 50484, '1.0000', '2.2872', '2.2872', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61061, '2022-02-23', 2891, 58174, 3985, 37376, '1.0000', '9.4983', '9.4983', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61062, '2022-02-23', 7576, 58175, 3985, NULL, '12.0000', '122.7783', '122.7783', '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 (61063, '2022-02-23', 8413, 58176, 3985, NULL, '1.0000', '-101.4000', '-101.4000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61064, '2022-02-23', 9556, 58177, 3985, NULL, '2.0000', '0.2770', '0.2770', '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 (61065, '2022-02-23', 1435, 58178, 3986, NULL, '1.0000', '22.5000', '22.5000', '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 (61066, '2022-02-23', 2669, 58179, 3986, 11757, '-6.0000', '24.5336', '24.5336', '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 (61067, '2022-02-23', 2669, 58179, 3986, NULL, '7.0000', '24.5336', '24.5336', '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 (61068, '2022-02-23', 1703, 58180, 3986, 5487, '-2.0000', '9.2200', '9.2200', '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 (61069, '2022-02-23', 1703, 58180, 3986, NULL, '3.0000', '9.2200', '9.2200', '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 (61070, '2022-02-23', 2254, 58181, 3986, NULL, '1.0000', '17.9400', '17.9400', '23.2300', '23.2300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61071, '2022-02-23', 1840, 58182, 3986, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (61072, '2022-02-23', 1841, 58183, 3986, NULL, '3.0000', '142.5780', '142.5780', '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 (61073, '2022-02-23', 2735, 58184, 3986, 19312, '1.0000', '13.7800', '13.7800', '18.0000', '18.0000', '2.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 (61074, '2022-02-23', 2643, 58185, 3986, NULL, '1.0000', '0.8700', '0.8700', '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 (61075, '2022-02-23', 1837, 58186, 3986, 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 (61076, '2022-02-23', 1307, 58187, 3986, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.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 (61077, '2022-02-23', 1837, 58188, 3986, NULL, '5.0000', '0.9642', '0.9642', '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 (61078, '2022-02-23', 1785, 58189, 3987, 50245, '1.0000', '15.6346', '15.6346', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61079, '2022-02-23', 7896, 58190, 3987, NULL, '1.0000', '7.0000', '7.0000', '28.6000', '28.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 (61080, '2022-02-23', 9622, 58191, 3987, 40335, '1.0000', '35.0000', '35.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61081, '2022-02-23', 9623, 58192, 3987, NULL, '1.0000', '22.0000', '22.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 (61082, '2022-02-23', 2036, 58193, 3988, 49495, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61083, '2022-02-23', 2070, 58194, 3988, 5618, '1.0000', '2.0000', '2.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 (61084, '2022-02-23', 2237, 58195, 3988, 46708, '2.0000', '1.4654', '1.4654', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61085, '2022-02-23', 1840, 58196, 3988, NULL, '2.0000', '0.2400', '0.2400', '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 (61086, '2022-02-23', 1841, 58197, 3988, 44579, '2.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61087, '2022-02-23', 7593, 58198, 3988, 45105, '1.0000', '2.4500', '2.4500', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61088, '2022-02-23', 7741, 58199, 3988, NULL, '1.0000', '-1.3429', '-1.3429', '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 (61089, '2022-02-23', 7927, 58200, 3988, NULL, '2.0000', '11.8000', '11.8000', '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 (61090, '2022-02-23', 2273, 58201, 3988, 49025, '1.0000', '2.6700', '2.6700', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61091, '2022-02-23', 1616, 58202, 3988, 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 (61092, '2022-02-23', 9634, 58203, 3988, 40901, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61093, '2022-02-23', 2352, 58204, 3988, 44595, '10.0000', '233.6176', '233.6176', '3.5000', '3.5000', '66.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61094, '2022-02-23', 2695, 58205, 3988, 45122, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '52.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61095, '2022-02-23', 1841, 58206, 3988, 44579, '2.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61096, '2022-02-23', 9727, 58207, 3989, 47071, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61097, '2022-02-23', 1498, 58208, 3990, 19685, '-18.0000', '0.3300', '0.3300', '0.6000', '0.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 (61098, '2022-02-23', 1498, 58208, 3990, NULL, '20.0000', '0.3300', '0.3300', '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 (61099, '2022-02-23', 1620, 58209, 3990, 8955, '6.0000', '408.8259', '408.8259', '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 (61100, '2022-02-23', 1620, 58209, 3990, 481, '2.0000', '408.8259', '408.8259', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61101, '2022-02-23', 2990, 58210, 3990, NULL, '1.0000', '1.1200', '1.1200', '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 (61102, '2022-02-23', 1452, 58211, 3990, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61103, '2022-02-23', 2221, 58212, 3990, 4154, '-56.0000', '14.4737', '14.4737', '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 (61104, '2022-02-23', 2221, 58212, 3990, NULL, '57.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61105, '2022-02-23', 2911, 58213, 3990, NULL, '1.0000', '10.0000', '10.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 (61106, '2022-02-23', 2479, 58214, 3990, 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 (61107, '2022-02-23', 2280, 58215, 3990, 33794, '1.0000', '3.0700', '3.0700', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61108, '2022-02-23', 1340, 58216, 3990, 13005, '-2.0000', '2.7025', '2.7025', '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 (61109, '2022-02-23', 1340, 58216, 3990, NULL, '3.0000', '2.7025', '2.7025', '5.5000', '5.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 (61110, '2022-02-23', 2379, 58217, 3990, 4032, '-44.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 (61111, '2022-02-23', 2379, 58217, 3990, NULL, '45.0000', '1.5900', '1.5900', '2.5000', '2.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 (61112, '2022-02-23', 1651, 58218, 3990, 3222, '-44.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 (61113, '2022-02-23', 1651, 58218, 3990, NULL, '46.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61114, '2022-02-23', 2858, 58219, 3990, 17772, '-45.0000', '1.0000', '1.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 (61115, '2022-02-23', 2858, 58219, 3990, NULL, '46.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61116, '2022-02-23', 1945, 58220, 3991, 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 (61117, '2022-02-23', 2236, 58221, 3991, NULL, '1.0000', '9.3108', '9.3108', '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 (61118, '2022-02-23', 2036, 58222, 3991, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '4.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 (61119, '2022-02-23', 1580, 58223, 3991, 48178, '5.0000', '0.9900', '0.9900', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61120, '2022-02-23', 2990, 58224, 3991, 48197, '1.0000', '1.2776', '1.2776', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61121, '2022-02-23', 1420, 58225, 3991, 48955, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61122, '2022-02-23', 1884, 58226, 3991, NULL, '1.0000', '4.5207', '4.5207', '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 (61123, '2022-02-23', 1782, 58227, 3991, 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 (61124, '2022-02-23', 7472, 58228, 3991, NULL, '1.0000', '4.2055', '4.2055', '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 (61125, '2022-02-23', 1863, 58229, 3991, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61126, '2022-02-23', 2237, 58230, 3991, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61127, '2022-02-23', 1425, 58231, 3991, 50239, '1.0000', '7.5328', '7.5328', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61128, '2022-02-23', 9084, 58232, 3991, 49621, '1.0000', '8.9000', '8.9000', '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 (61129, '2022-02-23', 1425, 58233, 3991, 50239, '1.0000', '7.5328', '7.5328', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61130, '2022-02-23', 1855, 58234, 3991, NULL, '2.0000', '1.5003', '1.5003', '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 (61131, '2022-02-23', 1602, 58235, 3992, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61132, '2022-02-23', 1339, 58236, 3992, NULL, '2.0000', '1.2000', '1.2000', '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 (61133, '2022-02-23', 2324, 58237, 3992, 22558, '1.0000', '10.5000', '10.5000', '15.0000', '15.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 (61134, '2022-02-23', 1426, 58238, 3993, NULL, '1.0000', '34.9584', '34.9584', '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 (61135, '2022-02-23', 2169, 58239, 3993, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61136, '2022-02-23', 1863, 58240, 3993, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61137, '2022-02-23', 1912, 58241, 3993, 49717, '4.0000', '0.6298', '0.6298', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61138, '2022-02-23', 1499, 58242, 3993, 50243, '1.0000', '0.3303', '0.3303', '0.6000', '0.6000', '41.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61139, '2022-02-23', 2283, 58243, 3993, 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 (61140, '2022-02-23', 2036, 58244, 3993, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '3.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 (61141, '2022-02-23', 2660, 58245, 3993, 49361, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61142, '2022-02-23', 2088, 58246, 3993, NULL, '1.0000', '1.8798', '1.8798', '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 (61143, '2022-02-23', 9734, 58247, 3993, 47079, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61144, '2022-02-23', 2286, 58248, 3994, 50523, '1.0000', '4.4402', '4.4402', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61145, '2022-02-23', 1666, 58249, 3994, 49363, '2.0000', '2.7286', '2.7286', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61146, '2022-02-23', 9482, 58250, 3994, NULL, '2.0000', '0.5000', '0.5000', '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 (61147, '2022-02-23', 1871, 58251, 3994, 50241, '10.0000', '2.2081', '2.2081', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61148, '2022-02-23', 1529, 58252, 3994, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61149, '2022-02-23', 2521, 58253, 3994, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '7.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61150, '2022-02-23', 2169, 58254, 3994, 49264, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61151, '2022-02-23', 1387, 58255, 3994, 49513, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61152, '2022-02-23', 2263, 58256, 3994, 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 (61153, '2022-02-23', 2284, 58257, 3994, 49646, '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 (61154, '2022-02-23', 2169, 58258, 3994, 49264, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61155, '2022-02-23', 7612, 58259, 3994, NULL, '2.0000', '1.7300', '1.7300', '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 (61156, '2022-02-23', 2167, 58260, 3994, NULL, '1.0000', '2.1310', '2.1310', '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 (61157, '2022-02-23', 7927, 58261, 3995, NULL, '2.0000', '11.9800', '11.9800', '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 (61158, '2022-02-23', 9809, 58262, 3995, NULL, '1.0000', '5.7900', '5.7900', '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 (61159, '2022-02-23', 9092, 58263, 3995, NULL, '2.0000', '5.2900', '5.2900', '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 (61160, '2022-02-23', 9734, 58264, 3995, NULL, '2.0000', '0.3200', '0.3200', '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 (61161, '2022-02-23', 8596, 58265, 3995, 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 (61162, '2022-02-23', 9804, 58266, 3995, NULL, '1.0000', '3.0500', '3.0500', '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 (61163, '2022-02-23', 7400, 58267, 3995, 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 (61164, '2022-02-23', 7524, 58268, 3995, NULL, '1.0000', '11.9500', '11.9500', '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 (61165, '2022-02-23', 8413, 58269, 3995, NULL, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61166, '2022-02-23', 1571, 58270, 3995, 434, '1.0000', '61.7047', '61.7047', '2.5000', '2.5000', '17.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 (61167, '2022-02-23', 2315, 58271, 3995, 2735, '-168.0000', '0.3300', '0.3300', '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 (61168, '2022-02-23', 2315, 58271, 3995, NULL, '169.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-169.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61169, '2022-02-23', 7709, 58272, 3995, NULL, '2.0000', '3.5000', '3.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 (61170, '2022-02-23', 8186, 58273, 3995, NULL, '3.0000', '1.0800', '1.0800', '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 (61171, '2022-02-23', 8154, 58274, 3995, NULL, '2.0000', '12.3000', '12.3000', '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 (61172, '2022-02-23', 9734, 58275, 3995, NULL, '2.0000', '0.3200', '0.3200', '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 (61173, '2022-02-23', 9573, 58276, 3995, 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 (61174, '2022-02-23', 7638, 58277, 3995, NULL, '1.0000', '12.0000', '12.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 (61175, '2022-02-23', 7757, 58278, 3995, NULL, '1.0000', '82.4400', '82.4400', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61176, '2022-02-23', 7482, 58279, 3995, NULL, '1.0000', '3.0500', '3.0500', '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 (61177, '2022-02-23', 7674, 58280, 3995, 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 (61178, '2022-02-23', 8702, 58281, 3995, NULL, '1.0000', '3.6700', '3.6700', '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 (61179, '2022-02-23', 9499, 58282, 3995, 33075, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61180, '2022-02-23', 7958, 58283, 3995, NULL, '1.0000', '3.7500', '3.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 (61181, '2022-02-23', 7781, 58284, 3995, NULL, '3.0000', '4.2500', '4.2500', '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 (61182, '2022-02-23', 1333, 58285, 3995, NULL, '1.0000', '0.5500', '0.5500', '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 (61183, '2022-02-23', 1329, 58286, 3995, 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 (61184, '2022-02-23', 7741, 58287, 3995, NULL, '1.0000', '1.2000', '1.2000', '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 (61185, '2022-02-23', 2227, 58288, 3995, 1702, '-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 (61186, '2022-02-23', 2227, 58288, 3995, NULL, '4.0000', '14.0000', '14.0000', '19.0000', '19.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 (61187, '2022-02-23', 8888, 58289, 3995, NULL, '1.0000', '28.0000', '28.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 (61188, '2022-02-23', 8175, 58290, 3995, NULL, '1.0000', '12.5000', '12.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 (61189, '2022-02-23', 7380, 58291, 3995, NULL, '1.0000', '8.0000', '8.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 (61190, '2022-02-23', 7512, 58292, 3995, NULL, '2.0000', '1.0000', '1.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 (61191, '2022-02-23', 9329, 58293, 3995, NULL, '1.0000', '6.7000', '6.7000', '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 (61192, '2022-02-23', 9682, 58294, 3995, NULL, '1.0000', '13.5000', '13.5000', '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 (61193, '2022-02-23', 7728, 58295, 3995, NULL, '1.0000', '1.8000', '1.8000', '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 (61194, '2022-02-23', 9794, 58296, 3995, NULL, '1.0000', '1.0800', '1.0800', '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 (61195, '2022-02-23', 7482, 58297, 3995, NULL, '1.0000', '3.0500', '3.0500', '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 (61196, '2022-02-23', 7638, 58298, 3995, NULL, '1.0000', '12.0000', '12.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 (61197, '2022-02-23', 7408, 58299, 3995, NULL, '1.0000', '5.2800', '5.2800', '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 (61198, '2022-02-23', 7641, 58300, 3995, NULL, '1.0000', '1.9000', '1.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 (61199, '2022-02-23', 2643, 58301, 3995, NULL, '1.0000', '0.8700', '0.8700', '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 (61200, '2022-02-23', 7743, 58302, 3995, NULL, '2.0000', '1.3100', '1.3100', '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 (61201, '2022-02-23', 9734, 58303, 3995, NULL, '4.0000', '0.3200', '0.3200', '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 (61202, '2022-02-23', 7917, 58304, 3995, NULL, '1.0000', '5.0000', '5.0000', '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 (61203, '2022-02-23', 2906, 58305, 3995, NULL, '1.0000', '2.6000', '2.6000', '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 (61204, '2022-02-23', 7707, 58306, 3995, NULL, '1.0000', '7.0000', '7.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 (61205, '2022-02-23', 9274, 58307, 3995, 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 (61206, '2022-02-23', 7781, 58308, 3995, NULL, '3.0000', '4.2500', '4.2500', '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 (61207, '2022-02-23', 2315, 58309, 3995, 2735, '-168.0000', '0.3300', '0.3300', '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 (61208, '2022-02-23', 2315, 58309, 3995, NULL, '169.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-169.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61209, '2022-02-23', 7558, 58310, 3995, 33814, '3.0000', '1.9700', '1.9700', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61210, '2022-02-23', 1590, 58311, 3995, 22260, '2.0000', '1.7100', '1.7100', '3.0000', '3.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 (61211, '2022-02-23', 9193, 58312, 3995, NULL, '1.0000', '10.0000', '10.0000', '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 (61212, '2022-02-23', 1529, 58313, 3996, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61213, '2022-02-23', 9482, 58314, 3996, 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 (61214, '2022-02-23', 2169, 58315, 3996, 48884, '2.0000', '0.7121', '0.7121', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61215, '2022-02-23', 1912, 58316, 3996, 49717, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61216, '2022-02-23', 7472, 58317, 3996, NULL, '1.0000', '4.2055', '4.2055', '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 (61217, '2022-02-23', 7911, 58318, 3996, NULL, '1.0000', '4.3700', '4.3700', '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 (61218, '2022-02-23', 9598, 58319, 3996, 48730, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61219, '2022-02-23', 2136, 58320, 3996, 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 (61220, '2022-02-23', 2169, 58321, 3997, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61221, '2022-02-23', 1590, 58322, 3998, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61222, '2022-02-23', 1863, 58323, 3998, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61223, '2022-02-23', 1621, 58324, 3999, 48794, '1.0000', '38.3074', '38.3074', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61224, '2022-02-23', 2493, 58325, 3999, 7117, '1.0000', '6.5000', '6.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 (61225, '2022-02-23', 1687, 58326, 3999, 49136, '1.0000', '12.9700', '12.9700', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61226, '2022-02-23', 1618, 58327, 3999, 49545, '1.0000', '11.9300', '11.9300', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61227, '2022-02-23', 2643, 58328, 3999, 44038, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '18.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61228, '2022-02-23', 2135, 58329, 3999, 16894, '1.0000', '1.2424', '1.2424', '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 (61229, '2022-02-23', 1425, 58330, 3999, 49992, '1.0000', '7.0572', '7.0572', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61230, '2022-02-23', 9740, 58331, 3999, 46037, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61231, '2022-02-23', 2169, 58332, 3999, 45082, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61232, '2022-02-23', 2317, 58333, 3999, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '31.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61233, '2022-02-23', 2477, 58334, 3999, 5190, '1.0000', '8.0000', '8.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 (61234, '2022-02-23', 2476, 58335, 3999, 5189, '1.0000', '10.0000', '10.0000', '12.0000', '12.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 (61235, '2022-02-23', 9560, 58336, 3999, 39200, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '11.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61236, '2022-02-23', 2910, 58337, 3999, NULL, '1.0000', '10.0000', '10.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 (61237, '2022-02-23', 2485, 58338, 3999, 39201, '1.0000', '29.8556', '29.8556', '18.0000', '18.0000', '64.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61238, '2022-02-23', 2484, 58339, 3999, 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 (61239, '2022-02-23', 9412, 58340, 3999, NULL, '1.0000', '25.0000', '25.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 (61240, '2022-02-23', 1945, 58341, 3999, 49084, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61241, '2022-02-23', 8566, 58342, 3999, 35940, '1.0000', '-8.9555', '-8.9555', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61242, '2022-02-23', 8677, 58343, 3999, 49108, '1.0000', '2.2418', '2.2418', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61243, '2022-02-23', 2858, 58344, 3999, 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 (61244, '2022-02-23', 2124, 58345, 3999, 2641, '1.0000', '25.0000', '25.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 (61245, '2022-02-23', 8146, 58346, 4000, NULL, '1.0000', '4.4100', '4.4100', '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 (61246, '2022-02-23', 1863, 58347, 4000, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61247, '2022-02-23', 2169, 58348, 4001, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61248, '2022-02-23', 2136, 58349, 4001, 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 (61249, '2022-02-23', 3044, 58350, 4001, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '33.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 (61250, '2022-02-23', 8775, 58351, 4001, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61251, '2022-02-23', 7672, 58352, 4002, NULL, '1.0000', '1.0200', '1.0200', '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 (61252, '2022-02-23', 8900, 58353, 4002, NULL, '2.0000', '16.4000', '16.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 (61253, '2022-02-23', 2289, 58354, 4002, 2949, '-67.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 (61254, '2022-02-23', 2289, 58354, 4002, NULL, '68.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61255, '2022-02-23', 7451, 58355, 4002, NULL, '1.0000', '9.8000', '9.8000', '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 (61256, '2022-02-24', 7744, 58356, 4003, 48597, '4.0000', '2.5833', '2.5833', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61257, '2022-02-24', 7744, 58356, 4003, NULL, '1.0000', '2.5833', '2.5833', '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 (61258, '2022-02-24', 8065, 58357, 4003, NULL, '1.0000', '32.0000', '32.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 (61259, '2022-02-24', 2242, 58358, 4003, 48899, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61260, '2022-02-24', 1785, 58359, 4003, 50245, '1.0000', '15.6346', '15.6346', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61261, '2022-02-24', 8033, 58360, 4003, 49366, '2.0000', '18.1074', '18.1074', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61262, '2022-02-24', 7459, 58361, 4003, NULL, '20.0000', '-6.1729', '-6.1729', '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 (61263, '2022-02-24', 7713, 58362, 4003, 48657, '2.0000', '24.6545', '24.6545', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61264, '2022-02-24', 7506, 58363, 4003, NULL, '1.0000', '15.0000', '15.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 (61265, '2022-02-24', 1912, 58364, 4003, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61266, '2022-02-24', 1839, 58365, 4003, NULL, '1.0000', '-9.7683', '-9.7683', '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 (61267, '2022-02-24', 2315, 58366, 4003, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '149.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61268, '2022-02-24', 1528, 58367, 4003, 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 (61269, '2022-02-24', 7532, 58368, 4003, 39818, '1.0000', '20.2334', '20.2334', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61270, '2022-02-24', 1501, 58369, 4003, NULL, '1.0000', '2.1784', '2.1784', '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 (61271, '2022-02-24', 2545, 58370, 4003, 49900, '1.0000', '4.2678', '4.2678', '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 (61272, '2022-02-24', 1812, 58371, 4003, 47104, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61273, '2022-02-24', 2560, 58372, 4003, NULL, '1.0000', '17.0000', '17.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 (61274, '2022-02-24', 9695, 58373, 4003, 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 (61275, '2022-02-24', 2695, 58374, 4004, 12336, '-15.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 (61276, '2022-02-24', 2695, 58374, 4004, NULL, '16.0000', '2.0000', '2.0000', '3.0000', '3.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 (61277, '2022-02-24', 2297, 58375, 4004, 2956, '-3.0000', '6.6000', '6.6000', '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 (61278, '2022-02-24', 2297, 58375, 4004, NULL, '4.0000', '6.6000', '6.6000', '11.0000', '11.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 (61279, '2022-02-24', 1736, 58376, 4004, 7382, '-5.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61280, '2022-02-24', 1736, 58376, 4004, NULL, '6.0000', '-6.2282', '-6.2282', '42.0000', '42.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 (61281, '2022-02-24', 7593, 58377, 4004, NULL, '1.0000', '2.4500', '2.4500', '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 (61282, '2022-02-24', 2317, 58378, 4004, 3473, '-3.0000', '15.0000', '15.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 (61283, '2022-02-24', 2317, 58378, 4004, NULL, '9.0000', '15.0000', '15.0000', '18.0000', '18.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 (61284, '2022-02-24', 2035, 58379, 4004, 6388, '-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 (61285, '2022-02-24', 2035, 58379, 4004, 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 (61286, '2022-02-24', 7723, 58380, 4004, NULL, '2.0000', '5.5000', '5.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 (61287, '2022-02-24', 9517, 58381, 4004, NULL, '1.0000', '18.0000', '18.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 (61288, '2022-02-24', 1602, 58382, 4004, 5897, '-109.0000', '6.7859', '6.7859', '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 (61289, '2022-02-24', 1602, 58382, 4004, NULL, '110.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61290, '2022-02-24', 2020, 58383, 4004, 10164, '-13.0000', '7.5000', '7.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 (61291, '2022-02-24', 2020, 58383, 4004, NULL, '14.0000', '7.5000', '7.5000', '10.5000', '10.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 (61292, '2022-02-24', 1690, 58384, 4004, 33808, '1.0000', '7.1466', '7.1466', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61293, '2022-02-24', 1373, 58385, 4004, 18885, '2.0000', '8.1000', '8.1000', '10.5000', '10.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 (61294, '2022-02-24', 7411, 58386, 4004, NULL, '1.0000', '1.3500', '1.3500', '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 (61295, '2022-02-24', 1411, 58387, 4004, NULL, '1.0000', '25.9000', '25.9000', '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 (61296, '2022-02-24', 7532, 58388, 4004, NULL, '1.0000', '20.6000', '20.6000', '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 (61297, '2022-02-24', 3017, 58389, 4004, NULL, '1.0000', '3.9000', '3.9000', '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 (61298, '2022-02-24', 3066, 58390, 4004, NULL, '1.0000', '24.6400', '24.6400', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61299, '2022-02-24', 1806, 58391, 4004, 18809, '2.0000', '28.1300', '28.1300', '37.5000', '37.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 (61300, '2022-02-24', 2254, 58392, 4004, 2791, '-1.0000', '17.9400', '17.9400', '23.2300', '23.2300', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61301, '2022-02-24', 2254, 58392, 4004, NULL, '2.0000', '17.9400', '17.9400', '23.2300', '23.2300', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61302, '2022-02-24', 1857, 58393, 4004, 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 (61303, '2022-02-24', 2237, 58394, 4004, 2781, '-43.0000', '1.0600', '1.0600', '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 (61304, '2022-02-24', 2237, 58394, 4004, NULL, '44.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61305, '2022-02-24', 1409, 58395, 4004, 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 (61306, '2022-02-24', 2862, 58396, 4004, 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 (61307, '2022-02-24', 8137, 58397, 4005, NULL, '1.0000', '3.0000', '3.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 (61308, '2022-02-24', 7442, 58398, 4005, 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 (61309, '2022-02-24', 1670, 58399, 4005, 10163, '-14.0000', '19.5000', '19.5000', '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 (61310, '2022-02-24', 1670, 58399, 4005, NULL, '15.0000', '19.5000', '19.5000', '26.5000', '26.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 (61311, '2022-02-24', 9299, 58400, 4005, NULL, '1.0000', '9.5000', '9.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 (61312, '2022-02-24', 1720, 58401, 4005, 6661, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '147.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 (61313, '2022-02-24', 8061, 58402, 4005, 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 (61314, '2022-02-24', 8415, 58403, 4005, NULL, '1.0000', '3.2500', '3.2500', '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 (61315, '2022-02-24', 8288, 58404, 4005, NULL, '3.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (61316, '2022-02-24', 7927, 58405, 4005, NULL, '2.0000', '11.9800', '11.9800', '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 (61317, '2022-02-24', 2761, 58406, 4005, 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 (61318, '2022-02-24', 7658, 58407, 4005, NULL, '10.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (61319, '2022-02-24', 9293, 58408, 4005, NULL, '10.0000', '1.3500', '1.3500', '1.8000', '1.8000', '-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 (61320, '2022-02-24', 7428, 58409, 4005, NULL, '1.0000', '2.6100', '2.6100', '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 (61321, '2022-02-24', 7385, 58410, 4005, 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 (61322, '2022-02-24', 9407, 58411, 4005, NULL, '1.0000', '5.4000', '5.4000', '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 (61323, '2022-02-24', 9736, 58412, 4005, NULL, '1.0000', '3.9100', '3.9100', '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 (61324, '2022-02-24', 7894, 58413, 4005, NULL, '1.0000', '3.8000', '3.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 (61325, '2022-02-24', 8924, 58414, 4005, NULL, '1.0000', '4.5000', '4.5000', '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 (61326, '2022-02-24', 7777, 58415, 4005, NULL, '1.0000', '9.5000', '9.5000', '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 (61327, '2022-02-24', 7319, 58416, 4005, NULL, '1.0000', '9.0000', '9.0000', '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 (61328, '2022-02-24', 9092, 58417, 4005, NULL, '2.0000', '5.2900', '5.2900', '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 (61329, '2022-02-24', 7428, 58418, 4005, NULL, '1.0000', '2.6100', '2.6100', '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 (61330, '2022-02-24', 2643, 58419, 4005, NULL, '1.0000', '0.8700', '0.8700', '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 (61331, '2022-02-24', 1827, 58420, 4005, NULL, '1.0000', '0.2000', '0.2000', '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 (61332, '2022-02-24', 9445, 58421, 4005, 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 (61333, '2022-02-24', 8982, 58422, 4005, NULL, '3.0000', '10.0000', '10.0000', '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 (61334, '2022-02-24', 7848, 58423, 4005, NULL, '1.0000', '1.3500', '1.3500', '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 (61335, '2022-02-24', 7518, 58424, 4005, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61336, '2022-02-24', 9325, 58425, 4005, NULL, '2.0000', '8.8000', '8.8000', '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 (61337, '2022-02-24', 8204, 58426, 4006, NULL, '2.0000', '1.5000', '1.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 (61338, '2022-02-24', 7411, 58427, 4007, NULL, '1.0000', '1.3013', '1.3013', '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 (61339, '2022-02-24', 1928, 58428, 4007, NULL, '1.0000', '5.3300', '5.3300', '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 (61340, '2022-02-24', 9734, 58429, 4007, 47079, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61341, '2022-02-24', 9734, 58429, 4007, NULL, '6.0000', '0.3200', '0.3200', '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 (61342, '2022-02-24', 9794, 58430, 4007, NULL, '1.0000', '1.0800', '1.0800', '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 (61343, '2022-02-24', 2986, 58431, 4007, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61344, '2022-02-24', 1841, 58432, 4007, NULL, '2.0000', '0.2601', '0.2601', '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 (61345, '2022-02-24', 7802, 58433, 4007, NULL, '2.0000', '0.9200', '0.9200', '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 (61346, '2022-02-24', 9731, 58434, 4007, 47083, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61347, '2022-02-24', 9177, 58435, 4007, 50249, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61348, '2022-02-24', 1935, 58436, 4007, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61349, '2022-02-24', 2642, 58437, 4007, 49615, '1.0000', '9.3605', '9.3605', '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 (61350, '2022-02-24', 2366, 58438, 4007, NULL, '6.0000', '-17.8500', '-17.8500', '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 (61351, '2022-02-24', 7915, 58439, 4007, NULL, '1.0000', '2.8000', '2.8000', '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 (61352, '2022-02-24', 8746, 58440, 4007, 49879, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61353, '2022-02-24', 8759, 58441, 4007, NULL, '1.0000', '15.0800', '15.0800', '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 (61354, '2022-02-24', 7411, 58442, 4007, NULL, '1.0000', '1.3013', '1.3013', '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 (61355, '2022-02-24', 7915, 58443, 4007, NULL, '1.0000', '2.8000', '2.8000', '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 (61356, '2022-02-24', 7609, 58444, 4007, NULL, '1.0000', '4.3300', '4.3300', '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 (61357, '2022-02-24', 2332, 58445, 4007, NULL, '1.0000', '5.0900', '5.0900', '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 (61358, '2022-02-24', 2940, 58446, 4007, NULL, '1.0000', '6.3600', '6.3600', '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 (61359, '2022-02-24', 2320, 58447, 4007, 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 (61360, '2022-02-24', 2302, 58448, 4007, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61361, '2022-02-24', 7779, 58449, 4007, NULL, '1.0000', '0.6200', '0.6200', '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 (61362, '2022-02-24', 1425, 58450, 4007, 50239, '1.0000', '7.5328', '7.5328', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61363, '2022-02-24', 1578, 58451, 4007, 49641, '1.0000', '1.9700', '1.9700', '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 (61364, '2022-02-24', 7915, 58452, 4007, NULL, '1.0000', '2.8000', '2.8000', '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 (61365, '2022-02-24', 1884, 58453, 4007, NULL, '1.0000', '4.5207', '4.5207', '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 (61366, '2022-02-24', 9750, 58454, 4007, NULL, '1.0000', '3.3000', '3.3000', '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 (61367, '2022-02-24', 8359, 58455, 4007, NULL, '1.0000', '13.5000', '13.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 (61368, '2022-02-24', 1863, 58456, 4007, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61369, '2022-02-24', 1755, 58457, 4007, 48488, '1.0000', '5.8128', '5.8128', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61370, '2022-02-24', 2936, 58458, 4007, 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 (61371, '2022-02-24', 2167, 58459, 4007, NULL, '1.0000', '2.1310', '2.1310', '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 (61372, '2022-02-24', 1904, 58460, 4007, 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 (61373, '2022-02-24', 2315, 58461, 4007, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '147.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61374, '2022-02-24', 2167, 58462, 4007, NULL, '2.0000', '2.1310', '2.1310', '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 (61375, '2022-02-24', 2088, 58463, 4007, NULL, '1.0000', '1.8798', '1.8798', '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 (61376, '2022-02-24', 2545, 58464, 4007, 49900, '1.0000', '4.2678', '4.2678', '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 (61377, '2022-02-24', 1839, 58465, 4007, NULL, '1.0000', '-9.7683', '-9.7683', '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 (61378, '2022-02-24', 1628, 58466, 4007, NULL, '1.0000', '7.1500', '7.1500', '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 (61379, '2022-02-24', 2136, 58467, 4007, 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 (61380, '2022-02-24', 9722, 58468, 4007, 47061, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61381, '2022-02-24', 9734, 58469, 4007, 47079, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61382, '2022-02-24', 9734, 58469, 4007, NULL, '6.0000', '0.3200', '0.3200', '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 (61383, '2022-02-24', 2732, 58470, 4007, 49317, '1.0000', '27.0375', '27.0375', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61384, '2022-02-24', 2015, 58471, 4007, 42644, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61385, '2022-02-24', 1618, 58472, 4007, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61386, '2022-02-24', 2270, 58473, 4007, 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 (61387, '2022-02-24', 1670, 58474, 4007, NULL, '1.0000', '19.0833', '19.0833', '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 (61388, '2022-02-24', 1564, 58475, 4007, 50077, '4.0000', '3.4988', '3.4988', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61389, '2022-02-24', 1303, 58476, 4007, 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 (61390, '2022-02-24', 1704, 58477, 4007, 48615, '1.0000', '27.2300', '27.2300', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61391, '2022-02-24', 7411, 58478, 4007, NULL, '1.0000', '1.3013', '1.3013', '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 (61392, '2022-02-24', 7641, 58479, 4007, NULL, '1.0000', '1.9000', '1.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 (61393, '2022-02-24', 2167, 58480, 4007, NULL, '1.0000', '2.1310', '2.1310', '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 (61394, '2022-02-24', 2965, 58481, 4007, NULL, '1.0000', '5.8007', '5.8007', '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 (61395, '2022-02-24', 8743, 58482, 4007, NULL, '1.0000', '12.8751', '12.8751', '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 (61396, '2022-02-24', 2726, 58483, 4007, NULL, '1.0000', '2.7004', '2.7004', '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 (61397, '2022-02-24', 1670, 58484, 4007, NULL, '1.0000', '19.0833', '19.0833', '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 (61398, '2022-02-24', 1571, 58485, 4007, 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 (61399, '2022-02-24', 9373, 58486, 4008, NULL, '1.0000', '46.7300', '46.7300', '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 (61400, '2022-02-24', 7514, 58487, 4008, NULL, '1.0000', '97.7006', '97.7006', '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 (61401, '2022-02-24', 2284, 58488, 4008, 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 (61402, '2022-02-24', 2289, 58489, 4008, NULL, '4.0000', '0.9629', '0.9629', '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 (61403, '2022-02-24', 9407, 58490, 4008, 44047, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61404, '2022-02-24', 8075, 58491, 4008, NULL, '1.0000', '3.0000', '3.0000', '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 (61405, '2022-02-24', 7980, 58492, 4008, NULL, '10.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (61406, '2022-02-24', 9092, 58493, 4008, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61407, '2022-02-24', 8925, 58494, 4008, NULL, '1.0000', '2.4000', '2.4000', '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 (61408, '2022-02-24', 9740, 58495, 4008, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61409, '2022-02-24', 8203, 58496, 4008, NULL, '2.0000', '29.8095', '29.8095', '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 (61410, '2022-02-24', 7560, 58497, 4008, NULL, '1.0000', '-165127.7734', '-165127.7734', '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 (61411, '2022-02-24', 7967, 58498, 4008, 50451, '2.0000', '5.5335', '5.5335', '9.5000', '9.5000', '10.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61412, '2022-02-24', 7318, 58499, 4008, 50476, '1.0000', '11.4954', '11.4954', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61413, '2022-02-24', 7678, 58500, 4008, NULL, '1.0000', '5.1400', '5.1400', '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 (61414, '2022-02-24', 9329, 58501, 4008, NULL, '1.0000', '66.1599', '66.1599', '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 (61415, '2022-02-24', 7950, 58502, 4008, NULL, '1.0000', '2.4000', '2.4000', '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 (61416, '2022-02-24', 7380, 58503, 4008, NULL, '1.0000', '8.0000', '8.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 (61417, '2022-02-24', 8457, 58504, 4008, NULL, '1.0000', '5.0785', '5.0785', '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 (61418, '2022-02-24', 8359, 58505, 4008, 50046, '1.0000', '2068.5192', '2068.5192', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61419, '2022-02-24', 7353, 58506, 4008, 45856, '3.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61420, '2022-02-24', 7709, 58507, 4008, NULL, '2.0000', '62.9674', '62.9674', '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 (61421, '2022-02-24', 9598, 58508, 4008, 48084, '1.0000', '4.2550', '4.2550', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61422, '2022-02-24', 7947, 58509, 4008, NULL, '2.0000', '14.4400', '14.4400', '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 (61423, '2022-02-24', 7714, 58510, 4008, NULL, '1.0000', '0.4200', '0.4200', '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 (61424, '2022-02-24', 9204, 58511, 4008, NULL, '2.0000', '8.1600', '8.1600', '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 (61425, '2022-02-24', 9272, 58512, 4008, NULL, '1.0000', '3.1000', '3.1000', '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 (61426, '2022-02-24', 9407, 58513, 4008, 44047, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61427, '2022-02-24', 9809, 58514, 4008, 50628, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61428, '2022-02-24', 8454, 58515, 4008, 45779, '1.0000', '5.1700', '5.1700', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61429, '2022-02-24', 7632, 58516, 4008, 45788, '1.0000', '10.5363', '10.5363', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61430, '2022-02-24', 7408, 58517, 4008, 50461, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61431, '2022-02-24', 8077, 58518, 4008, NULL, '1.0000', '21.3750', '21.3750', '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 (61432, '2022-02-24', 7612, 58519, 4008, 50635, '1.0000', '2.3846', '2.3846', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61433, '2022-02-24', 3006, 58520, 4008, 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 (61434, '2022-02-24', 2287, 58521, 4008, NULL, '4.0000', '2.3000', '2.3000', '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 (61435, '2022-02-24', 2315, 58522, 4008, NULL, '2.0000', '0.8863', '0.8863', '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 (61436, '2022-02-24', 7770, 58523, 4008, 45768, '1.0000', '-4.7700', '-4.7700', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61437, '2022-02-24', 7591, 58524, 4008, NULL, '1.0000', '2.7500', '2.7500', '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 (61438, '2022-02-24', 9680, 58525, 4008, 42786, '1.0000', '37.0000', '37.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61439, '2022-02-24', 9393, 58526, 4008, NULL, '2.0000', '15.0000', '15.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 (61440, '2022-02-24', 2255, 58527, 4008, NULL, '1.0000', '17.4447', '17.4447', '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 (61441, '2022-02-24', 7703, 58528, 4008, NULL, '2.0000', '102.7757', '102.7757', '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 (61442, '2022-02-24', 7754, 58529, 4008, NULL, '1.0000', '19.0200', '19.0200', '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 (61443, '2022-02-24', 7473, 58530, 4008, NULL, '5.0000', '162.5864', '162.5864', '0.6000', '0.6000', '-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 (61444, '2022-02-24', 9393, 58531, 4008, NULL, '1.0000', '15.0000', '15.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 (61445, '2022-02-24', 8702, 58532, 4008, NULL, '1.0000', '3.6700', '3.6700', '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 (61446, '2022-02-24', 2315, 58533, 4008, NULL, '2.0000', '0.8863', '0.8863', '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 (61447, '2022-02-24', 7622, 58534, 4008, NULL, '1.0000', '17.8100', '17.8100', '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 (61448, '2022-02-24', 7509, 58535, 4008, 50047, '1.0000', '7.4933', '7.4933', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61449, '2022-02-24', 2699, 58536, 4008, 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 (61450, '2022-02-24', 7860, 58537, 4008, NULL, '1.0000', '-4.4801', '-4.4801', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61451, '2022-02-24', 7675, 58538, 4008, NULL, '1.0000', '84.8590', '84.8590', '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 (61452, '2022-02-24', 1864, 58539, 4009, 49124, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61453, '2022-02-24', 2801, 58540, 4009, 19034, '1.0000', '65.8800', '65.8800', '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 (61454, '2022-02-24', 2989, 58541, 4009, 48775, '1.0000', '0.9200', '0.9200', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61455, '2022-02-24', 1410, 58542, 4009, 49523, '2.0000', '2.6699', '2.6699', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61456, '2022-02-24', 3058, 58543, 4009, 49093, '1.0000', '3.8000', '3.8000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61457, '2022-02-24', 1425, 58544, 4009, 49992, '1.0000', '7.0572', '7.0572', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61458, '2022-02-24', 2858, 58545, 4009, 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 (61459, '2022-02-24', 1425, 58546, 4009, 49992, '1.0000', '7.0572', '7.0572', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61460, '2022-02-24', 8982, 58547, 4009, 44037, '1.0000', '8.0140', '8.0140', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61461, '2022-02-24', 9214, 58548, 4009, 45622, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61462, '2022-02-24', 1944, 58549, 4009, 5598, '1.0000', '5.0000', '5.0000', '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 (61463, '2022-02-24', 1695, 58550, 4009, 49541, '1.0000', '44.4048', '44.4048', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61464, '2022-02-24', 2761, 58551, 4009, 46038, '2.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61465, '2022-02-24', 1647, 58552, 4009, 48751, '1.0000', '4.9533', '4.9533', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61466, '2022-02-24', 1695, 58553, 4009, 49541, '1.0000', '44.4048', '44.4048', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61467, '2022-02-24', 1841, 58554, 4010, 48007, '4.0000', '0.1792', '0.1792', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61468, '2022-02-24', 2289, 58555, 4010, NULL, '4.0000', '0.9629', '0.9629', '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 (61469, '2022-02-24', 7482, 58556, 4010, NULL, '1.0000', '3.3336', '3.3336', '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 (61470, '2022-02-24', 7822, 58557, 4010, NULL, '1.0000', '8.0333', '8.0333', '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 (61471, '2022-02-24', 8966, 58558, 4010, NULL, '1.0000', '6.4994', '6.4994', '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 (61472, '2022-02-24', 9399, 58559, 4010, NULL, '1.0000', '0.9794', '0.9794', '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 (61473, '2022-02-24', 1837, 58560, 4010, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61474, '2022-02-24', 7412, 58561, 4010, NULL, '1.0000', '1.5200', '1.5200', '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 (61475, '2022-02-24', 7354, 58562, 4010, NULL, '2.0000', '18.0000', '18.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 (61476, '2022-02-24', 7316, 58563, 4010, 50386, '4.0000', '0.8600', '0.8600', '1.2000', '1.2000', '36.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61477, '2022-02-24', 1501, 58564, 4010, 50484, '1.0000', '2.2872', '2.2872', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61478, '2022-02-24', 1321, 58565, 4011, NULL, '1.0000', '4.0234', '4.0234', '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 (61479, '2022-02-24', 7483, 58566, 4011, NULL, '1.0000', '0.4200', '0.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 (61480, '2022-02-24', 2283, 58567, 4011, 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 (61481, '2022-02-24', 7518, 58568, 4011, NULL, '1.0000', '7.8200', '7.8200', '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 (61482, '2022-02-24', 2556, 58569, 4011, 50536, '2.0000', '0.5800', '0.5800', '1.2000', '1.2000', '14.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61483, '2022-02-24', 2166, 58570, 4011, 19833, '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 (61484, '2022-02-24', 1326, 58571, 4011, 48959, '1.0000', '4.5325', '4.5325', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61485, '2022-02-24', 1590, 58572, 4011, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61486, '2022-02-24', 1501, 58573, 4012, NULL, '1.0000', '2.1784', '2.1784', '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 (61487, '2022-02-24', 2109, 58574, 4012, 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 (61488, '2022-02-25', 1912, 58575, 4013, 49559, '2.0000', '0.6337', '0.6337', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61489, '2022-02-25', 1409, 58576, 4013, 49528, '1.0000', '13.0756', '13.0756', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61490, '2022-02-25', 2286, 58577, 4013, 49547, '1.0000', '4.3959', '4.3959', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61491, '2022-02-25', 1748, 58578, 4013, 49137, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61492, '2022-02-25', 7915, 58579, 4013, 46622, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61493, '2022-02-25', 9461, 58580, 4013, 40877, '1.0000', '1.5845', '1.5845', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61494, '2022-02-25', 2607, 58581, 4013, 42956, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '12.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61495, '2022-02-25', 2169, 58582, 4013, 45082, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61496, '2022-02-25', 2556, 58583, 4013, 7199, '1.0000', '0.5800', '0.5800', '1.2000', '1.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 (61497, '2022-02-25', 2250, 58584, 4013, 45125, '1.0000', '6.9096', '6.9096', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61498, '2022-02-25', 1837, 58585, 4013, 46752, '1.0000', '0.4981', '0.4981', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61499, '2022-02-25', 2643, 58586, 4013, 44038, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '17.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61500, '2022-02-25', 2948, 58587, 4013, 49143, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61501, '2022-02-25', 2315, 58588, 4013, 3069, '6.0000', '0.3300', '0.3300', '0.8000', '0.8000', '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 (61502, '2022-02-25', 1730, 58589, 4014, 11661, '-4.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 (61503, '2022-02-25', 1730, 58589, 4014, NULL, '5.0000', '23.9100', '23.9100', '32.0000', '32.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 (61504, '2022-02-25', 7354, 58590, 4014, NULL, '3.0000', '0.3700', '0.3700', '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 (61505, '2022-02-25', 7514, 58591, 4014, NULL, '2.0000', '2.2500', '2.2500', '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 (61506, '2022-02-25', 7447, 58592, 4014, NULL, '5.0000', '19.1100', '19.1100', '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 (61507, '2022-02-25', 9734, 58593, 4014, NULL, '1.0000', '0.3200', '0.3200', '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 (61508, '2022-02-25', 2965, 58594, 4014, NULL, '3.0000', '5.0000', '5.0000', '7.0000', '7.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 (61509, '2022-02-25', 9606, 58595, 4014, 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 (61510, '2022-02-25', 9736, 58596, 4014, NULL, '1.0000', '3.9100', '3.9100', '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 (61511, '2022-02-25', 8657, 58597, 4014, NULL, '1.0000', '6.3900', '6.3900', '10.3000', '10.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 (61512, '2022-02-25', 2295, 58598, 4014, 22264, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '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 (61513, '2022-02-25', 7411, 58599, 4014, NULL, '2.0000', '1.3500', '1.3500', '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 (61514, '2022-02-25', 1501, 58600, 4014, 20590, '1.0000', '2.0500', '2.0500', '3.5000', '3.5000', '5.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 (61515, '2022-02-25', 9469, 58601, 4014, NULL, '1.0000', '2.3000', '2.3000', '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 (61516, '2022-02-25', 9412, 58602, 4014, NULL, '1.0000', '25.0000', '25.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 (61517, '2022-02-25', 7564, 58603, 4014, 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 (61518, '2022-02-25', 7482, 58604, 4014, NULL, '1.0000', '3.0500', '3.0500', '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 (61519, '2022-02-25', 7608, 58605, 4014, NULL, '1.0000', '6.9800', '6.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 (61520, '2022-02-25', 8000, 58606, 4014, NULL, '1.0000', '6.8400', '6.8400', '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 (61521, '2022-02-25', 7967, 58607, 4014, NULL, '1.0000', '7.0000', '7.0000', '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 (61522, '2022-02-25', 1818, 58608, 4014, NULL, '1.0000', '14.8000', '14.8000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61523, '2022-02-25', 1610, 58609, 4014, 8730, '-6.0000', '15.7500', '15.7500', '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 (61524, '2022-02-25', 1610, 58609, 4014, NULL, '7.0000', '15.7500', '15.7500', '22.5000', '22.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 (61525, '2022-02-25', 8172, 58610, 4014, NULL, '1.0000', '40.7000', '40.7000', '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 (61526, '2022-02-25', 9407, 58611, 4014, NULL, '1.0000', '5.4000', '5.4000', '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 (61527, '2022-02-25', 8119, 58612, 4014, 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 (61528, '2022-02-25', 7428, 58613, 4014, NULL, '5.0000', '2.6100', '2.6100', '4.5000', '4.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 (61529, '2022-02-25', 8915, 58614, 4014, 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 (61530, '2022-02-25', 2063, 58615, 4014, 6682, '1.0000', '1.9900', '1.9900', '5.5000', '5.5000', '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 (61531, '2022-02-25', 7672, 58616, 4014, NULL, '1.0000', '1.0200', '1.0200', '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 (61532, '2022-02-25', 2867, 58617, 4014, 18975, '1.0000', '61.9200', '61.9200', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 139);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61533, '2022-02-25', 8007, 58618, 4014, NULL, '1.0000', '8.2000', '8.2000', '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 (61534, '2022-02-25', 8746, 58619, 4014, NULL, '1.0000', '3.1500', '3.1500', '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 (61535, '2022-02-25', 9092, 58620, 4014, NULL, '2.0000', '5.2900', '5.2900', '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 (61536, '2022-02-25', 7954, 58621, 4014, 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 (61537, '2022-02-25', 7867, 58622, 4014, NULL, '2.0000', '1.6300', '1.6300', '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 (61538, '2022-02-25', 1446, 58623, 4015, 47088, '1.0000', '4.8156', '4.8156', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61539, '2022-02-25', 1637, 58624, 4015, NULL, '1.0000', '-41.1667', '-41.1667', '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 (61540, '2022-02-25', 7638, 58625, 4015, 39773, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61541, '2022-02-25', 2936, 58626, 4015, 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 (61542, '2022-02-25', 1602, 58627, 4015, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61543, '2022-02-25', 1825, 58628, 4015, NULL, '1.0000', '5.1984', '5.1984', '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 (61544, '2022-02-25', 2315, 58629, 4015, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '145.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61545, '2022-02-25', 2169, 58630, 4015, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61546, '2022-02-25', 1665, 58631, 4015, 48596, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61547, '2022-02-25', 2269, 58632, 4015, NULL, '1.0000', '5.8300', '5.8300', '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 (61548, '2022-02-25', 1656, 58633, 4015, 39889, '1.0000', '-22.9950', '-22.9950', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61549, '2022-02-25', 1812, 58634, 4015, 47104, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61550, '2022-02-25', 1306, 58635, 4015, 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 (61551, '2022-02-25', 9634, 58636, 4015, 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 (61552, '2022-02-25', 9724, 58637, 4015, 48467, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61553, '2022-02-25', 2758, 58638, 4015, 22379, '1.0000', '5.4000', '5.4000', '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 (61554, '2022-02-25', 7799, 58639, 4015, NULL, '1.0000', '2.0000', '2.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 (61555, '2022-02-25', 1903, 58640, 4015, 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 (61556, '2022-02-25', 2073, 58641, 4015, NULL, '2.0000', '2.3000', '2.3000', '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 (61557, '2022-02-25', 1501, 58642, 4015, NULL, '1.0000', '2.1784', '2.1784', '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 (61558, '2022-02-25', 1590, 58643, 4015, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61559, '2022-02-25', 7411, 58644, 4015, NULL, '5.0000', '1.3013', '1.3013', '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 (61560, '2022-02-25', 1699, 58645, 4015, NULL, '1.0000', '3.2000', '3.2000', '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 (61561, '2022-02-25', 8765, 58646, 4016, 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 (61562, '2022-02-25', 7564, 58647, 4016, 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 (61563, '2022-02-25', 7428, 58648, 4016, NULL, '3.0000', '2.6100', '2.6100', '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 (61564, '2022-02-25', 9734, 58649, 4016, NULL, '1.0000', '0.3200', '0.3200', '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 (61565, '2022-02-25', 9337, 58650, 4016, 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 (61566, '2022-02-25', 7514, 58651, 4017, NULL, '2.0000', '2.2500', '2.2500', '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 (61567, '2022-02-25', 7915, 58652, 4017, NULL, '1.0000', '2.8000', '2.8000', '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 (61568, '2022-02-25', 2992, 58653, 4017, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61569, '2022-02-25', 2161, 58654, 4017, 44159, '1.0000', '9.5000', '9.5000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61570, '2022-02-25', 1910, 58655, 4017, 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 (61571, '2022-02-25', 1559, 58656, 4017, NULL, '1.0000', '31.5000', '31.5000', '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 (61572, '2022-02-25', 1425, 58657, 4017, NULL, '1.0000', '7.5328', '7.5328', '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 (61573, '2022-02-25', 8454, 58658, 4017, NULL, '1.0000', '4.1722', '4.1722', '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 (61574, '2022-02-25', 9736, 58659, 4017, 47093, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61575, '2022-02-25', 2941, 58660, 4017, NULL, '1.0000', '2.6600', '2.6600', '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 (61576, '2022-02-25', 2237, 58661, 4017, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61577, '2022-02-25', 9734, 58662, 4017, NULL, '4.0000', '0.3200', '0.3200', '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 (61578, '2022-02-25', 1339, 58663, 4017, NULL, '1.0000', '1.2000', '1.2000', '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 (61579, '2022-02-25', 2566, 58664, 4018, 22516, '1.0000', '16.0625', '16.0625', '21.0000', '21.0000', '0.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 (61580, '2022-02-25', 2225, 58665, 4018, NULL, '1.0000', '14.0000', '14.0000', '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 (61581, '2022-02-25', 2063, 58666, 4019, 6682, '1.0000', '1.9900', '1.9900', '5.5000', '5.5000', '1.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 (61582, '2022-02-25', 2965, 58667, 4019, 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 (61583, '2022-02-25', 7752, 58668, 4019, 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 (61584, '2022-02-25', 7385, 58669, 4019, 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 (61585, '2022-02-25', 2315, 58670, 4019, 2735, '-170.0000', '0.3300', '0.3300', '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 (61586, '2022-02-25', 2315, 58670, 4019, NULL, '173.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-173.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61587, '2022-02-25', 1841, 58671, 4019, NULL, '2.0000', '142.5780', '142.5780', '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 (61588, '2022-02-25', 7673, 58672, 4019, NULL, '1.0000', '16.8000', '16.8000', '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 (61589, '2022-02-25', 9329, 58673, 4019, NULL, '1.0000', '6.7000', '6.7000', '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 (61590, '2022-02-25', 8359, 58674, 4019, 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 (61591, '2022-02-25', 8746, 58675, 4019, NULL, '1.0000', '3.1500', '3.1500', '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 (61592, '2022-02-25', 7703, 58676, 4019, NULL, '1.0000', '22.9900', '22.9900', '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 (61593, '2022-02-25', 8137, 58677, 4019, NULL, '1.0000', '3.0000', '3.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 (61594, '2022-02-25', 2063, 58678, 4019, 6682, '1.0000', '1.9900', '1.9900', '5.5000', '5.5000', '1.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 (61595, '2022-02-25', 3001, 58679, 4019, NULL, '15.0000', '1.5000', '1.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 (61596, '2022-02-25', 9344, 58680, 4019, NULL, '1.0000', '17.9400', '17.9400', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61597, '2022-02-25', 1819, 58681, 4019, 18240, '-1.0000', '5.5930', '5.5930', '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 (61598, '2022-02-25', 1819, 58681, 4019, NULL, '2.0000', '5.5930', '5.5930', '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 (61599, '2022-02-25', 7657, 58682, 4019, NULL, '1.0000', '11.3200', '11.3200', '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 (61600, '2022-02-25', 9732, 58683, 4019, 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 (61601, '2022-02-25', 8155, 58684, 4019, NULL, '2.0000', '65.0000', '65.0000', '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 (61602, '2022-02-25', 8745, 58685, 4019, 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 (61603, '2022-02-25', 9470, 58686, 4019, NULL, '1.0000', '9.7700', '9.7700', '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 (61604, '2022-02-25', 7428, 58687, 4019, NULL, '2.0000', '2.6100', '2.6100', '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 (61605, '2022-02-25', 7674, 58688, 4019, 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 (61606, '2022-02-25', 7317, 58689, 4019, NULL, '1.0000', '19.5500', '19.5500', '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 (61607, '2022-02-25', 7736, 58690, 4019, NULL, '1.0000', '16.2000', '16.2000', '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 (61608, '2022-02-25', 2315, 58691, 4019, 2735, '-170.0000', '0.3300', '0.3300', '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 (61609, '2022-02-25', 2315, 58691, 4019, NULL, '171.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-171.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61610, '2022-02-25', 7411, 58692, 4019, NULL, '1.0000', '1.3500', '1.3500', '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 (61611, '2022-02-25', 7507, 58693, 4019, NULL, '3.0000', '0.3300', '0.3300', '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 (61612, '2022-02-25', 8140, 58694, 4019, NULL, '1.0000', '10.8000', '10.8000', '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 (61613, '2022-02-25', 9100, 58695, 4019, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61614, '2022-02-25', 7593, 58696, 4019, NULL, '1.0000', '2.4500', '2.4500', '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 (61615, '2022-02-25', 7671, 58697, 4019, NULL, '1.0000', '15.5000', '15.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 (61616, '2022-02-25', 2962, 58698, 4019, 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 (61617, '2022-02-25', 8596, 58699, 4019, 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 (61618, '2022-02-25', 7675, 58700, 4019, NULL, '1.0000', '11.4300', '11.4300', '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 (61619, '2022-02-25', 7852, 58701, 4019, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61620, '2022-02-25', 1531, 58702, 4019, 22267, '3.0000', '0.9600', '0.9600', '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 (61621, '2022-02-25', 8085, 58703, 4019, NULL, '3.0000', '1.1700', '1.1700', '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 (61622, '2022-02-25', 2768, 58704, 4019, 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 (61623, '2022-02-25', 7514, 58705, 4019, NULL, '1.0000', '2.2500', '2.2500', '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 (61624, '2022-02-25', 9393, 58706, 4019, NULL, '2.0000', '15.0000', '15.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 (61625, '2022-02-25', 7671, 58707, 4019, NULL, '2.0000', '15.5000', '15.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 (61626, '2022-02-25', 7640, 58708, 4019, 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 (61627, '2022-02-25', 7411, 58709, 4019, NULL, '2.0000', '1.3500', '1.3500', '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 (61628, '2022-02-25', 7674, 58710, 4019, 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 (61629, '2022-02-25', 2245, 58711, 4019, 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 (61630, '2022-02-25', 7736, 58712, 4019, NULL, '1.0000', '16.2000', '16.2000', '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 (61631, '2022-02-25', 8296, 58713, 4019, NULL, '1.0000', '1.7000', '1.7000', '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 (61632, '2022-02-25', 7318, 58714, 4019, NULL, '1.0000', '13.4400', '13.4400', '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 (61633, '2022-02-25', 7678, 58715, 4019, NULL, '1.0000', '5.1400', '5.1400', '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 (61634, '2022-02-25', 9785, 58716, 4019, 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 (61635, '2022-02-25', 8308, 58717, 4019, NULL, '1.0000', '2.0800', '2.0800', '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 (61636, '2022-02-25', 7472, 58718, 4019, 33824, '1.0000', '4.1000', '4.1000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61637, '2022-02-25', 9092, 58719, 4019, NULL, '2.0000', '5.2900', '5.2900', '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 (61638, '2022-02-25', 8548, 58720, 4019, NULL, '1.0000', '12.0000', '12.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 (61639, '2022-02-25', 8359, 58721, 4019, 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 (61640, '2022-02-25', 7585, 58722, 4019, 33812, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61641, '2022-02-25', 1837, 58723, 4019, 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 (61642, '2022-02-25', 8084, 58724, 4019, NULL, '1.0000', '12.7000', '12.7000', '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 (61643, '2022-02-25', 1585, 58725, 4019, 7602, '-9.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 (61644, '2022-02-25', 1585, 58725, 4019, NULL, '10.0000', '13.0000', '13.0000', '17.5000', '17.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 (61645, '2022-02-25', 1647, 58726, 4019, 3218, '-7.0000', '4.7200', '4.7200', '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 (61646, '2022-02-25', 1647, 58726, 4019, NULL, '9.0000', '4.7200', '4.7200', '7.0000', '7.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 (61647, '2022-02-25', 7591, 58727, 4019, NULL, '1.0000', '2.7500', '2.7500', '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 (61648, '2022-02-25', 8918, 58728, 4019, NULL, '1.0000', '1.0400', '1.0400', '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 (61649, '2022-02-25', 2020, 58729, 4020, 50006, '1.0000', '4.3402', '4.3402', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61650, '2022-02-25', 1928, 58730, 4020, 49135, '1.0000', '36.3169', '36.3169', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61651, '2022-02-25', 2761, 58731, 4020, 46038, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61652, '2022-02-25', 2361, 58732, 4020, 3871, '2.0000', '0.4700', '0.4700', '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 (61653, '2022-02-25', 1863, 58733, 4020, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61654, '2022-02-25', 8413, 58734, 4020, 50560, '2.0000', '90.0000', '90.0000', '110.0000', '110.0000', '1.0000', 1, 0, NULL, 411);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61655, '2022-02-25', 1763, 58735, 4020, 49529, '1.0000', '4.7583', '4.7583', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61656, '2022-02-25', 2360, 58736, 4020, 49990, '5.0000', '0.5200', '0.5200', '0.8000', '0.8000', '41.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61657, '2022-02-25', 2493, 58737, 4020, 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 (61658, '2022-02-25', 2262, 58738, 4020, 49069, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61659, '2022-02-25', 1667, 58739, 4020, 49550, '1.0000', '37.4709', '37.4709', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61660, '2022-02-25', 1855, 58740, 4020, 46773, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61661, '2022-02-25', 2546, 58741, 4021, NULL, '1.0000', '11.0000', '11.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 (61662, '2022-02-25', 9794, 58742, 4021, NULL, '2.0000', '1.0800', '1.0800', '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 (61663, '2022-02-25', 7758, 58743, 4021, NULL, '1.0000', '10.8500', '10.8500', '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 (61664, '2022-02-25', 2315, 58744, 4021, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '144.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61665, '2022-02-25', 9482, 58745, 4021, 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 (61666, '2022-02-25', 2761, 58746, 4021, 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 (61667, '2022-02-25', 7915, 58747, 4021, NULL, '1.0000', '2.8000', '2.8000', '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 (61668, '2022-02-25', 9734, 58748, 4021, NULL, '8.0000', '0.3200', '0.3200', '0.5000', '0.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 (61669, '2022-02-25', 9557, 58749, 4021, 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 (61670, '2022-02-25', 1590, 58750, 4021, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61671, '2022-02-25', 2935, 58751, 4021, NULL, '1.0000', '7.9400', '7.9400', '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 (61672, '2022-02-25', 8548, 58752, 4021, NULL, '1.0000', '12.0000', '12.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 (61673, '2022-02-25', 2259, 58753, 4021, 49309, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61674, '2022-02-25', 2167, 58754, 4021, NULL, '1.0000', '2.1310', '2.1310', '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 (61675, '2022-02-25', 1816, 58755, 4021, NULL, '1.0000', '19.6000', '19.6000', '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 (61676, '2022-02-25', 2088, 58756, 4021, NULL, '2.0000', '1.8798', '1.8798', '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 (61677, '2022-02-25', 1904, 58757, 4021, 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 (61678, '2022-02-25', 1912, 58758, 4021, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61679, '2022-02-25', 3044, 58759, 4021, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '31.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 (61680, '2022-02-25', 1839, 58760, 4021, NULL, '1.0000', '-9.7683', '-9.7683', '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 (61681, '2022-02-25', 3029, 58761, 4021, NULL, '1.0000', '4.7700', '4.7700', '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 (61682, '2022-02-25', 7411, 58762, 4021, NULL, '1.0000', '1.3013', '1.3013', '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 (61683, '2022-02-25', 1665, 58763, 4021, 48596, '2.0000', '1.0999', '1.0999', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61684, '2022-02-25', 1612, 58764, 4021, 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 (61685, '2022-02-25', 8208, 58765, 4021, NULL, '2.0000', '33.0000', '33.0000', '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 (61686, '2022-02-25', 7328, 58766, 4021, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61687, '2022-02-25', 2754, 58767, 4021, 18938, '2.0000', '0.0800', '0.0800', '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 (61688, '2022-02-25', 1884, 58768, 4021, NULL, '1.0000', '4.5207', '4.5207', '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 (61689, '2022-02-25', 9778, 58769, 4021, 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 (61690, '2022-02-25', 8775, 58770, 4021, 43988, '1.0000', '-5.5188', '-5.5188', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61691, '2022-02-25', 8743, 58771, 4021, NULL, '1.0000', '12.8751', '12.8751', '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 (61692, '2022-02-25', 9816, 58772, 4021, NULL, '1.0000', '5.2000', '5.2000', '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 (61693, '2022-02-25', 3060, 58773, 4021, 24980, '1.0000', '4.9000', '4.9000', '6.5000', '6.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 (61694, '2022-02-25', 8746, 58774, 4021, 49879, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61695, '2022-02-25', 9743, 58775, 4021, 50238, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61696, '2022-02-25', 9734, 58776, 4021, NULL, '4.0000', '0.3200', '0.3200', '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 (61697, '2022-02-25', 7411, 58777, 4021, NULL, '1.0000', '1.3013', '1.3013', '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 (61698, '2022-02-25', 9482, 58778, 4021, NULL, '2.0000', '0.5000', '0.5000', '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 (61699, '2022-02-25', 9750, 58779, 4021, NULL, '1.0000', '3.3000', '3.3000', '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 (61700, '2022-02-25', 7411, 58780, 4021, NULL, '1.0000', '1.3013', '1.3013', '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 (61701, '2022-02-25', 2169, 58781, 4021, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61702, '2022-02-25', 7947, 58782, 4021, NULL, '3.0000', '14.4400', '14.4400', '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 (61703, '2022-02-25', 2416, 58783, 4021, 50534, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61704, '2022-02-25', 2037, 58784, 4021, 49613, '1.0000', '10.7500', '10.7500', '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 (61705, '2022-02-25', 9695, 58785, 4021, 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 (61706, '2022-02-25', 7915, 58786, 4021, NULL, '1.0000', '2.8000', '2.8000', '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 (61707, '2022-02-25', 7379, 58787, 4021, NULL, '1.0000', '12.5100', '12.5100', '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 (61708, '2022-02-25', 2299, 58788, 4021, 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 (61709, '2022-02-25', 1585, 58789, 4022, 7602, '-10.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 (61710, '2022-02-25', 1585, 58789, 4022, NULL, '11.0000', '13.0000', '13.0000', '17.5000', '17.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 (61711, '2022-02-25', 9337, 58790, 4022, 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 (61712, '2022-02-25', 2592, 58791, 4023, 48144, '1.0000', '7.6936', '7.6936', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61713, '2022-02-25', 9028, 58792, 4023, 34030, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61714, '2022-02-25', 2699, 58793, 4023, 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 (61715, '2022-02-25', 7411, 58794, 4023, NULL, '1.0000', '1.3013', '1.3013', '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 (61716, '2022-02-25', 9729, 58795, 4023, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61717, '2022-02-25', 9734, 58796, 4023, NULL, '10.0000', '0.3200', '0.3200', '0.5000', '0.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 (61718, '2022-02-25', 1595, 58797, 4023, 50231, '1.0000', '20.1715', '20.1715', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61719, '2022-02-25', 1665, 58798, 4023, 48596, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61720, '2022-02-26', 8187, 58799, 4024, NULL, '3.0000', '14.3900', '14.3900', '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 (61721, '2022-02-26', 9740, 58800, 4024, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61722, '2022-02-26', 1578, 58801, 4024, 49641, '1.0000', '1.9700', '1.9700', '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 (61723, '2022-02-26', 9725, 58802, 4024, 47064, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61724, '2022-02-26', 1402, 58803, 4024, 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 (61725, '2022-02-26', 2242, 58804, 4024, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61726, '2022-02-26', 1761, 58805, 4024, NULL, '2.0000', '1.8200', '1.8200', '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 (61727, '2022-02-26', 1602, 58806, 4024, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61728, '2022-02-26', 1564, 58807, 4024, 50077, '2.0000', '3.4988', '3.4988', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61729, '2022-02-26', 2986, 58808, 4024, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61730, '2022-02-26', 9754, 58809, 4024, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61731, '2022-02-26', 2965, 58810, 4025, NULL, '1.0000', '5.8007', '5.8007', '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 (61732, '2022-02-26', 2231, 58811, 4025, NULL, '1.0000', '34.0000', '34.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 (61733, '2022-02-26', 9731, 58812, 4025, 47083, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61734, '2022-02-26', 2354, 58813, 4025, NULL, '1.0000', '3.6465', '3.6465', '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 (61735, '2022-02-26', 3029, 58814, 4025, NULL, '1.0000', '4.7700', '4.7700', '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 (61736, '2022-02-26', 7756, 58815, 4025, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61737, '2022-02-26', 9815, 58816, 4025, 50255, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '16.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61738, '2022-02-26', 1577, 58817, 4025, NULL, '1.0000', '2.3271', '2.3271', '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 (61739, '2022-02-26', 2037, 58818, 4025, 49613, '1.0000', '10.7500', '10.7500', '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 (61740, '2022-02-26', 9732, 58819, 4025, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61741, '2022-02-26', 1702, 58820, 4025, NULL, '1.0000', '14.9000', '14.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 (61742, '2022-02-26', 1450, 58821, 4026, 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 (61743, '2022-02-26', 1761, 58822, 4026, 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 (61744, '2022-02-26', 1837, 58823, 4026, NULL, '2.0000', '1.5967', '1.5967', '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 (61745, '2022-02-26', 2556, 58824, 4026, 50536, '1.0000', '0.5800', '0.5800', '1.2000', '1.2000', '13.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61746, '2022-02-26', 2083, 58825, 4027, 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 (61747, '2022-02-26', 9729, 58826, 4027, 47080, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61748, '2022-02-26', 7780, 58827, 4028, NULL, '1.0000', '2.6000', '2.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 (61749, '2022-02-26', 1672, 58828, 4028, 46717, '6.0000', '23.6444', '23.6444', '4.2000', '4.2000', '0.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61750, '2022-02-26', 1672, 58828, 4028, 45110, '14.0000', '23.6444', '23.6444', '4.2000', '4.2000', '36.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61751, '2022-02-26', 1687, 58829, 4028, 48796, '1.0000', '12.9700', '12.9700', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61752, '2022-02-26', 2270, 58830, 4028, 45078, '1.0000', '3.0208', '3.0208', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61753, '2022-02-26', 8737, 58831, 4028, NULL, '1.0000', '9.8000', '9.8000', '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 (61754, '2022-02-26', 1675, 58832, 4028, 47962, '1.0000', '38.4964', '38.4964', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61755, '2022-02-26', 1673, 58833, 4028, 9409, '4.0000', '12.9000', '12.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 (61756, '2022-02-26', 8395, 58834, 4028, NULL, '2.0000', '0.9700', '0.9700', '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 (61757, '2022-02-26', 1935, 58835, 4028, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61758, '2022-02-26', 9734, 58836, 4028, 46028, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61759, '2022-02-26', 2317, 58837, 4028, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '30.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61760, '2022-02-26', 1687, 58838, 4028, 48796, '1.0000', '12.9700', '12.9700', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61761, '2022-02-26', 1824, 58839, 4028, 40858, '1.0000', '52.1519', '52.1519', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61762, '2022-02-26', 1876, 58840, 4028, 47992, '1.0000', '20.0632', '20.0632', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61763, '2022-02-26', 1674, 58841, 4028, 49556, '2.0000', '14.5864', '14.5864', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61764, '2022-02-26', 2759, 58842, 4028, 48758, '1.0000', '4.1932', '4.1932', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61765, '2022-02-26', 1867, 58843, 4028, NULL, '1.0000', '9.9596', '9.9596', '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 (61766, '2022-02-26', 1673, 58844, 4028, 9409, '3.0000', '12.9000', '12.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 (61767, '2022-02-26', 1824, 58845, 4028, 40858, '1.0000', '52.1519', '52.1519', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61768, '2022-02-26', 2100, 58846, 4029, 47100, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61769, '2022-02-26', 7318, 58847, 4029, 48729, '1.0000', '10.5283', '10.5283', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61770, '2022-02-26', 1455, 58848, 4029, 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 (61771, '2022-02-26', 9794, 58849, 4029, NULL, '3.0000', '1.0800', '1.0800', '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 (61772, '2022-02-26', 7675, 58850, 4030, NULL, '1.0000', '84.8590', '84.8590', '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 (61773, '2022-02-26', 7917, 58851, 4030, NULL, '4.0000', '5.0000', '5.0000', '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 (61774, '2022-02-26', 7713, 58852, 4030, 50666, '1.0000', '0.3910', '0.3910', '0.6000', '0.6000', '124.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61775, '2022-02-26', 8476, 58853, 4030, NULL, '1.0000', '23.0000', '23.0000', '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 (61776, '2022-02-26', 9734, 58854, 4030, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61777, '2022-02-26', 7704, 58855, 4030, NULL, '1.0000', '-1.5625', '-1.5625', '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 (61778, '2022-02-26', 9092, 58856, 4030, 50305, '3.0000', '0.3129', '0.3129', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61779, '2022-02-26', 1837, 58857, 4030, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61780, '2022-02-26', 2486, 58858, 4030, 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 (61781, '2022-02-26', 7641, 58859, 4030, NULL, '1.0000', '-543.6034', '-543.6034', '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 (61782, '2022-02-26', 8810, 58860, 4030, NULL, '1.0000', '36.0605', '36.0605', '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 (61783, '2022-02-26', 2284, 58861, 4030, 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 (61784, '2022-02-26', 7674, 58862, 4030, 49267, '2.0000', '70.5643', '70.5643', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61785, '2022-02-26', 8101, 58863, 4030, NULL, '2.0000', '21.7000', '21.7000', '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 (61786, '2022-02-26', 9272, 58864, 4030, NULL, '1.0000', '3.1000', '3.1000', '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 (61787, '2022-02-26', 7482, 58865, 4030, NULL, '1.0000', '3.3336', '3.3336', '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 (61788, '2022-02-26', 7514, 58866, 4030, NULL, '1.0000', '97.7006', '97.7006', '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 (61789, '2022-02-26', 9393, 58867, 4030, NULL, '1.0000', '15.0000', '15.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 (61790, '2022-02-26', 9445, 58868, 4030, 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 (61791, '2022-02-26', 8361, 58869, 4030, NULL, '1.0000', '7.2778', '7.2778', '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 (61792, '2022-02-26', 2753, 58870, 4030, 45602, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61793, '2022-02-26', 7877, 58871, 4030, NULL, '1.0000', '3.2419', '3.2419', '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 (61794, '2022-02-26', 7946, 58872, 4030, 48254, '2.0000', '-3.9133', '-3.9133', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61795, '2022-02-26', 7867, 58873, 4030, NULL, '2.0000', '2.1368', '2.1368', '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 (61796, '2022-02-26', 9094, 58874, 4030, NULL, '1.0000', '5.7002', '5.7002', '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 (61797, '2022-02-26', 7917, 58875, 4030, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (61798, '2022-02-26', 7428, 58876, 4030, 50471, '1.0000', '65.9358', '65.9358', '4.5000', '4.5000', '108.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61799, '2022-02-26', 7931, 58877, 4030, NULL, '1.0000', '-5.6250', '-5.6250', '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 (61800, '2022-02-26', 8924, 58878, 4030, NULL, '2.0000', '4.5000', '4.5000', '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 (61801, '2022-02-26', 9794, 58879, 4030, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61802, '2022-02-26', 9272, 58880, 4030, NULL, '1.0000', '3.1000', '3.1000', '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 (61803, '2022-02-26', 9729, 58881, 4030, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61804, '2022-02-26', 2289, 58882, 4030, NULL, '4.0000', '0.9629', '0.9629', '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 (61805, '2022-02-26', 3006, 58883, 4030, 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 (61806, '2022-02-26', 7711, 58884, 4030, NULL, '1.0000', '-204.0169', '-204.0169', '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 (61807, '2022-02-26', 7666, 58885, 4030, NULL, '1.0000', '-1.5200', '-1.5200', '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 (61808, '2022-02-26', 9698, 58886, 4030, 46180, '1.0000', '7.7000', '7.7000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61809, '2022-02-26', 7715, 58887, 4030, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '37.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61810, '2022-02-26', 7412, 58888, 4030, NULL, '1.0000', '1.5200', '1.5200', '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 (61811, '2022-02-26', 9734, 58889, 4030, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61812, '2022-02-26', 7473, 58890, 4030, NULL, '5.0000', '710.0742', '710.0742', '0.6000', '0.6000', '-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 (61813, '2022-02-26', 2104, 58891, 4030, NULL, '6.0000', '0.2000', '0.2000', '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 (61814, '2022-02-26', 8849, 58892, 4030, NULL, '1.0000', '1.0700', '1.0700', '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 (61815, '2022-02-26', 7632, 58893, 4030, 45788, '1.0000', '10.5363', '10.5363', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61816, '2022-02-26', 7565, 58894, 4030, NULL, '1.0000', '0.2000', '0.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 (61817, '2022-02-26', 9800, 58895, 4030, 50116, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 408);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61818, '2022-02-26', 7544, 58896, 4030, NULL, '2.0000', '9.4300', '9.4300', '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 (61819, '2022-02-26', 9721, 58897, 4030, NULL, '1.0000', '11.7000', '11.7000', '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 (61820, '2022-02-26', 9804, 58898, 4030, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61821, '2022-02-26', 8308, 58899, 4030, NULL, '1.0000', '14.1857', '14.1857', '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 (61822, '2022-02-26', 9809, 58900, 4030, 50628, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61823, '2022-02-26', 7672, 58901, 4030, NULL, '1.0000', '3.8200', '3.8200', '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 (61824, '2022-02-26', 9761, 58902, 4030, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61825, '2022-02-26', 8083, 58903, 4030, 49404, '1.0000', '51.2300', '51.2300', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 372);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61826, '2022-02-26', 9286, 58904, 4030, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '7.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61827, '2022-02-26', 7514, 58905, 4031, NULL, '1.0000', '2.2500', '2.2500', '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 (61828, '2022-02-26', 2648, 58906, 4031, 49626, '1.0000', '5.4000', '5.4000', '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 (61829, '2022-02-26', 7917, 58907, 4031, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61830, '2022-02-26', 8984, 58908, 4031, NULL, '1.0000', '-100.8495', '-100.8495', '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 (61831, '2022-02-26', 7379, 58909, 4031, NULL, '1.0000', '12.5100', '12.5100', '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 (61832, '2022-02-26', 2250, 58910, 4031, 48128, '1.0000', '6.9835', '6.9835', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61833, '2022-02-26', 2315, 58911, 4031, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '143.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61834, '2022-02-26', 9758, 58912, 4031, NULL, '1.0000', '3.1400', '3.1400', '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 (61835, '2022-02-26', 3058, 58913, 4031, NULL, '2.0000', '2.3000', '2.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 (61836, '2022-02-26', 1757, 58914, 4031, NULL, '1.0000', '4.0024', '4.0024', '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 (61837, '2022-02-26', 7641, 58915, 4031, NULL, '1.0000', '1.9000', '1.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 (61838, '2022-02-26', 7472, 58916, 4031, NULL, '1.0000', '4.2055', '4.2055', '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 (61839, '2022-02-26', 9734, 58917, 4031, NULL, '2.0000', '0.3200', '0.3200', '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 (61840, '2022-02-26', 2633, 58918, 4031, 50528, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61841, '2022-02-26', 2962, 58919, 4031, 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 (61842, '2022-02-26', 1873, 58920, 4031, NULL, '1.0000', '11.9500', '11.9500', '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 (61843, '2022-02-26', 1812, 58921, 4031, 47104, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61844, '2022-02-26', 1812, 58921, 4031, 23688, '2.0000', '7.9262', '7.9262', '10.5000', '10.5000', '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 (61845, '2022-02-26', 7906, 58922, 4031, NULL, '1.0000', '9.3000', '9.3000', '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 (61846, '2022-02-26', 9700, 58923, 4031, 44154, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61847, '2022-02-26', 3027, 58924, 4031, 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 (61848, '2022-02-26', 1953, 58925, 4031, 34626, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61849, '2022-02-26', 7638, 58926, 4031, 39773, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61850, '2022-02-26', 7758, 58927, 4031, NULL, '1.0000', '10.8500', '10.8500', '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 (61851, '2022-02-26', 8690, 58928, 4032, 50462, '1.0000', '10.8000', '10.8000', '14.5000', '14.5000', '18.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61852, '2022-02-26', 9399, 58929, 4032, NULL, '1.0000', '0.9794', '0.9794', '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 (61853, '2022-02-26', 8744, 58930, 4032, 49435, '3.0000', '3.7083', '3.7083', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61854, '2022-02-26', 2669, 58931, 4032, 36678, '1.0000', '24.0100', '24.0100', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61855, '2022-02-26', 1510, 58932, 4032, 47901, '1.0000', '8.7203', '8.7203', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61856, '2022-02-26', 2486, 58933, 4032, 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 (61857, '2022-02-26', 9412, 58934, 4032, NULL, '1.0000', '25.0000', '25.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 (61858, '2022-02-26', 7408, 58935, 4032, 50461, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61859, '2022-02-26', 7638, 58936, 4032, 50643, '1.0000', '-0.9096', '-0.9096', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61860, '2022-02-26', 8296, 58937, 4032, NULL, '2.0000', '112.3600', '112.3600', '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 (61861, '2022-02-26', 9578, 58938, 4032, NULL, '1.0000', '8.0000', '8.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 (61862, '2022-02-26', 7629, 58939, 4032, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61863, '2022-02-26', 2411, 58940, 4032, 43089, '1.0000', '68.8404', '68.8404', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61864, '2022-02-26', 9397, 58941, 4032, NULL, '1.0000', '0.5600', '0.5600', '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 (61865, '2022-02-26', 9556, 58942, 4032, NULL, '1.0000', '0.2770', '0.2770', '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 (61866, '2022-02-26', 1837, 58943, 4032, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61867, '2022-02-26', 1904, 58944, 4032, 37842, '1.0000', '27.8194', '27.8194', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61868, '2022-02-26', 7558, 58945, 4032, 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 (61869, '2022-02-26', 7564, 58946, 4032, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61870, '2022-02-26', 1498, 58947, 4032, 50696, '2.0000', '0.3942', '0.3942', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61871, '2022-02-26', 7507, 58948, 4032, NULL, '3.0000', '6.5000', '6.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 (61872, '2022-02-26', 7548, 58949, 4032, NULL, '1.0000', '3.2042', '3.2042', '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 (61873, '2022-02-26', 7514, 58950, 4032, NULL, '2.0000', '97.7006', '97.7006', '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 (61874, '2022-02-26', 7685, 58951, 4032, NULL, '1.0000', '31.2000', '31.2000', '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 (61875, '2022-02-26', 7675, 58952, 4032, NULL, '1.0000', '84.8590', '84.8590', '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 (61876, '2022-02-26', 9732, 58953, 4032, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61877, '2022-02-26', 7867, 58954, 4032, NULL, '2.0000', '2.1368', '2.1368', '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 (61878, '2022-02-26', 8145, 58955, 4032, NULL, '1.0000', '28.0000', '28.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 (61879, '2022-02-26', 2243, 58956, 4032, 36059, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61880, '2022-02-26', 2284, 58957, 4032, 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 (61881, '2022-02-26', 7507, 58958, 4032, NULL, '3.0000', '6.5000', '6.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 (61882, '2022-02-26', 2295, 58959, 4032, 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 (61883, '2022-02-26', 2315, 58960, 4032, NULL, '1.0000', '0.8863', '0.8863', '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 (61884, '2022-02-26', 1817, 58961, 4032, NULL, '1.0000', '9.5500', '9.5500', '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 (61885, '2022-02-26', 8674, 58962, 4032, NULL, '1.0000', '28.8900', '28.8900', '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 (61886, '2022-02-26', 7611, 58963, 4032, 47934, '1.0000', '4.6669', '4.6669', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61887, '2022-02-26', 7641, 58964, 4032, NULL, '1.0000', '-543.6034', '-543.6034', '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 (61888, '2022-02-26', 8952, 58965, 4032, NULL, '1.0000', '5.1459', '5.1459', '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 (61889, '2022-02-26', 9734, 58966, 4032, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '85.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61890, '2022-02-26', 7857, 58967, 4032, NULL, '1.0000', '13.5492', '13.5492', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61891, '2022-02-26', 7658, 58968, 4032, 47945, '4.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61892, '2022-02-26', 7658, 58968, 4032, NULL, '6.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '-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 (61893, '2022-02-26', 7411, 58969, 4032, NULL, '1.0000', '1.2529', '1.2529', '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 (61894, '2022-02-26', 7685, 58970, 4032, NULL, '1.0000', '31.2000', '31.2000', '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 (61895, '2022-02-26', 7674, 58971, 4032, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61896, '2022-02-26', 8188, 58972, 4032, NULL, '1.0000', '6.7000', '6.7000', '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 (61897, '2022-02-26', 9779, 58973, 4032, 50459, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61898, '2022-02-26', 7518, 58974, 4032, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (61899, '2022-02-26', 9658, 58975, 4032, 42666, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61900, '2022-02-26', 1867, 58976, 4032, 50454, '1.0000', '11.8714', '11.8714', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61901, '2022-02-26', 7848, 58977, 4032, NULL, '1.0000', '-17.3215', '-17.3215', '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 (61902, '2022-02-26', 7514, 58978, 4032, NULL, '2.0000', '97.7006', '97.7006', '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 (61903, '2022-02-26', 1856, 58979, 4032, 49813, '1.0000', '-5.9870', '-5.9870', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61904, '2022-02-26', 9740, 58980, 4032, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61905, '2022-02-26', 8686, 58981, 4032, NULL, '1.0000', '6.8583', '6.8583', '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 (61906, '2022-02-26', 2673, 58982, 4032, 45793, '1.0000', '17.0000', '17.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61907, '2022-02-26', 7636, 58983, 4032, 48834, '10.0000', '11.8700', '11.8700', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61908, '2022-02-26', 7709, 58984, 4032, NULL, '2.0000', '62.9674', '62.9674', '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 (61909, '2022-02-26', 7886, 58985, 4032, NULL, '1.0000', '6.7841', '6.7841', '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 (61910, '2022-02-26', 8702, 58986, 4032, NULL, '1.0000', '3.6700', '3.6700', '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 (61911, '2022-02-26', 7453, 58987, 4032, 49818, '1.0000', '28.5000', '28.5000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61912, '2022-02-26', 7709, 58988, 4032, NULL, '2.0000', '62.9674', '62.9674', '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 (61913, '2022-02-26', 1812, 58989, 4033, 49993, '1.0000', '7.9738', '7.9738', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61914, '2022-02-26', 2167, 58990, 4033, 45090, '1.0000', '2.3022', '2.3022', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61915, '2022-02-26', 9740, 58991, 4033, 46037, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61916, '2022-02-26', 1564, 58992, 4033, 44767, '2.0000', '10.2805', '10.2805', '4.0000', '4.0000', '120.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61917, '2022-02-26', 7514, 58993, 4033, NULL, '2.0000', '2.2500', '2.2500', '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 (61918, '2022-02-26', 9819, 58994, 4033, NULL, '1.0000', '3.6300', '3.6300', '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 (61919, '2022-02-26', 2465, 58995, 4033, 48768, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61920, '2022-02-26', 8711, 58996, 4033, NULL, '1.0000', '5.1000', '5.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 (61921, '2022-02-26', 9758, 58997, 4033, NULL, '1.0000', '3.1400', '3.1400', '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 (61922, '2022-02-26', 7743, 58998, 4033, NULL, '1.0000', '1.3100', '1.3100', '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 (61923, '2022-02-26', 7820, 58999, 4033, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61924, '2022-02-26', 1425, 59000, 4033, 49167, '1.0000', '7.0572', '7.0572', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61925, '2022-02-26', 7411, 59001, 4033, 48774, '1.0000', '1.3632', '1.3632', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61926, '2022-02-26', 1855, 59002, 4033, 46773, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61927, '2022-02-26', 9715, 59003, 4033, 46036, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61928, '2022-02-26', 9735, 59004, 4033, 46029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61929, '2022-02-26', 9109, 59005, 4033, 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 (61930, '2022-02-26', 8626, 59006, 4033, NULL, '1.0000', '7.5000', '7.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 (61931, '2022-02-26', 8548, 59007, 4033, NULL, '1.0000', '12.0000', '12.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 (61932, '2022-02-26', 2169, 59008, 4033, 45082, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61933, '2022-02-26', 8040, 59009, 4033, NULL, '1.0000', '14.9000', '14.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 (61934, '2022-02-26', 9695, 59010, 4033, 49478, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61935, '2022-02-26', 2283, 59011, 4033, 3123, '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 (61936, '2022-02-26', 1812, 59012, 4033, 49993, '1.0000', '7.9738', '7.9738', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61937, '2022-02-26', 1580, 59013, 4033, 49469, '3.0000', '1.1133', '1.1133', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61938, '2022-02-26', 1665, 59014, 4033, 49242, '2.0000', '1.1871', '1.1871', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61939, '2022-02-26', 2547, 59015, 4033, 49543, '1.0000', '9.4412', '9.4412', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61940, '2022-02-26', 2242, 59016, 4033, 49112, '3.0000', '0.6543', '0.6543', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61941, '2022-02-26', 9021, 59017, 4033, NULL, '1.0000', '6.7300', '6.7300', '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 (61942, '2022-02-26', 8328, 59018, 4033, NULL, '1.0000', '8.1000', '8.1000', '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 (61943, '2022-02-26', 8360, 59019, 4033, NULL, '1.0000', '3.2300', '3.2300', '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 (61944, '2022-02-26', 9482, 59020, 4033, 32585, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '142.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61945, '2022-02-26', 1564, 59021, 4033, 44767, '10.0000', '10.2805', '10.2805', '4.0000', '4.0000', '112.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61946, '2022-02-26', 9240, 59022, 4033, NULL, '1.0000', '25.1200', '25.1200', '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 (61947, '2022-02-26', 1337, 59023, 4033, 47979, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61948, '2022-02-26', 7762, 59024, 4033, NULL, '1.0000', '1.5000', '1.5000', '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 (61949, '2022-02-26', 7641, 59025, 4034, NULL, '1.0000', '-543.6034', '-543.6034', '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 (61950, '2022-02-26', 7638, 59026, 4034, 50643, '1.0000', '-0.9096', '-0.9096', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61951, '2022-02-26', 9740, 59027, 4034, 46921, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61952, '2022-02-26', 9736, 59028, 4034, 46927, '1.0000', '3.9100', '3.9100', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61953, '2022-02-26', 7444, 59029, 4034, NULL, '1.0000', '2.0190', '2.0190', '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 (61954, '2022-02-26', 1918, 59030, 4034, NULL, '1.0000', '6.0500', '6.0500', '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 (61955, '2022-02-26', 7496, 59031, 4034, NULL, '1.0000', '0.9600', '0.9600', '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 (61956, '2022-02-26', 8068, 59032, 4034, NULL, '1.0000', '8.7900', '8.7900', '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 (61957, '2022-02-26', 7514, 59033, 4034, NULL, '1.0000', '97.7006', '97.7006', '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 (61958, '2022-02-26', 9482, 59034, 4035, 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 (61959, '2022-02-26', 7411, 59035, 4035, NULL, '1.0000', '1.3013', '1.3013', '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 (61960, '2022-02-26', 2821, 59036, 4035, NULL, '1.0000', '3.4701', '3.4701', '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 (61961, '2022-02-26', 9631, 59037, 4035, 48514, '1.0000', '7.0000', '7.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61962, '2022-02-27', 9745, 59038, 4036, NULL, '1.0000', '7.2000', '7.2000', '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 (61963, '2022-02-27', 8315, 59039, 4036, NULL, '1.0000', '14.3500', '14.3500', '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 (61964, '2022-02-27', 7659, 59040, 4036, NULL, '1.0000', '5.9700', '5.9700', '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 (61965, '2022-02-27', 1338, 59041, 4036, 16502, '-7.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 (61966, '2022-02-27', 1338, 59041, 4036, NULL, '8.0000', '4.0000', '4.0000', '6.5000', '6.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 (61967, '2022-02-27', 2235, 59042, 4037, 33819, '1.0000', '19.4250', '19.4250', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61968, '2022-02-27', 9329, 59043, 4037, NULL, '2.0000', '6.7000', '6.7000', '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 (61969, '2022-02-27', 1329, 59044, 4037, NULL, '1.0000', '8.5000', '8.5000', '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 (61970, '2022-02-27', 2263, 59045, 4038, 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 (61971, '2022-02-27', 1748, 59046, 4038, NULL, '6.0000', '0.3200', '0.3200', '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 (61972, '2022-02-27', 2167, 59047, 4038, NULL, '2.0000', '2.1310', '2.1310', '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 (61973, '2022-02-27', 2260, 59048, 4038, 49305, '2.0000', '4.2238', '4.2238', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61974, '2022-02-27', 9725, 59049, 4038, 47064, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61975, '2022-02-27', 9729, 59050, 4038, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61976, '2022-02-27', 8923, 59051, 4038, NULL, '2.0000', '7.2500', '7.2500', '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 (61977, '2022-02-27', 7342, 59052, 4038, NULL, '1.0000', '15.6000', '15.6000', '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 (61978, '2022-02-27', 2085, 59053, 4038, NULL, '5.0000', '3.1057', '3.1057', '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 (61979, '2022-02-27', 1946, 59054, 4038, NULL, '1.0000', '1.5500', '1.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 (61980, '2022-02-27', 8079, 59055, 4038, NULL, '1.0000', '14.3600', '14.3600', '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 (61981, '2022-02-27', 2037, 59056, 4038, 49613, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61982, '2022-02-27', 8706, 59057, 4038, 49256, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61983, '2022-02-27', 1641, 59058, 4038, NULL, '11.0000', '1.9923', '1.9923', '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 (61984, '2022-02-27', 7849, 59059, 4038, 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 (61985, '2022-02-27', 1639, 59060, 4038, 41380, '1.0000', '6.8925', '6.8925', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61986, '2022-02-27', 9758, 59061, 4038, NULL, '1.0000', '3.1400', '3.1400', '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 (61987, '2022-02-27', 2297, 59062, 4038, 31101, '1.0000', '6.4800', '6.4800', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61988, '2022-02-27', 9813, 59063, 4038, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61989, '2022-02-27', 1621, 59064, 4038, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '32.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61990, '2022-02-27', 2821, 59065, 4038, NULL, '1.0000', '3.4701', '3.4701', '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 (61991, '2022-02-27', 1602, 59066, 4038, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61992, '2022-02-27', 1912, 59067, 4038, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61993, '2022-02-27', 1425, 59068, 4039, NULL, '1.0000', '7.5328', '7.5328', '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 (61994, '2022-02-27', 1533, 59069, 4039, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61995, '2022-02-27', 2242, 59070, 4039, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61996, '2022-02-27', 8444, 59071, 4039, 49349, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61997, '2022-02-27', 1428, 59072, 4039, 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 (61998, '2022-02-27', 1912, 59073, 4040, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61999, '2022-02-27', 2414, 59074, 4040, 48492, '2.0000', '3.9438', '3.9438', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62000, '2022-02-27', 2414, 59074, 4040, NULL, '2.0000', '3.9438', '3.9438', '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 (62001, '2022-02-27', 1531, 59075, 4040, 48906, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62002, '2022-02-27', 2293, 59076, 4040, NULL, '2.0000', '-15.8931', '-15.8931', '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 (62003, '2022-02-27', 1702, 59077, 4040, NULL, '1.0000', '14.9000', '14.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 (62004, '2022-02-27', 8133, 59078, 4040, NULL, '1.0000', '-618.7699', '-618.7699', '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 (62005, '2022-02-27', 9758, 59079, 4040, NULL, '1.0000', '3.1400', '3.1400', '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 (62006, '2022-02-27', 8033, 59080, 4040, 49366, '1.0000', '18.1074', '18.1074', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62007, '2022-02-27', 2129, 59081, 4040, 34597, '1.0000', '6.4100', '6.4100', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62008, '2022-02-27', 1812, 59082, 4040, 23688, '1.0000', '7.9262', '7.9262', '10.5000', '10.5000', '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 (62009, '2022-02-27', 2448, 59083, 4040, 23980, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '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 (62010, '2022-02-27', 1450, 59084, 4040, 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 (62011, '2022-02-27', 2136, 59085, 4040, 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 (62012, '2022-02-27', 2169, 59086, 4041, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62013, '2022-02-27', 2393, 59087, 4041, 48949, '1.0000', '4.0019', '4.0019', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62014, '2022-02-27', 1863, 59088, 4041, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62015, '2022-02-27', 1690, 59089, 4041, 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 (62016, '2022-02-27', 2754, 59090, 4041, 18938, '2.0000', '0.0800', '0.0800', '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 (62017, '2022-02-27', 1855, 59091, 4041, NULL, '1.0000', '1.5003', '1.5003', '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 (62018, '2022-02-27', 1618, 59092, 4041, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62019, '2022-02-27', 7459, 59093, 4041, NULL, '1.0000', '-6.1729', '-6.1729', '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 (62020, '2022-02-27', 2274, 59094, 4041, NULL, '1.0000', '3.9800', '3.9800', '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 (62021, '2022-02-27', 7391, 59095, 4041, NULL, '1.0000', '15.6000', '15.6000', '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 (62022, '2022-02-27', 2103, 59096, 4041, 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 (62023, '2022-02-27', 8756, 59097, 4041, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62024, '2022-02-27', 9758, 59098, 4041, NULL, '1.0000', '3.1400', '3.1400', '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 (62025, '2022-02-27', 2169, 59099, 4041, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62026, '2022-02-27', 8817, 59100, 4041, NULL, '1.0000', '18.0000', '18.0000', '20.0600', '20.0600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62027, '2022-02-27', 1884, 59101, 4041, NULL, '1.0000', '4.5207', '4.5207', '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 (62028, '2022-02-27', 2167, 59102, 4041, NULL, '1.0000', '2.1310', '2.1310', '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 (62029, '2022-02-27', 1608, 59103, 4041, 50240, '1.0000', '3.8581', '3.8581', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62030, '2022-02-27', 1666, 59104, 4041, 49363, '1.0000', '2.7286', '2.7286', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62031, '2022-02-27', 1863, 59105, 4041, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62032, '2022-02-27', 2286, 59106, 4041, 50523, '2.0000', '4.4402', '4.4402', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62033, '2022-02-27', 2169, 59107, 4041, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62034, '2022-02-27', 9109, 59108, 4041, 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 (62035, '2022-02-27', 2167, 59109, 4041, NULL, '1.0000', '2.1310', '2.1310', '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 (62036, '2022-02-27', 1602, 59110, 4042, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62037, '2022-02-27', 2169, 59111, 4042, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62038, '2022-02-27', 2327, 59112, 4043, 49257, '4.0000', '3.8469', '3.8469', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62039, '2022-02-27', 8127, 59113, 4043, 48732, '1.0000', '24.5300', '24.5300', '1.2000', '1.2000', '17.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62040, '2022-02-27', 9747, 59114, 4043, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62041, '2022-02-27', 7674, 59115, 4043, 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 (62042, '2022-02-27', 1912, 59116, 4043, 49717, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62043, '2022-02-27', 1493, 59117, 4043, 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 (62044, '2022-02-27', 1499, 59118, 4043, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62045, '2022-02-27', 1339, 59119, 4043, NULL, '1.0000', '1.2000', '1.2000', '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 (62046, '2022-02-27', 1425, 59120, 4043, NULL, '1.0000', '7.5328', '7.5328', '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 (62047, '2022-02-27', 9750, 59121, 4043, NULL, '1.0000', '3.3000', '3.3000', '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 (62048, '2022-02-27', 2104, 59122, 4043, 22380, '2.0000', '0.2000', '0.2000', '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 (62049, '2022-02-27', 8758, 59123, 4044, NULL, '2.0000', '5.8000', '5.8000', '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 (62050, '2022-02-27', 7583, 59124, 4044, NULL, '1.0000', '4.0000', '4.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 (62051, '2022-02-27', 7412, 59125, 4044, NULL, '1.0000', '1.5200', '1.5200', '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 (62052, '2022-02-27', 7704, 59126, 4044, NULL, '1.0000', '0.4900', '0.4900', '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 (62053, '2022-02-27', 8924, 59127, 4044, NULL, '1.0000', '4.5000', '4.5000', '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 (62054, '2022-02-27', 1760, 59128, 4044, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '44.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 (62055, '2022-02-27', 7641, 59129, 4044, NULL, '1.0000', '1.9000', '1.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 (62056, '2022-02-27', 2243, 59130, 4044, NULL, '1.0000', '3.5000', '3.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 (62057, '2022-02-27', 8966, 59131, 4044, 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 (62058, '2022-02-27', 9252, 59132, 4044, NULL, '2.0000', '11.5000', '11.5000', '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 (62059, '2022-02-27', 7704, 59133, 4044, NULL, '1.0000', '0.4900', '0.4900', '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 (62060, '2022-02-27', 7852, 59134, 4044, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62061, '2022-02-27', 8308, 59135, 4044, NULL, '1.0000', '2.0800', '2.0800', '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 (62062, '2022-02-27', 7473, 59136, 4044, NULL, '2.0000', '0.5300', '0.5300', '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 (62063, '2022-02-27', 8672, 59137, 4044, 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 (62064, '2022-02-27', 1884, 59138, 4044, 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 (62065, '2022-02-27', 9818, 59139, 4044, NULL, '1.0000', '1.5000', '1.5000', '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 (62066, '2022-02-27', 7658, 59140, 4044, NULL, '10.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (62067, '2022-02-27', 8596, 59141, 4044, 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 (62068, '2022-02-27', 8309, 59142, 4044, NULL, '1.0000', '14.5000', '14.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 (62069, '2022-02-27', 7724, 59143, 4044, 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 (62070, '2022-02-27', 7685, 59144, 4044, NULL, '2.0000', '31.2000', '31.2000', '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 (62071, '2022-02-27', 1765, 59145, 4044, 3175, '-4.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 (62072, '2022-02-27', 1765, 59145, 4044, NULL, '5.0000', '90.0000', '90.0000', '7.5000', '7.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 (62073, '2022-02-27', 7598, 59146, 4044, NULL, '1.0000', '1.2800', '1.2800', '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 (62074, '2022-02-27', 9730, 59147, 4044, NULL, '1.0000', '18.2000', '18.2000', '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 (62075, '2022-02-27', 7560, 59148, 4044, NULL, '1.0000', '33.0200', '33.0200', '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 (62076, '2022-02-27', 8596, 59149, 4044, 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 (62077, '2022-02-27', 9337, 59150, 4044, 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 (62078, '2022-02-27', 7518, 59151, 4044, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62079, '2022-02-27', 8083, 59152, 4044, NULL, '1.0000', '26.0000', '26.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 (62080, '2022-02-27', 2435, 59153, 4044, 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 (62081, '2022-02-27', 9734, 59154, 4044, NULL, '1.0000', '0.3200', '0.3200', '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 (62082, '2022-02-27', 9784, 59155, 4044, 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 (62083, '2022-02-27', 7822, 59156, 4044, 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 (62084, '2022-02-27', 8359, 59157, 4044, NULL, '2.0000', '13.0000', '13.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 (62085, '2022-02-27', 8756, 59158, 4044, 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 (62086, '2022-02-27', 9734, 59159, 4044, NULL, '1.0000', '0.3200', '0.3200', '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 (62087, '2022-02-27', 1408, 59160, 4044, 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 (62088, '2022-02-27', 9092, 59161, 4044, NULL, '2.0000', '5.2900', '5.2900', '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 (62089, '2022-02-27', 2241, 59162, 4044, 3058, '-4.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 (62090, '2022-02-27', 2241, 59162, 4044, NULL, '5.0000', '6.5900', '6.5900', '9.0000', '9.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 (62091, '2022-02-27', 7724, 59163, 4044, 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 (62092, '2022-02-27', 2962, 59164, 4044, 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 (62093, '2022-02-27', 8288, 59165, 4044, NULL, '5.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (62094, '2022-02-27', 7657, 59166, 4044, NULL, '1.0000', '11.3200', '11.3200', '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 (62095, '2022-02-27', 9092, 59167, 4044, NULL, '2.0000', '5.2900', '5.2900', '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 (62096, '2022-02-27', 7588, 59168, 4044, 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 (62097, '2022-02-27', 1974, 59169, 4044, 33066, '1.0000', '14.0000', '14.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62098, '2022-02-27', 8032, 59170, 4044, NULL, '1.0000', '6.4400', '6.4400', '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 (62099, '2022-02-27', 7385, 59171, 4044, NULL, '4.0000', '2.0000', '2.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 (62100, '2022-02-27', 8744, 59172, 4044, NULL, '1.0000', '3.6600', '3.6600', '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 (62101, '2022-02-27', 8746, 59173, 4044, NULL, '1.0000', '3.1500', '3.1500', '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 (62102, '2022-02-27', 8224, 59174, 4044, NULL, '1.0000', '1.5000', '1.5000', '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 (62103, '2022-02-27', 7703, 59175, 4044, NULL, '2.0000', '22.9900', '22.9900', '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 (62104, '2022-02-27', 9089, 59176, 4044, NULL, '1.0000', '3.8000', '3.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 (62105, '2022-02-27', 8769, 59177, 4044, NULL, '1.0000', '6.6000', '6.6000', '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 (62106, '2022-02-27', 9740, 59178, 4044, NULL, '1.0000', '0.6600', '0.6600', '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 (62107, '2022-02-27', 9794, 59179, 4044, NULL, '1.0000', '1.0800', '1.0800', '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 (62108, '2022-02-27', 9736, 59180, 4044, NULL, '1.0000', '3.9100', '3.9100', '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 (62109, '2022-02-27', 2962, 59181, 4044, 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 (62110, '2022-02-27', 7890, 59182, 4044, NULL, '1.0000', '1.0000', '1.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62111, '2022-02-27', 8438, 59183, 4044, 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 (62112, '2022-02-27', 7886, 59184, 4044, 33789, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62113, '2022-02-27', 7925, 59185, 4044, NULL, '1.0000', '8.3000', '8.3000', '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 (62114, '2022-02-27', 7411, 59186, 4044, NULL, '1.0000', '1.3500', '1.3500', '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 (62115, '2022-02-27', 9424, 59187, 4044, NULL, '1.0000', '3.6300', '3.6300', '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 (62116, '2022-02-27', 7532, 59188, 4044, NULL, '2.0000', '20.6000', '20.6000', '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 (62117, '2022-02-27', 7641, 59189, 4044, NULL, '1.0000', '1.9000', '1.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 (62118, '2022-02-27', 8833, 59190, 4044, NULL, '1.0000', '4.2000', '4.2000', '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 (62119, '2022-02-27', 2442, 59191, 4044, 5312, '-4.0000', '4.8000', '4.8000', '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 (62120, '2022-02-27', 2442, 59191, 4044, NULL, '5.0000', '4.8000', '4.8000', '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 (62121, '2022-02-27', 8127, 59192, 4044, NULL, '1.0000', '24.5300', '24.5300', '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 (62122, '2022-02-27', 8318, 59193, 4044, NULL, '1.0000', '5.5000', '5.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 (62123, '2022-02-27', 7743, 59194, 4044, NULL, '1.0000', '1.3100', '1.3100', '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 (62124, '2022-02-27', 9012, 59195, 4044, NULL, '1.0000', '24.0000', '24.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 (62125, '2022-02-27', 7658, 59196, 4044, NULL, '1.0000', '2.0200', '2.0200', '2.8000', '2.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 (62126, '2022-02-27', 7729, 59197, 4044, NULL, '1.0000', '13.0000', '13.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 (62127, '2022-02-27', 1845, 59198, 4044, 6222, '-18.0000', '19.5000', '19.5000', '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 (62128, '2022-02-27', 1845, 59198, 4044, NULL, '19.0000', '19.5000', '19.5000', '26.5000', '26.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 (62129, '2022-02-27', 9399, 59199, 4044, NULL, '1.0000', '0.9800', '0.9800', '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 (62130, '2022-02-27', 9092, 59200, 4044, NULL, '2.0000', '5.2900', '5.2900', '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 (62131, '2022-02-27', 1577, 59201, 4044, 7596, '-8.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 (62132, '2022-02-27', 1577, 59201, 4044, NULL, '9.0000', '2.5000', '2.5000', '3.5000', '3.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 (62133, '2022-02-27', 1590, 59202, 4044, 22260, '2.0000', '1.7100', '1.7100', '3.0000', '3.0000', '15.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 (62134, '2022-02-27', 1647, 59203, 4044, 3218, '-9.0000', '4.7200', '4.7200', '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 (62135, '2022-02-27', 1647, 59203, 4044, NULL, '10.0000', '4.7200', '4.7200', '7.0000', '7.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 (62136, '2022-02-27', 8308, 59204, 4044, NULL, '1.0000', '2.0800', '2.0800', '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 (62137, '2022-02-27', 1602, 59205, 4045, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62138, '2022-02-27', 2604, 59206, 4045, 47138, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62139, '2022-02-27', 9580, 59207, 4045, 39225, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62140, '2022-02-27', 1935, 59208, 4046, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62141, '2022-02-27', 1804, 59209, 4046, 48590, '1.0000', '4.3180', '4.3180', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62142, '2022-02-27', 1868, 59210, 4046, 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 (62143, '2022-02-27', 7612, 59211, 4046, NULL, '1.0000', '1.7300', '1.7300', '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 (62144, '2022-02-27', 1666, 59212, 4046, 49363, '1.0000', '2.7286', '2.7286', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62145, '2022-02-27', 1871, 59213, 4046, 50241, '5.0000', '2.2081', '2.2081', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62146, '2022-02-27', 1871, 59213, 4046, NULL, '5.0000', '2.2081', '2.2081', '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 (62147, '2022-02-27', 8719, 59214, 4046, NULL, '1.0000', '21.7000', '21.7000', '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 (62148, '2022-02-27', 1446, 59215, 4046, 47088, '1.0000', '4.8156', '4.8156', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62149, '2022-02-27', 7586, 59216, 4046, NULL, '1.0000', '4.1700', '4.1700', '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 (62150, '2022-02-27', 1415, 59217, 4046, NULL, '2.0000', '14.5000', '14.5000', '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 (62151, '2022-02-27', 1306, 59218, 4046, 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 (62152, '2022-02-27', 1608, 59219, 4046, 50240, '1.0000', '3.8581', '3.8581', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62153, '2022-02-27', 2269, 59220, 4047, NULL, '1.0000', '5.8300', '5.8300', '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 (62154, '2022-02-27', 2277, 59221, 4047, NULL, '1.0000', '0.9399', '0.9399', '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 (62155, '2022-02-27', 1845, 59222, 4048, 6222, '-19.0000', '19.5000', '19.5000', '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 (62156, '2022-02-27', 1845, 59222, 4048, NULL, '20.0000', '19.5000', '19.5000', '26.5000', '26.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 (62157, '2022-02-27', 9337, 59223, 4048, 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 (62158, '2022-02-27', 2315, 59224, 4048, 2735, '-174.0000', '0.3300', '0.3300', '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 (62159, '2022-02-27', 2315, 59224, 4048, NULL, '176.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-176.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62160, '2022-02-27', 7514, 59225, 4048, NULL, '1.0000', '2.2500', '2.2500', '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 (62161, '2022-02-27', 9692, 59226, 4048, NULL, '3.0000', '10.4500', '10.4500', '7.0000', '7.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 (62162, '2022-02-27', 7518, 59227, 4048, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62163, '2022-02-27', 8758, 59228, 4048, NULL, '1.0000', '5.8000', '5.8000', '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 (62164, '2022-02-27', 1812, 59229, 4049, NULL, '1.0000', '7.9262', '7.9262', '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 (62165, '2022-02-28', 8079, 59230, 4050, NULL, '1.0000', '14.3600', '14.3600', '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 (62166, '2022-02-28', 9207, 59231, 4050, NULL, '3.0000', '4.6000', '4.6000', '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 (62167, '2022-02-28', 2289, 59232, 4050, 49873, '3.0000', '0.2222', '0.2222', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62168, '2022-02-28', 9735, 59233, 4050, 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 (62169, '2022-02-28', 9740, 59234, 4050, 50242, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62170, '2022-02-28', 7531, 59235, 4050, 39811, '1.0000', '2.7209', '2.7209', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62171, '2022-02-28', 1855, 59236, 4050, NULL, '1.0000', '1.5003', '1.5003', '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 (62172, '2022-02-28', 1307, 59237, 4050, NULL, '1.0000', '0.6103', '0.6103', '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 (62173, '2022-02-28', 9778, 59238, 4050, 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 (62174, '2022-02-28', 8984, 59239, 4050, NULL, '1.0000', '-100.8495', '-100.8495', '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 (62175, '2022-02-28', 7318, 59240, 4050, 48729, '1.0000', '10.5283', '10.5283', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62176, '2022-02-28', 9534, 59241, 4050, NULL, '1.0000', '19.8900', '19.8900', '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 (62177, '2022-02-28', 2066, 59242, 4050, NULL, '5.0000', '0.5100', '0.5100', '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 (62178, '2022-02-28', 9695, 59243, 4050, 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 (62179, '2022-02-28', 2283, 59244, 4050, 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 (62180, '2022-02-28', 1841, 59245, 4050, NULL, '4.0000', '0.2601', '0.2601', '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 (62181, '2022-02-28', 1840, 59246, 4050, NULL, '4.0000', '0.2400', '0.2400', '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 (62182, '2022-02-28', 2104, 59247, 4050, 22380, '4.0000', '0.2000', '0.2000', '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 (62183, '2022-02-28', 2315, 59248, 4050, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '141.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62184, '2022-02-28', 2167, 59249, 4050, NULL, '1.0000', '2.1310', '2.1310', '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 (62185, '2022-02-28', 1856, 59250, 4050, 50520, '1.0000', '5.5569', '5.5569', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62186, '2022-02-28', 1961, 59251, 4050, 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 (62187, '2022-02-28', 9806, 59252, 4050, 50121, '2.0000', '1.0800', '1.0800', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62188, '2022-02-28', 1855, 59253, 4050, NULL, '1.0000', '1.5003', '1.5003', '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 (62189, '2022-02-28', 2293, 59254, 4051, NULL, '2.0000', '-15.8931', '-15.8931', '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 (62190, '2022-02-28', 2169, 59255, 4051, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62191, '2022-02-28', 9683, 59256, 4051, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62192, '2022-02-28', 8740, 59257, 4051, NULL, '2.0000', '1.8343', '1.8343', '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 (62193, '2022-02-28', 8984, 59258, 4051, NULL, '1.0000', '-100.8495', '-100.8495', '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 (62194, '2022-02-28', 7411, 59259, 4051, NULL, '1.0000', '1.3013', '1.3013', '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 (62195, '2022-02-28', 7472, 59260, 4051, NULL, '1.0000', '4.2055', '4.2055', '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 (62196, '2022-02-28', 8740, 59261, 4051, NULL, '1.0000', '1.8343', '1.8343', '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 (62197, '2022-02-28', 1871, 59262, 4051, NULL, '20.0000', '2.2081', '2.2081', '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 (62198, '2022-02-28', 7411, 59263, 4051, NULL, '1.0000', '1.3013', '1.3013', '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 (62199, '2022-02-28', 1946, 59264, 4051, NULL, '1.0000', '1.5500', '1.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 (62200, '2022-02-28', 1873, 59265, 4051, NULL, '1.0000', '11.9500', '11.9500', '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 (62201, '2022-02-28', 2320, 59266, 4051, 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 (62202, '2022-02-28', 7609, 59267, 4051, NULL, '1.0000', '4.3300', '4.3300', '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 (62203, '2022-02-28', 2636, 59268, 4051, 34956, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62204, '2022-02-28', 7411, 59269, 4051, NULL, '1.0000', '1.3013', '1.3013', '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 (62205, '2022-02-28', 1812, 59270, 4051, NULL, '1.0000', '7.9262', '7.9262', '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 (62206, '2022-02-28', 7514, 59271, 4051, NULL, '1.0000', '2.2500', '2.2500', '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 (62207, '2022-02-28', 2169, 59272, 4051, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62208, '2022-02-28', 1528, 59273, 4051, 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 (62209, '2022-02-28', 9815, 59274, 4051, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '15.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62210, '2022-02-28', 7411, 59275, 4051, NULL, '3.0000', '1.3013', '1.3013', '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 (62211, '2022-02-28', 9715, 59276, 4051, 47053, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62212, '2022-02-28', 1876, 59277, 4051, 47058, '1.0000', '18.8100', '18.8100', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62213, '2022-02-28', 2108, 59278, 4051, NULL, '2.0000', '4.7500', '4.7500', '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 (62214, '2022-02-28', 8622, 59279, 4051, 43257, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62215, '2022-02-28', 7328, 59280, 4051, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (62216, '2022-02-28', 7628, 59281, 4052, NULL, '12.0000', '2.2900', '2.2900', '3.0000', '3.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 (62217, '2022-02-28', 8170, 59282, 4052, NULL, '1.0000', '5.9400', '5.9400', '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 (62218, '2022-02-28', 8288, 59283, 4052, NULL, '3.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (62219, '2022-02-28', 8927, 59284, 4052, NULL, '3.0000', '36.0000', '36.0000', '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 (62220, '2022-02-28', 2733, 59285, 4052, 14083, '-1.0000', '7.5000', '7.5000', '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 (62221, '2022-02-28', 2733, 59285, 4052, NULL, '2.0000', '7.5000', '7.5000', '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 (62222, '2022-02-28', 9421, 59286, 4052, 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 (62223, '2022-02-28', 8780, 59287, 4052, NULL, '1.0000', '46.0000', '46.0000', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62224, '2022-02-28', 7583, 59288, 4052, NULL, '1.0000', '4.0000', '4.0000', '0.9900', '0.9900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62225, '2022-02-28', 7385, 59289, 4052, NULL, '4.0000', '2.0000', '2.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 (62226, '2022-02-28', 7879, 59290, 4052, NULL, '5.0000', '1.9800', '1.9800', '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 (62227, '2022-02-28', 8006, 59291, 4052, 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 (62228, '2022-02-28', 1806, 59292, 4052, 18809, '2.0000', '28.1300', '28.1300', '40.0000', '40.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 (62229, '2022-02-28', 7514, 59293, 4052, NULL, '1.0000', '2.2500', '2.2500', '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 (62230, '2022-02-28', 1762, 59294, 4052, 3172, '-2.0000', '90.0000', '90.0000', '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 (62231, '2022-02-28', 1762, 59294, 4052, NULL, '3.0000', '90.0000', '90.0000', '13.5000', '13.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 (62232, '2022-02-28', 9143, 59295, 4052, NULL, '1.0000', '10.8000', '10.8000', '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 (62233, '2022-02-28', 7954, 59296, 4052, 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 (62234, '2022-02-28', 9401, 59297, 4052, NULL, '1.0000', '4.8500', '4.8500', '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 (62235, '2022-02-28', 7411, 59298, 4052, NULL, '1.0000', '1.3500', '1.3500', '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 (62236, '2022-02-28', 7428, 59299, 4052, NULL, '2.0000', '2.6100', '2.6100', '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 (62237, '2022-02-28', 8184, 59300, 4052, NULL, '20.0000', '2.4000', '2.4000', '3.5000', '3.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 (62238, '2022-02-28', 7408, 59301, 4052, NULL, '1.0000', '5.2800', '5.2800', '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 (62239, '2022-02-28', 7612, 59302, 4052, NULL, '2.0000', '1.7300', '1.7300', '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 (62240, '2022-02-28', 8745, 59303, 4052, 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 (62241, '2022-02-28', 9752, 59304, 4052, 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 (62242, '2022-02-28', 9751, 59305, 4052, 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 (62243, '2022-02-28', 7339, 59306, 4052, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (62244, '2022-02-28', 8740, 59307, 4052, NULL, '1.0000', '2.0000', '2.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 (62245, '2022-02-28', 7750, 59308, 4052, NULL, '1.0000', '33.9800', '33.9800', '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 (62246, '2022-02-28', 7491, 59309, 4052, NULL, '1.0000', '5.6000', '5.6000', '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 (62247, '2022-02-28', 7989, 59310, 4052, NULL, '1.0000', '37.8200', '37.8200', '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 (62248, '2022-02-28', 7952, 59311, 4052, 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 (62249, '2022-02-28', 7518, 59312, 4052, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62250, '2022-02-28', 8769, 59313, 4052, NULL, '1.0000', '6.6000', '6.6000', '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 (62251, '2022-02-28', 7514, 59314, 4052, NULL, '1.0000', '2.2500', '2.2500', '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 (62252, '2022-02-28', 1620, 59315, 4052, 481, '1.0000', '408.8259', '408.8259', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62253, '2022-02-28', 1620, 59315, 4052, NULL, '3.0000', '408.8259', '408.8259', '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 (62254, '2022-02-28', 7514, 59316, 4052, NULL, '2.0000', '2.2500', '2.2500', '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 (62255, '2022-02-28', 8079, 59317, 4052, NULL, '1.0000', '14.3600', '14.3600', '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 (62256, '2022-02-28', 7342, 59318, 4052, NULL, '1.0000', '15.6000', '15.6000', '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 (62257, '2022-02-28', 9731, 59319, 4052, 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 (62258, '2022-02-28', 7852, 59320, 4052, NULL, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62259, '2022-02-28', 2332, 59321, 4052, 3835, '-3.0000', '5.8900', '5.8900', '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 (62260, '2022-02-28', 2332, 59321, 4052, NULL, '4.0000', '5.8900', '5.8900', '9.0000', '9.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 (62261, '2022-02-28', 7491, 59322, 4052, NULL, '1.0000', '5.6000', '5.6000', '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 (62262, '2022-02-28', 1804, 59323, 4052, 4916, '-3.0000', '4.2500', '4.2500', '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 (62263, '2022-02-28', 1804, 59323, 4052, NULL, '4.0000', '4.2500', '4.2500', '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 (62264, '2022-02-28', 7708, 59324, 4052, NULL, '1.0000', '7.8000', '7.8000', '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 (62265, '2022-02-28', 9092, 59325, 4052, NULL, '2.0000', '5.2900', '5.2900', '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 (62266, '2022-02-28', 2251, 59326, 4052, 2788, '-7.0000', '10.9700', '10.9700', '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 (62267, '2022-02-28', 2251, 59326, 4052, NULL, '8.0000', '10.9700', '10.9700', '16.0000', '16.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 (62268, '2022-02-28', 7707, 59327, 4052, NULL, '1.0000', '7.0000', '7.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 (62269, '2022-02-28', 2061, 59328, 4052, NULL, '2.0000', '10.9800', '10.9800', '14.5000', '14.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 (62270, '2022-02-28', 7657, 59329, 4052, NULL, '1.0000', '11.3200', '11.3200', '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 (62271, '2022-02-28', 7514, 59330, 4052, NULL, '2.0000', '2.2500', '2.2500', '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 (62272, '2022-02-28', 7514, 59331, 4052, NULL, '2.0000', '2.2500', '2.2500', '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 (62273, '2022-02-28', 7692, 59332, 4052, NULL, '1.0000', '2.7000', '2.7000', '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 (62274, '2022-02-28', 7518, 59333, 4052, 33787, '1.0000', '7.8200', '7.8200', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62275, '2022-02-28', 7411, 59334, 4052, NULL, '2.0000', '1.3500', '1.3500', '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 (62276, '2022-02-28', 7748, 59335, 4052, NULL, '1.0000', '7.3000', '7.3000', '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 (62277, '2022-02-28', 7506, 59336, 4052, NULL, '1.0000', '15.0000', '15.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 (62278, '2022-02-28', 8404, 59337, 4052, NULL, '1.0000', '36.1200', '36.1200', '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 (62279, '2022-02-28', 7714, 59338, 4052, NULL, '2.0000', '0.4200', '0.4200', '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 (62280, '2022-02-28', 7857, 59339, 4052, NULL, '1.0000', '15.1300', '15.1300', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62281, '2022-02-28', 2699, 59340, 4052, 12529, '-29.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 (62282, '2022-02-28', 2699, 59340, 4052, NULL, '31.0000', '3.0000', '3.0000', '4.5000', '4.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 (62283, '2022-02-28', 8061, 59341, 4052, 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 (62284, '2022-02-28', 9281, 59342, 4052, NULL, '3.0000', '8.5000', '8.5000', '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 (62285, '2022-02-28', 8649, 59343, 4052, NULL, '1.0000', '20.9000', '20.9000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62286, '2022-02-28', 8427, 59344, 4052, NULL, '1.0000', '6.5300', '6.5300', '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 (62287, '2022-02-28', 2284, 59345, 4052, 22249, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.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 (62288, '2022-02-28', 7709, 59346, 4052, NULL, '2.0000', '3.5000', '3.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 (62289, '2022-02-28', 7675, 59347, 4052, NULL, '1.0000', '11.4300', '11.4300', '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 (62290, '2022-02-28', 8978, 59348, 4052, NULL, '1.0000', '0.6900', '0.6900', '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 (62291, '2022-02-28', 7674, 59349, 4052, 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 (62292, '2022-02-28', 8172, 59350, 4052, NULL, '4.0000', '40.7000', '40.7000', '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 (62293, '2022-02-28', 9198, 59351, 4052, NULL, '3.0000', '5.7000', '5.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 (62294, '2022-02-28', 2607, 59352, 4052, 18805, '5.0000', '1.4000', '1.4000', '1.7000', '1.7000', '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 (62295, '2022-02-28', 7753, 59353, 4052, NULL, '1.0000', '3.4000', '3.4000', '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 (62296, '2022-02-28', 2227, 59354, 4052, 1702, '-4.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 (62297, '2022-02-28', 2227, 59354, 4052, NULL, '5.0000', '14.0000', '14.0000', '19.0000', '19.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 (62298, '2022-02-28', 7524, 59355, 4052, NULL, '1.0000', '11.9500', '11.9500', '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 (62299, '2022-02-28', 7703, 59356, 4052, NULL, '1.0000', '22.9900', '22.9900', '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 (62300, '2022-02-28', 7892, 59357, 4052, NULL, '1.0000', '4.2000', '4.2000', '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 (62301, '2022-02-28', 7672, 59358, 4052, NULL, '2.0000', '1.0200', '1.0200', '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 (62302, '2022-02-28', 7674, 59359, 4052, 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 (62303, '2022-02-28', 7715, 59360, 4052, NULL, '1.0000', '1.8900', '1.8900', '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 (62304, '2022-02-28', 8920, 59361, 4052, 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 (62305, '2022-02-28', 9786, 59362, 4052, NULL, '1.0000', '8.5000', '8.5000', '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 (62306, '2022-02-28', 9098, 59363, 4052, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62307, '2022-02-28', 7805, 59364, 4052, NULL, '2.0000', '2.1800', '2.1800', '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 (62308, '2022-02-28', 8596, 59365, 4052, 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 (62309, '2022-02-28', 7832, 59366, 4053, NULL, '1.0000', '10.0000', '10.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 (62310, '2022-02-28', 2169, 59367, 4054, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62311, '2022-02-28', 9794, 59368, 4054, NULL, '1.0000', '1.0800', '1.0800', '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 (62312, '2022-02-28', 9763, 59369, 4054, 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 (62313, '2022-02-28', 7564, 59370, 4054, 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 (62314, '2022-02-28', 2315, 59371, 4054, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '140.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62315, '2022-02-28', 1855, 59372, 4054, NULL, '1.0000', '1.5003', '1.5003', '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 (62316, '2022-02-28', 9482, 59373, 4054, 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 (62317, '2022-02-28', 7514, 59374, 4054, NULL, '1.0000', '2.2500', '2.2500', '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 (62318, '2022-02-28', 1695, 59375, 4054, NULL, '1.0000', '22.6608', '22.6608', '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 (62319, '2022-02-28', 1307, 59376, 4054, NULL, '1.0000', '0.6103', '0.6103', '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 (62320, '2022-02-28', 9598, 59377, 4054, 48730, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62321, '2022-02-28', 7743, 59378, 4054, NULL, '1.0000', '7.3900', '7.3900', '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 (62322, '2022-02-28', 9758, 59379, 4054, NULL, '1.0000', '3.1400', '3.1400', '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 (62323, '2022-02-28', 9274, 59380, 4054, NULL, '1.0000', '0.2500', '0.2500', '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 (62324, '2022-02-28', 2167, 59381, 4054, NULL, '1.0000', '2.1310', '2.1310', '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 (62325, '2022-02-28', 9634, 59382, 4054, NULL, '3.0000', '4.8000', '4.8000', '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 (62326, '2022-02-28', 1839, 59383, 4054, NULL, '1.0000', '-9.7683', '-9.7683', '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 (62327, '2022-02-28', 2451, 59384, 4054, NULL, '1.0000', '8.8000', '8.8000', '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 (62328, '2022-02-28', 1667, 59385, 4054, 49364, '1.0000', '13.0832', '13.0832', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62329, '2022-02-28', 2228, 59386, 4054, NULL, '1.0000', '27.0000', '27.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 (62330, '2022-02-28', 8205, 59387, 4054, NULL, '1.0000', '2.9500', '2.9500', '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 (62331, '2022-02-28', 7641, 59388, 4054, NULL, '1.0000', '1.9000', '1.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 (62332, '2022-02-28', 1686, 59389, 4054, 48135, '1.0000', '27.0000', '27.0000', '42.0000', '42.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62333, '2022-02-28', 7384, 59390, 4054, NULL, '1.0000', '8.2000', '8.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 (62334, '2022-02-28', 1670, 59391, 4054, NULL, '1.0000', '19.0833', '19.0833', '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 (62335, '2022-02-28', 1935, 59392, 4054, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62336, '2022-02-28', 2315, 59393, 4054, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '140.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62337, '2022-02-28', 7674, 59394, 4054, 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 (62338, '2022-02-28', 1382, 59395, 4054, 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 (62339, '2022-02-28', 9758, 59396, 4054, NULL, '1.0000', '3.1400', '3.1400', '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 (62340, '2022-02-28', 1912, 59397, 4054, 49717, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62341, '2022-02-28', 1762, 59398, 4054, 50082, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62342, '2022-02-28', 2353, 59399, 4054, NULL, '1.0000', '3.9633', '3.9633', '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 (62343, '2022-02-28', 1387, 59400, 4054, 49513, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62344, '2022-02-28', 7881, 59401, 4054, NULL, '1.0000', '32.7700', '32.7700', '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 (62345, '2022-02-28', 1855, 59402, 4054, NULL, '1.0000', '1.5003', '1.5003', '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 (62346, '2022-02-28', 1590, 59403, 4054, 50530, '1.0000', '1.7600', '1.7600', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62347, '2022-02-28', 2284, 59404, 4054, 48889, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62348, '2022-02-28', 9747, 59405, 4054, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62349, '2022-02-28', 1314, 59406, 4054, 48145, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62350, '2022-02-28', 2379, 59407, 4054, NULL, '1.0000', '1.0877', '1.0877', '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 (62351, '2022-02-28', 2366, 59408, 4054, NULL, '1.0000', '-17.8500', '-17.8500', '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 (62352, '2022-02-28', 7411, 59409, 4054, NULL, '1.0000', '1.3013', '1.3013', '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 (62353, '2022-02-28', 2467, 59410, 4054, NULL, '1.0000', '19.8000', '19.8000', '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 (62354, '2022-02-28', 7411, 59411, 4054, NULL, '1.0000', '1.3013', '1.3013', '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 (62355, '2022-02-28', 1608, 59412, 4054, 50240, '1.0000', '3.8581', '3.8581', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62356, '2022-02-28', 3017, 59413, 4054, 38532, '1.0000', '3.9000', '3.9000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62357, '2022-02-28', 2982, 59414, 4054, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '12.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 (62358, '2022-02-28', 9758, 59415, 4054, NULL, '1.0000', '3.1400', '3.1400', '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 (62359, '2022-02-28', 2070, 59416, 4054, 49718, '1.0000', '2.2143', '2.2143', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62360, '2022-02-28', 1812, 59417, 4054, NULL, '1.0000', '7.9262', '7.9262', '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 (62361, '2022-02-28', 1863, 59418, 4054, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62362, '2022-02-28', 1564, 59419, 4054, 50077, '1.0000', '3.4988', '3.4988', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62363, '2022-02-28', 9609, 59420, 4054, NULL, '1.0000', '6.4000', '6.4000', '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 (62364, '2022-02-28', 7911, 59421, 4054, NULL, '1.0000', '4.3700', '4.3700', '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 (62365, '2022-02-28', 2366, 59422, 4054, NULL, '1.0000', '-17.8500', '-17.8500', '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 (62366, '2022-02-28', 7579, 59423, 4054, NULL, '1.0000', '15.0000', '15.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 (62367, '2022-02-28', 8359, 59424, 4055, 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 (62368, '2022-02-28', 7453, 59425, 4055, NULL, '1.0000', '28.5000', '28.5000', '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 (62369, '2022-02-28', 8094, 59426, 4055, NULL, '5.0000', '47.0000', '47.0000', '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 (62370, '2022-02-28', 7804, 59427, 4055, NULL, '3.0000', '1.0200', '1.0200', '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 (62371, '2022-02-28', 8539, 59428, 4055, NULL, '2.0000', '31.8000', '31.8000', '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 (62372, '2022-02-28', 7415, 59429, 4055, 33809, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62373, '2022-02-28', 2315, 59430, 4055, 2735, '-176.0000', '0.3300', '0.3300', '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 (62374, '2022-02-28', 2315, 59430, 4055, NULL, '177.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-177.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62375, '2022-02-28', 8638, 59431, 4055, NULL, '1.0000', '0.5100', '0.5100', '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 (62376, '2022-02-28', 9821, 59432, 4055, NULL, '1.0000', '1.4500', '1.4500', '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 (62377, '2022-02-28', 7324, 59433, 4055, 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 (62378, '2022-02-28', 2287, 59434, 4055, 2947, '-9.0000', '1.8000', '1.8000', '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 (62379, '2022-02-28', 2287, 59434, 4055, NULL, '13.0000', '1.8000', '1.8000', '3.0000', '3.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 (62380, '2022-02-28', 1804, 59435, 4056, 4916, '-4.0000', '4.2500', '4.2500', '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 (62381, '2022-02-28', 1804, 59435, 4056, NULL, '5.0000', '4.2500', '4.2500', '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 (62382, '2022-02-28', 3044, 59436, 4057, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '30.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 (62383, '2022-02-28', 2237, 59437, 4057, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62384, '2022-02-28', 7411, 59438, 4057, NULL, '1.0000', '1.3013', '1.3013', '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 (62385, '2022-02-28', 1925, 59439, 4057, 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 (62386, '2022-02-28', 9482, 59440, 4057, NULL, '2.0000', '0.5000', '0.5000', '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 (62387, '2022-02-28', 1665, 59441, 4057, 48596, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62388, '2022-03-01', 1525, 59442, 4058, NULL, '3.0000', '4.9100', '4.9100', '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 (62389, '2022-03-01', 1947, 59443, 4058, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '50.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 (62390, '2022-03-01', 2858, 59444, 4058, 17772, '-46.0000', '1.0000', '1.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 (62391, '2022-03-01', 2858, 59444, 4058, NULL, '47.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (62392, '2022-03-01', 3004, 59445, 4058, 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 (62393, '2022-03-01', 1824, 59446, 4058, NULL, '1.0000', '5.2000', '5.2000', '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 (62394, '2022-03-01', 8102, 59447, 4058, 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 (62395, '2022-03-01', 2669, 59448, 4058, 11757, '-7.0000', '24.5336', '24.5336', '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 (62396, '2022-03-01', 2669, 59448, 4058, NULL, '8.0000', '24.5336', '24.5336', '32.0000', '32.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 (62397, '2022-03-01', 1866, 59449, 4058, 16246, '-3.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 (62398, '2022-03-01', 1866, 59449, 4058, 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 (62399, '2022-03-01', 8876, 59450, 4058, NULL, '1.0000', '0.9900', '0.9900', '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 (62400, '2022-03-01', 2259, 59451, 4058, 2795, '-3.0000', '19.9405', '19.9405', '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 (62401, '2022-03-01', 2259, 59451, 4058, NULL, '4.0000', '19.9405', '19.9405', '30.0000', '30.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 (62402, '2022-03-01', 1890, 59452, 4058, 5430, '-12.0000', '90.0000', '90.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 (62403, '2022-03-01', 1890, 59452, 4058, NULL, '13.0000', '90.0000', '90.0000', '4.5000', '4.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 (62404, '2022-03-01', 1935, 59453, 4058, 5586, '-56.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 (62405, '2022-03-01', 1935, 59453, 4058, NULL, '57.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62406, '2022-03-01', 8763, 59454, 4058, NULL, '1.0000', '5.4000', '5.4000', '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 (62407, '2022-03-01', 2299, 59455, 4058, 22479, '-2.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 (62408, '2022-03-01', 2299, 59455, 4058, NULL, '3.0000', '6.0000', '6.0000', '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 (62409, '2022-03-01', 2761, 59456, 4058, 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 (62410, '2022-03-01', 1602, 59457, 4058, 5897, '-110.0000', '6.7859', '6.7859', '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 (62411, '2022-03-01', 1602, 59457, 4058, NULL, '111.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-111.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62412, '2022-03-01', 2408, 59458, 4058, 4497, '-4.0000', '9.3500', '9.3500', '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 (62413, '2022-03-01', 2408, 59458, 4058, NULL, '5.0000', '9.3500', '9.3500', '12.5000', '12.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 (62414, '2022-03-01', 1973, 59459, 4058, 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 (62415, '2022-03-01', 9634, 59460, 4058, 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 (62416, '2022-03-01', 9399, 59461, 4058, NULL, '1.0000', '0.9800', '0.9800', '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 (62417, '2022-03-01', 1812, 59462, 4058, 8224, '-64.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 (62418, '2022-03-01', 1812, 59462, 4058, NULL, '65.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62419, '2022-03-01', 2237, 59463, 4058, 2781, '-44.0000', '1.0600', '1.0600', '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 (62420, '2022-03-01', 2237, 59463, 4058, NULL, '45.0000', '1.0600', '1.0600', '2.5000', '2.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 (62421, '2022-03-01', 2315, 59464, 4058, 2735, '-177.0000', '0.3300', '0.3300', '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 (62422, '2022-03-01', 2315, 59464, 4058, NULL, '178.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-178.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62423, '2022-03-01', 1892, 59465, 4058, 5431, '-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 (62424, '2022-03-01', 1892, 59465, 4058, 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 (62425, '2022-03-01', 7411, 59466, 4058, NULL, '1.0000', '1.3500', '1.3500', '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 (62426, '2022-03-01', 2660, 59467, 4058, 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 (62427, '2022-03-01', 7532, 59468, 4059, NULL, '1.0000', '20.6000', '20.6000', '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 (62428, '2022-03-01', 1316, 59469, 4059, 11758, '-2.0000', '6.3000', '6.3000', '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 (62429, '2022-03-01', 1316, 59469, 4059, NULL, '3.0000', '6.3000', '6.3000', '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 (62430, '2022-03-01', 1755, 59470, 4059, 3165, '-3.0000', '5.5900', '5.5900', '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 (62431, '2022-03-01', 1755, 59470, 4059, NULL, '4.0000', '5.5900', '5.5900', '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 (62432, '2022-03-01', 9732, 59471, 4059, 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 (62433, '2022-03-01', 1528, 59472, 4059, NULL, '1.0000', '38.6400', '38.6400', '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 (62434, '2022-03-01', 1572, 59473, 4059, 20586, '1.0000', '138.3520', '138.3520', '3.0000', '3.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 (62435, '2022-03-01', 1572, 59473, 4059, 435, '1.0000', '138.3520', '138.3520', '3.0000', '3.0000', '7.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 (62436, '2022-03-01', 7411, 59474, 4059, NULL, '2.0000', '1.3500', '1.3500', '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 (62437, '2022-03-01', 1533, 59475, 4059, 10381, '-4.0000', '2.5917', '2.5917', '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 (62438, '2022-03-01', 1533, 59475, 4059, NULL, '5.0000', '2.5917', '2.5917', '5.5000', '5.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 (62439, '2022-03-01', 2059, 59476, 4059, 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 (62440, '2022-03-01', 2660, 59477, 4059, 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 (62441, '2022-03-01', 1388, 59478, 4059, 22361, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (62442, '2022-03-01', 2373, 59479, 4059, NULL, '1.0000', '11.5000', '11.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 (62443, '2022-03-01', 8543, 59480, 4059, 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 (62444, '2022-03-01', 2858, 59481, 4059, 17772, '-47.0000', '1.0000', '1.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 (62445, '2022-03-01', 2858, 59481, 4059, NULL, '48.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62446, '2022-03-01', 2169, 59482, 4059, 10737, '-47.0000', '3.8397', '3.8397', '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 (62447, '2022-03-01', 2169, 59482, 4059, NULL, '48.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62448, '2022-03-01', 2136, 59483, 4059, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '72.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 (62449, '2022-03-01', 2825, 59484, 4059, NULL, '1.0000', '12.0000', '12.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 (62450, '2022-03-01', 7741, 59485, 4059, NULL, '1.0000', '1.2000', '1.2000', '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 (62451, '2022-03-01', 8208, 59486, 4059, NULL, '2.0000', '33.0000', '33.0000', '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 (62452, '2022-03-01', 1612, 59487, 4059, 8732, '-5.0000', '1.6000', '1.6000', '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 (62453, '2022-03-01', 1612, 59487, 4059, NULL, '6.0000', '1.6000', '1.6000', '3.0000', '3.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 (62454, '2022-03-01', 2758, 59488, 4059, NULL, '1.0000', '-20.1917', '-20.1917', '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 (62455, '2022-03-01', 1751, 59489, 4059, 6681, '1.0000', '3.6900', '3.6900', '5.0000', '5.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 (62456, '2022-03-01', 2136, 59490, 4059, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '72.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 (62457, '2022-03-01', 2519, 59491, 4059, NULL, '1.0000', '11.0000', '11.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 (62458, '2022-03-01', 1857, 59492, 4059, 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 (62459, '2022-03-01', 2068, 59493, 4059, 5568, '-19.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 (62460, '2022-03-01', 2068, 59493, 4059, NULL, '20.0000', '13.1000', '13.1000', '17.0000', '17.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 (62461, '2022-03-01', 2990, 59494, 4059, NULL, '1.0000', '1.1200', '1.1200', '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 (62462, '2022-03-01', 2315, 59495, 4059, 2735, '-178.0000', '0.3300', '0.3300', '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 (62463, '2022-03-01', 2315, 59495, 4059, NULL, '179.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-179.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62464, '2022-03-01', 1935, 59496, 4059, 5586, '-57.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 (62465, '2022-03-01', 1935, 59496, 4059, NULL, '58.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62466, '2022-03-01', 2169, 59497, 4059, 10737, '-47.0000', '3.8397', '3.8397', '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 (62467, '2022-03-01', 2169, 59497, 4059, NULL, '48.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62468, '2022-03-01', 7963, 59498, 4059, 33811, '1.0000', '14.7000', '14.7000', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62469, '2022-03-01', 1863, 59499, 4059, 10808, '-112.0000', '0.4136', '0.4136', '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 (62470, '2022-03-01', 1863, 59499, 4059, NULL, '113.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62471, '2022-03-01', 1425, 59500, 4060, NULL, '1.0000', '6.4405', '6.4405', '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 (62472, '2022-03-01', 1666, 59501, 4060, 3236, '-19.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 (62473, '2022-03-01', 1666, 59501, 4060, NULL, '20.0000', '2.7100', '2.7100', '3.5000', '3.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 (62474, '2022-03-01', 2262, 59502, 4060, 2798, '-6.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 (62475, '2022-03-01', 2262, 59502, 4060, NULL, '7.0000', '4.5000', '4.5000', '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 (62476, '2022-03-01', 9734, 59503, 4060, NULL, '1.0000', '0.3200', '0.3200', '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 (62477, '2022-03-01', 1528, 59504, 4060, NULL, '3.0000', '38.6400', '38.6400', '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 (62478, '2022-03-01', 2169, 59505, 4060, 10737, '-49.0000', '3.8397', '3.8397', '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 (62479, '2022-03-01', 2169, 59505, 4060, NULL, '50.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62480, '2022-03-01', 2643, 59506, 4060, NULL, '1.0000', '0.8700', '0.8700', '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 (62481, '2022-03-01', 1425, 59507, 4061, NULL, '1.0000', '6.4405', '6.4405', '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 (62482, '2022-03-01', 1666, 59508, 4061, 3236, '-20.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 (62483, '2022-03-01', 1666, 59508, 4061, NULL, '21.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62484, '2022-03-01', 2262, 59509, 4061, 2798, '-7.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 (62485, '2022-03-01', 2262, 59509, 4061, NULL, '8.0000', '4.5000', '4.5000', '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 (62486, '2022-03-01', 9734, 59510, 4061, NULL, '1.0000', '0.3200', '0.3200', '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 (62487, '2022-03-01', 1528, 59511, 4061, NULL, '3.0000', '38.6400', '38.6400', '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 (62488, '2022-03-01', 2169, 59512, 4061, 10737, '-50.0000', '3.8397', '3.8397', '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 (62489, '2022-03-01', 2169, 59512, 4061, NULL, '51.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (62490, '2022-03-01', 2643, 59513, 4061, NULL, '1.0000', '0.8700', '0.8700', '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 (62491, '2022-03-01', 7684, 59514, 4062, NULL, '1.0000', '9.0000', '9.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 (62492, '2022-03-01', 2635, 59515, 4062, 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 (62493, '2022-03-01', 1482, 59516, 4062, 47066, '1.0000', '-29.7540', '-29.7540', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62494, '2022-03-01', 1494, 59517, 4062, 19337, '1.0000', '4.3900', '4.3900', '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 (62495, '2022-03-01', 1493, 59518, 4062, 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 (62496, '2022-03-01', 1340, 59519, 4062, NULL, '1.0000', '2.5000', '2.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 (62497, '2022-03-01', 2405, 59520, 4062, 37770, '6.0000', '1.2000', '1.2000', '1.8000', '1.8000', '22.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62498, '2022-03-01', 1839, 59521, 4063, NULL, '1.0000', '-9.7683', '-9.7683', '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 (62499, '2022-03-01', 2444, 59522, 4063, 42645, '1.0000', '6.7956', '6.7956', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62500, '2022-03-01', 1944, 59523, 4063, 48960, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62501, '2022-03-01', 2167, 59524, 4063, NULL, '2.0000', '2.1310', '2.1310', '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 (62502, '2022-03-01', 9740, 59525, 4063, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62503, '2022-03-01', 9775, 59526, 4063, NULL, '1.0000', '7.9000', '7.9000', '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 (62504, '2022-03-01', 1541, 59527, 4063, 48705, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62505, '2022-03-01', 1704, 59528, 4063, NULL, '1.0000', '27.2300', '27.2300', '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 (62506, '2022-03-01', 1863, 59529, 4063, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62507, '2022-03-01', 2948, 59530, 4063, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62508, '2022-03-01', 1313, 59531, 4063, 39906, '2.0000', '1.1388', '1.1388', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62509, '2022-03-01', 2758, 59532, 4063, 22379, '1.0000', '5.4000', '5.4000', '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 (62510, '2022-03-01', 1577, 59533, 4063, NULL, '1.0000', '2.3271', '2.3271', '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 (62511, '2022-03-01', 2242, 59534, 4063, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62512, '2022-03-01', 1855, 59535, 4063, NULL, '1.0000', '1.5003', '1.5003', '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 (62513, '2022-03-01', 2384, 59536, 4063, NULL, '3.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (62514, '2022-03-01', 2315, 59537, 4063, 49255, '5.0000', '0.4851', '0.4851', '0.8000', '0.8000', '134.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62515, '2022-03-01', 2821, 59538, 4063, NULL, '1.0000', '3.4701', '3.4701', '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 (62516, '2022-03-01', 2169, 59539, 4063, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62517, '2022-03-01', 8033, 59540, 4063, 49366, '1.0000', '18.1074', '18.1074', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62518, '2022-03-01', 1837, 59541, 4063, NULL, '1.0000', '1.5967', '1.5967', '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 (62519, '2022-03-01', 2379, 59542, 4063, NULL, '1.0000', '1.0877', '1.0877', '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 (62520, '2022-03-01', 1412, 59543, 4064, 22354, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '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 (62521, '2022-03-01', 1690, 59544, 4064, 33808, '2.0000', '7.1466', '7.1466', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62522, '2022-03-01', 1425, 59545, 4064, NULL, '1.0000', '6.4405', '6.4405', '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 (62523, '2022-03-01', 1812, 59546, 4064, 8224, '-65.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 (62524, '2022-03-01', 1812, 59546, 4064, NULL, '66.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62525, '2022-03-01', 2109, 59547, 4064, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '76.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 (62526, '2022-03-01', 1667, 59548, 4064, 9745, '-39.0000', '5.9400', '5.9400', '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 (62527, '2022-03-01', 1667, 59548, 4064, NULL, '40.0000', '5.9400', '5.9400', '8.5000', '8.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 (62528, '2022-03-01', 2643, 59549, 4064, NULL, '1.0000', '0.8700', '0.8700', '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 (62529, '2022-03-01', 9084, 59550, 4064, NULL, '1.0000', '9.1000', '9.1000', '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 (62530, '2022-03-01', 2906, 59551, 4064, 18651, '-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 (62531, '2022-03-01', 2906, 59551, 4064, NULL, '2.0000', '2.6000', '2.6000', '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 (62532, '2022-03-01', 1602, 59552, 4064, 5897, '-111.0000', '6.7859', '6.7859', '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 (62533, '2022-03-01', 1602, 59552, 4064, NULL, '112.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62534, '2022-03-01', 1528, 59553, 4064, NULL, '1.0000', '38.6400', '38.6400', '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 (62535, '2022-03-01', 2169, 59554, 4064, 10737, '-51.0000', '3.8397', '3.8397', '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 (62536, '2022-03-01', 2169, 59554, 4064, NULL, '52.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62537, '2022-03-01', 1863, 59555, 4064, 10808, '-113.0000', '0.4136', '0.4136', '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 (62538, '2022-03-01', 1863, 59555, 4064, NULL, '114.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62539, '2022-03-01', 2167, 59556, 4064, 17165, '-37.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 (62540, '2022-03-01', 2167, 59556, 4064, NULL, '38.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62541, '2022-03-01', 9715, 59557, 4064, NULL, '1.0000', '9.4000', '9.4000', '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 (62542, '2022-03-01', 1863, 59558, 4064, 10808, '-113.0000', '0.4136', '0.4136', '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 (62543, '2022-03-01', 1863, 59558, 4064, NULL, '114.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62544, '2022-03-01', 1523, 59559, 4064, NULL, '1.0000', '213.0405', '213.0405', '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 (62545, '2022-03-01', 2643, 59560, 4064, NULL, '1.0000', '0.8700', '0.8700', '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 (62546, '2022-03-01', 1812, 59561, 4064, 8224, '-65.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 (62547, '2022-03-01', 1812, 59561, 4064, NULL, '67.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62548, '2022-03-01', 2366, 59562, 4064, 3833, '-38.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 (62549, '2022-03-01', 2366, 59562, 4064, NULL, '40.0000', '3.7500', '3.7500', '6.0000', '6.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 (62550, '2022-03-01', 2633, 59563, 4064, 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 (62551, '2022-03-01', 2643, 59564, 4064, NULL, '1.0000', '0.8700', '0.8700', '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 (62552, '2022-03-01', 1804, 59565, 4064, 4916, '-5.0000', '4.2500', '4.2500', '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 (62553, '2022-03-01', 1804, 59565, 4064, NULL, '6.0000', '4.2500', '4.2500', '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 (62554, '2022-03-01', 1839, 59566, 4064, 8734, '-20.0000', '6.1500', '6.1500', '9.5000', '9.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 (62555, '2022-03-01', 1839, 59566, 4064, NULL, '21.0000', '6.1500', '6.1500', '9.5000', '9.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62556, '2022-03-01', 7609, 59567, 4064, NULL, '1.0000', '4.3300', '4.3300', '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 (62557, '2022-03-01', 1665, 59568, 4064, 3235, '-78.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 (62558, '2022-03-01', 1665, 59568, 4064, NULL, '79.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62559, '2022-03-01', 1533, 59569, 4064, 10381, '-5.0000', '2.5917', '2.5917', '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 (62560, '2022-03-01', 1533, 59569, 4064, NULL, '6.0000', '2.5917', '2.5917', '5.5000', '5.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 (62561, '2022-03-01', 2633, 59570, 4064, 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 (62562, '2022-03-01', 2302, 59571, 4064, 2963, '-33.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 (62563, '2022-03-01', 2302, 59571, 4064, NULL, '34.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (62564, '2022-03-01', 9732, 59572, 4064, 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 (62565, '2022-03-01', 8013, 59573, 4064, NULL, '1.0000', '3.6500', '3.6500', '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 (62566, '2022-03-01', 9732, 59574, 4064, NULL, '10.0000', '0.7000', '0.7000', '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 (62567, '2022-03-01', 9742, 59575, 4064, 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 (62568, '2022-03-01', 2136, 59576, 4064, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '70.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 (62569, '2022-03-01', 1602, 59577, 4064, 5897, '-111.0000', '6.7859', '6.7859', '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 (62570, '2022-03-01', 1602, 59577, 4064, NULL, '112.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62571, '2022-03-01', 9461, 59578, 4064, NULL, '1.0000', '1.6000', '1.6000', '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 (62572, '2022-03-01', 1412, 59579, 4065, 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 (62573, '2022-03-01', 1690, 59580, 4065, 18873, '2.0000', '7.1466', '7.1466', '9.0000', '9.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 (62574, '2022-03-01', 1425, 59581, 4065, NULL, '1.0000', '6.4405', '6.4405', '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 (62575, '2022-03-01', 1812, 59582, 4065, 8224, '-68.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 (62576, '2022-03-01', 1812, 59582, 4065, NULL, '69.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62577, '2022-03-01', 2109, 59583, 4065, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '75.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 (62578, '2022-03-01', 1667, 59584, 4065, 9745, '-40.0000', '5.9400', '5.9400', '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 (62579, '2022-03-01', 1667, 59584, 4065, NULL, '41.0000', '5.9400', '5.9400', '8.5000', '8.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 (62580, '2022-03-01', 2643, 59585, 4065, NULL, '1.0000', '0.8700', '0.8700', '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 (62581, '2022-03-01', 9084, 59586, 4065, NULL, '1.0000', '9.1000', '9.1000', '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 (62582, '2022-03-01', 2906, 59587, 4065, 18651, '-2.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 (62583, '2022-03-01', 2906, 59587, 4065, NULL, '3.0000', '2.6000', '2.6000', '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 (62584, '2022-03-01', 1602, 59588, 4065, 5897, '-113.0000', '6.7859', '6.7859', '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 (62585, '2022-03-01', 1602, 59588, 4065, NULL, '114.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62586, '2022-03-01', 1528, 59589, 4065, NULL, '1.0000', '38.6400', '38.6400', '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 (62587, '2022-03-01', 2169, 59590, 4065, 10737, '-52.0000', '3.8397', '3.8397', '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 (62588, '2022-03-01', 2169, 59590, 4065, NULL, '53.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (62589, '2022-03-01', 1863, 59591, 4065, 10808, '-115.0000', '0.4136', '0.4136', '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 (62590, '2022-03-01', 1863, 59591, 4065, NULL, '116.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-116.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62591, '2022-03-01', 2167, 59592, 4065, 17165, '-38.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 (62592, '2022-03-01', 2167, 59592, 4065, NULL, '39.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62593, '2022-03-01', 9715, 59593, 4065, NULL, '1.0000', '9.4000', '9.4000', '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 (62594, '2022-03-01', 1863, 59594, 4065, 10808, '-115.0000', '0.4136', '0.4136', '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 (62595, '2022-03-01', 1863, 59594, 4065, NULL, '116.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-116.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62596, '2022-03-01', 1523, 59595, 4065, NULL, '1.0000', '213.0405', '213.0405', '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 (62597, '2022-03-01', 2643, 59596, 4065, NULL, '1.0000', '0.8700', '0.8700', '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 (62598, '2022-03-01', 1812, 59597, 4065, 8224, '-68.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 (62599, '2022-03-01', 1812, 59597, 4065, NULL, '70.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62600, '2022-03-01', 2366, 59598, 4065, 3833, '-40.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 (62601, '2022-03-01', 2366, 59598, 4065, NULL, '42.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62602, '2022-03-01', 2633, 59599, 4065, 17589, '-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 (62603, '2022-03-01', 2633, 59599, 4065, 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 (62604, '2022-03-01', 2643, 59600, 4065, NULL, '1.0000', '0.8700', '0.8700', '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 (62605, '2022-03-01', 1804, 59601, 4065, 4916, '-6.0000', '4.2500', '4.2500', '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 (62606, '2022-03-01', 1804, 59601, 4065, NULL, '7.0000', '4.2500', '4.2500', '6.5000', '6.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 (62607, '2022-03-01', 1839, 59602, 4065, 8734, '-21.0000', '6.1500', '6.1500', '9.5000', '9.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 (62608, '2022-03-01', 1839, 59602, 4065, NULL, '22.0000', '6.1500', '6.1500', '9.5000', '9.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62609, '2022-03-01', 7609, 59603, 4065, NULL, '1.0000', '4.3300', '4.3300', '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 (62610, '2022-03-01', 1665, 59604, 4065, 3235, '-79.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 (62611, '2022-03-01', 1665, 59604, 4065, NULL, '80.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62612, '2022-03-01', 1533, 59605, 4065, 10381, '-6.0000', '2.5917', '2.5917', '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 (62613, '2022-03-01', 1533, 59605, 4065, NULL, '7.0000', '2.5917', '2.5917', '5.5000', '5.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 (62614, '2022-03-01', 2633, 59606, 4065, 17589, '-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 (62615, '2022-03-01', 2633, 59606, 4065, 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 (62616, '2022-03-01', 2302, 59607, 4065, 2963, '-34.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 (62617, '2022-03-01', 2302, 59607, 4065, NULL, '35.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62618, '2022-03-01', 9732, 59608, 4065, 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 (62619, '2022-03-01', 8013, 59609, 4065, NULL, '1.0000', '3.6500', '3.6500', '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 (62620, '2022-03-01', 9732, 59610, 4065, NULL, '10.0000', '0.7000', '0.7000', '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 (62621, '2022-03-01', 9742, 59611, 4065, 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 (62622, '2022-03-01', 2136, 59612, 4065, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '69.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 (62623, '2022-03-01', 1602, 59613, 4065, 5897, '-113.0000', '6.7859', '6.7859', '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 (62624, '2022-03-01', 1602, 59613, 4065, NULL, '114.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62625, '2022-03-01', 9461, 59614, 4065, NULL, '1.0000', '1.6000', '1.6000', '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 (62626, '2022-03-01', 1884, 59615, 4066, NULL, '1.0000', '4.5207', '4.5207', '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 (62627, '2022-03-01', 1349, 59616, 4066, NULL, '1.0000', '35.0700', '35.0700', '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 (62628, '2022-03-01', 1419, 59617, 4066, NULL, '1.0000', '13.1040', '13.1040', '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 (62629, '2022-03-01', 8682, 59618, 4066, NULL, '1.0000', '30.0000', '30.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 (62630, '2022-03-01', 8231, 59619, 4066, NULL, '1.0000', '4.5000', '4.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 (62631, '2022-03-01', 7406, 59620, 4066, NULL, '1.0000', '2.3750', '2.3750', '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 (62632, '2022-03-01', 7781, 59621, 4067, NULL, '3.0000', '4.2500', '4.2500', '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 (62633, '2022-03-01', 2135, 59622, 4067, NULL, '1.0000', '2.4732', '2.4732', '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 (62634, '2022-03-01', 1856, 59623, 4068, NULL, '1.0000', '4.2500', '4.2500', '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 (62635, '2022-03-01', 7428, 59624, 4068, NULL, '1.0000', '2.6100', '2.6100', '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 (62636, '2022-03-01', 7385, 59625, 4068, 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 (62637, '2022-03-01', 1703, 59626, 4068, 5487, '-3.0000', '9.2200', '9.2200', '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 (62638, '2022-03-01', 1703, 59626, 4068, NULL, '4.0000', '9.2200', '9.2200', '12.5000', '12.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 (62639, '2022-03-01', 9095, 59627, 4068, NULL, '1.0000', '8.7600', '8.7600', '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 (62640, '2022-03-01', 3001, 59628, 4068, NULL, '6.0000', '1.5000', '1.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 (62641, '2022-03-01', 7514, 59629, 4068, NULL, '1.0000', '2.2500', '2.2500', '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 (62642, '2022-03-01', 2965, 59630, 4068, 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 (62643, '2022-03-01', 7506, 59631, 4068, NULL, '1.0000', '15.0000', '15.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 (62644, '2022-03-01', 1841, 59632, 4068, NULL, '2.0000', '142.5780', '142.5780', '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 (62645, '2022-03-01', 1840, 59633, 4068, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (62646, '2022-03-01', 2289, 59634, 4068, 2949, '-68.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 (62647, '2022-03-01', 2289, 59634, 4068, NULL, '70.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62648, '2022-03-01', 8415, 59635, 4068, NULL, '1.0000', '3.2500', '3.2500', '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 (62649, '2022-03-01', 7848, 59636, 4068, NULL, '1.0000', '1.3500', '1.3500', '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 (62650, '2022-03-01', 9734, 59637, 4068, NULL, '1.0000', '0.3200', '0.3200', '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 (62651, '2022-03-01', 7473, 59638, 4068, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (62652, '2022-03-01', 8714, 59639, 4068, NULL, '2.0000', '5.2100', '5.2100', '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 (62653, '2022-03-01', 9089, 59640, 4068, NULL, '1.0000', '3.8000', '3.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 (62654, '2022-03-01', 2220, 59641, 4068, 4333, '1.0000', '5.4170', '5.4170', '8.0000', '8.0000', '16.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 (62655, '2022-03-01', 7911, 59642, 4068, NULL, '1.0000', '4.3700', '4.3700', '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 (62656, '2022-03-01', 7464, 59643, 4068, NULL, '1.0000', '21.9000', '21.9000', '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 (62657, '2022-03-01', 2776, 59644, 4068, NULL, '1.0000', '14.6000', '14.6000', '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 (62658, '2022-03-01', 8184, 59645, 4068, NULL, '10.0000', '2.4000', '2.4000', '3.5000', '3.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 (62659, '2022-03-01', 7547, 59646, 4068, NULL, '4.0000', '0.0000', '0.0000', '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 (62660, '2022-03-01', 7428, 59647, 4068, NULL, '10.0000', '2.6100', '2.6100', '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 (62661, '2022-03-01', 1369, 59648, 4068, 7392, '-2.0000', '2.2209', '2.2209', '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 (62662, '2022-03-01', 1369, 59648, 4068, NULL, '3.0000', '2.2209', '2.2209', '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 (62663, '2022-03-01', 7680, 59649, 4068, NULL, '1.0000', '21.1800', '21.1800', '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 (62664, '2022-03-01', 8814, 59650, 4068, NULL, '10.0000', '5.0000', '5.0000', '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 (62665, '2022-03-01', 1644, 59651, 4068, 3216, '-4.0000', '33.8200', '33.8200', '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 (62666, '2022-03-01', 1644, 59651, 4068, NULL, '5.0000', '33.8200', '33.8200', '48.0000', '48.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 (62667, '2022-03-01', 7514, 59652, 4068, NULL, '1.0000', '2.2500', '2.2500', '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 (62668, '2022-03-01', 9151, 59653, 4068, NULL, '1.0000', '9.7000', '9.7000', '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 (62669, '2022-03-01', 1689, 59654, 4068, 4897, '-6.0000', '60.7198', '60.7198', '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 (62670, '2022-03-01', 1689, 59654, 4068, NULL, '7.0000', '60.7198', '60.7198', '19.0000', '19.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 (62671, '2022-03-01', 9785, 59655, 4068, 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 (62672, '2022-03-01', 7981, 59656, 4068, NULL, '10.0000', '6.0000', '6.0000', '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 (62673, '2022-03-01', 9026, 59657, 4068, NULL, '1.0000', '15.0000', '15.0000', '19.8000', '19.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 (62674, '2022-03-01', 7321, 59658, 4068, NULL, '1.0000', '7.9500', '7.9500', '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 (62675, '2022-03-01', 9794, 59659, 4068, NULL, '1.0000', '1.0800', '1.0800', '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 (62676, '2022-03-01', 8753, 59660, 4068, 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 (62677, '2022-03-01', 2825, 59661, 4069, NULL, '1.0000', '12.0000', '12.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 (62678, '2022-03-01', 2255, 59662, 4069, 39842, '1.0000', '17.7288', '17.7288', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62679, '2022-03-01', 9750, 59663, 4069, NULL, '1.0000', '3.3000', '3.3000', '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 (62680, '2022-03-01', 2699, 59664, 4069, 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 (62681, '2022-03-01', 2908, 59665, 4069, 49362, '4.0000', '0.2700', '0.2700', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62682, '2022-03-01', 1425, 59666, 4069, NULL, '1.0000', '7.5328', '7.5328', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62683, '2022-03-01', 1812, 59667, 4069, NULL, '1.0000', '7.9262', '7.9262', '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 (62684, '2022-03-01', 7560, 59668, 4069, NULL, '1.0000', '90.1600', '90.1600', '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 (62685, '2022-03-01', 7820, 59669, 4069, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62686, '2022-03-01', 2965, 59670, 4069, NULL, '1.0000', '5.8007', '5.8007', '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 (62687, '2022-03-01', 2169, 59671, 4069, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62688, '2022-03-01', 7779, 59672, 4069, NULL, '1.0000', '0.6200', '0.6200', '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 (62689, '2022-03-01', 2169, 59673, 4069, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62690, '2022-03-01', 1564, 59674, 4069, 50077, '1.0000', '3.4988', '3.4988', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62691, '2022-03-01', 9695, 59675, 4069, 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 (62692, '2022-03-01', 2821, 59676, 4069, NULL, '1.0000', '3.4701', '3.4701', '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 (62693, '2022-03-01', 2061, 59677, 4069, 50246, '1.0000', '11.0146', '11.0146', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62694, '2022-03-01', 7756, 59678, 4069, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62695, '2022-03-01', 1675, 59679, 4069, 37778, '1.0000', '20.7021', '20.7021', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62696, '2022-03-01', 2660, 59680, 4069, 49361, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62697, '2022-03-01', 7333, 59681, 4069, NULL, '2.0000', '13.5000', '13.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 (62698, '2022-03-01', 2315, 59682, 4069, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '131.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62699, '2022-03-01', 9482, 59683, 4069, 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 (62700, '2022-03-01', 2167, 59684, 4069, NULL, '1.0000', '2.1310', '2.1310', '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 (62701, '2022-03-01', 2384, 59685, 4069, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62702, '2022-03-01', 1425, 59686, 4069, NULL, '1.0000', '7.5328', '7.5328', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62703, '2022-03-01', 8963, 59687, 4069, 39855, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62704, '2022-03-01', 2761, 59688, 4069, 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 (62705, '2022-03-01', 1454, 59689, 4069, 47092, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62706, '2022-03-01', 3025, 59690, 4069, 44157, '1.0000', '2.9545', '2.9545', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62707, '2022-03-01', 8318, 59691, 4069, NULL, '1.0000', '5.5000', '5.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 (62708, '2022-03-01', 1564, 59692, 4069, 50077, '5.0000', '3.4988', '3.4988', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62709, '2022-03-01', 7564, 59693, 4069, NULL, '1.0000', '0.6400', '0.6400', '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 (62710, '2022-03-01', 7411, 59694, 4069, NULL, '1.0000', '1.3013', '1.3013', '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 (62711, '2022-03-01', 2908, 59695, 4069, 49362, '4.0000', '0.2700', '0.2700', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62712, '2022-03-01', 8984, 59696, 4069, NULL, '1.0000', '-100.8495', '-100.8495', '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 (62713, '2022-03-01', 7359, 59697, 4069, NULL, '1.0000', '20.0000', '20.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 (62714, '2022-03-01', 1855, 59698, 4069, NULL, '1.0000', '1.5003', '1.5003', '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 (62715, '2022-03-01', 2088, 59699, 4069, NULL, '1.0000', '1.8798', '1.8798', '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 (62716, '2022-03-01', 1751, 59700, 4069, 48456, '1.0000', '4.1376', '4.1376', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62717, '2022-03-01', 7483, 59701, 4069, 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 (62718, '2022-03-01', 9748, 59702, 4069, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62719, '2022-03-01', 1620, 59703, 4069, 50079, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62720, '2022-03-01', 7411, 59704, 4069, NULL, '1.0000', '1.3013', '1.3013', '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 (62721, '2022-03-01', 9758, 59705, 4069, NULL, '1.0000', '3.1400', '3.1400', '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 (62722, '2022-03-01', 2289, 59706, 4069, 49873, '3.0000', '0.2222', '0.2222', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62723, '2022-03-01', 1702, 59707, 4069, NULL, '1.0000', '14.9000', '14.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 (62724, '2022-03-01', 7741, 59708, 4069, NULL, '1.0000', '0.5684', '0.5684', '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 (62725, '2022-03-01', 2135, 59709, 4069, NULL, '1.0000', '2.4732', '2.4732', '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 (62726, '2022-03-01', 2221, 59710, 4069, 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 (62727, '2022-03-01', 9695, 59711, 4069, 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 (62728, '2022-03-01', 2821, 59712, 4069, NULL, '1.0000', '3.4701', '3.4701', '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 (62729, '2022-03-01', 2169, 59713, 4069, 48884, '1.0000', '0.7121', '0.7121', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62730, '2022-03-01', 2105, 59714, 4069, 48179, '2.0000', '1.3500', '1.3500', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62731, '2022-03-01', 2061, 59715, 4069, 50246, '1.0000', '11.0146', '11.0146', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62732, '2022-03-01', 1856, 59716, 4069, NULL, '1.0000', '5.5569', '5.5569', '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 (62733, '2022-03-01', 2825, 59717, 4070, NULL, '1.0000', '12.0000', '12.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 (62734, '2022-03-01', 2255, 59718, 4070, NULL, '1.0000', '17.7288', '17.7288', '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 (62735, '2022-03-01', 9750, 59719, 4070, NULL, '1.0000', '3.3000', '3.3000', '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 (62736, '2022-03-01', 2699, 59720, 4070, 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 (62737, '2022-03-01', 2908, 59721, 4070, 49362, '4.0000', '0.2700', '0.2700', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62738, '2022-03-01', 1425, 59722, 4070, NULL, '1.0000', '7.5328', '7.5328', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62739, '2022-03-01', 1812, 59723, 4070, NULL, '1.0000', '7.9262', '7.9262', '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 (62740, '2022-03-01', 7560, 59724, 4070, NULL, '1.0000', '90.1600', '90.1600', '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 (62741, '2022-03-01', 7820, 59725, 4070, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62742, '2022-03-01', 2965, 59726, 4070, NULL, '1.0000', '5.8007', '5.8007', '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 (62743, '2022-03-01', 2169, 59727, 4070, NULL, '1.0000', '0.7121', '0.7121', '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 (62744, '2022-03-01', 7779, 59728, 4070, NULL, '1.0000', '0.6200', '0.6200', '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 (62745, '2022-03-01', 2169, 59729, 4070, NULL, '1.0000', '0.7121', '0.7121', '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 (62746, '2022-03-01', 1564, 59730, 4070, 50077, '1.0000', '3.4988', '3.4988', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62747, '2022-03-01', 9695, 59731, 4070, 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 (62748, '2022-03-01', 2821, 59732, 4070, NULL, '1.0000', '3.4701', '3.4701', '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 (62749, '2022-03-01', 2061, 59733, 4070, 50246, '1.0000', '11.0146', '11.0146', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62750, '2022-03-01', 7756, 59734, 4070, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62751, '2022-03-01', 1675, 59735, 4070, NULL, '1.0000', '20.7021', '20.7021', '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 (62752, '2022-03-01', 2660, 59736, 4070, 49361, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62753, '2022-03-01', 7333, 59737, 4070, NULL, '2.0000', '13.5000', '13.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 (62754, '2022-03-01', 2315, 59738, 4070, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '128.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62755, '2022-03-01', 9482, 59739, 4070, 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 (62756, '2022-03-01', 2167, 59740, 4070, NULL, '1.0000', '2.1310', '2.1310', '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 (62757, '2022-03-01', 2384, 59741, 4070, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62758, '2022-03-01', 1425, 59742, 4070, NULL, '1.0000', '7.5328', '7.5328', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62759, '2022-03-01', 8963, 59743, 4070, 39855, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62760, '2022-03-01', 2761, 59744, 4070, 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 (62761, '2022-03-01', 1454, 59745, 4070, NULL, '1.0000', '10.9000', '10.9000', '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 (62762, '2022-03-01', 3025, 59746, 4070, 44157, '1.0000', '2.9545', '2.9545', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62763, '2022-03-01', 8318, 59747, 4070, NULL, '1.0000', '5.5000', '5.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 (62764, '2022-03-01', 1564, 59748, 4070, 50077, '5.0000', '3.4988', '3.4988', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62765, '2022-03-01', 7564, 59749, 4070, NULL, '1.0000', '0.6400', '0.6400', '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 (62766, '2022-03-01', 7411, 59750, 4070, NULL, '1.0000', '1.3013', '1.3013', '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 (62767, '2022-03-01', 2908, 59751, 4070, 49362, '4.0000', '0.2700', '0.2700', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62768, '2022-03-01', 8984, 59752, 4070, NULL, '1.0000', '-100.8495', '-100.8495', '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 (62769, '2022-03-01', 7359, 59753, 4070, NULL, '1.0000', '20.0000', '20.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 (62770, '2022-03-01', 1855, 59754, 4070, NULL, '1.0000', '1.5003', '1.5003', '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 (62771, '2022-03-01', 2088, 59755, 4070, NULL, '1.0000', '1.8798', '1.8798', '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 (62772, '2022-03-01', 1751, 59756, 4070, 48456, '1.0000', '4.1376', '4.1376', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62773, '2022-03-01', 7483, 59757, 4070, 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 (62774, '2022-03-01', 9748, 59758, 4070, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62775, '2022-03-01', 1620, 59759, 4070, 50079, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62776, '2022-03-01', 7411, 59760, 4070, NULL, '1.0000', '1.3013', '1.3013', '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 (62777, '2022-03-01', 9758, 59761, 4070, NULL, '1.0000', '3.1400', '3.1400', '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 (62778, '2022-03-01', 2289, 59762, 4070, 49873, '3.0000', '0.2222', '0.2222', '0.5000', '0.5000', '24.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62779, '2022-03-01', 1702, 59763, 4070, NULL, '1.0000', '14.9000', '14.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 (62780, '2022-03-01', 7741, 59764, 4070, NULL, '1.0000', '0.5684', '0.5684', '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 (62781, '2022-03-01', 2135, 59765, 4070, NULL, '1.0000', '2.4732', '2.4732', '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 (62782, '2022-03-01', 2221, 59766, 4070, 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 (62783, '2022-03-01', 9695, 59767, 4070, 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 (62784, '2022-03-01', 2821, 59768, 4070, NULL, '1.0000', '3.4701', '3.4701', '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 (62785, '2022-03-01', 2169, 59769, 4070, NULL, '1.0000', '0.7121', '0.7121', '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 (62786, '2022-03-01', 2105, 59770, 4070, NULL, '2.0000', '1.3500', '1.3500', '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 (62787, '2022-03-01', 2061, 59771, 4070, 50246, '1.0000', '11.0146', '11.0146', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62788, '2022-03-01', 1856, 59772, 4070, NULL, '1.0000', '5.5569', '5.5569', '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 (62789, '2022-03-01', 1910, 59773, 4070, 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 (62790, '2022-03-01', 2317, 59774, 4071, 40395, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '28.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62791, '2022-03-01', 7411, 59775, 4071, NULL, '1.0000', '1.2529', '1.2529', '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 (62792, '2022-03-01', 7514, 59776, 4071, NULL, '1.0000', '97.7006', '97.7006', '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 (62793, '2022-03-01', 9241, 59777, 4071, NULL, '2.0000', '40.0000', '40.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 (62794, '2022-03-01', 8607, 59778, 4071, 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 (62795, '2022-03-01', 9755, 59779, 4071, 46932, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62796, '2022-03-01', 9576, 59780, 4071, 46894, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62797, '2022-03-01', 9560, 59781, 4071, 40407, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62798, '2022-03-01', 1837, 59782, 4071, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62799, '2022-03-01', 2284, 59783, 4071, 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 (62800, '2022-03-01', 8296, 59784, 4071, NULL, '1.0000', '112.3600', '112.3600', '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 (62801, '2022-03-01', 7703, 59785, 4071, NULL, '1.0000', '102.7757', '102.7757', '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 (62802, '2022-03-01', 7473, 59786, 4071, NULL, '5.0000', '710.0742', '710.0742', '0.6000', '0.6000', '-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 (62803, '2022-03-01', 9430, 59787, 4071, 30200, '1.0000', '40.9000', '40.9000', '54.0000', '54.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62804, '2022-03-01', 1501, 59788, 4071, 50680, '1.0000', '2.2898', '2.2898', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62805, '2022-03-01', 7859, 59789, 4071, 50778, '1.0000', '12.5525', '12.5525', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62806, '2022-03-01', 7411, 59790, 4071, NULL, '1.0000', '1.2529', '1.2529', '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 (62807, '2022-03-01', 1884, 59791, 4071, 45321, '1.0000', '5.5994', '5.5994', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62808, '2022-03-01', 7412, 59792, 4071, NULL, '1.0000', '1.5200', '1.5200', '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 (62809, '2022-03-01', 7753, 59793, 4071, 50819, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62810, '2022-03-01', 2315, 59794, 4071, NULL, '1.0000', '0.8863', '0.8863', '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 (62811, '2022-03-01', 7527, 59795, 4071, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62812, '2022-03-01', 7411, 59796, 4071, NULL, '1.0000', '1.2529', '1.2529', '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 (62813, '2022-03-01', 7518, 59797, 4071, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (62814, '2022-03-01', 8925, 59798, 4071, NULL, '1.0000', '2.4000', '2.4000', '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 (62815, '2022-03-01', 7585, 59799, 4071, NULL, '1.0000', '-3.1011', '-3.1011', '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 (62816, '2022-03-01', 7675, 59800, 4071, NULL, '1.0000', '84.8590', '84.8590', '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 (62817, '2022-03-01', 7640, 59801, 4071, 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 (62818, '2022-03-01', 7729, 59802, 4071, NULL, '1.0000', '13.0000', '13.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 (62819, '2022-03-01', 7641, 59803, 4071, NULL, '1.0000', '-543.6034', '-543.6034', '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 (62820, '2022-03-01', 9715, 59804, 4071, 50656, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62821, '2022-03-01', 7674, 59805, 4071, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62822, '2022-03-01', 2601, 59806, 4071, 40404, '1.0000', '16.0000', '16.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62823, '2022-03-01', 7672, 59807, 4071, NULL, '1.0000', '3.8200', '3.8200', '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 (62824, '2022-03-01', 7344, 59808, 4071, 45299, '1.0000', '-333.7508', '-333.7508', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62825, '2022-03-01', 8451, 59809, 4071, 46914, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62826, '2022-03-01', 2315, 59810, 4071, NULL, '2.0000', '0.8863', '0.8863', '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 (62827, '2022-03-01', 7564, 59811, 4071, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62828, '2022-03-01', 9471, 59812, 4071, 32154, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62829, '2022-03-01', 1846, 59813, 4071, 50289, '1.0000', '12.2700', '12.2700', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62830, '2022-03-01', 9193, 59814, 4071, NULL, '1.0000', '7.0315', '7.0315', '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 (62831, '2022-03-01', 7911, 59815, 4071, NULL, '1.0000', '4.3700', '4.3700', '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 (62832, '2022-03-01', 7318, 59816, 4071, 50476, '1.0000', '11.4954', '11.4954', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62833, '2022-03-01', 1338, 59817, 4071, NULL, '1.0000', '3.6250', '3.6250', '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 (62834, '2022-03-01', 8203, 59818, 4071, NULL, '6.0000', '29.8095', '29.8095', '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 (62835, '2022-03-01', 8557, 59819, 4071, NULL, '1.0000', '12.7706', '12.7706', '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 (62836, '2022-03-01', 7989, 59820, 4071, NULL, '1.0000', '-42.6588', '-42.6588', '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 (62837, '2022-03-01', 7316, 59821, 4071, 50386, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '26.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62838, '2022-03-01', 7743, 59822, 4071, NULL, '1.0000', '419203.7668', '419203.7668', '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 (62839, '2022-03-01', 7645, 59823, 4071, NULL, '1.0000', '-47.3400', '-47.3400', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62840, '2022-03-01', 7411, 59824, 4071, NULL, '1.0000', '1.2529', '1.2529', '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 (62841, '2022-03-01', 1346, 59825, 4072, 39869, '10.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62842, '2022-03-01', 2669, 59826, 4072, 34664, '1.0000', '24.3367', '24.3367', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62843, '2022-03-01', 7720, 59827, 4072, NULL, '1.0000', '8.5000', '8.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 (62844, '2022-03-01', 2289, 59828, 4072, 49873, '10.0000', '0.2222', '0.2222', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62845, '2022-03-01', 9740, 59829, 4073, 46921, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62846, '2022-03-01', 9191, 59830, 4073, 48816, '1.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62847, '2022-03-01', 9695, 59831, 4074, 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 (62848, '2022-03-01', 2242, 59832, 4074, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62849, '2022-03-01', 7411, 59833, 4074, NULL, '2.0000', '1.3013', '1.3013', '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 (62850, '2022-03-01', 1602, 59834, 4074, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62851, '2022-03-01', 2385, 59835, 4074, 50075, '3.0000', '8.9100', '8.9100', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62852, '2022-03-01', 7482, 59836, 4074, NULL, '1.0000', '2.8136', '2.8136', '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 (62853, '2022-03-02', 2650, 59837, 4075, 12033, '-2.0000', '7.3200', '7.3200', '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 (62854, '2022-03-02', 2650, 59837, 4075, NULL, '3.0000', '7.3200', '7.3200', '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 (62855, '2022-03-02', 2289, 59838, 4076, 49873, '4.0000', '0.2222', '0.2222', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62856, '2022-03-02', 1590, 59839, 4076, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62857, '2022-03-02', 2604, 59840, 4076, 47138, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62858, '2022-03-02', 1873, 59841, 4076, NULL, '1.0000', '11.9500', '11.9500', '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 (62859, '2022-03-02', 2100, 59842, 4076, 47100, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62860, '2022-03-02', 1857, 59843, 4076, 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 (62861, '2022-03-02', 9155, 59844, 4076, NULL, '1.0000', '13.5000', '13.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 (62862, '2022-03-02', 7339, 59845, 4076, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (62863, '2022-03-02', 1367, 59846, 4076, 18939, '10.0000', '49.2100', '49.2100', '7.0000', '7.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 (62864, '2022-03-02', 2965, 59847, 4076, NULL, '1.0000', '5.8007', '5.8007', '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 (62865, '2022-03-02', 8876, 59848, 4076, NULL, '1.0000', '0.9900', '0.9900', '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 (62866, '2022-03-02', 1702, 59849, 4076, NULL, '1.0000', '14.9000', '14.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 (62867, '2022-03-02', 7954, 59850, 4076, 48477, '3.0000', '7.8822', '7.8822', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62868, '2022-03-02', 1812, 59851, 4076, NULL, '3.0000', '7.9262', '7.9262', '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 (62869, '2022-03-02', 1533, 59852, 4076, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '15.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62870, '2022-03-02', 2567, 59853, 4076, 45284, '1.0000', '32.0997', '32.0997', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62871, '2022-03-02', 1493, 59854, 4076, 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 (62872, '2022-03-02', 2315, 59855, 4076, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '126.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62873, '2022-03-02', 7333, 59856, 4077, NULL, '1.0000', '13.5000', '13.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 (62874, '2022-03-02', 2289, 59857, 4077, 2949, '-70.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 (62875, '2022-03-02', 2289, 59857, 4077, NULL, '75.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62876, '2022-03-02', 7899, 59858, 4077, NULL, '1.0000', '3.3000', '3.3000', '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 (62877, '2022-03-02', 9202, 59859, 4077, NULL, '1.0000', '3.5000', '3.5000', '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 (62878, '2022-03-02', 2242, 59860, 4077, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.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 (62879, '2022-03-02', 2069, 59861, 4077, 5571, '-2.0000', '2.0400', '2.0400', '9.5000', '9.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 (62880, '2022-03-02', 2069, 59861, 4077, NULL, '3.0000', '2.0400', '2.0400', '9.5000', '9.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 (62881, '2022-03-02', 8451, 59862, 4077, NULL, '1.0000', '9.6000', '9.6000', '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 (62882, '2022-03-02', 2315, 59863, 4077, 2735, '-179.0000', '0.3300', '0.3300', '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 (62883, '2022-03-02', 2315, 59863, 4077, NULL, '181.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-181.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62884, '2022-03-02', 2243, 59864, 4077, 3060, '-1.0000', '3.5000', '3.5000', '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 (62885, '2022-03-02', 2243, 59864, 4077, NULL, '2.0000', '3.5000', '3.5000', '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 (62886, '2022-03-02', 7917, 59865, 4077, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (62887, '2022-03-02', 1310, 59866, 4077, NULL, '3.0000', '0.3700', '0.3700', '0.6000', '0.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 (62888, '2022-03-02', 7428, 59867, 4077, NULL, '2.0000', '2.6100', '2.6100', '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 (62889, '2022-03-02', 7675, 59868, 4077, NULL, '1.0000', '11.4300', '11.4300', '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 (62890, '2022-03-02', 7954, 59869, 4077, 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 (62891, '2022-03-02', 7848, 59870, 4077, NULL, '1.0000', '1.3500', '1.3500', '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 (62892, '2022-03-02', 7514, 59871, 4077, NULL, '2.0000', '2.2500', '2.2500', '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 (62893, '2022-03-02', 1498, 59872, 4077, 19685, '-20.0000', '0.3300', '0.3300', '0.6000', '0.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 (62894, '2022-03-02', 1498, 59872, 4077, NULL, '22.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62895, '2022-03-02', 9469, 59873, 4077, NULL, '1.0000', '2.3000', '2.3000', '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 (62896, '2022-03-02', 7708, 59874, 4077, NULL, '1.0000', '7.8000', '7.8000', '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 (62897, '2022-03-02', 1409, 59875, 4077, 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 (62898, '2022-03-02', 1760, 59876, 4077, 20604, '15.0000', '111.8384', '111.8384', '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 (62899, '2022-03-02', 7547, 59877, 4077, NULL, '4.0000', '0.0000', '0.0000', '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 (62900, '2022-03-02', 9674, 59878, 4077, 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 (62901, '2022-03-02', 9202, 59879, 4077, NULL, '2.0000', '3.5000', '3.5000', '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 (62902, '2022-03-02', 7428, 59880, 4077, NULL, '2.0000', '2.6100', '2.6100', '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 (62903, '2022-03-02', 9734, 59881, 4077, NULL, '2.0000', '0.3200', '0.3200', '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 (62904, '2022-03-02', 9753, 59882, 4077, NULL, '1.0000', '51.0000', '51.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 (62905, '2022-03-02', 7756, 59883, 4078, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62906, '2022-03-02', 2443, 59884, 4079, 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 (62907, '2022-03-02', 2221, 59885, 4079, 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 (62908, '2022-03-02', 3060, 59886, 4079, 24980, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '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 (62909, '2022-03-02', 2920, 59887, 4079, 34939, '2.0000', '30.0307', '30.0307', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62910, '2022-03-02', 7328, 59888, 4079, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (62911, '2022-03-02', 2289, 59889, 4079, 49873, '4.0000', '0.2222', '0.2222', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62912, '2022-03-02', 2315, 59890, 4079, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '124.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62913, '2022-03-02', 1510, 59891, 4079, NULL, '1.0000', '9.5885', '9.5885', '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 (62914, '2022-03-02', 2286, 59892, 4079, 50523, '1.0000', '4.4402', '4.4402', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62915, '2022-03-02', 9294, 59893, 4079, 33162, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62916, '2022-03-02', 9109, 59894, 4079, 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 (62917, '2022-03-02', 7922, 59895, 4079, 47089, '1.0000', '2.3663', '2.3663', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62918, '2022-03-02', 7869, 59896, 4079, NULL, '1.0000', '4.2900', '4.2900', '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 (62919, '2022-03-02', 1961, 59897, 4079, 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 (62920, '2022-03-02', 1602, 59898, 4079, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62921, '2022-03-02', 1571, 59899, 4079, 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 (62922, '2022-03-02', 2169, 59900, 4079, NULL, '1.0000', '0.7121', '0.7121', '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 (62923, '2022-03-02', 3017, 59901, 4079, 38532, '1.0000', '3.9000', '3.9000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62924, '2022-03-02', 1533, 59902, 4079, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62925, '2022-03-02', 2231, 59903, 4079, NULL, '1.0000', '34.0000', '34.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 (62926, '2022-03-02', 9736, 59904, 4079, 47093, '1.0000', '3.9100', '3.9100', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62927, '2022-03-02', 1825, 59905, 4079, NULL, '1.0000', '5.1984', '5.1984', '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 (62928, '2022-03-02', 2891, 59906, 4079, NULL, '1.0000', '9.5000', '9.5000', '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 (62929, '2022-03-02', 9663, 59907, 4079, NULL, '1.0000', '18.0000', '18.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 (62930, '2022-03-02', 1528, 59908, 4079, 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 (62931, '2022-03-02', 1969, 59909, 4079, NULL, '1.0000', '4.3300', '4.3300', '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 (62932, '2022-03-02', 2103, 59910, 4079, 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 (62933, '2022-03-02', 9758, 59911, 4079, NULL, '1.0000', '3.1400', '3.1400', '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 (62934, '2022-03-02', 2059, 59912, 4079, 49914, '1.0000', '8.8934', '8.8934', '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 (62935, '2022-03-02', 1628, 59913, 4079, NULL, '1.0000', '7.1500', '7.1500', '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 (62936, '2022-03-02', 9758, 59914, 4079, NULL, '1.0000', '3.1400', '3.1400', '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 (62937, '2022-03-02', 7453, 59915, 4079, NULL, '1.0000', '21.6500', '21.6500', '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 (62938, '2022-03-02', 9482, 59916, 4079, NULL, '12.0000', '0.5000', '0.5000', '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 (62939, '2022-03-02', 1564, 59917, 4079, NULL, '3.0000', '3.4988', '3.4988', '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 (62940, '2022-03-02', 2260, 59918, 4079, 49305, '1.0000', '4.2238', '4.2238', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62941, '2022-03-02', 2260, 59918, 4079, 48160, '1.0000', '4.2238', '4.2238', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62942, '2022-03-02', 2604, 59919, 4080, 34974, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62943, '2022-03-02', 1409, 59920, 4080, 49509, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62944, '2022-03-02', 7459, 59921, 4080, NULL, '10.0000', '-6.1729', '-6.1729', '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 (62945, '2022-03-02', 8547, 59922, 4080, NULL, '1.0000', '3.3500', '3.3500', '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 (62946, '2022-03-02', 2068, 59923, 4080, NULL, '1.0000', '11.8658', '11.8658', '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 (62947, '2022-03-02', 9794, 59924, 4080, NULL, '1.0000', '1.0800', '1.0800', '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 (62948, '2022-03-02', 2761, 59925, 4081, 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 (62949, '2022-03-02', 2236, 59926, 4081, NULL, '2.0000', '9.3108', '9.3108', '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 (62950, '2022-03-02', 2028, 59927, 4082, 49612, '1.0000', '23.0000', '23.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 (62951, '2022-03-02', 9758, 59928, 4082, NULL, '1.0000', '3.1400', '3.1400', '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 (62952, '2022-03-02', 1812, 59929, 4082, NULL, '1.0000', '7.9262', '7.9262', '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 (62953, '2022-03-02', 1863, 59930, 4083, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62954, '2022-03-02', 1935, 59931, 4083, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62955, '2022-03-02', 1748, 59932, 4083, NULL, '2.0000', '0.3200', '0.3200', '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 (62956, '2022-03-02', 8203, 59933, 4083, NULL, '2.0000', '9.8000', '9.8000', '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 (62957, '2022-03-02', 2263, 59934, 4083, 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 (62958, '2022-03-02', 1863, 59935, 4083, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62959, '2022-03-02', 9683, 59936, 4083, 45265, '1.0000', '3.1000', '3.1000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62960, '2022-03-02', 2068, 59937, 4084, NULL, '1.0000', '11.8658', '11.8658', '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 (62961, '2022-03-02', 1602, 59938, 4084, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62962, '2022-03-02', 2020, 59939, 4084, NULL, '1.0000', '10.1614', '10.1614', '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 (62963, '2022-03-02', 8146, 59940, 4084, NULL, '1.0000', '4.4100', '4.4100', '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 (62964, '2022-03-02', 9482, 59941, 4084, 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 (62965, '2022-03-02', 1310, 59942, 4085, 49358, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62966, '2022-03-02', 2167, 59943, 4085, NULL, '1.0000', '2.1310', '2.1310', '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 (62967, '2022-03-02', 1602, 59944, 4086, 48493, '1.0000', '7.0300', '7.0300', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62968, '2022-03-02', 7708, 59945, 4087, NULL, '1.0000', '0.9306', '0.9306', '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 (62969, '2022-03-02', 8637, 59946, 4087, NULL, '8.0000', '40.3000', '40.3000', '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 (62970, '2022-03-02', 8596, 59947, 4087, NULL, '2.0000', '17.0000', '17.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 (62971, '2022-03-02', 9092, 59948, 4087, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62972, '2022-03-02', 9394, 59949, 4087, NULL, '2.0000', '5.5000', '5.5000', '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 (62973, '2022-03-02', 8158, 59950, 4087, 50781, '1.0000', '16.2000', '16.2000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62974, '2022-03-02', 9554, 59951, 4087, 40402, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62975, '2022-03-02', 7963, 59952, 4087, NULL, '1.0000', '-9.5000', '-9.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62976, '2022-03-02', 1446, 59953, 4087, 46916, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62977, '2022-03-02', 7518, 59954, 4087, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (62978, '2022-03-02', 7507, 59955, 4087, NULL, '1.0000', '6.5000', '6.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 (62979, '2022-03-02', 8288, 59956, 4087, NULL, '10.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (62980, '2022-03-02', 2769, 59957, 4087, 50779, '4.0000', '3.2800', '3.2800', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62981, '2022-03-02', 9101, 59958, 4087, NULL, '1.0000', '32.1800', '32.1800', '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 (62982, '2022-03-02', 9638, 59959, 4087, NULL, '1.0000', '34.5000', '34.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 (62983, '2022-03-02', 2681, 59960, 4087, 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 (62984, '2022-03-02', 7859, 59961, 4087, 50778, '1.0000', '12.5525', '12.5525', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62985, '2022-03-02', 9469, 59962, 4087, 39422, '1.0000', '2.3000', '2.3000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62986, '2022-03-02', 7609, 59963, 4087, NULL, '1.0000', '4.4421', '4.4421', '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 (62987, '2022-03-02', 9724, 59964, 4087, 46153, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62988, '2022-03-02', 7825, 59965, 4087, NULL, '1.0000', '-20.7637', '-20.7637', '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 (62989, '2022-03-02', 9742, 59966, 4087, 46267, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62990, '2022-03-02', 7674, 59967, 4087, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62991, '2022-03-02', 9337, 59968, 4087, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62992, '2022-03-02', 7704, 59969, 4087, NULL, '1.0000', '-1.5625', '-1.5625', '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 (62993, '2022-03-02', 7664, 59970, 4087, NULL, '1.0000', '7.1799', '7.1799', '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 (62994, '2022-03-02', 7518, 59971, 4087, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (62995, '2022-03-02', 2107, 59972, 4087, NULL, '3.0000', '0.2500', '0.2500', '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 (62996, '2022-03-02', 8596, 59973, 4087, NULL, '1.0000', '17.0000', '17.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 (62997, '2022-03-02', 2769, 59974, 4087, 50779, '4.0000', '3.2800', '3.2800', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62998, '2022-03-02', 9478, 59975, 4087, 39403, '1.0000', '9.0000', '9.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62999, '2022-03-02', 9265, 59976, 4087, 30225, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63000, '2022-03-02', 9275, 59977, 4087, NULL, '2.0000', '6.3000', '6.3000', '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 (63001, '2022-03-02', 9817, 59978, 4087, 50715, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63002, '2022-03-02', 9817, 59979, 4087, 50715, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63003, '2022-03-02', 7411, 59980, 4087, NULL, '2.0000', '1.2529', '1.2529', '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 (63004, '2022-03-02', 7428, 59981, 4087, 50471, '3.0000', '65.9358', '65.9358', '4.5000', '4.5000', '105.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63005, '2022-03-02', 7889, 59982, 4087, NULL, '1.0000', '-8.6571', '-8.6571', '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 (63006, '2022-03-02', 9089, 59983, 4087, 42765, '1.0000', '3.8000', '3.8000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63007, '2022-03-02', 1819, 59984, 4087, 43098, '1.0000', '5.4300', '5.4300', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63008, '2022-03-02', 7609, 59985, 4087, NULL, '1.0000', '4.4421', '4.4421', '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 (63009, '2022-03-02', 9785, 59986, 4087, 49664, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63010, '2022-03-02', 8744, 59987, 4087, 49435, '2.0000', '3.7083', '3.7083', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63011, '2022-03-02', 8933, 59988, 4087, 32140, '1.0000', '10.0000', '10.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63012, '2022-03-02', 7333, 59989, 4087, NULL, '2.0000', '13.5000', '13.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 (63013, '2022-03-02', 7453, 59990, 4087, 49818, '2.0000', '28.5000', '28.5000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63014, '2022-03-02', 7671, 59991, 4087, NULL, '1.0000', '76.3606', '76.3606', '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 (63015, '2022-03-02', 9092, 59992, 4087, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63016, '2022-03-02', 1750, 59993, 4087, 45853, '1.0000', '37.1349', '37.1349', '53.5000', '53.5000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63017, '2022-03-02', 8359, 59994, 4087, 50046, '1.0000', '2068.5192', '2068.5192', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63018, '2022-03-02', 7736, 59995, 4087, NULL, '1.0000', '-6.4252', '-6.4252', '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 (63019, '2022-03-02', 8038, 59996, 4087, 50370, '1.0000', '6.4795', '6.4795', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63020, '2022-03-02', 7354, 59997, 4087, NULL, '3.0000', '18.0000', '18.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 (63021, '2022-03-02', 1535, 59998, 4087, 48085, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63022, '2022-03-02', 7622, 59999, 4087, NULL, '1.0000', '17.8100', '17.8100', '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 (63023, '2022-03-02', 7444, 60000, 4087, NULL, '1.0000', '2.0190', '2.0190', '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 (63024, '2022-03-02', 7671, 60001, 4087, NULL, '1.0000', '76.3606', '76.3606', '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 (63025, '2022-03-02', 7514, 60002, 4087, NULL, '1.0000', '97.7006', '97.7006', '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 (63026, '2022-03-02', 2506, 60003, 4087, 50822, '1.0000', '3.9739', '3.9739', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63027, '2022-03-02', 1529, 60004, 4088, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63028, '2022-03-02', 2088, 60005, 4088, NULL, '1.0000', '1.8798', '1.8798', '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 (63029, '2022-03-02', 1409, 60006, 4088, 49509, '1.0000', '13.0001', '13.0001', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63030, '2022-03-02', 1863, 60007, 4088, 50237, '1.0000', '1.3829', '1.3829', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63031, '2022-03-02', 9092, 60008, 4089, 50305, '3.0000', '0.3129', '0.3129', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63032, '2022-03-02', 7514, 60009, 4089, NULL, '1.0000', '97.7006', '97.7006', '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 (63033, '2022-03-02', 7674, 60010, 4089, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63034, '2022-03-02', 7524, 60011, 4089, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63035, '2022-03-02', 9151, 60012, 4089, 45589, '1.0000', '9.7000', '9.7000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63036, '2022-03-02', 9817, 60013, 4089, 50715, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63037, '2022-03-02', 2352, 60014, 4089, 33716, '1.0000', '1.9000', '1.9000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63038, '2022-03-02', 2352, 60014, 4089, NULL, '3.0000', '1.9000', '1.9000', '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 (63039, '2022-03-02', 1620, 60015, 4090, 50079, '1.0000', '2.2300', '2.2300', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63040, '2022-03-02', 7741, 60016, 4091, NULL, '1.0000', '0.5684', '0.5684', '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 (63041, '2022-03-02', 8146, 60017, 4091, NULL, '1.0000', '4.4100', '4.4100', '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 (63042, '2022-03-02', 1564, 60018, 4091, NULL, '4.0000', '3.4988', '3.4988', '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 (63043, '2022-03-03', 2332, 60019, 4092, NULL, '1.0000', '5.0900', '5.0900', '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 (63044, '2022-03-03', 2237, 60020, 4092, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63045, '2022-03-03', 2169, 60021, 4092, NULL, '1.0000', '0.7121', '0.7121', '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 (63046, '2022-03-03', 9758, 60022, 4092, NULL, '1.0000', '3.1400', '3.1400', '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 (63047, '2022-03-03', 2567, 60023, 4092, 45284, '1.0000', '32.0997', '32.0997', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63048, '2022-03-03', 1588, 60024, 4092, 50083, '1.0000', '4.7750', '4.7750', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63049, '2022-03-03', 1810, 60025, 4092, 48619, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63050, '2022-03-03', 1346, 60026, 4092, 39869, '5.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63051, '2022-03-03', 9634, 60027, 4092, 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 (63052, '2022-03-03', 1512, 60028, 4092, 48872, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63053, '2022-03-03', 2945, 60029, 4092, 48462, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63054, '2022-03-03', 1615, 60030, 4092, 48893, '14.0000', '5.3000', '5.3000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63055, '2022-03-03', 1615, 60030, 4092, NULL, '14.0000', '5.3000', '5.3000', '7.0000', '7.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 (63056, '2022-03-03', 2227, 60031, 4092, 49414, '1.0000', '15.5000', '15.5000', '19.0000', '19.0000', '5.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63057, '2022-03-03', 2229, 60032, 4092, 49418, '1.0000', '26.0000', '26.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63058, '2022-03-03', 1306, 60033, 4092, NULL, '3.0000', '2.1000', '2.1000', '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 (63059, '2022-03-03', 1839, 60034, 4092, NULL, '1.0000', '-9.7683', '-9.7683', '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 (63060, '2022-03-03', 1620, 60035, 4092, 50079, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63061, '2022-03-03', 7744, 60036, 4092, NULL, '1.0000', '2.5833', '2.5833', '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 (63062, '2022-03-03', 1672, 60037, 4092, 49340, '10.0000', '3.0458', '3.0458', '4.2000', '4.2000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63063, '2022-03-03', 2242, 60038, 4092, 48899, '5.0000', '4.6984', '4.6984', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63064, '2022-03-03', 2254, 60039, 4092, NULL, '1.0000', '17.9400', '17.9400', '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 (63065, '2022-03-03', 8063, 60040, 4093, NULL, '1.0000', '1.6000', '1.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 (63066, '2022-03-03', 7674, 60041, 4093, 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 (63067, '2022-03-03', 7514, 60042, 4093, NULL, '2.0000', '2.2500', '2.2500', '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 (63068, '2022-03-03', 8703, 60043, 4093, NULL, '1.0000', '7.1600', '7.1600', '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 (63069, '2022-03-03', 8154, 60044, 4093, NULL, '2.0000', '12.3000', '12.3000', '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 (63070, '2022-03-03', 7317, 60045, 4093, NULL, '1.0000', '19.5500', '19.5500', '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 (63071, '2022-03-03', 2283, 60046, 4093, 2943, '-8.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 (63072, '2022-03-03', 2283, 60046, 4093, NULL, '9.0000', '1.4300', '1.4300', '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 (63073, '2022-03-03', 7832, 60047, 4093, NULL, '1.0000', '10.0000', '10.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 (63074, '2022-03-03', 2414, 60048, 4093, 4620, '-11.0000', '3.4000', '3.4000', '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 (63075, '2022-03-03', 2414, 60048, 4093, NULL, '13.0000', '3.4000', '3.4000', '5.0000', '5.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 (63076, '2022-03-03', 9412, 60049, 4093, NULL, '1.0000', '25.0000', '25.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 (63077, '2022-03-03', 8765, 60050, 4093, 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 (63078, '2022-03-03', 2612, 60051, 4093, 9748, '-3.0000', '7.1600', '7.1600', '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 (63079, '2022-03-03', 2612, 60051, 4093, NULL, '4.0000', '7.1600', '7.1600', '11.5000', '11.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 (63080, '2022-03-03', 8622, 60052, 4093, 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 (63081, '2022-03-03', 8184, 60053, 4093, NULL, '14.0000', '2.4000', '2.4000', '3.5000', '3.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 (63082, '2022-03-03', 2891, 60054, 4093, 33803, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63083, '2022-03-03', 2241, 60055, 4093, 3058, '-5.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 (63084, '2022-03-03', 2241, 60055, 4093, NULL, '6.0000', '6.5900', '6.5900', '9.0000', '9.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 (63085, '2022-03-03', 7491, 60056, 4093, NULL, '1.0000', '5.6000', '5.6000', '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 (63086, '2022-03-03', 8135, 60057, 4093, NULL, '1.0000', '5.4500', '5.4500', '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 (63087, '2022-03-03', 2069, 60058, 4093, 5571, '-3.0000', '2.0400', '2.0400', '9.5000', '9.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 (63088, '2022-03-03', 2069, 60058, 4093, NULL, '4.0000', '2.0400', '2.0400', '9.5000', '9.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 (63089, '2022-03-03', 7781, 60059, 4093, NULL, '3.0000', '4.2500', '4.2500', '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 (63090, '2022-03-03', 2242, 60060, 4093, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.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 (63091, '2022-03-03', 8203, 60061, 4093, NULL, '4.0000', '0.4000', '0.4000', '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 (63092, '2022-03-03', 7411, 60062, 4093, NULL, '2.0000', '1.3500', '1.3500', '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 (63093, '2022-03-03', 7514, 60063, 4094, NULL, '1.0000', '2.2500', '2.2500', '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 (63094, '2022-03-03', 9758, 60064, 4094, NULL, '1.0000', '3.1400', '3.1400', '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 (63095, '2022-03-03', 7317, 60065, 4094, NULL, '1.0000', '19.5500', '19.5500', '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 (63096, '2022-03-03', 2250, 60066, 4094, 48128, '1.0000', '6.9835', '6.9835', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63097, '2022-03-03', 9732, 60067, 4094, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63098, '2022-03-03', 9820, 60068, 4094, 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 (63099, '2022-03-03', 1935, 60069, 4094, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63100, '2022-03-03', 9747, 60070, 4094, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63101, '2022-03-03', 2293, 60071, 4094, NULL, '3.0000', '-15.8931', '-15.8931', '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 (63102, '2022-03-03', 2289, 60072, 4094, 49873, '4.0000', '0.2222', '0.2222', '0.5000', '0.5000', '2.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63103, '2022-03-03', 2543, 60073, 4094, 48867, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63104, '2022-03-03', 7482, 60074, 4094, NULL, '1.0000', '2.8136', '2.8136', '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 (63105, '2022-03-03', 7514, 60075, 4094, NULL, '1.0000', '2.2500', '2.2500', '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 (63106, '2022-03-03', 2221, 60076, 4094, 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 (63107, '2022-03-03', 8638, 60077, 4094, NULL, '1.0000', '0.5100', '0.5100', '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 (63108, '2022-03-03', 7743, 60078, 4094, NULL, '1.0000', '7.3900', '7.3900', '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 (63109, '2022-03-03', 2315, 60079, 4094, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '123.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63110, '2022-03-03', 7514, 60080, 4094, NULL, '3.0000', '2.2500', '2.2500', '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 (63111, '2022-03-03', 1493, 60081, 4094, 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 (63112, '2022-03-03', 2131, 60082, 4094, 42641, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63113, '2022-03-03', 2162, 60083, 4094, 23989, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '10.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 (63114, '2022-03-03', 8699, 60084, 4094, NULL, '1.0000', '6.3800', '6.3800', '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 (63115, '2022-03-03', 7741, 60085, 4094, NULL, '1.0000', '0.5684', '0.5684', '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 (63116, '2022-03-03', 1311, 60086, 4094, 49359, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '18.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63117, '2022-03-03', 2237, 60087, 4094, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63118, '2022-03-03', 1307, 60088, 4094, NULL, '2.0000', '0.6103', '0.6103', '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 (63119, '2022-03-03', 9272, 60089, 4094, NULL, '1.0000', '3.1000', '3.1000', '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 (63120, '2022-03-03', 2244, 60090, 4094, 43242, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63121, '2022-03-03', 2315, 60091, 4094, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '123.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63122, '2022-03-03', 7743, 60092, 4094, NULL, '1.0000', '7.3900', '7.3900', '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 (63123, '2022-03-03', 2893, 60093, 4094, 50084, '1.0000', '6.4400', '6.4400', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63124, '2022-03-03', 2673, 60094, 4094, 49322, '1.0000', '24.5000', '24.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63125, '2022-03-03', 7564, 60095, 4094, NULL, '1.0000', '0.6400', '0.6400', '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 (63126, '2022-03-03', 7385, 60096, 4094, 50524, '2.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63127, '2022-03-03', 9021, 60097, 4094, 50081, '1.0000', '6.9147', '6.9147', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63128, '2022-03-03', 9482, 60098, 4094, 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 (63129, '2022-03-03', 1665, 60099, 4094, 48596, '1.0000', '1.0999', '1.0999', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63130, '2022-03-03', 1871, 60100, 4094, NULL, '10.0000', '2.2081', '2.2081', '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 (63131, '2022-03-03', 2315, 60101, 4094, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '122.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63132, '2022-03-03', 7412, 60102, 4094, NULL, '2.0000', '1.5200', '1.5200', '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 (63133, '2022-03-03', 2315, 60103, 4094, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '122.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63134, '2022-03-03', 1840, 60104, 4094, NULL, '2.0000', '0.2400', '0.2400', '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 (63135, '2022-03-03', 2289, 60105, 4094, 49873, '2.0000', '0.2222', '0.2222', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63136, '2022-03-03', 9337, 60106, 4094, NULL, '3.0000', '5.7200', '5.7200', '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 (63137, '2022-03-03', 2546, 60107, 4095, NULL, '1.0000', '11.0000', '11.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 (63138, '2022-03-03', 2070, 60108, 4095, 49718, '1.0000', '2.2143', '2.2143', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63139, '2022-03-03', 1856, 60109, 4095, NULL, '1.0000', '5.5569', '5.5569', '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 (63140, '2022-03-03', 2758, 60110, 4095, 22379, '1.0000', '5.4000', '5.4000', '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 (63141, '2022-03-03', 7708, 60111, 4095, 45203, '1.0000', '6.3400', '6.3400', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63142, '2022-03-03', 7953, 60112, 4095, NULL, '1.0000', '6.0000', '6.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 (63143, '2022-03-03', 7954, 60113, 4096, NULL, '3.0000', '24.4161', '24.4161', '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 (63144, '2022-03-03', 9430, 60114, 4096, 30200, '1.0000', '40.9000', '40.9000', '54.0000', '54.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63145, '2022-03-03', 2972, 60115, 4096, 50472, '1.0000', '22.9325', '22.9325', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63146, '2022-03-03', 9736, 60116, 4096, 51011, '1.0000', '4.0135', '4.0135', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63147, '2022-03-03', 7641, 60117, 4096, NULL, '1.0000', '-543.6034', '-543.6034', '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 (63148, '2022-03-03', 8608, 60118, 4096, NULL, '1.0000', '5.7400', '5.7400', '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 (63149, '2022-03-03', 2506, 60119, 4096, 50974, '1.0000', '3.7803', '3.7803', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63150, '2022-03-03', 7724, 60120, 4096, 40417, '1.0000', '8.0001', '8.0001', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63151, '2022-03-03', 7724, 60120, 4096, NULL, '1.0000', '8.0001', '8.0001', '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 (63152, '2022-03-03', 8087, 60121, 4096, 42785, '1.0000', '16.3466', '16.3466', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63153, '2022-03-03', 1867, 60122, 4096, 50454, '1.0000', '11.8714', '11.8714', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63154, '2022-03-03', 7780, 60123, 4096, NULL, '1.0000', '-8.7461', '-8.7461', '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 (63155, '2022-03-03', 7728, 60124, 4096, 50306, '1.0000', '1.8605', '1.8605', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63156, '2022-03-03', 9579, 60125, 4096, 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 (63157, '2022-03-03', 8061, 60126, 4096, 50303, '1.0000', '113.6000', '113.6000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63158, '2022-03-03', 7635, 60127, 4096, 46904, '2.0000', '14.8224', '14.8224', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63159, '2022-03-03', 7428, 60128, 4096, 50471, '3.0000', '65.9358', '65.9358', '4.5000', '4.5000', '102.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63160, '2022-03-03', 9423, 60129, 4096, NULL, '1.0000', '1.6000', '1.6000', '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 (63161, '2022-03-03', 7368, 60130, 4096, 49290, '1.0000', '1.1446', '1.1446', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63162, '2022-03-03', 7750, 60131, 4096, NULL, '1.0000', '33.9800', '33.9800', '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 (63163, '2022-03-03', 7673, 60132, 4096, NULL, '1.0000', '7.6378', '7.6378', '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 (63164, '2022-03-03', 7514, 60133, 4096, NULL, '1.0000', '97.7006', '97.7006', '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 (63165, '2022-03-03', 9729, 60134, 4096, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63166, '2022-03-03', 9275, 60135, 4096, NULL, '2.0000', '6.3000', '6.3000', '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 (63167, '2022-03-03', 9724, 60136, 4096, 46153, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63168, '2022-03-03', 7709, 60137, 4096, NULL, '2.0000', '62.9674', '62.9674', '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 (63169, '2022-03-03', 9272, 60138, 4096, NULL, '1.0000', '3.1000', '3.1000', '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 (63170, '2022-03-03', 7741, 60139, 4096, 36081, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63171, '2022-03-03', 2768, 60140, 4096, 34521, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63172, '2022-03-03', 8254, 60141, 4096, 50049, '1.0000', '25.8883', '25.8883', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63173, '2022-03-03', 7787, 60142, 4096, NULL, '1.0000', '11.7735', '11.7735', '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 (63174, '2022-03-03', 9275, 60143, 4096, NULL, '2.0000', '6.3000', '6.3000', '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 (63175, '2022-03-03', 2315, 60144, 4096, NULL, '4.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (63176, '2022-03-03', 7674, 60145, 4096, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63177, '2022-03-03', 8539, 60146, 4096, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '50.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63178, '2022-03-03', 8359, 60147, 4096, 50046, '1.0000', '2068.5192', '2068.5192', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63179, '2022-03-03', 7664, 60148, 4096, NULL, '1.0000', '7.1799', '7.1799', '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 (63180, '2022-03-03', 2289, 60149, 4096, NULL, '4.0000', '0.9629', '0.9629', '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 (63181, '2022-03-03', 1521, 60150, 4096, 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 (63182, '2022-03-03', 7866, 60151, 4096, NULL, '2.0000', '2.5000', '2.5000', '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 (63183, '2022-03-03', 8810, 60152, 4096, NULL, '1.0000', '36.0605', '36.0605', '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 (63184, '2022-03-03', 9729, 60153, 4096, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63185, '2022-03-03', 2277, 60154, 4096, 48385, '1.0000', '0.7800', '0.7800', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63186, '2022-03-03', 7316, 60155, 4096, 50386, '5.0000', '0.8600', '0.8600', '1.2000', '1.2000', '21.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63187, '2022-03-03', 7675, 60156, 4096, NULL, '1.0000', '84.8590', '84.8590', '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 (63188, '2022-03-03', 9160, 60157, 4096, NULL, '1.0000', '41.6640', '41.6640', '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 (63189, '2022-03-03', 1446, 60158, 4096, 46916, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63190, '2022-03-03', 7491, 60159, 4096, 43071, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63191, '2022-03-03', 7346, 60160, 4096, 34524, '1.0000', '94.2800', '94.2800', '125.0000', '125.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63192, '2022-03-03', 2891, 60161, 4096, 37376, '1.0000', '9.4983', '9.4983', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63193, '2022-03-03', 9337, 60162, 4096, 48301, '1.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63194, '2022-03-03', 7694, 60163, 4096, NULL, '1.0000', '4.7900', '4.7900', '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 (63195, '2022-03-03', 9399, 60164, 4096, NULL, '2.0000', '0.9794', '0.9794', '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 (63196, '2022-03-03', 7547, 60165, 4096, NULL, '2.0000', '0.0000', '0.0000', '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 (63197, '2022-03-03', 2699, 60166, 4096, 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 (63198, '2022-03-03', 8449, 60167, 4096, 50056, '1.0000', '11.9000', '11.9000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63199, '2022-03-03', 8702, 60168, 4097, NULL, '1.0000', '3.6700', '3.6700', '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 (63200, '2022-03-03', 8769, 60169, 4097, 42766, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63201, '2022-03-03', 8745, 60170, 4097, NULL, '1.0000', '7.0560', '7.0560', '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 (63202, '2022-03-03', 7491, 60171, 4097, 43071, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63203, '2022-03-03', 9394, 60172, 4097, NULL, '1.0000', '5.5000', '5.5000', '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 (63204, '2022-03-03', 7675, 60173, 4097, NULL, '2.0000', '84.8590', '84.8590', '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 (63205, '2022-03-03', 8756, 60174, 4097, 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 (63206, '2022-03-03', 7606, 60175, 4097, 43113, '1.0000', '4.8600', '4.8600', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63207, '2022-03-03', 7825, 60176, 4097, NULL, '1.0000', '-20.7637', '-20.7637', '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 (63208, '2022-03-03', 9634, 60177, 4098, 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 (63209, '2022-03-03', 1502, 60178, 4098, 6307, '-3.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 (63210, '2022-03-03', 1502, 60178, 4098, NULL, '4.0000', '7.8000', '7.8000', '11.0000', '11.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 (63211, '2022-03-03', 2503, 60179, 4098, 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 (63212, '2022-03-03', 2285, 60180, 4098, 2945, '-38.0000', '35.8000', '35.8000', '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 (63213, '2022-03-03', 2285, 60180, 4098, NULL, '39.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63214, '2022-03-03', 1502, 60181, 4098, 6307, '-3.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 (63215, '2022-03-03', 1502, 60181, 4098, NULL, '4.0000', '7.8000', '7.8000', '11.0000', '11.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 (63216, '2022-03-03', 1409, 60182, 4098, 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 (63217, '2022-03-03', 1704, 60183, 4098, 6311, '-5.0000', '27.0900', '27.0900', '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 (63218, '2022-03-03', 1704, 60183, 4098, NULL, '6.0000', '27.0900', '27.0900', '36.0000', '36.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 (63219, '2022-03-03', 1837, 60184, 4098, NULL, '4.0000', '0.9642', '0.9642', '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 (63220, '2022-03-03', 2633, 60185, 4098, 17589, '-3.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 (63221, '2022-03-03', 2633, 60185, 4098, NULL, '4.0000', '3.5000', '3.5000', '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 (63222, '2022-03-03', 2315, 60186, 4098, 2735, '-181.0000', '0.3300', '0.3300', '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 (63223, '2022-03-03', 2315, 60186, 4098, NULL, '182.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-182.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63224, '2022-03-03', 1511, 60187, 4098, 13713, '-2.0000', '19.0000', '19.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 (63225, '2022-03-03', 1511, 60187, 4098, NULL, '3.0000', '19.0000', '19.0000', '33.0000', '33.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 (63226, '2022-03-03', 2039, 60188, 4098, 6391, '-3.0000', '9.5000', '9.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63227, '2022-03-03', 2039, 60188, 4098, NULL, '4.0000', '9.5000', '9.5000', '14.0000', '14.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 (63228, '2022-03-03', 3058, 60189, 4098, 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 (63229, '2022-03-03', 9547, 60190, 4098, 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 (63230, '2022-03-03', 2973, 60191, 4098, 22174, '-12.0000', '4.3000', '4.3000', '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 (63231, '2022-03-03', 2973, 60191, 4098, NULL, '14.0000', '4.3000', '4.3000', '3.0000', '3.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 (63232, '2022-03-03', 1812, 60192, 4098, 8224, '-71.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 (63233, '2022-03-03', 1812, 60192, 4098, NULL, '73.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63234, '2022-03-03', 7411, 60193, 4098, NULL, '1.0000', '1.3500', '1.3500', '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 (63235, '2022-03-03', 9160, 60194, 4098, NULL, '1.0000', '15.0000', '15.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 (63236, '2022-03-03', 2916, 60195, 4098, 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 (63237, '2022-03-03', 2379, 60196, 4098, 4032, '-45.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 (63238, '2022-03-03', 2379, 60196, 4098, NULL, '46.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63239, '2022-03-03', 1892, 60197, 4098, 5431, '-4.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 (63240, '2022-03-03', 1892, 60197, 4098, NULL, '5.0000', '90.0000', '90.0000', '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 (63241, '2022-03-03', 9818, 60198, 4098, NULL, '1.0000', '1.5000', '1.5000', '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 (63242, '2022-03-03', 2374, 60199, 4099, 49637, '1.0000', '6.1000', '6.1000', '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 (63243, '2022-03-03', 1529, 60200, 4099, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63244, '2022-03-03', 2299, 60201, 4099, 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 (63245, '2022-03-03', 9272, 60202, 4099, NULL, '1.0000', '3.1000', '3.1000', '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 (63246, '2022-03-03', 1529, 60203, 4099, 50073, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63247, '2022-03-03', 8638, 60204, 4099, NULL, '2.0000', '0.5100', '0.5100', '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 (63248, '2022-03-03', 9762, 60205, 4099, 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 (63249, '2022-03-03', 1388, 60206, 4099, 48998, '1.0000', '5.5013', '5.5013', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63250, '2022-03-03', 1493, 60207, 4099, 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 (63251, '2022-03-03', 2906, 60208, 4099, NULL, '1.0000', '2.6000', '2.6000', '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 (63252, '2022-03-03', 1837, 60209, 4099, NULL, '2.0000', '1.5967', '1.5967', '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 (63253, '2022-03-03', 2060, 60210, 4099, NULL, '2.0000', '0.3295', '0.3295', '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 (63254, '2022-03-03', 7981, 60211, 4099, NULL, '10.0000', '6.0000', '6.0000', '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 (63255, '2022-03-03', 7472, 60212, 4099, NULL, '1.0000', '4.2055', '4.2055', '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 (63256, '2022-03-03', 2318, 60213, 4099, 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 (63257, '2022-03-03', 2989, 60214, 4099, 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 (63258, '2022-03-03', 2293, 60215, 4099, NULL, '2.0000', '-15.8931', '-15.8931', '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 (63259, '2022-03-03', 8200, 60216, 4099, NULL, '2.0000', '8.5500', '8.5500', '8.5000', '8.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 (63260, '2022-03-03', 2379, 60217, 4099, NULL, '1.0000', '1.0877', '1.0877', '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 (63261, '2022-03-03', 1812, 60218, 4099, NULL, '1.0000', '7.9262', '7.9262', '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 (63262, '2022-03-03', 8444, 60219, 4099, 49349, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63263, '2022-03-03', 1910, 60220, 4099, 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 (63264, '2022-03-03', 1704, 60221, 4099, NULL, '1.0000', '27.2300', '27.2300', '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 (63265, '2022-03-03', 9806, 60222, 4099, 50121, '1.0000', '1.0800', '1.0800', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63266, '2022-03-03', 1809, 60223, 4099, 50236, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63267, '2022-03-03', 7544, 60224, 4099, 49872, '2.0000', '-2.5801', '-2.5801', '0.5000', '0.5000', '64.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63268, '2022-03-03', 2289, 60225, 4099, NULL, '2.0000', '0.2222', '0.2222', '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 (63269, '2022-03-03', 2248, 60226, 4099, 41414, '1.0000', '3.0592', '3.0592', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63270, '2022-03-03', 2454, 60227, 4099, 30701, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63271, '2022-03-03', 7514, 60228, 4099, NULL, '1.0000', '2.2500', '2.2500', '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 (63272, '2022-03-03', 1771, 60229, 4099, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63273, '2022-03-03', 2169, 60230, 4099, NULL, '1.0000', '0.7121', '0.7121', '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 (63274, '2022-03-03', 7391, 60231, 4099, NULL, '1.0000', '15.6000', '15.6000', '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 (63275, '2022-03-03', 1804, 60232, 4099, 48590, '1.0000', '4.3180', '4.3180', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63276, '2022-03-03', 7411, 60233, 4099, NULL, '1.0000', '1.3013', '1.3013', '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 (63277, '2022-03-03', 1999, 60234, 4099, 49625, '1.0000', '6.8730', '6.8730', '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 (63278, '2022-03-03', 2989, 60235, 4099, 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 (63279, '2022-03-03', 2169, 60236, 4099, NULL, '1.0000', '0.7121', '0.7121', '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 (63280, '2022-03-03', 2695, 60237, 4099, NULL, '2.0000', '2.0000', '2.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 (63281, '2022-03-03', 1855, 60238, 4099, NULL, '1.0000', '1.5003', '1.5003', '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 (63282, '2022-03-03', 8153, 60239, 4099, NULL, '1.0000', '0.3200', '0.3200', '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 (63283, '2022-03-03', 7411, 60240, 4099, NULL, '1.0000', '1.3013', '1.3013', '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 (63284, '2022-03-03', 8984, 60241, 4099, NULL, '1.0000', '-100.8495', '-100.8495', '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 (63285, '2022-03-03', 9695, 60242, 4099, 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 (63286, '2022-03-03', 2643, 60243, 4099, 49624, '1.0000', '0.8700', '0.8700', '1.2000', '1.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 (63287, '2022-03-03', 7385, 60244, 4100, 49078, '20.0000', '1.8552', '1.8552', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63288, '2022-03-03', 1839, 60245, 4100, 50897, '1.0000', '7.4147', '7.4147', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63289, '2022-03-03', 1720, 60246, 4100, 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 (63290, '2022-03-03', 2135, 60247, 4100, 16894, '1.0000', '1.2424', '1.2424', '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 (63291, '2022-03-03', 2821, 60248, 4100, 50896, '1.0000', '3.4420', '3.4420', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63292, '2022-03-03', 7482, 60249, 4100, NULL, '1.0000', '3.0500', '3.0500', '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 (63293, '2022-03-03', 2741, 60250, 4100, 16783, '2.0000', '40.6400', '40.6400', '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 (63294, '2022-03-03', 7915, 60251, 4100, 46622, '3.0000', '2.8000', '2.8000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63295, '2022-03-03', 1326, 60252, 4100, 49103, '2.0000', '2.7355', '2.7355', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63296, '2022-03-03', 7756, 60253, 4100, NULL, '1.0000', '26.9296', '26.9296', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63297, '2022-03-03', 2638, 60254, 4100, 24016, '1.0000', '19.6200', '19.6200', '27.0000', '27.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 (63298, '2022-03-03', 1888, 60255, 4100, 50880, '1.0000', '16.2377', '16.2377', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63299, '2022-03-03', 1311, 60256, 4100, 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 (63300, '2022-03-03', 2104, 60257, 4100, 29846, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '194.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63301, '2022-03-03', 3029, 60258, 4100, 49991, '1.0000', '6.5895', '6.5895', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63302, '2022-03-03', 8743, 60259, 4100, 49482, '1.0000', '11.0556', '11.0556', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63303, '2022-03-03', 1584, 60260, 4100, 50090, '1.0000', '6.1043', '6.1043', '9.0000', '9.0000', '22.0000', 1, 0, NULL, 406);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63304, '2022-03-03', 1583, 60261, 4100, 45621, '1.0000', '56.3560', '56.3560', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63305, '2022-03-03', 9731, 60262, 4100, 45993, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 337);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63306, '2022-03-03', 9734, 60263, 4100, 50862, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '99.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63307, '2022-03-03', 1602, 60264, 4100, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63308, '2022-03-03', 1812, 60265, 4100, 50930, '1.0000', '7.9743', '7.9743', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63309, '2022-03-03', 9629, 60266, 4100, 40609, '3.0000', '22.0000', '22.0000', '9.3000', '9.3000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63310, '2022-03-03', 9629, 60266, 4100, NULL, '1.0000', '22.0000', '22.0000', '9.3000', '9.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 (63311, '2022-03-03', 1851, 60267, 4100, 50915, '1.0000', '12.9402', '12.9402', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63312, '2022-03-03', 8124, 60268, 4100, NULL, '1.0000', '18.0000', '18.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 (63313, '2022-03-03', 8745, 60269, 4100, 40378, '1.0000', '8.5371', '8.5371', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63314, '2022-03-03', 2317, 60270, 4100, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '29.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63315, '2022-03-03', 2221, 60271, 4100, 50865, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63316, '2022-03-03', 2662, 60272, 4100, 46617, '1.0000', '4.6731', '4.6731', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63317, '2022-03-04', 1875, 60273, 4101, 46625, '10.0000', '127.6922', '127.6922', '3.6000', '3.6000', '30.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63318, '2022-03-04', 1481, 60274, 4101, 49150, '1.0000', '48.1500', '48.1500', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63319, '2022-03-04', 2858, 60275, 4101, 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 (63320, '2022-03-04', 2315, 60276, 4101, 3069, '3.0000', '0.3300', '0.3300', '0.8000', '0.8000', '187.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63321, '2022-03-04', 9517, 60277, 4101, 44045, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63322, '2022-03-04', 1620, 60278, 4101, 50922, '8.0000', '2.2300', '2.2300', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63323, '2022-03-04', 2259, 60279, 4101, 50870, '1.0000', '20.4604', '20.4604', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63324, '2022-03-04', 1342, 60280, 4102, 46074, '1.0000', '11.8062', '11.8062', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63325, '2022-03-04', 1947, 60281, 4102, 47833, '1.0000', '3.2803', '3.2803', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 348);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63326, '2022-03-04', 1855, 60282, 4102, 46773, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63327, '2022-03-04', 2990, 60283, 4102, 46050, '1.0000', '4.1906', '4.1906', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63328, '2022-03-04', 8184, 60284, 4102, 50904, '10.0000', '2.4000', '2.4000', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63329, '2022-03-04', 1533, 60285, 4102, 50923, '2.0000', '3.4743', '3.4743', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63330, '2022-03-04', 2169, 60286, 4102, 45082, '2.0000', '1.1531', '1.1531', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63331, '2022-03-04', 1609, 60287, 4102, 4994, '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 (63332, '2022-03-04', 9734, 60288, 4102, 50862, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63333, '2022-03-04', 2342, 60289, 4102, 49131, '10.0000', '1.9268', '1.9268', '2.7000', '2.7000', '10.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63334, '2022-03-04', 1435, 60290, 4102, NULL, '1.0000', '18.5000', '18.5000', '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 (63335, '2022-03-04', 1988, 60291, 4102, 6455, '1.0000', '5.0000', '5.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 (63336, '2022-03-04', 2240, 60292, 4102, 49047, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63337, '2022-03-04', 1346, 60293, 4102, 46772, '10.0000', '0.9485', '0.9485', '1.5000', '1.5000', '136.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63338, '2022-03-04', 9794, 60294, 4102, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '93.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63339, '2022-03-04', 2267, 60295, 4102, 32005, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63340, '2022-03-04', 7318, 60296, 4102, 50934, '1.0000', '10.4772', '10.4772', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63341, '2022-03-04', 9735, 60297, 4102, 45988, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 337);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63342, '2022-03-04', 9089, 60298, 4102, 49479, '1.0000', '4.2235', '4.2235', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63343, '2022-03-04', 1409, 60299, 4102, 50887, '1.0000', '13.0657', '13.0657', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63344, '2022-03-04', 1863, 60300, 4102, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63345, '2022-03-04', 2317, 60301, 4102, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '28.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63346, '2022-03-04', 9750, 60302, 4102, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '41.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63347, '2022-03-04', 9734, 60303, 4102, 50862, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63348, '2022-03-04', 9520, 60304, 4102, 34702, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63349, '2022-03-04', 2229, 60305, 4102, 49412, '1.0000', '24.9091', '24.9091', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63350, '2022-03-04', 1872, 60306, 4102, 50860, '1.0000', '9.6948', '9.6948', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63351, '2022-03-04', 2607, 60307, 4102, 42956, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '11.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63352, '2022-03-04', 3080, 60308, 4102, 27335, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63353, '2022-03-04', 8146, 60309, 4102, 49111, '1.0000', '4.4100', '4.4100', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63354, '2022-03-04', 7593, 60310, 4102, 45105, '1.0000', '2.4500', '2.4500', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63355, '2022-03-04', 2098, 60311, 4102, 6010, '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 (63356, '2022-03-04', 7741, 60312, 4102, 50938, '1.0000', '48.6292', '48.6292', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63357, '2022-03-04', 2893, 60313, 4103, 50878, '1.0000', '6.1222', '6.1222', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63358, '2022-03-04', 2534, 60314, 4103, 6126, '1.0000', '25.0000', '25.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 (63359, '2022-03-04', 2530, 60315, 4103, 6128, '1.0000', '22.0000', '22.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 (63360, '2022-03-04', 2315, 60316, 4103, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '186.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63361, '2022-03-04', 1863, 60317, 4103, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63362, '2022-03-04', 1425, 60318, 4103, 50925, '1.0000', '7.0215', '7.0215', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63363, '2022-03-04', 9727, 60319, 4103, 50886, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63364, '2022-03-04', 1971, 60320, 4103, 40370, '1.0000', '11.0000', '11.0000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63365, '2022-03-04', 2237, 60321, 4103, 46708, '1.0000', '1.4654', '1.4654', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63366, '2022-03-04', 1863, 60322, 4103, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63367, '2022-03-04', 2607, 60323, 4103, 42956, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '9.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63368, '2022-03-04', 1502, 60324, 4103, 46563, '1.0000', '-13.4526', '-13.4526', '11.0000', '11.0000', '13.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63369, '2022-03-04', 2020, 60325, 4103, 50868, '1.0000', '4.7498', '4.7498', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63370, '2022-03-04', 1947, 60326, 4103, 47833, '1.0000', '3.2803', '3.2803', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 348);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63371, '2022-03-04', 2411, 60327, 4103, 45089, '1.0000', '1.3762', '1.3762', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63372, '2022-03-04', 1863, 60328, 4103, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63373, '2022-03-04', 1316, 60329, 4103, 49139, '1.0000', '6.3000', '6.3000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63374, '2022-03-04', 9740, 60330, 4103, 46037, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63375, '2022-03-04', 1425, 60331, 4103, 50925, '1.0000', '7.0215', '7.0215', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63376, '2022-03-04', 7638, 60332, 4103, 44598, '1.0000', '1.1651', '1.1651', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63377, '2022-03-04', 9695, 60333, 4103, 49478, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63378, '2022-03-04', 9735, 60334, 4103, 45988, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 337);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63379, '2022-03-04', 2354, 60335, 4103, 49994, '1.0000', '5.2900', '5.2900', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63380, '2022-03-04', 2286, 60336, 4103, 49547, '1.0000', '4.3959', '4.3959', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63381, '2022-03-04', 1666, 60337, 4103, 49241, '2.0000', '47.1662', '47.1662', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63382, '2022-03-04', 2916, 60338, 4104, 49229, '1.0000', '14.3789', '14.3789', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63383, '2022-03-04', 7565, 60339, 4104, NULL, '2.0000', '0.2000', '0.2000', '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 (63384, '2022-03-04', 2169, 60340, 4104, 45082, '2.0000', '1.1531', '1.1531', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63385, '2022-03-04', 2315, 60341, 4104, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '185.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63386, '2022-03-04', 7781, 60342, 4104, NULL, '3.0000', '4.2500', '4.2500', '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 (63387, '2022-03-04', 7612, 60343, 4104, NULL, '2.0000', '46.0000', '46.0000', '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 (63388, '2022-03-04', 9729, 60344, 4104, 46048, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63389, '2022-03-04', 1868, 60345, 4104, 4997, '1.0000', '4.0300', '4.0300', '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 (63390, '2022-03-04', 2270, 60346, 4104, 50911, '1.0000', '2.6953', '2.6953', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63391, '2022-03-04', 9747, 60347, 4104, 49848, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63392, '2022-03-04', 9821, 60348, 4104, 50873, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63393, '2022-03-04', 2066, 60349, 4104, 5494, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '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 (63394, '2022-03-04', 9598, 60350, 4104, 50872, '1.0000', '4.2400', '4.2400', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63395, '2022-03-04', 2274, 60351, 4104, 24095, '1.0000', '3.9800', '3.9800', '5.5000', '5.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 (63396, '2022-03-04', 1450, 60352, 4104, 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 (63397, '2022-03-04', 2215, 60353, 4105, 39188, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63398, '2022-03-04', 1545, 60354, 4105, 1550, '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 (63399, '2022-03-04', 7612, 60355, 4105, NULL, '2.0000', '46.0000', '46.0000', '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 (63400, '2022-03-04', 1674, 60356, 4105, 49556, '1.0000', '14.5864', '14.5864', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63401, '2022-03-04', 2270, 60357, 4105, 50911, '1.0000', '2.6953', '2.6953', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63402, '2022-03-04', 1867, 60358, 4105, NULL, '1.0000', '9.7973', '9.7973', '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 (63403, '2022-03-04', 1450, 60359, 4106, 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 (63404, '2022-03-04', 2295, 60360, 4106, 3134, '3.0000', '0.7000', '0.7000', '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 (63405, '2022-03-04', 1580, 60361, 4106, 49469, '2.0000', '1.1133', '1.1133', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63406, '2022-03-04', 8974, 60362, 4106, NULL, '1.0000', '5.4000', '5.4000', '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 (63407, '2022-03-04', 9736, 60363, 4106, 46030, '1.0000', '3.9100', '3.9100', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63408, '2022-03-04', 7857, 60364, 4107, NULL, '1.0000', '15.1300', '15.1300', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63409, '2022-03-04', 1505, 60365, 4107, 49121, '1.0000', '53.3351', '53.3351', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63410, '2022-03-04', 2315, 60366, 4107, 3069, '5.0000', '0.3300', '0.3300', '0.8000', '0.8000', '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 (63411, '2022-03-04', 2068, 60367, 4108, NULL, '1.0000', '11.8658', '11.8658', '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 (63412, '2022-03-04', 2283, 60368, 4108, 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 (63413, '2022-03-04', 1783, 60369, 4108, 50119, '2.0000', '40.5357', '40.5357', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63414, '2022-03-04', 2315, 60370, 4108, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '116.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63415, '2022-03-04', 2169, 60371, 4108, NULL, '1.0000', '0.7121', '0.7121', '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 (63416, '2022-03-04', 9695, 60372, 4108, NULL, '1.0000', '4.5000', '4.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 (63417, '2022-03-04', 3058, 60373, 4108, NULL, '1.0000', '2.3000', '2.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 (63418, '2022-03-04', 1564, 60374, 4108, NULL, '5.0000', '3.4988', '3.4988', '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 (63419, '2022-03-04', 2416, 60375, 4108, 50534, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63420, '2022-03-04', 1771, 60376, 4108, 48459, '1.0000', '5.7319', '5.7319', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63421, '2022-03-04', 9738, 60377, 4108, NULL, '1.0000', '5.9000', '5.9000', '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 (63422, '2022-03-04', 2254, 60378, 4108, NULL, '1.0000', '17.9400', '17.9400', '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 (63423, '2022-03-04', 1695, 60379, 4108, NULL, '1.0000', '22.6608', '22.6608', '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 (63424, '2022-03-04', 9482, 60380, 4108, 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 (63425, '2022-03-04', 2091, 60381, 4108, NULL, '1.0000', '28.0000', '28.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 (63426, '2022-03-04', 2916, 60382, 4108, NULL, '1.0000', '11.2778', '11.2778', '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 (63427, '2022-03-04', 2221, 60383, 4108, 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 (63428, '2022-03-04', 2948, 60384, 4108, 48640, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63429, '2022-03-04', 1785, 60385, 4108, 49370, '1.0000', '15.6346', '15.6346', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63430, '2022-03-04', 1564, 60386, 4108, NULL, '2.0000', '3.4988', '3.4988', '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 (63431, '2022-03-04', 8638, 60387, 4108, NULL, '1.0000', '0.5100', '0.5100', '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 (63432, '2022-03-04', 1947, 60388, 4108, 34039, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63433, '2022-03-04', 1848, 60389, 4109, NULL, '10.0000', '0.4200', '0.4200', '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 (63434, '2022-03-04', 7547, 60390, 4109, NULL, '2.0000', '0.0000', '0.0000', '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 (63435, '2022-03-04', 7460, 60391, 4109, NULL, '4.0000', '2.5000', '2.5000', '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 (63436, '2022-03-04', 8539, 60392, 4109, NULL, '2.0000', '31.8000', '31.8000', '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 (63437, '2022-03-04', 8180, 60393, 4109, NULL, '3.0000', '4.4000', '4.4000', '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 (63438, '2022-03-04', 8288, 60394, 4109, NULL, '5.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (63439, '2022-03-04', 2315, 60395, 4109, 2735, '-182.0000', '0.3300', '0.3300', '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 (63440, '2022-03-04', 2315, 60395, 4109, NULL, '183.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-183.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63441, '2022-03-04', 7642, 60396, 4109, NULL, '1.0000', '5.9200', '5.9200', '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 (63442, '2022-03-04', 7548, 60397, 4109, NULL, '1.0000', '0.3400', '0.3400', '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 (63443, '2022-03-04', 7532, 60398, 4109, NULL, '1.0000', '20.6000', '20.6000', '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 (63444, '2022-03-04', 9143, 60399, 4109, NULL, '1.0000', '10.8000', '10.8000', '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 (63445, '2022-03-04', 7368, 60400, 4109, NULL, '1.0000', '14.7500', '14.7500', '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 (63446, '2022-03-04', 7675, 60401, 4109, NULL, '1.0000', '11.4300', '11.4300', '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 (63447, '2022-03-04', 7506, 60402, 4109, NULL, '1.0000', '15.0000', '15.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 (63448, '2022-03-04', 8473, 60403, 4109, NULL, '3.0000', '7.0000', '7.0000', '9.5000', '9.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 (63449, '2022-03-04', 1672, 60404, 4109, 7384, '-74.0000', '2.8700', '2.8700', '4.2000', '4.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 (63450, '2022-03-04', 1672, 60404, 4109, NULL, '84.0000', '2.8700', '2.8700', '4.2000', '4.2000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63451, '2022-03-04', 7774, 60405, 4109, NULL, '1.0000', '3.3000', '3.3000', '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 (63452, '2022-03-04', 7408, 60406, 4109, NULL, '1.0000', '5.2800', '5.2800', '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 (63453, '2022-03-04', 8077, 60407, 4109, 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 (63454, '2022-03-04', 7785, 60408, 4109, 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 (63455, '2022-03-04', 8638, 60409, 4109, NULL, '1.0000', '0.5100', '0.5100', '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 (63456, '2022-03-04', 7645, 60410, 4109, NULL, '1.0000', '23.7800', '23.7800', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63457, '2022-03-04', 1431, 60411, 4109, 22352, '1.0000', '11.0902', '11.0902', '14.0000', '14.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 (63458, '2022-03-04', 1314, 60412, 4109, 2710, '-2.0000', '1.2000', '1.2000', '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 (63459, '2022-03-04', 1314, 60412, 4109, NULL, '3.0000', '1.2000', '1.2000', '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 (63460, '2022-03-04', 8462, 60413, 4109, NULL, '1.0000', '7.0400', '7.0400', '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 (63461, '2022-03-04', 7876, 60414, 4109, 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 (63462, '2022-03-04', 7637, 60415, 4109, NULL, '1.0000', '7.3300', '7.3300', '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 (63463, '2022-03-04', 9513, 60416, 4109, 33798, '1.0000', '6.8300', '6.8300', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63464, '2022-03-04', 2289, 60417, 4109, 2949, '-75.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 (63465, '2022-03-04', 2289, 60417, 4109, NULL, '77.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63466, '2022-03-04', 9797, 60418, 4109, 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 (63467, '2022-03-04', 1577, 60419, 4109, 7596, '-9.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 (63468, '2022-03-04', 1577, 60419, 4109, NULL, '10.0000', '2.5000', '2.5000', '3.5000', '3.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 (63469, '2022-03-04', 9794, 60420, 4109, NULL, '2.0000', '1.0800', '1.0800', '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 (63470, '2022-03-04', 1935, 60421, 4109, 5586, '-58.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 (63471, '2022-03-04', 1935, 60421, 4109, NULL, '59.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63472, '2022-03-04', 8679, 60422, 4109, NULL, '1.0000', '28.0000', '28.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 (63473, '2022-03-04', 7715, 60423, 4109, NULL, '1.0000', '1.8900', '1.8900', '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 (63474, '2022-03-04', 9620, 60424, 4109, 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 (63475, '2022-03-04', 7514, 60425, 4109, NULL, '1.0000', '2.2500', '2.2500', '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 (63476, '2022-03-04', 7317, 60426, 4109, NULL, '1.0000', '19.5500', '19.5500', '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 (63477, '2022-03-04', 9644, 60427, 4109, NULL, '1.0000', '3.6000', '3.6000', '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 (63478, '2022-03-04', 9213, 60428, 4109, NULL, '1.0000', '5.4000', '5.4000', '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 (63479, '2022-03-04', 8417, 60429, 4109, 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 (63480, '2022-03-04', 7728, 60430, 4109, NULL, '1.0000', '1.8000', '1.8000', '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 (63481, '2022-03-04', 2607, 60431, 4109, NULL, '4.0000', '1.4000', '1.4000', '1.7000', '1.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 (63482, '2022-03-04', 7558, 60432, 4109, 33814, '10.0000', '1.9700', '1.9700', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63483, '2022-03-04', 1840, 60433, 4109, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (63484, '2022-03-04', 1841, 60434, 4109, NULL, '2.0000', '142.5780', '142.5780', '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 (63485, '2022-03-04', 7848, 60435, 4109, NULL, '1.0000', '1.3500', '1.3500', '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 (63486, '2022-03-04', 2749, 60436, 4110, 48040, '1.0000', '27.0000', '27.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63487, '2022-03-04', 7506, 60437, 4110, NULL, '1.0000', '15.0000', '15.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 (63488, '2022-03-04', 8407, 60438, 4110, 48379, '1.0000', '1.6726', '1.6726', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63489, '2022-03-04', 7544, 60439, 4110, NULL, '4.0000', '9.4300', '9.4300', '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 (63490, '2022-03-04', 9740, 60440, 4110, 46921, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63491, '2022-03-04', 8915, 60441, 4110, NULL, '1.0000', '63.4955', '63.4955', '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 (63492, '2022-03-04', 8949, 60442, 4110, 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 (63493, '2022-03-04', 7881, 60443, 4110, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63494, '2022-03-04', 7889, 60444, 4110, NULL, '2.0000', '-8.6571', '-8.6571', '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 (63495, '2022-03-04', 7980, 60445, 4110, NULL, '2.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63496, '2022-03-04', 7609, 60446, 4110, NULL, '1.0000', '4.4421', '4.4421', '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 (63497, '2022-03-04', 7641, 60447, 4110, NULL, '1.0000', '-543.6034', '-543.6034', '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 (63498, '2022-03-04', 9191, 60448, 4110, 48816, '2.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63499, '2022-03-04', 9740, 60449, 4110, 46921, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63500, '2022-03-04', 8341, 60450, 4110, NULL, '1.0000', '30.7381', '30.7381', '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 (63501, '2022-03-04', 7788, 60451, 4110, NULL, '4.0000', '21.0000', '21.0000', '28.0000', '28.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 (63502, '2022-03-04', 9178, 60452, 4110, 46013, '1.0000', '4.2725', '4.2725', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63503, '2022-03-04', 2733, 60453, 4110, 50699, '1.0000', '64.0000', '64.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63504, '2022-03-04', 7609, 60454, 4110, NULL, '1.0000', '4.4421', '4.4421', '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 (63505, '2022-03-04', 7704, 60455, 4110, NULL, '2.0000', '-1.5625', '-1.5625', '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 (63506, '2022-03-04', 9740, 60456, 4110, 46921, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63507, '2022-03-04', 7750, 60457, 4110, NULL, '1.0000', '33.9800', '33.9800', '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 (63508, '2022-03-04', 1841, 60458, 4110, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63509, '2022-03-04', 8101, 60459, 4110, NULL, '2.0000', '21.7000', '21.7000', '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 (63510, '2022-03-04', 9740, 60460, 4110, 46921, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63511, '2022-03-04', 7886, 60461, 4110, NULL, '1.0000', '6.7841', '6.7841', '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 (63512, '2022-03-04', 2965, 60462, 4110, NULL, '3.0000', '7.5920', '7.5920', '7.0000', '7.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 (63513, '2022-03-04', 2243, 60463, 4110, 36059, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63514, '2022-03-04', 7764, 60464, 4110, NULL, '1.0000', '12.0300', '12.0300', '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 (63515, '2022-03-04', 1340, 60465, 4110, 49280, '1.0000', '4.3962', '4.3962', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63516, '2022-03-04', 2297, 60466, 4110, NULL, '1.0000', '7.9071', '7.9071', '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 (63517, '2022-03-04', 8065, 60467, 4110, NULL, '1.0000', '32.0000', '32.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 (63518, '2022-03-04', 7952, 60468, 4110, NULL, '1.0000', '62.3792', '62.3792', '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 (63519, '2022-03-04', 7821, 60469, 4110, 50810, '1.0000', '10.2240', '10.2240', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 418);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63520, '2022-03-04', 9337, 60470, 4110, 48301, '10.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63521, '2022-03-04', 8000, 60471, 4110, NULL, '3.0000', '439.7927', '439.7927', '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 (63522, '2022-03-04', 7675, 60472, 4110, NULL, '1.0000', '84.8590', '84.8590', '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 (63523, '2022-03-04', 7514, 60473, 4110, NULL, '1.0000', '97.7006', '97.7006', '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 (63524, '2022-03-04', 7507, 60474, 4110, NULL, '3.0000', '6.5000', '6.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 (63525, '2022-03-04', 2315, 60475, 4110, NULL, '1.0000', '0.8863', '0.8863', '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 (63526, '2022-03-04', 7592, 60476, 4110, 50463, '1.0000', '5.4004', '5.4004', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63527, '2022-03-04', 7509, 60477, 4110, 50686, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63528, '2022-03-04', 7564, 60478, 4110, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63529, '2022-03-04', 1812, 60479, 4111, 50930, '1.0000', '7.9743', '7.9743', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63530, '2022-03-04', 2657, 60480, 4111, 49178, '1.0000', '0.5900', '0.5900', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63531, '2022-03-04', 2858, 60481, 4111, 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 (63532, '2022-03-04', 1328, 60482, 4111, 49464, '1.0000', '3.8357', '3.8357', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63533, '2022-03-04', 1665, 60483, 4111, 50867, '1.0000', '1.1792', '1.1792', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63534, '2022-03-04', 7744, 60484, 4111, NULL, '1.0000', '2.9400', '2.9400', '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 (63535, '2022-03-04', 2080, 60485, 4111, 46042, '1.0000', '11.4167', '11.4167', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63536, '2022-03-04', 1863, 60486, 4111, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63537, '2022-03-04', 9643, 60487, 4111, 41992, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63538, '2022-03-04', 2130, 60488, 4111, 4402, '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 (63539, '2022-03-04', 1744, 60489, 4111, 50895, '1.0000', '33.2600', '33.2600', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63540, '2022-03-04', 1602, 60490, 4111, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63541, '2022-03-04', 2169, 60491, 4111, 45082, '2.0000', '1.1531', '1.1531', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63542, '2022-03-04', 1936, 60492, 4111, 5606, '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 (63543, '2022-03-04', 2921, 60493, 4111, 18794, '1.0000', '4.9000', '4.9000', '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 (63544, '2022-03-04', 7641, 60494, 4112, NULL, '2.0000', '-543.6034', '-543.6034', '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 (63545, '2022-03-04', 8254, 60495, 4112, 50049, '1.0000', '25.8883', '25.8883', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63546, '2022-03-04', 7712, 60496, 4112, NULL, '2.0000', '-94.6722', '-94.6722', '35.0000', '35.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 (63547, '2022-03-04', 9756, 60497, 4112, NULL, '1.0000', '52.0000', '52.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 (63548, '2022-03-04', 7641, 60498, 4112, NULL, '1.0000', '-543.6034', '-543.6034', '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 (63549, '2022-03-04', 8607, 60499, 4112, 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 (63550, '2022-03-04', 7363, 60500, 4112, NULL, '1.0000', '26.0000', '26.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 (63551, '2022-03-04', 7544, 60501, 4112, NULL, '2.0000', '9.4300', '9.4300', '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 (63552, '2022-03-04', 2104, 60502, 4112, NULL, '2.0000', '0.2000', '0.2000', '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 (63553, '2022-03-04', 7636, 60503, 4112, 48834, '3.0000', '11.8700', '11.8700', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63554, '2022-03-04', 9107, 60504, 4112, NULL, '1.0000', '3.4000', '3.4000', '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 (63555, '2022-03-04', 1805, 60505, 4112, 48074, '1.0000', '4.9973', '4.9973', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63556, '2022-03-04', 8200, 60506, 4112, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (63557, '2022-03-04', 7514, 60507, 4113, NULL, '1.0000', '97.7006', '97.7006', '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 (63558, '2022-03-04', 1528, 60508, 4114, 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 (63559, '2022-03-04', 8740, 60509, 4114, NULL, '2.0000', '1.8343', '1.8343', '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 (63560, '2022-03-04', 9683, 60510, 4114, 51021, '1.0000', '3.2255', '3.2255', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63561, '2022-03-04', 2346, 60511, 4114, NULL, '2.0000', '5.8000', '5.8000', '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 (63562, '2022-03-04', 9700, 60512, 4114, 44154, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63563, '2022-03-04', 1961, 60513, 4114, 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 (63564, '2022-03-04', 2237, 60514, 4114, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63565, '2022-03-04', 2821, 60515, 4114, NULL, '1.0000', '3.4701', '3.4701', '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 (63566, '2022-03-04', 7411, 60516, 4114, NULL, '1.0000', '1.3013', '1.3013', '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 (63567, '2022-03-04', 1425, 60517, 4114, NULL, '1.0000', '7.5328', '7.5328', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63568, '2022-03-04', 2315, 60518, 4114, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '115.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63569, '2022-03-04', 9695, 60519, 4114, NULL, '1.0000', '4.5000', '4.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 (63570, '2022-03-04', 2643, 60520, 4114, 49624, '1.0000', '0.8700', '0.8700', '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 (63571, '2022-03-04', 7472, 60521, 4114, NULL, '1.0000', '4.2055', '4.2055', '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 (63572, '2022-03-04', 7980, 60522, 4114, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (63573, '2022-03-04', 7411, 60523, 4114, NULL, '1.0000', '1.3013', '1.3013', '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 (63574, '2022-03-04', 7482, 60524, 4114, NULL, '1.0000', '2.8136', '2.8136', '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 (63575, '2022-03-04', 2169, 60525, 4114, NULL, '1.0000', '0.7121', '0.7121', '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 (63576, '2022-03-04', 9012, 60526, 4114, NULL, '1.0000', '24.0000', '24.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 (63577, '2022-03-04', 7411, 60527, 4114, NULL, '3.0000', '1.3013', '1.3013', '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 (63578, '2022-03-04', 7472, 60528, 4114, NULL, '1.0000', '4.2055', '4.2055', '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 (63579, '2022-03-04', 1592, 60529, 4114, 50229, '1.0000', '33.9415', '33.9415', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63580, '2022-03-04', 1690, 60530, 4114, 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 (63581, '2022-03-04', 1810, 60531, 4114, 48619, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63582, '2022-03-04', 7482, 60532, 4114, NULL, '1.0000', '2.8136', '2.8136', '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 (63583, '2022-03-04', 1910, 60533, 4114, 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 (63584, '2022-03-04', 1330, 60534, 4114, 19334, '1.0000', '2.8000', '2.8000', '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 (63585, '2022-03-04', 7411, 60535, 4114, NULL, '1.0000', '1.3013', '1.3013', '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 (63586, '2022-03-04', 7406, 60536, 4114, NULL, '1.0000', '2.3750', '2.3750', '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 (63587, '2022-03-04', 7411, 60537, 4114, NULL, '1.0000', '1.3013', '1.3013', '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 (63588, '2022-03-04', 2379, 60538, 4114, NULL, '1.0000', '1.0877', '1.0877', '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 (63589, '2022-03-04', 1944, 60539, 4114, 48960, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63590, '2022-03-04', 2237, 60540, 4114, 49715, '1.0000', '207.0499', '207.0499', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63591, '2022-03-04', 2250, 60541, 4114, 47124, '1.0000', '6.9835', '6.9835', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63592, '2022-03-04', 1812, 60542, 4114, NULL, '1.0000', '7.9262', '7.9262', '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 (63593, '2022-03-04', 9741, 60543, 4114, 47101, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63594, '2022-03-04', 7530, 60544, 4114, 48170, '1.0000', '2.2088', '2.2088', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63595, '2022-03-04', 2169, 60545, 4114, NULL, '1.0000', '0.7121', '0.7121', '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 (63596, '2022-03-04', 7482, 60546, 4114, NULL, '1.0000', '2.8136', '2.8136', '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 (63597, '2022-03-04', 7952, 60547, 4114, NULL, '1.0000', '2.3000', '2.3000', '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 (63598, '2022-03-04', 2167, 60548, 4114, NULL, '3.0000', '2.1310', '2.1310', '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 (63599, '2022-03-04', 7398, 60549, 4114, NULL, '1.0000', '18.5000', '18.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 (63600, '2022-03-04', 2315, 60550, 4114, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '115.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63601, '2022-03-04', 1812, 60551, 4114, NULL, '1.0000', '7.9262', '7.9262', '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 (63602, '2022-03-04', 3058, 60552, 4114, NULL, '1.0000', '2.3000', '2.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 (63603, '2022-03-04', 2242, 60553, 4114, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63604, '2022-03-04', 9806, 60554, 4114, 50121, '1.0000', '1.0800', '1.0800', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63605, '2022-03-04', 8033, 60555, 4114, 49366, '2.0000', '18.1074', '18.1074', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63606, '2022-03-04', 7482, 60556, 4114, NULL, '1.0000', '2.8136', '2.8136', '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 (63607, '2022-03-04', 8672, 60557, 4114, NULL, '2.0000', '1.2000', '1.2000', '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 (63608, '2022-03-04', 1905, 60558, 4114, NULL, '1.0000', '0.4000', '0.4000', '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 (63609, '2022-03-04', 2315, 60559, 4114, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '115.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63610, '2022-03-04', 7907, 60560, 4114, NULL, '3.0000', '12.0000', '12.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 (63611, '2022-03-04', 1454, 60561, 4114, NULL, '1.0000', '10.9000', '10.9000', '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 (63612, '2022-03-04', 2660, 60562, 4114, 49361, '4.0000', '0.7000', '0.7000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63613, '2022-03-04', 2384, 60563, 4114, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63614, '2022-03-04', 1311, 60564, 4114, 49359, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '17.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63615, '2022-03-04', 7719, 60565, 4114, NULL, '2.0000', '5.5000', '5.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 (63616, '2022-03-04', 2491, 60566, 4114, 50232, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63617, '2022-03-04', 2497, 60567, 4114, 19378, '1.0000', '34.0000', '34.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 (63618, '2022-03-04', 9750, 60568, 4114, NULL, '1.0000', '3.3000', '3.3000', '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 (63619, '2022-03-04', 9337, 60569, 4114, NULL, '5.0000', '5.7200', '5.7200', '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 (63620, '2022-03-04', 9695, 60570, 4114, NULL, '1.0000', '4.5000', '4.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 (63621, '2022-03-04', 9683, 60571, 4114, 51021, '1.0000', '3.2255', '3.2255', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63622, '2022-03-04', 7514, 60572, 4114, NULL, '1.0000', '2.2500', '2.2500', '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 (63623, '2022-03-04', 2109, 60573, 4114, 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 (63624, '2022-03-04', 2286, 60574, 4114, 50523, '3.0000', '4.4402', '4.4402', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63625, '2022-03-04', 1590, 60575, 4114, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63626, '2022-03-04', 2908, 60576, 4114, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63627, '2022-03-04', 1667, 60577, 4115, 48487, '2.0000', '13.0832', '13.0832', '8.5000', '8.5000', '18.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63628, '2022-03-04', 1311, 60578, 4115, 49359, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '16.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63629, '2022-03-04', 7472, 60579, 4115, NULL, '1.0000', '4.2055', '4.2055', '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 (63630, '2022-03-04', 2681, 60580, 4115, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63631, '2022-03-04', 1809, 60581, 4115, 50236, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63632, '2022-03-04', 7707, 60582, 4115, NULL, '1.0000', '7.0000', '7.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 (63633, '2022-03-04', 1311, 60583, 4115, 49359, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '16.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63634, '2022-03-05', 9758, 60584, 4116, NULL, '1.0000', '3.1400', '3.1400', '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 (63635, '2022-03-05', 1602, 60585, 4116, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63636, '2022-03-05', 2169, 60586, 4116, 45082, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63637, '2022-03-05', 9565, 60587, 4116, NULL, '1.0000', '4.5000', '4.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 (63638, '2022-03-05', 7585, 60588, 4116, NULL, '1.0000', '4.2400', '4.2400', '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 (63639, '2022-03-05', 2607, 60589, 4116, 42956, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '7.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63640, '2022-03-05', 2965, 60590, 4116, 49486, '1.0000', '4.6729', '4.6729', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63641, '2022-03-05', 9734, 60591, 4116, 50862, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '93.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63642, '2022-03-05', 7414, 60592, 4117, NULL, '1.0000', '18.2100', '18.2100', '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 (63643, '2022-03-05', 1839, 60593, 4117, 50897, '1.0000', '7.4147', '7.4147', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63644, '2022-03-05', 1602, 60594, 4117, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63645, '2022-03-05', 1804, 60595, 4118, 49085, '1.0000', '4.4115', '4.4115', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63646, '2022-03-05', 2392, 60596, 4119, NULL, '1.0000', '3.2000', '3.2000', '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 (63647, '2022-03-05', 7715, 60597, 4119, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '36.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63648, '2022-03-05', 7524, 60598, 4119, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63649, '2022-03-05', 7704, 60599, 4119, NULL, '3.0000', '-1.5625', '-1.5625', '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 (63650, '2022-03-05', 7411, 60600, 4119, NULL, '1.0000', '1.2529', '1.2529', '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 (63651, '2022-03-05', 7743, 60601, 4119, NULL, '1.0000', '419203.7668', '419203.7668', '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 (63652, '2022-03-05', 7641, 60602, 4119, NULL, '2.0000', '-543.6034', '-543.6034', '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 (63653, '2022-03-05', 8104, 60603, 4119, NULL, '10.0000', '1.6000', '1.6000', '2.2000', '2.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 (63654, '2022-03-05', 1498, 60604, 4119, 50696, '2.0000', '0.3942', '0.3942', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63655, '2022-03-05', 7491, 60605, 4119, 43071, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63656, '2022-03-05', 7911, 60606, 4119, NULL, '1.0000', '4.3700', '4.3700', '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 (63657, '2022-03-05', 2315, 60607, 4119, NULL, '1.0000', '0.8863', '0.8863', '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 (63658, '2022-03-05', 7428, 60608, 4119, 50471, '3.0000', '65.9358', '65.9358', '4.5000', '4.5000', '99.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63659, '2022-03-05', 8608, 60609, 4119, NULL, '1.0000', '5.7400', '5.7400', '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 (63660, '2022-03-05', 9442, 60610, 4119, 40450, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63661, '2022-03-05', 8530, 60611, 4119, NULL, '1.0000', '19.0000', '19.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63662, '2022-03-05', 9578, 60612, 4119, NULL, '1.0000', '8.0000', '8.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 (63663, '2022-03-05', 2618, 60613, 4119, NULL, '2.0000', '4.1000', '4.1000', '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 (63664, '2022-03-05', 9202, 60614, 4119, NULL, '1.0000', '3.5000', '3.5000', '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 (63665, '2022-03-05', 2107, 60615, 4119, NULL, '1.0000', '0.2500', '0.2500', '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 (63666, '2022-03-05', 7482, 60616, 4119, NULL, '1.0000', '3.3336', '3.3336', '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 (63667, '2022-03-05', 9650, 60617, 4119, 43132, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63668, '2022-03-05', 8065, 60618, 4119, NULL, '1.0000', '32.0000', '32.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 (63669, '2022-03-05', 7672, 60619, 4119, NULL, '2.0000', '3.8200', '3.8200', '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 (63670, '2022-03-05', 7473, 60620, 4119, NULL, '2.0000', '710.0742', '710.0742', '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 (63671, '2022-03-05', 7506, 60621, 4119, NULL, '2.0000', '15.0000', '15.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 (63672, '2022-03-05', 7459, 60622, 4119, NULL, '20.0000', '674.5400', '674.5400', '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 (63673, '2022-03-05', 8982, 60623, 4119, 42769, '1.0000', '9.0560', '9.0560', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63674, '2022-03-05', 9445, 60624, 4119, 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 (63675, '2022-03-05', 2352, 60625, 4119, NULL, '4.0000', '1.9000', '1.9000', '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 (63676, '2022-03-05', 8161, 60626, 4119, NULL, '2.0000', '25.3581', '25.3581', '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 (63677, '2022-03-05', 7996, 60627, 4119, NULL, '1.0000', '19.0200', '19.0200', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63678, '2022-03-05', 7991, 60628, 4119, NULL, '1.0000', '26.5700', '26.5700', '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 (63679, '2022-03-05', 7750, 60629, 4119, NULL, '1.0000', '33.9800', '33.9800', '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 (63680, '2022-03-05', 7608, 60630, 4119, NULL, '1.0000', '10.2344', '10.2344', '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 (63681, '2022-03-05', 7507, 60631, 4119, NULL, '3.0000', '6.5000', '6.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 (63682, '2022-03-05', 9380, 60632, 4119, NULL, '1.0000', '22.3200', '22.3200', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63683, '2022-03-05', 2315, 60633, 4119, NULL, '1.0000', '0.8863', '0.8863', '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 (63684, '2022-03-05', 7709, 60634, 4119, NULL, '1.0000', '62.9674', '62.9674', '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 (63685, '2022-03-05', 7886, 60635, 4119, NULL, '1.0000', '6.7841', '6.7841', '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 (63686, '2022-03-05', 9394, 60636, 4119, NULL, '1.0000', '5.5000', '5.5000', '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 (63687, '2022-03-05', 1369, 60637, 4119, 45812, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63688, '2022-03-05', 9040, 60638, 4119, NULL, '1.0000', '10.0000', '10.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 (63689, '2022-03-05', 8826, 60639, 4119, NULL, '1.0000', '6.0000', '6.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 (63690, '2022-03-05', 9818, 60640, 4119, 50716, '4.0000', '1.5000', '1.5000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63691, '2022-03-05', 7518, 60641, 4119, NULL, '2.0000', '81367880.7457', '81367880.7457', '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 (63692, '2022-03-05', 8966, 60642, 4119, 51010, '1.0000', '6.6999', '6.6999', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63693, '2022-03-05', 7708, 60643, 4119, NULL, '1.0000', '0.4231', '0.4231', '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 (63694, '2022-03-05', 9391, 60644, 4119, NULL, '2.0000', '3.0000', '3.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 (63695, '2022-03-05', 2983, 60645, 4119, 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 (63696, '2022-03-05', 7704, 60646, 4119, NULL, '1.0000', '-1.5625', '-1.5625', '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 (63697, '2022-03-05', 7779, 60647, 4119, NULL, '1.0000', '9.6790', '9.6790', '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 (63698, '2022-03-05', 9785, 60648, 4119, 49664, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63699, '2022-03-05', 7819, 60649, 4119, NULL, '1.0000', '17.5480', '17.5480', '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 (63700, '2022-03-05', 7674, 60650, 4119, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63701, '2022-03-05', 7859, 60651, 4119, 50987, '1.0000', '12.6447', '12.6447', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63702, '2022-03-05', 7848, 60652, 4119, NULL, '1.0000', '-17.3215', '-17.3215', '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 (63703, '2022-03-05', 7518, 60653, 4119, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (63704, '2022-03-05', 9303, 60654, 4119, NULL, '1.0000', '9.0000', '9.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 (63705, '2022-03-05', 7516, 60655, 4119, 50691, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63706, '2022-03-05', 8360, 60656, 4119, 50675, '1.0000', '3.2235', '3.2235', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63707, '2022-03-05', 7518, 60657, 4119, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (63708, '2022-03-05', 7765, 60658, 4120, NULL, '1.0000', '16.0000', '16.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 (63709, '2022-03-05', 1590, 60659, 4120, 50530, '3.0000', '1.7600', '1.7600', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63710, '2022-03-05', 7482, 60660, 4120, NULL, '1.0000', '2.8136', '2.8136', '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 (63711, '2022-03-05', 2169, 60661, 4120, NULL, '1.0000', '0.7121', '0.7121', '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 (63712, '2022-03-05', 9713, 60662, 4120, 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 (63713, '2022-03-05', 9747, 60663, 4120, 50122, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63714, '2022-03-05', 2254, 60664, 4120, NULL, '1.0000', '17.9400', '17.9400', '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 (63715, '2022-03-05', 2167, 60665, 4120, NULL, '1.0000', '2.1310', '2.1310', '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 (63716, '2022-03-05', 2169, 60666, 4120, NULL, '1.0000', '0.7121', '0.7121', '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 (63717, '2022-03-05', 1420, 60667, 4120, 48955, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63718, '2022-03-05', 2277, 60668, 4120, NULL, '2.0000', '0.9399', '0.9399', '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 (63719, '2022-03-05', 9828, 60669, 4120, NULL, '2.0000', '2.9100', '2.9100', '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 (63720, '2022-03-05', 9735, 60670, 4120, 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 (63721, '2022-03-05', 1637, 60671, 4120, NULL, '1.0000', '-41.1667', '-41.1667', '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 (63722, '2022-03-05', 9758, 60672, 4120, NULL, '1.0000', '3.1400', '3.1400', '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 (63723, '2022-03-05', 7411, 60673, 4120, NULL, '2.0000', '1.3013', '1.3013', '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 (63724, '2022-03-05', 1699, 60674, 4120, NULL, '1.0000', '3.2000', '3.2000', '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 (63725, '2022-03-05', 1831, 60675, 4120, 49898, '1.0000', '8.0000', '8.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 (63726, '2022-03-05', 2251, 60676, 4120, NULL, '1.0000', '12.1904', '12.1904', '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 (63727, '2022-03-05', 9830, 60677, 4120, 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 (63728, '2022-03-05', 1574, 60678, 4120, NULL, '10.0000', '1.7000', '1.7000', '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 (63729, '2022-03-05', 9579, 60679, 4120, 51028, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63730, '2022-03-05', 9821, 60680, 4120, NULL, '1.0000', '1.4500', '1.4500', '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 (63731, '2022-03-05', 1557, 60681, 4120, 48869, '1.0000', '7.3662', '7.3662', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63732, '2022-03-05', 2169, 60682, 4120, NULL, '1.0000', '0.7121', '0.7121', '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 (63733, '2022-03-05', 2315, 60683, 4120, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '111.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63734, '2022-03-05', 2231, 60684, 4120, NULL, '2.0000', '34.0000', '34.0000', '39.0000', '39.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 (63735, '2022-03-05', 7666, 60685, 4120, NULL, '1.0000', '-6.0000', '-6.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 (63736, '2022-03-05', 1519, 60686, 4120, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63737, '2022-03-05', 2026, 60687, 4120, 42642, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63738, '2022-03-05', 1564, 60688, 4120, NULL, '1.0000', '3.4988', '3.4988', '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 (63739, '2022-03-05', 9240, 60689, 4120, NULL, '1.0000', '25.1200', '25.1200', '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 (63740, '2022-03-05', 9695, 60690, 4120, NULL, '2.0000', '4.5000', '4.5000', '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 (63741, '2022-03-05', 7483, 60691, 4120, NULL, '1.0000', '0.4200', '0.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 (63742, '2022-03-05', 2315, 60692, 4120, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '112.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63743, '2022-03-05', 2681, 60693, 4120, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63744, '2022-03-05', 2893, 60694, 4120, NULL, '1.0000', '6.4400', '6.4400', '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 (63745, '2022-03-05', 2546, 60695, 4120, NULL, '1.0000', '11.0000', '11.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 (63746, '2022-03-05', 9204, 60696, 4120, NULL, '1.0000', '8.1600', '8.1600', '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 (63747, '2022-03-05', 7409, 60697, 4120, 39838, '1.0000', '5.0825', '5.0825', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63748, '2022-03-05', 7355, 60698, 4121, NULL, '1.0000', '4.4343', '4.4343', '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 (63749, '2022-03-05', 7491, 60699, 4121, 30174, '1.0000', '4.8666', '4.8666', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63750, '2022-03-05', 8136, 60700, 4121, NULL, '1.0000', '468.7955', '468.7955', '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 (63751, '2022-03-05', 8966, 60701, 4121, 51010, '1.0000', '6.6999', '6.6999', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63752, '2022-03-05', 8753, 60702, 4121, 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 (63753, '2022-03-05', 8188, 60703, 4121, NULL, '1.0000', '6.7000', '6.7000', '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 (63754, '2022-03-05', 9729, 60704, 4121, 46181, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63755, '2022-03-05', 2070, 60705, 4121, NULL, '1.0000', '2.0000', '2.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 (63756, '2022-03-05', 7708, 60706, 4121, NULL, '1.0000', '0.4231', '0.4231', '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 (63757, '2022-03-05', 7518, 60707, 4121, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (63758, '2022-03-05', 7917, 60708, 4121, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (63759, '2022-03-05', 8476, 60709, 4121, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (63760, '2022-03-05', 2289, 60710, 4121, NULL, '4.0000', '0.9629', '0.9629', '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 (63761, '2022-03-05', 2214, 60711, 4121, 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 (63762, '2022-03-05', 7411, 60712, 4121, NULL, '2.0000', '1.2529', '1.2529', '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 (63763, '2022-03-05', 9729, 60713, 4121, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63764, '2022-03-05', 7728, 60714, 4122, 50306, '1.0000', '1.8605', '1.8605', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63765, '2022-03-05', 8539, 60715, 4122, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '48.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63766, '2022-03-05', 1425, 60716, 4123, 50925, '1.0000', '7.0215', '7.0215', '8.5800', '8.5800', '2.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63767, '2022-03-05', 7321, 60717, 4123, NULL, '1.0000', '7.9500', '7.9500', '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 (63768, '2022-03-05', 2657, 60718, 4123, 49178, '1.0000', '0.5900', '0.5900', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63769, '2022-03-05', 1493, 60719, 4123, 49232, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63770, '2022-03-05', 1337, 60720, 4123, 44622, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63771, '2022-03-05', 2635, 60721, 4123, 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 (63772, '2022-03-05', 2660, 60722, 4123, 49531, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63773, '2022-03-05', 9612, 60723, 4123, 39209, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63774, '2022-03-05', 8753, 60724, 4123, 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 (63775, '2022-03-05', 2549, 60725, 4123, 9534, '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 (63776, '2022-03-05', 9626, 60726, 4123, 40291, '2.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63777, '2022-03-05', 1572, 60727, 4123, 49525, '5.0000', '1.9151', '1.9151', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63778, '2022-03-05', 2821, 60728, 4123, 50896, '1.0000', '3.4420', '3.4420', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63779, '2022-03-05', 2251, 60729, 4123, 49070, '1.0000', '11.5988', '11.5988', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63780, '2022-03-05', 2228, 60730, 4123, 49411, '1.0000', '25.0045', '25.0045', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63781, '2022-03-05', 2254, 60731, 4123, 50858, '1.0000', '17.8303', '17.8303', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63782, '2022-03-05', 1812, 60732, 4123, 50930, '1.0000', '7.9743', '7.9743', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63783, '2022-03-05', 1425, 60733, 4123, 50925, '1.0000', '7.0215', '7.0215', '8.5800', '8.5800', '2.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63784, '2022-03-05', 2660, 60734, 4123, 49531, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63785, '2022-03-05', 2384, 60735, 4123, 46599, '2.0000', '0.3266', '0.3266', '0.7000', '0.7000', '40.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63786, '2022-03-05', 2858, 60736, 4124, 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 (63787, '2022-03-06', 1564, 60737, 4125, NULL, '2.0000', '3.4988', '3.4988', '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 (63788, '2022-03-06', 1520, 60738, 4125, 48888, '2.0000', '1.4700', '1.4700', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63789, '2022-03-06', 9695, 60739, 4125, NULL, '2.0000', '4.5000', '4.5000', '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 (63790, '2022-03-06', 7641, 60740, 4125, NULL, '1.0000', '1.9000', '1.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 (63791, '2022-03-06', 2320, 60741, 4125, 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 (63792, '2022-03-06', 8328, 60742, 4125, NULL, '1.0000', '8.1000', '8.1000', '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 (63793, '2022-03-06', 9193, 60743, 4125, NULL, '1.0000', '7.0000', '7.0000', '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 (63794, '2022-03-06', 2270, 60744, 4125, 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 (63795, '2022-03-06', 1602, 60745, 4125, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63796, '2022-03-06', 2699, 60746, 4125, NULL, '1.0000', '2.5833', '2.5833', '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 (63797, '2022-03-06', 1731, 60747, 4125, 51361, '1.0000', '19.7600', '19.7600', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63798, '2022-03-06', 9482, 60748, 4125, NULL, '4.0000', '0.5000', '0.5000', '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 (63799, '2022-03-06', 1346, 60749, 4125, 39869, '2.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63800, '2022-03-06', 8183, 60750, 4125, NULL, '1.0000', '81.9100', '81.9100', '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 (63801, '2022-03-06', 1545, 60751, 4125, 51238, '1.0000', '12.7570', '12.7570', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63802, '2022-03-06', 2699, 60752, 4125, NULL, '1.0000', '2.5833', '2.5833', '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 (63803, '2022-03-06', 2341, 60753, 4125, NULL, '1.0000', '5.5900', '5.5900', '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 (63804, '2022-03-06', 1427, 60754, 4125, 49521, '1.0000', '5.5000', '5.5000', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 383);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63805, '2022-03-06', 1760, 60755, 4125, NULL, '1.0000', '1.5900', '1.5900', '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 (63806, '2022-03-06', 7981, 60756, 4125, NULL, '5.0000', '6.0000', '6.0000', '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 (63807, '2022-03-06', 1493, 60757, 4125, NULL, '1.0000', '1.9600', '1.9600', '1.7200', '1.7200', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63808, '2022-03-06', 2769, 60758, 4125, NULL, '3.0000', '-2.2800', '-2.2800', '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 (63809, '2022-03-06', 2315, 60759, 4125, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '109.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63810, '2022-03-06', 2237, 60760, 4125, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63811, '2022-03-06', 1388, 60761, 4125, 51245, '1.0000', '6.1880', '6.1880', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63812, '2022-03-06', 2740, 60762, 4125, 19346, '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 (63813, '2022-03-06', 8963, 60763, 4125, 39855, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63814, '2022-03-06', 2315, 60764, 4125, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '109.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63815, '2022-03-06', 1326, 60765, 4125, 48959, '1.0000', '4.5325', '4.5325', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63816, '2022-03-06', 2379, 60766, 4125, NULL, '1.0000', '1.0877', '1.0877', '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 (63817, '2022-03-06', 7482, 60767, 4125, NULL, '1.0000', '2.5019', '2.5019', '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 (63818, '2022-03-06', 7514, 60768, 4125, NULL, '1.0000', '2.2500', '2.2500', '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 (63819, '2022-03-06', 2315, 60769, 4125, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '107.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63820, '2022-03-06', 2061, 60770, 4126, 50246, '1.0000', '11.0146', '11.0146', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63821, '2022-03-06', 9732, 60771, 4126, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63822, '2022-03-06', 7750, 60772, 4127, NULL, '1.0000', '33.9800', '33.9800', '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 (63823, '2022-03-06', 1734, 60773, 4127, 48853, '1.0000', '14.9800', '14.9800', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63824, '2022-03-06', 7641, 60774, 4127, NULL, '1.0000', '-543.6034', '-543.6034', '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 (63825, '2022-03-06', 9170, 60775, 4127, 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 (63826, '2022-03-06', 2216, 60776, 4127, 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 (63827, '2022-03-06', 7412, 60777, 4127, NULL, '2.0000', '1.5200', '1.5200', '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 (63828, '2022-03-06', 7642, 60778, 4127, NULL, '1.0000', '5.9200', '5.9200', '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 (63829, '2022-03-06', 9095, 60779, 4127, NULL, '1.0000', '9.7084', '9.7084', '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 (63830, '2022-03-06', 7641, 60780, 4127, NULL, '2.0000', '-543.6034', '-543.6034', '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 (63831, '2022-03-06', 8607, 60781, 4127, 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 (63832, '2022-03-06', 8352, 60782, 4127, NULL, '1.0000', '-153.7209', '-153.7209', '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 (63833, '2022-03-06', 7859, 60783, 4127, 50987, '1.0000', '12.6447', '12.6447', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63834, '2022-03-06', 8476, 60784, 4127, NULL, '5.0000', '23.0000', '23.0000', '0.6000', '0.6000', '-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 (63835, '2022-03-06', 9450, 60785, 4127, 30932, '1.0000', '3.2000', '3.2000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63836, '2022-03-06', 8746, 60786, 4127, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63837, '2022-03-06', 7518, 60787, 4127, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (63838, '2022-03-06', 8607, 60788, 4127, 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 (63839, '2022-03-06', 7708, 60789, 4127, NULL, '1.0000', '0.4231', '0.4231', '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 (63840, '2022-03-06', 9271, 60790, 4127, 46698, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63841, '2022-03-06', 9731, 60791, 4127, 49289, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63842, '2022-03-06', 1837, 60792, 4127, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63843, '2022-03-06', 7674, 60793, 4127, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63844, '2022-03-06', 7591, 60794, 4127, NULL, '2.0000', '2.7500', '2.7500', '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 (63845, '2022-03-06', 7391, 60795, 4127, NULL, '1.0000', '-26.2683', '-26.2683', '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 (63846, '2022-03-06', 8736, 60796, 4127, NULL, '1.0000', '3.4000', '3.4000', '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 (63847, '2022-03-06', 9145, 60797, 4127, NULL, '1.0000', '4.1892', '4.1892', '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 (63848, '2022-03-06', 9300, 60798, 4127, NULL, '1.0000', '3.0968', '3.0968', '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 (63849, '2022-03-06', 8923, 60799, 4127, NULL, '1.0000', '7.2500', '7.2500', '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 (63850, '2022-03-06', 9092, 60800, 4127, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '51.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63851, '2022-03-06', 8085, 60801, 4127, 49815, '3.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63852, '2022-03-06', 7952, 60802, 4127, NULL, '1.0000', '62.3792', '62.3792', '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 (63853, '2022-03-06', 7788, 60803, 4127, NULL, '1.0000', '21.7600', '21.7600', '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 (63854, '2022-03-06', 9445, 60804, 4127, 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 (63855, '2022-03-06', 7674, 60805, 4127, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63856, '2022-03-06', 2315, 60806, 4127, NULL, '1.0000', '0.8863', '0.8863', '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 (63857, '2022-03-06', 7514, 60807, 4127, NULL, '1.0000', '97.7006', '97.7006', '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 (63858, '2022-03-06', 7353, 60808, 4127, 45856, '2.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63859, '2022-03-06', 7781, 60809, 4127, NULL, '3.0000', '4.2500', '4.2500', '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 (63860, '2022-03-06', 7341, 60810, 4127, 50479, '1.0000', '24.2280', '24.2280', '32.5000', '32.5000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63861, '2022-03-06', 7638, 60811, 4127, 51004, '1.0000', '4.8735', '4.8735', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63862, '2022-03-06', 9300, 60812, 4127, NULL, '1.0000', '3.0968', '3.0968', '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 (63863, '2022-03-06', 8485, 60813, 4127, NULL, '1.0000', '7.0400', '7.0400', '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 (63864, '2022-03-06', 2061, 60814, 4127, 50059, '1.0000', '10.7550', '10.7550', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63865, '2022-03-06', 9252, 60815, 4127, 50445, '3.0000', '8.7771', '8.7771', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63866, '2022-03-06', 1671, 60816, 4127, NULL, '1.0000', '92.5588', '92.5588', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63867, '2022-03-06', 8324, 60817, 4127, NULL, '4.0000', '3.0036', '3.0036', '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 (63868, '2022-03-06', 7722, 60818, 4127, NULL, '1.0000', '3.5000', '3.5000', '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 (63869, '2022-03-06', 7721, 60819, 4127, 50296, '1.0000', '5.8165', '5.8165', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63870, '2022-03-06', 8566, 60820, 4127, 42783, '1.0000', '-55864.3970', '-55864.3970', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63871, '2022-03-06', 7666, 60821, 4127, 51055, '1.0000', '3.6004', '3.6004', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63872, '2022-03-06', 7758, 60822, 4127, 43103, '1.0000', '-45.9138', '-45.9138', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63873, '2022-03-06', 7354, 60823, 4127, NULL, '2.0000', '18.0000', '18.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 (63874, '2022-03-06', 7752, 60824, 4127, 48062, '2.0000', '2.4834', '2.4834', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63875, '2022-03-06', 7473, 60825, 4127, NULL, '10.0000', '710.0742', '710.0742', '0.6000', '0.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 (63876, '2022-03-06', 7703, 60826, 4127, NULL, '2.0000', '102.7757', '102.7757', '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 (63877, '2022-03-06', 7564, 60827, 4127, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63878, '2022-03-06', 7819, 60828, 4127, NULL, '1.0000', '10.5656', '10.5656', '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 (63879, '2022-03-06', 7473, 60829, 4127, NULL, '2.0000', '710.0742', '710.0742', '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 (63880, '2022-03-06', 7519, 60830, 4127, 46682, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63881, '2022-03-06', 7608, 60831, 4127, NULL, '1.0000', '10.2344', '10.2344', '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 (63882, '2022-03-06', 7482, 60832, 4127, NULL, '1.0000', '3.3336', '3.3336', '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 (63883, '2022-03-06', 8368, 60833, 4127, NULL, '1.0000', '35.0000', '35.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 (63884, '2022-03-06', 7886, 60834, 4127, NULL, '1.0000', '6.7841', '6.7841', '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 (63885, '2022-03-06', 7892, 60835, 4127, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63886, '2022-03-06', 1854, 60836, 4127, NULL, '1.0000', '2.6053', '2.6053', '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 (63887, '2022-03-06', 7444, 60837, 4127, NULL, '1.0000', '2.0190', '2.0190', '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 (63888, '2022-03-06', 7554, 60838, 4127, 51280, '3.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63889, '2022-03-06', 7554, 60838, 4127, NULL, '17.0000', '1.8000', '1.8000', '2.5000', '2.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 (63890, '2022-03-06', 8147, 60839, 4127, NULL, '1.0000', '4.5100', '4.5100', '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 (63891, '2022-03-06', 8539, 60840, 4127, 46695, '10.0000', '2.6082', '2.6082', '0.8000', '0.8000', '38.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63892, '2022-03-06', 7714, 60841, 4127, NULL, '2.0000', '0.4200', '0.4200', '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 (63893, '2022-03-06', 7583, 60842, 4128, NULL, '1.0000', '4.0000', '4.0000', '0.9900', '0.9900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63894, '2022-03-06', 1871, 60843, 4128, NULL, '1.0000', '2.2081', '2.2081', '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 (63895, '2022-03-06', 1856, 60844, 4128, NULL, '1.0000', '5.5569', '5.5569', '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 (63896, '2022-03-06', 7411, 60845, 4128, NULL, '1.0000', '1.3013', '1.3013', '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 (63897, '2022-03-06', 9828, 60846, 4128, NULL, '2.0000', '2.9100', '2.9100', '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 (63898, '2022-03-06', 9762, 60847, 4128, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '48.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63899, '2022-03-06', 8756, 60848, 4128, 43996, '1.0000', '-1.1900', '-1.1900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63900, '2022-03-06', 8743, 60849, 4128, 51017, '1.0000', '0.9996', '0.9996', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63901, '2022-03-06', 7666, 60850, 4128, NULL, '1.0000', '-6.0000', '-6.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 (63902, '2022-03-06', 8816, 60851, 4128, NULL, '1.0000', '18.0000', '18.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 (63903, '2022-03-06', 1590, 60852, 4128, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63904, '2022-03-06', 7719, 60853, 4128, NULL, '1.0000', '5.5000', '5.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 (63905, '2022-03-06', 9748, 60854, 4128, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63906, '2022-03-06', 9482, 60855, 4128, 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 (63907, '2022-03-06', 2260, 60856, 4128, 48160, '1.0000', '4.2238', '4.2238', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63908, '2022-03-06', 1557, 60857, 4128, NULL, '1.0000', '7.3662', '7.3662', '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 (63909, '2022-03-06', 7457, 60858, 4128, NULL, '1.0000', '2.3500', '2.3500', '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 (63910, '2022-03-06', 2108, 60859, 4128, NULL, '1.0000', '8.6167', '8.6167', '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 (63911, '2022-03-06', 2315, 60860, 4128, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '104.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63912, '2022-03-06', 1574, 60861, 4128, NULL, '1.0000', '1.7000', '1.7000', '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 (63913, '2022-03-06', 1840, 60862, 4128, NULL, '1.0000', '0.2400', '0.2400', '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 (63914, '2022-03-06', 2283, 60863, 4128, 51324, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63915, '2022-03-06', 2237, 60864, 4128, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63916, '2022-03-06', 1647, 60865, 4128, NULL, '1.0000', '5.0700', '5.0700', '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 (63917, '2022-03-06', 7411, 60866, 4128, NULL, '1.0000', '1.3013', '1.3013', '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 (63918, '2022-03-06', 7508, 60867, 4128, NULL, '1.0000', '8.5100', '8.5100', '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 (63919, '2022-03-06', 8000, 60868, 4128, NULL, '1.0000', '25.8200', '25.8200', '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 (63920, '2022-03-06', 7672, 60869, 4128, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63921, '2022-03-06', 2237, 60870, 4129, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63922, '2022-03-06', 9337, 60871, 4129, NULL, '2.0000', '5.7200', '5.7200', '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 (63923, '2022-03-06', 7411, 60872, 4129, NULL, '1.0000', '1.3013', '1.3013', '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 (63924, '2022-03-06', 2643, 60873, 4129, 49624, '3.0000', '0.8700', '0.8700', '1.2000', '1.2000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63925, '2022-03-06', 9482, 60874, 4129, NULL, '2.0000', '0.5000', '0.5000', '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 (63926, '2022-03-06', 2503, 60875, 4129, 44455, '1.0000', '16.3200', '16.3200', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63927, '2022-03-06', 2924, 60876, 4129, NULL, '1.0000', '6.5800', '6.5800', '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 (63928, '2022-03-06', 9750, 60877, 4129, NULL, '1.0000', '3.3000', '3.3000', '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 (63929, '2022-03-06', 7459, 60878, 4129, NULL, '1.0000', '-6.1729', '-6.1729', '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 (63930, '2022-03-06', 2088, 60879, 4130, 51347, '2.0000', '1.8301', '1.8301', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63931, '2022-03-06', 2335, 60880, 4131, NULL, '1.0000', '13.9000', '13.9000', '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 (63932, '2022-03-06', 7958, 60881, 4131, NULL, '1.0000', '13.0000', '13.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 (63933, '2022-03-06', 1519, 60882, 4131, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63934, '2022-03-06', 7859, 60883, 4131, NULL, '1.0000', '3.6000', '3.6000', '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 (63935, '2022-03-06', 2295, 60884, 4132, NULL, '1.0000', '0.7000', '0.7000', '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 (63936, '2022-03-06', 9092, 60885, 4132, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '50.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63937, '2022-03-06', 7946, 60886, 4132, 48254, '2.0000', '-3.9133', '-3.9133', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63938, '2022-03-06', 8596, 60887, 4132, NULL, '1.0000', '17.0000', '17.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 (63939, '2022-03-06', 7318, 60888, 4132, NULL, '1.0000', '11.4954', '11.4954', '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 (63940, '2022-03-06', 7367, 60889, 4132, NULL, '1.0000', '-29.5750', '-29.5750', '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 (63941, '2022-03-06', 2315, 60890, 4132, NULL, '1.0000', '0.8863', '0.8863', '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 (63942, '2022-03-06', 7532, 60891, 4132, NULL, '1.0000', '1.9999', '1.9999', '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 (63943, '2022-03-06', 7762, 60892, 4132, 48006, '1.0000', '4.5695', '4.5695', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63944, '2022-03-06', 8359, 60893, 4132, 50046, '1.0000', '2068.5192', '2068.5192', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63945, '2022-03-06', 7558, 60894, 4132, NULL, '2.0000', '2.0704', '2.0704', '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 (63946, '2022-03-06', 7641, 60895, 4132, NULL, '1.0000', '-543.6034', '-543.6034', '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 (63947, '2022-03-06', 9286, 60896, 4132, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '6.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63948, '2022-03-06', 2315, 60897, 4132, NULL, '1.0000', '0.8863', '0.8863', '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 (63949, '2022-03-06', 7674, 60898, 4132, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63950, '2022-03-06', 7554, 60899, 4132, NULL, '20.0000', '1.8000', '1.8000', '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 (63951, '2022-03-06', 8274, 60900, 4132, NULL, '1.0000', '8.4300', '8.4300', '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 (63952, '2022-03-06', 7671, 60901, 4132, NULL, '1.0000', '76.3606', '76.3606', '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 (63953, '2022-03-06', 1837, 60902, 4132, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63954, '2022-03-06', 7473, 60903, 4132, NULL, '2.0000', '710.0742', '710.0742', '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 (63955, '2022-03-06', 7564, 60904, 4132, 30930, '1.0000', '-19717.2224', '-19717.2224', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63956, '2022-03-06', 7963, 60905, 4132, NULL, '1.0000', '-24.3500', '-24.3500', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63957, '2022-03-06', 7672, 60906, 4132, NULL, '1.0000', '3.8200', '3.8200', '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 (63958, '2022-03-06', 2104, 60907, 4132, NULL, '4.0000', '0.2000', '0.2000', '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 (63959, '2022-03-06', 8966, 60908, 4132, 51010, '1.0000', '6.6999', '6.6999', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63960, '2022-03-06', 7641, 60909, 4132, NULL, '1.0000', '-543.6034', '-543.6034', '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 (63961, '2022-03-06', 7822, 60910, 4132, 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 (63962, '2022-03-06', 7514, 60911, 4132, NULL, '1.0000', '97.7006', '97.7006', '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 (63963, '2022-03-06', 9836, 60912, 4132, 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 (63964, '2022-03-06', 1608, 60913, 4133, 51204, '1.0000', '3.9758', '3.9758', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63965, '2022-03-06', 2642, 60914, 4133, 22561, '1.0000', '9.3605', '9.3605', '12.0000', '12.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 (63966, '2022-03-06', 7411, 60915, 4133, NULL, '1.0000', '1.3013', '1.3013', '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 (63967, '2022-03-06', 2167, 60916, 4133, NULL, '1.0000', '2.0277', '2.0277', '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 (63968, '2022-03-06', 2965, 60917, 4134, NULL, '1.0000', '6.3064', '6.3064', '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 (63969, '2022-03-06', 8596, 60918, 4135, NULL, '1.0000', '17.0000', '17.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 (63970, '2022-03-06', 1427, 60919, 4135, 43527, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '6.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63971, '2022-03-06', 7457, 60920, 4135, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63972, '2022-03-06', 8712, 60921, 4135, NULL, '1.0000', '7.0400', '7.0400', '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 (63973, '2022-03-06', 7859, 60922, 4135, NULL, '1.0000', '12.6447', '12.6447', '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 (63974, '2022-03-06', 2695, 60923, 4136, 45122, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '51.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63975, '2022-03-06', 2374, 60924, 4136, 4379, '1.0000', '6.1000', '6.1000', '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 (63976, '2022-03-06', 8746, 60925, 4136, NULL, '1.0000', '3.0415', '3.0415', '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 (63977, '2022-03-06', 7593, 60926, 4136, 45105, '1.0000', '2.4500', '2.4500', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63978, '2022-03-06', 1840, 60927, 4136, NULL, '2.0000', '0.2400', '0.2400', '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 (63979, '2022-03-06', 1841, 60928, 4136, 44579, '2.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63980, '2022-03-06', 2477, 60929, 4136, 5190, '1.0000', '8.0000', '8.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 (63981, '2022-03-06', 2484, 60930, 4136, 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 (63982, '2022-03-06', 2482, 60931, 4136, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.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 (63983, '2022-03-06', 2541, 60932, 4136, 49561, '1.0000', '10.4207', '10.4207', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63984, '2022-03-06', 2633, 60933, 4136, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63985, '2022-03-06', 1863, 60934, 4136, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63986, '2022-03-06', 1356, 60935, 4136, 46726, '1.0000', '58.8714', '58.8714', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63987, '2022-03-06', 2645, 60936, 4136, 32622, '1.0000', '21.0000', '21.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63988, '2022-03-06', 1992, 60937, 4136, 40303, '1.0000', '4.8400', '4.8400', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63989, '2022-03-06', 9828, 60938, 4137, NULL, '1.0000', '2.9100', '2.9100', '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 (63990, '2022-03-06', 2908, 60939, 4137, 49362, '3.0000', '0.2700', '0.2700', '0.5000', '0.5000', '11.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63991, '2022-03-06', 2169, 60940, 4137, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63992, '2022-03-06', 9775, 60941, 4137, NULL, '1.0000', '7.9000', '7.9000', '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 (63993, '2022-03-07', 7958, 60942, 4138, NULL, '1.0000', '13.0000', '13.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 (63994, '2022-03-07', 2685, 60943, 4138, 49608, '1.0000', '35.0000', '35.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 (63995, '2022-03-07', 9832, 60944, 4138, NULL, '1.0000', '1.5600', '1.5600', '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 (63996, '2022-03-07', 7339, 60945, 4138, NULL, '1.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63997, '2022-03-07', 2543, 60946, 4138, 48867, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63998, '2022-03-07', 7862, 60947, 4138, 39847, '1.0000', '3.8500', '3.8500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63999, '2022-03-07', 2169, 60948, 4138, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64000, '2022-03-07', 1935, 60949, 4138, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64001, '2022-03-07', 1863, 60950, 4138, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64002, '2022-03-07', 2862, 60951, 4138, 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 (64003, '2022-03-07', 2068, 60952, 4138, NULL, '1.0000', '11.8658', '11.8658', '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 (64004, '2022-03-07', 2109, 60953, 4138, 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 (64005, '2022-03-07', 1574, 60954, 4138, NULL, '1.0000', '1.7000', '1.7000', '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 (64006, '2022-03-07', 7447, 60955, 4138, NULL, '16.0000', '19.1100', '19.1100', '2.0000', '2.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 (64007, '2022-03-07', 1375, 60956, 4138, NULL, '1.0000', '14.3000', '14.3000', '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 (64008, '2022-03-07', 9534, 60957, 4138, 51246, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64009, '2022-03-07', 2100, 60958, 4138, 47100, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64010, '2022-03-07', 1959, 60959, 4138, 48894, '14.0000', '3.0300', '3.0300', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64011, '2022-03-07', 2242, 60960, 4138, 48899, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64012, '2022-03-07', 9839, 60961, 4138, 51248, '1.0000', '15.0200', '15.0200', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64013, '2022-03-07', 1499, 60962, 4138, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64014, '2022-03-07', 1863, 60963, 4138, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64015, '2022-03-07', 8744, 60964, 4138, 51023, '1.0000', '1.2846', '1.2846', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64016, '2022-03-07', 9828, 60965, 4138, NULL, '2.0000', '2.9100', '2.9100', '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 (64017, '2022-03-07', 2893, 60966, 4138, NULL, '1.0000', '6.4400', '6.4400', '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 (64018, '2022-03-07', 9737, 60967, 4139, NULL, '1.0000', '7.3000', '7.3000', '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 (64019, '2022-03-07', 7593, 60968, 4139, NULL, '2.0000', '2.4500', '2.4500', '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 (64020, '2022-03-07', 1432, 60969, 4139, 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 (64021, '2022-03-07', 2406, 60970, 4139, NULL, '2.0000', '20.7000', '20.7000', '30.0000', '30.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 (64022, '2022-03-07', 2891, 60971, 4139, 33803, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64023, '2022-03-07', 2339, 60972, 4139, 3842, '-4.0000', '7.2300', '7.2300', '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 (64024, '2022-03-07', 2339, 60972, 4139, NULL, '5.0000', '7.2300', '7.2300', '14.5000', '14.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 (64025, '2022-03-07', 3009, 60973, 4139, NULL, '2.0000', '22.0000', '22.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 (64026, '2022-03-07', 1687, 60974, 4139, 5785, '-23.0000', '165.9024', '165.9024', '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 (64027, '2022-03-07', 1687, 60974, 4139, NULL, '24.0000', '165.9024', '165.9024', '17.5000', '17.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 (64028, '2022-03-07', 1339, 60975, 4139, 13004, '-8.0000', '1.6012', '1.6012', '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 (64029, '2022-03-07', 1339, 60975, 4139, NULL, '9.0000', '1.6012', '1.6012', '2.5000', '2.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 (64030, '2022-03-07', 1337, 60976, 4139, 10809, '-12.0000', '2.0000', '2.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 (64031, '2022-03-07', 1337, 60976, 4139, NULL, '13.0000', '2.0000', '2.0000', '3.5000', '3.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 (64032, '2022-03-07', 1592, 60977, 4139, 6223, '-10.0000', '35.9000', '35.9000', '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 (64033, '2022-03-07', 1592, 60977, 4139, NULL, '11.0000', '35.9000', '35.9000', '47.5000', '47.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 (64034, '2022-03-07', 2352, 60978, 4139, 3855, '-70.0000', '20.0000', '20.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 (64035, '2022-03-07', 2352, 60978, 4139, NULL, '90.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64036, '2022-03-07', 9089, 60979, 4139, NULL, '1.0000', '3.8000', '3.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 (64037, '2022-03-07', 1840, 60980, 4139, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (64038, '2022-03-07', 1841, 60981, 4139, NULL, '3.0000', '142.5780', '142.5780', '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 (64039, '2022-03-07', 1422, 60982, 4139, 22305, '1.0000', '21.0000', '21.0000', '26.0000', '26.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 (64040, '2022-03-07', 9461, 60983, 4140, NULL, '1.0000', '1.6000', '1.6000', '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 (64041, '2022-03-07', 7658, 60984, 4140, NULL, '5.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (64042, '2022-03-07', 8418, 60985, 4140, NULL, '1.0000', '35.1900', '35.1900', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64043, '2022-03-07', 8596, 60986, 4140, 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 (64044, '2022-03-07', 2521, 60987, 4140, 6035, '-4.0000', '8.8000', '8.8000', '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 (64045, '2022-03-07', 2521, 60987, 4140, NULL, '5.0000', '8.8000', '8.8000', '15.0000', '15.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 (64046, '2022-03-07', 7641, 60988, 4140, NULL, '1.0000', '1.9000', '1.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 (64047, '2022-03-07', 7428, 60989, 4140, NULL, '2.0000', '2.6100', '2.6100', '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 (64048, '2022-03-07', 7728, 60990, 4140, NULL, '1.0000', '1.8000', '1.8000', '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 (64049, '2022-03-07', 9267, 60991, 4140, 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 (64050, '2022-03-07', 7606, 60992, 4140, NULL, '1.0000', '4.8600', '4.8600', '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 (64051, '2022-03-07', 8387, 60993, 4140, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64052, '2022-03-07', 7657, 60994, 4140, NULL, '2.0000', '11.3200', '11.3200', '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 (64053, '2022-03-07', 1605, 60995, 4140, 17691, '1.0000', '26.8412', '26.8412', '46.0000', '46.0000', '8.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 (64054, '2022-03-07', 7709, 60996, 4140, NULL, '2.0000', '3.5000', '3.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 (64055, '2022-03-07', 2868, 60997, 4140, 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 (64056, '2022-03-07', 9016, 60998, 4140, NULL, '1.0000', '21.7800', '21.7800', '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 (64057, '2022-03-07', 7800, 60999, 4140, NULL, '1.0000', '4.0000', '4.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 (64058, '2022-03-07', 7699, 61000, 4140, 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 (64059, '2022-03-07', 1765, 61001, 4140, 3175, '-5.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 (64060, '2022-03-07', 1765, 61001, 4140, NULL, '6.0000', '90.0000', '90.0000', '7.5000', '7.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 (64061, '2022-03-07', 7428, 61002, 4140, NULL, '2.0000', '2.6100', '2.6100', '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 (64062, '2022-03-07', 9639, 61003, 4141, NULL, '1.0000', '28.7900', '28.7900', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64063, '2022-03-07', 8083, 61004, 4141, NULL, '1.0000', '26.0000', '26.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 (64064, '2022-03-07', 7993, 61005, 4141, NULL, '1.0000', '41.0000', '41.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64065, '2022-03-07', 7671, 61006, 4141, NULL, '2.0000', '15.5000', '15.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 (64066, '2022-03-07', 9191, 61007, 4141, 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 (64067, '2022-03-07', 7709, 61008, 4141, NULL, '2.0000', '3.5000', '3.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 (64068, '2022-03-07', 8161, 61009, 4141, 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 (64069, '2022-03-07', 7672, 61010, 4141, NULL, '1.0000', '1.0200', '1.0200', '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 (64070, '2022-03-07', 8203, 61011, 4141, NULL, '2.0000', '0.4000', '0.4000', '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 (64071, '2022-03-07', 7411, 61012, 4141, NULL, '2.0000', '1.3500', '1.3500', '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 (64072, '2022-03-07', 3067, 61013, 4141, NULL, '5.0000', '0.7000', '0.7000', '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 (64073, '2022-03-07', 7753, 61014, 4141, NULL, '2.0000', '3.4000', '3.4000', '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 (64074, '2022-03-07', 7428, 61015, 4141, NULL, '1.0000', '2.6100', '2.6100', '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 (64075, '2022-03-07', 7820, 61016, 4141, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64076, '2022-03-07', 7952, 61017, 4141, 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 (64077, '2022-03-07', 7779, 61018, 4141, 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 (64078, '2022-03-07', 7806, 61019, 4141, NULL, '5.0000', '1.8000', '1.8000', '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 (64079, '2022-03-07', 7532, 61020, 4141, NULL, '1.0000', '20.6000', '20.6000', '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 (64080, '2022-03-07', 2220, 61021, 4141, 4333, '1.0000', '5.4170', '5.4170', '8.0000', '8.0000', '15.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 (64081, '2022-03-07', 8844, 61022, 4141, NULL, '1.0000', '4.9900', '4.9900', '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 (64082, '2022-03-07', 9726, 61023, 4141, 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 (64083, '2022-03-07', 7753, 61024, 4141, NULL, '1.0000', '3.4000', '3.4000', '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 (64084, '2022-03-07', 1413, 61025, 4141, 22306, '1.0000', '16.0000', '16.0000', '22.5000', '22.5000', '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 (64085, '2022-03-07', 2315, 61026, 4141, 2735, '-183.0000', '0.3300', '0.3300', '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 (64086, '2022-03-07', 2315, 61026, 4141, NULL, '184.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-184.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64087, '2022-03-07', 7762, 61027, 4141, NULL, '1.0000', '1.5000', '1.5000', '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 (64088, '2022-03-07', 1631, 61028, 4141, 18811, '2.0000', '37.6948', '37.6948', '18.0000', '18.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 (64089, '2022-03-07', 1631, 61028, 4141, NULL, '1.0000', '37.6948', '37.6948', '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 (64090, '2022-03-07', 2315, 61029, 4141, 2735, '-183.0000', '0.3300', '0.3300', '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 (64091, '2022-03-07', 2315, 61029, 4141, NULL, '184.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-184.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64092, '2022-03-07', 7753, 61030, 4141, NULL, '1.0000', '3.4000', '3.4000', '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 (64093, '2022-03-07', 8009, 61031, 4141, NULL, '15.0000', '5.0000', '5.0000', '11.2000', '11.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 (64094, '2022-03-07', 2251, 61032, 4141, 2788, '-8.0000', '10.9700', '10.9700', '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 (64095, '2022-03-07', 2251, 61032, 4141, NULL, '9.0000', '10.9700', '10.9700', '16.0000', '16.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 (64096, '2022-03-07', 7713, 61033, 4141, NULL, '4.0000', '0.3800', '0.3800', '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 (64097, '2022-03-07', 7385, 61034, 4141, NULL, '4.0000', '2.0000', '2.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 (64098, '2022-03-07', 7447, 61035, 4141, NULL, '8.0000', '19.1100', '19.1100', '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 (64099, '2022-03-07', 2379, 61036, 4142, 50941, '1.0000', '1.8772', '1.8772', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64100, '2022-03-07', 1425, 61037, 4142, 50925, '1.0000', '7.0215', '7.0215', '8.5800', '8.5800', '0.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64101, '2022-03-07', 2511, 61038, 4142, 49526, '1.0000', '8.8545', '8.8545', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64102, '2022-03-07', 8745, 61039, 4142, 40378, '1.0000', '8.5371', '8.5371', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64103, '2022-03-07', 2159, 61040, 4142, 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 (64104, '2022-03-07', 2152, 61041, 4142, 33041, '1.0000', '14.0800', '14.0800', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64105, '2022-03-07', 1689, 61042, 4142, 49118, '1.0000', '13.4086', '13.4086', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64106, '2022-03-07', 2916, 61043, 4142, 49229, '1.0000', '14.3789', '14.3789', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64107, '2022-03-07', 7533, 61044, 4142, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64108, '2022-03-07', 2003, 61045, 4142, 32623, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64109, '2022-03-07', 2250, 61046, 4142, 45125, '1.0000', '6.9096', '6.9096', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64110, '2022-03-07', 9736, 61047, 4142, 46030, '1.0000', '3.9100', '3.9100', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64111, '2022-03-07', 8202, 61048, 4142, NULL, '1.0000', '1.6600', '1.6600', '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 (64112, '2022-03-07', 1602, 61049, 4142, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64113, '2022-03-07', 2602, 61050, 4142, NULL, '2.0000', '4.0000', '4.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 (64114, '2022-03-07', 7394, 61051, 4142, 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 (64115, '2022-03-07', 1828, 61052, 4142, 33003, '3.0000', '0.7300', '0.7300', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64116, '2022-03-07', 2633, 61053, 4142, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64117, '2022-03-07', 1839, 61054, 4142, 50897, '1.0000', '7.4147', '7.4147', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64118, '2022-03-07', 1602, 61055, 4142, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64119, '2022-03-07', 2858, 61056, 4142, 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 (64120, '2022-03-07', 2135, 61057, 4142, 16894, '1.0000', '1.2424', '1.2424', '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 (64121, '2022-03-07', 2697, 61058, 4142, 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 (64122, '2022-03-07', 1863, 61059, 4142, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64123, '2022-03-07', 1499, 61060, 4142, 45093, '1.0000', '0.4164', '0.4164', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64124, '2022-03-07', 2454, 61061, 4143, 51346, '2.0000', '9.0840', '9.0840', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64125, '2022-03-07', 8745, 61062, 4143, 51019, '1.0000', '12.5000', '12.5000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64126, '2022-03-07', 2643, 61063, 4143, 49624, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64127, '2022-03-07', 1665, 61064, 4143, 51312, '1.0000', '1.1342', '1.1342', '1.5700', '1.5700', '47.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64128, '2022-03-07', 1342, 61065, 4143, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64129, '2022-03-07', 1602, 61066, 4143, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64130, '2022-03-07', 7564, 61067, 4143, NULL, '1.0000', '0.6400', '0.6400', '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 (64131, '2022-03-07', 1337, 61068, 4143, NULL, '1.0000', '2.0000', '2.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 (64132, '2022-03-07', 2315, 61069, 4143, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '103.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64133, '2022-03-07', 2348, 61070, 4143, 51333, '1.0000', '26.9800', '26.9800', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64134, '2022-03-07', 1812, 61071, 4143, NULL, '1.0000', '7.9262', '7.9262', '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 (64135, '2022-03-07', 7782, 61072, 4143, 39829, '1.0000', '2.4468', '2.4468', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64136, '2022-03-07', 9763, 61073, 4143, 51336, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64137, '2022-03-07', 7782, 61074, 4143, 39829, '1.0000', '2.4468', '2.4468', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64138, '2022-03-07', 1935, 61075, 4143, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64139, '2022-03-07', 2293, 61076, 4143, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '62.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64140, '2022-03-07', 9105, 61077, 4143, NULL, '3.0000', '0.5800', '0.5800', '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 (64141, '2022-03-07', 7931, 61078, 4143, NULL, '1.0000', '0.2500', '0.2500', '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 (64142, '2022-03-07', 2821, 61079, 4143, NULL, '1.0000', '3.9374', '3.9374', '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 (64143, '2022-03-07', 7411, 61080, 4143, NULL, '1.0000', '1.3013', '1.3013', '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 (64144, '2022-03-07', 1653, 61081, 4143, 19862, '5.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 (64145, '2022-03-07', 8657, 61082, 4143, NULL, '1.0000', '7.5200', '7.5200', '10.3000', '10.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 (64146, '2022-03-07', 8000, 61083, 4143, NULL, '1.0000', '25.8200', '25.8200', '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 (64147, '2022-03-07', 8135, 61084, 4143, 39770, '1.0000', '3.1226', '3.1226', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64148, '2022-03-07', 9274, 61085, 4143, NULL, '1.0000', '0.2500', '0.2500', '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 (64149, '2022-03-07', 9794, 61086, 4143, 51219, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64150, '2022-03-07', 2315, 61087, 4143, 49255, '4.0000', '0.4851', '0.4851', '0.8000', '0.8000', '100.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64151, '2022-03-07', 1602, 61088, 4143, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64152, '2022-03-07', 9732, 61089, 4143, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64153, '2022-03-07', 7514, 61090, 4143, NULL, '1.0000', '2.2500', '2.2500', '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 (64154, '2022-03-07', 2361, 61091, 4143, 42543, '1.0000', '0.4744', '0.4744', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64155, '2022-03-07', 2891, 61092, 4143, 51378, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64156, '2022-03-07', 1575, 61093, 4143, NULL, '1.0000', '90.0000', '90.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 (64157, '2022-03-07', 1580, 61094, 4143, 51316, '2.0000', '1.1598', '1.1598', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64158, '2022-03-07', 9109, 61095, 4143, 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 (64159, '2022-03-07', 1411, 61096, 4143, 50526, '3.0000', '25.9758', '25.9758', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64160, '2022-03-07', 1411, 61096, 4143, 50108, '2.0000', '25.9758', '25.9758', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64161, '2022-03-07', 7641, 61097, 4143, NULL, '1.0000', '1.9000', '1.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 (64162, '2022-03-07', 2740, 61098, 4143, 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 (64163, '2022-03-07', 1454, 61099, 4143, NULL, '1.0000', '10.9000', '10.9000', '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 (64164, '2022-03-07', 7482, 61100, 4143, NULL, '1.0000', '2.5019', '2.5019', '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 (64165, '2022-03-07', 3067, 61101, 4143, 25025, '1.0000', '0.7000', '0.7000', '0.5000', '0.5000', '23.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 (64166, '2022-03-07', 2242, 61102, 4143, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64167, '2022-03-07', 1651, 61103, 4143, 49333, '1.0000', '6.3300', '6.3300', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64168, '2022-03-07', 2167, 61104, 4143, NULL, '1.0000', '2.0277', '2.0277', '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 (64169, '2022-03-07', 2169, 61105, 4143, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64170, '2022-03-07', 7339, 61106, 4143, NULL, '1.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64171, '2022-03-07', 8039, 61107, 4143, NULL, '1.0000', '12.9000', '12.9000', '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 (64172, '2022-03-07', 2612, 61108, 4143, NULL, '1.0000', '7.1600', '7.1600', '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 (64173, '2022-03-07', 1637, 61109, 4143, NULL, '1.0000', '-41.1667', '-41.1667', '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 (64174, '2022-03-07', 8413, 61110, 4143, NULL, '1.0000', '-56.8125', '-56.8125', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64175, '2022-03-07', 1411, 61111, 4143, 50526, '3.0000', '25.9758', '25.9758', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64176, '2022-03-07', 1411, 61111, 4143, 50108, '2.0000', '25.9758', '25.9758', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64177, '2022-03-07', 1855, 61112, 4143, NULL, '1.0000', '1.5003', '1.5003', '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 (64178, '2022-03-07', 1905, 61113, 4143, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64179, '2022-03-07', 2427, 61114, 4143, NULL, '1.0000', '5.8000', '5.8000', '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 (64180, '2022-03-07', 8866, 61115, 4143, NULL, '1.0000', '0.4300', '0.4300', '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 (64181, '2022-03-07', 1855, 61116, 4143, NULL, '1.0000', '1.5003', '1.5003', '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 (64182, '2022-03-07', 1307, 61117, 4143, NULL, '1.0000', '-0.0521', '-0.0521', '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 (64183, '2022-03-07', 9832, 61118, 4143, NULL, '1.0000', '1.5600', '1.5600', '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 (64184, '2022-03-07', 2221, 61119, 4143, 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 (64185, '2022-03-07', 9831, 61120, 4143, NULL, '1.0000', '1.5600', '1.5600', '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 (64186, '2022-03-07', 9794, 61121, 4143, 51219, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64187, '2022-03-07', 2643, 61122, 4143, 49624, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64188, '2022-03-07', 2169, 61123, 4143, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64189, '2022-03-07', 9748, 61124, 4144, 46047, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64190, '2022-03-07', 2262, 61125, 4144, 49069, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64191, '2022-03-07', 2135, 61126, 4144, 16894, '2.0000', '1.2424', '1.2424', '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 (64192, '2022-03-07', 1935, 61127, 4145, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64193, '2022-03-07', 9828, 61128, 4145, NULL, '1.0000', '2.9100', '2.9100', '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 (64194, '2022-03-07', 9831, 61129, 4145, NULL, '1.0000', '1.5600', '1.5600', '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 (64195, '2022-03-07', 1307, 61130, 4145, NULL, '1.0000', '-0.0521', '-0.0521', '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 (64196, '2022-03-07', 2293, 61131, 4145, 51215, '4.0000', '10.2680', '10.2680', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64197, '2022-03-07', 2315, 61132, 4145, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '98.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64198, '2022-03-07', 1651, 61133, 4145, 49333, '1.0000', '6.3300', '6.3300', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64199, '2022-03-07', 1311, 61134, 4145, 49359, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '11.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64200, '2022-03-07', 1489, 61135, 4145, 50070, '1.0000', '36.0600', '36.0600', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64201, '2022-03-07', 1687, 61136, 4145, 51327, '1.0000', '12.4146', '12.4146', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64202, '2022-03-07', 9634, 61137, 4145, NULL, '3.0000', '4.8000', '4.8000', '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 (64203, '2022-03-07', 1914, 61138, 4145, 48161, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64204, '2022-03-07', 8913, 61139, 4146, NULL, '1.0000', '15.1700', '15.1700', '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 (64205, '2022-03-07', 7616, 61140, 4146, NULL, '1.0000', '21.5000', '21.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 (64206, '2022-03-07', 8608, 61141, 4146, NULL, '1.0000', '0.9000', '0.9000', '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 (64207, '2022-03-07', 7576, 61142, 4146, NULL, '2.0000', '1.6300', '1.6300', '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 (64208, '2022-03-07', 8970, 61143, 4146, 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 (64209, '2022-03-07', 7673, 61144, 4146, NULL, '1.0000', '16.8000', '16.8000', '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 (64210, '2022-03-07', 8596, 61145, 4146, 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 (64211, '2022-03-07', 7743, 61146, 4146, NULL, '1.0000', '1.3100', '1.3100', '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 (64212, '2022-03-07', 8360, 61147, 4146, NULL, '1.0000', '3.2300', '3.2300', '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 (64213, '2022-03-07', 1840, 61148, 4146, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (64214, '2022-03-07', 1841, 61149, 4146, NULL, '3.0000', '142.5780', '142.5780', '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 (64215, '2022-03-07', 7899, 61150, 4146, NULL, '1.0000', '3.3000', '3.3000', '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 (64216, '2022-03-07', 7708, 61151, 4146, NULL, '1.0000', '7.8000', '7.8000', '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 (64217, '2022-03-07', 9012, 61152, 4146, NULL, '1.0000', '24.0000', '24.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 (64218, '2022-03-07', 1765, 61153, 4146, 3175, '-6.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 (64219, '2022-03-07', 1765, 61153, 4146, NULL, '7.0000', '90.0000', '90.0000', '7.5000', '7.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 (64220, '2022-03-07', 7514, 61154, 4146, NULL, '2.0000', '2.2500', '2.2500', '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 (64221, '2022-03-07', 8193, 61155, 4146, NULL, '1.0000', '25.8000', '25.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 (64222, '2022-03-07', 9245, 61156, 4146, NULL, '1.0000', '6.6100', '6.6100', '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 (64223, '2022-03-07', 7703, 61157, 4146, NULL, '1.0000', '22.9900', '22.9900', '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 (64224, '2022-03-07', 9272, 61158, 4146, NULL, '1.0000', '3.1000', '3.1000', '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 (64225, '2022-03-07', 2945, 61159, 4147, 48462, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64226, '2022-03-07', 1557, 61160, 4147, NULL, '1.0000', '7.3662', '7.3662', '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 (64227, '2022-03-07', 9695, 61161, 4147, NULL, '1.0000', '4.5000', '4.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 (64228, '2022-03-07', 9732, 61162, 4147, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64229, '2022-03-07', 1519, 61163, 4148, 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 (64230, '2022-03-08', 2169, 61164, 4149, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64231, '2022-03-08', 1463, 61165, 4149, 32537, '1.0000', '18.5000', '18.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64232, '2022-03-08', 3033, 61166, 4149, 23983, '1.0000', '22.0000', '22.0000', '30.0000', '30.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 (64233, '2022-03-08', 3033, 61166, 4149, NULL, '1.0000', '22.0000', '22.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 (64234, '2022-03-08', 7328, 61167, 4149, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (64235, '2022-03-08', 2289, 61168, 4149, NULL, '4.0000', '0.2222', '0.2222', '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 (64236, '2022-03-08', 2660, 61169, 4149, 49361, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64237, '2022-03-08', 9695, 61170, 4149, NULL, '1.0000', '4.5000', '4.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 (64238, '2022-03-08', 2415, 61171, 4149, 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 (64239, '2022-03-08', 1419, 61172, 4149, NULL, '1.0000', '13.1040', '13.1040', '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 (64240, '2022-03-08', 2454, 61173, 4149, 51346, '1.0000', '9.0840', '9.0840', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64241, '2022-03-08', 2135, 61174, 4149, NULL, '1.0000', '2.4732', '2.4732', '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 (64242, '2022-03-08', 9330, 61175, 4149, 51318, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64243, '2022-03-08', 1694, 61176, 4149, 48694, '1.0000', '7.6718', '7.6718', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64244, '2022-03-08', 2609, 61177, 4149, 38549, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64245, '2022-03-08', 2103, 61178, 4149, 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 (64246, '2022-03-08', 2237, 61179, 4150, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64247, '2022-03-08', 1342, 61180, 4150, 33153, '1.0000', '22.5105', '22.5105', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64248, '2022-03-08', 1450, 61181, 4150, NULL, '6.0000', '0.8900', '0.8900', '1.2000', '1.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 (64249, '2022-03-08', 1901, 61182, 4150, NULL, '1.0000', '2.0100', '2.0100', '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 (64250, '2022-03-08', 9740, 61183, 4150, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64251, '2022-03-08', 9821, 61184, 4150, NULL, '1.0000', '1.4500', '1.4500', '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 (64252, '2022-03-08', 1404, 61185, 4150, 48988, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64253, '2022-03-08', 2083, 61186, 4150, 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 (64254, '2022-03-08', 7482, 61187, 4150, NULL, '1.0000', '2.5019', '2.5019', '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 (64255, '2022-03-08', 1856, 61188, 4151, NULL, '1.0000', '5.5569', '5.5569', '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 (64256, '2022-03-08', 2389, 61189, 4151, 23156, '1.0000', '3.1400', '3.1400', '4.5000', '4.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 (64257, '2022-03-08', 1612, 61190, 4151, 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 (64258, '2022-03-08', 8622, 61191, 4151, 51208, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64259, '2022-03-08', 8208, 61192, 4151, NULL, '2.0000', '33.0000', '33.0000', '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 (64260, '2022-03-08', 9109, 61193, 4151, 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 (64261, '2022-03-08', 1863, 61194, 4151, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64262, '2022-03-08', 8774, 61195, 4152, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64263, '2022-03-08', 9758, 61196, 4152, NULL, '1.0000', '3.1400', '3.1400', '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 (64264, '2022-03-08', 2416, 61197, 4153, 50534, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64265, '2022-03-08', 9747, 61198, 4154, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64266, '2022-03-08', 9736, 61199, 4155, NULL, '1.0000', '3.9100', '3.9100', '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 (64267, '2022-03-08', 1510, 61200, 4156, 18904, '1.0000', '8.8600', '8.8600', '13.0000', '13.0000', '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 (64268, '2022-03-08', 1771, 61201, 4156, 6775, '1.0000', '5.2450', '5.2450', '8.0000', '8.0000', '1.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 (64269, '2022-03-08', 7750, 61202, 4156, NULL, '1.0000', '33.9800', '33.9800', '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 (64270, '2022-03-08', 8200, 61203, 4156, NULL, '2.0000', '6.2600', '6.2600', '8.5000', '8.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 (64271, '2022-03-08', 8279, 61204, 4156, 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 (64272, '2022-03-08', 2315, 61205, 4156, 2735, '-185.0000', '0.3300', '0.3300', '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 (64273, '2022-03-08', 2315, 61205, 4156, NULL, '186.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-186.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64274, '2022-03-08', 7317, 61206, 4156, NULL, '1.0000', '19.5500', '19.5500', '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 (64275, '2022-03-08', 7500, 61207, 4156, 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 (64276, '2022-03-08', 9734, 61208, 4156, NULL, '8.0000', '0.3200', '0.3200', '0.5000', '0.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 (64277, '2022-03-08', 7641, 61209, 4156, NULL, '1.0000', '1.9000', '1.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 (64278, '2022-03-08', 7750, 61210, 4156, NULL, '1.0000', '33.9800', '33.9800', '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 (64279, '2022-03-08', 2287, 61211, 4156, 2947, '-13.0000', '1.8000', '1.8000', '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 (64280, '2022-03-08', 2287, 61211, 4156, NULL, '15.0000', '1.8000', '1.8000', '3.0000', '3.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 (64281, '2022-03-08', 2283, 61212, 4156, 2943, '-9.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 (64282, '2022-03-08', 2283, 61212, 4156, NULL, '10.0000', '1.4300', '1.4300', '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 (64283, '2022-03-08', 9729, 61213, 4156, NULL, '4.0000', '0.6200', '0.6200', '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 (64284, '2022-03-08', 7320, 61214, 4156, NULL, '1.0000', '7.9500', '7.9500', '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 (64285, '2022-03-08', 7334, 61215, 4156, NULL, '6.0000', '8.2300', '8.2300', '11.0000', '11.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 (64286, '2022-03-08', 7993, 61216, 4156, NULL, '1.0000', '41.0000', '41.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64287, '2022-03-08', 7547, 61217, 4156, NULL, '1.0000', '0.0000', '0.0000', '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 (64288, '2022-03-08', 7959, 61218, 4156, NULL, '2.0000', '9.6000', '9.6000', '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 (64289, '2022-03-08', 7799, 61219, 4156, NULL, '1.0000', '6.4000', '6.4000', '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 (64290, '2022-03-08', 8918, 61220, 4156, NULL, '1.0000', '1.0400', '1.0400', '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 (64291, '2022-03-08', 8680, 61221, 4156, NULL, '1.0000', '2.0000', '2.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 (64292, '2022-03-08', 7562, 61222, 4156, NULL, '1.0000', '5.5300', '5.5300', '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 (64293, '2022-03-08', 7967, 61223, 4157, NULL, '1.0000', '7.0000', '7.0000', '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 (64294, '2022-03-08', 9734, 61224, 4157, NULL, '1.0000', '0.3200', '0.3200', '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 (64295, '2022-03-08', 1908, 61225, 4158, 5444, '-33.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 (64296, '2022-03-08', 1908, 61225, 4158, NULL, '34.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (64297, '2022-03-08', 9747, 61226, 4158, NULL, '1.0000', '0.6500', '0.6500', '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 (64298, '2022-03-08', 1779, 61227, 4158, 4898, '-7.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 (64299, '2022-03-08', 1779, 61227, 4158, NULL, '8.0000', '90.0000', '90.0000', '1.0000', '1.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 (64300, '2022-03-08', 7411, 61228, 4158, NULL, '1.0000', '1.3500', '1.3500', '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 (64301, '2022-03-08', 1602, 61229, 4158, 5897, '-115.0000', '6.7859', '6.7859', '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 (64302, '2022-03-08', 1602, 61229, 4158, NULL, '116.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-116.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64303, '2022-03-08', 2379, 61230, 4158, 4032, '-46.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 (64304, '2022-03-08', 2379, 61230, 4158, NULL, '47.0000', '1.5900', '1.5900', '2.5000', '2.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 (64305, '2022-03-08', 9084, 61231, 4159, 49621, '1.0000', '8.9000', '8.9000', '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 (64306, '2022-03-08', 9158, 61232, 4159, NULL, '1.0000', '5.8900', '5.8900', '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 (64307, '2022-03-08', 2924, 61233, 4159, NULL, '1.0000', '6.5800', '6.5800', '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 (64308, '2022-03-08', 9831, 61234, 4159, NULL, '2.0000', '1.5600', '1.5600', '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 (64309, '2022-03-08', 9830, 61235, 4159, 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 (64310, '2022-03-08', 2263, 61236, 4159, 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 (64311, '2022-03-08', 8065, 61237, 4159, NULL, '1.0000', '32.0000', '32.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 (64312, '2022-03-08', 8913, 61238, 4159, NULL, '1.0000', '15.1700', '15.1700', '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 (64313, '2022-03-08', 1602, 61239, 4159, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '36.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64314, '2022-03-08', 7671, 61240, 4159, NULL, '10.0000', '15.5000', '15.5000', '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 (64315, '2022-03-08', 2135, 61241, 4159, NULL, '1.0000', '2.4732', '2.4732', '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 (64316, '2022-03-08', 2416, 61242, 4159, 50534, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64317, '2022-03-08', 1971, 61243, 4159, 49609, '1.0000', '11.0000', '11.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 (64318, '2022-03-08', 1307, 61244, 4159, NULL, '1.0000', '-0.0521', '-0.0521', '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 (64319, '2022-03-08', 2108, 61245, 4159, NULL, '1.0000', '8.6167', '8.6167', '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 (64320, '2022-03-08', 8074, 61246, 4159, NULL, '1.0000', '3.2800', '3.2800', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64321, '2022-03-08', 1302, 61247, 4159, 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 (64322, '2022-03-08', 1646, 61248, 4159, 48591, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64323, '2022-03-08', 9750, 61249, 4159, NULL, '1.0000', '3.3000', '3.3000', '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 (64324, '2022-03-08', 9695, 61250, 4159, NULL, '2.0000', '4.5000', '4.5000', '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 (64325, '2022-03-08', 1584, 61251, 4159, 49619, '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 (64326, '2022-03-08', 2402, 61252, 4159, 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 (64327, '2022-03-08', 2287, 61253, 4159, 48629, '5.0000', '1.8730', '1.8730', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64328, '2022-03-08', 2167, 61254, 4159, NULL, '2.0000', '2.0277', '2.0277', '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 (64329, '2022-03-08', 1533, 61255, 4159, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '13.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64330, '2022-03-08', 2242, 61256, 4159, 48899, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64331, '2022-03-08', 9747, 61257, 4159, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64332, '2022-03-08', 8548, 61258, 4159, NULL, '1.0000', '12.0000', '12.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 (64333, '2022-03-08', 7762, 61259, 4159, NULL, '1.0000', '5.1000', '5.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 (64334, '2022-03-08', 9791, 61260, 4159, 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 (64335, '2022-03-08', 2169, 61261, 4159, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64336, '2022-03-08', 2237, 61262, 4159, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64337, '2022-03-08', 7482, 61263, 4159, NULL, '1.0000', '2.5019', '2.5019', '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 (64338, '2022-03-08', 8622, 61264, 4159, 51208, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64339, '2022-03-08', 2293, 61265, 4159, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '56.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64340, '2022-03-08', 7582, 61266, 4159, NULL, '1.0000', '2.4000', '2.4000', '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 (64341, '2022-03-08', 7328, 61267, 4159, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (64342, '2022-03-08', 2254, 61268, 4159, NULL, '1.0000', '18.9600', '18.9600', '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 (64343, '2022-03-08', 1411, 61269, 4159, 48149, '1.0000', '25.9758', '25.9758', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64344, '2022-03-08', 2169, 61270, 4159, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64345, '2022-03-08', 7712, 61271, 4160, NULL, '1.0000', '-245.5125', '-245.5125', '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 (64346, '2022-03-08', 7756, 61272, 4160, NULL, '1.0000', '18.7452', '18.7452', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64347, '2022-03-08', 9808, 61273, 4160, 50377, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64348, '2022-03-08', 7689, 61274, 4160, NULL, '1.0000', '9.1000', '9.1000', '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 (64349, '2022-03-08', 9092, 61275, 4160, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64350, '2022-03-08', 1557, 61276, 4160, 51255, '1.0000', '7.9200', '7.9200', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64351, '2022-03-08', 7963, 61277, 4160, NULL, '1.0000', '-24.3500', '-24.3500', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64352, '2022-03-08', 8775, 61278, 4160, 43940, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64353, '2022-03-08', 7391, 61279, 4160, NULL, '1.0000', '-26.2683', '-26.2683', '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 (64354, '2022-03-08', 8200, 61280, 4160, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (64355, '2022-03-08', 7954, 61281, 4160, NULL, '4.0000', '412.7272', '412.7272', '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 (64356, '2022-03-08', 7790, 61282, 4160, 38457, '4.0000', '-7.6667', '-7.6667', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64357, '2022-03-08', 8476, 61283, 4160, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (64358, '2022-03-08', 1501, 61284, 4160, 50680, '1.0000', '2.2898', '2.2898', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64359, '2022-03-08', 2648, 61285, 4160, NULL, '1.0000', '3.5337', '3.5337', '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 (64360, '2022-03-08', 8325, 61286, 4160, NULL, '1.0000', '6.3350', '6.3350', '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 (64361, '2022-03-08', 9252, 61287, 4160, 50445, '1.0000', '8.7771', '8.7771', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64362, '2022-03-08', 9252, 61287, 4160, NULL, '1.0000', '8.7771', '8.7771', '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 (64363, '2022-03-08', 8638, 61288, 4160, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64364, '2022-03-08', 7428, 61289, 4160, 51281, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '56.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64365, '2022-03-08', 8608, 61290, 4160, NULL, '1.0000', '5.7400', '5.7400', '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 (64366, '2022-03-08', 7641, 61291, 4160, NULL, '1.0000', '-543.6034', '-543.6034', '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 (64367, '2022-03-08', 7981, 61292, 4160, NULL, '5.0000', '12.3059', '12.3059', '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 (64368, '2022-03-08', 8965, 61293, 4160, NULL, '1.0000', '52.9900', '52.9900', '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 (64369, '2022-03-08', 2296, 61294, 4160, NULL, '1.0000', '12.8812', '12.8812', '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 (64370, '2022-03-08', 9103, 61295, 4160, NULL, '1.0000', '33.2200', '33.2200', '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 (64371, '2022-03-08', 7622, 61296, 4160, NULL, '1.0000', '17.8100', '17.8100', '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 (64372, '2022-03-08', 7514, 61297, 4160, NULL, '2.0000', '97.7006', '97.7006', '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 (64373, '2022-03-08', 7824, 61298, 4160, NULL, '1.0000', '10.0834', '10.0834', '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 (64374, '2022-03-08', 8449, 61299, 4160, NULL, '1.0000', '11.9000', '11.9000', '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 (64375, '2022-03-08', 7516, 61300, 4160, 50691, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64376, '2022-03-08', 7412, 61301, 4160, NULL, '1.0000', '1.5200', '1.5200', '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 (64377, '2022-03-08', 2284, 61302, 4160, 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 (64378, '2022-03-08', 2255, 61303, 4160, NULL, '1.0000', '17.4447', '17.4447', '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 (64379, '2022-03-08', 7984, 61304, 4160, NULL, '1.0000', '23.2750', '23.2750', '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 (64380, '2022-03-08', 1537, 61305, 4161, NULL, '1.0000', '40.2700', '40.2700', '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 (64381, '2022-03-08', 7777, 61306, 4161, 39765, '1.0000', '9.5000', '9.5000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64382, '2022-03-08', 2233, 61307, 4162, 2777, '-24.0000', '19.0200', '19.0200', '29.5000', '29.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 (64383, '2022-03-08', 2233, 61307, 4162, NULL, '25.0000', '19.0200', '19.0200', '29.5000', '29.5000', '-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 (64384, '2022-03-08', 7411, 61308, 4162, NULL, '1.0000', '1.3500', '1.3500', '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 (64385, '2022-03-08', 2272, 61309, 4162, 2932, '-18.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 (64386, '2022-03-08', 2272, 61309, 4162, NULL, '19.0000', '5.5000', '5.5000', '8.0000', '8.0000', '-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 (64387, '2022-03-08', 9834, 61310, 4162, NULL, '2.0000', '1.4500', '1.4500', '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 (64388, '2022-03-08', 2315, 61311, 4162, 2735, '-186.0000', '0.3300', '0.3300', '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 (64389, '2022-03-08', 2315, 61311, 4162, NULL, '188.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-188.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64390, '2022-03-08', 9482, 61312, 4162, 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 (64391, '2022-03-08', 2302, 61313, 4162, 2963, '-35.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 (64392, '2022-03-08', 2302, 61313, 4162, NULL, '36.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (64393, '2022-03-08', 9158, 61314, 4162, NULL, '1.0000', '5.8900', '5.8900', '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 (64394, '2022-03-08', 2169, 61315, 4162, 10737, '-53.0000', '3.8397', '3.8397', '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 (64395, '2022-03-08', 2169, 61315, 4162, NULL, '54.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64396, '2022-03-08', 7411, 61316, 4162, NULL, '1.0000', '1.3500', '1.3500', '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 (64397, '2022-03-08', 2266, 61317, 4162, 2801, '-7.0000', '6.4900', '6.4900', '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 (64398, '2022-03-08', 2266, 61317, 4162, NULL, '8.0000', '6.4900', '6.4900', '11.5000', '11.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 (64399, '2022-03-08', 9735, 61318, 4162, 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 (64400, '2022-03-08', 1840, 61319, 4162, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (64401, '2022-03-08', 2289, 61320, 4162, 2949, '-77.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 (64402, '2022-03-08', 2289, 61320, 4162, NULL, '79.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64403, '2022-03-08', 8079, 61321, 4162, NULL, '1.0000', '14.3600', '14.3600', '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 (64404, '2022-03-08', 1524, 61322, 4162, NULL, '1.0000', '3.8400', '3.8400', '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 (64405, '2022-03-08', 1841, 61323, 4162, NULL, '1.0000', '142.5780', '142.5780', '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 (64406, '2022-03-08', 1651, 61324, 4162, 3222, '-46.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 (64407, '2022-03-08', 1651, 61324, 4162, NULL, '47.0000', '6.7039', '6.7039', '10.5000', '10.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 (64408, '2022-03-08', 1855, 61325, 4162, 22241, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '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 (64409, '2022-03-08', 1425, 61326, 4162, NULL, '1.0000', '6.4405', '6.4405', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64410, '2022-03-08', 1537, 61327, 4162, 12923, '-2.0000', '40.2700', '40.2700', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64411, '2022-03-08', 1537, 61327, 4162, NULL, '3.0000', '40.2700', '40.2700', '56.0000', '56.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 (64412, '2022-03-08', 8444, 61328, 4162, NULL, '1.0000', '1.6000', '1.6000', '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 (64413, '2022-03-08', 7777, 61329, 4162, NULL, '1.0000', '9.5000', '9.5000', '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 (64414, '2022-03-08', 1831, 61330, 4162, NULL, '1.0000', '8.4400', '8.4400', '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 (64415, '2022-03-08', 1746, 61331, 4162, 6675, '2.0000', '33.8760', '33.8760', '5.0000', '5.0000', '19.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 (64416, '2022-03-08', 2003, 61332, 4162, 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 (64417, '2022-03-08', 1590, 61333, 4162, 22260, '2.0000', '1.7100', '1.7100', '3.0000', '3.0000', '13.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 (64418, '2022-03-08', 1580, 61334, 4162, 7598, '-33.0000', '0.9900', '0.9900', '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 (64419, '2022-03-08', 1580, 61334, 4162, NULL, '35.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64420, '2022-03-08', 1840, 61335, 4162, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (64421, '2022-03-08', 2242, 61336, 4162, 22259, '1.0000', '0.4800', '0.4800', '1.0000', '1.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 (64422, '2022-03-08', 1529, 61337, 4162, 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 (64423, '2022-03-08', 2916, 61338, 4162, 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 (64424, '2022-03-08', 1905, 61339, 4162, 5443, '-14.0000', '0.4000', '0.4000', '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 (64425, '2022-03-08', 1905, 61339, 4162, NULL, '15.0000', '0.4000', '0.4000', '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 (64426, '2022-03-08', 1311, 61340, 4162, 5437, '-9.0000', '79.3908', '79.3908', '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 (64427, '2022-03-08', 1311, 61340, 4162, NULL, '10.0000', '79.3908', '79.3908', '0.5000', '0.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 (64428, '2022-03-08', 1695, 61341, 4162, 12925, '-8.0000', '15.5000', '15.5000', '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 (64429, '2022-03-08', 1695, 61341, 4162, NULL, '9.0000', '15.5000', '15.5000', '22.5000', '22.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 (64430, '2022-03-08', 2169, 61342, 4162, 10737, '-53.0000', '3.8397', '3.8397', '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 (64431, '2022-03-08', 2169, 61342, 4162, NULL, '54.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64432, '2022-03-08', 9831, 61343, 4162, NULL, '3.0000', '1.5600', '1.5600', '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 (64433, '2022-03-08', 1564, 61344, 4162, 18921, '4.0000', '2.6000', '2.6000', '4.0000', '4.0000', '74.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 (64434, '2022-03-08', 9695, 61345, 4162, NULL, '1.0000', '4.5000', '4.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 (64435, '2022-03-08', 9747, 61346, 4162, NULL, '1.0000', '0.6500', '0.6500', '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 (64436, '2022-03-08', 2228, 61347, 4162, 1703, '-3.0000', '25.0000', '25.0000', '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 (64437, '2022-03-08', 2228, 61347, 4162, NULL, '4.0000', '25.0000', '25.0000', '29.0000', '29.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 (64438, '2022-03-08', 2169, 61348, 4162, 10737, '-53.0000', '3.8397', '3.8397', '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 (64439, '2022-03-08', 2169, 61348, 4162, NULL, '55.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-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 (64440, '2022-03-08', 2293, 61349, 4162, 22262, '2.0000', '1.4400', '1.4400', '1.5000', '1.5000', '73.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 (64441, '2022-03-08', 1519, 61350, 4162, 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 (64442, '2022-03-08', 7385, 61351, 4162, 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 (64443, '2022-03-08', 2730, 61352, 4162, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '29.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 (64444, '2022-03-08', 7958, 61353, 4163, NULL, '1.0000', '3.7500', '3.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 (64445, '2022-03-08', 9300, 61354, 4164, NULL, '1.0000', '3.0968', '3.0968', '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 (64446, '2022-03-08', 7548, 61355, 4164, NULL, '1.0000', '3.2042', '3.2042', '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 (64447, '2022-03-08', 8243, 61356, 4164, NULL, '2.0000', '1.1400', '1.1400', '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 (64448, '2022-03-08', 7509, 61357, 4164, 50686, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64449, '2022-03-08', 7585, 61358, 4164, NULL, '1.0000', '-3.1011', '-3.1011', '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 (64450, '2022-03-08', 2061, 61359, 4164, 50059, '1.0000', '10.7550', '10.7550', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64451, '2022-03-08', 1981, 61360, 4164, NULL, '1.0000', '8.5000', '8.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 (64452, '2022-03-08', 7590, 61361, 4164, NULL, '1.0000', '4.3600', '4.3600', '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 (64453, '2022-03-08', 1339, 61362, 4164, NULL, '1.0000', '1.6199', '1.6199', '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 (64454, '2022-03-08', 1703, 61363, 4164, 46164, '1.0000', '7.3400', '7.3400', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64455, '2022-03-08', 9092, 61364, 4164, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64456, '2022-03-08', 8966, 61365, 4164, NULL, '1.0000', '6.6999', '6.6999', '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 (64457, '2022-03-08', 8244, 61366, 4164, NULL, '1.0000', '37.4100', '37.4100', '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 (64458, '2022-03-08', 7954, 61367, 4164, NULL, '4.0000', '412.7272', '412.7272', '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 (64459, '2022-03-08', 7564, 61368, 4164, NULL, '2.0000', '-19717.2224', '-19717.2224', '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 (64460, '2022-03-08', 7799, 61369, 4164, NULL, '1.0000', '-0.9144', '-0.9144', '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 (64461, '2022-03-08', 2315, 61370, 4164, NULL, '10.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (64462, '2022-03-08', 1432, 61371, 4165, 49472, '1.0000', '9.2415', '9.2415', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64463, '2022-03-08', 1695, 61372, 4165, 50921, '1.0000', '40.9542', '40.9542', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64464, '2022-03-08', 7741, 61373, 4165, NULL, '1.0000', '48.6292', '48.6292', '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 (64465, '2022-03-08', 2503, 61374, 4165, 40162, '1.0000', '55.0258', '55.0258', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64466, '2022-03-08', 1420, 61375, 4165, 46784, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64467, '2022-03-08', 2088, 61376, 4165, 50894, '1.0000', '1.4388', '1.4388', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64468, '2022-03-08', 2169, 61377, 4165, 45082, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64469, '2022-03-08', 7947, 61378, 4165, NULL, '2.0000', '14.4400', '14.4400', '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 (64470, '2022-03-08', 9734, 61379, 4165, 50862, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '91.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64471, '2022-03-08', 7524, 61380, 4165, NULL, '1.0000', '11.9500', '11.9500', '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 (64472, '2022-03-08', 7444, 61381, 4165, 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 (64473, '2022-03-08', 1602, 61382, 4165, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64474, '2022-03-08', 1564, 61383, 4165, 44767, '2.0000', '10.2805', '10.2805', '4.0000', '4.0000', '108.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64475, '2022-03-08', 2020, 61384, 4165, 50868, '2.0000', '4.7498', '4.7498', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64476, '2022-03-08', 1856, 61385, 4165, 49249, '1.0000', '4.6828', '4.6828', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64477, '2022-03-08', 2003, 61386, 4165, 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 (64478, '2022-03-08', 2635, 61387, 4165, 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 (64479, '2022-03-08', 1888, 61388, 4165, 50880, '1.0000', '16.2377', '16.2377', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64480, '2022-03-08', 1812, 61389, 4165, 50930, '1.0000', '7.9743', '7.9743', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64481, '2022-03-08', 2242, 61390, 4166, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64482, '2022-03-08', 7483, 61391, 4166, NULL, '1.0000', '0.4200', '0.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 (64483, '2022-03-08', 2379, 61392, 4166, NULL, '1.0000', '1.0877', '1.0877', '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 (64484, '2022-03-08', 1871, 61393, 4166, NULL, '10.0000', '2.2081', '2.2081', '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 (64485, '2022-03-08', 1646, 61394, 4166, 48591, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64486, '2022-03-08', 7333, 61395, 4166, NULL, '2.0000', '13.5000', '13.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 (64487, '2022-03-08', 7483, 61396, 4167, NULL, '1.0000', '0.4200', '0.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 (64488, '2022-03-09', 2276, 61397, 4168, 2936, '-1.0000', '55.1000', '55.1000', '73.0000', '73.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64489, '2022-03-09', 2276, 61397, 4168, NULL, '2.0000', '55.1000', '55.1000', '73.0000', '73.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 (64490, '2022-03-09', 2916, 61398, 4168, 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 (64491, '2022-03-09', 9776, 61399, 4168, NULL, '1.0000', '7.6700', '7.6700', '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 (64492, '2022-03-09', 1502, 61400, 4168, 6307, '-5.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 (64493, '2022-03-09', 1502, 61400, 4168, NULL, '6.0000', '7.8000', '7.8000', '11.0000', '11.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 (64494, '2022-03-09', 1532, 61401, 4168, 22261, '3.0000', '0.8000', '0.8000', '1.5000', '1.5000', '24.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 (64495, '2022-03-09', 2248, 61402, 4168, 2785, '-4.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 (64496, '2022-03-09', 2248, 61402, 4168, NULL, '5.0000', '2.5000', '2.5000', '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 (64497, '2022-03-09', 7954, 61403, 4168, 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 (64498, '2022-03-09', 2442, 61404, 4169, 5312, '-5.0000', '4.8000', '4.8000', '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 (64499, '2022-03-09', 2442, 61404, 4169, NULL, '6.0000', '4.8000', '4.8000', '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 (64500, '2022-03-09', 7514, 61405, 4169, NULL, '1.0000', '2.2500', '2.2500', '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 (64501, '2022-03-09', 7848, 61406, 4169, NULL, '1.0000', '1.3500', '1.3500', '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 (64502, '2022-03-09', 7886, 61407, 4169, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64503, '2022-03-09', 8753, 61408, 4169, 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 (64504, '2022-03-09', 8135, 61409, 4169, NULL, '1.0000', '5.4500', '5.4500', '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 (64505, '2022-03-09', 8308, 61410, 4169, NULL, '1.0000', '2.0800', '2.0800', '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 (64506, '2022-03-09', 9207, 61411, 4169, NULL, '1.0000', '4.6000', '4.6000', '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 (64507, '2022-03-09', 8915, 61412, 4169, 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 (64508, '2022-03-09', 7675, 61413, 4169, NULL, '1.0000', '11.4300', '11.4300', '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 (64509, '2022-03-09', 7712, 61414, 4169, NULL, '1.0000', '26.0000', '26.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 (64510, '2022-03-09', 9734, 61415, 4169, NULL, '4.0000', '0.3200', '0.3200', '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 (64511, '2022-03-09', 7894, 61416, 4169, NULL, '1.0000', '3.8000', '3.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 (64512, '2022-03-09', 1334, 61417, 4169, 230, '2.0000', '0.7000', '0.7000', '2.0000', '2.0000', '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 (64513, '2022-03-09', 1420, 61418, 4169, 20658, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (64514, '2022-03-09', 8454, 61419, 4169, NULL, '1.0000', '4.1500', '4.1500', '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 (64515, '2022-03-09', 7675, 61420, 4169, NULL, '1.0000', '11.4300', '11.4300', '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 (64516, '2022-03-09', 7353, 61421, 4169, NULL, '3.0000', '0.1900', '0.1900', '0.6000', '0.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 (64517, '2022-03-09', 9098, 61422, 4169, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64518, '2022-03-09', 7401, 61423, 4169, 33815, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64519, '2022-03-09', 1819, 61424, 4169, 18240, '-2.0000', '5.5930', '5.5930', '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 (64520, '2022-03-09', 1819, 61424, 4169, NULL, '3.0000', '5.5930', '5.5930', '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 (64521, '2022-03-09', 7832, 61425, 4169, NULL, '1.0000', '10.0000', '10.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 (64522, '2022-03-09', 8721, 61426, 4169, NULL, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64523, '2022-03-09', 8775, 61427, 4169, NULL, '1.0000', '2.6000', '2.6000', '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 (64524, '2022-03-09', 8889, 61428, 4170, NULL, '1.0000', '34.0000', '34.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 (64525, '2022-03-09', 7648, 61429, 4170, NULL, '1.0000', '5.4000', '5.4000', '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 (64526, '2022-03-09', 2761, 61430, 4170, 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 (64527, '2022-03-09', 2340, 61431, 4170, 49311, '1.0000', '7.4200', '7.4200', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64528, '2022-03-09', 2617, 61432, 4170, 42533, '3.0000', '4.4000', '4.4000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64529, '2022-03-09', 1805, 61433, 4170, NULL, '1.0000', '15.0770', '15.0770', '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 (64530, '2022-03-09', 1806, 61434, 4170, 51376, '2.0000', '29.2252', '29.2252', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64531, '2022-03-09', 2237, 61435, 4170, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64532, '2022-03-09', 9758, 61436, 4170, NULL, '1.0000', '3.1400', '3.1400', '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 (64533, '2022-03-09', 9683, 61437, 4170, 51021, '1.0000', '3.2255', '3.2255', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64534, '2022-03-09', 7743, 61438, 4170, NULL, '2.0000', '7.3900', '7.3900', '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 (64535, '2022-03-09', 1806, 61439, 4170, 51376, '1.0000', '29.2252', '29.2252', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64536, '2022-03-09', 2068, 61440, 4170, NULL, '1.0000', '11.8658', '11.8658', '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 (64537, '2022-03-09', 2286, 61441, 4170, 50523, '1.0000', '4.4402', '4.4402', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64538, '2022-03-09', 2242, 61442, 4170, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64539, '2022-03-09', 1501, 61443, 4170, NULL, '1.0000', '2.1784', '2.1784', '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 (64540, '2022-03-09', 2169, 61444, 4170, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64541, '2022-03-09', 9748, 61445, 4170, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64542, '2022-03-09', 1699, 61446, 4171, NULL, '1.0000', '3.2000', '3.2000', '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 (64543, '2022-03-09', 9828, 61447, 4171, NULL, '1.0000', '2.9100', '2.9100', '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 (64544, '2022-03-09', 9831, 61448, 4171, NULL, '1.0000', '1.5600', '1.5600', '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 (64545, '2022-03-09', 2135, 61449, 4171, NULL, '1.0000', '2.4732', '2.4732', '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 (64546, '2022-03-09', 8079, 61450, 4171, NULL, '1.0000', '14.3600', '14.3600', '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 (64547, '2022-03-09', 2298, 61451, 4171, NULL, '1.0000', '4.1383', '4.1383', '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 (64548, '2022-03-09', 2283, 61452, 4171, 51324, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64549, '2022-03-09', 2754, 61453, 4171, 18938, '4.0000', '0.0800', '0.0800', '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 (64550, '2022-03-09', 1333, 61454, 4171, 31107, '1.0000', '0.6500', '0.6500', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64551, '2022-03-09', 2660, 61455, 4171, 49361, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64552, '2022-03-09', 1935, 61456, 4171, 49259, '3.0000', '0.8402', '0.8402', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64553, '2022-03-09', 2315, 61457, 4171, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '96.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64554, '2022-03-09', 1454, 61458, 4171, NULL, '1.0000', '10.9000', '10.9000', '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 (64555, '2022-03-09', 1704, 61459, 4171, 51395, '1.0000', '27.2300', '27.2300', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64556, '2022-03-09', 1704, 61459, 4171, NULL, '1.0000', '27.2300', '27.2300', '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 (64557, '2022-03-09', 1856, 61460, 4171, NULL, '1.0000', '5.5569', '5.5569', '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 (64558, '2022-03-09', 2491, 61461, 4171, 50232, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64559, '2022-03-09', 1608, 61462, 4171, 51204, '1.0000', '3.9758', '3.9758', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64560, '2022-03-09', 2085, 61463, 4171, NULL, '7.0000', '3.1057', '3.1057', '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 (64561, '2022-03-09', 7981, 61464, 4171, NULL, '5.0000', '6.0000', '6.0000', '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 (64562, '2022-03-09', 1884, 61465, 4171, NULL, '1.0000', '-0.4104', '-0.4104', '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 (64563, '2022-03-09', 1956, 61466, 4171, 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 (64564, '2022-03-09', 1519, 61467, 4171, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64565, '2022-03-09', 1783, 61468, 4171, 50119, '1.0000', '40.5357', '40.5357', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64566, '2022-03-09', 7513, 61469, 4171, NULL, '1.0000', '7.1000', '7.1000', '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 (64567, '2022-03-09', 1772, 61470, 4171, 50227, '1.0000', '5.9152', '5.9152', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64568, '2022-03-09', 2374, 61471, 4171, 49637, '1.0000', '6.1000', '6.1000', '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 (64569, '2022-03-09', 2104, 61472, 4171, 22380, '2.0000', '0.2000', '0.2000', '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 (64570, '2022-03-09', 9813, 61473, 4171, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64571, '2022-03-09', 9750, 61474, 4171, NULL, '1.0000', '3.3000', '3.3000', '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 (64572, '2022-03-09', 1840, 61475, 4171, NULL, '2.0000', '0.2400', '0.2400', '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 (64573, '2022-03-09', 2299, 61476, 4171, 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 (64574, '2022-03-09', 2608, 61477, 4171, 40127, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64575, '2022-03-09', 9579, 61478, 4171, 51028, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64576, '2022-03-09', 1564, 61479, 4171, NULL, '3.0000', '3.4988', '3.4988', '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 (64577, '2022-03-09', 1564, 61480, 4171, NULL, '3.0000', '3.4988', '3.4988', '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 (64578, '2022-03-09', 9695, 61481, 4171, NULL, '1.0000', '4.5000', '4.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 (64579, '2022-03-09', 2366, 61482, 4171, NULL, '2.0000', '-24.7743', '-24.7743', '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 (64580, '2022-03-09', 7564, 61483, 4171, NULL, '1.0000', '0.6400', '0.6400', '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 (64581, '2022-03-09', 2315, 61484, 4171, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '97.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64582, '2022-03-09', 2169, 61485, 4171, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64583, '2022-03-09', 1519, 61486, 4171, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64584, '2022-03-09', 9695, 61487, 4171, NULL, '1.0000', '4.5000', '4.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 (64585, '2022-03-09', 2465, 61488, 4171, 48701, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64586, '2022-03-09', 1839, 61489, 4171, NULL, '1.0000', '-43.3048', '-43.3048', '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 (64587, '2022-03-09', 1528, 61490, 4171, 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 (64588, '2022-03-09', 1816, 61491, 4171, 51321, '1.0000', '25.7500', '25.7500', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64589, '2022-03-09', 1863, 61492, 4171, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64590, '2022-03-09', 9580, 61493, 4171, 39225, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64591, '2022-03-09', 9736, 61494, 4171, NULL, '1.0000', '3.9100', '3.9100', '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 (64592, '2022-03-09', 1855, 61495, 4171, NULL, '1.0000', '1.5003', '1.5003', '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 (64593, '2022-03-09', 9482, 61496, 4171, NULL, '2.0000', '0.5000', '0.5000', '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 (64594, '2022-03-09', 2037, 61497, 4171, 22540, '1.0000', '10.7500', '10.7500', '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 (64595, '2022-03-09', 8322, 61498, 4171, NULL, '1.0000', '7.0000', '7.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 (64596, '2022-03-09', 9337, 61499, 4171, NULL, '4.0000', '5.7200', '5.7200', '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 (64597, '2022-03-09', 2283, 61500, 4171, 51324, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64598, '2022-03-09', 1378, 61501, 4172, 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 (64599, '2022-03-09', 7428, 61502, 4172, 51281, '3.0000', '56.1257', '56.1257', '4.5000', '4.5000', '53.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64600, '2022-03-09', 7514, 61503, 4172, NULL, '1.0000', '97.7006', '97.7006', '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 (64601, '2022-03-09', 7981, 61504, 4172, NULL, '2.0000', '12.3059', '12.3059', '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 (64602, '2022-03-09', 9407, 61505, 4172, 44047, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64603, '2022-03-09', 7911, 61506, 4172, NULL, '1.0000', '4.3700', '4.3700', '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 (64604, '2022-03-09', 1837, 61507, 4172, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64605, '2022-03-09', 9028, 61508, 4172, 45777, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64606, '2022-03-09', 1510, 61509, 4172, 47901, '1.0000', '8.7203', '8.7203', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64607, '2022-03-09', 7728, 61510, 4172, 50306, '1.0000', '1.8605', '1.8605', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64608, '2022-03-09', 1771, 61511, 4172, 39531, '2.0000', '11.9058', '11.9058', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64609, '2022-03-09', 1501, 61512, 4172, 50680, '2.0000', '2.2898', '2.2898', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64610, '2022-03-09', 7570, 61513, 4172, 51283, '1.0000', '6.0354', '6.0354', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64611, '2022-03-09', 1782, 61514, 4172, 46628, '1.0000', '-0.2748', '-0.2748', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64612, '2022-03-09', 8735, 61515, 4172, NULL, '1.0000', '5.6000', '5.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 (64613, '2022-03-09', 7753, 61516, 4172, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64614, '2022-03-09', 8000, 61517, 4172, NULL, '1.0000', '439.7927', '439.7927', '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 (64615, '2022-03-09', 9804, 61518, 4172, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64616, '2022-03-09', 7781, 61519, 4172, NULL, '3.0000', '4.2500', '4.2500', '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 (64617, '2022-03-09', 7713, 61520, 4172, 50666, '1.0000', '0.3910', '0.3910', '0.6000', '0.6000', '123.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64618, '2022-03-09', 1771, 61521, 4172, 39531, '1.0000', '11.9058', '11.9058', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64619, '2022-03-09', 1450, 61522, 4172, 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 (64620, '2022-03-09', 7622, 61523, 4172, NULL, '1.0000', '17.8100', '17.8100', '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 (64621, '2022-03-09', 8359, 61524, 4172, NULL, '1.0000', '2068.5192', '2068.5192', '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 (64622, '2022-03-09', 8566, 61525, 4172, NULL, '1.0000', '-55864.3970', '-55864.3970', '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 (64623, '2022-03-09', 9193, 61526, 4172, NULL, '1.0000', '7.0315', '7.0315', '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 (64624, '2022-03-09', 7547, 61527, 4172, NULL, '4.0000', '0.0000', '0.0000', '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 (64625, '2022-03-09', 9469, 61528, 4172, NULL, '1.0000', '2.3000', '2.3000', '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 (64626, '2022-03-09', 9469, 61529, 4172, NULL, '1.0000', '2.3000', '2.3000', '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 (64627, '2022-03-09', 7671, 61530, 4172, NULL, '1.0000', '76.3606', '76.3606', '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 (64628, '2022-03-09', 7674, 61531, 4172, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64629, '2022-03-09', 8244, 61532, 4172, NULL, '1.0000', '37.4100', '37.4100', '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 (64630, '2022-03-09', 7762, 61533, 4172, NULL, '1.0000', '4.5695', '4.5695', '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 (64631, '2022-03-09', 1765, 61534, 4172, 50646, '1.0000', '5.4359', '5.4359', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64632, '2022-03-09', 1339, 61535, 4172, NULL, '1.0000', '1.6199', '1.6199', '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 (64633, '2022-03-09', 2777, 61536, 4172, 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 (64634, '2022-03-09', 2298, 61537, 4172, 48057, '1.0000', '6.3879', '6.3879', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64635, '2022-03-09', 7684, 61538, 4172, NULL, '1.0000', '9.0000', '9.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 (64636, '2022-03-09', 9736, 61539, 4172, 51011, '1.0000', '4.0135', '4.0135', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64637, '2022-03-09', 7412, 61540, 4172, NULL, '1.0000', '1.5200', '1.5200', '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 (64638, '2022-03-09', 2315, 61541, 4172, NULL, '2.0000', '0.8863', '0.8863', '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 (64639, '2022-03-09', 7507, 61542, 4172, NULL, '3.0000', '6.5000', '6.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 (64640, '2022-03-09', 9809, 61543, 4172, 50989, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64641, '2022-03-09', 7753, 61544, 4172, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64642, '2022-03-09', 9731, 61545, 4172, 49289, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64643, '2022-03-09', 7674, 61546, 4172, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64644, '2022-03-09', 8359, 61547, 4172, NULL, '1.0000', '2068.5192', '2068.5192', '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 (64645, '2022-03-09', 7524, 61548, 4172, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64646, '2022-03-09', 7442, 61549, 4172, 45341, '1.0000', '14.7000', '14.7000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64647, '2022-03-09', 9286, 61550, 4172, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64648, '2022-03-09', 8756, 61551, 4172, 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 (64649, '2022-03-09', 7708, 61552, 4172, NULL, '1.0000', '0.4231', '0.4231', '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 (64650, '2022-03-09', 8952, 61553, 4172, NULL, '1.0000', '5.1459', '5.1459', '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 (64651, '2022-03-09', 7547, 61554, 4172, NULL, '2.0000', '0.0000', '0.0000', '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 (64652, '2022-03-09', 9469, 61555, 4172, NULL, '1.0000', '2.3000', '2.3000', '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 (64653, '2022-03-09', 9534, 61556, 4172, 50375, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64654, '2022-03-09', 7853, 61557, 4172, 51090, '1.0000', '-23535.2849', '-23535.2849', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64655, '2022-03-09', 2272, 61558, 4173, NULL, '1.0000', '5.5000', '5.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 (64656, '2022-03-09', 7411, 61559, 4173, NULL, '1.0000', '1.3013', '1.3013', '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 (64657, '2022-03-09', 1564, 61560, 4173, NULL, '3.0000', '3.4988', '3.4988', '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 (64658, '2022-03-09', 9089, 61561, 4173, NULL, '2.0000', '3.8000', '3.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 (64659, '2022-03-09', 2231, 61562, 4173, NULL, '1.0000', '34.0000', '34.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 (64660, '2022-03-09', 1519, 61563, 4173, 50078, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64661, '2022-03-09', 7641, 61564, 4174, NULL, '1.0000', '-543.6034', '-543.6034', '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 (64662, '2022-03-09', 7514, 61565, 4174, NULL, '1.0000', '97.7006', '97.7006', '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 (64663, '2022-03-09', 2289, 61566, 4174, NULL, '2.0000', '0.9629', '0.9629', '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 (64664, '2022-03-09', 2279, 61567, 4174, NULL, '1.0000', '2.6000', '2.6000', '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 (64665, '2022-03-09', 8000, 61568, 4174, NULL, '1.0000', '439.7927', '439.7927', '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 (64666, '2022-03-09', 2511, 61569, 4175, 49526, '1.0000', '8.8545', '8.8545', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64667, '2022-03-09', 7506, 61570, 4175, NULL, '2.0000', '15.0000', '15.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 (64668, '2022-03-09', 2169, 61571, 4175, 45082, '1.0000', '1.1531', '1.1531', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64669, '2022-03-09', 1855, 61572, 4175, 46773, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64670, '2022-03-09', 7741, 61573, 4175, NULL, '1.0000', '48.6292', '48.6292', '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 (64671, '2022-03-09', 7490, 61574, 4175, NULL, '2.0000', '9.7600', '9.7600', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64672, '2022-03-09', 8208, 61575, 4175, NULL, '1.0000', '33.0000', '33.0000', '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 (64673, '2022-03-09', 3044, 61576, 4175, NULL, '1.0000', '0.4000', '0.4000', '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 (64674, '2022-03-09', 2135, 61577, 4175, 16894, '1.0000', '1.2424', '1.2424', '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 (64675, '2022-03-09', 1804, 61578, 4175, 49085, '1.0000', '4.4115', '4.4115', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64676, '2022-03-09', 2409, 61579, 4175, 49244, '1.0000', '2.3100', '2.3100', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64677, '2022-03-09', 2761, 61580, 4175, 46038, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64678, '2022-03-09', 1855, 61581, 4175, 46773, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64679, '2022-03-09', 7506, 61582, 4175, NULL, '1.0000', '15.0000', '15.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 (64680, '2022-03-09', 8395, 61583, 4175, NULL, '1.0000', '0.9700', '0.9700', '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 (64681, '2022-03-09', 2366, 61584, 4175, 49527, '2.0000', '3.8356', '3.8356', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64682, '2022-03-09', 8345, 61585, 4175, NULL, '1.0000', '22.0000', '22.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 (64683, '2022-03-09', 2758, 61586, 4176, 22379, '1.0000', '5.4000', '5.4000', '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 (64684, '2022-03-09', 2609, 61587, 4176, 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 (64685, '2022-03-09', 9695, 61588, 4176, NULL, '1.0000', '4.5000', '4.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 (64686, '2022-03-09', 9830, 61589, 4176, 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 (64687, '2022-03-10', 7411, 61590, 4177, NULL, '1.0000', '1.3500', '1.3500', '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 (64688, '2022-03-10', 9423, 61591, 4177, NULL, '1.0000', '1.6000', '1.6000', '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 (64689, '2022-03-10', 7673, 61592, 4177, NULL, '1.0000', '16.8000', '16.8000', '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 (64690, '2022-03-10', 2650, 61593, 4177, 12033, '-3.0000', '7.3200', '7.3200', '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 (64691, '2022-03-10', 2650, 61593, 4177, NULL, '4.0000', '7.3200', '7.3200', '11.5000', '11.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 (64692, '2022-03-10', 7853, 61594, 4177, 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 (64693, '2022-03-10', 7609, 61595, 4177, NULL, '1.0000', '4.3300', '4.3300', '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 (64694, '2022-03-10', 9721, 61596, 4177, NULL, '1.0000', '11.7000', '11.7000', '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 (64695, '2022-03-10', 7954, 61597, 4177, 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 (64696, '2022-03-10', 8361, 61598, 4177, NULL, '1.0000', '7.2300', '7.2300', '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 (64697, '2022-03-10', 2491, 61599, 4177, 6228, '-21.0000', '12.2000', '12.2000', '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 (64698, '2022-03-10', 2491, 61599, 4177, NULL, '23.0000', '12.2000', '12.2000', '17.5000', '17.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 (64699, '2022-03-10', 9337, 61600, 4177, 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 (64700, '2022-03-10', 8927, 61601, 4177, NULL, '3.0000', '36.0000', '36.0000', '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 (64701, '2022-03-10', 7526, 61602, 4177, 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 (64702, '2022-03-10', 2315, 61603, 4177, 2735, '-188.0000', '0.3300', '0.3300', '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 (64703, '2022-03-10', 2315, 61603, 4177, NULL, '192.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-192.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64704, '2022-03-10', 7671, 61604, 4177, NULL, '2.0000', '15.5000', '15.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 (64705, '2022-03-10', 7672, 61605, 4177, NULL, '2.0000', '1.0200', '1.0200', '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 (64706, '2022-03-10', 7762, 61606, 4177, NULL, '1.0000', '1.5000', '1.5000', '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 (64707, '2022-03-10', 7444, 61607, 4177, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64708, '2022-03-10', 2491, 61608, 4177, 6228, '-21.0000', '12.2000', '12.2000', '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 (64709, '2022-03-10', 2491, 61608, 4177, NULL, '22.0000', '12.2000', '12.2000', '17.5000', '17.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64710, '2022-03-10', 9734, 61609, 4177, NULL, '1.0000', '0.3200', '0.3200', '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 (64711, '2022-03-10', 8015, 61610, 4177, NULL, '2.0000', '2.9000', '2.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 (64712, '2022-03-10', 9092, 61611, 4177, NULL, '2.0000', '5.2900', '5.2900', '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 (64713, '2022-03-10', 1647, 61612, 4177, 3218, '-10.0000', '4.7200', '4.7200', '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 (64714, '2022-03-10', 1647, 61612, 4177, NULL, '11.0000', '4.7200', '4.7200', '7.0000', '7.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 (64715, '2022-03-10', 8135, 61613, 4177, NULL, '1.0000', '5.4500', '5.4500', '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 (64716, '2022-03-10', 9736, 61614, 4177, NULL, '1.0000', '3.9100', '3.9100', '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 (64717, '2022-03-10', 7859, 61615, 4177, NULL, '1.0000', '12.6300', '12.6300', '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 (64718, '2022-03-10', 7671, 61616, 4177, NULL, '1.0000', '15.5000', '15.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 (64719, '2022-03-10', 9579, 61617, 4177, 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 (64720, '2022-03-10', 9423, 61618, 4177, NULL, '1.0000', '1.6000', '1.6000', '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 (64721, '2022-03-10', 7752, 61619, 4177, 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 (64722, '2022-03-10', 7694, 61620, 4177, NULL, '1.0000', '4.7900', '4.7900', '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 (64723, '2022-03-10', 2352, 61621, 4177, 3855, '-90.0000', '20.0000', '20.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 (64724, '2022-03-10', 2352, 61621, 4177, NULL, '98.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64725, '2022-03-10', 7428, 61622, 4177, NULL, '2.0000', '2.6100', '2.6100', '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 (64726, '2022-03-10', 1442, 61623, 4178, 48933, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64727, '2022-03-10', 7333, 61624, 4178, NULL, '1.0000', '13.5000', '13.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 (64728, '2022-03-10', 2088, 61625, 4178, 51347, '1.0000', '1.8301', '1.8301', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64729, '2022-03-10', 1564, 61626, 4178, NULL, '4.0000', '3.4988', '3.4988', '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 (64730, '2022-03-10', 9695, 61627, 4178, NULL, '2.0000', '4.5000', '4.5000', '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 (64731, '2022-03-10', 7762, 61628, 4178, NULL, '1.0000', '5.1000', '5.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 (64732, '2022-03-10', 1855, 61629, 4178, NULL, '1.0000', '1.5003', '1.5003', '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 (64733, '2022-03-10', 7333, 61630, 4178, NULL, '2.0000', '13.5000', '13.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 (64734, '2022-03-10', 1578, 61631, 4178, 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 (64735, '2022-03-10', 9747, 61632, 4178, 50122, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64736, '2022-03-10', 2916, 61633, 4178, NULL, '1.0000', '11.2778', '11.2778', '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 (64737, '2022-03-10', 2761, 61634, 4178, 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 (64738, '2022-03-10', 2066, 61635, 4178, NULL, '2.0000', '0.5100', '0.5100', '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 (64739, '2022-03-10', 7564, 61636, 4178, NULL, '1.0000', '0.6400', '0.6400', '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 (64740, '2022-03-10', 1743, 61637, 4178, 19380, '1.0000', '4.6550', '4.6550', '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 (64741, '2022-03-10', 9399, 61638, 4178, 34949, '2.0000', '0.9800', '0.9800', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64742, '2022-03-10', 1837, 61639, 4179, 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 (64743, '2022-03-10', 2522, 61640, 4179, 6036, '-1.0000', '6.2000', '6.2000', '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 (64744, '2022-03-10', 2522, 61640, 4179, NULL, '2.0000', '6.2000', '6.2000', '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 (64745, '2022-03-10', 2662, 61641, 4179, 12036, '-13.0000', '4.5000', '4.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 (64746, '2022-03-10', 2662, 61641, 4179, NULL, '14.0000', '4.5000', '4.5000', '7.0000', '7.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 (64747, '2022-03-10', 9579, 61642, 4179, 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 (64748, '2022-03-10', 8756, 61643, 4179, 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 (64749, '2022-03-10', 1837, 61644, 4179, 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 (64750, '2022-03-10', 9748, 61645, 4179, NULL, '1.0000', '2.5300', '2.5300', '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 (64751, '2022-03-10', 2379, 61646, 4179, 4032, '-47.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 (64752, '2022-03-10', 2379, 61646, 4179, NULL, '48.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64753, '2022-03-10', 1892, 61647, 4179, 5431, '-5.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 (64754, '2022-03-10', 1892, 61647, 4179, NULL, '6.0000', '90.0000', '90.0000', '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 (64755, '2022-03-10', 2642, 61648, 4179, 10573, '-11.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 (64756, '2022-03-10', 2642, 61648, 4179, NULL, '13.0000', '9.2000', '9.2000', '12.0000', '12.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 (64757, '2022-03-10', 1339, 61649, 4179, 13004, '-9.0000', '1.6012', '1.6012', '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 (64758, '2022-03-10', 1339, 61649, 4179, NULL, '10.0000', '1.6012', '1.6012', '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 (64759, '2022-03-10', 2682, 61650, 4180, 12165, '-1.0000', '19.3000', '19.3000', '25.5000', '25.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 (64760, '2022-03-10', 2682, 61650, 4180, NULL, '2.0000', '19.3000', '19.3000', '25.5000', '25.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 (64761, '2022-03-10', 2315, 61651, 4180, 2735, '-192.0000', '0.3300', '0.3300', '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 (64762, '2022-03-10', 2315, 61651, 4180, NULL, '193.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-193.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64763, '2022-03-10', 2315, 61652, 4180, 2735, '-192.0000', '0.3300', '0.3300', '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 (64764, '2022-03-10', 2315, 61652, 4180, NULL, '194.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-194.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64765, '2022-03-10', 9794, 61653, 4180, NULL, '1.0000', '1.0800', '1.0800', '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 (64766, '2022-03-10', 2169, 61654, 4180, 10737, '-57.0000', '3.8397', '3.8397', '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 (64767, '2022-03-10', 2169, 61654, 4180, NULL, '58.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64768, '2022-03-10', 1912, 61655, 4180, 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 (64769, '2022-03-10', 2252, 61656, 4180, 2789, '-20.0000', '9.5000', '9.5000', '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 (64770, '2022-03-10', 2252, 61656, 4180, NULL, '21.0000', '9.5000', '9.5000', '16.0000', '16.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64771, '2022-03-10', 9471, 61657, 4180, 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 (64772, '2022-03-10', 1533, 61658, 4180, 10381, '-7.0000', '2.5917', '2.5917', '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 (64773, '2022-03-10', 1533, 61658, 4180, NULL, '8.0000', '2.5917', '2.5917', '5.5000', '5.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 (64774, '2022-03-10', 9748, 61659, 4180, NULL, '1.0000', '2.5300', '2.5300', '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 (64775, '2022-03-10', 2242, 61660, 4180, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.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 (64776, '2022-03-10', 2662, 61661, 4180, 12036, '-14.0000', '4.5000', '4.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 (64777, '2022-03-10', 2662, 61661, 4180, NULL, '15.0000', '4.5000', '4.5000', '7.0000', '7.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 (64778, '2022-03-10', 3020, 61662, 4180, NULL, '1.0000', '11.2100', '11.2100', '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 (64779, '2022-03-10', 2169, 61663, 4180, 10737, '-57.0000', '3.8397', '3.8397', '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 (64780, '2022-03-10', 2169, 61663, 4180, NULL, '58.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64781, '2022-03-10', 1651, 61664, 4180, 3222, '-47.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 (64782, '2022-03-10', 1651, 61664, 4180, NULL, '49.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64783, '2022-03-10', 1665, 61665, 4180, 3235, '-80.0000', '1.3000', '1.3000', '1.5700', '1.5700', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64784, '2022-03-10', 1665, 61665, 4180, NULL, '81.0000', '1.3000', '1.3000', '1.5700', '1.5700', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64785, '2022-03-10', 2907, 61666, 4180, 18646, '-3.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 (64786, '2022-03-10', 2907, 61666, 4180, NULL, '4.0000', '6.0000', '6.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 (64787, '2022-03-10', 7411, 61667, 4180, NULL, '1.0000', '1.3500', '1.3500', '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 (64788, '2022-03-10', 2315, 61668, 4180, 2735, '-192.0000', '0.3300', '0.3300', '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 (64789, '2022-03-10', 2315, 61668, 4180, NULL, '194.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-194.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64790, '2022-03-10', 2990, 61669, 4180, NULL, '1.0000', '1.1200', '1.1200', '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 (64791, '2022-03-10', 2486, 61670, 4180, NULL, '2.0000', '4.0000', '4.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 (64792, '2022-03-10', 2491, 61671, 4180, 6228, '-24.0000', '12.2000', '12.2000', '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 (64793, '2022-03-10', 2491, 61671, 4180, NULL, '25.0000', '12.2000', '12.2000', '17.5000', '17.5000', '-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 (64794, '2022-03-10', 1585, 61672, 4180, 7602, '-11.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 (64795, '2022-03-10', 1585, 61672, 4180, NULL, '12.0000', '13.0000', '13.0000', '17.5000', '17.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 (64796, '2022-03-10', 2236, 61673, 4180, 2780, '-15.0000', '5.6599', '5.6599', '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 (64797, '2022-03-10', 2236, 61673, 4180, NULL, '16.0000', '5.6599', '5.6599', '8.0000', '8.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 (64798, '2022-03-10', 1502, 61674, 4180, 6307, '-6.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 (64799, '2022-03-10', 1502, 61674, 4180, NULL, '7.0000', '7.8000', '7.8000', '11.0000', '11.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 (64800, '2022-03-10', 8761, 61675, 4180, 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 (64801, '2022-03-10', 2299, 61676, 4180, 22479, '-3.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 (64802, '2022-03-10', 2299, 61676, 4180, NULL, '4.0000', '6.0000', '6.0000', '9.0000', '9.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 (64803, '2022-03-10', 9758, 61677, 4180, NULL, '1.0000', '3.1400', '3.1400', '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 (64804, '2022-03-10', 1533, 61678, 4180, 10381, '-7.0000', '2.5917', '2.5917', '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 (64805, '2022-03-10', 1533, 61678, 4180, NULL, '8.0000', '2.5917', '2.5917', '5.5000', '5.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 (64806, '2022-03-10', 7674, 61679, 4181, 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 (64807, '2022-03-10', 9785, 61680, 4181, 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 (64808, '2022-03-10', 7871, 61681, 4181, NULL, '14.0000', '6.0000', '6.0000', '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 (64809, '2022-03-10', 7472, 61682, 4181, 33824, '1.0000', '4.1000', '4.1000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64810, '2022-03-10', 2100, 61683, 4181, 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 (64811, '2022-03-10', 8449, 61684, 4181, NULL, '1.0000', '11.9000', '11.9000', '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 (64812, '2022-03-10', 1841, 61685, 4181, NULL, '1.0000', '142.5780', '142.5780', '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 (64813, '2022-03-10', 2733, 61686, 4181, 14083, '-2.0000', '7.5000', '7.5000', '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 (64814, '2022-03-10', 2733, 61686, 4181, NULL, '3.0000', '7.5000', '7.5000', '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 (64815, '2022-03-10', 8288, 61687, 4181, NULL, '6.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (64816, '2022-03-10', 7490, 61688, 4181, NULL, '10.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-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 (64817, '2022-03-10', 9729, 61689, 4181, NULL, '1.0000', '0.6200', '0.6200', '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 (64818, '2022-03-10', 9578, 61690, 4181, NULL, '1.0000', '8.0000', '8.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 (64819, '2022-03-10', 2891, 61691, 4181, 33803, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64820, '2022-03-10', 7824, 61692, 4181, NULL, '1.0000', '8.0000', '8.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 (64821, '2022-03-10', 9462, 61693, 4181, 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 (64822, '2022-03-10', 7708, 61694, 4181, NULL, '1.0000', '7.8000', '7.8000', '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 (64823, '2022-03-10', 7796, 61695, 4181, NULL, '1.0000', '13.5000', '13.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 (64824, '2022-03-10', 9016, 61696, 4181, NULL, '1.0000', '21.7800', '21.7800', '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 (64825, '2022-03-10', 8184, 61697, 4181, NULL, '10.0000', '2.4000', '2.4000', '3.5000', '3.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 (64826, '2022-03-10', 7715, 61698, 4181, NULL, '1.0000', '1.8900', '1.8900', '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 (64827, '2022-03-10', 1855, 61699, 4181, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.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 (64828, '2022-03-10', 8154, 61700, 4181, NULL, '1.0000', '12.3000', '12.3000', '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 (64829, '2022-03-10', 7782, 61701, 4181, 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 (64830, '2022-03-10', 8203, 61702, 4181, NULL, '2.0000', '0.4000', '0.4000', '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 (64831, '2022-03-10', 7514, 61703, 4181, NULL, '1.0000', '2.2500', '2.2500', '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 (64832, '2022-03-10', 7524, 61704, 4181, NULL, '1.0000', '11.9500', '11.9500', '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 (64833, '2022-03-10', 7881, 61705, 4181, NULL, '1.0000', '2.3000', '2.3000', '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 (64834, '2022-03-10', 7674, 61706, 4181, 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 (64835, '2022-03-10', 9628, 61707, 4181, NULL, '1.0000', '46.1200', '46.1200', '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 (64836, '2022-03-10', 9337, 61708, 4181, 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 (64837, '2022-03-10', 7611, 61709, 4181, NULL, '1.0000', '4.4000', '4.4000', '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 (64838, '2022-03-10', 7641, 61710, 4181, NULL, '1.0000', '1.9000', '1.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 (64839, '2022-03-10', 1557, 61711, 4181, 1628, '-7.0000', '7.9500', '7.9500', '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 (64840, '2022-03-10', 1557, 61711, 4181, NULL, '8.0000', '7.9500', '7.9500', '11.0000', '11.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 (64841, '2022-03-10', 1557, 61712, 4181, 1628, '-7.0000', '7.9500', '7.9500', '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 (64842, '2022-03-10', 1557, 61712, 4181, NULL, '8.0000', '7.9500', '7.9500', '11.0000', '11.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 (64843, '2022-03-10', 8413, 61713, 4181, NULL, '4.0000', '90.0000', '90.0000', '110.0000', '110.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 (64844, '2022-03-10', 8184, 61714, 4181, NULL, '6.0000', '2.4000', '2.4000', '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 (64845, '2022-03-10', 7411, 61715, 4181, NULL, '2.0000', '1.3500', '1.3500', '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 (64846, '2022-03-10', 1880, 61716, 4181, 22270, '1.0000', '4.6000', '4.6000', '7.0000', '7.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 (64847, '2022-03-10', 7821, 61717, 4181, NULL, '1.0000', '13.0700', '13.0700', '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 (64848, '2022-03-10', 7981, 61718, 4181, NULL, '10.0000', '6.0000', '6.0000', '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 (64849, '2022-03-10', 7980, 61719, 4181, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (64850, '2022-03-10', 1855, 61720, 4181, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.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 (64851, '2022-03-10', 3001, 61721, 4181, NULL, '2.0000', '1.5000', '1.5000', '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 (64852, '2022-03-10', 8316, 61722, 4181, NULL, '2.0000', '6.5000', '6.5000', '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 (64853, '2022-03-10', 7474, 61723, 4181, NULL, '1.0000', '67.6200', '67.6200', '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 (64854, '2022-03-10', 7900, 61724, 4181, NULL, '1.0000', '2.5000', '2.5000', '3.2000', '3.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 (64855, '2022-03-10', 8207, 61725, 4181, NULL, '1.0000', '0.0000', '0.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 (64856, '2022-03-10', 7892, 61726, 4181, NULL, '1.0000', '4.2000', '4.2000', '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 (64857, '2022-03-10', 2104, 61727, 4181, 1048, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '287.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 (64858, '2022-03-10', 8083, 61728, 4181, NULL, '1.0000', '26.0000', '26.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 (64859, '2022-03-10', 1651, 61729, 4182, 3222, '-49.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 (64860, '2022-03-10', 1651, 61729, 4182, NULL, '50.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64861, '2022-03-10', 2379, 61730, 4183, 4032, '-48.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 (64862, '2022-03-10', 2379, 61730, 4183, NULL, '49.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64863, '2022-03-10', 9740, 61731, 4184, NULL, '1.0000', '0.6600', '0.6600', '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 (64864, '2022-03-10', 2379, 61732, 4185, NULL, '1.0000', '1.0877', '1.0877', '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 (64865, '2022-03-10', 2242, 61733, 4185, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64866, '2022-03-10', 8183, 61734, 4185, NULL, '1.0000', '81.9100', '81.9100', '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 (64867, '2022-03-10', 9831, 61735, 4185, NULL, '1.0000', '1.5600', '1.5600', '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 (64868, '2022-03-10', 1519, 61736, 4185, 48674, '2.0000', '3.3998', '3.3998', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64869, '2022-03-10', 1564, 61737, 4185, NULL, '1.0000', '3.4988', '3.4988', '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 (64870, '2022-03-10', 1590, 61738, 4185, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64871, '2022-03-10', 2088, 61739, 4185, 51347, '1.0000', '1.8301', '1.8301', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64872, '2022-03-10', 1564, 61740, 4185, NULL, '4.0000', '3.4988', '3.4988', '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 (64873, '2022-03-10', 2948, 61741, 4185, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64874, '2022-03-10', 9830, 61742, 4185, 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 (64875, '2022-03-10', 2169, 61743, 4185, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64876, '2022-03-10', 2293, 61744, 4185, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64877, '2022-03-10', 9400, 61745, 4185, 43248, '1.0000', '4.2000', '4.2000', '5.5400', '5.5400', '19.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64878, '2022-03-10', 2547, 61746, 4185, 49375, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64879, '2022-03-10', 2633, 61747, 4185, 50528, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64880, '2022-03-10', 1658, 61748, 4185, 48464, '1.0000', '45.3715', '45.3715', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64881, '2022-03-10', 2250, 61749, 4185, 51371, '1.0000', '6.9806', '6.9806', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64882, '2022-03-10', 8496, 61750, 4185, NULL, '1.0000', '2.4000', '2.4000', '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 (64883, '2022-03-10', 1494, 61751, 4185, 19337, '1.0000', '4.3900', '4.3900', '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 (64884, '2022-03-10', 1335, 61752, 4185, 31106, '1.0000', '1.1000', '1.1000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64885, '2022-03-10', 2342, 61753, 4185, 49330, '10.0000', '1.9292', '1.9292', '2.7000', '2.7000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64886, '2022-03-10', 2296, 61754, 4185, NULL, '1.0000', '13.2900', '13.2900', '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 (64887, '2022-03-10', 1487, 61755, 4185, NULL, '1.0000', '89.4156', '89.4156', '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 (64888, '2022-03-10', 2651, 61756, 4185, 51343, '1.0000', '12.4375', '12.4375', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64889, '2022-03-10', 2668, 61757, 4185, 48912, '1.0000', '6.6518', '6.6518', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64890, '2022-03-10', 2592, 61758, 4185, 48144, '2.0000', '7.6936', '7.6936', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64891, '2022-03-10', 8622, 61759, 4185, 51208, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64892, '2022-03-10', 1905, 61760, 4185, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64893, '2022-03-10', 1337, 61761, 4185, NULL, '1.0000', '2.0000', '2.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 (64894, '2022-03-10', 2061, 61762, 4185, 48138, '2.0000', '11.0146', '11.0146', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64895, '2022-03-10', 2270, 61763, 4185, 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 (64896, '2022-03-10', 8183, 61764, 4185, NULL, '2.0000', '81.9100', '81.9100', '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 (64897, '2022-03-10', 1545, 61765, 4185, 51238, '1.0000', '12.7570', '12.7570', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64898, '2022-03-10', 1687, 61766, 4185, 51327, '1.0000', '12.4146', '12.4146', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64899, '2022-03-10', 7980, 61767, 4185, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (64900, '2022-03-10', 7824, 61768, 4185, 39802, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64901, '2022-03-10', 2660, 61769, 4185, 49361, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64902, '2022-03-10', 7820, 61770, 4185, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64903, '2022-03-10', 2320, 61771, 4185, 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 (64904, '2022-03-10', 2232, 61772, 4185, 50250, '1.0000', '29.9853', '29.9853', '43.0000', '43.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64905, '2022-03-10', 8763, 61773, 4185, NULL, '1.0000', '5.4000', '5.4000', '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 (64906, '2022-03-10', 8771, 61774, 4185, 51018, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64907, '2022-03-10', 1689, 61775, 4185, NULL, '1.0000', '12.9279', '12.9279', '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 (64908, '2022-03-10', 8622, 61776, 4185, 51208, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64909, '2022-03-10', 1905, 61777, 4185, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64910, '2022-03-10', 2317, 61778, 4185, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '12.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 (64911, '2022-03-10', 1651, 61779, 4185, 49333, '1.0000', '6.3300', '6.3300', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64912, '2022-03-10', 9794, 61780, 4185, 51219, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64913, '2022-03-10', 7328, 61781, 4185, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (64914, '2022-03-10', 1840, 61782, 4185, NULL, '1.0000', '0.2400', '0.2400', '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 (64915, '2022-03-10', 2289, 61783, 4185, NULL, '1.0000', '0.2222', '0.2222', '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 (64916, '2022-03-10', 9537, 61784, 4185, 51365, '1.0000', '36.0000', '36.0000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64917, '2022-03-10', 9729, 61785, 4185, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64918, '2022-03-10', 2283, 61786, 4185, 51324, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64919, '2022-03-10', 1651, 61787, 4185, 49333, '2.0000', '6.3300', '6.3300', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64920, '2022-03-10', 1651, 61787, 4185, NULL, '1.0000', '6.3300', '6.3300', '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 (64921, '2022-03-10', 2320, 61788, 4185, 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 (64922, '2022-03-10', 2893, 61789, 4185, NULL, '1.0000', '6.4400', '6.4400', '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 (64923, '2022-03-10', 9743, 61790, 4185, 51198, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64924, '2022-03-10', 7652, 61791, 4185, NULL, '5.0000', '40.3000', '40.3000', '1.3000', '1.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 (64925, '2022-03-10', 9794, 61792, 4185, 51219, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64926, '2022-03-10', 9482, 61793, 4185, NULL, '4.0000', '0.5000', '0.5000', '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 (64927, '2022-03-10', 9832, 61794, 4185, NULL, '1.0000', '1.5600', '1.5600', '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 (64928, '2022-03-10', 9831, 61795, 4185, NULL, '1.0000', '1.5600', '1.5600', '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 (64929, '2022-03-10', 2135, 61796, 4185, NULL, '1.0000', '2.4732', '2.4732', '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 (64930, '2022-03-10', 7671, 61797, 4185, NULL, '1.0000', '15.5000', '15.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 (64931, '2022-03-10', 2987, 61798, 4185, 22607, '2.0000', '0.7500', '0.7500', '1.0000', '1.0000', '17.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 (64932, '2022-03-10', 2169, 61799, 4185, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64933, '2022-03-10', 7411, 61800, 4185, NULL, '1.0000', '1.3013', '1.3013', '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 (64934, '2022-03-10', 8681, 61801, 4185, NULL, '1.0000', '10.0000', '10.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 (64935, '2022-03-10', 2415, 61802, 4185, 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 (64936, '2022-03-10', 9832, 61803, 4185, NULL, '1.0000', '1.5600', '1.5600', '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 (64937, '2022-03-10', 2088, 61804, 4185, 51347, '1.0000', '1.8301', '1.8301', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64938, '2022-03-10', 1925, 61805, 4185, 51221, '1.0000', '1.4444', '1.4444', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64939, '2022-03-10', 2302, 61806, 4185, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64940, '2022-03-10', 1839, 61807, 4185, NULL, '1.0000', '-43.3048', '-43.3048', '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 (64941, '2022-03-10', 1564, 61808, 4185, NULL, '4.0000', '3.4988', '3.4988', '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 (64942, '2022-03-10', 9695, 61809, 4185, NULL, '1.0000', '4.5000', '4.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 (64943, '2022-03-10', 1602, 61810, 4185, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64944, '2022-03-10', 1628, 61811, 4185, 51379, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64945, '2022-03-10', 1519, 61812, 4185, 48674, '1.0000', '3.3998', '3.3998', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64946, '2022-03-10', 2341, 61813, 4185, NULL, '1.0000', '5.5900', '5.5900', '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 (64947, '2022-03-10', 8202, 61814, 4185, NULL, '1.0000', '1.6600', '1.6600', '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 (64948, '2022-03-10', 1690, 61815, 4185, 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 (64949, '2022-03-10', 1746, 61816, 4185, 19863, '3.0000', '3.5000', '3.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 (64950, '2022-03-10', 1545, 61817, 4185, 51238, '1.0000', '12.7570', '12.7570', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64951, '2022-03-10', 9092, 61818, 4186, NULL, '3.0000', '5.2900', '5.2900', '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 (64952, '2022-03-10', 7519, 61819, 4186, NULL, '1.0000', '14.5200', '14.5200', '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 (64953, '2022-03-10', 7672, 61820, 4186, NULL, '2.0000', '1.0200', '1.0200', '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 (64954, '2022-03-10', 9723, 61821, 4186, 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 (64955, '2022-03-10', 7411, 61822, 4186, NULL, '1.0000', '1.3500', '1.3500', '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 (64956, '2022-03-10', 8059, 61823, 4186, 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 (64957, '2022-03-10', 7640, 61824, 4186, 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 (64958, '2022-03-10', 1374, 61825, 4187, 48920, '2.0000', '-55.6800', '-55.6800', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64959, '2022-03-10', 1374, 61825, 4187, NULL, '1.0000', '-55.6800', '-55.6800', '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 (64960, '2022-03-10', 2660, 61826, 4187, 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 (64961, '2022-03-11', 8384, 61827, 4188, 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 (64962, '2022-03-11', 9579, 61828, 4188, 49670, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 391);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64963, '2022-03-11', 1912, 61829, 4189, 50866, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64964, '2022-03-11', 2660, 61830, 4190, 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 (64965, '2022-03-11', 2242, 61831, 4190, 22259, '1.0000', '0.4800', '0.4800', '1.0000', '1.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 (64966, '2022-03-11', 2242, 61831, 4190, 20608, '2.0000', '0.4800', '0.4800', '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 (64967, '2022-03-11', 1841, 61832, 4190, NULL, '4.0000', '142.5780', '142.5780', '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 (64968, '2022-03-11', 7570, 61833, 4190, NULL, '1.0000', '10.0000', '10.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 (64969, '2022-03-11', 7482, 61834, 4190, NULL, '1.0000', '3.0500', '3.0500', '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 (64970, '2022-03-11', 1782, 61835, 4190, 4900, '-5.0000', '2.9900', '2.9900', '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 (64971, '2022-03-11', 1782, 61835, 4190, NULL, '6.0000', '2.9900', '2.9900', '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 (64972, '2022-03-11', 7444, 61836, 4190, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64973, '2022-03-11', 7342, 61837, 4190, NULL, '1.0000', '15.6000', '15.6000', '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 (64974, '2022-03-11', 8064, 61838, 4190, NULL, '1.0000', '4.9800', '4.9800', '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 (64975, '2022-03-11', 8761, 61839, 4190, 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 (64976, '2022-03-11', 8608, 61840, 4190, NULL, '1.0000', '0.9000', '0.9000', '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 (64977, '2022-03-11', 8017, 61841, 4190, NULL, '1.0000', '40.0000', '40.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 (64978, '2022-03-11', 7672, 61842, 4190, NULL, '1.0000', '1.0200', '1.0200', '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 (64979, '2022-03-11', 7848, 61843, 4190, NULL, '1.0000', '1.3500', '1.3500', '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 (64980, '2022-03-11', 7954, 61844, 4190, 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 (64981, '2022-03-11', 7589, 61845, 4190, 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 (64982, '2022-03-11', 7428, 61846, 4190, NULL, '4.0000', '2.6100', '2.6100', '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 (64983, '2022-03-11', 2315, 61847, 4190, 2735, '-197.0000', '0.3300', '0.3300', '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 (64984, '2022-03-11', 2315, 61847, 4190, NULL, '198.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-198.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64985, '2022-03-11', 7641, 61848, 4190, NULL, '1.0000', '1.9000', '1.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 (64986, '2022-03-11', 8608, 61849, 4190, NULL, '3.0000', '0.9000', '0.9000', '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 (64987, '2022-03-11', 8188, 61850, 4190, NULL, '4.0000', '0.9000', '0.9000', '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 (64988, '2022-03-11', 7641, 61851, 4191, NULL, '1.0000', '1.9000', '1.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 (64989, '2022-03-11', 2971, 61852, 4191, 22552, '1.0000', '3.5000', '3.5000', '6.5000', '6.5000', '1.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 (64990, '2022-03-11', 1961, 61853, 4191, 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 (64991, '2022-03-11', 9831, 61854, 4191, NULL, '1.0000', '1.5600', '1.5600', '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 (64992, '2022-03-11', 7514, 61855, 4191, NULL, '1.0000', '2.2500', '2.2500', '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 (64993, '2022-03-11', 1529, 61856, 4191, 51484, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64994, '2022-03-11', 8774, 61857, 4191, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64995, '2022-03-11', 1810, 61858, 4191, 48619, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64996, '2022-03-11', 7592, 61859, 4191, NULL, '1.0000', '8.6500', '8.6500', '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 (64997, '2022-03-11', 2169, 61860, 4191, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64998, '2022-03-11', 1571, 61861, 4191, 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 (64999, '2022-03-11', 2237, 61862, 4191, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65000, '2022-03-11', 7641, 61863, 4191, NULL, '1.0000', '1.9000', '1.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 (65001, '2022-03-11', 2020, 61864, 4191, NULL, '2.0000', '19.9455', '19.9455', '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 (65002, '2022-03-11', 2392, 61865, 4191, 48944, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65003, '2022-03-11', 3001, 61866, 4191, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65004, '2022-03-11', 1450, 61867, 4191, 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 (65005, '2022-03-11', 1314, 61868, 4191, 48145, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65006, '2022-03-11', 1912, 61869, 4192, 51315, '3.0000', '0.6218', '0.6218', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65007, '2022-03-11', 2893, 61870, 4192, NULL, '2.0000', '6.4400', '6.4400', '8.5000', '8.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 (65008, '2022-03-11', 2169, 61871, 4192, 51358, '2.0000', '1.4789', '1.4789', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65009, '2022-03-11', 9758, 61872, 4192, NULL, '1.0000', '3.1400', '3.1400', '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 (65010, '2022-03-11', 1837, 61873, 4192, NULL, '2.0000', '1.5967', '1.5967', '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 (65011, '2022-03-11', 1543, 61874, 4192, NULL, '1.0000', '26.1267', '26.1267', '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 (65012, '2022-03-11', 2635, 61875, 4192, 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 (65013, '2022-03-11', 1337, 61876, 4192, NULL, '1.0000', '2.0000', '2.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 (65014, '2022-03-11', 9482, 61877, 4192, NULL, '2.0000', '0.5000', '0.5000', '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 (65015, '2022-03-11', 1592, 61878, 4192, 50229, '1.0000', '33.9415', '33.9415', '47.5000', '47.5000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65016, '2022-03-11', 9830, 61879, 4192, 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 (65017, '2022-03-11', 7909, 61880, 4192, NULL, '1.0000', '4.0000', '4.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 (65018, '2022-03-11', 8771, 61881, 4193, 51018, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65019, '2022-03-11', 8763, 61882, 4193, NULL, '1.0000', '5.4000', '5.4000', '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 (65020, '2022-03-11', 2169, 61883, 4193, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65021, '2022-03-11', 9695, 61884, 4193, NULL, '1.0000', '4.5000', '4.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 (65022, '2022-03-11', 1912, 61885, 4193, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65023, '2022-03-11', 8941, 61886, 4193, NULL, '4.0000', '12.0000', '12.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 (65024, '2022-03-11', 7671, 61887, 4193, 51511, '10.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65025, '2022-03-11', 9846, 61888, 4193, 51401, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65026, '2022-03-11', 1855, 61889, 4193, NULL, '1.0000', '1.5003', '1.5003', '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 (65027, '2022-03-11', 2417, 61890, 4193, 32544, '1.0000', '3.7800', '3.7800', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65028, '2022-03-11', 2315, 61891, 4193, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '94.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65029, '2022-03-11', 8517, 61892, 4194, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65030, '2022-03-11', 7712, 61893, 4194, NULL, '1.0000', '-245.5125', '-245.5125', '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 (65031, '2022-03-11', 9743, 61894, 4194, 46913, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '14.5000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65032, '2022-03-11', 9272, 61895, 4194, NULL, '1.0000', '3.1000', '3.1000', '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 (65033, '2022-03-11', 8309, 61896, 4194, 43081, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65034, '2022-03-11', 9729, 61897, 4194, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65035, '2022-03-11', 7674, 61898, 4194, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65036, '2022-03-11', 7713, 61899, 4194, 50666, '3.0000', '0.3910', '0.3910', '0.6000', '0.6000', '120.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65037, '2022-03-11', 1941, 61900, 4194, 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 (65038, '2022-03-11', 7820, 61901, 4194, NULL, '1.0000', '-2476.1000', '-2476.1000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65039, '2022-03-11', 9275, 61902, 4194, NULL, '2.0000', '6.3000', '6.3000', '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 (65040, '2022-03-11', 8978, 61903, 4194, NULL, '1.0000', '0.6900', '0.6900', '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 (65041, '2022-03-11', 2315, 61904, 4194, NULL, '15.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (65042, '2022-03-11', 7658, 61905, 4194, NULL, '10.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '-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 (65043, '2022-03-11', 2284, 61906, 4194, 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 (65044, '2022-03-11', 7892, 61907, 4194, NULL, '1.0000', '4.2000', '4.2000', '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 (65045, '2022-03-11', 7523, 61908, 4194, 50983, '1.0000', '9.7000', '9.7000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65046, '2022-03-11', 8680, 61909, 4194, NULL, '1.0000', '2.0000', '2.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 (65047, '2022-03-11', 7711, 61910, 4194, NULL, '1.0000', '-204.0169', '-204.0169', '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 (65048, '2022-03-11', 7671, 61911, 4194, NULL, '6.0000', '76.3606', '76.3606', '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 (65049, '2022-03-11', 7757, 61912, 4194, NULL, '1.0000', '-74.3667', '-74.3667', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65050, '2022-03-11', 7658, 61913, 4194, NULL, '10.0000', '-448.2416', '-448.2416', '2.8000', '2.8000', '-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 (65051, '2022-03-11', 8566, 61914, 4194, NULL, '1.0000', '-55864.3970', '-55864.3970', '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 (65052, '2022-03-11', 7876, 61915, 4194, 49823, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65053, '2022-03-11', 8608, 61916, 4194, NULL, '1.0000', '5.7400', '5.7400', '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 (65054, '2022-03-11', 7674, 61917, 4194, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65055, '2022-03-11', 8155, 61918, 4194, NULL, '1.0000', '65.0000', '65.0000', '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 (65056, '2022-03-11', 1760, 61919, 4194, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65057, '2022-03-11', 8539, 61920, 4194, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '37.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65058, '2022-03-11', 8359, 61921, 4194, NULL, '1.0000', '2068.5192', '2068.5192', '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 (65059, '2022-03-11', 8596, 61922, 4194, NULL, '1.0000', '17.0000', '17.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 (65060, '2022-03-11', 7819, 61923, 4194, NULL, '1.0000', '10.5656', '10.5656', '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 (65061, '2022-03-11', 7947, 61924, 4194, NULL, '1.0000', '14.4400', '14.4400', '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 (65062, '2022-03-11', 7591, 61925, 4194, NULL, '1.0000', '2.7500', '2.7500', '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 (65063, '2022-03-11', 2020, 61926, 4195, 10164, '-14.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 (65064, '2022-03-11', 2020, 61926, 4195, NULL, '15.0000', '7.5000', '7.5000', '10.0000', '10.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 (65065, '2022-03-11', 2858, 61927, 4195, 17772, '-48.0000', '1.0000', '1.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 (65066, '2022-03-11', 2858, 61927, 4195, NULL, '49.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65067, '2022-03-11', 2379, 61928, 4195, 4032, '-49.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 (65068, '2022-03-11', 2379, 61928, 4195, NULL, '50.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65069, '2022-03-11', 9734, 61929, 4195, NULL, '2.0000', '0.3200', '0.3200', '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 (65070, '2022-03-11', 1666, 61930, 4195, 3236, '-21.0000', '2.7100', '2.7100', '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 (65071, '2022-03-11', 1666, 61930, 4195, NULL, '22.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65072, '2022-03-11', 2022, 61931, 4195, 20647, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (65073, '2022-03-11', 1851, 61932, 4195, 8627, '-5.0000', '10.6568', '10.6568', '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 (65074, '2022-03-11', 1851, 61932, 4195, NULL, '6.0000', '10.6568', '10.6568', '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 (65075, '2022-03-11', 1812, 61933, 4195, 8224, '-73.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 (65076, '2022-03-11', 1812, 61933, 4195, NULL, '74.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65077, '2022-03-11', 1950, 61934, 4195, 18848, '1.0000', '-13.5726', '-13.5726', '5.0000', '5.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 (65078, '2022-03-11', 2169, 61935, 4195, 10737, '-59.0000', '3.8397', '3.8397', '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 (65079, '2022-03-11', 2169, 61935, 4195, NULL, '63.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65080, '2022-03-11', 1839, 61936, 4195, 8734, '-22.0000', '6.1500', '6.1500', '9.5000', '9.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 (65081, '2022-03-11', 1839, 61936, 4195, NULL, '23.0000', '6.1500', '6.1500', '9.5000', '9.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 (65082, '2022-03-11', 9734, 61937, 4195, NULL, '2.0000', '0.3200', '0.3200', '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 (65083, '2022-03-11', 1313, 61938, 4195, 21496, '2.0000', '2.6700', '2.6700', '2.0000', '2.0000', '20.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 (65084, '2022-03-11', 2633, 61939, 4195, 17589, '-4.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 (65085, '2022-03-11', 2633, 61939, 4195, NULL, '5.0000', '3.5000', '3.5000', '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 (65086, '2022-03-11', 1839, 61940, 4195, 8734, '-22.0000', '6.1500', '6.1500', '9.5000', '9.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 (65087, '2022-03-11', 1839, 61940, 4195, NULL, '23.0000', '6.1500', '6.1500', '9.5000', '9.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 (65088, '2022-03-11', 1592, 61941, 4195, 6223, '-11.0000', '35.9000', '35.9000', '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 (65089, '2022-03-11', 1592, 61941, 4195, NULL, '12.0000', '35.9000', '35.9000', '47.5000', '47.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 (65090, '2022-03-11', 2858, 61942, 4195, 17772, '-48.0000', '1.0000', '1.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 (65091, '2022-03-11', 2858, 61942, 4195, NULL, '49.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65092, '2022-03-11', 1546, 61943, 4195, 1633, '-12.0000', '2.3697', '2.3697', '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 (65093, '2022-03-11', 1546, 61943, 4195, NULL, '19.0000', '2.3697', '2.3697', '4.0000', '4.0000', '-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 (65094, '2022-03-11', 2154, 61944, 4195, 1369, '1.0000', '10.6849', '10.6849', '14.5200', '14.5200', '2.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 (65095, '2022-03-11', 1564, 61945, 4195, 18921, '2.0000', '2.6000', '2.6000', '4.0000', '4.0000', '72.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 (65096, '2022-03-11', 2379, 61946, 4195, 4032, '-49.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 (65097, '2022-03-11', 2379, 61946, 4195, NULL, '50.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65098, '2022-03-11', 1989, 61947, 4195, 33064, '1.0000', '5.1429', '5.1429', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65099, '2022-03-11', 2037, 61948, 4196, 6389, '-12.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65100, '2022-03-11', 2037, 61948, 4196, NULL, '13.0000', '10.5000', '10.5000', '14.0000', '14.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 (65101, '2022-03-11', 2660, 61949, 4196, 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 (65102, '2022-03-11', 2384, 61950, 4196, 12014, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '64.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 (65103, '2022-03-11', 2405, 61951, 4196, 4452, '-20.0000', '1.2000', '1.2000', '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 (65104, '2022-03-11', 2405, 61951, 4196, NULL, '21.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65105, '2022-03-11', 1311, 61952, 4196, 5437, '-10.0000', '79.3908', '79.3908', '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 (65106, '2022-03-11', 1311, 61952, 4196, NULL, '11.0000', '79.3908', '79.3908', '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 (65107, '2022-03-11', 9758, 61953, 4196, NULL, '1.0000', '3.1400', '3.1400', '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 (65108, '2022-03-11', 2302, 61954, 4196, 2963, '-36.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 (65109, '2022-03-11', 2302, 61954, 4196, NULL, '38.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65110, '2022-03-11', 9089, 61955, 4196, NULL, '1.0000', '3.8000', '3.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 (65111, '2022-03-11', 9830, 61956, 4196, 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 (65112, '2022-03-11', 1871, 61957, 4196, 8223, '-155.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 (65113, '2022-03-11', 1871, 61957, 4196, NULL, '160.0000', '24.5246', '24.5246', '3.0000', '3.0000', '-160.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65114, '2022-03-11', 2943, 61958, 4196, 19987, '-7.0000', '2.1800', '2.1800', '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 (65115, '2022-03-11', 2943, 61958, 4196, NULL, '8.0000', '2.1800', '2.1800', '4.0000', '4.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 (65116, '2022-03-11', 2272, 61959, 4196, 2932, '-19.0000', '5.5000', '5.5000', '7.8400', '7.8400', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65117, '2022-03-11', 2272, 61959, 4196, NULL, '20.0000', '5.5000', '5.5000', '7.8400', '7.8400', '-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 (65118, '2022-03-11', 9831, 61960, 4196, NULL, '1.0000', '1.5600', '1.5600', '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 (65119, '2022-03-11', 7514, 61961, 4196, NULL, '2.0000', '2.2500', '2.2500', '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 (65120, '2022-03-11', 1771, 61962, 4196, 6775, '1.0000', '5.2450', '5.2450', '8.0000', '8.0000', '0.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 (65121, '2022-03-11', 2237, 61963, 4196, 2781, '-45.0000', '1.0600', '1.0600', '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 (65122, '2022-03-11', 2237, 61963, 4196, NULL, '46.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65123, '2022-03-11', 9831, 61964, 4196, NULL, '1.0000', '1.5600', '1.5600', '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 (65124, '2022-03-11', 7524, 61965, 4196, NULL, '1.0000', '11.9500', '11.9500', '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 (65125, '2022-03-11', 1620, 61966, 4196, 8955, '-3.0000', '408.8259', '408.8259', '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 (65126, '2022-03-11', 1620, 61966, 4196, NULL, '5.0000', '408.8259', '408.8259', '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 (65127, '2022-03-11', 8626, 61967, 4196, NULL, '2.0000', '7.5000', '7.5000', '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 (65128, '2022-03-11', 2250, 61968, 4196, 2787, '-4.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 (65129, '2022-03-11', 2250, 61968, 4196, NULL, '6.0000', '6.8900', '6.8900', '10.0000', '10.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 (65130, '2022-03-11', 7415, 61969, 4196, 33809, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65131, '2022-03-11', 1346, 61970, 4196, 21942, '-131.0000', '1.0594', '1.0594', '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 (65132, '2022-03-11', 1346, 61970, 4196, NULL, '138.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-138.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65133, '2022-03-11', 8359, 61971, 4196, 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 (65134, '2022-03-11', 2221, 61972, 4196, 4154, '-57.0000', '14.4737', '14.4737', '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 (65135, '2022-03-11', 2221, 61972, 4196, NULL, '58.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65136, '2022-03-11', 7674, 61973, 4197, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65137, '2022-03-11', 7954, 61974, 4197, NULL, '4.0000', '412.7272', '412.7272', '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 (65138, '2022-03-11', 7411, 61975, 4197, NULL, '2.0000', '1.2529', '1.2529', '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 (65139, '2022-03-11', 8170, 61976, 4197, NULL, '1.0000', '5.6600', '5.6600', '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 (65140, '2022-03-11', 7675, 61977, 4197, NULL, '1.0000', '84.8590', '84.8590', '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 (65141, '2022-03-11', 2315, 61978, 4197, NULL, '1.0000', '0.8863', '0.8863', '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 (65142, '2022-03-11', 8539, 61979, 4197, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '35.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65143, '2022-03-11', 7482, 61980, 4197, NULL, '1.0000', '3.3336', '3.3336', '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 (65144, '2022-03-11', 2906, 61981, 4197, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '45.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65145, '2022-03-11', 7428, 61982, 4197, 51281, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '51.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65146, '2022-03-11', 7754, 61983, 4197, 51299, '1.0000', '4.1978', '4.1978', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65147, '2022-03-11', 7623, 61984, 4197, 37383, '1.0000', '34.7700', '34.7700', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65148, '2022-03-11', 7959, 61985, 4197, NULL, '2.0000', '9.6000', '9.6000', '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 (65149, '2022-03-11', 1432, 61986, 4198, 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 (65150, '2022-03-11', 9747, 61987, 4199, NULL, '2.0000', '0.6500', '0.6500', '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 (65151, '2022-03-11', 2135, 61988, 4200, 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 (65152, '2022-03-11', 1545, 61989, 4201, 48141, '1.0000', '12.7570', '12.7570', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65153, '2022-03-11', 1841, 61990, 4201, NULL, '9.0000', '0.2601', '0.2601', '0.5000', '0.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 (65154, '2022-03-11', 2295, 61991, 4201, 51317, '6.0000', '1.0524', '1.0524', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65155, '2022-03-11', 2726, 61992, 4201, NULL, '1.0000', '2.7018', '2.7018', '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 (65156, '2022-03-11', 8359, 61993, 4201, NULL, '1.0000', '13.5000', '13.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 (65157, '2022-03-11', 7666, 61994, 4201, NULL, '1.0000', '-6.0000', '-6.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 (65158, '2022-03-11', 1839, 61995, 4201, NULL, '1.0000', '-43.3048', '-43.3048', '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 (65159, '2022-03-11', 2109, 61996, 4201, 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 (65160, '2022-03-11', 1880, 61997, 4201, 49320, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65161, '2022-03-11', 7741, 61998, 4201, NULL, '1.0000', '-0.8167', '-0.8167', '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 (65162, '2022-03-11', 8133, 61999, 4201, NULL, '1.0000', '-1141.7448', '-1141.7448', '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 (65163, '2022-03-11', 2169, 62000, 4201, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65164, '2022-03-11', 1631, 62001, 4201, 51498, '1.0000', '12.8300', '12.8300', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65165, '2022-03-11', 9807, 62002, 4201, 51364, '1.0000', '36.8000', '36.8000', '49.0000', '49.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65166, '2022-03-11', 1404, 62003, 4201, 48988, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65167, '2022-03-11', 1404, 62003, 4201, 38556, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65168, '2022-03-11', 9683, 62004, 4201, 51021, '1.0000', '3.2255', '3.2255', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65169, '2022-03-11', 1564, 62005, 4201, NULL, '1.0000', '3.4988', '3.4988', '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 (65170, '2022-03-11', 1840, 62006, 4201, NULL, '9.0000', '0.2400', '0.2400', '0.5000', '0.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 (65171, '2022-03-11', 1580, 62007, 4201, 51316, '2.0000', '1.1598', '1.1598', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65172, '2022-03-11', 2293, 62008, 4201, 51215, '1.0000', '10.2680', '10.2680', '1.5000', '1.5000', '53.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65173, '2022-03-11', 1602, 62009, 4201, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '34.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65174, '2022-03-11', 9828, 62010, 4201, NULL, '1.0000', '2.9100', '2.9100', '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 (65175, '2022-03-11', 8775, 62011, 4201, 51020, '1.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65176, '2022-03-11', 2381, 62012, 4201, 48511, '1.0000', '11.8190', '11.8190', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65177, '2022-03-11', 1935, 62013, 4201, 49259, '2.0000', '0.8402', '0.8402', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65178, '2022-03-11', 7564, 62014, 4201, NULL, '1.0000', '0.6400', '0.6400', '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 (65179, '2022-03-11', 8774, 62015, 4201, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65180, '2022-03-11', 9204, 62016, 4201, NULL, '1.0000', '8.1600', '8.1600', '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 (65181, '2022-03-11', 9794, 62017, 4201, 51219, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65182, '2022-03-11', 1935, 62018, 4201, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65183, '2022-03-11', 1328, 62019, 4201, 32533, '1.0000', '3.1500', '3.1500', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65184, '2022-03-11', 9747, 62020, 4202, NULL, '1.0000', '0.6500', '0.6500', '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 (65185, '2022-03-11', 9747, 62021, 4203, NULL, '1.0000', '0.6500', '0.6500', '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 (65186, '2022-03-11', 7411, 62022, 4203, NULL, '1.0000', '1.3500', '1.3500', '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 (65187, '2022-03-12', 7585, 62023, 4204, NULL, '1.0000', '4.2400', '4.2400', '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 (65188, '2022-03-12', 2293, 62024, 4204, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '97.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65189, '2022-03-12', 9578, 62025, 4204, 47854, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 349);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65190, '2022-03-12', 1601, 62026, 4204, 9464, '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 (65191, '2022-03-12', 2444, 62027, 4204, 42936, '1.0000', '8.2500', '8.2500', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65192, '2022-03-12', 1873, 62028, 4204, 50889, '1.0000', '12.3795', '12.3795', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65193, '2022-03-12', 9740, 62029, 4204, 46037, '3.0000', '0.6600', '0.6600', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65194, '2022-03-12', 9695, 62030, 4204, 49478, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65195, '2022-03-12', 7744, 62031, 4204, NULL, '1.0000', '2.9400', '2.9400', '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 (65196, '2022-03-12', 2558, 62032, 4204, 44508, '1.0000', '5.4253', '5.4253', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65197, '2022-03-12', 1528, 62033, 4205, 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 (65198, '2022-03-12', 1837, 62034, 4205, NULL, '2.0000', '1.5967', '1.5967', '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 (65199, '2022-03-12', 9834, 62035, 4205, 51231, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65200, '2022-03-12', 2379, 62036, 4205, NULL, '1.0000', '1.0877', '1.0877', '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 (65201, '2022-03-12', 2821, 62037, 4205, NULL, '1.0000', '3.9374', '3.9374', '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 (65202, '2022-03-12', 2169, 62038, 4205, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65203, '2022-03-12', 1871, 62039, 4205, NULL, '21.0000', '2.2081', '2.2081', '3.0000', '3.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65204, '2022-03-12', 2221, 62040, 4205, 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 (65205, '2022-03-12', 1935, 62041, 4205, 49259, '2.0000', '0.8402', '0.8402', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65206, '2022-03-12', 1935, 62042, 4205, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65207, '2022-03-12', 2355, 62043, 4205, 51494, '1.0000', '18.8669', '18.8669', '84.0000', '84.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65208, '2022-03-12', 1646, 62044, 4205, 48591, '1.0000', '4.7113', '4.7113', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65209, '2022-03-12', 2318, 62045, 4205, 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 (65210, '2022-03-12', 8065, 62046, 4205, NULL, '1.0000', '32.0000', '32.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 (65211, '2022-03-12', 2061, 62047, 4205, NULL, '1.0000', '11.0146', '11.0146', '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 (65212, '2022-03-12', 1787, 62048, 4205, NULL, '1.0000', '0.5000', '0.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 (65213, '2022-03-12', 9735, 62049, 4205, 51368, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65214, '2022-03-12', 7318, 62050, 4205, 51230, '1.0000', '10.5126', '10.5126', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65215, '2022-03-12', 2637, 62051, 4205, NULL, '1.0000', '10.0000', '10.0000', '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 (65216, '2022-03-12', 1367, 62052, 4205, 18939, '10.0000', '49.2100', '49.2100', '7.0000', '7.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 (65217, '2022-03-12', 2221, 62053, 4205, 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 (65218, '2022-03-12', 1928, 62054, 4205, NULL, '1.0000', '5.3300', '5.3300', '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 (65219, '2022-03-12', 1668, 62055, 4205, 51486, '1.0000', '33.7602', '33.7602', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65220, '2022-03-12', 9737, 62056, 4205, NULL, '1.0000', '7.3000', '7.3000', '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 (65221, '2022-03-12', 2102, 62057, 4205, 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 (65222, '2022-03-12', 7743, 62058, 4205, NULL, '1.0000', '7.3900', '7.3900', '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 (65223, '2022-03-12', 2259, 62059, 4205, 49309, '1.0000', '22.0000', '22.0000', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65224, '2022-03-12', 2386, 62060, 4205, 48461, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65225, '2022-03-12', 2335, 62061, 4205, NULL, '1.0000', '13.9000', '13.9000', '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 (65226, '2022-03-12', 7628, 62062, 4205, NULL, '3.0000', '2.9100', '2.9100', '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 (65227, '2022-03-12', 1533, 62063, 4205, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '12.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65228, '2022-03-12', 1855, 62064, 4205, NULL, '1.0000', '1.5003', '1.5003', '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 (65229, '2022-03-12', 2105, 62065, 4205, 51351, '1.0000', '2.5167', '2.5167', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65230, '2022-03-12', 2242, 62066, 4205, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65231, '2022-03-12', 1863, 62067, 4205, 51369, '3.0000', '1.3883', '1.3883', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65232, '2022-03-12', 2726, 62068, 4205, NULL, '1.0000', '2.7018', '2.7018', '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 (65233, '2022-03-12', 1510, 62069, 4205, NULL, '1.0000', '9.5885', '9.5885', '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 (65234, '2022-03-12', 2242, 62070, 4205, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65235, '2022-03-12', 1928, 62071, 4205, NULL, '1.0000', '5.3300', '5.3300', '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 (65236, '2022-03-12', 1574, 62072, 4205, NULL, '3.0000', '1.7000', '1.7000', '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 (65237, '2022-03-12', 9731, 62073, 4205, 51226, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65238, '2022-03-12', 9735, 62074, 4205, 51368, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65239, '2022-03-12', 2523, 62075, 4205, 23979, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '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 (65240, '2022-03-12', 2982, 62076, 4205, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '11.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 (65241, '2022-03-12', 9735, 62077, 4205, 51368, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65242, '2022-03-12', 7318, 62078, 4205, 51230, '1.0000', '10.5126', '10.5126', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65243, '2022-03-12', 8015, 62079, 4205, 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 (65244, '2022-03-12', 1598, 62080, 4205, 47054, '1.0000', '4.0526', '4.0526', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65245, '2022-03-12', 2237, 62081, 4205, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65246, '2022-03-12', 2382, 62082, 4205, 19869, '1.0000', '15.6600', '15.6600', '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 (65247, '2022-03-12', 9848, 62083, 4205, 51399, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65248, '2022-03-12', 9748, 62084, 4205, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65249, '2022-03-12', 2381, 62085, 4205, 48511, '1.0000', '11.8190', '11.8190', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65250, '2022-03-12', 1533, 62086, 4205, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '12.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65251, '2022-03-12', 9329, 62087, 4205, NULL, '1.0000', '5.8000', '5.8000', '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 (65252, '2022-03-12', 7385, 62088, 4205, 50524, '6.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65253, '2022-03-12', 2936, 62089, 4205, 51348, '1.0000', '6.7000', '6.7000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65254, '2022-03-12', 2636, 62090, 4205, 34956, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65255, '2022-03-12', 2408, 62091, 4205, 48631, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65256, '2022-03-12', 9783, 62092, 4205, NULL, '1.0000', '17.6000', '17.6000', '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 (65257, '2022-03-12', 7650, 62093, 4205, NULL, '1.0000', '0.8900', '0.8900', '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 (65258, '2022-03-12', 9735, 62094, 4205, 51368, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65259, '2022-03-12', 2699, 62095, 4205, NULL, '2.0000', '2.5833', '2.5833', '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 (65260, '2022-03-12', 7320, 62096, 4205, NULL, '1.0000', '7.9500', '7.9500', '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 (65261, '2022-03-12', 2616, 62097, 4205, NULL, '2.0000', '3.0000', '3.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 (65262, '2022-03-12', 8038, 62098, 4205, NULL, '1.0000', '10.0000', '10.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 (65263, '2022-03-12', 1550, 62099, 4205, 50071, '1.0000', '17.7644', '17.7644', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65264, '2022-03-12', 8184, 62100, 4205, 51244, '14.0000', '2.5667', '2.5667', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65265, '2022-03-12', 1889, 62101, 4205, NULL, '1.0000', '1.3000', '1.3000', '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 (65266, '2022-03-12', 2305, 62102, 4205, NULL, '1.0000', '1.3300', '1.3300', '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 (65267, '2022-03-12', 8404, 62103, 4205, NULL, '1.0000', '36.1200', '36.1200', '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 (65268, '2022-03-12', 9832, 62104, 4205, NULL, '1.0000', '1.5600', '1.5600', '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 (65269, '2022-03-12', 7609, 62105, 4205, NULL, '1.0000', '4.3300', '4.3300', '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 (65270, '2022-03-12', 1837, 62106, 4205, NULL, '3.0000', '1.5967', '1.5967', '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 (65271, '2022-03-12', 2821, 62107, 4205, NULL, '1.0000', '3.9374', '3.9374', '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 (65272, '2022-03-12', 9471, 62108, 4205, 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 (65273, '2022-03-12', 8746, 62109, 4205, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65274, '2022-03-12', 8769, 62110, 4205, NULL, '1.0000', '6.6000', '6.6000', '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 (65275, '2022-03-12', 1999, 62111, 4205, NULL, '1.0000', '6.8730', '6.8730', '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 (65276, '2022-03-12', 2366, 62112, 4206, NULL, '2.0000', '-24.7743', '-24.7743', '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 (65277, '2022-03-12', 2582, 62113, 4206, NULL, '1.0000', '11.5000', '11.5000', '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 (65278, '2022-03-12', 2891, 62114, 4206, 51378, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65279, '2022-03-12', 9736, 62115, 4206, NULL, '1.0000', '3.9100', '3.9100', '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 (65280, '2022-03-12', 1872, 62116, 4206, 37970, '1.0000', '8.5555', '8.5555', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65281, '2022-03-12', 1837, 62117, 4206, NULL, '2.0000', '1.5967', '1.5967', '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 (65282, '2022-03-12', 9840, 62118, 4206, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65283, '2022-03-12', 1692, 62119, 4206, 51507, '2.0000', '9.8219', '9.8219', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65284, '2022-03-12', 2657, 62120, 4206, 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 (65285, '2022-03-12', 1837, 62121, 4206, NULL, '1.0000', '1.5967', '1.5967', '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 (65286, '2022-03-12', 1499, 62122, 4206, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65287, '2022-03-12', 8179, 62123, 4206, NULL, '1.0000', '0.2200', '0.2200', '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 (65288, '2022-03-12', 8775, 62124, 4206, 51020, '1.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65289, '2022-03-12', 9598, 62125, 4206, 42837, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65290, '2022-03-12', 1651, 62126, 4206, NULL, '1.0000', '6.3300', '6.3300', '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 (65291, '2022-03-12', 2592, 62127, 4206, 48144, '2.0000', '7.6936', '7.6936', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65292, '2022-03-12', 2592, 62127, 4206, 38524, '1.0000', '7.6936', '7.6936', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65293, '2022-03-12', 1863, 62128, 4206, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65294, '2022-03-12', 2891, 62129, 4206, 51378, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65295, '2022-03-12', 1310, 62130, 4206, 49358, '6.0000', '0.4100', '0.4100', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65296, '2022-03-12', 1310, 62130, 4206, 48656, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65297, '2022-03-12', 9758, 62131, 4206, NULL, '2.0000', '3.1400', '3.1400', '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 (65298, '2022-03-12', 9831, 62132, 4206, NULL, '1.0000', '1.5600', '1.5600', '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 (65299, '2022-03-12', 2039, 62133, 4206, 49915, '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 (65300, '2022-03-12', 7385, 62134, 4207, 50524, '1.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65301, '2022-03-12', 9747, 62135, 4207, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65302, '2022-03-12', 2458, 62136, 4207, 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 (65303, '2022-03-12', 1647, 62137, 4207, NULL, '1.0000', '5.0700', '5.0700', '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 (65304, '2022-03-12', 1946, 62138, 4207, NULL, '1.0000', '1.5500', '1.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 (65305, '2022-03-12', 2354, 62139, 4207, NULL, '1.0000', '3.6465', '3.6465', '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 (65306, '2022-03-12', 1855, 62140, 4207, NULL, '1.0000', '1.5003', '1.5003', '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 (65307, '2022-03-12', 1557, 62141, 4207, 51512, '1.0000', '8.1969', '8.1969', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65308, '2022-03-12', 8384, 62142, 4207, 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 (65309, '2022-03-12', 9482, 62143, 4207, 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 (65310, '2022-03-12', 2083, 62144, 4207, 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 (65311, '2022-03-12', 9750, 62145, 4207, NULL, '1.0000', '3.3000', '3.3000', '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 (65312, '2022-03-12', 1863, 62146, 4207, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65313, '2022-03-12', 2293, 62147, 4207, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '50.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65314, '2022-03-12', 1380, 62148, 4207, 44063, '2.0000', '12.0000', '12.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65315, '2022-03-12', 1380, 62148, 4207, NULL, '1.0000', '12.0000', '12.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 (65316, '2022-03-12', 8566, 62149, 4207, 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 (65317, '2022-03-12', 2660, 62150, 4207, 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 (65318, '2022-03-12', 7548, 62151, 4207, NULL, '1.0000', '0.3400', '0.3400', '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 (65319, '2022-03-12', 8203, 62152, 4207, NULL, '1.0000', '9.8000', '9.8000', '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 (65320, '2022-03-12', 1785, 62153, 4208, 51303, '1.0000', '15.9818', '15.9818', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65321, '2022-03-12', 2169, 62154, 4208, 51358, '2.0000', '1.4789', '1.4789', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65322, '2022-03-12', 2340, 62155, 4208, 49311, '1.0000', '7.4200', '7.4200', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65323, '2022-03-12', 9750, 62156, 4208, NULL, '1.0000', '3.3000', '3.3000', '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 (65324, '2022-03-12', 1602, 62157, 4208, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '33.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65325, '2022-03-12', 9775, 62158, 4208, NULL, '1.0000', '7.9000', '7.9000', '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 (65326, '2022-03-12', 1616, 62159, 4208, 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 (65327, '2022-03-12', 1446, 62160, 4208, 47088, '1.0000', '4.8156', '4.8156', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65328, '2022-03-12', 1841, 62161, 4209, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65329, '2022-03-12', 7819, 62162, 4209, NULL, '1.0000', '10.5656', '10.5656', '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 (65330, '2022-03-12', 8753, 62163, 4209, 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 (65331, '2022-03-12', 7641, 62164, 4209, NULL, '1.0000', '-543.6034', '-543.6034', '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 (65332, '2022-03-12', 8596, 62165, 4209, NULL, '1.0000', '17.0000', '17.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 (65333, '2022-03-12', 8208, 62166, 4209, NULL, '2.0000', '33.0000', '33.0000', '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 (65334, '2022-03-12', 7557, 62167, 4209, 51290, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65335, '2022-03-12', 7557, 62167, 4209, NULL, '8.0000', '0.5000', '0.5000', '1.0000', '1.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 (65336, '2022-03-12', 1557, 62168, 4209, 51255, '1.0000', '7.9200', '7.9200', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65337, '2022-03-12', 2906, 62169, 4209, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '44.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65338, '2022-03-12', 7942, 62170, 4209, NULL, '18.0000', '1.1500', '1.1500', '13.0000', '13.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 (65339, '2022-03-12', 7326, 62171, 4209, NULL, '1.0000', '107.8500', '107.8500', '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 (65340, '2022-03-12', 7411, 62172, 4209, NULL, '3.0000', '1.2529', '1.2529', '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 (65341, '2022-03-12', 1845, 62173, 4209, 47925, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65342, '2022-03-12', 7491, 62174, 4209, NULL, '1.0000', '4.8666', '4.8666', '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 (65343, '2022-03-12', 8325, 62175, 4209, NULL, '1.0000', '6.3350', '6.3350', '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 (65344, '2022-03-12', 7713, 62176, 4209, 50666, '3.0000', '0.3910', '0.3910', '0.6000', '0.6000', '117.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65345, '2022-03-12', 7565, 62177, 4209, NULL, '1.0000', '0.2000', '0.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 (65346, '2022-03-12', 7473, 62178, 4209, NULL, '5.0000', '710.0742', '710.0742', '0.6000', '0.6000', '-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 (65347, '2022-03-12', 7825, 62179, 4209, NULL, '2.0000', '-45.5949', '-45.5949', '18.5000', '18.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 (65348, '2022-03-12', 7815, 62180, 4209, NULL, '2.0000', '6.6000', '6.6000', '28.0000', '28.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 (65349, '2022-03-12', 8038, 62181, 4209, NULL, '1.0000', '6.4795', '6.4795', '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 (65350, '2022-03-12', 7821, 62182, 4209, 51268, '1.0000', '7.9898', '7.9898', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65351, '2022-03-12', 7411, 62183, 4209, NULL, '1.0000', '1.2529', '1.2529', '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 (65352, '2022-03-12', 8000, 62184, 4209, NULL, '1.0000', '439.7927', '439.7927', '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 (65353, '2022-03-12', 7881, 62185, 4209, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65354, '2022-03-12', 7509, 62186, 4209, 50686, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65355, '2022-03-12', 7748, 62187, 4209, NULL, '1.0000', '1384248.3485', '1384248.3485', '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 (65356, '2022-03-12', 9480, 62188, 4209, 39402, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65357, '2022-03-12', 9193, 62189, 4209, NULL, '1.0000', '7.0315', '7.0315', '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 (65358, '2022-03-12', 8000, 62190, 4209, NULL, '1.0000', '439.7927', '439.7927', '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 (65359, '2022-03-12', 7672, 62191, 4209, NULL, '1.0000', '3.8200', '3.8200', '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 (65360, '2022-03-12', 2352, 62192, 4209, NULL, '2.0000', '1.9000', '1.9000', '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 (65361, '2022-03-12', 8208, 62193, 4209, NULL, '4.0000', '33.0000', '33.0000', '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 (65362, '2022-03-12', 9759, 62194, 4209, 46937, '1.0000', '19.6800', '19.6800', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65363, '2022-03-12', 8254, 62195, 4209, 51098, '1.0000', '25.8981', '25.8981', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65364, '2022-03-12', 7712, 62196, 4209, NULL, '1.0000', '-245.5125', '-245.5125', '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 (65365, '2022-03-12', 7588, 62197, 4209, NULL, '1.0000', '8.2161', '8.2161', '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 (65366, '2022-03-12', 9785, 62198, 4209, 51091, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65367, '2022-03-12', 7509, 62199, 4209, 50686, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65368, '2022-03-12', 7514, 62200, 4209, NULL, '1.0000', '97.7006', '97.7006', '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 (65369, '2022-03-12', 9001, 62201, 4209, NULL, '1.0000', '-91.5200', '-91.5200', '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 (65370, '2022-03-12', 8200, 62202, 4209, NULL, '1.0000', '-552067.1340', '-552067.1340', '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 (65371, '2022-03-12', 8752, 62203, 4209, NULL, '2.0000', '4.2000', '4.2000', '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 (65372, '2022-03-12', 8941, 62204, 4209, NULL, '1.0000', '12.0000', '12.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 (65373, '2022-03-12', 9092, 62205, 4209, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '45.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65374, '2022-03-12', 7899, 62206, 4209, NULL, '1.0000', '3.3000', '3.3000', '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 (65375, '2022-03-12', 9001, 62207, 4209, NULL, '1.0000', '-91.5200', '-91.5200', '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 (65376, '2022-03-12', 9092, 62208, 4209, 50305, '4.0000', '0.3129', '0.3129', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65377, '2022-03-12', 7524, 62209, 4209, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65378, '2022-03-12', 1501, 62210, 4209, 50680, '1.0000', '2.2898', '2.2898', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65379, '2022-03-12', 8198, 62211, 4209, NULL, '1.0000', '-25.9669', '-25.9669', '84.0000', '84.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65380, '2022-03-12', 8982, 62212, 4209, 42769, '1.0000', '9.0560', '9.0560', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65381, '2022-03-12', 7848, 62213, 4209, NULL, '1.0000', '-17.3215', '-17.3215', '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 (65382, '2022-03-12', 7609, 62214, 4209, NULL, '1.0000', '4.4421', '4.4421', '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 (65383, '2022-03-12', 7354, 62215, 4209, NULL, '1.0000', '18.0000', '18.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 (65384, '2022-03-12', 8243, 62216, 4209, NULL, '1.0000', '1.1400', '1.1400', '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 (65385, '2022-03-12', 7507, 62217, 4209, NULL, '3.0000', '6.5000', '6.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 (65386, '2022-03-12', 1935, 62218, 4209, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '155.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65387, '2022-03-12', 9724, 62219, 4209, NULL, '1.0000', '20.3000', '20.3000', '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 (65388, '2022-03-12', 2221, 62220, 4210, 4154, '-58.0000', '14.4737', '14.4737', '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 (65389, '2022-03-12', 2221, 62220, 4210, NULL, '59.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65390, '2022-03-12', 2135, 62221, 4211, NULL, '1.0000', '2.4732', '2.4732', '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 (65391, '2022-03-12', 2699, 62222, 4211, NULL, '1.0000', '2.5833', '2.5833', '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 (65392, '2022-03-12', 1779, 62223, 4211, 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 (65393, '2022-03-12', 2293, 62224, 4211, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65394, '2022-03-12', 7509, 62225, 4211, 39804, '1.0000', '6.6000', '6.6000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65395, '2022-03-12', 9755, 62226, 4211, 49261, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65396, '2022-03-12', 1651, 62227, 4211, NULL, '1.0000', '6.3300', '6.3300', '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 (65397, '2022-03-12', 1551, 62228, 4212, 48915, '1.0000', '14.7700', '14.7700', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65398, '2022-03-12', 7342, 62229, 4213, NULL, '1.0000', '15.7285', '15.7285', '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 (65399, '2022-03-12', 8771, 62230, 4213, 51018, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65400, '2022-03-12', 2965, 62231, 4213, NULL, '1.0000', '6.3064', '6.3064', '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 (65401, '2022-03-12', 2062, 62232, 4213, 49639, '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 (65402, '2022-03-12', 2302, 62233, 4214, 2963, '-38.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 (65403, '2022-03-12', 2302, 62233, 4214, NULL, '39.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65404, '2022-03-12', 2828, 62234, 4214, NULL, '1.0000', '17.6500', '17.6500', '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 (65405, '2022-03-12', 7411, 62235, 4214, NULL, '2.0000', '1.3500', '1.3500', '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 (65406, '2022-03-12', 2169, 62236, 4214, 10737, '-63.0000', '3.8397', '3.8397', '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 (65407, '2022-03-12', 2169, 62236, 4214, NULL, '64.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65408, '2022-03-12', 9738, 62237, 4214, NULL, '1.0000', '5.9000', '5.9000', '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 (65409, '2022-03-12', 1665, 62238, 4214, 3235, '-81.0000', '1.3000', '1.3000', '1.5700', '1.5700', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65410, '2022-03-12', 1665, 62238, 4214, NULL, '83.0000', '1.3000', '1.3000', '1.5700', '1.5700', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65411, '2022-03-12', 2088, 62239, 4214, 21781, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.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 (65412, '2022-03-12', 1655, 62240, 4214, 3226, '-1.0000', '33.8400', '33.8400', '49.5000', '49.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 (65413, '2022-03-12', 1655, 62240, 4214, NULL, '2.0000', '33.8400', '33.8400', '49.5000', '49.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 (65414, '2022-03-12', 2511, 62241, 4214, 9740, '-11.0000', '8.5000', '8.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 (65415, '2022-03-12', 2511, 62241, 4214, NULL, '12.0000', '8.5000', '8.5000', '12.5000', '12.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 (65416, '2022-03-12', 1625, 62242, 4214, 8895, '-2.0000', '16.6997', '16.6997', '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 (65417, '2022-03-12', 1625, 62242, 4214, NULL, '4.0000', '16.6997', '16.6997', '22.0000', '22.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 (65418, '2022-03-12', 2285, 62243, 4214, 2945, '-39.0000', '35.8000', '35.8000', '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 (65419, '2022-03-12', 2285, 62243, 4214, NULL, '40.0000', '35.8000', '35.8000', '49.0000', '49.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 (65420, '2022-03-12', 1863, 62244, 4214, 10808, '-117.0000', '0.4136', '0.4136', '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 (65421, '2022-03-12', 1863, 62244, 4214, NULL, '120.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65422, '2022-03-12', 1310, 62245, 4214, NULL, '3.0000', '0.3700', '0.3700', '0.6000', '0.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 (65423, '2022-03-12', 1851, 62246, 4214, 8627, '-6.0000', '10.6568', '10.6568', '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 (65424, '2022-03-12', 1851, 62246, 4214, NULL, '7.0000', '10.6568', '10.6568', '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 (65425, '2022-03-12', 1603, 62247, 4214, 8727, '-3.0000', '59.4600', '59.4600', '84.5000', '84.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 (65426, '2022-03-12', 1603, 62247, 4214, NULL, '4.0000', '59.4600', '59.4600', '84.5000', '84.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 (65427, '2022-03-12', 9734, 62248, 4214, NULL, '1.0000', '0.3200', '0.3200', '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 (65428, '2022-03-12', 2231, 62249, 4214, 1706, '-5.0000', '33.0000', '33.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 (65429, '2022-03-12', 2231, 62249, 4214, NULL, '6.0000', '33.0000', '33.0000', '39.0000', '39.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 (65430, '2022-03-12', 3017, 62250, 4214, NULL, '1.0000', '3.9000', '3.9000', '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 (65431, '2022-03-12', 3029, 62251, 4214, NULL, '1.0000', '4.7700', '4.7700', '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 (65432, '2022-03-12', 2272, 62252, 4214, 2932, '-20.0000', '5.5000', '5.5000', '7.8400', '7.8400', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65433, '2022-03-12', 2272, 62252, 4214, NULL, '21.0000', '5.5000', '5.5000', '7.8400', '7.8400', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65434, '2022-03-12', 1694, 62253, 4214, 10813, '-2.0000', '7.1900', '7.1900', '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 (65435, '2022-03-12', 1694, 62253, 4214, NULL, '3.0000', '7.1900', '7.1900', '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 (65436, '2022-03-12', 2858, 62254, 4214, 17772, '-50.0000', '1.0000', '1.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 (65437, '2022-03-12', 2858, 62254, 4214, NULL, '52.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65438, '2022-03-12', 2169, 62255, 4214, 10737, '-63.0000', '3.8397', '3.8397', '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 (65439, '2022-03-12', 2169, 62255, 4214, NULL, '64.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65440, '2022-03-12', 9732, 62256, 4214, 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 (65441, '2022-03-12', 2556, 62257, 4214, 7196, '-32.0000', '0.5800', '0.5800', '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 (65442, '2022-03-12', 2556, 62257, 4214, NULL, '33.0000', '0.5800', '0.5800', '1.2000', '1.2000', '-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 (65443, '2022-03-12', 1704, 62258, 4214, 6311, '-6.0000', '27.0900', '27.0900', '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 (65444, '2022-03-12', 1704, 62258, 4214, NULL, '7.0000', '27.0900', '27.0900', '36.0000', '36.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 (65445, '2022-03-12', 1342, 62259, 4215, 11264, '-9.0000', '6.8074', '6.8074', '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 (65446, '2022-03-12', 1342, 62259, 4215, NULL, '10.0000', '6.8074', '6.8074', '8.0000', '8.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 (65447, '2022-03-12', 2233, 62260, 4215, 2777, '-25.0000', '19.0200', '19.0200', '29.5000', '29.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 (65448, '2022-03-12', 2233, 62260, 4215, NULL, '26.0000', '19.0200', '19.0200', '29.5000', '29.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 (65449, '2022-03-12', 1895, 62261, 4215, 5435, '-1.0000', '7.0200', '7.0200', '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 (65450, '2022-03-12', 1895, 62261, 4215, NULL, '2.0000', '7.0200', '7.0200', '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 (65451, '2022-03-12', 1875, 62262, 4215, 6949, '-53.0000', '2.4000', '2.4000', '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 (65452, '2022-03-12', 1875, 62262, 4215, NULL, '63.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65453, '2022-03-12', 7925, 62263, 4216, 47911, '1.0000', '10.5500', '10.5500', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65454, '2022-03-12', 7317, 62264, 4216, 50636, '1.0000', '14.9972', '14.9972', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65455, '2022-03-12', 7473, 62265, 4216, NULL, '10.0000', '710.0742', '710.0742', '0.6000', '0.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 (65456, '2022-03-12', 7703, 62266, 4216, NULL, '2.0000', '102.7757', '102.7757', '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 (65457, '2022-03-12', 8937, 62267, 4216, NULL, '2.0000', '3.5000', '3.5000', '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 (65458, '2022-03-12', 7564, 62268, 4216, NULL, '1.0000', '-19717.2224', '-19717.2224', '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 (65459, '2022-03-12', 7853, 62269, 4216, NULL, '1.0000', '-23535.2849', '-23535.2849', '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 (65460, '2022-03-12', 7917, 62270, 4216, NULL, '1.0000', '5.0000', '5.0000', '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 (65461, '2022-03-12', 8203, 62271, 4216, NULL, '2.0000', '29.8095', '29.8095', '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 (65462, '2022-03-12', 7781, 62272, 4216, NULL, '4.0000', '4.2500', '4.2500', '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 (65463, '2022-03-12', 7611, 62273, 4216, 47934, '1.0000', '4.6669', '4.6669', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65464, '2022-03-12', 7640, 62274, 4216, 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 (65465, '2022-03-12', 7514, 62275, 4216, NULL, '1.0000', '97.7006', '97.7006', '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 (65466, '2022-03-12', 9160, 62276, 4216, NULL, '1.0000', '41.6640', '41.6640', '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 (65467, '2022-03-12', 8412, 62277, 4216, NULL, '1.0000', '15.0000', '15.0000', '55.5000', '55.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65468, '2022-03-12', 9579, 62278, 4216, 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 (65469, '2022-03-12', 7672, 62279, 4216, NULL, '1.0000', '3.8200', '3.8200', '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 (65470, '2022-03-12', 7411, 62280, 4216, NULL, '3.0000', '1.2529', '1.2529', '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 (65471, '2022-03-12', 8328, 62281, 4216, NULL, '3.0000', '8.0175', '8.0175', '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 (65472, '2022-03-12', 7587, 62282, 4216, NULL, '1.0000', '6.3886', '6.3886', '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 (65473, '2022-03-12', 8769, 62283, 4216, 42766, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65474, '2022-03-12', 7585, 62284, 4216, NULL, '2.0000', '-3.1011', '-3.1011', '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 (65475, '2022-03-12', 7518, 62285, 4216, NULL, '1.0000', '81367880.7457', '81367880.7457', '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 (65476, '2022-03-12', 9092, 62286, 4216, 50305, '1.0000', '0.3129', '0.3129', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65477, '2022-03-12', 7952, 62287, 4216, NULL, '1.0000', '62.3792', '62.3792', '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 (65478, '2022-03-12', 2758, 62288, 4217, NULL, '1.0000', '5.4000', '5.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 (65479, '2022-03-12', 2293, 62289, 4217, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65480, '2022-03-12', 1863, 62290, 4217, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65481, '2022-03-12', 1912, 62291, 4217, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65482, '2022-03-12', 1598, 62292, 4217, 45633, '1.0000', '4.0526', '4.0526', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65483, '2022-03-12', 9830, 62293, 4217, 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 (65484, '2022-03-12', 2545, 62294, 4217, 51330, '1.0000', '6.4337', '6.4337', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65485, '2022-03-12', 1337, 62295, 4217, NULL, '1.0000', '2.0000', '2.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 (65486, '2022-03-12', 1493, 62296, 4217, NULL, '1.0000', '1.9600', '1.9600', '1.7200', '1.7200', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65487, '2022-03-12', 9573, 62297, 4217, 48731, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65488, '2022-03-12', 2354, 62298, 4217, NULL, '1.0000', '3.6465', '3.6465', '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 (65489, '2022-03-12', 9794, 62299, 4217, 51219, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65490, '2022-03-12', 1639, 62300, 4217, 51489, '1.0000', '7.1659', '7.1659', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65491, '2022-03-12', 9831, 62301, 4218, NULL, '1.0000', '1.5600', '1.5600', '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 (65492, '2022-03-12', 1307, 62302, 4218, NULL, '1.0000', '-0.0521', '-0.0521', '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 (65493, '2022-03-12', 1863, 62303, 4218, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65494, '2022-03-12', 1665, 62304, 4218, 51312, '1.0000', '1.1342', '1.1342', '1.5700', '1.5700', '46.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65495, '2022-03-12', 1730, 62305, 4218, 42832, '1.0000', '24.1993', '24.1993', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65496, '2022-03-12', 2810, 62306, 4218, 24934, '7.0000', '6788008906.4158', '6788008906.4158', '3.0000', '3.0000', '17.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 (65497, '2022-03-12', 2093, 62307, 4218, NULL, '1.0000', '2.5500', '2.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 (65498, '2022-03-12', 1666, 62308, 4218, 51313, '5.0000', '2.7137', '2.7137', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65499, '2022-03-12', 9747, 62309, 4219, NULL, '1.0000', '0.6500', '0.6500', '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 (65500, '2022-03-12', 1822, 62310, 4219, 8225, '-100.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 (65501, '2022-03-12', 1822, 62310, 4219, NULL, '101.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65502, '2022-03-12', 2858, 62311, 4219, 17772, '-52.0000', '1.0000', '1.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 (65503, '2022-03-12', 2858, 62311, 4219, NULL, '53.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (65504, '2022-03-12', 1912, 62312, 4219, 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 (65505, '2022-03-12', 7524, 62313, 4220, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65506, '2022-03-12', 9576, 62314, 4220, 46894, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65507, '2022-03-12', 2315, 62315, 4220, NULL, '1.0000', '0.8863', '0.8863', '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 (65508, '2022-03-12', 7640, 62316, 4220, 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 (65509, '2022-03-12', 8596, 62317, 4220, NULL, '2.0000', '17.0000', '17.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 (65510, '2022-03-12', 7641, 62318, 4220, NULL, '1.0000', '-543.6034', '-543.6034', '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 (65511, '2022-03-12', 7514, 62319, 4220, NULL, '2.0000', '97.7006', '97.7006', '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 (65512, '2022-03-12', 1941, 62320, 4221, 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 (65513, '2022-03-12', 1812, 62321, 4222, 50930, '1.0000', '7.9743', '7.9743', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65514, '2022-03-13', 1564, 62322, 4223, NULL, '3.0000', '3.4988', '3.4988', '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 (65515, '2022-03-13', 1504, 62323, 4223, 51480, '10.0000', '1.9591', '1.9591', '2.4000', '2.4000', '70.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65516, '2022-03-13', 9463, 62324, 4223, NULL, '1.0000', '18.9000', '18.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 (65517, '2022-03-13', 2346, 62325, 4223, NULL, '1.0000', '5.8000', '5.8000', '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 (65518, '2022-03-13', 1446, 62326, 4223, NULL, '1.0000', '4.8156', '4.8156', '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 (65519, '2022-03-13', 8155, 62327, 4223, NULL, '4.0000', '65.0000', '65.0000', '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 (65520, '2022-03-13', 1499, 62328, 4223, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65521, '2022-03-13', 9788, 62329, 4223, 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 (65522, '2022-03-13', 7482, 62330, 4223, NULL, '1.0000', '2.5019', '2.5019', '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 (65523, '2022-03-13', 2657, 62331, 4223, 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 (65524, '2022-03-13', 1905, 62332, 4223, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65525, '2022-03-13', 2105, 62333, 4223, 51351, '1.0000', '2.5167', '2.5167', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65526, '2022-03-13', 1812, 62334, 4223, NULL, '1.0000', '7.9262', '7.9262', '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 (65527, '2022-03-13', 2169, 62335, 4223, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65528, '2022-03-13', 9840, 62336, 4223, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65529, '2022-03-13', 2315, 62337, 4223, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '93.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65530, '2022-03-13', 2761, 62338, 4223, 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 (65531, '2022-03-13', 2167, 62339, 4224, NULL, '1.0000', '2.0277', '2.0277', '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 (65532, '2022-03-13', 2237, 62340, 4224, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65533, '2022-03-13', 1339, 62341, 4224, NULL, '1.0000', '1.2000', '1.2000', '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 (65534, '2022-03-13', 9482, 62342, 4224, 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 (65535, '2022-03-13', 2699, 62343, 4224, NULL, '1.0000', '2.5833', '2.5833', '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 (65536, '2022-03-13', 1432, 62344, 4224, 48978, '1.0000', '9.7698', '9.7698', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65537, '2022-03-13', 2769, 62345, 4224, NULL, '3.0000', '-2.2800', '-2.2800', '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 (65538, '2022-03-13', 9758, 62346, 4224, NULL, '1.0000', '3.1400', '3.1400', '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 (65539, '2022-03-13', 9463, 62347, 4224, NULL, '1.0000', '18.9000', '18.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 (65540, '2022-03-13', 1314, 62348, 4224, 48145, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65541, '2022-03-13', 8149, 62349, 4224, 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 (65542, '2022-03-13', 9731, 62350, 4224, 51226, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65543, '2022-03-13', 2699, 62351, 4224, NULL, '1.0000', '2.5833', '2.5833', '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 (65544, '2022-03-13', 1779, 62352, 4224, 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 (65545, '2022-03-13', 2361, 62353, 4224, 42543, '2.0000', '0.4744', '0.4744', '0.6000', '0.6000', '31.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65546, '2022-03-13', 2435, 62354, 4224, 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 (65547, '2022-03-13', 1602, 62355, 4225, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '32.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65548, '2022-03-13', 2244, 62356, 4225, 51304, '1.0000', '6.8500', '6.8500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65549, '2022-03-13', 8638, 62357, 4225, NULL, '10.0000', '0.5254', '0.5254', '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 (65550, '2022-03-13', 9740, 62358, 4225, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65551, '2022-03-13', 2093, 62359, 4225, NULL, '1.0000', '2.5500', '2.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 (65552, '2022-03-13', 1945, 62360, 4225, 51229, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65553, '2022-03-13', 9736, 62361, 4225, NULL, '1.0000', '3.9100', '3.9100', '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 (65554, '2022-03-13', 9740, 62362, 4225, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65555, '2022-03-13', 9830, 62363, 4225, 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 (65556, '2022-03-13', 2169, 62364, 4225, 51358, '1.0000', '1.4789', '1.4789', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65557, '2022-03-13', 7737, 62365, 4225, NULL, '1.0000', '3.0000', '3.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 (65558, '2022-03-13', 7684, 62366, 4225, NULL, '1.0000', '9.0000', '9.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 (65559, '2022-03-13', 2315, 62367, 4225, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '92.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65560, '2022-03-13', 1772, 62368, 4226, 50227, '1.0000', '5.9152', '5.9152', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65561, '2022-03-13', 9747, 62369, 4226, 50122, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65562, '2022-03-13', 1779, 62370, 4226, 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 (65563, '2022-03-13', 1841, 62371, 4226, NULL, '2.0000', '0.2601', '0.2601', '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 (65564, '2022-03-13', 1696, 62372, 4226, 42552, '1.0000', '10.2900', '10.2900', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65565, '2022-03-13', 2758, 62373, 4226, NULL, '1.0000', '5.4000', '5.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 (65566, '2022-03-13', 8384, 62374, 4226, 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 (65567, '2022-03-13', 2293, 62375, 4226, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65568, '2022-03-13', 2384, 62376, 4226, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65569, '2022-03-13', 7579, 62377, 4226, NULL, '1.0000', '15.0000', '15.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 (65570, '2022-03-13', 8476, 62378, 4226, NULL, '1.0000', '23.0000', '23.0000', '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 (65571, '2022-03-13', 9732, 62379, 4227, 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 (65572, '2022-03-13', 2671, 62380, 4227, 11761, '-2.0000', '28.8900', '28.8900', '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 (65573, '2022-03-13', 2671, 62380, 4227, NULL, '3.0000', '28.8900', '28.8900', '41.0000', '41.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 (65574, '2022-03-13', 1306, 62381, 4227, 6879, '3.0000', '22.5969', '22.5969', '3.0000', '3.0000', '0.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 (65575, '2022-03-13', 1306, 62381, 4227, 1013, '2.0000', '22.5969', '22.5969', '3.0000', '3.0000', '8.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 (65576, '2022-03-13', 2169, 62382, 4227, 10737, '-65.0000', '3.8397', '3.8397', '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 (65577, '2022-03-13', 2169, 62382, 4227, NULL, '66.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65578, '2022-03-13', 9175, 62383, 4227, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65579, '2022-03-13', 2858, 62384, 4227, 17772, '-53.0000', '1.0000', '1.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 (65580, '2022-03-13', 2858, 62384, 4227, NULL, '54.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65581, '2022-03-13', 2292, 62385, 4227, NULL, '1.0000', '55.0000', '55.0000', '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 (65582, '2022-03-13', 2088, 62386, 4227, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '52.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 (65583, '2022-03-13', 2511, 62387, 4227, 9740, '-12.0000', '8.5000', '8.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 (65584, '2022-03-13', 2511, 62387, 4227, NULL, '13.0000', '8.5000', '8.5000', '12.5000', '12.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 (65585, '2022-03-13', 1828, 62388, 4227, NULL, '2.0000', '0.7300', '0.7300', '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 (65586, '2022-03-13', 2169, 62389, 4227, 10737, '-65.0000', '3.8397', '3.8397', '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 (65587, '2022-03-13', 2169, 62389, 4227, NULL, '67.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65588, '2022-03-13', 2068, 62390, 4227, 5568, '-20.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 (65589, '2022-03-13', 2068, 62390, 4227, NULL, '21.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65590, '2022-03-13', 7411, 62391, 4227, NULL, '1.0000', '1.3500', '1.3500', '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 (65591, '2022-03-13', 2315, 62392, 4227, 2735, '-198.0000', '0.3300', '0.3300', '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 (65592, '2022-03-13', 2315, 62392, 4227, NULL, '199.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-199.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65593, '2022-03-13', 1659, 62393, 4227, NULL, '1.0000', '40.6500', '40.6500', '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 (65594, '2022-03-13', 2302, 62394, 4227, 2963, '-39.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 (65595, '2022-03-13', 2302, 62394, 4227, NULL, '43.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (65596, '2022-03-13', 1764, 62395, 4227, 360, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 35);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65597, '2022-03-13', 2167, 62396, 4227, 17165, '-39.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 (65598, '2022-03-13', 2167, 62396, 4227, NULL, '40.0000', '2.2000', '2.2000', '3.0000', '3.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 (65599, '2022-03-13', 2221, 62397, 4227, 4154, '-59.0000', '14.4737', '14.4737', '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 (65600, '2022-03-13', 2221, 62397, 4227, NULL, '60.0000', '14.4737', '14.4737', '25.0000', '25.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65601, '2022-03-13', 9579, 62398, 4227, 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 (65602, '2022-03-13', 7722, 62399, 4227, 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 (65603, '2022-03-13', 8177, 62400, 4227, NULL, '1.0000', '12.5000', '12.5000', '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 (65604, '2022-03-13', 2660, 62401, 4227, 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 (65605, '2022-03-13', 1528, 62402, 4227, NULL, '1.0000', '38.6400', '38.6400', '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 (65606, '2022-03-13', 9734, 62403, 4227, NULL, '2.0000', '0.3200', '0.3200', '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 (65607, '2022-03-13', 1812, 62404, 4227, 8224, '-74.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 (65608, '2022-03-13', 1812, 62404, 4227, NULL, '75.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65609, '2022-03-13', 3036, 62405, 4227, NULL, '1.0000', '9.5000', '9.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 (65610, '2022-03-13', 2628, 62406, 4227, 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 (65611, '2022-03-13', 2478, 62407, 4227, 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 (65612, '2022-03-13', 2250, 62408, 4227, 2787, '-6.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 (65613, '2022-03-13', 2250, 62408, 4227, NULL, '7.0000', '6.8900', '6.8900', '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 (65614, '2022-03-13', 1668, 62409, 4227, 3238, '-4.0000', '13.0442', '13.0442', '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 (65615, '2022-03-13', 1668, 62409, 4227, NULL, '5.0000', '13.0442', '13.0442', '19.5000', '19.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 (65616, '2022-03-13', 2270, 62410, 4227, 2930, '-2.0000', '0.9880', '0.9880', '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 (65617, '2022-03-13', 2270, 62410, 4227, NULL, '3.0000', '0.9880', '0.9880', '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 (65618, '2022-03-13', 8183, 62411, 4227, NULL, '2.0000', '81.9100', '81.9100', '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 (65619, '2022-03-13', 2080, 62412, 4227, 248, '1.0000', '17.9638', '17.9638', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65620, '2022-03-13', 1761, 62413, 4227, 3171, '-13.0000', '1.8200', '1.8200', '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 (65621, '2022-03-13', 1761, 62413, 4227, NULL, '14.0000', '1.8200', '1.8200', '3.0000', '3.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 (65622, '2022-03-13', 7915, 62414, 4227, NULL, '1.0000', '2.8000', '2.8000', '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 (65623, '2022-03-13', 2250, 62415, 4227, 2787, '-6.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 (65624, '2022-03-13', 2250, 62415, 4227, NULL, '7.0000', '6.8900', '6.8900', '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 (65625, '2022-03-13', 9740, 62416, 4228, NULL, '1.0000', '0.6600', '0.6600', '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 (65626, '2022-03-13', 2237, 62417, 4229, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65627, '2022-03-13', 2695, 62418, 4229, NULL, '2.0000', '2.0000', '2.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 (65628, '2022-03-13', 2985, 62419, 4229, NULL, '1.0000', '28.1000', '28.1000', '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 (65629, '2022-03-13', 1787, 62420, 4229, NULL, '1.0000', '0.5000', '0.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 (65630, '2022-03-13', 2285, 62421, 4229, NULL, '1.0000', '35.2503', '35.2503', '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 (65631, '2022-03-13', 2749, 62422, 4229, NULL, '1.0000', '27.0867', '27.0867', '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 (65632, '2022-03-13', 8025, 62423, 4229, NULL, '1.0000', '19.0000', '19.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 (65633, '2022-03-13', 9830, 62424, 4229, 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 (65634, '2022-03-13', 9839, 62425, 4230, NULL, '1.0000', '15.0200', '15.0200', '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 (65635, '2022-03-13', 1665, 62426, 4231, 3235, '-83.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 (65636, '2022-03-13', 1665, 62426, 4231, NULL, '84.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65637, '2022-03-13', 1402, 62427, 4232, 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 (65638, '2022-03-13', 9740, 62428, 4232, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65639, '2022-03-13', 1863, 62429, 4232, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65640, '2022-03-13', 1612, 62430, 4232, 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 (65641, '2022-03-13', 1420, 62431, 4233, 48955, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65642, '2022-03-13', 1863, 62432, 4233, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65643, '2022-03-13', 9105, 62433, 4233, NULL, '1.0000', '-0.9200', '-0.9200', '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 (65644, '2022-03-13', 7570, 62434, 4234, NULL, '1.0000', '10.0000', '10.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 (65645, '2022-03-13', 7954, 62435, 4234, 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 (65646, '2022-03-13', 1760, 62436, 4234, 20604, '2.0000', '111.8384', '111.8384', '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 (65647, '2022-03-13', 7547, 62437, 4234, NULL, '4.0000', '0.0000', '0.0000', '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 (65648, '2022-03-13', 7318, 62438, 4234, NULL, '1.0000', '13.4400', '13.4400', '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 (65649, '2022-03-13', 7444, 62439, 4234, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65650, '2022-03-13', 7672, 62440, 4234, NULL, '2.0000', '1.0200', '1.0200', '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 (65651, '2022-03-13', 9779, 62441, 4234, NULL, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65652, '2022-03-13', 9726, 62442, 4234, 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 (65653, '2022-03-13', 7781, 62443, 4234, NULL, '3.0000', '4.2500', '4.2500', '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 (65654, '2022-03-13', 7719, 62444, 4234, 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 (65655, '2022-03-13', 7661, 62445, 4234, NULL, '1.0000', '7.2000', '7.2000', '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 (65656, '2022-03-13', 7674, 62446, 4234, 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 (65657, '2022-03-13', 8557, 62447, 4234, 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 (65658, '2022-03-13', 9469, 62448, 4234, NULL, '1.0000', '2.3000', '2.3000', '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 (65659, '2022-03-13', 2945, 62449, 4234, 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 (65660, '2022-03-13', 7832, 62450, 4234, NULL, '1.0000', '10.0000', '10.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 (65661, '2022-03-13', 8308, 62451, 4234, NULL, '1.0000', '2.0800', '2.0800', '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 (65662, '2022-03-13', 8132, 62452, 4234, NULL, '1.0000', '9.8000', '9.8000', '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 (65663, '2022-03-13', 8155, 62453, 4234, NULL, '2.0000', '65.0000', '65.0000', '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 (65664, '2022-03-13', 8539, 62454, 4234, NULL, '2.0000', '31.8000', '31.8000', '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 (65665, '2022-03-13', 7781, 62455, 4234, NULL, '3.0000', '4.2500', '4.2500', '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 (65666, '2022-03-13', 9282, 62456, 4234, NULL, '1.0000', '6.5000', '6.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 (65667, '2022-03-13', 8137, 62457, 4234, NULL, '1.0000', '3.0000', '3.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 (65668, '2022-03-13', 7638, 62458, 4234, NULL, '1.0000', '12.0000', '12.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 (65669, '2022-03-13', 7401, 62459, 4234, 33815, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65670, '2022-03-13', 7411, 62460, 4234, NULL, '1.0000', '1.3500', '1.3500', '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 (65671, '2022-03-13', 1501, 62461, 4234, 20590, '2.0000', '2.0500', '2.0500', '3.5000', '3.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 (65672, '2022-03-13', 7741, 62462, 4234, NULL, '1.0000', '1.2000', '1.2000', '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 (65673, '2022-03-13', 9207, 62463, 4234, NULL, '4.0000', '4.6000', '4.6000', '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 (65674, '2022-03-13', 3044, 62464, 4234, NULL, '1.0000', '0.4000', '0.4000', '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 (65675, '2022-03-13', 8622, 62465, 4234, 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 (65676, '2022-03-13', 7658, 62466, 4234, NULL, '5.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (65677, '2022-03-13', 9640, 62467, 4234, NULL, '1.0000', '38.0000', '38.0000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65678, '2022-03-13', 9098, 62468, 4234, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65679, '2022-03-13', 7630, 62469, 4234, NULL, '4.0000', '10.0000', '10.0000', '3.2000', '3.2000', '-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 (65680, '2022-03-13', 7666, 62470, 4234, 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 (65681, '2022-03-13', 1875, 62471, 4234, 6949, '-63.0000', '2.4000', '2.4000', '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 (65682, '2022-03-13', 1875, 62471, 4234, NULL, '71.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65683, '2022-03-13', 1782, 62472, 4234, 4900, '-6.0000', '2.9900', '2.9900', '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 (65684, '2022-03-13', 1782, 62472, 4234, NULL, '7.0000', '2.9900', '2.9900', '4.0000', '4.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 (65685, '2022-03-13', 7473, 62473, 4234, NULL, '1.0000', '0.5300', '0.5300', '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 (65686, '2022-03-13', 8615, 62474, 4234, NULL, '1.0000', '4.5000', '4.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 (65687, '2022-03-13', 8000, 62475, 4234, NULL, '1.0000', '6.8400', '6.8400', '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 (65688, '2022-03-13', 1855, 62476, 4234, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '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 (65689, '2022-03-13', 2289, 62477, 4234, 2949, '-79.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 (65690, '2022-03-13', 2289, 62477, 4234, NULL, '80.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65691, '2022-03-13', 1841, 62478, 4234, NULL, '3.0000', '142.5780', '142.5780', '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 (65692, '2022-03-13', 1840, 62479, 4234, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (65693, '2022-03-13', 9734, 62480, 4234, NULL, '1.0000', '0.3200', '0.3200', '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 (65694, '2022-03-13', 7415, 62481, 4234, 33809, '1.0000', '5.9100', '5.9100', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65695, '2022-03-13', 7671, 62482, 4234, NULL, '1.0000', '15.5000', '15.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 (65696, '2022-03-13', 7931, 62483, 4234, NULL, '2.0000', '4.9500', '4.9500', '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 (65697, '2022-03-13', 7524, 62484, 4234, NULL, '2.0000', '11.9500', '11.9500', '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 (65698, '2022-03-13', 7457, 62485, 4234, 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 (65699, '2022-03-13', 8101, 62486, 4234, 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 (65700, '2022-03-13', 2315, 62487, 4234, 2735, '-199.0000', '0.3300', '0.3300', '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 (65701, '2022-03-13', 2315, 62487, 4234, NULL, '201.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-201.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65702, '2022-03-13', 7703, 62488, 4234, NULL, '1.0000', '22.9900', '22.9900', '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 (65703, '2022-03-13', 9092, 62489, 4234, NULL, '4.0000', '5.2900', '5.2900', '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 (65704, '2022-03-13', 7428, 62490, 4234, NULL, '4.0000', '2.6100', '2.6100', '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 (65705, '2022-03-13', 7965, 62491, 4234, NULL, '14.0000', '5.6100', '5.6100', '6.5000', '6.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 (65706, '2022-03-13', 8074, 62492, 4234, 33786, '1.0000', '25.3504', '25.3504', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65707, '2022-03-13', 8200, 62493, 4234, NULL, '1.0000', '6.2600', '6.2600', '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 (65708, '2022-03-13', 8753, 62494, 4234, 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 (65709, '2022-03-13', 8308, 62495, 4234, NULL, '1.0000', '2.0800', '2.0800', '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 (65710, '2022-03-13', 1762, 62496, 4234, 3172, '-3.0000', '90.0000', '90.0000', '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 (65711, '2022-03-13', 1762, 62496, 4234, NULL, '4.0000', '90.0000', '90.0000', '13.5000', '13.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 (65712, '2022-03-13', 8417, 62497, 4234, 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 (65713, '2022-03-13', 7444, 62498, 4234, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65714, '2022-03-13', 7412, 62499, 4234, NULL, '1.0000', '1.5200', '1.5200', '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 (65715, '2022-03-13', 9833, 62500, 4234, NULL, '1.0000', '25.5500', '25.5500', '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 (65716, '2022-03-13', 8407, 62501, 4234, NULL, '1.0000', '1.0700', '1.0700', '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 (65717, '2022-03-13', 8361, 62502, 4234, NULL, '1.0000', '7.2300', '7.2300', '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 (65718, '2022-03-13', 7641, 62503, 4234, NULL, '2.0000', '1.9000', '1.9000', '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 (65719, '2022-03-13', 7641, 62504, 4234, NULL, '1.0000', '1.9000', '1.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 (65720, '2022-03-13', 8074, 62505, 4234, 33786, '1.0000', '25.3504', '25.3504', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65721, '2022-03-13', 7518, 62506, 4234, NULL, '1.0000', '7.8200', '7.8200', '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 (65722, '2022-03-13', 8724, 62507, 4234, NULL, '1.0000', '11.0000', '11.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 (65723, '2022-03-13', 7711, 62508, 4234, NULL, '1.0000', '35.6300', '35.6300', '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 (65724, '2022-03-13', 2962, 62509, 4234, NULL, '2.0000', '4.0000', '4.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 (65725, '2022-03-13', 8177, 62510, 4234, NULL, '1.0000', '12.5000', '12.5000', '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 (65726, '2022-03-13', 7899, 62511, 4234, NULL, '1.0000', '3.3000', '3.3000', '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 (65727, '2022-03-13', 9734, 62512, 4234, NULL, '1.0000', '0.3200', '0.3200', '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 (65728, '2022-03-13', 8942, 62513, 4234, NULL, '1.0000', '4.4000', '4.4000', '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 (65729, '2022-03-13', 9652, 62514, 4234, 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 (65730, '2022-03-13', 7490, 62515, 4235, NULL, '2.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65731, '2022-03-13', 7675, 62516, 4235, NULL, '1.0000', '11.4300', '11.4300', '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 (65732, '2022-03-13', 8769, 62517, 4235, NULL, '1.0000', '6.6000', '6.6000', '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 (65733, '2022-03-13', 2379, 62518, 4236, 4032, '-51.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 (65734, '2022-03-13', 2379, 62518, 4236, NULL, '52.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65735, '2022-03-13', 1867, 62519, 4236, NULL, '1.0000', '1.0500', '1.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 (65736, '2022-03-13', 1837, 62520, 4236, 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 (65737, '2022-03-14', 1912, 62521, 4237, 51315, '3.0000', '0.6218', '0.6218', '1.0000', '1.0000', '90.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65738, '2022-03-14', 1498, 62522, 4237, 19871, '2.0000', '0.3300', '0.3300', '0.6000', '0.6000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65739, '2022-03-14', 2283, 62523, 4237, 51324, '3.0000', '1.4300', '1.4300', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65740, '2022-03-14', 2169, 62524, 4237, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65741, '2022-03-14', 7411, 62525, 4237, NULL, '1.0000', '1.3013', '1.3013', '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 (65742, '2022-03-14', 2303, 62526, 4237, 48646, '-1.0000', '14.8945', '14.8945', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65743, '2022-03-14', 2303, 62526, 4237, NULL, '2.0000', '14.8945', '14.8945', '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 (65744, '2022-03-14', 2405, 62527, 4237, 37770, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '21.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65745, '2022-03-14', 2293, 62528, 4237, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65746, '2022-03-14', 7585, 62529, 4237, NULL, '1.0000', '3.9600', '3.9600', '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 (65747, '2022-03-14', 2289, 62530, 4237, NULL, '2.0000', '0.2222', '0.2222', '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 (65748, '2022-03-14', 2297, 62531, 4237, NULL, '1.0000', '6.4800', '6.4800', '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 (65749, '2022-03-14', 1339, 62532, 4237, 51966, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65750, '2022-03-14', 2754, 62533, 4237, 18938, '10.0000', '0.0800', '0.0800', '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 (65751, '2022-03-14', 8318, 62534, 4237, NULL, '1.0000', '5.5000', '5.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 (65752, '2022-03-14', 9569, 62535, 4237, 51513, '1.0000', '120.6000', '120.6000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65753, '2022-03-14', 7411, 62536, 4237, NULL, '2.0000', '1.3013', '1.3013', '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 (65754, '2022-03-14', 1845, 62537, 4237, NULL, '1.0000', '17.8642', '17.8642', '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 (65755, '2022-03-14', 2227, 62538, 4237, 49414, '1.0000', '15.5000', '15.5000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65756, '2022-03-14', 2638, 62539, 4237, 48970, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65757, '2022-03-14', 1670, 62540, 4237, NULL, '1.0000', '19.0833', '19.0833', '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 (65758, '2022-03-14', 8183, 62541, 4237, NULL, '1.0000', '81.9100', '81.9100', '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 (65759, '2022-03-14', 7638, 62542, 4237, 39773, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65760, '2022-03-14', 2061, 62543, 4237, NULL, '2.0000', '11.0146', '11.0146', '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 (65761, '2022-03-14', 1665, 62544, 4237, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65762, '2022-03-14', 1545, 62545, 4237, 51645, '1.0000', '8.4806', '8.4806', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65763, '2022-03-14', 9723, 62546, 4237, 47060, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65764, '2022-03-14', 7414, 62547, 4237, NULL, '1.0000', '18.2100', '18.2100', '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 (65765, '2022-03-14', 2169, 62548, 4237, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65766, '2022-03-14', 1976, 62549, 4237, 49602, '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 (65767, '2022-03-14', 2244, 62550, 4237, 51304, '1.0000', '6.8500', '6.8500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65768, '2022-03-14', 9482, 62551, 4237, 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 (65769, '2022-03-14', 2386, 62552, 4238, 48461, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65770, '2022-03-14', 1564, 62553, 4238, NULL, '10.0000', '3.4988', '3.4988', '4.0000', '4.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 (65771, '2022-03-14', 9791, 62554, 4238, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65772, '2022-03-14', 1840, 62555, 4238, NULL, '1.0000', '0.2400', '0.2400', '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 (65773, '2022-03-14', 1841, 62556, 4238, NULL, '1.0000', '0.2601', '0.2601', '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 (65774, '2022-03-14', 2289, 62557, 4238, NULL, '1.0000', '0.2222', '0.2222', '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 (65775, '2022-03-14', 8208, 62558, 4238, NULL, '1.0000', '33.0000', '33.0000', '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 (65776, '2022-03-14', 2169, 62559, 4238, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65777, '2022-03-14', 8622, 62560, 4238, 51208, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65778, '2022-03-14', 7506, 62561, 4238, NULL, '2.0000', '15.0000', '15.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 (65779, '2022-03-14', 2289, 62562, 4238, NULL, '2.0000', '0.2222', '0.2222', '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 (65780, '2022-03-14', 1841, 62563, 4238, NULL, '2.0000', '0.2601', '0.2601', '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 (65781, '2022-03-14', 1840, 62564, 4238, NULL, '2.0000', '0.2400', '0.2400', '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 (65782, '2022-03-14', 2237, 62565, 4238, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65783, '2022-03-14', 9738, 62566, 4238, 51706, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65784, '2022-03-14', 2169, 62567, 4238, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65785, '2022-03-14', 7514, 62568, 4238, NULL, '1.0000', '2.2500', '2.2500', '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 (65786, '2022-03-14', 1499, 62569, 4238, 50243, '1.0000', '0.3303', '0.3303', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65787, '2022-03-14', 2699, 62570, 4238, NULL, '1.0000', '2.5833', '2.5833', '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 (65788, '2022-03-14', 9482, 62571, 4238, 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 (65789, '2022-03-14', 8745, 62572, 4238, 51949, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65790, '2022-03-14', 1328, 62573, 4238, 32533, '1.0000', '3.1500', '3.1500', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65791, '2022-03-14', 8775, 62574, 4238, 51020, '1.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65792, '2022-03-14', 2293, 62575, 4238, 51215, '1.0000', '10.2680', '10.2680', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65793, '2022-03-14', 1935, 62576, 4238, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65794, '2022-03-14', 9747, 62577, 4238, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65795, '2022-03-14', 8184, 62578, 4238, 51244, '10.0000', '2.5667', '2.5667', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65796, '2022-03-14', 9748, 62579, 4238, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65797, '2022-03-14', 1912, 62580, 4238, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65798, '2022-03-14', 1307, 62581, 4238, NULL, '1.0000', '-0.0521', '-0.0521', '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 (65799, '2022-03-14', 1311, 62582, 4238, 49359, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65800, '2022-03-14', 2408, 62583, 4238, NULL, '2.0000', '9.3500', '9.3500', '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 (65801, '2022-03-14', 8622, 62584, 4238, 51208, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65802, '2022-03-14', 8208, 62585, 4238, NULL, '2.0000', '33.0000', '33.0000', '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 (65803, '2022-03-14', 1785, 62586, 4238, 51303, '1.0000', '15.9818', '15.9818', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65804, '2022-03-14', 8771, 62587, 4238, 51018, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65805, '2022-03-14', 2695, 62588, 4238, 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 (65806, '2022-03-14', 7769, 62589, 4238, 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 (65807, '2022-03-14', 7385, 62590, 4238, 50524, '8.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65808, '2022-03-14', 7385, 62590, 4238, 42798, '6.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65809, '2022-03-14', 2060, 62591, 4238, NULL, '2.0000', '0.3295', '0.3295', '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 (65810, '2022-03-14', 9748, 62592, 4238, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65811, '2022-03-14', 8200, 62593, 4239, NULL, '1.0000', '6.2600', '6.2600', '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 (65812, '2022-03-14', 8780, 62594, 4239, NULL, '1.0000', '46.0000', '46.0000', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65813, '2022-03-14', 8172, 62595, 4239, NULL, '2.0000', '40.7000', '40.7000', '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 (65814, '2022-03-14', 9105, 62596, 4239, NULL, '1.0000', '1.1800', '1.1800', '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 (65815, '2022-03-14', 1851, 62597, 4239, 8627, '-7.0000', '10.6568', '10.6568', '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 (65816, '2022-03-14', 1851, 62597, 4239, NULL, '8.0000', '10.6568', '10.6568', '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 (65817, '2022-03-14', 8040, 62598, 4239, NULL, '1.0000', '14.9000', '14.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 (65818, '2022-03-14', 7411, 62599, 4239, NULL, '3.0000', '1.3500', '1.3500', '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 (65819, '2022-03-14', 2476, 62600, 4239, 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 (65820, '2022-03-14', 9393, 62601, 4239, NULL, '1.0000', '15.0000', '15.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 (65821, '2022-03-14', 7958, 62602, 4239, NULL, '1.0000', '3.7500', '3.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 (65822, '2022-03-14', 9762, 62603, 4239, 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 (65823, '2022-03-14', 9193, 62604, 4239, NULL, '1.0000', '10.0000', '10.0000', '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 (65824, '2022-03-14', 9779, 62605, 4239, NULL, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65825, '2022-03-14', 8927, 62606, 4239, NULL, '3.0000', '36.0000', '36.0000', '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 (65826, '2022-03-14', 8288, 62607, 4239, NULL, '6.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (65827, '2022-03-14', 9274, 62608, 4239, 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 (65828, '2022-03-14', 7666, 62609, 4239, 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 (65829, '2022-03-14', 7675, 62610, 4239, NULL, '1.0000', '11.4300', '11.4300', '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 (65830, '2022-03-14', 9740, 62611, 4239, NULL, '1.0000', '0.6600', '0.6600', '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 (65831, '2022-03-14', 7459, 62612, 4239, NULL, '20.0000', '2.3500', '2.3500', '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 (65832, '2022-03-14', 7428, 62613, 4239, NULL, '3.0000', '2.6100', '2.6100', '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 (65833, '2022-03-14', 9511, 62614, 4239, NULL, '1.0000', '15.7600', '15.7600', '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 (65834, '2022-03-14', 8359, 62615, 4239, 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 (65835, '2022-03-14', 8061, 62616, 4239, 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 (65836, '2022-03-14', 7899, 62617, 4239, NULL, '1.0000', '3.3000', '3.3000', '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 (65837, '2022-03-14', 7674, 62618, 4239, 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 (65838, '2022-03-14', 7804, 62619, 4239, NULL, '3.0000', '1.0200', '1.0200', '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 (65839, '2022-03-14', 8677, 62620, 4239, NULL, '1.0000', '1.2800', '1.2800', '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 (65840, '2022-03-14', 7412, 62621, 4239, NULL, '1.0000', '1.5200', '1.5200', '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 (65841, '2022-03-14', 7368, 62622, 4239, NULL, '1.0000', '14.7500', '14.7500', '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 (65842, '2022-03-14', 7354, 62623, 4239, NULL, '1.0000', '0.3700', '0.3700', '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 (65843, '2022-03-14', 7675, 62624, 4239, NULL, '1.0000', '11.4300', '11.4300', '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 (65844, '2022-03-14', 8724, 62625, 4239, NULL, '1.0000', '11.0000', '11.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 (65845, '2022-03-14', 9579, 62626, 4239, 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 (65846, '2022-03-14', 9092, 62627, 4239, NULL, '2.0000', '5.2900', '5.2900', '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 (65847, '2022-03-14', 7558, 62628, 4239, 33814, '1.0000', '1.9700', '1.9700', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65848, '2022-03-14', 7661, 62629, 4239, NULL, '1.0000', '7.2000', '7.2000', '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 (65849, '2022-03-14', 8814, 62630, 4239, NULL, '6.0000', '5.0000', '5.0000', '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 (65850, '2022-03-14', 1827, 62631, 4239, NULL, '4.0000', '0.2000', '0.2000', '0.3000', '0.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 (65851, '2022-03-14', 7547, 62632, 4239, NULL, '2.0000', '0.0000', '0.0000', '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 (65852, '2022-03-14', 2027, 62633, 4239, 6849, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 60);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65853, '2022-03-14', 9092, 62634, 4239, NULL, '5.0000', '5.2900', '5.2900', '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 (65854, '2022-03-14', 2414, 62635, 4239, 4620, '-13.0000', '3.4000', '3.4000', '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 (65855, '2022-03-14', 2414, 62635, 4239, NULL, '15.0000', '3.4000', '3.4000', '5.0000', '5.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 (65856, '2022-03-14', 1672, 62636, 4239, 7384, '-84.0000', '2.8700', '2.8700', '4.2000', '4.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 (65857, '2022-03-14', 1672, 62636, 4239, NULL, '85.0000', '2.8700', '2.8700', '4.2000', '4.2000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65858, '2022-03-14', 7610, 62637, 4239, NULL, '1.0000', '1.2500', '1.2500', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65859, '2022-03-14', 8135, 62638, 4239, NULL, '1.0000', '5.4500', '5.4500', '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 (65860, '2022-03-14', 2315, 62639, 4239, 2735, '-201.0000', '0.3300', '0.3300', '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 (65861, '2022-03-14', 2315, 62639, 4239, NULL, '202.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-202.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65862, '2022-03-14', 7704, 62640, 4239, NULL, '1.0000', '0.4900', '0.4900', '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 (65863, '2022-03-14', 1498, 62641, 4239, 19685, '-22.0000', '0.3300', '0.3300', '0.6000', '0.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 (65864, '2022-03-14', 1498, 62641, 4239, NULL, '24.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (65865, '2022-03-14', 9155, 62642, 4239, 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 (65866, '2022-03-14', 8596, 62643, 4239, 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 (65867, '2022-03-14', 1855, 62644, 4239, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '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 (65868, '2022-03-14', 9821, 62645, 4239, NULL, '1.0000', '1.4500', '1.4500', '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 (65869, '2022-03-14', 9686, 62646, 4239, NULL, '1.0000', '13.4900', '13.4900', '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 (65870, '2022-03-14', 7859, 62647, 4239, NULL, '1.0000', '12.6300', '12.6300', '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 (65871, '2022-03-14', 7666, 62648, 4239, 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 (65872, '2022-03-14', 1765, 62649, 4239, 3175, '-7.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 (65873, '2022-03-14', 1765, 62649, 4239, NULL, '9.0000', '90.0000', '90.0000', '7.5000', '7.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 (65874, '2022-03-14', 8355, 62650, 4239, NULL, '1.0000', '22.7700', '22.7700', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65875, '2022-03-14', 8566, 62651, 4239, 33072, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65876, '2022-03-14', 7324, 62652, 4239, 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 (65877, '2022-03-14', 2315, 62653, 4239, 2735, '-201.0000', '0.3300', '0.3300', '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 (65878, '2022-03-14', 2315, 62653, 4239, NULL, '203.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-203.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65879, '2022-03-14', 9413, 62654, 4239, 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 (65880, '2022-03-14', 8154, 62655, 4239, NULL, '2.0000', '12.3000', '12.3000', '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 (65881, '2022-03-14', 7606, 62656, 4239, NULL, '1.0000', '4.8600', '4.8600', '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 (65882, '2022-03-14', 7318, 62657, 4239, NULL, '1.0000', '13.4400', '13.4400', '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 (65883, '2022-03-14', 7642, 62658, 4239, NULL, '2.0000', '5.9200', '5.9200', '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 (65884, '2022-03-14', 2269, 62659, 4239, 2929, '-4.0000', '4.9800', '4.9800', '9.5000', '9.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 (65885, '2022-03-14', 2269, 62659, 4239, NULL, '5.0000', '4.9800', '4.9800', '9.5000', '9.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 (65886, '2022-03-14', 8172, 62660, 4239, NULL, '1.0000', '40.7000', '40.7000', '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 (65887, '2022-03-14', 8429, 62661, 4239, NULL, '1.0000', '9.3000', '9.3000', '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 (65888, '2022-03-14', 7330, 62662, 4239, NULL, '1.0000', '12.7000', '12.7000', '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 (65889, '2022-03-14', 9758, 62663, 4240, NULL, '1.0000', '3.1400', '3.1400', '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 (65890, '2022-03-14', 1935, 62664, 4240, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65891, '2022-03-14', 9832, 62665, 4240, NULL, '1.0000', '1.5600', '1.5600', '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 (65892, '2022-03-14', 2547, 62666, 4240, 49375, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65893, '2022-03-14', 9578, 62667, 4240, 51027, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65894, '2022-03-14', 2657, 62668, 4240, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65895, '2022-03-14', 7398, 62669, 4240, NULL, '1.0000', '18.5000', '18.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 (65896, '2022-03-14', 2270, 62670, 4240, 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 (65897, '2022-03-14', 1670, 62671, 4240, NULL, '1.0000', '19.0833', '19.0833', '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 (65898, '2022-03-14', 2061, 62672, 4240, NULL, '1.0000', '11.0146', '11.0146', '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 (65899, '2022-03-14', 1812, 62673, 4240, NULL, '1.0000', '7.7917', '7.7917', '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 (65900, '2022-03-14', 7411, 62674, 4240, NULL, '1.0000', '1.3013', '1.3013', '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 (65901, '2022-03-14', 2761, 62675, 4240, 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 (65902, '2022-03-14', 2169, 62676, 4240, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65903, '2022-03-14', 8775, 62677, 4240, 51020, '2.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65904, '2022-03-14', 9771, 62678, 4240, NULL, '1.0000', '11.0000', '11.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 (65905, '2022-03-14', 8183, 62679, 4240, NULL, '1.0000', '81.9100', '81.9100', '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 (65906, '2022-03-14', 1529, 62680, 4240, 51484, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65907, '2022-03-14', 2695, 62681, 4240, 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 (65908, '2022-03-14', 8146, 62682, 4240, NULL, '2.0000', '4.4100', '4.4100', '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 (65909, '2022-03-14', 2758, 62683, 4240, NULL, '1.0000', '5.4000', '5.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 (65910, '2022-03-14', 9738, 62684, 4240, 51706, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65911, '2022-03-14', 2740, 62685, 4240, 51660, '1.0000', '10.3800', '10.3800', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65912, '2022-03-14', 9715, 62686, 4240, 51680, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65913, '2022-03-14', 7482, 62687, 4240, NULL, '1.0000', '2.5019', '2.5019', '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 (65914, '2022-03-14', 7411, 62688, 4240, NULL, '1.0000', '1.3013', '1.3013', '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 (65915, '2022-03-14', 7385, 62689, 4240, 42798, '1.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65916, '2022-03-14', 1695, 62690, 4240, NULL, '1.0000', '40.2432', '40.2432', '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 (65917, '2022-03-14', 7482, 62691, 4240, NULL, '1.0000', '2.5019', '2.5019', '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 (65918, '2022-03-14', 7825, 62692, 4240, NULL, '1.0000', '6.5000', '6.5000', '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 (65919, '2022-03-14', 8124, 62693, 4240, NULL, '1.0000', '18.0000', '18.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 (65920, '2022-03-14', 9695, 62694, 4240, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65921, '2022-03-14', 9831, 62695, 4240, NULL, '1.0000', '1.5600', '1.5600', '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 (65922, '2022-03-14', 1501, 62696, 4240, NULL, '1.0000', '2.1784', '2.1784', '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 (65923, '2022-03-14', 2948, 62697, 4240, 48640, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65924, '2022-03-14', 1602, 62698, 4240, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65925, '2022-03-14', 7333, 62699, 4240, NULL, '1.0000', '13.5000', '13.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 (65926, '2022-03-14', 8740, 62700, 4240, 51963, '2.0000', '2.4971', '2.4971', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65927, '2022-03-14', 1812, 62701, 4240, NULL, '1.0000', '7.7917', '7.7917', '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 (65928, '2022-03-14', 1912, 62702, 4240, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65929, '2022-03-14', 2080, 62703, 4240, 47095, '1.0000', '10.8117', '10.8117', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65930, '2022-03-14', 9828, 62704, 4240, NULL, '1.0000', '2.9100', '2.9100', '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 (65931, '2022-03-14', 2315, 62705, 4240, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '91.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65932, '2022-03-14', 2315, 62706, 4240, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '89.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65933, '2022-03-14', 8566, 62707, 4241, 35940, '1.0000', '-8.9555', '-8.9555', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65934, '2022-03-14', 7411, 62708, 4241, 48774, '1.0000', '1.3632', '1.3632', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65935, '2022-03-14', 7527, 62709, 4241, NULL, '1.0000', '0.8900', '0.8900', '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 (65936, '2022-03-14', 2858, 62710, 4241, 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 (65937, '2022-03-14', 7744, 62711, 4241, NULL, '1.0000', '2.9400', '2.9400', '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 (65938, '2022-03-14', 1912, 62712, 4241, 50866, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65939, '2022-03-14', 1425, 62713, 4241, 49167, '2.0000', '7.0215', '7.0215', '8.5800', '8.5800', '0.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65940, '2022-03-14', 2965, 62714, 4241, 49486, '1.0000', '4.6729', '4.6729', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65941, '2022-03-14', 2263, 62715, 4241, 48764, '2.0000', '4.9800', '4.9800', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65942, '2022-03-14', 7411, 62716, 4241, 48774, '1.0000', '1.3632', '1.3632', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65943, '2022-03-14', 7781, 62717, 4242, NULL, '1.0000', '4.2500', '4.2500', '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 (65944, '2022-03-14', 8336, 62718, 4242, NULL, '2.0000', '3.4000', '3.4000', '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 (65945, '2022-03-14', 8105, 62719, 4242, NULL, '1.0000', '10.8900', '10.8900', '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 (65946, '2022-03-14', 7473, 62720, 4242, NULL, '2.0000', '0.5300', '0.5300', '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 (65947, '2022-03-14', 1837, 62721, 4242, 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 (65948, '2022-03-14', 9729, 62722, 4242, NULL, '2.0000', '0.6200', '0.6200', '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 (65949, '2022-03-14', 7459, 62723, 4242, NULL, '2.0000', '2.3500', '2.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 (65950, '2022-03-14', 3044, 62724, 4242, NULL, '1.0000', '0.4000', '0.4000', '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 (65951, '2022-03-14', 7952, 62725, 4242, 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 (65952, '2022-03-14', 9016, 62726, 4242, NULL, '1.0000', '21.7800', '21.7800', '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 (65953, '2022-03-14', 7819, 62727, 4242, 33817, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65954, '2022-03-14', 7708, 62728, 4242, NULL, '1.0000', '7.8000', '7.8000', '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 (65955, '2022-03-14', 7622, 62729, 4242, NULL, '1.0000', '17.8100', '17.8100', '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 (65956, '2022-03-14', 8456, 62730, 4242, 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 (65957, '2022-03-14', 8043, 62731, 4242, NULL, '2.0000', '27.9800', '27.9800', '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 (65958, '2022-03-14', 2251, 62732, 4242, 2788, '-9.0000', '10.9700', '10.9700', '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 (65959, '2022-03-14', 2251, 62732, 4242, NULL, '10.0000', '10.9700', '10.9700', '16.0000', '16.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 (65960, '2022-03-14', 1699, 62733, 4243, NULL, '1.0000', '3.2000', '3.2000', '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 (65961, '2022-03-14', 2135, 62734, 4243, NULL, '1.0000', '2.4732', '2.4732', '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 (65962, '2022-03-14', 9752, 62735, 4243, NULL, '1.0000', '0.8700', '0.8700', '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 (65963, '2022-03-14', 1840, 62736, 4243, NULL, '4.0000', '0.2400', '0.2400', '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 (65964, '2022-03-14', 8208, 62737, 4243, NULL, '4.0000', '33.0000', '33.0000', '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 (65965, '2022-03-14', 8622, 62738, 4243, 51208, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65966, '2022-03-14', 7980, 62739, 4243, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (65967, '2022-03-14', 1646, 62740, 4243, 51653, '1.0000', '5.0679', '5.0679', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65968, '2022-03-14', 2169, 62741, 4244, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65969, '2022-03-14', 9109, 62742, 4244, 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 (65970, '2022-03-14', 1602, 62743, 4245, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65971, '2022-03-14', 2293, 62744, 4245, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '94.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65972, '2022-03-14', 3029, 62745, 4245, 49248, '1.0000', '6.5895', '6.5895', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65973, '2022-03-14', 1425, 62746, 4245, 46765, '1.0000', '7.0215', '7.0215', '8.5800', '8.5800', '7.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65974, '2022-03-14', 2511, 62747, 4245, 49238, '1.0000', '8.8545', '8.8545', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65975, '2022-03-14', 1812, 62748, 4245, 50879, '1.0000', '7.9743', '7.9743', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65976, '2022-03-14', 9520, 62749, 4245, 34702, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65977, '2022-03-14', 1618, 62750, 4245, 50937, '1.0000', '11.9569', '11.9569', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65978, '2022-03-14', 1409, 62751, 4245, 50887, '1.0000', '13.0657', '13.0657', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65979, '2022-03-14', 2088, 62752, 4245, 50894, '1.0000', '1.4388', '1.4388', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65980, '2022-03-14', 1346, 62753, 4245, 46772, '10.0000', '0.9485', '0.9485', '1.5000', '1.5000', '126.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65981, '2022-03-14', 2263, 62754, 4245, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65982, '2022-03-14', 8743, 62755, 4245, NULL, '1.0000', '11.0556', '11.0556', '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 (65983, '2022-03-14', 8758, 62756, 4245, 42620, '2.0000', '5.8000', '5.8000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65984, '2022-03-14', 2858, 62757, 4245, 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 (65985, '2022-03-14', 1935, 62758, 4245, 46073, '1.0000', '1.9058', '1.9058', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65986, '2022-03-15', 8387, 62759, 4246, 51961, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65987, '2022-03-15', 2167, 62760, 4246, NULL, '2.0000', '2.0277', '2.0277', '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 (65988, '2022-03-15', 7671, 62761, 4246, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65989, '2022-03-15', 1946, 62762, 4246, NULL, '1.0000', '1.5500', '1.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 (65990, '2022-03-15', 2093, 62763, 4246, NULL, '1.0000', '2.5500', '2.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 (65991, '2022-03-15', 2410, 62764, 4246, 48148, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65992, '2022-03-15', 2102, 62765, 4246, 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 (65993, '2022-03-15', 1307, 62766, 4246, NULL, '1.0000', '-0.0521', '-0.0521', '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 (65994, '2022-03-15', 1508, 62767, 4246, 13748, '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 (65995, '2022-03-15', 1912, 62768, 4246, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65996, '2022-03-15', 2295, 62769, 4246, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65997, '2022-03-15', 1871, 62770, 4246, NULL, '12.0000', '2.2081', '2.2081', '3.0000', '3.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 (65998, '2022-03-15', 8740, 62771, 4246, 51963, '1.0000', '2.4971', '2.4971', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65999, '2022-03-15', 9832, 62772, 4246, NULL, '1.0000', '1.5600', '1.5600', '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 (66000, '2022-03-15', 1368, 62773, 4246, 51506, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66001, '2022-03-15', 2414, 62774, 4246, NULL, '2.0000', '3.9438', '3.9438', '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 (66002, '2022-03-15', 2103, 62775, 4246, 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 (66003, '2022-03-15', 8979, 62776, 4246, 51965, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '47.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66004, '2022-03-15', 2169, 62777, 4246, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66005, '2022-03-15', 9695, 62778, 4246, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66006, '2022-03-15', 8387, 62779, 4247, 51961, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66007, '2022-03-15', 2167, 62780, 4247, NULL, '2.0000', '2.0277', '2.0277', '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 (66008, '2022-03-15', 7671, 62781, 4247, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66009, '2022-03-15', 1946, 62782, 4247, NULL, '1.0000', '1.5500', '1.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 (66010, '2022-03-15', 2093, 62783, 4247, NULL, '1.0000', '2.5500', '2.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 (66011, '2022-03-15', 2410, 62784, 4247, 48148, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66012, '2022-03-15', 2102, 62785, 4247, 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 (66013, '2022-03-15', 1307, 62786, 4247, NULL, '1.0000', '-0.0521', '-0.0521', '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 (66014, '2022-03-15', 1508, 62787, 4247, 13748, '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 (66015, '2022-03-15', 1912, 62788, 4247, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66016, '2022-03-15', 2295, 62789, 4247, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66017, '2022-03-15', 1871, 62790, 4247, NULL, '12.0000', '2.2081', '2.2081', '3.0000', '3.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 (66018, '2022-03-15', 8740, 62791, 4247, NULL, '1.0000', '2.4971', '2.4971', '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 (66019, '2022-03-15', 9832, 62792, 4247, NULL, '1.0000', '1.5600', '1.5600', '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 (66020, '2022-03-15', 1368, 62793, 4247, 51506, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66021, '2022-03-15', 2414, 62794, 4247, NULL, '2.0000', '3.9438', '3.9438', '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 (66022, '2022-03-15', 2103, 62795, 4247, 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 (66023, '2022-03-15', 8979, 62796, 4247, 51965, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '46.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66024, '2022-03-15', 2169, 62797, 4247, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66025, '2022-03-15', 9695, 62798, 4247, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66026, '2022-03-15', 9726, 62799, 4247, 47063, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66027, '2022-03-15', 9794, 62800, 4247, 51219, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66028, '2022-03-15', 2066, 62801, 4247, NULL, '1.0000', '0.5100', '0.5100', '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 (66029, '2022-03-15', 2169, 62802, 4247, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66030, '2022-03-15', 8387, 62803, 4247, 51961, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66031, '2022-03-15', 1628, 62804, 4248, 51671, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66032, '2022-03-15', 9158, 62805, 4248, NULL, '1.0000', '5.8900', '5.8900', '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 (66033, '2022-03-15', 1787, 62806, 4248, NULL, '1.0000', '0.5000', '0.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 (66034, '2022-03-15', 1837, 62807, 4248, NULL, '1.0000', '1.5967', '1.5967', '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 (66035, '2022-03-15', 2000, 62808, 4248, 49604, '1.0000', '8.0000', '8.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 (66036, '2022-03-15', 2000, 62808, 4248, 22557, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '1.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 (66037, '2022-03-15', 9695, 62809, 4248, 51993, '2.0000', '4.5000', '4.5000', '6.5000', '6.5000', '22.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66038, '2022-03-15', 7357, 62810, 4248, NULL, '1.0000', '12.2000', '12.2000', '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 (66039, '2022-03-15', 8079, 62811, 4248, NULL, '1.0000', '14.3600', '14.3600', '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 (66040, '2022-03-15', 1455, 62812, 4248, 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 (66041, '2022-03-15', 2014, 62813, 4248, 49634, '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 (66042, '2022-03-15', 1533, 62814, 4248, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66043, '2022-03-15', 9731, 62815, 4248, 51226, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66044, '2022-03-15', 2810, 62816, 4248, 24934, '2.0000', '6788008906.4158', '6788008906.4158', '3.0000', '3.0000', '15.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 (66045, '2022-03-15', 1863, 62817, 4248, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66046, '2022-03-15', 1692, 62818, 4248, 51507, '1.0000', '9.8219', '9.8219', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66047, '2022-03-15', 2383, 62819, 4248, 19822, '1.0000', '16.3000', '16.3000', '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 (66048, '2022-03-15', 1337, 62820, 4248, NULL, '1.0000', '2.0000', '2.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 (66049, '2022-03-15', 2352, 62821, 4249, NULL, '1.0000', '126.2588', '126.2588', '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 (66050, '2022-03-15', 2657, 62822, 4249, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66051, '2022-03-15', 2169, 62823, 4249, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66052, '2022-03-15', 2448, 62824, 4249, 23980, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '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 (66053, '2022-03-15', 1855, 62825, 4250, NULL, '1.0000', '1.5003', '1.5003', '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 (66054, '2022-03-15', 1590, 62826, 4250, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66055, '2022-03-15', 1999, 62827, 4251, 51934, '1.0000', '6.6486', '6.6486', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66056, '2022-03-15', 1912, 62828, 4252, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66057, '2022-03-15', 1310, 62829, 4253, NULL, '1.0000', '0.3700', '0.3700', '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 (66058, '2022-03-15', 7608, 62830, 4253, NULL, '1.0000', '6.9800', '6.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 (66059, '2022-03-15', 7514, 62831, 4253, NULL, '1.0000', '2.2500', '2.2500', '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 (66060, '2022-03-15', 2486, 62832, 4253, 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 (66061, '2022-03-15', 8325, 62833, 4253, 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 (66062, '2022-03-15', 7946, 62834, 4253, NULL, '1.0000', '1.1000', '1.1000', '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 (66063, '2022-03-15', 8360, 62835, 4253, NULL, '1.0000', '3.2300', '3.2300', '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 (66064, '2022-03-15', 8596, 62836, 4253, 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 (66065, '2022-03-15', 1841, 62837, 4253, NULL, '3.0000', '142.5780', '142.5780', '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 (66066, '2022-03-15', 1840, 62838, 4253, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (66067, '2022-03-15', 9807, 62839, 4253, NULL, '1.0000', '36.8000', '36.8000', '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 (66068, '2022-03-15', 7756, 62840, 4253, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66069, '2022-03-15', 8101, 62841, 4253, NULL, '3.0000', '1.9700', '1.9700', '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 (66070, '2022-03-15', 7753, 62842, 4253, NULL, '1.0000', '3.4000', '3.4000', '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 (66071, '2022-03-15', 8198, 62843, 4253, NULL, '1.0000', '6.2900', '6.2900', '84.0000', '84.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66072, '2022-03-15', 1720, 62844, 4253, 6661, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '146.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 (66073, '2022-03-15', 8168, 62845, 4253, NULL, '3.0000', '5.2500', '5.2500', '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 (66074, '2022-03-15', 7419, 62846, 4253, NULL, '1.0000', '25.9000', '25.9000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66075, '2022-03-15', 1765, 62847, 4253, 3175, '-9.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 (66076, '2022-03-15', 1765, 62847, 4253, NULL, '10.0000', '90.0000', '90.0000', '7.5000', '7.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 (66077, '2022-03-15', 9721, 62848, 4253, NULL, '1.0000', '11.7000', '11.7000', '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 (66078, '2022-03-15', 7641, 62849, 4253, NULL, '1.0000', '1.9000', '1.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 (66079, '2022-03-15', 9809, 62850, 4253, NULL, '2.0000', '5.7900', '5.7900', '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 (66080, '2022-03-15', 7853, 62851, 4253, 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 (66081, '2022-03-15', 7518, 62852, 4253, NULL, '1.0000', '7.8200', '7.8200', '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 (66082, '2022-03-15', 8775, 62853, 4253, NULL, '2.0000', '2.6000', '2.6000', '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 (66083, '2022-03-15', 7671, 62854, 4253, NULL, '3.0000', '15.5000', '15.5000', '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 (66084, '2022-03-15', 7857, 62855, 4253, NULL, '1.0000', '15.1300', '15.1300', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66085, '2022-03-15', 8548, 62856, 4253, NULL, '2.0000', '12.0000', '12.0000', '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 (66086, '2022-03-15', 8915, 62857, 4253, 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 (66087, '2022-03-15', 9092, 62858, 4253, NULL, '2.0000', '5.2900', '5.2900', '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 (66088, '2022-03-15', 2381, 62859, 4254, 48511, '1.0000', '11.8190', '11.8190', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66089, '2022-03-15', 7396, 62860, 4254, NULL, '1.0000', '6.0000', '6.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 (66090, '2022-03-15', 1822, 62861, 4255, 8225, '-101.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 (66091, '2022-03-15', 1822, 62861, 4255, NULL, '105.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66092, '2022-03-15', 1498, 62862, 4255, 19685, '-24.0000', '0.3300', '0.3300', '0.6000', '0.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 (66093, '2022-03-15', 1498, 62862, 4255, NULL, '27.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (66094, '2022-03-15', 2228, 62863, 4255, 1703, '-4.0000', '25.0000', '25.0000', '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 (66095, '2022-03-15', 2228, 62863, 4255, NULL, '5.0000', '25.0000', '25.0000', '29.0000', '29.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 (66096, '2022-03-15', 9734, 62864, 4255, NULL, '1.0000', '0.3200', '0.3200', '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 (66097, '2022-03-15', 1505, 62865, 4255, 10379, '-3.0000', '13.3062', '13.3062', '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 (66098, '2022-03-15', 1505, 62865, 4255, NULL, '4.0000', '13.3062', '13.3062', '18.0000', '18.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 (66099, '2022-03-15', 2662, 62866, 4255, 12036, '-15.0000', '4.5000', '4.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 (66100, '2022-03-15', 2662, 62866, 4255, NULL, '16.0000', '4.5000', '4.5000', '7.0000', '7.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 (66101, '2022-03-15', 2169, 62867, 4255, 10737, '-68.0000', '3.8397', '3.8397', '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 (66102, '2022-03-15', 2169, 62867, 4255, NULL, '69.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66103, '2022-03-15', 1888, 62868, 4255, 14663, '-2.0000', '134.8400', '134.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 (66104, '2022-03-15', 1888, 62868, 4255, NULL, '3.0000', '134.8400', '134.8400', '22.0000', '22.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 (66105, '2022-03-15', 1310, 62869, 4255, NULL, '1.0000', '0.3700', '0.3700', '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 (66106, '2022-03-15', 1610, 62870, 4255, 8730, '-7.0000', '15.7500', '15.7500', '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 (66107, '2022-03-15', 1610, 62870, 4255, NULL, '8.0000', '15.7500', '15.7500', '22.5000', '22.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 (66108, '2022-03-15', 7411, 62871, 4256, NULL, '2.0000', '1.3013', '1.3013', '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 (66109, '2022-03-15', 7877, 62872, 4256, 39849, '1.0000', '5.1600', '5.1600', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66110, '2022-03-15', 9750, 62873, 4256, NULL, '1.0000', '3.3000', '3.3000', '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 (66111, '2022-03-15', 1812, 62874, 4256, NULL, '1.0000', '7.7917', '7.7917', '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 (66112, '2022-03-15', 1812, 62875, 4256, NULL, '1.0000', '7.7917', '7.7917', '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 (66113, '2022-03-15', 1812, 62876, 4256, NULL, '1.0000', '7.7917', '7.7917', '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 (66114, '2022-03-15', 2283, 62877, 4256, 51324, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66115, '2022-03-15', 9832, 62878, 4256, NULL, '1.0000', '1.5600', '1.5600', '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 (66116, '2022-03-15', 2293, 62879, 4256, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66117, '2022-03-15', 8740, 62880, 4256, NULL, '1.0000', '1.9965', '1.9965', '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 (66118, '2022-03-15', 2695, 62881, 4256, 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 (66119, '2022-03-15', 2643, 62882, 4256, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '29.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66120, '2022-03-15', 1665, 62883, 4256, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66121, '2022-03-15', 9643, 62884, 4256, 41421, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66122, '2022-03-15', 7671, 62885, 4256, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66123, '2022-03-15', 8773, 62886, 4256, NULL, '1.0000', '4.4800', '4.4800', '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 (66124, '2022-03-15', 2948, 62887, 4256, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66125, '2022-03-15', 1663, 62888, 4256, 51384, '1.0000', '90.6500', '90.6500', '121.0000', '121.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66126, '2022-03-15', 8038, 62889, 4256, NULL, '1.0000', '10.0000', '10.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 (66127, '2022-03-15', 1528, 62890, 4256, 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 (66128, '2022-03-15', 7459, 62891, 4256, NULL, '1.0000', '-6.1729', '-6.1729', '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 (66129, '2022-03-15', 2242, 62892, 4256, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66130, '2022-03-15', 7509, 62893, 4256, 39804, '1.0000', '6.6000', '6.6000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66131, '2022-03-15', 8454, 62894, 4256, NULL, '1.0000', '4.1722', '4.1722', '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 (66132, '2022-03-15', 9726, 62895, 4256, 47063, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66133, '2022-03-15', 9750, 62896, 4256, NULL, '1.0000', '3.3000', '3.3000', '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 (66134, '2022-03-15', 1602, 62897, 4256, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '30.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66135, '2022-03-15', 8124, 62898, 4257, NULL, '1.0000', '18.0000', '18.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 (66136, '2022-03-15', 2020, 62899, 4257, NULL, '1.0000', '19.9455', '19.9455', '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 (66137, '2022-03-15', 2169, 62900, 4257, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66138, '2022-03-15', 1590, 62901, 4257, 50530, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66139, '2022-03-15', 2948, 62902, 4257, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66140, '2022-03-15', 2618, 62903, 4257, 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 (66141, '2022-03-15', 9848, 62904, 4257, 51399, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66142, '2022-03-15', 9723, 62905, 4257, 47060, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66143, '2022-03-15', 2062, 62906, 4257, 49639, '1.0000', '5.8900', '5.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 (66144, '2022-03-15', 1928, 62907, 4257, NULL, '1.0000', '5.3300', '5.3300', '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 (66145, '2022-03-15', 2237, 62908, 4257, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66146, '2022-03-15', 9758, 62909, 4257, NULL, '1.0000', '3.1400', '3.1400', '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 (66147, '2022-03-15', 1812, 62910, 4257, NULL, '1.0000', '7.7917', '7.7917', '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 (66148, '2022-03-15', 2442, 62911, 4257, 51951, '1.0000', '6.7125', '6.7125', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66149, '2022-03-15', 1502, 62912, 4257, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '25.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66150, '2022-03-15', 2821, 62913, 4257, NULL, '1.0000', '3.9374', '3.9374', '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 (66151, '2022-03-15', 7411, 62914, 4257, NULL, '1.0000', '1.3013', '1.3013', '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 (66152, '2022-03-15', 1346, 62915, 4257, 39869, '4.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66153, '2022-03-15', 1346, 62915, 4257, 24923, '2.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '30.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 (66154, '2022-03-15', 7674, 62916, 4258, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66155, '2022-03-15', 1308, 62917, 4258, 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 (66156, '2022-03-15', 1631, 62918, 4258, 51269, '1.0000', '14.1068', '14.1068', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66157, '2022-03-15', 9740, 62919, 4258, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66158, '2022-03-15', 9191, 62920, 4258, 48816, '1.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66159, '2022-03-15', 9337, 62921, 4258, 48301, '2.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66160, '2022-03-15', 2284, 62922, 4258, 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 (66161, '2022-03-15', 7981, 62923, 4258, NULL, '2.0000', '12.3059', '12.3059', '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 (66162, '2022-03-15', 7518, 62924, 4258, NULL, '1.0000', '-914.6441', '-914.6441', '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 (66163, '2022-03-15', 1351, 62925, 4258, NULL, '1.0000', '40.0300', '40.0300', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66164, '2022-03-15', 9836, 62926, 4258, 51897, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66165, '2022-03-15', 7523, 62927, 4258, 50983, '1.0000', '9.7000', '9.7000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66166, '2022-03-15', 1689, 62928, 4258, NULL, '1.0000', '9.1667', '9.1667', '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 (66167, '2022-03-15', 2332, 62929, 4258, 51819, '1.0000', '6.7789', '6.7789', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66168, '2022-03-15', 9513, 62930, 4258, 50384, '2.0000', '8.1691', '8.1691', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66169, '2022-03-15', 8039, 62931, 4258, NULL, '1.0000', '5.6825', '5.6825', '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 (66170, '2022-03-15', 9399, 62932, 4258, NULL, '2.0000', '0.9794', '0.9794', '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 (66171, '2022-03-15', 7672, 62933, 4258, NULL, '1.0000', '3.8200', '3.8200', '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 (66172, '2022-03-15', 9762, 62934, 4258, 46935, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66173, '2022-03-15', 7444, 62935, 4258, NULL, '1.0000', '2.0190', '2.0190', '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 (66174, '2022-03-15', 7428, 62936, 4258, 51281, '3.0000', '56.1257', '56.1257', '4.5000', '4.5000', '48.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66175, '2022-03-15', 8608, 62937, 4258, NULL, '1.0000', '7.6015', '7.6015', '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 (66176, '2022-03-15', 7331, 62938, 4258, 48296, '1.0000', '8.2330', '8.2330', '77.0000', '77.0000', '1.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66177, '2022-03-15', 7523, 62939, 4258, 50983, '1.0000', '9.7000', '9.7000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66178, '2022-03-15', 9092, 62940, 4258, 50305, '2.0000', '0.3129', '0.3129', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66179, '2022-03-15', 7715, 62941, 4258, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '35.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66180, '2022-03-15', 7711, 62942, 4258, NULL, '1.0000', '-302.0559', '-302.0559', '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 (66181, '2022-03-15', 7552, 62943, 4258, 46672, '1.0000', '4.3990', '4.3990', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66182, '2022-03-15', 2284, 62944, 4258, 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 (66183, '2022-03-15', 7895, 62945, 4258, 46205, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66184, '2022-03-15', 1457, 62946, 4258, 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 (66185, '2022-03-15', 7817, 62947, 4258, 50687, '1.0000', '28.4000', '28.4000', '21.5000', '21.5000', '0.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66186, '2022-03-15', 7317, 62948, 4258, 50636, '2.0000', '14.9972', '14.9972', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66187, '2022-03-15', 8314, 62949, 4258, NULL, '5.0000', '7.5900', '7.5900', '13.0000', '13.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 (66188, '2022-03-15', 7635, 62950, 4258, 46904, '2.0000', '14.8224', '14.8224', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66189, '2022-03-15', 8775, 62951, 4258, 43940, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66190, '2022-03-15', 8158, 62952, 4258, NULL, '1.0000', '22.0000', '22.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 (66191, '2022-03-15', 7666, 62953, 4258, NULL, '1.0000', '3.6004', '3.6004', '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 (66192, '2022-03-15', 9178, 62954, 4258, 46013, '1.0000', '4.2725', '4.2725', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66193, '2022-03-15', 7518, 62955, 4258, NULL, '1.0000', '-914.6441', '-914.6441', '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 (66194, '2022-03-15', 8539, 62956, 4258, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '34.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66195, '2022-03-15', 9579, 62957, 4258, 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 (66196, '2022-03-15', 8064, 62958, 4258, 50632, '1.0000', '4.9209', '4.9209', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66197, '2022-03-15', 9721, 62959, 4258, 51803, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66198, '2022-03-15', 9272, 62960, 4258, NULL, '2.0000', '3.1000', '3.1000', '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 (66199, '2022-03-15', 7713, 62961, 4258, 50666, '1.0000', '0.3910', '0.3910', '0.6000', '0.6000', '116.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66200, '2022-03-15', 7564, 62962, 4258, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66201, '2022-03-15', 9275, 62963, 4258, NULL, '2.0000', '6.3000', '6.3000', '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 (66202, '2022-03-15', 2256, 62964, 4259, 50089, '1.0000', '14.0458', '14.0458', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 406);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66203, '2022-03-15', 2221, 62965, 4259, 50865, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66204, '2022-03-15', 1851, 62966, 4259, 50915, '1.0000', '12.9402', '12.9402', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66205, '2022-03-15', 2633, 62967, 4259, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66206, '2022-03-15', 1602, 62968, 4259, 50935, '1.0000', '6.9507', '6.9507', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66207, '2022-03-15', 2344, 62969, 4259, 43045, '1.0000', '20.1294', '20.1294', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66208, '2022-03-15', 1736, 62970, 4259, 49457, '1.0000', '31.5533', '31.5533', '42.0000', '42.0000', '5.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66209, '2022-03-15', 1499, 62971, 4259, 45093, '3.0000', '0.4164', '0.4164', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66210, '2022-03-15', 2315, 62972, 4259, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '179.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66211, '2022-03-15', 2411, 62973, 4259, 45089, '1.0000', '1.3762', '1.3762', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66212, '2022-03-15', 2135, 62974, 4259, NULL, '1.0000', '1.2424', '1.2424', '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 (66213, '2022-03-15', 1751, 62975, 4259, 44764, '1.0000', '3.8718', '3.8718', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66214, '2022-03-15', 9747, 62976, 4259, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66215, '2022-03-15', 1340, 62977, 4259, 44609, '1.0000', '2.6321', '2.6321', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66216, '2022-03-15', 1812, 62978, 4259, 50879, '1.0000', '7.9743', '7.9743', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66217, '2022-03-15', 2643, 62979, 4259, 44038, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '16.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66218, '2022-03-15', 9758, 62980, 4259, NULL, '1.0000', '3.1400', '3.1400', '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 (66219, '2022-03-15', 2706, 62981, 4260, 49082, '1.0000', '9.0575', '9.0575', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66220, '2022-03-15', 8722, 62982, 4261, 50469, '1.0000', '21.3935', '21.3935', '28.0000', '28.0000', '5.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66221, '2022-03-15', 7799, 62983, 4261, NULL, '1.0000', '4.7214', '4.7214', '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 (66222, '2022-03-15', 7638, 62984, 4261, 51004, '1.0000', '4.8735', '4.8735', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66223, '2022-03-15', 9019, 62985, 4261, NULL, '2.0000', '6.0000', '6.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 (66224, '2022-03-15', 9734, 62986, 4261, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66225, '2022-03-15', 7930, 62987, 4262, 45162, '1.0000', '1.3000', '1.3000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66226, '2022-03-15', 1785, 62988, 4262, 51303, '1.0000', '15.9818', '15.9818', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66227, '2022-03-15', 1592, 62989, 4262, 51701, '1.0000', '34.8558', '34.8558', '47.5000', '47.5000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66228, '2022-03-15', 1947, 62990, 4262, 34039, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66229, '2022-03-15', 9828, 62991, 4262, NULL, '2.0000', '2.9100', '2.9100', '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 (66230, '2022-03-15', 8127, 62992, 4262, 48732, '1.0000', '24.5300', '24.5300', '1.2000', '1.2000', '16.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66231, '2022-03-15', 2277, 62993, 4262, NULL, '2.0000', '0.9399', '0.9399', '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 (66232, '2022-03-15', 9763, 62994, 4262, 51336, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66233, '2022-03-15', 9578, 62995, 4262, 51027, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66234, '2022-03-15', 1667, 62996, 4262, 51331, '2.0000', '10.5358', '10.5358', '8.5000', '8.5000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66235, '2022-03-15', 1905, 62997, 4262, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66236, '2022-03-15', 1488, 62998, 4262, 48956, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66237, '2022-03-15', 9750, 62999, 4262, NULL, '1.0000', '3.3000', '3.3000', '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 (66238, '2022-03-15', 7415, 63000, 4262, NULL, '1.0000', '5.4200', '5.4200', '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 (66239, '2022-03-15', 2250, 63001, 4262, 51371, '1.0000', '6.9806', '6.9806', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66240, '2022-03-15', 1665, 63002, 4262, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66241, '2022-03-15', 2283, 63003, 4262, 51324, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66242, '2022-03-15', 2169, 63004, 4262, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66243, '2022-03-15', 2948, 63005, 4262, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66244, '2022-03-15', 9828, 63006, 4262, NULL, '1.0000', '2.9100', '2.9100', '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 (66245, '2022-03-15', 9832, 63007, 4262, NULL, '1.0000', '1.5600', '1.5600', '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 (66246, '2022-03-15', 9831, 63008, 4262, NULL, '1.0000', '1.5600', '1.5600', '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 (66247, '2022-03-15', 9830, 63009, 4262, 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 (66248, '2022-03-15', 2948, 63010, 4262, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66249, '2022-03-15', 2315, 63011, 4262, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '86.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66250, '2022-03-15', 2169, 63012, 4262, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66251, '2022-03-15', 2104, 63013, 4262, 22380, '4.0000', '0.2000', '0.2000', '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 (66252, '2022-03-15', 1950, 63014, 4262, NULL, '1.0000', '3.4496', '3.4496', '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 (66253, '2022-03-15', 1841, 63015, 4262, NULL, '4.0000', '0.2601', '0.2601', '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 (66254, '2022-03-15', 1840, 63016, 4262, NULL, '2.0000', '0.2400', '0.2400', '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 (66255, '2022-03-15', 7881, 63017, 4262, NULL, '2.0000', '32.7700', '32.7700', '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 (66256, '2022-03-15', 7877, 63018, 4262, 39849, '1.0000', '5.1600', '5.1600', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66257, '2022-03-15', 2532, 63019, 4262, 49920, '1.0000', '8.0000', '8.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 (66258, '2022-03-15', 2769, 63020, 4262, NULL, '4.0000', '-2.2800', '-2.2800', '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 (66259, '2022-03-15', 2020, 63021, 4262, NULL, '1.0000', '19.9455', '19.9455', '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 (66260, '2022-03-15', 1527, 63022, 4262, NULL, '1.0000', '13.1000', '13.1000', '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 (66261, '2022-03-15', 8420, 63023, 4262, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '17.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66262, '2022-03-15', 1528, 63024, 4262, 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 (66263, '2022-03-15', 9750, 63025, 4262, NULL, '1.0000', '3.3000', '3.3000', '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 (66264, '2022-03-15', 2109, 63026, 4262, 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 (66265, '2022-03-15', 7406, 63027, 4262, NULL, '1.0000', '2.3750', '2.3750', '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 (66266, '2022-03-15', 7671, 63028, 4262, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66267, '2022-03-15', 1856, 63029, 4262, NULL, '1.0000', '5.5569', '5.5569', '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 (66268, '2022-03-15', 1812, 63030, 4262, NULL, '1.0000', '7.7917', '7.7917', '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 (66269, '2022-03-15', 9831, 63031, 4262, NULL, '1.0000', '1.5600', '1.5600', '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 (66270, '2022-03-15', 8744, 63032, 4262, 51946, '1.0000', '1.6839', '1.6839', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66271, '2022-03-15', 1783, 63033, 4262, 50119, '3.0000', '40.5357', '40.5357', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66272, '2022-03-15', 8744, 63034, 4262, 51946, '1.0000', '1.6839', '1.6839', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66273, '2022-03-15', 2948, 63035, 4262, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66274, '2022-03-15', 1499, 63036, 4262, 50243, '2.0000', '0.3303', '0.3303', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66275, '2022-03-15', 2315, 63037, 4262, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '87.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66276, '2022-03-15', 2167, 63038, 4262, NULL, '1.0000', '2.0277', '2.0277', '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 (66277, '2022-03-15', 2761, 63039, 4263, 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 (66278, '2022-03-15', 7744, 63040, 4263, 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 (66279, '2022-03-15', 9861, 63041, 4264, 52039, '1.0000', '89.0000', '89.0000', '120.0000', '120.0000', '1.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66280, '2022-03-16', 2948, 63042, 4265, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66281, '2022-03-16', 9825, 63043, 4265, 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 (66282, '2022-03-16', 2342, 63044, 4265, 49330, '2.0000', '1.9292', '1.9292', '2.7000', '2.7000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66283, '2022-03-16', 1637, 63045, 4265, NULL, '1.0000', '-41.1667', '-41.1667', '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 (66284, '2022-03-16', 1307, 63046, 4265, NULL, '1.0000', '-0.0521', '-0.0521', '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 (66285, '2022-03-16', 7411, 63047, 4265, NULL, '1.0000', '1.3013', '1.3013', '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 (66286, '2022-03-16', 2302, 63048, 4265, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66287, '2022-03-16', 1658, 63049, 4265, 29637, '1.0000', '45.3715', '45.3715', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66288, '2022-03-16', 2250, 63050, 4265, 51371, '1.0000', '6.9806', '6.9806', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66289, '2022-03-16', 1520, 63051, 4265, 44064, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66290, '2022-03-16', 2016, 63052, 4265, 39218, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66291, '2022-03-16', 7579, 63053, 4265, NULL, '5.0000', '15.0000', '15.0000', '1.5000', '1.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 (66292, '2022-03-16', 1839, 63054, 4265, NULL, '1.0000', '-43.3048', '-43.3048', '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 (66293, '2022-03-16', 2643, 63055, 4265, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '28.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66294, '2022-03-16', 1704, 63056, 4265, NULL, '1.0000', '27.2300', '27.2300', '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 (66295, '2022-03-16', 9482, 63057, 4265, NULL, '2.0000', '0.5000', '0.5000', '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 (66296, '2022-03-16', 8083, 63058, 4265, NULL, '1.0000', '26.0000', '26.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 (66297, '2022-03-16', 9631, 63059, 4265, 48514, '1.0000', '7.0000', '7.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66298, '2022-03-16', 7725, 63060, 4265, NULL, '1.0000', '5.0000', '5.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 (66299, '2022-03-16', 1912, 63061, 4265, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66300, '2022-03-16', 2009, 63062, 4265, 44153, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66301, '2022-03-16', 8133, 63063, 4265, NULL, '1.0000', '-1141.7448', '-1141.7448', '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 (66302, '2022-03-16', 2315, 63064, 4265, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '83.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66303, '2022-03-16', 8387, 63065, 4265, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66304, '2022-03-16', 9794, 63066, 4265, 51219, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66305, '2022-03-16', 2315, 63067, 4265, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '84.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66306, '2022-03-16', 1590, 63068, 4265, 50530, '1.0000', '1.7600', '1.7600', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66307, '2022-03-16', 1590, 63068, 4265, 50113, '1.0000', '1.7600', '1.7600', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66308, '2022-03-16', 9751, 63069, 4265, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66309, '2022-03-16', 7342, 63070, 4265, NULL, '1.0000', '15.7285', '15.7285', '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 (66310, '2022-03-16', 9608, 63071, 4265, NULL, '1.0000', '3.3000', '3.3000', '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 (66311, '2022-03-16', 1946, 63072, 4265, NULL, '1.0000', '1.5500', '1.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 (66312, '2022-03-16', 7385, 63073, 4265, 42798, '4.0000', '-10.3217', '-10.3217', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66313, '2022-03-16', 7917, 63074, 4266, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66314, '2022-03-16', 1420, 63075, 4266, 20658, '2.0000', '1.2000', '1.2000', '2.0000', '2.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 (66315, '2022-03-16', 9800, 63076, 4266, NULL, '1.0000', '14.0000', '14.0000', '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 (66316, '2022-03-16', 8721, 63077, 4266, 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 (66317, '2022-03-16', 9783, 63078, 4266, NULL, '1.0000', '17.6000', '17.6000', '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 (66318, '2022-03-16', 7321, 63079, 4266, NULL, '1.0000', '7.9500', '7.9500', '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 (66319, '2022-03-16', 2351, 63080, 4266, NULL, '2.0000', '17.7000', '17.7000', '24.5000', '24.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 (66320, '2022-03-16', 7711, 63081, 4266, NULL, '1.0000', '35.6300', '35.6300', '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 (66321, '2022-03-16', 7952, 63082, 4266, 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 (66322, '2022-03-16', 7663, 63083, 4266, NULL, '1.0000', '8.2000', '8.2000', '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 (66323, '2022-03-16', 1329, 63084, 4266, 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 (66324, '2022-03-16', 1837, 63085, 4266, 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 (66325, '2022-03-16', 9743, 63086, 4266, NULL, '1.0000', '11.7000', '11.7000', '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 (66326, '2022-03-16', 7500, 63087, 4266, 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 (66327, '2022-03-16', 7428, 63088, 4266, NULL, '2.0000', '2.6100', '2.6100', '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 (66328, '2022-03-16', 7848, 63089, 4266, NULL, '2.0000', '1.3500', '1.3500', '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 (66329, '2022-03-16', 8032, 63090, 4266, NULL, '1.0000', '6.4400', '6.4400', '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 (66330, '2022-03-16', 2235, 63091, 4266, 33819, '1.0000', '19.4250', '19.4250', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66331, '2022-03-16', 8079, 63092, 4266, NULL, '1.0000', '14.3600', '14.3600', '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 (66332, '2022-03-16', 9716, 63093, 4266, NULL, '1.0000', '4.4000', '4.4000', '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 (66333, '2022-03-16', 8077, 63094, 4266, NULL, '2.0000', '3.6000', '3.6000', '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 (66334, '2022-03-16', 9445, 63095, 4266, NULL, '1.0000', '4.5000', '4.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 (66335, '2022-03-16', 1818, 63096, 4266, 14664, '-1.0000', '14.8000', '14.8000', '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 (66336, '2022-03-16', 1818, 63096, 4266, NULL, '2.0000', '14.8000', '14.8000', '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 (66337, '2022-03-16', 8085, 63097, 4266, NULL, '3.0000', '1.1700', '1.1700', '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 (66338, '2022-03-16', 7781, 63098, 4266, NULL, '4.0000', '4.2500', '4.2500', '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 (66339, '2022-03-16', 7608, 63099, 4266, NULL, '1.0000', '6.9800', '6.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 (66340, '2022-03-16', 7719, 63100, 4266, 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 (66341, '2022-03-16', 8188, 63101, 4266, NULL, '2.0000', '0.9000', '0.9000', '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 (66342, '2022-03-16', 8017, 63102, 4266, NULL, '1.0000', '40.0000', '40.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 (66343, '2022-03-16', 7564, 63103, 4266, 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 (66344, '2022-03-16', 2061, 63104, 4266, 2164, '-2.0000', '10.9800', '10.9800', '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 (66345, '2022-03-16', 2061, 63104, 4266, NULL, '3.0000', '10.9800', '10.9800', '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 (66346, '2022-03-16', 9740, 63105, 4266, NULL, '1.0000', '0.6600', '0.6600', '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 (66347, '2022-03-16', 7728, 63106, 4266, NULL, '1.0000', '1.8000', '1.8000', '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 (66348, '2022-03-16', 1494, 63107, 4267, 19337, '1.0000', '4.3900', '4.3900', '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 (66349, '2022-03-16', 1346, 63108, 4267, 24923, '6.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '24.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 (66350, '2022-03-16', 1885, 63109, 4267, NULL, '1.0000', '5.0500', '5.0500', '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 (66351, '2022-03-16', 2380, 63110, 4267, 51503, '1.0000', '37.8800', '37.8800', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66352, '2022-03-16', 9847, 63111, 4267, 51398, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66353, '2022-03-16', 1666, 63112, 4267, 51313, '2.0000', '2.7137', '2.7137', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66354, '2022-03-16', 2302, 63113, 4267, 51482, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66355, '2022-03-16', 2657, 63114, 4267, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66356, '2022-03-16', 1999, 63115, 4267, 51934, '1.0000', '6.6486', '6.6486', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66357, '2022-03-16', 8844, 63116, 4267, 51362, '1.0000', '4.9900', '4.9900', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66358, '2022-03-16', 1905, 63117, 4267, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66359, '2022-03-16', 8384, 63118, 4267, 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 (66360, '2022-03-16', 2344, 63119, 4267, NULL, '1.0000', '19.4201', '19.4201', '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 (66361, '2022-03-16', 1693, 63120, 4267, 48131, '1.0000', '7.9174', '7.9174', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66362, '2022-03-16', 3029, 63121, 4267, NULL, '1.0000', '3.4833', '3.4833', '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 (66363, '2022-03-16', 1492, 63122, 4267, 19359, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66364, '2022-03-16', 7915, 63123, 4267, NULL, '1.0000', '2.8000', '2.8000', '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 (66365, '2022-03-16', 1340, 63124, 4267, 51992, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66366, '2022-03-16', 1602, 63125, 4267, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66367, '2022-03-16', 1839, 63126, 4267, NULL, '1.0000', '-43.3048', '-43.3048', '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 (66368, '2022-03-16', 2169, 63127, 4268, 10737, '-69.0000', '3.8397', '3.8397', '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 (66369, '2022-03-16', 2169, 63127, 4268, NULL, '70.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66370, '2022-03-16', 1912, 63128, 4268, 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 (66371, '2022-03-16', 1936, 63129, 4268, 5587, '-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 (66372, '2022-03-16', 1936, 63129, 4268, NULL, '2.0000', '90.0000', '90.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 (66373, '2022-03-16', 3020, 63130, 4268, NULL, '1.0000', '11.2100', '11.2100', '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 (66374, '2022-03-16', 9734, 63131, 4268, NULL, '1.0000', '0.3200', '0.3200', '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 (66375, '2022-03-16', 1528, 63132, 4269, 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 (66376, '2022-03-16', 9740, 63133, 4269, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66377, '2022-03-16', 2657, 63134, 4269, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66378, '2022-03-16', 1425, 63135, 4269, NULL, '1.0000', '7.5328', '7.5328', '8.5800', '8.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66379, '2022-03-16', 2617, 63136, 4269, 42533, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66380, '2022-03-16', 2617, 63136, 4269, NULL, '1.0000', '4.4000', '4.4000', '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 (66381, '2022-03-16', 9791, 63137, 4269, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66382, '2022-03-16', 7390, 63138, 4269, 48713, '1.0000', '-18.9300', '-18.9300', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66383, '2022-03-16', 1935, 63139, 4269, 49259, '1.0000', '0.8402', '0.8402', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66384, '2022-03-16', 9482, 63140, 4269, NULL, '2.0000', '0.5000', '0.5000', '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 (66385, '2022-03-16', 1665, 63141, 4269, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66386, '2022-03-16', 8744, 63142, 4269, 51946, '2.0000', '1.6839', '1.6839', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66387, '2022-03-16', 9734, 63143, 4269, NULL, '2.0000', '0.3200', '0.3200', '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 (66388, '2022-03-16', 9828, 63144, 4269, NULL, '4.0000', '2.9100', '2.9100', '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 (66389, '2022-03-16', 2283, 63145, 4269, 51324, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66390, '2022-03-16', 1905, 63146, 4269, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66391, '2022-03-16', 2660, 63147, 4269, 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 (66392, '2022-03-16', 2169, 63148, 4269, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66393, '2022-03-16', 1855, 63149, 4269, NULL, '1.0000', '1.5003', '1.5003', '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 (66394, '2022-03-16', 2242, 63150, 4269, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66395, '2022-03-16', 1533, 63151, 4269, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66396, '2022-03-16', 1307, 63152, 4269, NULL, '1.0000', '-0.0521', '-0.0521', '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 (66397, '2022-03-16', 1608, 63153, 4269, 51204, '1.0000', '3.9758', '3.9758', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66398, '2022-03-16', 7671, 63154, 4269, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66399, '2022-03-16', 9695, 63155, 4269, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '21.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66400, '2022-03-16', 1695, 63156, 4269, NULL, '1.0000', '40.2432', '40.2432', '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 (66401, '2022-03-16', 1863, 63157, 4269, 51369, '2.0000', '1.3883', '1.3883', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66402, '2022-03-16', 2761, 63158, 4269, 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 (66403, '2022-03-16', 2386, 63159, 4269, 48461, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66404, '2022-03-16', 9724, 63160, 4269, 48467, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66405, '2022-03-16', 3017, 63161, 4269, 51234, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66406, '2022-03-16', 9840, 63162, 4269, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66407, '2022-03-16', 9732, 63163, 4269, 47082, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66408, '2022-03-16', 2821, 63164, 4269, NULL, '1.0000', '3.9374', '3.9374', '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 (66409, '2022-03-16', 1946, 63165, 4269, NULL, '1.0000', '1.5500', '1.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 (66410, '2022-03-16', 1569, 63166, 4269, NULL, '1.0000', '14.2800', '14.2800', '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 (66411, '2022-03-16', 8384, 63167, 4269, 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 (66412, '2022-03-16', 1307, 63168, 4269, NULL, '1.0000', '-0.0521', '-0.0521', '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 (66413, '2022-03-16', 1793, 63169, 4269, NULL, '1.0000', '18.0667', '18.0667', '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 (66414, '2022-03-16', 1805, 63170, 4269, NULL, '1.0000', '15.0770', '15.0770', '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 (66415, '2022-03-16', 2088, 63171, 4269, 51347, '1.0000', '1.8301', '1.8301', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66416, '2022-03-16', 8660, 63172, 4269, 43231, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66417, '2022-03-16', 8041, 63173, 4269, NULL, '1.0000', '0.4700', '0.4700', '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 (66418, '2022-03-16', 1358, 63174, 4269, 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 (66419, '2022-03-16', 2315, 63175, 4269, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '80.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66420, '2022-03-16', 9831, 63176, 4269, NULL, '2.0000', '1.5600', '1.5600', '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 (66421, '2022-03-16', 9830, 63177, 4269, 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 (66422, '2022-03-16', 9828, 63178, 4269, NULL, '4.0000', '2.9100', '2.9100', '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 (66423, '2022-03-16', 1825, 63179, 4269, NULL, '1.0000', '5.1984', '5.1984', '7.3900', '7.3900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66424, '2022-03-16', 2332, 63180, 4269, NULL, '1.0000', '-1.4600', '-1.4600', '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 (66425, '2022-03-16', 2346, 63181, 4269, NULL, '1.0000', '5.8000', '5.8000', '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 (66426, '2022-03-16', 1702, 63182, 4269, NULL, '1.0000', '14.9000', '14.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 (66427, '2022-03-16', 1646, 63183, 4269, 51653, '1.0000', '5.0679', '5.0679', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66428, '2022-03-16', 2354, 63184, 4269, NULL, '1.0000', '3.6465', '3.6465', '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 (66429, '2022-03-16', 2221, 63185, 4269, 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 (66430, '2022-03-16', 2105, 63186, 4269, 51351, '1.0000', '2.5167', '2.5167', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66431, '2022-03-16', 1504, 63187, 4269, 51480, '10.0000', '1.9591', '1.9591', '2.4000', '2.4000', '60.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66432, '2022-03-16', 7671, 63188, 4269, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66433, '2022-03-16', 1619, 63189, 4269, 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 (66434, '2022-03-16', 1502, 63190, 4269, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '24.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66435, '2022-03-16', 1571, 63191, 4269, 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 (66436, '2022-03-16', 1534, 63192, 4269, NULL, '1.0000', '9.8500', '9.8500', '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 (66437, '2022-03-16', 1839, 63193, 4269, NULL, '1.0000', '-43.3048', '-43.3048', '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 (66438, '2022-03-16', 8187, 63194, 4269, NULL, '3.0000', '14.3900', '14.3900', '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 (66439, '2022-03-16', 1863, 63195, 4269, 51369, '1.0000', '1.3883', '1.3883', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66440, '2022-03-16', 8775, 63196, 4269, 51020, '1.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66441, '2022-03-16', 8759, 63197, 4269, NULL, '1.0000', '15.0800', '15.0800', '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 (66442, '2022-03-16', 2733, 63198, 4270, NULL, '1.0000', '64.0000', '64.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 (66443, '2022-03-16', 2753, 63199, 4270, 45602, '2.0000', '4.9000', '4.9000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66444, '2022-03-16', 2062, 63200, 4270, 50992, '1.0000', '8.5900', '8.5900', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66445, '2022-03-16', 7587, 63201, 4270, NULL, '1.0000', '6.3886', '6.3886', '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 (66446, '2022-03-16', 7548, 63202, 4270, NULL, '1.0000', '3.2042', '3.2042', '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 (66447, '2022-03-16', 7675, 63203, 4270, NULL, '1.0000', '84.8590', '84.8590', '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 (66448, '2022-03-16', 7640, 63204, 4270, 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 (66449, '2022-03-16', 7741, 63205, 4270, 36081, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66450, '2022-03-16', 7399, 63206, 4270, 30026, '1.0000', '57.0500', '57.0500', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66451, '2022-03-16', 7509, 63207, 4270, 52108, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66452, '2022-03-16', 7674, 63208, 4270, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66453, '2022-03-16', 8746, 63209, 4270, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66454, '2022-03-16', 7744, 63210, 4270, 51798, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66455, '2022-03-16', 9053, 63211, 4270, NULL, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66456, '2022-03-16', 9391, 63212, 4270, NULL, '1.0000', '3.0000', '3.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 (66457, '2022-03-16', 7588, 63213, 4270, NULL, '1.0000', '8.2161', '8.2161', '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 (66458, '2022-03-16', 7585, 63214, 4270, NULL, '1.0000', '-3.1011', '-3.1011', '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 (66459, '2022-03-16', 1339, 63215, 4270, NULL, '1.0000', '1.6199', '1.6199', '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 (66460, '2022-03-16', 9734, 63216, 4270, 46910, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66461, '2022-03-16', 7324, 63217, 4270, 45796, '1.0000', '5.3429', '5.3429', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66462, '2022-03-16', 2414, 63218, 4270, NULL, '4.0000', '3.4000', '3.4000', '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 (66463, '2022-03-16', 7671, 63219, 4270, NULL, '1.0000', '76.3606', '76.3606', '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 (66464, '2022-03-16', 7917, 63220, 4270, NULL, '1.0000', '5.0000', '5.0000', '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 (66465, '2022-03-16', 8328, 63221, 4270, NULL, '1.0000', '8.0175', '8.0175', '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 (66466, '2022-03-16', 8422, 63222, 4270, 34493, '1.0000', '34.8900', '34.8900', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66467, '2022-03-16', 8170, 63223, 4270, 51823, '1.0000', '5.8212', '5.8212', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66468, '2022-03-16', 7781, 63224, 4270, NULL, '3.0000', '4.2500', '4.2500', '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 (66469, '2022-03-16', 1840, 63225, 4270, 48008, '3.0000', '0.2400', '0.2400', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66470, '2022-03-16', 1841, 63226, 4270, 48007, '3.0000', '0.1792', '0.1792', '0.5000', '0.5000', '50.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66471, '2022-03-16', 7804, 63227, 4270, 45340, '3.0000', '0.6529', '0.6529', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66472, '2022-03-16', 7675, 63228, 4270, NULL, '2.0000', '84.8590', '84.8590', '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 (66473, '2022-03-16', 7428, 63229, 4270, 51281, '5.0000', '56.1257', '56.1257', '4.5000', '4.5000', '43.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66474, '2022-03-16', 7317, 63230, 4270, 50636, '1.0000', '14.9972', '14.9972', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66475, '2022-03-16', 7355, 63231, 4270, NULL, '1.0000', '4.4343', '4.4343', '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 (66476, '2022-03-16', 7853, 63232, 4270, NULL, '1.0000', '-23535.2849', '-23535.2849', '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 (66477, '2022-03-16', 9653, 63233, 4270, NULL, '2.0000', '46.0000', '46.0000', '60.0000', '60.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 (66478, '2022-03-16', 2906, 63234, 4270, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '43.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66479, '2022-03-16', 8677, 63235, 4270, 51791, '3.0000', '1.2300', '1.2300', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66480, '2022-03-16', 7781, 63236, 4270, NULL, '3.0000', '4.2500', '4.2500', '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 (66481, '2022-03-16', 7518, 63237, 4270, NULL, '2.0000', '-914.6441', '-914.6441', '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 (66482, '2022-03-16', 7722, 63238, 4270, NULL, '1.0000', '3.5000', '3.5000', '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 (66483, '2022-03-16', 7593, 63239, 4270, 50676, '1.0000', '2.6945', '2.6945', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66484, '2022-03-16', 2284, 63240, 4270, 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 (66485, '2022-03-16', 2895, 63241, 4270, NULL, '1.0000', '11.6000', '11.6000', '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 (66486, '2022-03-16', 9731, 63242, 4270, 49289, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66487, '2022-03-16', 8924, 63243, 4270, NULL, '1.0000', '4.5000', '4.5000', '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 (66488, '2022-03-16', 2332, 63244, 4270, 51819, '1.0000', '6.7789', '6.7789', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66489, '2022-03-16', 2610, 63245, 4270, 46018, '1.0000', '44.5000', '44.5000', '52.0000', '52.0000', '2.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66490, '2022-03-16', 8702, 63246, 4270, NULL, '1.0000', '3.6700', '3.6700', '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 (66491, '2022-03-16', 7892, 63247, 4270, NULL, '1.0000', '4.2000', '4.2000', '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 (66492, '2022-03-16', 7640, 63248, 4270, 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 (66493, '2022-03-16', 7779, 63249, 4270, 51779, '1.0000', '9.5007', '9.5007', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66494, '2022-03-16', 8359, 63250, 4270, 51787, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66495, '2022-03-16', 7899, 63251, 4270, NULL, '1.0000', '3.3000', '3.3000', '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 (66496, '2022-03-16', 7741, 63252, 4270, 36081, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66497, '2022-03-16', 9337, 63253, 4270, 48301, '1.0000', '-57.6838', '-57.6838', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66498, '2022-03-16', 7822, 63254, 4270, 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 (66499, '2022-03-16', 7666, 63255, 4270, NULL, '1.0000', '3.6004', '3.6004', '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 (66500, '2022-03-16', 8539, 63256, 4270, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '32.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66501, '2022-03-16', 7674, 63257, 4270, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66502, '2022-03-16', 7671, 63258, 4270, NULL, '1.0000', '76.3606', '76.3606', '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 (66503, '2022-03-16', 7881, 63259, 4270, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66504, '2022-03-16', 7958, 63260, 4270, NULL, '1.0000', '8.5211', '8.5211', '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 (66505, '2022-03-16', 7708, 63261, 4270, NULL, '1.0000', '-415.6632', '-415.6632', '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 (66506, '2022-03-16', 9832, 63262, 4271, NULL, '1.0000', '1.5600', '1.5600', '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 (66507, '2022-03-16', 2660, 63263, 4271, 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 (66508, '2022-03-16', 9482, 63264, 4271, 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 (66509, '2022-03-16', 9579, 63265, 4271, 51028, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66510, '2022-03-16', 2332, 63266, 4272, 51819, '1.0000', '6.7789', '6.7789', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66511, '2022-03-16', 2269, 63267, 4273, NULL, '1.0000', '4.2967', '4.2967', '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 (66512, '2022-03-16', 1580, 63268, 4274, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66513, '2022-03-17', 2167, 63269, 4275, NULL, '1.0000', '2.0277', '2.0277', '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 (66514, '2022-03-17', 1646, 63270, 4275, 51653, '1.0000', '5.0679', '5.0679', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66515, '2022-03-17', 7911, 63271, 4275, NULL, '1.0000', '4.3700', '4.3700', '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 (66516, '2022-03-17', 2965, 63272, 4275, NULL, '1.0000', '6.8290', '6.8290', '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 (66517, '2022-03-17', 2026, 63273, 4275, 42642, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66518, '2022-03-17', 2036, 63274, 4275, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.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 (66519, '2022-03-17', 1872, 63275, 4275, 51666, '1.0000', '8.9169', '8.9169', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66520, '2022-03-17', 2379, 63276, 4275, NULL, '1.0000', '0.2954', '0.2954', '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 (66521, '2022-03-17', 9747, 63277, 4275, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66522, '2022-03-17', 1837, 63278, 4275, NULL, '2.0000', '1.5967', '1.5967', '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 (66523, '2022-03-17', 2169, 63279, 4275, 51695, '2.0000', '1.3526', '1.3526', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66524, '2022-03-17', 2092, 63280, 4275, 51360, '1.0000', '4.4146', '4.4146', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66525, '2022-03-17', 9695, 63281, 4275, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66526, '2022-03-17', 9832, 63282, 4275, NULL, '2.0000', '1.5600', '1.5600', '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 (66527, '2022-03-17', 7952, 63283, 4275, NULL, '1.0000', '2.3000', '2.3000', '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 (66528, '2022-03-17', 8746, 63284, 4275, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66529, '2022-03-17', 1988, 63285, 4275, 49919, '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 (66530, '2022-03-17', 1945, 63286, 4275, 51229, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66531, '2022-03-17', 7385, 63287, 4275, NULL, '2.0000', '-10.3217', '-10.3217', '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 (66532, '2022-03-17', 2948, 63288, 4275, 48640, '2.0000', '0.9000', '0.9000', '3.5000', '3.5000', '26.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66533, '2022-03-17', 2221, 63289, 4275, 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 (66534, '2022-03-17', 1482, 63290, 4275, 47066, '1.0000', '-29.7540', '-29.7540', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66535, '2022-03-17', 2948, 63291, 4275, 48640, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66536, '2022-03-17', 8763, 63292, 4275, NULL, '1.0000', '5.4000', '5.4000', '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 (66537, '2022-03-17', 8746, 63293, 4275, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66538, '2022-03-17', 9734, 63294, 4275, NULL, '4.0000', '0.3200', '0.3200', '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 (66539, '2022-03-17', 2277, 63295, 4275, NULL, '2.0000', '0.9399', '0.9399', '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 (66540, '2022-03-17', 1855, 63296, 4275, NULL, '1.0000', '1.5003', '1.5003', '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 (66541, '2022-03-17', 1574, 63297, 4275, 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 (66542, '2022-03-17', 1868, 63298, 4275, 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 (66543, '2022-03-17', 9692, 63299, 4275, 49343, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66544, '2022-03-17', 7612, 63300, 4275, NULL, '1.0000', '1.7300', '1.7300', '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 (66545, '2022-03-17', 8077, 63301, 4275, 39839, '1.0000', '3.6000', '3.6000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66546, '2022-03-17', 2315, 63302, 4276, 2735, '-204.0000', '0.3300', '0.3300', '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 (66547, '2022-03-17', 2315, 63302, 4276, NULL, '206.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-206.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66548, '2022-03-17', 9798, 63303, 4276, NULL, '2.0000', '13.9000', '13.9000', '18.5000', '18.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 (66549, '2022-03-17', 7922, 63304, 4276, NULL, '1.0000', '6.9800', '6.9800', '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 (66550, '2022-03-17', 9423, 63305, 4276, NULL, '1.0000', '1.6000', '1.6000', '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 (66551, '2022-03-17', 8039, 63306, 4276, NULL, '1.0000', '14.7500', '14.7500', '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 (66552, '2022-03-17', 2069, 63307, 4276, 5571, '-4.0000', '2.0400', '2.0400', '9.5000', '9.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 (66553, '2022-03-17', 2069, 63307, 4276, NULL, '5.0000', '2.0400', '2.0400', '9.5000', '9.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 (66554, '2022-03-17', 2241, 63308, 4276, 3058, '-6.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 (66555, '2022-03-17', 2241, 63308, 4276, NULL, '7.0000', '6.5900', '6.5900', '9.0000', '9.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 (66556, '2022-03-17', 3040, 63309, 4276, NULL, '1.0000', '13.5000', '13.5000', '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 (66557, '2022-03-17', 2315, 63310, 4276, 2735, '-204.0000', '0.3300', '0.3300', '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 (66558, '2022-03-17', 2315, 63310, 4276, NULL, '206.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-206.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66559, '2022-03-17', 7674, 63311, 4276, 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 (66560, '2022-03-17', 7354, 63312, 4276, NULL, '2.0000', '0.3700', '0.3700', '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 (66561, '2022-03-17', 8872, 63313, 4276, NULL, '1.0000', '3.0000', '3.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 (66562, '2022-03-17', 7709, 63314, 4276, NULL, '2.0000', '3.5000', '3.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 (66563, '2022-03-17', 8277, 63315, 4276, 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 (66564, '2022-03-17', 9821, 63316, 4276, NULL, '2.0000', '1.4500', '1.4500', '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 (66565, '2022-03-17', 7672, 63317, 4276, NULL, '1.0000', '1.0200', '1.0200', '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 (66566, '2022-03-17', 1643, 63318, 4276, 3215, '-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 (66567, '2022-03-17', 1643, 63318, 4276, NULL, '2.0000', '90.0000', '90.0000', '54.5000', '54.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 (66568, '2022-03-17', 7514, 63319, 4276, NULL, '1.0000', '2.2500', '2.2500', '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 (66569, '2022-03-17', 7368, 63320, 4276, NULL, '1.0000', '14.7500', '14.7500', '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 (66570, '2022-03-17', 7715, 63321, 4276, NULL, '1.0000', '1.8900', '1.8900', '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 (66571, '2022-03-17', 7993, 63322, 4276, NULL, '4.0000', '41.0000', '41.0000', '51.5000', '51.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 (66572, '2022-03-17', 9098, 63323, 4276, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66573, '2022-03-17', 7428, 63324, 4276, NULL, '4.0000', '2.6100', '2.6100', '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 (66574, '2022-03-17', 8188, 63325, 4276, NULL, '2.0000', '0.9000', '0.9000', '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 (66575, '2022-03-17', 7752, 63326, 4276, 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 (66576, '2022-03-17', 7954, 63327, 4276, 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 (66577, '2022-03-17', 7331, 63328, 4276, NULL, '1.0000', '58.0000', '58.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66578, '2022-03-17', 7848, 63329, 4276, NULL, '1.0000', '1.3500', '1.3500', '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 (66579, '2022-03-17', 7385, 63330, 4276, NULL, '6.0000', '2.0000', '2.0000', '3.0000', '3.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 (66580, '2022-03-17', 7431, 63331, 4276, NULL, '1.0000', '18.0000', '18.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 (66581, '2022-03-17', 7612, 63332, 4276, NULL, '2.0000', '1.7300', '1.7300', '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 (66582, '2022-03-17', 8205, 63333, 4276, NULL, '1.0000', '2.9500', '2.9500', '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 (66583, '2022-03-17', 8208, 63334, 4276, NULL, '4.0000', '33.0000', '33.0000', '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 (66584, '2022-03-17', 2315, 63335, 4277, NULL, '1.0000', '0.8863', '0.8863', '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 (66585, '2022-03-17', 2167, 63336, 4278, NULL, '1.0000', '2.0277', '2.0277', '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 (66586, '2022-03-17', 2221, 63337, 4278, 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 (66587, '2022-03-17', 1840, 63338, 4278, NULL, '2.0000', '0.2400', '0.2400', '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 (66588, '2022-03-17', 2289, 63339, 4278, NULL, '2.0000', '0.2222', '0.2222', '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 (66589, '2022-03-17', 2821, 63340, 4278, NULL, '1.0000', '3.9374', '3.9374', '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 (66590, '2022-03-17', 2252, 63341, 4278, 51320, '1.0000', '-7.3600', '-7.3600', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66591, '2022-03-17', 1602, 63342, 4278, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66592, '2022-03-17', 8773, 63343, 4278, NULL, '1.0000', '4.4800', '4.4800', '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 (66593, '2022-03-17', 1498, 63344, 4278, 19871, '2.0000', '0.3300', '0.3300', '0.6000', '0.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 (66594, '2022-03-17', 1912, 63345, 4278, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66595, '2022-03-17', 2109, 63346, 4278, 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 (66596, '2022-03-17', 9204, 63347, 4278, NULL, '1.0000', '14.1514', '14.1514', '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 (66597, '2022-03-17', 9828, 63348, 4278, NULL, '1.0000', '2.9100', '2.9100', '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 (66598, '2022-03-17', 1602, 63349, 4278, 51394, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66599, '2022-03-17', 2242, 63350, 4278, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66600, '2022-03-17', 1592, 63351, 4278, 51701, '1.0000', '34.8558', '34.8558', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66601, '2022-03-17', 2812, 63352, 4278, 25007, '1.0000', '98.5600', '98.5600', '130.0000', '130.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 (66602, '2022-03-17', 2169, 63353, 4278, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66603, '2022-03-17', 2109, 63354, 4278, 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 (66604, '2022-03-17', 7635, 63355, 4278, NULL, '2.0000', '6.6300', '6.6300', '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 (66605, '2022-03-17', 9294, 63356, 4278, 33162, '1.0000', '3.4000', '3.4000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66606, '2022-03-17', 2811, 63357, 4278, 43241, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66607, '2022-03-17', 1999, 63358, 4278, 51934, '1.0000', '6.6486', '6.6486', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66608, '2022-03-17', 7585, 63359, 4278, NULL, '1.0000', '3.9600', '3.9600', '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 (66609, '2022-03-17', 1499, 63360, 4278, 50243, '1.0000', '0.3303', '0.3303', '0.6000', '0.6000', '29.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66610, '2022-03-17', 2916, 63361, 4278, NULL, '1.0000', '11.2778', '11.2778', '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 (66611, '2022-03-17', 2109, 63362, 4278, 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 (66612, '2022-03-17', 2352, 63363, 4278, NULL, '15.0000', '126.2588', '126.2588', '3.5000', '3.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 (66613, '2022-03-17', 9695, 63364, 4278, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66614, '2022-03-17', 8774, 63365, 4278, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66615, '2022-03-17', 1608, 63366, 4278, 51204, '1.0000', '3.9758', '3.9758', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66616, '2022-03-17', 3023, 63367, 4278, 50234, '1.0000', '5.5275', '5.5275', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66617, '2022-03-17', 2235, 63368, 4278, NULL, '1.0000', '22.4375', '22.4375', '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 (66618, '2022-03-17', 1306, 63369, 4278, NULL, '5.0000', '2.1000', '2.1000', '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 (66619, '2022-03-17', 9311, 63370, 4279, 44147, '1.0000', '6.6000', '6.6000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66620, '2022-03-17', 1912, 63371, 4279, 51315, '3.0000', '0.6218', '0.6218', '1.0000', '1.0000', '77.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66621, '2022-03-17', 1888, 63372, 4279, 48501, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66622, '2022-03-17', 2660, 63373, 4279, 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 (66623, '2022-03-17', 2242, 63374, 4279, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66624, '2022-03-17', 2740, 63375, 4279, NULL, '1.0000', '10.3800', '10.3800', '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 (66625, '2022-03-17', 7482, 63376, 4279, NULL, '1.0000', '2.5019', '2.5019', '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 (66626, '2022-03-17', 7447, 63377, 4279, NULL, '2.0000', '19.1100', '19.1100', '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 (66627, '2022-03-17', 2003, 63378, 4279, 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 (66628, '2022-03-17', 1410, 63379, 4279, NULL, '1.0000', '-0.4921', '-0.4921', '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 (66629, '2022-03-17', 1812, 63380, 4279, NULL, '1.0000', '7.7917', '7.7917', '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 (66630, '2022-03-17', 9830, 63381, 4279, 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 (66631, '2022-03-17', 9831, 63382, 4279, NULL, '4.0000', '1.5600', '1.5600', '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 (66632, '2022-03-17', 9716, 63383, 4279, NULL, '1.0000', '4.4000', '4.4000', '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 (66633, '2022-03-17', 7532, 63384, 4279, 51356, '1.0000', '20.5389', '20.5389', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66634, '2022-03-17', 7396, 63385, 4279, NULL, '1.0000', '6.0000', '6.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 (66635, '2022-03-17', 2169, 63386, 4279, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66636, '2022-03-17', 1888, 63387, 4279, 48501, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66637, '2022-03-17', 1532, 63388, 4279, 48901, '2.0000', '1.5750', '1.5750', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66638, '2022-03-17', 9572, 63389, 4279, 44460, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66639, '2022-03-17', 3025, 63390, 4279, 44157, '1.0000', '2.9545', '2.9545', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66640, '2022-03-17', 9830, 63391, 4279, NULL, '4.0000', '1.9000', '1.9000', '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 (66641, '2022-03-17', 8743, 63392, 4279, 51950, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66642, '2022-03-17', 1999, 63393, 4279, 51934, '1.0000', '6.6486', '6.6486', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66643, '2022-03-17', 2069, 63394, 4280, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '12.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66644, '2022-03-17', 7457, 63395, 4280, 46665, '2.0000', '3.6088', '3.6088', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66645, '2022-03-17', 2241, 63396, 4280, 50372, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66646, '2022-03-17', 9275, 63397, 4280, NULL, '2.0000', '6.3000', '6.3000', '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 (66647, '2022-03-17', 2315, 63398, 4280, NULL, '1.0000', '0.8863', '0.8863', '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 (66648, '2022-03-17', 7806, 63399, 4280, NULL, '5.0000', '37.5044', '37.5044', '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 (66649, '2022-03-17', 9552, 63400, 4280, 40400, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66650, '2022-03-17', 7412, 63401, 4280, NULL, '1.0000', '1.5200', '1.5200', '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 (66651, '2022-03-17', 9339, 63402, 4280, NULL, '1.0000', '7.2200', '7.2200', '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 (66652, '2022-03-17', 7345, 63403, 4280, NULL, '1.0000', '38.2000', '38.2000', '67.5000', '67.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66653, '2022-03-17', 8883, 63404, 4280, NULL, '2.0000', '56.5500', '56.5500', '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 (66654, '2022-03-17', 8005, 63405, 4280, NULL, '2.0000', '55.0000', '55.0000', '68.5000', '68.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 (66655, '2022-03-17', 1935, 63406, 4280, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '153.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66656, '2022-03-17', 7946, 63407, 4280, 48254, '1.0000', '-3.9133', '-3.9133', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66657, '2022-03-17', 8063, 63408, 4280, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '92.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66658, '2022-03-17', 7672, 63409, 4280, NULL, '3.0000', '3.8200', '3.8200', '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 (66659, '2022-03-17', 7344, 63410, 4280, 45299, '6.0000', '-333.7508', '-333.7508', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66660, '2022-03-17', 7344, 63410, 4280, NULL, '1.0000', '-333.7508', '-333.7508', '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 (66661, '2022-03-17', 7552, 63411, 4280, 46672, '1.0000', '4.3990', '4.3990', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66662, '2022-03-17', 1446, 63412, 4280, 46916, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66663, '2022-03-17', 8186, 63413, 4280, NULL, '2.0000', '1.0800', '1.0800', '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 (66664, '2022-03-17', 9275, 63414, 4280, NULL, '2.0000', '6.3000', '6.3000', '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 (66665, '2022-03-17', 7400, 63415, 4280, NULL, '1.0000', '-37.0800', '-37.0800', '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 (66666, '2022-03-17', 2070, 63416, 4280, NULL, '1.0000', '2.3000', '2.3000', '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 (66667, '2022-03-17', 8359, 63417, 4280, 51787, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66668, '2022-03-17', 2452, 63418, 4280, NULL, '1.0000', '2.5000', '2.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 (66669, '2022-03-17', 8595, 63419, 4280, 51828, '1.0000', '4.9056', '4.9056', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66670, '2022-03-17', 1501, 63420, 4280, 50484, '1.0000', '2.2898', '2.2898', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66671, '2022-03-17', 7711, 63421, 4280, NULL, '1.0000', '-302.0559', '-302.0559', '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 (66672, '2022-03-17', 1854, 63422, 4280, NULL, '1.0000', '2.6053', '2.6053', '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 (66673, '2022-03-17', 7788, 63423, 4280, NULL, '1.0000', '21.7600', '21.7600', '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 (66674, '2022-03-17', 1501, 63424, 4280, 50484, '1.0000', '2.2898', '2.2898', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66675, '2022-03-17', 7672, 63425, 4280, NULL, '2.0000', '3.8200', '3.8200', '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 (66676, '2022-03-17', 7848, 63426, 4280, NULL, '1.0000', '-25.0787', '-25.0787', '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 (66677, '2022-03-17', 7588, 63427, 4280, NULL, '1.0000', '8.2161', '8.2161', '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 (66678, '2022-03-17', 1805, 63428, 4280, NULL, '1.0000', '4.9973', '4.9973', '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 (66679, '2022-03-17', 2414, 63429, 4280, NULL, '2.0000', '3.4000', '3.4000', '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 (66680, '2022-03-17', 8080, 63430, 4280, NULL, '2.0000', '2.9000', '2.9000', '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 (66681, '2022-03-17', 8296, 63431, 4280, NULL, '1.0000', '112.3600', '112.3600', '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 (66682, '2022-03-17', 7876, 63432, 4280, 49823, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66683, '2022-03-17', 7333, 63433, 4280, NULL, '2.0000', '13.5000', '13.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 (66684, '2022-03-17', 7708, 63434, 4280, NULL, '1.0000', '-415.6632', '-415.6632', '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 (66685, '2022-03-17', 1841, 63435, 4280, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66686, '2022-03-17', 8753, 63436, 4280, NULL, '2.0000', '4.0000', '4.0000', '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 (66687, '2022-03-17', 2283, 63437, 4280, 50041, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66688, '2022-03-17', 8274, 63438, 4280, NULL, '1.0000', '8.4300', '8.4300', '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 (66689, '2022-03-17', 7711, 63439, 4280, NULL, '1.0000', '-302.0559', '-302.0559', '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 (66690, '2022-03-17', 7804, 63440, 4280, 45340, '3.0000', '0.6529', '0.6529', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66691, '2022-03-17', 2242, 63441, 4280, 50663, '3.0000', '0.5833', '0.5833', '1.0000', '1.0000', '147.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66692, '2022-03-17', 2781, 63442, 4280, NULL, '1.0000', '31.3200', '31.3200', '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 (66693, '2022-03-17', 1631, 63443, 4280, 51269, '1.0000', '14.1068', '14.1068', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66694, '2022-03-17', 1631, 63443, 4280, NULL, '1.0000', '14.1068', '14.1068', '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 (66695, '2022-03-17', 8061, 63444, 4280, NULL, '1.0000', '113.6000', '113.6000', '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 (66696, '2022-03-17', 8204, 63445, 4280, NULL, '2.0000', '-5.4939', '-5.4939', '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 (66697, '2022-03-17', 7482, 63446, 4280, NULL, '1.0000', '3.3336', '3.3336', '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 (66698, '2022-03-17', 8328, 63447, 4280, NULL, '1.0000', '8.0175', '8.0175', '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 (66699, '2022-03-17', 9177, 63448, 4280, NULL, '3.0000', '2.2517', '2.2517', '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 (66700, '2022-03-17', 9734, 63449, 4280, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '79.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66701, '2022-03-17', 1347, 63450, 4281, 41415, '5.0000', '3.3775', '3.3775', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66702, '2022-03-17', 2908, 63451, 4281, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '9.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66703, '2022-03-17', 1410, 63452, 4281, NULL, '1.0000', '-0.4921', '-0.4921', '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 (66704, '2022-03-17', 1701, 63453, 4281, 51510, '1.0000', '15.2068', '15.2068', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66705, '2022-03-17', 9695, 63454, 4281, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66706, '2022-03-17', 8740, 63455, 4281, NULL, '1.0000', '1.9965', '1.9965', '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 (66707, '2022-03-17', 9828, 63456, 4281, NULL, '1.0000', '2.9100', '2.9100', '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 (66708, '2022-03-17', 7385, 63457, 4281, NULL, '2.0000', '-10.3217', '-10.3217', '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 (66709, '2022-03-17', 2643, 63458, 4281, 51987, '2.0000', '0.8700', '0.8700', '1.2000', '1.2000', '26.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66710, '2022-03-17', 8740, 63459, 4281, NULL, '1.0000', '1.9965', '1.9965', '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 (66711, '2022-03-17', 2633, 63460, 4281, 50110, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66712, '2022-03-17', 9740, 63461, 4281, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66713, '2022-03-17', 2850, 63462, 4281, 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 (66714, '2022-03-17', 2237, 63463, 4281, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66715, '2022-03-17', 1581, 63464, 4281, 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 (66716, '2022-03-17', 2169, 63465, 4281, 51695, '1.0000', '1.3526', '1.3526', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66717, '2022-03-17', 1690, 63466, 4281, 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 (66718, '2022-03-17', 2385, 63467, 4281, 50075, '1.0000', '8.9100', '8.9100', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66719, '2022-03-17', 1665, 63468, 4281, 51683, '2.0000', '1.1432', '1.1432', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66720, '2022-03-17', 1888, 63469, 4281, 48139, '1.0000', '16.2677', '16.2677', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66721, '2022-03-17', 2315, 63470, 4281, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '79.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66722, '2022-03-17', 1856, 63471, 4281, NULL, '1.0000', '5.5569', '5.5569', '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 (66723, '2022-03-17', 7641, 63472, 4282, NULL, '1.0000', '95.0035', '95.0035', '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 (66724, '2022-03-17', 8061, 63473, 4282, NULL, '1.0000', '113.6000', '113.6000', '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 (66725, '2022-03-17', 7749, 63474, 4282, 50048, '1.0000', '19.3533', '19.3533', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66726, '2022-03-17', 2965, 63475, 4282, NULL, '1.0000', '-7.9600', '-7.9600', '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 (66727, '2022-03-17', 7888, 63476, 4282, NULL, '1.0000', '14.2363', '14.2363', '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 (66728, '2022-03-17', 9089, 63477, 4282, 42765, '1.0000', '3.8000', '3.8000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66729, '2022-03-17', 8207, 63478, 4282, NULL, '1.0000', '0.0000', '0.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 (66730, '2022-03-17', 7518, 63479, 4282, NULL, '1.0000', '-914.6441', '-914.6441', '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 (66731, '2022-03-17', 2136, 63480, 4283, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '68.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 (66732, '2022-03-17', 9531, 63481, 4283, NULL, '1.0000', '8.5000', '8.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 (66733, '2022-03-17', 7880, 63482, 4283, NULL, '1.0000', '2.6500', '2.6500', '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 (66734, '2022-03-17', 2289, 63483, 4283, 2949, '-80.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 (66735, '2022-03-17', 2289, 63483, 4283, NULL, '82.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66736, '2022-03-17', 2769, 63484, 4284, NULL, '4.0000', '-2.2800', '-2.2800', '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 (66737, '2022-03-17', 8933, 63485, 4284, 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 (66738, '2022-03-17', 9213, 63486, 4284, 45280, '1.0000', '5.5090', '5.5090', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66739, '2022-03-17', 7641, 63487, 4284, NULL, '1.0000', '1.9000', '1.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 (66740, '2022-03-17', 1905, 63488, 4284, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66741, '2022-03-17', 7762, 63489, 4284, NULL, '1.0000', '5.1000', '5.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 (66742, '2022-03-17', 2732, 63490, 4284, 33156, '1.0000', '27.0375', '27.0375', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66743, '2022-03-17', 7743, 63491, 4284, NULL, '1.0000', '7.3900', '7.3900', '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 (66744, '2022-03-18', 2088, 63492, 4285, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '51.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 (66745, '2022-03-18', 2169, 63493, 4285, 10737, '-70.0000', '3.8397', '3.8397', '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 (66746, '2022-03-18', 2169, 63493, 4285, NULL, '71.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66747, '2022-03-18', 2427, 63494, 4285, NULL, '1.0000', '5.8000', '5.8000', '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 (66748, '2022-03-18', 9818, 63495, 4285, NULL, '1.0000', '1.5000', '1.5000', '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 (66749, '2022-03-18', 2095, 63496, 4285, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '50.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 (66750, '2022-03-18', 2516, 63497, 4285, 5916, '-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 (66751, '2022-03-18', 2516, 63497, 4285, NULL, '2.0000', '9.0000', '9.0000', '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 (66752, '2022-03-18', 2315, 63498, 4285, 2735, '-208.0000', '0.3300', '0.3300', '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 (66753, '2022-03-18', 2315, 63498, 4285, NULL, '209.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-209.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66754, '2022-03-18', 2816, 63499, 4285, NULL, '2.0000', '0.8000', '0.8000', '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 (66755, '2022-03-18', 1382, 63500, 4285, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.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 (66756, '2022-03-18', 1751, 63501, 4285, 6681, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '1.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 (66757, '2022-03-18', 2607, 63502, 4285, 9619, '-4.0000', '1.4000', '1.4000', '1.7000', '1.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 (66758, '2022-03-18', 2607, 63502, 4285, NULL, '6.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-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 (66759, '2022-03-18', 2088, 63503, 4285, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '51.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 (66760, '2022-03-18', 9732, 63504, 4285, 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 (66761, '2022-03-18', 2858, 63505, 4285, 17772, '-54.0000', '1.0000', '1.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 (66762, '2022-03-18', 2858, 63505, 4285, NULL, '55.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (66763, '2022-03-18', 2633, 63506, 4285, 17589, '-5.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 (66764, '2022-03-18', 2633, 63506, 4285, NULL, '6.0000', '3.5000', '3.5000', '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 (66765, '2022-03-18', 2169, 63507, 4285, 10737, '-70.0000', '3.8397', '3.8397', '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 (66766, '2022-03-18', 2169, 63507, 4285, NULL, '71.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66767, '2022-03-18', 2105, 63508, 4285, NULL, '2.0000', '1.3500', '1.3500', '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 (66768, '2022-03-18', 2270, 63509, 4285, 2930, '-3.0000', '0.9880', '0.9880', '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 (66769, '2022-03-18', 2270, 63509, 4285, NULL, '5.0000', '0.9880', '0.9880', '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 (66770, '2022-03-18', 1867, 63510, 4285, NULL, '1.0000', '1.0500', '1.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 (66771, '2022-03-18', 1687, 63511, 4285, 5785, '-24.0000', '165.9024', '165.9024', '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 (66772, '2022-03-18', 1687, 63511, 4285, NULL, '25.0000', '165.9024', '165.9024', '17.5000', '17.5000', '-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 (66773, '2022-03-18', 3025, 63512, 4285, NULL, '1.0000', '1.8000', '1.8000', '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 (66774, '2022-03-18', 1855, 63513, 4285, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '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 (66775, '2022-03-18', 1620, 63514, 4285, 8955, '-5.0000', '408.8259', '408.8259', '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 (66776, '2022-03-18', 1620, 63514, 4285, NULL, '9.0000', '408.8259', '408.8259', '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 (66777, '2022-03-18', 2089, 63515, 4285, 10811, '-3.0000', '6.6500', '6.6500', '9.2400', '9.2400', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66778, '2022-03-18', 2089, 63515, 4285, NULL, '4.0000', '6.6500', '6.6500', '9.2400', '9.2400', '-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 (66779, '2022-03-18', 9794, 63516, 4285, NULL, '1.0000', '1.0800', '1.0800', '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 (66780, '2022-03-18', 2415, 63517, 4286, 4656, '-12.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 (66781, '2022-03-18', 2415, 63517, 4286, NULL, '13.0000', '5.0000', '5.0000', '7.0000', '7.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 (66782, '2022-03-18', 2366, 63518, 4286, 3833, '-42.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 (66783, '2022-03-18', 2366, 63518, 4286, NULL, '44.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66784, '2022-03-18', 2169, 63519, 4286, 10737, '-72.0000', '3.8397', '3.8397', '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 (66785, '2022-03-18', 2169, 63519, 4286, NULL, '73.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66786, '2022-03-18', 2136, 63520, 4286, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '67.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 (66787, '2022-03-18', 1855, 63521, 4286, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '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 (66788, '2022-03-18', 1602, 63522, 4286, 5897, '-116.0000', '6.7859', '6.7859', '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 (66789, '2022-03-18', 1602, 63522, 4286, NULL, '117.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-117.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66790, '2022-03-18', 9794, 63523, 4286, NULL, '1.0000', '1.0800', '1.0800', '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 (66791, '2022-03-18', 2169, 63524, 4286, 10737, '-72.0000', '3.8397', '3.8397', '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 (66792, '2022-03-18', 2169, 63524, 4286, NULL, '73.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66793, '2022-03-18', 8133, 63525, 4286, NULL, '1.0000', '5.0000', '5.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 (66794, '2022-03-18', 2366, 63526, 4286, 3833, '-42.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 (66795, '2022-03-18', 2366, 63526, 4286, NULL, '44.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66796, '2022-03-18', 2169, 63527, 4286, 10737, '-72.0000', '3.8397', '3.8397', '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 (66797, '2022-03-18', 2169, 63527, 4286, NULL, '73.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66798, '2022-03-18', 9748, 63528, 4286, NULL, '1.0000', '2.5300', '2.5300', '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 (66799, '2022-03-18', 9734, 63529, 4286, NULL, '1.0000', '0.3200', '0.3200', '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 (66800, '2022-03-18', 1388, 63530, 4286, 22361, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (66801, '2022-03-18', 2251, 63531, 4287, 2788, '-10.0000', '10.9700', '10.9700', '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 (66802, '2022-03-18', 2251, 63531, 4287, NULL, '11.0000', '10.9700', '10.9700', '16.0000', '16.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 (66803, '2022-03-18', 1785, 63532, 4287, 4903, '-4.0000', '4.8380', '4.8380', '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 (66804, '2022-03-18', 1785, 63532, 4287, NULL, '5.0000', '4.8380', '4.8380', '22.0000', '22.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 (66805, '2022-03-18', 7612, 63533, 4287, NULL, '1.0000', '1.7300', '1.7300', '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 (66806, '2022-03-18', 1528, 63534, 4287, NULL, '1.0000', '38.6400', '38.6400', '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 (66807, '2022-03-18', 2062, 63535, 4287, 6676, '1.0000', '5.7540', '5.7540', '12.0000', '12.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 (66808, '2022-03-18', 1809, 63536, 4287, 7386, '-7.0000', '9.6000', '9.6000', '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 (66809, '2022-03-18', 1809, 63536, 4287, NULL, '8.0000', '9.6000', '9.6000', '13.5000', '13.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 (66810, '2022-03-18', 8756, 63537, 4287, 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 (66811, '2022-03-18', 2384, 63538, 4287, 12014, '1.0000', '0.4000', '0.4000', '0.7000', '0.7000', '63.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 (66812, '2022-03-18', 8982, 63539, 4287, NULL, '2.0000', '10.0000', '10.0000', '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 (66813, '2022-03-18', 1425, 63540, 4287, NULL, '1.0000', '6.4405', '6.4405', '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 (66814, '2022-03-18', 1715, 63541, 4287, 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 (66815, '2022-03-18', 2135, 63542, 4287, 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 (66816, '2022-03-18', 1839, 63543, 4287, 8734, '-24.0000', '6.1500', '6.1500', '9.5000', '9.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 (66817, '2022-03-18', 1839, 63543, 4287, NULL, '25.0000', '6.1500', '6.1500', '9.5000', '9.5000', '-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 (66818, '2022-03-18', 1910, 63544, 4287, 167, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '33.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 (66819, '2022-03-18', 2352, 63545, 4287, 3855, '-98.0000', '20.0000', '20.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 (66820, '2022-03-18', 2352, 63545, 4287, NULL, '103.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66821, '2022-03-18', 2132, 63546, 4287, 4280, '-3.0000', '21.0000', '21.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 (66822, '2022-03-18', 2132, 63546, 4287, NULL, '4.0000', '21.0000', '21.0000', '24.0000', '24.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 (66823, '2022-03-18', 3058, 63547, 4287, 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 (66824, '2022-03-18', 1307, 63548, 4287, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.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 (66825, '2022-03-18', 7954, 63549, 4287, NULL, '2.0000', '3.0000', '3.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 (66826, '2022-03-18', 2896, 63550, 4288, 18357, '2.0000', '14.0000', '14.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 (66827, '2022-03-18', 2221, 63551, 4288, 50865, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66828, '2022-03-18', 1620, 63552, 4288, 50922, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66829, '2022-03-18', 9788, 63553, 4288, 50907, '5.0000', '1.5100', '1.5100', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66830, '2022-03-18', 2259, 63554, 4288, 50870, '1.0000', '20.4604', '20.4604', '30.5000', '30.5000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66831, '2022-03-18', 8974, 63555, 4288, NULL, '1.0000', '5.4000', '5.4000', '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 (66832, '2022-03-18', 1616, 63556, 4288, 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 (66833, '2022-03-18', 8706, 63557, 4288, 49234, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66834, '2022-03-18', 2517, 63558, 4288, 7515, '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 (66835, '2022-03-18', 1488, 63559, 4288, 42962, '1.0000', '11.8182', '11.8182', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66836, '2022-03-18', 7671, 63560, 4289, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66837, '2022-03-18', 8775, 63561, 4289, 51020, '1.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66838, '2022-03-18', 9828, 63562, 4289, NULL, '1.0000', '2.9100', '2.9100', '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 (66839, '2022-03-18', 2398, 63563, 4289, 48932, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66840, '2022-03-18', 1504, 63564, 4289, 51480, '10.0000', '1.9591', '1.9591', '2.4000', '2.4000', '50.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66841, '2022-03-18', 2642, 63565, 4289, 51938, '1.0000', '9.7093', '9.7093', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66842, '2022-03-18', 9751, 63566, 4289, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66843, '2022-03-18', 1851, 63567, 4289, 51239, '1.0000', '12.8900', '12.8900', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66844, '2022-03-18', 9758, 63568, 4289, NULL, '1.0000', '3.1400', '3.1400', '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 (66845, '2022-03-18', 1511, 63569, 4289, 13749, '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 (66846, '2022-03-18', 7671, 63570, 4289, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66847, '2022-03-18', 1504, 63571, 4289, 51480, '10.0000', '1.9591', '1.9591', '2.4000', '2.4000', '50.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66848, '2022-03-18', 2454, 63572, 4289, 51387, '1.0000', '9.0840', '9.0840', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66849, '2022-03-18', 7641, 63573, 4289, NULL, '1.0000', '1.9000', '1.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 (66850, '2022-03-18', 7411, 63574, 4289, NULL, '1.0000', '1.3013', '1.3013', '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 (66851, '2022-03-18', 1935, 63575, 4289, 52160, '1.0000', '0.7957', '0.7957', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66852, '2022-03-18', 1867, 63576, 4289, 48507, '1.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '14.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66853, '2022-03-18', 2105, 63577, 4289, 52224, '3.0000', '2.4500', '2.4500', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66854, '2022-03-18', 9748, 63578, 4289, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66855, '2022-03-18', 7780, 63579, 4289, NULL, '1.0000', '2.6000', '2.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 (66856, '2022-03-18', 8746, 63580, 4289, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66857, '2022-03-18', 9695, 63581, 4289, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66858, '2022-03-18', 7658, 63582, 4289, NULL, '2.0000', '10.1500', '10.1500', '2.8000', '2.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 (66859, '2022-03-18', 9738, 63583, 4289, 52164, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66860, '2022-03-18', 1657, 63584, 4289, 19371, '2.0000', '90.0000', '90.0000', '0.6000', '0.6000', '184.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66861, '2022-03-18', 8746, 63585, 4289, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66862, '2022-03-18', 7641, 63586, 4290, NULL, '1.0000', '95.0035', '95.0035', '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 (66863, '2022-03-18', 8203, 63587, 4290, NULL, '3.0000', '29.8095', '29.8095', '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 (66864, '2022-03-18', 9742, 63588, 4290, 46267, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66865, '2022-03-18', 9448, 63589, 4290, 44049, '1.0000', '7.5200', '7.5200', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66866, '2022-03-18', 7428, 63590, 4290, 51281, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '41.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66867, '2022-03-18', 2289, 63591, 4290, NULL, '4.0000', '1.8358', '1.8358', '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 (66868, '2022-03-18', 1841, 63592, 4290, 48007, '4.0000', '0.1792', '0.1792', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66869, '2022-03-18', 1840, 63593, 4290, 48008, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66870, '2022-03-18', 7947, 63594, 4290, NULL, '5.0000', '14.4400', '14.4400', '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 (66871, '2022-03-18', 9193, 63595, 4290, NULL, '2.0000', '7.0315', '7.0315', '9.5000', '9.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 (66872, '2022-03-18', 9834, 63596, 4290, 51301, '3.0000', '1.4500', '1.4500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66873, '2022-03-18', 7799, 63597, 4290, NULL, '1.0000', '4.7214', '4.7214', '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 (66874, '2022-03-18', 8539, 63598, 4290, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '31.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66875, '2022-03-18', 8038, 63599, 4290, NULL, '1.0000', '6.4795', '6.4795', '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 (66876, '2022-03-18', 7709, 63600, 4290, NULL, '1.0000', '154.5165', '154.5165', '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 (66877, '2022-03-18', 7753, 63601, 4290, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66878, '2022-03-18', 8053, 63602, 4290, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66879, '2022-03-18', 2315, 63603, 4290, NULL, '2.0000', '0.8863', '0.8863', '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 (66880, '2022-03-18', 1837, 63604, 4290, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66881, '2022-03-18', 1935, 63605, 4290, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '152.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66882, '2022-03-18', 7317, 63606, 4290, 50636, '1.0000', '14.9972', '14.9972', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66883, '2022-03-18', 9191, 63607, 4290, 48816, '1.0000', '-7.0681', '-7.0681', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66884, '2022-03-18', 9740, 63608, 4290, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66885, '2022-03-18', 8208, 63609, 4290, NULL, '1.0000', '33.0000', '33.0000', '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 (66886, '2022-03-18', 8631, 63610, 4290, 52014, '1.0000', '5.0000', '5.0000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66887, '2022-03-18', 7720, 63611, 4290, 46017, '1.0000', '5.8333', '5.8333', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66888, '2022-03-18', 2315, 63612, 4290, NULL, '2.0000', '0.8863', '0.8863', '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 (66889, '2022-03-18', 2105, 63613, 4291, 52224, '2.0000', '2.4500', '2.4500', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66890, '2022-03-18', 7507, 63614, 4291, 39787, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '147.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66891, '2022-03-18', 7703, 63615, 4291, NULL, '2.0000', '22.9900', '22.9900', '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 (66892, '2022-03-18', 2221, 63616, 4291, 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 (66893, '2022-03-18', 1346, 63617, 4291, 24923, '5.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '19.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 (66894, '2022-03-18', 3029, 63618, 4291, NULL, '1.0000', '-4.5585', '-4.5585', '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 (66895, '2022-03-18', 1912, 63619, 4291, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66896, '2022-03-18', 8127, 63620, 4291, 48732, '2.0000', '24.5300', '24.5300', '1.2000', '1.2000', '14.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66897, '2022-03-18', 1665, 63621, 4291, 51683, '2.0000', '1.1432', '1.1432', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66898, '2022-03-18', 2135, 63622, 4291, 52324, '1.0000', '-0.2588', '-0.2588', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66899, '2022-03-18', 1668, 63623, 4291, 51486, '1.0000', '33.7602', '33.7602', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66900, '2022-03-18', 1339, 63624, 4291, 51991, '2.0000', '2.2232', '2.2232', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66901, '2022-03-18', 7671, 63625, 4291, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66902, '2022-03-18', 1322, 63626, 4291, NULL, '1.0000', '4.4000', '4.4000', '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 (66903, '2022-03-18', 9012, 63627, 4291, NULL, '1.0000', '24.0000', '24.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 (66904, '2022-03-18', 9832, 63628, 4291, NULL, '4.0000', '1.5600', '1.5600', '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 (66905, '2022-03-18', 2384, 63629, 4291, NULL, '4.0000', '0.1500', '0.1500', '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 (66906, '2022-03-18', 2250, 63630, 4291, 52341, '1.0000', '7.4592', '7.4592', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66907, '2022-03-18', 9831, 63631, 4291, NULL, '1.0000', '1.5600', '1.5600', '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 (66908, '2022-03-18', 2169, 63632, 4291, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66909, '2022-03-18', 1839, 63633, 4291, NULL, '1.0000', '-169.0668', '-169.0668', '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 (66910, '2022-03-18', 1478, 63634, 4292, 52251, '2.0000', '44.5682', '44.5682', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66911, '2022-03-18', 2285, 63635, 4293, NULL, '1.0000', '35.2503', '35.2503', '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 (66912, '2022-03-18', 2269, 63636, 4293, NULL, '2.0000', '4.2967', '4.2967', '9.5000', '9.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 (66913, '2022-03-18', 1602, 63637, 4293, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66914, '2022-03-18', 1529, 63638, 4293, 51484, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66915, '2022-03-18', 1533, 63639, 4293, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66916, '2022-03-18', 2242, 63640, 4293, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66917, '2022-03-18', 2242, 63641, 4293, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66918, '2022-03-18', 1454, 63642, 4293, 52223, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66919, '2022-03-18', 1533, 63643, 4293, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66920, '2022-03-18', 2740, 63644, 4293, NULL, '1.0000', '10.3800', '10.3800', '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 (66921, '2022-03-18', 1608, 63645, 4293, 52176, '1.0000', '4.0848', '4.0848', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66922, '2022-03-18', 1651, 63646, 4293, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66923, '2022-03-18', 7930, 63647, 4293, 45162, '1.0000', '1.3000', '1.3000', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66924, '2022-03-18', 9721, 63648, 4293, NULL, '1.0000', '11.7000', '11.7000', '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 (66925, '2022-03-18', 1602, 63649, 4293, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66926, '2022-03-18', 2169, 63650, 4293, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66927, '2022-03-18', 7415, 63651, 4293, NULL, '1.0000', '5.4200', '5.4200', '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 (66928, '2022-03-18', 2169, 63652, 4293, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66929, '2022-03-18', 7780, 63653, 4293, NULL, '1.0000', '2.6000', '2.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 (66930, '2022-03-18', 1665, 63654, 4293, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66931, '2022-03-18', 9763, 63655, 4293, 51336, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66932, '2022-03-18', 9794, 63656, 4293, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66933, '2022-03-18', 2169, 63657, 4293, 52147, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66934, '2022-03-18', 1411, 63658, 4293, 48149, '1.0000', '25.9758', '25.9758', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66935, '2022-03-18', 7671, 63659, 4293, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66936, '2022-03-18', 2657, 63660, 4293, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66937, '2022-03-18', 2660, 63661, 4293, 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 (66938, '2022-03-18', 1409, 63662, 4293, 51679, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66939, '2022-03-18', 2660, 63663, 4293, 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 (66940, '2022-03-18', 9734, 63664, 4293, 52161, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66941, '2022-03-18', 1812, 63665, 4293, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66942, '2022-03-18', 7671, 63666, 4293, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66943, '2022-03-18', 1840, 63667, 4293, NULL, '20.0000', '0.2400', '0.2400', '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 (66944, '2022-03-18', 7608, 63668, 4293, 39812, '1.0000', '6.9800', '6.9800', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66945, '2022-03-18', 2169, 63669, 4293, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66946, '2022-03-18', 2088, 63670, 4293, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66947, '2022-03-18', 2167, 63671, 4293, NULL, '1.0000', '1.7907', '1.7907', '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 (66948, '2022-03-18', 1812, 63672, 4293, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66949, '2022-03-18', 1621, 63673, 4293, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '31.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66950, '2022-03-18', 7683, 63674, 4294, NULL, '1.0000', '-25.9100', '-25.9100', '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 (66951, '2022-03-18', 1689, 63675, 4294, NULL, '1.0000', '12.9279', '12.9279', '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 (66952, '2022-03-18', 7532, 63676, 4294, 51356, '1.0000', '20.5389', '20.5389', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66953, '2022-03-18', 1904, 63677, 4295, 5442, '-33.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 (66954, '2022-03-18', 1904, 63677, 4295, NULL, '34.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (66955, '2022-03-18', 7790, 63678, 4295, NULL, '2.0000', '17.0000', '17.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 (66956, '2022-03-18', 2657, 63679, 4295, 11267, '-6.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 (66957, '2022-03-18', 2657, 63679, 4295, NULL, '8.0000', '5.4200', '5.4200', '1.0000', '1.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 (66958, '2022-03-18', 2948, 63680, 4295, NULL, '2.0000', '0.9000', '0.9000', '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 (66959, '2022-03-18', 1518, 63681, 4295, 6524, '-9.0000', '6.9000', '6.9000', '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 (66960, '2022-03-18', 1518, 63681, 4295, NULL, '10.0000', '6.9000', '6.9000', '10.0000', '10.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 (66961, '2022-03-18', 7482, 63682, 4295, NULL, '1.0000', '3.0500', '3.0500', '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 (66962, '2022-03-18', 7685, 63683, 4295, NULL, '1.0000', '31.2000', '31.2000', '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 (66963, '2022-03-18', 2754, 63684, 4295, 16504, '-4.0000', '0.0800', '0.0800', '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 (66964, '2022-03-18', 2754, 63684, 4295, NULL, '6.0000', '0.0800', '0.0800', '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 (66965, '2022-03-18', 7671, 63685, 4295, NULL, '1.0000', '15.5000', '15.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 (66966, '2022-03-18', 2660, 63686, 4295, 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 (66967, '2022-03-18', 9482, 63687, 4295, NULL, '2.0000', '0.5000', '0.5000', '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 (66968, '2022-03-18', 7814, 63688, 4295, 33790, '1.0000', '18.5000', '18.5000', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66969, '2022-03-18', 9758, 63689, 4295, NULL, '1.0000', '3.1400', '3.1400', '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 (66970, '2022-03-18', 1608, 63690, 4295, 8222, '-11.0000', '3.3500', '3.3500', '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 (66971, '2022-03-18', 1608, 63690, 4295, NULL, '12.0000', '3.3500', '3.3500', '6.0000', '6.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 (66972, '2022-03-18', 9821, 63691, 4295, NULL, '1.0000', '1.4500', '1.4500', '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 (66973, '2022-03-18', 1529, 63692, 4295, 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 (66974, '2022-03-18', 7781, 63693, 4296, NULL, '3.0000', '4.2500', '4.2500', '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 (66975, '2022-03-18', 3018, 63694, 4296, 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 (66976, '2022-03-18', 9463, 63695, 4296, 50991, '1.0000', '4.3333', '4.3333', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66977, '2022-03-18', 9098, 63696, 4296, NULL, '1.0000', '23.5884', '23.5884', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66978, '2022-03-18', 7514, 63697, 4296, NULL, '3.0000', '409.2154', '409.2154', '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 (66979, '2022-03-18', 7444, 63698, 4296, NULL, '1.0000', '2.0190', '2.0190', '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 (66980, '2022-03-18', 9275, 63699, 4296, NULL, '2.0000', '6.3000', '6.3000', '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 (66981, '2022-03-18', 7560, 63700, 4296, NULL, '1.0000', '-240202.1113', '-240202.1113', '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 (66982, '2022-03-18', 2315, 63701, 4296, NULL, '1.0000', '0.8863', '0.8863', '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 (66983, '2022-03-18', 8918, 63702, 4296, 45579, '2.0000', '4.7316', '4.7316', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66984, '2022-03-18', 8146, 63703, 4296, 46165, '1.0000', '17.3749', '17.3749', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66985, '2022-03-18', 9729, 63704, 4296, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66986, '2022-03-18', 7411, 63705, 4296, NULL, '1.0000', '1.2529', '1.2529', '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 (66987, '2022-03-18', 2945, 63706, 4296, 51000, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66988, '2022-03-18', 7514, 63707, 4296, NULL, '1.0000', '409.2154', '409.2154', '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 (66989, '2022-03-18', 8044, 63708, 4296, NULL, '1.0000', '1.5000', '1.5000', '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 (66990, '2022-03-18', 7991, 63709, 4296, NULL, '1.0000', '26.5700', '26.5700', '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 (66991, '2022-03-18', 7911, 63710, 4296, 51799, '1.0000', '3.9601', '3.9601', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66992, '2022-03-18', 7825, 63711, 4296, NULL, '1.0000', '-45.5949', '-45.5949', '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 (66993, '2022-03-18', 9750, 63712, 4296, 46931, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '47.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66994, '2022-03-18', 9508, 63713, 4296, 48016, '1.0000', '3.5995', '3.5995', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66995, '2022-03-18', 8360, 63714, 4296, 50675, '1.0000', '3.2235', '3.2235', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66996, '2022-03-18', 7704, 63715, 4296, NULL, '1.0000', '-1.5625', '-1.5625', '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 (66997, '2022-03-18', 9272, 63716, 4296, NULL, '1.0000', '3.1000', '3.1000', '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 (66998, '2022-03-18', 7548, 63717, 4296, NULL, '2.0000', '3.2042', '3.2042', '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 (66999, '2022-03-18', 7514, 63718, 4296, NULL, '1.0000', '409.2154', '409.2154', '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 (67000, '2022-03-18', 7756, 63719, 4296, NULL, '1.0000', '18.7452', '18.7452', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67001, '2022-03-18', 1967, 63720, 4296, NULL, '1.0000', '19.5900', '19.5900', '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 (67002, '2022-03-18', 7547, 63721, 4296, NULL, '2.0000', '0.0000', '0.0000', '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 (67003, '2022-03-18', 2526, 63722, 4296, NULL, '2.0000', '10.0000', '10.0000', '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 (67004, '2022-03-18', 7376, 63723, 4296, NULL, '3.0000', '141.7100', '141.7100', '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 (67005, '2022-03-18', 7527, 63724, 4296, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '90.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67006, '2022-03-18', 7674, 63725, 4296, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67007, '2022-03-18', 9729, 63726, 4296, 46181, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67008, '2022-03-18', 7411, 63727, 4296, NULL, '1.0000', '1.2529', '1.2529', '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 (67009, '2022-03-18', 7707, 63728, 4296, NULL, '1.0000', '5.7519', '5.7519', '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 (67010, '2022-03-18', 9791, 63729, 4296, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '140.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67011, '2022-03-18', 7473, 63730, 4296, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '71.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67012, '2022-03-18', 1837, 63731, 4296, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67013, '2022-03-18', 7674, 63732, 4296, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67014, '2022-03-18', 7921, 63733, 4296, NULL, '1.0000', '0.3000', '0.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 (67015, '2022-03-18', 7774, 63734, 4296, NULL, '1.0000', '0.6534', '0.6534', '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 (67016, '2022-03-18', 7444, 63735, 4296, NULL, '1.0000', '2.0190', '2.0190', '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 (67017, '2022-03-18', 7408, 63736, 4296, 50461, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67018, '2022-03-18', 8187, 63737, 4296, NULL, '3.0000', '14.3900', '14.3900', '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 (67019, '2022-03-18', 2035, 63738, 4297, 6388, '-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 (67020, '2022-03-18', 2035, 63738, 4297, 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 (67021, '2022-03-18', 8187, 63739, 4297, NULL, '1.0000', '14.3900', '14.3900', '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 (67022, '2022-03-18', 2169, 63740, 4297, 10737, '-75.0000', '3.8397', '3.8397', '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 (67023, '2022-03-18', 2169, 63740, 4297, NULL, '76.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67024, '2022-03-18', 1529, 63741, 4297, 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 (67025, '2022-03-18', 1641, 63742, 4298, 52085, '16.0000', '44.7801', '44.7801', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67026, '2022-03-18', 2105, 63743, 4298, 49524, '2.0000', '1.8750', '1.8750', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67027, '2022-03-18', 2511, 63744, 4298, 52090, '1.0000', '8.8849', '8.8849', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67028, '2022-03-18', 2169, 63745, 4298, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67029, '2022-03-18', 1828, 63746, 4298, 33003, '1.0000', '0.7300', '0.7300', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67030, '2022-03-18', 2135, 63747, 4298, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67031, '2022-03-18', 1701, 63748, 4298, 45107, '1.0000', '15.2229', '15.2229', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67032, '2022-03-18', 2990, 63749, 4298, 46050, '1.0000', '4.1906', '4.1906', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67033, '2022-03-18', 2106, 63750, 4298, 6018, '1.0000', '0.9900', '0.9900', '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 (67034, '2022-03-18', 2167, 63751, 4298, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67035, '2022-03-18', 9715, 63752, 4298, 52243, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67036, '2022-03-18', 1655, 63753, 4298, 49230, '1.0000', '37.2800', '37.2800', '49.5000', '49.5000', '1.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67037, '2022-03-18', 1602, 63754, 4298, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67038, '2022-03-18', 7790, 63755, 4298, NULL, '8.0000', '2.2000', '2.2000', '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 (67039, '2022-03-18', 8915, 63756, 4299, NULL, '1.0000', '-278.4775', '-278.4775', '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 (67040, '2022-03-18', 7558, 63757, 4299, NULL, '1.0000', '2.0704', '2.0704', '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 (67041, '2022-03-18', 9508, 63758, 4299, 48016, '1.0000', '3.5995', '3.5995', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67042, '2022-03-18', 7947, 63759, 4299, NULL, '2.0000', '14.4400', '14.4400', '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 (67043, '2022-03-18', 8359, 63760, 4299, 51787, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67044, '2022-03-18', 7608, 63761, 4299, NULL, '1.0000', '10.2344', '10.2344', '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 (67045, '2022-03-18', 7428, 63762, 4299, 51281, '5.0000', '56.1257', '56.1257', '4.5000', '4.5000', '36.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67046, '2022-03-18', 7409, 63763, 4299, 30031, '1.0000', '1.5627', '1.5627', '10.0000', '10.0000', '26.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67047, '2022-03-18', 7832, 63764, 4299, 50812, '1.0000', '12.5000', '12.5000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 418);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67048, '2022-03-18', 9734, 63765, 4299, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67049, '2022-03-18', 9732, 63766, 4299, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67050, '2022-03-18', 7917, 63767, 4299, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67051, '2022-03-18', 8740, 63768, 4300, NULL, '1.0000', '2.0000', '2.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 (67052, '2022-03-18', 1989, 63769, 4300, 33064, '1.0000', '5.1429', '5.1429', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67053, '2022-03-18', 9695, 63770, 4300, NULL, '1.0000', '4.5000', '4.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 (67054, '2022-03-18', 9831, 63771, 4300, NULL, '1.0000', '1.5600', '1.5600', '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 (67055, '2022-03-18', 9830, 63772, 4300, 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 (67056, '2022-03-18', 8187, 63773, 4300, NULL, '1.0000', '14.3900', '14.3900', '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 (67057, '2022-03-18', 7609, 63774, 4300, NULL, '1.0000', '4.3300', '4.3300', '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 (67058, '2022-03-18', 2224, 63775, 4300, 1699, '-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 (67059, '2022-03-18', 2224, 63775, 4300, NULL, '2.0000', '14.0000', '14.0000', '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 (67060, '2022-03-18', 2231, 63776, 4300, 1706, '-6.0000', '33.0000', '33.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 (67061, '2022-03-18', 2231, 63776, 4300, NULL, '7.0000', '33.0000', '33.0000', '39.0000', '39.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 (67062, '2022-03-18', 7368, 63777, 4300, NULL, '1.0000', '14.7500', '14.7500', '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 (67063, '2022-03-19', 8133, 63778, 4301, NULL, '1.0000', '-1141.7448', '-1141.7448', '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 (67064, '2022-03-19', 2169, 63779, 4301, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67065, '2022-03-19', 2893, 63780, 4301, NULL, '1.0000', '6.4400', '6.4400', '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 (67066, '2022-03-19', 2169, 63781, 4301, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67067, '2022-03-19', 2136, 63782, 4301, 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 (67068, '2022-03-19', 2221, 63783, 4301, 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 (67069, '2022-03-19', 7671, 63784, 4301, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67070, '2022-03-19', 9798, 63785, 4301, 51218, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67071, '2022-03-19', 9794, 63786, 4301, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67072, '2022-03-19', 1863, 63787, 4301, 52353, '2.0000', '1.3923', '1.3923', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67073, '2022-03-19', 8746, 63788, 4301, 51022, '3.0000', '3.0000', '3.0000', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67074, '2022-03-19', 1856, 63789, 4301, NULL, '1.0000', '5.5569', '5.5569', '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 (67075, '2022-03-19', 2888, 63790, 4301, 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 (67076, '2022-03-19', 2327, 63791, 4301, 49257, '2.0000', '3.8469', '3.8469', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67077, '2022-03-19', 2293, 63792, 4301, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67078, '2022-03-19', 2295, 63793, 4301, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67079, '2022-03-19', 2083, 63794, 4301, 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 (67080, '2022-03-19', 2167, 63795, 4301, NULL, '1.0000', '1.7907', '1.7907', '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 (67081, '2022-03-19', 9470, 63796, 4302, NULL, '1.0000', '6.1468', '6.1468', '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 (67082, '2022-03-19', 9828, 63797, 4303, NULL, '1.0000', '2.9100', '2.9100', '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 (67083, '2022-03-19', 9832, 63798, 4303, NULL, '1.0000', '1.5600', '1.5600', '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 (67084, '2022-03-19', 8775, 63799, 4303, 51020, '1.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67085, '2022-03-19', 8746, 63800, 4303, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67086, '2022-03-19', 9788, 63801, 4304, 51672, '2.0000', '1.5897', '1.5897', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67087, '2022-03-19', 9592, 63802, 4304, 48715, '17.0000', '3.2000', '3.2000', '2.1000', '2.1000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67088, '2022-03-19', 2657, 63803, 4305, 49178, '1.0000', '0.5900', '0.5900', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67089, '2022-03-19', 2315, 63804, 4305, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '178.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67090, '2022-03-19', 2759, 63805, 4305, 48758, '1.0000', '4.1932', '4.1932', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67091, '2022-03-19', 2761, 63806, 4305, 52241, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67092, '2022-03-19', 8595, 63807, 4306, NULL, '1.0000', '4.9000', '4.9000', '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 (67093, '2022-03-19', 2072, 63808, 4306, 5579, '-2.0000', '8.1200', '8.1200', '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 (67094, '2022-03-19', 2072, 63808, 4306, NULL, '3.0000', '8.1200', '8.1200', '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 (67095, '2022-03-19', 2076, 63809, 4306, 18876, '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 (67096, '2022-03-19', 1694, 63810, 4306, 10813, '-3.0000', '7.1900', '7.1900', '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 (67097, '2022-03-19', 1694, 63810, 4306, NULL, '4.0000', '7.1900', '7.1900', '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 (67098, '2022-03-19', 2847, 63811, 4307, NULL, '1.0000', '13.8800', '13.8800', '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 (67099, '2022-03-19', 8927, 63812, 4308, NULL, '3.0000', '36.0000', '36.0000', '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 (67100, '2022-03-19', 7514, 63813, 4308, NULL, '1.0000', '932.5375', '932.5375', '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 (67101, '2022-03-19', 7457, 63814, 4308, 46665, '2.0000', '3.6088', '3.6088', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67102, '2022-03-19', 7674, 63815, 4308, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67103, '2022-03-19', 2233, 63816, 4308, 50685, '1.0000', '17.5683', '17.5683', '29.5000', '29.5000', '4.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67104, '2022-03-19', 8387, 63817, 4308, NULL, '1.0000', '14.5000', '14.5000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67105, '2022-03-19', 7411, 63818, 4308, NULL, '1.0000', '1.2529', '1.2529', '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 (67106, '2022-03-19', 7473, 63819, 4308, 51825, '3.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '68.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67107, '2022-03-19', 7680, 63820, 4308, NULL, '1.0000', '-5.9118', '-5.9118', '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 (67108, '2022-03-19', 7630, 63821, 4308, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (67109, '2022-03-19', 2812, 63822, 4308, 46940, '1.0000', '98.5600', '98.5600', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67110, '2022-03-19', 7725, 63823, 4308, NULL, '1.0000', '6.2371', '6.2371', '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 (67111, '2022-03-19', 9179, 63824, 4308, NULL, '1.0000', '12.0000', '12.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 (67112, '2022-03-19', 8912, 63825, 4308, NULL, '10.0000', '2.1000', '2.1000', '8.0000', '8.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 (67113, '2022-03-19', 7411, 63826, 4308, NULL, '3.0000', '1.2529', '1.2529', '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 (67114, '2022-03-19', 9747, 63827, 4308, 50667, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67115, '2022-03-19', 7556, 63828, 4308, 47907, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67116, '2022-03-19', 9316, 63829, 4308, 52456, '2.0000', '8.7300', '8.7300', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67117, '2022-03-19', 9575, 63830, 4308, 50398, '2.0000', '13.5000', '13.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67118, '2022-03-19', 7671, 63831, 4308, NULL, '1.0000', '76.3606', '76.3606', '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 (67119, '2022-03-19', 9715, 63832, 4308, 50656, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67120, '2022-03-19', 7675, 63833, 4308, NULL, '3.0000', '84.8590', '84.8590', '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 (67121, '2022-03-19', 8308, 63834, 4308, NULL, '1.0000', '25.0620', '25.0620', '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 (67122, '2022-03-19', 9463, 63835, 4308, 50991, '1.0000', '4.3333', '4.3333', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67123, '2022-03-19', 2098, 63836, 4308, 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 (67124, '2022-03-19', 7712, 63837, 4308, NULL, '1.0000', '-245.5125', '-245.5125', '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 (67125, '2022-03-19', 7473, 63838, 4308, 51825, '5.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '66.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67126, '2022-03-19', 7672, 63839, 4308, NULL, '1.0000', '3.8200', '3.8200', '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 (67127, '2022-03-19', 1498, 63840, 4308, 50696, '2.0000', '0.3942', '0.3942', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67128, '2022-03-19', 7913, 63841, 4308, NULL, '2.0000', '0.4833', '0.4833', '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 (67129, '2022-03-19', 9272, 63842, 4308, NULL, '1.0000', '3.1000', '3.1000', '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 (67130, '2022-03-19', 9581, 63843, 4308, 40431, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67131, '2022-03-19', 8279, 63844, 4308, 42781, '1.0000', '7.4044', '7.4044', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67132, '2022-03-19', 7428, 63845, 4308, 51281, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '34.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67133, '2022-03-19', 1980, 63846, 4308, 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 (67134, '2022-03-19', 9734, 63847, 4308, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67135, '2022-03-19', 7890, 63848, 4308, NULL, '1.0000', '-45.5000', '-45.5000', '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 (67136, '2022-03-19', 7973, 63849, 4308, 48258, '1.0000', '15.9500', '15.9500', '54.5000', '54.5000', '0.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67137, '2022-03-19', 7354, 63850, 4308, NULL, '1.0000', '18.0000', '18.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 (67138, '2022-03-19', 9852, 63851, 4308, 51843, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67139, '2022-03-19', 8308, 63852, 4308, NULL, '1.0000', '25.0620', '25.0620', '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 (67140, '2022-03-19', 7362, 63853, 4308, 40441, '1.0000', '3.4375', '3.4375', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67141, '2022-03-19', 7781, 63854, 4308, NULL, '3.0000', '4.2500', '4.2500', '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 (67142, '2022-03-19', 1420, 63855, 4308, 50809, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 418);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67143, '2022-03-19', 7524, 63856, 4308, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67144, '2022-03-19', 9423, 63857, 4308, NULL, '1.0000', '1.6000', '1.6000', '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 (67145, '2022-03-19', 9274, 63858, 4308, NULL, '1.0000', '3.5638', '3.5638', '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 (67146, '2022-03-19', 1841, 63859, 4308, 48007, '4.0000', '0.1792', '0.1792', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67147, '2022-03-19', 2289, 63860, 4308, NULL, '4.0000', '2.5688', '2.5688', '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 (67148, '2022-03-19', 8288, 63861, 4308, NULL, '1.0000', '1.1923', '1.1923', '1.8000', '1.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 (67149, '2022-03-19', 9729, 63862, 4308, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67150, '2022-03-19', 8456, 63863, 4308, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67151, '2022-03-19', 8077, 63864, 4308, 52454, '1.0000', '4.9986', '4.9986', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67152, '2022-03-19', 7967, 63865, 4308, 50451, '1.0000', '5.5335', '5.5335', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67153, '2022-03-19', 1805, 63866, 4308, NULL, '1.0000', '4.9973', '4.9973', '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 (67154, '2022-03-19', 8342, 63867, 4308, NULL, '1.0000', '8.1100', '8.1100', '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 (67155, '2022-03-19', 9252, 63868, 4308, NULL, '2.0000', '8.7771', '8.7771', '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 (67156, '2022-03-19', 1450, 63869, 4308, 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 (67157, '2022-03-19', 1411, 63870, 4309, NULL, '1.0000', '25.9000', '25.9000', '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 (67158, '2022-03-19', 2020, 63871, 4309, 10164, '-15.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 (67159, '2022-03-19', 2020, 63871, 4309, NULL, '16.0000', '7.5000', '7.5000', '10.0000', '10.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 (67160, '2022-03-19', 9520, 63872, 4309, 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 (67161, '2022-03-19', 1528, 63873, 4309, NULL, '1.0000', '38.6400', '38.6400', '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 (67162, '2022-03-19', 2229, 63874, 4309, 1704, '-5.0000', '24.5000', '24.5000', '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 (67163, '2022-03-19', 2229, 63874, 4309, NULL, '6.0000', '24.5000', '24.5000', '29.0000', '29.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 (67164, '2022-03-19', 8706, 63875, 4309, NULL, '1.0000', '3.8000', '3.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 (67165, '2022-03-19', 2096, 63876, 4309, NULL, '1.0000', '1.5500', '1.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 (67166, '2022-03-19', 8183, 63877, 4309, NULL, '1.0000', '81.9100', '81.9100', '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 (67167, '2022-03-19', 2379, 63878, 4309, 4032, '-52.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 (67168, '2022-03-19', 2379, 63878, 4309, NULL, '53.0000', '1.5900', '1.5900', '2.5000', '2.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 (67169, '2022-03-19', 1837, 63879, 4309, 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 (67170, '2022-03-19', 1602, 63880, 4309, 5897, '-117.0000', '6.7859', '6.7859', '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 (67171, '2022-03-19', 1602, 63880, 4309, NULL, '118.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-118.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67172, '2022-03-19', 8596, 63881, 4309, 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 (67173, '2022-03-19', 2169, 63882, 4309, 10737, '-76.0000', '3.8397', '3.8397', '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 (67174, '2022-03-19', 2169, 63882, 4309, NULL, '77.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67175, '2022-03-19', 2108, 63883, 4309, 1052, '1.0000', '4.7500', '4.7500', '6.0000', '6.0000', '12.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 (67176, '2022-03-19', 1804, 63884, 4309, 4916, '-7.0000', '4.2500', '4.2500', '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 (67177, '2022-03-19', 1804, 63884, 4309, NULL, '8.0000', '4.2500', '4.2500', '6.5000', '6.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 (67178, '2022-03-19', 1855, 63885, 4309, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '13.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 (67179, '2022-03-19', 1533, 63886, 4309, 10381, '-9.0000', '2.5917', '2.5917', '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 (67180, '2022-03-19', 1533, 63886, 4309, NULL, '10.0000', '2.5917', '2.5917', '5.5000', '5.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 (67181, '2022-03-19', 9794, 63887, 4309, NULL, '1.0000', '1.0800', '1.0800', '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 (67182, '2022-03-19', 1699, 63888, 4309, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '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 (67183, '2022-03-19', 2821, 63889, 4309, 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 (67184, '2022-03-19', 2237, 63890, 4309, 2781, '-46.0000', '1.0600', '1.0600', '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 (67185, '2022-03-19', 2237, 63890, 4309, NULL, '47.0000', '1.0600', '1.0600', '2.5000', '2.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 (67186, '2022-03-19', 9732, 63891, 4309, 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 (67187, '2022-03-19', 1342, 63892, 4309, 11264, '-10.0000', '6.8074', '6.8074', '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 (67188, '2022-03-19', 1342, 63892, 4309, NULL, '11.0000', '6.8074', '6.8074', '8.0000', '8.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 (67189, '2022-03-19', 1651, 63893, 4309, 3222, '-50.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 (67190, '2022-03-19', 1651, 63893, 4309, NULL, '51.0000', '6.7039', '6.7039', '10.5000', '10.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 (67191, '2022-03-19', 1499, 63894, 4309, NULL, '3.0000', '0.4100', '0.4100', '0.6000', '0.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 (67192, '2022-03-19', 2169, 63895, 4309, 10737, '-76.0000', '3.8397', '3.8397', '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 (67193, '2022-03-19', 2169, 63895, 4309, NULL, '77.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67194, '2022-03-19', 1666, 63896, 4309, 3236, '-22.0000', '2.7100', '2.7100', '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 (67195, '2022-03-19', 1666, 63896, 4309, NULL, '23.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-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 (67196, '2022-03-19', 2858, 63897, 4309, 17772, '-55.0000', '1.0000', '1.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 (67197, '2022-03-19', 2858, 63897, 4309, NULL, '56.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67198, '2022-03-19', 1387, 63898, 4310, NULL, '1.0000', '10.5068', '10.5068', '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 (67199, '2022-03-19', 2858, 63899, 4311, 17772, '-56.0000', '1.0000', '1.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 (67200, '2022-03-19', 2858, 63899, 4311, NULL, '57.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67201, '2022-03-19', 7593, 63900, 4312, 50676, '1.0000', '2.6945', '2.6945', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67202, '2022-03-19', 1331, 63901, 4312, 52469, '1.0000', '120.9730', '120.9730', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67203, '2022-03-19', 7636, 63902, 4312, NULL, '10.0000', '11.8700', '11.8700', '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 (67204, '2022-03-19', 7333, 63903, 4312, NULL, '1.0000', '13.5000', '13.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 (67205, '2022-03-19', 8032, 63904, 4312, 50374, '1.0000', '6.2640', '6.2640', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67206, '2022-03-19', 7453, 63905, 4312, 51821, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67207, '2022-03-19', 7781, 63906, 4312, NULL, '3.0000', '4.2500', '4.2500', '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 (67208, '2022-03-19', 2315, 63907, 4312, NULL, '5.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (67209, '2022-03-19', 2965, 63908, 4312, NULL, '1.0000', '-7.9600', '-7.9600', '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 (67210, '2022-03-19', 8915, 63909, 4312, NULL, '1.0000', '-278.4775', '-278.4775', '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 (67211, '2022-03-19', 7524, 63910, 4312, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67212, '2022-03-19', 7622, 63911, 4312, 52448, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67213, '2022-03-19', 8061, 63912, 4312, NULL, '1.0000', '113.6000', '113.6000', '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 (67214, '2022-03-19', 7524, 63913, 4312, 46661, '1.0000', '6.3550', '6.3550', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67215, '2022-03-19', 7804, 63914, 4312, 45340, '3.0000', '0.6529', '0.6529', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67216, '2022-03-19', 8677, 63915, 4312, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67217, '2022-03-19', 9393, 63916, 4312, NULL, '1.0000', '15.0000', '15.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 (67218, '2022-03-19', 9734, 63917, 4312, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67219, '2022-03-19', 8547, 63918, 4312, 39596, '1.0000', '7.7333', '7.7333', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67220, '2022-03-19', 9584, 63919, 4313, 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 (67221, '2022-03-19', 3025, 63920, 4313, NULL, '1.0000', '1.8000', '1.8000', '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 (67222, '2022-03-19', 7743, 63921, 4314, NULL, '2.0000', '419203.7668', '419203.7668', '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 (67223, '2022-03-19', 2315, 63922, 4314, NULL, '1.0000', '0.8863', '0.8863', '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 (67224, '2022-03-19', 7518, 63923, 4315, NULL, '2.0000', '-914.6441', '-914.6441', '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 (67225, '2022-03-19', 7457, 63924, 4315, 46665, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67226, '2022-03-19', 7457, 63924, 4315, 30064, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '70.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67227, '2022-03-19', 7524, 63925, 4315, NULL, '1.0000', '6.3550', '6.3550', '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 (67228, '2022-03-19', 8607, 63926, 4315, 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 (67229, '2022-03-19', 1665, 63927, 4316, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67230, '2022-03-19', 2643, 63928, 4316, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '25.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67231, '2022-03-19', 2108, 63929, 4316, NULL, '1.0000', '8.6167', '8.6167', '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 (67232, '2022-03-19', 2344, 63930, 4316, NULL, '1.0000', '19.4201', '19.4201', '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 (67233, '2022-03-19', 9758, 63931, 4316, NULL, '1.0000', '3.1400', '3.1400', '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 (67234, '2022-03-19', 1912, 63932, 4316, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67235, '2022-03-19', 1760, 63933, 4316, NULL, '1.0000', '1.5900', '1.5900', '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 (67236, '2022-03-19', 9813, 63934, 4316, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67237, '2022-03-19', 9758, 63935, 4316, NULL, '1.0000', '3.1400', '3.1400', '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 (67238, '2022-03-19', 2242, 63936, 4316, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67239, '2022-03-19', 2299, 63937, 4316, 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 (67240, '2022-03-19', 8477, 63938, 4316, NULL, '1.0000', '12.2000', '12.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 (67241, '2022-03-19', 1912, 63939, 4316, 51315, '3.0000', '0.6218', '0.6218', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67242, '2022-03-19', 7411, 63940, 4316, NULL, '2.0000', '1.3013', '1.3013', '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 (67243, '2022-03-19', 9834, 63941, 4316, 51659, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67244, '2022-03-19', 8710, 63942, 4316, NULL, '1.0000', '10.9000', '10.9000', '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 (67245, '2022-03-19', 1499, 63943, 4316, 52148, '1.0000', '0.3747', '0.3747', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67246, '2022-03-19', 2259, 63944, 4316, 52218, '1.0000', '22.7000', '22.7000', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67247, '2022-03-19', 1946, 63945, 4316, NULL, '1.0000', '1.2265', '1.2265', '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 (67248, '2022-03-19', 1715, 63946, 4316, 48633, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67249, '2022-03-19', 1646, 63947, 4316, 52149, '1.0000', '5.3761', '5.3761', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67250, '2022-03-19', 2237, 63948, 4316, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67251, '2022-03-19', 8170, 63949, 4316, NULL, '1.0000', '5.7500', '5.7500', '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 (67252, '2022-03-19', 2640, 63950, 4316, NULL, '1.0000', '7.0400', '7.0400', '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 (67253, '2022-03-19', 1912, 63951, 4316, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67254, '2022-03-19', 9579, 63952, 4316, 51028, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67255, '2022-03-19', 2269, 63953, 4316, NULL, '1.0000', '4.2967', '4.2967', '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 (67256, '2022-03-19', 2965, 63954, 4316, NULL, '1.0000', '6.8290', '6.8290', '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 (67257, '2022-03-19', 9740, 63955, 4316, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67258, '2022-03-19', 9831, 63956, 4316, NULL, '4.0000', '1.5600', '1.5600', '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 (67259, '2022-03-19', 9832, 63957, 4316, NULL, '2.0000', '1.5600', '1.5600', '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 (67260, '2022-03-19', 2384, 63958, 4316, NULL, '10.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (67261, '2022-03-19', 1583, 63959, 4316, 49618, '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 (67262, '2022-03-19', 7415, 63960, 4316, NULL, '1.0000', '5.4200', '5.4200', '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 (67263, '2022-03-19', 7411, 63961, 4316, NULL, '2.0000', '1.3013', '1.3013', '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 (67264, '2022-03-19', 2169, 63962, 4316, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67265, '2022-03-19', 7530, 63963, 4316, 51200, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67266, '2022-03-19', 2344, 63964, 4316, NULL, '1.0000', '19.4201', '19.4201', '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 (67267, '2022-03-19', 7411, 63965, 4316, NULL, '1.0000', '1.3013', '1.3013', '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 (67268, '2022-03-19', 2169, 63966, 4316, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67269, '2022-03-19', 2452, 63967, 4316, NULL, '1.0000', '2.5000', '2.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 (67270, '2022-03-19', 8133, 63968, 4316, NULL, '1.0000', '-1141.7448', '-1141.7448', '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 (67271, '2022-03-19', 1884, 63969, 4316, NULL, '1.0000', '-0.4104', '-0.4104', '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 (67272, '2022-03-19', 2761, 63970, 4316, 52336, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67273, '2022-03-19', 8740, 63971, 4316, NULL, '1.0000', '1.9965', '1.9965', '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 (67274, '2022-03-19', 7514, 63972, 4316, NULL, '2.0000', '2.2500', '2.2500', '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 (67275, '2022-03-19', 7482, 63973, 4316, NULL, '1.0000', '2.5019', '2.5019', '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 (67276, '2022-03-19', 9834, 63974, 4316, 51659, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67277, '2022-03-19', 1628, 63975, 4316, 51671, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67278, '2022-03-19', 1311, 63976, 4316, 52210, '4.0000', '0.3700', '0.3700', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67279, '2022-03-19', 1912, 63977, 4316, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67280, '2022-03-19', 1819, 63978, 4316, 52335, '1.0000', '6.7748', '6.7748', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67281, '2022-03-19', 2135, 63979, 4316, 52324, '1.0000', '-0.2588', '-0.2588', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67282, '2022-03-19', 2982, 63980, 4316, 22542, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '10.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 (67283, '2022-03-19', 1672, 63981, 4316, 47106, '2.0000', '3.0458', '3.0458', '4.2000', '4.2000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67284, '2022-03-19', 1672, 63981, 4316, NULL, '12.0000', '3.0458', '3.0458', '4.2000', '4.2000', '-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 (67285, '2022-03-19', 7612, 63982, 4316, NULL, '2.0000', '1.7300', '1.7300', '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 (67286, '2022-03-19', 8677, 63983, 4316, NULL, '2.0000', '292.4641', '292.4641', '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 (67287, '2022-03-19', 1307, 63984, 4316, NULL, '1.0000', '-0.0521', '-0.0521', '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 (67288, '2022-03-19', 1665, 63985, 4316, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67289, '2022-03-19', 7411, 63986, 4316, NULL, '1.0000', '1.3013', '1.3013', '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 (67290, '2022-03-19', 9482, 63987, 4316, NULL, '2.0000', '0.5000', '0.5000', '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 (67291, '2022-03-19', 1905, 63988, 4316, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67292, '2022-03-19', 7911, 63989, 4316, NULL, '1.0000', '4.3700', '4.3700', '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 (67293, '2022-03-19', 1677, 63990, 4316, 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 (67294, '2022-03-19', 1856, 63991, 4316, NULL, '1.0000', '5.5569', '5.5569', '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 (67295, '2022-03-19', 9758, 63992, 4316, NULL, '1.0000', '3.1400', '3.1400', '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 (67296, '2022-03-19', 1665, 63993, 4316, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67297, '2022-03-19', 2057, 63994, 4316, 33373, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67298, '2022-03-19', 9758, 63995, 4316, NULL, '1.0000', '3.1400', '3.1400', '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 (67299, '2022-03-19', 2135, 63996, 4316, 52324, '1.0000', '-0.2588', '-0.2588', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67300, '2022-03-19', 2135, 63996, 4316, NULL, '1.0000', '-0.2588', '-0.2588', '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 (67301, '2022-03-20', 9750, 63997, 4317, NULL, '1.0000', '3.3000', '3.3000', '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 (67302, '2022-03-20', 1342, 63998, 4317, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67303, '2022-03-20', 2169, 63999, 4317, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67304, '2022-03-20', 2379, 64000, 4317, NULL, '1.0000', '0.2954', '0.2954', '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 (67305, '2022-03-20', 1872, 64001, 4317, 51666, '1.0000', '8.9169', '8.9169', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67306, '2022-03-20', 2302, 64002, 4317, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67307, '2022-03-20', 1411, 64003, 4317, 45167, '1.0000', '25.9758', '25.9758', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67308, '2022-03-20', 2567, 64004, 4317, 51674, '1.0000', '32.7331', '32.7331', '39.0000', '39.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67309, '2022-03-20', 9470, 64005, 4317, NULL, '1.0000', '6.1468', '6.1468', '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 (67310, '2022-03-20', 7805, 64006, 4317, NULL, '6.0000', '2.1800', '2.1800', '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 (67311, '2022-03-20', 2775, 64007, 4317, 48626, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67312, '2022-03-20', 2643, 64008, 4317, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '24.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67313, '2022-03-20', 2617, 64009, 4317, NULL, '3.0000', '4.4000', '4.4000', '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 (67314, '2022-03-20', 9748, 64010, 4317, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67315, '2022-03-20', 7411, 64011, 4317, NULL, '2.0000', '1.3013', '1.3013', '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 (67316, '2022-03-20', 1867, 64012, 4317, 48507, '2.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '12.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67317, '2022-03-20', 9758, 64013, 4317, NULL, '1.0000', '3.1400', '3.1400', '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 (67318, '2022-03-20', 2315, 64014, 4317, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '78.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67319, '2022-03-20', 8677, 64015, 4317, NULL, '2.0000', '292.4641', '292.4641', '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 (67320, '2022-03-20', 3067, 64016, 4317, 25025, '2.0000', '0.7000', '0.7000', '0.5000', '0.5000', '21.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 (67321, '2022-03-20', 7459, 64017, 4317, NULL, '7.0000', '-6.1729', '-6.1729', '3.0000', '3.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 (67322, '2022-03-20', 7953, 64018, 4317, NULL, '1.0000', '6.0000', '6.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 (67323, '2022-03-20', 7411, 64019, 4317, NULL, '1.0000', '1.3013', '1.3013', '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 (67324, '2022-03-20', 1812, 64020, 4317, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67325, '2022-03-20', 9695, 64021, 4317, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67326, '2022-03-20', 9747, 64022, 4317, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67327, '2022-03-20', 2169, 64023, 4317, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67328, '2022-03-20', 2315, 64024, 4317, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '77.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67329, '2022-03-20', 7802, 64025, 4317, NULL, '3.0000', '0.9200', '0.9200', '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 (67330, '2022-03-20', 9758, 64026, 4317, NULL, '1.0000', '3.1400', '3.1400', '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 (67331, '2022-03-20', 7762, 64027, 4317, NULL, '1.0000', '5.1000', '5.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 (67332, '2022-03-20', 7641, 64028, 4318, NULL, '1.0000', '1.9000', '1.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 (67333, '2022-03-20', 1851, 64029, 4318, 51239, '1.0000', '12.8900', '12.8900', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67334, '2022-03-20', 9482, 64030, 4318, NULL, '2.0000', '0.5000', '0.5000', '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 (67335, '2022-03-20', 1339, 64031, 4318, 51991, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67336, '2022-03-20', 1528, 64032, 4318, 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 (67337, '2022-03-20', 1571, 64033, 4318, 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 (67338, '2022-03-20', 2250, 64034, 4318, 52341, '1.0000', '7.4592', '7.4592', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67339, '2022-03-20', 9815, 64035, 4318, 50255, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '13.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67340, '2022-03-20', 8952, 64036, 4318, 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 (67341, '2022-03-20', 9213, 64037, 4318, NULL, '1.0000', '5.5090', '5.5090', '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 (67342, '2022-03-20', 9831, 64038, 4318, NULL, '1.0000', '1.5600', '1.5600', '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 (67343, '2022-03-20', 2965, 64039, 4318, NULL, '1.0000', '6.8290', '6.8290', '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 (67344, '2022-03-20', 9832, 64040, 4318, NULL, '1.0000', '1.5600', '1.5600', '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 (67345, '2022-03-20', 1987, 64041, 4318, 49605, '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 (67346, '2022-03-20', 8740, 64042, 4318, NULL, '1.0000', '1.9965', '1.9965', '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 (67347, '2022-03-20', 2315, 64043, 4319, 49255, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '73.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67348, '2022-03-20', 8328, 64044, 4319, NULL, '1.0000', '8.1000', '8.1000', '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 (67349, '2022-03-20', 2511, 64045, 4319, 48509, '1.0000', '8.8000', '8.8000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67350, '2022-03-20', 7514, 64046, 4319, NULL, '3.0000', '2.2500', '2.2500', '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 (67351, '2022-03-20', 2169, 64047, 4319, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67352, '2022-03-20', 2965, 64048, 4319, NULL, '1.0000', '6.8290', '6.8290', '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 (67353, '2022-03-20', 8775, 64049, 4319, 51020, '1.0000', '-1.2714', '-1.2714', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67354, '2022-03-20', 1872, 64050, 4319, 51666, '1.0000', '8.9169', '8.9169', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67355, '2022-03-20', 9416, 64051, 4320, 50298, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67356, '2022-03-20', 7428, 64052, 4320, 51281, '5.0000', '56.1257', '56.1257', '4.5000', '4.5000', '29.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67357, '2022-03-20', 9734, 64053, 4320, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67358, '2022-03-20', 7848, 64054, 4320, NULL, '1.0000', '-29.7778', '-29.7778', '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 (67359, '2022-03-20', 7885, 64055, 4320, NULL, '1.0000', '-3877.8152', '-3877.8152', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67360, '2022-03-20', 8188, 64056, 4320, NULL, '1.0000', '-7.7250', '-7.7250', '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 (67361, '2022-03-20', 7524, 64057, 4320, NULL, '1.0000', '6.3550', '6.3550', '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 (67362, '2022-03-20', 8384, 64058, 4320, 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 (67363, '2022-03-20', 7526, 64059, 4320, NULL, '1.0000', '27.7600', '27.7600', '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 (67364, '2022-03-20', 9151, 64060, 4320, 51790, '1.0000', '9.7000', '9.7000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67365, '2022-03-20', 1976, 64061, 4320, 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 (67366, '2022-03-20', 7724, 64062, 4320, 52027, '1.0000', '9.7900', '9.7900', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67367, '2022-03-20', 7719, 64063, 4320, 52008, '2.0000', '7.0021', '7.0021', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67368, '2022-03-20', 7719, 64063, 4320, NULL, '1.0000', '7.0021', '7.0021', '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 (67369, '2022-03-20', 8154, 64064, 4320, NULL, '2.0000', '12.3000', '12.3000', '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 (67370, '2022-03-20', 9852, 64065, 4320, 51843, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67371, '2022-03-20', 8230, 64066, 4320, NULL, '1.0000', '-28.3333', '-28.3333', '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 (67372, '2022-03-20', 1918, 64067, 4320, NULL, '1.0000', '6.0500', '6.0500', '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 (67373, '2022-03-20', 9505, 64068, 4320, NULL, '1.0000', '77.0000', '77.0000', '102.0000', '102.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67374, '2022-03-20', 7915, 64069, 4320, NULL, '1.0000', '2.8000', '2.8000', '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 (67375, '2022-03-20', 7518, 64070, 4320, NULL, '2.0000', '-914.6441', '-914.6441', '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 (67376, '2022-03-20', 7598, 64071, 4320, NULL, '1.0000', '1.2800', '1.2800', '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 (67377, '2022-03-20', 8200, 64072, 4320, NULL, '1.0000', '-250802.5934', '-250802.5934', '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 (67378, '2022-03-20', 8331, 64073, 4320, NULL, '1.0000', '29.3500', '29.3500', '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 (67379, '2022-03-20', 7411, 64074, 4320, NULL, '2.0000', '1.2529', '1.2529', '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 (67380, '2022-03-20', 7810, 64075, 4320, NULL, '1.0000', '12.0714', '12.0714', '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 (67381, '2022-03-20', 2001, 64076, 4320, 49441, '1.0000', '3.3333', '3.3333', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67382, '2022-03-20', 7473, 64077, 4320, 51825, '10.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '53.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67383, '2022-03-20', 7703, 64078, 4320, NULL, '2.0000', '102.7757', '102.7757', '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 (67384, '2022-03-20', 9639, 64079, 4320, 50474, '1.0000', '29.2000', '29.2000', '38.5000', '38.5000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67385, '2022-03-20', 7728, 64080, 4320, 52025, '1.0000', '1.8799', '1.8799', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67386, '2022-03-20', 8300, 64081, 4320, NULL, '1.0000', '7.4300', '7.4300', '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 (67387, '2022-03-20', 1557, 64082, 4320, 51255, '1.0000', '7.9200', '7.9200', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67388, '2022-03-20', 8324, 64083, 4320, 52018, '1.0000', '5.0011', '5.0011', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67389, '2022-03-20', 8188, 64084, 4320, NULL, '1.0000', '-7.7250', '-7.7250', '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 (67390, '2022-03-20', 2380, 64085, 4320, 48031, '1.0000', '15.3780', '15.3780', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67391, '2022-03-20', 8548, 64086, 4320, NULL, '1.0000', '12.0000', '12.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 (67392, '2022-03-20', 2710, 64087, 4320, NULL, '1.0000', '40.3000', '40.3000', '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 (67393, '2022-03-20', 7728, 64088, 4320, 52025, '1.0000', '1.8799', '1.8799', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67394, '2022-03-20', 3001, 64089, 4320, NULL, '2.0000', '1.5000', '1.5000', '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 (67395, '2022-03-20', 2315, 64090, 4320, NULL, '1.0000', '0.8863', '0.8863', '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 (67396, '2022-03-20', 7753, 64091, 4320, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67397, '2022-03-20', 7482, 64092, 4320, NULL, '1.0000', '3.3336', '3.3336', '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 (67398, '2022-03-20', 7414, 64093, 4320, 48804, '2.0000', '18.2100', '18.2100', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67399, '2022-03-20', 8698, 64094, 4320, NULL, '1.0000', '2.0000', '2.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 (67400, '2022-03-20', 7411, 64095, 4320, NULL, '2.0000', '1.2529', '1.2529', '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 (67401, '2022-03-20', 1904, 64096, 4320, 52451, '2.0000', '260.0934', '260.0934', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67402, '2022-03-20', 7491, 64097, 4320, NULL, '1.0000', '4.8666', '4.8666', '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 (67403, '2022-03-20', 9028, 64098, 4320, 45777, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67404, '2022-03-20', 2315, 64099, 4320, NULL, '2.0000', '0.8863', '0.8863', '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 (67405, '2022-03-20', 7744, 64100, 4320, 51798, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67406, '2022-03-20', 7744, 64100, 4320, NULL, '1.0000', '2.7200', '2.7200', '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 (67407, '2022-03-20', 1501, 64101, 4320, 50484, '1.0000', '2.2898', '2.2898', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67408, '2022-03-20', 7719, 64102, 4320, 52008, '1.0000', '7.0021', '7.0021', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67409, '2022-03-20', 2959, 64103, 4320, 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 (67410, '2022-03-20', 7514, 64104, 4320, NULL, '1.0000', '932.5375', '932.5375', '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 (67411, '2022-03-20', 2891, 64105, 4320, 51807, '1.0000', '9.4862', '9.4862', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67412, '2022-03-20', 9204, 64106, 4321, NULL, '1.0000', '14.1514', '14.1514', '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 (67413, '2022-03-20', 9618, 64107, 4321, 39810, '1.0000', '3.7500', '3.7500', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67414, '2022-03-20', 7459, 64108, 4321, NULL, '10.0000', '-6.1729', '-6.1729', '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 (67415, '2022-03-20', 2740, 64109, 4321, NULL, '1.0000', '10.3800', '10.3800', '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 (67416, '2022-03-20', 1785, 64110, 4321, 51303, '1.0000', '15.9818', '15.9818', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67417, '2022-03-20', 7802, 64111, 4321, NULL, '3.0000', '0.9200', '0.9200', '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 (67418, '2022-03-20', 9695, 64112, 4321, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67419, '2022-03-20', 1330, 64113, 4322, 19334, '1.0000', '2.8000', '2.8000', '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 (67420, '2022-03-20', 7328, 64114, 4322, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (67421, '2022-03-20', 2289, 64115, 4322, NULL, '1.0000', '0.2222', '0.2222', '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 (67422, '2022-03-20', 2169, 64116, 4322, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67423, '2022-03-20', 1641, 64117, 4322, 51481, '3.0000', '1.3209', '1.3209', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67424, '2022-03-20', 2821, 64118, 4322, 52333, '1.0000', '-1.4366', '-1.4366', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67425, '2022-03-20', 2221, 64119, 4322, 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 (67426, '2022-03-20', 2272, 64120, 4322, NULL, '1.0000', '4.0333', '4.0333', '7.8400', '7.8400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67427, '2022-03-20', 2999, 64121, 4322, 23108, '1.0000', '13.0000', '13.0000', '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 (67428, '2022-03-20', 1612, 64122, 4322, 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 (67429, '2022-03-20', 7859, 64123, 4322, NULL, '1.0000', '3.6000', '3.6000', '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 (67430, '2022-03-20', 9598, 64124, 4322, 51686, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67431, '2022-03-20', 2135, 64125, 4322, NULL, '1.0000', '-0.2588', '-0.2588', '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 (67432, '2022-03-20', 1665, 64126, 4322, 51683, '2.0000', '1.1432', '1.1432', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67433, '2022-03-20', 2352, 64127, 4323, 3855, '-103.0000', '20.0000', '20.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 (67434, '2022-03-20', 2352, 64127, 4323, NULL, '118.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-118.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67435, '2022-03-20', 9748, 64128, 4323, NULL, '1.0000', '2.5300', '2.5300', '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 (67436, '2022-03-20', 1425, 64129, 4323, NULL, '1.0000', '6.4405', '6.4405', '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 (67437, '2022-03-20', 1432, 64130, 4323, NULL, '2.0000', '8.1574', '8.1574', '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 (67438, '2022-03-20', 1689, 64131, 4323, 4897, '-7.0000', '60.7198', '60.7198', '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 (67439, '2022-03-20', 1689, 64131, 4323, NULL, '8.0000', '60.7198', '60.7198', '19.0000', '19.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 (67440, '2022-03-20', 2169, 64132, 4323, 10737, '-78.0000', '3.8397', '3.8397', '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 (67441, '2022-03-20', 2169, 64132, 4323, NULL, '80.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67442, '2022-03-20', 2058, 64133, 4323, 7512, '-5.0000', '10.0000', '10.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 (67443, '2022-03-20', 2058, 64133, 4323, NULL, '6.0000', '10.0000', '10.0000', '40.0000', '40.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 (67444, '2022-03-20', 2794, 64134, 4323, 16147, '1.0000', '17.8200', '17.8200', '60.0000', '60.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67445, '2022-03-20', 1411, 64135, 4323, NULL, '1.0000', '25.9000', '25.9000', '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 (67446, '2022-03-20', 2384, 64136, 4323, 12014, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '60.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 (67447, '2022-03-20', 2262, 64137, 4323, 2798, '-8.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 (67448, '2022-03-20', 2262, 64137, 4323, NULL, '9.0000', '4.5000', '4.5000', '6.0000', '6.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 (67449, '2022-03-20', 1435, 64138, 4323, NULL, '1.0000', '22.5000', '22.5000', '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 (67450, '2022-03-20', 2414, 64139, 4323, 4620, '-15.0000', '3.4000', '3.4000', '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 (67451, '2022-03-20', 2414, 64139, 4323, NULL, '17.0000', '3.4000', '3.4000', '5.0000', '5.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 (67452, '2022-03-20', 2340, 64140, 4323, NULL, '1.0000', '5.9200', '5.9200', '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 (67453, '2022-03-20', 8775, 64141, 4323, NULL, '1.0000', '2.6000', '2.6000', '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 (67454, '2022-03-20', 2080, 64142, 4323, 248, '1.0000', '17.9638', '17.9638', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67455, '2022-03-20', 9450, 64143, 4324, 30932, '1.0000', '3.2000', '3.2000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67456, '2022-03-20', 8188, 64144, 4324, NULL, '1.0000', '-7.7250', '-7.7250', '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 (67457, '2022-03-20', 7671, 64145, 4324, NULL, '1.0000', '76.3606', '76.3606', '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 (67458, '2022-03-20', 7722, 64146, 4324, NULL, '3.0000', '3.5000', '3.5000', '14.5000', '14.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 (67459, '2022-03-20', 7507, 64147, 4324, NULL, '3.0000', '6.5000', '6.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 (67460, '2022-03-20', 7509, 64148, 4324, 52442, '1.0000', '8.2305', '8.2305', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67461, '2022-03-20', 7743, 64149, 4324, NULL, '1.0000', '419203.7668', '419203.7668', '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 (67462, '2022-03-20', 7641, 64150, 4324, NULL, '1.0000', '95.0035', '95.0035', '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 (67463, '2022-03-20', 8539, 64151, 4324, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '29.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67464, '2022-03-20', 7518, 64152, 4324, NULL, '1.0000', '-914.6441', '-914.6441', '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 (67465, '2022-03-20', 7652, 64153, 4324, NULL, '10.0000', '343.2872', '343.2872', '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 (67466, '2022-03-20', 9461, 64154, 4324, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67467, '2022-03-20', 7728, 64155, 4324, 52025, '1.0000', '1.8799', '1.8799', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67468, '2022-03-20', 2352, 64156, 4325, 3855, '-118.0000', '20.0000', '20.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 (67469, '2022-03-20', 2352, 64156, 4325, NULL, '119.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-119.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67470, '2022-03-20', 2384, 64157, 4325, 12014, '4.0000', '0.4000', '0.4000', '0.7000', '0.7000', '56.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 (67471, '2022-03-20', 9482, 64158, 4325, NULL, '4.0000', '0.5000', '0.5000', '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 (67472, '2022-03-20', 9747, 64159, 4325, NULL, '1.0000', '0.6500', '0.6500', '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 (67473, '2022-03-20', 7411, 64160, 4325, NULL, '1.0000', '1.3500', '1.3500', '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 (67474, '2022-03-20', 8020, 64161, 4326, 48328, '1.0000', '21.8250', '21.8250', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67475, '2022-03-20', 7524, 64162, 4326, NULL, '6.0000', '6.3550', '6.3550', '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 (67476, '2022-03-20', 7457, 64163, 4326, 30064, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '69.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67477, '2022-03-20', 8085, 64164, 4326, 49815, '2.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67478, '2022-03-20', 8039, 64165, 4327, NULL, '1.0000', '12.9000', '12.9000', '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 (67479, '2022-03-20', 9737, 64166, 4327, 51705, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67480, '2022-03-20', 2857, 64167, 4328, NULL, '1.0000', '17.0000', '17.0000', '6.6000', '6.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 (67481, '2022-03-20', 9828, 64168, 4329, NULL, '1.0000', '2.9100', '2.9100', '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 (67482, '2022-03-20', 1942, 64169, 4330, NULL, '1.0000', '19.0000', '19.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 (67483, '2022-03-20', 1840, 64170, 4331, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (67484, '2022-03-20', 2315, 64171, 4331, 2735, '-209.0000', '0.3300', '0.3300', '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 (67485, '2022-03-20', 2315, 64171, 4331, NULL, '210.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-210.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67486, '2022-03-20', 7328, 64172, 4331, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (67487, '2022-03-20', 2169, 64173, 4331, 10737, '-80.0000', '3.8397', '3.8397', '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 (67488, '2022-03-20', 2169, 64173, 4331, NULL, '81.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67489, '2022-03-21', 1783, 64174, 4332, 52169, '3.0000', '15.0312', '15.0312', '11.0000', '11.0000', '12.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67490, '2022-03-21', 1427, 64175, 4332, 52220, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67491, '2022-03-21', 1816, 64176, 4332, NULL, '1.0000', '25.7500', '25.7500', '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 (67492, '2022-03-21', 2169, 64177, 4332, 52147, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67493, '2022-03-21', 1501, 64178, 4332, NULL, '1.0000', '2.1784', '2.1784', '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 (67494, '2022-03-21', 1646, 64179, 4332, 52149, '1.0000', '5.3761', '5.3761', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67495, '2022-03-21', 2491, 64180, 4332, 50232, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67496, '2022-03-21', 2545, 64181, 4332, 51330, '1.0000', '6.4337', '6.4337', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67497, '2022-03-21', 1333, 64182, 4332, 31107, '1.0000', '0.6500', '0.6500', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67498, '2022-03-21', 2635, 64183, 4332, 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 (67499, '2022-03-21', 1337, 64184, 4332, NULL, '1.0000', '2.0000', '2.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 (67500, '2022-03-21', 1339, 64185, 4332, 51991, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67501, '2022-03-21', 7802, 64186, 4332, NULL, '3.0000', '0.9200', '0.9200', '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 (67502, '2022-03-21', 1935, 64187, 4332, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67503, '2022-03-21', 1855, 64188, 4332, NULL, '1.0000', '1.5003', '1.5003', '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 (67504, '2022-03-21', 2315, 64189, 4332, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '71.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67505, '2022-03-21', 9723, 64190, 4332, 47060, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67506, '2022-03-21', 2100, 64191, 4332, 41418, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67507, '2022-03-21', 1671, 64192, 4332, 39833, '1.0000', '103.6357', '103.6357', '70.0000', '70.0000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67508, '2022-03-21', 2242, 64193, 4332, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67509, '2022-03-21', 7612, 64194, 4332, NULL, '2.0000', '1.7300', '1.7300', '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 (67510, '2022-03-21', 9109, 64195, 4332, 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 (67511, '2022-03-21', 2169, 64196, 4332, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67512, '2022-03-21', 9828, 64197, 4332, NULL, '1.0000', '2.9100', '2.9100', '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 (67513, '2022-03-21', 2642, 64198, 4332, 51938, '1.0000', '9.7093', '9.7093', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67514, '2022-03-21', 1782, 64199, 4332, NULL, '2.0000', '2.5000', '2.5000', '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 (67515, '2022-03-21', 7636, 64200, 4332, NULL, '1.0000', '11.8700', '11.8700', '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 (67516, '2022-03-21', 1534, 64201, 4332, NULL, '1.0000', '9.8500', '9.8500', '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 (67517, '2022-03-21', 7459, 64202, 4332, NULL, '5.0000', '-6.1729', '-6.1729', '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 (67518, '2022-03-21', 2643, 64203, 4332, 51987, '2.0000', '0.8700', '0.8700', '1.2000', '1.2000', '22.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67519, '2022-03-21', 9736, 64204, 4332, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67520, '2022-03-21', 2009, 64205, 4332, 44153, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67521, '2022-03-21', 1703, 64206, 4332, 34619, '1.0000', '9.2200', '9.2200', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67522, '2022-03-21', 2221, 64207, 4332, 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 (67523, '2022-03-21', 1840, 64208, 4333, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (67524, '2022-03-21', 1841, 64209, 4333, NULL, '3.0000', '142.5780', '142.5780', '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 (67525, '2022-03-21', 9760, 64210, 4333, NULL, '1.0000', '1.1000', '1.1000', '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 (67526, '2022-03-21', 2169, 64211, 4333, 10737, '-81.0000', '3.8397', '3.8397', '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 (67527, '2022-03-21', 2169, 64211, 4333, NULL, '82.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67528, '2022-03-21', 9732, 64212, 4333, 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 (67529, '2022-03-21', 3058, 64213, 4333, 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 (67530, '2022-03-21', 1578, 64214, 4333, 7597, '-6.0000', '1.9700', '1.9700', '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 (67531, '2022-03-21', 1578, 64214, 4333, NULL, '7.0000', '1.9700', '1.9700', '3.0000', '3.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 (67532, '2022-03-21', 1822, 64215, 4333, 8225, '-105.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 (67533, '2022-03-21', 1822, 64215, 4333, NULL, '125.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-125.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67534, '2022-03-21', 9734, 64216, 4333, NULL, '1.0000', '0.3200', '0.3200', '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 (67535, '2022-03-21', 9734, 64217, 4334, NULL, '1.0000', '0.3200', '0.3200', '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 (67536, '2022-03-21', 9155, 64218, 4334, NULL, '1.0000', '1.8000', '1.8000', '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 (67537, '2022-03-21', 7652, 64219, 4334, 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 (67538, '2022-03-21', 8361, 64220, 4334, NULL, '1.0000', '7.2300', '7.2300', '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 (67539, '2022-03-21', 8596, 64221, 4334, 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 (67540, '2022-03-21', 7459, 64222, 4334, NULL, '20.0000', '2.3500', '2.3500', '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 (67541, '2022-03-21', 2891, 64223, 4334, NULL, '1.0000', '9.5000', '9.5000', '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 (67542, '2022-03-21', 8200, 64224, 4334, NULL, '1.0000', '6.2600', '6.2600', '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 (67543, '2022-03-21', 7756, 64225, 4334, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67544, '2022-03-21', 2289, 64226, 4334, 2949, '-82.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 (67545, '2022-03-21', 2289, 64226, 4334, NULL, '85.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67546, '2022-03-21', 7411, 64227, 4334, NULL, '3.0000', '1.3500', '1.3500', '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 (67547, '2022-03-21', 7518, 64228, 4334, NULL, '1.0000', '7.8200', '7.8200', '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 (67548, '2022-03-21', 8596, 64229, 4334, 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 (67549, '2022-03-21', 9825, 64230, 4334, 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 (67550, '2022-03-21', 8077, 64231, 4334, NULL, '1.0000', '3.6000', '3.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 (67551, '2022-03-21', 7408, 64232, 4334, NULL, '1.0000', '5.2800', '5.2800', '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 (67552, '2022-03-21', 1867, 64233, 4334, NULL, '1.0000', '1.0500', '1.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 (67553, '2022-03-21', 2495, 64234, 4334, 6905, '-1.0000', '8.6100', '8.6100', '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 (67554, '2022-03-21', 2495, 64234, 4334, NULL, '2.0000', '8.6100', '8.6100', '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 (67555, '2022-03-21', 7612, 64235, 4334, NULL, '1.0000', '1.7300', '1.7300', '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 (67556, '2022-03-21', 9798, 64236, 4334, NULL, '1.0000', '13.9000', '13.9000', '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 (67557, '2022-03-21', 2270, 64237, 4334, 2930, '-5.0000', '0.9880', '0.9880', '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 (67558, '2022-03-21', 2270, 64237, 4334, NULL, '6.0000', '0.9880', '0.9880', '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 (67559, '2022-03-21', 7354, 64238, 4334, NULL, '2.0000', '0.3700', '0.3700', '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 (67560, '2022-03-21', 8918, 64239, 4334, NULL, '1.0000', '1.0400', '1.0400', '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 (67561, '2022-03-21', 9499, 64240, 4334, 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 (67562, '2022-03-21', 9732, 64241, 4334, 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 (67563, '2022-03-21', 8288, 64242, 4334, NULL, '1.0000', '1.1600', '1.1600', '1.8000', '1.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 (67564, '2022-03-21', 8607, 64243, 4334, 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 (67565, '2022-03-21', 9579, 64244, 4334, 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 (67566, '2022-03-21', 1433, 64245, 4334, 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 (67567, '2022-03-21', 7509, 64246, 4334, 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 (67568, '2022-03-21', 7877, 64247, 4334, NULL, '1.0000', '4.4000', '4.4000', '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 (67569, '2022-03-21', 8333, 64248, 4334, NULL, '1.0000', '6.7300', '6.7300', '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 (67570, '2022-03-21', 8395, 64249, 4334, NULL, '1.0000', '0.9700', '0.9700', '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 (67571, '2022-03-21', 7518, 64250, 4334, NULL, '1.0000', '7.8200', '7.8200', '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 (67572, '2022-03-21', 2865, 64251, 4334, 17692, '-4.0000', '2.8000', '2.8000', '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 (67573, '2022-03-21', 2865, 64251, 4334, NULL, '5.0000', '2.8000', '2.8000', '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 (67574, '2022-03-21', 7848, 64252, 4334, NULL, '1.0000', '1.3500', '1.3500', '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 (67575, '2022-03-21', 7741, 64253, 4334, NULL, '1.0000', '1.2000', '1.2000', '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 (67576, '2022-03-21', 9463, 64254, 4334, NULL, '1.0000', '7.5000', '7.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 (67577, '2022-03-21', 8153, 64255, 4334, NULL, '1.0000', '0.3200', '0.3200', '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 (67578, '2022-03-21', 7674, 64256, 4334, 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 (67579, '2022-03-21', 7673, 64257, 4334, NULL, '1.0000', '16.8000', '16.8000', '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 (67580, '2022-03-21', 7560, 64258, 4334, NULL, '1.0000', '33.0200', '33.0200', '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 (67581, '2022-03-21', 7671, 64259, 4334, NULL, '1.0000', '15.5000', '15.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 (67582, '2022-03-21', 7953, 64260, 4334, NULL, '2.0000', '6.0000', '6.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 (67583, '2022-03-21', 2070, 64261, 4334, NULL, '1.0000', '2.0000', '2.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 (67584, '2022-03-21', 2607, 64262, 4334, 9619, '-6.0000', '1.4000', '1.4000', '1.7000', '1.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 (67585, '2022-03-21', 2607, 64262, 4334, NULL, '7.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-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 (67586, '2022-03-21', 7673, 64263, 4334, NULL, '1.0000', '16.8000', '16.8000', '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 (67587, '2022-03-21', 7674, 64264, 4334, 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 (67588, '2022-03-21', 7575, 64265, 4334, NULL, '1.0000', '5.9000', '5.9000', '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 (67589, '2022-03-21', 7967, 64266, 4334, NULL, '2.0000', '7.0000', '7.0000', '9.5000', '9.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 (67590, '2022-03-21', 8233, 64267, 4334, NULL, '1.0000', '4.5000', '4.5000', '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 (67591, '2022-03-21', 2315, 64268, 4334, 2735, '-210.0000', '0.3300', '0.3300', '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 (67592, '2022-03-21', 2315, 64268, 4334, NULL, '211.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-211.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67593, '2022-03-21', 1425, 64269, 4335, 52246, '1.0000', '7.0001', '7.0001', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67594, '2022-03-21', 1609, 64270, 4335, 4994, '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 (67595, '2022-03-21', 2891, 64271, 4335, 49995, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67596, '2022-03-21', 1687, 64272, 4335, 50913, '1.0000', '12.9700', '12.9700', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67597, '2022-03-21', 9762, 64273, 4335, 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 (67598, '2022-03-21', 7608, 64274, 4335, NULL, '1.0000', '6.9800', '6.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 (67599, '2022-03-21', 8384, 64275, 4335, 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 (67600, '2022-03-21', 2511, 64276, 4335, 52090, '1.0000', '8.8849', '8.8849', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67601, '2022-03-21', 9177, 64277, 4335, 37567, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '25.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67602, '2022-03-21', 1674, 64278, 4335, 52307, '1.0000', '12.5024', '12.5024', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67603, '2022-03-21', 1809, 64279, 4335, 49544, '1.0000', '9.7945', '9.7945', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67604, '2022-03-21', 1945, 64280, 4335, 50890, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67605, '2022-03-21', 2089, 64281, 4335, 46581, '1.0000', '6.7500', '6.7500', '9.2400', '9.2400', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67606, '2022-03-21', 2511, 64282, 4335, 52090, '1.0000', '8.8849', '8.8849', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67607, '2022-03-21', 2169, 64283, 4335, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67608, '2022-03-21', 1828, 64284, 4335, 33003, '1.0000', '0.7300', '0.7300', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67609, '2022-03-21', 1772, 64285, 4335, 40908, '1.0000', '6.0491', '6.0491', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67610, '2022-03-21', 2302, 64286, 4335, 52087, '1.0000', '5.1943', '5.1943', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67611, '2022-03-21', 7532, 64287, 4335, NULL, '1.0000', '20.6000', '20.6000', '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 (67612, '2022-03-21', 2169, 64288, 4335, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67613, '2022-03-21', 2286, 64289, 4336, 52242, '2.0000', '4.4284', '4.4284', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67614, '2022-03-21', 2167, 64290, 4336, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67615, '2022-03-21', 2263, 64291, 4337, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67616, '2022-03-21', 2250, 64292, 4337, 52262, '1.0000', '7.0981', '7.0981', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67617, '2022-03-21', 2567, 64293, 4337, 45628, '1.0000', '-141.9958', '-141.9958', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67618, '2022-03-21', 7608, 64294, 4338, NULL, '1.0000', '6.9800', '6.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 (67619, '2022-03-21', 1450, 64295, 4339, 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 (67620, '2022-03-21', 2916, 64296, 4340, NULL, '1.0000', '8.9191', '8.9191', '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 (67621, '2022-03-21', 2341, 64297, 4340, NULL, '1.0000', '5.5900', '5.5900', '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 (67622, '2022-03-21', 7685, 64298, 4340, NULL, '1.0000', '31.2000', '31.2000', '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 (67623, '2022-03-21', 2545, 64299, 4340, 51330, '1.0000', '6.4337', '6.4337', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67624, '2022-03-21', 9736, 64300, 4340, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67625, '2022-03-21', 7608, 64301, 4340, 39812, '1.0000', '6.9800', '6.9800', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67626, '2022-03-21', 2135, 64302, 4340, NULL, '1.0000', '-0.2588', '-0.2588', '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 (67627, '2022-03-21', 9828, 64303, 4340, NULL, '1.0000', '2.9100', '2.9100', '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 (67628, '2022-03-21', 2169, 64304, 4340, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67629, '2022-03-21', 7725, 64305, 4340, NULL, '1.0000', '5.0000', '5.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 (67630, '2022-03-21', 1490, 64306, 4340, 49642, '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 (67631, '2022-03-21', 8546, 64307, 4340, NULL, '1.0000', '6.6000', '6.6000', '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 (67632, '2022-03-21', 8677, 64308, 4340, NULL, '2.0000', '292.4641', '292.4641', '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 (67633, '2022-03-21', 1365, 64309, 4340, 34575, '2.0000', '42.5894', '42.5894', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67634, '2022-03-21', 2315, 64310, 4340, 49255, '10.0000', '0.4851', '0.4851', '0.8000', '0.8000', '61.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67635, '2022-03-21', 1857, 64311, 4340, 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 (67636, '2022-03-21', 2654, 64312, 4340, 32545, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67637, '2022-03-21', 9828, 64313, 4340, NULL, '1.0000', '2.9100', '2.9100', '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 (67638, '2022-03-21', 2726, 64314, 4340, NULL, '1.0000', '2.7018', '2.7018', '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 (67639, '2022-03-21', 1810, 64315, 4340, 48619, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67640, '2022-03-21', 1528, 64316, 4340, NULL, '3.0000', '90.0000', '90.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 (67641, '2022-03-21', 1947, 64317, 4340, 34039, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67642, '2022-03-21', 8743, 64318, 4340, 51950, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67643, '2022-03-21', 9311, 64319, 4340, NULL, '2.0000', '6.6000', '6.6000', '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 (67644, '2022-03-21', 1602, 64320, 4340, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67645, '2022-03-21', 7411, 64321, 4340, NULL, '1.0000', '1.3013', '1.3013', '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 (67646, '2022-03-21', 2821, 64322, 4340, NULL, '1.0000', '-1.4366', '-1.4366', '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 (67647, '2022-03-21', 2104, 64323, 4340, 22380, '2.0000', '0.2000', '0.2000', '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 (67648, '2022-03-21', 1780, 64324, 4340, 30654, '1.0000', '95.5759', '95.5759', '51.0000', '51.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67649, '2022-03-21', 1928, 64325, 4340, NULL, '1.0000', '5.3300', '5.3300', '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 (67650, '2022-03-21', 7947, 64326, 4340, NULL, '1.0000', '14.4400', '14.4400', '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 (67651, '2022-03-21', 2384, 64327, 4340, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67652, '2022-03-21', 2108, 64328, 4340, NULL, '1.0000', '8.6167', '8.6167', '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 (67653, '2022-03-21', 7671, 64329, 4340, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67654, '2022-03-21', 1602, 64330, 4340, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67655, '2022-03-21', 7316, 64331, 4340, 51382, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67656, '2022-03-21', 7411, 64332, 4340, NULL, '2.0000', '1.3013', '1.3013', '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 (67657, '2022-03-21', 9740, 64333, 4340, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67658, '2022-03-21', 2916, 64334, 4340, NULL, '1.0000', '8.9191', '8.9191', '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 (67659, '2022-03-21', 2169, 64335, 4340, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67660, '2022-03-21', 9728, 64336, 4340, 47072, '1.0000', '5.4000', '5.4000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67661, '2022-03-21', 9816, 64337, 4340, 51016, '1.0000', '5.2000', '5.2000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67662, '2022-03-21', 8740, 64338, 4340, NULL, '1.0000', '1.9965', '1.9965', '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 (67663, '2022-03-21', 9794, 64339, 4340, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67664, '2022-03-21', 7411, 64340, 4340, NULL, '1.0000', '1.3013', '1.3013', '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 (67665, '2022-03-21', 9628, 64341, 4340, 49714, '1.0000', '46.1200', '46.1200', '55.0000', '55.0000', '4.0000', 1, 0, NULL, 394);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67666, '2022-03-21', 9785, 64342, 4340, 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 (67667, '2022-03-21', 1837, 64343, 4340, NULL, '1.0000', '2.5335', '2.5335', '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 (67668, '2022-03-21', 7685, 64344, 4340, NULL, '1.0000', '31.2000', '31.2000', '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 (67669, '2022-03-21', 2169, 64345, 4340, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67670, '2022-03-21', 1590, 64346, 4340, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67671, '2022-03-21', 2295, 64347, 4340, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67672, '2022-03-21', 2823, 64348, 4340, NULL, '2.0000', '11.2100', '11.2100', '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 (67673, '2022-03-21', 8017, 64349, 4340, NULL, '1.0000', '0.6000', '0.6000', '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 (67674, '2022-03-21', 9715, 64350, 4340, 51680, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67675, '2022-03-21', 9732, 64351, 4340, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67676, '2022-03-21', 1901, 64352, 4340, NULL, '2.0000', '2.0100', '2.0100', '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 (67677, '2022-03-21', 2999, 64353, 4340, 23108, '1.0000', '13.0000', '13.0000', '17.0000', '17.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 (67678, '2022-03-21', 2523, 64354, 4340, 23979, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '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 (67679, '2022-03-21', 9695, 64355, 4340, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67680, '2022-03-21', 8740, 64356, 4340, NULL, '1.0000', '1.9965', '1.9965', '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 (67681, '2022-03-21', 3055, 64357, 4340, 24935, '10.0000', '2.1800', '2.1800', '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 (67682, '2022-03-21', 2169, 64358, 4340, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67683, '2022-03-21', 9750, 64359, 4340, NULL, '1.0000', '3.3000', '3.3000', '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 (67684, '2022-03-21', 2381, 64360, 4340, 52184, '1.0000', '11.8445', '11.8445', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67685, '2022-03-21', 2169, 64361, 4340, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67686, '2022-03-21', 2167, 64362, 4340, NULL, '1.0000', '1.7907', '1.7907', '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 (67687, '2022-03-21', 8133, 64363, 4340, NULL, '1.0000', '-1141.7448', '-1141.7448', '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 (67688, '2022-03-21', 9750, 64364, 4340, NULL, '1.0000', '3.3000', '3.3000', '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 (67689, '2022-03-21', 9864, 64365, 4340, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67690, '2022-03-21', 1337, 64366, 4340, NULL, '1.0000', '2.0000', '2.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 (67691, '2022-03-21', 1339, 64367, 4340, 51991, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67692, '2022-03-21', 1646, 64368, 4340, 52149, '1.0000', '5.3761', '5.3761', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67693, '2022-03-21', 9734, 64369, 4340, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67694, '2022-03-21', 2260, 64370, 4340, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67695, '2022-03-21', 2228, 64371, 4340, NULL, '1.0000', '27.0000', '27.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 (67696, '2022-03-21', 1602, 64372, 4340, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67697, '2022-03-21', 9828, 64373, 4341, NULL, '1.0000', '2.9100', '2.9100', '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 (67698, '2022-03-21', 2320, 64374, 4341, 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 (67699, '2022-03-21', 9831, 64375, 4341, NULL, '1.0000', '1.5600', '1.5600', '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 (67700, '2022-03-21', 9828, 64376, 4341, NULL, '1.0000', '2.9100', '2.9100', '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 (67701, '2022-03-21', 2163, 64377, 4341, 16248, '-1.0000', '20.0000', '20.0000', '31.0000', '31.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67702, '2022-03-21', 2163, 64377, 4341, NULL, '2.0000', '20.0000', '20.0000', '31.0000', '31.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 (67703, '2022-03-21', 1667, 64378, 4341, 9745, '-41.0000', '5.9400', '5.9400', '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 (67704, '2022-03-21', 1667, 64378, 4341, NULL, '42.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67705, '2022-03-21', 7666, 64379, 4342, 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 (67706, '2022-03-21', 7674, 64380, 4342, 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 (67707, '2022-03-21', 9145, 64381, 4342, 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 (67708, '2022-03-21', 7664, 64382, 4342, NULL, '1.0000', '6.9400', '6.9400', '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 (67709, '2022-03-21', 7658, 64383, 4342, NULL, '10.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (67710, '2022-03-21', 7713, 64384, 4342, NULL, '2.0000', '0.3800', '0.3800', '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 (67711, '2022-03-21', 1498, 64385, 4342, 19685, '-27.0000', '0.3300', '0.3300', '0.6000', '0.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 (67712, '2022-03-21', 1498, 64385, 4342, NULL, '29.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67713, '2022-03-21', 7753, 64386, 4342, NULL, '1.0000', '3.4000', '3.4000', '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 (67714, '2022-03-21', 8476, 64387, 4342, NULL, '4.0000', '23.0000', '23.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 (67715, '2022-03-21', 1908, 64388, 4342, 5444, '-34.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 (67716, '2022-03-21', 1908, 64388, 4342, NULL, '36.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (67717, '2022-03-21', 8309, 64389, 4342, NULL, '1.0000', '14.5000', '14.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 (67718, '2022-03-21', 7652, 64390, 4342, NULL, '4.0000', '0.9800', '0.9800', '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 (67719, '2022-03-21', 7753, 64391, 4342, NULL, '1.0000', '3.4000', '3.4000', '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 (67720, '2022-03-21', 7715, 64392, 4342, NULL, '2.0000', '1.8900', '1.8900', '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 (67721, '2022-03-21', 7708, 64393, 4342, NULL, '1.0000', '7.8000', '7.8000', '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 (67722, '2022-03-21', 7674, 64394, 4342, 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 (67723, '2022-03-21', 7519, 64395, 4342, NULL, '1.0000', '14.5200', '14.5200', '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 (67724, '2022-03-21', 8657, 64396, 4342, NULL, '1.0000', '6.3900', '6.3900', '10.3000', '10.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 (67725, '2022-03-21', 2068, 64397, 4342, 5568, '-21.0000', '13.1000', '13.1000', '15.3100', '15.3100', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67726, '2022-03-21', 2068, 64397, 4342, NULL, '22.0000', '13.1000', '13.1000', '15.3100', '15.3100', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67727, '2022-03-21', 9274, 64398, 4342, 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 (67728, '2022-03-21', 9750, 64399, 4342, NULL, '1.0000', '3.3000', '3.3000', '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 (67729, '2022-03-21', 8699, 64400, 4342, NULL, '2.0000', '6.3800', '6.3800', '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 (67730, '2022-03-21', 7784, 64401, 4342, NULL, '1.0000', '4.2300', '4.2300', '5.5800', '5.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67731, '2022-03-21', 9805, 64402, 4342, NULL, '1.0000', '31.5000', '31.5000', '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 (67732, '2022-03-21', 7674, 64403, 4342, 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 (67733, '2022-03-21', 8352, 64404, 4342, 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 (67734, '2022-03-21', 7671, 64405, 4342, NULL, '1.0000', '15.5000', '15.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 (67735, '2022-03-21', 2248, 64406, 4342, 2785, '-5.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 (67736, '2022-03-21', 2248, 64406, 4342, NULL, '6.0000', '2.5000', '2.5000', '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 (67737, '2022-03-21', 7708, 64407, 4342, NULL, '1.0000', '7.8000', '7.8000', '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 (67738, '2022-03-21', 9747, 64408, 4342, NULL, '2.0000', '0.6500', '0.6500', '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 (67739, '2022-03-21', 8702, 64409, 4342, NULL, '1.0000', '3.6700', '3.6700', '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 (67740, '2022-03-21', 7892, 64410, 4342, NULL, '1.0000', '4.2000', '4.2000', '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 (67741, '2022-03-21', 1806, 64411, 4342, 18809, '1.0000', '28.1300', '28.1300', '40.0000', '40.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 (67742, '2022-03-21', 7411, 64412, 4342, NULL, '1.0000', '1.3500', '1.3500', '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 (67743, '2022-03-21', 7661, 64413, 4342, NULL, '1.0000', '7.2000', '7.2000', '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 (67744, '2022-03-21', 7512, 64414, 4342, NULL, '1.0000', '1.0000', '1.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 (67745, '2022-03-21', 8638, 64415, 4342, NULL, '2.0000', '0.5100', '0.5100', '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 (67746, '2022-03-21', 9783, 64416, 4342, NULL, '1.0000', '17.6000', '17.6000', '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 (67747, '2022-03-21', 7657, 64417, 4342, NULL, '1.0000', '11.3200', '11.3200', '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 (67748, '2022-03-21', 7674, 64418, 4342, 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 (67749, '2022-03-21', 8810, 64419, 4342, NULL, '1.0000', '1.6000', '1.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 (67750, '2022-03-21', 9740, 64420, 4342, NULL, '1.0000', '0.6600', '0.6600', '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 (67751, '2022-03-21', 8924, 64421, 4342, NULL, '1.0000', '4.5000', '4.5000', '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 (67752, '2022-03-21', 2762, 64422, 4343, 45127, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67753, '2022-03-21', 3029, 64423, 4343, 52261, '1.0000', '6.6157', '6.6157', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67754, '2022-03-21', 7318, 64424, 4343, 50934, '1.0000', '10.4772', '10.4772', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67755, '2022-03-21', 3017, 64425, 4343, 52257, '1.0000', '3.9715', '3.9715', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67756, '2022-03-21', 1665, 64426, 4344, 51683, '2.0000', '1.1432', '1.1432', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67757, '2022-03-21', 7411, 64427, 4344, NULL, '1.0000', '1.3013', '1.3013', '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 (67758, '2022-03-21', 2169, 64428, 4344, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67759, '2022-03-21', 9813, 64429, 4344, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67760, '2022-03-21', 9848, 64430, 4344, 52152, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67761, '2022-03-21', 9848, 64431, 4344, 52152, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67762, '2022-03-21', 2315, 64432, 4344, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '59.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67763, '2022-03-21', 1425, 64433, 4344, 52344, '1.0000', '5.1721', '5.1721', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67764, '2022-03-21', 2574, 64434, 4344, 45644, '4.0000', '1.1133', '1.1133', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67765, '2022-03-21', 1812, 64435, 4344, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67766, '2022-03-21', 2850, 64436, 4344, 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 (67767, '2022-03-22', 1499, 64437, 4345, 52148, '2.0000', '0.3747', '0.3747', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67768, '2022-03-22', 1912, 64438, 4345, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67769, '2022-03-22', 8979, 64439, 4345, 51990, '2.0000', '1.0000', '1.0000', '1.2000', '1.2000', '44.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67770, '2022-03-22', 7638, 64440, 4345, 39773, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67771, '2022-03-22', 7638, 64440, 4345, 34927, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67772, '2022-03-22', 9695, 64441, 4345, 51993, '2.0000', '4.5000', '4.5000', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67773, '2022-03-22', 1702, 64442, 4345, NULL, '1.0000', '14.9000', '14.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 (67774, '2022-03-22', 7806, 64443, 4345, 39775, '5.0000', '2.0000', '2.0000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67775, '2022-03-22', 9695, 64444, 4345, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67776, '2022-03-22', 9649, 64445, 4345, NULL, '1.0000', '14.4100', '14.4100', '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 (67777, '2022-03-22', 7533, 64446, 4345, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67778, '2022-03-22', 9840, 64447, 4345, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67779, '2022-03-22', 2169, 64448, 4345, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67780, '2022-03-22', 7657, 64449, 4346, NULL, '1.0000', '11.3200', '11.3200', '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 (67781, '2022-03-22', 7482, 64450, 4346, NULL, '1.0000', '3.0500', '3.0500', '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 (67782, '2022-03-22', 1337, 64451, 4346, 10809, '-13.0000', '2.0000', '2.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 (67783, '2022-03-22', 1337, 64451, 4346, NULL, '14.0000', '2.0000', '2.0000', '3.5000', '3.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 (67784, '2022-03-22', 7899, 64452, 4346, NULL, '1.0000', '3.3000', '3.3000', '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 (67785, '2022-03-22', 8539, 64453, 4346, NULL, '1.0000', '31.8000', '31.8000', '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 (67786, '2022-03-22', 7820, 64454, 4346, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67787, '2022-03-22', 2517, 64455, 4346, 33071, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67788, '2022-03-22', 7354, 64456, 4346, NULL, '1.0000', '0.3700', '0.3700', '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 (67789, '2022-03-22', 9785, 64457, 4346, 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 (67790, '2022-03-22', 7547, 64458, 4346, NULL, '4.0000', '0.0000', '0.0000', '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 (67791, '2022-03-22', 7557, 64459, 4346, 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 (67792, '2022-03-22', 7570, 64460, 4346, NULL, '1.0000', '10.0000', '10.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 (67793, '2022-03-22', 1760, 64461, 4346, 20604, '1.0000', '111.8384', '111.8384', '1.0000', '1.0000', '26.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 (67794, '2022-03-22', 7709, 64462, 4346, 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 (67795, '2022-03-22', 1720, 64463, 4346, 6661, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '145.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 (67796, '2022-03-22', 7317, 64464, 4346, NULL, '2.0000', '19.5500', '19.5500', '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 (67797, '2022-03-22', 7675, 64465, 4346, NULL, '1.0000', '11.4300', '11.4300', '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 (67798, '2022-03-22', 8753, 64466, 4346, 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 (67799, '2022-03-22', 9734, 64467, 4346, NULL, '2.0000', '0.3200', '0.3200', '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 (67800, '2022-03-22', 7473, 64468, 4346, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (67801, '2022-03-22', 8775, 64469, 4346, NULL, '2.0000', '2.6000', '2.6000', '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 (67802, '2022-03-22', 7804, 64470, 4346, NULL, '3.0000', '1.0200', '1.0200', '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 (67803, '2022-03-22', 7952, 64471, 4346, 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 (67804, '2022-03-22', 7514, 64472, 4346, NULL, '1.0000', '2.2500', '2.2500', '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 (67805, '2022-03-22', 8746, 64473, 4346, NULL, '2.0000', '3.1500', '3.1500', '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 (67806, '2022-03-22', 8083, 64474, 4346, NULL, '1.0000', '26.0000', '26.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 (67807, '2022-03-22', 1620, 64475, 4346, 8955, '-9.0000', '408.8259', '408.8259', '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 (67808, '2022-03-22', 1620, 64475, 4346, NULL, '13.0000', '408.8259', '408.8259', '4.0000', '4.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 (67809, '2022-03-22', 9868, 64476, 4347, 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 (67810, '2022-03-22', 3001, 64477, 4347, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67811, '2022-03-22', 9729, 64478, 4347, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67812, '2022-03-22', 7593, 64479, 4347, NULL, '1.0000', '0.8000', '0.8000', '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 (67813, '2022-03-22', 1701, 64480, 4347, 51510, '1.0000', '15.2068', '15.2068', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67814, '2022-03-22', 9828, 64481, 4347, NULL, '1.0000', '2.9100', '2.9100', '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 (67815, '2022-03-22', 1326, 64482, 4347, 48959, '1.0000', '4.5325', '4.5325', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67816, '2022-03-22', 8498, 64483, 4347, NULL, '1.0000', '10.4000', '10.4000', '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 (67817, '2022-03-22', 2820, 64484, 4347, 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 (67818, '2022-03-22', 2916, 64485, 4347, NULL, '1.0000', '8.9191', '8.9191', '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 (67819, '2022-03-22', 1702, 64486, 4347, NULL, '1.0000', '14.9000', '14.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 (67820, '2022-03-22', 8207, 64487, 4347, NULL, '1.0000', '0.0000', '0.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 (67821, '2022-03-22', 9578, 64488, 4347, 51027, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67822, '2022-03-22', 9750, 64489, 4347, NULL, '1.0000', '3.3000', '3.3000', '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 (67823, '2022-03-22', 7411, 64490, 4347, NULL, '1.0000', '1.3013', '1.3013', '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 (67824, '2022-03-22', 8187, 64491, 4347, NULL, '3.0000', '14.3900', '14.3900', '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 (67825, '2022-03-22', 9109, 64492, 4347, 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 (67826, '2022-03-22', 7527, 64493, 4347, NULL, '1.0000', '0.8900', '0.8900', '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 (67827, '2022-03-22', 2380, 64494, 4347, 51503, '1.0000', '37.8800', '37.8800', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67828, '2022-03-22', 2642, 64495, 4347, 51938, '1.0000', '9.7093', '9.7093', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67829, '2022-03-22', 2154, 64496, 4347, 44166, '1.0000', '10.8030', '10.8030', '14.5200', '14.5200', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67830, '2022-03-22', 7411, 64497, 4347, NULL, '1.0000', '1.3013', '1.3013', '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 (67831, '2022-03-22', 9840, 64498, 4347, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67832, '2022-03-22', 7453, 64499, 4347, NULL, '1.0000', '21.6500', '21.6500', '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 (67833, '2022-03-22', 7803, 64500, 4348, NULL, '1.0000', '1.8200', '1.8200', '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 (67834, '2022-03-22', 2237, 64501, 4348, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67835, '2022-03-22', 8746, 64502, 4348, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67836, '2022-03-22', 2858, 64503, 4349, 17772, '-57.0000', '1.0000', '1.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 (67837, '2022-03-22', 2858, 64503, 4349, NULL, '58.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67838, '2022-03-22', 9748, 64504, 4349, NULL, '1.0000', '2.5300', '2.5300', '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 (67839, '2022-03-22', 2109, 64505, 4349, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '73.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 (67840, '2022-03-22', 1651, 64506, 4349, 3222, '-51.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 (67841, '2022-03-22', 1651, 64506, 4349, NULL, '52.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67842, '2022-03-22', 2891, 64507, 4349, 18020, '-1.0000', '9.5000', '9.5000', '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 (67843, '2022-03-22', 2891, 64507, 4349, NULL, '2.0000', '9.5000', '9.5000', '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 (67844, '2022-03-22', 2460, 64508, 4349, 12921, '-6.0000', '32.7700', '32.7700', '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 (67845, '2022-03-22', 2460, 64508, 4349, NULL, '7.0000', '32.7700', '32.7700', '45.0000', '45.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 (67846, '2022-03-22', 9734, 64509, 4349, NULL, '2.0000', '0.3200', '0.3200', '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 (67847, '2022-03-22', 7619, 64510, 4349, NULL, '1.0000', '36.9800', '36.9800', '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 (67848, '2022-03-22', 1912, 64511, 4349, NULL, '2.0000', '0.3200', '0.3200', '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 (67849, '2022-03-22', 2402, 64512, 4349, 4208, '-1.0000', '1.0000', '1.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 (67850, '2022-03-22', 2402, 64512, 4349, NULL, '3.0000', '1.0000', '1.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 (67851, '2022-03-22', 1337, 64513, 4349, 10809, '-14.0000', '2.0000', '2.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 (67852, '2022-03-22', 1337, 64513, 4349, NULL, '15.0000', '2.0000', '2.0000', '3.5000', '3.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 (67853, '2022-03-22', 1591, 64514, 4349, NULL, '1.0000', '10.0000', '10.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 (67854, '2022-03-22', 8183, 64515, 4349, NULL, '1.0000', '81.9100', '81.9100', '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 (67855, '2022-03-22', 1837, 64516, 4349, 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 (67856, '2022-03-22', 2379, 64517, 4349, 4032, '-53.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 (67857, '2022-03-22', 2379, 64517, 4349, NULL, '54.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67858, '2022-03-22', 2816, 64518, 4349, NULL, '5.0000', '0.8000', '0.8000', '1.5000', '1.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 (67859, '2022-03-22', 1812, 64519, 4349, 8224, '-75.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 (67860, '2022-03-22', 1812, 64519, 4349, NULL, '76.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67861, '2022-03-22', 7963, 64520, 4350, NULL, '1.0000', '-24.3500', '-24.3500', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67862, '2022-03-22', 7674, 64521, 4350, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67863, '2022-03-22', 2289, 64522, 4350, NULL, '3.0000', '2.5688', '2.5688', '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 (67864, '2022-03-22', 2965, 64523, 4350, NULL, '1.0000', '-7.9600', '-7.9600', '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 (67865, '2022-03-22', 7412, 64524, 4350, NULL, '1.0000', '1.5200', '1.5200', '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 (67866, '2022-03-22', 8597, 64525, 4350, NULL, '1.0000', '67.5000', '67.5000', '89.0000', '89.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67867, '2022-03-22', 7848, 64526, 4350, NULL, '1.0000', '-29.7778', '-29.7778', '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 (67868, '2022-03-22', 8359, 64527, 4350, 51787, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67869, '2022-03-22', 8186, 64528, 4350, NULL, '3.0000', '1.0800', '1.0800', '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 (67870, '2022-03-22', 1840, 64529, 4350, 48008, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67871, '2022-03-22', 8203, 64530, 4350, NULL, '4.0000', '29.8095', '29.8095', '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 (67872, '2022-03-22', 1760, 64531, 4350, 46907, '4.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67873, '2022-03-22', 7952, 64532, 4350, NULL, '1.0000', '62.3792', '62.3792', '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 (67874, '2022-03-22', 9823, 64533, 4350, 51003, '3.0000', '13.2500', '13.2500', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67875, '2022-03-22', 7848, 64534, 4350, NULL, '1.0000', '-29.7778', '-29.7778', '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 (67876, '2022-03-22', 7609, 64535, 4350, NULL, '1.0000', '67.1301', '67.1301', '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 (67877, '2022-03-22', 1855, 64536, 4350, 49820, '2.0000', '1.4365', '1.4365', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67878, '2022-03-22', 7509, 64537, 4350, 52442, '1.0000', '8.2305', '8.2305', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67879, '2022-03-22', 9407, 64538, 4350, 44047, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67880, '2022-03-22', 9274, 64539, 4350, NULL, '1.0000', '3.5638', '3.5638', '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 (67881, '2022-03-22', 7459, 64540, 4350, NULL, '4.0000', '25935.6061', '25935.6061', '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 (67882, '2022-03-22', 7848, 64541, 4350, NULL, '1.0000', '-29.7778', '-29.7778', '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 (67883, '2022-03-22', 1935, 64542, 4350, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '151.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67884, '2022-03-22', 2256, 64543, 4350, 47953, '1.0000', '14.5250', '14.5250', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67885, '2022-03-22', 7339, 64544, 4350, 47938, '10.0000', '774.1000', '774.1000', '0.9000', '0.9000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67886, '2022-03-22', 9808, 64545, 4350, 50377, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67887, '2022-03-22', 7848, 64546, 4350, NULL, '1.0000', '-29.7778', '-29.7778', '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 (67888, '2022-03-22', 8395, 64547, 4350, 52459, '1.0000', '0.6080', '0.6080', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67889, '2022-03-22', 7345, 64548, 4350, NULL, '1.0000', '38.2000', '38.2000', '67.5000', '67.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67890, '2022-03-22', 7666, 64549, 4350, NULL, '1.0000', '3.6004', '3.6004', '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 (67891, '2022-03-22', 8735, 64550, 4350, NULL, '1.0000', '5.6000', '5.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 (67892, '2022-03-22', 7822, 64551, 4350, 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 (67893, '2022-03-22', 9734, 64552, 4350, 46910, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67894, '2022-03-22', 9272, 64553, 4350, NULL, '2.0000', '3.1000', '3.1000', '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 (67895, '2022-03-22', 7411, 64554, 4350, NULL, '1.0000', '1.2529', '1.2529', '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 (67896, '2022-03-22', 9747, 64555, 4350, 50667, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67897, '2022-03-22', 7754, 64556, 4350, NULL, '2.0000', '4.1978', '4.1978', '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 (67898, '2022-03-22', 7428, 64557, 4350, 51281, '5.0000', '56.1257', '56.1257', '4.5000', '4.5000', '24.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67899, '2022-03-22', 7728, 64558, 4350, 52025, '1.0000', '1.8799', '1.8799', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67900, '2022-03-22', 7781, 64559, 4350, NULL, '2.0000', '4.2500', '4.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 (67901, '2022-03-22', 7825, 64560, 4350, NULL, '1.0000', '-45.5949', '-45.5949', '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 (67902, '2022-03-22', 9411, 64561, 4350, NULL, '1.0000', '6.8700', '6.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 (67903, '2022-03-22', 9300, 64562, 4350, NULL, '1.0000', '3.0968', '3.0968', '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 (67904, '2022-03-22', 9736, 64563, 4351, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67905, '2022-03-22', 1839, 64564, 4351, NULL, '1.0000', '-169.0668', '-169.0668', '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 (67906, '2022-03-22', 1805, 64565, 4351, NULL, '1.0000', '15.0770', '15.0770', '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 (67907, '2022-03-22', 1478, 64566, 4351, 52325, '1.0000', '28.2361', '28.2361', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67908, '2022-03-22', 8903, 64567, 4351, NULL, '1.0000', '5.3700', '5.3700', '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 (67909, '2022-03-22', 1531, 64568, 4351, 48906, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67910, '2022-03-22', 2069, 64569, 4351, NULL, '1.0000', '2.0400', '2.0400', '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 (67911, '2022-03-22', 2231, 64570, 4351, NULL, '1.0000', '32.8000', '32.8000', '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 (67912, '2022-03-22', 8677, 64571, 4351, NULL, '1.0000', '292.4641', '292.4641', '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 (67913, '2022-03-22', 2360, 64572, 4351, NULL, '2.0000', '0.5200', '0.5200', '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 (67914, '2022-03-22', 2169, 64573, 4351, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67915, '2022-03-22', 2366, 64574, 4351, NULL, '2.0000', '-24.7743', '-24.7743', '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 (67916, '2022-03-22', 8746, 64575, 4351, 51022, '3.0000', '3.0000', '3.0000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67917, '2022-03-22', 2169, 64576, 4351, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67918, '2022-03-22', 1912, 64577, 4351, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67919, '2022-03-22', 2068, 64578, 4351, 52329, '1.0000', '11.2751', '11.2751', '15.3100', '15.3100', '8.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67920, '2022-03-22', 2169, 64579, 4351, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67921, '2022-03-22', 7930, 64580, 4351, 45162, '2.0000', '1.3000', '1.3000', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67922, '2022-03-22', 9794, 64581, 4351, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67923, '2022-03-22', 1365, 64582, 4351, 34575, '2.0000', '42.5894', '42.5894', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67924, '2022-03-22', 1839, 64583, 4351, NULL, '1.0000', '-169.0668', '-169.0668', '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 (67925, '2022-03-22', 1506, 64584, 4351, 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 (67926, '2022-03-22', 2635, 64585, 4351, 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 (67927, '2022-03-22', 9821, 64586, 4351, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67928, '2022-03-22', 9747, 64587, 4351, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67929, '2022-03-22', 2574, 64588, 4351, 45644, '2.0000', '1.1133', '1.1133', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67930, '2022-03-22', 2169, 64589, 4351, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67931, '2022-03-22', 1675, 64590, 4351, NULL, '1.0000', '20.7021', '20.7021', '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 (67932, '2022-03-22', 1779, 64591, 4351, 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 (67933, '2022-03-22', 1592, 64592, 4351, 51701, '1.0000', '34.8558', '34.8558', '47.5000', '47.5000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67934, '2022-03-22', 1592, 64592, 4351, 48494, '1.0000', '34.8558', '34.8558', '47.5000', '47.5000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67935, '2022-03-22', 7411, 64593, 4351, NULL, '2.0000', '1.3013', '1.3013', '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 (67936, '2022-03-22', 2231, 64594, 4351, NULL, '1.0000', '32.8000', '32.8000', '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 (67937, '2022-03-22', 1812, 64595, 4351, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67938, '2022-03-22', 1746, 64596, 4351, 19863, '4.0000', '3.5000', '3.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 (67939, '2022-03-22', 1699, 64597, 4351, NULL, '1.0000', '3.2000', '3.2000', '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 (67940, '2022-03-22', 7411, 64598, 4351, NULL, '1.0000', '1.3013', '1.3013', '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 (67941, '2022-03-22', 1912, 64599, 4351, 51315, '3.0000', '0.6218', '0.6218', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67942, '2022-03-22', 1695, 64600, 4351, 52157, '1.0000', '-53.5296', '-53.5296', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67943, '2022-03-22', 9471, 64601, 4351, 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 (67944, '2022-03-22', 1828, 64602, 4351, 19855, '1.0000', '0.7300', '0.7300', '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 (67945, '2022-03-22', 9695, 64603, 4351, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67946, '2022-03-22', 2293, 64604, 4351, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67947, '2022-03-22', 9469, 64605, 4351, 51026, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67948, '2022-03-22', 2263, 64606, 4351, 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 (67949, '2022-03-22', 1810, 64607, 4351, 48619, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67950, '2022-03-22', 9813, 64608, 4351, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67951, '2022-03-22', 2104, 64609, 4351, 22380, '4.0000', '0.2000', '0.2000', '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 (67952, '2022-03-22', 2821, 64610, 4351, NULL, '1.0000', '-1.4366', '-1.4366', '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 (67953, '2022-03-22', 1307, 64611, 4351, NULL, '1.0000', '-0.0521', '-0.0521', '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 (67954, '2022-03-22', 9791, 64612, 4351, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67955, '2022-03-22', 1708, 64613, 4351, 43245, '1.0000', '14.1733', '14.1733', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67956, '2022-03-22', 2169, 64614, 4351, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67957, '2022-03-22', 2315, 64615, 4351, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '58.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67958, '2022-03-22', 1812, 64616, 4351, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67959, '2022-03-22', 2169, 64617, 4351, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67960, '2022-03-22', 1425, 64618, 4351, 52344, '1.0000', '5.1721', '5.1721', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67961, '2022-03-22', 1643, 64619, 4351, 49312, '1.0000', '41.0000', '41.0000', '54.5000', '54.5000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67962, '2022-03-22', 9816, 64620, 4351, 51016, '1.0000', '5.2000', '5.2000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67963, '2022-03-22', 7411, 64621, 4351, NULL, '1.0000', '1.3013', '1.3013', '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 (67964, '2022-03-22', 1502, 64622, 4351, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '23.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67965, '2022-03-22', 7608, 64623, 4351, 39812, '1.0000', '6.9800', '6.9800', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67966, '2022-03-22', 7608, 64623, 4351, NULL, '1.0000', '6.9800', '6.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 (67967, '2022-03-22', 9578, 64624, 4351, 51027, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67968, '2022-03-22', 2850, 64625, 4351, 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 (67969, '2022-03-22', 1545, 64626, 4351, 51645, '1.0000', '8.4806', '8.4806', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67970, '2022-03-22', 7638, 64627, 4351, 34927, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67971, '2022-03-22', 1839, 64628, 4351, NULL, '1.0000', '-169.0668', '-169.0668', '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 (67972, '2022-03-22', 9736, 64629, 4351, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67973, '2022-03-22', 7411, 64630, 4351, NULL, '1.0000', '1.3013', '1.3013', '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 (67974, '2022-03-22', 2242, 64631, 4351, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67975, '2022-03-22', 8677, 64632, 4351, NULL, '2.0000', '292.4641', '292.4641', '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 (67976, '2022-03-22', 2906, 64633, 4351, NULL, '1.0000', '2.6000', '2.6000', '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 (67977, '2022-03-22', 2169, 64634, 4351, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67978, '2022-03-22', 9819, 64635, 4351, 52216, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67979, '2022-03-22', 9763, 64636, 4351, 51336, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67980, '2022-03-22', 7880, 64637, 4352, NULL, '1.0000', '1.0000', '1.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 (67981, '2022-03-22', 7641, 64638, 4352, NULL, '1.0000', '1.9000', '1.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 (67982, '2022-03-22', 8979, 64639, 4352, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '43.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67983, '2022-03-22', 8017, 64640, 4352, NULL, '1.0000', '0.6000', '0.6000', '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 (67984, '2022-03-22', 1574, 64641, 4352, NULL, '1.0000', '1.7000', '1.7000', '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 (67985, '2022-03-22', 1905, 64642, 4352, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67986, '2022-03-22', 9798, 64643, 4352, 51218, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67987, '2022-03-22', 2427, 64644, 4353, 5801, '1.0000', '5.8000', '5.8000', '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 (67988, '2022-03-22', 7744, 64645, 4353, NULL, '1.0000', '2.9400', '2.9400', '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 (67989, '2022-03-22', 1665, 64646, 4353, 50867, '1.0000', '1.1792', '1.1792', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67990, '2022-03-22', 1432, 64647, 4353, 52084, '1.0000', '9.2801', '9.2801', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67991, '2022-03-22', 7482, 64648, 4353, NULL, '1.0000', '3.0500', '3.0500', '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 (67992, '2022-03-22', 2839, 64649, 4353, 44042, '1.0000', '4.5000', '4.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67993, '2022-03-22', 2169, 64650, 4353, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67994, '2022-03-22', 8052, 64651, 4353, NULL, '1.0000', '29.0000', '29.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 (67995, '2022-03-22', 1707, 64652, 4353, 40222, '0.5000', '25.1200', '25.1200', '34.0000', '34.0000', '0.5000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67996, '2022-03-22', 9566, 64653, 4353, 52290, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67997, '2022-03-22', 1590, 64654, 4353, 49546, '2.0000', '1.7700', '1.7700', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67998, '2022-03-22', 2094, 64655, 4353, 6002, '1.0000', '2.9000', '2.9000', '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 (67999, '2022-03-22', 9729, 64656, 4353, 46048, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68000, '2022-03-22', 8775, 64657, 4353, 52321, '1.0000', '3.1153', '3.1153', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68001, '2022-03-22', 9579, 64658, 4353, 49670, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 391);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68002, '2022-03-22', 1837, 64659, 4353, 46752, '3.0000', '0.4981', '0.4981', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68003, '2022-03-22', 2902, 64660, 4353, 18349, '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 (68004, '2022-03-22', 7954, 64661, 4353, 52099, '2.0000', '-65.3773', '-65.3773', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68005, '2022-03-22', 1763, 64662, 4353, 50864, '1.0000', '4.7694', '4.7694', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68006, '2022-03-22', 8153, 64663, 4354, NULL, '1.0000', '0.3200', '0.3200', '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 (68007, '2022-03-22', 7659, 64664, 4354, NULL, '1.0000', '5.9700', '5.9700', '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 (68008, '2022-03-22', 7579, 64665, 4354, NULL, '1.0000', '15.0000', '15.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 (68009, '2022-03-22', 7753, 64666, 4354, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68010, '2022-03-22', 9734, 64667, 4355, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68011, '2022-03-22', 1839, 64668, 4356, 48750, '1.0000', '7.4147', '7.4147', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68012, '2022-03-22', 9750, 64669, 4357, NULL, '1.0000', '3.3000', '3.3000', '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 (68013, '2022-03-23', 9271, 64670, 4358, NULL, '1.0000', '0.9900', '0.9900', '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 (68014, '2022-03-23', 7874, 64671, 4358, NULL, '1.0000', '48.9800', '48.9800', '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 (68015, '2022-03-23', 9727, 64672, 4358, NULL, '1.0000', '6.7000', '6.7000', '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 (68016, '2022-03-23', 7673, 64673, 4358, NULL, '1.0000', '16.8000', '16.8000', '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 (68017, '2022-03-23', 7859, 64674, 4358, NULL, '1.0000', '12.6300', '12.6300', '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 (68018, '2022-03-23', 7671, 64675, 4358, NULL, '2.0000', '15.5000', '15.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 (68019, '2022-03-23', 9578, 64676, 4358, NULL, '1.0000', '8.0000', '8.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 (68020, '2022-03-23', 7715, 64677, 4358, NULL, '1.0000', '1.8900', '1.8900', '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 (68021, '2022-03-23', 8680, 64678, 4358, NULL, '1.0000', '2.0000', '2.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 (68022, '2022-03-23', 7317, 64679, 4358, NULL, '2.0000', '19.5500', '19.5500', '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 (68023, '2022-03-23', 7431, 64680, 4358, NULL, '2.0000', '18.0000', '18.0000', '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 (68024, '2022-03-23', 7848, 64681, 4358, NULL, '1.0000', '1.3500', '1.3500', '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 (68025, '2022-03-23', 8721, 64682, 4358, 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 (68026, '2022-03-23', 7558, 64683, 4358, 33814, '5.0000', '1.9700', '1.9700', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68027, '2022-03-23', 8079, 64684, 4358, NULL, '1.0000', '14.3600', '14.3600', '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 (68028, '2022-03-23', 7708, 64685, 4358, NULL, '1.0000', '7.8000', '7.8000', '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 (68029, '2022-03-23', 7518, 64686, 4358, NULL, '1.0000', '7.8200', '7.8200', '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 (68030, '2022-03-23', 7428, 64687, 4358, NULL, '4.0000', '2.6100', '2.6100', '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 (68031, '2022-03-23', 8430, 64688, 4358, NULL, '1.0000', '32.0800', '32.0800', '42.5000', '42.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68032, '2022-03-23', 7744, 64689, 4358, 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 (68033, '2022-03-23', 9411, 64690, 4358, NULL, '1.0000', '6.8700', '6.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 (68034, '2022-03-23', 2848, 64691, 4359, NULL, '1.0000', '16.2000', '16.2000', '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 (68035, '2022-03-23', 1602, 64692, 4359, 5897, '-118.0000', '6.7859', '6.7859', '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 (68036, '2022-03-23', 1602, 64692, 4359, NULL, '119.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-119.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68037, '2022-03-23', 2236, 64693, 4359, 2780, '-16.0000', '5.6599', '5.6599', '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 (68038, '2022-03-23', 2236, 64693, 4359, NULL, '17.0000', '5.6599', '5.6599', '8.0000', '8.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 (68039, '2022-03-23', 2637, 64694, 4359, NULL, '1.0000', '10.0000', '10.0000', '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 (68040, '2022-03-23', 9740, 64695, 4359, NULL, '1.0000', '0.6600', '0.6600', '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 (68041, '2022-03-23', 2070, 64696, 4359, NULL, '1.0000', '2.0000', '2.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 (68042, '2022-03-23', 2066, 64697, 4359, 5484, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '15.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 (68043, '2022-03-23', 1395, 64698, 4359, NULL, '1.0000', '90.0000', '90.0000', '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 (68044, '2022-03-23', 8596, 64699, 4359, 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 (68045, '2022-03-23', 1620, 64700, 4359, 8955, '-13.0000', '408.8259', '408.8259', '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 (68046, '2022-03-23', 1620, 64700, 4359, NULL, '17.0000', '408.8259', '408.8259', '4.0000', '4.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 (68047, '2022-03-23', 7744, 64701, 4360, NULL, '1.0000', '2.5833', '2.5833', '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 (68048, '2022-03-23', 1499, 64702, 4360, 52148, '3.0000', '0.3747', '0.3747', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68049, '2022-03-23', 2237, 64703, 4360, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68050, '2022-03-23', 7411, 64704, 4360, NULL, '1.0000', '1.3013', '1.3013', '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 (68051, '2022-03-23', 2283, 64705, 4360, 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 (68052, '2022-03-23', 9199, 64706, 4360, NULL, '1.0000', '5.4200', '5.4200', '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 (68053, '2022-03-23', 7638, 64707, 4360, 34927, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68054, '2022-03-23', 1493, 64708, 4360, NULL, '1.0000', '5.2600', '5.2600', '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 (68055, '2022-03-23', 2315, 64709, 4360, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '56.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68056, '2022-03-23', 2169, 64710, 4360, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68057, '2022-03-23', 9399, 64711, 4360, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68058, '2022-03-23', 9753, 64712, 4360, 49262, '1.0000', '52.0000', '52.0000', '69.0000', '69.0000', '0.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68059, '2022-03-23', 1848, 64713, 4360, 19357, '47.0000', '0.4200', '0.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 (68060, '2022-03-23', 1848, 64713, 4360, NULL, '1.0000', '0.4200', '0.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 (68061, '2022-03-23', 9578, 64714, 4360, 42661, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68062, '2022-03-23', 1912, 64715, 4360, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68063, '2022-03-23', 1805, 64716, 4360, NULL, '1.0000', '15.0770', '15.0770', '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 (68064, '2022-03-23', 2286, 64717, 4360, 50523, '1.0000', '4.4402', '4.4402', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68065, '2022-03-23', 2136, 64718, 4360, 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 (68066, '2022-03-23', 1410, 64719, 4360, NULL, '1.0000', '-0.4921', '-0.4921', '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 (68067, '2022-03-23', 1590, 64720, 4360, 50113, '1.0000', '1.7600', '1.7600', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68068, '2022-03-23', 7459, 64721, 4360, NULL, '5.0000', '-6.1729', '-6.1729', '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 (68069, '2022-03-23', 8133, 64722, 4360, NULL, '1.0000', '-1141.7448', '-1141.7448', '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 (68070, '2022-03-23', 2643, 64723, 4360, 51987, '2.0000', '0.8700', '0.8700', '1.2000', '1.2000', '20.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68071, '2022-03-23', 1499, 64724, 4360, 52148, '1.0000', '0.3747', '0.3747', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68072, '2022-03-23', 2332, 64725, 4360, NULL, '1.0000', '-1.4600', '-1.4600', '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 (68073, '2022-03-23', 9828, 64726, 4360, NULL, '2.0000', '2.9100', '2.9100', '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 (68074, '2022-03-23', 1420, 64727, 4360, 48955, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68075, '2022-03-23', 2950, 64728, 4360, 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 (68076, '2022-03-23', 2293, 64729, 4360, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68077, '2022-03-23', 9834, 64730, 4360, 51659, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68078, '2022-03-23', 1337, 64731, 4360, NULL, '1.0000', '2.0000', '2.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 (68079, '2022-03-23', 2660, 64732, 4360, 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 (68080, '2022-03-23', 1867, 64733, 4361, 48507, '1.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '11.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68081, '2022-03-23', 9748, 64734, 4361, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68082, '2022-03-23', 2850, 64735, 4361, 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 (68083, '2022-03-23', 2815, 64736, 4361, 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 (68084, '2022-03-23', 1863, 64737, 4361, 52353, '3.0000', '1.3923', '1.3923', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68085, '2022-03-23', 9330, 64738, 4361, 51318, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68086, '2022-03-23', 7658, 64739, 4361, NULL, '10.0000', '10.1500', '10.1500', '2.8000', '2.8000', '-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 (68087, '2022-03-23', 1339, 64740, 4361, 51991, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68088, '2022-03-23', 1562, 64741, 4361, 49515, '1.0000', '5.5300', '5.5300', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 382);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68089, '2022-03-23', 1602, 64742, 4361, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68090, '2022-03-23', 9847, 64743, 4361, 51398, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68091, '2022-03-23', 1912, 64744, 4361, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68092, '2022-03-23', 9482, 64745, 4361, NULL, '2.0000', '0.5000', '0.5000', '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 (68093, '2022-03-23', 2017, 64746, 4361, NULL, '1.0000', '23.0000', '23.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 (68094, '2022-03-23', 7584, 64747, 4361, 52200, '1.0000', '1.7933', '1.7933', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68095, '2022-03-23', 7381, 64748, 4361, 49866, '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 (68096, '2022-03-23', 2992, 64749, 4361, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68097, '2022-03-23', 2316, 64750, 4361, 49420, '1.0000', '48.6000', '48.6000', '53.0000', '53.0000', '5.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68098, '2022-03-23', 7780, 64751, 4361, NULL, '1.0000', '2.6000', '2.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 (68099, '2022-03-23', 9649, 64752, 4361, NULL, '1.0000', '14.4100', '14.4100', '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 (68100, '2022-03-23', 9748, 64753, 4361, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68101, '2022-03-23', 2256, 64754, 4361, 52191, '1.0000', '13.7060', '13.7060', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68102, '2022-03-23', 1651, 64755, 4361, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68103, '2022-03-23', 2089, 64756, 4361, 51309, '1.0000', '6.9414', '6.9414', '9.2400', '9.2400', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68104, '2022-03-23', 7550, 64757, 4361, NULL, '7.0000', '4.7300', '4.7300', '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 (68105, '2022-03-23', 1868, 64758, 4361, 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 (68106, '2022-03-23', 9845, 64759, 4362, 51396, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68107, '2022-03-23', 9108, 64760, 4362, NULL, '1.0000', '3.4000', '3.4000', '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 (68108, '2022-03-23', 7318, 64761, 4362, 51230, '1.0000', '10.5126', '10.5126', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68109, '2022-03-23', 2236, 64762, 4362, 52203, '1.0000', '-2.3919', '-2.3919', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68110, '2022-03-23', 1695, 64763, 4362, NULL, '1.0000', '-53.5296', '-53.5296', '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 (68111, '2022-03-23', 1999, 64764, 4362, 51934, '1.0000', '6.6486', '6.6486', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68112, '2022-03-23', 9245, 64765, 4362, NULL, '1.0000', '15.1700', '15.1700', '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 (68113, '2022-03-23', 1528, 64766, 4362, 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 (68114, '2022-03-23', 8362, 64767, 4362, NULL, '2.0000', '4.1000', '4.1000', '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 (68115, '2022-03-23', 9695, 64768, 4362, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68116, '2022-03-23', 2169, 64769, 4362, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68117, '2022-03-23', 2916, 64770, 4362, NULL, '1.0000', '8.9191', '8.9191', '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 (68118, '2022-03-23', 2384, 64771, 4362, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68119, '2022-03-23', 2315, 64772, 4362, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '54.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68120, '2022-03-23', 2221, 64773, 4362, 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 (68121, '2022-03-23', 9840, 64774, 4362, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68122, '2022-03-23', 2066, 64775, 4362, NULL, '2.0000', '0.5100', '0.5100', '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 (68123, '2022-03-23', 1647, 64776, 4363, NULL, '1.0000', '1.8900', '1.8900', '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 (68124, '2022-03-23', 2169, 64777, 4363, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68125, '2022-03-23', 1867, 64778, 4363, 48507, '1.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68126, '2022-03-23', 1674, 64779, 4363, 52225, '1.0000', '11.2958', '11.2958', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68127, '2022-03-23', 2105, 64780, 4363, 52224, '2.0000', '2.4500', '2.4500', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68128, '2022-03-23', 1422, 64781, 4363, 48942, '1.0000', '20.0741', '20.0741', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68129, '2022-03-23', 1851, 64782, 4363, 51239, '1.0000', '12.8900', '12.8900', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68130, '2022-03-23', 9828, 64783, 4363, NULL, '1.0000', '2.9100', '2.9100', '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 (68131, '2022-03-23', 8333, 64784, 4363, 48712, '1.0000', '7.5900', '7.5900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68132, '2022-03-23', 8979, 64785, 4363, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '42.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68133, '2022-03-23', 7357, 64786, 4363, NULL, '1.0000', '12.2000', '12.2000', '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 (68134, '2022-03-23', 2357, 64787, 4363, 43270, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68135, '2022-03-23', 9751, 64788, 4363, 51989, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68136, '2022-03-23', 1580, 64789, 4364, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68137, '2022-03-23', 8746, 64790, 4364, 51022, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68138, '2022-03-23', 2167, 64791, 4364, NULL, '1.0000', '1.7907', '1.7907', '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 (68139, '2022-03-23', 1409, 64792, 4364, 51679, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68140, '2022-03-23', 1809, 64793, 4364, 50236, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68141, '2022-03-23', 1863, 64794, 4364, 52353, '2.0000', '1.3923', '1.3923', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68142, '2022-03-23', 1839, 64795, 4364, NULL, '1.0000', '-169.0668', '-169.0668', '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 (68143, '2022-03-23', 3023, 64796, 4364, 50234, '1.0000', '5.5275', '5.5275', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68144, '2022-03-23', 1314, 64797, 4364, 48145, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68145, '2022-03-23', 9695, 64798, 4364, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68146, '2022-03-23', 2643, 64799, 4364, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '19.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68147, '2022-03-23', 1867, 64800, 4364, 48507, '1.0000', '-3.3648', '-3.3648', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68148, '2022-03-23', 1675, 64801, 4364, NULL, '1.0000', '20.7021', '20.7021', '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 (68149, '2022-03-23', 1532, 64802, 4364, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68150, '2022-03-23', 2293, 64803, 4364, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68151, '2022-03-23', 7690, 64804, 4365, NULL, '1.0000', '5.3000', '5.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 (68152, '2022-03-23', 1331, 64805, 4365, 52469, '1.0000', '120.9730', '120.9730', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68153, '2022-03-23', 9694, 64806, 4365, NULL, '1.0000', '16.3000', '16.3000', '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 (68154, '2022-03-23', 7899, 64807, 4365, NULL, '1.0000', '3.3000', '3.3000', '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 (68155, '2022-03-23', 2069, 64808, 4365, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '11.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68156, '2022-03-23', 2225, 64809, 4365, 42762, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68157, '2022-03-23', 2225, 64809, 4365, NULL, '1.0000', '14.0000', '14.0000', '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 (68158, '2022-03-23', 8888, 64810, 4365, 42764, '1.0000', '28.0000', '28.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68159, '2022-03-23', 7512, 64811, 4365, 52013, '1.0000', '6.0204', '6.0204', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68160, '2022-03-23', 7512, 64811, 4365, NULL, '2.0000', '6.0204', '6.0204', '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 (68161, '2022-03-23', 9179, 64812, 4365, NULL, '1.0000', '12.0000', '12.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 (68162, '2022-03-23', 7853, 64813, 4365, NULL, '1.0000', '-23535.2849', '-23535.2849', '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 (68163, '2022-03-23', 1880, 64814, 4365, NULL, '1.0000', '4.4789', '4.4789', '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 (68164, '2022-03-23', 9463, 64815, 4365, NULL, '1.0000', '4.3333', '4.3333', '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 (68165, '2022-03-23', 7674, 64816, 4365, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68166, '2022-03-23', 2891, 64817, 4365, 51807, '1.0000', '9.4862', '9.4862', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68167, '2022-03-23', 8152, 64818, 4365, NULL, '1.0000', '0.1400', '0.1400', '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 (68168, '2022-03-23', 2284, 64819, 4365, 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 (68169, '2022-03-23', 7411, 64820, 4365, NULL, '1.0000', '1.2529', '1.2529', '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 (68170, '2022-03-23', 2906, 64821, 4365, 50455, '2.0000', '2.6818', '2.6818', '4.0000', '4.0000', '41.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68171, '2022-03-23', 2242, 64822, 4365, 50663, '3.0000', '0.5833', '0.5833', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68172, '2022-03-23', 7509, 64823, 4365, 52442, '1.0000', '8.2305', '8.2305', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68173, '2022-03-23', 7787, 64824, 4365, NULL, '1.0000', '11.7735', '11.7735', '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 (68174, '2022-03-23', 7411, 64825, 4365, NULL, '5.0000', '1.2529', '1.2529', '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 (68175, '2022-03-23', 9092, 64826, 4365, 50305, '3.0000', '0.3129', '0.3129', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68176, '2022-03-23', 9274, 64827, 4365, NULL, '1.0000', '3.5638', '3.5638', '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 (68177, '2022-03-23', 9817, 64828, 4365, 50715, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68178, '2022-03-23', 7780, 64829, 4365, NULL, '1.0000', '-8.7461', '-8.7461', '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 (68179, '2022-03-23', 2352, 64830, 4365, NULL, '3.0000', '1.9000', '1.9000', '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 (68180, '2022-03-23', 8607, 64831, 4365, 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 (68181, '2022-03-23', 7324, 64832, 4365, 45796, '1.0000', '5.3429', '5.3429', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68182, '2022-03-23', 8638, 64833, 4365, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68183, '2022-03-23', 7673, 64834, 4365, NULL, '1.0000', '7.6378', '7.6378', '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 (68184, '2022-03-23', 8359, 64835, 4365, 51787, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68185, '2022-03-23', 7355, 64836, 4365, NULL, '1.0000', '4.4343', '4.4343', '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 (68186, '2022-03-23', 9788, 64837, 4365, NULL, '4.0000', '1.3000', '1.3000', '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 (68187, '2022-03-23', 7518, 64838, 4365, NULL, '1.0000', '-914.6441', '-914.6441', '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 (68188, '2022-03-23', 9734, 64839, 4365, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68189, '2022-03-23', 7674, 64840, 4365, 49267, '1.0000', '70.5643', '70.5643', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68190, '2022-03-23', 9804, 64841, 4365, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68191, '2022-03-23', 1450, 64842, 4365, 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 (68192, '2022-03-23', 7514, 64843, 4365, NULL, '2.0000', '932.5375', '932.5375', '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 (68193, '2022-03-23', 1337, 64844, 4366, NULL, '1.0000', '2.0000', '2.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 (68194, '2022-03-23', 1590, 64845, 4366, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68195, '2022-03-23', 1337, 64846, 4366, NULL, '1.0000', '2.0000', '2.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 (68196, '2022-03-23', 8761, 64847, 4366, NULL, '1.0000', '11.3420', '11.3420', '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 (68197, '2022-03-23', 8202, 64848, 4366, NULL, '1.0000', '1.6600', '1.6600', '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 (68198, '2022-03-23', 9109, 64849, 4366, 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 (68199, '2022-03-23', 8979, 64850, 4367, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '41.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68200, '2022-03-23', 9105, 64851, 4367, NULL, '1.0000', '-0.9200', '-0.9200', '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 (68201, '2022-03-23', 2346, 64852, 4367, NULL, '1.0000', '5.8000', '5.8000', '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 (68202, '2022-03-23', 2521, 64853, 4367, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '6.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68203, '2022-03-23', 1690, 64854, 4367, NULL, '1.0000', '5.8308', '5.8308', '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 (68204, '2022-03-23', 2068, 64855, 4367, 52329, '1.0000', '11.2751', '11.2751', '15.3100', '15.3100', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68205, '2022-03-23', 9856, 64856, 4367, 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 (68206, '2022-03-23', 1812, 64857, 4367, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68207, '2022-03-23', 1640, 64858, 4367, 47119, '1.0000', '3.0496', '3.0496', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68208, '2022-03-23', 1602, 64859, 4368, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68209, '2022-03-23', 9628, 64860, 4368, 49714, '1.0000', '46.1200', '46.1200', '55.0000', '55.0000', '3.0000', 1, 0, NULL, 394);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68210, '2022-03-23', 1493, 64861, 4369, NULL, '1.0000', '5.2600', '5.2600', '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 (68211, '2022-03-23', 9482, 64862, 4369, 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 (68212, '2022-03-23', 2858, 64863, 4370, NULL, '2.0000', '1.0000', '1.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 (68213, '2022-03-23', 1873, 64864, 4370, 50889, '1.0000', '12.3795', '12.3795', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68214, '2022-03-23', 1432, 64865, 4370, 52084, '1.0000', '9.2801', '9.2801', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68215, '2022-03-23', 9794, 64866, 4370, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '91.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68216, '2022-03-23', 1863, 64867, 4370, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68217, '2022-03-23', 2080, 64868, 4370, 46042, '1.0000', '11.4167', '11.4167', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68218, '2022-03-23', 2683, 64869, 4370, 46743, '1.0000', '45.3823', '45.3823', '70.0000', '70.0000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68219, '2022-03-23', 2858, 64870, 4370, NULL, '2.0000', '1.0000', '1.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 (68220, '2022-03-23', 8969, 64871, 4370, 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 (68221, '2022-03-23', 9732, 64872, 4370, 52298, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68222, '2022-03-23', 7482, 64873, 4370, NULL, '1.0000', '3.0500', '3.0500', '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 (68223, '2022-03-23', 9160, 64874, 4370, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68224, '2022-03-23', 7675, 64875, 4370, NULL, '1.0000', '11.4300', '11.4300', '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 (68225, '2022-03-23', 7364, 64876, 4370, NULL, '1.0000', '5.5300', '5.5300', '3.7000', '3.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 (68226, '2022-03-23', 1528, 64877, 4370, 44554, '1.0000', '53.0619', '53.0619', '6.5000', '6.5000', '26.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68227, '2022-03-23', 1863, 64878, 4370, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68228, '2022-03-23', 1311, 64879, 4370, NULL, '4.0000', '0.3700', '0.3700', '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 (68229, '2022-03-23', 7741, 64880, 4370, 52297, '1.0000', '-8.1573', '-8.1573', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68230, '2022-03-23', 1851, 64881, 4370, 52259, '1.0000', '12.9288', '12.9288', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68231, '2022-03-23', 7736, 64882, 4371, NULL, '1.0000', '-6.4252', '-6.4252', '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 (68232, '2022-03-23', 1901, 64883, 4371, NULL, '1.0000', '2.0100', '2.0100', '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 (68233, '2022-03-23', 7892, 64884, 4371, NULL, '1.0000', '4.2000', '4.2000', '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 (68234, '2022-03-23', 9272, 64885, 4371, NULL, '1.0000', '3.1000', '3.1000', '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 (68235, '2022-03-23', 8746, 64886, 4371, 39419, '1.0000', '3.5400', '3.5400', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68236, '2022-03-23', 7728, 64887, 4371, 52025, '1.0000', '1.8799', '1.8799', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68237, '2022-03-23', 8000, 64888, 4371, NULL, '1.0000', '1674.2861', '1674.2861', '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 (68238, '2022-03-23', 7787, 64889, 4371, NULL, '1.0000', '11.7735', '11.7735', '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 (68239, '2022-03-24', 2366, 64890, 4372, NULL, '2.0000', '-24.7743', '-24.7743', '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 (68240, '2022-03-24', 2673, 64891, 4372, 51496, '1.0000', '15.1250', '15.1250', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68241, '2022-03-24', 1945, 64892, 4372, 52328, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68242, '2022-03-24', 2236, 64893, 4372, 52203, '1.0000', '-2.3919', '-2.3919', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68243, '2022-03-24', 2332, 64894, 4372, NULL, '1.0000', '-1.4600', '-1.4600', '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 (68244, '2022-03-24', 2237, 64895, 4372, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68245, '2022-03-24', 9751, 64896, 4372, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68246, '2022-03-24', 2136, 64897, 4372, 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 (68247, '2022-03-24', 1590, 64898, 4372, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68248, '2022-03-24', 1501, 64899, 4372, NULL, '1.0000', '2.1784', '2.1784', '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 (68249, '2022-03-24', 2167, 64900, 4372, NULL, '1.0000', '1.7907', '1.7907', '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 (68250, '2022-03-24', 2251, 64901, 4372, 52186, '1.0000', '11.3731', '11.3731', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68251, '2022-03-24', 1818, 64902, 4372, 51648, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68252, '2022-03-24', 7744, 64903, 4372, NULL, '1.0000', '2.5833', '2.5833', '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 (68253, '2022-03-24', 2221, 64904, 4372, 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 (68254, '2022-03-24', 2299, 64905, 4372, 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 (68255, '2022-03-24', 1779, 64906, 4372, 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 (68256, '2022-03-24', 9794, 64907, 4372, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68257, '2022-03-24', 2161, 64908, 4372, 44159, '1.0000', '9.5000', '9.5000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68258, '2022-03-24', 1839, 64909, 4372, NULL, '1.0000', '-169.0668', '-169.0668', '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 (68259, '2022-03-24', 9738, 64910, 4372, 52164, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68260, '2022-03-24', 1657, 64911, 4372, 19371, '2.0000', '90.0000', '90.0000', '0.6000', '0.6000', '182.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68261, '2022-03-24', 1339, 64912, 4372, 51991, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68262, '2022-03-24', 1863, 64913, 4372, 52353, '2.0000', '1.3923', '1.3923', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68263, '2022-03-24', 2109, 64914, 4372, 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 (68264, '2022-03-24', 9736, 64915, 4372, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68265, '2022-03-24', 1339, 64916, 4372, 51991, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68266, '2022-03-24', 1313, 64917, 4372, 43274, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68267, '2022-03-24', 9839, 64918, 4372, 51248, '1.0000', '15.0200', '15.0200', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68268, '2022-03-24', 2379, 64919, 4372, NULL, '1.0000', '0.2954', '0.2954', '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 (68269, '2022-03-24', 1837, 64920, 4372, NULL, '1.0000', '2.5335', '2.5335', '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 (68270, '2022-03-24', 7866, 64921, 4372, NULL, '3.0000', '2.5000', '2.5000', '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 (68271, '2022-03-24', 1935, 64922, 4372, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68272, '2022-03-24', 2221, 64923, 4372, 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 (68273, '2022-03-24', 9710, 64924, 4372, 44458, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68274, '2022-03-24', 2352, 64925, 4372, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (68275, '2022-03-24', 7482, 64926, 4372, NULL, '1.0000', '2.5019', '2.5019', '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 (68276, '2022-03-24', 8039, 64927, 4372, NULL, '1.0000', '12.9000', '12.9000', '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 (68277, '2022-03-24', 1378, 64928, 4372, 13760, '1.0000', '90.0000', '90.0000', '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 (68278, '2022-03-24', 1339, 64929, 4372, 51991, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68279, '2022-03-24', 9862, 64930, 4372, 52197, '1.0000', '16.5000', '16.5000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68280, '2022-03-24', 2327, 64931, 4372, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68281, '2022-03-24', 2327, 64932, 4372, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68282, '2022-03-24', 7333, 64933, 4372, NULL, '1.0000', '13.5000', '13.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 (68283, '2022-03-24', 1564, 64934, 4373, 18921, '2.0000', '2.6000', '2.6000', '4.5000', '4.5000', '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 (68284, '2022-03-24', 2906, 64935, 4373, 18651, '-3.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 (68285, '2022-03-24', 2906, 64935, 4373, NULL, '5.0000', '2.6000', '2.6000', '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 (68286, '2022-03-24', 2823, 64936, 4373, 19684, '-14.0000', '11.2100', '11.2100', '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 (68287, '2022-03-24', 2823, 64936, 4373, NULL, '15.0000', '11.2100', '11.2100', '7.5000', '7.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 (68288, '2022-03-24', 2990, 64937, 4373, NULL, '1.0000', '1.1200', '1.1200', '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 (68289, '2022-03-24', 8395, 64938, 4373, NULL, '3.0000', '0.9700', '0.9700', '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 (68290, '2022-03-24', 7954, 64939, 4373, NULL, '2.0000', '3.0000', '3.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 (68291, '2022-03-24', 8393, 64940, 4374, 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 (68292, '2022-03-24', 9794, 64941, 4374, NULL, '1.0000', '1.0800', '1.0800', '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 (68293, '2022-03-24', 9098, 64942, 4374, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68294, '2022-03-24', 7342, 64943, 4374, NULL, '1.0000', '15.6000', '15.6000', '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 (68295, '2022-03-24', 1804, 64944, 4374, 4916, '-8.0000', '4.2500', '4.2500', '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 (68296, '2022-03-24', 1804, 64944, 4374, NULL, '9.0000', '4.2500', '4.2500', '6.5000', '6.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 (68297, '2022-03-24', 8789, 64945, 4374, NULL, '1.0000', '4.9400', '4.9400', '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 (68298, '2022-03-24', 9863, 64946, 4374, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68299, '2022-03-24', 7952, 64947, 4374, 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 (68300, '2022-03-24', 7419, 64948, 4374, NULL, '2.0000', '25.9000', '25.9000', '34.5000', '34.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 (68301, '2022-03-24', 7601, 64949, 4374, NULL, '5.0000', '13.5000', '13.5000', '18.0000', '18.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 (68302, '2022-03-24', 7709, 64950, 4374, NULL, '4.0000', '3.5000', '3.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 (68303, '2022-03-24', 8113, 64951, 4374, NULL, '30.0000', '29.5000', '29.5000', '3.2000', '3.2000', '-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 (68304, '2022-03-24', 7796, 64952, 4374, NULL, '1.0000', '13.5000', '13.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 (68305, '2022-03-24', 8277, 64953, 4374, NULL, '2.0000', '8.5000', '8.5000', '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 (68306, '2022-03-24', 8017, 64954, 4374, NULL, '2.0000', '40.0000', '40.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 (68307, '2022-03-24', 7780, 64955, 4374, NULL, '1.0000', '11.6000', '11.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 (68308, '2022-03-24', 1501, 64956, 4374, 20590, '1.0000', '2.0500', '2.0500', '4.0000', '4.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 (68309, '2022-03-24', 7886, 64957, 4374, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68310, '2022-03-24', 7672, 64958, 4374, NULL, '1.0000', '1.0200', '1.0200', '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 (68311, '2022-03-24', 8208, 64959, 4374, NULL, '1.0000', '33.0000', '33.0000', '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 (68312, '2022-03-24', 9862, 64960, 4374, NULL, '1.0000', '16.5000', '16.5000', '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 (68313, '2022-03-24', 2557, 64961, 4374, 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 (68314, '2022-03-24', 7671, 64962, 4374, NULL, '2.0000', '15.5000', '15.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 (68315, '2022-03-24', 7347, 64963, 4374, NULL, '1.0000', '21.9000', '21.9000', '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 (68316, '2022-03-24', 8834, 64964, 4374, 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 (68317, '2022-03-24', 1620, 64965, 4374, 8955, '-17.0000', '408.8259', '408.8259', '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 (68318, '2022-03-24', 1620, 64965, 4374, NULL, '21.0000', '408.8259', '408.8259', '4.0000', '4.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68319, '2022-03-24', 7725, 64966, 4374, 33062, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68320, '2022-03-24', 7412, 64967, 4374, NULL, '1.0000', '1.5200', '1.5200', '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 (68321, '2022-03-24', 1765, 64968, 4374, 3175, '-10.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 (68322, '2022-03-24', 1765, 64968, 4374, NULL, '14.0000', '90.0000', '90.0000', '7.5000', '7.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 (68323, '2022-03-24', 8061, 64969, 4374, NULL, '1.0000', '6.5000', '6.5000', '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 (68324, '2022-03-24', 8415, 64970, 4374, NULL, '2.0000', '3.2500', '3.2500', '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 (68325, '2022-03-24', 2289, 64971, 4374, 2949, '-85.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 (68326, '2022-03-24', 2289, 64971, 4374, NULL, '87.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68327, '2022-03-24', 8359, 64972, 4374, 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 (68328, '2022-03-24', 9819, 64973, 4374, NULL, '1.0000', '3.6300', '3.6300', '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 (68329, '2022-03-24', 1841, 64974, 4374, NULL, '4.0000', '142.5780', '142.5780', '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 (68330, '2022-03-24', 1840, 64975, 4374, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (68331, '2022-03-24', 2289, 64976, 4374, 2949, '-85.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 (68332, '2022-03-24', 2289, 64976, 4374, NULL, '87.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68333, '2022-03-24', 9734, 64977, 4374, NULL, '2.0000', '0.3200', '0.3200', '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 (68334, '2022-03-24', 9824, 64978, 4374, 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 (68335, '2022-03-24', 7641, 64979, 4374, NULL, '1.0000', '1.9000', '1.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 (68336, '2022-03-24', 8616, 64980, 4374, 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 (68337, '2022-03-24', 7428, 64981, 4374, NULL, '1.0000', '2.6100', '2.6100', '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 (68338, '2022-03-24', 7514, 64982, 4374, NULL, '2.0000', '2.2500', '2.2500', '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 (68339, '2022-03-24', 7514, 64983, 4375, NULL, '1.0000', '932.5375', '932.5375', '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 (68340, '2022-03-24', 9275, 64984, 4375, NULL, '2.0000', '6.3000', '6.3000', '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 (68341, '2022-03-24', 7368, 64985, 4375, 52730, '1.0000', '-4.3889', '-4.3889', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68342, '2022-03-24', 8547, 64986, 4375, 39596, '1.0000', '7.7333', '7.7333', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68343, '2022-03-24', 8547, 64986, 4375, NULL, '1.0000', '7.7333', '7.7333', '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 (68344, '2022-03-24', 8331, 64987, 4375, NULL, '1.0000', '29.3500', '29.3500', '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 (68345, '2022-03-24', 2717, 64988, 4375, NULL, '1.0000', '14.0000', '14.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 (68346, '2022-03-24', 1450, 64989, 4375, 52735, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68347, '2022-03-24', 9791, 64990, 4375, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '138.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68348, '2022-03-24', 2669, 64991, 4375, NULL, '2.0000', '24.0100', '24.0100', '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 (68349, '2022-03-24', 7612, 64992, 4375, 50635, '2.0000', '2.3846', '2.3846', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68350, '2022-03-24', 7638, 64993, 4375, 52447, '1.0000', '-7.9283', '-7.9283', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68351, '2022-03-24', 7641, 64994, 4375, NULL, '1.0000', '95.0035', '95.0035', '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 (68352, '2022-03-24', 7781, 64995, 4375, NULL, '3.0000', '4.2500', '4.2500', '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 (68353, '2022-03-24', 1501, 64996, 4375, 52724, '3.0000', '2.2773', '2.2773', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68354, '2022-03-24', 7598, 64997, 4375, NULL, '1.0000', '1.2800', '1.2800', '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 (68355, '2022-03-24', 7457, 64998, 4375, 30064, '1.0000', '3.6088', '3.6088', '8.0000', '8.0000', '68.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68356, '2022-03-24', 8940, 64999, 4375, NULL, '1.0000', '4.9900', '4.9900', '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 (68357, '2022-03-24', 8038, 65000, 4375, 52757, '1.0000', '6.4949', '6.4949', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68358, '2022-03-24', 7674, 65001, 4375, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '119.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68359, '2022-03-24', 1935, 65002, 4375, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '150.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68360, '2022-03-24', 1339, 65003, 4375, NULL, '1.0000', '1.6199', '1.6199', '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 (68361, '2022-03-24', 7715, 65004, 4375, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '34.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68362, '2022-03-24', 1867, 65005, 4375, 50454, '1.0000', '11.8714', '11.8714', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68363, '2022-03-24', 7848, 65006, 4375, NULL, '1.0000', '-29.7778', '-29.7778', '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 (68364, '2022-03-24', 7518, 65007, 4375, NULL, '1.0000', '-914.6441', '-914.6441', '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 (68365, '2022-03-24', 7708, 65008, 4375, NULL, '1.0000', '-415.6632', '-415.6632', '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 (68366, '2022-03-24', 7523, 65009, 4375, NULL, '1.0000', '9.7000', '9.7000', '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 (68367, '2022-03-24', 2315, 65010, 4375, NULL, '1.0000', '0.8863', '0.8863', '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 (68368, '2022-03-24', 7658, 65011, 4375, 52446, '10.0000', '341.6222', '341.6222', '2.8000', '2.8000', '64.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68369, '2022-03-24', 2061, 65012, 4375, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68370, '2022-03-24', 7333, 65013, 4375, NULL, '2.0000', '13.5000', '13.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 (68371, '2022-03-24', 8763, 65014, 4375, 43939, '1.0000', '5.4000', '5.4000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68372, '2022-03-24', 7524, 65015, 4375, NULL, '2.0000', '6.3550', '6.3550', '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 (68373, '2022-03-24', 1420, 65016, 4376, 46784, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68374, '2022-03-24', 2478, 65017, 4376, 5191, '1.0000', '3.0000', '3.0000', '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 (68375, '2022-03-24', 1499, 65018, 4376, 45093, '2.0000', '0.4164', '0.4164', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68376, '2022-03-24', 1432, 65019, 4376, 52084, '1.0000', '9.2801', '9.2801', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68377, '2022-03-24', 2657, 65020, 4376, 49178, '1.0000', '0.5900', '0.5900', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68378, '2022-03-24', 7459, 65021, 4376, 50008, '8.0000', '2.3500', '2.3500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68379, '2022-03-24', 7459, 65021, 4376, NULL, '2.0000', '2.3500', '2.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 (68380, '2022-03-24', 7459, 65022, 4376, 50008, '8.0000', '2.3500', '2.3500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68381, '2022-03-24', 7459, 65022, 4376, NULL, '12.0000', '2.3500', '2.3500', '3.0000', '3.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 (68382, '2022-03-24', 1328, 65023, 4376, 49464, '1.0000', '3.8357', '3.8357', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68383, '2022-03-24', 2302, 65024, 4376, 52087, '1.0000', '5.1943', '5.1943', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68384, '2022-03-24', 1564, 65025, 4376, 52078, '2.0000', '8.8672', '8.8672', '4.5000', '4.5000', '28.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68385, '2022-03-24', 2448, 65026, 4376, 5802, '1.0000', '5.0000', '5.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 (68386, '2022-03-24', 7482, 65027, 4376, NULL, '1.0000', '3.0500', '3.0500', '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 (68387, '2022-03-24', 2242, 65028, 4376, 49112, '2.0000', '0.6543', '0.6543', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68388, '2022-03-24', 7753, 65029, 4377, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68389, '2022-03-24', 1577, 65030, 4377, NULL, '1.0000', '2.7885', '2.7885', '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 (68390, '2022-03-24', 2315, 65031, 4377, NULL, '1.0000', '0.8863', '0.8863', '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 (68391, '2022-03-24', 7886, 65032, 4377, NULL, '1.0000', '6.7841', '6.7841', '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 (68392, '2022-03-24', 9098, 65033, 4377, NULL, '1.0000', '16.3536', '16.3536', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68393, '2022-03-24', 8984, 65034, 4377, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '19.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68394, '2022-03-24', 7709, 65035, 4377, NULL, '2.0000', '154.5165', '154.5165', '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 (68395, '2022-03-24', 7671, 65036, 4377, NULL, '1.0000', '76.3606', '76.3606', '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 (68396, '2022-03-24', 2473, 65037, 4377, 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 (68397, '2022-03-24', 7781, 65038, 4377, NULL, '3.0000', '4.2500', '4.2500', '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 (68398, '2022-03-24', 1501, 65039, 4377, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68399, '2022-03-24', 7411, 65040, 4377, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68400, '2022-03-24', 7675, 65041, 4377, NULL, '1.0000', '84.8590', '84.8590', '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 (68401, '2022-03-24', 8769, 65042, 4378, NULL, '1.0000', '6.6000', '6.6000', '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 (68402, '2022-03-24', 8763, 65043, 4378, NULL, '2.0000', '5.4000', '5.4000', '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 (68403, '2022-03-24', 9695, 65044, 4378, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68404, '2022-03-24', 2332, 65045, 4378, NULL, '1.0000', '-1.4600', '-1.4600', '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 (68405, '2022-03-24', 7780, 65046, 4378, NULL, '1.0000', '2.6000', '2.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 (68406, '2022-03-24', 2167, 65047, 4378, NULL, '1.0000', '1.7907', '1.7907', '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 (68407, '2022-03-24', 1432, 65048, 4378, 48978, '1.0000', '9.7698', '9.7698', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68408, '2022-03-24', 2352, 65049, 4378, NULL, '4.0000', '126.2588', '126.2588', '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 (68409, '2022-03-24', 1757, 65050, 4378, NULL, '1.0000', '2.3731', '2.3731', '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 (68410, '2022-03-24', 1307, 65051, 4378, NULL, '1.0000', '-0.0521', '-0.0521', '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 (68411, '2022-03-24', 2937, 65052, 4378, 51655, '1.0000', '5.5731', '5.5731', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68412, '2022-03-24', 1339, 65053, 4378, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68413, '2022-03-24', 1590, 65054, 4378, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68414, '2022-03-24', 1912, 65055, 4378, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68415, '2022-03-24', 7411, 65056, 4378, NULL, '1.0000', '1.3013', '1.3013', '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 (68416, '2022-03-24', 1672, 65057, 4378, 52945, '10.0000', '4.5250', '4.5250', '5.5000', '5.5000', '28.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68417, '2022-03-24', 9805, 65058, 4378, NULL, '1.0000', '31.5000', '31.5000', '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 (68418, '2022-03-24', 7802, 65059, 4378, 52947, '2.0000', '1.4200', '1.4200', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68419, '2022-03-24', 1840, 65060, 4378, NULL, '2.0000', '0.2400', '0.2400', '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 (68420, '2022-03-24', 1841, 65061, 4378, NULL, '2.0000', '0.2601', '0.2601', '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 (68421, '2022-03-24', 7671, 65062, 4378, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68422, '2022-03-24', 2821, 65063, 4378, 52928, '1.0000', '4.6092', '4.6092', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68423, '2022-03-24', 2948, 65064, 4378, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68424, '2022-03-24', 9695, 65065, 4378, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68425, '2022-03-24', 9747, 65066, 4378, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68426, '2022-03-24', 1863, 65067, 4378, 52353, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68427, '2022-03-24', 1810, 65068, 4378, 47114, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68428, '2022-03-24', 2758, 65069, 4378, NULL, '1.0000', '5.4000', '5.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 (68429, '2022-03-24', 2821, 65070, 4378, 52928, '1.0000', '4.6092', '4.6092', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68430, '2022-03-24', 7411, 65071, 4378, NULL, '1.0000', '1.3013', '1.3013', '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 (68431, '2022-03-24', 1935, 65072, 4378, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68432, '2022-03-24', 2279, 65073, 4378, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (68433, '2022-03-24', 1307, 65074, 4378, NULL, '1.0000', '-0.0521', '-0.0521', '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 (68434, '2022-03-24', 1812, 65075, 4378, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68435, '2022-03-24', 1667, 65076, 4378, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '12.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68436, '2022-03-24', 7333, 65077, 4378, NULL, '1.0000', '13.5000', '13.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 (68437, '2022-03-24', 1665, 65078, 4378, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68438, '2022-03-24', 9751, 65079, 4378, 51989, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68439, '2022-03-24', 1837, 65080, 4378, NULL, '2.0000', '2.5335', '2.5335', '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 (68440, '2022-03-24', 9831, 65081, 4378, 53002, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68441, '2022-03-24', 8666, 65082, 4378, 53016, '2.0000', '0.4600', '0.4600', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68442, '2022-03-24', 8183, 65083, 4378, NULL, '1.0000', '232.5300', '232.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 (68443, '2022-03-24', 9771, 65084, 4378, NULL, '1.0000', '11.0000', '11.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 (68444, '2022-03-24', 2169, 65085, 4378, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68445, '2022-03-24', 1409, 65086, 4378, 51679, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68446, '2022-03-24', 7459, 65087, 4378, NULL, '10.0000', '-6.1729', '-6.1729', '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 (68447, '2022-03-24', 2983, 65088, 4378, 22553, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '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 (68448, '2022-03-24', 7411, 65089, 4378, NULL, '1.0000', '1.3013', '1.3013', '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 (68449, '2022-03-24', 2169, 65090, 4378, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68450, '2022-03-24', 2169, 65091, 4378, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68451, '2022-03-24', 9734, 65092, 4378, 52161, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68452, '2022-03-24', 2277, 65093, 4378, NULL, '4.0000', '0.9399', '0.9399', '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 (68453, '2022-03-24', 1905, 65094, 4378, 51374, '4.0000', '0.5277', '0.5277', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68454, '2022-03-24', 2293, 65095, 4378, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68455, '2022-03-24', 2467, 65096, 4378, NULL, '1.0000', '19.8000', '19.8000', '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 (68456, '2022-03-24', 7411, 65097, 4378, NULL, '1.0000', '1.3013', '1.3013', '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 (68457, '2022-03-24', 9413, 65098, 4378, 34036, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68458, '2022-03-24', 2169, 65099, 4378, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68459, '2022-03-24', 9856, 65100, 4378, 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 (68460, '2022-03-24', 3058, 65101, 4378, NULL, '1.0000', '2.3000', '2.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 (68461, '2022-03-24', 7333, 65102, 4378, NULL, '1.0000', '13.5000', '13.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 (68462, '2022-03-24', 1602, 65103, 4378, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68463, '2022-03-24', 1746, 65104, 4378, 19863, '1.0000', '3.5000', '3.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 (68464, '2022-03-24', 2302, 65105, 4378, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68465, '2022-03-24', 9750, 65106, 4378, NULL, '1.0000', '3.3000', '3.3000', '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 (68466, '2022-03-24', 1811, 65107, 4378, 52941, '1.0000', '14.9867', '14.9867', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68467, '2022-03-24', 2169, 65108, 4378, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68468, '2022-03-24', 9874, 65109, 4378, 52989, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68469, '2022-03-24', 9695, 65110, 4378, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68470, '2022-03-24', 9870, 65111, 4378, 53001, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68471, '2022-03-24', 8666, 65112, 4378, 53016, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68472, '2022-03-24', 9695, 65113, 4378, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68473, '2022-03-24', 8774, 65114, 4378, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68474, '2022-03-24', 3058, 65115, 4378, NULL, '2.0000', '2.3000', '2.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 (68475, '2022-03-24', 9529, 65116, 4378, NULL, '1.0000', '9.2200', '9.2200', '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 (68476, '2022-03-24', 1590, 65117, 4378, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68477, '2022-03-24', 8744, 65118, 4378, 53008, '1.0000', '2.0383', '2.0383', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68478, '2022-03-24', 9734, 65119, 4378, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68479, '2022-03-24', 7635, 65120, 4379, NULL, '1.0000', '13.7500', '13.7500', '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 (68480, '2022-03-24', 1314, 65121, 4379, 2710, '-3.0000', '1.2000', '1.2000', '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 (68481, '2022-03-24', 1314, 65121, 4379, NULL, '4.0000', '1.2000', '1.2000', '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 (68482, '2022-03-24', 9747, 65122, 4379, NULL, '1.0000', '0.6500', '0.6500', '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 (68483, '2022-03-24', 1950, 65123, 4379, 1038, '1.0000', '-13.5726', '-13.5726', '5.0000', '5.0000', '54.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 (68484, '2022-03-24', 1884, 65124, 4379, 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 (68485, '2022-03-24', 7411, 65125, 4379, NULL, '1.0000', '1.3500', '1.3500', '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 (68486, '2022-03-24', 8744, 65126, 4379, NULL, '2.0000', '3.6600', '3.6600', '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 (68487, '2022-03-25', 8384, 65127, 4380, 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 (68488, '2022-03-25', 1837, 65128, 4380, 46752, '2.0000', '0.4981', '0.4981', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68489, '2022-03-25', 1841, 65129, 4380, 44579, '2.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '56.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68490, '2022-03-25', 1839, 65130, 4380, 48750, '1.0000', '7.4147', '7.4147', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68491, '2022-03-25', 8969, 65131, 4380, 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 (68492, '2022-03-25', 8974, 65132, 4380, NULL, '1.0000', '5.4000', '5.4000', '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 (68493, '2022-03-25', 9840, 65133, 4380, 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 (68494, '2022-03-25', 1330, 65134, 4381, 49465, '2.0000', '2.8000', '2.8000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68495, '2022-03-25', 1856, 65135, 4382, 52244, '1.0000', '4.6991', '4.6991', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68496, '2022-03-25', 3004, 65136, 4383, 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 (68497, '2022-03-25', 1533, 65137, 4383, 48903, '1.0000', '2.9715', '2.9715', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68498, '2022-03-25', 9710, 65138, 4383, 44458, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68499, '2022-03-25', 1812, 65139, 4383, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68500, '2022-03-25', 1501, 65140, 4383, NULL, '1.0000', '2.1784', '2.1784', '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 (68501, '2022-03-25', 8677, 65141, 4383, NULL, '1.0000', '292.4641', '292.4641', '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 (68502, '2022-03-25', 2379, 65142, 4383, NULL, '1.0000', '0.2954', '0.2954', '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 (68503, '2022-03-25', 1837, 65143, 4383, NULL, '2.0000', '2.5335', '2.5335', '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 (68504, '2022-03-25', 2643, 65144, 4383, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '18.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68505, '2022-03-25', 8666, 65145, 4383, 53016, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68506, '2022-03-25', 1479, 65146, 4383, 52326, '1.0000', '48.0000', '48.0000', '64.0000', '64.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68507, '2022-03-25', 1478, 65147, 4383, 52325, '2.0000', '28.2361', '28.2361', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68508, '2022-03-25', 2293, 65148, 4383, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68509, '2022-03-25', 2268, 65149, 4383, 51217, '1.0000', '7.3286', '7.3286', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68510, '2022-03-25', 7970, 65150, 4383, NULL, '10.0000', '5.5000', '5.5000', '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 (68511, '2022-03-25', 9867, 65151, 4383, NULL, '2.0000', '6.3000', '6.3000', '8.4000', '8.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68512, '2022-03-25', 2260, 65152, 4383, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68513, '2022-03-25', 9821, 65153, 4383, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68514, '2022-03-25', 9751, 65154, 4383, 51989, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68515, '2022-03-25', 8309, 65155, 4383, 34577, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68516, '2022-03-25', 1318, 65156, 4383, 45180, '1.0000', '5.2690', '5.2690', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68517, '2022-03-25', 2405, 65157, 4383, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '19.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68518, '2022-03-25', 7447, 65158, 4383, NULL, '8.0000', '19.1100', '19.1100', '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 (68519, '2022-03-25', 1863, 65159, 4383, 52353, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68520, '2022-03-25', 1367, 65160, 4383, 18939, '10.0000', '49.2100', '49.2100', '7.0000', '7.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 (68521, '2022-03-25', 9867, 65161, 4383, NULL, '10.0000', '6.3000', '6.3000', '8.4000', '8.4000', '-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 (68522, '2022-03-25', 2289, 65162, 4383, NULL, '4.0000', '0.2222', '0.2222', '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 (68523, '2022-03-25', 1840, 65163, 4383, NULL, '4.0000', '0.2400', '0.2400', '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 (68524, '2022-03-25', 1851, 65164, 4383, 51239, '1.0000', '12.8900', '12.8900', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68525, '2022-03-25', 7532, 65165, 4383, 51356, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68526, '2022-03-25', 1502, 65166, 4384, 52092, '1.0000', '-6.9868', '-6.9868', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68527, '2022-03-25', 1367, 65167, 4385, 18939, '10.0000', '49.2100', '49.2100', '7.0000', '7.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 (68528, '2022-03-25', 9867, 65168, 4385, NULL, '10.0000', '6.3000', '6.3000', '8.4000', '8.4000', '-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 (68529, '2022-03-25', 1557, 65169, 4386, 1628, '-9.0000', '7.9500', '7.9500', '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 (68530, '2022-03-25', 1557, 65169, 4386, NULL, '10.0000', '7.9500', '7.9500', '11.0000', '11.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 (68531, '2022-03-25', 7323, 65170, 4386, NULL, '1.0000', '7.9800', '7.9800', '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 (68532, '2022-03-25', 8000, 65171, 4386, NULL, '1.0000', '6.8400', '6.8400', '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 (68533, '2022-03-25', 7674, 65172, 4386, 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 (68534, '2022-03-25', 7675, 65173, 4386, NULL, '1.0000', '11.4300', '11.4300', '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 (68535, '2022-03-25', 8607, 65174, 4386, 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 (68536, '2022-03-25', 8984, 65175, 4386, NULL, '2.0000', '0.8700', '0.8700', '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 (68537, '2022-03-25', 8415, 65176, 4386, NULL, '1.0000', '3.2500', '3.2500', '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 (68538, '2022-03-25', 9092, 65177, 4386, NULL, '1.0000', '5.2900', '5.2900', '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 (68539, '2022-03-25', 7598, 65178, 4386, NULL, '4.0000', '1.2800', '1.2800', '8.5000', '8.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 (68540, '2022-03-25', 7729, 65179, 4386, NULL, '1.0000', '13.0000', '13.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 (68541, '2022-03-25', 9592, 65180, 4386, NULL, '5.0000', '3.2000', '3.2000', '2.1000', '2.1000', '-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 (68542, '2022-03-25', 7989, 65181, 4386, NULL, '4.0000', '37.8200', '37.8200', '50.0000', '50.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 (68543, '2022-03-25', 7675, 65182, 4386, NULL, '1.0000', '11.4300', '11.4300', '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 (68544, '2022-03-25', 7547, 65183, 4386, NULL, '4.0000', '0.0000', '0.0000', '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 (68545, '2022-03-25', 8395, 65184, 4386, NULL, '2.0000', '0.9700', '0.9700', '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 (68546, '2022-03-25', 7482, 65185, 4386, NULL, '1.0000', '3.0500', '3.0500', '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 (68547, '2022-03-25', 7802, 65186, 4386, NULL, '2.0000', '0.9200', '0.9200', '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 (68548, '2022-03-25', 3001, 65187, 4386, NULL, '2.0000', '1.5000', '1.5000', '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 (68549, '2022-03-25', 7473, 65188, 4386, NULL, '1.0000', '0.5300', '0.5300', '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 (68550, '2022-03-25', 1498, 65189, 4386, 19685, '-29.0000', '0.3300', '0.3300', '0.6000', '0.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 (68551, '2022-03-25', 1498, 65189, 4386, NULL, '30.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (68552, '2022-03-25', 7428, 65190, 4386, NULL, '4.0000', '2.6100', '2.6100', '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 (68553, '2022-03-25', 7708, 65191, 4386, NULL, '1.0000', '7.8000', '7.8000', '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 (68554, '2022-03-25', 7889, 65192, 4386, 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 (68555, '2022-03-25', 7980, 65193, 4386, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (68556, '2022-03-25', 8984, 65194, 4386, NULL, '2.0000', '0.8700', '0.8700', '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 (68557, '2022-03-25', 9432, 65195, 4386, NULL, '1.0000', '30.0000', '30.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 (68558, '2022-03-25', 9734, 65196, 4386, NULL, '1.0000', '0.3200', '0.3200', '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 (68559, '2022-03-25', 8596, 65197, 4386, 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 (68560, '2022-03-25', 7674, 65198, 4386, 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 (68561, '2022-03-25', 9825, 65199, 4386, 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 (68562, '2022-03-25', 1364, 65200, 4386, 260, '2.0000', '52.5500', '52.5500', '35.0000', '35.0000', '0.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 (68563, '2022-03-25', 8360, 65201, 4386, NULL, '1.0000', '3.2300', '3.2300', '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 (68564, '2022-03-25', 7509, 65202, 4386, 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 (68565, '2022-03-25', 7967, 65203, 4386, NULL, '1.0000', '7.0000', '7.0000', '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 (68566, '2022-03-25', 7886, 65204, 4386, 33789, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68567, '2022-03-25', 9751, 65205, 4387, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68568, '2022-03-25', 1542, 65206, 4387, 19389, '1.0000', '90.0000', '90.0000', '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 (68569, '2022-03-25', 7756, 65207, 4387, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68570, '2022-03-25', 9715, 65208, 4387, 51680, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68571, '2022-03-25', 2821, 65209, 4387, 52928, '1.0000', '4.6092', '4.6092', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68572, '2022-03-25', 7737, 65210, 4387, NULL, '1.0000', '3.0000', '3.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 (68573, '2022-03-25', 8666, 65211, 4387, 53016, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68574, '2022-03-25', 2169, 65212, 4387, 52147, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68575, '2022-03-25', 2379, 65213, 4387, NULL, '1.0000', '0.2954', '0.2954', '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 (68576, '2022-03-25', 2643, 65214, 4387, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '17.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68577, '2022-03-25', 9871, 65215, 4387, 53006, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68578, '2022-03-25', 9337, 65216, 4387, NULL, '2.0000', '5.7200', '5.7200', '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 (68579, '2022-03-25', 3058, 65217, 4387, NULL, '1.0000', '2.3000', '2.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 (68580, '2022-03-25', 2413, 65218, 4387, 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 (68581, '2022-03-25', 7584, 65219, 4387, 52200, '1.0000', '1.7933', '1.7933', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68582, '2022-03-25', 7641, 65220, 4387, NULL, '1.0000', '1.9000', '1.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 (68583, '2022-03-25', 7881, 65221, 4387, NULL, '1.0000', '32.7700', '32.7700', '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 (68584, '2022-03-25', 1910, 65222, 4388, 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 (68585, '2022-03-25', 2366, 65223, 4388, NULL, '2.0000', '-24.7743', '-24.7743', '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 (68586, '2022-03-25', 7780, 65224, 4388, NULL, '1.0000', '2.6000', '2.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 (68587, '2022-03-25', 8133, 65225, 4388, NULL, '1.0000', '-2579.9258', '-2579.9258', '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 (68588, '2022-03-25', 1757, 65226, 4388, NULL, '1.0000', '2.3731', '2.3731', '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 (68589, '2022-03-25', 1612, 65227, 4388, 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 (68590, '2022-03-25', 9866, 65228, 4388, 52158, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68591, '2022-03-25', 8638, 65229, 4389, NULL, '1.0000', '0.5100', '0.5100', '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 (68592, '2022-03-25', 2360, 65230, 4389, 3862, '-70.0000', '0.5200', '0.5200', '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 (68593, '2022-03-25', 2360, 65230, 4389, NULL, '71.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68594, '2022-03-25', 1330, 65231, 4389, 14393, '-5.0000', '3.7000', '3.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 (68595, '2022-03-25', 1330, 65231, 4389, NULL, '6.0000', '3.7000', '3.7000', '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 (68596, '2022-03-25', 7411, 65232, 4389, NULL, '1.0000', '1.3500', '1.3500', '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 (68597, '2022-03-25', 2088, 65233, 4389, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '49.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 (68598, '2022-03-25', 1602, 65234, 4389, 5897, '-119.0000', '6.7859', '6.7859', '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 (68599, '2022-03-25', 1602, 65234, 4389, NULL, '120.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68600, '2022-03-25', 2948, 65235, 4389, NULL, '2.0000', '0.9000', '0.9000', '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 (68601, '2022-03-25', 9734, 65236, 4390, NULL, '2.0000', '0.3200', '0.3200', '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 (68602, '2022-03-25', 9750, 65237, 4390, NULL, '1.0000', '3.3000', '3.3000', '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 (68603, '2022-03-25', 2135, 65238, 4390, 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 (68604, '2022-03-25', 9736, 65239, 4390, NULL, '1.0000', '3.9100', '3.9100', '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 (68605, '2022-03-25', 2424, 65240, 4390, 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 (68606, '2022-03-25', 8773, 65241, 4390, 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 (68607, '2022-03-25', 2022, 65242, 4390, 20647, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (68608, '2022-03-25', 2392, 65243, 4390, 20648, '1.0000', '3.7000', '3.7000', '5.0000', '5.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 (68609, '2022-03-25', 1820, 65244, 4390, 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 (68610, '2022-03-25', 2315, 65245, 4390, 2735, '-211.0000', '0.3300', '0.3300', '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 (68611, '2022-03-25', 2315, 65245, 4390, NULL, '212.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-212.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68612, '2022-03-25', 9750, 65246, 4390, NULL, '1.0000', '3.3000', '3.3000', '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 (68613, '2022-03-25', 2821, 65247, 4391, 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 (68614, '2022-03-25', 1867, 65248, 4391, NULL, '1.0000', '1.0500', '1.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 (68615, '2022-03-25', 2758, 65249, 4391, 22011, '-1.0000', '-20.1917', '-20.1917', '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 (68616, '2022-03-25', 2758, 65249, 4391, NULL, '3.0000', '-20.1917', '-20.1917', '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 (68617, '2022-03-25', 1651, 65250, 4391, 3222, '-52.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 (68618, '2022-03-25', 1651, 65250, 4391, NULL, '53.0000', '6.7039', '6.7039', '10.5000', '10.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 (68619, '2022-03-25', 2643, 65251, 4391, NULL, '1.0000', '0.8700', '0.8700', '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 (68620, '2022-03-25', 8455, 65252, 4391, NULL, '1.0000', '4.5000', '4.5000', '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 (68621, '2022-03-25', 2948, 65253, 4391, NULL, '1.0000', '0.9000', '0.9000', '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 (68622, '2022-03-25', 1608, 65254, 4391, 8222, '-12.0000', '3.3500', '3.3500', '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 (68623, '2022-03-25', 1608, 65254, 4391, NULL, '13.0000', '3.3500', '3.3500', '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 (68624, '2022-03-25', 7980, 65255, 4391, NULL, '1.0000', '17.4500', '17.4500', '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 (68625, '2022-03-25', 8677, 65256, 4391, NULL, '2.0000', '1.2800', '1.2800', '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 (68626, '2022-03-25', 2821, 65257, 4391, 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 (68627, '2022-03-25', 1692, 65258, 4391, NULL, '1.0000', '10.2900', '10.2900', '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 (68628, '2022-03-25', 7753, 65259, 4392, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68629, '2022-03-25', 8965, 65260, 4392, NULL, '1.0000', '52.9900', '52.9900', '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 (68630, '2022-03-25', 8735, 65261, 4392, NULL, '1.0000', '5.6000', '5.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 (68631, '2022-03-25', 1935, 65262, 4392, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '148.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68632, '2022-03-25', 8146, 65263, 4392, 46165, '1.0000', '17.3749', '17.3749', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68633, '2022-03-25', 9092, 65264, 4392, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '201.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68634, '2022-03-25', 7815, 65265, 4392, NULL, '1.0000', '32.2667', '32.2667', '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 (68635, '2022-03-25', 8849, 65266, 4392, NULL, '1.0000', '1.0700', '1.0700', '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 (68636, '2022-03-25', 8566, 65267, 4392, NULL, '1.0000', '-55864.3970', '-55864.3970', '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 (68637, '2022-03-25', 2298, 65268, 4392, 48057, '1.0000', '6.3879', '6.3879', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68638, '2022-03-25', 1340, 65269, 4392, NULL, '1.0000', '4.3962', '4.3962', '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 (68639, '2022-03-25', 8965, 65270, 4392, NULL, '1.0000', '52.9900', '52.9900', '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 (68640, '2022-03-25', 7671, 65271, 4392, NULL, '1.0000', '76.3606', '76.3606', '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 (68641, '2022-03-25', 7787, 65272, 4392, NULL, '1.0000', '11.7735', '11.7735', '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 (68642, '2022-03-25', 8965, 65273, 4392, NULL, '1.0000', '52.9900', '52.9900', '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 (68643, '2022-03-25', 7852, 65274, 4392, NULL, '1.0000', '-11.4430', '-11.4430', '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 (68644, '2022-03-25', 8360, 65275, 4392, 52734, '1.0000', '3.2261', '3.2261', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68645, '2022-03-25', 2050, 65276, 4392, NULL, '1.0000', '4.5000', '4.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 (68646, '2022-03-25', 7579, 65277, 4392, NULL, '1.0000', '15.0000', '15.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 (68647, '2022-03-25', 1460, 65278, 4392, 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 (68648, '2022-03-25', 8634, 65279, 4392, NULL, '1.0000', '14.0000', '14.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 (68649, '2022-03-25', 7666, 65280, 4392, NULL, '1.0000', '3.6004', '3.6004', '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 (68650, '2022-03-25', 9106, 65281, 4392, NULL, '1.0000', '5.3500', '5.3500', '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 (68651, '2022-03-25', 7514, 65282, 4392, NULL, '1.0000', '932.5375', '932.5375', '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 (68652, '2022-03-25', 7666, 65283, 4392, NULL, '1.0000', '3.6004', '3.6004', '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 (68653, '2022-03-25', 8763, 65284, 4392, NULL, '2.0000', '5.4000', '5.4000', '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 (68654, '2022-03-25', 7736, 65285, 4392, NULL, '1.0000', '-6.4252', '-6.4252', '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 (68655, '2022-03-25', 7355, 65286, 4392, NULL, '1.0000', '-3.6691', '-3.6691', '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 (68656, '2022-03-25', 9272, 65287, 4392, NULL, '2.0000', '3.1000', '3.1000', '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 (68657, '2022-03-25', 7518, 65288, 4392, NULL, '1.0000', '-914.6441', '-914.6441', '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 (68658, '2022-03-25', 7459, 65289, 4392, NULL, '10.0000', '25935.6061', '25935.6061', '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 (68659, '2022-03-25', 7848, 65290, 4392, NULL, '1.0000', '-29.7778', '-29.7778', '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 (68660, '2022-03-25', 9275, 65291, 4392, NULL, '1.0000', '6.3000', '6.3000', '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 (68661, '2022-03-25', 2104, 65292, 4392, NULL, '1.0000', '0.2000', '0.2000', '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 (68662, '2022-03-25', 1524, 65293, 4392, NULL, '1.0000', '3.8400', '3.8400', '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 (68663, '2022-03-25', 9461, 65294, 4392, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68664, '2022-03-25', 8134, 65295, 4392, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68665, '2022-03-25', 2520, 65296, 4393, NULL, '1.0000', '18.6000', '18.6000', '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 (68666, '2022-03-25', 1938, 65297, 4393, 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 (68667, '2022-03-25', 2682, 65298, 4393, 12165, '-2.0000', '19.3000', '19.3000', '25.5000', '25.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 (68668, '2022-03-25', 2682, 65298, 4393, NULL, '4.0000', '19.3000', '19.3000', '25.5000', '25.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 (68669, '2022-03-25', 1884, 65299, 4393, 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 (68670, '2022-03-25', 7391, 65300, 4393, NULL, '1.0000', '15.6000', '15.6000', '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 (68671, '2022-03-25', 1851, 65301, 4393, 8627, '-8.0000', '10.6568', '10.6568', '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 (68672, '2022-03-25', 1851, 65301, 4393, NULL, '9.0000', '10.6568', '10.6568', '17.0000', '17.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 (68673, '2022-03-25', 8763, 65302, 4393, NULL, '1.0000', '5.4000', '5.4000', '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 (68674, '2022-03-25', 8745, 65303, 4393, NULL, '1.0000', '8.0000', '8.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 (68675, '2022-03-25', 7584, 65304, 4393, NULL, '1.0000', '2.6000', '2.6000', '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 (68676, '2022-03-25', 7864, 65305, 4393, NULL, '1.0000', '19.5100', '19.5100', '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 (68677, '2022-03-25', 9631, 65306, 4394, NULL, '1.0000', '7.0000', '7.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 (68678, '2022-03-25', 2302, 65307, 4394, 2963, '-43.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 (68679, '2022-03-25', 2302, 65307, 4394, NULL, '44.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68680, '2022-03-25', 3058, 65308, 4395, 52271, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68681, '2022-03-25', 1812, 65309, 4395, 52294, '1.0000', '7.9477', '7.9477', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68682, '2022-03-25', 8666, 65310, 4395, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68683, '2022-03-25', 2285, 65311, 4395, 52300, '1.0000', '37.2530', '37.2530', '49.0000', '49.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68684, '2022-03-25', 9794, 65312, 4395, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '89.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68685, '2022-03-25', 2248, 65313, 4395, 46762, '1.0000', '1.1723', '1.1723', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68686, '2022-03-25', 2915, 65314, 4395, 43043, '1.0000', '16.2417', '16.2417', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68687, '2022-03-25', 9839, 65315, 4395, 52270, '1.0000', '15.0200', '15.0200', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68688, '2022-03-25', 8304, 65316, 4396, 50391, '1.0000', '5.9987', '5.9987', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68689, '2022-03-25', 7848, 65317, 4396, NULL, '1.0000', '-29.7778', '-29.7778', '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 (68690, '2022-03-25', 7967, 65318, 4396, 50451, '1.0000', '5.5335', '5.5335', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68691, '2022-03-25', 8061, 65319, 4396, 52528, '1.0000', '-38.4000', '-38.4000', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68692, '2022-03-25', 7588, 65320, 4396, NULL, '1.0000', '6.2420', '6.2420', '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 (68693, '2022-03-25', 7743, 65321, 4396, NULL, '1.0000', '419203.7668', '419203.7668', '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 (68694, '2022-03-25', 7514, 65322, 4396, NULL, '1.0000', '932.5375', '932.5375', '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 (68695, '2022-03-25', 8615, 65323, 4396, 42775, '1.0000', '4.5052', '4.5052', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68696, '2022-03-25', 2699, 65324, 4396, 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 (68697, '2022-03-25', 7762, 65325, 4396, 52466, '1.0000', '-4.7001', '-4.7001', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68698, '2022-03-25', 2109, 65326, 4397, 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 (68699, '2022-03-25', 9794, 65327, 4397, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68700, '2022-03-25', 2303, 65328, 4397, NULL, '1.0000', '14.8945', '14.8945', '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 (68701, '2022-03-25', 7530, 65329, 4397, 51200, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68702, '2022-03-25', 1574, 65330, 4397, NULL, '1.0000', '1.7000', '1.7000', '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 (68703, '2022-03-25', 2169, 65331, 4397, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68704, '2022-03-25', 9695, 65332, 4397, 51993, '2.0000', '4.5000', '4.5000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68705, '2022-03-25', 7411, 65333, 4397, NULL, '1.0000', '1.3013', '1.3013', '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 (68706, '2022-03-25', 7385, 65334, 4397, NULL, '2.0000', '-10.3217', '-10.3217', '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 (68707, '2022-03-25', 1888, 65335, 4397, 52932, '1.0000', '16.5559', '16.5559', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68708, '2022-03-25', 8207, 65336, 4397, NULL, '1.0000', '0.0000', '0.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 (68709, '2022-03-25', 1574, 65337, 4397, NULL, '1.0000', '1.7000', '1.7000', '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 (68710, '2022-03-25', 1855, 65338, 4397, NULL, '1.0000', '1.5003', '1.5003', '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 (68711, '2022-03-25', 2320, 65339, 4397, 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 (68712, '2022-03-25', 2643, 65340, 4397, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '16.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68713, '2022-03-25', 8133, 65341, 4397, NULL, '1.0000', '-2579.9258', '-2579.9258', '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 (68714, '2022-03-25', 9870, 65342, 4397, 53001, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68715, '2022-03-25', 2169, 65343, 4398, 10737, '-82.0000', '3.8397', '3.8397', '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 (68716, '2022-03-25', 2169, 65343, 4398, NULL, '83.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68717, '2022-03-25', 8170, 65344, 4398, 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 (68718, '2022-03-25', 1574, 65345, 4399, 7593, '-54.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 (68719, '2022-03-25', 1574, 65345, 4399, NULL, '55.0000', '1.9600', '1.9600', '2.5000', '2.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 (68720, '2022-03-26', 1839, 65346, 4400, NULL, '1.0000', '-169.0668', '-169.0668', '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 (68721, '2022-03-26', 2992, 65347, 4400, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68722, '2022-03-26', 2315, 65348, 4400, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '52.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68723, '2022-03-26', 2916, 65349, 4400, NULL, '1.0000', '1.8430', '1.8430', '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 (68724, '2022-03-26', 1912, 65350, 4400, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68725, '2022-03-26', 2435, 65351, 4400, 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 (68726, '2022-03-26', 8158, 65352, 4400, NULL, '1.0000', '22.0000', '22.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 (68727, '2022-03-26', 9649, 65353, 4400, NULL, '1.0000', '14.4100', '14.4100', '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 (68728, '2022-03-26', 1505, 65354, 4400, 52929, '1.0000', '137.0213', '137.0213', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68729, '2022-03-26', 2643, 65355, 4400, 51987, '2.0000', '0.8700', '0.8700', '1.2000', '1.2000', '14.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68730, '2022-03-26', 2262, 65356, 4400, 51483, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68731, '2022-03-26', 2754, 65357, 4400, 18938, '2.0000', '0.0800', '0.0800', '0.5000', '0.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 (68732, '2022-03-26', 2643, 65358, 4400, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '15.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68733, '2022-03-26', 9831, 65359, 4400, 53002, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68734, '2022-03-26', 9864, 65360, 4400, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68735, '2022-03-26', 8444, 65361, 4400, 49349, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68736, '2022-03-26', 1856, 65362, 4400, NULL, '1.0000', '5.5569', '5.5569', '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 (68737, '2022-03-26', 9482, 65363, 4400, 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 (68738, '2022-03-26', 9845, 65364, 4400, 51396, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68739, '2022-03-26', 7491, 65365, 4400, NULL, '1.0000', '4.8000', '4.8000', '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 (68740, '2022-03-26', 9870, 65366, 4400, 53001, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68741, '2022-03-26', 8743, 65367, 4400, NULL, '1.0000', '10.5000', '10.5000', '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 (68742, '2022-03-26', 9871, 65368, 4400, 53006, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68743, '2022-03-26', 1856, 65369, 4400, NULL, '1.0000', '5.5569', '5.5569', '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 (68744, '2022-03-26', 9748, 65370, 4400, 52957, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68745, '2022-03-26', 7459, 65371, 4400, NULL, '20.0000', '-6.1729', '-6.1729', '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 (68746, '2022-03-26', 7680, 65372, 4401, NULL, '1.0000', '-5.9118', '-5.9118', '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 (68747, '2022-03-26', 8392, 65373, 4401, 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 (68748, '2022-03-26', 7638, 65374, 4401, 52447, '1.0000', '-7.9283', '-7.9283', '17.5000', '17.5000', '6.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68749, '2022-03-26', 7782, 65375, 4401, NULL, '1.0000', '5.0000', '5.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 (68750, '2022-03-26', 8200, 65376, 4401, NULL, '1.0000', '-250802.5934', '-250802.5934', '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 (68751, '2022-03-26', 8596, 65377, 4401, NULL, '1.0000', '18.5278', '18.5278', '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 (68752, '2022-03-26', 8000, 65378, 4401, NULL, '1.0000', '1674.2861', '1674.2861', '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 (68753, '2022-03-26', 9193, 65379, 4401, NULL, '1.0000', '7.0315', '7.0315', '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 (68754, '2022-03-26', 7753, 65380, 4401, 51282, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68755, '2022-03-26', 8746, 65381, 4401, 39419, '1.0000', '3.5400', '3.5400', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68756, '2022-03-26', 7727, 65382, 4401, NULL, '1.0000', '0.9000', '0.9000', '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 (68757, '2022-03-26', 8966, 65383, 4401, NULL, '1.0000', '6.6999', '6.6999', '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 (68758, '2022-03-26', 7674, 65384, 4401, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '118.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68759, '2022-03-26', 7609, 65385, 4401, NULL, '1.0000', '67.1301', '67.1301', '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 (68760, '2022-03-26', 7354, 65386, 4401, NULL, '1.0000', '-2.5000', '-2.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 (68761, '2022-03-26', 8984, 65387, 4401, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '18.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68762, '2022-03-26', 7321, 65388, 4401, 50640, '1.0000', '9.8389', '9.8389', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68763, '2022-03-26', 8775, 65389, 4401, 43940, '1.0000', '2.6000', '2.6000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68764, '2022-03-26', 9740, 65390, 4401, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68765, '2022-03-26', 9576, 65391, 4401, 46894, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68766, '2022-03-26', 9755, 65392, 4401, 46932, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68767, '2022-03-26', 7708, 65393, 4401, NULL, '1.0000', '-415.6632', '-415.6632', '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 (68768, '2022-03-26', 7641, 65394, 4401, NULL, '2.0000', '95.0035', '95.0035', '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 (68769, '2022-03-26', 1854, 65395, 4401, NULL, '1.0000', '2.6053', '2.6053', '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 (68770, '2022-03-26', 8607, 65396, 4401, 52532, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68771, '2022-03-26', 7523, 65397, 4401, NULL, '1.0000', '9.7000', '9.7000', '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 (68772, '2022-03-26', 7474, 65398, 4401, NULL, '1.0000', '67.6200', '67.6200', '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 (68773, '2022-03-26', 2657, 65399, 4402, 49178, '2.0000', '0.5900', '0.5900', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68774, '2022-03-26', 2256, 65400, 4402, 50089, '1.0000', '14.0458', '14.0458', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 406);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68775, '2022-03-26', 1382, 65401, 4402, 52095, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68776, '2022-03-26', 2777, 65402, 4402, 50944, '1.0000', '2.5882', '2.5882', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68777, '2022-03-26', 1863, 65403, 4402, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68778, '2022-03-26', 9461, 65404, 4402, 40877, '1.0000', '1.5845', '1.5845', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68779, '2022-03-26', 9831, 65405, 4403, 53002, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68780, '2022-03-26', 1912, 65406, 4403, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68781, '2022-03-26', 2069, 65407, 4404, NULL, '1.0000', '2.0400', '2.0400', '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 (68782, '2022-03-26', 8677, 65408, 4404, NULL, '2.0000', '292.4641', '292.4641', '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 (68783, '2022-03-26', 1765, 65409, 4404, 51334, '1.0000', '5.4588', '5.4588', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68784, '2022-03-26', 3016, 65410, 4404, 52179, '1.0000', '11.9500', '11.9500', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68785, '2022-03-26', 7411, 65411, 4404, NULL, '1.0000', '1.3013', '1.3013', '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 (68786, '2022-03-26', 9734, 65412, 4404, 52161, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '37.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68787, '2022-03-26', 1387, 65413, 4405, NULL, '1.0000', '10.5068', '10.5068', '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 (68788, '2022-03-26', 2821, 65414, 4405, 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 (68789, '2022-03-26', 8666, 65415, 4405, NULL, '1.0000', '0.4600', '0.4600', '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 (68790, '2022-03-26', 1840, 65416, 4405, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (68791, '2022-03-26', 1841, 65417, 4405, NULL, '4.0000', '142.5780', '142.5780', '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 (68792, '2022-03-26', 2289, 65418, 4405, 2949, '-89.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 (68793, '2022-03-26', 2289, 65418, 4405, NULL, '93.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68794, '2022-03-26', 1346, 65419, 4405, 21942, '-138.0000', '1.0594', '1.0594', '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 (68795, '2022-03-26', 1346, 65419, 4405, NULL, '141.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-141.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68796, '2022-03-26', 1780, 65420, 4405, 3867, '-3.0000', '18.7146', '18.7146', '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 (68797, '2022-03-26', 1780, 65420, 4405, NULL, '4.0000', '18.7146', '18.7146', '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 (68798, '2022-03-26', 1944, 65421, 4405, 22323, '1.0000', '170.8780', '170.8780', '7.5000', '7.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 (68799, '2022-03-26', 2085, 65422, 4405, 8628, '-14.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 (68800, '2022-03-26', 2085, 65422, 4405, NULL, '21.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68801, '2022-03-26', 2236, 65423, 4405, 2780, '-17.0000', '5.6599', '5.6599', '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 (68802, '2022-03-26', 2236, 65423, 4405, NULL, '18.0000', '5.6599', '5.6599', '8.0000', '8.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 (68803, '2022-03-26', 2315, 65424, 4405, 2735, '-212.0000', '0.3300', '0.3300', '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 (68804, '2022-03-26', 2315, 65424, 4405, NULL, '216.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-216.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68805, '2022-03-26', 2642, 65425, 4405, 10573, '-13.0000', '9.2000', '9.2000', '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 (68806, '2022-03-26', 2642, 65425, 4405, NULL, '14.0000', '9.2000', '9.2000', '13.0000', '13.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 (68807, '2022-03-26', 1402, 65426, 4405, 22313, '1.0000', '2.2000', '2.2000', '3.5000', '3.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 (68808, '2022-03-26', 2169, 65427, 4405, 10737, '-83.0000', '3.8397', '3.8397', '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 (68809, '2022-03-26', 2169, 65427, 4405, NULL, '84.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68810, '2022-03-26', 1855, 65428, 4405, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '12.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 (68811, '2022-03-26', 1585, 65429, 4405, 7602, '-12.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 (68812, '2022-03-26', 1585, 65429, 4405, NULL, '13.0000', '13.0000', '13.0000', '17.5000', '17.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 (68813, '2022-03-26', 1912, 65430, 4405, NULL, '2.0000', '0.3200', '0.3200', '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 (68814, '2022-03-26', 1646, 65431, 4406, 3239, '-13.0000', '4.5300', '4.5300', '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 (68815, '2022-03-26', 1646, 65431, 4406, NULL, '14.0000', '4.5300', '4.5300', '8.0000', '8.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 (68816, '2022-03-26', 7391, 65432, 4406, NULL, '1.0000', '15.6000', '15.6000', '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 (68817, '2022-03-26', 1721, 65433, 4406, 6617, '-1.0000', '8.6900', '8.6900', '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 (68818, '2022-03-26', 1721, 65433, 4406, NULL, '2.0000', '8.6900', '8.6900', '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 (68819, '2022-03-26', 2916, 65434, 4406, 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 (68820, '2022-03-26', 1689, 65435, 4406, 4897, '-8.0000', '60.7198', '60.7198', '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 (68821, '2022-03-26', 1689, 65435, 4406, NULL, '9.0000', '60.7198', '60.7198', '19.0000', '19.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 (68822, '2022-03-26', 7411, 65436, 4406, NULL, '2.0000', '1.3500', '1.3500', '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 (68823, '2022-03-26', 2821, 65437, 4406, 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 (68824, '2022-03-26', 8068, 65438, 4406, NULL, '1.0000', '8.7900', '8.7900', '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 (68825, '2022-03-26', 2167, 65439, 4406, 17165, '-40.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 (68826, '2022-03-26', 2167, 65439, 4406, NULL, '41.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (68827, '2022-03-26', 1837, 65440, 4406, 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 (68828, '2022-03-26', 8183, 65441, 4406, NULL, '1.0000', '81.9100', '81.9100', '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 (68829, '2022-03-26', 8677, 65442, 4406, NULL, '2.0000', '1.2800', '1.2800', '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 (68830, '2022-03-26', 9532, 65443, 4406, NULL, '1.0000', '11.0000', '11.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 (68831, '2022-03-26', 9750, 65444, 4406, NULL, '1.0000', '3.3000', '3.3000', '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 (68832, '2022-03-26', 1818, 65445, 4406, 14664, '-2.0000', '14.8000', '14.8000', '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 (68833, '2022-03-26', 1818, 65445, 4406, NULL, '3.0000', '14.8000', '14.8000', '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 (68834, '2022-03-26', 7411, 65446, 4406, NULL, '2.0000', '1.3500', '1.3500', '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 (68835, '2022-03-26', 2438, 65447, 4406, NULL, '1.0000', '29.0000', '29.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 (68836, '2022-03-26', 2769, 65448, 4406, 22266, '4.0000', '1.5200', '1.5200', '2.5000', '2.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 (68837, '2022-03-26', 9492, 65449, 4406, 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 (68838, '2022-03-26', 1935, 65450, 4406, 5586, '-59.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 (68839, '2022-03-26', 1935, 65450, 4406, NULL, '60.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68840, '2022-03-26', 8666, 65451, 4406, NULL, '1.0000', '0.4600', '0.4600', '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 (68841, '2022-03-26', 2821, 65452, 4406, 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 (68842, '2022-03-26', 2293, 65453, 4406, 22262, '6.0000', '1.4400', '1.4400', '1.5000', '1.5000', '67.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 (68843, '2022-03-26', 1667, 65454, 4406, 9745, '-42.0000', '5.9400', '5.9400', '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 (68844, '2022-03-26', 1667, 65454, 4406, NULL, '44.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68845, '2022-03-26', 3057, 65455, 4406, NULL, '4.0000', '2.7000', '2.7000', '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 (68846, '2022-03-26', 2565, 65456, 4406, 7197, '-15.0000', '0.8100', '0.8100', '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 (68847, '2022-03-26', 2565, 65456, 4406, NULL, '16.0000', '0.8100', '0.8100', '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 (68848, '2022-03-26', 2491, 65457, 4406, 6228, '-25.0000', '12.2000', '12.2000', '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 (68849, '2022-03-26', 2491, 65457, 4406, NULL, '26.0000', '12.2000', '12.2000', '17.5000', '17.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 (68850, '2022-03-26', 9735, 65458, 4406, 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 (68851, '2022-03-26', 7532, 65459, 4406, NULL, '1.0000', '20.6000', '20.6000', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68852, '2022-03-26', 8773, 65460, 4406, 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 (68853, '2022-03-26', 2642, 65461, 4406, 10573, '-14.0000', '9.2000', '9.2000', '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 (68854, '2022-03-26', 2642, 65461, 4406, NULL, '15.0000', '9.2000', '9.2000', '13.0000', '13.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 (68855, '2022-03-26', 2135, 65462, 4406, 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 (68856, '2022-03-26', 8638, 65463, 4406, NULL, '1.0000', '0.5100', '0.5100', '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 (68857, '2022-03-26', 1812, 65464, 4406, 8224, '-76.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 (68858, '2022-03-26', 1812, 65464, 4406, NULL, '77.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68859, '2022-03-26', 2821, 65465, 4406, 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 (68860, '2022-03-26', 9695, 65466, 4406, NULL, '1.0000', '4.5000', '4.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 (68861, '2022-03-26', 2356, 65467, 4406, 18892, '1.0000', '38.9800', '38.9800', '51.0000', '51.0000', '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 (68862, '2022-03-26', 9829, 65468, 4406, NULL, '1.0000', '11.0000', '11.0000', '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 (68863, '2022-03-26', 8677, 65469, 4406, NULL, '2.0000', '1.2800', '1.2800', '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 (68864, '2022-03-26', 1533, 65470, 4406, 10381, '-10.0000', '2.5917', '2.5917', '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 (68865, '2022-03-26', 1533, 65470, 4406, NULL, '11.0000', '2.5917', '2.5917', '5.5000', '5.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 (68866, '2022-03-26', 7758, 65471, 4406, 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 (68867, '2022-03-26', 2352, 65472, 4406, 3855, '-119.0000', '20.0000', '20.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 (68868, '2022-03-26', 2352, 65472, 4406, NULL, '120.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68869, '2022-03-26', 7671, 65473, 4406, NULL, '1.0000', '15.5000', '15.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 (68870, '2022-03-26', 1602, 65474, 4406, 5897, '-120.0000', '6.7859', '6.7859', '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 (68871, '2022-03-26', 1602, 65474, 4406, NULL, '121.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-121.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68872, '2022-03-26', 1856, 65475, 4406, NULL, '1.0000', '4.2500', '4.2500', '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 (68873, '2022-03-26', 2252, 65476, 4406, 2789, '-21.0000', '9.5000', '9.5000', '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 (68874, '2022-03-26', 2252, 65476, 4406, NULL, '22.0000', '9.5000', '9.5000', '16.0000', '16.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68875, '2022-03-26', 1545, 65477, 4406, 18821, '1.0000', '7.3500', '7.3500', '10.0000', '10.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 (68876, '2022-03-26', 1999, 65478, 4406, 6362, '-9.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 (68877, '2022-03-26', 1999, 65478, 4406, NULL, '10.0000', '6.0000', '6.0000', '10.0000', '10.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 (68878, '2022-03-26', 1689, 65479, 4406, 4897, '-8.0000', '60.7198', '60.7198', '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 (68879, '2022-03-26', 1689, 65479, 4406, NULL, '9.0000', '60.7198', '60.7198', '19.0000', '19.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 (68880, '2022-03-26', 2357, 65480, 4406, 3859, '-2.0000', '4.0000', '4.0000', '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 (68881, '2022-03-26', 2357, 65480, 4406, NULL, '3.0000', '4.0000', '4.0000', '5.5000', '5.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 (68882, '2022-03-26', 8775, 65481, 4406, NULL, '2.0000', '2.6000', '2.6000', '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 (68883, '2022-03-26', 9830, 65482, 4406, 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 (68884, '2022-03-26', 9870, 65483, 4406, NULL, '1.0000', '5.1000', '5.1000', '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 (68885, '2022-03-26', 1308, 65484, 4406, 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 (68886, '2022-03-26', 2891, 65485, 4406, 18020, '-2.0000', '9.5000', '9.5000', '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 (68887, '2022-03-26', 2891, 65485, 4406, NULL, '3.0000', '9.5000', '9.5000', '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 (68888, '2022-03-26', 7758, 65486, 4406, 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 (68889, '2022-03-26', 1884, 65487, 4406, 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 (68890, '2022-03-26', 7930, 65488, 4406, NULL, '1.0000', '1.3000', '1.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 (68891, '2022-03-26', 2758, 65489, 4406, 22011, '-3.0000', '-20.1917', '-20.1917', '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 (68892, '2022-03-26', 2758, 65489, 4406, NULL, '4.0000', '-20.1917', '-20.1917', '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 (68893, '2022-03-26', 1665, 65490, 4406, 3235, '-84.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 (68894, '2022-03-26', 1665, 65490, 4406, NULL, '86.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68895, '2022-03-26', 9734, 65491, 4406, NULL, '4.0000', '0.3200', '0.3200', '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 (68896, '2022-03-26', 9832, 65492, 4406, NULL, '1.0000', '1.5600', '1.5600', '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 (68897, '2022-03-26', 1608, 65493, 4406, 8222, '-13.0000', '3.3500', '3.3500', '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 (68898, '2022-03-26', 1608, 65493, 4406, NULL, '14.0000', '3.3500', '3.3500', '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 (68899, '2022-03-26', 1337, 65494, 4406, 10809, '-15.0000', '2.0000', '2.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 (68900, '2022-03-26', 1337, 65494, 4406, NULL, '16.0000', '2.0000', '2.0000', '3.5000', '3.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 (68901, '2022-03-26', 2247, 65495, 4406, 2784, '-6.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 (68902, '2022-03-26', 2247, 65495, 4406, NULL, '7.0000', '2.5000', '2.5000', '3.5000', '3.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 (68903, '2022-03-26', 2413, 65496, 4406, 4505, '-6.0000', '1.0500', '1.0500', '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 (68904, '2022-03-26', 2413, 65496, 4406, NULL, '8.0000', '1.0500', '1.0500', '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 (68905, '2022-03-26', 7333, 65497, 4406, NULL, '2.0000', '13.5000', '13.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 (68906, '2022-03-26', 1699, 65498, 4406, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '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 (68907, '2022-03-26', 1409, 65499, 4406, 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 (68908, '2022-03-26', 9695, 65500, 4406, NULL, '1.0000', '4.5000', '4.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 (68909, '2022-03-26', 1521, 65501, 4406, 20591, '1.0000', '2.5754', '2.5754', '4.0000', '4.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 (68910, '2022-03-26', 1388, 65502, 4406, 22361, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (68911, '2022-03-26', 1837, 65503, 4406, 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 (68912, '2022-03-26', 1562, 65504, 4406, 22331, '1.0000', '5.1300', '5.1300', '7.5000', '7.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 (68913, '2022-03-26', 2769, 65505, 4406, 22266, '4.0000', '1.5200', '1.5200', '2.5000', '2.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 (68914, '2022-03-26', 9482, 65506, 4406, 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 (68915, '2022-03-26', 9794, 65507, 4406, NULL, '1.0000', '1.0800', '1.0800', '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 (68916, '2022-03-26', 9750, 65508, 4406, NULL, '1.0000', '3.3000', '3.3000', '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 (68917, '2022-03-26', 9482, 65509, 4406, 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 (68918, '2022-03-26', 9531, 65510, 4406, NULL, '1.0000', '8.5000', '8.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 (68919, '2022-03-26', 1602, 65511, 4406, 5897, '-120.0000', '6.7859', '6.7859', '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 (68920, '2022-03-26', 1602, 65511, 4406, NULL, '121.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-121.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68921, '2022-03-26', 2293, 65512, 4406, 22262, '2.0000', '1.4400', '1.4400', '1.5000', '1.5000', '71.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 (68922, '2022-03-26', 7482, 65513, 4406, NULL, '1.0000', '3.0500', '3.0500', '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 (68923, '2022-03-26', 1816, 65514, 4406, 22478, '-2.0000', '18.2300', '18.2300', '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 (68924, '2022-03-26', 1816, 65514, 4406, NULL, '3.0000', '18.2300', '18.2300', '29.0000', '29.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 (68925, '2022-03-26', 9831, 65515, 4406, NULL, '1.0000', '1.5600', '1.5600', '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 (68926, '2022-03-26', 9740, 65516, 4406, NULL, '1.0000', '0.6600', '0.6600', '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 (68927, '2022-03-26', 9868, 65517, 4406, 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 (68928, '2022-03-26', 1928, 65518, 4406, NULL, '1.0000', '186.5625', '186.5625', '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 (68929, '2022-03-26', 2242, 65519, 4406, 20608, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '39.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 (68930, '2022-03-26', 7671, 65520, 4406, NULL, '1.0000', '15.5000', '15.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 (68931, '2022-03-26', 1646, 65521, 4406, 3239, '-13.0000', '4.5300', '4.5300', '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 (68932, '2022-03-26', 1646, 65521, 4406, NULL, '14.0000', '4.5300', '4.5300', '8.0000', '8.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 (68933, '2022-03-26', 7584, 65522, 4406, NULL, '1.0000', '2.6000', '2.6000', '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 (68934, '2022-03-26', 9748, 65523, 4406, NULL, '1.0000', '2.5300', '2.5300', '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 (68935, '2022-03-26', 2237, 65524, 4406, 2781, '-47.0000', '1.0600', '1.0600', '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 (68936, '2022-03-26', 2237, 65524, 4406, NULL, '48.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68937, '2022-03-26', 9750, 65525, 4406, NULL, '1.0000', '3.3000', '3.3000', '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 (68938, '2022-03-26', 8017, 65526, 4406, NULL, '3.0000', '40.0000', '40.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 (68939, '2022-03-26', 7411, 65527, 4406, NULL, '1.0000', '1.3500', '1.3500', '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 (68940, '2022-03-26', 2169, 65528, 4406, 10737, '-84.0000', '3.8397', '3.8397', '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 (68941, '2022-03-26', 2169, 65528, 4406, NULL, '86.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68942, '2022-03-26', 2360, 65529, 4406, 3862, '-71.0000', '0.5200', '0.5200', '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 (68943, '2022-03-26', 2360, 65529, 4406, NULL, '76.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68944, '2022-03-26', 1728, 65530, 4406, 6625, '-16.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 (68945, '2022-03-26', 1728, 65530, 4406, NULL, '18.0000', '1.9000', '1.9000', '2.5000', '2.5000', '-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 (68946, '2022-03-26', 1602, 65531, 4406, 5897, '-120.0000', '6.7859', '6.7859', '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 (68947, '2022-03-26', 1602, 65531, 4406, NULL, '121.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-121.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68948, '2022-03-26', 1388, 65532, 4406, 22361, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (68949, '2022-03-26', 1779, 65533, 4406, 4898, '-8.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 (68950, '2022-03-26', 1779, 65533, 4406, NULL, '10.0000', '90.0000', '90.0000', '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 (68951, '2022-03-26', 9695, 65534, 4406, NULL, '1.0000', '4.5000', '4.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 (68952, '2022-03-26', 9831, 65535, 4406, NULL, '1.0000', '1.5600', '1.5600', '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 (68953, '2022-03-26', 2167, 65536, 4406, 17165, '-40.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 (68954, '2022-03-26', 2167, 65536, 4406, NULL, '41.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (68955, '2022-03-26', 2384, 65537, 4406, 12014, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '54.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 (68956, '2022-03-26', 7473, 65538, 4407, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (68957, '2022-03-26', 8288, 65539, 4407, NULL, '1.0000', '1.1600', '1.1600', '1.8000', '1.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 (68958, '2022-03-26', 7894, 65540, 4407, NULL, '1.0000', '3.8000', '3.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 (68959, '2022-03-26', 8395, 65541, 4407, NULL, '1.0000', '0.9700', '0.9700', '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 (68960, '2022-03-26', 7864, 65542, 4407, NULL, '2.0000', '19.5100', '19.5100', '26.5000', '26.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 (68961, '2022-03-26', 7709, 65543, 4407, NULL, '2.0000', '3.5000', '3.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 (68962, '2022-03-26', 9381, 65544, 4407, NULL, '2.0000', '5.6200', '5.6200', '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 (68963, '2022-03-26', 9635, 65545, 4407, NULL, '1.0000', '8.6800', '8.6800', '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 (68964, '2022-03-26', 7852, 65546, 4407, NULL, '1.0000', '15.0000', '15.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 (68965, '2022-03-26', 9817, 65547, 4407, 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 (68966, '2022-03-26', 7482, 65548, 4407, NULL, '1.0000', '3.0500', '3.0500', '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 (68967, '2022-03-26', 2242, 65549, 4407, 20608, '3.0000', '0.4800', '0.4800', '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 (68968, '2022-03-26', 7598, 65550, 4407, NULL, '4.0000', '1.2800', '1.2800', '8.5000', '8.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 (68969, '2022-03-26', 8324, 65551, 4407, NULL, '2.0000', '3.0000', '3.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 (68970, '2022-03-26', 9028, 65552, 4407, 33823, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68971, '2022-03-26', 9785, 65553, 4407, 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 (68972, '2022-03-26', 7728, 65554, 4407, NULL, '1.0000', '1.8000', '1.8000', '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 (68973, '2022-03-26', 7886, 65555, 4407, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68974, '2022-03-26', 1976, 65556, 4407, 6343, '-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 (68975, '2022-03-26', 1976, 65556, 4407, NULL, '3.0000', '5.0000', '5.0000', '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 (68976, '2022-03-26', 7852, 65557, 4407, NULL, '1.0000', '15.0000', '15.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 (68977, '2022-03-26', 9407, 65558, 4407, NULL, '1.0000', '5.4000', '5.4000', '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 (68978, '2022-03-26', 9092, 65559, 4407, NULL, '3.0000', '5.2900', '5.2900', '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 (68979, '2022-03-26', 1498, 65560, 4407, 19685, '-30.0000', '0.3300', '0.3300', '0.6000', '0.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 (68980, '2022-03-26', 1498, 65560, 4407, NULL, '32.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68981, '2022-03-26', 2315, 65561, 4407, 2735, '-216.0000', '0.3300', '0.3300', '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 (68982, '2022-03-26', 2315, 65561, 4407, NULL, '217.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-217.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68983, '2022-03-26', 7608, 65562, 4407, NULL, '2.0000', '6.9800', '6.9800', '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 (68984, '2022-03-26', 7725, 65563, 4407, 33062, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68985, '2022-03-26', 7675, 65564, 4407, NULL, '1.0000', '11.4300', '11.4300', '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 (68986, '2022-03-26', 9865, 65565, 4407, 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 (68987, '2022-03-26', 1837, 65566, 4407, 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 (68988, '2022-03-26', 9835, 65567, 4407, 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 (68989, '2022-03-26', 8672, 65568, 4407, 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 (68990, '2022-03-26', 7593, 65569, 4407, NULL, '1.0000', '2.4500', '2.4500', '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 (68991, '2022-03-26', 2315, 65570, 4407, 2735, '-216.0000', '0.3300', '0.3300', '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 (68992, '2022-03-26', 2315, 65570, 4407, NULL, '218.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-218.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68993, '2022-03-26', 9821, 65571, 4407, NULL, '1.0000', '1.4500', '1.4500', '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 (68994, '2022-03-26', 7518, 65572, 4407, NULL, '1.0000', '7.8200', '7.8200', '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 (68995, '2022-03-26', 9865, 65573, 4407, 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 (68996, '2022-03-26', 2069, 65574, 4407, 5571, '-5.0000', '2.0400', '2.0400', '9.5000', '9.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 (68997, '2022-03-26', 2069, 65574, 4407, NULL, '6.0000', '2.0400', '2.0400', '9.5000', '9.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 (68998, '2022-03-26', 8296, 65575, 4407, NULL, '1.0000', '1.7000', '1.7000', '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 (68999, '2022-03-26', 7611, 65576, 4407, NULL, '1.0000', '4.4000', '4.4000', '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 (69000, '2022-03-26', 7711, 65577, 4407, NULL, '1.0000', '35.6300', '35.6300', '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 (69001, '2022-03-26', 2876, 65578, 4407, 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 (69002, '2022-03-26', 8359, 65579, 4407, 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 (69003, '2022-03-26', 7428, 65580, 4407, NULL, '4.0000', '2.6100', '2.6100', '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 (69004, '2022-03-26', 7675, 65581, 4407, NULL, '2.0000', '11.4300', '11.4300', '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 (69005, '2022-03-26', 7516, 65582, 4407, NULL, '1.0000', '10.0000', '10.0000', '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 (69006, '2022-03-26', 9734, 65583, 4407, NULL, '2.0000', '0.3200', '0.3200', '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 (69007, '2022-03-26', 7514, 65584, 4407, NULL, '1.0000', '2.2500', '2.2500', '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 (69008, '2022-03-26', 8473, 65585, 4407, NULL, '3.0000', '7.0000', '7.0000', '9.5000', '9.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 (69009, '2022-03-26', 7704, 65586, 4407, NULL, '1.0000', '0.4900', '0.4900', '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 (69010, '2022-03-26', 9790, 65587, 4407, 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 (69011, '2022-03-26', 9092, 65588, 4407, NULL, '2.0000', '5.2900', '5.2900', '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 (69012, '2022-03-26', 9734, 65589, 4407, NULL, '2.0000', '0.3200', '0.3200', '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 (69013, '2022-03-26', 8763, 65590, 4407, NULL, '2.0000', '5.4000', '5.4000', '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 (69014, '2022-03-26', 7991, 65591, 4407, NULL, '1.0000', '26.5700', '26.5700', '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 (69015, '2022-03-26', 9272, 65592, 4407, NULL, '2.0000', '3.1000', '3.1000', '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 (69016, '2022-03-26', 7641, 65593, 4407, NULL, '1.0000', '1.9000', '1.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 (69017, '2022-03-26', 2352, 65594, 4407, 3855, '-120.0000', '20.0000', '20.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 (69018, '2022-03-26', 2352, 65594, 4407, NULL, '123.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69019, '2022-03-26', 8769, 65595, 4407, NULL, '1.0000', '6.6000', '6.6000', '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 (69020, '2022-03-26', 9092, 65596, 4407, NULL, '2.0000', '5.2900', '5.2900', '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 (69021, '2022-03-26', 8000, 65597, 4407, NULL, '1.0000', '6.8400', '6.8400', '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 (69022, '2022-03-26', 7954, 65598, 4407, NULL, '2.0000', '3.0000', '3.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 (69023, '2022-03-26', 9573, 65599, 4407, 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 (69024, '2022-03-26', 7666, 65600, 4407, 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 (69025, '2022-03-26', 7658, 65601, 4407, NULL, '2.0000', '2.0200', '2.0200', '2.8000', '2.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 (69026, '2022-03-26', 7675, 65602, 4407, NULL, '1.0000', '11.4300', '11.4300', '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 (69027, '2022-03-26', 8318, 65603, 4407, NULL, '1.0000', '5.5000', '5.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 (69028, '2022-03-26', 9275, 65604, 4407, NULL, '1.0000', '6.3000', '6.3000', '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 (69029, '2022-03-26', 7709, 65605, 4407, NULL, '2.0000', '3.5000', '3.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 (69030, '2022-03-26', 7708, 65606, 4407, NULL, '1.0000', '7.8000', '7.8000', '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 (69031, '2022-03-26', 2316, 65607, 4407, 16951, '-2.0000', '44.8814', '44.8814', '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 (69032, '2022-03-26', 2316, 65607, 4407, NULL, '3.0000', '44.8814', '44.8814', '53.0000', '53.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 (69033, '2022-03-26', 7728, 65608, 4407, NULL, '1.0000', '1.8000', '1.8000', '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 (69034, '2022-03-26', 8596, 65609, 4407, 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 (69035, '2022-03-26', 2315, 65610, 4407, 2735, '-216.0000', '0.3300', '0.3300', '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 (69036, '2022-03-26', 2315, 65610, 4407, NULL, '217.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-217.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69037, '2022-03-26', 1884, 65611, 4407, 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 (69038, '2022-03-26', 9734, 65612, 4407, NULL, '1.0000', '0.3200', '0.3200', '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 (69039, '2022-03-26', 7509, 65613, 4407, 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 (69040, '2022-03-26', 7514, 65614, 4407, NULL, '1.0000', '2.2500', '2.2500', '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 (69041, '2022-03-26', 7703, 65615, 4407, NULL, '2.0000', '22.9900', '22.9900', '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 (69042, '2022-03-26', 7473, 65616, 4407, NULL, '10.0000', '0.5300', '0.5300', '0.6000', '0.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 (69043, '2022-03-26', 9734, 65617, 4408, NULL, '1.0000', '0.3200', '0.3200', '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 (69044, '2022-03-26', 2020, 65618, 4408, 10164, '-16.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 (69045, '2022-03-26', 2020, 65618, 4408, NULL, '17.0000', '7.5000', '7.5000', '10.0000', '10.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 (69046, '2022-03-26', 1647, 65619, 4408, 3218, '-11.0000', '4.7200', '4.7200', '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 (69047, '2022-03-26', 1647, 65619, 4408, NULL, '12.0000', '4.7200', '4.7200', '8.0000', '8.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 (69048, '2022-03-26', 2354, 65620, 4408, NULL, '1.0000', '4.6000', '4.6000', '6.8600', '6.8600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69049, '2022-03-26', 2384, 65621, 4408, 12014, '5.0000', '0.4000', '0.4000', '0.7000', '0.7000', '49.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 (69050, '2022-03-26', 8420, 65622, 4409, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '16.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69051, '2022-03-26', 1527, 65623, 4409, NULL, '1.0000', '13.1000', '13.1000', '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 (69052, '2022-03-26', 2315, 65624, 4409, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '51.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69053, '2022-03-26', 7638, 65625, 4409, 34927, '1.0000', '12.0000', '12.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69054, '2022-03-26', 7786, 65626, 4409, NULL, '1.0000', '6.7700', '6.7700', '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 (69055, '2022-03-26', 1680, 65627, 4409, 48168, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69056, '2022-03-26', 8666, 65628, 4409, 53016, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69057, '2022-03-26', 1624, 65629, 4409, 41404, '1.0000', '69.8000', '69.8000', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69058, '2022-03-26', 8133, 65630, 4409, NULL, '1.0000', '-2579.9258', '-2579.9258', '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 (69059, '2022-03-26', 9868, 65631, 4409, 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 (69060, '2022-03-26', 2821, 65632, 4409, 52928, '1.0000', '4.6092', '4.6092', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69061, '2022-03-26', 2237, 65633, 4409, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69062, '2022-03-26', 8745, 65634, 4409, 51949, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69063, '2022-03-26', 9695, 65635, 4409, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69064, '2022-03-26', 2440, 65636, 4409, 52990, '1.0000', '7.1002', '7.1002', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69065, '2022-03-26', 9748, 65637, 4409, 52957, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69066, '2022-03-26', 8771, 65638, 4410, NULL, '1.0000', '4.5000', '4.5000', '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 (69067, '2022-03-26', 1590, 65639, 4411, 22260, '1.0000', '1.7100', '1.7100', '3.0000', '3.0000', '12.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 (69068, '2022-03-26', 7411, 65640, 4411, NULL, '1.0000', '1.3500', '1.3500', '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 (69069, '2022-03-26', 2352, 65641, 4411, 3855, '-123.0000', '20.0000', '20.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 (69070, '2022-03-26', 2352, 65641, 4411, NULL, '129.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-129.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69071, '2022-03-27', 2315, 65642, 4412, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '49.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69072, '2022-03-27', 9815, 65643, 4412, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '12.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69073, '2022-03-27', 2167, 65644, 4412, NULL, '1.0000', '1.7907', '1.7907', '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 (69074, '2022-03-27', 9751, 65645, 4412, 51989, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69075, '2022-03-27', 1602, 65646, 4412, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69076, '2022-03-27', 2503, 65647, 4412, 52988, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69077, '2022-03-27', 1592, 65648, 4412, 48494, '1.0000', '34.8558', '34.8558', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69078, '2022-03-27', 9845, 65649, 4412, 51396, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69079, '2022-03-27', 8706, 65650, 4412, 49256, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69080, '2022-03-27', 1910, 65651, 4412, 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 (69081, '2022-03-27', 2061, 65652, 4412, NULL, '1.0000', '11.0146', '11.0146', '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 (69082, '2022-03-27', 8065, 65653, 4412, NULL, '1.0000', '32.0000', '32.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 (69083, '2022-03-27', 9794, 65654, 4412, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69084, '2022-03-27', 8746, 65655, 4412, 53007, '2.0000', '3.0886', '3.0886', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69085, '2022-03-27', 7342, 65656, 4412, NULL, '1.0000', '15.7285', '15.7285', '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 (69086, '2022-03-27', 1455, 65657, 4412, 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 (69087, '2022-03-27', 1505, 65658, 4412, 52929, '1.0000', '137.0213', '137.0213', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69088, '2022-03-27', 9831, 65659, 4412, 53002, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69089, '2022-03-27', 9832, 65660, 4412, 53005, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69090, '2022-03-27', 8783, 65661, 4412, NULL, '1.0000', '45.0300', '45.0300', '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 (69091, '2022-03-27', 1863, 65662, 4412, 52353, '2.0000', '1.3923', '1.3923', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69092, '2022-03-27', 9751, 65663, 4412, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69093, '2022-03-27', 1528, 65664, 4412, 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 (69094, '2022-03-27', 1781, 65665, 4412, 52193, '1.0000', '5.3500', '5.3500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69095, '2022-03-27', 8677, 65666, 4412, NULL, '2.0000', '292.4641', '292.4641', '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 (69096, '2022-03-27', 8017, 65667, 4412, NULL, '2.0000', '0.6000', '0.6000', '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 (69097, '2022-03-27', 2020, 65668, 4413, NULL, '1.0000', '59.0820', '59.0820', '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 (69098, '2022-03-27', 1704, 65669, 4413, NULL, '1.0000', '27.2300', '27.2300', '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 (69099, '2022-03-27', 2769, 65670, 4413, NULL, '4.0000', '-2.2800', '-2.2800', '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 (69100, '2022-03-27', 9740, 65671, 4413, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69101, '2022-03-27', 2029, 65672, 4413, 51954, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69102, '2022-03-27', 7472, 65673, 4413, NULL, '1.0000', '3.5411', '3.5411', '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 (69103, '2022-03-27', 1314, 65674, 4413, 52954, '1.0000', '1.4813', '1.4813', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69104, '2022-03-27', 9572, 65675, 4413, 37446, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69105, '2022-03-27', 2454, 65676, 4413, 51387, '1.0000', '9.0840', '9.0840', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69106, '2022-03-27', 8149, 65677, 4413, NULL, '2.0000', '5.3000', '5.3000', '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 (69107, '2022-03-27', 7719, 65678, 4413, NULL, '1.0000', '5.5000', '5.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 (69108, '2022-03-27', 1409, 65679, 4413, 51679, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69109, '2022-03-27', 2167, 65680, 4413, NULL, '1.0000', '1.7907', '1.7907', '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 (69110, '2022-03-27', 2169, 65681, 4413, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69111, '2022-03-27', 1856, 65682, 4413, NULL, '2.0000', '5.5569', '5.5569', '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 (69112, '2022-03-27', 2253, 65683, 4413, 51366, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69113, '2022-03-27', 8654, 65684, 4413, NULL, '1.0000', '5.8000', '5.8000', '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 (69114, '2022-03-27', 9598, 65685, 4413, 51686, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69115, '2022-03-27', 9508, 65686, 4413, 48645, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69116, '2022-03-27', 1722, 65687, 4413, NULL, '1.0000', '2.5900', '2.5900', '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 (69117, '2022-03-27', 2169, 65688, 4413, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69118, '2022-03-27', 8177, 65689, 4414, NULL, '1.0000', '12.5000', '12.5000', '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 (69119, '2022-03-27', 7412, 65690, 4414, NULL, '1.0000', '1.5200', '1.5200', '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 (69120, '2022-03-27', 7711, 65691, 4414, NULL, '1.0000', '35.6300', '35.6300', '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 (69121, '2022-03-27', 7570, 65692, 4414, NULL, '1.0000', '10.0000', '10.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 (69122, '2022-03-27', 1577, 65693, 4414, 7596, '-10.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 (69123, '2022-03-27', 1577, 65693, 4414, NULL, '11.0000', '2.5000', '2.5000', '3.5000', '3.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 (69124, '2022-03-27', 8746, 65694, 4414, 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 (69125, '2022-03-27', 7703, 65695, 4414, NULL, '2.0000', '22.9900', '22.9900', '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 (69126, '2022-03-27', 8596, 65696, 4414, 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 (69127, '2022-03-27', 9320, 65697, 4414, NULL, '1.0000', '8.9800', '8.9800', '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 (69128, '2022-03-27', 8360, 65698, 4414, NULL, '1.0000', '3.2300', '3.2300', '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 (69129, '2022-03-27', 7317, 65699, 4414, NULL, '1.0000', '19.5500', '19.5500', '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 (69130, '2022-03-27', 8702, 65700, 4414, NULL, '1.0000', '3.6700', '3.6700', '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 (69131, '2022-03-27', 8247, 65701, 4414, NULL, '3.0000', '2.9600', '2.9600', '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 (69132, '2022-03-27', 8288, 65702, 4414, NULL, '1.0000', '1.1600', '1.1600', '1.8000', '1.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 (69133, '2022-03-27', 9423, 65703, 4414, NULL, '1.0000', '1.6000', '1.6000', '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 (69134, '2022-03-27', 7980, 65704, 4414, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (69135, '2022-03-27', 7917, 65705, 4414, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (69136, '2022-03-27', 1837, 65706, 4414, 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 (69137, '2022-03-27', 8000, 65707, 4414, NULL, '1.0000', '6.8400', '6.8400', '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 (69138, '2022-03-27', 7886, 65708, 4414, 33789, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69139, '2022-03-27', 7993, 65709, 4414, NULL, '1.0000', '41.0000', '41.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69140, '2022-03-27', 7885, 65710, 4414, NULL, '1.0000', '82.8700', '82.8700', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69141, '2022-03-27', 8746, 65711, 4414, 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 (69142, '2022-03-27', 7967, 65712, 4414, NULL, '1.0000', '7.0000', '7.0000', '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 (69143, '2022-03-27', 7385, 65713, 4414, 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 (69144, '2022-03-27', 8061, 65714, 4414, NULL, '1.0000', '6.5000', '6.5000', '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 (69145, '2022-03-27', 7630, 65715, 4414, NULL, '1.0000', '10.0000', '10.0000', '3.2000', '3.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 (69146, '2022-03-27', 9499, 65716, 4414, 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 (69147, '2022-03-27', 7674, 65717, 4414, 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 (69148, '2022-03-27', 9399, 65718, 4414, NULL, '1.0000', '0.9800', '0.9800', '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 (69149, '2022-03-27', 9817, 65719, 4414, 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 (69150, '2022-03-27', 7933, 65720, 4414, NULL, '1.0000', '0.4400', '0.4400', '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 (69151, '2022-03-27', 1743, 65721, 4414, NULL, '1.0000', '3.9800', '3.9800', '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 (69152, '2022-03-27', 7674, 65722, 4414, 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 (69153, '2022-03-27', 2315, 65723, 4414, 2735, '-220.0000', '0.3300', '0.3300', '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 (69154, '2022-03-27', 2315, 65723, 4414, NULL, '221.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-221.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69155, '2022-03-27', 9092, 65724, 4414, NULL, '1.0000', '5.2900', '5.2900', '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 (69156, '2022-03-27', 8972, 65725, 4414, NULL, '1.0000', '4.5000', '4.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 (69157, '2022-03-27', 7713, 65726, 4414, NULL, '2.0000', '0.3800', '0.3800', '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 (69158, '2022-03-27', 1837, 65727, 4414, 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 (69159, '2022-03-27', 7459, 65728, 4414, NULL, '20.0000', '2.3500', '2.3500', '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 (69160, '2022-03-27', 9275, 65729, 4414, NULL, '2.0000', '6.3000', '6.3000', '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 (69161, '2022-03-27', 7514, 65730, 4414, NULL, '1.0000', '2.2500', '2.2500', '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 (69162, '2022-03-27', 7672, 65731, 4414, NULL, '1.0000', '1.0200', '1.0200', '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 (69163, '2022-03-27', 7321, 65732, 4414, NULL, '1.0000', '7.9500', '7.9500', '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 (69164, '2022-03-27', 7518, 65733, 4414, NULL, '5.0000', '7.8200', '7.8200', '10.5000', '10.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 (69165, '2022-03-27', 1837, 65734, 4414, 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 (69166, '2022-03-27', 7559, 65735, 4414, 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 (69167, '2022-03-27', 8314, 65736, 4414, NULL, '5.0000', '7.5900', '7.5900', '11.0000', '11.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 (69168, '2022-03-27', 8105, 65737, 4414, NULL, '1.0000', '10.8900', '10.8900', '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 (69169, '2022-03-27', 7671, 65738, 4414, NULL, '1.0000', '15.5000', '15.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 (69170, '2022-03-27', 9272, 65739, 4414, NULL, '1.0000', '3.1000', '3.1000', '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 (69171, '2022-03-27', 8753, 65740, 4414, 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 (69172, '2022-03-27', 8949, 65741, 4414, 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 (69173, '2022-03-27', 7671, 65742, 4414, NULL, '1.0000', '15.5000', '15.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 (69174, '2022-03-27', 1863, 65743, 4415, 52353, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69175, '2022-03-27', 7944, 65744, 4415, NULL, '1.0000', '2.0100', '2.0100', '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 (69176, '2022-03-27', 1450, 65745, 4415, 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 (69177, '2022-03-27', 1787, 65746, 4415, NULL, '1.0000', '0.5000', '0.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 (69178, '2022-03-27', 9845, 65747, 4415, NULL, '1.0000', '5.7000', '5.7000', '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 (69179, '2022-03-27', 2088, 65748, 4415, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69180, '2022-03-27', 9735, 65749, 4415, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69181, '2022-03-27', 2352, 65750, 4415, NULL, '2.0000', '126.2588', '126.2588', '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 (69182, '2022-03-27', 2643, 65751, 4415, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '12.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69183, '2022-03-27', 1677, 65752, 4415, 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 (69184, '2022-03-27', 1818, 65753, 4415, 51648, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69185, '2022-03-27', 2410, 65754, 4415, 48148, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69186, '2022-03-27', 2506, 65755, 4415, NULL, '1.0000', '4.2640', '4.2640', '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 (69187, '2022-03-27', 9788, 65756, 4415, 51672, '2.0000', '1.5897', '1.5897', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69188, '2022-03-27', 2473, 65757, 4415, 52972, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69189, '2022-03-27', 2769, 65758, 4415, NULL, '4.0000', '-2.2800', '-2.2800', '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 (69190, '2022-03-27', 1935, 65759, 4415, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69191, '2022-03-27', 1410, 65760, 4415, NULL, '1.0000', '-0.4921', '-0.4921', '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 (69192, '2022-03-27', 1744, 65761, 4415, NULL, '1.0000', '138.0750', '138.0750', '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 (69193, '2022-03-27', 1651, 65762, 4415, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69194, '2022-03-27', 7741, 65763, 4415, NULL, '1.0000', '-6.8417', '-6.8417', '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 (69195, '2022-03-27', 2366, 65764, 4415, NULL, '2.0000', '-24.7743', '-24.7743', '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 (69196, '2022-03-27', 9794, 65765, 4416, 52337, '4.0000', '1.0800', '1.0800', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69197, '2022-03-27', 2169, 65766, 4416, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69198, '2022-03-27', 2295, 65767, 4416, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69199, '2022-03-27', 2348, 65768, 4416, 51333, '1.0000', '26.9800', '26.9800', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69200, '2022-03-27', 2769, 65769, 4416, NULL, '4.0000', '-2.2800', '-2.2800', '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 (69201, '2022-03-27', 1532, 65770, 4416, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69202, '2022-03-27', 2379, 65771, 4416, NULL, '1.0000', '0.2954', '0.2954', '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 (69203, '2022-03-27', 9580, 65772, 4416, 39225, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69204, '2022-03-27', 2003, 65773, 4416, 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 (69205, '2022-03-27', 8666, 65774, 4416, NULL, '1.0000', '0.4600', '0.4600', '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 (69206, '2022-03-27', 1521, 65775, 4417, 40904, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69207, '2022-03-27', 8013, 65776, 4417, 47991, '2.0000', '3.6500', '3.6500', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69208, '2022-03-27', 1837, 65777, 4417, 46752, '2.0000', '0.4981', '0.4981', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69209, '2022-03-27', 8009, 65778, 4417, NULL, '13.0000', '5.0000', '5.0000', '11.2000', '11.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 (69210, '2022-03-27', 1361, 65779, 4417, 48756, '1.0000', '59.0300', '59.0300', '67.5000', '67.5000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69211, '2022-03-27', 2169, 65780, 4417, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69212, '2022-03-27', 2642, 65781, 4418, 52998, '1.0000', '9.7508', '9.7508', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69213, '2022-03-27', 1602, 65782, 4418, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69214, '2022-03-27', 2289, 65783, 4418, NULL, '10.0000', '0.2222', '0.2222', '0.5000', '0.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 (69215, '2022-03-27', 1310, 65784, 4418, 52211, '7.0000', '0.4100', '0.4100', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69216, '2022-03-27', 8746, 65785, 4418, 53007, '1.0000', '3.0886', '3.0886', '4.5000', '4.5000', '21.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69217, '2022-03-27', 9734, 65786, 4419, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69218, '2022-03-27', 1912, 65787, 4419, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69219, '2022-03-27', 2015, 65788, 4419, 42644, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69220, '2022-03-27', 2136, 65789, 4419, 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 (69221, '2022-03-27', 1945, 65790, 4420, 52328, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69222, '2022-03-27', 1839, 65791, 4420, NULL, '1.0000', '-169.0668', '-169.0668', '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 (69223, '2022-03-27', 8256, 65792, 4421, NULL, '1.0000', '20.0000', '20.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 (69224, '2022-03-27', 7608, 65793, 4421, NULL, '1.0000', '6.9800', '6.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 (69225, '2022-03-27', 8978, 65794, 4421, NULL, '1.0000', '0.6900', '0.6900', '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 (69226, '2022-03-27', 8256, 65795, 4421, NULL, '1.0000', '20.0000', '20.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 (69227, '2022-03-27', 7451, 65796, 4421, NULL, '2.0000', '9.8000', '9.8000', '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 (69228, '2022-03-27', 8677, 65797, 4421, NULL, '2.0000', '1.2800', '1.2800', '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 (69229, '2022-03-27', 7779, 65798, 4421, 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 (69230, '2022-03-27', 8085, 65799, 4421, NULL, '3.0000', '1.1700', '1.1700', '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 (69231, '2022-03-27', 9822, 65800, 4422, 51344, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69232, '2022-03-27', 8744, 65801, 4422, 53008, '1.0000', '2.0383', '2.0383', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69233, '2022-03-28', 2948, 65802, 4423, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69234, '2022-03-28', 1689, 65803, 4423, NULL, '1.0000', '12.9279', '12.9279', '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 (69235, '2022-03-28', 9747, 65804, 4423, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69236, '2022-03-28', 2169, 65805, 4423, 52147, '3.0000', '1.3276', '1.3276', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69237, '2022-03-28', 2379, 65806, 4423, NULL, '1.0000', '0.2954', '0.2954', '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 (69238, '2022-03-28', 9813, 65807, 4423, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69239, '2022-03-28', 8844, 65808, 4423, 52199, '1.0000', '4.7829', '4.7829', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69240, '2022-03-28', 1367, 65809, 4423, 18939, '10.0000', '49.2100', '49.2100', '7.0000', '7.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 (69241, '2022-03-28', 7456, 65810, 4423, NULL, '1.0000', '1.3800', '1.3800', '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 (69242, '2022-03-28', 9744, 65811, 4423, 52159, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69243, '2022-03-28', 9734, 65812, 4423, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69244, '2022-03-28', 7406, 65813, 4423, NULL, '2.0000', '2.3750', '2.3750', '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 (69245, '2022-03-28', 9794, 65814, 4423, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69246, '2022-03-28', 9482, 65815, 4423, NULL, '2.0000', '0.5000', '0.5000', '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 (69247, '2022-03-28', 7802, 65816, 4423, 52947, '2.0000', '1.4200', '1.4200', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69248, '2022-03-28', 1590, 65817, 4423, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69249, '2022-03-28', 2633, 65818, 4423, 52195, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69250, '2022-03-28', 2169, 65819, 4423, 52147, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69251, '2022-03-28', 2948, 65820, 4423, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69252, '2022-03-28', 2379, 65821, 4423, NULL, '1.0000', '0.2954', '0.2954', '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 (69253, '2022-03-28', 2169, 65822, 4423, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69254, '2022-03-28', 9740, 65823, 4423, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69255, '2022-03-28', 8666, 65824, 4423, NULL, '1.0000', '0.4600', '0.4600', '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 (69256, '2022-03-28', 1837, 65825, 4423, NULL, '2.0000', '2.5335', '2.5335', '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 (69257, '2022-03-28', 8638, 65826, 4423, NULL, '1.0000', '0.5254', '0.5254', '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 (69258, '2022-03-28', 1863, 65827, 4423, 52353, '3.0000', '1.3923', '1.3923', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69259, '2022-03-28', 2061, 65828, 4423, NULL, '1.0000', '11.0146', '11.0146', '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 (69260, '2022-03-28', 8065, 65829, 4423, NULL, '1.0000', '32.0000', '32.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 (69261, '2022-03-28', 1677, 65830, 4423, 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 (69262, '2022-03-28', 2491, 65831, 4423, 50232, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69263, '2022-03-28', 7532, 65832, 4423, 51356, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69264, '2022-03-28', 9870, 65833, 4423, 53001, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69265, '2022-03-28', 9751, 65834, 4423, 51989, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69266, '2022-03-28', 9695, 65835, 4423, 51993, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69267, '2022-03-28', 9832, 65836, 4423, 53005, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69268, '2022-03-28', 9734, 65837, 4423, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69269, '2022-03-28', 1501, 65838, 4423, NULL, '1.0000', '2.1784', '2.1784', '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 (69270, '2022-03-28', 2643, 65839, 4423, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '11.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69271, '2022-03-28', 8608, 65840, 4423, NULL, '1.0000', '0.9000', '0.9000', '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 (69272, '2022-03-28', 7636, 65841, 4424, NULL, '1.0000', '11.8700', '11.8700', '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 (69273, '2022-03-28', 8079, 65842, 4424, 52180, '1.0000', '13.6100', '13.6100', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69274, '2022-03-28', 9508, 65843, 4424, 48645, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69275, '2022-03-28', 8773, 65844, 4424, 53014, '1.0000', '4.0695', '4.0695', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69276, '2022-03-28', 2237, 65845, 4425, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69277, '2022-03-28', 7802, 65846, 4425, 52947, '2.0000', '1.4200', '1.4200', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69278, '2022-03-28', 2242, 65847, 4425, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69279, '2022-03-28', 2277, 65848, 4425, NULL, '3.0000', '0.9399', '0.9399', '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 (69280, '2022-03-28', 1810, 65849, 4425, 47114, '1.0000', '9.7936', '9.7936', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69281, '2022-03-28', 2269, 65850, 4425, NULL, '1.0000', '4.2967', '4.2967', '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 (69282, '2022-03-28', 3029, 65851, 4425, NULL, '1.0000', '-4.5585', '-4.5585', '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 (69283, '2022-03-28', 1337, 65852, 4425, NULL, '1.0000', '2.0000', '2.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 (69284, '2022-03-28', 9740, 65853, 4425, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69285, '2022-03-28', 2617, 65854, 4425, NULL, '1.0000', '4.4000', '4.4000', '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 (69286, '2022-03-28', 9830, 65855, 4425, 53003, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69287, '2022-03-28', 1322, 65856, 4425, NULL, '1.0000', '4.4000', '4.4000', '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 (69288, '2022-03-28', 2315, 65857, 4425, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '48.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69289, '2022-03-28', 2169, 65858, 4425, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69290, '2022-03-28', 1602, 65859, 4425, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69291, '2022-03-28', 1602, 65860, 4425, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69292, '2022-03-28', 7472, 65861, 4425, NULL, '1.0000', '3.5411', '3.5411', '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 (69293, '2022-03-28', 9715, 65862, 4425, 51680, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69294, '2022-03-28', 9740, 65863, 4425, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69295, '2022-03-28', 2506, 65864, 4425, NULL, '1.0000', '4.2640', '4.2640', '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 (69296, '2022-03-28', 1646, 65865, 4425, 52149, '1.0000', '5.3761', '5.3761', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69297, '2022-03-28', 7411, 65866, 4425, NULL, '2.0000', '1.3013', '1.3013', '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 (69298, '2022-03-28', 1578, 65867, 4425, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69299, '2022-03-28', 2277, 65868, 4425, NULL, '1.0000', '0.9399', '0.9399', '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 (69300, '2022-03-28', 1812, 65869, 4425, 52327, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69301, '2022-03-28', 9868, 65870, 4425, 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 (69302, '2022-03-28', 2567, 65871, 4425, 52982, '1.0000', '31.3810', '31.3810', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69303, '2022-03-28', 2948, 65872, 4425, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69304, '2022-03-28', 9868, 65873, 4425, 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 (69305, '2022-03-28', 8773, 65874, 4425, 53014, '1.0000', '4.0695', '4.0695', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69306, '2022-03-28', 2169, 65875, 4425, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69307, '2022-03-28', 2352, 65876, 4425, NULL, '5.0000', '126.2588', '126.2588', '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 (69308, '2022-03-28', 8298, 65877, 4425, NULL, '1.0000', '7.8400', '7.8400', '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 (69309, '2022-03-28', 1928, 65878, 4425, NULL, '1.0000', '5.3300', '5.3300', '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 (69310, '2022-03-28', 1935, 65879, 4425, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69311, '2022-03-28', 8595, 65880, 4425, NULL, '1.0000', '3.9640', '3.9640', '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 (69312, '2022-03-28', 7848, 65881, 4425, 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 (69313, '2022-03-28', 2385, 65882, 4425, 50075, '1.0000', '8.9100', '8.9100', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69314, '2022-03-28', 9750, 65883, 4425, NULL, '1.0000', '3.3000', '3.3000', '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 (69315, '2022-03-28', 1326, 65884, 4425, 48959, '1.0000', '4.5325', '4.5325', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69316, '2022-03-28', 2069, 65885, 4425, NULL, '1.0000', '2.0400', '2.0400', '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 (69317, '2022-03-28', 9740, 65886, 4425, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69318, '2022-03-28', 9204, 65887, 4425, NULL, '1.0000', '14.1514', '14.1514', '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 (69319, '2022-03-28', 2167, 65888, 4425, NULL, '1.0000', '1.7907', '1.7907', '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 (69320, '2022-03-28', 2643, 65889, 4425, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '10.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69321, '2022-03-28', 7459, 65890, 4425, NULL, '1.0000', '-6.1729', '-6.1729', '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 (69322, '2022-03-28', 2344, 65891, 4425, NULL, '1.0000', '19.4201', '19.4201', '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 (69323, '2022-03-28', 2753, 65892, 4425, 32534, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69324, '2022-03-28', 2135, 65893, 4425, NULL, '2.0000', '-0.2588', '-0.2588', '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 (69325, '2022-03-28', 1645, 65894, 4425, 51651, '1.0000', '13.1800', '13.1800', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69326, '2022-03-28', 1338, 65895, 4425, 51235, '1.0000', '4.3814', '4.3814', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69327, '2022-03-28', 2229, 65896, 4425, 52984, '1.0000', '21.8473', '21.8473', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69328, '2022-03-28', 2642, 65897, 4425, 52998, '1.0000', '9.7508', '9.7508', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69329, '2022-03-28', 9750, 65898, 4425, NULL, '1.0000', '3.3000', '3.3000', '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 (69330, '2022-03-28', 2223, 65899, 4425, NULL, '1.0000', '10.7140', '10.7140', '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 (69331, '2022-03-28', 2231, 65900, 4425, NULL, '2.0000', '-397.4544', '-397.4544', '45.0000', '45.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 (69332, '2022-03-28', 3024, 65901, 4425, 52992, '1.0000', '6.2930', '6.2930', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69333, '2022-03-28', 8183, 65902, 4425, NULL, '1.0000', '232.5300', '232.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 (69334, '2022-03-28', 9734, 65903, 4425, 52161, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69335, '2022-03-28', 2251, 65904, 4425, 52186, '1.0000', '11.3731', '11.3731', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69336, '2022-03-28', 1785, 65905, 4425, 52931, '1.0000', '16.0273', '16.0273', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69337, '2022-03-28', 9831, 65906, 4425, 53002, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69338, '2022-03-28', 9830, 65907, 4425, 53003, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69339, '2022-03-28', 2608, 65908, 4425, 40127, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '4.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69340, '2022-03-28', 7518, 65909, 4425, NULL, '1.0000', '7.8200', '7.8200', '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 (69341, '2022-03-28', 9204, 65910, 4425, NULL, '1.0000', '14.1514', '14.1514', '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 (69342, '2022-03-28', 1666, 65911, 4425, 51313, '1.0000', '2.7137', '2.7137', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69343, '2022-03-28', 8444, 65912, 4425, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69344, '2022-03-28', 2660, 65913, 4425, 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 (69345, '2022-03-28', 9750, 65914, 4425, NULL, '1.0000', '3.3000', '3.3000', '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 (69346, '2022-03-28', 7780, 65915, 4425, NULL, '1.0000', '2.6000', '2.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 (69347, '2022-03-28', 2302, 65916, 4425, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69348, '2022-03-28', 2411, 65917, 4425, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69349, '2022-03-28', 2315, 65918, 4425, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '47.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69350, '2022-03-28', 7411, 65919, 4425, NULL, '1.0000', '1.3013', '1.3013', '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 (69351, '2022-03-28', 8773, 65920, 4425, 53014, '1.0000', '4.0695', '4.0695', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69352, '2022-03-28', 2169, 65921, 4425, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69353, '2022-03-28', 9463, 65922, 4425, NULL, '1.0000', '18.9000', '18.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 (69354, '2022-03-28', 1941, 65923, 4426, 5592, '-2.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 (69355, '2022-03-28', 1941, 65923, 4426, NULL, '3.0000', '90.0000', '90.0000', '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 (69356, '2022-03-28', 7514, 65924, 4426, NULL, '1.0000', '2.2500', '2.2500', '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 (69357, '2022-03-28', 8360, 65925, 4426, NULL, '1.0000', '3.2300', '3.2300', '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 (69358, '2022-03-28', 7785, 65926, 4426, 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 (69359, '2022-03-28', 7641, 65927, 4426, NULL, '1.0000', '1.9000', '1.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 (69360, '2022-03-28', 1989, 65928, 4426, 33064, '1.0000', '5.1429', '5.1429', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69361, '2022-03-28', 8103, 65929, 4426, NULL, '1.0000', '26.9800', '26.9800', '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 (69362, '2022-03-28', 9186, 65930, 4426, 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 (69363, '2022-03-28', 9808, 65931, 4426, 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 (69364, '2022-03-28', 7321, 65932, 4426, NULL, '1.0000', '7.9500', '7.9500', '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 (69365, '2022-03-28', 8667, 65933, 4426, NULL, '1.0000', '6.2300', '6.2300', '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 (69366, '2022-03-28', 2062, 65934, 4426, NULL, '1.0000', '5.7540', '5.7540', '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 (69367, '2022-03-28', 7514, 65935, 4426, NULL, '1.0000', '2.2500', '2.2500', '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 (69368, '2022-03-28', 7509, 65936, 4426, 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 (69369, '2022-03-28', 9098, 65937, 4426, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69370, '2022-03-28', 7509, 65938, 4426, 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 (69371, '2022-03-28', 7808, 65939, 4426, NULL, '1.0000', '13.9000', '13.9000', '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 (69372, '2022-03-28', 7459, 65940, 4426, NULL, '19.0000', '2.3500', '2.3500', '3.0000', '3.0000', '-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 (69373, '2022-03-28', 8288, 65941, 4426, NULL, '1.0000', '1.1600', '1.1600', '1.8000', '1.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 (69374, '2022-03-28', 7570, 65942, 4426, NULL, '1.0000', '10.0000', '10.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 (69375, '2022-03-28', 8471, 65943, 4426, NULL, '1.0000', '21.0000', '21.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 (69376, '2022-03-28', 2251, 65944, 4426, 2788, '-11.0000', '10.9700', '10.9700', '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 (69377, '2022-03-28', 2251, 65944, 4426, NULL, '12.0000', '10.9700', '10.9700', '16.0000', '16.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 (69378, '2022-03-28', 8984, 65945, 4426, NULL, '1.0000', '0.8700', '0.8700', '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 (69379, '2022-03-28', 7981, 65946, 4426, NULL, '5.0000', '6.0000', '6.0000', '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 (69380, '2022-03-28', 9081, 65947, 4426, 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 (69381, '2022-03-28', 7514, 65948, 4426, NULL, '2.0000', '2.2500', '2.2500', '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 (69382, '2022-03-28', 7743, 65949, 4426, NULL, '1.0000', '1.3100', '1.3100', '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 (69383, '2022-03-28', 8085, 65950, 4426, NULL, '2.0000', '1.1700', '1.1700', '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 (69384, '2022-03-28', 8444, 65951, 4426, NULL, '1.0000', '1.6000', '1.6000', '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 (69385, '2022-03-28', 8547, 65952, 4426, NULL, '1.0000', '3.3500', '3.3500', '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 (69386, '2022-03-28', 2242, 65953, 4426, 20608, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '34.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 (69387, '2022-03-28', 7672, 65954, 4426, NULL, '1.0000', '1.0200', '1.0200', '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 (69388, '2022-03-28', 8172, 65955, 4426, NULL, '1.0000', '40.7000', '40.7000', '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 (69389, '2022-03-28', 7725, 65956, 4426, 33062, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69390, '2022-03-28', 8165, 65957, 4426, NULL, '1.0000', '8.0000', '8.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 (69391, '2022-03-28', 7608, 65958, 4426, NULL, '1.0000', '6.9800', '6.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 (69392, '2022-03-28', 8132, 65959, 4426, NULL, '1.0000', '9.8000', '9.8000', '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 (69393, '2022-03-28', 9863, 65960, 4426, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69394, '2022-03-28', 9745, 65961, 4426, NULL, '1.0000', '7.2000', '7.2000', '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 (69395, '2022-03-28', 8966, 65962, 4426, NULL, '1.0000', '6.8500', '6.8500', '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 (69396, '2022-03-28', 7859, 65963, 4426, NULL, '1.0000', '12.6300', '12.6300', '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 (69397, '2022-03-28', 7691, 65964, 4426, NULL, '1.0000', '4.1300', '4.1300', '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 (69398, '2022-03-28', 7671, 65965, 4426, NULL, '2.0000', '15.5000', '15.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 (69399, '2022-03-28', 7886, 65966, 4426, 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 (69400, '2022-03-28', 7952, 65967, 4426, 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 (69401, '2022-03-28', 7417, 65968, 4426, NULL, '24.0000', '6.4100', '6.4100', '8.0000', '8.0000', '-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 (69402, '2022-03-28', 9791, 65969, 4426, 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 (69403, '2022-03-28', 7907, 65970, 4426, NULL, '1.0000', '12.0000', '12.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 (69404, '2022-03-28', 8395, 65971, 4426, NULL, '1.0000', '0.9700', '0.9700', '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 (69405, '2022-03-28', 7518, 65972, 4426, NULL, '1.0000', '7.8200', '7.8200', '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 (69406, '2022-03-28', 9274, 65973, 4426, 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 (69407, '2022-03-28', 2315, 65974, 4426, 2735, '-221.0000', '0.3300', '0.3300', '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 (69408, '2022-03-28', 2315, 65974, 4426, NULL, '222.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-222.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69409, '2022-03-28', 7756, 65975, 4426, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69410, '2022-03-28', 9450, 65976, 4426, NULL, '1.0000', '3.2000', '3.2000', '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 (69411, '2022-03-28', 7780, 65977, 4426, NULL, '1.0000', '11.6000', '11.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 (69412, '2022-03-28', 2227, 65978, 4426, 1702, '-5.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 (69413, '2022-03-28', 2227, 65978, 4426, NULL, '6.0000', '14.0000', '14.0000', '19.0000', '19.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 (69414, '2022-03-28', 7666, 65979, 4426, 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 (69415, '2022-03-28', 2557, 65980, 4426, 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 (69416, '2022-03-28', 2339, 65981, 4426, 3842, '-5.0000', '7.2300', '7.2300', '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 (69417, '2022-03-28', 2339, 65981, 4426, NULL, '6.0000', '7.2300', '7.2300', '14.5000', '14.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 (69418, '2022-03-28', 9303, 65982, 4426, NULL, '1.0000', '9.0000', '9.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 (69419, '2022-03-28', 9866, 65983, 4426, NULL, '1.0000', '9.5500', '9.5500', '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 (69420, '2022-03-28', 7514, 65984, 4426, NULL, '1.0000', '2.2500', '2.2500', '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 (69421, '2022-03-28', 9275, 65985, 4426, NULL, '2.0000', '6.3000', '6.3000', '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 (69422, '2022-03-28', 7715, 65986, 4426, NULL, '1.0000', '1.8900', '1.8900', '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 (69423, '2022-03-28', 2317, 65987, 4426, 3473, '-9.0000', '15.0000', '15.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 (69424, '2022-03-28', 2317, 65987, 4426, NULL, '10.0000', '15.0000', '15.0000', '18.0000', '18.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 (69425, '2022-03-28', 9807, 65988, 4426, NULL, '1.0000', '36.8000', '36.8000', '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 (69426, '2022-03-28', 2242, 65989, 4426, 20608, '3.0000', '0.4800', '0.4800', '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 (69427, '2022-03-28', 8942, 65990, 4426, NULL, '1.0000', '4.4000', '4.4000', '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 (69428, '2022-03-28', 7958, 65991, 4426, NULL, '1.0000', '3.7500', '3.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 (69429, '2022-03-28', 8064, 65992, 4426, 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 (69430, '2022-03-28', 8766, 65993, 4426, NULL, '1.0000', '5.8000', '5.8000', '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 (69431, '2022-03-28', 2864, 65994, 4427, 17587, '-20.0000', '1.5198', '1.5198', '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 (69432, '2022-03-28', 2864, 65994, 4427, NULL, '25.0000', '1.5198', '1.5198', '2.0000', '2.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 (69433, '2022-03-28', 8622, 65995, 4427, 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 (69434, '2022-03-28', 2104, 65996, 4427, 1048, '1.0000', '0.2000', '0.2000', '0.5000', '0.5000', '286.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 (69435, '2022-03-28', 2262, 65997, 4427, 2798, '-9.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 (69436, '2022-03-28', 2262, 65997, 4427, NULL, '10.0000', '4.5000', '4.5000', '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 (69437, '2022-03-28', 9750, 65998, 4427, NULL, '1.0000', '3.3000', '3.3000', '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 (69438, '2022-03-28', 8419, 65999, 4427, NULL, '1.0000', '12.0000', '12.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 (69439, '2022-03-28', 9868, 66000, 4427, 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 (69440, '2022-03-28', 9794, 66001, 4427, NULL, '1.0000', '1.0800', '1.0800', '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 (69441, '2022-03-28', 8740, 66002, 4427, NULL, '2.0000', '2.0000', '2.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 (69442, '2022-03-28', 2315, 66003, 4427, 2735, '-222.0000', '0.3300', '0.3300', '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 (69443, '2022-03-28', 2315, 66003, 4427, NULL, '223.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-223.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69444, '2022-03-28', 9831, 66004, 4427, NULL, '2.0000', '1.5600', '1.5600', '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 (69445, '2022-03-28', 8677, 66005, 4427, NULL, '2.0000', '1.2800', '1.2800', '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 (69446, '2022-03-28', 1602, 66006, 4428, 5897, '-123.0000', '6.7859', '6.7859', '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 (69447, '2022-03-28', 1602, 66006, 4428, NULL, '124.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-124.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69448, '2022-03-28', 2315, 66007, 4428, 2735, '-223.0000', '0.3300', '0.3300', '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 (69449, '2022-03-28', 2315, 66007, 4428, NULL, '224.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-224.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69450, '2022-03-28', 2247, 66008, 4428, 2784, '-7.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 (69451, '2022-03-28', 2247, 66008, 4428, NULL, '8.0000', '2.5000', '2.5000', '3.5000', '3.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 (69452, '2022-03-28', 2315, 66009, 4428, 2735, '-223.0000', '0.3300', '0.3300', '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 (69453, '2022-03-28', 2315, 66009, 4428, NULL, '225.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-225.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69454, '2022-03-28', 2169, 66010, 4428, 10737, '-86.0000', '3.8397', '3.8397', '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 (69455, '2022-03-28', 2169, 66010, 4428, NULL, '87.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69456, '2022-03-28', 9740, 66011, 4428, NULL, '1.0000', '0.6600', '0.6600', '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 (69457, '2022-03-28', 2169, 66012, 4428, 10737, '-86.0000', '3.8397', '3.8397', '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 (69458, '2022-03-28', 2169, 66012, 4428, NULL, '87.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69459, '2022-03-28', 1307, 66013, 4429, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.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 (69460, '2022-03-28', 9763, 66014, 4429, 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 (69461, '2022-03-28', 8746, 66015, 4429, 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 (69462, '2022-03-28', 1612, 66016, 4429, 8732, '-6.0000', '1.6000', '1.6000', '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 (69463, '2022-03-28', 1612, 66016, 4429, NULL, '7.0000', '1.6000', '1.6000', '3.0000', '3.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 (69464, '2022-03-28', 9482, 66017, 4429, 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 (69465, '2022-03-28', 7980, 66018, 4430, NULL, '2.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69466, '2022-03-28', 7641, 66019, 4430, NULL, '1.0000', '1.9000', '1.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 (69467, '2022-03-28', 2363, 66020, 4430, 3866, '-5.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 (69468, '2022-03-28', 2363, 66020, 4430, NULL, '6.0000', '6.8800', '6.8800', '9.0000', '9.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 (69469, '2022-03-28', 9631, 66021, 4430, NULL, '1.0000', '7.0000', '7.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 (69470, '2022-03-28', 2315, 66022, 4430, 2735, '-226.0000', '0.3300', '0.3300', '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 (69471, '2022-03-28', 2315, 66022, 4430, NULL, '227.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-227.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69472, '2022-03-28', 2506, 66023, 4430, 16244, '-3.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 (69473, '2022-03-28', 2506, 66023, 4430, NULL, '4.0000', '3.4900', '3.4900', '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 (69474, '2022-03-28', 7342, 66024, 4430, NULL, '1.0000', '15.6000', '15.6000', '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 (69475, '2022-03-28', 1625, 66025, 4430, 8895, '-4.0000', '16.6997', '16.6997', '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 (69476, '2022-03-28', 1625, 66025, 4430, NULL, '6.0000', '16.6997', '16.6997', '22.0000', '22.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 (69477, '2022-03-28', 7588, 66026, 4430, 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 (69478, '2022-03-28', 8763, 66027, 4430, NULL, '1.0000', '5.4000', '5.4000', '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 (69479, '2022-03-28', 7514, 66028, 4431, NULL, '1.0000', '2.2500', '2.2500', '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 (69480, '2022-03-28', 9734, 66029, 4432, NULL, '2.0000', '0.3200', '0.3200', '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 (69481, '2022-03-28', 7514, 66030, 4432, NULL, '1.0000', '2.2500', '2.2500', '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 (69482, '2022-03-29', 2289, 66031, 4433, NULL, '4.0000', '0.2222', '0.2222', '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 (69483, '2022-03-29', 2169, 66032, 4433, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69484, '2022-03-29', 7741, 66033, 4433, NULL, '1.0000', '-6.8417', '-6.8417', '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 (69485, '2022-03-29', 1912, 66034, 4433, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69486, '2022-03-29', 2916, 66035, 4433, NULL, '1.0000', '1.8430', '1.8430', '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 (69487, '2022-03-29', 9841, 66036, 4433, 51250, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69488, '2022-03-29', 1608, 66037, 4433, 52176, '1.0000', '4.0848', '4.0848', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69489, '2022-03-29', 1455, 66038, 4433, 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 (69490, '2022-03-29', 1501, 66039, 4433, NULL, '1.0000', '2.1784', '2.1784', '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 (69491, '2022-03-29', 8622, 66040, 4433, 51208, '3.0000', '1.4818', '1.4818', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69492, '2022-03-29', 8622, 66040, 4433, 43257, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69493, '2022-03-29', 8622, 66040, 4433, NULL, '1.0000', '1.4818', '1.4818', '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 (69494, '2022-03-29', 2352, 66041, 4433, NULL, '5.0000', '126.2588', '126.2588', '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 (69495, '2022-03-29', 8773, 66042, 4433, 53014, '1.0000', '4.0695', '4.0695', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69496, '2022-03-29', 2435, 66043, 4433, 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 (69497, '2022-03-29', 9603, 66044, 4433, 53013, '1.0000', '2.3300', '2.3300', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69498, '2022-03-29', 9566, 66045, 4433, 52170, '1.0000', '7.8771', '7.8771', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69499, '2022-03-29', 1788, 66046, 4433, 19841, '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 (69500, '2022-03-29', 9649, 66047, 4433, NULL, '1.0000', '14.4100', '14.4100', '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 (69501, '2022-03-29', 9842, 66048, 4433, 51251, '1.0000', '5.6200', '5.6200', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69502, '2022-03-29', 1674, 66049, 4433, 52225, '1.0000', '11.2958', '11.2958', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69503, '2022-03-29', 7612, 66050, 4433, NULL, '1.0000', '1.7300', '1.7300', '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 (69504, '2022-03-29', 1545, 66051, 4433, 51645, '1.0000', '8.4806', '8.4806', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69505, '2022-03-29', 9828, 66052, 4433, NULL, '1.0000', '2.9100', '2.9100', '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 (69506, '2022-03-29', 9788, 66053, 4433, 51672, '2.0000', '1.5897', '1.5897', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69507, '2022-03-29', 8740, 66054, 4433, NULL, '1.0000', '2.0000', '2.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 (69508, '2022-03-29', 9751, 66055, 4433, 51989, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69509, '2022-03-29', 1704, 66056, 4433, NULL, '1.0000', '27.2300', '27.2300', '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 (69510, '2022-03-29', 2633, 66057, 4434, 52195, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69511, '2022-03-29', 1521, 66058, 4434, 48883, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69512, '2022-03-29', 7318, 66059, 4434, 51230, '1.0000', '10.5126', '10.5126', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69513, '2022-03-29', 9747, 66060, 4434, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69514, '2022-03-29', 7589, 66061, 4434, NULL, '1.0000', '1.7700', '1.7700', '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 (69515, '2022-03-29', 1450, 66062, 4434, 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 (69516, '2022-03-29', 1782, 66063, 4434, NULL, '2.0000', '2.5000', '2.5000', '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 (69517, '2022-03-29', 2379, 66064, 4435, NULL, '2.0000', '0.2954', '0.2954', '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 (69518, '2022-03-29', 1837, 66065, 4435, NULL, '1.0000', '2.5335', '2.5335', '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 (69519, '2022-03-29', 9832, 66066, 4435, 53005, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69520, '2022-03-29', 9740, 66067, 4436, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69521, '2022-03-29', 2237, 66068, 4436, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69522, '2022-03-29', 2643, 66069, 4436, 51987, '1.0000', '0.8700', '0.8700', '1.2000', '1.2000', '9.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69523, '2022-03-29', 9565, 66070, 4436, NULL, '1.0000', '4.5000', '4.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 (69524, '2022-03-29', 1855, 66071, 4436, NULL, '1.0000', '1.5003', '1.5003', '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 (69525, '2022-03-29', 1546, 66072, 4436, 49329, '6.0000', '51.6105', '51.6105', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69526, '2022-03-29', 8775, 66073, 4436, 53004, '1.0000', '-0.4916', '-0.4916', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69527, '2022-03-29', 2567, 66074, 4437, 52982, '2.0000', '31.3810', '31.3810', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69528, '2022-03-29', 8979, 66075, 4437, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '40.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69529, '2022-03-29', 8979, 66076, 4438, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '39.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69530, '2022-03-29', 1863, 66077, 4438, 52353, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69531, '2022-03-29', 2089, 66078, 4438, 51309, '1.0000', '6.9414', '6.9414', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69532, '2022-03-29', 9445, 66079, 4439, NULL, '1.0000', '4.5000', '4.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 (69533, '2022-03-29', 7344, 66080, 4439, NULL, '10.0000', '1.5400', '1.5400', '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 (69534, '2022-03-29', 7428, 66081, 4439, NULL, '2.0000', '2.6100', '2.6100', '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 (69535, '2022-03-29', 8984, 66082, 4439, NULL, '2.0000', '0.8700', '0.8700', '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 (69536, '2022-03-29', 7318, 66083, 4439, NULL, '1.0000', '13.4400', '13.4400', '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 (69537, '2022-03-29', 7675, 66084, 4439, NULL, '1.0000', '11.4300', '11.4300', '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 (69538, '2022-03-29', 7411, 66085, 4439, NULL, '1.0000', '1.3500', '1.3500', '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 (69539, '2022-03-29', 9450, 66086, 4439, NULL, '1.0000', '3.2000', '3.2000', '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 (69540, '2022-03-29', 8608, 66087, 4439, NULL, '1.0000', '0.9000', '0.9000', '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 (69541, '2022-03-29', 9095, 66088, 4439, NULL, '1.0000', '8.7600', '8.7600', '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 (69542, '2022-03-29', 2251, 66089, 4439, 2788, '-12.0000', '10.9700', '10.9700', '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 (69543, '2022-03-29', 2251, 66089, 4439, NULL, '13.0000', '10.9700', '10.9700', '16.0000', '16.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 (69544, '2022-03-29', 2332, 66090, 4439, 3835, '-4.0000', '5.8900', '5.8900', '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 (69545, '2022-03-29', 2332, 66090, 4439, NULL, '5.0000', '5.8900', '5.8900', '9.0000', '9.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 (69546, '2022-03-29', 1840, 66091, 4439, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (69547, '2022-03-29', 7428, 66092, 4439, NULL, '4.0000', '2.6100', '2.6100', '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 (69548, '2022-03-29', 8607, 66093, 4439, 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 (69549, '2022-03-29', 7877, 66094, 4439, NULL, '1.0000', '4.4000', '4.4000', '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 (69550, '2022-03-29', 8666, 66095, 4439, NULL, '1.0000', '0.4600', '0.4600', '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 (69551, '2022-03-29', 7514, 66096, 4439, NULL, '1.0000', '2.2500', '2.2500', '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 (69552, '2022-03-29', 2315, 66097, 4439, 2735, '-227.0000', '0.3300', '0.3300', '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 (69553, '2022-03-29', 2315, 66097, 4439, NULL, '228.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-228.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69554, '2022-03-29', 7354, 66098, 4439, NULL, '3.0000', '0.3700', '0.3700', '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 (69555, '2022-03-29', 7819, 66099, 4439, 33817, '2.0000', '9.5000', '9.5000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69556, '2022-03-29', 7317, 66100, 4439, NULL, '1.0000', '19.5500', '19.5500', '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 (69557, '2022-03-29', 8920, 66101, 4439, 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 (69558, '2022-03-29', 8677, 66102, 4439, NULL, '3.0000', '1.2800', '1.2800', '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 (69559, '2022-03-29', 2069, 66103, 4439, 5571, '-6.0000', '2.0400', '2.0400', '9.5000', '9.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 (69560, '2022-03-29', 2069, 66103, 4439, NULL, '7.0000', '2.0400', '2.0400', '9.5000', '9.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 (69561, '2022-03-29', 7473, 66104, 4439, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (69562, '2022-03-29', 3029, 66105, 4440, NULL, '1.0000', '-4.5585', '-4.5585', '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 (69563, '2022-03-29', 7443, 66106, 4440, NULL, '1.0000', '6.8600', '6.8600', '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 (69564, '2022-03-29', 8170, 66107, 4441, NULL, '1.0000', '5.7500', '5.7500', '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 (69565, '2022-03-29', 9832, 66108, 4441, 53005, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69566, '2022-03-29', 1871, 66109, 4441, NULL, '10.0000', '2.2081', '2.2081', '3.5000', '3.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 (69567, '2022-03-29', 2466, 66110, 4441, 52192, '1.0000', '14.5000', '14.5000', '19.1400', '19.1400', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69568, '2022-03-29', 1851, 66111, 4441, 51239, '1.0000', '12.8900', '12.8900', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69569, '2022-03-29', 7756, 66112, 4441, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69570, '2022-03-29', 7906, 66113, 4441, NULL, '1.0000', '9.3000', '9.3000', '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 (69571, '2022-03-29', 8548, 66114, 4441, NULL, '1.0000', '12.0000', '12.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 (69572, '2022-03-29', 9732, 66115, 4441, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69573, '2022-03-29', 2906, 66116, 4441, NULL, '2.0000', '2.6000', '2.6000', '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 (69574, '2022-03-29', 2346, 66117, 4441, NULL, '1.0000', '5.8000', '5.8000', '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 (69575, '2022-03-29', 1837, 66118, 4442, 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 (69576, '2022-03-29', 2169, 66119, 4442, 10737, '-88.0000', '3.8397', '3.8397', '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 (69577, '2022-03-29', 2169, 66119, 4442, NULL, '89.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69578, '2022-03-29', 9831, 66120, 4442, NULL, '2.0000', '1.5600', '1.5600', '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 (69579, '2022-03-29', 1810, 66121, 4442, 12166, '-4.0000', '8.0500', '8.0500', '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 (69580, '2022-03-29', 1810, 66121, 4442, NULL, '5.0000', '8.0500', '8.0500', '12.0000', '12.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 (69581, '2022-03-29', 7802, 66122, 4442, NULL, '3.0000', '0.9200', '0.9200', '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 (69582, '2022-03-29', 2726, 66123, 4442, NULL, '1.0000', '4.0000', '4.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 (69583, '2022-03-29', 1409, 66124, 4442, 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 (69584, '2022-03-29', 1307, 66125, 4442, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.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 (69585, '2022-03-29', 2259, 66126, 4442, 2795, '-4.0000', '19.9405', '19.9405', '31.0000', '31.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69586, '2022-03-29', 2259, 66126, 4442, NULL, '5.0000', '19.9405', '19.9405', '31.0000', '31.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 (69587, '2022-03-29', 1339, 66127, 4442, 13004, '-10.0000', '1.6012', '1.6012', '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 (69588, '2022-03-29', 1339, 66127, 4442, NULL, '11.0000', '1.6012', '1.6012', '3.0000', '3.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 (69589, '2022-03-29', 2604, 66128, 4442, 14491, '-10.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69590, '2022-03-29', 2604, 66128, 4442, NULL, '11.0000', '90.0000', '90.0000', '110.0000', '110.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 (69591, '2022-03-29', 7780, 66129, 4442, NULL, '1.0000', '11.6000', '11.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 (69592, '2022-03-29', 2251, 66130, 4442, 2788, '-13.0000', '10.9700', '10.9700', '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 (69593, '2022-03-29', 2251, 66130, 4442, NULL, '14.0000', '10.9700', '10.9700', '16.0000', '16.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 (69594, '2022-03-29', 9830, 66131, 4442, 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 (69595, '2022-03-29', 9734, 66132, 4442, NULL, '4.0000', '0.3200', '0.3200', '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 (69596, '2022-03-29', 7593, 66133, 4442, NULL, '2.0000', '2.4500', '2.4500', '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 (69597, '2022-03-29', 9532, 66134, 4442, NULL, '1.0000', '11.0000', '11.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 (69598, '2022-03-29', 1999, 66135, 4442, 6362, '-10.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 (69599, '2022-03-29', 1999, 66135, 4442, NULL, '11.0000', '6.0000', '6.0000', '10.0000', '10.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 (69600, '2022-03-29', 2298, 66136, 4442, 2957, '-2.0000', '6.0000', '6.0000', '9.5000', '9.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 (69601, '2022-03-29', 2298, 66136, 4442, NULL, '3.0000', '6.0000', '6.0000', '9.5000', '9.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 (69602, '2022-03-29', 1521, 66137, 4443, 40904, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69603, '2022-03-29', 8013, 66138, 4443, 47991, '2.0000', '3.6500', '3.6500', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69604, '2022-03-29', 1837, 66139, 4443, 46752, '2.0000', '0.4981', '0.4981', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69605, '2022-03-29', 8009, 66140, 4443, NULL, '13.0000', '5.0000', '5.0000', '11.2000', '11.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 (69606, '2022-03-29', 1361, 66141, 4443, 48756, '1.0000', '59.0300', '59.0300', '67.5000', '67.5000', '0.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69607, '2022-03-29', 2169, 66142, 4443, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69608, '2022-03-29', 9839, 66143, 4444, NULL, '1.0000', '15.0200', '15.0200', '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 (69609, '2022-03-29', 2546, 66144, 4444, 51495, '1.0000', '25.2500', '25.2500', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69610, '2022-03-29', 1855, 66145, 4444, NULL, '1.0000', '1.5003', '1.5003', '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 (69611, '2022-03-29', 8207, 66146, 4444, NULL, '1.0000', '0.0000', '0.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 (69612, '2022-03-29', 7640, 66147, 4444, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69613, '2022-03-29', 9750, 66148, 4444, NULL, '1.0000', '3.3000', '3.3000', '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 (69614, '2022-03-29', 9109, 66149, 4444, 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 (69615, '2022-03-29', 1590, 66150, 4444, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69616, '2022-03-29', 9870, 66151, 4444, 53001, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69617, '2022-03-29', 2774, 66152, 4444, 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 (69618, '2022-03-29', 7411, 66153, 4444, NULL, '1.0000', '1.3013', '1.3013', '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 (69619, '2022-03-29', 2821, 66154, 4444, 52928, '1.0000', '4.6092', '4.6092', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69620, '2022-03-29', 2992, 66155, 4444, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69621, '2022-03-29', 9204, 66156, 4444, NULL, '2.0000', '14.1514', '14.1514', '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 (69622, '2022-03-29', 7930, 66157, 4444, 45162, '2.0000', '1.3000', '1.3000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69623, '2022-03-29', 2169, 66158, 4444, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69624, '2022-03-29', 9750, 66159, 4444, NULL, '1.0000', '3.3000', '3.3000', '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 (69625, '2022-03-29', 7802, 66160, 4444, 52947, '3.0000', '1.4200', '1.4200', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69626, '2022-03-29', 2109, 66161, 4444, 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 (69627, '2022-03-29', 2169, 66162, 4444, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69628, '2022-03-29', 1690, 66163, 4444, NULL, '1.0000', '5.8308', '5.8308', '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 (69629, '2022-03-29', 2169, 66164, 4444, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69630, '2022-03-29', 2612, 66165, 4444, NULL, '1.0000', '7.1600', '7.1600', '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 (69631, '2022-03-29', 2660, 66166, 4445, 49531, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69632, '2022-03-29', 1572, 66167, 4445, 49525, '2.0000', '1.9151', '1.9151', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69633, '2022-03-29', 1812, 66168, 4445, 52294, '1.0000', '7.9477', '7.9477', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69634, '2022-03-29', 1402, 66169, 4445, 46767, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69635, '2022-03-29', 1432, 66170, 4445, 52084, '1.0000', '9.2801', '9.2801', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69636, '2022-03-29', 8309, 66171, 4445, NULL, '1.0000', '14.5000', '14.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 (69637, '2022-03-29', 2823, 66172, 4445, 52713, '1.0000', '5.7100', '5.7100', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69638, '2022-03-29', 1863, 66173, 4445, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69639, '2022-03-29', 1646, 66174, 4445, 52709, '1.0000', '5.0242', '5.0242', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69640, '2022-03-29', 2858, 66175, 4445, 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 (69641, '2022-03-29', 2374, 66176, 4445, 4379, '1.0000', '6.1000', '6.1000', '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 (69642, '2022-03-29', 7802, 66177, 4446, 52269, '3.0000', '1.3468', '1.3468', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69643, '2022-03-29', 1602, 66178, 4446, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69644, '2022-03-29', 2511, 66179, 4446, 49238, '1.0000', '8.8849', '8.8849', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69645, '2022-03-29', 1828, 66180, 4446, 33003, '1.0000', '0.7300', '0.7300', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69646, '2022-03-29', 2169, 66181, 4446, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69647, '2022-03-29', 2315, 66182, 4446, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '177.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69648, '2022-03-29', 2353, 66183, 4446, NULL, '1.0000', '4.4500', '4.4500', '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 (69649, '2022-03-29', 1855, 66184, 4446, 46773, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69650, '2022-03-29', 1498, 66185, 4446, 52247, '2.0000', '0.3808', '0.3808', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69651, '2022-03-29', 2660, 66186, 4446, 49531, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69652, '2022-03-29', 2285, 66187, 4446, 52300, '1.0000', '37.2530', '37.2530', '49.0000', '49.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69653, '2022-03-29', 8666, 66188, 4446, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69654, '2022-03-29', 9598, 66189, 4446, 50872, '1.0000', '4.2400', '4.2400', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69655, '2022-03-29', 7933, 66190, 4446, NULL, '2.0000', '0.4400', '0.4400', '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 (69656, '2022-03-29', 9566, 66191, 4446, 52290, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69657, '2022-03-29', 8903, 66192, 4446, NULL, '1.0000', '5.4000', '5.4000', '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 (69658, '2022-03-29', 2858, 66193, 4446, 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 (69659, '2022-03-29', 2169, 66194, 4446, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69660, '2022-03-29', 2416, 66195, 4446, 52895, '1.0000', '1.2033', '1.2033', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69661, '2022-03-29', 2280, 66196, 4446, 44766, '1.0000', '2.9290', '2.9290', '5.0000', '5.0000', '32.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69662, '2022-03-29', 1667, 66197, 4446, 53264, '1.0000', '32.0007', '32.0007', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69663, '2022-03-29', 2643, 66198, 4446, 44038, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69664, '2022-03-29', 9750, 66199, 4447, NULL, '1.0000', '3.3000', '3.3000', '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 (69665, '2022-03-29', 2169, 66200, 4447, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69666, '2022-03-29', 1905, 66201, 4447, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69667, '2022-03-29', 9482, 66202, 4447, 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 (69668, '2022-03-29', 1989, 66203, 4447, 49606, '1.0000', '3.5000', '3.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 (69669, '2022-03-29', 7744, 66204, 4447, NULL, '1.0000', '2.5833', '2.5833', '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 (69670, '2022-03-29', 9794, 66205, 4447, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69671, '2022-03-29', 8677, 66206, 4447, NULL, '2.0000', '292.4641', '292.4641', '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 (69672, '2022-03-29', 2293, 66207, 4447, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69673, '2022-03-29', 2069, 66208, 4447, NULL, '1.0000', '2.0400', '2.0400', '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 (69674, '2022-03-29', 2037, 66209, 4448, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '7.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 (69675, '2022-03-29', 1450, 66210, 4449, 927, '5.0000', '61.1074', '61.1074', '1.2000', '1.2000', '5.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69676, '2022-03-29', 2858, 66211, 4449, 17772, '-58.0000', '1.0000', '1.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 (69677, '2022-03-29', 2858, 66211, 4449, NULL, '59.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69678, '2022-03-29', 1892, 66212, 4449, 5431, '-6.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 (69679, '2022-03-29', 1892, 66212, 4449, NULL, '7.0000', '90.0000', '90.0000', '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 (69680, '2022-03-29', 2657, 66213, 4449, 11267, '-8.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 (69681, '2022-03-29', 2657, 66213, 4449, NULL, '9.0000', '5.4200', '5.4200', '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 (69682, '2022-03-29', 2416, 66214, 4449, 4745, '-21.0000', '1.2000', '1.2000', '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 (69683, '2022-03-29', 2416, 66214, 4449, NULL, '22.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69684, '2022-03-29', 2332, 66215, 4449, 3835, '-5.0000', '5.8900', '5.8900', '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 (69685, '2022-03-29', 2332, 66215, 4449, NULL, '6.0000', '5.8900', '5.8900', '9.0000', '9.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 (69686, '2022-03-29', 1411, 66216, 4449, NULL, '2.0000', '25.9000', '25.9000', '35.0000', '35.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 (69687, '2022-03-29', 2903, 66217, 4449, 18653, '-2.0000', '32.0000', '32.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 (69688, '2022-03-29', 2903, 66217, 4449, NULL, '3.0000', '32.0000', '32.0000', '44.0000', '44.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 (69689, '2022-03-29', 2266, 66218, 4449, 2801, '-8.0000', '6.4900', '6.4900', '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 (69690, '2022-03-29', 2266, 66218, 4449, NULL, '9.0000', '6.4900', '6.4900', '10.5000', '10.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 (69691, '2022-03-29', 2657, 66219, 4449, 11267, '-8.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 (69692, '2022-03-29', 2657, 66219, 4449, NULL, '9.0000', '5.4200', '5.4200', '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 (69693, '2022-03-29', 1493, 66220, 4449, 9747, '-17.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 (69694, '2022-03-29', 1493, 66220, 4449, NULL, '18.0000', '1.5425', '1.5425', '3.0000', '3.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 (69695, '2022-03-29', 9158, 66221, 4449, NULL, '1.0000', '5.8900', '5.8900', '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 (69696, '2022-03-29', 9808, 66222, 4450, 50377, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69697, '2022-03-29', 7638, 66223, 4450, 52447, '1.0000', '-7.9283', '-7.9283', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69698, '2022-03-29', 7416, 66224, 4450, NULL, '1.0000', '52.1300', '52.1300', '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 (69699, '2022-03-29', 7341, 66225, 4450, 51824, '1.0000', '24.2640', '24.2640', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69700, '2022-03-29', 9872, 66226, 4450, 52759, '1.0000', '14.6300', '14.6300', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69701, '2022-03-29', 7564, 66227, 4450, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69702, '2022-03-29', 8666, 66228, 4450, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69703, '2022-03-29', 7411, 66229, 4450, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69704, '2022-03-29', 9852, 66230, 4450, 51843, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69705, '2022-03-29', 7366, 66231, 4450, 45810, '1.0000', '7.6500', '7.6500', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69706, '2022-03-29', 7709, 66232, 4450, NULL, '2.0000', '154.5165', '154.5165', '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 (69707, '2022-03-29', 8161, 66233, 4450, NULL, '1.0000', '25.3581', '25.3581', '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 (69708, '2022-03-29', 2289, 66234, 4450, NULL, '4.0000', '2.5688', '2.5688', '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 (69709, '2022-03-29', 8735, 66235, 4450, NULL, '1.0000', '5.6000', '5.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 (69710, '2022-03-29', 8972, 66236, 4450, NULL, '2.0000', '4.5000', '4.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 (69711, '2022-03-29', 7947, 66237, 4450, NULL, '1.0000', '14.4400', '14.4400', '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 (69712, '2022-03-29', 9592, 66238, 4450, NULL, '10.0000', '3.2000', '3.2000', '2.1000', '2.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 (69713, '2022-03-29', 2414, 66239, 4450, NULL, '1.0000', '3.4000', '3.4000', '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 (69714, '2022-03-29', 7379, 66240, 4450, 53170, '1.0000', '-6.2832', '-6.2832', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69715, '2022-03-29', 8664, 66241, 4450, NULL, '1.0000', '0.3500', '0.3500', '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 (69716, '2022-03-29', 9740, 66242, 4450, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69717, '2022-03-29', 2233, 66243, 4450, 50685, '1.0000', '17.5683', '17.5683', '29.5000', '29.5000', '3.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69718, '2022-03-29', 9808, 66244, 4450, 50377, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69719, '2022-03-29', 1755, 66245, 4450, 46223, '1.0000', '6.0622', '6.0622', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69720, '2022-03-29', 7781, 66246, 4450, NULL, '3.0000', '4.2500', '4.2500', '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 (69721, '2022-03-29', 8677, 66247, 4450, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69722, '2022-03-29', 7482, 66248, 4450, NULL, '1.0000', '3.9993', '3.9993', '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 (69723, '2022-03-29', 7954, 66249, 4450, NULL, '4.0000', '412.7272', '412.7272', '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 (69724, '2022-03-29', 7749, 66250, 4450, 50048, '1.0000', '19.3533', '19.3533', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69725, '2022-03-29', 1765, 66251, 4450, 52467, '1.0000', '5.4457', '5.4457', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69726, '2022-03-29', 7911, 66252, 4450, 51799, '1.0000', '3.9601', '3.9601', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69727, '2022-03-29', 2100, 66253, 4450, 53180, '1.0000', '2.0815', '2.0815', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69728, '2022-03-29', 2027, 66254, 4450, 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 (69729, '2022-03-29', 7558, 66255, 4450, NULL, '3.0000', '2.0704', '2.0704', '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 (69730, '2022-03-29', 9092, 66256, 4450, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '200.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69731, '2022-03-29', 9734, 66257, 4450, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69732, '2022-03-29', 7666, 66258, 4450, NULL, '1.0000', '3.6004', '3.6004', '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 (69733, '2022-03-29', 9850, 66259, 4450, 51842, '1.0000', '17.6000', '17.6000', '23.5000', '23.5000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69734, '2022-03-29', 7641, 66260, 4450, NULL, '1.0000', '95.0035', '95.0035', '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 (69735, '2022-03-29', 8061, 66261, 4450, 52528, '1.0000', '-38.4000', '-38.4000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69736, '2022-03-29', 7674, 66262, 4450, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '117.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69737, '2022-03-29', 9092, 66263, 4450, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '200.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69738, '2022-03-29', 8638, 66264, 4450, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69739, '2022-03-29', 1501, 66265, 4450, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69740, '2022-03-29', 7780, 66266, 4450, NULL, '1.0000', '-8.7461', '-8.7461', '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 (69741, '2022-03-29', 7593, 66267, 4450, 50676, '1.0000', '2.6945', '2.6945', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69742, '2022-03-29', 9178, 66268, 4450, 46013, '1.0000', '4.2725', '4.2725', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69743, '2022-03-29', 9092, 66269, 4450, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '199.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69744, '2022-03-29', 1431, 66270, 4450, 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 (69745, '2022-03-29', 7834, 66271, 4450, 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 (69746, '2022-03-29', 7472, 66272, 4450, NULL, '1.0000', '-11.6639', '-11.6639', '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 (69747, '2022-03-29', 1647, 66273, 4450, 48841, '1.0000', '5.0737', '5.0737', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69748, '2022-03-29', 9783, 66274, 4450, 49814, '1.0000', '17.6000', '17.6000', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69749, '2022-03-29', 2945, 66275, 4450, 51000, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69750, '2022-03-29', 8395, 66276, 4450, 52459, '1.0000', '0.6080', '0.6080', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69751, '2022-03-29', 2248, 66277, 4450, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69752, '2022-03-29', 7638, 66278, 4450, 52447, '1.0000', '-7.9283', '-7.9283', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69753, '2022-03-29', 7980, 66279, 4450, NULL, '10.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (69754, '2022-03-29', 1935, 66280, 4450, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '147.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69755, '2022-03-29', 7967, 66281, 4450, 50451, '1.0000', '5.5335', '5.5335', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69756, '2022-03-29', 8972, 66282, 4450, NULL, '1.0000', '4.5000', '4.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 (69757, '2022-03-29', 7674, 66283, 4450, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '117.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69758, '2022-03-29', 1837, 66284, 4450, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69759, '2022-03-29', 7473, 66285, 4450, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '52.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69760, '2022-03-29', 2255, 66286, 4450, NULL, '1.0000', '17.2026', '17.2026', '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 (69761, '2022-03-29', 7752, 66287, 4450, 48062, '1.0000', '2.4834', '2.4834', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69762, '2022-03-29', 8969, 66288, 4450, NULL, '1.0000', '2.0000', '2.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 (69763, '2022-03-29', 1884, 66289, 4450, 45321, '1.0000', '5.5994', '5.5994', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69764, '2022-03-29', 7622, 66290, 4450, 52448, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69765, '2022-03-29', 7333, 66291, 4450, NULL, '3.0000', '13.5000', '13.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 (69766, '2022-03-29', 7743, 66292, 4450, NULL, '2.0000', '419203.7668', '419203.7668', '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 (69767, '2022-03-29', 8596, 66293, 4450, NULL, '1.0000', '18.5278', '18.5278', '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 (69768, '2022-03-29', 2315, 66294, 4450, NULL, '1.0000', '0.8863', '0.8863', '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 (69769, '2022-03-29', 9245, 66295, 4450, 51789, '1.0000', '6.4758', '6.4758', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69770, '2022-03-29', 1339, 66296, 4450, NULL, '1.0000', '1.6199', '1.6199', '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 (69771, '2022-03-29', 7317, 66297, 4450, 52733, '1.0000', '14.7942', '14.7942', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69772, '2022-03-29', 7666, 66298, 4450, NULL, '1.0000', '3.6004', '3.6004', '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 (69773, '2022-03-29', 9872, 66299, 4450, 52759, '1.0000', '14.6300', '14.6300', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69774, '2022-03-29', 8077, 66300, 4450, 52454, '1.0000', '4.9986', '4.9986', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69775, '2022-03-29', 2061, 66301, 4450, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69776, '2022-03-29', 2270, 66302, 4450, 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 (69777, '2022-03-29', 7680, 66303, 4450, NULL, '1.0000', '-5.9118', '-5.9118', '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 (69778, '2022-03-29', 9798, 66304, 4450, 50291, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69779, '2022-03-29', 8775, 66305, 4450, 43940, '1.0000', '2.6000', '2.6000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69780, '2022-03-29', 9092, 66306, 4450, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '199.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69781, '2022-03-29', 9825, 66307, 4450, 51007, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69782, '2022-03-29', 8646, 66308, 4451, NULL, '10.0000', '35.0000', '35.0000', '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 (69783, '2022-03-29', 2088, 66309, 4452, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69784, '2022-03-29', 7483, 66310, 4452, NULL, '1.0000', '0.4200', '0.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 (69785, '2022-03-29', 2384, 66311, 4452, NULL, '1.0000', '0.1500', '0.1500', '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 (69786, '2022-03-29', 1851, 66312, 4452, 51239, '1.0000', '12.8900', '12.8900', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69787, '2022-03-29', 1618, 66313, 4452, 50247, '2.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69788, '2022-03-29', 1663, 66314, 4453, 46586, '1.0000', '85.2130', '85.2130', '121.0000', '121.0000', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69789, '2022-03-29', 9734, 66315, 4453, 50862, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '90.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69790, '2022-03-29', 2251, 66316, 4453, 53250, '1.0000', '11.6244', '11.6244', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69791, '2022-03-29', 2315, 66317, 4453, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '176.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69792, '2022-03-29', 2413, 66318, 4453, 24121, '3.0000', '1.0500', '1.0500', '1.5000', '1.5000', '34.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 (69793, '2022-03-29', 2167, 66319, 4453, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69794, '2022-03-29', 2858, 66320, 4453, 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 (69795, '2022-03-29', 2858, 66321, 4453, 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 (69796, '2022-03-29', 1863, 66322, 4453, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69797, '2022-03-29', 8666, 66323, 4453, 32595, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69798, '2022-03-29', 1499, 66324, 4453, 45093, '1.0000', '0.4164', '0.4164', '0.6000', '0.6000', '41.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69799, '2022-03-29', 2320, 66325, 4453, 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 (69800, '2022-03-29', 1695, 66326, 4453, 50921, '1.0000', '40.9542', '40.9542', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69801, '2022-03-29', 2289, 66327, 4453, 53244, '2.0000', '0.2742', '0.2742', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69802, '2022-03-29', 1840, 66328, 4453, NULL, '2.0000', '0.2400', '0.2400', '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 (69803, '2022-03-29', 1841, 66329, 4453, 44579, '2.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '54.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69804, '2022-03-29', 2643, 66330, 4453, 44038, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69805, '2022-03-29', 2169, 66331, 4453, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69806, '2022-03-29', 2657, 66332, 4453, 49178, '1.0000', '0.5900', '0.5900', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69807, '2022-03-30', 9845, 66333, 4454, NULL, '1.0000', '5.7000', '5.7000', '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 (69808, '2022-03-30', 7725, 66334, 4454, NULL, '1.0000', '5.0000', '5.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 (69809, '2022-03-30', 9791, 66335, 4455, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69810, '2022-03-30', 9815, 66336, 4455, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '11.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69811, '2022-03-30', 2169, 66337, 4455, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69812, '2022-03-30', 2315, 66338, 4455, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '45.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69813, '2022-03-30', 8387, 66339, 4455, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69814, '2022-03-30', 1501, 66340, 4455, NULL, '1.0000', '2.1784', '2.1784', '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 (69815, '2022-03-30', 9848, 66341, 4455, 52152, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69816, '2022-03-30', 2109, 66342, 4455, 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 (69817, '2022-03-30', 9725, 66343, 4455, 52348, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69818, '2022-03-30', 2302, 66344, 4455, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69819, '2022-03-30', 1304, 66345, 4455, NULL, '1.0000', '1.4500', '1.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 (69820, '2022-03-30', 1330, 66346, 4455, 18937, '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 (69821, '2022-03-30', 1602, 66347, 4455, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69822, '2022-03-30', 2169, 66348, 4455, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69823, '2022-03-30', 1859, 66349, 4455, 51359, '1.0000', '22.9320', '22.9320', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69824, '2022-03-30', 9751, 66350, 4455, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69825, '2022-03-30', 2169, 66351, 4455, 52147, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69826, '2022-03-30', 2315, 66352, 4455, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '45.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69827, '2022-03-30', 1699, 66353, 4455, NULL, '1.0000', '3.2000', '3.2000', '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 (69828, '2022-03-30', 1840, 66354, 4455, NULL, '2.0000', '0.2400', '0.2400', '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 (69829, '2022-03-30', 7328, 66355, 4455, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69830, '2022-03-30', 2104, 66356, 4455, 22380, '2.0000', '0.2000', '0.2000', '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 (69831, '2022-03-30', 9695, 66357, 4455, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69832, '2022-03-30', 1501, 66358, 4455, NULL, '1.0000', '2.1784', '2.1784', '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 (69833, '2022-03-30', 8065, 66359, 4455, NULL, '1.0000', '32.0000', '32.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 (69834, '2022-03-30', 7970, 66360, 4455, NULL, '10.0000', '5.5000', '5.5000', '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 (69835, '2022-03-30', 9794, 66361, 4455, 52337, '4.0000', '1.0800', '1.0800', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69836, '2022-03-30', 1710, 66362, 4455, 48468, '1.0000', '3.4300', '3.4300', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69837, '2022-03-30', 8638, 66363, 4455, NULL, '1.0000', '0.5254', '0.5254', '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 (69838, '2022-03-30', 1409, 66364, 4455, 51679, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69839, '2022-03-30', 1974, 66365, 4455, 49603, '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 (69840, '2022-03-30', 2948, 66366, 4455, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69841, '2022-03-30', 9821, 66367, 4455, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69842, '2022-03-30', 7500, 66368, 4455, 44160, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69843, '2022-03-30', 1763, 66369, 4455, 51505, '1.0000', '4.9051', '4.9051', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69844, '2022-03-30', 1454, 66370, 4455, 52223, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69845, '2022-03-30', 2726, 66371, 4455, NULL, '1.0000', '2.7018', '2.7018', '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 (69846, '2022-03-30', 2965, 66372, 4455, NULL, '1.0000', '7.9562', '7.9562', '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 (69847, '2022-03-30', 2643, 66373, 4455, 51987, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69848, '2022-03-30', 9751, 66374, 4455, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69849, '2022-03-30', 9831, 66375, 4455, 53002, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69850, '2022-03-30', 2324, 66376, 4455, 22558, '1.0000', '10.5000', '10.5000', '15.0000', '15.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 (69851, '2022-03-30', 9791, 66377, 4456, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69852, '2022-03-30', 9815, 66378, 4456, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '10.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69853, '2022-03-30', 2169, 66379, 4456, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69854, '2022-03-30', 2315, 66380, 4456, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '43.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69855, '2022-03-30', 8387, 66381, 4456, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69856, '2022-03-30', 1501, 66382, 4456, NULL, '1.0000', '2.1784', '2.1784', '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 (69857, '2022-03-30', 9848, 66383, 4456, 52152, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69858, '2022-03-30', 2109, 66384, 4456, 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 (69859, '2022-03-30', 9725, 66385, 4456, 52348, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69860, '2022-03-30', 2302, 66386, 4456, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69861, '2022-03-30', 1304, 66387, 4456, NULL, '1.0000', '1.4500', '1.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 (69862, '2022-03-30', 1330, 66388, 4456, 18937, '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 (69863, '2022-03-30', 1602, 66389, 4456, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69864, '2022-03-30', 2169, 66390, 4456, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69865, '2022-03-30', 1859, 66391, 4456, 51359, '1.0000', '22.9320', '22.9320', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69866, '2022-03-30', 9751, 66392, 4456, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69867, '2022-03-30', 2169, 66393, 4456, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69868, '2022-03-30', 2315, 66394, 4456, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '43.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69869, '2022-03-30', 1699, 66395, 4456, NULL, '1.0000', '3.2000', '3.2000', '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 (69870, '2022-03-30', 1840, 66396, 4456, NULL, '2.0000', '0.2400', '0.2400', '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 (69871, '2022-03-30', 7328, 66397, 4456, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69872, '2022-03-30', 2104, 66398, 4456, 22380, '2.0000', '0.2000', '0.2000', '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 (69873, '2022-03-30', 9695, 66399, 4456, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69874, '2022-03-30', 1501, 66400, 4456, NULL, '1.0000', '2.1784', '2.1784', '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 (69875, '2022-03-30', 8065, 66401, 4456, NULL, '1.0000', '32.0000', '32.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 (69876, '2022-03-30', 7970, 66402, 4456, NULL, '10.0000', '5.5000', '5.5000', '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 (69877, '2022-03-30', 9794, 66403, 4456, 52337, '4.0000', '1.0800', '1.0800', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69878, '2022-03-30', 1710, 66404, 4456, 48468, '1.0000', '3.4300', '3.4300', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69879, '2022-03-30', 8638, 66405, 4456, NULL, '1.0000', '0.5254', '0.5254', '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 (69880, '2022-03-30', 1409, 66406, 4456, 51679, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69881, '2022-03-30', 1974, 66407, 4456, 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 (69882, '2022-03-30', 2948, 66408, 4456, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '41.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69883, '2022-03-30', 9821, 66409, 4456, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69884, '2022-03-30', 7500, 66410, 4456, 44160, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69885, '2022-03-30', 1763, 66411, 4456, 51505, '1.0000', '4.9051', '4.9051', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69886, '2022-03-30', 1454, 66412, 4456, 52223, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69887, '2022-03-30', 2726, 66413, 4456, NULL, '1.0000', '2.7018', '2.7018', '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 (69888, '2022-03-30', 2965, 66414, 4456, NULL, '1.0000', '7.9562', '7.9562', '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 (69889, '2022-03-30', 2643, 66415, 4456, 51987, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69890, '2022-03-30', 9751, 66416, 4456, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69891, '2022-03-30', 9831, 66417, 4456, 53002, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69892, '2022-03-30', 2324, 66418, 4456, 22558, '1.0000', '10.5000', '10.5000', '15.0000', '15.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 (69893, '2022-03-30', 7518, 66419, 4457, NULL, '1.0000', '7.8200', '7.8200', '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 (69894, '2022-03-30', 9784, 66420, 4457, 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 (69895, '2022-03-30', 9092, 66421, 4457, NULL, '2.0000', '5.2900', '5.2900', '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 (69896, '2022-03-30', 7671, 66422, 4457, NULL, '1.0000', '15.5000', '15.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 (69897, '2022-03-30', 8752, 66423, 4457, NULL, '2.0000', '4.2000', '4.2000', '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 (69898, '2022-03-30', 8038, 66424, 4457, 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 (69899, '2022-03-30', 7742, 66425, 4457, 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 (69900, '2022-03-30', 2990, 66426, 4457, NULL, '1.0000', '1.1200', '1.1200', '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 (69901, '2022-03-30', 2945, 66427, 4457, 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 (69902, '2022-03-30', 9794, 66428, 4457, NULL, '1.0000', '1.0800', '1.0800', '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 (69903, '2022-03-30', 7428, 66429, 4457, NULL, '2.0000', '2.6100', '2.6100', '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 (69904, '2022-03-30', 7660, 66430, 4457, NULL, '1.0000', '3.6000', '3.6000', '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 (69905, '2022-03-30', 1335, 66431, 4457, 12031, '-8.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 (69906, '2022-03-30', 1335, 66431, 4457, NULL, '13.0000', '0.8500', '0.8500', '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 (69907, '2022-03-30', 2070, 66432, 4457, NULL, '1.0000', '2.0000', '2.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 (69908, '2022-03-30', 7411, 66433, 4457, NULL, '1.0000', '1.3500', '1.3500', '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 (69909, '2022-03-30', 1498, 66434, 4457, 19685, '-32.0000', '0.3300', '0.3300', '0.6000', '0.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 (69910, '2022-03-30', 1498, 66434, 4457, NULL, '34.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (69911, '2022-03-30', 7641, 66435, 4457, NULL, '1.0000', '1.9000', '1.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 (69912, '2022-03-30', 8200, 66436, 4457, NULL, '1.0000', '6.2600', '6.2600', '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 (69913, '2022-03-30', 8984, 66437, 4457, NULL, '1.0000', '0.8700', '0.8700', '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 (69914, '2022-03-30', 7431, 66438, 4457, NULL, '1.0000', '18.0000', '18.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 (69915, '2022-03-30', 9155, 66439, 4457, NULL, '1.0000', '1.8000', '1.8000', '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 (69916, '2022-03-30', 7527, 66440, 4457, NULL, '2.0000', '0.8900', '0.8900', '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 (69917, '2022-03-30', 7428, 66441, 4457, NULL, '2.0000', '2.6100', '2.6100', '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 (69918, '2022-03-30', 7482, 66442, 4457, NULL, '1.0000', '3.0500', '3.0500', '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 (69919, '2022-03-30', 7557, 66443, 4457, NULL, '4.0000', '0.5000', '0.5000', '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 (69920, '2022-03-30', 7547, 66444, 4457, NULL, '2.0000', '0.0000', '0.0000', '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 (69921, '2022-03-30', 1846, 66445, 4457, 12032, '-12.0000', '12.0000', '12.0000', '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 (69922, '2022-03-30', 1846, 66445, 4457, NULL, '13.0000', '12.0000', '12.0000', '16.5000', '16.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 (69923, '2022-03-30', 7444, 66446, 4457, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69924, '2022-03-30', 1577, 66447, 4457, 7596, '-11.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 (69925, '2022-03-30', 1577, 66447, 4457, NULL, '12.0000', '2.5000', '2.5000', '3.5000', '3.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 (69926, '2022-03-30', 1750, 66448, 4457, 6680, '1.0000', '31.9800', '31.9800', '53.5000', '53.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 (69927, '2022-03-30', 2472, 66449, 4457, NULL, '1.0000', '9.5000', '9.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 (69928, '2022-03-30', 7781, 66450, 4457, NULL, '3.0000', '4.2500', '4.2500', '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 (69929, '2022-03-30', 7722, 66451, 4457, 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 (69930, '2022-03-30', 9740, 66452, 4457, NULL, '1.0000', '0.6600', '0.6600', '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 (69931, '2022-03-30', 9092, 66453, 4457, NULL, '1.0000', '5.2900', '5.2900', '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 (69932, '2022-03-30', 1387, 66454, 4458, NULL, '1.0000', '10.5068', '10.5068', '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 (69933, '2022-03-30', 1415, 66455, 4458, 22360, '1.0000', '14.5000', '14.5000', '19.0000', '19.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 (69934, '2022-03-30', 8745, 66456, 4458, NULL, '1.0000', '8.0000', '8.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 (69935, '2022-03-30', 1584, 66457, 4458, 7601, '-36.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 (69936, '2022-03-30', 1584, 66457, 4458, NULL, '37.0000', '90.0000', '90.0000', '9.0000', '9.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69937, '2022-03-30', 2169, 66458, 4458, 10737, '-89.0000', '3.8397', '3.8397', '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 (69938, '2022-03-30', 2169, 66458, 4458, NULL, '90.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69939, '2022-03-30', 7411, 66459, 4458, NULL, '1.0000', '1.3500', '1.3500', '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 (69940, '2022-03-30', 1646, 66460, 4458, 3239, '-15.0000', '4.5300', '4.5300', '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 (69941, '2022-03-30', 1646, 66460, 4458, NULL, '16.0000', '4.5300', '4.5300', '8.0000', '8.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 (69942, '2022-03-30', 2169, 66461, 4458, 10737, '-89.0000', '3.8397', '3.8397', '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 (69943, '2022-03-30', 2169, 66461, 4458, NULL, '90.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69944, '2022-03-30', 1478, 66462, 4458, NULL, '1.0000', '50.6858', '50.6858', '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 (69945, '2022-03-30', 2317, 66463, 4458, 3473, '-10.0000', '15.0000', '15.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 (69946, '2022-03-30', 2317, 66463, 4458, NULL, '11.0000', '15.0000', '15.0000', '18.0000', '18.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 (69947, '2022-03-30', 2208, 66464, 4458, 7870, '-2.0000', '7.5000', '7.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 (69948, '2022-03-30', 2208, 66464, 4458, NULL, '3.0000', '7.5000', '7.5000', '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 (69949, '2022-03-30', 2022, 66465, 4459, 48945, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69950, '2022-03-30', 8746, 66466, 4459, 53448, '1.0000', '2.8848', '2.8848', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69951, '2022-03-30', 9762, 66467, 4459, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69952, '2022-03-30', 2948, 66468, 4459, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69953, '2022-03-30', 9176, 66469, 4459, 49308, '1.0000', '22.2900', '22.2900', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69954, '2022-03-30', 1868, 66470, 4459, NULL, '1.0000', '4.0300', '4.0300', '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 (69955, '2022-03-30', 2089, 66471, 4459, 51309, '1.0000', '6.9414', '6.9414', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69956, '2022-03-30', 2103, 66472, 4459, 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 (69957, '2022-03-30', 1912, 66473, 4459, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69958, '2022-03-30', 2169, 66474, 4459, 51695, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69959, '2022-03-30', 1512, 66475, 4459, 48872, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69960, '2022-03-30', 2109, 66476, 4459, 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 (69961, '2022-03-30', 9177, 66477, 4459, 50249, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '25.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69962, '2022-03-30', 1512, 66478, 4459, 48872, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69963, '2022-03-30', 1409, 66479, 4459, 49509, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69964, '2022-03-30', 7459, 66480, 4459, NULL, '2.0000', '-6.1729', '-6.1729', '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 (69965, '2022-03-30', 1670, 66481, 4459, NULL, '1.0000', '7.2499', '7.2499', '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 (69966, '2022-03-30', 9750, 66482, 4459, NULL, '2.0000', '3.3000', '3.3000', '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 (69967, '2022-03-30', 2749, 66483, 4459, NULL, '1.0000', '27.0867', '27.0867', '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 (69968, '2022-03-30', 7671, 66484, 4459, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69969, '2022-03-30', 1518, 66485, 4459, 49331, '1.0000', '6.9300', '6.9300', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69970, '2022-03-30', 1905, 66486, 4459, 51374, '10.0000', '0.5277', '0.5277', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69971, '2022-03-30', 1578, 66487, 4459, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69972, '2022-03-30', 1647, 66488, 4459, NULL, '1.0000', '1.8900', '1.8900', '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 (69973, '2022-03-30', 2284, 66489, 4459, 48889, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69974, '2022-03-30', 1314, 66490, 4459, 53233, '1.0000', '1.3464', '1.3464', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69975, '2022-03-30', 1781, 66491, 4459, 52193, '1.0000', '5.3500', '5.3500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69976, '2022-03-30', 2891, 66492, 4459, 52213, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69977, '2022-03-30', 1841, 66493, 4459, NULL, '4.0000', '0.2601', '0.2601', '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 (69978, '2022-03-30', 2237, 66494, 4459, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69979, '2022-03-30', 2167, 66495, 4460, NULL, '3.0000', '1.7907', '1.7907', '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 (69980, '2022-03-30', 2293, 66496, 4460, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69981, '2022-03-30', 2635, 66497, 4460, 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 (69982, '2022-03-30', 9750, 66498, 4460, NULL, '1.0000', '3.3000', '3.3000', '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 (69983, '2022-03-30', 2641, 66499, 4460, 42799, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69984, '2022-03-30', 2315, 66500, 4460, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '40.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69985, '2022-03-30', 7518, 66501, 4460, NULL, '1.0000', '7.8200', '7.8200', '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 (69986, '2022-03-30', 8775, 66502, 4460, 53445, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69987, '2022-03-30', 1785, 66503, 4460, 53210, '1.0000', '16.0121', '16.0121', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69988, '2022-03-30', 7780, 66504, 4460, NULL, '1.0000', '2.6000', '2.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 (69989, '2022-03-30', 9740, 66505, 4460, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69990, '2022-03-30', 1670, 66506, 4460, NULL, '1.0000', '7.2499', '7.2499', '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 (69991, '2022-03-30', 2105, 66507, 4460, 52224, '2.0000', '2.4500', '2.4500', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69992, '2022-03-30', 9724, 66508, 4460, 47062, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69993, '2022-03-30', 1499, 66509, 4460, 52148, '3.0000', '0.3747', '0.3747', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69994, '2022-03-30', 1969, 66510, 4460, NULL, '1.0000', '4.3300', '4.3300', '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 (69995, '2022-03-30', 1432, 66511, 4461, 48978, '2.0000', '9.7698', '9.7698', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69996, '2022-03-30', 2337, 66512, 4461, NULL, '1.0000', '51.0000', '51.0000', '71.5000', '71.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69997, '2022-03-30', 9469, 66513, 4461, 51026, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69998, '2022-03-30', 8746, 66514, 4461, 53448, '1.0000', '2.8848', '2.8848', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69999, '2022-03-30', 9856, 66515, 4461, 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 (70000, '2022-03-30', 1545, 66516, 4461, 51645, '1.0000', '8.4806', '8.4806', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70001, '2022-03-30', 1674, 66517, 4461, 52225, '1.0000', '11.2958', '11.2958', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70002, '2022-03-30', 2242, 66518, 4461, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70003, '2022-03-30', 9750, 66519, 4462, NULL, '1.0000', '3.3000', '3.3000', '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 (70004, '2022-03-30', 1573, 66520, 4462, NULL, '1.0000', '23.1275', '23.1275', '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 (70005, '2022-03-30', 2660, 66521, 4462, 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 (70006, '2022-03-30', 2038, 66522, 4462, 53416, '1.0000', '15.9774', '15.9774', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70007, '2022-03-30', 9731, 66523, 4463, 52153, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70008, '2022-03-30', 2346, 66524, 4463, NULL, '1.0000', '5.8000', '5.8000', '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 (70009, '2022-03-30', 1314, 66525, 4463, 53233, '1.0000', '1.3464', '1.3464', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70010, '2022-03-30', 1414, 66526, 4463, 48934, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70011, '2022-03-30', 8622, 66527, 4464, 51013, '1.0000', '-10.8064', '-10.8064', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70012, '2022-03-30', 8359, 66528, 4464, 51787, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70013, '2022-03-30', 7763, 66529, 4464, NULL, '1.0000', '1.1300', '1.1300', '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 (70014, '2022-03-30', 8180, 66530, 4464, NULL, '3.0000', '4.4000', '4.4000', '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 (70015, '2022-03-30', 8814, 66531, 4464, NULL, '10.0000', '5.0000', '5.0000', '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 (70016, '2022-03-30', 7557, 66532, 4464, NULL, '10.0000', '0.5000', '0.5000', '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 (70017, '2022-03-30', 9643, 66533, 4464, 43126, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70018, '2022-03-30', 7881, 66534, 4464, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70019, '2022-03-30', 1806, 66535, 4464, NULL, '2.0000', '17.7800', '17.7800', '40.0000', '40.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 (70020, '2022-03-30', 7362, 66536, 4464, 40441, '1.0000', '3.4375', '3.4375', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70021, '2022-03-30', 2363, 66537, 4464, 45806, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70022, '2022-03-30', 1583, 66538, 4464, 43943, '1.0000', '5.8900', '5.8900', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70023, '2022-03-30', 9393, 66539, 4464, 53399, '2.0000', '3.0000', '3.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70024, '2022-03-30', 8205, 66540, 4464, NULL, '1.0000', '2.9500', '2.9500', '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 (70025, '2022-03-30', 7822, 66541, 4464, 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 (70026, '2022-03-30', 2418, 66542, 4464, NULL, '1.0000', '9.5000', '9.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 (70027, '2022-03-30', 7341, 66543, 4464, 50479, '1.0000', '24.2640', '24.2640', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70028, '2022-03-30', 9579, 66544, 4464, 52526, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70029, '2022-03-30', 1622, 66545, 4464, NULL, '2.0000', '31.5675', '31.5675', '43.5000', '43.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 (70030, '2022-03-30', 8324, 66546, 4464, NULL, '1.0000', '5.0011', '5.0011', '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 (70031, '2022-03-30', 9618, 66547, 4464, 50483, '2.0000', '3.7500', '3.7500', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70032, '2022-03-30', 9618, 66547, 4464, NULL, '2.0000', '3.7500', '3.7500', '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 (70033, '2022-03-30', 9740, 66548, 4464, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70034, '2022-03-30', 8457, 66549, 4464, NULL, '1.0000', '5.0785', '5.0785', '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 (70035, '2022-03-30', 8077, 66550, 4464, NULL, '1.0000', '4.9986', '4.9986', '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 (70036, '2022-03-30', 8735, 66551, 4464, NULL, '1.0000', '5.6000', '5.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 (70037, '2022-03-30', 9740, 66552, 4464, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70038, '2022-03-30', 1517, 66553, 4464, NULL, '1.0000', '23.6400', '23.6400', '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 (70039, '2022-03-30', 7444, 66554, 4464, NULL, '1.0000', '0.9366', '0.9366', '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 (70040, '2022-03-30', 7819, 66555, 4464, NULL, '1.0000', '9.5498', '9.5498', '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 (70041, '2022-03-30', 9302, 66556, 4464, NULL, '1.0000', '2.8100', '2.8100', '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 (70042, '2022-03-30', 7317, 66557, 4464, 52733, '1.0000', '14.7942', '14.7942', '20.0000', '20.0000', '18.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70043, '2022-03-30', 7666, 66558, 4464, NULL, '1.0000', '3.6004', '3.6004', '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 (70044, '2022-03-30', 7518, 66559, 4464, 53380, '1.0000', '9.3495', '9.3495', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70045, '2022-03-30', 8810, 66560, 4464, NULL, '1.0000', '36.0605', '36.0605', '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 (70046, '2022-03-30', 8061, 66561, 4464, 52528, '1.0000', '-38.4000', '-38.4000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70047, '2022-03-30', 2699, 66562, 4464, 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 (70048, '2022-03-30', 7967, 66563, 4464, 50451, '1.0000', '5.5335', '5.5335', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70049, '2022-03-30', 1840, 66564, 4464, 48008, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70050, '2022-03-30', 1841, 66565, 4464, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70051, '2022-03-30', 8360, 66566, 4464, 52734, '1.0000', '3.2261', '3.2261', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70052, '2022-03-30', 7917, 66567, 4464, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '142.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70053, '2022-03-30', 7641, 66568, 4464, NULL, '1.0000', '95.0035', '95.0035', '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 (70054, '2022-03-30', 7741, 66569, 4464, 36081, '1.0000', '8.7284', '8.7284', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70055, '2022-03-30', 9274, 66570, 4464, NULL, '1.0000', '3.5638', '3.5638', '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 (70056, '2022-03-30', 7518, 66571, 4464, 53380, '1.0000', '9.3495', '9.3495', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70057, '2022-03-30', 2891, 66572, 4464, 52722, '1.0000', '9.4883', '9.4883', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70058, '2022-03-30', 2069, 66573, 4464, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '10.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70059, '2022-03-30', 8677, 66574, 4464, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70060, '2022-03-30', 7675, 66575, 4464, NULL, '1.0000', '84.8590', '84.8590', '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 (70061, '2022-03-30', 7558, 66576, 4464, NULL, '3.0000', '2.0704', '2.0704', '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 (70062, '2022-03-30', 9740, 66577, 4464, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70063, '2022-03-30', 7892, 66578, 4464, NULL, '1.0000', '4.2000', '4.2000', '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 (70064, '2022-03-30', 7781, 66579, 4464, NULL, '3.0000', '4.2500', '4.2500', '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 (70065, '2022-03-30', 9329, 66580, 4464, NULL, '1.0000', '40934.1391', '40934.1391', '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 (70066, '2022-03-30', 8457, 66581, 4464, NULL, '1.0000', '5.0785', '5.0785', '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 (70067, '2022-03-30', 7757, 66582, 4464, NULL, '1.0000', '-201.0820', '-201.0820', '132.5000', '132.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70068, '2022-03-30', 7533, 66583, 4464, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70069, '2022-03-30', 1339, 66584, 4464, NULL, '1.0000', '1.6199', '1.6199', '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 (70070, '2022-03-30', 7728, 66585, 4464, 52025, '1.0000', '1.8799', '1.8799', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70071, '2022-03-30', 7859, 66586, 4464, 51783, '1.0000', '12.6500', '12.6500', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70072, '2022-03-30', 7518, 66587, 4464, 53380, '2.0000', '9.3495', '9.3495', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70073, '2022-03-30', 7674, 66588, 4464, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '115.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70074, '2022-03-30', 9272, 66589, 4464, NULL, '1.0000', '3.1000', '3.1000', '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 (70075, '2022-03-30', 8395, 66590, 4464, 52459, '1.0000', '0.6080', '0.6080', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70076, '2022-03-30', 1339, 66591, 4465, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70077, '2022-03-30', 9732, 66592, 4465, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70078, '2022-03-30', 9751, 66593, 4465, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70079, '2022-03-30', 8979, 66594, 4465, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '38.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70080, '2022-03-30', 7803, 66595, 4466, NULL, '1.0000', '1.8200', '1.8200', '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 (70081, '2022-03-30', 7514, 66596, 4466, NULL, '1.0000', '932.5375', '932.5375', '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 (70082, '2022-03-30', 9450, 66597, 4466, 30932, '1.0000', '3.2000', '3.2000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70083, '2022-03-30', 2221, 66598, 4467, 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 (70084, '2022-03-30', 2069, 66599, 4467, NULL, '1.0000', '2.0400', '2.0400', '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 (70085, '2022-03-30', 1502, 66600, 4467, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '22.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70086, '2022-03-30', 2402, 66601, 4467, 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 (70087, '2022-03-30', 9794, 66602, 4467, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70088, '2022-03-30', 9482, 66603, 4467, 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 (70089, '2022-03-30', 2643, 66604, 4467, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70090, '2022-03-30', 3001, 66605, 4467, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70091, '2022-03-30', 8773, 66606, 4468, 53455, '1.0000', '3.8140', '3.8140', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70092, '2022-03-30', 9832, 66607, 4468, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70093, '2022-03-30', 2511, 66608, 4469, 49238, '1.0000', '8.8849', '8.8849', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70094, '2022-03-30', 1828, 66609, 4469, 33003, '2.0000', '0.7300', '0.7300', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70095, '2022-03-30', 2169, 66610, 4469, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70096, '2022-03-30', 1912, 66611, 4469, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70097, '2022-03-30', 1609, 66612, 4469, 53268, '1.0000', '12.7000', '12.7000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70098, '2022-03-30', 9732, 66613, 4469, 52298, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70099, '2022-03-30', 7459, 66614, 4469, NULL, '8.0000', '2.3500', '2.3500', '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 (70100, '2022-03-30', 2068, 66615, 4469, 50914, '1.0000', '11.7780', '11.7780', '15.3100', '15.3100', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70101, '2022-03-30', 2169, 66616, 4469, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70102, '2022-03-30', 1557, 66617, 4469, 48778, '1.0000', '8.0615', '8.0615', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70103, '2022-03-30', 2132, 66618, 4469, 49492, '1.0000', '21.6667', '21.6667', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70104, '2022-03-30', 2131, 66619, 4469, 52888, '1.0000', '11.9632', '11.9632', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70105, '2022-03-30', 1669, 66620, 4469, 46068, '4.0000', '19.0286', '19.0286', '9.5000', '9.5000', '66.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70106, '2022-03-30', 2132, 66621, 4469, 49492, '1.0000', '21.6667', '21.6667', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70107, '2022-03-30', 2971, 66622, 4469, 21826, '2.0000', '3.5000', '3.5000', '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 (70108, '2022-03-30', 2236, 66623, 4469, 52263, '1.0000', '5.7685', '5.7685', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70109, '2022-03-30', 1945, 66624, 4469, 50890, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70110, '2022-03-30', 8753, 66625, 4469, 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 (70111, '2022-03-30', 2660, 66626, 4469, 49531, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70112, '2022-03-30', 8666, 66627, 4469, NULL, '1.0000', '0.4600', '0.4600', '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 (70113, '2022-03-30', 1812, 66628, 4469, 52294, '1.0000', '7.9477', '7.9477', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70114, '2022-03-30', 7334, 66629, 4469, NULL, '3.0000', '8.1600', '8.1600', '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 (70115, '2022-03-30', 2020, 66630, 4469, 53258, '1.0000', '5.3849', '5.3849', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70116, '2022-03-30', 2660, 66631, 4469, 49531, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70117, '2022-03-30', 1852, 66632, 4469, 4983, '1.0000', '14.9000', '14.9000', '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 (70118, '2022-03-30', 9783, 66633, 4469, 53262, '1.0000', '17.6000', '17.6000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70119, '2022-03-30', 2959, 66634, 4469, 45627, '1.0000', '4.1853', '4.1853', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70120, '2022-03-30', 7640, 66635, 4469, NULL, '1.0000', '5.8900', '5.8900', '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 (70121, '2022-03-30', 1687, 66636, 4469, 50913, '1.0000', '12.9700', '12.9700', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70122, '2022-03-30', 9794, 66637, 4469, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '87.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70123, '2022-03-30', 7944, 66638, 4469, 53265, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70124, '2022-03-30', 1863, 66639, 4469, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70125, '2022-03-30', 2135, 66640, 4469, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70126, '2022-03-30', 2916, 66641, 4469, 52286, '1.0000', '14.3901', '14.3901', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70127, '2022-03-30', 7944, 66642, 4469, 53265, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70128, '2022-03-30', 2272, 66643, 4469, 44731, '1.0000', '5.8041', '5.8041', '7.8400', '7.8400', '2.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70129, '2022-03-30', 1863, 66644, 4469, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70130, '2022-03-30', 2660, 66645, 4469, 49531, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70131, '2022-03-30', 8677, 66646, 4469, 49108, '2.0000', '2.2418', '2.2418', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70132, '2022-03-30', 9776, 66647, 4469, NULL, '1.0000', '7.6700', '7.6700', '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 (70133, '2022-03-30', 7411, 66648, 4469, 48774, '1.0000', '1.3632', '1.3632', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70134, '2022-03-30', 2660, 66649, 4469, 49531, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70135, '2022-03-30', 2083, 66650, 4470, 1662, '1.0000', '0.5800', '0.5800', '1.0000', '1.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 (70136, '2022-03-30', 9794, 66651, 4470, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '85.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70137, '2022-03-30', 2277, 66652, 4470, 38069, '1.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70138, '2022-03-31', 1501, 66653, 4471, NULL, '1.0000', '2.1784', '2.1784', '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 (70139, '2022-03-31', 2109, 66654, 4471, 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 (70140, '2022-03-31', 1922, 66655, 4471, 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 (70141, '2022-03-31', 7802, 66656, 4471, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70142, '2022-03-31', 9762, 66657, 4471, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70143, '2022-03-31', 1736, 66658, 4471, NULL, '1.0000', '26.7000', '26.7000', '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 (70144, '2022-03-31', 1935, 66659, 4471, 52356, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70145, '2022-03-31', 2010, 66660, 4471, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70146, '2022-03-31', 1910, 66661, 4471, 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 (70147, '2022-03-31', 2379, 66662, 4471, NULL, '1.0000', '0.2954', '0.2954', '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 (70148, '2022-03-31', 3012, 66663, 4471, NULL, '1.0000', '4.7000', '4.7000', '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 (70149, '2022-03-31', 2315, 66664, 4471, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '39.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70150, '2022-03-31', 7709, 66665, 4471, 51700, '1.0000', '3.6111', '3.6111', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70151, '2022-03-31', 2296, 66666, 4471, 52334, '1.0000', '14.4550', '14.4550', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70152, '2022-03-31', 2345, 66667, 4471, 51310, '1.0000', '8.0067', '8.0067', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70153, '2022-03-31', 9734, 66668, 4471, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70154, '2022-03-31', 2009, 66669, 4471, 44153, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70155, '2022-03-31', 1880, 66670, 4471, 49320, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70156, '2022-03-31', 2642, 66671, 4471, 53439, '1.0000', '9.6678', '9.6678', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70157, '2022-03-31', 1837, 66672, 4471, NULL, '1.0000', '2.5335', '2.5335', '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 (70158, '2022-03-31', 2109, 66673, 4471, 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 (70159, '2022-03-31', 2221, 66674, 4471, 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 (70160, '2022-03-31', 3067, 66675, 4471, 25025, '2.0000', '0.7000', '0.7000', '0.5000', '0.5000', '19.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 (70161, '2022-03-31', 1638, 66676, 4472, 22271, '6.0000', '10.8843', '10.8843', '8.5000', '8.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 (70162, '2022-03-31', 2525, 66677, 4472, 6079, '-3.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 (70163, '2022-03-31', 2525, 66677, 4472, NULL, '4.0000', '10.0000', '10.0000', '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 (70164, '2022-03-31', 2530, 66678, 4472, NULL, '1.0000', '22.0000', '22.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 (70165, '2022-03-31', 2556, 66679, 4472, 7196, '-33.0000', '0.5800', '0.5800', '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 (70166, '2022-03-31', 2556, 66679, 4472, NULL, '34.0000', '0.5800', '0.5800', '1.5000', '1.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 (70167, '2022-03-31', 9794, 66680, 4472, NULL, '1.0000', '1.0800', '1.0800', '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 (70168, '2022-03-31', 1502, 66681, 4472, 6307, '-7.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 (70169, '2022-03-31', 1502, 66681, 4472, NULL, '8.0000', '7.8000', '7.8000', '11.0000', '11.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 (70170, '2022-03-31', 2825, 66682, 4472, NULL, '1.0000', '12.0000', '12.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 (70171, '2022-03-31', 1409, 66683, 4472, 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 (70172, '2022-03-31', 9440, 66684, 4472, 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 (70173, '2022-03-31', 1859, 66685, 4472, 7388, '-1.0000', '22.6760', '22.6760', '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 (70174, '2022-03-31', 1859, 66685, 4472, NULL, '2.0000', '22.6760', '22.6760', '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 (70175, '2022-03-31', 1612, 66686, 4472, 8732, '-7.0000', '1.6000', '1.6000', '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 (70176, '2022-03-31', 1612, 66686, 4472, NULL, '9.0000', '1.6000', '1.6000', '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 (70177, '2022-03-31', 2315, 66687, 4473, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '38.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70178, '2022-03-31', 1912, 66688, 4473, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70179, '2022-03-31', 2066, 66689, 4473, NULL, '5.0000', '0.5100', '0.5100', '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 (70180, '2022-03-31', 9634, 66690, 4473, 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 (70181, '2022-03-31', 1410, 66691, 4473, NULL, '1.0000', '-0.4921', '-0.4921', '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 (70182, '2022-03-31', 9794, 66692, 4473, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70183, '2022-03-31', 2293, 66693, 4473, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70184, '2022-03-31', 7672, 66694, 4473, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70185, '2022-03-31', 7639, 66695, 4473, 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 (70186, '2022-03-31', 2316, 66696, 4473, 49420, '1.0000', '48.6000', '48.6000', '53.0000', '53.0000', '4.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70187, '2022-03-31', 3004, 66697, 4473, 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 (70188, '2022-03-31', 1670, 66698, 4473, NULL, '1.0000', '7.2499', '7.2499', '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 (70189, '2022-03-31', 2270, 66699, 4473, 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 (70190, '2022-03-31', 1976, 66700, 4473, 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 (70191, '2022-03-31', 8677, 66701, 4473, NULL, '1.0000', '292.4641', '292.4641', '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 (70192, '2022-03-31', 9794, 66702, 4473, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70193, '2022-03-31', 9839, 66703, 4474, NULL, '1.0000', '15.0200', '15.0200', '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 (70194, '2022-03-31', 2362, 66704, 4474, 18935, '1.0000', '82.0200', '82.0200', '115.0000', '115.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 (70195, '2022-03-31', 2305, 66705, 4474, 53223, '1.0000', '4.0595', '4.0595', '8.5000', '8.5000', '16.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70196, '2022-03-31', 2009, 66706, 4474, 44153, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70197, '2022-03-31', 9177, 66707, 4474, 50249, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '15.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70198, '2022-03-31', 2948, 66708, 4474, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70199, '2022-03-31', 2413, 66709, 4474, NULL, '3.0000', '1.0500', '1.0500', '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 (70200, '2022-03-31', 9870, 66710, 4474, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70201, '2022-03-31', 9590, 66711, 4475, NULL, '2.0000', '-6.6667', '-6.6667', '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 (70202, '2022-03-31', 2948, 66712, 4475, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70203, '2022-03-31', 9695, 66713, 4475, 51959, '2.0000', '4.5000', '4.5000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70204, '2022-03-31', 1839, 66714, 4476, 8734, '-25.0000', '6.1500', '6.1500', '9.5000', '9.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 (70205, '2022-03-31', 1839, 66714, 4476, NULL, '26.0000', '6.1500', '6.1500', '9.5000', '9.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 (70206, '2022-03-31', 2332, 66715, 4476, 3835, '-6.0000', '5.8900', '5.8900', '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 (70207, '2022-03-31', 2332, 66715, 4476, NULL, '7.0000', '5.8900', '5.8900', '9.0000', '9.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 (70208, '2022-03-31', 2346, 66716, 4476, 18804, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '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 (70209, '2022-03-31', 2361, 66717, 4477, 3863, '-4.0000', '0.4700', '0.4700', '0.6000', '0.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 (70210, '2022-03-31', 2361, 66717, 4477, NULL, '5.0000', '0.4700', '0.4700', '0.6000', '0.6000', '-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 (70211, '2022-03-31', 2169, 66718, 4477, 10737, '-91.0000', '3.8397', '3.8397', '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 (70212, '2022-03-31', 2169, 66718, 4477, NULL, '92.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70213, '2022-03-31', 7321, 66719, 4478, NULL, '1.0000', '7.9500', '7.9500', '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 (70214, '2022-03-31', 1837, 66720, 4478, 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 (70215, '2022-03-31', 2315, 66721, 4478, 2735, '-228.0000', '0.3300', '0.3300', '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 (70216, '2022-03-31', 2315, 66721, 4478, NULL, '229.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-229.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70217, '2022-03-31', 9863, 66722, 4478, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70218, '2022-03-31', 8616, 66723, 4478, 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 (70219, '2022-03-31', 7804, 66724, 4478, NULL, '3.0000', '1.0200', '1.0200', '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 (70220, '2022-03-31', 7756, 66725, 4478, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70221, '2022-03-31', 7317, 66726, 4478, NULL, '1.0000', '19.5500', '19.5500', '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 (70222, '2022-03-31', 8215, 66727, 4478, NULL, '1.0000', '13.9000', '13.9000', '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 (70223, '2022-03-31', 9775, 66728, 4478, NULL, '1.0000', '7.9000', '7.9000', '11.0900', '11.0900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70224, '2022-03-31', 9735, 66729, 4478, 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 (70225, '2022-03-31', 8780, 66730, 4478, NULL, '1.0000', '46.0000', '46.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 (70226, '2022-03-31', 7428, 66731, 4478, NULL, '4.0000', '2.6100', '2.6100', '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 (70227, '2022-03-31', 8984, 66732, 4478, NULL, '3.0000', '0.8700', '0.8700', '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 (70228, '2022-03-31', 7666, 66733, 4478, 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 (70229, '2022-03-31', 8918, 66734, 4478, NULL, '1.0000', '1.0400', '1.0400', '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 (70230, '2022-03-31', 2287, 66735, 4478, 2947, '-15.0000', '1.8000', '1.8000', '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 (70231, '2022-03-31', 2287, 66735, 4478, NULL, '19.0000', '1.8000', '1.8000', '3.0000', '3.0000', '-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 (70232, '2022-03-31', 8596, 66736, 4478, 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 (70233, '2022-03-31', 7744, 66737, 4478, 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 (70234, '2022-03-31', 9819, 66738, 4478, NULL, '2.0000', '3.6300', '3.6300', '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 (70235, '2022-03-31', 7728, 66739, 4478, NULL, '1.0000', '1.8000', '1.8000', '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 (70236, '2022-03-31', 8506, 66740, 4478, NULL, '1.0000', '35.4000', '35.4000', '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 (70237, '2022-03-31', 7585, 66741, 4478, 33812, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70238, '2022-03-31', 8359, 66742, 4478, 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 (70239, '2022-03-31', 7352, 66743, 4478, NULL, '10.0000', '1.9800', '1.9800', '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 (70240, '2022-03-31', 1912, 66744, 4479, 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 (70241, '2022-03-31', 2263, 66745, 4480, 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 (70242, '2022-03-31', 2633, 66746, 4480, 52195, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70243, '2022-03-31', 2284, 66747, 4480, 48889, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70244, '2022-03-31', 2906, 66748, 4480, NULL, '1.0000', '2.6000', '2.6000', '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 (70245, '2022-03-31', 1763, 66749, 4480, 50252, '1.0000', '4.9051', '4.9051', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70246, '2022-03-31', 1763, 66749, 4480, NULL, '2.0000', '4.9051', '4.9051', '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 (70247, '2022-03-31', 2418, 66750, 4480, 39981, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70248, '2022-03-31', 2908, 66751, 4480, 49362, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70249, '2022-03-31', 1568, 66752, 4480, 51499, '1.0000', '19.5900', '19.5900', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70250, '2022-03-31', 1780, 66753, 4480, 30654, '1.0000', '95.5759', '95.5759', '51.0000', '51.0000', '1.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70251, '2022-03-31', 9109, 66754, 4480, 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 (70252, '2022-03-31', 2069, 66755, 4480, NULL, '1.0000', '2.0400', '2.0400', '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 (70253, '2022-03-31', 2283, 66756, 4480, 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 (70254, '2022-03-31', 9736, 66757, 4481, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70255, '2022-03-31', 2726, 66758, 4481, NULL, '1.0000', '2.7018', '2.7018', '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 (70256, '2022-03-31', 9839, 66759, 4481, NULL, '1.0000', '15.0200', '15.0200', '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 (70257, '2022-03-31', 9830, 66760, 4481, 53444, '3.0000', '1.9000', '1.9000', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70258, '2022-03-31', 9831, 66761, 4481, 53443, '3.0000', '1.5600', '1.5600', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70259, '2022-03-31', 2992, 66762, 4481, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70260, '2022-03-31', 2169, 66763, 4481, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70261, '2022-03-31', 9695, 66764, 4481, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70262, '2022-03-31', 7333, 66765, 4481, NULL, '1.0000', '13.5000', '13.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 (70263, '2022-03-31', 1651, 66766, 4481, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70264, '2022-03-31', 2948, 66767, 4481, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70265, '2022-03-31', 9482, 66768, 4481, NULL, '2.0000', '0.5000', '0.5000', '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 (70266, '2022-03-31', 2169, 66769, 4481, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70267, '2022-03-31', 1307, 66770, 4481, NULL, '1.0000', '-0.0521', '-0.0521', '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 (70268, '2022-03-31', 1785, 66771, 4482, 53210, '1.0000', '16.0121', '16.0121', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70269, '2022-03-31', 2916, 66772, 4483, NULL, '1.0000', '8.2115', '8.2115', '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 (70270, '2022-03-31', 3029, 66773, 4483, NULL, '1.0000', '-4.5585', '-4.5585', '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 (70271, '2022-03-31', 1446, 66774, 4483, NULL, '1.0000', '4.8156', '4.8156', '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 (70272, '2022-03-31', 1837, 66775, 4483, NULL, '2.0000', '2.5335', '2.5335', '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 (70273, '2022-03-31', 2167, 66776, 4483, NULL, '1.0000', '1.7907', '1.7907', '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 (70274, '2022-03-31', 7530, 66777, 4483, 51200, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70275, '2022-03-31', 2169, 66778, 4483, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70276, '2022-03-31', 8017, 66779, 4483, NULL, '3.0000', '0.6000', '0.6000', '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 (70277, '2022-03-31', 1322, 66780, 4483, NULL, '1.0000', '4.4000', '4.4000', '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 (70278, '2022-03-31', 9794, 66781, 4483, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70279, '2022-03-31', 9579, 66782, 4483, 51028, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70280, '2022-03-31', 2159, 66783, 4483, 48926, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70281, '2022-03-31', 9734, 66784, 4483, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '26.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70282, '2022-03-31', 2405, 66785, 4483, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '17.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70283, '2022-03-31', 7333, 66786, 4483, NULL, '2.0000', '13.5000', '13.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 (70284, '2022-03-31', 1945, 66787, 4483, 52328, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70285, '2022-03-31', 2167, 66788, 4483, NULL, '1.0000', '1.7907', '1.7907', '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 (70286, '2022-03-31', 2251, 66789, 4483, 52186, '1.0000', '11.3731', '11.3731', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70287, '2022-03-31', 2251, 66789, 4483, NULL, '1.0000', '11.3731', '11.3731', '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 (70288, '2022-03-31', 1384, 66790, 4483, 48662, '1.0000', '14.6150', '14.6150', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70289, '2022-03-31', 8773, 66791, 4483, 53455, '1.0000', '3.8140', '3.8140', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70290, '2022-03-31', 7472, 66792, 4483, NULL, '1.0000', '3.5411', '3.5411', '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 (70291, '2022-03-31', 1446, 66793, 4483, NULL, '1.0000', '4.8156', '4.8156', '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 (70292, '2022-03-31', 9831, 66794, 4483, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70293, '2022-03-31', 1493, 66795, 4483, NULL, '1.0000', '5.2600', '5.2600', '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 (70294, '2022-03-31', 9856, 66796, 4483, 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 (70295, '2022-03-31', 2315, 66797, 4483, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '37.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70296, '2022-03-31', 7447, 66798, 4484, NULL, '12.0000', '22.2074', '22.2074', '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 (70297, '2022-03-31', 7652, 66799, 4484, NULL, '10.0000', '343.2872', '343.2872', '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 (70298, '2022-03-31', 2315, 66800, 4484, NULL, '3.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (70299, '2022-03-31', 9445, 66801, 4484, 51776, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70300, '2022-03-31', 7867, 66802, 4484, NULL, '2.0000', '2.1368', '2.1368', '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 (70301, '2022-03-31', 9274, 66803, 4484, NULL, '1.0000', '3.5638', '3.5638', '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 (70302, '2022-03-31', 7782, 66804, 4484, NULL, '1.0000', '5.0000', '5.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 (70303, '2022-03-31', 8063, 66805, 4484, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '91.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70304, '2022-03-31', 7672, 66806, 4484, NULL, '1.0000', '3.8200', '3.8200', '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 (70305, '2022-03-31', 7324, 66807, 4484, 45796, '1.0000', '5.3429', '5.3429', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70306, '2022-03-31', 2284, 66808, 4484, 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 (70307, '2022-03-31', 7564, 66809, 4484, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70308, '2022-03-31', 8666, 66810, 4484, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70309, '2022-03-31', 8539, 66811, 4484, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '28.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70310, '2022-03-31', 8163, 66812, 4484, 48801, '1.0000', '22.8600', '22.8600', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70311, '2022-03-31', 9463, 66813, 4484, NULL, '1.0000', '4.3333', '4.3333', '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 (70312, '2022-03-31', 7402, 66814, 4484, 46660, '1.0000', '14.7783', '14.7783', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70313, '2022-03-31', 7674, 66815, 4484, 52725, '2.0000', '197.1282', '197.1282', '2.0000', '2.0000', '113.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70314, '2022-03-31', 7727, 66816, 4484, NULL, '1.0000', '0.9000', '0.9000', '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 (70315, '2022-03-31', 8359, 66817, 4484, 51787, '2.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70316, '2022-03-31', 7666, 66818, 4484, NULL, '1.0000', '3.6004', '3.6004', '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 (70317, '2022-03-31', 8046, 66819, 4484, NULL, '10.0000', '456.2805', '456.2805', '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 (70318, '2022-03-31', 7722, 66820, 4484, NULL, '1.0000', '3.5000', '3.5000', '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 (70319, '2022-03-31', 7721, 66821, 4484, 50296, '2.0000', '5.8165', '5.8165', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70320, '2022-03-31', 7721, 66821, 4484, 44474, '1.0000', '5.8165', '5.8165', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70321, '2022-03-31', 8476, 66822, 4484, NULL, '2.0000', '23.0000', '23.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 (70322, '2022-03-31', 7411, 66823, 4484, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70323, '2022-03-31', 7867, 66824, 4484, NULL, '2.0000', '2.1368', '2.1368', '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 (70324, '2022-03-31', 7667, 66825, 4484, 43447, '2.0000', '8.6120', '8.6120', '9.0000', '9.0000', '21.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70325, '2022-03-31', 2104, 66826, 4484, NULL, '1.0000', '0.2000', '0.2000', '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 (70326, '2022-03-31', 7411, 66827, 4484, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70327, '2022-03-31', 8937, 66828, 4484, NULL, '2.0000', '3.5000', '3.5000', '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 (70328, '2022-03-31', 9095, 66829, 4484, NULL, '1.0000', '9.7084', '9.7084', '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 (70329, '2022-03-31', 7435, 66830, 4484, 51274, '14.0000', '5.3311', '5.3311', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70330, '2022-03-31', 7518, 66831, 4484, NULL, '1.0000', '9.3495', '9.3495', '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 (70331, '2022-03-31', 9821, 66832, 4484, 50984, '2.0000', '1.4500', '1.4500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70332, '2022-03-31', 7588, 66833, 4484, NULL, '1.0000', '6.2420', '6.2420', '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 (70333, '2022-03-31', 9785, 66834, 4484, 51831, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70334, '2022-03-31', 2699, 66835, 4484, 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 (70335, '2022-03-31', 8677, 66836, 4484, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70336, '2022-03-31', 9740, 66837, 4484, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70337, '2022-03-31', 2315, 66838, 4484, NULL, '2.0000', '0.8863', '0.8863', '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 (70338, '2022-03-31', 1501, 66839, 4484, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70339, '2022-03-31', 7674, 66840, 4484, 52725, '3.0000', '197.1282', '197.1282', '2.0000', '2.0000', '112.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70340, '2022-03-31', 8203, 66841, 4484, NULL, '6.0000', '29.8095', '29.8095', '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 (70341, '2022-03-31', 9788, 66842, 4484, NULL, '4.0000', '1.3000', '1.3000', '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 (70342, '2022-03-31', 7333, 66843, 4484, NULL, '1.0000', '13.5000', '13.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 (70343, '2022-03-31', 2865, 66844, 4485, 17692, '-5.0000', '2.8000', '2.8000', '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 (70344, '2022-03-31', 2865, 66844, 4485, NULL, '6.0000', '2.8000', '2.8000', '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 (70345, '2022-03-31', 1618, 66845, 4485, 8737, '-8.0000', '11.8200', '11.8200', '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 (70346, '2022-03-31', 1618, 66845, 4485, NULL, '9.0000', '11.8200', '11.8200', '16.0000', '16.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 (70347, '2022-03-31', 1670, 66846, 4485, 10163, '-15.0000', '19.5000', '19.5000', '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 (70348, '2022-03-31', 1670, 66846, 4485, NULL, '16.0000', '19.5000', '19.5000', '33.0000', '33.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 (70349, '2022-03-31', 2270, 66847, 4485, 2930, '-6.0000', '0.9880', '0.9880', '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 (70350, '2022-03-31', 2270, 66847, 4485, NULL, '7.0000', '0.9880', '0.9880', '3.5000', '3.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 (70351, '2022-03-31', 2769, 66848, 4486, NULL, '4.0000', '1.5200', '1.5200', '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 (70352, '2022-03-31', 2315, 66849, 4486, 2735, '-229.0000', '0.3300', '0.3300', '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 (70353, '2022-03-31', 2315, 66849, 4486, NULL, '230.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-230.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70354, '2022-03-31', 9831, 66850, 4486, NULL, '1.0000', '1.5600', '1.5600', '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 (70355, '2022-03-31', 8979, 66851, 4486, NULL, '1.0000', '1.0000', '1.0000', '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 (70356, '2022-03-31', 2643, 66852, 4486, NULL, '1.0000', '0.8700', '0.8700', '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 (70357, '2022-03-31', 9482, 66853, 4487, 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 (70358, '2022-03-31', 9830, 66854, 4487, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70359, '2022-03-31', 2643, 66855, 4487, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70360, '2022-03-31', 9830, 66856, 4487, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70361, '2022-03-31', 8566, 66857, 4487, 53414, '1.0000', '15.9999', '15.9999', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70362, '2022-03-31', 1805, 66858, 4487, NULL, '1.0000', '15.0770', '15.0770', '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 (70363, '2022-03-31', 3059, 66859, 4488, NULL, '2.0000', '0.4500', '0.4500', '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 (70364, '2022-03-31', 1501, 66860, 4488, 20590, '1.0000', '2.0500', '2.0500', '4.0000', '4.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 (70365, '2022-03-31', 1715, 66861, 4488, 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 (70366, '2022-03-31', 2821, 66862, 4488, 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 (70367, '2022-03-31', 7952, 66863, 4488, 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 (70368, '2022-03-31', 9788, 66864, 4489, 51672, '4.0000', '1.5897', '1.5897', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70369, '2022-03-31', 7641, 66865, 4489, NULL, '1.0000', '1.9000', '1.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 (70370, '2022-03-31', 9794, 66866, 4489, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70371, '2022-03-31', 9300, 66867, 4490, NULL, '1.0000', '3.0968', '3.0968', '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 (70372, '2022-03-31', 8463, 66868, 4490, NULL, '1.0000', '18.0000', '18.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 (70373, '2022-03-31', 7758, 66869, 4490, 43103, '1.0000', '-45.9138', '-45.9138', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70374, '2022-03-31', 7641, 66870, 4490, NULL, '1.0000', '95.0035', '95.0035', '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 (70375, '2022-03-31', 9092, 66871, 4490, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '193.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70376, '2022-03-31', 9731, 66872, 4490, 49289, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70377, '2022-03-31', 7587, 66873, 4490, NULL, '1.0000', '6.3886', '6.3886', '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 (70378, '2022-03-31', 2315, 66874, 4490, NULL, '7.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (70379, '2022-03-31', 7719, 66875, 4490, NULL, '1.0000', '7.0021', '7.0021', '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 (70380, '2022-03-31', 7892, 66876, 4490, NULL, '1.0000', '4.2000', '4.2000', '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 (70381, '2022-03-31', 8702, 66877, 4490, NULL, '1.0000', '3.6700', '3.6700', '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 (70382, '2022-03-31', 8844, 66878, 4490, NULL, '1.0000', '4.9900', '4.9900', '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 (70383, '2022-03-31', 7847, 66879, 4490, 52016, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70384, '2022-03-31', 8970, 66880, 4490, NULL, '1.0000', '-26.3000', '-26.3000', '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 (70385, '2022-03-31', 7933, 66881, 4490, NULL, '1.0000', '0.3245', '0.3245', '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 (70386, '2022-03-31', 1935, 66882, 4490, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '146.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70387, '2022-03-31', 7564, 66883, 4490, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70388, '2022-03-31', 2633, 66884, 4491, 41974, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70389, '2022-03-31', 7954, 66885, 4491, 52099, '2.0000', '-65.3773', '-65.3773', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70390, '2022-03-31', 2411, 66886, 4491, 45089, '1.0000', '1.3762', '1.3762', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70391, '2022-03-31', 2020, 66887, 4491, 53258, '1.0000', '5.3849', '5.3849', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70392, '2022-03-31', 1812, 66888, 4491, 52294, '1.0000', '7.9477', '7.9477', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70393, '2022-03-31', 9732, 66889, 4491, 52298, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70394, '2022-03-31', 2254, 66890, 4491, 50858, '1.0000', '17.8303', '17.8303', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70395, '2022-03-31', 1935, 66891, 4491, 53273, '1.0000', '1.7523', '1.7523', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70396, '2022-03-31', 1863, 66892, 4491, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70397, '2022-03-31', 2109, 66893, 4491, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70398, '2022-03-31', 1812, 66894, 4491, 52294, '1.0000', '7.9477', '7.9477', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70399, '2022-03-31', 1863, 66895, 4491, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70400, '2022-03-31', 3016, 66896, 4491, 40616, '1.0000', '14.5200', '14.5200', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70401, '2022-03-31', 1720, 66897, 4491, 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 (70402, '2022-03-31', 1871, 66898, 4491, 52233, '4.0000', '5.8663', '5.8663', '3.5000', '3.5000', '56.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70403, '2022-03-31', 1425, 66899, 4491, 52246, '1.0000', '7.0001', '7.0001', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70404, '2022-03-31', 2858, 66900, 4491, 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 (70405, '2022-03-31', 2518, 66901, 4491, 48000, '1.0000', '117.2911', '117.2911', '157.0000', '157.0000', '1.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70406, '2022-03-31', 1912, 66902, 4491, 50866, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70407, '2022-03-31', 7321, 66903, 4491, NULL, '1.0000', '7.9500', '7.9500', '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 (70408, '2022-03-31', 2762, 66904, 4491, 53263, '2.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70409, '2022-03-31', 2302, 66905, 4491, 52087, '1.0000', '5.1943', '5.1943', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70410, '2022-03-31', 2417, 66906, 4491, 11193, '6.0000', '14.5420', '14.5420', '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 (70411, '2022-03-31', 7744, 66907, 4491, NULL, '1.0000', '2.9400', '2.9400', '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 (70412, '2022-03-31', 7744, 66908, 4492, 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 (70413, '2022-03-31', 9831, 66909, 4492, NULL, '1.0000', '1.5600', '1.5600', '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 (70414, '2022-03-31', 2109, 66910, 4492, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '72.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 (70415, '2022-03-31', 9747, 66911, 4492, NULL, '1.0000', '0.6500', '0.6500', '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 (70416, '2022-03-31', 9872, 66912, 4492, NULL, '1.0000', '14.6300', '14.6300', '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 (70417, '2022-03-31', 8276, 66913, 4492, 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 (70418, '2022-04-01', 1330, 66914, 4493, 18937, '1.0000', '2.8000', '2.8000', '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 (70419, '2022-04-01', 2411, 66915, 4493, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70420, '2022-04-01', 1912, 66916, 4493, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70421, '2022-04-01', 7658, 66917, 4493, NULL, '4.0000', '10.1500', '10.1500', '2.8000', '2.8000', '-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 (70422, '2022-04-01', 2315, 66918, 4493, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '35.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70423, '2022-04-01', 8763, 66919, 4493, NULL, '2.0000', '5.4000', '5.4000', '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 (70424, '2022-04-01', 9145, 66920, 4493, NULL, '1.0000', '9.0000', '9.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 (70425, '2022-04-01', 1695, 66921, 4493, NULL, '1.0000', '-53.5296', '-53.5296', '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 (70426, '2022-04-01', 2293, 66922, 4493, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70427, '2022-04-01', 9864, 66923, 4493, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70428, '2022-04-01', 2379, 66924, 4493, NULL, '1.0000', '0.2954', '0.2954', '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 (70429, '2022-04-01', 7459, 66925, 4493, NULL, '10.0000', '-6.1729', '-6.1729', '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 (70430, '2022-04-01', 1504, 66926, 4493, 51480, '10.0000', '1.9591', '1.9591', '2.4000', '2.4000', '30.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70431, '2022-04-01', 1602, 66927, 4493, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70432, '2022-04-01', 1905, 66928, 4493, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70433, '2022-04-01', 9834, 66929, 4493, 51659, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70434, '2022-04-01', 1837, 66930, 4493, NULL, '2.0000', '2.5335', '2.5335', '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 (70435, '2022-04-01', 1339, 66931, 4493, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70436, '2022-04-01', 9695, 66932, 4493, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70437, '2022-04-01', 2416, 66933, 4493, 53460, '1.0000', '1.2174', '1.2174', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70438, '2022-04-01', 2163, 66934, 4493, 51214, '2.0000', '25.7500', '25.7500', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70439, '2022-04-01', 2262, 66935, 4493, 51483, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70440, '2022-04-01', 1341, 66936, 4493, 19363, '2.0000', '13.5000', '13.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 (70441, '2022-04-01', 8746, 66937, 4493, 53448, '1.0000', '2.8848', '2.8848', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70442, '2022-04-01', 8744, 66938, 4493, 53449, '1.0000', '1.8443', '1.8443', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70443, '2022-04-01', 2029, 66939, 4493, 51954, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70444, '2022-04-01', 2029, 66939, 4493, 49682, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70445, '2022-04-01', 2642, 66940, 4493, 53439, '2.0000', '9.6678', '9.6678', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70446, '2022-04-01', 1837, 66941, 4493, NULL, '2.0000', '2.5335', '2.5335', '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 (70447, '2022-04-01', 2379, 66942, 4493, NULL, '1.0000', '0.2954', '0.2954', '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 (70448, '2022-04-01', 9830, 66943, 4493, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70449, '2022-04-01', 2916, 66944, 4493, NULL, '1.0000', '8.2115', '8.2115', '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 (70450, '2022-04-01', 9821, 66945, 4493, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70451, '2022-04-01', 9380, 66946, 4494, NULL, '1.0000', '22.3200', '22.3200', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70452, '2022-04-01', 7412, 66947, 4495, NULL, '2.0000', '1.5200', '1.5200', '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 (70453, '2022-04-01', 7780, 66948, 4495, NULL, '1.0000', '11.6000', '11.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 (70454, '2022-04-01', 9463, 66949, 4495, NULL, '1.0000', '7.5000', '7.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 (70455, '2022-04-01', 8145, 66950, 4495, NULL, '1.0000', '28.0000', '28.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 (70456, '2022-04-01', 8596, 66951, 4495, 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 (70457, '2022-04-01', 8415, 66952, 4495, NULL, '1.0000', '3.2500', '3.2500', '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 (70458, '2022-04-01', 9785, 66953, 4495, 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 (70459, '2022-04-01', 9300, 66954, 4495, NULL, '1.0000', '4.9000', '4.9000', '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 (70460, '2022-04-01', 9748, 66955, 4495, NULL, '2.0000', '2.5300', '2.5300', '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 (70461, '2022-04-01', 8539, 66956, 4495, NULL, '2.0000', '31.8000', '31.8000', '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 (70462, '2022-04-01', 9098, 66957, 4495, NULL, '3.0000', '26.0000', '26.0000', '34.5000', '34.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 (70463, '2022-04-01', 8172, 66958, 4495, NULL, '1.0000', '40.7000', '40.7000', '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 (70464, '2022-04-01', 7473, 66959, 4495, NULL, '2.0000', '0.5300', '0.5300', '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 (70465, '2022-04-01', 8033, 66960, 4495, NULL, '1.0000', '27.7000', '27.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 (70466, '2022-04-01', 8963, 66961, 4495, 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 (70467, '2022-04-01', 8672, 66962, 4495, 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 (70468, '2022-04-01', 9644, 66963, 4495, NULL, '1.0000', '3.6000', '3.6000', '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 (70469, '2022-04-01', 7428, 66964, 4495, NULL, '2.0000', '2.6100', '2.6100', '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 (70470, '2022-04-01', 1904, 66965, 4495, 5442, '-34.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 (70471, '2022-04-01', 1904, 66965, 4495, NULL, '35.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70472, '2022-04-01', 2315, 66966, 4495, 2735, '-230.0000', '0.3300', '0.3300', '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 (70473, '2022-04-01', 2315, 66966, 4495, NULL, '234.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-234.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70474, '2022-04-01', 2353, 66967, 4496, NULL, '1.0000', '3.9633', '3.9633', '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 (70475, '2022-04-01', 1339, 66968, 4496, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70476, '2022-04-01', 2299, 66969, 4496, 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 (70477, '2022-04-01', 9736, 66970, 4496, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70478, '2022-04-01', 2315, 66971, 4496, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '34.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70479, '2022-04-01', 9463, 66972, 4496, NULL, '1.0000', '18.9000', '18.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 (70480, '2022-04-01', 2284, 66973, 4496, 48889, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70481, '2022-04-01', 2169, 66974, 4496, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70482, '2022-04-01', 1809, 66975, 4496, 50236, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70483, '2022-04-01', 1810, 66976, 4496, NULL, '1.0000', '9.7936', '9.7936', '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 (70484, '2022-04-01', 8454, 66977, 4496, NULL, '1.0000', '4.1722', '4.1722', '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 (70485, '2022-04-01', 1602, 66978, 4496, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70486, '2022-04-01', 1837, 66979, 4496, NULL, '1.0000', '2.5335', '2.5335', '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 (70487, '2022-04-01', 2379, 66980, 4496, NULL, '1.0000', '0.2954', '0.2954', '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 (70488, '2022-04-01', 9761, 66981, 4496, 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 (70489, '2022-04-01', 2821, 66982, 4496, 53207, '1.0000', '3.2804', '3.2804', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70490, '2022-04-01', 9868, 66983, 4496, 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 (70491, '2022-04-01', 9831, 66984, 4496, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70492, '2022-04-01', 9272, 66985, 4496, NULL, '1.0000', '3.1000', '3.1000', '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 (70493, '2022-04-01', 1602, 66986, 4496, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70494, '2022-04-01', 7472, 66987, 4496, NULL, '1.0000', '3.5411', '3.5411', '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 (70495, '2022-04-01', 9794, 66988, 4496, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70496, '2022-04-01', 7518, 66989, 4496, NULL, '1.0000', '7.8200', '7.8200', '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 (70497, '2022-04-01', 2287, 66990, 4496, 48629, '1.0000', '1.8730', '1.8730', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70498, '2022-04-01', 1837, 66991, 4497, NULL, '4.0000', '0.9642', '0.9642', '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 (70499, '2022-04-01', 2950, 66992, 4497, 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 (70500, '2022-04-01', 1947, 66993, 4497, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '49.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 (70501, '2022-04-01', 1497, 66994, 4497, 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 (70502, '2022-04-01', 1666, 66995, 4497, 3236, '-23.0000', '2.7100', '2.7100', '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 (70503, '2022-04-01', 1666, 66995, 4497, NULL, '24.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-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 (70504, '2022-04-01', 2088, 66996, 4497, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '48.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 (70505, '2022-04-01', 2169, 66997, 4497, 10737, '-92.0000', '3.8397', '3.8397', '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 (70506, '2022-04-01', 2169, 66997, 4497, NULL, '93.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70507, '2022-04-01', 2104, 66998, 4497, 1048, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '284.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 (70508, '2022-04-01', 2169, 66999, 4497, 10737, '-92.0000', '3.8397', '3.8397', '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 (70509, '2022-04-01', 2169, 66999, 4497, NULL, '93.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70510, '2022-04-01', 1502, 67000, 4497, 6307, '-8.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 (70511, '2022-04-01', 1502, 67000, 4497, NULL, '9.0000', '7.8000', '7.8000', '11.0000', '11.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 (70512, '2022-04-01', 9463, 67001, 4497, NULL, '1.0000', '7.5000', '7.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 (70513, '2022-04-01', 9794, 67002, 4497, NULL, '2.0000', '1.0800', '1.0800', '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 (70514, '2022-04-01', 2237, 67003, 4497, 2781, '-48.0000', '1.0600', '1.0600', '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 (70515, '2022-04-01', 2237, 67003, 4497, NULL, '49.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70516, '2022-04-01', 1690, 67004, 4497, 18873, '1.0000', '7.1466', '7.1466', '9.5000', '9.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 (70517, '2022-04-01', 9791, 67005, 4497, 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 (70518, '2022-04-01', 7530, 67006, 4497, NULL, '1.0000', '7.7000', '7.7000', '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 (70519, '2022-04-01', 7944, 67007, 4497, NULL, '1.0000', '2.0100', '2.0100', '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 (70520, '2022-04-01', 2295, 67008, 4497, 22264, '3.0000', '0.9600', '0.9600', '2.0000', '2.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 (70521, '2022-04-01', 1501, 67009, 4497, 20590, '1.0000', '2.0500', '2.0500', '4.0000', '4.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 (70522, '2022-04-01', 9794, 67010, 4497, NULL, '1.0000', '1.0800', '1.0800', '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 (70523, '2022-04-01', 2169, 67011, 4497, 10737, '-92.0000', '3.8397', '3.8397', '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 (70524, '2022-04-01', 2169, 67011, 4497, NULL, '93.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70525, '2022-04-01', 2908, 67012, 4498, 18647, '-5.0000', '0.2700', '0.2700', '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 (70526, '2022-04-01', 2908, 67012, 4498, NULL, '11.0000', '0.2700', '0.2700', '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 (70527, '2022-04-01', 9794, 67013, 4498, NULL, '1.0000', '1.0800', '1.0800', '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 (70528, '2022-04-01', 1510, 67014, 4498, 18904, '1.0000', '8.8600', '8.8600', '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 (70529, '2022-04-01', 9831, 67015, 4498, NULL, '1.0000', '1.5600', '1.5600', '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 (70530, '2022-04-01', 1837, 67016, 4498, 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 (70531, '2022-04-01', 2287, 67017, 4498, 2947, '-19.0000', '1.8000', '1.8000', '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 (70532, '2022-04-01', 2287, 67017, 4498, NULL, '22.0000', '1.8000', '1.8000', '3.0000', '3.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70533, '2022-04-01', 9794, 67018, 4499, NULL, '1.0000', '1.0800', '1.0800', '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 (70534, '2022-04-01', 2315, 67019, 4499, 2735, '-234.0000', '0.3300', '0.3300', '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 (70535, '2022-04-01', 2315, 67019, 4499, NULL, '235.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-235.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70536, '2022-04-01', 8666, 67020, 4499, NULL, '2.0000', '0.4600', '0.4600', '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 (70537, '2022-04-01', 9794, 67021, 4499, NULL, '1.0000', '1.0800', '1.0800', '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 (70538, '2022-04-01', 1342, 67022, 4499, 11264, '-11.0000', '6.8074', '6.8074', '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 (70539, '2022-04-01', 1342, 67022, 4499, NULL, '12.0000', '6.8074', '6.8074', '8.0000', '8.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 (70540, '2022-04-01', 8068, 67023, 4499, NULL, '1.0000', '8.7900', '8.7900', '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 (70541, '2022-04-01', 1667, 67024, 4499, 9745, '-44.0000', '5.9400', '5.9400', '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 (70542, '2022-04-01', 1667, 67024, 4499, NULL, '45.0000', '5.9400', '5.9400', '8.5000', '8.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 (70543, '2022-04-01', 2643, 67025, 4499, NULL, '1.0000', '0.8700', '0.8700', '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 (70544, '2022-04-01', 2416, 67026, 4499, 4745, '-22.0000', '1.2000', '1.2000', '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 (70545, '2022-04-01', 2416, 67026, 4499, NULL, '23.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (70546, '2022-04-01', 7756, 67027, 4499, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70547, '2022-04-01', 2231, 67028, 4499, 1706, '-7.0000', '33.0000', '33.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 (70548, '2022-04-01', 2231, 67028, 4499, NULL, '8.0000', '33.0000', '33.0000', '45.0000', '45.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 (70549, '2022-04-01', 2225, 67029, 4499, 1700, '-2.0000', '14.0000', '14.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 (70550, '2022-04-01', 2225, 67029, 4499, NULL, '4.0000', '14.0000', '14.0000', '20.0000', '20.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 (70551, '2022-04-01', 9750, 67030, 4499, NULL, '1.0000', '3.3000', '3.3000', '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 (70552, '2022-04-01', 1602, 67031, 4499, 5897, '-124.0000', '6.7859', '6.7859', '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 (70553, '2022-04-01', 1602, 67031, 4499, NULL, '125.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-125.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70554, '2022-04-01', 9741, 67032, 4499, NULL, '1.0000', '7.6000', '7.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 (70555, '2022-04-01', 2169, 67033, 4499, 10737, '-95.0000', '3.8397', '3.8397', '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 (70556, '2022-04-01', 2169, 67033, 4499, NULL, '96.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-96.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70557, '2022-04-01', 2454, 67034, 4499, 5642, '-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 (70558, '2022-04-01', 2454, 67034, 4499, NULL, '2.0000', '9.0000', '9.0000', '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 (70559, '2022-04-01', 9532, 67035, 4499, NULL, '1.0000', '11.0000', '11.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 (70560, '2022-04-01', 9831, 67036, 4500, NULL, '1.0000', '1.5600', '1.5600', '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 (70561, '2022-04-01', 9695, 67037, 4500, NULL, '1.0000', '4.5000', '4.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 (70562, '2022-04-01', 9579, 67038, 4500, 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 (70563, '2022-04-01', 1965, 67039, 4500, NULL, '1.0000', '17.2400', '17.2400', '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 (70564, '2022-04-01', 1665, 67040, 4500, 3235, '-86.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 (70565, '2022-04-01', 1665, 67040, 4500, NULL, '88.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70566, '2022-04-01', 9695, 67041, 4500, NULL, '1.0000', '4.5000', '4.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 (70567, '2022-04-01', 2315, 67042, 4501, 2735, '-235.0000', '0.3300', '0.3300', '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 (70568, '2022-04-01', 2315, 67042, 4501, NULL, '236.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-236.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70569, '2022-04-01', 2169, 67043, 4501, 10737, '-96.0000', '3.8397', '3.8397', '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 (70570, '2022-04-01', 2169, 67043, 4501, NULL, '97.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-97.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70571, '2022-04-01', 2357, 67044, 4501, 3859, '-3.0000', '4.0000', '4.0000', '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 (70572, '2022-04-01', 2357, 67044, 4501, NULL, '4.0000', '4.0000', '4.0000', '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 (70573, '2022-04-01', 2295, 67045, 4501, 22264, '3.0000', '0.9600', '0.9600', '2.0000', '2.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 (70574, '2022-04-01', 1665, 67046, 4501, 3235, '-88.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 (70575, '2022-04-01', 1665, 67046, 4501, NULL, '91.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-91.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70576, '2022-04-01', 8740, 67047, 4501, NULL, '1.0000', '2.0000', '2.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 (70577, '2022-04-01', 9695, 67048, 4501, NULL, '1.0000', '4.5000', '4.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 (70578, '2022-04-01', 9831, 67049, 4501, NULL, '1.0000', '1.5600', '1.5600', '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 (70579, '2022-04-01', 1620, 67050, 4501, 8955, '-21.0000', '408.8259', '408.8259', '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 (70580, '2022-04-01', 1620, 67050, 4501, NULL, '22.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70581, '2022-04-01', 2283, 67051, 4502, 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 (70582, '2022-04-01', 2286, 67052, 4502, 53205, '2.0000', '4.4278', '4.4278', '6.0000', '6.0000', '38.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70583, '2022-04-01', 9794, 67053, 4502, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70584, '2022-04-01', 8425, 67054, 4502, 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 (70585, '2022-04-01', 1999, 67055, 4502, 51936, '1.0000', '6.6486', '6.6486', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70586, '2022-04-01', 2521, 67056, 4503, 6035, '-5.0000', '8.8000', '8.8000', '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 (70587, '2022-04-01', 2521, 67056, 4503, NULL, '6.0000', '8.8000', '8.8000', '15.0000', '15.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 (70588, '2022-04-01', 2255, 67057, 4503, NULL, '1.0000', '17.4900', '17.4900', '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 (70589, '2022-04-01', 2413, 67058, 4503, 4505, '-8.0000', '1.0500', '1.0500', '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 (70590, '2022-04-01', 2413, 67058, 4503, NULL, '12.0000', '1.0500', '1.0500', '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 (70591, '2022-04-01', 2346, 67059, 4503, 18804, '1.0000', '5.5000', '5.5000', '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 (70592, '2022-04-01', 9810, 67060, 4503, NULL, '1.0000', '9.8000', '9.8000', '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 (70593, '2022-04-01', 9750, 67061, 4503, NULL, '1.0000', '3.3000', '3.3000', '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 (70594, '2022-04-01', 7385, 67062, 4504, 51081, '5.0000', '15.9587', '15.9587', '3.0000', '3.0000', '95.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70595, '2022-04-01', 7674, 67063, 4504, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '109.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70596, '2022-04-01', 7385, 67064, 4504, 51081, '3.0000', '15.9587', '15.9587', '3.0000', '3.0000', '97.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70597, '2022-04-01', 7548, 67065, 4504, 52738, '1.0000', '2.0471', '2.0471', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70598, '2022-04-01', 2052, 67066, 4504, 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 (70599, '2022-04-01', 2315, 67067, 4504, NULL, '3.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (70600, '2022-04-01', 7473, 67068, 4504, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '51.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70601, '2022-04-01', 9740, 67069, 4504, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70602, '2022-04-01', 9729, 67070, 4504, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70603, '2022-04-01', 2289, 67071, 4504, NULL, '4.0000', '2.5688', '2.5688', '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 (70604, '2022-04-01', 7708, 67072, 4504, NULL, '1.0000', '70.5861', '70.5861', '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 (70605, '2022-04-01', 7675, 67073, 4504, NULL, '1.0000', '84.8590', '84.8590', '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 (70606, '2022-04-01', 7641, 67074, 4504, NULL, '2.0000', '95.0035', '95.0035', '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 (70607, '2022-04-01', 7598, 67075, 4504, NULL, '1.0000', '1.2800', '1.2800', '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 (70608, '2022-04-01', 7782, 67076, 4504, NULL, '1.0000', '5.0000', '5.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 (70609, '2022-04-01', 7806, 67077, 4504, NULL, '2.0000', '37.5044', '37.5044', '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 (70610, '2022-04-01', 8566, 67078, 4504, NULL, '1.0000', '-55864.3970', '-55864.3970', '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 (70611, '2022-04-01', 9303, 67079, 4504, NULL, '1.0000', '9.0000', '9.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 (70612, '2022-04-01', 7917, 67080, 4504, 52750, '4.0000', '2.1447', '2.1447', '0.7000', '0.7000', '138.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70613, '2022-04-01', 7354, 67081, 4504, NULL, '3.0000', '-2.5000', '-2.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 (70614, '2022-04-01', 2061, 67082, 4504, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70615, '2022-04-01', 8309, 67083, 4504, 34526, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70616, '2022-04-01', 7762, 67084, 4504, 52466, '1.0000', '-4.7001', '-4.7001', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70617, '2022-04-01', 7779, 67085, 4504, 51779, '1.0000', '9.5007', '9.5007', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70618, '2022-04-01', 9734, 67086, 4504, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70619, '2022-04-01', 7357, 67087, 4504, NULL, '1.0000', '11.7500', '11.7500', '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 (70620, '2022-04-01', 7317, 67088, 4504, 52733, '1.0000', '14.7942', '14.7942', '20.0000', '20.0000', '17.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70621, '2022-04-01', 7967, 67089, 4504, 50451, '1.0000', '5.5335', '5.5335', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70622, '2022-04-01', 8395, 67090, 4504, 52459, '1.0000', '0.6080', '0.6080', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70623, '2022-04-01', 9730, 67091, 4504, 46182, '1.0000', '18.2000', '18.2000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70624, '2022-04-01', 7316, 67092, 4504, 50386, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '11.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70625, '2022-04-01', 9089, 67093, 4504, 32139, '1.0000', '3.8000', '3.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70626, '2022-04-01', 9202, 67094, 4504, NULL, '1.0000', '3.5000', '3.5000', '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 (70627, '2022-04-01', 7799, 67095, 4504, NULL, '1.0000', '4.7214', '4.7214', '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 (70628, '2022-04-01', 9193, 67096, 4504, NULL, '2.0000', '7.0315', '7.0315', '9.5000', '9.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 (70629, '2022-04-01', 7514, 67097, 4504, NULL, '1.0000', '932.5375', '932.5375', '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 (70630, '2022-04-01', 7412, 67098, 4504, NULL, '1.0000', '1.5200', '1.5200', '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 (70631, '2022-04-01', 8359, 67099, 4504, 51816, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70632, '2022-04-01', 2104, 67100, 4504, NULL, '2.0000', '0.2000', '0.2000', '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 (70633, '2022-04-01', 1501, 67101, 4504, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70634, '2022-04-01', 8288, 67102, 4504, NULL, '5.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (70635, '2022-04-01', 1450, 67103, 4504, NULL, '1.0000', '0.8900', '0.8900', '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 (70636, '2022-04-01', 2315, 67104, 4504, NULL, '1.0000', '0.8863', '0.8863', '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 (70637, '2022-04-01', 7743, 67105, 4504, NULL, '2.0000', '419203.7668', '419203.7668', '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 (70638, '2022-04-01', 1601, 67106, 4505, 8892, '-2.0000', '7.7300', '7.7300', '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 (70639, '2022-04-01', 1601, 67106, 4505, NULL, '3.0000', '7.7300', '7.7300', '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 (70640, '2022-04-01', 1955, 67107, 4505, 266, '5.0000', '19.4666', '19.4666', '3.5000', '3.5000', '0.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 (70641, '2022-04-01', 1955, 67107, 4505, NULL, '10.0000', '19.4666', '19.4666', '3.5000', '3.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 (70642, '2022-04-01', 7518, 67108, 4506, NULL, '2.0000', '9.3495', '9.3495', '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 (70643, '2022-04-01', 7346, 67109, 4506, 53384, '1.0000', '91.3000', '91.3000', '120.5000', '120.5000', '0.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70644, '2022-04-01', 8622, 67110, 4506, 51013, '1.0000', '-10.8064', '-10.8064', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70645, '2022-04-01', 1822, 67111, 4507, 8225, '-125.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 (70646, '2022-04-01', 1822, 67111, 4507, NULL, '145.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70647, '2022-04-01', 2449, 67112, 4507, NULL, '3.0000', '5.5000', '5.5000', '7.0000', '7.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 (70648, '2022-04-01', 2787, 67113, 4507, 16140, '1.0000', '16.0200', '16.0200', '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 (70649, '2022-04-01', 1651, 67114, 4507, 3222, '-53.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 (70650, '2022-04-01', 1651, 67114, 4507, NULL, '54.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70651, '2022-04-01', 2302, 67115, 4507, 2963, '-44.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 (70652, '2022-04-01', 2302, 67115, 4507, NULL, '45.0000', '5.2000', '5.2000', '7.0000', '7.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 (70653, '2022-04-01', 8740, 67116, 4507, NULL, '1.0000', '2.0000', '2.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 (70654, '2022-04-01', 8013, 67117, 4507, NULL, '1.0000', '3.6500', '3.6500', '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 (70655, '2022-04-01', 2260, 67118, 4507, 2796, '-13.0000', '4.2000', '4.2000', '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 (70656, '2022-04-01', 2260, 67118, 4507, NULL, '16.0000', '4.2000', '4.2000', '6.5000', '6.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 (70657, '2022-04-01', 1942, 67119, 4507, 5593, '-1.0000', '19.0000', '19.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 (70658, '2022-04-01', 1942, 67119, 4507, NULL, '2.0000', '19.0000', '19.0000', '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 (70659, '2022-04-01', 1572, 67120, 4507, 435, '1.0000', '138.3520', '138.3520', '3.0000', '3.0000', '6.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 (70660, '2022-04-01', 2384, 67121, 4507, 12014, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '47.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 (70661, '2022-04-01', 1986, 67122, 4507, 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 (70662, '2022-04-01', 7587, 67123, 4507, NULL, '1.0000', '6.4400', '6.4400', '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 (70663, '2022-04-01', 3017, 67124, 4507, NULL, '1.0000', '3.9000', '3.9000', '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 (70664, '2022-04-01', 2491, 67125, 4507, 6228, '-26.0000', '12.2000', '12.2000', '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 (70665, '2022-04-01', 2491, 67125, 4507, NULL, '27.0000', '12.2000', '12.2000', '17.5000', '17.5000', '-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 (70666, '2022-04-01', 2232, 67126, 4507, 2776, '-4.0000', '29.0000', '29.0000', '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 (70667, '2022-04-01', 2232, 67126, 4507, NULL, '5.0000', '29.0000', '29.0000', '43.0000', '43.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 (70668, '2022-04-01', 2681, 67127, 4507, 12164, '-19.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 (70669, '2022-04-01', 2681, 67127, 4507, NULL, '21.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70670, '2022-04-01', 1425, 67128, 4507, NULL, '1.0000', '6.4405', '6.4405', '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 (70671, '2022-04-01', 2332, 67129, 4507, 3835, '-7.0000', '5.8900', '5.8900', '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 (70672, '2022-04-01', 2332, 67129, 4507, NULL, '8.0000', '5.8900', '5.8900', '9.0000', '9.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 (70673, '2022-04-01', 1687, 67130, 4507, 5785, '-25.0000', '165.9024', '165.9024', '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 (70674, '2022-04-01', 1687, 67130, 4507, NULL, '26.0000', '165.9024', '165.9024', '17.5000', '17.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 (70675, '2022-04-01', 1672, 67131, 4507, 7384, '-85.0000', '2.8700', '2.8700', '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 (70676, '2022-04-01', 1672, 67131, 4507, NULL, '95.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70677, '2022-04-01', 1550, 67132, 4507, NULL, '1.0000', '13.9000', '13.9000', '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 (70678, '2022-04-01', 2105, 67133, 4507, NULL, '1.0000', '1.3500', '1.3500', '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 (70679, '2022-04-01', 2317, 67134, 4507, 3473, '-11.0000', '15.0000', '15.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 (70680, '2022-04-01', 2317, 67134, 4507, NULL, '12.0000', '15.0000', '15.0000', '18.0000', '18.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 (70681, '2022-04-01', 2169, 67135, 4507, 10737, '-97.0000', '3.8397', '3.8397', '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 (70682, '2022-04-01', 2169, 67135, 4507, NULL, '98.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70683, '2022-04-01', 3017, 67136, 4507, NULL, '1.0000', '3.9000', '3.9000', '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 (70684, '2022-04-01', 7496, 67137, 4507, NULL, '1.0000', '0.9600', '0.9600', '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 (70685, '2022-04-01', 1646, 67138, 4507, 3239, '-16.0000', '4.5300', '4.5300', '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 (70686, '2022-04-01', 1646, 67138, 4507, NULL, '17.0000', '4.5300', '4.5300', '8.0000', '8.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 (70687, '2022-04-01', 1771, 67139, 4507, NULL, '1.0000', '5.2450', '5.2450', '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 (70688, '2022-04-02', 2315, 67140, 4508, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '33.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70689, '2022-04-02', 2411, 67141, 4508, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70690, '2022-04-02', 1912, 67142, 4508, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70691, '2022-04-02', 9649, 67143, 4508, NULL, '1.0000', '14.4100', '14.4100', '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 (70692, '2022-04-02', 9813, 67144, 4508, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70693, '2022-04-02', 2083, 67145, 4508, 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 (70694, '2022-04-02', 9832, 67146, 4508, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70695, '2022-04-02', 9794, 67147, 4508, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70696, '2022-04-02', 1999, 67148, 4508, 51936, '1.0000', '6.6486', '6.6486', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70697, '2022-04-02', 8844, 67149, 4508, 52199, '1.0000', '4.7829', '4.7829', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70698, '2022-04-02', 2891, 67150, 4508, 52213, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70699, '2022-04-02', 8068, 67151, 4508, NULL, '1.0000', '8.7900', '8.7900', '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 (70700, '2022-04-02', 1841, 67152, 4508, NULL, '2.0000', '0.2601', '0.2601', '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 (70701, '2022-04-02', 1888, 67153, 4508, 53211, '1.0000', '16.5348', '16.5348', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70702, '2022-04-02', 2299, 67154, 4508, 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 (70703, '2022-04-02', 7712, 67155, 4508, 48614, '1.0000', '26.0000', '26.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70704, '2022-04-02', 2242, 67156, 4508, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70705, '2022-04-02', 2416, 67157, 4508, 53460, '1.0000', '1.2174', '1.2174', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70706, '2022-04-02', 1307, 67158, 4508, NULL, '1.0000', '-0.0521', '-0.0521', '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 (70707, '2022-04-02', 7772, 67159, 4509, NULL, '1.0000', '34.6500', '34.6500', '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 (70708, '2022-04-02', 7772, 67160, 4510, NULL, '1.0000', '34.6500', '34.6500', '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 (70709, '2022-04-02', 7532, 67161, 4510, 51356, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70710, '2022-04-02', 1647, 67162, 4510, NULL, '1.0000', '1.8900', '1.8900', '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 (70711, '2022-04-02', 8740, 67163, 4511, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70712, '2022-04-02', 2221, 67164, 4511, 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 (70713, '2022-04-02', 8775, 67165, 4511, 53445, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70714, '2022-04-02', 8133, 67166, 4512, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (70715, '2022-04-02', 2916, 67167, 4512, NULL, '1.0000', '8.2115', '8.2115', '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 (70716, '2022-04-02', 9821, 67168, 4512, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70717, '2022-04-02', 9698, 67169, 4512, 52196, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70718, '2022-04-02', 8746, 67170, 4512, 53448, '1.0000', '2.8848', '2.8848', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70719, '2022-04-02', 9832, 67171, 4512, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70720, '2022-04-02', 1571, 67172, 4512, 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 (70721, '2022-04-02', 1534, 67173, 4512, NULL, '2.0000', '9.8500', '9.8500', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70722, '2022-04-02', 1602, 67174, 4513, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70723, '2022-04-02', 1602, 67175, 4514, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70724, '2022-04-02', 9598, 67176, 4514, 51686, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70725, '2022-04-02', 7584, 67177, 4514, 52200, '1.0000', '1.7933', '1.7933', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70726, '2022-04-02', 3044, 67178, 4515, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '28.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 (70727, '2022-04-02', 1498, 67179, 4516, 19685, '-34.0000', '0.3300', '0.3300', '0.6000', '0.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 (70728, '2022-04-02', 1498, 67179, 4516, NULL, '36.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (70729, '2022-04-02', 1520, 67180, 4516, 33822, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70730, '2022-04-02', 9735, 67181, 4516, 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 (70731, '2022-04-02', 1638, 67182, 4516, 22271, '8.0000', '10.8843', '10.8843', '8.5000', '8.5000', '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 (70732, '2022-04-02', 2381, 67183, 4516, 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 (70733, '2022-04-02', 2381, 67183, 4516, NULL, '3.0000', '12.1900', '12.1900', '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 (70734, '2022-04-02', 8079, 67184, 4516, NULL, '1.0000', '14.3600', '14.3600', '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 (70735, '2022-04-02', 2085, 67185, 4516, 8628, '-21.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 (70736, '2022-04-02', 2085, 67185, 4516, NULL, '26.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '-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 (70737, '2022-04-02', 2344, 67186, 4516, 3847, '-3.0000', '18.2000', '18.2000', '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 (70738, '2022-04-02', 2344, 67186, 4516, NULL, '4.0000', '18.2000', '18.2000', '27.0000', '27.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 (70739, '2022-04-02', 1306, 67187, 4516, 1013, '2.0000', '22.5969', '22.5969', '3.0000', '3.0000', '6.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 (70740, '2022-04-02', 1388, 67188, 4516, 20697, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (70741, '2022-04-02', 7411, 67189, 4516, NULL, '2.0000', '1.3500', '1.3500', '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 (70742, '2022-04-02', 1912, 67190, 4516, 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 (70743, '2022-04-02', 1837, 67191, 4516, 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 (70744, '2022-04-02', 7915, 67192, 4516, NULL, '1.0000', '2.8000', '2.8000', '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 (70745, '2022-04-02', 9551, 67193, 4516, 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 (70746, '2022-04-02', 7832, 67194, 4517, 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 (70747, '2022-04-02', 1818, 67195, 4517, 51648, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70748, '2022-04-02', 9727, 67196, 4517, 53234, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70749, '2022-04-02', 8017, 67197, 4517, NULL, '5.0000', '0.6000', '0.6000', '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 (70750, '2022-04-02', 9750, 67198, 4517, NULL, '1.0000', '3.3000', '3.3000', '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 (70751, '2022-04-02', 7672, 67199, 4517, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70752, '2022-04-02', 9831, 67200, 4517, 53443, '2.0000', '1.5600', '1.5600', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70753, '2022-04-02', 9579, 67201, 4517, 49672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70754, '2022-04-02', 2287, 67202, 4517, 48629, '4.0000', '1.8730', '1.8730', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70755, '2022-04-02', 1837, 67203, 4517, NULL, '2.0000', '2.5335', '2.5335', '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 (70756, '2022-04-02', 7609, 67204, 4517, NULL, '1.0000', '4.3300', '4.3300', '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 (70757, '2022-04-02', 2088, 67205, 4517, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70758, '2022-04-02', 9868, 67206, 4517, 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 (70759, '2022-04-02', 2315, 67207, 4517, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '32.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70760, '2022-04-02', 8308, 67208, 4517, NULL, '1.0000', '11.0000', '11.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 (70761, '2022-04-02', 8362, 67209, 4517, NULL, '1.0000', '4.1000', '4.1000', '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 (70762, '2022-04-02', 7459, 67210, 4517, NULL, '1.0000', '-6.1729', '-6.1729', '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 (70763, '2022-04-02', 2263, 67211, 4517, 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 (70764, '2022-04-02', 2228, 67212, 4517, 53424, '1.0000', '28.6724', '28.6724', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70765, '2022-04-02', 1658, 67213, 4517, 13721, '1.0000', '45.3715', '45.3715', '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 (70766, '2022-04-02', 1371, 67214, 4517, NULL, '1.0000', '180.8891', '180.8891', '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 (70767, '2022-04-02', 9747, 67215, 4517, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70768, '2022-04-02', 2286, 67216, 4517, 53205, '2.0000', '4.4278', '4.4278', '6.0000', '6.0000', '36.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70769, '2022-04-02', 9794, 67217, 4517, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70770, '2022-04-02', 3017, 67218, 4517, 52212, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70771, '2022-04-02', 1715, 67219, 4517, 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 (70772, '2022-04-02', 7593, 67220, 4517, NULL, '1.0000', '0.8000', '0.8000', '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 (70773, '2022-04-02', 1339, 67221, 4517, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70774, '2022-04-02', 1905, 67222, 4517, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70775, '2022-04-02', 8706, 67223, 4517, 49256, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70776, '2022-04-02', 7802, 67224, 4517, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70777, '2022-04-02', 8677, 67225, 4517, NULL, '2.0000', '292.4641', '292.4641', '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 (70778, '2022-04-02', 1510, 67226, 4517, NULL, '1.0000', '12.9810', '12.9810', '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 (70779, '2022-04-02', 7715, 67227, 4517, NULL, '1.0000', '1.8900', '1.8900', '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 (70780, '2022-04-02', 2669, 67228, 4517, 34664, '1.0000', '24.3367', '24.3367', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70781, '2022-04-02', 2244, 67229, 4517, 51304, '1.0000', '6.8500', '6.8500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70782, '2022-04-02', 7593, 67230, 4517, NULL, '1.0000', '0.8000', '0.8000', '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 (70783, '2022-04-02', 1905, 67231, 4517, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70784, '2022-04-02', 2237, 67232, 4517, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70785, '2022-04-02', 9747, 67233, 4517, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70786, '2022-04-02', 1574, 67234, 4517, NULL, '1.0000', '1.7000', '1.7000', '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 (70787, '2022-04-02', 8207, 67235, 4517, NULL, '1.0000', '0.0000', '0.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 (70788, '2022-04-02', 1812, 67236, 4517, 52345, '1.0000', '7.8025', '7.8025', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70789, '2022-04-02', 9732, 67237, 4517, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70790, '2022-04-02', 2992, 67238, 4517, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70791, '2022-04-02', 2237, 67239, 4517, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70792, '2022-04-02', 2315, 67240, 4517, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '32.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70793, '2022-04-02', 9740, 67241, 4517, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70794, '2022-04-02', 1557, 67242, 4517, 51512, '1.0000', '8.1969', '8.1969', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70795, '2022-04-02', 7802, 67243, 4517, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70796, '2022-04-02', 9750, 67244, 4517, NULL, '1.0000', '3.3000', '3.3000', '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 (70797, '2022-04-02', 2906, 67245, 4517, NULL, '1.0000', '2.6000', '2.6000', '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 (70798, '2022-04-02', 2293, 67246, 4517, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70799, '2022-04-02', 7715, 67247, 4517, NULL, '1.0000', '1.8900', '1.8900', '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 (70800, '2022-04-02', 1806, 67248, 4517, 51376, '1.0000', '29.2252', '29.2252', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70801, '2022-04-02', 1987, 67249, 4517, 49605, '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 (70802, '2022-04-02', 1618, 67250, 4517, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70803, '2022-04-02', 8485, 67251, 4517, NULL, '1.0000', '7.0400', '7.0400', '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 (70804, '2022-04-02', 1543, 67252, 4517, NULL, '1.0000', '26.1267', '26.1267', '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 (70805, '2022-04-02', 7639, 67253, 4517, 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 (70806, '2022-04-02', 1675, 67254, 4517, NULL, '1.0000', '20.7021', '20.7021', '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 (70807, '2022-04-02', 1574, 67255, 4517, NULL, '10.0000', '1.7000', '1.7000', '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 (70808, '2022-04-02', 2992, 67256, 4517, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70809, '2022-04-02', 9831, 67257, 4517, 53443, '3.0000', '1.5600', '1.5600', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70810, '2022-04-02', 2169, 67258, 4517, 51695, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70811, '2022-04-02', 9337, 67259, 4517, NULL, '3.0000', '5.7200', '5.7200', '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 (70812, '2022-04-02', 2109, 67260, 4517, 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 (70813, '2022-04-02', 2660, 67261, 4517, 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 (70814, '2022-04-02', 1425, 67262, 4517, 52344, '1.0000', '5.1721', '5.1721', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70815, '2022-04-02', 9695, 67263, 4517, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70816, '2022-04-02', 8087, 67264, 4517, NULL, '1.0000', '14.6000', '14.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 (70817, '2022-04-02', 2038, 67265, 4517, 53416, '1.0000', '15.9774', '15.9774', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70818, '2022-04-02', 7641, 67266, 4517, NULL, '1.0000', '1.9000', '1.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 (70819, '2022-04-02', 1602, 67267, 4518, 52167, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70820, '2022-04-02', 1699, 67268, 4518, NULL, '1.0000', '3.2000', '3.2000', '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 (70821, '2022-04-02', 1841, 67269, 4518, NULL, '2.0000', '0.2601', '0.2601', '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 (70822, '2022-04-02', 7544, 67270, 4518, 49872, '2.0000', '-2.5801', '-2.5801', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70823, '2022-04-02', 8622, 67271, 4518, NULL, '1.0000', '1.4818', '1.4818', '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 (70824, '2022-04-02', 1912, 67272, 4518, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70825, '2022-04-02', 9750, 67273, 4518, NULL, '1.0000', '3.3000', '3.3000', '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 (70826, '2022-04-02', 2315, 67274, 4518, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '29.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70827, '2022-04-02', 7642, 67275, 4518, NULL, '1.0000', '2.6900', '2.6900', '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 (70828, '2022-04-02', 2821, 67276, 4518, 53207, '1.0000', '3.2804', '3.2804', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70829, '2022-04-02', 2061, 67277, 4519, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70830, '2022-04-02', 9272, 67278, 4519, NULL, '2.0000', '3.1000', '3.1000', '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 (70831, '2022-04-02', 2490, 67279, 4519, NULL, '1.0000', '8.6300', '8.6300', '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 (70832, '2022-04-02', 8288, 67280, 4519, NULL, '8.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (70833, '2022-04-02', 2289, 67281, 4519, NULL, '4.0000', '2.5688', '2.5688', '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 (70834, '2022-04-02', 8452, 67282, 4519, NULL, '1.0000', '4.9078', '4.9078', '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 (70835, '2022-04-02', 8161, 67283, 4519, NULL, '1.0000', '25.3581', '25.3581', '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 (70836, '2022-04-02', 7588, 67284, 4519, NULL, '1.0000', '6.2420', '6.2420', '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 (70837, '2022-04-02', 8607, 67285, 4519, 52532, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70838, '2022-04-02', 8728, 67286, 4519, NULL, '2.0000', '25.3000', '25.3000', '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 (70839, '2022-04-02', 9740, 67287, 4519, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70840, '2022-04-02', 9098, 67288, 4519, NULL, '1.0000', '16.3536', '16.3536', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70841, '2022-04-02', 7958, 67289, 4519, NULL, '1.0000', '8.5211', '8.5211', '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 (70842, '2022-04-02', 2315, 67290, 4519, NULL, '1.0000', '0.8863', '0.8863', '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 (70843, '2022-04-02', 7886, 67291, 4519, NULL, '1.0000', '6.7841', '6.7841', '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 (70844, '2022-04-02', 8940, 67292, 4519, NULL, '6.0000', '4.9900', '4.9900', '11.0000', '11.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 (70845, '2022-04-02', 7657, 67293, 4519, NULL, '1.0000', '-70.3566', '-70.3566', '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 (70846, '2022-04-02', 8085, 67294, 4519, 49815, '2.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70847, '2022-04-02', 7704, 67295, 4519, NULL, '1.0000', '-1.5625', '-1.5625', '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 (70848, '2022-04-02', 7411, 67296, 4519, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70849, '2022-04-02', 9729, 67297, 4519, 46181, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70850, '2022-04-02', 8308, 67298, 4519, NULL, '1.0000', '25.0620', '25.0620', '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 (70851, '2022-04-02', 8352, 67299, 4519, NULL, '1.0000', '-153.7209', '-153.7209', '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 (70852, '2022-04-02', 8415, 67300, 4519, 52529, '1.0000', '4.0717', '4.0717', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70853, '2022-04-02', 8730, 67301, 4519, NULL, '1.0000', '29.0000', '29.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 (70854, '2022-04-02', 8366, 67302, 4519, NULL, '1.0000', '5.0000', '5.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 (70855, '2022-04-02', 9715, 67303, 4519, 52748, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70856, '2022-04-02', 7411, 67304, 4519, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70857, '2022-04-02', 8444, 67305, 4519, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70858, '2022-04-02', 7428, 67306, 4519, 51281, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70859, '2022-04-02', 2242, 67307, 4519, 50663, '3.0000', '0.5833', '0.5833', '1.0000', '1.0000', '141.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70860, '2022-04-02', 8698, 67308, 4519, NULL, '1.0000', '2.0000', '2.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 (70861, '2022-04-02', 9448, 67309, 4519, 44049, '1.0000', '7.5200', '7.5200', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70862, '2022-04-02', 8539, 67310, 4519, 46695, '1.0000', '2.6082', '2.6082', '0.8000', '0.8000', '27.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70863, '2022-04-02', 7993, 67311, 4519, 52462, '1.0000', '38.7333', '38.7333', '51.5000', '51.5000', '1.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70864, '2022-04-02', 9740, 67312, 4519, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70865, '2022-04-02', 7641, 67313, 4519, NULL, '1.0000', '95.0035', '95.0035', '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 (70866, '2022-04-02', 8061, 67314, 4519, 52528, '1.0000', '-38.4000', '-38.4000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70867, '2022-04-02', 8415, 67315, 4519, 52529, '1.0000', '4.0717', '4.0717', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70868, '2022-04-02', 1690, 67316, 4519, 48069, '1.0000', '-11.0625', '-11.0625', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70869, '2022-04-02', 9092, 67317, 4519, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '190.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70870, '2022-04-02', 7411, 67318, 4519, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70871, '2022-04-02', 1935, 67319, 4519, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '145.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70872, '2022-04-02', 7672, 67320, 4519, NULL, '1.0000', '3.8200', '3.8200', '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 (70873, '2022-04-02', 8607, 67321, 4519, 52532, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70874, '2022-04-02', 7456, 67322, 4519, NULL, '1.0000', '25.0000', '25.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 (70875, '2022-04-02', 7509, 67323, 4519, 53376, '1.0000', '12.9460', '12.9460', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70876, '2022-04-02', 2506, 67324, 4519, 51059, '1.0000', '3.8633', '3.8633', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70877, '2022-04-02', 1698, 67325, 4519, 33729, '1.0000', '8.4500', '8.4500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70878, '2022-04-02', 1339, 67326, 4519, NULL, '1.0000', '1.6199', '1.6199', '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 (70879, '2022-04-02', 9399, 67327, 4519, NULL, '2.0000', '0.9794', '0.9794', '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 (70880, '2022-04-02', 2289, 67328, 4519, NULL, '2.0000', '2.5688', '2.5688', '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 (70881, '2022-04-02', 2036, 67329, 4520, 4277, '-11.0000', '8.0000', '8.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 (70882, '2022-04-02', 2036, 67329, 4520, NULL, '12.0000', '8.0000', '8.0000', '10.0000', '10.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 (70883, '2022-04-02', 1646, 67330, 4520, 3239, '-17.0000', '4.5300', '4.5300', '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 (70884, '2022-04-02', 1646, 67330, 4520, NULL, '18.0000', '4.5300', '4.5300', '8.0000', '8.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 (70885, '2022-04-02', 2643, 67331, 4520, NULL, '1.0000', '0.8700', '0.8700', '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 (70886, '2022-04-02', 2169, 67332, 4520, 10737, '-98.0000', '3.8397', '3.8397', '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 (70887, '2022-04-02', 2169, 67332, 4520, NULL, '99.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70888, '2022-04-02', 2169, 67333, 4521, 10737, '-99.0000', '3.8397', '3.8397', '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 (70889, '2022-04-02', 2169, 67333, 4521, NULL, '101.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70890, '2022-04-02', 2289, 67334, 4521, 2949, '-93.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 (70891, '2022-04-02', 2289, 67334, 4521, NULL, '95.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70892, '2022-04-02', 9634, 67335, 4521, NULL, '3.0000', '4.8000', '4.8000', '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 (70893, '2022-04-02', 2167, 67336, 4521, 17165, '-42.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 (70894, '2022-04-02', 2167, 67336, 4521, NULL, '43.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (70895, '2022-04-02', 2497, 67337, 4521, 5652, '1.0000', '34.4493', '34.4493', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 89);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70896, '2022-04-02', 8079, 67338, 4521, NULL, '1.0000', '14.3600', '14.3600', '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 (70897, '2022-04-02', 9868, 67339, 4521, 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 (70898, '2022-04-02', 9741, 67340, 4521, NULL, '1.0000', '7.6000', '7.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 (70899, '2022-04-02', 2020, 67341, 4521, 10164, '-17.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 (70900, '2022-04-02', 2020, 67341, 4521, NULL, '18.0000', '7.5000', '7.5000', '10.0000', '10.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 (70901, '2022-04-02', 2541, 67342, 4521, 33788, '1.0000', '10.7054', '10.7054', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70902, '2022-04-02', 3058, 67343, 4521, 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 (70903, '2022-04-02', 9732, 67344, 4521, 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 (70904, '2022-04-02', 2315, 67345, 4521, 2735, '-236.0000', '0.3300', '0.3300', '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 (70905, '2022-04-02', 2315, 67345, 4521, NULL, '237.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-237.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70906, '2022-04-02', 2315, 67346, 4521, 2735, '-236.0000', '0.3300', '0.3300', '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 (70907, '2022-04-02', 2315, 67346, 4521, NULL, '237.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-237.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70908, '2022-04-02', 2315, 67347, 4521, 2735, '-236.0000', '0.3300', '0.3300', '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 (70909, '2022-04-02', 2315, 67347, 4521, NULL, '237.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-237.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70910, '2022-04-02', 9872, 67348, 4522, NULL, '1.0000', '14.6300', '14.6300', '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 (70911, '2022-04-02', 9716, 67349, 4522, NULL, '1.0000', '4.4000', '4.4000', '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 (70912, '2022-04-02', 2105, 67350, 4522, NULL, '2.0000', '1.3500', '1.3500', '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 (70913, '2022-04-02', 1620, 67351, 4522, 8955, '-22.0000', '408.8259', '408.8259', '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 (70914, '2022-04-02', 1620, 67351, 4522, NULL, '23.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-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 (70915, '2022-04-02', 8170, 67352, 4522, 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 (70916, '2022-04-02', 1910, 67353, 4523, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '32.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 (70917, '2022-04-02', 1602, 67354, 4524, 5897, '-125.0000', '6.7859', '6.7859', '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 (70918, '2022-04-02', 1602, 67354, 4524, NULL, '126.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70919, '2022-04-02', 1410, 67355, 4525, NULL, '1.0000', '2.2000', '2.2000', '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 (70920, '2022-04-02', 1665, 67356, 4525, 3235, '-91.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 (70921, '2022-04-02', 1665, 67356, 4525, NULL, '92.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70922, '2022-04-02', 9794, 67357, 4525, NULL, '1.0000', '1.0800', '1.0800', '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 (70923, '2022-04-02', 1687, 67358, 4526, 5785, '-26.0000', '165.9024', '165.9024', '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 (70924, '2022-04-02', 1687, 67358, 4526, NULL, '27.0000', '165.9024', '165.9024', '17.5000', '17.5000', '-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 (70925, '2022-04-02', 9794, 67359, 4527, NULL, '1.0000', '1.0800', '1.0800', '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 (70926, '2022-04-02', 8740, 67360, 4528, NULL, '1.0000', '2.0000', '2.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 (70927, '2022-04-02', 1855, 67361, 4528, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '11.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 (70928, '2022-04-02', 1585, 67362, 4528, 7602, '-13.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 (70929, '2022-04-02', 1585, 67362, 4528, NULL, '14.0000', '13.0000', '13.0000', '17.5000', '17.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 (70930, '2022-04-02', 9724, 67363, 4529, 51814, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70931, '2022-04-02', 7354, 67364, 4529, NULL, '1.0000', '-2.5000', '-2.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 (70932, '2022-04-02', 8360, 67365, 4529, 52734, '1.0000', '3.2261', '3.2261', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70933, '2022-04-02', 2749, 67366, 4529, 48040, '1.0000', '27.0000', '27.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70934, '2022-04-02', 7666, 67367, 4529, NULL, '1.0000', '3.6004', '3.6004', '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 (70935, '2022-04-02', 1935, 67368, 4529, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '144.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70936, '2022-04-02', 2169, 67369, 4530, 10737, '-101.0000', '3.8397', '3.8397', '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 (70937, '2022-04-02', 2169, 67369, 4530, NULL, '102.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-102.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70938, '2022-04-02', 8740, 67370, 4530, NULL, '1.0000', '2.0000', '2.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 (70939, '2022-04-02', 1450, 67371, 4530, 927, '2.0000', '61.1074', '61.1074', '1.2000', '1.2000', '3.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70940, '2022-04-03', 1809, 67372, 4531, 48680, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70941, '2022-04-03', 9821, 67373, 4531, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70942, '2022-04-03', 1339, 67374, 4531, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70943, '2022-04-03', 9109, 67375, 4531, 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 (70944, '2022-04-03', 8740, 67376, 4531, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70945, '2022-04-03', 7514, 67377, 4531, NULL, '1.0000', '2.2500', '2.2500', '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 (70946, '2022-04-03', 8207, 67378, 4531, NULL, '1.0000', '0.0000', '0.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 (70947, '2022-04-03', 9747, 67379, 4531, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70948, '2022-04-03', 7328, 67380, 4531, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70949, '2022-04-03', 1840, 67381, 4531, NULL, '2.0000', '0.2400', '0.2400', '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 (70950, '2022-04-03', 8208, 67382, 4531, NULL, '2.0000', '33.0000', '33.0000', '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 (70951, '2022-04-03', 1497, 67383, 4531, 51502, '1.0000', '11.4446', '11.4446', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70952, '2022-04-03', 8657, 67384, 4531, NULL, '1.0000', '7.5200', '7.5200', '10.3000', '10.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 (70953, '2022-04-03', 1762, 67385, 4531, 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 (70954, '2022-04-03', 2320, 67386, 4531, 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 (70955, '2022-04-03', 7514, 67387, 4531, NULL, '1.0000', '2.2500', '2.2500', '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 (70956, '2022-04-03', 9735, 67388, 4531, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70957, '2022-04-03', 9819, 67389, 4532, 52216, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70958, '2022-04-03', 7324, 67390, 4533, 51663, '2.0000', '5.4813', '5.4813', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70959, '2022-04-03', 1665, 67391, 4534, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70960, '2022-04-03', 9794, 67392, 4534, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70961, '2022-04-03', 7514, 67393, 4534, NULL, '1.0000', '2.2500', '2.2500', '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 (70962, '2022-04-03', 7907, 67394, 4534, NULL, '2.0000', '12.0000', '12.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 (70963, '2022-04-03', 8017, 67395, 4534, NULL, '2.0000', '0.6000', '0.6000', '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 (70964, '2022-04-03', 8207, 67396, 4535, NULL, '1.0000', '0.0000', '0.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 (70965, '2022-04-03', 7482, 67397, 4535, 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 (70966, '2022-04-03', 9084, 67398, 4535, NULL, '1.0000', '8.5000', '8.5000', '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 (70967, '2022-04-03', 9578, 67399, 4535, NULL, '1.0000', '8.0000', '8.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 (70968, '2022-04-03', 8101, 67400, 4535, NULL, '2.0000', '-0.2222', '-0.2222', '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 (70969, '2022-04-03', 2287, 67401, 4535, NULL, '4.0000', '2.3000', '2.3000', '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 (70970, '2022-04-03', 7980, 67402, 4535, NULL, '5.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (70971, '2022-04-03', 9245, 67403, 4535, 51789, '1.0000', '6.4758', '6.4758', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70972, '2022-04-03', 7674, 67404, 4535, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '108.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70973, '2022-04-03', 2070, 67405, 4535, NULL, '1.0000', '2.3000', '2.3000', '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 (70974, '2022-04-03', 8200, 67406, 4535, NULL, '1.0000', '6.2600', '6.2600', '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 (70975, '2022-04-03', 7459, 67407, 4535, 53375, '11.0000', '2.3301', '2.3301', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70976, '2022-04-03', 7459, 67407, 4535, NULL, '9.0000', '2.3301', '2.3301', '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 (70977, '2022-04-03', 7709, 67408, 4535, NULL, '2.0000', '154.5165', '154.5165', '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 (70978, '2022-04-03', 9393, 67409, 4535, 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 (70979, '2022-04-03', 9872, 67410, 4535, 52759, '1.0000', '14.6300', '14.6300', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70980, '2022-04-03', 7411, 67411, 4535, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70981, '2022-04-03', 8061, 67412, 4535, 52528, '1.0000', '-38.4000', '-38.4000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70982, '2022-04-03', 1947, 67413, 4535, 43077, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70983, '2022-04-03', 1339, 67414, 4535, NULL, '1.0000', '1.6199', '1.6199', '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 (70984, '2022-04-03', 7590, 67415, 4535, NULL, '1.0000', '4.3600', '4.3600', '2.4300', '2.4300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70985, '2022-04-03', 7473, 67416, 4535, 51825, '3.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70986, '2022-04-03', 2315, 67417, 4535, NULL, '2.0000', '0.8863', '0.8863', '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 (70987, '2022-04-03', 7658, 67418, 4535, 52446, '3.0000', '341.6222', '341.6222', '2.8000', '2.8000', '61.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70988, '2022-04-03', 7980, 67419, 4535, NULL, '5.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (70989, '2022-04-03', 7412, 67420, 4535, NULL, '1.0000', '1.5200', '1.5200', '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 (70990, '2022-04-03', 7981, 67421, 4535, 52736, '10.0000', '3.3321', '3.3321', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70991, '2022-04-03', 8918, 67422, 4535, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70992, '2022-04-03', 7514, 67423, 4535, NULL, '1.0000', '932.5375', '932.5375', '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 (70993, '2022-04-03', 9245, 67424, 4535, 51789, '1.0000', '6.4758', '6.4758', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70994, '2022-04-03', 8033, 67425, 4535, NULL, '1.0000', '27.7000', '27.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 (70995, '2022-04-03', 7612, 67426, 4535, 50635, '2.0000', '2.3846', '2.3846', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70996, '2022-04-03', 7666, 67427, 4535, NULL, '1.0000', '3.6004', '3.6004', '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 (70997, '2022-04-03', 9730, 67428, 4535, 46182, '1.0000', '18.2000', '18.2000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70998, '2022-04-03', 7781, 67429, 4535, NULL, '3.0000', '4.2500', '4.2500', '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 (70999, '2022-04-03', 2169, 67430, 4536, 51695, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71000, '2022-04-03', 7514, 67431, 4536, NULL, '2.0000', '2.2500', '2.2500', '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 (71001, '2022-04-03', 2916, 67432, 4536, NULL, '1.0000', '8.2115', '8.2115', '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 (71002, '2022-04-03', 1425, 67433, 4536, 52344, '1.0000', '5.1721', '5.1721', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71003, '2022-04-03', 1856, 67434, 4536, NULL, '1.0000', '4.9999', '4.9999', '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 (71004, '2022-04-03', 8775, 67435, 4536, 53445, '4.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71005, '2022-04-03', 9579, 67436, 4536, 49672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71006, '2022-04-03', 9579, 67436, 4536, 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 (71007, '2022-04-03', 2454, 67437, 4536, 51387, '1.0000', '9.0840', '9.0840', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71008, '2022-04-03', 1888, 67438, 4536, 53211, '1.0000', '16.5348', '16.5348', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71009, '2022-04-03', 8535, 67439, 4536, NULL, '2.0000', '32.5000', '32.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 (71010, '2022-04-03', 1651, 67440, 4536, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71011, '2022-04-03', 2379, 67441, 4537, NULL, '1.0000', '0.2954', '0.2954', '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 (71012, '2022-04-03', 7333, 67442, 4537, NULL, '1.0000', '13.5000', '13.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 (71013, '2022-04-03', 1912, 67443, 4537, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71014, '2022-04-03', 8740, 67444, 4537, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71015, '2022-04-03', 2228, 67445, 4537, 53424, '1.0000', '28.6724', '28.6724', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71016, '2022-04-03', 2342, 67446, 4537, 52181, '10.0000', '1.9641', '1.9641', '2.7000', '2.7000', '30.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71017, '2022-04-03', 2757, 67447, 4537, 34621, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71018, '2022-04-03', 1969, 67448, 4537, NULL, '1.0000', '4.3300', '4.3300', '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 (71019, '2022-04-03', 9856, 67449, 4537, 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 (71020, '2022-04-03', 1574, 67450, 4537, NULL, '1.0000', '1.7000', '1.7000', '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 (71021, '2022-04-03', 2740, 67451, 4537, 53214, '1.0000', '9.8871', '9.8871', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71022, '2022-04-03', 9737, 67452, 4537, 53209, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71023, '2022-04-03', 1912, 67453, 4537, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71024, '2022-04-03', 7713, 67454, 4537, 48657, '2.0000', '24.6545', '24.6545', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71025, '2022-04-03', 8979, 67455, 4537, 51990, '2.0000', '1.0000', '1.0000', '1.2000', '1.2000', '36.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71026, '2022-04-03', 9482, 67456, 4537, NULL, '2.0000', '0.5000', '0.5000', '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 (71027, '2022-04-03', 1580, 67457, 4537, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71028, '2022-04-03', 1715, 67458, 4537, 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 (71029, '2022-04-03', 1809, 67459, 4537, 48680, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71030, '2022-04-03', 9819, 67460, 4538, 52216, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71031, '2022-04-03', 7802, 67461, 4538, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71032, '2022-04-03', 2893, 67462, 4538, NULL, '1.0000', '6.4400', '6.4400', '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 (71033, '2022-04-03', 2109, 67463, 4538, 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 (71034, '2022-04-03', 9463, 67464, 4538, NULL, '1.0000', '18.9000', '18.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 (71035, '2022-04-03', 1446, 67465, 4538, NULL, '1.0000', '4.8156', '4.8156', '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 (71036, '2022-04-03', 9831, 67466, 4538, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71037, '2022-04-03', 2753, 67467, 4538, 32534, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71038, '2022-04-03', 7743, 67468, 4538, NULL, '1.0000', '7.3900', '7.3900', '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 (71039, '2022-04-03', 8761, 67469, 4538, NULL, '1.0000', '11.3420', '11.3420', '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 (71040, '2022-04-03', 8065, 67470, 4538, NULL, '1.0000', '32.0000', '32.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 (71041, '2022-04-03', 2283, 67471, 4538, 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 (71042, '2022-04-03', 1702, 67472, 4539, 4499, '-6.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 (71043, '2022-04-03', 1702, 67472, 4539, NULL, '7.0000', '14.9700', '14.9700', '20.0000', '20.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 (71044, '2022-04-03', 2990, 67473, 4539, NULL, '2.0000', '1.1200', '1.1200', '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 (71045, '2022-04-03', 1524, 67474, 4539, NULL, '1.0000', '3.8400', '3.8400', '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 (71046, '2022-04-03', 9794, 67475, 4539, NULL, '2.0000', '1.0800', '1.0800', '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 (71047, '2022-04-03', 1306, 67476, 4539, 1013, '5.0000', '22.5969', '22.5969', '3.0000', '3.0000', '1.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 (71048, '2022-04-03', 1908, 67477, 4539, 5444, '-36.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 (71049, '2022-04-03', 1908, 67477, 4539, NULL, '41.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (71050, '2022-04-03', 9695, 67478, 4539, NULL, '1.0000', '4.5000', '4.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 (71051, '2022-04-03', 1493, 67479, 4539, 9747, '-18.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 (71052, '2022-04-03', 1493, 67479, 4539, NULL, '19.0000', '1.5425', '1.5425', '3.0000', '3.0000', '-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 (71053, '2022-04-03', 9747, 67480, 4539, NULL, '1.0000', '0.6500', '0.6500', '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 (71054, '2022-04-03', 1943, 67481, 4539, 5594, '-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 (71055, '2022-04-03', 1943, 67481, 4539, 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 (71056, '2022-04-03', 1425, 67482, 4539, NULL, '1.0000', '6.4405', '6.4405', '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 (71057, '2022-04-03', 2511, 67483, 4539, 9740, '-13.0000', '8.5000', '8.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 (71058, '2022-04-03', 2511, 67483, 4539, NULL, '14.0000', '8.5000', '8.5000', '12.5000', '12.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 (71059, '2022-04-03', 2237, 67484, 4539, 2781, '-49.0000', '1.0600', '1.0600', '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 (71060, '2022-04-03', 2237, 67484, 4539, NULL, '51.0000', '1.0600', '1.0600', '2.5000', '2.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 (71061, '2022-04-03', 8775, 67485, 4539, NULL, '1.0000', '2.6000', '2.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 (71062, '2022-04-03', 9732, 67486, 4539, 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 (71063, '2022-04-03', 7442, 67487, 4539, 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 (71064, '2022-04-03', 2135, 67488, 4539, 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 (71065, '2022-04-03', 1602, 67489, 4539, 5897, '-126.0000', '6.7859', '6.7859', '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 (71066, '2022-04-03', 1602, 67489, 4539, NULL, '127.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71067, '2022-04-03', 2660, 67490, 4539, 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 (71068, '2022-04-03', 9729, 67491, 4539, NULL, '2.0000', '0.6200', '0.6200', '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 (71069, '2022-04-03', 9783, 67492, 4539, NULL, '1.0000', '17.6000', '17.6000', '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 (71070, '2022-04-03', 8546, 67493, 4539, NULL, '1.0000', '6.6000', '6.6000', '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 (71071, '2022-04-03', 8746, 67494, 4539, 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 (71072, '2022-04-03', 2858, 67495, 4539, 17772, '-59.0000', '1.0000', '1.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 (71073, '2022-04-03', 2858, 67495, 4539, NULL, '60.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71074, '2022-04-03', 7834, 67496, 4540, 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 (71075, '2022-04-03', 8739, 67497, 4540, NULL, '1.0000', '4.3200', '4.3200', '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 (71076, '2022-04-03', 8775, 67498, 4540, 43940, '1.0000', '2.6000', '2.6000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71077, '2022-04-03', 8596, 67499, 4540, NULL, '1.0000', '18.5278', '18.5278', '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 (71078, '2022-04-03', 9734, 67500, 4540, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71079, '2022-04-03', 9092, 67501, 4540, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '187.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71080, '2022-04-03', 7675, 67502, 4540, NULL, '1.0000', '84.8590', '84.8590', '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 (71081, '2022-04-03', 7316, 67503, 4540, 50386, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71082, '2022-04-03', 7622, 67504, 4540, 52448, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71083, '2022-04-03', 7709, 67505, 4540, NULL, '1.0000', '154.5165', '154.5165', '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 (71084, '2022-04-03', 9463, 67506, 4540, NULL, '1.0000', '4.3333', '4.3333', '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 (71085, '2022-04-03', 9655, 67507, 4540, 53396, '1.0000', '38.0000', '38.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71086, '2022-04-03', 7859, 67508, 4540, 51783, '1.0000', '12.6500', '12.6500', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71087, '2022-04-03', 3082, 67509, 4540, 30997, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71088, '2022-04-03', 8359, 67510, 4540, 51816, '1.0000', '1189.4784', '1189.4784', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71089, '2022-04-03', 8753, 67511, 4540, 52752, '1.0000', '3.5625', '3.5625', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71090, '2022-04-03', 1845, 67512, 4540, 47925, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71091, '2022-04-03', 9461, 67513, 4540, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71092, '2022-04-03', 7333, 67514, 4540, NULL, '1.0000', '13.5000', '13.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 (71093, '2022-04-03', 9272, 67515, 4540, NULL, '3.0000', '3.1000', '3.1000', '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 (71094, '2022-04-03', 8596, 67516, 4540, NULL, '2.0000', '18.5278', '18.5278', '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 (71095, '2022-04-03', 8146, 67517, 4540, 37433, '1.0000', '17.3749', '17.3749', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 264);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71096, '2022-04-03', 7674, 67518, 4540, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '107.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71097, '2022-04-03', 2315, 67519, 4540, NULL, '3.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (71098, '2022-04-03', 8344, 67520, 4540, NULL, '2.0000', '18.3800', '18.3800', '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 (71099, '2022-04-03', 9776, 67521, 4540, 50383, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71100, '2022-04-03', 9785, 67522, 4540, 51831, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71101, '2022-04-03', 7852, 67523, 4540, NULL, '1.0000', '-11.4430', '-11.4430', '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 (71102, '2022-04-03', 7777, 67524, 4540, NULL, '1.0000', '9.5000', '9.5000', '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 (71103, '2022-04-03', 8137, 67525, 4540, NULL, '1.0000', '3.0000', '3.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 (71104, '2022-04-03', 9793, 67526, 4540, 50460, '1.0000', '23.5000', '23.5000', '31.0000', '31.0000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71105, '2022-04-03', 7704, 67527, 4540, NULL, '1.0000', '-1.5625', '-1.5625', '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 (71106, '2022-04-03', 8539, 67528, 4540, 46695, '2.0000', '2.6082', '2.6082', '0.8000', '0.8000', '25.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71107, '2022-04-03', 2440, 67529, 4540, 52007, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71108, '2022-04-03', 2948, 67530, 4540, 48290, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71109, '2022-04-03', 7354, 67531, 4540, NULL, '1.0000', '-2.5000', '-2.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 (71110, '2022-04-03', 9817, 67532, 4540, 50715, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71111, '2022-04-03', 8304, 67533, 4540, 50391, '1.0000', '5.9987', '5.9987', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71112, '2022-04-03', 8746, 67534, 4540, 32134, '1.0000', '3.5400', '3.5400', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71113, '2022-04-03', 7658, 67535, 4540, 52446, '7.0000', '341.6222', '341.6222', '2.8000', '2.8000', '54.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71114, '2022-04-03', 8449, 67536, 4540, 51786, '1.0000', '11.9000', '11.9000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71115, '2022-04-03', 9272, 67537, 4540, NULL, '3.0000', '3.1000', '3.1000', '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 (71116, '2022-04-03', 9817, 67538, 4540, 50715, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71117, '2022-04-03', 7518, 67539, 4540, NULL, '1.0000', '9.3495', '9.3495', '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 (71118, '2022-04-03', 9785, 67540, 4540, 51831, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71119, '2022-04-03', 7428, 67541, 4540, 51281, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71120, '2022-04-03', 8020, 67542, 4540, NULL, '1.0000', '21.8250', '21.8250', '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 (71121, '2022-04-03', 8000, 67543, 4541, NULL, '1.0000', '25.8200', '25.8200', '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 (71122, '2022-04-03', 1502, 67544, 4541, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '21.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71123, '2022-04-03', 8133, 67545, 4541, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (71124, '2022-04-03', 8000, 67546, 4542, NULL, '1.0000', '1674.2861', '1674.2861', '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 (71125, '2022-04-03', 7411, 67547, 4542, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71126, '2022-04-03', 7711, 67548, 4542, NULL, '1.0000', '-5144.5722', '-5144.5722', '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 (71127, '2022-04-03', 7518, 67549, 4542, NULL, '2.0000', '9.3495', '9.3495', '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 (71128, '2022-04-03', 9747, 67550, 4542, 50667, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71129, '2022-04-03', 7911, 67551, 4542, NULL, '1.0000', '3.9601', '3.9601', '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 (71130, '2022-04-03', 9329, 67552, 4542, NULL, '1.0000', '40934.1391', '40934.1391', '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 (71131, '2022-04-03', 7609, 67553, 4542, NULL, '1.0000', '67.1301', '67.1301', '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 (71132, '2022-04-03', 1446, 67554, 4542, 46916, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71133, '2022-04-03', 2332, 67555, 4542, 51819, '1.0000', '6.7789', '6.7789', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71134, '2022-04-03', 8951, 67556, 4542, NULL, '1.0000', '9.0000', '9.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 (71135, '2022-04-03', 8000, 67557, 4542, NULL, '5.0000', '1674.2861', '1674.2861', '10.5000', '10.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 (71136, '2022-04-03', 2557, 67558, 4542, 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 (71137, '2022-04-03', 9740, 67559, 4542, 51797, '3.0000', '0.6600', '0.6600', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71138, '2022-04-03', 7514, 67560, 4542, NULL, '1.0000', '932.5375', '932.5375', '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 (71139, '2022-04-03', 8596, 67561, 4542, NULL, '1.0000', '18.5278', '18.5278', '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 (71140, '2022-04-03', 2384, 67562, 4543, 12014, '5.0000', '0.4000', '0.4000', '0.7000', '0.7000', '42.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 (71141, '2022-04-03', 2607, 67563, 4544, 39774, '5.0000', '1.4000', '1.4000', '1.7000', '1.7000', '11.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71142, '2022-04-03', 2821, 67564, 4544, 53207, '1.0000', '3.2804', '3.2804', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71143, '2022-04-03', 2315, 67565, 4544, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '28.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71144, '2022-04-03', 8135, 67566, 4544, 39770, '1.0000', '3.1226', '3.1226', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71145, '2022-04-03', 9463, 67567, 4544, NULL, '1.0000', '18.9000', '18.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 (71146, '2022-04-03', 7491, 67568, 4544, NULL, '1.0000', '4.8000', '4.8000', '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 (71147, '2022-04-03', 2169, 67569, 4544, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71148, '2022-04-03', 2283, 67570, 4544, 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 (71149, '2022-04-03', 1446, 67571, 4544, NULL, '1.0000', '4.8156', '4.8156', '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 (71150, '2022-04-03', 7933, 67572, 4544, 39778, '1.0000', '-0.1222', '-0.1222', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71151, '2022-04-03', 2169, 67573, 4544, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71152, '2022-04-03', 2660, 67574, 4544, 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 (71153, '2022-04-03', 9737, 67575, 4544, 51705, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71154, '2022-04-03', 1574, 67576, 4544, 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 (71155, '2022-04-03', 2821, 67577, 4544, 53207, '1.0000', '3.2804', '3.2804', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71156, '2022-04-03', 2169, 67578, 4544, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71157, '2022-04-03', 9734, 67579, 4544, 52161, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '22.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71158, '2022-04-04', 2643, 67580, 4545, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71159, '2022-04-04', 9590, 67581, 4545, NULL, '1.0000', '-6.6667', '-6.6667', '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 (71160, '2022-04-04', 1339, 67582, 4545, 51940, '2.0000', '2.2232', '2.2232', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71161, '2022-04-04', 1855, 67583, 4545, NULL, '2.0000', '1.5003', '1.5003', '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 (71162, '2022-04-04', 9740, 67584, 4545, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71163, '2022-04-04', 2643, 67585, 4545, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71164, '2022-04-04', 2416, 67586, 4545, 53460, '1.0000', '1.2174', '1.2174', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71165, '2022-04-04', 7743, 67587, 4545, NULL, '1.0000', '7.3900', '7.3900', '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 (71166, '2022-04-04', 9794, 67588, 4545, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71167, '2022-04-04', 8457, 67589, 4545, 45165, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71168, '2022-04-04', 9557, 67590, 4545, 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 (71169, '2022-04-04', 9831, 67591, 4545, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71170, '2022-04-04', 1946, 67592, 4545, NULL, '1.0000', '1.2265', '1.2265', '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 (71171, '2022-04-04', 7330, 67593, 4545, NULL, '1.0000', '3.0500', '3.0500', '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 (71172, '2022-04-04', 1783, 67594, 4546, 52169, '1.0000', '15.0312', '15.0312', '11.0000', '11.0000', '11.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71173, '2022-04-04', 2673, 67595, 4546, 51496, '1.0000', '15.1250', '15.1250', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71174, '2022-04-04', 2358, 67596, 4546, 48916, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71175, '2022-04-04', 1602, 67597, 4547, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '26.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71176, '2022-04-04', 1647, 67598, 4548, 3218, '-12.0000', '4.7200', '4.7200', '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 (71177, '2022-04-04', 1647, 67598, 4548, NULL, '13.0000', '4.7200', '4.7200', '8.0000', '8.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 (71178, '2022-04-04', 2285, 67599, 4548, 2945, '-40.0000', '35.8000', '35.8000', '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 (71179, '2022-04-04', 2285, 67599, 4548, NULL, '41.0000', '35.8000', '35.8000', '49.0000', '49.0000', '-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 (71180, '2022-04-04', 2990, 67600, 4548, NULL, '2.0000', '1.1200', '1.1200', '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 (71181, '2022-04-04', 1620, 67601, 4548, 8955, '-23.0000', '408.8259', '408.8259', '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 (71182, '2022-04-04', 1620, 67601, 4548, NULL, '31.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-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 (71183, '2022-04-04', 9839, 67602, 4548, NULL, '1.0000', '15.0200', '15.0200', '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 (71184, '2022-04-04', 7342, 67603, 4548, NULL, '1.0000', '15.6000', '15.6000', '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 (71185, '2022-04-04', 2990, 67604, 4548, NULL, '1.0000', '1.1200', '1.1200', '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 (71186, '2022-04-04', 2657, 67605, 4548, 11267, '-10.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 (71187, '2022-04-04', 2657, 67605, 4548, NULL, '11.0000', '5.4200', '5.4200', '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 (71188, '2022-04-04', 2660, 67606, 4548, 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 (71189, '2022-04-04', 8744, 67607, 4548, NULL, '1.0000', '3.6600', '3.6600', '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 (71190, '2022-04-04', 2657, 67608, 4548, 11267, '-10.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 (71191, '2022-04-04', 2657, 67608, 4548, NULL, '11.0000', '5.4200', '5.4200', '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 (71192, '2022-04-04', 1780, 67609, 4548, 3867, '-4.0000', '18.7146', '18.7146', '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 (71193, '2022-04-04', 1780, 67609, 4548, NULL, '5.0000', '18.7146', '18.7146', '51.0000', '51.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 (71194, '2022-04-04', 2460, 67610, 4548, 12921, '-7.0000', '32.7700', '32.7700', '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 (71195, '2022-04-04', 2460, 67610, 4548, NULL, '8.0000', '32.7700', '32.7700', '45.0000', '45.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 (71196, '2022-04-04', 9649, 67611, 4548, NULL, '1.0000', '14.4100', '14.4100', '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 (71197, '2022-04-04', 1532, 67612, 4549, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71198, '2022-04-04', 2950, 67613, 4549, 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 (71199, '2022-04-04', 9794, 67614, 4549, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71200, '2022-04-04', 2287, 67615, 4549, 48629, '2.0000', '1.8730', '1.8730', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71201, '2022-04-04', 2105, 67616, 4549, 52224, '2.0000', '2.4500', '2.4500', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71202, '2022-04-04', 1346, 67617, 4549, 24923, '4.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '15.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 (71203, '2022-04-04', 2413, 67618, 4549, NULL, '3.0000', '1.0500', '1.0500', '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 (71204, '2022-04-04', 2221, 67619, 4549, 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 (71205, '2022-04-04', 2503, 67620, 4549, 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 (71206, '2022-04-04', 2237, 67621, 4549, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71207, '2022-04-04', 2491, 67622, 4549, 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 (71208, '2022-04-04', 1580, 67623, 4549, 51316, '2.0000', '1.1598', '1.1598', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71209, '2022-04-04', 2906, 67624, 4549, NULL, '1.0000', '2.6000', '2.6000', '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 (71210, '2022-04-04', 2284, 67625, 4549, 48889, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71211, '2022-04-04', 2681, 67626, 4549, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71212, '2022-04-04', 9794, 67627, 4549, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71213, '2022-04-04', 2242, 67628, 4549, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71214, '2022-04-04', 1425, 67629, 4549, 52344, '1.0000', '5.1721', '5.1721', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71215, '2022-04-04', 1528, 67630, 4549, 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 (71216, '2022-04-04', 2315, 67631, 4549, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '27.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71217, '2022-04-04', 9845, 67632, 4549, NULL, '1.0000', '5.7000', '5.7000', '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 (71218, '2022-04-04', 2379, 67633, 4549, NULL, '1.0000', '0.2954', '0.2954', '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 (71219, '2022-04-04', 2623, 67634, 4549, NULL, '1.0000', '0.6000', '0.6000', '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 (71220, '2022-04-04', 1625, 67635, 4549, 19332, '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 (71221, '2022-04-04', 7518, 67636, 4549, NULL, '1.0000', '7.8200', '7.8200', '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 (71222, '2022-04-04', 1922, 67637, 4549, 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 (71223, '2022-04-04', 9737, 67638, 4549, 51705, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71224, '2022-04-04', 7593, 67639, 4549, NULL, '1.0000', '0.8000', '0.8000', '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 (71225, '2022-04-04', 1651, 67640, 4549, 51646, '2.0000', '8.2255', '8.2255', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71226, '2022-04-04', 1498, 67641, 4550, 19685, '-36.0000', '0.3300', '0.3300', '0.6000', '0.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 (71227, '2022-04-04', 1498, 67641, 4550, NULL, '38.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71228, '2022-04-04', 9808, 67642, 4550, 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 (71229, '2022-04-04', 8077, 67643, 4550, NULL, '1.0000', '3.6000', '3.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 (71230, '2022-04-04', 9872, 67644, 4550, NULL, '1.0000', '14.6300', '14.6300', '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 (71231, '2022-04-04', 7612, 67645, 4550, NULL, '2.0000', '1.7300', '1.7300', '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 (71232, '2022-04-04', 7416, 67646, 4550, NULL, '1.0000', '18.2100', '18.2100', '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 (71233, '2022-04-04', 1544, 67647, 4550, 18644, '-1.0000', '18.2100', '18.2100', '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 (71234, '2022-04-04', 1544, 67647, 4550, NULL, '2.0000', '18.2100', '18.2100', '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 (71235, '2022-04-04', 7491, 67648, 4550, NULL, '1.0000', '5.6000', '5.6000', '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 (71236, '2022-04-04', 7638, 67649, 4550, NULL, '1.0000', '12.0000', '12.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 (71237, '2022-04-04', 7514, 67650, 4550, NULL, '1.0000', '2.2500', '2.2500', '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 (71238, '2022-04-04', 8098, 67651, 4550, NULL, '1.0000', '15.9900', '15.9900', '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 (71239, '2022-04-04', 7864, 67652, 4550, NULL, '2.0000', '19.5100', '19.5100', '26.5000', '26.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 (71240, '2022-04-04', 7741, 67653, 4550, NULL, '1.0000', '1.2000', '1.2000', '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 (71241, '2022-04-04', 8205, 67654, 4550, NULL, '1.0000', '2.9500', '2.9500', '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 (71242, '2022-04-04', 7744, 67655, 4550, 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 (71243, '2022-04-04', 8984, 67656, 4550, NULL, '1.0000', '0.8700', '0.8700', '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 (71244, '2022-04-04', 8000, 67657, 4550, NULL, '1.0000', '6.8400', '6.8400', '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 (71245, '2022-04-04', 7780, 67658, 4550, NULL, '1.0000', '11.6000', '11.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 (71246, '2022-04-04', 7412, 67659, 4550, NULL, '2.0000', '1.5200', '1.5200', '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 (71247, '2022-04-04', 2241, 67660, 4550, 3058, '-7.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 (71248, '2022-04-04', 2241, 67660, 4550, NULL, '8.0000', '6.5900', '6.5900', '9.0000', '9.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 (71249, '2022-04-04', 7666, 67661, 4550, 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 (71250, '2022-04-04', 8918, 67662, 4550, NULL, '1.0000', '1.0400', '1.0400', '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 (71251, '2022-04-04', 2943, 67663, 4550, 19987, '-8.0000', '2.1800', '2.1800', '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 (71252, '2022-04-04', 2943, 67663, 4550, NULL, '9.0000', '2.1800', '2.1800', '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 (71253, '2022-04-04', 7453, 67664, 4550, NULL, '1.0000', '28.5000', '28.5000', '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 (71254, '2022-04-04', 7641, 67665, 4550, NULL, '1.0000', '1.9000', '1.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 (71255, '2022-04-04', 9655, 67666, 4550, NULL, '1.0000', '37.0000', '37.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 (71256, '2022-04-04', 7641, 67667, 4550, NULL, '1.0000', '1.9000', '1.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 (71257, '2022-04-04', 1856, 67668, 4550, NULL, '1.0000', '4.2500', '4.2500', '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 (71258, '2022-04-04', 2242, 67669, 4550, 20608, '9.0000', '0.4800', '0.4800', '1.0000', '1.0000', '22.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 (71259, '2022-04-04', 7779, 67670, 4550, 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 (71260, '2022-04-04', 7707, 67671, 4550, NULL, '1.0000', '7.0000', '7.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 (71261, '2022-04-04', 7533, 67672, 4550, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71262, '2022-04-04', 7658, 67673, 4550, NULL, '2.0000', '2.0200', '2.0200', '2.8000', '2.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 (71263, '2022-04-04', 8200, 67674, 4550, NULL, '1.0000', '6.2600', '6.2600', '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 (71264, '2022-04-04', 7490, 67675, 4550, NULL, '20.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-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 (71265, '2022-04-04', 1941, 67676, 4550, 5592, '-3.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 (71266, '2022-04-04', 1941, 67676, 4550, 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 (71267, '2022-04-04', 9689, 67677, 4550, NULL, '1.0000', '40.1400', '40.1400', '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 (71268, '2022-04-04', 7892, 67678, 4550, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71269, '2022-04-04', 8702, 67679, 4550, NULL, '1.0000', '3.6700', '3.6700', '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 (71270, '2022-04-04', 7736, 67680, 4550, NULL, '1.0000', '16.2000', '16.2000', '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 (71271, '2022-04-04', 7756, 67681, 4550, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71272, '2022-04-04', 9579, 67682, 4550, 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 (71273, '2022-04-04', 1339, 67683, 4550, 13004, '-11.0000', '1.6012', '1.6012', '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 (71274, '2022-04-04', 1339, 67683, 4550, NULL, '12.0000', '1.6012', '1.6012', '3.0000', '3.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 (71275, '2022-04-04', 1337, 67684, 4550, 10809, '-16.0000', '2.0000', '2.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 (71276, '2022-04-04', 1337, 67684, 4550, NULL, '17.0000', '2.0000', '2.0000', '3.5000', '3.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 (71277, '2022-04-04', 7685, 67685, 4550, NULL, '1.0000', '31.2000', '31.2000', '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 (71278, '2022-04-04', 1550, 67686, 4550, NULL, '1.0000', '13.9000', '13.9000', '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 (71279, '2022-04-04', 8666, 67687, 4550, NULL, '1.0000', '0.4600', '0.4600', '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 (71280, '2022-04-04', 1331, 67688, 4550, NULL, '1.0000', '4.2000', '4.2000', '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 (71281, '2022-04-04', 7659, 67689, 4550, NULL, '1.0000', '5.9700', '5.9700', '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 (71282, '2022-04-04', 7892, 67690, 4550, NULL, '1.0000', '4.2000', '4.2000', '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 (71283, '2022-04-04', 7518, 67691, 4550, NULL, '1.0000', '7.8200', '7.8200', '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 (71284, '2022-04-04', 2284, 67692, 4550, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '13.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 (71285, '2022-04-04', 7741, 67693, 4550, NULL, '1.0000', '1.2000', '1.2000', '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 (71286, '2022-04-04', 9755, 67694, 4550, NULL, '1.0000', '17.0000', '17.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 (71287, '2022-04-04', 3058, 67695, 4551, 52271, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71288, '2022-04-04', 7612, 67696, 4551, NULL, '1.0000', '46.0000', '46.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 (71289, '2022-04-04', 9644, 67697, 4551, 41993, '1.0000', '3.6000', '3.6000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71290, '2022-04-04', 7954, 67698, 4551, 52099, '4.0000', '-65.3773', '-65.3773', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71291, '2022-04-04', 2643, 67699, 4551, 44038, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71292, '2022-04-04', 7799, 67700, 4551, NULL, '1.0000', '2.0000', '2.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 (71293, '2022-04-04', 1851, 67701, 4551, 52259, '1.0000', '12.9288', '12.9288', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71294, '2022-04-04', 2543, 67702, 4551, 9539, '1.0000', '2.0000', '2.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 (71295, '2022-04-04', 7518, 67703, 4551, NULL, '1.0000', '5.1300', '5.1300', '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 (71296, '2022-04-04', 1863, 67704, 4551, 49847, '2.0000', '1.2686', '1.2686', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71297, '2022-04-04', 1845, 67705, 4551, 52227, '1.0000', '19.9352', '19.9352', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71298, '2022-04-04', 2948, 67706, 4551, 50926, '1.0000', '0.9000', '0.9000', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71299, '2022-04-04', 9841, 67707, 4551, NULL, '1.0000', '5.1900', '5.1900', '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 (71300, '2022-04-04', 2236, 67708, 4551, 52263, '1.0000', '5.7685', '5.7685', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71301, '2022-04-04', 2511, 67709, 4551, 49224, '1.0000', '8.8849', '8.8849', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71302, '2022-04-04', 1828, 67710, 4551, 33003, '2.0000', '0.7300', '0.7300', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71303, '2022-04-04', 2169, 67711, 4551, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71304, '2022-04-04', 2254, 67712, 4551, 50858, '1.0000', '17.8303', '17.8303', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71305, '2022-04-04', 1495, 67713, 4551, 23625, '1.0000', '61.0920', '61.0920', '25.0000', '25.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 (71306, '2022-04-04', 1837, 67714, 4551, 46752, '1.0000', '0.4981', '0.4981', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71307, '2022-04-04', 2242, 67715, 4552, 49112, '3.0000', '0.6543', '0.6543', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71308, '2022-04-04', 2270, 67716, 4552, 52266, '1.0000', '2.6065', '2.6065', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71309, '2022-04-04', 1674, 67717, 4552, 52307, '1.0000', '12.5024', '12.5024', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71310, '2022-04-04', 1912, 67718, 4552, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71311, '2022-04-04', 2321, 67719, 4552, NULL, '1.0000', '2.5000', '2.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 (71312, '2022-04-04', 7784, 67720, 4552, NULL, '1.0000', '4.2300', '4.2300', '5.5800', '5.5800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71313, '2022-04-04', 1596, 67721, 4552, 47994, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71314, '2022-04-04', 1704, 67722, 4552, 52287, '1.0000', '-1889.8857', '-1889.8857', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71315, '2022-04-04', 1884, 67723, 4552, 52288, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71316, '2022-04-04', 9579, 67724, 4553, 49670, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 391);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71317, '2022-04-04', 1502, 67725, 4553, 52092, '1.0000', '-6.9868', '-6.9868', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71318, '2022-04-04', 3029, 67726, 4553, 52261, '1.0000', '6.6157', '6.6157', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71319, '2022-04-04', 9649, 67727, 4554, 48784, '1.0000', '14.4100', '14.4100', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71320, '2022-04-04', 1596, 67728, 4554, 47994, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71321, '2022-04-04', 9840, 67729, 4554, 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 (71322, '2022-04-04', 9794, 67730, 4554, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '83.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71323, '2022-04-04', 1532, 67731, 4554, 46593, '3.0000', '41.7946', '41.7946', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71324, '2022-04-04', 9721, 67732, 4555, NULL, '1.0000', '11.7000', '11.7000', '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 (71325, '2022-04-04', 9731, 67733, 4555, 52153, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71326, '2022-04-04', 2950, 67734, 4555, 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 (71327, '2022-04-04', 1825, 67735, 4555, 52350, '1.0000', '5.6803', '5.6803', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71328, '2022-04-04', 9715, 67736, 4555, 51680, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71329, '2022-04-04', 2547, 67737, 4555, NULL, '1.0000', '10.2000', '10.2000', '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 (71330, '2022-04-04', 1822, 67738, 4555, 51227, '2.0000', '2.2938', '2.2938', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71331, '2022-04-04', 8065, 67739, 4555, NULL, '1.0000', '32.0000', '32.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 (71332, '2022-04-04', 2109, 67740, 4555, NULL, '4.0000', '0.2500', '0.2500', '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 (71333, '2022-04-04', 2921, 67741, 4555, NULL, '1.0000', '4.9000', '4.9000', '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 (71334, '2022-04-04', 2315, 67742, 4555, 49255, '4.0000', '0.4851', '0.4851', '0.8000', '0.8000', '23.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71335, '2022-04-04', 8068, 67743, 4555, NULL, '1.0000', '8.7900', '8.7900', '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 (71336, '2022-04-04', 8595, 67744, 4555, NULL, '1.0000', '3.9640', '3.9640', '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 (71337, '2022-04-04', 2394, 67745, 4555, 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 (71338, '2022-04-04', 1651, 67746, 4555, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71339, '2022-04-04', 2384, 67747, 4555, NULL, '5.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (71340, '2022-04-04', 2237, 67748, 4555, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71341, '2022-04-04', 9724, 67749, 4555, 47062, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71342, '2022-04-04', 7671, 67750, 4555, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71343, '2022-04-04', 1409, 67751, 4555, 48985, '2.0000', '13.0000', '13.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71344, '2022-04-04', 7981, 67752, 4555, NULL, '5.0000', '6.0000', '6.0000', '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 (71345, '2022-04-04', 1811, 67753, 4555, 53220, '1.0000', '14.8531', '14.8531', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71346, '2022-04-04', 2266, 67754, 4555, 51702, '1.0000', '7.5934', '7.5934', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71347, '2022-04-04', 7576, 67755, 4555, 37777, '1.0000', '6.9100', '6.9100', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71348, '2022-04-04', 2533, 67756, 4555, NULL, '1.0000', '18.0000', '18.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 (71349, '2022-04-04', 8425, 67757, 4555, 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 (71350, '2022-04-04', 9832, 67758, 4555, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71351, '2022-04-04', 9831, 67759, 4555, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71352, '2022-04-04', 2256, 67760, 4555, NULL, '1.0000', '13.7060', '13.7060', '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 (71353, '2022-04-04', 1969, 67761, 4555, NULL, '1.0000', '4.3300', '4.3300', '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 (71354, '2022-04-04', 2295, 67762, 4555, 51317, '2.0000', '1.0524', '1.0524', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71355, '2022-04-04', 8677, 67763, 4555, NULL, '1.0000', '292.4641', '292.4641', '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 (71356, '2022-04-04', 2169, 67764, 4555, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71357, '2022-04-04', 7473, 67765, 4555, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '60.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71358, '2022-04-04', 2916, 67766, 4555, NULL, '1.0000', '8.2115', '8.2115', '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 (71359, '2022-04-04', 2315, 67767, 4555, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '25.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71360, '2022-04-04', 2262, 67768, 4555, 51483, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71361, '2022-04-04', 9845, 67769, 4555, NULL, '1.0000', '5.7000', '5.7000', '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 (71362, '2022-04-04', 2169, 67770, 4555, 51695, '2.0000', '1.3276', '1.3276', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71363, '2022-04-04', 1880, 67771, 4555, 49320, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71364, '2022-04-04', 2169, 67772, 4555, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71365, '2022-04-04', 8017, 67773, 4555, NULL, '2.0000', '0.6000', '0.6000', '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 (71366, '2022-04-04', 2821, 67774, 4555, NULL, '1.0000', '3.2804', '3.2804', '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 (71367, '2022-04-04', 2315, 67775, 4555, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '26.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71368, '2022-04-04', 2221, 67776, 4555, 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 (71369, '2022-04-04', 2299, 67777, 4555, 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 (71370, '2022-04-04', 1957, 67778, 4555, 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 (71371, '2022-04-04', 9731, 67779, 4555, 52153, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71372, '2022-04-04', 1710, 67780, 4556, 9477, '1.0000', '3.4300', '3.4300', '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 (71373, '2022-04-04', 9729, 67781, 4556, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71374, '2022-04-04', 8744, 67782, 4556, 52900, '1.0000', '3.5749', '3.5749', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71375, '2022-04-04', 8746, 67783, 4556, 52896, '1.0000', '-11.9871', '-11.9871', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71376, '2022-04-04', 1837, 67784, 4557, NULL, '1.0000', '2.5335', '2.5335', '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 (71377, '2022-04-04', 9695, 67785, 4557, 51959, '2.0000', '4.5000', '4.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71378, '2022-04-04', 9695, 67785, 4557, NULL, '4.0000', '4.5000', '4.5000', '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 (71379, '2022-04-04', 2169, 67786, 4557, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71380, '2022-04-04', 8325, 67787, 4557, NULL, '1.0000', '2.0000', '2.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 (71381, '2022-04-04', 9695, 67788, 4557, 51959, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71382, '2022-04-04', 8775, 67789, 4557, 53445, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71383, '2022-04-04', 2821, 67790, 4558, NULL, '1.0000', '3.2804', '3.2804', '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 (71384, '2022-04-04', 1602, 67791, 4558, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '25.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71385, '2022-04-04', 9734, 67792, 4558, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71386, '2022-04-04', 1946, 67793, 4558, NULL, '1.0000', '1.2265', '1.2265', '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 (71387, '2022-04-04', 8666, 67794, 4558, NULL, '1.0000', '0.4600', '0.4600', '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 (71388, '2022-04-04', 1646, 67795, 4558, 52149, '1.0000', '5.3761', '5.3761', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71389, '2022-04-04', 2169, 67796, 4558, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71390, '2022-04-04', 8810, 67797, 4558, NULL, '1.0000', '1.9200', '1.9200', '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 (71391, '2022-04-04', 2109, 67798, 4558, 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 (71392, '2022-04-04', 8000, 67799, 4559, NULL, '1.0000', '6.8400', '6.8400', '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 (71393, '2022-04-04', 7967, 67800, 4559, NULL, '1.0000', '7.0000', '7.0000', '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 (71394, '2022-04-04', 2289, 67801, 4559, 2949, '-95.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 (71395, '2022-04-04', 2289, 67801, 4559, NULL, '100.0000', '0.3300', '0.3300', '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 (71396, '2022-04-04', 7612, 67802, 4559, NULL, '2.0000', '1.7300', '1.7300', '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 (71397, '2022-04-04', 2063, 67803, 4559, NULL, '1.0000', '1.9900', '1.9900', '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 (71398, '2022-04-04', 7774, 67804, 4559, NULL, '1.0000', '3.3000', '3.3000', '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 (71399, '2022-04-04', 9808, 67805, 4559, 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 (71400, '2022-04-04', 7429, 67806, 4559, NULL, '1.0000', '3.2700', '3.2700', '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 (71401, '2022-04-04', 7641, 67807, 4559, NULL, '1.0000', '1.9000', '1.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 (71402, '2022-04-04', 7558, 67808, 4559, 33814, '3.0000', '1.9700', '1.9700', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71403, '2022-04-04', 7473, 67809, 4559, NULL, '2.0000', '0.5300', '0.5300', '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 (71404, '2022-04-04', 7703, 67810, 4559, NULL, '1.0000', '22.9900', '22.9900', '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 (71405, '2022-04-04', 1837, 67811, 4559, 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 (71406, '2022-04-04', 7342, 67812, 4559, NULL, '1.0000', '15.6000', '15.6000', '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 (71407, '2022-04-04', 9791, 67813, 4559, NULL, '3.0000', '0.9000', '0.9000', '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 (71408, '2022-04-04', 7532, 67814, 4559, NULL, '1.0000', '20.6000', '20.6000', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71409, '2022-04-04', 9747, 67815, 4559, NULL, '2.0000', '0.6500', '0.6500', '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 (71410, '2022-04-04', 1941, 67816, 4559, 5592, '-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 (71411, '2022-04-04', 1941, 67816, 4559, NULL, '5.0000', '90.0000', '90.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 (71412, '2022-04-04', 9729, 67817, 4559, NULL, '2.0000', '0.6200', '0.6200', '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 (71413, '2022-04-04', 1807, 67818, 4559, 16243, '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 (71414, '2022-04-04', 1807, 67818, 4559, 18924, '2.0000', '1.8000', '1.8000', '2.5000', '2.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 (71415, '2022-04-04', 8350, 67819, 4559, NULL, '1.0000', '12.0000', '12.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 (71416, '2022-04-04', 7526, 67820, 4559, 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 (71417, '2022-04-04', 1989, 67821, 4559, NULL, '1.0000', '5.1429', '5.1429', '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 (71418, '2022-04-04', 9092, 67822, 4559, NULL, '2.0000', '5.2900', '5.2900', '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 (71419, '2022-04-04', 7780, 67823, 4559, NULL, '1.0000', '11.6000', '11.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 (71420, '2022-04-04', 7570, 67824, 4559, NULL, '1.0000', '10.0000', '10.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 (71421, '2022-04-04', 1760, 67825, 4559, 20604, '5.0000', '111.8384', '111.8384', '1.0000', '1.0000', '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 (71422, '2022-04-04', 7547, 67826, 4559, NULL, '4.0000', '0.0000', '0.0000', '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 (71423, '2022-04-04', 7799, 67827, 4559, NULL, '1.0000', '6.4000', '6.4000', '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 (71424, '2022-04-04', 7522, 67828, 4559, NULL, '1.0000', '9.7000', '9.7000', '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 (71425, '2022-04-04', 7954, 67829, 4559, NULL, '2.0000', '3.0000', '3.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 (71426, '2022-04-04', 9830, 67830, 4560, 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 (71427, '2022-04-04', 8510, 67831, 4559, NULL, '1.0000', '1.9500', '1.9500', '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 (71428, '2022-04-04', 9482, 67832, 4560, NULL, '2.0000', '0.5000', '0.5000', '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 (71429, '2022-04-04', 9785, 67833, 4559, 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 (71430, '2022-04-04', 9499, 67834, 4559, 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 (71431, '2022-04-04', 2289, 67835, 4559, 2949, '-95.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 (71432, '2022-04-04', 2289, 67835, 4559, NULL, '96.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-96.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71433, '2022-04-04', 1935, 67836, 4561, 5586, '-60.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 (71434, '2022-04-04', 1935, 67836, 4561, NULL, '61.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71435, '2022-04-04', 7411, 67837, 4561, NULL, '1.0000', '1.3500', '1.3500', '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 (71436, '2022-04-04', 8746, 67838, 4562, 53448, '1.0000', '2.8848', '2.8848', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71437, '2022-04-04', 8740, 67839, 4562, 53461, '3.0000', '2.0000', '2.0000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71438, '2022-04-04', 1863, 67840, 4563, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71439, '2022-04-04', 9747, 67841, 4563, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71440, '2022-04-04', 9734, 67842, 4563, 50862, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71441, '2022-04-04', 2293, 67843, 4564, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '91.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71442, '2022-04-04', 9748, 67844, 4564, 46047, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71443, '2022-04-04', 1603, 67845, 4564, 49220, '1.0000', '59.9933', '59.9933', '84.5000', '84.5000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71444, '2022-04-04', 1651, 67846, 4565, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71445, '2022-04-04', 8666, 67847, 4565, NULL, '1.0000', '0.4600', '0.4600', '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 (71446, '2022-04-04', 7411, 67848, 4565, NULL, '2.0000', '1.3013', '1.3013', '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 (71447, '2022-04-05', 7723, 67849, 4566, 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 (71448, '2022-04-05', 7518, 67850, 4566, NULL, '1.0000', '7.8200', '7.8200', '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 (71449, '2022-04-05', 2643, 67851, 4566, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71450, '2022-04-05', 9761, 67852, 4566, 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 (71451, '2022-04-05', 9791, 67853, 4566, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71452, '2022-04-05', 1623, 67854, 4566, 33342, '1.0000', '141.2000', '141.2000', '186.0000', '186.0000', '1.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71453, '2022-04-05', 8740, 67855, 4566, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71454, '2022-04-05', 9750, 67856, 4566, NULL, '1.0000', '3.3000', '3.3000', '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 (71455, '2022-04-05', 2643, 67857, 4566, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71456, '2022-04-05', 1863, 67858, 4566, 52353, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71457, '2022-04-05', 2593, 67859, 4566, 23153, '2.0000', '14.4000', '14.4000', '19.0000', '19.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 (71458, '2022-04-05', 2593, 67859, 4566, NULL, '1.0000', '14.4000', '14.4000', '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 (71459, '2022-04-05', 8761, 67860, 4566, NULL, '1.0000', '11.3420', '11.3420', '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 (71460, '2022-04-05', 7584, 67861, 4566, NULL, '2.0000', '1.7933', '1.7933', '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 (71461, '2022-04-05', 2131, 67862, 4566, 53418, '1.0000', '7.5500', '7.5500', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71462, '2022-04-05', 1425, 67863, 4566, 52344, '1.0000', '5.1721', '5.1721', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71463, '2022-04-05', 1427, 67864, 4566, 52220, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71464, '2022-04-05', 8204, 67865, 4566, NULL, '8.0000', '1.5000', '1.5000', '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 (71465, '2022-04-05', 9695, 67866, 4566, NULL, '2.0000', '4.5000', '4.5000', '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 (71466, '2022-04-05', 1406, 67867, 4566, 49512, '1.0000', '19.8840', '19.8840', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71467, '2022-04-05', 7814, 67868, 4566, NULL, '1.0000', '18.5000', '18.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 (71468, '2022-04-05', 2891, 67869, 4566, 52213, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71469, '2022-04-05', 1837, 67870, 4567, NULL, '2.0000', '2.5335', '2.5335', '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 (71470, '2022-04-05', 2738, 67871, 4567, 19348, '1.0000', '7.6000', '7.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 (71471, '2022-04-05', 8149, 67872, 4567, 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 (71472, '2022-04-05', 2103, 67873, 4567, 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 (71473, '2022-04-05', 9732, 67874, 4567, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71474, '2022-04-05', 1760, 67875, 4567, NULL, '1.0000', '1.5900', '1.5900', '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 (71475, '2022-04-05', 2660, 67876, 4567, 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 (71476, '2022-04-05', 8746, 67877, 4567, 53448, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71477, '2022-04-05', 2089, 67878, 4567, 49893, '1.0000', '6.9414', '6.9414', '9.5000', '9.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 (71478, '2022-04-05', 8773, 67879, 4567, 53455, '1.0000', '3.8140', '3.8140', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71479, '2022-04-05', 1502, 67880, 4568, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '20.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71480, '2022-04-05', 7801, 67881, 4568, NULL, '2.0000', '3.0000', '3.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 (71481, '2022-04-05', 2221, 67882, 4568, 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 (71482, '2022-04-05', 2299, 67883, 4568, 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 (71483, '2022-04-05', 7411, 67884, 4569, NULL, '9.0000', '1.3013', '1.3013', '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 (71484, '2022-04-05', 2416, 67885, 4569, 53460, '1.0000', '1.2174', '1.2174', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71485, '2022-04-05', 2169, 67886, 4569, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71486, '2022-04-05', 2384, 67887, 4569, NULL, '5.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (71487, '2022-04-05', 9469, 67888, 4570, 51026, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71488, '2022-04-05', 2059, 67889, 4570, 49914, '1.0000', '8.8934', '8.8934', '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 (71489, '2022-04-05', 1440, 67890, 4571, 22353, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '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 (71490, '2022-04-05', 2486, 67891, 4571, 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 (71491, '2022-04-05', 2415, 67892, 4571, 4656, '-13.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 (71492, '2022-04-05', 2415, 67892, 4571, NULL, '15.0000', '5.0000', '5.0000', '7.0000', '7.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 (71493, '2022-04-05', 1524, 67893, 4571, NULL, '2.0000', '3.8400', '3.8400', '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 (71494, '2022-04-05', 2346, 67894, 4571, 18804, '1.0000', '5.5000', '5.5000', '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 (71495, '2022-04-05', 1702, 67895, 4571, 4499, '-7.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 (71496, '2022-04-05', 1702, 67895, 4571, NULL, '8.0000', '14.9700', '14.9700', '20.0000', '20.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 (71497, '2022-04-05', 9741, 67896, 4571, NULL, '1.0000', '7.6000', '7.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 (71498, '2022-04-05', 1781, 67897, 4571, 4899, '-1.0000', '4.1000', '4.1000', '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 (71499, '2022-04-05', 1781, 67897, 4571, NULL, '2.0000', '4.1000', '4.1000', '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 (71500, '2022-04-05', 9579, 67898, 4571, 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 (71501, '2022-04-05', 8183, 67899, 4571, NULL, '1.0000', '81.9100', '81.9100', '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 (71502, '2022-04-05', 2657, 67900, 4571, 11267, '-12.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 (71503, '2022-04-05', 2657, 67900, 4571, NULL, '13.0000', '5.4200', '5.4200', '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 (71504, '2022-04-05', 1892, 67901, 4571, 5431, '-7.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 (71505, '2022-04-05', 1892, 67901, 4571, NULL, '8.0000', '90.0000', '90.0000', '1.0000', '1.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 (71506, '2022-04-05', 1785, 67902, 4571, 4903, '-5.0000', '4.8380', '4.8380', '21.5000', '21.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 (71507, '2022-04-05', 1785, 67902, 4571, NULL, '6.0000', '4.8380', '4.8380', '21.5000', '21.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 (71508, '2022-04-05', 9839, 67903, 4571, NULL, '1.0000', '15.0200', '15.0200', '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 (71509, '2022-04-05', 2416, 67904, 4571, 4745, '-23.0000', '1.2000', '1.2000', '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 (71510, '2022-04-05', 2416, 67904, 4571, NULL, '24.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (71511, '2022-04-05', 9695, 67905, 4572, NULL, '1.0000', '4.5000', '4.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 (71512, '2022-04-05', 1837, 67906, 4572, NULL, '2.0000', '2.5335', '2.5335', '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 (71513, '2022-04-05', 1665, 67907, 4573, 3235, '-92.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 (71514, '2022-04-05', 1665, 67907, 4573, NULL, '94.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-94.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71515, '2022-04-05', 1602, 67908, 4574, 5897, '-127.0000', '6.7859', '6.7859', '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 (71516, '2022-04-05', 1602, 67908, 4574, NULL, '128.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71517, '2022-04-05', 8504, 67909, 4575, NULL, '1.0000', '8.1000', '8.1000', '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 (71518, '2022-04-05', 7518, 67910, 4575, NULL, '1.0000', '7.8200', '7.8200', '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 (71519, '2022-04-05', 2069, 67911, 4575, 5571, '-7.0000', '2.0400', '2.0400', '9.5000', '9.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 (71520, '2022-04-05', 2069, 67911, 4575, NULL, '8.0000', '2.0400', '2.0400', '9.5000', '9.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 (71521, '2022-04-05', 8810, 67912, 4575, NULL, '1.0000', '1.6000', '1.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 (71522, '2022-04-05', 7886, 67913, 4575, 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 (71523, '2022-04-05', 7514, 67914, 4575, NULL, '1.0000', '2.2500', '2.2500', '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 (71524, '2022-04-05', 9499, 67915, 4575, 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 (71525, '2022-04-05', 7412, 67916, 4575, NULL, '2.0000', '1.5200', '1.5200', '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 (71526, '2022-04-05', 8596, 67917, 4575, 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 (71527, '2022-04-05', 2384, 67918, 4575, 12014, '1.0000', '0.4000', '0.4000', '0.7000', '0.7000', '41.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 (71528, '2022-04-05', 7833, 67919, 4575, NULL, '1.0000', '20.0000', '20.0000', '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 (71529, '2022-04-05', 7906, 67920, 4575, NULL, '1.0000', '9.3000', '9.3000', '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 (71530, '2022-04-05', 7674, 67921, 4575, 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 (71531, '2022-04-05', 8607, 67922, 4575, 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 (71532, '2022-04-05', 2251, 67923, 4575, 2788, '-14.0000', '10.9700', '10.9700', '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 (71533, '2022-04-05', 2251, 67923, 4575, NULL, '15.0000', '10.9700', '10.9700', '16.0000', '16.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 (71534, '2022-04-05', 1837, 67924, 4575, 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 (71535, '2022-04-05', 7362, 67925, 4575, 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 (71536, '2022-04-05', 9158, 67926, 4575, NULL, '1.0000', '5.8900', '5.8900', '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 (71537, '2022-04-05', 8786, 67927, 4575, NULL, '1.0000', '1.0000', '1.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 (71538, '2022-04-05', 7360, 67928, 4575, NULL, '1.0000', '25.0000', '25.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 (71539, '2022-04-05', 8063, 67929, 4575, NULL, '1.0000', '1.6000', '1.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 (71540, '2022-04-05', 8924, 67930, 4575, NULL, '1.0000', '4.5000', '4.5000', '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 (71541, '2022-04-05', 9578, 67931, 4575, NULL, '1.0000', '8.0000', '8.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 (71542, '2022-04-05', 7715, 67932, 4575, NULL, '2.0000', '1.8900', '1.8900', '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 (71543, '2022-04-05', 1856, 67933, 4575, NULL, '1.0000', '4.2500', '4.2500', '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 (71544, '2022-04-05', 7509, 67934, 4575, 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 (71545, '2022-04-05', 7570, 67935, 4575, NULL, '1.0000', '10.0000', '10.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 (71546, '2022-04-05', 8444, 67936, 4575, NULL, '1.0000', '1.6000', '1.6000', '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 (71547, '2022-04-05', 7428, 67937, 4575, NULL, '2.0000', '2.6100', '2.6100', '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 (71548, '2022-04-05', 8638, 67938, 4575, NULL, '10.0000', '0.5100', '0.5100', '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 (71549, '2022-04-05', 7711, 67939, 4575, NULL, '1.0000', '35.6300', '35.6300', '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 (71550, '2022-04-05', 8352, 67940, 4575, 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 (71551, '2022-04-05', 7608, 67941, 4575, NULL, '1.0000', '6.9800', '6.9800', '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 (71552, '2022-04-05', 9092, 67942, 4575, NULL, '2.0000', '5.2900', '5.2900', '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 (71553, '2022-04-05', 7514, 67943, 4575, NULL, '1.0000', '2.2500', '2.2500', '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 (71554, '2022-04-05', 7999, 67944, 4575, NULL, '1.0000', '1.7500', '1.7500', '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 (71555, '2022-04-05', 9160, 67945, 4575, NULL, '1.0000', '15.0000', '15.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 (71556, '2022-04-05', 7658, 67946, 4575, NULL, '3.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (71557, '2022-04-05', 8744, 67947, 4575, NULL, '1.0000', '3.6600', '3.6600', '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 (71558, '2022-04-05', 7886, 67948, 4575, 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 (71559, '2022-04-05', 2416, 67949, 4576, 53460, '1.0000', '1.2174', '1.2174', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71560, '2022-04-05', 8740, 67950, 4576, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71561, '2022-04-05', 8979, 67951, 4576, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71562, '2022-04-05', 7359, 67952, 4576, NULL, '2.0000', '20.0000', '20.0000', '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 (71563, '2022-04-05', 2283, 67953, 4576, 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 (71564, '2022-04-05', 1846, 67954, 4576, 51647, '1.0000', '-298.6500', '-298.6500', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71565, '2022-04-05', 2083, 67955, 4576, 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 (71566, '2022-04-05', 9802, 67956, 4576, 50072, '1.0000', '8.9100', '8.9100', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71567, '2022-04-05', 2740, 67957, 4576, 53214, '1.0000', '9.8871', '9.8871', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71568, '2022-04-05', 2283, 67958, 4576, 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 (71569, '2022-04-05', 2169, 67959, 4576, 51695, '1.0000', '1.3276', '1.3276', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71570, '2022-04-05', 8207, 67960, 4576, NULL, '1.0000', '0.0000', '0.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 (71571, '2022-04-05', 8149, 67961, 4576, 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 (71572, '2022-04-05', 2221, 67962, 4576, 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 (71573, '2022-04-05', 2385, 67963, 4576, NULL, '1.0000', '8.9100', '8.9100', '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 (71574, '2022-04-05', 2366, 67964, 4576, NULL, '2.0000', '-24.7743', '-24.7743', '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 (71575, '2022-04-05', 2379, 67965, 4576, NULL, '1.0000', '0.2954', '0.2954', '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 (71576, '2022-04-05', 7359, 67966, 4577, NULL, '2.0000', '20.0000', '20.0000', '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 (71577, '2022-04-05', 3053, 67967, 4578, 49645, '10.0000', '29.6800', '29.6800', '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 (71578, '2022-04-05', 7411, 67968, 4578, NULL, '1.0000', '1.3013', '1.3013', '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 (71579, '2022-04-05', 1703, 67969, 4578, 34619, '1.0000', '9.2200', '9.2200', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71580, '2022-04-05', 7741, 67970, 4578, NULL, '1.0000', '-6.8417', '-6.8417', '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 (71581, '2022-04-05', 2324, 67971, 4578, 22558, '1.0000', '10.5000', '10.5000', '15.0000', '15.0000', '1.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 (71582, '2022-04-05', 7359, 67972, 4578, NULL, '1.0000', '20.0000', '20.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 (71583, '2022-04-05', 7832, 67973, 4578, 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 (71584, '2022-04-05', 1651, 67974, 4578, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71585, '2022-04-05', 7641, 67975, 4578, NULL, '1.0000', '1.9000', '1.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 (71586, '2022-04-05', 7411, 67976, 4578, NULL, '1.0000', '1.3013', '1.3013', '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 (71587, '2022-04-05', 9740, 67977, 4578, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71588, '2022-04-05', 9831, 67978, 4578, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71589, '2022-04-05', 1812, 67979, 4578, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71590, '2022-04-05', 2010, 67980, 4578, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71591, '2022-04-05', 2758, 67981, 4578, NULL, '1.0000', '5.4000', '5.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 (71592, '2022-04-05', 8441, 67982, 4578, 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 (71593, '2022-04-05', 2821, 67983, 4578, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71594, '2022-04-05', 9735, 67984, 4578, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71595, '2022-04-05', 1762, 67985, 4578, 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 (71596, '2022-04-05', 9695, 67986, 4578, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71597, '2022-04-05', 1409, 67987, 4578, 48985, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71598, '2022-04-05', 9463, 67988, 4578, NULL, '1.0000', '18.9000', '18.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 (71599, '2022-04-05', 9830, 67989, 4578, 53444, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71600, '2022-04-05', 7639, 67990, 4578, 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 (71601, '2022-04-05', 2283, 67991, 4578, 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 (71602, '2022-04-05', 1574, 67992, 4578, NULL, '1.0000', '1.7000', '1.7000', '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 (71603, '2022-04-05', 2402, 67993, 4578, NULL, '3.0000', '1.0000', '1.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 (71604, '2022-04-05', 1810, 67994, 4578, NULL, '1.0000', '9.7936', '9.7936', '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 (71605, '2022-04-05', 2109, 67995, 4578, 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 (71606, '2022-04-05', 2821, 67996, 4578, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71607, '2022-04-05', 1935, 67997, 4578, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71608, '2022-04-05', 7411, 67998, 4578, NULL, '1.0000', '1.3013', '1.3013', '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 (71609, '2022-04-05', 9579, 67999, 4578, 53633, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71610, '2022-04-05', 1665, 68000, 4579, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71611, '2022-04-05', 2020, 68001, 4579, NULL, '1.0000', '59.0820', '59.0820', '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 (71612, '2022-04-05', 9747, 68002, 4579, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71613, '2022-04-05', 2821, 68003, 4579, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71614, '2022-04-05', 9864, 68004, 4579, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71615, '2022-04-05', 2037, 68005, 4579, 22540, '1.0000', '10.7500', '10.7500', '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 (71616, '2022-04-05', 2821, 68006, 4579, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71617, '2022-04-05', 2315, 68007, 4579, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '19.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71618, '2022-04-05', 1574, 68008, 4579, 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 (71619, '2022-04-05', 1646, 68009, 4580, 53661, '1.0000', '5.5398', '5.5398', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71620, '2022-04-05', 7411, 68010, 4580, NULL, '1.0000', '1.3013', '1.3013', '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 (71621, '2022-04-05', 2643, 68011, 4580, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71622, '2022-04-05', 8190, 68012, 4580, NULL, '1.0000', '11.0500', '11.0500', '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 (71623, '2022-04-05', 8666, 68013, 4580, NULL, '1.0000', '0.4600', '0.4600', '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 (71624, '2022-04-05', 2607, 68014, 4580, 39774, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '9.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71625, '2022-04-05', 2643, 68015, 4580, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71626, '2022-04-05', 2363, 68016, 4581, 45806, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71627, '2022-04-05', 9461, 68017, 4581, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71628, '2022-04-05', 8607, 68018, 4581, 52532, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71629, '2022-04-05', 2648, 68019, 4581, NULL, '1.0000', '3.5337', '3.5337', '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 (71630, '2022-04-05', 7428, 68020, 4581, 51281, '1.0000', '56.1257', '56.1257', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71631, '2022-04-05', 9245, 68021, 4581, 51789, '1.0000', '6.4758', '6.4758', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71632, '2022-04-05', 9785, 68022, 4581, 51831, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71633, '2022-04-05', 1846, 68023, 4581, 50289, '1.0000', '12.2700', '12.2700', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71634, '2022-04-05', 9734, 68024, 4581, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71635, '2022-04-05', 2295, 68025, 4581, NULL, '2.0000', '0.7000', '0.7000', '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 (71636, '2022-04-05', 2892, 68026, 4581, 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 (71637, '2022-04-05', 7658, 68027, 4581, 52446, '2.0000', '341.6222', '341.6222', '2.8000', '2.8000', '52.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71638, '2022-04-05', 8033, 68028, 4581, NULL, '1.0000', '27.7000', '27.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 (71639, '2022-04-05', 7473, 68029, 4581, 51825, '5.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '43.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71640, '2022-04-05', 7703, 68030, 4581, NULL, '1.0000', '102.7757', '102.7757', '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 (71641, '2022-04-05', 9740, 68031, 4581, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71642, '2022-04-05', 7750, 68032, 4581, 52438, '1.0000', '31.0039', '31.0039', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71643, '2022-04-05', 1760, 68033, 4581, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71644, '2022-04-05', 7527, 68034, 4581, 46177, '2.0000', '0.8900', '0.8900', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71645, '2022-04-05', 2618, 68035, 4581, 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 (71646, '2022-04-05', 8036, 68036, 4581, 51267, '1.0000', '6.7300', '6.7300', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71647, '2022-04-05', 8626, 68037, 4581, NULL, '1.0000', '7.8175', '7.8175', '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 (71648, '2022-04-05', 7411, 68038, 4581, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71649, '2022-04-05', 9216, 68039, 4581, 31661, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71650, '2022-04-05', 7674, 68040, 4581, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '106.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71651, '2022-04-05', 7682, 68041, 4581, NULL, '1.0000', '0.6600', '0.6600', '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 (71652, '2022-04-05', 9193, 68042, 4581, NULL, '1.0000', '7.0315', '7.0315', '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 (71653, '2022-04-05', 7428, 68043, 4581, 51281, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71654, '2022-04-05', 1398, 68044, 4581, 53712, '1.0000', '9.8960', '9.8960', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71655, '2022-04-05', 2315, 68045, 4581, NULL, '1.0000', '0.8863', '0.8863', '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 (71656, '2022-04-05', 7411, 68046, 4581, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71657, '2022-04-05', 9445, 68047, 4581, 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 (71658, '2022-04-05', 2242, 68048, 4581, 50663, '3.0000', '0.5833', '0.5833', '1.0000', '1.0000', '138.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71659, '2022-04-05', 7588, 68049, 4581, NULL, '1.0000', '6.2420', '6.2420', '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 (71660, '2022-04-05', 8359, 68050, 4581, 53716, '1.0000', '836.5350', '836.5350', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71661, '2022-04-05', 2887, 68051, 4581, 51300, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71662, '2022-04-05', 8203, 68052, 4581, NULL, '1.0000', '29.8095', '29.8095', '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 (71663, '2022-04-05', 7741, 68053, 4581, NULL, '1.0000', '8.7284', '8.7284', '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 (71664, '2022-04-05', 2295, 68054, 4581, NULL, '3.0000', '0.7000', '0.7000', '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 (71665, '2022-04-05', 8225, 68055, 4581, 42794, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71666, '2022-04-05', 8187, 68056, 4581, NULL, '3.0000', '14.3900', '14.3900', '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 (71667, '2022-04-05', 9726, 68057, 4581, 50631, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71668, '2022-04-05', 9804, 68058, 4581, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71669, '2022-04-05', 7411, 68059, 4581, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71670, '2022-04-05', 9274, 68060, 4581, NULL, '1.0000', '3.5638', '3.5638', '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 (71671, '2022-04-05', 7564, 68061, 4581, 51806, '3.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71672, '2022-04-05', 7587, 68062, 4581, NULL, '1.0000', '6.3886', '6.3886', '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 (71673, '2022-04-05', 7756, 68063, 4581, NULL, '1.0000', '8.6808', '8.6808', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71674, '2022-04-05', 7715, 68064, 4581, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71675, '2022-04-05', 9740, 68065, 4581, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71676, '2022-04-05', 8449, 68066, 4581, 51786, '1.0000', '11.9000', '11.9000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71677, '2022-04-05', 1750, 68067, 4581, 45853, '1.0000', '37.1349', '37.1349', '53.5000', '53.5000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71678, '2022-04-05', 7938, 68068, 4581, 39599, '1.0000', '2.9000', '2.9000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71679, '2022-04-05', 7641, 68069, 4581, NULL, '1.0000', '95.0035', '95.0035', '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 (71680, '2022-04-05', 8607, 68070, 4581, 52532, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71681, '2022-04-05', 7954, 68071, 4581, NULL, '3.0000', '412.7272', '412.7272', '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 (71682, '2022-04-05', 7674, 68072, 4581, 52725, '2.0000', '197.1282', '197.1282', '2.0000', '2.0000', '105.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71683, '2022-04-05', 2352, 68073, 4581, NULL, '2.0000', '1.9000', '1.9000', '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 (71684, '2022-04-05', 1855, 68074, 4581, 49820, '1.0000', '1.4365', '1.4365', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71685, '2022-04-05', 9092, 68075, 4581, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '186.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71686, '2022-04-05', 7736, 68076, 4581, NULL, '1.0000', '-6.4252', '-6.4252', '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 (71687, '2022-04-05', 2381, 68077, 4581, 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 (71688, '2022-04-05', 2506, 68078, 4581, 53741, '1.0000', '4.2440', '4.2440', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71689, '2022-04-05', 8135, 68079, 4581, NULL, '1.0000', '5.8990', '5.8990', '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 (71690, '2022-04-05', 7318, 68080, 4581, NULL, '1.0000', '11.4954', '11.4954', '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 (71691, '2022-04-05', 2283, 68081, 4581, 50041, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71692, '2022-04-05', 8444, 68082, 4582, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71693, '2022-04-05', 2609, 68083, 4582, 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 (71694, '2022-04-05', 2821, 68084, 4582, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71695, '2022-04-05', 9703, 68085, 4582, 44443, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71696, '2022-04-05', 1666, 68086, 4582, 51313, '1.0000', '2.7137', '2.7137', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71697, '2022-04-05', 1602, 68087, 4582, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71698, '2022-04-05', 1839, 68088, 4582, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (71699, '2022-04-05', 7328, 68089, 4582, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71700, '2022-04-05', 1840, 68090, 4582, NULL, '2.0000', '0.2400', '0.2400', '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 (71701, '2022-04-05', 9734, 68091, 4582, 52161, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71702, '2022-04-05', 1665, 68092, 4582, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71703, '2022-04-05', 8844, 68093, 4583, NULL, '1.0000', '4.9900', '4.9900', '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 (71704, '2022-04-05', 9390, 68094, 4583, NULL, '1.0000', '25.0000', '25.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 (71705, '2022-04-05', 7866, 68095, 4583, 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 (71706, '2022-04-05', 9092, 68096, 4583, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '184.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71707, '2022-04-05', 7711, 68097, 4583, NULL, '1.0000', '-5144.5722', '-5144.5722', '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 (71708, '2022-04-05', 7666, 68098, 4583, NULL, '1.0000', '3.6004', '3.6004', '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 (71709, '2022-04-05', 8420, 68099, 4583, 31035, '2.0000', '10.0000', '10.0000', '13.5000', '13.5000', '5.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71710, '2022-04-05', 9089, 68100, 4583, 32139, '1.0000', '3.8000', '3.8000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71711, '2022-04-05', 8000, 68101, 4583, NULL, '1.0000', '1674.2861', '1674.2861', '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 (71712, '2022-04-05', 7756, 68102, 4584, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71713, '2022-04-05', 9734, 68103, 4584, 52161, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '15.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71714, '2022-04-05', 1501, 68104, 4584, NULL, '1.0000', '2.1784', '2.1784', '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 (71715, '2022-04-05', 9737, 68105, 4584, NULL, '1.0000', '7.3000', '7.3000', '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 (71716, '2022-04-05', 9747, 68106, 4584, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71717, '2022-04-05', 8677, 68107, 4584, NULL, '1.0000', '292.4641', '292.4641', '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 (71718, '2022-04-05', 9695, 68108, 4584, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '26.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71719, '2022-04-05', 2169, 68109, 4585, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71720, '2022-04-05', 9814, 68110, 4585, NULL, '1.0000', '0.9000', '0.9000', '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 (71721, '2022-04-05', 1851, 68111, 4585, 52259, '1.0000', '12.9288', '12.9288', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71722, '2022-04-05', 1306, 68112, 4585, 49120, '3.0000', '2.1000', '2.1000', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71723, '2022-04-05', 2236, 68113, 4585, 52263, '1.0000', '5.7685', '5.7685', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71724, '2022-04-05', 7532, 68114, 4585, NULL, '1.0000', '20.6000', '20.6000', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71725, '2022-04-05', 2497, 68115, 4585, 42983, '1.0000', '31.2000', '31.2000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71726, '2022-04-05', 9868, 68116, 4585, 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 (71727, '2022-04-05', 1687, 68117, 4585, 53705, '1.0000', '13.5400', '13.5400', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71728, '2022-04-05', 7785, 68118, 4585, 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 (71729, '2022-04-05', 9732, 68119, 4585, 52298, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71730, '2022-04-05', 2167, 68120, 4585, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71731, '2022-04-05', 1912, 68121, 4585, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71732, '2022-04-05', 2169, 68122, 4585, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71733, '2022-04-05', 2020, 68123, 4586, NULL, '1.0000', '59.0820', '59.0820', '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 (71734, '2022-04-06', 8931, 68124, 4587, NULL, '1.0000', '6.9000', '6.9000', '105.0000', '105.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71735, '2022-04-06', 7954, 68125, 4587, 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 (71736, '2022-04-06', 7562, 68126, 4587, NULL, '1.0000', '5.5300', '5.5300', '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 (71737, '2022-04-06', 9836, 68127, 4587, 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 (71738, '2022-04-06', 7564, 68128, 4587, NULL, '1.0000', '0.6400', '0.6400', '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 (71739, '2022-04-06', 1750, 68129, 4587, 6680, '1.0000', '31.9800', '31.9800', '53.5000', '53.5000', '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 (71740, '2022-04-06', 2289, 68130, 4587, 2949, '-101.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 (71741, '2022-04-06', 2289, 68130, 4587, NULL, '103.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71742, '2022-04-06', 7412, 68131, 4587, NULL, '1.0000', '1.5200', '1.5200', '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 (71743, '2022-04-06', 7708, 68132, 4587, NULL, '1.0000', '7.8000', '7.8000', '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 (71744, '2022-04-06', 8180, 68133, 4587, NULL, '4.0000', '4.4000', '4.4000', '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 (71745, '2022-04-06', 7514, 68134, 4587, NULL, '3.0000', '2.2500', '2.2500', '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 (71746, '2022-04-06', 9821, 68135, 4587, NULL, '2.0000', '1.4500', '1.4500', '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 (71747, '2022-04-06', 7930, 68136, 4587, NULL, '1.0000', '1.3000', '1.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 (71748, '2022-04-06', 8673, 68137, 4587, NULL, '1.0000', '20.0000', '20.0000', '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 (71749, '2022-04-06', 1856, 68138, 4587, NULL, '1.0000', '4.2500', '4.2500', '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 (71750, '2022-04-06', 7628, 68139, 4587, NULL, '4.0000', '2.2900', '2.2900', '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 (71751, '2022-04-06', 2022, 68140, 4588, 20647, '1.0000', '3.5000', '3.5000', '5.0000', '5.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 (71752, '2022-04-06', 1584, 68141, 4588, 7601, '-37.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 (71753, '2022-04-06', 1584, 68141, 4588, NULL, '38.0000', '90.0000', '90.0000', '9.0000', '9.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71754, '2022-04-06', 1981, 68142, 4588, 33068, '1.0000', '9.5000', '9.5000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71755, '2022-04-06', 2506, 68143, 4588, 16244, '-4.0000', '3.4900', '3.4900', '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 (71756, '2022-04-06', 2506, 68143, 4588, NULL, '5.0000', '3.4900', '3.4900', '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 (71757, '2022-04-06', 1411, 68144, 4588, NULL, '1.0000', '25.9000', '25.9000', '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 (71758, '2022-04-06', 9508, 68145, 4588, NULL, '2.0000', '3.4000', '3.4000', '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 (71759, '2022-04-06', 7496, 68146, 4588, NULL, '1.0000', '0.9600', '0.9600', '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 (71760, '2022-04-06', 1651, 68147, 4588, 3222, '-54.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 (71761, '2022-04-06', 1651, 68147, 4588, NULL, '56.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71762, '2022-04-06', 1533, 68148, 4588, 10381, '-11.0000', '2.5917', '2.5917', '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 (71763, '2022-04-06', 1533, 68148, 4588, NULL, '12.0000', '2.5917', '2.5917', '5.5000', '5.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 (71764, '2022-04-06', 7381, 68149, 4588, 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 (71765, '2022-04-06', 1780, 68150, 4588, 3867, '-5.0000', '18.7146', '18.7146', '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 (71766, '2022-04-06', 1780, 68150, 4588, NULL, '6.0000', '18.7146', '18.7146', '51.0000', '51.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 (71767, '2022-04-06', 1783, 68151, 4588, 4901, '-24.0000', '7.8500', '7.8500', '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 (71768, '2022-04-06', 1783, 68151, 4588, NULL, '27.0000', '7.8500', '7.8500', '11.0000', '11.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 (71769, '2022-04-06', 1935, 68152, 4589, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71770, '2022-04-06', 2293, 68153, 4589, 51215, '3.0000', '10.2680', '10.2680', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71771, '2022-04-06', 9747, 68154, 4589, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71772, '2022-04-06', 1905, 68155, 4589, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71773, '2022-04-06', 1863, 68156, 4589, 52353, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71774, '2022-04-06', 9740, 68157, 4589, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71775, '2022-04-06', 2167, 68158, 4589, NULL, '2.0000', '1.7907', '1.7907', '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 (71776, '2022-04-06', 9482, 68159, 4589, 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 (71777, '2022-04-06', 1489, 68160, 4589, 50070, '1.0000', '36.0600', '36.0600', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71778, '2022-04-06', 2285, 68161, 4589, NULL, '1.0000', '35.2503', '35.2503', '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 (71779, '2022-04-06', 1432, 68162, 4589, 48153, '1.0000', '9.7698', '9.7698', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71780, '2022-04-06', 8615, 68163, 4589, NULL, '1.0000', '4.5000', '4.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 (71781, '2022-04-06', 7459, 68164, 4589, NULL, '10.0000', '-8.8866', '-8.8866', '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 (71782, '2022-04-06', 1871, 68165, 4589, NULL, '4.0000', '2.2081', '2.2081', '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 (71783, '2022-04-06', 2169, 68166, 4589, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71784, '2022-04-06', 1837, 68167, 4589, NULL, '1.0000', '2.5335', '2.5335', '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 (71785, '2022-04-06', 1905, 68168, 4589, 51374, '2.0000', '0.5277', '0.5277', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71786, '2022-04-06', 1837, 68169, 4589, NULL, '1.0000', '2.5335', '2.5335', '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 (71787, '2022-04-06', 2948, 68170, 4589, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71788, '2022-04-06', 2416, 68171, 4589, 53460, '1.0000', '1.2174', '1.2174', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71789, '2022-04-06', 2379, 68172, 4589, NULL, '1.0000', '0.2954', '0.2954', '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 (71790, '2022-04-06', 1837, 68173, 4589, NULL, '2.0000', '2.5335', '2.5335', '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 (71791, '2022-04-06', 8844, 68174, 4589, 52199, '1.0000', '4.7829', '4.7829', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71792, '2022-04-06', 2458, 68175, 4589, 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 (71793, '2022-04-06', 8068, 68176, 4589, NULL, '1.0000', '8.7900', '8.7900', '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 (71794, '2022-04-06', 2221, 68177, 4589, 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 (71795, '2022-04-06', 7459, 68178, 4589, NULL, '20.0000', '-8.8866', '-8.8866', '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 (71796, '2022-04-06', 1602, 68179, 4589, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '23.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71797, '2022-04-06', 9590, 68180, 4589, NULL, '1.0000', '-6.6667', '-6.6667', '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 (71798, '2022-04-06', 1501, 68181, 4589, NULL, '1.0000', '2.1784', '2.1784', '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 (71799, '2022-04-06', 9870, 68182, 4589, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71800, '2022-04-06', 8597, 68183, 4590, NULL, '1.0000', '67.5000', '67.5000', '89.0000', '89.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71801, '2022-04-06', 7991, 68184, 4590, NULL, '1.0000', '26.5700', '26.5700', '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 (71802, '2022-04-06', 9724, 68185, 4590, 51814, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71803, '2022-04-06', 1928, 68186, 4590, 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 (71804, '2022-04-06', 7657, 68187, 4590, NULL, '1.0000', '-70.3566', '-70.3566', '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 (71805, '2022-04-06', 2289, 68188, 4590, NULL, '4.0000', '2.5688', '2.5688', '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 (71806, '2022-04-06', 7704, 68189, 4590, NULL, '1.0000', '-1.5625', '-1.5625', '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 (71807, '2022-04-06', 1782, 68190, 4590, 46628, '1.0000', '-0.2748', '-0.2748', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71808, '2022-04-06', 1501, 68191, 4590, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71809, '2022-04-06', 9791, 68192, 4590, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '136.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71810, '2022-04-06', 2315, 68193, 4590, NULL, '2.0000', '0.8863', '0.8863', '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 (71811, '2022-04-06', 7428, 68194, 4590, 51281, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71812, '2022-04-06', 1935, 68195, 4590, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '143.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71813, '2022-04-06', 7980, 68196, 4590, NULL, '10.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (71814, '2022-04-06', 7459, 68197, 4590, NULL, '20.0000', '2.3300', '2.3300', '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 (71815, '2022-04-06', 2352, 68198, 4590, NULL, '5.0000', '1.9000', '1.9000', '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 (71816, '2022-04-06', 8746, 68199, 4590, 53611, '2.0000', '3.5540', '3.5540', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71817, '2022-04-06', 8666, 68200, 4590, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71818, '2022-04-06', 9635, 68201, 4590, 43125, '1.0000', '8.6800', '8.6800', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71819, '2022-04-06', 7741, 68202, 4590, NULL, '1.0000', '8.7284', '8.7284', '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 (71820, '2022-04-06', 7674, 68203, 4590, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '103.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71821, '2022-04-06', 9755, 68204, 4590, 46932, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71822, '2022-04-06', 2315, 68205, 4590, NULL, '1.0000', '0.8863', '0.8863', '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 (71823, '2022-04-06', 7411, 68206, 4590, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71824, '2022-04-06', 1501, 68207, 4590, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71825, '2022-04-06', 7782, 68208, 4590, NULL, '2.0000', '5.0000', '5.0000', '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 (71826, '2022-04-06', 7848, 68209, 4590, NULL, '1.0000', '-42.8700', '-42.8700', '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 (71827, '2022-04-06', 7713, 68210, 4590, 50666, '3.0000', '0.3910', '0.3910', '0.6000', '0.6000', '113.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71828, '2022-04-06', 7459, 68211, 4590, NULL, '9.0000', '2.3300', '2.3300', '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 (71829, '2022-04-06', 1420, 68212, 4590, 50809, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 418);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71830, '2022-04-06', 2100, 68213, 4590, 53513, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71831, '2022-04-06', 8927, 68214, 4590, NULL, '4.0000', '36.0000', '36.0000', '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 (71832, '2022-04-06', 2863, 68215, 4590, NULL, '25.0000', '0.2000', '0.2000', '0.3000', '0.3000', '-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 (71833, '2022-04-06', 7999, 68216, 4590, 46264, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71834, '2022-04-06', 8308, 68217, 4590, NULL, '1.0000', '25.0620', '25.0620', '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 (71835, '2022-04-06', 8135, 68218, 4590, NULL, '1.0000', '5.8990', '5.8990', '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 (71836, '2022-04-06', 9092, 68219, 4590, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '182.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71837, '2022-04-06', 1908, 68220, 4590, NULL, '1.0000', '1.7500', '1.7500', '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 (71838, '2022-04-06', 8075, 68221, 4590, NULL, '1.0000', '3.0000', '3.0000', '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 (71839, '2022-04-06', 9723, 68222, 4590, 51777, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71840, '2022-04-06', 7754, 68223, 4590, NULL, '1.0000', '4.1978', '4.1978', '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 (71841, '2022-04-06', 9275, 68224, 4590, NULL, '1.0000', '6.3000', '6.3000', '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 (71842, '2022-04-06', 7428, 68225, 4590, 51281, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71843, '2022-04-06', 8984, 68226, 4590, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '17.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71844, '2022-04-06', 8361, 68227, 4590, NULL, '1.0000', '7.2300', '7.2300', '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 (71845, '2022-04-06', 1338, 68228, 4590, 51830, '1.0000', '4.6009', '4.6009', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71846, '2022-04-06', 9856, 68229, 4591, 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 (71847, '2022-04-06', 1602, 68230, 4591, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71848, '2022-04-06', 1573, 68231, 4591, NULL, '1.0000', '23.1275', '23.1275', '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 (71849, '2022-04-06', 9831, 68232, 4591, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71850, '2022-04-06', 9848, 68233, 4591, 52152, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71851, '2022-04-06', 1602, 68234, 4591, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71852, '2022-04-06', 1782, 68235, 4591, 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 (71853, '2022-04-06', 7576, 68236, 4591, 37777, '1.0000', '6.9100', '6.9100', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71854, '2022-04-06', 1781, 68237, 4591, NULL, '1.0000', '5.3500', '5.3500', '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 (71855, '2022-04-06', 2088, 68238, 4591, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71856, '2022-04-06', 9576, 68239, 4591, 47133, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71857, '2022-04-06', 2948, 68240, 4591, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71858, '2022-04-06', 2454, 68241, 4591, 25150, '1.0000', '9.0840', '9.0840', '12.0000', '12.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 (71859, '2022-04-06', 9762, 68242, 4591, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71860, '2022-04-06', 1499, 68243, 4591, 52148, '3.0000', '0.3747', '0.3747', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71861, '2022-04-06', 2315, 68244, 4591, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '17.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71862, '2022-04-06', 2379, 68245, 4591, NULL, '1.0000', '0.2954', '0.2954', '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 (71863, '2022-04-06', 2440, 68246, 4591, 53431, '2.0000', '6.6336', '6.6336', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71864, '2022-04-06', 7381, 68247, 4591, 49866, '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 (71865, '2022-04-06', 1501, 68248, 4591, NULL, '1.0000', '2.1784', '2.1784', '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 (71866, '2022-04-06', 2169, 68249, 4591, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71867, '2022-04-06', 1346, 68250, 4591, 24923, '5.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '10.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 (71868, '2022-04-06', 7411, 68251, 4592, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71869, '2022-04-06', 7518, 68252, 4592, NULL, '1.0000', '9.3500', '9.3500', '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 (71870, '2022-04-06', 2847, 68253, 4593, 45131, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71871, '2022-04-06', 9579, 68254, 4593, 53711, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71872, '2022-04-06', 9579, 68255, 4593, 53711, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71873, '2022-04-06', 2169, 68256, 4593, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71874, '2022-04-06', 1528, 68257, 4593, 44554, '2.0000', '53.0619', '53.0619', '6.5000', '6.5000', '24.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71875, '2022-04-06', 2237, 68258, 4593, 52236, '1.0000', '1.3890', '1.3890', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71876, '2022-04-06', 2381, 68259, 4593, 50883, '1.0000', '5.5023', '5.5023', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71877, '2022-04-06', 2990, 68260, 4593, 46050, '1.0000', '4.1906', '4.1906', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71878, '2022-04-06', 8207, 68261, 4593, NULL, '1.0000', '0.0000', '0.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 (71879, '2022-04-06', 1935, 68262, 4593, 53273, '1.0000', '1.7523', '1.7523', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71880, '2022-04-06', 1665, 68263, 4593, 50867, '1.0000', '1.1792', '1.1792', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71881, '2022-04-06', 7398, 68264, 4593, NULL, '1.0000', '18.5000', '18.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 (71882, '2022-04-06', 7741, 68265, 4593, 52297, '1.0000', '-8.1573', '-8.1573', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71883, '2022-04-06', 2316, 68266, 4593, 49410, '1.0000', '47.6625', '47.6625', '53.0000', '53.0000', '2.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71884, '2022-04-06', 8982, 68267, 4593, 52898, '1.0000', '10.3335', '10.3335', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71885, '2022-04-06', 9715, 68268, 4593, 52243, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71886, '2022-04-07', 1501, 68269, 4594, NULL, '1.0000', '2.1784', '2.1784', '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 (71887, '2022-04-07', 1580, 68270, 4594, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71888, '2022-04-07', 2948, 68271, 4594, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71889, '2022-04-07', 2263, 68272, 4594, 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 (71890, '2022-04-07', 7532, 68273, 4594, 33150, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71891, '2022-04-07', 1502, 68274, 4594, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '19.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71892, '2022-04-07', 7411, 68275, 4594, NULL, '1.0000', '1.3013', '1.3013', '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 (71893, '2022-04-07', 7391, 68276, 4594, NULL, '1.0000', '15.6000', '15.6000', '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 (71894, '2022-04-07', 1743, 68277, 4594, NULL, '1.0000', '4.6550', '4.6550', '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 (71895, '2022-04-07', 9695, 68278, 4594, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '25.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71896, '2022-04-07', 2754, 68279, 4594, 18938, '4.0000', '0.0800', '0.0800', '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 (71897, '2022-04-07', 2545, 68280, 4594, 51330, '1.0000', '6.4337', '6.4337', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71898, '2022-04-07', 2296, 68281, 4594, 52334, '1.0000', '14.4550', '14.4550', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71899, '2022-04-07', 7685, 68282, 4594, NULL, '12.0000', '31.2000', '31.2000', '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 (71900, '2022-04-07', 1765, 68283, 4594, 53668, '1.0000', '5.4760', '5.4760', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71901, '2022-04-07', 2452, 68284, 4594, NULL, '1.0000', '2.5000', '2.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 (71902, '2022-04-07', 1736, 68285, 4594, NULL, '1.0000', '26.7000', '26.7000', '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 (71903, '2022-04-07', 2735, 68286, 4594, 19386, '1.0000', '13.7800', '13.7800', '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 (71904, '2022-04-07', 1310, 68287, 4594, 52211, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71905, '2022-04-07', 7925, 68288, 4594, NULL, '1.0000', '6.8000', '6.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 (71906, '2022-04-07', 1837, 68289, 4594, NULL, '5.0000', '2.5335', '2.5335', '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 (71907, '2022-04-07', 2242, 68290, 4594, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71908, '2022-04-07', 9839, 68291, 4594, NULL, '1.0000', '15.0200', '15.0200', '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 (71909, '2022-04-07', 7780, 68292, 4594, NULL, '2.0000', '2.6000', '2.6000', '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 (71910, '2022-04-07', 9740, 68293, 4594, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71911, '2022-04-07', 9762, 68294, 4594, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71912, '2022-04-07', 9843, 68295, 4594, 51247, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71913, '2022-04-07', 9815, 68296, 4594, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '9.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71914, '2022-04-07', 8017, 68297, 4594, NULL, '1.0000', '0.6000', '0.6000', '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 (71915, '2022-04-07', 9791, 68298, 4594, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71916, '2022-04-07', 2360, 68299, 4594, NULL, '1.0000', '0.5200', '0.5200', '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 (71917, '2022-04-07', 9832, 68300, 4594, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71918, '2022-04-07', 9831, 68301, 4594, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71919, '2022-04-07', 7519, 68302, 4594, NULL, '1.0000', '0.8800', '0.8800', '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 (71920, '2022-04-07', 1837, 68303, 4594, NULL, '1.0000', '2.5335', '2.5335', '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 (71921, '2022-04-07', 9740, 68304, 4594, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71922, '2022-04-07', 1702, 68305, 4594, NULL, '1.0000', '14.6666', '14.6666', '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 (71923, '2022-04-07', 1592, 68306, 4594, 48494, '1.0000', '34.8558', '34.8558', '47.5000', '47.5000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71924, '2022-04-07', 1863, 68307, 4594, 52353, '3.0000', '1.3923', '1.3923', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71925, '2022-04-07', 1905, 68308, 4594, 51374, '5.0000', '0.5277', '0.5277', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71926, '2022-04-07', 2315, 68309, 4594, 49255, '5.0000', '0.4851', '0.4851', '0.8000', '0.8000', '12.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71927, '2022-04-07', 2131, 68310, 4594, 53418, '1.0000', '7.5500', '7.5500', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71928, '2022-04-07', 7866, 68311, 4594, NULL, '3.0000', '2.5000', '2.5000', '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 (71929, '2022-04-07', 7324, 68312, 4594, 51663, '2.0000', '5.4813', '5.4813', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71930, '2022-04-07', 7744, 68313, 4595, NULL, '1.0000', '2.5833', '2.5833', '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 (71931, '2022-04-07', 1665, 68314, 4595, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71932, '2022-04-07', 1504, 68315, 4595, 51480, '10.0000', '1.9591', '1.9591', '2.4000', '2.4000', '20.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71933, '2022-04-07', 7532, 68316, 4595, NULL, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71934, '2022-04-07', 8133, 68317, 4595, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (71935, '2022-04-07', 1912, 68318, 4595, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71936, '2022-04-07', 7744, 68319, 4596, NULL, '1.0000', '2.5833', '2.5833', '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 (71937, '2022-04-07', 1665, 68320, 4596, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71938, '2022-04-07', 1504, 68321, 4596, 51480, '10.0000', '1.9591', '1.9591', '2.4000', '2.4000', '10.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71939, '2022-04-07', 7532, 68322, 4596, NULL, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71940, '2022-04-07', 8133, 68323, 4596, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (71941, '2022-04-07', 1912, 68324, 4596, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71942, '2022-04-07', 9240, 68325, 4597, NULL, '1.0000', '25.1200', '25.1200', '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 (71943, '2022-04-07', 7782, 68326, 4597, 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 (71944, '2022-04-07', 7518, 68327, 4597, NULL, '1.0000', '7.8200', '7.8200', '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 (71945, '2022-04-07', 7530, 68328, 4597, NULL, '1.0000', '7.7000', '7.7000', '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 (71946, '2022-04-07', 7334, 68329, 4597, NULL, '1.0000', '8.2300', '8.2300', '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 (71947, '2022-04-07', 8063, 68330, 4597, NULL, '1.0000', '1.6000', '1.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 (71948, '2022-04-07', 7769, 68331, 4597, 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 (71949, '2022-04-07', 7579, 68332, 4597, NULL, '2.0000', '15.0000', '15.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 (71950, '2022-04-07', 2315, 68333, 4597, 2735, '-239.0000', '0.3300', '0.3300', '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 (71951, '2022-04-07', 2315, 68333, 4597, NULL, '242.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-242.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71952, '2022-04-07', 9579, 68334, 4597, 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 (71953, '2022-04-07', 2061, 68335, 4597, 2164, '-3.0000', '10.9800', '10.9800', '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 (71954, '2022-04-07', 2061, 68335, 4597, NULL, '4.0000', '10.9800', '10.9800', '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 (71955, '2022-04-07', 2839, 68336, 4597, NULL, '1.0000', '4.5000', '4.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 (71956, '2022-04-07', 9800, 68337, 4597, NULL, '1.0000', '14.0000', '14.0000', '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 (71957, '2022-04-07', 8753, 68338, 4597, 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 (71958, '2022-04-07', 7824, 68339, 4597, NULL, '2.0000', '8.0000', '8.0000', '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 (71959, '2022-04-07', 2242, 68340, 4597, 20608, '6.0000', '0.4800', '0.4800', '1.0000', '1.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 (71960, '2022-04-07', 7562, 68341, 4597, NULL, '1.0000', '5.5300', '5.5300', '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 (71961, '2022-04-07', 7886, 68342, 4597, 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 (71962, '2022-04-07', 1498, 68343, 4597, 19685, '-38.0000', '0.3300', '0.3300', '0.6000', '0.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 (71963, '2022-04-07', 1498, 68343, 4597, NULL, '40.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-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 (71964, '2022-04-07', 7473, 68344, 4597, NULL, '1.0000', '0.5300', '0.5300', '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 (71965, '2022-04-07', 2442, 68345, 4597, 5312, '-6.0000', '4.8000', '4.8000', '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 (71966, '2022-04-07', 2442, 68345, 4597, NULL, '7.0000', '4.8000', '4.8000', '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 (71967, '2022-04-07', 9092, 68346, 4597, NULL, '1.0000', '5.2900', '5.2900', '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 (71968, '2022-04-07', 2284, 68347, 4597, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.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 (71969, '2022-04-07', 7736, 68348, 4597, NULL, '1.0000', '16.2000', '16.2000', '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 (71970, '2022-04-07', 8325, 68349, 4597, 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 (71971, '2022-04-07', 7999, 68350, 4597, NULL, '1.0000', '1.7500', '1.7500', '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 (71972, '2022-04-07', 1550, 68351, 4597, NULL, '3.0000', '13.9000', '13.9000', '19.5000', '19.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 (71973, '2022-04-07', 2289, 68352, 4597, 2949, '-103.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 (71974, '2022-04-07', 2289, 68352, 4597, NULL, '105.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71975, '2022-04-07', 1501, 68353, 4597, NULL, '1.0000', '2.0500', '2.0500', '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 (71976, '2022-04-07', 1840, 68354, 4597, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (71977, '2022-04-07', 1665, 68355, 4598, 3235, '-94.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 (71978, '2022-04-07', 1665, 68355, 4598, NULL, '95.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71979, '2022-04-07', 1961, 68356, 4598, 4501, '-3.0000', '20.4530', '20.4530', '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 (71980, '2022-04-07', 1961, 68356, 4598, NULL, '4.0000', '20.4530', '20.4530', '22.0000', '22.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 (71981, '2022-04-07', 2135, 68357, 4598, 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 (71982, '2022-04-07', 1888, 68358, 4598, 14663, '-3.0000', '134.8400', '134.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 (71983, '2022-04-07', 1888, 68358, 4598, NULL, '4.0000', '134.8400', '134.8400', '22.0000', '22.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 (71984, '2022-04-07', 7411, 68359, 4598, NULL, '1.0000', '1.3500', '1.3500', '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 (71985, '2022-04-07', 9839, 68360, 4598, NULL, '1.0000', '15.0200', '15.0200', '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 (71986, '2022-04-07', 2657, 68361, 4598, 11267, '-13.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 (71987, '2022-04-07', 2657, 68361, 4598, NULL, '14.0000', '5.4200', '5.4200', '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 (71988, '2022-04-07', 1672, 68362, 4598, 7384, '-95.0000', '2.8700', '2.8700', '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 (71989, '2022-04-07', 1672, 68362, 4598, NULL, '105.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71990, '2022-04-07', 2916, 68363, 4598, 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 (71991, '2022-04-07', 1620, 68364, 4598, 8955, '-31.0000', '408.8259', '408.8259', '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 (71992, '2022-04-07', 1620, 68364, 4598, NULL, '35.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71993, '2022-04-07', 1609, 68365, 4598, 8729, '-2.0000', '12.0000', '12.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 (71994, '2022-04-07', 1609, 68365, 4598, NULL, '3.0000', '12.0000', '12.0000', '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 (71995, '2022-04-07', 1584, 68366, 4598, 7601, '-38.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 (71996, '2022-04-07', 1584, 68366, 4598, NULL, '41.0000', '90.0000', '90.0000', '9.0000', '9.0000', '-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 (71997, '2022-04-07', 1425, 68367, 4598, NULL, '1.0000', '6.4405', '6.4405', '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 (71998, '2022-04-07', 1674, 68368, 4598, NULL, '1.0000', '3.6000', '3.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 (71999, '2022-04-07', 2633, 68369, 4598, 17589, '-6.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 (72000, '2022-04-07', 2633, 68369, 4598, NULL, '7.0000', '3.5000', '3.5000', '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 (72001, '2022-04-07', 8395, 68370, 4598, NULL, '4.0000', '0.9700', '0.9700', '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 (72002, '2022-04-07', 1645, 68371, 4598, 3217, '-7.0000', '4.7200', '4.7200', '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 (72003, '2022-04-07', 1645, 68371, 4598, NULL, '8.0000', '4.7200', '4.7200', '8.5000', '8.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 (72004, '2022-04-07', 7411, 68372, 4598, NULL, '1.0000', '1.3500', '1.3500', '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 (72005, '2022-04-07', 2038, 68373, 4598, 6390, '-1.0000', '10.5000', '10.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 (72006, '2022-04-07', 2038, 68373, 4598, NULL, '2.0000', '10.5000', '10.5000', '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 (72007, '2022-04-07', 8767, 68374, 4599, 52035, '1.0000', '7.1000', '7.1000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72008, '2022-04-07', 8350, 68375, 4599, NULL, '1.0000', '12.0000', '12.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 (72009, '2022-04-07', 1762, 68376, 4599, 51096, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72010, '2022-04-07', 8444, 68377, 4599, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72011, '2022-04-07', 9445, 68378, 4599, 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 (72012, '2022-04-07', 7514, 68379, 4599, NULL, '1.0000', '932.5375', '932.5375', '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 (72013, '2022-04-07', 7482, 68380, 4599, 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 (72014, '2022-04-07', 9092, 68381, 4599, 52527, '7.0000', '0.3175', '0.3175', '0.5000', '0.5000', '175.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72015, '2022-04-07', 3001, 68382, 4599, NULL, '2.0000', '1.5000', '1.5000', '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 (72016, '2022-04-07', 7667, 68383, 4599, 43447, '1.0000', '8.6120', '8.6120', '9.0000', '9.0000', '20.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72017, '2022-04-07', 9791, 68384, 4599, 50485, '4.0000', '0.9000', '0.9000', '1.5000', '1.5000', '132.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72018, '2022-04-07', 7378, 68385, 4599, 51258, '1.0000', '158.5000', '158.5000', '209.5000', '209.5000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72019, '2022-04-07', 7379, 68386, 4599, 53503, '1.0000', '7.7966', '7.7966', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72020, '2022-04-07', 7708, 68387, 4599, NULL, '1.0000', '-53.8964', '-53.8964', '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 (72021, '2022-04-07', 7886, 68388, 4599, NULL, '1.0000', '6.7841', '6.7841', '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 (72022, '2022-04-07', 8965, 68389, 4599, NULL, '2.0000', '52.9900', '52.9900', '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 (72023, '2022-04-07', 7719, 68390, 4599, NULL, '1.0000', '7.0021', '7.0021', '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 (72024, '2022-04-07', 7782, 68391, 4599, NULL, '1.0000', '5.0000', '5.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 (72025, '2022-04-07', 7428, 68392, 4599, 51281, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72026, '2022-04-07', 7892, 68393, 4599, NULL, '1.0000', '4.2000', '4.2000', '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 (72027, '2022-04-07', 7799, 68394, 4599, NULL, '1.0000', '4.7214', '4.7214', '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 (72028, '2022-04-07', 2100, 68395, 4599, 53513, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72029, '2022-04-07', 9303, 68396, 4599, NULL, '1.0000', '9.0000', '9.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 (72030, '2022-04-07', 7672, 68397, 4599, NULL, '1.0000', '3.8200', '3.8200', '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 (72031, '2022-04-07', 7674, 68398, 4599, 52725, '2.0000', '197.1282', '197.1282', '2.0000', '2.0000', '101.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72032, '2022-04-07', 7482, 68399, 4599, 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 (72033, '2022-04-07', 7385, 68400, 4599, 51081, '3.0000', '15.9587', '15.9587', '3.0000', '3.0000', '89.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72034, '2022-04-07', 8607, 68401, 4599, 52532, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72035, '2022-04-07', 8596, 68402, 4599, NULL, '1.0000', '18.5278', '18.5278', '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 (72036, '2022-04-07', 2906, 68403, 4599, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72037, '2022-04-07', 9631, 68404, 4599, 45866, '1.0000', '7.0000', '7.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72038, '2022-04-07', 7886, 68405, 4599, NULL, '1.0000', '6.7841', '6.7841', '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 (72039, '2022-04-07', 2169, 68406, 4600, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72040, '2022-04-07', 2762, 68407, 4600, 53263, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72041, '2022-04-07', 1602, 68408, 4600, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72042, '2022-04-07', 1812, 68409, 4600, 53691, '1.0000', '8.0465', '8.0465', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72043, '2022-04-07', 1837, 68410, 4600, 46752, '2.0000', '0.4981', '0.4981', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72044, '2022-04-07', 2660, 68411, 4600, 49531, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72045, '2022-04-07', 1409, 68412, 4600, 52275, '1.0000', '13.0590', '13.0590', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72046, '2022-04-07', 3058, 68413, 4600, 52271, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72047, '2022-04-07', 9747, 68414, 4600, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72048, '2022-04-07', 9695, 68415, 4600, 52314, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72049, '2022-04-07', 9566, 68416, 4600, 52290, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72050, '2022-04-07', 3058, 68417, 4600, 52271, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72051, '2022-04-07', 2020, 68418, 4600, 53258, '1.0000', '5.3849', '5.3849', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72052, '2022-04-07', 2237, 68419, 4600, 52236, '2.0000', '1.3890', '1.3890', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72053, '2022-04-07', 2315, 68420, 4600, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '175.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72054, '2022-04-07', 3057, 68421, 4600, 49066, '1.0000', '3.2700', '3.2700', '4.0000', '4.0000', '33.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72055, '2022-04-07', 1651, 68422, 4600, 52273, '1.0000', '6.7692', '6.7692', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72056, '2022-04-07', 9734, 68423, 4601, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72057, '2022-04-07', 9320, 68424, 4601, 51285, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72058, '2022-04-07', 1501, 68425, 4602, NULL, '1.0000', '2.1784', '2.1784', '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 (72059, '2022-04-07', 9482, 68426, 4602, NULL, '2.0000', '0.5000', '0.5000', '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 (72060, '2022-04-07', 2315, 68427, 4602, 49255, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '11.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72061, '2022-04-07', 9740, 68428, 4602, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72062, '2022-04-07', 2444, 68429, 4602, 51937, '1.0000', '8.2652', '8.2652', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72063, '2022-04-07', 9736, 68430, 4602, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72064, '2022-04-07', 9831, 68431, 4602, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72065, '2022-04-07', 1856, 68432, 4602, NULL, '1.0000', '4.9999', '4.9999', '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 (72066, '2022-04-07', 1521, 68433, 4602, 48883, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72067, '2022-04-07', 1841, 68434, 4602, NULL, '2.0000', '0.2601', '0.2601', '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 (72068, '2022-04-07', 7411, 68435, 4602, NULL, '1.0000', '1.3013', '1.3013', '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 (72069, '2022-04-07', 1425, 68436, 4602, 52344, '1.0000', '5.1721', '5.1721', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72070, '2022-04-07', 7915, 68437, 4602, NULL, '1.0000', '2.8000', '2.8000', '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 (72071, '2022-04-07', 7411, 68438, 4602, NULL, '1.0000', '1.3013', '1.3013', '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 (72072, '2022-04-07', 9734, 68439, 4602, 52161, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '11.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72073, '2022-04-07', 2169, 68440, 4602, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72074, '2022-04-07', 2221, 68441, 4602, 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 (72075, '2022-04-07', 2342, 68442, 4602, 52181, '3.0000', '1.9641', '1.9641', '2.7000', '2.7000', '27.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72076, '2022-04-07', 9748, 68443, 4602, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72077, '2022-04-07', 9649, 68444, 4602, NULL, '1.0000', '14.2780', '14.2780', '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 (72078, '2022-04-07', 7915, 68445, 4602, NULL, '1.0000', '2.8000', '2.8000', '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 (72079, '2022-04-07', 1825, 68446, 4602, 52350, '1.0000', '5.6803', '5.6803', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72080, '2022-04-07', 1446, 68447, 4602, NULL, '1.0000', '4.8156', '4.8156', '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 (72081, '2022-04-07', 2444, 68448, 4602, 51937, '1.0000', '8.2652', '8.2652', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72082, '2022-04-07', 2506, 68449, 4602, NULL, '1.0000', '4.2640', '4.2640', '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 (72083, '2022-04-07', 1837, 68450, 4602, NULL, '3.0000', '2.5335', '2.5335', '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 (72084, '2022-04-07', 1787, 68451, 4602, NULL, '1.0000', '0.5000', '0.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 (72085, '2022-04-07', 2283, 68452, 4602, 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 (72086, '2022-04-07', 2811, 68453, 4602, 43241, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72087, '2022-04-07', 9750, 68454, 4602, NULL, '1.0000', '3.3000', '3.3000', '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 (72088, '2022-04-07', 9294, 68455, 4602, 33162, '1.0000', '3.4000', '3.4000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72089, '2022-04-07', 2105, 68456, 4602, 52224, '2.0000', '2.4500', '2.4500', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72090, '2022-04-07', 9109, 68457, 4602, 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 (72091, '2022-04-07', 2242, 68458, 4602, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72092, '2022-04-07', 1880, 68459, 4602, 49320, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72093, '2022-04-07', 2169, 68460, 4602, 53643, '2.0000', '1.3110', '1.3110', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72094, '2022-04-07', 8539, 68461, 4602, NULL, '1.0000', '0.5200', '0.5200', '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 (72095, '2022-04-07', 7780, 68462, 4602, NULL, '1.0000', '2.6000', '2.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 (72096, '2022-04-07', 2169, 68463, 4602, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72097, '2022-04-07', 9732, 68464, 4602, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72098, '2022-04-07', 2643, 68465, 4602, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72099, '2022-04-07', 2061, 68466, 4602, NULL, '1.0000', '11.0146', '11.0146', '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 (72100, '2022-04-07', 1810, 68467, 4602, NULL, '1.0000', '9.7936', '9.7936', '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 (72101, '2022-04-07', 8183, 68468, 4602, NULL, '1.0000', '232.5300', '232.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 (72102, '2022-04-07', 2270, 68469, 4602, 53683, '1.0000', '-1.0000', '-1.0000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72103, '2022-04-07', 2315, 68470, 4602, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '10.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72104, '2022-04-07', 7411, 68471, 4602, NULL, '1.0000', '1.3013', '1.3013', '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 (72105, '2022-04-07', 2810, 68472, 4602, 24934, '10.0000', '6788008906.4158', '6788008906.4158', '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 (72106, '2022-04-07', 9748, 68473, 4602, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72107, '2022-04-07', 9604, 68474, 4602, NULL, '1.0000', '2.0000', '2.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 (72108, '2022-04-07', 9831, 68475, 4602, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72109, '2022-04-07', 9750, 68476, 4602, NULL, '1.0000', '3.3000', '3.3000', '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 (72110, '2022-04-07', 2283, 68477, 4602, 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 (72111, '2022-04-07', 9831, 68478, 4602, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72112, '2022-04-07', 1812, 68479, 4602, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72113, '2022-04-07', 2444, 68480, 4602, 51937, '1.0000', '8.2652', '8.2652', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72114, '2022-04-07', 2244, 68481, 4602, 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 (72115, '2022-04-07', 2315, 68482, 4602, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '10.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72116, '2022-04-07', 2765, 68483, 4602, NULL, '1.0000', '5.3000', '5.3000', '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 (72117, '2022-04-07', 1668, 68484, 4602, 53212, '1.0000', '30.9026', '30.9026', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72118, '2022-04-07', 9750, 68485, 4602, NULL, '1.0000', '3.3000', '3.3000', '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 (72119, '2022-04-07', 7514, 68486, 4602, NULL, '1.0000', '2.2500', '2.2500', '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 (72120, '2022-04-07', 2582, 68487, 4602, NULL, '1.0000', '11.5000', '11.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 (72121, '2022-04-07', 7802, 68488, 4602, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72122, '2022-04-07', 9831, 68489, 4602, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72123, '2022-04-07', 9830, 68490, 4602, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72124, '2022-04-07', 9731, 68491, 4602, 52153, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72125, '2022-04-07', 1521, 68492, 4602, 48883, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72126, '2022-04-07', 9737, 68493, 4602, NULL, '1.0000', '7.3000', '7.3000', '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 (72127, '2022-04-07', 2740, 68494, 4602, NULL, '1.0000', '9.8871', '9.8871', '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 (72128, '2022-04-07', 2167, 68495, 4602, NULL, '1.0000', '1.7907', '1.7907', '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 (72129, '2022-04-07', 2169, 68496, 4602, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72130, '2022-04-07', 7514, 68497, 4602, NULL, '1.0000', '2.2500', '2.2500', '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 (72131, '2022-04-07', 2891, 68498, 4602, 52213, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72132, '2022-04-07', 8444, 68499, 4602, 47055, '2.0000', '1.6000', '1.6000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72133, '2022-04-07', 9695, 68500, 4602, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72134, '2022-04-07', 9532, 68501, 4602, 53434, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72135, '2022-04-07', 7317, 68502, 4602, NULL, '1.0000', '19.5500', '19.5500', '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 (72136, '2022-04-07', 1935, 68503, 4602, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72137, '2022-04-07', 2169, 68504, 4602, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72138, '2022-04-07', 2567, 68505, 4602, 53635, '1.0000', '32.8217', '32.8217', '46.0000', '46.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72139, '2022-04-07', 1783, 68506, 4602, 52169, '3.0000', '15.0312', '15.0312', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72140, '2022-04-07', 2260, 68507, 4602, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72141, '2022-04-07', 1665, 68508, 4602, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72142, '2022-04-07', 7333, 68509, 4602, NULL, '1.0000', '13.5000', '13.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 (72143, '2022-04-07', 2036, 68510, 4602, 22535, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '1.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 (72144, '2022-04-07', 9842, 68511, 4602, 51251, '1.0000', '5.6200', '5.6200', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72145, '2022-04-07', 2242, 68512, 4602, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72146, '2022-04-07', 7483, 68513, 4602, NULL, '1.0000', '0.4200', '0.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 (72147, '2022-04-07', 8774, 68514, 4602, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72148, '2022-04-07', 1338, 68515, 4602, 51235, '1.0000', '4.3814', '4.3814', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72149, '2022-04-07', 9482, 68516, 4602, 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 (72150, '2022-04-07', 7514, 68517, 4602, NULL, '1.0000', '2.2500', '2.2500', '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 (72151, '2022-04-07', 2379, 68518, 4602, NULL, '1.0000', '0.2954', '0.2954', '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 (72152, '2022-04-07', 7411, 68519, 4602, NULL, '1.0000', '1.3013', '1.3013', '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 (72153, '2022-04-07', 2643, 68520, 4602, 53459, '2.0000', '0.9343', '0.9343', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72154, '2022-04-07', 1851, 68521, 4603, 52259, '1.0000', '12.9288', '12.9288', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72155, '2022-04-07', 2354, 68522, 4603, 53253, '1.0000', '5.2727', '5.2727', '6.8600', '6.8600', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72156, '2022-04-07', 7780, 68523, 4603, NULL, '1.0000', '2.6000', '2.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 (72157, '2022-04-07', 3058, 68524, 4603, 52271, '3.0000', '4.2000', '4.2000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72158, '2022-04-07', 1731, 68525, 4603, 49106, '1.0000', '19.8314', '19.8314', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72159, '2022-04-08', 2100, 68526, 4604, 41418, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72160, '2022-04-08', 2379, 68527, 4604, NULL, '1.0000', '0.2954', '0.2954', '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 (72161, '2022-04-08', 7472, 68528, 4604, NULL, '1.0000', '-0.2237', '-0.2237', '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 (72162, '2022-04-08', 7411, 68529, 4604, NULL, '1.0000', '1.3013', '1.3013', '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 (72163, '2022-04-08', 9330, 68530, 4604, 53672, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72164, '2022-04-08', 1501, 68531, 4604, NULL, '1.0000', '2.1784', '2.1784', '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 (72165, '2022-04-08', 1804, 68532, 4604, 48590, '1.0000', '4.3180', '4.3180', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72166, '2022-04-08', 7342, 68533, 4604, NULL, '1.0000', '15.7285', '15.7285', '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 (72167, '2022-04-08', 7825, 68534, 4604, NULL, '1.0000', '6.5000', '6.5000', '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 (72168, '2022-04-08', 1860, 68535, 4604, 51335, '1.0000', '30.2625', '30.2625', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72169, '2022-04-08', 9482, 68536, 4604, 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 (72170, '2022-04-08', 1346, 68537, 4604, 24923, '5.0000', '-4.0305', '-4.0305', '1.5000', '1.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 (72171, '2022-04-08', 8743, 68538, 4604, NULL, '1.0000', '10.5000', '10.5000', '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 (72172, '2022-04-08', 9832, 68539, 4604, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72173, '2022-04-08', 7802, 68540, 4604, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72174, '2022-04-08', 2643, 68541, 4604, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72175, '2022-04-08', 2448, 68542, 4604, 23980, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '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 (72176, '2022-04-08', 1646, 68543, 4605, 53661, '1.0000', '5.5398', '5.5398', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72177, '2022-04-08', 7519, 68544, 4605, NULL, '1.0000', '0.8800', '0.8800', '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 (72178, '2022-04-08', 9750, 68545, 4605, NULL, '1.0000', '3.3000', '3.3000', '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 (72179, '2022-04-08', 8288, 68546, 4606, NULL, '5.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (72180, '2022-04-08', 7709, 68547, 4606, NULL, '2.0000', '3.5000', '3.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 (72181, '2022-04-08', 2315, 68548, 4606, 2735, '-242.0000', '0.3300', '0.3300', '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 (72182, '2022-04-08', 2315, 68548, 4606, NULL, '244.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-244.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72183, '2022-04-08', 1837, 68549, 4606, 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 (72184, '2022-04-08', 9785, 68550, 4606, 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 (72185, '2022-04-08', 1446, 68551, 4606, 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 (72186, '2022-04-08', 8318, 68552, 4606, NULL, '1.0000', '5.5000', '5.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 (72187, '2022-04-08', 7847, 68553, 4606, 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 (72188, '2022-04-08', 7641, 68554, 4606, NULL, '1.0000', '1.9000', '1.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 (72189, '2022-04-08', 7518, 68555, 4606, NULL, '1.0000', '7.8200', '7.8200', '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 (72190, '2022-04-08', 7530, 68556, 4606, NULL, '1.0000', '7.7000', '7.7000', '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 (72191, '2022-04-08', 9092, 68557, 4606, NULL, '2.0000', '5.2900', '5.2900', '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 (72192, '2022-04-08', 1935, 68558, 4606, 5586, '-61.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 (72193, '2022-04-08', 1935, 68558, 4606, NULL, '62.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72194, '2022-04-08', 9734, 68559, 4606, NULL, '2.0000', '0.3200', '0.3200', '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 (72195, '2022-04-08', 9178, 68560, 4606, 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 (72196, '2022-04-08', 7641, 68561, 4606, NULL, '1.0000', '1.9000', '1.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 (72197, '2022-04-08', 1501, 68562, 4606, NULL, '1.0000', '2.0500', '2.0500', '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 (72198, '2022-04-08', 8813, 68563, 4606, NULL, '1.0000', '17.6000', '17.6000', '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 (72199, '2022-04-08', 8309, 68564, 4606, NULL, '1.0000', '14.5000', '14.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 (72200, '2022-04-08', 2034, 68565, 4606, 6387, '-1.0000', '6.0000', '6.0000', '9.5000', '9.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 (72201, '2022-04-08', 2034, 68565, 4606, NULL, '2.0000', '6.0000', '6.0000', '9.5000', '9.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 (72202, '2022-04-08', 7769, 68566, 4607, 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 (72203, '2022-04-08', 7904, 68567, 4607, NULL, '1.0000', '8.0000', '8.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 (72204, '2022-04-08', 9272, 68568, 4607, NULL, '1.0000', '3.1000', '3.1000', '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 (72205, '2022-04-08', 7587, 68569, 4607, NULL, '1.0000', '6.3886', '6.3886', '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 (72206, '2022-04-08', 7933, 68570, 4607, NULL, '1.0000', '0.3245', '0.3245', '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 (72207, '2022-04-08', 7947, 68571, 4607, NULL, '4.0000', '14.4400', '14.4400', '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 (72208, '2022-04-08', 7780, 68572, 4607, NULL, '1.0000', '-8.7461', '-8.7461', '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 (72209, '2022-04-08', 9303, 68573, 4607, NULL, '1.0000', '9.0000', '9.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 (72210, '2022-04-08', 9151, 68574, 4607, 51790, '1.0000', '9.7000', '9.7000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72211, '2022-04-08', 8135, 68575, 4607, NULL, '1.0000', '5.8990', '5.8990', '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 (72212, '2022-04-08', 9092, 68576, 4607, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '172.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72213, '2022-04-08', 7781, 68577, 4607, NULL, '3.0000', '4.2500', '4.2500', '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 (72214, '2022-04-08', 7981, 68578, 4607, 52736, '10.0000', '3.3321', '3.3321', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72215, '2022-04-08', 9740, 68579, 4607, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72216, '2022-04-08', 7482, 68580, 4607, 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 (72217, '2022-04-08', 7880, 68581, 4607, NULL, '1.0000', '1.0000', '1.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 (72218, '2022-04-08', 9300, 68582, 4607, NULL, '1.0000', '3.0968', '3.0968', '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 (72219, '2022-04-08', 7634, 68583, 4607, NULL, '1.0000', '1.8000', '1.8000', '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 (72220, '2022-04-08', 7473, 68584, 4607, 51825, '3.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72221, '2022-04-08', 7703, 68585, 4607, NULL, '1.0000', '102.7757', '102.7757', '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 (72222, '2022-04-08', 1855, 68586, 4607, 49820, '1.0000', '1.4365', '1.4365', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72223, '2022-04-08', 7472, 68587, 4607, NULL, '1.0000', '-11.6639', '-11.6639', '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 (72224, '2022-04-08', 9734, 68588, 4607, 46910, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '56.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72225, '2022-04-08', 7708, 68589, 4607, NULL, '1.0000', '-53.8964', '-53.8964', '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 (72226, '2022-04-08', 2315, 68590, 4607, NULL, '3.0000', '0.8863', '0.8863', '0.8000', '0.8000', '-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 (72227, '2022-04-08', 2104, 68591, 4607, NULL, '2.0000', '0.2000', '0.2000', '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 (72228, '2022-04-08', 9736, 68592, 4607, 51795, '1.0000', '3.9253', '3.9253', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72229, '2022-04-08', 7432, 68593, 4607, 51785, '1.0000', '3.7506', '3.7506', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72230, '2022-04-08', 7632, 68594, 4607, 46260, '1.0000', '10.5363', '10.5363', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72231, '2022-04-08', 2295, 68595, 4607, NULL, '3.0000', '0.7000', '0.7000', '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 (72232, '2022-04-08', 7781, 68596, 4607, NULL, '6.0000', '4.2500', '4.2500', '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 (72233, '2022-04-08', 7482, 68597, 4607, 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 (72234, '2022-04-08', 7657, 68598, 4607, NULL, '2.0000', '-70.3566', '-70.3566', '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 (72235, '2022-04-08', 7762, 68599, 4607, 52466, '1.0000', '-4.7001', '-4.7001', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72236, '2022-04-08', 7428, 68600, 4607, 51281, '3.0000', '56.1257', '56.1257', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72237, '2022-04-08', 7428, 68600, 4607, 50471, '1.0000', '56.1257', '56.1257', '4.5000', '4.5000', '98.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72238, '2022-04-08', 8666, 68601, 4607, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72239, '2022-04-08', 9740, 68602, 4607, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72240, '2022-04-08', 9320, 68603, 4607, 51285, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72241, '2022-04-08', 2284, 68604, 4607, 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 (72242, '2022-04-08', 7454, 68605, 4607, 48346, '1.0000', '26.5133', '26.5133', '77.0000', '77.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72243, '2022-04-08', 8158, 68606, 4607, NULL, '1.0000', '22.0000', '22.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 (72244, '2022-04-08', 8481, 68607, 4607, NULL, '1.0000', '28.6576', '28.6576', '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 (72245, '2022-04-08', 2287, 68608, 4607, NULL, '2.0000', '2.3000', '2.3000', '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 (72246, '2022-04-08', 7831, 68609, 4607, NULL, '1.0000', '22.5000', '22.5000', '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 (72247, '2022-04-08', 9698, 68610, 4607, 51006, '1.0000', '7.4353', '7.4353', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72248, '2022-04-08', 8851, 68611, 4607, NULL, '2.0000', '16.6600', '16.6600', '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 (72249, '2022-04-08', 7781, 68612, 4607, NULL, '3.0000', '4.2500', '4.2500', '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 (72250, '2022-04-08', 9177, 68613, 4607, NULL, '10.0000', '2.2517', '2.2517', '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 (72251, '2022-04-08', 7708, 68614, 4607, NULL, '1.0000', '-53.8964', '-53.8964', '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 (72252, '2022-04-08', 8200, 68615, 4607, NULL, '1.0000', '6.2600', '6.2600', '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 (72253, '2022-04-08', 2440, 68616, 4607, 52007, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72254, '2022-04-08', 2005, 68617, 4607, NULL, '1.0000', '2.3300', '2.3300', '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 (72255, '2022-04-08', 7744, 68618, 4607, NULL, '1.0000', '2.7200', '2.7200', '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 (72256, '2022-04-08', 2035, 68619, 4607, NULL, '1.0000', '5.2000', '5.2000', '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 (72257, '2022-04-08', 9272, 68620, 4607, NULL, '1.0000', '3.1000', '3.1000', '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 (72258, '2022-04-08', 9480, 68621, 4607, 39402, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72259, '2022-04-08', 8074, 68622, 4607, 50684, '1.0000', '24.0999', '24.0999', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72260, '2022-04-08', 7672, 68623, 4607, NULL, '1.0000', '3.8200', '3.8200', '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 (72261, '2022-04-08', 7930, 68624, 4607, 50993, '1.0000', '1.5333', '1.5333', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72262, '2022-04-08', 8000, 68625, 4607, NULL, '2.0000', '1674.2861', '1674.2861', '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 (72263, '2022-04-08', 1760, 68626, 4607, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72264, '2022-04-08', 7993, 68627, 4607, 52462, '1.0000', '38.7333', '38.7333', '51.5000', '51.5000', '0.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72265, '2022-04-08', 7993, 68627, 4607, NULL, '1.0000', '38.7333', '38.7333', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72266, '2022-04-08', 7518, 68628, 4607, NULL, '1.0000', '9.3500', '9.3500', '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 (72267, '2022-04-08', 9852, 68629, 4607, 51843, '2.0000', '19.0000', '19.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72268, '2022-04-08', 7736, 68630, 4607, NULL, '1.0000', '-6.4252', '-6.4252', '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 (72269, '2022-04-08', 8038, 68631, 4607, NULL, '1.0000', '6.4949', '6.4949', '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 (72270, '2022-04-08', 2503, 68632, 4607, 43959, '1.0000', '15.0899', '15.0899', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72271, '2022-04-08', 8324, 68633, 4607, NULL, '1.0000', '5.0011', '5.0011', '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 (72272, '2022-04-08', 9819, 68634, 4607, 50717, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72273, '2022-04-08', 1331, 68635, 4607, 52469, '1.0000', '120.9730', '120.9730', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72274, '2022-04-08', 7523, 68636, 4607, NULL, '1.0000', '9.7000', '9.7000', '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 (72275, '2022-04-08', 7847, 68637, 4607, 52016, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72276, '2022-04-08', 9720, 68638, 4607, NULL, '1.0000', '10.6000', '10.6000', '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 (72277, '2022-04-08', 7519, 68639, 4607, 46682, '1.0000', '14.5200', '14.5200', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72278, '2022-04-08', 7608, 68640, 4607, 53768, '1.0000', '9.4184', '9.4184', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72279, '2022-04-08', 8368, 68641, 4608, NULL, '1.0000', '35.0000', '35.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 (72280, '2022-04-08', 2541, 68642, 4608, 47933, '1.0000', '10.3000', '10.3000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72281, '2022-04-08', 9252, 68643, 4608, NULL, '1.0000', '8.7771', '8.7771', '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 (72282, '2022-04-08', 1836, 68644, 4609, 53217, '3.0000', '14.5700', '14.5700', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72283, '2022-04-08', 1871, 68645, 4609, NULL, '10.0000', '2.2081', '2.2081', '3.5000', '3.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 (72284, '2022-04-08', 9867, 68646, 4609, NULL, '4.0000', '6.3000', '6.3000', '8.4000', '8.4000', '-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 (72285, '2022-04-08', 7848, 68647, 4609, NULL, '1.0000', '15.0000', '15.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 (72286, '2022-04-08', 9177, 68648, 4609, 50249, '10.0000', '0.8600', '0.8600', '1.2000', '1.2000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72287, '2022-04-08', 9695, 68649, 4609, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72288, '2022-04-08', 9690, 68650, 4609, NULL, '1.0000', '25.4200', '25.4200', '33.5000', '33.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72289, '2022-04-08', 7342, 68651, 4609, NULL, '1.0000', '15.7285', '15.7285', '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 (72290, '2022-04-08', 2344, 68652, 4609, NULL, '1.0000', '17.6204', '17.6204', '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 (72291, '2022-04-08', 1339, 68653, 4609, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72292, '2022-04-08', 2379, 68654, 4609, NULL, '1.0000', '0.2954', '0.2954', '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 (72293, '2022-04-08', 2857, 68655, 4609, NULL, '1.0000', '17.0000', '17.0000', '6.6000', '6.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 (72294, '2022-04-08', 1425, 68656, 4609, NULL, '1.0000', '5.1721', '5.1721', '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 (72295, '2022-04-08', 2556, 68657, 4609, 53458, '2.0000', '0.7769', '0.7769', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72296, '2022-04-08', 1454, 68658, 4609, 52223, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72297, '2022-04-08', 1499, 68659, 4609, 52148, '3.0000', '0.3747', '0.3747', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72298, '2022-04-08', 7671, 68660, 4609, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72299, '2022-04-08', 2295, 68661, 4609, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72300, '2022-04-08', 8068, 68662, 4609, NULL, '1.0000', '8.7900', '8.7900', '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 (72301, '2022-04-08', 2992, 68663, 4609, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72302, '2022-04-08', 1608, 68664, 4609, 53660, '1.0000', '4.1377', '4.1377', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72303, '2022-04-08', 1488, 68665, 4609, 48956, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72304, '2022-04-08', 9830, 68666, 4609, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72305, '2022-04-08', 2248, 68667, 4609, 51353, '1.0000', '2.8441', '2.8441', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72306, '2022-04-08', 2167, 68668, 4609, NULL, '1.0000', '1.7907', '1.7907', '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 (72307, '2022-04-08', 2254, 68669, 4609, 52332, '1.0000', '14.8800', '14.8800', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72308, '2022-04-08', 1602, 68670, 4609, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72309, '2022-04-08', 9831, 68671, 4609, 53443, '2.0000', '1.5600', '1.5600', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72310, '2022-04-08', 2088, 68672, 4609, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72311, '2022-04-08', 2105, 68673, 4609, 52224, '2.0000', '2.4500', '2.4500', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72312, '2022-04-08', 8183, 68674, 4609, NULL, '2.0000', '232.5300', '232.5300', '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 (72313, '2022-04-08', 1674, 68675, 4609, 52225, '1.0000', '11.2958', '11.2958', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72314, '2022-04-08', 9830, 68676, 4609, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72315, '2022-04-08', 1545, 68677, 4609, 51645, '1.0000', '8.4806', '8.4806', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72316, '2022-04-08', 7756, 68678, 4609, NULL, '2.0000', '2.5000', '2.5000', '29.5000', '29.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 (72317, '2022-04-08', 1665, 68679, 4609, 51683, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72318, '2022-04-08', 1665, 68679, 4609, 51312, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72319, '2022-04-08', 2283, 68680, 4609, 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 (72320, '2022-04-08', 1651, 68681, 4609, 51646, '1.0000', '8.2255', '8.2255', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72321, '2022-04-08', 1501, 68682, 4609, NULL, '1.0000', '2.1784', '2.1784', '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 (72322, '2022-04-08', 1928, 68683, 4609, NULL, '1.0000', '5.3300', '5.3300', '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 (72323, '2022-04-08', 8011, 68684, 4609, NULL, '1.0000', '0.9500', '0.9500', '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 (72324, '2022-04-08', 1812, 68685, 4609, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72325, '2022-04-08', 9750, 68686, 4609, NULL, '1.0000', '3.3000', '3.3000', '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 (72326, '2022-04-08', 1628, 68687, 4609, 51671, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72327, '2022-04-08', 1628, 68688, 4609, 51671, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72328, '2022-04-08', 2295, 68689, 4609, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72329, '2022-04-08', 2169, 68690, 4609, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72330, '2022-04-08', 1810, 68691, 4609, NULL, '1.0000', '9.7936', '9.7936', '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 (72331, '2022-04-08', 9831, 68692, 4609, 53443, '2.0000', '1.5600', '1.5600', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72332, '2022-04-08', 2543, 68693, 4609, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72333, '2022-04-08', 7853, 68694, 4609, NULL, '1.0000', '35.0000', '35.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 (72334, '2022-04-08', 2916, 68695, 4609, NULL, '1.0000', '8.2115', '8.2115', '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 (72335, '2022-04-08', 1307, 68696, 4609, NULL, '1.0000', '-0.0521', '-0.0521', '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 (72336, '2022-04-08', 2109, 68697, 4609, 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 (72337, '2022-04-08', 1328, 68698, 4609, 32533, '1.0000', '3.1500', '3.1500', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72338, '2022-04-08', 7756, 68699, 4609, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72339, '2022-04-08', 9831, 68700, 4609, 53443, '4.0000', '1.5600', '1.5600', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72340, '2022-04-08', 2964, 68701, 4609, NULL, '1.0000', '8.5898', '8.5898', '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 (72341, '2022-04-08', 1875, 68702, 4609, 39796, '10.0000', '2.7000', '2.7000', '3.6000', '3.6000', '40.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72342, '2022-04-08', 9832, 68703, 4609, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72343, '2022-04-08', 9831, 68704, 4609, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72344, '2022-04-08', 9830, 68705, 4609, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72345, '2022-04-08', 9747, 68706, 4609, 51943, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72346, '2022-04-08', 2169, 68707, 4609, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72347, '2022-04-08', 9763, 68708, 4609, 51336, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72348, '2022-04-08', 2283, 68709, 4609, 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 (72349, '2022-04-08', 2491, 68710, 4609, 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 (72350, '2022-04-08', 8740, 68711, 4609, 53461, '2.0000', '2.0000', '2.0000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72351, '2022-04-08', 9830, 68712, 4609, 53444, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72352, '2022-04-08', 9482, 68713, 4609, NULL, '7.0000', '0.5000', '0.5000', '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 (72353, '2022-04-08', 1810, 68714, 4609, NULL, '1.0000', '9.7936', '9.7936', '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 (72354, '2022-04-10', 7360, 68715, 4610, NULL, '1.0000', '25.0000', '25.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 (72355, '2022-04-10', 9785, 68716, 4610, 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 (72356, '2022-04-10', 7394, 68717, 4610, 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 (72357, '2022-04-10', 1837, 68718, 4610, 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 (72358, '2022-04-10', 7794, 68719, 4610, NULL, '2.0000', '9.8000', '9.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 (72359, '2022-04-10', 8203, 68720, 4610, NULL, '2.0000', '0.4000', '0.4000', '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 (72360, '2022-04-10', 7333, 68721, 4610, NULL, '2.0000', '13.5000', '13.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 (72361, '2022-04-10', 7641, 68722, 4610, NULL, '1.0000', '1.9000', '1.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 (72362, '2022-04-10', 9092, 68723, 4610, NULL, '2.0000', '5.2900', '5.2900', '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 (72363, '2022-04-10', 2887, 68724, 4610, NULL, '1.0000', '10.5000', '10.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 (72364, '2022-04-10', 7954, 68725, 4610, 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 (72365, '2022-04-10', 1837, 68726, 4610, 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 (72366, '2022-04-10', 8079, 68727, 4610, NULL, '1.0000', '14.3600', '14.3600', '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 (72367, '2022-04-10', 9735, 68728, 4610, 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 (72368, '2022-04-10', 7808, 68729, 4610, NULL, '1.0000', '13.9000', '13.9000', '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 (72369, '2022-04-10', 7334, 68730, 4610, NULL, '1.0000', '8.2300', '8.2300', '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 (72370, '2022-04-10', 8038, 68731, 4610, 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 (72371, '2022-04-10', 7709, 68732, 4610, NULL, '2.0000', '3.5000', '3.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 (72372, '2022-04-10', 9363, 68733, 4610, NULL, '1.0000', '8.5000', '8.5000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72373, '2022-04-10', 8902, 68734, 4610, NULL, '2.0000', '16.4800', '16.4800', '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 (72374, '2022-04-10', 7367, 68735, 4610, NULL, '1.0000', '9.1700', '9.1700', '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 (72375, '2022-04-10', 8038, 68736, 4610, 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 (72376, '2022-04-10', 7412, 68737, 4610, NULL, '2.0000', '1.5200', '1.5200', '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 (72377, '2022-04-10', 7473, 68738, 4610, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (72378, '2022-04-10', 8210, 68739, 4610, NULL, '2.0000', '8.0000', '8.0000', '14.5000', '14.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 (72379, '2022-04-10', 8083, 68740, 4610, NULL, '1.0000', '26.0000', '26.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 (72380, '2022-04-10', 2298, 68741, 4610, 2957, '-3.0000', '6.0000', '6.0000', '9.5000', '9.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 (72381, '2022-04-10', 2298, 68741, 4610, NULL, '4.0000', '6.0000', '6.0000', '9.5000', '9.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 (72382, '2022-04-10', 7579, 68742, 4610, NULL, '1.0000', '15.0000', '15.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 (72383, '2022-04-10', 7967, 68743, 4610, NULL, '1.0000', '7.0000', '7.0000', '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 (72384, '2022-04-10', 9809, 68744, 4610, NULL, '1.0000', '5.7900', '5.7900', '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 (72385, '2022-04-10', 9817, 68745, 4610, 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 (72386, '2022-04-10', 7892, 68746, 4610, NULL, '1.0000', '4.2000', '4.2000', '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 (72387, '2022-04-10', 8677, 68747, 4610, NULL, '2.0000', '1.2800', '1.2800', '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 (72388, '2022-04-10', 9734, 68748, 4610, NULL, '1.0000', '0.3200', '0.3200', '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 (72389, '2022-04-10', 7769, 68749, 4610, 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 (72390, '2022-04-10', 7803, 68750, 4610, NULL, '1.0000', '1.8200', '1.8200', '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 (72391, '2022-04-10', 7806, 68751, 4610, NULL, '5.0000', '1.8000', '1.8000', '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 (72392, '2022-04-10', 9534, 68752, 4610, NULL, '1.0000', '19.8900', '19.8900', '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 (72393, '2022-04-10', 8000, 68753, 4610, NULL, '1.0000', '6.8400', '6.8400', '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 (72394, '2022-04-10', 7942, 68754, 4610, NULL, '10.0000', '1.1500', '1.1500', '13.0000', '13.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 (72395, '2022-04-10', 7518, 68755, 4610, NULL, '2.0000', '7.8200', '7.8200', '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 (72396, '2022-04-10', 9817, 68756, 4610, 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 (72397, '2022-04-10', 7886, 68757, 4610, 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 (72398, '2022-04-10', 1460, 68758, 4610, NULL, '1.0000', '90.0000', '90.0000', '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 (72399, '2022-04-10', 8039, 68759, 4610, NULL, '1.0000', '14.7500', '14.7500', '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 (72400, '2022-04-10', 2965, 68760, 4610, 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 (72401, '2022-04-10', 7509, 68761, 4610, 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 (72402, '2022-04-10', 8184, 68762, 4610, NULL, '14.0000', '2.4000', '2.4000', '4.0000', '4.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 (72403, '2022-04-10', 1867, 68763, 4610, NULL, '1.0000', '1.0500', '1.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 (72404, '2022-04-10', 7612, 68764, 4610, NULL, '2.0000', '1.7300', '1.7300', '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 (72405, '2022-04-10', 9740, 68765, 4610, NULL, '2.0000', '0.6600', '0.6600', '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 (72406, '2022-04-10', 7825, 68766, 4610, NULL, '1.0000', '6.5000', '6.5000', '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 (72407, '2022-04-10', 7333, 68767, 4610, NULL, '2.0000', '13.5000', '13.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 (72408, '2022-04-10', 7774, 68768, 4610, NULL, '1.0000', '3.3000', '3.3000', '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 (72409, '2022-04-10', 9798, 68769, 4610, NULL, '1.0000', '13.9000', '13.9000', '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 (72410, '2022-04-10', 9808, 68770, 4610, 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 (72411, '2022-04-10', 8924, 68771, 4610, NULL, '1.0000', '4.5000', '4.5000', '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 (72412, '2022-04-10', 7848, 68772, 4610, NULL, '1.0000', '1.3500', '1.3500', '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 (72413, '2022-04-10', 7657, 68773, 4610, NULL, '2.0000', '11.3200', '11.3200', '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 (72414, '2022-04-10', 7709, 68774, 4610, 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 (72415, '2022-04-10', 1532, 68775, 4610, 22261, '3.0000', '0.8000', '0.8000', '2.0000', '2.0000', '21.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 (72416, '2022-04-10', 7523, 68776, 4610, 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 (72417, '2022-04-10', 7674, 68777, 4610, 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 (72418, '2022-04-10', 8020, 68778, 4610, NULL, '1.0000', '11.9000', '11.9000', '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 (72419, '2022-04-10', 7889, 68779, 4610, 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 (72420, '2022-04-10', 2250, 68780, 4610, 2787, '-8.0000', '6.8900', '6.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 (72421, '2022-04-10', 2250, 68780, 4610, NULL, '9.0000', '6.8900', '6.8900', '10.5000', '10.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 (72422, '2022-04-10', 1769, 68781, 4610, NULL, '1.0000', '90.0000', '90.0000', '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 (72423, '2022-04-10', 8359, 68782, 4610, 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 (72424, '2022-04-10', 8106, 68783, 4610, NULL, '2.0000', '3.2500', '3.2500', '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 (72425, '2022-04-10', 8203, 68784, 4610, NULL, '2.0000', '0.4000', '0.4000', '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 (72426, '2022-04-10', 7652, 68785, 4610, 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 (72427, '2022-04-10', 7522, 68786, 4610, NULL, '1.0000', '9.7000', '9.7000', '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 (72428, '2022-04-10', 8472, 68787, 4610, NULL, '1.0000', '6.5000', '6.5000', '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 (72429, '2022-04-10', 7412, 68788, 4610, NULL, '2.0000', '1.5200', '1.5200', '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 (72430, '2022-04-10', 7518, 68789, 4610, NULL, '1.0000', '7.8200', '7.8200', '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 (72431, '2022-04-10', 8767, 68790, 4610, NULL, '2.0000', '6.6900', '6.6900', '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 (72432, '2022-04-10', 1806, 68791, 4610, 18809, '1.0000', '28.1300', '28.1300', '40.0000', '40.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 (72433, '2022-04-10', 7523, 68792, 4610, 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 (72434, '2022-04-10', 1840, 68793, 4610, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (72435, '2022-04-10', 1841, 68794, 4610, NULL, '2.0000', '142.5780', '142.5780', '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 (72436, '2022-04-10', 8677, 68795, 4610, NULL, '2.0000', '1.2800', '1.2800', '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 (72437, '2022-04-10', 2315, 68796, 4610, 2735, '-244.0000', '0.3300', '0.3300', '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 (72438, '2022-04-10', 2315, 68796, 4610, NULL, '246.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-246.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72439, '2022-04-10', 2414, 68797, 4610, 4620, '-17.0000', '3.4000', '3.4000', '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 (72440, '2022-04-10', 2414, 68797, 4610, NULL, '19.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-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 (72441, '2022-04-10', 7744, 68798, 4610, 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 (72442, '2022-04-10', 9731, 68799, 4610, 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 (72443, '2022-04-10', 2315, 68800, 4610, 2735, '-244.0000', '0.3300', '0.3300', '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 (72444, '2022-04-10', 2315, 68800, 4610, NULL, '245.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-245.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72445, '2022-04-10', 8517, 68801, 4610, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72446, '2022-04-10', 9092, 68802, 4610, NULL, '2.0000', '5.2900', '5.2900', '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 (72447, '2022-04-10', 2943, 68803, 4610, 19987, '-9.0000', '2.1800', '2.1800', '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 (72448, '2022-04-10', 2943, 68803, 4610, NULL, '10.0000', '2.1800', '2.1800', '4.0000', '4.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 (72449, '2022-04-10', 1837, 68804, 4610, 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 (72450, '2022-04-10', 2821, 68805, 4610, 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 (72451, '2022-04-10', 7709, 68806, 4610, 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 (72452, '2022-04-10', 8203, 68807, 4610, 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 (72453, '2022-04-10', 1840, 68808, 4610, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (72454, '2022-04-10', 1841, 68809, 4610, NULL, '1.0000', '142.5780', '142.5780', '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 (72455, '2022-04-10', 9274, 68810, 4610, 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 (72456, '2022-04-10', 7674, 68811, 4610, 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 (72457, '2022-04-10', 7641, 68812, 4610, NULL, '1.0000', '1.9000', '1.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 (72458, '2022-04-10', 7713, 68813, 4610, NULL, '2.0000', '0.3800', '0.3800', '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 (72459, '2022-04-10', 9740, 68814, 4610, NULL, '1.0000', '0.6600', '0.6600', '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 (72460, '2022-04-10', 7356, 68815, 4610, NULL, '1.0000', '10.9000', '10.9000', '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 (72461, '2022-04-10', 7634, 68816, 4610, NULL, '1.0000', '1.8000', '1.8000', '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 (72462, '2022-04-10', 7980, 68817, 4610, NULL, '10.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (72463, '2022-04-10', 7354, 68818, 4610, NULL, '4.0000', '0.3700', '0.3700', '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 (72464, '2022-04-10', 1880, 68819, 4611, 44562, '1.0000', '4.7945', '4.7945', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72465, '2022-04-10', 1871, 68820, 4611, 52233, '10.0000', '5.8663', '5.8663', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72466, '2022-04-10', 1406, 68821, 4611, 41975, '1.0000', '16.8273', '16.8273', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72467, '2022-04-10', 2416, 68822, 4611, 52895, '1.0000', '1.2033', '1.2033', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72468, '2022-04-10', 1339, 68823, 4611, 44611, '1.0000', '1.7611', '1.7611', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72469, '2022-04-10', 2525, 68824, 4612, 15801, '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 (72470, '2022-04-10', 1863, 68825, 4612, 49847, '2.0000', '1.2686', '1.2686', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72471, '2022-04-10', 7938, 68826, 4612, NULL, '1.0000', '2.9000', '2.9000', '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 (72472, '2022-04-10', 2260, 68827, 4612, 50871, '2.0000', '4.2238', '4.2238', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72473, '2022-04-10', 1307, 68828, 4612, NULL, '1.0000', '-1.1000', '-1.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 (72474, '2022-04-10', 9641, 68829, 4612, 41989, '1.0000', '36.0800', '36.0800', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72475, '2022-04-10', 2414, 68830, 4612, NULL, '1.0000', '3.8350', '3.8350', '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 (72476, '2022-04-10', 7947, 68831, 4612, NULL, '1.0000', '14.4400', '14.4400', '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 (72477, '2022-04-10', 7630, 68832, 4612, NULL, '1.0000', '10.0000', '10.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 (72478, '2022-04-10', 2331, 68833, 4612, 46754, '1.0000', '12.0700', '12.0700', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72479, '2022-04-10', 1670, 68834, 4612, 52278, '1.0000', '53.6342', '53.6342', '33.0000', '33.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72480, '2022-04-10', 2237, 68835, 4612, 52236, '1.0000', '1.3890', '1.3890', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72481, '2022-04-10', 1935, 68836, 4612, 53273, '1.0000', '1.7523', '1.7523', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72482, '2022-04-10', 2167, 68837, 4612, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72483, '2022-04-10', 1651, 68838, 4612, 52273, '1.0000', '6.7692', '6.7692', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72484, '2022-04-10', 7473, 68839, 4612, NULL, '3.0000', '0.5300', '0.5300', '0.6000', '0.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 (72485, '2022-04-10', 1651, 68840, 4612, 52273, '1.0000', '6.7692', '6.7692', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72486, '2022-04-10', 1667, 68841, 4612, 53264, '1.0000', '32.0007', '32.0007', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72487, '2022-04-10', 7381, 68842, 4612, 46607, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72488, '2022-04-10', 7588, 68843, 4613, 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 (72489, '2022-04-10', 9736, 68844, 4613, NULL, '1.0000', '3.9100', '3.9100', '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 (72490, '2022-04-10', 1867, 68845, 4613, NULL, '2.0000', '1.0500', '1.0500', '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 (72491, '2022-04-10', 8063, 68846, 4613, NULL, '1.0000', '1.6000', '1.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 (72492, '2022-04-10', 8746, 68847, 4613, NULL, '1.0000', '3.1500', '3.1500', '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 (72493, '2022-04-10', 7385, 68848, 4613, 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 (72494, '2022-04-10', 7666, 68849, 4613, 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 (72495, '2022-04-10', 7954, 68850, 4613, NULL, '2.0000', '3.0000', '3.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 (72496, '2022-04-10', 8566, 68851, 4613, 33072, '1.0000', '11.0000', '11.0000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72497, '2022-04-10', 2250, 68852, 4613, 2787, '-9.0000', '6.8900', '6.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 (72498, '2022-04-10', 2250, 68852, 4613, NULL, '10.0000', '6.8900', '6.8900', '10.5000', '10.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 (72499, '2022-04-10', 9726, 68853, 4613, 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 (72500, '2022-04-10', 8456, 68854, 4613, 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 (72501, '2022-04-10', 1867, 68855, 4613, NULL, '1.0000', '1.0500', '1.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 (72502, '2022-04-10', 9272, 68856, 4613, NULL, '1.0000', '3.1000', '3.1000', '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 (72503, '2022-04-10', 8984, 68857, 4613, NULL, '1.0000', '0.8700', '0.8700', '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 (72504, '2022-04-10', 7736, 68858, 4613, NULL, '1.0000', '16.2000', '16.2000', '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 (72505, '2022-04-10', 1884, 68859, 4613, 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 (72506, '2022-04-10', 7478, 68860, 4613, 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 (72507, '2022-04-10', 1941, 68861, 4613, 5592, '-5.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 (72508, '2022-04-10', 1941, 68861, 4613, NULL, '6.0000', '90.0000', '90.0000', '3.0000', '3.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 (72509, '2022-04-10', 9303, 68862, 4613, NULL, '1.0000', '9.0000', '9.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 (72510, '2022-04-10', 7333, 68863, 4613, NULL, '10.0000', '13.5000', '13.5000', '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 (72511, '2022-04-10', 8721, 68864, 4613, NULL, '2.0000', '23.0000', '23.0000', '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 (72512, '2022-04-10', 8780, 68865, 4613, NULL, '1.0000', '46.0000', '46.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 (72513, '2022-04-10', 7411, 68866, 4613, NULL, '1.0000', '1.3500', '1.3500', '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 (72514, '2022-04-10', 9160, 68867, 4613, NULL, '1.0000', '15.0000', '15.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 (72515, '2022-04-10', 8154, 68868, 4613, NULL, '4.0000', '12.3000', '12.3000', '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 (72516, '2022-04-10', 2283, 68869, 4613, 2943, '-10.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 (72517, '2022-04-10', 2283, 68869, 4613, NULL, '12.0000', '1.4300', '1.4300', '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 (72518, '2022-04-10', 1884, 68870, 4613, 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 (72519, '2022-04-10', 1837, 68871, 4613, 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 (72520, '2022-04-10', 7781, 68872, 4613, NULL, '3.0000', '4.2500', '4.2500', '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 (72521, '2022-04-10', 7509, 68873, 4613, 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 (72522, '2022-04-10', 8940, 68874, 4613, NULL, '1.0000', '4.9900', '4.9900', '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 (72523, '2022-04-10', 2289, 68875, 4613, 2949, '-105.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 (72524, '2022-04-10', 2289, 68875, 4613, NULL, '106.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72525, '2022-04-10', 8395, 68876, 4613, NULL, '1.0000', '0.9700', '0.9700', '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 (72526, '2022-04-10', 3044, 68877, 4613, NULL, '1.0000', '0.4000', '0.4000', '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 (72527, '2022-04-10', 7459, 68878, 4613, NULL, '1.0000', '2.3500', '2.3500', '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 (72528, '2022-04-10', 7703, 68879, 4613, NULL, '1.0000', '22.9900', '22.9900', '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 (72529, '2022-04-10', 7473, 68880, 4613, NULL, '2.0000', '0.5300', '0.5300', '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 (72530, '2022-04-10', 8079, 68881, 4613, NULL, '1.0000', '14.3600', '14.3600', '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 (72531, '2022-04-10', 7518, 68882, 4613, NULL, '1.0000', '7.8200', '7.8200', '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 (72532, '2022-04-10', 7689, 68883, 4613, NULL, '1.0000', '9.1000', '9.1000', '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 (72533, '2022-04-10', 7804, 68884, 4613, 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 (72534, '2022-04-10', 8032, 68885, 4613, NULL, '2.0000', '6.4400', '6.4400', '8.5000', '8.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 (72535, '2022-04-10', 1845, 68886, 4613, 6222, '-20.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 (72536, '2022-04-10', 1845, 68886, 4613, NULL, '21.0000', '19.5000', '19.5000', '26.0000', '26.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72537, '2022-04-10', 2315, 68887, 4613, 2735, '-247.0000', '0.3300', '0.3300', '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 (72538, '2022-04-10', 2315, 68887, 4613, NULL, '248.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-248.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72539, '2022-04-10', 1510, 68888, 4613, 18904, '1.0000', '8.8600', '8.8600', '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 (72540, '2022-04-10', 2169, 68889, 4614, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72541, '2022-04-10', 1942, 68890, 4614, 46610, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72542, '2022-04-10', 1839, 68891, 4614, 48750, '1.0000', '7.4147', '7.4147', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72543, '2022-04-10', 2633, 68892, 4614, 31993, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72544, '2022-04-10', 1812, 68893, 4614, 53691, '1.0000', '8.0465', '8.0465', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72545, '2022-04-10', 2642, 68894, 4614, 52924, '1.0000', '7.8214', '7.8214', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72546, '2022-04-10', 2251, 68895, 4615, 53250, '1.0000', '11.6244', '11.6244', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72547, '2022-04-10', 1993, 68896, 4615, 40304, '1.0000', '2.0250', '2.0250', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72548, '2022-04-10', 2906, 68897, 4615, 18670, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (72549, '2022-04-10', 9670, 68898, 4615, 42625, '1.0000', '45.0000', '45.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72550, '2022-04-10', 1855, 68899, 4615, 46773, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72551, '2022-04-10', 1715, 68900, 4615, 52258, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72552, '2022-04-10', 1646, 68901, 4615, 53270, '1.0000', '4.9974', '4.9974', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72553, '2022-04-10', 7744, 68902, 4615, NULL, '1.0000', '2.9400', '2.9400', '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 (72554, '2022-04-10', 2466, 68903, 4615, 49018, '1.0000', '15.2520', '15.2520', '19.1400', '19.1400', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72555, '2022-04-10', 1663, 68904, 4615, 46062, '1.0000', '85.2130', '85.2130', '121.0000', '121.0000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72556, '2022-04-10', 2169, 68905, 4615, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72557, '2022-04-10', 1863, 68906, 4615, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72558, '2022-04-10', 9758, 68907, 4615, 52283, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72559, '2022-04-10', 2858, 68908, 4615, 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 (72560, '2022-04-10', 1493, 68909, 4615, 52228, '1.0000', '1.5665', '1.5665', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72561, '2022-04-10', 2315, 68910, 4615, 3069, '2.0000', '0.3300', '0.3300', '0.8000', '0.8000', '173.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72562, '2022-04-10', 8098, 68911, 4616, NULL, '2.0000', '15.9900', '15.9900', '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 (72563, '2022-04-10', 7585, 68912, 4616, 33812, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72564, '2022-04-10', 1989, 68913, 4616, 6352, '-1.0000', '5.1429', '5.1429', '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 (72565, '2022-04-10', 1989, 68913, 4616, NULL, '2.0000', '5.1429', '5.1429', '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 (72566, '2022-04-10', 7825, 68914, 4616, NULL, '1.0000', '6.5000', '6.5000', '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 (72567, '2022-04-10', 8686, 68915, 4616, NULL, '1.0000', '7.9900', '7.9900', '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 (72568, '2022-04-10', 7636, 68916, 4616, NULL, '10.0000', '2.5000', '2.5000', '3.5000', '3.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 (72569, '2022-04-10', 7794, 68917, 4616, NULL, '1.0000', '9.8000', '9.8000', '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 (72570, '2022-04-10', 7709, 68918, 4616, NULL, '2.0000', '3.5000', '3.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 (72571, '2022-04-10', 2315, 68919, 4616, 2735, '-248.0000', '0.3300', '0.3300', '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 (72572, '2022-04-10', 2315, 68919, 4616, NULL, '250.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-250.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72573, '2022-04-10', 7317, 68920, 4616, NULL, '1.0000', '19.5500', '19.5500', '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 (72574, '2022-04-10', 8775, 68921, 4616, NULL, '1.0000', '2.6000', '2.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 (72575, '2022-04-10', 1837, 68922, 4616, 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 (72576, '2022-04-10', 8172, 68923, 4616, NULL, '1.0000', '40.7000', '40.7000', '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 (72577, '2022-04-10', 7674, 68924, 4616, 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 (72578, '2022-04-10', 9791, 68925, 4616, NULL, '2.0000', '0.9000', '0.9000', '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 (72579, '2022-04-10', 7564, 68926, 4616, NULL, '1.0000', '0.6400', '0.6400', '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 (72580, '2022-04-10', 2315, 68927, 4616, 2735, '-248.0000', '0.3300', '0.3300', '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 (72581, '2022-04-10', 2315, 68927, 4616, NULL, '249.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-249.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72582, '2022-04-10', 8415, 68928, 4616, NULL, '2.0000', '3.2500', '3.2500', '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 (72583, '2022-04-10', 7867, 68929, 4616, NULL, '1.0000', '1.6300', '1.6300', '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 (72584, '2022-04-10', 7657, 68930, 4616, NULL, '1.0000', '11.3200', '11.3200', '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 (72585, '2022-04-10', 7333, 68931, 4616, NULL, '2.0000', '13.5000', '13.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 (72586, '2022-04-10', 7630, 68932, 4616, NULL, '1.0000', '10.0000', '10.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 (72587, '2022-04-10', 7558, 68933, 4616, 33814, '3.0000', '1.9700', '1.9700', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72588, '2022-04-10', 7781, 68934, 4616, NULL, '5.0000', '4.2500', '4.2500', '1.5000', '1.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 (72589, '2022-04-10', 8061, 68935, 4616, NULL, '1.0000', '6.5000', '6.5000', '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 (72590, '2022-04-10', 8496, 68936, 4616, NULL, '1.0000', '2.4000', '2.4000', '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 (72591, '2022-04-10', 9580, 68937, 4616, 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 (72592, '2022-04-10', 7385, 68938, 4616, NULL, '2.0000', '2.0000', '2.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 (72593, '2022-04-10', 8372, 68939, 4616, NULL, '1.0000', '9.5000', '9.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 (72594, '2022-04-10', 2517, 68940, 4616, 33071, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72595, '2022-04-10', 7588, 68941, 4616, 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 (72596, '2022-04-10', 8234, 68942, 4616, NULL, '1.0000', '13.0000', '13.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 (72597, '2022-04-10', 9311, 68943, 4616, NULL, '1.0000', '6.6000', '6.6000', '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 (72598, '2022-04-10', 7554, 68944, 4616, NULL, '4.0000', '2.1000', '2.1000', '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 (72599, '2022-04-10', 8059, 68945, 4616, NULL, '1.0000', '6.0000', '6.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 (72600, '2022-04-10', 9178, 68946, 4616, 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 (72601, '2022-04-10', 7666, 68947, 4616, 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 (72602, '2022-04-10', 8451, 68948, 4616, NULL, '1.0000', '9.6000', '9.6000', '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 (72603, '2022-04-10', 7482, 68949, 4616, NULL, '2.0000', '3.0500', '3.0500', '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 (72604, '2022-04-10', 8677, 68950, 4616, NULL, '2.0000', '1.2800', '1.2800', '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 (72605, '2022-04-10', 2289, 68951, 4616, 2949, '-106.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 (72606, '2022-04-10', 2289, 68951, 4616, NULL, '110.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72607, '2022-04-10', 7658, 68952, 4617, NULL, '10.0000', '10.1500', '10.1500', '2.8000', '2.8000', '-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 (72608, '2022-04-10', 2169, 68953, 4617, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72609, '2022-04-10', 1602, 68954, 4617, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72610, '2022-04-10', 1728, 68955, 4617, 19324, '4.0000', '90.0000', '90.0000', '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 (72611, '2022-04-10', 7636, 68956, 4617, NULL, '2.0000', '11.8700', '11.8700', '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 (72612, '2022-04-10', 1602, 68957, 4617, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72613, '2022-04-10', 2103, 68958, 4617, NULL, '2.0000', '0.4500', '0.4500', '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 (72614, '2022-04-10', 2444, 68959, 4617, 51937, '1.0000', '8.2652', '8.2652', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72615, '2022-04-10', 9747, 68960, 4617, 51943, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72616, '2022-04-10', 8714, 68961, 4617, NULL, '1.0000', '5.2100', '5.2100', '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 (72617, '2022-04-10', 9840, 68962, 4617, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72618, '2022-04-10', 2642, 68963, 4617, 53439, '1.0000', '9.6678', '9.6678', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72619, '2022-04-10', 9846, 68964, 4617, 51668, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72620, '2022-04-10', 1837, 68965, 4617, NULL, '1.0000', '2.5335', '2.5335', '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 (72621, '2022-04-10', 9866, 68966, 4617, 52158, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72622, '2022-04-10', 1618, 68967, 4617, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72623, '2022-04-10', 2169, 68968, 4617, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72624, '2022-04-10', 9735, 68969, 4617, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72625, '2022-04-10', 9747, 68970, 4617, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72626, '2022-04-10', 8622, 68971, 4617, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72627, '2022-04-10', 1840, 68972, 4617, NULL, '6.0000', '0.2400', '0.2400', '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 (72628, '2022-04-10', 8984, 68973, 4617, NULL, '1.0000', '-100.8495', '-100.8495', '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 (72629, '2022-04-10', 2009, 68974, 4617, 39999, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72630, '2022-04-10', 1771, 68975, 4617, 51319, '1.0000', '5.7805', '5.7805', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72631, '2022-04-10', 1825, 68976, 4617, 52350, '1.0000', '5.6803', '5.6803', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72632, '2022-04-10', 1689, 68977, 4617, 53659, '1.0000', '16.1442', '16.1442', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72633, '2022-04-10', 1677, 68978, 4617, 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 (72634, '2022-04-10', 2081, 68979, 4617, 43239, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72635, '2022-04-10', 9873, 68980, 4617, 53237, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72636, '2022-04-10', 9831, 68981, 4617, 53443, '2.0000', '1.5600', '1.5600', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72637, '2022-04-10', 9830, 68982, 4617, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72638, '2022-04-10', 2643, 68983, 4617, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72639, '2022-04-10', 3026, 68984, 4617, 44158, '1.0000', '2.2857', '2.2857', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72640, '2022-04-10', 2315, 68985, 4617, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '5.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72641, '2022-04-10', 8297, 68986, 4617, NULL, '1.0000', '73.3000', '73.3000', '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 (72642, '2022-04-10', 8746, 68987, 4617, 53448, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72643, '2022-04-10', 2260, 68988, 4617, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72644, '2022-04-10', 1502, 68989, 4617, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '18.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72645, '2022-04-10', 1637, 68990, 4617, NULL, '1.0000', '-41.1667', '-41.1667', '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 (72646, '2022-04-10', 9750, 68991, 4617, NULL, '1.0000', '3.3000', '3.3000', '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 (72647, '2022-04-10', 9831, 68992, 4618, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72648, '2022-04-10', 1505, 68993, 4618, 53208, '1.0000', '148.7184', '148.7184', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72649, '2022-04-10', 9830, 68994, 4618, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72650, '2022-04-10', 2299, 68995, 4618, 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 (72651, '2022-04-10', 1771, 68996, 4618, 51319, '1.0000', '5.7805', '5.7805', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72652, '2022-04-10', 7333, 68997, 4618, NULL, '3.0000', '13.5000', '13.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 (72653, '2022-04-10', 1505, 68998, 4618, 53208, '1.0000', '148.7184', '148.7184', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72654, '2022-04-10', 9634, 68999, 4618, 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 (72655, '2022-04-10', 1502, 69000, 4618, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '17.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72656, '2022-04-10', 8420, 69001, 4618, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '15.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72657, '2022-04-10', 9463, 69002, 4618, NULL, '1.0000', '18.9000', '18.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 (72658, '2022-04-10', 1410, 69003, 4618, NULL, '1.0000', '-0.4921', '-0.4921', '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 (72659, '2022-04-10', 1946, 69004, 4618, NULL, '1.0000', '1.2265', '1.2265', '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 (72660, '2022-04-10', 7582, 69005, 4618, NULL, '1.0000', '2.4000', '2.4000', '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 (72661, '2022-04-10', 8746, 69006, 4618, 53448, '10.0000', '2.8848', '2.8848', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72662, '2022-04-10', 2169, 69007, 4618, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72663, '2022-04-10', 1839, 69008, 4618, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (72664, '2022-04-10', 7799, 69009, 4618, NULL, '1.0000', '2.0000', '2.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 (72665, '2022-04-10', 7869, 69010, 4618, NULL, '1.0000', '4.2900', '4.2900', '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 (72666, '2022-04-10', 7459, 69011, 4618, NULL, '10.0000', '-8.8866', '-8.8866', '4.0000', '4.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 (72667, '2022-04-10', 2066, 69012, 4618, NULL, '2.0000', '0.5100', '0.5100', '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 (72668, '2022-04-10', 1499, 69013, 4618, 52148, '2.0000', '0.3747', '0.3747', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72669, '2022-04-10', 2357, 69014, 4618, 43270, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72670, '2022-04-10', 2556, 69015, 4618, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72671, '2022-04-10', 2379, 69016, 4618, NULL, '2.0000', '0.2954', '0.2954', '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 (72672, '2022-04-10', 1425, 69017, 4618, NULL, '1.0000', '5.1721', '5.1721', '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 (72673, '2022-04-10', 1863, 69018, 4618, 52353, '2.0000', '1.3923', '1.3923', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72674, '2022-04-10', 1863, 69018, 4618, 52219, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72675, '2022-04-10', 2948, 69019, 4618, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72676, '2022-04-10', 1807, 69020, 4618, NULL, '4.0000', '34.9993', '34.9993', '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 (72677, '2022-04-10', 1499, 69021, 4618, 52148, '3.0000', '0.3747', '0.3747', '0.6000', '0.6000', '31.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72678, '2022-04-10', 2293, 69022, 4618, 51215, '2.0000', '10.2680', '10.2680', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72679, '2022-04-10', 1655, 69023, 4618, 23127, '1.0000', '34.0000', '34.0000', '49.5000', '49.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 (72680, '2022-04-10', 1912, 69024, 4618, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72681, '2022-04-10', 3026, 69025, 4618, 44158, '1.0000', '2.2857', '2.2857', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72682, '2022-04-10', 1677, 69026, 4618, 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 (72683, '2022-04-10', 1812, 69027, 4618, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72684, '2022-04-10', 1855, 69028, 4618, NULL, '1.0000', '1.5003', '1.5003', '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 (72685, '2022-04-10', 2169, 69029, 4618, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72686, '2022-04-10', 7444, 69030, 4618, 39808, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72687, '2022-04-10', 1812, 69031, 4618, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72688, '2022-04-10', 9839, 69032, 4618, NULL, '1.0000', '15.0200', '15.0200', '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 (72689, '2022-04-10', 9695, 69033, 4618, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '22.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72690, '2022-04-10', 2285, 69034, 4618, NULL, '1.0000', '35.2503', '35.2503', '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 (72691, '2022-04-10', 9740, 69035, 4618, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72692, '2022-04-10', 1602, 69036, 4618, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72693, '2022-04-10', 9830, 69037, 4618, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72694, '2022-04-10', 1501, 69038, 4618, NULL, '1.0000', '2.1784', '2.1784', '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 (72695, '2022-04-10', 9811, 69039, 4618, 51649, '1.0000', '4.9200', '4.9200', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72696, '2022-04-10', 7357, 69040, 4618, NULL, '1.0000', '12.2000', '12.2000', '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 (72697, '2022-04-10', 9750, 69041, 4618, NULL, '1.0000', '3.3000', '3.3000', '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 (72698, '2022-04-10', 2295, 69042, 4618, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72699, '2022-04-10', 9482, 69043, 4618, 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 (72700, '2022-04-10', 7585, 69044, 4618, NULL, '1.0000', '3.9600', '3.9600', '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 (72701, '2022-04-10', 1425, 69045, 4618, NULL, '1.0000', '5.1721', '5.1721', '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 (72702, '2022-04-10', 2088, 69046, 4618, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72703, '2022-04-10', 2253, 69047, 4618, 51366, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72704, '2022-04-10', 7944, 69048, 4618, NULL, '1.0000', '2.0100', '2.0100', '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 (72705, '2022-04-10', 1532, 69049, 4618, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72706, '2022-04-10', 2169, 69050, 4618, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72707, '2022-04-10', 9740, 69051, 4618, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72708, '2022-04-10', 1856, 69052, 4618, NULL, '1.0000', '4.9999', '4.9999', '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 (72709, '2022-04-10', 1339, 69053, 4619, 51940, '2.0000', '2.2232', '2.2232', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72710, '2022-04-10', 9831, 69054, 4619, 53443, '2.0000', '1.5600', '1.5600', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72711, '2022-04-10', 9830, 69055, 4619, 53444, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72712, '2022-04-10', 1620, 69056, 4620, 52215, '1.0000', '2.2300', '2.2300', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72713, '2022-04-10', 2068, 69057, 4621, 52329, '1.0000', '11.2751', '11.2751', '15.3100', '15.3100', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72714, '2022-04-10', 9864, 69058, 4621, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72715, '2022-04-10', 1760, 69059, 4622, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.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 (72716, '2022-04-10', 1762, 69060, 4622, 3172, '-4.0000', '90.0000', '90.0000', '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 (72717, '2022-04-10', 1762, 69060, 4622, NULL, '5.0000', '90.0000', '90.0000', '13.5000', '13.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 (72718, '2022-04-10', 7674, 69061, 4622, 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 (72719, '2022-04-10', 7640, 69062, 4622, 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 (72720, '2022-04-10', 7514, 69063, 4622, NULL, '1.0000', '2.2500', '2.2500', '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 (72721, '2022-04-10', 1980, 69064, 4622, 5918, '-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 (72722, '2022-04-10', 1980, 69064, 4622, 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 (72723, '2022-04-10', 7585, 69065, 4622, 33812, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72724, '2022-04-10', 2695, 69066, 4623, 45122, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72725, '2022-04-10', 2643, 69067, 4623, 44038, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72726, '2022-04-10', 3059, 69068, 4623, NULL, '2.0000', '0.4500', '0.4500', '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 (72727, '2022-04-10', 2307, 69069, 4623, 46710, '1.0000', '185.3498', '185.3498', '190.0000', '190.0000', '1.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72728, '2022-04-10', 2169, 69070, 4623, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72729, '2022-04-10', 1855, 69071, 4623, 46773, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72730, '2022-04-10', 2260, 69072, 4623, 50871, '2.0000', '4.2238', '4.2238', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72731, '2022-04-10', 1572, 69073, 4623, 49525, '1.0000', '1.9151', '1.9151', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72732, '2022-04-10', 7886, 69074, 4623, 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 (72733, '2022-04-10', 7913, 69075, 4623, NULL, '2.0000', '2.5500', '2.5500', '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 (72734, '2022-04-10', 9724, 69076, 4623, 46080, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72735, '2022-04-10', 2263, 69077, 4623, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72736, '2022-04-10', 7713, 69078, 4623, NULL, '1.0000', '0.3800', '0.3800', '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 (72737, '2022-04-10', 7641, 69079, 4623, NULL, '1.0000', '1.9000', '1.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 (72738, '2022-04-10', 9167, 69080, 4623, 46594, '1.0000', '16.1000', '16.1000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72739, '2022-04-10', 2025, 69081, 4623, NULL, '2.0000', '4.5000', '4.5000', '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 (72740, '2022-04-10', 1501, 69082, 4623, 50905, '1.0000', '144.4724', '144.4724', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72741, '2022-04-10', 2272, 69083, 4623, 44731, '1.0000', '5.8041', '5.8041', '7.8400', '7.8400', '1.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72742, '2022-04-10', 1328, 69084, 4623, 49464, '1.0000', '3.8357', '3.8357', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72743, '2022-04-10', 2315, 69085, 4623, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '172.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72744, '2022-04-10', 1409, 69086, 4623, 52275, '1.0000', '13.0590', '13.0590', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72745, '2022-04-10', 2256, 69087, 4623, 53689, '1.0000', '13.9865', '13.9865', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72746, '2022-04-10', 2642, 69088, 4623, 52924, '1.0000', '7.8214', '7.8214', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72747, '2022-04-10', 2135, 69089, 4623, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72748, '2022-04-10', 9732, 69090, 4623, 52298, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72749, '2022-04-10', 1533, 69091, 4623, 53695, '1.0000', '3.5164', '3.5164', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72750, '2022-04-10', 1912, 69092, 4623, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72751, '2022-04-10', 1667, 69093, 4623, 53264, '1.0000', '32.0007', '32.0007', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72752, '2022-04-11', 2633, 69094, 4624, 52195, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72753, '2022-04-11', 2283, 69095, 4624, 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 (72754, '2022-04-11', 2315, 69096, 4624, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '3.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72755, '2022-04-11', 1409, 69097, 4624, 48152, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72756, '2022-04-11', 7832, 69098, 4624, 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 (72757, '2022-04-11', 9848, 69099, 4624, 52152, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72758, '2022-04-11', 7658, 69100, 4624, NULL, '3.0000', '10.1500', '10.1500', '2.8000', '2.8000', '-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 (72759, '2022-04-11', 2740, 69101, 4624, NULL, '1.0000', '9.8871', '9.8871', '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 (72760, '2022-04-11', 1946, 69102, 4624, NULL, '1.0000', '0.8771', '0.8771', '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 (72761, '2022-04-11', 9846, 69103, 4624, 51668, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72762, '2022-04-11', 7472, 69104, 4624, NULL, '1.0000', '-0.2237', '-0.2237', '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 (72763, '2022-04-11', 1837, 69105, 4624, NULL, '2.0000', '2.5335', '2.5335', '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 (72764, '2022-04-11', 1851, 69106, 4624, 53669, '1.0000', '12.6300', '12.6300', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72765, '2022-04-11', 7342, 69107, 4624, NULL, '1.0000', '15.7285', '15.7285', '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 (72766, '2022-04-11', 2660, 69108, 4624, 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 (72767, '2022-04-11', 1331, 69109, 4624, NULL, '1.0000', '4.2000', '4.2000', '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 (72768, '2022-04-11', 7328, 69110, 4624, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (72769, '2022-04-11', 1840, 69111, 4624, NULL, '1.0000', '0.2400', '0.2400', '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 (72770, '2022-04-11', 8208, 69112, 4624, NULL, '2.0000', '33.0000', '33.0000', '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 (72771, '2022-04-11', 7741, 69113, 4624, NULL, '1.0000', '-6.8417', '-6.8417', '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 (72772, '2022-04-11', 1699, 69114, 4624, NULL, '1.0000', '3.2000', '3.2000', '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 (72773, '2022-04-11', 7506, 69115, 4624, NULL, '1.0000', '15.0000', '15.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 (72774, '2022-04-11', 2443, 69116, 4624, 51935, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72775, '2022-04-11', 1339, 69117, 4624, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72776, '2022-04-11', 2315, 69118, 4624, 49255, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '3.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72777, '2022-04-11', 9830, 69119, 4624, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72778, '2022-04-11', 8984, 69120, 4624, NULL, '1.0000', '-100.8495', '-100.8495', '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 (72779, '2022-04-11', 9831, 69121, 4624, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72780, '2022-04-11', 9830, 69122, 4624, 53444, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72781, '2022-04-11', 1743, 69123, 4624, NULL, '1.0000', '4.6550', '4.6550', '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 (72782, '2022-04-11', 1880, 69124, 4624, 49320, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72783, '2022-04-11', 8844, 69125, 4624, 52199, '1.0000', '4.7829', '4.7829', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72784, '2022-04-11', 7342, 69126, 4624, NULL, '1.0000', '15.7285', '15.7285', '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 (72785, '2022-04-11', 1677, 69127, 4624, NULL, '1.0000', '6.3000', '6.3000', '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 (72786, '2022-04-11', 1863, 69128, 4624, 52219, '2.0000', '1.3923', '1.3923', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72787, '2022-04-11', 7780, 69129, 4624, NULL, '1.0000', '2.6000', '2.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 (72788, '2022-04-11', 9856, 69130, 4624, 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 (72789, '2022-04-11', 2643, 69131, 4624, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72790, '2022-04-11', 2315, 69132, 4624, 49255, '4.0000', '0.4851', '0.4851', '0.8000', '0.8000', '1.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72791, '2022-04-11', 9738, 69133, 4624, 52164, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72792, '2022-04-11', 1339, 69134, 4624, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72793, '2022-04-11', 9748, 69135, 4624, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72794, '2022-04-11', 9532, 69136, 4625, 53434, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72795, '2022-04-11', 1863, 69137, 4625, 52219, '2.0000', '1.3923', '1.3923', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72796, '2022-04-11', 9579, 69138, 4625, 53956, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72797, '2022-04-11', 2643, 69139, 4625, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72798, '2022-04-11', 1307, 69140, 4625, NULL, '1.0000', '-0.0521', '-0.0521', '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 (72799, '2022-04-11', 1935, 69141, 4625, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72800, '2022-04-11', 9870, 69142, 4625, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72801, '2022-04-11', 9695, 69143, 4625, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72802, '2022-04-11', 2556, 69144, 4625, 53458, '2.0000', '0.7769', '0.7769', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72803, '2022-04-11', 2088, 69145, 4625, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72804, '2022-04-11', 1409, 69146, 4626, 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 (72805, '2022-04-11', 1378, 69147, 4626, NULL, '1.0000', '1675.2384', '1675.2384', '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 (72806, '2022-04-11', 9734, 69148, 4626, NULL, '4.0000', '0.3200', '0.3200', '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 (72807, '2022-04-11', 1426, 69149, 4626, NULL, '2.0000', '36.0000', '36.0000', '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 (72808, '2022-04-11', 1432, 69150, 4626, NULL, '2.0000', '8.1574', '8.1574', '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 (72809, '2022-04-11', 1812, 69151, 4626, 8224, '-77.0000', '7.8900', '7.8900', '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 (72810, '2022-04-11', 1812, 69151, 4626, NULL, '79.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72811, '2022-04-11', 2140, 69152, 4626, 1355, '1.0000', '7.7858', '7.7858', '16.0000', '16.0000', '2.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 (72812, '2022-04-11', 1387, 69153, 4626, NULL, '3.0000', '10.5068', '10.5068', '18.5000', '18.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 (72813, '2022-04-11', 1532, 69154, 4626, 22261, '10.0000', '0.8000', '0.8000', '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 (72814, '2022-04-11', 1533, 69155, 4626, 10381, '-12.0000', '2.5917', '2.5917', '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 (72815, '2022-04-11', 1533, 69155, 4626, NULL, '16.0000', '2.5917', '2.5917', '5.5000', '5.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 (72816, '2022-04-11', 1872, 69156, 4626, 12520, '-5.0000', '9.0500', '9.0500', '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 (72817, '2022-04-11', 1872, 69156, 4626, NULL, '9.0000', '9.0500', '9.0500', '13.0000', '13.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 (72818, '2022-04-11', 2135, 69157, 4626, 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 (72819, '2022-04-11', 1602, 69158, 4626, 5897, '-128.0000', '6.7859', '6.7859', '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 (72820, '2022-04-11', 1602, 69158, 4626, NULL, '130.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72821, '2022-04-11', 2759, 69159, 4626, 22012, '-2.0000', '3.9500', '3.9500', '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 (72822, '2022-04-11', 2759, 69159, 4626, NULL, '4.0000', '3.9500', '3.9500', '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 (72823, '2022-04-11', 1876, 69160, 4626, NULL, '1.0000', '0.9126', '0.9126', '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 (72824, '2022-04-11', 2342, 69161, 4626, 3845, '-70.0000', '1.8600', '1.8600', '2.7000', '2.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 (72825, '2022-04-11', 2342, 69161, 4626, NULL, '80.0000', '1.8600', '1.8600', '2.7000', '2.7000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72826, '2022-04-11', 1409, 69162, 4626, 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 (72827, '2022-04-11', 2088, 69163, 4626, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '47.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 (72828, '2022-04-11', 2416, 69164, 4626, 4745, '-24.0000', '1.2000', '1.2000', '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 (72829, '2022-04-11', 2416, 69164, 4626, NULL, '25.0000', '1.2000', '1.2000', '2.0000', '2.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 (72830, '2022-04-11', 7892, 69165, 4627, NULL, '1.0000', '4.2000', '4.2000', '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 (72831, '2022-04-11', 1841, 69166, 4627, NULL, '2.0000', '142.5780', '142.5780', '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 (72832, '2022-04-11', 9576, 69167, 4627, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72833, '2022-04-11', 8984, 69168, 4627, NULL, '1.0000', '0.8700', '0.8700', '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 (72834, '2022-04-11', 7967, 69169, 4627, NULL, '1.0000', '7.0000', '7.0000', '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 (72835, '2022-04-11', 1856, 69170, 4627, NULL, '1.0000', '4.2500', '4.2500', '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 (72836, '2022-04-11', 8208, 69171, 4627, NULL, '2.0000', '33.0000', '33.0000', '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 (72837, '2022-04-11', 7636, 69172, 4627, NULL, '2.0000', '2.5000', '2.5000', '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 (72838, '2022-04-11', 8362, 69173, 4627, NULL, '2.0000', '0.6000', '0.6000', '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 (72839, '2022-04-11', 1840, 69174, 4627, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (72840, '2022-04-11', 9529, 69175, 4627, NULL, '1.0000', '9.2200', '9.2200', '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 (72841, '2022-04-11', 9686, 69176, 4627, NULL, '1.0000', '13.4900', '13.4900', '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 (72842, '2022-04-11', 8086, 69177, 4627, NULL, '1.0000', '9.3000', '9.3000', '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 (72843, '2022-04-11', 9399, 69178, 4627, NULL, '1.0000', '0.9800', '0.9800', '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 (72844, '2022-04-11', 7867, 69179, 4627, NULL, '1.0000', '1.6300', '1.6300', '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 (72845, '2022-04-11', 8448, 69180, 4627, NULL, '1.0000', '6.8900', '6.8900', '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 (72846, '2022-04-11', 7713, 69181, 4627, NULL, '1.0000', '0.3800', '0.3800', '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 (72847, '2022-04-11', 7804, 69182, 4627, 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 (72848, '2022-04-11', 1841, 69183, 4627, NULL, '4.0000', '142.5780', '142.5780', '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 (72849, '2022-04-11', 8208, 69184, 4627, NULL, '4.0000', '33.0000', '33.0000', '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 (72850, '2022-04-11', 7334, 69185, 4627, NULL, '1.0000', '8.2300', '8.2300', '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 (72851, '2022-04-11', 7674, 69186, 4627, 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 (72852, '2022-04-11', 7514, 69187, 4627, NULL, '2.0000', '2.2500', '2.2500', '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 (72853, '2022-04-11', 7641, 69188, 4627, NULL, '1.0000', '1.9000', '1.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 (72854, '2022-04-11', 2506, 69189, 4627, 16244, '-5.0000', '3.4900', '3.4900', '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 (72855, '2022-04-11', 2506, 69189, 4627, NULL, '6.0000', '3.4900', '3.4900', '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 (72856, '2022-04-11', 9785, 69190, 4627, 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 (72857, '2022-04-11', 8063, 69191, 4627, NULL, '1.0000', '1.6000', '1.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 (72858, '2022-04-11', 9716, 69192, 4627, NULL, '1.0000', '4.4000', '4.4000', '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 (72859, '2022-04-11', 8702, 69193, 4627, NULL, '1.0000', '3.6700', '3.6700', '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 (72860, '2022-04-11', 9801, 69194, 4627, NULL, '1.0000', '3.2300', '3.2300', '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 (72861, '2022-04-11', 7317, 69195, 4627, NULL, '1.0000', '19.5500', '19.5500', '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 (72862, '2022-04-11', 1501, 69196, 4627, NULL, '2.0000', '2.0500', '2.0500', '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 (72863, '2022-04-11', 7886, 69197, 4627, 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 (72864, '2022-04-11', 7411, 69198, 4627, NULL, '1.0000', '1.3500', '1.3500', '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 (72865, '2022-04-11', 9274, 69199, 4627, 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 (72866, '2022-04-11', 9618, 69200, 4627, NULL, '4.0000', '3.7500', '3.7500', '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 (72867, '2022-04-11', 7514, 69201, 4627, NULL, '1.0000', '2.2500', '2.2500', '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 (72868, '2022-04-11', 8690, 69202, 4627, NULL, '1.0000', '10.8000', '10.8000', '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 (72869, '2022-04-11', 8457, 69203, 4627, NULL, '1.0000', '4.5000', '4.5000', '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 (72870, '2022-04-11', 7641, 69204, 4627, NULL, '1.0000', '1.9000', '1.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 (72871, '2022-04-11', 7606, 69205, 4627, NULL, '1.0000', '4.8600', '4.8600', '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 (72872, '2022-04-11', 7867, 69206, 4627, NULL, '1.0000', '1.6300', '1.6300', '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 (72873, '2022-04-11', 8547, 69207, 4627, NULL, '1.0000', '3.3500', '3.3500', '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 (72874, '2022-04-11', 1856, 69208, 4627, NULL, '1.0000', '4.2500', '4.2500', '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 (72875, '2022-04-11', 2251, 69209, 4627, 2788, '-15.0000', '10.9700', '10.9700', '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 (72876, '2022-04-11', 2251, 69209, 4627, NULL, '16.0000', '10.9700', '10.9700', '16.0000', '16.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 (72877, '2022-04-11', 1941, 69210, 4627, 5592, '-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 (72878, '2022-04-11', 1941, 69210, 4627, NULL, '7.0000', '90.0000', '90.0000', '3.0000', '3.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 (72879, '2022-04-11', 2315, 69211, 4627, 2735, '-251.0000', '0.3300', '0.3300', '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 (72880, '2022-04-11', 2315, 69211, 4627, NULL, '253.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-253.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72881, '2022-04-11', 1498, 69212, 4627, 19685, '-40.0000', '0.3300', '0.3300', '0.6000', '0.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 (72882, '2022-04-11', 1498, 69212, 4627, NULL, '42.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72883, '2022-04-11', 8208, 69213, 4627, NULL, '2.0000', '33.0000', '33.0000', '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 (72884, '2022-04-11', 8966, 69214, 4627, NULL, '1.0000', '6.8500', '6.8500', '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 (72885, '2022-04-11', 2283, 69215, 4627, 2943, '-12.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 (72886, '2022-04-11', 2283, 69215, 4627, NULL, '13.0000', '1.4300', '1.4300', '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 (72887, '2022-04-11', 9311, 69216, 4627, NULL, '1.0000', '6.6000', '6.6000', '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 (72888, '2022-04-11', 7892, 69217, 4627, NULL, '1.0000', '4.2000', '4.2000', '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 (72889, '2022-04-11', 8702, 69218, 4627, NULL, '1.0000', '3.6700', '3.6700', '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 (72890, '2022-04-11', 2315, 69219, 4627, 2735, '-251.0000', '0.3300', '0.3300', '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 (72891, '2022-04-11', 2315, 69219, 4627, NULL, '253.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-253.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72892, '2022-04-11', 7762, 69220, 4627, NULL, '1.0000', '1.5000', '1.5000', '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 (72893, '2022-04-11', 9715, 69221, 4627, NULL, '1.0000', '9.4000', '9.4000', '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 (72894, '2022-04-11', 8106, 69222, 4627, NULL, '2.0000', '3.2500', '3.2500', '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 (72895, '2022-04-11', 8984, 69223, 4627, NULL, '1.0000', '0.8700', '0.8700', '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 (72896, '2022-04-11', 7641, 69224, 4627, NULL, '1.0000', '1.9000', '1.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 (72897, '2022-04-11', 2242, 69225, 4627, 20608, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '13.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 (72898, '2022-04-11', 7804, 69226, 4627, NULL, '3.0000', '1.0200', '1.0200', '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 (72899, '2022-04-11', 2286, 69227, 4628, 53205, '2.0000', '4.4278', '4.4278', '6.0000', '6.0000', '34.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72900, '2022-04-11', 2556, 69228, 4628, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72901, '2022-04-11', 1337, 69229, 4628, NULL, '1.0000', '2.0000', '2.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 (72902, '2022-04-11', 9762, 69230, 4628, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72903, '2022-04-11', 7411, 69231, 4628, NULL, '1.0000', '1.3013', '1.3013', '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 (72904, '2022-04-11', 1946, 69232, 4628, NULL, '1.0000', '0.8771', '0.8771', '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 (72905, '2022-04-11', 2284, 69233, 4628, 48889, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72906, '2022-04-11', 7915, 69234, 4628, NULL, '1.0000', '2.8000', '2.8000', '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 (72907, '2022-04-11', 1602, 69235, 4628, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72908, '2022-04-11', 1813, 69236, 4628, 45444, '1.0000', '81.7798', '81.7798', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72909, '2022-04-11', 2948, 69237, 4628, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72910, '2022-04-11', 1813, 69238, 4628, 45444, '1.0000', '81.7798', '81.7798', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72911, '2022-04-11', 8740, 69239, 4628, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72912, '2022-04-11', 1409, 69240, 4628, 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 (72913, '2022-04-11', 8740, 69241, 4628, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72914, '2022-04-11', 1328, 69242, 4628, 32533, '1.0000', '3.1500', '3.1500', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72915, '2022-04-11', 2297, 69243, 4628, NULL, '1.0000', '6.4800', '6.4800', '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 (72916, '2022-04-11', 2758, 69244, 4628, NULL, '1.0000', '5.4000', '5.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 (72917, '2022-04-11', 1311, 69245, 4628, 52210, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '45.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72918, '2022-04-11', 1812, 69246, 4628, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72919, '2022-04-11', 2254, 69247, 4628, NULL, '1.0000', '14.8800', '14.8800', '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 (72920, '2022-04-11', 9750, 69248, 4628, NULL, '1.0000', '3.3000', '3.3000', '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 (72921, '2022-04-11', 1812, 69249, 4628, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72922, '2022-04-11', 1912, 69250, 4628, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72923, '2022-04-11', 7334, 69251, 4628, NULL, '3.0000', '8.1600', '8.1600', '13.5000', '13.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 (72924, '2022-04-11', 7756, 69252, 4628, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72925, '2022-04-11', 2221, 69253, 4628, NULL, '1.0000', '15.0000', '15.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 (72926, '2022-04-11', 2293, 69254, 4628, 51215, '1.0000', '10.2680', '10.2680', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72927, '2022-04-11', 2293, 69254, 4628, NULL, '1.0000', '10.2680', '10.2680', '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 (72928, '2022-04-11', 9864, 69255, 4628, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72929, '2022-04-11', 9864, 69256, 4628, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72930, '2022-04-11', 2167, 69257, 4628, NULL, '1.0000', '1.7907', '1.7907', '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 (72931, '2022-04-11', 1311, 69258, 4628, 52210, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '45.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72932, '2022-04-11', 2320, 69259, 4628, 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 (72933, '2022-04-11', 7411, 69260, 4628, NULL, '1.0000', '1.3013', '1.3013', '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 (72934, '2022-04-11', 9735, 69261, 4628, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72935, '2022-04-11', 9740, 69262, 4628, 50242, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72936, '2022-04-11', 7671, 69263, 4628, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72937, '2022-04-11', 2642, 69264, 4628, 51938, '1.0000', '9.6678', '9.6678', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72938, '2022-04-11', 2102, 69265, 4628, 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 (72939, '2022-04-11', 1588, 69266, 4628, 53221, '1.0000', '5.3406', '5.3406', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72940, '2022-04-11', 2295, 69267, 4628, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72941, '2022-04-11', 2242, 69268, 4628, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72942, '2022-04-11', 2169, 69269, 4628, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72943, '2022-04-11', 2089, 69270, 4629, 10811, '-4.0000', '6.6500', '6.6500', '9.5000', '9.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 (72944, '2022-04-11', 2089, 69270, 4629, NULL, '5.0000', '6.6500', '6.6500', '9.5000', '9.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 (72945, '2022-04-11', 2315, 69271, 4629, 2735, '-255.0000', '0.3300', '0.3300', '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 (72946, '2022-04-11', 2315, 69271, 4629, NULL, '256.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-256.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72947, '2022-04-11', 1501, 69272, 4629, NULL, '1.0000', '2.0500', '2.0500', '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 (72948, '2022-04-11', 1871, 69273, 4629, 8223, '-160.0000', '24.5246', '24.5246', '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 (72949, '2022-04-11', 1871, 69273, 4629, NULL, '162.0000', '24.5246', '24.5246', '3.5000', '3.5000', '-162.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72950, '2022-04-11', 9834, 69274, 4629, NULL, '1.0000', '1.4500', '1.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 (72951, '2022-04-11', 1855, 69275, 4630, 20589, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '10.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 (72952, '2022-04-11', 7333, 69276, 4630, NULL, '1.0000', '13.5000', '13.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 (72953, '2022-04-11', 2556, 69277, 4630, 7196, '-34.0000', '0.5800', '0.5800', '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 (72954, '2022-04-11', 2556, 69277, 4630, NULL, '35.0000', '0.5800', '0.5800', '1.5000', '1.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72955, '2022-04-11', 8740, 69278, 4630, NULL, '1.0000', '2.0000', '2.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 (72956, '2022-04-11', 2548, 69279, 4630, 6904, '-1.0000', '6.7200', '6.7200', '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 (72957, '2022-04-11', 2548, 69279, 4630, NULL, '2.0000', '6.7200', '6.7200', '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 (72958, '2022-04-11', 2315, 69280, 4630, 2735, '-256.0000', '0.3300', '0.3300', '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 (72959, '2022-04-11', 2315, 69280, 4630, NULL, '257.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-257.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72960, '2022-04-11', 2948, 69281, 4630, NULL, '2.0000', '0.9000', '0.9000', '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 (72961, '2022-04-11', 1728, 69282, 4630, 6625, '-18.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 (72962, '2022-04-11', 1728, 69282, 4630, NULL, '20.0000', '1.9000', '1.9000', '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 (72963, '2022-04-11', 2295, 69283, 4630, 22264, '3.0000', '0.9600', '0.9600', '2.0000', '2.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 (72964, '2022-04-11', 9413, 69284, 4630, 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 (72965, '2022-04-11', 8740, 69285, 4630, NULL, '1.0000', '2.0000', '2.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 (72966, '2022-04-11', 2556, 69286, 4630, 7196, '-34.0000', '0.5800', '0.5800', '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 (72967, '2022-04-11', 2556, 69286, 4630, NULL, '35.0000', '0.5800', '0.5800', '1.5000', '1.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72968, '2022-04-11', 7428, 69287, 4631, NULL, '4.0000', '2.6100', '2.6100', '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 (72969, '2022-04-11', 7641, 69288, 4631, NULL, '1.0000', '1.9000', '1.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 (72970, '2022-04-11', 9001, 69289, 4631, NULL, '1.0000', '23.5000', '23.5000', '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 (72971, '2022-04-11', 9438, 69290, 4631, NULL, '1.0000', '30.0000', '30.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 (72972, '2022-04-11', 1501, 69291, 4631, NULL, '1.0000', '2.0500', '2.0500', '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 (72973, '2022-04-11', 2315, 69292, 4631, 2735, '-257.0000', '0.3300', '0.3300', '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 (72974, '2022-04-11', 2315, 69292, 4631, NULL, '258.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-258.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72975, '2022-04-11', 9092, 69293, 4631, NULL, '3.0000', '5.2900', '5.2900', '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 (72976, '2022-04-11', 9547, 69294, 4631, 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 (72977, '2022-04-11', 7834, 69295, 4631, 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 (72978, '2022-04-11', 9868, 69296, 4631, 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 (72979, '2022-04-11', 7459, 69297, 4631, NULL, '2.0000', '2.3500', '2.3500', '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 (72980, '2022-04-11', 7641, 69298, 4631, NULL, '1.0000', '1.9000', '1.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 (72981, '2022-04-11', 7674, 69299, 4631, 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 (72982, '2022-04-11', 7674, 69300, 4631, 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 (72983, '2022-04-11', 2166, 69301, 4632, 44544, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72984, '2022-04-11', 7739, 69302, 4632, 49145, '1.0000', '2.7500', '2.7500', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72985, '2022-04-11', 1779, 69303, 4632, 4938, '2.0000', '0.3100', '0.3100', '1.0000', '1.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 (72986, '2022-04-11', 1313, 69304, 4632, 18414, '1.0000', '0.4200', '0.4200', '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 (72987, '2022-04-11', 9750, 69305, 4632, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '40.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72988, '2022-04-11', 9748, 69306, 4632, 46047, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72989, '2022-04-11', 1758, 69307, 4632, 46585, '1.0000', '43.5408', '43.5408', '62.5000', '62.5000', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72990, '2022-04-11', 1863, 69308, 4632, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72991, '2022-04-11', 9734, 69309, 4632, 50862, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72992, '2022-04-11', 7688, 69310, 4632, NULL, '1.0000', '13.3400', '13.3400', '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 (72993, '2022-04-11', 1863, 69311, 4632, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72994, '2022-04-11', 2135, 69312, 4632, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72995, '2022-04-11', 2169, 69313, 4632, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72996, '2022-04-11', 1425, 69314, 4632, 53882, '1.0000', '6.9798', '6.9798', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72997, '2022-04-11', 2484, 69315, 4632, 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 (72998, '2022-04-11', 1759, 69316, 4632, 45119, '1.0000', '17.1453', '17.1453', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72999, '2022-04-11', 7482, 69317, 4632, NULL, '1.0000', '3.0500', '3.0500', '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 (73000, '2022-04-11', 2169, 69318, 4632, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73001, '2022-04-11', 1314, 69319, 4632, 21584, '1.0000', '1.2000', '1.2000', '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 (73002, '2022-04-11', 1780, 69320, 4632, 53688, '1.0000', '37.5200', '37.5200', '51.0000', '51.0000', '1.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73003, '2022-04-11', 2169, 69321, 4632, 52256, '2.0000', '1.1820', '1.1820', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73004, '2022-04-11', 2416, 69322, 4632, 52895, '1.0000', '1.2033', '1.2033', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73005, '2022-04-11', 9868, 69323, 4632, NULL, '5.0000', '1.0000', '1.0000', '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 (73006, '2022-04-11', 1665, 69324, 4633, 50867, '1.0000', '1.1792', '1.1792', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73007, '2022-04-11', 2327, 69325, 4633, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73008, '2022-04-11', 2965, 69326, 4634, 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 (73009, '2022-04-11', 7530, 69327, 4634, NULL, '1.0000', '7.7000', '7.7000', '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 (73010, '2022-04-11', 1346, 69328, 4634, 21942, '-141.0000', '1.0594', '1.0594', '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 (73011, '2022-04-11', 1346, 69328, 4634, NULL, '144.0000', '1.0594', '1.0594', '1.5000', '1.5000', '-144.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73012, '2022-04-11', 1665, 69329, 4634, 3235, '-95.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 (73013, '2022-04-11', 1665, 69329, 4634, NULL, '97.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-97.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73014, '2022-04-11', 9747, 69330, 4634, NULL, '1.0000', '0.6500', '0.6500', '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 (73015, '2022-04-11', 2491, 69331, 4635, 52260, '1.0000', '13.0576', '13.0576', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73016, '2022-04-11', 1586, 69332, 4635, 40851, '1.0000', '49.0100', '49.0100', '69.0000', '69.0000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73017, '2022-04-11', 1839, 69333, 4635, 46723, '1.0000', '7.4147', '7.4147', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73018, '2022-04-11', 7357, 69334, 4635, NULL, '1.0000', '12.2000', '12.2000', '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 (73019, '2022-04-11', 2270, 69335, 4636, 2930, '-7.0000', '0.9880', '0.9880', '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 (73020, '2022-04-11', 2270, 69335, 4636, NULL, '8.0000', '0.9880', '0.9880', '3.5000', '3.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 (73021, '2022-04-11', 8184, 69336, 4636, NULL, '10.0000', '2.4000', '2.4000', '4.0000', '4.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 (73022, '2022-04-11', 9830, 69337, 4636, 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 (73023, '2022-04-11', 8831, 69338, 4636, 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 (73024, '2022-04-11', 2283, 69339, 4637, 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 (73025, '2022-04-11', 2959, 69340, 4637, 45627, '1.0000', '4.1853', '4.1853', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73026, '2022-04-11', 2416, 69341, 4638, 52895, '1.0000', '1.2033', '1.2033', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73027, '2022-04-11', 8517, 69342, 4639, 53271, '1.0000', '28.2488', '28.2488', '37.5000', '37.5000', '1.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73028, '2022-04-12', 2769, 69343, 4640, 53677, '4.0000', '20.8867', '20.8867', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73029, '2022-04-12', 9109, 69344, 4640, 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 (73030, '2022-04-12', 2167, 69345, 4640, NULL, '2.0000', '1.7907', '1.7907', '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 (73031, '2022-04-12', 9740, 69346, 4640, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73032, '2022-04-12', 2754, 69347, 4640, 18938, '2.0000', '0.0800', '0.0800', '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 (73033, '2022-04-12', 2948, 69348, 4640, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73034, '2022-04-12', 9482, 69349, 4640, NULL, '2.0000', '0.5000', '0.5000', '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 (73035, '2022-04-12', 2769, 69350, 4640, 53677, '6.0000', '20.8867', '20.8867', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73036, '2022-04-12', 1346, 69351, 4640, 24923, '2.0000', '-4.0305', '-4.0305', '1.5000', '1.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 (73037, '2022-04-12', 2103, 69352, 4640, 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 (73038, '2022-04-12', 9832, 69353, 4640, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73039, '2022-04-12', 1580, 69354, 4640, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73040, '2022-04-12', 2293, 69355, 4640, NULL, '5.0000', '10.2680', '10.2680', '1.5000', '1.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 (73041, '2022-04-12', 9399, 69356, 4640, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73042, '2022-04-12', 1502, 69357, 4640, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '16.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73043, '2022-04-12', 3064, 69358, 4640, 24872, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.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 (73044, '2022-04-12', 2411, 69359, 4640, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73045, '2022-04-12', 8746, 69360, 4640, 53448, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73046, '2022-04-12', 2221, 69361, 4640, NULL, '1.0000', '15.0000', '15.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 (73047, '2022-04-12', 2865, 69362, 4640, NULL, '1.0000', '2.8000', '2.8000', '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 (73048, '2022-04-12', 1339, 69363, 4640, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73049, '2022-04-12', 9794, 69364, 4640, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73050, '2022-04-12', 2410, 69365, 4640, 48148, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73051, '2022-04-12', 1590, 69366, 4640, 50113, '3.0000', '1.7600', '1.7600', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73052, '2022-04-12', 2257, 69367, 4640, 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 (73053, '2022-04-12', 1478, 69368, 4641, 52325, '1.0000', '28.2361', '28.2361', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73054, '2022-04-12', 1479, 69369, 4641, 52326, '1.0000', '48.0000', '48.0000', '64.0000', '64.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73055, '2022-04-12', 1824, 69370, 4641, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73056, '2022-04-12', 1608, 69371, 4641, 53660, '1.0000', '4.1377', '4.1377', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73057, '2022-04-12', 1692, 69372, 4641, 51507, '1.0000', '9.8219', '9.8219', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73058, '2022-04-12', 2167, 69373, 4641, NULL, '1.0000', '1.7907', '1.7907', '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 (73059, '2022-04-12', 7411, 69374, 4641, NULL, '1.0000', '1.3013', '1.3013', '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 (73060, '2022-04-12', 1863, 69375, 4641, 52219, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73061, '2022-04-12', 1502, 69376, 4641, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '15.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73062, '2022-04-12', 2105, 69377, 4641, 52224, '1.0000', '2.4500', '2.4500', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73063, '2022-04-12', 1651, 69378, 4642, NULL, '1.0000', '8.2255', '8.2255', '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 (73064, '2022-04-12', 1812, 69379, 4643, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73065, '2022-04-12', 9809, 69380, 4644, NULL, '1.0000', '5.7900', '5.7900', '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 (73066, '2022-04-12', 7750, 69381, 4644, NULL, '1.0000', '33.9800', '33.9800', '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 (73067, '2022-04-12', 7697, 69382, 4644, 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 (73068, '2022-04-12', 8810, 69383, 4644, NULL, '1.0000', '1.6000', '1.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 (73069, '2022-04-12', 7981, 69384, 4644, NULL, '5.0000', '6.0000', '6.0000', '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 (73070, '2022-04-12', 8444, 69385, 4644, NULL, '1.0000', '1.6000', '1.6000', '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 (73071, '2022-04-12', 7819, 69386, 4644, 33817, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73072, '2022-04-12', 7509, 69387, 4644, 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 (73073, '2022-04-12', 8360, 69388, 4644, NULL, '1.0000', '3.2300', '3.2300', '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 (73074, '2022-04-12', 7516, 69389, 4644, NULL, '1.0000', '10.0000', '10.0000', '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 (73075, '2022-04-12', 7848, 69390, 4644, NULL, '1.0000', '1.3500', '1.3500', '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 (73076, '2022-04-12', 8360, 69391, 4644, NULL, '1.0000', '3.2300', '3.2300', '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 (73077, '2022-04-12', 1420, 69392, 4644, 20658, '1.0000', '1.2000', '1.2000', '2.0000', '2.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 (73078, '2022-04-12', 8395, 69393, 4644, NULL, '2.0000', '0.9700', '0.9700', '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 (73079, '2022-04-12', 7678, 69394, 4644, NULL, '1.0000', '5.1400', '5.1400', '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 (73080, '2022-04-12', 1804, 69395, 4644, 4916, '-9.0000', '4.2500', '4.2500', '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 (73081, '2022-04-12', 1804, 69395, 4644, NULL, '10.0000', '4.2500', '4.2500', '6.5000', '6.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 (73082, '2022-04-12', 8084, 69396, 4644, NULL, '1.0000', '12.7000', '12.7000', '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 (73083, '2022-04-12', 7674, 69397, 4644, 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 (73084, '2022-04-12', 2965, 69398, 4644, 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 (73085, '2022-04-12', 7473, 69399, 4644, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (73086, '2022-04-12', 9561, 69400, 4644, 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 (73087, '2022-04-12', 9838, 69401, 4644, 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 (73088, '2022-04-12', 8767, 69402, 4644, NULL, '1.0000', '6.6900', '6.6900', '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 (73089, '2022-04-12', 7674, 69403, 4645, 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 (73090, '2022-04-12', 7385, 69404, 4645, NULL, '4.0000', '2.0000', '2.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 (73091, '2022-04-12', 8744, 69405, 4645, NULL, '1.0000', '3.6600', '3.6600', '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 (73092, '2022-04-12', 1736, 69406, 4646, 7382, '-6.0000', '-6.2282', '-6.2282', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73093, '2022-04-12', 1736, 69406, 4646, NULL, '7.0000', '-6.2282', '-6.2282', '42.0000', '42.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 (73094, '2022-04-12', 2382, 69407, 4646, 4035, '-2.0000', '15.6600', '15.6600', '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 (73095, '2022-04-12', 2382, 69407, 4646, NULL, '3.0000', '15.6600', '15.6600', '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 (73096, '2022-04-12', 9740, 69408, 4646, NULL, '4.0000', '0.6600', '0.6600', '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 (73097, '2022-04-12', 8183, 69409, 4646, NULL, '1.0000', '81.9100', '81.9100', '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 (73098, '2022-04-12', 2657, 69410, 4646, 11267, '-14.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 (73099, '2022-04-12', 2657, 69410, 4646, NULL, '15.0000', '5.4200', '5.4200', '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 (73100, '2022-04-12', 1892, 69411, 4646, 5431, '-8.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 (73101, '2022-04-12', 1892, 69411, 4646, NULL, '10.0000', '90.0000', '90.0000', '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 (73102, '2022-04-12', 2169, 69412, 4646, 10737, '-102.0000', '3.8397', '3.8397', '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 (73103, '2022-04-12', 2169, 69412, 4646, NULL, '104.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-104.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73104, '2022-04-12', 1337, 69413, 4646, 10809, '-17.0000', '2.0000', '2.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 (73105, '2022-04-12', 1337, 69413, 4646, NULL, '18.0000', '2.0000', '2.0000', '3.5000', '3.5000', '-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 (73106, '2022-04-12', 1339, 69414, 4646, 13004, '-12.0000', '1.6012', '1.6012', '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 (73107, '2022-04-12', 1339, 69414, 4646, NULL, '13.0000', '1.6012', '1.6012', '3.0000', '3.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 (73108, '2022-04-12', 2135, 69415, 4646, 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 (73109, '2022-04-12', 1584, 69416, 4646, 7601, '-41.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 (73110, '2022-04-12', 1584, 69416, 4646, NULL, '45.0000', '90.0000', '90.0000', '9.0000', '9.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 (73111, '2022-04-12', 2889, 69417, 4646, 18024, '-1.0000', '20.0000', '20.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 (73112, '2022-04-12', 2889, 69417, 4646, NULL, '2.0000', '20.0000', '20.0000', '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 (73113, '2022-04-12', 1620, 69418, 4646, 8955, '-35.0000', '408.8259', '408.8259', '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 (73114, '2022-04-12', 1620, 69418, 4646, NULL, '36.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-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 (73115, '2022-04-12', 2643, 69419, 4646, NULL, '1.0000', '0.8700', '0.8700', '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 (73116, '2022-04-12', 2416, 69420, 4646, 4745, '-25.0000', '1.2000', '1.2000', '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 (73117, '2022-04-12', 2416, 69420, 4646, NULL, '26.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (73118, '2022-04-12', 9578, 69421, 4646, NULL, '1.0000', '8.0000', '8.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 (73119, '2022-04-12', 9747, 69422, 4646, NULL, '1.0000', '0.6500', '0.6500', '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 (73120, '2022-04-12', 1837, 69423, 4646, NULL, '5.0000', '0.9642', '0.9642', '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 (73121, '2022-04-12', 7576, 69424, 4647, NULL, '4.0000', '122.7783', '122.7783', '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 (73122, '2022-04-12', 2289, 69425, 4647, NULL, '6.0000', '2.5688', '2.5688', '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 (73123, '2022-04-12', 1841, 69426, 4647, 48007, '4.0000', '0.1792', '0.1792', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73124, '2022-04-12', 7741, 69427, 4647, NULL, '2.0000', '8.7284', '8.7284', '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 (73125, '2022-04-12', 1498, 69428, 4647, 50696, '2.0000', '0.3942', '0.3942', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73126, '2022-04-12', 2315, 69429, 4647, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '92.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73127, '2022-04-12', 7473, 69430, 4647, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73128, '2022-04-12', 9579, 69431, 4647, 52526, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73129, '2022-04-12', 9579, 69431, 4647, 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 (73130, '2022-04-12', 7711, 69432, 4647, NULL, '1.0000', '-5144.5722', '-5144.5722', '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 (73131, '2022-04-12', 2277, 69433, 4647, 48385, '2.0000', '0.7800', '0.7800', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73132, '2022-04-12', 7506, 69434, 4647, NULL, '1.0000', '15.0000', '15.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 (73133, '2022-04-12', 2251, 69435, 4647, 53786, '1.0000', '11.7072', '11.7072', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73134, '2022-04-12', 8539, 69436, 4647, 53989, '2.0000', '1.4639', '1.4639', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73135, '2022-04-12', 7473, 69437, 4647, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73136, '2022-04-12', 9729, 69438, 4647, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73137, '2022-04-12', 9734, 69439, 4647, 46910, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73138, '2022-04-12', 7547, 69440, 4647, NULL, '2.0000', '0.0000', '0.0000', '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 (73139, '2022-04-12', 7703, 69441, 4647, NULL, '3.0000', '102.7757', '102.7757', '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 (73140, '2022-04-12', 7674, 69442, 4647, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '100.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73141, '2022-04-12', 7354, 69443, 4647, NULL, '2.0000', '-2.5000', '-2.5000', '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 (73142, '2022-04-12', 1510, 69444, 4647, 53773, '1.0000', '8.5250', '8.5250', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73143, '2022-04-12', 7411, 69445, 4647, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73144, '2022-04-12', 1620, 69446, 4647, 53516, '2.0000', '2.2300', '2.2300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73145, '2022-04-12', 1845, 69447, 4647, 53982, '1.0000', '21.6667', '21.6667', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73146, '2022-04-12', 9800, 69448, 4647, 50116, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 408);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73147, '2022-04-12', 9736, 69449, 4647, 51795, '1.0000', '3.9253', '3.9253', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73148, '2022-04-12', 8033, 69450, 4647, NULL, '1.0000', '27.7000', '27.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 (73149, '2022-04-12', 2352, 69451, 4647, NULL, '2.0000', '1.9000', '1.9000', '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 (73150, '2022-04-12', 2503, 69452, 4647, 43959, '1.0000', '15.0899', '15.0899', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73151, '2022-04-12', 2557, 69453, 4647, 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 (73152, '2022-04-12', 9740, 69454, 4647, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73153, '2022-04-12', 7704, 69455, 4647, NULL, '1.0000', '-1.5625', '-1.5625', '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 (73154, '2022-04-12', 7756, 69456, 4647, NULL, '1.0000', '75.7768', '75.7768', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73155, '2022-04-12', 2604, 69457, 4647, NULL, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73156, '2022-04-12', 9028, 69458, 4647, 45777, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73157, '2022-04-12', 2363, 69459, 4647, 45806, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73158, '2022-04-12', 2363, 69459, 4647, 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 (73159, '2022-04-12', 2352, 69460, 4647, NULL, '2.0000', '1.9000', '1.9000', '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 (73160, '2022-04-12', 8740, 69461, 4648, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73161, '2022-04-12', 1574, 69462, 4648, NULL, '1.0000', '1.7000', '1.7000', '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 (73162, '2022-04-12', 1812, 69463, 4648, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73163, '2022-04-12', 1590, 69464, 4648, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73164, '2022-04-12', 1528, 69465, 4648, 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 (73165, '2022-04-12', 2242, 69466, 4648, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73166, '2022-04-12', 2315, 69467, 4648, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '54.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73167, '2022-04-12', 1580, 69468, 4648, 51316, '2.0000', '1.1598', '1.1598', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73168, '2022-04-12', 9778, 69469, 4648, 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 (73169, '2022-04-12', 2315, 69470, 4648, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '54.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73170, '2022-04-12', 7585, 69471, 4648, NULL, '1.0000', '3.9600', '3.9600', '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 (73171, '2022-04-12', 1580, 69472, 4648, 51316, '1.0000', '1.1598', '1.1598', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73172, '2022-04-12', 2965, 69473, 4648, NULL, '1.0000', '8.3288', '8.3288', '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 (73173, '2022-04-12', 2315, 69474, 4648, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '54.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73174, '2022-04-12', 8595, 69475, 4648, NULL, '1.0000', '3.9640', '3.9640', '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 (73175, '2022-04-12', 2283, 69476, 4648, 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 (73176, '2022-04-12', 1864, 69477, 4648, 34594, '1.0000', '6.2625', '6.2625', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73177, '2022-04-12', 1779, 69478, 4648, 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 (73178, '2022-04-12', 9747, 69479, 4648, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73179, '2022-04-12', 1840, 69480, 4648, NULL, '2.0000', '0.2400', '0.2400', '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 (73180, '2022-04-12', 1841, 69481, 4648, NULL, '2.0000', '0.2601', '0.2601', '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 (73181, '2022-04-12', 7506, 69482, 4648, NULL, '1.0000', '15.0000', '15.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 (73182, '2022-04-12', 8208, 69483, 4648, NULL, '2.0000', '33.0000', '33.0000', '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 (73183, '2022-04-12', 2167, 69484, 4648, NULL, '1.0000', '1.7907', '1.7907', '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 (73184, '2022-04-12', 1908, 69485, 4648, NULL, '2.0000', '0.9032', '0.9032', '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 (73185, '2022-04-12', 2242, 69486, 4648, 48480, '5.0000', '4.6984', '4.6984', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73186, '2022-04-12', 7483, 69487, 4648, NULL, '5.0000', '0.4200', '0.4200', '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 (73187, '2022-04-12', 7741, 69488, 4648, NULL, '1.0000', '-6.8417', '-6.8417', '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 (73188, '2022-04-12', 9750, 69489, 4648, NULL, '1.0000', '3.3000', '3.3000', '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 (73189, '2022-04-12', 2384, 69490, 4648, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73190, '2022-04-12', 1841, 69491, 4648, NULL, '4.0000', '0.2601', '0.2601', '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 (73191, '2022-04-12', 1840, 69492, 4648, NULL, '4.0000', '0.2400', '0.2400', '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 (73192, '2022-04-12', 1501, 69493, 4648, NULL, '2.0000', '2.1784', '2.1784', '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 (73193, '2022-04-12', 2237, 69494, 4648, 51305, '2.0000', '87.1257', '87.1257', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73194, '2022-04-12', 1812, 69495, 4648, 53647, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73195, '2022-04-12', 2169, 69496, 4648, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73196, '2022-04-12', 2821, 69497, 4648, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73197, '2022-04-12', 1771, 69498, 4648, 51319, '1.0000', '5.7805', '5.7805', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73198, '2022-04-12', 8451, 69499, 4649, 46914, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73199, '2022-04-12', 9740, 69500, 4649, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73200, '2022-04-12', 8085, 69501, 4649, 49815, '3.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73201, '2022-04-12', 2858, 69502, 4650, 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 (73202, '2022-04-12', 1510, 69503, 4650, 49059, '1.0000', '4.7450', '4.7450', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73203, '2022-04-12', 2251, 69504, 4650, 53250, '1.0000', '11.6244', '11.6244', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73204, '2022-04-12', 1306, 69505, 4650, 49120, '3.0000', '2.1000', '2.1000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73205, '2022-04-12', 1867, 69506, 4650, NULL, '1.0000', '9.4614', '9.4614', '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 (73206, '2022-04-12', 2270, 69507, 4650, 52266, '1.0000', '2.6065', '2.6065', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73207, '2022-04-12', 1783, 69508, 4650, 50900, '6.0000', '-16.1683', '-16.1683', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73208, '2022-04-12', 1783, 69508, 4650, 50559, '3.0000', '-16.1683', '-16.1683', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 411);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73209, '2022-04-12', 1987, 69509, 4650, NULL, '1.0000', '5.3952', '5.3952', '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 (73210, '2022-04-12', 1837, 69510, 4650, 46752, '1.0000', '0.4981', '0.4981', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73211, '2022-04-12', 2413, 69511, 4650, 24121, '4.0000', '1.0500', '1.0500', '1.5000', '1.5000', '30.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 (73212, '2022-04-12', 1602, 69512, 4650, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73213, '2022-04-12', 1362, 69513, 4650, 3402, '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 (73214, '2022-04-12', 2169, 69514, 4650, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73215, '2022-04-12', 1499, 69515, 4650, 45093, '1.0000', '0.4164', '0.4164', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73216, '2022-04-12', 8666, 69516, 4650, NULL, '1.0000', '0.4600', '0.4600', '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 (73217, '2022-04-12', 2990, 69517, 4650, 46050, '1.0000', '4.1906', '4.1906', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73218, '2022-04-12', 9590, 69518, 4650, NULL, '1.0000', '0.0000', '0.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 (73219, '2022-04-12', 2169, 69519, 4650, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73220, '2022-04-12', 1840, 69520, 4650, NULL, '2.0000', '0.2400', '0.2400', '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 (73221, '2022-04-12', 1841, 69521, 4650, 44579, '2.0000', '-0.0035', '-0.0035', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73222, '2022-04-12', 7741, 69522, 4650, 53871, '1.0000', '-3.6144', '-3.6144', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73223, '2022-04-12', 1694, 69523, 4650, 31707, '1.0000', '7.1900', '7.1900', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73224, '2022-04-12', 7933, 69524, 4650, NULL, '1.0000', '0.4400', '0.4400', '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 (73225, '2022-04-12', 1783, 69525, 4650, 50900, '3.0000', '-16.1683', '-16.1683', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73226, '2022-04-12', 1986, 69526, 4650, 52889, '1.0000', '3.6853', '3.6853', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73227, '2022-04-12', 2858, 69527, 4650, 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 (73228, '2022-04-12', 9695, 69528, 4650, 52314, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73229, '2022-04-12', 7917, 69529, 4651, NULL, '4.0000', '5.0000', '5.0000', '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 (73230, '2022-04-12', 2379, 69530, 4651, NULL, '1.0000', '0.2954', '0.2954', '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 (73231, '2022-04-12', 2443, 69531, 4651, 51935, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73232, '2022-04-12', 8969, 69532, 4651, 49342, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73233, '2022-04-12', 2289, 69533, 4651, NULL, '4.0000', '0.2222', '0.2222', '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 (73234, '2022-04-12', 7411, 69534, 4651, NULL, '1.0000', '1.3013', '1.3013', '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 (73235, '2022-04-12', 1501, 69535, 4651, NULL, '1.0000', '2.1784', '2.1784', '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 (73236, '2022-04-12', 1602, 69536, 4651, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73237, '2022-04-12', 8714, 69537, 4651, NULL, '1.0000', '5.2100', '5.2100', '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 (73238, '2022-04-12', 1646, 69538, 4651, 53661, '1.0000', '5.5398', '5.5398', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73239, '2022-04-12', 9109, 69539, 4651, 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 (73240, '2022-04-12', 7743, 69540, 4651, NULL, '4.0000', '7.3900', '7.3900', '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 (73241, '2022-04-12', 9819, 69541, 4651, 52216, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73242, '2022-04-12', 7509, 69542, 4652, 53507, '1.0000', '17.2236', '17.2236', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73243, '2022-04-13', 2135, 69543, 4653, 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 (73244, '2022-04-13', 2384, 69544, 4653, 12014, '1.0000', '0.4000', '0.4000', '0.7000', '0.7000', '40.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 (73245, '2022-04-13', 2858, 69545, 4653, 17772, '-60.0000', '1.0000', '1.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 (73246, '2022-04-13', 2858, 69545, 4653, NULL, '61.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73247, '2022-04-13', 2169, 69546, 4653, 10737, '-104.0000', '3.8397', '3.8397', '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 (73248, '2022-04-13', 2169, 69546, 4653, NULL, '105.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73249, '2022-04-13', 2167, 69547, 4653, 17165, '-43.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 (73250, '2022-04-13', 2167, 69547, 4653, NULL, '44.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73251, '2022-04-13', 1486, 69548, 4653, 20667, '1.0000', '17.2400', '17.2400', '22.5000', '22.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 (73252, '2022-04-13', 9732, 69549, 4653, 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 (73253, '2022-04-13', 2657, 69550, 4653, 11267, '-15.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 (73254, '2022-04-13', 2657, 69550, 4653, NULL, '16.0000', '5.4200', '5.4200', '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 (73255, '2022-04-13', 2315, 69551, 4653, 2735, '-258.0000', '0.3300', '0.3300', '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 (73256, '2022-04-13', 2315, 69551, 4653, NULL, '260.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-260.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73257, '2022-04-13', 1432, 69552, 4653, 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 (73258, '2022-04-13', 1851, 69553, 4653, 8627, '-9.0000', '10.6568', '10.6568', '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 (73259, '2022-04-13', 1851, 69553, 4653, NULL, '10.0000', '10.6568', '10.6568', '17.0000', '17.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 (73260, '2022-04-13', 7750, 69554, 4654, NULL, '1.0000', '33.9800', '33.9800', '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 (73261, '2022-04-13', 7687, 69555, 4654, NULL, '1.0000', '39.5800', '39.5800', '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 (73262, '2022-04-13', 7559, 69556, 4654, NULL, '10.0000', '6.0000', '6.0000', '9.0000', '9.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 (73263, '2022-04-13', 7736, 69557, 4654, NULL, '1.0000', '16.2000', '16.2000', '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 (73264, '2022-04-13', 2955, 69558, 4654, NULL, '1.0000', '4.8000', '4.8000', '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 (73265, '2022-04-13', 8444, 69559, 4654, NULL, '1.0000', '1.6000', '1.6000', '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 (73266, '2022-04-13', 8360, 69560, 4654, NULL, '1.0000', '3.2300', '3.2300', '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 (73267, '2022-04-13', 8062, 69561, 4654, NULL, '3.0000', '4.8200', '4.8200', '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 (73268, '2022-04-13', 7490, 69562, 4654, NULL, '9.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-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 (73269, '2022-04-13', 8566, 69563, 4654, 33072, '1.0000', '11.0000', '11.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73270, '2022-04-13', 1837, 69564, 4654, 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 (73271, '2022-04-13', 7576, 69565, 4654, NULL, '4.0000', '1.6300', '1.6300', '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 (73272, '2022-04-13', 7478, 69566, 4654, NULL, '3.0000', '4.0000', '4.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 (73273, '2022-04-13', 7657, 69567, 4654, NULL, '1.0000', '11.3200', '11.3200', '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 (73274, '2022-04-13', 8023, 69568, 4654, NULL, '1.0000', '20.5000', '20.5000', '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 (73275, '2022-04-13', 7641, 69569, 4654, NULL, '1.0000', '1.9000', '1.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 (73276, '2022-04-13', 7703, 69570, 4654, NULL, '1.0000', '22.9900', '22.9900', '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 (73277, '2022-04-13', 8878, 69571, 4654, NULL, '1.0000', '6.6700', '6.6700', '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 (73278, '2022-04-13', 9734, 69572, 4654, NULL, '4.0000', '0.3200', '0.3200', '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 (73279, '2022-04-13', 3018, 69573, 4654, 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 (73280, '2022-04-13', 7862, 69574, 4654, NULL, '1.0000', '3.8500', '3.8500', '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 (73281, '2022-04-13', 7385, 69575, 4654, NULL, '2.0000', '2.0000', '2.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 (73282, '2022-04-13', 7821, 69576, 4654, NULL, '1.0000', '13.0700', '13.0700', '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 (73283, '2022-04-13', 7509, 69577, 4654, 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 (73284, '2022-04-13', 8135, 69578, 4654, NULL, '1.0000', '5.4500', '5.4500', '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 (73285, '2022-04-13', 9092, 69579, 4654, NULL, '3.0000', '5.2900', '5.2900', '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 (73286, '2022-04-13', 8810, 69580, 4654, NULL, '1.0000', '1.6000', '1.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 (73287, '2022-04-13', 9852, 69581, 4654, 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 (73288, '2022-04-13', 8712, 69582, 4654, NULL, '1.0000', '7.0400', '7.0400', '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 (73289, '2022-04-13', 7703, 69583, 4654, NULL, '2.0000', '22.9900', '22.9900', '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 (73290, '2022-04-13', 2315, 69584, 4654, 2735, '-260.0000', '0.3300', '0.3300', '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 (73291, '2022-04-13', 2315, 69584, 4654, NULL, '261.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-261.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73292, '2022-04-13', 7741, 69585, 4654, NULL, '1.0000', '1.2000', '1.2000', '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 (73293, '2022-04-13', 8360, 69586, 4654, NULL, '1.0000', '3.2300', '3.2300', '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 (73294, '2022-04-13', 7428, 69587, 4654, NULL, '4.0000', '2.6100', '2.6100', '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 (73295, '2022-04-13', 1935, 69588, 4654, 5586, '-62.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 (73296, '2022-04-13', 1935, 69588, 4654, NULL, '63.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73297, '2022-04-13', 7954, 69589, 4654, NULL, '3.0000', '3.0000', '3.0000', '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 (73298, '2022-04-13', 2315, 69590, 4654, 2735, '-260.0000', '0.3300', '0.3300', '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 (73299, '2022-04-13', 2315, 69590, 4654, NULL, '262.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-262.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73300, '2022-04-13', 9097, 69591, 4655, 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 (73301, '2022-04-13', 8080, 69592, 4655, NULL, '5.0000', '2.9000', '2.9000', '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 (73302, '2022-04-13', 2617, 69593, 4655, 48802, '3.0000', '4.4000', '4.4000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73303, '2022-04-13', 9463, 69594, 4655, NULL, '1.0000', '4.3333', '4.3333', '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 (73304, '2022-04-13', 8077, 69595, 4655, NULL, '1.0000', '4.9986', '4.9986', '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 (73305, '2022-04-13', 1867, 69596, 4655, NULL, '1.0000', '11.8714', '11.8714', '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 (73306, '2022-04-13', 7880, 69597, 4655, NULL, '1.0000', '1.0000', '1.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 (73307, '2022-04-13', 1339, 69598, 4655, NULL, '1.0000', '1.6199', '1.6199', '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 (73308, '2022-04-13', 7708, 69599, 4655, NULL, '1.0000', '-53.8964', '-53.8964', '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 (73309, '2022-04-13', 1501, 69600, 4655, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73310, '2022-04-13', 8032, 69601, 4655, 50374, '1.0000', '6.2640', '6.2640', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73311, '2022-04-13', 9716, 69602, 4655, 53998, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73312, '2022-04-13', 7674, 69603, 4655, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73313, '2022-04-13', 8430, 69604, 4655, 50287, '1.0000', '32.1050', '32.1050', '42.5000', '42.5000', '0.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73314, '2022-04-13', 8456, 69605, 4655, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73315, '2022-04-13', 2315, 69606, 4655, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '91.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73316, '2022-04-13', 7803, 69607, 4655, NULL, '1.0000', '1.8200', '1.8200', '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 (73317, '2022-04-13', 8135, 69608, 4655, NULL, '1.0000', '5.8990', '5.8990', '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 (73318, '2022-04-13', 2315, 69609, 4655, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '91.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73319, '2022-04-13', 1338, 69610, 4655, NULL, '1.0000', '4.6009', '4.6009', '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 (73320, '2022-04-13', 8355, 69611, 4655, NULL, '1.0000', '17.2620', '17.2620', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73321, '2022-04-13', 7324, 69612, 4655, 45796, '2.0000', '5.3429', '5.3429', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73322, '2022-04-13', 8040, 69613, 4655, 50658, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73323, '2022-04-13', 7428, 69614, 4655, 50471, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '94.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73324, '2022-04-13', 8085, 69615, 4655, 49815, '1.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73325, '2022-04-13', 7917, 69616, 4655, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '136.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73326, '2022-04-13', 7674, 69617, 4655, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73327, '2022-04-13', 7744, 69618, 4655, NULL, '1.0000', '2.7200', '2.7200', '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 (73328, '2022-04-13', 2069, 69619, 4655, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73329, '2022-04-13', 2965, 69620, 4655, NULL, '1.0000', '13.7300', '13.7300', '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 (73330, '2022-04-13', 8775, 69621, 4655, 43940, '1.0000', '2.6000', '2.6000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73331, '2022-04-13', 8984, 69622, 4655, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '16.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73332, '2022-04-13', 9817, 69623, 4655, 53902, '2.0000', '3.9000', '3.9000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73333, '2022-04-13', 9590, 69624, 4655, NULL, '1.0000', '0.0000', '0.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 (73334, '2022-04-13', 7674, 69625, 4655, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73335, '2022-04-13', 7435, 69626, 4655, NULL, '14.0000', '5.3311', '5.3311', '8.0000', '8.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 (73336, '2022-04-13', 9747, 69627, 4655, 50667, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73337, '2022-04-13', 1845, 69628, 4655, 53982, '1.0000', '21.6667', '21.6667', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73338, '2022-04-13', 8767, 69629, 4655, 52035, '2.0000', '7.1000', '7.1000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73339, '2022-04-13', 9461, 69630, 4655, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73340, '2022-04-13', 7703, 69631, 4655, NULL, '1.0000', '102.7757', '102.7757', '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 (73341, '2022-04-13', 7587, 69632, 4655, NULL, '1.0000', '6.3886', '6.3886', '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 (73342, '2022-04-13', 9566, 69633, 4655, 38176, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73343, '2022-04-13', 1855, 69634, 4655, 49820, '1.0000', '1.4365', '1.4365', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73344, '2022-04-13', 9390, 69635, 4655, NULL, '1.0000', '25.0000', '25.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 (73345, '2022-04-13', 2248, 69636, 4655, 48283, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73346, '2022-04-13', 9016, 69637, 4655, NULL, '1.0000', '-8.3000', '-8.3000', '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 (73347, '2022-04-13', 8067, 69638, 4655, 53769, '1.0000', '4.0979', '4.0979', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73348, '2022-04-13', 8810, 69639, 4655, NULL, '1.0000', '36.0605', '36.0605', '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 (73349, '2022-04-13', 7428, 69640, 4655, 50471, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '96.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73350, '2022-04-13', 8035, 69641, 4656, NULL, '1.0000', '1.4500', '1.4500', '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 (73351, '2022-04-13', 8615, 69642, 4656, NULL, '1.0000', '4.5052', '4.5052', '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 (73352, '2022-04-13', 9729, 69643, 4656, 53908, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73353, '2022-04-13', 7707, 69644, 4656, NULL, '1.0000', '5.7519', '5.7519', '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 (73354, '2022-04-13', 7411, 69645, 4656, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73355, '2022-04-13', 7672, 69646, 4656, NULL, '1.0000', '3.8200', '3.8200', '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 (73356, '2022-04-13', 7713, 69647, 4656, 50666, '1.0000', '0.3910', '0.3910', '0.6000', '0.6000', '112.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73357, '2022-04-13', 1520, 69648, 4656, NULL, '2.0000', '1.4700', '1.4700', '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 (73358, '2022-04-13', 7514, 69649, 4656, NULL, '1.0000', '1417.7133', '1417.7133', '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 (73359, '2022-04-13', 7376, 69650, 4657, NULL, '1.0000', '141.7100', '141.7100', '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 (73360, '2022-04-13', 2444, 69651, 4657, 42936, '2.0000', '8.2500', '8.2500', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73361, '2022-04-13', 1863, 69652, 4657, 49847, '3.0000', '1.2686', '1.2686', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73362, '2022-04-13', 1410, 69653, 4657, 49523, '2.0000', '2.6699', '2.6699', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73363, '2022-04-13', 7482, 69654, 4657, NULL, '1.0000', '3.0500', '3.0500', '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 (73364, '2022-04-13', 9715, 69655, 4657, 52243, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73365, '2022-04-13', 1572, 69656, 4657, 49525, '2.0000', '1.9151', '1.9151', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73366, '2022-04-13', 3058, 69657, 4657, 52271, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73367, '2022-04-13', 2516, 69658, 4657, 52890, '1.0000', '8.6296', '8.6296', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73368, '2022-04-13', 2408, 69659, 4657, 40209, '1.0000', '8.9516', '8.9516', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73369, '2022-04-13', 9750, 69660, 4657, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '39.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73370, '2022-04-13', 8746, 69661, 4657, 52896, '1.0000', '-11.9871', '-11.9871', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73371, '2022-04-13', 2262, 69662, 4657, 52097, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73372, '2022-04-13', 1665, 69663, 4657, 50867, '2.0000', '1.1792', '1.1792', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73373, '2022-04-13', 2695, 69664, 4657, 45122, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73374, '2022-04-13', 8666, 69665, 4657, NULL, '4.0000', '0.4600', '0.4600', '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 (73375, '2022-04-13', 2315, 69666, 4657, 3069, '2.0000', '0.3300', '0.3300', '0.8000', '0.8000', '170.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73376, '2022-04-13', 2020, 69667, 4657, 53892, '1.0000', '5.6077', '5.6077', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73377, '2022-04-13', 1912, 69668, 4657, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73378, '2022-04-13', 2411, 69669, 4657, 45089, '1.0000', '1.3762', '1.3762', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73379, '2022-04-13', 9734, 69670, 4657, 50862, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73380, '2022-04-13', 1667, 69671, 4657, 53264, '1.0000', '32.0007', '32.0007', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73381, '2022-04-13', 7459, 69672, 4657, 53706, '2.0000', '2.2700', '2.2700', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73382, '2022-04-13', 7736, 69673, 4657, NULL, '1.0000', '13.2000', '13.2000', '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 (73383, '2022-04-13', 1950, 69674, 4657, 6005, '1.0000', '10.0000', '10.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 (73384, '2022-04-13', 1361, 69675, 4658, 46587, '1.0000', '59.0300', '59.0300', '67.5000', '67.5000', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73385, '2022-04-14', 1602, 69676, 4659, 5897, '-130.0000', '6.7859', '6.7859', '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 (73386, '2022-04-14', 1602, 69676, 4659, NULL, '131.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-131.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73387, '2022-04-14', 2255, 69677, 4659, 2792, '-1.0000', '17.4900', '17.4900', '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 (73388, '2022-04-14', 2255, 69677, 4659, NULL, '2.0000', '17.4900', '17.4900', '23.0000', '23.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 (73389, '2022-04-14', 1536, 69678, 4659, 1634, '-39.0000', '3.1686', '3.1686', '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 (73390, '2022-04-14', 1536, 69678, 4659, NULL, '53.0000', '3.1686', '3.1686', '6.0000', '6.0000', '-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 (73391, '2022-04-14', 1928, 69679, 4659, NULL, '2.0000', '186.5625', '186.5625', '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 (73392, '2022-04-14', 1525, 69680, 4659, NULL, '2.0000', '4.9100', '4.9100', '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 (73393, '2022-04-14', 1667, 69681, 4659, 9745, '-45.0000', '5.9400', '5.9400', '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 (73394, '2022-04-14', 1667, 69681, 4659, NULL, '46.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73395, '2022-04-14', 9762, 69682, 4659, 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 (73396, '2022-04-14', 7411, 69683, 4659, NULL, '1.0000', '1.3500', '1.3500', '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 (73397, '2022-04-14', 9634, 69684, 4659, NULL, '3.0000', '4.8000', '4.8000', '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 (73398, '2022-04-14', 2167, 69685, 4659, 17165, '-44.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 (73399, '2022-04-14', 2167, 69685, 4659, NULL, '45.0000', '2.2000', '2.2000', '3.0000', '3.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 (73400, '2022-04-14', 7628, 69686, 4660, NULL, '2.0000', '2.2900', '2.2900', '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 (73401, '2022-04-14', 7821, 69687, 4660, NULL, '1.0000', '13.0700', '13.0700', '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 (73402, '2022-04-14', 2148, 69688, 4660, 1363, '1.0000', '35.0000', '35.0000', '55.5000', '55.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 (73403, '2022-04-14', 9785, 69689, 4660, 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 (73404, '2022-04-14', 7693, 69690, 4660, NULL, '1.0000', '4.0900', '4.0900', '5.4000', '5.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 (73405, '2022-04-14', 7641, 69691, 4660, NULL, '1.0000', '1.9000', '1.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 (73406, '2022-04-14', 2414, 69692, 4660, 4620, '-19.0000', '3.4000', '3.4000', '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 (73407, '2022-04-14', 2414, 69692, 4660, NULL, '20.0000', '3.4000', '3.4000', '5.0000', '5.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 (73408, '2022-04-14', 7819, 69693, 4660, 33817, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73409, '2022-04-14', 7819, 69694, 4660, 33817, '3.0000', '9.5000', '9.5000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73410, '2022-04-14', 7415, 69695, 4660, NULL, '1.0000', '5.9100', '5.9100', '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 (73411, '2022-04-14', 8539, 69696, 4660, NULL, '1.0000', '31.8000', '31.8000', '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 (73412, '2022-04-14', 7411, 69697, 4660, NULL, '2.0000', '1.3500', '1.3500', '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 (73413, '2022-04-14', 2352, 69698, 4660, 3855, '-129.0000', '20.0000', '20.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 (73414, '2022-04-14', 2352, 69698, 4660, NULL, '131.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-131.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73415, '2022-04-14', 3056, 69699, 4660, NULL, '1.0000', '52.4500', '52.4500', '68.0000', '68.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73416, '2022-04-14', 1450, 69700, 4660, 927, '3.0000', '61.1074', '61.1074', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73417, '2022-04-14', 1450, 69700, 4660, NULL, '7.0000', '61.1074', '61.1074', '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 (73418, '2022-04-14', 2242, 69701, 4660, 20608, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '11.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 (73419, '2022-04-14', 2295, 69702, 4660, 22264, '4.0000', '0.9600', '0.9600', '2.0000', '2.0000', '27.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 (73420, '2022-04-14', 2887, 69703, 4660, NULL, '1.0000', '10.5000', '10.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 (73421, '2022-04-14', 2242, 69704, 4660, 20608, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '10.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 (73422, '2022-04-14', 8984, 69705, 4660, NULL, '1.0000', '0.8700', '0.8700', '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 (73423, '2022-04-14', 7411, 69706, 4660, NULL, '2.0000', '1.3500', '1.3500', '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 (73424, '2022-04-14', 7322, 69707, 4660, NULL, '1.0000', '4.3600', '4.3600', '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 (73425, '2022-04-14', 8325, 69708, 4660, 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 (73426, '2022-04-14', 7848, 69709, 4660, NULL, '1.0000', '1.3500', '1.3500', '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 (73427, '2022-04-14', 3018, 69710, 4660, NULL, '2.0000', '4.9100', '4.9100', '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 (73428, '2022-04-14', 7473, 69711, 4660, NULL, '1.0000', '0.5300', '0.5300', '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 (73429, '2022-04-14', 2769, 69712, 4660, NULL, '4.0000', '1.5200', '1.5200', '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 (73430, '2022-04-14', 7354, 69713, 4660, NULL, '5.0000', '0.3700', '0.3700', '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 (73431, '2022-04-14', 7473, 69714, 4660, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (73432, '2022-04-14', 1647, 69715, 4660, 3218, '-13.0000', '4.7200', '4.7200', '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 (73433, '2022-04-14', 1647, 69715, 4660, NULL, '14.0000', '4.7200', '4.7200', '8.0000', '8.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 (73434, '2022-04-14', 7981, 69716, 4660, NULL, '3.0000', '6.0000', '6.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 (73435, '2022-04-14', 8984, 69717, 4660, NULL, '1.0000', '0.8700', '0.8700', '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 (73436, '2022-04-14', 1980, 69718, 4661, 5918, '-3.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 (73437, '2022-04-14', 1980, 69718, 4661, NULL, '4.0000', '5.5000', '5.5000', '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 (73438, '2022-04-14', 2020, 69719, 4661, 10164, '-18.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 (73439, '2022-04-14', 2020, 69719, 4661, NULL, '19.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-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 (73440, '2022-04-14', 9731, 69720, 4661, 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 (73441, '2022-04-14', 1528, 69721, 4661, NULL, '2.0000', '38.6400', '38.6400', '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 (73442, '2022-04-14', 1840, 69722, 4661, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (73443, '2022-04-14', 2289, 69723, 4661, 2949, '-110.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 (73444, '2022-04-14', 2289, 69723, 4661, NULL, '112.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73445, '2022-04-14', 1942, 69724, 4662, 51323, '1.0000', '19.0545', '19.0545', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73446, '2022-04-14', 9511, 69725, 4662, NULL, '1.0000', '15.7600', '15.7600', '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 (73447, '2022-04-14', 2506, 69726, 4662, NULL, '1.0000', '4.2640', '4.2640', '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 (73448, '2022-04-14', 2289, 69727, 4662, NULL, '4.0000', '0.2222', '0.2222', '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 (73449, '2022-04-14', 9831, 69728, 4662, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73450, '2022-04-14', 7514, 69729, 4662, NULL, '1.0000', '2.2500', '2.2500', '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 (73451, '2022-04-14', 2293, 69730, 4662, NULL, '2.0000', '10.2680', '10.2680', '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 (73452, '2022-04-14', 9264, 69731, 4662, NULL, '1.0000', '3.1000', '3.1000', '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 (73453, '2022-04-14', 9785, 69732, 4662, 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 (73454, '2022-04-14', 7802, 69733, 4662, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73455, '2022-04-14', 9668, 69734, 4662, 53204, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73456, '2022-04-14', 9579, 69735, 4662, 53956, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73457, '2022-04-14', 2362, 69736, 4662, 18935, '1.0000', '82.0200', '82.0200', '115.0000', '115.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 (73458, '2022-04-14', 1367, 69737, 4662, 18939, '4.0000', '49.2100', '49.2100', '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 (73459, '2022-04-14', 1672, 69738, 4662, 53224, '14.0000', '4.0079', '4.0079', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73460, '2022-04-14', 7575, 69739, 4662, 52171, '1.0000', '-16.5200', '-16.5200', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73461, '2022-04-14', 1340, 69740, 4662, 51992, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73462, '2022-04-14', 2289, 69741, 4662, NULL, '4.0000', '0.2222', '0.2222', '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 (73463, '2022-04-14', 2821, 69742, 4662, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73464, '2022-04-14', 2315, 69743, 4662, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '51.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73465, '2022-04-14', 1429, 69744, 4662, 48928, '1.0000', '13.1270', '13.1270', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73466, '2022-04-14', 9794, 69745, 4662, 52337, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73467, '2022-04-14', 9830, 69746, 4662, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73468, '2022-04-14', 2821, 69747, 4662, 53662, '1.0000', '3.4513', '3.4513', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73469, '2022-04-14', 8984, 69748, 4662, NULL, '1.0000', '-100.8495', '-100.8495', '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 (73470, '2022-04-14', 9556, 69749, 4662, 39822, '1.0000', '0.4814', '0.4814', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73471, '2022-04-14', 7741, 69750, 4662, NULL, '1.0000', '-6.8417', '-6.8417', '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 (73472, '2022-04-14', 7848, 69751, 4662, NULL, '1.0000', '15.0000', '15.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 (73473, '2022-04-14', 7674, 69752, 4662, 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 (73474, '2022-04-14', 1690, 69753, 4662, NULL, '1.0000', '5.8308', '5.8308', '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 (73475, '2022-04-14', 7672, 69754, 4662, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73476, '2022-04-14', 1910, 69755, 4662, 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 (73477, '2022-04-14', 2685, 69756, 4662, 49608, '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 (73478, '2022-04-14', 1601, 69757, 4662, NULL, '1.0000', '40.6380', '40.6380', '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 (73479, '2022-04-14', 1643, 69758, 4662, 49312, '1.0000', '41.0000', '41.0000', '54.5000', '54.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73480, '2022-04-14', 2131, 69759, 4662, 53418, '1.0000', '7.5500', '7.5500', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73481, '2022-04-14', 9832, 69760, 4663, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73482, '2022-04-14', 2169, 69761, 4663, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73483, '2022-04-14', 1787, 69762, 4663, NULL, '1.0000', '0.5000', '0.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 (73484, '2022-04-14', 2169, 69763, 4663, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73485, '2022-04-14', 7886, 69764, 4663, NULL, '1.0000', '14.5000', '14.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 (73486, '2022-04-14', 2283, 69765, 4664, NULL, '5.0000', '1.4300', '1.4300', '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 (73487, '2022-04-14', 1765, 69766, 4664, 53668, '1.0000', '5.4760', '5.4760', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73488, '2022-04-14', 8068, 69767, 4664, NULL, '1.0000', '8.7900', '8.7900', '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 (73489, '2022-04-14', 1867, 69768, 4664, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73490, '2022-04-14', 9577, 69769, 4664, 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 (73491, '2022-04-14', 2159, 69770, 4664, 37967, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73492, '2022-04-14', 7411, 69771, 4664, NULL, '1.0000', '1.3013', '1.3013', '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 (73493, '2022-04-14', 1840, 69772, 4664, NULL, '2.0000', '0.2400', '0.2400', '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 (73494, '2022-04-14', 7328, 69773, 4664, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (73495, '2022-04-14', 8328, 69774, 4664, NULL, '1.0000', '8.1000', '8.1000', '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 (73496, '2022-04-14', 9695, 69775, 4664, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73497, '2022-04-14', 7514, 69776, 4664, NULL, '1.0000', '2.2500', '2.2500', '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 (73498, '2022-04-14', 1586, 69777, 4664, 48584, '1.0000', '57.4965', '57.4965', '69.0000', '69.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73499, '2022-04-14', 2315, 69778, 4664, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '50.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73500, '2022-04-14', 9695, 69779, 4664, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73501, '2022-04-14', 3026, 69780, 4664, 44158, '1.0000', '2.2857', '2.2857', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73502, '2022-04-14', 2916, 69781, 4664, NULL, '1.0000', '8.2115', '8.2115', '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 (73503, '2022-04-14', 2242, 69782, 4664, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73504, '2022-04-14', 1867, 69783, 4664, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73505, '2022-04-14', 9794, 69784, 4664, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73506, '2022-04-14', 7411, 69785, 4664, NULL, '1.0000', '1.3013', '1.3013', '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 (73507, '2022-04-14', 1580, 69786, 4664, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73508, '2022-04-14', 2169, 69787, 4664, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73509, '2022-04-14', 2066, 69788, 4664, NULL, '3.0000', '0.5100', '0.5100', '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 (73510, '2022-04-14', 2163, 69789, 4664, NULL, '1.0000', '25.7500', '25.7500', '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 (73511, '2022-04-14', 9089, 69790, 4664, NULL, '1.0000', '3.8000', '3.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 (73512, '2022-04-14', 1867, 69791, 4664, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73513, '2022-04-14', 7671, 69792, 4664, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73514, '2022-04-14', 9275, 69793, 4664, NULL, '1.0000', '6.3000', '6.3000', '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 (73515, '2022-04-14', 2027, 69794, 4664, 44168, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73516, '2022-04-14', 7743, 69795, 4664, NULL, '1.0000', '7.3900', '7.3900', '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 (73517, '2022-04-14', 1426, 69796, 4664, NULL, '1.0000', '34.9584', '34.9584', '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 (73518, '2022-04-14', 9830, 69797, 4664, 53444, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73519, '2022-04-14', 2109, 69798, 4665, 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 (73520, '2022-04-14', 1867, 69799, 4665, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73521, '2022-04-14', 8613, 69800, 4666, NULL, '1.0000', '4.0000', '4.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 (73522, '2022-04-14', 7608, 69801, 4666, 53768, '1.0000', '9.4184', '9.4184', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73523, '2022-04-14', 7862, 69802, 4666, NULL, '1.0000', '17.8000', '17.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 (73524, '2022-04-14', 8155, 69803, 4666, NULL, '1.0000', '65.0000', '65.0000', '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 (73525, '2022-04-14', 8072, 69804, 4666, 46630, '5.0000', '-133.6999', '-133.6999', '8.7000', '8.7000', '17.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73526, '2022-04-14', 7473, 69805, 4666, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73527, '2022-04-14', 8134, 69806, 4666, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73528, '2022-04-14', 1760, 69807, 4666, 46907, '2.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73529, '2022-04-14', 7881, 69808, 4666, 47949, '1.0000', '-104.2377', '-104.2377', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73530, '2022-04-14', 8712, 69809, 4666, NULL, '1.0000', '7.0400', '7.0400', '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 (73531, '2022-04-14', 2315, 69810, 4666, 53909, '2.0000', '0.6636', '0.6636', '0.8000', '0.8000', '88.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73532, '2022-04-14', 7674, 69811, 4666, 52725, '2.0000', '197.1282', '197.1282', '2.0000', '2.0000', '95.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73533, '2022-04-14', 1520, 69812, 4666, 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 (73534, '2022-04-14', 7316, 69813, 4666, 50386, '1.0000', '0.8600', '0.8600', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73535, '2022-04-14', 7316, 69813, 4666, 38455, '1.0000', '0.8600', '0.8600', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73536, '2022-04-14', 7316, 69813, 4666, 30165, '8.0000', '0.8600', '0.8600', '1.2000', '1.2000', '12.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73537, '2022-04-14', 7954, 69814, 4666, NULL, '4.0000', '412.7272', '412.7272', '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 (73538, '2022-04-14', 7385, 69815, 4666, 51081, '3.0000', '15.9587', '15.9587', '3.0000', '3.0000', '86.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73539, '2022-04-14', 8746, 69816, 4666, 53611, '1.0000', '3.5540', '3.5540', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73540, '2022-04-14', 7708, 69817, 4666, NULL, '1.0000', '-53.8964', '-53.8964', '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 (73541, '2022-04-14', 7611, 69818, 4666, 53521, '1.0000', '17.6895', '17.6895', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73542, '2022-04-14', 1901, 69819, 4666, NULL, '1.0000', '2.0100', '2.0100', '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 (73543, '2022-04-14', 7892, 69820, 4666, NULL, '1.0000', '4.2000', '4.2000', '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 (73544, '2022-04-14', 7333, 69821, 4666, NULL, '1.0000', '48.1429', '48.1429', '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 (73545, '2022-04-14', 8101, 69822, 4666, NULL, '1.0000', '-0.2222', '-0.2222', '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 (73546, '2022-04-14', 7622, 69823, 4666, NULL, '1.0000', '3.3000', '3.3000', '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 (73547, '2022-04-14', 7608, 69824, 4666, 53768, '1.0000', '9.4184', '9.4184', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73548, '2022-04-14', 9827, 69825, 4666, 53994, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73549, '2022-04-14', 9760, 69826, 4666, 46938, '1.0000', '1.1000', '1.1000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73550, '2022-04-14', 8836, 69827, 4666, NULL, '3.0000', '12.0000', '12.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 (73551, '2022-04-14', 7715, 69828, 4666, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '32.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73552, '2022-04-14', 9160, 69829, 4666, NULL, '1.0000', '41.6640', '41.6640', '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 (73553, '2022-04-14', 8247, 69830, 4666, NULL, '4.0000', '54.0000', '54.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 (73554, '2022-04-14', 1967, 69831, 4666, NULL, '1.0000', '19.5900', '19.5900', '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 (73555, '2022-04-14', 2213, 69832, 4666, 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 (73556, '2022-04-14', 2906, 69833, 4666, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73557, '2022-04-14', 7357, 69834, 4666, NULL, '1.0000', '11.7500', '11.7500', '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 (73558, '2022-04-14', 7491, 69835, 4666, NULL, '1.0000', '4.8666', '4.8666', '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 (73559, '2022-04-14', 9463, 69836, 4666, NULL, '1.0000', '4.3333', '4.3333', '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 (73560, '2022-04-14', 7331, 69837, 4666, 52450, '1.0000', '10.4924', '10.4924', '77.0000', '77.0000', '2.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73561, '2022-04-14', 1399, 69838, 4667, 53651, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73562, '2022-04-14', 7638, 69839, 4667, 34927, '1.0000', '12.0000', '12.0000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73563, '2022-04-14', 8879, 69840, 4667, 39777, '1.0000', '27.2712', '27.2712', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73564, '2022-04-14', 8039, 69841, 4667, NULL, '1.0000', '12.9000', '12.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 (73565, '2022-04-14', 2242, 69842, 4667, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73566, '2022-04-14', 7798, 69843, 4667, NULL, '1.0000', '4.6200', '4.6200', '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 (73567, '2022-04-14', 9579, 69844, 4667, 53956, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73568, '2022-04-14', 9695, 69845, 4667, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73569, '2022-04-14', 9832, 69846, 4667, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73570, '2022-04-14', 7601, 69847, 4667, NULL, '1.0000', '13.5000', '13.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 (73571, '2022-04-14', 1311, 69848, 4667, 52210, '4.0000', '0.3700', '0.3700', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73572, '2022-04-14', 8539, 69849, 4668, 53989, '1.0000', '1.4639', '1.4639', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73573, '2022-04-14', 7570, 69850, 4668, 53932, '1.0000', '6.8025', '6.8025', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73574, '2022-04-14', 7954, 69851, 4668, NULL, '4.0000', '412.7272', '412.7272', '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 (73575, '2022-04-14', 9735, 69852, 4668, 51796, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73576, '2022-04-14', 8878, 69853, 4668, NULL, '2.0000', '40.0900', '40.0900', '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 (73577, '2022-04-14', 9574, 69854, 4668, 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 (73578, '2022-04-14', 1837, 69855, 4668, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73579, '2022-04-14', 7857, 69856, 4668, NULL, '1.0000', '16.1000', '16.1000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73580, '2022-04-14', 9482, 69857, 4669, 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 (73581, '2022-04-14', 2623, 69858, 4669, NULL, '1.0000', '0.6000', '0.6000', '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 (73582, '2022-04-14', 7334, 69859, 4669, NULL, '3.0000', '8.1600', '8.1600', '13.5000', '13.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 (73583, '2022-04-14', 2025, 69860, 4670, NULL, '1.0000', '4.5000', '4.5000', '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 (73584, '2022-04-14', 1935, 69861, 4670, 53273, '1.0000', '1.7523', '1.7523', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73585, '2022-04-14', 1602, 69862, 4670, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73586, '2022-04-14', 1622, 69863, 4670, 49159, '1.0000', '105.0241', '105.0241', '43.5000', '43.5000', '3.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73587, '2022-04-14', 8746, 69864, 4670, 52896, '1.0000', '-11.9871', '-11.9871', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73588, '2022-04-14', 9590, 69865, 4670, NULL, '1.0000', '0.0000', '0.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 (73589, '2022-04-14', 8767, 69866, 4670, 42933, '1.0000', '6.6900', '6.6900', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73590, '2022-04-14', 2169, 69867, 4670, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73591, '2022-04-14', 1935, 69868, 4670, 53273, '1.0000', '1.7523', '1.7523', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73592, '2022-04-14', 2643, 69869, 4670, 44038, '2.0000', '0.8700', '0.8700', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73593, '2022-04-14', 8933, 69870, 4670, 49484, '2.0000', '4.0000', '4.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73594, '2022-04-14', 1851, 69871, 4670, 52259, '1.0000', '12.9288', '12.9288', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73595, '2022-04-14', 2327, 69872, 4670, 45068, '2.0000', '16.5543', '16.5543', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73596, '2022-04-14', 1783, 69873, 4670, 46745, '2.0000', '-16.1683', '-16.1683', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73597, '2022-04-14', 9461, 69874, 4670, 40877, '1.0000', '1.5845', '1.5845', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73598, '2022-04-14', 2268, 69875, 4670, 38075, '1.0000', '7.8833', '7.8833', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73599, '2022-04-14', 1667, 69876, 4670, 53264, '2.0000', '32.0007', '32.0007', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73600, '2022-04-14', 2169, 69877, 4670, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73601, '2022-04-14', 2059, 69878, 4670, 44507, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73602, '2022-04-14', 1812, 69879, 4670, 53691, '2.0000', '8.0465', '8.0465', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73603, '2022-04-14', 1811, 69880, 4670, 44607, '1.0000', '14.5300', '14.5300', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73604, '2022-04-14', 1837, 69881, 4670, 46570, '5.0000', '0.4981', '0.4981', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73605, '2022-04-14', 2660, 69882, 4670, 49531, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73606, '2022-04-14', 1812, 69883, 4670, 53691, '1.0000', '8.0465', '8.0465', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73607, '2022-04-14', 1311, 69884, 4670, NULL, '6.0000', '0.3700', '0.3700', '0.6000', '0.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 (73608, '2022-04-14', 1602, 69885, 4670, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73609, '2022-04-14', 1864, 69886, 4670, 49124, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73610, '2022-04-14', 7459, 69887, 4670, 53706, '2.0000', '2.2700', '2.2700', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73611, '2022-04-14', 8207, 69888, 4670, NULL, '1.0000', '0.0000', '0.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 (73612, '2022-04-14', 8744, 69889, 4670, 52900, '1.0000', '3.5749', '3.5749', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73613, '2022-04-14', 1442, 69890, 4670, 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 (73614, '2022-04-14', 2381, 69891, 4670, 50883, '1.0000', '5.5023', '5.5023', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73615, '2022-04-14', 2381, 69891, 4670, 44532, '1.0000', '5.5023', '5.5023', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73616, '2022-04-14', 9785, 69892, 4670, 50906, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73617, '2022-04-14', 2025, 69893, 4670, NULL, '1.0000', '4.5000', '4.5000', '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 (73618, '2022-04-15', 1845, 69894, 4671, 52227, '1.0000', '19.9352', '19.9352', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73619, '2022-04-15', 2486, 69895, 4671, 21821, '7.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 (73620, '2022-04-15', 1665, 69896, 4671, 50867, '2.0000', '1.1792', '1.1792', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73621, '2022-04-15', 1602, 69897, 4671, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73622, '2022-04-15', 2025, 69898, 4671, NULL, '2.0000', '4.5000', '4.5000', '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 (73623, '2022-04-15', 2277, 69899, 4671, 38069, '1.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73624, '2022-04-15', 8065, 69900, 4671, NULL, '1.0000', '-39.2200', '-39.2200', '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 (73625, '2022-04-15', 1432, 69901, 4672, 53865, '1.0000', '9.3279', '9.3279', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73626, '2022-04-15', 2821, 69902, 4672, 50896, '1.0000', '3.4420', '3.4420', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73627, '2022-04-15', 2331, 69903, 4673, 53864, '2.0000', '12.5200', '12.5200', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73628, '2022-04-15', 7848, 69904, 4674, NULL, '1.0000', '15.0000', '15.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 (73629, '2022-04-15', 2916, 69905, 4674, 53879, '1.0000', '14.4093', '14.4093', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73630, '2022-04-15', 2643, 69906, 4675, 44038, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73631, '2022-04-15', 1666, 69907, 4676, 52100, '2.0000', '44.2662', '44.2662', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73632, '2022-04-15', 8810, 69908, 4677, NULL, '1.0000', '1.6000', '1.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 (73633, '2022-04-15', 7354, 69909, 4677, NULL, '5.0000', '0.3700', '0.3700', '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 (73634, '2022-04-15', 2069, 69910, 4677, 5571, '-8.0000', '2.0400', '2.0400', '9.5000', '9.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 (73635, '2022-04-15', 2069, 69910, 4677, NULL, '9.0000', '2.0400', '2.0400', '9.5000', '9.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 (73636, '2022-04-15', 7593, 69911, 4677, NULL, '1.0000', '2.4500', '2.4500', '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 (73637, '2022-04-15', 8084, 69912, 4677, NULL, '1.0000', '12.7000', '12.7000', '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 (73638, '2022-04-15', 7762, 69913, 4677, NULL, '1.0000', '1.5000', '1.5000', '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 (73639, '2022-04-15', 7590, 69914, 4677, NULL, '1.0000', '1.8400', '1.8400', '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 (73640, '2022-04-15', 7342, 69915, 4677, NULL, '2.0000', '15.6000', '15.6000', '28.0000', '28.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 (73641, '2022-04-15', 7317, 69916, 4677, NULL, '1.0000', '19.5500', '19.5500', '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 (73642, '2022-04-15', 8288, 69917, 4677, NULL, '5.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (73643, '2022-04-15', 7684, 69918, 4677, NULL, '3.0000', '9.0000', '9.0000', '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 (73644, '2022-04-15', 9160, 69919, 4677, NULL, '1.0000', '15.0000', '15.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 (73645, '2022-04-15', 8363, 69920, 4677, NULL, '1.0000', '38.0000', '38.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 (73646, '2022-04-15', 8966, 69921, 4677, NULL, '1.0000', '6.8500', '6.8500', '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 (73647, '2022-04-15', 9511, 69922, 4677, NULL, '1.0000', '15.7600', '15.7600', '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 (73648, '2022-04-15', 7509, 69923, 4677, 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 (73649, '2022-04-15', 7933, 69924, 4677, NULL, '1.0000', '0.4400', '0.4400', '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 (73650, '2022-04-15', 8723, 69925, 4677, NULL, '1.0000', '22.0000', '22.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 (73651, '2022-04-15', 8878, 69926, 4677, NULL, '1.0000', '6.6700', '6.6700', '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 (73652, '2022-04-15', 8878, 69927, 4677, NULL, '2.0000', '6.6700', '6.6700', '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 (73653, '2022-04-15', 7609, 69928, 4677, NULL, '1.0000', '4.3300', '4.3300', '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 (73654, '2022-04-15', 7744, 69929, 4677, 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 (73655, '2022-04-15', 7892, 69930, 4677, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73656, '2022-04-15', 8744, 69931, 4677, NULL, '1.0000', '3.6600', '3.6600', '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 (73657, '2022-04-15', 8984, 69932, 4677, NULL, '1.0000', '0.8700', '0.8700', '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 (73658, '2022-04-15', 9776, 69933, 4677, NULL, '1.0000', '7.6700', '7.6700', '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 (73659, '2022-04-15', 1311, 69934, 4678, NULL, '1.0000', '0.3700', '0.3700', '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 (73660, '2022-04-15', 7915, 69935, 4678, 52088, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73661, '2022-04-15', 9866, 69936, 4679, 52158, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73662, '2022-04-15', 9815, 69937, 4679, 50255, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '7.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73663, '2022-04-15', 1812, 69938, 4679, 52345, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73664, '2022-04-15', 9732, 69939, 4679, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73665, '2022-04-15', 2758, 69940, 4679, NULL, '2.0000', '5.4000', '5.4000', '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 (73666, '2022-04-15', 2169, 69941, 4679, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73667, '2022-04-15', 9747, 69942, 4679, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73668, '2022-04-15', 7864, 69943, 4679, 39767, '1.0000', '17.7700', '17.7700', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73669, '2022-04-15', 2109, 69944, 4679, 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 (73670, '2022-04-15', 9732, 69945, 4679, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73671, '2022-04-15', 1551, 69946, 4679, 48915, '1.0000', '14.7700', '14.7700', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73672, '2022-04-15', 2320, 69947, 4679, 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 (73673, '2022-04-15', 9741, 69948, 4679, 53681, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73674, '2022-04-15', 2916, 69949, 4679, NULL, '1.0000', '8.2115', '8.2115', '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 (73675, '2022-04-15', 1807, 69950, 4679, NULL, '1.0000', '34.9993', '34.9993', '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 (73676, '2022-04-15', 9740, 69951, 4679, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73677, '2022-04-15', 9816, 69952, 4679, 51016, '1.0000', '5.2000', '5.2000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73678, '2022-04-15', 1805, 69953, 4679, NULL, '1.0000', '15.0770', '15.0770', '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 (73679, '2022-04-15', 1493, 69954, 4679, NULL, '1.0000', '5.2600', '5.2600', '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 (73680, '2022-04-15', 9472, 69955, 4679, NULL, '1.0000', '11.5000', '11.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 (73681, '2022-04-15', 2684, 69956, 4679, 49607, '1.0000', '35.0000', '35.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 (73682, '2022-04-15', 1670, 69957, 4680, NULL, '1.0000', '7.2499', '7.2499', '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 (73683, '2022-04-15', 7774, 69958, 4680, 39783, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73684, '2022-04-15', 2061, 69959, 4680, NULL, '1.0000', '11.0146', '11.0146', '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 (73685, '2022-04-15', 2088, 69960, 4680, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73686, '2022-04-15', 1342, 69961, 4680, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73687, '2022-04-15', 9794, 69962, 4680, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73688, '2022-04-15', 9204, 69963, 4680, NULL, '1.0000', '14.1514', '14.1514', '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 (73689, '2022-04-15', 7915, 69964, 4680, NULL, '1.0000', '2.8000', '2.8000', '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 (73690, '2022-04-15', 8622, 69965, 4680, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73691, '2022-04-15', 1757, 69966, 4680, 53644, '1.0000', '7.5869', '7.5869', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73692, '2022-04-15', 2169, 69967, 4680, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73693, '2022-04-15', 7318, 69968, 4680, 53664, '1.0000', '10.6148', '10.6148', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73694, '2022-04-15', 2169, 69969, 4680, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73695, '2022-04-15', 9578, 69970, 4680, 53955, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73696, '2022-04-15', 2442, 69971, 4680, 51951, '1.0000', '6.7125', '6.7125', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73697, '2022-04-15', 2637, 69972, 4680, NULL, '1.0000', '10.0000', '10.0000', '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 (73698, '2022-04-15', 8359, 69973, 4680, NULL, '1.0000', '13.5000', '13.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 (73699, '2022-04-15', 2320, 69974, 4680, 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 (73700, '2022-04-15', 9735, 69975, 4680, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73701, '2022-04-15', 2454, 69976, 4680, 25150, '1.0000', '9.0840', '9.0840', '12.0000', '12.0000', '0.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 (73702, '2022-04-15', 7472, 69977, 4680, NULL, '1.0000', '-0.2237', '-0.2237', '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 (73703, '2022-04-15', 7473, 69978, 4680, 39817, '2.0000', '0.1679', '0.1679', '0.6000', '0.6000', '58.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73704, '2022-04-15', 7640, 69979, 4680, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73705, '2022-04-15', 2740, 69980, 4680, NULL, '1.0000', '9.8871', '9.8871', '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 (73706, '2022-04-15', 2286, 69981, 4680, 53205, '2.0000', '4.4278', '4.4278', '6.0000', '6.0000', '32.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73707, '2022-04-15', 2242, 69982, 4680, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73708, '2022-04-15', 2315, 69983, 4680, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '49.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73709, '2022-04-15', 9821, 69984, 4680, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73710, '2022-04-15', 9750, 69985, 4680, NULL, '1.0000', '3.3000', '3.3000', '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 (73711, '2022-04-15', 1602, 69986, 4680, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73712, '2022-04-15', 9810, 69987, 4680, NULL, '1.0000', '9.8000', '9.8000', '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 (73713, '2022-04-15', 2543, 69988, 4680, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73714, '2022-04-15', 7483, 69989, 4680, 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 (73715, '2022-04-15', 8208, 69990, 4680, NULL, '1.0000', '33.0000', '33.0000', '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 (73716, '2022-04-15', 9831, 69991, 4680, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73717, '2022-04-15', 2169, 69992, 4681, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73718, '2022-04-15', 9831, 69993, 4681, 53443, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73719, '2022-04-15', 1840, 69994, 4681, NULL, '1.0000', '0.2400', '0.2400', '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 (73720, '2022-04-15', 2758, 69995, 4681, NULL, '1.0000', '5.4000', '5.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 (73721, '2022-04-15', 7328, 69996, 4681, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (73722, '2022-04-15', 7641, 69997, 4681, NULL, '1.0000', '1.9000', '1.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 (73723, '2022-04-15', 7428, 69998, 4682, 50471, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '88.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73724, '2022-04-15', 8083, 69999, 4682, 53628, '1.0000', '36.0657', '36.0657', '33.0000', '33.0000', '4.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73725, '2022-04-15', 8079, 70000, 4682, 53995, '2.0000', '6.8181', '6.8181', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73726, '2022-04-15', 7518, 70001, 4682, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '21.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73727, '2022-04-15', 2557, 70002, 4682, 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 (73728, '2022-04-15', 7750, 70003, 4682, 52438, '1.0000', '31.0039', '31.0039', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73729, '2022-04-15', 7685, 70004, 4682, NULL, '1.0000', '31.2000', '31.2000', '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 (73730, '2022-04-15', 8814, 70005, 4682, NULL, '10.0000', '5.0000', '5.0000', '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 (73731, '2022-04-15', 8000, 70006, 4682, NULL, '2.0000', '-706.5226', '-706.5226', '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 (73732, '2022-04-15', 1350, 70007, 4682, NULL, '1.0000', '33.0000', '33.0000', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73733, '2022-04-15', 7357, 70008, 4682, NULL, '1.0000', '11.7500', '11.7500', '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 (73734, '2022-04-15', 7518, 70009, 4682, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '21.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73735, '2022-04-15', 7641, 70010, 4682, 53972, '1.0000', '-492.2865', '-492.2865', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73736, '2022-04-15', 7453, 70011, 4682, 51821, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73737, '2022-04-15', 7530, 70012, 4682, 53904, '1.0000', '6.9000', '6.9000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73738, '2022-04-15', 1916, 70013, 4682, 53775, '1.0000', '9.6854', '9.6854', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73739, '2022-04-15', 2031, 70014, 4682, 53622, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73740, '2022-04-15', 7570, 70015, 4682, 53932, '1.0000', '6.8025', '6.8025', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73741, '2022-04-15', 8215, 70016, 4682, 50373, '1.0000', '14.9730', '14.9730', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73742, '2022-04-15', 7590, 70017, 4682, NULL, '1.0000', '4.3600', '4.3600', '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 (73743, '2022-04-15', 8446, 70018, 4682, NULL, '1.0000', '6.3000', '6.3000', '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 (73744, '2022-04-15', 1351, 70019, 4682, NULL, '1.0000', '40.0300', '40.0300', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73745, '2022-04-15', 2315, 70020, 4682, 53909, '4.0000', '0.6636', '0.6636', '0.8000', '0.8000', '84.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73746, '2022-04-15', 7482, 70021, 4682, 53984, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '22.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73747, '2022-04-15', 8660, 70022, 4682, 30217, '1.0000', '20.0500', '20.0500', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73748, '2022-04-15', 7799, 70023, 4682, NULL, '1.0000', '4.7214', '4.7214', '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 (73749, '2022-04-15', 7859, 70024, 4682, 53915, '1.0000', '12.6416', '12.6416', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73750, '2022-04-15', 7630, 70025, 4682, 53942, '2.0000', '5.6211', '5.6211', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73751, '2022-04-15', 1841, 70026, 4682, 48007, '5.0000', '0.1792', '0.1792', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73752, '2022-04-15', 9274, 70027, 4682, NULL, '1.0000', '3.5638', '3.5638', '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 (73753, '2022-04-15', 2295, 70028, 4682, NULL, '3.0000', '0.7000', '0.7000', '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 (73754, '2022-04-15', 8106, 70029, 4682, 45330, '2.0000', '-10.5000', '-10.5000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73755, '2022-04-15', 9534, 70030, 4682, 50456, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73756, '2022-04-15', 2971, 70031, 4682, 42780, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73757, '2022-04-15', 8086, 70032, 4682, 42784, '1.0000', '9.3820', '9.3820', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73758, '2022-04-15', 2289, 70033, 4682, NULL, '1.0000', '2.5688', '2.5688', '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 (73759, '2022-04-15', 8743, 70034, 4682, NULL, '1.0000', '9.6250', '9.6250', '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 (73760, '2022-04-15', 9730, 70035, 4682, 53976, '1.0000', '18.2000', '18.2000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73761, '2022-04-15', 2327, 70036, 4683, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73762, '2022-04-15', 8919, 70037, 4683, NULL, '1.0000', '15.0000', '15.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 (73763, '2022-04-15', 1651, 70038, 4683, NULL, '1.0000', '8.2255', '8.2255', '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 (73764, '2022-04-15', 1690, 70039, 4683, NULL, '1.0000', '5.8308', '5.8308', '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 (73765, '2022-04-15', 7886, 70040, 4683, NULL, '1.0000', '14.5000', '14.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 (73766, '2022-04-15', 9482, 70041, 4683, 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 (73767, '2022-04-15', 1346, 70042, 4683, 24923, '3.0000', '-4.0305', '-4.0305', '1.5000', '1.5000', '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 (73768, '2022-04-15', 1346, 70042, 4683, NULL, '4.0000', '-4.0305', '-4.0305', '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 (73769, '2022-04-15', 7915, 70043, 4683, NULL, '1.0000', '2.8000', '2.8000', '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 (73770, '2022-04-15', 2604, 70044, 4683, 34974, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '1.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73771, '2022-04-15', 9832, 70045, 4683, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73772, '2022-04-15', 7412, 70046, 4683, NULL, '1.0000', '1.5200', '1.5200', '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 (73773, '2022-04-15', 9579, 70047, 4683, 53956, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73774, '2022-04-15', 7917, 70048, 4683, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73775, '2022-04-15', 7786, 70049, 4683, NULL, '1.0000', '6.7700', '6.7700', '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 (73776, '2022-04-15', 2916, 70050, 4683, NULL, '1.0000', '8.2115', '8.2115', '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 (73777, '2022-04-15', 9750, 70051, 4683, NULL, '1.0000', '3.3000', '3.3000', '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 (73778, '2022-04-15', 9794, 70052, 4683, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73779, '2022-04-15', 9732, 70053, 4683, 47082, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73780, '2022-04-15', 8984, 70054, 4683, NULL, '1.0000', '-100.8495', '-100.8495', '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 (73781, '2022-04-15', 8740, 70055, 4683, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73782, '2022-04-15', 9695, 70056, 4683, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73783, '2022-04-15', 2293, 70057, 4683, NULL, '2.0000', '10.2680', '10.2680', '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 (73784, '2022-04-15', 7802, 70058, 4683, 53226, '2.0000', '1.1497', '1.1497', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73785, '2022-04-15', 2242, 70059, 4683, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73786, '2022-04-15', 9145, 70060, 4683, NULL, '1.0000', '9.0000', '9.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 (73787, '2022-04-15', 1690, 70061, 4683, NULL, '1.0000', '5.8308', '5.8308', '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 (73788, '2022-04-15', 7756, 70062, 4683, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73789, '2022-04-15', 1809, 70063, 4683, 48680, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73790, '2022-04-15', 9695, 70064, 4683, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73791, '2022-04-15', 9830, 70065, 4683, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73792, '2022-04-15', 8740, 70066, 4683, 53461, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73793, '2022-04-15', 1743, 70067, 4684, NULL, '1.0000', '4.6550', '4.6550', '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 (73794, '2022-04-15', 7917, 70068, 4684, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (73795, '2022-04-15', 1986, 70069, 4684, 53419, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73796, '2022-04-15', 2169, 70070, 4684, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73797, '2022-04-15', 8900, 70071, 4684, NULL, '10.0000', '16.4000', '16.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 (73798, '2022-04-15', 7564, 70072, 4684, NULL, '1.0000', '0.6400', '0.6400', '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 (73799, '2022-04-15', 9832, 70073, 4684, 53446, '3.0000', '1.5600', '1.5600', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73800, '2022-04-15', 9830, 70074, 4684, 53444, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73801, '2022-04-15', 9747, 70075, 4684, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73802, '2022-04-15', 1812, 70076, 4684, 52345, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73803, '2022-04-15', 8325, 70077, 4684, NULL, '1.0000', '2.0000', '2.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 (73804, '2022-04-15', 7774, 70078, 4684, 39783, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73805, '2022-04-15', 1819, 70079, 4684, 52335, '1.0000', '6.7748', '6.7748', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73806, '2022-04-15', 7509, 70080, 4685, 53507, '1.0000', '17.2236', '17.2236', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73807, '2022-04-15', 7402, 70081, 4685, NULL, '2.0000', '14.7783', '14.7783', '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 (73808, '2022-04-15', 7518, 70082, 4685, 53898, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73809, '2022-04-15', 2363, 70083, 4685, 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 (73810, '2022-04-15', 7673, 70084, 4685, NULL, '1.0000', '24.2449', '24.2449', '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 (73811, '2022-04-15', 9329, 70085, 4685, 53903, '1.0000', '11202.2795', '11202.2795', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73812, '2022-04-15', 7712, 70086, 4685, NULL, '1.0000', '-245.5125', '-245.5125', '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 (73813, '2022-04-15', 7532, 70087, 4685, NULL, '1.0000', '-85.0632', '-85.0632', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73814, '2022-04-15', 9655, 70088, 4685, 53527, '1.0000', '38.0000', '38.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73815, '2022-04-15', 7586, 70089, 4685, NULL, '1.0000', '3.9513', '3.9513', '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 (73816, '2022-04-15', 1845, 70090, 4685, 53982, '1.0000', '21.6667', '21.6667', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73817, '2022-04-15', 8359, 70091, 4685, 53988, '1.0000', '604.4699', '604.4699', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73818, '2022-04-15', 9750, 70092, 4686, NULL, '1.0000', '3.3000', '3.3000', '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 (73819, '2022-04-15', 1935, 70093, 4686, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73820, '2022-04-15', 2906, 70094, 4686, NULL, '1.0000', '2.6000', '2.6000', '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 (73821, '2022-04-15', 9794, 70095, 4686, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73822, '2022-04-15', 8743, 70096, 4686, NULL, '1.0000', '10.5000', '10.5000', '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 (73823, '2022-04-15', 2169, 70097, 4687, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73824, '2022-04-15', 2169, 70098, 4687, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73825, '2022-04-15', 1702, 70099, 4687, 52239, '2.0000', '29.6952', '29.6952', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73826, '2022-04-15', 7613, 70100, 4687, 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 (73827, '2022-04-15', 1409, 70101, 4687, 52275, '1.0000', '13.0590', '13.0590', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73828, '2022-04-15', 1422, 70102, 4687, 44543, '1.0000', '21.0505', '21.0505', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73829, '2022-04-15', 1863, 70103, 4687, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73830, '2022-04-15', 2411, 70104, 4687, 45089, '1.0000', '1.3762', '1.3762', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73831, '2022-04-15', 1785, 70105, 4687, 49051, '1.0000', '15.2397', '15.2397', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73832, '2022-04-15', 1912, 70106, 4687, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73833, '2022-04-15', 9461, 70107, 4687, 40877, '1.0000', '1.5845', '1.5845', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73834, '2022-04-15', 2289, 70108, 4687, 53244, '2.0000', '0.2742', '0.2742', '0.5000', '0.5000', '66.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73835, '2022-04-15', 2858, 70109, 4687, 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 (73836, '2022-04-15', 1612, 70110, 4687, 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 (73837, '2022-04-15', 7933, 70111, 4687, NULL, '1.0000', '0.4400', '0.4400', '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 (73838, '2022-04-15', 2248, 70112, 4687, 46762, '1.0000', '1.1723', '1.1723', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73839, '2022-04-15', 8982, 70113, 4687, 52898, '2.0000', '10.3335', '10.3335', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73840, '2022-04-15', 7750, 70114, 4687, NULL, '1.0000', '34.9000', '34.9000', '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 (73841, '2022-04-15', 9732, 70115, 4687, 53874, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73842, '2022-04-15', 2379, 70116, 4687, 52279, '1.0000', '1.8778', '1.8778', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73843, '2022-04-15', 2823, 70117, 4687, 53274, '2.0000', '5.7100', '5.7100', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73844, '2022-04-15', 2821, 70118, 4687, 50896, '1.0000', '3.4420', '3.4420', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73845, '2022-04-15', 1912, 70119, 4687, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73846, '2022-04-15', 1863, 70120, 4687, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73847, '2022-04-15', 1665, 70121, 4687, 50867, '1.0000', '1.1792', '1.1792', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73848, '2022-04-15', 2327, 70122, 4687, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73849, '2022-04-15', 7495, 70123, 4687, NULL, '1.0000', '17.8000', '17.8000', '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 (73850, '2022-04-15', 7411, 70124, 4688, NULL, '1.0000', '1.3013', '1.3013', '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 (73851, '2022-04-15', 1787, 70125, 4688, NULL, '2.0000', '0.5000', '0.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 (73852, '2022-04-15', 8200, 70126, 4689, NULL, '1.0000', '6.2600', '6.2600', '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 (73853, '2022-04-15', 7548, 70127, 4689, 52738, '1.0000', '2.0471', '2.0471', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73854, '2022-04-15', 7590, 70128, 4689, NULL, '1.0000', '4.3600', '4.3600', '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 (73855, '2022-04-15', 1351, 70129, 4689, NULL, '1.0000', '40.0300', '40.0300', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73856, '2022-04-15', 8739, 70130, 4689, NULL, '1.0000', '4.3200', '4.3200', '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 (73857, '2022-04-15', 7754, 70131, 4689, NULL, '1.0000', '4.1978', '4.1978', '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 (73858, '2022-04-15', 7954, 70132, 4689, NULL, '2.0000', '412.7272', '412.7272', '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 (73859, '2022-04-15', 2129, 70133, 4689, 39650, '1.0000', '8.3350', '8.3350', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73860, '2022-04-15', 7799, 70134, 4689, NULL, '1.0000', '4.7214', '4.7214', '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 (73861, '2022-04-15', 7514, 70135, 4689, NULL, '1.0000', '1417.7133', '1417.7133', '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 (73862, '2022-04-15', 8359, 70136, 4689, 53988, '1.0000', '604.4699', '604.4699', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73863, '2022-04-15', 1701, 70137, 4690, 51510, '1.0000', '15.2068', '15.2068', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73864, '2022-04-15', 2169, 70138, 4690, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73865, '2022-04-15', 7673, 70139, 4690, NULL, '1.0000', '15.5000', '15.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 (73866, '2022-04-16', 1688, 70140, 4691, 49636, '1.0000', '15.3265', '15.3265', '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 (73867, '2022-04-16', 1688, 70140, 4691, 43243, '1.0000', '15.3265', '15.3265', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73868, '2022-04-16', 1602, 70141, 4691, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73869, '2022-04-16', 7532, 70142, 4691, NULL, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73870, '2022-04-16', 9716, 70143, 4691, 52188, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73871, '2022-04-16', 2643, 70144, 4691, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73872, '2022-04-16', 2315, 70145, 4691, 47139, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '46.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73873, '2022-04-16', 2293, 70146, 4691, NULL, '3.0000', '10.2680', '10.2680', '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 (73874, '2022-04-16', 9729, 70147, 4691, 47080, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73875, '2022-04-16', 9840, 70148, 4691, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73876, '2022-04-16', 9832, 70149, 4691, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73877, '2022-04-16', 1670, 70150, 4691, NULL, '1.0000', '7.2499', '7.2499', '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 (73878, '2022-04-16', 9794, 70151, 4691, 52337, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73879, '2022-04-16', 9794, 70151, 4691, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73880, '2022-04-16', 2169, 70152, 4691, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73881, '2022-04-16', 1565, 70153, 4691, 19859, '1.0000', '18.0500', '18.0500', '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 (73882, '2022-04-16', 2643, 70154, 4691, 53459, '1.0000', '0.9343', '0.9343', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73883, '2022-04-16', 9734, 70155, 4691, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73884, '2022-04-16', 9868, 70156, 4691, 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 (73885, '2022-04-16', 1935, 70157, 4691, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73886, '2022-04-16', 7641, 70158, 4691, NULL, '1.0000', '1.9000', '1.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 (73887, '2022-04-16', 1528, 70159, 4691, 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 (73888, '2022-04-16', 8184, 70160, 4691, 51244, '6.0000', '2.5667', '2.5667', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73889, '2022-04-16', 8184, 70160, 4691, NULL, '4.0000', '2.5667', '2.5667', '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 (73890, '2022-04-16', 2618, 70161, 4691, 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 (73891, '2022-04-16', 7641, 70162, 4691, NULL, '1.0000', '1.9000', '1.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 (73892, '2022-04-16', 7514, 70163, 4691, NULL, '1.0000', '2.2500', '2.2500', '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 (73893, '2022-04-16', 9732, 70164, 4691, 47082, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73894, '2022-04-16', 8000, 70165, 4691, NULL, '1.0000', '25.8200', '25.8200', '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 (73895, '2022-04-16', 2285, 70166, 4691, NULL, '1.0000', '34.5905', '34.5905', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73896, '2022-04-16', 1718, 70167, 4691, NULL, '1.0000', '8.1600', '8.1600', '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 (73897, '2022-04-16', 9839, 70168, 4691, NULL, '1.0000', '15.0200', '15.0200', '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 (73898, '2022-04-16', 7411, 70169, 4691, NULL, '1.0000', '1.3013', '1.3013', '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 (73899, '2022-04-16', 8980, 70170, 4691, NULL, '1.0000', '9.5000', '9.5000', '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 (73900, '2022-04-16', 8746, 70171, 4691, 53448, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73901, '2022-04-16', 2354, 70172, 4692, NULL, '1.0000', '2.6193', '2.6193', '6.8600', '6.8600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73902, '2022-04-16', 1812, 70173, 4692, 52345, '3.0000', '8.3756', '8.3756', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73903, '2022-04-16', 9815, 70174, 4692, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '6.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73904, '2022-04-16', 9089, 70175, 4692, NULL, '1.0000', '3.8000', '3.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 (73905, '2022-04-16', 2777, 70176, 4692, 53951, '1.0000', '3.2286', '3.2286', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73906, '2022-04-16', 1670, 70177, 4693, NULL, '1.0000', '7.2499', '7.2499', '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 (73907, '2022-04-16', 2061, 70178, 4693, NULL, '1.0000', '11.0146', '11.0146', '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 (73908, '2022-04-16', 2315, 70179, 4693, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '45.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73909, '2022-04-16', 9747, 70180, 4693, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73910, '2022-04-16', 7514, 70181, 4693, NULL, '1.0000', '2.2500', '2.2500', '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 (73911, '2022-04-16', 8622, 70182, 4693, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73912, '2022-04-16', 1580, 70183, 4693, 51316, '2.0000', '1.1598', '1.1598', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73913, '2022-04-16', 1532, 70184, 4693, 52201, '2.0000', '1.4143', '1.4143', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73914, '2022-04-16', 1340, 70185, 4693, 51992, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73915, '2022-04-16', 2015, 70186, 4693, 42644, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73916, '2022-04-16', 7744, 70187, 4693, NULL, '1.0000', '2.5833', '2.5833', '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 (73917, '2022-04-16', 9732, 70188, 4693, 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 (73918, '2022-04-16', 1667, 70189, 4693, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '11.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73919, '2022-04-16', 2293, 70190, 4693, NULL, '3.0000', '10.2680', '10.2680', '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 (73920, '2022-04-16', 1665, 70191, 4693, 51312, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73921, '2022-04-16', 7641, 70192, 4693, NULL, '1.0000', '1.9000', '1.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 (73922, '2022-04-16', 9734, 70193, 4693, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73923, '2022-04-16', 7815, 70194, 4693, NULL, '1.0000', '13.0000', '13.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 (73924, '2022-04-16', 1425, 70195, 4693, NULL, '1.0000', '5.1721', '5.1721', '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 (73925, '2022-04-16', 9794, 70196, 4693, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73926, '2022-04-16', 1339, 70197, 4693, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73927, '2022-04-16', 7786, 70198, 4693, NULL, '1.0000', '6.7700', '6.7700', '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 (73928, '2022-04-16', 9821, 70199, 4693, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73929, '2022-04-16', 1824, 70200, 4694, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73930, '2022-04-16', 2298, 70201, 4694, NULL, '1.0000', '4.1383', '4.1383', '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 (73931, '2022-04-16', 9821, 70202, 4694, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73932, '2022-04-16', 8444, 70203, 4694, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73933, '2022-04-16', 2068, 70204, 4694, 53947, '1.0000', '11.4782', '11.4782', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73934, '2022-04-16', 9750, 70205, 4694, NULL, '1.0000', '3.3000', '3.3000', '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 (73935, '2022-04-16', 8300, 70206, 4694, NULL, '1.0000', '7.4300', '7.4300', '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 (73936, '2022-04-16', 9531, 70207, 4694, 53440, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73937, '2022-04-16', 7880, 70208, 4694, NULL, '1.0000', '1.0000', '1.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 (73938, '2022-04-16', 3029, 70209, 4694, NULL, '1.0000', '-71.3510', '-71.3510', '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 (73939, '2022-04-16', 2109, 70210, 4694, 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 (73940, '2022-04-16', 9092, 70211, 4695, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '169.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73941, '2022-04-16', 7752, 70212, 4695, 46196, '1.0000', '2.4834', '2.4834', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73942, '2022-04-16', 7765, 70213, 4695, NULL, '1.0000', '16.0000', '16.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 (73943, '2022-04-16', 7762, 70214, 4695, 52466, '1.0000', '-4.7001', '-4.7001', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73944, '2022-04-16', 7672, 70215, 4695, NULL, '1.0000', '3.8200', '3.8200', '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 (73945, '2022-04-16', 7715, 70216, 4695, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73946, '2022-04-16', 8878, 70217, 4695, NULL, '1.0000', '40.0900', '40.0900', '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 (73947, '2022-04-16', 8063, 70218, 4695, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '90.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73948, '2022-04-16', 7339, 70219, 4695, NULL, '10.0000', '774.1000', '774.1000', '0.9000', '0.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 (73949, '2022-04-16', 1841, 70220, 4695, 48007, '9.0000', '0.1792', '0.1792', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73950, '2022-04-16', 7877, 70221, 4695, NULL, '1.0000', '3.2419', '3.2419', '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 (73951, '2022-04-16', 7592, 70222, 4695, 53940, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73952, '2022-04-16', 7339, 70223, 4695, NULL, '10.0000', '774.1000', '774.1000', '0.9000', '0.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 (73953, '2022-04-16', 8984, 70224, 4695, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '15.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73954, '2022-04-16', 7558, 70225, 4695, NULL, '10.0000', '2.0704', '2.0704', '3.5000', '3.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 (73955, '2022-04-16', 1755, 70226, 4695, 46223, '1.0000', '6.0622', '6.0622', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73956, '2022-04-16', 7719, 70227, 4695, NULL, '1.0000', '7.0021', '7.0021', '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 (73957, '2022-04-16', 8203, 70228, 4695, 53907, '2.0000', '7.7723', '7.7723', '0.7000', '0.7000', '31.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73958, '2022-04-16', 7473, 70229, 4695, 51825, '3.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73959, '2022-04-16', 9804, 70230, 4695, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73960, '2022-04-16', 7867, 70231, 4695, NULL, '1.0000', '2.1368', '2.1368', '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 (73961, '2022-04-16', 7628, 70232, 4695, NULL, '6.0000', '3.5615', '3.5615', '3.0000', '3.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 (73962, '2022-04-16', 7552, 70233, 4695, 52744, '1.0000', '4.7069', '4.7069', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73963, '2022-04-16', 7641, 70234, 4695, 53972, '1.0000', '-492.2865', '-492.2865', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73964, '2022-04-16', 8243, 70235, 4695, NULL, '2.0000', '1.1400', '1.1400', '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 (73965, '2022-04-16', 7478, 70236, 4695, 52449, '1.0000', '33.7925', '33.7925', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73966, '2022-04-16', 7672, 70237, 4695, NULL, '1.0000', '3.8200', '3.8200', '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 (73967, '2022-04-16', 7411, 70238, 4695, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73968, '2022-04-16', 8045, 70239, 4695, NULL, '1.0000', '16.5000', '16.5000', '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 (73969, '2022-04-16', 2020, 70240, 4695, 48044, '1.0000', '8.0001', '8.0001', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73970, '2022-04-16', 7558, 70241, 4695, NULL, '20.0000', '2.0704', '2.0704', '3.5000', '3.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 (73971, '2022-04-16', 2295, 70242, 4695, NULL, '3.0000', '0.7000', '0.7000', '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 (73972, '2022-04-16', 8101, 70243, 4695, NULL, '2.0000', '-0.2222', '-0.2222', '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 (73973, '2022-04-16', 1841, 70244, 4695, 48007, '3.0000', '0.1792', '0.1792', '0.5000', '0.5000', '26.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73974, '2022-04-16', 7544, 70245, 4695, NULL, '2.0000', '9.4300', '9.4300', '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 (73975, '2022-04-16', 9868, 70246, 4695, 54002, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73976, '2022-04-16', 9803, 70247, 4695, 50387, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73977, '2022-04-16', 8011, 70248, 4695, 51834, '1.0000', '7.5455', '7.5455', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73978, '2022-04-16', 8011, 70248, 4695, NULL, '1.0000', '7.5455', '7.5455', '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 (73979, '2022-04-16', 7609, 70249, 4695, NULL, '1.0000', '67.1301', '67.1301', '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 (73980, '2022-04-16', 8119, 70250, 4695, 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 (73981, '2022-04-16', 7453, 70251, 4695, 51821, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73982, '2022-04-16', 2104, 70252, 4695, NULL, '2.0000', '0.2000', '0.2000', '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 (73983, '2022-04-16', 8308, 70253, 4695, NULL, '1.0000', '25.0620', '25.0620', '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 (73984, '2022-04-16', 7428, 70254, 4695, 50471, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '84.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73985, '2022-04-16', 7514, 70255, 4695, NULL, '1.0000', '1417.7133', '1417.7133', '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 (73986, '2022-04-16', 1916, 70256, 4695, 53775, '1.0000', '9.6854', '9.6854', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73987, '2022-04-16', 2315, 70257, 4695, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '83.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73988, '2022-04-16', 9724, 70258, 4695, 51814, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73989, '2022-04-16', 7548, 70259, 4695, 52738, '1.0000', '2.0471', '2.0471', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73990, '2022-04-16', 9092, 70260, 4695, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '170.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73991, '2022-04-16', 1895, 70261, 4695, NULL, '1.0000', '8.5800', '8.5800', '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 (73992, '2022-04-16', 7518, 70262, 4695, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73993, '2022-04-16', 8596, 70263, 4695, NULL, '1.0000', '18.5278', '18.5278', '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 (73994, '2022-04-16', 7482, 70264, 4695, 53984, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '21.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73995, '2022-04-16', 8444, 70265, 4695, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73996, '2022-04-16', 7831, 70266, 4695, NULL, '1.0000', '22.5000', '22.5000', '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 (73997, '2022-04-16', 1602, 70267, 4696, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73998, '2022-04-16', 2169, 70268, 4696, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73999, '2022-04-16', 2020, 70269, 4696, 53892, '1.0000', '5.6077', '5.6077', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74000, '2022-04-16', 1646, 70270, 4696, 53881, '1.0000', '5.0847', '5.0847', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74001, '2022-04-16', 1825, 70271, 4696, 44620, '1.0000', '5.0960', '5.0960', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74002, '2022-04-16', 1816, 70272, 4696, 46711, '1.0000', '18.4489', '18.4489', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74003, '2022-04-16', 9845, 70273, 4696, 53686, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74004, '2022-04-16', 9750, 70274, 4697, NULL, '1.0000', '3.3000', '3.3000', '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 (74005, '2022-04-16', 2109, 70275, 4697, 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 (74006, '2022-04-16', 1888, 70276, 4697, 53211, '1.0000', '16.5348', '16.5348', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74007, '2022-04-16', 7564, 70277, 4697, NULL, '1.0000', '0.6400', '0.6400', '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 (74008, '2022-04-16', 9747, 70278, 4697, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74009, '2022-04-16', 9482, 70279, 4697, NULL, '2.0000', '0.5000', '0.5000', '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 (74010, '2022-04-16', 2285, 70280, 4697, NULL, '1.0000', '34.5905', '34.5905', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74011, '2022-04-16', 9794, 70281, 4697, 52357, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74012, '2022-04-16', 1505, 70282, 4697, 53208, '1.0000', '148.7184', '148.7184', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74013, '2022-04-16', 1779, 70283, 4697, 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 (74014, '2022-04-16', 7881, 70284, 4697, NULL, '1.0000', '32.7700', '32.7700', '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 (74015, '2022-04-16', 2445, 70285, 4697, 22547, '1.0000', '3.2000', '3.2000', '5.2800', '5.2800', '29.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 (74016, '2022-04-16', 2445, 70286, 4697, 22547, '5.0000', '3.2000', '3.2000', '5.2800', '5.2800', '25.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 (74017, '2022-04-16', 2242, 70287, 4697, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74018, '2022-04-16', 1590, 70288, 4697, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74019, '2022-04-16', 9482, 70289, 4697, 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 (74020, '2022-04-16', 7743, 70290, 4697, NULL, '1.0000', '7.3900', '7.3900', '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 (74021, '2022-04-16', 1307, 70291, 4697, NULL, '1.0000', '-0.0521', '-0.0521', '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 (74022, '2022-04-16', 8444, 70292, 4697, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74023, '2022-04-16', 1510, 70293, 4697, NULL, '2.0000', '12.9810', '12.9810', '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 (74024, '2022-04-16', 9695, 70294, 4697, 53642, '1.0000', '5.1429', '5.1429', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74025, '2022-04-16', 9832, 70295, 4697, 53446, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74026, '2022-04-16', 7473, 70296, 4698, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '57.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74027, '2022-04-16', 1578, 70297, 4698, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74028, '2022-04-16', 7743, 70298, 4698, NULL, '2.0000', '7.3900', '7.3900', '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 (74029, '2022-04-16', 9482, 70299, 4698, 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 (74030, '2022-04-16', 9794, 70300, 4698, 52357, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74031, '2022-04-16', 2244, 70301, 4698, 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 (74032, '2022-04-16', 2315, 70302, 4698, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '44.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74033, '2022-04-16', 8557, 70303, 4699, 52028, '1.0000', '10.9447', '10.9447', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74034, '2022-04-16', 7584, 70304, 4699, NULL, '1.0000', '3.8100', '3.8100', '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 (74035, '2022-04-16', 9785, 70305, 4699, 53927, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74036, '2022-04-16', 9817, 70306, 4699, 53902, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74037, '2022-04-16', 8207, 70307, 4699, NULL, '1.0000', '0.0000', '0.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 (74038, '2022-04-16', 7482, 70308, 4699, 53984, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '20.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74039, '2022-04-16', 9729, 70309, 4699, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74040, '2022-04-16', 8902, 70310, 4699, 53973, '1.0000', '18.0016', '18.0016', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74041, '2022-04-16', 1586, 70311, 4699, 39590, '1.0000', '42.1784', '42.1784', '69.0000', '69.0000', '0.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74042, '2022-04-16', 7357, 70312, 4699, NULL, '1.0000', '11.7500', '11.7500', '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 (74043, '2022-04-16', 9461, 70313, 4699, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74044, '2022-04-16', 2557, 70314, 4699, 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 (74045, '2022-04-16', 9740, 70315, 4699, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74046, '2022-04-16', 1935, 70316, 4699, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '141.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74047, '2022-04-16', 7917, 70317, 4699, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '134.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74048, '2022-04-16', 7712, 70318, 4699, NULL, '1.0000', '-245.5125', '-245.5125', '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 (74049, '2022-04-16', 8395, 70319, 4699, 52459, '1.0000', '0.6080', '0.6080', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74050, '2022-04-16', 7744, 70320, 4700, NULL, '1.0000', '2.5833', '2.5833', '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 (74051, '2022-04-16', 2315, 70321, 4700, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '43.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74052, '2022-04-16', 2250, 70322, 4701, 2787, '-10.0000', '6.8900', '6.8900', '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 (74053, '2022-04-16', 2250, 70322, 4701, NULL, '11.0000', '6.8900', '6.8900', '12.5000', '12.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 (74054, '2022-04-16', 1837, 70323, 4701, NULL, '5.0000', '0.9642', '0.9642', '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 (74055, '2022-04-16', 9783, 70324, 4701, NULL, '1.0000', '17.6000', '17.6000', '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 (74056, '2022-04-16', 2009, 70325, 4701, 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 (74057, '2022-04-16', 2037, 70326, 4701, 6389, '-13.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74058, '2022-04-16', 2037, 70326, 4701, NULL, '14.0000', '10.5000', '10.5000', '14.0000', '14.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 (74059, '2022-04-16', 2131, 70327, 4701, 4279, '-3.0000', '12.0000', '12.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 (74060, '2022-04-16', 2131, 70327, 4701, NULL, '4.0000', '12.0000', '12.0000', '17.5000', '17.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 (74061, '2022-04-16', 2692, 70328, 4701, 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 (74062, '2022-04-16', 3041, 70329, 4701, 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 (74063, '2022-04-16', 2132, 70330, 4701, 4280, '-4.0000', '21.0000', '21.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 (74064, '2022-04-16', 2132, 70330, 4701, NULL, '5.0000', '21.0000', '21.0000', '24.0000', '24.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 (74065, '2022-04-16', 2421, 70331, 4701, 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 (74066, '2022-04-16', 2169, 70332, 4701, 10737, '-105.0000', '3.8397', '3.8397', '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 (74067, '2022-04-16', 2169, 70332, 4701, NULL, '106.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74068, '2022-04-16', 2442, 70333, 4701, 5312, '-7.0000', '4.8000', '4.8000', '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 (74069, '2022-04-16', 2442, 70333, 4701, NULL, '8.0000', '4.8000', '4.8000', '8.0000', '8.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 (74070, '2022-04-16', 3041, 70334, 4701, 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 (74071, '2022-04-16', 9794, 70335, 4701, NULL, '1.0000', '1.0800', '1.0800', '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 (74072, '2022-04-16', 1812, 70336, 4701, 8224, '-79.0000', '7.8900', '7.8900', '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 (74073, '2022-04-16', 1812, 70336, 4701, NULL, '80.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74074, '2022-04-16', 1499, 70337, 4701, NULL, '3.0000', '0.4100', '0.4100', '0.6000', '0.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 (74075, '2022-04-16', 2169, 70338, 4701, 10737, '-105.0000', '3.8397', '3.8397', '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 (74076, '2022-04-16', 2169, 70338, 4701, NULL, '107.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-107.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74077, '2022-04-16', 2660, 70339, 4701, 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 (74078, '2022-04-16', 2169, 70340, 4701, 10737, '-105.0000', '3.8397', '3.8397', '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 (74079, '2022-04-16', 2169, 70340, 4701, NULL, '106.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74080, '2022-04-16', 3029, 70341, 4701, NULL, '1.0000', '4.7700', '4.7700', '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 (74081, '2022-04-16', 2248, 70342, 4701, 2785, '-6.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 (74082, '2022-04-16', 2248, 70342, 4701, NULL, '7.0000', '2.5000', '2.5000', '3.5000', '3.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 (74083, '2022-04-16', 3057, 70343, 4701, 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 (74084, '2022-04-16', 2252, 70344, 4701, 2789, '-22.0000', '9.5000', '9.5000', '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 (74085, '2022-04-16', 2252, 70344, 4701, NULL, '23.0000', '9.5000', '9.5000', '16.0000', '16.0000', '-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 (74086, '2022-04-16', 2657, 70345, 4701, 11267, '-16.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 (74087, '2022-04-16', 2657, 70345, 4701, NULL, '17.0000', '5.4200', '5.4200', '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 (74088, '2022-04-16', 2506, 70346, 4701, 16244, '-6.0000', '3.4900', '3.4900', '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 (74089, '2022-04-16', 2506, 70346, 4701, NULL, '7.0000', '3.4900', '3.4900', '6.5000', '6.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 (74090, '2022-04-16', 2858, 70347, 4701, 17772, '-61.0000', '1.0000', '1.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 (74091, '2022-04-16', 2858, 70347, 4701, NULL, '62.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74092, '2022-04-16', 1302, 70348, 4701, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '3.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 (74093, '2022-04-16', 1812, 70349, 4701, 8224, '-79.0000', '7.8900', '7.8900', '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 (74094, '2022-04-16', 1812, 70349, 4701, NULL, '82.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74095, '2022-04-16', 2366, 70350, 4701, 3833, '-46.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 (74096, '2022-04-16', 2366, 70350, 4701, NULL, '48.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74097, '2022-04-16', 2252, 70351, 4701, 2789, '-22.0000', '9.5000', '9.5000', '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 (74098, '2022-04-16', 2252, 70351, 4701, NULL, '23.0000', '9.5000', '9.5000', '16.0000', '16.0000', '-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 (74099, '2022-04-16', 2315, 70352, 4701, 2735, '-263.0000', '0.3300', '0.3300', '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 (74100, '2022-04-16', 2315, 70352, 4701, NULL, '267.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-267.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74101, '2022-04-16', 1935, 70353, 4701, 5586, '-63.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 (74102, '2022-04-16', 1935, 70353, 4701, NULL, '64.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74103, '2022-04-16', 2839, 70354, 4701, NULL, '1.0000', '4.5000', '4.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 (74104, '2022-04-16', 2660, 70355, 4701, 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 (74105, '2022-04-16', 1804, 70356, 4701, 4916, '-10.0000', '4.2500', '4.2500', '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 (74106, '2022-04-16', 1804, 70356, 4701, NULL, '11.0000', '4.2500', '4.2500', '6.5000', '6.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 (74107, '2022-04-16', 2317, 70357, 4701, 3473, '-12.0000', '15.0000', '15.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 (74108, '2022-04-16', 2317, 70357, 4701, NULL, '13.0000', '15.0000', '15.0000', '18.0000', '18.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 (74109, '2022-04-16', 9579, 70358, 4701, 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 (74110, '2022-04-16', 2858, 70359, 4701, 17772, '-61.0000', '1.0000', '1.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 (74111, '2022-04-16', 2858, 70359, 4701, NULL, '62.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74112, '2022-04-16', 2169, 70360, 4701, 10737, '-105.0000', '3.8397', '3.8397', '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 (74113, '2022-04-16', 2169, 70360, 4701, NULL, '106.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74114, '2022-04-16', 1655, 70361, 4701, 3226, '-2.0000', '33.8400', '33.8400', '49.5000', '49.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 (74115, '2022-04-16', 1655, 70361, 4701, NULL, '3.0000', '33.8400', '33.8400', '49.5000', '49.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 (74116, '2022-04-16', 9834, 70362, 4701, NULL, '1.0000', '1.4500', '1.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 (74117, '2022-04-16', 8451, 70363, 4701, NULL, '1.0000', '9.6000', '9.6000', '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 (74118, '2022-04-16', 1493, 70364, 4701, 9747, '-19.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 (74119, '2022-04-16', 1493, 70364, 4701, NULL, '20.0000', '1.5425', '1.5425', '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 (74120, '2022-04-16', 1665, 70365, 4701, 3235, '-97.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 (74121, '2022-04-16', 1665, 70365, 4701, NULL, '99.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74122, '2022-04-17', 2858, 70366, 4702, 17772, '-63.0000', '1.0000', '1.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 (74123, '2022-04-17', 2858, 70366, 4702, NULL, '64.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74124, '2022-04-17', 2169, 70367, 4702, 10737, '-110.0000', '3.8397', '3.8397', '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 (74125, '2022-04-17', 2169, 70367, 4702, NULL, '111.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-111.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74126, '2022-04-17', 1822, 70368, 4702, 8225, '-145.0000', '2.4000', '2.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 (74127, '2022-04-17', 1822, 70368, 4702, NULL, '146.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-146.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74128, '2022-04-17', 1945, 70369, 4702, 18023, '-3.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 (74129, '2022-04-17', 1945, 70369, 4702, NULL, '4.0000', '9.5000', '9.5000', '12.5000', '12.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 (74130, '2022-04-17', 1425, 70370, 4702, NULL, '1.0000', '6.4405', '6.4405', '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 (74131, '2022-04-17', 1331, 70371, 4702, NULL, '1.0000', '4.2000', '4.2000', '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 (74132, '2022-04-17', 2297, 70372, 4702, 2956, '-4.0000', '6.6000', '6.6000', '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 (74133, '2022-04-17', 2297, 70372, 4702, NULL, '5.0000', '6.6000', '6.6000', '11.0000', '11.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 (74134, '2022-04-17', 1337, 70373, 4702, 10809, '-18.0000', '2.0000', '2.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 (74135, '2022-04-17', 1337, 70373, 4702, NULL, '19.0000', '2.0000', '2.0000', '3.5000', '3.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 (74136, '2022-04-17', 2346, 70374, 4702, 18804, '1.0000', '5.5000', '5.5000', '8.0000', '8.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 (74137, '2022-04-17', 9695, 70375, 4702, NULL, '1.0000', '4.5000', '4.5000', '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 (74138, '2022-04-17', 1912, 70376, 4702, NULL, '2.0000', '0.3200', '0.3200', '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 (74139, '2022-04-17', 8666, 70377, 4702, NULL, '1.0000', '0.4600', '0.4600', '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 (74140, '2022-04-17', 1518, 70378, 4702, 6524, '-10.0000', '6.9000', '6.9000', '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 (74141, '2022-04-17', 1518, 70378, 4702, NULL, '11.0000', '6.9000', '6.9000', '10.0000', '10.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 (74142, '2022-04-17', 1651, 70379, 4702, 3222, '-56.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 (74143, '2022-04-17', 1651, 70379, 4702, NULL, '57.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74144, '2022-04-17', 1812, 70380, 4702, 8224, '-83.0000', '7.8900', '7.8900', '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 (74145, '2022-04-17', 1812, 70380, 4702, NULL, '84.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74146, '2022-04-17', 1839, 70381, 4702, 8734, '-26.0000', '6.1500', '6.1500', '9.5000', '9.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 (74147, '2022-04-17', 1839, 70381, 4702, NULL, '27.0000', '6.1500', '6.1500', '9.5000', '9.5000', '-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 (74148, '2022-04-17', 1349, 70382, 4703, 10162, '-2.0000', '20.8300', '20.8300', '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 (74149, '2022-04-17', 1349, 70382, 4703, NULL, '3.0000', '20.8300', '20.8300', '41.0000', '41.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 (74150, '2022-04-17', 8395, 70383, 4703, NULL, '1.0000', '0.9700', '0.9700', '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 (74151, '2022-04-17', 2657, 70384, 4703, 11267, '-17.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 (74152, '2022-04-17', 2657, 70384, 4703, NULL, '18.0000', '5.4200', '5.4200', '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 (74153, '2022-04-17', 2858, 70385, 4703, 17772, '-64.0000', '1.0000', '1.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 (74154, '2022-04-17', 2858, 70385, 4703, NULL, '65.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74155, '2022-04-17', 8774, 70386, 4704, NULL, '2.0000', '2.3000', '2.3000', '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 (74156, '2022-04-17', 9084, 70387, 4704, NULL, '1.0000', '8.5000', '8.5000', '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 (74157, '2022-04-17', 8743, 70388, 4704, NULL, '1.0000', '9.6250', '9.6250', '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 (74158, '2022-04-17', 7641, 70389, 4704, 53972, '1.0000', '-492.2865', '-492.2865', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74159, '2022-04-17', 7385, 70390, 4704, 51081, '2.0000', '15.9587', '15.9587', '3.0000', '3.0000', '84.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74160, '2022-04-17', 1855, 70391, 4704, 49820, '1.0000', '1.4365', '1.4365', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74161, '2022-04-17', 7711, 70392, 4704, NULL, '1.0000', '-5144.5722', '-5144.5722', '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 (74162, '2022-04-17', 2557, 70393, 4704, 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 (74163, '2022-04-17', 9740, 70394, 4704, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74164, '2022-04-17', 1916, 70395, 4704, 53775, '1.0000', '9.6854', '9.6854', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74165, '2022-04-17', 9393, 70396, 4704, NULL, '3.0000', '3.0000', '3.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 (74166, '2022-04-17', 7473, 70397, 4704, 51825, '5.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '29.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74167, '2022-04-17', 2070, 70398, 4704, NULL, '1.0000', '2.3000', '2.3000', '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 (74168, '2022-04-17', 7321, 70399, 4704, 50640, '1.0000', '9.8389', '9.8389', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74169, '2022-04-17', 8072, 70400, 4704, 46630, '17.0000', '-133.6999', '-133.6999', '8.7000', '8.7000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74170, '2022-04-17', 8072, 70400, 4704, NULL, '6.0000', '-133.6999', '-133.6999', '8.7000', '8.7000', '-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 (74171, '2022-04-17', 8074, 70401, 4704, 54008, '1.0000', '23.6999', '23.6999', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74172, '2022-04-17', 2100, 70402, 4704, 53513, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74173, '2022-04-17', 7548, 70403, 4704, NULL, '1.0000', '2.0471', '2.0471', '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 (74174, '2022-04-17', 7709, 70404, 4704, NULL, '2.0000', '154.5165', '154.5165', '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 (74175, '2022-04-17', 7411, 70405, 4704, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74176, '2022-04-17', 1602, 70406, 4704, 48021, '1.0000', '5.2509', '5.2509', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74177, '2022-04-17', 7593, 70407, 4704, 50676, '1.0000', '2.6945', '2.6945', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74178, '2022-04-17', 2102, 70408, 4704, 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 (74179, '2022-04-17', 9265, 70409, 4704, 30225, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74180, '2022-04-17', 7641, 70410, 4704, 53972, '1.0000', '-492.2865', '-492.2865', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74181, '2022-04-17', 7672, 70411, 4704, NULL, '1.0000', '3.8200', '3.8200', '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 (74182, '2022-04-17', 7641, 70412, 4704, 53972, '1.0000', '-492.2865', '-492.2865', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74183, '2022-04-17', 8243, 70413, 4704, NULL, '2.0000', '1.1400', '1.1400', '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 (74184, '2022-04-17', 7324, 70414, 4704, 45796, '2.0000', '5.3429', '5.3429', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74185, '2022-04-17', 7685, 70415, 4704, NULL, '2.0000', '31.2000', '31.2000', '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 (74186, '2022-04-17', 7672, 70416, 4704, NULL, '2.0000', '3.8200', '3.8200', '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 (74187, '2022-04-17', 7634, 70417, 4704, NULL, '1.0000', '1.8000', '1.8000', '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 (74188, '2022-04-17', 2945, 70418, 4704, 51000, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74189, '2022-04-17', 7674, 70419, 4704, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '94.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74190, '2022-04-17', 7959, 70420, 4704, NULL, '2.0000', '9.6000', '9.6000', '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 (74191, '2022-04-17', 2315, 70421, 4704, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '82.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74192, '2022-04-17', 7859, 70422, 4704, 53915, '1.0000', '12.6416', '12.6416', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74193, '2022-04-17', 9817, 70423, 4704, 53902, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74194, '2022-04-17', 2242, 70424, 4704, 50663, '3.0000', '0.5833', '0.5833', '1.0000', '1.0000', '135.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74195, '2022-04-17', 9747, 70425, 4704, 50667, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74196, '2022-04-17', 9001, 70426, 4704, NULL, '1.0000', '-162.6320', '-162.6320', '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 (74197, '2022-04-17', 2105, 70427, 4705, 52224, '1.0000', '2.4500', '2.4500', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74198, '2022-04-17', 8980, 70428, 4705, NULL, '1.0000', '9.5000', '9.5000', '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 (74199, '2022-04-17', 9105, 70429, 4705, NULL, '1.0000', '-0.9200', '-0.9200', '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 (74200, '2022-04-17', 1771, 70430, 4705, 51319, '1.0000', '5.7805', '5.7805', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74201, '2022-04-17', 2777, 70431, 4705, 53951, '1.0000', '3.2286', '3.2286', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74202, '2022-04-17', 8546, 70432, 4705, NULL, '1.0000', '6.6000', '6.6000', '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 (74203, '2022-04-17', 3058, 70433, 4705, NULL, '1.0000', '2.3000', '2.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 (74204, '2022-04-17', 7514, 70434, 4705, NULL, '1.0000', '2.2500', '2.2500', '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 (74205, '2022-04-17', 9821, 70435, 4705, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74206, '2022-04-17', 2245, 70436, 4705, 51375, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74207, '2022-04-17', 2085, 70437, 4705, NULL, '10.0000', '3.1057', '3.1057', '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 (74208, '2022-04-17', 2671, 70438, 4705, 42075, '1.0000', '30.9800', '30.9800', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74209, '2022-04-17', 7342, 70439, 4705, NULL, '1.0000', '15.7285', '15.7285', '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 (74210, '2022-04-17', 1935, 70440, 4705, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74211, '2022-04-17', 1337, 70441, 4705, NULL, '1.0000', '2.0000', '2.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 (74212, '2022-04-17', 2350, 70442, 4705, 34569, '1.0000', '10.3800', '10.3800', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74213, '2022-04-17', 1577, 70443, 4705, NULL, '1.0000', '2.3271', '2.3271', '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 (74214, '2022-04-17', 2237, 70444, 4705, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74215, '2022-04-17', 1855, 70445, 4705, NULL, '1.0000', '1.5003', '1.5003', '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 (74216, '2022-04-17', 9750, 70446, 4705, NULL, '1.0000', '3.3000', '3.3000', '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 (74217, '2022-04-17', 2916, 70447, 4705, NULL, '1.0000', '8.2115', '8.2115', '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 (74218, '2022-04-17', 9741, 70448, 4705, 53681, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74219, '2022-04-17', 9815, 70449, 4705, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74220, '2022-04-17', 8017, 70450, 4705, NULL, '2.0000', '0.6000', '0.6000', '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 (74221, '2022-04-17', 9750, 70451, 4705, NULL, '1.0000', '3.3000', '3.3000', '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 (74222, '2022-04-17', 9821, 70452, 4705, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74223, '2022-04-17', 2411, 70453, 4705, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74224, '2022-04-17', 2360, 70454, 4705, NULL, '2.0000', '0.5200', '0.5200', '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 (74225, '2022-04-17', 9695, 70455, 4705, 54047, '2.0000', '5.0420', '5.0420', '7.0000', '7.0000', '34.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74226, '2022-04-17', 2916, 70456, 4705, NULL, '2.0000', '8.2115', '8.2115', '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 (74227, '2022-04-17', 7330, 70457, 4705, NULL, '1.0000', '3.0500', '3.0500', '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 (74228, '2022-04-17', 3058, 70458, 4705, NULL, '1.0000', '2.3000', '2.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 (74229, '2022-04-17', 1501, 70459, 4705, NULL, '1.0000', '2.1784', '2.1784', '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 (74230, '2022-04-17', 1580, 70460, 4705, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74231, '2022-04-17', 9747, 70461, 4705, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74232, '2022-04-17', 2315, 70462, 4705, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '41.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74233, '2022-04-17', 1851, 70463, 4705, 53669, '1.0000', '12.6300', '12.6300', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74234, '2022-04-17', 1651, 70464, 4705, NULL, '1.0000', '8.2255', '8.2255', '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 (74235, '2022-04-17', 2754, 70465, 4705, 18938, '2.0000', '0.0800', '0.0800', '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 (74236, '2022-04-17', 1810, 70466, 4705, NULL, '1.0000', '9.7936', '9.7936', '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 (74237, '2022-04-17', 1618, 70467, 4705, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74238, '2022-04-17', 9794, 70468, 4705, 52357, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74239, '2022-04-17', 2992, 70469, 4705, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74240, '2022-04-17', 2242, 70470, 4705, 48480, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74241, '2022-04-17', 1339, 70471, 4705, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74242, '2022-04-17', 1657, 70472, 4705, 19371, '2.0000', '90.0000', '90.0000', '0.6000', '0.6000', '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 (74243, '2022-04-17', 1628, 70473, 4705, 51671, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74244, '2022-04-17', 1651, 70474, 4705, NULL, '1.0000', '8.2255', '8.2255', '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 (74245, '2022-04-17', 2405, 70475, 4705, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '15.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74246, '2022-04-17', 1809, 70476, 4705, 48618, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74247, '2022-04-17', 2777, 70477, 4705, 53951, '1.0000', '3.2286', '3.2286', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74248, '2022-04-17', 9105, 70478, 4705, NULL, '1.0000', '-0.9200', '-0.9200', '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 (74249, '2022-04-17', 1825, 70479, 4705, 52350, '1.0000', '5.6803', '5.6803', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74250, '2022-04-17', 1805, 70480, 4705, NULL, '1.0000', '15.0770', '15.0770', '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 (74251, '2022-04-17', 9732, 70481, 4705, 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 (74252, '2022-04-17', 2109, 70482, 4705, 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 (74253, '2022-04-17', 8753, 70483, 4705, NULL, '1.0000', '20.0000', '20.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 (74254, '2022-04-17', 1337, 70484, 4705, NULL, '1.0000', '2.0000', '2.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 (74255, '2022-04-17', 9821, 70485, 4705, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74256, '2022-04-17', 2753, 70486, 4705, 53665, '1.0000', '4.8632', '4.8632', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74257, '2022-04-17', 1340, 70487, 4705, 51992, '1.0000', '3.5000', '3.5000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74258, '2022-04-17', 1521, 70488, 4705, 48883, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74259, '2022-04-17', 2635, 70489, 4705, 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 (74260, '2022-04-17', 7674, 70490, 4706, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74261, '2022-04-17', 2699, 70491, 4706, 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 (74262, '2022-04-17', 7852, 70492, 4706, NULL, '1.0000', '-11.4430', '-11.4430', '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 (74263, '2022-04-17', 2315, 70493, 4706, 53909, '2.0000', '0.6636', '0.6636', '0.8000', '0.8000', '80.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74264, '2022-04-17', 7641, 70494, 4706, 53972, '1.0000', '-492.2865', '-492.2865', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74265, '2022-04-17', 1677, 70495, 4706, 53985, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74266, '2022-04-17', 9092, 70496, 4706, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '164.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74267, '2022-04-17', 7518, 70497, 4706, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74268, '2022-04-17', 7708, 70498, 4706, NULL, '2.0000', '-53.8964', '-53.8964', '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 (74269, '2022-04-17', 9863, 70499, 4706, 52458, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '7.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74270, '2022-04-17', 8744, 70500, 4706, 53613, '2.0000', '3.7958', '3.7958', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74271, '2022-04-17', 7420, 70501, 4706, 51817, '1.0000', '32.5939', '32.5939', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74272, '2022-04-17', 1520, 70502, 4706, 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 (74273, '2022-04-17', 9092, 70503, 4706, 52527, '5.0000', '0.3175', '0.3175', '0.5000', '0.5000', '162.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74274, '2022-04-17', 8133, 70504, 4706, NULL, '1.0000', '5.0000', '5.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 (74275, '2022-04-17', 7415, 70505, 4706, 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 (74276, '2022-04-17', 7622, 70506, 4706, NULL, '1.0000', '3.3000', '3.3000', '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 (74277, '2022-04-17', 7709, 70507, 4706, NULL, '1.0000', '154.5165', '154.5165', '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 (74278, '2022-04-17', 1501, 70508, 4706, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74279, '2022-04-17', 8408, 70509, 4706, 50693, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74280, '2022-04-17', 9330, 70510, 4706, 50446, '1.0000', '8.6288', '8.6288', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74281, '2022-04-17', 8984, 70511, 4706, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '14.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74282, '2022-04-17', 7641, 70512, 4706, 53972, '1.0000', '-492.2865', '-492.2865', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74283, '2022-04-17', 8444, 70513, 4706, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74284, '2022-04-17', 8360, 70514, 4706, 52734, '1.0000', '3.2261', '3.2261', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74285, '2022-04-17', 2102, 70515, 4706, 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 (74286, '2022-04-17', 8596, 70516, 4706, NULL, '1.0000', '18.5278', '18.5278', '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 (74287, '2022-04-17', 7892, 70517, 4706, NULL, '1.0000', '4.2000', '4.2000', '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 (74288, '2022-04-17', 8200, 70518, 4706, NULL, '1.0000', '6.2600', '6.2600', '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 (74289, '2022-04-17', 1331, 70519, 4706, 52469, '1.0000', '120.9730', '120.9730', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74290, '2022-04-17', 1340, 70520, 4706, NULL, '1.0000', '4.3962', '4.3962', '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 (74291, '2022-04-17', 8596, 70521, 4706, NULL, '1.0000', '18.5278', '18.5278', '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 (74292, '2022-04-17', 7547, 70522, 4706, NULL, '12.0000', '0.0000', '0.0000', '0.5000', '0.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 (74293, '2022-04-17', 7744, 70523, 4706, NULL, '1.0000', '2.7200', '2.7200', '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 (74294, '2022-04-17', 8506, 70524, 4706, NULL, '1.0000', '35.4000', '35.4000', '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 (74295, '2022-04-17', 7967, 70525, 4706, 53919, '1.0000', '6.1201', '6.1201', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74296, '2022-04-17', 9724, 70526, 4706, 51814, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74297, '2022-04-17', 9092, 70527, 4706, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '165.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74298, '2022-04-17', 8033, 70528, 4706, NULL, '1.0000', '27.7000', '27.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 (74299, '2022-04-17', 7999, 70529, 4706, 46264, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74300, '2022-04-17', 7609, 70530, 4706, NULL, '1.0000', '67.1301', '67.1301', '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 (74301, '2022-04-17', 7608, 70531, 4706, NULL, '1.0000', '9.4184', '9.4184', '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 (74302, '2022-04-17', 8849, 70532, 4706, NULL, '1.0000', '1.0700', '1.0700', '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 (74303, '2022-04-17', 2695, 70533, 4707, 45122, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74304, '2022-04-17', 2643, 70534, 4707, 44038, '1.0000', '0.8700', '0.8700', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 305);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74305, '2022-04-17', 1912, 70535, 4707, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74306, '2022-04-17', 1884, 70536, 4707, 52288, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74307, '2022-04-17', 1863, 70537, 4707, 49847, '3.0000', '1.2686', '1.2686', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74308, '2022-04-17', 2990, 70538, 4707, 46050, '1.0000', '4.1906', '4.1906', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74309, '2022-04-17', 9727, 70539, 4707, 50886, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74310, '2022-04-17', 2316, 70540, 4707, 49410, '1.0000', '47.6625', '47.6625', '53.0000', '53.0000', '1.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74311, '2022-04-17', 9732, 70541, 4707, 53874, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74312, '2022-04-17', 7444, 70542, 4707, 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 (74313, '2022-04-17', 9732, 70543, 4707, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74314, '2022-04-17', 2109, 70544, 4707, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74315, '2022-04-17', 9732, 70545, 4707, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74316, '2022-04-17', 1875, 70546, 4707, 46625, '20.0000', '127.6922', '127.6922', '3.6000', '3.6000', '10.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74317, '2022-04-17', 2384, 70547, 4708, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74318, '2022-04-17', 1856, 70548, 4708, NULL, '1.0000', '4.9999', '4.9999', '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 (74319, '2022-04-17', 9750, 70549, 4708, NULL, '1.0000', '3.3000', '3.3000', '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 (74320, '2022-04-17', 2068, 70550, 4708, 53947, '1.0000', '11.4782', '11.4782', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74321, '2022-04-17', 8011, 70551, 4708, NULL, '2.0000', '0.9500', '0.9500', '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 (74322, '2022-04-17', 2252, 70552, 4708, NULL, '1.0000', '-7.3600', '-7.3600', '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 (74323, '2022-04-17', 9794, 70553, 4708, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74324, '2022-04-17', 2088, 70554, 4708, 52198, '1.0000', '1.8425', '1.8425', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74325, '2022-04-17', 2315, 70555, 4708, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '39.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74326, '2022-04-17', 9762, 70556, 4708, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74327, '2022-04-17', 8444, 70557, 4708, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74328, '2022-04-17', 1872, 70558, 4708, 37970, '1.0000', '8.9169', '8.9169', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74329, '2022-04-17', 2289, 70559, 4708, NULL, '10.0000', '0.2222', '0.2222', '0.5000', '0.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 (74330, '2022-04-17', 2237, 70560, 4708, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74331, '2022-04-17', 9750, 70561, 4708, NULL, '1.0000', '3.3000', '3.3000', '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 (74332, '2022-04-17', 1812, 70562, 4708, 52345, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74333, '2022-04-17', 9272, 70563, 4709, NULL, '1.0000', '3.1000', '3.1000', '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 (74334, '2022-04-17', 1677, 70564, 4709, 53985, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74335, '2022-04-17', 8033, 70565, 4709, NULL, '1.0000', '27.7000', '27.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 (74336, '2022-04-17', 8677, 70566, 4709, 51791, '3.0000', '1.2300', '1.2300', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74337, '2022-04-17', 7514, 70567, 4709, NULL, '1.0000', '1417.7133', '1417.7133', '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 (74338, '2022-04-17', 2329, 70568, 4709, 45838, '6.0000', '4.6000', '4.6000', '6.5000', '6.5000', '22.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74339, '2022-04-17', 9740, 70569, 4709, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74340, '2022-04-17', 1602, 70570, 4710, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74341, '2022-04-17', 1871, 70571, 4710, NULL, '2.0000', '2.2081', '2.2081', '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 (74342, '2022-04-17', 8769, 70572, 4710, NULL, '1.0000', '6.6000', '6.6000', '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 (74343, '2022-04-17', 8444, 70573, 4710, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74344, '2022-04-18', 9762, 70574, 4711, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74345, '2022-04-18', 8017, 70575, 4711, NULL, '2.0000', '0.6000', '0.6000', '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 (74346, '2022-04-18', 2643, 70576, 4711, 54048, '1.0000', '0.9715', '0.9715', '1.5000', '1.5000', '59.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74347, '2022-04-18', 9109, 70577, 4711, 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 (74348, '2022-04-18', 9732, 70578, 4711, 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 (74349, '2022-04-18', 2948, 70579, 4711, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '26.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74350, '2022-04-18', 1313, 70580, 4711, 43274, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74351, '2022-04-18', 7926, 70581, 4711, 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 (74352, '2022-04-18', 1967, 70582, 4711, 50076, '1.0000', '25.3000', '25.3000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74353, '2022-04-18', 2254, 70583, 4711, NULL, '1.0000', '14.8800', '14.8800', '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 (74354, '2022-04-18', 9734, 70584, 4711, 52161, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74355, '2022-04-18', 9532, 70585, 4711, 53434, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74356, '2022-04-18', 1837, 70586, 4711, NULL, '2.0000', '2.5335', '2.5335', '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 (74357, '2022-04-18', 1787, 70587, 4711, NULL, '1.0000', '0.5000', '0.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 (74358, '2022-04-18', 2341, 70588, 4711, NULL, '1.0000', '5.5900', '5.5900', '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 (74359, '2022-04-18', 9732, 70589, 4711, 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 (74360, '2022-04-18', 9716, 70590, 4711, 52188, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74361, '2022-04-18', 3029, 70591, 4711, NULL, '1.0000', '-71.3510', '-71.3510', '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 (74362, '2022-04-18', 9798, 70592, 4711, 51218, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74363, '2022-04-18', 1301, 70593, 4711, NULL, '2.0000', '1.6800', '1.6800', '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 (74364, '2022-04-18', 1763, 70594, 4711, NULL, '1.0000', '4.9051', '4.9051', '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 (74365, '2022-04-18', 9747, 70595, 4711, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74366, '2022-04-18', 9816, 70596, 4712, 51016, '1.0000', '5.2000', '5.2000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74367, '2022-04-18', 1856, 70597, 4712, NULL, '1.0000', '4.9999', '4.9999', '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 (74368, '2022-04-18', 8773, 70598, 4712, NULL, '1.0000', '3.8140', '3.8140', '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 (74369, '2022-04-18', 8646, 70599, 4712, NULL, '3.0000', '35.0000', '35.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 (74370, '2022-04-18', 2748, 70600, 4712, 31099, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74371, '2022-04-18', 2511, 70601, 4712, NULL, '1.0000', '8.8000', '8.8000', '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 (74372, '2022-04-18', 9794, 70602, 4712, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74373, '2022-04-18', 2411, 70603, 4712, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74374, '2022-04-18', 9204, 70604, 4712, NULL, '1.0000', '14.1514', '14.1514', '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 (74375, '2022-04-18', 1912, 70605, 4712, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74376, '2022-04-18', 1837, 70606, 4712, NULL, '2.0000', '2.5335', '2.5335', '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 (74377, '2022-04-18', 7507, 70607, 4712, 39787, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74378, '2022-04-18', 1533, 70608, 4712, 53657, '1.0000', '3.0027', '3.0027', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74379, '2022-04-18', 2379, 70609, 4712, NULL, '1.0000', '0.2954', '0.2954', '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 (74380, '2022-04-18', 1580, 70610, 4713, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74381, '2022-04-18', 2242, 70611, 4713, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74382, '2022-04-18', 9750, 70612, 4713, NULL, '1.0000', '3.3000', '3.3000', '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 (74383, '2022-04-18', 1501, 70613, 4713, NULL, '1.0000', '2.1784', '2.1784', '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 (74384, '2022-04-18', 8773, 70614, 4713, NULL, '1.0000', '3.8140', '3.8140', '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 (74385, '2022-04-18', 2316, 70615, 4713, 49420, '2.0000', '48.6000', '48.6000', '53.0000', '53.0000', '2.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74386, '2022-04-18', 9870, 70616, 4713, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74387, '2022-04-18', 1888, 70617, 4713, 53211, '1.0000', '16.5348', '16.5348', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74388, '2022-04-18', 2740, 70618, 4713, NULL, '1.0000', '9.8871', '9.8871', '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 (74389, '2022-04-18', 8308, 70619, 4713, NULL, '1.0000', '11.0000', '11.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 (74390, '2022-04-18', 2094, 70620, 4713, 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 (74391, '2022-04-18', 1946, 70621, 4713, NULL, '1.0000', '0.8771', '0.8771', '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 (74392, '2022-04-18', 9737, 70622, 4713, NULL, '1.0000', '7.3000', '7.3000', '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 (74393, '2022-04-18', 9204, 70623, 4713, NULL, '1.0000', '14.1514', '14.1514', '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 (74394, '2022-04-18', 9732, 70624, 4713, 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 (74395, '2022-04-18', 3058, 70625, 4713, NULL, '1.0000', '2.3000', '2.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 (74396, '2022-04-18', 9832, 70626, 4713, 54055, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74397, '2022-04-18', 2241, 70627, 4713, 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 (74398, '2022-04-18', 9748, 70628, 4713, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74399, '2022-04-18', 2411, 70629, 4713, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74400, '2022-04-18', 1410, 70630, 4713, NULL, '1.0000', '-0.4921', '-0.4921', '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 (74401, '2022-04-18', 7459, 70631, 4713, NULL, '10.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (74402, '2022-04-18', 1409, 70632, 4713, 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 (74403, '2022-04-18', 2289, 70633, 4713, NULL, '2.0000', '0.2222', '0.2222', '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 (74404, '2022-04-18', 1840, 70634, 4713, NULL, '2.0000', '0.2400', '0.2400', '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 (74405, '2022-04-18', 1841, 70635, 4713, NULL, '2.0000', '0.2601', '0.2601', '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 (74406, '2022-04-18', 9715, 70636, 4714, 51680, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74407, '2022-04-18', 2228, 70637, 4714, 53636, '1.0000', '30.0000', '30.0000', '33.0000', '33.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74408, '2022-04-18', 9748, 70638, 4714, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74409, '2022-04-18', 1867, 70639, 4714, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74410, '2022-04-18', 2068, 70640, 4714, 53947, '1.0000', '11.4782', '11.4782', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74411, '2022-04-18', 1702, 70641, 4714, NULL, '1.0000', '14.6666', '14.6666', '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 (74412, '2022-04-18', 8844, 70642, 4714, 52199, '1.0000', '4.7829', '4.7829', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74413, '2022-04-18', 7802, 70643, 4714, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74414, '2022-04-18', 2242, 70644, 4714, 48480, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74415, '2022-04-18', 2293, 70645, 4714, NULL, '3.0000', '10.2680', '10.2680', '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 (74416, '2022-04-18', 8773, 70646, 4714, NULL, '1.0000', '3.8140', '3.8140', '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 (74417, '2022-04-18', 2109, 70647, 4714, 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 (74418, '2022-04-18', 9870, 70648, 4714, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74419, '2022-04-18', 9832, 70649, 4714, 54055, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74420, '2022-04-18', 9870, 70650, 4714, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74421, '2022-04-18', 1856, 70651, 4714, NULL, '1.0000', '4.9999', '4.9999', '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 (74422, '2022-04-18', 8980, 70652, 4714, NULL, '2.0000', '9.5000', '9.5000', '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 (74423, '2022-04-18', 2081, 70653, 4714, NULL, '1.0000', '7.9000', '7.9000', '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 (74424, '2022-04-18', 2506, 70654, 4714, NULL, '1.0000', '4.2640', '4.2640', '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 (74425, '2022-04-18', 3029, 70655, 4714, NULL, '1.0000', '-71.3510', '-71.3510', '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 (74426, '2022-04-19', 2262, 70656, 4715, 51483, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74427, '2022-04-19', 1434, 70657, 4715, 48980, '1.0000', '17.4630', '17.4630', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74428, '2022-04-19', 2657, 70658, 4715, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74429, '2022-04-19', 9724, 70659, 4715, 47062, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74430, '2022-04-19', 1946, 70660, 4715, NULL, '1.0000', '0.8771', '0.8771', '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 (74431, '2022-04-19', 9732, 70661, 4715, 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 (74432, '2022-04-19', 7379, 70662, 4715, NULL, '1.0000', '12.5100', '12.5100', '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 (74433, '2022-04-19', 8101, 70663, 4715, NULL, '2.0000', '21.7000', '21.7000', '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 (74434, '2022-04-19', 9731, 70664, 4715, 52153, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74435, '2022-04-19', 2916, 70665, 4715, NULL, '1.0000', '8.2115', '8.2115', '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 (74436, '2022-04-19', 2521, 70666, 4715, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74437, '2022-04-19', 9740, 70667, 4715, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74438, '2022-04-19', 2379, 70668, 4715, NULL, '2.0000', '0.2954', '0.2954', '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 (74439, '2022-04-19', 1765, 70669, 4715, 53668, '1.0000', '5.4760', '5.4760', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74440, '2022-04-19', 9734, 70670, 4715, 52161, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74441, '2022-04-19', 1311, 70671, 4715, 52210, '3.0000', '0.3700', '0.3700', '0.6000', '0.6000', '37.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74442, '2022-04-19', 9531, 70672, 4715, 53440, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74443, '2022-04-19', 9775, 70673, 4715, NULL, '1.0000', '6.6500', '6.6500', '11.0900', '11.0900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74444, '2022-04-19', 2381, 70674, 4715, 52184, '1.0000', '11.8445', '11.8445', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74445, '2022-04-19', 2236, 70675, 4715, 52203, '1.0000', '-2.3919', '-2.3919', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74446, '2022-04-19', 1577, 70676, 4715, NULL, '1.0000', '2.3271', '2.3271', '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 (74447, '2022-04-19', 9868, 70677, 4715, 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 (74448, '2022-04-19', 9089, 70678, 4715, NULL, '1.0000', '3.8000', '3.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 (74449, '2022-04-19', 2948, 70679, 4715, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74450, '2022-04-19', 8101, 70680, 4715, NULL, '2.0000', '21.7000', '21.7000', '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 (74451, '2022-04-19', 9840, 70681, 4715, 53230, '5.0000', '1.5000', '1.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74452, '2022-04-19', 9531, 70682, 4715, 53440, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74453, '2022-04-19', 2089, 70683, 4715, 53952, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74454, '2022-04-19', 2242, 70684, 4715, 48480, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74455, '2022-04-19', 2242, 70684, 4715, 48481, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74456, '2022-04-19', 7532, 70685, 4715, NULL, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74457, '2022-04-19', 1743, 70686, 4715, NULL, '1.0000', '4.6550', '4.6550', '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 (74458, '2022-04-19', 1512, 70687, 4715, 43269, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74459, '2022-04-19', 8101, 70688, 4715, NULL, '2.0000', '21.7000', '21.7000', '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 (74460, '2022-04-19', 7612, 70689, 4715, NULL, '2.0000', '1.7300', '1.7300', '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 (74461, '2022-04-19', 2061, 70690, 4715, NULL, '1.0000', '11.0146', '11.0146', '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 (74462, '2022-04-19', 2643, 70691, 4715, 54048, '1.0000', '0.9715', '0.9715', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74463, '2022-04-19', 9695, 70692, 4715, 54056, '1.0000', '5.0912', '5.0912', '7.0000', '7.0000', '33.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74464, '2022-04-19', 2068, 70693, 4715, 53947, '1.0000', '11.4782', '11.4782', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74465, '2022-04-19', 9840, 70694, 4715, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74466, '2022-04-19', 7612, 70695, 4715, NULL, '1.0000', '1.7300', '1.7300', '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 (74467, '2022-04-19', 8017, 70696, 4715, NULL, '2.0000', '0.6000', '0.6000', '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 (74468, '2022-04-19', 1309, 70697, 4715, 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 (74469, '2022-04-19', 9832, 70698, 4715, 54055, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74470, '2022-04-19', 2089, 70699, 4715, 53952, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74471, '2022-04-19', 9842, 70700, 4715, 51251, '1.0000', '5.6200', '5.6200', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74472, '2022-04-19', 2948, 70701, 4715, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74473, '2022-04-19', 2241, 70702, 4715, 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 (74474, '2022-04-19', 7482, 70703, 4715, NULL, '1.0000', '2.5019', '2.5019', '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 (74475, '2022-04-19', 2383, 70704, 4715, 19822, '1.0000', '16.3000', '16.3000', '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 (74476, '2022-04-19', 2344, 70705, 4715, NULL, '1.0000', '17.6204', '17.6204', '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 (74477, '2022-04-19', 7608, 70706, 4716, NULL, '1.0000', '6.9800', '6.9800', '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 (74478, '2022-04-19', 2342, 70707, 4716, 3845, '-80.0000', '1.8600', '1.8600', '2.7000', '2.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 (74479, '2022-04-19', 2342, 70707, 4716, NULL, '90.0000', '1.8600', '1.8600', '2.7000', '2.7000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74480, '2022-04-19', 7412, 70708, 4717, NULL, '1.0000', '1.5200', '1.5200', '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 (74481, '2022-04-19', 7703, 70709, 4717, NULL, '1.0000', '22.9900', '22.9900', '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 (74482, '2022-04-19', 7335, 70710, 4717, NULL, '1.0000', '14.5000', '14.5000', '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 (74483, '2022-04-19', 1501, 70711, 4717, NULL, '1.0000', '2.0500', '2.0500', '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 (74484, '2022-04-19', 1982, 70712, 4717, 33069, '1.0000', '5.5000', '5.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74485, '2022-04-19', 7490, 70713, 4717, NULL, '10.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-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 (74486, '2022-04-19', 8288, 70714, 4717, NULL, '5.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (74487, '2022-04-19', 9098, 70715, 4717, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74488, '2022-04-19', 1884, 70716, 4717, 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 (74489, '2022-04-19', 9740, 70717, 4717, NULL, '1.0000', '0.6600', '0.6600', '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 (74490, '2022-04-19', 8345, 70718, 4717, NULL, '1.0000', '5.9000', '5.9000', '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 (74491, '2022-04-19', 7516, 70719, 4717, NULL, '1.0000', '10.0000', '10.0000', '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 (74492, '2022-04-19', 7654, 70720, 4717, NULL, '2.0000', '49.3900', '49.3900', '65.5000', '65.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 (74493, '2022-04-19', 1537, 70721, 4717, 12923, '-3.0000', '40.2700', '40.2700', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74494, '2022-04-19', 1537, 70721, 4717, NULL, '4.0000', '40.2700', '40.2700', '56.0000', '56.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 (74495, '2022-04-19', 7641, 70722, 4717, NULL, '1.0000', '1.9000', '1.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 (74496, '2022-04-19', 9087, 70723, 4717, NULL, '3.0000', '4.3000', '4.3000', '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 (74497, '2022-04-19', 8325, 70724, 4717, 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 (74498, '2022-04-19', 8615, 70725, 4717, NULL, '2.0000', '4.5000', '4.5000', '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 (74499, '2022-04-19', 7473, 70726, 4717, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (74500, '2022-04-19', 7453, 70727, 4717, NULL, '1.0000', '28.5000', '28.5000', '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 (74501, '2022-04-19', 9303, 70728, 4717, NULL, '1.0000', '9.0000', '9.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 (74502, '2022-04-19', 7848, 70729, 4717, NULL, '1.0000', '1.3500', '1.3500', '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 (74503, '2022-04-19', 1328, 70730, 4717, NULL, '1.0000', '3.1500', '3.1500', '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 (74504, '2022-04-19', 7713, 70731, 4717, NULL, '4.0000', '0.3800', '0.3800', '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 (74505, '2022-04-19', 7518, 70732, 4717, NULL, '1.0000', '7.8200', '7.8200', '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 (74506, '2022-04-19', 7652, 70733, 4717, NULL, '15.0000', '0.9800', '0.9800', '1.3000', '1.3000', '-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 (74507, '2022-04-19', 1595, 70734, 4717, 8360, '-5.0000', '20.6900', '20.6900', '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 (74508, '2022-04-19', 1595, 70734, 4717, NULL, '6.0000', '20.6900', '20.6900', '26.5000', '26.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 (74509, '2022-04-19', 9598, 70735, 4717, NULL, '1.0000', '3.7600', '3.7600', '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 (74510, '2022-04-19', 7606, 70736, 4717, NULL, '1.0000', '4.8600', '4.8600', '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 (74511, '2022-04-19', 7473, 70737, 4717, NULL, '10.0000', '0.5300', '0.5300', '0.6000', '0.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 (74512, '2022-04-19', 7703, 70738, 4717, NULL, '2.0000', '22.9900', '22.9900', '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 (74513, '2022-04-19', 7514, 70739, 4718, NULL, '1.0000', '2.2500', '2.2500', '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 (74514, '2022-04-19', 1510, 70740, 4718, 18904, '1.0000', '8.8600', '8.8600', '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 (74515, '2022-04-19', 1602, 70741, 4719, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74516, '2022-04-19', 1606, 70742, 4719, 37773, '5.0000', '4.9200', '4.9200', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74517, '2022-04-19', 7612, 70743, 4719, NULL, '2.0000', '1.7300', '1.7300', '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 (74518, '2022-04-19', 8980, 70744, 4719, NULL, '1.0000', '9.5000', '9.5000', '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 (74519, '2022-04-19', 1935, 70745, 4719, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74520, '2022-04-19', 1590, 70746, 4719, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74521, '2022-04-19', 1498, 70747, 4719, 52352, '2.0000', '0.4476', '0.4476', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74522, '2022-04-19', 9698, 70748, 4719, 52196, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74523, '2022-04-19', 2103, 70749, 4719, 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 (74524, '2022-04-19', 8933, 70750, 4719, 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 (74525, '2022-04-19', 9794, 70751, 4719, 52357, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74526, '2022-04-19', 1580, 70752, 4719, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74527, '2022-04-19', 2293, 70753, 4719, NULL, '3.0000', '10.2680', '10.2680', '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 (74528, '2022-04-19', 2657, 70754, 4719, 51691, '3.0000', '0.0533', '0.0533', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74529, '2022-04-19', 7514, 70755, 4720, NULL, '1.0000', '2.2500', '2.2500', '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 (74530, '2022-04-19', 9579, 70756, 4720, 53956, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74531, '2022-04-19', 1839, 70757, 4720, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (74532, '2022-04-19', 7606, 70758, 4720, NULL, '1.0000', '4.8600', '4.8600', '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 (74533, '2022-04-19', 9832, 70759, 4720, 54055, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74534, '2022-04-19', 9831, 70760, 4720, 54053, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '71.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74535, '2022-04-19', 7589, 70761, 4720, NULL, '1.0000', '1.7700', '1.7700', '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 (74536, '2022-04-19', 9831, 70762, 4720, 54053, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '71.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74537, '2022-04-19', 2413, 70763, 4720, 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 (74538, '2022-04-19', 1342, 70764, 4720, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74539, '2022-04-19', 9840, 70765, 4720, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74540, '2022-04-19', 2511, 70766, 4721, 9740, '-14.0000', '8.5000', '8.5000', '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 (74541, '2022-04-19', 2511, 70766, 4721, NULL, '15.0000', '8.5000', '8.5000', '13.0000', '13.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 (74542, '2022-04-19', 1590, 70767, 4721, 22260, '1.0000', '1.7100', '1.7100', '3.0000', '3.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 (74543, '2022-04-19', 8666, 70768, 4721, NULL, '1.0000', '0.4600', '0.4600', '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 (74544, '2022-04-19', 2643, 70769, 4721, NULL, '1.0000', '0.8700', '0.8700', '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 (74545, '2022-04-19', 1670, 70770, 4721, 10163, '-16.0000', '19.5000', '19.5000', '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 (74546, '2022-04-19', 1670, 70770, 4721, NULL, '17.0000', '19.5000', '19.5000', '33.0000', '33.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 (74547, '2022-04-19', 2070, 70771, 4721, NULL, '1.0000', '2.0000', '2.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 (74548, '2022-04-19', 1608, 70772, 4721, 8222, '-14.0000', '3.3500', '3.3500', '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 (74549, '2022-04-19', 1608, 70772, 4721, NULL, '15.0000', '3.3500', '3.3500', '6.0000', '6.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 (74550, '2022-04-19', 2395, 70773, 4721, 4202, '-4.0000', '27.0000', '27.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 (74551, '2022-04-19', 2395, 70773, 4721, NULL, '5.0000', '27.0000', '27.0000', '35.0000', '35.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 (74552, '2022-04-19', 2242, 70774, 4721, 20608, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '5.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 (74553, '2022-04-19', 2567, 70775, 4721, 7177, '-5.0000', '33.0000', '33.0000', '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 (74554, '2022-04-19', 2567, 70775, 4721, NULL, '8.0000', '33.0000', '33.0000', '46.0000', '46.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 (74555, '2022-04-19', 1533, 70776, 4721, 10381, '-16.0000', '2.5917', '2.5917', '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 (74556, '2022-04-19', 1533, 70776, 4721, NULL, '18.0000', '2.5917', '2.5917', '5.5000', '5.5000', '-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 (74557, '2022-04-19', 2242, 70777, 4721, 20608, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '5.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 (74558, '2022-04-19', 9747, 70778, 4721, NULL, '1.0000', '0.6500', '0.6500', '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 (74559, '2022-04-19', 1809, 70779, 4721, 7386, '-8.0000', '9.6000', '9.6000', '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 (74560, '2022-04-19', 1809, 70779, 4721, NULL, '9.0000', '9.6000', '9.6000', '13.5000', '13.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 (74561, '2022-04-19', 2033, 70780, 4721, 6386, '-1.0000', '4.5000', '4.5000', '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 (74562, '2022-04-19', 2033, 70780, 4721, NULL, '2.0000', '4.5000', '4.5000', '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 (74563, '2022-04-19', 9578, 70781, 4721, NULL, '1.0000', '8.0000', '8.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 (74564, '2022-04-19', 2477, 70782, 4721, 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 (74565, '2022-04-19', 2135, 70783, 4721, 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 (74566, '2022-04-19', 2068, 70784, 4721, 5568, '-22.0000', '13.1000', '13.1000', '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 (74567, '2022-04-19', 2068, 70784, 4721, NULL, '23.0000', '13.1000', '13.1000', '16.0000', '16.0000', '-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 (74568, '2022-04-19', 2060, 70785, 4721, 20583, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '93.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 (74569, '2022-04-19', 8769, 70786, 4721, NULL, '2.0000', '6.6000', '6.6000', '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 (74570, '2022-04-19', 2169, 70787, 4721, 10737, '-111.0000', '3.8397', '3.8397', '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 (74571, '2022-04-19', 2169, 70787, 4721, NULL, '112.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74572, '2022-04-19', 2964, 70788, 4721, 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 (74573, '2022-04-19', 2604, 70789, 4721, 14491, '-11.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74574, '2022-04-19', 2604, 70789, 4721, NULL, '12.0000', '90.0000', '90.0000', '110.0000', '110.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 (74575, '2022-04-19', 1595, 70790, 4722, 8360, '-6.0000', '20.6900', '20.6900', '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 (74576, '2022-04-19', 1595, 70790, 4722, NULL, '7.0000', '20.6900', '20.6900', '26.5000', '26.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 (74577, '2022-04-19', 1602, 70791, 4723, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74578, '2022-04-19', 2669, 70792, 4723, 23125, '1.0000', '24.3367', '24.3367', '32.0000', '32.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 (74579, '2022-04-19', 2315, 70793, 4723, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '38.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74580, '2022-04-19', 9870, 70794, 4723, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74581, '2022-04-19', 9870, 70794, 4723, NULL, '1.0000', '5.1000', '5.1000', '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 (74582, '2022-04-19', 2543, 70795, 4723, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74583, '2022-04-19', 1602, 70796, 4723, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74584, '2022-04-19', 1698, 70797, 4723, 51380, '1.0000', '8.0429', '8.0429', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74585, '2022-04-19', 1337, 70798, 4723, NULL, '1.0000', '2.0000', '2.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 (74586, '2022-04-19', 2671, 70799, 4723, NULL, '1.0000', '30.9800', '30.9800', '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 (74587, '2022-04-19', 9870, 70800, 4723, 53442, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74588, '2022-04-19', 9870, 70800, 4723, NULL, '1.0000', '5.1000', '5.1000', '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 (74589, '2022-04-19', 2916, 70801, 4723, NULL, '1.0000', '8.2115', '8.2115', '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 (74590, '2022-04-19', 8187, 70802, 4723, NULL, '3.0000', '14.3900', '14.3900', '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 (74591, '2022-04-19', 1771, 70803, 4723, 51319, '1.0000', '5.7805', '5.7805', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74592, '2022-04-19', 9734, 70804, 4723, 52161, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74593, '2022-04-19', 1426, 70805, 4723, NULL, '1.0000', '34.9584', '34.9584', '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 (74594, '2022-04-19', 9794, 70806, 4723, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74595, '2022-04-19', 8744, 70807, 4724, 53449, '1.0000', '1.8443', '1.8443', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74596, '2022-04-19', 7564, 70808, 4724, NULL, '1.0000', '0.6400', '0.6400', '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 (74597, '2022-04-19', 2315, 70809, 4724, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '36.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74598, '2022-04-19', 1942, 70810, 4724, 51323, '1.0000', '19.0545', '19.0545', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74599, '2022-04-19', 1670, 70811, 4724, NULL, '1.0000', '7.2499', '7.2499', '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 (74600, '2022-04-19', 9750, 70812, 4724, NULL, '1.0000', '3.3000', '3.3000', '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 (74601, '2022-04-19', 9748, 70813, 4724, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74602, '2022-04-19', 9463, 70814, 4724, NULL, '1.0000', '18.9000', '18.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 (74603, '2022-04-19', 1425, 70815, 4724, NULL, '1.0000', '5.1721', '5.1721', '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 (74604, '2022-04-19', 1602, 70816, 4724, 51394, '1.0000', '6.9227', '6.9227', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74605, '2022-04-19', 7483, 70817, 4724, 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 (74606, '2022-04-19', 2379, 70818, 4724, NULL, '1.0000', '0.2954', '0.2954', '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 (74607, '2022-04-19', 7913, 70819, 4724, NULL, '2.0000', '2.5500', '2.5500', '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 (74608, '2022-04-19', 9750, 70820, 4724, NULL, '1.0000', '3.3000', '3.3000', '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 (74609, '2022-04-19', 2315, 70821, 4724, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '37.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74610, '2022-04-19', 9750, 70822, 4724, NULL, '1.0000', '3.3000', '3.3000', '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 (74611, '2022-04-19', 7743, 70823, 4724, NULL, '1.0000', '7.3900', '7.3900', '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 (74612, '2022-04-19', 2360, 70824, 4724, NULL, '1.0000', '0.5200', '0.5200', '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 (74613, '2022-04-19', 9732, 70825, 4724, 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 (74614, '2022-04-19', 7790, 70826, 4724, NULL, '8.0000', '17.0000', '17.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 (74615, '2022-04-19', 2251, 70827, 4724, NULL, '1.0000', '11.3731', '11.3731', '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 (74616, '2022-04-19', 2102, 70828, 4724, 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 (74617, '2022-04-19', 2245, 70829, 4724, 51375, '4.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74618, '2022-04-19', 7514, 70830, 4724, NULL, '1.0000', '2.2500', '2.2500', '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 (74619, '2022-04-19', 2231, 70831, 4724, NULL, '1.0000', '-543.9392', '-543.9392', '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 (74620, '2022-04-19', 2366, 70832, 4724, NULL, '4.0000', '-24.7743', '-24.7743', '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 (74621, '2022-04-19', 7415, 70833, 4725, 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 (74622, '2022-04-19', 8900, 70834, 4725, 48847, '7.0000', '0.4000', '0.4000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74623, '2022-04-19', 8360, 70835, 4725, 52734, '1.0000', '3.2261', '3.2261', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74624, '2022-04-19', 2289, 70836, 4725, NULL, '4.0000', '2.5688', '2.5688', '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 (74625, '2022-04-19', 7428, 70837, 4725, 50471, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '80.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74626, '2022-04-19', 2104, 70838, 4725, NULL, '2.0000', '0.2000', '0.2000', '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 (74627, '2022-04-19', 2287, 70839, 4725, NULL, '2.0000', '2.3000', '2.3000', '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 (74628, '2022-04-19', 7400, 70840, 4725, NULL, '1.0000', '-37.0800', '-37.0800', '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 (74629, '2022-04-19', 9160, 70841, 4725, NULL, '1.0000', '41.6640', '41.6640', '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 (74630, '2022-04-19', 8918, 70842, 4725, 45579, '2.0000', '4.7316', '4.7316', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74631, '2022-04-19', 8951, 70843, 4725, NULL, '1.0000', '9.0000', '9.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 (74632, '2022-04-19', 9193, 70844, 4725, NULL, '1.0000', '7.0315', '7.0315', '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 (74633, '2022-04-19', 9274, 70845, 4725, NULL, '1.0000', '3.5638', '3.5638', '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 (74634, '2022-04-19', 9399, 70846, 4725, NULL, '1.0000', '0.9794', '0.9794', '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 (74635, '2022-04-19', 8849, 70847, 4725, NULL, '1.0000', '1.0700', '1.0700', '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 (74636, '2022-04-19', 8547, 70848, 4725, NULL, '1.0000', '7.7333', '7.7333', '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 (74637, '2022-04-19', 7963, 70849, 4725, 53941, '1.0000', '5.6071', '5.6071', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74638, '2022-04-19', 8395, 70850, 4725, 52459, '2.0000', '0.6080', '0.6080', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74639, '2022-04-19', 7348, 70851, 4725, 29990, '1.0000', '25.3000', '25.3000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74640, '2022-04-19', 9303, 70852, 4725, NULL, '1.0000', '9.0000', '9.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 (74641, '2022-04-19', 7588, 70853, 4725, NULL, '1.0000', '6.2420', '6.2420', '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 (74642, '2022-04-19', 7674, 70854, 4725, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '92.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74643, '2022-04-19', 8367, 70855, 4725, NULL, '1.0000', '9.5000', '9.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 (74644, '2022-04-19', 9748, 70856, 4725, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74645, '2022-04-19', 7317, 70857, 4725, 53991, '1.0000', '14.7177', '14.7177', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74646, '2022-04-19', 8810, 70858, 4725, NULL, '1.0000', '36.0605', '36.0605', '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 (74647, '2022-04-19', 8557, 70859, 4725, 52028, '1.0000', '10.9447', '10.9447', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74648, '2022-04-19', 7638, 70860, 4725, 53916, '1.0000', '-1.3682', '-1.3682', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74649, '2022-04-19', 8363, 70861, 4725, NULL, '1.0000', '38.0000', '38.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 (74650, '2022-04-19', 7657, 70862, 4725, NULL, '1.0000', '-887.1226', '-887.1226', '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 (74651, '2022-04-19', 7848, 70863, 4725, NULL, '1.0000', '-45.5521', '-45.5521', '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 (74652, '2022-04-19', 7714, 70864, 4725, NULL, '3.0000', '0.4200', '0.4200', '0.6000', '0.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 (74653, '2022-04-19', 7518, 70865, 4725, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74654, '2022-04-19', 8203, 70866, 4725, 53907, '7.0000', '7.7723', '7.7723', '0.7000', '0.7000', '24.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74655, '2022-04-19', 1947, 70867, 4725, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74656, '2022-04-19', 9729, 70868, 4725, 53908, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74657, '2022-04-19', 7848, 70869, 4725, NULL, '1.0000', '-45.5521', '-45.5521', '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 (74658, '2022-04-19', 7411, 70870, 4725, 52731, '3.0000', '1.3518', '1.3518', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74659, '2022-04-19', 2315, 70871, 4725, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '79.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74660, '2022-04-19', 7482, 70872, 4725, 53984, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74661, '2022-04-19', 9320, 70873, 4725, 51285, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74662, '2022-04-19', 7482, 70874, 4725, 53984, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74663, '2022-04-19', 9445, 70875, 4725, 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 (74664, '2022-04-19', 7334, 70876, 4725, 53771, '1.0000', '8.5605', '8.5605', '13.5000', '13.5000', '17.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74665, '2022-04-19', 2225, 70877, 4725, 53629, '1.0000', '18.5000', '18.5000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74666, '2022-04-19', 9821, 70878, 4725, 53986, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74667, '2022-04-19', 9821, 70878, 4725, 53987, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74668, '2022-04-19', 7672, 70879, 4725, NULL, '2.0000', '3.8200', '3.8200', '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 (74669, '2022-04-19', 7641, 70880, 4725, NULL, '1.0000', '-492.2865', '-492.2865', '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 (74670, '2022-04-19', 7509, 70881, 4725, 53507, '1.0000', '17.2236', '17.2236', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74671, '2022-04-19', 7967, 70882, 4725, 53919, '1.0000', '6.1201', '6.1201', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74672, '2022-04-19', 7518, 70883, 4725, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74673, '2022-04-19', 9568, 70884, 4725, 53937, '1.0000', '67.9000', '67.9000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74674, '2022-04-19', 1771, 70885, 4726, 51319, '1.0000', '5.7805', '5.7805', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74675, '2022-04-19', 8826, 70886, 4726, 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 (74676, '2022-04-19', 1425, 70887, 4726, NULL, '1.0000', '5.1721', '5.1721', '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 (74677, '2022-04-19', 9750, 70888, 4726, NULL, '1.0000', '3.3000', '3.3000', '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 (74678, '2022-04-19', 9557, 70889, 4726, 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 (74679, '2022-04-19', 2315, 70890, 4726, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '34.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74680, '2022-04-19', 2242, 70891, 4726, 48481, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74681, '2022-04-19', 1687, 70892, 4726, 52178, '1.0000', '12.6576', '12.6576', '22.5000', '22.5000', '6.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74682, '2022-04-19', 9808, 70893, 4726, 51699, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74683, '2022-04-19', 1618, 70894, 4726, 50247, '1.0000', '-51.1545', '-51.1545', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74684, '2022-04-19', 7406, 70895, 4726, NULL, '1.0000', '2.3750', '2.3750', '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 (74685, '2022-04-19', 2916, 70896, 4726, NULL, '1.0000', '8.2115', '8.2115', '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 (74686, '2022-04-19', 1665, 70897, 4726, 51312, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74687, '2022-04-19', 9482, 70898, 4726, NULL, '2.0000', '0.5000', '0.5000', '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 (74688, '2022-04-19', 7881, 70899, 4726, NULL, '1.0000', '32.7700', '32.7700', '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 (74689, '2022-04-19', 8187, 70900, 4726, NULL, '3.0000', '14.3900', '14.3900', '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 (74690, '2022-04-19', 9864, 70901, 4726, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74691, '2022-04-19', 2275, 70902, 4726, 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 (74692, '2022-04-19', 9695, 70903, 4726, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '32.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74693, '2022-04-19', 9832, 70904, 4726, 54074, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74694, '2022-04-19', 7635, 70905, 4726, NULL, '1.0000', '6.6300', '6.6300', '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 (74695, '2022-04-19', 2109, 70906, 4726, 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 (74696, '2022-04-19', 2821, 70907, 4727, 50896, '1.0000', '3.4420', '3.4420', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74697, '2022-04-19', 1689, 70908, 4727, 52229, '1.0000', '13.5142', '13.5142', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74698, '2022-04-19', 9747, 70909, 4727, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74699, '2022-04-19', 7933, 70910, 4727, NULL, '1.0000', '0.4400', '0.4400', '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 (74700, '2022-04-19', 7379, 70911, 4727, NULL, '1.0000', '7.8000', '7.8000', '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 (74701, '2022-04-19', 1863, 70912, 4727, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74702, '2022-04-19', 8940, 70913, 4727, NULL, '6.0000', '4.9900', '4.9900', '11.0000', '11.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 (74703, '2022-04-19', 2149, 70914, 4727, NULL, '1.0000', '14.0000', '14.0000', '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 (74704, '2022-04-19', 1854, 70915, 4727, 53887, '1.0000', '2.0694', '2.0694', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74705, '2022-04-19', 2327, 70916, 4727, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74706, '2022-04-19', 2821, 70917, 4727, 50896, '1.0000', '3.4420', '3.4420', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74707, '2022-04-19', 1812, 70918, 4727, 53691, '1.0000', '8.0465', '8.0465', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74708, '2022-04-19', 1432, 70919, 4727, 53865, '1.0000', '9.3279', '9.3279', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74709, '2022-04-19', 2147, 70920, 4727, 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 (74710, '2022-04-19', 3057, 70921, 4727, 49066, '3.0000', '3.2700', '3.2700', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74711, '2022-04-19', 9743, 70922, 4727, 52240, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74712, '2022-04-19', 2858, 70923, 4727, 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 (74713, '2022-04-19', 2059, 70924, 4727, 44507, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74714, '2022-04-19', 7736, 70925, 4727, NULL, '1.0000', '13.2000', '13.2000', '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 (74715, '2022-04-19', 7357, 70926, 4727, NULL, '1.0000', '12.2000', '12.2000', '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 (74716, '2022-04-19', 1667, 70927, 4727, 53264, '1.0000', '32.0007', '32.0007', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74717, '2022-04-19', 2262, 70928, 4727, 52097, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74718, '2022-04-19', 7780, 70929, 4728, NULL, '1.0000', '-14.2450', '-14.2450', '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 (74719, '2022-04-19', 7704, 70930, 4728, NULL, '10.0000', '-1.5625', '-1.5625', '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 (74720, '2022-04-19', 9740, 70931, 4728, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74721, '2022-04-19', 8666, 70932, 4728, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74722, '2022-04-19', 7359, 70933, 4728, NULL, '1.0000', '7.5813', '7.5813', '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 (74723, '2022-04-19', 7523, 70934, 4728, NULL, '1.0000', '9.7000', '9.7000', '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 (74724, '2022-04-19', 7514, 70935, 4728, NULL, '1.0000', '1417.7133', '1417.7133', '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 (74725, '2022-04-19', 7524, 70936, 4728, NULL, '1.0000', '6.3550', '6.3550', '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 (74726, '2022-04-19', 7736, 70937, 4728, NULL, '1.0000', '62.9504', '62.9504', '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 (74727, '2022-04-19', 2287, 70938, 4728, NULL, '4.0000', '2.3000', '2.3000', '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 (74728, '2022-04-19', 7652, 70939, 4728, NULL, '15.0000', '343.2872', '343.2872', '1.3000', '1.3000', '-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 (74729, '2022-04-19', 7588, 70940, 4728, NULL, '1.0000', '6.2420', '6.2420', '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 (74730, '2022-04-19', 7411, 70941, 4729, NULL, '3.0000', '1.3013', '1.3013', '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 (74731, '2022-04-19', 2275, 70942, 4729, 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 (74732, '2022-04-19', 7917, 70943, 4729, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74733, '2022-04-20', 9578, 70944, 4730, 53955, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74734, '2022-04-20', 9750, 70945, 4730, NULL, '1.0000', '3.3000', '3.3000', '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 (74735, '2022-04-20', 2937, 70946, 4730, 51655, '1.0000', '5.5731', '5.5731', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74736, '2022-04-20', 2643, 70947, 4730, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '57.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74737, '2022-04-20', 1837, 70948, 4730, NULL, '1.0000', '2.5335', '2.5335', '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 (74738, '2022-04-20', 1432, 70949, 4730, 48153, '1.0000', '9.7698', '9.7698', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74739, '2022-04-20', 7527, 70950, 4730, NULL, '1.0000', '0.8900', '0.8900', '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 (74740, '2022-04-20', 2506, 70951, 4730, NULL, '1.0000', '4.2640', '4.2640', '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 (74741, '2022-04-20', 2315, 70952, 4730, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '32.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74742, '2022-04-20', 2109, 70953, 4730, 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 (74743, '2022-04-20', 2237, 70954, 4730, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74744, '2022-04-20', 7741, 70955, 4730, NULL, '1.0000', '-6.8417', '-6.8417', '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 (74745, '2022-04-20', 7544, 70956, 4730, 49872, '2.0000', '-2.5801', '-2.5801', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74746, '2022-04-20', 2366, 70957, 4730, NULL, '4.0000', '-24.7743', '-24.7743', '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 (74747, '2022-04-20', 9695, 70958, 4730, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '31.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74748, '2022-04-20', 1867, 70959, 4730, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74749, '2022-04-20', 1674, 70960, 4730, NULL, '1.0000', '11.2958', '11.2958', '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 (74750, '2022-04-20', 2105, 70961, 4730, 52224, '1.0000', '2.4500', '2.4500', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74751, '2022-04-20', 2237, 70962, 4730, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74752, '2022-04-20', 9831, 70963, 4730, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '69.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74753, '2022-04-20', 2506, 70964, 4730, NULL, '1.0000', '4.2640', '4.2640', '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 (74754, '2022-04-20', 8444, 70965, 4730, 47055, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74755, '2022-04-20', 2237, 70966, 4730, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74756, '2022-04-20', 3058, 70967, 4730, NULL, '1.0000', '2.3000', '2.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 (74757, '2022-04-20', 9204, 70968, 4730, NULL, '2.0000', '14.1514', '14.1514', '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 (74758, '2022-04-20', 1532, 70969, 4731, 52201, '6.0000', '1.4143', '1.4143', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74759, '2022-04-20', 1533, 70970, 4731, 53657, '1.0000', '3.0027', '3.0027', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74760, '2022-04-20', 1533, 70970, 4731, 48903, '6.0000', '3.0027', '3.0027', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74761, '2022-04-20', 2242, 70971, 4731, 48481, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74762, '2022-04-20', 8444, 70972, 4731, 47055, '2.0000', '1.6000', '1.6000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74763, '2022-04-20', 9204, 70973, 4731, NULL, '2.0000', '14.1514', '14.1514', '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 (74764, '2022-04-20', 2443, 70974, 4731, 51935, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74765, '2022-04-20', 7713, 70975, 4731, 48657, '2.0000', '24.6545', '24.6545', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74766, '2022-04-20', 2109, 70976, 4731, 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 (74767, '2022-04-20', 7802, 70977, 4731, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74768, '2022-04-20', 2242, 70978, 4731, 48481, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74769, '2022-04-20', 1935, 70979, 4732, 5586, '-64.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 (74770, '2022-04-20', 1935, 70979, 4732, NULL, '65.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74771, '2022-04-20', 9734, 70980, 4732, NULL, '2.0000', '0.3200', '0.3200', '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 (74772, '2022-04-20', 7593, 70981, 4732, NULL, '1.0000', '2.4500', '2.4500', '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 (74773, '2022-04-20', 7674, 70982, 4732, 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 (74774, '2022-04-20', 7444, 70983, 4732, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74775, '2022-04-20', 7385, 70984, 4732, NULL, '2.0000', '2.0000', '2.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 (74776, '2022-04-20', 8359, 70985, 4732, 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 (74777, '2022-04-20', 7412, 70986, 4732, NULL, '1.0000', '1.5200', '1.5200', '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 (74778, '2022-04-20', 7411, 70987, 4732, NULL, '2.0000', '1.3500', '1.3500', '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 (74779, '2022-04-20', 1590, 70988, 4732, 22260, '1.0000', '1.7100', '1.7100', '3.0000', '3.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 (74780, '2022-04-20', 7335, 70989, 4732, NULL, '1.0000', '14.5000', '14.5000', '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 (74781, '2022-04-20', 8539, 70990, 4732, NULL, '2.0000', '31.8000', '31.8000', '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 (74782, '2022-04-20', 8596, 70991, 4732, 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 (74783, '2022-04-20', 7606, 70992, 4732, NULL, '1.0000', '4.8600', '4.8600', '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 (74784, '2022-04-20', 9731, 70993, 4732, 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 (74785, '2022-04-20', 1631, 70994, 4732, 3205, '-1.0000', '37.6948', '37.6948', '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 (74786, '2022-04-20', 1631, 70994, 4732, NULL, '3.0000', '37.6948', '37.6948', '18.0000', '18.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 (74787, '2022-04-20', 2289, 70995, 4732, 2949, '-112.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 (74788, '2022-04-20', 2289, 70995, 4732, NULL, '116.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-116.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74789, '2022-04-20', 1884, 70996, 4732, 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 (74790, '2022-04-20', 9868, 70997, 4732, 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 (74791, '2022-04-20', 9740, 70998, 4732, NULL, '1.0000', '0.6600', '0.6600', '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 (74792, '2022-04-20', 1935, 70999, 4732, 5586, '-64.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 (74793, '2022-04-20', 1935, 70999, 4732, NULL, '65.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74794, '2022-04-20', 2315, 71000, 4732, 2735, '-267.0000', '0.3300', '0.3300', '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 (74795, '2022-04-20', 2315, 71000, 4732, NULL, '268.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-268.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74796, '2022-04-20', 9734, 71001, 4732, NULL, '1.0000', '0.3200', '0.3200', '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 (74797, '2022-04-20', 8965, 71002, 4733, NULL, '1.0000', '7.2000', '7.2000', '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 (74798, '2022-04-20', 2297, 71003, 4733, 2956, '-5.0000', '6.6000', '6.6000', '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 (74799, '2022-04-20', 2297, 71003, 4733, NULL, '6.0000', '6.6000', '6.6000', '11.0000', '11.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 (74800, '2022-04-20', 1493, 71004, 4733, 9747, '-20.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 (74801, '2022-04-20', 1493, 71004, 4733, NULL, '21.0000', '1.5425', '1.5425', '3.0000', '3.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74802, '2022-04-20', 7967, 71005, 4733, NULL, '1.0000', '7.0000', '7.0000', '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 (74803, '2022-04-20', 2821, 71006, 4733, 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 (74804, '2022-04-20', 2893, 71007, 4733, 18242, '-5.0000', '6.0000', '6.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 (74805, '2022-04-20', 2893, 71007, 4733, NULL, '7.0000', '6.0000', '6.0000', '8.5000', '8.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 (74806, '2022-04-20', 2892, 71008, 4733, 18050, '-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 (74807, '2022-04-20', 2892, 71008, 4733, NULL, '2.0000', '4.0000', '4.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 (74808, '2022-04-20', 2821, 71009, 4734, 50896, '1.0000', '3.4420', '3.4420', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74809, '2022-04-20', 1602, 71010, 4734, 52268, '1.0000', '6.9476', '6.9476', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74810, '2022-04-20', 1337, 71011, 4734, 44622, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74811, '2022-04-20', 2298, 71012, 4734, 49160, '1.0000', '6.3600', '6.3600', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74812, '2022-04-20', 1339, 71013, 4734, 44611, '1.0000', '1.7611', '1.7611', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74813, '2022-04-20', 9821, 71014, 4734, 50873, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74814, '2022-04-20', 9870, 71015, 4735, NULL, '1.0000', '5.1000', '5.1000', '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 (74815, '2022-04-20', 9819, 71016, 4735, 51693, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74816, '2022-04-20', 9463, 71017, 4735, NULL, '2.0000', '18.9000', '18.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 (74817, '2022-04-20', 1314, 71018, 4735, 53944, '1.0000', '1.4423', '1.4423', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74818, '2022-04-20', 9831, 71019, 4735, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '68.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74819, '2022-04-20', 1590, 71020, 4735, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74820, '2022-04-20', 1528, 71021, 4735, 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 (74821, '2022-04-20', 2237, 71022, 4735, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74822, '2022-04-20', 2025, 71023, 4735, 53421, '1.0000', '4.6606', '4.6606', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74823, '2022-04-20', 9840, 71024, 4735, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74824, '2022-04-20', 9482, 71025, 4735, 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 (74825, '2022-04-20', 1912, 71026, 4735, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74826, '2022-04-20', 2657, 71027, 4735, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74827, '2022-04-20', 2633, 71028, 4735, 52195, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74828, '2022-04-20', 9482, 71029, 4735, 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 (74829, '2022-04-20', 1863, 71030, 4735, 52219, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74830, '2022-04-20', 1307, 71031, 4735, NULL, '1.0000', '-0.0521', '-0.0521', '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 (74831, '2022-04-20', 2283, 71032, 4735, 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 (74832, '2022-04-20', 1434, 71033, 4735, 48980, '1.0000', '17.4630', '17.4630', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74833, '2022-04-20', 1434, 71033, 4735, 34945, '1.0000', '17.4630', '17.4630', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74834, '2022-04-20', 1839, 71034, 4735, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (74835, '2022-04-20', 1863, 71035, 4735, 52219, '1.0000', '1.3923', '1.3923', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74836, '2022-04-20', 9794, 71036, 4735, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74837, '2022-04-20', 1665, 71037, 4735, 51312, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74838, '2022-04-20', 9750, 71038, 4735, NULL, '1.0000', '3.3000', '3.3000', '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 (74839, '2022-04-20', 1608, 71039, 4735, 53660, '1.0000', '4.1377', '4.1377', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74840, '2022-04-20', 2964, 71040, 4735, NULL, '1.0000', '8.5898', '8.5898', '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 (74841, '2022-04-20', 2906, 71041, 4736, NULL, '1.0000', '2.6000', '2.6000', '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 (74842, '2022-04-20', 2237, 71042, 4736, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74843, '2022-04-20', 1757, 71043, 4736, 53644, '1.0000', '7.5869', '7.5869', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74844, '2022-04-20', 1590, 71044, 4736, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74845, '2022-04-20', 2416, 71045, 4736, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74846, '2022-04-20', 2095, 71046, 4736, NULL, '2.0000', '1.5000', '1.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 (74847, '2022-04-20', 8969, 71047, 4736, 49342, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74848, '2022-04-20', 2416, 71048, 4736, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74849, '2022-04-20', 2103, 71049, 4736, NULL, '2.0000', '0.4500', '0.4500', '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 (74850, '2022-04-20', 1760, 71050, 4737, 46907, '2.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74851, '2022-04-20', 8677, 71051, 4737, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74852, '2022-04-20', 7412, 71052, 4737, NULL, '1.0000', '1.5200', '1.5200', '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 (74853, '2022-04-20', 9272, 71053, 4737, NULL, '1.0000', '3.1000', '3.1000', '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 (74854, '2022-04-20', 7331, 71054, 4737, 54142, '1.0000', '11.4926', '11.4926', '77.0000', '77.0000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74855, '2022-04-20', 8030, 71055, 4737, NULL, '3.0000', '14.7600', '14.7600', '19.5000', '19.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 (74856, '2022-04-20', 7796, 71056, 4737, NULL, '1.0000', '13.5000', '13.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 (74857, '2022-04-20', 8677, 71057, 4737, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74858, '2022-04-20', 2104, 71058, 4737, NULL, '4.0000', '0.2000', '0.2000', '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 (74859, '2022-04-20', 7881, 71059, 4737, NULL, '1.0000', '-104.2377', '-104.2377', '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 (74860, '2022-04-20', 7704, 71060, 4737, NULL, '2.0000', '-1.5625', '-1.5625', '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 (74861, '2022-04-20', 8679, 71061, 4737, NULL, '1.0000', '28.0000', '28.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 (74862, '2022-04-20', 9092, 71062, 4737, 52527, '4.0000', '0.3175', '0.3175', '0.5000', '0.5000', '153.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74863, '2022-04-20', 8161, 71063, 4737, NULL, '2.0000', '19.6302', '19.6302', '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 (74864, '2022-04-20', 8810, 71064, 4737, 54089, '1.0000', '-47.9658', '-47.9658', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74865, '2022-04-20', 9734, 71065, 4737, 54140, '8.0000', '0.3200', '0.3200', '0.5000', '0.5000', '72.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74866, '2022-04-20', 9729, 71066, 4737, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74867, '2022-04-20', 7509, 71067, 4737, 53507, '1.0000', '17.2236', '17.2236', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74868, '2022-04-20', 7664, 71068, 4737, 53996, '1.0000', '9.7134', '9.7134', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74869, '2022-04-20', 7444, 71069, 4737, NULL, '1.0000', '0.7739', '0.7739', '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 (74870, '2022-04-20', 7787, 71070, 4737, NULL, '1.0000', '11.7735', '11.7735', '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 (74871, '2022-04-20', 7673, 71071, 4737, NULL, '1.0000', '24.2449', '24.2449', '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 (74872, '2022-04-20', 7552, 71072, 4737, 52744, '1.0000', '4.7069', '4.7069', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74873, '2022-04-20', 7518, 71073, 4737, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74874, '2022-04-20', 9817, 71074, 4737, 53902, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74875, '2022-04-20', 9541, 71075, 4737, 46243, '1.0000', '42.0000', '42.0000', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74876, '2022-04-20', 1542, 71076, 4737, NULL, '1.0000', '115.7329', '115.7329', '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 (74877, '2022-04-20', 9732, 71077, 4737, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74878, '2022-04-20', 9740, 71078, 4737, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74879, '2022-04-20', 7412, 71079, 4737, NULL, '1.0000', '1.5200', '1.5200', '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 (74880, '2022-04-20', 7608, 71080, 4737, NULL, '1.0000', '9.4184', '9.4184', '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 (74881, '2022-04-20', 8677, 71081, 4737, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74882, '2022-04-20', 1501, 71082, 4737, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74883, '2022-04-20', 2069, 71083, 4737, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74884, '2022-04-20', 7877, 71084, 4737, 54091, '1.0000', '24.8229', '24.8229', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74885, '2022-04-20', 8761, 71085, 4737, 43941, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74886, '2022-04-20', 1501, 71086, 4737, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74887, '2022-04-20', 7952, 71087, 4737, 52751, '1.0000', '25.4547', '25.4547', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74888, '2022-04-20', 2699, 71088, 4737, 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 (74889, '2022-04-20', 2026, 71089, 4737, NULL, '1.0000', '12.0000', '12.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 (74890, '2022-04-20', 9817, 71090, 4737, 53902, '2.0000', '3.9000', '3.9000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74891, '2022-04-20', 9637, 71091, 4737, 43544, '1.0000', '36.5000', '36.5000', '48.5000', '48.5000', '1.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74892, '2022-04-20', 8444, 71092, 4737, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74893, '2022-04-20', 9272, 71093, 4737, NULL, '1.0000', '3.1000', '3.1000', '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 (74894, '2022-04-20', 7907, 71094, 4737, NULL, '5.0000', '12.0000', '12.0000', '1.5000', '1.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 (74895, '2022-04-20', 2284, 71095, 4737, 54126, '2.0000', '1.3870', '1.3870', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74896, '2022-04-20', 2287, 71096, 4737, NULL, '4.0000', '2.3000', '2.3000', '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 (74897, '2022-04-20', 8581, 71097, 4737, 42776, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74898, '2022-04-20', 7428, 71098, 4737, 50471, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '76.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74899, '2022-04-20', 8359, 71099, 4737, 53988, '1.0000', '604.4699', '604.4699', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74900, '2022-04-20', 1665, 71100, 4738, 3235, '-99.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 (74901, '2022-04-20', 1665, 71100, 4738, NULL, '100.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-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 (74902, '2022-04-20', 1666, 71101, 4738, 3236, '-24.0000', '2.7100', '2.7100', '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 (74903, '2022-04-20', 1666, 71101, 4738, NULL, '26.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-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 (74904, '2022-04-20', 2456, 71102, 4738, NULL, '1.0000', '18.5000', '18.5000', '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 (74905, '2022-04-20', 2919, 71103, 4738, NULL, '3.0000', '2.9000', '2.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 (74906, '2022-04-20', 2169, 71104, 4738, 10737, '-112.0000', '3.8397', '3.8397', '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 (74907, '2022-04-20', 2169, 71104, 4738, NULL, '113.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74908, '2022-04-20', 2633, 71105, 4738, 17589, '-7.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 (74909, '2022-04-20', 2633, 71105, 4738, NULL, '8.0000', '3.5000', '3.5000', '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 (74910, '2022-04-20', 1812, 71106, 4738, 8224, '-84.0000', '7.8900', '7.8900', '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 (74911, '2022-04-20', 1812, 71106, 4738, NULL, '85.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74912, '2022-04-20', 2360, 71107, 4738, 3862, '-76.0000', '0.5200', '0.5200', '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 (74913, '2022-04-20', 2360, 71107, 4738, NULL, '77.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74914, '2022-04-20', 2169, 71108, 4738, 10737, '-112.0000', '3.8397', '3.8397', '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 (74915, '2022-04-20', 2169, 71108, 4738, NULL, '113.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74916, '2022-04-20', 1557, 71109, 4738, 1628, '-10.0000', '7.9500', '7.9500', '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 (74917, '2022-04-20', 1557, 71109, 4738, NULL, '11.0000', '7.9500', '7.9500', '11.0000', '11.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 (74918, '2022-04-20', 7411, 71110, 4738, NULL, '1.0000', '1.3500', '1.3500', '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 (74919, '2022-04-20', 2403, 71111, 4738, 4355, '-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 (74920, '2022-04-20', 2403, 71111, 4738, NULL, '2.0000', '17.8000', '17.8000', '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 (74921, '2022-04-20', 7587, 71112, 4738, NULL, '1.0000', '6.4400', '6.4400', '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 (74922, '2022-04-20', 3017, 71113, 4738, NULL, '1.0000', '3.9000', '3.9000', '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 (74923, '2022-04-20', 1825, 71114, 4738, 11265, '-10.0000', '4.8000', '4.8000', '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 (74924, '2022-04-20', 1825, 71114, 4738, NULL, '11.0000', '4.8000', '4.8000', '7.5000', '7.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 (74925, '2022-04-20', 1618, 71115, 4738, 8737, '-9.0000', '11.8200', '11.8200', '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 (74926, '2022-04-20', 1618, 71115, 4738, NULL, '10.0000', '11.8200', '11.8200', '16.0000', '16.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 (74927, '2022-04-20', 1432, 71116, 4738, 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 (74928, '2022-04-20', 1816, 71117, 4738, 22478, '-3.0000', '18.2300', '18.2300', '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 (74929, '2022-04-20', 1816, 71117, 4738, NULL, '4.0000', '18.2300', '18.2300', '29.0000', '29.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 (74930, '2022-04-20', 2825, 71118, 4738, NULL, '1.0000', '12.0000', '12.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 (74931, '2022-04-20', 2858, 71119, 4738, 17772, '-65.0000', '1.0000', '1.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 (74932, '2022-04-20', 2858, 71119, 4738, NULL, '66.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74933, '2022-04-20', 1499, 71120, 4738, NULL, '3.0000', '0.4100', '0.4100', '0.6000', '0.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 (74934, '2022-04-20', 1386, 71121, 4738, 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 (74935, '2022-04-20', 9634, 71122, 4738, NULL, '3.0000', '4.8000', '4.8000', '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 (74936, '2022-04-20', 7411, 71123, 4738, NULL, '1.0000', '1.3500', '1.3500', '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 (74937, '2022-04-20', 2964, 71124, 4738, 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 (74938, '2022-04-20', 2135, 71125, 4738, 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 (74939, '2022-04-20', 9734, 71126, 4738, NULL, '2.0000', '0.3200', '0.3200', '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 (74940, '2022-04-20', 1501, 71127, 4738, NULL, '1.0000', '2.0500', '2.0500', '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 (74941, '2022-04-20', 8011, 71128, 4738, 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 (74942, '2022-04-20', 1825, 71129, 4738, 11265, '-10.0000', '4.8000', '4.8000', '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 (74943, '2022-04-20', 1825, 71129, 4738, NULL, '11.0000', '4.8000', '4.8000', '7.5000', '7.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 (74944, '2022-04-20', 2315, 71130, 4739, 2735, '-268.0000', '0.3300', '0.3300', '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 (74945, '2022-04-20', 2315, 71130, 4739, NULL, '270.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-270.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74946, '2022-04-20', 1892, 71131, 4739, 5431, '-10.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 (74947, '2022-04-20', 1892, 71131, 4739, NULL, '12.0000', '90.0000', '90.0000', '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 (74948, '2022-04-20', 1342, 71132, 4739, 11264, '-12.0000', '6.8074', '6.8074', '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 (74949, '2022-04-20', 1342, 71132, 4739, NULL, '13.0000', '6.8074', '6.8074', '8.0000', '8.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 (74950, '2022-04-20', 2289, 71133, 4739, 2949, '-116.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 (74951, '2022-04-20', 2289, 71133, 4739, NULL, '120.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74952, '2022-04-20', 7411, 71134, 4739, NULL, '2.0000', '1.3500', '1.3500', '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 (74953, '2022-04-20', 8666, 71135, 4739, NULL, '2.0000', '0.4600', '0.4600', '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 (74954, '2022-04-20', 2293, 71136, 4740, NULL, '3.0000', '10.2680', '10.2680', '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 (74955, '2022-04-20', 1665, 71137, 4740, 51312, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74956, '2022-04-20', 9482, 71138, 4740, 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 (74957, '2022-04-20', 9734, 71139, 4740, NULL, '2.0000', '0.3200', '0.3200', '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 (74958, '2022-04-20', 2315, 71140, 4740, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '30.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74959, '2022-04-20', 2948, 71141, 4740, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74960, '2022-04-20', 1837, 71142, 4740, NULL, '1.0000', '2.5335', '2.5335', '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 (74961, '2022-04-20', 9831, 71143, 4740, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '67.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74962, '2022-04-20', 2916, 71144, 4740, NULL, '1.0000', '8.2115', '8.2115', '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 (74963, '2022-04-20', 8878, 71145, 4740, NULL, '1.0000', '6.6700', '6.6700', '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 (74964, '2022-04-20', 9272, 71146, 4741, NULL, '1.0000', '3.1000', '3.1000', '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 (74965, '2022-04-20', 8677, 71147, 4741, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74966, '2022-04-20', 8254, 71148, 4741, 51098, '1.0000', '25.8981', '25.8981', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74967, '2022-04-20', 9785, 71149, 4741, 53927, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74968, '2022-04-20', 9747, 71150, 4741, 50667, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74969, '2022-04-20', 8187, 71151, 4741, NULL, '3.0000', '14.3900', '14.3900', '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 (74970, '2022-04-20', 8927, 71152, 4741, NULL, '20.0000', '36.0000', '36.0000', '3.5000', '3.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 (74971, '2022-04-20', 8638, 71153, 4741, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74972, '2022-04-20', 7630, 71154, 4741, 53942, '1.0000', '5.6211', '5.6211', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74973, '2022-04-20', 9862, 71155, 4741, 52457, '1.0000', '16.5000', '16.5000', '22.0000', '22.0000', '6.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74974, '2022-04-20', 7411, 71156, 4741, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74975, '2022-04-20', 8810, 71157, 4741, 54089, '1.0000', '-47.9658', '-47.9658', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74976, '2022-04-20', 7709, 71158, 4741, NULL, '2.0000', '154.5165', '154.5165', '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 (74977, '2022-04-20', 7412, 71159, 4741, NULL, '2.0000', '1.5200', '1.5200', '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 (74978, '2022-04-20', 7664, 71160, 4741, 53996, '1.0000', '9.7134', '9.7134', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74979, '2022-04-20', 2289, 71161, 4741, NULL, '4.0000', '2.5688', '2.5688', '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 (74980, '2022-04-20', 1580, 71162, 4742, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74981, '2022-04-20', 2293, 71163, 4742, NULL, '3.0000', '10.2680', '10.2680', '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 (74982, '2022-04-20', 2025, 71164, 4743, 53421, '1.0000', '4.6606', '4.6606', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74983, '2022-04-21', 1872, 71165, 4744, 34942, '1.0000', '8.9169', '8.9169', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74984, '2022-04-21', 1837, 71166, 4744, NULL, '2.0000', '2.5335', '2.5335', '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 (74985, '2022-04-21', 1839, 71167, 4744, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (74986, '2022-04-21', 1837, 71168, 4744, NULL, '2.0000', '2.5335', '2.5335', '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 (74987, '2022-04-21', 9732, 71169, 4744, 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 (74988, '2022-04-21', 9145, 71170, 4744, NULL, '1.0000', '9.0000', '9.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 (74989, '2022-04-21', 9151, 71171, 4744, NULL, '1.0000', '9.7000', '9.7000', '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 (74990, '2022-04-21', 7609, 71172, 4744, NULL, '1.0000', '4.3300', '4.3300', '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 (74991, '2022-04-21', 7459, 71173, 4745, NULL, '6.0000', '2.3500', '2.3500', '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 (74992, '2022-04-21', 8254, 71174, 4745, NULL, '1.0000', '25.9000', '25.9000', '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 (74993, '2022-04-21', 9329, 71175, 4745, NULL, '1.0000', '6.7000', '6.7000', '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 (74994, '2022-04-21', 2062, 71176, 4745, 2165, '-1.0000', '5.7540', '5.7540', '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 (74995, '2022-04-21', 2062, 71176, 4745, NULL, '2.0000', '5.7540', '5.7540', '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 (74996, '2022-04-21', 9716, 71177, 4745, NULL, '1.0000', '4.4000', '4.4000', '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 (74997, '2022-04-21', 8659, 71178, 4745, NULL, '1.0000', '3.8500', '3.8500', '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 (74998, '2022-04-21', 7765, 71179, 4745, NULL, '3.0000', '16.0000', '16.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 (74999, '2022-04-21', 9715, 71180, 4745, NULL, '1.0000', '9.4000', '9.4000', '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 (75000, '2022-04-21', 1501, 71181, 4745, NULL, '1.0000', '2.0500', '2.0500', '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 (75001, '2022-04-21', 7509, 71182, 4745, 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 (75002, '2022-04-21', 8984, 71183, 4745, NULL, '1.0000', '0.8700', '0.8700', '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 (75003, '2022-04-21', 7460, 71184, 4745, NULL, '2.0000', '2.5000', '2.5000', '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 (75004, '2022-04-21', 7557, 71185, 4745, NULL, '10.0000', '0.5000', '0.5000', '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 (75005, '2022-04-21', 1340, 71186, 4745, 13005, '-3.0000', '2.7025', '2.7025', '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 (75006, '2022-04-21', 1340, 71186, 4745, NULL, '4.0000', '2.7025', '2.7025', '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 (75007, '2022-04-21', 7892, 71187, 4745, NULL, '1.0000', '4.2000', '4.2000', '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 (75008, '2022-04-21', 8470, 71188, 4745, NULL, '1.0000', '19.5000', '19.5000', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75009, '2022-04-21', 8949, 71189, 4745, 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 (75010, '2022-04-21', 8079, 71190, 4746, NULL, '1.0000', '13.6100', '13.6100', '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 (75011, '2022-04-21', 1837, 71191, 4746, NULL, '3.0000', '2.5335', '2.5335', '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 (75012, '2022-04-21', 1787, 71192, 4746, NULL, '1.0000', '0.5000', '0.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 (75013, '2022-04-21', 1837, 71193, 4746, NULL, '1.0000', '2.5335', '2.5335', '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 (75014, '2022-04-21', 8980, 71194, 4746, NULL, '1.0000', '9.5000', '9.5000', '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 (75015, '2022-04-21', 7585, 71195, 4746, NULL, '1.0000', '3.9600', '3.9600', '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 (75016, '2022-04-21', 7411, 71196, 4746, NULL, '1.0000', '1.3013', '1.3013', '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 (75017, '2022-04-21', 8318, 71197, 4746, NULL, '1.0000', '5.5000', '5.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 (75018, '2022-04-21', 7411, 71198, 4746, NULL, '1.0000', '1.3013', '1.3013', '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 (75019, '2022-04-21', 2888, 71199, 4746, 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 (75020, '2022-04-21', 2379, 71200, 4746, NULL, '1.0000', '0.2954', '0.2954', '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 (75021, '2022-04-21', 2020, 71201, 4746, NULL, '1.0000', '59.0820', '59.0820', '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 (75022, '2022-04-21', 2131, 71202, 4746, 53418, '1.0000', '7.5500', '7.5500', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75023, '2022-04-21', 7741, 71203, 4746, NULL, '2.0000', '-6.8417', '-6.8417', '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 (75024, '2022-04-21', 9831, 71204, 4746, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '66.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75025, '2022-04-21', 9590, 71205, 4746, NULL, '1.0000', '-6.6667', '-6.6667', '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 (75026, '2022-04-21', 1409, 71206, 4746, 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 (75027, '2022-04-21', 9829, 71207, 4746, NULL, '1.0000', '11.0000', '11.0000', '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 (75028, '2022-04-21', 2315, 71208, 4746, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '28.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75029, '2022-04-21', 1702, 71209, 4746, NULL, '1.0000', '14.6666', '14.6666', '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 (75030, '2022-04-21', 7770, 71210, 4746, NULL, '1.0000', '33.0000', '33.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 (75031, '2022-04-21', 2511, 71211, 4746, NULL, '1.0000', '8.8000', '8.8000', '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 (75032, '2022-04-21', 1851, 71212, 4746, 54180, '1.0000', '12.6300', '12.6300', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75033, '2022-04-21', 7472, 71213, 4746, NULL, '1.0000', '-0.2237', '-0.2237', '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 (75034, '2022-04-21', 1946, 71214, 4746, NULL, '1.0000', '-1.2595', '-1.2595', '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 (75035, '2022-04-21', 9204, 71215, 4746, NULL, '1.0000', '14.1514', '14.1514', '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 (75036, '2022-04-21', 1307, 71216, 4746, NULL, '1.0000', '-0.0521', '-0.0521', '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 (75037, '2022-04-21', 8622, 71217, 4746, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75038, '2022-04-21', 8155, 71218, 4746, NULL, '1.0000', '65.0000', '65.0000', '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 (75039, '2022-04-21', 8065, 71219, 4746, NULL, '1.0000', '32.0000', '32.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 (75040, '2022-04-21', 1785, 71220, 4746, 53210, '1.0000', '16.0121', '16.0121', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75041, '2022-04-21', 1689, 71221, 4746, 53659, '1.0000', '16.1442', '16.1442', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75042, '2022-04-21', 2236, 71222, 4746, NULL, '1.0000', '-2.3919', '-2.3919', '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 (75043, '2022-04-21', 2279, 71223, 4746, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (75044, '2022-04-21', 1867, 71224, 4746, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75045, '2022-04-21', 1610, 71225, 4747, 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 (75046, '2022-04-21', 1310, 71226, 4748, 52211, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75047, '2022-04-21', 9762, 71227, 4748, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75048, '2022-04-21', 7353, 71228, 4748, NULL, '1.0000', '0.1900', '0.1900', '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 (75049, '2022-04-21', 2315, 71229, 4748, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '27.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75050, '2022-04-21', 1780, 71230, 4748, 30654, '1.0000', '95.5759', '95.5759', '51.0000', '51.0000', '0.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75051, '2022-04-21', 7411, 71231, 4748, NULL, '1.0000', '1.3013', '1.3013', '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 (75052, '2022-04-21', 1425, 71232, 4748, NULL, '1.0000', '5.1721', '5.1721', '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 (75053, '2022-04-21', 2573, 71233, 4748, NULL, '1.0000', '7.2200', '7.2200', '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 (75054, '2022-04-21', 1689, 71234, 4748, NULL, '1.0000', '16.1442', '16.1442', '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 (75055, '2022-04-21', 9750, 71235, 4748, NULL, '1.0000', '3.3000', '3.3000', '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 (75056, '2022-04-21', 2244, 71236, 4748, 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 (75057, '2022-04-21', 1501, 71237, 4748, NULL, '1.0000', '2.1784', '2.1784', '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 (75058, '2022-04-21', 8984, 71238, 4748, NULL, '1.0000', '-100.8495', '-100.8495', '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 (75059, '2022-04-21', 8771, 71239, 4748, 51018, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75060, '2022-04-21', 9831, 71240, 4748, 54072, '2.0000', '1.6779', '1.6779', '3.0000', '3.0000', '64.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75061, '2022-04-21', 2259, 71241, 4748, 53206, '1.0000', '22.7428', '22.7428', '31.0000', '31.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75062, '2022-04-21', 7917, 71242, 4748, NULL, '4.0000', '5.0000', '5.0000', '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 (75063, '2022-04-21', 7672, 71243, 4748, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75064, '2022-04-21', 9105, 71244, 4748, NULL, '1.0000', '-0.9200', '-0.9200', '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 (75065, '2022-04-21', 8208, 71245, 4748, NULL, '2.0000', '33.0000', '33.0000', '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 (75066, '2022-04-21', 2275, 71246, 4748, 54184, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75067, '2022-04-21', 2251, 71247, 4748, NULL, '1.0000', '11.3731', '11.3731', '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 (75068, '2022-04-21', 2640, 71248, 4748, NULL, '1.0000', '7.0400', '7.0400', '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 (75069, '2022-04-21', 2296, 71249, 4748, NULL, '1.0000', '14.4550', '14.4550', '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 (75070, '2022-04-21', 1501, 71250, 4748, NULL, '1.0000', '2.1784', '2.1784', '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 (75071, '2022-04-21', 9734, 71251, 4748, NULL, '4.0000', '0.3200', '0.3200', '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 (75072, '2022-04-21', 9831, 71252, 4748, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '65.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75073, '2022-04-21', 2341, 71253, 4749, NULL, '1.0000', '5.5900', '5.5900', '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 (75074, '2022-04-21', 2068, 71254, 4749, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75075, '2022-04-21', 9579, 71255, 4749, 53956, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75076, '2022-04-21', 2344, 71256, 4749, NULL, '1.0000', '17.6204', '17.6204', '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 (75077, '2022-04-21', 3058, 71257, 4749, NULL, '1.0000', '2.3000', '2.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 (75078, '2022-04-21', 9875, 71258, 4749, 53432, '1.0000', '13.0000', '13.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75079, '2022-04-21', 1590, 71259, 4749, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75080, '2022-04-21', 1757, 71260, 4749, 53644, '1.0000', '7.5869', '7.5869', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75081, '2022-04-21', 7981, 71261, 4749, NULL, '5.0000', '6.0000', '6.0000', '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 (75082, '2022-04-21', 3029, 71262, 4749, NULL, '1.0000', '-71.3510', '-71.3510', '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 (75083, '2022-04-21', 7411, 71263, 4749, NULL, '2.0000', '1.3013', '1.3013', '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 (75084, '2022-04-21', 9732, 71264, 4749, 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 (75085, '2022-04-21', 9880, 71265, 4749, NULL, '1.0000', '3.4200', '3.4200', '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 (75086, '2022-04-21', 1787, 71266, 4749, NULL, '1.0000', '0.5000', '0.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 (75087, '2022-04-21', 1856, 71267, 4749, 54173, '1.0000', '20.0009', '20.0009', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75088, '2022-04-21', 2636, 71268, 4749, 34956, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75089, '2022-04-21', 2102, 71269, 4749, 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 (75090, '2022-04-21', 1728, 71270, 4749, 19324, '2.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 (75091, '2022-04-21', 7483, 71271, 4749, 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 (75092, '2022-04-21', 1935, 71272, 4749, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75093, '2022-04-21', 1498, 71273, 4749, 52352, '2.0000', '0.4476', '0.4476', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75094, '2022-04-21', 1646, 71274, 4749, 53661, '1.0000', '5.5398', '5.5398', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75095, '2022-04-21', 9750, 71275, 4749, NULL, '2.0000', '3.3000', '3.3000', '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 (75096, '2022-04-21', 8444, 71276, 4749, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75097, '2022-04-21', 1856, 71277, 4749, 54173, '1.0000', '20.0009', '20.0009', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75098, '2022-04-21', 1501, 71278, 4749, NULL, '1.0000', '2.1784', '2.1784', '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 (75099, '2022-04-21', 7744, 71279, 4749, NULL, '1.0000', '2.5833', '2.5833', '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 (75100, '2022-04-21', 9482, 71280, 4749, 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 (75101, '2022-04-21', 8134, 71281, 4750, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75102, '2022-04-21', 7482, 71282, 4750, 53984, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75103, '2022-04-21', 8135, 71283, 4750, NULL, '1.0000', '5.8990', '5.8990', '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 (75104, '2022-04-21', 8753, 71284, 4750, 54116, '1.0000', '3.3875', '3.3875', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75105, '2022-04-21', 2241, 71285, 4750, 53999, '1.0000', '6.5556', '6.5556', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75106, '2022-04-21', 8243, 71286, 4750, NULL, '10.0000', '1.1400', '1.1400', '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 (75107, '2022-04-21', 8878, 71287, 4750, NULL, '2.0000', '40.0900', '40.0900', '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 (75108, '2022-04-21', 8304, 71288, 4750, 53905, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75109, '2022-04-21', 8000, 71289, 4750, NULL, '1.0000', '-706.5226', '-706.5226', '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 (75110, '2022-04-21', 8309, 71290, 4750, NULL, '1.0000', '14.5000', '14.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 (75111, '2022-04-21', 8677, 71291, 4750, 51791, '3.0000', '1.2300', '1.2300', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75112, '2022-04-21', 2757, 71292, 4750, NULL, '1.0000', '6.8000', '6.8000', '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 (75113, '2022-04-21', 7947, 71293, 4750, NULL, '3.0000', '14.4400', '14.4400', '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 (75114, '2022-04-21', 8963, 71294, 4750, 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 (75115, '2022-04-21', 7478, 71295, 4750, 52449, '1.0000', '33.7925', '33.7925', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75116, '2022-04-21', 7719, 71296, 4750, NULL, '1.0000', '7.0021', '7.0021', '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 (75117, '2022-04-21', 7702, 71297, 4750, NULL, '1.0000', '0.0175', '0.0175', '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 (75118, '2022-04-21', 8310, 71298, 4750, NULL, '2.0000', '22.5000', '22.5000', '14.5000', '14.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 (75119, '2022-04-21', 1841, 71299, 4750, 48007, '9.0000', '0.1792', '0.1792', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75120, '2022-04-21', 9891, 71300, 4750, 54134, '2.0000', '17.4000', '17.4000', '23.0000', '23.0000', '10.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75121, '2022-04-21', 8000, 71301, 4750, NULL, '1.0000', '-706.5226', '-706.5226', '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 (75122, '2022-04-21', 7877, 71302, 4750, NULL, '1.0000', '24.8229', '24.8229', '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 (75123, '2022-04-21', 7831, 71303, 4750, NULL, '1.0000', '22.5000', '22.5000', '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 (75124, '2022-04-21', 7509, 71304, 4750, 53507, '1.0000', '17.2236', '17.2236', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75125, '2022-04-21', 7514, 71305, 4750, NULL, '2.0000', '1417.7133', '1417.7133', '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 (75126, '2022-04-21', 7704, 71306, 4750, NULL, '2.0000', '-1.5625', '-1.5625', '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 (75127, '2022-04-21', 8918, 71307, 4750, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75128, '2022-04-21', 8965, 71308, 4750, NULL, '1.0000', '167.4649', '167.4649', '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 (75129, '2022-04-21', 9098, 71309, 4750, NULL, '1.0000', '21.1768', '21.1768', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75130, '2022-04-21', 7857, 71310, 4750, NULL, '1.0000', '16.1000', '16.1000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75131, '2022-04-21', 7346, 71311, 4750, 53781, '1.0000', '112.0000', '112.0000', '148.0000', '148.0000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75132, '2022-04-21', 2289, 71312, 4750, NULL, '4.0000', '2.5688', '2.5688', '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 (75133, '2022-04-21', 8413, 71313, 4750, 53790, '1.0000', '89.9992', '89.9992', '120.0000', '120.0000', '3.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75134, '2022-04-21', 7821, 71314, 4750, 51268, '1.0000', '7.9898', '7.9898', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75135, '2022-04-21', 8015, 71315, 4750, 46231, '4.0000', '2.6039', '2.6039', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75136, '2022-04-21', 7518, 71316, 4750, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '12.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75137, '2022-04-21', 7852, 71317, 4750, NULL, '1.0000', '-24.3262', '-24.3262', '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 (75138, '2022-04-21', 9740, 71318, 4750, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75139, '2022-04-21', 1340, 71319, 4750, 54108, '1.0000', '3.0692', '3.0692', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75140, '2022-04-21', 7803, 71320, 4750, NULL, '1.0000', '1.8200', '1.8200', '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 (75141, '2022-04-21', 7674, 71321, 4750, 52725, '2.0000', '197.1282', '197.1282', '2.0000', '2.0000', '90.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75142, '2022-04-21', 8739, 71322, 4750, NULL, '1.0000', '-33.7300', '-33.7300', '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 (75143, '2022-04-21', 9092, 71323, 4750, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '152.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75144, '2022-04-21', 9729, 71324, 4750, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75145, '2022-04-21', 7848, 71325, 4750, NULL, '1.0000', '-45.5521', '-45.5521', '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 (75146, '2022-04-21', 9274, 71326, 4750, NULL, '2.0000', '3.5638', '3.5638', '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 (75147, '2022-04-21', 7562, 71327, 4750, 51086, '1.0000', '5.5319', '5.5319', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75148, '2022-04-21', 7848, 71328, 4750, NULL, '1.0000', '-45.5521', '-45.5521', '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 (75149, '2022-04-21', 8260, 71329, 4750, NULL, '1.0000', '12.0000', '12.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 (75150, '2022-04-21', 9272, 71330, 4750, NULL, '1.0000', '3.1000', '3.1000', '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 (75151, '2022-04-21', 9817, 71331, 4750, 53902, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75152, '2022-04-21', 9747, 71332, 4750, 50667, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75153, '2022-04-21', 7428, 71333, 4750, 50471, '4.0000', '56.1257', '56.1257', '4.5000', '4.5000', '72.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75154, '2022-04-21', 7693, 71334, 4750, 51275, '1.0000', '4.8831', '4.8831', '5.4000', '5.4000', '4.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75155, '2022-04-21', 8739, 71335, 4750, NULL, '1.0000', '-33.7300', '-33.7300', '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 (75156, '2022-04-21', 2316, 71336, 4751, 49420, '1.0000', '48.6000', '48.6000', '53.0000', '53.0000', '1.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75157, '2022-04-21', 1762, 71337, 4751, 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 (75158, '2022-04-21', 9735, 71338, 4751, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75159, '2022-04-21', 2964, 71339, 4751, NULL, '1.0000', '8.5898', '8.5898', '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 (75160, '2022-04-21', 1501, 71340, 4751, NULL, '1.0000', '2.1784', '2.1784', '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 (75161, '2022-04-21', 2237, 71341, 4751, 51305, '1.0000', '87.1257', '87.1257', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75162, '2022-04-21', 7917, 71342, 4751, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (75163, '2022-04-21', 2740, 71343, 4751, NULL, '1.0000', '9.8871', '9.8871', '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 (75164, '2022-04-21', 8207, 71344, 4751, NULL, '1.0000', '0.0000', '0.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 (75165, '2022-04-21', 8595, 71345, 4751, NULL, '1.0000', '3.9640', '3.9640', '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 (75166, '2022-04-21', 2821, 71346, 4751, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75167, '2022-04-21', 1867, 71347, 4752, NULL, '1.0000', '9.4614', '9.4614', '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 (75168, '2022-04-21', 8184, 71348, 4752, 52082, '10.0000', '2.4525', '2.4525', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75169, '2022-04-21', 2270, 71349, 4752, 52266, '1.0000', '2.6065', '2.6065', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75170, '2022-04-21', 7917, 71350, 4752, NULL, '1.0000', '5.0000', '5.0000', '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 (75171, '2022-04-21', 7741, 71351, 4752, 53871, '1.0000', '-3.6144', '-3.6144', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75172, '2022-04-21', 9160, 71352, 4752, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75173, '2022-04-21', 1328, 71353, 4752, 49464, '2.0000', '3.8357', '3.8357', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75174, '2022-04-21', 7944, 71354, 4752, 53265, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75175, '2022-04-21', 2169, 71355, 4752, 52256, '1.0000', '1.1820', '1.1820', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75176, '2022-04-21', 1339, 71356, 4752, 44611, '1.0000', '1.7611', '1.7611', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75177, '2022-04-21', 1337, 71357, 4752, 44622, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75178, '2022-04-21', 7684, 71358, 4752, NULL, '1.0000', '9.0000', '9.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 (75179, '2022-04-21', 2297, 71359, 4752, 50924, '1.0000', '8.0496', '8.0496', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75180, '2022-04-21', 9634, 71360, 4752, 40901, '2.0000', '4.8000', '4.8000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75181, '2022-04-21', 1521, 71361, 4752, 40904, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75182, '2022-04-21', 7640, 71362, 4752, NULL, '1.0000', '5.8900', '5.8900', '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 (75183, '2022-04-21', 1779, 71363, 4752, 4938, '1.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 (75184, '2022-04-21', 7695, 71364, 4752, NULL, '1.0000', '3.9400', '3.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 (75185, '2022-04-21', 8566, 71365, 4753, 52883, '1.0000', '-174.9138', '-174.9138', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75186, '2022-04-21', 7892, 71366, 4754, NULL, '1.0000', '4.2000', '4.2000', '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 (75187, '2022-04-21', 9639, 71367, 4754, 50474, '1.0000', '29.2000', '29.2000', '38.5000', '38.5000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75188, '2022-04-21', 8456, 71368, 4754, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75189, '2022-04-21', 8005, 71369, 4754, NULL, '1.0000', '49.0000', '49.0000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75190, '2022-04-21', 7411, 71370, 4754, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75191, '2022-04-21', 7412, 71371, 4754, NULL, '1.0000', '1.5200', '1.5200', '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 (75192, '2022-04-21', 8596, 71372, 4754, NULL, '1.0000', '18.5278', '18.5278', '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 (75193, '2022-04-21', 7419, 71373, 4754, 53504, '1.0000', '25.9000', '25.9000', '34.5000', '34.5000', '2.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75194, '2022-04-21', 8024, 71374, 4754, NULL, '1.0000', '10.3800', '10.3800', '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 (75195, '2022-04-21', 7640, 71375, 4754, 53921, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75196, '2022-04-21', 8638, 71376, 4754, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75197, '2022-04-21', 9831, 71377, 4755, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '62.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75198, '2022-04-21', 7524, 71378, 4756, NULL, '1.0000', '11.9500', '11.9500', '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 (75199, '2022-04-21', 1680, 71379, 4756, 45104, '1.0000', '4.9960', '4.9960', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75200, '2022-04-21', 1845, 71380, 4757, 52227, '1.0000', '19.9352', '19.9352', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75201, '2022-04-22', 9695, 71381, 4758, 52314, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75202, '2022-04-22', 1342, 71382, 4758, 46074, '1.0000', '11.8062', '11.8062', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75203, '2022-04-22', 9840, 71383, 4758, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75204, '2022-04-22', 1313, 71384, 4758, 18414, '1.0000', '0.4200', '0.4200', '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 (75205, '2022-04-22', 1837, 71385, 4758, 46570, '1.0000', '0.4981', '0.4981', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75206, '2022-04-22', 7569, 71386, 4758, NULL, '1.0000', '37.0000', '37.0000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75207, '2022-04-22', 2059, 71387, 4758, 44507, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75208, '2022-04-22', 2948, 71388, 4758, 53894, '1.0000', '0.9169', '0.9169', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75209, '2022-04-22', 7741, 71389, 4758, 53871, '1.0000', '-3.6144', '-3.6144', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75210, '2022-04-22', 2415, 71390, 4758, 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 (75211, '2022-04-22', 1651, 71391, 4758, 52273, '1.0000', '6.7692', '6.7692', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75212, '2022-04-22', 9461, 71392, 4758, 40877, '2.0000', '1.5845', '1.5845', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75213, '2022-04-22', 9729, 71393, 4758, 46048, '6.0000', '0.6200', '0.6200', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75214, '2022-04-22', 9732, 71394, 4758, 53874, '4.0000', '0.7000', '0.7000', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75215, '2022-04-22', 9453, 71395, 4758, 40640, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75216, '2022-04-22', 9731, 71396, 4758, 52299, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75217, '2022-04-22', 1409, 71397, 4759, 52275, '1.0000', '13.0590', '13.0590', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75218, '2022-04-22', 9841, 71398, 4759, NULL, '1.0000', '5.1900', '5.1900', '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 (75219, '2022-04-22', 1857, 71399, 4759, 47970, '1.0000', '-18.6428', '-18.6428', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75220, '2022-04-22', 9821, 71400, 4759, 50873, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75221, '2022-04-22', 1331, 71401, 4759, 44503, '1.0000', '4.2366', '4.2366', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75222, '2022-04-22', 1337, 71402, 4759, 44622, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75223, '2022-04-22', 1339, 71403, 4759, 44611, '1.0000', '1.7611', '1.7611', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75224, '2022-04-22', 2545, 71404, 4759, 50001, '1.0000', '7.0338', '7.0338', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75225, '2022-04-22', 9840, 71405, 4759, 53708, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75226, '2022-04-22', 2289, 71406, 4759, 53244, '12.0000', '0.2742', '0.2742', '0.5000', '0.5000', '54.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75227, '2022-04-22', 2948, 71407, 4759, 53894, '1.0000', '0.9169', '0.9169', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75228, '2022-04-22', 1783, 71408, 4759, 46745, '6.0000', '-16.1683', '-16.1683', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75229, '2022-04-22', 1560, 71409, 4759, 9459, '1.0000', '23.1800', '23.1800', '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 (75230, '2022-04-22', 1358, 71410, 4760, 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 (75231, '2022-04-22', 2166, 71411, 4760, 44544, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75232, '2022-04-22', 2446, 71412, 4760, 5831, '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 (75233, '2022-04-22', 1698, 71413, 4760, 32032, '1.0000', '7.8930', '7.8930', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75234, '2022-04-22', 1342, 71414, 4760, 46074, '1.0000', '11.8062', '11.8062', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75235, '2022-04-22', 7741, 71415, 4760, 53871, '1.0000', '-3.6144', '-3.6144', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75236, '2022-04-22', 9840, 71416, 4760, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75237, '2022-04-22', 1432, 71417, 4760, 53865, '1.0000', '9.3279', '9.3279', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75238, '2022-04-22', 2259, 71418, 4760, 52308, '1.0000', '20.9724', '20.9724', '31.0000', '31.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75239, '2022-04-22', 1912, 71419, 4761, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75240, '2022-04-22', 1528, 71420, 4761, 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 (75241, '2022-04-22', 7741, 71421, 4761, NULL, '1.0000', '-6.8417', '-6.8417', '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 (75242, '2022-04-22', 9750, 71422, 4761, NULL, '1.0000', '3.3000', '3.3000', '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 (75243, '2022-04-22', 8146, 71423, 4761, 52182, '1.0000', '4.4100', '4.4100', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75244, '2022-04-22', 9482, 71424, 4761, NULL, '2.0000', '0.5000', '0.5000', '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 (75245, '2022-04-22', 2643, 71425, 4761, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '56.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75246, '2022-04-22', 7411, 71426, 4761, NULL, '1.0000', '1.3013', '1.3013', '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 (75247, '2022-04-22', 2740, 71427, 4761, NULL, '1.0000', '9.8871', '9.8871', '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 (75248, '2022-04-22', 2384, 71428, 4761, NULL, '3.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (75249, '2022-04-22', 1342, 71429, 4761, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75250, '2022-04-22', 9740, 71430, 4761, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75251, '2022-04-22', 7530, 71431, 4761, 51200, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75252, '2022-04-22', 2289, 71432, 4761, NULL, '2.0000', '0.2222', '0.2222', '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 (75253, '2022-04-22', 7411, 71433, 4761, NULL, '1.0000', '1.3013', '1.3013', '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 (75254, '2022-04-22', 9815, 71434, 4761, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75255, '2022-04-22', 9740, 71435, 4761, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75256, '2022-04-22', 1645, 71436, 4761, NULL, '1.0000', '13.1800', '13.1800', '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 (75257, '2022-04-22', 1660, 71437, 4761, 23152, '1.0000', '53.0800', '53.0800', '71.0000', '71.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 (75258, '2022-04-22', 1780, 71438, 4761, 22387, '1.0000', '95.5759', '95.5759', '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 (75259, '2022-04-22', 1744, 71439, 4761, NULL, '1.0000', '138.0750', '138.0750', '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 (75260, '2022-04-22', 2614, 71440, 4761, NULL, '1.0000', '53.3200', '53.3200', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75261, '2022-04-22', 1488, 71441, 4761, 53946, '2.0000', '4.2833', '4.2833', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75262, '2022-04-22', 9204, 71442, 4761, NULL, '1.0000', '14.1514', '14.1514', '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 (75263, '2022-04-22', 9732, 71443, 4761, 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 (75264, '2022-04-22', 1982, 71444, 4761, 53417, '1.0000', '-2.3133', '-2.3133', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75265, '2022-04-22', 8444, 71445, 4761, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75266, '2022-04-22', 2906, 71446, 4761, NULL, '2.0000', '2.6000', '2.6000', '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 (75267, '2022-04-22', 9888, 71447, 4761, 54182, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75268, '2022-04-22', 2103, 71448, 4761, NULL, '3.0000', '0.4500', '0.4500', '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 (75269, '2022-04-22', 2948, 71449, 4761, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75270, '2022-04-22', 1912, 71450, 4761, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75271, '2022-04-22', 1339, 71451, 4761, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75272, '2022-04-22', 8982, 71452, 4761, NULL, '1.0000', '-8.6044', '-8.6044', '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 (75273, '2022-04-22', 1501, 71453, 4761, NULL, '1.0000', '2.1784', '2.1784', '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 (75274, '2022-04-22', 8133, 71454, 4761, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (75275, '2022-04-22', 1702, 71455, 4761, NULL, '1.0000', '14.6666', '14.6666', '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 (75276, '2022-04-22', 9583, 71456, 4761, 39227, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75277, '2022-04-22', 1488, 71457, 4761, 53946, '1.0000', '4.2833', '4.2833', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75278, '2022-04-22', 2411, 71458, 4761, 47056, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75279, '2022-04-22', 2948, 71459, 4761, 52189, '2.0000', '0.9158', '0.9158', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75280, '2022-04-22', 1771, 71460, 4762, 21570, '1.0000', '3.3900', '3.3900', '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 (75281, '2022-04-22', 9732, 71461, 4762, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75282, '2022-04-22', 9291, 71462, 4762, 49021, '1.0000', '16.3250', '16.3250', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75283, '2022-04-22', 9822, 71463, 4763, 51344, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75284, '2022-04-22', 1687, 71464, 4763, 52178, '1.0000', '12.6576', '12.6576', '22.5000', '22.5000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75285, '2022-04-22', 7612, 71465, 4763, NULL, '1.0000', '1.7300', '1.7300', '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 (75286, '2022-04-22', 2307, 71466, 4763, 49303, '1.0000', '111.4200', '111.4200', '190.0000', '190.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75287, '2022-04-22', 1841, 71467, 4763, NULL, '2.0000', '0.2601', '0.2601', '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 (75288, '2022-04-22', 8065, 71468, 4763, NULL, '1.0000', '32.0000', '32.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 (75289, '2022-04-22', 8276, 71469, 4763, NULL, '1.0000', '11.8200', '11.8200', '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 (75290, '2022-04-22', 7523, 71470, 4763, NULL, '1.0000', '9.7000', '9.7000', '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 (75291, '2022-04-22', 9880, 71471, 4764, 54257, '1.0000', '3.4200', '3.4200', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75292, '2022-04-22', 9840, 71472, 4764, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75293, '2022-04-22', 8744, 71473, 4765, 53449, '1.0000', '1.8443', '1.8443', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75294, '2022-04-22', 1941, 71474, 4765, 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 (75295, '2022-04-22', 8444, 71475, 4765, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75296, '2022-04-22', 1342, 71476, 4765, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75297, '2022-04-22', 2315, 71477, 4765, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '26.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75298, '2022-04-22', 2416, 71478, 4765, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75299, '2022-04-22', 8172, 71479, 4766, NULL, '1.0000', '40.7000', '40.7000', '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 (75300, '2022-04-22', 7552, 71480, 4766, NULL, '1.0000', '4.7500', '4.7500', '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 (75301, '2022-04-22', 7848, 71481, 4766, NULL, '1.0000', '1.3500', '1.3500', '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 (75302, '2022-04-22', 8965, 71482, 4766, NULL, '2.0000', '7.2000', '7.2000', '9.5000', '9.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 (75303, '2022-04-22', 7684, 71483, 4766, NULL, '2.0000', '9.0000', '9.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 (75304, '2022-04-22', 8539, 71484, 4766, NULL, '2.0000', '31.8000', '31.8000', '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 (75305, '2022-04-22', 7611, 71485, 4766, NULL, '1.0000', '4.4000', '4.4000', '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 (75306, '2022-04-22', 8135, 71486, 4766, NULL, '1.0000', '5.4500', '5.4500', '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 (75307, '2022-04-22', 9332, 71487, 4766, NULL, '1.0000', '8.0000', '8.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 (75308, '2022-04-22', 7781, 71488, 4766, NULL, '3.0000', '4.2500', '4.2500', '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 (75309, '2022-04-22', 8677, 71489, 4766, NULL, '2.0000', '1.2800', '1.2800', '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 (75310, '2022-04-22', 7411, 71490, 4766, NULL, '2.0000', '1.3500', '1.3500', '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 (75311, '2022-04-22', 9863, 71491, 4766, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75312, '2022-04-22', 9643, 71492, 4766, 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 (75313, '2022-04-22', 7585, 71493, 4766, NULL, '1.0000', '3.9600', '3.9600', '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 (75314, '2022-04-22', 7967, 71494, 4766, NULL, '1.0000', '7.0000', '7.0000', '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 (75315, '2022-04-22', 7674, 71495, 4766, 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 (75316, '2022-04-22', 7562, 71496, 4766, NULL, '1.0000', '5.5300', '5.5300', '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 (75317, '2022-04-22', 8053, 71497, 4766, NULL, '1.0000', '0.8000', '0.8000', '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 (75318, '2022-04-22', 7354, 71498, 4766, NULL, '2.0000', '0.3700', '0.3700', '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 (75319, '2022-04-22', 7317, 71499, 4766, NULL, '1.0000', '19.5500', '19.5500', '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 (75320, '2022-04-22', 2416, 71500, 4766, 4745, '-26.0000', '1.2000', '1.2000', '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 (75321, '2022-04-22', 2416, 71500, 4766, NULL, '27.0000', '1.2000', '1.2000', '2.0000', '2.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 (75322, '2022-04-22', 7317, 71501, 4766, NULL, '1.0000', '19.5500', '19.5500', '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 (75323, '2022-04-22', 8444, 71502, 4766, NULL, '1.0000', '1.6000', '1.6000', '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 (75324, '2022-04-22', 7411, 71503, 4766, NULL, '1.0000', '1.3500', '1.3500', '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 (75325, '2022-04-22', 8063, 71504, 4766, NULL, '1.0000', '1.6000', '1.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 (75326, '2022-04-22', 9335, 71505, 4766, 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 (75327, '2022-04-22', 8308, 71506, 4766, NULL, '1.0000', '2.0800', '2.0800', '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 (75328, '2022-04-22', 7587, 71507, 4766, NULL, '1.0000', '6.4400', '6.4400', '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 (75329, '2022-04-22', 7570, 71508, 4766, NULL, '1.0000', '10.0000', '10.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 (75330, '2022-04-22', 7590, 71509, 4766, NULL, '1.0000', '1.8400', '1.8400', '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 (75331, '2022-04-22', 7482, 71510, 4766, NULL, '1.0000', '3.0500', '3.0500', '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 (75332, '2022-04-22', 1333, 71511, 4766, 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 (75333, '2022-04-22', 1338, 71512, 4766, 16502, '-8.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 (75334, '2022-04-22', 1338, 71512, 4766, NULL, '9.0000', '4.0000', '4.0000', '6.5000', '6.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 (75335, '2022-04-22', 1331, 71513, 4766, NULL, '1.0000', '4.2000', '4.2000', '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 (75336, '2022-04-22', 9618, 71514, 4766, NULL, '4.0000', '3.7500', '3.7500', '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 (75337, '2022-04-22', 9715, 71515, 4766, NULL, '1.0000', '9.4000', '9.4000', '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 (75338, '2022-04-22', 9747, 71516, 4766, NULL, '2.0000', '0.6500', '0.6500', '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 (75339, '2022-04-22', 7453, 71517, 4766, NULL, '1.0000', '28.5000', '28.5000', '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 (75340, '2022-04-22', 7514, 71518, 4766, NULL, '1.0000', '2.2500', '2.2500', '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 (75341, '2022-04-22', 7645, 71519, 4766, NULL, '1.0000', '23.7800', '23.7800', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75342, '2022-04-22', 9178, 71520, 4766, 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 (75343, '2022-04-22', 8208, 71521, 4767, NULL, '2.0000', '33.0000', '33.0000', '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 (75344, '2022-04-22', 2095, 71522, 4767, NULL, '1.0000', '1.5000', '1.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 (75345, '2022-04-22', 9831, 71523, 4767, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '61.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75346, '2022-04-22', 7744, 71524, 4767, NULL, '2.0000', '2.5833', '2.5833', '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 (75347, '2022-04-22', 2604, 71525, 4768, 14491, '-12.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75348, '2022-04-22', 2604, 71525, 4768, NULL, '13.0000', '90.0000', '90.0000', '110.0000', '110.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 (75349, '2022-04-22', 9826, 71526, 4768, NULL, '1.0000', '13.5000', '13.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 (75350, '2022-04-22', 7490, 71527, 4769, 51289, '16.0000', '2.7486', '2.7486', '0.4000', '0.4000', '84.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75351, '2022-04-22', 9193, 71528, 4769, NULL, '1.0000', '7.0315', '7.0315', '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 (75352, '2022-04-22', 7859, 71529, 4769, 54101, '1.0000', '12.6364', '12.6364', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75353, '2022-04-22', 8467, 71530, 4769, NULL, '1.0000', '60.3900', '60.3900', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75354, '2022-04-22', 2557, 71531, 4769, 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 (75355, '2022-04-22', 9740, 71532, 4769, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75356, '2022-04-22', 7658, 71533, 4769, 52446, '10.0000', '341.6222', '341.6222', '2.8000', '2.8000', '42.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75357, '2022-04-22', 9534, 71534, 4769, 50456, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75358, '2022-04-22', 7708, 71535, 4769, NULL, '1.0000', '20.1469', '20.1469', '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 (75359, '2022-04-22', 8452, 71536, 4769, NULL, '1.0000', '4.9078', '4.9078', '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 (75360, '2022-04-22', 8063, 71537, 4769, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '89.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75361, '2022-04-22', 7473, 71538, 4769, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '28.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75362, '2022-04-22', 2315, 71539, 4769, 53909, '3.0000', '0.6636', '0.6636', '0.8000', '0.8000', '76.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75363, '2022-04-22', 1841, 71540, 4769, 48007, '2.0000', '0.1792', '0.1792', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75364, '2022-04-22', 8942, 71541, 4769, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75365, '2022-04-22', 7672, 71542, 4769, NULL, '1.0000', '3.8200', '3.8200', '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 (75366, '2022-04-22', 9177, 71543, 4769, NULL, '5.0000', '2.2517', '2.2517', '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 (75367, '2022-04-22', 7514, 71544, 4769, NULL, '1.0000', '1417.7133', '1417.7133', '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 (75368, '2022-04-22', 2296, 71545, 4769, NULL, '1.0000', '12.8812', '12.8812', '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 (75369, '2022-04-22', 1332, 71546, 4769, 52470, '1.0000', '-73.0510', '-73.0510', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75370, '2022-04-22', 7674, 71547, 4769, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75371, '2022-04-22', 7411, 71548, 4769, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75372, '2022-04-22', 2075, 71549, 4769, NULL, '1.0000', '7.0000', '7.0000', '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 (75373, '2022-04-22', 8596, 71550, 4769, NULL, '1.0000', '18.5278', '18.5278', '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 (75374, '2022-04-22', 1501, 71551, 4769, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75375, '2022-04-22', 8037, 71552, 4769, 34506, '1.0000', '45.3419', '45.3419', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75376, '2022-04-22', 7464, 71553, 4769, 51085, '1.0000', '21.9000', '21.9000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75377, '2022-04-22', 9821, 71554, 4769, 54274, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75378, '2022-04-22', 7780, 71555, 4769, NULL, '1.0000', '-16.1680', '-16.1680', '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 (75379, '2022-04-22', 9740, 71556, 4769, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75380, '2022-04-22', 8462, 71557, 4769, 32919, '1.0000', '7.0400', '7.0400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 236);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75381, '2022-04-22', 7552, 71558, 4769, 52744, '1.0000', '4.7069', '4.7069', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75382, '2022-04-22', 8032, 71559, 4769, 50374, '1.0000', '6.2640', '6.2640', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75383, '2022-04-22', 1916, 71560, 4769, 54100, '1.0000', '10.2080', '10.2080', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75384, '2022-04-22', 7518, 71561, 4769, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75385, '2022-04-22', 9868, 71562, 4769, 54289, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75386, '2022-04-22', 7980, 71563, 4769, NULL, '10.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (75387, '2022-04-22', 7981, 71564, 4769, 52736, '10.0000', '3.3321', '3.3321', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75388, '2022-04-22', 7954, 71565, 4769, NULL, '4.0000', '412.7272', '412.7272', '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 (75389, '2022-04-22', 9751, 71566, 4769, 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 (75390, '2022-04-22', 1837, 71567, 4769, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75391, '2022-04-22', 2079, 71568, 4769, 45601, '1.0000', '2.1080', '2.1080', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75392, '2022-04-22', 1809, 71569, 4770, 48618, '1.0000', '10.1077', '10.1077', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75393, '2022-04-22', 7411, 71570, 4770, NULL, '3.0000', '1.3013', '1.3013', '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 (75394, '2022-04-22', 9750, 71571, 4770, NULL, '1.0000', '3.3000', '3.3000', '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 (75395, '2022-04-22', 9579, 71572, 4770, 53633, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75396, '2022-04-22', 7491, 71573, 4770, NULL, '1.0000', '4.8000', '4.8000', '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 (75397, '2022-04-22', 1969, 71574, 4770, NULL, '1.0000', '4.3300', '4.3300', '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 (75398, '2022-04-22', 2728, 71575, 4770, 19354, '2.0000', '0.8000', '0.8000', '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 (75399, '2022-04-22', 7411, 71576, 4770, NULL, '1.0000', '1.3013', '1.3013', '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 (75400, '2022-04-22', 7530, 71577, 4770, 51200, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75401, '2022-04-22', 3058, 71578, 4770, NULL, '1.0000', '2.3000', '2.3000', '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 (75402, '2022-04-22', 9735, 71579, 4770, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75403, '2022-04-22', 7318, 71580, 4770, 53664, '1.0000', '10.6148', '10.6148', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75404, '2022-04-22', 9798, 71581, 4770, 51218, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75405, '2022-04-22', 1689, 71582, 4770, NULL, '1.0000', '16.1442', '16.1442', '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 (75406, '2022-04-22', 1533, 71583, 4770, 48642, '3.0000', '3.0027', '3.0027', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75407, '2022-04-22', 7802, 71584, 4770, 53226, '4.0000', '1.1497', '1.1497', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75408, '2022-04-22', 2643, 71585, 4770, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75409, '2022-04-22', 2740, 71586, 4770, NULL, '1.0000', '9.8871', '9.8871', '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 (75410, '2022-04-22', 2366, 71587, 4770, NULL, '1.0000', '-24.7743', '-24.7743', '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 (75411, '2022-04-22', 2643, 71588, 4770, 54067, '2.0000', '0.9481', '0.9481', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75412, '2022-04-22', 1590, 71589, 4770, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75413, '2022-04-22', 9831, 71590, 4770, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '60.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75414, '2022-04-22', 8208, 71591, 4770, NULL, '2.0000', '33.0000', '33.0000', '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 (75415, '2022-04-22', 1406, 71592, 4770, 49512, '1.0000', '19.8840', '19.8840', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75416, '2022-04-22', 2935, 71593, 4770, NULL, '1.0000', '7.9400', '7.9400', '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 (75417, '2022-04-22', 3029, 71594, 4770, NULL, '1.0000', '-71.3510', '-71.3510', '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 (75418, '2022-04-22', 1446, 71595, 4770, NULL, '1.0000', '4.8156', '4.8156', '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 (75419, '2022-04-22', 7500, 71596, 4770, 44160, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75420, '2022-04-22', 2256, 71597, 4770, NULL, '1.0000', '13.7060', '13.7060', '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 (75421, '2022-04-22', 9645, 71598, 4770, 41423, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75422, '2022-04-22', 7955, 71599, 4770, 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 (75423, '2022-04-22', 9646, 71600, 4770, 41424, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75424, '2022-04-22', 2233, 71601, 4770, 50529, '1.0000', '21.6305', '21.6305', '29.5000', '29.5000', '4.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75425, '2022-04-22', 1787, 71602, 4770, NULL, '2.0000', '0.5000', '0.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 (75426, '2022-04-22', 1935, 71603, 4770, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75427, '2022-04-22', 1590, 71604, 4770, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75428, '2022-04-22', 7886, 71605, 4770, NULL, '1.0000', '14.5000', '14.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 (75429, '2022-04-22', 1855, 71606, 4770, NULL, '1.0000', '1.5003', '1.5003', '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 (75430, '2022-04-22', 7744, 71607, 4770, NULL, '1.0000', '2.5833', '2.5833', '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 (75431, '2022-04-22', 1534, 71608, 4770, NULL, '2.0000', '9.8500', '9.8500', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75432, '2022-04-22', 1571, 71609, 4770, NULL, '1.0000', '308.7500', '308.7500', '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 (75433, '2022-04-22', 2283, 71610, 4770, 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 (75434, '2022-04-22', 2237, 71611, 4770, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75435, '2022-04-22', 9750, 71612, 4770, NULL, '1.0000', '3.3000', '3.3000', '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 (75436, '2022-04-22', 7777, 71613, 4770, 39765, '1.0000', '9.5000', '9.5000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75437, '2022-04-22', 1731, 71614, 4770, 51361, '1.0000', '19.7600', '19.7600', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75438, '2022-04-22', 9634, 71615, 4770, 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 (75439, '2022-04-22', 2332, 71616, 4770, NULL, '1.0000', '-1.4600', '-1.4600', '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 (75440, '2022-04-22', 9750, 71617, 4770, NULL, '1.0000', '3.3000', '3.3000', '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 (75441, '2022-04-22', 8746, 71618, 4770, 53448, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75442, '2022-04-22', 1314, 71619, 4770, 53944, '1.0000', '1.4423', '1.4423', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75443, '2022-04-22', 1779, 71620, 4770, 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 (75444, '2022-04-22', 2038, 71621, 4770, NULL, '1.0000', '15.9774', '15.9774', '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 (75445, '2022-04-22', 2315, 71622, 4770, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '25.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75446, '2022-04-22', 9734, 71623, 4770, NULL, '4.0000', '0.3200', '0.3200', '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 (75447, '2022-04-22', 7411, 71624, 4771, NULL, '2.0000', '1.3013', '1.3013', '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 (75448, '2022-04-22', 7635, 71625, 4771, NULL, '1.0000', '6.6300', '6.6300', '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 (75449, '2022-04-22', 2268, 71626, 4771, 51217, '1.0000', '7.3286', '7.3286', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75450, '2022-04-22', 2293, 71627, 4771, NULL, '3.0000', '10.2680', '10.2680', '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 (75451, '2022-04-22', 2937, 71628, 4771, 51655, '1.0000', '5.5731', '5.5731', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75452, '2022-04-22', 1855, 71629, 4771, NULL, '1.0000', '1.5003', '1.5003', '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 (75453, '2022-04-22', 7459, 71630, 4771, NULL, '10.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (75454, '2022-04-22', 2852, 71631, 4771, 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 (75455, '2022-04-22', 2289, 71632, 4771, NULL, '3.0000', '0.2222', '0.2222', '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 (75456, '2022-04-22', 9813, 71633, 4771, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75457, '2022-04-22', 9794, 71634, 4772, 50668, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75458, '2022-04-22', 7674, 71635, 4772, 52725, '2.0000', '197.1282', '197.1282', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75459, '2022-04-22', 8085, 71636, 4772, 49815, '1.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75460, '2022-04-22', 7356, 71637, 4772, 29996, '1.0000', '10.9000', '10.9000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75461, '2022-04-22', 9465, 71638, 4772, 39439, '1.0000', '8.5000', '8.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75462, '2022-04-22', 7473, 71639, 4772, 51825, '2.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75463, '2022-04-22', 9791, 71640, 4772, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '130.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75464, '2022-04-22', 7564, 71641, 4772, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75465, '2022-04-22', 7952, 71642, 4772, 52751, '1.0000', '25.4547', '25.4547', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75466, '2022-04-22', 2315, 71643, 4772, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '75.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75467, '2022-04-22', 7357, 71644, 4772, NULL, '1.0000', '11.7500', '11.7500', '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 (75468, '2022-04-22', 7330, 71645, 4772, 50701, '1.0000', '19.1333', '19.1333', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75469, '2022-04-22', 7518, 71646, 4772, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75470, '2022-04-22', 7848, 71647, 4772, NULL, '1.0000', '-45.5521', '-45.5521', '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 (75471, '2022-04-22', 7318, 71648, 4772, NULL, '1.0000', '11.4954', '11.4954', '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 (75472, '2022-04-22', 7708, 71649, 4772, NULL, '1.0000', '20.1469', '20.1469', '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 (75473, '2022-04-22', 7411, 71650, 4772, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75474, '2022-04-22', 7674, 71651, 4772, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75475, '2022-04-22', 8810, 71652, 4772, 54089, '2.0000', '-47.9658', '-47.9658', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75476, '2022-04-22', 8067, 71653, 4772, 54084, '1.0000', '4.5420', '4.5420', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75477, '2022-04-22', 7428, 71654, 4772, 50471, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '70.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75478, '2022-04-22', 2061, 71655, 4772, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75479, '2022-04-22', 9092, 71656, 4772, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '149.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75480, '2022-04-22', 9560, 71657, 4772, 51065, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75481, '2022-04-22', 9393, 71658, 4772, NULL, '3.0000', '3.0000', '3.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 (75482, '2022-04-22', 2506, 71659, 4772, 54299, '1.0000', '4.6430', '4.6430', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75483, '2022-04-22', 7588, 71660, 4772, 54113, '1.0000', '10.0320', '10.0320', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75484, '2022-04-22', 2503, 71661, 4772, 36674, '1.0000', '15.0899', '15.0899', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75485, '2022-04-22', 9894, 71662, 4772, 54304, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75486, '2022-04-22', 2242, 71663, 4773, 48481, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75487, '2022-04-22', 1698, 71664, 4773, 51380, '1.0000', '8.0429', '8.0429', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75488, '2022-04-22', 7641, 71665, 4773, NULL, '1.0000', '1.9000', '1.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 (75489, '2022-04-22', 2285, 71666, 4773, NULL, '1.0000', '34.5905', '34.5905', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75490, '2022-04-22', 2103, 71667, 4773, 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 (75491, '2022-04-22', 7514, 71668, 4773, NULL, '1.0000', '2.2500', '2.2500', '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 (75492, '2022-04-22', 9695, 71669, 4773, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75493, '2022-04-22', 9747, 71670, 4773, 51943, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75494, '2022-04-22', 7411, 71671, 4773, NULL, '2.0000', '1.3013', '1.3013', '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 (75495, '2022-04-22', 1410, 71672, 4773, NULL, '1.0000', '-0.4921', '-0.4921', '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 (75496, '2022-04-22', 9813, 71673, 4774, NULL, '1.0000', '1.4900', '1.4900', '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 (75497, '2022-04-22', 2511, 71674, 4774, 54240, '1.0000', '9.3060', '9.3060', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75498, '2022-04-22', 2858, 71675, 4774, NULL, '2.0000', '1.0000', '1.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 (75499, '2022-04-22', 7884, 71676, 4774, NULL, '1.0000', '4.2000', '4.2000', '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 (75500, '2022-04-22', 7482, 71677, 4774, NULL, '1.0000', '3.0500', '3.0500', '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 (75501, '2022-04-22', 9813, 71678, 4774, NULL, '1.0000', '1.4900', '1.4900', '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 (75502, '2022-04-22', 1863, 71679, 4774, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75503, '2022-04-22', 3025, 71680, 4774, 52909, '1.0000', '2.7965', '2.7965', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75504, '2022-04-22', 2858, 71681, 4774, 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 (75505, '2022-04-22', 2446, 71682, 4774, 5831, '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 (75506, '2022-04-22', 2167, 71683, 4774, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75507, '2022-04-22', 1863, 71684, 4774, 49847, '2.0000', '1.2686', '1.2686', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75508, '2022-04-22', 1432, 71685, 4774, 53865, '1.0000', '9.3279', '9.3279', '17.5000', '17.5000', '6.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75509, '2022-04-22', 9794, 71686, 4774, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '82.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75510, '2022-04-22', 1674, 71687, 4774, 53707, '1.0000', '11.0596', '11.0596', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75511, '2022-04-22', 9747, 71688, 4774, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75512, '2022-04-22', 1328, 71689, 4774, 49464, '1.0000', '3.8357', '3.8357', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75513, '2022-04-22', 2242, 71690, 4774, 49112, '4.0000', '0.6543', '0.6543', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75514, '2022-04-22', 1981, 71691, 4774, 52886, '1.0000', '8.2272', '8.2272', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75515, '2022-04-22', 2821, 71692, 4774, 54236, '1.0000', '3.4365', '3.4365', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75516, '2022-04-22', 8079, 71693, 4774, 53875, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75517, '2022-04-22', 2906, 71694, 4774, 18670, '1.0000', '2.6000', '2.6000', '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 (75518, '2022-04-22', 9762, 71695, 4774, 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 (75519, '2022-04-22', 2315, 71696, 4774, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '169.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75520, '2022-04-22', 1863, 71697, 4774, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75521, '2022-04-22', 2821, 71698, 4774, 54236, '1.0000', '3.4365', '3.4365', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75522, '2022-04-22', 9695, 71699, 4774, 52314, '2.0000', '4.5000', '4.5000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75523, '2022-04-22', 8133, 71700, 4774, 52096, '1.0000', '9.7500', '9.7500', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75524, '2022-04-22', 1651, 71701, 4774, 54233, '1.0000', '7.1598', '7.1598', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75525, '2022-04-22', 1863, 71702, 4774, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75526, '2022-04-22', 9732, 71703, 4774, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75527, '2022-04-22', 1493, 71704, 4774, 52228, '1.0000', '1.5665', '1.5665', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75528, '2022-04-22', 8395, 71705, 4774, NULL, '1.0000', '0.9700', '0.9700', '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 (75529, '2022-04-22', 9845, 71706, 4774, 53686, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75530, '2022-04-22', 2302, 71707, 4774, 52087, '2.0000', '5.1943', '5.1943', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75531, '2022-04-22', 1772, 71708, 4774, 40908, '1.0000', '6.0491', '6.0491', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75532, '2022-04-22', 2315, 71709, 4774, 3069, '2.0000', '0.3300', '0.3300', '0.8000', '0.8000', '168.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75533, '2022-04-22', 1307, 71710, 4774, NULL, '1.0000', '-1.1000', '-1.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 (75534, '2022-04-22', 2691, 71711, 4774, 12772, '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 (75535, '2022-04-22', 1466, 71712, 4774, 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 (75536, '2022-04-22', 7840, 71713, 4774, NULL, '1.0000', '4.0000', '4.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 (75537, '2022-04-22', 2237, 71714, 4774, 54244, '1.0000', '1.3436', '1.3436', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75538, '2022-04-22', 7915, 71715, 4774, 52088, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75539, '2022-04-22', 1912, 71716, 4774, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75540, '2022-04-22', 1572, 71717, 4774, 49525, '2.0000', '1.9151', '1.9151', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75541, '2022-04-22', 2167, 71718, 4774, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75542, '2022-04-22', 2315, 71719, 4774, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '169.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75543, '2022-04-22', 2088, 71720, 4774, 50894, '1.0000', '1.4388', '1.4388', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75544, '2022-04-22', 8395, 71721, 4774, NULL, '2.0000', '0.9700', '0.9700', '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 (75545, '2022-04-22', 1602, 71722, 4774, 54196, '1.0000', '6.9448', '6.9448', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75546, '2022-04-22', 1548, 71723, 4774, 1664, '15.0000', '90.0000', '90.0000', '3.6000', '3.6000', '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 (75547, '2022-04-22', 7609, 71724, 4774, NULL, '1.0000', '4.3300', '4.3300', '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 (75548, '2022-04-22', 7708, 71725, 4774, NULL, '1.0000', '8.3000', '8.3000', '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 (75549, '2022-04-23', 1856, 71726, 4775, NULL, '1.0000', '20.0009', '20.0009', '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 (75550, '2022-04-23', 9762, 71727, 4775, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75551, '2022-04-23', 7708, 71728, 4775, NULL, '1.0000', '6.3400', '6.3400', '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 (75552, '2022-04-23', 9725, 71729, 4775, 52348, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75553, '2022-04-23', 1935, 71730, 4775, 52356, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75554, '2022-04-23', 2295, 71731, 4775, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75555, '2022-04-23', 2506, 71732, 4775, NULL, '1.0000', '4.2640', '4.2640', '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 (75556, '2022-04-23', 2410, 71733, 4775, 48148, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75557, '2022-04-23', 7531, 71734, 4775, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75558, '2022-04-23', 9745, 71735, 4775, 47102, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75559, '2022-04-23', 1314, 71736, 4775, 53944, '1.0000', '1.4423', '1.4423', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75560, '2022-04-23', 1715, 71737, 4775, 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 (75561, '2022-04-23', 2945, 71738, 4775, 48462, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75562, '2022-04-23', 1309, 71739, 4775, 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 (75563, '2022-04-23', 1501, 71740, 4775, NULL, '1.0000', '2.1784', '2.1784', '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 (75564, '2022-04-23', 1863, 71741, 4775, 54181, '2.0000', '1.4153', '1.4153', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75565, '2022-04-23', 1863, 71742, 4775, 54181, '1.0000', '1.4153', '1.4153', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75566, '2022-04-23', 8980, 71743, 4775, NULL, '1.0000', '9.5000', '9.5000', '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 (75567, '2022-04-23', 1912, 71744, 4775, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75568, '2022-04-23', 1908, 71745, 4775, NULL, '5.0000', '0.9032', '0.9032', '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 (75569, '2022-04-23', 9762, 71746, 4775, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75570, '2022-04-23', 1856, 71747, 4775, NULL, '1.0000', '20.0009', '20.0009', '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 (75571, '2022-04-23', 7444, 71748, 4776, NULL, '1.0000', '0.7739', '0.7739', '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 (75572, '2022-04-23', 9868, 71749, 4776, 54289, '2.0000', '1.0000', '1.0000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75573, '2022-04-23', 1846, 71750, 4776, 54270, '1.0000', '12.3200', '12.3200', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75574, '2022-04-23', 9747, 71751, 4776, 50667, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75575, '2022-04-23', 8666, 71752, 4776, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75576, '2022-04-23', 7853, 71753, 4776, 53518, '1.0000', '7951.4905', '7951.4905', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75577, '2022-04-23', 7750, 71754, 4776, 54124, '1.0000', '31.0013', '31.0013', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75578, '2022-04-23', 7911, 71755, 4776, NULL, '1.0000', '3.9601', '3.9601', '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 (75579, '2022-04-23', 7857, 71756, 4776, NULL, '1.0000', '16.1000', '16.1000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75580, '2022-04-23', 7354, 71757, 4776, NULL, '1.0000', '-2.5000', '-2.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 (75581, '2022-04-23', 9693, 71758, 4776, 54133, '1.0000', '41.8000', '41.8000', '55.5000', '55.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75582, '2022-04-23', 8161, 71759, 4776, NULL, '1.0000', '19.6302', '19.6302', '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 (75583, '2022-04-23', 7611, 71760, 4776, 53521, '1.0000', '17.6895', '17.6895', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75584, '2022-04-23', 8134, 71761, 4776, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75585, '2022-04-23', 1837, 71762, 4776, 46669, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75586, '2022-04-23', 1647, 71763, 4776, 48841, '1.0000', '5.0737', '5.0737', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75587, '2022-04-23', 8308, 71764, 4776, NULL, '1.0000', '28.7723', '28.7723', '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 (75588, '2022-04-23', 2906, 71765, 4776, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75589, '2022-04-23', 9729, 71766, 4776, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75590, '2022-04-23', 2892, 71767, 4776, 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 (75591, '2022-04-23', 9012, 71768, 4776, NULL, '1.0000', '24.0000', '24.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 (75592, '2022-04-23', 7711, 71769, 4776, NULL, '1.0000', '-7741.6583', '-7741.6583', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75593, '2022-04-23', 2284, 71770, 4776, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75594, '2022-04-23', 1764, 71771, 4776, 48060, '1.0000', '65.4708', '65.4708', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75595, '2022-04-23', 7587, 71772, 4776, NULL, '1.0000', '6.5032', '6.5032', '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 (75596, '2022-04-23', 8925, 71773, 4776, 52739, '1.0000', '2.4000', '2.4000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75597, '2022-04-23', 8836, 71774, 4776, NULL, '3.0000', '12.0000', '12.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 (75598, '2022-04-23', 8690, 71775, 4776, 50462, '1.0000', '10.8000', '10.8000', '14.5000', '14.5000', '17.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75599, '2022-04-23', 8103, 71776, 4776, 50986, '1.0000', '26.9800', '26.9800', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75600, '2022-04-23', 9590, 71777, 4776, NULL, '1.0000', '0.0000', '0.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 (75601, '2022-04-23', 1330, 71778, 4776, 39398, '2.0000', '494.9994', '494.9994', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75602, '2022-04-23', 1837, 71779, 4776, 46669, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75603, '2022-04-23', 7806, 71780, 4776, NULL, '3.0000', '37.5044', '37.5044', '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 (75604, '2022-04-23', 8566, 71781, 4776, 53624, '1.0000', '-13954.0993', '-13954.0993', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75605, '2022-04-23', 1431, 71782, 4776, 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 (75606, '2022-04-23', 8359, 71783, 4776, 54275, '1.0000', '801.6266', '801.6266', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75607, '2022-04-23', 9826, 71784, 4776, 50807, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 418);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75608, '2022-04-23', 8810, 71785, 4776, NULL, '1.0000', '-47.9658', '-47.9658', '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 (75609, '2022-04-23', 8642, 71786, 4776, NULL, '1.0000', '18.0000', '18.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 (75610, '2022-04-23', 2289, 71787, 4776, NULL, '1.0000', '2.5688', '2.5688', '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 (75611, '2022-04-23', 1840, 71788, 4776, 48008, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 355);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75612, '2022-04-23', 9873, 71789, 4777, 53237, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75613, '2022-04-23', 3029, 71790, 4777, NULL, '1.0000', '-71.3510', '-71.3510', '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 (75614, '2022-04-23', 9737, 71791, 4777, NULL, '1.0000', '7.3000', '7.3000', '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 (75615, '2022-04-23', 7802, 71792, 4777, 53226, '4.0000', '1.1497', '1.1497', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75616, '2022-04-23', 2643, 71793, 4777, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75617, '2022-04-23', 8980, 71794, 4777, NULL, '1.0000', '9.5000', '9.5000', '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 (75618, '2022-04-23', 9482, 71795, 4777, NULL, '2.0000', '0.5000', '0.5000', '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 (75619, '2022-04-23', 7411, 71796, 4777, NULL, '1.0000', '1.3013', '1.3013', '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 (75620, '2022-04-23', 8746, 71797, 4777, 53448, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75621, '2022-04-23', 8746, 71797, 4777, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75622, '2022-04-23', 2971, 71798, 4777, 22552, '1.0000', '3.5000', '3.5000', '6.5000', '6.5000', '0.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 (75623, '2022-04-23', 7741, 71799, 4777, NULL, '1.0000', '-6.8417', '-6.8417', '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 (75624, '2022-04-23', 7749, 71800, 4777, NULL, '1.0000', '20.0200', '20.0200', '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 (75625, '2022-04-23', 7802, 71801, 4778, 53226, '2.0000', '1.1497', '1.1497', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75626, '2022-04-23', 7641, 71802, 4778, NULL, '1.0000', '1.9000', '1.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 (75627, '2022-04-23', 1689, 71803, 4778, NULL, '1.0000', '16.1442', '16.1442', '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 (75628, '2022-04-23', 9721, 71804, 4778, NULL, '1.0000', '11.7000', '11.7000', '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 (75629, '2022-04-23', 1608, 71805, 4778, 53660, '1.0000', '4.1377', '4.1377', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75630, '2022-04-23', 1945, 71806, 4778, 53663, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75631, '2022-04-23', 9109, 71807, 4778, 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 (75632, '2022-04-23', 9747, 71808, 4778, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75633, '2022-04-23', 9750, 71809, 4778, NULL, '1.0000', '3.3000', '3.3000', '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 (75634, '2022-04-23', 2821, 71810, 4778, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75635, '2022-04-23', 7411, 71811, 4778, NULL, '1.0000', '1.3013', '1.3013', '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 (75636, '2022-04-23', 2275, 71812, 4778, 54184, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75637, '2022-04-23', 7473, 71813, 4778, 39817, '3.0000', '0.1679', '0.1679', '0.6000', '0.6000', '54.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75638, '2022-04-23', 8085, 71814, 4778, NULL, '3.0000', '14.0000', '14.0000', '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 (75639, '2022-04-23', 1337, 71815, 4778, NULL, '1.0000', '2.0000', '2.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 (75640, '2022-04-23', 2315, 71816, 4778, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '24.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75641, '2022-04-23', 9794, 71817, 4778, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75642, '2022-04-23', 2821, 71818, 4778, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75643, '2022-04-23', 2379, 71819, 4778, NULL, '1.0000', '0.2954', '0.2954', '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 (75644, '2022-04-23', 1840, 71820, 4778, NULL, '2.0000', '0.2400', '0.2400', '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 (75645, '2022-04-23', 7328, 71821, 4778, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75646, '2022-04-23', 2315, 71822, 4778, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '24.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75647, '2022-04-23', 7588, 71823, 4778, 39763, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75648, '2022-04-23', 7762, 71824, 4778, NULL, '1.0000', '5.1000', '5.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 (75649, '2022-04-23', 2443, 71825, 4778, 51935, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75650, '2022-04-23', 9831, 71826, 4778, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '59.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75651, '2022-04-23', 1855, 71827, 4778, NULL, '1.0000', '1.5003', '1.5003', '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 (75652, '2022-04-23', 1965, 71828, 4778, NULL, '1.0000', '17.2400', '17.2400', '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 (75653, '2022-04-23', 9272, 71829, 4778, NULL, '1.0000', '3.1000', '3.1000', '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 (75654, '2022-04-23', 9732, 71830, 4778, 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 (75655, '2022-04-23', 1528, 71831, 4778, 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 (75656, '2022-04-23', 7411, 71832, 4778, NULL, '1.0000', '1.3013', '1.3013', '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 (75657, '2022-04-23', 2242, 71833, 4778, 48481, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75658, '2022-04-23', 2315, 71834, 4778, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '24.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75659, '2022-04-23', 9579, 71835, 4779, 54303, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75660, '2022-04-23', 7473, 71836, 4779, 51825, '5.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75661, '2022-04-23', 8666, 71837, 4779, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75662, '2022-04-23', 7658, 71838, 4779, 52446, '10.0000', '341.6222', '341.6222', '2.8000', '2.8000', '32.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75663, '2022-04-23', 9242, 71839, 4779, 48293, '1.0000', '24.2142', '24.2142', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75664, '2022-04-23', 8430, 71840, 4779, 54086, '1.0000', '35.0000', '35.0000', '46.6000', '46.6000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75665, '2022-04-23', 7570, 71841, 4779, 53932, '1.0000', '6.8025', '6.8025', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75666, '2022-04-23', 2332, 71842, 4779, 51819, '1.0000', '6.7789', '6.7789', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75667, '2022-04-23', 7491, 71843, 4779, NULL, '1.0000', '4.8666', '4.8666', '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 (75668, '2022-04-23', 7772, 71844, 4779, NULL, '1.0000', '32.2400', '32.2400', '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 (75669, '2022-04-23', 9777, 71845, 4779, 54139, '1.0000', '22.9441', '22.9441', '30.2300', '30.2300', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75670, '2022-04-23', 8077, 71846, 4779, NULL, '1.0000', '4.9986', '4.9986', '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 (75671, '2022-04-23', 7632, 71847, 4779, 54290, '1.0000', '12.0422', '12.0422', '18.5000', '18.5000', '9.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75672, '2022-04-23', 9560, 71848, 4779, 51065, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75673, '2022-04-23', 7353, 71849, 4779, 45856, '3.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '27.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75674, '2022-04-23', 7954, 71850, 4779, NULL, '2.0000', '412.7272', '412.7272', '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 (75675, '2022-04-23', 7428, 71851, 4779, 50471, '2.0000', '56.1257', '56.1257', '4.5000', '4.5000', '68.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75676, '2022-04-23', 7783, 71852, 4779, NULL, '4.0000', '3.6500', '3.6500', '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 (75677, '2022-04-23', 8666, 71853, 4779, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75678, '2022-04-23', 8053, 71854, 4779, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75679, '2022-04-23', 7473, 71855, 4779, 51825, '1.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75680, '2022-04-23', 9747, 71856, 4779, 50667, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75681, '2022-04-23', 9868, 71857, 4779, 54289, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75682, '2022-04-23', 7819, 71858, 4779, NULL, '1.0000', '9.5498', '9.5498', '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 (75683, '2022-04-23', 9791, 71859, 4779, 50485, '4.0000', '0.9000', '0.9000', '1.5000', '1.5000', '126.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75684, '2022-04-23', 7482, 71860, 4779, 54271, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75685, '2022-04-23', 7708, 71861, 4779, NULL, '1.0000', '20.1469', '20.1469', '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 (75686, '2022-04-23', 8064, 71862, 4779, 52437, '1.0000', '4.9111', '4.9111', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75687, '2022-04-23', 7917, 71863, 4779, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '132.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75688, '2022-04-23', 7713, 71864, 4779, 50666, '1.0000', '0.3910', '0.3910', '0.6000', '0.6000', '111.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75689, '2022-04-23', 9811, 71865, 4779, NULL, '1.0000', '29.0000', '29.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 (75690, '2022-04-23', 8032, 71866, 4779, 50374, '1.0000', '6.2640', '6.2640', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75691, '2022-04-23', 9461, 71867, 4779, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75692, '2022-04-23', 7557, 71868, 4779, NULL, '10.0000', '0.5000', '0.5000', '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 (75693, '2022-04-23', 2107, 71869, 4779, NULL, '1.0000', '0.2500', '0.2500', '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 (75694, '2022-04-23', 7490, 71870, 4779, 51289, '2.0000', '2.7486', '2.7486', '0.4000', '0.4000', '82.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75695, '2022-04-23', 7547, 71871, 4779, NULL, '1.0000', '0.0000', '0.0000', '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 (75696, '2022-04-23', 7592, 71872, 4779, 53940, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75697, '2022-04-23', 8207, 71873, 4779, NULL, '1.0000', '0.0000', '0.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 (75698, '2022-04-23', 7928, 71874, 4779, NULL, '1.0000', '11.5906', '11.5906', '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 (75699, '2022-04-23', 7709, 71875, 4779, NULL, '1.0000', '154.5165', '154.5165', '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 (75700, '2022-04-23', 7518, 71876, 4779, 53898, '3.0000', '9.3500', '9.3500', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75701, '2022-04-23', 7317, 71877, 4779, 54278, '2.0000', '14.7396', '14.7396', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75702, '2022-04-23', 7783, 71878, 4779, NULL, '1.0000', '3.6500', '3.6500', '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 (75703, '2022-04-23', 2315, 71879, 4780, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '21.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75704, '2022-04-23', 2821, 71880, 4780, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75705, '2022-04-23', 1715, 71881, 4780, 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 (75706, '2022-04-23', 2244, 71882, 4780, 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 (75707, '2022-04-23', 8308, 71883, 4780, NULL, '1.0000', '11.0000', '11.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 (75708, '2022-04-23', 9750, 71884, 4780, NULL, '1.0000', '3.3000', '3.3000', '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 (75709, '2022-04-23', 2242, 71885, 4780, 48481, '1.0000', '4.6984', '4.6984', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75710, '2022-04-23', 8444, 71886, 4780, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75711, '2022-04-23', 1628, 71887, 4780, 51379, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75712, '2022-04-23', 7406, 71888, 4780, NULL, '1.0000', '2.3750', '2.3750', '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 (75713, '2022-04-23', 9634, 71889, 4780, 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 (75714, '2022-04-23', 9866, 71890, 4780, 52158, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75715, '2022-04-23', 7411, 71891, 4780, NULL, '1.0000', '1.3013', '1.3013', '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 (75716, '2022-04-23', 2259, 71892, 4780, 53206, '1.0000', '22.7428', '22.7428', '31.0000', '31.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75717, '2022-04-23', 9482, 71893, 4780, NULL, '2.0000', '0.5000', '0.5000', '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 (75718, '2022-04-23', 9750, 71894, 4780, NULL, '1.0000', '3.3000', '3.3000', '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 (75719, '2022-04-23', 9695, 71895, 4780, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '29.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75720, '2022-04-23', 7473, 71896, 4780, 39817, '2.0000', '0.1679', '0.1679', '0.6000', '0.6000', '52.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75721, '2022-04-23', 1365, 71897, 4780, 22395, '2.0000', '42.5894', '42.5894', '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 (75722, '2022-04-23', 7411, 71898, 4780, NULL, '1.0000', '1.3013', '1.3013', '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 (75723, '2022-04-23', 9846, 71899, 4780, 54166, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75724, '2022-04-23', 9735, 71900, 4780, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75725, '2022-04-23', 2320, 71901, 4780, 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 (75726, '2022-04-23', 7506, 71902, 4780, NULL, '1.0000', '15.0000', '15.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 (75727, '2022-04-23', 2821, 71903, 4780, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75728, '2022-04-23', 7641, 71904, 4780, NULL, '1.0000', '1.9000', '1.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 (75729, '2022-04-23', 1337, 71905, 4780, NULL, '1.0000', '2.0000', '2.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 (75730, '2022-04-23', 7769, 71906, 4780, 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 (75731, '2022-04-23', 7640, 71907, 4780, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75732, '2022-04-23', 7514, 71908, 4780, NULL, '1.0000', '2.2500', '2.2500', '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 (75733, '2022-04-23', 1532, 71909, 4780, 52201, '1.0000', '1.4143', '1.4143', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75734, '2022-04-23', 2237, 71910, 4780, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75735, '2022-04-23', 2275, 71911, 4780, 54184, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75736, '2022-04-23', 8744, 71912, 4780, 53449, '1.0000', '1.8443', '1.8443', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75737, '2022-04-23', 7641, 71913, 4780, NULL, '1.0000', '1.9000', '1.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 (75738, '2022-04-23', 2350, 71914, 4780, 34569, '1.0000', '10.3800', '10.3800', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75739, '2022-04-23', 7483, 71915, 4780, NULL, '3.0000', '0.4200', '0.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 (75740, '2022-04-23', 2242, 71916, 4780, 48481, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75741, '2022-04-23', 7506, 71917, 4781, NULL, '1.0000', '15.0000', '15.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 (75742, '2022-04-23', 9482, 71918, 4781, 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 (75743, '2022-04-23', 2068, 71919, 4781, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75744, '2022-04-23', 1425, 71920, 4781, NULL, '1.0000', '5.1721', '5.1721', '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 (75745, '2022-04-23', 9732, 71921, 4781, 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 (75746, '2022-04-23', 7411, 71922, 4781, NULL, '2.0000', '1.3013', '1.3013', '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 (75747, '2022-04-23', 1590, 71923, 4781, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75748, '2022-04-23', 1330, 71924, 4781, 18937, '1.0000', '2.8000', '2.8000', '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 (75749, '2022-04-23', 7411, 71925, 4781, NULL, '1.0000', '1.3013', '1.3013', '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 (75750, '2022-04-23', 9810, 71926, 4781, NULL, '1.0000', '9.8000', '9.8000', '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 (75751, '2022-04-23', 2061, 71927, 4782, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75752, '2022-04-23', 9791, 71928, 4782, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '124.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75753, '2022-04-23', 9729, 71929, 4782, 53908, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75754, '2022-04-23', 8596, 71930, 4782, NULL, '1.0000', '18.5278', '18.5278', '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 (75755, '2022-04-23', 7926, 71931, 4782, NULL, '1.0000', '5.4999', '5.4999', '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 (75756, '2022-04-23', 2104, 71932, 4782, NULL, '4.0000', '0.2000', '0.2000', '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 (75757, '2022-04-23', 9744, 71933, 4782, 46911, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75758, '2022-04-23', 9791, 71934, 4782, 50485, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '123.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75759, '2022-04-23', 7385, 71935, 4782, 51081, '3.0000', '15.9587', '15.9587', '3.0000', '3.0000', '81.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75760, '2022-04-23', 7428, 71936, 4782, 50471, '1.0000', '56.1257', '56.1257', '4.5000', '4.5000', '67.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75761, '2022-04-23', 7590, 71937, 4782, NULL, '1.0000', '6.0509', '6.0509', '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 (75762, '2022-04-23', 1340, 71938, 4782, 54108, '1.0000', '3.0692', '3.0692', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75763, '2022-04-23', 9272, 71939, 4782, NULL, '1.0000', '3.1000', '3.1000', '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 (75764, '2022-04-23', 8702, 71940, 4782, NULL, '1.0000', '3.6700', '3.6700', '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 (75765, '2022-04-23', 8200, 71941, 4782, NULL, '1.0000', '6.2600', '6.2600', '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 (75766, '2022-04-23', 8017, 71942, 4782, 51835, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75767, '2022-04-23', 7518, 71943, 4782, 53898, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75768, '2022-04-23', 2753, 71944, 4782, 45602, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75769, '2022-04-23', 9092, 71945, 4782, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '147.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75770, '2022-04-23', 7819, 71946, 4782, NULL, '1.0000', '9.5498', '9.5498', '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 (75771, '2022-04-23', 2315, 71947, 4782, 53909, '2.0000', '0.6636', '0.6636', '0.8000', '0.8000', '73.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75772, '2022-04-23', 7456, 71948, 4782, 53784, '1.0000', '35.7778', '35.7778', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75773, '2022-04-23', 2602, 71949, 4782, 54370, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75774, '2022-04-23', 7641, 71950, 4782, NULL, '1.0000', '8.1611', '8.1611', '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 (75775, '2022-04-23', 8941, 71951, 4782, NULL, '1.0000', '12.0000', '12.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 (75776, '2022-04-23', 2062, 71952, 4782, 50992, '1.0000', '8.5900', '8.5900', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75777, '2022-04-23', 8127, 71953, 4782, NULL, '1.0000', '24.5300', '24.5300', '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 (75778, '2022-04-23', 7965, 71954, 4782, NULL, '14.0000', '5.6100', '5.6100', '6.5000', '6.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 (75779, '2022-04-23', 1505, 71955, 4783, 52166, '1.0000', '148.7184', '148.7184', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75780, '2022-04-23', 9750, 71956, 4783, NULL, '1.0000', '3.3000', '3.3000', '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 (75781, '2022-04-23', 9762, 71957, 4783, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75782, '2022-04-23', 1935, 71958, 4783, 52356, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75783, '2022-04-23', 1888, 71959, 4783, 52222, '1.0000', '16.5348', '16.5348', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75784, '2022-04-23', 9750, 71960, 4783, NULL, '1.0000', '3.3000', '3.3000', '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 (75785, '2022-04-23', 2964, 71961, 4783, NULL, '1.0000', '8.5898', '8.5898', '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 (75786, '2022-04-23', 2384, 71962, 4783, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75787, '2022-04-23', 9695, 71963, 4783, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '28.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75788, '2022-04-23', 8746, 71964, 4783, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75789, '2022-04-23', 2228, 71965, 4783, 53636, '1.0000', '30.0000', '30.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75790, '2022-04-23', 8878, 71966, 4783, NULL, '1.0000', '6.6700', '6.6700', '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 (75791, '2022-04-23', 2381, 71967, 4784, 54374, '1.0000', '7.5245', '7.5245', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75792, '2022-04-23', 7459, 71968, 4784, 53706, '6.0000', '2.2700', '2.2700', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75793, '2022-04-23', 7459, 71968, 4784, NULL, '14.0000', '2.2700', '2.2700', '4.0000', '4.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 (75794, '2022-04-23', 7324, 71969, 4784, NULL, '1.0000', '55.7000', '55.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 (75795, '2022-04-23', 2244, 71970, 4784, 49459, '1.0000', '5.3200', '5.3200', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75796, '2022-04-23', 1501, 71971, 4784, 50905, '1.0000', '144.4724', '144.4724', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75797, '2022-04-23', 2236, 71972, 4784, 54415, '1.0000', '5.8362', '5.8362', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75798, '2022-04-23', 1845, 71973, 4784, 54402, '1.0000', '20.3731', '20.3731', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75799, '2022-04-23', 1450, 71974, 4784, 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 (75800, '2022-04-23', 1928, 71975, 4784, 52272, '1.0000', '27.2031', '27.2031', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75801, '2022-04-23', 2315, 71976, 4784, 3069, '2.0000', '0.3300', '0.3300', '0.8000', '0.8000', '164.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75802, '2022-04-23', 7317, 71977, 4784, NULL, '1.0000', '19.5500', '19.5500', '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 (75803, '2022-04-23', 3034, 71978, 4784, 24008, '1.0000', '17.0000', '17.0000', '23.0000', '23.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 (75804, '2022-04-23', 2315, 71979, 4784, 3069, '10.0000', '0.3300', '0.3300', '0.8000', '0.8000', '156.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75805, '2022-04-23', 2511, 71980, 4784, 54417, '1.0000', '9.2818', '9.2818', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75806, '2022-04-23', 2169, 71981, 4784, 54422, '2.0000', '1.1928', '1.1928', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75807, '2022-04-23', 2221, 71982, 4784, 53888, '1.0000', '15.9398', '15.9398', '26.0000', '26.0000', '11.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75808, '2022-04-23', 9741, 71983, 4784, 54378, '1.0000', '7.6728', '7.6728', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75809, '2022-04-23', 2254, 71984, 4784, 49997, '1.0000', '17.8303', '17.8303', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75810, '2022-04-23', 1779, 71985, 4784, 4938, '1.0000', '0.3100', '0.3100', '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 (75811, '2022-04-23', 8444, 71986, 4785, 45577, '1.0000', '10.2581', '10.2581', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75812, '2022-04-23', 9817, 71987, 4785, 53902, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75813, '2022-04-23', 9324, 71988, 4785, 44221, '1.0000', '13.4546', '13.4546', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75814, '2022-04-23', 1542, 71989, 4786, NULL, '1.0000', '115.7329', '115.7329', '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 (75815, '2022-04-23', 9866, 71990, 4787, 52158, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75816, '2022-04-23', 2027, 71991, 4787, 42643, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75817, '2022-04-23', 8202, 71992, 4787, NULL, '1.0000', '1.6600', '1.6600', '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 (75818, '2022-04-23', 1590, 71993, 4788, 50113, '2.0000', '1.7600', '1.7600', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75819, '2022-04-23', 7802, 71994, 4788, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75820, '2022-04-24', 2068, 71995, 4789, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75821, '2022-04-24', 9750, 71996, 4789, NULL, '1.0000', '3.3000', '3.3000', '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 (75822, '2022-04-24', 9810, 71997, 4789, NULL, '1.0000', '9.8000', '9.8000', '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 (75823, '2022-04-24', 7641, 71998, 4789, NULL, '1.0000', '1.9000', '1.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 (75824, '2022-04-24', 9579, 71999, 4789, 53633, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75825, '2022-04-24', 7411, 72000, 4789, NULL, '3.0000', '1.3013', '1.3013', '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 (75826, '2022-04-24', 7762, 72001, 4789, NULL, '1.0000', '5.1000', '5.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 (75827, '2022-04-24', 9695, 72002, 4789, 54075, '3.0000', '5.2084', '5.2084', '7.0000', '7.0000', '25.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75828, '2022-04-24', 1811, 72003, 4789, 53220, '1.0000', '14.8531', '14.8531', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75829, '2022-04-24', 3029, 72004, 4789, NULL, '1.0000', '-71.3510', '-71.3510', '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 (75830, '2022-04-24', 9891, 72005, 4789, NULL, '1.0000', '17.4000', '17.4000', '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 (75831, '2022-04-24', 2244, 72006, 4789, 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 (75832, '2022-04-24', 9534, 72007, 4789, 51246, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75833, '2022-04-24', 1501, 72008, 4789, NULL, '1.0000', '2.1784', '2.1784', '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 (75834, '2022-04-24', 2986, 72009, 4789, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75835, '2022-04-24', 9750, 72010, 4789, NULL, '1.0000', '3.3000', '3.3000', '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 (75836, '2022-04-24', 7411, 72011, 4789, NULL, '1.0000', '1.3013', '1.3013', '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 (75837, '2022-04-24', 8740, 72012, 4789, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75838, '2022-04-24', 9750, 72013, 4789, NULL, '2.0000', '3.3000', '3.3000', '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 (75839, '2022-04-24', 9819, 72014, 4789, 51693, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75840, '2022-04-24', 1577, 72015, 4789, NULL, '1.0000', '2.3271', '2.3271', '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 (75841, '2022-04-24', 7514, 72016, 4789, NULL, '2.0000', '2.2500', '2.2500', '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 (75842, '2022-04-24', 3057, 72017, 4789, 51479, '2.0000', '2.8440', '2.8440', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75843, '2022-04-24', 7790, 72018, 4789, NULL, '1.0000', '17.0000', '17.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 (75844, '2022-04-24', 9794, 72019, 4789, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75845, '2022-04-24', 2445, 72020, 4789, 22547, '5.0000', '3.2000', '3.2000', '5.2800', '5.2800', '19.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 (75846, '2022-04-24', 7819, 72021, 4790, NULL, '1.0000', '9.5498', '9.5498', '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 (75847, '2022-04-24', 7780, 72022, 4790, NULL, '1.0000', '-16.1680', '-16.1680', '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 (75848, '2022-04-24', 7500, 72023, 4790, NULL, '1.0000', '4.4987', '4.4987', '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 (75849, '2022-04-24', 8966, 72024, 4790, 53901, '1.0000', '6.7750', '6.7750', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75850, '2022-04-24', 9463, 72025, 4790, NULL, '1.0000', '4.3333', '4.3333', '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 (75851, '2022-04-24', 7917, 72026, 4790, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '130.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75852, '2022-04-24', 7892, 72027, 4790, NULL, '2.0000', '4.2000', '4.2000', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75853, '2022-04-24', 8000, 72028, 4790, NULL, '1.0000', '-706.5226', '-706.5226', '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 (75854, '2022-04-24', 8596, 72029, 4790, NULL, '1.0000', '18.5278', '18.5278', '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 (75855, '2022-04-24', 8360, 72030, 4790, 54094, '1.0000', '3.2281', '3.2281', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75856, '2022-04-24', 9747, 72031, 4790, 50667, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75857, '2022-04-24', 1935, 72032, 4790, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '140.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75858, '2022-04-24', 8000, 72033, 4790, NULL, '1.0000', '-706.5226', '-706.5226', '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 (75859, '2022-04-24', 7473, 72034, 4790, 51825, '8.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75860, '2022-04-24', 8912, 72035, 4790, NULL, '4.0000', '2.1000', '2.1000', '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 (75861, '2022-04-24', 7411, 72036, 4790, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75862, '2022-04-24', 2506, 72037, 4790, 54299, '1.0000', '4.6430', '4.6430', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75863, '2022-04-24', 7509, 72038, 4790, 53507, '1.0000', '17.2236', '17.2236', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75864, '2022-04-24', 2062, 72039, 4790, 50992, '1.0000', '8.5900', '8.5900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75865, '2022-04-24', 7905, 72040, 4790, NULL, '1.0000', '3.9963', '3.9963', '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 (75866, '2022-04-24', 7609, 72041, 4790, NULL, '1.0000', '67.1301', '67.1301', '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 (75867, '2022-04-24', 9271, 72042, 4790, 46698, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75868, '2022-04-24', 9092, 72043, 4790, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '145.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75869, '2022-04-24', 7959, 72044, 4790, NULL, '2.0000', '9.6000', '9.6000', '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 (75870, '2022-04-24', 2315, 72045, 4790, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '72.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75871, '2022-04-24', 1501, 72046, 4790, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75872, '2022-04-24', 7482, 72047, 4790, 54271, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '15.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75873, '2022-04-24', 7548, 72048, 4791, NULL, '1.0000', '2.0471', '2.0471', '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 (75874, '2022-04-24', 7853, 72049, 4791, 53518, '1.0000', '7951.4905', '7951.4905', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75875, '2022-04-24', 7925, 72050, 4791, 54297, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75876, '2022-04-24', 2726, 72051, 4791, 54152, '1.0000', '0.1000', '0.1000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75877, '2022-04-24', 8557, 72052, 4791, NULL, '3.0000', '10.9447', '10.9447', '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 (75878, '2022-04-24', 7630, 72053, 4791, 53942, '1.0000', '5.6211', '5.6211', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75879, '2022-04-24', 9639, 72054, 4791, 50474, '1.0000', '29.2000', '29.2000', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75880, '2022-04-24', 1501, 72055, 4792, NULL, '2.0000', '2.0500', '2.0500', '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 (75881, '2022-04-24', 1657, 72056, 4792, 518, '10.0000', '0.3900', '0.3900', '0.6000', '0.6000', '82.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 (75882, '2022-04-24', 9579, 72057, 4792, 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 (75883, '2022-04-24', 1641, 72058, 4792, 3214, '-177.0000', '0.9800', '0.9800', '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 (75884, '2022-04-24', 1641, 72058, 4792, NULL, '202.0000', '0.9800', '0.9800', '2.0000', '2.0000', '-202.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75885, '2022-04-24', 2858, 72059, 4792, 17772, '-66.0000', '1.0000', '1.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 (75886, '2022-04-24', 2858, 72059, 4792, NULL, '68.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75887, '2022-04-24', 2327, 72060, 4792, 5083, '-35.0000', '4.5000', '4.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 (75888, '2022-04-24', 2327, 72060, 4792, NULL, '36.0000', '4.5000', '4.5000', '5.0000', '5.0000', '-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 (75889, '2022-04-24', 2167, 72061, 4792, 17165, '-45.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 (75890, '2022-04-24', 2167, 72061, 4792, NULL, '46.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75891, '2022-04-24', 9748, 72062, 4792, NULL, '1.0000', '2.5300', '2.5300', '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 (75892, '2022-04-24', 9839, 72063, 4792, NULL, '1.0000', '15.0200', '15.0200', '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 (75893, '2022-04-24', 2821, 72064, 4792, 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 (75894, '2022-04-24', 7411, 72065, 4792, NULL, '1.0000', '1.3500', '1.3500', '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 (75895, '2022-04-24', 9401, 72066, 4792, NULL, '1.0000', '4.8500', '4.8500', '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 (75896, '2022-04-24', 9839, 72067, 4792, NULL, '1.0000', '15.0200', '15.0200', '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 (75897, '2022-04-24', 9566, 72068, 4793, 52170, '1.0000', '7.8771', '7.8771', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75898, '2022-04-24', 9715, 72069, 4793, 51322, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75899, '2022-04-24', 2293, 72070, 4793, NULL, '3.0000', '10.2680', '10.2680', '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 (75900, '2022-04-24', 2295, 72071, 4793, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75901, '2022-04-24', 1404, 72072, 4793, 38556, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75902, '2022-04-24', 9794, 72073, 4793, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75903, '2022-04-24', 1935, 72074, 4793, 52160, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75904, '2022-04-24', 2293, 72075, 4793, NULL, '1.0000', '10.2680', '10.2680', '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 (75905, '2022-04-24', 9824, 72076, 4794, 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 (75906, '2022-04-24', 9272, 72077, 4794, NULL, '1.0000', '3.1000', '3.1000', '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 (75907, '2022-04-24', 2332, 72078, 4794, 3835, '-8.0000', '5.8900', '5.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 (75908, '2022-04-24', 2332, 72078, 4794, NULL, '9.0000', '5.8900', '5.8900', '10.0000', '10.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 (75909, '2022-04-24', 8308, 72079, 4794, NULL, '1.0000', '2.0800', '2.0800', '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 (75910, '2022-04-24', 9716, 72080, 4794, NULL, '1.0000', '4.4000', '4.4000', '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 (75911, '2022-04-24', 1760, 72081, 4794, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.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 (75912, '2022-04-24', 7881, 72082, 4794, NULL, '1.0000', '2.3000', '2.3000', '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 (75913, '2022-04-24', 9526, 72083, 4794, NULL, '4.0000', '7.0000', '7.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 (75914, '2022-04-24', 1689, 72084, 4794, 4897, '-10.0000', '60.7198', '60.7198', '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 (75915, '2022-04-24', 1689, 72084, 4794, NULL, '11.0000', '60.7198', '60.7198', '19.0000', '19.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 (75916, '2022-04-24', 8712, 72085, 4794, NULL, '1.0000', '7.0400', '7.0400', '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 (75917, '2022-04-24', 7707, 72086, 4794, NULL, '1.0000', '7.0000', '7.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 (75918, '2022-04-24', 2063, 72087, 4794, 2169, '-1.0000', '1.9900', '1.9900', '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 (75919, '2022-04-24', 2063, 72087, 4794, NULL, '2.0000', '1.9900', '1.9900', '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 (75920, '2022-04-24', 8965, 72088, 4794, NULL, '1.0000', '7.2000', '7.2000', '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 (75921, '2022-04-24', 1333, 72089, 4794, 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 (75922, '2022-04-24', 7335, 72090, 4794, NULL, '1.0000', '14.5000', '14.5000', '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 (75923, '2022-04-24', 2769, 72091, 4794, NULL, '4.0000', '1.5200', '1.5200', '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 (75924, '2022-04-24', 1501, 72092, 4794, NULL, '1.0000', '2.0500', '2.0500', '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 (75925, '2022-04-24', 7711, 72093, 4794, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75926, '2022-04-24', 7848, 72094, 4794, NULL, '1.0000', '1.3500', '1.3500', '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 (75927, '2022-04-24', 9461, 72095, 4794, NULL, '1.0000', '1.6000', '1.6000', '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 (75928, '2022-04-24', 1620, 72096, 4794, 8955, '-36.0000', '408.8259', '408.8259', '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 (75929, '2022-04-24', 1620, 72096, 4794, NULL, '38.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75930, '2022-04-24', 1677, 72097, 4794, 3284, '1.0000', '7.8000', '7.8000', '20.0000', '20.0000', '0.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 (75931, '2022-04-24', 7762, 72098, 4794, NULL, '1.0000', '1.5000', '1.5000', '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 (75932, '2022-04-24', 7524, 72099, 4794, NULL, '3.0000', '11.9500', '11.9500', '7.0000', '7.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 (75933, '2022-04-24', 8878, 72100, 4794, NULL, '1.0000', '6.6700', '6.6700', '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 (75934, '2022-04-24', 2251, 72101, 4794, 2788, '-16.0000', '10.9700', '10.9700', '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 (75935, '2022-04-24', 2251, 72101, 4794, NULL, '17.0000', '10.9700', '10.9700', '16.0000', '16.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 (75936, '2022-04-24', 9761, 72102, 4794, 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 (75937, '2022-04-24', 7444, 72103, 4794, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75938, '2022-04-24', 2557, 72104, 4794, 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 (75939, '2022-04-24', 7709, 72105, 4794, NULL, '2.0000', '3.5000', '3.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 (75940, '2022-04-24', 9751, 72106, 4794, 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 (75941, '2022-04-24', 1984, 72107, 4794, NULL, '1.0000', '6.5000', '6.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 (75942, '2022-04-24', 7324, 72108, 4794, NULL, '3.0000', '4.0000', '4.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 (75943, '2022-04-24', 8362, 72109, 4794, NULL, '10.0000', '0.6000', '0.6000', '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 (75944, '2022-04-24', 9791, 72110, 4794, NULL, '2.0000', '0.9000', '0.9000', '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 (75945, '2022-04-24', 9417, 72111, 4794, NULL, '1.0000', '4.0000', '4.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 (75946, '2022-04-24', 7524, 72112, 4794, NULL, '2.0000', '11.9500', '11.9500', '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 (75947, '2022-04-24', 9868, 72113, 4794, 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 (75948, '2022-04-24', 7674, 72114, 4794, 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 (75949, '2022-04-24', 2616, 72115, 4794, 9742, '-13.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 (75950, '2022-04-24', 2616, 72115, 4794, NULL, '14.0000', '3.0000', '3.0000', '4.0000', '4.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 (75951, '2022-04-24', 9839, 72116, 4794, NULL, '1.0000', '15.0200', '15.0200', '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 (75952, '2022-04-24', 8215, 72117, 4794, NULL, '1.0000', '13.9000', '13.9000', '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 (75953, '2022-04-24', 8103, 72118, 4794, NULL, '1.0000', '26.9800', '26.9800', '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 (75954, '2022-04-24', 8878, 72119, 4794, NULL, '2.0000', '6.6700', '6.6700', '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 (75955, '2022-04-24', 7780, 72120, 4794, NULL, '1.0000', '11.6000', '11.6000', '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 (75956, '2022-04-24', 2242, 72121, 4794, 20608, '2.0000', '0.4800', '0.4800', '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 (75957, '2022-04-24', 2242, 72121, 4794, 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 (75958, '2022-04-24', 8181, 72122, 4794, NULL, '3.0000', '4.5000', '4.5000', '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 (75959, '2022-04-24', 2315, 72123, 4794, 2735, '-270.0000', '0.3300', '0.3300', '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 (75960, '2022-04-24', 2315, 72123, 4794, NULL, '271.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-271.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75961, '2022-04-24', 7354, 72124, 4794, NULL, '2.0000', '0.3700', '0.3700', '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 (75962, '2022-04-24', 7691, 72125, 4794, NULL, '1.0000', '4.1300', '4.1300', '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 (75963, '2022-04-24', 9610, 72126, 4794, 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 (75964, '2022-04-24', 7412, 72127, 4794, NULL, '1.0000', '1.5200', '1.5200', '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 (75965, '2022-04-24', 7415, 72128, 4794, NULL, '1.0000', '5.9100', '5.9100', '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 (75966, '2022-04-24', 1916, 72129, 4794, 5445, '-5.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75967, '2022-04-24', 1916, 72129, 4794, NULL, '6.0000', '8.2300', '8.2300', '14.0000', '14.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 (75968, '2022-04-24', 7317, 72130, 4794, NULL, '1.0000', '19.5500', '19.5500', '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 (75969, '2022-04-24', 9274, 72131, 4794, 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 (75970, '2022-04-24', 2315, 72132, 4794, 2735, '-270.0000', '0.3300', '0.3300', '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 (75971, '2022-04-24', 2315, 72132, 4794, NULL, '271.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-271.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75972, '2022-04-24', 1841, 72133, 4794, NULL, '1.0000', '142.5780', '142.5780', '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 (75973, '2022-04-24', 1840, 72134, 4794, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (75974, '2022-04-24', 8933, 72135, 4794, 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 (75975, '2022-04-24', 8101, 72136, 4794, 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 (75976, '2022-04-24', 8032, 72137, 4794, NULL, '1.0000', '6.4400', '6.4400', '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 (75977, '2022-04-24', 7411, 72138, 4794, NULL, '1.0000', '1.3500', '1.3500', '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 (75978, '2022-04-24', 1935, 72139, 4794, 5586, '-66.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 (75979, '2022-04-24', 1935, 72139, 4794, NULL, '67.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75980, '2022-04-24', 9092, 72140, 4794, NULL, '3.0000', '5.2900', '5.2900', '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 (75981, '2022-04-24', 8061, 72141, 4794, NULL, '1.0000', '6.5000', '6.5000', '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 (75982, '2022-04-24', 7514, 72142, 4794, NULL, '2.0000', '2.2500', '2.2500', '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 (75983, '2022-04-24', 7411, 72143, 4794, NULL, '1.0000', '1.3500', '1.3500', '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 (75984, '2022-04-24', 8467, 72144, 4794, NULL, '1.0000', '60.3900', '60.3900', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75985, '2022-04-24', 7999, 72145, 4794, NULL, '1.0000', '1.7500', '1.7500', '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 (75986, '2022-04-24', 7658, 72146, 4794, NULL, '7.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (75987, '2022-04-24', 7799, 72147, 4794, NULL, '1.0000', '6.4000', '6.4000', '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 (75988, '2022-04-24', 7641, 72148, 4794, NULL, '2.0000', '1.9000', '1.9000', '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 (75989, '2022-04-24', 9177, 72149, 4794, 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 (75990, '2022-04-24', 9864, 72150, 4794, NULL, '1.0000', '1.6000', '1.6000', '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 (75991, '2022-04-24', 8315, 72151, 4794, NULL, '1.0000', '14.3500', '14.3500', '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 (75992, '2022-04-24', 1338, 72152, 4794, 16502, '-9.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 (75993, '2022-04-24', 1338, 72152, 4794, NULL, '10.0000', '4.0000', '4.0000', '6.5000', '6.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 (75994, '2022-04-24', 7967, 72153, 4794, NULL, '1.0000', '7.0000', '7.0000', '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 (75995, '2022-04-24', 7954, 72154, 4794, 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 (75996, '2022-04-24', 9245, 72155, 4794, NULL, '1.0000', '6.6100', '6.6100', '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 (75997, '2022-04-24', 8878, 72156, 4794, NULL, '1.0000', '6.6700', '6.6700', '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 (75998, '2022-04-24', 8756, 72157, 4794, 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 (75999, '2022-04-24', 7629, 72158, 4795, NULL, '1.0000', '68.8500', '68.8500', '190.0000', '190.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76000, '2022-04-24', 1363, 72159, 4795, 46590, '1.0000', '4026.7573', '4026.7573', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76001, '2022-04-24', 1363, 72159, 4795, NULL, '27.0000', '4026.7573', '4026.7573', '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 (76002, '2022-04-24', 2221, 72160, 4795, 53888, '1.0000', '15.9398', '15.9398', '26.0000', '26.0000', '10.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76003, '2022-04-24', 7443, 72161, 4795, NULL, '2.0000', '6.8600', '6.8600', '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 (76004, '2022-04-24', 9760, 72162, 4795, NULL, '1.0000', '1.1000', '1.1000', '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 (76005, '2022-04-24', 2315, 72163, 4795, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '153.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76006, '2022-04-24', 7612, 72164, 4795, NULL, '3.0000', '46.0000', '46.0000', '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 (76007, '2022-04-24', 9868, 72165, 4795, 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 (76008, '2022-04-24', 1425, 72166, 4795, 53882, '1.0000', '6.9798', '6.9798', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76009, '2022-04-24', 7758, 72167, 4795, NULL, '1.0000', '10.8500', '10.8500', '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 (76010, '2022-04-24', 8596, 72168, 4795, 48121, '1.0000', '2.2899', '2.2899', '5.0000', '5.0000', '68.0000', 1, 0, NULL, 356);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76011, '2022-04-24', 2102, 72169, 4795, 6014, '1.0000', '1.9000', '1.9000', '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 (76012, '2022-04-24', 9813, 72170, 4795, NULL, '1.0000', '1.4900', '1.4900', '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 (76013, '2022-04-24', 2242, 72171, 4795, 49112, '1.0000', '0.6543', '0.6543', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76014, '2022-04-24', 1772, 72172, 4795, 40908, '1.0000', '6.0491', '6.0491', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76015, '2022-04-24', 8395, 72173, 4795, NULL, '1.0000', '0.9700', '0.9700', '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 (76016, '2022-04-24', 1307, 72174, 4795, NULL, '1.0000', '-1.1000', '-1.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 (76017, '2022-04-24', 2660, 72175, 4795, 49531, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76018, '2022-04-24', 2522, 72176, 4796, 51953, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76019, '2022-04-24', 1346, 72177, 4796, NULL, '4.0000', '-4.0305', '-4.0305', '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 (76020, '2022-04-24', 2769, 72178, 4796, 54167, '4.0000', '1.2375', '1.2375', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76021, '2022-04-24', 2045, 72179, 4796, 49913, '1.0000', '6.5000', '6.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 (76022, '2022-04-24', 1856, 72180, 4796, NULL, '1.0000', '20.0009', '20.0009', '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 (76023, '2022-04-24', 2103, 72181, 4796, 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 (76024, '2022-04-24', 9762, 72182, 4797, 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 (76025, '2022-04-24', 2242, 72183, 4797, 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 (76026, '2022-04-24', 2242, 72183, 4797, 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 (76027, '2022-04-24', 7781, 72184, 4797, NULL, '3.0000', '4.2500', '4.2500', '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 (76028, '2022-04-24', 7482, 72185, 4797, NULL, '1.0000', '3.0500', '3.0500', '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 (76029, '2022-04-24', 7892, 72186, 4797, NULL, '1.0000', '4.2000', '4.2000', '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 (76030, '2022-04-24', 7672, 72187, 4797, NULL, '1.0000', '1.0200', '1.0200', '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 (76031, '2022-04-24', 7881, 72188, 4797, NULL, '1.0000', '2.3000', '2.3000', '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 (76032, '2022-04-24', 7456, 72189, 4797, NULL, '1.0000', '34.7000', '34.7000', '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 (76033, '2022-04-25', 8980, 72190, 4798, NULL, '1.0000', '9.5000', '9.5000', '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 (76034, '2022-04-25', 7564, 72191, 4798, NULL, '1.0000', '0.6400', '0.6400', '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 (76035, '2022-04-25', 8980, 72192, 4798, NULL, '1.0000', '9.5000', '9.5000', '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 (76036, '2022-04-25', 2643, 72193, 4798, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '51.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76037, '2022-04-25', 1765, 72194, 4798, 53668, '1.0000', '5.4760', '5.4760', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76038, '2022-04-25', 1340, 72195, 4798, 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 (76039, '2022-04-25', 7357, 72196, 4798, NULL, '1.0000', '12.2000', '12.2000', '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 (76040, '2022-04-25', 9740, 72197, 4798, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76041, '2022-04-25', 1524, 72198, 4798, 50228, '1.0000', '4.1973', '4.1973', '5.5000', '5.5000', '24.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76042, '2022-04-25', 2948, 72199, 4798, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76043, '2022-04-25', 9888, 72200, 4798, 54182, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76044, '2022-04-25', 7593, 72201, 4798, NULL, '1.0000', '0.8000', '0.8000', '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 (76045, '2022-04-25', 9747, 72202, 4798, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76046, '2022-04-25', 1602, 72203, 4798, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76047, '2022-04-25', 2821, 72204, 4798, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76048, '2022-04-25', 9856, 72205, 4798, 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 (76049, '2022-04-25', 1602, 72206, 4798, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76050, '2022-04-25', 8444, 72207, 4798, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76051, '2022-04-25', 2643, 72208, 4798, 54067, '2.0000', '0.9481', '0.9481', '1.5000', '1.5000', '50.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76052, '2022-04-25', 9831, 72209, 4798, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '58.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76053, '2022-04-25', 1912, 72210, 4799, 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 (76054, '2022-04-25', 1602, 72211, 4799, 5897, '-131.0000', '6.7859', '6.7859', '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 (76055, '2022-04-25', 1602, 72211, 4799, NULL, '132.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-132.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76056, '2022-04-25', 9732, 72212, 4799, 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 (76057, '2022-04-25', 2643, 72213, 4799, NULL, '1.0000', '0.8700', '0.8700', '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 (76058, '2022-04-25', 2366, 72214, 4799, 3833, '-48.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 (76059, '2022-04-25', 2366, 72214, 4799, NULL, '50.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76060, '2022-04-25', 1499, 72215, 4799, 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 (76061, '2022-04-25', 1720, 72216, 4799, 6661, '4.0000', '90.0000', '90.0000', '1.0000', '1.0000', '141.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 (76062, '2022-04-25', 2315, 72217, 4799, 2735, '-272.0000', '0.3300', '0.3300', '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 (76063, '2022-04-25', 2315, 72217, 4799, NULL, '273.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-273.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76064, '2022-04-25', 2135, 72218, 4799, 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 (76065, '2022-04-25', 2602, 72219, 4799, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (76066, '2022-04-25', 1388, 72220, 4799, 20697, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (76067, '2022-04-25', 1674, 72221, 4799, NULL, '2.0000', '3.6000', '3.6000', '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 (76068, '2022-04-25', 1618, 72222, 4799, 8737, '-10.0000', '11.8200', '11.8200', '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 (76069, '2022-04-25', 1618, 72222, 4799, NULL, '11.0000', '11.8200', '11.8200', '16.0000', '16.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 (76070, '2022-04-25', 1452, 72223, 4799, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76071, '2022-04-25', 1935, 72224, 4799, 5586, '-67.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 (76072, '2022-04-25', 1935, 72224, 4799, NULL, '68.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76073, '2022-04-25', 8546, 72225, 4800, NULL, '2.0000', '6.6000', '6.6000', '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 (76074, '2022-04-25', 9740, 72226, 4800, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76075, '2022-04-25', 1463, 72227, 4800, NULL, '1.0000', '18.5000', '18.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 (76076, '2022-04-25', 8744, 72228, 4800, 53449, '1.0000', '1.8443', '1.8443', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76077, '2022-04-25', 2643, 72229, 4800, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76078, '2022-04-25', 2237, 72230, 4800, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76079, '2022-04-25', 7959, 72231, 4800, NULL, '2.0000', '9.6000', '9.6000', '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 (76080, '2022-04-25', 9750, 72232, 4800, NULL, '1.0000', '3.3000', '3.3000', '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 (76081, '2022-04-25', 2068, 72233, 4800, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76082, '2022-04-25', 8170, 72234, 4800, NULL, '1.0000', '5.7500', '5.7500', '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 (76083, '2022-04-25', 9794, 72235, 4800, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76084, '2022-04-25', 9810, 72236, 4800, NULL, '1.0000', '9.8000', '9.8000', '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 (76085, '2022-04-25', 1577, 72237, 4800, NULL, '1.0000', '2.3271', '2.3271', '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 (76086, '2022-04-25', 1499, 72238, 4800, 52148, '2.0000', '0.3747', '0.3747', '0.6000', '0.6000', '27.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76087, '2022-04-25', 7514, 72239, 4800, NULL, '1.0000', '2.2500', '2.2500', '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 (76088, '2022-04-25', 7609, 72240, 4800, NULL, '1.0000', '4.3300', '4.3300', '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 (76089, '2022-04-25', 9794, 72241, 4800, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76090, '2022-04-25', 7411, 72242, 4800, NULL, '2.0000', '1.3013', '1.3013', '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 (76091, '2022-04-25', 7459, 72243, 4800, NULL, '1.0000', '-15.3118', '-15.3118', '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 (76092, '2022-04-25', 9762, 72244, 4800, 51662, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76093, '2022-04-25', 1695, 72245, 4800, 54176, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76094, '2022-04-25', 2315, 72246, 4800, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '19.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76095, '2022-04-25', 1665, 72247, 4800, 51312, '1.0000', '1.1432', '1.1432', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76096, '2022-04-25', 8745, 72248, 4800, 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 (76097, '2022-04-25', 8769, 72249, 4800, NULL, '3.0000', '6.6000', '6.6000', '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 (76098, '2022-04-25', 2327, 72250, 4800, 49257, '2.0000', '3.8469', '3.8469', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76099, '2022-04-25', 7473, 72251, 4800, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '51.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76100, '2022-04-25', 7593, 72252, 4800, NULL, '1.0000', '0.8000', '0.8000', '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 (76101, '2022-04-25', 1307, 72253, 4800, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76102, '2022-04-25', 1646, 72254, 4800, 53661, '1.0000', '5.5398', '5.5398', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76103, '2022-04-25', 9695, 72255, 4800, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76104, '2022-04-25', 2298, 72256, 4800, NULL, '1.0000', '4.1383', '4.1383', '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 (76105, '2022-04-25', 2262, 72257, 4800, 51483, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76106, '2022-04-25', 1571, 72258, 4800, NULL, '1.0000', '308.7500', '308.7500', '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 (76107, '2022-04-25', 1307, 72259, 4800, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76108, '2022-04-25', 7459, 72260, 4800, NULL, '20.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (76109, '2022-04-25', 7609, 72261, 4800, NULL, '1.0000', '4.3300', '4.3300', '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 (76110, '2022-04-25', 1935, 72262, 4800, 52160, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76111, '2022-04-25', 2293, 72263, 4800, NULL, '1.0000', '10.2680', '10.2680', '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 (76112, '2022-04-25', 2283, 72264, 4800, 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 (76113, '2022-04-25', 9566, 72265, 4800, 52170, '1.0000', '7.8771', '7.8771', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76114, '2022-04-25', 2227, 72266, 4800, 53637, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76115, '2022-04-25', 2156, 72267, 4800, 19853, '1.0000', '3.2500', '3.2500', '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 (76116, '2022-04-25', 7708, 72268, 4800, NULL, '1.0000', '6.3400', '6.3400', '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 (76117, '2022-04-25', 7411, 72269, 4801, NULL, '1.0000', '1.3013', '1.3013', '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 (76118, '2022-04-25', 7593, 72270, 4801, NULL, '1.0000', '0.8000', '0.8000', '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 (76119, '2022-04-25', 9695, 72271, 4801, 54075, '2.0000', '5.2084', '5.2084', '7.0000', '7.0000', '22.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76120, '2022-04-25', 7588, 72272, 4801, 39763, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76121, '2022-04-25', 9737, 72273, 4801, NULL, '1.0000', '7.3000', '7.3000', '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 (76122, '2022-04-25', 2906, 72274, 4801, NULL, '1.0000', '2.6000', '2.6000', '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 (76123, '2022-04-25', 2567, 72275, 4801, 53635, '1.0000', '32.8217', '32.8217', '46.0000', '46.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76124, '2022-04-25', 1859, 72276, 4801, 51359, '1.0000', '22.9320', '22.9320', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76125, '2022-04-25', 9750, 72277, 4801, NULL, '1.0000', '3.3000', '3.3000', '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 (76126, '2022-04-25', 2242, 72278, 4801, 48481, '3.0000', '4.6984', '4.6984', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76127, '2022-04-25', 2296, 72279, 4801, NULL, '1.0000', '14.4550', '14.4550', '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 (76128, '2022-04-25', 9663, 72280, 4801, NULL, '1.0000', '18.0000', '18.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 (76129, '2022-04-25', 7324, 72281, 4801, 51663, '1.0000', '5.4813', '5.4813', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76130, '2022-04-25', 2340, 72282, 4801, 49311, '1.0000', '7.4200', '7.4200', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76131, '2022-04-25', 8362, 72283, 4801, NULL, '2.0000', '4.1000', '4.1000', '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 (76132, '2022-04-25', 1532, 72284, 4801, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76133, '2022-04-25', 2242, 72285, 4801, 48481, '2.0000', '4.6984', '4.6984', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76134, '2022-04-25', 7472, 72286, 4801, NULL, '2.0000', '-0.2237', '-0.2237', '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 (76135, '2022-04-25', 2943, 72287, 4801, 47069, '1.0000', '3.3342', '3.3342', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76136, '2022-04-25', 8759, 72288, 4801, NULL, '1.0000', '15.0800', '15.0800', '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 (76137, '2022-04-25', 1409, 72289, 4801, 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 (76138, '2022-04-25', 1779, 72290, 4801, 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 (76139, '2022-04-25', 8146, 72291, 4801, 52182, '1.0000', '4.4100', '4.4100', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76140, '2022-04-25', 9543, 72292, 4801, 40122, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76141, '2022-04-25', 9452, 72293, 4801, 49318, '1.0000', '58.0000', '58.0000', '77.0000', '77.0000', '2.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76142, '2022-04-25', 2237, 72294, 4801, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76143, '2022-04-25', 8043, 72295, 4801, NULL, '1.0000', '27.9800', '27.9800', '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 (76144, '2022-04-25', 1867, 72296, 4802, 53225, '1.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76145, '2022-04-25', 9482, 72297, 4802, 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 (76146, '2022-04-25', 8288, 72298, 4803, NULL, '5.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (76147, '2022-04-25', 7385, 72299, 4803, NULL, '2.0000', '2.0000', '2.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 (76148, '2022-04-25', 9750, 72300, 4803, NULL, '1.0000', '3.3000', '3.3000', '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 (76149, '2022-04-25', 8207, 72301, 4803, NULL, '1.0000', '0.0000', '0.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 (76150, '2022-04-25', 7852, 72302, 4803, NULL, '1.0000', '15.0000', '15.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 (76151, '2022-04-25', 2242, 72303, 4803, 3059, '-4.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 (76152, '2022-04-25', 2242, 72303, 4803, NULL, '7.0000', '0.4800', '0.4800', '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 (76153, '2022-04-25', 8017, 72304, 4803, NULL, '2.0000', '40.0000', '40.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 (76154, '2022-04-25', 1575, 72305, 4803, 7594, '-3.0000', '66.8966', '66.8966', '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 (76155, '2022-04-25', 1575, 72305, 4803, NULL, '4.0000', '66.8966', '66.8966', '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 (76156, '2022-04-25', 1935, 72306, 4803, 5586, '-68.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 (76157, '2022-04-25', 1935, 72306, 4803, NULL, '70.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76158, '2022-04-25', 9274, 72307, 4803, 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 (76159, '2022-04-25', 7674, 72308, 4803, 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 (76160, '2022-04-25', 7900, 72309, 4803, NULL, '2.0000', '2.5000', '2.5000', '3.2000', '3.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 (76161, '2022-04-25', 8814, 72310, 4803, NULL, '10.0000', '5.0000', '5.0000', '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 (76162, '2022-04-25', 2506, 72311, 4803, 16244, '-7.0000', '3.4900', '3.4900', '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 (76163, '2022-04-25', 2506, 72311, 4803, NULL, '8.0000', '3.4900', '3.4900', '6.5000', '6.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 (76164, '2022-04-25', 9731, 72312, 4803, 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 (76165, '2022-04-25', 8101, 72313, 4803, 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 (76166, '2022-04-25', 7672, 72314, 4803, NULL, '1.0000', '1.0200', '1.0200', '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 (76167, '2022-04-25', 7641, 72315, 4803, NULL, '1.0000', '1.9000', '1.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 (76168, '2022-04-25', 7321, 72316, 4803, NULL, '1.0000', '7.9500', '7.9500', '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 (76169, '2022-04-25', 2232, 72317, 4803, 2776, '-5.0000', '29.0000', '29.0000', '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 (76170, '2022-04-25', 2232, 72317, 4803, NULL, '6.0000', '29.0000', '29.0000', '43.0000', '43.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 (76171, '2022-04-25', 2315, 72318, 4803, 2735, '-273.0000', '0.3300', '0.3300', '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 (76172, '2022-04-25', 2315, 72318, 4803, NULL, '275.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-275.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76173, '2022-04-25', 8978, 72319, 4803, NULL, '1.0000', '0.6900', '0.6900', '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 (76174, '2022-04-25', 7412, 72320, 4803, NULL, '1.0000', '1.5200', '1.5200', '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 (76175, '2022-04-25', 9734, 72321, 4803, NULL, '2.0000', '0.3200', '0.3200', '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 (76176, '2022-04-25', 7674, 72322, 4803, 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 (76177, '2022-04-25', 7967, 72323, 4803, NULL, '1.0000', '7.0000', '7.0000', '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 (76178, '2022-04-25', 7588, 72324, 4803, NULL, '1.0000', '6.9000', '6.9000', '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 (76179, '2022-04-25', 9286, 72325, 4803, 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 (76180, '2022-04-25', 1510, 72326, 4803, NULL, '1.0000', '8.8600', '8.8600', '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 (76181, '2022-04-25', 8944, 72327, 4803, NULL, '1.0000', '45.2400', '45.2400', '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 (76182, '2022-04-25', 8300, 72328, 4803, NULL, '1.0000', '7.4300', '7.4300', '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 (76183, '2022-04-25', 7518, 72329, 4803, NULL, '1.0000', '7.8200', '7.8200', '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 (76184, '2022-04-25', 7608, 72330, 4803, NULL, '1.0000', '6.9800', '6.9800', '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 (76185, '2022-04-25', 7385, 72331, 4803, NULL, '2.0000', '2.0000', '2.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 (76186, '2022-04-25', 7411, 72332, 4803, NULL, '1.0000', '1.3500', '1.3500', '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 (76187, '2022-04-25', 8666, 72333, 4803, NULL, '1.0000', '0.4600', '0.4600', '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 (76188, '2022-04-25', 8074, 72334, 4803, NULL, '1.0000', '25.3504', '25.3504', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76189, '2022-04-25', 9751, 72335, 4803, 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 (76190, '2022-04-25', 9424, 72336, 4803, NULL, '2.0000', '3.6300', '3.6300', '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 (76191, '2022-04-25', 8898, 72337, 4803, NULL, '1.0000', '45.5400', '45.5400', '60.5000', '60.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76192, '2022-04-25', 7713, 72338, 4803, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (76193, '2022-04-25', 7781, 72339, 4803, NULL, '3.0000', '4.2500', '4.2500', '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 (76194, '2022-04-25', 7514, 72340, 4803, NULL, '1.0000', '2.2500', '2.2500', '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 (76195, '2022-04-25', 9784, 72341, 4803, 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 (76196, '2022-04-25', 2315, 72342, 4803, 2735, '-273.0000', '0.3300', '0.3300', '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 (76197, '2022-04-25', 2315, 72342, 4803, NULL, '274.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-274.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76198, '2022-04-25', 8415, 72343, 4803, NULL, '1.0000', '3.2500', '3.2500', '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 (76199, '2022-04-25', 9695, 72344, 4803, NULL, '1.0000', '4.5000', '4.5000', '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 (76200, '2022-04-25', 8285, 72345, 4803, 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 (76201, '2022-04-25', 2289, 72346, 4803, 2949, '-120.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 (76202, '2022-04-25', 2289, 72346, 4803, NULL, '123.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76203, '2022-04-25', 7411, 72347, 4803, NULL, '1.0000', '1.3500', '1.3500', '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 (76204, '2022-04-25', 8054, 72348, 4803, NULL, '1.0000', '16.0000', '16.0000', '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 (76205, '2022-04-25', 7654, 72349, 4803, NULL, '1.0000', '49.3900', '49.3900', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76206, '2022-04-25', 8056, 72350, 4803, NULL, '2.0000', '0.0000', '0.0000', '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 (76207, '2022-04-25', 8878, 72351, 4803, NULL, '2.0000', '6.6700', '6.6700', '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 (76208, '2022-04-25', 7411, 72352, 4803, NULL, '2.0000', '1.3500', '1.3500', '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 (76209, '2022-04-25', 7385, 72353, 4803, NULL, '3.0000', '2.0000', '2.0000', '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 (76210, '2022-04-25', 7672, 72354, 4803, NULL, '2.0000', '1.0200', '1.0200', '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 (76211, '2022-04-25', 8395, 72355, 4803, NULL, '1.0000', '0.9700', '0.9700', '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 (76212, '2022-04-25', 8920, 72356, 4803, 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 (76213, '2022-04-25', 7518, 72357, 4803, NULL, '1.0000', '7.8200', '7.8200', '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 (76214, '2022-04-25', 9729, 72358, 4803, NULL, '2.0000', '0.6200', '0.6200', '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 (76215, '2022-04-25', 2283, 72359, 4803, 2943, '-13.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 (76216, '2022-04-25', 2283, 72359, 4803, NULL, '14.0000', '1.4300', '1.4300', '2.0000', '2.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 (76217, '2022-04-25', 7397, 72360, 4803, NULL, '1.0000', '74.1500', '74.1500', '98.0000', '98.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76218, '2022-04-25', 8444, 72361, 4803, NULL, '1.0000', '1.6000', '1.6000', '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 (76219, '2022-04-25', 7862, 72362, 4803, NULL, '1.0000', '3.8500', '3.8500', '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 (76220, '2022-04-25', 1935, 72363, 4803, 5586, '-68.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 (76221, '2022-04-25', 1935, 72363, 4803, NULL, '69.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76222, '2022-04-25', 8918, 72364, 4803, NULL, '1.0000', '1.0400', '1.0400', '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 (76223, '2022-04-25', 8677, 72365, 4803, NULL, '3.0000', '1.2800', '1.2800', '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 (76224, '2022-04-25', 7886, 72366, 4803, 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 (76225, '2022-04-25', 8015, 72367, 4803, NULL, '8.0000', '2.9000', '2.9000', '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 (76226, '2022-04-25', 7738, 72368, 4804, 49144, '2.0000', '8.0000', '8.0000', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76227, '2022-04-25', 2068, 72369, 4804, 54407, '1.0000', '11.7410', '11.7410', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76228, '2022-04-25', 1620, 72370, 4804, 53895, '8.0000', '2.2300', '2.2300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76229, '2022-04-25', 8761, 72371, 4804, 54341, '1.0000', '10.8394', '10.8394', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76230, '2022-04-25', 1339, 72372, 4804, 44611, '2.0000', '1.7611', '1.7611', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76231, '2022-04-25', 7462, 72373, 4804, NULL, '1.0000', '23.0000', '23.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 (76232, '2022-04-25', 8746, 72374, 4804, 54338, '1.0000', '180.2641', '180.2641', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76233, '2022-04-25', 2858, 72375, 4804, 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 (76234, '2022-04-25', 2244, 72376, 4804, 49459, '1.0000', '5.3200', '5.3200', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76235, '2022-04-25', 1863, 72377, 4804, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76236, '2022-04-25', 9747, 72378, 4804, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76237, '2022-04-25', 2169, 72379, 4804, 54422, '1.0000', '1.1928', '1.1928', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76238, '2022-04-25', 2965, 72380, 4804, 54343, '1.0000', '4.2925', '4.2925', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76239, '2022-04-25', 2169, 72381, 4804, 54422, '1.0000', '1.1928', '1.1928', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76240, '2022-04-25', 8566, 72382, 4804, 54325, '1.0000', '-79.4569', '-79.4569', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76241, '2022-04-25', 2549, 72383, 4804, 9534, '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 (76242, '2022-04-25', 1863, 72384, 4804, 49847, '1.0000', '1.2686', '1.2686', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76243, '2022-04-25', 2787, 72385, 4804, 19047, '1.0000', '16.0200', '16.0200', '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 (76244, '2022-04-25', 1669, 72386, 4804, 46068, '7.0000', '19.0286', '19.0286', '9.5000', '9.5000', '59.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76245, '2022-04-25', 1339, 72387, 4804, 44611, '1.0000', '1.7611', '1.7611', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76246, '2022-04-25', 1520, 72388, 4804, 11038, '1.0000', '1.4700', '1.4700', '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 (76247, '2022-04-25', 8761, 72389, 4804, 54341, '1.0000', '10.8394', '10.8394', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76248, '2022-04-25', 1450, 72390, 4804, 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 (76249, '2022-04-25', 1386, 72391, 4805, 53896, '1.0000', '371.5164', '371.5164', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76250, '2022-04-25', 2169, 72392, 4805, 54422, '1.0000', '1.1928', '1.1928', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76251, '2022-04-25', 9695, 72393, 4805, 52314, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76252, '2022-04-25', 1578, 72394, 4805, 49158, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76253, '2022-04-25', 1602, 72395, 4805, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76254, '2022-04-25', 1409, 72396, 4806, 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 (76255, '2022-04-25', 2821, 72397, 4806, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76256, '2022-04-25', 2262, 72398, 4806, 51483, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76257, '2022-04-25', 1867, 72399, 4806, 53225, '2.0000', '-0.1213', '-0.1213', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76258, '2022-04-25', 8276, 72400, 4806, NULL, '1.0000', '11.8200', '11.8200', '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 (76259, '2022-04-25', 1812, 72401, 4806, 52345, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76260, '2022-04-25', 1307, 72402, 4806, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76261, '2022-04-25', 2260, 72403, 4806, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76262, '2022-04-25', 1965, 72404, 4806, NULL, '1.0000', '17.2400', '17.2400', '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 (76263, '2022-04-25', 2009, 72405, 4806, 39999, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76264, '2022-04-25', 2164, 72406, 4806, NULL, '1.0000', '12.0000', '12.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 (76265, '2022-04-25', 1307, 72407, 4806, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76266, '2022-04-25', 2103, 72408, 4806, 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 (76267, '2022-04-25', 7641, 72409, 4806, NULL, '1.0000', '1.9000', '1.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 (76268, '2022-04-25', 1425, 72410, 4806, NULL, '1.0000', '5.1721', '5.1721', '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 (76269, '2022-04-25', 1812, 72411, 4806, 52345, '1.0000', '8.3756', '8.3756', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76270, '2022-04-25', 7411, 72412, 4806, NULL, '1.0000', '1.3013', '1.3013', '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 (76271, '2022-04-25', 1577, 72413, 4806, NULL, '1.0000', '2.3271', '2.3271', '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 (76272, '2022-04-25', 2109, 72414, 4806, 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 (76273, '2022-04-25', 8878, 72415, 4806, NULL, '1.0000', '6.6700', '6.6700', '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 (76274, '2022-04-25', 9634, 72416, 4806, 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 (76275, '2022-04-25', 7713, 72417, 4806, 48657, '2.0000', '24.6545', '24.6545', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76276, '2022-04-25', 9868, 72418, 4806, 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 (76277, '2022-04-25', 7758, 72419, 4806, NULL, '1.0000', '10.8500', '10.8500', '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 (76278, '2022-04-25', 8744, 72420, 4806, 53449, '1.0000', '1.8443', '1.8443', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76279, '2022-04-25', 9885, 72421, 4806, 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 (76280, '2022-04-25', 7533, 72422, 4806, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76281, '2022-04-25', 1602, 72423, 4807, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '37.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76282, '2022-04-25', 1804, 72424, 4807, NULL, '1.0000', '4.3180', '4.3180', '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 (76283, '2022-04-25', 9734, 72425, 4807, NULL, '2.0000', '0.3200', '0.3200', '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 (76284, '2022-04-25', 9831, 72426, 4807, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '57.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76285, '2022-04-25', 2109, 72427, 4807, 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 (76286, '2022-04-25', 2394, 72428, 4808, 46024, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76287, '2022-04-25', 2169, 72429, 4808, 54422, '1.0000', '1.1928', '1.1928', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76288, '2022-04-25', 7612, 72430, 4808, NULL, '2.0000', '46.0000', '46.0000', '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 (76289, '2022-04-25', 2221, 72431, 4808, 53888, '1.0000', '15.9398', '15.9398', '26.0000', '26.0000', '9.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76290, '2022-04-25', 2221, 72432, 4809, 53888, '1.0000', '15.9398', '15.9398', '26.0000', '26.0000', '8.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76291, '2022-04-25', 8878, 72433, 4810, NULL, '1.0000', '6.6700', '6.6700', '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 (76292, '2022-04-25', 7412, 72434, 4810, NULL, '1.0000', '1.5200', '1.5200', '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 (76293, '2022-04-25', 9852, 72435, 4810, 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 (76294, '2022-04-25', 2100, 72436, 4810, 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 (76295, '2022-04-25', 2541, 72437, 4810, 33788, '1.0000', '10.7054', '10.7054', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76296, '2022-04-25', 2541, 72437, 4810, 22324, '1.0000', '10.7054', '10.7054', '14.5000', '14.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 (76297, '2022-04-25', 9715, 72438, 4810, NULL, '1.0000', '9.4000', '9.4000', '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 (76298, '2022-04-25', 9729, 72439, 4810, NULL, '2.0000', '0.6200', '0.6200', '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 (76299, '2022-04-25', 7411, 72440, 4810, NULL, '2.0000', '1.3500', '1.3500', '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 (76300, '2022-04-25', 9775, 72441, 4810, NULL, '1.0000', '7.9000', '7.9000', '13.7300', '13.7300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76301, '2022-04-25', 9735, 72442, 4810, 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 (76302, '2022-04-25', 8666, 72443, 4810, NULL, '1.0000', '0.4600', '0.4600', '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 (76303, '2022-04-25', 7991, 72444, 4810, NULL, '1.0000', '26.5700', '26.5700', '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 (76304, '2022-04-25', 7798, 72445, 4810, NULL, '1.0000', '14.9000', '14.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 (76305, '2022-04-25', 1760, 72446, 4810, 20604, '3.0000', '111.8384', '111.8384', '1.0000', '1.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 (76306, '2022-04-25', 7799, 72447, 4810, NULL, '1.0000', '6.4000', '6.4000', '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 (76307, '2022-04-25', 7442, 72448, 4810, 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 (76308, '2022-04-25', 7570, 72449, 4810, NULL, '1.0000', '10.0000', '10.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 (76309, '2022-04-25', 1935, 72450, 4810, 5586, '-71.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 (76310, '2022-04-25', 1935, 72450, 4810, NULL, '73.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76311, '2022-04-25', 8638, 72451, 4810, NULL, '1.0000', '0.5100', '0.5100', '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 (76312, '2022-04-25', 2893, 72452, 4810, 18242, '-7.0000', '6.0000', '6.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 (76313, '2022-04-25', 2893, 72452, 4810, NULL, '8.0000', '6.0000', '6.0000', '8.5000', '8.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 (76314, '2022-04-26', 8101, 72453, 4811, NULL, '2.0000', '21.7000', '21.7000', '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 (76315, '2022-04-26', 2068, 72454, 4811, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76316, '2022-04-26', 2384, 72455, 4811, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76317, '2022-04-26', 2289, 72456, 4811, NULL, '3.0000', '0.2222', '0.2222', '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 (76318, '2022-04-26', 9794, 72457, 4811, 52357, '5.0000', '1.0800', '1.0800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76319, '2022-04-26', 1841, 72458, 4811, NULL, '3.0000', '0.2601', '0.2601', '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 (76320, '2022-04-26', 1502, 72459, 4811, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '14.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76321, '2022-04-26', 9848, 72460, 4811, 51399, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76322, '2022-04-26', 2410, 72461, 4811, 47057, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76323, '2022-04-26', 9878, 72462, 4811, 54168, '1.0000', '9.6000', '9.6000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76324, '2022-04-26', 2073, 72463, 4811, NULL, '2.0000', '2.3000', '2.3000', '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 (76325, '2022-04-26', 8844, 72464, 4811, 51362, '1.0000', '4.7829', '4.7829', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76326, '2022-04-26', 1748, 72465, 4811, NULL, '2.0000', '0.3200', '0.3200', '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 (76327, '2022-04-26', 7328, 72466, 4811, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76328, '2022-04-26', 9778, 72467, 4811, 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 (76329, '2022-04-26', 9463, 72468, 4811, NULL, '1.0000', '18.9000', '18.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 (76330, '2022-04-26', 2346, 72469, 4811, NULL, '1.0000', '5.8000', '5.8000', '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 (76331, '2022-04-26', 2410, 72470, 4811, 47057, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76332, '2022-04-26', 9731, 72471, 4811, 47083, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76333, '2022-04-26', 1952, 72472, 4811, 34576, '1.0000', '37.2246', '37.2246', '49.0000', '49.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76334, '2022-04-26', 9566, 72473, 4811, 52170, '1.0000', '7.8771', '7.8771', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76335, '2022-04-26', 9729, 72474, 4811, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76336, '2022-04-26', 7756, 72475, 4811, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76337, '2022-04-26', 9726, 72476, 4811, 52347, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76338, '2022-04-26', 2324, 72477, 4812, 22558, '1.0000', '10.5000', '10.5000', '15.0000', '15.0000', '0.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 (76339, '2022-04-26', 8444, 72478, 4812, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76340, '2022-04-26', 1577, 72479, 4812, NULL, '1.0000', '2.3271', '2.3271', '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 (76341, '2022-04-26', 9794, 72480, 4812, 52357, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76342, '2022-04-26', 2275, 72481, 4812, 54184, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76343, '2022-04-26', 1602, 72482, 4812, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '36.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76344, '2022-04-26', 2109, 72483, 4812, 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 (76345, '2022-04-26', 2759, 72484, 4812, 34928, '1.0000', '3.9167', '3.9167', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76346, '2022-04-26', 2105, 72485, 4812, 54575, '2.0000', '2.4149', '2.4149', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76347, '2022-04-26', 1824, 72486, 4812, 34627, '1.0000', '82.2142', '82.2142', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76348, '2022-04-26', 2295, 72487, 4812, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76349, '2022-04-26', 1311, 72488, 4812, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76350, '2022-04-26', 2025, 72489, 4812, 53421, '1.0000', '4.6606', '4.6606', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76351, '2022-04-26', 7334, 72490, 4812, NULL, '3.0000', '8.1600', '8.1600', '13.5000', '13.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 (76352, '2022-04-26', 1521, 72491, 4812, 48883, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76353, '2022-04-26', 2413, 72492, 4812, NULL, '5.0000', '1.0500', '1.0500', '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 (76354, '2022-04-26', 1609, 72493, 4812, 19393, '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 (76355, '2022-04-26', 9840, 72494, 4812, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76356, '2022-04-26', 2315, 72495, 4812, 47139, '2.0000', '0.4851', '0.4851', '0.8000', '0.8000', '17.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76357, '2022-04-26', 2769, 72496, 4812, 54561, '4.0000', '1.8925', '1.8925', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76358, '2022-04-26', 2275, 72497, 4812, 54184, '2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76359, '2022-04-26', 1812, 72498, 4812, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76360, '2022-04-26', 1307, 72499, 4812, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76361, '2022-04-26', 2283, 72500, 4812, 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 (76362, '2022-04-26', 9732, 72501, 4812, 54524, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76363, '2022-04-26', 8149, 72502, 4813, 53667, '1.0000', '6.6333', '6.6333', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76364, '2022-04-26', 1562, 72503, 4813, 53666, '1.0000', '5.7883', '5.7883', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76365, '2022-04-26', 8145, 72504, 4813, NULL, '1.0000', '7.0000', '7.0000', '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 (76366, '2022-04-26', 2035, 72505, 4813, 49905, '1.0000', '5.2000', '5.2000', '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 (76367, '2022-04-26', 9794, 72506, 4814, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76368, '2022-04-26', 2379, 72507, 4814, NULL, '1.0000', '0.2954', '0.2954', '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 (76369, '2022-04-26', 7976, 72508, 4814, NULL, '1.0000', '20.6900', '20.6900', '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 (76370, '2022-04-26', 9698, 72509, 4814, 52196, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76371, '2022-04-26', 8923, 72510, 4814, NULL, '1.0000', '7.2500', '7.2500', '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 (76372, '2022-04-26', 1602, 72511, 4815, 5897, '-132.0000', '6.7859', '6.7859', '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 (76373, '2022-04-26', 1602, 72511, 4815, NULL, '133.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-133.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76374, '2022-04-26', 9734, 72512, 4815, NULL, '2.0000', '0.3200', '0.3200', '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 (76375, '2022-04-26', 2169, 72513, 4815, 10737, '-114.0000', '3.8397', '3.8397', '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 (76376, '2022-04-26', 2169, 72513, 4815, NULL, '115.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-115.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76377, '2022-04-26', 9740, 72514, 4815, NULL, '1.0000', '0.6600', '0.6600', '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 (76378, '2022-04-26', 1322, 72515, 4815, 1016, '1.0000', '-76.1143', '-76.1143', '6.5000', '6.5000', '8.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 (76379, '2022-04-26', 1812, 72516, 4815, 8224, '-85.0000', '7.8900', '7.8900', '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 (76380, '2022-04-26', 1812, 72516, 4815, NULL, '88.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76381, '2022-04-26', 1430, 72517, 4815, 22347, '1.0000', '13.0000', '13.0000', '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 (76382, '2022-04-26', 8079, 72518, 4815, NULL, '1.0000', '14.3600', '14.3600', '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 (76383, '2022-04-26', 1839, 72519, 4815, 8734, '-27.0000', '6.1500', '6.1500', '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 (76384, '2022-04-26', 1839, 72519, 4815, NULL, '28.0000', '6.1500', '6.1500', '11.0000', '11.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 (76385, '2022-04-26', 2089, 72520, 4815, 10811, '-5.0000', '6.6500', '6.6500', '9.5000', '9.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 (76386, '2022-04-26', 2089, 72520, 4815, NULL, '6.0000', '6.6500', '6.6500', '9.5000', '9.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 (76387, '2022-04-26', 1772, 72521, 4815, 4893, '-11.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 (76388, '2022-04-26', 1772, 72521, 4815, NULL, '12.0000', '6.0500', '6.0500', '8.0000', '8.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 (76389, '2022-04-26', 1580, 72522, 4815, 7598, '-35.0000', '0.9900', '0.9900', '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 (76390, '2022-04-26', 1580, 72522, 4815, NULL, '38.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76391, '2022-04-26', 1884, 72523, 4815, 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 (76392, '2022-04-26', 1695, 72524, 4815, 12925, '-9.0000', '15.5000', '15.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 (76393, '2022-04-26', 1695, 72524, 4815, NULL, '10.0000', '15.5000', '15.5000', '26.0000', '26.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 (76394, '2022-04-26', 1322, 72525, 4815, 1016, '1.0000', '-76.1143', '-76.1143', '6.5000', '6.5000', '8.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 (76395, '2022-04-26', 1694, 72526, 4815, 10813, '-4.0000', '7.1900', '7.1900', '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 (76396, '2022-04-26', 1694, 72526, 4815, NULL, '5.0000', '7.1900', '7.1900', '11.0000', '11.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 (76397, '2022-04-26', 7562, 72527, 4816, NULL, '1.0000', '5.5300', '5.5300', '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 (76398, '2022-04-26', 1501, 72528, 4816, NULL, '1.0000', '2.0500', '2.0500', '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 (76399, '2022-04-26', 1837, 72529, 4816, 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 (76400, '2022-04-26', 7649, 72530, 4816, NULL, '1.0000', '7.1000', '7.1000', '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 (76401, '2022-04-26', 7684, 72531, 4816, NULL, '3.0000', '9.0000', '9.0000', '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 (76402, '2022-04-26', 1338, 72532, 4816, 16502, '-10.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 (76403, '2022-04-26', 1338, 72532, 4816, NULL, '11.0000', '4.0000', '4.0000', '6.5000', '6.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 (76404, '2022-04-26', 8878, 72533, 4816, NULL, '2.0000', '6.6700', '6.6700', '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 (76405, '2022-04-26', 9692, 72534, 4816, NULL, '1.0000', '10.4500', '10.4500', '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 (76406, '2022-04-26', 7334, 72535, 4816, NULL, '1.0000', '8.2300', '8.2300', '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 (76407, '2022-04-26', 2847, 72536, 4816, NULL, '1.0000', '13.8800', '13.8800', '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 (76408, '2022-04-26', 8596, 72537, 4816, 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 (76409, '2022-04-26', 8208, 72538, 4816, NULL, '2.0000', '33.0000', '33.0000', '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 (76410, '2022-04-26', 8360, 72539, 4816, NULL, '1.0000', '3.2300', '3.2300', '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 (76411, '2022-04-26', 7806, 72540, 4816, NULL, '1.0000', '1.8000', '1.8000', '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 (76412, '2022-04-26', 7815, 72541, 4816, NULL, '1.0000', '13.0000', '13.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 (76413, '2022-04-26', 8566, 72542, 4816, 33072, '1.0000', '11.0000', '11.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76414, '2022-04-26', 7684, 72543, 4816, NULL, '3.0000', '9.0000', '9.0000', '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 (76415, '2022-04-26', 9217, 72544, 4816, 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 (76416, '2022-04-26', 9891, 72545, 4816, NULL, '1.0000', '17.4000', '17.4000', '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 (76417, '2022-04-26', 2284, 72546, 4816, 22249, '1.0000', '1.3000', '1.3000', '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 (76418, '2022-04-26', 2283, 72547, 4816, 2943, '-14.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 (76419, '2022-04-26', 2283, 72547, 4816, NULL, '15.0000', '1.4300', '1.4300', '2.0000', '2.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 (76420, '2022-04-26', 7674, 72548, 4816, 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 (76421, '2022-04-26', 8979, 72549, 4816, NULL, '2.0000', '1.0000', '1.0000', '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 (76422, '2022-04-26', 1807, 72550, 4816, 18924, '1.0000', '1.8000', '1.8000', '2.5000', '2.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 (76423, '2022-04-26', 9801, 72551, 4816, NULL, '1.0000', '3.2300', '3.2300', '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 (76424, '2022-04-26', 7711, 72552, 4816, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76425, '2022-04-26', 7780, 72553, 4816, NULL, '1.0000', '11.6000', '11.6000', '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 (76426, '2022-04-26', 7317, 72554, 4816, NULL, '1.0000', '19.5500', '19.5500', '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 (76427, '2022-04-26', 7522, 72555, 4816, NULL, '1.0000', '9.7000', '9.7000', '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 (76428, '2022-04-26', 7781, 72556, 4816, NULL, '1.0000', '4.2500', '4.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 (76429, '2022-04-26', 1904, 72557, 4816, 5442, '-35.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 (76430, '2022-04-26', 1904, 72557, 4816, NULL, '36.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (76431, '2022-04-26', 7672, 72558, 4816, NULL, '1.0000', '1.0200', '1.0200', '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 (76432, '2022-04-26', 7506, 72559, 4816, NULL, '1.0000', '15.0000', '15.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 (76433, '2022-04-26', 9821, 72560, 4816, NULL, '1.0000', '1.4500', '1.4500', '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 (76434, '2022-04-26', 9565, 72561, 4816, NULL, '2.0000', '4.5000', '4.5000', '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 (76435, '2022-04-26', 7366, 72562, 4816, NULL, '1.0000', '7.0000', '7.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 (76436, '2022-04-26', 8094, 72563, 4816, NULL, '4.0000', '47.0000', '47.0000', '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 (76437, '2022-04-26', 9817, 72564, 4816, NULL, '1.0000', '3.9000', '3.9000', '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 (76438, '2022-04-26', 8024, 72565, 4816, NULL, '1.0000', '10.3800', '10.3800', '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 (76439, '2022-04-26', 8023, 72566, 4816, NULL, '2.0000', '20.5000', '20.5000', '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 (76440, '2022-04-26', 1671, 72567, 4816, 7457, '-40.0000', '4.2000', '4.2000', '64.0000', '64.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76441, '2022-04-26', 1671, 72567, 4816, NULL, '41.0000', '4.2000', '4.2000', '64.0000', '64.0000', '-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 (76442, '2022-04-26', 9801, 72568, 4816, NULL, '2.0000', '3.2300', '3.2300', '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 (76443, '2022-04-26', 2299, 72569, 4816, 22479, '-4.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 (76444, '2022-04-26', 2299, 72569, 4816, NULL, '6.0000', '6.0000', '6.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 (76445, '2022-04-26', 8170, 72570, 4816, 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 (76446, '2022-04-26', 7709, 72571, 4816, NULL, '2.0000', '3.5000', '3.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 (76447, '2022-04-26', 7794, 72572, 4816, NULL, '1.0000', '9.8000', '9.8000', '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 (76448, '2022-04-26', 7674, 72573, 4816, 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 (76449, '2022-04-26', 8106, 72574, 4816, NULL, '14.0000', '3.2500', '3.2500', '4.5000', '4.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 (76450, '2022-04-26', 1337, 72575, 4817, NULL, '1.0000', '2.0000', '2.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 (76451, '2022-04-26', 9791, 72576, 4817, 51704, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76452, '2022-04-26', 7683, 72577, 4817, NULL, '1.0000', '-25.9100', '-25.9100', '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 (76453, '2022-04-26', 7530, 72578, 4817, 48170, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76454, '2022-04-26', 1331, 72579, 4817, NULL, '1.0000', '4.2000', '4.2000', '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 (76455, '2022-04-26', 1307, 72580, 4817, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76456, '2022-04-26', 2506, 72581, 4817, NULL, '1.0000', '4.2640', '4.2640', '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 (76457, '2022-04-26', 2109, 72582, 4817, 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 (76458, '2022-04-26', 1602, 72583, 4817, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '35.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76459, '2022-04-26', 9695, 72584, 4817, 54075, '2.0000', '5.2084', '5.2084', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76460, '2022-04-26', 2315, 72585, 4817, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76461, '2022-04-26', 7762, 72586, 4817, NULL, '1.0000', '5.1000', '5.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 (76462, '2022-04-26', 9579, 72587, 4817, 54579, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76463, '2022-04-26', 2916, 72588, 4817, NULL, '1.0000', '-13.0168', '-13.0168', '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 (76464, '2022-04-26', 2109, 72589, 4817, 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 (76465, '2022-04-26', 2681, 72590, 4817, 47122, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76466, '2022-04-26', 7447, 72591, 4817, NULL, '8.0000', '19.1100', '19.1100', '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 (76467, '2022-04-26', 2315, 72592, 4817, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76468, '2022-04-26', 2267, 72593, 4817, 48130, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76469, '2022-04-26', 2916, 72594, 4817, NULL, '1.0000', '-13.0168', '-13.0168', '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 (76470, '2022-04-26', 1880, 72595, 4817, 48909, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76471, '2022-04-26', 9735, 72596, 4817, 52174, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76472, '2022-04-26', 8903, 72597, 4817, NULL, '1.0000', '5.3700', '5.3700', '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 (76473, '2022-04-26', 1945, 72598, 4817, 53663, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76474, '2022-04-26', 2242, 72599, 4817, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76475, '2022-04-26', 3080, 72600, 4817, 25165, '1.0000', '8.5000', '8.5000', '12.0000', '12.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 (76476, '2022-04-26', 7770, 72601, 4817, NULL, '1.0000', '33.0000', '33.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 (76477, '2022-04-26', 1493, 72602, 4817, NULL, '1.0000', '5.2600', '5.2600', '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 (76478, '2022-04-26', 7514, 72603, 4817, NULL, '1.0000', '2.2500', '2.2500', '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 (76479, '2022-04-26', 9747, 72604, 4817, 51943, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76480, '2022-04-26', 2413, 72605, 4817, NULL, '1.0000', '1.0500', '1.0500', '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 (76481, '2022-04-26', 1783, 72606, 4817, 54548, '1.0000', '12.9050', '12.9050', '13.5000', '13.5000', '8.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76482, '2022-04-26', 7780, 72607, 4817, NULL, '1.0000', '2.6000', '2.6000', '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 (76483, '2022-04-26', 1501, 72608, 4817, NULL, '1.0000', '1.9873', '1.9873', '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 (76484, '2022-04-26', 7750, 72609, 4817, NULL, '1.0000', '34.9000', '34.9000', '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 (76485, '2022-04-26', 7779, 72610, 4817, NULL, '1.0000', '0.6200', '0.6200', '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 (76486, '2022-04-26', 7491, 72611, 4817, NULL, '1.0000', '4.8000', '4.8000', '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 (76487, '2022-04-26', 1501, 72612, 4817, NULL, '1.0000', '1.9873', '1.9873', '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 (76488, '2022-04-26', 1757, 72613, 4817, 53644, '1.0000', '7.5869', '7.5869', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76489, '2022-04-26', 9843, 72614, 4817, 51247, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76490, '2022-04-26', 1757, 72615, 4817, 53644, '1.0000', '7.5869', '7.5869', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76491, '2022-04-26', 2069, 72616, 4817, NULL, '1.0000', '2.0400', '2.0400', '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 (76492, '2022-04-26', 9845, 72617, 4817, 54161, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76493, '2022-04-26', 1342, 72618, 4818, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76494, '2022-04-26', 8878, 72619, 4818, NULL, '1.0000', '6.6700', '6.6700', '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 (76495, '2022-04-26', 3057, 72620, 4818, 51479, '2.0000', '2.8440', '2.8440', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76496, '2022-04-26', 1888, 72621, 4818, 54526, '1.0000', '16.5938', '16.5938', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76497, '2022-04-26', 7744, 72622, 4818, NULL, '1.0000', '2.5833', '2.5833', '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 (76498, '2022-04-26', 9762, 72623, 4818, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '47.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76499, '2022-04-26', 1435, 72624, 4818, 50527, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76500, '2022-04-26', 2341, 72625, 4818, NULL, '1.0000', '5.5900', '5.5900', '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 (76501, '2022-04-26', 1501, 72626, 4818, NULL, '1.0000', '1.9873', '1.9873', '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 (76502, '2022-04-26', 9413, 72627, 4818, 34036, '1.0000', '7.9285', '7.9285', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76503, '2022-04-26', 9875, 72628, 4818, 53432, '1.0000', '13.0000', '13.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76504, '2022-04-26', 7514, 72629, 4818, NULL, '1.0000', '2.2500', '2.2500', '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 (76505, '2022-04-26', 8878, 72630, 4818, NULL, '1.0000', '6.6700', '6.6700', '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 (76506, '2022-04-26', 9311, 72631, 4818, NULL, '1.0000', '6.6000', '6.6000', '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 (76507, '2022-04-26', 7641, 72632, 4818, NULL, '1.0000', '1.9000', '1.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 (76508, '2022-04-26', 7799, 72633, 4818, NULL, '1.0000', '2.0000', '2.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 (76509, '2022-04-26', 1501, 72634, 4818, NULL, '1.0000', '1.9873', '1.9873', '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 (76510, '2022-04-26', 2821, 72635, 4818, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76511, '2022-04-26', 1602, 72636, 4818, 54171, '2.0000', '6.9136', '6.9136', '10.0000', '10.0000', '33.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76512, '2022-04-26', 9843, 72637, 4818, 51247, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76513, '2022-04-26', 9747, 72638, 4818, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76514, '2022-04-26', 7328, 72639, 4818, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76515, '2022-04-26', 7514, 72640, 4818, NULL, '1.0000', '2.2500', '2.2500', '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 (76516, '2022-04-26', 2648, 72641, 4818, 53441, '1.0000', '2.2228', '2.2228', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76517, '2022-04-26', 2315, 72642, 4818, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76518, '2022-04-26', 1501, 72643, 4818, NULL, '1.0000', '1.9873', '1.9873', '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 (76519, '2022-04-26', 2765, 72644, 4818, NULL, '1.0000', '5.3000', '5.3000', '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 (76520, '2022-04-26', 9566, 72645, 4818, 52170, '1.0000', '7.8771', '7.8771', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76521, '2022-04-26', 2085, 72646, 4818, NULL, '20.0000', '3.1057', '3.1057', '2.0000', '2.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 (76522, '2022-04-26', 2548, 72647, 4818, 51644, '1.0000', '7.0500', '7.0500', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76523, '2022-04-26', 2592, 72648, 4818, 38524, '1.0000', '7.6936', '7.6936', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76524, '2022-04-26', 2102, 72649, 4818, 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 (76525, '2022-04-26', 8595, 72650, 4818, NULL, '1.0000', '3.9640', '3.9640', '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 (76526, '2022-04-26', 8207, 72651, 4818, NULL, '1.0000', '0.0000', '0.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 (76527, '2022-04-26', 9732, 72652, 4818, 54524, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76528, '2022-04-26', 9747, 72653, 4818, 50122, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76529, '2022-04-26', 2379, 72654, 4818, NULL, '1.0000', '0.2954', '0.2954', '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 (76530, '2022-04-26', 1307, 72655, 4818, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76531, '2022-04-26', 2965, 72656, 4818, NULL, '1.0000', '8.3288', '8.3288', '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 (76532, '2022-04-26', 7852, 72657, 4818, 39761, '1.0000', '15.0000', '15.0000', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76533, '2022-04-26', 2522, 72658, 4818, 51953, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76534, '2022-04-26', 8566, 72659, 4818, 53414, '1.0000', '15.9999', '15.9999', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76535, '2022-04-26', 2315, 72660, 4818, 47139, '3.0000', '0.4851', '0.4851', '0.8000', '0.8000', '12.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76536, '2022-04-26', 7741, 72661, 4818, NULL, '1.0000', '-6.8417', '-6.8417', '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 (76537, '2022-04-26', 2821, 72662, 4818, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76538, '2022-04-26', 8740, 72663, 4818, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76539, '2022-04-26', 2643, 72664, 4818, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76540, '2022-04-26', 7514, 72665, 4818, NULL, '1.0000', '2.2500', '2.2500', '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 (76541, '2022-04-26', 8207, 72666, 4818, NULL, '1.0000', '0.0000', '0.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 (76542, '2022-04-26', 1856, 72667, 4818, NULL, '1.0000', '20.0009', '20.0009', '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 (76543, '2022-04-26', 2916, 72668, 4818, NULL, '1.0000', '-13.0168', '-13.0168', '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 (76544, '2022-04-26', 9762, 72669, 4818, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '47.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76545, '2022-04-26', 9748, 72670, 4818, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76546, '2022-04-26', 2289, 72671, 4818, NULL, '1.0000', '0.2222', '0.2222', '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 (76547, '2022-04-26', 9834, 72672, 4818, 51659, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76548, '2022-04-26', 1647, 72673, 4818, 53948, '1.0000', '27.3300', '27.3300', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76549, '2022-04-26', 2821, 72674, 4818, 54172, '1.0000', '3.3943', '3.3943', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76550, '2022-04-26', 2916, 72675, 4818, NULL, '1.0000', '-13.0168', '-13.0168', '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 (76551, '2022-04-26', 9572, 72676, 4819, 37446, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76552, '2022-04-26', 9734, 72677, 4819, NULL, '5.0000', '0.3200', '0.3200', '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 (76553, '2022-04-26', 2916, 72678, 4819, NULL, '1.0000', '-13.0168', '-13.0168', '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 (76554, '2022-04-26', 2081, 72679, 4819, NULL, '1.0000', '7.9000', '7.9000', '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 (76555, '2022-04-26', 1839, 72680, 4819, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (76556, '2022-04-26', 1812, 72681, 4819, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76557, '2022-04-26', 9726, 72682, 4819, 52347, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76558, '2022-04-26', 7674, 72683, 4820, 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 (76559, '2022-04-26', 8793, 72684, 4820, 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 (76560, '2022-04-26', 9731, 72685, 4820, 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 (76561, '2022-04-26', 1420, 72686, 4820, 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 (76562, '2022-04-26', 7524, 72687, 4820, NULL, '2.0000', '11.9500', '11.9500', '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 (76563, '2022-04-26', 7457, 72688, 4820, 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 (76564, '2022-04-26', 7709, 72689, 4820, NULL, '2.0000', '3.5000', '3.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 (76565, '2022-04-26', 7411, 72690, 4820, NULL, '1.0000', '1.3500', '1.3500', '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 (76566, '2022-04-26', 7770, 72691, 4820, NULL, '1.0000', '7.8200', '7.8200', '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 (76567, '2022-04-26', 8308, 72692, 4820, NULL, '1.0000', '2.0800', '2.0800', '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 (76568, '2022-04-26', 7412, 72693, 4820, NULL, '1.0000', '1.5200', '1.5200', '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 (76569, '2022-04-26', 2315, 72694, 4820, 2735, '-276.0000', '0.3300', '0.3300', '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 (76570, '2022-04-26', 2315, 72694, 4820, NULL, '277.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-277.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76571, '2022-04-26', 8177, 72695, 4820, NULL, '1.0000', '12.5000', '12.5000', '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 (76572, '2022-04-26', 9894, 72696, 4820, 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 (76573, '2022-04-26', 7385, 72697, 4820, NULL, '5.0000', '2.0000', '2.0000', '3.7000', '3.7000', '-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 (76574, '2022-04-26', 7674, 72698, 4820, 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 (76575, '2022-04-26', 9729, 72699, 4820, NULL, '3.0000', '0.6200', '0.6200', '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 (76576, '2022-04-26', 7886, 72700, 4820, 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 (76577, '2022-04-26', 2315, 72701, 4820, 2735, '-276.0000', '0.3300', '0.3300', '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 (76578, '2022-04-26', 2315, 72701, 4820, NULL, '277.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-277.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76579, '2022-04-26', 7780, 72702, 4820, NULL, '1.0000', '11.6000', '11.6000', '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 (76580, '2022-04-26', 7719, 72703, 4820, 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 (76581, '2022-04-26', 7674, 72704, 4820, 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 (76582, '2022-04-26', 1884, 72705, 4820, 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 (76583, '2022-04-26', 9891, 72706, 4820, NULL, '1.0000', '17.4000', '17.4000', '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 (76584, '2022-04-26', 9715, 72707, 4820, NULL, '1.0000', '9.4000', '9.4000', '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 (76585, '2022-04-26', 2260, 72708, 4820, 2796, '-16.0000', '4.2000', '4.2000', '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 (76586, '2022-04-26', 2260, 72708, 4820, NULL, '18.0000', '4.2000', '4.2000', '6.5000', '6.5000', '-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 (76587, '2022-04-26', 9565, 72709, 4820, NULL, '1.0000', '4.5000', '4.5000', '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 (76588, '2022-04-26', 7509, 72710, 4820, 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 (76589, '2022-04-26', 7482, 72711, 4820, NULL, '1.0000', '3.0500', '3.0500', '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 (76590, '2022-04-26', 7961, 72712, 4820, NULL, '1.0000', '10.5600', '10.5600', '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 (76591, '2022-04-26', 9740, 72713, 4820, NULL, '1.0000', '0.6600', '0.6600', '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 (76592, '2022-04-26', 2242, 72714, 4820, 3059, '-7.0000', '0.4800', '0.4800', '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 (76593, '2022-04-26', 2242, 72714, 4820, NULL, '10.0000', '0.4800', '0.4800', '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 (76594, '2022-04-26', 8497, 72715, 4820, 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 (76595, '2022-04-26', 2315, 72716, 4820, 2735, '-276.0000', '0.3300', '0.3300', '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 (76596, '2022-04-26', 2315, 72716, 4820, NULL, '277.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-277.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76597, '2022-04-26', 1841, 72717, 4820, NULL, '6.0000', '142.5780', '142.5780', '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 (76598, '2022-04-26', 1840, 72718, 4820, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (76599, '2022-04-26', 2289, 72719, 4820, 2949, '-123.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 (76600, '2022-04-26', 2289, 72719, 4820, NULL, '125.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-125.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76601, '2022-04-26', 2251, 72720, 4820, 2788, '-17.0000', '10.9700', '10.9700', '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 (76602, '2022-04-26', 2251, 72720, 4820, NULL, '18.0000', '10.9700', '10.9700', '16.0000', '16.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 (76603, '2022-04-26', 7514, 72721, 4820, NULL, '1.0000', '2.2500', '2.2500', '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 (76604, '2022-04-26', 7806, 72722, 4820, NULL, '1.0000', '1.8000', '1.8000', '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 (76605, '2022-04-26', 7609, 72723, 4820, NULL, '1.0000', '4.3300', '4.3300', '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 (76606, '2022-04-26', 8497, 72724, 4820, NULL, '2.0000', '9.0000', '9.0000', '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 (76607, '2022-04-26', 9784, 72725, 4820, 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 (76608, '2022-04-26', 8079, 72726, 4820, NULL, '1.0000', '14.3600', '14.3600', '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 (76609, '2022-04-26', 1846, 72727, 4820, 12032, '-13.0000', '12.0000', '12.0000', '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 (76610, '2022-04-26', 1846, 72727, 4820, NULL, '14.0000', '12.0000', '12.0000', '16.5000', '16.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 (76611, '2022-04-26', 9729, 72728, 4820, NULL, '2.0000', '0.6200', '0.6200', '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 (76612, '2022-04-26', 1837, 72729, 4820, 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 (76613, '2022-04-26', 1908, 72730, 4820, 5444, '-41.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 (76614, '2022-04-26', 1908, 72730, 4820, NULL, '43.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (76615, '2022-04-26', 9868, 72731, 4821, 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 (76616, '2022-04-26', 2169, 72732, 4822, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76617, '2022-04-26', 3017, 72733, 4822, 52257, '1.0000', '3.9715', '3.9715', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76618, '2022-04-26', 2100, 72734, 4822, 44561, '1.0000', '1.7307', '1.7307', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76619, '2022-04-26', 1592, 72735, 4822, 54659, '1.0000', '35.0705', '35.0705', '52.0000', '52.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76620, '2022-04-26', 2169, 72736, 4822, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76621, '2022-04-26', 1912, 72737, 4822, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76622, '2022-04-26', 9695, 72738, 4822, 49478, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76623, '2022-04-26', 2558, 72739, 4822, 44508, '1.0000', '5.4253', '5.4253', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76624, '2022-04-26', 2169, 72740, 4822, 54664, '2.0000', '1.2111', '1.2111', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76625, '2022-04-26', 1580, 72741, 4822, 54604, '3.0000', '1.2644', '1.2644', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76626, '2022-04-26', 1432, 72742, 4822, 54681, '1.0000', '10.0341', '10.0341', '17.5000', '17.5000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76627, '2022-04-26', 1812, 72743, 4822, 54683, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76628, '2022-04-26', 2302, 72744, 4822, 54589, '1.0000', '5.1949', '5.1949', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76629, '2022-04-26', 2169, 72745, 4822, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76630, '2022-04-26', 1812, 72746, 4822, 54683, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76631, '2022-04-26', 2286, 72747, 4822, 54657, '1.0000', '4.6654', '4.6654', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76632, '2022-04-26', 9732, 72748, 4822, 53874, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76633, '2022-04-26', 7750, 72749, 4822, NULL, '1.0000', '34.9000', '34.9000', '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 (76634, '2022-04-26', 1819, 72750, 4822, 50893, '1.0000', '5.9723', '5.9723', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76635, '2022-04-26', 1837, 72751, 4822, 54424, '5.0000', '0.5024', '0.5024', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76636, '2022-04-26', 2277, 72752, 4822, 38069, '2.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76637, '2022-04-26', 1499, 72753, 4822, 54670, '1.0000', '0.4174', '0.4174', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76638, '2022-04-26', 2635, 72754, 4822, 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 (76639, '2022-04-26', 7886, 72755, 4822, 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 (76640, '2022-04-26', 2642, 72756, 4822, 54366, '1.0000', '7.7686', '7.7686', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76641, '2022-04-26', 8395, 72757, 4822, NULL, '3.0000', '0.9700', '0.9700', '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 (76642, '2022-04-26', 1812, 72758, 4822, 54683, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76643, '2022-04-26', 2302, 72759, 4822, 54589, '3.0000', '5.1949', '5.1949', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76644, '2022-04-26', 8395, 72760, 4822, NULL, '1.0000', '0.9700', '0.9700', '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 (76645, '2022-04-26', 2592, 72761, 4822, 54648, '1.0000', '10.6326', '10.6326', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76646, '2022-04-26', 9901, 72762, 4823, 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 (76647, '2022-04-27', 1409, 72763, 4824, 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 (76648, '2022-04-27', 1602, 72764, 4825, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '32.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76649, '2022-04-27', 1912, 72765, 4825, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76650, '2022-04-27', 9815, 72766, 4825, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76651, '2022-04-27', 2315, 72767, 4825, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76652, '2022-04-27', 1935, 72768, 4825, 52160, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76653, '2022-04-27', 1499, 72769, 4825, 52148, '2.0000', '0.3747', '0.3747', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76654, '2022-04-27', 1912, 72770, 4825, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76655, '2022-04-27', 1307, 72771, 4825, NULL, '1.0000', '-0.0521', '-0.0521', '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 (76656, '2022-04-27', 1340, 72772, 4825, 54554, '1.0000', '3.6111', '3.6111', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76657, '2022-04-27', 2324, 72773, 4825, NULL, '1.0000', '10.5000', '10.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 (76658, '2022-04-27', 1910, 72774, 4825, 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 (76659, '2022-04-27', 7357, 72775, 4825, NULL, '1.0000', '12.2000', '12.2000', '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 (76660, '2022-04-27', 1672, 72776, 4825, 54515, '1.0000', '4.0187', '4.0187', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76661, '2022-04-27', 1672, 72776, 4825, 53224, '9.0000', '4.0187', '4.0187', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76662, '2022-04-27', 7385, 72777, 4825, NULL, '10.0000', '-10.3217', '-10.3217', '3.7000', '3.7000', '-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 (76663, '2022-04-27', 2990, 72778, 4825, 39769, '2.0000', '1.2776', '1.2776', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76664, '2022-04-27', 2315, 72779, 4825, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76665, '2022-04-27', 7385, 72780, 4825, NULL, '1.0000', '-10.3217', '-10.3217', '3.7000', '3.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 (76666, '2022-04-27', 7961, 72781, 4825, 45193, '1.0000', '10.5600', '10.5600', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76667, '2022-04-27', 2643, 72782, 4825, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76668, '2022-04-27', 2916, 72783, 4825, NULL, '1.0000', '-13.0168', '-13.0168', '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 (76669, '2022-04-27', 9888, 72784, 4825, 54517, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76670, '2022-04-27', 1502, 72785, 4825, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '13.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76671, '2022-04-27', 1501, 72786, 4825, NULL, '1.0000', '1.9873', '1.9873', '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 (76672, '2022-04-27', 2643, 72787, 4825, 54067, '1.0000', '0.9481', '0.9481', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76673, '2022-04-27', 8067, 72788, 4825, NULL, '1.0000', '4.6900', '4.6900', '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 (76674, '2022-04-27', 2296, 72789, 4825, NULL, '1.0000', '14.4550', '14.4550', '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 (76675, '2022-04-27', 1334, 72790, 4825, 53239, '1.0000', '0.8419', '0.8419', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76676, '2022-04-27', 1335, 72791, 4825, 53240, '6.0000', '1.1969', '1.1969', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76677, '2022-04-27', 9839, 72792, 4825, NULL, '1.0000', '15.0200', '15.0200', '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 (76678, '2022-04-27', 1638, 72793, 4825, 48910, '9.0000', '5.9100', '5.9100', '8.5000', '8.5000', '39.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76679, '2022-04-27', 2416, 72794, 4825, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76680, '2022-04-27', 7802, 72795, 4825, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76681, '2022-04-27', 2242, 72796, 4825, 54572, '3.0000', '2.4162', '2.4162', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76682, '2022-04-27', 1521, 72797, 4825, 48883, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76683, '2022-04-27', 8068, 72798, 4825, NULL, '1.0000', '8.7900', '8.7900', '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 (76684, '2022-04-27', 1880, 72799, 4825, 48909, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76685, '2022-04-27', 1946, 72800, 4825, NULL, '1.0000', '-1.2595', '-1.2595', '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 (76686, '2022-04-27', 9496, 72801, 4825, NULL, '1.0000', '3.8800', '3.8800', '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 (76687, '2022-04-27', 2740, 72802, 4826, NULL, '1.0000', '9.8871', '9.8871', '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 (76688, '2022-04-27', 7756, 72803, 4826, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76689, '2022-04-27', 9578, 72804, 4826, 54578, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76690, '2022-04-27', 1481, 72805, 4826, 51243, '1.0000', '25.9000', '25.9000', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76691, '2022-04-27', 9891, 72806, 4827, NULL, '1.0000', '17.4000', '17.4000', '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 (76692, '2022-04-27', 7641, 72807, 4827, NULL, '1.0000', '1.9000', '1.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 (76693, '2022-04-27', 2315, 72808, 4827, 2735, '-279.0000', '0.3300', '0.3300', '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 (76694, '2022-04-27', 2315, 72808, 4827, NULL, '280.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-280.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76695, '2022-04-27', 8539, 72809, 4827, NULL, '1.0000', '31.8000', '31.8000', '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 (76696, '2022-04-27', 1856, 72810, 4827, NULL, '1.0000', '4.2500', '4.2500', '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 (76697, '2022-04-27', 7860, 72811, 4827, NULL, '1.0000', '20.3700', '20.3700', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76698, '2022-04-27', 8063, 72812, 4827, NULL, '1.0000', '1.6000', '1.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 (76699, '2022-04-27', 8747, 72813, 4827, NULL, '1.0000', '15.0000', '15.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 (76700, '2022-04-27', 7989, 72814, 4827, NULL, '2.0000', '37.8200', '37.8200', '66.0000', '66.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 (76701, '2022-04-27', 1329, 72815, 4827, NULL, '2.0000', '8.5000', '8.5000', '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 (76702, '2022-04-27', 7674, 72816, 4827, 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 (76703, '2022-04-27', 7411, 72817, 4827, NULL, '1.0000', '1.3500', '1.3500', '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 (76704, '2022-04-27', 9747, 72818, 4827, NULL, '1.0000', '0.6500', '0.6500', '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 (76705, '2022-04-27', 8052, 72819, 4827, NULL, '1.0000', '29.0000', '29.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 (76706, '2022-04-27', 9872, 72820, 4827, NULL, '1.0000', '14.6300', '14.6300', '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 (76707, '2022-04-27', 7774, 72821, 4827, NULL, '1.0000', '3.3000', '3.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 (76708, '2022-04-27', 8918, 72822, 4827, NULL, '1.0000', '1.0400', '1.0400', '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 (76709, '2022-04-27', 7674, 72823, 4827, 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 (76710, '2022-04-27', 7803, 72824, 4827, NULL, '1.0000', '1.8200', '1.8200', '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 (76711, '2022-04-27', 8547, 72825, 4827, NULL, '1.0000', '3.3500', '3.3500', '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 (76712, '2022-04-27', 8374, 72826, 4827, NULL, '1.0000', '12.0000', '12.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 (76713, '2022-04-27', 7663, 72827, 4827, NULL, '1.0000', '8.2000', '8.2000', '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 (76714, '2022-04-27', 7659, 72828, 4827, NULL, '1.0000', '5.9700', '5.9700', '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 (76715, '2022-04-27', 1340, 72829, 4827, 13005, '-4.0000', '2.7025', '2.7025', '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 (76716, '2022-04-27', 1340, 72829, 4827, NULL, '5.0000', '2.7025', '2.7025', '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 (76717, '2022-04-27', 7756, 72830, 4827, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76718, '2022-04-27', 2557, 72831, 4827, 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 (76719, '2022-04-27', 7753, 72832, 4827, NULL, '1.0000', '3.4000', '3.4000', '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 (76720, '2022-04-27', 7560, 72833, 4827, NULL, '1.0000', '33.0200', '33.0200', '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 (76721, '2022-04-27', 7967, 72834, 4827, NULL, '1.0000', '7.0000', '7.0000', '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 (76722, '2022-04-27', 8759, 72835, 4827, NULL, '1.0000', '6.5000', '6.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 (76723, '2022-04-27', 9655, 72836, 4827, NULL, '1.0000', '37.0000', '37.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 (76724, '2022-04-27', 9885, 72837, 4827, 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 (76725, '2022-04-27', 7785, 72838, 4827, 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 (76726, '2022-04-27', 8753, 72839, 4827, 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 (76727, '2022-04-27', 7357, 72840, 4828, NULL, '1.0000', '12.2000', '12.2000', '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 (76728, '2022-04-27', 7883, 72841, 4828, 39836, '1.0000', '34.0000', '34.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76729, '2022-04-27', 2353, 72842, 4828, NULL, '2.0000', '3.9633', '3.9633', '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 (76730, '2022-04-27', 1501, 72843, 4828, NULL, '1.0000', '1.9873', '1.9873', '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 (76731, '2022-04-27', 9695, 72844, 4829, NULL, '1.0000', '4.5000', '4.5000', '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 (76732, '2022-04-27', 1410, 72845, 4829, NULL, '1.0000', '2.2000', '2.2000', '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 (76733, '2022-04-27', 1666, 72846, 4829, 3236, '-26.0000', '2.7100', '2.7100', '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 (76734, '2022-04-27', 1666, 72846, 4829, NULL, '27.0000', '2.7100', '2.7100', '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 (76735, '2022-04-27', 9775, 72847, 4829, NULL, '1.0000', '7.9000', '7.9000', '13.7300', '13.7300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76736, '2022-04-27', 7411, 72848, 4829, NULL, '1.0000', '1.3500', '1.3500', '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 (76737, '2022-04-27', 2247, 72849, 4829, 2784, '-8.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 (76738, '2022-04-27', 2247, 72849, 4829, NULL, '9.0000', '2.5000', '2.5000', '3.5000', '3.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 (76739, '2022-04-27', 1935, 72850, 4829, 5586, '-73.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 (76740, '2022-04-27', 1935, 72850, 4829, NULL, '75.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76741, '2022-04-27', 2320, 72851, 4829, 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 (76742, '2022-04-27', 1873, 72852, 4829, 16245, '-9.0000', '11.9500', '11.9500', '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 (76743, '2022-04-27', 1873, 72852, 4829, NULL, '10.0000', '11.9500', '11.9500', '20.0000', '20.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 (76744, '2022-04-27', 2237, 72853, 4829, 2781, '-51.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 (76745, '2022-04-27', 2237, 72853, 4829, NULL, '52.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76746, '2022-04-27', 9741, 72854, 4829, NULL, '1.0000', '7.6000', '7.6000', '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 (76747, '2022-04-27', 9839, 72855, 4829, NULL, '1.0000', '15.0200', '15.0200', '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 (76748, '2022-04-27', 9175, 72856, 4829, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76749, '2022-04-27', 1409, 72857, 4829, 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 (76750, '2022-04-27', 1440, 72858, 4829, 20690, '1.0000', '10.0000', '10.0000', '13.5000', '13.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 (76751, '2022-04-27', 1602, 72859, 4829, 5897, '-133.0000', '6.7859', '6.7859', '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 (76752, '2022-04-27', 1602, 72859, 4829, NULL, '134.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-134.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76753, '2022-04-27', 1590, 72860, 4829, 22260, '1.0000', '1.7100', '1.7100', '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 (76754, '2022-04-27', 2811, 72861, 4829, 16657, '-1.0000', '3.4000', '3.4000', '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 (76755, '2022-04-27', 2811, 72861, 4829, NULL, '2.0000', '3.4000', '3.4000', '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 (76756, '2022-04-27', 3041, 72862, 4829, 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 (76757, '2022-04-27', 1410, 72863, 4829, NULL, '1.0000', '2.2000', '2.2000', '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 (76758, '2022-04-27', 2154, 72864, 4829, 1369, '1.0000', '10.6849', '10.6849', '17.0000', '17.0000', '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 (76759, '2022-04-27', 1395, 72865, 4830, 37958, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76760, '2022-04-27', 9628, 72866, 4830, 49714, '1.0000', '46.1200', '46.1200', '55.0000', '55.0000', '2.0000', 1, 0, NULL, 394);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76761, '2022-04-27', 8746, 72867, 4830, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76762, '2022-04-27', 2283, 72868, 4830, 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 (76763, '2022-04-27', 2275, 72869, 4830, 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 (76764, '2022-04-27', 9808, 72870, 4830, 51699, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76765, '2022-04-27', 1674, 72871, 4830, NULL, '1.0000', '11.2958', '11.2958', '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 (76766, '2022-04-27', 1863, 72872, 4830, 54181, '2.0000', '1.4153', '1.4153', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76767, '2022-04-27', 1425, 72873, 4830, NULL, '1.0000', '5.1721', '5.1721', '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 (76768, '2022-04-27', 2088, 72874, 4830, 54566, '2.0000', '1.8472', '1.8472', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76769, '2022-04-27', 8740, 72875, 4830, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76770, '2022-04-27', 9856, 72876, 4830, 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 (76771, '2022-04-27', 1427, 72877, 4830, 52220, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76772, '2022-04-27', 9698, 72878, 4830, 52196, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76773, '2022-04-27', 1528, 72879, 4830, NULL, '1.0000', '172.4516', '172.4516', '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 (76774, '2022-04-27', 2315, 72880, 4830, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76775, '2022-04-27', 8740, 72881, 4830, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76776, '2022-04-27', 1674, 72882, 4831, NULL, '1.0000', '11.2958', '11.2958', '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 (76777, '2022-04-27', 9775, 72883, 4831, 54165, '1.0000', '15.0250', '15.0250', '13.7300', '13.7300', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76778, '2022-04-27', 9735, 72884, 4831, 51368, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76779, '2022-04-27', 9880, 72885, 4831, NULL, '1.0000', '3.4200', '3.4200', '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 (76780, '2022-04-27', 2887, 72886, 4831, 47130, '1.0000', '10.5000', '10.5000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76781, '2022-04-27', 2777, 72887, 4831, 53951, '1.0000', '3.2286', '3.2286', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76782, '2022-04-27', 2275, 72888, 4831, 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 (76783, '2022-04-27', 1499, 72889, 4831, 52148, '3.0000', '0.3747', '0.3747', '0.6000', '0.6000', '22.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76784, '2022-04-27', 8133, 72890, 4831, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (76785, '2022-04-27', 2283, 72891, 4831, 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 (76786, '2022-04-27', 2384, 72892, 4831, NULL, '1.0000', '0.1500', '0.1500', '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 (76787, '2022-04-27', 7507, 72893, 4831, 39787, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '141.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76788, '2022-04-27', 2295, 72894, 4831, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76789, '2022-04-27', 1450, 72895, 4831, 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 (76790, '2022-04-27', 1674, 72896, 4831, NULL, '1.0000', '11.2958', '11.2958', '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 (76791, '2022-04-27', 9878, 72897, 4832, 54168, '1.0000', '9.6000', '9.6000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76792, '2022-04-27', 2618, 72898, 4832, 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 (76793, '2022-04-27', 9761, 72899, 4833, 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 (76794, '2022-04-27', 9864, 72900, 4833, 52190, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76795, '2022-04-27', 2380, 72901, 4833, 19823, '1.0000', '37.8800', '37.8800', '66.0000', '66.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 (76796, '2022-04-27', 1873, 72902, 4834, NULL, '1.0000', '11.9500', '11.9500', '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 (76797, '2022-04-27', 9311, 72903, 4834, NULL, '1.0000', '6.6000', '6.6000', '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 (76798, '2022-04-27', 1912, 72904, 4834, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76799, '2022-04-27', 2821, 72905, 4834, NULL, '1.0000', '3.3943', '3.3943', '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 (76800, '2022-04-27', 1450, 72906, 4834, NULL, '15.0000', '0.8900', '0.8900', '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 (76801, '2022-04-27', 2237, 72907, 4834, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76802, '2022-04-27', 9740, 72908, 4834, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76803, '2022-04-27', 2993, 72909, 4835, 48017, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76804, '2022-04-27', 8444, 72910, 4835, NULL, '1.0000', '10.2581', '10.2581', '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 (76805, '2022-04-27', 7725, 72911, 4835, NULL, '1.0000', '6.2371', '6.2371', '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 (76806, '2022-04-27', 9329, 72912, 4835, 53903, '1.0000', '11202.2795', '11202.2795', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76807, '2022-04-27', 7879, 72913, 4835, NULL, '10.0000', '1.9800', '1.9800', '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 (76808, '2022-04-27', 8409, 72914, 4835, NULL, '1.0000', '7.9000', '7.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 (76809, '2022-04-27', 7608, 72915, 4835, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76810, '2022-04-27', 3018, 72916, 4835, 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 (76811, '2022-04-27', 2299, 72917, 4835, 52742, '1.0000', '6.2355', '6.2355', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76812, '2022-04-27', 1935, 72918, 4835, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '139.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76813, '2022-04-27', 9729, 72919, 4835, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76814, '2022-04-27', 7780, 72920, 4835, NULL, '1.0000', '-16.1680', '-16.1680', '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 (76815, '2022-04-27', 7411, 72921, 4835, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76816, '2022-04-27', 2315, 72922, 4835, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '71.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76817, '2022-04-27', 9881, 72923, 4835, 54149, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76818, '2022-04-27', 8075, 72924, 4835, NULL, '1.0000', '3.0000', '3.0000', '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 (76819, '2022-04-27', 9723, 72925, 4835, 51777, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76820, '2022-04-27', 7877, 72926, 4835, NULL, '1.0000', '24.8229', '24.8229', '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 (76821, '2022-04-27', 9819, 72927, 4835, 53923, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76822, '2022-04-27', 8243, 72928, 4835, NULL, '5.0000', '1.1400', '1.1400', '1.5000', '1.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 (76823, '2022-04-27', 7482, 72929, 4835, 54271, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76824, '2022-04-27', 9028, 72930, 4835, 45777, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76825, '2022-04-27', 9748, 72931, 4835, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76826, '2022-04-27', 8712, 72932, 4835, NULL, '1.0000', '6.9800', '6.9800', '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 (76827, '2022-04-27', 7824, 72933, 4835, NULL, '1.0000', '44153.4954', '44153.4954', '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 (76828, '2022-04-27', 7905, 72934, 4835, NULL, '1.0000', '3.9963', '3.9963', '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 (76829, '2022-04-27', 2287, 72935, 4835, NULL, '4.0000', '2.3000', '2.3000', '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 (76830, '2022-04-27', 8077, 72936, 4835, NULL, '1.0000', '4.9986', '4.9986', '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 (76831, '2022-04-27', 7803, 72937, 4835, NULL, '1.0000', '1.8200', '1.8200', '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 (76832, '2022-04-27', 8677, 72938, 4835, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76833, '2022-04-27', 8596, 72939, 4835, NULL, '1.0000', '18.5278', '18.5278', '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 (76834, '2022-04-27', 9695, 72940, 4835, NULL, '1.0000', '4.5000', '4.5000', '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 (76835, '2022-04-27', 7905, 72941, 4835, NULL, '1.0000', '3.9963', '3.9963', '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 (76836, '2022-04-27', 9320, 72942, 4835, 51285, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76837, '2022-04-27', 9863, 72943, 4835, 52458, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '6.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76838, '2022-04-27', 9092, 72944, 4835, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '143.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76839, '2022-04-27', 7385, 72945, 4835, 54713, '5.0000', '10.9932', '10.9932', '3.7000', '3.7000', '95.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76840, '2022-04-27', 9734, 72946, 4835, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76841, '2022-04-27', 8984, 72947, 4835, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '13.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76842, '2022-04-27', 7722, 72948, 4835, NULL, '2.0000', '3.5000', '3.5000', '14.5000', '14.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 (76843, '2022-04-27', 8702, 72949, 4835, NULL, '1.0000', '3.6700', '3.6700', '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 (76844, '2022-04-27', 7892, 72950, 4835, NULL, '1.0000', '4.2000', '4.2000', '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 (76845, '2022-04-27', 9742, 72951, 4835, 53517, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76846, '2022-04-27', 8444, 72952, 4835, NULL, '1.0000', '10.2581', '10.2581', '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 (76847, '2022-04-27', 7411, 72953, 4835, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76848, '2022-04-27', 7954, 72954, 4835, NULL, '12.0000', '412.7272', '412.7272', '4.0000', '4.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 (76849, '2022-04-27', 7657, 72955, 4835, NULL, '1.0000', '32.0003', '32.0003', '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 (76850, '2022-04-27', 7482, 72956, 4835, 54271, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76851, '2022-04-27', 7917, 72957, 4835, 52750, '10.0000', '2.1447', '2.1447', '0.7000', '0.7000', '120.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76852, '2022-04-27', 7907, 72958, 4835, NULL, '2.0000', '12.0000', '12.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 (76853, '2022-04-27', 7857, 72959, 4835, NULL, '1.0000', '16.1000', '16.1000', '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 (76854, '2022-04-27', 7442, 72960, 4835, 53780, '1.0000', '11.8000', '11.8000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76855, '2022-04-27', 7518, 72961, 4835, 54727, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76856, '2022-04-27', 7641, 72962, 4835, NULL, '1.0000', '8.1611', '8.1611', '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 (76857, '2022-04-27', 7514, 72963, 4835, NULL, '1.0000', '1417.7133', '1417.7133', '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 (76858, '2022-04-27', 8207, 72964, 4835, NULL, '1.0000', '0.0000', '0.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 (76859, '2022-04-27', 7682, 72965, 4835, NULL, '1.0000', '0.6600', '0.6600', '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 (76860, '2022-04-27', 9272, 72966, 4835, NULL, '1.0000', '3.1000', '3.1000', '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 (76861, '2022-04-27', 7544, 72967, 4835, NULL, '4.0000', '9.4300', '9.4300', '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 (76862, '2022-04-27', 1812, 72968, 4836, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76863, '2022-04-27', 1667, 72969, 4836, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '10.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76864, '2022-04-27', 9740, 72970, 4836, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76865, '2022-04-27', 2742, 72971, 4836, 19376, '1.0000', '14.7400', '14.7400', '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 (76866, '2022-04-27', 9874, 72972, 4836, 53430, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76867, '2022-04-27', 9579, 72973, 4837, 54579, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76868, '2022-04-27', 1666, 72974, 4837, 51313, '1.0000', '2.7137', '2.7137', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76869, '2022-04-27', 1425, 72975, 4837, NULL, '1.0000', '5.1721', '5.1721', '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 (76870, '2022-04-27', 1855, 72976, 4837, NULL, '1.0000', '1.5003', '1.5003', '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 (76871, '2022-04-27', 7507, 72977, 4837, 39787, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '138.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76872, '2022-04-27', 8851, 72978, 4838, NULL, '1.0000', '16.6600', '16.6600', '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 (76873, '2022-04-27', 7473, 72979, 4838, 51825, '2.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76874, '2022-04-27', 7560, 72980, 4838, NULL, '1.0000', '-480443.5726', '-480443.5726', '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 (76875, '2022-04-27', 9891, 72981, 4838, 54134, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76876, '2022-04-27', 9242, 72982, 4838, 48293, '1.0000', '24.2142', '24.2142', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76877, '2022-04-27', 7796, 72983, 4838, NULL, '1.0000', '13.5000', '13.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 (76878, '2022-04-27', 2295, 72984, 4838, NULL, '2.0000', '0.7000', '0.7000', '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 (76879, '2022-04-27', 7411, 72985, 4838, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76880, '2022-04-27', 2104, 72986, 4838, NULL, '1.0000', '0.2000', '0.2000', '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 (76881, '2022-04-27', 7824, 72987, 4838, NULL, '1.0000', '44153.4954', '44153.4954', '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 (76882, '2022-04-27', 8813, 72988, 4838, NULL, '1.0000', '17.6000', '17.6000', '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 (76883, '2022-04-27', 7713, 72989, 4838, 50666, '3.0000', '0.3910', '0.3910', '0.6000', '0.6000', '108.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76884, '2022-04-27', 1702, 72990, 4839, NULL, '1.0000', '14.6666', '14.6666', '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 (76885, '2022-04-27', 2315, 72991, 4839, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76886, '2022-04-27', 2066, 72992, 4839, NULL, '1.0000', '0.5100', '0.5100', '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 (76887, '2022-04-27', 1945, 72993, 4839, 53663, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76888, '2022-04-27', 2332, 72994, 4840, 51819, '1.0000', '6.7789', '6.7789', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76889, '2022-04-27', 8064, 72995, 4840, 54738, '1.0000', '4.9424', '4.9424', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76890, '2022-04-27', 8308, 72996, 4840, NULL, '1.0000', '28.7723', '28.7723', '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 (76891, '2022-04-27', 9817, 72997, 4840, 54496, '1.0000', '4.7320', '4.7320', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76892, '2022-04-27', 9799, 72998, 4841, 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 (76893, '2022-04-27', 1339, 72999, 4842, 44611, '1.0000', '1.7611', '1.7611', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76894, '2022-04-27', 2821, 73000, 4842, 54666, '1.0000', '3.4328', '3.4328', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76895, '2022-04-27', 1425, 73001, 4842, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76896, '2022-04-27', 2298, 73002, 4842, 49160, '1.0000', '6.3600', '6.3600', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76897, '2022-04-27', 7506, 73003, 4842, NULL, '1.0000', '15.0000', '15.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 (76898, '2022-04-27', 7459, 73004, 4842, NULL, '15.0000', '2.2700', '2.2700', '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 (76899, '2022-04-27', 1409, 73005, 4842, 54405, '1.0000', '13.0537', '13.0537', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76900, '2022-04-27', 1592, 73006, 4842, 54659, '1.0000', '35.0705', '35.0705', '52.0000', '52.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76901, '2022-04-27', 1534, 73007, 4842, 1667, '2.0000', '9.8500', '9.8500', '1.3000', '1.3000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76902, '2022-04-27', 1908, 73008, 4842, 5510, '2.0000', '1.7500', '1.7500', '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 (76903, '2022-04-27', 2135, 73009, 4842, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76904, '2022-04-27', 1339, 73010, 4842, 44611, '1.0000', '1.7611', '1.7611', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76905, '2022-04-27', 8004, 73011, 4842, NULL, '1.0000', '25.0000', '25.0000', '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 (76906, '2022-04-27', 1935, 73012, 4842, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76907, '2022-04-27', 2506, 73013, 4842, 54658, '1.0000', '3.9300', '3.9300', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76908, '2022-04-27', 9740, 73014, 4842, 46037, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76909, '2022-04-27', 1699, 73015, 4842, 49088, '1.0000', '3.2000', '3.2000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76910, '2022-04-27', 1422, 73016, 4842, 44543, '1.0000', '21.0505', '21.0505', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76911, '2022-04-27', 9714, 73017, 4842, 49477, '1.0000', '25.5000', '25.5000', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76912, '2022-04-27', 2342, 73018, 4842, 52309, '10.0000', '1.9495', '1.9495', '2.7000', '2.7000', '40.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76913, '2022-04-27', 1702, 73019, 4842, 54423, '1.0000', '27.7836', '27.7836', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76914, '2022-04-27', 1935, 73020, 4842, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76915, '2022-04-27', 1499, 73021, 4842, 54670, '1.0000', '0.4174', '0.4174', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76916, '2022-04-27', 1779, 73022, 4842, 4938, '1.0000', '0.3100', '0.3100', '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 (76917, '2022-04-27', 2361, 73023, 4842, 3871, '1.0000', '0.4700', '0.4700', '0.6000', '0.6000', '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 (76918, '2022-04-27', 2416, 73024, 4842, 54435, '1.0000', '1.2129', '1.2129', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76919, '2022-04-27', 7550, 73025, 4842, NULL, '39.0000', '4.7300', '4.7300', '0.5000', '0.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76920, '2022-04-28', 7318, 73026, 4843, NULL, '1.0000', '13.4400', '13.4400', '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 (76921, '2022-04-28', 9716, 73027, 4843, NULL, '1.0000', '4.4000', '4.4000', '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 (76922, '2022-04-28', 2864, 73028, 4843, 17587, '-25.0000', '1.5198', '1.5198', '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 (76923, '2022-04-28', 2864, 73028, 4843, NULL, '30.0000', '1.5198', '1.5198', '2.0000', '2.0000', '-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 (76924, '2022-04-28', 1856, 73029, 4844, NULL, '1.0000', '20.0009', '20.0009', '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 (76925, '2022-04-28', 9831, 73030, 4844, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '56.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76926, '2022-04-28', 1501, 73031, 4844, NULL, '1.0000', '1.9873', '1.9873', '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 (76927, '2022-04-28', 7328, 73032, 4844, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (76928, '2022-04-28', 1840, 73033, 4844, NULL, '4.0000', '0.2400', '0.2400', '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 (76929, '2022-04-28', 9762, 73034, 4844, 51228, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '44.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76930, '2022-04-28', 9579, 73035, 4844, 54579, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76931, '2022-04-28', 8133, 73036, 4844, NULL, '2.0000', '-14907.1915', '-14907.1915', '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 (76932, '2022-04-28', 1812, 73037, 4844, 54574, '2.0000', '8.8884', '8.8884', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76933, '2022-04-28', 2275, 73038, 4844, NULL, '3.0000', '1.0900', '1.0900', '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 (76934, '2022-04-28', 9272, 73039, 4844, NULL, '1.0000', '3.1000', '3.1000', '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 (76935, '2022-04-28', 1812, 73040, 4844, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76936, '2022-04-28', 9778, 73041, 4844, 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 (76937, '2022-04-28', 1574, 73042, 4844, NULL, '1.0000', '1.7000', '1.7000', '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 (76938, '2022-04-28', 2293, 73043, 4844, NULL, '3.0000', '10.2680', '10.2680', '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 (76939, '2022-04-28', 1493, 73044, 4844, NULL, '1.0000', '5.2600', '5.2600', '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 (76940, '2022-04-28', 7532, 73045, 4844, NULL, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76941, '2022-04-28', 7472, 73046, 4844, NULL, '1.0000', '-5.6692', '-5.6692', '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 (76942, '2022-04-28', 9831, 73047, 4844, 54072, '1.0000', '1.6779', '1.6779', '3.0000', '3.0000', '56.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76943, '2022-04-28', 1595, 73048, 4844, 48142, '1.0000', '20.1715', '20.1715', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76944, '2022-04-28', 7507, 73049, 4844, 39787, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '135.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76945, '2022-04-28', 1533, 73050, 4844, 54567, '1.0000', '3.2686', '3.2686', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76946, '2022-04-28', 2740, 73051, 4844, NULL, '1.0000', '9.8871', '9.8871', '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 (76947, '2022-04-28', 1863, 73052, 4844, 54181, '1.0000', '1.4153', '1.4153', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76948, '2022-04-28', 1402, 73053, 4844, 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 (76949, '2022-04-28', 9695, 73054, 4845, 54075, '2.0000', '5.2084', '5.2084', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76950, '2022-04-28', 2823, 73055, 4845, NULL, '2.0000', '11.2100', '11.2100', '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 (76951, '2022-04-28', 1326, 73056, 4845, 48163, '2.0000', '4.5325', '4.5325', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76952, '2022-04-28', 7707, 73057, 4845, NULL, '1.0000', '7.0000', '7.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 (76953, '2022-04-28', 7411, 73058, 4845, NULL, '1.0000', '1.3013', '1.3013', '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 (76954, '2022-04-28', 7317, 73059, 4846, NULL, '1.0000', '19.5500', '19.5500', '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 (76955, '2022-04-28', 1501, 73060, 4846, NULL, '1.0000', '2.0500', '2.0500', '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 (76956, '2022-04-28', 2251, 73061, 4846, 2788, '-18.0000', '10.9700', '10.9700', '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 (76957, '2022-04-28', 2251, 73061, 4846, NULL, '20.0000', '10.9700', '10.9700', '16.0000', '16.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 (76958, '2022-04-28', 1849, 73062, 4846, 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 (76959, '2022-04-28', 7547, 73063, 4846, NULL, '4.0000', '0.0000', '0.0000', '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 (76960, '2022-04-28', 8154, 73064, 4846, NULL, '1.0000', '12.3000', '12.3000', '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 (76961, '2022-04-28', 9618, 73065, 4846, NULL, '4.0000', '3.7500', '3.7500', '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 (76962, '2022-04-28', 7774, 73066, 4846, NULL, '1.0000', '3.3000', '3.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 (76963, '2022-04-28', 7657, 73067, 4846, NULL, '2.0000', '11.3200', '11.3200', '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 (76964, '2022-04-28', 8918, 73068, 4846, NULL, '1.0000', '1.0400', '1.0400', '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 (76965, '2022-04-28', 2906, 73069, 4846, 18651, '-5.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 (76966, '2022-04-28', 2906, 73069, 4846, NULL, '7.0000', '2.6000', '2.6000', '4.0000', '4.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 (76967, '2022-04-28', 7959, 73070, 4846, NULL, '2.0000', '9.6000', '9.6000', '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 (76968, '2022-04-28', 9215, 73071, 4846, NULL, '2.0000', '1.6000', '1.6000', '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 (76969, '2022-04-28', 2061, 73072, 4846, 2164, '-4.0000', '10.9800', '10.9800', '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 (76970, '2022-04-28', 2061, 73072, 4846, NULL, '5.0000', '10.9800', '10.9800', '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 (76971, '2022-04-28', 7762, 73073, 4846, NULL, '1.0000', '1.5000', '1.5000', '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 (76972, '2022-04-28', 9827, 73074, 4846, NULL, '1.0000', '13.5000', '13.5000', '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 (76973, '2022-04-28', 8017, 73075, 4846, NULL, '1.0000', '40.0000', '40.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 (76974, '2022-04-28', 9417, 73076, 4846, NULL, '1.0000', '4.0000', '4.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 (76975, '2022-04-28', 9215, 73077, 4846, NULL, '1.0000', '1.6000', '1.6000', '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 (76976, '2022-04-28', 9834, 73078, 4846, NULL, '1.0000', '1.4500', '1.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 (76977, '2022-04-28', 9565, 73079, 4846, NULL, '1.0000', '4.5000', '4.5000', '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 (76978, '2022-04-28', 2135, 73080, 4847, 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 (76979, '2022-04-28', 2416, 73081, 4847, 4745, '-27.0000', '1.2000', '1.2000', '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 (76980, '2022-04-28', 2416, 73081, 4847, NULL, '29.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76981, '2022-04-28', 1409, 73082, 4847, 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 (76982, '2022-04-28', 2020, 73083, 4847, 10164, '-19.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 (76983, '2022-04-28', 2020, 73083, 4847, NULL, '20.0000', '7.5000', '7.5000', '10.0000', '10.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 (76984, '2022-04-28', 1892, 73084, 4847, 5431, '-12.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 (76985, '2022-04-28', 1892, 73084, 4847, NULL, '14.0000', '90.0000', '90.0000', '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 (76986, '2022-04-28', 2010, 73085, 4847, 17832, '2.0000', '3.7010', '3.7010', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 158);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76987, '2022-04-28', 1371, 73086, 4847, 10169, '-1.0000', '5.5000', '5.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 (76988, '2022-04-28', 1371, 73086, 4847, NULL, '2.0000', '5.5000', '5.5000', '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 (76989, '2022-04-28', 7342, 73087, 4847, NULL, '1.0000', '15.6000', '15.6000', '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 (76990, '2022-04-28', 2266, 73088, 4847, 2801, '-9.0000', '6.4900', '6.4900', '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 (76991, '2022-04-28', 2266, 73088, 4847, NULL, '10.0000', '6.4900', '6.4900', '10.5000', '10.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 (76992, '2022-04-28', 1602, 73089, 4847, 5897, '-134.0000', '6.7859', '6.7859', '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 (76993, '2022-04-28', 1602, 73089, 4847, NULL, '135.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76994, '2022-04-28', 2943, 73090, 4847, 19987, '-10.0000', '2.1800', '2.1800', '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 (76995, '2022-04-28', 2943, 73090, 4847, NULL, '11.0000', '2.1800', '2.1800', '4.0000', '4.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 (76996, '2022-04-28', 2070, 73091, 4847, NULL, '1.0000', '2.0000', '2.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 (76997, '2022-04-28', 8184, 73092, 4847, NULL, '10.0000', '2.4000', '2.4000', '4.0000', '4.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 (76998, '2022-04-28', 9750, 73093, 4847, NULL, '1.0000', '3.3000', '3.3000', '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 (76999, '2022-04-28', 2964, 73094, 4847, 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 (77000, '2022-04-28', 2858, 73095, 4847, 17772, '-68.0000', '1.0000', '1.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 (77001, '2022-04-28', 2858, 73095, 4847, NULL, '69.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77002, '2022-04-28', 1812, 73096, 4848, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77003, '2022-04-28', 9695, 73097, 4848, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77004, '2022-04-28', 8740, 73098, 4848, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77005, '2022-04-28', 9831, 73099, 4848, 54072, '5.0000', '1.6779', '1.6779', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77006, '2022-04-28', 1307, 73100, 4848, NULL, '1.0000', '-0.0521', '-0.0521', '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 (77007, '2022-04-28', 2161, 73101, 4848, 44159, '1.0000', '9.5000', '9.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77008, '2022-04-28', 9735, 73102, 4848, 51368, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77009, '2022-04-28', 1787, 73103, 4848, NULL, '1.0000', '0.5000', '0.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 (77010, '2022-04-28', 9775, 73104, 4848, 54165, '1.0000', '15.0250', '15.0250', '13.7300', '13.7300', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77011, '2022-04-28', 3029, 73105, 4848, NULL, '1.0000', '-204.9360', '-204.9360', '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 (77012, '2022-04-28', 7447, 73106, 4848, NULL, '3.0000', '19.1100', '19.1100', '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 (77013, '2022-04-28', 1871, 73107, 4848, NULL, '3.0000', '2.2081', '2.2081', '3.7000', '3.7000', '-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 (77014, '2022-04-28', 2231, 73108, 4848, NULL, '1.0000', '-543.9392', '-543.9392', '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 (77015, '2022-04-28', 2231, 73109, 4848, NULL, '1.0000', '-543.9392', '-543.9392', '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 (77016, '2022-04-28', 7406, 73110, 4848, NULL, '1.0000', '2.3750', '2.3750', '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 (77017, '2022-04-28', 9482, 73111, 4848, NULL, '2.0000', '0.5000', '0.5000', '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 (77018, '2022-04-28', 9785, 73112, 4848, 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 (77019, '2022-04-28', 7980, 73113, 4848, NULL, '5.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (77020, '2022-04-28', 2821, 73114, 4848, NULL, '1.0000', '3.3943', '3.3943', '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 (77021, '2022-04-28', 2623, 73115, 4848, NULL, '1.0000', '0.6000', '0.6000', '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 (77022, '2022-04-28', 1793, 73116, 4848, NULL, '1.0000', '18.0667', '18.0667', '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 (77023, '2022-04-28', 1499, 73117, 4848, 52148, '2.0000', '0.3747', '0.3747', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77024, '2022-04-28', 8208, 73118, 4848, NULL, '2.0000', '33.0000', '33.0000', '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 (77025, '2022-04-28', 7406, 73119, 4848, NULL, '1.0000', '2.3750', '2.3750', '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 (77026, '2022-04-28', 2242, 73120, 4848, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77027, '2022-04-28', 1498, 73121, 4848, 52352, '2.0000', '0.4476', '0.4476', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77028, '2022-04-28', 1508, 73122, 4848, 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 (77029, '2022-04-28', 1510, 73123, 4848, NULL, '1.0000', '12.9810', '12.9810', '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 (77030, '2022-04-28', 8740, 73124, 4848, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77031, '2022-04-28', 1499, 73125, 4848, 52148, '1.0000', '0.3747', '0.3747', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77032, '2022-04-28', 2635, 73126, 4848, 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 (77033, '2022-04-28', 8207, 73127, 4848, NULL, '1.0000', '0.0000', '0.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 (77034, '2022-04-28', 2682, 73128, 4848, 53653, '1.0000', '16.5400', '16.5400', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77035, '2022-04-28', 2818, 73129, 4848, 43247, '1.0000', '-123.7044', '-123.7044', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77036, '2022-04-28', 8202, 73130, 4849, 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 (77037, '2022-04-28', 1935, 73131, 4849, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '138.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77038, '2022-04-28', 2634, 73132, 4849, 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 (77039, '2022-04-28', 9579, 73133, 4849, 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 (77040, '2022-04-28', 8413, 73134, 4849, 53790, '2.0000', '89.9992', '89.9992', '120.0000', '120.0000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77041, '2022-04-28', 7411, 73135, 4849, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77042, '2022-04-28', 7514, 73136, 4849, NULL, '2.0000', '1417.7133', '1417.7133', '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 (77043, '2022-04-28', 7913, 73137, 4849, NULL, '2.0000', '0.4833', '0.4833', '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 (77044, '2022-04-28', 7335, 73138, 4849, NULL, '1.0000', '-5.6867', '-5.6867', '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 (77045, '2022-04-28', 7753, 73139, 4849, 54725, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77046, '2022-04-28', 2506, 73140, 4849, 54299, '1.0000', '4.6430', '4.6430', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77047, '2022-04-28', 8752, 73141, 4849, NULL, '1.0000', '4.2000', '4.2000', '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 (77048, '2022-04-28', 9534, 73142, 4849, 54714, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77049, '2022-04-28', 3080, 73143, 4849, 30992, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77050, '2022-04-28', 7711, 73144, 4849, NULL, '1.0000', '-7741.6583', '-7741.6583', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77051, '2022-04-28', 7753, 73145, 4849, 54725, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77052, '2022-04-28', 7715, 73146, 4849, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '30.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77053, '2022-04-28', 2315, 73147, 4849, 53909, '1.0000', '0.6636', '0.6636', '0.8000', '0.8000', '70.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77054, '2022-04-28', 7641, 73148, 4849, NULL, '1.0000', '8.1611', '8.1611', '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 (77055, '2022-04-28', 7473, 73149, 4849, 51825, '10.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77056, '2022-04-28', 7703, 73150, 4849, NULL, '2.0000', '102.7757', '102.7757', '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 (77057, '2022-04-28', 7459, 73151, 4849, 53917, '2.0000', '2.9681', '2.9681', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77058, '2022-04-28', 8539, 73152, 4849, 54276, '1.0000', '1.9333', '1.9333', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77059, '2022-04-28', 1916, 73153, 4849, 54100, '1.0000', '10.2080', '10.2080', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77060, '2022-04-28', 9274, 73154, 4849, NULL, '1.0000', '3.5638', '3.5638', '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 (77061, '2022-04-28', 2315, 73155, 4849, 53909, '2.0000', '0.6636', '0.6636', '0.8000', '0.8000', '69.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77062, '2022-04-28', 7641, 73156, 4849, NULL, '1.0000', '8.1611', '8.1611', '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 (77063, '2022-04-28', 8517, 73157, 4849, NULL, '1.0000', '28.0323', '28.0323', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77064, '2022-04-28', 7318, 73158, 4849, NULL, '1.0000', '11.4954', '11.4954', '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 (77065, '2022-04-28', 7787, 73159, 4849, NULL, '1.0000', '11.7735', '11.7735', '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 (77066, '2022-04-28', 9804, 73160, 4849, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77067, '2022-04-28', 7640, 73161, 4849, 53921, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77068, '2022-04-28', 7814, 73162, 4849, NULL, '1.0000', '26.8335', '26.8335', '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 (77069, '2022-04-28', 7815, 73163, 4849, NULL, '1.0000', '32.2667', '32.2667', '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 (77070, '2022-04-28', 7333, 73164, 4849, NULL, '5.0000', '-0.5856', '-0.5856', '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 (77071, '2022-04-28', 7832, 73165, 4849, 54475, '2.0000', '12.9545', '12.9545', '17.5000', '17.5000', '8.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77072, '2022-04-28', 8061, 73166, 4849, 54769, '1.0000', '-0.4000', '-0.4000', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77073, '2022-04-28', 2315, 73167, 4850, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77074, '2022-04-28', 1428, 73168, 4850, 54520, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77075, '2022-04-28', 7411, 73169, 4850, NULL, '1.0000', '1.3013', '1.3013', '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 (77076, '2022-04-28', 1855, 73170, 4850, NULL, '1.0000', '1.5003', '1.5003', '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 (77077, '2022-04-28', 2237, 73171, 4850, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77078, '2022-04-28', 9819, 73172, 4850, 51693, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77079, '2022-04-28', 2259, 73173, 4850, 53206, '1.0000', '22.7428', '22.7428', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77080, '2022-04-28', 2260, 73174, 4850, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77081, '2022-04-28', 8444, 73175, 4850, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77082, '2022-04-28', 7802, 73176, 4850, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77083, '2022-04-28', 2248, 73177, 4850, 51353, '1.0000', '2.8441', '2.8441', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77084, '2022-04-28', 9891, 73178, 4850, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '10.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77085, '2022-04-28', 1888, 73179, 4850, 54526, '1.0000', '16.5938', '16.5938', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77086, '2022-04-28', 1483, 73180, 4850, 39896, '1.0000', '25.1867', '25.1867', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77087, '2022-04-28', 2821, 73181, 4850, NULL, '1.0000', '3.3943', '3.3943', '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 (77088, '2022-04-28', 9783, 73182, 4850, 52165, '1.0000', '17.6000', '17.6000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77089, '2022-04-28', 1912, 73183, 4850, 51315, '1.0000', '0.6218', '0.6218', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77090, '2022-04-28', 2289, 73184, 4850, NULL, '1.0000', '0.2222', '0.2222', '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 (77091, '2022-04-28', 7530, 73185, 4850, 48170, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77092, '2022-04-28', 9841, 73186, 4850, 51250, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77093, '2022-04-28', 1340, 73187, 4850, 54554, '1.0000', '3.6111', '3.6111', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77094, '2022-04-28', 2506, 73188, 4850, NULL, '1.0000', '4.2640', '4.2640', '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 (77095, '2022-04-28', 1647, 73189, 4850, NULL, '1.0000', '27.3300', '27.3300', '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 (77096, '2022-04-28', 2293, 73190, 4850, NULL, '3.0000', '10.2680', '10.2680', '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 (77097, '2022-04-28', 7333, 73191, 4850, NULL, '3.0000', '13.5000', '13.5000', '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 (77098, '2022-04-28', 2821, 73192, 4850, NULL, '1.0000', '3.3943', '3.3943', '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 (77099, '2022-04-28', 1888, 73193, 4850, 54526, '1.0000', '16.5938', '16.5938', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77100, '2022-04-28', 9761, 73194, 4850, 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 (77101, '2022-04-28', 2231, 73195, 4850, NULL, '1.0000', '-543.9392', '-543.9392', '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 (77102, '2022-04-28', 2506, 73196, 4850, NULL, '1.0000', '4.2640', '4.2640', '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 (77103, '2022-04-28', 1485, 73197, 4850, NULL, '1.0000', '90.0000', '90.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 (77104, '2022-04-28', 2821, 73198, 4850, NULL, '1.0000', '3.3943', '3.3943', '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 (77105, '2022-04-28', 1307, 73199, 4850, NULL, '1.0000', '-0.0521', '-0.0521', '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 (77106, '2022-04-28', 7411, 73200, 4850, NULL, '1.0000', '1.3013', '1.3013', '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 (77107, '2022-04-28', 2411, 73201, 4850, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77108, '2022-04-28', 9178, 73202, 4851, 46013, '1.0000', '4.2725', '4.2725', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77109, '2022-04-28', 7444, 73203, 4851, NULL, '1.0000', '0.7739', '0.7739', '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 (77110, '2022-04-28', 9747, 73204, 4851, 50667, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77111, '2022-04-28', 9747, 73204, 4851, 46923, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77112, '2022-04-28', 2352, 73205, 4851, NULL, '10.0000', '1.9000', '1.9000', '3.5000', '3.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 (77113, '2022-04-28', 2295, 73206, 4851, NULL, '3.0000', '0.7000', '0.7000', '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 (77114, '2022-04-28', 9740, 73207, 4851, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77115, '2022-04-28', 1420, 73208, 4851, 50809, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 418);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77116, '2022-04-28', 7892, 73209, 4851, NULL, '1.0000', '4.2000', '4.2000', '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 (77117, '2022-04-28', 8359, 73210, 4851, 54275, '1.0000', '801.6266', '801.6266', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77118, '2022-04-28', 7781, 73211, 4851, NULL, '2.0000', '5.2802', '5.2802', '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 (77119, '2022-04-28', 9762, 73212, 4851, 46935, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77120, '2022-04-28', 2414, 73213, 4851, NULL, '2.0000', '3.4000', '3.4000', '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 (77121, '2022-04-28', 8105, 73214, 4851, NULL, '1.0000', '17.7033', '17.7033', '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 (77122, '2022-04-28', 9399, 73215, 4851, NULL, '1.0000', '0.9794', '0.9794', '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 (77123, '2022-04-28', 7641, 73216, 4851, NULL, '2.0000', '8.1611', '8.1611', '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 (77124, '2022-04-28', 7857, 73217, 4851, NULL, '1.0000', '16.1000', '16.1000', '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 (77125, '2022-04-28', 9390, 73218, 4851, NULL, '1.0000', '25.0000', '25.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 (77126, '2022-04-28', 1855, 73219, 4851, 49820, '1.0000', '1.4365', '1.4365', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77127, '2022-04-28', 1935, 73220, 4851, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '137.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77128, '2022-04-28', 7657, 73221, 4851, NULL, '1.0000', '32.0003', '32.0003', '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 (77129, '2022-04-28', 7524, 73222, 4851, NULL, '1.0000', '17.9050', '17.9050', '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 (77130, '2022-04-28', 2210, 73223, 4852, 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 (77131, '2022-04-28', 9634, 73224, 4852, 40901, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77132, '2022-04-28', 9821, 73225, 4852, 50873, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77133, '2022-04-28', 2049, 73226, 4852, NULL, '1.0000', '8.5000', '8.5000', '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 (77134, '2022-04-28', 2231, 73227, 4852, 54360, '1.0000', '35.4838', '35.4838', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77135, '2022-04-28', 9627, 73228, 4852, 40292, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77136, '2022-04-28', 1702, 73229, 4852, 54423, '1.0000', '27.7836', '27.7836', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77137, '2022-04-28', 2491, 73230, 4852, 52260, '1.0000', '13.0576', '13.0576', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77138, '2022-04-28', 1452, 73231, 4852, 5632, '2.0000', '1.2300', '1.2300', '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 (77139, '2022-04-28', 1425, 73232, 4852, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77140, '2022-04-28', 3009, 73233, 4852, 44553, '1.0000', '46.3296', '46.3296', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77141, '2022-04-28', 2293, 73234, 4852, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77142, '2022-04-28', 2950, 73235, 4852, 52313, '3.0000', '1.7000', '1.7000', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77143, '2022-04-28', 8744, 73236, 4852, 54342, '1.0000', '3.5278', '3.5278', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77144, '2022-04-28', 7383, 73237, 4852, NULL, '1.0000', '1.9700', '1.9700', '78.0000', '78.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77145, '2022-04-28', 9715, 73238, 4852, 54667, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77146, '2022-04-28', 2642, 73239, 4852, 54366, '1.0000', '7.7686', '7.7686', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77147, '2022-04-28', 9776, 73240, 4852, 54379, '1.0000', '7.7900', '7.7900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77148, '2022-04-28', 2221, 73241, 4852, 53888, '1.0000', '15.9398', '15.9398', '26.0000', '26.0000', '7.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77149, '2022-04-28', 1602, 73242, 4852, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77150, '2022-04-28', 1816, 73243, 4852, 54637, '1.0000', '19.6801', '19.6801', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77151, '2022-04-28', 1846, 73244, 4852, 54594, '1.0000', '-1.0501', '-1.0501', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77152, '2022-04-28', 1863, 73245, 4852, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77153, '2022-04-28', 1748, 73246, 4852, 49137, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77154, '2022-04-28', 2693, 73247, 4852, 54412, '1.0000', '24.7971', '24.7971', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77155, '2022-04-28', 9400, 73248, 4852, NULL, '1.0000', '4.2000', '4.2000', '5.5400', '5.5400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77156, '2022-04-28', 9732, 73249, 4852, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77157, '2022-04-28', 1771, 73250, 4852, 21570, '1.0000', '3.3900', '3.3900', '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 (77158, '2022-04-28', 1863, 73251, 4852, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77159, '2022-04-28', 1667, 73252, 4852, 54634, '1.0000', '26.8586', '26.8586', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77160, '2022-04-28', 9579, 73253, 4852, 54432, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77161, '2022-04-28', 9160, 73254, 4852, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77162, '2022-04-28', 1954, 73255, 4852, 47998, '1.0000', '-11.3000', '-11.3000', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77163, '2022-04-28', 9578, 73256, 4852, 54431, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77164, '2022-04-28', 1783, 73257, 4852, 54661, '1.0000', '-2.0913', '-2.0913', '13.5000', '13.5000', '14.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77165, '2022-04-28', 1379, 73258, 4853, NULL, '1.0000', '82.8700', '82.8700', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77166, '2022-04-28', 2543, 73259, 4854, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77167, '2022-04-29', 2506, 73260, 4855, 54658, '1.0000', '3.9300', '3.9300', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77168, '2022-04-29', 1570, 73261, 4855, 52093, '1.0000', '49.5000', '49.5000', '65.5000', '65.5000', '0.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77169, '2022-04-29', 1790, 73262, 4855, 49460, '1.0000', '-29.0000', '-29.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77170, '2022-04-29', 8746, 73263, 4855, 54338, '2.0000', '180.2641', '180.2641', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77171, '2022-04-29', 2964, 73264, 4855, 54344, '1.0000', '4.3635', '4.3635', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77172, '2022-04-29', 7533, 73265, 4855, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77173, '2022-04-29', 9732, 73266, 4855, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77174, '2022-04-29', 2293, 73267, 4855, 50920, '2.0000', '0.8705', '0.8705', '1.5000', '1.5000', '86.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77175, '2022-04-29', 8208, 73268, 4855, NULL, '2.0000', '33.0000', '33.0000', '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 (77176, '2022-04-29', 1841, 73269, 4855, 54426, '2.0000', '0.0701', '0.0701', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77177, '2022-04-29', 1612, 73270, 4855, 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 (77178, '2022-04-29', 1828, 73271, 4855, 33003, '2.0000', '0.7300', '0.7300', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77179, '2022-04-29', 9579, 73272, 4855, 54432, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77180, '2022-04-29', 1411, 73273, 4855, 53254, '1.0000', '25.9566', '25.9566', '35.0000', '35.0000', '9.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77181, '2022-04-29', 7385, 73274, 4855, 54646, '10.0000', '2.4776', '2.4776', '3.7000', '3.7000', '30.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77182, '2022-04-29', 2643, 73275, 4855, 54436, '1.0000', '0.9033', '0.9033', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77183, '2022-04-29', 2642, 73276, 4856, 35923, '1.0000', '7.7686', '7.7686', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77184, '2022-04-29', 9827, 73277, 4857, NULL, '1.0000', '13.5000', '13.5000', '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 (77185, '2022-04-29', 1369, 73278, 4857, 8433, '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 (77186, '2022-04-29', 9649, 73279, 4857, 54588, '1.0000', '16.2437', '16.2437', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77187, '2022-04-29', 1851, 73280, 4857, 54386, '1.0000', '12.8734', '12.8734', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77188, '2022-04-29', 8042, 73281, 4857, NULL, '1.0000', '33.8200', '33.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 (77189, '2022-04-29', 2222, 73282, 4858, 1496, '1.0000', '13.5000', '13.5000', '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 (77190, '2022-04-29', 3060, 73283, 4858, 54687, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77191, '2022-04-29', 7890, 73284, 4859, NULL, '1.0000', '1.0000', '1.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 (77192, '2022-04-29', 9092, 73285, 4859, NULL, '3.0000', '5.2900', '5.2900', '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 (77193, '2022-04-29', 7917, 73286, 4859, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (77194, '2022-04-29', 8063, 73287, 4859, NULL, '1.0000', '1.6000', '1.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 (77195, '2022-04-29', 1338, 73288, 4859, 16502, '-11.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 (77196, '2022-04-29', 1338, 73288, 4859, NULL, '12.0000', '4.0000', '4.0000', '6.5000', '6.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 (77197, '2022-04-29', 7482, 73289, 4859, NULL, '1.0000', '3.0500', '3.0500', '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 (77198, '2022-04-29', 7736, 73290, 4859, NULL, '1.0000', '16.2000', '16.2000', '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 (77199, '2022-04-29', 7518, 73291, 4859, NULL, '1.0000', '7.8200', '7.8200', '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 (77200, '2022-04-29', 9089, 73292, 4859, NULL, '1.0000', '3.8000', '3.8000', '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 (77201, '2022-04-29', 2284, 73293, 4859, 22249, '2.0000', '1.3000', '1.3000', '2.0000', '2.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 (77202, '2022-04-29', 8677, 73294, 4859, NULL, '3.0000', '1.2800', '1.2800', '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 (77203, '2022-04-29', 7457, 73295, 4859, 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 (77204, '2022-04-29', 7630, 73296, 4859, NULL, '1.0000', '10.0000', '10.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 (77205, '2022-04-29', 9092, 73297, 4859, NULL, '1.0000', '5.2900', '5.2900', '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 (77206, '2022-04-29', 9821, 73298, 4859, NULL, '1.0000', '1.4500', '1.4500', '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 (77207, '2022-04-29', 2315, 73299, 4859, 2735, '-280.0000', '0.3300', '0.3300', '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 (77208, '2022-04-29', 2315, 73299, 4859, NULL, '281.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-281.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77209, '2022-04-29', 7719, 73300, 4859, NULL, '1.0000', '6.0000', '6.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 (77210, '2022-04-29', 8966, 73301, 4859, NULL, '2.0000', '6.8500', '6.8500', '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 (77211, '2022-04-29', 7317, 73302, 4859, NULL, '1.0000', '19.5500', '19.5500', '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 (77212, '2022-04-29', 7762, 73303, 4859, NULL, '1.0000', '1.5000', '1.5000', '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 (77213, '2022-04-29', 7411, 73304, 4860, NULL, '1.0000', '1.3013', '1.3013', '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 (77214, '2022-04-29', 1307, 73305, 4860, NULL, '1.0000', '-0.0521', '-0.0521', '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 (77215, '2022-04-29', 9634, 73306, 4860, 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 (77216, '2022-04-29', 9724, 73307, 4860, 47062, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77217, '2022-04-29', 7411, 73308, 4860, NULL, '1.0000', '1.3013', '1.3013', '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 (77218, '2022-04-29', 2986, 73309, 4860, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77219, '2022-04-29', 8444, 73310, 4860, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77220, '2022-04-29', 9856, 73311, 4860, 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 (77221, '2022-04-29', 2331, 73312, 4860, 53222, '1.0000', '12.7075', '12.7075', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77222, '2022-04-29', 2633, 73313, 4860, 52195, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77223, '2022-04-29', 8773, 73314, 4860, NULL, '1.0000', '3.8140', '3.8140', '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 (77224, '2022-04-29', 9737, 73315, 4860, 54521, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77225, '2022-04-29', 2740, 73316, 4860, NULL, '1.0000', '9.8871', '9.8871', '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 (77226, '2022-04-29', 2068, 73317, 4860, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77227, '2022-04-29', 9698, 73318, 4860, 52196, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77228, '2022-04-29', 8444, 73319, 4860, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77229, '2022-04-29', 7324, 73320, 4860, 51663, '1.0000', '5.4813', '5.4813', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77230, '2022-04-29', 9834, 73321, 4860, 51659, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77231, '2022-04-29', 1580, 73322, 4860, 51316, '2.0000', '1.1598', '1.1598', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77232, '2022-04-29', 8124, 73323, 4860, 53428, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77233, '2022-04-29', 2916, 73324, 4860, NULL, '1.0000', '-13.0168', '-13.0168', '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 (77234, '2022-04-29', 2315, 73325, 4860, 47139, '4.0000', '0.4851', '0.4851', '0.8000', '0.8000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77235, '2022-04-29', 8444, 73326, 4861, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77236, '2022-04-29', 3001, 73327, 4861, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '77.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77237, '2022-04-29', 7585, 73328, 4862, NULL, '1.0000', '7.3862', '7.3862', '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 (77238, '2022-04-29', 9636, 73329, 4862, NULL, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77239, '2022-04-29', 7756, 73330, 4862, NULL, '1.0000', '75.7768', '75.7768', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77240, '2022-04-29', 7411, 73331, 4862, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77241, '2022-04-29', 8186, 73332, 4862, NULL, '3.0000', '1.0800', '1.0800', '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 (77242, '2022-04-29', 8053, 73333, 4862, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77243, '2022-04-29', 8064, 73334, 4862, 54738, '1.0000', '4.9424', '4.9424', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77244, '2022-04-29', 9215, 73335, 4862, 54759, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77245, '2022-04-29', 7967, 73336, 4862, 54105, '1.0000', '6.5027', '6.5027', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77246, '2022-04-29', 7411, 73337, 4862, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77247, '2022-04-29', 7551, 73338, 4862, NULL, '10.0000', '-19.2050', '-19.2050', '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 (77248, '2022-04-29', 7674, 73339, 4862, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '85.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77249, '2022-04-29', 2332, 73340, 4862, 51819, '1.0000', '6.7789', '6.7789', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77250, '2022-04-29', 9729, 73341, 4862, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77251, '2022-04-29', 7991, 73342, 4862, NULL, '1.0000', '26.0429', '26.0429', '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 (77252, '2022-04-29', 7608, 73343, 4862, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77253, '2022-04-29', 9329, 73344, 4862, NULL, '2.0000', '11202.2795', '11202.2795', '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 (77254, '2022-04-29', 7368, 73345, 4862, 52730, '2.0000', '-4.3889', '-4.3889', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77255, '2022-04-29', 2656, 73346, 4862, NULL, '1.0000', '1.5000', '1.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 (77256, '2022-04-29', 8011, 73347, 4862, NULL, '1.0000', '7.5455', '7.5455', '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 (77257, '2022-04-29', 8504, 73348, 4862, NULL, '1.0000', '-1.5000', '-1.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 (77258, '2022-04-29', 1805, 73349, 4862, NULL, '1.0000', '4.9973', '4.9973', '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 (77259, '2022-04-29', 9204, 73350, 4862, 54280, '1.0000', '6.6824', '6.6824', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77260, '2022-04-29', 7514, 73351, 4862, NULL, '2.0000', '1417.7133', '1417.7133', '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 (77261, '2022-04-29', 9215, 73352, 4862, 54759, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77262, '2022-04-29', 8539, 73353, 4862, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77263, '2022-04-29', 1501, 73354, 4862, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77264, '2022-04-29', 7385, 73355, 4862, 54713, '3.0000', '10.9932', '10.9932', '3.7000', '3.7000', '92.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77265, '2022-04-29', 7954, 73356, 4862, NULL, '4.0000', '412.7272', '412.7272', '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 (77266, '2022-04-29', 8155, 73357, 4862, NULL, '3.0000', '65.0000', '65.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 (77267, '2022-04-29', 7781, 73358, 4862, NULL, '3.0000', '5.2802', '5.2802', '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 (77268, '2022-04-29', 1520, 73359, 4862, 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 (77269, '2022-04-29', 7917, 73360, 4862, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '118.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77270, '2022-04-29', 7713, 73361, 4862, 50666, '2.0000', '0.3910', '0.3910', '0.6000', '0.6000', '106.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77271, '2022-04-29', 9747, 73362, 4862, 46923, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77272, '2022-04-29', 7585, 73363, 4862, NULL, '1.0000', '7.3862', '7.3862', '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 (77273, '2022-04-29', 1905, 73364, 4863, 51374, '1.0000', '0.5277', '0.5277', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77274, '2022-04-29', 3029, 73365, 4863, NULL, '1.0000', '-204.9360', '-204.9360', '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 (77275, '2022-04-29', 7472, 73366, 4863, NULL, '2.0000', '-5.6692', '-5.6692', '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 (77276, '2022-04-29', 7641, 73367, 4863, NULL, '1.0000', '1.9000', '1.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 (77277, '2022-04-29', 2293, 73368, 4863, NULL, '3.0000', '10.2680', '10.2680', '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 (77278, '2022-04-29', 2315, 73369, 4863, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77279, '2022-04-29', 7333, 73370, 4863, NULL, '1.0000', '13.5000', '13.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 (77280, '2022-04-29', 9482, 73371, 4863, 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 (77281, '2022-04-29', 2758, 73372, 4863, NULL, '1.0000', '5.4000', '5.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 (77282, '2022-04-29', 7641, 73373, 4863, NULL, '1.0000', '1.9000', '1.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 (77283, '2022-04-29', 8980, 73374, 4863, NULL, '1.0000', '9.5000', '9.5000', '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 (77284, '2022-04-29', 1807, 73375, 4863, NULL, '2.0000', '34.9993', '34.9993', '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 (77285, '2022-04-29', 1501, 73376, 4863, NULL, '1.0000', '1.9873', '1.9873', '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 (77286, '2022-04-29', 1521, 73377, 4863, 48883, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77287, '2022-04-29', 2260, 73378, 4863, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77288, '2022-04-29', 2103, 73379, 4863, 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 (77289, '2022-04-29', 8208, 73380, 4863, NULL, '1.0000', '33.0000', '33.0000', '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 (77290, '2022-04-29', 2379, 73381, 4863, NULL, '1.0000', '0.2954', '0.2954', '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 (77291, '2022-04-29', 2445, 73382, 4863, 22547, '3.0000', '3.2000', '3.2000', '5.2800', '5.2800', '16.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 (77292, '2022-04-29', 7438, 73383, 4863, NULL, '1.0000', '28.6900', '28.6900', '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 (77293, '2022-04-29', 8158, 73384, 4863, NULL, '1.0000', '22.0000', '22.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 (77294, '2022-04-29', 9732, 73385, 4863, 54524, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77295, '2022-04-29', 3058, 73386, 4863, NULL, '1.0000', '2.3000', '2.3000', '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 (77296, '2022-04-29', 7318, 73387, 4863, 53664, '1.0000', '10.6148', '10.6148', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77297, '2022-04-29', 2293, 73388, 4863, NULL, '1.0000', '10.2680', '10.2680', '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 (77298, '2022-04-29', 9595, 73389, 4863, 48716, '1.0000', '12.6954', '12.6954', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77299, '2022-04-29', 1590, 73390, 4863, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77300, '2022-04-29', 9735, 73391, 4863, 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 (77301, '2022-04-29', 1481, 73392, 4863, 51243, '1.0000', '25.9000', '25.9000', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77302, '2022-04-29', 9840, 73393, 4864, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77303, '2022-04-29', 1521, 73394, 4864, 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 (77304, '2022-04-29', 2285, 73395, 4865, NULL, '1.0000', '34.5905', '34.5905', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77305, '2022-04-29', 1871, 73396, 4865, NULL, '1.0000', '2.2081', '2.2081', '3.7000', '3.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 (77306, '2022-04-29', 2992, 73397, 4865, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77307, '2022-04-29', 1337, 73398, 4866, NULL, '1.0000', '2.0000', '2.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 (77308, '2022-04-29', 2269, 73399, 4866, NULL, '1.0000', '4.2967', '4.2967', '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 (77309, '2022-04-29', 1602, 73400, 4866, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77310, '2022-04-29', 2250, 73401, 4866, 52341, '1.0000', '7.4592', '7.4592', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77311, '2022-04-29', 8308, 73402, 4866, NULL, '1.0000', '11.0000', '11.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 (77312, '2022-04-29', 9735, 73403, 4866, 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 (77313, '2022-04-29', 7570, 73404, 4867, 53932, '1.0000', '6.8025', '6.8025', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77314, '2022-04-29', 7547, 73405, 4867, NULL, '2.0000', '0.0000', '0.0000', '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 (77315, '2022-04-29', 8746, 73406, 4867, 53611, '1.0000', '3.5540', '3.5540', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77316, '2022-04-29', 7317, 73407, 4867, 54278, '1.0000', '14.7396', '14.7396', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77317, '2022-04-29', 8444, 73408, 4867, NULL, '2.0000', '10.2581', '10.2581', '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 (77318, '2022-04-29', 8712, 73409, 4867, NULL, '1.0000', '6.9800', '6.9800', '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 (77319, '2022-04-29', 8740, 73410, 4868, NULL, '1.0000', '2.0000', '2.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 (77320, '2022-04-29', 8746, 73411, 4868, NULL, '1.0000', '3.1500', '3.1500', '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 (77321, '2022-04-29', 9695, 73412, 4868, NULL, '1.0000', '4.5000', '4.5000', '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 (77322, '2022-04-29', 2898, 73413, 4869, 18353, '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 (77323, '2022-04-29', 1588, 73414, 4869, 46070, '1.0000', '4.8000', '4.8000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77324, '2022-04-29', 1908, 73415, 4869, 5510, '3.0000', '1.7500', '1.7500', '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 (77325, '2022-04-29', 1772, 73416, 4869, 54590, '3.0000', '6.0233', '6.0233', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77326, '2022-04-29', 2237, 73417, 4869, 54421, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77327, '2022-04-29', 1935, 73418, 4869, 54624, '2.0000', '1.4427', '1.4427', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77328, '2022-04-29', 7954, 73419, 4869, 52099, '2.0000', '-65.3773', '-65.3773', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77329, '2022-04-29', 2289, 73420, 4869, 53244, '2.0000', '0.2742', '0.2742', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77330, '2022-04-29', 2169, 73421, 4869, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77331, '2022-04-29', 1892, 73422, 4869, 5497, '1.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 (77332, '2022-04-29', 2660, 73423, 4869, 49531, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77333, '2022-04-29', 2315, 73424, 4869, 3069, '3.0000', '0.3300', '0.3300', '0.8000', '0.8000', '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 (77334, '2022-04-29', 3057, 73425, 4869, 54621, '2.0000', '3.2824', '3.2824', '4.5000', '4.5000', '34.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77335, '2022-04-29', 2315, 73426, 4869, 3069, '2.0000', '0.3300', '0.3300', '0.8000', '0.8000', '151.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77336, '2022-04-29', 9732, 73427, 4869, 53874, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77337, '2022-04-29', 1837, 73428, 4869, 54424, '4.0000', '0.5024', '0.5024', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77338, '2022-04-29', 1787, 73429, 4869, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77339, '2022-04-29', 1812, 73430, 4869, 54683, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77340, '2022-04-29', 1602, 73431, 4869, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77341, '2022-04-29', 9895, 73432, 4869, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77342, '2022-04-29', 1581, 73433, 4869, 4958, '1.0000', '12.0500', '12.0500', '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 (77343, '2022-04-29', 2235, 73434, 4869, 50910, '1.0000', '19.5627', '19.5627', '36.5000', '36.5000', '2.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77344, '2022-04-29', 1665, 73435, 4869, 54639, '1.0000', '1.1801', '1.1801', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77345, '2022-04-29', 2327, 73436, 4869, 45068, '1.0000', '16.5543', '16.5543', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77346, '2022-04-29', 1302, 73437, 4869, 46755, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77347, '2022-04-29', 9731, 73438, 4869, 52299, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77348, '2022-04-29', 2317, 73439, 4869, 39176, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '27.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77349, '2022-04-29', 7927, 73440, 4869, NULL, '1.0000', '11.8000', '11.8000', '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 (77350, '2022-04-29', 2602, 73441, 4869, 54368, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77351, '2022-04-29', 7744, 73442, 4869, NULL, '1.0000', '2.9400', '2.9400', '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 (77352, '2022-04-30', 1912, 73443, 4870, 51315, '2.0000', '0.6218', '0.6218', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77353, '2022-04-30', 1602, 73444, 4870, 54171, '2.0000', '6.9136', '6.9136', '10.0000', '10.0000', '29.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77354, '2022-04-30', 2379, 73445, 4870, NULL, '1.0000', '0.2954', '0.2954', '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 (77355, '2022-04-30', 1837, 73446, 4870, NULL, '1.0000', '2.5335', '2.5335', '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 (77356, '2022-04-30', 8980, 73447, 4870, NULL, '1.0000', '9.5000', '9.5000', '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 (77357, '2022-04-30', 7417, 73448, 4870, NULL, '3.0000', '6.0000', '6.0000', '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 (77358, '2022-04-30', 1868, 73449, 4870, NULL, '1.0000', '4.0300', '4.0300', '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 (77359, '2022-04-30', 7507, 73450, 4870, 39787, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '132.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77360, '2022-04-30', 7530, 73451, 4870, 48170, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77361, '2022-04-30', 1828, 73452, 4870, 19855, '1.0000', '0.7300', '0.7300', '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 (77362, '2022-04-30', 8455, 73453, 4870, NULL, '1.0000', '4.5000', '4.5000', '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 (77363, '2022-04-30', 2095, 73454, 4870, NULL, '1.0000', '1.5000', '1.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 (77364, '2022-04-30', 9463, 73455, 4870, NULL, '1.0000', '27.3444', '27.3444', '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 (77365, '2022-04-30', 2948, 73456, 4870, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77366, '2022-04-30', 2089, 73457, 4870, 53952, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77367, '2022-04-30', 9878, 73458, 4870, 54168, '1.0000', '9.6000', '9.6000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77368, '2022-04-30', 9531, 73459, 4870, 54828, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77369, '2022-04-30', 1908, 73460, 4870, NULL, '1.0000', '0.9032', '0.9032', '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 (77370, '2022-04-30', 2384, 73461, 4870, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77371, '2022-04-30', 1545, 73462, 4870, 45158, '1.0000', '8.4806', '8.4806', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77372, '2022-04-30', 1674, 73463, 4870, NULL, '1.0000', '11.2958', '11.2958', '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 (77373, '2022-04-30', 2105, 73464, 4870, 54575, '1.0000', '2.4149', '2.4149', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77374, '2022-04-30', 9840, 73465, 4870, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77375, '2022-04-30', 2227, 73466, 4870, 53637, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77376, '2022-04-30', 8187, 73467, 4870, NULL, '3.0000', '14.3900', '14.3900', '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 (77377, '2022-04-30', 1494, 73468, 4870, 19337, '1.0000', '4.3900', '4.3900', '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 (77378, '2022-04-30', 1656, 73469, 4870, 39889, '1.0000', '-22.9950', '-22.9950', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77379, '2022-04-30', 1571, 73470, 4870, NULL, '1.0000', '308.7500', '308.7500', '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 (77380, '2022-04-30', 1454, 73471, 4871, 52223, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77381, '2022-04-30', 9834, 73472, 4871, 51659, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77382, '2022-04-30', 1871, 73473, 4871, NULL, '10.0000', '2.2081', '2.2081', '3.7000', '3.7000', '-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 (77383, '2022-04-30', 2068, 73474, 4871, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77384, '2022-04-30', 1432, 73475, 4871, 54179, '1.0000', '10.7899', '10.7899', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77385, '2022-04-30', 9840, 73476, 4871, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77386, '2022-04-30', 8740, 73477, 4871, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77387, '2022-04-30', 9891, 73478, 4871, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77388, '2022-04-30', 8336, 73479, 4872, 52441, '2.0000', '2.9000', '2.9000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77389, '2022-04-30', 7317, 73480, 4872, 54278, '1.0000', '14.7396', '14.7396', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77390, '2022-04-30', 7514, 73481, 4872, NULL, '1.0000', '1417.7133', '1417.7133', '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 (77391, '2022-04-30', 7324, 73482, 4872, 45796, '2.0000', '5.3429', '5.3429', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77392, '2022-04-30', 7459, 73483, 4872, NULL, '20.0000', '2.9681', '2.9681', '4.0000', '4.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 (77393, '2022-04-30', 2648, 73484, 4872, NULL, '1.0000', '3.5337', '3.5337', '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 (77394, '2022-04-30', 8456, 73485, 4872, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77395, '2022-04-30', 9740, 73486, 4872, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77396, '2022-04-30', 9215, 73487, 4872, 54759, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77397, '2022-04-30', 7608, 73488, 4872, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77398, '2022-04-30', 8878, 73489, 4872, 54503, '2.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77399, '2022-04-30', 9089, 73490, 4872, 54764, '1.0000', '5.8308', '5.8308', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77400, '2022-04-30', 9399, 73491, 4872, NULL, '1.0000', '0.9794', '0.9794', '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 (77401, '2022-04-30', 7959, 73492, 4872, NULL, '3.0000', '9.6000', '9.6000', '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 (77402, '2022-04-30', 2656, 73493, 4872, NULL, '1.0000', '1.5000', '1.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 (77403, '2022-04-30', 9420, 73494, 4872, 49291, '1.0000', '49.3000', '49.3000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77404, '2022-04-30', 9695, 73495, 4872, NULL, '1.0000', '4.5000', '4.5000', '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 (77405, '2022-04-30', 8451, 73496, 4872, 46914, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77406, '2022-04-30', 2242, 73497, 4872, 50663, '3.0000', '0.5833', '0.5833', '1.5000', '1.5000', '132.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77407, '2022-04-30', 3034, 73498, 4872, NULL, '2.0000', '17.0000', '17.0000', '23.0000', '23.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 (77408, '2022-04-30', 7712, 73499, 4872, NULL, '1.0000', '-245.5125', '-245.5125', '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 (77409, '2022-04-30', 1947, 73500, 4872, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77410, '2022-04-30', 2287, 73501, 4872, NULL, '4.0000', '2.3000', '2.3000', '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 (77411, '2022-04-30', 7704, 73502, 4872, NULL, '1.0000', '-1.5625', '-1.5625', '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 (77412, '2022-04-30', 8145, 73503, 4872, 54114, '1.0000', '-7.0000', '-7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77413, '2022-04-30', 7799, 73504, 4872, NULL, '1.0000', '4.7214', '4.7214', '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 (77414, '2022-04-30', 9272, 73505, 4872, NULL, '1.0000', '3.1000', '3.1000', '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 (77415, '2022-04-30', 2710, 73506, 4872, NULL, '1.0000', '40.3000', '40.3000', '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 (77416, '2022-04-30', 7853, 73507, 4872, 53518, '1.0000', '7951.4905', '7951.4905', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77417, '2022-04-30', 8336, 73508, 4873, 52441, '2.0000', '2.9000', '2.9000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77418, '2022-04-30', 7317, 73509, 4873, 54278, '1.0000', '14.7396', '14.7396', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77419, '2022-04-30', 7514, 73510, 4873, NULL, '1.0000', '1417.7133', '1417.7133', '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 (77420, '2022-04-30', 7324, 73511, 4873, 45796, '1.0000', '5.3429', '5.3429', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77421, '2022-04-30', 7324, 73511, 4873, 29977, '1.0000', '5.3429', '5.3429', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77422, '2022-04-30', 7459, 73512, 4873, NULL, '20.0000', '2.9681', '2.9681', '4.0000', '4.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 (77423, '2022-04-30', 2648, 73513, 4873, NULL, '1.0000', '3.5337', '3.5337', '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 (77424, '2022-04-30', 8456, 73514, 4873, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77425, '2022-04-30', 9740, 73515, 4873, 51797, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77426, '2022-04-30', 9215, 73516, 4873, 54759, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77427, '2022-04-30', 7608, 73517, 4873, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77428, '2022-04-30', 8878, 73518, 4873, 54503, '2.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77429, '2022-04-30', 9089, 73519, 4873, 54764, '1.0000', '5.8308', '5.8308', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77430, '2022-04-30', 9399, 73520, 4873, NULL, '1.0000', '0.9794', '0.9794', '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 (77431, '2022-04-30', 7959, 73521, 4873, NULL, '3.0000', '9.6000', '9.6000', '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 (77432, '2022-04-30', 2656, 73522, 4873, NULL, '1.0000', '1.5000', '1.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 (77433, '2022-04-30', 9420, 73523, 4873, NULL, '1.0000', '49.3000', '49.3000', '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 (77434, '2022-04-30', 9695, 73524, 4873, NULL, '1.0000', '4.5000', '4.5000', '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 (77435, '2022-04-30', 8451, 73525, 4873, 46914, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77436, '2022-04-30', 2242, 73526, 4873, 50663, '3.0000', '0.5833', '0.5833', '1.5000', '1.5000', '129.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77437, '2022-04-30', 3034, 73527, 4873, NULL, '2.0000', '17.0000', '17.0000', '23.0000', '23.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 (77438, '2022-04-30', 7712, 73528, 4873, NULL, '1.0000', '-245.5125', '-245.5125', '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 (77439, '2022-04-30', 1947, 73529, 4873, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77440, '2022-04-30', 2287, 73530, 4873, NULL, '4.0000', '2.3000', '2.3000', '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 (77441, '2022-04-30', 7704, 73531, 4873, NULL, '1.0000', '-1.5625', '-1.5625', '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 (77442, '2022-04-30', 8145, 73532, 4873, 54114, '1.0000', '-7.0000', '-7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77443, '2022-04-30', 7799, 73533, 4873, NULL, '1.0000', '4.7214', '4.7214', '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 (77444, '2022-04-30', 9272, 73534, 4873, NULL, '1.0000', '3.1000', '3.1000', '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 (77445, '2022-04-30', 2710, 73535, 4873, NULL, '1.0000', '40.3000', '40.3000', '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 (77446, '2022-04-30', 7853, 73536, 4873, 53518, '1.0000', '7951.4905', '7951.4905', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77447, '2022-04-30', 1602, 73537, 4874, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77448, '2022-04-30', 2593, 73538, 4874, NULL, '1.0000', '14.4000', '14.4000', '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 (77449, '2022-04-30', 8746, 73539, 4874, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77450, '2022-04-30', 2410, 73540, 4874, 47057, '1.0000', '4.3980', '4.3980', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77451, '2022-04-30', 9841, 73541, 4874, 51250, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77452, '2022-04-30', 2806, 73542, 4874, 54832, '1.0000', '6.2500', '6.2500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77453, '2022-04-30', 1999, 73543, 4874, 51936, '1.0000', '6.6486', '6.6486', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77454, '2022-04-30', 1499, 73544, 4874, 52148, '3.0000', '0.3747', '0.3747', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77455, '2022-04-30', 1763, 73545, 4874, NULL, '1.0000', '4.9051', '4.9051', '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 (77456, '2022-04-30', 1668, 73546, 4874, 53212, '1.0000', '30.9026', '30.9026', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77457, '2022-04-30', 8068, 73547, 4874, NULL, '1.0000', '8.7900', '8.7900', '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 (77458, '2022-04-30', 1454, 73548, 4874, NULL, '1.0000', '10.9000', '10.9000', '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 (77459, '2022-04-30', 2906, 73549, 4874, NULL, '2.0000', '2.6000', '2.6000', '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 (77460, '2022-04-30', 2758, 73550, 4874, NULL, '1.0000', '5.4000', '5.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 (77461, '2022-04-30', 1825, 73551, 4874, 52350, '1.0000', '5.6803', '5.6803', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77462, '2022-04-30', 7379, 73552, 4874, NULL, '1.0000', '12.5100', '12.5100', '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 (77463, '2022-04-30', 2035, 73553, 4874, 49905, '1.0000', '5.2000', '5.2000', '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 (77464, '2022-04-30', 2567, 73554, 4875, 7177, '-8.0000', '33.0000', '33.0000', '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 (77465, '2022-04-30', 2567, 73554, 4875, NULL, '9.0000', '33.0000', '33.0000', '46.0000', '46.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 (77466, '2022-04-30', 8300, 73555, 4875, NULL, '1.0000', '7.4300', '7.4300', '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 (77467, '2022-04-30', 9785, 73556, 4875, 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 (77468, '2022-04-30', 1880, 73557, 4875, 20616, '1.0000', '4.6000', '4.6000', '7.0000', '7.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 (77469, '2022-04-30', 1837, 73558, 4875, 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 (77470, '2022-04-30', 1528, 73559, 4875, NULL, '3.0000', '38.6400', '38.6400', '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 (77471, '2022-04-30', 2361, 73560, 4875, 3863, '-5.0000', '0.4700', '0.4700', '0.6000', '0.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 (77472, '2022-04-30', 2361, 73560, 4875, NULL, '6.0000', '0.4700', '0.4700', '0.6000', '0.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 (77473, '2022-04-30', 2169, 73561, 4875, 10737, '-115.0000', '3.8397', '3.8397', '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 (77474, '2022-04-30', 2169, 73561, 4875, NULL, '116.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-116.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77475, '2022-04-30', 1501, 73562, 4875, NULL, '1.0000', '2.0500', '2.0500', '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 (77476, '2022-04-30', 9775, 73563, 4875, NULL, '1.0000', '7.9000', '7.9000', '13.7300', '13.7300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77477, '2022-04-30', 1839, 73564, 4875, 8734, '-28.0000', '6.1500', '6.1500', '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 (77478, '2022-04-30', 1839, 73564, 4875, NULL, '29.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77479, '2022-04-30', 2657, 73565, 4875, 11267, '-18.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 (77480, '2022-04-30', 2657, 73565, 4875, NULL, '19.0000', '5.4200', '5.4200', '1.0000', '1.0000', '-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 (77481, '2022-04-30', 2250, 73566, 4875, 2787, '-11.0000', '6.8900', '6.8900', '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 (77482, '2022-04-30', 2250, 73566, 4875, NULL, '12.0000', '6.8900', '6.8900', '12.5000', '12.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 (77483, '2022-04-30', 1665, 73567, 4875, 3235, '-100.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 (77484, '2022-04-30', 1665, 73567, 4875, NULL, '101.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77485, '2022-04-30', 1695, 73568, 4875, 12925, '-10.0000', '15.5000', '15.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 (77486, '2022-04-30', 1695, 73568, 4875, NULL, '11.0000', '15.5000', '15.5000', '26.0000', '26.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 (77487, '2022-04-30', 1671, 73569, 4875, 7457, '-41.0000', '4.2000', '4.2000', '64.0000', '64.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77488, '2022-04-30', 1671, 73569, 4875, NULL, '42.0000', '4.2000', '4.2000', '64.0000', '64.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77489, '2022-04-30', 8761, 73570, 4875, 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 (77490, '2022-04-30', 1620, 73571, 4875, 8955, '-38.0000', '408.8259', '408.8259', '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 (77491, '2022-04-30', 1620, 73571, 4875, NULL, '46.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77492, '2022-04-30', 1667, 73572, 4875, 9745, '-46.0000', '5.9400', '5.9400', '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 (77493, '2022-04-30', 1667, 73572, 4875, NULL, '47.0000', '5.9400', '5.9400', '8.5000', '8.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 (77494, '2022-04-30', 2297, 73573, 4875, 2956, '-6.0000', '6.6000', '6.6000', '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 (77495, '2022-04-30', 2297, 73573, 4875, NULL, '7.0000', '6.6000', '6.6000', '11.0000', '11.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 (77496, '2022-04-30', 2298, 73574, 4875, 2957, '-4.0000', '6.0000', '6.0000', '9.5000', '9.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 (77497, '2022-04-30', 2298, 73574, 4875, NULL, '5.0000', '6.0000', '6.0000', '9.5000', '9.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 (77498, '2022-04-30', 9794, 73575, 4875, NULL, '1.0000', '1.0800', '1.0800', '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 (77499, '2022-04-30', 2768, 73576, 4875, 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 (77500, '2022-04-30', 1335, 73577, 4875, 12031, '-13.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 (77501, '2022-04-30', 1335, 73577, 4875, NULL, '14.0000', '0.8500', '0.8500', '2.0000', '2.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 (77502, '2022-04-30', 7853, 73578, 4875, 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 (77503, '2022-04-30', 2315, 73579, 4875, 2735, '-281.0000', '0.3300', '0.3300', '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 (77504, '2022-04-30', 2315, 73579, 4875, NULL, '283.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-283.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77505, '2022-04-30', 2608, 73580, 4876, NULL, '1.0000', '83.3300', '83.3300', '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 (77506, '2022-04-30', 7353, 73581, 4877, 45856, '3.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77507, '2022-04-30', 7967, 73582, 4877, 54105, '1.0000', '6.5027', '6.5027', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77508, '2022-04-30', 7674, 73583, 4877, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77509, '2022-04-30', 7317, 73584, 4877, 54278, '1.0000', '14.7396', '14.7396', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77510, '2022-04-30', 7780, 73585, 4877, NULL, '1.0000', '-16.1680', '-16.1680', '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 (77511, '2022-04-30', 2284, 73586, 4877, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77512, '2022-04-30', 2069, 73587, 4877, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77513, '2022-04-30', 9579, 73588, 4877, 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 (77514, '2022-04-30', 2656, 73589, 4877, NULL, '1.0000', '1.5000', '1.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 (77515, '2022-04-30', 8984, 73590, 4877, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '12.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77516, '2022-04-30', 7967, 73591, 4877, 54105, '1.0000', '6.5027', '6.5027', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77517, '2022-04-30', 8170, 73592, 4877, 51823, '1.0000', '5.8212', '5.8212', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77518, '2022-04-30', 7588, 73593, 4877, 54113, '1.0000', '10.0320', '10.0320', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77519, '2022-04-30', 7385, 73594, 4877, 54713, '5.0000', '10.9932', '10.9932', '3.7000', '3.7000', '87.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77520, '2022-04-30', 7715, 73595, 4877, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '29.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77521, '2022-04-30', 9827, 73596, 4877, 54281, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77522, '2022-04-30', 2061, 73597, 4877, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77523, '2022-04-30', 9747, 73598, 4877, 46923, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77524, '2022-04-30', 9089, 73599, 4877, 54764, '1.0000', '5.8308', '5.8308', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77525, '2022-04-30', 8942, 73600, 4877, 43082, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77526, '2022-04-30', 7975, 73601, 4877, NULL, '1.0000', '21.7000', '21.7000', '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 (77527, '2022-04-30', 7704, 73602, 4877, NULL, '1.0000', '-1.5625', '-1.5625', '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 (77528, '2022-04-30', 8140, 73603, 4877, NULL, '1.0000', '6.0500', '6.0500', '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 (77529, '2022-04-30', 8163, 73604, 4877, 53777, '1.0000', '18.5000', '18.5000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77530, '2022-04-30', 2656, 73605, 4877, NULL, '1.0000', '1.5000', '1.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 (77531, '2022-04-30', 8200, 73606, 4877, NULL, '1.0000', '6.2600', '6.2600', '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 (77532, '2022-04-30', 7612, 73607, 4877, 50635, '1.0000', '2.3846', '2.3846', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77533, '2022-04-30', 7429, 73608, 4877, 46650, '1.0000', '3.8156', '3.8156', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77534, '2022-04-30', 8596, 73609, 4877, NULL, '1.0000', '18.5278', '18.5278', '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 (77535, '2022-04-30', 7642, 73610, 4877, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77536, '2022-04-30', 9101, 73611, 4877, NULL, '1.0000', '32.1800', '32.1800', '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 (77537, '2022-04-30', 7411, 73612, 4877, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77538, '2022-04-30', 8061, 73613, 4877, 54769, '2.0000', '-0.4000', '-0.4000', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77539, '2022-04-30', 9785, 73614, 4877, 54499, '2.0000', '3.6000', '3.6000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77540, '2022-04-30', 9028, 73615, 4877, 45777, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77541, '2022-04-30', 1837, 73616, 4877, 46669, '3.0000', '0.3813', '0.3813', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77542, '2022-04-30', 8161, 73617, 4877, 54744, '2.0000', '26.7096', '26.7096', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77543, '2022-04-30', 7394, 73618, 4877, 36054, '1.0000', '178.5879', '178.5879', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77544, '2022-04-30', 7707, 73619, 4877, NULL, '1.0000', '5.7519', '5.7519', '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 (77545, '2022-04-30', 2821, 73620, 4877, 45852, '1.0000', '3.3725', '3.3725', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77546, '2022-04-30', 7780, 73621, 4877, NULL, '1.0000', '-16.1680', '-16.1680', '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 (77547, '2022-04-30', 7518, 73622, 4877, 54727, '3.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77548, '2022-04-30', 1855, 73623, 4877, 49820, '1.0000', '1.4365', '1.4365', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77549, '2022-04-30', 9461, 73624, 4877, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77550, '2022-04-30', 7412, 73625, 4877, 54506, '1.0000', '2.0431', '2.0431', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77551, '2022-04-30', 7864, 73626, 4877, 47913, '2.0000', '19.5100', '19.5100', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77552, '2022-04-30', 9803, 73627, 4877, 50387, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77553, '2022-04-30', 2821, 73628, 4877, 45852, '1.0000', '3.3725', '3.3725', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77554, '2022-04-30', 9804, 73629, 4877, 50389, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77555, '2022-04-30', 7741, 73630, 4877, 54092, '1.0000', '-0.4856', '-0.4856', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77556, '2022-04-30', 7608, 73631, 4877, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77557, '2022-04-30', 7333, 73632, 4877, NULL, '2.0000', '-0.5856', '-0.5856', '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 (77558, '2022-04-30', 7781, 73633, 4877, NULL, '1.0000', '5.2802', '5.2802', '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 (77559, '2022-04-30', 3013, 73634, 4878, 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 (77560, '2022-04-30', 7614, 73635, 4878, NULL, '1.0000', '50.7500', '50.7500', '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 (77561, '2022-04-30', 9732, 73636, 4879, 54524, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77562, '2022-04-30', 1645, 73637, 4879, NULL, '1.0000', '13.1800', '13.1800', '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 (77563, '2022-04-30', 1410, 73638, 4879, NULL, '1.0000', '-8.0763', '-8.0763', '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 (77564, '2022-04-30', 1314, 73639, 4879, 53944, '1.0000', '1.4423', '1.4423', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77565, '2022-04-30', 8444, 73640, 4879, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77566, '2022-04-30', 9695, 73641, 4879, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77567, '2022-04-30', 1812, 73642, 4879, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77568, '2022-04-30', 1855, 73643, 4879, NULL, '2.0000', '1.5003', '1.5003', '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 (77569, '2022-04-30', 7411, 73644, 4879, NULL, '2.0000', '1.3013', '1.3013', '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 (77570, '2022-04-30', 2237, 73645, 4879, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77571, '2022-04-30', 2267, 73646, 4879, 48130, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77572, '2022-04-30', 2095, 73647, 4879, NULL, '1.0000', '1.5000', '1.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 (77573, '2022-04-30', 9856, 73648, 4879, 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 (77574, '2022-04-30', 7411, 73649, 4879, NULL, '1.0000', '1.3013', '1.3013', '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 (77575, '2022-04-30', 1580, 73650, 4879, 51316, '2.0000', '1.1598', '1.1598', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77576, '2022-04-30', 9737, 73651, 4879, 54521, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77577, '2022-04-30', 9272, 73652, 4879, NULL, '1.0000', '3.1000', '3.1000', '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 (77578, '2022-04-30', 7482, 73653, 4879, NULL, '1.0000', '2.5019', '2.5019', '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 (77579, '2022-04-30', 9734, 73654, 4879, NULL, '8.0000', '0.3200', '0.3200', '0.5000', '0.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 (77580, '2022-04-30', 7411, 73655, 4879, NULL, '1.0000', '1.3013', '1.3013', '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 (77581, '2022-04-30', 9754, 73656, 4879, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77582, '2022-04-30', 1757, 73657, 4879, NULL, '1.0000', '7.5869', '7.5869', '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 (77583, '2022-04-30', 7713, 73658, 4879, 48657, '1.0000', '24.6545', '24.6545', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77584, '2022-04-30', 1314, 73659, 4879, 53944, '1.0000', '1.4423', '1.4423', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77585, '2022-04-30', 2578, 73660, 4879, 49922, '2.0000', '10.0000', '10.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 (77586, '2022-04-30', 9820, 73661, 4880, 52217, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77587, '2022-04-30', 1601, 73662, 4880, 54158, '1.0000', '-0.1595', '-0.1595', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77588, '2022-04-30', 2088, 73663, 4880, 54566, '1.0000', '1.8472', '1.8472', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77589, '2022-04-30', 9732, 73664, 4880, 54524, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77590, '2022-04-30', 2103, 73665, 4880, 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 (77591, '2022-04-30', 8844, 73666, 4880, 51362, '1.0000', '4.7829', '4.7829', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77592, '2022-04-30', 2031, 73667, 4880, 54841, '1.0000', '5.2857', '5.2857', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77593, '2022-04-30', 8177, 73668, 4880, NULL, '1.0000', '12.9000', '12.9000', '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 (77594, '2022-04-30', 2315, 73669, 4880, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77595, '2022-04-30', 9834, 73670, 4880, NULL, '1.0000', '1.4500', '1.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 (77596, '2022-04-30', 2242, 73671, 4880, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77597, '2022-04-30', 2315, 73672, 4880, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77598, '2022-04-30', 2821, 73673, 4880, NULL, '1.0000', '3.3943', '3.3943', '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 (77599, '2022-04-30', 1701, 73674, 4880, 34961, '1.0000', '15.2068', '15.2068', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77600, '2022-04-30', 2315, 73675, 4880, 47139, '1.0000', '0.4851', '0.4851', '0.8000', '0.8000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77601, '2022-04-30', 7819, 73676, 4880, NULL, '1.0000', '10.0999', '10.0999', '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 (77602, '2022-04-30', 1311, 73677, 4880, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77603, '2022-04-30', 9785, 73678, 4880, 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 (77604, '2022-04-30', 7869, 73679, 4880, NULL, '1.0000', '4.2900', '4.2900', '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 (77605, '2022-04-30', 2506, 73680, 4880, NULL, '1.0000', '4.2640', '4.2640', '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 (77606, '2022-04-30', 2270, 73681, 4880, NULL, '1.0000', '-1.0000', '-1.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 (77607, '2022-04-30', 8183, 73682, 4880, NULL, '1.0000', '232.5300', '232.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 (77608, '2022-04-30', 1618, 73683, 4880, NULL, '1.0000', '-51.1545', '-51.1545', '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 (77609, '2022-04-30', 2108, 73684, 4881, NULL, '1.0000', '8.6167', '8.6167', '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 (77610, '2022-04-30', 7741, 73685, 4881, NULL, '1.0000', '-6.8417', '-6.8417', '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 (77611, '2022-04-30', 2315, 73686, 4881, NULL, '1.0000', '0.4851', '0.4851', '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 (77612, '2022-04-30', 2651, 73687, 4881, 51343, '1.0000', '12.4375', '12.4375', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77613, '2022-04-30', 9856, 73688, 4881, 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 (77614, '2022-04-30', 7411, 73689, 4881, NULL, '1.0000', '1.3013', '1.3013', '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 (77615, '2022-04-30', 2965, 73690, 4881, NULL, '1.0000', '8.3288', '8.3288', '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 (77616, '2022-04-30', 2103, 73691, 4881, 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 (77617, '2022-04-30', 1525, 73692, 4881, NULL, '3.0000', '90.0000', '90.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 (77618, '2022-04-30', 9754, 73693, 4881, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77619, '2022-04-30', 9534, 73694, 4881, 51246, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77620, '2022-04-30', 8839, 73695, 4881, 37794, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77621, '2022-04-30', 2332, 73696, 4882, 51819, '1.0000', '6.7789', '6.7789', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77622, '2022-04-30', 8308, 73697, 4882, NULL, '1.0000', '28.7723', '28.7723', '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 (77623, '2022-04-30', 9092, 73698, 4882, 52527, '6.0000', '0.3175', '0.3175', '0.5000', '0.5000', '137.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77624, '2022-04-30', 9891, 73699, 4882, 54134, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77625, '2022-04-30', 9456, 73700, 4882, 54750, '1.0000', '3.4942', '3.4942', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77626, '2022-04-30', 7385, 73701, 4882, 54713, '3.0000', '10.9932', '10.9932', '3.7000', '3.7000', '84.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77627, '2022-04-30', 7781, 73702, 4882, NULL, '3.0000', '5.2802', '5.2802', '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 (77628, '2022-04-30', 7672, 73703, 4882, NULL, '1.0000', '3.8200', '3.8200', '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 (77629, '2022-04-30', 7444, 73704, 4882, NULL, '1.0000', '0.7739', '0.7739', '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 (77630, '2022-04-30', 7411, 73705, 4882, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77631, '2022-04-30', 7711, 73706, 4882, NULL, '1.0000', '-7741.6583', '-7741.6583', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77632, '2022-04-30', 7715, 73707, 4882, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '28.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77633, '2022-04-30', 7354, 73708, 4882, NULL, '2.0000', '-2.5000', '-2.5000', '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 (77634, '2022-04-30', 7704, 73709, 4882, NULL, '3.0000', '-1.5625', '-1.5625', '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 (77635, '2022-04-30', 9747, 73710, 4882, 46923, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77636, '2022-04-30', 7385, 73711, 4882, 54713, '5.0000', '10.9932', '10.9932', '3.7000', '3.7000', '82.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77637, '2022-04-30', 8810, 73712, 4882, NULL, '2.0000', '-47.9658', '-47.9658', '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 (77638, '2022-04-30', 7674, 73713, 4882, 52725, '1.0000', '197.1282', '197.1282', '2.0000', '2.0000', '83.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77639, '2022-04-30', 9891, 73714, 4882, 54134, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77640, '2022-04-30', 2726, 73715, 4882, 54152, '1.0000', '0.1000', '0.1000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77641, '2022-04-30', 1644, 73716, 4882, 43145, '1.0000', '38.3811', '38.3811', '48.0000', '48.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77642, '2022-04-30', 7641, 73717, 4882, NULL, '1.0000', '8.1611', '8.1611', '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 (77643, '2022-04-30', 7743, 73718, 4882, NULL, '2.0000', '419203.7668', '419203.7668', '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 (77644, '2022-04-30', 7333, 73719, 4882, NULL, '1.0000', '-0.5856', '-0.5856', '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 (77645, '2022-04-30', 2069, 73720, 4882, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77646, '2022-04-30', 7637, 73721, 4882, 43161, '1.0000', '7.3252', '7.3252', '9.6800', '9.6800', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77647, '2022-04-30', 2699, 73722, 4882, 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 (77648, '2022-04-30', 7917, 73723, 4882, 52750, '3.0000', '2.1447', '2.1447', '0.7000', '0.7000', '115.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77649, '2022-04-30', 7886, 73724, 4882, 54287, '1.0000', '5.1718', '5.1718', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77650, '2022-04-30', 9092, 73725, 4882, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '142.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77651, '2022-04-30', 9894, 73726, 4882, 54304, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77652, '2022-04-30', 9215, 73727, 4882, 54759, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77653, '2022-04-30', 9462, 73728, 4882, 38138, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77654, '2022-04-30', 9734, 73729, 4882, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77655, '2022-04-30', 1935, 73730, 4882, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '136.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77656, '2022-04-30', 7334, 73731, 4882, 53771, '1.0000', '8.5605', '8.5605', '13.5000', '13.5000', '16.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77657, '2022-04-30', 9740, 73732, 4882, 51797, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77658, '2022-04-30', 2962, 73733, 4882, 53626, '1.0000', '4.2725', '4.2725', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77659, '2022-04-30', 8924, 73734, 4882, 53928, '3.0000', '5.2143', '5.2143', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77660, '2022-04-30', 7518, 73735, 4882, 54727, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77661, '2022-04-30', 2332, 73736, 4882, 51819, '1.0000', '6.7789', '6.7789', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77662, '2022-04-30', 7491, 73737, 4882, NULL, '1.0000', '4.8666', '4.8666', '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 (77663, '2022-04-30', 9716, 73738, 4882, 54285, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77664, '2022-04-30', 7472, 73739, 4882, NULL, '1.0000', '-35.4938', '-35.4938', '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 (77665, '2022-04-30', 7412, 73740, 4882, 54506, '1.0000', '2.0431', '2.0431', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77666, '2022-04-30', 2221, 73741, 4883, 53888, '1.0000', '15.9398', '15.9398', '26.0000', '26.0000', '6.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77667, '2022-04-30', 9750, 73742, 4883, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '38.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77668, '2022-04-30', 1935, 73743, 4883, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77669, '2022-04-30', 1501, 73744, 4883, 50905, '1.0000', '144.4724', '144.4724', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77670, '2022-04-30', 1880, 73745, 4883, 44562, '1.0000', '4.7945', '4.7945', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77671, '2022-04-30', 8208, 73746, 4883, NULL, '1.0000', '33.0000', '33.0000', '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 (77672, '2022-04-30', 7532, 73747, 4883, NULL, '1.0000', '10.2500', '10.2500', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77673, '2022-04-30', 1647, 73748, 4883, 54397, '1.0000', '5.4576', '5.4576', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77674, '2022-04-30', 2242, 73749, 4883, 49112, '1.0000', '0.6543', '0.6543', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77675, '2022-04-30', 2657, 73750, 4883, 49178, '1.0000', '0.5900', '0.5900', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77676, '2022-04-30', 2169, 73751, 4883, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77677, '2022-04-30', 1837, 73752, 4883, 54424, '2.0000', '0.5024', '0.5024', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77678, '2022-04-30', 7672, 73753, 4883, NULL, '2.0000', '1.0200', '1.0200', '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 (77679, '2022-04-30', 9750, 73754, 4883, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '38.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77680, '2022-04-30', 8065, 73755, 4883, NULL, '1.0000', '-39.2200', '-39.2200', '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 (77681, '2022-04-30', 2293, 73756, 4883, 50920, '2.0000', '0.8705', '0.8705', '1.5000', '1.5000', '84.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77682, '2022-04-30', 1371, 73757, 4883, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77683, '2022-04-30', 7886, 73758, 4883, 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 (77684, '2022-04-30', 1863, 73759, 4883, 54688, '3.0000', '1.3014', '1.3014', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77685, '2022-04-30', 9747, 73760, 4883, 49848, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77686, '2022-04-30', 1871, 73761, 4884, NULL, '2.0000', '2.2081', '2.2081', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77687, '2022-05-01', 2058, 73762, 4885, NULL, '1.0000', '10.0000', '10.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 (77688, '2022-05-01', 2299, 73763, 4885, 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 (77689, '2022-05-01', 9902, 73764, 4885, NULL, '2.0000', '6.5000', '6.5000', '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 (77690, '2022-05-01', 2104, 73765, 4885, 22380, '4.0000', '0.2000', '0.2000', '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 (77691, '2022-05-01', 1839, 73766, 4885, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (77692, '2022-05-01', 1699, 73767, 4885, NULL, '1.0000', '3.2000', '3.2000', '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 (77693, '2022-05-01', 7608, 73768, 4885, NULL, '1.0000', '6.9800', '6.9800', '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 (77694, '2022-05-01', 9848, 73769, 4885, NULL, '1.0000', '2.8000', '2.8000', '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 (77695, '2022-05-01', 9902, 73770, 4885, 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 (77696, '2022-05-01', 1863, 73771, 4885, 54181, '1.0000', '1.4153', '1.4153', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77697, '2022-05-01', 2380, 73772, 4885, 19823, '1.0000', '37.8800', '37.8800', '66.0000', '66.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77698, '2022-05-01', 1499, 73773, 4885, 52148, '2.0000', '0.3747', '0.3747', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77699, '2022-05-01', 1432, 73774, 4885, 54179, '1.0000', '10.7899', '10.7899', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77700, '2022-05-01', 1812, 73775, 4885, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77701, '2022-05-01', 9740, 73776, 4885, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77702, '2022-05-01', 2948, 73777, 4885, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77703, '2022-05-01', 8746, 73778, 4886, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77704, '2022-05-01', 9845, 73779, 4887, NULL, '1.0000', '5.7000', '5.7000', '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 (77705, '2022-05-01', 2762, 73780, 4887, NULL, '1.0000', '7.1000', '7.1000', '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 (77706, '2022-05-01', 2233, 73781, 4887, 2777, '-26.0000', '19.0200', '19.0200', '29.5000', '29.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 (77707, '2022-05-01', 2233, 73781, 4887, NULL, '27.0000', '19.0200', '19.0200', '29.5000', '29.5000', '-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 (77708, '2022-05-01', 1688, 73782, 4887, 4896, '-10.0000', '18.5000', '18.5000', '31.5000', '31.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 (77709, '2022-05-01', 1688, 73782, 4887, NULL, '11.0000', '18.5000', '18.5000', '31.5000', '31.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 (77710, '2022-05-01', 2167, 73783, 4887, 17165, '-46.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 (77711, '2022-05-01', 2167, 73783, 4887, NULL, '47.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-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 (77712, '2022-05-01', 2916, 73784, 4887, 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 (77713, '2022-05-01', 2416, 73785, 4887, 4745, '-29.0000', '1.2000', '1.2000', '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 (77714, '2022-05-01', 2416, 73785, 4887, NULL, '30.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (77715, '2022-05-01', 2990, 73786, 4887, NULL, '1.0000', '1.1200', '1.1200', '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 (77716, '2022-05-01', 9873, 73787, 4887, NULL, '1.0000', '8.5000', '8.5000', '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 (77717, '2022-05-01', 9624, 73788, 4887, NULL, '1.0000', '22.0000', '22.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 (77718, '2022-05-01', 9834, 73789, 4887, NULL, '1.0000', '1.4500', '1.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 (77719, '2022-05-01', 1908, 73790, 4887, 5444, '-43.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 (77720, '2022-05-01', 1908, 73790, 4887, NULL, '45.0000', '90.0000', '90.0000', '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 (77721, '2022-05-01', 9794, 73791, 4888, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77722, '2022-05-01', 1840, 73792, 4888, NULL, '2.0000', '0.2400', '0.2400', '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 (77723, '2022-05-01', 2289, 73793, 4888, NULL, '2.0000', '0.2222', '0.2222', '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 (77724, '2022-05-01', 1562, 73794, 4888, 53666, '1.0000', '5.7883', '5.7883', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77725, '2022-05-01', 1840, 73795, 4888, NULL, '6.0000', '0.2400', '0.2400', '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 (77726, '2022-05-01', 2695, 73796, 4888, NULL, '4.0000', '2.0000', '2.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 (77727, '2022-05-01', 1488, 73797, 4888, 53946, '1.0000', '4.2833', '4.2833', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77728, '2022-05-01', 2318, 73798, 4888, 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 (77729, '2022-05-01', 9740, 73799, 4889, NULL, '1.0000', '0.6600', '0.6600', '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 (77730, '2022-05-01', 7753, 73800, 4889, NULL, '1.0000', '3.4000', '3.4000', '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 (77731, '2022-05-01', 7509, 73801, 4889, 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 (77732, '2022-05-01', 7474, 73802, 4889, NULL, '1.0000', '67.6200', '67.6200', '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 (77733, '2022-05-01', 9817, 73803, 4889, NULL, '1.0000', '3.9000', '3.9000', '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 (77734, '2022-05-01', 7514, 73804, 4889, NULL, '1.0000', '2.2500', '2.2500', '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 (77735, '2022-05-01', 7641, 73805, 4889, NULL, '1.0000', '1.9000', '1.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 (77736, '2022-05-01', 7824, 73806, 4889, NULL, '1.0000', '8.0000', '8.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 (77737, '2022-05-01', 9891, 73807, 4889, NULL, '1.0000', '17.4000', '17.4000', '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 (77738, '2022-05-01', 7317, 73808, 4889, NULL, '1.0000', '19.5500', '19.5500', '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 (77739, '2022-05-01', 8208, 73809, 4889, NULL, '1.0000', '33.0000', '33.0000', '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 (77740, '2022-05-01', 7641, 73810, 4889, NULL, '1.0000', '1.9000', '1.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 (77741, '2022-05-01', 8596, 73811, 4889, 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 (77742, '2022-05-01', 9215, 73812, 4889, NULL, '1.0000', '1.6000', '1.6000', '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 (77743, '2022-05-01', 7577, 73813, 4889, NULL, '1.0000', '0.5900', '0.5900', '42.5000', '42.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77744, '2022-05-01', 2363, 73814, 4889, 3866, '-6.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 (77745, '2022-05-01', 2363, 73814, 4889, NULL, '7.0000', '6.8800', '6.8800', '9.0000', '9.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 (77746, '2022-05-01', 7783, 73815, 4889, NULL, '1.0000', '3.6500', '3.6500', '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 (77747, '2022-05-01', 2506, 73816, 4889, 16244, '-8.0000', '3.4900', '3.4900', '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 (77748, '2022-05-01', 2506, 73816, 4889, NULL, '10.0000', '3.4900', '3.4900', '6.5000', '6.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 (77749, '2022-05-01', 7608, 73817, 4889, NULL, '2.0000', '6.9800', '6.9800', '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 (77750, '2022-05-01', 9729, 73818, 4889, NULL, '1.0000', '0.6200', '0.6200', '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 (77751, '2022-05-01', 7483, 73819, 4889, 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 (77752, '2022-05-01', 8084, 73820, 4889, NULL, '1.0000', '12.7000', '12.7000', '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 (77753, '2022-05-01', 9028, 73821, 4889, 33823, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77754, '2022-05-01', 7674, 73822, 4889, 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 (77755, '2022-05-01', 8147, 73823, 4889, NULL, '1.0000', '32.0000', '32.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 (77756, '2022-05-01', 7674, 73824, 4889, 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 (77757, '2022-05-01', 7959, 73825, 4889, NULL, '2.0000', '9.6000', '9.6000', '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 (77758, '2022-05-01', 2315, 73826, 4889, 2735, '-283.0000', '0.3300', '0.3300', '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 (77759, '2022-05-01', 2315, 73826, 4889, NULL, '284.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-284.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77760, '2022-05-01', 1856, 73827, 4889, NULL, '1.0000', '4.2500', '4.2500', '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 (77761, '2022-05-01', 9215, 73828, 4889, NULL, '1.0000', '1.6000', '1.6000', '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 (77762, '2022-05-01', 2295, 73829, 4889, 22264, '1.0000', '0.9600', '0.9600', '2.0000', '2.0000', '26.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 (77763, '2022-05-01', 8677, 73830, 4889, NULL, '1.0000', '1.2800', '1.2800', '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 (77764, '2022-05-01', 7673, 73831, 4889, NULL, '2.0000', '16.8000', '16.8000', '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 (77765, '2022-05-01', 9394, 73832, 4889, NULL, '1.0000', '5.5000', '5.5000', '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 (77766, '2022-05-01', 7638, 73833, 4889, NULL, '1.0000', '12.0000', '12.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 (77767, '2022-05-01', 2610, 73834, 4889, 10021, '-3.0000', '40.0000', '40.0000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77768, '2022-05-01', 2610, 73834, 4889, NULL, '4.0000', '40.0000', '40.0000', '52.0000', '52.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 (77769, '2022-05-01', 9855, 73835, 4889, NULL, '1.0000', '28.7100', '28.7100', '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 (77770, '2022-05-01', 7712, 73836, 4889, NULL, '1.0000', '26.0000', '26.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 (77771, '2022-05-01', 8666, 73837, 4889, NULL, '1.0000', '0.4600', '0.4600', '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 (77772, '2022-05-01', 7411, 73838, 4890, NULL, '1.0000', '1.3013', '1.3013', '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 (77773, '2022-05-01', 9866, 73839, 4890, 52158, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77774, '2022-05-01', 9843, 73840, 4890, 51247, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77775, '2022-05-01', 1628, 73841, 4890, 54550, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77776, '2022-05-01', 7411, 73842, 4890, NULL, '1.0000', '1.3013', '1.3013', '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 (77777, '2022-05-01', 1935, 73843, 4890, 52160, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77778, '2022-05-01', 1790, 73844, 4890, 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 (77779, '2022-05-01', 2332, 73845, 4890, NULL, '1.0000', '-1.4600', '-1.4600', '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 (77780, '2022-05-01', 1839, 73846, 4890, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (77781, '2022-05-01', 2506, 73847, 4890, NULL, '1.0000', '4.2640', '4.2640', '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 (77782, '2022-05-01', 9856, 73848, 4890, 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 (77783, '2022-05-01', 7506, 73849, 4890, NULL, '5.0000', '15.0000', '15.0000', '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 (77784, '2022-05-01', 7514, 73850, 4890, NULL, '1.0000', '2.2500', '2.2500', '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 (77785, '2022-05-01', 2765, 73851, 4890, NULL, '1.0000', '5.3000', '5.3000', '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 (77786, '2022-05-01', 9695, 73852, 4890, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77787, '2022-05-01', 7411, 73853, 4890, NULL, '1.0000', '1.3013', '1.3013', '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 (77788, '2022-05-01', 9649, 73854, 4890, NULL, '1.0000', '14.2780', '14.2780', '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 (77789, '2022-05-01', 2270, 73855, 4890, NULL, '1.0000', '-1.0000', '-1.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 (77790, '2022-05-01', 1935, 73856, 4890, 52160, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77791, '2022-05-01', 7353, 73857, 4890, NULL, '2.0000', '0.1900', '0.1900', '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 (77792, '2022-05-01', 9856, 73858, 4890, 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 (77793, '2022-05-01', 7741, 73859, 4890, NULL, '1.0000', '-6.8417', '-6.8417', '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 (77794, '2022-05-01', 1945, 73860, 4890, 53663, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77795, '2022-05-01', 7411, 73861, 4890, NULL, '1.0000', '1.3013', '1.3013', '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 (77796, '2022-05-01', 1546, 73862, 4890, 49329, '6.0000', '51.6105', '51.6105', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77797, '2022-05-01', 2821, 73863, 4890, NULL, '1.0000', '3.3943', '3.3943', '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 (77798, '2022-05-01', 1812, 73864, 4890, 54574, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77799, '2022-05-01', 8595, 73865, 4890, NULL, '1.0000', '3.9640', '3.9640', '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 (77800, '2022-05-01', 9808, 73866, 4890, 51699, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77801, '2022-05-01', 1826, 73867, 4891, 19385, '6.0000', '0.2100', '0.2100', '0.5000', '0.5000', '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 (77802, '2022-05-01', 2405, 73868, 4891, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '13.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77803, '2022-05-01', 2107, 73869, 4891, 31964, '20.0000', '0.2500', '0.2500', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77804, '2022-05-01', 9148, 73870, 4892, NULL, '6.0000', '20.1000', '20.1000', '3.4000', '3.4000', '-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 (77805, '2022-05-01', 7715, 73871, 4892, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77806, '2022-05-01', 7518, 73872, 4892, 54727, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77807, '2022-05-01', 7859, 73873, 4892, 54101, '1.0000', '12.6364', '12.6364', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77808, '2022-05-01', 7865, 73874, 4892, NULL, '2.0000', '1.6300', '1.6300', '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 (77809, '2022-05-01', 1845, 73875, 4892, 54102, '1.0000', '21.7144', '21.7144', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77810, '2022-05-01', 9729, 73876, 4892, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77811, '2022-05-01', 7411, 73877, 4892, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77812, '2022-05-01', 7612, 73878, 4892, 50635, '1.0000', '2.3846', '2.3846', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77813, '2022-05-01', 9865, 73879, 4892, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77814, '2022-05-01', 9891, 73880, 4892, 54134, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77815, '2022-05-01', 7457, 73881, 4892, 54129, '1.0000', '3.9154', '3.9154', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77816, '2022-05-01', 7748, 73882, 4892, NULL, '1.0000', '1384248.3485', '1384248.3485', '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 (77817, '2022-05-01', 7453, 73883, 4892, 54504, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77818, '2022-05-01', 7658, 73884, 4892, 52446, '10.0000', '341.6222', '341.6222', '2.8000', '2.8000', '22.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77819, '2022-05-01', 2656, 73885, 4892, NULL, '1.0000', '1.5000', '1.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 (77820, '2022-05-01', 8918, 73886, 4892, 45579, '4.0000', '4.7316', '4.7316', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77821, '2022-05-01', 7672, 73887, 4892, NULL, '1.0000', '3.8200', '3.8200', '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 (77822, '2022-05-01', 1501, 73888, 4892, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77823, '2022-05-01', 9850, 73889, 4892, 51842, '1.0000', '17.6000', '17.6000', '23.5000', '23.5000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77824, '2022-05-01', 7780, 73890, 4892, NULL, '1.0000', '-16.1680', '-16.1680', '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 (77825, '2022-05-01', 9794, 73891, 4892, 50668, '4.0000', '1.0800', '1.0800', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77826, '2022-05-01', 1501, 73892, 4892, 52724, '1.0000', '2.2773', '2.2773', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77827, '2022-05-01', 9827, 73893, 4892, 54281, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77828, '2022-05-01', 1339, 73894, 4892, NULL, '1.0000', '-2.7806', '-2.7806', '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 (77829, '2022-05-01', 8951, 73895, 4892, NULL, '1.0000', '9.0000', '9.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 (77830, '2022-05-01', 2849, 73896, 4892, 46266, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '11.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77831, '2022-05-01', 7641, 73897, 4892, NULL, '1.0000', '8.1611', '8.1611', '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 (77832, '2022-05-01', 7514, 73898, 4892, NULL, '1.0000', '1417.7133', '1417.7133', '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 (77833, '2022-05-01', 2295, 73899, 4892, NULL, '2.0000', '0.7000', '0.7000', '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 (77834, '2022-05-01', 8417, 73900, 4892, 50467, '1.0000', '5.3524', '5.3524', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77835, '2022-05-01', 7707, 73901, 4892, NULL, '1.0000', '5.7519', '5.7519', '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 (77836, '2022-05-01', 7736, 73902, 4892, NULL, '1.0000', '62.9504', '62.9504', '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 (77837, '2022-05-01', 7819, 73903, 4892, 54494, '1.0000', '11.8499', '11.8499', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77838, '2022-05-01', 9794, 73904, 4892, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77839, '2022-05-01', 9089, 73905, 4892, 54764, '1.0000', '5.8308', '5.8308', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77840, '2022-05-01', 7522, 73906, 4892, NULL, '1.0000', '-3.4066', '-3.4066', '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 (77841, '2022-05-01', 7411, 73907, 4892, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77842, '2022-05-01', 8042, 73908, 4892, NULL, '1.0000', '33.8200', '33.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 (77843, '2022-05-01', 7709, 73909, 4892, NULL, '1.0000', '202.4582', '202.4582', '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 (77844, '2022-05-01', 7691, 73910, 4892, 53523, '1.0000', '14.8412', '14.8412', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77845, '2022-05-01', 7712, 73911, 4892, NULL, '1.0000', '-245.5125', '-245.5125', '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 (77846, '2022-05-01', 7473, 73912, 4892, NULL, '1.0000', '-68.3632', '-68.3632', '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 (77847, '2022-05-01', 7482, 73913, 4893, NULL, '1.0000', '2.5019', '2.5019', '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 (77848, '2022-05-01', 2315, 73914, 4893, NULL, '2.0000', '0.4851', '0.4851', '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 (77849, '2022-05-01', 1999, 73915, 4893, 51936, '1.0000', '6.6486', '6.6486', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77850, '2022-05-01', 7411, 73916, 4893, NULL, '1.0000', '1.3013', '1.3013', '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 (77851, '2022-05-01', 2237, 73917, 4893, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77852, '2022-05-01', 2299, 73918, 4893, 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 (77853, '2022-05-01', 1855, 73919, 4893, NULL, '1.0000', '1.5003', '1.5003', '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 (77854, '2022-05-01', 1307, 73920, 4893, NULL, '1.0000', '-0.0521', '-0.0521', '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 (77855, '2022-05-01', 1590, 73921, 4893, 54532, '3.0000', '2.1402', '2.1402', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77856, '2022-05-01', 8085, 73922, 4893, NULL, '3.0000', '14.0000', '14.0000', '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 (77857, '2022-05-01', 1812, 73923, 4893, 52345, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77858, '2022-05-01', 7483, 73924, 4893, 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 (77859, '2022-05-01', 8879, 73925, 4893, 39777, '1.0000', '27.2712', '27.2712', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77860, '2022-05-01', 7638, 73926, 4893, NULL, '1.0000', '12.0000', '12.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 (77861, '2022-05-01', 1606, 73927, 4893, 37773, '9.0000', '4.9200', '4.9200', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77862, '2022-05-01', 1606, 73927, 4893, 34605, '1.0000', '4.9200', '4.9200', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77863, '2022-05-01', 1498, 73928, 4893, 52352, '2.0000', '0.4476', '0.4476', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77864, '2022-05-01', 9734, 73929, 4893, NULL, '4.0000', '0.3200', '0.3200', '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 (77865, '2022-05-01', 1544, 73930, 4893, 48512, '1.0000', '18.0200', '18.0200', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77866, '2022-05-01', 8980, 73931, 4893, NULL, '1.0000', '9.5000', '9.5000', '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 (77867, '2022-05-01', 2315, 73932, 4893, NULL, '1.0000', '0.4851', '0.4851', '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 (77868, '2022-05-01', 2076, 73933, 4893, NULL, '1.0000', '8.3000', '8.3000', '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 (77869, '2022-05-01', 1409, 73934, 4893, 54544, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77870, '2022-05-01', 9747, 73935, 4893, 50122, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 409);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77871, '2022-05-01', 9734, 73936, 4893, NULL, '4.0000', '0.3200', '0.3200', '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 (77872, '2022-05-01', 9762, 73937, 4893, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '43.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77873, '2022-05-01', 1501, 73938, 4893, NULL, '1.0000', '1.9873', '1.9873', '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 (77874, '2022-05-01', 2405, 73939, 4893, 37770, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '10.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77875, '2022-05-01', 9794, 73940, 4893, 52357, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77876, '2022-05-01', 1501, 73941, 4893, NULL, '1.0000', '1.9873', '1.9873', '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 (77877, '2022-05-01', 1602, 73942, 4893, 54171, '1.0000', '6.9136', '6.9136', '10.0000', '10.0000', '27.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77878, '2022-05-01', 7933, 73943, 4893, 39778, '2.0000', '-0.1222', '-0.1222', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77879, '2022-05-01', 9482, 73944, 4893, NULL, '2.0000', '0.5000', '0.5000', '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 (77880, '2022-05-01', 1647, 73945, 4893, NULL, '1.0000', '27.3300', '27.3300', '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 (77881, '2022-05-01', 1307, 73946, 4893, NULL, '1.0000', '-0.0521', '-0.0521', '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 (77882, '2022-05-01', 9734, 73947, 4894, NULL, '4.0000', '0.3200', '0.3200', '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 (77883, '2022-05-01', 2384, 73948, 4894, NULL, '10.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (77884, '2022-05-01', 9695, 73949, 4894, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77885, '2022-05-01', 9725, 73950, 4894, 52348, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77886, '2022-05-01', 2916, 73951, 4894, NULL, '1.0000', '-13.0168', '-13.0168', '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 (77887, '2022-05-01', 9840, 73952, 4894, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77888, '2022-05-01', 2068, 73953, 4894, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77889, '2022-05-01', 2088, 73954, 4895, NULL, '1.0000', '1.4388', '1.4388', '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 (77890, '2022-05-01', 8395, 73955, 4895, NULL, '4.0000', '0.9700', '0.9700', '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 (77891, '2022-05-01', 1501, 73956, 4895, 50905, '1.0000', '144.4724', '144.4724', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77892, '2022-05-01', 2682, 73957, 4895, 54587, '1.0000', '18.1500', '18.1500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77893, '2022-05-01', 1912, 73958, 4895, 50866, '2.0000', '0.6298', '0.6298', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77894, '2022-05-01', 8736, 73959, 4895, 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 (77895, '2022-05-01', 1339, 73960, 4895, 44611, '1.0000', '1.7611', '1.7611', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77896, '2022-05-01', 1371, 73961, 4895, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77897, '2022-05-01', 2293, 73962, 4895, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '81.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77898, '2022-05-01', 1580, 73963, 4895, 54604, '3.0000', '1.2644', '1.2644', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77899, '2022-05-01', 2541, 73964, 4895, 49561, '1.0000', '10.4207', '10.4207', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77900, '2022-05-01', 2858, 73965, 4895, 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 (77901, '2022-05-01', 2169, 73966, 4895, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77902, '2022-05-01', 9794, 73967, 4895, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '81.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77903, '2022-05-01', 2315, 73968, 4895, 3069, '1.0000', '0.3300', '0.3300', '0.8000', '0.8000', '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 (77904, '2022-05-01', 2263, 73969, 4895, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77905, '2022-05-01', 8803, 73970, 4896, NULL, '1.0000', '350.0000', '350.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 (77906, '2022-05-01', 8819, 73971, 4896, NULL, '1.0000', '10.0000', '10.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 (77907, '2022-05-01', 9729, 73972, 4896, 53908, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77908, '2022-05-01', 2749, 73973, 4896, NULL, '1.0000', '27.0000', '27.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 (77909, '2022-05-01', 7892, 73974, 4896, NULL, '1.0000', '4.2000', '4.2000', '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 (77910, '2022-05-01', 8702, 73975, 4896, NULL, '1.0000', '3.6700', '3.6700', '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 (77911, '2022-05-01', 7640, 73976, 4896, 53921, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77912, '2022-05-01', 2315, 73977, 4896, 53909, '2.0000', '0.6636', '0.6636', '0.8000', '0.8000', '66.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77913, '2022-05-01', 7641, 73978, 4896, NULL, '1.0000', '8.1611', '8.1611', '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 (77914, '2022-05-01', 1916, 73979, 4896, 54100, '1.0000', '10.2080', '10.2080', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77915, '2022-05-01', 9177, 73980, 4896, NULL, '2.0000', '2.2517', '2.2517', '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 (77916, '2022-05-01', 7743, 73981, 4896, NULL, '2.0000', '419203.7668', '419203.7668', '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 (77917, '2022-05-01', 7411, 73982, 4896, 52731, '3.0000', '1.3518', '1.3518', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77918, '2022-05-01', 8745, 73983, 4896, 54763, '1.0000', '12.4000', '12.4000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77919, '2022-05-01', 2315, 73984, 4896, 53909, '2.0000', '0.6636', '0.6636', '0.8000', '0.8000', '66.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77920, '2022-05-01', 8427, 73985, 4896, NULL, '2.0000', '6.5300', '6.5300', '40.0000', '40.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 (77921, '2022-05-01', 9817, 73986, 4896, 54496, '1.0000', '4.7320', '4.7320', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77922, '2022-05-01', 9731, 73987, 4896, 54498, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77923, '2022-05-01', 7527, 73988, 4896, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77924, '2022-05-01', 9750, 73989, 4896, 46931, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '46.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77925, '2022-05-01', 8825, 73990, 4896, 53497, '1.0000', '15.0002', '15.0002', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77926, '2022-05-01', 8044, 73991, 4896, NULL, '1.0000', '1.5000', '1.5000', '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 (77927, '2022-05-01', 2242, 73992, 4897, 54572, '3.0000', '2.4162', '2.4162', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77928, '2022-05-01', 7917, 73993, 4897, NULL, '1.0000', '5.0000', '5.0000', '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 (77929, '2022-05-01', 1501, 73994, 4897, NULL, '1.0000', '1.9873', '1.9873', '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 (77930, '2022-05-01', 9272, 73995, 4897, NULL, '1.0000', '3.1000', '3.1000', '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 (77931, '2022-05-01', 2237, 73996, 4897, 51305, '1.0000', '87.1257', '87.1257', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77932, '2022-05-01', 9740, 73997, 4897, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77933, '2022-05-01', 9482, 73998, 4897, NULL, '2.0000', '0.5000', '0.5000', '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 (77934, '2022-05-02', 7674, 73999, 4898, 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 (77935, '2022-05-02', 8063, 74000, 4898, NULL, '1.0000', '1.6000', '1.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 (77936, '2022-05-02', 1841, 74001, 4898, NULL, '2.0000', '142.5780', '142.5780', '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 (77937, '2022-05-02', 7756, 74002, 4898, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77938, '2022-05-02', 1577, 74003, 4898, 7596, '-12.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 (77939, '2022-05-02', 1577, 74003, 4898, NULL, '13.0000', '2.5000', '2.5000', '3.5000', '3.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 (77940, '2022-05-02', 8133, 74004, 4898, NULL, '1.0000', '5.0000', '5.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 (77941, '2022-05-02', 8032, 74005, 4898, NULL, '1.0000', '6.4400', '6.4400', '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 (77942, '2022-05-02', 7514, 74006, 4898, NULL, '2.0000', '2.2500', '2.2500', '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 (77943, '2022-05-02', 8203, 74007, 4898, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77944, '2022-05-02', 1840, 74008, 4898, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (77945, '2022-05-02', 2315, 74009, 4898, 2735, '-284.0000', '0.3300', '0.3300', '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 (77946, '2022-05-02', 2315, 74009, 4898, NULL, '286.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-286.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77947, '2022-05-02', 1760, 74010, 4898, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '12.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 (77948, '2022-05-02', 7804, 74011, 4898, NULL, '3.0000', '1.0200', '1.0200', '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 (77949, '2022-05-02', 7857, 74012, 4898, NULL, '1.0000', '15.1300', '15.1300', '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 (77950, '2022-05-02', 7339, 74013, 4898, NULL, '1.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77951, '2022-05-02', 9215, 74014, 4898, NULL, '2.0000', '1.6000', '1.6000', '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 (77952, '2022-05-02', 9382, 74015, 4898, NULL, '1.0000', '5.2000', '5.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 (77953, '2022-05-02', 7324, 74016, 4898, 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 (77954, '2022-05-02', 7490, 74017, 4898, NULL, '20.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-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 (77955, '2022-05-02', 9508, 74018, 4898, NULL, '1.0000', '3.4000', '3.4000', '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 (77956, '2022-05-02', 7674, 74019, 4898, 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 (77957, '2022-05-02', 1339, 74020, 4898, 13004, '-13.0000', '1.6012', '1.6012', '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 (77958, '2022-05-02', 1339, 74020, 4898, NULL, '14.0000', '1.6012', '1.6012', '4.0000', '4.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 (77959, '2022-05-02', 7804, 74021, 4898, 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 (77960, '2022-05-02', 8566, 74022, 4898, 33072, '1.0000', '11.0000', '11.0000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77961, '2022-05-02', 9528, 74023, 4898, NULL, '1.0000', '27.2000', '27.2000', '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 (77962, '2022-05-02', 8425, 74024, 4898, 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 (77963, '2022-05-02', 2503, 74025, 4898, NULL, '1.0000', '14.6000', '14.6000', '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 (77964, '2022-05-02', 7931, 74026, 4898, NULL, '1.0000', '4.9500', '4.9500', '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 (77965, '2022-05-02', 7560, 74027, 4898, NULL, '1.0000', '33.0200', '33.0200', '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 (77966, '2022-05-02', 2847, 74028, 4898, NULL, '1.0000', '13.8800', '13.8800', '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 (77967, '2022-05-02', 7713, 74029, 4898, NULL, '4.0000', '0.3800', '0.3800', '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 (77968, '2022-05-02', 1337, 74030, 4898, 10809, '-19.0000', '2.0000', '2.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 (77969, '2022-05-02', 1337, 74030, 4898, NULL, '20.0000', '2.0000', '2.0000', '3.5000', '3.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 (77970, '2022-05-02', 9215, 74031, 4898, NULL, '1.0000', '1.6000', '1.6000', '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 (77971, '2022-05-02', 2821, 74032, 4898, 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 (77972, '2022-05-02', 9274, 74033, 4898, 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 (77973, '2022-05-02', 8878, 74034, 4898, NULL, '1.0000', '6.6700', '6.6700', '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 (77974, '2022-05-02', 8204, 74035, 4898, NULL, '4.0000', '1.5000', '1.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 (77975, '2022-05-02', 7723, 74036, 4898, NULL, '1.0000', '5.5000', '5.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 (77976, '2022-05-02', 8254, 74037, 4898, NULL, '1.0000', '25.9000', '25.9000', '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 (77977, '2022-05-02', 2887, 74038, 4898, NULL, '1.0000', '10.5000', '10.5000', '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 (77978, '2022-05-02', 7317, 74039, 4898, NULL, '1.0000', '19.5500', '19.5500', '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 (77979, '2022-05-02', 9620, 74040, 4898, 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 (77980, '2022-05-02', 1663, 74041, 4899, 19372, '1.0000', '90.6500', '90.6500', '133.0000', '133.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77981, '2022-05-02', 1618, 74042, 4899, NULL, '2.0000', '-51.1545', '-51.1545', '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 (77982, '2022-05-02', 8341, 74043, 4899, 45199, '1.0000', '32.0000', '32.0000', '43.5000', '43.5000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77983, '2022-05-02', 2221, 74044, 4899, NULL, '1.0000', '15.0000', '15.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 (77984, '2022-05-02', 7554, 74045, 4899, NULL, '10.0000', '16.0000', '16.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 (77985, '2022-05-02', 7742, 74046, 4899, 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 (77986, '2022-05-02', 1867, 74047, 4899, 54516, '3.0000', '3.6953', '3.6953', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77987, '2022-05-02', 2315, 74048, 4899, NULL, '1.0000', '0.4851', '0.4851', '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 (77988, '2022-05-02', 1638, 74049, 4899, 48910, '12.0000', '5.9100', '5.9100', '8.5000', '8.5000', '27.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77989, '2022-05-02', 9843, 74050, 4899, 51247, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77990, '2022-05-02', 9839, 74051, 4899, NULL, '1.0000', '15.0200', '15.0200', '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 (77991, '2022-05-02', 2068, 74052, 4899, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77992, '2022-05-02', 2283, 74053, 4899, 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 (77993, '2022-05-02', 2315, 74054, 4899, NULL, '1.0000', '0.4851', '0.4851', '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 (77994, '2022-05-02', 7719, 74055, 4899, NULL, '1.0000', '8.9978', '8.9978', '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 (77995, '2022-05-02', 2411, 74056, 4899, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77996, '2022-05-02', 2088, 74057, 4899, 54566, '1.0000', '1.8472', '1.8472', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77997, '2022-05-02', 8746, 74058, 4899, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77998, '2022-05-02', 2411, 74059, 4899, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77999, '2022-05-02', 2254, 74060, 4899, 54177, '1.0000', '42.5400', '42.5400', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78000, '2022-05-02', 2289, 74061, 4899, NULL, '4.0000', '0.2222', '0.2222', '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 (78001, '2022-05-02', 2022, 74062, 4899, 48945, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78002, '2022-05-02', 2088, 74063, 4899, 54566, '1.0000', '1.8472', '1.8472', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78003, '2022-05-02', 1601, 74064, 4899, 54158, '1.0000', '-0.1595', '-0.1595', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78004, '2022-05-02', 9834, 74065, 4899, NULL, '1.0000', '1.4500', '1.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 (78005, '2022-05-02', 2379, 74066, 4899, NULL, '1.0000', '0.2954', '0.2954', '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 (78006, '2022-05-02', 7483, 74067, 4899, 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 (78007, '2022-05-02', 7318, 74068, 4899, 53664, '1.0000', '10.6148', '10.6148', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78008, '2022-05-02', 9740, 74069, 4899, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78009, '2022-05-02', 7411, 74070, 4899, NULL, '1.0000', '1.3013', '1.3013', '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 (78010, '2022-05-02', 8844, 74071, 4899, NULL, '1.0000', '4.7829', '4.7829', '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 (78011, '2022-05-02', 2259, 74072, 4899, 52218, '2.0000', '22.7428', '22.7428', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78012, '2022-05-02', 9794, 74073, 4899, 52357, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78013, '2022-05-02', 2758, 74074, 4899, NULL, '1.0000', '5.4000', '5.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 (78014, '2022-05-02', 1846, 74075, 4899, NULL, '1.0000', '-298.6500', '-298.6500', '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 (78015, '2022-05-02', 1501, 74076, 4899, NULL, '1.0000', '1.9873', '1.9873', '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 (78016, '2022-05-02', 7411, 74077, 4899, NULL, '1.0000', '1.3013', '1.3013', '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 (78017, '2022-05-02', 1935, 74078, 4899, 52160, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78018, '2022-05-02', 1945, 74079, 4899, 53663, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78019, '2022-05-02', 9794, 74080, 4900, NULL, '2.0000', '1.0800', '1.0800', '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 (78020, '2022-05-02', 7746, 74081, 4900, NULL, '1.0000', '2.8600', '2.8600', '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 (78021, '2022-05-02', 1425, 74082, 4900, NULL, '1.0000', '6.4405', '6.4405', '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 (78022, '2022-05-02', 9734, 74083, 4900, NULL, '4.0000', '0.3200', '0.3200', '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 (78023, '2022-05-02', 1331, 74084, 4900, NULL, '1.0000', '4.2000', '4.2000', '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 (78024, '2022-05-02', 9729, 74085, 4900, NULL, '1.0000', '0.6200', '0.6200', '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 (78025, '2022-05-02', 2821, 74086, 4900, 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 (78026, '2022-05-02', 8557, 74087, 4900, 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 (78027, '2022-05-02', 7725, 74088, 4900, 33062, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78028, '2022-05-02', 2088, 74089, 4900, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '46.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 (78029, '2022-05-02', 7548, 74090, 4900, NULL, '1.0000', '0.3400', '0.3400', '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 (78030, '2022-05-02', 1450, 74091, 4900, 5570, '-7.0000', '61.1074', '61.1074', '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 (78031, '2022-05-02', 1450, 74091, 4900, NULL, '12.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-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 (78032, '2022-05-02', 9815, 74092, 4900, NULL, '2.0000', '0.8000', '0.8000', '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 (78033, '2022-05-02', 2384, 74093, 4900, 12014, '10.0000', '0.4000', '0.4000', '0.7000', '0.7000', '30.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 (78034, '2022-05-02', 9743, 74094, 4900, NULL, '1.0000', '11.7000', '11.7000', '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 (78035, '2022-05-02', 9881, 74095, 4900, 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 (78036, '2022-05-02', 2169, 74096, 4900, 10737, '-116.0000', '3.8397', '3.8397', '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 (78037, '2022-05-02', 2169, 74096, 4900, NULL, '117.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-117.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78038, '2022-05-02', 2302, 74097, 4900, 2963, '-45.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 (78039, '2022-05-02', 2302, 74097, 4900, NULL, '46.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78040, '2022-05-02', 2315, 74098, 4900, 2735, '-286.0000', '0.3300', '0.3300', '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 (78041, '2022-05-02', 2315, 74098, 4900, NULL, '287.0000', '0.3300', '0.3300', '0.8000', '0.8000', '-287.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78042, '2022-05-02', 2167, 74099, 4900, 17165, '-47.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 (78043, '2022-05-02', 2167, 74099, 4900, NULL, '48.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78044, '2022-05-02', 2643, 74100, 4900, NULL, '1.0000', '0.8700', '0.8700', '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 (78045, '2022-05-02', 1425, 74101, 4900, NULL, '1.0000', '6.4405', '6.4405', '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 (78046, '2022-05-02', 8562, 74102, 4901, NULL, '1.0000', '12.0000', '12.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 (78047, '2022-05-02', 2260, 74103, 4901, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78048, '2022-05-02', 7483, 74104, 4901, NULL, '1.0000', '0.4200', '0.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 (78049, '2022-05-02', 7472, 74105, 4901, NULL, '1.0000', '-5.6692', '-5.6692', '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 (78050, '2022-05-02', 9839, 74106, 4901, NULL, '1.0000', '15.0200', '15.0200', '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 (78051, '2022-05-02', 7411, 74107, 4901, NULL, '1.0000', '1.3013', '1.3013', '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 (78052, '2022-05-02', 7635, 74108, 4901, NULL, '1.0000', '6.6300', '6.6300', '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 (78053, '2022-05-02', 2095, 74109, 4901, NULL, '1.0000', '1.5000', '1.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 (78054, '2022-05-02', 1501, 74110, 4901, NULL, '1.0000', '1.9873', '1.9873', '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 (78055, '2022-05-02', 9598, 74111, 4901, 51686, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78056, '2022-05-02', 1501, 74112, 4901, NULL, '1.0000', '1.9873', '1.9873', '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 (78057, '2022-05-02', 2821, 74113, 4901, NULL, '1.0000', '3.3943', '3.3943', '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 (78058, '2022-05-02', 2315, 74114, 4901, NULL, '1.0000', '0.4851', '0.4851', '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 (78059, '2022-05-02', 2668, 74115, 4901, 48912, '1.0000', '6.6518', '6.6518', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78060, '2022-05-02', 1812, 74116, 4901, 52202, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78061, '2022-05-02', 7756, 74117, 4901, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78062, '2022-05-02', 9482, 74118, 4901, NULL, '2.0000', '0.5000', '0.5000', '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 (78063, '2022-05-02', 2916, 74119, 4901, NULL, '1.0000', '-13.0168', '-13.0168', '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 (78064, '2022-05-02', 1839, 74120, 4901, NULL, '1.0000', '-1049.9008', '-1049.9008', '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 (78065, '2022-05-02', 2669, 74121, 4901, 23125, '1.0000', '24.3367', '24.3367', '32.0000', '32.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 (78066, '2022-05-02', 2521, 74122, 4901, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78067, '2022-05-02', 9897, 74123, 4901, NULL, '14.0000', '1.7300', '1.7300', '2.3000', '2.3000', '-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 (78068, '2022-05-02', 1696, 74124, 4901, 52156, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78069, '2022-05-02', 9732, 74125, 4901, 54524, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78070, '2022-05-02', 1812, 74126, 4901, 52202, '1.0000', '8.8884', '8.8884', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78071, '2022-05-02', 9829, 74127, 4901, NULL, '1.0000', '11.0000', '11.0000', '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 (78072, '2022-05-02', 8546, 74128, 4901, NULL, '1.0000', '6.6000', '6.6000', '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 (78073, '2022-05-02', 7593, 74129, 4901, NULL, '1.0000', '0.8000', '0.8000', '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 (78074, '2022-05-02', 9762, 74130, 4901, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '42.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78075, '2022-05-02', 7933, 74131, 4901, NULL, '1.0000', '-0.1222', '-0.1222', '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 (78076, '2022-05-02', 7344, 74132, 4901, NULL, '5.0000', '94.2800', '94.2800', '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 (78077, '2022-05-02', 2642, 74133, 4901, 54822, '1.0000', '9.7400', '9.7400', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78078, '2022-05-02', 2295, 74134, 4901, 51317, '3.0000', '1.0524', '1.0524', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78079, '2022-05-02', 2342, 74135, 4901, 52181, '1.0000', '1.9641', '1.9641', '2.7000', '2.7000', '26.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78080, '2022-05-02', 7917, 74136, 4901, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78081, '2022-05-02', 1755, 74137, 4901, 48488, '1.0000', '5.8128', '5.8128', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78082, '2022-05-02', 9430, 74138, 4901, 51650, '1.0000', '40.9000', '40.9000', '54.0000', '54.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78083, '2022-05-02', 1528, 74139, 4901, NULL, '1.0000', '172.4516', '172.4516', '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 (78084, '2022-05-02', 1875, 74140, 4902, 39796, '4.0000', '2.7000', '2.7000', '3.6000', '3.6000', '36.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78085, '2022-05-02', 9740, 74141, 4902, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78086, '2022-05-02', 7564, 74142, 4902, 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 (78087, '2022-05-02', 9882, 74143, 4902, 54071, '1.0000', '14.3500', '14.3500', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78088, '2022-05-02', 2411, 74144, 4902, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78089, '2022-05-02', 7483, 74145, 4902, NULL, '5.0000', '0.4200', '0.4200', '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 (78090, '2022-05-02', 2344, 74146, 4902, NULL, '1.0000', '17.6204', '17.6204', '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 (78091, '2022-05-02', 1764, 74147, 4902, 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 (78092, '2022-05-02', 1340, 74148, 4902, 54554, '1.0000', '3.6111', '3.6111', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78093, '2022-05-02', 2132, 74149, 4902, 22537, '2.0000', '21.0000', '21.0000', '24.0000', '24.0000', '1.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 (78094, '2022-05-02', 2821, 74150, 4902, NULL, '2.0000', '3.3943', '3.3943', '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 (78095, '2022-05-02', 8878, 74151, 4902, NULL, '1.0000', '6.6700', '6.6700', '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 (78096, '2022-05-02', 1812, 74152, 4903, 8224, '-88.0000', '7.8900', '7.8900', '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 (78097, '2022-05-02', 1812, 74152, 4903, NULL, '89.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78098, '2022-05-02', 1384, 74153, 4903, NULL, '1.0000', '39.0000', '39.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 (78099, '2022-05-02', 7456, 74154, 4903, NULL, '1.0000', '34.7000', '34.7000', '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 (78100, '2022-05-02', 9715, 74155, 4903, NULL, '1.0000', '9.4000', '9.4000', '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 (78101, '2022-05-02', 1935, 74156, 4903, 5586, '-75.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 (78102, '2022-05-02', 1935, 74156, 4903, NULL, '76.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78103, '2022-05-02', 1736, 74157, 4904, 7382, '-7.0000', '-6.2282', '-6.2282', '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 (78104, '2022-05-02', 1736, 74157, 4904, NULL, '8.0000', '-6.2282', '-6.2282', '50.0000', '50.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 (78105, '2022-05-02', 1839, 74158, 4904, 8734, '-29.0000', '6.1500', '6.1500', '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 (78106, '2022-05-02', 1839, 74158, 4904, NULL, '30.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (78107, '2022-05-02', 1602, 74159, 4904, 5897, '-135.0000', '6.7859', '6.7859', '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 (78108, '2022-05-02', 1602, 74159, 4904, NULL, '137.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78109, '2022-05-02', 7663, 74160, 4905, NULL, '1.0000', '8.2000', '8.2000', '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 (78110, '2022-05-02', 7661, 74161, 4905, NULL, '1.0000', '7.2000', '7.2000', '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 (78111, '2022-05-02', 7946, 74162, 4905, NULL, '1.0000', '1.1000', '1.1000', '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 (78112, '2022-05-02', 7911, 74163, 4905, NULL, '1.0000', '4.3700', '4.3700', '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 (78113, '2022-05-02', 7641, 74164, 4905, NULL, '1.0000', '1.9000', '1.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 (78114, '2022-05-02', 8596, 74165, 4905, 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 (78115, '2022-05-02', 9729, 74166, 4905, NULL, '1.0000', '0.6200', '0.6200', '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 (78116, '2022-05-02', 8878, 74167, 4905, NULL, '1.0000', '6.6700', '6.6700', '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 (78117, '2022-05-02', 7952, 74168, 4905, 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 (78118, '2022-05-02', 9526, 74169, 4905, NULL, '2.0000', '7.0000', '7.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 (78119, '2022-05-02', 8539, 74170, 4905, NULL, '1.0000', '31.8000', '31.8000', '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 (78120, '2022-05-02', 7608, 74171, 4905, NULL, '1.0000', '6.9800', '6.9800', '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 (78121, '2022-05-02', 9000, 74172, 4905, NULL, '1.0000', '14.7800', '14.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 (78122, '2022-05-02', 8309, 74173, 4905, NULL, '1.0000', '14.5000', '14.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 (78123, '2022-05-02', 8690, 74174, 4905, NULL, '1.0000', '10.8000', '10.8000', '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 (78124, '2022-05-02', 8942, 74175, 4905, NULL, '1.0000', '4.4000', '4.4000', '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 (78125, '2022-05-02', 7674, 74176, 4905, 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 (78126, '2022-05-02', 8085, 74177, 4905, NULL, '3.0000', '1.1700', '1.1700', '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 (78127, '2022-05-02', 1807, 74178, 4905, 18924, '1.0000', '1.8000', '1.8000', '2.5000', '2.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 (78128, '2022-05-02', 9001, 74179, 4905, NULL, '1.0000', '23.5000', '23.5000', '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 (78129, '2022-05-02', 7641, 74180, 4905, NULL, '1.0000', '1.9000', '1.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 (78130, '2022-05-02', 7674, 74181, 4905, 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 (78131, '2022-05-02', 7954, 74182, 4905, NULL, '2.0000', '3.0000', '3.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 (78132, '2022-05-02', 9618, 74183, 4905, NULL, '8.0000', '3.7500', '3.7500', '7.0000', '7.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 (78133, '2022-05-02', 7709, 74184, 4905, NULL, '2.0000', '3.5000', '3.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 (78134, '2022-05-02', 1916, 74185, 4905, 5445, '-6.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78135, '2022-05-02', 1916, 74185, 4905, NULL, '7.0000', '8.2300', '8.2300', '14.0000', '14.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 (78136, '2022-05-02', 7317, 74186, 4905, NULL, '1.0000', '19.5500', '19.5500', '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 (78137, '2022-05-02', 1867, 74187, 4905, NULL, '1.0000', '1.0500', '1.0500', '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 (78138, '2022-05-02', 8878, 74188, 4905, NULL, '2.0000', '6.6700', '6.6700', '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 (78139, '2022-05-02', 1532, 74189, 4905, 22261, '3.0000', '0.8000', '0.8000', '2.0000', '2.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 (78140, '2022-05-02', 1904, 74190, 4905, 5442, '-36.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 (78141, '2022-05-02', 1904, 74190, 4905, NULL, '37.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78142, '2022-05-02', 9761, 74191, 4905, 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 (78143, '2022-05-02', 7790, 74192, 4905, NULL, '2.0000', '17.0000', '17.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 (78144, '2022-05-02', 7411, 74193, 4905, NULL, '2.0000', '1.3500', '1.3500', '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 (78145, '2022-05-02', 7368, 74194, 4905, NULL, '1.0000', '14.7500', '14.7500', '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 (78146, '2022-05-02', 7638, 74195, 4905, NULL, '1.0000', '12.0000', '12.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 (78147, '2022-05-02', 7456, 74196, 4905, NULL, '1.0000', '34.7000', '34.7000', '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 (78148, '2022-05-02', 9809, 74197, 4905, NULL, '1.0000', '5.7900', '5.7900', '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 (78149, '2022-05-02', 8308, 74198, 4905, NULL, '1.0000', '2.0800', '2.0800', '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 (78150, '2022-05-02', 2025, 74199, 4905, 6378, '-5.0000', '4.0000', '4.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 (78151, '2022-05-02', 2025, 74199, 4905, NULL, '6.0000', '4.0000', '4.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 (78152, '2022-05-02', 7993, 74200, 4905, NULL, '1.0000', '41.0000', '41.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78153, '2022-05-02', 7708, 74201, 4905, 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 (78154, '2022-05-02', 7333, 74202, 4905, NULL, '2.0000', '13.5000', '13.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 (78155, '2022-05-02', 1665, 74203, 4905, 3235, '-101.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 (78156, '2022-05-02', 1665, 74203, 4905, NULL, '102.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-102.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78157, '2022-05-02', 9729, 74204, 4905, NULL, '2.0000', '0.6200', '0.6200', '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 (78158, '2022-05-02', 2906, 74205, 4905, 18651, '-7.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 (78159, '2022-05-02', 2906, 74205, 4905, NULL, '8.0000', '2.6000', '2.6000', '4.0000', '4.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 (78160, '2022-05-02', 9177, 74206, 4905, 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 (78161, '2022-05-02', 9272, 74207, 4905, NULL, '1.0000', '3.1000', '3.1000', '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 (78162, '2022-05-02', 8000, 74208, 4905, NULL, '1.0000', '6.8400', '6.8400', '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 (78163, '2022-05-02', 9891, 74209, 4905, NULL, '2.0000', '17.4000', '17.4000', '23.0000', '23.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 (78164, '2022-05-02', 7385, 74210, 4905, NULL, '4.0000', '2.0000', '2.0000', '3.7000', '3.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 (78165, '2022-05-02', 1677, 74211, 4905, 3331, '1.0000', '7.8000', '7.8000', '20.0000', '20.0000', '2.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 (78166, '2022-05-02', 9866, 74212, 4905, NULL, '1.0000', '9.5500', '9.5500', '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 (78167, '2022-05-02', 8638, 74213, 4905, NULL, '1.0000', '0.5100', '0.5100', '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 (78168, '2022-05-02', 7630, 74214, 4905, NULL, '2.0000', '10.0000', '10.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 (78169, '2022-05-02', 7641, 74215, 4905, NULL, '1.0000', '1.9000', '1.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 (78170, '2022-05-02', 9329, 74216, 4905, NULL, '1.0000', '6.7000', '6.7000', '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 (78171, '2022-05-02', 2506, 74217, 4905, 16244, '-10.0000', '3.4900', '3.4900', '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 (78172, '2022-05-02', 2506, 74217, 4905, NULL, '11.0000', '3.4900', '3.4900', '6.5000', '6.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 (78173, '2022-05-02', 1577, 74218, 4905, 7596, '-13.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 (78174, '2022-05-02', 1577, 74218, 4905, NULL, '14.0000', '2.5000', '2.5000', '3.5000', '3.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 (78175, '2022-05-02', 7674, 74219, 4905, 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 (78176, '2022-05-02', 8127, 74220, 4905, NULL, '3.0000', '24.5300', '24.5300', '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 (78177, '2022-05-02', 7756, 74221, 4905, NULL, '1.0000', '2.5000', '2.5000', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78178, '2022-05-02', 7453, 74222, 4905, NULL, '1.0000', '28.5000', '28.5000', '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 (78179, '2022-05-02', 7640, 74223, 4905, 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 (78180, '2022-05-02', 9724, 74224, 4906, NULL, '1.0000', '20.3000', '20.3000', '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 (78181, '2022-05-02', 2289, 74225, 4906, 2949, '-125.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 (78182, '2022-05-02', 2289, 74225, 4906, NULL, '129.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-129.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78183, '2022-05-02', 1812, 74226, 4906, 8224, '-89.0000', '7.8900', '7.8900', '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 (78184, '2022-05-02', 1812, 74226, 4906, NULL, '90.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78185, '2022-05-02', 2763, 74227, 4907, 15805, '1.0000', '7.5000', '7.5000', '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 (78186, '2022-05-02', 2479, 74228, 4907, 5192, '1.0000', '10.0000', '10.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 (78187, '2022-05-02', 1667, 74229, 4907, 54634, '1.0000', '26.8586', '26.8586', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78188, '2022-05-02', 8746, 74230, 4907, 54338, '2.0000', '180.2641', '180.2641', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78189, '2022-05-02', 8758, 74231, 4907, 54345, '1.0000', '8.2594', '8.2594', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78190, '2022-05-02', 1843, 74232, 4907, 49134, '4.0000', '4.6200', '4.6200', '6.5000', '6.5000', '66.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78191, '2022-05-02', 2411, 74233, 4908, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78192, '2022-05-02', 2315, 74234, 4908, NULL, '1.0000', '0.4851', '0.4851', '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 (78193, '2022-05-02', 8444, 74235, 4908, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78194, '2022-05-02', 2384, 74236, 4908, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78195, '2022-05-02', 7802, 74237, 4908, 53226, '3.0000', '1.1497', '1.1497', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78196, '2022-05-02', 9695, 74238, 4908, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78197, '2022-05-02', 7514, 74239, 4908, NULL, '1.0000', '2.2500', '2.2500', '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 (78198, '2022-05-02', 7927, 74240, 4908, NULL, '1.0000', '11.7000', '11.7000', '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 (78199, '2022-05-02', 1510, 74241, 4908, NULL, '1.0000', '12.9810', '12.9810', '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 (78200, '2022-05-02', 9311, 74242, 4908, NULL, '1.0000', '6.6000', '6.6000', '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 (78201, '2022-05-02', 7411, 74243, 4908, NULL, '1.0000', '1.3013', '1.3013', '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 (78202, '2022-05-02', 9737, 74244, 4908, NULL, '1.0000', '7.3000', '7.3000', '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 (78203, '2022-05-02', 1340, 74245, 4908, 54554, '1.0000', '3.6111', '3.6111', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78204, '2022-05-02', 9695, 74246, 4908, 54075, '1.0000', '5.2084', '5.2084', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78205, '2022-05-02', 7411, 74247, 4908, NULL, '2.0000', '1.3013', '1.3013', '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 (78206, '2022-05-02', 9788, 74248, 4908, 51672, '1.0000', '1.5897', '1.5897', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78207, '2022-05-02', 9482, 74249, 4908, NULL, '4.0000', '0.5000', '0.5000', '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 (78208, '2022-05-02', 9734, 74250, 4908, NULL, '2.0000', '0.3200', '0.3200', '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 (78209, '2022-05-02', 2506, 74251, 4908, NULL, '1.0000', '4.2640', '4.2640', '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 (78210, '2022-05-02', 1411, 74252, 4909, NULL, '1.0000', '25.9000', '25.9000', '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 (78211, '2022-05-02', 2758, 74253, 4910, 22011, '-4.0000', '-20.1917', '-20.1917', '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 (78212, '2022-05-02', 2758, 74253, 4910, NULL, '5.0000', '-20.1917', '-20.1917', '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 (78213, '2022-05-02', 2643, 74254, 4910, NULL, '1.0000', '0.8700', '0.8700', '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 (78214, '2022-05-02', 7518, 74255, 4911, NULL, '1.0000', '7.8200', '7.8200', '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 (78215, '2022-05-02', 7509, 74256, 4911, 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 (78216, '2022-05-02', 8775, 74257, 4911, NULL, '1.0000', '2.6000', '2.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 (78217, '2022-05-02', 7674, 74258, 4911, 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 (78218, '2022-05-02', 9729, 74259, 4911, NULL, '2.0000', '0.6200', '0.6200', '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 (78219, '2022-05-02', 9734, 74260, 4911, NULL, '2.0000', '0.3200', '0.3200', '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 (78220, '2022-05-02', 7411, 74261, 4911, NULL, '2.0000', '1.3500', '1.3500', '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 (78221, '2022-05-02', 8810, 74262, 4911, NULL, '1.0000', '1.6000', '1.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 (78222, '2022-05-02', 7608, 74263, 4911, NULL, '1.0000', '6.9800', '6.9800', '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 (78223, '2022-05-02', 8878, 74264, 4911, NULL, '2.0000', '6.6700', '6.6700', '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 (78224, '2022-05-02', 7518, 74265, 4911, NULL, '1.0000', '7.8200', '7.8200', '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 (78225, '2022-05-02', 8966, 74266, 4911, NULL, '1.0000', '6.8500', '6.8500', '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 (78226, '2022-05-02', 9762, 74267, 4912, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '41.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78227, '2022-05-02', 9829, 74268, 4912, NULL, '1.0000', '11.0000', '11.0000', '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 (78228, '2022-05-02', 7933, 74269, 4912, NULL, '1.0000', '-0.1222', '-0.1222', '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 (78229, '2022-05-02', 1425, 74270, 4912, NULL, '1.0000', '5.1721', '5.1721', '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 (78230, '2022-05-02', 9735, 74271, 4912, 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 (78231, '2022-05-02', 8308, 74272, 4912, NULL, '1.0000', '11.0000', '11.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 (78232, '2022-05-02', 2228, 74273, 4912, 53636, '1.0000', '30.0000', '30.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78233, '2022-05-02', 2983, 74274, 4912, 22553, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '1.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 (78234, '2022-05-02', 2548, 74275, 4912, 51644, '1.0000', '7.0500', '7.0500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78235, '2022-05-02', 2260, 74276, 4912, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78236, '2022-05-02', 2260, 74277, 4913, 51688, '1.0000', '4.4707', '4.4707', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78237, '2022-05-02', 1601, 74278, 4913, 54158, '1.0000', '-0.1595', '-0.1595', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78238, '2022-05-02', 9718, 74279, 4914, NULL, '1.0000', '13.3000', '13.3000', '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 (78239, '2022-05-02', 9330, 74280, 4914, 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 (78240, '2022-05-02', 2350, 74281, 4915, 34569, '1.0000', '10.3800', '10.3800', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78241, '2022-05-02', 1406, 74282, 4915, 54555, '1.0000', '20.9420', '20.9420', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78242, '2022-05-02', 2821, 74283, 4915, NULL, '1.0000', '3.3943', '3.3943', '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 (78243, '2022-05-02', 7713, 74284, 4915, NULL, '2.0000', '24.6545', '24.6545', '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 (78244, '2022-05-03', 2948, 74285, 4916, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78245, '2022-05-03', 2904, 74286, 4916, 23157, '1.0000', '19.6100', '19.6100', '28.0000', '28.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 (78246, '2022-05-03', 2283, 74287, 4916, 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 (78247, '2022-05-03', 9902, 74288, 4916, 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 (78248, '2022-05-03', 8455, 74289, 4916, NULL, '1.0000', '4.5000', '4.5000', '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 (78249, '2022-05-03', 1946, 74290, 4916, NULL, '1.0000', '-1.2595', '-1.2595', '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 (78250, '2022-05-03', 3017, 74291, 4916, 54537, '1.0000', '3.9829', '3.9829', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78251, '2022-05-03', 9745, 74292, 4916, 47102, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78252, '2022-05-03', 9798, 74293, 4916, NULL, '1.0000', '13.9000', '13.9000', '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 (78253, '2022-05-03', 2275, 74294, 4916, 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 (78254, '2022-05-03', 9840, 74295, 4916, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78255, '2022-05-03', 2103, 74296, 4916, 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 (78256, '2022-05-03', 2283, 74297, 4916, 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 (78257, '2022-05-03', 7507, 74298, 4916, 39787, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '129.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78258, '2022-05-03', 9799, 74299, 4916, 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 (78259, '2022-05-03', 7606, 74300, 4916, NULL, '1.0000', '4.8600', '4.8600', '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 (78260, '2022-05-03', 1935, 74301, 4916, 52160, '3.0000', '0.7671', '0.7671', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78261, '2022-05-03', 1521, 74302, 4916, 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 (78262, '2022-05-03', 9840, 74303, 4916, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78263, '2022-05-03', 1313, 74304, 4916, 43274, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78264, '2022-05-03', 1722, 74305, 4916, NULL, '1.0000', '2.5900', '2.5900', '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 (78265, '2022-05-03', 2543, 74306, 4917, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78266, '2022-05-03', 9834, 74307, 4917, NULL, '1.0000', '1.4500', '1.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 (78267, '2022-05-03', 9834, 74308, 4917, NULL, '2.0000', '1.4500', '1.4500', '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 (78268, '2022-05-03', 1935, 74309, 4917, 52160, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78269, '2022-05-03', 1499, 74310, 4917, 52148, '2.0000', '0.3747', '0.3747', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78270, '2022-05-03', 9734, 74311, 4917, NULL, '1.0000', '0.3200', '0.3200', '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 (78271, '2022-05-03', 2411, 74312, 4917, 47056, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78272, '2022-05-03', 2916, 74313, 4917, NULL, '1.0000', '-13.0168', '-13.0168', '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 (78273, '2022-05-03', 1580, 74314, 4917, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78274, '2022-05-03', 9566, 74315, 4917, 52170, '1.0000', '7.8771', '7.8771', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78275, '2022-05-03', 1580, 74316, 4917, 51316, '3.0000', '1.1598', '1.1598', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78276, '2022-05-03', 9856, 74317, 4917, 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 (78277, '2022-05-03', 2609, 74318, 4918, 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 (78278, '2022-05-03', 1602, 74319, 4918, 54954, '1.0000', '6.9125', '6.9125', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78279, '2022-05-03', 1863, 74320, 4918, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78280, '2022-05-03', 8065, 74321, 4918, NULL, '1.0000', '32.0000', '32.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 (78281, '2022-05-03', 9840, 74322, 4918, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78282, '2022-05-03', 8969, 74323, 4918, 49342, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78283, '2022-05-03', 8969, 74323, 4918, 48599, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78284, '2022-05-03', 2332, 74324, 4918, NULL, '1.0000', '-1.4600', '-1.4600', '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 (78285, '2022-05-03', 9463, 74325, 4918, NULL, '1.0000', '27.3444', '27.3444', '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 (78286, '2022-05-03', 9496, 74326, 4918, NULL, '1.0000', '3.8800', '3.8800', '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 (78287, '2022-05-03', 7741, 74327, 4918, NULL, '1.0000', '-6.8417', '-6.8417', '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 (78288, '2022-05-03', 7507, 74328, 4918, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78289, '2022-05-03', 1580, 74329, 4918, 54914, '3.0000', '1.4639', '1.4639', '2.0000', '2.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78290, '2022-05-03', 1565, 74330, 4918, 19859, '1.0000', '18.0500', '18.0500', '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 (78291, '2022-05-03', 2066, 74331, 4918, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78292, '2022-05-03', 7608, 74332, 4919, NULL, '1.0000', '6.9800', '6.9800', '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 (78293, '2022-05-03', 1839, 74333, 4919, NULL, '1.0000', '-11631.9088', '-11631.9088', '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 (78294, '2022-05-03', 1667, 74334, 4919, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78295, '2022-05-03', 2759, 74335, 4919, 54946, '1.0000', '4.0909', '4.0909', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78296, '2022-05-03', 1863, 74336, 4919, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78297, '2022-05-03', 8878, 74337, 4920, NULL, '1.0000', '6.6700', '6.6700', '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 (78298, '2022-05-03', 9649, 74338, 4920, NULL, '1.0000', '14.2780', '14.2780', '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 (78299, '2022-05-03', 9748, 74339, 4920, 53236, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78300, '2022-05-03', 1841, 74340, 4920, NULL, '2.0000', '0.2601', '0.2601', '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 (78301, '2022-05-03', 1908, 74341, 4920, NULL, '2.0000', '0.9032', '0.9032', '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 (78302, '2022-05-03', 8068, 74342, 4920, NULL, '1.0000', '8.7900', '8.7900', '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 (78303, '2022-05-03', 1935, 74343, 4920, 52160, '7.0000', '0.7671', '0.7671', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78304, '2022-05-03', 2379, 74344, 4921, NULL, '1.0000', '0.2954', '0.2954', '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 (78305, '2022-05-03', 1863, 74345, 4921, 54933, '5.0000', '1.4478', '1.4478', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78306, '2022-05-03', 2256, 74346, 4921, NULL, '1.0000', '13.7060', '13.7060', '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 (78307, '2022-05-03', 9732, 74347, 4921, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78308, '2022-05-03', 2275, 74348, 4921, 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 (78309, '2022-05-03', 9463, 74349, 4921, NULL, '1.0000', '27.3444', '27.3444', '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 (78310, '2022-05-03', 1450, 74350, 4922, 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 (78311, '2022-05-03', 2821, 74351, 4923, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78312, '2022-05-03', 8900, 74352, 4923, NULL, '5.0000', '16.4000', '16.4000', '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 (78313, '2022-05-03', 9272, 74353, 4924, NULL, '2.0000', '3.1000', '3.1000', '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 (78314, '2022-05-03', 2699, 74354, 4924, 12529, '-31.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 (78315, '2022-05-03', 2699, 74354, 4924, NULL, '32.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78316, '2022-05-03', 7641, 74355, 4924, NULL, '1.0000', '1.9000', '1.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 (78317, '2022-05-03', 8810, 74356, 4924, NULL, '1.0000', '1.6000', '1.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 (78318, '2022-05-03', 7411, 74357, 4924, NULL, '2.0000', '1.3500', '1.3500', '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 (78319, '2022-05-03', 9556, 74358, 4924, 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 (78320, '2022-05-03', 8133, 74359, 4924, NULL, '1.0000', '5.0000', '5.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 (78321, '2022-05-03', 7917, 74360, 4924, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78322, '2022-05-03', 7910, 74361, 4924, 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 (78323, '2022-05-03', 9382, 74362, 4924, NULL, '1.0000', '5.2000', '5.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 (78324, '2022-05-03', 2352, 74363, 4924, 3855, '-131.0000', '20.0000', '20.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 (78325, '2022-05-03', 2352, 74363, 4924, NULL, '133.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-133.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78326, '2022-05-03', 2332, 74364, 4924, 3835, '-9.0000', '5.8900', '5.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 (78327, '2022-05-03', 2332, 74364, 4924, NULL, '10.0000', '5.8900', '5.8900', '10.0000', '10.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 (78328, '2022-05-03', 9716, 74365, 4924, NULL, '1.0000', '4.4000', '4.4000', '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 (78329, '2022-05-03', 2491, 74366, 4924, 6228, '-27.0000', '12.2000', '12.2000', '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 (78330, '2022-05-03', 2491, 74366, 4924, NULL, '28.0000', '12.2000', '12.2000', '17.5000', '17.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 (78331, '2022-05-03', 2699, 74367, 4924, 12529, '-31.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 (78332, '2022-05-03', 2699, 74367, 4924, NULL, '32.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78333, '2022-05-03', 7658, 74368, 4924, NULL, '5.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (78334, '2022-05-03', 7657, 74369, 4924, NULL, '1.0000', '11.3200', '11.3200', '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 (78335, '2022-05-03', 7473, 74370, 4924, NULL, '3.0000', '0.5300', '0.5300', '0.6000', '0.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 (78336, '2022-05-03', 7703, 74371, 4924, NULL, '1.0000', '22.9900', '22.9900', '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 (78337, '2022-05-03', 8202, 74372, 4924, NULL, '1.0000', '1.6600', '1.6600', '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 (78338, '2022-05-03', 8163, 74373, 4924, NULL, '1.0000', '22.0000', '22.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 (78339, '2022-05-03', 1605, 74374, 4924, 17691, '1.0000', '26.8412', '26.8412', '46.0000', '46.0000', '7.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 (78340, '2022-05-03', 9215, 74375, 4924, NULL, '1.0000', '1.6000', '1.6000', '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 (78341, '2022-05-03', 7464, 74376, 4924, NULL, '1.0000', '21.9000', '21.9000', '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 (78342, '2022-05-03', 9715, 74377, 4924, NULL, '1.0000', '9.4000', '9.4000', '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 (78343, '2022-05-03', 9214, 74378, 4924, NULL, '2.0000', '9.6000', '9.6000', '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 (78344, '2022-05-03', 7673, 74379, 4924, NULL, '1.0000', '16.8000', '16.8000', '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 (78345, '2022-05-03', 7674, 74380, 4924, 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 (78346, '2022-05-03', 8666, 74381, 4924, NULL, '1.0000', '0.4600', '0.4600', '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 (78347, '2022-05-03', 9734, 74382, 4924, NULL, '2.0000', '0.3200', '0.3200', '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 (78348, '2022-05-03', 9881, 74383, 4925, 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 (78349, '2022-05-03', 9839, 74384, 4925, NULL, '1.0000', '15.0200', '15.0200', '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 (78350, '2022-05-03', 1342, 74385, 4925, 11264, '-13.0000', '6.8074', '6.8074', '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 (78351, '2022-05-03', 1342, 74385, 4925, NULL, '14.0000', '6.8074', '6.8074', '8.0000', '8.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 (78352, '2022-05-03', 8059, 74386, 4925, NULL, '1.0000', '6.0000', '6.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 (78353, '2022-05-03', 1837, 74387, 4925, 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 (78354, '2022-05-03', 9770, 74388, 4925, 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 (78355, '2022-05-03', 8059, 74389, 4925, NULL, '1.0000', '6.0000', '6.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 (78356, '2022-05-03', 1999, 74390, 4925, 6362, '-11.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 (78357, '2022-05-03', 1999, 74390, 4925, NULL, '12.0000', '6.0000', '6.0000', '10.0000', '10.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 (78358, '2022-05-03', 1690, 74391, 4925, 13150, '1.0000', '7.1466', '7.1466', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 131);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78359, '2022-05-03', 1807, 74392, 4925, 18924, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '24.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 (78360, '2022-05-03', 2167, 74393, 4925, 17165, '-48.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 (78361, '2022-05-03', 2167, 74393, 4925, NULL, '49.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78362, '2022-05-03', 2253, 74394, 4925, NULL, '1.0000', '9.2500', '9.2500', '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 (78363, '2022-05-03', 1999, 74395, 4925, 6362, '-11.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 (78364, '2022-05-03', 1999, 74395, 4925, NULL, '12.0000', '6.0000', '6.0000', '10.0000', '10.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 (78365, '2022-05-03', 7575, 74396, 4925, NULL, '1.0000', '5.9000', '5.9000', '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 (78366, '2022-05-03', 1571, 74397, 4925, 434, '10.0000', '61.7047', '61.7047', '3.5000', '3.5000', '7.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 (78367, '2022-05-03', 8039, 74398, 4925, NULL, '1.0000', '14.7500', '14.7500', '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 (78368, '2022-05-03', 8133, 74399, 4925, NULL, '1.0000', '5.0000', '5.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 (78369, '2022-05-03', 2633, 74400, 4925, 17589, '-8.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 (78370, '2022-05-03', 2633, 74400, 4925, NULL, '9.0000', '3.5000', '3.5000', '5.0000', '5.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 (78371, '2022-05-03', 2167, 74401, 4925, 17165, '-48.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 (78372, '2022-05-03', 2167, 74401, 4925, NULL, '49.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78373, '2022-05-03', 1665, 74402, 4925, 3235, '-102.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 (78374, '2022-05-03', 1665, 74402, 4925, NULL, '103.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78375, '2022-05-03', 1432, 74403, 4925, NULL, '1.0000', '8.1574', '8.1574', '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 (78376, '2022-05-03', 1479, 74404, 4925, NULL, '1.0000', '42.3600', '42.3600', '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 (78377, '2022-05-03', 2250, 74405, 4925, 2787, '-12.0000', '6.8900', '6.8900', '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 (78378, '2022-05-03', 2250, 74405, 4925, NULL, '13.0000', '6.8900', '6.8900', '12.5000', '12.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 (78379, '2022-05-03', 2317, 74406, 4925, 3473, '-13.0000', '15.0000', '15.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 (78380, '2022-05-03', 2317, 74406, 4925, NULL, '14.0000', '15.0000', '15.0000', '18.0000', '18.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 (78381, '2022-05-03', 8744, 74407, 4925, NULL, '1.0000', '3.6600', '3.6600', '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 (78382, '2022-05-03', 9695, 74408, 4925, NULL, '1.0000', '4.5000', '4.5000', '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 (78383, '2022-05-03', 1935, 74409, 4925, 5586, '-76.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 (78384, '2022-05-03', 1935, 74409, 4925, NULL, '77.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78385, '2022-05-03', 1399, 74410, 4925, NULL, '1.0000', '13.3890', '13.3890', '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 (78386, '2022-05-03', 9734, 74411, 4925, NULL, '1.0000', '0.3200', '0.3200', '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 (78387, '2022-05-03', 2366, 74412, 4925, 3833, '-50.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 (78388, '2022-05-03', 2366, 74412, 4925, NULL, '52.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78389, '2022-05-03', 2681, 74413, 4925, 12164, '-21.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 (78390, '2022-05-03', 2681, 74413, 4925, NULL, '22.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78391, '2022-05-03', 1888, 74414, 4925, 14663, '-4.0000', '134.8400', '134.8400', '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 (78392, '2022-05-03', 1888, 74414, 4925, NULL, '5.0000', '134.8400', '134.8400', '25.0000', '25.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 (78393, '2022-05-03', 2237, 74415, 4926, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78394, '2022-05-03', 1425, 74416, 4926, NULL, '1.0000', '5.1721', '5.1721', '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 (78395, '2022-05-03', 1342, 74417, 4926, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78396, '2022-05-03', 7641, 74418, 4926, NULL, '1.0000', '1.9000', '1.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 (78397, '2022-05-03', 1667, 74419, 4926, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78398, '2022-05-03', 9175, 74420, 4926, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78399, '2022-05-03', 7411, 74421, 4926, NULL, '3.0000', '1.3013', '1.3013', '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 (78400, '2022-05-03', 2267, 74422, 4926, 48130, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78401, '2022-05-03', 9741, 74423, 4926, 53681, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78402, '2022-05-03', 7713, 74424, 4926, NULL, '5.0000', '24.6545', '24.6545', '0.6000', '0.6000', '-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 (78403, '2022-05-03', 7641, 74425, 4926, NULL, '1.0000', '1.9000', '1.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 (78404, '2022-05-03', 8775, 74426, 4926, 53445, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78405, '2022-05-03', 8740, 74427, 4926, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78406, '2022-05-03', 2315, 74428, 4926, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '189.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78407, '2022-05-03', 2231, 74429, 4926, NULL, '1.0000', '-543.9392', '-543.9392', '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 (78408, '2022-05-03', 1511, 74430, 4926, 13749, '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 (78409, '2022-05-03', 7411, 74431, 4926, NULL, '3.0000', '1.3013', '1.3013', '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 (78410, '2022-05-03', 9856, 74432, 4926, 54959, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78411, '2022-05-03', 8017, 74433, 4926, NULL, '2.0000', '0.6000', '0.6000', '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 (78412, '2022-05-03', 7593, 74434, 4927, NULL, '1.0000', '0.8000', '0.8000', '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 (78413, '2022-05-03', 7411, 74435, 4927, NULL, '1.0000', '1.3013', '1.3013', '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 (78414, '2022-05-03', 1722, 74436, 4927, NULL, '1.0000', '2.5900', '2.5900', '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 (78415, '2022-05-03', 1499, 74437, 4927, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '74.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78416, '2022-05-03', 9482, 74438, 4927, NULL, '2.0000', '0.5000', '0.5000', '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 (78417, '2022-05-03', 1501, 74439, 4927, NULL, '1.0000', '1.8760', '1.8760', '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 (78418, '2022-05-03', 2506, 74440, 4927, NULL, '1.0000', '4.1493', '4.1493', '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 (78419, '2022-05-03', 1812, 74441, 4927, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78420, '2022-05-03', 1935, 74442, 4927, 52160, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78421, '2022-05-03', 9732, 74443, 4927, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78422, '2022-05-03', 2315, 74444, 4927, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '188.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78423, '2022-05-03', 3059, 74445, 4927, 37758, '1.0000', '2.2083', '2.2083', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78424, '2022-05-03', 7411, 74446, 4927, NULL, '1.0000', '1.3013', '1.3013', '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 (78425, '2022-05-03', 9738, 74447, 4927, 54576, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78426, '2022-05-03', 9834, 74448, 4927, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78427, '2022-05-03', 1689, 74449, 4927, 54931, '1.0000', '14.8587', '14.8587', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78428, '2022-05-03', 1871, 74450, 4928, NULL, '20.0000', '0.4145', '0.4145', '3.7000', '3.7000', '-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 (78429, '2022-05-03', 7824, 74451, 4929, NULL, '1.0000', '8.0000', '8.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 (78430, '2022-05-03', 8187, 74452, 4929, NULL, '3.0000', '14.3900', '14.3900', '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 (78431, '2022-05-03', 7412, 74453, 4929, NULL, '1.0000', '1.5200', '1.5200', '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 (78432, '2022-05-03', 7967, 74454, 4929, NULL, '1.0000', '7.0000', '7.0000', '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 (78433, '2022-05-03', 8184, 74455, 4929, NULL, '14.0000', '2.4000', '2.4000', '4.0000', '4.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 (78434, '2022-05-03', 9199, 74456, 4929, NULL, '1.0000', '19.0000', '19.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 (78435, '2022-05-03', 9854, 74457, 4929, 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 (78436, '2022-05-03', 7638, 74458, 4929, NULL, '1.0000', '12.0000', '12.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 (78437, '2022-05-03', 2105, 74459, 4929, NULL, '2.0000', '1.3500', '1.3500', '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 (78438, '2022-05-03', 7719, 74460, 4929, NULL, '1.0000', '6.0000', '6.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 (78439, '2022-05-03', 2608, 74461, 4929, NULL, '1.0000', '83.3300', '83.3300', '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 (78440, '2022-05-03', 9894, 74462, 4929, 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 (78441, '2022-05-03', 8702, 74463, 4929, NULL, '1.0000', '3.6700', '3.6700', '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 (78442, '2022-05-03', 7473, 74464, 4929, NULL, '3.0000', '0.5300', '0.5300', '0.6000', '0.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 (78443, '2022-05-03', 7981, 74465, 4929, NULL, '5.0000', '6.0000', '6.0000', '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 (78444, '2022-05-03', 8967, 74466, 4929, NULL, '1.0000', '1.5000', '1.5000', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78445, '2022-05-03', 1622, 74467, 4929, 8739, '-5.0000', '44.8492', '44.8492', '36.5000', '36.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 (78446, '2022-05-03', 1622, 74467, 4929, NULL, '6.0000', '44.8492', '44.8492', '36.5000', '36.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 (78447, '2022-05-03', 8359, 74468, 4929, 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 (78448, '2022-05-03', 2069, 74469, 4929, 5571, '-9.0000', '2.0400', '2.0400', '9.5000', '9.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 (78449, '2022-05-03', 2069, 74469, 4929, NULL, '10.0000', '2.0400', '2.0400', '9.5000', '9.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 (78450, '2022-05-03', 7907, 74470, 4929, NULL, '1.0000', '12.0000', '12.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 (78451, '2022-05-03', 8017, 74471, 4929, NULL, '1.0000', '40.0000', '40.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 (78452, '2022-05-03', 9582, 74472, 4929, 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 (78453, '2022-05-03', 9272, 74473, 4929, NULL, '1.0000', '3.1000', '3.1000', '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 (78454, '2022-05-03', 7963, 74474, 4929, 33811, '1.0000', '14.7000', '14.7000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78455, '2022-05-03', 1501, 74475, 4929, NULL, '1.0000', '2.0500', '2.0500', '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 (78456, '2022-05-03', 2557, 74476, 4929, 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 (78457, '2022-05-03', 7592, 74477, 4929, NULL, '1.0000', '6.8000', '6.8000', '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 (78458, '2022-05-03', 8005, 74478, 4929, NULL, '1.0000', '58.0000', '58.0000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78459, '2022-05-03', 7641, 74479, 4929, NULL, '2.0000', '1.9000', '1.9000', '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 (78460, '2022-05-03', 1310, 74480, 4929, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (78461, '2022-05-03', 8037, 74481, 4929, NULL, '1.0000', '1.7600', '1.7600', '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 (78462, '2022-05-03', 7674, 74482, 4929, 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 (78463, '2022-05-03', 7444, 74483, 4929, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78464, '2022-05-03', 7385, 74484, 4929, NULL, '10.0000', '2.0000', '2.0000', '3.7000', '3.7000', '-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 (78465, '2022-05-03', 8979, 74485, 4929, NULL, '1.0000', '1.0000', '1.0000', '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 (78466, '2022-05-03', 7658, 74486, 4929, NULL, '10.0000', '2.0200', '2.0200', '2.8000', '2.8000', '-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 (78467, '2022-05-03', 7959, 74487, 4929, NULL, '2.0000', '9.6000', '9.6000', '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 (78468, '2022-05-03', 7473, 74488, 4929, NULL, '1.0000', '0.5300', '0.5300', '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 (78469, '2022-05-03', 8497, 74489, 4929, NULL, '2.0000', '9.0000', '9.0000', '18.5000', '18.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 (78470, '2022-05-03', 7518, 74490, 4929, NULL, '2.0000', '7.8200', '7.8200', '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 (78471, '2022-05-03', 2027, 74491, 4929, 6849, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 60);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78472, '2022-05-03', 7518, 74492, 4929, NULL, '1.0000', '7.8200', '7.8200', '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 (78473, '2022-05-03', 8666, 74493, 4929, NULL, '1.0000', '0.4600', '0.4600', '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 (78474, '2022-05-03', 8831, 74494, 4929, 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 (78475, '2022-05-03', 9865, 74495, 4929, 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 (78476, '2022-05-03', 9620, 74496, 4929, 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 (78477, '2022-05-03', 7708, 74497, 4929, 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 (78478, '2022-05-03', 7741, 74498, 4929, NULL, '1.0000', '1.2000', '1.2000', '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 (78479, '2022-05-03', 9817, 74499, 4929, NULL, '1.0000', '3.9000', '3.9000', '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 (78480, '2022-05-03', 9413, 74500, 4929, NULL, '2.0000', '9.0000', '9.0000', '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 (78481, '2022-05-03', 8878, 74501, 4929, NULL, '2.0000', '6.6700', '6.6700', '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 (78482, '2022-05-03', 8415, 74502, 4929, NULL, '1.0000', '3.2500', '3.2500', '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 (78483, '2022-05-03', 8106, 74503, 4929, NULL, '1.0000', '3.2500', '3.2500', '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 (78484, '2022-05-03', 7640, 74504, 4929, 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 (78485, '2022-05-03', 2315, 74505, 4929, 2735, '-287.0000', '0.3300', '0.3300', '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 (78486, '2022-05-03', 2315, 74505, 4929, NULL, '289.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-289.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78487, '2022-05-03', 2233, 74506, 4929, 2777, '-27.0000', '19.0200', '19.0200', '29.5000', '29.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 (78488, '2022-05-03', 2233, 74506, 4929, NULL, '28.0000', '19.0200', '19.0200', '29.5000', '29.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 (78489, '2022-05-03', 9754, 74507, 4930, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78490, '2022-05-03', 2821, 74508, 4930, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78491, '2022-05-03', 3019, 74509, 4930, NULL, '1.0000', '7.8000', '7.8000', '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 (78492, '2022-05-03', 7411, 74510, 4930, NULL, '1.0000', '1.3013', '1.3013', '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 (78493, '2022-05-03', 2315, 74511, 4930, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '186.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78494, '2022-05-03', 2965, 74512, 4930, NULL, '1.0000', '8.3288', '8.3288', '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 (78495, '2022-05-03', 9695, 74513, 4930, 54975, '1.0000', '5.0647', '5.0647', '7.0000', '7.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78496, '2022-05-03', 8844, 74514, 4930, NULL, '1.0000', '4.7829', '4.7829', '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 (78497, '2022-05-03', 3016, 74515, 4930, 52179, '1.0000', '11.9500', '11.9500', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78498, '2022-05-03', 2506, 74516, 4930, NULL, '1.0000', '4.1493', '4.1493', '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 (78499, '2022-05-03', 1342, 74517, 4930, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78500, '2022-05-03', 1690, 74518, 4930, 54961, '1.0000', '8.6038', '8.6038', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78501, '2022-05-03', 2762, 74519, 4930, NULL, '1.0000', '7.1000', '7.1000', '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 (78502, '2022-05-03', 9794, 74520, 4930, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '98.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78503, '2022-05-03', 8745, 74521, 4930, 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 (78504, '2022-05-03', 2354, 74522, 4930, NULL, '1.0000', '-0.6066', '-0.6066', '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 (78505, '2022-05-03', 3001, 74523, 4930, 37759, '3.0000', '2.5621', '2.5621', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78506, '2022-05-03', 1871, 74524, 4930, NULL, '5.0000', '0.4145', '0.4145', '3.7000', '3.7000', '-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 (78507, '2022-05-03', 2509, 74525, 4930, 34580, '1.0000', '24.5800', '24.5800', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78508, '2022-05-03', 2992, 74526, 4930, 50080, '1.0000', '2.7379', '2.7379', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78509, '2022-05-03', 9834, 74527, 4930, 54879, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78510, '2022-05-03', 7880, 74528, 4930, NULL, '1.0000', '1.0000', '1.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 (78511, '2022-05-03', 2444, 74529, 4930, 54824, '1.0000', '8.3626', '8.3626', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78512, '2022-05-03', 1667, 74530, 4930, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78513, '2022-05-03', 7886, 74531, 4930, NULL, '1.0000', '14.5000', '14.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 (78514, '2022-05-03', 2592, 74532, 4930, 54893, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78515, '2022-05-03', 2109, 74533, 4930, NULL, '1.0000', '0.0413', '0.0413', '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 (78516, '2022-05-03', 1867, 74534, 4930, 54516, '1.0000', '3.6953', '3.6953', '18.5000', '18.5000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78517, '2022-05-03', 2242, 74535, 4930, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78518, '2022-05-03', 9761, 74536, 4930, 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 (78519, '2022-05-03', 1736, 74537, 4930, NULL, '2.0000', '26.7000', '26.7000', '50.0000', '50.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 (78520, '2022-05-03', 9747, 74538, 4930, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78521, '2022-05-03', 2315, 74539, 4930, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '187.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78522, '2022-05-03', 2293, 74540, 4930, NULL, '2.0000', '10.2680', '10.2680', '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 (78523, '2022-05-03', 1999, 74541, 4930, 51936, '1.0000', '6.6486', '6.6486', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78524, '2022-05-03', 7864, 74542, 4930, 39767, '1.0000', '17.7700', '17.7700', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78525, '2022-05-03', 1628, 74543, 4930, 54550, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78526, '2022-05-03', 1314, 74544, 4930, 54908, '1.0000', '1.5288', '1.5288', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78527, '2022-05-03', 1667, 74545, 4930, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78528, '2022-05-03', 1935, 74546, 4930, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78529, '2022-05-03', 7638, 74547, 4930, NULL, '1.0000', '12.0000', '12.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 (78530, '2022-05-03', 7713, 74548, 4930, NULL, '2.0000', '24.6545', '24.6545', '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 (78531, '2022-05-03', 7411, 74549, 4930, NULL, '1.0000', '1.3013', '1.3013', '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 (78532, '2022-05-03', 7328, 74550, 4930, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (78533, '2022-05-03', 2573, 74551, 4930, NULL, '1.0000', '7.2200', '7.2200', '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 (78534, '2022-05-03', 2221, 74552, 4930, NULL, '1.0000', '15.0000', '15.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 (78535, '2022-05-03', 1394, 74553, 4930, 48995, '1.0000', '7.8985', '7.8985', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78536, '2022-05-03', 1311, 74554, 4930, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '31.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78537, '2022-05-03', 7593, 74555, 4930, NULL, '1.0000', '0.8000', '0.8000', '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 (78538, '2022-05-03', 7713, 74556, 4930, NULL, '3.0000', '24.6545', '24.6545', '0.6000', '0.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 (78539, '2022-05-03', 2384, 74557, 4930, NULL, '1.0000', '0.1500', '0.1500', '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 (78540, '2022-05-03', 9732, 74558, 4930, 54926, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78541, '2022-05-03', 2315, 74559, 4930, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '187.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78542, '2022-05-03', 2221, 74560, 4930, NULL, '1.0000', '15.0000', '15.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 (78543, '2022-05-03', 2943, 74561, 4930, 47069, '1.0000', '3.3342', '3.3342', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78544, '2022-05-03', 9595, 74562, 4930, 48716, '1.0000', '12.6954', '12.6954', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78545, '2022-05-03', 1501, 74563, 4930, NULL, '1.0000', '1.8760', '1.8760', '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 (78546, '2022-05-03', 7411, 74564, 4930, NULL, '1.0000', '1.3013', '1.3013', '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 (78547, '2022-05-03', 8454, 74565, 4930, NULL, '1.0000', '4.1722', '4.1722', '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 (78548, '2022-05-03', 8455, 74566, 4930, NULL, '1.0000', '4.5000', '4.5000', '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 (78549, '2022-05-03', 1827, 74567, 4930, NULL, '5.0000', '0.2000', '0.2000', '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 (78550, '2022-05-03', 2293, 74568, 4930, NULL, '5.0000', '10.2680', '10.2680', '1.5000', '1.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 (78551, '2022-05-03', 1532, 74569, 4930, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78552, '2022-05-03', 1494, 74570, 4930, 19337, '1.0000', '4.3900', '4.3900', '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 (78553, '2022-05-03', 7672, 74571, 4930, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78554, '2022-05-03', 9834, 74572, 4930, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78555, '2022-05-03', 9737, 74573, 4930, NULL, '1.0000', '7.3000', '7.3000', '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 (78556, '2022-05-03', 1640, 74574, 4930, NULL, '1.0000', '3.0496', '3.0496', '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 (78557, '2022-05-03', 2416, 74575, 4930, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78558, '2022-05-03', 9734, 74576, 4930, NULL, '2.0000', '0.3200', '0.3200', '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 (78559, '2022-05-03', 1411, 74577, 4930, 54969, '1.0000', '25.9970', '25.9970', '35.0000', '35.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78560, '2022-05-03', 9791, 74578, 4930, 51704, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78561, '2022-05-03', 7917, 74579, 4930, NULL, '1.0000', '5.0000', '5.0000', '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 (78562, '2022-05-03', 1410, 74580, 4930, NULL, '1.0000', '-8.0763', '-8.0763', '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 (78563, '2022-05-03', 2906, 74581, 4930, NULL, '1.0000', '2.6000', '2.6000', '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 (78564, '2022-05-03', 1590, 74582, 4930, 54532, '1.0000', '2.1402', '2.1402', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78565, '2022-05-03', 8595, 74583, 4930, NULL, '1.0000', '3.9640', '3.9640', '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 (78566, '2022-05-03', 2384, 74584, 4930, NULL, '3.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (78567, '2022-05-03', 9734, 74585, 4930, NULL, '2.0000', '0.3200', '0.3200', '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 (78568, '2022-05-03', 7411, 74586, 4930, NULL, '1.0000', '1.3013', '1.3013', '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 (78569, '2022-05-03', 1590, 74587, 4930, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78570, '2022-05-03', 8743, 74588, 4930, NULL, '1.0000', '10.5000', '10.5000', '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 (78571, '2022-05-03', 9482, 74589, 4931, NULL, '2.0000', '0.5000', '0.5000', '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 (78572, '2022-05-03', 9737, 74590, 4931, NULL, '1.0000', '7.3000', '7.3000', '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 (78573, '2022-05-03', 9834, 74591, 4931, NULL, '2.0000', '1.4500', '1.4500', '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 (78574, '2022-05-03', 2706, 74592, 4931, 12525, '-2.0000', '6.5900', '6.5900', '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 (78575, '2022-05-03', 2706, 74592, 4931, NULL, '3.0000', '6.5900', '6.5900', '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 (78576, '2022-05-03', 1536, 74593, 4931, 1634, '-53.0000', '3.1686', '3.1686', '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 (78577, '2022-05-03', 1536, 74593, 4931, NULL, '63.0000', '3.1686', '3.1686', '7.0000', '7.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78578, '2022-05-03', 1307, 74594, 4931, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.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 (78579, '2022-05-03', 8980, 74595, 4931, NULL, '1.0000', '9.5000', '9.5000', '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 (78580, '2022-05-03', 2315, 74596, 4931, 2735, '-289.0000', '0.3300', '0.3300', '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 (78581, '2022-05-03', 2315, 74596, 4931, NULL, '290.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-290.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78582, '2022-05-03', 9472, 74597, 4931, NULL, '1.0000', '11.5000', '11.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 (78583, '2022-05-03', 2966, 74598, 4932, 21823, '1.0000', '45.0000', '45.0000', '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 (78584, '2022-05-03', 2293, 74599, 4932, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78585, '2022-05-03', 2242, 74600, 4932, 49112, '1.0000', '0.6543', '0.6543', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78586, '2022-05-03', 2916, 74601, 4932, 53879, '1.0000', '14.4093', '14.4093', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78587, '2022-05-03', 7933, 74602, 4932, NULL, '1.0000', '0.4400', '0.4400', '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 (78588, '2022-05-03', 7947, 74603, 4932, NULL, '1.0000', '14.4400', '14.4400', '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 (78589, '2022-05-03', 2169, 74604, 4932, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78590, '2022-05-03', 9794, 74605, 4932, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78591, '2022-05-03', 2109, 74606, 4932, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78592, '2022-05-03', 2342, 74607, 4932, 52309, '5.0000', '1.9495', '1.9495', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78593, '2022-05-03', 7459, 74608, 4932, NULL, '2.0000', '2.2700', '2.2700', '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 (78594, '2022-05-03', 1736, 74609, 4932, 54580, '1.0000', '33.6490', '33.6490', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78595, '2022-05-03', 7915, 74610, 4932, 52088, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78596, '2022-05-03', 1671, 74611, 4932, 53275, '1.0000', '50.1205', '50.1205', '64.0000', '64.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78597, '2022-05-03', 1687, 74612, 4932, 54390, '1.0000', '13.9287', '13.9287', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78598, '2022-05-03', 9895, 74613, 4932, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78599, '2022-05-03', 2169, 74614, 4932, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78600, '2022-05-03', 9794, 74615, 4932, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '79.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78601, '2022-05-03', 2237, 74616, 4932, 54421, '2.0000', '1.3518', '1.3518', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78602, '2022-05-03', 7915, 74617, 4932, 52088, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78603, '2022-05-03', 1863, 74618, 4932, 54688, '2.0000', '1.3014', '1.3014', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78604, '2022-05-03', 2077, 74619, 4932, 5602, '1.0000', '3.0000', '3.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 (78605, '2022-05-03', 7385, 74620, 4932, 54646, '2.0000', '2.4776', '2.4776', '3.7000', '3.7000', '28.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78606, '2022-05-03', 9581, 74621, 4932, 40361, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78607, '2022-05-03', 3074, 74622, 4932, 40389, '2.0000', '2.0000', '2.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78608, '2022-05-03', 2302, 74623, 4932, 54589, '1.0000', '5.1949', '5.1949', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78609, '2022-05-03', 2091, 74624, 4932, 9530, '1.0000', '28.0000', '28.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 (78610, '2022-05-03', 3080, 74625, 4932, 27335, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78611, '2022-05-03', 2916, 74626, 4932, 53879, '1.0000', '14.4093', '14.4093', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78612, '2022-05-03', 9634, 74627, 4932, 40901, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78613, '2022-05-03', 1863, 74628, 4932, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78614, '2022-05-03', 7368, 74629, 4933, NULL, '1.0000', '14.7500', '14.7500', '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 (78615, '2022-05-03', 8517, 74630, 4934, 49638, '1.0000', '28.0200', '28.0200', '37.5000', '37.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 (78616, '2022-05-04', 1812, 74631, 4935, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78617, '2022-05-04', 2521, 74632, 4935, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78618, '2022-05-04', 2162, 74633, 4935, 23989, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '9.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 (78619, '2022-05-04', 3058, 74634, 4935, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78620, '2022-05-04', 9732, 74635, 4935, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78621, '2022-05-04', 1339, 74636, 4936, 13004, '-14.0000', '1.6012', '1.6012', '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 (78622, '2022-05-04', 1339, 74636, 4936, NULL, '15.0000', '1.6012', '1.6012', '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 (78623, '2022-05-04', 7954, 74637, 4936, 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 (78624, '2022-05-04', 7963, 74638, 4936, 33811, '1.0000', '14.7000', '14.7000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78625, '2022-05-04', 7509, 74639, 4936, NULL, '3.0000', '6.5000', '6.5000', '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 (78626, '2022-05-04', 1537, 74640, 4936, 12923, '-4.0000', '40.2700', '40.2700', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78627, '2022-05-04', 1537, 74640, 4936, NULL, '5.0000', '40.2700', '40.2700', '56.0000', '56.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 (78628, '2022-05-04', 8254, 74641, 4936, NULL, '1.0000', '25.9000', '25.9000', '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 (78629, '2022-05-04', 8814, 74642, 4936, NULL, '10.0000', '5.0000', '5.0000', '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 (78630, '2022-05-04', 9726, 74643, 4936, 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 (78631, '2022-05-04', 9729, 74644, 4936, NULL, '1.0000', '0.6200', '0.6200', '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 (78632, '2022-05-04', 8949, 74645, 4936, 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 (78633, '2022-05-04', 9178, 74646, 4936, 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 (78634, '2022-05-04', 2352, 74647, 4936, 3855, '-133.0000', '20.0000', '20.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 (78635, '2022-05-04', 2352, 74647, 4936, NULL, '136.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-136.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78636, '2022-05-04', 8425, 74648, 4936, 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 (78637, '2022-05-04', 8918, 74649, 4936, NULL, '1.0000', '1.0400', '1.0400', '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 (78638, '2022-05-04', 9734, 74650, 4936, NULL, '1.0000', '0.3200', '0.3200', '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 (78639, '2022-05-04', 7703, 74651, 4936, NULL, '1.0000', '22.9900', '22.9900', '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 (78640, '2022-05-04', 2315, 74652, 4936, 2735, '-290.0000', '0.3300', '0.3300', '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 (78641, '2022-05-04', 2315, 74652, 4936, NULL, '292.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-292.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78642, '2022-05-04', 8324, 74653, 4936, NULL, '1.0000', '3.0000', '3.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 (78643, '2022-05-04', 7666, 74654, 4936, 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 (78644, '2022-05-04', 7412, 74655, 4936, NULL, '1.0000', '1.5200', '1.5200', '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 (78645, '2022-05-04', 7711, 74656, 4936, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78646, '2022-05-04', 7753, 74657, 4936, NULL, '1.0000', '3.4000', '3.4000', '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 (78647, '2022-05-04', 8177, 74658, 4936, NULL, '1.0000', '12.5000', '12.5000', '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 (78648, '2022-05-04', 1867, 74659, 4936, NULL, '1.0000', '1.0500', '1.0500', '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 (78649, '2022-05-04', 9311, 74660, 4936, NULL, '1.0000', '6.6000', '6.6000', '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 (78650, '2022-05-04', 8744, 74661, 4936, NULL, '1.0000', '3.6600', '3.6600', '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 (78651, '2022-05-04', 2699, 74662, 4936, 12529, '-33.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 (78652, '2022-05-04', 2699, 74662, 4936, NULL, '34.0000', '3.0000', '3.0000', '4.5000', '4.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 (78653, '2022-05-04', 7819, 74663, 4936, 33817, '1.0000', '9.5000', '9.5000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78654, '2022-05-04', 7412, 74664, 4936, NULL, '1.0000', '1.5200', '1.5200', '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 (78655, '2022-05-04', 7857, 74665, 4936, NULL, '1.0000', '15.1300', '15.1300', '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 (78656, '2022-05-04', 8132, 74666, 4936, NULL, '1.0000', '9.8000', '9.8000', '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 (78657, '2022-05-04', 2414, 74667, 4936, 4620, '-20.0000', '3.4000', '3.4000', '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 (78658, '2022-05-04', 2414, 74667, 4936, NULL, '22.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78659, '2022-05-04', 9643, 74668, 4936, 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 (78660, '2022-05-04', 9382, 74669, 4936, NULL, '1.0000', '5.2000', '5.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 (78661, '2022-05-04', 7704, 74670, 4936, NULL, '1.0000', '0.4900', '0.4900', '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 (78662, '2022-05-04', 8924, 74671, 4936, NULL, '3.0000', '4.5000', '4.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 (78663, '2022-05-04', 9865, 74672, 4936, 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 (78664, '2022-05-04', 8984, 74673, 4936, NULL, '1.0000', '0.8700', '0.8700', '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 (78665, '2022-05-04', 9417, 74674, 4936, NULL, '1.0000', '4.0000', '4.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 (78666, '2022-05-04', 8596, 74675, 4936, 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 (78667, '2022-05-04', 8878, 74676, 4936, NULL, '1.0000', '6.6700', '6.6700', '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 (78668, '2022-05-04', 2887, 74677, 4936, NULL, '1.0000', '10.5000', '10.5000', '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 (78669, '2022-05-04', 7898, 74678, 4936, NULL, '1.0000', '2.2000', '2.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 (78670, '2022-05-04', 7411, 74679, 4937, NULL, '1.0000', '1.3500', '1.3500', '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 (78671, '2022-05-04', 2858, 74680, 4937, 17772, '-69.0000', '1.0000', '1.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 (78672, '2022-05-04', 2858, 74680, 4937, NULL, '70.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78673, '2022-05-04', 1696, 74681, 4937, 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 (78674, '2022-05-04', 7411, 74682, 4937, NULL, '2.0000', '1.3500', '1.3500', '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 (78675, '2022-05-04', 1533, 74683, 4937, 10381, '-18.0000', '2.5917', '2.5917', '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 (78676, '2022-05-04', 1533, 74683, 4937, NULL, '19.0000', '2.5917', '2.5917', '5.5000', '5.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 (78677, '2022-05-04', 7609, 74684, 4937, NULL, '1.0000', '4.3300', '4.3300', '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 (78678, '2022-05-04', 1871, 74685, 4937, 8223, '-162.0000', '24.5246', '24.5246', '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 (78679, '2022-05-04', 1871, 74685, 4937, NULL, '182.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-182.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78680, '2022-05-04', 2068, 74686, 4937, 5568, '-23.0000', '13.1000', '13.1000', '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 (78681, '2022-05-04', 2068, 74686, 4937, NULL, '24.0000', '13.1000', '13.1000', '16.0000', '16.0000', '-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 (78682, '2022-05-04', 2248, 74687, 4937, 2785, '-7.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 (78683, '2022-05-04', 2248, 74687, 4937, NULL, '8.0000', '2.5000', '2.5000', '3.5000', '3.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 (78684, '2022-05-04', 1450, 74688, 4937, 5570, '-12.0000', '61.1074', '61.1074', '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 (78685, '2022-05-04', 1450, 74688, 4937, NULL, '22.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78686, '2022-05-04', 9715, 74689, 4937, NULL, '2.0000', '9.4000', '9.4000', '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 (78687, '2022-05-04', 1533, 74690, 4937, 10381, '-18.0000', '2.5917', '2.5917', '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 (78688, '2022-05-04', 1533, 74690, 4937, NULL, '19.0000', '2.5917', '2.5917', '5.5000', '5.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 (78689, '2022-05-04', 7411, 74691, 4937, NULL, '1.0000', '1.3500', '1.3500', '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 (78690, '2022-05-04', 9649, 74692, 4937, NULL, '1.0000', '14.4100', '14.4100', '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 (78691, '2022-05-04', 2020, 74693, 4937, 10164, '-20.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 (78692, '2022-05-04', 2020, 74693, 4937, NULL, '21.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78693, '2022-05-04', 2059, 74694, 4937, 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 (78694, '2022-05-04', 9579, 74695, 4937, 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 (78695, '2022-05-04', 2169, 74696, 4938, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78696, '2022-05-04', 7318, 74697, 4938, 53664, '1.0000', '10.6148', '10.6148', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78697, '2022-05-04', 2506, 74698, 4938, NULL, '1.0000', '4.1493', '4.1493', '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 (78698, '2022-05-04', 8566, 74699, 4938, 54838, '1.0000', '18.0000', '18.0000', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78699, '2022-05-04', 2010, 74700, 4938, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78700, '2022-05-04', 1666, 74701, 4938, 51313, '1.0000', '2.7137', '2.7137', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78701, '2022-05-04', 2135, 74702, 4938, NULL, '1.0000', '-0.2588', '-0.2588', '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 (78702, '2022-05-04', 2020, 74703, 4938, NULL, '1.0000', '59.0820', '59.0820', '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 (78703, '2022-05-04', 1409, 74704, 4938, 54968, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78704, '2022-05-04', 1905, 74705, 4938, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78705, '2022-05-04', 7385, 74706, 4938, 54887, '3.0000', '4.9657', '4.9657', '3.7000', '3.7000', '100.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78706, '2022-05-04', 8299, 74707, 4939, NULL, '20.0000', '8.3000', '8.3000', '11.0000', '11.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 (78707, '2022-05-04', 7674, 74708, 4940, NULL, '4.0000', '1.3000', '1.3000', '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 (78708, '2022-05-04', 8101, 74709, 4940, NULL, '2.0000', '1.9700', '1.9700', '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 (78709, '2022-05-04', 9215, 74710, 4940, NULL, '2.0000', '1.6000', '1.6000', '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 (78710, '2022-05-04', 2315, 74711, 4940, 2735, '-292.0000', '0.3300', '0.3300', '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 (78711, '2022-05-04', 2315, 74711, 4940, NULL, '293.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-293.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78712, '2022-05-04', 8200, 74712, 4940, NULL, '1.0000', '6.2600', '6.2600', '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 (78713, '2022-05-04', 7674, 74713, 4940, 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 (78714, '2022-05-04', 1841, 74714, 4940, NULL, '2.0000', '142.5780', '142.5780', '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 (78715, '2022-05-04', 8040, 74715, 4940, NULL, '2.0000', '14.9000', '14.9000', '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 (78716, '2022-05-04', 7907, 74716, 4940, NULL, '1.0000', '12.0000', '12.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 (78717, '2022-05-04', 8979, 74717, 4940, NULL, '4.0000', '1.0000', '1.0000', '1.2000', '1.2000', '-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 (78718, '2022-05-04', 7589, 74718, 4940, 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 (78719, '2022-05-04', 7753, 74719, 4940, NULL, '1.0000', '3.4000', '3.4000', '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 (78720, '2022-05-04', 8457, 74720, 4940, NULL, '2.0000', '4.5000', '4.5000', '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 (78721, '2022-05-04', 9817, 74721, 4940, NULL, '2.0000', '3.9000', '3.9000', '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 (78722, '2022-05-04', 7472, 74722, 4940, 33824, '1.0000', '4.1000', '4.1000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78723, '2022-05-04', 2906, 74723, 4940, 18651, '-8.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 (78724, '2022-05-04', 2906, 74723, 4940, NULL, '9.0000', '2.6000', '2.6000', '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 (78725, '2022-05-04', 9747, 74724, 4940, NULL, '3.0000', '0.6500', '0.6500', '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 (78726, '2022-05-04', 9461, 74725, 4940, NULL, '1.0000', '1.6000', '1.6000', '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 (78727, '2022-05-04', 7694, 74726, 4940, NULL, '5.0000', '4.7900', '4.7900', '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 (78728, '2022-05-04', 9215, 74727, 4940, NULL, '1.0000', '1.6000', '1.6000', '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 (78729, '2022-05-04', 7324, 74728, 4940, NULL, '2.0000', '4.0000', '4.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 (78730, '2022-05-04', 8360, 74729, 4940, NULL, '1.0000', '3.2300', '3.2300', '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 (78731, '2022-05-04', 1760, 74730, 4940, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '10.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 (78732, '2022-05-04', 2822, 74731, 4940, 17166, '-7.0000', '2.7200', '2.7200', '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 (78733, '2022-05-04', 2822, 74731, 4940, NULL, '8.0000', '2.7200', '2.7200', '4.0000', '4.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 (78734, '2022-05-04', 1848, 74732, 4940, 14086, '-10.0000', '0.4200', '0.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 (78735, '2022-05-04', 1848, 74732, 4940, NULL, '20.0000', '0.4200', '0.4200', '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 (78736, '2022-05-04', 8085, 74733, 4940, NULL, '1.0000', '1.1700', '1.1700', '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 (78737, '2022-05-04', 7482, 74734, 4940, NULL, '1.0000', '3.0500', '3.0500', '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 (78738, '2022-05-04', 7547, 74735, 4940, NULL, '4.0000', '0.0000', '0.0000', '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 (78739, '2022-05-04', 9413, 74736, 4940, 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 (78740, '2022-05-04', 2251, 74737, 4940, 2788, '-20.0000', '10.9700', '10.9700', '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 (78741, '2022-05-04', 2251, 74737, 4940, NULL, '21.0000', '10.9700', '10.9700', '16.0000', '16.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78742, '2022-05-04', 7825, 74738, 4940, NULL, '1.0000', '6.5000', '6.5000', '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 (78743, '2022-05-04', 7560, 74739, 4940, NULL, '1.0000', '33.0200', '33.0200', '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 (78744, '2022-05-04', 2248, 74740, 4940, 2785, '-8.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 (78745, '2022-05-04', 2248, 74740, 4940, NULL, '9.0000', '2.5000', '2.5000', '3.5000', '3.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 (78746, '2022-05-04', 1665, 74741, 4940, 3235, '-103.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 (78747, '2022-05-04', 1665, 74741, 4940, NULL, '104.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-104.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78748, '2022-05-04', 2344, 74742, 4941, NULL, '1.0000', '17.6204', '17.6204', '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 (78749, '2022-05-04', 2769, 74743, 4941, 54561, '4.0000', '1.8925', '1.8925', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78750, '2022-05-04', 2283, 74744, 4941, 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 (78751, '2022-05-04', 1590, 74745, 4941, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78752, '2022-05-04', 2237, 74746, 4941, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78753, '2022-05-04', 1871, 74747, 4941, NULL, '20.0000', '0.4145', '0.4145', '3.7000', '3.7000', '-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 (78754, '2022-05-04', 2103, 74748, 4941, 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 (78755, '2022-05-04', 1863, 74749, 4941, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78756, '2022-05-04', 2315, 74750, 4941, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '183.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78757, '2022-05-04', 2948, 74751, 4941, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78758, '2022-05-04', 2416, 74752, 4941, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78759, '2022-05-04', 1667, 74753, 4941, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78760, '2022-05-04', 7482, 74754, 4941, NULL, '1.0000', '2.5019', '2.5019', '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 (78761, '2022-05-04', 1501, 74755, 4941, NULL, '1.0000', '1.8760', '1.8760', '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 (78762, '2022-05-04', 2454, 74756, 4941, NULL, '1.0000', '9.0840', '9.0840', '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 (78763, '2022-05-04', 1912, 74757, 4942, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78764, '2022-05-04', 1658, 74758, 4942, 13721, '1.0000', '45.3715', '45.3715', '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 (78765, '2022-05-04', 1839, 74759, 4942, NULL, '1.0000', '-11631.9088', '-11631.9088', '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 (78766, '2022-05-04', 7379, 74760, 4942, NULL, '1.0000', '12.5100', '12.5100', '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 (78767, '2022-05-04', 2302, 74761, 4942, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78768, '2022-05-04', 1313, 74762, 4942, 43274, '1.0000', '1.1388', '1.1388', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78769, '2022-05-04', 2223, 74763, 4943, NULL, '3.0000', '-1.8580', '-1.8580', '20.0000', '20.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 (78770, '2022-05-04', 2231, 74764, 4943, NULL, '1.0000', '-543.9392', '-543.9392', '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 (78771, '2022-05-04', 8773, 74765, 4943, NULL, '1.0000', '3.8140', '3.8140', '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 (78772, '2022-05-04', 9747, 74766, 4943, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78773, '2022-05-04', 1863, 74767, 4943, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78774, '2022-05-04', 1425, 74768, 4944, NULL, '1.0000', '5.1721', '5.1721', '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 (78775, '2022-05-04', 1863, 74769, 4944, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '65.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78776, '2022-05-04', 2163, 74770, 4944, NULL, '1.0000', '25.7500', '25.7500', '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 (78777, '2022-05-04', 2260, 74771, 4944, 54937, '1.0000', '4.5431', '4.5431', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78778, '2022-05-04', 2169, 74772, 4945, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78779, '2022-05-04', 1905, 74773, 4945, 54898, '2.0000', '0.5203', '0.5203', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78780, '2022-05-04', 1501, 74774, 4945, NULL, '1.0000', '1.8760', '1.8760', '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 (78781, '2022-05-04', 1666, 74775, 4945, 51313, '1.0000', '2.7137', '2.7137', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78782, '2022-05-04', 2237, 74776, 4945, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78783, '2022-05-04', 2384, 74777, 4946, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78784, '2022-05-04', 1590, 74778, 4946, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78785, '2022-05-04', 2416, 74779, 4946, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78786, '2022-05-04', 9834, 74780, 4946, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78787, '2022-05-04', 2657, 74781, 4946, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78788, '2022-05-04', 2251, 74782, 4947, 2788, '-21.0000', '10.9700', '10.9700', '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 (78789, '2022-05-04', 2251, 74782, 4947, NULL, '22.0000', '10.9700', '10.9700', '16.0000', '16.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78790, '2022-05-04', 7638, 74783, 4947, NULL, '1.0000', '12.0000', '12.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 (78791, '2022-05-04', 7524, 74784, 4947, NULL, '1.0000', '11.9500', '11.9500', '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 (78792, '2022-05-04', 7857, 74785, 4947, NULL, '1.0000', '15.1300', '15.1300', '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 (78793, '2022-05-04', 8074, 74786, 4947, NULL, '2.0000', '25.3504', '25.3504', '30.5000', '30.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 (78794, '2022-05-04', 7473, 74787, 4947, NULL, '1.0000', '0.5300', '0.5300', '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 (78795, '2022-05-04', 7917, 74788, 4947, NULL, '10.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (78796, '2022-05-04', 8200, 74789, 4947, NULL, '1.0000', '6.2600', '6.2600', '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 (78797, '2022-05-04', 2331, 74790, 4948, 53864, '1.0000', '12.5200', '12.5200', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78798, '2022-05-04', 1602, 74791, 4948, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78799, '2022-05-04', 2858, 74792, 4948, 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 (78800, '2022-05-04', 2393, 74793, 4948, 54993, '1.0000', '1.3098', '1.3098', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78801, '2022-05-04', 7741, 74794, 4948, 54662, '1.0000', '-0.2072', '-0.2072', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78802, '2022-05-04', 1667, 74795, 4948, 54634, '1.0000', '26.8586', '26.8586', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78803, '2022-05-04', 1783, 74796, 4948, 54661, '2.0000', '-2.0913', '-2.0913', '13.5000', '13.5000', '12.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78804, '2022-05-04', 1863, 74797, 4948, 54688, '5.0000', '1.3014', '1.3014', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78805, '2022-05-04', 1864, 74798, 4948, 49124, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78806, '2022-05-04', 2858, 74799, 4948, 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 (78807, '2022-05-04', 1432, 74800, 4948, 54681, '1.0000', '10.0341', '10.0341', '17.5000', '17.5000', '8.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78808, '2022-05-04', 1863, 74801, 4948, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78809, '2022-05-04', 1525, 74802, 4948, 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 (78810, '2022-05-04', 8517, 74803, 4948, 53271, '1.0000', '28.2488', '28.2488', '37.5000', '37.5000', '0.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78811, '2022-05-04', 9868, 74804, 4948, 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 (78812, '2022-05-04', 2497, 74805, 4948, 54618, '1.0000', '35.3614', '35.3614', '48.5000', '48.5000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78813, '2022-05-04', 1647, 74806, 4948, 54397, '1.0000', '5.4576', '5.4576', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78814, '2022-05-04', 7533, 74807, 4948, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78815, '2022-05-04', 1356, 74808, 4948, 46726, '1.0000', '58.8714', '58.8714', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78816, '2022-05-04', 1519, 74809, 4948, 49557, '1.0000', '3.3917', '3.3917', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78817, '2022-05-04', 1425, 74810, 4948, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78818, '2022-05-04', 2253, 74811, 4948, 54599, '1.0000', '13.4875', '13.4875', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78819, '2022-05-04', 7482, 74812, 4948, NULL, '1.0000', '3.0500', '3.0500', '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 (78820, '2022-05-04', 1804, 74813, 4948, 53692, '1.0000', '4.4470', '4.4470', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78821, '2022-05-04', 1667, 74814, 4948, 54634, '1.0000', '26.8586', '26.8586', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78822, '2022-05-04', 1908, 74815, 4948, 5510, '3.0000', '1.7500', '1.7500', '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 (78823, '2022-05-04', 1863, 74816, 4948, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78824, '2022-05-05', 7609, 74817, 4949, NULL, '1.0000', '4.3300', '4.3300', '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 (78825, '2022-05-05', 1945, 74818, 4949, 53663, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78826, '2022-05-05', 1912, 74819, 4949, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78827, '2022-05-05', 7318, 74820, 4949, 53664, '1.0000', '10.6148', '10.6148', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78828, '2022-05-05', 2020, 74821, 4949, NULL, '1.0000', '59.0820', '59.0820', '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 (78829, '2022-05-05', 1307, 74822, 4949, NULL, '1.0000', '-2.6794', '-2.6794', '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 (78830, '2022-05-05', 2262, 74823, 4949, 51483, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78831, '2022-05-05', 9695, 74824, 4949, 55031, '1.0000', '5.0794', '5.0794', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78832, '2022-05-05', 2169, 74825, 4949, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78833, '2022-05-05', 8133, 74826, 4949, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (78834, '2022-05-05', 1672, 74827, 4949, 53224, '5.0000', '4.0187', '4.0187', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78835, '2022-05-05', 1672, 74827, 4949, NULL, '5.0000', '4.0187', '4.0187', '5.5000', '5.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 (78836, '2022-05-05', 7742, 74828, 4949, 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 (78837, '2022-05-05', 1521, 74829, 4949, 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 (78838, '2022-05-05', 1783, 74830, 4949, 54548, '1.0000', '12.9050', '12.9050', '13.5000', '13.5000', '7.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78839, '2022-05-05', 9840, 74831, 4949, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78840, '2022-05-05', 1863, 74832, 4949, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78841, '2022-05-05', 1935, 74833, 4949, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78842, '2022-05-05', 1863, 74834, 4949, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78843, '2022-05-05', 2247, 74835, 4949, 42802, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78844, '2022-05-05', 9788, 74836, 4949, 54919, '2.0000', '1.5347', '1.5347', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78845, '2022-05-05', 1498, 74837, 4949, 52352, '1.0000', '0.4476', '0.4476', '0.6000', '0.6000', '41.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78846, '2022-05-05', 1340, 74838, 4949, 54554, '1.0000', '3.6111', '3.6111', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78847, '2022-05-05', 8497, 74839, 4950, NULL, '1.0000', '9.0000', '9.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 (78848, '2022-05-05', 7444, 74840, 4950, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78849, '2022-05-05', 7674, 74841, 4950, 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 (78850, '2022-05-05', 3018, 74842, 4950, 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 (78851, '2022-05-05', 2315, 74843, 4950, 2735, '-293.0000', '0.3300', '0.3300', '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 (78852, '2022-05-05', 2315, 74843, 4950, NULL, '294.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-294.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78853, '2022-05-05', 8674, 74844, 4950, NULL, '1.0000', '28.8900', '28.8900', '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 (78854, '2022-05-05', 8075, 74845, 4950, NULL, '1.0000', '3.0000', '3.0000', '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 (78855, '2022-05-05', 8308, 74846, 4950, NULL, '1.0000', '2.0800', '2.0800', '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 (78856, '2022-05-05', 2945, 74847, 4950, NULL, '1.0000', '9.0000', '9.0000', '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 (78857, '2022-05-05', 2070, 74848, 4950, NULL, '1.0000', '2.0000', '2.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 (78858, '2022-05-05', 7819, 74849, 4950, NULL, '1.0000', '9.5000', '9.5000', '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 (78859, '2022-05-05', 7354, 74850, 4950, NULL, '3.0000', '0.3700', '0.3700', '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 (78860, '2022-05-05', 7713, 74851, 4950, NULL, '2.0000', '0.3800', '0.3800', '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 (78861, '2022-05-05', 8539, 74852, 4950, NULL, '2.0000', '31.8000', '31.8000', '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 (78862, '2022-05-05', 2315, 74853, 4950, 2735, '-293.0000', '0.3300', '0.3300', '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 (78863, '2022-05-05', 2315, 74853, 4950, NULL, '295.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-295.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78864, '2022-05-05', 7641, 74854, 4950, NULL, '1.0000', '1.9000', '1.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 (78865, '2022-05-05', 7780, 74855, 4950, NULL, '1.0000', '11.6000', '11.6000', '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 (78866, '2022-05-05', 2315, 74856, 4950, 2735, '-293.0000', '0.3300', '0.3300', '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 (78867, '2022-05-05', 2315, 74856, 4950, NULL, '294.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-294.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78868, '2022-05-05', 9215, 74857, 4950, NULL, '1.0000', '1.6000', '1.6000', '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 (78869, '2022-05-05', 9382, 74858, 4950, NULL, '2.0000', '5.2000', '5.2000', '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 (78870, '2022-05-05', 7825, 74859, 4950, NULL, '1.0000', '6.5000', '6.5000', '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 (78871, '2022-05-05', 7674, 74860, 4950, 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 (78872, '2022-05-05', 8878, 74861, 4950, NULL, '2.0000', '6.6700', '6.6700', '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 (78873, '2022-05-05', 7780, 74862, 4950, NULL, '2.0000', '11.6000', '11.6000', '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 (78874, '2022-05-05', 9740, 74863, 4950, NULL, '1.0000', '0.6600', '0.6600', '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 (78875, '2022-05-05', 2352, 74864, 4950, 3855, '-136.0000', '20.0000', '20.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 (78876, '2022-05-05', 2352, 74864, 4950, NULL, '146.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-146.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78877, '2022-05-05', 7333, 74865, 4950, NULL, '2.0000', '13.5000', '13.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 (78878, '2022-05-05', 8360, 74866, 4950, NULL, '1.0000', '3.2300', '3.2300', '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 (78879, '2022-05-05', 8745, 74867, 4950, NULL, '1.0000', '8.0000', '8.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 (78880, '2022-05-05', 7947, 74868, 4950, NULL, '10.0000', '14.4400', '14.4400', '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 (78881, '2022-05-05', 7713, 74869, 4950, NULL, '3.0000', '0.3800', '0.3800', '0.6000', '0.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 (78882, '2022-05-05', 7674, 74870, 4950, 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 (78883, '2022-05-05', 8065, 74871, 4950, NULL, '1.0000', '32.0000', '32.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 (78884, '2022-05-05', 9090, 74872, 4950, 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 (78885, '2022-05-05', 8061, 74873, 4950, NULL, '1.0000', '6.5000', '6.5000', '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 (78886, '2022-05-05', 7862, 74874, 4950, NULL, '1.0000', '3.8500', '3.8500', '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 (78887, '2022-05-05', 7674, 74875, 4950, 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 (78888, '2022-05-05', 2242, 74876, 4950, 3059, '-10.0000', '0.4800', '0.4800', '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 (78889, '2022-05-05', 2242, 74876, 4950, NULL, '13.0000', '0.4800', '0.4800', '1.5000', '1.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 (78890, '2022-05-05', 9740, 74877, 4950, NULL, '5.0000', '0.6600', '0.6600', '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 (78891, '2022-05-05', 8202, 74878, 4950, NULL, '1.0000', '1.6600', '1.6600', '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 (78892, '2022-05-05', 8186, 74879, 4950, NULL, '2.0000', '1.0800', '1.0800', '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 (78893, '2022-05-05', 1307, 74880, 4951, NULL, '1.0000', '-2.6794', '-2.6794', '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 (78894, '2022-05-05', 9740, 74881, 4951, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78895, '2022-05-05', 1863, 74882, 4951, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78896, '2022-05-05', 1935, 74883, 4951, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78897, '2022-05-05', 2506, 74884, 4951, NULL, '1.0000', '4.1493', '4.1493', '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 (78898, '2022-05-05', 9891, 74885, 4951, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78899, '2022-05-05', 2302, 74886, 4951, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78900, '2022-05-05', 1840, 74887, 4951, NULL, '2.0000', '0.2400', '0.2400', '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 (78901, '2022-05-05', 7328, 74888, 4951, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78902, '2022-05-05', 1666, 74889, 4951, 51313, '2.0000', '2.7137', '2.7137', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78903, '2022-05-05', 1846, 74890, 4952, 12032, '-14.0000', '12.0000', '12.0000', '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 (78904, '2022-05-05', 1846, 74890, 4952, NULL, '15.0000', '12.0000', '12.0000', '16.5000', '16.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 (78905, '2022-05-05', 1410, 74891, 4952, NULL, '1.0000', '2.2000', '2.2000', '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 (78906, '2022-05-05', 1666, 74892, 4952, 3236, '-27.0000', '2.7100', '2.7100', '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 (78907, '2022-05-05', 1666, 74892, 4952, NULL, '28.0000', '2.7100', '2.7100', '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 (78908, '2022-05-05', 2233, 74893, 4952, 2777, '-28.0000', '19.0200', '19.0200', '29.5000', '29.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 (78909, '2022-05-05', 2233, 74893, 4952, NULL, '29.0000', '19.0200', '19.0200', '29.5000', '29.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78910, '2022-05-05', 1620, 74894, 4952, 8955, '-46.0000', '408.8259', '408.8259', '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 (78911, '2022-05-05', 1620, 74894, 4952, NULL, '49.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78912, '2022-05-05', 1326, 74895, 4952, 20662, '1.0000', '2.7762', '2.7762', '6.0000', '6.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 (78913, '2022-05-05', 2916, 74896, 4952, 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 (78914, '2022-05-05', 9734, 74897, 4952, NULL, '2.0000', '0.3200', '0.3200', '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 (78915, '2022-05-05', 7376, 74898, 4952, NULL, '1.0000', '141.7100', '141.7100', '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 (78916, '2022-05-05', 1493, 74899, 4952, 9747, '-21.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 (78917, '2022-05-05', 1493, 74899, 4952, NULL, '22.0000', '1.5425', '1.5425', '3.0000', '3.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78918, '2022-05-05', 1665, 74900, 4952, 3235, '-104.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 (78919, '2022-05-05', 1665, 74900, 4952, NULL, '105.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78920, '2022-05-05', 1888, 74901, 4952, 14663, '-5.0000', '134.8400', '134.8400', '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 (78921, '2022-05-05', 1888, 74901, 4952, NULL, '6.0000', '134.8400', '134.8400', '25.0000', '25.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 (78922, '2022-05-05', 1843, 74902, 4952, 16249, '-16.0000', '4.3000', '4.3000', '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 (78923, '2022-05-05', 1843, 74902, 4952, NULL, '30.0000', '4.3000', '4.3000', '6.5000', '6.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 (78924, '2022-05-05', 1533, 74903, 4952, 10381, '-20.0000', '2.5917', '2.5917', '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 (78925, '2022-05-05', 1533, 74903, 4952, NULL, '21.0000', '2.5917', '2.5917', '5.5000', '5.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78926, '2022-05-05', 9632, 74904, 4952, NULL, '1.0000', '37.3700', '37.3700', '49.5000', '49.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78927, '2022-05-05', 2516, 74905, 4952, 5916, '-2.0000', '9.0000', '9.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78928, '2022-05-05', 2516, 74905, 4952, NULL, '3.0000', '9.0000', '9.0000', '14.0000', '14.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 (78929, '2022-05-05', 9715, 74906, 4952, NULL, '1.0000', '9.4000', '9.4000', '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 (78930, '2022-05-05', 2821, 74907, 4952, 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 (78931, '2022-05-05', 1482, 74908, 4952, 1443, '-1.0000', '12.9900', '12.9900', '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 (78932, '2022-05-05', 1482, 74908, 4952, NULL, '2.0000', '12.9900', '12.9900', '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 (78933, '2022-05-05', 1328, 74909, 4952, NULL, '1.0000', '3.1500', '3.1500', '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 (78934, '2022-05-05', 1504, 74910, 4952, NULL, '10.0000', '1.5000', '1.5000', '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 (78935, '2022-05-05', 8395, 74911, 4952, NULL, '2.0000', '0.9700', '0.9700', '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 (78936, '2022-05-05', 2169, 74912, 4952, 10737, '-117.0000', '3.8397', '3.8397', '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 (78937, '2022-05-05', 2169, 74912, 4952, NULL, '119.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-119.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78938, '2022-05-05', 7339, 74913, 4952, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (78939, '2022-05-05', 7411, 74914, 4952, NULL, '1.0000', '1.3500', '1.3500', '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 (78940, '2022-05-05', 9747, 74915, 4952, NULL, '1.0000', '0.6500', '0.6500', '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 (78941, '2022-05-05', 1666, 74916, 4952, 3236, '-27.0000', '2.7100', '2.7100', '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 (78942, '2022-05-05', 1666, 74916, 4952, NULL, '28.0000', '2.7100', '2.7100', '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 (78943, '2022-05-05', 9732, 74917, 4952, 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 (78944, '2022-05-05', 1839, 74918, 4952, 8734, '-30.0000', '6.1500', '6.1500', '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 (78945, '2022-05-05', 1839, 74918, 4952, NULL, '31.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (78946, '2022-05-05', 3029, 74919, 4953, NULL, '1.0000', '-204.9360', '-204.9360', '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 (78947, '2022-05-05', 7483, 74920, 4953, 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 (78948, '2022-05-05', 2315, 74921, 4953, 54915, '5.0000', '0.7701', '0.7701', '1.0000', '1.0000', '178.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78949, '2022-05-05', 1493, 74922, 4953, NULL, '1.0000', '5.2600', '5.2600', '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 (78950, '2022-05-05', 2315, 74923, 4953, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '182.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78951, '2022-05-05', 9743, 74924, 4953, 51198, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78952, '2022-05-05', 7411, 74925, 4953, NULL, '1.0000', '1.3013', '1.3013', '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 (78953, '2022-05-05', 2379, 74926, 4953, NULL, '1.0000', '0.2954', '0.2954', '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 (78954, '2022-05-05', 1845, 74927, 4953, NULL, '1.0000', '15.2605', '15.2605', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78955, '2022-05-05', 1805, 74928, 4953, NULL, '1.0000', '40.8080', '40.8080', '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 (78956, '2022-05-05', 1425, 74929, 4953, NULL, '1.0000', '5.1721', '5.1721', '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 (78957, '2022-05-05', 8133, 74930, 4953, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (78958, '2022-05-05', 1307, 74931, 4953, NULL, '1.0000', '-2.6794', '-2.6794', '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 (78959, '2022-05-05', 9831, 74932, 4953, 55036, '1.0000', '1.7103', '1.7103', '3.0000', '3.0000', '49.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78960, '2022-05-05', 8277, 74933, 4953, NULL, '1.0000', '6.5700', '6.5700', '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 (78961, '2022-05-05', 2673, 74934, 4953, 51496, '1.0000', '15.1250', '15.1250', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78962, '2022-05-05', 7411, 74935, 4953, NULL, '1.0000', '1.3013', '1.3013', '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 (78963, '2022-05-05', 9831, 74936, 4953, 55036, '1.0000', '1.7103', '1.7103', '3.0000', '3.0000', '49.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78964, '2022-05-05', 7411, 74937, 4953, NULL, '1.0000', '1.3013', '1.3013', '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 (78965, '2022-05-05', 2289, 74938, 4953, NULL, '2.0000', '0.1400', '0.1400', '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 (78966, '2022-05-05', 7328, 74939, 4953, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78967, '2022-05-05', 9850, 74940, 4953, NULL, '1.0000', '17.6000', '17.6000', '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 (78968, '2022-05-05', 1687, 74941, 4953, 52178, '1.0000', '12.6576', '12.6576', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78969, '2022-05-05', 1602, 74942, 4953, 54954, '1.0000', '6.9125', '6.9125', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78970, '2022-05-05', 2237, 74943, 4953, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78971, '2022-05-05', 1306, 74944, 4953, 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 (78972, '2022-05-05', 2821, 74945, 4953, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78973, '2022-05-05', 1501, 74946, 4953, NULL, '1.0000', '1.8760', '1.8760', '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 (78974, '2022-05-05', 1690, 74947, 4953, 54961, '1.0000', '8.6038', '8.6038', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78975, '2022-05-05', 9761, 74948, 4953, 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 (78976, '2022-05-05', 2169, 74949, 4953, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78977, '2022-05-05', 9747, 74950, 4953, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78978, '2022-05-05', 1590, 74951, 4953, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78979, '2022-05-05', 9743, 74952, 4953, 51198, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78980, '2022-05-05', 7482, 74953, 4953, NULL, '1.0000', '2.5019', '2.5019', '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 (78981, '2022-05-05', 9840, 74954, 4953, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78982, '2022-05-05', 2169, 74955, 4953, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78983, '2022-05-05', 2299, 74956, 4953, 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 (78984, '2022-05-05', 2284, 74957, 4953, 48889, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78985, '2022-05-05', 2543, 74958, 4953, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78986, '2022-05-05', 9831, 74959, 4953, 55036, '4.0000', '1.7103', '1.7103', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78987, '2022-05-05', 1846, 74960, 4953, NULL, '1.0000', '-298.6500', '-298.6500', '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 (78988, '2022-05-05', 2109, 74961, 4953, NULL, '1.0000', '0.0413', '0.0413', '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 (78989, '2022-05-05', 8208, 74962, 4953, NULL, '1.0000', '33.0000', '33.0000', '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 (78990, '2022-05-05', 1781, 74963, 4953, NULL, '1.0000', '5.3500', '5.3500', '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 (78991, '2022-05-05', 1326, 74964, 4953, NULL, '1.0000', '4.5325', '4.5325', '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 (78992, '2022-05-05', 8746, 74965, 4953, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78993, '2022-05-05', 9832, 74966, 4953, 55035, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78994, '2022-05-05', 9830, 74967, 4953, 55034, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78995, '2022-05-05', 1826, 74968, 4953, 19385, '9.0000', '0.2100', '0.2100', '0.5000', '0.5000', '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 (78996, '2022-05-05', 1912, 74969, 4953, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78997, '2022-05-05', 9430, 74970, 4953, 51650, '1.0000', '40.9000', '40.9000', '54.0000', '54.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78998, '2022-05-05', 7385, 74971, 4953, 54887, '2.0000', '4.9657', '4.9657', '3.7000', '3.7000', '98.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78999, '2022-05-05', 1628, 74972, 4953, 54550, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79000, '2022-05-05', 1982, 74973, 4953, 53417, '1.0000', '-2.3133', '-2.3133', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79001, '2022-05-05', 1812, 74974, 4953, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79002, '2022-05-05', 7459, 74975, 4953, NULL, '1.0000', '-15.3118', '-15.3118', '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 (79003, '2022-05-05', 1856, 74976, 4953, NULL, '2.0000', '20.0009', '20.0009', '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 (79004, '2022-05-05', 7524, 74977, 4953, NULL, '1.0000', '11.9500', '11.9500', '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 (79005, '2022-05-05', 1311, 74978, 4953, 52210, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79006, '2022-05-05', 7385, 74979, 4953, 54887, '2.0000', '4.9657', '4.9657', '3.7000', '3.7000', '98.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79007, '2022-05-05', 8740, 74980, 4953, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79008, '2022-05-05', 9856, 74981, 4953, 54959, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79009, '2022-05-05', 2315, 74982, 4953, 54915, '4.0000', '0.7701', '0.7701', '1.0000', '1.0000', '179.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79010, '2022-05-05', 7741, 74983, 4953, NULL, '1.0000', '-6.8417', '-6.8417', '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 (79011, '2022-05-05', 2567, 74984, 4953, 53635, '1.0000', '32.8217', '32.8217', '46.0000', '46.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79012, '2022-05-05', 7933, 74985, 4953, NULL, '1.0000', '-0.1222', '-0.1222', '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 (79013, '2022-05-05', 9732, 74986, 4953, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79014, '2022-05-05', 1499, 74987, 4953, 54918, '3.0000', '0.3993', '0.3993', '0.6000', '0.6000', '71.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79015, '2022-05-05', 9754, 74988, 4953, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79016, '2022-05-05', 9830, 74989, 4953, 55034, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79017, '2022-05-05', 1425, 74990, 4953, NULL, '1.0000', '5.1721', '5.1721', '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 (79018, '2022-05-05', 9830, 74991, 4953, 55034, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79019, '2022-05-05', 7749, 74992, 4953, NULL, '1.0000', '20.0200', '20.0200', '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 (79020, '2022-05-05', 2275, 74993, 4953, 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 (79021, '2022-05-05', 2327, 74994, 4953, 49257, '1.0000', '3.8469', '3.8469', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79022, '2022-05-05', 1602, 74995, 4953, 54954, '1.0000', '6.9125', '6.9125', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79023, '2022-05-05', 8308, 74996, 4953, NULL, '1.0000', '11.0000', '11.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 (79024, '2022-05-05', 7411, 74997, 4953, NULL, '2.0000', '1.3013', '1.3013', '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 (79025, '2022-05-05', 9841, 74998, 4953, NULL, '1.0000', '5.1900', '5.1900', '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 (79026, '2022-05-05', 9754, 74999, 4953, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79027, '2022-05-05', 9105, 75000, 4953, NULL, '1.0000', '-0.9200', '-0.9200', '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 (79028, '2022-05-05', 2289, 75001, 4954, 2949, '-129.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 (79029, '2022-05-05', 2289, 75001, 4954, NULL, '131.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-131.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79030, '2022-05-05', 7674, 75002, 4954, 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 (79031, '2022-05-05', 8457, 75003, 4954, NULL, '1.0000', '4.5000', '4.5000', '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 (79032, '2022-05-05', 7715, 75004, 4954, NULL, '1.0000', '1.8900', '1.8900', '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 (79033, '2022-05-05', 7864, 75005, 4954, NULL, '2.0000', '19.5100', '19.5100', '26.5000', '26.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 (79034, '2022-05-05', 8810, 75006, 4954, NULL, '2.0000', '1.6000', '1.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 (79035, '2022-05-05', 7411, 75007, 4954, NULL, '2.0000', '1.3500', '1.3500', '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 (79036, '2022-05-05', 7350, 75008, 4954, NULL, '1.0000', '30.4000', '30.4000', '40.5000', '40.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79037, '2022-05-05', 9215, 75009, 4954, NULL, '1.0000', '1.6000', '1.6000', '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 (79038, '2022-05-05', 2315, 75010, 4954, 2735, '-297.0000', '0.3300', '0.3300', '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 (79039, '2022-05-05', 2315, 75010, 4954, NULL, '300.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-300.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79040, '2022-05-05', 8352, 75011, 4954, 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 (79041, '2022-05-05', 1807, 75012, 4954, 18924, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '23.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 (79042, '2022-05-05', 9865, 75013, 4954, 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 (79043, '2022-05-05', 1532, 75014, 4954, 22261, '4.0000', '0.8000', '0.8000', '2.0000', '2.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 (79044, '2022-05-05', 7562, 75015, 4954, NULL, '1.0000', '5.5300', '5.5300', '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 (79045, '2022-05-05', 7640, 75016, 4954, 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 (79046, '2022-05-05', 8200, 75017, 4954, NULL, '1.0000', '6.2600', '6.2600', '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 (79047, '2022-05-05', 1420, 75018, 4954, 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 (79048, '2022-05-05', 8547, 75019, 4954, NULL, '1.0000', '3.3500', '3.3500', '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 (79049, '2022-05-05', 8363, 75020, 4954, NULL, '2.0000', '38.0000', '38.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 (79050, '2022-05-05', 7753, 75021, 4954, NULL, '1.0000', '3.4000', '3.4000', '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 (79051, '2022-05-05', 1501, 75022, 4954, NULL, '1.0000', '2.0500', '2.0500', '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 (79052, '2022-05-05', 2557, 75023, 4954, 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 (79053, '2022-05-05', 8415, 75024, 4954, NULL, '3.0000', '3.2500', '3.2500', '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 (79054, '2022-05-05', 7967, 75025, 4954, NULL, '1.0000', '7.0000', '7.0000', '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 (79055, '2022-05-05', 9413, 75026, 4954, 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 (79056, '2022-05-05', 8454, 75027, 4954, NULL, '1.0000', '4.1500', '4.1500', '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 (79057, '2022-05-05', 7674, 75028, 4954, 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 (79058, '2022-05-05', 2315, 75029, 4954, 2735, '-297.0000', '0.3300', '0.3300', '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 (79059, '2022-05-05', 2315, 75029, 4954, NULL, '298.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-298.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79060, '2022-05-05', 7709, 75030, 4954, NULL, '2.0000', '3.5000', '3.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 (79061, '2022-05-05', 9891, 75031, 4954, NULL, '1.0000', '17.4000', '17.4000', '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 (79062, '2022-05-05', 7514, 75032, 4954, NULL, '1.0000', '2.2500', '2.2500', '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 (79063, '2022-05-05', 9001, 75033, 4954, NULL, '1.0000', '23.5000', '23.5000', '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 (79064, '2022-05-05', 8756, 75034, 4954, 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 (79065, '2022-05-05', 7524, 75035, 4954, NULL, '2.0000', '11.9500', '11.9500', '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 (79066, '2022-05-05', 8079, 75036, 4954, NULL, '1.0000', '14.3600', '14.3600', '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 (79067, '2022-05-05', 8000, 75037, 4954, NULL, '1.0000', '6.8400', '6.8400', '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 (79068, '2022-05-05', 2506, 75038, 4954, 16244, '-11.0000', '3.4900', '3.4900', '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 (79069, '2022-05-05', 2506, 75038, 4954, NULL, '13.0000', '3.4900', '3.4900', '6.5000', '6.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 (79070, '2022-05-05', 8698, 75039, 4954, NULL, '1.0000', '2.0000', '2.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 (79071, '2022-05-05', 7641, 75040, 4954, NULL, '1.0000', '1.9000', '1.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 (79072, '2022-05-05', 7560, 75041, 4954, NULL, '1.0000', '33.0200', '33.0200', '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 (79073, '2022-05-05', 7925, 75042, 4954, NULL, '1.0000', '8.3000', '8.3000', '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 (79074, '2022-05-05', 2962, 75043, 4954, 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 (79075, '2022-05-05', 9794, 75044, 4954, NULL, '1.0000', '1.0800', '1.0800', '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 (79076, '2022-05-05', 7524, 75045, 4954, NULL, '1.0000', '11.9500', '11.9500', '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 (79077, '2022-05-05', 7630, 75046, 4954, NULL, '1.0000', '10.0000', '10.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 (79078, '2022-05-05', 7316, 75047, 4954, NULL, '2.0000', '9.5500', '9.5500', '1.3000', '1.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79079, '2022-05-05', 7532, 75048, 4954, NULL, '1.0000', '20.6000', '20.6000', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79080, '2022-05-05', 7444, 75049, 4954, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79081, '2022-05-05', 8714, 75050, 4954, NULL, '1.0000', '5.2100', '5.2100', '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 (79082, '2022-05-05', 9776, 75051, 4954, NULL, '1.0000', '7.6700', '7.6700', '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 (79083, '2022-05-05', 9734, 75052, 4954, NULL, '3.0000', '0.3200', '0.3200', '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 (79084, '2022-05-05', 8186, 75053, 4954, NULL, '3.0000', '1.0800', '1.0800', '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 (79085, '2022-05-05', 8539, 75054, 4954, NULL, '1.0000', '31.8000', '31.8000', '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 (79086, '2022-05-05', 2283, 75055, 4954, 2943, '-15.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 (79087, '2022-05-05', 2283, 75055, 4954, NULL, '16.0000', '1.4300', '1.4300', '2.0000', '2.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 (79088, '2022-05-05', 7521, 75056, 4954, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79089, '2022-05-05', 9565, 75057, 4954, NULL, '2.0000', '4.5000', '4.5000', '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 (79090, '2022-05-05', 9311, 75058, 4954, NULL, '1.0000', '6.6000', '6.6000', '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 (79091, '2022-05-05', 7509, 75059, 4954, 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 (79092, '2022-05-05', 1501, 75060, 4955, NULL, '1.0000', '1.8760', '1.8760', '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 (79093, '2022-05-05', 9388, 75061, 4955, 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 (79094, '2022-05-05', 2285, 75062, 4955, NULL, '1.0000', '34.5905', '34.5905', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79095, '2022-05-05', 1667, 75063, 4955, 51331, '2.0000', '10.5358', '10.5358', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79096, '2022-05-05', 9105, 75064, 4955, NULL, '1.0000', '-0.9200', '-0.9200', '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 (79097, '2022-05-05', 7886, 75065, 4955, NULL, '1.0000', '14.5000', '14.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 (79098, '2022-05-05', 2416, 75066, 4955, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79099, '2022-05-05', 1590, 75067, 4955, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79100, '2022-05-05', 8207, 75068, 4955, NULL, '1.0000', '0.0000', '0.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 (79101, '2022-05-05', 2777, 75069, 4955, 54899, '1.0000', '3.5465', '3.5465', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79102, '2022-05-05', 7741, 75070, 4955, NULL, '1.0000', '-6.8417', '-6.8417', '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 (79103, '2022-05-05', 9763, 75071, 4955, 54519, '1.0000', '2.3080', '2.3080', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79104, '2022-05-05', 7385, 75072, 4955, 54887, '2.0000', '4.9657', '4.9657', '3.7000', '3.7000', '94.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79105, '2022-05-05', 9794, 75073, 4955, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79106, '2022-05-05', 9830, 75074, 4955, 55034, '3.0000', '1.9000', '1.9000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79107, '2022-05-05', 8740, 75075, 4955, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79108, '2022-05-05', 2242, 75076, 4955, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79109, '2022-05-05', 1665, 75077, 4955, 51312, '12.0000', '1.1432', '1.1432', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79110, '2022-05-05', 9834, 75078, 4955, 54879, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79111, '2022-05-05', 9737, 75079, 4955, NULL, '1.0000', '7.3000', '7.3000', '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 (79112, '2022-05-05', 9480, 75080, 4955, 44436, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79113, '2022-05-05', 9754, 75081, 4955, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79114, '2022-05-05', 2315, 75082, 4955, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '170.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79115, '2022-05-05', 9794, 75083, 4955, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '96.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79116, '2022-05-05', 1871, 75084, 4955, NULL, '10.0000', '0.4145', '0.4145', '3.7000', '3.7000', '-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 (79117, '2022-05-05', 3058, 75085, 4955, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79118, '2022-05-05', 2821, 75086, 4955, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79119, '2022-05-05', 7524, 75087, 4956, NULL, '2.0000', '11.9500', '11.9500', '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 (79120, '2022-05-05', 7411, 75088, 4957, NULL, '1.0000', '1.3013', '1.3013', '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 (79121, '2022-05-05', 8085, 75089, 4957, NULL, '3.0000', '14.0000', '14.0000', '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 (79122, '2022-05-05', 7886, 75090, 4957, NULL, '1.0000', '14.5000', '14.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 (79123, '2022-05-05', 2352, 75091, 4957, NULL, '3.0000', '126.2588', '126.2588', '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 (79124, '2022-05-05', 7514, 75092, 4957, NULL, '1.0000', '2.2500', '2.2500', '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 (79125, '2022-05-05', 9275, 75093, 4957, NULL, '1.0000', '6.3000', '6.3000', '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 (79126, '2022-05-05', 9747, 75094, 4957, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79127, '2022-05-05', 7411, 75095, 4957, NULL, '1.0000', '1.3013', '1.3013', '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 (79128, '2022-05-05', 9754, 75096, 4957, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79129, '2022-05-05', 8810, 75097, 4957, NULL, '1.0000', '1.9200', '1.9200', '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 (79130, '2022-05-05', 2242, 75098, 4957, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79131, '2022-05-05', 2315, 75099, 4958, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '169.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79132, '2022-05-05', 2242, 75100, 4958, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79133, '2022-05-05', 1602, 75101, 4959, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79134, '2022-05-05', 9895, 75102, 4959, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '27.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79135, '2022-05-05', 2088, 75103, 4959, 9570, '-1.0000', '1.4388', '1.4388', '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 (79136, '2022-05-05', 2088, 75103, 4959, 9570, '-1.0000', '1.4388', '1.4388', '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 (79137, '2022-05-05', 2088, 75103, 4959, 2444, '2.0000', '1.4388', '1.4388', '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 (79138, '2022-05-05', 1812, 75104, 4959, 54683, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79139, '2022-05-05', 1889, 75105, 4959, 5495, '3.0000', '1.3000', '1.3000', '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 (79140, '2022-05-05', 1863, 75106, 4959, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79141, '2022-05-05', 2169, 75107, 4959, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79142, '2022-05-05', 1864, 75108, 4959, 49124, '1.0000', '6.8500', '6.8500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79143, '2022-05-05', 1935, 75109, 4959, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79144, '2022-05-05', 7672, 75110, 4959, NULL, '1.0000', '1.0200', '1.0200', '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 (79145, '2022-05-05', 7719, 75111, 4959, 42937, '1.0000', '6.0000', '6.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79146, '2022-05-05', 1704, 75112, 4959, 52287, '1.0000', '-1889.8857', '-1889.8857', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79147, '2022-05-05', 2169, 75113, 4959, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79148, '2022-05-05', 1771, 75114, 4959, 21570, '1.0000', '3.3900', '3.3900', '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 (79149, '2022-05-05', 1536, 75115, 4959, 54400, '10.0000', '71.9021', '71.9021', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79150, '2022-05-05', 7831, 75116, 4959, NULL, '1.0000', '22.5000', '22.5000', '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 (79151, '2022-05-05', 2669, 75117, 4959, 46611, '1.0000', '25.1873', '25.1873', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79152, '2022-05-05', 1788, 75118, 4959, 49038, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79153, '2022-05-05', 2233, 75119, 4959, 54606, '1.0000', '21.3161', '21.3161', '29.5000', '29.5000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79154, '2022-05-05', 1555, 75120, 4959, 52276, '1.0000', '66.7624', '66.7624', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79155, '2022-05-05', 1840, 75121, 4959, 54425, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '20.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79156, '2022-05-05', 1841, 75122, 4959, 54426, '2.0000', '0.0701', '0.0701', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79157, '2022-05-05', 1602, 75123, 4959, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79158, '2022-05-05', 1610, 75124, 4959, 49549, '1.0000', '32.6060', '32.6060', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79159, '2022-05-05', 9822, 75125, 4959, NULL, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79160, '2022-05-05', 9727, 75126, 4959, 50886, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79161, '2022-05-05', 2302, 75127, 4959, 54589, '1.0000', '5.1949', '5.1949', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79162, '2022-05-05', 2263, 75128, 4959, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79163, '2022-05-05', 9731, 75129, 4959, 52299, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79164, '2022-05-05', 2327, 75130, 4959, 45068, '2.0000', '16.5543', '16.5543', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79165, '2022-05-05', 1807, 75131, 4959, NULL, '1.0000', '5.3000', '5.3000', '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 (79166, '2022-05-05', 9868, 75132, 4959, 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 (79167, '2022-05-05', 2312, 75133, 4959, 2563, '1.0000', '20.0000', '20.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 (79168, '2022-05-05', 9731, 75134, 4959, 52299, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79169, '2022-05-05', 1820, 75135, 4959, 4956, '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 (79170, '2022-05-05', 2229, 75136, 4959, 54362, '1.0000', '25.2188', '25.2188', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79171, '2022-05-05', 9727, 75137, 4959, 50886, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79172, '2022-05-05', 1407, 75138, 4959, 50901, '1.0000', '17.5910', '17.5910', '29.5000', '29.5000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79173, '2022-05-05', 9489, 75139, 4959, 32631, '1.0000', '23.0000', '23.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79174, '2022-05-05', 9750, 75140, 4959, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '36.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79175, '2022-05-06', 9845, 75141, 4960, 54675, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79176, '2022-05-06', 1787, 75142, 4960, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '98.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79177, '2022-05-06', 1837, 75143, 4960, 54424, '1.0000', '0.5024', '0.5024', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79178, '2022-05-06', 1314, 75144, 4960, 21584, '1.0000', '1.2000', '1.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 (79179, '2022-05-06', 2965, 75145, 4960, 54343, '2.0000', '4.2925', '4.2925', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79180, '2022-05-06', 9578, 75146, 4960, 54431, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79181, '2022-05-06', 2167, 75147, 4960, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79182, '2022-05-06', 2416, 75148, 4960, 54435, '1.0000', '1.2129', '1.2129', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79183, '2022-05-06', 2286, 75149, 4960, 54657, '2.0000', '4.6654', '4.6654', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79184, '2022-05-06', 9878, 75150, 4960, 54433, '1.0000', '8.1400', '8.1400', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79185, '2022-05-06', 1410, 75151, 4960, 54633, '1.0000', '2.7207', '2.7207', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79186, '2022-05-06', 1912, 75152, 4961, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79187, '2022-05-06', 1908, 75153, 4961, 5510, '1.0000', '1.7500', '1.7500', '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 (79188, '2022-05-06', 2315, 75154, 4961, 3069, '1.0000', '0.3300', '0.3300', '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 (79189, '2022-05-06', 2910, 75155, 4961, NULL, '1.0000', '10.0000', '10.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 (79190, '2022-05-06', 1637, 75156, 4962, 49553, '1.0000', '300.2450', '300.2450', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79191, '2022-05-06', 9729, 75157, 4963, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79192, '2022-05-06', 9715, 75158, 4963, 54881, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79193, '2022-05-06', 9747, 75159, 4963, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79194, '2022-05-06', 1846, 75160, 4963, NULL, '1.0000', '-298.6500', '-298.6500', '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 (79195, '2022-05-06', 9649, 75161, 4963, NULL, '1.0000', '14.2780', '14.2780', '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 (79196, '2022-05-06', 9794, 75162, 4963, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '94.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79197, '2022-05-06', 2293, 75163, 4963, NULL, '3.0000', '10.2680', '10.2680', '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 (79198, '2022-05-06', 1941, 75164, 4963, 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 (79199, '2022-05-06', 9844, 75165, 4963, 51397, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79200, '2022-05-06', 1837, 75166, 4963, NULL, '1.0000', '4.1395', '4.1395', '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 (79201, '2022-05-06', 7507, 75167, 4963, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79202, '2022-05-06', 1533, 75168, 4963, 54920, '1.0000', '3.4242', '3.4242', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79203, '2022-05-06', 9834, 75169, 4963, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79204, '2022-05-06', 1349, 75170, 4963, 52172, '1.0000', '22.8600', '22.8600', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79205, '2022-05-06', 1818, 75171, 4963, 51648, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79206, '2022-05-06', 7507, 75172, 4963, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79207, '2022-05-06', 2293, 75173, 4963, NULL, '3.0000', '10.2680', '10.2680', '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 (79208, '2022-05-06', 1533, 75174, 4963, 54920, '1.0000', '3.4242', '3.4242', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79209, '2022-05-06', 1699, 75175, 4963, NULL, '1.0000', '3.2000', '3.2000', '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 (79210, '2022-05-06', 1971, 75176, 4963, 49609, '1.0000', '11.0000', '11.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 (79211, '2022-05-06', 2135, 75177, 4963, NULL, '1.0000', '-0.2588', '-0.2588', '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 (79212, '2022-05-06', 2366, 75178, 4963, NULL, '2.0000', '-31.8429', '-31.8429', '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 (79213, '2022-05-06', 9740, 75179, 4963, 50242, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79214, '2022-05-06', 2315, 75180, 4963, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '168.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79215, '2022-05-06', 9727, 75181, 4963, 53234, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79216, '2022-05-06', 9788, 75182, 4963, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79217, '2022-05-06', 8133, 75183, 4963, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (79218, '2022-05-06', 8124, 75184, 4963, 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 (79219, '2022-05-06', 2342, 75185, 4963, 54886, '4.0000', '2.2091', '2.2091', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79220, '2022-05-06', 1501, 75186, 4963, NULL, '1.0000', '1.8760', '1.8760', '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 (79221, '2022-05-06', 2821, 75187, 4963, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79222, '2022-05-06', 2299, 75188, 4963, 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 (79223, '2022-05-06', 1912, 75189, 4964, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79224, '2022-05-06', 2583, 75190, 4964, 8286, '1.0000', '77.2500', '77.2500', '102.0000', '102.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79225, '2022-05-06', 2061, 75191, 4964, 50898, '1.0000', '10.8450', '10.8450', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79226, '2022-05-06', 9729, 75192, 4964, 46048, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79227, '2022-05-06', 1851, 75193, 4964, 54386, '1.0000', '12.8734', '12.8734', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79228, '2022-05-06', 1408, 75194, 4964, 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 (79229, '2022-05-06', 2379, 75195, 4965, 54615, '2.0000', '1.9369', '1.9369', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79230, '2022-05-06', 1787, 75196, 4965, 52255, '2.0000', '0.5595', '0.5595', '2.0000', '2.0000', '96.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79231, '2022-05-06', 2229, 75197, 4965, 49412, '1.0000', '25.2188', '25.2188', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79232, '2022-05-06', 1499, 75198, 4965, 54670, '2.0000', '0.4174', '0.4174', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79233, '2022-05-06', 9840, 75199, 4966, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79234, '2022-05-06', 2108, 75200, 4966, 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 (79235, '2022-05-06', 1313, 75201, 4966, 18414, '1.0000', '0.4200', '0.4200', '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 (79236, '2022-05-06', 9602, 75202, 4966, NULL, '1.0000', '1.0500', '1.0500', '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 (79237, '2022-05-06', 1863, 75203, 4966, 54688, '4.0000', '1.3014', '1.3014', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79238, '2022-05-06', 9840, 75204, 4966, 53708, '3.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79239, '2022-05-06', 2948, 75205, 4967, 53894, '1.0000', '0.9169', '0.9169', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79240, '2022-05-06', 9732, 75206, 4968, 53874, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79241, '2022-05-06', 2135, 75207, 4969, NULL, '1.0000', '-0.2588', '-0.2588', '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 (79242, '2022-05-06', 1871, 75208, 4969, NULL, '4.0000', '0.4145', '0.4145', '3.7000', '3.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 (79243, '2022-05-06', 2302, 75209, 4969, 51482, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79244, '2022-05-06', 2948, 75210, 4969, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79245, '2022-05-06', 9827, 75211, 4969, 51223, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79246, '2022-05-06', 2237, 75212, 4969, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79247, '2022-05-06', 9695, 75213, 4969, 55086, '1.0000', '5.0776', '5.0776', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79248, '2022-05-06', 2088, 75214, 4969, 54566, '2.0000', '1.8472', '1.8472', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79249, '2022-05-06', 9831, 75215, 4969, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79250, '2022-05-06', 7871, 75216, 4970, NULL, '7.0000', '6.0000', '6.0000', '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 (79251, '2022-05-06', 8512, 75217, 4970, NULL, '7.0000', '1.8000', '1.8000', '4.0000', '4.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 (79252, '2022-05-06', 9213, 75218, 4970, NULL, '1.0000', '5.4000', '5.4000', '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 (79253, '2022-05-06', 7641, 75219, 4970, NULL, '1.0000', '1.9000', '1.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 (79254, '2022-05-06', 7907, 75220, 4970, NULL, '2.0000', '12.0000', '12.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 (79255, '2022-05-06', 7666, 75221, 4970, 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 (79256, '2022-05-06', 8085, 75222, 4970, NULL, '3.0000', '1.1700', '1.1700', '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 (79257, '2022-05-06', 7324, 75223, 4970, NULL, '3.0000', '4.0000', '4.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 (79258, '2022-05-06', 7715, 75224, 4970, NULL, '1.0000', '1.8900', '1.8900', '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 (79259, '2022-05-06', 7674, 75225, 4970, 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 (79260, '2022-05-06', 2269, 75226, 4970, 2929, '-5.0000', '4.9800', '4.9800', '9.5000', '9.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 (79261, '2022-05-06', 2269, 75226, 4970, NULL, '6.0000', '4.9800', '4.9800', '9.5000', '9.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 (79262, '2022-05-06', 7606, 75227, 4970, NULL, '1.0000', '4.8600', '4.8600', '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 (79263, '2022-05-06', 8308, 75228, 4970, NULL, '1.0000', '2.0800', '2.0800', '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 (79264, '2022-05-06', 2726, 75229, 4970, NULL, '1.0000', '4.0000', '4.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 (79265, '2022-05-06', 9794, 75230, 4970, NULL, '1.0000', '1.0800', '1.0800', '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 (79266, '2022-05-06', 7881, 75231, 4970, NULL, '1.0000', '2.3000', '2.3000', '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 (79267, '2022-05-06', 7711, 75232, 4970, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79268, '2022-05-06', 7804, 75233, 4970, 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 (79269, '2022-05-06', 7781, 75234, 4970, NULL, '2.0000', '4.2500', '4.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 (79270, '2022-05-06', 2352, 75235, 4970, 3855, '-146.0000', '20.0000', '20.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 (79271, '2022-05-06', 2352, 75235, 4970, NULL, '151.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-151.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79272, '2022-05-06', 8753, 75236, 4970, 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 (79273, '2022-05-06', 9579, 75237, 4970, 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 (79274, '2022-05-06', 9791, 75238, 4970, NULL, '2.0000', '0.9000', '0.9000', '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 (79275, '2022-05-06', 7514, 75239, 4970, NULL, '1.0000', '2.2500', '2.2500', '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 (79276, '2022-05-06', 8085, 75240, 4970, NULL, '2.0000', '1.1700', '1.1700', '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 (79277, '2022-05-06', 2511, 75241, 4971, 54682, '1.0000', '9.5107', '9.5107', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79278, '2022-05-06', 9823, 75242, 4972, NULL, '3.0000', '13.2500', '13.2500', '17.5000', '17.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 (79279, '2022-05-06', 9498, 75243, 4972, NULL, '1.0000', '12.5000', '12.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 (79280, '2022-05-06', 8113, 75244, 4972, NULL, '30.0000', '29.5000', '29.5000', '3.5000', '3.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 (79281, '2022-05-06', 7888, 75245, 4972, NULL, '1.0000', '14.0000', '14.0000', '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 (79282, '2022-05-06', 7967, 75246, 4972, NULL, '1.0000', '7.0000', '7.0000', '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 (79283, '2022-05-06', 7500, 75247, 4972, 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 (79284, '2022-05-06', 9686, 75248, 4972, NULL, '1.0000', '13.4900', '13.4900', '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 (79285, '2022-05-06', 7780, 75249, 4972, NULL, '1.0000', '11.6000', '11.6000', '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 (79286, '2022-05-06', 2822, 75250, 4972, 17166, '-8.0000', '2.7200', '2.7200', '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 (79287, '2022-05-06', 2822, 75250, 4972, NULL, '10.0000', '2.7200', '2.7200', '4.0000', '4.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 (79288, '2022-05-06', 2251, 75251, 4972, 2788, '-22.0000', '10.9700', '10.9700', '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 (79289, '2022-05-06', 2251, 75251, 4972, NULL, '23.0000', '10.9700', '10.9700', '16.0000', '16.0000', '-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 (79290, '2022-05-06', 2284, 75252, 4972, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (79291, '2022-05-06', 7779, 75253, 4972, 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 (79292, '2022-05-06', 2315, 75254, 4972, 2735, '-301.0000', '0.3300', '0.3300', '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 (79293, '2022-05-06', 2315, 75254, 4972, NULL, '302.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-302.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79294, '2022-05-06', 1904, 75255, 4972, 5442, '-37.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 (79295, '2022-05-06', 1904, 75255, 4972, NULL, '38.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79296, '2022-05-06', 7959, 75256, 4972, NULL, '1.0000', '9.6000', '9.6000', '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 (79297, '2022-05-06', 7758, 75257, 4972, 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 (79298, '2022-05-06', 7674, 75258, 4972, 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 (79299, '2022-05-06', 9750, 75259, 4972, NULL, '1.0000', '3.3000', '3.3000', '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 (79300, '2022-05-06', 2315, 75260, 4972, 2735, '-301.0000', '0.3300', '0.3300', '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 (79301, '2022-05-06', 2315, 75260, 4972, NULL, '302.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-302.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79302, '2022-05-06', 8186, 75261, 4972, NULL, '3.0000', '1.0800', '1.0800', '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 (79303, '2022-05-06', 1841, 75262, 4972, NULL, '4.0000', '142.5780', '142.5780', '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 (79304, '2022-05-06', 9092, 75263, 4972, NULL, '2.0000', '5.2900', '5.2900', '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 (79305, '2022-05-06', 7672, 75264, 4972, NULL, '1.0000', '1.0200', '1.0200', '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 (79306, '2022-05-06', 9177, 75265, 4972, 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 (79307, '2022-05-06', 7666, 75266, 4972, NULL, '1.0000', '3.6000', '3.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 (79308, '2022-05-06', 7743, 75267, 4972, NULL, '2.0000', '1.3100', '1.3100', '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 (79309, '2022-05-06', 1335, 75268, 4972, 12031, '-14.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 (79310, '2022-05-06', 1335, 75268, 4972, NULL, '17.0000', '0.8500', '0.8500', '2.0000', '2.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 (79311, '2022-05-06', 8214, 75269, 4972, NULL, '1.0000', '16.0000', '16.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 (79312, '2022-05-06', 2283, 75270, 4972, 2943, '-16.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 (79313, '2022-05-06', 2283, 75270, 4972, NULL, '18.0000', '1.4300', '1.4300', '2.0000', '2.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 (79314, '2022-05-06', 8186, 75271, 4972, NULL, '3.0000', '1.0800', '1.0800', '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 (79315, '2022-05-06', 2315, 75272, 4972, 2735, '-301.0000', '0.3300', '0.3300', '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 (79316, '2022-05-06', 2315, 75272, 4972, NULL, '303.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-303.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79317, '2022-05-06', 7674, 75273, 4972, 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 (79318, '2022-05-06', 1841, 75274, 4972, NULL, '8.0000', '142.5780', '142.5780', '0.5000', '0.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 (79319, '2022-05-06', 9750, 75275, 4972, NULL, '1.0000', '3.3000', '3.3000', '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 (79320, '2022-05-06', 8186, 75276, 4972, NULL, '6.0000', '1.0800', '1.0800', '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 (79321, '2022-05-06', 8214, 75277, 4972, NULL, '1.0000', '16.0000', '16.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 (79322, '2022-05-06', 2315, 75278, 4972, 2735, '-301.0000', '0.3300', '0.3300', '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 (79323, '2022-05-06', 2315, 75278, 4972, NULL, '307.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-307.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79324, '2022-05-06', 7881, 75279, 4972, NULL, '3.0000', '2.3000', '2.3000', '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 (79325, '2022-05-06', 9413, 75280, 4972, 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 (79326, '2022-05-06', 7368, 75281, 4972, NULL, '1.0000', '14.7500', '14.7500', '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 (79327, '2022-05-06', 7708, 75282, 4972, 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 (79328, '2022-05-06', 7699, 75283, 4972, 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 (79329, '2022-05-06', 8896, 75284, 4972, NULL, '1.0000', '42.0000', '42.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 (79330, '2022-05-06', 8833, 75285, 4972, NULL, '1.0000', '4.2000', '4.2000', '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 (79331, '2022-05-06', 7955, 75286, 4972, 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 (79332, '2022-05-06', 1983, 75287, 4972, NULL, '1.0000', '11.0000', '11.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 (79333, '2022-05-06', 7999, 75288, 4972, NULL, '1.0000', '1.7500', '1.7500', '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 (79334, '2022-05-06', 9762, 75289, 4972, 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 (79335, '2022-05-06', 9461, 75290, 4972, NULL, '1.0000', '1.6000', '1.6000', '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 (79336, '2022-05-06', 7953, 75291, 4972, NULL, '1.0000', '6.0000', '6.0000', '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 (79337, '2022-05-06', 7689, 75292, 4972, NULL, '1.0000', '9.1000', '9.1000', '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 (79338, '2022-05-06', 8666, 75293, 4972, NULL, '1.0000', '0.4600', '0.4600', '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 (79339, '2022-05-06', 9731, 75294, 4972, 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 (79340, '2022-05-06', 7739, 75295, 4972, NULL, '1.0000', '2.7500', '2.7500', '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 (79341, '2022-05-06', 7894, 75296, 4972, NULL, '1.0000', '3.8000', '3.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 (79342, '2022-05-06', 7703, 75297, 4972, NULL, '1.0000', '22.9900', '22.9900', '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 (79343, '2022-05-06', 1840, 75298, 4972, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (79344, '2022-05-06', 1841, 75299, 4972, NULL, '1.0000', '142.5780', '142.5780', '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 (79345, '2022-05-06', 2102, 75300, 4972, 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 (79346, '2022-05-06', 7674, 75301, 4972, 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 (79347, '2022-05-06', 2289, 75302, 4972, 2949, '-131.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 (79348, '2022-05-06', 2289, 75302, 4972, NULL, '135.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79349, '2022-05-06', 2297, 75303, 4973, NULL, '1.0000', '6.4800', '6.4800', '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 (79350, '2022-05-06', 1590, 75304, 4973, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79351, '2022-05-06', 7385, 75305, 4973, 54887, '4.0000', '4.9657', '4.9657', '3.7000', '3.7000', '90.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79352, '2022-05-06', 2416, 75306, 4973, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79353, '2022-05-06', 9819, 75307, 4973, 51693, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79354, '2022-05-06', 8740, 75308, 4973, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79355, '2022-05-06', 7609, 75309, 4973, NULL, '1.0000', '4.3300', '4.3300', '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 (79356, '2022-05-06', 1409, 75310, 4973, 54968, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79357, '2022-05-06', 8878, 75311, 4973, NULL, '1.0000', '6.6700', '6.6700', '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 (79358, '2022-05-06', 1945, 75312, 4973, 52328, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79359, '2022-05-06', 2506, 75313, 4973, NULL, '1.0000', '4.1493', '4.1493', '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 (79360, '2022-05-06', 8133, 75314, 4973, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (79361, '2022-05-06', 1805, 75315, 4973, NULL, '1.0000', '40.8080', '40.8080', '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 (79362, '2022-05-06', 1687, 75316, 4973, 52178, '1.0000', '12.6576', '12.6576', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79363, '2022-05-06', 9655, 75317, 4973, NULL, '1.0000', '37.0000', '37.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 (79364, '2022-05-06', 9831, 75318, 4973, 55091, '2.0000', '1.6952', '1.6952', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79365, '2022-05-06', 7385, 75319, 4973, 54887, '1.0000', '4.9657', '4.9657', '3.7000', '3.7000', '93.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79366, '2022-05-06', 8878, 75320, 4973, NULL, '1.0000', '6.6700', '6.6700', '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 (79367, '2022-05-06', 2821, 75321, 4973, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79368, '2022-05-06', 7785, 75322, 4973, 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 (79369, '2022-05-06', 2416, 75323, 4973, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79370, '2022-05-06', 1822, 75324, 4973, 54876, '1.0000', '2.6301', '2.6301', '4.0000', '4.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79371, '2022-05-06', 2607, 75325, 4973, 39774, '9.0000', '1.4000', '1.4000', '1.7000', '1.7000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79372, '2022-05-06', 2607, 75325, 4973, 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 (79373, '2022-05-06', 1812, 75326, 4973, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79374, '2022-05-06', 8878, 75327, 4973, NULL, '1.0000', '6.6700', '6.6700', '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 (79375, '2022-05-06', 1497, 75328, 4973, 51502, '1.0000', '11.4446', '11.4446', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79376, '2022-05-06', 8318, 75329, 4973, NULL, '1.0000', '5.5000', '5.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 (79377, '2022-05-06', 2864, 75330, 4973, NULL, '5.0000', '1.5150', '1.5150', '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 (79378, '2022-05-06', 8086, 75331, 4973, NULL, '1.0000', '9.3000', '9.3000', '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 (79379, '2022-05-06', 2522, 75332, 4973, 51953, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79380, '2022-05-06', 2971, 75333, 4973, 55097, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79381, '2022-05-06', 2592, 75334, 4973, 54893, '2.0000', '13.8100', '13.8100', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79382, '2022-05-06', 9832, 75335, 4973, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79383, '2022-05-06', 2342, 75336, 4973, 54886, '2.0000', '2.2091', '2.2091', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79384, '2022-05-06', 2093, 75337, 4973, NULL, '1.0000', '2.5500', '2.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 (79385, '2022-05-06', 1646, 75338, 4973, 54562, '1.0000', '5.5961', '5.5961', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79386, '2022-05-06', 1502, 75339, 4973, 49350, '1.0000', '13.4649', '13.4649', '11.0000', '11.0000', '12.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79387, '2022-05-06', 1837, 75340, 4973, NULL, '2.0000', '4.1395', '4.1395', '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 (79388, '2022-05-06', 3001, 75341, 4973, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79389, '2022-05-06', 2642, 75342, 4973, 55092, '1.0000', '10.0843', '10.0843', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79390, '2022-05-06', 2237, 75343, 4974, 2781, '-52.0000', '1.0600', '1.0600', '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 (79391, '2022-05-06', 2237, 75343, 4974, NULL, '53.0000', '1.0600', '1.0600', '2.5000', '2.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 (79392, '2022-05-06', 9875, 75344, 4974, NULL, '1.0000', '13.0000', '13.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 (79393, '2022-05-06', 1411, 75345, 4975, NULL, '1.0000', '25.9000', '25.9000', '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 (79394, '2022-05-06', 2169, 75346, 4975, 10737, '-119.0000', '3.8397', '3.8397', '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 (79395, '2022-05-06', 2169, 75346, 4975, NULL, '121.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-121.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79396, '2022-05-06', 1307, 75347, 4975, 1014, '2.0000', '110.4141', '110.4141', '3.0000', '3.0000', '24.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 (79397, '2022-05-06', 2283, 75348, 4976, 2943, '-18.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 (79398, '2022-05-06', 2283, 75348, 4976, NULL, '19.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (79399, '2022-05-06', 7790, 75349, 4976, NULL, '1.0000', '17.0000', '17.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 (79400, '2022-05-06', 2250, 75350, 4977, 2787, '-13.0000', '6.8900', '6.8900', '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 (79401, '2022-05-06', 2250, 75350, 4977, NULL, '14.0000', '6.8900', '6.8900', '12.5000', '12.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 (79402, '2022-05-06', 9794, 75351, 4977, NULL, '1.0000', '1.0800', '1.0800', '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 (79403, '2022-05-06', 1528, 75352, 4978, NULL, '1.0000', '38.6400', '38.6400', '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 (79404, '2022-05-06', 7806, 75353, 4978, NULL, '4.0000', '1.8000', '1.8000', '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 (79405, '2022-05-06', 2088, 75354, 4978, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '45.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 (79406, '2022-05-06', 2545, 75355, 4978, 6306, '-8.0000', '5.8819', '5.8819', '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 (79407, '2022-05-06', 2545, 75355, 4978, NULL, '9.0000', '5.8819', '5.8819', '10.0000', '10.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 (79408, '2022-05-06', 1521, 75356, 4978, 20591, '1.0000', '2.5754', '2.5754', '4.0000', '4.0000', '7.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 (79409, '2022-05-06', 9840, 75357, 4978, 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 (79410, '2022-05-06', 1340, 75358, 4978, 13005, '-5.0000', '2.7025', '2.7025', '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 (79411, '2022-05-06', 1340, 75358, 4978, NULL, '6.0000', '2.7025', '2.7025', '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 (79412, '2022-05-06', 7560, 75359, 4979, NULL, '1.0000', '33.0200', '33.0200', '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 (79413, '2022-05-06', 8203, 75360, 4979, 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 (79414, '2022-05-06', 1398, 75361, 4979, 22286, '1.0000', '7.5000', '7.5000', '15.0000', '15.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 (79415, '2022-05-06', 9396, 75362, 4979, NULL, '1.0000', '7.0800', '7.0800', '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 (79416, '2022-05-06', 7514, 75363, 4979, NULL, '2.0000', '2.2500', '2.2500', '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 (79417, '2022-05-06', 1310, 75364, 4979, NULL, '2.0000', '0.3700', '0.3700', '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 (79418, '2022-05-06', 2242, 75365, 4979, 3059, '-13.0000', '0.4800', '0.4800', '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 (79419, '2022-05-06', 2242, 75365, 4979, NULL, '15.0000', '0.4800', '0.4800', '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 (79420, '2022-05-06', 1841, 75366, 4979, NULL, '2.0000', '142.5780', '142.5780', '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 (79421, '2022-05-06', 2277, 75367, 4979, 2937, '-36.0000', '0.7800', '0.7800', '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 (79422, '2022-05-06', 2277, 75367, 4979, NULL, '38.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79423, '2022-05-06', 7641, 75368, 4979, NULL, '1.0000', '1.9000', '1.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 (79424, '2022-05-06', 8359, 75369, 4979, 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 (79425, '2022-05-06', 7666, 75370, 4979, NULL, '1.0000', '3.6000', '3.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 (79426, '2022-05-06', 7672, 75371, 4979, NULL, '1.0000', '1.0200', '1.0200', '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 (79427, '2022-05-06', 9456, 75372, 4979, NULL, '1.0000', '3.3200', '3.3200', '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 (79428, '2022-05-06', 7779, 75373, 4979, 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 (79429, '2022-05-06', 8136, 75374, 4979, NULL, '1.0000', '5.7700', '5.7700', '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 (79430, '2022-05-06', 7744, 75375, 4979, 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 (79431, '2022-05-06', 1856, 75376, 4979, NULL, '1.0000', '4.2500', '4.2500', '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 (79432, '2022-05-06', 8878, 75377, 4979, NULL, '1.0000', '6.6700', '6.6700', '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 (79433, '2022-05-06', 7930, 75378, 4979, NULL, '2.0000', '1.3000', '1.3000', '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 (79434, '2022-05-06', 7411, 75379, 4979, NULL, '1.0000', '1.3500', '1.3500', '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 (79435, '2022-05-06', 8883, 75380, 4979, NULL, '4.0000', '56.5500', '56.5500', '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 (79436, '2022-05-06', 8103, 75381, 4979, NULL, '1.0000', '26.9800', '26.9800', '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 (79437, '2022-05-06', 9791, 75382, 4979, 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 (79438, '2022-05-06', 8017, 75383, 4979, NULL, '2.0000', '40.0000', '40.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 (79439, '2022-05-06', 1837, 75384, 4979, 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 (79440, '2022-05-06', 7564, 75385, 4979, NULL, '1.0000', '0.6400', '0.6400', '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 (79441, '2022-05-06', 9107, 75386, 4979, NULL, '1.0000', '3.4000', '3.4000', '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 (79442, '2022-05-06', 7324, 75387, 4979, 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 (79443, '2022-05-06', 2315, 75388, 4979, 2735, '-311.0000', '0.3300', '0.3300', '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 (79444, '2022-05-06', 2315, 75388, 4979, NULL, '313.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-313.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79445, '2022-05-06', 8596, 75389, 4980, 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 (79446, '2022-05-06', 1592, 75390, 4981, 54659, '1.0000', '35.0705', '35.0705', '52.0000', '52.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79447, '2022-05-06', 7725, 75391, 4981, NULL, '1.0000', '9.5000', '9.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 (79448, '2022-05-06', 1432, 75392, 4981, 54681, '1.0000', '10.0341', '10.0341', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79449, '2022-05-06', 2068, 75393, 4981, 54407, '1.0000', '11.7410', '11.7410', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79450, '2022-05-06', 7753, 75394, 4981, NULL, '1.0000', '3.1400', '3.1400', '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 (79451, '2022-05-06', 2763, 75395, 4981, 15805, '2.0000', '7.5000', '7.5000', '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 (79452, '2022-05-06', 2479, 75396, 4981, 5192, '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 (79453, '2022-05-06', 9572, 75397, 4981, 44511, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79454, '2022-05-06', 2654, 75398, 4981, 32584, '1.0000', '18.3140', '18.3140', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79455, '2022-05-06', 2959, 75399, 4981, 45627, '2.0000', '4.1853', '4.1853', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79456, '2022-05-06', 2130, 75400, 4981, 4402, '1.0000', '17.0000', '17.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 (79457, '2022-05-06', 2447, 75401, 4981, 5833, '2.0000', '3.8000', '3.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 (79458, '2022-05-06', 8952, 75402, 4981, 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 (79459, '2022-05-06', 1612, 75403, 4981, 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 (79460, '2022-05-06', 2360, 75404, 4981, 49990, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '40.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79461, '2022-05-06', 2169, 75405, 4981, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79462, '2022-05-06', 1602, 75406, 4981, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79463, '2022-05-06', 1863, 75407, 4981, 54688, '2.0000', '1.3014', '1.3014', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79464, '2022-05-06', 1713, 75408, 4981, 9480, '1.0000', '15.1700', '15.1700', '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 (79465, '2022-05-06', 2277, 75409, 4981, 38069, '1.0000', '-0.8028', '-0.8028', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79466, '2022-05-06', 9160, 75410, 4981, 41980, '1.0000', '3.8900', '3.8900', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79467, '2022-05-06', 2867, 75411, 4981, 19025, '1.0000', '61.9200', '61.9200', '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 (79468, '2022-05-06', 2221, 75412, 4981, 53888, '1.0000', '15.9398', '15.9398', '26.0000', '26.0000', '5.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79469, '2022-05-06', 9634, 75413, 4981, 40901, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79470, '2022-05-06', 2660, 75414, 4981, 49531, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79471, '2022-05-06', 2528, 75415, 4981, 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 (79472, '2022-05-06', 1824, 75416, 4981, 40858, '1.0000', '52.1519', '52.1519', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79473, '2022-05-06', 1674, 75417, 4981, 53707, '1.0000', '11.0596', '11.0596', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79474, '2022-05-06', 1863, 75418, 4981, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79475, '2022-05-06', 8372, 75419, 4981, NULL, '1.0000', '9.5000', '9.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 (79476, '2022-05-06', 2024, 75420, 4981, 21814, '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 (79477, '2022-05-06', 1647, 75421, 4981, 54397, '1.0000', '5.4576', '5.4576', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79478, '2022-05-06', 2169, 75422, 4981, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79479, '2022-05-06', 2858, 75423, 4981, NULL, '2.0000', '1.0000', '1.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 (79480, '2022-05-06', 8367, 75424, 4981, NULL, '1.0000', '9.5000', '9.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 (79481, '2022-05-06', 2010, 75425, 4981, 55001, '1.0000', '1.3474', '1.3474', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79482, '2022-05-06', 2034, 75426, 4981, 54326, '1.0000', '4.7003', '4.7003', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79483, '2022-05-06', 9829, 75427, 4981, 54336, '1.0000', '6.6000', '6.6000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79484, '2022-05-06', 1943, 75428, 4981, 49223, '1.0000', '4.8068', '4.8068', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79485, '2022-05-06', 1837, 75429, 4981, 54424, '2.0000', '0.5024', '0.5024', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79486, '2022-05-06', 2293, 75430, 4981, 50920, '2.0000', '0.8705', '0.8705', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79487, '2022-05-06', 1687, 75431, 4981, 54390, '1.0000', '13.9287', '13.9287', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79488, '2022-05-06', 1863, 75432, 4981, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79489, '2022-05-06', 1878, 75433, 4981, NULL, '2.0000', '0.2800', '0.2800', '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 (79490, '2022-05-06', 7385, 75434, 4981, 54646, '2.0000', '2.4776', '2.4776', '3.7000', '3.7000', '26.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79491, '2022-05-06', 1812, 75435, 4981, 54638, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79492, '2022-05-06', 1665, 75436, 4981, 54639, '10.0000', '1.1801', '1.1801', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79493, '2022-05-06', 1637, 75437, 4981, 49553, '1.0000', '300.2450', '300.2450', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79494, '2022-05-06', 9750, 75438, 4981, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '35.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79495, '2022-05-06', 2858, 75439, 4981, 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 (79496, '2022-05-06', 1867, 75440, 4981, NULL, '1.0000', '9.4614', '9.4614', '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 (79497, '2022-05-06', 7744, 75441, 4981, NULL, '1.0000', '2.9400', '2.9400', '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 (79498, '2022-05-06', 1665, 75442, 4981, 54639, '2.0000', '1.1801', '1.1801', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79499, '2022-05-06', 1499, 75443, 4981, 54670, '1.0000', '0.4174', '0.4174', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79500, '2022-05-06', 9695, 75444, 4981, 55011, '1.0000', '4.9200', '4.9200', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79501, '2022-05-06', 1602, 75445, 4981, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79502, '2022-05-06', 2416, 75446, 4982, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79503, '2022-05-07', 1756, 75447, 4983, NULL, '2.0000', '4.9900', '4.9900', '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 (79504, '2022-05-07', 1912, 75448, 4983, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79505, '2022-05-07', 1590, 75449, 4983, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79506, '2022-05-07', 1532, 75450, 4983, 52201, '2.0000', '1.4143', '1.4143', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79507, '2022-05-07', 2103, 75451, 4983, 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 (79508, '2022-05-07', 2302, 75452, 4983, 51482, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79509, '2022-05-07', 9741, 75453, 4983, NULL, '1.0000', '7.8500', '7.8500', '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 (79510, '2022-05-07', 2693, 75454, 4983, 54577, '1.0000', '22.5550', '22.5550', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79511, '2022-05-07', 1337, 75455, 4983, NULL, '1.0000', '2.0000', '2.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 (79512, '2022-05-07', 9762, 75456, 4983, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79513, '2022-05-07', 2169, 75457, 4983, 53643, '2.0000', '1.3110', '1.3110', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79514, '2022-05-07', 8878, 75458, 4983, NULL, '1.0000', '6.6700', '6.6700', '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 (79515, '2022-05-07', 2366, 75459, 4983, NULL, '1.0000', '-31.8429', '-31.8429', '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 (79516, '2022-05-07', 1672, 75460, 4983, NULL, '10.0000', '4.0187', '4.0187', '5.5000', '5.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 (79517, '2022-05-07', 1999, 75461, 4983, 55101, '2.0000', '6.7734', '6.7734', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79518, '2022-05-07', 7741, 75462, 4983, NULL, '1.0000', '-6.8417', '-6.8417', '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 (79519, '2022-05-07', 9717, 75463, 4983, 50230, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79520, '2022-05-07', 8878, 75464, 4983, NULL, '1.0000', '6.6700', '6.6700', '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 (79521, '2022-05-07', 2463, 75465, 4983, 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 (79522, '2022-05-07', 7353, 75466, 4983, NULL, '1.0000', '0.1900', '0.1900', '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 (79523, '2022-05-07', 1432, 75467, 4983, 54179, '1.0000', '10.7899', '10.7899', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79524, '2022-05-07', 1521, 75468, 4983, 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 (79525, '2022-05-07', 1888, 75469, 4983, 54526, '1.0000', '16.5938', '16.5938', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79526, '2022-05-07', 1947, 75470, 4983, 54175, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79527, '2022-05-07', 8133, 75471, 4983, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (79528, '2022-05-07', 8980, 75472, 4984, NULL, '1.0000', '9.5000', '9.5000', '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 (79529, '2022-05-07', 7741, 75473, 4984, NULL, '1.0000', '-6.8417', '-6.8417', '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 (79530, '2022-05-07', 1840, 75474, 4984, NULL, '2.0000', '0.2400', '0.2400', '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 (79531, '2022-05-07', 1841, 75475, 4984, NULL, '2.0000', '0.2601', '0.2601', '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 (79532, '2022-05-07', 2289, 75476, 4984, NULL, '2.0000', '0.1400', '0.1400', '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 (79533, '2022-05-07', 9794, 75477, 4984, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '93.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79534, '2022-05-07', 8068, 75478, 4984, NULL, '1.0000', '8.7900', '8.7900', '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 (79535, '2022-05-07', 1812, 75479, 4984, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79536, '2022-05-07', 1837, 75480, 4984, NULL, '2.0000', '4.1395', '4.1395', '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 (79537, '2022-05-07', 9738, 75481, 4984, 54576, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79538, '2022-05-07', 1501, 75482, 4984, NULL, '1.0000', '1.8760', '1.8760', '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 (79539, '2022-05-07', 1736, 75483, 4984, NULL, '1.0000', '26.7000', '26.7000', '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 (79540, '2022-05-07', 9831, 75484, 4984, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79541, '2022-05-07', 2379, 75485, 4984, NULL, '1.0000', '0.2954', '0.2954', '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 (79542, '2022-05-07', 1837, 75486, 4984, NULL, '2.0000', '4.1395', '4.1395', '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 (79543, '2022-05-07', 2169, 75487, 4984, 53643, '2.0000', '1.3110', '1.3110', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79544, '2022-05-07', 2299, 75488, 4984, 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 (79545, '2022-05-07', 7507, 75489, 4984, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79546, '2022-05-07', 2293, 75490, 4984, NULL, '3.0000', '10.2680', '10.2680', '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 (79547, '2022-05-07', 2315, 75491, 4984, 54915, '5.0000', '0.7701', '0.7701', '1.0000', '1.0000', '163.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79548, '2022-05-07', 7406, 75492, 4984, NULL, '1.0000', '2.3750', '2.3750', '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 (79549, '2022-05-07', 1855, 75493, 4984, NULL, '1.0000', '1.5003', '1.5003', '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 (79550, '2022-05-07', 9840, 75494, 4984, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79551, '2022-05-07', 2295, 75495, 4985, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79552, '2022-05-07', 2994, 75496, 4985, 38566, '1.0000', '14.4657', '14.4657', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79553, '2022-05-07', 7886, 75497, 4985, NULL, '1.0000', '14.5000', '14.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 (79554, '2022-05-07', 7557, 75498, 4986, NULL, '10.0000', '0.5000', '0.5000', '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 (79555, '2022-05-07', 7547, 75499, 4986, NULL, '4.0000', '0.0000', '0.0000', '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 (79556, '2022-05-07', 2906, 75500, 4986, 18651, '-9.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 (79557, '2022-05-07', 2906, 75500, 4986, NULL, '10.0000', '2.6000', '2.6000', '4.0000', '4.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 (79558, '2022-05-07', 1760, 75501, 4986, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.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 (79559, '2022-05-07', 8154, 75502, 4986, NULL, '1.0000', '12.3000', '12.3000', '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 (79560, '2022-05-07', 7744, 75503, 4986, 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 (79561, '2022-05-07', 8074, 75504, 4986, NULL, '1.0000', '25.3504', '25.3504', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79562, '2022-05-07', 8664, 75505, 4986, NULL, '1.0000', '0.3500', '0.3500', '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 (79563, '2022-05-07', 7564, 75506, 4986, 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 (79564, '2022-05-07', 7641, 75507, 4986, NULL, '1.0000', '1.9000', '1.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 (79565, '2022-05-07', 7794, 75508, 4986, NULL, '1.0000', '9.8000', '9.8000', '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 (79566, '2022-05-07', 7559, 75509, 4986, NULL, '3.0000', '6.0000', '6.0000', '14.5000', '14.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 (79567, '2022-05-07', 1884, 75510, 4986, 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 (79568, '2022-05-07', 7815, 75511, 4986, NULL, '1.0000', '13.0000', '13.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 (79569, '2022-05-07', 8979, 75512, 4986, NULL, '1.0000', '1.0000', '1.0000', '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 (79570, '2022-05-07', 2315, 75513, 4986, 2735, '-313.0000', '0.3300', '0.3300', '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 (79571, '2022-05-07', 2315, 75513, 4986, NULL, '315.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-315.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79572, '2022-05-07', 8336, 75514, 4986, NULL, '2.0000', '3.4000', '3.4000', '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 (79573, '2022-05-07', 7967, 75515, 4986, NULL, '1.0000', '7.0000', '7.0000', '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 (79574, '2022-05-07', 8456, 75516, 4986, 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 (79575, '2022-05-07', 8207, 75517, 4986, NULL, '1.0000', '0.0000', '0.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 (79576, '2022-05-07', 1856, 75518, 4986, NULL, '1.0000', '4.2500', '4.2500', '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 (79577, '2022-05-07', 8072, 75519, 4986, NULL, '4.0000', '6.6000', '6.6000', '8.7000', '8.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 (79578, '2022-05-07', 8359, 75520, 4986, 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 (79579, '2022-05-07', 9839, 75521, 4986, NULL, '1.0000', '15.0200', '15.0200', '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 (79580, '2022-05-07', 8924, 75522, 4986, NULL, '3.0000', '4.5000', '4.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 (79581, '2022-05-07', 8145, 75523, 4986, NULL, '1.0000', '28.0000', '28.0000', '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 (79582, '2022-05-07', 7520, 75524, 4986, NULL, '1.0000', '9.6000', '9.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 (79583, '2022-05-07', 1904, 75525, 4986, 5442, '-38.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 (79584, '2022-05-07', 1904, 75525, 4986, NULL, '39.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79585, '2022-05-07', 1760, 75526, 4986, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.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 (79586, '2022-05-07', 7412, 75527, 4986, NULL, '1.0000', '1.5200', '1.5200', '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 (79587, '2022-05-07', 8808, 75528, 4986, NULL, '1.0000', '2.0000', '2.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 (79588, '2022-05-07', 7782, 75529, 4986, 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 (79589, '2022-05-07', 1837, 75530, 4986, 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 (79590, '2022-05-07', 7708, 75531, 4986, 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 (79591, '2022-05-07', 9775, 75532, 4986, NULL, '1.0000', '7.9000', '7.9000', '13.7300', '13.7300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79592, '2022-05-07', 7473, 75533, 4986, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (79593, '2022-05-07', 7482, 75534, 4986, NULL, '1.0000', '3.0500', '3.0500', '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 (79594, '2022-05-07', 7753, 75535, 4986, NULL, '1.0000', '3.4000', '3.4000', '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 (79595, '2022-05-07', 8203, 75536, 4986, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79596, '2022-05-07', 8849, 75537, 4986, NULL, '1.0000', '1.0700', '1.0700', '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 (79597, '2022-05-07', 1935, 75538, 4986, 5586, '-77.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 (79598, '2022-05-07', 1935, 75538, 4986, NULL, '78.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79599, '2022-05-07', 7712, 75539, 4987, NULL, '1.0000', '26.0000', '26.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 (79600, '2022-05-07', 8925, 75540, 4987, NULL, '1.0000', '2.4000', '2.4000', '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 (79601, '2022-05-07', 7708, 75541, 4987, 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 (79602, '2022-05-07', 8666, 75542, 4987, NULL, '1.0000', '0.4600', '0.4600', '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 (79603, '2022-05-07', 7514, 75543, 4987, NULL, '2.0000', '2.2500', '2.2500', '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 (79604, '2022-05-07', 2906, 75544, 4987, 18651, '-10.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 (79605, '2022-05-07', 2906, 75544, 4987, NULL, '11.0000', '2.6000', '2.6000', '4.0000', '4.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 (79606, '2022-05-07', 2352, 75545, 4987, 3855, '-151.0000', '20.0000', '20.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 (79607, '2022-05-07', 2352, 75545, 4987, NULL, '156.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-156.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79608, '2022-05-07', 8745, 75546, 4987, NULL, '1.0000', '8.0000', '8.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 (79609, '2022-05-07', 8208, 75547, 4987, NULL, '4.0000', '33.0000', '33.0000', '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 (79610, '2022-05-07', 1532, 75548, 4987, 22261, '1.0000', '0.8000', '0.8000', '2.0000', '2.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 (79611, '2022-05-07', 7473, 75549, 4987, NULL, '5.0000', '0.5300', '0.5300', '0.6000', '0.6000', '-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 (79612, '2022-05-07', 7703, 75550, 4987, NULL, '1.0000', '22.9900', '22.9900', '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 (79613, '2022-05-07', 9001, 75551, 4987, NULL, '1.0000', '23.5000', '23.5000', '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 (79614, '2022-05-07', 7641, 75552, 4987, NULL, '1.0000', '1.9000', '1.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 (79615, '2022-05-07', 9155, 75553, 4987, NULL, '1.0000', '1.8000', '1.8000', '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 (79616, '2022-05-07', 8512, 75554, 4987, NULL, '5.0000', '1.8000', '1.8000', '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 (79617, '2022-05-07', 9242, 75555, 4987, NULL, '1.0000', '25.5000', '25.5000', '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 (79618, '2022-05-07', 7711, 75556, 4987, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79619, '2022-05-07', 7666, 75557, 4987, NULL, '1.0000', '3.6000', '3.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 (79620, '2022-05-07', 7963, 75558, 4987, 33811, '1.0000', '14.7000', '14.7000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79621, '2022-05-07', 1904, 75559, 4987, 5442, '-39.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 (79622, '2022-05-07', 1904, 75559, 4987, NULL, '41.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (79623, '2022-05-07', 8924, 75560, 4987, NULL, '2.0000', '4.5000', '4.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 (79624, '2022-05-07', 8666, 75561, 4987, NULL, '1.0000', '0.4600', '0.4600', '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 (79625, '2022-05-07', 7636, 75562, 4987, NULL, '10.0000', '2.5000', '2.5000', '3.5000', '3.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 (79626, '2022-05-07', 7709, 75563, 4987, NULL, '2.0000', '3.5000', '3.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 (79627, '2022-05-07', 7794, 75564, 4987, NULL, '1.0000', '9.8000', '9.8000', '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 (79628, '2022-05-07', 2315, 75565, 4987, 2735, '-315.0000', '0.3300', '0.3300', '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 (79629, '2022-05-07', 2315, 75565, 4987, NULL, '317.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-317.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79630, '2022-05-07', 8070, 75566, 4987, NULL, '1.0000', '6.5000', '6.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 (79631, '2022-05-07', 7962, 75567, 4987, NULL, '1.0000', '22.0000', '22.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79632, '2022-05-07', 9797, 75568, 4987, NULL, '2.0000', '2.0000', '2.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 (79633, '2022-05-07', 7411, 75569, 4987, NULL, '3.0000', '1.3500', '1.3500', '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 (79634, '2022-05-07', 7672, 75570, 4987, NULL, '1.0000', '1.0200', '1.0200', '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 (79635, '2022-05-07', 9272, 75571, 4987, NULL, '1.0000', '3.1000', '3.1000', '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 (79636, '2022-05-07', 7400, 75572, 4987, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79637, '2022-05-07', 1875, 75573, 4987, 6949, '-71.0000', '2.4000', '2.4000', '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 (79638, '2022-05-07', 1875, 75573, 4987, NULL, '81.0000', '2.4000', '2.4000', '3.6000', '3.6000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79639, '2022-05-07', 7893, 75574, 4987, 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 (79640, '2022-05-07', 7514, 75575, 4987, NULL, '2.0000', '2.2500', '2.2500', '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 (79641, '2022-05-07', 7959, 75576, 4987, NULL, '2.0000', '9.6000', '9.6000', '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 (79642, '2022-05-07', 2315, 75577, 4987, 2735, '-315.0000', '0.3300', '0.3300', '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 (79643, '2022-05-07', 2315, 75577, 4987, NULL, '316.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-316.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79644, '2022-05-07', 7753, 75578, 4987, NULL, '2.0000', '3.4000', '3.4000', '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 (79645, '2022-05-07', 7411, 75579, 4987, NULL, '2.0000', '1.3500', '1.3500', '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 (79646, '2022-05-07', 7514, 75580, 4987, NULL, '2.0000', '2.2500', '2.2500', '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 (79647, '2022-05-07', 2821, 75581, 4987, 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 (79648, '2022-05-07', 1867, 75582, 4987, NULL, '1.0000', '1.0500', '1.0500', '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 (79649, '2022-05-07', 8810, 75583, 4987, NULL, '1.0000', '1.6000', '1.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 (79650, '2022-05-07', 8925, 75584, 4987, NULL, '1.0000', '2.4000', '2.4000', '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 (79651, '2022-05-07', 9740, 75585, 4987, NULL, '1.0000', '0.6600', '0.6600', '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 (79652, '2022-05-07', 7524, 75586, 4987, NULL, '1.0000', '11.9500', '11.9500', '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 (79653, '2022-05-07', 8677, 75587, 4987, NULL, '1.0000', '1.2800', '1.2800', '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 (79654, '2022-05-07', 2821, 75588, 4987, 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 (79655, '2022-05-07', 2768, 75589, 4987, 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 (79656, '2022-05-07', 7798, 75590, 4987, NULL, '1.0000', '14.9000', '14.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 (79657, '2022-05-07', 2315, 75591, 4987, 2735, '-315.0000', '0.3300', '0.3300', '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 (79658, '2022-05-07', 2315, 75591, 4987, NULL, '317.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-317.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79659, '2022-05-07', 1501, 75592, 4987, NULL, '1.0000', '2.0500', '2.0500', '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 (79660, '2022-05-07', 9325, 75593, 4987, NULL, '1.0000', '8.8000', '8.8000', '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 (79661, '2022-05-07', 2102, 75594, 4987, 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 (79662, '2022-05-07', 7394, 75595, 4987, 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 (79663, '2022-05-07', 1837, 75596, 4987, 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 (79664, '2022-05-07', 8677, 75597, 4987, NULL, '3.0000', '1.2800', '1.2800', '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 (79665, '2022-05-07', 7804, 75598, 4987, NULL, '3.0000', '1.0200', '1.0200', '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 (79666, '2022-05-07', 9891, 75599, 4987, NULL, '1.0000', '17.4000', '17.4000', '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 (79667, '2022-05-07', 9092, 75600, 4987, NULL, '2.0000', '5.2900', '5.2900', '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 (79668, '2022-05-07', 7524, 75601, 4987, NULL, '1.0000', '11.9500', '11.9500', '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 (79669, '2022-05-07', 7457, 75602, 4987, 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 (79670, '2022-05-07', 7750, 75603, 4987, NULL, '1.0000', '33.9800', '33.9800', '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 (79671, '2022-05-07', 7954, 75604, 4987, 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 (79672, '2022-05-07', 9788, 75605, 4987, NULL, '4.0000', '1.3000', '1.3000', '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 (79673, '2022-05-07', 7674, 75606, 4988, 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 (79674, '2022-05-07', 7412, 75607, 4988, NULL, '1.0000', '1.5200', '1.5200', '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 (79675, '2022-05-07', 2557, 75608, 4988, 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 (79676, '2022-05-07', 7713, 75609, 4988, NULL, '3.0000', '0.3800', '0.3800', '0.6000', '0.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 (79677, '2022-05-07', 9742, 75610, 4988, 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 (79678, '2022-05-07', 7588, 75611, 4988, NULL, '1.0000', '6.9000', '6.9000', '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 (79679, '2022-05-07', 7447, 75612, 4988, NULL, '12.0000', '19.1100', '19.1100', '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 (79680, '2022-05-07', 7859, 75613, 4988, NULL, '1.0000', '12.6300', '12.6300', '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 (79681, '2022-05-07', 7852, 75614, 4988, NULL, '1.0000', '15.0000', '15.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 (79682, '2022-05-07', 9089, 75615, 4988, NULL, '1.0000', '3.8000', '3.8000', '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 (79683, '2022-05-08', 9388, 75616, 4989, 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 (79684, '2022-05-08', 2463, 75617, 4989, 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 (79685, '2022-05-08', 1779, 75618, 4989, 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 (79686, '2022-05-08', 1851, 75619, 4989, 54180, '1.0000', '12.6300', '12.6300', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79687, '2022-05-08', 2384, 75620, 4989, NULL, '4.0000', '0.1500', '0.1500', '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 (79688, '2022-05-08', 2617, 75621, 4989, 54513, '1.0000', '5.1800', '5.1800', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79689, '2022-05-08', 2135, 75622, 4989, NULL, '1.0000', '-0.2588', '-0.2588', '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 (79690, '2022-05-08', 9743, 75623, 4989, 51198, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79691, '2022-05-08', 2315, 75624, 4989, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '162.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79692, '2022-05-08', 9856, 75625, 4989, 54959, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79693, '2022-05-08', 2254, 75626, 4989, NULL, '1.0000', '42.5400', '42.5400', '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 (79694, '2022-05-08', 8980, 75627, 4989, NULL, '1.0000', '9.5000', '9.5000', '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 (79695, '2022-05-08', 2109, 75628, 4989, NULL, '1.0000', '0.0413', '0.0413', '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 (79696, '2022-05-08', 9794, 75629, 4989, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '92.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79697, '2022-05-08', 2352, 75630, 4989, NULL, '6.0000', '126.2588', '126.2588', '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 (79698, '2022-05-08', 8133, 75631, 4989, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (79699, '2022-05-08', 8774, 75632, 4989, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79700, '2022-05-08', 7713, 75633, 4989, NULL, '1.0000', '24.6545', '24.6545', '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 (79701, '2022-05-08', 2352, 75634, 4989, NULL, '3.0000', '126.2588', '126.2588', '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 (79702, '2022-05-08', 1787, 75635, 4989, NULL, '1.0000', '0.5000', '0.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 (79703, '2022-05-08', 9845, 75636, 4989, 54161, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79704, '2022-05-08', 7483, 75637, 4989, NULL, '1.0000', '0.4200', '0.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 (79705, '2022-05-08', 7802, 75638, 4989, NULL, '2.0000', '1.1497', '1.1497', '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 (79706, '2022-05-08', 7579, 75639, 4989, NULL, '1.0000', '15.0000', '15.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 (79707, '2022-05-08', 2635, 75640, 4989, 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 (79708, '2022-05-08', 7483, 75641, 4989, 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 (79709, '2022-05-08', 9762, 75642, 4989, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79710, '2022-05-08', 1674, 75643, 4989, NULL, '1.0000', '11.2958', '11.2958', '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 (79711, '2022-05-08', 8183, 75644, 4989, NULL, '1.0000', '514.9425', '514.9425', '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 (79712, '2022-05-08', 8775, 75645, 4989, 53445, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79713, '2022-05-08', 7324, 75646, 4989, 51663, '3.0000', '5.4813', '5.4813', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79714, '2022-05-08', 9695, 75647, 4989, 55160, '1.0000', '5.0912', '5.0912', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79715, '2022-05-08', 3058, 75648, 4989, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79716, '2022-05-08', 9870, 75649, 4990, 55105, '1.0000', '6.2400', '6.2400', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79717, '2022-05-08', 7933, 75650, 4990, NULL, '1.0000', '-0.1222', '-0.1222', '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 (79718, '2022-05-08', 7483, 75651, 4990, 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 (79719, '2022-05-08', 7713, 75652, 4990, NULL, '1.0000', '24.6545', '24.6545', '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 (79720, '2022-05-08', 7917, 75653, 4990, NULL, '4.0000', '5.0000', '5.0000', '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 (79721, '2022-05-08', 2109, 75654, 4990, NULL, '1.0000', '0.0413', '0.0413', '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 (79722, '2022-05-08', 9722, 75655, 4990, 47061, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79723, '2022-05-08', 8276, 75656, 4990, NULL, '1.0000', '11.8200', '11.8200', '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 (79724, '2022-05-08', 2315, 75657, 4990, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '161.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79725, '2022-05-08', 9891, 75658, 4990, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79726, '2022-05-08', 2315, 75659, 4990, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '161.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79727, '2022-05-08', 2169, 75660, 4990, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79728, '2022-05-08', 8980, 75661, 4990, NULL, '1.0000', '9.5000', '9.5000', '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 (79729, '2022-05-08', 2416, 75662, 4990, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79730, '2022-05-08', 9388, 75663, 4991, NULL, '3.0000', '5.0000', '5.0000', '7.0000', '7.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 (79731, '2022-05-08', 7781, 75664, 4992, NULL, '3.0000', '5.2802', '5.2802', '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 (79732, '2022-05-08', 8186, 75665, 4992, NULL, '3.0000', '1.0800', '1.0800', '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 (79733, '2022-05-08', 8200, 75666, 4992, NULL, '1.0000', '6.2600', '6.2600', '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 (79734, '2022-05-08', 9578, 75667, 4992, NULL, '1.0000', '8.0000', '8.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 (79735, '2022-05-08', 7952, 75668, 4992, 52751, '1.0000', '25.4547', '25.4547', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79736, '2022-05-08', 7913, 75669, 4992, NULL, '2.0000', '0.4833', '0.4833', '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 (79737, '2022-05-08', 7672, 75670, 4992, NULL, '1.0000', '3.8200', '3.8200', '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 (79738, '2022-05-08', 8731, 75671, 4992, NULL, '1.0000', '11.0000', '11.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 (79739, '2022-05-08', 1577, 75672, 4992, NULL, '1.0000', '2.7885', '2.7885', '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 (79740, '2022-05-08', 7444, 75673, 4992, NULL, '1.0000', '-0.0078', '-0.0078', '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 (79741, '2022-05-08', 7435, 75674, 4992, NULL, '14.0000', '5.3311', '5.3311', '8.0000', '8.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 (79742, '2022-05-08', 1916, 75675, 4992, 55119, '1.0000', '10.4258', '10.4258', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79743, '2022-05-08', 2069, 75676, 4992, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79744, '2022-05-08', 8085, 75677, 4992, 49815, '3.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79745, '2022-05-08', 7674, 75678, 4992, 52725, '2.0000', '197.1282', '197.1282', '2.0000', '2.0000', '81.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79746, '2022-05-08', 7524, 75679, 4992, 55133, '1.0000', '3.7883', '3.7883', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79747, '2022-05-08', 8207, 75680, 4992, NULL, '1.0000', '0.0000', '0.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 (79748, '2022-05-08', 1760, 75681, 4992, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79749, '2022-05-08', 8136, 75682, 4992, 51832, '1.0000', '-4.7978', '-4.7978', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79750, '2022-05-08', 8308, 75683, 4992, NULL, '1.0000', '40.0646', '40.0646', '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 (79751, '2022-05-08', 8849, 75684, 4992, NULL, '1.0000', '1.0700', '1.0700', '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 (79752, '2022-05-08', 7456, 75685, 4992, 54728, '1.0000', '34.7000', '34.7000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79753, '2022-05-08', 9452, 75686, 4992, NULL, '1.0000', '58.0000', '58.0000', '66.0000', '66.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79754, '2022-05-08', 7715, 75687, 4992, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79755, '2022-05-08', 2506, 75688, 4993, NULL, '1.0000', '4.1493', '4.1493', '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 (79756, '2022-05-08', 8133, 75689, 4993, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (79757, '2022-05-08', 2260, 75690, 4993, 54937, '1.0000', '4.5431', '4.5431', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79758, '2022-05-08', 1905, 75691, 4993, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79759, '2022-05-08', 2302, 75692, 4993, 51482, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79760, '2022-05-08', 2302, 75692, 4993, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79761, '2022-05-08', 1306, 75693, 4993, 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 (79762, '2022-05-08', 9845, 75694, 4993, NULL, '1.0000', '5.7000', '5.7000', '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 (79763, '2022-05-08', 9335, 75695, 4993, 42091, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79764, '2022-05-08', 2491, 75696, 4993, 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 (79765, '2022-05-08', 9880, 75697, 4993, NULL, '1.0000', '3.4200', '3.4200', '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 (79766, '2022-05-08', 9649, 75698, 4993, NULL, '1.0000', '14.2780', '14.2780', '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 (79767, '2022-05-08', 1871, 75699, 4993, NULL, '2.0000', '0.4145', '0.4145', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79768, '2022-05-08', 9740, 75700, 4993, 47076, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79769, '2022-05-08', 2921, 75701, 4993, NULL, '1.0000', '4.9000', '4.9000', '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 (79770, '2022-05-08', 2416, 75702, 4993, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79771, '2022-05-08', 1908, 75703, 4993, NULL, '2.0000', '0.9032', '0.9032', '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 (79772, '2022-05-08', 2546, 75704, 4993, NULL, '1.0000', '25.2500', '25.2500', '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 (79773, '2022-05-08', 9649, 75705, 4993, NULL, '1.0000', '14.2780', '14.2780', '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 (79774, '2022-05-08', 2379, 75706, 4993, NULL, '1.0000', '0.2954', '0.2954', '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 (79775, '2022-05-08', 2316, 75707, 4994, 49420, '1.0000', '48.6000', '48.6000', '53.0000', '53.0000', '0.0000', 1, 0, NULL, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79776, '2022-05-08', 1728, 75708, 4994, 19324, '8.0000', '90.0000', '90.0000', '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 (79777, '2022-05-08', 8969, 75709, 4994, 48599, '2.0000', '2.5503', '2.5503', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79778, '2022-05-08', 2414, 75710, 4994, NULL, '4.0000', '3.9438', '3.9438', '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 (79779, '2022-05-08', 1667, 75711, 4994, 51331, '1.0000', '10.5358', '10.5358', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79780, '2022-05-08', 2169, 75712, 4994, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79781, '2022-05-08', 2821, 75713, 4994, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79782, '2022-05-08', 1668, 75714, 4994, 53212, '1.0000', '30.9026', '30.9026', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79783, '2022-05-08', 1871, 75715, 4994, NULL, '10.0000', '0.4145', '0.4145', '3.7000', '3.7000', '-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 (79784, '2022-05-08', 2232, 75716, 4994, 54972, '1.0000', '30.5263', '30.5263', '42.0000', '42.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79785, '2022-05-08', 2083, 75717, 4994, 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 (79786, '2022-05-08', 7741, 75718, 4994, NULL, '1.0000', '-6.8417', '-6.8417', '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 (79787, '2022-05-08', 7707, 75719, 4994, NULL, '1.0000', '7.0000', '7.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 (79788, '2022-05-08', 1880, 75720, 4994, 48909, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79789, '2022-05-08', 9840, 75721, 4994, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79790, '2022-05-08', 1837, 75722, 4994, NULL, '2.0000', '4.1395', '4.1395', '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 (79791, '2022-05-08', 9794, 75723, 4994, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79792, '2022-05-08', 7744, 75724, 4994, NULL, '1.0000', '2.5833', '2.5833', '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 (79793, '2022-05-08', 1409, 75725, 4995, 54968, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79794, '2022-05-08', 1855, 75726, 4996, NULL, '1.0000', '1.5003', '1.5003', '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 (79795, '2022-05-08', 1868, 75727, 4996, NULL, '1.0000', '4.0300', '4.0300', '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 (79796, '2022-05-08', 9605, 75728, 4996, 39984, '1.0000', '50.0000', '50.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79797, '2022-05-08', 7385, 75729, 4996, 54887, '2.0000', '4.9657', '4.9657', '3.7000', '3.7000', '87.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79798, '2022-05-08', 9831, 75730, 4996, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79799, '2022-05-08', 9832, 75731, 4996, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79800, '2022-05-08', 2237, 75732, 4996, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79801, '2022-05-08', 2315, 75733, 4996, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '158.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79802, '2022-05-08', 8775, 75734, 4996, 53445, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79803, '2022-05-08', 1935, 75735, 4996, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79804, '2022-05-08', 2109, 75736, 4996, NULL, '1.0000', '0.0413', '0.0413', '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 (79805, '2022-05-08', 9808, 75737, 4996, 51699, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79806, '2022-05-08', 1674, 75738, 4996, NULL, '1.0000', '11.2958', '11.2958', '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 (79807, '2022-05-08', 2105, 75739, 4996, 54575, '2.0000', '2.4149', '2.4149', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79808, '2022-05-08', 1868, 75740, 4996, NULL, '1.0000', '4.0300', '4.0300', '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 (79809, '2022-05-08', 9740, 75741, 4996, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79810, '2022-05-08', 9740, 75742, 4996, 47076, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79811, '2022-05-08', 8417, 75743, 4997, 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 (79812, '2022-05-08', 7532, 75744, 4997, NULL, '1.0000', '20.6000', '20.6000', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79813, '2022-05-08', 7396, 75745, 4997, NULL, '1.0000', '6.0000', '6.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 (79814, '2022-05-08', 7431, 75746, 4997, NULL, '1.0000', '18.0000', '18.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 (79815, '2022-05-08', 7401, 75747, 4997, NULL, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79816, '2022-05-08', 7345, 75748, 4997, NULL, '1.0000', '56.0000', '56.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 (79817, '2022-05-08', 7800, 75749, 4997, NULL, '1.0000', '4.0000', '4.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 (79818, '2022-05-08', 8965, 75750, 4997, NULL, '1.0000', '7.2000', '7.2000', '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 (79819, '2022-05-08', 7857, 75751, 4997, NULL, '1.0000', '15.1300', '15.1300', '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 (79820, '2022-05-08', 2906, 75752, 4997, 18651, '-11.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 (79821, '2022-05-08', 2906, 75752, 4997, NULL, '12.0000', '2.6000', '2.6000', '4.0000', '4.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 (79822, '2022-05-08', 7804, 75753, 4997, NULL, '3.0000', '1.0200', '1.0200', '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 (79823, '2022-05-08', 8101, 75754, 4997, 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 (79824, '2022-05-08', 1335, 75755, 4997, 12031, '-17.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 (79825, '2022-05-08', 1335, 75755, 4997, NULL, '21.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79826, '2022-05-08', 8965, 75756, 4997, NULL, '2.0000', '7.2000', '7.2000', '9.5000', '9.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 (79827, '2022-05-08', 8084, 75757, 4997, NULL, '1.0000', '12.7000', '12.7000', '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 (79828, '2022-05-08', 8186, 75758, 4997, NULL, '3.0000', '1.0800', '1.0800', '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 (79829, '2022-05-08', 9817, 75759, 4997, NULL, '1.0000', '3.9000', '3.9000', '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 (79830, '2022-05-08', 1310, 75760, 4997, NULL, '2.0000', '0.3700', '0.3700', '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 (79831, '2022-05-08', 7514, 75761, 4997, NULL, '2.0000', '2.2500', '2.2500', '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 (79832, '2022-05-08', 7524, 75762, 4997, NULL, '1.0000', '11.9500', '11.9500', '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 (79833, '2022-05-08', 7886, 75763, 4997, 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 (79834, '2022-05-08', 7674, 75764, 4997, 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 (79835, '2022-05-08', 8415, 75765, 4997, NULL, '1.0000', '3.2500', '3.2500', '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 (79836, '2022-05-08', 8063, 75766, 4997, NULL, '1.0000', '1.6000', '1.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 (79837, '2022-05-08', 7666, 75767, 4997, NULL, '2.0000', '3.6000', '3.6000', '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 (79838, '2022-05-08', 9204, 75768, 4997, NULL, '1.0000', '8.1600', '8.1600', '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 (79839, '2022-05-08', 7672, 75769, 4997, NULL, '1.0000', '1.0200', '1.0200', '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 (79840, '2022-05-08', 7666, 75770, 4997, NULL, '1.0000', '3.6000', '3.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 (79841, '2022-05-08', 7892, 75771, 4997, NULL, '1.0000', '4.2000', '4.2000', '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 (79842, '2022-05-08', 8702, 75772, 4997, NULL, '1.0000', '3.6700', '3.6700', '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 (79843, '2022-05-08', 2277, 75773, 4997, 2937, '-38.0000', '0.7800', '0.7800', '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 (79844, '2022-05-08', 2277, 75773, 4997, NULL, '41.0000', '0.7800', '0.7800', '1.5000', '1.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 (79845, '2022-05-08', 9734, 75774, 4997, NULL, '2.0000', '0.3200', '0.3200', '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 (79846, '2022-05-08', 1916, 75775, 4997, 5445, '-7.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79847, '2022-05-08', 1916, 75775, 4997, NULL, '8.0000', '8.2300', '8.2300', '14.0000', '14.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 (79848, '2022-05-08', 9821, 75776, 4997, NULL, '1.0000', '1.4500', '1.4500', '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 (79849, '2022-05-08', 7411, 75777, 4997, NULL, '1.0000', '1.3500', '1.3500', '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 (79850, '2022-05-08', 8061, 75778, 4997, NULL, '1.0000', '6.5000', '6.5000', '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 (79851, '2022-05-08', 8415, 75779, 4997, NULL, '1.0000', '3.2500', '3.2500', '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 (79852, '2022-05-08', 2102, 75780, 4997, 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 (79853, '2022-05-08', 7784, 75781, 4997, NULL, '2.0000', '4.2300', '4.2300', '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 (79854, '2022-05-08', 7324, 75782, 4997, 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 (79855, '2022-05-08', 7711, 75783, 4997, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79856, '2022-05-08', 7715, 75784, 4997, NULL, '1.0000', '1.8900', '1.8900', '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 (79857, '2022-05-08', 7674, 75785, 4997, 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 (79858, '2022-05-08', 8918, 75786, 4997, NULL, '1.0000', '1.0400', '1.0400', '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 (79859, '2022-05-08', 2293, 75787, 4998, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '75.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79860, '2022-05-08', 9834, 75788, 4998, 52277, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79861, '2022-05-08', 1950, 75789, 4998, 54376, '1.0000', '9.4100', '9.4100', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79862, '2022-05-08', 8065, 75790, 4998, NULL, '1.0000', '-39.2200', '-39.2200', '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 (79863, '2022-05-08', 8395, 75791, 4998, NULL, '2.0000', '0.9700', '0.9700', '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 (79864, '2022-05-08', 9740, 75792, 4998, 46037, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79865, '2022-05-08', 7518, 75793, 4998, NULL, '1.0000', '5.1300', '5.1300', '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 (79866, '2022-05-08', 7886, 75794, 4998, 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 (79867, '2022-05-08', 1637, 75795, 4998, 49553, '1.0000', '300.2450', '300.2450', '15.0000', '15.0000', '7.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79868, '2022-05-08', 1435, 75796, 4998, 52310, '1.0000', '21.5000', '21.5000', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79869, '2022-05-08', 2633, 75797, 4998, 54678, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79870, '2022-05-08', 2293, 75798, 4998, 50920, '2.0000', '0.8705', '0.8705', '1.5000', '1.5000', '76.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79871, '2022-05-08', 8176, 75799, 4998, NULL, '1.0000', '5.4000', '5.4000', '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 (79872, '2022-05-08', 2237, 75800, 4998, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79873, '2022-05-08', 1950, 75801, 4998, 54376, '1.0000', '9.4100', '9.4100', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79874, '2022-05-08', 2167, 75802, 4998, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79875, '2022-05-08', 7459, 75803, 4998, NULL, '10.0000', '2.2700', '2.2700', '4.0000', '4.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 (79876, '2022-05-08', 1935, 75804, 4998, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79877, '2022-05-08', 2315, 75805, 4998, 3069, '2.0000', '0.3300', '0.3300', '1.0000', '1.0000', '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 (79878, '2022-05-08', 1665, 75806, 4998, 54639, '1.0000', '1.1801', '1.1801', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79879, '2022-05-08', 1430, 75807, 4998, 54989, '1.0000', '13.6945', '13.6945', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79880, '2022-05-08', 2777, 75808, 4998, 50944, '1.0000', '2.5882', '2.5882', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79881, '2022-05-08', 1878, 75809, 4998, NULL, '2.0000', '0.2800', '0.2800', '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 (79882, '2022-05-08', 2169, 75810, 4998, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79883, '2022-05-08', 1908, 75811, 4998, 5510, '1.0000', '1.7500', '1.7500', '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 (79884, '2022-05-08', 1602, 75812, 4998, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79885, '2022-05-08', 1383, 75813, 4998, 3426, '1.0000', '4.8000', '4.8000', '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 (79886, '2022-05-08', 2360, 75814, 4998, 49990, '10.0000', '0.5200', '0.5200', '0.8000', '0.8000', '30.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79887, '2022-05-08', 9794, 75815, 4998, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '77.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79888, '2022-05-08', 8498, 75816, 4998, 54645, '1.0000', '1.3375', '1.3375', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79889, '2022-05-08', 1435, 75817, 4999, 50527, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '0.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79890, '2022-05-08', 2263, 75818, 4999, 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 (79891, '2022-05-08', 9831, 75819, 4999, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79892, '2022-05-08', 7507, 75820, 4999, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79893, '2022-05-08', 7911, 75821, 4999, NULL, '1.0000', '4.3700', '4.3700', '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 (79894, '2022-05-08', 1812, 75822, 4999, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79895, '2022-05-08', 2169, 75823, 4999, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79896, '2022-05-08', 1812, 75824, 5000, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79897, '2022-05-08', 9821, 75825, 5001, 50873, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79898, '2022-05-08', 2643, 75826, 5001, 54436, '1.0000', '0.9033', '0.9033', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79899, '2022-05-08', 1602, 75827, 5001, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79900, '2022-05-08', 8089, 75828, 5001, NULL, '1.0000', '21.0000', '21.0000', '26.9300', '26.9300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79901, '2022-05-08', 2406, 75829, 5001, 40197, '1.0000', '21.2200', '21.2200', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79902, '2022-05-08', 1837, 75830, 5001, 54424, '4.0000', '0.5024', '0.5024', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79903, '2022-05-08', 9776, 75831, 5001, NULL, '1.0000', '7.7900', '7.7900', '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 (79904, '2022-05-08', 1603, 75832, 5001, 49220, '1.0000', '59.9933', '59.9933', '84.5000', '84.5000', '3.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79905, '2022-05-08', 2237, 75833, 5001, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79906, '2022-05-08', 2327, 75834, 5001, 45068, '2.0000', '16.5543', '16.5543', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79907, '2022-05-08', 1602, 75835, 5001, 54373, '1.0000', '6.9450', '6.9450', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79908, '2022-05-08', 2486, 75836, 5001, 21821, '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 (79909, '2022-05-08', 7518, 75837, 5001, NULL, '1.0000', '5.1300', '5.1300', '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 (79910, '2022-05-08', 9643, 75838, 5001, 41992, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79911, '2022-05-08', 8657, 75839, 5001, NULL, '1.0000', '7.8000', '7.8000', '10.3000', '10.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 (79912, '2022-05-08', 1432, 75840, 5001, 54681, '1.0000', '10.0341', '10.0341', '17.5000', '17.5000', '6.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79913, '2022-05-08', 8756, 75841, 5001, 42940, '1.0000', '7.2778', '7.2778', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79914, '2022-05-08', 7756, 75842, 5001, NULL, '1.0000', '26.9296', '26.9296', '29.5000', '29.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79915, '2022-05-08', 2256, 75843, 5001, 53689, '1.0000', '13.9865', '13.9865', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79916, '2022-05-08', 9794, 75844, 5001, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '76.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79917, '2022-05-08', 1668, 75845, 5001, 52089, '1.0000', '47.3586', '47.3586', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79918, '2022-05-08', 2315, 75846, 5001, 3069, '2.0000', '0.3300', '0.3300', '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 (79919, '2022-05-08', 7723, 75847, 5001, NULL, '1.0000', '5.5000', '5.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 (79920, '2022-05-08', 7722, 75848, 5001, 55005, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79921, '2022-05-08', 2353, 75849, 5002, NULL, '1.0000', '3.9633', '3.9633', '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 (79922, '2022-05-08', 7741, 75850, 5002, NULL, '1.0000', '-6.8417', '-6.8417', '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 (79923, '2022-05-08', 2283, 75851, 5003, 2943, '-19.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 (79924, '2022-05-08', 2283, 75851, 5003, NULL, '20.0000', '1.4300', '1.4300', '2.0000', '2.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 (79925, '2022-05-08', 7509, 75852, 5003, 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 (79926, '2022-05-08', 7961, 75853, 5003, NULL, '1.0000', '10.5600', '10.5600', '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 (79927, '2022-05-08', 8746, 75854, 5004, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79928, '2022-05-08', 7744, 75855, 5004, NULL, '1.0000', '2.5833', '2.5833', '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 (79929, '2022-05-08', 2630, 75856, 5005, 10216, '2.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 (79930, '2022-05-08', 1663, 75857, 5005, 54652, '2.0000', '93.4189', '93.4189', '133.0000', '133.0000', '0.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79931, '2022-05-08', 1493, 75858, 5005, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79932, '2022-05-08', 7587, 75859, 5005, 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 (79933, '2022-05-08', 9747, 75860, 5005, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79934, '2022-05-08', 2821, 75861, 5005, 54666, '1.0000', '3.4328', '3.4328', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79935, '2022-05-08', 2068, 75862, 5005, 54407, '1.0000', '11.7410', '11.7410', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79936, '2022-05-08', 1383, 75863, 5005, 3426, '1.0000', '4.8000', '4.8000', '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 (79937, '2022-05-08', 2379, 75864, 5005, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79938, '2022-05-08', 1736, 75865, 5005, 54580, '2.0000', '33.6490', '33.6490', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79939, '2022-05-08', 8899, 75866, 5005, 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 (79940, '2022-05-08', 2135, 75867, 5005, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79941, '2022-05-08', 7819, 75868, 5005, 44689, '2.0000', '9.0000', '9.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79942, '2022-05-08', 2893, 75869, 5005, 50878, '1.0000', '6.1222', '6.1222', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79943, '2022-05-08', 2558, 75870, 5005, 44508, '3.0000', '5.4253', '5.4253', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79944, '2022-05-08', 7917, 75871, 5005, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (79945, '2022-05-08', 7917, 75872, 5005, NULL, '7.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (79946, '2022-05-08', 2777, 75873, 5005, 50944, '1.0000', '2.5882', '2.5882', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79947, '2022-05-08', 2105, 75874, 5005, 54380, '1.0000', '1.9639', '1.9639', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79948, '2022-05-08', 2759, 75875, 5005, 48758, '1.0000', '4.1932', '4.1932', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79949, '2022-05-08', 9794, 75876, 5005, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '75.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79950, '2022-05-08', 2858, 75877, 5005, 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 (79951, '2022-05-08', 7741, 75878, 5005, 54662, '1.0000', '-0.2072', '-0.2072', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79952, '2022-05-08', 8208, 75879, 5005, NULL, '2.0000', '33.0000', '33.0000', '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 (79953, '2022-05-08', 2327, 75880, 5005, 45068, '2.0000', '16.5543', '16.5543', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79954, '2022-05-08', 2332, 75881, 5005, 53869, '1.0000', '6.9816', '6.9816', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79955, '2022-05-08', 2022, 75882, 5005, 54991, '1.0000', '3.7500', '3.7500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79956, '2022-05-08', 9731, 75883, 5005, 52299, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79957, '2022-05-08', 1532, 75884, 5005, 46593, '1.0000', '41.7946', '41.7946', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79958, '2022-05-08', 1532, 75884, 5005, 44617, '2.0000', '41.7946', '41.7946', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79959, '2022-05-08', 7741, 75885, 5005, 54662, '2.0000', '-0.2072', '-0.2072', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79960, '2022-05-08', 7554, 75886, 5005, NULL, '10.0000', '16.0000', '16.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 (79961, '2022-05-08', 1310, 75887, 5005, 53873, '2.0000', '0.4044', '0.4044', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79962, '2022-05-08', 1548, 75888, 5005, 1664, '3.0000', '90.0000', '90.0000', '3.6000', '3.6000', '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 (79963, '2022-05-08', 1942, 75889, 5005, 46610, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79964, '2022-05-08', 1687, 75890, 5005, 54390, '1.0000', '13.9287', '13.9287', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79965, '2022-05-08', 1863, 75891, 5005, 54688, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79966, '2022-05-08', 8756, 75892, 5005, 42940, '1.0000', '7.2778', '7.2778', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79967, '2022-05-08', 8876, 75893, 5005, NULL, '1.0000', '0.9900', '0.9900', '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 (79968, '2022-05-08', 1845, 75894, 5005, 54402, '1.0000', '20.3731', '20.3731', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79969, '2022-05-08', 2254, 75895, 5006, 54625, '1.0000', '18.9367', '18.9367', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79970, '2022-05-08', 9744, 75896, 5006, 46044, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79971, '2022-05-08', 8065, 75897, 5006, NULL, '1.0000', '-39.2200', '-39.2200', '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 (79972, '2022-05-08', 2303, 75898, 5007, 32821, '2.0000', '18.2875', '18.2875', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79973, '2022-05-09', 9737, 75899, 5008, NULL, '1.0000', '7.3000', '7.3000', '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 (79974, '2022-05-09', 2221, 75900, 5008, NULL, '1.0000', '15.0000', '15.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 (79975, '2022-05-09', 2169, 75901, 5008, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79976, '2022-05-09', 1945, 75902, 5008, 52328, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79977, '2022-05-09', 8119, 75903, 5008, 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 (79978, '2022-05-09', 9878, 75904, 5008, NULL, '1.0000', '9.6000', '9.6000', '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 (79979, '2022-05-09', 1689, 75905, 5008, 54931, '1.0000', '14.8587', '14.8587', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79980, '2022-05-09', 8980, 75906, 5008, NULL, '2.0000', '9.5000', '9.5000', '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 (79981, '2022-05-09', 9831, 75907, 5008, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79982, '2022-05-09', 9815, 75908, 5008, 50255, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79983, '2022-05-09', 9794, 75909, 5008, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '89.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79984, '2022-05-09', 2000, 75910, 5008, 22557, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '0.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 (79985, '2022-05-09', 2000, 75910, 5008, 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 (79986, '2022-05-09', 2169, 75911, 5008, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79987, '2022-05-09', 2299, 75912, 5008, 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 (79988, '2022-05-09', 9856, 75913, 5008, 54959, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79989, '2022-05-09', 9389, 75914, 5008, NULL, '2.0000', '15.0000', '15.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 (79990, '2022-05-09', 1912, 75915, 5008, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79991, '2022-05-09', 8775, 75916, 5008, 53445, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79992, '2022-05-09', 8775, 75916, 5008, 51020, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79993, '2022-05-09', 8771, 75917, 5008, 44145, '1.0000', '5.0000', '5.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79994, '2022-05-09', 9891, 75918, 5008, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79995, '2022-05-09', 2315, 75919, 5008, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '157.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79996, '2022-05-09', 2416, 75920, 5008, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79997, '2022-05-09', 9830, 75921, 5008, 55089, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79998, '2022-05-09', 9831, 75922, 5008, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79999, '2022-05-09', 1666, 75923, 5008, 51313, '1.0000', '2.7137', '2.7137', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80000, '2022-05-09', 9831, 75924, 5008, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80001, '2022-05-09', 1871, 75925, 5008, NULL, '6.0000', '0.4145', '0.4145', '3.7000', '3.7000', '-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 (80002, '2022-05-09', 2821, 75926, 5008, 54880, '1.0000', '3.4086', '3.4086', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80003, '2022-05-09', 3004, 75927, 5008, 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 (80004, '2022-05-09', 2618, 75928, 5008, NULL, '3.0000', '4.1000', '4.1000', '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 (80005, '2022-05-09', 7736, 75929, 5008, 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 (80006, '2022-05-09', 1695, 75930, 5008, 54176, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80007, '2022-05-09', 9831, 75931, 5008, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80008, '2022-05-09', 9830, 75932, 5008, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80009, '2022-05-09', 9832, 75933, 5008, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80010, '2022-05-09', 8746, 75934, 5008, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80011, '2022-05-09', 9832, 75935, 5008, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80012, '2022-05-09', 1845, 75936, 5009, NULL, '1.0000', '15.2605', '15.2605', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80013, '2022-05-09', 8746, 75937, 5009, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80014, '2022-05-09', 9715, 75938, 5009, 54881, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80015, '2022-05-09', 2109, 75939, 5009, NULL, '2.0000', '0.0413', '0.0413', '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 (80016, '2022-05-09', 2315, 75940, 5009, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '156.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80017, '2022-05-09', 9832, 75941, 5009, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80018, '2022-05-09', 2384, 75942, 5009, NULL, '3.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (80019, '2022-05-09', 8746, 75943, 5009, 51022, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80020, '2022-05-09', 7420, 75944, 5010, NULL, '1.0000', '30.7900', '30.7900', '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 (80021, '2022-05-09', 8039, 75945, 5011, NULL, '1.0000', '14.7500', '14.7500', '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 (80022, '2022-05-09', 1856, 75946, 5011, NULL, '1.0000', '4.2500', '4.2500', '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 (80023, '2022-05-09', 7958, 75947, 5011, NULL, '1.0000', '3.7500', '3.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 (80024, '2022-05-09', 7719, 75948, 5011, NULL, '2.0000', '6.0000', '6.0000', '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 (80025, '2022-05-09', 8230, 75949, 5011, NULL, '1.0000', '25.0000', '25.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 (80026, '2022-05-09', 7509, 75950, 5011, 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 (80027, '2022-05-09', 7674, 75951, 5011, 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 (80028, '2022-05-09', 8811, 75952, 5011, NULL, '1.0000', '11.6000', '11.6000', '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 (80029, '2022-05-09', 9834, 75953, 5011, NULL, '1.0000', '1.4500', '1.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 (80030, '2022-05-09', 2315, 75954, 5011, 2735, '-320.0000', '0.3300', '0.3300', '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 (80031, '2022-05-09', 2315, 75954, 5011, NULL, '322.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-322.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80032, '2022-05-09', 7642, 75955, 5011, NULL, '1.0000', '5.9200', '5.9200', '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 (80033, '2022-05-09', 7847, 75956, 5011, 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 (80034, '2022-05-09', 7761, 75957, 5011, NULL, '1.0000', '22.6200', '22.6200', '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 (80035, '2022-05-09', 7385, 75958, 5011, NULL, '4.0000', '2.0000', '2.0000', '3.7000', '3.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 (80036, '2022-05-09', 8979, 75959, 5011, NULL, '1.0000', '1.0000', '1.0000', '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 (80037, '2022-05-09', 7907, 75960, 5011, NULL, '2.0000', '12.0000', '12.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 (80038, '2022-05-09', 1501, 75961, 5011, NULL, '1.0000', '2.0500', '2.0500', '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 (80039, '2022-05-09', 7401, 75962, 5011, NULL, '1.0000', '57.9000', '57.9000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80040, '2022-05-09', 1819, 75963, 5011, 18240, '-3.0000', '5.5930', '5.5930', '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 (80041, '2022-05-09', 1819, 75963, 5011, NULL, '4.0000', '5.5930', '5.5930', '11.0000', '11.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 (80042, '2022-05-09', 2769, 75964, 5011, NULL, '2.0000', '1.5200', '1.5200', '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 (80043, '2022-05-09', 7502, 75965, 5011, NULL, '2.0000', '1.4000', '1.4000', '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 (80044, '2022-05-09', 7749, 75966, 5011, NULL, '1.0000', '3.0000', '3.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 (80045, '2022-05-09', 2289, 75967, 5011, 2949, '-135.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 (80046, '2022-05-09', 2289, 75967, 5011, NULL, '138.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-138.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80047, '2022-05-09', 7641, 75968, 5011, NULL, '1.0000', '1.9000', '1.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 (80048, '2022-05-09', 8359, 75969, 5011, 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 (80049, '2022-05-09', 7819, 75970, 5011, NULL, '1.0000', '9.5000', '9.5000', '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 (80050, '2022-05-09', 7672, 75971, 5011, NULL, '2.0000', '1.0200', '1.0200', '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 (80051, '2022-05-09', 9855, 75972, 5011, NULL, '1.0000', '28.7100', '28.7100', '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 (80052, '2022-05-09', 7334, 75973, 5011, NULL, '9.0000', '8.2300', '8.2300', '13.5000', '13.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 (80053, '2022-05-09', 7819, 75974, 5011, NULL, '1.0000', '9.5000', '9.5000', '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 (80054, '2022-05-09', 2287, 75975, 5011, 2947, '-22.0000', '1.8000', '1.8000', '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 (80055, '2022-05-09', 2287, 75975, 5011, NULL, '27.0000', '1.8000', '1.8000', '3.0000', '3.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 (80056, '2022-05-09', 8103, 75976, 5011, NULL, '1.0000', '26.9800', '26.9800', '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 (80057, '2022-05-09', 8174, 75977, 5011, NULL, '2.0000', '1.9400', '1.9400', '53.5000', '53.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 (80058, '2022-05-09', 9092, 75978, 5011, NULL, '2.0000', '5.2900', '5.2900', '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 (80059, '2022-05-09', 7490, 75979, 5011, NULL, '12.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-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 (80060, '2022-05-09', 8359, 75980, 5011, 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 (80061, '2022-05-09', 9747, 75981, 5011, NULL, '3.0000', '0.6500', '0.6500', '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 (80062, '2022-05-09', 8154, 75982, 5011, NULL, '2.0000', '12.3000', '12.3000', '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 (80063, '2022-05-09', 7961, 75983, 5011, NULL, '1.0000', '10.5600', '10.5600', '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 (80064, '2022-05-09', 1310, 75984, 5011, NULL, '2.0000', '0.3700', '0.3700', '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 (80065, '2022-05-09', 2315, 75985, 5011, 2735, '-320.0000', '0.3300', '0.3300', '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 (80066, '2022-05-09', 2315, 75985, 5011, NULL, '321.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-321.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80067, '2022-05-09', 9729, 75986, 5012, NULL, '2.0000', '0.6200', '0.6200', '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 (80068, '2022-05-09', 2068, 75987, 5012, 5568, '-24.0000', '13.1000', '13.1000', '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 (80069, '2022-05-09', 2068, 75987, 5012, NULL, '25.0000', '13.1000', '13.1000', '16.0000', '16.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 (80070, '2022-05-09', 2315, 75988, 5012, 2735, '-323.0000', '0.3300', '0.3300', '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 (80071, '2022-05-09', 2315, 75988, 5012, NULL, '324.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-324.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80072, '2022-05-09', 2169, 75989, 5012, 10737, '-121.0000', '3.8397', '3.8397', '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 (80073, '2022-05-09', 2169, 75989, 5012, NULL, '122.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-122.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80074, '2022-05-09', 2293, 75990, 5012, 22262, '9.0000', '1.4400', '1.4400', '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 (80075, '2022-05-09', 1580, 75991, 5012, 7598, '-38.0000', '0.9900', '0.9900', '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 (80076, '2022-05-09', 1580, 75991, 5012, NULL, '47.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-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 (80077, '2022-05-09', 1470, 75992, 5012, 120, '1.0000', '90.0000', '90.0000', '14.5000', '14.5000', '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 (80078, '2022-05-09', 1328, 75993, 5012, NULL, '1.0000', '3.1500', '3.1500', '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 (80079, '2022-05-09', 7411, 75994, 5012, NULL, '1.0000', '1.3500', '1.3500', '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 (80080, '2022-05-09', 3057, 75995, 5012, NULL, '2.0000', '2.7000', '2.7000', '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 (80081, '2022-05-09', 2266, 75996, 5012, 2801, '-10.0000', '6.4900', '6.4900', '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 (80082, '2022-05-09', 2266, 75996, 5012, NULL, '11.0000', '6.4900', '6.4900', '10.5000', '10.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 (80083, '2022-05-09', 1667, 75997, 5012, 9745, '-47.0000', '5.9400', '5.9400', '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 (80084, '2022-05-09', 1667, 75997, 5012, NULL, '48.0000', '5.9400', '5.9400', '8.5000', '8.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80085, '2022-05-09', 2135, 75998, 5012, 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 (80086, '2022-05-09', 1340, 75999, 5012, 13005, '-6.0000', '2.7025', '2.7025', '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 (80087, '2022-05-09', 1340, 75999, 5012, NULL, '7.0000', '2.7025', '2.7025', '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 (80088, '2022-05-09', 9634, 76000, 5012, 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 (80089, '2022-05-09', 2125, 76001, 5012, NULL, '1.0000', '20.0000', '20.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 (80090, '2022-05-09', 1845, 76002, 5012, 6222, '-21.0000', '19.5000', '19.5000', '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 (80091, '2022-05-09', 1845, 76002, 5012, NULL, '23.0000', '19.5000', '19.5000', '30.5000', '30.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 (80092, '2022-05-09', 2315, 76003, 5012, 2735, '-323.0000', '0.3300', '0.3300', '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 (80093, '2022-05-09', 2315, 76003, 5012, NULL, '325.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-325.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80094, '2022-05-09', 9740, 76004, 5012, NULL, '3.0000', '0.6600', '0.6600', '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 (80095, '2022-05-09', 2855, 76005, 5012, NULL, '2.0000', '4.0000', '4.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 (80096, '2022-05-09', 1371, 76006, 5012, 10169, '-2.0000', '5.5000', '5.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 (80097, '2022-05-09', 1371, 76006, 5012, NULL, '3.0000', '5.5000', '5.5000', '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 (80098, '2022-05-09', 2315, 76007, 5012, 2735, '-323.0000', '0.3300', '0.3300', '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 (80099, '2022-05-09', 2315, 76007, 5012, NULL, '325.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-325.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80100, '2022-05-09', 7456, 76008, 5012, NULL, '1.0000', '34.7000', '34.7000', '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 (80101, '2022-05-09', 1604, 76009, 5012, 6525, '2.0000', '34.1212', '34.1212', '50.5000', '50.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 (80102, '2022-05-09', 2558, 76010, 5012, 17773, '-2.0000', '5.0000', '5.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 (80103, '2022-05-09', 2558, 76010, 5012, NULL, '3.0000', '5.0000', '5.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 (80104, '2022-05-09', 2858, 76011, 5012, 17772, '-70.0000', '1.0000', '1.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 (80105, '2022-05-09', 2858, 76011, 5012, NULL, '71.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80106, '2022-05-09', 9734, 76012, 5012, NULL, '2.0000', '0.3200', '0.3200', '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 (80107, '2022-05-09', 2270, 76013, 5012, 2930, '-8.0000', '0.9880', '0.9880', '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 (80108, '2022-05-09', 2270, 76013, 5012, NULL, '11.0000', '0.9880', '0.9880', '7.0000', '7.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 (80109, '2022-05-09', 2937, 76014, 5012, 19979, '-1.0000', '5.3700', '5.3700', '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 (80110, '2022-05-09', 2937, 76014, 5012, NULL, '2.0000', '5.3700', '5.3700', '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 (80111, '2022-05-09', 9731, 76015, 5013, 52234, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80112, '2022-05-09', 9732, 76016, 5013, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80113, '2022-05-09', 1935, 76017, 5013, 54624, '3.0000', '1.4427', '1.4427', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80114, '2022-05-09', 2263, 76018, 5013, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80115, '2022-05-09', 9734, 76019, 5013, 50862, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80116, '2022-05-09', 2366, 76020, 5013, 54663, '2.0000', '3.7698', '3.7698', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80117, '2022-05-09', 1845, 76021, 5013, 54402, '1.0000', '20.3731', '20.3731', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80118, '2022-05-09', 2315, 76022, 5013, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.0000', '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 (80119, '2022-05-09', 1804, 76023, 5013, 53692, '1.0000', '4.4470', '4.4470', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80120, '2022-05-09', 9734, 76024, 5013, 50862, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80121, '2022-05-09', 1386, 76025, 5013, 53896, '1.0000', '371.5164', '371.5164', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80122, '2022-05-09', 2284, 76026, 5013, 3124, '1.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 (80123, '2022-05-09', 1863, 76027, 5013, 54647, '1.0000', '1.3014', '1.3014', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80124, '2022-05-09', 2315, 76028, 5013, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.0000', '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 (80125, '2022-05-09', 1841, 76029, 5013, 54426, '2.0000', '0.0701', '0.0701', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80126, '2022-05-09', 2169, 76030, 5013, 54664, '2.0000', '1.2111', '1.2111', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80127, '2022-05-09', 1771, 76031, 5013, 21570, '1.0000', '3.3900', '3.3900', '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 (80128, '2022-05-09', 1369, 76032, 5013, 8433, '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 (80129, '2022-05-09', 2315, 76033, 5013, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.0000', '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 (80130, '2022-05-09', 2167, 76034, 5013, 52285, '1.0000', '2.3105', '2.3105', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80131, '2022-05-09', 1935, 76035, 5013, 54624, '3.0000', '1.4427', '1.4427', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80132, '2022-05-09', 2011, 76036, 5013, 6434, '2.0000', '0.5300', '0.5300', '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 (80133, '2022-05-09', 8208, 76037, 5013, NULL, '4.0000', '33.0000', '33.0000', '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 (80134, '2022-05-09', 1840, 76038, 5013, 54425, '3.0000', '0.2400', '0.2400', '0.5000', '0.5000', '17.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80135, '2022-05-09', 2315, 76039, 5013, 3069, '2.0000', '0.3300', '0.3300', '1.0000', '1.0000', '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 (80136, '2022-05-09', 1892, 76040, 5013, 5497, '1.0000', '0.5200', '0.5200', '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 (80137, '2022-05-09', 2327, 76041, 5013, NULL, '2.0000', '16.5543', '16.5543', '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 (80138, '2022-05-09', 1888, 76042, 5013, 54607, '1.0000', '16.4518', '16.4518', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80139, '2022-05-09', 2384, 76043, 5013, 54641, '10.0000', '0.3603', '0.3603', '0.7000', '0.7000', '40.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80140, '2022-05-09', 2769, 76044, 5014, 52293, '4.0000', '2.8167', '2.8167', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80141, '2022-05-09', 9734, 76045, 5014, 50862, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80142, '2022-05-09', 2379, 76046, 5014, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80143, '2022-05-09', 2930, 76047, 5014, 19027, '1.0000', '37.7400', '37.7400', '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 (80144, '2022-05-09', 7444, 76048, 5014, 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 (80145, '2022-05-09', 1837, 76049, 5014, 54424, '5.0000', '0.5024', '0.5024', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80146, '2022-05-09', 9734, 76050, 5014, 50862, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80147, '2022-05-09', 2990, 76051, 5014, 46050, '1.0000', '4.1906', '4.1906', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80148, '2022-05-09', 2295, 76052, 5014, 3134, '3.0000', '0.7000', '0.7000', '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 (80149, '2022-05-09', 2302, 76053, 5015, 54589, '1.0000', '5.1949', '5.1949', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80150, '2022-05-09', 9572, 76054, 5015, 44511, '1.0000', '14.0000', '14.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80151, '2022-05-09', 1746, 76055, 5015, NULL, '1.0000', '1.0000', '1.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 (80152, '2022-05-09', 7711, 76056, 5016, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80153, '2022-05-09', 8040, 76057, 5016, NULL, '1.0000', '14.9000', '14.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 (80154, '2022-05-09', 7411, 76058, 5016, NULL, '1.0000', '1.3500', '1.3500', '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 (80155, '2022-05-09', 2352, 76059, 5016, 3855, '-156.0000', '20.0000', '20.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 (80156, '2022-05-09', 2352, 76059, 5016, NULL, '158.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-158.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80157, '2022-05-09', 9382, 76060, 5016, NULL, '1.0000', '5.2000', '5.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 (80158, '2022-05-09', 7354, 76061, 5016, NULL, '1.0000', '0.3700', '0.3700', '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 (80159, '2022-05-09', 8075, 76062, 5016, NULL, '1.0000', '3.0000', '3.0000', '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 (80160, '2022-05-09', 7491, 76063, 5016, NULL, '1.0000', '5.6000', '5.6000', '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 (80161, '2022-05-09', 9729, 76064, 5016, NULL, '1.0000', '0.6200', '0.6200', '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 (80162, '2022-05-09', 1532, 76065, 5016, 22261, '1.0000', '0.8000', '0.8000', '2.0000', '2.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 (80163, '2022-05-09', 7324, 76066, 5016, 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 (80164, '2022-05-09', 7824, 76067, 5016, NULL, '1.0000', '8.0000', '8.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 (80165, '2022-05-09', 7628, 76068, 5016, NULL, '1.0000', '2.2900', '2.2900', '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 (80166, '2022-05-09', 7674, 76069, 5016, 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 (80167, '2022-05-09', 2456, 76070, 5016, 4800, '-1.0000', '18.5000', '18.5000', '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 (80168, '2022-05-09', 2456, 76070, 5016, NULL, '2.0000', '18.5000', '18.5000', '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 (80169, '2022-05-09', 9092, 76071, 5016, NULL, '1.0000', '5.2900', '5.2900', '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 (80170, '2022-05-09', 2610, 76072, 5016, 10021, '-4.0000', '40.0000', '40.0000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80171, '2022-05-09', 2610, 76072, 5016, NULL, '5.0000', '40.0000', '40.0000', '52.0000', '52.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 (80172, '2022-05-09', 7748, 76073, 5016, NULL, '1.0000', '7.3000', '7.3000', '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 (80173, '2022-05-09', 1501, 76074, 5016, NULL, '1.0000', '2.0500', '2.0500', '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 (80174, '2022-05-09', 7886, 76075, 5016, 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 (80175, '2022-05-09', 9729, 76076, 5016, NULL, '1.0000', '0.6200', '0.6200', '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 (80176, '2022-05-09', 7736, 76077, 5016, NULL, '1.0000', '16.2000', '16.2000', '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 (80177, '2022-05-09', 7652, 76078, 5016, NULL, '10.0000', '0.9800', '0.9800', '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 (80178, '2022-05-09', 7883, 76079, 5016, NULL, '1.0000', '34.0000', '34.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 (80179, '2022-05-09', 9852, 76080, 5016, 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 (80180, '2022-05-09', 1650, 76081, 5016, 3221, '-13.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 (80181, '2022-05-09', 1650, 76081, 5016, NULL, '14.0000', '14.8000', '14.8000', '20.0000', '20.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 (80182, '2022-05-09', 9883, 76082, 5016, NULL, '1.0000', '19.8000', '19.8000', '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 (80183, '2022-05-09', 7346, 76083, 5016, NULL, '1.0000', '112.0000', '112.0000', '148.0000', '148.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80184, '2022-05-09', 7657, 76084, 5016, NULL, '1.0000', '11.3200', '11.3200', '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 (80185, '2022-05-09', 7736, 76085, 5016, NULL, '1.0000', '16.2000', '16.2000', '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 (80186, '2022-05-09', 2618, 76086, 5016, 9836, '-21.0000', '4.1000', '4.1000', '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 (80187, '2022-05-09', 2618, 76086, 5016, NULL, '22.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80188, '2022-05-09', 2740, 76087, 5016, 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 (80189, '2022-05-09', 8925, 76088, 5016, NULL, '1.0000', '2.4000', '2.4000', '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 (80190, '2022-05-09', 7454, 76089, 5016, NULL, '1.0000', '26.2200', '26.2200', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80191, '2022-05-09', 9311, 76090, 5016, NULL, '1.0000', '6.6000', '6.6000', '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 (80192, '2022-05-09', 7788, 76091, 5016, NULL, '1.0000', '21.7600', '21.7600', '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 (80193, '2022-05-09', 7695, 76092, 5016, NULL, '1.0000', '3.9400', '3.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 (80194, '2022-05-09', 8059, 76093, 5016, NULL, '1.0000', '6.0000', '6.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 (80195, '2022-05-09', 2891, 76094, 5016, 18020, '-3.0000', '9.5000', '9.5000', '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 (80196, '2022-05-09', 2891, 76094, 5016, NULL, '4.0000', '9.5000', '9.5000', '13.0000', '13.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 (80197, '2022-05-09', 7819, 76095, 5016, NULL, '1.0000', '9.5000', '9.5000', '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 (80198, '2022-05-09', 7952, 76096, 5016, 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 (80199, '2022-05-09', 8123, 76097, 5016, 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 (80200, '2022-05-09', 1904, 76098, 5016, 5442, '-41.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 (80201, '2022-05-09', 1904, 76098, 5016, NULL, '43.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (80202, '2022-05-09', 9855, 76099, 5016, NULL, '1.0000', '28.7100', '28.7100', '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 (80203, '2022-05-09', 1541, 76100, 5016, 18018, '-3.0000', '19.0000', '19.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 (80204, '2022-05-09', 1541, 76100, 5016, NULL, '4.0000', '19.0000', '19.0000', '30.5000', '30.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 (80205, '2022-05-09', 1647, 76101, 5016, 3218, '-14.0000', '4.7200', '4.7200', '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 (80206, '2022-05-09', 1647, 76101, 5016, NULL, '15.0000', '4.7200', '4.7200', '8.0000', '8.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 (80207, '2022-05-09', 8135, 76102, 5016, NULL, '1.0000', '5.4500', '5.4500', '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 (80208, '2022-05-09', 7865, 76103, 5016, NULL, '1.0000', '1.6300', '1.6300', '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 (80209, '2022-05-09', 2315, 76104, 5016, 2735, '-328.0000', '0.3300', '0.3300', '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 (80210, '2022-05-09', 2315, 76104, 5016, NULL, '330.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-330.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80211, '2022-05-09', 7518, 76105, 5016, NULL, '1.0000', '7.8200', '7.8200', '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 (80212, '2022-05-09', 7411, 76106, 5016, NULL, '1.0000', '1.3500', '1.3500', '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 (80213, '2022-05-09', 1837, 76107, 5016, 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 (80214, '2022-05-09', 8666, 76108, 5016, NULL, '1.0000', '0.4600', '0.4600', '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 (80215, '2022-05-09', 7674, 76109, 5016, 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 (80216, '2022-05-09', 7509, 76110, 5016, 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 (80217, '2022-05-09', 7557, 76111, 5016, NULL, '10.0000', '0.5000', '0.5000', '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 (80218, '2022-05-09', 7547, 76112, 5016, NULL, '4.0000', '0.0000', '0.0000', '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 (80219, '2022-05-09', 7482, 76113, 5016, NULL, '1.0000', '3.0500', '3.0500', '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 (80220, '2022-05-09', 1760, 76114, 5016, 20604, '2.0000', '111.8384', '111.8384', '1.0000', '1.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 (80221, '2022-05-09', 7804, 76115, 5016, NULL, '3.0000', '1.0200', '1.0200', '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 (80222, '2022-05-09', 8596, 76116, 5016, 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 (80223, '2022-05-09', 8666, 76117, 5016, NULL, '1.0000', '0.4600', '0.4600', '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 (80224, '2022-05-09', 7715, 76118, 5016, NULL, '1.0000', '1.8900', '1.8900', '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 (80225, '2022-05-09', 9761, 76119, 5017, 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 (80226, '2022-05-09', 2169, 76120, 5017, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80227, '2022-05-09', 7324, 76121, 5017, 51663, '2.0000', '5.4813', '5.4813', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80228, '2022-05-09', 9794, 76122, 5017, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '87.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80229, '2022-05-09', 7802, 76123, 5017, NULL, '3.0000', '1.1497', '1.1497', '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 (80230, '2022-05-09', 9762, 76124, 5017, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80231, '2022-05-09', 1691, 76125, 5017, 48176, '1.0000', '10.3300', '10.3300', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80232, '2022-05-09', 9716, 76126, 5017, 52188, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80233, '2022-05-09', 7491, 76127, 5017, NULL, '1.0000', '4.8000', '4.8000', '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 (80234, '2022-05-09', 2259, 76128, 5017, 54936, '1.0000', '22.7952', '22.7952', '31.0000', '31.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80235, '2022-05-09', 9534, 76129, 5017, 54921, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80236, '2022-05-09', 9747, 76130, 5017, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80237, '2022-05-09', 7491, 76131, 5017, NULL, '1.0000', '4.8000', '4.8000', '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 (80238, '2022-05-09', 1946, 76132, 5017, NULL, '1.0000', '-1.2595', '-1.2595', '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 (80239, '2022-05-09', 1618, 76133, 5017, 54897, '1.0000', '-83.7318', '-83.7318', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80240, '2022-05-09', 9897, 76134, 5017, NULL, '14.0000', '1.7300', '1.7300', '2.3000', '2.3000', '-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 (80241, '2022-05-09', 9728, 76135, 5017, 47072, '1.0000', '5.4000', '5.4000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80242, '2022-05-09', 2221, 76136, 5017, NULL, '1.0000', '15.0000', '15.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 (80243, '2022-05-09', 1527, 76137, 5017, NULL, '2.0000', '13.1000', '13.1000', '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 (80244, '2022-05-09', 1446, 76138, 5017, NULL, '1.0000', '4.8156', '4.8156', '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 (80245, '2022-05-09', 2379, 76139, 5017, NULL, '1.0000', '0.2954', '0.2954', '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 (80246, '2022-05-09', 9743, 76140, 5017, 51198, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80247, '2022-05-09', 7482, 76141, 5017, NULL, '2.0000', '2.5019', '2.5019', '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 (80248, '2022-05-09', 2315, 76142, 5017, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '155.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80249, '2022-05-09', 9866, 76143, 5017, 54882, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80250, '2022-05-09', 7482, 76144, 5017, NULL, '1.0000', '2.5019', '2.5019', '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 (80251, '2022-05-09', 8133, 76145, 5017, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (80252, '2022-05-09', 9841, 76146, 5017, NULL, '1.0000', '5.1900', '5.1900', '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 (80253, '2022-05-09', 1753, 76147, 5017, 19379, '1.0000', '4.6900', '4.6900', '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 (80254, '2022-05-09', 9794, 76148, 5017, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80255, '2022-05-09', 7507, 76149, 5017, 54888, '2.0000', '0.3606', '0.3606', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80256, '2022-05-09', 2237, 76150, 5017, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80257, '2022-05-09', 7565, 76151, 5017, NULL, '1.0000', '0.2000', '0.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 (80258, '2022-05-09', 9827, 76152, 5017, 51223, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80259, '2022-05-09', 2315, 76153, 5017, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '154.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80260, '2022-05-09', 7642, 76154, 5017, NULL, '1.0000', '2.6900', '2.6900', '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 (80261, '2022-05-09', 2315, 76155, 5017, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '155.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80262, '2022-05-09', 7687, 76156, 5017, NULL, '1.0000', '36.4900', '36.4900', '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 (80263, '2022-05-09', 2315, 76157, 5017, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '154.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80264, '2022-05-09', 9856, 76158, 5017, 54959, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80265, '2022-05-09', 9754, 76159, 5017, 53231, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80266, '2022-05-09', 2315, 76160, 5017, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '155.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80267, '2022-05-09', 8124, 76161, 5017, 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 (80268, '2022-05-09', 2169, 76162, 5017, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80269, '2022-05-09', 8498, 76163, 5017, NULL, '1.0000', '10.4000', '10.4000', '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 (80270, '2022-05-09', 3001, 76164, 5017, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80271, '2022-05-09', 1590, 76165, 5017, 54532, '2.0000', '2.1402', '2.1402', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80272, '2022-05-09', 7507, 76166, 5017, 54888, '2.0000', '0.3606', '0.3606', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80273, '2022-05-09', 9732, 76167, 5017, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80274, '2022-05-09', 9831, 76168, 5017, 55091, '2.0000', '1.6952', '1.6952', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80275, '2022-05-09', 1501, 76169, 5017, NULL, '1.0000', '1.8760', '1.8760', '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 (80276, '2022-05-09', 1812, 76170, 5017, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80277, '2022-05-09', 1888, 76171, 5017, 54526, '1.0000', '16.5938', '16.5938', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80278, '2022-05-09', 2392, 76172, 5017, 48944, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80279, '2022-05-09', 2307, 76173, 5017, 49303, '1.0000', '111.4200', '111.4200', '240.0000', '240.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80280, '2022-05-09', 1828, 76174, 5017, NULL, '1.0000', '0.7300', '0.7300', '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 (80281, '2022-05-09', 1871, 76175, 5017, NULL, '4.0000', '0.4145', '0.4145', '3.7000', '3.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 (80282, '2022-05-09', 9754, 76176, 5017, 53231, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80283, '2022-05-09', 7946, 76177, 5017, NULL, '1.0000', '1.1000', '1.1000', '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 (80284, '2022-05-09', 2169, 76178, 5017, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80285, '2022-05-09', 7744, 76179, 5017, NULL, '1.0000', '2.5833', '2.5833', '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 (80286, '2022-05-09', 2068, 76180, 5017, 54170, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80287, '2022-05-09', 7802, 76181, 5017, NULL, '3.0000', '1.1497', '1.1497', '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 (80288, '2022-05-09', 2315, 76182, 5017, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '155.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80289, '2022-05-09', 2242, 76183, 5017, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80290, '2022-05-09', 1618, 76184, 5017, 54897, '1.0000', '-83.7318', '-83.7318', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80291, '2022-05-09', 9747, 76185, 5017, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80292, '2022-05-09', 2169, 76186, 5017, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80293, '2022-05-09', 8444, 76187, 5017, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80294, '2022-05-09', 1841, 76188, 5017, NULL, '3.0000', '0.2601', '0.2601', '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 (80295, '2022-05-09', 1840, 76189, 5017, NULL, '3.0000', '0.2400', '0.2400', '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 (80296, '2022-05-09', 8208, 76190, 5017, NULL, '3.0000', '33.0000', '33.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 (80297, '2022-05-09', 2441, 76191, 5017, 55100, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80298, '2022-05-09', 8444, 76192, 5017, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80299, '2022-05-09', 2657, 76193, 5017, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80300, '2022-05-09', 2315, 76194, 5017, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '155.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80301, '2022-05-09', 8710, 76195, 5017, NULL, '1.0000', '10.9000', '10.9000', '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 (80302, '2022-05-09', 8068, 76196, 5017, NULL, '1.0000', '8.7900', '8.7900', '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 (80303, '2022-05-09', 7805, 76197, 5018, NULL, '1.0000', '2.1800', '2.1800', '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 (80304, '2022-05-09', 3036, 76198, 5018, NULL, '1.0000', '9.5000', '9.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 (80305, '2022-05-09', 8745, 76199, 5018, NULL, '1.0000', '8.0000', '8.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 (80306, '2022-05-09', 1650, 76200, 5018, 3221, '-14.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 (80307, '2022-05-09', 1650, 76200, 5018, NULL, '15.0000', '14.8000', '14.8000', '20.0000', '20.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 (80308, '2022-05-09', 7518, 76201, 5018, NULL, '1.0000', '7.8200', '7.8200', '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 (80309, '2022-05-09', 8000, 76202, 5018, NULL, '1.0000', '6.8400', '6.8400', '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 (80310, '2022-05-09', 7736, 76203, 5018, NULL, '1.0000', '16.2000', '16.2000', '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 (80311, '2022-05-09', 1646, 76204, 5019, 3239, '-18.0000', '4.5300', '4.5300', '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 (80312, '2022-05-09', 1646, 76204, 5019, NULL, '19.0000', '4.5300', '4.5300', '8.0000', '8.0000', '-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 (80313, '2022-05-09', 8444, 76205, 5019, NULL, '1.0000', '1.6000', '1.6000', '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 (80314, '2022-05-09', 7743, 76206, 5019, NULL, '1.0000', '1.3100', '1.3100', '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 (80315, '2022-05-09', 9204, 76207, 5019, NULL, '1.0000', '8.1600', '8.1600', '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 (80316, '2022-05-09', 9794, 76208, 5019, NULL, '1.0000', '1.0800', '1.0800', '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 (80317, '2022-05-10', 9320, 76209, 5020, NULL, '1.0000', '8.8900', '8.8900', '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 (80318, '2022-05-10', 1935, 76210, 5020, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80319, '2022-05-10', 9840, 76211, 5020, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80320, '2022-05-10', 3001, 76212, 5020, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80321, '2022-05-10', 1935, 76213, 5020, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80322, '2022-05-10', 2109, 76214, 5020, NULL, '2.0000', '0.0413', '0.0413', '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 (80323, '2022-05-10', 1342, 76215, 5020, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80324, '2022-05-10', 9856, 76216, 5020, 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 (80325, '2022-05-10', 2758, 76217, 5020, NULL, '12.0000', '5.4000', '5.4000', '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 (80326, '2022-05-10', 7328, 76218, 5020, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80327, '2022-05-10', 7589, 76219, 5020, NULL, '1.0000', '1.7700', '1.7700', '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 (80328, '2022-05-10', 1425, 76220, 5020, NULL, '1.0000', '5.1721', '5.1721', '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 (80329, '2022-05-10', 2823, 76221, 5020, NULL, '2.0000', '11.2100', '11.2100', '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 (80330, '2022-05-10', 9578, 76222, 5020, 54578, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80331, '2022-05-10', 2657, 76223, 5020, 51691, '1.0000', '0.0533', '0.0533', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80332, '2022-05-10', 8133, 76224, 5020, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (80333, '2022-05-10', 8979, 76225, 5020, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '34.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80334, '2022-05-10', 1912, 76226, 5020, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80335, '2022-05-10', 2068, 76227, 5020, 53947, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80336, '2022-05-10', 1504, 76228, 5020, 51480, '10.0000', '1.9591', '1.9591', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80337, '2022-05-10', 1868, 76229, 5020, NULL, '1.0000', '4.0300', '4.0300', '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 (80338, '2022-05-10', 9831, 76230, 5020, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80339, '2022-05-10', 8979, 76231, 5020, 51990, '1.0000', '1.0000', '1.0000', '1.2000', '1.2000', '34.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80340, '2022-05-10', 9906, 76232, 5020, 55159, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80341, '2022-05-10', 9830, 76233, 5020, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80342, '2022-05-10', 2293, 76234, 5020, NULL, '3.0000', '10.2680', '10.2680', '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 (80343, '2022-05-10', 2169, 76235, 5020, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80344, '2022-05-10', 2237, 76236, 5020, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80345, '2022-05-10', 2020, 76237, 5020, NULL, '1.0000', '59.0820', '59.0820', '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 (80346, '2022-05-10', 9151, 76238, 5020, NULL, '1.0000', '9.7000', '9.7000', '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 (80347, '2022-05-10', 1837, 76239, 5020, NULL, '1.0000', '4.1395', '4.1395', '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 (80348, '2022-05-10', 1693, 76240, 5020, 48131, '1.0000', '7.9174', '7.9174', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80349, '2022-05-10', 1787, 76241, 5020, NULL, '1.0000', '0.5000', '0.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 (80350, '2022-05-10', 1812, 76242, 5020, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80351, '2022-05-10', 1852, 76243, 5020, 19331, '3.0000', '14.9000', '14.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 (80352, '2022-05-10', 7542, 76244, 5021, 37849, '2.0000', '4.7100', '4.7100', '5.0300', '5.0300', '0.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80353, '2022-05-10', 7542, 76244, 5021, NULL, '1.0000', '4.7100', '4.7100', '5.0300', '5.0300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80354, '2022-05-10', 2315, 76245, 5021, 53909, '2.0000', '0.6636', '0.6636', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80355, '2022-05-10', 7780, 76246, 5021, NULL, '1.0000', '-24.3351', '-24.3351', '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 (80356, '2022-05-10', 2284, 76247, 5021, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80357, '2022-05-10', 7641, 76248, 5021, NULL, '1.0000', '8.1611', '8.1611', '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 (80358, '2022-05-10', 7587, 76249, 5021, NULL, '1.0000', '6.5032', '6.5032', '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 (80359, '2022-05-10', 7999, 76250, 5021, 46264, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80360, '2022-05-10', 9089, 76251, 5021, 55066, '1.0000', '6.2175', '6.2175', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80361, '2022-05-10', 9729, 76252, 5021, 53908, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80362, '2022-05-10', 7780, 76253, 5021, NULL, '1.0000', '-24.3351', '-24.3351', '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 (80363, '2022-05-10', 7411, 76254, 5021, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80364, '2022-05-10', 8984, 76255, 5021, 52531, '1.0000', '0.9700', '0.9700', '1.2000', '1.2000', '11.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80365, '2022-05-10', 9734, 76256, 5021, 54140, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80366, '2022-05-10', 7385, 76257, 5021, 54713, '1.0000', '10.9932', '10.9932', '3.7000', '3.7000', '78.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80367, '2022-05-10', 8155, 76258, 5021, NULL, '2.0000', '65.0000', '65.0000', '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 (80368, '2022-05-10', 2070, 76259, 5021, NULL, '1.0000', '2.3000', '2.3000', '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 (80369, '2022-05-10', 9461, 76260, 5021, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80370, '2022-05-10', 9463, 76261, 5021, NULL, '2.0000', '4.3333', '4.3333', '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 (80371, '2022-05-10', 9716, 76262, 5021, 54285, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80372, '2022-05-10', 9329, 76263, 5021, NULL, '1.0000', '11202.2795', '11202.2795', '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 (80373, '2022-05-10', 7750, 76264, 5021, 54124, '1.0000', '31.0013', '31.0013', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80374, '2022-05-10', 7394, 76265, 5021, 36054, '1.0000', '178.5879', '178.5879', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80375, '2022-05-10', 8753, 76266, 5021, 54116, '1.0000', '3.3875', '3.3875', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80376, '2022-05-10', 2069, 76267, 5021, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80377, '2022-05-10', 7455, 76268, 5021, 43542, '1.0000', '5.3500', '5.3500', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80378, '2022-05-10', 8836, 76269, 5021, NULL, '3.0000', '12.0000', '12.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 (80379, '2022-05-10', 7473, 76270, 5021, NULL, '5.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '-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 (80380, '2022-05-10', 9735, 76271, 5021, 55132, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80381, '2022-05-10', 7469, 76272, 5021, NULL, '1.0000', '18.8000', '18.8000', '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 (80382, '2022-05-10', 1827, 76273, 5021, NULL, '2.0000', '0.2000', '0.2000', '0.3000', '0.3000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80383, '2022-05-10', 8168, 76274, 5021, NULL, '1.0000', '5.2500', '5.2500', '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 (80384, '2022-05-10', 9740, 76275, 5021, 55131, '3.0000', '0.6600', '0.6600', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80385, '2022-05-10', 9498, 76276, 5021, 54446, '1.0000', '27.5000', '27.5000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80386, '2022-05-10', 7684, 76277, 5021, NULL, '1.0000', '9.0000', '9.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 (80387, '2022-05-10', 7469, 76278, 5021, NULL, '1.0000', '18.8000', '18.8000', '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 (80388, '2022-05-10', 1329, 76279, 5021, 225, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80389, '2022-05-10', 2858, 76280, 5022, 17772, '-71.0000', '1.0000', '1.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 (80390, '2022-05-10', 2858, 76280, 5022, NULL, '73.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80391, '2022-05-10', 7411, 76281, 5022, NULL, '1.0000', '1.3500', '1.3500', '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 (80392, '2022-05-10', 1388, 76282, 5022, 20697, '1.0000', '5.3000', '5.3000', '9.0000', '9.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 (80393, '2022-05-10', 9740, 76283, 5022, NULL, '1.0000', '0.6600', '0.6600', '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 (80394, '2022-05-10', 9729, 76284, 5022, NULL, '2.0000', '0.6200', '0.6200', '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 (80395, '2022-05-10', 1499, 76285, 5022, 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 (80396, '2022-05-10', 2380, 76286, 5022, NULL, '2.0000', '37.9000', '37.9000', '66.0000', '66.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 (80397, '2022-05-10', 2263, 76287, 5022, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '2.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 (80398, '2022-05-10', 1816, 76288, 5022, 22478, '-4.0000', '18.2300', '18.2300', '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 (80399, '2022-05-10', 1816, 76288, 5022, NULL, '5.0000', '18.2300', '18.2300', '29.0000', '29.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 (80400, '2022-05-10', 2067, 76289, 5022, 5564, '-2.0000', '4.0000', '4.0000', '6.4700', '6.4700', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80401, '2022-05-10', 2067, 76289, 5022, NULL, '3.0000', '4.0000', '4.0000', '6.4700', '6.4700', '-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 (80402, '2022-05-10', 2342, 76290, 5022, 3845, '-90.0000', '1.8600', '1.8600', '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 (80403, '2022-05-10', 2342, 76290, 5022, NULL, '100.0000', '1.8600', '1.8600', '3.5000', '3.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 (80404, '2022-05-10', 2169, 76291, 5022, 10737, '-122.0000', '3.8397', '3.8397', '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 (80405, '2022-05-10', 2169, 76291, 5022, NULL, '123.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80406, '2022-05-10', 1888, 76292, 5022, 14663, '-6.0000', '134.8400', '134.8400', '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 (80407, '2022-05-10', 1888, 76292, 5022, NULL, '7.0000', '134.8400', '134.8400', '25.0000', '25.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 (80408, '2022-05-10', 9834, 76293, 5022, NULL, '1.0000', '1.4500', '1.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 (80409, '2022-05-10', 2169, 76294, 5022, 10737, '-122.0000', '3.8397', '3.8397', '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 (80410, '2022-05-10', 2169, 76294, 5022, NULL, '123.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80411, '2022-05-10', 1999, 76295, 5022, 6362, '-13.0000', '6.0000', '6.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 (80412, '2022-05-10', 1999, 76295, 5022, NULL, '14.0000', '6.0000', '6.0000', '12.0000', '12.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 (80413, '2022-05-10', 7955, 76296, 5022, 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 (80414, '2022-05-10', 2038, 76297, 5022, 6390, '-2.0000', '10.5000', '10.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 (80415, '2022-05-10', 2038, 76297, 5022, NULL, '3.0000', '10.5000', '10.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 (80416, '2022-05-10', 2642, 76298, 5022, 10573, '-15.0000', '9.2000', '9.2000', '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 (80417, '2022-05-10', 2642, 76298, 5022, NULL, '16.0000', '9.2000', '9.2000', '15.0000', '15.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 (80418, '2022-05-10', 2709, 76299, 5022, 12770, '-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 (80419, '2022-05-10', 2709, 76299, 5022, NULL, '2.0000', '12.0000', '12.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 (80420, '2022-05-10', 2858, 76300, 5022, 17772, '-71.0000', '1.0000', '1.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 (80421, '2022-05-10', 2858, 76300, 5022, NULL, '72.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80422, '2022-05-10', 1602, 76301, 5022, 5897, '-137.0000', '6.7859', '6.7859', '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 (80423, '2022-05-10', 1602, 76301, 5022, NULL, '138.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-138.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80424, '2022-05-10', 2332, 76302, 5022, 3835, '-10.0000', '5.8900', '5.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 (80425, '2022-05-10', 2332, 76302, 5022, NULL, '11.0000', '5.8900', '5.8900', '10.0000', '10.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 (80426, '2022-05-10', 1610, 76303, 5022, 8730, '-8.0000', '15.7500', '15.7500', '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 (80427, '2022-05-10', 1610, 76303, 5022, NULL, '9.0000', '15.7500', '15.7500', '22.5000', '22.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 (80428, '2022-05-10', 1314, 76304, 5022, 2710, '-4.0000', '1.2000', '1.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 (80429, '2022-05-10', 1314, 76304, 5022, NULL, '5.0000', '1.2000', '1.2000', '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 (80430, '2022-05-10', 1643, 76305, 5022, 3215, '-2.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 (80431, '2022-05-10', 1643, 76305, 5022, NULL, '3.0000', '90.0000', '90.0000', '54.5000', '54.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 (80432, '2022-05-10', 2233, 76306, 5022, 2777, '-29.0000', '19.0200', '19.0200', '29.5000', '29.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 (80433, '2022-05-10', 2233, 76306, 5022, NULL, '30.0000', '19.0200', '19.0200', '29.5000', '29.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 (80434, '2022-05-10', 2095, 76307, 5022, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '49.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 (80435, '2022-05-10', 1550, 76308, 5022, NULL, '1.0000', '13.9000', '13.9000', '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 (80436, '2022-05-10', 9866, 76309, 5022, NULL, '1.0000', '9.5500', '9.5500', '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 (80437, '2022-05-10', 1533, 76310, 5022, 10381, '-21.0000', '2.5917', '2.5917', '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 (80438, '2022-05-10', 1533, 76310, 5022, NULL, '22.0000', '2.5917', '2.5917', '5.5000', '5.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80439, '2022-05-10', 9794, 76311, 5022, NULL, '1.0000', '1.0800', '1.0800', '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 (80440, '2022-05-10', 2169, 76312, 5022, 10737, '-122.0000', '3.8397', '3.8397', '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 (80441, '2022-05-10', 2169, 76312, 5022, NULL, '123.0000', '3.8397', '3.8397', '2.0000', '2.0000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80442, '2022-05-10', 7318, 76313, 5022, NULL, '1.0000', '13.4400', '13.4400', '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 (80443, '2022-05-10', 2095, 76314, 5022, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '49.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 (80444, '2022-05-10', 1446, 76315, 5022, 5566, '-1.0000', '90.0000', '90.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 (80445, '2022-05-10', 1446, 76315, 5022, 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 (80446, '2022-05-10', 1867, 76316, 5022, NULL, '1.0000', '1.0500', '1.0500', '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 (80447, '2022-05-10', 1452, 76317, 5022, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80448, '2022-05-10', 9748, 76318, 5022, NULL, '1.0000', '2.5300', '2.5300', '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 (80449, '2022-05-10', 2366, 76319, 5023, 3833, '-52.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 (80450, '2022-05-10', 2366, 76319, 5023, NULL, '54.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80451, '2022-05-10', 1699, 76320, 5024, NULL, '1.0000', '3.2000', '3.2000', '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 (80452, '2022-05-10', 1699, 76321, 5025, NULL, '1.0000', '3.2000', '3.2000', '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 (80453, '2022-05-10', 9891, 76322, 5025, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80454, '2022-05-10', 7459, 76323, 5025, NULL, '6.0000', '-15.3118', '-15.3118', '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 (80455, '2022-05-10', 8068, 76324, 5025, NULL, '1.0000', '8.7900', '8.7900', '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 (80456, '2022-05-10', 8746, 76325, 5025, 45281, '1.0000', '2.8848', '2.8848', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80457, '2022-05-10', 8773, 76326, 5025, NULL, '1.0000', '3.8140', '3.8140', '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 (80458, '2022-05-10', 7473, 76327, 5026, NULL, '5.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '-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 (80459, '2022-05-10', 9612, 76328, 5026, 40452, '1.0000', '20.0000', '20.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80460, '2022-05-10', 2693, 76329, 5027, 12285, '-2.0000', '25.3656', '25.3656', '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 (80461, '2022-05-10', 2693, 76329, 5027, NULL, '3.0000', '25.3656', '25.3656', '30.0000', '30.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 (80462, '2022-05-10', 2451, 76330, 5027, 12922, '-3.0000', '10.3500', '10.3500', '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 (80463, '2022-05-10', 2451, 76330, 5027, NULL, '4.0000', '10.3500', '10.3500', '17.5000', '17.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 (80464, '2022-05-10', 1837, 76331, 5028, 54424, '2.0000', '0.5024', '0.5024', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80465, '2022-05-10', 7777, 76332, 5028, 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 (80466, '2022-05-10', 9734, 76333, 5028, 50862, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80467, '2022-05-10', 9732, 76334, 5028, 53874, '8.0000', '0.7000', '0.7000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80468, '2022-05-10', 9732, 76334, 5028, 52298, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80469, '2022-05-10', 1409, 76335, 5028, 54405, '1.0000', '13.0537', '13.0537', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80470, '2022-05-10', 1499, 76336, 5028, 54670, '1.0000', '0.4174', '0.4174', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80471, '2022-05-10', 1807, 76337, 5028, NULL, '3.0000', '5.3000', '5.3000', '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 (80472, '2022-05-10', 1499, 76338, 5028, 54670, '2.0000', '0.4174', '0.4174', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80473, '2022-05-10', 9732, 76339, 5028, 53874, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80474, '2022-05-10', 1671, 76340, 5028, 53275, '1.0000', '50.1205', '50.1205', '64.0000', '64.0000', '1.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80475, '2022-05-10', 7412, 76341, 5028, NULL, '1.0000', '1.5200', '1.5200', '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 (80476, '2022-05-10', 1425, 76342, 5028, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80477, '2022-05-10', 2633, 76343, 5028, 54678, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80478, '2022-05-10', 7438, 76344, 5028, NULL, '1.0000', '25.7400', '25.7400', '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 (80479, '2022-05-10', 2293, 76345, 5028, 50920, '4.0000', '0.8705', '0.8705', '1.5000', '1.5000', '69.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80480, '2022-05-10', 1755, 76346, 5028, 48740, '1.0000', '5.6333', '5.6333', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80481, '2022-05-10', 1928, 76347, 5028, 52272, '1.0000', '27.2031', '27.2031', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80482, '2022-05-10', 1440, 76348, 5028, 49476, '1.0000', '10.0000', '10.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80483, '2022-05-10', 1880, 76349, 5028, 5006, '1.0000', '4.7945', '4.7945', '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 (80484, '2022-05-10', 2809, 76350, 5028, 40386, '3.0000', '28.0000', '28.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80485, '2022-05-10', 1592, 76351, 5028, 54659, '1.0000', '35.0705', '35.0705', '52.0000', '52.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80486, '2022-05-10', 9695, 76352, 5028, 55011, '1.0000', '4.9200', '4.9200', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80487, '2022-05-10', 1346, 76353, 5028, 46772, '3.0000', '0.9485', '0.9485', '1.5000', '1.5000', '123.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80488, '2022-05-10', 1326, 76354, 5028, 54650, '1.0000', '3.0684', '3.0684', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80489, '2022-05-10', 2821, 76355, 5029, NULL, '1.0000', '3.4086', '3.4086', '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 (80490, '2022-05-10', 2315, 76356, 5029, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '146.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80491, '2022-05-10', 8740, 76357, 5029, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80492, '2022-05-10', 2135, 76358, 5029, NULL, '1.0000', '-0.2588', '-0.2588', '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 (80493, '2022-05-10', 9831, 76359, 5029, 55091, '2.0000', '1.6952', '1.6952', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80494, '2022-05-10', 9870, 76360, 5029, 55105, '3.0000', '6.2400', '6.2400', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80495, '2022-05-10', 1622, 76361, 5029, NULL, '2.0000', '90.0000', '90.0000', '36.5000', '36.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 (80496, '2022-05-10', 8879, 76362, 5029, 39777, '1.0000', '27.2712', '27.2712', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80497, '2022-05-10', 1550, 76363, 5029, 50071, '1.0000', '17.7644', '17.7644', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80498, '2022-05-10', 9388, 76364, 5029, NULL, '3.0000', '5.0000', '5.0000', '7.0000', '7.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 (80499, '2022-05-10', 1646, 76365, 5029, 54562, '1.0000', '5.5961', '5.5961', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80500, '2022-05-10', 2315, 76366, 5029, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '146.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80501, '2022-05-10', 2085, 76367, 5029, NULL, '10.0000', '3.1057', '3.1057', '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 (80502, '2022-05-10', 1425, 76368, 5029, NULL, '1.0000', '5.1721', '5.1721', '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 (80503, '2022-05-10', 2893, 76369, 5029, NULL, '1.0000', '6.4400', '6.4400', '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 (80504, '2022-05-10', 9743, 76370, 5029, 47094, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80505, '2022-05-10', 9856, 76371, 5029, 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 (80506, '2022-05-10', 9831, 76372, 5029, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80507, '2022-05-10', 2821, 76373, 5029, NULL, '1.0000', '3.4086', '3.4086', '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 (80508, '2022-05-10', 2506, 76374, 5029, NULL, '1.0000', '4.1493', '4.1493', '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 (80509, '2022-05-10', 9664, 76375, 5029, 42082, '1.0000', '6.5000', '6.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80510, '2022-05-10', 7532, 76376, 5029, NULL, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80511, '2022-05-10', 7585, 76377, 5029, NULL, '1.0000', '3.9600', '3.9600', '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 (80512, '2022-05-10', 1840, 76378, 5029, NULL, '4.0000', '0.2400', '0.2400', '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 (80513, '2022-05-10', 2289, 76379, 5029, NULL, '6.0000', '0.1400', '0.1400', '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 (80514, '2022-05-10', 2821, 76380, 5029, NULL, '1.0000', '3.4086', '3.4086', '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 (80515, '2022-05-10', 2617, 76381, 5029, 54513, '1.0000', '5.1800', '5.1800', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80516, '2022-05-10', 2079, 76382, 5029, 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 (80517, '2022-05-10', 7640, 76383, 5029, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80518, '2022-05-10', 2169, 76384, 5029, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80519, '2022-05-10', 3019, 76385, 5029, NULL, '1.0000', '7.8000', '7.8000', '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 (80520, '2022-05-10', 9827, 76386, 5029, 51223, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80521, '2022-05-10', 9891, 76387, 5029, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80522, '2022-05-10', 2315, 76388, 5029, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80523, '2022-05-10', 8878, 76389, 5029, NULL, '1.0000', '6.6700', '6.6700', '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 (80524, '2022-05-10', 2289, 76390, 5029, NULL, '4.0000', '0.1400', '0.1400', '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 (80525, '2022-05-10', 7483, 76391, 5029, NULL, '1.0000', '0.4200', '0.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 (80526, '2022-05-10', 1787, 76392, 5029, NULL, '1.0000', '0.5000', '0.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 (80527, '2022-05-10', 2642, 76393, 5029, 55092, '1.0000', '10.0843', '10.0843', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80528, '2022-05-10', 8979, 76394, 5029, 51990, '2.0000', '1.0000', '1.0000', '1.2000', '1.2000', '31.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80529, '2022-05-10', 1398, 76395, 5029, 53656, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80530, '2022-05-10', 1867, 76396, 5029, 54516, '1.0000', '3.6953', '3.6953', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80531, '2022-05-10', 7583, 76397, 5029, NULL, '1.0000', '4.0000', '4.0000', '0.9900', '0.9900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80532, '2022-05-10', 7641, 76398, 5029, NULL, '1.0000', '1.9000', '1.9000', '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 (80533, '2022-05-10', 2169, 76399, 5029, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80534, '2022-05-10', 9794, 76400, 5029, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '85.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80535, '2022-05-10', 8980, 76401, 5029, NULL, '1.0000', '9.5000', '9.5000', '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 (80536, '2022-05-10', 2699, 76402, 5029, NULL, '2.0000', '2.5833', '2.5833', '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 (80537, '2022-05-10', 2302, 76403, 5029, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80538, '2022-05-10', 1311, 76404, 5029, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '28.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80539, '2022-05-10', 7708, 76405, 5029, NULL, '1.0000', '6.3400', '6.3400', '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 (80540, '2022-05-10', 2296, 76406, 5029, NULL, '1.0000', '14.4550', '14.4550', '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 (80541, '2022-05-10', 1532, 76407, 5029, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80542, '2022-05-10', 8085, 76408, 5029, NULL, '3.0000', '14.0000', '14.0000', '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 (80543, '2022-05-10', 1501, 76409, 5029, NULL, '1.0000', '1.8760', '1.8760', '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 (80544, '2022-05-10', 2315, 76410, 5029, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '146.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80545, '2022-05-10', 2135, 76411, 5029, NULL, '1.0000', '-0.2588', '-0.2588', '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 (80546, '2022-05-10', 1935, 76412, 5029, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80547, '2022-05-10', 1665, 76413, 5029, 51312, '10.0000', '1.1432', '1.1432', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80548, '2022-05-10', 1340, 76414, 5029, 54554, '1.0000', '3.6111', '3.6111', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80549, '2022-05-10', 8086, 76415, 5029, NULL, '1.0000', '9.3000', '9.3000', '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 (80550, '2022-05-10', 9891, 76416, 5029, 54573, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80551, '2022-05-10', 1590, 76417, 5029, 54532, '1.0000', '2.1402', '2.1402', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80552, '2022-05-10', 2384, 76418, 5029, NULL, '6.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (80553, '2022-05-10', 7886, 76419, 5029, NULL, '1.0000', '14.5000', '14.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 (80554, '2022-05-10', 3001, 76420, 5029, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80555, '2022-05-10', 2068, 76421, 5029, 53947, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80556, '2022-05-10', 7938, 76422, 5029, NULL, '1.0000', '2.9000', '2.9000', '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 (80557, '2022-05-10', 2156, 76423, 5029, 19853, '1.0000', '3.2500', '3.2500', '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 (80558, '2022-05-10', 2169, 76424, 5029, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80559, '2022-05-10', 2353, 76425, 5029, NULL, '1.0000', '3.9633', '3.9633', '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 (80560, '2022-05-10', 2109, 76426, 5029, NULL, '1.0000', '0.0413', '0.0413', '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 (80561, '2022-05-10', 2302, 76427, 5029, 50226, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80562, '2022-05-10', 9830, 76428, 5029, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80563, '2022-05-10', 2315, 76429, 5029, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '146.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80564, '2022-05-10', 1670, 76430, 5029, NULL, '1.0000', '7.2499', '7.2499', '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 (80565, '2022-05-10', 1646, 76431, 5029, 54562, '1.0000', '5.5961', '5.5961', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80566, '2022-05-10', 1804, 76432, 5029, NULL, '1.0000', '4.3180', '4.3180', '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 (80567, '2022-05-10', 9870, 76433, 5029, 55105, '1.0000', '6.2400', '6.2400', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80568, '2022-05-10', 8740, 76434, 5029, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80569, '2022-05-10', 2416, 76435, 5029, 54068, '1.0000', '1.2172', '1.2172', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80570, '2022-05-10', 9762, 76436, 5029, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80571, '2022-05-10', 2260, 76437, 5029, 54937, '1.0000', '4.5431', '4.5431', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80572, '2022-05-10', 1501, 76438, 5029, NULL, '1.0000', '1.8760', '1.8760', '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 (80573, '2022-05-10', 2384, 76439, 5029, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80574, '2022-05-10', 1340, 76440, 5029, 54554, '1.0000', '3.6111', '3.6111', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80575, '2022-05-10', 8700, 76441, 5029, 39216, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80576, '2022-05-10', 8444, 76442, 5029, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80577, '2022-05-10', 8878, 76443, 5029, NULL, '1.0000', '6.6700', '6.6700', '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 (80578, '2022-05-10', 1337, 76444, 5029, NULL, '1.0000', '2.0000', '2.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 (80579, '2022-05-10', 9811, 76445, 5030, NULL, '1.0000', '29.0000', '29.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 (80580, '2022-05-10', 7518, 76446, 5030, NULL, '1.0000', '7.8200', '7.8200', '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 (80581, '2022-05-10', 2352, 76447, 5030, 3855, '-158.0000', '20.0000', '20.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 (80582, '2022-05-10', 2352, 76447, 5030, NULL, '163.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-163.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80583, '2022-05-10', 7608, 76448, 5030, NULL, '1.0000', '6.9800', '6.9800', '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 (80584, '2022-05-10', 9089, 76449, 5030, NULL, '1.0000', '3.8000', '3.8000', '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 (80585, '2022-05-10', 9775, 76450, 5030, NULL, '1.0000', '7.9000', '7.9000', '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 (80586, '2022-05-10', 9819, 76451, 5030, NULL, '3.0000', '3.6300', '3.6300', '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 (80587, '2022-05-10', 7641, 76452, 5030, NULL, '1.0000', '1.9000', '1.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 (80588, '2022-05-10', 8084, 76453, 5030, NULL, '1.0000', '12.7000', '12.7000', '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 (80589, '2022-05-10', 8889, 76454, 5030, NULL, '1.0000', '39.0000', '39.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 (80590, '2022-05-10', 8666, 76455, 5030, NULL, '1.0000', '0.4600', '0.4600', '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 (80591, '2022-05-10', 7457, 76456, 5030, NULL, '4.0000', '6.0000', '6.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 (80592, '2022-05-10', 7524, 76457, 5030, NULL, '2.0000', '11.9500', '11.9500', '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 (80593, '2022-05-10', 9783, 76458, 5030, NULL, '1.0000', '17.6000', '17.6000', '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 (80594, '2022-05-10', 9891, 76459, 5030, NULL, '1.0000', '17.4000', '17.4000', '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 (80595, '2022-05-10', 2287, 76460, 5030, 2947, '-27.0000', '1.8000', '1.8000', '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 (80596, '2022-05-10', 2287, 76460, 5030, NULL, '29.0000', '1.8000', '1.8000', '4.0000', '4.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80597, '2022-05-10', 2506, 76461, 5030, 16244, '-13.0000', '3.4900', '3.4900', '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 (80598, '2022-05-10', 2506, 76461, 5030, NULL, '14.0000', '3.4900', '3.4900', '6.5000', '6.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 (80599, '2022-05-10', 8415, 76462, 5030, NULL, '1.0000', '3.2500', '3.2500', '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 (80600, '2022-05-10', 8000, 76463, 5030, NULL, '1.0000', '6.8400', '6.8400', '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 (80601, '2022-05-10', 9868, 76464, 5030, 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 (80602, '2022-05-10', 8452, 76465, 5030, NULL, '1.0000', '11.5000', '11.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 (80603, '2022-05-10', 9272, 76466, 5030, NULL, '1.0000', '3.1000', '3.1000', '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 (80604, '2022-05-10', 7560, 76467, 5030, NULL, '1.0000', '33.0200', '33.0200', '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 (80605, '2022-05-10', 8079, 76468, 5030, NULL, '1.0000', '14.3600', '14.3600', '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 (80606, '2022-05-10', 1935, 76469, 5030, 5586, '-78.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 (80607, '2022-05-10', 1935, 76469, 5030, NULL, '79.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80608, '2022-05-10', 7781, 76470, 5030, NULL, '2.0000', '4.2500', '4.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 (80609, '2022-05-10', 7524, 76471, 5030, NULL, '1.0000', '11.9500', '11.9500', '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 (80610, '2022-05-10', 9811, 76472, 5030, NULL, '1.0000', '29.0000', '29.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 (80611, '2022-05-10', 7775, 76473, 5030, 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 (80612, '2022-05-10', 7641, 76474, 5030, NULL, '1.0000', '1.9000', '1.9000', '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 (80613, '2022-05-10', 1806, 76475, 5030, NULL, '1.0000', '28.1300', '28.1300', '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 (80614, '2022-05-10', 2906, 76476, 5030, 18651, '-12.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 (80615, '2022-05-10', 2906, 76476, 5030, NULL, '13.0000', '2.6000', '2.6000', '4.0000', '4.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 (80616, '2022-05-10', 7954, 76477, 5030, 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 (80617, '2022-05-10', 9631, 76478, 5030, NULL, '1.0000', '7.0000', '7.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 (80618, '2022-05-10', 9852, 76479, 5030, 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 (80619, '2022-05-10', 8925, 76480, 5030, NULL, '1.0000', '2.4000', '2.4000', '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 (80620, '2022-05-10', 8810, 76481, 5030, NULL, '1.0000', '1.6000', '1.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 (80621, '2022-05-10', 8677, 76482, 5030, NULL, '3.0000', '1.2800', '1.2800', '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 (80622, '2022-05-10', 9794, 76483, 5030, NULL, '1.0000', '1.0800', '1.0800', '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 (80623, '2022-05-10', 9747, 76484, 5030, NULL, '1.0000', '0.6500', '0.6500', '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 (80624, '2022-05-10', 7638, 76485, 5030, NULL, '1.0000', '12.0000', '12.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 (80625, '2022-05-10', 9272, 76486, 5030, NULL, '2.0000', '3.1000', '3.1000', '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 (80626, '2022-05-10', 7457, 76487, 5030, 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 (80627, '2022-05-10', 9817, 76488, 5030, NULL, '1.0000', '3.9000', '3.9000', '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 (80628, '2022-05-10', 8444, 76489, 5030, NULL, '1.0000', '1.6000', '1.6000', '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 (80629, '2022-05-10', 8497, 76490, 5030, NULL, '1.0000', '9.0000', '9.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 (80630, '2022-05-10', 7506, 76491, 5030, NULL, '1.0000', '15.0000', '15.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 (80631, '2022-05-10', 7947, 76492, 5030, NULL, '1.0000', '14.4400', '14.4400', '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 (80632, '2022-05-10', 2299, 76493, 5030, 22479, '-6.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 (80633, '2022-05-10', 2299, 76493, 5030, NULL, '7.0000', '6.0000', '6.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 (80634, '2022-05-10', 7657, 76494, 5030, NULL, '1.0000', '11.3200', '11.3200', '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 (80635, '2022-05-10', 9177, 76495, 5030, 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 (80636, '2022-05-10', 8878, 76496, 5030, NULL, '1.0000', '6.6700', '6.6700', '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 (80637, '2022-05-10', 7674, 76497, 5030, NULL, '1.0000', '1.3000', '1.3000', '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 (80638, '2022-05-10', 8744, 76498, 5030, NULL, '1.0000', '3.6600', '3.6600', '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 (80639, '2022-05-10', 1935, 76499, 5030, 5586, '-78.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 (80640, '2022-05-10', 1935, 76499, 5030, NULL, '80.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80641, '2022-05-10', 7411, 76500, 5030, NULL, '1.0000', '1.3500', '1.3500', '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 (80642, '2022-05-10', 8924, 76501, 5030, NULL, '3.0000', '4.5000', '4.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 (80643, '2022-05-10', 9084, 76502, 5030, NULL, '1.0000', '9.1000', '9.1000', '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 (80644, '2022-05-10', 7713, 76503, 5030, NULL, '2.0000', '0.3800', '0.3800', '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 (80645, '2022-05-10', 7531, 76504, 5030, NULL, '1.0000', '3.1900', '3.1900', '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 (80646, '2022-05-10', 7608, 76505, 5030, NULL, '1.0000', '6.9800', '6.9800', '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 (80647, '2022-05-10', 8476, 76506, 5030, NULL, '1.0000', '23.0000', '23.0000', '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 (80648, '2022-05-10', 7558, 76507, 5030, 33814, '5.0000', '1.9700', '1.9700', '3.7000', '3.7000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80649, '2022-05-10', 7558, 76507, 5030, NULL, '15.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (80650, '2022-05-10', 1841, 76508, 5030, NULL, '2.0000', '142.5780', '142.5780', '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 (80651, '2022-05-10', 1840, 76509, 5030, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (80652, '2022-05-10', 2289, 76510, 5030, 2949, '-138.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 (80653, '2022-05-10', 2289, 76510, 5030, NULL, '140.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80654, '2022-05-10', 3056, 76511, 5030, NULL, '1.0000', '52.4500', '52.4500', '68.0000', '68.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80655, '2022-05-10', 1855, 76512, 5030, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (80656, '2022-05-10', 7672, 76513, 5030, NULL, '1.0000', '1.0200', '1.0200', '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 (80657, '2022-05-10', 7879, 76514, 5030, NULL, '5.0000', '1.9800', '1.9800', '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 (80658, '2022-05-10', 8457, 76515, 5030, NULL, '1.0000', '4.5000', '4.5000', '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 (80659, '2022-05-10', 7564, 76516, 5030, 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 (80660, '2022-05-10', 7518, 76517, 5030, NULL, '2.0000', '7.8200', '7.8200', '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 (80661, '2022-05-10', 7640, 76518, 5030, 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 (80662, '2022-05-10', 9714, 76519, 5030, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80663, '2022-05-10', 1338, 76520, 5031, 16502, '-12.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 (80664, '2022-05-10', 1338, 76520, 5031, NULL, '13.0000', '4.0000', '4.0000', '6.5000', '6.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 (80665, '2022-05-10', 7641, 76521, 5031, NULL, '1.0000', '1.9000', '1.9000', '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 (80666, '2022-05-10', 2270, 76522, 5031, 2930, '-11.0000', '0.9880', '0.9880', '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 (80667, '2022-05-10', 2270, 76522, 5031, NULL, '12.0000', '0.9880', '0.9880', '7.0000', '7.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 (80668, '2022-05-10', 7756, 76523, 5031, NULL, '1.0000', '2.5000', '2.5000', '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 (80669, '2022-05-10', 1695, 76524, 5032, 54385, '1.0000', '35.4211', '35.4211', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80670, '2022-05-10', 2315, 76525, 5032, 3069, '1.0000', '0.3300', '0.3300', '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 (80671, '2022-05-10', 8069, 76526, 5033, NULL, '1.0000', '29.1700', '29.1700', '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 (80672, '2022-05-10', 8744, 76527, 5033, NULL, '1.0000', '3.6600', '3.6600', '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 (80673, '2022-05-10', 1618, 76528, 5034, 54973, '1.0000', '-83.7318', '-83.7318', '19.0000', '19.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80674, '2022-05-10', 8065, 76529, 5034, NULL, '1.0000', '32.0000', '32.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 (80675, '2022-05-10', 2315, 76530, 5034, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '137.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80676, '2022-05-11', 1756, 76531, 5035, NULL, '1.0000', '4.9900', '4.9900', '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 (80677, '2022-05-11', 2948, 76532, 5035, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80678, '2022-05-11', 2384, 76533, 5035, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80679, '2022-05-11', 1837, 76534, 5035, NULL, '1.0000', '4.1395', '4.1395', '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 (80680, '2022-05-11', 1545, 76535, 5035, 45158, '1.0000', '8.4806', '8.4806', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80681, '2022-05-11', 2302, 76536, 5035, 48638, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80682, '2022-05-11', 2283, 76537, 5035, 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 (80683, '2022-05-11', 9791, 76538, 5035, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80684, '2022-05-11', 1787, 76539, 5035, NULL, '1.0000', '0.5000', '0.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 (80685, '2022-05-11', 2379, 76540, 5035, NULL, '1.0000', '0.2954', '0.2954', '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 (80686, '2022-05-11', 1837, 76541, 5035, NULL, '2.0000', '4.1395', '4.1395', '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 (80687, '2022-05-11', 2169, 76542, 5035, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80688, '2022-05-11', 1837, 76543, 5035, NULL, '2.0000', '4.1395', '4.1395', '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 (80689, '2022-05-11', 2135, 76544, 5035, NULL, '1.0000', '-0.2588', '-0.2588', '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 (80690, '2022-05-11', 7392, 76545, 5035, NULL, '1.0000', '19.5300', '19.5300', '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 (80691, '2022-05-11', 2105, 76546, 5035, 54575, '1.0000', '2.4149', '2.4149', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80692, '2022-05-11', 1674, 76547, 5035, NULL, '1.0000', '11.2958', '11.2958', '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 (80693, '2022-05-11', 2965, 76548, 5035, NULL, '1.0000', '8.3288', '8.3288', '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 (80694, '2022-05-11', 9695, 76549, 5035, 55365, '1.0000', '5.1386', '5.1386', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80695, '2022-05-11', 2169, 76550, 5035, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80696, '2022-05-11', 8170, 76551, 5035, NULL, '1.0000', '5.7500', '5.7500', '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 (80697, '2022-05-11', 9794, 76552, 5035, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80698, '2022-05-11', 2948, 76553, 5035, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80699, '2022-05-11', 8711, 76554, 5035, NULL, '1.0000', '5.1000', '5.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 (80700, '2022-05-11', 2821, 76555, 5035, NULL, '1.0000', '3.4086', '3.4086', '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 (80701, '2022-05-11', 1839, 76556, 5035, NULL, '1.0000', '-11631.9088', '-11631.9088', '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 (80702, '2022-05-11', 7379, 76557, 5035, NULL, '1.0000', '12.5100', '12.5100', '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 (80703, '2022-05-11', 9839, 76558, 5035, NULL, '1.0000', '15.0200', '15.0200', '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 (80704, '2022-05-11', 8876, 76559, 5035, NULL, '1.0000', '0.9900', '0.9900', '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 (80705, '2022-05-11', 1945, 76560, 5035, 52328, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80706, '2022-05-11', 9794, 76561, 5035, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80707, '2022-05-11', 7664, 76562, 5036, NULL, '1.0000', '3.6000', '3.6000', '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 (80708, '2022-05-11', 9204, 76563, 5036, NULL, '1.0000', '14.1514', '14.1514', '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 (80709, '2022-05-11', 9590, 76564, 5036, NULL, '1.0000', '-6.6667', '-6.6667', '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 (80710, '2022-05-11', 8401, 76565, 5036, NULL, '1.0000', '23.1600', '23.1600', '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 (80711, '2022-05-11', 7506, 76566, 5036, NULL, '1.0000', '15.0000', '15.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 (80712, '2022-05-11', 9881, 76567, 5036, 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 (80713, '2022-05-11', 2315, 76568, 5036, 54915, '4.0000', '0.7701', '0.7701', '1.0000', '1.0000', '133.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80714, '2022-05-11', 2088, 76569, 5036, 54566, '1.0000', '1.8472', '1.8472', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80715, '2022-05-11', 9911, 76570, 5036, 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 (80716, '2022-05-11', 7507, 76571, 5036, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80717, '2022-05-11', 9578, 76572, 5036, 54578, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80718, '2022-05-11', 1501, 76573, 5036, NULL, '1.0000', '1.8760', '1.8760', '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 (80719, '2022-05-11', 2921, 76574, 5036, NULL, '1.0000', '4.9000', '4.9000', '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 (80720, '2022-05-11', 3029, 76575, 5036, NULL, '1.0000', '-204.9360', '-204.9360', '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 (80721, '2022-05-11', 9880, 76576, 5036, NULL, '1.0000', '3.4200', '3.4200', '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 (80722, '2022-05-11', 2916, 76577, 5037, 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 (80723, '2022-05-11', 1499, 76578, 5037, 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 (80724, '2022-05-11', 1999, 76579, 5037, 6362, '-14.0000', '6.0000', '6.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 (80725, '2022-05-11', 1999, 76579, 5037, NULL, '15.0000', '6.0000', '6.0000', '12.0000', '12.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 (80726, '2022-05-11', 2858, 76580, 5037, 17772, '-74.0000', '1.0000', '1.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 (80727, '2022-05-11', 2858, 76580, 5037, NULL, '75.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80728, '2022-05-11', 9895, 76581, 5037, 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 (80729, '2022-05-11', 2036, 76582, 5037, 4277, '-12.0000', '8.0000', '8.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 (80730, '2022-05-11', 2036, 76582, 5037, NULL, '13.0000', '8.0000', '8.0000', '10.0000', '10.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 (80731, '2022-05-11', 1602, 76583, 5037, 5897, '-138.0000', '6.7859', '6.7859', '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 (80732, '2022-05-11', 1602, 76583, 5037, NULL, '139.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-139.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80733, '2022-05-11', 2395, 76584, 5037, 4202, '-5.0000', '27.0000', '27.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 (80734, '2022-05-11', 2395, 76584, 5037, NULL, '6.0000', '27.0000', '27.0000', '37.0000', '37.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 (80735, '2022-05-11', 9578, 76585, 5037, NULL, '1.0000', '8.0000', '8.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 (80736, '2022-05-11', 2575, 76586, 5037, 22338, '1.0000', '12.8500', '12.8500', '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 (80737, '2022-05-11', 2787, 76587, 5037, 16140, '1.0000', '16.0200', '16.0200', '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 (80738, '2022-05-11', 2366, 76588, 5037, 3833, '-54.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 (80739, '2022-05-11', 2366, 76588, 5037, NULL, '56.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80740, '2022-05-11', 2339, 76589, 5037, 3842, '-6.0000', '7.2300', '7.2300', '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 (80741, '2022-05-11', 2339, 76589, 5037, NULL, '7.0000', '7.2300', '7.2300', '15.5000', '15.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 (80742, '2022-05-11', 2268, 76590, 5037, NULL, '2.0000', '7.3000', '7.3000', '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 (80743, '2022-05-11', 2643, 76591, 5037, NULL, '1.0000', '0.8700', '0.8700', '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 (80744, '2022-05-11', 1590, 76592, 5037, 22260, '1.0000', '1.7100', '1.7100', '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 (80745, '2022-05-11', 7354, 76593, 5038, NULL, '1.0000', '-2.5000', '-2.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 (80746, '2022-05-11', 7674, 76594, 5038, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80747, '2022-05-11', 7959, 76595, 5038, NULL, '2.0000', '9.6000', '9.6000', '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 (80748, '2022-05-11', 7460, 76596, 5038, NULL, '4.0000', '294.7000', '294.7000', '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 (80749, '2022-05-11', 7557, 76597, 5038, NULL, '2.0000', '0.5000', '0.5000', '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 (80750, '2022-05-11', 7547, 76598, 5038, NULL, '2.0000', '0.0000', '0.0000', '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 (80751, '2022-05-11', 8444, 76599, 5038, 55280, '1.0000', '5.8648', '5.8648', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80752, '2022-05-11', 7558, 76600, 5038, NULL, '1.0000', '1.4867', '1.4867', '3.7000', '3.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 (80753, '2022-05-11', 1532, 76601, 5038, NULL, '3.0000', '90.0000', '90.0000', '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 (80754, '2022-05-11', 2242, 76602, 5038, 55337, '3.0000', '0.7467', '0.7467', '1.5000', '1.5000', '147.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80755, '2022-05-11', 7490, 76603, 5038, 51289, '1.0000', '2.7486', '2.7486', '0.4000', '0.4000', '81.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80756, '2022-05-11', 7608, 76604, 5038, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80757, '2022-05-11', 8304, 76605, 5038, 54500, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80758, '2022-05-11', 8359, 76606, 5038, 54275, '2.0000', '801.6266', '801.6266', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80759, '2022-05-11', 7333, 76607, 5038, NULL, '5.0000', '-0.5856', '-0.5856', '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 (80760, '2022-05-11', 8362, 76608, 5038, NULL, '2.0000', '8.4750', '8.4750', '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 (80761, '2022-05-11', 9891, 76609, 5038, 55109, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '11.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80762, '2022-05-11', 9569, 76610, 5038, 55306, '1.0000', '132.2000', '132.2000', '174.5000', '174.5000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80763, '2022-05-11', 2806, 76611, 5039, 54832, '1.0000', '6.2500', '6.2500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80764, '2022-05-11', 1406, 76612, 5039, 54555, '1.0000', '20.9420', '20.9420', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80765, '2022-05-11', 2655, 76613, 5039, NULL, '1.0000', '5.6000', '5.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 (80766, '2022-05-11', 9831, 76614, 5039, 55091, '2.0000', '1.6952', '1.6952', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80767, '2022-05-11', 1488, 76615, 5039, 53946, '1.0000', '4.2833', '4.2833', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80768, '2022-05-11', 7917, 76616, 5040, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '113.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80769, '2022-05-11', 8744, 76617, 5040, 55069, '1.0000', '3.8469', '3.8469', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80770, '2022-05-11', 8322, 76618, 5040, NULL, '1.0000', '7.0000', '7.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 (80771, '2022-05-11', 7817, 76619, 5040, NULL, '1.0000', '28.4000', '28.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80772, '2022-05-11', 7756, 76620, 5040, NULL, '1.0000', '17.8058', '17.8058', '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 (80773, '2022-05-11', 8878, 76621, 5040, 54503, '2.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80774, '2022-05-11', 9204, 76622, 5040, 55352, '1.0000', '6.1897', '6.1897', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80775, '2022-05-11', 7608, 76623, 5040, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80776, '2022-05-11', 7526, 76624, 5041, 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 (80777, '2022-05-11', 1450, 76625, 5041, 5570, '-22.0000', '61.1074', '61.1074', '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 (80778, '2022-05-11', 1450, 76625, 5041, NULL, '32.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80779, '2022-05-11', 2061, 76626, 5041, 2164, '-5.0000', '10.9800', '10.9800', '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 (80780, '2022-05-11', 2061, 76626, 5041, NULL, '6.0000', '10.9800', '10.9800', '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 (80781, '2022-05-11', 3058, 76627, 5042, 54912, '2.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80782, '2022-05-11', 9698, 76628, 5042, 52196, '2.0000', '6.8000', '6.8000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80783, '2022-05-11', 2068, 76629, 5042, 53947, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80784, '2022-05-11', 7507, 76630, 5042, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80785, '2022-05-11', 2295, 76631, 5042, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80786, '2022-05-11', 2769, 76632, 5042, 54561, '2.0000', '1.8925', '1.8925', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80787, '2022-05-11', 1532, 76633, 5042, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80788, '2022-05-11', 2293, 76634, 5042, NULL, '1.0000', '10.2680', '10.2680', '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 (80789, '2022-05-11', 8133, 76635, 5042, NULL, '1.0000', '-14907.1915', '-14907.1915', '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 (80790, '2022-05-11', 1580, 76636, 5042, 54914, '3.0000', '1.4639', '1.4639', '2.0000', '2.0000', '94.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80791, '2022-05-11', 7507, 76637, 5042, 54888, '2.0000', '0.3606', '0.3606', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80792, '2022-05-11', 1501, 76638, 5042, NULL, '1.0000', '1.8760', '1.8760', '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 (80793, '2022-05-11', 8170, 76639, 5042, NULL, '1.0000', '5.7500', '5.7500', '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 (80794, '2022-05-11', 2999, 76640, 5042, 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 (80795, '2022-05-11', 1342, 76641, 5042, 51509, '1.0000', '12.1789', '12.1789', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80796, '2022-05-11', 2315, 76642, 5042, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '132.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80797, '2022-05-11', 2821, 76643, 5042, NULL, '1.0000', '3.4086', '3.4086', '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 (80798, '2022-05-11', 2948, 76644, 5042, 52189, '1.0000', '0.9158', '0.9158', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80799, '2022-05-11', 2545, 76645, 5042, 51330, '1.0000', '6.4337', '6.4337', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80800, '2022-05-11', 8401, 76646, 5042, NULL, '1.0000', '23.1600', '23.1600', '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 (80801, '2022-05-11', 2887, 76647, 5042, 55148, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80802, '2022-05-11', 9881, 76648, 5042, 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 (80803, '2022-05-11', 2269, 76649, 5042, NULL, '1.0000', '4.2967', '4.2967', '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 (80804, '2022-05-11', 3017, 76650, 5042, 54537, '1.0000', '3.9829', '3.9829', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80805, '2022-05-11', 9738, 76651, 5042, 54576, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80806, '2022-05-11', 1839, 76652, 5042, NULL, '1.0000', '-11631.9088', '-11631.9088', '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 (80807, '2022-05-11', 2302, 76653, 5042, 37783, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80808, '2022-05-11', 2302, 76653, 5042, 23683, '1.0000', '5.2000', '5.2000', '7.0000', '7.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 (80809, '2022-05-11', 1314, 76654, 5042, 54908, '2.0000', '1.5288', '1.5288', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80810, '2022-05-11', 1499, 76655, 5043, 54918, '4.0000', '0.3993', '0.3993', '0.6000', '0.6000', '67.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80811, '2022-05-11', 2821, 76656, 5043, NULL, '1.0000', '3.4086', '3.4086', '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 (80812, '2022-05-11', 2015, 76657, 5043, 55099, '2.0000', '4.3378', '4.3378', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80813, '2022-05-11', 7482, 76658, 5043, NULL, '1.0000', '2.5019', '2.5019', '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 (80814, '2022-05-11', 1501, 76659, 5043, NULL, '1.0000', '1.8760', '1.8760', '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 (80815, '2022-05-11', 2315, 76660, 5043, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '131.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80816, '2022-05-11', 7357, 76661, 5043, NULL, '1.0000', '12.2000', '12.2000', '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 (80817, '2022-05-11', 1602, 76662, 5043, 54954, '1.0000', '6.9125', '6.9125', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80818, '2022-05-11', 1812, 76663, 5043, 54909, '1.0000', '9.3101', '9.3101', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80819, '2022-05-11', 2068, 76664, 5043, 53947, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80820, '2022-05-11', 9722, 76665, 5043, 47061, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80821, '2022-05-11', 1867, 76666, 5043, 54516, '1.0000', '3.6953', '3.6953', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80822, '2022-05-11', 2275, 76667, 5043, 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 (80823, '2022-05-11', 9800, 76668, 5043, 54162, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '5.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80824, '2022-05-11', 2346, 76669, 5044, NULL, '1.0000', '5.0800', '5.0800', '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 (80825, '2022-05-11', 2068, 76670, 5044, 53947, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80826, '2022-05-11', 2821, 76671, 5044, NULL, '1.0000', '3.4086', '3.4086', '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 (80827, '2022-05-11', 8746, 76672, 5044, 55412, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80828, '2022-05-11', 8449, 76673, 5044, 51363, '1.0000', '11.9000', '11.9000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80829, '2022-05-11', 1501, 76674, 5044, NULL, '1.0000', '1.8760', '1.8760', '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 (80830, '2022-05-11', 2821, 76675, 5044, NULL, '1.0000', '3.4086', '3.4086', '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 (80831, '2022-05-11', 9846, 76676, 5044, 54166, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80832, '2022-05-11', 1746, 76677, 5045, 19863, '1.0000', '3.5000', '3.5000', '7.5000', '7.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 (80833, '2022-05-11', 8444, 76678, 5045, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80834, '2022-05-11', 2384, 76679, 5045, NULL, '3.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (80835, '2022-05-11', 2353, 76680, 5045, NULL, '1.0000', '3.9633', '3.9633', '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 (80836, '2022-05-11', 2109, 76681, 5045, NULL, '8.0000', '0.0413', '0.0413', '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 (80837, '2022-05-11', 2255, 76682, 5045, 52331, '2.0000', '17.1339', '17.1339', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80838, '2022-05-11', 2289, 76683, 5045, NULL, '3.0000', '0.1400', '0.1400', '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 (80839, '2022-05-11', 2275, 76684, 5045, 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 (80840, '2022-05-11', 1602, 76685, 5045, 54954, '1.0000', '6.9125', '6.9125', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80841, '2022-05-11', 8744, 76686, 5046, 55422, '1.0000', '2.1255', '2.1255', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80842, '2022-05-11', 1427, 76687, 5046, 52220, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80843, '2022-05-11', 1746, 76688, 5046, 19863, '1.0000', '3.5000', '3.5000', '7.5000', '7.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 (80844, '2022-05-11', 1521, 76689, 5047, 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 (80845, '2022-05-11', 2821, 76690, 5047, NULL, '1.0000', '3.4086', '3.4086', '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 (80846, '2022-05-11', 1578, 76691, 5047, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80847, '2022-05-11', 9798, 76692, 5048, NULL, '1.0000', '13.9000', '13.9000', '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 (80848, '2022-05-11', 8677, 76693, 5048, NULL, '2.0000', '1.2800', '1.2800', '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 (80849, '2022-05-11', 7402, 76694, 5048, NULL, '1.0000', '18.9000', '18.9000', '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 (80850, '2022-05-11', 7672, 76695, 5048, NULL, '2.0000', '1.0200', '1.0200', '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 (80851, '2022-05-11', 2506, 76696, 5048, 16244, '-14.0000', '3.4900', '3.4900', '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 (80852, '2022-05-11', 2506, 76696, 5048, NULL, '15.0000', '3.4900', '3.4900', '6.5000', '6.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 (80853, '2022-05-11', 7879, 76697, 5048, NULL, '3.0000', '1.9800', '1.9800', '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 (80854, '2022-05-11', 2962, 76698, 5048, NULL, '2.0000', '4.0000', '4.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 (80855, '2022-05-11', 7952, 76699, 5048, 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 (80856, '2022-05-11', 9526, 76700, 5048, NULL, '2.0000', '7.0000', '7.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 (80857, '2022-05-11', 7674, 76701, 5048, NULL, '2.0000', '1.3000', '1.3000', '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 (80858, '2022-05-11', 2315, 76702, 5048, 2735, '-330.0000', '0.3300', '0.3300', '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 (80859, '2022-05-11', 2315, 76702, 5048, NULL, '331.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-331.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80860, '2022-05-11', 7713, 76703, 5048, NULL, '6.0000', '0.3800', '0.3800', '0.6000', '0.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 (80861, '2022-05-11', 2491, 76704, 5048, 6228, '-28.0000', '12.2000', '12.2000', '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 (80862, '2022-05-11', 2491, 76704, 5048, NULL, '29.0000', '12.2000', '12.2000', '17.5000', '17.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80863, '2022-05-11', 7770, 76705, 5048, NULL, '1.0000', '7.8200', '7.8200', '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 (80864, '2022-05-11', 8825, 76706, 5048, 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 (80865, '2022-05-11', 7334, 76707, 5048, NULL, '1.0000', '8.2300', '8.2300', '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 (80866, '2022-05-11', 1463, 76708, 5048, 114, '1.0000', '90.0000', '90.0000', '26.0000', '26.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 (80867, '2022-05-11', 3076, 76709, 5048, 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 (80868, '2022-05-11', 8350, 76710, 5048, NULL, '1.0000', '12.0000', '12.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 (80869, '2022-05-11', 7704, 76711, 5048, NULL, '2.0000', '0.4900', '0.4900', '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 (80870, '2022-05-11', 9911, 76712, 5048, 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 (80871, '2022-05-11', 1329, 76713, 5048, 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 (80872, '2022-05-11', 7588, 76714, 5048, NULL, '1.0000', '6.9000', '6.9000', '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 (80873, '2022-05-11', 7558, 76715, 5048, NULL, '10.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (80874, '2022-05-11', 7333, 76716, 5048, NULL, '2.0000', '13.5000', '13.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 (80875, '2022-05-11', 9198, 76717, 5048, NULL, '3.0000', '5.7000', '5.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 (80876, '2022-05-11', 2284, 76718, 5048, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (80877, '2022-05-11', 7703, 76719, 5048, NULL, '1.0000', '22.9900', '22.9900', '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 (80878, '2022-05-11', 1935, 76720, 5048, 5586, '-81.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 (80879, '2022-05-11', 1935, 76720, 5048, NULL, '82.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80880, '2022-05-11', 7411, 76721, 5048, NULL, '1.0000', '1.3500', '1.3500', '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 (80881, '2022-05-11', 9610, 76722, 5048, 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 (80882, '2022-05-11', 2411, 76723, 5048, 4503, '-2.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 (80883, '2022-05-11', 2411, 76723, 5048, NULL, '3.0000', '1.5000', '1.5000', '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 (80884, '2022-05-11', 7903, 76724, 5048, NULL, '1.0000', '13.0000', '13.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 (80885, '2022-05-11', 2102, 76725, 5048, 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 (80886, '2022-05-11', 7394, 76726, 5048, 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 (80887, '2022-05-11', 8020, 76727, 5048, NULL, '1.0000', '11.9000', '11.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 (80888, '2022-05-11', 2491, 76728, 5048, 6228, '-28.0000', '12.2000', '12.2000', '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 (80889, '2022-05-11', 2491, 76728, 5048, NULL, '29.0000', '12.2000', '12.2000', '17.5000', '17.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80890, '2022-05-11', 8036, 76729, 5048, NULL, '1.0000', '6.7300', '6.7300', '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 (80891, '2022-05-11', 7704, 76730, 5048, NULL, '1.0000', '0.4900', '0.4900', '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 (80892, '2022-05-11', 8038, 76731, 5048, 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 (80893, '2022-05-11', 8756, 76732, 5048, 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 (80894, '2022-05-11', 7787, 76733, 5048, 33793, '1.0000', '10.9000', '10.9000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80895, '2022-05-11', 2506, 76734, 5048, 16244, '-14.0000', '3.4900', '3.4900', '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 (80896, '2022-05-11', 2506, 76734, 5048, NULL, '15.0000', '3.4900', '3.4900', '6.5000', '6.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 (80897, '2022-05-11', 7709, 76735, 5048, NULL, '2.0000', '3.5000', '3.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 (80898, '2022-05-11', 7674, 76736, 5048, NULL, '1.0000', '1.3000', '1.3000', '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 (80899, '2022-05-11', 8359, 76737, 5048, 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 (80900, '2022-05-11', 9088, 76738, 5048, NULL, '1.0000', '15.4000', '15.4000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80901, '2022-05-11', 7787, 76739, 5048, 33793, '1.0000', '10.9000', '10.9000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80902, '2022-05-11', 2315, 76740, 5048, 2735, '-330.0000', '0.3300', '0.3300', '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 (80903, '2022-05-11', 2315, 76740, 5048, NULL, '331.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-331.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80904, '2022-05-11', 9729, 76741, 5048, NULL, '1.0000', '0.6200', '0.6200', '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 (80905, '2022-05-11', 7907, 76742, 5048, NULL, '2.0000', '12.0000', '12.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 (80906, '2022-05-11', 8666, 76743, 5048, NULL, '1.0000', '0.4600', '0.4600', '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 (80907, '2022-05-11', 7672, 76744, 5048, NULL, '3.0000', '1.0200', '1.0200', '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 (80908, '2022-05-11', 8966, 76745, 5048, NULL, '1.0000', '6.8500', '6.8500', '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 (80909, '2022-05-11', 9001, 76746, 5048, NULL, '1.0000', '23.5000', '23.5000', '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 (80910, '2022-05-11', 2352, 76747, 5048, 3855, '-163.0000', '20.0000', '20.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 (80911, '2022-05-11', 2352, 76747, 5048, NULL, '171.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-171.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80912, '2022-05-11', 8534, 76748, 5048, 33821, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80913, '2022-05-11', 2416, 76749, 5049, 55413, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80914, '2022-05-11', 2920, 76750, 5049, 34939, '2.0000', '30.0307', '30.0307', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80915, '2022-05-11', 2473, 76751, 5049, 54837, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80916, '2022-05-11', 9830, 76752, 5049, 55089, '3.0000', '1.9000', '1.9000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80917, '2022-05-11', 1746, 76753, 5049, 19863, '1.0000', '3.5000', '3.5000', '7.5000', '7.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 (80918, '2022-05-11', 9740, 76754, 5049, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80919, '2022-05-11', 2073, 76755, 5050, NULL, '2.0000', '2.3000', '2.3000', '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 (80920, '2022-05-11', 2066, 76756, 5050, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80921, '2022-05-11', 7368, 76757, 5050, 51670, '1.0000', '14.7500', '14.7500', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80922, '2022-05-11', 9794, 76758, 5050, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '81.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80923, '2022-05-11', 9726, 76759, 5050, 52347, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80924, '2022-05-11', 2083, 76760, 5050, 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 (80925, '2022-05-11', 9729, 76761, 5050, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80926, '2022-05-11', 1935, 76762, 5050, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80927, '2022-05-11', 9695, 76763, 5050, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '22.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80928, '2022-05-11', 1863, 76764, 5051, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80929, '2022-05-11', 9747, 76765, 5051, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80930, '2022-05-11', 9275, 76766, 5051, NULL, '1.0000', '6.3000', '6.3000', '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 (80931, '2022-05-11', 2253, 76767, 5051, 55470, '1.0000', '14.3703', '14.3703', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80932, '2022-05-11', 1845, 76768, 5051, 55478, '1.0000', '20.7836', '20.7836', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80933, '2022-05-11', 7756, 76769, 5051, NULL, '1.0000', '26.9296', '26.9296', '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 (80934, '2022-05-11', 7753, 76770, 5051, NULL, '1.0000', '3.1400', '3.1400', '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 (80935, '2022-05-11', 7588, 76771, 5051, NULL, '1.0000', '7.0000', '7.0000', '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 (80936, '2022-05-11', 7482, 76772, 5051, NULL, '1.0000', '3.0500', '3.0500', '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 (80937, '2022-05-11', 7385, 76773, 5051, 55490, '2.0000', '2.5970', '2.5970', '3.7000', '3.7000', '58.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80938, '2022-05-11', 1346, 76774, 5051, 55497, '2.0000', '1.0027', '1.0027', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80939, '2022-05-11', 7848, 76775, 5051, NULL, '1.0000', '15.0000', '15.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 (80940, '2022-05-11', 7703, 76776, 5051, NULL, '1.0000', '0.6500', '0.6500', '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 (80941, '2022-05-11', 3029, 76777, 5051, 54655, '1.0000', '7.0906', '7.0906', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80942, '2022-05-11', 1409, 76778, 5051, 54405, '1.0000', '13.0537', '13.0537', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80943, '2022-05-11', 1863, 76779, 5051, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80944, '2022-05-11', 1665, 76780, 5051, 54639, '1.0000', '1.1801', '1.1801', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80945, '2022-05-11', 7753, 76781, 5051, NULL, '1.0000', '3.1400', '3.1400', '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 (80946, '2022-05-11', 7674, 76782, 5051, 50863, '1.0000', '0.8448', '0.8448', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80947, '2022-05-11', 2768, 76783, 5051, 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 (80948, '2022-05-11', 2293, 76784, 5051, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '68.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80949, '2022-05-11', 1536, 76785, 5051, 55500, '10.0000', '52.5971', '52.5971', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80950, '2022-05-11', 9740, 76786, 5051, 46037, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80951, '2022-05-11', 2068, 76787, 5051, 55506, '1.0000', '11.7097', '11.7097', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80952, '2022-05-11', 2858, 76788, 5051, 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 (80953, '2022-05-11', 7848, 76789, 5051, NULL, '1.0000', '15.0000', '15.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 (80954, '2022-05-11', 1873, 76790, 5051, 54674, '1.0000', '12.9254', '12.9254', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80955, '2022-05-11', 1863, 76791, 5051, 55480, '5.0000', '1.3191', '1.3191', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80956, '2022-05-11', 1715, 76792, 5051, 52258, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80957, '2022-05-11', 7713, 76793, 5051, NULL, '8.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (80958, '2022-05-11', 7702, 76794, 5052, 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 (80959, '2022-05-11', 7630, 76795, 5052, NULL, '2.0000', '10.0000', '10.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 (80960, '2022-05-11', 7317, 76796, 5052, NULL, '1.0000', '19.5500', '19.5500', '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 (80961, '2022-05-11', 7444, 76797, 5052, 33813, '2.0000', '3.5100', '3.5100', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80962, '2022-05-11', 7522, 76798, 5052, NULL, '1.0000', '9.7000', '9.7000', '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 (80963, '2022-05-11', 1935, 76799, 5052, 5586, '-82.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 (80964, '2022-05-11', 1935, 76799, 5052, NULL, '83.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80965, '2022-05-11', 7674, 76800, 5052, NULL, '1.0000', '1.3000', '1.3000', '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 (80966, '2022-05-11', 7338, 76801, 5052, 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 (80967, '2022-05-11', 2332, 76802, 5052, 3835, '-11.0000', '5.8900', '5.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 (80968, '2022-05-11', 2332, 76802, 5052, NULL, '12.0000', '5.8900', '5.8900', '10.0000', '10.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 (80969, '2022-05-11', 9731, 76803, 5052, 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 (80970, '2022-05-11', 9830, 76804, 5053, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80971, '2022-05-11', 7459, 76805, 5053, NULL, '5.0000', '-15.3118', '-15.3118', '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 (80972, '2022-05-11', 8771, 76806, 5053, 44145, '1.0000', '5.0000', '5.0000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80973, '2022-05-11', 9175, 76807, 5053, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80974, '2022-05-11', 2352, 76808, 5053, NULL, '15.0000', '126.2588', '126.2588', '3.5000', '3.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 (80975, '2022-05-11', 2315, 76809, 5053, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '128.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80976, '2022-05-11', 2109, 76810, 5053, NULL, '1.0000', '0.0413', '0.0413', '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 (80977, '2022-05-11', 8771, 76811, 5053, 44145, '1.0000', '5.0000', '5.0000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80978, '2022-05-11', 9830, 76812, 5054, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80979, '2022-05-11', 7459, 76813, 5054, NULL, '5.0000', '-15.3118', '-15.3118', '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 (80980, '2022-05-11', 8771, 76814, 5054, NULL, '1.0000', '5.0000', '5.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 (80981, '2022-05-11', 9175, 76815, 5054, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80982, '2022-05-11', 2352, 76816, 5054, NULL, '15.0000', '126.2588', '126.2588', '3.5000', '3.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 (80983, '2022-05-11', 2315, 76817, 5054, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '125.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80984, '2022-05-11', 2109, 76818, 5054, NULL, '1.0000', '0.0413', '0.0413', '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 (80985, '2022-05-11', 8771, 76819, 5054, NULL, '1.0000', '5.0000', '5.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 (80986, '2022-05-11', 2821, 76820, 5054, NULL, '1.0000', '3.4086', '3.4086', '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 (80987, '2022-05-12', 1912, 76821, 5055, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80988, '2022-05-12', 2169, 76822, 5055, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80989, '2022-05-12', 7713, 76823, 5055, NULL, '2.0000', '24.6545', '24.6545', '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 (80990, '2022-05-12', 1689, 76824, 5055, 54947, '1.0000', '14.8587', '14.8587', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80991, '2022-05-12', 2169, 76825, 5055, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80992, '2022-05-12', 1409, 76826, 5055, 54968, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80993, '2022-05-12', 2068, 76827, 5055, 53947, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80994, '2022-05-12', 1435, 76828, 5055, NULL, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80995, '2022-05-12', 2247, 76829, 5055, 42802, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80996, '2022-05-12', 9732, 76830, 5055, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80997, '2022-05-12', 1746, 76831, 5055, 19863, '1.0000', '3.5000', '3.5000', '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 (80998, '2022-05-12', 2749, 76832, 5055, NULL, '1.0000', '27.0867', '27.0867', '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 (80999, '2022-05-12', 9740, 76833, 5055, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81000, '2022-05-12', 7532, 76834, 5055, NULL, '1.0000', '20.5389', '20.5389', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81001, '2022-05-12', 2699, 76835, 5055, NULL, '1.0000', '3.6019', '3.6019', '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 (81002, '2022-05-12', 9762, 76836, 5055, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81003, '2022-05-12', 8979, 76837, 5055, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81004, '2022-05-12', 2247, 76838, 5055, 42802, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81005, '2022-05-12', 9794, 76839, 5055, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81006, '2022-05-12', 1888, 76840, 5055, 52222, '1.0000', '16.5938', '16.5938', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81007, '2022-05-12', 9747, 76841, 5055, 54928, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81008, '2022-05-12', 9726, 76842, 5055, 52347, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81009, '2022-05-12', 1935, 76843, 5055, 49259, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81010, '2022-05-12', 2821, 76844, 5055, NULL, '1.0000', '3.4086', '3.4086', '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 (81011, '2022-05-12', 9794, 76845, 5055, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81012, '2022-05-12', 9740, 76846, 5055, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81013, '2022-05-12', 1912, 76847, 5055, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81014, '2022-05-12', 9740, 76848, 5055, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81015, '2022-05-12', 1702, 76849, 5055, NULL, '1.0000', '14.5546', '14.5546', '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 (81016, '2022-05-12', 9821, 76850, 5055, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81017, '2022-05-12', 1945, 76851, 5055, 51229, '1.0000', '9.3800', '9.3800', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81018, '2022-05-12', 2169, 76852, 5055, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81019, '2022-05-12', 7565, 76853, 5055, NULL, '1.0000', '0.2000', '0.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 (81020, '2022-05-12', 2379, 76854, 5055, NULL, '1.0000', '0.2954', '0.2954', '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 (81021, '2022-05-12', 7802, 76855, 5055, NULL, '3.0000', '1.1497', '1.1497', '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 (81022, '2022-05-12', 7507, 76856, 5055, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81023, '2022-05-12', 2352, 76857, 5055, NULL, '7.0000', '126.2588', '126.2588', '3.5000', '3.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 (81024, '2022-05-12', 2990, 76858, 5055, 39769, '2.0000', '1.2776', '1.2776', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81025, '2022-05-12', 3058, 76859, 5055, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81026, '2022-05-12', 1609, 76860, 5055, 19393, '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 (81027, '2022-05-12', 1841, 76861, 5055, NULL, '1.0000', '0.2601', '0.2601', '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 (81028, '2022-05-12', 2104, 76862, 5055, 22380, '1.0000', '0.2000', '0.2000', '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 (81029, '2022-05-12', 2001, 76863, 5056, 49441, '1.0000', '3.3333', '3.3333', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81030, '2022-05-12', 9734, 76864, 5056, 54140, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81031, '2022-05-12', 1501, 76865, 5056, 55344, '1.0000', '2.4626', '2.4626', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81032, '2022-05-12', 8457, 76866, 5056, NULL, '1.0000', '4.8554', '4.8554', '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 (81033, '2022-05-12', 7708, 76867, 5056, 55288, '1.0000', '11.0339', '11.0339', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81034, '2022-05-12', 2315, 76868, 5056, 53909, '5.0000', '0.6636', '0.6636', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81035, '2022-05-12', 7780, 76869, 5056, NULL, '1.0000', '-24.3351', '-24.3351', '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 (81036, '2022-05-12', 7859, 76870, 5056, 54101, '1.0000', '12.6364', '12.6364', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81037, '2022-05-12', 9204, 76871, 5056, 55352, '1.0000', '6.1897', '6.1897', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81038, '2022-05-12', 9852, 76872, 5056, 51843, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81039, '2022-05-12', 2315, 76873, 5056, 53909, '2.0000', '0.6636', '0.6636', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81040, '2022-05-12', 2104, 76874, 5056, NULL, '2.0000', '0.2000', '0.2000', '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 (81041, '2022-05-12', 7685, 76875, 5056, NULL, '3.0000', '31.2000', '31.2000', '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 (81042, '2022-05-12', 9178, 76876, 5056, 46013, '1.0000', '4.2725', '4.2725', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81043, '2022-05-12', 8452, 76877, 5056, NULL, '2.0000', '24.6844', '24.6844', '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 (81044, '2022-05-12', 8352, 76878, 5056, NULL, '1.0000', '-153.7209', '-153.7209', '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 (81045, '2022-05-12', 7819, 76879, 5056, 54494, '1.0000', '11.8499', '11.8499', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81046, '2022-05-12', 9685, 76880, 5056, NULL, '1.0000', '34.6600', '34.6600', '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 (81047, '2022-05-12', 7635, 76881, 5056, 52749, '2.0000', '14.3275', '14.3275', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81048, '2022-05-12', 1695, 76882, 5057, 12925, '-11.0000', '15.5000', '15.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 (81049, '2022-05-12', 1695, 76882, 5057, NULL, '12.0000', '15.5000', '15.5000', '26.0000', '26.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 (81050, '2022-05-12', 1690, 76883, 5057, 13150, '1.0000', '7.1466', '7.1466', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 131);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81051, '2022-05-12', 1590, 76884, 5057, 22260, '2.0000', '1.7100', '1.7100', '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 (81052, '2022-05-12', 1620, 76885, 5057, 8955, '-49.0000', '408.8259', '408.8259', '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 (81053, '2022-05-12', 1620, 76885, 5057, NULL, '53.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-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 (81054, '2022-05-12', 1667, 76886, 5057, 9745, '-48.0000', '5.9400', '5.9400', '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 (81055, '2022-05-12', 1667, 76886, 5057, NULL, '49.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81056, '2022-05-12', 1519, 76887, 5057, 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 (81057, '2022-05-12', 1822, 76888, 5057, 8225, '-146.0000', '2.4000', '2.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 (81058, '2022-05-12', 1822, 76888, 5057, NULL, '166.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-166.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81059, '2022-05-12', 2315, 76889, 5057, 2735, '-332.0000', '0.3300', '0.3300', '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 (81060, '2022-05-12', 2315, 76889, 5057, NULL, '333.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-333.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81061, '2022-05-12', 2221, 76890, 5057, 4154, '-60.0000', '14.4737', '14.4737', '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 (81062, '2022-05-12', 2221, 76890, 5057, NULL, '61.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81063, '2022-05-12', 1720, 76891, 5057, 6661, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '140.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 (81064, '2022-05-12', 1342, 76892, 5057, 11264, '-14.0000', '6.8074', '6.8074', '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 (81065, '2022-05-12', 1342, 76892, 5057, NULL, '15.0000', '6.8074', '6.8074', '10.0000', '10.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 (81066, '2022-05-12', 1519, 76893, 5057, 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 (81067, '2022-05-12', 2285, 76894, 5057, 2945, '-41.0000', '35.8000', '35.8000', '48.5000', '48.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 (81068, '2022-05-12', 2285, 76894, 5057, NULL, '42.0000', '35.8000', '35.8000', '48.5000', '48.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81069, '2022-05-12', 1580, 76895, 5057, 7598, '-47.0000', '0.9900', '0.9900', '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 (81070, '2022-05-12', 1580, 76895, 5057, NULL, '50.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81071, '2022-05-12', 2821, 76896, 5058, NULL, '2.0000', '3.4086', '3.4086', '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 (81072, '2022-05-12', 7334, 76897, 5058, NULL, '1.0000', '8.1600', '8.1600', '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 (81073, '2022-05-12', 9649, 76898, 5058, NULL, '1.0000', '14.2780', '14.2780', '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 (81074, '2022-05-12', 7759, 76899, 5058, NULL, '1.0000', '19.5000', '19.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 (81075, '2022-05-12', 8597, 76900, 5059, NULL, '1.0000', '59.0000', '59.0000', '78.0000', '78.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81076, '2022-05-12', 7592, 76901, 5060, NULL, '1.0000', '6.8000', '6.8000', '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 (81077, '2022-05-12', 9729, 76902, 5060, NULL, '1.0000', '0.6200', '0.6200', '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 (81078, '2022-05-12', 8596, 76903, 5060, 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 (81079, '2022-05-12', 7674, 76904, 5060, NULL, '1.0000', '1.3000', '1.3000', '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 (81080, '2022-05-12', 2943, 76905, 5060, 19987, '-11.0000', '2.1800', '2.1800', '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 (81081, '2022-05-12', 2943, 76905, 5060, NULL, '12.0000', '2.1800', '2.1800', '4.0000', '4.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 (81082, '2022-05-12', 8462, 76906, 5060, NULL, '1.0000', '7.0400', '7.0400', '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 (81083, '2022-05-12', 2822, 76907, 5060, 17166, '-10.0000', '2.7200', '2.7200', '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 (81084, '2022-05-12', 2822, 76907, 5060, NULL, '11.0000', '2.7200', '2.7200', '4.0000', '4.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 (81085, '2022-05-12', 8622, 76908, 5060, 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 (81086, '2022-05-12', 1760, 76909, 5060, 20604, '1.0000', '111.8384', '111.8384', '1.0000', '1.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 (81087, '2022-05-12', 8395, 76910, 5060, NULL, '1.0000', '0.9700', '0.9700', '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 (81088, '2022-05-12', 8666, 76911, 5060, NULL, '1.0000', '0.4600', '0.4600', '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 (81089, '2022-05-12', 7317, 76912, 5060, NULL, '1.0000', '19.5500', '19.5500', '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 (81090, '2022-05-12', 7666, 76913, 5060, NULL, '1.0000', '3.6000', '3.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 (81091, '2022-05-12', 7917, 76914, 5060, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81092, '2022-05-12', 7947, 76915, 5060, NULL, '2.0000', '14.4400', '14.4400', '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 (81093, '2022-05-12', 1806, 76916, 5060, 11433, '-1.0000', '28.1300', '28.1300', '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 (81094, '2022-05-12', 1806, 76916, 5060, NULL, '3.0000', '28.1300', '28.1300', '44.0000', '44.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 (81095, '2022-05-12', 8944, 76917, 5060, NULL, '1.0000', '45.2400', '45.2400', '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 (81096, '2022-05-12', 7633, 76918, 5060, NULL, '1.0000', '2.8700', '2.8700', '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 (81097, '2022-05-12', 2945, 76919, 5060, NULL, '1.0000', '9.0000', '9.0000', '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 (81098, '2022-05-12', 7317, 76920, 5060, NULL, '1.0000', '19.5500', '19.5500', '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 (81099, '2022-05-12', 7411, 76921, 5060, NULL, '2.0000', '1.3500', '1.3500', '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 (81100, '2022-05-12', 1841, 76922, 5060, NULL, '10.0000', '142.5780', '142.5780', '0.5000', '0.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 (81101, '2022-05-12', 7544, 76923, 5060, NULL, '10.0000', '9.4300', '9.4300', '0.5000', '0.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 (81102, '2022-05-12', 7703, 76924, 5060, NULL, '2.0000', '22.9900', '22.9900', '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 (81103, '2022-05-12', 7804, 76925, 5060, NULL, '3.0000', '1.0200', '1.0200', '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 (81104, '2022-05-12', 7779, 76926, 5060, 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 (81105, '2022-05-12', 2315, 76927, 5060, 2735, '-333.0000', '0.3300', '0.3300', '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 (81106, '2022-05-12', 2315, 76927, 5060, NULL, '335.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-335.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81107, '2022-05-12', 1337, 76928, 5060, 10809, '-20.0000', '2.0000', '2.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 (81108, '2022-05-12', 1337, 76928, 5060, NULL, '21.0000', '2.0000', '2.0000', '3.5000', '3.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81109, '2022-05-12', 7674, 76929, 5060, NULL, '1.0000', '1.3000', '1.3000', '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 (81110, '2022-05-12', 9274, 76930, 5060, NULL, '1.0000', '3.6000', '3.6000', '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 (81111, '2022-05-12', 7881, 76931, 5060, NULL, '1.0000', '2.3000', '2.3000', '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 (81112, '2022-05-12', 7787, 76932, 5060, 33793, '1.0000', '10.9000', '10.9000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81113, '2022-05-12', 7917, 76933, 5060, NULL, '4.0000', '5.0000', '5.0000', '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 (81114, '2022-05-12', 7666, 76934, 5060, NULL, '1.0000', '3.6000', '3.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 (81115, '2022-05-12', 1672, 76935, 5060, 7384, '-105.0000', '2.8700', '2.8700', '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 (81116, '2022-05-12', 1672, 76935, 5060, NULL, '115.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-115.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81117, '2022-05-12', 7680, 76936, 5060, NULL, '1.0000', '21.1800', '21.1800', '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 (81118, '2022-05-12', 7341, 76937, 5060, NULL, '1.0000', '24.0100', '24.0100', '44.5000', '44.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81119, '2022-05-12', 7402, 76938, 5060, NULL, '1.0000', '18.9000', '18.9000', '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 (81120, '2022-05-12', 9415, 76939, 5060, NULL, '1.0000', '1.6000', '1.6000', '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 (81121, '2022-05-12', 7588, 76940, 5060, NULL, '1.0000', '6.9000', '6.9000', '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 (81122, '2022-05-12', 8297, 76941, 5060, NULL, '1.0000', '73.3000', '73.3000', '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 (81123, '2022-05-12', 7518, 76942, 5060, NULL, '1.0000', '7.8200', '7.8200', '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 (81124, '2022-05-12', 2699, 76943, 5060, 12529, '-34.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 (81125, '2022-05-12', 2699, 76943, 5060, NULL, '35.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81126, '2022-05-12', 2315, 76944, 5060, 2735, '-333.0000', '0.3300', '0.3300', '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 (81127, '2022-05-12', 2315, 76944, 5060, NULL, '337.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-337.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81128, '2022-05-12', 1841, 76945, 5060, NULL, '2.0000', '142.5780', '142.5780', '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 (81129, '2022-05-12', 1498, 76946, 5060, 19685, '-42.0000', '0.3300', '0.3300', '0.6000', '0.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 (81130, '2022-05-12', 1498, 76946, 5060, NULL, '44.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81131, '2022-05-12', 8067, 76947, 5060, NULL, '1.0000', '4.6900', '4.6900', '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 (81132, '2022-05-12', 7674, 76948, 5060, NULL, '1.0000', '1.3000', '1.3000', '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 (81133, '2022-05-12', 2289, 76949, 5060, 2949, '-140.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 (81134, '2022-05-12', 2289, 76949, 5060, NULL, '144.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-144.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81135, '2022-05-12', 7781, 76950, 5060, NULL, '4.0000', '4.2500', '4.2500', '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 (81136, '2022-05-12', 7514, 76951, 5060, NULL, '1.0000', '2.2500', '2.2500', '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 (81137, '2022-05-12', 7641, 76952, 5060, NULL, '1.0000', '1.9000', '1.9000', '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 (81138, '2022-05-12', 1631, 76953, 5060, 3205, '-3.0000', '37.6948', '37.6948', '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 (81139, '2022-05-12', 1631, 76953, 5060, NULL, '4.0000', '37.6948', '37.6948', '18.0000', '18.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 (81140, '2022-05-12', 1339, 76954, 5060, 13004, '-15.0000', '1.6012', '1.6012', '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 (81141, '2022-05-12', 1339, 76954, 5060, NULL, '16.0000', '1.6012', '1.6012', '4.0000', '4.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 (81142, '2022-05-12', 8972, 76955, 5060, NULL, '1.0000', '4.5000', '4.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 (81143, '2022-05-12', 8677, 76956, 5060, NULL, '3.0000', '1.2800', '1.2800', '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 (81144, '2022-05-12', 7804, 76957, 5060, 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 (81145, '2022-05-12', 7444, 76958, 5060, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81146, '2022-05-12', 2075, 76959, 5060, 5583, '-1.0000', '7.0000', '7.0000', '9.5000', '9.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 (81147, '2022-05-12', 2075, 76959, 5060, NULL, '2.0000', '7.0000', '7.0000', '9.5000', '9.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 (81148, '2022-05-12', 7711, 76960, 5060, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81149, '2022-05-12', 7420, 76961, 5060, NULL, '1.0000', '30.7900', '30.7900', '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 (81150, '2022-05-12', 8165, 76962, 5060, NULL, '1.0000', '8.0000', '8.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 (81151, '2022-05-12', 8600, 76963, 5060, NULL, '1.0000', '0.6300', '0.6300', '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 (81152, '2022-05-12', 8456, 76964, 5060, 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 (81153, '2022-05-12', 7708, 76965, 5060, 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 (81154, '2022-05-12', 8972, 76966, 5060, NULL, '2.0000', '4.5000', '4.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 (81155, '2022-05-12', 7989, 76967, 5060, NULL, '1.0000', '37.8200', '37.8200', '66.0000', '66.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81156, '2022-05-12', 7719, 76968, 5060, NULL, '1.0000', '6.0000', '6.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 (81157, '2022-05-12', 7910, 76969, 5060, 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 (81158, '2022-05-12', 2109, 76970, 5061, NULL, '2.0000', '0.0413', '0.0413', '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 (81159, '2022-05-12', 9747, 76971, 5061, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81160, '2022-05-12', 2769, 76972, 5061, 54561, '4.0000', '1.8925', '1.8925', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81161, '2022-05-12', 1521, 76973, 5061, NULL, '2.0000', '2.5000', '2.5000', '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 (81162, '2022-05-12', 7385, 76974, 5061, 54887, '2.0000', '4.9657', '4.9657', '3.7000', '3.7000', '85.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81163, '2022-05-12', 2964, 76975, 5061, NULL, '1.0000', '8.7347', '8.7347', '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 (81164, '2022-05-12', 9821, 76976, 5061, 55566, '2.0000', '1.4500', '1.4500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81165, '2022-05-12', 2068, 76977, 5061, 52329, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81166, '2022-05-12', 1812, 76978, 5061, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81167, '2022-05-12', 7482, 76979, 5061, NULL, '1.0000', '2.5019', '2.5019', '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 (81168, '2022-05-12', 1978, 76980, 5061, NULL, '1.0000', '6.5000', '6.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 (81169, '2022-05-12', 9463, 76981, 5061, NULL, '1.0000', '145.5664', '145.5664', '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 (81170, '2022-05-12', 9649, 76982, 5061, NULL, '1.0000', '14.2780', '14.2780', '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 (81171, '2022-05-12', 9716, 76983, 5061, NULL, '1.0000', '4.4000', '4.4000', '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 (81172, '2022-05-12', 2315, 76984, 5061, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '124.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81173, '2022-05-12', 1811, 76985, 5061, 53220, '2.0000', '14.8531', '14.8531', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81174, '2022-05-12', 1812, 76986, 5061, 55527, '2.0000', '9.3212', '9.3212', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81175, '2022-05-12', 2821, 76987, 5061, NULL, '1.0000', '3.4086', '3.4086', '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 (81176, '2022-05-12', 1827, 76988, 5061, NULL, '20.0000', '0.2000', '0.2000', '0.3000', '0.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 (81177, '2022-05-12', 2964, 76989, 5061, NULL, '2.0000', '8.7347', '8.7347', '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 (81178, '2022-05-12', 8963, 76990, 5061, NULL, '1.0000', '9.9800', '9.9800', '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 (81179, '2022-05-12', 7482, 76991, 5061, NULL, '1.0000', '2.5019', '2.5019', '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 (81180, '2022-05-12', 2242, 76992, 5061, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81181, '2022-05-12', 1580, 76993, 5061, 54914, '3.0000', '1.4639', '1.4639', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81182, '2022-05-12', 8444, 76994, 5061, 54160, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81183, '2022-05-12', 2821, 76995, 5061, NULL, '1.0000', '3.4086', '3.4086', '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 (81184, '2022-05-12', 2289, 76996, 5061, NULL, '4.0000', '0.1400', '0.1400', '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 (81185, '2022-05-12', 2073, 76997, 5061, 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 (81186, '2022-05-12', 2109, 76998, 5061, NULL, '1.0000', '0.0413', '0.0413', '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 (81187, '2022-05-12', 8068, 76999, 5061, NULL, '2.0000', '8.7900', '8.7900', '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 (81188, '2022-05-12', 9791, 77000, 5061, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81189, '2022-05-12', 1950, 77001, 5061, NULL, '1.0000', '3.4496', '3.4496', '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 (81190, '2022-05-12', 9791, 77002, 5061, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81191, '2022-05-12', 2169, 77003, 5061, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81192, '2022-05-12', 9738, 77004, 5061, 54576, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81193, '2022-05-12', 2315, 77005, 5061, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '124.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81194, '2022-05-12', 2109, 77006, 5061, NULL, '2.0000', '0.0413', '0.0413', '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 (81195, '2022-05-12', 7593, 77007, 5061, NULL, '1.0000', '0.8000', '0.8000', '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 (81196, '2022-05-12', 1935, 77008, 5061, 49259, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81197, '2022-05-12', 2169, 77009, 5061, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81198, '2022-05-12', 8710, 77010, 5061, NULL, '2.0000', '10.9000', '10.9000', '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 (81199, '2022-05-12', 2302, 77011, 5061, 55567, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81200, '2022-05-12', 2242, 77012, 5061, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81201, '2022-05-12', 7482, 77013, 5061, NULL, '1.0000', '2.5019', '2.5019', '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 (81202, '2022-05-12', 1533, 77014, 5061, 54920, '1.0000', '3.4242', '3.4242', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81203, '2022-05-12', 8949, 77015, 5061, 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 (81204, '2022-05-12', 2759, 77016, 5061, 54946, '1.0000', '4.0909', '4.0909', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81205, '2022-05-12', 1912, 77017, 5061, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81206, '2022-05-12', 2374, 77018, 5061, 55555, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81207, '2022-05-12', 1668, 77019, 5061, 55526, '2.0000', '29.1880', '29.1880', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81208, '2022-05-12', 7482, 77020, 5061, NULL, '1.0000', '2.5019', '2.5019', '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 (81209, '2022-05-12', 2080, 77021, 5061, 47095, '1.0000', '10.8117', '10.8117', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81210, '2022-05-12', 1855, 77022, 5061, NULL, '1.0000', '1.5003', '1.5003', '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 (81211, '2022-05-12', 3016, 77023, 5061, 55552, '1.0000', '12.6063', '12.6063', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81212, '2022-05-12', 2289, 77024, 5061, NULL, '2.0000', '0.1400', '0.1400', '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 (81213, '2022-05-12', 1841, 77025, 5061, NULL, '1.0000', '-0.2753', '-0.2753', '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 (81214, '2022-05-12', 8878, 77026, 5061, 55582, '1.0000', '-8.5209', '-8.5209', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81215, '2022-05-12', 2295, 77027, 5061, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '91.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81216, '2022-05-12', 2242, 77028, 5061, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81217, '2022-05-12', 3001, 77029, 5061, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81218, '2022-05-12', 1841, 77030, 5061, NULL, '2.0000', '-0.2753', '-0.2753', '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 (81219, '2022-05-12', 7758, 77031, 5061, NULL, '1.0000', '10.8500', '10.8500', '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 (81220, '2022-05-12', 9791, 77032, 5061, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81221, '2022-05-12', 9856, 77033, 5061, 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 (81222, '2022-05-12', 7917, 77034, 5061, NULL, '1.0000', '5.0000', '5.0000', '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 (81223, '2022-05-12', 9740, 77035, 5061, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81224, '2022-05-12', 2242, 77036, 5061, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81225, '2022-05-12', 1807, 77037, 5061, NULL, '4.0000', '34.9993', '34.9993', '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 (81226, '2022-05-12', 2243, 77038, 5061, NULL, '1.0000', '3.5000', '3.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 (81227, '2022-05-12', 9732, 77039, 5061, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81228, '2022-05-12', 8844, 77040, 5061, NULL, '1.0000', '4.7829', '4.7829', '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 (81229, '2022-05-12', 2289, 77041, 5061, NULL, '6.0000', '0.1400', '0.1400', '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 (81230, '2022-05-12', 2315, 77042, 5061, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '122.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81231, '2022-05-12', 7328, 77043, 5061, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (81232, '2022-05-12', 7385, 77044, 5061, 54887, '4.0000', '4.9657', '4.9657', '3.7000', '3.7000', '83.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81233, '2022-05-12', 9848, 77045, 5061, NULL, '1.0000', '2.8000', '2.8000', '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 (81234, '2022-05-12', 9856, 77046, 5061, 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 (81235, '2022-05-12', 2506, 77047, 5061, NULL, '1.0000', '3.9841', '3.9841', '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 (81236, '2022-05-12', 8205, 77048, 5061, NULL, '1.0000', '2.9500', '2.9500', '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 (81237, '2022-05-12', 7802, 77049, 5061, NULL, '3.0000', '1.1497', '1.1497', '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 (81238, '2022-05-12', 9791, 77050, 5061, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81239, '2022-05-12', 2254, 77051, 5061, NULL, '1.0000', '42.5400', '42.5400', '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 (81240, '2022-05-12', 2169, 77052, 5061, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81241, '2022-05-12', 2242, 77053, 5061, 54572, '3.0000', '2.4162', '2.4162', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81242, '2022-05-12', 7633, 77054, 5062, NULL, '1.0000', '2.8700', '2.8700', '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 (81243, '2022-05-12', 7744, 77055, 5062, 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 (81244, '2022-05-12', 7473, 77056, 5062, NULL, '4.0000', '0.5300', '0.5300', '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 (81245, '2022-05-12', 8596, 77057, 5062, 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 (81246, '2022-05-12', 7674, 77058, 5062, NULL, '1.0000', '1.3000', '1.3000', '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 (81247, '2022-05-12', 7805, 77059, 5062, NULL, '1.0000', '2.1800', '2.1800', '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 (81248, '2022-05-12', 8200, 77060, 5062, NULL, '1.0000', '6.2600', '6.2600', '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 (81249, '2022-05-12', 7353, 77061, 5063, NULL, '1.0000', '0.1900', '0.1900', '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 (81250, '2022-05-12', 7959, 77062, 5063, NULL, '2.0000', '9.6000', '9.6000', '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 (81251, '2022-05-12', 8451, 77063, 5064, NULL, '1.0000', '9.6000', '9.6000', '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 (81252, '2022-05-12', 9732, 77064, 5064, 55495, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81253, '2022-05-12', 2315, 77065, 5064, 3069, '1.0000', '0.3300', '0.3300', '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 (81254, '2022-05-12', 9783, 77066, 5064, 54612, '1.0000', '18.8000', '18.8000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81255, '2022-05-12', 2169, 77067, 5064, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81256, '2022-05-12', 9734, 77068, 5064, 50862, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81257, '2022-05-12', 1837, 77069, 5064, 54424, '3.0000', '0.5024', '0.5024', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81258, '2022-05-12', 1892, 77070, 5064, 5497, '1.0000', '0.5200', '0.5200', '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 (81259, '2022-05-12', 2379, 77071, 5064, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81260, '2022-05-12', 2366, 77072, 5064, 55502, '2.0000', '3.7289', '3.7289', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81261, '2022-05-12', 2858, 77073, 5064, NULL, '2.0000', '1.0000', '1.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 (81262, '2022-05-12', 9598, 77074, 5064, 53709, '1.0000', '4.2400', '4.2400', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81263, '2022-05-12', 2255, 77075, 5064, 54626, '1.0000', '19.7622', '19.7622', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81264, '2022-05-12', 1856, 77076, 5064, 53696, '1.0000', '4.7268', '4.7268', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81265, '2022-05-12', 2821, 77077, 5064, 54666, '1.0000', '3.4328', '3.4328', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81266, '2022-05-12', 7753, 77078, 5064, NULL, '1.0000', '3.1400', '3.1400', '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 (81267, '2022-05-12', 9634, 77079, 5064, 40901, '2.0000', '4.8000', '4.8000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81268, '2022-05-12', 1307, 77080, 5064, NULL, '2.0000', '-1.1000', '-1.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 (81269, '2022-05-12', 1839, 77081, 5064, 55510, '1.0000', '7.7485', '7.7485', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81270, '2022-05-12', 2020, 77082, 5064, 54610, '1.0000', '5.7958', '5.7958', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81271, '2022-05-12', 1843, 77083, 5064, 49134, '14.0000', '4.6200', '4.6200', '6.5000', '6.5000', '52.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81272, '2022-05-12', 2244, 77084, 5064, NULL, '1.0000', '5.3200', '5.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 (81273, '2022-05-12', 1602, 77085, 5064, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81274, '2022-05-12', 9881, 77086, 5064, 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 (81275, '2022-05-12', 7665, 77087, 5064, NULL, '1.0000', '5.1500', '5.1500', '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 (81276, '2022-05-12', 2858, 77088, 5064, 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 (81277, '2022-05-12', 9737, 77089, 5064, 53243, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81278, '2022-05-12', 7938, 77090, 5064, NULL, '1.0000', '2.9000', '2.9000', '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 (81279, '2022-05-12', 9794, 77091, 5064, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '74.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81280, '2022-05-12', 1807, 77092, 5064, NULL, '3.0000', '5.3000', '5.3000', '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 (81281, '2022-05-12', 8746, 77093, 5064, 55447, '1.0000', '129.8458', '129.8458', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81282, '2022-05-12', 1452, 77094, 5064, 5632, '2.0000', '1.2300', '1.2300', '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 (81283, '2022-05-12', 1863, 77095, 5064, 55480, '3.0000', '1.3191', '1.3191', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81284, '2022-05-12', 8052, 77096, 5064, NULL, '1.0000', '29.0000', '29.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 (81285, '2022-05-12', 3085, 77097, 5064, 40180, '1.0000', '72.7824', '72.7824', '75.0000', '75.0000', '3.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81286, '2022-05-12', 2320, 77098, 5064, 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 (81287, '2022-05-12', 1342, 77099, 5064, 55508, '1.0000', '10.7593', '10.7593', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81288, '2022-05-12', 2484, 77100, 5064, 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 (81289, '2022-05-12', 1425, 77101, 5064, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81290, '2022-05-12', 8539, 77102, 5064, NULL, '10.0000', '0.5200', '0.5200', '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 (81291, '2022-05-12', 7518, 77103, 5064, NULL, '1.0000', '5.1300', '5.1300', '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 (81292, '2022-05-12', 9732, 77104, 5064, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81293, '2022-05-12', 2479, 77105, 5064, 5192, '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 (81294, '2022-05-12', 7328, 77106, 5064, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81295, '2022-05-12', 1840, 77107, 5064, 54425, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '15.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81296, '2022-05-12', 1746, 77108, 5064, NULL, '1.0000', '1.0000', '1.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 (81297, '2022-05-12', 2263, 77109, 5064, 48764, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81298, '2022-05-12', 1783, 77110, 5064, 54661, '3.0000', '-2.0913', '-2.0913', '13.5000', '13.5000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81299, '2022-05-12', 7947, 77111, 5064, NULL, '1.0000', '14.4400', '14.4400', '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 (81300, '2022-05-12', 2416, 77112, 5064, 55454, '1.0000', '1.2441', '1.2441', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81301, '2022-05-12', 7744, 77113, 5064, NULL, '1.0000', '2.9400', '2.9400', '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 (81302, '2022-05-12', 7641, 77114, 5064, NULL, '1.0000', '1.9000', '1.9000', '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 (81303, '2022-05-12', 9590, 77115, 5064, NULL, '1.0000', '0.0000', '0.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 (81304, '2022-05-12', 8746, 77116, 5064, 55447, '1.0000', '129.8458', '129.8458', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81305, '2022-05-12', 8746, 77117, 5064, 55447, '1.0000', '129.8458', '129.8458', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81306, '2022-05-12', 2908, 77118, 5064, 48776, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81307, '2022-05-12', 9895, 77119, 5064, 54369, '2.0000', '8.0000', '8.0000', '10.0000', '10.0000', '25.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81308, '2022-05-12', 2283, 77120, 5064, 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 (81309, '2022-05-12', 7482, 77121, 5064, NULL, '2.0000', '3.0500', '3.0500', '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 (81310, '2022-05-13', 1863, 77122, 5065, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81311, '2022-05-13', 2169, 77123, 5065, 54664, '1.0000', '1.2111', '1.2111', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81312, '2022-05-13', 1736, 77124, 5065, 54580, '1.0000', '33.6490', '33.6490', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81313, '2022-05-13', 1499, 77125, 5065, 54670, '4.0000', '0.4174', '0.4174', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81314, '2022-05-13', 2089, 77126, 5065, 53245, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81315, '2022-05-13', 7608, 77127, 5065, NULL, '1.0000', '6.9800', '6.9800', '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 (81316, '2022-05-13', 1742, 77128, 5065, 6813, '1.0000', '90.0000', '90.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 (81317, '2022-05-13', 1608, 77129, 5065, 54660, '1.0000', '4.2534', '4.2534', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81318, '2022-05-13', 1868, 77130, 5065, 53259, '1.0000', '4.1530', '4.1530', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81319, '2022-05-13', 1337, 77131, 5065, 44622, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81320, '2022-05-13', 1892, 77132, 5066, 5497, '2.0000', '0.5200', '0.5200', '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 (81321, '2022-05-13', 2237, 77133, 5066, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81322, '2022-05-13', 9834, 77134, 5066, 52277, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81323, '2022-05-13', 1884, 77135, 5066, 52288, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81324, '2022-05-13', 2131, 77136, 5067, 53418, '1.0000', '7.5500', '7.5500', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81325, '2022-05-13', 2237, 77137, 5067, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81326, '2022-05-13', 2699, 77138, 5067, NULL, '1.0000', '3.6019', '3.6019', '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 (81327, '2022-05-13', 8810, 77139, 5067, NULL, '1.0000', '1.9200', '1.9200', '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 (81328, '2022-05-13', 2169, 77140, 5067, 53643, '1.0000', '1.3110', '1.3110', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81329, '2022-05-13', 7756, 77141, 5067, NULL, '1.0000', '2.5000', '2.5000', '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 (81330, '2022-05-13', 2893, 77142, 5067, NULL, '1.0000', '6.4400', '6.4400', '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 (81331, '2022-05-13', 2315, 77143, 5067, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '119.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81332, '2022-05-13', 8979, 77144, 5067, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81333, '2022-05-13', 2315, 77145, 5067, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '119.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81334, '2022-05-13', 9913, 77146, 5067, 55606, '1.0000', '13.2000', '13.2000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81335, '2022-05-13', 9819, 77147, 5067, 55560, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81336, '2022-05-13', 8775, 77148, 5067, 51020, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81337, '2022-05-13', 7779, 77149, 5067, NULL, '1.0000', '0.6200', '0.6200', '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 (81338, '2022-05-13', 9856, 77150, 5067, 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 (81339, '2022-05-13', 2342, 77151, 5067, 54886, '2.0000', '2.2091', '2.2091', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81340, '2022-05-13', 8133, 77152, 5067, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (81341, '2022-05-13', 8876, 77153, 5067, NULL, '1.0000', '-2.4471', '-2.4471', '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 (81342, '2022-05-13', 2506, 77154, 5067, NULL, '1.0000', '3.9841', '3.9841', '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 (81343, '2022-05-13', 1837, 77155, 5067, NULL, '2.0000', '4.1395', '4.1395', '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 (81344, '2022-05-13', 1787, 77156, 5067, NULL, '1.0000', '0.5000', '0.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 (81345, '2022-05-13', 2352, 77157, 5067, NULL, '1.0000', '126.2588', '126.2588', '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 (81346, '2022-05-13', 9831, 77158, 5067, 55091, '2.0000', '1.6952', '1.6952', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81347, '2022-05-13', 9731, 77159, 5067, 54925, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81348, '2022-05-13', 1825, 77160, 5067, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81349, '2022-05-13', 7533, 77161, 5067, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81350, '2022-05-13', 7806, 77162, 5067, 39775, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81351, '2022-05-13', 1306, 77163, 5067, NULL, '6.0000', '2.1000', '2.1000', '3.0000', '3.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 (81352, '2022-05-13', 9885, 77164, 5067, 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 (81353, '2022-05-13', 2921, 77165, 5067, NULL, '1.0000', '4.9000', '4.9000', '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 (81354, '2022-05-13', 8133, 77166, 5067, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (81355, '2022-05-13', 2990, 77167, 5067, 39769, '2.0000', '1.2776', '1.2776', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81356, '2022-05-13', 1592, 77168, 5067, 54875, '1.0000', '39.3500', '39.3500', '52.0000', '52.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81357, '2022-05-13', 2020, 77169, 5067, NULL, '1.0000', '59.0820', '59.0820', '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 (81358, '2022-05-13', 8979, 77170, 5067, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81359, '2022-05-13', 1912, 77171, 5068, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81360, '2022-05-13', 9856, 77172, 5069, 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 (81361, '2022-05-13', 2068, 77173, 5069, 52329, '1.0000', '11.5336', '11.5336', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81362, '2022-05-13', 1779, 77174, 5069, 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 (81363, '2022-05-13', 1812, 77175, 5069, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81364, '2022-05-13', 2821, 77176, 5069, NULL, '1.0000', '3.4086', '3.4086', '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 (81365, '2022-05-13', 2088, 77177, 5069, 54566, '1.0000', '1.8472', '1.8472', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81366, '2022-05-13', 8878, 77178, 5069, 55582, '2.0000', '-8.5209', '-8.5209', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81367, '2022-05-13', 7857, 77179, 5070, NULL, '1.0000', '15.1300', '15.1300', '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 (81368, '2022-05-13', 8350, 77180, 5070, NULL, '1.0000', '12.0000', '12.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 (81369, '2022-05-13', 9735, 77181, 5070, 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 (81370, '2022-05-13', 7862, 77182, 5070, NULL, '1.0000', '3.8500', '3.8500', '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 (81371, '2022-05-13', 8288, 77183, 5070, NULL, '1.0000', '1.1600', '1.1600', '1.8000', '1.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 (81372, '2022-05-13', 8814, 77184, 5070, NULL, '10.0000', '5.0000', '5.0000', '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 (81373, '2022-05-13', 7490, 77185, 5070, NULL, '20.0000', '0.2300', '0.2300', '0.4000', '0.4000', '-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 (81374, '2022-05-13', 7666, 77186, 5070, NULL, '1.0000', '3.6000', '3.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 (81375, '2022-05-13', 7714, 77187, 5070, NULL, '1.0000', '0.4200', '0.4200', '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 (81376, '2022-05-13', 7321, 77188, 5070, NULL, '1.0000', '7.9500', '7.9500', '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 (81377, '2022-05-13', 7938, 77189, 5070, NULL, '1.0000', '2.9000', '2.9000', '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 (81378, '2022-05-13', 7514, 77190, 5070, NULL, '1.0000', '2.2500', '2.2500', '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 (81379, '2022-05-13', 8407, 77191, 5070, NULL, '1.0000', '1.0700', '1.0700', '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 (81380, '2022-05-13', 9735, 77192, 5070, 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 (81381, '2022-05-13', 9751, 77193, 5070, 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 (81382, '2022-05-13', 8626, 77194, 5070, NULL, '1.0000', '7.5000', '7.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 (81383, '2022-05-13', 8172, 77195, 5070, NULL, '1.0000', '40.7000', '40.7000', '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 (81384, '2022-05-13', 7687, 77196, 5070, NULL, '1.0000', '39.5800', '39.5800', '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 (81385, '2022-05-13', 7666, 77197, 5070, NULL, '1.0000', '3.6000', '3.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 (81386, '2022-05-13', 8969, 77198, 5070, 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 (81387, '2022-05-13', 7752, 77199, 5070, 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 (81388, '2022-05-13', 2242, 77200, 5070, 3059, '-15.0000', '0.4800', '0.4800', '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 (81389, '2022-05-13', 2242, 77200, 5070, NULL, '17.0000', '0.4800', '0.4800', '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 (81390, '2022-05-13', 2295, 77201, 5070, 22264, '2.0000', '0.9600', '0.9600', '2.5000', '2.5000', '24.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 (81391, '2022-05-13', 9864, 77202, 5070, NULL, '1.0000', '1.6000', '1.6000', '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 (81392, '2022-05-13', 7509, 77203, 5070, 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 (81393, '2022-05-13', 7753, 77204, 5070, NULL, '1.0000', '3.4000', '3.4000', '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 (81394, '2022-05-13', 7892, 77205, 5070, NULL, '1.0000', '4.2000', '4.2000', '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 (81395, '2022-05-13', 7412, 77206, 5070, NULL, '1.0000', '1.5200', '1.5200', '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 (81396, '2022-05-13', 7673, 77207, 5070, NULL, '1.0000', '16.8000', '16.8000', '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 (81397, '2022-05-13', 7518, 77208, 5070, NULL, '1.0000', '7.8200', '7.8200', '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 (81398, '2022-05-13', 9001, 77209, 5070, NULL, '1.0000', '23.5000', '23.5000', '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 (81399, '2022-05-13', 8969, 77210, 5070, 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 (81400, '2022-05-13', 9215, 77211, 5070, NULL, '1.0000', '1.6000', '1.6000', '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 (81401, '2022-05-13', 2102, 77212, 5070, 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 (81402, '2022-05-13', 1837, 77213, 5070, 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 (81403, '2022-05-13', 9620, 77214, 5070, 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 (81404, '2022-05-13', 2315, 77215, 5070, 2735, '-339.0000', '0.3300', '0.3300', '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 (81405, '2022-05-13', 2315, 77215, 5070, NULL, '341.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-341.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81406, '2022-05-13', 7632, 77216, 5070, NULL, '1.0000', '9.0000', '9.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 (81407, '2022-05-13', 8457, 77217, 5070, NULL, '1.0000', '4.5000', '4.5000', '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 (81408, '2022-05-13', 7674, 77218, 5070, NULL, '1.0000', '1.3000', '1.3000', '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 (81409, '2022-05-13', 7514, 77219, 5070, NULL, '1.0000', '2.2500', '2.2500', '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 (81410, '2022-05-13', 8444, 77220, 5071, NULL, '1.0000', '1.6000', '1.6000', '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 (81411, '2022-05-13', 9092, 77221, 5071, NULL, '1.0000', '5.2900', '5.2900', '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 (81412, '2022-05-13', 7514, 77222, 5071, NULL, '2.0000', '2.2500', '2.2500', '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 (81413, '2022-05-13', 7385, 77223, 5071, NULL, '5.0000', '2.0000', '2.0000', '3.7000', '3.7000', '-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 (81414, '2022-05-13', 7509, 77224, 5071, 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 (81415, '2022-05-13', 7524, 77225, 5071, NULL, '1.0000', '11.9500', '11.9500', '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 (81416, '2022-05-13', 8359, 77226, 5071, 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 (81417, '2022-05-13', 7981, 77227, 5071, NULL, '5.0000', '6.0000', '6.0000', '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 (81418, '2022-05-13', 8878, 77228, 5071, NULL, '2.0000', '6.6700', '6.6700', '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 (81419, '2022-05-13', 7317, 77229, 5071, NULL, '2.0000', '19.5500', '19.5500', '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 (81420, '2022-05-13', 7748, 77230, 5071, NULL, '1.0000', '7.3000', '7.3000', '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 (81421, '2022-05-13', 8456, 77231, 5071, 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 (81422, '2022-05-13', 1841, 77232, 5071, NULL, '3.0000', '142.5780', '142.5780', '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 (81423, '2022-05-13', 2289, 77233, 5071, 2949, '-144.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 (81424, '2022-05-13', 2289, 77233, 5071, NULL, '147.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-147.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81425, '2022-05-13', 1837, 77234, 5071, 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 (81426, '2022-05-13', 7911, 77235, 5071, NULL, '1.0000', '4.3700', '4.3700', '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 (81427, '2022-05-13', 2726, 77236, 5071, NULL, '1.0000', '4.0000', '4.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 (81428, '2022-05-13', 9329, 77237, 5071, NULL, '1.0000', '6.7000', '6.7000', '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 (81429, '2022-05-13', 7411, 77238, 5071, NULL, '2.0000', '1.3500', '1.3500', '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 (81430, '2022-05-13', 2277, 77239, 5071, 2937, '-41.0000', '0.7800', '0.7800', '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 (81431, '2022-05-13', 2277, 77239, 5071, NULL, '43.0000', '0.7800', '0.7800', '1.5000', '1.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 (81432, '2022-05-13', 7630, 77240, 5071, NULL, '1.0000', '10.0000', '10.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 (81433, '2022-05-13', 7980, 77241, 5071, NULL, '2.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81434, '2022-05-13', 7334, 77242, 5071, NULL, '1.0000', '8.2300', '8.2300', '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 (81435, '2022-05-13', 7347, 77243, 5071, NULL, '1.0000', '21.9000', '21.9000', '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 (81436, '2022-05-13', 7645, 77244, 5071, NULL, '1.0000', '23.7800', '23.7800', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81437, '2022-05-13', 8444, 77245, 5071, NULL, '1.0000', '1.6000', '1.6000', '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 (81438, '2022-05-13', 7588, 77246, 5071, NULL, '1.0000', '6.9000', '6.9000', '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 (81439, '2022-05-13', 8666, 77247, 5071, NULL, '1.0000', '0.4600', '0.4600', '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 (81440, '2022-05-13', 1337, 77248, 5071, 10809, '-21.0000', '2.0000', '2.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 (81441, '2022-05-13', 1337, 77248, 5071, NULL, '22.0000', '2.0000', '2.0000', '3.5000', '3.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81442, '2022-05-13', 7317, 77249, 5071, NULL, '1.0000', '19.5500', '19.5500', '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 (81443, '2022-05-13', 8017, 77250, 5071, NULL, '2.0000', '40.0000', '40.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 (81444, '2022-05-13', 9791, 77251, 5071, 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 (81445, '2022-05-13', 1912, 77252, 5071, 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 (81446, '2022-05-13', 7473, 77253, 5071, NULL, '2.0000', '0.5300', '0.5300', '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 (81447, '2022-05-13', 1837, 77254, 5071, 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 (81448, '2022-05-13', 9750, 77255, 5071, NULL, '1.0000', '3.3000', '3.3000', '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 (81449, '2022-05-13', 7666, 77256, 5071, NULL, '1.0000', '3.6000', '3.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 (81450, '2022-05-13', 7967, 77257, 5071, NULL, '1.0000', '7.0000', '7.0000', '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 (81451, '2022-05-13', 9565, 77258, 5071, NULL, '1.0000', '4.5000', '4.5000', '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 (81452, '2022-05-13', 7356, 77259, 5071, NULL, '1.0000', '10.9000', '10.9000', '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 (81453, '2022-05-13', 7965, 77260, 5071, NULL, '14.0000', '5.6100', '5.6100', '6.5000', '6.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 (81454, '2022-05-13', 9751, 77261, 5071, 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 (81455, '2022-05-13', 8596, 77262, 5071, 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 (81456, '2022-05-13', 9735, 77263, 5071, 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 (81457, '2022-05-13', 8415, 77264, 5071, NULL, '6.0000', '3.2500', '3.2500', '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 (81458, '2022-05-13', 7715, 77265, 5071, NULL, '2.0000', '1.8900', '1.8900', '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 (81459, '2022-05-13', 7780, 77266, 5071, NULL, '1.0000', '11.6000', '11.6000', '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 (81460, '2022-05-13', 7703, 77267, 5071, NULL, '1.0000', '22.9900', '22.9900', '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 (81461, '2022-05-13', 9899, 77268, 5071, NULL, '1.0000', '10.0000', '10.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81462, '2022-05-13', 8730, 77269, 5071, 33061, '1.0000', '29.0000', '29.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81463, '2022-05-13', 8052, 77270, 5071, NULL, '2.0000', '29.0000', '29.0000', '50.0000', '50.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 (81464, '2022-05-13', 9578, 77271, 5071, NULL, '1.0000', '8.0000', '8.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 (81465, '2022-05-13', 8101, 77272, 5071, NULL, '2.0000', '1.9700', '1.9700', '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 (81466, '2022-05-13', 7781, 77273, 5071, NULL, '3.0000', '4.2500', '4.2500', '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 (81467, '2022-05-13', 7798, 77274, 5071, NULL, '1.0000', '14.9000', '14.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 (81468, '2022-05-13', 9744, 77275, 5071, NULL, '1.0000', '8.6000', '8.6000', '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 (81469, '2022-05-13', 9729, 77276, 5071, NULL, '2.0000', '0.6200', '0.6200', '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 (81470, '2022-05-13', 7736, 77277, 5071, NULL, '1.0000', '16.2000', '16.2000', '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 (81471, '2022-05-13', 1935, 77278, 5071, 5586, '-83.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 (81472, '2022-05-13', 1935, 77278, 5071, NULL, '85.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81473, '2022-05-13', 7658, 77279, 5071, NULL, '6.0000', '2.0200', '2.0200', '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 (81474, '2022-05-13', 7518, 77280, 5071, NULL, '1.0000', '7.8200', '7.8200', '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 (81475, '2022-05-13', 7695, 77281, 5071, NULL, '1.0000', '3.9400', '3.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 (81476, '2022-05-13', 7532, 77282, 5071, NULL, '1.0000', '20.6000', '20.6000', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81477, '2022-05-13', 7947, 77283, 5071, NULL, '1.0000', '14.4400', '14.4400', '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 (81478, '2022-05-13', 7782, 77284, 5071, 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 (81479, '2022-05-13', 9274, 77285, 5071, NULL, '3.0000', '3.6000', '3.6000', '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 (81480, '2022-05-13', 7318, 77286, 5071, NULL, '1.0000', '13.4400', '13.4400', '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 (81481, '2022-05-13', 7524, 77287, 5071, NULL, '3.0000', '11.9500', '11.9500', '7.0000', '7.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 (81482, '2022-05-13', 7457, 77288, 5071, NULL, '2.0000', '6.0000', '6.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 (81483, '2022-05-13', 7753, 77289, 5071, NULL, '1.0000', '3.4000', '3.4000', '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 (81484, '2022-05-13', 9634, 77290, 5072, 40901, '3.0000', '4.8000', '4.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81485, '2022-05-13', 9399, 77291, 5072, 50942, '2.0000', '1.0183', '1.0183', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81486, '2022-05-13', 1493, 77292, 5072, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81487, '2022-05-13', 1872, 77293, 5072, 54419, '1.0000', '10.1035', '10.1035', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81488, '2022-05-13', 1892, 77294, 5072, 5497, '2.0000', '0.5200', '0.5200', '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 (81489, '2022-05-13', 2302, 77295, 5072, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81490, '2022-05-13', 2618, 77296, 5072, 48779, '1.0000', '2.8873', '2.8873', '6.0000', '6.0000', '39.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81491, '2022-05-13', 2416, 77297, 5072, 55454, '1.0000', '1.2441', '1.2441', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81492, '2022-05-13', 1837, 77298, 5072, 54424, '2.0000', '0.5024', '0.5024', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81493, '2022-05-13', 9634, 77299, 5072, 40901, '3.0000', '4.8000', '4.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81494, '2022-05-13', 9868, 77300, 5072, 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 (81495, '2022-05-13', 8461, 77301, 5072, NULL, '3.0000', '1.0400', '1.0400', '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 (81496, '2022-05-13', 8184, 77302, 5072, 54394, '10.0000', '2.6350', '2.6350', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81497, '2022-05-13', 9400, 77303, 5072, NULL, '1.0000', '4.2000', '4.2000', '5.5400', '5.5400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81498, '2022-05-13', 2020, 77304, 5072, 54610, '1.0000', '5.7958', '5.7958', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81499, '2022-05-13', 7952, 77305, 5072, NULL, '2.0000', '1.4000', '1.4000', '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 (81500, '2022-05-13', 1425, 77306, 5072, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81501, '2022-05-13', 1863, 77307, 5072, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81502, '2022-05-13', 1425, 77308, 5072, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81503, '2022-05-13', 2821, 77309, 5072, 54666, '1.0000', '3.4328', '3.4328', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81504, '2022-05-13', 2256, 77310, 5072, 50089, '1.0000', '13.9865', '13.9865', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 406);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81505, '2022-05-13', 1744, 77311, 5072, 53701, '1.0000', '31.9228', '31.9228', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81506, '2022-05-13', 1637, 77312, 5072, 49553, '2.0000', '300.2450', '300.2450', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81507, '2022-05-13', 9743, 77313, 5072, 55477, '1.0000', '12.3429', '12.3429', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81508, '2022-05-13', 7411, 77314, 5072, 48774, '1.0000', '1.3632', '1.3632', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81509, '2022-05-13', 8172, 77315, 5072, NULL, '1.0000', '40.7000', '40.7000', '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 (81510, '2022-05-13', 7917, 77316, 5072, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (81511, '2022-05-13', 9788, 77317, 5072, 53266, '1.0000', '1.5100', '1.5100', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81512, '2022-05-13', 2848, 77318, 5072, 49054, '1.0000', '16.2000', '16.2000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81513, '2022-05-13', 1783, 77319, 5072, 54661, '3.0000', '-2.0913', '-2.0913', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81514, '2022-05-13', 8677, 77320, 5073, NULL, '2.0000', '1.2800', '1.2800', '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 (81515, '2022-05-13', 7781, 77321, 5073, NULL, '3.0000', '4.2500', '4.2500', '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 (81516, '2022-05-13', 2283, 77322, 5073, 2943, '-20.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 (81517, '2022-05-13', 2283, 77322, 5073, NULL, '21.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81518, '2022-05-13', 8457, 77323, 5073, NULL, '1.0000', '4.5000', '4.5000', '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 (81519, '2022-05-13', 9726, 77324, 5073, 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 (81520, '2022-05-13', 2287, 77325, 5073, 2947, '-29.0000', '1.8000', '1.8000', '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 (81521, '2022-05-13', 2287, 77325, 5073, NULL, '31.0000', '1.8000', '1.8000', '4.0000', '4.0000', '-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 (81522, '2022-05-13', 7886, 77326, 5073, 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 (81523, '2022-05-13', 9775, 77327, 5073, NULL, '1.0000', '7.9000', '7.9000', '13.7300', '13.7300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81524, '2022-05-13', 7317, 77328, 5073, NULL, '1.0000', '19.5500', '19.5500', '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 (81525, '2022-05-13', 9092, 77329, 5073, NULL, '2.0000', '5.2900', '5.2900', '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 (81526, '2022-05-13', 2289, 77330, 5073, 2949, '-147.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 (81527, '2022-05-13', 2289, 77330, 5073, NULL, '151.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-151.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81528, '2022-05-13', 7482, 77331, 5073, NULL, '1.0000', '3.0500', '3.0500', '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 (81529, '2022-05-13', 2283, 77332, 5073, 2943, '-20.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 (81530, '2022-05-13', 2283, 77332, 5073, NULL, '21.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81531, '2022-05-13', 1855, 77333, 5073, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (81532, '2022-05-13', 7672, 77334, 5073, NULL, '1.0000', '1.0200', '1.0200', '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 (81533, '2022-05-13', 9092, 77335, 5073, NULL, '1.0000', '5.2900', '5.2900', '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 (81534, '2022-05-13', 7674, 77336, 5073, NULL, '1.0000', '1.3000', '1.3000', '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 (81535, '2022-05-13', 7952, 77337, 5073, 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 (81536, '2022-05-13', 7588, 77338, 5073, NULL, '1.0000', '6.9000', '6.9000', '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 (81537, '2022-05-13', 8415, 77339, 5073, NULL, '1.0000', '3.2500', '3.2500', '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 (81538, '2022-05-13', 2135, 77340, 5074, NULL, '1.0000', '-0.2588', '-0.2588', '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 (81539, '2022-05-13', 2109, 77341, 5074, NULL, '1.0000', '0.0413', '0.0413', '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 (81540, '2022-05-13', 1880, 77342, 5074, 48643, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81541, '2022-05-13', 7641, 77343, 5074, NULL, '1.0000', '1.9000', '1.9000', '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 (81542, '2022-05-13', 2655, 77344, 5074, NULL, '1.0000', '5.6000', '5.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 (81543, '2022-05-13', 8979, 77345, 5074, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81544, '2022-05-13', 2068, 77346, 5074, 55704, '1.0000', '11.5810', '11.5810', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81545, '2022-05-13', 2242, 77347, 5074, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81546, '2022-05-13', 8878, 77348, 5074, 55582, '1.0000', '-8.5209', '-8.5209', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81547, '2022-05-13', 9794, 77349, 5074, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81548, '2022-05-13', 9832, 77350, 5074, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81549, '2022-05-13', 8746, 77351, 5074, 55412, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81550, '2022-05-13', 2821, 77352, 5074, 55676, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81551, '2022-05-13', 2169, 77353, 5074, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81552, '2022-05-13', 2315, 77354, 5074, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '117.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81553, '2022-05-13', 9794, 77355, 5074, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81554, '2022-05-13', 2999, 77356, 5074, 55588, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81555, '2022-05-13', 7749, 77357, 5074, NULL, '1.0000', '20.0200', '20.0200', '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 (81556, '2022-05-13', 1618, 77358, 5074, 55686, '2.0000', '-14.7446', '-14.7446', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81557, '2022-05-13', 2547, 77359, 5074, 54952, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81558, '2022-05-13', 9794, 77360, 5074, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '77.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81559, '2022-05-13', 8607, 77361, 5074, NULL, '2.0000', '-3.0000', '-3.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 (81560, '2022-05-13', 1690, 77362, 5074, 55660, '1.0000', '7.9000', '7.9000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81561, '2022-05-13', 9856, 77363, 5074, 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 (81562, '2022-05-13', 8878, 77364, 5074, 55582, '1.0000', '-8.5209', '-8.5209', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81563, '2022-05-13', 1314, 77365, 5074, 54908, '1.0000', '1.5288', '1.5288', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81564, '2022-05-13', 1912, 77366, 5074, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81565, '2022-05-13', 7473, 77367, 5074, 39817, '1.0000', '0.1679', '0.1679', '0.6000', '0.6000', '50.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81566, '2022-05-13', 9913, 77368, 5074, 55606, '1.0000', '13.2000', '13.2000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81567, '2022-05-13', 1410, 77369, 5074, NULL, '1.0000', '-8.0763', '-8.0763', '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 (81568, '2022-05-13', 9830, 77370, 5074, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81569, '2022-05-13', 7398, 77371, 5074, NULL, '1.0000', '143.5000', '143.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 (81570, '2022-05-13', 2169, 77372, 5074, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81571, '2022-05-13', 9695, 77373, 5074, 55410, '2.0000', '5.1311', '5.1311', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81572, '2022-05-13', 9388, 77374, 5074, NULL, '3.0000', '5.0000', '5.0000', '7.0000', '7.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 (81573, '2022-05-13', 8133, 77375, 5074, NULL, '2.0000', '-22758.7660', '-22758.7660', '14.5000', '14.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 (81574, '2022-05-13', 2302, 77376, 5074, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81575, '2022-05-13', 1314, 77377, 5074, 54908, '2.0000', '1.5288', '1.5288', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81576, '2022-05-13', 2315, 77378, 5074, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '115.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81577, '2022-05-13', 2769, 77379, 5074, 54561, '6.0000', '1.8925', '1.8925', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81578, '2022-05-13', 1501, 77380, 5074, NULL, '1.0000', '1.6146', '1.6146', '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 (81579, '2022-05-13', 3026, 77381, 5074, 44158, '1.0000', '2.2857', '2.2857', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81580, '2022-05-13', 8133, 77382, 5074, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (81581, '2022-05-13', 2985, 77383, 5074, NULL, '1.0000', '28.1000', '28.1000', '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 (81582, '2022-05-13', 1767, 77384, 5074, 55576, '1.0000', '5.3188', '5.3188', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81583, '2022-05-13', 2821, 77385, 5074, 55676, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81584, '2022-05-13', 2506, 77386, 5074, NULL, '1.0000', '3.7156', '3.7156', '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 (81585, '2022-05-13', 2821, 77387, 5074, 55676, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81586, '2022-05-13', 7917, 77388, 5074, NULL, '6.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (81587, '2022-05-13', 9213, 77389, 5074, 55425, '1.0000', '6.0436', '6.0436', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81588, '2022-05-13', 1532, 77390, 5074, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81589, '2022-05-13', 2655, 77391, 5074, NULL, '1.0000', '5.6000', '5.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 (81590, '2022-05-13', 9831, 77392, 5074, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81591, '2022-05-13', 9830, 77393, 5074, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81592, '2022-05-13', 1520, 77394, 5074, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81593, '2022-05-13', 2315, 77395, 5074, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '117.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81594, '2022-05-13', 2655, 77396, 5074, NULL, '1.0000', '5.6000', '5.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 (81595, '2022-05-13', 1627, 77397, 5074, 54569, '1.0000', '49.2200', '49.2200', '67.0000', '67.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81596, '2022-05-13', 1665, 77398, 5074, 55689, '5.0000', '1.1651', '1.1651', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81597, '2022-05-13', 7385, 77399, 5074, 54887, '2.0000', '4.9657', '4.9657', '3.7000', '3.7000', '79.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81598, '2022-05-13', 9856, 77400, 5074, 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 (81599, '2022-05-13', 7483, 77401, 5074, 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 (81600, '2022-05-13', 2242, 77402, 5074, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81601, '2022-05-13', 2699, 77403, 5074, NULL, '1.0000', '3.6019', '3.6019', '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 (81602, '2022-05-13', 1602, 77404, 5074, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81603, '2022-05-13', 2821, 77405, 5074, 55676, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81604, '2022-05-13', 2315, 77406, 5074, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '117.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81605, '2022-05-13', 2416, 77407, 5074, 55413, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81606, '2022-05-13', 9740, 77408, 5074, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81607, '2022-05-13', 2769, 77409, 5074, 54561, '3.0000', '1.8925', '1.8925', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81608, '2022-05-13', 1690, 77410, 5074, 55660, '1.0000', '7.9000', '7.9000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81609, '2022-05-13', 1499, 77411, 5074, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '66.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81610, '2022-05-13', 2169, 77412, 5074, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81611, '2022-05-13', 7743, 77413, 5074, NULL, '1.0000', '7.3900', '7.3900', '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 (81612, '2022-05-13', 9856, 77414, 5074, 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 (81613, '2022-05-13', 8208, 77415, 5074, NULL, '2.0000', '33.0000', '33.0000', '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 (81614, '2022-05-13', 8133, 77416, 5074, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (81615, '2022-05-13', 8444, 77417, 5074, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81616, '2022-05-13', 2821, 77418, 5074, 55676, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81617, '2022-05-13', 2289, 77419, 5074, NULL, '2.0000', '0.1400', '0.1400', '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 (81618, '2022-05-13', 9794, 77420, 5074, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81619, '2022-05-13', 9842, 77421, 5074, 51251, '1.0000', '5.6200', '5.6200', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81620, '2022-05-13', 2270, 77422, 5074, 54900, '1.0000', '8.0000', '8.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81621, '2022-05-13', 7641, 77423, 5074, NULL, '1.0000', '1.9000', '1.9000', '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 (81622, '2022-05-13', 7917, 77424, 5074, NULL, '1.0000', '5.0000', '5.0000', '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 (81623, '2022-05-13', 9856, 77425, 5074, 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 (81624, '2022-05-13', 8878, 77426, 5074, 55582, '1.0000', '-8.5209', '-8.5209', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81625, '2022-05-13', 2237, 77427, 5074, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81626, '2022-05-13', 2092, 77428, 5075, 22005, '-2.0000', '4.1500', '4.1500', '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 (81627, '2022-05-13', 2092, 77428, 5075, NULL, '3.0000', '4.1500', '4.1500', '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 (81628, '2022-05-13', 2366, 77429, 5075, 3833, '-56.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 (81629, '2022-05-13', 2366, 77429, 5075, NULL, '58.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81630, '2022-05-13', 2893, 77430, 5076, 50878, '1.0000', '6.1222', '6.1222', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81631, '2022-05-14', 2135, 77431, 5077, NULL, '1.0000', '-0.2588', '-0.2588', '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 (81632, '2022-05-14', 8773, 77432, 5077, NULL, '1.0000', '3.8300', '3.8300', '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 (81633, '2022-05-14', 2565, 77433, 5077, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81634, '2022-05-14', 2617, 77434, 5077, 54513, '2.0000', '5.1800', '5.1800', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81635, '2022-05-14', 9531, 77435, 5077, 55098, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81636, '2022-05-14', 2038, 77436, 5077, 54836, '1.0000', '17.0564', '17.0564', '21.0000', '21.0000', '6.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81637, '2022-05-14', 1520, 77437, 5077, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81638, '2022-05-14', 2948, 77438, 5077, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81639, '2022-05-14', 1760, 77439, 5077, NULL, '1.0000', '1.5900', '1.5900', '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 (81640, '2022-05-14', 2416, 77440, 5077, 55413, '2.0000', '1.2379', '1.2379', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81641, '2022-05-14', 2131, 77441, 5077, 53418, '1.0000', '7.5500', '7.5500', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81642, '2022-05-14', 9830, 77442, 5077, 55089, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81643, '2022-05-14', 9794, 77443, 5077, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81644, '2022-05-14', 2275, 77444, 5077, 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 (81645, '2022-05-14', 1950, 77445, 5077, NULL, '2.0000', '1.8624', '1.8624', '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 (81646, '2022-05-14', 7592, 77446, 5077, NULL, '1.0000', '8.6500', '8.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 (81647, '2022-05-14', 1342, 77447, 5077, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81648, '2022-05-14', 9729, 77448, 5077, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81649, '2022-05-14', 2275, 77449, 5077, 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 (81650, '2022-05-14', 2821, 77450, 5078, NULL, '2.0000', '3.5100', '3.5100', '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 (81651, '2022-05-14', 1839, 77451, 5078, 8734, '-31.0000', '6.1500', '6.1500', '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 (81652, '2022-05-14', 1839, 77451, 5078, NULL, '32.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81653, '2022-05-14', 1580, 77452, 5078, 7598, '-50.0000', '0.9900', '0.9900', '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 (81654, '2022-05-14', 1580, 77452, 5078, NULL, '53.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-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 (81655, '2022-05-14', 2916, 77453, 5078, 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 (81656, '2022-05-14', 1307, 77454, 5078, 1014, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '23.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 (81657, '2022-05-14', 9770, 77455, 5078, 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 (81658, '2022-05-14', 2379, 77456, 5078, 4032, '-54.0000', '1.5900', '1.5900', '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 (81659, '2022-05-14', 2379, 77456, 5078, NULL, '55.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-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 (81660, '2022-05-14', 2315, 77457, 5078, 2735, '-341.0000', '0.3300', '0.3300', '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 (81661, '2022-05-14', 2315, 77457, 5078, NULL, '343.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-343.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81662, '2022-05-14', 2678, 77458, 5078, 12161, '-1.0000', '37.0000', '37.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 (81663, '2022-05-14', 2678, 77458, 5078, NULL, '2.0000', '37.0000', '37.0000', '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 (81664, '2022-05-14', 9683, 77459, 5078, NULL, '1.0000', '3.1000', '3.1000', '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 (81665, '2022-05-14', 2244, 77460, 5078, 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 (81666, '2022-05-14', 1775, 77461, 5078, 4353, '14.0000', '1.7000', '1.7000', '2.6000', '2.6000', '14.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 (81667, '2022-05-14', 1783, 77462, 5078, 4901, '-27.0000', '7.8500', '7.8500', '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 (81668, '2022-05-14', 1783, 77462, 5078, NULL, '28.0000', '7.8500', '7.8500', '13.5000', '13.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 (81669, '2022-05-14', 1494, 77463, 5078, NULL, '1.0000', '11.9056', '11.9056', '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 (81670, '2022-05-14', 1806, 77464, 5078, 11433, '-3.0000', '28.1300', '28.1300', '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 (81671, '2022-05-14', 1806, 77464, 5078, NULL, '5.0000', '28.1300', '28.1300', '44.0000', '44.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 (81672, '2022-05-14', 2655, 77465, 5078, 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 (81673, '2022-05-14', 2352, 77466, 5078, 3855, '-171.0000', '20.0000', '20.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 (81674, '2022-05-14', 2352, 77466, 5078, NULL, '176.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-176.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81675, '2022-05-14', 8756, 77467, 5078, 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 (81676, '2022-05-14', 2643, 77468, 5078, NULL, '1.0000', '0.8700', '0.8700', '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 (81677, '2022-05-14', 1892, 77469, 5078, 5431, '-14.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 (81678, '2022-05-14', 1892, 77469, 5078, NULL, '16.0000', '90.0000', '90.0000', '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 (81679, '2022-05-14', 2169, 77470, 5079, 10737, '-125.0000', '3.8397', '3.8397', '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 (81680, '2022-05-14', 2169, 77470, 5079, NULL, '126.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81681, '2022-05-14', 9399, 77471, 5079, NULL, '1.0000', '0.9800', '0.9800', '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 (81682, '2022-05-14', 7741, 77472, 5079, NULL, '1.0000', '1.2000', '1.2000', '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 (81683, '2022-05-14', 9734, 77473, 5079, NULL, '2.0000', '0.3200', '0.3200', '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 (81684, '2022-05-14', 9868, 77474, 5079, 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 (81685, '2022-05-14', 1935, 77475, 5080, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81686, '2022-05-14', 9840, 77476, 5080, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81687, '2022-05-14', 9813, 77477, 5080, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81688, '2022-05-14', 1520, 77478, 5080, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81689, '2022-05-14', 2299, 77479, 5080, 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 (81690, '2022-05-14', 9754, 77480, 5080, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81691, '2022-05-14', 2315, 77481, 5080, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '111.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81692, '2022-05-14', 2169, 77482, 5080, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81693, '2022-05-14', 2315, 77483, 5080, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '111.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81694, '2022-05-14', 1734, 77484, 5080, 48174, '1.0000', '14.9800', '14.9800', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81695, '2022-05-14', 1676, 77485, 5080, 55540, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81696, '2022-05-14', 2169, 77486, 5080, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81697, '2022-05-14', 2617, 77487, 5080, 54513, '1.0000', '5.1800', '5.1800', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81698, '2022-05-14', 1571, 77488, 5080, NULL, '1.0000', '308.7500', '308.7500', '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 (81699, '2022-05-14', 9634, 77489, 5081, 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 (81700, '2022-05-14', 9839, 77490, 5081, NULL, '1.0000', '15.0200', '15.0200', '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 (81701, '2022-05-14', 9832, 77491, 5081, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81702, '2022-05-14', 9590, 77492, 5081, NULL, '1.0000', '-6.6667', '-6.6667', '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 (81703, '2022-05-14', 9832, 77493, 5081, 55090, '3.0000', '1.5600', '1.5600', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81704, '2022-05-14', 8756, 77494, 5082, 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 (81705, '2022-05-14', 2416, 77495, 5083, 55413, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81706, '2022-05-14', 1425, 77496, 5083, NULL, '1.0000', '5.1721', '5.1721', '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 (81707, '2022-05-14', 9794, 77497, 5083, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81708, '2022-05-14', 9695, 77498, 5083, 55410, '2.0000', '5.1311', '5.1311', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81709, '2022-05-14', 8979, 77499, 5083, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81710, '2022-05-14', 7514, 77500, 5084, NULL, '1.0000', '3234.0124', '3234.0124', '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 (81711, '2022-05-14', 1810, 77501, 5084, NULL, '1.0000', '8.7500', '8.7500', '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 (81712, '2022-05-14', 7709, 77502, 5084, NULL, '2.0000', '202.4582', '202.4582', '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 (81713, '2022-05-14', 7473, 77503, 5084, NULL, '8.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '-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 (81714, '2022-05-14', 9891, 77504, 5084, 55109, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '10.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81715, '2022-05-14', 7921, 77505, 5084, NULL, '1.0000', '0.3000', '0.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 (81716, '2022-05-14', 7612, 77506, 5084, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81717, '2022-05-14', 9911, 77507, 5084, 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 (81718, '2022-05-14', 8303, 77508, 5084, 54293, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81719, '2022-05-14', 7514, 77509, 5084, NULL, '2.0000', '3234.0124', '3234.0124', '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 (81720, '2022-05-14', 7385, 77510, 5084, 55278, '1.0000', '9.1437', '9.1437', '3.7000', '3.7000', '99.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81721, '2022-05-14', 7672, 77511, 5084, NULL, '1.0000', '3.8200', '3.8200', '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 (81722, '2022-05-14', 7781, 77512, 5084, NULL, '3.0000', '5.2802', '5.2802', '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 (81723, '2022-05-14', 8203, 77513, 5084, 53907, '2.0000', '7.7723', '7.7723', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81724, '2022-05-14', 7672, 77514, 5084, NULL, '1.0000', '3.8200', '3.8200', '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 (81725, '2022-05-14', 7354, 77515, 5084, NULL, '1.0000', '-2.5000', '-2.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 (81726, '2022-05-14', 7652, 77516, 5084, NULL, '5.0000', '469.9972', '469.9972', '1.6000', '1.6000', '-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 (81727, '2022-05-14', 7527, 77517, 5084, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81728, '2022-05-14', 7557, 77518, 5084, NULL, '10.0000', '0.5000', '0.5000', '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 (81729, '2022-05-14', 7547, 77519, 5084, NULL, '4.0000', '0.0000', '0.0000', '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 (81730, '2022-05-14', 7780, 77520, 5084, NULL, '1.0000', '-24.3351', '-24.3351', '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 (81731, '2022-05-14', 7859, 77521, 5084, 54101, '1.0000', '12.6364', '12.6364', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81732, '2022-05-14', 7674, 77522, 5084, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81733, '2022-05-14', 7753, 77523, 5084, 55353, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81734, '2022-05-14', 9740, 77524, 5084, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81735, '2022-05-14', 2100, 77525, 5084, NULL, '1.0000', '2.0800', '2.0800', '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 (81736, '2022-05-14', 8308, 77526, 5084, NULL, '1.0000', '40.0646', '40.0646', '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 (81737, '2022-05-14', 9821, 77527, 5084, 54274, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81738, '2022-05-14', 2656, 77528, 5084, NULL, '2.0000', '3.0625', '3.0625', '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 (81739, '2022-05-14', 7590, 77529, 5084, NULL, '2.0000', '6.0509', '6.0509', '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 (81740, '2022-05-14', 7565, 77530, 5084, NULL, '1.0000', '0.2000', '0.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 (81741, '2022-05-14', 8878, 77531, 5084, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81742, '2022-05-14', 7886, 77532, 5084, 54287, '1.0000', '5.1718', '5.1718', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81743, '2022-05-14', 7457, 77533, 5084, 55349, '1.0000', '4.1550', '4.1550', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81744, '2022-05-14', 7704, 77534, 5084, NULL, '5.0000', '-1.5625', '-1.5625', '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 (81745, '2022-05-14', 1760, 77535, 5084, 46907, '1.0000', '101242.9406', '101242.9406', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81746, '2022-05-14', 7881, 77536, 5084, NULL, '1.0000', '-104.2377', '-104.2377', '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 (81747, '2022-05-14', 8362, 77537, 5084, NULL, '10.0000', '8.4750', '8.4750', '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 (81748, '2022-05-14', 9792, 77538, 5084, 50458, '2.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81749, '2022-05-14', 7770, 77539, 5084, 55117, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81750, '2022-05-14', 2104, 77540, 5084, NULL, '10.0000', '0.2000', '0.2000', '0.5000', '0.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 (81751, '2022-05-14', 8309, 77541, 5084, NULL, '1.0000', '14.5000', '14.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 (81752, '2022-05-14', 8690, 77542, 5084, 50462, '1.0000', '10.8000', '10.8000', '14.5000', '14.5000', '16.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81753, '2022-05-14', 7780, 77543, 5084, NULL, '1.0000', '-24.3351', '-24.3351', '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 (81754, '2022-05-14', 2061, 77544, 5084, 51782, '1.0000', '10.5366', '10.5366', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81755, '2022-05-14', 8966, 77545, 5084, 54711, '1.0000', '8.1250', '8.1250', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81756, '2022-05-14', 8407, 77546, 5084, 48379, '1.0000', '1.6726', '1.6726', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81757, '2022-05-14', 7672, 77547, 5084, NULL, '1.0000', '3.8200', '3.8200', '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 (81758, '2022-05-14', 8744, 77548, 5084, 55069, '1.0000', '3.8469', '3.8469', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81759, '2022-05-14', 8186, 77549, 5084, 55286, '6.0000', '1.4278', '1.4278', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81760, '2022-05-14', 2315, 77550, 5084, 53909, '8.0000', '0.6636', '0.6636', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81761, '2022-05-14', 1841, 77551, 5084, 55340, '8.0000', '0.3638', '0.3638', '0.5000', '0.5000', '92.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81762, '2022-05-14', 9750, 77552, 5084, 46931, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81763, '2022-05-14', 2777, 77553, 5084, NULL, '2.0000', '2.5000', '2.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 (81764, '2022-05-14', 7702, 77554, 5084, NULL, '1.0000', '0.0175', '0.0175', '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 (81765, '2022-05-14', 7781, 77555, 5084, NULL, '3.0000', '5.2802', '5.2802', '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 (81766, '2022-05-14', 9565, 77556, 5084, 54512, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81767, '2022-05-14', 8417, 77557, 5084, 50467, '1.0000', '5.3524', '5.3524', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81768, '2022-05-14', 1841, 77558, 5084, 55340, '4.0000', '0.3638', '0.3638', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81769, '2022-05-14', 2315, 77559, 5084, 53909, '4.0000', '0.6636', '0.6636', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81770, '2022-05-14', 9750, 77560, 5084, 46931, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '45.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81771, '2022-05-14', 7674, 77561, 5084, 55281, '9.0000', '142.3408', '142.3408', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81772, '2022-05-14', 7907, 77562, 5084, NULL, '1.0000', '12.0000', '12.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 (81773, '2022-05-14', 7518, 77563, 5084, 55272, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81774, '2022-05-14', 8061, 77564, 5084, 55071, '1.0000', '39.6000', '39.6000', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81775, '2022-05-14', 7674, 77565, 5084, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81776, '2022-05-14', 8186, 77566, 5084, 55286, '3.0000', '1.4278', '1.4278', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81777, '2022-05-14', 2962, 77567, 5084, 53626, '1.0000', '4.2725', '4.2725', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81778, '2022-05-14', 8596, 77568, 5084, NULL, '1.0000', '18.5278', '18.5278', '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 (81779, '2022-05-14', 2602, 77569, 5084, 54442, '2.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81780, '2022-05-14', 7385, 77570, 5084, 55278, '2.0000', '9.1437', '9.1437', '3.7000', '3.7000', '98.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81781, '2022-05-14', 7641, 77571, 5084, 55274, '1.0000', '7.5957', '7.5957', '9.5000', '9.5000', '27.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81782, '2022-05-14', 9692, 77572, 5084, 51054, '8.0000', '-20.7921', '-20.7921', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81783, '2022-05-14', 8504, 77573, 5084, NULL, '1.0000', '-15.9000', '-15.9000', '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 (81784, '2022-05-14', 7633, 77574, 5084, NULL, '1.0000', '2.8700', '2.8700', '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 (81785, '2022-05-14', 9274, 77575, 5084, NULL, '1.0000', '6.7908', '6.7908', '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 (81786, '2022-05-14', 2315, 77576, 5084, 53909, '2.0000', '0.6636', '0.6636', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81787, '2022-05-14', 7807, 77577, 5084, NULL, '5.0000', '85.8000', '85.8000', '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 (81788, '2022-05-14', 8163, 77578, 5084, 53777, '1.0000', '18.5000', '18.5000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81789, '2022-05-14', 8308, 77579, 5084, NULL, '1.0000', '40.0646', '40.0646', '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 (81790, '2022-05-14', 7917, 77580, 5084, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '111.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81791, '2022-05-14', 7514, 77581, 5084, NULL, '1.0000', '3234.0124', '3234.0124', '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 (81792, '2022-05-14', 2699, 77582, 5084, 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 (81793, '2022-05-14', 8203, 77583, 5084, 53907, '2.0000', '7.7723', '7.7723', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81794, '2022-05-14', 7707, 77584, 5084, NULL, '1.0000', '5.7519', '5.7519', '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 (81795, '2022-05-14', 7672, 77585, 5084, NULL, '2.0000', '3.8200', '3.8200', '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 (81796, '2022-05-14', 7411, 77586, 5084, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81797, '2022-05-14', 7980, 77587, 5084, NULL, '5.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (81798, '2022-05-14', 7781, 77588, 5084, NULL, '2.0000', '5.2802', '5.2802', '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 (81799, '2022-05-14', 8243, 77589, 5084, NULL, '2.0000', '1.1400', '1.1400', '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 (81800, '2022-05-14', 9880, 77590, 5084, NULL, '1.0000', '3.4200', '3.4200', '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 (81801, '2022-05-14', 7672, 77591, 5084, NULL, '1.0000', '3.8200', '3.8200', '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 (81802, '2022-05-14', 7457, 77592, 5084, 55349, '1.0000', '4.1550', '4.1550', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81803, '2022-05-14', 7588, 77593, 5084, NULL, '1.0000', '10.0320', '10.0320', '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 (81804, '2022-05-14', 8638, 77594, 5084, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81805, '2022-05-14', 9821, 77595, 5085, 54274, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81806, '2022-05-14', 7674, 77596, 5085, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81807, '2022-05-14', 8666, 77597, 5085, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81808, '2022-05-14', 7385, 77598, 5085, 55278, '4.0000', '9.1437', '9.1437', '3.7000', '3.7000', '93.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81809, '2022-05-14', 7703, 77599, 5085, NULL, '3.0000', '102.7757', '102.7757', '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 (81810, '2022-05-14', 9735, 77600, 5085, 55132, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81811, '2022-05-14', 8878, 77601, 5085, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81812, '2022-05-14', 8680, 77602, 5085, NULL, '1.0000', '2.0000', '2.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 (81813, '2022-05-14', 7715, 77603, 5085, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '25.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81814, '2022-05-14', 8849, 77604, 5085, NULL, '1.0000', '1.0700', '1.0700', '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 (81815, '2022-05-14', 8677, 77605, 5085, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81816, '2022-05-14', 9865, 77606, 5085, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81817, '2022-05-14', 7703, 77607, 5085, NULL, '2.0000', '102.7757', '102.7757', '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 (81818, '2022-05-14', 2362, 77608, 5086, 44696, '3.0000', '72.6993', '72.6993', '115.0000', '115.0000', '16.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81819, '2022-05-14', 9590, 77609, 5086, NULL, '1.0000', '0.0000', '0.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 (81820, '2022-05-14', 7806, 77610, 5086, 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 (81821, '2022-05-14', 2085, 77611, 5086, 54602, '10.0000', '8.7836', '8.7836', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81822, '2022-05-14', 7927, 77612, 5086, NULL, '1.0000', '11.8000', '11.8000', '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 (81823, '2022-05-14', 2266, 77613, 5086, 55505, '1.0000', '6.5549', '6.5549', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81824, '2022-05-14', 1307, 77614, 5086, NULL, '1.0000', '-1.1000', '-1.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 (81825, '2022-05-14', 1409, 77615, 5086, 54405, '1.0000', '13.0537', '13.0537', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81826, '2022-05-14', 2229, 77616, 5086, 49412, '1.0000', '25.2188', '25.2188', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81827, '2022-05-14', 7334, 77617, 5086, NULL, '3.0000', '8.1600', '8.1600', '13.5000', '13.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 (81828, '2022-05-14', 7917, 77618, 5086, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81829, '2022-05-14', 7997, 77619, 5086, NULL, '1.0000', '1.5000', '1.5000', '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 (81830, '2022-05-14', 7518, 77620, 5086, NULL, '1.0000', '5.1300', '5.1300', '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 (81831, '2022-05-14', 8355, 77621, 5086, NULL, '1.0000', '22.7700', '22.7700', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81832, '2022-05-14', 1415, 77622, 5086, 45117, '1.0000', '14.5000', '14.5000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81833, '2022-05-14', 7848, 77623, 5086, NULL, '1.0000', '15.0000', '15.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 (81834, '2022-05-14', 1494, 77624, 5086, 34684, '1.0000', '9.2896', '9.2896', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81835, '2022-05-14', 2768, 77625, 5086, NULL, '2.0000', '0.9600', '0.9600', '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 (81836, '2022-05-14', 1602, 77626, 5086, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81837, '2022-05-14', 1670, 77627, 5086, 54623, '1.0000', '48.0854', '48.0854', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81838, '2022-05-14', 7790, 77628, 5086, 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 (81839, '2022-05-14', 2381, 77629, 5086, 54374, '1.0000', '7.5245', '7.5245', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81840, '2022-05-14', 9463, 77630, 5086, 52289, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81841, '2022-05-14', 2253, 77631, 5086, 55470, '1.0000', '14.3703', '14.3703', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81842, '2022-05-14', 1812, 77632, 5086, 54638, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81843, '2022-05-14', 1805, 77633, 5086, 54635, '1.0000', '5.0226', '5.0226', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81844, '2022-05-14', 1493, 77634, 5086, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81845, '2022-05-14', 2416, 77635, 5086, 55454, '1.0000', '1.2441', '1.2441', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81846, '2022-05-14', 7385, 77636, 5086, 55490, '2.0000', '2.5970', '2.5970', '3.7000', '3.7000', '56.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81847, '2022-05-14', 1584, 77637, 5086, 55453, '1.0000', '6.2183', '6.2183', '9.5000', '9.5000', '11.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81848, '2022-05-14', 7744, 77638, 5086, NULL, '1.0000', '2.9400', '2.9400', '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 (81849, '2022-05-14', 7524, 77639, 5086, NULL, '4.0000', '11.9500', '11.9500', '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 (81850, '2022-05-14', 2068, 77640, 5086, 55506, '1.0000', '11.7097', '11.7097', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81851, '2022-05-14', 2858, 77641, 5086, 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 (81852, '2022-05-14', 8040, 77642, 5086, NULL, '1.0000', '14.9000', '14.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 (81853, '2022-05-14', 2548, 77643, 5086, NULL, '1.0000', '5.8956', '5.8956', '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 (81854, '2022-05-14', 7412, 77644, 5087, NULL, '1.0000', '1.5200', '1.5200', '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 (81855, '2022-05-15', 8966, 77645, 5088, NULL, '1.0000', '6.8500', '6.8500', '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 (81856, '2022-05-15', 2315, 77646, 5088, 2735, '-343.0000', '0.3300', '0.3300', '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 (81857, '2022-05-15', 2315, 77646, 5088, NULL, '344.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-344.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81858, '2022-05-15', 7354, 77647, 5088, NULL, '1.0000', '0.3700', '0.3700', '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 (81859, '2022-05-15', 9092, 77648, 5088, NULL, '5.0000', '5.2900', '5.2900', '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 (81860, '2022-05-15', 7412, 77649, 5088, NULL, '1.0000', '1.5200', '1.5200', '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 (81861, '2022-05-15', 7744, 77650, 5088, 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 (81862, '2022-05-15', 7641, 77651, 5088, NULL, '2.0000', '1.9000', '1.9000', '9.5000', '9.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 (81863, '2022-05-15', 9751, 77652, 5088, 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 (81864, '2022-05-15', 7560, 77653, 5088, NULL, '1.0000', '33.0200', '33.0200', '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 (81865, '2022-05-15', 2548, 77654, 5088, 6904, '-2.0000', '6.7200', '6.7200', '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 (81866, '2022-05-15', 2548, 77654, 5088, NULL, '3.0000', '6.7200', '6.7200', '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 (81867, '2022-05-15', 7769, 77655, 5088, 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 (81868, '2022-05-15', 7672, 77656, 5088, NULL, '1.0000', '1.0200', '1.0200', '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 (81869, '2022-05-15', 7680, 77657, 5088, NULL, '1.0000', '21.1800', '21.1800', '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 (81870, '2022-05-15', 8878, 77658, 5088, NULL, '2.0000', '6.6700', '6.6700', '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 (81871, '2022-05-15', 7707, 77659, 5088, NULL, '1.0000', '7.0000', '7.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 (81872, '2022-05-15', 8395, 77660, 5088, NULL, '5.0000', '0.9700', '0.9700', '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 (81873, '2022-05-15', 7819, 77661, 5088, NULL, '1.0000', '9.5000', '9.5000', '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 (81874, '2022-05-15', 2295, 77662, 5088, 22264, '3.0000', '0.9600', '0.9600', '2.5000', '2.5000', '21.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 (81875, '2022-05-15', 2242, 77663, 5088, 3059, '-17.0000', '0.4800', '0.4800', '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 (81876, '2022-05-15', 2242, 77663, 5088, NULL, '20.0000', '0.4800', '0.4800', '1.5000', '1.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 (81877, '2022-05-15', 7674, 77664, 5088, NULL, '1.0000', '1.3000', '1.3000', '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 (81878, '2022-05-15', 7753, 77665, 5088, NULL, '1.0000', '3.4000', '3.4000', '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 (81879, '2022-05-15', 7411, 77666, 5088, NULL, '1.0000', '1.3500', '1.3500', '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 (81880, '2022-05-15', 7709, 77667, 5088, NULL, '2.0000', '3.5000', '3.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 (81881, '2022-05-15', 8836, 77668, 5088, NULL, '3.0000', '12.0000', '12.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 (81882, '2022-05-15', 1904, 77669, 5088, 5442, '-43.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 (81883, '2022-05-15', 1904, 77669, 5088, NULL, '44.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81884, '2022-05-15', 7473, 77670, 5088, NULL, '2.0000', '0.5300', '0.5300', '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 (81885, '2022-05-15', 7967, 77671, 5088, NULL, '1.0000', '7.0000', '7.0000', '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 (81886, '2022-05-15', 7672, 77672, 5088, NULL, '1.0000', '1.0200', '1.0200', '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 (81887, '2022-05-15', 7458, 77673, 5088, NULL, '5.0000', '1.7700', '1.7700', '2.5000', '2.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 (81888, '2022-05-15', 8074, 77674, 5088, NULL, '1.0000', '25.3504', '25.3504', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81889, '2022-05-15', 9565, 77675, 5088, NULL, '2.0000', '4.5000', '4.5000', '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 (81890, '2022-05-15', 7762, 77676, 5089, 54082, '1.0000', '-0.2334', '-0.2334', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81891, '2022-05-15', 1339, 77677, 5089, NULL, '2.0000', '3.0223', '3.0223', '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 (81892, '2022-05-15', 7674, 77678, 5089, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81893, '2022-05-15', 7592, 77679, 5089, 53940, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81894, '2022-05-15', 8032, 77680, 5089, 50374, '1.0000', '6.2640', '6.2640', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81895, '2022-05-15', 2315, 77681, 5089, 53909, '1.0000', '0.6636', '0.6636', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81896, '2022-05-15', 2289, 77682, 5089, NULL, '2.0000', '2.5688', '2.5688', '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 (81897, '2022-05-15', 7775, 77683, 5089, NULL, '1.0000', '-2.9800', '-2.9800', '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 (81898, '2022-05-15', 9028, 77684, 5089, 46232, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81899, '2022-05-15', 7524, 77685, 5089, 55350, '1.0000', '4.3112', '4.3112', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81900, '2022-05-15', 1837, 77686, 5089, 45863, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81901, '2022-05-15', 9599, 77687, 5089, NULL, '1.0000', '2.7300', '2.7300', '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 (81902, '2022-05-15', 7780, 77688, 5089, NULL, '1.0000', '-24.3351', '-24.3351', '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 (81903, '2022-05-15', 1935, 77689, 5089, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '134.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81904, '2022-05-15', 8444, 77690, 5089, 55280, '1.0000', '5.8648', '5.8648', '2.5000', '2.5000', '95.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81905, '2022-05-15', 7411, 77691, 5089, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81906, '2022-05-15', 8304, 77692, 5089, 54500, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81907, '2022-05-15', 7630, 77693, 5089, 53942, '2.0000', '5.6211', '5.6211', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81908, '2022-05-15', 7385, 77694, 5089, 55278, '5.0000', '9.1437', '9.1437', '3.7000', '3.7000', '88.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81909, '2022-05-15', 7509, 77695, 5089, 55284, '1.0000', '12.3063', '12.3063', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81910, '2022-05-15', 7423, 77696, 5089, 51254, '1.0000', '14.3352', '14.3352', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81911, '2022-05-15', 9736, 77697, 5089, 51795, '1.0000', '3.9253', '3.9253', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81912, '2022-05-15', 7742, 77698, 5089, 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 (81913, '2022-05-15', 7753, 77699, 5089, 55353, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81914, '2022-05-15', 7674, 77700, 5089, 55281, '2.0000', '142.3408', '142.3408', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81915, '2022-05-15', 8017, 77701, 5089, 51835, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81916, '2022-05-15', 8297, 77702, 5089, NULL, '1.0000', '73.3000', '73.3000', '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 (81917, '2022-05-15', 9092, 77703, 5089, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '133.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81918, '2022-05-15', 8596, 77704, 5089, NULL, '1.0000', '18.5278', '18.5278', '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 (81919, '2022-05-15', 7667, 77705, 5089, 43447, '1.0000', '8.6120', '8.6120', '9.0000', '9.0000', '19.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81920, '2022-05-15', 9272, 77706, 5089, NULL, '1.0000', '3.1000', '3.1000', '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 (81921, '2022-05-15', 8053, 77707, 5089, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81922, '2022-05-15', 1914, 77708, 5089, 55118, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81923, '2022-05-15', 7672, 77709, 5089, NULL, '1.0000', '3.8200', '3.8200', '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 (81924, '2022-05-15', 7666, 77710, 5089, 55291, '1.0000', '1.2064', '1.2064', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81925, '2022-05-15', 8539, 77711, 5089, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81926, '2022-05-15', 7473, 77712, 5089, NULL, '1.0000', '-68.3632', '-68.3632', '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 (81927, '2022-05-15', 7457, 77713, 5089, 55349, '3.0000', '4.1550', '4.1550', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81928, '2022-05-15', 7482, 77714, 5089, 55328, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '29.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81929, '2022-05-15', 2320, 77715, 5090, 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 (81930, '2022-05-15', 1839, 77716, 5090, 55510, '1.0000', '7.7485', '7.7485', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81931, '2022-05-15', 1845, 77717, 5090, 55478, '1.0000', '20.7836', '20.7836', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81932, '2022-05-15', 1602, 77718, 5090, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81933, '2022-05-15', 2567, 77719, 5090, 55008, '1.0000', '-94.7285', '-94.7285', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81934, '2022-05-15', 9770, 77720, 5090, 47848, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 348);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81935, '2022-05-15', 2411, 77721, 5090, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81936, '2022-05-15', 2163, 77722, 5090, 54644, '1.0000', '23.1111', '23.1111', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81937, '2022-05-15', 2259, 77723, 5090, 54622, '1.0000', '21.2353', '21.2353', '31.0000', '31.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81938, '2022-05-15', 1602, 77724, 5090, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81939, '2022-05-15', 7954, 77725, 5090, 52099, '2.0000', '-65.3773', '-65.3773', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81940, '2022-05-15', 9788, 77726, 5090, 53266, '4.0000', '1.5100', '1.5100', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81941, '2022-05-15', 7385, 77727, 5090, 55490, '8.0000', '2.5970', '2.5970', '3.7000', '3.7000', '48.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81942, '2022-05-15', 8933, 77728, 5090, 55452, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81943, '2022-05-15', 9213, 77729, 5090, 55451, '1.0000', '5.7334', '5.7334', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81944, '2022-05-15', 2340, 77730, 5091, 47125, '1.0000', '7.4200', '7.4200', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81945, '2022-05-15', 2673, 77731, 5091, 48921, '1.0000', '15.1250', '15.1250', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81946, '2022-05-15', 1867, 77732, 5091, 55547, '2.0000', '6.2086', '6.2086', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81947, '2022-05-15', 9747, 77733, 5091, 54928, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81948, '2022-05-15', 2099, 77734, 5091, 51213, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81949, '2022-05-15', 9783, 77735, 5091, 54904, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81950, '2022-05-15', 2242, 77736, 5091, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81951, '2022-05-15', 2315, 77737, 5091, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '108.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81952, '2022-05-15', 8775, 77738, 5091, 51020, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81953, '2022-05-15', 2384, 77739, 5091, NULL, '3.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (81954, '2022-05-15', 7514, 77740, 5091, NULL, '1.0000', '2.2500', '2.2500', '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 (81955, '2022-05-15', 2821, 77741, 5091, 55676, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81956, '2022-05-15', 9831, 77742, 5091, 55091, '2.0000', '1.6952', '1.6952', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81957, '2022-05-15', 1337, 77743, 5091, 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 (81958, '2022-05-15', 1402, 77744, 5091, 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 (81959, '2022-05-15', 2237, 77745, 5091, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81960, '2022-05-15', 2352, 77746, 5091, NULL, '3.0000', '126.2588', '126.2588', '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 (81961, '2022-05-15', 9496, 77747, 5091, NULL, '1.0000', '3.8800', '3.8800', '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 (81962, '2022-05-15', 3029, 77748, 5091, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81963, '2022-05-15', 2682, 77749, 5091, 53653, '1.0000', '16.5400', '16.5400', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81964, '2022-05-15', 7524, 77750, 5091, NULL, '1.0000', '11.9500', '11.9500', '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 (81965, '2022-05-15', 7318, 77751, 5091, 51230, '1.0000', '10.6148', '10.6148', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81966, '2022-05-15', 7806, 77752, 5091, 39775, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81967, '2022-05-15', 2728, 77753, 5091, 19354, '1.0000', '0.8000', '0.8000', '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 (81968, '2022-05-15', 8170, 77754, 5091, NULL, '1.0000', '5.7500', '5.7500', '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 (81969, '2022-05-15', 2655, 77755, 5091, NULL, '1.0000', '5.6000', '5.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 (81970, '2022-05-15', 8878, 77756, 5091, 55582, '5.0000', '-8.5209', '-8.5209', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81971, '2022-05-15', 7482, 77757, 5091, NULL, '1.0000', '2.5019', '2.5019', '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 (81972, '2022-05-15', 7412, 77758, 5091, 54525, '2.0000', '8.3200', '8.3200', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81973, '2022-05-15', 7353, 77759, 5091, NULL, '1.0000', '0.1900', '0.1900', '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 (81974, '2022-05-15', 2237, 77760, 5091, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81975, '2022-05-15', 2169, 77761, 5091, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81976, '2022-05-15', 8085, 77762, 5091, NULL, '6.0000', '14.0000', '14.0000', '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 (81977, '2022-05-15', 9906, 77763, 5091, 55159, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81978, '2022-05-15', 8746, 77764, 5091, 55412, '2.0000', '3.2727', '3.2727', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81979, '2022-05-15', 7459, 77765, 5091, NULL, '1.0000', '-15.3118', '-15.3118', '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 (81980, '2022-05-15', 1785, 77766, 5091, 53210, '1.0000', '16.0121', '16.0121', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81981, '2022-05-15', 2169, 77767, 5091, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81982, '2022-05-15', 7353, 77768, 5091, NULL, '2.0000', '0.1900', '0.1900', '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 (81983, '2022-05-15', 2315, 77769, 5091, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '108.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81984, '2022-05-15', 1826, 77770, 5091, 19385, '10.0000', '0.2100', '0.2100', '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 (81985, '2022-05-15', 2066, 77771, 5091, 54883, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81986, '2022-05-15', 7514, 77772, 5091, NULL, '1.0000', '2.2500', '2.2500', '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 (81987, '2022-05-15', 7565, 77773, 5091, NULL, '1.0000', '0.2000', '0.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 (81988, '2022-05-15', 9738, 77774, 5091, 54576, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81989, '2022-05-15', 2821, 77775, 5091, 55676, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81990, '2022-05-15', 8444, 77776, 5091, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81991, '2022-05-15', 2519, 77777, 5091, 42535, '3.0000', '13.7000', '13.7000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81992, '2022-05-15', 9388, 77778, 5091, NULL, '3.0000', '5.0000', '5.0000', '7.0000', '7.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 (81993, '2022-05-15', 7323, 77779, 5091, 55541, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81994, '2022-05-15', 3029, 77780, 5091, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81995, '2022-05-15', 9724, 77781, 5091, 47062, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81996, '2022-05-15', 2699, 77782, 5091, NULL, '1.0000', '3.6019', '3.6019', '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 (81997, '2022-05-15', 2906, 77783, 5091, NULL, '2.0000', '2.6000', '2.6000', '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 (81998, '2022-05-15', 7457, 77784, 5091, NULL, '1.0000', '2.3500', '2.3500', '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 (81999, '2022-05-15', 1311, 77785, 5091, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82000, '2022-05-15', 1497, 77786, 5091, NULL, '1.0000', '11.4446', '11.4446', '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 (82001, '2022-05-15', 7641, 77787, 5091, NULL, '1.0000', '1.9000', '1.9000', '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 (82002, '2022-05-15', 7514, 77788, 5091, NULL, '1.0000', '2.2500', '2.2500', '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 (82003, '2022-05-15', 8170, 77789, 5091, NULL, '1.0000', '5.7500', '5.7500', '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 (82004, '2022-05-15', 1855, 77790, 5091, NULL, '1.0000', '1.5003', '1.5003', '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 (82005, '2022-05-15', 9856, 77791, 5091, 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 (82006, '2022-05-15', 2302, 77792, 5091, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82007, '2022-05-15', 9794, 77793, 5091, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82008, '2022-05-15', 9578, 77794, 5091, 54578, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82009, '2022-05-15', 9856, 77795, 5091, 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 (82010, '2022-05-15', 9840, 77796, 5091, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82011, '2022-05-15', 1986, 77797, 5091, 53419, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82012, '2022-05-15', 9747, 77798, 5091, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82013, '2022-05-15', 9794, 77799, 5091, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82014, '2022-05-15', 7514, 77800, 5091, NULL, '1.0000', '2.2500', '2.2500', '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 (82015, '2022-05-15', 9906, 77801, 5091, 55159, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82016, '2022-05-15', 8607, 77802, 5091, NULL, '1.0000', '-3.0000', '-3.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 (82017, '2022-05-15', 7482, 77803, 5091, NULL, '1.0000', '2.5019', '2.5019', '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 (82018, '2022-05-15', 1425, 77804, 5091, NULL, '1.0000', '5.1721', '5.1721', '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 (82019, '2022-05-15', 2169, 77805, 5091, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82020, '2022-05-15', 1935, 77806, 5091, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82021, '2022-05-15', 9788, 77807, 5091, 54919, '5.0000', '1.5347', '1.5347', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82022, '2022-05-15', 9816, 77808, 5091, 51016, '1.0000', '5.2000', '5.2000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82023, '2022-05-15', 1493, 77809, 5091, 55646, '1.0000', '-27.3400', '-27.3400', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82024, '2022-05-15', 2242, 77810, 5091, 54572, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82025, '2022-05-15', 7803, 77811, 5091, NULL, '1.0000', '1.8200', '1.8200', '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 (82026, '2022-05-15', 2242, 77812, 5091, 54572, '1.0000', '2.4162', '2.4162', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82027, '2022-05-15', 7482, 77813, 5091, NULL, '1.0000', '2.5019', '2.5019', '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 (82028, '2022-05-15', 7743, 77814, 5091, NULL, '3.0000', '7.3900', '7.3900', '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 (82029, '2022-05-15', 8878, 77815, 5091, 55582, '1.0000', '-8.5209', '-8.5209', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82030, '2022-05-15', 8878, 77816, 5092, NULL, '1.0000', '-8.5209', '-8.5209', '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 (82031, '2022-05-15', 9698, 77817, 5092, 52196, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82032, '2022-05-15', 2169, 77818, 5092, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '111.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82033, '2022-05-15', 9794, 77819, 5092, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '69.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82034, '2022-05-15', 8319, 77820, 5092, 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 (82035, '2022-05-15', 2379, 77821, 5092, NULL, '1.0000', '-3.0170', '-3.0170', '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 (82036, '2022-05-15', 2416, 77822, 5092, 55413, '2.0000', '1.2379', '1.2379', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82037, '2022-05-15', 1912, 77823, 5092, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82038, '2022-05-15', 1310, 77824, 5092, 52211, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82039, '2022-05-15', 9839, 77825, 5092, NULL, '1.0000', '15.0200', '15.0200', '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 (82040, '2022-05-15', 1342, 77826, 5092, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82041, '2022-05-15', 9794, 77827, 5092, 54929, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82042, '2022-05-15', 1935, 77828, 5092, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82043, '2022-05-15', 8878, 77829, 5092, NULL, '2.0000', '-8.5209', '-8.5209', '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 (82044, '2022-05-15', 9791, 77830, 5092, 51704, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82045, '2022-05-15', 1499, 77831, 5092, 54918, '4.0000', '0.3993', '0.3993', '0.6000', '0.6000', '62.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82046, '2022-05-15', 1342, 77832, 5092, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82047, '2022-05-15', 9794, 77833, 5092, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '68.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82048, '2022-05-15', 2135, 77834, 5092, NULL, '1.0000', '-0.2588', '-0.2588', '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 (82049, '2022-05-15', 2864, 77835, 5092, NULL, '10.0000', '1.5150', '1.5150', '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 (82050, '2022-05-15', 2085, 77836, 5092, NULL, '10.0000', '3.1057', '3.1057', '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 (82051, '2022-05-15', 7802, 77837, 5092, NULL, '3.0000', '1.1497', '1.1497', '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 (82052, '2022-05-15', 7507, 77838, 5092, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82053, '2022-05-15', 7412, 77839, 5092, NULL, '2.0000', '8.3200', '8.3200', '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 (82054, '2022-05-15', 7802, 77840, 5092, NULL, '3.0000', '1.1497', '1.1497', '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 (82055, '2022-05-15', 7507, 77841, 5092, 54888, '1.0000', '0.3606', '0.3606', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82056, '2022-05-15', 7802, 77842, 5092, NULL, '2.0000', '1.1497', '1.1497', '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 (82057, '2022-05-15', 7491, 77843, 5093, NULL, '1.0000', '4.8666', '4.8666', '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 (82058, '2022-05-15', 8135, 77844, 5093, NULL, '1.0000', '5.8940', '5.8940', '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 (82059, '2022-05-15', 8074, 77845, 5093, 55282, '1.0000', '23.5721', '23.5721', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82060, '2022-05-15', 8497, 77846, 5093, NULL, '3.0000', '-222.2122', '-222.2122', '18.5000', '18.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 (82061, '2022-05-15', 8811, 77847, 5093, 54717, '1.0000', '11.6000', '11.6000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82062, '2022-05-15', 7980, 77848, 5093, NULL, '3.0000', '40.0500', '40.0500', '0.7000', '0.7000', '-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 (82063, '2022-05-15', 9911, 77849, 5093, 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 (82064, '2022-05-15', 7482, 77850, 5093, 55328, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '28.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82065, '2022-05-15', 8037, 77851, 5093, 34506, '1.0000', '45.3419', '45.3419', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82066, '2022-05-15', 9722, 77852, 5093, 46151, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82067, '2022-05-15', 8395, 77853, 5093, 52459, '1.0000', '0.6080', '0.6080', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82068, '2022-05-15', 7464, 77854, 5093, 51085, '2.0000', '21.9000', '21.9000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82069, '2022-05-15', 1837, 77855, 5093, 45863, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82070, '2022-05-15', 7527, 77856, 5093, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '85.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82071, '2022-05-15', 2241, 77857, 5093, 54286, '1.0000', '6.5272', '6.5272', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82072, '2022-05-15', 2567, 77858, 5094, 53635, '1.0000', '32.8217', '32.8217', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82073, '2022-05-15', 1912, 77859, 5094, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82074, '2022-05-15', 2315, 77860, 5094, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '104.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82075, '2022-05-15', 2035, 77861, 5094, NULL, '1.0000', '5.2000', '5.2000', '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 (82076, '2022-05-15', 2135, 77862, 5094, NULL, '1.0000', '-0.2588', '-0.2588', '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 (82077, '2022-05-15', 2821, 77863, 5094, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82078, '2022-05-15', 2384, 77864, 5094, NULL, '4.0000', '0.1500', '0.1500', '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 (82079, '2022-05-15', 2169, 77865, 5094, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82080, '2022-05-15', 2350, 77866, 5094, NULL, '1.0000', '10.3800', '10.3800', '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 (82081, '2022-05-15', 1855, 77867, 5094, NULL, '1.0000', '1.5003', '1.5003', '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 (82082, '2022-05-15', 9856, 77868, 5094, 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 (82083, '2022-05-15', 1812, 77869, 5094, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82084, '2022-05-15', 2252, 77870, 5094, 55622, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82085, '2022-05-15', 8133, 77871, 5094, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (82086, '2022-05-15', 9794, 77872, 5094, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '62.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82087, '2022-05-15', 8444, 77873, 5094, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82088, '2022-05-15', 8444, 77874, 5094, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82089, '2022-05-15', 1880, 77875, 5094, 48643, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82090, '2022-05-15', 1839, 77876, 5094, NULL, '1.0000', '-11631.9088', '-11631.9088', '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 (82091, '2022-05-15', 1520, 77877, 5094, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82092, '2022-05-15', 1812, 77878, 5094, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82093, '2022-05-15', 1342, 77879, 5094, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82094, '2022-05-15', 2466, 77880, 5094, 52192, '1.0000', '14.5000', '14.5000', '19.1400', '19.1400', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82095, '2022-05-15', 9794, 77881, 5094, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82096, '2022-05-15', 8444, 77882, 5094, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82097, '2022-05-15', 8085, 77883, 5094, NULL, '3.0000', '14.0000', '14.0000', '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 (82098, '2022-05-15', 2315, 77884, 5094, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '105.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82099, '2022-05-15', 9463, 77885, 5094, NULL, '1.0000', '145.5664', '145.5664', '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 (82100, '2022-05-15', 2849, 77886, 5094, NULL, '1.0000', '5.8500', '5.8500', '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 (82101, '2022-05-15', 7953, 77887, 5094, NULL, '1.0000', '-0.5345', '-0.5345', '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 (82102, '2022-05-15', 2506, 77888, 5094, NULL, '1.0000', '3.7156', '3.7156', '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 (82103, '2022-05-15', 1432, 77889, 5094, 55690, '1.0000', '12.1630', '12.1630', '17.5000', '17.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82104, '2022-05-15', 8183, 77890, 5094, NULL, '2.0000', '514.9425', '514.9425', '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 (82105, '2022-05-15', 2352, 77891, 5094, NULL, '4.0000', '126.2588', '126.2588', '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 (82106, '2022-05-15', 9763, 77892, 5094, 54519, '4.0000', '2.3080', '2.3080', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82107, '2022-05-15', 2298, 77893, 5094, NULL, '1.0000', '-13.6702', '-13.6702', '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 (82108, '2022-05-15', 2642, 77894, 5094, 55092, '2.0000', '10.0843', '10.0843', '15.0000', '15.0000', '6.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82109, '2022-05-15', 2699, 77895, 5094, NULL, '1.0000', '3.6019', '3.6019', '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 (82110, '2022-05-15', 7774, 77896, 5094, 39783, '1.0000', '3.3000', '3.3000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82111, '2022-05-15', 9732, 77897, 5094, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82112, '2022-05-15', 2169, 77898, 5094, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82113, '2022-05-15', 1780, 77899, 5094, NULL, '1.0000', '95.5759', '95.5759', '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 (82114, '2022-05-15', 2143, 77900, 5094, 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 (82115, '2022-05-15', 9794, 77901, 5094, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82116, '2022-05-15', 2351, 77902, 5094, NULL, '1.0000', '17.7000', '17.7000', '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 (82117, '2022-05-15', 2315, 77903, 5094, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '104.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82118, '2022-05-15', 9695, 77904, 5094, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82119, '2022-05-15', 2699, 77905, 5094, NULL, '1.0000', '3.6019', '3.6019', '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 (82120, '2022-05-15', 1595, 77906, 5094, 48142, '1.0000', '20.1715', '20.1715', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82121, '2022-05-15', 1807, 77907, 5094, NULL, '3.0000', '34.9993', '34.9993', '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 (82122, '2022-05-15', 1935, 77908, 5094, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82123, '2022-05-15', 3057, 77909, 5094, 51479, '2.0000', '2.8440', '2.8440', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82124, '2022-05-15', 9832, 77910, 5094, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82125, '2022-05-15', 2135, 77911, 5094, NULL, '1.0000', '-0.2588', '-0.2588', '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 (82126, '2022-05-15', 9747, 77912, 5094, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82127, '2022-05-15', 2260, 77913, 5094, 54937, '1.0000', '4.5431', '4.5431', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82128, '2022-05-15', 2405, 77914, 5094, 55087, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '49.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82129, '2022-05-15', 2066, 77915, 5094, 54883, '3.0000', '0.5100', '0.5100', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82130, '2022-05-15', 1342, 77916, 5094, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82131, '2022-05-15', 9794, 77917, 5094, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82132, '2022-05-15', 2315, 77918, 5094, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '105.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82133, '2022-05-15', 1432, 77919, 5094, 55690, '1.0000', '12.1630', '12.1630', '17.5000', '17.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82134, '2022-05-15', 2757, 77920, 5094, 34621, '1.0000', '6.8000', '6.8000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82135, '2022-05-15', 9821, 77921, 5094, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82136, '2022-05-15', 9864, 77922, 5094, 55579, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82137, '2022-05-15', 9672, 77923, 5094, NULL, '1.0000', '2.0500', '2.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 (82138, '2022-05-15', 2237, 77924, 5094, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82139, '2022-05-15', 1945, 77925, 5094, 55668, '1.0000', '9.3000', '9.3000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82140, '2022-05-15', 7457, 77926, 5094, NULL, '1.0000', '2.3500', '2.3500', '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 (82141, '2022-05-15', 1311, 77927, 5094, 52210, '3.0000', '0.3700', '0.3700', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82142, '2022-05-15', 9794, 77928, 5094, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82143, '2022-05-15', 9830, 77929, 5094, 55089, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82144, '2022-05-15', 7585, 77930, 5094, NULL, '1.0000', '3.9600', '3.9600', '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 (82145, '2022-05-15', 1667, 77931, 5094, 51331, '1.0000', '10.5358', '10.5358', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82146, '2022-05-15', 8979, 77932, 5094, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82147, '2022-05-15', 7459, 77933, 5094, NULL, '20.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (82148, '2022-05-15', 1935, 77934, 5094, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82149, '2022-05-15', 9854, 77935, 5094, 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 (82150, '2022-05-15', 9732, 77936, 5094, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82151, '2022-05-15', 2135, 77937, 5094, NULL, '1.0000', '-0.2588', '-0.2588', '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 (82152, '2022-05-15', 1670, 77938, 5094, NULL, '1.0000', '7.2499', '7.2499', '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 (82153, '2022-05-15', 9794, 77939, 5094, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82154, '2022-05-15', 1805, 77940, 5094, NULL, '1.0000', '40.8080', '40.8080', '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 (82155, '2022-05-15', 9840, 77941, 5094, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82156, '2022-05-15', 1342, 77942, 5094, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82157, '2022-05-15', 9754, 77943, 5094, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82158, '2022-05-15', 2297, 77944, 5094, 55653, '1.0000', '10.3086', '10.3086', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82159, '2022-05-15', 9821, 77945, 5094, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82160, '2022-05-15', 1935, 77946, 5094, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82161, '2022-05-15', 2769, 77947, 5094, 54561, '3.0000', '1.8925', '1.8925', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82162, '2022-05-15', 9794, 77948, 5094, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82163, '2022-05-15', 2169, 77949, 5094, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82164, '2022-05-15', 8444, 77950, 5094, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82165, '2022-05-15', 9761, 77951, 5094, 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 (82166, '2022-05-15', 7652, 77952, 5095, NULL, '15.0000', '40.3000', '40.3000', '1.6000', '1.6000', '-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 (82167, '2022-05-15', 8059, 77953, 5096, 54356, '1.0000', '5.8400', '5.8400', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82168, '2022-05-15', 1528, 77954, 5096, 54581, '1.0000', '44.1245', '44.1245', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82169, '2022-05-15', 1647, 77955, 5096, 55475, '1.0000', '5.6257', '5.6257', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82170, '2022-05-15', 1812, 77956, 5096, 54638, '1.0000', '8.2437', '8.2437', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82171, '2022-05-15', 2315, 77957, 5096, 3069, '1.0000', '0.3300', '0.3300', '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 (82172, '2022-05-15', 1863, 77958, 5096, 55480, '2.0000', '1.3191', '1.3191', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82173, '2022-05-15', 7333, 77959, 5096, NULL, '4.0000', '3.8000', '3.8000', '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 (82174, '2022-05-15', 7917, 77960, 5096, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82175, '2022-05-15', 1748, 77961, 5096, 49137, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82176, '2022-05-15', 7524, 77962, 5096, NULL, '1.0000', '11.9500', '11.9500', '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 (82177, '2022-05-15', 2315, 77963, 5096, 3069, '2.0000', '0.3300', '0.3300', '1.0000', '1.0000', '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 (82178, '2022-05-15', 7482, 77964, 5096, NULL, '1.0000', '3.0500', '3.0500', '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 (82179, '2022-05-15', 7917, 77965, 5096, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (82180, '2022-05-15', 7952, 77966, 5096, NULL, '1.0000', '1.4000', '1.4000', '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 (82181, '2022-05-15', 7744, 77967, 5096, NULL, '1.0000', '2.9400', '2.9400', '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 (82182, '2022-05-15', 1536, 77968, 5096, 55500, '10.0000', '52.5971', '52.5971', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82183, '2022-05-15', 1871, 77969, 5096, 54427, '10.0000', '5.5480', '5.5480', '3.7000', '3.7000', '50.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82184, '2022-05-15', 2285, 77970, 5096, 52300, '1.0000', '37.2530', '37.2530', '65.5000', '65.5000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82185, '2022-05-15', 1525, 77971, 5096, 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 (82186, '2022-05-15', 2821, 77972, 5097, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82187, '2022-05-15', 8746, 77973, 5097, 55412, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82188, '2022-05-15', 1667, 77974, 5097, 51331, '1.0000', '10.5358', '10.5358', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82189, '2022-05-15', 2315, 77975, 5097, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82190, '2022-05-16', 2255, 77976, 5098, 54626, '1.0000', '19.7622', '19.7622', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82191, '2022-05-16', 8744, 77977, 5098, 55436, '1.0000', '3.5857', '3.5857', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82192, '2022-05-16', 1528, 77978, 5098, 54581, '2.0000', '44.1245', '44.1245', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82193, '2022-05-16', 2916, 77979, 5098, 55471, '1.0000', '14.4254', '14.4254', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82194, '2022-05-16', 1863, 77980, 5098, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82195, '2022-05-16', 9840, 77981, 5098, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82196, '2022-05-16', 2344, 77982, 5098, 43045, '1.0000', '20.1294', '20.1294', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82197, '2022-05-16', 2916, 77983, 5098, 55471, '1.0000', '14.4254', '14.4254', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82198, '2022-05-16', 2228, 77984, 5098, 55007, '1.0000', '25.9595', '25.9595', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82199, '2022-05-16', 1602, 77985, 5099, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82200, '2022-05-16', 1863, 77986, 5099, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82201, '2022-05-16', 2379, 77987, 5099, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82202, '2022-05-16', 8498, 77988, 5099, 54645, '1.0000', '1.3375', '1.3375', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82203, '2022-05-16', 9695, 77989, 5100, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82204, '2022-05-16', 1602, 77990, 5100, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82205, '2022-05-16', 9866, 77991, 5100, 54882, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82206, '2022-05-16', 8979, 77992, 5100, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82207, '2022-05-16', 1813, 77993, 5100, 54563, '1.0000', '72.9523', '72.9523', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82208, '2022-05-16', 7519, 77994, 5100, NULL, '1.0000', '0.8800', '0.8800', '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 (82209, '2022-05-16', 2948, 77995, 5100, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82210, '2022-05-16', 9832, 77996, 5100, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82211, '2022-05-16', 2169, 77997, 5100, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82212, '2022-05-16', 3058, 77998, 5100, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82213, '2022-05-16', 9695, 77999, 5100, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82214, '2022-05-16', 1646, 78000, 5100, 54562, '1.0000', '5.5961', '5.5961', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82215, '2022-05-16', 1728, 78001, 5100, 19324, '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 (82216, '2022-05-16', 1728, 78001, 5100, 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 (82217, '2022-05-16', 2506, 78002, 5100, NULL, '1.0000', '3.7156', '3.7156', '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 (82218, '2022-05-16', 2020, 78003, 5100, 55623, '1.0000', '1309.0500', '1309.0500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82219, '2022-05-16', 2379, 78004, 5100, NULL, '1.0000', '-3.0170', '-3.0170', '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 (82220, '2022-05-16', 8566, 78005, 5100, 54838, '1.0000', '18.0000', '18.0000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82221, '2022-05-16', 7453, 78006, 5100, NULL, '1.0000', '21.6500', '21.6500', '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 (82222, '2022-05-16', 1498, 78007, 5100, 52352, '2.0000', '0.4476', '0.4476', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82223, '2022-05-16', 1620, 78008, 5100, 55636, '4.0000', '2.2583', '2.2583', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82224, '2022-05-16', 9245, 78009, 5100, NULL, '1.0000', '15.1700', '15.1700', '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 (82225, '2022-05-16', 1699, 78010, 5100, NULL, '1.0000', '3.2000', '3.2000', '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 (82226, '2022-05-16', 7459, 78011, 5100, NULL, '10.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (82227, '2022-05-16', 2315, 78012, 5100, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82228, '2022-05-16', 1999, 78013, 5100, 55101, '1.0000', '6.7734', '6.7734', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82229, '2022-05-16', 1704, 78014, 5100, 54958, '1.0000', '27.2300', '27.2300', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82230, '2022-05-16', 9821, 78015, 5100, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82231, '2022-05-16', 9831, 78016, 5100, 55091, '1.0000', '1.6952', '1.6952', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82232, '2022-05-16', 9794, 78017, 5100, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82233, '2022-05-16', 1426, 78018, 5101, 54404, '1.0000', '35.9713', '35.9713', '47.5000', '47.5000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82234, '2022-05-16', 1386, 78019, 5101, 53896, '1.0000', '371.5164', '371.5164', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82235, '2022-05-16', 2169, 78020, 5101, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82236, '2022-05-16', 2858, 78021, 5102, NULL, '3.0000', '1.0000', '1.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 (82237, '2022-05-16', 9399, 78022, 5103, 34949, '2.0000', '0.9800', '0.9800', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82238, '2022-05-16', 2416, 78023, 5103, 55413, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82239, '2022-05-16', 8607, 78024, 5103, NULL, '1.0000', '-3.0000', '-3.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 (82240, '2022-05-16', 1888, 78025, 5103, 55632, '1.0000', '17.0767', '17.0767', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82241, '2022-05-16', 1657, 78026, 5103, 19371, '4.0000', '90.0000', '90.0000', '0.6000', '0.6000', '176.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82242, '2022-05-16', 8607, 78027, 5103, NULL, '1.0000', '-3.0000', '-3.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 (82243, '2022-05-16', 1313, 78028, 5103, 43274, '2.0000', '1.1388', '1.1388', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82244, '2022-05-16', 8607, 78029, 5103, NULL, '1.0000', '-3.0000', '-3.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 (82245, '2022-05-16', 2260, 78030, 5103, 54937, '1.0000', '4.5431', '4.5431', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82246, '2022-05-16', 8878, 78031, 5103, NULL, '1.0000', '-8.5209', '-8.5209', '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 (82247, '2022-05-16', 2920, 78032, 5104, 18777, '-4.0000', '22.0000', '22.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 (82248, '2022-05-16', 2920, 78032, 5104, NULL, '6.0000', '22.0000', '22.0000', '20.0000', '20.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 (82249, '2022-05-16', 1888, 78033, 5105, 14663, '-7.0000', '134.8400', '134.8400', '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 (82250, '2022-05-16', 1888, 78033, 5105, NULL, '8.0000', '134.8400', '134.8400', '25.0000', '25.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 (82251, '2022-05-16', 2352, 78034, 5105, 3855, '-176.0000', '20.0000', '20.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 (82252, '2022-05-16', 2352, 78034, 5105, NULL, '178.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-178.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82253, '2022-05-16', 8773, 78035, 5105, 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 (82254, '2022-05-16', 2240, 78036, 5105, 13712, '-4.0000', '36.9100', '36.9100', '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 (82255, '2022-05-16', 2240, 78036, 5105, NULL, '5.0000', '36.9100', '36.9100', '51.5000', '51.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 (82256, '2022-05-16', 2497, 78037, 5105, NULL, '1.0000', '34.4493', '34.4493', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82257, '2022-05-16', 1715, 78038, 5105, 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 (82258, '2022-05-16', 1358, 78039, 5105, 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 (82259, '2022-05-16', 2602, 78040, 5105, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.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 (82260, '2022-05-16', 3029, 78041, 5105, NULL, '1.0000', '4.7700', '4.7700', '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 (82261, '2022-05-16', 1602, 78042, 5105, 5897, '-139.0000', '6.7859', '6.7859', '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 (82262, '2022-05-16', 1602, 78042, 5105, NULL, '140.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82263, '2022-05-16', 1665, 78043, 5105, 3235, '-105.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 (82264, '2022-05-16', 1665, 78043, 5105, NULL, '106.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82265, '2022-05-16', 9747, 78044, 5105, NULL, '1.0000', '0.6500', '0.6500', '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 (82266, '2022-05-16', 1851, 78045, 5105, 8627, '-10.0000', '10.6568', '10.6568', '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 (82267, '2022-05-16', 1851, 78045, 5105, NULL, '11.0000', '10.6568', '10.6568', '17.0000', '17.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 (82268, '2022-05-16', 3017, 78046, 5105, 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 (82269, '2022-05-16', 2381, 78047, 5105, 11263, '-3.0000', '12.1900', '12.1900', '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 (82270, '2022-05-16', 2381, 78047, 5105, NULL, '4.0000', '12.1900', '12.1900', '19.0000', '19.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 (82271, '2022-05-16', 9695, 78048, 5105, NULL, '1.0000', '4.5000', '4.5000', '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 (82272, '2022-05-16', 9750, 78049, 5105, NULL, '1.0000', '3.3000', '3.3000', '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 (82273, '2022-05-16', 9750, 78050, 5105, NULL, '1.0000', '3.3000', '3.3000', '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 (82274, '2022-05-16', 1954, 78051, 5105, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '4.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 (82275, '2022-05-16', 9732, 78052, 5105, 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 (82276, '2022-05-16', 7354, 78053, 5106, NULL, '3.0000', '0.3700', '0.3700', '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 (82277, '2022-05-16', 1837, 78054, 5106, NULL, '4.0000', '0.9642', '0.9642', '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 (82278, '2022-05-16', 1498, 78055, 5106, 19685, '-44.0000', '0.3300', '0.3300', '0.6000', '0.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 (82279, '2022-05-16', 1498, 78055, 5106, NULL, '46.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82280, '2022-05-16', 7558, 78056, 5106, NULL, '1.0000', '1.9700', '1.9700', '3.7000', '3.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 (82281, '2022-05-16', 9734, 78057, 5106, NULL, '1.0000', '0.3200', '0.3200', '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 (82282, '2022-05-16', 7402, 78058, 5106, NULL, '1.0000', '18.9000', '18.9000', '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 (82283, '2022-05-16', 7806, 78059, 5106, NULL, '5.0000', '1.8000', '1.8000', '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 (82284, '2022-05-16', 9214, 78060, 5106, NULL, '1.0000', '9.6000', '9.6000', '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 (82285, '2022-05-16', 2248, 78061, 5106, 2785, '-9.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 (82286, '2022-05-16', 2248, 78061, 5106, NULL, '10.0000', '2.5000', '2.5000', '3.5000', '3.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 (82287, '2022-05-16', 8063, 78062, 5106, NULL, '1.0000', '1.6000', '1.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 (82288, '2022-05-16', 7317, 78063, 5106, NULL, '1.0000', '19.5500', '19.5500', '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 (82289, '2022-05-16', 7753, 78064, 5106, NULL, '1.0000', '3.4000', '3.4000', '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 (82290, '2022-05-16', 7353, 78065, 5106, NULL, '7.0000', '0.1900', '0.1900', '0.6000', '0.6000', '-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 (82291, '2022-05-16', 1819, 78066, 5106, 18240, '-4.0000', '5.5930', '5.5930', '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 (82292, '2022-05-16', 1819, 78066, 5106, NULL, '5.0000', '5.5930', '5.5930', '11.0000', '11.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 (82293, '2022-05-16', 7444, 78067, 5106, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82294, '2022-05-16', 7518, 78068, 5106, NULL, '2.0000', '7.8200', '7.8200', '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 (82295, '2022-05-16', 9895, 78069, 5106, NULL, '2.0000', '8.0000', '8.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 (82296, '2022-05-16', 2363, 78070, 5106, 3866, '-7.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 (82297, '2022-05-16', 2363, 78070, 5106, NULL, '8.0000', '6.8800', '6.8800', '9.0000', '9.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 (82298, '2022-05-16', 3018, 78071, 5106, 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 (82299, '2022-05-16', 7514, 78072, 5106, NULL, '1.0000', '2.2500', '2.2500', '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 (82300, '2022-05-16', 7715, 78073, 5106, NULL, '1.0000', '1.8900', '1.8900', '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 (82301, '2022-05-16', 8184, 78074, 5106, NULL, '10.0000', '2.4000', '2.4000', '4.0000', '4.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 (82302, '2022-05-16', 7514, 78075, 5106, NULL, '2.0000', '2.2500', '2.2500', '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 (82303, '2022-05-16', 7711, 78076, 5106, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82304, '2022-05-16', 7453, 78077, 5106, NULL, '1.0000', '28.5000', '28.5000', '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 (82305, '2022-05-16', 9839, 78078, 5106, NULL, '1.0000', '15.0200', '15.0200', '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 (82306, '2022-05-16', 9891, 78079, 5106, NULL, '1.0000', '17.4000', '17.4000', '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 (82307, '2022-05-16', 7638, 78080, 5106, NULL, '1.0000', '12.0000', '12.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 (82308, '2022-05-16', 7385, 78081, 5106, NULL, '2.0000', '2.0000', '2.0000', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82309, '2022-05-16', 9396, 78082, 5106, NULL, '1.0000', '7.0800', '7.0800', '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 (82310, '2022-05-16', 7583, 78083, 5106, NULL, '1.0000', '4.0000', '4.0000', '0.9900', '0.9900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82311, '2022-05-16', 8079, 78084, 5106, NULL, '1.0000', '14.3600', '14.3600', '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 (82312, '2022-05-16', 7853, 78085, 5106, 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 (82313, '2022-05-16', 9254, 78086, 5106, NULL, '1.0000', '20.0000', '20.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 (82314, '2022-05-16', 7509, 78087, 5106, 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 (82315, '2022-05-16', 7411, 78088, 5106, NULL, '2.0000', '1.3500', '1.3500', '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 (82316, '2022-05-16', 7636, 78089, 5106, NULL, '3.0000', '2.5000', '2.5000', '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 (82317, '2022-05-16', 8362, 78090, 5106, NULL, '3.0000', '0.6000', '0.6000', '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 (82318, '2022-05-16', 1805, 78091, 5106, NULL, '1.0000', '195.3170', '195.3170', '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 (82319, '2022-05-16', 2315, 78092, 5106, 2735, '-344.0000', '0.3300', '0.3300', '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 (82320, '2022-05-16', 2315, 78092, 5106, NULL, '345.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-345.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82321, '2022-05-16', 7317, 78093, 5106, NULL, '1.0000', '19.5500', '19.5500', '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 (82322, '2022-05-16', 9461, 78094, 5106, NULL, '1.0000', '1.6000', '1.6000', '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 (82323, '2022-05-16', 8889, 78095, 5106, NULL, '1.0000', '39.0000', '39.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 (82324, '2022-05-16', 2332, 78096, 5106, 3835, '-12.0000', '5.8900', '5.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 (82325, '2022-05-16', 2332, 78096, 5106, NULL, '13.0000', '5.8900', '5.8900', '10.0000', '10.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 (82326, '2022-05-16', 8308, 78097, 5106, NULL, '1.0000', '2.0800', '2.0800', '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 (82327, '2022-05-16', 7411, 78098, 5106, NULL, '3.0000', '1.3500', '1.3500', '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 (82328, '2022-05-16', 9274, 78099, 5106, NULL, '1.0000', '3.6000', '3.6000', '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 (82329, '2022-05-16', 1804, 78100, 5106, 4916, '-11.0000', '4.2500', '4.2500', '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 (82330, '2022-05-16', 1804, 78100, 5106, NULL, '12.0000', '4.2500', '4.2500', '8.5000', '8.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 (82331, '2022-05-16', 7344, 78101, 5106, NULL, '5.0000', '1.5400', '1.5400', '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 (82332, '2022-05-16', 2295, 78102, 5106, 22264, '2.0000', '0.9600', '0.9600', '2.5000', '2.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 (82333, '2022-05-16', 7765, 78103, 5106, NULL, '2.0000', '16.0000', '16.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 (82334, '2022-05-16', 7672, 78104, 5106, NULL, '1.0000', '1.0200', '1.0200', '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 (82335, '2022-05-16', 7709, 78105, 5106, NULL, '2.0000', '3.5000', '3.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 (82336, '2022-05-16', 2284, 78106, 5106, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (82337, '2022-05-16', 2295, 78107, 5106, 22264, '2.0000', '0.9600', '0.9600', '2.5000', '2.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 (82338, '2022-05-16', 8925, 78108, 5106, NULL, '1.0000', '2.4000', '2.4000', '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 (82339, '2022-05-16', 8666, 78109, 5106, NULL, '2.0000', '0.4600', '0.4600', '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 (82340, '2022-05-16', 8145, 78110, 5106, NULL, '1.0000', '28.0000', '28.0000', '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 (82341, '2022-05-16', 7520, 78111, 5106, NULL, '1.0000', '9.6000', '9.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 (82342, '2022-05-16', 7674, 78112, 5106, NULL, '1.0000', '1.3000', '1.3000', '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 (82343, '2022-05-16', 1592, 78113, 5107, 55658, '1.0000', '39.3500', '39.3500', '52.0000', '52.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82344, '2022-05-16', 2307, 78114, 5107, NULL, '1.0000', '111.4200', '111.4200', '240.0000', '240.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82345, '2022-05-16', 9794, 78115, 5107, 54929, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82346, '2022-05-16', 7750, 78116, 5107, NULL, '1.0000', '34.9000', '34.9000', '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 (82347, '2022-05-16', 9740, 78117, 5107, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82348, '2022-05-16', 7756, 78118, 5107, NULL, '1.0000', '2.5000', '2.5000', '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 (82349, '2022-05-16', 2315, 78119, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82350, '2022-05-16', 1499, 78120, 5107, 54918, '3.0000', '0.3993', '0.3993', '0.6000', '0.6000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82351, '2022-05-16', 1618, 78121, 5107, 55686, '1.0000', '-14.7446', '-14.7446', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82352, '2022-05-16', 2066, 78122, 5107, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82353, '2022-05-16', 9463, 78123, 5107, NULL, '1.0000', '145.5664', '145.5664', '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 (82354, '2022-05-16', 8444, 78124, 5107, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82355, '2022-05-16', 1342, 78125, 5107, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82356, '2022-05-16', 7938, 78126, 5107, NULL, '1.0000', '2.9000', '2.9000', '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 (82357, '2022-05-16', 8177, 78127, 5107, NULL, '1.0000', '12.9000', '12.9000', '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 (82358, '2022-05-16', 9724, 78128, 5107, 47077, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82359, '2022-05-16', 1342, 78129, 5107, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82360, '2022-05-16', 9840, 78130, 5107, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82361, '2022-05-16', 7482, 78131, 5107, NULL, '1.0000', '2.5019', '2.5019', '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 (82362, '2022-05-16', 2315, 78132, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82363, '2022-05-16', 9695, 78133, 5107, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82364, '2022-05-16', 7668, 78134, 5107, 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 (82365, '2022-05-16', 9785, 78135, 5107, 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 (82366, '2022-05-16', 1690, 78136, 5107, 55660, '1.0000', '7.9000', '7.9000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82367, '2022-05-16', 2315, 78137, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82368, '2022-05-16', 2655, 78138, 5107, NULL, '1.0000', '5.6000', '5.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 (82369, '2022-05-16', 9832, 78139, 5107, 55090, '2.0000', '1.5600', '1.5600', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82370, '2022-05-16', 7323, 78140, 5107, 55541, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82371, '2022-05-16', 9794, 78141, 5107, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82372, '2022-05-16', 2315, 78142, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82373, '2022-05-16', 1925, 78143, 5107, 51221, '2.0000', '1.4444', '1.4444', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82374, '2022-05-16', 1867, 78144, 5107, 55547, '1.0000', '6.2086', '6.2086', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82375, '2022-05-16', 7612, 78145, 5107, NULL, '1.0000', '1.6100', '1.6100', '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 (82376, '2022-05-16', 1499, 78146, 5107, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82377, '2022-05-16', 9816, 78147, 5107, NULL, '1.0000', '5.2000', '5.2000', '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 (82378, '2022-05-16', 2769, 78148, 5107, 54561, '2.0000', '1.8925', '1.8925', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82379, '2022-05-16', 9738, 78149, 5107, 52164, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82380, '2022-05-16', 2315, 78150, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82381, '2022-05-16', 1528, 78151, 5107, NULL, '2.0000', '172.4516', '172.4516', '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 (82382, '2022-05-16', 8980, 78152, 5107, NULL, '1.0000', '9.5000', '9.5000', '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 (82383, '2022-05-16', 7579, 78153, 5107, NULL, '2.0000', '15.0000', '15.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 (82384, '2022-05-16', 7482, 78154, 5107, NULL, '1.0000', '2.5019', '2.5019', '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 (82385, '2022-05-16', 9794, 78155, 5107, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82386, '2022-05-16', 3016, 78156, 5107, 55552, '1.0000', '12.6063', '12.6063', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82387, '2022-05-16', 1781, 78157, 5107, NULL, '1.0000', '5.3500', '5.3500', '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 (82388, '2022-05-16', 7604, 78158, 5107, NULL, '1.0000', '4.3900', '4.3900', '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 (82389, '2022-05-16', 8133, 78159, 5107, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (82390, '2022-05-16', 9840, 78160, 5107, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82391, '2022-05-16', 9107, 78161, 5107, NULL, '1.0000', '3.4000', '3.4000', '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 (82392, '2022-05-16', 1905, 78162, 5107, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82393, '2022-05-16', 1528, 78163, 5107, NULL, '1.0000', '172.4516', '172.4516', '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 (82394, '2022-05-16', 7482, 78164, 5107, NULL, '1.0000', '2.5019', '2.5019', '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 (82395, '2022-05-16', 2315, 78165, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82396, '2022-05-16', 1498, 78166, 5107, 52352, '5.0000', '0.4476', '0.4476', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82397, '2022-05-16', 2169, 78167, 5107, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '106.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82398, '2022-05-16', 2352, 78168, 5107, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (82399, '2022-05-16', 9841, 78169, 5107, 55669, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82400, '2022-05-16', 9663, 78170, 5107, NULL, '1.0000', '18.0000', '18.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 (82401, '2022-05-16', 2169, 78171, 5107, 55621, '3.0000', '1.6119', '1.6119', '2.5000', '2.5000', '104.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82402, '2022-05-16', 8085, 78172, 5107, NULL, '3.0000', '14.0000', '14.0000', '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 (82403, '2022-05-16', 1646, 78173, 5107, 54562, '1.0000', '5.5961', '5.5961', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82404, '2022-05-16', 1880, 78174, 5107, 48643, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82405, '2022-05-16', 1783, 78175, 5107, 55661, '3.0000', '12.2246', '12.2246', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82406, '2022-05-16', 1618, 78176, 5107, 55686, '1.0000', '-14.7446', '-14.7446', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82407, '2022-05-16', 9914, 78177, 5107, 55607, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82408, '2022-05-16', 9722, 78178, 5107, 47061, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82409, '2022-05-16', 2821, 78179, 5107, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82410, '2022-05-16', 9794, 78180, 5107, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82411, '2022-05-16', 2256, 78181, 5107, 55713, '1.0000', '13.7060', '13.7060', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82412, '2022-05-16', 1762, 78182, 5107, 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 (82413, '2022-05-16', 2169, 78183, 5107, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '106.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82414, '2022-05-16', 1528, 78184, 5107, NULL, '2.0000', '172.4516', '172.4516', '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 (82415, '2022-05-16', 2384, 78185, 5107, NULL, '3.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (82416, '2022-05-16', 2352, 78186, 5107, NULL, '2.0000', '126.2588', '126.2588', '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 (82417, '2022-05-16', 2758, 78187, 5107, NULL, '2.0000', '5.4000', '5.4000', '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 (82418, '2022-05-16', 2105, 78188, 5107, 54575, '1.0000', '2.4149', '2.4149', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82419, '2022-05-16', 1520, 78189, 5107, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82420, '2022-05-16', 2169, 78190, 5107, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '106.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82421, '2022-05-16', 1779, 78191, 5107, 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 (82422, '2022-05-16', 2315, 78192, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82423, '2022-05-16', 8504, 78193, 5107, NULL, '1.0000', '8.1000', '8.1000', '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 (82424, '2022-05-16', 7334, 78194, 5107, NULL, '1.0000', '8.1600', '8.1600', '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 (82425, '2022-05-16', 1812, 78195, 5107, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82426, '2022-05-16', 8878, 78196, 5107, NULL, '1.0000', '-8.5209', '-8.5209', '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 (82427, '2022-05-16', 1888, 78197, 5107, 55632, '1.0000', '17.0767', '17.0767', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82428, '2022-05-16', 2315, 78198, 5107, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82429, '2022-05-16', 9819, 78199, 5108, NULL, '1.0000', '3.6300', '3.6300', '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 (82430, '2022-05-16', 7980, 78200, 5108, NULL, '3.0000', '17.4500', '17.4500', '0.7000', '0.7000', '-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 (82431, '2022-05-16', 7674, 78201, 5108, NULL, '3.0000', '1.3000', '1.3000', '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 (82432, '2022-05-16', 7385, 78202, 5108, NULL, '4.0000', '2.0000', '2.0000', '3.7000', '3.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 (82433, '2022-05-16', 7963, 78203, 5108, NULL, '1.0000', '14.7000', '14.7000', '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 (82434, '2022-05-16', 7787, 78204, 5108, 33793, '2.0000', '10.9000', '10.9000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82435, '2022-05-16', 1310, 78205, 5108, NULL, '2.0000', '0.3700', '0.3700', '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 (82436, '2022-05-16', 7915, 78206, 5108, NULL, '1.0000', '2.8000', '2.8000', '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 (82437, '2022-05-16', 7453, 78207, 5108, NULL, '1.0000', '28.5000', '28.5000', '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 (82438, '2022-05-16', 7707, 78208, 5108, NULL, '1.0000', '7.0000', '7.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 (82439, '2022-05-16', 2315, 78209, 5108, 2735, '-345.0000', '0.3300', '0.3300', '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 (82440, '2022-05-16', 2315, 78209, 5108, NULL, '349.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-349.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82441, '2022-05-16', 9716, 78210, 5108, NULL, '1.0000', '4.4000', '4.4000', '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 (82442, '2022-05-16', 7318, 78211, 5108, NULL, '1.0000', '13.4400', '13.4400', '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 (82443, '2022-05-16', 7411, 78212, 5108, NULL, '2.0000', '1.3500', '1.3500', '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 (82444, '2022-05-16', 9016, 78213, 5108, NULL, '1.0000', '21.7800', '21.7800', '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 (82445, '2022-05-16', 7345, 78214, 5108, NULL, '1.0000', '56.0000', '56.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 (82446, '2022-05-16', 7331, 78215, 5108, NULL, '1.0000', '58.0000', '58.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82447, '2022-05-16', 2105, 78216, 5108, NULL, '1.0000', '1.3500', '1.3500', '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 (82448, '2022-05-16', 7638, 78217, 5108, NULL, '1.0000', '12.0000', '12.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 (82449, '2022-05-16', 9911, 78218, 5108, 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 (82450, '2022-05-16', 7774, 78219, 5108, NULL, '1.0000', '3.3000', '3.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 (82451, '2022-05-16', 7674, 78220, 5108, NULL, '1.0000', '1.3000', '1.3000', '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 (82452, '2022-05-16', 1841, 78221, 5108, NULL, '1.0000', '142.5780', '142.5780', '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 (82453, '2022-05-16', 1840, 78222, 5108, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (82454, '2022-05-16', 2655, 78223, 5108, 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 (82455, '2022-05-16', 7709, 78224, 5108, 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 (82456, '2022-05-16', 9456, 78225, 5108, NULL, '1.0000', '3.3200', '3.3200', '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 (82457, '2022-05-16', 2248, 78226, 5108, 2785, '-10.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 (82458, '2022-05-16', 2248, 78226, 5108, NULL, '11.0000', '2.5000', '2.5000', '3.5000', '3.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 (82459, '2022-05-16', 9797, 78227, 5108, 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 (82460, '2022-05-16', 7514, 78228, 5108, NULL, '3.0000', '2.2500', '2.2500', '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 (82461, '2022-05-16', 7736, 78229, 5108, NULL, '1.0000', '16.2000', '16.2000', '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 (82462, '2022-05-16', 2219, 78230, 5108, 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 (82463, '2022-05-16', 7917, 78231, 5108, NULL, '6.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (82464, '2022-05-16', 9891, 78232, 5108, NULL, '1.0000', '17.4000', '17.4000', '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 (82465, '2022-05-16', 8951, 78233, 5108, NULL, '2.0000', '9.0000', '9.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 (82466, '2022-05-16', 1314, 78234, 5109, 2710, '-5.0000', '1.2000', '1.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 (82467, '2022-05-16', 1314, 78234, 5109, NULL, '6.0000', '1.2000', '1.2000', '3.0000', '3.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 (82468, '2022-05-16', 2355, 78235, 5109, 3857, '1.0000', '5.3300', '5.3300', '124.0000', '124.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 (82469, '2022-05-16', 1578, 78236, 5109, 7597, '-7.0000', '1.9700', '1.9700', '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 (82470, '2022-05-16', 1578, 78236, 5109, NULL, '8.0000', '1.9700', '1.9700', '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 (82471, '2022-05-16', 9729, 78237, 5109, NULL, '2.0000', '0.6200', '0.6200', '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 (82472, '2022-05-16', 1424, 78238, 5109, 22302, '1.0000', '30.0000', '30.0000', '40.0000', '40.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 (82473, '2022-05-16', 1584, 78239, 5109, 7601, '-45.0000', '90.0000', '90.0000', '9.5000', '9.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 (82474, '2022-05-16', 1584, 78239, 5109, NULL, '47.0000', '90.0000', '90.0000', '9.5000', '9.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 (82475, '2022-05-16', 8177, 78240, 5109, NULL, '1.0000', '12.5000', '12.5000', '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 (82476, '2022-05-16', 9715, 78241, 5109, NULL, '1.0000', '9.4000', '9.4000', '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 (82477, '2022-05-16', 9794, 78242, 5109, NULL, '1.0000', '1.0800', '1.0800', '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 (82478, '2022-05-16', 2400, 78243, 5109, NULL, '1.0000', '12.5000', '12.5000', '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 (82479, '2022-05-16', 2397, 78244, 5109, NULL, '1.0000', '13.5000', '13.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 (82480, '2022-05-16', 9729, 78245, 5109, NULL, '2.0000', '0.6200', '0.6200', '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 (82481, '2022-05-16', 2135, 78246, 5109, 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 (82482, '2022-05-16', 1645, 78247, 5109, 3217, '-8.0000', '4.7200', '4.7200', '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 (82483, '2022-05-16', 1645, 78247, 5109, NULL, '9.0000', '4.7200', '4.7200', '8.5000', '8.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 (82484, '2022-05-16', 9794, 78248, 5109, NULL, '1.0000', '1.0800', '1.0800', '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 (82485, '2022-05-16', 2315, 78249, 5109, 2735, '-349.0000', '0.3300', '0.3300', '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 (82486, '2022-05-16', 2315, 78249, 5109, NULL, '350.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-350.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82487, '2022-05-16', 1690, 78250, 5109, 13150, '1.0000', '7.1466', '7.1466', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 131);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82488, '2022-05-16', 2327, 78251, 5109, 5083, '-36.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 (82489, '2022-05-16', 2327, 78251, 5109, NULL, '37.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82490, '2022-05-16', 9732, 78252, 5109, 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 (82491, '2022-05-16', 1935, 78253, 5109, 5586, '-85.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 (82492, '2022-05-16', 1935, 78253, 5109, NULL, '88.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82493, '2022-05-16', 2858, 78254, 5109, 17772, '-75.0000', '1.0000', '1.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 (82494, '2022-05-16', 2858, 78254, 5109, NULL, '77.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82495, '2022-05-16', 2236, 78255, 5109, 2780, '-18.0000', '5.6599', '5.6599', '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 (82496, '2022-05-16', 2236, 78255, 5109, NULL, '19.0000', '5.6599', '5.6599', '9.0000', '9.0000', '-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 (82497, '2022-05-16', 7411, 78256, 5109, NULL, '1.0000', '1.3500', '1.3500', '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 (82498, '2022-05-16', 1935, 78257, 5109, 5586, '-85.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 (82499, '2022-05-16', 1935, 78257, 5109, NULL, '86.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82500, '2022-05-16', 1493, 78258, 5109, 9747, '-22.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 (82501, '2022-05-16', 1493, 78258, 5109, NULL, '23.0000', '1.5425', '1.5425', '3.0000', '3.0000', '-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 (82502, '2022-05-16', 2327, 78259, 5110, 5083, '-37.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 (82503, '2022-05-16', 2327, 78259, 5110, NULL, '39.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82504, '2022-05-16', 2521, 78260, 5111, 6035, '-6.0000', '8.8000', '8.8000', '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 (82505, '2022-05-16', 2521, 78260, 5111, NULL, '7.0000', '8.8000', '8.8000', '15.0000', '15.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 (82506, '2022-05-16', 2327, 78261, 5111, 5083, '-39.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 (82507, '2022-05-16', 2327, 78261, 5111, NULL, '40.0000', '4.5000', '4.5000', '6.0000', '6.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 (82508, '2022-05-16', 3016, 78262, 5111, NULL, '1.0000', '14.5200', '14.5200', '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 (82509, '2022-05-16', 2299, 78263, 5111, 22479, '-7.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 (82510, '2022-05-16', 2299, 78263, 5111, NULL, '8.0000', '6.0000', '6.0000', '8.0000', '8.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 (82511, '2022-05-16', 9762, 78264, 5111, 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 (82512, '2022-05-16', 7412, 78265, 5111, NULL, '1.0000', '1.5200', '1.5200', '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 (82513, '2022-05-16', 2385, 78266, 5111, NULL, '1.0000', '7.8800', '7.8800', '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 (82514, '2022-05-16', 2618, 78267, 5111, 9836, '-22.0000', '4.1000', '4.1000', '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 (82515, '2022-05-16', 2618, 78267, 5111, NULL, '23.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-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 (82516, '2022-05-16', 9831, 78268, 5111, NULL, '1.0000', '1.5600', '1.5600', '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 (82517, '2022-05-16', 2618, 78269, 5111, 9836, '-22.0000', '4.1000', '4.1000', '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 (82518, '2022-05-16', 2618, 78269, 5111, NULL, '23.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-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 (82519, '2022-05-16', 8979, 78270, 5111, 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 (82520, '2022-05-16', 2169, 78271, 5111, 10737, '-126.0000', '3.8397', '3.8397', '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 (82521, '2022-05-16', 2169, 78271, 5111, NULL, '127.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82522, '2022-05-16', 2821, 78272, 5111, 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 (82523, '2022-05-16', 9864, 78273, 5111, NULL, '1.0000', '1.6000', '1.6000', '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 (82524, '2022-05-16', 7802, 78274, 5111, NULL, '3.0000', '0.9200', '0.9200', '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 (82525, '2022-05-16', 2245, 78275, 5111, 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 (82526, '2022-05-16', 1311, 78276, 5111, 5437, '-11.0000', '79.3908', '79.3908', '0.6000', '0.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 (82527, '2022-05-16', 1311, 78276, 5111, NULL, '12.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (82528, '2022-05-16', 9762, 78277, 5111, 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 (82529, '2022-05-16', 1935, 78278, 5111, 5586, '-89.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 (82530, '2022-05-16', 1935, 78278, 5111, NULL, '90.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82531, '2022-05-16', 9832, 78279, 5111, NULL, '1.0000', '1.5600', '1.5600', '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 (82532, '2022-05-16', 9089, 78280, 5112, NULL, '1.0000', '3.8000', '3.8000', '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 (82533, '2022-05-16', 1812, 78281, 5112, 8224, '-90.0000', '7.8900', '7.8900', '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 (82534, '2022-05-16', 1812, 78281, 5112, NULL, '91.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-91.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82535, '2022-05-17', 9873, 78282, 5113, 53237, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82536, '2022-05-17', 1743, 78283, 5113, NULL, '1.0000', '4.6550', '4.6550', '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 (82537, '2022-05-17', 1602, 78284, 5113, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '37.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82538, '2022-05-17', 8979, 78285, 5113, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82539, '2022-05-17', 9732, 78286, 5113, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82540, '2022-05-17', 9878, 78287, 5113, NULL, '1.0000', '9.6000', '9.6000', '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 (82541, '2022-05-17', 1702, 78288, 5113, NULL, '1.0000', '14.5546', '14.5546', '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 (82542, '2022-05-17', 9151, 78289, 5113, NULL, '1.0000', '9.7000', '9.7000', '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 (82543, '2022-05-17', 2497, 78290, 5113, 19378, '1.0000', '34.0000', '34.0000', '48.5000', '48.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 (82544, '2022-05-17', 9463, 78291, 5113, NULL, '1.0000', '145.5664', '145.5664', '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 (82545, '2022-05-17', 2506, 78292, 5113, NULL, '1.0000', '3.7156', '3.7156', '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 (82546, '2022-05-17', 9731, 78293, 5113, 54925, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82547, '2022-05-17', 8086, 78294, 5113, NULL, '1.0000', '9.3000', '9.3000', '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 (82548, '2022-05-17', 9831, 78295, 5113, 55091, '3.0000', '1.6952', '1.6952', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82549, '2022-05-17', 2444, 78296, 5113, 54824, '1.0000', '8.3626', '8.3626', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82550, '2022-05-17', 7741, 78297, 5113, NULL, '1.0000', '-8.9337', '-8.9337', '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 (82551, '2022-05-17', 1310, 78298, 5114, 52211, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82552, '2022-05-17', 1394, 78299, 5114, 55146, '1.0000', '10.7744', '10.7744', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82553, '2022-05-17', 2543, 78300, 5114, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82554, '2022-05-17', 1618, 78301, 5114, 55686, '1.0000', '-14.7446', '-14.7446', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82555, '2022-05-17', 2990, 78302, 5114, 39769, '1.0000', '1.2776', '1.2776', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82556, '2022-05-17', 9726, 78303, 5114, 55630, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82557, '2022-05-17', 1394, 78304, 5114, 55146, '1.0000', '10.7744', '10.7744', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82558, '2022-05-17', 2169, 78305, 5114, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '100.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82559, '2022-05-17', 1935, 78306, 5114, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82560, '2022-05-17', 7385, 78307, 5114, 54887, '10.0000', '4.9657', '4.9657', '3.7000', '3.7000', '69.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82561, '2022-05-17', 2777, 78308, 5115, 54899, '1.0000', '3.5465', '3.5465', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82562, '2022-05-17', 2135, 78309, 5115, NULL, '1.0000', '-0.2588', '-0.2588', '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 (82563, '2022-05-17', 1387, 78310, 5115, 55150, '2.0000', '13.8750', '13.8750', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82564, '2022-05-17', 9462, 78311, 5115, 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 (82565, '2022-05-17', 2342, 78312, 5115, 54886, '10.0000', '2.2091', '2.2091', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82566, '2022-05-17', 2295, 78313, 5115, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82567, '2022-05-17', 1562, 78314, 5115, 53666, '1.0000', '5.7883', '5.7883', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82568, '2022-05-17', 8145, 78315, 5115, NULL, '1.0000', '7.0000', '7.0000', '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 (82569, '2022-05-17', 2416, 78316, 5116, 55413, '2.0000', '1.2379', '1.2379', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82570, '2022-05-17', 2593, 78317, 5116, NULL, '1.0000', '14.4000', '14.4000', '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 (82571, '2022-05-17', 1311, 78318, 5116, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82572, '2022-05-17', 1702, 78319, 5116, NULL, '1.0000', '14.5546', '14.5546', '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 (82573, '2022-05-17', 2695, 78320, 5117, 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 (82574, '2022-05-17', 8979, 78321, 5117, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82575, '2022-05-17', 2289, 78322, 5118, 2949, '-151.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 (82576, '2022-05-17', 2289, 78322, 5118, NULL, '153.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-153.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82577, '2022-05-17', 1840, 78323, 5118, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (82578, '2022-05-17', 2295, 78324, 5118, 22264, '2.0000', '0.9600', '0.9600', '2.5000', '2.5000', '15.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 (82579, '2022-05-17', 8101, 78325, 5118, NULL, '2.0000', '1.9700', '1.9700', '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 (82580, '2022-05-17', 9729, 78326, 5118, NULL, '1.0000', '0.6200', '0.6200', '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 (82581, '2022-05-17', 2315, 78327, 5118, 2735, '-350.0000', '0.3300', '0.3300', '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 (82582, '2022-05-17', 2315, 78327, 5118, NULL, '353.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-353.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82583, '2022-05-17', 7630, 78328, 5118, NULL, '1.0000', '10.0000', '10.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 (82584, '2022-05-17', 7672, 78329, 5118, NULL, '1.0000', '1.0200', '1.0200', '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 (82585, '2022-05-17', 7994, 78330, 5118, NULL, '1.0000', '8.2800', '8.2800', '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 (82586, '2022-05-17', 7753, 78331, 5118, NULL, '1.0000', '3.4000', '3.4000', '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 (82587, '2022-05-17', 8878, 78332, 5118, NULL, '1.0000', '6.6700', '6.6700', '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 (82588, '2022-05-17', 7541, 78333, 5118, NULL, '9.0000', '0.5000', '0.5000', '0.7000', '0.7000', '-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 (82589, '2022-05-17', 9330, 78334, 5118, 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 (82590, '2022-05-17', 7509, 78335, 5118, 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 (82591, '2022-05-17', 7961, 78336, 5118, NULL, '1.0000', '10.5600', '10.5600', '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 (82592, '2022-05-17', 2283, 78337, 5118, 2943, '-22.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 (82593, '2022-05-17', 2283, 78337, 5118, NULL, '23.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (82594, '2022-05-17', 7411, 78338, 5118, NULL, '1.0000', '1.3500', '1.3500', '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 (82595, '2022-05-17', 9735, 78339, 5118, 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 (82596, '2022-05-17', 9809, 78340, 5118, NULL, '1.0000', '5.7900', '5.7900', '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 (82597, '2022-05-17', 7859, 78341, 5118, NULL, '1.0000', '12.6300', '12.6300', '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 (82598, '2022-05-17', 2169, 78342, 5119, 10737, '-127.0000', '3.8397', '3.8397', '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 (82599, '2022-05-17', 2169, 78342, 5119, NULL, '128.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82600, '2022-05-17', 9204, 78343, 5119, NULL, '1.0000', '8.1600', '8.1600', '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 (82601, '2022-05-17', 2916, 78344, 5119, 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 (82602, '2022-05-17', 2315, 78345, 5119, 2735, '-353.0000', '0.3300', '0.3300', '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 (82603, '2022-05-17', 2315, 78345, 5119, NULL, '356.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-356.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82604, '2022-05-17', 1533, 78346, 5119, 10381, '-22.0000', '2.5917', '2.5917', '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 (82605, '2022-05-17', 1533, 78346, 5119, NULL, '23.0000', '2.5917', '2.5917', '5.5000', '5.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 (82606, '2022-05-17', 2315, 78347, 5119, 2735, '-353.0000', '0.3300', '0.3300', '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 (82607, '2022-05-17', 2315, 78347, 5119, NULL, '355.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-355.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82608, '2022-05-17', 2335, 78348, 5119, 21488, '1.0000', '12.8784', '12.8784', '21.0000', '21.0000', '1.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 (82609, '2022-05-17', 7411, 78349, 5119, NULL, '1.0000', '1.3500', '1.3500', '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 (82610, '2022-05-17', 7411, 78350, 5119, NULL, '2.0000', '1.3500', '1.3500', '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 (82611, '2022-05-17', 1935, 78351, 5119, 5586, '-90.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 (82612, '2022-05-17', 1935, 78351, 5119, NULL, '92.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82613, '2022-05-17', 2916, 78352, 5119, 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 (82614, '2022-05-17', 2315, 78353, 5119, 2735, '-353.0000', '0.3300', '0.3300', '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 (82615, '2022-05-17', 2315, 78353, 5119, NULL, '355.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-355.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82616, '2022-05-17', 2169, 78354, 5119, 10737, '-127.0000', '3.8397', '3.8397', '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 (82617, '2022-05-17', 2169, 78354, 5119, NULL, '128.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82618, '2022-05-17', 2692, 78355, 5119, 12638, '-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 (82619, '2022-05-17', 2692, 78355, 5119, NULL, '2.0000', '12.0000', '12.0000', '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 (82620, '2022-05-17', 1379, 78356, 5119, NULL, '1.0000', '85.2466', '85.2466', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82621, '2022-05-17', 1667, 78357, 5119, 9745, '-49.0000', '5.9400', '5.9400', '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 (82622, '2022-05-17', 1667, 78357, 5119, NULL, '52.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82623, '2022-05-17', 1822, 78358, 5119, 8225, '-166.0000', '2.4000', '2.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 (82624, '2022-05-17', 1822, 78358, 5119, NULL, '176.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-176.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82625, '2022-05-17', 1592, 78359, 5119, 6223, '-12.0000', '35.9000', '35.9000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82626, '2022-05-17', 1592, 78359, 5119, NULL, '13.0000', '35.9000', '35.9000', '52.0000', '52.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 (82627, '2022-05-17', 2602, 78360, 5119, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '3.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 (82628, '2022-05-17', 1374, 78361, 5119, 4655, '-3.0000', '24.0076', '24.0076', '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 (82629, '2022-05-17', 1374, 78361, 5119, NULL, '4.0000', '24.0076', '24.0076', '39.0000', '39.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 (82630, '2022-05-17', 1912, 78362, 5119, 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 (82631, '2022-05-17', 1602, 78363, 5119, 5897, '-140.0000', '6.7859', '6.7859', '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 (82632, '2022-05-17', 1602, 78363, 5119, NULL, '141.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-141.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82633, '2022-05-17', 1935, 78364, 5119, 5586, '-90.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 (82634, '2022-05-17', 1935, 78364, 5119, NULL, '94.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-94.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82635, '2022-05-17', 2102, 78365, 5120, 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 (82636, '2022-05-17', 7394, 78366, 5120, 36054, '1.0000', '178.5879', '178.5879', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82637, '2022-05-17', 1837, 78367, 5120, 45863, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82638, '2022-05-17', 2451, 78368, 5120, 53761, '1.0000', '10.4123', '10.4123', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82639, '2022-05-17', 7473, 78369, 5120, NULL, '3.0000', '-68.3632', '-68.3632', '0.6000', '0.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 (82640, '2022-05-17', 7983, 78370, 5120, NULL, '1.0000', '42.5100', '42.5100', '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 (82641, '2022-05-17', 1845, 78371, 5120, 54102, '1.0000', '21.7144', '21.7144', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82642, '2022-05-17', 7755, 78372, 5120, NULL, '1.0000', '-48.8467', '-48.8467', '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 (82643, '2022-05-17', 7588, 78373, 5120, NULL, '1.0000', '10.0320', '10.0320', '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 (82644, '2022-05-17', 8036, 78374, 5120, 51267, '1.0000', '6.7300', '6.7300', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82645, '2022-05-17', 7927, 78375, 5120, 53787, '1.0000', '12.2484', '12.2484', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82646, '2022-05-17', 8539, 78376, 5120, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82647, '2022-05-17', 8698, 78377, 5120, NULL, '1.0000', '2.0000', '2.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 (82648, '2022-05-17', 7334, 78378, 5120, 55312, '2.0000', '8.7989', '8.7989', '13.5000', '13.5000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82649, '2022-05-17', 7544, 78379, 5120, NULL, '1.0000', '9.4300', '9.4300', '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 (82650, '2022-05-17', 2315, 78380, 5120, 53909, '4.0000', '0.6636', '0.6636', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82651, '2022-05-17', 9092, 78381, 5120, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '132.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82652, '2022-05-17', 9274, 78382, 5120, NULL, '1.0000', '6.7908', '6.7908', '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 (82653, '2022-05-17', 9791, 78383, 5120, 50485, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '118.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82654, '2022-05-17', 7518, 78384, 5120, 55272, '3.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82655, '2022-05-17', 8547, 78385, 5120, 54093, '1.0000', '1.8167', '1.8167', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82656, '2022-05-17', 8965, 78386, 5120, NULL, '1.0000', '487.9947', '487.9947', '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 (82657, '2022-05-17', 7672, 78387, 5120, NULL, '1.0000', '3.8200', '3.8200', '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 (82658, '2022-05-17', 7674, 78388, 5120, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82659, '2022-05-17', 7333, 78389, 5120, NULL, '2.0000', '-0.5856', '-0.5856', '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 (82660, '2022-05-17', 7743, 78390, 5120, NULL, '2.0000', '602128.4752', '602128.4752', '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 (82661, '2022-05-17', 7703, 78391, 5120, NULL, '2.0000', '102.7757', '102.7757', '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 (82662, '2022-05-17', 9821, 78392, 5120, 54274, '2.0000', '1.4500', '1.4500', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82663, '2022-05-17', 9329, 78393, 5120, NULL, '1.0000', '11202.2795', '11202.2795', '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 (82664, '2022-05-17', 9293, 78394, 5121, 45295, '20.0000', '0.2188', '0.2188', '1.8000', '1.8000', '18.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82665, '2022-05-17', 7757, 78395, 5121, NULL, '1.0000', '-737.5595', '-737.5595', '179.0000', '179.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82666, '2022-05-17', 8044, 78396, 5122, NULL, '1.0000', '1.5000', '1.5000', '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 (82667, '2022-05-17', 7817, 78397, 5122, NULL, '1.0000', '28.4000', '28.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82668, '2022-05-17', 7814, 78398, 5122, NULL, '1.0000', '26.8335', '26.8335', '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 (82669, '2022-05-17', 7590, 78399, 5122, NULL, '1.0000', '6.0509', '6.0509', '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 (82670, '2022-05-17', 7744, 78400, 5122, 55277, '2.0000', '2.7200', '2.7200', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82671, '2022-05-17', 7715, 78401, 5122, 45339, '1.0000', '2.8934', '2.8934', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82672, '2022-05-17', 9272, 78402, 5122, NULL, '1.0000', '3.1000', '3.1000', '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 (82673, '2022-05-17', 7707, 78403, 5122, NULL, '1.0000', '5.7519', '5.7519', '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 (82674, '2022-05-17', 7674, 78404, 5122, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82675, '2022-05-17', 7514, 78405, 5122, NULL, '1.0000', '3234.0124', '3234.0124', '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 (82676, '2022-05-17', 9791, 78406, 5122, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '116.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82677, '2022-05-17', 7994, 78407, 5122, 54737, '1.0000', '6.2800', '6.2800', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82678, '2022-05-17', 7917, 78408, 5122, 52750, '1.0000', '2.1447', '2.1447', '0.7000', '0.7000', '110.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82679, '2022-05-17', 1980, 78409, 5122, 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 (82680, '2022-05-17', 1805, 78410, 5122, NULL, '1.0000', '4.9973', '4.9973', '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 (82681, '2022-05-17', 9496, 78411, 5123, NULL, '1.0000', '3.8800', '3.8800', '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 (82682, '2022-05-17', 9463, 78412, 5123, NULL, '1.0000', '145.5664', '145.5664', '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 (82683, '2022-05-17', 7514, 78413, 5123, NULL, '1.0000', '2.2500', '2.2500', '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 (82684, '2022-05-17', 7385, 78414, 5123, 54887, '11.0000', '4.9657', '4.9657', '3.7000', '3.7000', '58.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82685, '2022-05-17', 2169, 78415, 5123, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82686, '2022-05-17', 1667, 78416, 5123, 48487, '1.0000', '10.5358', '10.5358', '12.0000', '12.0000', '17.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82687, '2022-05-17', 9747, 78417, 5123, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82688, '2022-05-17', 8878, 78418, 5123, NULL, '1.0000', '-8.5209', '-8.5209', '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 (82689, '2022-05-17', 2169, 78419, 5123, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82690, '2022-05-17', 1859, 78420, 5123, 48972, '1.0000', '22.9320', '22.9320', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82691, '2022-05-17', 7819, 78421, 5123, NULL, '1.0000', '10.0999', '10.0999', '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 (82692, '2022-05-17', 2821, 78422, 5123, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82693, '2022-05-17', 1402, 78423, 5123, 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 (82694, '2022-05-17', 9762, 78424, 5123, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82695, '2022-05-17', 8006, 78425, 5123, 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 (82696, '2022-05-17', 1668, 78426, 5123, 55526, '1.0000', '29.1880', '29.1880', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82697, '2022-05-17', 9914, 78427, 5123, 55607, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82698, '2022-05-17', 7593, 78428, 5123, NULL, '1.0000', '0.8000', '0.8000', '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 (82699, '2022-05-17', 2416, 78429, 5123, 55413, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82700, '2022-05-17', 2366, 78430, 5123, NULL, '2.0000', '-31.8429', '-31.8429', '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 (82701, '2022-05-17', 9783, 78431, 5123, 54904, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82702, '2022-05-17', 1532, 78432, 5123, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82703, '2022-05-17', 1880, 78433, 5123, 48643, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82704, '2022-05-17', 1759, 78434, 5123, 23110, '1.0000', '11.5000', '11.5000', '16.0000', '16.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 (82705, '2022-05-17', 9889, 78435, 5123, 54568, '8.0000', '1.7000', '1.7000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82706, '2022-05-17', 2169, 78436, 5123, 55621, '3.0000', '1.6119', '1.6119', '2.5000', '2.5000', '97.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82707, '2022-05-17', 1867, 78437, 5123, 55547, '1.0000', '6.2086', '6.2086', '18.5000', '18.5000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82708, '2022-05-17', 2285, 78438, 5123, NULL, '1.0000', '26.8638', '26.8638', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82709, '2022-05-17', 2169, 78439, 5123, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82710, '2022-05-17', 3029, 78440, 5123, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82711, '2022-05-17', 2315, 78441, 5123, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82712, '2022-05-17', 8878, 78442, 5123, NULL, '2.0000', '-8.5209', '-8.5209', '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 (82713, '2022-05-17', 1340, 78443, 5123, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82714, '2022-05-17', 1337, 78444, 5123, 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 (82715, '2022-05-17', 8740, 78445, 5123, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82716, '2022-05-17', 9794, 78446, 5123, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82717, '2022-05-17', 1499, 78447, 5123, 54918, '2.0000', '0.3993', '0.3993', '0.6000', '0.6000', '56.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82718, '2022-05-17', 2327, 78448, 5123, 49257, '1.0000', '3.8469', '3.8469', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82719, '2022-05-17', 8444, 78449, 5123, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82720, '2022-05-17', 2169, 78450, 5123, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82721, '2022-05-17', 1471, 78451, 5123, 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 (82722, '2022-05-17', 2295, 78452, 5123, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82723, '2022-05-17', 9794, 78453, 5123, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82724, '2022-05-17', 2254, 78454, 5123, NULL, '1.0000', '42.5400', '42.5400', '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 (82725, '2022-05-17', 1812, 78455, 5123, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82726, '2022-05-17', 7713, 78456, 5123, 55675, '5.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '45.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82727, '2022-05-17', 2699, 78457, 5123, NULL, '1.0000', '3.6019', '3.6019', '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 (82728, '2022-05-17', 8878, 78458, 5123, NULL, '1.0000', '-8.5209', '-8.5209', '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 (82729, '2022-05-17', 9794, 78459, 5123, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82730, '2022-05-17', 8771, 78460, 5123, NULL, '1.0000', '5.0000', '5.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 (82731, '2022-05-17', 8744, 78461, 5123, 55422, '1.0000', '2.1255', '2.1255', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82732, '2022-05-17', 2169, 78462, 5123, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82733, '2022-05-17', 2260, 78463, 5123, 54937, '1.0000', '4.5431', '4.5431', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82734, '2022-05-17', 2315, 78464, 5123, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82735, '2022-05-17', 1746, 78465, 5123, 55573, '1.0000', '4.1452', '4.1452', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82736, '2022-05-17', 2821, 78466, 5123, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82737, '2022-05-17', 8444, 78467, 5123, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82738, '2022-05-17', 2169, 78468, 5123, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82739, '2022-05-17', 1620, 78469, 5123, 55636, '1.0000', '2.2583', '2.2583', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82740, '2022-05-17', 8685, 78470, 5124, NULL, '1.0000', '32.0000', '32.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 (82741, '2022-05-17', 9740, 78471, 5124, 55131, '3.0000', '0.6600', '0.6600', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82742, '2022-05-17', 8065, 78472, 5124, NULL, '1.0000', '32.0000', '32.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 (82743, '2022-05-17', 2100, 78473, 5124, NULL, '1.0000', '2.0800', '2.0800', '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 (82744, '2022-05-17', 9329, 78474, 5124, NULL, '1.0000', '11202.2795', '11202.2795', '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 (82745, '2022-05-17', 7590, 78475, 5124, NULL, '1.0000', '6.0509', '6.0509', '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 (82746, '2022-05-17', 1339, 78476, 5124, NULL, '1.0000', '3.0223', '3.0223', '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 (82747, '2022-05-17', 7667, 78477, 5124, 43447, '1.0000', '8.6120', '8.6120', '9.0000', '9.0000', '18.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82748, '2022-05-17', 8288, 78478, 5124, NULL, '2.0000', '1.1923', '1.1923', '1.8000', '1.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 (82749, '2022-05-17', 7674, 78479, 5124, 55281, '2.0000', '142.3408', '142.3408', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82750, '2022-05-17', 8596, 78480, 5124, NULL, '1.0000', '18.5278', '18.5278', '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 (82751, '2022-05-17', 9732, 78481, 5125, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82752, '2022-05-17', 2131, 78482, 5125, 54330, '1.0000', '11.2157', '11.2157', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82753, '2022-05-17', 1504, 78483, 5125, 53889, '10.0000', '2.4477', '2.4477', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82754, '2022-05-17', 1863, 78484, 5125, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82755, '2022-05-17', 7579, 78485, 5125, NULL, '10.0000', '15.0000', '15.0000', '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 (82756, '2022-05-17', 9873, 78486, 5125, 53278, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82757, '2022-05-17', 1686, 78487, 5125, 49098, '1.0000', '28.2390', '28.2390', '42.0000', '42.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82758, '2022-05-17', 7638, 78488, 5125, 44598, '1.0000', '1.1651', '1.1651', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82759, '2022-05-17', 1493, 78489, 5125, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82760, '2022-05-17', 1665, 78490, 5125, 54639, '1.0000', '1.1801', '1.1801', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82761, '2022-05-17', 7744, 78491, 5125, NULL, '1.0000', '2.9400', '2.9400', '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 (82762, '2022-05-17', 7708, 78492, 5125, NULL, '1.0000', '8.3000', '8.3000', '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 (82763, '2022-05-17', 2251, 78493, 5125, 54668, '1.0000', '11.6477', '11.6477', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82764, '2022-05-17', 7411, 78494, 5125, 55760, '2.0000', '1.3793', '1.3793', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82765, '2022-05-17', 7790, 78495, 5125, 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 (82766, '2022-05-17', 2411, 78496, 5125, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82767, '2022-05-17', 2662, 78497, 5125, 46617, '1.0000', '4.6731', '4.6731', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82768, '2022-05-17', 2236, 78498, 5125, 54415, '1.0000', '5.8362', '5.8362', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82769, '2022-05-17', 1859, 78499, 5125, 52304, '1.0000', '56.8014', '56.8014', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82770, '2022-05-17', 1860, 78500, 5125, 52305, '1.0000', '55.9500', '55.9500', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82771, '2022-05-17', 7357, 78501, 5125, NULL, '1.0000', '12.2000', '12.2000', '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 (82772, '2022-05-17', 1695, 78502, 5125, 55778, '1.0000', '31.9600', '31.9600', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82773, '2022-05-17', 2865, 78503, 5125, 40624, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82774, '2022-05-17', 1612, 78504, 5125, 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 (82775, '2022-05-17', 2169, 78505, 5125, 54664, '2.0000', '1.2111', '1.2111', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82776, '2022-05-17', 1696, 78506, 5125, 44732, '1.0000', '10.3600', '10.3600', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82777, '2022-05-17', 1863, 78507, 5125, 55480, '2.0000', '1.3191', '1.3191', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82778, '2022-05-17', 2315, 78508, 5125, 3069, '1.0000', '0.3300', '0.3300', '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 (82779, '2022-05-17', 2293, 78509, 5125, 50920, '4.0000', '0.8705', '0.8705', '1.5000', '1.5000', '64.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82780, '2022-05-17', 2858, 78510, 5125, 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 (82781, '2022-05-17', 1824, 78511, 5126, 22368, '1.0000', '82.2142', '82.2142', '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 (82782, '2022-05-17', 2655, 78512, 5126, NULL, '1.0000', '5.6000', '5.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 (82783, '2022-05-17', 2617, 78513, 5126, NULL, '2.0000', '5.1800', '5.1800', '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 (82784, '2022-05-17', 9472, 78514, 5126, NULL, '1.0000', '11.5000', '11.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 (82785, '2022-05-17', 9832, 78515, 5126, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82786, '2022-05-17', 1984, 78516, 5126, 53420, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82787, '2022-05-17', 8017, 78517, 5127, 51835, '4.0000', '0.6000', '0.6000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82788, '2022-05-17', 7411, 78518, 5127, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82789, '2022-05-17', 7958, 78519, 5127, NULL, '1.0000', '8.5211', '8.5211', '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 (82790, '2022-05-17', 8969, 78520, 5127, NULL, '1.0000', '2.0000', '2.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 (82791, '2022-05-17', 1855, 78521, 5127, 55330, '1.0000', '1.4818', '1.4818', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82792, '2022-05-17', 7672, 78522, 5127, NULL, '1.0000', '3.8200', '3.8200', '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 (82793, '2022-05-17', 7518, 78523, 5127, 55272, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82794, '2022-05-17', 7896, 78524, 5127, NULL, '1.0000', '7.0000', '7.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 (82795, '2022-05-17', 2152, 78525, 5128, NULL, '1.0000', '14.0800', '14.0800', '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 (82796, '2022-05-17', 9578, 78526, 5128, 54431, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82797, '2022-05-17', 9794, 78527, 5128, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '73.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82798, '2022-05-17', 7328, 78528, 5129, NULL, '5.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (82799, '2022-05-17', 1840, 78529, 5129, 55654, '5.0000', '0.2400', '0.2400', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82800, '2022-05-17', 3058, 78530, 5129, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82801, '2022-05-17', 7938, 78531, 5129, NULL, '1.0000', '2.9000', '2.9000', '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 (82802, '2022-05-17', 2156, 78532, 5129, 55716, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82803, '2022-05-17', 7741, 78533, 5129, NULL, '1.0000', '-8.9337', '-8.9337', '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 (82804, '2022-05-18', 9649, 78534, 5130, NULL, '1.0000', '14.2780', '14.2780', '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 (82805, '2022-05-18', 9864, 78535, 5130, 55579, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82806, '2022-05-18', 8411, 78536, 5130, NULL, '1.0000', '8.8100', '8.8100', '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 (82807, '2022-05-18', 2237, 78537, 5130, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82808, '2022-05-18', 9794, 78538, 5130, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82809, '2022-05-18', 2237, 78539, 5130, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82810, '2022-05-18', 9151, 78540, 5130, NULL, '2.0000', '9.7000', '9.7000', '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 (82811, '2022-05-18', 9496, 78541, 5130, NULL, '1.0000', '3.8800', '3.8800', '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 (82812, '2022-05-18', 7756, 78542, 5130, NULL, '1.0000', '2.5000', '2.5000', '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 (82813, '2022-05-18', 2381, 78543, 5130, 54542, '1.0000', '13.6699', '13.6699', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82814, '2022-05-18', 1787, 78544, 5130, NULL, '1.0000', '0.5000', '0.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 (82815, '2022-05-18', 2384, 78545, 5130, NULL, '7.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-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 (82816, '2022-05-18', 2315, 78546, 5130, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82817, '2022-05-18', 2506, 78547, 5130, NULL, '1.0000', '3.7156', '3.7156', '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 (82818, '2022-05-18', 9747, 78548, 5130, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82819, '2022-05-18', 2823, 78549, 5130, NULL, '2.0000', '11.2100', '11.2100', '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 (82820, '2022-05-18', 7658, 78550, 5130, NULL, '2.0000', '10.1500', '10.1500', '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 (82821, '2022-05-18', 9794, 78551, 5130, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82822, '2022-05-18', 2948, 78552, 5130, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82823, '2022-05-18', 2315, 78553, 5130, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82824, '2022-05-18', 2379, 78554, 5130, NULL, '1.0000', '-3.0170', '-3.0170', '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 (82825, '2022-05-18', 1787, 78555, 5130, NULL, '1.0000', '0.5000', '0.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 (82826, '2022-05-18', 9754, 78556, 5130, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82827, '2022-05-18', 1432, 78557, 5130, 55690, '1.0000', '12.1630', '12.1630', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82828, '2022-05-18', 2169, 78558, 5130, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '90.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82829, '2022-05-18', 2237, 78559, 5130, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82830, '2022-05-18', 2699, 78560, 5130, NULL, '1.0000', '3.6019', '3.6019', '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 (82831, '2022-05-18', 2403, 78561, 5130, 48210, '1.0000', '17.7915', '17.7915', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82832, '2022-05-18', 9747, 78562, 5130, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82833, '2022-05-18', 9794, 78563, 5130, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82834, '2022-05-18', 7802, 78564, 5130, NULL, '3.0000', '1.1497', '1.1497', '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 (82835, '2022-05-18', 9794, 78565, 5130, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82836, '2022-05-18', 2315, 78566, 5130, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82837, '2022-05-18', 9695, 78567, 5130, 55410, '2.0000', '5.1311', '5.1311', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82838, '2022-05-18', 8068, 78568, 5130, NULL, '1.0000', '8.7900', '8.7900', '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 (82839, '2022-05-18', 8039, 78569, 5130, NULL, '1.0000', '12.9000', '12.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 (82840, '2022-05-18', 7612, 78570, 5130, NULL, '1.0000', '1.6100', '1.6100', '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 (82841, '2022-05-18', 1674, 78571, 5130, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82842, '2022-05-18', 9695, 78572, 5130, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82843, '2022-05-18', 9832, 78573, 5130, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82844, '2022-05-18', 8933, 78574, 5130, NULL, '1.0000', '8.7500', '8.7500', '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 (82845, '2022-05-18', 8876, 78575, 5130, NULL, '1.0000', '-24.7884', '-24.7884', '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 (82846, '2022-05-18', 1787, 78576, 5130, NULL, '1.0000', '0.5000', '0.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 (82847, '2022-05-18', 8068, 78577, 5131, NULL, '1.0000', '8.7900', '8.7900', '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 (82848, '2022-05-18', 2285, 78578, 5131, NULL, '1.0000', '26.8638', '26.8638', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82849, '2022-05-18', 1841, 78579, 5131, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82850, '2022-05-18', 9794, 78580, 5131, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82851, '2022-05-18', 7824, 78581, 5132, NULL, '1.0000', '8.0000', '8.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 (82852, '2022-05-18', 7673, 78582, 5132, NULL, '1.0000', '16.8000', '16.8000', '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 (82853, '2022-05-18', 7674, 78583, 5132, NULL, '1.0000', '1.3000', '1.3000', '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 (82854, '2022-05-18', 8566, 78584, 5132, NULL, '1.0000', '11.0000', '11.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 (82855, '2022-05-18', 1856, 78585, 5132, NULL, '1.0000', '4.2500', '4.2500', '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 (82856, '2022-05-18', 9164, 78586, 5132, NULL, '1.0000', '6.8700', '6.8700', '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 (82857, '2022-05-18', 9286, 78587, 5132, 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 (82858, '2022-05-18', 9788, 78588, 5132, NULL, '4.0000', '1.3000', '1.3000', '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 (82859, '2022-05-18', 8566, 78589, 5132, NULL, '1.0000', '11.0000', '11.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 (82860, '2022-05-18', 7674, 78590, 5132, NULL, '1.0000', '1.3000', '1.3000', '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 (82861, '2022-05-18', 8950, 78591, 5132, 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 (82862, '2022-05-18', 8359, 78592, 5132, 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 (82863, '2022-05-18', 7641, 78593, 5132, NULL, '1.0000', '1.9000', '1.9000', '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 (82864, '2022-05-18', 7664, 78594, 5132, NULL, '1.0000', '6.9400', '6.9400', '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 (82865, '2022-05-18', 7641, 78595, 5132, NULL, '3.0000', '1.9000', '1.9000', '9.5000', '9.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 (82866, '2022-05-18', 9784, 78596, 5132, 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 (82867, '2022-05-18', 2315, 78597, 5132, 2735, '-360.0000', '0.3300', '0.3300', '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 (82868, '2022-05-18', 2315, 78597, 5132, NULL, '361.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-361.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82869, '2022-05-18', 8878, 78598, 5132, NULL, '1.0000', '6.6700', '6.6700', '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 (82870, '2022-05-18', 7685, 78599, 5132, NULL, '2.0000', '31.2000', '31.2000', '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 (82871, '2022-05-18', 7911, 78600, 5132, NULL, '1.0000', '4.3700', '4.3700', '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 (82872, '2022-05-18', 9579, 78601, 5132, 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 (82873, '2022-05-18', 7335, 78602, 5132, NULL, '1.0000', '14.5000', '14.5000', '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 (82874, '2022-05-18', 7666, 78603, 5132, NULL, '1.0000', '3.6000', '3.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 (82875, '2022-05-18', 7385, 78604, 5132, NULL, '1.0000', '2.0000', '2.0000', '3.7000', '3.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 (82876, '2022-05-18', 1884, 78605, 5132, 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 (82877, '2022-05-18', 9725, 78606, 5132, 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 (82878, '2022-05-18', 2315, 78607, 5132, 2735, '-360.0000', '0.3300', '0.3300', '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 (82879, '2022-05-18', 2315, 78607, 5132, NULL, '361.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-361.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82880, '2022-05-18', 1841, 78608, 5132, NULL, '1.0000', '142.5780', '142.5780', '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 (82881, '2022-05-18', 2289, 78609, 5132, 2949, '-153.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 (82882, '2022-05-18', 2289, 78609, 5132, NULL, '154.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-154.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82883, '2022-05-18', 1840, 78610, 5132, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (82884, '2022-05-18', 8395, 78611, 5132, NULL, '1.0000', '0.9700', '0.9700', '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 (82885, '2022-05-18', 7709, 78612, 5132, 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 (82886, '2022-05-18', 2381, 78613, 5133, 11263, '-4.0000', '12.1900', '12.1900', '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 (82887, '2022-05-18', 2381, 78613, 5133, NULL, '5.0000', '12.1900', '12.1900', '19.0000', '19.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 (82888, '2022-05-18', 2497, 78614, 5133, 11164, '-1.0000', '34.4493', '34.4493', '48.5000', '48.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 (82889, '2022-05-18', 2497, 78614, 5133, NULL, '2.0000', '34.4493', '34.4493', '48.5000', '48.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 (82890, '2022-05-18', 9827, 78615, 5133, NULL, '1.0000', '13.5000', '13.5000', '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 (82891, '2022-05-18', 1306, 78616, 5133, 1013, '1.0000', '22.5969', '22.5969', '3.0000', '3.0000', '0.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 (82892, '2022-05-18', 1306, 78616, 5133, NULL, '1.0000', '22.5969', '22.5969', '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 (82893, '2022-05-18', 2916, 78617, 5133, 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 (82894, '2022-05-18', 1646, 78618, 5133, 3239, '-19.0000', '4.5300', '4.5300', '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 (82895, '2022-05-18', 1646, 78618, 5133, NULL, '21.0000', '4.5300', '4.5300', '8.0000', '8.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82896, '2022-05-18', 1666, 78619, 5133, 3236, '-29.0000', '2.7100', '2.7100', '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 (82897, '2022-05-18', 1666, 78619, 5133, NULL, '30.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-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 (82898, '2022-05-18', 1409, 78620, 5133, 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 (82899, '2022-05-18', 2169, 78621, 5133, 10737, '-129.0000', '3.8397', '3.8397', '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 (82900, '2022-05-18', 2169, 78621, 5133, NULL, '130.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82901, '2022-05-18', 9740, 78622, 5133, NULL, '1.0000', '0.6600', '0.6600', '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 (82902, '2022-05-18', 2849, 78623, 5133, 17212, '-1.0000', '5.8500', '5.8500', '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 (82903, '2022-05-18', 2849, 78623, 5133, NULL, '2.0000', '5.8500', '5.8500', '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 (82904, '2022-05-18', 2022, 78624, 5133, 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 (82905, '2022-05-18', 2169, 78625, 5133, 10737, '-129.0000', '3.8397', '3.8397', '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 (82906, '2022-05-18', 2169, 78625, 5133, NULL, '130.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82907, '2022-05-18', 2360, 78626, 5133, 3862, '-77.0000', '0.5200', '0.5200', '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 (82908, '2022-05-18', 2360, 78626, 5133, NULL, '78.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82909, '2022-05-18', 2277, 78627, 5133, 2937, '-43.0000', '0.7800', '0.7800', '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 (82910, '2022-05-18', 2277, 78627, 5133, NULL, '44.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82911, '2022-05-18', 7411, 78628, 5133, NULL, '1.0000', '1.3500', '1.3500', '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 (82912, '2022-05-18', 2893, 78629, 5133, 18242, '-8.0000', '6.0000', '6.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 (82913, '2022-05-18', 2893, 78629, 5133, NULL, '9.0000', '6.0000', '6.0000', '8.5000', '8.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 (82914, '2022-05-18', 7411, 78630, 5133, NULL, '1.0000', '1.3500', '1.3500', '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 (82915, '2022-05-18', 1524, 78631, 5133, NULL, '2.0000', '3.8400', '3.8400', '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 (82916, '2022-05-18', 2297, 78632, 5133, 2956, '-7.0000', '6.6000', '6.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 (82917, '2022-05-18', 2297, 78632, 5133, NULL, '8.0000', '6.6000', '6.6000', '12.0000', '12.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 (82918, '2022-05-18', 7604, 78633, 5133, NULL, '1.0000', '4.3900', '4.3900', '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 (82919, '2022-05-18', 1334, 78634, 5133, 230, '1.0000', '0.7000', '0.7000', '1.5000', '1.5000', '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 (82920, '2022-05-18', 1435, 78635, 5133, NULL, '1.0000', '22.5000', '22.5000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82921, '2022-05-18', 9886, 78636, 5133, 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 (82922, '2022-05-18', 2228, 78637, 5133, 1703, '-5.0000', '25.0000', '25.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 (82923, '2022-05-18', 2228, 78637, 5133, NULL, '6.0000', '25.0000', '25.0000', '35.0000', '35.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 (82924, '2022-05-18', 2289, 78638, 5133, 2949, '-154.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 (82925, '2022-05-18', 2289, 78638, 5133, NULL, '158.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-158.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82926, '2022-05-18', 2242, 78639, 5133, 3059, '-20.0000', '0.4800', '0.4800', '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 (82927, '2022-05-18', 2242, 78639, 5133, NULL, '23.0000', '0.4800', '0.4800', '1.5000', '1.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 (82928, '2022-05-18', 9827, 78640, 5133, NULL, '1.0000', '13.5000', '13.5000', '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 (82929, '2022-05-18', 1533, 78641, 5133, 10381, '-23.0000', '2.5917', '2.5917', '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 (82930, '2022-05-18', 1533, 78641, 5133, NULL, '24.0000', '2.5917', '2.5917', '5.5000', '5.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 (82931, '2022-05-18', 7915, 78642, 5133, NULL, '1.0000', '2.8000', '2.8000', '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 (82932, '2022-05-18', 9748, 78643, 5133, NULL, '1.0000', '2.5300', '2.5300', '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 (82933, '2022-05-18', 7759, 78644, 5133, NULL, '1.0000', '19.5000', '19.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 (82934, '2022-05-18', 2682, 78645, 5133, 12165, '-4.0000', '19.3000', '19.3000', '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 (82935, '2022-05-18', 2682, 78645, 5133, NULL, '5.0000', '19.3000', '19.3000', '20.0000', '20.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 (82936, '2022-05-18', 1612, 78646, 5133, 8732, '-9.0000', '1.6000', '1.6000', '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 (82937, '2022-05-18', 1612, 78646, 5133, NULL, '10.0000', '1.6000', '1.6000', '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 (82938, '2022-05-18', 2289, 78647, 5133, 2949, '-154.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 (82939, '2022-05-18', 2289, 78647, 5133, NULL, '157.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-157.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82940, '2022-05-18', 8677, 78648, 5134, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82941, '2022-05-18', 2315, 78649, 5134, 53909, '3.0000', '0.6636', '0.6636', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82942, '2022-05-18', 7832, 78650, 5134, 54475, '1.0000', '12.9545', '12.9545', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82943, '2022-05-18', 9569, 78651, 5134, NULL, '1.0000', '132.2000', '132.2000', '174.5000', '174.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82944, '2022-05-18', 8069, 78652, 5134, 53920, '1.0000', '32.5336', '32.5336', '52.0000', '52.0000', '1.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82945, '2022-05-18', 7453, 78653, 5134, 54504, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82946, '2022-05-18', 2241, 78654, 5134, 54286, '1.0000', '6.5272', '6.5272', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82947, '2022-05-18', 9618, 78655, 5134, NULL, '8.0000', '3.7500', '3.7500', '7.0000', '7.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 (82948, '2022-05-18', 8689, 78656, 5134, 50448, '1.0000', '8.6135', '8.6135', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82949, '2022-05-18', 7472, 78657, 5134, NULL, '1.0000', '-35.4938', '-35.4938', '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 (82950, '2022-05-18', 7611, 78658, 5134, 53521, '1.0000', '17.6895', '17.6895', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82951, '2022-05-18', 7317, 78659, 5134, 55120, '2.0000', '14.6881', '14.6881', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82952, '2022-05-18', 8017, 78660, 5134, 51835, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82953, '2022-05-18', 7709, 78661, 5134, NULL, '2.0000', '202.4582', '202.4582', '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 (82954, '2022-05-18', 7672, 78662, 5134, NULL, '1.0000', '3.8200', '3.8200', '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 (82955, '2022-05-18', 7704, 78663, 5134, NULL, '2.0000', '-1.5625', '-1.5625', '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 (82956, '2022-05-18', 8926, 78664, 5134, 48818, '1.0000', '39.0000', '39.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82957, '2022-05-18', 9092, 78665, 5134, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '129.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82958, '2022-05-18', 1935, 78666, 5134, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '133.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82959, '2022-05-18', 7411, 78667, 5134, 52731, '3.0000', '1.3518', '1.3518', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82960, '2022-05-18', 9740, 78668, 5134, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82961, '2022-05-18', 7385, 78669, 5134, 55278, '5.0000', '9.1437', '9.1437', '3.7000', '3.7000', '83.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82962, '2022-05-18', 2612, 78670, 5134, 52743, '1.0000', '8.3712', '8.3712', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82963, '2022-05-18', 1340, 78671, 5134, 54108, '1.0000', '3.0692', '3.0692', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82964, '2022-05-18', 2887, 78672, 5134, 54476, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82965, '2022-05-18', 7317, 78673, 5134, 55120, '1.0000', '14.6881', '14.6881', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82966, '2022-05-18', 7509, 78674, 5134, 55284, '1.0000', '12.3063', '12.3063', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82967, '2022-05-18', 8882, 78675, 5134, NULL, '1.0000', '8.0000', '8.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 (82968, '2022-05-18', 8359, 78676, 5134, 54275, '1.0000', '801.6266', '801.6266', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82969, '2022-05-18', 7585, 78677, 5134, NULL, '1.0000', '7.3862', '7.3862', '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 (82970, '2022-05-18', 7385, 78678, 5134, 55278, '7.0000', '9.1437', '9.1437', '3.7000', '3.7000', '81.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82971, '2022-05-18', 9751, 78679, 5134, 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 (82972, '2022-05-18', 7518, 78680, 5134, 55272, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82973, '2022-05-18', 8360, 78681, 5134, 54094, '2.0000', '3.2281', '3.2281', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82974, '2022-05-18', 8202, 78682, 5134, 55334, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82975, '2022-05-18', 9740, 78683, 5134, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82976, '2022-05-18', 7886, 78684, 5134, 54287, '1.0000', '5.1718', '5.1718', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82977, '2022-05-18', 8698, 78685, 5134, NULL, '1.0000', '2.0000', '2.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 (82978, '2022-05-18', 9175, 78686, 5134, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82979, '2022-05-18', 7666, 78687, 5134, 55291, '1.0000', '1.2064', '1.2064', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82980, '2022-05-18', 2451, 78688, 5134, 53761, '1.0000', '10.4123', '10.4123', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82981, '2022-05-18', 9832, 78689, 5135, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82982, '2022-05-18', 2380, 78690, 5135, 55679, '1.0000', '47.0967', '47.0967', '66.0000', '66.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82983, '2022-05-18', 2315, 78691, 5135, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82984, '2022-05-18', 1694, 78692, 5135, 53648, '1.0000', '7.4679', '7.4679', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82985, '2022-05-18', 1693, 78693, 5135, 55664, '1.0000', '9.5194', '9.5194', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82986, '2022-05-18', 9840, 78694, 5135, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82987, '2022-05-18', 9870, 78695, 5135, 55105, '1.0000', '6.2400', '6.2400', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82988, '2022-05-18', 1935, 78696, 5135, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82989, '2022-05-18', 1425, 78697, 5135, NULL, '1.0000', '5.1721', '5.1721', '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 (82990, '2022-05-18', 2965, 78698, 5135, NULL, '1.0000', '8.3288', '8.3288', '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 (82991, '2022-05-18', 1935, 78699, 5135, 48658, '3.0000', '0.7671', '0.7671', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82992, '2022-05-18', 8963, 78700, 5135, NULL, '1.0000', '9.9800', '9.9800', '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 (82993, '2022-05-18', 1521, 78701, 5135, 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 (82994, '2022-05-18', 1812, 78702, 5135, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82995, '2022-05-18', 2315, 78703, 5135, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82996, '2022-05-18', 1528, 78704, 5135, NULL, '1.0000', '172.4516', '172.4516', '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 (82997, '2022-05-18', 2379, 78705, 5135, NULL, '1.0000', '-3.0170', '-3.0170', '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 (82998, '2022-05-18', 1493, 78706, 5135, NULL, '1.0000', '-27.3400', '-27.3400', '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 (82999, '2022-05-18', 9508, 78707, 5135, 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 (83000, '2022-05-18', 9574, 78708, 5135, 49908, '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 (83001, '2022-05-18', 2381, 78709, 5135, 54542, '1.0000', '13.6699', '13.6699', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83002, '2022-05-18', 9731, 78710, 5135, 54925, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83003, '2022-05-18', 9747, 78711, 5135, 54928, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83004, '2022-05-18', 1394, 78712, 5135, 55146, '1.0000', '10.7744', '10.7744', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83005, '2022-05-18', 1999, 78713, 5135, 55101, '1.0000', '6.7734', '6.7734', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83006, '2022-05-18', 2305, 78714, 5135, 53223, '1.0000', '4.0595', '4.0595', '8.5000', '8.5000', '15.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83007, '2022-05-18', 1816, 78715, 5135, 53229, '1.0000', '23.4724', '23.4724', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83008, '2022-05-18', 8979, 78716, 5135, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83009, '2022-05-18', 2444, 78717, 5135, 54824, '1.0000', '8.3626', '8.3626', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83010, '2022-05-18', 2296, 78718, 5135, 55652, '1.0000', '16.0300', '16.0300', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83011, '2022-05-18', 2728, 78719, 5135, 19354, '2.0000', '0.8000', '0.8000', '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 (83012, '2022-05-18', 1746, 78720, 5135, 55573, '1.0000', '4.1452', '4.1452', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83013, '2022-05-18', 9776, 78721, 5135, 52338, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83014, '2022-05-18', 9871, 78722, 5135, 54076, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83015, '2022-05-18', 9794, 78723, 5135, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83016, '2022-05-18', 8744, 78724, 5135, 55422, '1.0000', '2.1255', '2.1255', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83017, '2022-05-18', 9468, 78725, 5135, NULL, '1.0000', '35.2500', '35.2500', '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 (83018, '2022-05-18', 1667, 78726, 5135, 48487, '2.0000', '10.5358', '10.5358', '12.0000', '12.0000', '15.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83019, '2022-05-18', 9578, 78727, 5135, 54578, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83020, '2022-05-18', 1665, 78728, 5135, 55689, '1.0000', '1.1651', '1.1651', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83021, '2022-05-18', 8759, 78729, 5135, NULL, '1.0000', '22.7000', '22.7000', '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 (83022, '2022-05-18', 2916, 78730, 5135, NULL, '1.0000', '-13.0168', '-13.0168', '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 (83023, '2022-05-18', 1905, 78731, 5135, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83024, '2022-05-18', 3019, 78732, 5135, NULL, '1.0000', '7.8000', '7.8000', '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 (83025, '2022-05-18', 1432, 78733, 5135, 55690, '1.0000', '12.1630', '12.1630', '17.5000', '17.5000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83026, '2022-05-18', 1519, 78734, 5135, 51485, '1.0000', '3.3999', '3.3999', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83027, '2022-05-18', 1863, 78735, 5135, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83028, '2022-05-18', 9747, 78736, 5135, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83029, '2022-05-18', 9832, 78737, 5135, 55090, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83030, '2022-05-18', 8101, 78738, 5135, NULL, '2.0000', '21.7000', '21.7000', '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 (83031, '2022-05-18', 1602, 78739, 5135, 55530, '2.0000', '7.0298', '7.0298', '10.0000', '10.0000', '35.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83032, '2022-05-18', 2721, 78740, 5135, 13757, '1.0000', '8.9800', '8.9800', '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 (83033, '2022-05-18', 1935, 78741, 5135, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83034, '2022-05-18', 1863, 78742, 5135, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83035, '2022-05-18', 1310, 78743, 5135, 52211, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83036, '2022-05-18', 1746, 78744, 5135, 55573, '1.0000', '4.1452', '4.1452', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83037, '2022-05-18', 2699, 78745, 5135, NULL, '1.0000', '3.6019', '3.6019', '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 (83038, '2022-05-18', 2990, 78746, 5135, 39769, '1.0000', '1.2776', '1.2776', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83039, '2022-05-18', 2990, 78746, 5135, 22611, '1.0000', '1.2776', '1.2776', '5.0000', '5.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 (83040, '2022-05-18', 9840, 78747, 5135, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83041, '2022-05-18', 8744, 78748, 5135, 55422, '1.0000', '2.1255', '2.1255', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83042, '2022-05-18', 1812, 78749, 5136, 55527, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83043, '2022-05-18', 9740, 78750, 5136, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83044, '2022-05-18', 2095, 78751, 5137, NULL, '1.0000', '1.5000', '1.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 (83045, '2022-05-18', 9508, 78752, 5137, 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 (83046, '2022-05-18', 2769, 78753, 5137, 54561, '2.0000', '1.8925', '1.8925', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83047, '2022-05-18', 2315, 78754, 5137, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83048, '2022-05-18', 2315, 78755, 5137, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83049, '2022-05-18', 1880, 78756, 5137, 48643, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83050, '2022-05-18', 9762, 78757, 5137, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83051, '2022-05-18', 1812, 78758, 5138, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83052, '2022-05-18', 1767, 78759, 5138, 55576, '1.0000', '5.3188', '5.3188', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83053, '2022-05-18', 1307, 78760, 5138, NULL, '1.0000', '-2.6794', '-2.6794', '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 (83054, '2022-05-18', 1667, 78761, 5139, 55491, '1.0000', '23.6303', '23.6303', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83055, '2022-05-18', 7741, 78762, 5139, 54662, '1.0000', '-0.2072', '-0.2072', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83056, '2022-05-18', 7886, 78763, 5139, 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 (83057, '2022-05-18', 9177, 78764, 5139, 37567, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '15.0000', 1, 0, NULL, 263);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83058, '2022-05-18', 8918, 78765, 5139, NULL, '1.0000', '10.4000', '10.4000', '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 (83059, '2022-05-18', 2154, 78766, 5139, 54582, '1.0000', '12.4502', '12.4502', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83060, '2022-05-18', 2169, 78767, 5139, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83061, '2022-05-18', 7375, 78768, 5139, NULL, '10.0000', '5.3000', '5.3000', '7.0000', '7.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 (83062, '2022-05-18', 9716, 78769, 5139, 45080, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83063, '2022-05-18', 9578, 78770, 5139, 54431, '1.0000', '8.0000', '8.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83064, '2022-05-18', 9394, 78771, 5139, NULL, '1.0000', '9.5000', '9.5000', '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 (83065, '2022-05-18', 2484, 78772, 5139, 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 (83066, '2022-05-18', 1935, 78773, 5139, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83067, '2022-05-18', 2251, 78774, 5139, 54668, '1.0000', '11.6477', '11.6477', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83068, '2022-05-18', 2916, 78775, 5139, 55471, '1.0000', '14.4254', '14.4254', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83069, '2022-05-18', 1863, 78776, 5139, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83070, '2022-05-18', 7915, 78777, 5139, 52088, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83071, '2022-05-18', 2916, 78778, 5139, 55471, '1.0000', '14.4254', '14.4254', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83072, '2022-05-18', 1841, 78779, 5139, 54426, '2.0000', '0.0701', '0.0701', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83073, '2022-05-18', 2289, 78780, 5139, 53244, '2.0000', '0.2742', '0.2742', '0.5000', '0.5000', '50.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83074, '2022-05-18', 1863, 78781, 5139, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83075, '2022-05-18', 2403, 78782, 5139, 46568, '1.0000', '18.1582', '18.1582', '24.0000', '24.0000', '7.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83076, '2022-05-18', 1736, 78783, 5139, 54580, '1.0000', '33.6490', '33.6490', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83077, '2022-05-18', 1432, 78784, 5139, 54681, '1.0000', '10.0341', '10.0341', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83078, '2022-05-18', 7832, 78785, 5139, 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 (83079, '2022-05-18', 9417, 78786, 5139, 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 (83080, '2022-05-18', 1841, 78787, 5139, 54426, '4.0000', '0.0701', '0.0701', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83081, '2022-05-18', 2320, 78788, 5139, 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 (83082, '2022-05-18', 1337, 78789, 5139, 40900, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83083, '2022-05-18', 1863, 78790, 5139, 55480, '5.0000', '1.3191', '1.3191', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83084, '2022-05-18', 1504, 78791, 5139, 53889, '10.0000', '2.4477', '2.4477', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83085, '2022-05-18', 1785, 78792, 5139, 54608, '1.0000', '15.2971', '15.2971', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83086, '2022-05-18', 1947, 78793, 5139, 47833, '1.0000', '3.2803', '3.2803', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 348);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83087, '2022-05-18', 9794, 78794, 5139, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83088, '2022-05-18', 7753, 78795, 5139, NULL, '1.0000', '3.1400', '3.1400', '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 (83089, '2022-05-18', 2758, 78796, 5139, 49542, '1.0000', '1.2400', '1.2400', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83090, '2022-05-18', 8040, 78797, 5139, NULL, '1.0000', '14.9000', '14.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 (83091, '2022-05-18', 9750, 78798, 5139, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '34.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83092, '2022-05-18', 9741, 78799, 5139, 54378, '1.0000', '7.6728', '7.6728', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83093, '2022-05-18', 2695, 78800, 5139, 45122, '2.0000', '2.0000', '2.0000', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83094, '2022-05-18', 2169, 78801, 5139, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83095, '2022-05-18', 2916, 78802, 5140, NULL, '1.0000', '-13.0168', '-13.0168', '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 (83096, '2022-05-18', 2948, 78803, 5140, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83097, '2022-05-18', 7328, 78804, 5140, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83098, '2022-05-18', 1912, 78805, 5140, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83099, '2022-05-18', 8186, 78806, 5141, 55286, '3.0000', '1.4278', '1.4278', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83100, '2022-05-18', 9092, 78807, 5141, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '127.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83101, '2022-05-18', 7753, 78808, 5141, 55353, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83102, '2022-05-18', 7780, 78809, 5141, NULL, '1.0000', '-24.3351', '-24.3351', '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 (83103, '2022-05-18', 7411, 78810, 5141, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83104, '2022-05-18', 7672, 78811, 5141, NULL, '2.0000', '3.8200', '3.8200', '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 (83105, '2022-05-18', 8702, 78812, 5141, NULL, '1.0000', '3.6700', '3.6700', '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 (83106, '2022-05-18', 7674, 78813, 5141, 55281, '1.0000', '142.3408', '142.3408', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83107, '2022-05-18', 1916, 78814, 5141, 55119, '1.0000', '10.4258', '10.4258', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83108, '2022-05-18', 7411, 78815, 5141, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83109, '2022-05-18', 9092, 78816, 5141, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '126.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83110, '2022-05-18', 2656, 78817, 5141, NULL, '1.0000', '3.0625', '3.0625', '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 (83111, '2022-05-18', 9734, 78818, 5141, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83112, '2022-05-18', 7558, 78819, 5141, NULL, '1.0000', '1.4867', '1.4867', '3.7000', '3.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 (83113, '2022-05-18', 8200, 78820, 5141, 55339, '2.0000', '14.6600', '14.6600', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83114, '2022-05-18', 7742, 78821, 5142, 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 (83115, '2022-05-18', 2593, 78822, 5143, NULL, '1.0000', '14.4000', '14.4000', '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 (83116, '2022-05-19', 9727, 78823, 5144, 53234, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83117, '2022-05-19', 2169, 78824, 5144, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '89.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83118, '2022-05-19', 7456, 78825, 5144, NULL, '1.0000', '1.3800', '1.3800', '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 (83119, '2022-05-19', 7411, 78826, 5144, NULL, '2.0000', '1.3013', '1.3013', '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 (83120, '2022-05-19', 2921, 78827, 5144, NULL, '1.0000', '4.9000', '4.9000', '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 (83121, '2022-05-19', 7756, 78828, 5144, NULL, '1.0000', '2.5000', '2.5000', '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 (83122, '2022-05-19', 7411, 78829, 5144, NULL, '2.0000', '1.3013', '1.3013', '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 (83123, '2022-05-19', 8068, 78830, 5144, NULL, '1.0000', '8.7900', '8.7900', '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 (83124, '2022-05-19', 9740, 78831, 5144, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83125, '2022-05-19', 2379, 78832, 5144, NULL, '1.0000', '-3.0170', '-3.0170', '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 (83126, '2022-05-19', 2416, 78833, 5144, 55413, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83127, '2022-05-19', 9695, 78834, 5144, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83128, '2022-05-19', 7447, 78835, 5144, NULL, '4.0000', '19.1100', '19.1100', '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 (83129, '2022-05-19', 7917, 78836, 5144, NULL, '1.0000', '5.0000', '5.0000', '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 (83130, '2022-05-19', 7857, 78837, 5144, NULL, '1.0000', '15.1300', '15.1300', '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 (83131, '2022-05-19', 9834, 78838, 5144, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83132, '2022-05-19', 1432, 78839, 5144, 55690, '1.0000', '12.1630', '12.1630', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83133, '2022-05-19', 9740, 78840, 5144, 47076, '3.0000', '0.6600', '0.6600', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83134, '2022-05-19', 2916, 78841, 5144, NULL, '1.0000', '-13.0168', '-13.0168', '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 (83135, '2022-05-19', 7802, 78842, 5144, NULL, '3.0000', '1.1497', '1.1497', '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 (83136, '2022-05-19', 1880, 78843, 5144, 42565, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83137, '2022-05-19', 7756, 78844, 5144, NULL, '1.0000', '2.5000', '2.5000', '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 (83138, '2022-05-19', 9732, 78845, 5144, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83139, '2022-05-19', 9803, 78846, 5144, 51656, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83140, '2022-05-19', 7713, 78847, 5144, 55675, '7.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83141, '2022-05-19', 2699, 78848, 5144, NULL, '1.0000', '3.6019', '3.6019', '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 (83142, '2022-05-19', 1912, 78849, 5144, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83143, '2022-05-19', 2169, 78850, 5144, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '89.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83144, '2022-05-19', 1863, 78851, 5144, 54933, '1.0000', '1.4478', '1.4478', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83145, '2022-05-19', 9744, 78852, 5144, 52159, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83146, '2022-05-19', 1711, 78853, 5144, 53679, '1.0000', '9.3308', '9.3308', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83147, '2022-05-19', 2108, 78854, 5144, NULL, '1.0000', '8.6167', '8.6167', '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 (83148, '2022-05-19', 1519, 78855, 5144, 51485, '1.0000', '3.3999', '3.3999', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83149, '2022-05-19', 1501, 78856, 5144, NULL, '1.0000', '1.6146', '1.6146', '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 (83150, '2022-05-19', 1841, 78857, 5144, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83151, '2022-05-19', 1840, 78858, 5144, 55654, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '21.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83152, '2022-05-19', 1743, 78859, 5145, NULL, '1.0000', '4.6550', '4.6550', '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 (83153, '2022-05-19', 9508, 78860, 5145, 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 (83154, '2022-05-19', 1590, 78861, 5145, 54532, '3.0000', '2.1402', '2.1402', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83155, '2022-05-19', 1532, 78862, 5145, 52201, '3.0000', '1.4143', '1.4143', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83156, '2022-05-19', 9740, 78863, 5145, 47076, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83157, '2022-05-19', 1688, 78864, 5145, 54178, '1.0000', '19.5133', '19.5133', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83158, '2022-05-19', 2285, 78865, 5145, NULL, '1.0000', '26.8638', '26.8638', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83159, '2022-05-19', 7756, 78866, 5145, NULL, '1.0000', '2.5000', '2.5000', '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 (83160, '2022-05-19', 9543, 78867, 5145, 40122, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83161, '2022-05-19', 9875, 78868, 5145, 53432, '1.0000', '13.0000', '13.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83162, '2022-05-19', 2315, 78869, 5145, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83163, '2022-05-19', 9695, 78870, 5145, 55410, '1.0000', '5.1311', '5.1311', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83164, '2022-05-19', 8773, 78871, 5145, NULL, '1.0000', '3.8300', '3.8300', '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 (83165, '2022-05-19', 7672, 78872, 5145, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '60.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83166, '2022-05-19', 2169, 78873, 5145, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '87.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83167, '2022-05-19', 7368, 78874, 5145, 51670, '1.0000', '14.7500', '14.7500', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83168, '2022-05-19', 8775, 78875, 5145, 43988, '1.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83169, '2022-05-19', 2821, 78876, 5146, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83170, '2022-05-19', 9794, 78877, 5146, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83171, '2022-05-19', 1787, 78878, 5147, 4905, '-11.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 (83172, '2022-05-19', 1787, 78878, 5147, NULL, '12.0000', '0.8100', '0.8100', '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 (83173, '2022-05-19', 1432, 78879, 5147, NULL, '1.0000', '8.1574', '8.1574', '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 (83174, '2022-05-19', 2169, 78880, 5147, 10737, '-131.0000', '3.8397', '3.8397', '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 (83175, '2022-05-19', 2169, 78880, 5147, NULL, '132.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-132.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83176, '2022-05-19', 1812, 78881, 5147, 8224, '-91.0000', '7.8900', '7.8900', '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 (83177, '2022-05-19', 1812, 78881, 5147, NULL, '92.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83178, '2022-05-19', 2699, 78882, 5147, 12529, '-35.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 (83179, '2022-05-19', 2699, 78882, 5147, NULL, '36.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-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 (83180, '2022-05-19', 1314, 78883, 5147, 2710, '-6.0000', '1.2000', '1.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 (83181, '2022-05-19', 1314, 78883, 5147, NULL, '7.0000', '1.2000', '1.2000', '3.0000', '3.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 (83182, '2022-05-19', 1935, 78884, 5147, 5586, '-96.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 (83183, '2022-05-19', 1935, 78884, 5147, NULL, '98.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83184, '2022-05-19', 2232, 78885, 5147, 2776, '-6.0000', '29.0000', '29.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83185, '2022-05-19', 2232, 78885, 5147, NULL, '7.0000', '29.0000', '29.0000', '42.0000', '42.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 (83186, '2022-05-19', 8079, 78886, 5147, NULL, '1.0000', '14.3600', '14.3600', '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 (83187, '2022-05-19', 2289, 78887, 5147, 2949, '-161.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 (83188, '2022-05-19', 2289, 78887, 5147, NULL, '163.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-163.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83189, '2022-05-19', 1518, 78888, 5147, 6524, '-11.0000', '6.9000', '6.9000', '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 (83190, '2022-05-19', 1518, 78888, 5147, NULL, '12.0000', '6.9000', '6.9000', '10.0000', '10.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 (83191, '2022-05-19', 1712, 78889, 5147, 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 (83192, '2022-05-19', 1578, 78890, 5147, 7597, '-8.0000', '1.9700', '1.9700', '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 (83193, '2022-05-19', 1578, 78890, 5147, NULL, '10.0000', '1.9700', '1.9700', '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 (83194, '2022-05-19', 7944, 78891, 5147, NULL, '1.0000', '2.0100', '2.0100', '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 (83195, '2022-05-19', 1425, 78892, 5147, NULL, '1.0000', '6.4405', '6.4405', '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 (83196, '2022-05-19', 9827, 78893, 5147, NULL, '1.0000', '13.5000', '13.5000', '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 (83197, '2022-05-19', 2315, 78894, 5147, 2735, '-362.0000', '0.3300', '0.3300', '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 (83198, '2022-05-19', 2315, 78894, 5147, NULL, '363.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-363.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83199, '2022-05-19', 7411, 78895, 5147, NULL, '1.0000', '1.3500', '1.3500', '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 (83200, '2022-05-19', 2068, 78896, 5147, 5568, '-25.0000', '13.1000', '13.1000', '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 (83201, '2022-05-19', 2068, 78896, 5147, NULL, '26.0000', '13.1000', '13.1000', '16.0000', '16.0000', '-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 (83202, '2022-05-19', 2317, 78897, 5147, 3473, '-14.0000', '15.0000', '15.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 (83203, '2022-05-19', 2317, 78897, 5147, NULL, '15.0000', '15.0000', '15.0000', '18.0000', '18.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 (83204, '2022-05-19', 2285, 78898, 5147, 2945, '-42.0000', '35.8000', '35.8000', '65.5000', '65.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 (83205, '2022-05-19', 2285, 78898, 5147, NULL, '43.0000', '35.8000', '35.8000', '65.5000', '65.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 (83206, '2022-05-19', 2242, 78899, 5147, 3059, '-23.0000', '0.4800', '0.4800', '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 (83207, '2022-05-19', 2242, 78899, 5147, NULL, '26.0000', '0.4800', '0.4800', '1.5000', '1.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 (83208, '2022-05-19', 9463, 78900, 5148, NULL, '1.0000', '7.5000', '7.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 (83209, '2022-05-19', 9716, 78901, 5148, NULL, '1.0000', '4.4000', '4.4000', '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 (83210, '2022-05-19', 9695, 78902, 5148, NULL, '4.0000', '4.5000', '4.5000', '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 (83211, '2022-05-19', 7652, 78903, 5148, NULL, '10.0000', '0.9800', '0.9800', '1.6000', '1.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 (83212, '2022-05-19', 7753, 78904, 5148, NULL, '1.0000', '3.4000', '3.4000', '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 (83213, '2022-05-19', 2454, 78905, 5148, 5642, '-2.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 (83214, '2022-05-19', 2454, 78905, 5148, NULL, '3.0000', '9.0000', '9.0000', '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 (83215, '2022-05-19', 8813, 78906, 5148, NULL, '1.0000', '17.6000', '17.6000', '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 (83216, '2022-05-19', 8596, 78907, 5148, 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 (83217, '2022-05-19', 8308, 78908, 5148, NULL, '1.0000', '2.0800', '2.0800', '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 (83218, '2022-05-19', 9891, 78909, 5148, NULL, '1.0000', '17.4000', '17.4000', '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 (83219, '2022-05-19', 1935, 78910, 5148, 5586, '-98.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 (83220, '2022-05-19', 1935, 78910, 5148, NULL, '99.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83221, '2022-05-19', 7921, 78911, 5148, NULL, '1.0000', '0.3000', '0.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 (83222, '2022-05-19', 1845, 78912, 5148, 6222, '-23.0000', '19.5000', '19.5000', '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 (83223, '2022-05-19', 1845, 78912, 5148, NULL, '25.0000', '19.5000', '19.5000', '30.5000', '30.5000', '-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 (83224, '2022-05-19', 7411, 78913, 5148, NULL, '2.0000', '1.3500', '1.3500', '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 (83225, '2022-05-19', 9164, 78914, 5148, NULL, '1.0000', '6.8700', '6.8700', '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 (83226, '2022-05-19', 7782, 78915, 5148, 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 (83227, '2022-05-19', 2726, 78916, 5148, NULL, '1.0000', '4.0000', '4.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 (83228, '2022-05-19', 9382, 78917, 5148, NULL, '1.0000', '5.2000', '5.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 (83229, '2022-05-19', 7881, 78918, 5148, NULL, '3.0000', '2.3000', '2.3000', '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 (83230, '2022-05-19', 7967, 78919, 5148, NULL, '1.0000', '7.0000', '7.0000', '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 (83231, '2022-05-19', 7787, 78920, 5148, NULL, '1.0000', '10.9000', '10.9000', '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 (83232, '2022-05-19', 9797, 78921, 5148, 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 (83233, '2022-05-19', 7412, 78922, 5148, NULL, '2.0000', '1.5200', '1.5200', '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 (83234, '2022-05-19', 1837, 78923, 5148, 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 (83235, '2022-05-19', 8359, 78924, 5148, 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 (83236, '2022-05-19', 8428, 78925, 5148, NULL, '2.0000', '19.8000', '19.8000', '26.5000', '26.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 (83237, '2022-05-19', 2287, 78926, 5149, NULL, '3.0000', '3.1699', '3.1699', '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 (83238, '2022-05-19', 8359, 78927, 5149, 54275, '1.0000', '801.6266', '801.6266', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83239, '2022-05-19', 2315, 78928, 5149, 53909, '2.0000', '0.6636', '0.6636', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83240, '2022-05-19', 8061, 78929, 5149, 55071, '1.0000', '39.6000', '39.6000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83241, '2022-05-19', 7775, 78930, 5149, NULL, '1.0000', '-2.9800', '-2.9800', '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 (83242, '2022-05-19', 7354, 78931, 5149, NULL, '1.0000', '-2.5000', '-2.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 (83243, '2022-05-19', 9445, 78932, 5149, 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 (83244, '2022-05-19', 7383, 78933, 5149, 45820, '1.0000', '7.8552', '7.8552', '78.0000', '78.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83245, '2022-05-19', 9862, 78934, 5149, 52457, '1.0000', '16.5000', '16.5000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83246, '2022-05-19', 2104, 78935, 5149, NULL, '4.0000', '0.2000', '0.2000', '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 (83247, '2022-05-19', 8900, 78936, 5149, 48847, '2.0000', '0.4000', '0.4000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83248, '2022-05-19', 9691, 78937, 5149, 51257, '1.0000', '57.5200', '57.5200', '76.0000', '76.0000', '1.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83249, '2022-05-19', 8044, 78938, 5149, NULL, '1.0000', '1.5000', '1.5000', '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 (83250, '2022-05-19', 7429, 78939, 5149, 46650, '1.0000', '3.8156', '3.8156', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83251, '2022-05-19', 7781, 78940, 5149, NULL, '3.0000', '5.2802', '5.2802', '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 (83252, '2022-05-19', 9092, 78941, 5149, 52527, '6.0000', '0.3175', '0.3175', '0.5000', '0.5000', '118.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83253, '2022-05-19', 8288, 78942, 5149, NULL, '10.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (83254, '2022-05-19', 8918, 78943, 5149, 45579, '1.0000', '4.7316', '4.7316', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83255, '2022-05-19', 9736, 78944, 5149, 51795, '1.0000', '3.9253', '3.9253', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83256, '2022-05-19', 9804, 78945, 5149, 55112, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83257, '2022-05-19', 9445, 78946, 5149, 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 (83258, '2022-05-19', 7509, 78947, 5149, 55977, '1.0000', '13.1149', '13.1149', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83259, '2022-05-19', 7633, 78948, 5149, 56062, '1.0000', '2.8700', '2.8700', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83260, '2022-05-19', 7672, 78949, 5149, NULL, '1.0000', '3.8200', '3.8200', '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 (83261, '2022-05-19', 1837, 78950, 5149, 45863, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83262, '2022-05-19', 2102, 78951, 5149, 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 (83263, '2022-05-19', 7514, 78952, 5149, NULL, '1.0000', '3234.0124', '3234.0124', '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 (83264, '2022-05-19', 7641, 78953, 5149, 55967, '1.0000', '6.8687', '6.8687', '9.5000', '9.5000', '26.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83265, '2022-05-19', 9809, 78954, 5149, 54719, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83266, '2022-05-19', 2102, 78955, 5149, 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 (83267, '2022-05-19', 7473, 78956, 5149, NULL, '8.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '-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 (83268, '2022-05-19', 7703, 78957, 5149, NULL, '2.0000', '102.7757', '102.7757', '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 (83269, '2022-05-19', 1947, 78958, 5149, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83270, '2022-05-19', 7444, 78959, 5149, NULL, '1.0000', '-3.1989', '-3.1989', '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 (83271, '2022-05-19', 8155, 78960, 5149, NULL, '2.0000', '65.0000', '65.0000', '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 (83272, '2022-05-19', 8878, 78961, 5149, 54503, '2.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83273, '2022-05-19', 1501, 78962, 5149, 56037, '1.0000', '2.4227', '2.4227', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83274, '2022-05-19', 7965, 78963, 5149, NULL, '14.0000', '5.6100', '5.6100', '9.1000', '9.1000', '-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 (83275, '2022-05-19', 7928, 78964, 5149, NULL, '1.0000', '11.5906', '11.5906', '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 (83276, '2022-05-19', 7886, 78965, 5149, 54287, '2.0000', '5.1718', '5.1718', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83277, '2022-05-19', 9568, 78966, 5149, 54141, '1.0000', '67.9000', '67.9000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83278, '2022-05-19', 7917, 78967, 5149, 52750, '3.0000', '2.1447', '2.1447', '0.7000', '0.7000', '107.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83279, '2022-05-19', 2434, 78968, 5149, NULL, '1.0000', '5.2000', '5.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 (83280, '2022-05-19', 8851, 78969, 5149, NULL, '1.0000', '16.6600', '16.6600', '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 (83281, '2022-05-19', 7703, 78970, 5149, NULL, '2.0000', '102.7757', '102.7757', '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 (83282, '2022-05-19', 7444, 78971, 5149, NULL, '1.0000', '-3.1989', '-3.1989', '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 (83283, '2022-05-19', 7322, 78972, 5149, 46219, '1.0000', '4.6833', '4.6833', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83284, '2022-05-19', 2602, 78973, 5149, 54442, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83285, '2022-05-19', 8849, 78974, 5149, NULL, '2.0000', '1.0700', '1.0700', '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 (83286, '2022-05-19', 7704, 78975, 5149, NULL, '1.0000', '-1.5625', '-1.5625', '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 (83287, '2022-05-19', 7862, 78976, 5149, NULL, '1.0000', '29.0500', '29.0500', '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 (83288, '2022-05-19', 7963, 78977, 5149, 55985, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83289, '2022-05-19', 7852, 78978, 5149, NULL, '1.0000', '-53.7735', '-53.7735', '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 (83290, '2022-05-19', 9092, 78979, 5149, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '122.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83291, '2022-05-19', 2777, 78980, 5149, NULL, '1.0000', '2.5000', '2.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 (83292, '2022-05-19', 8878, 78981, 5149, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83293, '2022-05-19', 7482, 78982, 5149, 56021, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '27.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83294, '2022-05-19', 7832, 78983, 5149, 54475, '1.0000', '12.9545', '12.9545', '17.5000', '17.5000', '6.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83295, '2022-05-19', 9873, 78984, 5150, 53237, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83296, '2022-05-19', 2496, 78985, 5150, NULL, '1.0000', '0.5900', '0.5900', '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 (83297, '2022-05-19', 9729, 78986, 5150, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83298, '2022-05-19', 2950, 78987, 5150, 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 (83299, '2022-05-19', 2315, 78988, 5150, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83300, '2022-05-19', 7881, 78989, 5150, NULL, '1.0000', '32.7700', '32.7700', '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 (83301, '2022-05-19', 2283, 78990, 5150, 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 (83302, '2022-05-19', 1841, 78991, 5150, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83303, '2022-05-19', 1867, 78992, 5150, 55547, '1.0000', '6.2086', '6.2086', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83304, '2022-05-19', 9872, 78993, 5150, NULL, '1.0000', '14.6300', '14.6300', '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 (83305, '2022-05-19', 9794, 78994, 5150, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83306, '2022-05-19', 7317, 78995, 5150, NULL, '1.0000', '19.5500', '19.5500', '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 (83307, '2022-05-19', 2950, 78996, 5150, 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 (83308, '2022-05-19', 9845, 78997, 5150, NULL, '1.0000', '5.7000', '5.7000', '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 (83309, '2022-05-19', 2821, 78998, 5150, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83310, '2022-05-19', 7514, 78999, 5150, NULL, '1.0000', '2.2500', '2.2500', '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 (83311, '2022-05-19', 1580, 79000, 5150, 54914, '3.0000', '1.4639', '1.4639', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83312, '2022-05-19', 1532, 79001, 5150, 52201, '1.0000', '1.4143', '1.4143', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83313, '2022-05-19', 2169, 79002, 5150, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83314, '2022-05-19', 8517, 79003, 5150, NULL, '1.0000', '28.0200', '28.0200', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83315, '2022-05-19', 2643, 79004, 5150, 55414, '2.0000', '0.9588', '0.9588', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83316, '2022-05-19', 9740, 79005, 5150, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '149.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83317, '2022-05-19', 2821, 79006, 5150, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83318, '2022-05-19', 8980, 79007, 5150, NULL, '1.0000', '9.5000', '9.5000', '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 (83319, '2022-05-19', 7641, 79008, 5150, NULL, '1.0000', '1.9000', '1.9000', '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 (83320, '2022-05-19', 2315, 79009, 5150, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83321, '2022-05-19', 1871, 79010, 5150, NULL, '2.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83322, '2022-05-19', 7411, 79011, 5150, NULL, '2.0000', '1.3013', '1.3013', '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 (83323, '2022-05-19', 1618, 79012, 5150, 55686, '1.0000', '-14.7446', '-14.7446', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83324, '2022-05-19', 2496, 79013, 5150, NULL, '1.0000', '0.5900', '0.5900', '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 (83325, '2022-05-19', 2916, 79014, 5150, 55902, '1.0000', '538.9192', '538.9192', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83326, '2022-05-19', 2250, 79015, 5150, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83327, '2022-05-19', 1855, 79016, 5150, NULL, '2.0000', '1.5003', '1.5003', '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 (83328, '2022-05-19', 2293, 79017, 5150, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83329, '2022-05-19', 2236, 79018, 5150, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83330, '2022-05-19', 3023, 79019, 5150, 50234, '1.0000', '5.5275', '5.5275', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83331, '2022-05-19', 8308, 79020, 5150, NULL, '1.0000', '11.0000', '11.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 (83332, '2022-05-19', 9866, 79021, 5150, 54882, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83333, '2022-05-19', 9775, 79022, 5150, NULL, '1.0000', '15.0250', '15.0250', '13.7300', '13.7300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83334, '2022-05-19', 9695, 79023, 5150, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83335, '2022-05-19', 2821, 79024, 5150, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83336, '2022-05-19', 9740, 79025, 5150, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '149.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83337, '2022-05-19', 7472, 79026, 5150, NULL, '1.0000', '-16.5602', '-16.5602', '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 (83338, '2022-05-19', 9904, 79027, 5150, 54842, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83339, '2022-05-19', 7411, 79028, 5150, NULL, '1.0000', '1.3013', '1.3013', '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 (83340, '2022-05-19', 9791, 79029, 5150, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83341, '2022-05-19', 1501, 79030, 5150, NULL, '1.0000', '1.2071', '1.2071', '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 (83342, '2022-05-19', 8444, 79031, 5150, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83343, '2022-05-19', 7411, 79032, 5150, NULL, '2.0000', '1.3013', '1.3013', '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 (83344, '2022-05-19', 1839, 79033, 5150, 55908, '1.0000', '17468.6132', '17468.6132', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83345, '2022-05-19', 7411, 79034, 5150, NULL, '1.0000', '1.3013', '1.3013', '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 (83346, '2022-05-19', 1519, 79035, 5150, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83347, '2022-05-19', 2169, 79036, 5150, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83348, '2022-05-19', 9845, 79037, 5150, NULL, '1.0000', '5.7000', '5.7000', '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 (83349, '2022-05-19', 2546, 79038, 5150, NULL, '1.0000', '25.2500', '25.2500', '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 (83350, '2022-05-19', 2088, 79039, 5150, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83351, '2022-05-19', 1871, 79040, 5150, NULL, '5.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (83352, '2022-05-19', 7743, 79041, 5150, NULL, '1.0000', '7.3900', '7.3900', '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 (83353, '2022-05-19', 9715, 79042, 5150, 54881, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83354, '2022-05-19', 9740, 79043, 5150, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '149.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83355, '2022-05-19', 8746, 79044, 5150, 55412, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83356, '2022-05-19', 7709, 79045, 5151, NULL, '1.0000', '202.4582', '202.4582', '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 (83357, '2022-05-19', 9788, 79046, 5151, 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 (83358, '2022-05-19', 7743, 79047, 5151, NULL, '2.0000', '660077.5558', '660077.5558', '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 (83359, '2022-05-19', 9821, 79048, 5151, 54274, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83360, '2022-05-19', 7674, 79049, 5151, 55974, '1.0000', '178.2720', '178.2720', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83361, '2022-05-19', 9092, 79050, 5151, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '115.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83362, '2022-05-19', 7641, 79051, 5151, 55967, '1.0000', '6.8687', '6.8687', '9.5000', '9.5000', '25.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83363, '2022-05-19', 8596, 79052, 5151, NULL, '1.0000', '18.5278', '18.5278', '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 (83364, '2022-05-19', 2154, 79053, 5151, 43435, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83365, '2022-05-19', 9763, 79054, 5152, 47153, '3.0000', '2.1000', '2.1000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83366, '2022-05-19', 9868, 79055, 5152, 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 (83367, '2022-05-19', 9291, 79056, 5152, 55493, '1.0000', '15.5542', '15.5542', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83368, '2022-05-19', 1840, 79057, 5152, 54425, '3.0000', '0.2400', '0.2400', '0.5000', '0.5000', '12.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83369, '2022-05-19', 1841, 79058, 5152, 54426, '2.0000', '0.0701', '0.0701', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83370, '2022-05-19', 9814, 79059, 5152, 55830, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83371, '2022-05-19', 2315, 79060, 5152, 3069, '2.0000', '0.3300', '0.3300', '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 (83372, '2022-05-19', 2169, 79061, 5152, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83373, '2022-05-19', 1602, 79062, 5152, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83374, '2022-05-19', 2236, 79063, 5152, 54415, '1.0000', '5.8362', '5.8362', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83375, '2022-05-19', 1787, 79064, 5152, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '95.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83376, '2022-05-19', 9732, 79065, 5152, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83377, '2022-05-19', 7612, 79066, 5152, NULL, '1.0000', '46.0000', '46.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 (83378, '2022-05-19', 8773, 79067, 5152, NULL, '1.0000', '1.3601', '1.3601', '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 (83379, '2022-05-19', 2068, 79068, 5152, 55506, '1.0000', '11.7097', '11.7097', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83380, '2022-05-19', 1925, 79069, 5152, 53256, '3.0000', '1.2449', '1.2449', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83381, '2022-05-19', 1925, 79070, 5152, 53256, '2.0000', '1.2449', '1.2449', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83382, '2022-05-19', 2270, 79071, 5152, 54628, '1.0000', '3.9362', '3.9362', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83383, '2022-05-19', 2105, 79072, 5152, 54380, '1.0000', '1.9639', '1.9639', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83384, '2022-05-19', 1867, 79073, 5152, NULL, '1.0000', '9.4614', '9.4614', '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 (83385, '2022-05-19', 1550, 79074, 5152, 54600, '1.0000', '103.4723', '103.4723', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83386, '2022-05-19', 1674, 79075, 5152, 55764, '1.0000', '9.2774', '9.2774', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83387, '2022-05-19', 9729, 79076, 5152, 46048, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83388, '2022-05-19', 7743, 79077, 5152, NULL, '1.0000', '1.3100', '1.3100', '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 (83389, '2022-05-19', 9729, 79078, 5152, 46048, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83390, '2022-05-19', 7376, 79079, 5152, NULL, '1.0000', '141.7100', '141.7100', '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 (83391, '2022-05-19', 1812, 79080, 5152, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83392, '2022-05-19', 8207, 79081, 5152, NULL, '3.0000', '0.0000', '0.0000', '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 (83393, '2022-05-19', 2315, 79082, 5152, 3069, '2.0000', '0.3300', '0.3300', '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 (83394, '2022-05-19', 9089, 79083, 5152, 55435, '2.0000', '4.6978', '4.6978', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83395, '2022-05-19', 9240, 79084, 5152, NULL, '2.0000', '25.1200', '25.1200', '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 (83396, '2022-05-19', 2699, 79085, 5152, 55438, '1.0000', '3.0981', '3.0981', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83397, '2022-05-19', 8040, 79086, 5152, NULL, '1.0000', '14.9000', '14.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 (83398, '2022-05-19', 9794, 79087, 5152, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83399, '2022-05-19', 1863, 79088, 5152, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83400, '2022-05-19', 2135, 79089, 5152, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83401, '2022-05-19', 1888, 79090, 5152, 55481, '1.0000', '16.4995', '16.4995', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83402, '2022-05-19', 1591, 79091, 5152, 13634, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83403, '2022-05-19', 1713, 79092, 5152, 9480, '1.0000', '15.1700', '15.1700', '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 (83404, '2022-05-19', 1521, 79093, 5152, 55883, '1.0000', '2.7500', '2.7500', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83405, '2022-05-19', 1304, 79094, 5152, 2475, '1.0000', '1.4500', '1.4500', '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 (83406, '2022-05-19', 1670, 79095, 5152, 54623, '1.0000', '48.0854', '48.0854', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83407, '2022-05-19', 2245, 79096, 5152, 55881, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83408, '2022-05-19', 7952, 79097, 5152, NULL, '1.0000', '1.4000', '1.4000', '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 (83409, '2022-05-19', 1818, 79098, 5153, 14664, '-3.0000', '14.8000', '14.8000', '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 (83410, '2022-05-19', 1818, 79098, 5153, NULL, '4.0000', '14.8000', '14.8000', '21.0000', '21.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 (83411, '2022-05-20', 2415, 79099, 5154, 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 (83412, '2022-05-20', 2320, 79100, 5154, 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 (83413, '2022-05-20', 2254, 79101, 5154, 55888, '1.0000', '19.7520', '19.7520', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83414, '2022-05-20', 1602, 79102, 5154, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83415, '2022-05-20', 1863, 79103, 5154, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83416, '2022-05-20', 1584, 79104, 5154, 55453, '1.0000', '6.2183', '6.2183', '9.5000', '9.5000', '10.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83417, '2022-05-20', 1620, 79105, 5154, 55487, '4.0000', '2.2489', '2.2489', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83418, '2022-05-20', 2381, 79106, 5154, 55775, '1.0000', '9.2434', '9.2434', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83419, '2022-05-20', 9845, 79107, 5154, 54675, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83420, '2022-05-20', 1314, 79108, 5154, 21584, '1.0000', '1.2000', '1.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 (83421, '2022-05-20', 1851, 79109, 5154, 55476, '1.0000', '12.8247', '12.8247', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83422, '2022-05-20', 1578, 79110, 5154, 49158, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83423, '2022-05-20', 1935, 79111, 5154, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83424, '2022-05-20', 1863, 79112, 5154, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83425, '2022-05-20', 2416, 79113, 5154, 55454, '1.0000', '1.2441', '1.2441', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83426, '2022-05-20', 2169, 79114, 5154, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83427, '2022-05-20', 9785, 79115, 5154, 55765, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83428, '2022-05-20', 1306, 79116, 5154, 54586, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83429, '2022-05-20', 2237, 79117, 5154, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83430, '2022-05-20', 2446, 79118, 5155, 5831, '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 (83431, '2022-05-20', 2032, 79119, 5155, 49494, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83432, '2022-05-20', 1744, 79120, 5155, 53701, '1.0000', '31.9228', '31.9228', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83433, '2022-05-20', 9399, 79121, 5156, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83434, '2022-05-20', 2379, 79122, 5156, NULL, '1.0000', '-3.0170', '-3.0170', '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 (83435, '2022-05-20', 1787, 79123, 5156, NULL, '1.0000', '0.5000', '0.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 (83436, '2022-05-20', 1529, 79124, 5156, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83437, '2022-05-20', 9496, 79125, 5156, NULL, '1.0000', '-1.0000', '-1.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 (83438, '2022-05-20', 2351, 79126, 5156, 55959, '1.0000', '18.4875', '18.4875', '24.5000', '24.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83439, '2022-05-20', 9863, 79127, 5156, 55580, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83440, '2022-05-20', 2237, 79128, 5156, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83441, '2022-05-20', 1519, 79129, 5156, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83442, '2022-05-20', 9881, 79130, 5156, 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 (83443, '2022-05-20', 7317, 79131, 5156, NULL, '1.0000', '19.5500', '19.5500', '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 (83444, '2022-05-20', 2169, 79132, 5156, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '84.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83445, '2022-05-20', 2293, 79133, 5156, 55919, '1.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83446, '2022-05-20', 1602, 79134, 5156, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '34.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83447, '2022-05-20', 8184, 79135, 5156, 55684, '10.0000', '3.0310', '3.0310', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83448, '2022-05-20', 1529, 79136, 5156, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83449, '2022-05-20', 2643, 79137, 5157, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83450, '2022-05-20', 1432, 79138, 5157, 55690, '1.0000', '12.1630', '12.1630', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83451, '2022-05-20', 9839, 79139, 5157, NULL, '1.0000', '15.0200', '15.0200', '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 (83452, '2022-05-20', 1863, 79140, 5157, 55917, '3.0000', '1.4573', '1.4573', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83453, '2022-05-20', 7756, 79141, 5157, NULL, '1.0000', '2.5000', '2.5000', '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 (83454, '2022-05-20', 2299, 79142, 5157, 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 (83455, '2022-05-20', 7756, 79143, 5157, NULL, '1.0000', '2.5000', '2.5000', '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 (83456, '2022-05-20', 2643, 79144, 5157, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83457, '2022-05-20', 1602, 79145, 5157, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '33.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83458, '2022-05-20', 8810, 79146, 5158, NULL, '1.0000', '1.6000', '1.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 (83459, '2022-05-20', 7588, 79147, 5158, NULL, '1.0000', '6.9000', '6.9000', '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 (83460, '2022-05-20', 8277, 79148, 5158, 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 (83461, '2022-05-20', 7456, 79149, 5158, NULL, '1.0000', '34.7000', '34.7000', '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 (83462, '2022-05-20', 7756, 79150, 5158, NULL, '1.0000', '2.5000', '2.5000', '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 (83463, '2022-05-20', 7558, 79151, 5158, NULL, '2.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83464, '2022-05-20', 9463, 79152, 5158, NULL, '1.0000', '7.5000', '7.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 (83465, '2022-05-20', 7961, 79153, 5158, NULL, '1.0000', '10.5600', '10.5600', '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 (83466, '2022-05-20', 9316, 79154, 5158, NULL, '2.0000', '8.7300', '8.7300', '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 (83467, '2022-05-20', 7881, 79155, 5158, NULL, '1.0000', '2.3000', '2.3000', '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 (83468, '2022-05-20', 9324, 79156, 5158, 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 (83469, '2022-05-20', 3040, 79157, 5158, NULL, '1.0000', '13.5000', '13.5000', '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 (83470, '2022-05-20', 9797, 79158, 5158, 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 (83471, '2022-05-20', 7321, 79159, 5158, NULL, '1.0000', '7.9500', '7.9500', '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 (83472, '2022-05-20', 1837, 79160, 5158, 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 (83473, '2022-05-20', 7622, 79161, 5158, NULL, '10.0000', '17.8100', '17.8100', '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 (83474, '2022-05-20', 9026, 79162, 5158, NULL, '1.0000', '15.0000', '15.0000', '19.8000', '19.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 (83475, '2022-05-20', 7708, 79163, 5158, 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 (83476, '2022-05-20', 7981, 79164, 5158, NULL, '10.0000', '6.0000', '6.0000', '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 (83477, '2022-05-20', 9721, 79165, 5158, NULL, '1.0000', '11.7000', '11.7000', '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 (83478, '2022-05-20', 7753, 79166, 5158, NULL, '1.0000', '3.4000', '3.4000', '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 (83479, '2022-05-20', 7892, 79167, 5158, NULL, '1.0000', '4.2000', '4.2000', '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 (83480, '2022-05-20', 9839, 79168, 5158, NULL, '1.0000', '15.0200', '15.0200', '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 (83481, '2022-05-20', 8316, 79169, 5158, 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 (83482, '2022-05-20', 7871, 79170, 5158, NULL, '14.0000', '6.0000', '6.0000', '9.5000', '9.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 (83483, '2022-05-20', 7354, 79171, 5158, NULL, '1.0000', '0.3700', '0.3700', '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 (83484, '2022-05-20', 7756, 79172, 5158, NULL, '1.0000', '2.5000', '2.5000', '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 (83485, '2022-05-20', 7457, 79173, 5158, 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 (83486, '2022-05-20', 9620, 79174, 5158, 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 (83487, '2022-05-20', 9092, 79175, 5158, NULL, '4.0000', '5.2900', '5.2900', '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 (83488, '2022-05-20', 7744, 79176, 5158, 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 (83489, '2022-05-20', 7780, 79177, 5159, NULL, '1.0000', '-24.3351', '-24.3351', '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 (83490, '2022-05-20', 1501, 79178, 5159, 56037, '1.0000', '2.4227', '2.4227', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83491, '2022-05-20', 2295, 79179, 5159, NULL, '3.0000', '0.7000', '0.7000', '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 (83492, '2022-05-20', 1837, 79180, 5159, 45863, '2.0000', '0.3813', '0.3813', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83493, '2022-05-20', 7753, 79181, 5159, 56046, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83494, '2022-05-20', 7532, 79182, 5159, NULL, '1.0000', '-85.0632', '-85.0632', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83495, '2022-05-20', 9271, 79183, 5159, 46698, '1.0000', '0.9900', '0.9900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83496, '2022-05-20', 8308, 79184, 5159, NULL, '1.0000', '40.0646', '40.0646', '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 (83497, '2022-05-20', 7385, 79185, 5159, 55971, '5.0000', '9.8350', '9.8350', '4.0000', '4.0000', '71.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83498, '2022-05-20', 9274, 79186, 5159, NULL, '2.0000', '4.9869', '4.9869', '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 (83499, '2022-05-20', 7641, 79187, 5159, 55967, '1.0000', '6.8687', '6.8687', '9.5000', '9.5000', '24.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83500, '2022-05-20', 7560, 79188, 5159, NULL, '1.0000', '1121166.1694', '1121166.1694', '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 (83501, '2022-05-20', 1935, 79189, 5159, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '132.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83502, '2022-05-20', 7832, 79190, 5159, 54475, '1.0000', '12.9545', '12.9545', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83503, '2022-05-20', 7781, 79191, 5159, NULL, '3.0000', '5.2802', '5.2802', '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 (83504, '2022-05-20', 8360, 79192, 5159, 54094, '1.0000', '3.2281', '3.2281', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83505, '2022-05-20', 7704, 79193, 5159, NULL, '1.0000', '-1.5625', '-1.5625', '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 (83506, '2022-05-20', 7335, 79194, 5159, NULL, '1.0000', '-5.6867', '-5.6867', '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 (83507, '2022-05-20', 7824, 79195, 5159, NULL, '1.0000', '44153.4954', '44153.4954', '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 (83508, '2022-05-20', 7779, 79196, 5159, NULL, '1.0000', '9.5007', '9.5007', '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 (83509, '2022-05-20', 7927, 79197, 5159, 53787, '1.0000', '12.2484', '12.2484', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83510, '2022-05-20', 2101, 79198, 5159, 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 (83511, '2022-05-20', 7632, 79199, 5159, 54290, '1.0000', '12.0422', '12.0422', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83512, '2022-05-20', 9865, 79200, 5159, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83513, '2022-05-20', 9893, 79201, 5159, 54306, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83514, '2022-05-20', 9865, 79202, 5159, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83515, '2022-05-20', 9729, 79203, 5159, 53908, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83516, '2022-05-20', 9272, 79204, 5159, NULL, '2.0000', '3.1000', '3.1000', '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 (83517, '2022-05-20', 7930, 79205, 5159, 50993, '1.0000', '1.5333', '1.5333', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83518, '2022-05-20', 7933, 79206, 5159, NULL, '1.0000', '0.3245', '0.3245', '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 (83519, '2022-05-20', 7514, 79207, 5159, NULL, '2.0000', '3234.0124', '3234.0124', '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 (83520, '2022-05-20', 7559, 79208, 5159, 55144, '2.0000', '16.0369', '16.0369', '14.5000', '14.5000', '11.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83521, '2022-05-20', 2315, 79209, 5159, 53909, '3.0000', '0.6636', '0.6636', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83522, '2022-05-20', 8308, 79210, 5159, NULL, '1.0000', '40.0646', '40.0646', '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 (83523, '2022-05-20', 2289, 79211, 5159, NULL, '2.0000', '2.5688', '2.5688', '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 (83524, '2022-05-20', 7963, 79212, 5159, 55985, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83525, '2022-05-20', 7558, 79213, 5159, NULL, '2.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83526, '2022-05-20', 9695, 79214, 5159, 56065, '1.0000', '5.6333', '5.6333', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83527, '2022-05-20', 7518, 79215, 5159, 55965, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '12.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83528, '2022-05-20', 9461, 79216, 5159, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83529, '2022-05-20', 1856, 79217, 5159, 54106, '1.0000', '-2.0848', '-2.0848', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83530, '2022-05-20', 7411, 79218, 5159, 52731, '2.0000', '1.3518', '1.3518', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83531, '2022-05-20', 7981, 79219, 5159, NULL, '3.0000', '3.3321', '3.3321', '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 (83532, '2022-05-20', 7514, 79220, 5159, NULL, '1.0000', '3234.0124', '3234.0124', '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 (83533, '2022-05-20', 7708, 79221, 5159, 55981, '1.0000', '8.1861', '8.1861', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83534, '2022-05-20', 8032, 79222, 5159, 50374, '1.0000', '6.2640', '6.2640', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83535, '2022-05-20', 2925, 79223, 5159, 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 (83536, '2022-05-20', 9448, 79224, 5159, 44049, '1.0000', '7.5200', '7.5200', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83537, '2022-05-20', 9204, 79225, 5159, 56045, '1.0000', '6.4196', '6.4196', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83538, '2022-05-20', 8032, 79226, 5159, 50374, '1.0000', '6.2640', '6.2640', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83539, '2022-05-20', 8362, 79227, 5159, NULL, '7.0000', '8.4750', '8.4750', '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 (83540, '2022-05-20', 7324, 79228, 5159, 56022, '10.0000', '6.3200', '6.3200', '8.5000', '8.5000', '20.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83541, '2022-05-20', 1590, 79229, 5160, 55929, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83542, '2022-05-20', 7917, 79230, 5160, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83543, '2022-05-20', 2379, 79231, 5160, NULL, '1.0000', '-3.0170', '-3.0170', '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 (83544, '2022-05-20', 7411, 79232, 5160, NULL, '1.0000', '1.3013', '1.3013', '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 (83545, '2022-05-20', 2916, 79233, 5160, NULL, '1.0000', '538.9192', '538.9192', '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 (83546, '2022-05-20', 9821, 79234, 5160, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83547, '2022-05-20', 2384, 79235, 5160, NULL, '4.0000', '0.1500', '0.1500', '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 (83548, '2022-05-20', 9747, 79236, 5160, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83549, '2022-05-20', 7933, 79237, 5160, NULL, '1.0000', '-0.1222', '-0.1222', '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 (83550, '2022-05-20', 3058, 79238, 5160, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83551, '2022-05-20', 2413, 79239, 5160, NULL, '1.0000', '1.0500', '1.0500', '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 (83552, '2022-05-20', 9906, 79240, 5160, 55159, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83553, '2022-05-20', 1947, 79241, 5160, 54175, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83554, '2022-05-20', 2293, 79242, 5160, 55919, '2.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83555, '2022-05-20', 1618, 79243, 5160, 55539, '1.0000', '-14.7446', '-14.7446', '19.0000', '19.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83556, '2022-05-20', 7938, 79244, 5160, NULL, '1.0000', '2.9000', '2.9000', '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 (83557, '2022-05-20', 2916, 79245, 5160, NULL, '1.0000', '538.9192', '538.9192', '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 (83558, '2022-05-20', 1501, 79246, 5160, NULL, '1.0000', '1.2071', '1.2071', '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 (83559, '2022-05-20', 8444, 79247, 5160, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83560, '2022-05-20', 2079, 79248, 5160, 55647, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83561, '2022-05-20', 2617, 79249, 5160, NULL, '1.0000', '5.1800', '5.1800', '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 (83562, '2022-05-20', 8207, 79250, 5160, NULL, '1.0000', '0.0000', '0.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 (83563, '2022-05-20', 1602, 79251, 5160, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '32.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83564, '2022-05-20', 1501, 79252, 5160, NULL, '1.0000', '1.2071', '1.2071', '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 (83565, '2022-05-20', 2543, 79253, 5160, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83566, '2022-05-20', 1307, 79254, 5160, NULL, '1.0000', '-11.7284', '-11.7284', '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 (83567, '2022-05-20', 9794, 79255, 5160, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83568, '2022-05-20', 1519, 79256, 5160, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83569, '2022-05-20', 7353, 79257, 5160, NULL, '3.0000', '0.1900', '0.1900', '0.6000', '0.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 (83570, '2022-05-20', 9740, 79258, 5160, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '146.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83571, '2022-05-20', 7411, 79259, 5160, NULL, '1.0000', '1.3013', '1.3013', '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 (83572, '2022-05-20', 1592, 79260, 5160, 55658, '1.0000', '39.3500', '39.3500', '52.0000', '52.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83573, '2022-05-20', 2379, 79261, 5160, NULL, '1.0000', '-3.0170', '-3.0170', '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 (83574, '2022-05-20', 9695, 79262, 5160, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83575, '2022-05-20', 1519, 79263, 5160, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83576, '2022-05-20', 1586, 79264, 5160, 42092, '1.0000', '57.4965', '57.4965', '69.0000', '69.0000', '0.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83577, '2022-05-20', 2250, 79265, 5160, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83578, '2022-05-20', 9873, 79266, 5160, 53237, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83579, '2022-05-20', 8184, 79267, 5160, 55684, '10.0000', '3.0310', '3.0310', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83580, '2022-05-20', 2352, 79268, 5160, NULL, '2.0000', '126.2588', '126.2588', '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 (83581, '2022-05-20', 2661, 79269, 5160, 33164, '1.0000', '9.0000', '9.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83582, '2022-05-20', 2661, 79269, 5160, NULL, '1.0000', '9.0000', '9.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 (83583, '2022-05-20', 1450, 79270, 5160, 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 (83584, '2022-05-20', 1529, 79271, 5160, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83585, '2022-05-20', 2916, 79272, 5160, NULL, '1.0000', '538.9192', '538.9192', '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 (83586, '2022-05-20', 7386, 79273, 5160, 55937, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83587, '2022-05-20', 2769, 79274, 5160, 54167, '4.0000', '1.8925', '1.8925', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83588, '2022-05-20', 2293, 79275, 5160, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83589, '2022-05-20', 1855, 79276, 5160, NULL, '2.0000', '1.5003', '1.5003', '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 (83590, '2022-05-20', 2295, 79277, 5160, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83591, '2022-05-20', 1521, 79278, 5160, NULL, '1.0000', '1.1500', '1.1500', '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 (83592, '2022-05-20', 2135, 79279, 5160, NULL, '1.0000', '-0.2588', '-0.2588', '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 (83593, '2022-05-20', 7933, 79280, 5160, NULL, '1.0000', '-0.1222', '-0.1222', '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 (83594, '2022-05-20', 9740, 79281, 5160, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '146.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83595, '2022-05-20', 1501, 79282, 5160, NULL, '1.0000', '1.2071', '1.2071', '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 (83596, '2022-05-20', 2655, 79283, 5160, NULL, '2.0000', '5.6000', '5.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 (83597, '2022-05-20', 2699, 79284, 5160, NULL, '2.0000', '3.6019', '3.6019', '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 (83598, '2022-05-20', 2643, 79285, 5160, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83599, '2022-05-20', 2519, 79286, 5160, 42535, '1.0000', '13.7000', '13.7000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83600, '2022-05-20', 2617, 79287, 5160, NULL, '1.0000', '5.1800', '5.1800', '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 (83601, '2022-05-20', 7933, 79288, 5160, NULL, '1.0000', '-0.1222', '-0.1222', '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 (83602, '2022-05-20', 2384, 79289, 5160, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83603, '2022-05-20', 2315, 79290, 5160, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83604, '2022-05-20', 9840, 79291, 5160, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83605, '2022-05-20', 2916, 79292, 5160, NULL, '1.0000', '538.9192', '538.9192', '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 (83606, '2022-05-20', 1905, 79293, 5160, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83607, '2022-05-20', 1819, 79294, 5160, 54183, '1.0000', '7.0114', '7.0114', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83608, '2022-05-20', 9089, 79295, 5160, NULL, '1.0000', '-9.3999', '-9.3999', '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 (83609, '2022-05-20', 2315, 79296, 5160, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83610, '2022-05-20', 7802, 79297, 5160, NULL, '3.0000', '1.1497', '1.1497', '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 (83611, '2022-05-20', 1590, 79298, 5160, 55929, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83612, '2022-05-20', 2754, 79299, 5160, 18938, '4.0000', '0.0800', '0.0800', '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 (83613, '2022-05-20', 9817, 79300, 5160, 55531, '1.0000', '5.9800', '5.9800', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83614, '2022-05-20', 2020, 79301, 5160, 55715, '1.0000', '1309.0500', '1309.0500', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83615, '2022-05-20', 2413, 79302, 5160, NULL, '1.0000', '1.0500', '1.0500', '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 (83616, '2022-05-20', 9783, 79303, 5160, 54904, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83617, '2022-05-20', 2945, 79304, 5160, 48462, '1.0000', '9.0000', '9.0000', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83618, '2022-05-20', 8177, 79305, 5160, NULL, '1.0000', '12.9000', '12.9000', '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 (83619, '2022-05-20', 2135, 79306, 5160, NULL, '1.0000', '-0.2588', '-0.2588', '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 (83620, '2022-05-20', 2315, 79307, 5160, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83621, '2022-05-20', 9695, 79308, 5160, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83622, '2022-05-20', 8207, 79309, 5160, NULL, '1.0000', '0.0000', '0.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 (83623, '2022-05-20', 1519, 79310, 5160, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83624, '2022-05-20', 9747, 79311, 5160, 55918, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83625, '2022-05-20', 8963, 79312, 5160, NULL, '1.0000', '9.9800', '9.9800', '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 (83626, '2022-05-20', 1668, 79313, 5160, 55932, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83627, '2022-05-20', 7514, 79314, 5160, NULL, '1.0000', '2.2500', '2.2500', '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 (83628, '2022-05-20', 2567, 79315, 5160, 55833, '1.0000', '37.4793', '37.4793', '48.0000', '48.0000', '4.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83629, '2022-05-20', 2315, 79316, 5160, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83630, '2022-05-20', 1529, 79317, 5160, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83631, '2022-05-20', 9794, 79318, 5160, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83632, '2022-05-20', 2293, 79319, 5160, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83633, '2022-05-20', 7802, 79320, 5160, NULL, '3.0000', '1.1497', '1.1497', '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 (83634, '2022-05-20', 1602, 79321, 5161, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83635, '2022-05-20', 1912, 79322, 5161, 50866, '1.0000', '0.6298', '0.6298', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83636, '2022-05-20', 2237, 79323, 5161, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83637, '2022-05-20', 8745, 79324, 5161, 55450, '1.0000', '10.9671', '10.9671', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83638, '2022-05-20', 9213, 79325, 5161, 55451, '1.0000', '5.7334', '5.7334', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83639, '2022-05-20', 9551, 79326, 5161, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '13.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83640, '2022-05-20', 2476, 79327, 5161, 5189, '1.0000', '10.0000', '10.0000', '12.0000', '12.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 (83641, '2022-05-20', 7411, 79328, 5161, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83642, '2022-05-20', 9747, 79329, 5161, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83643, '2022-05-20', 9626, 79330, 5161, 40291, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83644, '2022-05-20', 2315, 79331, 5161, 3069, '1.0000', '0.3300', '0.3300', '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 (83645, '2022-05-20', 1324, 79332, 5161, 3363, '1.0000', '90.0000', '90.0000', '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 (83646, '2022-05-20', 9906, 79333, 5161, NULL, '1.0000', '5.7500', '5.7500', '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 (83647, '2022-05-20', 2858, 79334, 5161, NULL, '2.0000', '1.0000', '1.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 (83648, '2022-05-20', 8093, 79335, 5161, NULL, '1.0000', '8.7800', '8.7800', '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 (83649, '2022-05-20', 1425, 79336, 5161, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83650, '2022-05-20', 2338, 79337, 5161, 3893, '1.0000', '9.6300', '9.6300', '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 (83651, '2022-05-20', 2547, 79338, 5161, 49543, '1.0000', '9.4412', '9.4412', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83652, '2022-05-20', 2169, 79339, 5161, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83653, '2022-05-20', 1528, 79340, 5161, 54581, '1.0000', '44.1245', '44.1245', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83654, '2022-05-20', 8878, 79341, 5161, 54596, '1.0000', '0.9455', '0.9455', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83655, '2022-05-20', 1432, 79342, 5161, 54681, '1.0000', '10.0341', '10.0341', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83656, '2022-05-20', 2437, 79343, 5161, 54364, '1.0000', '90.9028', '90.9028', '120.0000', '120.0000', '0.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83657, '2022-05-20', 7608, 79344, 5161, NULL, '1.0000', '6.9800', '6.9800', '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 (83658, '2022-05-20', 2254, 79345, 5161, 55888, '1.0000', '19.7520', '19.7520', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83659, '2022-05-20', 2693, 79346, 5161, 54412, '1.0000', '24.7971', '24.7971', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83660, '2022-05-20', 2187, 79347, 5161, 39193, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '12.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83661, '2022-05-20', 2943, 79348, 5161, 54591, '2.0000', '1.9204', '1.9204', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83662, '2022-05-20', 2964, 79349, 5161, 55443, '1.0000', '5.5445', '5.5445', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83663, '2022-05-20', 7917, 79350, 5161, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83664, '2022-05-20', 1935, 79351, 5161, 54624, '2.0000', '1.4427', '1.4427', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83665, '2022-05-20', 7478, 79352, 5162, 52449, '3.0000', '33.7925', '33.7925', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83666, '2022-05-20', 8080, 79353, 5162, NULL, '2.0000', '2.9000', '2.9000', '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 (83667, '2022-05-20', 8452, 79354, 5162, NULL, '1.0000', '41.6358', '41.6358', '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 (83668, '2022-05-20', 9763, 79355, 5163, 54519, '2.0000', '2.3080', '2.3080', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83669, '2022-05-20', 1999, 79356, 5163, 55101, '1.0000', '6.7734', '6.7734', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83670, '2022-05-20', 1702, 79357, 5164, 55781, '1.0000', '25.8524', '25.8524', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83671, '2022-05-20', 2699, 79358, 5164, 55438, '1.0000', '3.0981', '3.0981', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83672, '2022-05-21', 9762, 79359, 5165, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83673, '2022-05-21', 9731, 79360, 5165, 54925, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83674, '2022-05-21', 2070, 79361, 5165, 49718, '1.0000', '2.2143', '2.2143', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83675, '2022-05-21', 9873, 79362, 5165, NULL, '1.0000', '8.5000', '8.5000', '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 (83676, '2022-05-21', 1946, 79363, 5165, NULL, '1.0000', '-4.7391', '-4.7391', '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 (83677, '2022-05-21', 7802, 79364, 5165, NULL, '3.0000', '1.1497', '1.1497', '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 (83678, '2022-05-21', 9738, 79365, 5165, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83679, '2022-05-21', 2983, 79366, 5165, 22553, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.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 (83680, '2022-05-21', 9834, 79367, 5165, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '49.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83681, '2022-05-21', 7802, 79368, 5165, NULL, '3.0000', '1.1497', '1.1497', '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 (83682, '2022-05-21', 7886, 79369, 5165, NULL, '1.0000', '14.5000', '14.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 (83683, '2022-05-21', 2315, 79370, 5165, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83684, '2022-05-21', 2293, 79371, 5165, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83685, '2022-05-21', 2643, 79372, 5165, 55414, '2.0000', '0.9588', '0.9588', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83686, '2022-05-21', 1602, 79373, 5165, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '31.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83687, '2022-05-21', 2374, 79374, 5165, 55555, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83688, '2022-05-21', 2366, 79375, 5165, NULL, '2.0000', '-31.8429', '-31.8429', '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 (83689, '2022-05-21', 1493, 79376, 5165, NULL, '1.0000', '-27.3400', '-27.3400', '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 (83690, '2022-05-21', 2293, 79377, 5165, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83691, '2022-05-21', 1592, 79378, 5165, 55658, '1.0000', '39.3500', '39.3500', '52.0000', '52.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83692, '2022-05-21', 3044, 79379, 5165, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '27.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 (83693, '2022-05-21', 1529, 79380, 5165, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83694, '2022-05-21', 2916, 79381, 5165, NULL, '1.0000', '538.9192', '538.9192', '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 (83695, '2022-05-21', 9791, 79382, 5165, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83696, '2022-05-21', 9794, 79383, 5165, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83697, '2022-05-21', 2293, 79384, 5165, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83698, '2022-05-21', 9747, 79385, 5165, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83699, '2022-05-21', 2617, 79386, 5165, NULL, '1.0000', '5.1800', '5.1800', '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 (83700, '2022-05-21', 8017, 79387, 5165, NULL, '1.0000', '0.6000', '0.6000', '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 (83701, '2022-05-21', 9695, 79388, 5165, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83702, '2022-05-21', 2443, 79389, 5165, 55103, '1.0000', '4.1866', '4.1866', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83703, '2022-05-21', 1340, 79390, 5165, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83704, '2022-05-21', 1572, 79391, 5165, 48878, '1.0000', '1.9556', '1.9556', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83705, '2022-05-21', 8774, 79392, 5165, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83706, '2022-05-21', 2643, 79393, 5165, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83707, '2022-05-21', 2285, 79394, 5165, NULL, '1.0000', '26.8638', '26.8638', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83708, '2022-05-21', 1668, 79395, 5165, 55932, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83709, '2022-05-21', 7565, 79396, 5166, NULL, '1.0000', '0.2000', '0.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 (83710, '2022-05-21', 9751, 79397, 5166, 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 (83711, '2022-05-21', 7385, 79398, 5166, 55971, '2.0000', '9.8350', '9.8350', '4.0000', '4.0000', '69.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83712, '2022-05-21', 9608, 79399, 5166, NULL, '1.0000', '3.3000', '3.3000', '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 (83713, '2022-05-21', 8457, 79400, 5166, NULL, '1.0000', '4.9044', '4.9044', '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 (83714, '2022-05-21', 7707, 79401, 5166, NULL, '1.0000', '5.7519', '5.7519', '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 (83715, '2022-05-21', 7318, 79402, 5166, NULL, '1.0000', '11.4954', '11.4954', '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 (83716, '2022-05-21', 8036, 79403, 5166, 51267, '1.0000', '6.7300', '6.7300', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83717, '2022-05-21', 7491, 79404, 5166, NULL, '1.0000', '4.8666', '4.8666', '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 (83718, '2022-05-21', 7473, 79405, 5166, NULL, '1.0000', '-68.3632', '-68.3632', '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 (83719, '2022-05-21', 7564, 79406, 5166, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83720, '2022-05-21', 7518, 79407, 5166, 55965, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83721, '2022-05-21', 1557, 79408, 5166, 56059, '1.0000', '7.8950', '7.8950', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83722, '2022-05-21', 8044, 79409, 5166, NULL, '1.0000', '1.5000', '1.5000', '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 (83723, '2022-05-21', 7859, 79410, 5166, 53915, '1.0000', '12.6364', '12.6364', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83724, '2022-05-21', 8000, 79411, 5166, NULL, '2.0000', '-706.5226', '-706.5226', '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 (83725, '2022-05-21', 2242, 79412, 5166, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '144.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83726, '2022-05-21', 7640, 79413, 5166, 56029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83727, '2022-05-21', 7514, 79414, 5166, NULL, '1.0000', '3234.0124', '3234.0124', '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 (83728, '2022-05-21', 7708, 79415, 5166, 55981, '1.0000', '8.1861', '8.1861', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83729, '2022-05-21', 9092, 79416, 5166, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '113.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83730, '2022-05-21', 7824, 79417, 5166, NULL, '1.0000', '44153.4954', '44153.4954', '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 (83731, '2022-05-21', 7385, 79418, 5166, 55971, '2.0000', '9.8350', '9.8350', '4.0000', '4.0000', '69.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83732, '2022-05-21', 9620, 79419, 5166, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83733, '2022-05-21', 1520, 79420, 5166, NULL, '1.0000', '1.4700', '1.4700', '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 (83734, '2022-05-21', 7641, 79421, 5166, 55967, '1.0000', '6.8687', '6.8687', '9.5000', '9.5000', '23.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83735, '2022-05-21', 9751, 79422, 5166, 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 (83736, '2022-05-21', 2079, 79423, 5166, 45601, '1.0000', '2.1080', '2.1080', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83737, '2022-05-21', 7753, 79424, 5166, 56046, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83738, '2022-05-21', 7411, 79425, 5166, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83739, '2022-05-21', 9448, 79426, 5166, 30922, '1.0000', '7.5200', '7.5200', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83740, '2022-05-21', 7933, 79427, 5166, NULL, '1.0000', '0.3245', '0.3245', '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 (83741, '2022-05-21', 9852, 79428, 5166, 51843, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83742, '2022-05-21', 7473, 79429, 5166, NULL, '5.0000', '-68.3632', '-68.3632', '0.6000', '0.6000', '-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 (83743, '2022-05-21', 1339, 79430, 5166, NULL, '1.0000', '3.0223', '3.0223', '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 (83744, '2022-05-21', 2255, 79431, 5166, NULL, '3.0000', '17.2026', '17.2026', '32.5000', '32.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 (83745, '2022-05-21', 7744, 79432, 5166, 55970, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83746, '2022-05-21', 7819, 79433, 5166, 54494, '1.0000', '11.8499', '11.8499', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83747, '2022-05-21', 8706, 79434, 5166, 49266, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83748, '2022-05-21', 1532, 79435, 5167, 22261, '2.0000', '0.8000', '0.8000', '2.0000', '2.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 (83749, '2022-05-21', 1532, 79435, 5167, 20609, '1.0000', '0.8000', '0.8000', '2.0000', '2.0000', '49.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 (83750, '2022-05-21', 2169, 79436, 5167, 10737, '-132.0000', '3.8397', '3.8397', '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 (83751, '2022-05-21', 2169, 79436, 5167, NULL, '133.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-133.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83752, '2022-05-21', 2379, 79437, 5167, 4032, '-55.0000', '1.5900', '1.5900', '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 (83753, '2022-05-21', 2379, 79437, 5167, NULL, '56.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83754, '2022-05-21', 1584, 79438, 5167, 7601, '-47.0000', '90.0000', '90.0000', '9.5000', '9.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 (83755, '2022-05-21', 1584, 79438, 5167, NULL, '50.0000', '90.0000', '90.0000', '9.5000', '9.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83756, '2022-05-21', 8744, 79439, 5167, NULL, '1.0000', '3.6600', '3.6600', '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 (83757, '2022-05-21', 2315, 79440, 5167, 2735, '-363.0000', '0.3300', '0.3300', '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 (83758, '2022-05-21', 2315, 79440, 5167, NULL, '365.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-365.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83759, '2022-05-21', 1432, 79441, 5167, NULL, '1.0000', '8.1574', '8.1574', '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 (83760, '2022-05-21', 2169, 79442, 5167, 10737, '-132.0000', '3.8397', '3.8397', '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 (83761, '2022-05-21', 2169, 79442, 5167, NULL, '133.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-133.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83762, '2022-05-21', 2360, 79443, 5167, 3862, '-78.0000', '0.5200', '0.5200', '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 (83763, '2022-05-21', 2360, 79443, 5167, NULL, '79.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83764, '2022-05-21', 9741, 79444, 5167, NULL, '1.0000', '7.6000', '7.6000', '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 (83765, '2022-05-21', 2068, 79445, 5167, 5568, '-26.0000', '13.1000', '13.1000', '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 (83766, '2022-05-21', 2068, 79445, 5167, NULL, '27.0000', '13.1000', '13.1000', '16.0000', '16.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 (83767, '2022-05-21', 1313, 79446, 5167, 21496, '1.0000', '2.6700', '2.6700', '2.0000', '2.0000', '19.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 (83768, '2022-05-21', 1501, 79447, 5167, NULL, '1.0000', '2.0500', '2.0500', '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 (83769, '2022-05-21', 2394, 79448, 5167, 4201, '-4.0000', '4.0000', '4.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 (83770, '2022-05-21', 2394, 79448, 5167, NULL, '5.0000', '4.0000', '4.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 (83771, '2022-05-21', 1690, 79449, 5167, NULL, '1.0000', '7.1466', '7.1466', '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 (83772, '2022-05-21', 2858, 79450, 5167, 17772, '-77.0000', '1.0000', '1.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 (83773, '2022-05-21', 2858, 79450, 5167, NULL, '78.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83774, '2022-05-21', 9815, 79451, 5167, NULL, '1.0000', '0.8000', '0.8000', '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 (83775, '2022-05-21', 2379, 79452, 5167, 4032, '-55.0000', '1.5900', '1.5900', '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 (83776, '2022-05-21', 2379, 79452, 5167, NULL, '56.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83777, '2022-05-21', 1732, 79453, 5167, 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 (83778, '2022-05-21', 2379, 79454, 5167, 4032, '-55.0000', '1.5900', '1.5900', '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 (83779, '2022-05-21', 2379, 79454, 5167, NULL, '56.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83780, '2022-05-21', 7587, 79455, 5167, NULL, '1.0000', '6.4400', '6.4400', '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 (83781, '2022-05-21', 7741, 79456, 5167, NULL, '1.0000', '1.2000', '1.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 (83782, '2022-05-21', 2109, 79457, 5167, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '71.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 (83783, '2022-05-21', 1536, 79458, 5167, 1634, '-63.0000', '3.1686', '3.1686', '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 (83784, '2022-05-21', 1536, 79458, 5167, NULL, '64.0000', '3.1686', '3.1686', '7.0000', '7.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83785, '2022-05-21', 8059, 79459, 5167, NULL, '1.0000', '6.0000', '6.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 (83786, '2022-05-21', 7502, 79460, 5168, NULL, '5.0000', '1.4000', '1.4000', '12.0000', '12.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 (83787, '2022-05-21', 1698, 79461, 5168, 33729, '1.0000', '8.4500', '8.4500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83788, '2022-05-21', 7514, 79462, 5168, NULL, '2.0000', '3234.0124', '3234.0124', '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 (83789, '2022-05-21', 8038, 79463, 5168, 54127, '1.0000', '6.7513', '6.7513', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83790, '2022-05-21', 7411, 79464, 5168, 52731, '1.0000', '1.3518', '1.3518', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83791, '2022-05-21', 7753, 79465, 5168, 56046, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83792, '2022-05-21', 7638, 79466, 5168, 56020, '1.0000', '4.1980', '4.1980', '22.5000', '22.5000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83793, '2022-05-21', 7926, 79467, 5168, NULL, '1.0000', '5.4999', '5.4999', '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 (83794, '2022-05-21', 2104, 79468, 5168, NULL, '4.0000', '0.2000', '0.2000', '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 (83795, '2022-05-21', 7333, 79469, 5168, NULL, '1.0000', '-0.5856', '-0.5856', '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 (83796, '2022-05-21', 8054, 79470, 5168, NULL, '2.0000', '16.0000', '16.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 (83797, '2022-05-21', 7672, 79471, 5168, NULL, '2.0000', '3.8200', '3.8200', '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 (83798, '2022-05-21', 7558, 79472, 5168, NULL, '3.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-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 (83799, '2022-05-21', 9316, 79473, 5168, 52456, '2.0000', '8.7300', '8.7300', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83800, '2022-05-21', 7744, 79474, 5168, 55970, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83801, '2022-05-21', 7385, 79475, 5168, 55971, '5.0000', '9.8350', '9.8350', '4.0000', '4.0000', '62.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83802, '2022-05-21', 3080, 79476, 5168, 30992, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83803, '2022-05-21', 7385, 79477, 5168, 55971, '2.0000', '9.8350', '9.8350', '4.0000', '4.0000', '65.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83804, '2022-05-21', 1557, 79478, 5168, 56059, '1.0000', '7.8950', '7.8950', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83805, '2022-05-21', 7685, 79479, 5168, NULL, '1.0000', '31.2000', '31.2000', '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 (83806, '2022-05-21', 7848, 79480, 5168, NULL, '1.0000', '-45.5521', '-45.5521', '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 (83807, '2022-05-21', 8937, 79481, 5168, NULL, '2.0000', '3.5000', '3.5000', '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 (83808, '2022-05-21', 9401, 79482, 5168, 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 (83809, '2022-05-22', 7323, 79483, 5169, 55541, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83810, '2022-05-22', 2315, 79484, 5169, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83811, '2022-05-22', 2237, 79485, 5169, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83812, '2022-05-22', 9846, 79486, 5169, 54166, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83813, '2022-05-22', 1863, 79487, 5169, 55917, '1.0000', '1.4573', '1.4573', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83814, '2022-05-22', 1499, 79488, 5169, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '55.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83815, '2022-05-22', 2259, 79489, 5169, 55706, '1.0000', '22.8355', '22.8355', '31.0000', '31.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83816, '2022-05-22', 2444, 79490, 5169, 54824, '1.0000', '8.3626', '8.3626', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83817, '2022-05-22', 2643, 79491, 5169, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83818, '2022-05-22', 9695, 79492, 5169, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83819, '2022-05-22', 8413, 79493, 5169, 53241, '1.0000', '138.9375', '138.9375', '120.0000', '120.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83820, '2022-05-22', 1493, 79494, 5169, NULL, '1.0000', '-27.3400', '-27.3400', '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 (83821, '2022-05-22', 7558, 79495, 5170, NULL, '2.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83822, '2022-05-22', 9734, 79496, 5170, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83823, '2022-05-22', 7560, 79497, 5170, NULL, '1.0000', '1121166.1694', '1121166.1694', '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 (83824, '2022-05-22', 7711, 79498, 5170, NULL, '1.0000', '-5014.7179', '-5014.7179', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83825, '2022-05-22', 9729, 79499, 5170, 53908, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83826, '2022-05-22', 9534, 79500, 5170, 54714, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83827, '2022-05-22', 9329, 79501, 5170, NULL, '1.0000', '11202.2795', '11202.2795', '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 (83828, '2022-05-22', 7318, 79502, 5170, NULL, '1.0000', '11.4954', '11.4954', '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 (83829, '2022-05-22', 8517, 79503, 5170, NULL, '1.0000', '28.0323', '28.0323', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83830, '2022-05-22', 8825, 79504, 5170, 53497, '1.0000', '15.0002', '15.0002', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83831, '2022-05-22', 9716, 79505, 5170, 54285, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83832, '2022-05-22', 8000, 79506, 5170, NULL, '1.0000', '-706.5226', '-706.5226', '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 (83833, '2022-05-22', 7859, 79507, 5170, 53915, '1.0000', '12.6364', '12.6364', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83834, '2022-05-22', 9715, 79508, 5170, 54718, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83835, '2022-05-22', 7444, 79509, 5170, NULL, '1.0000', '-3.1989', '-3.1989', '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 (83836, '2022-05-22', 1935, 79510, 5170, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '131.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83837, '2022-05-22', 8288, 79511, 5170, NULL, '3.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (83838, '2022-05-22', 8596, 79512, 5170, NULL, '2.0000', '18.5278', '18.5278', '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 (83839, '2022-05-22', 8566, 79513, 5170, 55079, '1.0000', '-7744.2775', '-7744.2775', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83840, '2022-05-22', 8277, 79514, 5170, 45331, '1.0000', '10.8063', '10.8063', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83841, '2022-05-22', 8074, 79515, 5170, 55975, '1.0000', '23.7133', '23.7133', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83842, '2022-05-22', 7514, 79516, 5170, NULL, '1.0000', '3234.0124', '3234.0124', '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 (83843, '2022-05-22', 7822, 79517, 5170, 54471, '1.0000', '30.5000', '30.5000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83844, '2022-05-22', 8017, 79518, 5170, 51835, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83845, '2022-05-22', 7531, 79519, 5171, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83846, '2022-05-22', 1528, 79520, 5171, NULL, '2.0000', '172.4516', '172.4516', '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 (83847, '2022-05-22', 9729, 79521, 5171, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83848, '2022-05-22', 1665, 79522, 5171, 55689, '2.0000', '1.1651', '1.1651', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83849, '2022-05-22', 2256, 79523, 5171, 55713, '1.0000', '13.7060', '13.7060', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83850, '2022-05-22', 2249, 79524, 5172, 39853, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83851, '2022-05-22', 2085, 79525, 5172, NULL, '5.0000', '3.1057', '3.1057', '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 (83852, '2022-05-22', 1868, 79526, 5172, NULL, '1.0000', '3.8800', '3.8800', '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 (83853, '2022-05-22', 2762, 79527, 5172, NULL, '1.0000', '7.1000', '7.1000', '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 (83854, '2022-05-22', 7531, 79528, 5172, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83855, '2022-05-22', 8767, 79529, 5172, 55415, '1.0000', '8.5590', '8.5590', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83856, '2022-05-22', 2237, 79530, 5172, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83857, '2022-05-22', 1520, 79531, 5173, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83858, '2022-05-22', 2169, 79532, 5173, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83859, '2022-05-22', 1935, 79533, 5173, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83860, '2022-05-22', 1689, 79534, 5173, 55941, '1.0000', '15.3729', '15.3729', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83861, '2022-05-22', 7531, 79535, 5173, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83862, '2022-05-22', 8086, 79536, 5173, NULL, '1.0000', '9.3000', '9.3000', '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 (83863, '2022-05-22', 2651, 79537, 5173, NULL, '1.0000', '12.4375', '12.4375', '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 (83864, '2022-05-22', 1487, 79538, 5173, 54911, '1.0000', '-330.9124', '-330.9124', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83865, '2022-05-22', 2059, 79539, 5173, 44437, '1.0000', '8.8934', '8.8934', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83866, '2022-05-22', 8769, 79540, 5174, 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 (83867, '2022-05-22', 9413, 79541, 5175, 50390, '2.0000', '9.0759', '9.0759', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83868, '2022-05-22', 7703, 79542, 5175, NULL, '2.0000', '102.7757', '102.7757', '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 (83869, '2022-05-22', 8135, 79543, 5175, NULL, '1.0000', '5.8940', '5.8940', '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 (83870, '2022-05-22', 9452, 79544, 5175, NULL, '1.0000', '58.0000', '58.0000', '66.0000', '66.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83871, '2022-05-22', 7926, 79545, 5175, NULL, '1.0000', '5.4999', '5.4999', '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 (83872, '2022-05-22', 7672, 79546, 5175, NULL, '1.0000', '3.8200', '3.8200', '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 (83873, '2022-05-22', 7725, 79547, 5175, NULL, '1.0000', '6.2371', '6.2371', '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 (83874, '2022-05-22', 8205, 79548, 5175, NULL, '1.0000', '2.9500', '2.9500', '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 (83875, '2022-05-22', 7753, 79549, 5175, 56046, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83876, '2022-05-22', 7765, 79550, 5175, NULL, '5.0000', '16.0000', '16.0000', '1.5000', '1.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 (83877, '2022-05-22', 2749, 79551, 5175, NULL, '1.0000', '27.0000', '27.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 (83878, '2022-05-22', 7722, 79552, 5175, NULL, '1.0000', '3.5000', '3.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 (83879, '2022-05-22', 9736, 79553, 5175, 51795, '1.0000', '3.9253', '3.9253', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83880, '2022-05-22', 7412, 79554, 5175, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83881, '2022-05-22', 7781, 79555, 5175, NULL, '3.0000', '5.2802', '5.2802', '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 (83882, '2022-05-22', 7412, 79556, 5175, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83883, '2022-05-22', 8053, 79557, 5175, 37844, '1.0000', '1.7988', '1.7988', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83884, '2022-05-22', 7753, 79558, 5175, 56046, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83885, '2022-05-22', 7491, 79559, 5175, NULL, '1.0000', '4.8666', '4.8666', '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 (83886, '2022-05-22', 9734, 79560, 5175, 54140, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83887, '2022-05-22', 8714, 79561, 5175, NULL, '1.0000', '9.3473', '9.3473', '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 (83888, '2022-05-22', 9461, 79562, 5175, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83889, '2022-05-22', 2392, 79563, 5175, NULL, '2.0000', '3.2000', '3.2000', '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 (83890, '2022-05-22', 1888, 79564, 5176, 55481, '1.0000', '16.4995', '16.4995', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83891, '2022-05-22', 1665, 79565, 5176, 54639, '1.0000', '1.1801', '1.1801', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83892, '2022-05-22', 2416, 79566, 5176, 55454, '1.0000', '1.2441', '1.2441', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83893, '2022-05-22', 2393, 79567, 5176, 54993, '1.0000', '1.3098', '1.3098', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83894, '2022-05-22', 2169, 79568, 5176, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83895, '2022-05-22', 3085, 79569, 5176, 40180, '1.0000', '72.7824', '72.7824', '75.0000', '75.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83896, '2022-05-22', 9827, 79570, 5176, 55828, '1.0000', '17.1114', '17.1114', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83897, '2022-05-22', 2169, 79571, 5176, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83898, '2022-05-22', 1888, 79572, 5176, 55481, '1.0000', '16.4995', '16.4995', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83899, '2022-05-22', 7558, 79573, 5176, 44706, '10.0000', '2.4013', '2.4013', '3.7000', '3.7000', '22.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83900, '2022-05-22', 7744, 79574, 5176, NULL, '1.0000', '2.9400', '2.9400', '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 (83901, '2022-05-22', 7641, 79575, 5176, NULL, '1.0000', '1.9000', '1.9000', '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 (83902, '2022-05-22', 1521, 79576, 5176, 55883, '1.0000', '2.7500', '2.7500', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83903, '2022-05-22', 8773, 79577, 5176, NULL, '1.0000', '1.3601', '1.3601', '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 (83904, '2022-05-22', 2643, 79578, 5176, 55455, '1.0000', '0.9235', '0.9235', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83905, '2022-05-22', 2169, 79579, 5176, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83906, '2022-05-22', 2411, 79580, 5176, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83907, '2022-05-22', 9643, 79581, 5176, 41992, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83908, '2022-05-22', 9827, 79582, 5176, 55828, '1.0000', '17.1114', '17.1114', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83909, '2022-05-22', 8207, 79583, 5176, NULL, '1.0000', '0.0000', '0.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 (83910, '2022-05-22', 9741, 79584, 5176, 55877, '1.0000', '7.7201', '7.7201', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83911, '2022-05-22', 1863, 79585, 5176, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83912, '2022-05-22', 1787, 79586, 5176, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '94.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83913, '2022-05-22', 2169, 79587, 5176, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83914, '2022-05-22', 7917, 79588, 5176, NULL, '20.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (83915, '2022-05-22', 9732, 79589, 5176, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83916, '2022-05-22', 3058, 79590, 5176, 55501, '1.0000', '5.1132', '5.1132', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83917, '2022-05-22', 1935, 79591, 5176, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83918, '2022-05-22', 2068, 79592, 5176, 55506, '1.0000', '11.7097', '11.7097', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83919, '2022-05-22', 2315, 79593, 5177, 2735, '-365.0000', '0.3300', '0.3300', '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 (83920, '2022-05-22', 2315, 79593, 5177, NULL, '367.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-367.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83921, '2022-05-22', 7385, 79594, 5177, NULL, '5.0000', '2.0000', '2.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 (83922, '2022-05-22', 9482, 79595, 5177, NULL, '2.0000', '0.5000', '0.5000', '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 (83923, '2022-05-22', 2225, 79596, 5177, 1700, '-4.0000', '14.0000', '14.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 (83924, '2022-05-22', 2225, 79596, 5177, NULL, '5.0000', '14.0000', '14.0000', '20.0000', '20.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 (83925, '2022-05-22', 1425, 79597, 5177, NULL, '1.0000', '6.4405', '6.4405', '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 (83926, '2022-05-22', 1840, 79598, 5177, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (83927, '2022-05-22', 7328, 79599, 5177, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (83928, '2022-05-22', 2315, 79600, 5177, 2735, '-365.0000', '0.3300', '0.3300', '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 (83929, '2022-05-22', 2315, 79600, 5177, NULL, '366.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-366.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83930, '2022-05-22', 9695, 79601, 5177, NULL, '2.0000', '4.5000', '4.5000', '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 (83931, '2022-05-22', 1307, 79602, 5177, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '22.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 (83932, '2022-05-22', 2895, 79603, 5177, NULL, '1.0000', '11.6000', '11.6000', '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 (83933, '2022-05-22', 1855, 79604, 5177, 20589, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '6.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 (83934, '2022-05-22', 2315, 79605, 5177, 2735, '-365.0000', '0.3300', '0.3300', '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 (83935, '2022-05-22', 2315, 79605, 5177, NULL, '366.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-366.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83936, '2022-05-22', 2916, 79606, 5177, 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 (83937, '2022-05-22', 7472, 79607, 5177, 33824, '1.0000', '4.1000', '4.1000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83938, '2022-05-22', 8017, 79608, 5177, NULL, '1.0000', '40.0000', '40.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 (83939, '2022-05-22', 8517, 79609, 5177, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83940, '2022-05-22', 8086, 79610, 5177, NULL, '1.0000', '9.3000', '9.3000', '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 (83941, '2022-05-22', 7385, 79611, 5177, NULL, '4.0000', '2.0000', '2.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 (83942, '2022-05-22', 2546, 79612, 5177, NULL, '1.0000', '13.7598', '13.7598', '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 (83943, '2022-05-22', 2916, 79613, 5177, 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 (83944, '2022-05-22', 1529, 79614, 5177, NULL, '1.0000', '3.5500', '3.5500', '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 (83945, '2022-05-22', 7514, 79615, 5177, NULL, '1.0000', '2.2500', '2.2500', '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 (83946, '2022-05-22', 9754, 79616, 5177, NULL, '1.0000', '1.8000', '1.8000', '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 (83947, '2022-05-22', 7411, 79617, 5177, NULL, '1.0000', '1.3500', '1.3500', '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 (83948, '2022-05-22', 1410, 79618, 5177, NULL, '1.0000', '2.2000', '2.2000', '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 (83949, '2022-05-22', 7802, 79619, 5177, NULL, '3.0000', '0.9200', '0.9200', '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 (83950, '2022-05-22', 8810, 79620, 5177, NULL, '1.0000', '1.6000', '1.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 (83951, '2022-05-22', 7411, 79621, 5177, NULL, '1.0000', '1.3500', '1.3500', '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 (83952, '2022-05-22', 1501, 79622, 5177, NULL, '1.0000', '2.0500', '2.0500', '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 (83953, '2022-05-22', 7353, 79623, 5177, NULL, '2.0000', '0.1900', '0.1900', '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 (83954, '2022-05-22', 7411, 79624, 5177, NULL, '1.0000', '1.3500', '1.3500', '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 (83955, '2022-05-22', 3058, 79625, 5177, NULL, '1.0000', '4.3000', '4.3000', '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 (83956, '2022-05-22', 7564, 79626, 5177, NULL, '1.0000', '0.6400', '0.6400', '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 (83957, '2022-05-22', 7933, 79627, 5177, NULL, '1.0000', '0.4400', '0.4400', '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 (83958, '2022-05-22', 1602, 79628, 5177, 5897, '-141.0000', '6.7859', '6.7859', '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 (83959, '2022-05-22', 1602, 79628, 5177, NULL, '142.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-142.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83960, '2022-05-22', 7411, 79629, 5178, NULL, '1.0000', '1.3013', '1.3013', '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 (83961, '2022-05-22', 2769, 79630, 5178, 54167, '4.0000', '1.8925', '1.8925', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83962, '2022-05-22', 1306, 79631, 5178, 55711, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83963, '2022-05-22', 1827, 79632, 5178, NULL, '10.0000', '0.2000', '0.2000', '0.3000', '0.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 (83964, '2022-05-22', 2315, 79633, 5178, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83965, '2022-05-22', 2643, 79634, 5178, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83966, '2022-05-22', 7802, 79635, 5178, NULL, '2.0000', '1.1497', '1.1497', '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 (83967, '2022-05-22', 7411, 79636, 5178, NULL, '1.0000', '1.3013', '1.3013', '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 (83968, '2022-05-22', 1519, 79637, 5178, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83969, '2022-05-22', 2169, 79638, 5178, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83970, '2022-05-22', 8444, 79639, 5178, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83971, '2022-05-22', 2135, 79640, 5178, NULL, '1.0000', '-0.2588', '-0.2588', '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 (83972, '2022-05-22', 7411, 79641, 5178, NULL, '1.0000', '1.3013', '1.3013', '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 (83973, '2022-05-22', 1529, 79642, 5178, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83974, '2022-05-22', 2315, 79643, 5178, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83975, '2022-05-22', 2916, 79644, 5178, NULL, '1.0000', '538.9192', '538.9192', '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 (83976, '2022-05-22', 1839, 79645, 5178, 55908, '1.0000', '17468.6132', '17468.6132', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83977, '2022-05-22', 7411, 79646, 5178, NULL, '1.0000', '1.3013', '1.3013', '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 (83978, '2022-05-22', 9747, 79647, 5178, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83979, '2022-05-22', 7564, 79648, 5178, NULL, '1.0000', '0.6400', '0.6400', '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 (83980, '2022-05-22', 8170, 79649, 5178, NULL, '1.0000', '5.7500', '5.7500', '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 (83981, '2022-05-22', 7385, 79650, 5178, 55960, '2.0000', '3.8645', '3.8645', '4.0000', '4.0000', '58.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83982, '2022-05-22', 2416, 79651, 5178, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83983, '2022-05-22', 9817, 79652, 5178, 55531, '1.0000', '5.9800', '5.9800', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83984, '2022-05-22', 1361, 79653, 5178, 51385, '1.0000', '50.9300', '50.9300', '74.0000', '74.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83985, '2022-05-22', 8077, 79654, 5179, 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 (83986, '2022-05-22', 1541, 79655, 5179, 46589, '1.0000', '129.9257', '129.9257', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83987, '2022-05-22', 2293, 79656, 5179, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83988, '2022-05-22', 8186, 79657, 5179, NULL, '1.0000', '1.5600', '1.5600', '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 (83989, '2022-05-22', 1340, 79658, 5179, 52235, '1.0000', '3.2084', '3.2084', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83990, '2022-05-22', 2254, 79659, 5179, 55888, '1.0000', '19.7520', '19.7520', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83991, '2022-05-22', 1812, 79660, 5179, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83992, '2022-05-22', 1580, 79661, 5179, 54604, '3.0000', '1.2644', '1.2644', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83993, '2022-05-22', 9794, 79662, 5179, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '70.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83994, '2022-05-22', 1342, 79663, 5179, 55508, '1.0000', '10.7593', '10.7593', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83995, '2022-05-22', 2327, 79664, 5179, 55803, '1.0000', '3.1287', '3.1287', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83996, '2022-05-22', 2169, 79665, 5179, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83997, '2022-05-22', 7743, 79666, 5179, NULL, '1.0000', '1.3100', '1.3100', '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 (83998, '2022-05-22', 9695, 79667, 5179, 55889, '1.0000', '5.1043', '5.1043', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83999, '2022-05-22', 2393, 79668, 5179, 54993, '6.0000', '1.3098', '1.3098', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84000, '2022-05-22', 7744, 79669, 5179, NULL, '1.0000', '2.9400', '2.9400', '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 (84001, '2022-05-22', 9291, 79670, 5179, 55493, '1.0000', '15.5542', '15.5542', '20.5000', '20.5000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84002, '2022-05-22', 1864, 79671, 5179, 55788, '1.0000', '7.5750', '7.5750', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84003, '2022-05-22', 2275, 79672, 5179, 32825, '3.0000', '1.0900', '1.0900', '1.5000', '1.5000', '89.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84004, '2022-05-22', 7779, 79673, 5179, 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 (84005, '2022-05-22', 2354, 79674, 5179, 55769, '1.0000', '5.2632', '5.2632', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84006, '2022-05-22', 2236, 79675, 5179, 54415, '1.0000', '5.8362', '5.8362', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84007, '2022-05-22', 1425, 79676, 5179, 54680, '1.0000', '6.9045', '6.9045', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84008, '2022-05-22', 1499, 79677, 5179, 54670, '2.0000', '0.4174', '0.4174', '0.6000', '0.6000', '11.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84009, '2022-05-22', 7514, 79678, 5180, NULL, '1.0000', '2.2500', '2.2500', '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 (84010, '2022-05-22', 8155, 79679, 5180, NULL, '1.0000', '65.0000', '65.0000', '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 (84011, '2022-05-22', 2237, 79680, 5180, 2781, '-53.0000', '1.0600', '1.0600', '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 (84012, '2022-05-22', 2237, 79680, 5180, NULL, '54.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84013, '2022-05-22', 9413, 79681, 5180, 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 (84014, '2022-05-22', 2822, 79682, 5180, 17166, '-11.0000', '2.7200', '2.7200', '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 (84015, '2022-05-22', 2822, 79682, 5180, NULL, '12.0000', '2.7200', '2.7200', '4.0000', '4.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 (84016, '2022-05-22', 9751, 79683, 5180, 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 (84017, '2022-05-22', 7524, 79684, 5180, NULL, '1.0000', '11.9500', '11.9500', '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 (84018, '2022-05-22', 7652, 79685, 5180, NULL, '1.0000', '0.9800', '0.9800', '1.6000', '1.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 (84019, '2022-05-22', 7770, 79686, 5180, NULL, '1.0000', '7.8200', '7.8200', '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 (84020, '2022-05-22', 7911, 79687, 5180, NULL, '1.0000', '4.3700', '4.3700', '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 (84021, '2022-05-22', 7780, 79688, 5180, NULL, '1.0000', '11.6000', '11.6000', '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 (84022, '2022-05-22', 2315, 79689, 5180, 2735, '-369.0000', '0.3300', '0.3300', '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 (84023, '2022-05-22', 2315, 79689, 5180, NULL, '370.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-370.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84024, '2022-05-22', 9456, 79690, 5180, NULL, '1.0000', '3.3200', '3.3200', '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 (84025, '2022-05-22', 8304, 79691, 5180, NULL, '1.0000', '6.0000', '6.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 (84026, '2022-05-22', 7781, 79692, 5180, NULL, '2.0000', '4.2500', '4.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 (84027, '2022-05-22', 2315, 79693, 5180, 2735, '-369.0000', '0.3300', '0.3300', '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 (84028, '2022-05-22', 2315, 79693, 5180, NULL, '370.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-370.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84029, '2022-05-22', 1904, 79694, 5180, 5442, '-44.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 (84030, '2022-05-22', 1904, 79694, 5180, NULL, '45.0000', '0.3200', '0.3200', '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 (84031, '2022-05-22', 9391, 79695, 5180, 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 (84032, '2022-05-22', 9463, 79696, 5180, NULL, '1.0000', '7.5000', '7.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 (84033, '2022-05-22', 9732, 79697, 5180, 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 (84034, '2022-05-22', 8053, 79698, 5180, NULL, '4.0000', '0.8000', '0.8000', '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 (84035, '2022-05-22', 2315, 79699, 5180, 2735, '-369.0000', '0.3300', '0.3300', '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 (84036, '2022-05-22', 2315, 79699, 5180, NULL, '373.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-373.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84037, '2022-05-22', 7616, 79700, 5180, NULL, '1.0000', '21.5000', '21.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 (84038, '2022-05-22', 7592, 79701, 5180, NULL, '1.0000', '6.8000', '6.8000', '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 (84039, '2022-05-22', 7674, 79702, 5180, NULL, '2.0000', '1.3000', '1.3000', '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 (84040, '2022-05-22', 9793, 79703, 5180, NULL, '1.0000', '23.5000', '23.5000', '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 (84041, '2022-05-22', 7641, 79704, 5180, NULL, '1.0000', '1.9000', '1.9000', '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 (84042, '2022-05-22', 8194, 79705, 5180, NULL, '1.0000', '5.4600', '5.4600', '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 (84043, '2022-05-22', 8308, 79706, 5180, NULL, '1.0000', '2.0800', '2.0800', '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 (84044, '2022-05-22', 8208, 79707, 5180, NULL, '2.0000', '33.0000', '33.0000', '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 (84045, '2022-05-22', 7780, 79708, 5180, NULL, '1.0000', '11.6000', '11.6000', '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 (84046, '2022-05-22', 7666, 79709, 5180, NULL, '1.0000', '3.6000', '3.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 (84047, '2022-05-22', 7886, 79710, 5180, 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 (84048, '2022-05-22', 7958, 79711, 5180, NULL, '1.0000', '3.7500', '3.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 (84049, '2022-05-22', 7741, 79712, 5180, NULL, '1.0000', '1.2000', '1.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 (84050, '2022-05-22', 7774, 79713, 5180, NULL, '1.0000', '3.3000', '3.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 (84051, '2022-05-22', 2440, 79714, 5180, 5309, '-1.0000', '5.3000', '5.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 (84052, '2022-05-22', 2440, 79714, 5180, NULL, '2.0000', '5.3000', '5.3000', '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 (84053, '2022-05-22', 7658, 79715, 5180, NULL, '10.0000', '2.0200', '2.0200', '3.5000', '3.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 (84054, '2022-05-22', 7666, 79716, 5180, NULL, '1.0000', '3.6000', '3.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 (84055, '2022-05-22', 7886, 79717, 5180, 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 (84056, '2022-05-22', 7473, 79718, 5180, NULL, '1.0000', '0.5300', '0.5300', '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 (84057, '2022-05-22', 8933, 79719, 5180, 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 (84058, '2022-05-22', 9900, 79720, 5180, NULL, '1.0000', '3.7200', '3.7200', '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 (84059, '2022-05-22', 1520, 79721, 5180, 33822, '1.0000', '1.4700', '1.4700', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84060, '2022-05-22', 8061, 79722, 5180, NULL, '2.0000', '6.5000', '6.5000', '9.5000', '9.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 (84061, '2022-05-22', 2277, 79723, 5180, 2937, '-44.0000', '0.7800', '0.7800', '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 (84062, '2022-05-22', 2277, 79723, 5180, NULL, '46.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84063, '2022-05-22', 2315, 79724, 5180, 2735, '-369.0000', '0.3300', '0.3300', '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 (84064, '2022-05-22', 2315, 79724, 5180, NULL, '370.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-370.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84065, '2022-05-22', 7784, 79725, 5180, NULL, '2.0000', '4.2300', '4.2300', '5.5800', '5.5800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84066, '2022-05-22', 8036, 79726, 5180, NULL, '1.0000', '6.7300', '6.7300', '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 (84067, '2022-05-22', 7411, 79727, 5180, NULL, '2.0000', '1.3500', '1.3500', '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 (84068, '2022-05-22', 7509, 79728, 5180, 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 (84069, '2022-05-22', 9092, 79729, 5180, NULL, '3.0000', '5.2900', '5.2900', '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 (84070, '2022-05-22', 7638, 79730, 5180, NULL, '1.0000', '12.0000', '12.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 (84071, '2022-05-22', 7719, 79731, 5180, NULL, '1.0000', '6.0000', '6.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 (84072, '2022-05-22', 7564, 79732, 5180, 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 (84073, '2022-05-22', 7673, 79733, 5180, NULL, '1.0000', '16.8000', '16.8000', '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 (84074, '2022-05-22', 2242, 79734, 5180, 3059, '-26.0000', '0.4800', '0.4800', '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 (84075, '2022-05-22', 2242, 79734, 5180, NULL, '29.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84076, '2022-05-22', 7781, 79735, 5180, NULL, '2.0000', '4.2500', '4.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 (84077, '2022-05-22', 8101, 79736, 5180, 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 (84078, '2022-05-22', 7892, 79737, 5180, NULL, '1.0000', '4.2000', '4.2000', '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 (84079, '2022-05-22', 8702, 79738, 5180, NULL, '1.0000', '3.6700', '3.6700', '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 (84080, '2022-05-22', 7848, 79739, 5180, NULL, '1.0000', '1.3500', '1.3500', '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 (84081, '2022-05-22', 7623, 79740, 5180, NULL, '1.0000', '47.0000', '47.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 (84082, '2022-05-22', 9413, 79741, 5180, 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 (84083, '2022-05-22', 1501, 79742, 5180, NULL, '1.0000', '2.0500', '2.0500', '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 (84084, '2022-05-22', 2324, 79743, 5180, 3573, '-4.0000', '10.5000', '10.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 (84085, '2022-05-22', 2324, 79743, 5180, NULL, '5.0000', '10.5000', '10.5000', '18.0000', '18.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 (84086, '2022-05-22', 2295, 79744, 5180, 22264, '2.0000', '0.9600', '0.9600', '2.5000', '2.5000', '13.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 (84087, '2022-05-22', 2242, 79745, 5180, 3059, '-26.0000', '0.4800', '0.4800', '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 (84088, '2022-05-22', 2242, 79745, 5180, NULL, '28.0000', '0.4800', '0.4800', '1.5000', '1.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 (84089, '2022-05-22', 2315, 79746, 5180, 2735, '-369.0000', '0.3300', '0.3300', '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 (84090, '2022-05-22', 2315, 79746, 5180, NULL, '370.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-370.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84091, '2022-05-22', 7708, 79747, 5180, 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 (84092, '2022-05-22', 7886, 79748, 5180, 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 (84093, '2022-05-22', 8052, 79749, 5180, NULL, '1.0000', '29.0000', '29.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 (84094, '2022-05-22', 8596, 79750, 5180, 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 (84095, '2022-05-22', 7491, 79751, 5180, NULL, '1.0000', '5.6000', '5.6000', '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 (84096, '2022-05-22', 1644, 79752, 5180, 3216, '-5.0000', '33.8200', '33.8200', '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 (84097, '2022-05-22', 1644, 79752, 5180, NULL, '6.0000', '33.8200', '33.8200', '51.0000', '51.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 (84098, '2022-05-22', 9329, 79753, 5180, NULL, '1.0000', '6.7000', '6.7000', '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 (84099, '2022-05-22', 2295, 79754, 5180, 22264, '3.0000', '0.9600', '0.9600', '2.5000', '2.5000', '12.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 (84100, '2022-05-22', 2242, 79755, 5180, 3059, '-26.0000', '0.4800', '0.4800', '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 (84101, '2022-05-22', 2242, 79755, 5180, NULL, '27.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-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 (84102, '2022-05-22', 9565, 79756, 5180, NULL, '1.0000', '4.5000', '4.5000', '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 (84103, '2022-05-22', 9271, 79757, 5180, NULL, '1.0000', '0.9900', '0.9900', '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 (84104, '2022-05-22', 7518, 79758, 5180, NULL, '1.0000', '7.8200', '7.8200', '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 (84105, '2022-05-22', 7524, 79759, 5180, NULL, '2.0000', '11.9500', '11.9500', '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 (84106, '2022-05-22', 9639, 79760, 5180, NULL, '1.0000', '28.7900', '28.7900', '38.5000', '38.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84107, '2022-05-22', 7886, 79761, 5180, 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 (84108, '2022-05-22', 2506, 79762, 5180, 16244, '-16.0000', '3.4900', '3.4900', '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 (84109, '2022-05-22', 2506, 79762, 5180, NULL, '17.0000', '3.4900', '3.4900', '6.5000', '6.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 (84110, '2022-05-22', 7886, 79763, 5181, NULL, '1.0000', '14.5000', '14.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 (84111, '2022-05-22', 2354, 79764, 5181, NULL, '1.0000', '-0.6066', '-0.6066', '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 (84112, '2022-05-22', 8517, 79765, 5181, NULL, '1.0000', '28.0200', '28.0200', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84113, '2022-05-22', 7472, 79766, 5181, NULL, '1.0000', '-16.5602', '-16.5602', '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 (84114, '2022-05-22', 9732, 79767, 5181, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84115, '2022-05-22', 7743, 79768, 5181, NULL, '2.0000', '7.3900', '7.3900', '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 (84116, '2022-05-22', 9762, 79769, 5181, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84117, '2022-05-22', 9582, 79770, 5182, 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 (84118, '2022-05-22', 7741, 79771, 5182, NULL, '2.0000', '1.2000', '1.2000', '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 (84119, '2022-05-23', 2169, 79772, 5183, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '81.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84120, '2022-05-23', 7612, 79773, 5183, NULL, '1.0000', '1.6100', '1.6100', '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 (84121, '2022-05-23', 1860, 79774, 5183, 54547, '1.0000', '26.9175', '26.9175', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84122, '2022-05-23', 2405, 79775, 5183, 55087, '5.0000', '1.2000', '1.2000', '1.8000', '1.8000', '44.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84123, '2022-05-23', 2825, 79776, 5183, NULL, '1.0000', '12.0000', '12.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 (84124, '2022-05-23', 8149, 79777, 5183, 53667, '1.0000', '6.6333', '6.6333', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84125, '2022-05-23', 7947, 79778, 5183, NULL, '1.0000', '14.4400', '14.4400', '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 (84126, '2022-05-23', 1905, 79779, 5183, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84127, '2022-05-23', 7713, 79780, 5183, 55675, '2.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '36.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84128, '2022-05-23', 1410, 79781, 5183, 55920, '1.0000', '48.8052', '48.8052', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84129, '2022-05-23', 2916, 79782, 5183, NULL, '1.0000', '538.9192', '538.9192', '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 (84130, '2022-05-23', 7411, 79783, 5183, NULL, '1.0000', '1.3013', '1.3013', '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 (84131, '2022-05-23', 9740, 79784, 5183, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '144.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84132, '2022-05-23', 8746, 79785, 5183, 55424, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84133, '2022-05-23', 7447, 79786, 5183, NULL, '2.0000', '19.1100', '19.1100', '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 (84134, '2022-05-23', 1307, 79787, 5183, NULL, '1.0000', '-11.7284', '-11.7284', '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 (84135, '2022-05-23', 7411, 79788, 5183, NULL, '1.0000', '1.3013', '1.3013', '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 (84136, '2022-05-23', 9732, 79789, 5183, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84137, '2022-05-23', 1946, 79790, 5183, NULL, '1.0000', '-4.7391', '-4.7391', '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 (84138, '2022-05-23', 1314, 79791, 5183, 55930, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84139, '2022-05-23', 2100, 79792, 5183, 41418, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84140, '2022-05-23', 2643, 79793, 5183, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84141, '2022-05-23', 1428, 79794, 5183, 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 (84142, '2022-05-23', 2010, 79795, 5183, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84143, '2022-05-23', 2441, 79796, 5183, 55100, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84144, '2022-05-23', 7411, 79797, 5183, NULL, '1.0000', '1.3013', '1.3013', '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 (84145, '2022-05-23', 1602, 79798, 5183, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '30.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84146, '2022-05-23', 8595, 79799, 5183, NULL, '1.0000', '3.9640', '3.9640', '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 (84147, '2022-05-23', 7612, 79800, 5183, NULL, '2.0000', '1.6100', '1.6100', '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 (84148, '2022-05-23', 9269, 79801, 5183, 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 (84149, '2022-05-23', 2315, 79802, 5183, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84150, '2022-05-23', 2237, 79803, 5183, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84151, '2022-05-23', 7411, 79804, 5183, NULL, '1.0000', '1.3013', '1.3013', '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 (84152, '2022-05-23', 9725, 79805, 5183, 52348, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84153, '2022-05-23', 9731, 79806, 5183, 54925, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84154, '2022-05-23', 2506, 79807, 5183, NULL, '1.0000', '3.7156', '3.7156', '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 (84155, '2022-05-23', 1825, 79808, 5183, 55678, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84156, '2022-05-23', 1945, 79809, 5183, 55668, '1.0000', '9.3000', '9.3000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84157, '2022-05-23', 8017, 79810, 5183, NULL, '2.0000', '0.6000', '0.6000', '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 (84158, '2022-05-23', 9747, 79811, 5183, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84159, '2022-05-23', 2169, 79812, 5183, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '81.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84160, '2022-05-23', 1863, 79813, 5183, 55917, '1.0000', '1.4573', '1.4573', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84161, '2022-05-23', 1307, 79814, 5183, NULL, '1.0000', '-11.7284', '-11.7284', '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 (84162, '2022-05-23', 9874, 79815, 5183, NULL, '1.0000', '25.0000', '25.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 (84163, '2022-05-23', 7565, 79816, 5183, NULL, '1.0000', '0.2000', '0.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 (84164, '2022-05-23', 9740, 79817, 5183, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '144.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84165, '2022-05-23', 1863, 79818, 5183, 55917, '1.0000', '1.4573', '1.4573', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84166, '2022-05-23', 2351, 79819, 5183, 55959, '1.0000', '18.4875', '18.4875', '24.5000', '24.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84167, '2022-05-23', 9740, 79820, 5183, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '144.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84168, '2022-05-23', 9721, 79821, 5183, NULL, '1.0000', '11.7000', '11.7000', '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 (84169, '2022-05-23', 1689, 79822, 5183, 55941, '1.0000', '15.3729', '15.3729', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84170, '2022-05-23', 2169, 79823, 5183, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '81.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84171, '2022-05-23', 7558, 79824, 5184, NULL, '2.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84172, '2022-05-23', 7385, 79825, 5184, NULL, '7.0000', '2.0000', '2.0000', '4.0000', '4.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 (84173, '2022-05-23', 7822, 79826, 5184, NULL, '1.0000', '8.0000', '8.0000', '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 (84174, '2022-05-23', 9391, 79827, 5184, 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 (84175, '2022-05-23', 7674, 79828, 5184, NULL, '1.0000', '1.3000', '1.3000', '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 (84176, '2022-05-23', 7993, 79829, 5184, NULL, '1.0000', '41.0000', '41.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84177, '2022-05-23', 7820, 79830, 5184, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84178, '2022-05-23', 8207, 79831, 5184, NULL, '1.0000', '0.0000', '0.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 (84179, '2022-05-23', 2295, 79832, 5184, 22264, '6.0000', '0.9600', '0.9600', '2.5000', '2.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 (84180, '2022-05-23', 7412, 79833, 5184, NULL, '1.0000', '1.5200', '1.5200', '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 (84181, '2022-05-23', 2242, 79834, 5184, 3059, '-32.0000', '0.4800', '0.4800', '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 (84182, '2022-05-23', 2242, 79834, 5184, NULL, '35.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84183, '2022-05-23', 7562, 79835, 5184, NULL, '1.0000', '5.5300', '5.5300', '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 (84184, '2022-05-23', 7896, 79836, 5184, NULL, '1.0000', '7.0000', '7.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 (84185, '2022-05-23', 7385, 79837, 5184, NULL, '5.0000', '2.0000', '2.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 (84186, '2022-05-23', 9695, 79838, 5184, NULL, '1.0000', '4.5000', '4.5000', '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 (84187, '2022-05-23', 2617, 79839, 5184, 9743, '-4.0000', '4.4000', '4.4000', '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 (84188, '2022-05-23', 2617, 79839, 5184, NULL, '5.0000', '4.4000', '4.4000', '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 (84189, '2022-05-23', 8712, 79840, 5184, NULL, '1.0000', '7.0400', '7.0400', '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 (84190, '2022-05-23', 2496, 79841, 5184, NULL, '2.0000', '0.5900', '0.5900', '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 (84191, '2022-05-23', 7412, 79842, 5184, NULL, '1.0000', '1.5200', '1.5200', '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 (84192, '2022-05-23', 7859, 79843, 5184, NULL, '1.0000', '12.6300', '12.6300', '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 (84193, '2022-05-23', 8878, 79844, 5184, NULL, '1.0000', '6.6700', '6.6700', '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 (84194, '2022-05-23', 8186, 79845, 5184, NULL, '3.0000', '1.0800', '1.0800', '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 (84195, '2022-05-23', 7781, 79846, 5184, NULL, '2.0000', '4.2500', '4.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 (84196, '2022-05-23', 9750, 79847, 5184, NULL, '1.0000', '3.3000', '3.3000', '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 (84197, '2022-05-23', 9204, 79848, 5184, NULL, '1.0000', '8.1600', '8.1600', '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 (84198, '2022-05-23', 2740, 79849, 5184, 14259, '-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 (84199, '2022-05-23', 2740, 79849, 5184, NULL, '2.0000', '9.0000', '9.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 (84200, '2022-05-23', 7674, 79850, 5184, NULL, '1.0000', '1.3000', '1.3000', '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 (84201, '2022-05-23', 7411, 79851, 5184, NULL, '1.0000', '1.3500', '1.3500', '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 (84202, '2022-05-23', 2295, 79852, 5184, 22264, '3.0000', '0.9600', '0.9600', '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 (84203, '2022-05-23', 9791, 79853, 5184, NULL, '2.0000', '0.9000', '0.9000', '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 (84204, '2022-05-23', 1452, 79854, 5185, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84205, '2022-05-23', 1602, 79855, 5185, 5897, '-142.0000', '6.7859', '6.7859', '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 (84206, '2022-05-23', 1602, 79855, 5185, NULL, '143.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-143.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84207, '2022-05-23', 8746, 79856, 5185, NULL, '1.0000', '3.1500', '3.1500', '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 (84208, '2022-05-23', 2296, 79857, 5185, 2955, '-5.0000', '13.2900', '13.2900', '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 (84209, '2022-05-23', 2296, 79857, 5185, NULL, '6.0000', '13.2900', '13.2900', '19.0000', '19.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 (84210, '2022-05-23', 1329, 79858, 5185, 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 (84211, '2022-05-23', 8759, 79859, 5185, NULL, '1.0000', '6.5000', '6.5000', '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 (84212, '2022-05-23', 1812, 79860, 5185, 8224, '-92.0000', '7.8900', '7.8900', '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 (84213, '2022-05-23', 1812, 79860, 5185, NULL, '93.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84214, '2022-05-23', 1580, 79861, 5185, 7598, '-53.0000', '0.9900', '0.9900', '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 (84215, '2022-05-23', 1580, 79861, 5185, NULL, '56.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84216, '2022-05-23', 2293, 79862, 5185, 22262, '3.0000', '1.4400', '1.4400', '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 (84217, '2022-05-23', 1602, 79863, 5185, 5897, '-142.0000', '6.7859', '6.7859', '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 (84218, '2022-05-23', 1602, 79863, 5185, NULL, '143.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-143.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84219, '2022-05-23', 2485, 79864, 5185, NULL, '1.0000', '17.0000', '17.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 (84220, '2022-05-23', 1524, 79865, 5185, NULL, '1.0000', '3.8400', '3.8400', '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 (84221, '2022-05-23', 2259, 79866, 5185, 2795, '-5.0000', '19.9405', '19.9405', '31.0000', '31.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84222, '2022-05-23', 2259, 79866, 5185, NULL, '6.0000', '19.9405', '19.9405', '31.0000', '31.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 (84223, '2022-05-23', 2360, 79867, 5185, 3862, '-79.0000', '0.5200', '0.5200', '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 (84224, '2022-05-23', 2360, 79867, 5185, NULL, '89.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84225, '2022-05-23', 2699, 79868, 5185, 12529, '-36.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 (84226, '2022-05-23', 2699, 79868, 5185, NULL, '37.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84227, '2022-05-23', 2135, 79869, 5185, 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 (84228, '2022-05-23', 2440, 79870, 5185, 5309, '-2.0000', '5.3000', '5.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 (84229, '2022-05-23', 2440, 79870, 5185, NULL, '3.0000', '5.3000', '5.3000', '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 (84230, '2022-05-23', 2858, 79871, 5185, 17772, '-78.0000', '1.0000', '1.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 (84231, '2022-05-23', 2858, 79871, 5185, NULL, '79.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84232, '2022-05-23', 3019, 79872, 5185, NULL, '1.0000', '7.8000', '7.8000', '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 (84233, '2022-05-23', 2256, 79873, 5185, 2793, '-5.0000', '12.7400', '12.7400', '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 (84234, '2022-05-23', 2256, 79873, 5185, NULL, '6.0000', '12.7400', '12.7400', '22.0000', '22.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 (84235, '2022-05-23', 1935, 79874, 5185, 5586, '-99.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 (84236, '2022-05-23', 1935, 79874, 5185, NULL, '100.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (84237, '2022-05-23', 1890, 79875, 5185, 5430, '-13.0000', '90.0000', '90.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 (84238, '2022-05-23', 1890, 79875, 5185, NULL, '15.0000', '90.0000', '90.0000', '4.5000', '4.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 (84239, '2022-05-23', 1935, 79876, 5185, 5586, '-99.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 (84240, '2022-05-23', 1935, 79876, 5185, NULL, '100.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-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 (84241, '2022-05-23', 2163, 79877, 5185, 16248, '-2.0000', '20.0000', '20.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 (84242, '2022-05-23', 2163, 79877, 5185, NULL, '3.0000', '20.0000', '20.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 (84243, '2022-05-23', 9089, 79878, 5185, NULL, '1.0000', '3.8000', '3.8000', '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 (84244, '2022-05-23', 1702, 79879, 5186, 4499, '-8.0000', '14.9700', '14.9700', '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 (84245, '2022-05-23', 1702, 79879, 5186, NULL, '9.0000', '14.9700', '14.9700', '25.0000', '25.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 (84246, '2022-05-23', 2028, 79880, 5186, NULL, '1.0000', '23.0000', '23.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 (84247, '2022-05-23', 9821, 79881, 5186, NULL, '5.0000', '1.4500', '1.4500', '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 (84248, '2022-05-23', 2006, 79882, 5186, NULL, '2.0000', '0.7500', '0.7500', '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 (84249, '2022-05-23', 9695, 79883, 5186, NULL, '1.0000', '4.5000', '4.5000', '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 (84250, '2022-05-23', 1890, 79884, 5186, 5430, '-15.0000', '90.0000', '90.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 (84251, '2022-05-23', 1890, 79884, 5186, NULL, '17.0000', '90.0000', '90.0000', '4.5000', '4.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 (84252, '2022-05-23', 2602, 79885, 5186, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.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 (84253, '2022-05-23', 2099, 79886, 5186, 1043, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '5.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 (84254, '2022-05-23', 2964, 79887, 5186, NULL, '1.0000', '6.6000', '6.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 (84255, '2022-05-23', 2277, 79888, 5186, 2937, '-46.0000', '0.7800', '0.7800', '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 (84256, '2022-05-23', 2277, 79888, 5186, NULL, '48.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84257, '2022-05-23', 1580, 79889, 5186, 7598, '-56.0000', '0.9900', '0.9900', '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 (84258, '2022-05-23', 1580, 79889, 5186, NULL, '57.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84259, '2022-05-23', 2295, 79890, 5186, 22264, '1.0000', '0.9600', '0.9600', '2.5000', '2.5000', '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 (84260, '2022-05-23', 2295, 79890, 5186, NULL, '5.0000', '0.9600', '0.9600', '2.5000', '2.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 (84261, '2022-05-23', 2242, 79891, 5186, 3059, '-35.0000', '0.4800', '0.4800', '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 (84262, '2022-05-23', 2242, 79891, 5186, NULL, '41.0000', '0.4800', '0.4800', '1.5000', '1.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 (84263, '2022-05-23', 2818, 79892, 5186, NULL, '1.0000', '14.0000', '14.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 (84264, '2022-05-23', 1314, 79893, 5186, 2710, '-7.0000', '1.2000', '1.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 (84265, '2022-05-23', 1314, 79893, 5186, NULL, '8.0000', '1.2000', '1.2000', '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 (84266, '2022-05-23', 2341, 79894, 5186, NULL, '1.0000', '6.8000', '6.8000', '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 (84267, '2022-05-23', 1781, 79895, 5186, 4899, '-2.0000', '4.1000', '4.1000', '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 (84268, '2022-05-23', 1781, 79895, 5186, NULL, '3.0000', '4.1000', '4.1000', '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 (84269, '2022-05-23', 1857, 79896, 5186, 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 (84270, '2022-05-23', 2699, 79897, 5186, 12529, '-37.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 (84271, '2022-05-23', 2699, 79897, 5186, NULL, '38.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84272, '2022-05-23', 1519, 79898, 5186, 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 (84273, '2022-05-23', 9729, 79899, 5186, NULL, '1.0000', '0.6200', '0.6200', '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 (84274, '2022-05-23', 2135, 79900, 5186, 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 (84275, '2022-05-23', 1667, 79901, 5186, 9745, '-52.0000', '5.9400', '5.9400', '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 (84276, '2022-05-23', 1667, 79901, 5186, NULL, '53.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-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 (84277, '2022-05-23', 1602, 79902, 5186, 5897, '-144.0000', '6.7859', '6.7859', '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 (84278, '2022-05-23', 1602, 79902, 5186, NULL, '145.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84279, '2022-05-23', 1519, 79903, 5186, 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 (84280, '2022-05-23', 2357, 79904, 5186, 3859, '-4.0000', '4.0000', '4.0000', '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 (84281, '2022-05-23', 2357, 79904, 5186, NULL, '5.0000', '4.0000', '4.0000', '5.5000', '5.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 (84282, '2022-05-23', 1863, 79905, 5187, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84283, '2022-05-23', 1812, 79906, 5187, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84284, '2022-05-23', 1590, 79907, 5187, 49546, '2.0000', '1.7700', '1.7700', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84285, '2022-05-23', 2655, 79908, 5187, 55437, '1.0000', '6.7250', '6.7250', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84286, '2022-05-23', 1590, 79909, 5187, 49546, '4.0000', '1.7700', '1.7700', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84287, '2022-05-23', 7746, 79910, 5187, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84288, '2022-05-23', 1663, 79911, 5187, 55498, '1.0000', '93.0658', '93.0658', '121.0000', '121.0000', '0.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84289, '2022-05-23', 9750, 79912, 5187, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '33.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84290, '2022-05-23', 2221, 79913, 5187, 55865, '1.0000', '16.4253', '16.4253', '26.0000', '26.0000', '11.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84291, '2022-05-23', 9737, 79914, 5187, 53243, '1.0000', '7.3000', '7.3000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84292, '2022-05-23', 9794, 79915, 5187, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '68.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84293, '2022-05-23', 9748, 79916, 5187, 55806, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84294, '2022-05-23', 1668, 79917, 5187, 55473, '1.0000', '40.5964', '40.5964', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84295, '2022-05-23', 1409, 79918, 5187, 55758, '1.0000', '13.0441', '13.0441', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84296, '2022-05-23', 2095, 79919, 5187, 54414, '1.0000', '1.6508', '1.6508', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84297, '2022-05-23', 1602, 79920, 5187, 55485, '1.0000', '6.9633', '6.9633', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84298, '2022-05-23', 1528, 79921, 5187, 54581, '1.0000', '44.1245', '44.1245', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84299, '2022-05-23', 2479, 79922, 5187, 5192, '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 (84300, '2022-05-23', 1863, 79923, 5187, 55480, '2.0000', '1.3191', '1.3191', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84301, '2022-05-23', 9747, 79924, 5187, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84302, '2022-05-23', 1807, 79925, 5187, NULL, '1.0000', '5.3000', '5.3000', '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 (84303, '2022-05-23', 1875, 79926, 5187, 55870, '1.0000', '73.8421', '73.8421', '3.7000', '3.7000', '99.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84304, '2022-05-23', 7357, 79927, 5187, NULL, '1.0000', '12.2000', '12.2000', '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 (84305, '2022-05-23', 2169, 79928, 5188, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84306, '2022-05-23', 9695, 79929, 5188, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84307, '2022-05-23', 1689, 79930, 5188, 55941, '1.0000', '15.3729', '15.3729', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84308, '2022-05-23', 2916, 79931, 5188, NULL, '1.0000', '538.9192', '538.9192', '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 (84309, '2022-05-23', 2315, 79932, 5188, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84310, '2022-05-23', 2135, 79933, 5188, NULL, '1.0000', '-0.2588', '-0.2588', '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 (84311, '2022-05-23', 7638, 79934, 5188, NULL, '2.0000', '12.0000', '12.0000', '22.5000', '22.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 (84312, '2022-05-23', 8444, 79935, 5188, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84313, '2022-05-23', 1307, 79936, 5188, NULL, '1.0000', '-11.7284', '-11.7284', '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 (84314, '2022-05-23', 9754, 79937, 5188, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84315, '2022-05-23', 2315, 79938, 5188, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84316, '2022-05-23', 3050, 79939, 5188, 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 (84317, '2022-05-23', 1674, 79940, 5189, 55764, '1.0000', '9.2774', '9.2774', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84318, '2022-05-23', 2379, 79941, 5189, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84319, '2022-05-23', 1812, 79942, 5189, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84320, '2022-05-23', 2302, 79943, 5189, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84321, '2022-05-23', 1841, 79944, 5189, 54426, '4.0000', '0.0701', '0.0701', '0.5000', '0.5000', '32.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84322, '2022-05-23', 1824, 79945, 5189, 40858, '1.0000', '52.1519', '52.1519', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84323, '2022-05-23', 1674, 79946, 5189, 55764, '1.0000', '9.2774', '9.2774', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84324, '2022-05-23', 9649, 79947, 5189, 54588, '1.0000', '16.2437', '16.2437', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84325, '2022-05-23', 1342, 79948, 5189, 55508, '1.0000', '10.7593', '10.7593', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84326, '2022-05-23', 7638, 79949, 5189, 44598, '1.0000', '1.1651', '1.1651', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84327, '2022-05-23', 2169, 79950, 5189, 54664, '1.0000', '1.2111', '1.2111', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84328, '2022-05-23', 3057, 79951, 5189, 54621, '5.0000', '3.2824', '3.2824', '4.5000', '4.5000', '29.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84329, '2022-05-23', 2411, 79952, 5189, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84330, '2022-05-23', 2064, 79953, 5189, 5502, '1.0000', '4.2400', '4.2400', '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 (84331, '2022-05-23', 2354, 79954, 5189, 55769, '1.0000', '5.2632', '5.2632', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84332, '2022-05-23', 7915, 79955, 5189, 52088, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84333, '2022-05-23', 1935, 79956, 5189, 54624, '1.0000', '1.4427', '1.4427', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84334, '2022-05-23', 2965, 79957, 5190, NULL, '2.0000', '8.3288', '8.3288', '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 (84335, '2022-05-23', 2643, 79958, 5190, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84336, '2022-05-23', 1839, 79959, 5190, 55908, '1.0000', '17468.6132', '17468.6132', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84337, '2022-05-23', 2567, 79960, 5190, 55833, '1.0000', '37.4793', '37.4793', '48.0000', '48.0000', '3.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84338, '2022-05-23', 1687, 79961, 5190, 55585, '1.0000', '12.9886', '12.9886', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84339, '2022-05-23', 2067, 79962, 5190, NULL, '1.0000', '4.0000', '4.0000', '6.4700', '6.4700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84340, '2022-05-23', 1408, 79963, 5190, 37961, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84341, '2022-05-23', 2486, 79964, 5190, 24874, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '3.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 (84342, '2022-05-23', 2754, 79965, 5190, 18938, '1.0000', '0.0800', '0.0800', '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 (84343, '2022-05-23', 8017, 79966, 5190, NULL, '1.0000', '0.6000', '0.6000', '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 (84344, '2022-05-23', 7411, 79967, 5190, NULL, '1.0000', '1.3013', '1.3013', '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 (84345, '2022-05-23', 2254, 79968, 5190, NULL, '1.0000', '42.5400', '42.5400', '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 (84346, '2022-05-23', 2441, 79969, 5190, 55100, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84347, '2022-05-23', 2285, 79970, 5190, NULL, '1.0000', '26.8638', '26.8638', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84348, '2022-05-23', 1528, 79971, 5190, NULL, '1.0000', '172.4516', '172.4516', '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 (84349, '2022-05-23', 9834, 79972, 5190, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84350, '2022-05-23', 2315, 79973, 5190, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84351, '2022-05-23', 9791, 79974, 5190, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84352, '2022-05-23', 9463, 79975, 5190, NULL, '1.0000', '145.5664', '145.5664', '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 (84353, '2022-05-23', 2769, 79976, 5190, 54167, '3.0000', '1.8925', '1.8925', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84354, '2022-05-23', 7911, 79977, 5190, NULL, '1.0000', '4.3700', '4.3700', '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 (84355, '2022-05-23', 7652, 79978, 5190, NULL, '10.0000', '40.3000', '40.3000', '1.6000', '1.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 (84356, '2022-05-23', 7713, 79979, 5190, 55675, '4.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84357, '2022-05-23', 2250, 79980, 5190, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84358, '2022-05-23', 7862, 79981, 5190, 39847, '1.0000', '3.8500', '3.8500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84359, '2022-05-23', 7756, 79982, 5190, NULL, '1.0000', '2.5000', '2.5000', '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 (84360, '2022-05-23', 1435, 79983, 5190, 55949, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84361, '2022-05-23', 2169, 79984, 5190, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '77.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84362, '2022-05-23', 2262, 79985, 5190, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84363, '2022-05-23', 8745, 79986, 5190, 55429, '1.0000', '12.7500', '12.7500', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84364, '2022-05-23', 7592, 79987, 5190, NULL, '1.0000', '8.6500', '8.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 (84365, '2022-05-23', 9870, 79988, 5190, 55105, '1.0000', '6.2400', '6.2400', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84366, '2022-05-23', 2728, 79989, 5190, 19354, '1.0000', '0.8000', '0.8000', '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 (84367, '2022-05-23', 3016, 79990, 5190, 55552, '1.0000', '12.6063', '12.6063', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84368, '2022-05-23', 2361, 79991, 5190, 42543, '1.0000', '0.4744', '0.4744', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84369, '2022-05-23', 9762, 79992, 5190, 54884, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84370, '2022-05-23', 9791, 79993, 5190, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84371, '2022-05-23', 7741, 79994, 5190, NULL, '1.0000', '-52.1460', '-52.1460', '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 (84372, '2022-05-23', 1529, 79995, 5190, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84373, '2022-05-23', 7673, 79996, 5190, NULL, '1.0000', '15.5000', '15.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 (84374, '2022-05-23', 3058, 79997, 5190, 54912, '1.0000', '-23.3000', '-23.3000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84375, '2022-05-23', 2916, 79998, 5190, NULL, '1.0000', '538.9192', '538.9192', '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 (84376, '2022-05-23', 2260, 79999, 5190, 54937, '1.0000', '4.5431', '4.5431', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84377, '2022-05-23', 7713, 80000, 5190, 55675, '8.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '28.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84378, '2022-05-23', 1499, 80001, 5190, 54918, '2.0000', '0.3993', '0.3993', '0.6000', '0.6000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84379, '2022-05-23', 1409, 80002, 5190, 55894, '2.0000', '13.1111', '13.1111', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84380, '2022-05-23', 2293, 80003, 5190, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84381, '2022-05-23', 7933, 80004, 5190, NULL, '1.0000', '-0.1222', '-0.1222', '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 (84382, '2022-05-23', 7586, 80005, 5190, NULL, '1.0000', '4.1700', '4.1700', '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 (84383, '2022-05-23', 9794, 80006, 5190, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84384, '2022-05-23', 2315, 80007, 5190, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84385, '2022-05-23', 1402, 80008, 5190, 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 (84386, '2022-05-23', 2237, 80009, 5190, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84387, '2022-05-23', 1340, 80010, 5190, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84388, '2022-05-23', 7933, 80011, 5190, NULL, '1.0000', '-0.1222', '-0.1222', '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 (84389, '2022-05-23', 2293, 80012, 5190, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84390, '2022-05-23', 1699, 80013, 5190, NULL, '1.0000', '3.2000', '3.2000', '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 (84391, '2022-05-23', 2169, 80014, 5190, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '77.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84392, '2022-05-23', 2315, 80015, 5190, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84393, '2022-05-23', 8767, 80016, 5190, 55415, '1.0000', '8.5590', '8.5590', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84394, '2022-05-23', 8595, 80017, 5190, NULL, '1.0000', '3.9640', '3.9640', '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 (84395, '2022-05-23', 1340, 80018, 5190, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84396, '2022-05-23', 9737, 80019, 5190, 55942, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84397, '2022-05-23', 1872, 80020, 5190, 54552, '1.0000', '10.5986', '10.5986', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84398, '2022-05-23', 1529, 80021, 5190, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84399, '2022-05-23', 9388, 80022, 5190, 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 (84400, '2022-05-23', 1839, 80023, 5190, 55908, '1.0000', '17468.6132', '17468.6132', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84401, '2022-05-23', 7411, 80024, 5190, NULL, '2.0000', '1.3013', '1.3013', '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 (84402, '2022-05-23', 9817, 80025, 5190, 55531, '1.0000', '5.9800', '5.9800', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84403, '2022-05-23', 3001, 80026, 5190, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84404, '2022-05-23', 2169, 80027, 5190, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '77.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84405, '2022-05-23', 9730, 80028, 5190, 47078, '1.0000', '18.2000', '18.2000', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84406, '2022-05-23', 8810, 80029, 5190, NULL, '1.0000', '1.9200', '1.9200', '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 (84407, '2022-05-23', 9737, 80030, 5190, 55942, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84408, '2022-05-23', 9864, 80031, 5190, 55579, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84409, '2022-05-23', 7713, 80032, 5190, 55675, '1.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '35.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84410, '2022-05-23', 2908, 80033, 5190, 55931, '1.0000', '0.3518', '0.3518', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84411, '2022-05-23', 7933, 80034, 5190, NULL, '2.0000', '-0.1222', '-0.1222', '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 (84412, '2022-05-23', 7411, 80035, 5190, NULL, '1.0000', '1.3013', '1.3013', '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 (84413, '2022-05-23', 9909, 80036, 5190, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84414, '2022-05-23', 2169, 80037, 5190, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84415, '2022-05-23', 2315, 80038, 5190, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84416, '2022-05-23', 7411, 80039, 5190, NULL, '1.0000', '1.3013', '1.3013', '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 (84417, '2022-05-23', 9747, 80040, 5190, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84418, '2022-05-23', 9597, 80041, 5190, 48726, '1.0000', '18.9800', '18.9800', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84419, '2022-05-23', 1602, 80042, 5190, 55530, '2.0000', '7.0298', '7.0298', '10.0000', '10.0000', '28.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84420, '2022-05-23', 2302, 80043, 5191, 55484, '4.0000', '5.1961', '5.1961', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84421, '2022-05-23', 8775, 80044, 5192, 52321, '2.0000', '3.1153', '3.1153', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84422, '2022-05-23', 1663, 80045, 5193, NULL, '1.0000', '90.6500', '90.6500', '121.0000', '121.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84423, '2022-05-23', 1602, 80046, 5193, 55530, '2.0000', '7.0298', '7.0298', '10.0000', '10.0000', '26.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84424, '2022-05-23', 1306, 80047, 5193, 55711, '3.0000', '2.1000', '2.1000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84425, '2022-05-23', 9747, 80048, 5193, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84426, '2022-05-23', 9695, 80049, 5193, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84427, '2022-05-23', 9904, 80050, 5193, 54842, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84428, '2022-05-23', 2038, 80051, 5193, 54836, '1.0000', '17.0564', '17.0564', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84429, '2022-05-23', 1871, 80052, 5193, NULL, '10.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (84430, '2022-05-23', 1519, 80053, 5194, 55886, '1.0000', '3.3940', '3.3940', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84431, '2022-05-23', 7530, 80054, 5195, NULL, '1.0000', '7.7000', '7.7000', '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 (84432, '2022-05-23', 7753, 80055, 5195, NULL, '1.0000', '3.4000', '3.4000', '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 (84433, '2022-05-23', 7547, 80056, 5195, NULL, '4.0000', '0.0000', '0.0000', '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 (84434, '2022-05-23', 8395, 80057, 5195, NULL, '2.0000', '0.9700', '0.9700', '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 (84435, '2022-05-23', 7570, 80058, 5195, NULL, '2.0000', '10.0000', '10.0000', '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 (84436, '2022-05-23', 1819, 80059, 5195, 18240, '-5.0000', '5.5930', '5.5930', '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 (84437, '2022-05-23', 1819, 80059, 5195, NULL, '6.0000', '5.5930', '5.5930', '11.0000', '11.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 (84438, '2022-05-23', 9209, 80060, 5195, NULL, '1.0000', '4.8000', '4.8000', '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 (84439, '2022-05-23', 7657, 80061, 5195, NULL, '2.0000', '11.3200', '11.3200', '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 (84440, '2022-05-23', 7633, 80062, 5195, NULL, '1.0000', '2.8700', '2.8700', '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 (84441, '2022-05-23', 7707, 80063, 5195, NULL, '1.0000', '7.0000', '7.0000', '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 (84442, '2022-05-23', 2244, 80064, 5195, NULL, '1.0000', '7.3600', '7.3600', '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 (84443, '2022-05-23', 7321, 80065, 5195, NULL, '1.0000', '7.9500', '7.9500', '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 (84444, '2022-05-23', 7483, 80066, 5195, NULL, '3.0000', '0.4200', '0.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 (84445, '2022-05-23', 7527, 80067, 5195, NULL, '1.0000', '0.8900', '0.8900', '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 (84446, '2022-05-23', 9155, 80068, 5195, NULL, '1.0000', '1.8000', '1.8000', '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 (84447, '2022-05-23', 7782, 80069, 5195, 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 (84448, '2022-05-23', 7741, 80070, 5195, NULL, '1.0000', '1.2000', '1.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 (84449, '2022-05-23', 8208, 80071, 5195, NULL, '4.0000', '33.0000', '33.0000', '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 (84450, '2022-05-23', 7819, 80072, 5195, NULL, '2.0000', '9.5000', '9.5000', '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 (84451, '2022-05-23', 7412, 80073, 5195, NULL, '2.0000', '1.5200', '1.5200', '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 (84452, '2022-05-23', 7354, 80074, 5195, NULL, '4.0000', '0.3700', '0.3700', '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 (84453, '2022-05-23', 7886, 80075, 5195, 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 (84454, '2022-05-23', 8288, 80076, 5195, NULL, '2.0000', '1.1600', '1.1600', '1.8000', '1.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 (84455, '2022-05-23', 7473, 80077, 5195, NULL, '2.0000', '0.5300', '0.5300', '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 (84456, '2022-05-23', 8181, 80078, 5195, NULL, '4.0000', '4.5000', '4.5000', '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 (84457, '2022-05-23', 2242, 80079, 5195, 3059, '-41.0000', '0.4800', '0.4800', '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 (84458, '2022-05-23', 2242, 80079, 5195, NULL, '43.0000', '0.4800', '0.4800', '1.5000', '1.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 (84459, '2022-05-23', 1501, 80080, 5195, NULL, '1.0000', '2.0500', '2.0500', '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 (84460, '2022-05-23', 7514, 80081, 5195, NULL, '1.0000', '2.2500', '2.2500', '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 (84461, '2022-05-23', 7806, 80082, 5195, NULL, '5.0000', '1.8000', '1.8000', '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 (84462, '2022-05-23', 7555, 80083, 5195, 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 (84463, '2022-05-23', 9656, 80084, 5195, NULL, '1.0000', '33.0000', '33.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 (84464, '2022-05-23', 7886, 80085, 5195, 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 (84465, '2022-05-23', 7636, 80086, 5195, NULL, '10.0000', '2.5000', '2.5000', '3.5000', '3.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 (84466, '2022-05-23', 7794, 80087, 5195, NULL, '1.0000', '9.8000', '9.8000', '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 (84467, '2022-05-23', 7709, 80088, 5195, NULL, '2.0000', '3.5000', '3.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 (84468, '2022-05-23', 7852, 80089, 5195, NULL, '1.0000', '15.0000', '15.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 (84469, '2022-05-23', 7660, 80090, 5195, NULL, '1.0000', '3.6000', '3.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 (84470, '2022-05-23', 2315, 80091, 5195, 2735, '-377.0000', '0.3300', '0.3300', '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 (84471, '2022-05-23', 2315, 80091, 5195, NULL, '380.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-380.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84472, '2022-05-23', 7894, 80092, 5195, NULL, '1.0000', '3.8000', '3.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 (84473, '2022-05-23', 7952, 80093, 5195, 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 (84474, '2022-05-23', 7762, 80094, 5195, NULL, '1.0000', '1.5000', '1.5000', '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 (84475, '2022-05-23', 7674, 80095, 5195, NULL, '1.0000', '1.3000', '1.3000', '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 (84476, '2022-05-23', 2251, 80096, 5195, 2788, '-23.0000', '10.9700', '10.9700', '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 (84477, '2022-05-23', 2251, 80096, 5195, NULL, '24.0000', '10.9700', '10.9700', '16.0000', '16.0000', '-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 (84478, '2022-05-23', 7435, 80097, 5195, NULL, '3.0000', '5.2000', '5.2000', '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 (84479, '2022-05-23', 8360, 80098, 5195, NULL, '1.0000', '3.2300', '3.2300', '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 (84480, '2022-05-23', 9747, 80099, 5195, NULL, '3.0000', '0.6500', '0.6500', '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 (84481, '2022-05-23', 1846, 80100, 5195, 12032, '-15.0000', '12.0000', '12.0000', '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 (84482, '2022-05-23', 1846, 80100, 5195, NULL, '16.0000', '12.0000', '12.0000', '16.5000', '16.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 (84483, '2022-05-23', 2102, 80101, 5195, 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 (84484, '2022-05-23', 7917, 80102, 5195, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (84485, '2022-05-23', 8064, 80103, 5195, 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 (84486, '2022-05-23', 7518, 80104, 5195, NULL, '1.0000', '7.8200', '7.8200', '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 (84487, '2022-05-23', 9836, 80105, 5195, 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 (84488, '2022-05-23', 9507, 80106, 5195, NULL, '1.0000', '42.8000', '42.8000', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84489, '2022-05-23', 7848, 80107, 5195, NULL, '1.0000', '1.3500', '1.3500', '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 (84490, '2022-05-23', 1935, 80108, 5195, 5586, '-101.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 (84491, '2022-05-23', 1935, 80108, 5195, NULL, '102.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-102.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84492, '2022-05-23', 8771, 80109, 5195, NULL, '1.0000', '4.5000', '4.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 (84493, '2022-05-23', 9214, 80110, 5195, NULL, '1.0000', '9.6000', '9.6000', '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 (84494, '2022-05-23', 7547, 80111, 5195, NULL, '2.0000', '0.0000', '0.0000', '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 (84495, '2022-05-23', 7527, 80112, 5195, NULL, '1.0000', '0.8900', '0.8900', '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 (84496, '2022-05-23', 7412, 80113, 5195, NULL, '1.0000', '1.5200', '1.5200', '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 (84497, '2022-05-23', 7483, 80114, 5195, NULL, '1.0000', '0.4200', '0.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 (84498, '2022-05-23', 2315, 80115, 5195, 2735, '-377.0000', '0.3300', '0.3300', '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 (84499, '2022-05-23', 2315, 80115, 5195, NULL, '379.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-379.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84500, '2022-05-23', 9775, 80116, 5195, NULL, '1.0000', '7.9000', '7.9000', '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 (84501, '2022-05-23', 9797, 80117, 5195, 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 (84502, '2022-05-23', 8596, 80118, 5195, 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 (84503, '2022-05-23', 8304, 80119, 5195, NULL, '1.0000', '6.0000', '6.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 (84504, '2022-05-23', 2340, 80120, 5196, 3843, '-1.0000', '5.9200', '5.9200', '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 (84505, '2022-05-23', 2340, 80120, 5196, NULL, '2.0000', '5.9200', '5.9200', '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 (84506, '2022-05-23', 2135, 80121, 5197, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84507, '2022-05-23', 2305, 80122, 5197, 3138, '2.0000', '1.3300', '1.3300', '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 (84508, '2022-05-23', 1824, 80123, 5197, 40858, '1.0000', '52.1519', '52.1519', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84509, '2022-05-23', 2379, 80124, 5197, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84510, '2022-05-24', 1409, 80125, 5198, 55894, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84511, '2022-05-24', 2986, 80126, 5198, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84512, '2022-05-24', 2825, 80127, 5198, NULL, '1.0000', '12.0000', '12.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 (84513, '2022-05-24', 2169, 80128, 5198, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84514, '2022-05-24', 9726, 80129, 5198, 55630, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84515, '2022-05-24', 3001, 80130, 5198, 37759, '1.0000', '2.5621', '2.5621', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84516, '2022-05-24', 9747, 80131, 5198, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84517, '2022-05-24', 1394, 80132, 5198, 55146, '1.0000', '10.7744', '10.7744', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84518, '2022-05-24', 2066, 80133, 5198, 54883, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84519, '2022-05-24', 2315, 80134, 5198, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84520, '2022-05-24', 7353, 80135, 5198, NULL, '1.0000', '0.1900', '0.1900', '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 (84521, '2022-05-24', 1499, 80136, 5198, 54918, '5.0000', '0.3993', '0.3993', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84522, '2022-05-24', 2352, 80137, 5198, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (84523, '2022-05-24', 9726, 80138, 5199, 55630, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84524, '2022-05-24', 9729, 80139, 5199, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84525, '2022-05-24', 9840, 80140, 5199, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84526, '2022-05-24', 9740, 80141, 5199, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '140.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84527, '2022-05-24', 2887, 80142, 5199, 55148, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84528, '2022-05-24', 9762, 80143, 5199, 54884, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84529, '2022-05-24', 9762, 80143, 5199, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '40.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84530, '2022-05-24', 7608, 80144, 5200, 54710, '1.0000', '9.4757', '9.4757', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84531, '2022-05-24', 2241, 80145, 5200, 54286, '1.0000', '6.5272', '6.5272', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84532, '2022-05-24', 8097, 80146, 5200, 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 (84533, '2022-05-24', 8359, 80147, 5200, 56144, '1.0000', '569.6776', '569.6776', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84534, '2022-05-24', 2295, 80148, 5200, NULL, '3.0000', '-0.3800', '-0.3800', '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 (84535, '2022-05-24', 7753, 80149, 5200, 56182, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84536, '2022-05-24', 8677, 80150, 5200, 51791, '2.0000', '1.2300', '1.2300', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84537, '2022-05-24', 8444, 80151, 5200, 55973, '1.0000', '-37.8763', '-37.8763', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84538, '2022-05-24', 1837, 80152, 5200, 45863, '1.0000', '0.3813', '0.3813', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84539, '2022-05-24', 9723, 80153, 5200, 51777, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84540, '2022-05-24', 2102, 80154, 5200, 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 (84541, '2022-05-24', 8361, 80155, 5200, NULL, '1.0000', '7.2300', '7.2300', '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 (84542, '2022-05-24', 7412, 80156, 5200, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84543, '2022-05-24', 9463, 80157, 5200, 56041, '1.0000', '3.8056', '3.8056', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84544, '2022-05-24', 7491, 80158, 5200, NULL, '1.0000', '4.8666', '4.8666', '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 (84545, '2022-05-24', 7713, 80159, 5200, 50666, '4.0000', '0.3910', '0.3910', '0.6000', '0.6000', '102.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84546, '2022-05-24', 7926, 80160, 5200, NULL, '1.0000', '5.4999', '5.4999', '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 (84547, '2022-05-24', 7317, 80161, 5200, 56153, '1.0000', '14.6563', '14.6563', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84548, '2022-05-24', 7666, 80162, 5200, 55984, '1.0000', '11.4664', '11.4664', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84549, '2022-05-24', 7672, 80163, 5200, NULL, '1.0000', '3.8200', '3.8200', '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 (84550, '2022-05-24', 7711, 80164, 5200, NULL, '1.0000', '5113.9179', '5113.9179', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84551, '2022-05-24', 9620, 80165, 5200, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84552, '2022-05-24', 7780, 80166, 5200, NULL, '1.0000', '-383.6863', '-383.6863', '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 (84553, '2022-05-24', 7638, 80167, 5200, 56020, '1.0000', '4.1980', '4.1980', '22.5000', '22.5000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84554, '2022-05-24', 1542, 80168, 5200, NULL, '1.0000', '115.7329', '115.7329', '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 (84555, '2022-05-24', 8137, 80169, 5200, NULL, '1.0000', '3.0000', '3.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 (84556, '2022-05-24', 7674, 80170, 5200, 55974, '2.0000', '178.2720', '178.2720', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84557, '2022-05-24', 7819, 80171, 5200, 56164, '1.0000', '12.3724', '12.3724', '17.5000', '17.5000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84558, '2022-05-24', 7832, 80172, 5200, 54475, '1.0000', '12.9545', '12.9545', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84559, '2022-05-24', 2237, 80173, 5201, 2781, '-54.0000', '1.0600', '1.0600', '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 (84560, '2022-05-24', 2237, 80173, 5201, NULL, '55.0000', '1.0600', '1.0600', '2.5000', '2.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 (84561, '2022-05-24', 1602, 80174, 5201, 5897, '-145.0000', '6.7859', '6.7859', '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 (84562, '2022-05-24', 1602, 80174, 5201, NULL, '146.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-146.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84563, '2022-05-24', 2633, 80175, 5201, 17589, '-9.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 (84564, '2022-05-24', 2633, 80175, 5201, NULL, '10.0000', '3.5000', '3.5000', '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 (84565, '2022-05-24', 9468, 80176, 5201, NULL, '1.0000', '17.5000', '17.5000', '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 (84566, '2022-05-24', 2233, 80177, 5201, 2777, '-30.0000', '19.0200', '19.0200', '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 (84567, '2022-05-24', 2233, 80177, 5201, NULL, '31.0000', '19.0200', '19.0200', '39.0000', '39.0000', '-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 (84568, '2022-05-24', 2442, 80178, 5201, 5312, '-8.0000', '4.8000', '4.8000', '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 (84569, '2022-05-24', 2442, 80178, 5201, NULL, '9.0000', '4.8000', '4.8000', '8.0000', '8.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 (84570, '2022-05-24', 2681, 80179, 5201, 12164, '-22.0000', '12.5000', '12.5000', '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 (84571, '2022-05-24', 2681, 80179, 5201, NULL, '24.0000', '12.5000', '12.5000', '24.5000', '24.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 (84572, '2022-05-24', 2916, 80180, 5201, 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 (84573, '2022-05-24', 8059, 80181, 5201, NULL, '1.0000', '6.0000', '6.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 (84574, '2022-05-24', 1992, 80182, 5201, 6355, '-5.0000', '1.5000', '1.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 (84575, '2022-05-24', 1992, 80182, 5201, NULL, '6.0000', '1.5000', '1.5000', '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 (84576, '2022-05-24', 1763, 80183, 5201, 3173, '1.0000', '4.6900', '4.6900', '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 (84577, '2022-05-24', 9734, 80184, 5201, NULL, '10.0000', '0.3200', '0.3200', '0.5000', '0.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 (84578, '2022-05-24', 8758, 80185, 5201, NULL, '1.0000', '5.8000', '5.8000', '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 (84579, '2022-05-24', 2858, 80186, 5201, 17772, '-79.0000', '1.0000', '1.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 (84580, '2022-05-24', 2858, 80186, 5201, NULL, '80.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84581, '2022-05-24', 2070, 80187, 5201, NULL, '1.0000', '2.0000', '2.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 (84582, '2022-05-24', 1967, 80188, 5202, NULL, '1.0000', '25.3000', '25.3000', '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 (84583, '2022-05-24', 7674, 80189, 5203, 55974, '1.0000', '178.2720', '178.2720', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84584, '2022-05-24', 7687, 80190, 5203, 54125, '1.0000', '36.4900', '36.4900', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84585, '2022-05-24', 2108, 80191, 5204, 55935, '1.0000', '0.8250', '0.8250', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84586, '2022-05-24', 2295, 80192, 5204, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '80.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84587, '2022-05-24', 9740, 80193, 5204, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '139.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84588, '2022-05-24', 7588, 80194, 5205, NULL, '1.0000', '10.0320', '10.0320', '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 (84589, '2022-05-24', 7674, 80195, 5206, 55974, '2.0000', '178.2720', '178.2720', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84590, '2022-05-24', 7757, 80196, 5207, NULL, '1.0000', '82.4400', '82.4400', '179.0000', '179.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84591, '2022-05-24', 2943, 80197, 5208, 19987, '-12.0000', '2.1800', '2.1800', '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 (84592, '2022-05-24', 2943, 80197, 5208, NULL, '13.0000', '2.1800', '2.1800', '4.0000', '4.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 (84593, '2022-05-24', 8006, 80198, 5208, 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 (84594, '2022-05-24', 1339, 80199, 5208, 13004, '-16.0000', '1.6012', '1.6012', '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 (84595, '2022-05-24', 1339, 80199, 5208, NULL, '17.0000', '1.6012', '1.6012', '4.0000', '4.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 (84596, '2022-05-24', 7663, 80200, 5208, NULL, '1.0000', '8.2000', '8.2000', '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 (84597, '2022-05-24', 7661, 80201, 5208, NULL, '1.0000', '7.2000', '7.2000', '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 (84598, '2022-05-24', 7672, 80202, 5208, NULL, '3.0000', '1.0200', '1.0200', '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 (84599, '2022-05-24', 7666, 80203, 5208, NULL, '1.0000', '3.6000', '3.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 (84600, '2022-05-24', 8063, 80204, 5208, NULL, '1.0000', '1.6000', '1.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 (84601, '2022-05-24', 2315, 80205, 5208, 2735, '-382.0000', '0.3300', '0.3300', '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 (84602, '2022-05-24', 2315, 80205, 5208, NULL, '384.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-384.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84603, '2022-05-24', 9734, 80206, 5208, NULL, '4.0000', '0.3200', '0.3200', '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 (84604, '2022-05-24', 9019, 80207, 5208, NULL, '1.0000', '6.0000', '6.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 (84605, '2022-05-24', 7899, 80208, 5208, NULL, '1.0000', '3.3000', '3.3000', '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 (84606, '2022-05-24', 7825, 80209, 5208, NULL, '1.0000', '6.5000', '6.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 (84607, '2022-05-24', 8208, 80210, 5208, NULL, '2.0000', '33.0000', '33.0000', '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 (84608, '2022-05-24', 1840, 80211, 5208, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (84609, '2022-05-24', 8097, 80212, 5208, 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 (84610, '2022-05-24', 1846, 80213, 5208, 12032, '-16.0000', '12.0000', '12.0000', '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 (84611, '2022-05-24', 1846, 80213, 5208, NULL, '17.0000', '12.0000', '12.0000', '16.5000', '16.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 (84612, '2022-05-24', 9794, 80214, 5208, NULL, '2.0000', '1.0800', '1.0800', '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 (84613, '2022-05-24', 7825, 80215, 5208, NULL, '1.0000', '6.5000', '6.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 (84614, '2022-05-24', 8336, 80216, 5208, NULL, '2.0000', '3.4000', '3.4000', '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 (84615, '2022-05-24', 7794, 80217, 5208, NULL, '1.0000', '9.8000', '9.8000', '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 (84616, '2022-05-24', 7636, 80218, 5208, NULL, '3.0000', '2.5000', '2.5000', '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 (84617, '2022-05-24', 7711, 80219, 5208, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84618, '2022-05-24', 8276, 80220, 5208, 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 (84619, '2022-05-24', 8643, 80221, 5208, NULL, '5.0000', '11.0000', '11.0000', '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 (84620, '2022-05-24', 7658, 80222, 5208, NULL, '10.0000', '2.0200', '2.0200', '3.5000', '3.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 (84621, '2022-05-24', 9794, 80223, 5208, NULL, '1.0000', '1.0800', '1.0800', '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 (84622, '2022-05-24', 1577, 80224, 5208, 7596, '-14.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 (84623, '2022-05-24', 1577, 80224, 5208, NULL, '15.0000', '2.5000', '2.5000', '3.5000', '3.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 (84624, '2022-05-24', 9092, 80225, 5208, NULL, '1.0000', '5.2900', '5.2900', '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 (84625, '2022-05-24', 7318, 80226, 5208, NULL, '1.0000', '13.4400', '13.4400', '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 (84626, '2022-05-24', 7609, 80227, 5208, NULL, '1.0000', '4.3300', '4.3300', '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 (84627, '2022-05-24', 7652, 80228, 5208, NULL, '4.0000', '0.9800', '0.9800', '1.6000', '1.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 (84628, '2022-05-24', 8154, 80229, 5208, NULL, '1.0000', '12.3000', '12.3000', '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 (84629, '2022-05-24', 8085, 80230, 5208, NULL, '2.0000', '1.1700', '1.1700', '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 (84630, '2022-05-24', 7411, 80231, 5208, NULL, '1.0000', '1.3500', '1.3500', '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 (84631, '2022-05-24', 8312, 80232, 5208, NULL, '2.0000', '22.9100', '22.9100', '30.0000', '30.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 (84632, '2022-05-24', 9718, 80233, 5208, NULL, '1.0000', '13.3000', '13.3000', '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 (84633, '2022-05-24', 8040, 80234, 5208, NULL, '1.0000', '14.9000', '14.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 (84634, '2022-05-24', 9747, 80235, 5208, NULL, '2.0000', '0.6500', '0.6500', '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 (84635, '2022-05-24', 7509, 80236, 5208, 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 (84636, '2022-05-24', 7819, 80237, 5208, NULL, '1.0000', '9.5000', '9.5000', '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 (84637, '2022-05-24', 9794, 80238, 5208, NULL, '3.0000', '1.0800', '1.0800', '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 (84638, '2022-05-24', 7432, 80239, 5208, NULL, '1.0000', '14.7000', '14.7000', '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 (84639, '2022-05-24', 7781, 80240, 5208, NULL, '1.0000', '4.2500', '4.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 (84640, '2022-05-24', 2248, 80241, 5208, 2785, '-11.0000', '2.5000', '2.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 (84641, '2022-05-24', 2248, 80241, 5208, NULL, '13.0000', '2.5000', '2.5000', '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 (84642, '2022-05-24', 9092, 80242, 5208, NULL, '1.0000', '5.2900', '5.2900', '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 (84643, '2022-05-24', 7730, 80243, 5208, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (84644, '2022-05-24', 7509, 80244, 5208, NULL, '2.0000', '6.5000', '6.5000', '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 (84645, '2022-05-24', 1665, 80245, 5208, 3235, '-106.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 (84646, '2022-05-24', 1665, 80245, 5208, NULL, '107.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-107.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84647, '2022-05-24', 7709, 80246, 5208, NULL, '2.0000', '3.5000', '3.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 (84648, '2022-05-24', 8395, 80247, 5208, NULL, '1.0000', '0.9700', '0.9700', '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 (84649, '2022-05-24', 7768, 80248, 5208, NULL, '1.0000', '12.2000', '12.2000', '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 (84650, '2022-05-24', 7411, 80249, 5208, NULL, '1.0000', '1.3500', '1.3500', '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 (84651, '2022-05-24', 1337, 80250, 5209, 40900, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84652, '2022-05-24', 8489, 80251, 5209, NULL, '2.0000', '30.3000', '30.3000', '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 (84653, '2022-05-24', 1630, 80252, 5209, 48760, '1.0000', '17.7346', '17.7346', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84654, '2022-05-24', 9468, 80253, 5209, NULL, '1.0000', '36.5000', '36.5000', '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 (84655, '2022-05-24', 2068, 80254, 5209, 55506, '1.0000', '11.7097', '11.7097', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84656, '2022-05-24', 2169, 80255, 5209, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84657, '2022-05-24', 1845, 80256, 5209, 55763, '1.0000', '21.1002', '21.1002', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84658, '2022-05-24', 1505, 80257, 5209, 54611, '1.0000', '41.1161', '41.1161', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84659, '2022-05-24', 9734, 80258, 5209, 56220, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '99.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84660, '2022-05-24', 2655, 80259, 5209, 55437, '1.0000', '6.7250', '6.7250', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84661, '2022-05-24', 8476, 80260, 5209, NULL, '5.0000', '23.0000', '23.0000', '0.6000', '0.6000', '-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 (84662, '2022-05-24', 7917, 80261, 5209, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (84663, '2022-05-24', 2775, 80262, 5209, 40898, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84664, '2022-05-24', 7819, 80263, 5209, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84665, '2022-05-24', 2411, 80264, 5209, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84666, '2022-05-24', 2135, 80265, 5209, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84667, '2022-05-24', 1863, 80266, 5209, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84668, '2022-05-24', 9866, 80267, 5209, 56221, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84669, '2022-05-24', 2825, 80268, 5209, NULL, '1.0000', '12.0000', '12.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 (84670, '2022-05-24', 2237, 80269, 5209, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84671, '2022-05-24', 2315, 80270, 5209, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (84672, '2022-05-24', 2233, 80271, 5209, 55867, '1.0000', '22.0646', '22.0646', '39.0000', '39.0000', '4.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84673, '2022-05-24', 1837, 80272, 5209, 56224, '1.0000', '0.5767', '0.5767', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84674, '2022-05-24', 2437, 80273, 5209, 32621, '1.0000', '90.9028', '90.9028', '120.0000', '120.0000', '3.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84675, '2022-05-24', 9821, 80274, 5209, 55823, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84676, '2022-05-24', 1372, 80275, 5209, 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 (84677, '2022-05-24', 1715, 80276, 5209, 55770, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84678, '2022-05-24', 2582, 80277, 5209, 53272, '1.0000', '13.0000', '13.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84679, '2022-05-24', 2354, 80278, 5209, 55769, '1.0000', '5.2632', '5.2632', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84680, '2022-05-24', 7756, 80279, 5209, NULL, '1.0000', '26.9296', '26.9296', '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 (84681, '2022-05-24', 9634, 80280, 5209, NULL, '3.0000', '4.8000', '4.8000', '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 (84682, '2022-05-24', 7411, 80281, 5209, 55760, '2.0000', '1.3793', '1.3793', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84683, '2022-05-24', 9747, 80282, 5209, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84684, '2022-05-24', 2315, 80283, 5209, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (84685, '2022-05-24', 9794, 80284, 5209, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84686, '2022-05-24', 8476, 80285, 5209, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (84687, '2022-05-24', 7917, 80286, 5209, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (84688, '2022-05-24', 7848, 80287, 5209, NULL, '1.0000', '15.0000', '15.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 (84689, '2022-05-24', 9827, 80288, 5209, 56243, '1.0000', '16.9421', '16.9421', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84690, '2022-05-24', 7753, 80289, 5209, NULL, '1.0000', '3.1400', '3.1400', '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 (84691, '2022-05-24', 7524, 80290, 5209, NULL, '1.0000', '11.9500', '11.9500', '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 (84692, '2022-05-24', 9734, 80291, 5209, 56220, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84693, '2022-05-24', 2315, 80292, 5210, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84694, '2022-05-24', 7411, 80293, 5210, NULL, '1.0000', '1.3013', '1.3013', '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 (84695, '2022-05-24', 9794, 80294, 5210, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84696, '2022-05-24', 2893, 80295, 5210, NULL, '1.0000', '6.4400', '6.4400', '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 (84697, '2022-05-24', 8068, 80296, 5210, NULL, '1.0000', '8.7900', '8.7900', '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 (84698, '2022-05-24', 1529, 80297, 5210, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84699, '2022-05-24', 9791, 80298, 5210, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84700, '2022-05-24', 2765, 80299, 5210, NULL, '1.0000', '5.3000', '5.3000', '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 (84701, '2022-05-24', 7819, 80300, 5210, NULL, '1.0000', '10.0999', '10.0999', '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 (84702, '2022-05-24', 2543, 80301, 5210, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84703, '2022-05-24', 1602, 80302, 5210, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '25.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84704, '2022-05-24', 9747, 80303, 5210, 55918, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84705, '2022-05-24', 1760, 80304, 5210, NULL, '1.0000', '1.5900', '1.5900', '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 (84706, '2022-05-24', 2252, 80305, 5210, 55622, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84707, '2022-05-24', 1825, 80306, 5210, 55678, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84708, '2022-05-24', 7323, 80307, 5210, 55541, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84709, '2022-05-24', 1910, 80308, 5210, 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 (84710, '2022-05-24', 1411, 80309, 5210, 54969, '1.0000', '25.9970', '25.9970', '35.0000', '35.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84711, '2022-05-24', 8775, 80310, 5210, 43988, '2.0000', '-1.6464', '-1.6464', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84712, '2022-05-24', 9915, 80311, 5210, 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 (84713, '2022-05-24', 3080, 80312, 5210, 25165, '1.0000', '8.5000', '8.5000', '12.0000', '12.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 (84714, '2022-05-24', 7802, 80313, 5210, NULL, '1.0000', '1.1497', '1.1497', '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 (84715, '2022-05-24', 2315, 80314, 5210, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84716, '2022-05-24', 1307, 80315, 5210, NULL, '1.0000', '-11.7284', '-11.7284', '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 (84717, '2022-05-24', 1912, 80316, 5210, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84718, '2022-05-24', 1519, 80317, 5210, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84719, '2022-05-24', 1311, 80318, 5210, 52210, '3.0000', '0.3700', '0.3700', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84720, '2022-05-24', 2315, 80319, 5210, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84721, '2022-05-24', 2293, 80320, 5210, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84722, '2022-05-24', 2283, 80321, 5210, 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 (84723, '2022-05-24', 2169, 80322, 5210, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84724, '2022-05-24', 1760, 80323, 5210, NULL, '2.0000', '1.5900', '1.5900', '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 (84725, '2022-05-24', 2169, 80324, 5210, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84726, '2022-05-24', 2315, 80325, 5210, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84727, '2022-05-24', 7506, 80326, 5210, NULL, '1.0000', '15.0000', '15.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 (84728, '2022-05-24', 2156, 80327, 5210, 55716, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84729, '2022-05-24', 8208, 80328, 5210, NULL, '2.0000', '33.0000', '33.0000', '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 (84730, '2022-05-24', 1499, 80329, 5210, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84731, '2022-05-24', 2315, 80330, 5210, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84732, '2022-05-24', 2169, 80331, 5210, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84733, '2022-05-24', 1337, 80332, 5210, 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 (84734, '2022-05-24', 9388, 80333, 5210, 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 (84735, '2022-05-24', 2037, 80334, 5210, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '5.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 (84736, '2022-05-24', 2315, 80335, 5210, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84737, '2022-05-24', 1521, 80336, 5210, NULL, '5.0000', '1.1500', '1.1500', '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 (84738, '2022-05-24', 7593, 80337, 5210, NULL, '2.0000', '0.8000', '0.8000', '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 (84739, '2022-05-24', 2095, 80338, 5210, NULL, '1.0000', '1.5000', '1.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 (84740, '2022-05-24', 9870, 80339, 5210, 55105, '1.0000', '6.2400', '6.2400', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84741, '2022-05-24', 9731, 80340, 5210, 54523, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84742, '2022-05-24', 1499, 80341, 5210, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84743, '2022-05-24', 7411, 80342, 5210, NULL, '1.0000', '1.3013', '1.3013', '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 (84744, '2022-05-24', 9762, 80343, 5210, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84745, '2022-05-24', 2221, 80344, 5210, NULL, '1.0000', '15.0000', '15.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 (84746, '2022-05-24', 1519, 80345, 5210, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84747, '2022-05-24', 7514, 80346, 5210, NULL, '1.0000', '2.2500', '2.2500', '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 (84748, '2022-05-24', 2251, 80347, 5210, NULL, '1.0000', '11.3731', '11.3731', '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 (84749, '2022-05-24', 2315, 80348, 5210, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84750, '2022-05-24', 7713, 80349, 5210, 55675, '4.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84751, '2022-05-24', 1519, 80350, 5210, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84752, '2022-05-24', 2962, 80351, 5210, 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 (84753, '2022-05-24', 1342, 80352, 5210, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84754, '2022-05-24', 1519, 80353, 5210, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84755, '2022-05-24', 1855, 80354, 5210, NULL, '1.0000', '1.5003', '1.5003', '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 (84756, '2022-05-24', 2066, 80355, 5210, 54883, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84757, '2022-05-24', 1580, 80356, 5210, 54914, '1.0000', '1.4639', '1.4639', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84758, '2022-05-24', 2908, 80357, 5210, 55931, '2.0000', '0.3518', '0.3518', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84759, '2022-05-24', 2293, 80358, 5210, 55919, '3.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84760, '2022-05-24', 1542, 80359, 5210, 19389, '1.0000', '90.0000', '90.0000', '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 (84761, '2022-05-24', 3017, 80360, 5210, 54537, '2.0000', '3.9829', '3.9829', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84762, '2022-05-24', 1871, 80361, 5210, NULL, '1.0000', '-16.6248', '-16.6248', '3.7000', '3.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 (84763, '2022-05-24', 2506, 80362, 5210, NULL, '1.0000', '3.7156', '3.7156', '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 (84764, '2022-05-24', 7411, 80363, 5210, NULL, '1.0000', '1.3013', '1.3013', '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 (84765, '2022-05-24', 1912, 80364, 5210, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84766, '2022-05-24', 1668, 80365, 5210, 55932, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84767, '2022-05-24', 1871, 80366, 5210, NULL, '6.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (84768, '2022-05-24', 2730, 80367, 5210, 51643, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84769, '2022-05-24', 2315, 80368, 5210, 54915, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84770, '2022-05-24', 2699, 80369, 5210, NULL, '1.0000', '3.6019', '3.6019', '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 (84771, '2022-05-24', 9695, 80370, 5210, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84772, '2022-05-24', 7886, 80371, 5211, 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 (84773, '2022-05-24', 2289, 80372, 5212, 2949, '-163.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 (84774, '2022-05-24', 2289, 80372, 5212, NULL, '167.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-167.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84775, '2022-05-24', 1841, 80373, 5212, NULL, '4.0000', '142.5780', '142.5780', '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 (84776, '2022-05-24', 1967, 80374, 5212, NULL, '1.0000', '19.5900', '19.5900', '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 (84777, '2022-05-24', 7411, 80375, 5212, NULL, '2.0000', '1.3500', '1.3500', '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 (84778, '2022-05-24', 7672, 80376, 5212, NULL, '1.0000', '1.0200', '1.0200', '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 (84779, '2022-05-24', 7709, 80377, 5213, NULL, '2.0000', '3.5000', '3.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 (84780, '2022-05-24', 9565, 80378, 5213, NULL, '1.0000', '4.5000', '4.5000', '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 (84781, '2022-05-25', 8020, 80379, 5214, 55995, '1.0000', '11.2392', '11.2392', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84782, '2022-05-25', 7317, 80380, 5214, 56153, '1.0000', '14.6563', '14.6563', '20.0000', '20.0000', '18.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84783, '2022-05-25', 7753, 80381, 5214, 56182, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84784, '2022-05-25', 7473, 80382, 5214, NULL, '2.0000', '-68.3632', '-68.3632', '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 (84785, '2022-05-25', 1501, 80383, 5214, 56037, '1.0000', '2.4227', '2.4227', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84786, '2022-05-25', 9089, 80384, 5214, 55066, '1.0000', '6.2175', '6.2175', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84787, '2022-05-25', 2351, 80385, 5214, 50713, '1.0000', '17.9607', '17.9607', '24.5000', '24.5000', '4.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84788, '2022-05-25', 9534, 80386, 5214, 54714, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84789, '2022-05-25', 7897, 80387, 5214, NULL, '1.0000', '3.0000', '3.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 (84790, '2022-05-25', 9462, 80388, 5214, 38138, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 271);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84791, '2022-05-25', 7886, 80389, 5214, 54287, '1.0000', '5.1718', '5.1718', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84792, '2022-05-25', 7630, 80390, 5214, 53942, '2.0000', '5.6211', '5.6211', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84793, '2022-05-25', 8413, 80391, 5214, 53790, '1.0000', '89.9992', '89.9992', '120.0000', '120.0000', '0.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84794, '2022-05-25', 7478, 80392, 5214, 52449, '8.0000', '33.7925', '33.7925', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84795, '2022-05-25', 2813, 80393, 5214, 51276, '1.0000', '72.0700', '72.0700', '95.5000', '95.5000', '1.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84796, '2022-05-25', 9839, 80394, 5214, 54508, '1.0000', '15.0200', '15.0200', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84797, '2022-05-25', 7514, 80395, 5214, NULL, '1.0000', '3234.0124', '3234.0124', '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 (84798, '2022-05-25', 1340, 80396, 5214, NULL, '1.0000', '3.0692', '3.0692', '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 (84799, '2022-05-25', 8596, 80397, 5214, NULL, '1.0000', '18.5278', '18.5278', '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 (84800, '2022-05-25', 9579, 80398, 5214, 56067, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84801, '2022-05-25', 9785, 80399, 5214, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84802, '2022-05-25', 7560, 80400, 5214, NULL, '1.0000', '39.3500', '39.3500', '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 (84803, '2022-05-25', 7674, 80401, 5214, 55974, '1.0000', '178.2720', '178.2720', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84804, '2022-05-25', 7560, 80402, 5214, NULL, '1.0000', '39.3500', '39.3500', '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 (84805, '2022-05-25', 8000, 80403, 5214, NULL, '1.0000', '-706.5226', '-706.5226', '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 (84806, '2022-05-25', 8497, 80404, 5214, NULL, '1.0000', '58.7666', '58.7666', '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 (84807, '2022-05-25', 7703, 80405, 5214, NULL, '2.0000', '102.7757', '102.7757', '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 (84808, '2022-05-25', 7523, 80406, 5214, NULL, '1.0000', '11.8300', '11.8300', '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 (84809, '2022-05-25', 1432, 80407, 5215, NULL, '1.0000', '8.1574', '8.1574', '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 (84810, '2022-05-25', 7411, 80408, 5215, NULL, '1.0000', '1.3500', '1.3500', '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 (84811, '2022-05-25', 1871, 80409, 5215, 8223, '-182.0000', '24.5246', '24.5246', '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 (84812, '2022-05-25', 1871, 80409, 5215, NULL, '192.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-192.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84813, '2022-05-25', 1342, 80410, 5215, 11264, '-15.0000', '6.8074', '6.8074', '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 (84814, '2022-05-25', 1342, 80410, 5215, NULL, '16.0000', '6.8074', '6.8074', '10.0000', '10.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 (84815, '2022-05-25', 2416, 80411, 5215, 4745, '-30.0000', '1.2000', '1.2000', '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 (84816, '2022-05-25', 2416, 80411, 5215, NULL, '31.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (84817, '2022-05-25', 1370, 80412, 5215, 270, '1.0000', '48.7250', '48.7250', '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 (84818, '2022-05-25', 9729, 80413, 5215, NULL, '1.0000', '0.6200', '0.6200', '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 (84819, '2022-05-25', 9788, 80414, 5215, 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 (84820, '2022-05-25', 2366, 80415, 5215, 3833, '-58.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 (84821, '2022-05-25', 2366, 80415, 5215, NULL, '60.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84822, '2022-05-25', 7411, 80416, 5215, NULL, '1.0000', '1.3500', '1.3500', '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 (84823, '2022-05-25', 1651, 80417, 5215, 3222, '-57.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84824, '2022-05-25', 1651, 80417, 5215, NULL, '58.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84825, '2022-05-25', 2008, 80418, 5215, 6366, '-1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84826, '2022-05-25', 2008, 80418, 5215, NULL, '2.0000', '10.0000', '10.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 (84827, '2022-05-25', 2528, 80419, 5215, 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 (84828, '2022-05-25', 1790, 80420, 5215, 4908, '-2.0000', '16.9500', '16.9500', '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 (84829, '2022-05-25', 1790, 80420, 5215, NULL, '3.0000', '16.9500', '16.9500', '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 (84830, '2022-05-25', 1561, 80421, 5215, 1636, '4.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 (84831, '2022-05-25', 1688, 80422, 5215, 4896, '-11.0000', '18.5000', '18.5000', '31.5000', '31.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 (84832, '2022-05-25', 1688, 80422, 5215, NULL, '12.0000', '18.5000', '18.5000', '31.5000', '31.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 (84833, '2022-05-25', 1638, 80423, 5215, 3211, '16.0000', '10.8843', '10.8843', '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 (84834, '2022-05-25', 1638, 80423, 5215, 498, '8.0000', '10.8843', '10.8843', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 41);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84835, '2022-05-25', 2592, 80424, 5215, 10812, '-18.0000', '7.9670', '7.9670', '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 (84836, '2022-05-25', 2592, 80424, 5215, NULL, '19.0000', '7.9670', '7.9670', '18.0000', '18.0000', '-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 (84837, '2022-05-25', 2285, 80425, 5215, 2945, '-43.0000', '35.8000', '35.8000', '65.5000', '65.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 (84838, '2022-05-25', 2285, 80425, 5215, NULL, '44.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84839, '2022-05-25', 2990, 80426, 5215, NULL, '1.0000', '1.1200', '1.1200', '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 (84840, '2022-05-25', 1672, 80427, 5215, 7384, '-115.0000', '2.8700', '2.8700', '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 (84841, '2022-05-25', 1672, 80427, 5215, NULL, '125.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-125.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84842, '2022-05-25', 2105, 80428, 5215, NULL, '2.0000', '1.3500', '1.3500', '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 (84843, '2022-05-25', 9732, 80429, 5215, 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 (84844, '2022-05-25', 1520, 80430, 5215, 33822, '1.0000', '1.4700', '1.4700', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84845, '2022-05-25', 1602, 80431, 5215, 5897, '-146.0000', '6.7859', '6.7859', '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 (84846, '2022-05-25', 1602, 80431, 5215, NULL, '147.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-147.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84847, '2022-05-25', 2825, 80432, 5215, NULL, '1.0000', '12.0000', '12.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 (84848, '2022-05-25', 2221, 80433, 5215, 4154, '-61.0000', '14.4737', '14.4737', '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 (84849, '2022-05-25', 2221, 80433, 5215, NULL, '62.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84850, '2022-05-25', 2285, 80434, 5215, 2945, '-43.0000', '35.8000', '35.8000', '65.5000', '65.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 (84851, '2022-05-25', 2285, 80434, 5215, NULL, '44.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84852, '2022-05-25', 1452, 80435, 5215, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84853, '2022-05-25', 8767, 80436, 5215, NULL, '1.0000', '6.6900', '6.6900', '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 (84854, '2022-05-25', 2315, 80437, 5215, 2735, '-384.0000', '0.3300', '0.3300', '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 (84855, '2022-05-25', 2315, 80437, 5215, NULL, '385.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-385.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84856, '2022-05-25', 9695, 80438, 5215, NULL, '1.0000', '4.5000', '4.5000', '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 (84857, '2022-05-25', 2858, 80439, 5216, 17772, '-80.0000', '1.0000', '1.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 (84858, '2022-05-25', 2858, 80439, 5216, NULL, '81.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84859, '2022-05-25', 2567, 80440, 5216, 7177, '-9.0000', '33.0000', '33.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 (84860, '2022-05-25', 2567, 80440, 5216, NULL, '10.0000', '33.0000', '33.0000', '48.0000', '48.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 (84861, '2022-05-25', 2511, 80441, 5216, 9740, '-15.0000', '8.5000', '8.5000', '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 (84862, '2022-05-25', 2511, 80441, 5216, NULL, '16.0000', '8.5000', '8.5000', '16.0000', '16.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 (84863, '2022-05-25', 9316, 80442, 5216, NULL, '2.0000', '8.7300', '8.7300', '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 (84864, '2022-05-25', 1373, 80443, 5216, 18885, '2.0000', '8.1000', '8.1000', '10.5000', '10.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 (84865, '2022-05-25', 2289, 80444, 5217, NULL, '6.0000', '0.1400', '0.1400', '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 (84866, '2022-05-25', 1840, 80445, 5217, 55654, '6.0000', '0.2400', '0.2400', '0.5000', '0.5000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84867, '2022-05-25', 7585, 80446, 5217, NULL, '1.0000', '3.9600', '3.9600', '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 (84868, '2022-05-25', 2293, 80447, 5217, 55919, '1.0000', '-17.4320', '-17.4320', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84869, '2022-05-25', 2293, 80447, 5217, NULL, '2.0000', '-17.4320', '-17.4320', '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 (84870, '2022-05-25', 1846, 80448, 5217, 55915, '1.0000', '478.9750', '478.9750', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84871, '2022-05-25', 2252, 80449, 5217, 55622, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84872, '2022-05-25', 2169, 80450, 5217, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84873, '2022-05-25', 2435, 80451, 5217, NULL, '1.0000', '8.0938', '8.0938', '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 (84874, '2022-05-25', 2242, 80452, 5217, 54572, '5.0000', '2.4162', '2.4162', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84875, '2022-05-25', 2131, 80453, 5217, 42641, '1.0000', '7.5500', '7.5500', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84876, '2022-05-25', 2251, 80454, 5217, NULL, '1.0000', '11.3731', '11.3731', '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 (84877, '2022-05-25', 8177, 80455, 5217, NULL, '1.0000', '12.9000', '12.9000', '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 (84878, '2022-05-25', 2237, 80456, 5217, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84879, '2022-05-25', 8746, 80457, 5217, 55424, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84880, '2022-05-25', 2545, 80458, 5217, 55650, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84881, '2022-05-25', 8184, 80459, 5217, 55684, '10.0000', '3.0310', '3.0310', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84882, '2022-05-25', 9649, 80460, 5217, NULL, '1.0000', '14.2780', '14.2780', '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 (84883, '2022-05-25', 2221, 80461, 5217, NULL, '1.0000', '15.0000', '15.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 (84884, '2022-05-25', 1342, 80462, 5217, 55536, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84885, '2022-05-25', 9740, 80463, 5217, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '138.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84886, '2022-05-25', 7565, 80464, 5217, NULL, '1.0000', '0.2000', '0.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 (84887, '2022-05-25', 1620, 80465, 5217, 55636, '1.0000', '2.2583', '2.2583', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84888, '2022-05-25', 7713, 80466, 5217, 55675, '1.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84889, '2022-05-25', 7637, 80467, 5217, 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 (84890, '2022-05-25', 8889, 80468, 5217, NULL, '1.0000', '34.0000', '34.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 (84891, '2022-05-25', 1787, 80469, 5217, NULL, '1.0000', '0.5000', '0.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 (84892, '2022-05-25', 2379, 80470, 5217, NULL, '1.0000', '-3.0170', '-3.0170', '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 (84893, '2022-05-25', 1837, 80471, 5217, NULL, '2.0000', '10.1887', '10.1887', '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 (84894, '2022-05-25', 1839, 80472, 5217, NULL, '1.0000', '17468.6132', '17468.6132', '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 (84895, '2022-05-25', 1814, 80473, 5217, 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 (84896, '2022-05-25', 9878, 80474, 5217, 55901, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84897, '2022-05-25', 2693, 80475, 5217, 54577, '1.0000', '22.5550', '22.5550', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84898, '2022-05-25', 2169, 80476, 5217, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84899, '2022-05-25', 8444, 80477, 5217, 55700, '5.0000', '1.6000', '1.6000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84900, '2022-05-25', 7981, 80478, 5217, NULL, '5.0000', '6.0000', '6.0000', '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 (84901, '2022-05-25', 2285, 80479, 5217, NULL, '1.0000', '26.8638', '26.8638', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84902, '2022-05-25', 3001, 80480, 5217, 37759, '5.0000', '2.5621', '2.5621', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84903, '2022-05-25', 9740, 80481, 5217, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '138.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84904, '2022-05-25', 8609, 80482, 5217, 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 (84905, '2022-05-25', 1529, 80483, 5217, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84906, '2022-05-25', 3077, 80484, 5217, 49912, '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 (84907, '2022-05-25', 1867, 80485, 5217, 55547, '1.0000', '6.2086', '6.2086', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84908, '2022-05-25', 7564, 80486, 5218, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84909, '2022-05-25', 7753, 80487, 5218, 56182, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84910, '2022-05-25', 3001, 80488, 5219, 37759, '3.0000', '2.5621', '2.5621', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84911, '2022-05-25', 2295, 80489, 5219, 54913, '4.0000', '1.3151', '1.3151', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84912, '2022-05-25', 7507, 80490, 5219, 54888, '4.0000', '0.3606', '0.3606', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84913, '2022-05-25', 2293, 80491, 5219, NULL, '3.0000', '-17.4320', '-17.4320', '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 (84914, '2022-05-25', 1863, 80492, 5219, 55917, '1.0000', '1.4573', '1.4573', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84915, '2022-05-25', 9834, 80493, 5219, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84916, '2022-05-25', 1560, 80494, 5219, 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 (84917, '2022-05-25', 2416, 80495, 5219, 54068, '2.0000', '1.2379', '1.2379', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84918, '2022-05-25', 2169, 80496, 5219, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84919, '2022-05-25', 1590, 80497, 5219, 55929, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84920, '2022-05-25', 1519, 80498, 5219, 55893, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84921, '2022-05-25', 9800, 80499, 5219, 54162, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84922, '2022-05-25', 2893, 80500, 5219, NULL, '1.0000', '6.4400', '6.4400', '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 (84923, '2022-05-25', 2237, 80501, 5219, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84924, '2022-05-25', 2169, 80502, 5219, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84925, '2022-05-25', 1409, 80503, 5219, 55894, '2.0000', '13.1111', '13.1111', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84926, '2022-05-25', 9534, 80504, 5219, 54921, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84927, '2022-05-25', 1905, 80505, 5219, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84928, '2022-05-25', 1422, 80506, 5220, 20645, '1.0000', '21.0000', '21.0000', '26.0000', '26.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 (84929, '2022-05-25', 8039, 80507, 5220, NULL, '1.0000', '14.7500', '14.7500', '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 (84930, '2022-05-25', 7819, 80508, 5220, NULL, '1.0000', '9.5000', '9.5000', '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 (84931, '2022-05-25', 7911, 80509, 5220, NULL, '1.0000', '4.3700', '4.3700', '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 (84932, '2022-05-25', 7674, 80510, 5220, NULL, '1.0000', '1.3000', '1.3000', '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 (84933, '2022-05-25', 7780, 80511, 5220, NULL, '1.0000', '11.6000', '11.6000', '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 (84934, '2022-05-25', 7666, 80512, 5220, NULL, '1.0000', '3.6000', '3.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 (84935, '2022-05-25', 7609, 80513, 5220, NULL, '1.0000', '4.3300', '4.3300', '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 (84936, '2022-05-25', 7730, 80514, 5220, NULL, '1.0000', '0.1000', '0.1000', '0.2000', '0.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 (84937, '2022-05-25', 8979, 80515, 5220, 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 (84938, '2022-05-25', 7472, 80516, 5220, NULL, '1.0000', '4.1000', '4.1000', '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 (84939, '2022-05-25', 9274, 80517, 5220, NULL, '1.0000', '3.6000', '3.6000', '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 (84940, '2022-05-25', 8401, 80518, 5220, 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 (84941, '2022-05-25', 9747, 80519, 5220, NULL, '3.0000', '0.6500', '0.6500', '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 (84942, '2022-05-25', 7506, 80520, 5220, NULL, '2.0000', '15.0000', '15.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 (84943, '2022-05-25', 7748, 80521, 5220, NULL, '1.0000', '7.3000', '7.3000', '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 (84944, '2022-05-25', 7411, 80522, 5220, NULL, '2.0000', '1.3500', '1.3500', '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 (84945, '2022-05-25', 7641, 80523, 5220, NULL, '1.0000', '1.9000', '1.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 (84946, '2022-05-25', 7334, 80524, 5220, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (84947, '2022-05-25', 7708, 80525, 5220, 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 (84948, '2022-05-25', 9734, 80526, 5220, NULL, '2.0000', '0.3200', '0.3200', '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 (84949, '2022-05-25', 2315, 80527, 5220, 2735, '-385.0000', '0.3300', '0.3300', '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 (84950, '2022-05-25', 2315, 80527, 5220, NULL, '387.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-387.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84951, '2022-05-25', 1867, 80528, 5220, NULL, '1.0000', '1.0500', '1.0500', '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 (84952, '2022-05-25', 7593, 80529, 5220, NULL, '1.0000', '2.4500', '2.4500', '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 (84953, '2022-05-25', 7473, 80530, 5220, NULL, '2.0000', '0.5300', '0.5300', '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 (84954, '2022-05-25', 7911, 80531, 5220, NULL, '1.0000', '4.3700', '4.3700', '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 (84955, '2022-05-25', 1837, 80532, 5220, 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 (84956, '2022-05-25', 7712, 80533, 5220, NULL, '2.0000', '26.0000', '26.0000', '40.0000', '40.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 (84957, '2022-05-25', 9819, 80534, 5220, NULL, '2.0000', '3.6300', '3.6300', '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 (84958, '2022-05-25', 8155, 80535, 5220, NULL, '2.0000', '65.0000', '65.0000', '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 (84959, '2022-05-25', 1760, 80536, 5220, 20604, '2.0000', '111.8384', '111.8384', '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 (84960, '2022-05-25', 7762, 80537, 5220, NULL, '1.0000', '1.5000', '1.5000', '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 (84961, '2022-05-25', 8023, 80538, 5220, NULL, '1.0000', '20.5000', '20.5000', '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 (84962, '2022-05-25', 7612, 80539, 5220, NULL, '2.0000', '1.7300', '1.7300', '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 (84963, '2022-05-25', 2270, 80540, 5220, 2930, '-12.0000', '0.9880', '0.9880', '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 (84964, '2022-05-25', 2270, 80540, 5220, NULL, '13.0000', '0.9880', '0.9880', '7.0000', '7.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 (84965, '2022-05-25', 1501, 80541, 5220, NULL, '1.0000', '2.0500', '2.0500', '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 (84966, '2022-05-25', 9797, 80542, 5220, 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 (84967, '2022-05-25', 1532, 80543, 5220, 20609, '2.0000', '0.8000', '0.8000', '2.0000', '2.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 (84968, '2022-05-25', 8913, 80544, 5220, NULL, '1.0000', '15.1700', '15.1700', '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 (84969, '2022-05-25', 1532, 80545, 5220, 20609, '3.0000', '0.8000', '0.8000', '2.0000', '2.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 (84970, '2022-05-25', 2352, 80546, 5220, 3855, '-178.0000', '20.0000', '20.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 (84971, '2022-05-25', 2352, 80546, 5220, NULL, '183.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-183.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84972, '2022-05-25', 7473, 80547, 5220, NULL, '4.0000', '0.5300', '0.5300', '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 (84973, '2022-05-25', 8070, 80548, 5220, NULL, '2.0000', '6.5000', '6.5000', '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 (84974, '2022-05-25', 7753, 80549, 5220, NULL, '2.0000', '3.4000', '3.4000', '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 (84975, '2022-05-25', 7317, 80550, 5220, NULL, '1.0000', '19.5500', '19.5500', '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 (84976, '2022-05-25', 7743, 80551, 5220, NULL, '1.0000', '1.3100', '1.3100', '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 (84977, '2022-05-25', 7780, 80552, 5220, NULL, '1.0000', '11.6000', '11.6000', '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 (84978, '2022-05-25', 2270, 80553, 5220, 2930, '-12.0000', '0.9880', '0.9880', '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 (84979, '2022-05-25', 2270, 80553, 5220, NULL, '13.0000', '0.9880', '0.9880', '7.0000', '7.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 (84980, '2022-05-25', 7518, 80554, 5220, NULL, '1.0000', '7.8200', '7.8200', '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 (84981, '2022-05-25', 9750, 80555, 5220, NULL, '1.0000', '3.3000', '3.3000', '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 (84982, '2022-05-25', 7323, 80556, 5220, NULL, '1.0000', '7.9800', '7.9800', '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 (84983, '2022-05-25', 2394, 80557, 5220, 4201, '-5.0000', '4.0000', '4.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 (84984, '2022-05-25', 2394, 80557, 5220, NULL, '6.0000', '4.0000', '4.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 (84985, '2022-05-25', 2277, 80558, 5220, 2937, '-48.0000', '0.7800', '0.7800', '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 (84986, '2022-05-25', 2277, 80558, 5220, NULL, '49.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84987, '2022-05-25', 8064, 80559, 5220, 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 (84988, '2022-05-25', 9762, 80560, 5220, 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 (84989, '2022-05-25', 7952, 80561, 5220, 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 (84990, '2022-05-25', 7980, 80562, 5221, NULL, '10.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (84991, '2022-05-25', 8504, 80563, 5221, NULL, '1.0000', '8.1000', '8.1000', '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 (84992, '2022-05-25', 7674, 80564, 5221, NULL, '1.0000', '1.3000', '1.3000', '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 (84993, '2022-05-25', 7411, 80565, 5221, NULL, '1.0000', '1.3500', '1.3500', '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 (84994, '2022-05-25', 7633, 80566, 5221, NULL, '1.0000', '2.8700', '2.8700', '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 (84995, '2022-05-25', 7324, 80567, 5221, NULL, '1.0000', '4.0000', '4.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 (84996, '2022-05-25', 2315, 80568, 5221, 2735, '-387.0000', '0.3300', '0.3300', '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 (84997, '2022-05-25', 2315, 80568, 5221, NULL, '388.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-388.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84998, '2022-05-25', 8067, 80569, 5221, NULL, '1.0000', '4.6900', '4.6900', '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 (84999, '2022-05-25', 2169, 80570, 5222, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85000, '2022-05-25', 2327, 80571, 5222, 49257, '5.0000', '3.8469', '3.8469', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85001, '2022-05-25', 1935, 80572, 5222, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85002, '2022-05-25', 1532, 80573, 5222, 52201, '2.0000', '1.4143', '1.4143', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85003, '2022-05-25', 2948, 80574, 5222, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85004, '2022-05-25', 2352, 80575, 5222, NULL, '3.0000', '126.2588', '126.2588', '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 (85005, '2022-05-25', 1837, 80576, 5222, NULL, '1.0000', '10.1887', '10.1887', '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 (85006, '2022-05-25', 9862, 80577, 5222, 52197, '1.0000', '16.5000', '16.5000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85007, '2022-05-25', 9881, 80578, 5222, 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 (85008, '2022-05-25', 1967, 80579, 5222, NULL, '1.0000', '25.3000', '25.3000', '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 (85009, '2022-05-25', 9649, 80580, 5222, NULL, '1.0000', '14.2780', '14.2780', '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 (85010, '2022-05-25', 1639, 80581, 5222, 51489, '1.0000', '7.1659', '7.1659', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85011, '2022-05-25', 7926, 80582, 5222, 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 (85012, '2022-05-25', 2428, 80583, 5222, NULL, '2.0000', '19.0000', '19.0000', '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 (85013, '2022-05-25', 1925, 80584, 5222, 51221, '3.0000', '1.4444', '1.4444', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85014, '2022-05-25', 9740, 80585, 5222, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '136.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85015, '2022-05-25', 1501, 80586, 5222, NULL, '1.0000', '1.2071', '1.2071', '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 (85016, '2022-05-25', 1529, 80587, 5222, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85017, '2022-05-25', 1565, 80588, 5222, 19859, '1.0000', '18.0500', '18.0500', '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 (85018, '2022-05-25', 1520, 80589, 5222, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85019, '2022-05-25', 9921, 80590, 5222, 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 (85020, '2022-05-25', 1342, 80591, 5222, 33153, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85021, '2022-05-25', 8923, 80592, 5222, NULL, '1.0000', '7.2500', '7.2500', '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 (85022, '2022-05-25', 1342, 80593, 5222, 33153, '1.0000', '9.0671', '9.0671', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85023, '2022-05-25', 2366, 80594, 5222, NULL, '1.0000', '-31.8429', '-31.8429', '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 (85024, '2022-05-25', 9870, 80595, 5222, NULL, '1.0000', '6.2400', '6.2400', '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 (85025, '2022-05-25', 1580, 80596, 5222, 54914, '3.0000', '1.4639', '1.4639', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85026, '2022-05-25', 2293, 80597, 5222, NULL, '3.0000', '-17.4320', '-17.4320', '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 (85027, '2022-05-25', 2416, 80598, 5222, 54068, '2.0000', '1.2379', '1.2379', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85028, '2022-05-25', 1871, 80599, 5222, NULL, '3.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (85029, '2022-05-25', 1432, 80600, 5222, 55690, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85030, '2022-05-25', 9927, 80601, 5222, 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 (85031, '2022-05-25', 9840, 80602, 5222, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85032, '2022-05-25', 2567, 80603, 5222, 55833, '1.0000', '37.4793', '37.4793', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85033, '2022-05-25', 7576, 80604, 5222, 37777, '2.0000', '6.9100', '6.9100', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85034, '2022-05-25', 7576, 80604, 5222, NULL, '1.0000', '6.9100', '6.9100', '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 (85035, '2022-05-25', 9846, 80605, 5222, 54166, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85036, '2022-05-25', 2302, 80606, 5222, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85037, '2022-05-25', 8444, 80607, 5222, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85038, '2022-05-25', 1935, 80608, 5222, 48658, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85039, '2022-05-25', 7411, 80609, 5222, NULL, '1.0000', '1.3013', '1.3013', '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 (85040, '2022-05-25', 3058, 80610, 5222, NULL, '1.0000', '-23.3000', '-23.3000', '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 (85041, '2022-05-25', 2315, 80611, 5222, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85042, '2022-05-25', 2289, 80612, 5222, NULL, '4.0000', '0.1400', '0.1400', '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 (85043, '2022-05-25', 2298, 80613, 5222, NULL, '1.0000', '-13.6702', '-13.6702', '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 (85044, '2022-05-25', 9834, 80614, 5222, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85045, '2022-05-25', 1410, 80615, 5222, 55920, '1.0000', '48.8052', '48.8052', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85046, '2022-05-25', 1935, 80616, 5222, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85242, '2022-05-26', 9747, 80752, 5226, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85243, '2022-05-26', 9794, 80753, 5226, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85244, '2022-05-26', 2315, 80754, 5226, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85245, '2022-05-26', 7926, 80755, 5226, 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 (85246, '2022-05-26', 7411, 80756, 5226, NULL, '1.0000', '1.3013', '1.3013', '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 (85247, '2022-05-26', 2169, 80757, 5226, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85248, '2022-05-26', 2379, 80758, 5226, NULL, '1.0000', '-3.0170', '-3.0170', '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 (85249, '2022-05-26', 1837, 80759, 5226, NULL, '2.0000', '10.1887', '10.1887', '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 (85250, '2022-05-26', 7802, 80760, 5226, NULL, '3.0000', '1.1497', '1.1497', '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 (85251, '2022-05-26', 9736, 80761, 5226, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85252, '2022-05-26', 7753, 80762, 5226, NULL, '1.0000', '3.1400', '3.1400', '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 (85253, '2022-05-26', 9715, 80763, 5226, 54881, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85254, '2022-05-26', 9736, 80764, 5226, 52175, '1.0000', '4.3055', '4.3055', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85255, '2022-05-26', 1863, 80765, 5226, 55917, '1.0000', '1.4573', '1.4573', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85256, '2022-05-26', 9747, 80766, 5226, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85257, '2022-05-26', 9840, 80767, 5226, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85258, '2022-05-26', 2699, 80768, 5226, NULL, '1.0000', '3.6019', '3.6019', '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 (85259, '2022-05-26', 2315, 80769, 5226, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85260, '2022-05-26', 1699, 80770, 5226, NULL, '1.0000', '3.2000', '3.2000', '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 (85261, '2022-05-26', 2416, 80771, 5226, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85262, '2022-05-26', 1880, 80772, 5226, 42565, '1.0000', '4.6898', '4.6898', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85263, '2022-05-26', 2242, 80773, 5226, 54572, '3.0000', '2.4162', '2.4162', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85264, '2022-05-26', 1529, 80774, 5226, 55900, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85265, '2022-05-26', 2169, 80775, 5226, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85266, '2022-05-26', 2699, 80776, 5226, NULL, '1.0000', '3.6019', '3.6019', '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 (85267, '2022-05-26', 9695, 80777, 5226, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85268, '2022-05-26', 1529, 80778, 5227, 51484, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85269, '2022-05-26', 2643, 80779, 5227, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85270, '2022-05-26', 2754, 80780, 5227, 18938, '2.0000', '0.0800', '0.0800', '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 (85271, '2022-05-26', 7483, 80781, 5227, NULL, '3.0000', '0.4200', '0.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 (85272, '2022-05-26', 7744, 80782, 5227, NULL, '1.0000', '2.5833', '2.5833', '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 (85273, '2022-05-26', 7514, 80783, 5228, NULL, '1.0000', '3234.0124', '3234.0124', '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 (85274, '2022-05-26', 7354, 80784, 5228, NULL, '1.0000', '-2.5000', '-2.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 (85275, '2022-05-26', 7824, 80785, 5228, NULL, '1.0000', '44153.4954', '44153.4954', '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 (85276, '2022-05-26', 7894, 80786, 5228, NULL, '1.0000', '-38.6667', '-38.6667', '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 (85277, '2022-05-26', 9092, 80787, 5228, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '112.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85278, '2022-05-26', 7330, 80788, 5228, 50701, '1.0000', '19.1333', '19.1333', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85279, '2022-05-26', 9836, 80789, 5228, 52465, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85280, '2022-05-26', 3074, 80790, 5228, 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 (85281, '2022-05-26', 7318, 80791, 5228, 56154, '1.0000', '10.9273', '10.9273', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85282, '2022-05-26', 7708, 80792, 5228, NULL, '1.0000', '8.1861', '8.1861', '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 (85283, '2022-05-26', 8359, 80793, 5228, 56144, '1.0000', '569.6776', '569.6776', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85284, '2022-05-26', 8596, 80794, 5228, NULL, '1.0000', '18.5278', '18.5278', '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 (85285, '2022-05-26', 7781, 80795, 5228, NULL, '3.0000', '5.2802', '5.2802', '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 (85286, '2022-05-26', 7641, 80796, 5228, 56190, '2.0000', '6.9740', '6.9740', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85287, '2022-05-26', 8965, 80797, 5228, NULL, '1.0000', '-263.2470', '-263.2470', '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 (85288, '2022-05-26', 7762, 80798, 5228, 54082, '1.0000', '-0.2334', '-0.2334', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85289, '2022-05-26', 1340, 80799, 5228, NULL, '1.0000', '3.0692', '3.0692', '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 (85290, '2022-05-26', 7514, 80800, 5228, NULL, '1.0000', '3234.0124', '3234.0124', '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 (85291, '2022-05-26', 9817, 80801, 5229, 55968, '1.0000', '4.9075', '4.9075', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85292, '2022-05-26', 2295, 80802, 5229, NULL, '3.0000', '-0.3800', '-0.3800', '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 (85293, '2022-05-26', 8101, 80803, 5229, NULL, '3.0000', '-0.2222', '-0.2222', '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 (85294, '2022-05-26', 7357, 80804, 5229, NULL, '1.0000', '11.7500', '11.7500', '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 (85295, '2022-05-26', 9740, 80805, 5229, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85296, '2022-05-26', 2062, 80806, 5230, 2165, '-2.0000', '5.7540', '5.7540', '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 (85297, '2022-05-26', 2062, 80806, 5230, NULL, '3.0000', '5.7540', '5.7540', '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 (85298, '2022-05-26', 2233, 80807, 5230, 2777, '-31.0000', '19.0200', '19.0200', '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 (85299, '2022-05-26', 2233, 80807, 5230, NULL, '32.0000', '19.0200', '19.0200', '39.0000', '39.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85300, '2022-05-26', 1805, 80808, 5230, NULL, '1.0000', '195.3170', '195.3170', '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 (85301, '2022-05-26', 2444, 80809, 5230, 5314, '-7.0000', '6.0000', '6.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 (85302, '2022-05-26', 2444, 80809, 5230, NULL, '8.0000', '6.0000', '6.0000', '13.0000', '13.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 (85303, '2022-05-26', 2642, 80810, 5230, 10573, '-16.0000', '9.2000', '9.2000', '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 (85304, '2022-05-26', 2642, 80810, 5230, NULL, '17.0000', '9.2000', '9.2000', '15.0000', '15.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 (85305, '2022-05-26', 1486, 80811, 5230, 20667, '1.0000', '17.2400', '17.2400', '22.5000', '22.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 (85306, '2022-05-26', 1666, 80812, 5230, 3236, '-30.0000', '2.7100', '2.7100', '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 (85307, '2022-05-26', 1666, 80812, 5230, NULL, '32.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85308, '2022-05-26', 1342, 80813, 5230, 11264, '-16.0000', '6.8074', '6.8074', '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 (85309, '2022-05-26', 1342, 80813, 5230, NULL, '17.0000', '6.8074', '6.8074', '10.0000', '10.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 (85310, '2022-05-26', 9750, 80814, 5230, NULL, '1.0000', '3.3000', '3.3000', '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 (85311, '2022-05-26', 1949, 80815, 5230, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '3.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 (85312, '2022-05-26', 2187, 80816, 5230, 7755, '-2.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 (85313, '2022-05-26', 2187, 80816, 5230, NULL, '3.0000', '7.5000', '7.5000', '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 (85314, '2022-05-26', 2215, 80817, 5230, 7752, '-4.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 (85315, '2022-05-26', 2215, 80817, 5230, NULL, '5.0000', '12.0000', '12.0000', '18.0000', '18.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 (85316, '2022-05-26', 7674, 80818, 5231, NULL, '1.0000', '1.3000', '1.3000', '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 (85317, '2022-05-26', 7514, 80819, 5231, NULL, '2.0000', '2.2500', '2.2500', '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 (85318, '2022-05-26', 9866, 80820, 5231, NULL, '1.0000', '9.5500', '9.5500', '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 (85319, '2022-05-26', 8878, 80821, 5231, NULL, '1.0000', '6.6700', '6.6700', '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 (85320, '2022-05-26', 8918, 80822, 5231, NULL, '1.0000', '1.0400', '1.0400', '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 (85321, '2022-05-26', 7380, 80823, 5232, NULL, '1.0000', '8.0000', '8.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 (85322, '2022-05-26', 7483, 80824, 5233, 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 (85323, '2022-05-26', 2643, 80825, 5233, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85324, '2022-05-26', 2906, 80826, 5233, NULL, '1.0000', '2.6000', '2.6000', '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 (85325, '2022-05-26', 7411, 80827, 5233, NULL, '1.0000', '1.3013', '1.3013', '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 (85326, '2022-05-26', 2315, 80828, 5233, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85327, '2022-05-26', 9846, 80829, 5233, 54166, '1.0000', '5.7000', '5.7000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85328, '2022-05-26', 1602, 80830, 5233, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85329, '2022-05-26', 7483, 80831, 5233, 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 (85330, '2022-05-26', 1787, 80832, 5233, NULL, '1.0000', '0.5000', '0.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 (85331, '2022-05-26', 7324, 80833, 5233, 51663, '2.0000', '5.4813', '5.4813', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85332, '2022-05-26', 7411, 80834, 5233, NULL, '1.0000', '1.3013', '1.3013', '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 (85333, '2022-05-26', 2020, 80835, 5233, 55715, '1.0000', '1309.0500', '1309.0500', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85334, '2022-05-26', 2169, 80836, 5233, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '60.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85335, '2022-05-26', 2295, 80837, 5233, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85336, '2022-05-26', 2242, 80838, 5233, 48481, '2.0000', '2.4162', '2.4162', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85337, '2022-05-26', 2821, 80839, 5233, 55709, '1.0000', '3.4469', '3.4469', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85338, '2022-05-26', 2394, 80840, 5233, 55156, '1.0000', '6.0000', '6.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85339, '2022-05-26', 1410, 80841, 5233, NULL, '1.0000', '48.8052', '48.8052', '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 (85340, '2022-05-26', 2315, 80842, 5233, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85341, '2022-05-26', 8150, 80843, 5233, NULL, '1.0000', '27.9400', '27.9400', '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 (85342, '2022-05-26', 3058, 80844, 5233, NULL, '1.0000', '-23.3000', '-23.3000', '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 (85343, '2022-05-26', 1674, 80845, 5233, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85344, '2022-05-26', 8844, 80846, 5233, 55665, '1.0000', '4.0579', '4.0579', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85345, '2022-05-26', 1602, 80847, 5233, 55530, '1.0000', '7.0298', '7.0298', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85346, '2022-05-26', 2169, 80848, 5233, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '60.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85347, '2022-05-26', 2511, 80849, 5233, 54960, '1.0000', '13.8000', '13.8000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85348, '2022-05-26', 2302, 80850, 5233, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85349, '2022-05-26', 2643, 80851, 5233, 55414, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85350, '2022-05-26', 9811, 80852, 5233, NULL, '1.0000', '4.9200', '4.9200', '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 (85351, '2022-05-26', 2221, 80853, 5233, NULL, '1.0000', '15.0000', '15.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 (85352, '2022-05-26', 1822, 80854, 5233, 54876, '5.0000', '2.6301', '2.6301', '4.0000', '4.0000', '54.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85353, '2022-05-26', 2154, 80855, 5233, 53456, '1.0000', '11.0937', '11.0937', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85354, '2022-05-26', 8878, 80856, 5233, NULL, '1.0000', '-8.5209', '-8.5209', '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 (85355, '2022-05-26', 2215, 80857, 5233, 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 (85356, '2022-05-26', 7819, 80858, 5233, NULL, '1.0000', '10.0999', '10.0999', '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 (85357, '2022-05-26', 7411, 80859, 5233, NULL, '1.0000', '1.3013', '1.3013', '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 (85358, '2022-05-26', 7514, 80860, 5233, NULL, '1.0000', '2.2500', '2.2500', '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 (85359, '2022-05-26', 7877, 80861, 5233, NULL, '1.0000', '5.1600', '5.1600', '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 (85360, '2022-05-26', 2169, 80862, 5233, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '60.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85361, '2022-05-26', 7825, 80863, 5233, NULL, '1.0000', '6.5000', '6.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 (85362, '2022-05-26', 1529, 80864, 5233, 51484, '1.0000', '3.9182', '3.9182', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85363, '2022-05-26', 2169, 80865, 5233, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '60.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85364, '2022-05-26', 7886, 80866, 5233, NULL, '2.0000', '14.5000', '14.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 (85365, '2022-05-26', 8773, 80867, 5233, NULL, '1.0000', '3.8300', '3.8300', '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 (85366, '2022-05-26', 1342, 80868, 5233, 22390, '1.0000', '9.0671', '9.0671', '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 (85367, '2022-05-26', 2169, 80869, 5233, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '60.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85368, '2022-05-26', 1608, 80870, 5233, 53660, '1.0000', '4.1377', '4.1377', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85369, '2022-05-26', 2381, 80871, 5233, 54542, '1.0000', '13.6699', '13.6699', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85370, '2022-05-26', 1640, 80872, 5233, NULL, '1.0000', '3.0496', '3.0496', '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 (85371, '2022-05-26', 8079, 80873, 5233, NULL, '1.0000', '13.6100', '13.6100', '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 (85372, '2022-05-26', 2916, 80874, 5233, NULL, '1.0000', '538.9192', '538.9192', '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 (85373, '2022-05-26', 9627, 80875, 5233, 40339, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85374, '2022-05-26', 7318, 80876, 5233, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85375, '2022-05-26', 2908, 80877, 5233, 55931, '2.0000', '0.3518', '0.3518', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85376, '2022-05-26', 1689, 80878, 5233, 55941, '1.0000', '15.3729', '15.3729', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85377, '2022-05-26', 2285, 80879, 5233, NULL, '1.0000', '26.8638', '26.8638', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85378, '2022-05-26', 2521, 80880, 5233, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85379, '2022-05-26', 7713, 80881, 5233, 55675, '3.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85380, '2022-05-26', 1888, 80882, 5233, 55945, '1.0000', '17.5360', '17.5360', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85381, '2022-05-26', 2302, 80883, 5233, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85382, '2022-05-26', 2573, 80884, 5233, NULL, '1.0000', '7.2200', '7.2200', '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 (85383, '2022-05-26', 9738, 80885, 5233, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85384, '2022-05-26', 8609, 80886, 5233, 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 (85385, '2022-05-26', 2416, 80887, 5233, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85386, '2022-05-26', 1499, 80888, 5233, 54918, '2.0000', '0.3993', '0.3993', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85387, '2022-05-26', 1342, 80889, 5233, 22390, '1.0000', '9.0671', '9.0671', '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 (85388, '2022-05-26', 7674, 80890, 5234, NULL, '1.0000', '1.3000', '1.3000', '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 (85389, '2022-05-26', 7520, 80891, 5234, NULL, '1.0000', '9.6000', '9.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 (85390, '2022-05-26', 2332, 80892, 5234, 3835, '-13.0000', '5.8900', '5.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 (85391, '2022-05-26', 2332, 80892, 5234, NULL, '14.0000', '5.8900', '5.8900', '10.0000', '10.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 (85392, '2022-05-26', 9731, 80893, 5234, 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 (85393, '2022-05-26', 7862, 80894, 5234, NULL, '1.0000', '3.8500', '3.8500', '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 (85394, '2022-05-26', 1841, 80895, 5234, NULL, '2.0000', '142.5780', '142.5780', '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 (85395, '2022-05-26', 1840, 80896, 5234, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (85396, '2022-05-26', 8087, 80897, 5234, NULL, '1.0000', '14.6000', '14.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 (85397, '2022-05-26', 8200, 80898, 5234, NULL, '1.0000', '6.2600', '6.2600', '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 (85398, '2022-05-26', 2649, 80899, 5234, 11163, '-4.0000', '71.9188', '71.9188', '131.0000', '131.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85399, '2022-05-26', 2649, 80899, 5234, NULL, '5.0000', '71.9188', '71.9188', '131.0000', '131.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 (85400, '2022-05-26', 8079, 80900, 5234, NULL, '1.0000', '14.3600', '14.3600', '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 (85401, '2022-05-26', 7879, 80901, 5234, NULL, '10.0000', '1.9800', '1.9800', '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 (85402, '2022-05-26', 7917, 80902, 5234, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (85403, '2022-05-26', 7317, 80903, 5234, NULL, '1.0000', '19.5500', '19.5500', '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 (85404, '2022-05-26', 7518, 80904, 5234, NULL, '1.0000', '7.8200', '7.8200', '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 (85405, '2022-05-26', 7316, 80905, 5234, NULL, '5.0000', '9.5500', '9.5500', '1.3000', '1.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 (85406, '2022-05-26', 7324, 80906, 5234, NULL, '3.0000', '4.0000', '4.0000', '8.5000', '8.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 (85407, '2022-05-26', 7518, 80907, 5234, NULL, '1.0000', '7.8200', '7.8200', '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 (85408, '2022-05-26', 7730, 80908, 5234, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (85409, '2022-05-26', 7848, 80909, 5234, NULL, '1.0000', '1.3500', '1.3500', '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 (85410, '2022-05-26', 7909, 80910, 5234, 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 (85411, '2022-05-26', 7825, 80911, 5234, NULL, '1.0000', '6.5000', '6.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 (85412, '2022-05-26', 7781, 80912, 5234, NULL, '2.0000', '4.2500', '4.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 (85413, '2022-05-26', 7524, 80913, 5234, NULL, '1.0000', '11.9500', '11.9500', '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 (85414, '2022-05-26', 7917, 80914, 5234, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85415, '2022-05-26', 9508, 80915, 5234, NULL, '1.0000', '3.4000', '3.4000', '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 (85416, '2022-05-26', 7819, 80916, 5234, NULL, '1.0000', '9.5000', '9.5000', '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 (85417, '2022-05-26', 7903, 80917, 5234, NULL, '1.0000', '13.0000', '13.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 (85418, '2022-05-26', 7518, 80918, 5234, NULL, '1.0000', '7.8200', '7.8200', '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 (85419, '2022-05-26', 8085, 80919, 5234, NULL, '2.0000', '1.1700', '1.1700', '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 (85420, '2022-05-26', 8444, 80920, 5234, NULL, '1.0000', '1.6000', '1.6000', '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 (85421, '2022-05-26', 7708, 80921, 5234, 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 (85422, '2022-05-26', 9092, 80922, 5234, NULL, '2.0000', '5.2900', '5.2900', '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 (85423, '2022-05-26', 7630, 80923, 5234, NULL, '1.0000', '10.0000', '10.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 (85424, '2022-05-26', 8322, 80924, 5234, NULL, '1.0000', '7.0000', '7.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 (85425, '2022-05-26', 7762, 80925, 5234, NULL, '1.0000', '1.5000', '1.5000', '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 (85426, '2022-05-26', 7518, 80926, 5234, NULL, '1.0000', '7.8200', '7.8200', '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 (85427, '2022-05-26', 1420, 80927, 5234, 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 (85428, '2022-05-26', 8463, 80928, 5234, NULL, '1.0000', '18.0000', '18.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 (85429, '2022-05-26', 7612, 80929, 5234, NULL, '1.0000', '1.7300', '1.7300', '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 (85430, '2022-05-26', 2906, 80930, 5234, 18651, '-13.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 (85431, '2022-05-26', 2906, 80930, 5234, NULL, '14.0000', '2.6000', '2.6000', '4.0000', '4.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 (85432, '2022-05-26', 7524, 80931, 5234, NULL, '2.0000', '11.9500', '11.9500', '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 (85433, '2022-05-26', 7411, 80932, 5234, NULL, '1.0000', '1.3500', '1.3500', '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 (85434, '2022-05-26', 2248, 80933, 5234, 2785, '-13.0000', '2.5000', '2.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 (85435, '2022-05-26', 2248, 80933, 5234, NULL, '14.0000', '2.5000', '2.5000', '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 (85436, '2022-05-26', 7713, 80934, 5234, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (85437, '2022-05-26', 9461, 80935, 5234, NULL, '1.0000', '1.6000', '1.6000', '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 (85438, '2022-05-26', 8966, 80936, 5234, NULL, '1.0000', '6.8500', '6.8500', '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 (85439, '2022-05-26', 8359, 80937, 5234, 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 (85440, '2022-05-26', 8878, 80938, 5234, NULL, '1.0000', '6.6700', '6.6700', '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 (85441, '2022-05-26', 1968, 80939, 5234, 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 (85442, '2022-05-26', 7454, 80940, 5234, NULL, '1.0000', '26.2200', '26.2200', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85443, '2022-05-26', 7326, 80941, 5234, NULL, '1.0000', '54.0000', '54.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 (85444, '2022-05-26', 7564, 80942, 5234, 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 (85445, '2022-05-26', 9214, 80943, 5234, NULL, '1.0000', '9.6000', '9.6000', '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 (85446, '2022-05-26', 8746, 80944, 5234, NULL, '1.0000', '3.1500', '3.1500', '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 (85447, '2022-05-26', 7886, 80945, 5234, 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 (85448, '2022-05-26', 7445, 80946, 5234, NULL, '1.0000', '7.9900', '7.9900', '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 (85449, '2022-05-26', 7344, 80947, 5234, NULL, '10.0000', '1.5400', '1.5400', '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 (85450, '2022-05-26', 8064, 80948, 5234, 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 (85451, '2022-05-26', 1804, 80949, 5235, 4916, '-12.0000', '4.2500', '4.2500', '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 (85452, '2022-05-26', 1804, 80949, 5235, NULL, '13.0000', '4.2500', '4.2500', '8.5000', '8.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 (85453, '2022-05-26', 1954, 80950, 5235, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '3.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 (85454, '2022-05-26', 1863, 80951, 5235, 10808, '-120.0000', '0.4136', '0.4136', '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 (85455, '2022-05-26', 1863, 80951, 5235, NULL, '121.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-121.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85456, '2022-05-26', 2382, 80952, 5235, 4035, '-3.0000', '15.6600', '15.6600', '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 (85457, '2022-05-26', 2382, 80952, 5235, NULL, '4.0000', '15.6600', '15.6600', '21.0000', '21.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 (85458, '2022-05-26', 1528, 80953, 5235, NULL, '2.0000', '38.6400', '38.6400', '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 (85459, '2022-05-26', 1759, 80954, 5235, 6746, '-6.0000', '11.5000', '11.5000', '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 (85460, '2022-05-26', 1759, 80954, 5235, NULL, '7.0000', '11.5000', '11.5000', '16.0000', '16.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 (85461, '2022-05-26', 2699, 80955, 5235, 12529, '-38.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 (85462, '2022-05-26', 2699, 80955, 5235, NULL, '41.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-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 (85463, '2022-05-26', 7802, 80956, 5235, NULL, '2.0000', '0.9200', '0.9200', '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 (85464, '2022-05-26', 2558, 80957, 5235, 17773, '-3.0000', '5.0000', '5.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 (85465, '2022-05-26', 2558, 80957, 5235, NULL, '5.0000', '5.0000', '5.0000', '10.0000', '10.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 (85466, '2022-05-26', 1667, 80958, 5235, 9745, '-53.0000', '5.9400', '5.9400', '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 (85467, '2022-05-26', 1667, 80958, 5235, NULL, '55.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-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 (85468, '2022-05-26', 2668, 80959, 5235, 22273, '1.0000', '7.9800', '7.9800', '16.5000', '16.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 (85469, '2022-05-26', 1326, 80960, 5235, 20662, '1.0000', '2.7762', '2.7762', '6.0000', '6.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 (85470, '2022-05-26', 1665, 80961, 5235, 3235, '-107.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 (85471, '2022-05-26', 1665, 80961, 5235, NULL, '108.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-108.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85472, '2022-05-26', 1519, 80962, 5235, 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 (85473, '2022-05-26', 1699, 80963, 5235, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '2.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 (85474, '2022-05-26', 2302, 80964, 5235, 2963, '-46.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 (85475, '2022-05-26', 2302, 80964, 5235, NULL, '47.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (85476, '2022-05-26', 2020, 80965, 5235, 10164, '-21.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 (85477, '2022-05-26', 2020, 80965, 5235, NULL, '22.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85478, '2022-05-26', 1935, 80966, 5235, 5586, '-102.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 (85479, '2022-05-26', 1935, 80966, 5235, NULL, '103.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85480, '2022-05-26', 7886, 80967, 5235, 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 (85481, '2022-05-26', 9896, 80968, 5235, 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 (85482, '2022-05-26', 2384, 80969, 5235, 12014, '20.0000', '0.4000', '0.4000', '0.7000', '0.7000', '10.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 (85483, '2022-05-26', 1335, 80970, 5235, 12031, '-21.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 (85484, '2022-05-26', 1335, 80970, 5235, NULL, '24.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-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 (85485, '2022-05-26', 1765, 80971, 5235, 3175, '-14.0000', '90.0000', '90.0000', '9.5000', '9.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 (85486, '2022-05-26', 1765, 80971, 5235, NULL, '15.0000', '90.0000', '90.0000', '9.5000', '9.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 (85487, '2022-05-26', 2352, 80972, 5235, 3855, '-183.0000', '20.0000', '20.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 (85488, '2022-05-26', 2352, 80972, 5235, NULL, '193.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-193.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85489, '2022-05-26', 7741, 80973, 5235, NULL, '1.0000', '1.2000', '1.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 (85490, '2022-05-26', 8208, 80974, 5235, NULL, '1.0000', '33.0000', '33.0000', '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 (85491, '2022-05-26', 2491, 80975, 5235, 6228, '-30.0000', '12.2000', '12.2000', '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 (85492, '2022-05-26', 2491, 80975, 5235, NULL, '31.0000', '12.2000', '12.2000', '17.5000', '17.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 (85493, '2022-05-26', 3029, 80976, 5235, NULL, '1.0000', '4.7700', '4.7700', '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 (85494, '2022-05-26', 2354, 80977, 5235, 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 (85495, '2022-05-26', 1945, 80978, 5235, 18023, '-4.0000', '9.5000', '9.5000', '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 (85496, '2022-05-26', 1945, 80978, 5235, NULL, '5.0000', '9.5000', '9.5000', '13.0000', '13.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 (85497, '2022-05-26', 1856, 80979, 5235, NULL, '1.0000', '4.2500', '4.2500', '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 (85498, '2022-05-26', 1613, 80980, 5235, 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 (85499, '2022-05-26', 1805, 80981, 5235, NULL, '1.0000', '195.3170', '195.3170', '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 (85500, '2022-05-26', 8877, 80982, 5235, NULL, '1.0000', '15.0000', '15.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 (85501, '2022-05-26', 2693, 80983, 5235, 12285, '-3.0000', '25.3656', '25.3656', '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 (85502, '2022-05-26', 2693, 80983, 5235, NULL, '4.0000', '25.3656', '25.3656', '30.0000', '30.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 (85503, '2022-05-26', 9732, 80984, 5235, 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 (85504, '2022-05-26', 9539, 80985, 5235, NULL, '1.0000', '26.0000', '26.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 (85505, '2022-05-26', 2315, 80986, 5235, 2735, '-388.0000', '0.3300', '0.3300', '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 (85506, '2022-05-26', 2315, 80986, 5235, NULL, '389.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-389.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85507, '2022-05-26', 1863, 80987, 5235, 10808, '-120.0000', '0.4136', '0.4136', '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 (85508, '2022-05-26', 1863, 80987, 5235, NULL, '123.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85509, '2022-05-26', 1984, 80988, 5235, 6347, '-1.0000', '6.5000', '6.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 (85510, '2022-05-26', 1984, 80988, 5235, NULL, '2.0000', '6.5000', '6.5000', '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 (85511, '2022-05-26', 2036, 80989, 5235, 4277, '-13.0000', '8.0000', '8.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 (85512, '2022-05-26', 2036, 80989, 5235, NULL, '14.0000', '8.0000', '8.0000', '15.0000', '15.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 (85513, '2022-05-26', 2083, 80990, 5235, 1629, '-3.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 (85514, '2022-05-26', 2083, 80990, 5235, 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 (85515, '2022-05-26', 9399, 80991, 5235, NULL, '1.0000', '0.9800', '0.9800', '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 (85516, '2022-05-26', 2379, 80992, 5235, 4032, '-58.0000', '1.5900', '1.5900', '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 (85517, '2022-05-26', 2379, 80992, 5235, NULL, '59.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85518, '2022-05-26', 1935, 80993, 5235, 5586, '-102.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 (85519, '2022-05-26', 1935, 80993, 5235, NULL, '103.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85520, '2022-05-26', 2266, 80994, 5235, 2801, '-11.0000', '6.4900', '6.4900', '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 (85521, '2022-05-26', 2266, 80994, 5235, NULL, '12.0000', '6.4900', '6.4900', '13.0000', '13.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 (85522, '2022-05-26', 2105, 80995, 5235, NULL, '2.0000', '1.3500', '1.3500', '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 (85523, '2022-05-26', 9740, 80996, 5235, NULL, '2.0000', '0.6600', '0.6600', '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 (85524, '2022-05-26', 1863, 80997, 5235, 10808, '-120.0000', '0.4136', '0.4136', '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 (85525, '2022-05-26', 1863, 80997, 5235, NULL, '122.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-122.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85526, '2022-05-26', 1804, 80998, 5236, 4916, '-13.0000', '4.2500', '4.2500', '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 (85527, '2022-05-26', 1804, 80998, 5236, NULL, '14.0000', '4.2500', '4.2500', '8.5000', '8.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 (85528, '2022-05-26', 1954, 80999, 5236, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '2.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 (85529, '2022-05-26', 1863, 81000, 5236, 10808, '-126.0000', '0.4136', '0.4136', '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 (85530, '2022-05-26', 1863, 81000, 5236, NULL, '127.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85531, '2022-05-26', 2382, 81001, 5236, 4035, '-4.0000', '15.6600', '15.6600', '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 (85532, '2022-05-26', 2382, 81001, 5236, NULL, '5.0000', '15.6600', '15.6600', '21.0000', '21.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 (85533, '2022-05-26', 1528, 81002, 5236, NULL, '2.0000', '38.6400', '38.6400', '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 (85534, '2022-05-26', 1759, 81003, 5236, 6746, '-7.0000', '11.5000', '11.5000', '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 (85535, '2022-05-26', 1759, 81003, 5236, NULL, '8.0000', '11.5000', '11.5000', '16.0000', '16.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 (85536, '2022-05-26', 2699, 81004, 5236, 12529, '-41.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 (85537, '2022-05-26', 2699, 81004, 5236, NULL, '44.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85538, '2022-05-26', 7802, 81005, 5236, NULL, '2.0000', '0.9200', '0.9200', '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 (85539, '2022-05-26', 2558, 81006, 5236, 17773, '-5.0000', '5.0000', '5.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 (85540, '2022-05-26', 2558, 81006, 5236, NULL, '7.0000', '5.0000', '5.0000', '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 (85541, '2022-05-26', 1667, 81007, 5236, 9745, '-55.0000', '5.9400', '5.9400', '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 (85542, '2022-05-26', 1667, 81007, 5236, NULL, '57.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85543, '2022-05-26', 2668, 81008, 5236, 22273, '1.0000', '7.9800', '7.9800', '16.5000', '16.5000', '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 (85544, '2022-05-26', 1326, 81009, 5236, 20662, '1.0000', '2.7762', '2.7762', '6.0000', '6.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 (85545, '2022-05-26', 1665, 81010, 5236, 3235, '-108.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 (85546, '2022-05-26', 1665, 81010, 5236, NULL, '109.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-109.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85547, '2022-05-26', 1519, 81011, 5236, 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 (85548, '2022-05-26', 1699, 81012, 5236, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '1.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 (85549, '2022-05-26', 2302, 81013, 5236, 2963, '-47.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 (85550, '2022-05-26', 2302, 81013, 5236, NULL, '48.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85551, '2022-05-26', 2020, 81014, 5236, 10164, '-22.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 (85552, '2022-05-26', 2020, 81014, 5236, NULL, '23.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-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 (85553, '2022-05-26', 1935, 81015, 5236, 5586, '-104.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 (85554, '2022-05-26', 1935, 81015, 5236, NULL, '105.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85555, '2022-05-26', 7886, 81016, 5236, 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 (85556, '2022-05-26', 9896, 81017, 5236, 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 (85557, '2022-05-26', 2384, 81018, 5236, 12014, '10.0000', '0.4000', '0.4000', '0.7000', '0.7000', '0.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 (85558, '2022-05-26', 2384, 81018, 5236, NULL, '10.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (85559, '2022-05-26', 1335, 81019, 5236, 12031, '-24.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 (85560, '2022-05-26', 1335, 81019, 5236, NULL, '27.0000', '0.8500', '0.8500', '2.0000', '2.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 (85561, '2022-05-26', 1765, 81020, 5236, 3175, '-15.0000', '90.0000', '90.0000', '9.5000', '9.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 (85562, '2022-05-26', 1765, 81020, 5236, NULL, '16.0000', '90.0000', '90.0000', '9.5000', '9.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 (85563, '2022-05-26', 2352, 81021, 5236, 3855, '-193.0000', '20.0000', '20.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 (85564, '2022-05-26', 2352, 81021, 5236, NULL, '203.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-203.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85565, '2022-05-26', 7741, 81022, 5236, NULL, '1.0000', '1.2000', '1.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 (85566, '2022-05-26', 8208, 81023, 5236, NULL, '1.0000', '33.0000', '33.0000', '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 (85567, '2022-05-26', 2491, 81024, 5236, 6228, '-31.0000', '12.2000', '12.2000', '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 (85568, '2022-05-26', 2491, 81024, 5236, NULL, '32.0000', '12.2000', '12.2000', '17.5000', '17.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85569, '2022-05-26', 3029, 81025, 5236, NULL, '1.0000', '4.7700', '4.7700', '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 (85570, '2022-05-26', 2354, 81026, 5236, 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 (85571, '2022-05-26', 1945, 81027, 5236, 18023, '-5.0000', '9.5000', '9.5000', '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 (85572, '2022-05-26', 1945, 81027, 5236, NULL, '6.0000', '9.5000', '9.5000', '13.0000', '13.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 (85573, '2022-05-26', 1856, 81028, 5236, NULL, '1.0000', '4.2500', '4.2500', '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 (85574, '2022-05-26', 1613, 81029, 5236, 8733, '-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 (85575, '2022-05-26', 1613, 81029, 5236, NULL, '2.0000', '90.0000', '90.0000', '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 (85576, '2022-05-26', 1805, 81030, 5236, NULL, '1.0000', '195.3170', '195.3170', '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 (85577, '2022-05-26', 8877, 81031, 5236, NULL, '1.0000', '15.0000', '15.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 (85578, '2022-05-26', 2693, 81032, 5236, 12285, '-4.0000', '25.3656', '25.3656', '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 (85579, '2022-05-26', 2693, 81032, 5236, NULL, '5.0000', '25.3656', '25.3656', '30.0000', '30.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 (85580, '2022-05-26', 9732, 81033, 5236, 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 (85581, '2022-05-26', 9539, 81034, 5236, NULL, '1.0000', '26.0000', '26.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 (85582, '2022-05-26', 2315, 81035, 5236, 2735, '-389.0000', '0.3300', '0.3300', '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 (85583, '2022-05-26', 2315, 81035, 5236, NULL, '390.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-390.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85584, '2022-05-26', 1863, 81036, 5236, 10808, '-126.0000', '0.4136', '0.4136', '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 (85585, '2022-05-26', 1863, 81036, 5236, NULL, '129.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-129.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85586, '2022-05-26', 1984, 81037, 5236, 6347, '-2.0000', '6.5000', '6.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 (85587, '2022-05-26', 1984, 81037, 5236, NULL, '3.0000', '6.5000', '6.5000', '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 (85588, '2022-05-26', 2036, 81038, 5236, 4277, '-14.0000', '8.0000', '8.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 (85589, '2022-05-26', 2036, 81038, 5236, NULL, '15.0000', '8.0000', '8.0000', '15.0000', '15.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 (85590, '2022-05-26', 2083, 81039, 5236, 1629, '-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 (85591, '2022-05-26', 2083, 81039, 5236, NULL, '7.0000', '0.5800', '0.5800', '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 (85592, '2022-05-26', 9399, 81040, 5236, NULL, '1.0000', '0.9800', '0.9800', '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 (85593, '2022-05-26', 2379, 81041, 5236, 4032, '-59.0000', '1.5900', '1.5900', '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 (85594, '2022-05-26', 2379, 81041, 5236, NULL, '60.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85595, '2022-05-26', 1935, 81042, 5236, 5586, '-104.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 (85596, '2022-05-26', 1935, 81042, 5236, NULL, '105.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85597, '2022-05-26', 2266, 81043, 5236, 2801, '-12.0000', '6.4900', '6.4900', '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 (85598, '2022-05-26', 2266, 81043, 5236, NULL, '13.0000', '6.4900', '6.4900', '13.0000', '13.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 (85599, '2022-05-26', 2105, 81044, 5236, NULL, '2.0000', '1.3500', '1.3500', '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 (85600, '2022-05-26', 9740, 81045, 5236, NULL, '2.0000', '0.6600', '0.6600', '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 (85601, '2022-05-26', 1863, 81046, 5236, 10808, '-126.0000', '0.4136', '0.4136', '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 (85602, '2022-05-26', 1863, 81046, 5236, NULL, '128.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85603, '2022-05-26', 8539, 81047, 5237, NULL, '2.0000', '31.8000', '31.8000', '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 (85604, '2022-05-26', 7709, 81048, 5237, NULL, '2.0000', '3.5000', '3.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 (85605, '2022-05-26', 8878, 81049, 5237, NULL, '1.0000', '6.6700', '6.6700', '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 (85606, '2022-05-26', 9573, 81050, 5237, 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 (85607, '2022-05-26', 7892, 81051, 5237, NULL, '1.0000', '4.2000', '4.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 (85608, '2022-05-26', 7555, 81052, 5237, 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 (85609, '2022-05-26', 2327, 81053, 5238, 49257, '1.0000', '3.8469', '3.8469', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85610, '2022-05-26', 1590, 81054, 5238, 55929, '4.0000', '2.2860', '2.2860', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85611, '2022-05-26', 9715, 81055, 5238, 54881, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85612, '2022-05-26', 8743, 81056, 5238, NULL, '1.0000', '15.7500', '15.7500', '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 (85613, '2022-05-26', 7713, 81057, 5238, 55675, '2.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85614, '2022-05-26', 1905, 81058, 5239, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85615, '2022-05-26', 2448, 81059, 5240, 5799, '-1.0000', '5.0000', '5.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 (85616, '2022-05-26', 2448, 81059, 5240, NULL, '2.0000', '5.0000', '5.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 (85617, '2022-05-26', 2916, 81060, 5240, 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 (85618, '2022-05-26', 2253, 81061, 5240, 2790, '-1.0000', '9.2500', '9.2500', '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 (85619, '2022-05-26', 2253, 81061, 5240, NULL, '2.0000', '9.2500', '9.2500', '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 (85620, '2022-05-26', 1371, 81062, 5240, 10169, '-3.0000', '5.5000', '5.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 (85621, '2022-05-26', 1371, 81062, 5240, NULL, '4.0000', '5.5000', '5.5000', '10.0000', '10.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 (85622, '2022-05-26', 2135, 81063, 5240, 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 (85623, '2022-05-26', 1888, 81064, 5240, 14663, '-8.0000', '134.8400', '134.8400', '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 (85624, '2022-05-26', 1888, 81064, 5240, NULL, '9.0000', '134.8400', '134.8400', '25.0000', '25.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 (85625, '2022-05-26', 2169, 81065, 5240, 10737, '-134.0000', '3.8397', '3.8397', '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 (85626, '2022-05-26', 2169, 81065, 5240, NULL, '135.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85627, '2022-05-26', 7353, 81066, 5241, NULL, '1.0000', '0.1900', '0.1900', '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 (85628, '2022-05-26', 9737, 81067, 5241, NULL, '1.0000', '7.3000', '7.3000', '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 (85629, '2022-05-26', 1807, 81068, 5241, 18924, '3.0000', '1.8000', '1.8000', '2.5000', '2.5000', '20.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 (85630, '2022-05-26', 2643, 81069, 5241, NULL, '1.0000', '0.8700', '0.8700', '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 (85631, '2022-05-27', 8481, 81070, 5242, NULL, '1.0000', '38.8000', '38.8000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85632, '2022-05-27', 1689, 81071, 5242, 55873, '1.0000', '13.8448', '13.8448', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85633, '2022-05-27', 9834, 81072, 5242, 52277, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85634, '2022-05-27', 2286, 81073, 5242, 56241, '2.0000', '4.9825', '4.9825', '7.0000', '7.0000', '38.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85635, '2022-05-27', 2169, 81074, 5242, 56231, '2.0000', '1.2550', '1.2550', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85636, '2022-05-27', 9821, 81075, 5242, 55823, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85637, '2022-05-27', 2068, 81076, 5242, 55506, '1.0000', '11.7097', '11.7097', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85638, '2022-05-27', 2169, 81077, 5242, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85639, '2022-05-27', 1651, 81078, 5242, 56210, '1.0000', '7.4448', '7.4448', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85640, '2022-05-27', 9291, 81079, 5242, 55493, '1.0000', '15.5542', '15.5542', '20.5000', '20.5000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85641, '2022-05-27', 2360, 81080, 5242, 49990, '1.0000', '0.5200', '0.5200', '0.8000', '0.8000', '29.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85642, '2022-05-27', 2169, 81081, 5242, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85643, '2022-05-27', 1871, 81082, 5242, 56238, '4.0000', '5.0960', '5.0960', '3.7000', '3.7000', '96.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85644, '2022-05-27', 9788, 81083, 5242, 53266, '1.0000', '1.5100', '1.5100', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85645, '2022-05-27', 1863, 81084, 5242, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85646, '2022-05-27', 1863, 81085, 5243, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85647, '2022-05-27', 1763, 81086, 5243, 55751, '1.0000', '4.7363', '4.7363', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85648, '2022-05-27', 1845, 81087, 5243, 55763, '1.0000', '21.1002', '21.1002', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85649, '2022-05-27', 2893, 81088, 5243, 56222, '1.0000', '6.3417', '6.3417', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85650, '2022-05-27', 9372, 81089, 5243, NULL, '1.0000', '42.3000', '42.3000', '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 (85651, '2022-05-27', 9760, 81090, 5244, 55816, '1.0000', '1.1000', '1.1000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85652, '2022-05-27', 9906, 81091, 5244, NULL, '1.0000', '5.7500', '5.7500', '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 (85653, '2022-05-27', 2379, 81092, 5245, NULL, '1.0000', '-3.0170', '-3.0170', '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 (85654, '2022-05-27', 1841, 81093, 5245, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85655, '2022-05-27', 1840, 81094, 5245, 55654, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85656, '2022-05-27', 1699, 81095, 5245, NULL, '1.0000', '3.2000', '3.2000', '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 (85657, '2022-05-27', 2242, 81096, 5245, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '97.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85658, '2022-05-27', 1841, 81097, 5245, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85659, '2022-05-27', 1840, 81098, 5245, 55654, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85660, '2022-05-27', 2289, 81099, 5245, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85661, '2022-05-27', 1650, 81100, 5245, 56431, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85662, '2022-05-27', 7756, 81101, 5245, NULL, '1.0000', '2.5000', '2.5000', '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 (85663, '2022-05-27', 7637, 81102, 5245, 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 (85664, '2022-05-27', 7756, 81103, 5245, NULL, '1.0000', '2.5000', '2.5000', '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 (85665, '2022-05-27', 1697, 81104, 5245, 34610, '1.0000', '24.8800', '24.8800', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85666, '2022-05-27', 1307, 81105, 5245, NULL, '1.0000', '-11.7284', '-11.7284', '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 (85667, '2022-05-27', 1551, 81106, 5245, 48915, '1.0000', '14.7700', '14.7700', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85668, '2022-05-27', 7612, 81107, 5245, NULL, '1.0000', '1.6100', '1.6100', '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 (85669, '2022-05-27', 2270, 81108, 5245, 55948, '1.0000', '6.1250', '6.1250', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85670, '2022-05-27', 1674, 81109, 5245, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85671, '2022-05-27', 1499, 81110, 5245, 54918, '2.0000', '0.3993', '0.3993', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85672, '2022-05-27', 2237, 81111, 5245, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85673, '2022-05-27', 1867, 81112, 5245, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85674, '2022-05-27', 7483, 81113, 5245, 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 (85675, '2022-05-27', 1699, 81114, 5245, NULL, '1.0000', '3.2000', '3.2000', '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 (85676, '2022-05-27', 2379, 81115, 5245, NULL, '1.0000', '-3.0170', '-3.0170', '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 (85677, '2022-05-27', 2416, 81116, 5245, 54068, '2.0000', '1.2379', '1.2379', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85678, '2022-05-27', 2379, 81117, 5245, NULL, '1.0000', '-3.0170', '-3.0170', '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 (85679, '2022-05-27', 1855, 81118, 5245, NULL, '1.0000', '1.4820', '1.4820', '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 (85680, '2022-05-27', 9834, 81119, 5245, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85681, '2022-05-27', 1837, 81120, 5245, 56452, '2.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85682, '2022-05-27', 1875, 81121, 5245, 55926, '10.0000', '2.7375', '2.7375', '3.7000', '3.7000', '50.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85683, '2022-05-27', 9840, 81122, 5245, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85684, '2022-05-27', 1871, 81123, 5245, NULL, '2.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85685, '2022-05-27', 1499, 81124, 5245, 54918, '2.0000', '0.3993', '0.3993', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85686, '2022-05-27', 9695, 81125, 5245, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85687, '2022-05-27', 9151, 81126, 5245, 56407, '1.0000', '23.5000', '23.5000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85688, '2022-05-27', 2102, 81127, 5245, 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 (85689, '2022-05-27', 9695, 81128, 5245, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85690, '2022-05-27', 2716, 81129, 5245, 19366, '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 (85691, '2022-05-27', 1631, 81130, 5245, 51498, '1.0000', '12.8300', '12.8300', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85692, '2022-05-27', 9695, 81131, 5245, 55963, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85693, '2022-05-27', 2020, 81132, 5246, 55882, '1.0000', '5.9463', '5.9463', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85694, '2022-05-27', 7518, 81133, 5247, 55965, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85695, '2022-05-27', 7490, 81134, 5247, 51289, '11.0000', '2.7486', '2.7486', '0.4000', '0.4000', '70.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85696, '2022-05-27', 7832, 81135, 5247, 54475, '1.0000', '12.9545', '12.9545', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85697, '2022-05-27', 1827, 81136, 5247, NULL, '13.0000', '0.2000', '0.2000', '0.3000', '0.3000', '-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 (85698, '2022-05-27', 7357, 81137, 5247, NULL, '1.0000', '11.7500', '11.7500', '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 (85699, '2022-05-27', 7848, 81138, 5247, NULL, '1.0000', '-64.7099', '-64.7099', '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 (85700, '2022-05-27', 2296, 81139, 5247, NULL, '1.0000', '12.8812', '12.8812', '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 (85701, '2022-05-27', 7658, 81140, 5247, 56019, '10.0000', '188.9318', '188.9318', '3.5000', '3.5000', '90.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85702, '2022-05-27', 9690, 81141, 5247, 43452, '1.0000', '25.4200', '25.4200', '33.5000', '33.5000', '0.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85703, '2022-05-27', 7514, 81142, 5247, NULL, '2.0000', '3234.0124', '3234.0124', '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 (85704, '2022-05-27', 7674, 81143, 5247, 55974, '1.0000', '178.2720', '178.2720', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85705, '2022-05-27', 7961, 81144, 5247, 56170, '1.0000', '10.2725', '10.2725', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85706, '2022-05-27', 2154, 81145, 5247, 43435, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85707, '2022-05-27', 2104, 81146, 5247, NULL, '2.0000', '0.2000', '0.2000', '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 (85708, '2022-05-27', 2315, 81147, 5247, 53909, '1.0000', '0.6636', '0.6636', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85709, '2022-05-27', 9399, 81148, 5247, NULL, '1.0000', '0.9794', '0.9794', '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 (85710, '2022-05-27', 7560, 81149, 5247, NULL, '1.0000', '39.3500', '39.3500', '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 (85711, '2022-05-27', 8918, 81150, 5247, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85712, '2022-05-27', 7917, 81151, 5247, 52750, '4.0000', '2.1447', '2.1447', '0.7000', '0.7000', '103.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85713, '2022-05-27', 9747, 81152, 5247, 56183, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85714, '2022-05-27', 8084, 81153, 5247, 56160, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85715, '2022-05-27', 8920, 81154, 5247, NULL, '1.0000', '14.4571', '14.4571', '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 (85716, '2022-05-27', 9579, 81155, 5247, 56067, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85717, '2022-05-27', 8086, 81156, 5247, NULL, '1.0000', '9.3820', '9.3820', '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 (85718, '2022-05-27', 7469, 81157, 5247, NULL, '1.0000', '18.8000', '18.8000', '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 (85719, '2022-05-27', 8152, 81158, 5247, NULL, '1.0000', '0.1400', '0.1400', '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 (85720, '2022-05-27', 9316, 81159, 5247, 52456, '2.0000', '8.7300', '8.7300', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85721, '2022-05-27', 7709, 81160, 5247, NULL, '2.0000', '202.4582', '202.4582', '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 (85722, '2022-05-27', 7642, 81161, 5247, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '16.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85723, '2022-05-27', 7535, 81162, 5247, 53512, '1.0000', '4.5946', '4.5946', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85724, '2022-05-27', 7385, 81163, 5247, 55971, '4.0000', '9.8350', '9.8350', '4.0000', '4.0000', '56.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85725, '2022-05-27', 7641, 81164, 5247, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85726, '2022-05-27', 7674, 81165, 5247, 55974, '1.0000', '178.2720', '178.2720', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85727, '2022-05-27', 1668, 81166, 5248, 55473, '1.0000', '40.5964', '40.5964', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85728, '2022-05-27', 2516, 81167, 5248, 54332, '1.0000', '7.4804', '7.4804', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85729, '2022-05-27', 7659, 81168, 5249, NULL, '1.0000', '5.9700', '5.9700', '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 (85730, '2022-05-27', 2169, 81169, 5249, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85731, '2022-05-27', 7412, 81170, 5250, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85732, '2022-05-27', 9626, 81171, 5251, 40340, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85733, '2022-05-27', 1332, 81172, 5251, 19335, '1.0000', '7.5000', '7.5000', '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 (85734, '2022-05-27', 2754, 81173, 5251, 18938, '6.0000', '0.0800', '0.0800', '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 (85735, '2022-05-27', 7862, 81174, 5251, 39847, '1.0000', '3.8500', '3.8500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85736, '2022-05-27', 7579, 81175, 5251, NULL, '4.0000', '15.0000', '15.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 (85737, '2022-05-27', 7685, 81176, 5251, NULL, '4.0000', '31.2000', '31.2000', '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 (85738, '2022-05-27', 2079, 81177, 5251, 55647, '4.0000', '1.8809', '1.8809', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85739, '2022-05-27', 2753, 81178, 5251, 53665, '2.0000', '4.8632', '4.8632', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85740, '2022-05-27', 1340, 81179, 5251, 55627, '2.0000', '3.6010', '3.6010', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85741, '2022-05-27', 1493, 81180, 5251, NULL, '1.0000', '-27.3400', '-27.3400', '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 (85742, '2022-05-27', 2748, 81181, 5251, 31099, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85743, '2022-05-27', 1329, 81182, 5251, NULL, '1.0000', '4.2000', '4.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 (85744, '2022-05-27', 7480, 81183, 5252, NULL, '1.0000', '3.1000', '3.1000', '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 (85745, '2022-05-27', 7402, 81184, 5252, NULL, '1.0000', '18.9000', '18.9000', '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 (85746, '2022-05-27', 2100, 81185, 5253, 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 (85747, '2022-05-27', 7859, 81186, 5253, NULL, '1.0000', '12.6300', '12.6300', '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 (85748, '2022-05-27', 2287, 81187, 5253, 2947, '-31.0000', '1.8000', '1.8000', '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 (85749, '2022-05-27', 2287, 81187, 5253, NULL, '33.0000', '1.8000', '1.8000', '4.0000', '4.0000', '-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 (85750, '2022-05-27', 2295, 81188, 5253, 2954, '-5.0000', '0.9600', '0.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 (85751, '2022-05-27', 2295, 81188, 5253, NULL, '7.0000', '0.9600', '0.9600', '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 (85752, '2022-05-27', 7877, 81189, 5253, NULL, '1.0000', '4.4000', '4.4000', '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 (85753, '2022-05-27', 7429, 81190, 5253, NULL, '1.0000', '3.2700', '3.2700', '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 (85754, '2022-05-27', 2315, 81191, 5253, 2735, '-390.0000', '0.3300', '0.3300', '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 (85755, '2022-05-27', 2315, 81191, 5253, NULL, '392.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-392.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85756, '2022-05-27', 7390, 81192, 5253, NULL, '1.0000', '6.9800', '6.9800', '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 (85757, '2022-05-27', 7514, 81193, 5253, NULL, '1.0000', '2.2500', '2.2500', '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 (85758, '2022-05-27', 7518, 81194, 5253, NULL, '1.0000', '7.8200', '7.8200', '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 (85759, '2022-05-27', 7411, 81195, 5253, NULL, '2.0000', '1.3500', '1.3500', '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 (85760, '2022-05-27', 9730, 81196, 5253, NULL, '1.0000', '18.2000', '18.2000', '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 (85761, '2022-05-27', 7744, 81197, 5253, 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 (85762, '2022-05-27', 7999, 81198, 5253, NULL, '2.0000', '1.7500', '1.7500', '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 (85763, '2022-05-27', 7886, 81199, 5253, 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 (85764, '2022-05-27', 9885, 81200, 5253, 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 (85765, '2022-05-27', 2726, 81201, 5253, NULL, '1.0000', '4.0000', '4.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 (85766, '2022-05-27', 9512, 81202, 5253, 33797, '1.0000', '1.3100', '1.3100', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85767, '2022-05-27', 2315, 81203, 5253, 2735, '-390.0000', '0.3300', '0.3300', '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 (85768, '2022-05-27', 2315, 81203, 5253, NULL, '391.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-391.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85769, '2022-05-27', 7753, 81204, 5253, NULL, '1.0000', '3.4000', '3.4000', '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 (85770, '2022-05-27', 7952, 81205, 5253, 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 (85771, '2022-05-27', 8834, 81206, 5253, 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 (85772, '2022-05-27', 7616, 81207, 5253, NULL, '1.0000', '21.5000', '21.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 (85773, '2022-05-27', 8918, 81208, 5253, NULL, '1.0000', '1.0400', '1.0400', '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 (85774, '2022-05-27', 3074, 81209, 5253, 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 (85775, '2022-05-27', 1671, 81210, 5253, 7457, '-42.0000', '4.2000', '4.2000', '64.0000', '64.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85776, '2022-05-27', 1671, 81210, 5253, NULL, '43.0000', '4.2000', '4.2000', '64.0000', '64.0000', '-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 (85777, '2022-05-27', 7457, 81211, 5253, 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 (85778, '2022-05-27', 7666, 81212, 5253, NULL, '1.0000', '3.6000', '3.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 (85779, '2022-05-27', 8064, 81213, 5253, 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 (85780, '2022-05-27', 7635, 81214, 5253, NULL, '2.0000', '13.7500', '13.7500', '18.5000', '18.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 (85781, '2022-05-27', 7780, 81215, 5253, NULL, '1.0000', '11.6000', '11.6000', '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 (85782, '2022-05-27', 7318, 81216, 5253, NULL, '1.0000', '13.4400', '13.4400', '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 (85783, '2022-05-27', 8345, 81217, 5253, NULL, '1.0000', '5.9000', '5.9000', '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 (85784, '2022-05-27', 7640, 81218, 5253, 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 (85785, '2022-05-27', 7630, 81219, 5253, NULL, '1.0000', '10.0000', '10.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 (85786, '2022-05-27', 2295, 81220, 5253, 2954, '-5.0000', '0.9600', '0.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 (85787, '2022-05-27', 2295, 81220, 5253, NULL, '7.0000', '0.9600', '0.9600', '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 (85788, '2022-05-27', 9177, 81221, 5253, 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 (85789, '2022-05-27', 7425, 81222, 5253, NULL, '1.0000', '9.5000', '9.5000', '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 (85790, '2022-05-27', 1760, 81223, 5253, 20604, '1.0000', '111.8384', '111.8384', '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 (85791, '2022-05-27', 7881, 81224, 5253, NULL, '1.0000', '2.3000', '2.3000', '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 (85792, '2022-05-27', 7848, 81225, 5253, NULL, '1.0000', '1.3500', '1.3500', '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 (85793, '2022-05-27', 8759, 81226, 5253, NULL, '1.0000', '6.5000', '6.5000', '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 (85794, '2022-05-27', 9092, 81227, 5253, NULL, '6.0000', '5.2900', '5.2900', '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 (85795, '2022-05-27', 7585, 81228, 5253, NULL, '1.0000', '3.9600', '3.9600', '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 (85796, '2022-05-27', 8631, 81229, 5253, NULL, '1.0000', '5.0000', '5.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 (85797, '2022-05-27', 7709, 81230, 5253, NULL, '2.0000', '3.5000', '3.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 (85798, '2022-05-27', 1840, 81231, 5253, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (85799, '2022-05-27', 7524, 81232, 5253, NULL, '2.0000', '11.9500', '11.9500', '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 (85800, '2022-05-27', 7518, 81233, 5253, NULL, '1.0000', '7.8200', '7.8200', '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 (85801, '2022-05-27', 7780, 81234, 5253, NULL, '1.0000', '11.6000', '11.6000', '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 (85802, '2022-05-27', 7411, 81235, 5253, NULL, '1.0000', '1.3500', '1.3500', '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 (85803, '2022-05-27', 8167, 81236, 5253, NULL, '1.0000', '16.2000', '16.2000', '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 (85804, '2022-05-27', 8097, 81237, 5253, NULL, '4.0000', '3.4000', '3.4000', '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 (85805, '2022-05-27', 7321, 81238, 5253, NULL, '1.0000', '7.9500', '7.9500', '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 (85806, '2022-05-27', 9456, 81239, 5253, NULL, '1.0000', '3.3200', '3.3200', '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 (85807, '2022-05-27', 7385, 81240, 5253, NULL, '4.0000', '2.0000', '2.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 (85808, '2022-05-27', 1532, 81241, 5254, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85809, '2022-05-27', 2405, 81242, 5254, 55087, '5.0000', '1.2000', '1.2000', '1.8000', '1.8000', '39.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85810, '2022-05-27', 2318, 81243, 5254, 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 (85811, '2022-05-27', 9817, 81244, 5254, 55531, '1.0000', '5.9800', '5.9800', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85812, '2022-05-27', 2567, 81245, 5254, 55833, '1.0000', '37.4793', '37.4793', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85813, '2022-05-27', 9539, 81246, 5254, 40116, '1.0000', '26.0000', '26.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85814, '2022-05-27', 1342, 81247, 5254, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85815, '2022-05-27', 8878, 81248, 5254, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85816, '2022-05-27', 2242, 81249, 5254, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '95.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85817, '2022-05-27', 2379, 81250, 5254, NULL, '1.0000', '-3.0170', '-3.0170', '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 (85818, '2022-05-27', 9794, 81251, 5254, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85819, '2022-05-27', 7411, 81252, 5254, NULL, '1.0000', '1.3013', '1.3013', '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 (85820, '2022-05-27', 9841, 81253, 5254, 55669, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85821, '2022-05-27', 1757, 81254, 5254, NULL, '1.0000', '7.5869', '7.5869', '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 (85822, '2022-05-27', 2318, 81255, 5254, 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 (85823, '2022-05-27', 9736, 81256, 5254, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85824, '2022-05-27', 9762, 81257, 5254, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '38.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85825, '2022-05-27', 1646, 81258, 5254, 56415, '1.0000', '5.6514', '5.6514', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85826, '2022-05-27', 2821, 81259, 5254, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85827, '2022-05-27', 8362, 81260, 5254, NULL, '5.0000', '4.1000', '4.1000', '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 (85828, '2022-05-27', 7353, 81261, 5254, NULL, '1.0000', '0.1900', '0.1900', '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 (85829, '2022-05-27', 1712, 81262, 5254, 56463, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85830, '2022-05-27', 1748, 81263, 5254, NULL, '1.0000', '0.3200', '0.3200', '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 (85831, '2022-05-27', 2289, 81264, 5254, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85832, '2022-05-27', 7328, 81265, 5254, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (85833, '2022-05-27', 1571, 81266, 5254, NULL, '1.0000', '308.7500', '308.7500', '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 (85834, '2022-05-27', 2379, 81267, 5254, NULL, '1.0000', '-3.0170', '-3.0170', '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 (85835, '2022-05-27', 9740, 81268, 5254, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '135.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85836, '2022-05-27', 2411, 81269, 5254, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85837, '2022-05-27', 2411, 81270, 5254, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85838, '2022-05-27', 7744, 81271, 5254, NULL, '2.0000', '2.5833', '2.5833', '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 (85839, '2022-05-27', 1501, 81272, 5254, NULL, '1.0000', '0.9225', '0.9225', '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 (85840, '2022-05-27', 1935, 81273, 5254, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85841, '2022-05-27', 2169, 81274, 5254, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85842, '2022-05-27', 7324, 81275, 5254, 51663, '2.0000', '5.4813', '5.4813', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85843, '2022-05-27', 9834, 81276, 5254, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85844, '2022-05-27', 1840, 81277, 5254, 55654, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85845, '2022-05-27', 1312, 81278, 5254, 48664, '1.0000', '6.9511', '6.9511', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85846, '2022-05-27', 2250, 81279, 5254, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85847, '2022-05-27', 9736, 81280, 5254, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85848, '2022-05-27', 2511, 81281, 5254, 54960, '1.0000', '13.8000', '13.8000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85849, '2022-05-27', 9737, 81282, 5254, 55942, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85850, '2022-05-27', 1307, 81283, 5254, NULL, '1.0000', '-11.7284', '-11.7284', '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 (85851, '2022-05-27', 7411, 81284, 5254, NULL, '1.0000', '1.3013', '1.3013', '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 (85852, '2022-05-27', 1342, 81285, 5254, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85853, '2022-05-27', 9740, 81286, 5254, 55951, '3.0000', '0.6685', '0.6685', '2.0000', '2.0000', '133.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85854, '2022-05-27', 7411, 81287, 5254, NULL, '1.0000', '1.3013', '1.3013', '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 (85855, '2022-05-27', 1867, 81288, 5254, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85856, '2022-05-27', 2009, 81289, 5254, 39999, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85857, '2022-05-27', 7411, 81290, 5254, NULL, '3.0000', '1.3013', '1.3013', '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 (85858, '2022-05-27', 9794, 81291, 5254, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85859, '2022-05-27', 1529, 81292, 5254, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85860, '2022-05-27', 8169, 81293, 5254, NULL, '1.0000', '7.9800', '7.9800', '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 (85861, '2022-05-27', 1942, 81294, 5254, 55687, '1.0000', '20.0151', '20.0151', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85862, '2022-05-27', 1520, 81295, 5254, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85863, '2022-05-27', 9311, 81296, 5254, 55417, '1.0000', '7.8000', '7.8000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85864, '2022-05-27', 9794, 81297, 5254, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85865, '2022-05-27', 1342, 81298, 5254, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85866, '2022-05-27', 9902, 81299, 5254, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85867, '2022-05-27', 2315, 81300, 5254, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85868, '2022-05-27', 9542, 81301, 5254, 40115, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85869, '2022-05-27', 9834, 81302, 5254, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85870, '2022-05-27', 2592, 81303, 5254, 55933, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85871, '2022-05-27', 8677, 81304, 5254, NULL, '2.0000', '496.2705', '496.2705', '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 (85872, '2022-05-27', 2295, 81305, 5254, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85873, '2022-05-27', 2270, 81306, 5254, 55948, '1.0000', '6.1250', '6.1250', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85874, '2022-05-27', 1598, 81307, 5254, 52207, '1.0000', '4.4436', '4.4436', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85875, '2022-05-27', 2315, 81308, 5254, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85876, '2022-05-27', 2237, 81309, 5254, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85877, '2022-05-27', 2315, 81310, 5254, 54915, '5.0000', '0.7701', '0.7701', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85878, '2022-05-27', 2088, 81311, 5254, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85879, '2022-05-27', 2821, 81312, 5254, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85880, '2022-05-27', 1602, 81313, 5254, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85881, '2022-05-27', 7514, 81314, 5254, NULL, '1.0000', '2.2500', '2.2500', '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 (85882, '2022-05-27', 8758, 81315, 5254, 55427, '1.0000', '13.0000', '13.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85883, '2022-05-27', 9788, 81316, 5254, 54919, '4.0000', '1.5347', '1.5347', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85884, '2022-05-27', 1307, 81317, 5254, NULL, '1.0000', '-11.7284', '-11.7284', '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 (85885, '2022-05-27', 2260, 81318, 5254, 56404, '2.0000', '4.7545', '4.7545', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85886, '2022-05-27', 1772, 81319, 5254, 50227, '1.0000', '5.9152', '5.9152', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85887, '2022-05-27', 7713, 81320, 5254, 55675, '4.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85888, '2022-05-27', 1521, 81321, 5254, 56416, '1.0000', '10.1500', '10.1500', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85889, '2022-05-27', 1602, 81322, 5254, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85890, '2022-05-27', 2405, 81323, 5254, 55087, '11.0000', '1.2000', '1.2000', '1.8000', '1.8000', '33.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85891, '2022-05-27', 9204, 81324, 5254, NULL, '1.0000', '14.1514', '14.1514', '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 (85892, '2022-05-27', 2318, 81325, 5254, 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 (85893, '2022-05-27', 1574, 81326, 5254, NULL, '1.0000', '1.7000', '1.7000', '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 (85894, '2022-05-27', 9915, 81327, 5254, 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 (85895, '2022-05-27', 7472, 81328, 5254, NULL, '1.0000', '-56.4939', '-56.4939', '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 (85896, '2022-05-27', 7411, 81329, 5254, NULL, '2.0000', '1.3013', '1.3013', '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 (85897, '2022-05-27', 9695, 81330, 5254, 55410, '3.0000', '5.1516', '5.1516', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85898, '2022-05-27', 1499, 81331, 5254, 54918, '10.0000', '0.3993', '0.3993', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85899, '2022-05-27', 2350, 81332, 5254, 55958, '1.0000', '10.7550', '10.7550', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85900, '2022-05-27', 8069, 81333, 5254, 37771, '1.0000', '29.1700', '29.1700', '52.0000', '52.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85901, '2022-05-27', 9715, 81334, 5254, 51322, '1.0000', '9.4000', '9.4000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85902, '2022-05-27', 2169, 81335, 5254, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85903, '2022-05-27', 8017, 81336, 5254, NULL, '4.0000', '0.6000', '0.6000', '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 (85904, '2022-05-27', 1395, 81337, 5254, 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 (85905, '2022-05-27', 1499, 81338, 5254, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85906, '2022-05-27', 1342, 81339, 5254, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85907, '2022-05-27', 8878, 81340, 5254, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85908, '2022-05-27', 8086, 81341, 5254, NULL, '1.0000', '9.3000', '9.3000', '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 (85909, '2022-05-27', 2315, 81342, 5254, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85910, '2022-05-27', 2416, 81343, 5254, 54068, '2.0000', '1.2379', '1.2379', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85911, '2022-05-27', 7339, 81344, 5254, NULL, '1.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85912, '2022-05-27', 2908, 81345, 5254, 55931, '4.0000', '0.3518', '0.3518', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85913, '2022-05-27', 2245, 81346, 5254, 51375, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85914, '2022-05-27', 2169, 81347, 5254, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85915, '2022-05-27', 2315, 81348, 5254, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85916, '2022-05-27', 2079, 81349, 5254, 55647, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85917, '2022-05-27', 1602, 81350, 5254, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85918, '2022-05-27', 8169, 81351, 5254, NULL, '1.0000', '7.9800', '7.9800', '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 (85919, '2022-05-27', 2237, 81352, 5254, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85920, '2022-05-27', 2983, 81353, 5254, 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 (85921, '2022-05-27', 2293, 81354, 5254, NULL, '3.0000', '-17.4320', '-17.4320', '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 (85922, '2022-05-27', 1501, 81355, 5254, NULL, '1.0000', '0.9225', '0.9225', '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 (85923, '2022-05-27', 2345, 81356, 5254, 56377, '1.0000', '7.7764', '7.7764', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85924, '2022-05-27', 1668, 81357, 5254, 55932, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85925, '2022-05-27', 9747, 81358, 5254, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85926, '2022-05-27', 7411, 81359, 5254, NULL, '2.0000', '1.3013', '1.3013', '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 (85927, '2022-05-27', 1342, 81360, 5254, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85928, '2022-05-27', 1529, 81361, 5254, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85929, '2022-05-28', 7411, 81362, 5255, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85930, '2022-05-28', 8918, 81363, 5255, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85931, '2022-05-28', 9160, 81364, 5255, NULL, '1.0000', '41.6640', '41.6640', '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 (85932, '2022-05-28', 8065, 81365, 5255, NULL, '1.0000', '32.0000', '32.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 (85933, '2022-05-28', 7780, 81366, 5255, NULL, '1.0000', '-383.6863', '-383.6863', '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 (85934, '2022-05-28', 2284, 81367, 5255, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85935, '2022-05-28', 7629, 81368, 5255, NULL, '1.0000', '-167.0500', '-167.0500', '240.0000', '240.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85936, '2022-05-28', 7926, 81369, 5255, NULL, '1.0000', '5.4999', '5.4999', '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 (85937, '2022-05-28', 7954, 81370, 5255, NULL, '4.0000', '-15800.4581', '-15800.4581', '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 (85938, '2022-05-28', 7790, 81371, 5255, 38457, '4.0000', '-7.6667', '-7.6667', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 272);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85939, '2022-05-28', 7790, 81371, 5255, NULL, '4.0000', '-7.6667', '-7.6667', '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 (85940, '2022-05-28', 8712, 81372, 5255, NULL, '1.0000', '6.8900', '6.8900', '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 (85941, '2022-05-28', 8097, 81373, 5255, NULL, '4.0000', '1.6941', '1.6941', '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 (85942, '2022-05-28', 8677, 81374, 5255, 51791, '2.0000', '1.2300', '1.2300', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85943, '2022-05-28', 9576, 81375, 5255, 54473, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85944, '2022-05-28', 9755, 81376, 5255, 54474, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85945, '2022-05-28', 8825, 81377, 5255, 56568, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85946, '2022-05-28', 7678, 81378, 5255, NULL, '1.0000', '5.1400', '5.1400', '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 (85947, '2022-05-28', 7472, 81379, 5255, NULL, '1.0000', '-35.4938', '-35.4938', '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 (85948, '2022-05-28', 7900, 81380, 5255, NULL, '1.0000', '2.5000', '2.5000', '3.2000', '3.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 (85949, '2022-05-28', 2079, 81381, 5255, 45601, '1.0000', '2.1080', '2.1080', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85950, '2022-05-28', 7806, 81382, 5255, NULL, '5.0000', '69.7811', '69.7811', '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 (85951, '2022-05-28', 7981, 81383, 5255, NULL, '10.0000', '3.3321', '3.3321', '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 (85952, '2022-05-28', 8457, 81384, 5255, NULL, '1.0000', '4.9044', '4.9044', '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 (85953, '2022-05-28', 8254, 81385, 5255, 51098, '1.0000', '25.8981', '25.8981', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85954, '2022-05-28', 8690, 81386, 5255, 50462, '1.0000', '10.8000', '10.8000', '14.5000', '14.5000', '15.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85955, '2022-05-28', 9529, 81387, 5255, 48024, '1.0000', '9.2200', '9.2200', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85956, '2022-05-28', 9631, 81388, 5255, 45866, '1.0000', '7.0000', '7.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85957, '2022-05-28', 7753, 81389, 5255, 56557, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85958, '2022-05-28', 7892, 81390, 5255, NULL, '1.0000', '5.3403', '5.3403', '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 (85959, '2022-05-28', 2069, 81391, 5255, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85960, '2022-05-28', 8097, 81392, 5255, NULL, '2.0000', '1.6941', '1.6941', '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 (85961, '2022-05-28', 7736, 81393, 5255, 56169, '1.0000', '38.8300', '38.8300', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85962, '2022-05-28', 8677, 81394, 5255, 51791, '2.0000', '1.2300', '1.2300', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85963, '2022-05-28', 7927, 81395, 5255, 53787, '2.0000', '12.2484', '12.2484', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85964, '2022-05-28', 8006, 81396, 5255, 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 (85965, '2022-05-28', 8481, 81397, 5255, NULL, '1.0000', '24.3753', '24.3753', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85966, '2022-05-28', 7473, 81398, 5255, 56553, '10.0000', '75.1643', '75.1643', '0.7000', '0.7000', '26.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85967, '2022-05-28', 7703, 81399, 5255, 56580, '2.0000', '-4961.0093', '-4961.0093', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85968, '2022-05-28', 2986, 81400, 5256, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85969, '2022-05-28', 2607, 81401, 5256, NULL, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85970, '2022-05-28', 2169, 81402, 5256, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85971, '2022-05-28', 7411, 81403, 5256, NULL, '1.0000', '1.3013', '1.3013', '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 (85972, '2022-05-28', 9873, 81404, 5256, NULL, '1.0000', '8.5000', '8.5000', '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 (85973, '2022-05-28', 1825, 81405, 5256, 55678, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85974, '2022-05-28', 9762, 81406, 5256, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '37.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85975, '2022-05-28', 2169, 81407, 5256, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85976, '2022-05-28', 1519, 81408, 5256, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85977, '2022-05-28', 1863, 81409, 5256, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85978, '2022-05-28', 9747, 81410, 5256, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85979, '2022-05-28', 2681, 81411, 5256, 56388, '1.0000', '15.5000', '15.5000', '24.5000', '24.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85980, '2022-05-28', 1863, 81412, 5256, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85981, '2022-05-28', 7756, 81413, 5256, NULL, '1.0000', '2.5000', '2.5000', '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 (85982, '2022-05-28', 8068, 81414, 5256, NULL, '1.0000', '8.7900', '8.7900', '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 (85983, '2022-05-28', 1432, 81415, 5256, 55690, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85984, '2022-05-28', 1602, 81416, 5256, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85985, '2022-05-28', 2250, 81417, 5256, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85986, '2022-05-28', 2948, 81418, 5256, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85987, '2022-05-28', 9873, 81419, 5256, NULL, '1.0000', '8.5000', '8.5000', '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 (85988, '2022-05-28', 1578, 81420, 5256, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85989, '2022-05-28', 9794, 81421, 5256, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85990, '2022-05-28', 2416, 81422, 5256, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85991, '2022-05-28', 1954, 81423, 5256, 48688, '1.0000', '3.4000', '3.4000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85992, '2022-05-28', 7411, 81424, 5256, NULL, '2.0000', '1.3013', '1.3013', '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 (85993, '2022-05-28', 9738, 81425, 5256, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85994, '2022-05-28', 8068, 81426, 5256, NULL, '1.0000', '8.7900', '8.7900', '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 (85995, '2022-05-28', 1532, 81427, 5256, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85996, '2022-05-28', 8677, 81428, 5256, NULL, '2.0000', '496.2705', '496.2705', '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 (85997, '2022-05-28', 2293, 81429, 5256, NULL, '3.0000', '-17.4320', '-17.4320', '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 (85998, '2022-05-28', 2405, 81430, 5256, 55087, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '27.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85999, '2022-05-28', 1689, 81431, 5256, 56468, '1.0000', '15.5565', '15.5565', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86000, '2022-05-28', 3044, 81432, 5256, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '26.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 (86001, '2022-05-28', 2275, 81433, 5256, NULL, '3.0000', '1.0900', '1.0900', '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 (86002, '2022-05-28', 2221, 81434, 5256, NULL, '1.0000', '12.6522', '12.6522', '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 (86003, '2022-05-28', 7756, 81435, 5256, NULL, '1.0000', '2.5000', '2.5000', '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 (86004, '2022-05-28', 7802, 81436, 5256, NULL, '3.0000', '1.1497', '1.1497', '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 (86005, '2022-05-28', 9738, 81437, 5256, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86006, '2022-05-28', 1519, 81438, 5256, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86007, '2022-05-28', 8362, 81439, 5256, NULL, '3.0000', '4.1000', '4.1000', '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 (86008, '2022-05-28', 1528, 81440, 5256, NULL, '3.0000', '323.4803', '323.4803', '8.5000', '8.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 (86009, '2022-05-28', 1371, 81441, 5256, NULL, '1.0000', '180.8891', '180.8891', '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 (86010, '2022-05-28', 1756, 81442, 5256, 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 (86011, '2022-05-28', 1841, 81443, 5256, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '21.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86012, '2022-05-28', 7756, 81444, 5256, NULL, '1.0000', '2.5000', '2.5000', '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 (86013, '2022-05-28', 1851, 81445, 5256, 55913, '1.0000', '12.6300', '12.6300', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86014, '2022-05-28', 7411, 81446, 5256, NULL, '1.0000', '1.3013', '1.3013', '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 (86015, '2022-05-28', 1839, 81447, 5256, NULL, '1.0000', '17468.6132', '17468.6132', '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 (86016, '2022-05-28', 7318, 81448, 5256, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86017, '2022-05-28', 2100, 81449, 5256, 31962, '1.0000', '1.6804', '1.6804', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86018, '2022-05-28', 8093, 81450, 5256, NULL, '1.0000', '8.7800', '8.7800', '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 (86019, '2022-05-28', 1676, 81451, 5256, 55540, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86020, '2022-05-28', 2416, 81452, 5256, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86021, '2022-05-28', 7491, 81453, 5257, NULL, '1.0000', '4.8000', '4.8000', '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 (86022, '2022-05-28', 1646, 81454, 5257, 56415, '1.0000', '5.6514', '5.6514', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86023, '2022-05-28', 2315, 81455, 5257, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86024, '2022-05-28', 9840, 81456, 5257, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86025, '2022-05-28', 2545, 81457, 5257, 55650, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86026, '2022-05-28', 1342, 81458, 5258, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86027, '2022-05-28', 1668, 81459, 5258, 55932, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86028, '2022-05-28', 9914, 81460, 5258, 55607, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86029, '2022-05-28', 8677, 81461, 5258, NULL, '2.0000', '496.2705', '496.2705', '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 (86030, '2022-05-28', 2315, 81462, 5258, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86031, '2022-05-28', 2315, 81463, 5259, 3069, '2.0000', '0.3300', '0.3300', '1.0000', '1.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 (86032, '2022-05-28', 8744, 81464, 5259, 55436, '1.0000', '3.5857', '3.5857', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86033, '2022-05-28', 1667, 81465, 5259, 56235, '1.0000', '22.3928', '22.3928', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86034, '2022-05-28', 2169, 81466, 5259, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86035, '2022-05-28', 2169, 81467, 5259, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86036, '2022-05-28', 9175, 81468, 5259, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86037, '2022-05-28', 2169, 81469, 5259, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86038, '2022-05-28', 9734, 81470, 5259, 56220, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86039, '2022-05-28', 2635, 81471, 5259, 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 (86040, '2022-05-28', 7604, 81472, 5259, NULL, '1.0000', '4.3900', '4.3900', '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 (86041, '2022-05-28', 1536, 81473, 5259, 56237, '10.0000', '40.6232', '40.6232', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86042, '2022-05-28', 1670, 81474, 5259, 54623, '1.0000', '48.0854', '48.0854', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86043, '2022-05-28', 2250, 81475, 5259, 55472, '1.0000', '7.9876', '7.9876', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86044, '2022-05-28', 2233, 81476, 5259, 55867, '1.0000', '22.0646', '22.0646', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86045, '2022-05-28', 1328, 81477, 5259, 55767, '1.0000', '3.9079', '3.9079', '5.5000', '5.5000', '11.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86046, '2022-05-28', 1736, 81478, 5259, 55872, '1.0000', '34.3892', '34.3892', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86047, '2022-05-28', 1493, 81479, 5259, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86048, '2022-05-28', 1337, 81480, 5259, 40900, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86049, '2022-05-28', 2317, 81481, 5259, 54996, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '14.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86050, '2022-05-28', 7741, 81482, 5259, 55866, '1.0000', '2.2853', '2.2853', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86051, '2022-05-28', 1945, 81483, 5259, 53876, '1.0000', '9.4529', '9.4529', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86052, '2022-05-28', 2085, 81484, 5259, 54602, '2.0000', '8.7836', '8.7836', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86053, '2022-05-28', 1967, 81485, 5259, NULL, '1.0000', '17.0100', '17.0100', '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 (86054, '2022-05-28', 9815, 81486, 5259, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '24.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86055, '2022-05-28', 1450, 81487, 5259, 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 (86056, '2022-05-28', 2169, 81488, 5259, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86057, '2022-05-28', 2655, 81489, 5259, 55437, '1.0000', '6.7250', '6.7250', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86058, '2022-05-28', 2655, 81490, 5259, 55437, '1.0000', '6.7250', '6.7250', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86059, '2022-05-28', 2959, 81491, 5259, 45627, '1.0000', '4.1853', '4.1853', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86060, '2022-05-28', 1954, 81492, 5259, 47998, '1.0000', '-11.3000', '-11.3000', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86061, '2022-05-28', 1493, 81493, 5259, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86062, '2022-05-28', 2858, 81494, 5259, 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 (86063, '2022-05-28', 2915, 81495, 5259, 43043, '1.0000', '16.2417', '16.2417', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 304);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86064, '2022-05-28', 1892, 81496, 5259, 5497, '1.0000', '0.5200', '0.5200', '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 (86065, '2022-05-28', 2251, 81497, 5259, 54668, '1.0000', '11.6477', '11.6477', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86066, '2022-05-28', 1819, 81498, 5259, 55755, '1.0000', '6.5815', '6.5815', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86067, '2022-05-28', 2263, 81499, 5259, 46702, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '19.0000', 1, 0, NULL, 342);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86068, '2022-05-28', 7411, 81500, 5259, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86069, '2022-05-28', 8498, 81501, 5259, 54645, '1.0000', '1.3375', '1.3375', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86070, '2022-05-28', 2362, 81502, 5259, 56236, '1.0000', '76.0477', '76.0477', '179.0000', '179.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86071, '2022-05-28', 9821, 81503, 5259, 55823, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86072, '2022-05-28', 1647, 81504, 5260, 3218, '-15.0000', '4.7200', '4.7200', '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 (86073, '2022-05-28', 1647, 81504, 5260, NULL, '16.0000', '4.7200', '4.7200', '8.0000', '8.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 (86074, '2022-05-28', 9845, 81505, 5260, NULL, '1.0000', '5.7000', '5.7000', '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 (86075, '2022-05-28', 2351, 81506, 5260, 3854, '-2.0000', '17.7000', '17.7000', '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 (86076, '2022-05-28', 2351, 81506, 5260, NULL, '3.0000', '17.7000', '17.7000', '24.5000', '24.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 (86077, '2022-05-28', 1783, 81507, 5260, 4901, '-28.0000', '7.8500', '7.8500', '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 (86078, '2022-05-28', 1783, 81507, 5260, NULL, '31.0000', '7.8500', '7.8500', '13.5000', '13.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 (86079, '2022-05-28', 2642, 81508, 5260, 10573, '-17.0000', '9.2000', '9.2000', '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 (86080, '2022-05-28', 2642, 81508, 5260, NULL, '18.0000', '9.2000', '9.2000', '15.0000', '15.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 (86081, '2022-05-28', 2567, 81509, 5260, 7177, '-10.0000', '33.0000', '33.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 (86082, '2022-05-28', 2567, 81509, 5260, NULL, '11.0000', '33.0000', '33.0000', '48.0000', '48.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 (86083, '2022-05-28', 1342, 81510, 5260, 11264, '-17.0000', '6.8074', '6.8074', '9.5000', '9.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 (86084, '2022-05-28', 1342, 81510, 5260, NULL, '18.0000', '6.8074', '6.8074', '9.5000', '9.5000', '-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 (86085, '2022-05-28', 7926, 81511, 5260, 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 (86086, '2022-05-28', 9743, 81512, 5260, NULL, '1.0000', '11.7000', '11.7000', '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 (86087, '2022-05-28', 1651, 81513, 5260, 3222, '-58.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86088, '2022-05-28', 1651, 81513, 5260, NULL, '60.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86089, '2022-05-28', 2592, 81514, 5260, 10812, '-19.0000', '7.9670', '7.9670', '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 (86090, '2022-05-28', 2592, 81514, 5260, NULL, '21.0000', '7.9670', '7.9670', '18.0000', '18.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86091, '2022-05-28', 1674, 81515, 5260, NULL, '3.0000', '3.6000', '3.6000', '7.0000', '7.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 (86092, '2022-05-28', 1867, 81516, 5260, NULL, '1.0000', '1.0500', '1.0500', '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 (86093, '2022-05-28', 7609, 81517, 5260, NULL, '1.0000', '4.3300', '4.3300', '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 (86094, '2022-05-28', 2381, 81518, 5260, 11263, '-5.0000', '12.1900', '12.1900', '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 (86095, '2022-05-28', 2381, 81518, 5260, NULL, '6.0000', '12.1900', '12.1900', '19.0000', '19.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 (86096, '2022-05-28', 1432, 81519, 5260, NULL, '1.0000', '8.1574', '8.1574', '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 (86097, '2022-05-28', 7411, 81520, 5260, NULL, '1.0000', '1.3500', '1.3500', '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 (86098, '2022-05-28', 1763, 81521, 5260, 3173, '1.0000', '4.6900', '4.6900', '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 (86099, '2022-05-28', 1816, 81522, 5260, 22478, '-5.0000', '18.2300', '18.2300', '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 (86100, '2022-05-28', 1816, 81522, 5260, NULL, '6.0000', '18.2300', '18.2300', '29.0000', '29.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 (86101, '2022-05-28', 7664, 81523, 5260, NULL, '1.0000', '6.9400', '6.9400', '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 (86102, '2022-05-28', 7848, 81524, 5260, NULL, '1.0000', '1.3500', '1.3500', '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 (86103, '2022-05-28', 7926, 81525, 5260, 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 (86104, '2022-05-28', 2351, 81526, 5260, 3854, '-2.0000', '17.7000', '17.7000', '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 (86105, '2022-05-28', 2351, 81526, 5260, NULL, '3.0000', '17.7000', '17.7000', '24.5000', '24.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 (86106, '2022-05-28', 2379, 81527, 5260, 4032, '-60.0000', '1.5900', '1.5900', '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 (86107, '2022-05-28', 2379, 81527, 5260, NULL, '61.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86108, '2022-05-28', 9841, 81528, 5260, NULL, '1.0000', '5.1900', '5.1900', '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 (86109, '2022-05-28', 1302, 81529, 5260, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '2.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 (86110, '2022-05-28', 3029, 81530, 5260, NULL, '1.0000', '4.7700', '4.7700', '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 (86111, '2022-05-28', 2485, 81531, 5260, NULL, '1.0000', '17.0000', '17.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 (86112, '2022-05-28', 9762, 81532, 5260, 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 (86113, '2022-05-28', 2352, 81533, 5260, 3855, '-203.0000', '20.0000', '20.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 (86114, '2022-05-28', 2352, 81533, 5260, NULL, '206.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-206.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86115, '2022-05-28', 2643, 81534, 5260, NULL, '2.0000', '0.8700', '0.8700', '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 (86116, '2022-05-28', 1910, 81535, 5260, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '31.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 (86117, '2022-05-28', 1425, 81536, 5260, NULL, '1.0000', '6.4405', '6.4405', '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 (86118, '2022-05-28', 2379, 81537, 5260, 4032, '-60.0000', '1.5900', '1.5900', '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 (86119, '2022-05-28', 2379, 81537, 5260, NULL, '61.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86120, '2022-05-28', 1892, 81538, 5260, 5431, '-16.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 (86121, '2022-05-28', 1892, 81538, 5260, NULL, '17.0000', '90.0000', '90.0000', '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 (86122, '2022-05-28', 1546, 81539, 5260, 1633, '-19.0000', '2.3697', '2.3697', '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 (86123, '2022-05-28', 1546, 81539, 5260, NULL, '25.0000', '2.3697', '2.3697', '4.0000', '4.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 (86124, '2022-05-28', 7411, 81540, 5260, NULL, '1.0000', '1.3500', '1.3500', '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 (86125, '2022-05-28', 9791, 81541, 5261, 50485, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '113.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86126, '2022-05-28', 2061, 81542, 5261, 56515, '1.0000', '12.0052', '12.0052', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86127, '2022-05-28', 2284, 81543, 5261, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86128, '2022-05-28', 7711, 81544, 5261, NULL, '1.0000', '5113.9179', '5113.9179', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86129, '2022-05-28', 9740, 81545, 5261, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86130, '2022-05-28', 9151, 81546, 5261, 51790, '1.0000', '9.7000', '9.7000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86131, '2022-05-28', 7385, 81547, 5261, 56578, '3.0000', '9.0049', '9.0049', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86132, '2022-05-28', 7513, 81548, 5261, NULL, '3.0000', '18.0000', '18.0000', '24.0000', '24.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 (86133, '2022-05-28', 7473, 81549, 5261, 56553, '5.0000', '75.1643', '75.1643', '0.7000', '0.7000', '21.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86134, '2022-05-28', 9560, 81550, 5261, 51065, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86135, '2022-05-28', 8775, 81551, 5261, 43940, '1.0000', '2.6000', '2.6000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86136, '2022-05-28', 2315, 81552, 5261, 56594, '1.0000', '0.7474', '0.7474', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86137, '2022-05-28', 7385, 81553, 5261, 56578, '3.0000', '9.0049', '9.0049', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86138, '2022-05-28', 7333, 81554, 5261, NULL, '1.0000', '-0.5856', '-0.5856', '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 (86139, '2022-05-28', 1837, 81555, 5261, 56551, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86140, '2022-05-28', 7753, 81556, 5261, 56557, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86141, '2022-05-28', 7588, 81557, 5261, 56615, '1.0000', '2.4520', '2.4520', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86142, '2022-05-28', 9883, 81558, 5261, 54147, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86143, '2022-05-28', 3001, 81559, 5261, NULL, '2.0000', '1.5000', '1.5000', '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 (86144, '2022-05-28', 1498, 81560, 5261, 50696, '2.0000', '0.3942', '0.3942', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86145, '2022-05-28', 9618, 81561, 5261, NULL, '4.0000', '3.7500', '3.7500', '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 (86146, '2022-05-28', 7608, 81562, 5261, 56536, '1.0000', '9.4738', '9.4738', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86147, '2022-05-28', 7709, 81563, 5261, NULL, '2.0000', '280.4810', '280.4810', '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 (86148, '2022-05-28', 8127, 81564, 5261, NULL, '1.0000', '24.5300', '24.5300', '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 (86149, '2022-05-28', 7385, 81565, 5261, 56578, '5.0000', '9.0049', '9.0049', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86150, '2022-05-28', 7820, 81566, 5261, NULL, '2.0000', '-296.8250', '-296.8250', '20.5000', '20.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 (86151, '2022-05-28', 7524, 81567, 5261, 56173, '1.0000', '4.3838', '4.3838', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86152, '2022-05-28', 7730, 81568, 5261, 56499, '5.0000', '0.1000', '0.1000', '0.2000', '0.2000', '87.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86153, '2022-05-28', 7723, 81569, 5261, NULL, '1.0000', '4.5000', '4.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 (86154, '2022-05-28', 7674, 81570, 5261, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86155, '2022-05-28', 7852, 81571, 5261, NULL, '1.0000', '-53.7735', '-53.7735', '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 (86156, '2022-05-28', 7704, 81572, 5261, NULL, '1.0000', '-1.5625', '-1.5625', '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 (86157, '2022-05-28', 7518, 81573, 5261, 56581, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86158, '2022-05-28', 7720, 81574, 5261, 46017, '1.0000', '5.8333', '5.8333', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86159, '2022-05-28', 1916, 81575, 5261, 56184, '1.0000', '10.4660', '10.4660', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86160, '2022-05-28', 9204, 81576, 5261, 56564, '1.0000', '5.9356', '5.9356', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86161, '2022-05-28', 7848, 81577, 5261, NULL, '1.0000', '-64.7099', '-64.7099', '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 (86162, '2022-05-28', 1408, 81578, 5261, 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 (86163, '2022-05-28', 7711, 81579, 5261, NULL, '1.0000', '5113.9179', '5113.9179', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86164, '2022-05-28', 1840, 81580, 5261, 56555, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86165, '2022-05-28', 1841, 81581, 5261, 56033, '4.0000', '0.1970', '0.1970', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86166, '2022-05-28', 7506, 81582, 5261, NULL, '1.0000', '15.0000', '15.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 (86167, '2022-05-28', 9729, 81583, 5261, 56613, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86168, '2022-05-28', 2351, 81584, 5261, 50713, '1.0000', '17.9607', '17.9607', '24.5000', '24.5000', '3.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86169, '2022-05-28', 1602, 81585, 5262, 5897, '-147.0000', '6.7859', '6.7859', '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 (86170, '2022-05-28', 1602, 81585, 5262, NULL, '148.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86171, '2022-05-28', 7411, 81586, 5262, NULL, '1.0000', '1.3500', '1.3500', '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 (86172, '2022-05-28', 2247, 81587, 5262, 2784, '-9.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 (86173, '2022-05-28', 2247, 81587, 5262, NULL, '10.0000', '2.5000', '2.5000', '3.5000', '3.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 (86174, '2022-05-28', 9834, 81588, 5262, NULL, '1.0000', '1.4500', '1.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 (86175, '2022-05-28', 9634, 81589, 5262, 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 (86176, '2022-05-28', 2990, 81590, 5262, NULL, '1.0000', '1.1200', '1.1200', '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 (86177, '2022-05-28', 9734, 81591, 5262, NULL, '1.0000', '0.3200', '0.3200', '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 (86178, '2022-05-28', 9732, 81592, 5262, 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 (86179, '2022-05-28', 7411, 81593, 5262, NULL, '1.0000', '1.3500', '1.3500', '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 (86180, '2022-05-28', 1504, 81594, 5262, NULL, '20.0000', '1.5000', '1.5000', '2.8000', '2.8000', '-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 (86181, '2022-05-28', 1398, 81595, 5262, 22286, '1.0000', '7.5000', '7.5000', '15.0000', '15.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 (86182, '2022-05-28', 2315, 81596, 5262, 2735, '-393.0000', '0.3300', '0.3300', '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 (86183, '2022-05-28', 2315, 81596, 5262, NULL, '394.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-394.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86184, '2022-05-28', 1340, 81597, 5262, 13005, '-7.0000', '2.7025', '2.7025', '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 (86185, '2022-05-28', 1340, 81597, 5262, NULL, '8.0000', '2.7025', '2.7025', '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 (86186, '2022-05-28', 7587, 81598, 5262, NULL, '1.0000', '6.4400', '6.4400', '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 (86187, '2022-05-28', 1410, 81599, 5262, NULL, '1.0000', '2.2000', '2.2000', '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 (86188, '2022-05-28', 2240, 81600, 5262, 13712, '-5.0000', '36.9100', '36.9100', '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 (86189, '2022-05-28', 2240, 81600, 5262, NULL, '6.0000', '36.9100', '36.9100', '51.5000', '51.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 (86190, '2022-05-28', 1812, 81601, 5262, 8224, '-93.0000', '7.8900', '7.8900', '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 (86191, '2022-05-28', 1812, 81601, 5262, NULL, '94.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-94.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86192, '2022-05-28', 2592, 81602, 5262, 10812, '-21.0000', '7.9670', '7.9670', '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 (86193, '2022-05-28', 2592, 81602, 5262, NULL, '22.0000', '7.9670', '7.9670', '18.0000', '18.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86194, '2022-05-28', 9695, 81603, 5262, NULL, '1.0000', '4.5000', '4.5000', '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 (86195, '2022-05-28', 7867, 81604, 5262, NULL, '1.0000', '1.6300', '1.6300', '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 (86196, '2022-05-28', 1602, 81605, 5262, 5897, '-147.0000', '6.7859', '6.7859', '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 (86197, '2022-05-28', 1602, 81605, 5262, NULL, '148.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86198, '2022-05-28', 2858, 81606, 5262, 17772, '-81.0000', '1.0000', '1.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 (86199, '2022-05-28', 2858, 81606, 5262, NULL, '82.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86200, '2022-05-28', 9734, 81607, 5262, NULL, '4.0000', '0.3200', '0.3200', '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 (86201, '2022-05-28', 1425, 81608, 5262, NULL, '1.0000', '6.4405', '6.4405', '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 (86202, '2022-05-28', 2088, 81609, 5262, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '44.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 (86203, '2022-05-28', 9747, 81610, 5262, NULL, '1.0000', '0.6500', '0.6500', '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 (86204, '2022-05-28', 9715, 81611, 5262, NULL, '1.0000', '9.4000', '9.4000', '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 (86205, '2022-05-28', 2169, 81612, 5262, 10737, '-135.0000', '3.8397', '3.8397', '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 (86206, '2022-05-28', 2169, 81612, 5262, NULL, '136.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-136.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86207, '2022-05-28', 2384, 81613, 5262, 4087, '-10.0000', '0.4000', '0.4000', '0.7000', '0.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 (86208, '2022-05-28', 2384, 81613, 5262, NULL, '11.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (86209, '2022-05-28', 2302, 81614, 5262, 2963, '-48.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 (86210, '2022-05-28', 2302, 81614, 5262, NULL, '49.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86211, '2022-05-28', 9841, 81615, 5262, NULL, '1.0000', '5.1900', '5.1900', '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 (86212, '2022-05-28', 2358, 81616, 5262, 22278, '1.0000', '13.6000', '13.6000', '18.0000', '18.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 (86213, '2022-05-28', 1686, 81617, 5262, NULL, '1.0000', '26.6000', '26.6000', '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 (86214, '2022-05-28', 9748, 81618, 5262, NULL, '1.0000', '2.5300', '2.5300', '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 (86215, '2022-05-28', 2221, 81619, 5262, 4154, '-62.0000', '14.4737', '14.4737', '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 (86216, '2022-05-28', 2221, 81619, 5262, NULL, '63.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86217, '2022-05-28', 9794, 81620, 5262, NULL, '2.0000', '1.0800', '1.0800', '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 (86218, '2022-05-28', 2315, 81621, 5262, 2735, '-393.0000', '0.3300', '0.3300', '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 (86219, '2022-05-28', 2315, 81621, 5262, NULL, '394.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-394.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86220, '2022-05-28', 7514, 81622, 5263, NULL, '1.0000', '3234.0124', '3234.0124', '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 (86221, '2022-05-28', 2270, 81623, 5263, NULL, '1.0000', '2.5000', '2.5000', '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 (86222, '2022-05-28', 7672, 81624, 5263, NULL, '2.0000', '5.9200', '5.9200', '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 (86223, '2022-05-28', 7782, 81625, 5263, NULL, '1.0000', '5.0000', '5.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 (86224, '2022-05-28', 7400, 81626, 5263, NULL, '1.0000', '38.8950', '38.8950', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86225, '2022-05-28', 7335, 81627, 5263, NULL, '1.0000', '-5.6867', '-5.6867', '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 (86226, '2022-05-28', 1884, 81628, 5263, 45321, '1.0000', '5.5994', '5.5994', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86227, '2022-05-28', 8471, 81629, 5263, NULL, '1.0000', '21.0000', '21.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 (86228, '2022-05-28', 7952, 81630, 5263, 56028, '1.0000', '15.8220', '15.8220', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86229, '2022-05-28', 7672, 81631, 5263, NULL, '1.0000', '5.9200', '5.9200', '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 (86230, '2022-05-28', 9729, 81632, 5263, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86231, '2022-05-28', 7473, 81633, 5263, 56553, '1.0000', '75.1643', '75.1643', '0.7000', '0.7000', '20.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86232, '2022-05-28', 7743, 81634, 5263, NULL, '1.0000', '660077.5558', '660077.5558', '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 (86233, '2022-05-28', 7674, 81635, 5263, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86234, '2022-05-28', 8203, 81636, 5263, 53907, '1.0000', '7.7723', '7.7723', '0.7000', '0.7000', '19.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86235, '2022-05-28', 1841, 81637, 5263, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86236, '2022-05-28', 2100, 81638, 5263, NULL, '1.0000', '2.0800', '2.0800', '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 (86237, '2022-05-28', 1769, 81639, 5263, 44740, '1.0000', '26.8000', '26.8000', '35.5000', '35.5000', '2.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86238, '2022-05-28', 9092, 81640, 5263, 52527, '6.0000', '0.3175', '0.3175', '0.5000', '0.5000', '106.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86239, '2022-05-28', 7333, 81641, 5263, NULL, '1.0000', '-0.5856', '-0.5856', '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 (86240, '2022-05-28', 7402, 81642, 5263, 56171, '1.0000', '18.9702', '18.9702', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86241, '2022-05-28', 7633, 81643, 5263, 56062, '1.0000', '2.8700', '2.8700', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86242, '2022-05-28', 8963, 81644, 5264, NULL, '1.0000', '9.9800', '9.9800', '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 (86243, '2022-05-28', 7483, 81645, 5264, 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 (86244, '2022-05-28', 1905, 81646, 5264, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86245, '2022-05-28', 9743, 81647, 5264, 56438, '1.0000', '13.2429', '13.2429', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86246, '2022-05-28', 3057, 81648, 5264, 51479, '2.0000', '2.8440', '2.8440', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86247, '2022-05-28', 7741, 81649, 5264, NULL, '1.0000', '-52.1460', '-52.1460', '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 (86248, '2022-05-28', 8878, 81650, 5264, 56424, '3.0000', '3.8136', '3.8136', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86249, '2022-05-28', 8359, 81651, 5264, NULL, '1.0000', '13.5000', '13.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 (86250, '2022-05-28', 1520, 81652, 5264, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86251, '2022-05-28', 2416, 81653, 5264, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86252, '2022-05-28', 2059, 81654, 5264, 44437, '1.0000', '8.8934', '8.8934', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86253, '2022-05-28', 1871, 81655, 5264, NULL, '1.0000', '-16.6248', '-16.6248', '3.7000', '3.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 (86254, '2022-05-28', 1763, 81656, 5264, 55644, '1.0000', '4.6631', '4.6631', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86255, '2022-05-28', 9740, 81657, 5264, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '131.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86256, '2022-05-28', 9747, 81658, 5264, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86257, '2022-05-28', 2582, 81659, 5264, 56420, '1.0000', '16.7500', '16.7500', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86258, '2022-05-28', 9880, 81660, 5264, NULL, '1.0000', '3.4200', '3.4200', '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 (86259, '2022-05-28', 3029, 81661, 5264, 55674, '2.0000', '123.8886', '123.8886', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86260, '2022-05-28', 1689, 81662, 5264, 56468, '1.0000', '15.5565', '15.5565', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86261, '2022-05-28', 9873, 81663, 5264, NULL, '1.0000', '8.5000', '8.5000', '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 (86262, '2022-05-28', 1667, 81664, 5264, 55922, '2.0000', '9.9871', '9.9871', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86263, '2022-05-28', 7743, 81665, 5264, NULL, '2.0000', '7.3900', '7.3900', '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 (86264, '2022-05-28', 7713, 81666, 5264, 55675, '2.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86265, '2022-05-28', 7398, 81667, 5264, NULL, '1.0000', '143.5000', '143.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 (86266, '2022-05-28', 2379, 81668, 5264, NULL, '1.0000', '-3.0170', '-3.0170', '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 (86267, '2022-05-28', 2169, 81669, 5264, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86268, '2022-05-28', 1398, 81670, 5264, 53656, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86269, '2022-05-28', 7491, 81671, 5264, NULL, '1.0000', '4.8000', '4.8000', '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 (86270, '2022-05-28', 9775, 81672, 5264, 56400, '1.0000', '9.6292', '9.6292', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86271, '2022-05-28', 2506, 81673, 5264, NULL, '1.0000', '2.9584', '2.9584', '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 (86272, '2022-05-28', 1904, 81674, 5264, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86273, '2022-05-28', 2682, 81675, 5264, 53653, '1.0000', '16.5400', '16.5400', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86274, '2022-05-28', 7401, 81676, 5264, NULL, '1.0000', '74.3000', '74.3000', '98.5000', '98.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86275, '2022-05-28', 1529, 81677, 5264, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86276, '2022-05-28', 2169, 81678, 5264, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86277, '2022-05-28', 2295, 81679, 5264, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86278, '2022-05-28', 8677, 81680, 5264, NULL, '2.0000', '496.2705', '496.2705', '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 (86279, '2022-05-28', 2543, 81681, 5264, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86280, '2022-05-28', 1519, 81682, 5264, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86281, '2022-05-28', 9695, 81683, 5264, 55410, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86282, '2022-05-28', 2317, 81684, 5264, 24868, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '11.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 (86283, '2022-05-28', 2293, 81685, 5264, NULL, '3.0000', '-17.4320', '-17.4320', '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 (86284, '2022-05-28', 9740, 81686, 5264, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '131.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86285, '2022-05-28', 2299, 81687, 5264, 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 (86286, '2022-05-28', 1643, 81688, 5264, 56432, '1.0000', '41.6400', '41.6400', '56.0000', '56.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86287, '2022-05-28', 2699, 81689, 5264, NULL, '2.0000', '3.6019', '3.6019', '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 (86288, '2022-05-28', 9870, 81690, 5264, NULL, '2.0000', '6.2400', '6.2400', '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 (86289, '2022-05-28', 2038, 81691, 5264, 54836, '1.0000', '17.0564', '17.0564', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86290, '2022-05-28', 1342, 81692, 5264, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86291, '2022-05-28', 9740, 81693, 5264, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '131.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86292, '2022-05-28', 9747, 81694, 5264, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86293, '2022-05-28', 2821, 81695, 5264, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86294, '2022-05-28', 8068, 81696, 5264, NULL, '1.0000', '8.7900', '8.7900', '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 (86295, '2022-05-28', 9482, 81697, 5264, 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 (86296, '2022-05-28', 9762, 81698, 5264, 51228, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '35.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86297, '2022-05-28', 2237, 81699, 5264, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86298, '2022-05-28', 1532, 81700, 5264, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86299, '2022-05-28', 1590, 81701, 5264, 55929, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86300, '2022-05-28', 2440, 81702, 5264, 55096, '1.0000', '7.1084', '7.1084', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86301, '2022-05-28', 1411, 81703, 5264, 54969, '1.0000', '25.9970', '25.9970', '35.0000', '35.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86302, '2022-05-28', 1843, 81704, 5264, 39760, '4.0000', '6.1258', '6.1258', '6.5000', '6.5000', '24.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86303, '2022-05-28', 2295, 81705, 5264, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86304, '2022-05-28', 8677, 81706, 5264, NULL, '1.0000', '496.2705', '496.2705', '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 (86305, '2022-05-28', 1519, 81707, 5264, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86306, '2022-05-28', 2821, 81708, 5264, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86307, '2022-05-28', 2169, 81709, 5264, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86308, '2022-05-28', 2821, 81710, 5264, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86309, '2022-05-28', 1432, 81711, 5264, 55690, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86310, '2022-05-28', 1342, 81712, 5264, 56372, '2.0000', '7.4197', '7.4197', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86311, '2022-05-28', 2169, 81713, 5264, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86312, '2022-05-28', 8878, 81714, 5264, 56424, '2.0000', '3.8136', '3.8136', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86313, '2022-05-28', 7744, 81715, 5264, NULL, '1.0000', '2.5833', '2.5833', '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 (86314, '2022-05-28', 9695, 81716, 5264, 55410, '1.0000', '5.1516', '5.1516', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86315, '2022-05-29', 2285, 81717, 5265, NULL, '1.0000', '17.3904', '17.3904', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86316, '2022-05-29', 2169, 81718, 5265, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86317, '2022-05-29', 1590, 81719, 5265, 55929, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86318, '2022-05-29', 9732, 81720, 5265, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86319, '2022-05-29', 1771, 81721, 5265, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86320, '2022-05-29', 1839, 81722, 5265, NULL, '1.0000', '17468.6132', '17468.6132', '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 (86321, '2022-05-29', 1602, 81723, 5265, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86322, '2022-05-29', 1314, 81724, 5265, 55930, '3.0000', '1.5721', '1.5721', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86323, '2022-05-29', 1425, 81725, 5265, NULL, '1.0000', '2.8872', '2.8872', '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 (86324, '2022-05-29', 2108, 81726, 5265, 55935, '1.0000', '0.8250', '0.8250', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86325, '2022-05-29', 8878, 81727, 5265, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86326, '2022-05-29', 9747, 81728, 5265, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86327, '2022-05-29', 2416, 81729, 5265, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86328, '2022-05-29', 3079, 81730, 5265, 25164, '1.0000', '9.0000', '9.0000', '12.0000', '12.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 (86329, '2022-05-29', 1342, 81731, 5265, 56372, '1.0000', '7.4197', '7.4197', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86330, '2022-05-29', 9840, 81732, 5265, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86331, '2022-05-29', 1311, 81733, 5265, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86332, '2022-05-29', 9770, 81734, 5265, 48585, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86333, '2022-05-29', 9878, 81735, 5265, 55901, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86334, '2022-05-29', 7318, 81736, 5265, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86335, '2022-05-29', 1306, 81737, 5265, 55711, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86336, '2022-05-29', 2416, 81738, 5265, 54068, '1.0000', '1.2379', '1.2379', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86337, '2022-05-29', 1837, 81739, 5265, 56452, '2.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86338, '2022-05-29', 2643, 81740, 5265, 54067, '2.0000', '0.9588', '0.9588', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86339, '2022-05-29', 1841, 81741, 5265, 55655, '4.0000', '0.7630', '0.7630', '0.5000', '0.5000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86340, '2022-05-29', 2971, 81742, 5265, 55097, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86341, '2022-05-29', 9089, 81743, 5266, NULL, '1.0000', '-9.3999', '-9.3999', '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 (86342, '2022-05-29', 2169, 81744, 5266, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86343, '2022-05-29', 1863, 81745, 5266, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86344, '2022-05-29', 2169, 81746, 5266, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86345, '2022-05-29', 2135, 81747, 5266, NULL, '1.0000', '-0.2588', '-0.2588', '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 (86346, '2022-05-29', 7800, 81748, 5266, NULL, '1.0000', '4.0000', '4.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 (86347, '2022-05-29', 8933, 81749, 5266, NULL, '1.0000', '8.7500', '8.7500', '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 (86348, '2022-05-29', 9729, 81750, 5267, NULL, '2.0000', '0.6200', '0.6200', '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 (86349, '2022-05-29', 7859, 81751, 5267, NULL, '1.0000', '12.6300', '12.6300', '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 (86350, '2022-05-29', 8276, 81752, 5267, 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 (86351, '2022-05-29', 7664, 81753, 5267, NULL, '1.0000', '6.9400', '6.9400', '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 (86352, '2022-05-29', 7396, 81754, 5267, NULL, '1.0000', '6.0000', '6.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 (86353, '2022-05-29', 8539, 81755, 5267, NULL, '2.0000', '31.8000', '31.8000', '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 (86354, '2022-05-29', 7608, 81756, 5267, NULL, '1.0000', '6.9800', '6.9800', '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 (86355, '2022-05-29', 9274, 81757, 5267, NULL, '2.0000', '3.6000', '3.6000', '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 (86356, '2022-05-29', 7779, 81758, 5267, 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 (86357, '2022-05-29', 7703, 81759, 5267, NULL, '2.0000', '22.9900', '22.9900', '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 (86358, '2022-05-29', 2242, 81760, 5267, 3059, '-43.0000', '0.4800', '0.4800', '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 (86359, '2022-05-29', 2242, 81760, 5267, NULL, '45.0000', '0.4800', '0.4800', '1.5000', '1.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 (86360, '2022-05-29', 1335, 81761, 5267, 12031, '-27.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 (86361, '2022-05-29', 1335, 81761, 5267, NULL, '28.0000', '0.8500', '0.8500', '2.0000', '2.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 (86362, '2022-05-29', 2289, 81762, 5267, 2949, '-167.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 (86363, '2022-05-29', 2289, 81762, 5267, NULL, '170.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-170.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86364, '2022-05-29', 9275, 81763, 5267, NULL, '2.0000', '6.3000', '6.3000', '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 (86365, '2022-05-29', 7335, 81764, 5267, NULL, '1.0000', '14.5000', '14.5000', '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 (86366, '2022-05-29', 7518, 81765, 5267, NULL, '1.0000', '7.8200', '7.8200', '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 (86367, '2022-05-29', 1501, 81766, 5267, NULL, '1.0000', '2.0500', '2.0500', '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 (86368, '2022-05-29', 1420, 81767, 5267, NULL, '4.0000', '1.2000', '1.2000', '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 (86369, '2022-05-29', 7753, 81768, 5267, NULL, '1.0000', '3.4000', '3.4000', '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 (86370, '2022-05-29', 7412, 81769, 5267, NULL, '1.0000', '1.5200', '1.5200', '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 (86371, '2022-05-29', 8053, 81770, 5267, 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 (86372, '2022-05-29', 8979, 81771, 5267, 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 (86373, '2022-05-29', 9865, 81772, 5267, 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 (86374, '2022-05-29', 7674, 81773, 5267, NULL, '1.0000', '1.3000', '1.3000', '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 (86375, '2022-05-29', 1644, 81774, 5267, 3216, '-6.0000', '33.8200', '33.8200', '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 (86376, '2022-05-29', 1644, 81774, 5267, NULL, '7.0000', '33.8200', '33.8200', '51.0000', '51.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 (86377, '2022-05-29', 9716, 81775, 5267, NULL, '1.0000', '4.4000', '4.4000', '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 (86378, '2022-05-29', 2315, 81776, 5267, 2735, '-395.0000', '0.3300', '0.3300', '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 (86379, '2022-05-29', 2315, 81776, 5267, NULL, '396.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-396.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86380, '2022-05-29', 7711, 81777, 5267, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86381, '2022-05-29', 8918, 81778, 5267, NULL, '1.0000', '1.0400', '1.0400', '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 (86382, '2022-05-29', 7473, 81779, 5267, NULL, '4.0000', '0.5300', '0.5300', '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 (86383, '2022-05-29', 1904, 81780, 5267, 5442, '-45.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 (86384, '2022-05-29', 1904, 81780, 5267, NULL, '47.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (86385, '2022-05-29', 7460, 81781, 5267, 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 (86386, '2022-05-29', 7490, 81782, 5267, NULL, '1.0000', '0.2300', '0.2300', '0.4000', '0.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 (86387, '2022-05-29', 7554, 81783, 5267, NULL, '4.0000', '2.1000', '2.1000', '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 (86388, '2022-05-29', 7560, 81784, 5267, NULL, '1.0000', '33.0200', '33.0200', '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 (86389, '2022-05-29', 8878, 81785, 5267, NULL, '1.0000', '6.6700', '6.6700', '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 (86390, '2022-05-29', 8036, 81786, 5267, NULL, '1.0000', '6.7300', '6.7300', '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 (86391, '2022-05-29', 7657, 81787, 5267, NULL, '1.0000', '11.3200', '11.3200', '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 (86392, '2022-05-29', 2643, 81788, 5268, 54067, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86393, '2022-05-29', 8184, 81789, 5269, 55561, '14.0000', '3.0310', '3.0310', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86394, '2022-05-29', 1520, 81790, 5269, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86395, '2022-05-29', 8746, 81791, 5270, 55424, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86396, '2022-05-29', 1602, 81792, 5270, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86397, '2022-05-29', 8746, 81793, 5270, 55424, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86398, '2022-05-29', 9891, 81794, 5271, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86399, '2022-05-29', 9620, 81795, 5272, 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 (86400, '2022-05-29', 9092, 81796, 5272, NULL, '1.0000', '5.2900', '5.2900', '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 (86401, '2022-05-29', 8208, 81797, 5272, NULL, '2.0000', '33.0000', '33.0000', '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 (86402, '2022-05-29', 8666, 81798, 5272, NULL, '1.0000', '0.4600', '0.4600', '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 (86403, '2022-05-29', 7411, 81799, 5272, NULL, '2.0000', '1.3500', '1.3500', '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 (86404, '2022-05-29', 7641, 81800, 5272, NULL, '1.0000', '1.9000', '1.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 (86405, '2022-05-29', 8444, 81801, 5272, NULL, '1.0000', '1.6000', '1.6000', '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 (86406, '2022-05-29', 2459, 81802, 5273, 22608, '1.0000', '5.4424', '5.4424', '7.5000', '7.5000', '0.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 (86407, '2022-05-29', 1771, 81803, 5273, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86408, '2022-05-29', 7533, 81804, 5273, NULL, '2.0000', '4.4000', '4.4000', '21.5000', '21.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 (86409, '2022-05-29', 8963, 81805, 5273, NULL, '1.0000', '9.9800', '9.9800', '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 (86410, '2022-05-29', 7630, 81806, 5273, NULL, '4.0000', '10.0000', '10.0000', '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 (86411, '2022-05-29', 2295, 81807, 5273, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86412, '2022-05-29', 2242, 81808, 5273, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '93.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86413, '2022-05-29', 7753, 81809, 5274, NULL, '1.0000', '3.1400', '3.1400', '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 (86414, '2022-05-29', 2284, 81810, 5274, 3124, '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 (86415, '2022-05-29', 1845, 81811, 5274, 55763, '1.0000', '21.1002', '21.1002', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86416, '2022-05-29', 7383, 81812, 5274, NULL, '1.0000', '1.9700', '1.9700', '78.0000', '78.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86417, '2022-05-29', 3017, 81813, 5274, 55771, '1.0000', '3.9691', '3.9691', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86418, '2022-05-29', 8177, 81814, 5274, 55442, '1.0000', '13.7501', '13.7501', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86419, '2022-05-29', 7558, 81815, 5274, 44706, '1.0000', '2.4013', '2.4013', '3.7000', '3.7000', '21.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86420, '2022-05-29', 1715, 81816, 5274, 55770, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86421, '2022-05-29', 1602, 81817, 5274, 56216, '1.0000', '6.9796', '6.9796', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86422, '2022-05-29', 9873, 81818, 5274, 53278, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86423, '2022-05-29', 1604, 81819, 5274, 45086, '1.0000', '78.6236', '78.6236', '50.5000', '50.5000', '3.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86424, '2022-05-29', 2315, 81820, 5274, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (86425, '2022-05-29', 9815, 81821, 5274, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '23.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86426, '2022-05-29', 2916, 81822, 5274, 56227, '1.0000', '14.4392', '14.4392', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86427, '2022-05-29', 1425, 81823, 5274, 56257, '1.0000', '6.9142', '6.9142', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86428, '2022-05-29', 2511, 81824, 5274, 54682, '1.0000', '9.5107', '9.5107', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86429, '2022-05-29', 2864, 81825, 5274, 56226, '4.0000', '1.1926', '1.1926', '2.2000', '2.2000', '46.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86430, '2022-05-29', 1875, 81826, 5274, 55870, '10.0000', '73.8421', '73.8421', '3.7000', '3.7000', '89.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86431, '2022-05-29', 2315, 81827, 5274, 3069, '3.0000', '0.3300', '0.3300', '1.0000', '1.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 (86432, '2022-05-29', 2256, 81828, 5274, 55791, '1.0000', '15.2117', '15.2117', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86433, '2022-05-29', 2762, 81829, 5274, 55780, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86434, '2022-05-29', 2251, 81830, 5274, 54668, '1.0000', '11.6477', '11.6477', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86435, '2022-05-29', 2250, 81831, 5274, 55472, '1.0000', '7.9876', '7.9876', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86436, '2022-05-29', 9827, 81832, 5274, 56243, '1.0000', '16.9421', '16.9421', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86437, '2022-05-29', 9463, 81833, 5275, 56606, '1.0000', '3.7096', '3.7096', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86438, '2022-05-29', 7547, 81834, 5275, NULL, '3.0000', '0.0000', '0.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 (86439, '2022-05-29', 7460, 81835, 5275, NULL, '2.0000', '294.7000', '294.7000', '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 (86440, '2022-05-29', 9740, 81836, 5275, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86441, '2022-05-29', 7557, 81837, 5275, 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 (86442, '2022-05-29', 2753, 81838, 5275, 45602, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86443, '2022-05-29', 1463, 81839, 5275, 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 (86444, '2022-05-29', 2295, 81840, 5275, NULL, '3.0000', '-2.3086', '-2.3086', '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 (86445, '2022-05-29', 2242, 81841, 5275, 56030, '1.0000', '0.6908', '0.6908', '1.5000', '1.5000', '143.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86446, '2022-05-29', 9274, 81842, 5275, 56602, '1.0000', '6.5262', '6.5262', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86447, '2022-05-29', 9734, 81843, 5275, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '51.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86448, '2022-05-29', 7641, 81844, 5275, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86449, '2022-05-29', 7777, 81845, 5275, NULL, '1.0000', '8.2500', '8.2500', '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 (86450, '2022-05-29', 7611, 81846, 5275, 53521, '1.0000', '17.6895', '17.6895', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86451, '2022-05-29', 9452, 81847, 5275, NULL, '1.0000', '58.0000', '58.0000', '66.0000', '66.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86452, '2022-05-29', 7518, 81848, 5275, 56581, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86453, '2022-05-29', 7860, 81849, 5275, NULL, '1.0000', '23.9400', '23.9400', '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 (86454, '2022-05-29', 8032, 81850, 5275, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86455, '2022-05-29', 8167, 81851, 5275, 56519, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86456, '2022-05-29', 7780, 81852, 5275, NULL, '1.0000', '-383.6863', '-383.6863', '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 (86457, '2022-05-29', 7753, 81853, 5275, 56557, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86458, '2022-05-29', 7509, 81854, 5275, 56593, '2.0000', '12.0174', '12.0174', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86459, '2022-05-29', 8596, 81855, 5275, NULL, '1.0000', '18.5278', '18.5278', '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 (86460, '2022-05-29', 7668, 81856, 5275, NULL, '1.0000', '-6.3200', '-6.3200', '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 (86461, '2022-05-29', 9698, 81857, 5275, 51006, '1.0000', '7.4353', '7.4353', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86462, '2022-05-29', 8457, 81858, 5275, NULL, '1.0000', '4.9044', '4.9044', '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 (86463, '2022-05-29', 9817, 81859, 5275, 55968, '1.0000', '4.9075', '4.9075', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86464, '2022-05-29', 7491, 81860, 5275, 56535, '1.0000', '30.2006', '30.2006', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86465, '2022-05-29', 2506, 81861, 5275, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86466, '2022-05-29', 9565, 81862, 5275, 56066, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86467, '2022-05-29', 9151, 81863, 5275, 51790, '1.0000', '9.7000', '9.7000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86468, '2022-05-29', 7514, 81864, 5275, NULL, '2.0000', '3234.0124', '3234.0124', '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 (86469, '2022-05-29', 7981, 81865, 5275, NULL, '5.0000', '3.3321', '3.3321', '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 (86470, '2022-05-29', 2315, 81866, 5275, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86471, '2022-05-29', 9461, 81867, 5275, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86472, '2022-05-29', 7588, 81868, 5275, 56615, '1.0000', '2.4520', '2.4520', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86473, '2022-05-29', 8017, 81869, 5275, 51835, '4.0000', '0.6000', '0.6000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86474, '2022-05-29', 7630, 81870, 5275, 53942, '2.0000', '5.6211', '5.6211', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86475, '2022-05-29', 7784, 81871, 5275, NULL, '2.0000', '1.9939', '1.9939', '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 (86476, '2022-05-29', 7774, 81872, 5275, 54132, '1.0000', '11.5199', '11.5199', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86477, '2022-05-29', 7612, 81873, 5275, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86478, '2022-05-29', 7921, 81874, 5275, NULL, '1.0000', '0.3000', '0.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 (86479, '2022-05-29', 9911, 81875, 5275, 56054, '2.0000', '2.0000', '2.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86480, '2022-05-29', 7913, 81876, 5275, NULL, '2.0000', '0.4833', '0.4833', '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 (86481, '2022-05-29', 7454, 81877, 5275, 56151, '1.0000', '57.7600', '57.7600', '77.0000', '77.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86482, '2022-05-29', 2822, 81878, 5275, 30155, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86483, '2022-05-29', 9747, 81879, 5275, 56183, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86484, '2022-05-29', 9561, 81880, 5275, 42671, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86485, '2022-05-29', 7638, 81881, 5275, 56526, '1.0000', '7.0429', '7.0429', '22.5000', '22.5000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86486, '2022-05-29', 2906, 81882, 5275, 50455, '2.0000', '2.6818', '2.6818', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86487, '2022-05-29', 3048, 81883, 5276, 24277, '1.0000', '46.0000', '46.0000', '61.0000', '61.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 (86488, '2022-05-29', 7788, 81884, 5277, NULL, '1.0000', '21.7600', '21.7600', '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 (86489, '2022-05-29', 7491, 81885, 5277, NULL, '1.0000', '30.2006', '30.2006', '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 (86490, '2022-05-29', 8135, 81886, 5277, NULL, '1.0000', '5.8940', '5.8940', '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 (86491, '2022-05-29', 8393, 81887, 5277, 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 (86492, '2022-05-29', 2298, 81888, 5277, 48057, '1.0000', '6.3879', '6.3879', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86493, '2022-05-29', 7560, 81889, 5277, NULL, '1.0000', '39.3500', '39.3500', '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 (86494, '2022-05-29', 8288, 81890, 5277, NULL, '4.0000', '1.1923', '1.1923', '1.8000', '1.8000', '-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 (86495, '2022-05-29', 9204, 81891, 5277, 56564, '1.0000', '5.9356', '5.9356', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86496, '2022-05-29', 7641, 81892, 5277, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86497, '2022-05-29', 7753, 81893, 5277, 56557, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86498, '2022-05-29', 8079, 81894, 5277, 56177, '3.0000', '7.3744', '7.3744', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86499, '2022-05-29', 7411, 81895, 5277, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86500, '2022-05-29', 7380, 81896, 5277, NULL, '1.0000', '11.5143', '11.5143', '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 (86501, '2022-05-29', 7412, 81897, 5277, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86502, '2022-05-29', 1501, 81898, 5277, 56582, '1.0000', '2.5510', '2.5510', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86503, '2022-05-29', 8626, 81899, 5277, NULL, '1.0000', '7.8175', '7.8175', '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 (86504, '2022-05-29', 9734, 81900, 5277, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86505, '2022-05-29', 9740, 81901, 5277, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86506, '2022-05-29', 7743, 81902, 5277, NULL, '1.0000', '660077.5558', '660077.5558', '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 (86507, '2022-05-29', 7954, 81903, 5277, NULL, '4.0000', '-15800.4581', '-15800.4581', '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 (86508, '2022-05-29', 2299, 81904, 5277, 52742, '1.0000', '6.2355', '6.2355', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86509, '2022-05-29', 7548, 81905, 5277, NULL, '1.0000', '2.0471', '2.0471', '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 (86510, '2022-05-29', 7333, 81906, 5277, NULL, '1.0000', '-0.5856', '-0.5856', '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 (86511, '2022-05-29', 1501, 81907, 5277, 56582, '1.0000', '2.5510', '2.5510', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86512, '2022-05-29', 7473, 81908, 5277, 56553, '1.0000', '75.1643', '75.1643', '0.7000', '0.7000', '19.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86513, '2022-05-29', 1837, 81909, 5277, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86514, '2022-05-29', 8810, 81910, 5277, 55140, '1.0000', '24.4139', '24.4139', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86515, '2022-05-29', 7506, 81911, 5277, NULL, '1.0000', '15.0000', '15.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 (86516, '2022-05-29', 8135, 81912, 5277, NULL, '1.0000', '5.8940', '5.8940', '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 (86517, '2022-05-29', 2243, 81913, 5278, 54398, '1.0000', '4.6362', '4.6362', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86518, '2022-05-29', 1863, 81914, 5278, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86519, '2022-05-29', 1425, 81915, 5278, 56257, '1.0000', '6.9142', '6.9142', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86520, '2022-05-29', 3058, 81916, 5278, 55501, '2.0000', '5.1132', '5.1132', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86521, '2022-05-29', 9732, 81917, 5278, 55495, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86522, '2022-05-29', 8176, 81918, 5278, NULL, '1.0000', '5.4000', '5.4000', '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 (86523, '2022-05-29', 2068, 81919, 5278, 55506, '1.0000', '11.7097', '11.7097', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86524, '2022-05-29', 7917, 81920, 5278, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86525, '2022-05-29', 2169, 81921, 5278, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86526, '2022-05-29', 9762, 81922, 5278, 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 (86527, '2022-05-29', 2118, 81923, 5278, 2564, '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 (86528, '2022-05-29', 1533, 81924, 5278, 54418, '1.0000', '3.5754', '3.5754', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86529, '2022-05-29', 3058, 81925, 5278, 55501, '1.0000', '5.1132', '5.1132', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86530, '2022-05-29', 9732, 81926, 5278, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86531, '2022-05-29', 7744, 81927, 5278, NULL, '1.0000', '2.9400', '2.9400', '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 (86532, '2022-05-29', 8745, 81928, 5278, 55450, '1.0000', '10.9671', '10.9671', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86533, '2022-05-29', 2169, 81929, 5278, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86534, '2022-05-29', 7411, 81930, 5279, NULL, '2.0000', '1.3013', '1.3013', '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 (86535, '2022-05-29', 1520, 81931, 5279, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86536, '2022-05-29', 9388, 81932, 5279, 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 (86537, '2022-05-29', 2295, 81933, 5279, 54913, '4.0000', '1.3151', '1.3151', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86538, '2022-05-29', 2169, 81934, 5279, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86539, '2022-05-29', 2022, 81935, 5279, 55157, '2.0000', '3.8333', '3.8333', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86540, '2022-05-29', 9695, 81936, 5279, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86541, '2022-05-29', 1631, 81937, 5279, 51498, '3.0000', '12.8300', '12.8300', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86542, '2022-05-29', 2337, 81938, 5279, NULL, '1.0000', '51.0000', '51.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86543, '2022-05-29', 1787, 81939, 5279, NULL, '1.0000', '0.5000', '0.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 (86544, '2022-05-29', 8069, 81940, 5279, 37771, '1.0000', '29.1700', '29.1700', '52.0000', '52.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86545, '2022-05-29', 9740, 81941, 5279, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '128.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86546, '2022-05-29', 2416, 81942, 5279, 54068, '4.0000', '1.2379', '1.2379', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86547, '2022-05-29', 2821, 81943, 5279, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86548, '2022-05-29', 1486, 81944, 5279, 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 (86549, '2022-05-29', 1767, 81945, 5279, 55576, '1.0000', '5.3188', '5.3188', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86550, '2022-05-29', 2522, 81946, 5279, 51953, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86551, '2022-05-29', 2315, 81947, 5279, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86552, '2022-05-29', 7703, 81948, 5279, NULL, '1.0000', '22.9900', '22.9900', '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 (86553, '2022-05-29', 2821, 81949, 5279, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86554, '2022-05-29', 2444, 81950, 5279, 54824, '1.0000', '8.3626', '8.3626', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86555, '2022-05-29', 1819, 81951, 5279, 56391, '1.0000', '7.2433', '7.2433', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86556, '2022-05-29', 1306, 81952, 5279, 55711, '9.0000', '2.1000', '2.1000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86557, '2022-05-29', 1306, 81952, 5279, 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 (86558, '2022-05-29', 7877, 81953, 5279, NULL, '1.0000', '5.1600', '5.1600', '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 (86559, '2022-05-29', 2295, 81954, 5279, 54913, '1.0000', '1.3151', '1.3151', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86560, '2022-05-29', 9726, 81955, 5279, 55630, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86561, '2022-05-29', 9695, 81956, 5279, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86562, '2022-05-29', 7685, 81957, 5279, NULL, '2.0000', '31.2000', '31.2000', '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 (86563, '2022-05-29', 1904, 81958, 5279, 56403, '5.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86564, '2022-05-29', 9915, 81959, 5279, 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 (86565, '2022-05-29', 1521, 81960, 5279, 56416, '1.0000', '10.1500', '10.1500', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86566, '2022-05-29', 2169, 81961, 5279, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86567, '2022-05-29', 7514, 81962, 5279, NULL, '1.0000', '2.2500', '2.2500', '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 (86568, '2022-05-29', 1519, 81963, 5279, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86569, '2022-05-29', 8745, 81964, 5279, NULL, '1.0000', '12.7500', '12.7500', '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 (86570, '2022-05-29', 2315, 81965, 5279, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86571, '2022-05-29', 1805, 81966, 5279, NULL, '1.0000', '40.8080', '40.8080', '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 (86572, '2022-05-29', 1855, 81967, 5279, NULL, '1.0000', '1.4820', '1.4820', '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 (86573, '2022-05-29', 2617, 81968, 5279, NULL, '1.0000', '5.1800', '5.1800', '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 (86574, '2022-05-29', 2315, 81969, 5279, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86575, '2022-05-29', 2681, 81970, 5279, 56388, '1.0000', '15.5000', '15.5000', '24.5000', '24.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86576, '2022-05-29', 2295, 81971, 5279, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86577, '2022-05-29', 8979, 81972, 5279, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86578, '2022-05-29', 2108, 81973, 5279, 55935, '1.0000', '0.8250', '0.8250', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86579, '2022-05-29', 7472, 81974, 5279, NULL, '1.0000', '-56.4939', '-56.4939', '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 (86580, '2022-05-29', 1425, 81975, 5279, NULL, '1.0000', '2.8872', '2.8872', '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 (86581, '2022-05-29', 2582, 81976, 5279, 56420, '1.0000', '16.7500', '16.7500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86582, '2022-05-29', 8878, 81977, 5279, 56424, '2.0000', '3.8136', '3.8136', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86583, '2022-05-29', 8208, 81978, 5279, NULL, '1.0000', '33.0000', '33.0000', '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 (86584, '2022-05-29', 1529, 81979, 5279, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86585, '2022-05-29', 9388, 81980, 5279, 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 (86586, '2022-05-29', 2105, 81981, 5279, 54575, '2.0000', '2.4149', '2.4149', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86587, '2022-05-29', 2270, 81982, 5279, 55948, '1.0000', '6.1250', '6.1250', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86588, '2022-05-29', 8183, 81983, 5279, 55890, '1.0000', '-1179.5325', '-1179.5325', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86589, '2022-05-29', 1871, 81984, 5279, NULL, '14.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (86590, '2022-05-29', 7911, 81985, 5279, NULL, '1.0000', '4.3700', '4.3700', '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 (86591, '2022-05-29', 1945, 81986, 5279, 55668, '1.0000', '9.3000', '9.3000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86592, '2022-05-29', 1616, 81987, 5279, 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 (86593, '2022-05-29', 7980, 81988, 5279, NULL, '4.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (86594, '2022-05-29', 2169, 81989, 5279, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86595, '2022-05-29', 8520, 81990, 5279, NULL, '1.0000', '18.9800', '18.9800', '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 (86596, '2022-05-29', 9725, 81991, 5279, 47064, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86597, '2022-05-29', 1904, 81992, 5279, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86598, '2022-05-29', 1864, 81993, 5279, 34594, '1.0000', '6.2625', '6.2625', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86599, '2022-05-29', 7411, 81994, 5279, NULL, '1.0000', '1.3013', '1.3013', '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 (86600, '2022-05-29', 2643, 81995, 5279, 54067, '1.0000', '0.9588', '0.9588', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86601, '2022-05-29', 2169, 81996, 5279, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86602, '2022-05-29', 8208, 81997, 5279, NULL, '4.0000', '33.0000', '33.0000', '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 (86603, '2022-05-29', 7707, 81998, 5280, NULL, '1.0000', '2.2567', '2.2567', '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 (86604, '2022-05-29', 8158, 81999, 5280, 56513, '1.0000', '29.5000', '29.5000', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86605, '2022-05-29', 2332, 82000, 5280, 56591, '2.0000', '7.2895', '7.2895', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86606, '2022-05-29', 8497, 82001, 5280, NULL, '1.0000', '58.7666', '58.7666', '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 (86607, '2022-05-29', 7981, 82002, 5280, NULL, '10.0000', '3.3321', '3.3321', '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 (86608, '2022-05-29', 1839, 82003, 5281, 55762, '1.0000', '7.7891', '7.7891', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86609, '2022-05-29', 9695, 82004, 5281, 55889, '1.0000', '5.1043', '5.1043', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86610, '2022-05-29', 2236, 82005, 5282, 56244, '1.0000', '5.9676', '5.9676', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86611, '2022-05-29', 9734, 82006, 5282, 56220, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86612, '2022-05-29', 2020, 82007, 5283, 55715, '1.0000', '1309.0500', '1309.0500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86613, '2022-05-29', 2237, 82008, 5283, 54916, '2.0000', '58.1889', '58.1889', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86614, '2022-05-29', 2284, 82009, 5283, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86615, '2022-05-29', 1520, 82010, 5283, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86616, '2022-05-29', 1904, 82011, 5283, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86617, '2022-05-29', 1577, 82012, 5283, NULL, '1.0000', '1.6245', '1.6245', '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 (86618, '2022-05-29', 7411, 82013, 5283, NULL, '1.0000', '1.3013', '1.3013', '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 (86619, '2022-05-29', 9695, 82014, 5283, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86620, '2022-05-29', 7411, 82015, 5283, NULL, '1.0000', '1.3013', '1.3013', '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 (86621, '2022-05-29', 1785, 82016, 5283, 55946, '1.0000', '16.7767', '16.7767', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86622, '2022-05-30', 1488, 82017, 5284, 55624, '1.0000', '4.2938', '4.2938', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86623, '2022-05-30', 2253, 82018, 5284, 51366, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86624, '2022-05-30', 2821, 82019, 5284, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86625, '2022-05-30', 9902, 82020, 5284, 56441, '2.0000', '8.2875', '8.2875', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86626, '2022-05-30', 7799, 82021, 5284, NULL, '1.0000', '2.0000', '2.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 (86627, '2022-05-30', 1672, 82022, 5284, 56440, '1.0000', '4.2348', '4.2348', '5.5000', '5.5000', '34.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86628, '2022-05-30', 7886, 82023, 5284, NULL, '1.0000', '14.5000', '14.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 (86629, '2022-05-30', 1435, 82024, 5284, 55949, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86630, '2022-05-30', 9834, 82025, 5284, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86631, '2022-05-30', 2089, 82026, 5284, 53952, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86632, '2022-05-30', 9747, 82027, 5284, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86633, '2022-05-30', 2285, 82028, 5284, NULL, '1.0000', '17.3904', '17.3904', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86634, '2022-05-30', 1688, 82029, 5284, 56456, '1.0000', '21.6067', '21.6067', '31.5000', '31.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86635, '2022-05-30', 8979, 82030, 5284, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86636, '2022-05-30', 2221, 82031, 5284, NULL, '1.0000', '12.6522', '12.6522', '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 (86637, '2022-05-30', 2037, 82032, 5284, 22540, '1.0000', '10.7500', '10.7500', '21.0000', '21.0000', '4.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 (86638, '2022-05-30', 2088, 82033, 5284, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86639, '2022-05-30', 1488, 82034, 5284, 55624, '1.0000', '4.2938', '4.2938', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86640, '2022-05-30', 2379, 82035, 5284, NULL, '1.0000', '-3.0170', '-3.0170', '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 (86641, '2022-05-30', 2169, 82036, 5284, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86642, '2022-05-30', 1945, 82037, 5284, 55668, '1.0000', '9.3000', '9.3000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86643, '2022-05-30', 7688, 82038, 5285, NULL, '1.0000', '14.7000', '14.7000', '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 (86644, '2022-05-30', 8186, 82039, 5285, NULL, '3.0000', '1.0800', '1.0800', '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 (86645, '2022-05-30', 7531, 82040, 5285, NULL, '1.0000', '3.1900', '3.1900', '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 (86646, '2022-05-30', 7483, 82041, 5285, 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 (86647, '2022-05-30', 7380, 82042, 5285, NULL, '1.0000', '8.0000', '8.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 (86648, '2022-05-30', 7672, 82043, 5285, NULL, '1.0000', '1.0200', '1.0200', '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 (86649, '2022-05-30', 7674, 82044, 5285, NULL, '1.0000', '1.3000', '1.3000', '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 (86650, '2022-05-30', 7750, 82045, 5285, NULL, '1.0000', '33.9800', '33.9800', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86651, '2022-05-30', 1665, 82046, 5285, 3235, '-109.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 (86652, '2022-05-30', 1665, 82046, 5285, NULL, '110.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86653, '2022-05-30', 9092, 82047, 5285, NULL, '2.0000', '5.2900', '5.2900', '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 (86654, '2022-05-30', 8596, 82048, 5285, 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 (86655, '2022-05-30', 2503, 82049, 5285, NULL, '1.0000', '14.6000', '14.6000', '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 (86656, '2022-05-30', 8746, 82050, 5285, NULL, '1.0000', '3.1500', '3.1500', '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 (86657, '2022-05-30', 7959, 82051, 5285, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86658, '2022-05-30', 7674, 82052, 5285, NULL, '1.0000', '1.3000', '1.3000', '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 (86659, '2022-05-30', 2315, 82053, 5285, 2735, '-396.0000', '0.3300', '0.3300', '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 (86660, '2022-05-30', 2315, 82053, 5285, NULL, '397.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-397.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86661, '2022-05-30', 9157, 82054, 5285, NULL, '1.0000', '7.0000', '7.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 (86662, '2022-05-30', 9819, 82055, 5285, NULL, '2.0000', '3.6300', '3.6300', '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 (86663, '2022-05-30', 7822, 82056, 5285, NULL, '1.0000', '8.0000', '8.0000', '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 (86664, '2022-05-30', 2289, 82057, 5285, 2949, '-170.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 (86665, '2022-05-30', 2289, 82057, 5285, NULL, '174.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-174.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86666, '2022-05-30', 7339, 82058, 5285, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (86667, '2022-05-30', 7707, 82059, 5285, NULL, '1.0000', '7.0000', '7.0000', '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 (86668, '2022-05-30', 2100, 82060, 5285, 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 (86669, '2022-05-30', 9578, 82061, 5285, NULL, '1.0000', '8.0000', '8.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 (86670, '2022-05-30', 7593, 82062, 5286, NULL, '1.0000', '0.8000', '0.8000', '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 (86671, '2022-05-30', 2758, 82063, 5286, NULL, '2.0000', '5.4000', '5.4000', '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 (86672, '2022-05-30', 2948, 82064, 5286, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86673, '2022-05-30', 7411, 82065, 5286, NULL, '1.0000', '1.3013', '1.3013', '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 (86674, '2022-05-30', 1935, 82066, 5286, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86675, '2022-05-30', 9740, 82067, 5286, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '126.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86676, '2022-05-30', 8362, 82068, 5286, NULL, '10.0000', '4.1000', '4.1000', '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 (86677, '2022-05-30', 2169, 82069, 5286, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86678, '2022-05-30', 2315, 82070, 5286, 54915, '6.0000', '0.7701', '0.7701', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86679, '2022-05-30', 9902, 82071, 5286, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86680, '2022-05-30', 7658, 82072, 5286, NULL, '1.0000', '10.1500', '10.1500', '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 (86681, '2022-05-30', 9933, 82073, 5286, NULL, '1.0000', '16.9000', '16.9000', '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 (86682, '2022-05-30', 2104, 82074, 5286, 22380, '2.0000', '0.2000', '0.2000', '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 (86683, '2022-05-30', 3058, 82075, 5286, NULL, '1.0000', '-23.3000', '-23.3000', '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 (86684, '2022-05-30', 1904, 82076, 5286, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86685, '2022-05-30', 8300, 82077, 5286, NULL, '1.0000', '7.4300', '7.4300', '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 (86686, '2022-05-30', 9915, 82078, 5286, 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 (86687, '2022-05-30', 2360, 82079, 5287, 3862, '-89.0000', '0.5200', '0.5200', '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 (86688, '2022-05-30', 2360, 82079, 5287, NULL, '90.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86689, '2022-05-30', 2169, 82080, 5287, 10737, '-136.0000', '3.8397', '3.8397', '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 (86690, '2022-05-30', 2169, 82080, 5287, NULL, '137.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86691, '2022-05-30', 1646, 82081, 5287, 3239, '-21.0000', '4.5300', '4.5300', '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 (86692, '2022-05-30', 1646, 82081, 5287, NULL, '22.0000', '4.5300', '4.5300', '8.0000', '8.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86693, '2022-05-30', 7411, 82082, 5287, NULL, '1.0000', '1.3500', '1.3500', '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 (86694, '2022-05-30', 1665, 82083, 5287, 3235, '-110.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 (86695, '2022-05-30', 1665, 82083, 5287, NULL, '112.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86696, '2022-05-30', 7411, 82084, 5287, NULL, '1.0000', '1.3500', '1.3500', '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 (86697, '2022-05-30', 2821, 82085, 5287, 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 (86698, '2022-05-30', 2655, 82086, 5287, 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 (86699, '2022-05-30', 2315, 82087, 5287, 2735, '-397.0000', '0.3300', '0.3300', '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 (86700, '2022-05-30', 2315, 82087, 5287, NULL, '399.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-399.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86701, '2022-05-30', 7411, 82088, 5287, NULL, '2.0000', '1.3500', '1.3500', '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 (86702, '2022-05-30', 2068, 82089, 5287, 5568, '-27.0000', '13.1000', '13.1000', '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 (86703, '2022-05-30', 2068, 82089, 5287, NULL, '28.0000', '13.1000', '13.1000', '16.0000', '16.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 (86704, '2022-05-30', 2169, 82090, 5287, 10737, '-136.0000', '3.8397', '3.8397', '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 (86705, '2022-05-30', 2169, 82090, 5287, NULL, '137.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86706, '2022-05-30', 7753, 82091, 5287, NULL, '1.0000', '3.4000', '3.4000', '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 (86707, '2022-05-30', 1851, 82092, 5287, 8627, '-11.0000', '10.6568', '10.6568', '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 (86708, '2022-05-30', 1851, 82092, 5287, NULL, '12.0000', '10.6568', '10.6568', '17.0000', '17.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 (86709, '2022-05-30', 9734, 82093, 5287, NULL, '2.0000', '0.3200', '0.3200', '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 (86710, '2022-05-30', 2053, 82094, 5287, NULL, '1.0000', '19.0000', '19.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 (86711, '2022-05-30', 1978, 82095, 5287, 6345, '-2.0000', '6.5000', '6.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 (86712, '2022-05-30', 1978, 82095, 5287, NULL, '3.0000', '6.5000', '6.5000', '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 (86713, '2022-05-30', 2655, 82096, 5287, 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 (86714, '2022-05-30', 7944, 82097, 5287, NULL, '1.0000', '2.0100', '2.0100', '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 (86715, '2022-05-30', 2169, 82098, 5287, 10737, '-136.0000', '3.8397', '3.8397', '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 (86716, '2022-05-30', 2169, 82098, 5287, NULL, '137.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86717, '2022-05-30', 2242, 82099, 5287, 3059, '-45.0000', '0.4800', '0.4800', '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 (86718, '2022-05-30', 2242, 82099, 5287, NULL, '48.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86719, '2022-05-30', 2617, 82100, 5287, 9743, '-5.0000', '4.4000', '4.4000', '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 (86720, '2022-05-30', 2617, 82100, 5287, NULL, '8.0000', '4.4000', '4.4000', '6.5000', '6.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 (86721, '2022-05-30', 1519, 82101, 5287, 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 (86722, '2022-05-30', 2169, 82102, 5287, 10737, '-136.0000', '3.8397', '3.8397', '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 (86723, '2022-05-30', 2169, 82102, 5287, NULL, '137.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86724, '2022-05-30', 1537, 82103, 5287, 12923, '-5.0000', '40.2700', '40.2700', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86725, '2022-05-30', 1537, 82103, 5287, NULL, '6.0000', '40.2700', '40.2700', '56.0000', '56.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 (86726, '2022-05-30', 7609, 82104, 5287, NULL, '1.0000', '4.3300', '4.3300', '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 (86727, '2022-05-30', 1839, 82105, 5287, 8734, '-32.0000', '6.1500', '6.1500', '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 (86728, '2022-05-30', 1839, 82105, 5287, NULL, '33.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (86729, '2022-05-30', 2277, 82106, 5287, 2937, '-49.0000', '0.7800', '0.7800', '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 (86730, '2022-05-30', 2277, 82106, 5287, NULL, '53.0000', '0.7800', '0.7800', '1.5000', '1.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 (86731, '2022-05-30', 7411, 82107, 5287, NULL, '1.0000', '1.3500', '1.3500', '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 (86732, '2022-05-30', 2302, 82108, 5287, 2963, '-49.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 (86733, '2022-05-30', 2302, 82108, 5287, NULL, '51.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (86734, '2022-05-30', 2893, 82109, 5287, 18242, '-9.0000', '6.0000', '6.0000', '9.5000', '9.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 (86735, '2022-05-30', 2893, 82109, 5287, NULL, '10.0000', '6.0000', '6.0000', '9.5000', '9.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 (86736, '2022-05-30', 1386, 82110, 5287, 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 (86737, '2022-05-30', 1435, 82111, 5287, NULL, '1.0000', '22.5000', '22.5000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86738, '2022-05-30', 2602, 82112, 5287, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.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 (86739, '2022-05-30', 2169, 82113, 5287, 10737, '-136.0000', '3.8397', '3.8397', '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 (86740, '2022-05-30', 2169, 82113, 5287, NULL, '137.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86741, '2022-05-30', 9634, 82114, 5287, NULL, '4.0000', '4.8000', '4.8000', '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 (86742, '2022-05-30', 2299, 82115, 5287, 22479, '-8.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 (86743, '2022-05-30', 2299, 82115, 5287, NULL, '9.0000', '6.0000', '6.0000', '8.0000', '8.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 (86744, '2022-05-30', 1855, 82116, 5287, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '5.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 (86745, '2022-05-30', 1425, 82117, 5287, NULL, '1.0000', '6.4405', '6.4405', '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 (86746, '2022-05-30', 2239, 82118, 5287, NULL, '1.0000', '25.8000', '25.8000', '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 (86747, '2022-05-30', 1672, 82119, 5287, 7384, '-125.0000', '2.8700', '2.8700', '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 (86748, '2022-05-30', 1672, 82119, 5287, NULL, '135.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86749, '2022-05-30', 2105, 82120, 5287, NULL, '2.0000', '1.3500', '1.3500', '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 (86750, '2022-05-30', 1687, 82121, 5287, 5785, '-27.0000', '165.9024', '165.9024', '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 (86751, '2022-05-30', 1687, 82121, 5287, NULL, '28.0000', '165.9024', '165.9024', '23.0000', '23.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 (86752, '2022-05-30', 2916, 82122, 5287, 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 (86753, '2022-05-30', 2669, 82123, 5287, 11757, '-8.0000', '24.5336', '24.5336', '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 (86754, '2022-05-30', 2669, 82123, 5287, NULL, '9.0000', '24.5336', '24.5336', '32.0000', '32.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 (86755, '2022-05-30', 1533, 82124, 5287, 10381, '-24.0000', '2.5917', '2.5917', '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 (86756, '2022-05-30', 1533, 82124, 5287, NULL, '25.0000', '2.5917', '2.5917', '5.5000', '5.5000', '-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 (86757, '2022-05-30', 2858, 82125, 5287, 17772, '-82.0000', '1.0000', '1.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 (86758, '2022-05-30', 2858, 82125, 5287, NULL, '83.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86759, '2022-05-30', 7411, 82126, 5287, NULL, '1.0000', '1.3500', '1.3500', '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 (86760, '2022-05-30', 7342, 82127, 5288, 44703, '1.0000', '15.8000', '15.8000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86761, '2022-05-30', 7741, 82128, 5288, 55866, '1.0000', '2.2853', '2.2853', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86762, '2022-05-30', 1871, 82129, 5288, 56238, '10.0000', '5.0960', '5.0960', '3.7000', '3.7000', '86.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86763, '2022-05-30', 2381, 82130, 5288, 56209, '1.0000', '10.3177', '10.3177', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86764, '2022-05-30', 2169, 82131, 5288, 56231, '2.0000', '1.2550', '1.2550', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86765, '2022-05-30', 7684, 82132, 5288, NULL, '1.0000', '9.0000', '9.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 (86766, '2022-05-30', 9737, 82133, 5288, 53243, '1.0000', '7.3000', '7.3000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86767, '2022-05-30', 2916, 82134, 5288, 56227, '1.0000', '14.4392', '14.4392', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86768, '2022-05-30', 1637, 82135, 5288, 55766, '1.0000', '233.8648', '233.8648', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86769, '2022-05-30', 1812, 82136, 5288, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86770, '2022-05-30', 2762, 82137, 5288, 55780, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86771, '2022-05-30', 9291, 82138, 5288, 55493, '1.0000', '15.5542', '15.5542', '20.5000', '20.5000', '6.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86772, '2022-05-30', 1667, 82139, 5288, 56235, '1.0000', '22.3928', '22.3928', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86773, '2022-05-30', 1536, 82140, 5288, 56237, '10.0000', '40.6232', '40.6232', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86774, '2022-05-30', 7926, 82141, 5288, 56254, '1.0000', '4.9190', '4.9190', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86775, '2022-05-30', 2346, 82142, 5288, 55754, '1.0000', '6.2032', '6.2032', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86776, '2022-05-30', 2293, 82143, 5288, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '60.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86777, '2022-05-30', 1598, 82144, 5288, 49141, '1.0000', '4.0345', '4.0345', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86778, '2022-05-30', 2242, 82145, 5288, 55869, '3.0000', '0.7167', '0.7167', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86779, '2022-05-30', 2285, 82146, 5288, 56242, '1.0000', '38.1195', '38.1195', '65.5000', '65.5000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86780, '2022-05-30', 1668, 82147, 5288, 55473, '1.0000', '40.5964', '40.5964', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86781, '2022-05-30', 9906, 82148, 5288, NULL, '1.0000', '5.7500', '5.7500', '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 (86782, '2022-05-30', 1612, 82149, 5288, 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 (86783, '2022-05-30', 1871, 82150, 5288, 56238, '10.0000', '5.0960', '5.0960', '3.7000', '3.7000', '86.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86784, '2022-05-30', 1592, 82151, 5288, 54659, '1.0000', '35.0705', '35.0705', '52.0000', '52.0000', '0.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86785, '2022-05-30', 1388, 82152, 5288, 55516, '1.0000', '5.8542', '5.8542', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86786, '2022-05-30', 1432, 82153, 5289, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86787, '2022-05-30', 2022, 82154, 5289, 54991, '1.0000', '3.7500', '3.7500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86788, '2022-05-30', 2275, 82155, 5289, 32825, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86789, '2022-05-30', 7684, 82156, 5290, NULL, '1.0000', '9.0000', '9.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 (86790, '2022-05-30', 2379, 82157, 5290, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86791, '2022-05-30', 1450, 82158, 5290, 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 (86792, '2022-05-30', 1666, 82159, 5290, 56233, '1.0000', '33.8746', '33.8746', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86793, '2022-05-30', 1346, 82160, 5290, 55497, '1.0000', '1.0027', '1.0027', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86794, '2022-05-30', 8923, 82161, 5290, NULL, '2.0000', '2.5000', '2.5000', '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 (86795, '2022-05-30', 9743, 82162, 5290, 55477, '1.0000', '12.3429', '12.3429', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86796, '2022-05-30', 2169, 82163, 5290, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86797, '2022-05-30', 1844, 82164, 5290, 4976, '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 (86798, '2022-05-30', 1837, 82165, 5291, 56224, '2.0000', '0.5767', '0.5767', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86799, '2022-05-30', 2315, 82166, 5291, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (86800, '2022-05-30', 2020, 82167, 5291, 55882, '1.0000', '5.9463', '5.9463', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86801, '2022-05-30', 9762, 82168, 5291, 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 (86802, '2022-05-30', 1337, 82169, 5292, 40900, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86803, '2022-05-30', 1602, 82170, 5292, 56216, '1.0000', '6.9796', '6.9796', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86804, '2022-05-30', 1863, 82171, 5292, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86805, '2022-05-30', 9729, 82172, 5292, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86806, '2022-05-30', 7459, 82173, 5292, 55783, '2.0000', '4.5753', '4.5753', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86807, '2022-05-30', 9722, 82174, 5292, 46083, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86808, '2022-05-30', 1342, 82175, 5292, 55508, '1.0000', '10.7593', '10.7593', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86809, '2022-05-30', 7673, 82176, 5293, NULL, '1.0000', '16.8000', '16.8000', '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 (86810, '2022-05-30', 2248, 82177, 5293, 2785, '-14.0000', '2.5000', '2.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 (86811, '2022-05-30', 2248, 82177, 5293, NULL, '15.0000', '2.5000', '2.5000', '6.0000', '6.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 (86812, '2022-05-30', 9899, 82178, 5293, NULL, '1.0000', '10.0000', '10.0000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86813, '2022-05-30', 7674, 82179, 5293, NULL, '1.0000', '1.3000', '1.3000', '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 (86814, '2022-05-30', 8752, 82180, 5293, NULL, '1.0000', '4.2000', '4.2000', '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 (86815, '2022-05-30', 7730, 82181, 5293, NULL, '4.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (86816, '2022-05-30', 7514, 82182, 5293, NULL, '2.0000', '2.2500', '2.2500', '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 (86817, '2022-05-30', 7466, 82183, 5293, NULL, '10.0000', '1.5100', '1.5100', '3.5000', '3.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 (86818, '2022-05-30', 9092, 82184, 5293, NULL, '4.0000', '5.2900', '5.2900', '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 (86819, '2022-05-30', 2242, 82185, 5293, 3059, '-48.0000', '0.4800', '0.4800', '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 (86820, '2022-05-30', 2242, 82185, 5293, NULL, '50.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86821, '2022-05-30', 8547, 82186, 5293, NULL, '2.0000', '3.3500', '3.3500', '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 (86822, '2022-05-30', 8000, 82187, 5293, NULL, '2.0000', '6.8400', '6.8400', '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 (86823, '2022-05-30', 1904, 82188, 5293, 5442, '-47.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 (86824, '2022-05-30', 1904, 82188, 5293, NULL, '57.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86825, '2022-05-30', 8918, 82189, 5293, NULL, '2.0000', '1.0400', '1.0400', '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 (86826, '2022-05-30', 9729, 82190, 5293, NULL, '3.0000', '0.6200', '0.6200', '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 (86827, '2022-05-30', 1837, 82191, 5293, 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 (86828, '2022-05-30', 7536, 82192, 5293, NULL, '12.0000', '6.5000', '6.5000', '8.6000', '8.6000', '-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 (86829, '2022-05-30', 9734, 82193, 5293, NULL, '4.0000', '0.3200', '0.3200', '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 (86830, '2022-05-30', 8291, 82194, 5293, NULL, '2.0000', '11.9000', '11.9000', '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 (86831, '2022-05-30', 7820, 82195, 5293, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86832, '2022-05-30', 7522, 82196, 5293, NULL, '1.0000', '9.7000', '9.7000', '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 (86833, '2022-05-30', 7514, 82197, 5293, NULL, '2.0000', '2.2500', '2.2500', '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 (86834, '2022-05-30', 1335, 82198, 5293, 12031, '-28.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 (86835, '2022-05-30', 1335, 82198, 5293, NULL, '29.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86836, '2022-05-30', 9092, 82199, 5293, NULL, '3.0000', '5.2900', '5.2900', '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 (86837, '2022-05-30', 7974, 82200, 5293, NULL, '1.0000', '28.0000', '28.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 (86838, '2022-05-30', 9554, 82201, 5293, 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 (86839, '2022-05-30', 7966, 82202, 5293, NULL, '28.0000', '1.7000', '1.7000', '6.5000', '6.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 (86840, '2022-05-30', 7730, 82203, 5293, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (86841, '2022-05-30', 8106, 82204, 5293, NULL, '7.0000', '3.2500', '3.2500', '4.5000', '4.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 (86842, '2022-05-30', 7518, 82205, 5293, NULL, '1.0000', '7.8200', '7.8200', '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 (86843, '2022-05-30', 9809, 82206, 5293, NULL, '1.0000', '5.7900', '5.7900', '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 (86844, '2022-05-30', 7911, 82207, 5293, NULL, '1.0000', '4.3700', '4.3700', '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 (86845, '2022-05-30', 1501, 82208, 5293, NULL, '1.0000', '2.0500', '2.0500', '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 (86846, '2022-05-30', 2506, 82209, 5293, 16244, '-17.0000', '3.4900', '3.4900', '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 (86847, '2022-05-30', 2506, 82209, 5293, NULL, '18.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-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 (86848, '2022-05-30', 2315, 82210, 5293, 2735, '-399.0000', '0.3300', '0.3300', '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 (86849, '2022-05-30', 2315, 82210, 5293, NULL, '401.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-401.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86850, '2022-05-30', 7709, 82211, 5293, 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 (86851, '2022-05-30', 7354, 82212, 5293, NULL, '3.0000', '0.3700', '0.3700', '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 (86852, '2022-05-30', 9900, 82213, 5293, NULL, '1.0000', '3.7200', '3.7200', '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 (86853, '2022-05-30', 7881, 82214, 5293, NULL, '1.0000', '2.3000', '2.3000', '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 (86854, '2022-05-30', 8889, 82215, 5293, NULL, '1.0000', '39.0000', '39.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 (86855, '2022-05-30', 2706, 82216, 5293, 12525, '-3.0000', '6.5900', '6.5900', '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 (86856, '2022-05-30', 2706, 82216, 5293, NULL, '4.0000', '6.5900', '6.5900', '13.0000', '13.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 (86857, '2022-05-30', 7524, 82217, 5293, NULL, '2.0000', '11.9500', '11.9500', '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 (86858, '2022-05-30', 7518, 82218, 5293, NULL, '1.0000', '7.8200', '7.8200', '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 (86859, '2022-05-30', 1541, 82219, 5293, 18018, '-4.0000', '19.0000', '19.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 (86860, '2022-05-30', 1541, 82219, 5293, NULL, '5.0000', '19.0000', '19.0000', '30.5000', '30.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 (86861, '2022-05-30', 2656, 82220, 5293, NULL, '1.0000', '1.5000', '1.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 (86862, '2022-05-30', 7781, 82221, 5293, NULL, '2.0000', '4.2500', '4.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 (86863, '2022-05-30', 7482, 82222, 5293, NULL, '1.0000', '3.0500', '3.0500', '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 (86864, '2022-05-30', 7730, 82223, 5293, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (86865, '2022-05-30', 7674, 82224, 5293, NULL, '1.0000', '1.3000', '1.3000', '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 (86866, '2022-05-30', 2315, 82225, 5293, 2735, '-399.0000', '0.3300', '0.3300', '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 (86867, '2022-05-30', 2315, 82225, 5293, NULL, '402.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-402.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86868, '2022-05-30', 7641, 82226, 5293, NULL, '1.0000', '1.9000', '1.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 (86869, '2022-05-30', 2506, 82227, 5293, 16244, '-17.0000', '3.4900', '3.4900', '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 (86870, '2022-05-30', 2506, 82227, 5293, NULL, '18.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-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 (86871, '2022-05-30', 8194, 82228, 5293, NULL, '1.0000', '5.4600', '5.4600', '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 (86872, '2022-05-30', 7587, 82229, 5293, NULL, '1.0000', '6.4400', '6.4400', '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 (86873, '2022-05-30', 1846, 82230, 5293, 12032, '-17.0000', '12.0000', '12.0000', '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 (86874, '2022-05-30', 1846, 82230, 5293, NULL, '18.0000', '12.0000', '12.0000', '16.5000', '16.5000', '-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 (86875, '2022-05-30', 7709, 82231, 5293, 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 (86876, '2022-05-30', 2283, 82232, 5293, 2943, '-23.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 (86877, '2022-05-30', 2283, 82232, 5293, NULL, '24.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (86878, '2022-05-30', 8746, 82233, 5293, NULL, '1.0000', '3.1500', '3.1500', '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 (86879, '2022-05-30', 7558, 82234, 5293, NULL, '5.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (86880, '2022-05-30', 9569, 82235, 5293, NULL, '1.0000', '145.5600', '145.5600', '175.0000', '175.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86881, '2022-05-30', 1602, 82236, 5294, 56216, '1.0000', '6.9796', '6.9796', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86882, '2022-05-30', 1394, 82237, 5294, 54990, '1.0000', '8.0658', '8.0658', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86883, '2022-05-30', 1300, 82238, 5294, 2471, '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 (86884, '2022-05-30', 7741, 82239, 5294, 55866, '1.0000', '2.2853', '2.2853', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86885, '2022-05-30', 7741, 82240, 5295, 55866, '1.0000', '2.2853', '2.2853', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86886, '2022-05-30', 1994, 82241, 5295, 6449, '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 (86887, '2022-05-30', 1504, 82242, 5295, 56247, '10.0000', '2.3266', '2.3266', '2.8000', '2.8000', '90.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86888, '2022-05-30', 7865, 82243, 5296, NULL, '1.0000', '1.6300', '1.6300', '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 (86889, '2022-05-30', 2315, 82244, 5296, 2735, '-404.0000', '0.3300', '0.3300', '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 (86890, '2022-05-30', 2315, 82244, 5296, NULL, '405.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-405.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86891, '2022-05-30', 9329, 82245, 5296, NULL, '1.0000', '6.7000', '6.7000', '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 (86892, '2022-05-30', 1644, 82246, 5296, 3216, '-7.0000', '33.8200', '33.8200', '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 (86893, '2022-05-30', 1644, 82246, 5296, NULL, '8.0000', '33.8200', '33.8200', '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 (86894, '2022-05-30', 7411, 82247, 5296, NULL, '3.0000', '1.3500', '1.3500', '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 (86895, '2022-05-30', 8878, 82248, 5296, NULL, '1.0000', '6.6700', '6.6700', '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 (86896, '2022-05-30', 7703, 82249, 5296, NULL, '1.0000', '22.9900', '22.9900', '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 (86897, '2022-05-30', 1822, 82250, 5296, 8225, '-176.0000', '2.4000', '2.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 (86898, '2022-05-30', 1822, 82250, 5296, NULL, '178.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-178.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86899, '2022-05-30', 7658, 82251, 5296, NULL, '2.0000', '2.0200', '2.0200', '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 (86900, '2022-05-30', 7473, 82252, 5296, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86901, '2022-05-30', 8395, 82253, 5296, NULL, '1.0000', '0.9700', '0.9700', '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 (86902, '2022-05-30', 3067, 82254, 5296, NULL, '1.0000', '0.7000', '0.7000', '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 (86903, '2022-05-30', 8350, 82255, 5296, NULL, '1.0000', '12.0000', '12.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 (86904, '2022-05-30', 7989, 82256, 5296, NULL, '1.0000', '37.8200', '37.8200', '66.0000', '66.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86905, '2022-05-30', 1840, 82257, 5296, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (86906, '2022-05-30', 1702, 82258, 5297, 55781, '1.0000', '25.8524', '25.8524', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86907, '2022-05-30', 1602, 82259, 5297, 56216, '1.0000', '6.9796', '6.9796', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86908, '2022-05-30', 2916, 82260, 5297, 56227, '2.0000', '14.4392', '14.4392', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86909, '2022-05-30', 1871, 82261, 5297, 56238, '4.0000', '5.0960', '5.0960', '3.7000', '3.7000', '72.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86910, '2022-05-30', 7944, 82262, 5298, 55811, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86911, '2022-05-30', 2080, 82263, 5298, 53255, '1.0000', '11.0762', '11.0762', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86912, '2022-05-30', 2327, 82264, 5298, 55803, '1.0000', '3.1287', '3.1287', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86913, '2022-05-30', 1666, 82265, 5298, 56233, '1.0000', '33.8746', '33.8746', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86914, '2022-05-30', 1837, 82266, 5299, 56224, '1.0000', '0.5767', '0.5767', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86915, '2022-05-30', 8079, 82267, 5300, 55827, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86916, '2022-05-30', 1935, 82268, 5301, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86917, '2022-05-30', 7411, 82269, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (86918, '2022-05-30', 7933, 82270, 5301, NULL, '1.0000', '-0.1222', '-0.1222', '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 (86919, '2022-05-30', 9840, 82271, 5301, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86920, '2022-05-30', 2506, 82272, 5301, NULL, '1.0000', '2.9584', '2.9584', '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 (86921, '2022-05-30', 8079, 82273, 5301, NULL, '1.0000', '13.6100', '13.6100', '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 (86922, '2022-05-30', 1640, 82274, 5301, NULL, '1.0000', '3.0496', '3.0496', '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 (86923, '2022-05-30', 2348, 82275, 5301, 54551, '1.0000', '26.9800', '26.9800', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86924, '2022-05-30', 1519, 82276, 5301, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86925, '2022-05-30', 2408, 82277, 5301, NULL, '1.0000', '9.3500', '9.3500', '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 (86926, '2022-05-30', 2821, 82278, 5301, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86927, '2022-05-30', 2354, 82279, 5301, NULL, '1.0000', '-0.6066', '-0.6066', '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 (86928, '2022-05-30', 8607, 82280, 5301, NULL, '1.0000', '-3.0000', '-3.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 (86929, '2022-05-30', 2293, 82281, 5301, NULL, '3.0000', '-17.4320', '-17.4320', '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 (86930, '2022-05-30', 7585, 82282, 5301, NULL, '1.0000', '3.9600', '3.9600', '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 (86931, '2022-05-30', 7411, 82283, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (86932, '2022-05-30', 2315, 82284, 5301, 54915, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86933, '2022-05-30', 1646, 82285, 5301, 56415, '1.0000', '5.6514', '5.6514', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86934, '2022-05-30', 3029, 82286, 5301, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86935, '2022-05-30', 1513, 82287, 5301, 56433, '1.0000', '13.4840', '13.4840', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86936, '2022-05-30', 2315, 82288, 5301, 54915, '8.0000', '0.7701', '0.7701', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86937, '2022-05-30', 2315, 82288, 5301, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '198.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86938, '2022-05-30', 2156, 82289, 5301, 55716, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86939, '2022-05-30', 7328, 82290, 5301, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86940, '2022-05-30', 1840, 82291, 5301, 55654, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86941, '2022-05-30', 9915, 82292, 5301, 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 (86942, '2022-05-30', 9804, 82293, 5301, 51658, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86943, '2022-05-30', 2242, 82294, 5301, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '91.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86944, '2022-05-30', 1532, 82295, 5301, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86945, '2022-05-30', 2986, 82296, 5301, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86946, '2022-05-30', 9840, 82297, 5301, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86947, '2022-05-30', 7411, 82298, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (86948, '2022-05-30', 1425, 82299, 5301, NULL, '1.0000', '2.8872', '2.8872', '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 (86949, '2022-05-30', 7411, 82300, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (86950, '2022-05-30', 8017, 82301, 5301, NULL, '3.0000', '0.6000', '0.6000', '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 (86951, '2022-05-30', 1425, 82302, 5301, NULL, '1.0000', '2.8872', '2.8872', '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 (86952, '2022-05-30', 7514, 82303, 5301, NULL, '2.0000', '2.2500', '2.2500', '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 (86953, '2022-05-30', 7406, 82304, 5301, NULL, '1.0000', '2.3750', '2.3750', '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 (86954, '2022-05-30', 3059, 82305, 5301, 37758, '2.0000', '2.2083', '2.2083', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86955, '2022-05-30', 1307, 82306, 5301, NULL, '1.0000', '-11.7284', '-11.7284', '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 (86956, '2022-05-30', 1687, 82307, 5301, 56467, '1.0000', '14.1684', '14.1684', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86957, '2022-05-30', 2821, 82308, 5301, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86958, '2022-05-30', 1545, 82309, 5301, 55688, '1.0000', '6.7700', '6.7700', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86959, '2022-05-30', 7411, 82310, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (86960, '2022-05-30', 3001, 82311, 5301, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86961, '2022-05-30', 1311, 82312, 5301, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86962, '2022-05-30', 2295, 82313, 5301, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86963, '2022-05-30', 2242, 82314, 5301, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '91.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86964, '2022-05-30', 7483, 82315, 5301, 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 (86965, '2022-05-30', 1787, 82316, 5301, NULL, '1.0000', '0.5000', '0.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 (86966, '2022-05-30', 7483, 82317, 5301, 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 (86967, '2022-05-30', 2379, 82318, 5301, NULL, '1.0000', '-3.0170', '-3.0170', '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 (86968, '2022-05-30', 9915, 82319, 5301, 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 (86969, '2022-05-30', 7411, 82320, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (86970, '2022-05-30', 2221, 82321, 5301, NULL, '1.0000', '12.6522', '12.6522', '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 (86971, '2022-05-30', 2061, 82322, 5301, NULL, '1.0000', '11.3365', '11.3365', '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 (86972, '2022-05-30', 1529, 82323, 5301, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86973, '2022-05-30', 2295, 82324, 5301, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86974, '2022-05-30', 7564, 82325, 5301, NULL, '1.0000', '0.6400', '0.6400', '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 (86975, '2022-05-30', 7713, 82326, 5301, 55675, '5.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86976, '2022-05-30', 2315, 82327, 5301, 54915, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86977, '2022-05-30', 1337, 82328, 5301, 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 (86978, '2022-05-30', 9187, 82329, 5301, NULL, '1.0000', '14.7400', '14.7400', '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 (86979, '2022-05-30', 2623, 82330, 5301, NULL, '1.0000', '0.6000', '0.6000', '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 (86980, '2022-05-30', 2283, 82331, 5301, 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 (86981, '2022-05-30', 2169, 82332, 5301, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86982, '2022-05-30', 1311, 82333, 5301, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86983, '2022-05-30', 9762, 82334, 5301, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '34.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86984, '2022-05-30', 2088, 82335, 5301, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86985, '2022-05-30', 1646, 82336, 5301, 56415, '1.0000', '5.6514', '5.6514', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86986, '2022-05-30', 9531, 82337, 5301, 55098, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86987, '2022-05-30', 7483, 82338, 5301, 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 (86988, '2022-05-30', 2169, 82339, 5301, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86989, '2022-05-30', 9740, 82340, 5301, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '125.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86990, '2022-05-30', 1602, 82341, 5301, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86991, '2022-05-30', 7886, 82342, 5301, NULL, '1.0000', '14.5000', '14.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 (86992, '2022-05-30', 2108, 82343, 5301, 55935, '1.0000', '0.8250', '0.8250', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86993, '2022-05-30', 2169, 82344, 5301, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86994, '2022-05-30', 2546, 82345, 5301, NULL, '1.0000', '25.2500', '25.2500', '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 (86995, '2022-05-30', 1340, 82346, 5301, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86996, '2022-05-30', 9827, 82347, 5301, NULL, '1.0000', '16.6600', '16.6600', '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 (86997, '2022-05-30', 7411, 82348, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (86998, '2022-05-30', 7328, 82349, 5301, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86999, '2022-05-30', 2169, 82350, 5301, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87000, '2022-05-30', 2256, 82351, 5301, 55713, '1.0000', '13.7060', '13.7060', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87001, '2022-05-30', 2221, 82352, 5301, NULL, '1.0000', '12.6522', '12.6522', '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 (87002, '2022-05-30', 9717, 82353, 5301, 50230, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87003, '2022-05-30', 7483, 82354, 5301, NULL, '3.0000', '0.4200', '0.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 (87004, '2022-05-30', 7318, 82355, 5301, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87005, '2022-05-30', 9738, 82356, 5301, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87006, '2022-05-30', 2546, 82357, 5301, NULL, '1.0000', '25.2500', '25.2500', '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 (87007, '2022-05-30', 9388, 82358, 5301, 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 (87008, '2022-05-30', 1665, 82359, 5301, 55689, '2.0000', '1.1651', '1.1651', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87009, '2022-05-30', 1812, 82360, 5301, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87010, '2022-05-30', 2821, 82361, 5301, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87011, '2022-05-30', 9311, 82362, 5301, NULL, '2.0000', '7.8000', '7.8000', '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 (87012, '2022-05-30', 8878, 82363, 5301, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87013, '2022-05-30', 9695, 82364, 5301, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87014, '2022-05-30', 2962, 82365, 5301, 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 (87015, '2022-05-30', 7758, 82366, 5301, NULL, '1.0000', '10.8500', '10.8500', '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 (87016, '2022-05-30', 2108, 82367, 5301, 55935, '1.0000', '0.8250', '0.8250', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87017, '2022-05-30', 7411, 82368, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (87018, '2022-05-30', 7330, 82369, 5301, NULL, '1.0000', '3.0500', '3.0500', '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 (87019, '2022-05-30', 7819, 82370, 5301, NULL, '1.0000', '10.0999', '10.0999', '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 (87020, '2022-05-30', 2169, 82371, 5301, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87021, '2022-05-30', 8677, 82372, 5301, NULL, '1.0000', '496.2705', '496.2705', '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 (87022, '2022-05-30', 1722, 82373, 5301, 55899, '2.0000', '4.3150', '4.3150', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87023, '2022-05-30', 1722, 82373, 5301, NULL, '3.0000', '4.3150', '4.3150', '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 (87024, '2022-05-30', 1325, 82374, 5301, NULL, '1.0000', '23.9800', '23.9800', '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 (87025, '2022-05-30', 9889, 82375, 5301, 55952, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87026, '2022-05-30', 1409, 82376, 5301, 55894, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87027, '2022-05-30', 1519, 82377, 5301, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87028, '2022-05-30', 2506, 82378, 5301, NULL, '1.0000', '2.9584', '2.9584', '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 (87029, '2022-05-30', 7411, 82379, 5301, NULL, '1.0000', '1.3013', '1.3013', '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 (87030, '2022-05-30', 1501, 82380, 5301, NULL, '1.0000', '0.9225', '0.9225', '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 (87031, '2022-05-30', 2916, 82381, 5301, NULL, '1.0000', '538.9192', '538.9192', '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 (87032, '2022-05-30', 9695, 82382, 5301, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87033, '2022-05-30', 1763, 82383, 5301, 55644, '1.0000', '4.6631', '4.6631', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87034, '2022-05-31', 7892, 82384, 5302, NULL, '1.0000', '4.2000', '4.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 (87035, '2022-05-31', 8702, 82385, 5302, NULL, '1.0000', '3.6700', '3.6700', '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 (87036, '2022-05-31', 7711, 82386, 5302, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87037, '2022-05-31', 9729, 82387, 5302, NULL, '4.0000', '0.6200', '0.6200', '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 (87038, '2022-05-31', 9274, 82388, 5302, NULL, '1.0000', '3.6000', '3.6000', '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 (87039, '2022-05-31', 7444, 82389, 5302, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87040, '2022-05-31', 7906, 82390, 5302, NULL, '1.0000', '9.3000', '9.3000', '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 (87041, '2022-05-31', 9274, 82391, 5302, NULL, '1.0000', '3.6000', '3.6000', '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 (87042, '2022-05-31', 7666, 82392, 5302, NULL, '1.0000', '3.6000', '3.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 (87043, '2022-05-31', 9330, 82393, 5302, 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 (87044, '2022-05-31', 7509, 82394, 5302, NULL, '2.0000', '6.5000', '6.5000', '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 (87045, '2022-05-31', 7913, 82395, 5302, NULL, '1.0000', '4.4100', '4.4100', '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 (87046, '2022-05-31', 7411, 82396, 5302, NULL, '1.0000', '1.3500', '1.3500', '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 (87047, '2022-05-31', 7390, 82397, 5302, NULL, '1.0000', '6.9800', '6.9800', '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 (87048, '2022-05-31', 7782, 82398, 5302, 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 (87049, '2022-05-31', 7411, 82399, 5302, NULL, '2.0000', '1.3500', '1.3500', '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 (87050, '2022-05-31', 2250, 82400, 5302, 2787, '-14.0000', '6.8900', '6.8900', '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 (87051, '2022-05-31', 2250, 82400, 5302, NULL, '15.0000', '6.8900', '6.8900', '12.5000', '12.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 (87052, '2022-05-31', 8138, 82401, 5302, NULL, '1.0000', '30.3500', '30.3500', '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 (87053, '2022-05-31', 7628, 82402, 5302, NULL, '6.0000', '2.2900', '2.2900', '3.0000', '3.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 (87054, '2022-05-31', 2315, 82403, 5302, 2735, '-405.0000', '0.3300', '0.3300', '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 (87055, '2022-05-31', 2315, 82403, 5302, NULL, '406.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-406.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87056, '2022-05-31', 9416, 82404, 5302, 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 (87057, '2022-05-31', 7900, 82405, 5302, NULL, '2.0000', '2.5000', '2.5000', '3.2000', '3.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 (87058, '2022-05-31', 2315, 82406, 5302, 2735, '-405.0000', '0.3300', '0.3300', '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 (87059, '2022-05-31', 2315, 82406, 5302, NULL, '407.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-407.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87060, '2022-05-31', 9274, 82407, 5302, NULL, '1.0000', '3.6000', '3.6000', '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 (87061, '2022-05-31', 7412, 82408, 5302, NULL, '1.0000', '1.5200', '1.5200', '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 (87062, '2022-05-31', 2315, 82409, 5302, 2735, '-405.0000', '0.3300', '0.3300', '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 (87063, '2022-05-31', 2315, 82409, 5302, NULL, '406.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-406.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87064, '2022-05-31', 7694, 82410, 5302, NULL, '1.0000', '4.7900', '4.7900', '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 (87065, '2022-05-31', 7411, 82411, 5302, NULL, '2.0000', '1.3500', '1.3500', '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 (87066, '2022-05-31', 7672, 82412, 5302, NULL, '1.0000', '1.0200', '1.0200', '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 (87067, '2022-05-31', 1620, 82413, 5302, 8955, '-53.0000', '408.8259', '408.8259', '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 (87068, '2022-05-31', 1620, 82413, 5302, NULL, '55.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-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 (87069, '2022-05-31', 7780, 82414, 5302, NULL, '1.0000', '11.6000', '11.6000', '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 (87070, '2022-05-31', 9729, 82415, 5302, NULL, '1.0000', '0.6200', '0.6200', '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 (87071, '2022-05-31', 7506, 82416, 5302, NULL, '1.0000', '15.0000', '15.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 (87072, '2022-05-31', 2242, 82417, 5303, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '86.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87073, '2022-05-31', 8187, 82418, 5303, NULL, '3.0000', '14.3900', '14.3900', '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 (87074, '2022-05-31', 7411, 82419, 5303, NULL, '1.0000', '1.3013', '1.3013', '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 (87075, '2022-05-31', 9747, 82420, 5303, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87076, '2022-05-31', 1409, 82421, 5303, 55894, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87077, '2022-05-31', 9740, 82422, 5303, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '124.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87078, '2022-05-31', 2242, 82423, 5303, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '86.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87079, '2022-05-31', 2289, 82424, 5303, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87080, '2022-05-31', 1840, 82425, 5303, 55654, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87081, '2022-05-31', 1841, 82426, 5303, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87082, '2022-05-31', 8607, 82427, 5303, NULL, '1.0000', '-3.0000', '-3.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 (87083, '2022-05-31', 8979, 82428, 5303, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87084, '2022-05-31', 8746, 82429, 5303, 55424, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87085, '2022-05-31', 1908, 82430, 5303, NULL, '2.0000', '0.9032', '0.9032', '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 (87086, '2022-05-31', 1935, 82431, 5303, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87087, '2022-05-31', 9695, 82432, 5303, 56629, '2.0000', '5.1869', '5.1869', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87088, '2022-05-31', 2289, 82433, 5303, 56470, '3.0000', '0.3611', '0.3611', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87089, '2022-05-31', 1590, 82434, 5303, 55929, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87090, '2022-05-31', 1667, 82435, 5303, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87091, '2022-05-31', 2169, 82436, 5303, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87092, '2022-05-31', 7473, 82437, 5303, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '49.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87093, '2022-05-31', 2169, 82438, 5303, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87094, '2022-05-31', 7609, 82439, 5303, NULL, '1.0000', '4.3300', '4.3300', '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 (87095, '2022-05-31', 2099, 82440, 5303, 51213, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87096, '2022-05-31', 2237, 82441, 5303, 54916, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87097, '2022-05-31', 7867, 82442, 5303, NULL, '2.0000', '2.7700', '2.7700', '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 (87098, '2022-05-31', 2916, 82443, 5303, NULL, '1.0000', '538.9192', '538.9192', '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 (87099, '2022-05-31', 9695, 82444, 5303, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87100, '2022-05-31', 9468, 82445, 5303, NULL, '1.0000', '35.2500', '35.2500', '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 (87101, '2022-05-31', 7514, 82446, 5303, NULL, '1.0000', '2.2500', '2.2500', '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 (87102, '2022-05-31', 2250, 82447, 5303, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87103, '2022-05-31', 8607, 82448, 5303, NULL, '1.0000', '-3.0000', '-3.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 (87104, '2022-05-31', 7438, 82449, 5303, NULL, '1.0000', '28.6900', '28.6900', '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 (87105, '2022-05-31', 8607, 82450, 5303, NULL, '1.0000', '-3.0000', '-3.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 (87106, '2022-05-31', 8700, 82451, 5303, 39216, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87107, '2022-05-31', 1407, 82452, 5303, 54556, '1.0000', '19.0167', '19.0167', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87108, '2022-05-31', 8191, 82453, 5303, NULL, '2.0000', '5.0000', '5.0000', '55.0000', '55.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 (87109, '2022-05-31', 2821, 82454, 5303, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87110, '2022-05-31', 2169, 82455, 5303, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87111, '2022-05-31', 7350, 82456, 5303, NULL, '2.0000', '30.4000', '30.4000', '40.5000', '40.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 (87112, '2022-05-31', 9735, 82457, 5303, 54873, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87113, '2022-05-31', 7514, 82458, 5303, NULL, '1.0000', '2.2500', '2.2500', '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 (87114, '2022-05-31', 2916, 82459, 5304, 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 (87115, '2022-05-31', 9775, 82460, 5304, NULL, '1.0000', '7.9000', '7.9000', '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 (87116, '2022-05-31', 1450, 82461, 5304, 5570, '-32.0000', '61.1074', '61.1074', '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 (87117, '2022-05-31', 1450, 82461, 5304, NULL, '37.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87118, '2022-05-31', 1300, 82462, 5304, 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 (87119, '2022-05-31', 9750, 82463, 5304, NULL, '1.0000', '3.3000', '3.3000', '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 (87120, '2022-05-31', 2360, 82464, 5304, 3862, '-90.0000', '0.5200', '0.5200', '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 (87121, '2022-05-31', 2360, 82464, 5304, NULL, '92.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87122, '2022-05-31', 1620, 82465, 5304, 8955, '-55.0000', '408.8259', '408.8259', '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 (87123, '2022-05-31', 1620, 82465, 5304, NULL, '59.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87124, '2022-05-31', 1665, 82466, 5304, 3235, '-112.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 (87125, '2022-05-31', 1665, 82466, 5304, NULL, '113.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87126, '2022-05-31', 9915, 82467, 5304, 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 (87127, '2022-05-31', 8736, 82468, 5304, NULL, '1.0000', '3.4000', '3.4000', '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 (87128, '2022-05-31', 1666, 82469, 5304, 3236, '-32.0000', '2.7100', '2.7100', '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 (87129, '2022-05-31', 1666, 82469, 5304, NULL, '33.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-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 (87130, '2022-05-31', 2864, 82470, 5304, 17587, '-30.0000', '1.5198', '1.5198', '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 (87131, '2022-05-31', 2864, 82470, 5304, NULL, '40.0000', '1.5198', '1.5198', '2.2000', '2.2000', '-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 (87132, '2022-05-31', 1689, 82471, 5304, 4897, '-11.0000', '60.7198', '60.7198', '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 (87133, '2022-05-31', 1689, 82471, 5304, NULL, '12.0000', '60.7198', '60.7198', '21.0000', '21.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 (87134, '2022-05-31', 1425, 82472, 5304, NULL, '1.0000', '6.4405', '6.4405', '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 (87135, '2022-05-31', 1873, 82473, 5304, 16245, '-10.0000', '11.9500', '11.9500', '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 (87136, '2022-05-31', 1873, 82473, 5304, NULL, '11.0000', '11.9500', '11.9500', '20.0000', '20.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 (87137, '2022-05-31', 2169, 82474, 5304, 10737, '-141.0000', '3.8397', '3.8397', '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 (87138, '2022-05-31', 2169, 82474, 5304, NULL, '142.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-142.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87139, '2022-05-31', 2289, 82475, 5305, NULL, '3.0000', '2.5688', '2.5688', '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 (87140, '2022-05-31', 1841, 82476, 5305, 56033, '3.0000', '0.1970', '0.1970', '0.5000', '0.5000', '79.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87141, '2022-05-31', 7473, 82477, 5305, 56553, '5.0000', '75.1643', '75.1643', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87142, '2022-05-31', 7776, 82478, 5305, NULL, '1.0000', '9.7858', '9.7858', '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 (87143, '2022-05-31', 1947, 82479, 5305, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87144, '2022-05-31', 9761, 82480, 5305, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87145, '2022-05-31', 7516, 82481, 5305, 54095, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87146, '2022-05-31', 7411, 82482, 5305, 56187, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87147, '2022-05-31', 1914, 82483, 5305, 55118, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87148, '2022-05-31', 2079, 82484, 5305, 45601, '1.0000', '2.1080', '2.1080', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87149, '2022-05-31', 8017, 82485, 5305, 51835, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87150, '2022-05-31', 7318, 82486, 5305, 56154, '1.0000', '10.9273', '10.9273', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87151, '2022-05-31', 1989, 82487, 5305, NULL, '1.0000', '6.7500', '6.7500', '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 (87152, '2022-05-31', 7385, 82488, 5305, 56578, '5.0000', '9.0049', '9.0049', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87153, '2022-05-31', 7730, 82489, 5305, 56499, '3.0000', '0.1000', '0.1000', '0.2000', '0.2000', '84.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87154, '2022-05-31', 8596, 82490, 5305, NULL, '1.0000', '18.5278', '18.5278', '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 (87155, '2022-05-31', 7820, 82491, 5305, NULL, '1.0000', '-296.8250', '-296.8250', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87156, '2022-05-31', 1805, 82492, 5305, NULL, '1.0000', '4.9973', '4.9973', '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 (87157, '2022-05-31', 7472, 82493, 5305, NULL, '1.0000', '-35.4938', '-35.4938', '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 (87158, '2022-05-31', 7411, 82494, 5305, 56187, '4.0000', '1.4000', '1.4000', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87159, '2022-05-31', 7317, 82495, 5305, 56596, '1.0000', '14.6427', '14.6427', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87160, '2022-05-31', 7910, 82496, 5305, 46897, '1.0000', '3.4356', '3.4356', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87161, '2022-05-31', 1520, 82497, 5305, NULL, '1.0000', '1.4700', '1.4700', '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 (87162, '2022-05-31', 7444, 82498, 5305, NULL, '1.0000', '-10.6533', '-10.6533', '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 (87163, '2022-05-31', 7926, 82499, 5305, NULL, '1.0000', '5.4999', '5.4999', '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 (87164, '2022-05-31', 7753, 82500, 5305, 56557, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87165, '2022-05-31', 7334, 82501, 5305, 56005, '1.0000', '8.7483', '8.7483', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87166, '2022-05-31', 8497, 82502, 5305, NULL, '2.0000', '58.7666', '58.7666', '18.5000', '18.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 (87167, '2022-05-31', 9204, 82503, 5305, 56564, '2.0000', '5.9356', '5.9356', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87168, '2022-05-31', 8878, 82504, 5305, 54503, '4.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87169, '2022-05-31', 7719, 82505, 5305, 55075, '2.0000', '8.2508', '8.2508', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87170, '2022-05-31', 9178, 82506, 5305, 46013, '1.0000', '4.2725', '4.2725', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87171, '2022-05-31', 8965, 82507, 5305, NULL, '2.0000', '-263.2470', '-263.2470', '9.5000', '9.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 (87172, '2022-05-31', 7357, 82508, 5305, NULL, '1.0000', '11.7500', '11.7500', '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 (87173, '2022-05-31', 2506, 82509, 5305, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87174, '2022-05-31', 9092, 82510, 5305, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '103.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87175, '2022-05-31', 7514, 82511, 5305, NULL, '1.0000', '3234.0124', '3234.0124', '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 (87176, '2022-05-31', 1935, 82512, 5305, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '130.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87177, '2022-05-31', 8017, 82513, 5305, 51835, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87178, '2022-05-31', 8052, 82514, 5305, 56586, '2.0000', '47.6719', '47.6719', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87179, '2022-05-31', 8878, 82515, 5305, 54503, '4.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87180, '2022-05-31', 9461, 82516, 5305, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87181, '2022-05-31', 1916, 82517, 5305, 56184, '1.0000', '10.4660', '10.4660', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87182, '2022-05-31', 7848, 82518, 5305, NULL, '1.0000', '-64.7099', '-64.7099', '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 (87183, '2022-05-31', 1935, 82519, 5305, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '130.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87184, '2022-05-31', 7776, 82520, 5305, NULL, '1.0000', '9.7858', '9.7858', '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 (87185, '2022-05-31', 9724, 82521, 5305, 54090, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87186, '2022-05-31', 7708, 82522, 5305, 56588, '1.0000', '8.3127', '8.3127', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87187, '2022-05-31', 9151, 82523, 5305, 51790, '1.0000', '9.7000', '9.7000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87188, '2022-05-31', 9740, 82524, 5305, 55131, '3.0000', '0.6600', '0.6600', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87189, '2022-05-31', 7848, 82525, 5305, NULL, '1.0000', '-64.7099', '-64.7099', '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 (87190, '2022-05-31', 9187, 82526, 5305, NULL, '1.0000', '-0.1400', '-0.1400', '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 (87191, '2022-05-31', 2983, 82527, 5305, 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 (87192, '2022-05-31', 7612, 82528, 5305, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87193, '2022-05-31', 8677, 82529, 5305, 51791, '2.0000', '1.2300', '1.2300', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87194, '2022-05-31', 1430, 82530, 5306, 54989, '1.0000', '13.6945', '13.6945', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87195, '2022-05-31', 1863, 82531, 5306, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87196, '2022-05-31', 9626, 82532, 5306, 40291, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87197, '2022-05-31', 8207, 82533, 5306, NULL, '1.0000', '0.0000', '0.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 (87198, '2022-05-31', 7913, 82534, 5306, NULL, '1.0000', '2.5500', '2.5500', '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 (87199, '2022-05-31', 1650, 82535, 5306, 56213, '1.0000', '14.9457', '14.9457', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87200, '2022-05-31', 2285, 82536, 5306, 56242, '1.0000', '38.1195', '38.1195', '65.5000', '65.5000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87201, '2022-05-31', 1650, 82537, 5306, 56213, '1.0000', '14.9457', '14.9457', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87202, '2022-05-31', 1521, 82538, 5306, 56249, '1.0000', '2.8071', '2.8071', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87203, '2022-05-31', 7318, 82539, 5306, 54669, '1.0000', '10.5558', '10.5558', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87204, '2022-05-31', 2064, 82540, 5306, 5502, '1.0000', '4.2400', '4.2400', '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 (87205, '2022-05-31', 1337, 82541, 5306, 40900, '1.0000', '1.9543', '1.9543', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87206, '2022-05-31', 2285, 82542, 5306, 56242, '1.0000', '38.1195', '38.1195', '65.5000', '65.5000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87207, '2022-05-31', 1670, 82543, 5306, 54623, '1.0000', '48.0854', '48.0854', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87208, '2022-05-31', 2320, 82544, 5306, 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 (87209, '2022-05-31', 2379, 82545, 5306, 54615, '1.0000', '1.9369', '1.9369', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87210, '2022-05-31', 9557, 82546, 5306, 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 (87211, '2022-05-31', 1387, 82547, 5306, 54406, '1.0000', '57.7158', '57.7158', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87212, '2022-05-31', 2285, 82548, 5306, 56242, '1.0000', '38.1195', '38.1195', '65.5000', '65.5000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87213, '2022-05-31', 1863, 82549, 5306, 55480, '1.0000', '1.3191', '1.3191', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87214, '2022-05-31', 1425, 82550, 5306, 56257, '1.0000', '6.9142', '6.9142', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87215, '2022-05-31', 9873, 82551, 5306, 53278, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87216, '2022-05-31', 1668, 82552, 5306, 55473, '2.0000', '40.5964', '40.5964', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87217, '2022-05-31', 1668, 82552, 5306, 52089, '1.0000', '40.5964', '40.5964', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87218, '2022-05-31', 2416, 82553, 5306, 55454, '1.0000', '1.2441', '1.2441', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87219, '2022-05-31', 7744, 82554, 5306, NULL, '1.0000', '2.9400', '2.9400', '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 (87220, '2022-05-31', 1602, 82555, 5306, 56216, '1.0000', '6.9796', '6.9796', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87221, '2022-05-31', 1602, 82556, 5306, 56216, '2.0000', '6.9796', '6.9796', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87222, '2022-05-31', 8753, 82557, 5306, 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 (87223, '2022-05-31', 2229, 82558, 5306, 44488, '1.0000', '25.2188', '25.2188', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87224, '2022-05-31', 1513, 82559, 5306, 56211, '1.0000', '22.0332', '22.0332', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87225, '2022-05-31', 7917, 82560, 5306, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (87226, '2022-05-31', 1346, 82561, 5306, 55497, '30.0000', '1.0027', '1.0027', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87227, '2022-05-31', 2681, 82562, 5306, 56205, '2.0000', '13.6987', '13.6987', '24.5000', '24.5000', '8.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87228, '2022-05-31', 9729, 82563, 5306, 46048, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87229, '2022-05-31', 2927, 82564, 5306, 19030, '1.0000', '14.7000', '14.7000', '40.0000', '40.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 (87230, '2022-05-31', 7411, 82565, 5306, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87231, '2022-05-31', 1602, 82566, 5307, 56216, '1.0000', '6.9796', '6.9796', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87232, '2022-05-31', 7744, 82567, 5307, NULL, '1.0000', '2.9400', '2.9400', '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 (87233, '2022-05-31', 1982, 82568, 5308, 54329, '1.0000', '4.0398', '4.0398', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87234, '2022-05-31', 8155, 82569, 5309, NULL, '2.0000', '65.0000', '65.0000', '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 (87235, '2022-05-31', 8052, 82570, 5309, 56586, '1.0000', '47.6719', '47.6719', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87236, '2022-05-31', 7317, 82571, 5309, 56596, '1.0000', '14.6427', '14.6427', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87237, '2022-05-31', 7657, 82572, 5309, NULL, '1.0000', '32.0003', '32.0003', '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 (87238, '2022-05-31', 7947, 82573, 5309, NULL, '1.0000', '14.4400', '14.4400', '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 (87239, '2022-05-31', 2427, 82574, 5309, NULL, '1.0000', '5.8000', '5.8000', '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 (87240, '2022-05-31', 7852, 82575, 5309, NULL, '1.0000', '-53.7735', '-53.7735', '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 (87241, '2022-05-31', 1602, 82576, 5310, 56469, '2.0000', '7.0635', '7.0635', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87242, '2022-05-31', 7659, 82577, 5310, NULL, '1.0000', '5.9700', '5.9700', '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 (87243, '2022-05-31', 1520, 82578, 5310, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87244, '2022-05-31', 2299, 82579, 5310, 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 (87245, '2022-05-31', 3029, 82580, 5310, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87246, '2022-05-31', 7316, 82581, 5310, 54885, '10.0000', '0.9020', '0.9020', '1.3000', '1.3000', '50.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87247, '2022-05-31', 1935, 82582, 5310, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87248, '2022-05-31', 8984, 82583, 5310, NULL, '1.0000', '-100.8495', '-100.8495', '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 (87249, '2022-05-31', 1873, 82584, 5310, 54894, '1.0000', '15.6100', '15.6100', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87250, '2022-05-31', 2251, 82585, 5310, 56387, '1.0000', '16.7513', '16.7513', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87251, '2022-05-31', 2163, 82586, 5310, 55925, '3.0000', '27.8333', '27.8333', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87252, '2022-05-31', 2163, 82586, 5310, NULL, '4.0000', '27.8333', '27.8333', '36.0000', '36.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 (87253, '2022-05-31', 2259, 82587, 5310, 55706, '4.0000', '22.8355', '22.8355', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87254, '2022-05-31', 2251, 82588, 5310, 56387, '1.0000', '16.7513', '16.7513', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87255, '2022-05-31', 9900, 82589, 5310, 55721, '1.0000', '3.7200', '3.7200', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87256, '2022-05-31', 7584, 82590, 5310, 53945, '1.0000', '3.1378', '3.1378', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87257, '2022-05-31', 1904, 82591, 5310, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87258, '2022-05-31', 2983, 82592, 5310, 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 (87259, '2022-05-31', 7411, 82593, 5310, NULL, '1.0000', '1.3013', '1.3013', '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 (87260, '2022-05-31', 9889, 82594, 5310, 55952, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87261, '2022-05-31', 1651, 82595, 5310, NULL, '1.0000', '8.2255', '8.2255', '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 (87262, '2022-05-31', 2916, 82596, 5310, NULL, '1.0000', '538.9192', '538.9192', '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 (87263, '2022-05-31', 9909, 82597, 5310, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87264, '2022-05-31', 7713, 82598, 5310, 55675, '2.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87265, '2022-05-31', 7713, 82598, 5310, 55577, '2.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87266, '2022-05-31', 7708, 82599, 5310, NULL, '1.0000', '6.3400', '6.3400', '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 (87267, '2022-05-31', 2315, 82600, 5310, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '193.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87268, '2022-05-31', 7483, 82601, 5310, NULL, '1.0000', '0.4200', '0.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 (87269, '2022-05-31', 9576, 82602, 5310, 55151, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87270, '2022-05-31', 9755, 82603, 5310, 55152, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87271, '2022-05-31', 7641, 82604, 5310, NULL, '1.0000', '1.9000', '1.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 (87272, '2022-05-31', 9775, 82605, 5310, 56400, '1.0000', '9.6292', '9.6292', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87273, '2022-05-31', 2353, 82606, 5310, NULL, '1.0000', '-0.8995', '-0.8995', '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 (87274, '2022-05-31', 1493, 82607, 5310, NULL, '1.0000', '-27.3400', '-27.3400', '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 (87275, '2022-05-31', 7386, 82608, 5310, 55937, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87276, '2022-05-31', 8743, 82609, 5310, NULL, '1.0000', '15.7500', '15.7500', '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 (87277, '2022-05-31', 2342, 82610, 5310, 54886, '4.0000', '2.2091', '2.2091', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87278, '2022-05-31', 2259, 82611, 5310, 55706, '4.0000', '22.8355', '22.8355', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87279, '2022-05-31', 2259, 82611, 5310, 54936, '2.0000', '22.8355', '22.8355', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87280, '2022-05-31', 9001, 82612, 5310, NULL, '3.0000', '4.3300', '4.3300', '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 (87281, '2022-05-31', 1521, 82613, 5310, NULL, '1.0000', '10.1500', '10.1500', '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 (87282, '2022-05-31', 1905, 82614, 5310, 54898, '2.0000', '0.5203', '0.5203', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87283, '2022-05-31', 7555, 82615, 5310, 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 (87284, '2022-05-31', 9902, 82616, 5310, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87285, '2022-05-31', 1651, 82617, 5310, NULL, '1.0000', '8.2255', '8.2255', '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 (87286, '2022-05-31', 1519, 82618, 5310, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87287, '2022-05-31', 9695, 82619, 5310, 56629, '2.0000', '5.1869', '5.1869', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87288, '2022-05-31', 7398, 82620, 5310, NULL, '2.0000', '143.5000', '143.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 (87289, '2022-05-31', 2730, 82621, 5310, 51643, '4.0000', '1.2000', '1.2000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87290, '2022-05-31', 7514, 82622, 5310, NULL, '1.0000', '2.2500', '2.2500', '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 (87291, '2022-05-31', 8878, 82623, 5310, 56424, '2.0000', '3.8136', '3.8136', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87292, '2022-05-31', 1519, 82624, 5310, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87293, '2022-05-31', 7799, 82625, 5310, NULL, '1.0000', '2.0000', '2.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 (87294, '2022-05-31', 1839, 82626, 5310, NULL, '1.0000', '17468.6132', '17468.6132', '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 (87295, '2022-05-31', 2769, 82627, 5310, 54167, '3.0000', '1.8925', '1.8925', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87296, '2022-05-31', 1856, 82628, 5310, NULL, '1.0000', '20.0009', '20.0009', '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 (87297, '2022-05-31', 2821, 82629, 5310, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87298, '2022-05-31', 1864, 82630, 5310, 34594, '1.0000', '6.2625', '6.2625', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87299, '2022-05-31', 2916, 82631, 5310, NULL, '1.0000', '538.9192', '538.9192', '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 (87300, '2022-05-31', 9740, 82632, 5310, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '123.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87301, '2022-05-31', 1545, 82633, 5310, 55688, '1.0000', '6.7700', '6.7700', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87302, '2022-05-31', 1840, 82634, 5310, 55654, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87303, '2022-05-31', 2289, 82635, 5310, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '66.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87304, '2022-05-31', 7328, 82636, 5310, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87305, '2022-05-31', 9695, 82637, 5310, 56629, '2.0000', '5.1869', '5.1869', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87306, '2022-05-31', 1529, 82638, 5310, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87307, '2022-05-31', 1872, 82639, 5310, 54552, '1.0000', '10.5986', '10.5986', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87308, '2022-05-31', 9834, 82640, 5310, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87309, '2022-05-31', 2295, 82641, 5310, 54913, '4.0000', '1.3151', '1.3151', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87310, '2022-06-01', 9738, 82642, 5311, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87311, '2022-06-01', 1839, 82643, 5311, NULL, '1.0000', '17468.6132', '17468.6132', '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 (87312, '2022-06-01', 1743, 82644, 5311, NULL, '1.0000', '4.6550', '4.6550', '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 (87313, '2022-06-01', 8813, 82645, 5311, 55544, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87314, '2022-06-01', 1499, 82646, 5311, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87315, '2022-06-01', 2315, 82647, 5311, 54938, '5.0000', '0.7701', '0.7701', '1.0000', '1.0000', '188.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87316, '2022-06-01', 1871, 82648, 5311, NULL, '5.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (87317, '2022-06-01', 2315, 82649, 5311, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '192.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87318, '2022-06-01', 1395, 82650, 5311, 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 (87319, '2022-06-01', 7411, 82651, 5311, NULL, '1.0000', '1.3013', '1.3013', '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 (87320, '2022-06-01', 2236, 82652, 5311, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87321, '2022-06-01', 1935, 82653, 5311, 48658, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87322, '2022-06-01', 1935, 82653, 5311, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87323, '2022-06-01', 9933, 82654, 5311, NULL, '1.0000', '16.9000', '16.9000', '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 (87324, '2022-06-01', 2916, 82655, 5311, NULL, '1.0000', '538.9192', '538.9192', '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 (87325, '2022-06-01', 2728, 82656, 5311, 19354, '2.0000', '0.8000', '0.8000', '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 (87326, '2022-06-01', 2135, 82657, 5311, NULL, '1.0000', '-0.2588', '-0.2588', '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 (87327, '2022-06-01', 2315, 82658, 5311, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '192.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87328, '2022-06-01', 8607, 82659, 5311, NULL, '1.0000', '-3.0000', '-3.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 (87329, '2022-06-01', 1693, 82660, 5311, 55664, '1.0000', '9.5194', '9.5194', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87330, '2022-06-01', 1863, 82661, 5311, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87331, '2022-06-01', 2363, 82662, 5311, 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 (87332, '2022-06-01', 7802, 82663, 5311, NULL, '3.0000', '1.1497', '1.1497', '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 (87333, '2022-06-01', 9834, 82664, 5311, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87334, '2022-06-01', 2315, 82665, 5311, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '191.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87335, '2022-06-01', 2285, 82666, 5311, NULL, '1.0000', '17.3904', '17.3904', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87336, '2022-06-01', 1946, 82667, 5312, NULL, '1.0000', '-4.7391', '-4.7391', '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 (87337, '2022-06-01', 9695, 82668, 5312, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87338, '2022-06-01', 1881, 82669, 5312, 56445, '1.0000', '105.8000', '105.8000', '141.0000', '141.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87339, '2022-06-01', 1602, 82670, 5312, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87340, '2022-06-01', 1667, 82671, 5312, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87341, '2022-06-01', 1665, 82672, 5312, 55689, '1.0000', '1.1651', '1.1651', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87342, '2022-06-01', 1435, 82673, 5312, 55949, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87343, '2022-06-01', 2948, 82674, 5312, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87344, '2022-06-01', 1501, 82675, 5312, NULL, '1.0000', '0.9225', '0.9225', '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 (87345, '2022-06-01', 2617, 82676, 5312, NULL, '6.0000', '5.1800', '5.1800', '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 (87346, '2022-06-01', 1904, 82677, 5312, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87347, '2022-06-01', 2567, 82678, 5313, 7177, '-11.0000', '33.0000', '33.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 (87348, '2022-06-01', 2567, 82678, 5313, NULL, '12.0000', '33.0000', '33.0000', '48.0000', '48.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 (87349, '2022-06-01', 1841, 82679, 5313, NULL, '11.0000', '142.5780', '142.5780', '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 (87350, '2022-06-01', 1840, 82680, 5313, NULL, '11.0000', '-138499292.4246', '-138499292.4246', '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 (87351, '2022-06-01', 7514, 82681, 5313, NULL, '1.0000', '2.2500', '2.2500', '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 (87352, '2022-06-01', 8878, 82682, 5313, NULL, '2.0000', '6.6700', '6.6700', '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 (87353, '2022-06-01', 2315, 82683, 5313, 2735, '-409.0000', '0.3300', '0.3300', '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 (87354, '2022-06-01', 2315, 82683, 5313, NULL, '410.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-410.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87355, '2022-06-01', 9498, 82684, 5313, NULL, '1.0000', '12.5000', '12.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 (87356, '2022-06-01', 8359, 82685, 5313, 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 (87357, '2022-06-01', 7953, 82686, 5313, NULL, '1.0000', '6.0000', '6.0000', '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 (87358, '2022-06-01', 2350, 82687, 5313, 3853, '-7.0000', '10.3800', '10.3800', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87359, '2022-06-01', 2350, 82687, 5313, NULL, '8.0000', '10.3800', '10.3800', '14.0000', '14.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 (87360, '2022-06-01', 2762, 82688, 5313, NULL, '1.0000', '7.1000', '7.1000', '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 (87361, '2022-06-01', 7334, 82689, 5313, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (87362, '2022-06-01', 8101, 82690, 5313, 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 (87363, '2022-06-01', 7892, 82691, 5313, NULL, '1.0000', '4.2000', '4.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 (87364, '2022-06-01', 7857, 82692, 5313, NULL, '1.0000', '15.1300', '15.1300', '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 (87365, '2022-06-01', 9007, 82693, 5313, NULL, '1.0000', '22.2000', '22.2000', '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 (87366, '2022-06-01', 9382, 82694, 5313, NULL, '1.0000', '5.2000', '5.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 (87367, '2022-06-01', 7787, 82695, 5313, NULL, '1.0000', '10.9000', '10.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 (87368, '2022-06-01', 9092, 82696, 5313, NULL, '3.0000', '5.2900', '5.2900', '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 (87369, '2022-06-01', 7514, 82697, 5313, NULL, '1.0000', '2.2500', '2.2500', '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 (87370, '2022-06-01', 7787, 82698, 5313, NULL, '1.0000', '10.9000', '10.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 (87371, '2022-06-01', 8393, 82699, 5313, 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 (87372, '2022-06-01', 9092, 82700, 5313, NULL, '3.0000', '5.2900', '5.2900', '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 (87373, '2022-06-01', 7730, 82701, 5313, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (87374, '2022-06-01', 2506, 82702, 5313, 16244, '-19.0000', '3.4900', '3.4900', '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 (87375, '2022-06-01', 2506, 82702, 5313, NULL, '20.0000', '3.4900', '3.4900', '6.5000', '6.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 (87376, '2022-06-01', 7641, 82703, 5313, NULL, '1.0000', '1.9000', '1.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 (87377, '2022-06-01', 7743, 82704, 5313, NULL, '1.0000', '1.3100', '1.3100', '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 (87378, '2022-06-01', 7333, 82705, 5313, NULL, '1.0000', '13.5000', '13.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 (87379, '2022-06-01', 7385, 82706, 5313, NULL, '3.0000', '2.0000', '2.0000', '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 (87380, '2022-06-01', 7697, 82707, 5313, 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 (87381, '2022-06-01', 9204, 82708, 5313, NULL, '1.0000', '8.1600', '8.1600', '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 (87382, '2022-06-01', 8101, 82709, 5313, 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 (87383, '2022-06-01', 7753, 82710, 5313, NULL, '1.0000', '3.4000', '3.4000', '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 (87384, '2022-06-01', 7674, 82711, 5313, NULL, '1.0000', '1.3000', '1.3000', '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 (87385, '2022-06-01', 7781, 82712, 5313, NULL, '2.0000', '4.2500', '4.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 (87386, '2022-06-01', 7672, 82713, 5313, NULL, '2.0000', '1.0200', '1.0200', '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 (87387, '2022-06-01', 9695, 82714, 5314, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87388, '2022-06-01', 2289, 82715, 5315, 2949, '-174.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 (87389, '2022-06-01', 2289, 82715, 5315, NULL, '177.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-177.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87390, '2022-06-01', 1841, 82716, 5315, NULL, '3.0000', '142.5780', '142.5780', '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 (87391, '2022-06-01', 1840, 82717, 5315, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (87392, '2022-06-01', 2858, 82718, 5316, 17772, '-83.0000', '1.0000', '1.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 (87393, '2022-06-01', 2858, 82718, 5316, NULL, '84.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87394, '2022-06-01', 2135, 82719, 5316, 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 (87395, '2022-06-01', 1300, 82720, 5316, 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 (87396, '2022-06-01', 2315, 82721, 5316, 2735, '-410.0000', '0.3300', '0.3300', '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 (87397, '2022-06-01', 2315, 82721, 5316, NULL, '411.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-411.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87398, '2022-06-01', 1371, 82722, 5316, 10169, '-4.0000', '5.5000', '5.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 (87399, '2022-06-01', 1371, 82722, 5316, NULL, '5.0000', '5.5000', '5.5000', '10.0000', '10.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 (87400, '2022-06-01', 2360, 82723, 5316, 3862, '-92.0000', '0.5200', '0.5200', '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 (87401, '2022-06-01', 2360, 82723, 5316, NULL, '93.0000', '0.5200', '0.5200', '0.8000', '0.8000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87402, '2022-06-01', 9734, 82724, 5316, NULL, '1.0000', '0.3200', '0.3200', '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 (87403, '2022-06-01', 2362, 82725, 5316, 3864, '-64.0000', '8.8300', '8.8300', '179.0000', '179.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87404, '2022-06-01', 2362, 82725, 5316, NULL, '65.0000', '8.8300', '8.8300', '179.0000', '179.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87405, '2022-06-01', 1840, 82726, 5316, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (87406, '2022-06-01', 2748, 82727, 5316, NULL, '1.0000', '35.5000', '35.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 (87407, '2022-06-01', 1666, 82728, 5316, 3236, '-33.0000', '2.7100', '2.7100', '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 (87408, '2022-06-01', 1666, 82728, 5316, NULL, '34.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-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 (87409, '2022-06-01', 1871, 82729, 5316, 8223, '-192.0000', '24.5246', '24.5246', '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 (87410, '2022-06-01', 1871, 82729, 5316, NULL, '207.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-207.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87411, '2022-06-01', 9745, 82730, 5316, NULL, '1.0000', '7.2000', '7.2000', '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 (87412, '2022-06-01', 2020, 82731, 5316, 10164, '-23.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 (87413, '2022-06-01', 2020, 82731, 5316, NULL, '24.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-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 (87414, '2022-06-01', 1432, 82732, 5316, NULL, '1.0000', '8.1574', '8.1574', '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 (87415, '2022-06-01', 9878, 82733, 5317, 55901, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87416, '2022-06-01', 2410, 82734, 5317, 55671, '1.0000', '4.5240', '4.5240', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87417, '2022-06-01', 1580, 82735, 5317, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87418, '2022-06-01', 2293, 82736, 5317, NULL, '3.0000', '-17.4320', '-17.4320', '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 (87419, '2022-06-01', 9731, 82737, 5317, 54523, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87420, '2022-06-01', 1450, 82738, 5317, 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 (87421, '2022-06-01', 1672, 82739, 5317, 56440, '10.0000', '4.2348', '4.2348', '5.5000', '5.5000', '24.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87422, '2022-06-01', 8677, 82740, 5317, NULL, '1.0000', '496.2705', '496.2705', '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 (87423, '2022-06-01', 2105, 82741, 5317, 54575, '1.0000', '2.4149', '2.4149', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87424, '2022-06-01', 2163, 82742, 5317, NULL, '1.0000', '27.8333', '27.8333', '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 (87425, '2022-06-01', 2545, 82743, 5317, 55650, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87426, '2022-06-01', 1935, 82744, 5317, 48471, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87427, '2022-06-01', 1311, 82745, 5317, 52210, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '11.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87428, '2022-06-01', 1837, 82746, 5317, 56452, '1.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87429, '2022-06-01', 1528, 82747, 5317, NULL, '3.0000', '323.4803', '323.4803', '8.5000', '8.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 (87430, '2022-06-01', 1969, 82748, 5317, NULL, '1.0000', '4.3300', '4.3300', '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 (87431, '2022-06-01', 9848, 82749, 5317, NULL, '1.0000', '2.8000', '2.8000', '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 (87432, '2022-06-01', 8184, 82750, 5317, 55561, '10.0000', '3.0310', '3.0310', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87433, '2022-06-01', 2061, 82751, 5317, NULL, '1.0000', '11.3365', '11.3365', '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 (87434, '2022-06-01', 1905, 82752, 5317, 54898, '2.0000', '0.5203', '0.5203', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87435, '2022-06-01', 1788, 82753, 5317, 19841, '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 (87436, '2022-06-01', 9740, 82754, 5318, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '122.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87437, '2022-06-01', 1935, 82755, 5318, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87438, '2022-06-01', 1904, 82756, 5318, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87439, '2022-06-01', 2361, 82757, 5318, 42543, '5.0000', '0.4744', '0.4744', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87440, '2022-06-01', 9817, 82758, 5318, 55531, '1.0000', '5.9800', '5.9800', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87441, '2022-06-01', 7593, 82759, 5318, NULL, '1.0000', '0.8000', '0.8000', '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 (87442, '2022-06-01', 2986, 82760, 5318, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87443, '2022-06-01', 9822, 82761, 5318, 51344, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87444, '2022-06-01', 1560, 82762, 5318, 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 (87445, '2022-06-01', 2299, 82763, 5318, NULL, '4.0000', '6.0000', '6.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 (87446, '2022-06-01', 2893, 82764, 5318, NULL, '1.0000', '6.4400', '6.4400', '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 (87447, '2022-06-01', 2169, 82765, 5319, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87448, '2022-06-01', 1529, 82766, 5319, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87449, '2022-06-01', 1904, 82767, 5319, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87450, '2022-06-01', 2351, 82768, 5320, 55959, '1.0000', '18.4875', '18.4875', '24.5000', '24.5000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87451, '2022-06-01', 2506, 82769, 5320, NULL, '1.0000', '2.9584', '2.9584', '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 (87452, '2022-06-01', 1946, 82770, 5320, NULL, '1.0000', '-4.7391', '-4.7391', '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 (87453, '2022-06-01', 2315, 82771, 5321, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '182.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87454, '2022-06-01', 2237, 82772, 5321, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87455, '2022-06-01', 1519, 82773, 5321, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87456, '2022-06-01', 3001, 82774, 5321, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87457, '2022-06-01', 2617, 82775, 5321, NULL, '1.0000', '5.1800', '5.1800', '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 (87458, '2022-06-01', 1571, 82776, 5321, NULL, '1.0000', '308.7500', '308.7500', '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 (87459, '2022-06-01', 2821, 82777, 5321, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87460, '2022-06-01', 9841, 82778, 5321, 55669, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87461, '2022-06-01', 1771, 82779, 5321, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87462, '2022-06-01', 3001, 82780, 5321, 37759, '1.0000', '2.5621', '2.5621', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87463, '2022-06-01', 1501, 82781, 5321, NULL, '1.0000', '0.9225', '0.9225', '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 (87464, '2022-06-01', 1519, 82782, 5321, 56422, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87465, '2022-06-01', 2916, 82783, 5322, NULL, '1.0000', '538.9192', '538.9192', '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 (87466, '2022-06-01', 9775, 82784, 5322, 56400, '1.0000', '9.6292', '9.6292', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87467, '2022-06-01', 2095, 82785, 5322, NULL, '1.0000', '0.5000', '0.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 (87468, '2022-06-01', 1529, 82786, 5322, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87469, '2022-06-01', 1884, 82787, 5322, 55897, '1.0000', '17.4104', '17.4104', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87470, '2022-06-01', 1946, 82788, 5322, NULL, '1.0000', '-4.7391', '-4.7391', '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 (87471, '2022-06-01', 2351, 82789, 5322, 55959, '1.0000', '18.4875', '18.4875', '24.5000', '24.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87472, '2022-06-01', 1863, 82790, 5323, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87473, '2022-06-01', 2169, 82791, 5323, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87474, '2022-06-01', 8333, 82792, 5323, NULL, '1.0000', '7.5900', '7.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 (87475, '2022-06-01', 2169, 82793, 5323, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87476, '2022-06-01', 8878, 82794, 5323, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87477, '2022-06-01', 2948, 82795, 5323, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '41.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87478, '2022-06-01', 7756, 82796, 5323, NULL, '1.0000', '2.5000', '2.5000', '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 (87479, '2022-06-01', 9715, 82797, 5323, 51322, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87480, '2022-06-01', 1851, 82798, 5323, 55913, '1.0000', '12.6300', '12.6300', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87481, '2022-06-01', 1668, 82799, 5323, 53212, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87482, '2022-06-01', 7316, 82800, 5323, 54885, '6.0000', '0.9020', '0.9020', '1.3000', '1.3000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87483, '2022-06-01', 1646, 82801, 5323, 56415, '1.0000', '5.6514', '5.6514', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87484, '2022-06-01', 7674, 82802, 5324, NULL, '1.0000', '1.3000', '1.3000', '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 (87485, '2022-06-01', 9272, 82803, 5324, NULL, '1.0000', '3.1000', '3.1000', '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 (87486, '2022-06-01', 2284, 82804, 5324, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (87487, '2022-06-01', 7482, 82805, 5324, NULL, '1.0000', '3.0500', '3.0500', '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 (87488, '2022-06-01', 7674, 82806, 5324, NULL, '1.0000', '1.3000', '1.3000', '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 (87489, '2022-06-01', 9715, 82807, 5324, NULL, '1.0000', '9.4000', '9.4000', '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 (87490, '2022-06-01', 8167, 82808, 5324, NULL, '1.0000', '16.2000', '16.2000', '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 (87491, '2022-06-01', 2315, 82809, 5324, 2735, '-411.0000', '0.3300', '0.3300', '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 (87492, '2022-06-01', 2315, 82809, 5324, NULL, '413.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-413.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87493, '2022-06-01', 9092, 82810, 5324, NULL, '2.0000', '5.2900', '5.2900', '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 (87494, '2022-06-01', 7518, 82811, 5324, NULL, '1.0000', '7.8200', '7.8200', '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 (87495, '2022-06-01', 7852, 82812, 5324, NULL, '1.0000', '15.0000', '15.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 (87496, '2022-06-01', 7417, 82813, 5324, NULL, '16.0000', '6.4100', '6.4100', '13.0000', '13.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 (87497, '2022-06-01', 9811, 82814, 5324, NULL, '1.0000', '29.0000', '29.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 (87498, '2022-06-01', 9885, 82815, 5324, 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 (87499, '2022-06-01', 8355, 82816, 5324, NULL, '1.0000', '22.7700', '22.7700', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87500, '2022-06-01', 7674, 82817, 5324, NULL, '1.0000', '1.3000', '1.3000', '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 (87501, '2022-06-01', 9565, 82818, 5324, NULL, '1.0000', '4.5000', '4.5000', '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 (87502, '2022-06-01', 8918, 82819, 5324, NULL, '1.0000', '1.0400', '1.0400', '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 (87503, '2022-06-01', 2289, 82820, 5324, 2949, '-177.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 (87504, '2022-06-01', 2289, 82820, 5324, NULL, '178.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-178.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87505, '2022-06-01', 8038, 82821, 5324, 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 (87506, '2022-06-01', 7709, 82822, 5324, NULL, '2.0000', '3.5000', '3.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 (87507, '2022-06-01', 2891, 82823, 5324, 18020, '-4.0000', '9.5000', '9.5000', '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 (87508, '2022-06-01', 2891, 82823, 5324, NULL, '5.0000', '9.5000', '9.5000', '13.0000', '13.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 (87509, '2022-06-01', 8203, 82824, 5324, 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 (87510, '2022-06-01', 7590, 82825, 5324, NULL, '1.0000', '1.8400', '1.8400', '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 (87511, '2022-06-01', 8913, 82826, 5324, NULL, '1.0000', '15.1700', '15.1700', '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 (87512, '2022-06-01', 7719, 82827, 5324, NULL, '1.0000', '6.0000', '6.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 (87513, '2022-06-01', 8889, 82828, 5324, NULL, '1.0000', '39.0000', '39.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 (87514, '2022-06-01', 9734, 82829, 5324, NULL, '6.0000', '0.3200', '0.3200', '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 (87515, '2022-06-01', 7848, 82830, 5324, NULL, '1.0000', '1.3500', '1.3500', '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 (87516, '2022-06-01', 8030, 82831, 5324, NULL, '3.0000', '14.7600', '14.7600', '19.5000', '19.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 (87517, '2022-06-01', 7709, 82832, 5324, NULL, '2.0000', '3.5000', '3.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 (87518, '2022-06-01', 2154, 82833, 5324, 1369, '1.0000', '10.6849', '10.6849', '17.0000', '17.0000', '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 (87519, '2022-06-01', 7633, 82834, 5324, NULL, '1.0000', '2.8700', '2.8700', '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 (87520, '2022-06-01', 7899, 82835, 5324, NULL, '1.0000', '3.3000', '3.3000', '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 (87521, '2022-06-01', 9272, 82836, 5324, NULL, '1.0000', '3.1000', '3.1000', '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 (87522, '2022-06-01', 1755, 82837, 5324, 3165, '-4.0000', '5.5900', '5.5900', '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 (87523, '2022-06-01', 1755, 82837, 5324, NULL, '5.0000', '5.5900', '5.5900', '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 (87524, '2022-06-01', 9747, 82838, 5324, NULL, '2.0000', '0.6500', '0.6500', '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 (87525, '2022-06-01', 9599, 82839, 5324, NULL, '1.0000', '2.7300', '2.7300', '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 (87526, '2022-06-01', 7666, 82840, 5324, NULL, '1.0000', '3.6000', '3.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 (87527, '2022-06-01', 7564, 82841, 5324, 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 (87528, '2022-06-01', 9745, 82842, 5324, NULL, '1.0000', '7.2000', '7.2000', '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 (87529, '2022-06-01', 2225, 82843, 5324, 1700, '-5.0000', '14.0000', '14.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 (87530, '2022-06-01', 2225, 82843, 5324, NULL, '6.0000', '14.0000', '14.0000', '20.0000', '20.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 (87531, '2022-06-01', 9817, 82844, 5324, NULL, '1.0000', '3.9000', '3.9000', '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 (87532, '2022-06-01', 8669, 82845, 5324, NULL, '1.0000', '35.8000', '35.8000', '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 (87533, '2022-06-01', 9204, 82846, 5324, NULL, '1.0000', '8.1600', '8.1600', '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 (87534, '2022-06-01', 2102, 82847, 5324, 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 (87535, '2022-06-01', 7478, 82848, 5324, 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 (87536, '2022-06-01', 8038, 82849, 5324, 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 (87537, '2022-06-01', 7730, 82850, 5324, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (87538, '2022-06-01', 7379, 82851, 5324, NULL, '1.0000', '12.5100', '12.5100', '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 (87539, '2022-06-01', 7753, 82852, 5324, NULL, '1.0000', '3.4000', '3.4000', '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 (87540, '2022-06-01', 1978, 82853, 5324, 6345, '-3.0000', '6.5000', '6.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 (87541, '2022-06-01', 1978, 82853, 5324, NULL, '4.0000', '6.5000', '6.5000', '12.0000', '12.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 (87542, '2022-06-01', 8444, 82854, 5324, NULL, '1.0000', '1.6000', '1.6000', '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 (87543, '2022-06-01', 8163, 82855, 5324, NULL, '1.0000', '22.0000', '22.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 (87544, '2022-06-01', 8065, 82856, 5324, NULL, '1.0000', '32.0000', '32.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 (87545, '2022-06-01', 7411, 82857, 5324, NULL, '1.0000', '1.3500', '1.3500', '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 (87546, '2022-06-01', 7518, 82858, 5324, NULL, '1.0000', '7.8200', '7.8200', '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 (87547, '2022-06-01', 7641, 82859, 5324, NULL, '1.0000', '1.9000', '1.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 (87548, '2022-06-01', 8643, 82860, 5324, NULL, '10.0000', '11.0000', '11.0000', '17.0000', '17.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 (87549, '2022-06-01', 7780, 82861, 5324, NULL, '1.0000', '11.6000', '11.6000', '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 (87550, '2022-06-01', 8680, 82862, 5324, NULL, '1.0000', '2.0000', '2.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 (87551, '2022-06-01', 7514, 82863, 5324, NULL, '1.0000', '2.2500', '2.2500', '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 (87552, '2022-06-01', 7848, 82864, 5324, NULL, '3.0000', '1.3500', '1.3500', '26.0000', '26.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 (87553, '2022-06-01', 2279, 82865, 5324, 2939, '-18.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 (87554, '2022-06-01', 2279, 82865, 5324, NULL, '20.0000', '2.7000', '2.7000', '3.5000', '3.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 (87555, '2022-06-01', 2906, 82866, 5324, 18651, '-14.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 (87556, '2022-06-01', 2906, 82866, 5324, NULL, '19.0000', '2.6000', '2.6000', '4.0000', '4.0000', '-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 (87557, '2022-06-01', 7316, 82867, 5324, NULL, '10.0000', '9.5500', '9.5500', '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 (87558, '2022-06-01', 7756, 82868, 5324, NULL, '1.0000', '2.5000', '2.5000', '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 (87559, '2022-06-01', 9911, 82869, 5324, 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 (87560, '2022-06-01', 7774, 82870, 5324, NULL, '1.0000', '3.3000', '3.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 (87561, '2022-06-01', 7612, 82871, 5324, NULL, '1.0000', '1.7300', '1.7300', '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 (87562, '2022-06-01', 7392, 82872, 5324, NULL, '1.0000', '19.5300', '19.5300', '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 (87563, '2022-06-01', 9399, 82873, 5324, NULL, '1.0000', '0.9800', '0.9800', '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 (87564, '2022-06-01', 7333, 82874, 5324, NULL, '1.0000', '13.5000', '13.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 (87565, '2022-06-01', 7522, 82875, 5324, NULL, '1.0000', '9.7000', '9.7000', '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 (87566, '2022-06-01', 7411, 82876, 5324, NULL, '5.0000', '1.3500', '1.3500', '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 (87567, '2022-06-01', 9695, 82877, 5324, NULL, '2.0000', '4.5000', '4.5000', '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 (87568, '2022-06-01', 1666, 82878, 5325, 55663, '1.0000', '2.7079', '2.7079', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87569, '2022-06-01', 1519, 82879, 5325, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87570, '2022-06-01', 1602, 82880, 5325, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87571, '2022-06-01', 1651, 82881, 5326, NULL, '2.0000', '8.2255', '8.2255', '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 (87572, '2022-06-01', 2299, 82882, 5326, 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 (87573, '2022-06-01', 1905, 82883, 5326, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87574, '2022-06-01', 1812, 82884, 5327, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87575, '2022-06-01', 8740, 82885, 5327, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87576, '2022-06-01', 8746, 82886, 5327, 55424, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87577, '2022-06-01', 2858, 82887, 5328, NULL, '2.0000', '1.0000', '1.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 (87578, '2022-06-01', 7398, 82888, 5328, NULL, '2.0000', '18.5000', '18.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 (87579, '2022-06-01', 9631, 82889, 5328, 49114, '1.0000', '7.0000', '7.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87580, '2022-06-01', 9631, 82890, 5328, 49114, '1.0000', '7.0000', '7.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87581, '2022-06-01', 1855, 82891, 5328, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87582, '2022-06-01', 1954, 82892, 5328, 47998, '1.0000', '-11.3000', '-11.3000', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87583, '2022-06-01', 7897, 82893, 5328, 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 (87584, '2022-06-01', 2643, 82894, 5328, 55455, '1.0000', '0.9235', '0.9235', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87585, '2022-06-01', 1432, 82895, 5328, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87586, '2022-06-01', 9734, 82896, 5328, 56220, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '93.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87587, '2022-06-01', 7642, 82897, 5328, 54649, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87588, '2022-06-01', 1812, 82898, 5328, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87589, '2022-06-01', 7482, 82899, 5328, NULL, '1.0000', '3.0500', '3.0500', '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 (87590, '2022-06-01', 8775, 82900, 5328, 52321, '1.0000', '3.1153', '3.1153', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87591, '2022-06-01', 7376, 82901, 5328, NULL, '4.0000', '141.7100', '141.7100', '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 (87592, '2022-06-01', 2643, 82902, 5328, 55455, '1.0000', '0.9235', '0.9235', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87593, '2022-06-01', 2253, 82903, 5328, 56229, '1.0000', '14.6111', '14.6111', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87594, '2022-06-01', 1855, 82904, 5328, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87595, '2022-06-01', 1880, 82905, 5328, 55776, '1.0000', '4.8385', '4.8385', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87596, '2022-06-01', 1867, 82906, 5328, NULL, '1.0000', '9.0894', '9.0894', '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 (87597, '2022-06-01', 7802, 82907, 5328, 52269, '3.0000', '1.3468', '1.3468', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87598, '2022-06-01', 1855, 82908, 5328, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87599, '2022-06-01', 9917, 82909, 5328, NULL, '1.0000', '1.2300', '1.2300', '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 (87600, '2022-06-01', 2360, 82910, 5328, 49990, '9.0000', '0.5200', '0.5200', '0.8000', '0.8000', '20.0000', 1, 0, NULL, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87601, '2022-06-01', 2297, 82911, 5328, 50924, '1.0000', '8.0496', '8.0496', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87602, '2022-06-01', 2255, 82912, 5328, 54626, '1.0000', '19.7622', '19.7622', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87603, '2022-06-01', 7339, 82913, 5328, 56741, '10.0000', '-3.8719', '-3.8719', '0.9000', '0.9000', '90.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87604, '2022-06-01', 1647, 82914, 5328, 55475, '1.0000', '5.6257', '5.6257', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87605, '2022-06-01', 2916, 82915, 5328, 56227, '1.0000', '14.4392', '14.4392', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87606, '2022-06-01', 2602, 82916, 5328, 54368, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87607, '2022-06-01', 9794, 82917, 5328, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '66.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87608, '2022-06-01', 1407, 82918, 5328, 56258, '1.0000', '18.0109', '18.0109', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87609, '2022-06-01', 1406, 82919, 5328, 54411, '1.0000', '17.7401', '17.7401', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87610, '2022-06-01', 1908, 82920, 5328, 5510, '1.0000', '1.7500', '1.7500', '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 (87611, '2022-06-01', 1845, 82921, 5328, 55763, '1.0000', '21.1002', '21.1002', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87612, '2022-06-01', 1602, 82922, 5328, 56216, '1.0000', '6.9796', '6.9796', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87613, '2022-06-01', 2296, 82923, 5329, 42978, '1.0000', '12.2973', '12.2973', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87614, '2022-06-01', 1335, 82924, 5329, 49466, '4.0000', '0.8780', '0.8780', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87615, '2022-06-01', 2295, 82925, 5330, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87616, '2022-06-01', 7357, 82926, 5330, NULL, '1.0000', '12.2000', '12.2000', '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 (87617, '2022-06-01', 1532, 82927, 5330, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87618, '2022-06-01', 2315, 82928, 5330, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '181.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87619, '2022-06-01', 1555, 82929, 5331, 52276, '1.0000', '66.7624', '66.7624', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87620, '2022-06-01', 8068, 82930, 5331, 56742, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87621, '2022-06-01', 1812, 82931, 5331, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87622, '2022-06-01', 1837, 82932, 5332, 56452, '1.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87623, '2022-06-02', 1501, 82933, 5333, NULL, '1.0000', '0.9225', '0.9225', '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 (87624, '2022-06-02', 7554, 82934, 5333, NULL, '10.0000', '16.0000', '16.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 (87625, '2022-06-02', 2302, 82935, 5333, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87626, '2022-06-02', 7713, 82936, 5333, 55577, '2.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '30.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87627, '2022-06-02', 2352, 82937, 5333, NULL, '4.0000', '126.2588', '126.2588', '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 (87628, '2022-06-02', 2089, 82938, 5333, 53952, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87629, '2022-06-02', 1969, 82939, 5333, NULL, '1.0000', '4.3300', '4.3300', '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 (87630, '2022-06-02', 1520, 82940, 5333, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87631, '2022-06-02', 2169, 82941, 5333, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87632, '2022-06-02', 1867, 82942, 5333, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87633, '2022-06-02', 1837, 82943, 5333, 56452, '2.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87634, '2022-06-02', 1787, 82944, 5333, NULL, '1.0000', '0.5000', '0.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 (87635, '2022-06-02', 2379, 82945, 5333, NULL, '1.0000', '-3.0170', '-3.0170', '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 (87636, '2022-06-02', 7671, 82946, 5333, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87637, '2022-06-02', 1863, 82947, 5333, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87638, '2022-06-02', 1669, 82948, 5333, 23163, '14.0000', '9.3000', '9.3000', '9.5000', '9.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 (87639, '2022-06-02', 1730, 82949, 5333, 25009, '1.0000', '24.1993', '24.1993', '32.0000', '32.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 (87640, '2022-06-02', 9695, 82950, 5334, NULL, '1.0000', '4.5000', '4.5000', '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 (87641, '2022-06-02', 2315, 82951, 5334, 2735, '-413.0000', '0.3300', '0.3300', '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 (87642, '2022-06-02', 2315, 82951, 5334, NULL, '415.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-415.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87643, '2022-06-02', 7518, 82952, 5334, NULL, '1.0000', '7.8200', '7.8200', '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 (87644, '2022-06-02', 8900, 82953, 5334, NULL, '9.0000', '16.4000', '16.4000', '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 (87645, '2022-06-02', 9565, 82954, 5334, NULL, '1.0000', '4.5000', '4.5000', '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 (87646, '2022-06-02', 7787, 82955, 5334, NULL, '1.0000', '10.9000', '10.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 (87647, '2022-06-02', 9747, 82956, 5334, NULL, '1.0000', '0.6500', '0.6500', '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 (87648, '2022-06-02', 9245, 82957, 5334, NULL, '1.0000', '6.6100', '6.6100', '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 (87649, '2022-06-02', 7547, 82958, 5334, NULL, '4.0000', '0.0000', '0.0000', '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 (87650, '2022-06-02', 7694, 82959, 5334, NULL, '1.0000', '4.7900', '4.7900', '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 (87651, '2022-06-02', 8925, 82960, 5334, NULL, '1.0000', '2.4000', '2.4000', '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 (87652, '2022-06-02', 7524, 82961, 5334, NULL, '1.0000', '11.9500', '11.9500', '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 (87653, '2022-06-02', 8264, 82962, 5334, NULL, '1.0000', '25.0700', '25.0700', '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 (87654, '2022-06-02', 9735, 82963, 5334, 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 (87655, '2022-06-02', 7672, 82964, 5334, NULL, '1.0000', '1.0200', '1.0200', '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 (87656, '2022-06-02', 1935, 82965, 5334, 5586, '-106.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 (87657, '2022-06-02', 1935, 82965, 5334, NULL, '107.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-107.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87658, '2022-06-02', 7807, 82966, 5334, NULL, '21.0000', '2.1600', '2.1600', '3.0000', '3.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87659, '2022-06-02', 7743, 82967, 5334, NULL, '1.0000', '1.3100', '1.3100', '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 (87660, '2022-06-02', 9021, 82968, 5334, NULL, '1.0000', '6.7300', '6.7300', '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 (87661, '2022-06-02', 7650, 82969, 5334, NULL, '1.0000', '0.8900', '0.8900', '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 (87662, '2022-06-02', 2332, 82970, 5334, 3835, '-14.0000', '5.8900', '5.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 (87663, '2022-06-02', 2332, 82970, 5334, NULL, '15.0000', '5.8900', '5.8900', '10.5000', '10.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 (87664, '2022-06-02', 7641, 82971, 5334, NULL, '1.0000', '1.9000', '1.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 (87665, '2022-06-02', 8814, 82972, 5334, NULL, '10.0000', '5.0000', '5.0000', '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 (87666, '2022-06-02', 7557, 82973, 5334, 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 (87667, '2022-06-02', 7514, 82974, 5334, NULL, '1.0000', '2.2500', '2.2500', '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 (87668, '2022-06-02', 2100, 82975, 5334, 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 (87669, '2022-06-02', 8097, 82976, 5334, NULL, '1.0000', '3.4000', '3.4000', '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 (87670, '2022-06-02', 7412, 82977, 5334, NULL, '1.0000', '1.5200', '1.5200', '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 (87671, '2022-06-02', 7954, 82978, 5334, 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 (87672, '2022-06-02', 1501, 82979, 5335, NULL, '1.0000', '0.9225', '0.9225', '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 (87673, '2022-06-02', 1532, 82980, 5335, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87674, '2022-06-02', 2315, 82981, 5335, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '179.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87675, '2022-06-02', 2135, 82982, 5335, NULL, '1.0000', '-0.2588', '-0.2588', '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 (87676, '2022-06-02', 9735, 82983, 5335, 54873, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87677, '2022-06-02', 2315, 82984, 5335, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '180.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87678, '2022-06-02', 2649, 82985, 5336, 11163, '-5.0000', '71.9188', '71.9188', '131.0000', '131.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87679, '2022-06-02', 2649, 82985, 5336, NULL, '6.0000', '71.9188', '71.9188', '131.0000', '131.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 (87680, '2022-06-02', 2486, 82986, 5336, 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 (87681, '2022-06-02', 1310, 82987, 5336, NULL, '2.0000', '0.3700', '0.3700', '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 (87682, '2022-06-02', 1881, 82988, 5336, NULL, '1.0000', '105.0000', '105.0000', '141.0000', '141.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87683, '2022-06-02', 2307, 82989, 5336, 2960, '-2.0000', '118.9901', '118.9901', '240.0000', '240.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87684, '2022-06-02', 2307, 82989, 5336, NULL, '3.0000', '118.9901', '118.9901', '240.0000', '240.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 (87685, '2022-06-02', 1606, 82990, 5336, 8728, '-10.0000', '4.6200', '4.6200', '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 (87686, '2022-06-02', 1606, 82990, 5336, NULL, '20.0000', '4.6200', '4.6200', '6.5000', '6.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 (87687, '2022-06-02', 8086, 82991, 5336, NULL, '1.0000', '9.3000', '9.3000', '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 (87688, '2022-06-02', 9643, 82992, 5336, 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 (87689, '2022-06-02', 1699, 82993, 5336, 559, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '0.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 (87690, '2022-06-02', 1763, 82994, 5336, NULL, '1.0000', '4.6900', '4.6900', '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 (87691, '2022-06-02', 7411, 82995, 5336, NULL, '1.0000', '1.3500', '1.3500', '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 (87692, '2022-06-02', 1812, 82996, 5336, 8224, '-94.0000', '7.8900', '7.8900', '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 (87693, '2022-06-02', 1812, 82996, 5336, NULL, '95.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87694, '2022-06-02', 9558, 82997, 5336, 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 (87695, '2022-06-02', 1736, 82998, 5336, 7382, '-8.0000', '-6.2282', '-6.2282', '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 (87696, '2022-06-02', 1736, 82998, 5336, NULL, '10.0000', '-6.2282', '-6.2282', '50.0000', '50.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 (87697, '2022-06-02', 1426, 82999, 5336, 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 (87698, '2022-06-02', 1452, 83000, 5336, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87699, '2022-06-02', 2061, 83001, 5336, 2164, '-6.0000', '10.9800', '10.9800', '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 (87700, '2022-06-02', 2061, 83001, 5336, NULL, '8.0000', '10.9800', '10.9800', '17.5000', '17.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 (87701, '2022-06-02', 2582, 83002, 5336, NULL, '1.0000', '11.5000', '11.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 (87702, '2022-06-02', 1620, 83003, 5336, 8955, '-59.0000', '408.8259', '408.8259', '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 (87703, '2022-06-02', 1620, 83003, 5336, NULL, '60.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87704, '2022-06-02', 2315, 83004, 5336, 2735, '-415.0000', '0.3300', '0.3300', '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 (87705, '2022-06-02', 2315, 83004, 5336, NULL, '416.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-416.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87706, '2022-06-02', 2900, 83005, 5336, 18346, '-1.0000', '20.0000', '20.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 (87707, '2022-06-02', 2900, 83005, 5336, NULL, '2.0000', '20.0000', '20.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 (87708, '2022-06-02', 1532, 83006, 5336, 20609, '3.0000', '0.8000', '0.8000', '2.0000', '2.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 (87709, '2022-06-02', 1873, 83007, 5336, 16245, '-11.0000', '11.9500', '11.9500', '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 (87710, '2022-06-02', 1873, 83007, 5336, NULL, '12.0000', '11.9500', '11.9500', '20.0000', '20.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 (87711, '2022-06-02', 1837, 83008, 5336, 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 (87712, '2022-06-02', 2169, 83009, 5336, 10737, '-142.0000', '3.8397', '3.8397', '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 (87713, '2022-06-02', 2169, 83009, 5336, NULL, '143.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-143.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87714, '2022-06-02', 1665, 83010, 5336, 3235, '-113.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 (87715, '2022-06-02', 1665, 83010, 5336, NULL, '114.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87716, '2022-06-02', 2250, 83011, 5336, 2787, '-15.0000', '6.8900', '6.8900', '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 (87717, '2022-06-02', 2250, 83011, 5336, NULL, '16.0000', '6.8900', '6.8900', '12.5000', '12.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 (87718, '2022-06-02', 9929, 83012, 5337, 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 (87719, '2022-06-02', 8183, 83013, 5338, 55890, '2.0000', '-1179.5325', '-1179.5325', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87720, '2022-06-02', 8169, 83014, 5338, NULL, '1.0000', '7.9800', '7.9800', '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 (87721, '2022-06-02', 2061, 83015, 5338, NULL, '1.0000', '11.3365', '11.3365', '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 (87722, '2022-06-02', 2270, 83016, 5338, 55948, '1.0000', '6.1250', '6.1250', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87723, '2022-06-02', 8965, 83017, 5339, NULL, '1.0000', '-263.2470', '-263.2470', '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 (87724, '2022-06-02', 7444, 83018, 5339, NULL, '1.0000', '-10.6533', '-10.6533', '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 (87725, '2022-06-02', 7411, 83019, 5339, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87726, '2022-06-02', 7385, 83020, 5339, 56578, '5.0000', '9.0049', '9.0049', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87727, '2022-06-02', 7806, 83021, 5339, NULL, '5.0000', '69.7811', '69.7811', '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 (87728, '2022-06-02', 8079, 83022, 5339, 56706, '1.0000', '9.1732', '9.1732', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87729, '2022-06-02', 7608, 83023, 5339, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87730, '2022-06-02', 9809, 83024, 5339, 56552, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87731, '2022-06-02', 9092, 83025, 5339, 52527, '4.0000', '0.3175', '0.3175', '0.5000', '0.5000', '99.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87732, '2022-06-02', 7933, 83026, 5339, NULL, '2.0000', '0.3245', '0.3245', '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 (87733, '2022-06-02', 2648, 83027, 5339, NULL, '1.0000', '3.5337', '3.5337', '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 (87734, '2022-06-02', 7954, 83028, 5339, NULL, '4.0000', '-15800.4581', '-15800.4581', '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 (87735, '2022-06-02', 9817, 83029, 5339, 55968, '1.0000', '4.9075', '4.9075', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87736, '2022-06-02', 7518, 83030, 5339, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87737, '2022-06-02', 7347, 83031, 5339, 50689, '1.0000', '21.9000', '21.9000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87738, '2022-06-02', 1755, 83032, 5339, 46223, '1.0000', '6.0622', '6.0622', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87739, '2022-06-02', 8017, 83033, 5339, 51835, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87740, '2022-06-02', 3045, 83034, 5339, 56521, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87741, '2022-06-02', 9817, 83035, 5339, 55968, '1.0000', '4.9075', '4.9075', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87742, '2022-06-02', 2506, 83036, 5339, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87743, '2022-06-02', 7558, 83037, 5339, NULL, '2.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87744, '2022-06-02', 9868, 83038, 5339, 54289, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87745, '2022-06-02', 9274, 83039, 5339, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '14.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87746, '2022-06-02', 9716, 83040, 5339, 56571, '1.0000', '4.8737', '4.8737', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87747, '2022-06-02', 9734, 83041, 5339, 54140, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '45.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87748, '2022-06-02', 8878, 83042, 5339, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87749, '2022-06-02', 7763, 83043, 5339, 54507, '1.0000', '2.6132', '2.6132', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87750, '2022-06-02', 7913, 83044, 5339, NULL, '2.0000', '0.4833', '0.4833', '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 (87751, '2022-06-02', 7674, 83045, 5339, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87752, '2022-06-02', 8925, 83046, 5339, 56178, '1.0000', '3.1779', '3.1779', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87753, '2022-06-02', 8738, 83047, 5339, 48858, '20.0000', '4.0000', '4.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87754, '2022-06-02', 8466, 83048, 5339, NULL, '30.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '-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 (87755, '2022-06-02', 7794, 83049, 5339, 53922, '1.0000', '9.8556', '9.8556', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87756, '2022-06-02', 7411, 83050, 5339, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87757, '2022-06-02', 9274, 83051, 5339, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '14.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87758, '2022-06-02', 7557, 83052, 5339, NULL, '10.0000', '0.5000', '0.5000', '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 (87759, '2022-06-02', 9456, 83053, 5339, 54750, '1.0000', '3.4942', '3.4942', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87760, '2022-06-02', 7722, 83054, 5339, NULL, '1.0000', '3.5000', '3.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 (87761, '2022-06-02', 2315, 83055, 5339, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87762, '2022-06-02', 9503, 83056, 5339, 56528, '2.0000', '1.2700', '1.2700', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87763, '2022-06-02', 2451, 83057, 5339, 53761, '1.0000', '10.4123', '10.4123', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87764, '2022-06-02', 1332, 83058, 5339, 52470, '1.0000', '-73.0510', '-73.0510', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87765, '2022-06-02', 7685, 83059, 5339, NULL, '1.0000', '31.2000', '31.2000', '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 (87766, '2022-06-02', 2297, 83060, 5339, NULL, '1.0000', '7.9071', '7.9071', '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 (87767, '2022-06-02', 7899, 83061, 5339, 56491, '1.0000', '3.3880', '3.3880', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87768, '2022-06-02', 7753, 83062, 5339, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87769, '2022-06-02', 7509, 83063, 5339, 56702, '1.0000', '10.9499', '10.9499', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87770, '2022-06-02', 8063, 83064, 5339, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '88.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87771, '2022-06-02', 7708, 83065, 5339, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87772, '2022-06-02', 9272, 83066, 5339, NULL, '2.0000', '3.1000', '3.1000', '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 (87773, '2022-06-02', 7900, 83067, 5339, NULL, '1.0000', '2.5000', '2.5000', '3.2000', '3.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 (87774, '2022-06-02', 8359, 83068, 5339, 56703, '1.0000', '343.9975', '343.9975', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87775, '2022-06-02', 8408, 83069, 5339, 50693, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87776, '2022-06-02', 7832, 83070, 5339, 54475, '1.0000', '12.9545', '12.9545', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87777, '2022-06-02', 1935, 83071, 5340, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87778, '2022-06-02', 7411, 83072, 5340, NULL, '1.0000', '1.3013', '1.3013', '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 (87779, '2022-06-02', 3058, 83073, 5340, NULL, '1.0000', '-23.3000', '-23.3000', '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 (87780, '2022-06-02', 2250, 83074, 5340, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87781, '2022-06-02', 8068, 83075, 5340, NULL, '1.0000', '8.7900', '8.7900', '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 (87782, '2022-06-02', 3044, 83076, 5340, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '25.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 (87783, '2022-06-02', 1688, 83077, 5340, 56456, '1.0000', '21.6067', '21.6067', '31.5000', '31.5000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87784, '2022-06-02', 9762, 83078, 5340, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '33.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87785, '2022-06-02', 7353, 83079, 5340, NULL, '2.0000', '0.1900', '0.1900', '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 (87786, '2022-06-02', 2245, 83080, 5340, 51375, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87787, '2022-06-02', 1905, 83081, 5340, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87788, '2022-06-02', 9695, 83082, 5340, 56629, '3.0000', '5.1869', '5.1869', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87789, '2022-06-02', 7411, 83083, 5340, NULL, '1.0000', '1.3013', '1.3013', '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 (87790, '2022-06-02', 1935, 83084, 5340, 48471, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87791, '2022-06-02', 7713, 83085, 5340, 55577, '3.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '27.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87792, '2022-06-02', 7411, 83086, 5340, NULL, '1.0000', '1.3013', '1.3013', '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 (87793, '2022-06-02', 3058, 83087, 5340, NULL, '1.0000', '-23.3000', '-23.3000', '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 (87794, '2022-06-02', 1904, 83088, 5340, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87795, '2022-06-02', 2169, 83089, 5340, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87796, '2022-06-02', 1486, 83090, 5340, 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 (87797, '2022-06-02', 7411, 83091, 5340, NULL, '2.0000', '1.3013', '1.3013', '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 (87798, '2022-06-02', 1904, 83092, 5340, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87799, '2022-06-02', 8444, 83093, 5340, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87800, '2022-06-02', 2315, 83094, 5340, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '177.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87801, '2022-06-02', 8878, 83095, 5340, 56424, '2.0000', '3.8136', '3.8136', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87802, '2022-06-02', 1410, 83096, 5340, NULL, '1.0000', '48.8052', '48.8052', '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 (87803, '2022-06-02', 1812, 83097, 5340, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87804, '2022-06-02', 8677, 83098, 5340, NULL, '2.0000', '496.2705', '496.2705', '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 (87805, '2022-06-02', 9204, 83099, 5340, NULL, '1.0000', '14.1514', '14.1514', '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 (87806, '2022-06-02', 7583, 83100, 5340, NULL, '1.0000', '4.0000', '4.0000', '0.9900', '0.9900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87807, '2022-06-02', 7514, 83101, 5340, NULL, '2.0000', '2.2500', '2.2500', '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 (87808, '2022-06-02', 9897, 83102, 5340, 55685, '14.0000', '1.7300', '1.7300', '2.3000', '2.3000', '36.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87809, '2022-06-02', 1942, 83103, 5340, 55687, '1.0000', '20.0151', '20.0151', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87810, '2022-06-02', 8677, 83104, 5340, NULL, '2.0000', '496.2705', '496.2705', '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 (87811, '2022-06-02', 9754, 83105, 5340, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87812, '2022-06-02', 9747, 83106, 5340, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87813, '2022-06-02', 2821, 83107, 5340, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87814, '2022-06-02', 2916, 83108, 5340, NULL, '1.0000', '538.9192', '538.9192', '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 (87815, '2022-06-02', 1969, 83109, 5340, NULL, '1.0000', '4.3300', '4.3300', '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 (87816, '2022-06-02', 2315, 83110, 5340, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '177.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87817, '2022-06-02', 1470, 83111, 5340, 55598, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87818, '2022-06-02', 7555, 83112, 5340, 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 (87819, '2022-06-02', 9735, 83113, 5340, 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 (87820, '2022-06-02', 7411, 83114, 5340, NULL, '1.0000', '1.3013', '1.3013', '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 (87821, '2022-06-02', 7672, 83115, 5341, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87822, '2022-06-02', 1812, 83116, 5341, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87823, '2022-06-02', 2821, 83117, 5341, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87824, '2022-06-02', 7483, 83118, 5341, NULL, '1.0000', '0.4200', '0.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 (87825, '2022-06-02', 9735, 83119, 5341, 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 (87826, '2022-06-02', 1787, 83120, 5341, NULL, '1.0000', '0.5000', '0.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 (87827, '2022-06-02', 2169, 83121, 5341, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87828, '2022-06-02', 1501, 83122, 5341, NULL, '1.0000', '0.9225', '0.9225', '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 (87829, '2022-06-02', 1783, 83123, 5341, 55661, '3.0000', '12.2246', '12.2246', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87830, '2022-06-02', 1855, 83124, 5341, NULL, '1.0000', '1.4820', '1.4820', '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 (87831, '2022-06-02', 1969, 83125, 5341, NULL, '1.0000', '4.3300', '4.3300', '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 (87832, '2022-06-02', 8155, 83126, 5341, NULL, '1.0000', '65.0000', '65.0000', '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 (87833, '2022-06-02', 2066, 83127, 5341, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87834, '2022-06-02', 1650, 83128, 5341, 56431, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87835, '2022-06-02', 7411, 83129, 5341, NULL, '2.0000', '1.3013', '1.3013', '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 (87836, '2022-06-02', 7713, 83130, 5341, 55577, '1.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '26.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87837, '2022-06-02', 1812, 83131, 5341, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87838, '2022-06-02', 2169, 83132, 5341, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87839, '2022-06-02', 2315, 83133, 5341, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '174.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87840, '2022-06-02', 9496, 83134, 5341, NULL, '2.0000', '-1.0000', '-1.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 (87841, '2022-06-02', 3029, 83135, 5341, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87842, '2022-06-02', 1855, 83136, 5341, NULL, '1.0000', '1.4820', '1.4820', '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 (87843, '2022-06-02', 7459, 83137, 5341, NULL, '5.0000', '-15.3118', '-15.3118', '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 (87844, '2022-06-02', 9891, 83138, 5341, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87845, '2022-06-02', 9736, 83139, 5341, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87846, '2022-06-02', 1696, 83140, 5341, 52156, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87847, '2022-06-02', 2020, 83141, 5341, 55715, '1.0000', '1309.0500', '1309.0500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87848, '2022-06-02', 7411, 83142, 5341, NULL, '1.0000', '1.3013', '1.3013', '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 (87849, '2022-06-02', 9754, 83143, 5341, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87850, '2022-06-02', 2344, 83144, 5341, 55659, '1.0000', '33.6171', '33.6171', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87851, '2022-06-02', 1590, 83145, 5341, 55929, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87852, '2022-06-02', 2906, 83146, 5341, NULL, '2.0000', '2.6000', '2.6000', '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 (87853, '2022-06-02', 8183, 83147, 5341, NULL, '2.0000', '-1179.5325', '-1179.5325', '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 (87854, '2022-06-02', 2270, 83148, 5341, 55948, '1.0000', '6.1250', '6.1250', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87855, '2022-06-02', 2061, 83149, 5341, NULL, '1.0000', '11.3365', '11.3365', '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 (87856, '2022-06-02', 8169, 83150, 5341, NULL, '1.0000', '7.9800', '7.9800', '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 (87857, '2022-06-02', 2363, 83151, 5341, 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 (87858, '2022-06-02', 9089, 83152, 5341, NULL, '1.0000', '-9.3999', '-9.3999', '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 (87859, '2022-06-02', 2289, 83153, 5341, 56470, '4.0000', '0.3611', '0.3611', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87860, '2022-06-02', 2758, 83154, 5341, NULL, '1.0000', '5.4000', '5.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 (87861, '2022-06-02', 7506, 83155, 5341, NULL, '1.0000', '15.0000', '15.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 (87862, '2022-06-02', 2295, 83156, 5341, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87863, '2022-06-02', 2252, 83157, 5341, 55622, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87864, '2022-06-02', 8444, 83158, 5341, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87865, '2022-06-02', 8183, 83159, 5341, NULL, '1.0000', '-1179.5325', '-1179.5325', '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 (87866, '2022-06-02', 1751, 83160, 5341, 56435, '1.0000', '5.6063', '5.6063', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87867, '2022-06-02', 7334, 83161, 5341, NULL, '3.0000', '8.1600', '8.1600', '13.5000', '13.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 (87868, '2022-06-02', 7514, 83162, 5341, NULL, '1.0000', '2.2500', '2.2500', '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 (87869, '2022-06-02', 2315, 83163, 5341, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '173.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87870, '2022-06-02', 1521, 83164, 5341, NULL, '2.0000', '10.1500', '10.1500', '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 (87871, '2022-06-02', 9204, 83165, 5341, NULL, '1.0000', '14.1514', '14.1514', '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 (87872, '2022-06-02', 2315, 83166, 5341, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '175.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87873, '2022-06-02', 9274, 83167, 5342, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '12.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87874, '2022-06-02', 8017, 83168, 5342, 51835, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87875, '2022-06-02', 7913, 83169, 5342, NULL, '2.0000', '0.4833', '0.4833', '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 (87876, '2022-06-02', 9271, 83170, 5342, 56566, '1.0000', '1.8173', '1.8173', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87877, '2022-06-02', 8304, 83171, 5342, 56546, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87878, '2022-06-02', 8702, 83172, 5342, NULL, '1.0000', '3.6700', '3.6700', '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 (87879, '2022-06-02', 1855, 83173, 5342, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87880, '2022-06-02', 1846, 83174, 5342, 56675, '1.0000', '12.8117', '12.8117', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87881, '2022-06-02', 9734, 83175, 5342, 54140, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87882, '2022-06-02', 1846, 83176, 5342, 56675, '1.0000', '12.8117', '12.8117', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87883, '2022-06-02', 8539, 83177, 5342, 54276, '1.0000', '1.9333', '1.9333', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87884, '2022-06-02', 8849, 83178, 5342, NULL, '1.0000', '1.0700', '1.0700', '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 (87885, '2022-06-02', 7753, 83179, 5342, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87886, '2022-06-02', 1689, 83180, 5343, 55873, '1.0000', '13.8448', '13.8448', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87887, '2022-06-02', 1863, 83181, 5343, 56730, '2.0000', '1.3350', '1.3350', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87888, '2022-06-02', 7609, 83182, 5343, NULL, '1.0000', '4.3300', '4.3300', '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 (87889, '2022-06-02', 2315, 83183, 5343, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (87890, '2022-06-02', 7746, 83184, 5343, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87891, '2022-06-02', 2317, 83185, 5343, 54996, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '13.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87892, '2022-06-02', 1650, 83186, 5343, 56213, '1.0000', '14.9457', '14.9457', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87893, '2022-06-02', 1695, 83187, 5343, 55875, '1.0000', '30.9217', '30.9217', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87894, '2022-06-02', 1867, 83188, 5343, NULL, '1.0000', '9.0894', '9.0894', '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 (87895, '2022-06-02', 2256, 83189, 5343, 55791, '1.0000', '15.2117', '15.2117', '22.0000', '22.0000', '6.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87896, '2022-06-02', 7769, 83190, 5343, 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 (87897, '2022-06-02', 2061, 83191, 5343, 56746, '1.0000', '12.3044', '12.3044', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87898, '2022-06-02', 2135, 83192, 5343, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87899, '2022-06-02', 1482, 83193, 5343, 55517, '1.0000', '39.3189', '39.3189', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87900, '2022-06-02', 2790, 83194, 5343, 19044, '1.0000', '39.9000', '39.9000', '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 (87901, '2022-06-02', 1765, 83195, 5343, 56225, '2.0000', '6.1597', '6.1597', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87902, '2022-06-02', 7368, 83196, 5343, NULL, '1.0000', '14.7500', '14.7500', '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 (87903, '2022-06-02', 9770, 83197, 5343, 55793, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87904, '2022-06-02', 2320, 83198, 5343, 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 (87905, '2022-06-02', 7819, 83199, 5343, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87906, '2022-06-02', 9940, 83200, 5343, 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 (87907, '2022-06-02', 2381, 83201, 5343, 56209, '1.0000', '10.3177', '10.3177', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87908, '2022-06-02', 2038, 83202, 5343, 56350, '1.0000', '12.2141', '12.2141', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87909, '2022-06-02', 9750, 83203, 5343, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '32.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87910, '2022-06-02', 7672, 83204, 5343, NULL, '1.0000', '1.0200', '1.0200', '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 (87911, '2022-06-02', 1695, 83205, 5343, 55875, '1.0000', '30.9217', '30.9217', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87912, '2022-06-02', 7674, 83206, 5343, 50863, '1.0000', '0.8448', '0.8448', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87913, '2022-06-02', 8444, 83207, 5344, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87914, '2022-06-02', 7777, 83208, 5344, NULL, '1.0000', '9.5000', '9.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 (87915, '2022-06-02', 8979, 83209, 5344, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87916, '2022-06-02', 2366, 83210, 5344, NULL, '2.0000', '-51.4778', '-51.4778', '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 (87917, '2022-06-02', 9726, 83211, 5344, 55630, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87918, '2022-06-02', 1529, 83212, 5344, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87919, '2022-06-02', 9747, 83213, 5344, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87920, '2022-06-02', 7743, 83214, 5344, NULL, '2.0000', '7.3900', '7.3900', '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 (87921, '2022-06-02', 2315, 83215, 5344, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '168.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87922, '2022-06-02', 8208, 83216, 5344, NULL, '1.0000', '33.0000', '33.0000', '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 (87923, '2022-06-02', 2260, 83217, 5344, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87924, '2022-06-02', 1521, 83218, 5344, NULL, '1.0000', '10.1500', '10.1500', '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 (87925, '2022-06-02', 2169, 83219, 5344, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87926, '2022-06-02', 9747, 83220, 5344, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87927, '2022-06-02', 8208, 83221, 5345, NULL, '1.0000', '33.0000', '33.0000', '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 (87928, '2022-06-03', 2315, 83222, 5346, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (87929, '2022-06-03', 2916, 83223, 5346, 56227, '1.0000', '14.4392', '14.4392', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87930, '2022-06-03', 2221, 83224, 5346, 55865, '1.0000', '16.4253', '16.4253', '26.0000', '26.0000', '10.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87931, '2022-06-03', 2169, 83225, 5346, 56231, '1.0000', '1.2550', '1.2550', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87932, '2022-06-03', 1493, 83226, 5346, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87933, '2022-06-03', 2295, 83227, 5346, 3134, '2.0000', '0.7000', '0.7000', '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 (87934, '2022-06-03', 2242, 83228, 5346, 55869, '2.0000', '0.7167', '0.7167', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87935, '2022-06-03', 7703, 83229, 5346, NULL, '1.0000', '0.6500', '0.6500', '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 (87936, '2022-06-03', 1590, 83230, 5346, 49546, '2.0000', '1.7700', '1.7700', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87937, '2022-06-03', 1863, 83231, 5346, 56730, '2.0000', '1.3350', '1.3350', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87938, '2022-06-03', 1646, 83232, 5346, 55474, '1.0000', '5.2012', '5.2012', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87939, '2022-06-03', 1306, 83233, 5346, 56248, '2.0000', '2.0627', '2.0627', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87940, '2022-06-03', 1787, 83234, 5346, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87941, '2022-06-03', 8878, 83235, 5346, 54596, '1.0000', '0.9455', '0.9455', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87942, '2022-06-03', 1529, 83236, 5346, 48787, '1.0000', '73262601.6059', '73262601.6059', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87943, '2022-06-03', 1432, 83237, 5346, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87944, '2022-06-03', 1425, 83238, 5346, 56257, '1.0000', '6.9142', '6.9142', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87945, '2022-06-03', 7459, 83239, 5346, 55783, '10.0000', '4.5753', '4.5753', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87946, '2022-06-03', 2906, 83240, 5346, 18670, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (87947, '2022-06-03', 1536, 83241, 5346, 56237, '10.0000', '40.6232', '40.6232', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87948, '2022-06-03', 2221, 83242, 5346, 55865, '1.0000', '16.4253', '16.4253', '26.0000', '26.0000', '10.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87949, '2022-06-03', 1726, 83243, 5346, 6804, '1.0000', '90.0000', '90.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 (87950, '2022-06-03', 2466, 83244, 5346, 49018, '1.0000', '15.2520', '15.2520', '19.1400', '19.1400', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87951, '2022-06-03', 8746, 83245, 5346, 55447, '1.0000', '129.8458', '129.8458', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87952, '2022-06-03', 9902, 83246, 5347, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87953, '2022-06-03', 8711, 83247, 5347, NULL, '1.0000', '5.1000', '5.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 (87954, '2022-06-03', 1969, 83248, 5347, NULL, '1.0000', '4.3300', '4.3300', '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 (87955, '2022-06-03', 8825, 83249, 5347, NULL, '1.0000', '7.4000', '7.4000', '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 (87956, '2022-06-03', 8477, 83250, 5347, NULL, '1.0000', '12.2000', '12.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 (87957, '2022-06-03', 1501, 83251, 5347, NULL, '1.0000', '0.9225', '0.9225', '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 (87958, '2022-06-03', 2986, 83252, 5347, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87959, '2022-06-03', 8457, 83253, 5347, 45165, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87960, '2022-06-03', 1520, 83254, 5347, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87961, '2022-06-03', 2315, 83255, 5347, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '167.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87962, '2022-06-03', 1969, 83256, 5347, NULL, '1.0000', '4.3300', '4.3300', '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 (87963, '2022-06-03', 1912, 83257, 5347, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87964, '2022-06-03', 1410, 83258, 5347, NULL, '1.0000', '48.8052', '48.8052', '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 (87965, '2022-06-03', 2565, 83259, 5347, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87966, '2022-06-03', 9634, 83260, 5347, 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 (87967, '2022-06-03', 1863, 83261, 5347, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87968, '2022-06-03', 1307, 83262, 5347, NULL, '1.0000', '-11.7284', '-11.7284', '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 (87969, '2022-06-03', 2821, 83263, 5347, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87970, '2022-06-03', 1961, 83264, 5347, 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 (87971, '2022-06-03', 1837, 83265, 5347, 56452, '2.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87972, '2022-06-03', 8084, 83266, 5347, 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 (87973, '2022-06-03', 1787, 83267, 5347, NULL, '1.0000', '0.5000', '0.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 (87974, '2022-06-03', 9496, 83268, 5347, NULL, '1.0000', '-1.0000', '-1.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 (87975, '2022-06-03', 1488, 83269, 5347, 55624, '1.0000', '4.2938', '4.2938', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87976, '2022-06-03', 1863, 83270, 5347, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87977, '2022-06-03', 2964, 83271, 5347, NULL, '1.0000', '8.7347', '8.7347', '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 (87978, '2022-06-03', 8773, 83272, 5347, NULL, '1.0000', '3.8300', '3.8300', '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 (87979, '2022-06-03', 7500, 83273, 5347, 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 (87980, '2022-06-03', 9214, 83274, 5347, NULL, '1.0000', '11.3525', '11.3525', '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 (87981, '2022-06-03', 2893, 83275, 5347, NULL, '1.0000', '6.4400', '6.4400', '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 (87982, '2022-06-03', 2169, 83276, 5347, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87983, '2022-06-03', 7756, 83277, 5347, NULL, '1.0000', '2.5000', '2.5000', '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 (87984, '2022-06-03', 2565, 83278, 5347, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87985, '2022-06-03', 8183, 83279, 5347, NULL, '1.0000', '-1179.5325', '-1179.5325', '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 (87986, '2022-06-03', 2607, 83280, 5347, NULL, '6.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-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 (87987, '2022-06-03', 1529, 83281, 5347, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87988, '2022-06-03', 9827, 83282, 5347, NULL, '1.0000', '16.6600', '16.6600', '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 (87989, '2022-06-03', 1521, 83283, 5347, NULL, '1.0000', '10.1500', '10.1500', '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 (87990, '2022-06-03', 7756, 83284, 5347, NULL, '1.0000', '2.5000', '2.5000', '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 (87991, '2022-06-03', 7593, 83285, 5348, NULL, '1.0000', '2.4500', '2.4500', '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 (87992, '2022-06-03', 7832, 83286, 5348, NULL, '1.0000', '10.0000', '10.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 (87993, '2022-06-03', 7397, 83287, 5348, NULL, '1.0000', '74.1500', '74.1500', '131.5000', '131.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87994, '2022-06-03', 8036, 83288, 5348, NULL, '1.0000', '6.7300', '6.7300', '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 (87995, '2022-06-03', 8193, 83289, 5348, NULL, '1.0000', '25.8000', '25.8000', '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 (87996, '2022-06-03', 7560, 83290, 5348, NULL, '1.0000', '33.0200', '33.0200', '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 (87997, '2022-06-03', 7383, 83291, 5348, NULL, '1.0000', '58.8600', '58.8600', '78.0000', '78.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87998, '2022-06-03', 7848, 83292, 5348, NULL, '1.0000', '1.3500', '1.3500', '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 (87999, '2022-06-03', 7743, 83293, 5348, NULL, '1.0000', '1.3100', '1.3100', '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 (88000, '2022-06-03', 1620, 83294, 5348, 8955, '-60.0000', '408.8259', '408.8259', '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 (88001, '2022-06-03', 1620, 83294, 5348, NULL, '64.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88002, '2022-06-03', 8063, 83295, 5348, NULL, '2.0000', '1.6000', '1.6000', '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 (88003, '2022-06-03', 9018, 83296, 5348, NULL, '1.0000', '6.9600', '6.9600', '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 (88004, '2022-06-03', 9839, 83297, 5348, NULL, '1.0000', '15.0200', '15.0200', '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 (88005, '2022-06-03', 9900, 83298, 5348, NULL, '1.0000', '3.7200', '3.7200', '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 (88006, '2022-06-03', 9742, 83299, 5348, 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 (88007, '2022-06-03', 7641, 83300, 5348, NULL, '2.0000', '1.9000', '1.9000', '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 (88008, '2022-06-03', 8444, 83301, 5348, NULL, '1.0000', '1.6000', '1.6000', '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 (88009, '2022-06-03', 7674, 83302, 5348, NULL, '1.0000', '1.3000', '1.3000', '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 (88010, '2022-06-03', 7520, 83303, 5348, NULL, '1.0000', '9.6000', '9.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 (88011, '2022-06-03', 8145, 83304, 5348, NULL, '1.0000', '28.0000', '28.0000', '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 (88012, '2022-06-03', 9734, 83305, 5348, NULL, '4.0000', '0.3200', '0.3200', '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 (88013, '2022-06-03', 8054, 83306, 5348, NULL, '2.0000', '16.0000', '16.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 (88014, '2022-06-03', 8878, 83307, 5348, NULL, '3.0000', '6.6700', '6.6700', '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 (88015, '2022-06-03', 2315, 83308, 5348, 2735, '-416.0000', '0.3300', '0.3300', '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 (88016, '2022-06-03', 2315, 83308, 5348, NULL, '417.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-417.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88017, '2022-06-03', 8454, 83309, 5348, NULL, '1.0000', '4.1500', '4.1500', '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 (88018, '2022-06-03', 7703, 83310, 5348, NULL, '1.0000', '22.9900', '22.9900', '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 (88019, '2022-06-03', 2069, 83311, 5348, 5571, '-10.0000', '2.0400', '2.0400', '9.5000', '9.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 (88020, '2022-06-03', 2069, 83311, 5348, NULL, '11.0000', '2.0400', '2.0400', '9.5000', '9.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 (88021, '2022-06-03', 1501, 83312, 5348, NULL, '1.0000', '2.0500', '2.0500', '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 (88022, '2022-06-03', 7317, 83313, 5348, NULL, '1.0000', '19.5500', '19.5500', '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 (88023, '2022-06-03', 8457, 83314, 5348, NULL, '1.0000', '4.5000', '4.5000', '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 (88024, '2022-06-03', 9817, 83315, 5348, NULL, '1.0000', '3.9000', '3.9000', '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 (88025, '2022-06-03', 7743, 83316, 5348, NULL, '1.0000', '1.3100', '1.3100', '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 (88026, '2022-06-03', 7412, 83317, 5348, NULL, '1.0000', '1.5200', '1.5200', '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 (88027, '2022-06-03', 1837, 83318, 5348, 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 (88028, '2022-06-03', 7514, 83319, 5348, NULL, '1.0000', '2.2500', '2.2500', '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 (88029, '2022-06-03', 8878, 83320, 5348, NULL, '2.0000', '6.6700', '6.6700', '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 (88030, '2022-06-03', 8933, 83321, 5348, 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 (88031, '2022-06-03', 9809, 83322, 5349, NULL, '1.0000', '5.7900', '5.7900', '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 (88032, '2022-06-03', 8924, 83323, 5349, NULL, '1.0000', '4.5000', '4.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 (88033, '2022-06-03', 7469, 83324, 5349, NULL, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88034, '2022-06-03', 9827, 83325, 5350, NULL, '1.0000', '16.6600', '16.6600', '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 (88035, '2022-06-03', 2315, 83326, 5350, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '164.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88036, '2022-06-03', 1884, 83327, 5350, 55897, '1.0000', '17.4104', '17.4104', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88037, '2022-06-03', 9747, 83328, 5350, 55918, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88038, '2022-06-03', 2169, 83329, 5350, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88039, '2022-06-03', 1910, 83330, 5350, 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 (88040, '2022-06-03', 9747, 83331, 5350, 55918, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88041, '2022-06-03', 2237, 83332, 5350, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88042, '2022-06-03', 8085, 83333, 5350, NULL, '3.0000', '14.0000', '14.0000', '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 (88043, '2022-06-03', 8193, 83334, 5350, NULL, '1.0000', '6.9800', '6.9800', '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 (88044, '2022-06-03', 9762, 83335, 5350, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '32.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88045, '2022-06-03', 2315, 83336, 5350, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '166.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88046, '2022-06-03', 7473, 83337, 5350, 39817, '4.0000', '0.1679', '0.1679', '0.7000', '0.7000', '45.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88047, '2022-06-03', 2315, 83338, 5350, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '166.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88048, '2022-06-03', 2228, 83339, 5350, 53636, '1.0000', '30.0000', '30.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88049, '2022-06-03', 9695, 83340, 5350, 56629, '1.0000', '5.1869', '5.1869', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88050, '2022-06-03', 2916, 83341, 5350, NULL, '1.0000', '538.9192', '538.9192', '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 (88051, '2022-06-03', 1340, 83342, 5350, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88052, '2022-06-03', 8740, 83343, 5350, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88053, '2022-06-03', 2169, 83344, 5350, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88054, '2022-06-03', 7756, 83345, 5350, NULL, '1.0000', '2.5000', '2.5000', '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 (88055, '2022-06-03', 1969, 83346, 5350, NULL, '1.0000', '4.3300', '4.3300', '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 (88056, '2022-06-03', 7514, 83347, 5350, NULL, '1.0000', '2.2500', '2.2500', '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 (88057, '2022-06-03', 7917, 83348, 5350, NULL, '1.0000', '5.0000', '5.0000', '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 (88058, '2022-06-03', 2316, 83349, 5350, 56625, '1.0000', '50.6700', '50.6700', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88059, '2022-06-03', 1779, 83350, 5350, 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 (88060, '2022-06-03', 2169, 83351, 5350, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88061, '2022-06-03', 7411, 83352, 5350, NULL, '1.0000', '1.3013', '1.3013', '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 (88062, '2022-06-03', 7780, 83353, 5351, NULL, '1.0000', '11.6000', '11.6000', '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 (88063, '2022-06-03', 2284, 83354, 5351, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (88064, '2022-06-03', 7385, 83355, 5351, NULL, '2.0000', '2.0000', '2.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 (88065, '2022-06-03', 1827, 83356, 5351, NULL, '10.0000', '0.2000', '0.2000', '0.3000', '0.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 (88066, '2022-06-03', 7509, 83357, 5351, 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 (88067, '2022-06-03', 9791, 83358, 5351, NULL, '2.0000', '0.9000', '0.9000', '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 (88068, '2022-06-03', 1837, 83359, 5351, 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 (88069, '2022-06-03', 7641, 83360, 5351, NULL, '1.0000', '1.9000', '1.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 (88070, '2022-06-03', 8033, 83361, 5351, NULL, '2.0000', '27.7000', '27.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 (88071, '2022-06-03', 7473, 83362, 5351, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88072, '2022-06-03', 7459, 83363, 5351, NULL, '1.0000', '2.3500', '2.3500', '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 (88073, '2022-06-03', 7558, 83364, 5351, NULL, '1.0000', '1.9700', '1.9700', '3.7000', '3.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 (88074, '2022-06-03', 7411, 83365, 5351, NULL, '2.0000', '1.3500', '1.3500', '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 (88075, '2022-06-03', 7623, 83366, 5351, NULL, '1.0000', '47.0000', '47.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 (88076, '2022-06-03', 7848, 83367, 5351, NULL, '1.0000', '1.3500', '1.3500', '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 (88077, '2022-06-03', 8041, 83368, 5351, NULL, '1.0000', '0.4700', '0.4700', '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 (88078, '2022-06-03', 9092, 83369, 5351, NULL, '4.0000', '5.2900', '5.2900', '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 (88079, '2022-06-03', 9715, 83370, 5351, NULL, '1.0000', '9.4000', '9.4000', '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 (88080, '2022-06-03', 7482, 83371, 5351, NULL, '1.0000', '3.0500', '3.0500', '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 (88081, '2022-06-03', 7666, 83372, 5351, NULL, '1.0000', '3.6000', '3.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 (88082, '2022-06-03', 2315, 83373, 5351, 2735, '-417.0000', '0.3300', '0.3300', '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 (88083, '2022-06-03', 2315, 83373, 5351, NULL, '418.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-418.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88084, '2022-06-03', 8065, 83374, 5351, NULL, '1.0000', '32.0000', '32.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 (88085, '2022-06-03', 7905, 83375, 5351, 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 (88086, '2022-06-03', 7905, 83376, 5351, 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 (88087, '2022-06-03', 9578, 83377, 5351, NULL, '1.0000', '8.0000', '8.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 (88088, '2022-06-03', 7457, 83378, 5351, 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 (88089, '2022-06-03', 1760, 83379, 5351, 93, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '21.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 (88090, '2022-06-03', 8202, 83380, 5351, NULL, '1.0000', '1.6600', '1.6600', '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 (88091, '2022-06-03', 7432, 83381, 5351, NULL, '1.0000', '14.7000', '14.7000', '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 (88092, '2022-06-03', 7779, 83382, 5351, 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 (88093, '2022-06-03', 9817, 83383, 5351, NULL, '2.0000', '3.9000', '3.9000', '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 (88094, '2022-06-03', 8452, 83384, 5351, NULL, '1.0000', '11.5000', '11.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 (88095, '2022-06-03', 7457, 83385, 5351, 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 (88096, '2022-06-03', 9821, 83386, 5351, NULL, '1.0000', '1.4500', '1.4500', '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 (88097, '2022-06-03', 7709, 83387, 5351, NULL, '2.0000', '3.5000', '3.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 (88098, '2022-06-03', 7743, 83388, 5351, NULL, '1.0000', '1.3100', '1.3100', '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 (88099, '2022-06-03', 7730, 83389, 5351, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (88100, '2022-06-03', 7657, 83390, 5351, NULL, '1.0000', '11.3200', '11.3200', '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 (88101, '2022-06-03', 7959, 83391, 5351, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88102, '2022-06-03', 7980, 83392, 5351, NULL, '5.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (88103, '2022-06-03', 8878, 83393, 5351, NULL, '2.0000', '6.6700', '6.6700', '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 (88104, '2022-06-03', 7318, 83394, 5351, NULL, '1.0000', '13.4400', '13.4400', '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 (88105, '2022-06-03', 1947, 83395, 5351, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '48.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 (88106, '2022-06-03', 7871, 83396, 5351, NULL, '14.0000', '6.0000', '6.0000', '9.5000', '9.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 (88107, '2022-06-03', 7952, 83397, 5351, 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 (88108, '2022-06-03', 2295, 83398, 5351, 2954, '-9.0000', '0.9600', '0.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 (88109, '2022-06-03', 2295, 83398, 5351, NULL, '12.0000', '0.9600', '0.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 (88110, '2022-06-03', 7514, 83399, 5351, NULL, '2.0000', '2.2500', '2.2500', '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 (88111, '2022-06-03', 8359, 83400, 5351, 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 (88112, '2022-06-03', 7674, 83401, 5351, NULL, '1.0000', '1.3000', '1.3000', '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 (88113, '2022-06-03', 7592, 83402, 5351, NULL, '1.0000', '6.8000', '6.8000', '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 (88114, '2022-06-03', 2169, 83403, 5352, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88115, '2022-06-03', 1667, 83404, 5352, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88116, '2022-06-03', 7641, 83405, 5352, NULL, '1.0000', '1.9000', '1.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 (88117, '2022-06-04', 8979, 83406, 5353, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88118, '2022-06-04', 2379, 83407, 5353, NULL, '1.0000', '-3.0170', '-3.0170', '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 (88119, '2022-06-04', 1602, 83408, 5353, 56469, '2.0000', '7.0635', '7.0635', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88120, '2022-06-04', 1680, 83409, 5353, 48168, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88121, '2022-06-04', 2275, 83410, 5353, 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 (88122, '2022-06-04', 2030, 83411, 5353, 54840, '1.0000', '11.3333', '11.3333', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88123, '2022-06-04', 2242, 83412, 5353, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88124, '2022-06-04', 1760, 83413, 5353, NULL, '3.0000', '1.5900', '1.5900', '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 (88125, '2022-06-04', 2410, 83414, 5353, 55671, '1.0000', '4.5240', '4.5240', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88126, '2022-06-04', 1314, 83415, 5353, 55930, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88127, '2022-06-04', 1647, 83416, 5353, 54874, '1.0000', '-8.0033', '-8.0033', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88128, '2022-06-04', 1866, 83417, 5353, 48696, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88129, '2022-06-04', 1306, 83418, 5353, 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 (88130, '2022-06-04', 2102, 83419, 5353, 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 (88131, '2022-06-04', 1863, 83420, 5353, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88132, '2022-06-04', 1369, 83421, 5353, 55569, '1.0000', '7.2000', '7.2000', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88133, '2022-06-04', 2029, 83422, 5353, 54839, '1.0000', '13.2500', '13.2500', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88134, '2022-06-04', 1980, 83423, 5353, 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 (88135, '2022-06-04', 2169, 83424, 5353, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88136, '2022-06-04', 9751, 83425, 5354, 51989, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 432);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88137, '2022-06-04', 2009, 83426, 5354, 39999, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88138, '2022-06-04', 2010, 83427, 5354, 44155, '1.0000', '1.0456', '1.0456', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88139, '2022-06-04', 1519, 83428, 5354, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88140, '2022-06-04', 1863, 83429, 5354, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88141, '2022-06-04', 2169, 83430, 5354, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88142, '2022-06-04', 2379, 83431, 5354, NULL, '1.0000', '-3.0170', '-3.0170', '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 (88143, '2022-06-04', 1871, 83432, 5354, NULL, '10.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (88144, '2022-06-04', 2476, 83433, 5354, 24875, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '4.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 (88145, '2022-06-04', 1602, 83434, 5354, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88146, '2022-06-04', 1623, 83435, 5355, 33342, '1.0000', '141.2000', '141.2000', '186.0000', '186.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88147, '2022-06-04', 1651, 83436, 5355, NULL, '1.0000', '8.2255', '8.2255', '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 (88148, '2022-06-04', 2506, 83437, 5356, NULL, '1.0000', '2.9584', '2.9584', '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 (88149, '2022-06-04', 1668, 83438, 5356, 53212, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88150, '2022-06-04', 2275, 83439, 5356, 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 (88151, '2022-06-04', 2916, 83440, 5356, NULL, '1.0000', '538.9192', '538.9192', '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 (88152, '2022-06-04', 1863, 83441, 5356, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88153, '2022-06-04', 2410, 83442, 5356, 55671, '1.0000', '4.5240', '4.5240', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88154, '2022-06-04', 2095, 83443, 5356, NULL, '1.0000', '0.5000', '0.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 (88155, '2022-06-04', 8165, 83444, 5356, 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 (88156, '2022-06-04', 2108, 83445, 5356, 55935, '1.0000', '0.8250', '0.8250', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88157, '2022-06-04', 8146, 83446, 5356, 52182, '1.0000', '4.4100', '4.4100', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88158, '2022-06-04', 1519, 83447, 5357, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88159, '2022-06-04', 1935, 83448, 5358, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88160, '2022-06-04', 9747, 83449, 5358, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88161, '2022-06-04', 9738, 83450, 5359, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88162, '2022-06-04', 2275, 83451, 5359, 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 (88163, '2022-06-04', 1771, 83452, 5359, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88164, '2022-06-04', 9424, 83453, 5359, 51684, '1.0000', '-12.4625', '-12.4625', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88165, '2022-06-04', 9941, 83454, 5360, 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 (88166, '2022-06-04', 1863, 83455, 5361, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88167, '2022-06-04', 8065, 83456, 5362, NULL, '1.0000', '32.0000', '32.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 (88168, '2022-06-04', 7385, 83457, 5362, 56578, '2.0000', '9.0049', '9.0049', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88169, '2022-06-04', 7514, 83458, 5362, NULL, '1.0000', '17929.5233', '17929.5233', '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 (88170, '2022-06-04', 7674, 83459, 5362, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88171, '2022-06-04', 8918, 83460, 5362, 56192, '3.0000', '3.2476', '3.2476', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88172, '2022-06-04', 7412, 83461, 5362, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88173, '2022-06-04', 7672, 83462, 5362, NULL, '1.0000', '5.9200', '5.9200', '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 (88174, '2022-06-04', 2284, 83463, 5362, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88175, '2022-06-04', 8063, 83464, 5362, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '87.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88176, '2022-06-04', 2315, 83465, 5362, 56594, '3.0000', '0.7474', '0.7474', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88177, '2022-06-04', 7762, 83466, 5362, 54082, '1.0000', '-0.2334', '-0.2334', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88178, '2022-06-04', 9274, 83467, 5362, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88179, '2022-06-04', 7368, 83468, 5362, 56512, '1.0000', '4.5684', '4.5684', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88180, '2022-06-04', 7709, 83469, 5362, NULL, '2.0000', '448.3483', '448.3483', '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 (88181, '2022-06-04', 2315, 83470, 5362, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88182, '2022-06-04', 7473, 83471, 5362, 56553, '7.0000', '75.1643', '75.1643', '0.7000', '0.7000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88183, '2022-06-04', 7547, 83472, 5362, NULL, '2.0000', '0.0000', '0.0000', '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 (88184, '2022-06-04', 1827, 83473, 5362, NULL, '4.0000', '0.2000', '0.2000', '0.3000', '0.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 (88185, '2022-06-04', 1837, 83474, 5362, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88186, '2022-06-04', 8243, 83475, 5362, NULL, '1.0000', '1.1400', '1.1400', '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 (88187, '2022-06-04', 7411, 83476, 5362, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88188, '2022-06-04', 7905, 83477, 5362, NULL, '1.0000', '3.9963', '3.9963', '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 (88189, '2022-06-04', 7514, 83478, 5362, NULL, '1.0000', '17929.5233', '17929.5233', '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 (88190, '2022-06-04', 7641, 83479, 5362, 56190, '3.0000', '6.9740', '6.9740', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88191, '2022-06-04', 9791, 83480, 5362, 50485, '4.0000', '0.9000', '0.9000', '1.5000', '1.5000', '109.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88192, '2022-06-04', 9461, 83481, 5362, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88193, '2022-06-04', 8359, 83482, 5362, 56703, '1.0000', '343.9975', '343.9975', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88194, '2022-06-04', 9580, 83483, 5362, 40430, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88195, '2022-06-04', 2154, 83484, 5362, 43435, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88196, '2022-06-04', 8969, 83485, 5362, NULL, '1.0000', '2.0000', '2.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 (88197, '2022-06-04', 7316, 83486, 5362, 55145, '10.0000', '0.9165', '0.9165', '1.3000', '1.3000', '40.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88198, '2022-06-04', 7482, 83487, 5362, 56021, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '26.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88199, '2022-06-04', 8677, 83488, 5362, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88200, '2022-06-04', 7820, 83489, 5362, NULL, '1.0000', '-296.8250', '-296.8250', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88201, '2022-06-04', 7411, 83490, 5362, 56187, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88202, '2022-06-04', 8037, 83491, 5362, 56487, '2.0000', '73.5833', '73.5833', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88203, '2022-06-04', 9499, 83492, 5362, 54447, '1.0000', '26.5000', '26.5000', '33.0000', '33.0000', '3.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88204, '2022-06-04', 7558, 83493, 5362, NULL, '2.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88205, '2022-06-04', 7913, 83494, 5362, NULL, '2.0000', '0.4833', '0.4833', '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 (88206, '2022-06-04', 7905, 83495, 5362, NULL, '1.0000', '3.9963', '3.9963', '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 (88207, '2022-06-04', 7852, 83496, 5362, NULL, '1.0000', '-53.7735', '-53.7735', '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 (88208, '2022-06-04', 7518, 83497, 5362, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88209, '2022-06-04', 7954, 83498, 5362, NULL, '4.0000', '-15800.4581', '-15800.4581', '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 (88210, '2022-06-04', 7743, 83499, 5362, NULL, '1.0000', '919779.6853', '919779.6853', '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 (88211, '2022-06-04', 7917, 83500, 5363, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '101.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88212, '2022-06-04', 7712, 83501, 5363, NULL, '1.0000', '-367.8736', '-367.8736', '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 (88213, '2022-06-04', 1827, 83502, 5363, NULL, '10.0000', '0.2000', '0.2000', '0.3000', '0.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 (88214, '2022-06-04', 8017, 83503, 5363, 51835, '5.0000', '0.6000', '0.6000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88215, '2022-06-04', 7780, 83504, 5363, NULL, '1.0000', '-383.6863', '-383.6863', '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 (88216, '2022-06-04', 1846, 83505, 5363, 56675, '1.0000', '12.8117', '12.8117', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88217, '2022-06-04', 7674, 83506, 5363, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88218, '2022-06-04', 7385, 83507, 5363, 56578, '2.0000', '9.0049', '9.0049', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88219, '2022-06-04', 7753, 83508, 5363, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88220, '2022-06-04', 8140, 83509, 5363, NULL, '1.0000', '6.0500', '6.0500', '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 (88221, '2022-06-04', 9794, 83510, 5363, 50668, '4.0000', '1.0800', '1.0800', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88222, '2022-06-04', 7444, 83511, 5363, NULL, '1.0000', '-10.6533', '-10.6533', '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 (88223, '2022-06-04', 7509, 83512, 5363, 56702, '1.0000', '10.9499', '10.9499', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88224, '2022-06-04', 9868, 83513, 5363, 54289, '2.0000', '1.0000', '1.0000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88225, '2022-06-04', 7889, 83514, 5363, NULL, '1.0000', '-8.6571', '-8.6571', '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 (88226, '2022-06-04', 8666, 83515, 5363, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88227, '2022-06-04', 8878, 83516, 5363, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88228, '2022-06-04', 9092, 83517, 5363, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88229, '2022-06-04', 7411, 83518, 5363, 56187, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88230, '2022-06-04', 7707, 83519, 5363, 56671, '1.0000', '26.7232', '26.7232', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88231, '2022-06-04', 2503, 83520, 5363, 36674, '1.0000', '15.0899', '15.0899', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88232, '2022-06-04', 8360, 83521, 5363, 56589, '2.0000', '3.2288', '3.2288', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88233, '2022-06-04', 8135, 83522, 5363, NULL, '1.0000', '5.8940', '5.8940', '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 (88234, '2022-06-04', 7590, 83523, 5363, NULL, '1.0000', '6.0509', '6.0509', '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 (88235, '2022-06-04', 9656, 83524, 5364, NULL, '1.0000', '33.0000', '33.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 (88236, '2022-06-04', 2681, 83525, 5364, 56388, '2.0000', '15.5000', '15.5000', '24.5000', '24.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88237, '2022-06-04', 8740, 83526, 5364, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88238, '2022-06-04', 8074, 83527, 5364, NULL, '1.0000', '3.2800', '3.2800', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88239, '2022-06-04', 1969, 83528, 5364, NULL, '1.0000', '4.3300', '4.3300', '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 (88240, '2022-06-04', 2293, 83529, 5364, NULL, '3.0000', '-17.4320', '-17.4320', '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 (88241, '2022-06-04', 2315, 83530, 5364, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '160.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88242, '2022-06-04', 2135, 83531, 5364, NULL, '1.0000', '-0.2588', '-0.2588', '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 (88243, '2022-06-04', 2275, 83532, 5364, 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 (88244, '2022-06-04', 7785, 83533, 5364, 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 (88245, '2022-06-04', 9204, 83534, 5364, NULL, '1.0000', '14.1514', '14.1514', '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 (88246, '2022-06-04', 2916, 83535, 5364, NULL, '1.0000', '538.9192', '538.9192', '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 (88247, '2022-06-04', 2730, 83536, 5364, 51643, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88248, '2022-06-04', 8208, 83537, 5364, NULL, '1.0000', '33.0000', '33.0000', '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 (88249, '2022-06-04', 7857, 83538, 5364, NULL, '1.0000', '15.1300', '15.1300', '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 (88250, '2022-06-04', 1672, 83539, 5364, 56440, '4.0000', '4.2348', '4.2348', '5.5000', '5.5000', '20.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88251, '2022-06-04', 8677, 83540, 5364, NULL, '1.0000', '496.2705', '496.2705', '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 (88252, '2022-06-04', 7612, 83541, 5364, NULL, '1.0000', '1.6100', '1.6100', '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 (88253, '2022-06-04', 2777, 83542, 5364, 55916, '1.0000', '3.7508', '3.7508', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88254, '2022-06-04', 9775, 83543, 5364, 56400, '1.0000', '9.6292', '9.6292', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88255, '2022-06-04', 9736, 83544, 5364, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88256, '2022-06-04', 1873, 83545, 5364, 54894, '1.0000', '15.6100', '15.6100', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88257, '2022-06-04', 2098, 83546, 5364, NULL, '2.0000', '1.0000', '1.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 (88258, '2022-06-04', 3029, 83547, 5364, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88259, '2022-06-04', 9736, 83548, 5364, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88260, '2022-06-04', 1640, 83549, 5364, NULL, '1.0000', '3.0496', '3.0496', '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 (88261, '2022-06-04', 2511, 83550, 5364, 54960, '1.0000', '13.8000', '13.8000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88262, '2022-06-04', 1935, 83551, 5364, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88263, '2022-06-04', 9736, 83552, 5364, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88264, '2022-06-04', 1577, 83553, 5364, NULL, '1.0000', '1.6245', '1.6245', '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 (88265, '2022-06-04', 2821, 83554, 5364, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88266, '2022-06-04', 1554, 83555, 5364, 43258, '1.0000', '2.5497', '2.5497', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88267, '2022-06-04', 1640, 83556, 5364, NULL, '1.0000', '3.0496', '3.0496', '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 (88268, '2022-06-04', 8084, 83557, 5364, 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 (88269, '2022-06-04', 7318, 83558, 5364, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88270, '2022-06-04', 2315, 83559, 5364, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '160.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88271, '2022-06-04', 2293, 83560, 5364, NULL, '3.0000', '-17.4320', '-17.4320', '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 (88272, '2022-06-04', 7318, 83561, 5364, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88273, '2022-06-04', 7880, 83562, 5364, NULL, '1.0000', '-0.6500', '-0.6500', '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 (88274, '2022-06-04', 1643, 83563, 5364, 56432, '1.0000', '41.6400', '41.6400', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88275, '2022-06-04', 7641, 83564, 5364, NULL, '1.0000', '1.9000', '1.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 (88276, '2022-06-04', 1687, 83565, 5364, 56467, '1.0000', '14.1684', '14.1684', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88277, '2022-06-04', 7612, 83566, 5364, NULL, '1.0000', '1.6100', '1.6100', '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 (88278, '2022-06-04', 2169, 83567, 5364, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88279, '2022-06-04', 2821, 83568, 5364, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88280, '2022-06-04', 7411, 83569, 5364, NULL, '1.0000', '1.3013', '1.3013', '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 (88281, '2022-06-04', 8686, 83570, 5364, NULL, '1.0000', '7.9900', '7.9900', '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 (88282, '2022-06-04', 9735, 83571, 5364, 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 (88283, '2022-06-04', 7518, 83572, 5365, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88284, '2022-06-04', 7672, 83573, 5365, NULL, '2.0000', '5.9200', '5.9200', '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 (88285, '2022-06-04', 8677, 83574, 5365, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '80.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88286, '2022-06-04', 8097, 83575, 5365, 56696, '3.0000', '16.0236', '16.0236', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88287, '2022-06-04', 7333, 83576, 5365, NULL, '1.0000', '-0.5856', '-0.5856', '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 (88288, '2022-06-04', 8626, 83577, 5365, NULL, '1.0000', '7.8175', '7.8175', '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 (88289, '2022-06-04', 2511, 83578, 5365, 43433, '1.0000', '8.7930', '8.7930', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88290, '2022-06-04', 7592, 83579, 5365, 56573, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88291, '2022-06-04', 7704, 83580, 5365, NULL, '1.0000', '-1.5625', '-1.5625', '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 (88292, '2022-06-04', 2506, 83581, 5365, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88293, '2022-06-04', 1935, 83582, 5365, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '128.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88294, '2022-06-04', 8949, 83583, 5365, 52026, '1.0000', '6.7080', '6.7080', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88295, '2022-06-04', 2473, 83584, 5365, NULL, '1.0000', '12.0000', '12.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 (88296, '2022-06-04', 2315, 83585, 5365, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88297, '2022-06-04', 8878, 83586, 5365, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88298, '2022-06-04', 7459, 83587, 5365, NULL, '10.0000', '2.9681', '2.9681', '4.0000', '4.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 (88299, '2022-06-04', 7915, 83588, 5365, NULL, '1.0000', '2.8000', '2.8000', '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 (88300, '2022-06-04', 9794, 83589, 5365, 50668, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88301, '2022-06-04', 9272, 83590, 5365, NULL, '1.0000', '3.1000', '3.1000', '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 (88302, '2022-06-04', 8186, 83591, 5365, 55979, '3.0000', '1.5626', '1.5626', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88303, '2022-06-04', 7925, 83592, 5365, 54297, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88304, '2022-06-04', 7641, 83593, 5365, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88305, '2022-06-04', 2100, 83594, 5365, NULL, '1.0000', '2.0800', '2.0800', '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 (88306, '2022-06-04', 8979, 83595, 5366, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88307, '2022-06-04', 2315, 83596, 5366, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '157.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88308, '2022-06-04', 7917, 83597, 5366, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88309, '2022-06-04', 1744, 83598, 5366, NULL, '1.0000', '138.0750', '138.0750', '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 (88310, '2022-06-04', 8607, 83599, 5366, NULL, '1.0000', '-3.0000', '-3.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 (88311, '2022-06-04', 1819, 83600, 5366, 56391, '1.0000', '7.2433', '7.2433', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88312, '2022-06-04', 1855, 83601, 5366, NULL, '1.0000', '1.4820', '1.4820', '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 (88313, '2022-06-04', 1307, 83602, 5366, NULL, '1.0000', '-11.7284', '-11.7284', '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 (88314, '2022-06-04', 1519, 83603, 5366, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88315, '2022-06-04', 7411, 83604, 5366, NULL, '1.0000', '1.3013', '1.3013', '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 (88316, '2022-06-04', 1760, 83605, 5366, NULL, '1.0000', '1.5900', '1.5900', '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 (88317, '2022-06-04', 2221, 83606, 5366, NULL, '1.0000', '12.6522', '12.6522', '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 (88318, '2022-06-04', 7743, 83607, 5366, NULL, '1.0000', '7.3900', '7.3900', '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 (88319, '2022-06-04', 2315, 83608, 5366, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '157.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88320, '2022-06-04', 2821, 83609, 5366, 56393, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88321, '2022-06-04', 1702, 83610, 5366, NULL, '1.0000', '10.8300', '10.8300', '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 (88322, '2022-06-04', 2916, 83611, 5366, NULL, '1.0000', '538.9192', '538.9192', '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 (88323, '2022-06-04', 9902, 83612, 5366, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88324, '2022-06-04', 2394, 83613, 5366, 55156, '1.0000', '6.0000', '6.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88325, '2022-06-04', 2020, 83614, 5366, 55715, '1.0000', '1309.0500', '1309.0500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88326, '2022-06-04', 2582, 83615, 5366, 56420, '2.0000', '16.7500', '16.7500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88327, '2022-06-04', 2221, 83616, 5366, NULL, '1.0000', '12.6522', '12.6522', '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 (88328, '2022-06-04', 1572, 83617, 5366, 48878, '3.0000', '1.9556', '1.9556', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88329, '2022-06-04', 2491, 83618, 5366, 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 (88330, '2022-06-04', 2409, 83619, 5366, 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 (88331, '2022-06-04', 2256, 83620, 5366, NULL, '1.0000', '13.7060', '13.7060', '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 (88332, '2022-06-04', 2315, 83621, 5366, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '157.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88333, '2022-06-04', 2986, 83622, 5366, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88334, '2022-06-04', 1340, 83623, 5366, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88335, '2022-06-04', 1974, 83624, 5366, NULL, '2.0000', '12.0000', '12.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 (88336, '2022-06-04', 1601, 83625, 5366, 54158, '1.0000', '-0.1595', '-0.1595', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88337, '2022-06-04', 1601, 83625, 5366, NULL, '1.0000', '-0.1595', '-0.1595', '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 (88338, '2022-06-04', 1668, 83626, 5366, 51486, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88339, '2022-06-04', 9204, 83627, 5366, NULL, '2.0000', '14.1514', '14.1514', '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 (88340, '2022-06-04', 9817, 83628, 5366, 55531, '2.0000', '5.9800', '5.9800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88341, '2022-06-04', 1577, 83629, 5366, NULL, '1.0000', '1.6245', '1.6245', '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 (88342, '2022-06-04', 2916, 83630, 5366, NULL, '1.0000', '538.9192', '538.9192', '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 (88343, '2022-06-04', 2237, 83631, 5366, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88344, '2022-06-04', 8677, 83632, 5366, NULL, '2.0000', '496.2705', '496.2705', '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 (88345, '2022-06-04', 1888, 83633, 5366, 56371, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88346, '2022-06-04', 1432, 83634, 5366, 55690, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88347, '2022-06-04', 1787, 83635, 5366, NULL, '1.0000', '0.5000', '0.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 (88348, '2022-06-04', 2079, 83636, 5366, 55647, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88349, '2022-06-04', 2169, 83637, 5366, 55621, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88350, '2022-06-04', 2237, 83638, 5366, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88351, '2022-06-04', 7323, 83639, 5366, 55541, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88352, '2022-06-04', 2962, 83640, 5366, 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 (88353, '2022-06-04', 1812, 83641, 5366, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88354, '2022-06-04', 1935, 83642, 5366, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88355, '2022-06-04', 7784, 83643, 5366, NULL, '1.0000', '5.2300', '5.2300', '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 (88356, '2022-06-04', 7473, 83644, 5366, 39817, '4.0000', '0.1679', '0.1679', '0.7000', '0.7000', '41.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88357, '2022-06-04', 1602, 83645, 5367, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88358, '2022-06-04', 2444, 83646, 5367, 54824, '1.0000', '8.3626', '8.3626', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88359, '2022-06-04', 1999, 83647, 5367, 55101, '1.0000', '6.7734', '6.7734', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88360, '2022-06-04', 7386, 83648, 5367, 55937, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88361, '2022-06-04', 2169, 83649, 5367, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88362, '2022-06-04', 2302, 83650, 5367, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88363, '2022-06-04', 2916, 83651, 5367, NULL, '1.0000', '538.9192', '538.9192', '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 (88364, '2022-06-04', 2315, 83652, 5367, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '154.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88365, '2022-06-04', 1590, 83653, 5367, 55929, '4.0000', '2.2860', '2.2860', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88366, '2022-06-04', 2169, 83654, 5367, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88367, '2022-06-04', 1592, 83655, 5367, 55658, '1.0000', '39.3500', '39.3500', '52.0000', '52.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88368, '2022-06-04', 7579, 83656, 5367, NULL, '10.0000', '15.0000', '15.0000', '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 (88369, '2022-06-04', 2298, 83657, 5367, NULL, '1.0000', '-13.6702', '-13.6702', '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 (88370, '2022-06-04', 1763, 83658, 5367, 55644, '1.0000', '4.6631', '4.6631', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88371, '2022-06-04', 2506, 83659, 5367, NULL, '1.0000', '2.9584', '2.9584', '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 (88372, '2022-06-04', 1771, 83660, 5367, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88373, '2022-06-04', 1787, 83661, 5367, NULL, '1.0000', '0.5000', '0.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 (88374, '2022-06-04', 2607, 83662, 5368, NULL, '4.0000', '1.4000', '1.4000', '1.7000', '1.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 (88375, '2022-06-04', 8878, 83663, 5368, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88376, '2022-06-04', 7491, 83664, 5368, NULL, '1.0000', '30.2006', '30.2006', '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 (88377, '2022-06-04', 7379, 83665, 5368, 56670, '1.0000', '7.7994', '7.7994', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88378, '2022-06-04', 7518, 83666, 5368, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88379, '2022-06-04', 7824, 83667, 5368, NULL, '1.0000', '77263.6670', '77263.6670', '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 (88380, '2022-06-04', 7444, 83668, 5368, NULL, '1.0000', '-10.6533', '-10.6533', '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 (88381, '2022-06-04', 7980, 83669, 5368, NULL, '10.0000', '-31.7682', '-31.7682', '0.8000', '0.8000', '-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 (88382, '2022-06-04', 9747, 83670, 5369, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88383, '2022-06-04', 1519, 83671, 5370, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88384, '2022-06-04', 1529, 83672, 5370, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88385, '2022-06-04', 9747, 83673, 5370, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88386, '2022-06-04', 2315, 83674, 5370, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '153.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88387, '2022-06-04', 1632, 83675, 5371, 48670, '1.0000', '52.5000', '52.5000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88388, '2022-06-04', 9941, 83676, 5371, 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 (88389, '2022-06-05', 8878, 83677, 5372, 54503, '2.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88390, '2022-06-05', 7518, 83678, 5372, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88391, '2022-06-05', 2296, 83679, 5372, NULL, '1.0000', '12.8812', '12.8812', '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 (88392, '2022-06-05', 1332, 83680, 5372, 52470, '1.0000', '-73.0510', '-73.0510', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88393, '2022-06-05', 8965, 83681, 5372, NULL, '1.0000', '-263.2470', '-263.2470', '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 (88394, '2022-06-05', 9826, 83682, 5372, 54478, '1.0000', '14.4000', '14.4000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88395, '2022-06-05', 1935, 83683, 5372, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '127.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88396, '2022-06-05', 9695, 83684, 5372, 56716, '1.0000', '5.4759', '5.4759', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88397, '2022-06-05', 7514, 83685, 5372, NULL, '1.0000', '17929.5233', '17929.5233', '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 (88398, '2022-06-05', 8036, 83686, 5372, 51267, '1.0000', '6.7300', '6.7300', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88399, '2022-06-05', 8456, 83687, 5372, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88400, '2022-06-05', 8207, 83688, 5372, NULL, '1.0000', '0.0000', '0.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 (88401, '2022-06-05', 7925, 83689, 5372, 54297, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88402, '2022-06-05', 2769, 83690, 5372, 50988, '2.0000', '1.8760', '1.8760', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88403, '2022-06-05', 2069, 83691, 5372, 49278, '1.0000', '9.7800', '9.7800', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88404, '2022-06-05', 1837, 83692, 5372, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88405, '2022-06-05', 7674, 83693, 5372, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88406, '2022-06-05', 9819, 83694, 5372, 56652, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88407, '2022-06-05', 3074, 83695, 5372, 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 (88408, '2022-06-05', 9911, 83696, 5372, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88409, '2022-06-05', 7482, 83697, 5372, 56021, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '25.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88410, '2022-06-05', 7753, 83698, 5372, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88411, '2022-06-05', 7509, 83699, 5372, 56702, '1.0000', '10.9499', '10.9499', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88412, '2022-06-05', 1529, 83700, 5373, 56426, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88413, '2022-06-05', 8963, 83701, 5373, NULL, '1.0000', '9.9800', '9.9800', '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 (88414, '2022-06-05', 7514, 83702, 5373, NULL, '1.0000', '2.2500', '2.2500', '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 (88415, '2022-06-05', 2263, 83703, 5373, NULL, '1.0000', '2.4800', '2.4800', '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 (88416, '2022-06-05', 7886, 83704, 5373, NULL, '1.0000', '14.5000', '14.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 (88417, '2022-06-05', 1375, 83705, 5373, 56410, '1.0000', '39.1550', '39.1550', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88418, '2022-06-05', 2921, 83706, 5373, NULL, '1.0000', '4.9000', '4.9000', '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 (88419, '2022-06-05', 9735, 83707, 5373, 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 (88420, '2022-06-05', 1521, 83708, 5373, NULL, '5.0000', '10.1500', '10.1500', '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 (88421, '2022-06-05', 8595, 83709, 5373, NULL, '1.0000', '3.9640', '3.9640', '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 (88422, '2022-06-05', 2169, 83710, 5373, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88423, '2022-06-05', 8746, 83711, 5373, 45281, '1.0000', '3.2727', '3.2727', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88424, '2022-06-05', 1340, 83712, 5373, 55627, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88425, '2022-06-05', 2384, 83713, 5373, NULL, '2.0000', '0.1500', '0.1500', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88426, '2022-06-05', 8740, 83714, 5373, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88427, '2022-06-05', 7524, 83715, 5373, NULL, '1.0000', '11.9500', '11.9500', '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 (88428, '2022-06-05', 2775, 83716, 5373, 48626, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88429, '2022-06-05', 2169, 83717, 5373, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88430, '2022-06-05', 2521, 83718, 5373, 44152, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88431, '2022-06-05', 1787, 83719, 5373, NULL, '1.0000', '0.5000', '0.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 (88432, '2022-06-05', 7483, 83720, 5373, 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 (88433, '2022-06-05', 2821, 83721, 5373, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88434, '2022-06-05', 2293, 83722, 5373, NULL, '3.0000', '-17.4320', '-17.4320', '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 (88435, '2022-06-05', 2135, 83723, 5373, NULL, '2.0000', '-0.2588', '-0.2588', '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 (88436, '2022-06-05', 2821, 83724, 5373, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88437, '2022-06-05', 7514, 83725, 5373, NULL, '1.0000', '2.2500', '2.2500', '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 (88438, '2022-06-05', 2088, 83726, 5373, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88439, '2022-06-05', 2315, 83727, 5373, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '152.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88440, '2022-06-05', 1912, 83728, 5373, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88441, '2022-06-05', 1780, 83729, 5373, NULL, '1.0000', '95.5759', '95.5759', '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 (88442, '2022-06-05', 1744, 83730, 5373, NULL, '1.0000', '138.0750', '138.0750', '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 (88443, '2022-06-05', 2221, 83731, 5373, NULL, '1.0000', '12.6522', '12.6522', '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 (88444, '2022-06-05', 1935, 83732, 5373, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88445, '2022-06-05', 2295, 83733, 5373, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88446, '2022-06-05', 1519, 83734, 5373, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88447, '2022-06-05', 2315, 83735, 5373, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '152.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88448, '2022-06-05', 1912, 83736, 5373, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88449, '2022-06-05', 9735, 83737, 5373, 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 (88450, '2022-06-05', 2315, 83738, 5373, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '151.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88451, '2022-06-05', 1592, 83739, 5373, 54875, '1.0000', '39.3500', '39.3500', '52.0000', '52.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88452, '2022-06-05', 7744, 83740, 5373, NULL, '1.0000', '2.5833', '2.5833', '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 (88453, '2022-06-05', 7713, 83741, 5373, 55577, '3.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88454, '2022-06-05', 1519, 83742, 5373, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88455, '2022-06-05', 2821, 83743, 5373, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88456, '2022-06-05', 1867, 83744, 5373, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88457, '2022-06-05', 7524, 83745, 5373, NULL, '2.0000', '11.9500', '11.9500', '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 (88458, '2022-06-05', 2821, 83746, 5373, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88459, '2022-06-05', 1602, 83747, 5373, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88460, '2022-06-05', 1822, 83748, 5374, 8225, '-178.0000', '2.4000', '2.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 (88461, '2022-06-05', 1822, 83748, 5374, NULL, '198.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-198.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88462, '2022-06-05', 1557, 83749, 5374, 1628, '-11.0000', '7.9500', '7.9500', '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 (88463, '2022-06-05', 1557, 83749, 5374, NULL, '12.0000', '7.9500', '7.9500', '10.5000', '10.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 (88464, '2022-06-05', 7513, 83750, 5374, NULL, '1.0000', '7.1000', '7.1000', '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 (88465, '2022-06-05', 1840, 83751, 5374, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (88466, '2022-06-05', 1841, 83752, 5374, NULL, '1.0000', '142.5780', '142.5780', '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 (88467, '2022-06-05', 2289, 83753, 5374, 2949, '-178.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 (88468, '2022-06-05', 2289, 83753, 5374, NULL, '179.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-179.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88469, '2022-06-05', 2104, 83754, 5374, 1048, '1.0000', '0.2000', '0.2000', '0.5000', '0.5000', '283.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 (88470, '2022-06-05', 7523, 83755, 5374, NULL, '1.0000', '9.7500', '9.7500', '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 (88471, '2022-06-05', 7524, 83756, 5374, NULL, '1.0000', '11.9500', '11.9500', '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 (88472, '2022-06-05', 7444, 83757, 5374, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88473, '2022-06-05', 7748, 83758, 5374, NULL, '2.0000', '7.3000', '7.3000', '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 (88474, '2022-06-05', 7674, 83759, 5374, NULL, '1.0000', '1.3000', '1.3000', '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 (88475, '2022-06-05', 8454, 83760, 5374, NULL, '1.0000', '4.1500', '4.1500', '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 (88476, '2022-06-05', 9391, 83761, 5374, 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 (88477, '2022-06-05', 8134, 83762, 5374, NULL, '1.0000', '5.2300', '5.2300', '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 (88478, '2022-06-05', 9018, 83763, 5374, NULL, '1.0000', '6.9600', '6.9600', '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 (88479, '2022-06-05', 9695, 83764, 5374, NULL, '1.0000', '4.5000', '4.5000', '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 (88480, '2022-06-05', 7558, 83765, 5374, NULL, '2.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88481, '2022-06-05', 7552, 83766, 5374, NULL, '1.0000', '4.7500', '4.7500', '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 (88482, '2022-06-05', 9092, 83767, 5374, NULL, '2.0000', '5.2900', '5.2900', '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 (88483, '2022-06-05', 9735, 83768, 5374, 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 (88484, '2022-06-05', 9734, 83769, 5374, NULL, '1.0000', '0.3200', '0.3200', '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 (88485, '2022-06-05', 2279, 83770, 5374, 2939, '-20.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 (88486, '2022-06-05', 2279, 83770, 5374, NULL, '21.0000', '2.7000', '2.7000', '3.5000', '3.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88487, '2022-06-05', 7514, 83771, 5374, NULL, '1.0000', '2.2500', '2.2500', '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 (88488, '2022-06-05', 8918, 83772, 5374, NULL, '1.0000', '1.0400', '1.0400', '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 (88489, '2022-06-05', 9729, 83773, 5374, NULL, '3.0000', '0.6200', '0.6200', '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 (88490, '2022-06-05', 7411, 83774, 5374, NULL, '2.0000', '1.3500', '1.3500', '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 (88491, '2022-06-05', 7673, 83775, 5374, NULL, '1.0000', '16.8000', '16.8000', '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 (88492, '2022-06-05', 7350, 83776, 5374, NULL, '1.0000', '30.4000', '30.4000', '40.5000', '40.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88493, '2022-06-05', 1884, 83777, 5374, 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 (88494, '2022-06-05', 7630, 83778, 5374, NULL, '2.0000', '10.0000', '10.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 (88495, '2022-06-05', 7784, 83779, 5374, NULL, '2.0000', '4.2300', '4.2300', '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 (88496, '2022-06-05', 7642, 83780, 5374, NULL, '1.0000', '5.9200', '5.9200', '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 (88497, '2022-06-05', 7881, 83781, 5374, NULL, '1.0000', '2.3000', '2.3000', '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 (88498, '2022-06-05', 8101, 83782, 5374, 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 (88499, '2022-06-05', 7524, 83783, 5374, NULL, '2.0000', '11.9500', '11.9500', '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 (88500, '2022-06-05', 9791, 83784, 5374, NULL, '2.0000', '0.9000', '0.9000', '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 (88501, '2022-06-05', 7473, 83785, 5374, NULL, '10.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (88502, '2022-06-05', 7703, 83786, 5374, NULL, '2.0000', '22.9900', '22.9900', '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 (88503, '2022-06-05', 7522, 83787, 5374, NULL, '1.0000', '9.7000', '9.7000', '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 (88504, '2022-06-05', 7482, 83788, 5374, NULL, '1.0000', '3.0500', '3.0500', '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 (88505, '2022-06-05', 7672, 83789, 5374, NULL, '1.0000', '1.0200', '1.0200', '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 (88506, '2022-06-05', 7491, 83790, 5374, NULL, '1.0000', '5.6000', '5.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 (88507, '2022-06-05', 2506, 83791, 5374, 16244, '-20.0000', '3.4900', '3.4900', '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 (88508, '2022-06-05', 2506, 83791, 5374, NULL, '21.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88509, '2022-06-05', 9734, 83792, 5374, NULL, '4.0000', '0.3200', '0.3200', '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 (88510, '2022-06-05', 7781, 83793, 5374, NULL, '3.0000', '4.2500', '4.2500', '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 (88511, '2022-06-05', 9809, 83794, 5374, NULL, '1.0000', '5.7900', '5.7900', '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 (88512, '2022-06-05', 7711, 83795, 5374, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88513, '2022-06-05', 9088, 83796, 5374, NULL, '1.0000', '15.4000', '15.4000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88514, '2022-06-05', 7666, 83797, 5374, NULL, '1.0000', '3.6000', '3.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 (88515, '2022-06-05', 8878, 83798, 5374, NULL, '1.0000', '6.6700', '6.6700', '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 (88516, '2022-06-05', 7743, 83799, 5374, NULL, '2.0000', '1.3100', '1.3100', '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 (88517, '2022-06-05', 1340, 83800, 5374, 13005, '-8.0000', '2.7025', '2.7025', '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 (88518, '2022-06-05', 1340, 83800, 5374, NULL, '9.0000', '2.7025', '2.7025', '5.0000', '5.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 (88519, '2022-06-05', 7457, 83801, 5374, 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 (88520, '2022-06-05', 9900, 83802, 5374, NULL, '1.0000', '3.7200', '3.7200', '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 (88521, '2022-06-05', 7954, 83803, 5374, NULL, '2.0000', '3.0000', '3.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 (88522, '2022-06-05', 7653, 83804, 5374, 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 (88523, '2022-06-05', 1338, 83805, 5374, 16502, '-13.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 (88524, '2022-06-05', 1338, 83805, 5374, NULL, '14.0000', '4.0000', '4.0000', '6.5000', '6.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 (88525, '2022-06-05', 9579, 83806, 5374, 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 (88526, '2022-06-05', 8701, 83807, 5374, NULL, '1.0000', '5.6300', '5.6300', '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 (88527, '2022-06-05', 7482, 83808, 5374, NULL, '1.0000', '3.0500', '3.0500', '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 (88528, '2022-06-05', 8457, 83809, 5374, NULL, '1.0000', '4.5000', '4.5000', '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 (88529, '2022-06-05', 2289, 83810, 5374, 2949, '-178.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 (88530, '2022-06-05', 2289, 83810, 5374, NULL, '182.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-182.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88531, '2022-06-05', 7744, 83811, 5374, 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 (88532, '2022-06-05', 7514, 83812, 5374, NULL, '1.0000', '2.2500', '2.2500', '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 (88533, '2022-06-05', 7509, 83813, 5374, 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 (88534, '2022-06-05', 7523, 83814, 5374, NULL, '1.0000', '9.7500', '9.7500', '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 (88535, '2022-06-05', 2906, 83815, 5374, 18651, '-19.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 (88536, '2022-06-05', 2906, 83815, 5374, NULL, '21.0000', '2.6000', '2.6000', '4.0000', '4.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88537, '2022-06-05', 9729, 83816, 5374, NULL, '2.0000', '0.6200', '0.6200', '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 (88538, '2022-06-05', 7707, 83817, 5374, NULL, '1.0000', '7.0000', '7.0000', '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 (88539, '2022-06-05', 9151, 83818, 5374, NULL, '1.0000', '9.7000', '9.7000', '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 (88540, '2022-06-05', 7784, 83819, 5374, NULL, '1.0000', '4.2300', '4.2300', '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 (88541, '2022-06-05', 8097, 83820, 5374, NULL, '1.0000', '3.4000', '3.4000', '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 (88542, '2022-06-05', 9565, 83821, 5374, NULL, '1.0000', '4.5000', '4.5000', '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 (88543, '2022-06-05', 7547, 83822, 5374, NULL, '1.0000', '0.0000', '0.0000', '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 (88544, '2022-06-05', 2315, 83823, 5374, 2735, '-418.0000', '0.3300', '0.3300', '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 (88545, '2022-06-05', 2315, 83823, 5374, NULL, '419.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-419.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88546, '2022-06-05', 8978, 83824, 5374, NULL, '1.0000', '0.6900', '0.6900', '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 (88547, '2022-06-05', 9092, 83825, 5374, NULL, '2.0000', '5.2900', '5.2900', '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 (88548, '2022-06-05', 7641, 83826, 5375, NULL, '1.0000', '1.9000', '1.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 (88549, '2022-06-05', 8878, 83827, 5375, NULL, '1.0000', '6.6700', '6.6700', '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 (88550, '2022-06-05', 7411, 83828, 5375, NULL, '2.0000', '1.3500', '1.3500', '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 (88551, '2022-06-05', 7674, 83829, 5375, NULL, '1.0000', '1.3000', '1.3000', '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 (88552, '2022-06-05', 9819, 83830, 5376, NULL, '1.0000', '3.6300', '3.6300', '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 (88553, '2022-06-05', 1307, 83831, 5376, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '21.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 (88554, '2022-06-06', 2916, 83832, 5377, NULL, '1.0000', '538.9192', '538.9192', '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 (88555, '2022-06-06', 1529, 83833, 5377, 51484, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88556, '2022-06-06', 8607, 83834, 5377, NULL, '1.0000', '-3.0000', '-3.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 (88557, '2022-06-06', 2444, 83835, 5377, 51937, '1.0000', '8.3626', '8.3626', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88558, '2022-06-06', 9590, 83836, 5377, NULL, '1.0000', '-6.6667', '-6.6667', '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 (88559, '2022-06-06', 2079, 83837, 5377, 55647, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88560, '2022-06-06', 1520, 83838, 5377, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88561, '2022-06-06', 7744, 83839, 5377, NULL, '1.0000', '2.5833', '2.5833', '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 (88562, '2022-06-06', 2275, 83840, 5377, 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 (88563, '2022-06-06', 7554, 83841, 5377, NULL, '10.0000', '16.0000', '16.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 (88564, '2022-06-06', 1649, 83842, 5377, 56421, '1.0000', '11.7333', '11.7333', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88565, '2022-06-06', 2252, 83843, 5377, 55622, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88566, '2022-06-06', 2233, 83844, 5377, 56381, '1.0000', '24.1431', '24.1431', '39.0000', '39.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88567, '2022-06-06', 2061, 83845, 5377, NULL, '1.0000', '11.3365', '11.3365', '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 (88568, '2022-06-06', 2921, 83846, 5377, NULL, '1.0000', '4.9000', '4.9000', '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 (88569, '2022-06-06', 1520, 83847, 5377, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88570, '2022-06-06', 2916, 83848, 5377, NULL, '1.0000', '538.9192', '538.9192', '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 (88571, '2022-06-06', 7741, 83849, 5377, NULL, '1.0000', '-52.1460', '-52.1460', '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 (88572, '2022-06-06', 8132, 83850, 5377, 48589, '1.0000', '4.7200', '4.7200', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88573, '2022-06-06', 1340, 83851, 5377, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88574, '2022-06-06', 2161, 83852, 5377, 44159, '1.0000', '9.5000', '9.5000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88575, '2022-06-06', 3058, 83853, 5377, NULL, '1.0000', '-23.3000', '-23.3000', '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 (88576, '2022-06-06', 1806, 83854, 5377, 51376, '1.0000', '29.2252', '29.2252', '40.5000', '40.5000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88577, '2022-06-06', 9941, 83855, 5377, 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 (88578, '2022-06-06', 3044, 83856, 5377, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '24.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 (88579, '2022-06-06', 1935, 83857, 5377, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88580, '2022-06-06', 1783, 83858, 5377, 54548, '3.0000', '12.2246', '12.2246', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88581, '2022-06-06', 2315, 83859, 5377, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '148.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88582, '2022-06-06', 2169, 83860, 5377, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88583, '2022-06-06', 2169, 83860, 5377, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88584, '2022-06-06', 7744, 83861, 5377, NULL, '1.0000', '2.5833', '2.5833', '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 (88585, '2022-06-06', 1846, 83862, 5377, 55915, '1.0000', '478.9750', '478.9750', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88586, '2022-06-06', 2221, 83863, 5377, NULL, '1.0000', '12.6522', '12.6522', '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 (88587, '2022-06-06', 2169, 83864, 5377, 55621, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88588, '2022-06-06', 2999, 83865, 5377, 55588, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88589, '2022-06-06', 1387, 83866, 5377, 55150, '1.0000', '13.8750', '13.8750', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88590, '2022-06-06', 9755, 83867, 5377, 55152, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88591, '2022-06-06', 1644, 83868, 5378, 3216, '-8.0000', '33.8200', '33.8200', '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 (88592, '2022-06-06', 1644, 83868, 5378, NULL, '9.0000', '33.8200', '33.8200', '51.0000', '51.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 (88593, '2022-06-06', 7911, 83869, 5378, NULL, '1.0000', '4.3700', '4.3700', '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 (88594, '2022-06-06', 9329, 83870, 5378, NULL, '1.0000', '6.7000', '6.7000', '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 (88595, '2022-06-06', 7725, 83871, 5378, NULL, '1.0000', '7.0000', '7.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 (88596, '2022-06-06', 7852, 83872, 5378, NULL, '1.0000', '15.0000', '15.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 (88597, '2022-06-06', 1935, 83873, 5378, 5586, '-107.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 (88598, '2022-06-06', 1935, 83873, 5378, NULL, '108.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-108.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88599, '2022-06-06', 7776, 83874, 5378, 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 (88600, '2022-06-06', 7703, 83875, 5378, NULL, '2.0000', '22.9900', '22.9900', '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 (88601, '2022-06-06', 9751, 83876, 5378, 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 (88602, '2022-06-06', 2769, 83877, 5378, NULL, '4.0000', '1.5200', '1.5200', '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 (88603, '2022-06-06', 2315, 83878, 5378, 2735, '-419.0000', '0.3300', '0.3300', '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 (88604, '2022-06-06', 2315, 83878, 5378, NULL, '421.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-421.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88605, '2022-06-06', 9274, 83879, 5378, NULL, '1.0000', '3.6000', '3.6000', '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 (88606, '2022-06-06', 8103, 83880, 5378, NULL, '1.0000', '26.9800', '26.9800', '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 (88607, '2022-06-06', 7509, 83881, 5378, 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 (88608, '2022-06-06', 7411, 83882, 5378, NULL, '1.0000', '1.3500', '1.3500', '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 (88609, '2022-06-06', 9092, 83883, 5378, NULL, '3.0000', '5.2900', '5.2900', '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 (88610, '2022-06-06', 7704, 83884, 5378, NULL, '1.0000', '0.4900', '0.4900', '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 (88611, '2022-06-06', 7958, 83885, 5378, NULL, '1.0000', '3.7500', '3.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 (88612, '2022-06-06', 7780, 83886, 5378, NULL, '1.0000', '11.6000', '11.6000', '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 (88613, '2022-06-06', 7444, 83887, 5378, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88614, '2022-06-06', 8074, 83888, 5378, NULL, '1.0000', '25.3504', '25.3504', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88615, '2022-06-06', 7780, 83889, 5378, NULL, '1.0000', '11.6000', '11.6000', '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 (88616, '2022-06-06', 7881, 83890, 5378, NULL, '1.0000', '2.3000', '2.3000', '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 (88617, '2022-06-06', 8404, 83891, 5378, NULL, '1.0000', '36.1200', '36.1200', '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 (88618, '2022-06-06', 2392, 83892, 5378, 20648, '1.0000', '3.7000', '3.7000', '5.0000', '5.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 (88619, '2022-06-06', 7444, 83893, 5378, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88620, '2022-06-06', 7672, 83894, 5378, NULL, '2.0000', '1.0200', '1.0200', '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 (88621, '2022-06-06', 9423, 83895, 5378, NULL, '1.0000', '1.6000', '1.6000', '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 (88622, '2022-06-06', 7514, 83896, 5378, NULL, '1.0000', '2.2500', '2.2500', '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 (88623, '2022-06-06', 7334, 83897, 5378, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (88624, '2022-06-06', 7368, 83898, 5378, NULL, '1.0000', '14.7500', '14.7500', '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 (88625, '2022-06-06', 8966, 83899, 5378, NULL, '1.0000', '6.8500', '6.8500', '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 (88626, '2022-06-06', 9155, 83900, 5378, NULL, '1.0000', '1.8000', '1.8000', '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 (88627, '2022-06-06', 2315, 83901, 5378, 2735, '-419.0000', '0.3300', '0.3300', '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 (88628, '2022-06-06', 2315, 83901, 5378, NULL, '421.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-421.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88629, '2022-06-06', 7804, 83902, 5378, NULL, '3.0000', '1.0200', '1.0200', '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 (88630, '2022-06-06', 2242, 83903, 5378, 3059, '-50.0000', '0.4800', '0.4800', '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 (88631, '2022-06-06', 2242, 83903, 5378, NULL, '53.0000', '0.4800', '0.4800', '1.5000', '1.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 (88632, '2022-06-06', 8680, 83904, 5378, NULL, '1.0000', '2.0000', '2.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 (88633, '2022-06-06', 7730, 83905, 5378, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (88634, '2022-06-06', 7753, 83906, 5378, NULL, '1.0000', '3.4000', '3.4000', '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 (88635, '2022-06-06', 8153, 83907, 5378, NULL, '1.0000', '0.3200', '0.3200', '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 (88636, '2022-06-06', 7674, 83908, 5378, NULL, '1.0000', '1.3000', '1.3000', '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 (88637, '2022-06-06', 9274, 83909, 5378, NULL, '1.0000', '3.6000', '3.6000', '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 (88638, '2022-06-06', 9272, 83910, 5378, NULL, '1.0000', '3.1000', '3.1000', '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 (88639, '2022-06-06', 7999, 83911, 5378, NULL, '1.0000', '1.7500', '1.7500', '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 (88640, '2022-06-06', 9729, 83912, 5378, NULL, '1.0000', '0.6200', '0.6200', '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 (88641, '2022-06-06', 9695, 83913, 5379, 56629, '1.0000', '5.1867', '5.1867', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88642, '2022-06-06', 1941, 83914, 5379, 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 (88643, '2022-06-06', 7385, 83915, 5379, 55960, '1.0000', '3.8645', '3.8645', '4.0000', '4.0000', '57.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88644, '2022-06-06', 8444, 83916, 5380, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88645, '2022-06-06', 2379, 83917, 5380, NULL, '1.0000', '-3.0170', '-3.0170', '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 (88646, '2022-06-06', 8183, 83918, 5380, NULL, '1.0000', '-1179.5325', '-1179.5325', '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 (88647, '2022-06-06', 2289, 83919, 5380, 56470, '4.0000', '0.3611', '0.3611', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88648, '2022-06-06', 7670, 83920, 5380, NULL, '1.0000', '19.6000', '19.6000', '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 (88649, '2022-06-06', 9762, 83921, 5380, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '31.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88650, '2022-06-06', 1751, 83922, 5380, 56435, '1.0000', '5.6063', '5.6063', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88651, '2022-06-06', 2315, 83923, 5380, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '145.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88652, '2022-06-06', 7514, 83924, 5380, NULL, '2.0000', '2.2500', '2.2500', '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 (88653, '2022-06-06', 8150, 83925, 5380, NULL, '1.0000', '27.9400', '27.9400', '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 (88654, '2022-06-06', 9204, 83926, 5380, NULL, '1.0000', '14.1514', '14.1514', '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 (88655, '2022-06-06', 1306, 83927, 5380, NULL, '4.0000', '2.1000', '2.1000', '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 (88656, '2022-06-06', 1916, 83928, 5380, NULL, '1.0000', '8.2300', '8.2300', '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 (88657, '2022-06-06', 7327, 83929, 5380, NULL, '1.0000', '1.0100', '1.0100', '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 (88658, '2022-06-06', 2916, 83930, 5380, NULL, '1.0000', '538.9192', '538.9192', '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 (88659, '2022-06-06', 7398, 83931, 5380, NULL, '3.0000', '143.5000', '143.5000', '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 (88660, '2022-06-06', 2302, 83932, 5380, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88661, '2022-06-06', 2096, 83933, 5380, NULL, '1.0000', '1.5500', '1.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 (88662, '2022-06-06', 1432, 83934, 5380, 55707, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88663, '2022-06-06', 2821, 83935, 5380, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88664, '2022-06-06', 2986, 83936, 5380, 51665, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88665, '2022-06-06', 2289, 83937, 5380, 56470, '3.0000', '0.3611', '0.3611', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88666, '2022-06-06', 7375, 83938, 5380, NULL, '28.0000', '5.1000', '5.1000', '7.0000', '7.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 (88667, '2022-06-06', 8341, 83939, 5380, 45199, '1.0000', '32.0000', '32.0000', '43.5000', '43.5000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88668, '2022-06-06', 9905, 83940, 5380, 55158, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88669, '2022-06-06', 9803, 83941, 5380, 51656, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88670, '2022-06-06', 2061, 83942, 5380, NULL, '1.0000', '11.3365', '11.3365', '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 (88671, '2022-06-06', 7859, 83943, 5380, NULL, '1.0000', '3.6000', '3.6000', '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 (88672, '2022-06-06', 1668, 83944, 5380, 51486, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88673, '2022-06-06', 1871, 83945, 5380, NULL, '10.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (88674, '2022-06-06', 2821, 83946, 5380, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88675, '2022-06-06', 7560, 83947, 5381, NULL, '1.0000', '33.0200', '33.0200', '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 (88676, '2022-06-06', 1688, 83948, 5381, 4896, '-12.0000', '18.5000', '18.5000', '31.5000', '31.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 (88677, '2022-06-06', 1688, 83948, 5381, NULL, '13.0000', '18.5000', '18.5000', '31.5000', '31.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 (88678, '2022-06-06', 1689, 83949, 5381, 4897, '-12.0000', '60.7198', '60.7198', '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 (88679, '2022-06-06', 1689, 83949, 5381, NULL, '13.0000', '60.7198', '60.7198', '21.0000', '21.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 (88680, '2022-06-06', 7980, 83950, 5381, NULL, '10.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (88681, '2022-06-06', 7457, 83951, 5381, 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 (88682, '2022-06-06', 7318, 83952, 5381, NULL, '1.0000', '13.4400', '13.4400', '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 (88683, '2022-06-06', 7430, 83953, 5381, NULL, '1.0000', '15.0000', '15.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 (88684, '2022-06-06', 7632, 83954, 5381, NULL, '1.0000', '9.0000', '9.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 (88685, '2022-06-06', 2315, 83955, 5381, 2735, '-423.0000', '0.3300', '0.3300', '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 (88686, '2022-06-06', 2315, 83955, 5381, NULL, '424.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-424.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88687, '2022-06-06', 8186, 83956, 5381, NULL, '1.0000', '1.0800', '1.0800', '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 (88688, '2022-06-06', 9100, 83957, 5381, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88689, '2022-06-06', 7674, 83958, 5381, NULL, '1.0000', '1.3000', '1.3000', '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 (88690, '2022-06-06', 8774, 83959, 5381, NULL, '1.0000', '2.3000', '2.3000', '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 (88691, '2022-06-06', 9716, 83960, 5381, NULL, '1.0000', '4.4000', '4.4000', '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 (88692, '2022-06-06', 7633, 83961, 5381, NULL, '1.0000', '2.8700', '2.8700', '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 (88693, '2022-06-06', 7339, 83962, 5381, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (88694, '2022-06-06', 9399, 83963, 5381, NULL, '1.0000', '0.9800', '0.9800', '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 (88695, '2022-06-06', 7674, 83964, 5381, NULL, '3.0000', '1.3000', '1.3000', '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 (88696, '2022-06-06', 9729, 83965, 5381, NULL, '2.0000', '0.6200', '0.6200', '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 (88697, '2022-06-06', 8722, 83966, 5381, 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 (88698, '2022-06-06', 7926, 83967, 5381, 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 (88699, '2022-06-06', 8882, 83968, 5381, NULL, '1.0000', '8.0000', '8.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 (88700, '2022-06-06', 7518, 83969, 5381, NULL, '1.0000', '7.8200', '7.8200', '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 (88701, '2022-06-06', 9092, 83970, 5381, NULL, '3.0000', '5.2900', '5.2900', '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 (88702, '2022-06-06', 9576, 83971, 5381, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88703, '2022-06-06', 7756, 83972, 5381, NULL, '1.0000', '2.5000', '2.5000', '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 (88704, '2022-06-06', 7317, 83973, 5381, NULL, '1.0000', '19.5500', '19.5500', '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 (88705, '2022-06-06', 7657, 83974, 5381, NULL, '1.0000', '11.3200', '11.3200', '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 (88706, '2022-06-06', 7892, 83975, 5381, NULL, '1.0000', '4.2000', '4.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 (88707, '2022-06-06', 7674, 83976, 5381, NULL, '1.0000', '1.3000', '1.3000', '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 (88708, '2022-06-06', 7317, 83977, 5381, NULL, '1.0000', '19.5500', '19.5500', '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 (88709, '2022-06-06', 7666, 83978, 5381, NULL, '1.0000', '3.6000', '3.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 (88710, '2022-06-06', 2315, 83979, 5381, 2735, '-423.0000', '0.3300', '0.3300', '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 (88711, '2022-06-06', 2315, 83979, 5381, NULL, '427.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-427.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88712, '2022-06-06', 9755, 83980, 5381, NULL, '1.0000', '17.0000', '17.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 (88713, '2022-06-06', 7334, 83981, 5381, NULL, '1.0000', '8.2300', '8.2300', '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 (88714, '2022-06-06', 8053, 83982, 5381, 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 (88715, '2022-06-06', 9729, 83983, 5381, NULL, '3.0000', '0.6200', '0.6200', '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 (88716, '2022-06-06', 7518, 83984, 5381, NULL, '3.0000', '7.8200', '7.8200', '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 (88717, '2022-06-06', 7781, 83985, 5381, NULL, '3.0000', '4.2500', '4.2500', '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 (88718, '2022-06-06', 2283, 83986, 5381, 2943, '-24.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 (88719, '2022-06-06', 2283, 83986, 5381, NULL, '25.0000', '1.4300', '1.4300', '2.0000', '2.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 (88720, '2022-06-06', 2289, 83987, 5381, 2949, '-183.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 (88721, '2022-06-06', 2289, 83987, 5381, NULL, '184.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-184.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88722, '2022-06-06', 7411, 83988, 5381, NULL, '1.0000', '1.3500', '1.3500', '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 (88723, '2022-06-06', 7642, 83989, 5382, NULL, '1.0000', '5.9200', '5.9200', '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 (88724, '2022-06-06', 9092, 83990, 5382, NULL, '5.0000', '5.2900', '5.2900', '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 (88725, '2022-06-06', 7588, 83991, 5382, 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 (88726, '2022-06-06', 2580, 83992, 5382, 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 (88727, '2022-06-06', 8616, 83993, 5382, NULL, '1.0000', '23.0000', '23.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 (88728, '2022-06-06', 8067, 83994, 5382, NULL, '1.0000', '4.6900', '4.6900', '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 (88729, '2022-06-06', 7589, 83995, 5382, 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 (88730, '2022-06-06', 7865, 83996, 5382, NULL, '2.0000', '1.6300', '1.6300', '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 (88731, '2022-06-06', 7765, 83997, 5382, NULL, '2.0000', '16.0000', '16.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 (88732, '2022-06-06', 7814, 83998, 5382, 33790, '1.0000', '18.5000', '18.5000', '28.0000', '28.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88733, '2022-06-06', 2069, 83999, 5382, 5571, '-11.0000', '2.0400', '2.0400', '9.5000', '9.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 (88734, '2022-06-06', 2069, 83999, 5382, NULL, '12.0000', '2.0400', '2.0400', '9.5000', '9.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 (88735, '2022-06-06', 7674, 84000, 5382, NULL, '1.0000', '1.3000', '1.3000', '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 (88736, '2022-06-06', 8454, 84001, 5382, NULL, '1.0000', '4.1500', '4.1500', '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 (88737, '2022-06-06', 2315, 84002, 5382, 2735, '-428.0000', '0.3300', '0.3300', '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 (88738, '2022-06-06', 2315, 84002, 5382, NULL, '429.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-429.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88739, '2022-06-06', 1805, 84003, 5382, NULL, '1.0000', '195.3170', '195.3170', '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 (88740, '2022-06-06', 7514, 84004, 5382, NULL, '1.0000', '2.2500', '2.2500', '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 (88741, '2022-06-06', 1420, 84005, 5382, 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 (88742, '2022-06-06', 7518, 84006, 5382, NULL, '1.0000', '7.8200', '7.8200', '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 (88743, '2022-06-06', 1837, 84007, 5382, 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 (88744, '2022-06-06', 1557, 84008, 5382, 1628, '-12.0000', '7.9500', '7.9500', '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 (88745, '2022-06-06', 1557, 84008, 5382, NULL, '13.0000', '7.9500', '7.9500', '10.5000', '10.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 (88746, '2022-06-06', 2315, 84009, 5382, 2735, '-428.0000', '0.3300', '0.3300', '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 (88747, '2022-06-06', 2315, 84009, 5382, NULL, '430.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-430.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88748, '2022-06-06', 8127, 84010, 5382, NULL, '1.0000', '24.5300', '24.5300', '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 (88749, '2022-06-06', 1501, 84011, 5382, NULL, '1.0000', '2.0500', '2.0500', '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 (88750, '2022-06-06', 7514, 84012, 5382, NULL, '1.0000', '2.2500', '2.2500', '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 (88751, '2022-06-06', 7961, 84013, 5382, NULL, '1.0000', '10.5600', '10.5600', '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 (88752, '2022-06-06', 9503, 84014, 5382, NULL, '1.0000', '20.6000', '20.6000', '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 (88753, '2022-06-06', 7926, 84015, 5382, 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 (88754, '2022-06-06', 8052, 84016, 5382, NULL, '2.0000', '29.0000', '29.0000', '50.0000', '50.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 (88755, '2022-06-06', 7780, 84017, 5382, NULL, '1.0000', '11.6000', '11.6000', '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 (88756, '2022-06-06', 8053, 84018, 5382, NULL, '2.0000', '0.8000', '0.8000', '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 (88757, '2022-06-06', 9734, 84019, 5382, NULL, '1.0000', '0.3200', '0.3200', '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 (88758, '2022-06-06', 7641, 84020, 5382, NULL, '1.0000', '1.9000', '1.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 (88759, '2022-06-06', 2315, 84021, 5383, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88760, '2022-06-06', 1904, 84022, 5383, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88761, '2022-06-06', 1521, 84023, 5383, NULL, '1.0000', '10.1500', '10.1500', '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 (88762, '2022-06-06', 1935, 84024, 5383, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88763, '2022-06-06', 2413, 84025, 5383, NULL, '3.0000', '1.0500', '1.0500', '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 (88764, '2022-06-06', 7612, 84026, 5383, NULL, '4.0000', '1.6100', '1.6100', '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 (88765, '2022-06-06', 7928, 84027, 5383, NULL, '1.0000', '11.7000', '11.7000', '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 (88766, '2022-06-06', 1326, 84028, 5383, 55898, '1.0000', '4.3669', '4.3669', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88767, '2022-06-06', 1780, 84029, 5383, NULL, '1.0000', '95.5759', '95.5759', '60.5000', '60.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88768, '2022-06-06', 2315, 84030, 5383, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '143.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88769, '2022-06-06', 2242, 84031, 5383, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88770, '2022-06-06', 1693, 84032, 5383, 55664, '1.0000', '9.5194', '9.5194', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88771, '2022-06-06', 2302, 84033, 5383, 56413, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88772, '2022-06-06', 1521, 84034, 5383, NULL, '1.0000', '10.1500', '10.1500', '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 (88773, '2022-06-06', 1519, 84035, 5383, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88774, '2022-06-06', 1519, 84035, 5383, 51485, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88775, '2022-06-06', 2000, 84036, 5383, 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 (88776, '2022-06-06', 8183, 84037, 5383, NULL, '1.0000', '-1179.5325', '-1179.5325', '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 (88777, '2022-06-06', 2061, 84038, 5383, NULL, '2.0000', '11.3365', '11.3365', '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 (88778, '2022-06-06', 7612, 84039, 5383, NULL, '2.0000', '1.6100', '1.6100', '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 (88779, '2022-06-06', 2916, 84040, 5383, NULL, '1.0000', '538.9192', '538.9192', '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 (88780, '2022-06-06', 7444, 84041, 5383, 39808, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88781, '2022-06-06', 2169, 84042, 5383, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '117.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88782, '2022-06-06', 2506, 84043, 5383, NULL, '1.0000', '2.9584', '2.9584', '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 (88783, '2022-06-06', 1763, 84044, 5383, 55644, '1.0000', '4.6631', '4.6631', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88784, '2022-06-06', 9736, 84045, 5383, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88785, '2022-06-06', 7328, 84046, 5383, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (88786, '2022-06-06', 1840, 84047, 5383, 55654, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88787, '2022-06-06', 2315, 84048, 5383, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '143.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88788, '2022-06-06', 9634, 84049, 5383, 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 (88789, '2022-06-06', 2293, 84050, 5383, NULL, '3.0000', '-17.4320', '-17.4320', '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 (88790, '2022-06-06', 2061, 84051, 5383, NULL, '1.0000', '11.3365', '11.3365', '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 (88791, '2022-06-06', 2169, 84052, 5383, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '117.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88792, '2022-06-06', 2618, 84053, 5383, 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 (88793, '2022-06-06', 7472, 84054, 5383, NULL, '1.0000', '-56.4939', '-56.4939', '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 (88794, '2022-06-06', 9204, 84055, 5383, NULL, '1.0000', '14.1514', '14.1514', '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 (88795, '2022-06-06', 9846, 84056, 5383, 56462, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88796, '2022-06-06', 2950, 84057, 5383, 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 (88797, '2022-06-06', 2135, 84058, 5383, NULL, '1.0000', '-0.2588', '-0.2588', '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 (88798, '2022-06-06', 1810, 84059, 5383, NULL, '1.0000', '15.0116', '15.0116', '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 (88799, '2022-06-06', 2821, 84060, 5383, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88800, '2022-06-06', 2237, 84061, 5383, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88801, '2022-06-06', 2315, 84062, 5383, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '143.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88802, '2022-06-06', 7641, 84063, 5383, NULL, '1.0000', '1.9000', '1.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 (88803, '2022-06-06', 8444, 84064, 5383, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88804, '2022-06-06', 1389, 84065, 5383, 48935, '1.0000', '16.4000', '16.4000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88805, '2022-06-06', 8677, 84066, 5383, NULL, '2.0000', '496.2705', '496.2705', '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 (88806, '2022-06-06', 2295, 84067, 5383, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88807, '2022-06-06', 9834, 84068, 5383, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88808, '2022-06-06', 2315, 84069, 5383, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88809, '2022-06-06', 2916, 84070, 5383, NULL, '1.0000', '538.9192', '538.9192', '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 (88810, '2022-06-06', 9754, 84071, 5383, 49260, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88811, '2022-06-06', 2221, 84072, 5383, NULL, '1.0000', '12.6522', '12.6522', '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 (88812, '2022-06-06', 1519, 84073, 5383, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88813, '2022-06-06', 1487, 84074, 5383, NULL, '1.0000', '-330.9124', '-330.9124', '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 (88814, '2022-06-06', 7385, 84075, 5383, 55960, '6.0000', '3.8645', '3.8645', '4.0000', '4.0000', '51.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88815, '2022-06-06', 7376, 84076, 5383, NULL, '1.0000', '141.7100', '141.7100', '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 (88816, '2022-06-06', 1307, 84077, 5383, NULL, '1.0000', '-11.7284', '-11.7284', '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 (88817, '2022-06-06', 9695, 84078, 5383, 56629, '1.0000', '5.1867', '5.1867', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88818, '2022-06-06', 1969, 84079, 5383, NULL, '1.0000', '4.3300', '4.3300', '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 (88819, '2022-06-06', 1871, 84080, 5383, NULL, '10.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (88820, '2022-06-06', 7917, 84081, 5383, NULL, '1.0000', '5.0000', '5.0000', '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 (88821, '2022-06-06', 1760, 84082, 5383, NULL, '2.0000', '1.5900', '1.5900', '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 (88822, '2022-06-06', 1519, 84083, 5383, 55893, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88823, '2022-06-06', 2517, 84084, 5383, 49906, '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 (88824, '2022-06-06', 9819, 84085, 5383, 55635, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88825, '2022-06-06', 2302, 84086, 5383, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88826, '2022-06-06', 2315, 84087, 5383, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88827, '2022-06-06', 2394, 84088, 5383, 55156, '1.0000', '6.0000', '6.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88828, '2022-06-06', 2440, 84089, 5383, 56860, '1.0000', '6.6446', '6.6446', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88829, '2022-06-06', 2295, 84090, 5383, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88830, '2022-06-06', 2315, 84091, 5383, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88831, '2022-06-06', 1806, 84092, 5383, 51376, '1.0000', '29.2252', '29.2252', '40.5000', '40.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88832, '2022-06-06', 1806, 84092, 5383, 51202, '1.0000', '29.2252', '29.2252', '40.5000', '40.5000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88833, '2022-06-06', 2315, 84093, 5383, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '144.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88834, '2022-06-06', 1580, 84094, 5383, 56446, '2.0000', '1.4661', '1.4661', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88835, '2022-06-06', 2363, 84095, 5383, NULL, '3.0000', '6.8800', '6.8800', '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 (88836, '2022-06-06', 7743, 84096, 5383, NULL, '1.0000', '7.3900', '7.3900', '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 (88837, '2022-06-06', 7593, 84097, 5383, NULL, '1.0000', '0.8000', '0.8000', '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 (88838, '2022-06-06', 8411, 84098, 5383, NULL, '1.0000', '8.8100', '8.8100', '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 (88839, '2022-06-06', 1935, 84099, 5383, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88840, '2022-06-06', 9274, 84100, 5383, NULL, '1.0000', '0.2500', '0.2500', '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 (88841, '2022-06-06', 7674, 84101, 5384, NULL, '1.0000', '1.3000', '1.3000', '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 (88842, '2022-06-06', 1855, 84102, 5384, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (88843, '2022-06-06', 8154, 84103, 5384, NULL, '2.0000', '12.3000', '12.3000', '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 (88844, '2022-06-06', 9868, 84104, 5384, 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 (88845, '2022-06-06', 9498, 84105, 5384, NULL, '1.0000', '12.5000', '12.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 (88846, '2022-06-06', 8448, 84106, 5384, NULL, '1.0000', '6.8900', '6.8900', '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 (88847, '2022-06-06', 8746, 84107, 5385, 45281, '2.0000', '3.2727', '3.2727', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88848, '2022-06-06', 1905, 84108, 5385, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88849, '2022-06-06', 1935, 84109, 5385, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88850, '2022-06-06', 7741, 84110, 5385, NULL, '1.0000', '-52.1460', '-52.1460', '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 (88851, '2022-06-06', 2506, 84111, 5385, NULL, '1.0000', '2.9584', '2.9584', '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 (88852, '2022-06-06', 1779, 84112, 5385, 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 (88853, '2022-06-07', 2169, 84113, 5386, 55701, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88854, '2022-06-07', 9839, 84114, 5386, NULL, '1.0000', '15.0200', '15.0200', '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 (88855, '2022-06-07', 2169, 84115, 5386, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '115.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88856, '2022-06-07', 9827, 84116, 5386, NULL, '1.0000', '16.6600', '16.6600', '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 (88857, '2022-06-07', 2940, 84117, 5386, NULL, '1.0000', '6.3600', '6.3600', '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 (88858, '2022-06-07', 8017, 84118, 5386, NULL, '1.0000', '0.6000', '0.6000', '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 (88859, '2022-06-07', 9274, 84119, 5386, NULL, '1.0000', '0.2500', '0.2500', '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 (88860, '2022-06-07', 1868, 84120, 5386, NULL, '1.0000', '3.8800', '3.8800', '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 (88861, '2022-06-07', 9902, 84121, 5386, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88862, '2022-06-07', 2250, 84122, 5386, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88863, '2022-06-07', 1871, 84123, 5386, NULL, '3.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (88864, '2022-06-07', 9783, 84124, 5386, 56401, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88865, '2022-06-07', 1912, 84125, 5386, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88866, '2022-06-07', 2565, 84126, 5386, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88867, '2022-06-07', 2169, 84127, 5386, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '115.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88868, '2022-06-07', 2670, 84128, 5386, NULL, '10.0000', '0.3200', '0.3200', '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 (88869, '2022-06-07', 2250, 84129, 5386, 55910, '1.0000', '8.4646', '8.4646', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88870, '2022-06-07', 2169, 84130, 5386, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '115.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88871, '2022-06-07', 2906, 84131, 5387, NULL, '1.0000', '2.6000', '2.6000', '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 (88872, '2022-06-07', 2061, 84132, 5387, NULL, '1.0000', '11.3365', '11.3365', '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 (88873, '2022-06-07', 1868, 84133, 5387, NULL, '1.0000', '3.8800', '3.8800', '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 (88874, '2022-06-07', 8979, 84134, 5388, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88875, '2022-06-07', 1699, 84135, 5388, NULL, '1.0000', '3.2000', '3.2000', '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 (88876, '2022-06-07', 1608, 84136, 5388, 56376, '1.0000', '4.1598', '4.1598', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88877, '2022-06-07', 1340, 84137, 5388, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88878, '2022-06-07', 1307, 84138, 5388, NULL, '1.0000', '-11.7284', '-11.7284', '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 (88879, '2022-06-07', 1912, 84139, 5388, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88880, '2022-06-07', 2384, 84140, 5388, NULL, '1.0000', '0.1500', '0.1500', '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 (88881, '2022-06-07', 2295, 84141, 5388, 54913, '5.0000', '1.3151', '1.3151', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88882, '2022-06-07', 2169, 84142, 5389, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88883, '2022-06-07', 9834, 84143, 5389, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88884, '2022-06-07', 1868, 84144, 5389, NULL, '2.0000', '3.8800', '3.8800', '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 (88885, '2022-06-07', 1871, 84145, 5389, NULL, '10.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-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 (88886, '2022-06-07', 8969, 84146, 5389, 48599, '2.0000', '2.5503', '2.5503', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88887, '2022-06-07', 9729, 84147, 5389, 47080, '5.0000', '0.6200', '0.6200', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88888, '2022-06-07', 2435, 84148, 5389, NULL, '1.0000', '8.3687', '8.3687', '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 (88889, '2022-06-07', 1935, 84149, 5389, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88890, '2022-06-07', 8097, 84150, 5390, 56696, '2.0000', '16.0236', '16.0236', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88891, '2022-06-07', 8167, 84151, 5390, 56519, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88892, '2022-06-07', 7819, 84152, 5390, 56704, '1.0000', '12.6712', '12.6712', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88893, '2022-06-07', 1750, 84153, 5390, 56609, '1.0000', '39.4675', '39.4675', '55.0000', '55.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88894, '2022-06-07', 1532, 84154, 5390, NULL, '3.0000', '90.0000', '90.0000', '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 (88895, '2022-06-07', 7781, 84155, 5390, NULL, '3.0000', '5.2802', '5.2802', '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 (88896, '2022-06-07', 9785, 84156, 5390, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88897, '2022-06-07', 1498, 84157, 5390, 50696, '1.0000', '0.3942', '0.3942', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88898, '2022-06-07', 8039, 84158, 5390, 55964, '1.0000', '16.8443', '16.8443', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88899, '2022-06-07', 7753, 84159, 5390, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88900, '2022-06-07', 1935, 84160, 5390, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '126.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88901, '2022-06-07', 7804, 84161, 5390, 45340, '3.0000', '0.6529', '0.6529', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88902, '2022-06-07', 7711, 84162, 5390, NULL, '1.0000', '5113.9179', '5113.9179', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88903, '2022-06-07', 2284, 84163, 5390, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88904, '2022-06-07', 7321, 84164, 5390, 56159, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88905, '2022-06-07', 7917, 84165, 5390, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '99.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88906, '2022-06-07', 1807, 84166, 5390, NULL, '2.0000', '-34.8462', '-34.8462', '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 (88907, '2022-06-07', 9729, 84167, 5390, 56613, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88908, '2022-06-07', 2315, 84168, 5390, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88909, '2022-06-07', 9501, 84169, 5390, 43517, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88910, '2022-06-07', 8037, 84170, 5390, 56487, '1.0000', '73.5833', '73.5833', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88911, '2022-06-07', 7482, 84171, 5390, 56021, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '24.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88912, '2022-06-07', 9329, 84172, 5390, 56534, '1.0000', '-16781.4193', '-16781.4193', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88913, '2022-06-07', 1644, 84173, 5390, 56529, '1.0000', '38.4568', '38.4568', '51.0000', '51.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88914, '2022-06-07', 7911, 84174, 5390, 56650, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88915, '2022-06-07', 2506, 84175, 5390, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88916, '2022-06-07', 7460, 84176, 5390, NULL, '2.0000', '294.7000', '294.7000', '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 (88917, '2022-06-07', 7547, 84177, 5390, NULL, '2.0000', '0.0000', '0.0000', '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 (88918, '2022-06-07', 7694, 84178, 5390, NULL, '1.0000', '4.7900', '4.7900', '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 (88919, '2022-06-07', 9794, 84179, 5390, 50668, '5.0000', '1.0800', '1.0800', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88920, '2022-06-07', 7776, 84180, 5390, NULL, '1.0000', '9.7858', '9.7858', '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 (88921, '2022-06-07', 7482, 84181, 5390, 56021, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '24.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88922, '2022-06-07', 7385, 84182, 5390, 56578, '5.0000', '9.0049', '9.0049', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88923, '2022-06-07', 9695, 84183, 5390, 56716, '1.0000', '5.4759', '5.4759', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88924, '2022-06-07', 2315, 84184, 5390, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88925, '2022-06-07', 8878, 84185, 5390, 54503, '1.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88926, '2022-06-07', 9274, 84186, 5390, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '10.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88927, '2022-06-07', 7781, 84187, 5390, NULL, '1.0000', '5.2802', '5.2802', '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 (88928, '2022-06-07', 7658, 84188, 5390, 56019, '1.0000', '188.9318', '188.9318', '3.5000', '3.5000', '89.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88929, '2022-06-07', 7509, 84189, 5390, 56702, '1.0000', '10.9499', '10.9499', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88930, '2022-06-07', 8134, 84190, 5390, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88931, '2022-06-07', 7753, 84191, 5390, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88932, '2022-06-07', 7459, 84192, 5390, NULL, '2.0000', '2.9681', '2.9681', '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 (88933, '2022-06-07', 7664, 84193, 5390, 56599, '1.0000', '8.6930', '8.6930', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88934, '2022-06-07', 7862, 84194, 5390, NULL, '1.0000', '87.4250', '87.4250', '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 (88935, '2022-06-07', 7769, 84195, 5390, 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 (88936, '2022-06-07', 1666, 84196, 5391, 55663, '1.0000', '2.7079', '2.7079', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88937, '2022-06-07', 2169, 84197, 5391, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88938, '2022-06-07', 2503, 84198, 5391, 56868, '1.0000', '27.9063', '27.9063', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88939, '2022-06-07', 1825, 84199, 5391, 55678, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88940, '2022-06-07', 1946, 84200, 5391, NULL, '1.0000', '-4.7391', '-4.7391', '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 (88941, '2022-06-07', 2095, 84201, 5391, NULL, '1.0000', '0.5000', '0.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 (88942, '2022-06-07', 8714, 84202, 5391, NULL, '1.0000', '5.2100', '5.2100', '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 (88943, '2022-06-07', 2648, 84203, 5391, 53441, '1.0000', '2.2228', '2.2228', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88944, '2022-06-07', 2916, 84204, 5391, NULL, '1.0000', '538.9192', '538.9192', '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 (88945, '2022-06-07', 1529, 84205, 5391, 51484, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88946, '2022-06-07', 8979, 84206, 5392, 55434, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88947, '2022-06-07', 2506, 84207, 5393, NULL, '1.0000', '2.9584', '2.9584', '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 (88948, '2022-06-07', 7328, 84208, 5393, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (88949, '2022-06-07', 2289, 84209, 5393, 56470, '3.0000', '0.3611', '0.3611', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88950, '2022-06-07', 1828, 84210, 5393, NULL, '2.0000', '0.7300', '0.7300', '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 (88951, '2022-06-07', 7967, 84211, 5394, 56684, '2.0000', '6.9018', '6.9018', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88952, '2022-06-07', 8759, 84212, 5394, 55067, '1.0000', '9.1894', '9.1894', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88953, '2022-06-07', 9265, 84213, 5394, 30225, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88954, '2022-06-07', 9566, 84214, 5394, 38176, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88955, '2022-06-07', 7457, 84215, 5394, 56172, '1.0000', '4.3108', '4.3108', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88956, '2022-06-07', 2315, 84216, 5394, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88957, '2022-06-07', 7892, 84217, 5394, NULL, '2.0000', '5.3403', '5.3403', '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 (88958, '2022-06-07', 8288, 84218, 5394, NULL, '2.0000', '1.1923', '1.1923', '1.8000', '1.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 (88959, '2022-06-07', 9092, 84219, 5394, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88960, '2022-06-07', 7672, 84220, 5394, NULL, '1.0000', '5.9200', '5.9200', '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 (88961, '2022-06-07', 2506, 84221, 5394, 56514, '2.0000', '4.6688', '4.6688', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88962, '2022-06-07', 7318, 84222, 5394, 56154, '1.0000', '10.9273', '10.9273', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88963, '2022-06-07', 8677, 84223, 5394, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88964, '2022-06-07', 2295, 84224, 5394, NULL, '3.0000', '-2.3086', '-2.3086', '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 (88965, '2022-06-07', 9274, 84225, 5394, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88966, '2022-06-07', 8463, 84226, 5394, NULL, '1.0000', '18.0000', '18.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 (88967, '2022-06-07', 8101, 84227, 5395, NULL, '2.0000', '-0.2222', '-0.2222', '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 (88968, '2022-06-07', 2315, 84228, 5395, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88969, '2022-06-07', 8101, 84229, 5396, NULL, '2.0000', '1.9700', '1.9700', '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 (88970, '2022-06-07', 3001, 84230, 5396, NULL, '5.0000', '1.5000', '1.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 (88971, '2022-06-07', 7708, 84231, 5396, 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 (88972, '2022-06-07', 8878, 84232, 5396, NULL, '1.0000', '6.6700', '6.6700', '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 (88973, '2022-06-07', 7473, 84233, 5396, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (88974, '2022-06-07', 7317, 84234, 5396, NULL, '2.0000', '19.5500', '19.5500', '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 (88975, '2022-06-07', 7333, 84235, 5396, NULL, '1.0000', '13.5000', '13.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 (88976, '2022-06-07', 8918, 84236, 5396, NULL, '1.0000', '1.0400', '1.0400', '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 (88977, '2022-06-07', 7780, 84237, 5396, NULL, '1.0000', '11.6000', '11.6000', '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 (88978, '2022-06-07', 7524, 84238, 5396, NULL, '1.0000', '11.9500', '11.9500', '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 (88979, '2022-06-07', 7879, 84239, 5396, NULL, '10.0000', '1.9800', '1.9800', '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 (88980, '2022-06-07', 8040, 84240, 5396, NULL, '1.0000', '14.9000', '14.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 (88981, '2022-06-07', 8360, 84241, 5396, NULL, '1.0000', '3.2300', '3.2300', '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 (88982, '2022-06-07', 7516, 84242, 5396, NULL, '1.0000', '10.0000', '10.0000', '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 (88983, '2022-06-07', 8155, 84243, 5396, NULL, '5.0000', '65.0000', '65.0000', '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 (88984, '2022-06-07', 7316, 84244, 5396, NULL, '5.0000', '9.5500', '9.5500', '1.3000', '1.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 (88985, '2022-06-07', 7782, 84245, 5396, 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 (88986, '2022-06-07', 2242, 84246, 5396, 3059, '-53.0000', '0.4800', '0.4800', '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 (88987, '2022-06-07', 2242, 84246, 5396, NULL, '56.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88988, '2022-06-07', 7917, 84247, 5396, NULL, '1.0000', '5.0000', '5.0000', '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 (88989, '2022-06-07', 7730, 84248, 5396, NULL, '8.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (88990, '2022-06-07', 8053, 84249, 5396, NULL, '2.0000', '0.8000', '0.8000', '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 (88991, '2022-06-07', 8925, 84250, 5396, NULL, '1.0000', '2.4000', '2.4000', '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 (88992, '2022-06-07', 1782, 84251, 5396, 4900, '-7.0000', '2.9900', '2.9900', '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 (88993, '2022-06-07', 1782, 84251, 5396, NULL, '8.0000', '2.9900', '2.9900', '4.0000', '4.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 (88994, '2022-06-07', 7886, 84252, 5396, 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 (88995, '2022-06-07', 7885, 84253, 5396, NULL, '1.0000', '82.8700', '82.8700', '107.5000', '107.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88996, '2022-06-07', 1884, 84254, 5396, 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 (88997, '2022-06-07', 7558, 84255, 5396, NULL, '10.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (88998, '2022-06-07', 8359, 84256, 5396, NULL, '2.0000', '13.0000', '13.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 (88999, '2022-06-07', 8690, 84257, 5396, NULL, '1.0000', '10.8000', '10.8000', '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 (89000, '2022-06-07', 7554, 84258, 5396, NULL, '10.0000', '2.1000', '2.1000', '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 (89001, '2022-06-07', 1340, 84259, 5396, 13005, '-9.0000', '2.7025', '2.7025', '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 (89002, '2022-06-07', 1340, 84259, 5396, NULL, '10.0000', '2.7025', '2.7025', '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 (89003, '2022-06-07', 7819, 84260, 5396, NULL, '1.0000', '9.5000', '9.5000', '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 (89004, '2022-06-07', 7411, 84261, 5396, NULL, '2.0000', '1.3500', '1.3500', '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 (89005, '2022-06-07', 7672, 84262, 5396, NULL, '1.0000', '1.0200', '1.0200', '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 (89006, '2022-06-07', 9734, 84263, 5396, NULL, '2.0000', '0.3200', '0.3200', '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 (89007, '2022-06-07', 9729, 84264, 5396, NULL, '2.0000', '0.6200', '0.6200', '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 (89008, '2022-06-07', 7630, 84265, 5396, NULL, '1.0000', '10.0000', '10.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 (89009, '2022-06-07', 7380, 84266, 5396, NULL, '2.0000', '8.0000', '8.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 (89010, '2022-06-07', 8040, 84267, 5396, NULL, '1.0000', '14.9000', '14.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 (89011, '2022-06-07', 7317, 84268, 5396, NULL, '1.0000', '19.5500', '19.5500', '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 (89012, '2022-06-07', 8878, 84269, 5396, NULL, '2.0000', '6.6700', '6.6700', '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 (89013, '2022-06-07', 8547, 84270, 5396, NULL, '1.0000', '3.3500', '3.3500', '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 (89014, '2022-06-07', 9088, 84271, 5396, NULL, '1.0000', '15.4000', '15.4000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89015, '2022-06-07', 8067, 84272, 5396, NULL, '1.0000', '4.6900', '4.6900', '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 (89016, '2022-06-07', 8243, 84273, 5396, NULL, '10.0000', '1.1400', '1.1400', '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 (89017, '2022-06-07', 9390, 84274, 5396, NULL, '1.0000', '25.0000', '25.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 (89018, '2022-06-07', 9274, 84275, 5396, NULL, '1.0000', '3.6000', '3.6000', '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 (89019, '2022-06-07', 1837, 84276, 5396, 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 (89020, '2022-06-07', 8036, 84277, 5396, NULL, '1.0000', '6.7300', '6.7300', '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 (89021, '2022-06-07', 8512, 84278, 5396, NULL, '1.0000', '1.8000', '1.8000', '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 (89022, '2022-06-07', 9839, 84279, 5396, NULL, '1.0000', '15.0200', '15.0200', '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 (89023, '2022-06-07', 8622, 84280, 5396, 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 (89024, '2022-06-07', 8714, 84281, 5396, NULL, '1.0000', '5.2100', '5.2100', '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 (89025, '2022-06-07', 8132, 84282, 5396, NULL, '1.0000', '9.8000', '9.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 (89026, '2022-06-07', 8037, 84283, 5396, NULL, '1.0000', '1.7600', '1.7600', '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 (89027, '2022-06-07', 7385, 84284, 5396, NULL, '5.0000', '2.0000', '2.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 (89028, '2022-06-07', 7824, 84285, 5396, NULL, '1.0000', '8.0000', '8.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 (89029, '2022-06-07', 7730, 84286, 5396, NULL, '10.0000', '0.1000', '0.1000', '0.2000', '0.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 (89030, '2022-06-07', 9092, 84287, 5396, NULL, '2.0000', '5.2900', '5.2900', '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 (89031, '2022-06-07', 7518, 84288, 5396, NULL, '1.0000', '7.8200', '7.8200', '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 (89032, '2022-06-07', 9456, 84289, 5396, NULL, '1.0000', '3.3200', '3.3200', '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 (89033, '2022-06-07', 7736, 84290, 5396, NULL, '1.0000', '16.2000', '16.2000', '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 (89034, '2022-06-07', 1620, 84291, 5396, 8955, '-64.0000', '408.8259', '408.8259', '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 (89035, '2022-06-07', 1620, 84291, 5396, NULL, '65.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89036, '2022-06-07', 7781, 84292, 5396, NULL, '1.0000', '4.2500', '4.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 (89037, '2022-06-07', 7411, 84293, 5396, NULL, '2.0000', '1.3500', '1.3500', '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 (89038, '2022-06-07', 7637, 84294, 5396, NULL, '1.0000', '7.3300', '7.3300', '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 (89039, '2022-06-07', 7524, 84295, 5396, NULL, '1.0000', '11.9500', '11.9500', '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 (89040, '2022-06-07', 7689, 84296, 5396, NULL, '1.0000', '9.1000', '9.1000', '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 (89041, '2022-06-07', 7674, 84297, 5396, NULL, '1.0000', '1.3000', '1.3000', '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 (89042, '2022-06-07', 7473, 84298, 5396, NULL, '3.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (89043, '2022-06-07', 7630, 84299, 5396, NULL, '3.0000', '10.0000', '10.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 (89044, '2022-06-07', 8924, 84300, 5396, NULL, '1.0000', '4.5000', '4.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 (89045, '2022-06-07', 2295, 84301, 5396, 2954, '-12.0000', '0.9600', '0.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 (89046, '2022-06-07', 2295, 84301, 5396, NULL, '13.0000', '0.9600', '0.9600', '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 (89047, '2022-06-07', 2506, 84302, 5396, 16244, '-21.0000', '3.4900', '3.4900', '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 (89048, '2022-06-07', 2506, 84302, 5396, NULL, '22.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89049, '2022-06-07', 8548, 84303, 5396, NULL, '1.0000', '12.0000', '12.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 (89050, '2022-06-07', 7482, 84304, 5396, NULL, '1.0000', '3.0500', '3.0500', '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 (89051, '2022-06-07', 1688, 84305, 5396, 4896, '-13.0000', '18.5000', '18.5000', '31.5000', '31.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 (89052, '2022-06-07', 1688, 84305, 5396, NULL, '14.0000', '18.5000', '18.5000', '31.5000', '31.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 (89053, '2022-06-07', 7820, 84306, 5396, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89054, '2022-06-07', 7917, 84307, 5396, NULL, '1.0000', '5.0000', '5.0000', '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 (89055, '2022-06-07', 7509, 84308, 5396, 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 (89056, '2022-06-07', 8534, 84309, 5397, 33821, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89057, '2022-06-07', 7709, 84310, 5397, NULL, '2.0000', '3.5000', '3.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 (89058, '2022-06-07', 8208, 84311, 5397, NULL, '2.0000', '33.0000', '33.0000', '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 (89059, '2022-06-07', 7794, 84312, 5397, NULL, '1.0000', '9.8000', '9.8000', '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 (89060, '2022-06-07', 2169, 84313, 5398, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89061, '2022-06-07', 2315, 84314, 5398, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '133.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89062, '2022-06-07', 7585, 84315, 5398, NULL, '1.0000', '3.9600', '3.9600', '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 (89063, '2022-06-07', 7762, 84316, 5398, NULL, '1.0000', '7.6833', '7.6833', '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 (89064, '2022-06-07', 2169, 84317, 5398, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89065, '2022-06-07', 1520, 84318, 5398, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89066, '2022-06-07', 9788, 84319, 5398, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89067, '2022-06-07', 9740, 84320, 5398, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '121.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89068, '2022-06-07', 8677, 84321, 5398, NULL, '2.0000', '496.2705', '496.2705', '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 (89069, '2022-06-07', 2295, 84322, 5398, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89070, '2022-06-07', 1884, 84323, 5398, 55897, '1.0000', '17.4104', '17.4104', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89071, '2022-06-07', 2098, 84324, 5398, 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 (89072, '2022-06-07', 3029, 84325, 5398, 55674, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89073, '2022-06-07', 2169, 84326, 5398, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89074, '2022-06-07', 2821, 84327, 5398, 55709, '1.0000', '3.4146', '3.4146', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89075, '2022-06-07', 2315, 84328, 5398, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '133.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89076, '2022-06-07', 8677, 84329, 5398, NULL, '2.0000', '496.2705', '496.2705', '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 (89077, '2022-06-07', 2083, 84330, 5398, 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 (89078, '2022-06-07', 2906, 84331, 5398, NULL, '2.0000', '2.6000', '2.6000', '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 (89079, '2022-06-07', 9204, 84332, 5398, NULL, '1.0000', '14.1514', '14.1514', '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 (89080, '2022-06-07', 1602, 84333, 5398, 56469, '2.0000', '7.0635', '7.0635', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89081, '2022-06-07', 2295, 84334, 5398, 54913, '3.0000', '1.3151', '1.3151', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89082, '2022-06-07', 7672, 84335, 5398, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89083, '2022-06-07', 9905, 84336, 5398, 55158, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89084, '2022-06-07', 1571, 84337, 5398, NULL, '1.0000', '308.7500', '308.7500', '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 (89085, '2022-06-07', 1307, 84338, 5398, NULL, '1.0000', '-11.7284', '-11.7284', '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 (89086, '2022-06-07', 1520, 84339, 5398, 55638, '1.0000', '1.7570', '1.7570', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89087, '2022-06-07', 2169, 84340, 5398, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89088, '2022-06-07', 7678, 84341, 5398, NULL, '1.0000', '5.1400', '5.1400', '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 (89089, '2022-06-07', 2135, 84342, 5398, NULL, '1.0000', '-0.2588', '-0.2588', '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 (89090, '2022-06-07', 1672, 84343, 5398, 56440, '10.0000', '4.2348', '4.2348', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89091, '2022-06-07', 2295, 84344, 5398, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89092, '2022-06-07', 2964, 84345, 5398, NULL, '1.0000', '8.7347', '8.7347', '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 (89093, '2022-06-07', 1787, 84346, 5398, NULL, '1.0000', '0.5000', '0.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 (89094, '2022-06-07', 1810, 84347, 5398, NULL, '1.0000', '15.0116', '15.0116', '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 (89095, '2022-06-07', 1781, 84348, 5398, 56457, '1.0000', '5.4750', '5.4750', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89096, '2022-06-07', 1665, 84349, 5398, 55689, '2.0000', '1.1651', '1.1651', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89097, '2022-06-07', 2315, 84350, 5398, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '133.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89098, '2022-06-07', 2379, 84351, 5398, NULL, '1.0000', '-3.0170', '-3.0170', '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 (89099, '2022-06-07', 9834, 84352, 5398, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89100, '2022-06-07', 1771, 84353, 5398, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89101, '2022-06-07', 1935, 84354, 5398, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89102, '2022-06-07', 2681, 84355, 5398, 56388, '2.0000', '15.5000', '15.5000', '24.5000', '24.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89103, '2022-06-07', 2295, 84356, 5398, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89104, '2022-06-07', 1529, 84357, 5398, 51484, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89105, '2022-06-07', 1689, 84358, 5398, 56468, '1.0000', '15.5565', '15.5565', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89106, '2022-06-07', 2315, 84359, 5398, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '131.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89107, '2022-06-07', 1342, 84360, 5398, 56372, '1.0000', '7.4197', '7.4197', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89108, '2022-06-07', 2295, 84361, 5398, 54913, '2.0000', '1.3151', '1.3151', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89109, '2022-06-07', 1935, 84362, 5398, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89110, '2022-06-07', 2916, 84363, 5398, NULL, '1.0000', '538.9192', '538.9192', '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 (89111, '2022-06-07', 2169, 84364, 5398, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89112, '2022-06-07', 2224, 84365, 5398, 53640, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89113, '2022-06-07', 2085, 84366, 5398, NULL, '2.0000', '3.9526', '3.9526', '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 (89114, '2022-06-07', 2337, 84367, 5398, NULL, '1.0000', '51.0000', '51.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89115, '2022-06-07', 1519, 84368, 5398, 51485, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89116, '2022-06-07', 7584, 84369, 5398, 53945, '1.0000', '3.1378', '3.1378', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89117, '2022-06-07', 7483, 84370, 5398, NULL, '1.0000', '0.4200', '0.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 (89118, '2022-06-07', 2315, 84371, 5398, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '133.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89119, '2022-06-07', 2169, 84372, 5398, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89120, '2022-06-07', 1755, 84373, 5398, 48488, '1.0000', '5.8128', '5.8128', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89121, '2022-06-07', 2132, 84374, 5398, 22537, '1.0000', '21.0000', '21.0000', '32.0000', '32.0000', '0.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 (89122, '2022-06-07', 2435, 84375, 5398, NULL, '1.0000', '8.3687', '8.3687', '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 (89123, '2022-06-07', 1342, 84376, 5398, 56372, '1.0000', '7.4197', '7.4197', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89124, '2022-06-07', 7713, 84377, 5398, 55577, '3.0000', '-4.2437', '-4.2437', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89125, '2022-06-07', 1888, 84378, 5398, 56371, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89126, '2022-06-07', 8933, 84379, 5398, NULL, '1.0000', '8.7500', '8.7500', '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 (89127, '2022-06-07', 2916, 84380, 5398, NULL, '1.0000', '538.9192', '538.9192', '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 (89128, '2022-06-07', 7318, 84381, 5398, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89129, '2022-06-07', 1668, 84382, 5398, 51486, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89130, '2022-06-07', 8677, 84383, 5398, NULL, '2.0000', '496.2705', '496.2705', '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 (89131, '2022-06-07', 7612, 84384, 5398, NULL, '2.0000', '1.6100', '1.6100', '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 (89132, '2022-06-07', 2315, 84385, 5398, 54938, '6.0000', '0.7701', '0.7701', '1.0000', '1.0000', '128.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89133, '2022-06-07', 8677, 84386, 5398, NULL, '2.0000', '496.2705', '496.2705', '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 (89134, '2022-06-07', 9844, 84387, 5398, 51397, '3.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89135, '2022-06-07', 8740, 84388, 5398, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89136, '2022-06-07', 9634, 84389, 5398, 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 (89137, '2022-06-07', 2332, 84390, 5398, 55905, '1.0000', '32.4933', '32.4933', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89138, '2022-06-07', 8744, 84391, 5398, 55422, '1.0000', '2.1255', '2.1255', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89139, '2022-06-07', 2916, 84392, 5398, NULL, '1.0000', '538.9192', '538.9192', '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 (89140, '2022-06-07', 1529, 84393, 5398, 51484, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89141, '2022-06-07', 1810, 84394, 5398, NULL, '1.0000', '15.0116', '15.0116', '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 (89142, '2022-06-07', 2169, 84395, 5398, 55701, '3.0000', '1.6119', '1.6119', '2.5000', '2.5000', '106.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89143, '2022-06-07', 8155, 84396, 5398, NULL, '2.0000', '65.0000', '65.0000', '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 (89144, '2022-06-07', 2315, 84397, 5398, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '131.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89145, '2022-06-07', 1839, 84398, 5398, NULL, '1.0000', '17468.6132', '17468.6132', '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 (89146, '2022-06-07', 9695, 84399, 5398, 56629, '1.0000', '5.1867', '5.1867', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89147, '2022-06-07', 2315, 84400, 5398, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '133.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89148, '2022-06-07', 2169, 84401, 5398, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89149, '2022-06-07', 2381, 84402, 5398, 56373, '1.0000', '14.1080', '14.1080', '19.0000', '19.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89150, '2022-06-07', 2169, 84403, 5398, 55701, '3.0000', '1.6119', '1.6119', '2.5000', '2.5000', '106.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89151, '2022-06-07', 9834, 84404, 5398, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89152, '2022-06-07', 7324, 84405, 5398, 51663, '1.0000', '5.4813', '5.4813', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89153, '2022-06-07', 7324, 84405, 5398, NULL, '1.0000', '5.4813', '5.4813', '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 (89154, '2022-06-07', 8362, 84406, 5398, NULL, '5.0000', '4.1000', '4.1000', '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 (89155, '2022-06-07', 2302, 84407, 5398, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89156, '2022-06-07', 1935, 84408, 5398, 48471, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89157, '2022-06-07', 9204, 84409, 5398, NULL, '1.0000', '14.1514', '14.1514', '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 (89158, '2022-06-07', 1519, 84410, 5398, 51485, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89159, '2022-06-07', 9841, 84411, 5398, 55669, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89160, '2022-06-07', 1840, 84412, 5398, 55654, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89161, '2022-06-07', 1905, 84413, 5398, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89162, '2022-06-07', 1935, 84414, 5398, 48471, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89163, '2022-06-07', 2821, 84415, 5398, 55709, '2.0000', '3.4146', '3.4146', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89164, '2022-06-07', 7741, 84416, 5398, NULL, '1.0000', '-52.1460', '-52.1460', '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 (89165, '2022-06-07', 1529, 84417, 5398, 51484, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89166, '2022-06-07', 2066, 84418, 5398, 54883, '3.0000', '0.5100', '0.5100', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89167, '2022-06-07', 1519, 84419, 5398, 51485, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89168, '2022-06-07', 7411, 84420, 5398, NULL, '1.0000', '1.3013', '1.3013', '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 (89169, '2022-06-07', 8844, 84421, 5398, 55665, '1.0000', '4.0579', '4.0579', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89170, '2022-06-07', 2640, 84422, 5398, NULL, '1.0000', '7.0400', '7.0400', '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 (89171, '2022-06-07', 9844, 84423, 5398, 51397, '2.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89172, '2022-06-07', 1665, 84424, 5398, 55689, '2.0000', '1.1651', '1.1651', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89173, '2022-06-07', 1340, 84425, 5398, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89174, '2022-06-07', 9846, 84426, 5398, 56462, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89175, '2022-06-07', 2342, 84427, 5398, 54886, '1.0000', '2.2091', '2.2091', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89176, '2022-06-07', 1935, 84428, 5398, 48471, '3.0000', '0.7671', '0.7671', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89177, '2022-06-07', 9469, 84429, 5398, 51026, '1.0000', '3.4000', '3.4000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89178, '2022-06-07', 2986, 84430, 5398, 51665, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89179, '2022-06-07', 1999, 84431, 5398, 56865, '1.0000', '-8.5911', '-8.5911', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89180, '2022-06-07', 2036, 84432, 5398, 22535, '1.0000', '8.5000', '8.5000', '15.0000', '15.0000', '0.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 (89181, '2022-06-07', 1577, 84433, 5398, NULL, '1.0000', '1.6245', '1.6245', '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 (89182, '2022-06-07', 1529, 84434, 5398, 51484, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89183, '2022-06-07', 9841, 84435, 5398, 55669, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89184, '2022-06-07', 7411, 84436, 5398, NULL, '2.0000', '1.3013', '1.3013', '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 (89185, '2022-06-07', 7743, 84437, 5398, NULL, '1.0000', '7.3900', '7.3900', '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 (89186, '2022-06-07', 1519, 84438, 5398, 51485, '1.0000', '3.6486', '3.6486', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89187, '2022-06-07', 8680, 84439, 5398, NULL, '1.0000', '2.0000', '2.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 (89188, '2022-06-07', 1810, 84440, 5398, NULL, '1.0000', '15.0116', '15.0116', '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 (89189, '2022-06-07', 1871, 84441, 5398, NULL, '4.0000', '-16.6248', '-16.6248', '3.7000', '3.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 (89190, '2022-06-07', 8677, 84442, 5398, NULL, '2.0000', '496.2705', '496.2705', '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 (89191, '2022-06-07', 9834, 84443, 5398, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89192, '2022-06-07', 9844, 84444, 5398, 51397, '2.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89193, '2022-06-08', 7753, 84445, 5399, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89194, '2022-06-08', 7708, 84446, 5399, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89195, '2022-06-08', 7518, 84447, 5399, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89196, '2022-06-08', 2315, 84448, 5399, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89197, '2022-06-08', 2242, 84449, 5399, 56030, '2.0000', '0.6908', '0.6908', '1.5000', '1.5000', '141.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89198, '2022-06-08', 8454, 84450, 5399, 45779, '1.0000', '5.1700', '5.1700', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89199, '2022-06-08', 1804, 84451, 5399, 54104, '1.0000', '5.3179', '5.3179', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89200, '2022-06-08', 7769, 84452, 5399, 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 (89201, '2022-06-08', 9729, 84453, 5399, 56613, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89202, '2022-06-08', 7749, 84454, 5399, 56562, '1.0000', '19.5533', '19.5533', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89203, '2022-06-08', 7674, 84455, 5399, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89204, '2022-06-08', 8918, 84456, 5399, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89205, '2022-06-08', 9794, 84457, 5399, 50668, '4.0000', '1.0800', '1.0800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89206, '2022-06-08', 9729, 84458, 5399, 56613, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89207, '2022-06-08', 7518, 84459, 5399, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89208, '2022-06-08', 8658, 84460, 5399, NULL, '1.0000', '17.1000', '17.1000', '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 (89209, '2022-06-08', 7753, 84461, 5399, 56672, '1.0000', '3.4704', '3.4704', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89210, '2022-06-08', 8972, 84462, 5399, NULL, '2.0000', '4.5000', '4.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 (89211, '2022-06-08', 2295, 84463, 5399, NULL, '3.0000', '-2.3086', '-2.3086', '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 (89212, '2022-06-08', 9895, 84464, 5399, 54443, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '40.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89213, '2022-06-08', 7824, 84465, 5399, NULL, '1.0000', '77263.6670', '77263.6670', '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 (89214, '2022-06-08', 9028, 84466, 5399, 46232, '2.0000', '5.6880', '5.6880', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89215, '2022-06-08', 7531, 84467, 5399, NULL, '1.0000', '46.2794', '46.2794', '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 (89216, '2022-06-08', 7588, 84468, 5399, NULL, '1.0000', '2.4520', '2.4520', '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 (89217, '2022-06-08', 7317, 84469, 5399, 56664, '1.0000', '14.6329', '14.6329', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89218, '2022-06-08', 1855, 84470, 5399, 56023, '2.0000', '1.4699', '1.4699', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89219, '2022-06-08', 9620, 84471, 5399, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89220, '2022-06-08', 2411, 84472, 5399, 52726, '3.0000', '60.4658', '60.4658', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89221, '2022-06-08', 7666, 84473, 5399, 56570, '1.0000', '8.5480', '8.5480', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89222, '2022-06-08', 7518, 84474, 5399, 56686, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89223, '2022-06-08', 9715, 84475, 5399, 56665, '1.0000', '9.7529', '9.7529', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89224, '2022-06-08', 7641, 84476, 5399, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89225, '2022-06-08', 7412, 84477, 5399, 56025, '2.0000', '2.1023', '2.1023', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89226, '2022-06-08', 9084, 84478, 5399, 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 (89227, '2022-06-08', 7642, 84479, 5399, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89228, '2022-06-08', 7730, 84480, 5399, 56499, '1.0000', '0.1000', '0.1000', '0.2000', '0.2000', '83.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89229, '2022-06-08', 9499, 84481, 5399, 54447, '1.0000', '26.5000', '26.5000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89230, '2022-06-08', 9747, 84482, 5399, 56183, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89231, '2022-06-08', 7629, 84483, 5399, NULL, '1.0000', '-167.0500', '-167.0500', '240.0000', '240.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89232, '2022-06-08', 8878, 84484, 5399, 54503, '2.0000', '-1.0664', '-1.0664', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89233, '2022-06-08', 8063, 84485, 5399, 46909, '2.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '85.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89234, '2022-06-08', 7385, 84486, 5399, 56578, '2.0000', '9.0049', '9.0049', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89235, '2022-06-08', 2916, 84487, 5400, NULL, '1.0000', '538.9192', '538.9192', '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 (89236, '2022-06-08', 8068, 84488, 5400, NULL, '1.0000', '8.7900', '8.7900', '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 (89237, '2022-06-08', 1529, 84489, 5400, 50073, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89238, '2022-06-08', 1863, 84490, 5400, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89239, '2022-06-08', 2379, 84491, 5400, NULL, '1.0000', '-3.0170', '-3.0170', '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 (89240, '2022-06-08', 2099, 84492, 5400, 51213, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89241, '2022-06-08', 1425, 84493, 5400, NULL, '1.0000', '2.8872', '2.8872', '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 (89242, '2022-06-08', 1912, 84494, 5400, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89243, '2022-06-08', 1837, 84495, 5400, 56452, '2.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89244, '2022-06-08', 2169, 84496, 5400, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '95.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89245, '2022-06-08', 7574, 84497, 5400, NULL, '1.0000', '8.2900', '8.2900', '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 (89246, '2022-06-08', 9827, 84498, 5400, NULL, '1.0000', '16.6600', '16.6600', '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 (89247, '2022-06-08', 2916, 84499, 5400, NULL, '1.0000', '538.9192', '538.9192', '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 (89248, '2022-06-08', 1702, 84500, 5400, NULL, '1.0000', '10.8300', '10.8300', '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 (89249, '2022-06-08', 2221, 84501, 5400, NULL, '1.0000', '12.6522', '12.6522', '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 (89250, '2022-06-08', 1529, 84502, 5400, 50073, '1.0000', '4.1987', '4.1987', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89251, '2022-06-08', 1501, 84503, 5400, NULL, '1.0000', '0.9225', '0.9225', '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 (89252, '2022-06-08', 1409, 84504, 5400, 55894, '2.0000', '13.1111', '13.1111', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89253, '2022-06-08', 1863, 84505, 5400, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89254, '2022-06-08', 2169, 84506, 5400, 55701, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89255, '2022-06-08', 2965, 84507, 5400, NULL, '1.0000', '8.3288', '8.3288', '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 (89256, '2022-06-08', 2221, 84508, 5400, NULL, '1.0000', '12.6522', '12.6522', '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 (89257, '2022-06-08', 2169, 84509, 5400, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '95.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89258, '2022-06-08', 7867, 84510, 5400, NULL, '3.0000', '2.7700', '2.7700', '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 (89259, '2022-06-08', 2169, 84511, 5400, 55701, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89260, '2022-06-08', 2169, 84512, 5400, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '95.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89261, '2022-06-08', 9791, 84513, 5400, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89262, '2022-06-08', 9891, 84514, 5400, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89263, '2022-06-08', 1574, 84515, 5400, 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 (89264, '2022-06-08', 7756, 84516, 5400, NULL, '1.0000', '2.5000', '2.5000', '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 (89265, '2022-06-08', 8677, 84517, 5400, NULL, '2.0000', '496.2705', '496.2705', '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 (89266, '2022-06-08', 9813, 84518, 5400, 50253, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89267, '2022-06-08', 2318, 84519, 5400, 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 (89268, '2022-06-08', 3044, 84520, 5400, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '23.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 (89269, '2022-06-08', 1871, 84521, 5400, NULL, '21.0000', '-16.6248', '-16.6248', '3.7000', '3.7000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89270, '2022-06-08', 1867, 84522, 5400, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89271, '2022-06-08', 9848, 84523, 5400, NULL, '1.0000', '2.8000', '2.8000', '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 (89272, '2022-06-08', 9846, 84524, 5400, 56462, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89273, '2022-06-08', 9737, 84525, 5400, 55942, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89274, '2022-06-08', 1837, 84526, 5400, 56452, '2.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89275, '2022-06-08', 1787, 84527, 5400, NULL, '1.0000', '0.5000', '0.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 (89276, '2022-06-08', 2236, 84528, 5400, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89277, '2022-06-08', 8813, 84529, 5400, 55544, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89278, '2022-06-08', 1841, 84530, 5400, 55655, '3.0000', '0.7630', '0.7630', '0.5000', '0.5000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89279, '2022-06-08', 9941, 84531, 5401, 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 (89280, '2022-06-08', 7953, 84532, 5401, NULL, '1.0000', '-0.5345', '-0.5345', '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 (89281, '2022-06-08', 2971, 84533, 5401, 56861, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89282, '2022-06-08', 2223, 84534, 5402, NULL, '1.0000', '-1.8580', '-1.8580', '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 (89283, '2022-06-08', 2546, 84535, 5402, NULL, '1.0000', '25.2500', '25.2500', '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 (89284, '2022-06-08', 9399, 84536, 5403, NULL, '1.0000', '0.9794', '0.9794', '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 (89285, '2022-06-08', 7709, 84537, 5403, NULL, '2.0000', '448.3483', '448.3483', '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 (89286, '2022-06-08', 2027, 84538, 5403, 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 (89287, '2022-06-08', 7892, 84539, 5403, NULL, '2.0000', '5.3403', '5.3403', '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 (89288, '2022-06-08', 7820, 84540, 5403, NULL, '1.0000', '-296.8250', '-296.8250', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89289, '2022-06-08', 7509, 84541, 5403, 56702, '1.0000', '10.9499', '10.9499', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89290, '2022-06-08', 8680, 84542, 5403, NULL, '1.0000', '2.0000', '2.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 (89291, '2022-06-08', 9274, 84543, 5403, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89292, '2022-06-08', 7411, 84544, 5403, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89293, '2022-06-08', 7984, 84545, 5403, NULL, '1.0000', '32.8375', '32.8375', '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 (89294, '2022-06-08', 7317, 84546, 5403, 56664, '1.0000', '14.6329', '14.6329', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89295, '2022-06-08', 7558, 84547, 5403, NULL, '6.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-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 (89296, '2022-06-08', 9741, 84548, 5403, 46920, '1.0000', '7.6000', '7.6000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89297, '2022-06-08', 1769, 84549, 5403, 44740, '1.0000', '26.8000', '26.8000', '35.5000', '35.5000', '1.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89298, '2022-06-08', 1845, 84550, 5403, 56592, '1.0000', '22.2501', '22.2501', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89299, '2022-06-08', 9747, 84551, 5403, 56183, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89300, '2022-06-08', 1812, 84552, 5404, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89301, '2022-06-08', 1884, 84553, 5404, 55897, '1.0000', '17.4104', '17.4104', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89302, '2022-06-08', 8878, 84554, 5404, 56424, '3.0000', '3.8136', '3.8136', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89303, '2022-06-08', 7555, 84555, 5404, 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 (89304, '2022-06-08', 9649, 84556, 5404, NULL, '1.0000', '14.2780', '14.2780', '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 (89305, '2022-06-08', 2916, 84557, 5404, NULL, '1.0000', '538.9192', '538.9192', '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 (89306, '2022-06-08', 7444, 84558, 5405, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89307, '2022-06-08', 7736, 84559, 5405, NULL, '1.0000', '16.2000', '16.2000', '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 (89308, '2022-06-08', 9695, 84560, 5405, NULL, '1.0000', '4.5000', '4.5000', '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 (89309, '2022-06-08', 7346, 84561, 5405, NULL, '1.0000', '112.0000', '112.0000', '121.0000', '121.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89310, '2022-06-08', 9817, 84562, 5405, NULL, '1.0000', '3.9000', '3.9000', '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 (89311, '2022-06-08', 3044, 84563, 5405, NULL, '1.0000', '0.4000', '0.4000', '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 (89312, '2022-06-08', 7560, 84564, 5405, NULL, '1.0000', '33.0200', '33.0200', '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 (89313, '2022-06-08', 7707, 84565, 5405, NULL, '1.0000', '7.0000', '7.0000', '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 (89314, '2022-06-08', 7911, 84566, 5405, NULL, '1.0000', '4.3700', '4.3700', '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 (89315, '2022-06-08', 1644, 84567, 5405, 3216, '-9.0000', '33.8200', '33.8200', '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 (89316, '2022-06-08', 1644, 84567, 5405, NULL, '10.0000', '33.8200', '33.8200', '51.0000', '51.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 (89317, '2022-06-08', 9329, 84568, 5405, NULL, '1.0000', '6.7000', '6.7000', '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 (89318, '2022-06-08', 7385, 84569, 5405, NULL, '2.0000', '2.0000', '2.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 (89319, '2022-06-08', 7547, 84570, 5405, NULL, '2.0000', '0.0000', '0.0000', '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 (89320, '2022-06-08', 1337, 84571, 5405, 10809, '-22.0000', '2.0000', '2.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 (89321, '2022-06-08', 1337, 84571, 5405, NULL, '23.0000', '2.0000', '2.0000', '3.5000', '3.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 (89322, '2022-06-08', 7460, 84572, 5405, 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 (89323, '2022-06-08', 8949, 84573, 5405, 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 (89324, '2022-06-08', 9783, 84574, 5405, NULL, '1.0000', '17.6000', '17.6000', '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 (89325, '2022-06-08', 9724, 84575, 5405, NULL, '1.0000', '20.3000', '20.3000', '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 (89326, '2022-06-08', 1904, 84576, 5405, 5442, '-57.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 (89327, '2022-06-08', 1904, 84576, 5405, NULL, '58.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89328, '2022-06-08', 7611, 84577, 5405, NULL, '1.0000', '4.4000', '4.4000', '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 (89329, '2022-06-08', 7917, 84578, 5405, NULL, '4.0000', '5.0000', '5.0000', '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 (89330, '2022-06-08', 2287, 84579, 5405, 2947, '-33.0000', '1.8000', '1.8000', '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 (89331, '2022-06-08', 2287, 84579, 5405, NULL, '37.0000', '1.8000', '1.8000', '4.0000', '4.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89332, '2022-06-08', 9092, 84580, 5405, NULL, '4.0000', '5.2900', '5.2900', '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 (89333, '2022-06-08', 9794, 84581, 5405, NULL, '1.0000', '1.0800', '1.0800', '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 (89334, '2022-06-08', 8360, 84582, 5405, NULL, '1.0000', '3.2300', '3.2300', '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 (89335, '2022-06-08', 2315, 84583, 5405, 2735, '-431.0000', '0.3300', '0.3300', '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 (89336, '2022-06-08', 2315, 84583, 5405, NULL, '432.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-432.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89337, '2022-06-08', 7926, 84584, 5405, 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 (89338, '2022-06-08', 7411, 84585, 5405, NULL, '3.0000', '1.3500', '1.3500', '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 (89339, '2022-06-08', 1577, 84586, 5405, 7596, '-15.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 (89340, '2022-06-08', 1577, 84586, 5405, NULL, '16.0000', '2.5000', '2.5000', '4.0000', '4.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 (89341, '2022-06-08', 8677, 84587, 5405, NULL, '1.0000', '1.2800', '1.2800', '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 (89342, '2022-06-08', 7776, 84588, 5405, 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 (89343, '2022-06-08', 7899, 84589, 5405, NULL, '1.0000', '3.3000', '3.3000', '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 (89344, '2022-06-08', 7694, 84590, 5405, NULL, '5.0000', '4.7900', '4.7900', '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 (89345, '2022-06-08', 7883, 84591, 5405, NULL, '1.0000', '34.0000', '34.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 (89346, '2022-06-08', 7865, 84592, 5405, NULL, '1.0000', '1.6300', '1.6300', '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 (89347, '2022-06-08', 7674, 84593, 5405, NULL, '1.0000', '1.3000', '1.3000', '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 (89348, '2022-06-08', 1855, 84594, 5405, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (89349, '2022-06-08', 7859, 84595, 5405, NULL, '1.0000', '12.6300', '12.6300', '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 (89350, '2022-06-08', 7524, 84596, 5405, NULL, '2.0000', '11.9500', '11.9500', '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 (89351, '2022-06-08', 8539, 84597, 5405, NULL, '2.0000', '31.8000', '31.8000', '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 (89352, '2022-06-08', 7711, 84598, 5405, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89353, '2022-06-08', 2061, 84599, 5405, 2164, '-8.0000', '10.9800', '10.9800', '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 (89354, '2022-06-08', 2061, 84599, 5405, NULL, '9.0000', '10.9800', '10.9800', '17.5000', '17.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 (89355, '2022-06-08', 8878, 84600, 5405, NULL, '3.0000', '6.6700', '6.6700', '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 (89356, '2022-06-08', 9209, 84601, 5405, NULL, '1.0000', '4.8000', '4.8000', '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 (89357, '2022-06-08', 2315, 84602, 5405, 2735, '-431.0000', '0.3300', '0.3300', '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 (89358, '2022-06-08', 2315, 84602, 5405, NULL, '432.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-432.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89359, '2022-06-08', 9747, 84603, 5405, NULL, '1.0000', '0.6500', '0.6500', '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 (89360, '2022-06-08', 7741, 84604, 5405, NULL, '1.0000', '1.2000', '1.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 (89361, '2022-06-08', 1935, 84605, 5405, 5586, '-108.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 (89362, '2022-06-08', 1935, 84605, 5405, NULL, '110.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89363, '2022-06-08', 9791, 84606, 5405, 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 (89364, '2022-06-08', 7657, 84607, 5405, NULL, '1.0000', '11.3200', '11.3200', '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 (89365, '2022-06-08', 7999, 84608, 5405, NULL, '1.0000', '1.7500', '1.7500', '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 (89366, '2022-06-08', 8200, 84609, 5405, NULL, '1.0000', '6.2600', '6.2600', '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 (89367, '2022-06-08', 8032, 84610, 5405, NULL, '1.0000', '6.4400', '6.4400', '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 (89368, '2022-06-08', 1651, 84611, 5406, NULL, '1.0000', '8.2255', '8.2255', '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 (89369, '2022-06-08', 1871, 84612, 5406, NULL, '3.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (89370, '2022-06-08', 7472, 84613, 5406, NULL, '1.0000', '-56.4939', '-56.4939', '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 (89371, '2022-06-08', 2250, 84614, 5406, 57067, '1.0000', '8.6441', '8.6441', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89372, '2022-06-08', 7806, 84615, 5406, 39775, '5.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89373, '2022-06-08', 9819, 84616, 5406, 55635, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89374, '2022-06-08', 7514, 84617, 5406, NULL, '1.0000', '2.2500', '2.2500', '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 (89375, '2022-06-08', 9695, 84618, 5406, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '41.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89376, '2022-06-08', 9794, 84619, 5406, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89377, '2022-06-08', 9844, 84620, 5406, 51397, '2.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89378, '2022-06-08', 2293, 84621, 5406, NULL, '3.0000', '-17.4320', '-17.4320', '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 (89379, '2022-06-08', 2821, 84622, 5406, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89380, '2022-06-08', 2237, 84623, 5406, 51305, '2.0000', '58.1889', '58.1889', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89381, '2022-06-08', 8677, 84624, 5406, NULL, '2.0000', '496.2705', '496.2705', '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 (89382, '2022-06-08', 2916, 84625, 5406, NULL, '1.0000', '777.2552', '777.2552', '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 (89383, '2022-06-08', 1361, 84626, 5406, 51385, '1.0000', '50.9300', '50.9300', '74.0000', '74.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89384, '2022-06-08', 2460, 84627, 5406, 56390, '1.0000', '34.4280', '34.4280', '44.6200', '44.6200', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89385, '2022-06-08', 9794, 84628, 5406, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89386, '2022-06-08', 2410, 84629, 5406, 55671, '1.0000', '4.5240', '4.5240', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89387, '2022-06-08', 9735, 84630, 5406, 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 (89388, '2022-06-08', 9204, 84631, 5406, NULL, '1.0000', '14.1514', '14.1514', '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 (89389, '2022-06-08', 2169, 84632, 5406, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89390, '2022-06-08', 7741, 84633, 5406, NULL, '1.0000', '-52.1460', '-52.1460', '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 (89391, '2022-06-08', 2315, 84634, 5406, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '116.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89392, '2022-06-08', 1529, 84635, 5406, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89393, '2022-06-08', 1840, 84636, 5406, 55654, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89394, '2022-06-08', 1840, 84636, 5406, NULL, '2.0000', '0.2400', '0.2400', '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 (89395, '2022-06-08', 7472, 84637, 5406, NULL, '1.0000', '-56.4939', '-56.4939', '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 (89396, '2022-06-08', 2315, 84638, 5406, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '116.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89397, '2022-06-08', 1577, 84639, 5406, NULL, '1.0000', '1.6245', '1.6245', '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 (89398, '2022-06-08', 7514, 84640, 5406, NULL, '1.0000', '2.2500', '2.2500', '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 (89399, '2022-06-08', 2315, 84641, 5406, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '116.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89400, '2022-06-08', 2169, 84642, 5406, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89401, '2022-06-08', 1493, 84643, 5406, NULL, '1.0000', '-27.3400', '-27.3400', '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 (89402, '2022-06-08', 9695, 84644, 5406, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '41.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89403, '2022-06-08', 7411, 84645, 5406, NULL, '1.0000', '1.3013', '1.3013', '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 (89404, '2022-06-08', 2384, 84646, 5406, NULL, '1.0000', '-0.4538', '-0.4538', '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 (89405, '2022-06-08', 2916, 84647, 5406, NULL, '1.0000', '777.2552', '777.2552', '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 (89406, '2022-06-08', 1602, 84648, 5406, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89407, '2022-06-08', 7411, 84649, 5406, NULL, '1.0000', '1.3013', '1.3013', '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 (89408, '2022-06-08', 1342, 84650, 5406, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89409, '2022-06-08', 2315, 84651, 5406, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '116.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89410, '2022-06-08', 2916, 84652, 5406, NULL, '1.0000', '777.2552', '777.2552', '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 (89411, '2022-06-08', 8878, 84653, 5406, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89412, '2022-06-08', 7411, 84654, 5406, NULL, '1.0000', '1.3013', '1.3013', '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 (89413, '2022-06-08', 1904, 84655, 5406, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89414, '2022-06-08', 1342, 84656, 5406, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89415, '2022-06-08', 1687, 84657, 5406, 56467, '1.0000', '14.1684', '14.1684', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89416, '2022-06-08', 7411, 84658, 5406, NULL, '1.0000', '1.3013', '1.3013', '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 (89417, '2022-06-08', 2821, 84659, 5406, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89418, '2022-06-08', 2066, 84660, 5406, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89419, '2022-06-08', 1856, 84661, 5406, NULL, '1.0000', '20.0009', '20.0009', '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 (89420, '2022-06-08', 2277, 84662, 5406, NULL, '1.0000', '0.9399', '0.9399', '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 (89421, '2022-06-08', 2108, 84663, 5406, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89422, '2022-06-08', 9888, 84664, 5406, 54517, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89423, '2022-06-08', 1810, 84665, 5406, NULL, '1.0000', '15.0116', '15.0116', '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 (89424, '2022-06-08', 2293, 84666, 5406, NULL, '3.0000', '-17.4320', '-17.4320', '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 (89425, '2022-06-08', 8740, 84667, 5406, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89426, '2022-06-08', 8835, 84668, 5406, 57150, '1.0000', '7.0000', '7.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89427, '2022-06-08', 1410, 84669, 5406, NULL, '1.0000', '48.8052', '48.8052', '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 (89428, '2022-06-08', 1529, 84670, 5406, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89429, '2022-06-08', 2277, 84671, 5406, NULL, '1.0000', '0.9399', '0.9399', '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 (89430, '2022-06-08', 2730, 84672, 5406, 51643, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89431, '2022-06-08', 8878, 84673, 5406, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89432, '2022-06-08', 1904, 84674, 5406, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89433, '2022-06-08', 1812, 84675, 5406, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89434, '2022-06-08', 2108, 84676, 5406, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89435, '2022-06-08', 2821, 84677, 5406, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89436, '2022-06-08', 9204, 84678, 5406, NULL, '1.0000', '14.1514', '14.1514', '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 (89437, '2022-06-08', 2451, 84679, 5406, NULL, '1.0000', '8.8000', '8.8000', '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 (89438, '2022-06-08', 7585, 84680, 5406, NULL, '1.0000', '3.9600', '3.9600', '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 (89439, '2022-06-08', 1982, 84681, 5406, 53417, '1.0000', '-2.3133', '-2.3133', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89440, '2022-06-08', 2299, 84682, 5406, 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 (89441, '2022-06-08', 1519, 84683, 5406, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89442, '2022-06-08', 1935, 84684, 5406, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89443, '2022-06-08', 9791, 84685, 5406, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89444, '2022-06-08', 2250, 84686, 5406, 57067, '1.0000', '8.6441', '8.6441', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89445, '2022-06-08', 1840, 84687, 5407, NULL, '10.0000', '0.2400', '0.2400', '0.5000', '0.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 (89446, '2022-06-08', 8878, 84688, 5407, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89447, '2022-06-08', 7713, 84689, 5407, 57060, '1.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89448, '2022-06-08', 7459, 84690, 5407, NULL, '5.0000', '-15.3118', '-15.3118', '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 (89449, '2022-06-08', 2285, 84691, 5407, NULL, '1.0000', '9.3380', '9.3380', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89450, '2022-06-08', 1529, 84692, 5407, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89451, '2022-06-08', 9827, 84693, 5407, 57120, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89452, '2022-06-08', 7411, 84694, 5407, NULL, '1.0000', '1.3013', '1.3013', '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 (89453, '2022-06-08', 1826, 84695, 5407, 19385, '1.0000', '0.2100', '0.2100', '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 (89454, '2022-06-08', 7658, 84696, 5408, NULL, '4.0000', '2.0200', '2.0200', '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 (89455, '2022-06-08', 1912, 84697, 5408, NULL, '2.0000', '0.3200', '0.3200', '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 (89456, '2022-06-08', 2315, 84698, 5408, 2735, '-433.0000', '0.3300', '0.3300', '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 (89457, '2022-06-08', 2315, 84698, 5408, NULL, '434.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-434.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89458, '2022-06-08', 7730, 84699, 5408, NULL, '4.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (89459, '2022-06-08', 7674, 84700, 5408, NULL, '1.0000', '1.3000', '1.3000', '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 (89460, '2022-06-08', 7709, 84701, 5408, NULL, '2.0000', '3.5000', '3.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 (89461, '2022-06-08', 7385, 84702, 5408, NULL, '2.0000', '2.0000', '2.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 (89462, '2022-06-08', 7635, 84703, 5408, NULL, '1.0000', '13.7500', '13.7500', '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 (89463, '2022-06-08', 8040, 84704, 5408, NULL, '1.0000', '14.9000', '14.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 (89464, '2022-06-08', 7509, 84705, 5408, NULL, '2.0000', '6.5000', '6.5000', '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 (89465, '2022-06-08', 2098, 84706, 5408, 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 (89466, '2022-06-08', 9865, 84707, 5408, 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 (89467, '2022-06-08', 1856, 84708, 5408, NULL, '1.0000', '4.2500', '4.2500', '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 (89468, '2022-06-08', 7317, 84709, 5408, NULL, '1.0000', '19.5500', '19.5500', '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 (89469, '2022-06-08', 7736, 84710, 5408, NULL, '1.0000', '16.2000', '16.2000', '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 (89470, '2022-06-08', 8878, 84711, 5408, NULL, '1.0000', '6.6700', '6.6700', '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 (89471, '2022-06-08', 7518, 84712, 5408, NULL, '1.0000', '7.8200', '7.8200', '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 (89472, '2022-06-08', 7917, 84713, 5408, NULL, '1.0000', '5.0000', '5.0000', '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 (89473, '2022-06-08', 1499, 84714, 5409, 54918, '3.0000', '0.3993', '0.3993', '0.6000', '0.6000', '25.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89474, '2022-06-08', 8677, 84715, 5409, NULL, '2.0000', '496.2705', '496.2705', '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 (89475, '2022-06-08', 8878, 84716, 5409, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89476, '2022-06-08', 1398, 84717, 5409, 53656, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89477, '2022-06-09', 8702, 84718, 5410, NULL, '1.0000', '3.6700', '3.6700', '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 (89478, '2022-06-09', 7514, 84719, 5410, NULL, '1.0000', '17929.5233', '17929.5233', '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 (89479, '2022-06-09', 2279, 84720, 5410, 56502, '1.0000', '2.7380', '2.7380', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89480, '2022-06-09', 8457, 84721, 5410, NULL, '1.0000', '4.9044', '4.9044', '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 (89481, '2022-06-09', 9716, 84722, 5410, 56571, '1.0000', '4.8737', '4.8737', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89482, '2022-06-09', 7385, 84723, 5410, 56578, '2.0000', '9.0049', '9.0049', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89483, '2022-06-09', 7317, 84724, 5410, 57166, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89484, '2022-06-09', 9155, 84725, 5410, NULL, '1.0000', '1.8000', '1.8000', '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 (89485, '2022-06-09', 9762, 84726, 5410, 46935, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89486, '2022-06-09', 7514, 84727, 5410, NULL, '1.0000', '17929.5233', '17929.5233', '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 (89487, '2022-06-09', 7411, 84728, 5410, 56187, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89488, '2022-06-09', 2315, 84729, 5410, 56594, '1.0000', '0.7474', '0.7474', '1.0000', '1.0000', '77.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89489, '2022-06-09', 7385, 84730, 5410, 56578, '5.0000', '9.0049', '9.0049', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89490, '2022-06-09', 7980, 84731, 5410, NULL, '10.0000', '-31.7682', '-31.7682', '0.8000', '0.8000', '-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 (89491, '2022-06-09', 7521, 84732, 5410, 56560, '1.0000', '19.7139', '19.7139', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89492, '2022-06-09', 9693, 84733, 5410, 54133, '1.0000', '41.8000', '41.8000', '55.5000', '55.5000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89493, '2022-06-09', 9873, 84734, 5410, 57180, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89494, '2022-06-09', 2061, 84735, 5410, 56515, '1.0000', '12.0052', '12.0052', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89495, '2022-06-09', 7518, 84736, 5410, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89496, '2022-06-09', 1501, 84737, 5410, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89497, '2022-06-09', 7672, 84738, 5410, NULL, '1.0000', '5.9200', '5.9200', '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 (89498, '2022-06-09', 7881, 84739, 5410, 56181, '1.0000', '-44.9944', '-44.9944', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89499, '2022-06-09', 8463, 84740, 5410, NULL, '1.0000', '18.0000', '18.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 (89500, '2022-06-09', 1841, 84741, 5410, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89501, '2022-06-09', 1840, 84742, 5410, 56555, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89502, '2022-06-09', 1498, 84743, 5410, 50696, '1.0000', '0.3942', '0.3942', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89503, '2022-06-09', 7711, 84744, 5410, 57155, '1.0000', '2220.0220', '2220.0220', '65.5000', '65.5000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89504, '2022-06-09', 8878, 84745, 5410, 57207, '2.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89505, '2022-06-09', 7958, 84746, 5410, NULL, '2.0000', '8.5211', '8.5211', '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 (89506, '2022-06-09', 7473, 84747, 5410, 56553, '1.0000', '75.1643', '75.1643', '0.7000', '0.7000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89507, '2022-06-09', 1935, 84748, 5410, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '125.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89508, '2022-06-09', 9881, 84749, 5411, 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 (89509, '2022-06-09', 1904, 84750, 5411, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89510, '2022-06-09', 9729, 84751, 5411, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89511, '2022-06-09', 9856, 84752, 5411, 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 (89512, '2022-06-09', 3044, 84753, 5411, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '22.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 (89513, '2022-06-09', 2293, 84754, 5411, NULL, '3.0000', '-17.4320', '-17.4320', '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 (89514, '2022-06-09', 2289, 84755, 5411, 56470, '6.0000', '0.3611', '0.3611', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89515, '2022-06-09', 9740, 84756, 5411, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '119.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89516, '2022-06-09', 2221, 84757, 5411, NULL, '1.0000', '12.6522', '12.6522', '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 (89517, '2022-06-09', 9695, 84758, 5411, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '39.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89518, '2022-06-09', 1875, 84759, 5411, 55926, '10.0000', '2.7375', '2.7375', '3.7000', '3.7000', '40.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89519, '2022-06-09', 1912, 84760, 5411, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89520, '2022-06-09', 9695, 84761, 5411, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '39.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89521, '2022-06-09', 9590, 84762, 5411, NULL, '1.0000', '-6.6667', '-6.6667', '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 (89522, '2022-06-09', 2821, 84763, 5411, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89523, '2022-06-09', 7411, 84764, 5411, NULL, '1.0000', '1.3013', '1.3013', '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 (89524, '2022-06-09', 9821, 84765, 5411, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89525, '2022-06-09', 8878, 84766, 5411, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89526, '2022-06-09', 2108, 84767, 5411, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89527, '2022-06-09', 1640, 84768, 5411, NULL, '1.0000', '3.0496', '3.0496', '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 (89528, '2022-06-09', 9735, 84769, 5411, 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 (89529, '2022-06-09', 8079, 84770, 5411, NULL, '1.0000', '13.6100', '13.6100', '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 (89530, '2022-06-09', 1640, 84771, 5411, NULL, '1.0000', '3.0496', '3.0496', '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 (89531, '2022-06-09', 9735, 84772, 5411, 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 (89532, '2022-06-09', 9740, 84773, 5411, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '120.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89533, '2022-06-09', 9740, 84774, 5411, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '119.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89534, '2022-06-09', 9649, 84775, 5411, NULL, '1.0000', '14.2780', '14.2780', '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 (89535, '2022-06-09', 8677, 84776, 5411, NULL, '1.0000', '496.2705', '496.2705', '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 (89536, '2022-06-09', 8068, 84777, 5411, NULL, '1.0000', '8.7900', '8.7900', '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 (89537, '2022-06-09', 9695, 84778, 5411, 57088, '2.0000', '5.2172', '5.2172', '7.0000', '7.0000', '38.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89538, '2022-06-09', 9794, 84779, 5411, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89539, '2022-06-09', 7453, 84780, 5411, NULL, '1.0000', '21.6500', '21.6500', '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 (89540, '2022-06-09', 9827, 84781, 5411, 57120, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89541, '2022-06-09', 1999, 84782, 5411, 57126, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89542, '2022-06-09', 1863, 84783, 5411, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89543, '2022-06-09', 2253, 84784, 5411, 51392, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89544, '2022-06-09', 1839, 84785, 5411, NULL, '1.0000', '17468.6132', '17468.6132', '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 (89545, '2022-06-09', 2169, 84786, 5411, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89546, '2022-06-09', 9715, 84787, 5411, 51322, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89547, '2022-06-09', 9603, 84788, 5411, 57098, '1.0000', '2.4968', '2.4968', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89548, '2022-06-09', 2821, 84789, 5411, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89549, '2022-06-09', 1525, 84790, 5411, 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 (89550, '2022-06-09', 8878, 84791, 5411, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89551, '2022-06-09', 1521, 84792, 5411, NULL, '1.0000', '10.1500', '10.1500', '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 (89552, '2022-06-09', 1863, 84793, 5411, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89553, '2022-06-09', 1529, 84794, 5411, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89554, '2022-06-09', 7802, 84795, 5411, NULL, '3.0000', '1.1497', '1.1497', '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 (89555, '2022-06-09', 1340, 84796, 5412, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89556, '2022-06-09', 1665, 84797, 5412, 57073, '3.0000', '1.1685', '1.1685', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89557, '2022-06-09', 1855, 84798, 5413, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89558, '2022-06-09', 7715, 84799, 5413, 57195, '1.0000', '3.4699', '3.4699', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89559, '2022-06-09', 9695, 84800, 5413, 56716, '1.0000', '5.4759', '5.4759', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89560, '2022-06-09', 7719, 84801, 5413, 55075, '1.0000', '8.2508', '8.2508', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89561, '2022-06-09', 7825, 84802, 5413, NULL, '1.0000', '-79.5557', '-79.5557', '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 (89562, '2022-06-09', 1755, 84803, 5414, 13763, '1.0000', '5.8128', '5.8128', '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 (89563, '2022-06-09', 7756, 84804, 5414, NULL, '1.0000', '2.5000', '2.5000', '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 (89564, '2022-06-09', 8032, 84805, 5415, NULL, '1.0000', '6.4400', '6.4400', '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 (89565, '2022-06-09', 8746, 84806, 5415, NULL, '1.0000', '3.1500', '3.1500', '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 (89566, '2022-06-09', 8878, 84807, 5415, NULL, '1.0000', '6.6700', '6.6700', '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 (89567, '2022-06-09', 2822, 84808, 5415, 17166, '-12.0000', '2.7200', '2.7200', '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 (89568, '2022-06-09', 2822, 84808, 5415, NULL, '14.0000', '2.7200', '2.7200', '4.0000', '4.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 (89569, '2022-06-09', 8918, 84809, 5415, NULL, '1.0000', '1.0400', '1.0400', '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 (89570, '2022-06-09', 2332, 84810, 5415, 3835, '-15.0000', '5.8900', '5.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 (89571, '2022-06-09', 2332, 84810, 5415, NULL, '16.0000', '5.8900', '5.8900', '10.5000', '10.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 (89572, '2022-06-09', 1650, 84811, 5415, 3221, '-15.0000', '14.8000', '14.8000', '20.5000', '20.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 (89573, '2022-06-09', 1650, 84811, 5415, NULL, '16.0000', '14.8000', '14.8000', '20.5000', '20.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 (89574, '2022-06-09', 9735, 84812, 5415, 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 (89575, '2022-06-09', 9809, 84813, 5415, NULL, '1.0000', '5.7900', '5.7900', '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 (89576, '2022-06-09', 7915, 84814, 5415, NULL, '1.0000', '2.8000', '2.8000', '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 (89577, '2022-06-09', 9716, 84815, 5415, NULL, '1.0000', '4.4000', '4.4000', '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 (89578, '2022-06-09', 9733, 84816, 5415, NULL, '1.0000', '28.4000', '28.4000', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89579, '2022-06-09', 7711, 84817, 5415, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89580, '2022-06-09', 7926, 84818, 5415, 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 (89581, '2022-06-09', 7715, 84819, 5415, NULL, '2.0000', '1.8900', '1.8900', '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 (89582, '2022-06-09', 8079, 84820, 5415, NULL, '1.0000', '14.3600', '14.3600', '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 (89583, '2022-06-09', 3018, 84821, 5415, 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 (89584, '2022-06-09', 9894, 84822, 5415, 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 (89585, '2022-06-09', 7711, 84823, 5415, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89586, '2022-06-09', 7719, 84824, 5415, NULL, '1.0000', '6.0000', '6.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 (89587, '2022-06-09', 8953, 84825, 5415, 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 (89588, '2022-06-09', 8065, 84826, 5415, NULL, '1.0000', '32.0000', '32.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 (89589, '2022-06-09', 7749, 84827, 5415, NULL, '1.0000', '3.0000', '3.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 (89590, '2022-06-09', 9092, 84828, 5415, NULL, '5.0000', '5.2900', '5.2900', '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 (89591, '2022-06-09', 2315, 84829, 5415, 2735, '-434.0000', '0.3300', '0.3300', '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 (89592, '2022-06-09', 2315, 84829, 5415, NULL, '435.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-435.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89593, '2022-06-09', 1846, 84830, 5415, 12032, '-18.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 (89594, '2022-06-09', 1846, 84830, 5415, NULL, '19.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (89595, '2022-06-09', 7744, 84831, 5415, 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 (89596, '2022-06-09', 7333, 84832, 5415, NULL, '1.0000', '13.5000', '13.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 (89597, '2022-06-09', 7886, 84833, 5415, 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 (89598, '2022-06-09', 8752, 84834, 5415, NULL, '1.0000', '4.2000', '4.2000', '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 (89599, '2022-06-09', 8677, 84835, 5415, NULL, '2.0000', '1.2800', '1.2800', '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 (89600, '2022-06-09', 9274, 84836, 5415, NULL, '1.0000', '3.6000', '3.6000', '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 (89601, '2022-06-09', 7385, 84837, 5415, NULL, '5.0000', '2.0000', '2.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 (89602, '2022-06-09', 1520, 84838, 5415, 33822, '1.0000', '1.4700', '1.4700', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89603, '2022-06-09', 8444, 84839, 5415, NULL, '1.0000', '1.6000', '1.6000', '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 (89604, '2022-06-09', 2970, 84840, 5415, 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 (89605, '2022-06-09', 7464, 84841, 5415, NULL, '1.0000', '21.9000', '21.9000', '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 (89606, '2022-06-09', 9729, 84842, 5415, NULL, '2.0000', '0.6200', '0.6200', '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 (89607, '2022-06-09', 9751, 84843, 5415, 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 (89608, '2022-06-09', 7411, 84844, 5415, NULL, '2.0000', '1.3500', '1.3500', '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 (89609, '2022-06-09', 8548, 84845, 5415, NULL, '1.0000', '12.0000', '12.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 (89610, '2022-06-09', 7864, 84846, 5415, NULL, '2.0000', '19.5100', '19.5100', '30.0000', '30.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 (89611, '2022-06-09', 7947, 84847, 5415, NULL, '1.0000', '14.4400', '14.4400', '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 (89612, '2022-06-09', 9791, 84848, 5415, NULL, '2.0000', '0.9000', '0.9000', '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 (89613, '2022-06-09', 1837, 84849, 5415, 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 (89614, '2022-06-09', 8172, 84850, 5415, NULL, '1.0000', '40.7000', '40.7000', '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 (89615, '2022-06-09', 7514, 84851, 5415, NULL, '1.0000', '2.2500', '2.2500', '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 (89616, '2022-06-09', 2104, 84852, 5415, 1048, '4.0000', '0.2000', '0.2000', '0.5000', '0.5000', '279.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 (89617, '2022-06-09', 7881, 84853, 5415, NULL, '1.0000', '2.3000', '2.3000', '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 (89618, '2022-06-09', 7703, 84854, 5415, NULL, '2.0000', '22.9900', '22.9900', '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 (89619, '2022-06-09', 9100, 84855, 5415, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89620, '2022-06-09', 9092, 84856, 5415, NULL, '3.0000', '5.2900', '5.2900', '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 (89621, '2022-06-09', 7715, 84857, 5415, NULL, '1.0000', '1.8900', '1.8900', '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 (89622, '2022-06-09', 8878, 84858, 5415, NULL, '1.0000', '6.6700', '6.6700', '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 (89623, '2022-06-09', 7782, 84859, 5415, 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 (89624, '2022-06-09', 7965, 84860, 5415, NULL, '14.0000', '5.6100', '5.6100', '9.1000', '9.1000', '-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 (89625, '2022-06-09', 7385, 84861, 5415, NULL, '2.0000', '2.0000', '2.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 (89626, '2022-06-09', 8361, 84862, 5415, NULL, '1.0000', '7.2300', '7.2300', '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 (89627, '2022-06-09', 1750, 84863, 5415, 6680, '1.0000', '31.9800', '31.9800', '55.0000', '55.0000', '1.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 (89628, '2022-06-09', 8000, 84864, 5415, NULL, '1.0000', '6.8400', '6.8400', '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 (89629, '2022-06-09', 2315, 84865, 5415, 2735, '-434.0000', '0.3300', '0.3300', '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 (89630, '2022-06-09', 2315, 84865, 5415, NULL, '436.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-436.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89631, '2022-06-09', 7744, 84866, 5415, 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 (89632, '2022-06-09', 7316, 84867, 5415, NULL, '10.0000', '9.5500', '9.5500', '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 (89633, '2022-06-09', 7952, 84868, 5415, 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 (89634, '2022-06-09', 2250, 84869, 5416, 57067, '1.0000', '8.6441', '8.6441', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89635, '2022-06-09', 1905, 84870, 5416, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89636, '2022-06-09', 9827, 84871, 5416, 57120, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89637, '2022-06-09', 7666, 84872, 5416, NULL, '1.0000', '-6.0000', '-6.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 (89638, '2022-06-09', 1337, 84873, 5416, 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 (89639, '2022-06-09', 7744, 84874, 5416, NULL, '3.0000', '2.5833', '2.5833', '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 (89640, '2022-06-09', 7917, 84875, 5416, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89641, '2022-06-09', 1840, 84876, 5416, NULL, '1.0000', '0.2400', '0.2400', '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 (89642, '2022-06-09', 1841, 84877, 5416, 55655, '1.0000', '0.7630', '0.7630', '0.5000', '0.5000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89643, '2022-06-09', 8360, 84878, 5416, NULL, '1.0000', '3.5200', '3.5200', '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 (89644, '2022-06-09', 2169, 84879, 5416, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '85.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89645, '2022-06-09', 2503, 84880, 5416, 57082, '1.0000', '17.7545', '17.7545', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89646, '2022-06-09', 2441, 84881, 5416, 54830, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89647, '2022-06-09', 7803, 84882, 5416, NULL, '1.0000', '1.8200', '1.8200', '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 (89648, '2022-06-09', 1804, 84883, 5416, NULL, '1.0000', '4.3180', '4.3180', '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 (89649, '2022-06-09', 2642, 84884, 5416, 57151, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89650, '2022-06-09', 9891, 84885, 5416, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89651, '2022-06-09', 9743, 84886, 5416, 56438, '1.0000', '13.2429', '13.2429', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89652, '2022-06-09', 9740, 84887, 5416, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '115.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89653, '2022-06-09', 9737, 84888, 5416, 55942, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89654, '2022-06-09', 9834, 84889, 5416, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89655, '2022-06-09', 8677, 84890, 5416, NULL, '2.0000', '496.2705', '496.2705', '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 (89656, '2022-06-09', 2295, 84891, 5416, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89657, '2022-06-09', 8677, 84892, 5416, NULL, '2.0000', '496.2705', '496.2705', '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 (89658, '2022-06-09', 7641, 84893, 5416, NULL, '1.0000', '1.9000', '1.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 (89659, '2022-06-09', 2061, 84894, 5416, NULL, '1.0000', '10.3123', '10.3123', '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 (89660, '2022-06-09', 2293, 84895, 5416, NULL, '3.0000', '-17.4320', '-17.4320', '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 (89661, '2022-06-09', 9821, 84896, 5416, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89662, '2022-06-09', 9776, 84897, 5416, 52338, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89663, '2022-06-09', 8810, 84898, 5416, NULL, '1.0000', '1.9200', '1.9200', '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 (89664, '2022-06-09', 7411, 84899, 5416, NULL, '1.0000', '1.3013', '1.3013', '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 (89665, '2022-06-09', 8177, 84900, 5416, NULL, '1.0000', '10.3000', '10.3000', '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 (89666, '2022-06-09', 2937, 84901, 5416, 51655, '1.0000', '5.5731', '5.5731', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89667, '2022-06-09', 1912, 84902, 5416, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89668, '2022-06-09', 2277, 84903, 5416, NULL, '1.0000', '0.9399', '0.9399', '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 (89669, '2022-06-09', 7612, 84904, 5416, NULL, '2.0000', '1.6100', '1.6100', '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 (89670, '2022-06-09', 9854, 84905, 5416, 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 (89671, '2022-06-09', 8207, 84906, 5416, NULL, '2.0000', '0.0000', '0.0000', '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 (89672, '2022-06-09', 9763, 84907, 5416, 54519, '2.0000', '2.3080', '2.3080', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89673, '2022-06-09', 9834, 84908, 5416, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89674, '2022-06-09', 8677, 84909, 5416, NULL, '2.0000', '496.2705', '496.2705', '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 (89675, '2022-06-09', 2295, 84910, 5416, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89676, '2022-06-09', 1932, 84911, 5416, NULL, '1.0000', '90.0000', '90.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 (89677, '2022-06-09', 2067, 84912, 5416, NULL, '1.0000', '4.0000', '4.0000', '6.4700', '6.4700', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89678, '2022-06-09', 2169, 84913, 5416, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '85.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89679, '2022-06-09', 2765, 84914, 5416, NULL, '1.0000', '-3.5000', '-3.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 (89680, '2022-06-09', 8878, 84915, 5416, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89681, '2022-06-09', 7459, 84916, 5416, NULL, '20.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (89682, '2022-06-09', 7708, 84917, 5416, NULL, '1.0000', '6.3400', '6.3400', '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 (89683, '2022-06-09', 9817, 84918, 5416, 55531, '2.0000', '5.9800', '5.9800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89684, '2022-06-09', 2592, 84919, 5416, 55933, '2.0000', '13.8100', '13.8100', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89685, '2022-06-09', 2035, 84920, 5416, 57129, '1.0000', '8.6500', '8.6500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89686, '2022-06-09', 2473, 84921, 5416, 54837, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89687, '2022-06-09', 8207, 84922, 5416, NULL, '1.0000', '0.0000', '0.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 (89688, '2022-06-09', 9204, 84923, 5416, NULL, '1.0000', '14.1514', '14.1514', '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 (89689, '2022-06-09', 8903, 84924, 5416, NULL, '1.0000', '5.3700', '5.3700', '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 (89690, '2022-06-09', 9762, 84925, 5416, 51228, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89691, '2022-06-09', 9724, 84926, 5416, 47077, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89692, '2022-06-09', 2032, 84927, 5416, NULL, '1.0000', '5.5000', '5.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 (89693, '2022-06-09', 2088, 84928, 5416, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89694, '2022-06-09', 9902, 84929, 5416, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89695, '2022-06-09', 1311, 84930, 5416, 52210, '8.0000', '0.3700', '0.3700', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89696, '2022-06-09', 1904, 84931, 5416, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89697, '2022-06-09', 1846, 84932, 5416, NULL, '1.0000', '478.9750', '478.9750', '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 (89698, '2022-06-09', 7641, 84933, 5416, NULL, '1.0000', '1.9000', '1.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 (89699, '2022-06-09', 7514, 84934, 5416, NULL, '1.0000', '2.2500', '2.2500', '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 (89700, '2022-06-09', 2864, 84935, 5416, NULL, '1.0000', '1.5150', '1.5150', '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 (89701, '2022-06-09', 2302, 84936, 5416, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89702, '2022-06-09', 7411, 84937, 5416, NULL, '1.0000', '1.3013', '1.3013', '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 (89703, '2022-06-09', 2315, 84938, 5416, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '111.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89704, '2022-06-09', 2765, 84939, 5416, NULL, '1.0000', '-3.5000', '-3.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 (89705, '2022-06-09', 8489, 84940, 5416, NULL, '1.0000', '30.3000', '30.3000', '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 (89706, '2022-06-09', 1353, 84941, 5416, 34578, '1.0000', '20.1018', '20.1018', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89707, '2022-06-09', 2491, 84942, 5416, NULL, '1.0000', '13.0000', '13.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 (89708, '2022-06-09', 9794, 84943, 5416, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89709, '2022-06-09', 8900, 84944, 5416, NULL, '5.0000', '16.4000', '16.4000', '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 (89710, '2022-06-09', 2289, 84945, 5416, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89711, '2022-06-09', 9904, 84946, 5416, 54842, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89712, '2022-06-09', 2503, 84947, 5416, 57082, '1.0000', '17.7545', '17.7545', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89713, '2022-06-09', 9695, 84948, 5416, 57088, '2.0000', '5.2172', '5.2172', '7.0000', '7.0000', '34.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89714, '2022-06-09', 2295, 84949, 5416, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89715, '2022-06-09', 8677, 84950, 5416, NULL, '2.0000', '496.2705', '496.2705', '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 (89716, '2022-06-09', 1342, 84951, 5416, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89717, '2022-06-09', 7518, 84952, 5416, NULL, '1.0000', '7.8200', '7.8200', '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 (89718, '2022-06-09', 1904, 84953, 5416, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89719, '2022-06-09', 7411, 84954, 5416, NULL, '1.0000', '1.3013', '1.3013', '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 (89720, '2022-06-09', 1905, 84955, 5416, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89721, '2022-06-09', 8740, 84956, 5416, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89722, '2022-06-09', 7411, 84957, 5416, NULL, '1.0000', '1.3013', '1.3013', '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 (89723, '2022-06-09', 2320, 84958, 5416, 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 (89724, '2022-06-09', 9204, 84959, 5416, NULL, '1.0000', '14.1514', '14.1514', '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 (89725, '2022-06-09', 9762, 84960, 5416, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '30.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89726, '2022-06-09', 2821, 84961, 5416, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89727, '2022-06-09', 2315, 84962, 5417, 2735, '-437.0000', '0.3300', '0.3300', '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 (89728, '2022-06-09', 2315, 84962, 5417, NULL, '438.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-438.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89729, '2022-06-09', 1905, 84963, 5418, 54898, '2.0000', '0.5203', '0.5203', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89730, '2022-06-09', 2237, 84964, 5418, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89731, '2022-06-09', 1337, 84965, 5418, 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 (89732, '2022-06-10', 9330, 84966, 5419, 53672, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89733, '2022-06-10', 1665, 84967, 5419, 57073, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89734, '2022-06-10', 2379, 84968, 5419, NULL, '1.0000', '-3.0170', '-3.0170', '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 (89735, '2022-06-10', 2289, 84969, 5419, 56470, '4.0000', '0.3611', '0.3611', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89736, '2022-06-10', 8071, 84970, 5419, NULL, '1.0000', '11.0000', '11.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 (89737, '2022-06-10', 1863, 84971, 5419, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89738, '2022-06-10', 1342, 84972, 5419, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89739, '2022-06-10', 2315, 84973, 5419, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '110.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89740, '2022-06-10', 8835, 84974, 5419, 57150, '1.0000', '7.0000', '7.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89741, '2022-06-10', 1654, 84975, 5419, 42824, '1.0000', '9.2613', '9.2613', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89742, '2022-06-10', 2379, 84976, 5419, NULL, '1.0000', '-3.0170', '-3.0170', '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 (89743, '2022-06-10', 1837, 84977, 5419, 56452, '1.0000', '-21.5736', '-21.5736', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89744, '2022-06-10', 1837, 84977, 5419, NULL, '1.0000', '-21.5736', '-21.5736', '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 (89745, '2022-06-10', 1787, 84978, 5419, NULL, '1.0000', '0.5000', '0.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 (89746, '2022-06-10', 1602, 84979, 5419, 56469, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89747, '2022-06-10', 1763, 84980, 5419, 55644, '1.0000', '4.6631', '4.6631', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89748, '2022-06-10', 1501, 84981, 5419, NULL, '1.0000', '0.9225', '0.9225', '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 (89749, '2022-06-10', 7762, 84982, 5419, NULL, '1.0000', '7.6833', '7.6833', '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 (89750, '2022-06-10', 1699, 84983, 5419, NULL, '1.0000', '3.2000', '3.2000', '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 (89751, '2022-06-10', 7938, 84984, 5419, NULL, '1.0000', '2.9000', '2.9000', '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 (89752, '2022-06-10', 1425, 84985, 5419, 57079, '2.0000', '19.3384', '19.3384', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89753, '2022-06-10', 1910, 84986, 5419, 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 (89754, '2022-06-10', 7411, 84987, 5419, NULL, '2.0000', '1.3013', '1.3013', '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 (89755, '2022-06-10', 9821, 84988, 5419, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89756, '2022-06-10', 2100, 84989, 5420, 57157, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89757, '2022-06-10', 8084, 84990, 5420, 56160, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89758, '2022-06-10', 7385, 84991, 5420, 56578, '1.0000', '9.0049', '9.0049', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89759, '2022-06-10', 7385, 84991, 5420, 55971, '1.0000', '9.0049', '9.0049', '4.0000', '4.0000', '55.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89760, '2022-06-10', 7640, 84992, 5420, 56029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89761, '2022-06-10', 7411, 84993, 5420, 56187, '3.0000', '1.4000', '1.4000', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89762, '2022-06-10', 7444, 84994, 5420, NULL, '1.0000', '-57.8642', '-57.8642', '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 (89763, '2022-06-10', 8063, 84995, 5420, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '84.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89764, '2022-06-10', 7819, 84996, 5420, 56704, '1.0000', '12.6712', '12.6712', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89765, '2022-06-10', 7865, 84997, 5420, 57199, '1.0000', '5.1883', '5.1883', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89766, '2022-06-10', 2315, 84998, 5420, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89767, '2022-06-10', 7445, 84999, 5420, 33714, '1.0000', '1.6314', '1.6314', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89768, '2022-06-10', 7444, 85000, 5420, NULL, '1.0000', '-57.8642', '-57.8642', '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 (89769, '2022-06-10', 8444, 85001, 5420, 55973, '1.0000', '-37.8763', '-37.8763', '2.5000', '2.5000', '93.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89770, '2022-06-10', 9734, 85002, 5420, 54140, '8.0000', '0.3200', '0.3200', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89771, '2022-06-10', 8393, 85003, 5420, 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 (89772, '2022-06-10', 8132, 85004, 5420, 56600, '1.0000', '13.0514', '13.0514', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89773, '2022-06-10', 9167, 85005, 5420, 56559, '1.0000', '-642.1659', '-642.1659', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89774, '2022-06-10', 2299, 85006, 5420, 52742, '1.0000', '6.2355', '6.2355', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89775, '2022-06-10', 7952, 85007, 5420, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89776, '2022-06-10', 7756, 85008, 5420, 56531, '1.0000', '27.9277', '27.9277', '39.0000', '39.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89777, '2022-06-10', 9826, 85009, 5420, 54478, '1.0000', '14.4000', '14.4000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89778, '2022-06-10', 9430, 85010, 5420, 51094, '1.0000', '40.9000', '40.9000', '54.0000', '54.0000', '3.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89779, '2022-06-10', 8677, 85011, 5420, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89780, '2022-06-10', 8712, 85012, 5421, NULL, '1.0000', '6.5750', '6.5750', '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 (89781, '2022-06-10', 8547, 85013, 5421, 56550, '1.0000', '2.5128', '2.5128', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89782, '2022-06-10', 7473, 85014, 5421, 56553, '5.0000', '75.1643', '75.1643', '0.7000', '0.7000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89783, '2022-06-10', 9941, 85015, 5422, 57096, '2.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89784, '2022-06-10', 9214, 85016, 5422, NULL, '1.0000', '8.5288', '8.5288', '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 (89785, '2022-06-10', 7472, 85017, 5422, NULL, '1.0000', '-56.4939', '-56.4939', '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 (89786, '2022-06-10', 1677, 85018, 5422, NULL, '1.0000', '6.3000', '6.3000', '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 (89787, '2022-06-10', 8740, 85019, 5422, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89788, '2022-06-10', 9695, 85020, 5422, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '33.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89789, '2022-06-10', 2315, 85021, 5422, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '107.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89790, '2022-06-10', 1504, 85022, 5422, 56423, '10.0000', '2.0162', '2.0162', '2.8000', '2.8000', '50.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89791, '2022-06-10', 7974, 85023, 5422, NULL, '2.0000', '26.9000', '26.9000', '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 (89792, '2022-06-10', 1690, 85024, 5422, 55954, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89793, '2022-06-10', 7411, 85025, 5422, NULL, '1.0000', '1.3013', '1.3013', '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 (89794, '2022-06-10', 1857, 85026, 5422, 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 (89795, '2022-06-10', 2169, 85027, 5422, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89796, '2022-06-10', 2237, 85028, 5422, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89797, '2022-06-10', 8704, 85029, 5422, 39854, '1.0000', '4.0300', '4.0300', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89798, '2022-06-10', 7472, 85030, 5422, NULL, '2.0000', '-56.4939', '-56.4939', '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 (89799, '2022-06-10', 3029, 85031, 5422, 55532, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89800, '2022-06-10', 1306, 85032, 5422, 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 (89801, '2022-06-10', 9735, 85033, 5422, 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 (89802, '2022-06-10', 7483, 85034, 5422, NULL, '1.0000', '0.4200', '0.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 (89803, '2022-06-10', 2887, 85035, 5422, 55148, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89804, '2022-06-10', 1342, 85036, 5422, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89805, '2022-06-10', 2315, 85037, 5422, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '108.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89806, '2022-06-10', 1690, 85038, 5422, 55954, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89807, '2022-06-10', 2088, 85039, 5422, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89808, '2022-06-10', 2169, 85040, 5422, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89809, '2022-06-10', 8360, 85041, 5422, NULL, '1.0000', '3.5200', '3.5200', '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 (89810, '2022-06-10', 7411, 85042, 5422, NULL, '1.0000', '1.3013', '1.3013', '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 (89811, '2022-06-10', 9904, 85043, 5422, 54842, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89812, '2022-06-10', 2036, 85044, 5422, 57089, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89813, '2022-06-10', 8074, 85045, 5422, NULL, '1.0000', '3.2800', '3.2800', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89814, '2022-06-10', 1955, 85046, 5422, 51501, '10.0000', '2.6400', '2.6400', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89815, '2022-06-10', 1665, 85047, 5422, 57073, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89816, '2022-06-10', 7953, 85048, 5422, NULL, '1.0000', '-0.5345', '-0.5345', '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 (89817, '2022-06-10', 3029, 85049, 5422, 55532, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89818, '2022-06-10', 7741, 85050, 5422, NULL, '1.0000', '-52.1460', '-52.1460', '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 (89819, '2022-06-10', 7886, 85051, 5422, NULL, '1.0000', '14.5000', '14.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 (89820, '2022-06-10', 3001, 85052, 5422, 37759, '3.0000', '2.5621', '2.5621', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89821, '2022-06-10', 2821, 85053, 5422, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89822, '2022-06-10', 2465, 85054, 5422, 55725, '1.0000', '9.2480', '9.2480', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89823, '2022-06-10', 7743, 85055, 5422, NULL, '1.0000', '7.3900', '7.3900', '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 (89824, '2022-06-10', 2821, 85056, 5422, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89825, '2022-06-10', 2169, 85057, 5422, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89826, '2022-06-10', 2315, 85058, 5422, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '109.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89827, '2022-06-10', 1519, 85059, 5422, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89828, '2022-06-10', 1410, 85060, 5422, NULL, '1.0000', '48.8052', '48.8052', '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 (89829, '2022-06-10', 2293, 85061, 5422, NULL, '3.0000', '-17.4320', '-17.4320', '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 (89830, '2022-06-10', 3029, 85062, 5422, 55532, '1.0000', '123.8886', '123.8886', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89831, '2022-06-10', 2315, 85063, 5422, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '109.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89832, '2022-06-10', 7411, 85064, 5422, NULL, '1.0000', '1.3013', '1.3013', '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 (89833, '2022-06-10', 2295, 85065, 5422, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89834, '2022-06-10', 2411, 85066, 5422, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89835, '2022-06-10', 7564, 85067, 5422, NULL, '1.0000', '0.6400', '0.6400', '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 (89836, '2022-06-10', 1470, 85068, 5422, 55598, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89837, '2022-06-10', 1499, 85069, 5422, 54918, '7.0000', '0.3993', '0.3993', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89838, '2022-06-10', 7641, 85070, 5422, NULL, '1.0000', '1.9000', '1.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 (89839, '2022-06-10', 1812, 85071, 5422, 54909, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89840, '2022-06-10', 2283, 85072, 5422, 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 (89841, '2022-06-10', 7411, 85073, 5422, NULL, '1.0000', '1.3013', '1.3013', '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 (89842, '2022-06-10', 8878, 85074, 5422, 56424, '2.0000', '3.8136', '3.8136', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89843, '2022-06-10', 9941, 85075, 5422, 57096, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89844, '2022-06-10', 1905, 85076, 5422, 54898, '3.0000', '0.5203', '0.5203', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89845, '2022-06-10', 2299, 85077, 5422, 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 (89846, '2022-06-10', 2169, 85078, 5422, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89847, '2022-06-10', 7411, 85079, 5422, NULL, '1.0000', '1.3013', '1.3013', '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 (89848, '2022-06-10', 7641, 85080, 5423, NULL, '1.0000', '1.9000', '1.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 (89849, '2022-06-10', 1577, 85081, 5423, NULL, '1.0000', '1.6245', '1.6245', '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 (89850, '2022-06-10', 7411, 85082, 5423, NULL, '1.0000', '1.3013', '1.3013', '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 (89851, '2022-06-10', 9731, 85083, 5423, 54523, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89852, '2022-06-10', 1596, 85084, 5423, 43255, '1.0000', '2.0328', '2.0328', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89853, '2022-06-10', 2381, 85085, 5423, 56373, '1.0000', '14.1080', '14.1080', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89854, '2022-06-10', 1787, 85086, 5423, NULL, '1.0000', '0.5000', '0.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 (89855, '2022-06-10', 3029, 85087, 5423, NULL, '1.0000', '123.8886', '123.8886', '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 (89856, '2022-06-10', 7483, 85088, 5423, NULL, '3.0000', '0.4200', '0.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 (89857, '2022-06-10', 1695, 85089, 5423, 55947, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89858, '2022-06-10', 1828, 85090, 5423, NULL, '2.0000', '0.7300', '0.7300', '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 (89859, '2022-06-10', 9794, 85091, 5423, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89860, '2022-06-10', 1620, 85092, 5423, 55636, '1.0000', '2.2583', '2.2583', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89861, '2022-06-10', 1519, 85093, 5423, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89862, '2022-06-10', 1703, 85094, 5424, 5487, '-4.0000', '9.2200', '9.2200', '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 (89863, '2022-06-10', 1703, 85094, 5424, NULL, '5.0000', '9.2200', '9.2200', '12.5000', '12.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 (89864, '2022-06-10', 7741, 85095, 5424, NULL, '1.0000', '1.2000', '1.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 (89865, '2022-06-10', 7674, 85096, 5424, NULL, '1.0000', '1.3000', '1.3000', '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 (89866, '2022-06-10', 7412, 85097, 5424, NULL, '1.0000', '1.5200', '1.5200', '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 (89867, '2022-06-10', 7411, 85098, 5424, NULL, '1.0000', '1.3500', '1.3500', '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 (89868, '2022-06-10', 2284, 85099, 5424, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (89869, '2022-06-10', 9390, 85100, 5424, NULL, '1.0000', '25.0000', '25.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 (89870, '2022-06-10', 1672, 85101, 5424, 7384, '-135.0000', '2.8700', '2.8700', '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 (89871, '2022-06-10', 1672, 85101, 5424, NULL, '145.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89872, '2022-06-10', 8878, 85102, 5424, NULL, '1.0000', '6.6700', '6.6700', '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 (89873, '2022-06-10', 2251, 85103, 5424, 2788, '-24.0000', '10.9700', '10.9700', '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 (89874, '2022-06-10', 2251, 85103, 5424, NULL, '25.0000', '10.9700', '10.9700', '19.5000', '19.5000', '-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 (89875, '2022-06-10', 8966, 85104, 5424, NULL, '2.0000', '6.8500', '6.8500', '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 (89876, '2022-06-10', 2406, 85105, 5424, 4454, '-2.0000', '20.7000', '20.7000', '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 (89877, '2022-06-10', 2406, 85105, 5424, NULL, '4.0000', '20.7000', '20.7000', '30.0000', '30.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 (89878, '2022-06-10', 7709, 85106, 5424, NULL, '2.0000', '3.5000', '3.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 (89879, '2022-06-10', 9734, 85107, 5424, NULL, '4.0000', '0.3200', '0.3200', '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 (89880, '2022-06-10', 7366, 85108, 5424, NULL, '1.0000', '7.0000', '7.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 (89881, '2022-06-10', 8597, 85109, 5424, NULL, '1.0000', '59.0000', '59.0000', '78.0000', '78.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89882, '2022-06-10', 7524, 85110, 5424, NULL, '2.0000', '11.9500', '11.9500', '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 (89883, '2022-06-10', 7911, 85111, 5424, NULL, '1.0000', '4.3700', '4.3700', '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 (89884, '2022-06-10', 9942, 85112, 5424, NULL, '1.0000', '9.1000', '9.1000', '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 (89885, '2022-06-10', 7496, 85113, 5424, NULL, '1.0000', '0.9600', '0.9600', '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 (89886, '2022-06-10', 2277, 85114, 5424, 2937, '-53.0000', '0.7800', '0.7800', '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 (89887, '2022-06-10', 2277, 85114, 5424, NULL, '54.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89888, '2022-06-10', 2289, 85115, 5424, 2949, '-184.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 (89889, '2022-06-10', 2289, 85115, 5424, NULL, '186.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-186.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89890, '2022-06-10', 8127, 85116, 5424, NULL, '1.0000', '24.5300', '24.5300', '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 (89891, '2022-06-10', 9274, 85117, 5424, NULL, '1.0000', '3.6000', '3.6000', '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 (89892, '2022-06-10', 7674, 85118, 5424, NULL, '1.0000', '1.3000', '1.3000', '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 (89893, '2022-06-10', 1855, 85119, 5424, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (89894, '2022-06-10', 8359, 85120, 5424, 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 (89895, '2022-06-10', 7712, 85121, 5424, NULL, '1.0000', '26.0000', '26.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 (89896, '2022-06-10', 7741, 85122, 5424, NULL, '2.0000', '1.2000', '1.2000', '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 (89897, '2022-06-10', 7769, 85123, 5424, 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 (89898, '2022-06-10', 9877, 85124, 5424, NULL, '1.0000', '33.0000', '33.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 (89899, '2022-06-10', 7848, 85125, 5424, NULL, '1.0000', '1.3500', '1.3500', '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 (89900, '2022-06-10', 7892, 85126, 5424, NULL, '3.0000', '4.2000', '4.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 (89901, '2022-06-10', 7853, 85127, 5424, NULL, '1.0000', '13.0000', '13.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 (89902, '2022-06-10', 2105, 85128, 5424, NULL, '1.0000', '1.3500', '1.3500', '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 (89903, '2022-06-10', 7638, 85129, 5424, NULL, '1.0000', '12.0000', '12.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 (89904, '2022-06-10', 9911, 85130, 5424, 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 (89905, '2022-06-10', 1550, 85131, 5424, NULL, '1.0000', '13.9000', '13.9000', '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 (89906, '2022-06-10', 2012, 85132, 5424, 5299, '-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 (89907, '2022-06-10', 2012, 85132, 5424, NULL, '3.0000', '12.0000', '12.0000', '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 (89908, '2022-06-10', 9021, 85133, 5424, NULL, '3.0000', '6.7300', '6.7300', '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 (89909, '2022-06-10', 9092, 85134, 5424, NULL, '2.0000', '5.2900', '5.2900', '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 (89910, '2022-06-10', 1904, 85135, 5424, 5442, '-58.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 (89911, '2022-06-10', 1904, 85135, 5424, NULL, '59.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89912, '2022-06-10', 7828, 85136, 5424, 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 (89913, '2022-06-10', 2315, 85137, 5424, 2735, '-438.0000', '0.3300', '0.3300', '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 (89914, '2022-06-10', 2315, 85137, 5424, NULL, '443.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-443.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89915, '2022-06-10', 8085, 85138, 5424, NULL, '7.0000', '1.1700', '1.1700', '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 (89916, '2022-06-10', 9275, 85139, 5424, NULL, '2.0000', '6.3000', '6.3000', '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 (89917, '2022-06-10', 7961, 85140, 5424, NULL, '1.0000', '10.5600', '10.5600', '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 (89918, '2022-06-10', 9695, 85141, 5424, NULL, '1.0000', '4.5000', '4.5000', '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 (89919, '2022-06-10', 1935, 85142, 5424, 5586, '-110.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 (89920, '2022-06-10', 1935, 85142, 5424, NULL, '112.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89921, '2022-06-10', 2031, 85143, 5424, NULL, '1.0000', '5.0000', '5.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 (89922, '2022-06-10', 8097, 85144, 5424, NULL, '2.0000', '3.4000', '3.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 (89923, '2022-06-10', 9148, 85145, 5424, NULL, '15.0000', '20.1000', '20.1000', '3.4000', '3.4000', '-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 (89924, '2022-06-10', 2580, 85146, 5424, 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 (89925, '2022-06-10', 7921, 85147, 5424, NULL, '2.0000', '0.3000', '0.3000', '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 (89926, '2022-06-10', 7334, 85148, 5424, NULL, '1.0000', '8.2300', '8.2300', '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 (89927, '2022-06-10', 1805, 85149, 5424, NULL, '1.0000', '195.3170', '195.3170', '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 (89928, '2022-06-10', 7915, 85150, 5424, NULL, '1.0000', '2.8000', '2.8000', '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 (89929, '2022-06-10', 9747, 85151, 5424, NULL, '1.0000', '0.6500', '0.6500', '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 (89930, '2022-06-10', 8155, 85152, 5424, NULL, '1.0000', '65.0000', '65.0000', '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 (89931, '2022-06-10', 7530, 85153, 5424, NULL, '2.0000', '7.7000', '7.7000', '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 (89932, '2022-06-10', 8361, 85154, 5424, NULL, '1.0000', '7.2300', '7.2300', '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 (89933, '2022-06-10', 1841, 85155, 5424, NULL, '7.0000', '142.5780', '142.5780', '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 (89934, '2022-06-10', 2289, 85156, 5424, 2949, '-184.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 (89935, '2022-06-10', 2289, 85156, 5424, NULL, '190.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-190.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89936, '2022-06-10', 1840, 85157, 5424, NULL, '5.0000', '-138499292.4246', '-138499292.4246', '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 (89937, '2022-06-10', 9578, 85158, 5424, NULL, '1.0000', '8.0000', '8.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 (89938, '2022-06-10', 7524, 85159, 5424, NULL, '1.0000', '11.9500', '11.9500', '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 (89939, '2022-06-10', 7755, 85160, 5424, 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 (89940, '2022-06-10', 2392, 85161, 5424, 20648, '1.0000', '3.7000', '3.7000', '5.0000', '5.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 (89941, '2022-06-10', 2392, 85161, 5424, 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 (89942, '2022-06-10', 7562, 85162, 5424, NULL, '2.0000', '5.5300', '5.5300', '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 (89943, '2022-06-10', 7865, 85163, 5424, NULL, '1.0000', '1.6300', '1.6300', '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 (89944, '2022-06-10', 7637, 85164, 5424, NULL, '1.0000', '7.3300', '7.3300', '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 (89945, '2022-06-10', 9909, 85165, 5424, 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 (89946, '2022-06-10', 7819, 85166, 5424, NULL, '1.0000', '9.5000', '9.5000', '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 (89947, '2022-06-10', 9396, 85167, 5424, NULL, '1.0000', '7.0800', '7.0800', '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 (89948, '2022-06-10', 7640, 85168, 5424, 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 (89949, '2022-06-10', 7674, 85169, 5424, NULL, '1.0000', '1.3000', '1.3000', '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 (89950, '2022-06-10', 8539, 85170, 5424, NULL, '2.0000', '31.8000', '31.8000', '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 (89951, '2022-06-10', 7847, 85171, 5424, 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 (89952, '2022-06-10', 1999, 85172, 5425, 57126, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89953, '2022-06-11', 1554, 85173, 5426, 43258, '1.0000', '2.5497', '2.5497', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89954, '2022-06-11', 2315, 85174, 5426, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '102.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89955, '2022-06-11', 2325, 85175, 5426, 57127, '2.0000', '6.4615', '6.4615', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89956, '2022-06-11', 2169, 85176, 5426, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '79.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89957, '2022-06-11', 2948, 85177, 5426, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89958, '2022-06-11', 2354, 85178, 5426, NULL, '1.0000', '-0.6066', '-0.6066', '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 (89959, '2022-06-11', 3001, 85179, 5426, 37759, '5.0000', '2.5621', '2.5621', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89960, '2022-06-11', 9775, 85180, 5426, 56400, '1.0000', '9.6292', '9.6292', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89961, '2022-06-11', 2095, 85181, 5426, NULL, '1.0000', '0.5000', '0.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 (89962, '2022-06-11', 1757, 85182, 5426, NULL, '1.0000', '7.5869', '7.5869', '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 (89963, '2022-06-11', 1490, 85183, 5426, 49642, '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 (89964, '2022-06-11', 2289, 85184, 5426, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89965, '2022-06-11', 1590, 85185, 5426, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89966, '2022-06-11', 1863, 85186, 5426, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89967, '2022-06-11', 9902, 85187, 5426, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89968, '2022-06-11', 7408, 85188, 5426, NULL, '1.0000', '1.0000', '1.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 (89969, '2022-06-11', 1863, 85189, 5426, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89970, '2022-06-11', 2379, 85190, 5426, NULL, '1.0000', '-3.0170', '-3.0170', '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 (89971, '2022-06-11', 2293, 85191, 5426, NULL, '3.0000', '-17.4320', '-17.4320', '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 (89972, '2022-06-11', 9827, 85192, 5426, 57120, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89973, '2022-06-11', 1529, 85193, 5426, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89974, '2022-06-11', 1863, 85194, 5426, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89975, '2022-06-11', 1349, 85195, 5426, 56375, '1.0000', '42.3933', '42.3933', '61.0000', '61.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89976, '2022-06-11', 7358, 85196, 5426, NULL, '1.0000', '18.8000', '18.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 (89977, '2022-06-11', 8769, 85197, 5426, 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 (89978, '2022-06-11', 1340, 85198, 5426, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89979, '2022-06-11', 2066, 85199, 5426, 54883, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89980, '2022-06-11', 2250, 85200, 5426, 57067, '1.0000', '8.6441', '8.6441', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89981, '2022-06-11', 9695, 85201, 5426, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '32.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89982, '2022-06-11', 1756, 85202, 5426, NULL, '2.0000', '4.9900', '4.9900', '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 (89983, '2022-06-11', 8878, 85203, 5426, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89984, '2022-06-11', 1650, 85204, 5426, 56431, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89985, '2022-06-11', 9794, 85205, 5426, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89986, '2022-06-11', 1529, 85206, 5426, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89987, '2022-06-11', 2315, 85207, 5426, 54938, '5.0000', '0.7701', '0.7701', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89988, '2022-06-11', 9695, 85208, 5426, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '32.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89989, '2022-06-11', 2285, 85209, 5426, NULL, '1.0000', '9.3380', '9.3380', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89990, '2022-06-11', 8878, 85210, 5426, 56424, '2.0000', '3.8136', '3.8136', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89991, '2022-06-11', 1688, 85211, 5426, 56456, '1.0000', '21.6067', '21.6067', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89992, '2022-06-11', 2948, 85212, 5427, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89993, '2022-06-11', 2169, 85213, 5427, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89994, '2022-06-11', 8876, 85214, 5427, NULL, '1.0000', '-24.7884', '-24.7884', '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 (89995, '2022-06-11', 8165, 85215, 5427, 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 (89996, '2022-06-11', 7318, 85216, 5427, 55904, '1.0000', '10.6757', '10.6757', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89997, '2022-06-11', 1689, 85217, 5427, 56468, '1.0000', '15.5565', '15.5565', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89998, '2022-06-11', 7636, 85218, 5427, NULL, '1.0000', '11.8700', '11.8700', '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 (89999, '2022-06-11', 7478, 85219, 5427, 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 (90000, '2022-06-11', 9941, 85220, 5428, 57096, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90001, '2022-06-11', 9827, 85221, 5428, 57120, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90002, '2022-06-11', 2503, 85222, 5428, 57082, '1.0000', '17.7545', '17.7545', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90003, '2022-06-11', 2132, 85223, 5428, 57091, '1.0000', '28.5000', '28.5000', '32.0000', '32.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90004, '2022-06-11', 1760, 85224, 5428, NULL, '1.0000', '1.5900', '1.5900', '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 (90005, '2022-06-11', 1493, 85225, 5428, NULL, '1.0000', '-27.3400', '-27.3400', '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 (90006, '2022-06-11', 1590, 85226, 5428, 55929, '1.0000', '2.2860', '2.2860', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90007, '2022-06-11', 8767, 85227, 5428, 55415, '1.0000', '8.5590', '8.5590', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90008, '2022-06-11', 2906, 85228, 5428, NULL, '3.0000', '2.6000', '2.6000', '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 (90009, '2022-06-11', 1499, 85229, 5428, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90010, '2022-06-11', 1912, 85230, 5428, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90011, '2022-06-11', 2695, 85231, 5428, NULL, '3.0000', '2.0000', '2.0000', '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 (90012, '2022-06-11', 2221, 85232, 5428, NULL, '1.0000', '12.6522', '12.6522', '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 (90013, '2022-06-11', 7608, 85233, 5428, NULL, '1.0000', '6.9800', '6.9800', '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 (90014, '2022-06-11', 1531, 85234, 5428, 54533, '3.0000', '1.3663', '1.3663', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90015, '2022-06-11', 2380, 85235, 5428, 55679, '1.0000', '47.0967', '47.0967', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90016, '2022-06-11', 1432, 85236, 5429, 55707, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90017, '2022-06-11', 2948, 85237, 5429, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90018, '2022-06-11', 9726, 85238, 5429, 55630, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90019, '2022-06-11', 9729, 85239, 5429, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90020, '2022-06-11', 1307, 85240, 5429, NULL, '1.0000', '-59.9897', '-59.9897', '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 (90021, '2022-06-11', 1748, 85241, 5429, NULL, '2.0000', '0.3200', '0.3200', '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 (90022, '2022-06-11', 7944, 85242, 5429, NULL, '1.0000', '2.0100', '2.0100', '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 (90023, '2022-06-11', 9878, 85243, 5429, NULL, '1.0000', '9.6000', '9.6000', '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 (90024, '2022-06-11', 1702, 85244, 5429, NULL, '1.0000', '10.8300', '10.8300', '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 (90025, '2022-06-11', 2327, 85245, 5429, 49257, '1.0000', '3.8469', '3.8469', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90026, '2022-06-11', 9840, 85246, 5429, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90027, '2022-06-11', 2169, 85247, 5429, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '77.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90028, '2022-06-11', 9848, 85248, 5429, NULL, '1.0000', '2.8000', '2.8000', '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 (90029, '2022-06-11', 9794, 85249, 5429, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90030, '2022-06-11', 2277, 85250, 5429, NULL, '3.0000', '0.9399', '0.9399', '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 (90031, '2022-06-11', 9794, 85251, 5429, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90032, '2022-06-11', 1307, 85252, 5429, NULL, '1.0000', '-59.9897', '-59.9897', '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 (90033, '2022-06-11', 7965, 85253, 5430, NULL, '2.0000', '6.9023', '6.9023', '9.1000', '9.1000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90034, '2022-06-11', 7514, 85254, 5430, NULL, '3.0000', '17929.5233', '17929.5233', '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 (90035, '2022-06-11', 7703, 85255, 5430, NULL, '2.0000', '-4961.0093', '-4961.0093', '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 (90036, '2022-06-11', 9747, 85256, 5430, 56183, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90037, '2022-06-11', 2242, 85257, 5430, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '138.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90038, '2022-06-11', 9272, 85258, 5430, NULL, '1.0000', '3.1000', '3.1000', '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 (90039, '2022-06-11', 7417, 85259, 5430, 56026, '16.0000', '7.9781', '7.9781', '13.0000', '13.0000', '11.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90040, '2022-06-11', 9911, 85260, 5430, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90041, '2022-06-11', 7753, 85261, 5430, 57182, '2.0000', '3.5424', '3.5424', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90042, '2022-06-11', 7564, 85262, 5430, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90043, '2022-06-11', 7892, 85263, 5430, NULL, '1.0000', '5.3403', '5.3403', '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 (90044, '2022-06-11', 7905, 85264, 5430, NULL, '1.0000', '3.9963', '3.9963', '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 (90045, '2022-06-11', 2289, 85265, 5430, NULL, '3.0000', '2.5688', '2.5688', '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 (90046, '2022-06-11', 9092, 85266, 5430, 52527, '6.0000', '0.3175', '0.3175', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90047, '2022-06-11', 7707, 85267, 5430, 56671, '1.0000', '26.7232', '26.7232', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90048, '2022-06-11', 9776, 85268, 5430, 57161, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90049, '2022-06-11', 7708, 85269, 5430, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90050, '2022-06-11', 7459, 85270, 5430, NULL, '20.0000', '3.0137', '3.0137', '4.0000', '4.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 (90051, '2022-06-11', 7385, 85271, 5430, 55971, '3.0000', '9.0049', '9.0049', '4.0000', '4.0000', '52.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90052, '2022-06-11', 8395, 85272, 5430, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90053, '2022-06-11', 1807, 85273, 5430, NULL, '4.0000', '-34.8462', '-34.8462', '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 (90054, '2022-06-11', 9461, 85274, 5430, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90055, '2022-06-11', 9729, 85275, 5430, 56613, '4.0000', '0.6200', '0.6200', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90056, '2022-06-11', 9794, 85276, 5430, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90057, '2022-06-11', 8548, 85277, 5430, NULL, '1.0000', '-0.2308', '-0.2308', '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 (90058, '2022-06-11', 1762, 85278, 5430, 51096, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90059, '2022-06-11', 7411, 85279, 5430, 56187, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90060, '2022-06-11', 7334, 85280, 5430, 57210, '3.0000', '9.0127', '9.0127', '13.5000', '13.5000', '12.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90061, '2022-06-11', 2315, 85281, 5430, 56594, '3.0000', '0.7474', '0.7474', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90062, '2022-06-11', 7967, 85282, 5430, 56684, '1.0000', '6.9018', '6.9018', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90063, '2022-06-11', 9695, 85283, 5430, 56716, '1.0000', '5.4759', '5.4759', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90064, '2022-06-11', 7334, 85284, 5430, 57210, '1.0000', '9.0127', '9.0127', '13.5000', '13.5000', '14.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90065, '2022-06-11', 1420, 85285, 5430, 56495, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90066, '2022-06-11', 7411, 85286, 5430, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90067, '2022-06-11', 8666, 85287, 5430, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90068, '2022-06-11', 7672, 85288, 5430, NULL, '1.0000', '5.9200', '5.9200', '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 (90069, '2022-06-11', 7674, 85289, 5430, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90070, '2022-06-11', 7473, 85290, 5430, 56553, '1.0000', '75.1643', '75.1643', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90071, '2022-06-11', 7473, 85290, 5430, NULL, '5.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (90072, '2022-06-11', 7707, 85291, 5430, 56671, '1.0000', '26.7232', '26.7232', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90073, '2022-06-11', 7672, 85292, 5430, NULL, '1.0000', '5.9200', '5.9200', '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 (90074, '2022-06-11', 8203, 85293, 5430, 53907, '5.0000', '7.7723', '7.7723', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90075, '2022-06-11', 1520, 85294, 5430, NULL, '1.0000', '1.4700', '1.4700', '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 (90076, '2022-06-11', 7535, 85295, 5430, 53512, '1.0000', '4.5946', '4.5946', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90077, '2022-06-11', 7588, 85296, 5430, 57165, '5.0000', '5.5821', '5.5821', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90078, '2022-06-11', 7641, 85297, 5430, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90079, '2022-06-11', 2290, 85298, 5430, NULL, '2.0000', '9.7600', '9.7600', '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 (90080, '2022-06-11', 8642, 85299, 5430, NULL, '1.0000', '18.0000', '18.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 (90081, '2022-06-11', 2604, 85300, 5430, NULL, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90082, '2022-06-11', 9807, 85301, 5430, 53525, '1.0000', '36.8000', '36.8000', '49.0000', '49.0000', '1.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90083, '2022-06-11', 7954, 85302, 5430, NULL, '1.0000', '-15800.4581', '-15800.4581', '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 (90084, '2022-06-11', 7411, 85303, 5430, 56187, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90085, '2022-06-11', 3001, 85304, 5430, NULL, '2.0000', '1.5000', '1.5000', '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 (90086, '2022-06-11', 2279, 85305, 5430, 56502, '1.0000', '2.7380', '2.7380', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90087, '2022-06-11', 1339, 85306, 5430, 57191, '1.0000', '2.6205', '2.6205', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90088, '2022-06-11', 2242, 85307, 5431, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '75.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90089, '2022-06-11', 2302, 85308, 5431, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90090, '2022-06-11', 9846, 85309, 5431, 56462, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90091, '2022-06-11', 2821, 85310, 5431, 57063, '1.0000', '3.3984', '3.3984', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90092, '2022-06-11', 9695, 85311, 5431, 57088, '2.0000', '5.2172', '5.2172', '7.0000', '7.0000', '29.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90093, '2022-06-11', 1812, 85312, 5431, 54944, '3.0000', '9.3212', '9.3212', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90094, '2022-06-11', 2730, 85313, 5431, 51643, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90095, '2022-06-11', 1863, 85314, 5431, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90096, '2022-06-11', 1342, 85315, 5431, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90097, '2022-06-11', 2025, 85316, 5431, 57133, '1.0000', '4.9124', '4.9124', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90098, '2022-06-11', 2263, 85317, 5432, NULL, '1.0000', '2.4800', '2.4800', '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 (90099, '2022-06-11', 7756, 85318, 5432, NULL, '1.0000', '2.5000', '2.5000', '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 (90100, '2022-06-11', 2221, 85319, 5432, NULL, '1.0000', '12.6522', '12.6522', '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 (90101, '2022-06-11', 2254, 85320, 5432, NULL, '1.0000', '42.5400', '42.5400', '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 (90102, '2022-06-11', 2262, 85321, 5432, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90103, '2022-06-11', 1667, 85322, 5433, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90104, '2022-06-11', 1554, 85323, 5433, 19872, '1.0000', '2.5497', '2.5497', '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 (90105, '2022-06-11', 2249, 85324, 5433, 39853, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90106, '2022-06-11', 1314, 85325, 5433, 55930, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90107, '2022-06-11', 9695, 85326, 5433, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '28.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90108, '2022-06-11', 1855, 85327, 5434, NULL, '1.0000', '1.4820', '1.4820', '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 (90109, '2022-06-11', 2463, 85328, 5434, 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 (90110, '2022-06-11', 1863, 85329, 5434, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90111, '2022-06-11', 9788, 85330, 5434, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90112, '2022-06-11', 3044, 85331, 5434, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '21.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 (90113, '2022-06-11', 1510, 85332, 5434, NULL, '1.0000', '12.9810', '12.9810', '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 (90114, '2022-06-11', 1667, 85333, 5434, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90115, '2022-06-11', 9695, 85334, 5434, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90116, '2022-06-11', 1905, 85335, 5434, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90117, '2022-06-11', 8444, 85336, 5435, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90118, '2022-06-11', 2315, 85337, 5435, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90119, '2022-06-11', 9856, 85338, 5435, 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 (90120, '2022-06-11', 2965, 85339, 5436, NULL, '1.0000', '9.1051', '9.1051', '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 (90121, '2022-06-11', 1935, 85340, 5437, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90122, '2022-06-11', 9295, 85341, 5438, NULL, '1.0000', '-11.6667', '-11.6667', '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 (90123, '2022-06-11', 7704, 85342, 5438, NULL, '1.0000', '-1.5625', '-1.5625', '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 (90124, '2022-06-11', 8359, 85343, 5438, 56703, '1.0000', '343.9975', '343.9975', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90125, '2022-06-11', 7753, 85344, 5438, 57182, '2.0000', '3.5424', '3.5424', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90126, '2022-06-11', 2100, 85345, 5438, 57157, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90127, '2022-06-11', 7552, 85346, 5438, 56017, '1.0000', '4.9714', '4.9714', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90128, '2022-06-11', 9424, 85347, 5438, NULL, '1.0000', '84.0925', '84.0925', '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 (90129, '2022-06-11', 1884, 85348, 5438, 45321, '1.0000', '5.5994', '5.5994', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90130, '2022-06-11', 9565, 85349, 5438, 56066, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90131, '2022-06-11', 7674, 85350, 5438, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90132, '2022-06-11', 1510, 85351, 5438, 53773, '1.0000', '8.5250', '8.5250', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90133, '2022-06-11', 7750, 85352, 5438, 56538, '1.0000', '43.7502', '43.7502', '61.0000', '61.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90134, '2022-06-11', 1501, 85353, 5438, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90135, '2022-06-11', 7848, 85354, 5438, NULL, '1.0000', '-144.5928', '-144.5928', '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 (90136, '2022-06-11', 7385, 85355, 5438, 55971, '11.0000', '9.0049', '9.0049', '4.0000', '4.0000', '41.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90137, '2022-06-11', 7709, 85356, 5438, NULL, '2.0000', '448.3483', '448.3483', '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 (90138, '2022-06-11', 9329, 85357, 5438, 56534, '1.0000', '-16781.4193', '-16781.4193', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90139, '2022-06-11', 8036, 85358, 5438, 51267, '1.0000', '6.7300', '6.7300', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90140, '2022-06-11', 8678, 85359, 5438, NULL, '1.0000', '10.0000', '10.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 (90141, '2022-06-11', 1983, 85360, 5438, 42787, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90142, '2022-06-11', 8101, 85361, 5438, NULL, '3.0000', '-0.2222', '-0.2222', '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 (90143, '2022-06-11', 7781, 85362, 5438, NULL, '3.0000', '5.2802', '5.2802', '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 (90144, '2022-06-11', 8878, 85363, 5438, 57207, '2.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90145, '2022-06-11', 7558, 85364, 5438, NULL, '5.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-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 (90146, '2022-06-11', 7756, 85365, 5438, 56531, '1.0000', '27.9277', '27.9277', '39.0000', '39.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90147, '2022-06-11', 9911, 85366, 5438, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90148, '2022-06-11', 7612, 85367, 5438, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90149, '2022-06-11', 8077, 85368, 5438, NULL, '1.0000', '4.9986', '4.9986', '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 (90150, '2022-06-11', 1916, 85369, 5438, 56184, '1.0000', '10.4660', '10.4660', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90151, '2022-06-11', 7514, 85370, 5438, NULL, '1.0000', '17929.5233', '17929.5233', '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 (90152, '2022-06-11', 8666, 85371, 5438, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90153, '2022-06-11', 8420, 85372, 5438, 31035, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90154, '2022-06-11', 8690, 85373, 5438, 50462, '1.0000', '10.8000', '10.8000', '14.5000', '14.5000', '14.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90155, '2022-06-11', 9107, 85374, 5438, NULL, '1.0000', '3.4000', '3.4000', '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 (90156, '2022-06-11', 2107, 85375, 5438, NULL, '1.0000', '0.2500', '0.2500', '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 (90157, '2022-06-11', 9274, 85376, 5438, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90158, '2022-06-11', 7967, 85377, 5438, 56684, '1.0000', '6.9018', '6.9018', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90159, '2022-06-11', 7411, 85378, 5438, 56187, '3.0000', '1.4000', '1.4000', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90160, '2022-06-11', 9865, 85379, 5438, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '15.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90161, '2022-06-11', 7444, 85380, 5438, NULL, '1.0000', '-57.8642', '-57.8642', '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 (90162, '2022-06-11', 7674, 85381, 5438, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90163, '2022-06-11', 7637, 85382, 5438, 56481, '1.0000', '7.3152', '7.3152', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90164, '2022-06-11', 9868, 85383, 5438, 54289, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90165, '2022-06-11', 9732, 85384, 5438, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90166, '2022-06-11', 7852, 85385, 5438, NULL, '1.0000', '59.3041', '59.3041', '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 (90167, '2022-06-11', 7518, 85386, 5438, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90168, '2022-06-11', 8534, 85387, 5439, 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 (90169, '2022-06-11', 1546, 85388, 5439, 49329, '4.0000', '51.6105', '51.6105', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90170, '2022-06-11', 8444, 85389, 5439, 56383, '2.0000', '1.6000', '1.6000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90171, '2022-06-12', 2295, 85390, 5440, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90172, '2022-06-12', 2730, 85391, 5440, 51643, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90173, '2022-06-12', 1510, 85392, 5440, NULL, '1.0000', '12.9810', '12.9810', '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 (90174, '2022-06-12', 9762, 85393, 5440, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90175, '2022-06-12', 9775, 85394, 5440, 56400, '1.0000', '9.6292', '9.6292', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90176, '2022-06-12', 2315, 85395, 5440, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90177, '2022-06-12', 2283, 85396, 5440, 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 (90178, '2022-06-12', 9732, 85397, 5440, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90179, '2022-06-12', 1771, 85398, 5440, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90180, '2022-06-12', 1935, 85399, 5440, 48471, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90181, '2022-06-12', 2277, 85400, 5440, NULL, '1.0000', '0.9399', '0.9399', '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 (90182, '2022-06-12', 1806, 85401, 5440, 51202, '1.0000', '29.2252', '29.2252', '40.5000', '40.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90183, '2022-06-12', 2582, 85402, 5440, NULL, '1.0000', '16.7500', '16.7500', '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 (90184, '2022-06-12', 1846, 85403, 5440, NULL, '1.0000', '478.9750', '478.9750', '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 (90185, '2022-06-12', 1386, 85404, 5440, 55934, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90186, '2022-06-12', 9902, 85405, 5440, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90187, '2022-06-12', 2299, 85406, 5440, 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 (90188, '2022-06-12', 1912, 85407, 5440, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90189, '2022-06-12', 8444, 85408, 5440, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90190, '2022-06-12', 1519, 85409, 5440, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90191, '2022-06-12', 2738, 85410, 5440, 56428, '2.0000', '9.2000', '9.2000', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90192, '2022-06-12', 3016, 85411, 5440, 55552, '1.0000', '12.6063', '12.6063', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90193, '2022-06-12', 8444, 85412, 5440, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90194, '2022-06-12', 1519, 85413, 5440, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90195, '2022-06-12', 1922, 85414, 5440, 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 (90196, '2022-06-12', 1715, 85415, 5440, 57066, '1.0000', '9.5000', '9.5000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90197, '2022-06-12', 2821, 85416, 5440, NULL, '1.0000', '3.3984', '3.3984', '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 (90198, '2022-06-12', 1935, 85417, 5440, 48471, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90199, '2022-06-12', 2277, 85418, 5440, NULL, '1.0000', '0.9399', '0.9399', '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 (90200, '2022-06-12', 1337, 85419, 5440, 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 (90201, '2022-06-12', 7579, 85420, 5440, NULL, '2.0000', '15.0000', '15.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 (90202, '2022-06-12', 2237, 85421, 5440, 51305, '2.0000', '58.1889', '58.1889', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90203, '2022-06-12', 2237, 85422, 5441, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90204, '2022-06-12', 2088, 85423, 5441, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90205, '2022-06-12', 2948, 85424, 5441, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90206, '2022-06-12', 1863, 85425, 5442, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90207, '2022-06-12', 2546, 85426, 5442, NULL, '1.0000', '25.2500', '25.2500', '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 (90208, '2022-06-12', 1602, 85427, 5442, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90209, '2022-06-12', 2237, 85428, 5442, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90210, '2022-06-12', 1863, 85429, 5442, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90211, '2022-06-12', 1342, 85430, 5443, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90212, '2022-06-12', 9740, 85431, 5443, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '114.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90213, '2022-06-12', 2108, 85432, 5444, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90214, '2022-06-12', 2315, 85433, 5444, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90215, '2022-06-12', 1337, 85434, 5445, 10809, '-23.0000', '2.0000', '2.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 (90216, '2022-06-12', 1337, 85434, 5445, NULL, '24.0000', '2.0000', '2.0000', '3.5000', '3.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 (90217, '2022-06-12', 7825, 85435, 5445, NULL, '1.0000', '6.5000', '6.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 (90218, '2022-06-12', 9012, 85436, 5445, NULL, '2.0000', '24.0000', '24.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 (90219, '2022-06-12', 7950, 85437, 5445, NULL, '1.0000', '2.4000', '2.4000', '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 (90220, '2022-06-12', 8966, 85438, 5445, NULL, '1.0000', '6.8500', '6.8500', '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 (90221, '2022-06-12', 7518, 85439, 5445, NULL, '1.0000', '7.8200', '7.8200', '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 (90222, '2022-06-12', 2315, 85440, 5445, 2735, '-443.0000', '0.3300', '0.3300', '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 (90223, '2022-06-12', 2315, 85440, 5445, NULL, '444.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-444.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90224, '2022-06-12', 7635, 85441, 5445, NULL, '2.0000', '13.7500', '13.7500', '18.5000', '18.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 (90225, '2022-06-12', 7848, 85442, 5445, NULL, '1.0000', '1.3500', '1.3500', '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 (90226, '2022-06-12', 7527, 85443, 5445, NULL, '2.0000', '0.8900', '0.8900', '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 (90227, '2022-06-12', 7411, 85444, 5445, NULL, '1.0000', '1.3500', '1.3500', '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 (90228, '2022-06-12', 7954, 85445, 5445, 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 (90229, '2022-06-12', 7317, 85446, 5445, NULL, '1.0000', '19.5500', '19.5500', '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 (90230, '2022-06-12', 8208, 85447, 5445, NULL, '2.0000', '33.0000', '33.0000', '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 (90231, '2022-06-12', 7473, 85448, 5445, NULL, '1.0000', '0.5300', '0.5300', '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 (90232, '2022-06-12', 9272, 85449, 5445, NULL, '1.0000', '3.1000', '3.1000', '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 (90233, '2022-06-12', 8208, 85450, 5445, NULL, '3.0000', '33.0000', '33.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 (90234, '2022-06-12', 7741, 85451, 5445, NULL, '1.0000', '1.2000', '1.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 (90235, '2022-06-12', 9512, 85452, 5445, 33797, '1.0000', '1.3100', '1.3100', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90236, '2022-06-12', 7730, 85453, 5445, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (90237, '2022-06-12', 1935, 85454, 5445, 5586, '-112.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 (90238, '2022-06-12', 1935, 85454, 5445, NULL, '113.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90239, '2022-06-12', 9933, 85455, 5445, NULL, '1.0000', '16.9000', '16.9000', '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 (90240, '2022-06-12', 9177, 85456, 5445, NULL, '20.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-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 (90241, '2022-06-12', 9751, 85457, 5445, 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 (90242, '2022-06-12', 7787, 85458, 5445, NULL, '1.0000', '10.9000', '10.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 (90243, '2022-06-12', 7682, 85459, 5445, NULL, '1.0000', '7.7000', '7.7000', '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 (90244, '2022-06-12', 1935, 85460, 5445, 5586, '-112.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 (90245, '2022-06-12', 1935, 85460, 5445, NULL, '113.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90246, '2022-06-12', 7317, 85461, 5445, NULL, '1.0000', '19.5500', '19.5500', '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 (90247, '2022-06-12', 7666, 85462, 5445, NULL, '1.0000', '3.6000', '3.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 (90248, '2022-06-12', 7853, 85463, 5445, NULL, '1.0000', '13.0000', '13.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 (90249, '2022-06-12', 9873, 85464, 5445, NULL, '1.0000', '8.5000', '8.5000', '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 (90250, '2022-06-12', 7514, 85465, 5445, NULL, '1.0000', '2.2500', '2.2500', '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 (90251, '2022-06-12', 7955, 85466, 5445, 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 (90252, '2022-06-12', 2315, 85467, 5445, 2735, '-443.0000', '0.3300', '0.3300', '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 (90253, '2022-06-12', 2315, 85467, 5445, NULL, '444.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-444.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90254, '2022-06-12', 9231, 85468, 5445, NULL, '1.0000', '40.0000', '40.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 (90255, '2022-06-12', 7666, 85469, 5445, NULL, '1.0000', '3.6000', '3.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 (90256, '2022-06-12', 7444, 85470, 5445, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90257, '2022-06-12', 3001, 85471, 5445, NULL, '1.0000', '1.5000', '1.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 (90258, '2022-06-12', 7482, 85472, 5445, NULL, '1.0000', '3.0500', '3.0500', '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 (90259, '2022-06-12', 7748, 85473, 5445, NULL, '1.0000', '7.3000', '7.3000', '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 (90260, '2022-06-12', 7623, 85474, 5445, NULL, '1.0000', '47.0000', '47.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 (90261, '2022-06-12', 7522, 85475, 5445, NULL, '1.0000', '9.7000', '9.7000', '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 (90262, '2022-06-12', 7999, 85476, 5445, NULL, '1.0000', '1.7500', '1.7500', '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 (90263, '2022-06-12', 7753, 85477, 5445, NULL, '1.0000', '3.4000', '3.4000', '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 (90264, '2022-06-12', 2315, 85478, 5445, 2735, '-443.0000', '0.3300', '0.3300', '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 (90265, '2022-06-12', 2315, 85478, 5445, NULL, '444.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-444.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90266, '2022-06-12', 7980, 85479, 5445, NULL, '10.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (90267, '2022-06-12', 7819, 85480, 5445, NULL, '1.0000', '9.5000', '9.5000', '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 (90268, '2022-06-12', 2108, 85481, 5446, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90269, '2022-06-12', 2315, 85482, 5446, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90270, '2022-06-12', 1342, 85483, 5446, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90271, '2022-06-12', 2315, 85484, 5446, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90272, '2022-06-12', 7548, 85485, 5446, NULL, '1.0000', '0.3400', '0.3400', '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 (90273, '2022-06-12', 8444, 85486, 5447, 55973, '1.0000', '-37.8763', '-37.8763', '2.5000', '2.5000', '92.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90274, '2022-06-12', 8456, 85487, 5447, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90275, '2022-06-12', 7558, 85488, 5447, NULL, '1.0000', '1.4867', '1.4867', '3.7000', '3.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 (90276, '2022-06-12', 9424, 85489, 5447, NULL, '1.0000', '84.0925', '84.0925', '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 (90277, '2022-06-12', 9274, 85490, 5447, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90278, '2022-06-12', 1520, 85491, 5447, NULL, '1.0000', '1.4700', '1.4700', '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 (90279, '2022-06-12', 2129, 85492, 5447, 39650, '1.0000', '8.3350', '8.3350', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90280, '2022-06-12', 8449, 85493, 5447, 51786, '1.0000', '11.9000', '11.9000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90281, '2022-06-12', 7905, 85494, 5447, NULL, '1.0000', '3.9963', '3.9963', '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 (90282, '2022-06-12', 9716, 85495, 5447, 56571, '1.0000', '4.8737', '4.8737', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90283, '2022-06-12', 2612, 85496, 5447, 52743, '1.0000', '8.3712', '8.3712', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90284, '2022-06-12', 2289, 85497, 5447, NULL, '1.0000', '2.5688', '2.5688', '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 (90285, '2022-06-12', 7704, 85498, 5447, NULL, '1.0000', '-1.5625', '-1.5625', '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 (90286, '2022-06-12', 7703, 85499, 5447, NULL, '1.0000', '-4961.0093', '-4961.0093', '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 (90287, '2022-06-12', 7473, 85500, 5447, NULL, '4.0000', '75.1643', '75.1643', '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 (90288, '2022-06-12', 8200, 85501, 5447, 56669, '1.0000', '8.7746', '8.7746', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90289, '2022-06-12', 7673, 85502, 5447, 56533, '1.0000', '16.3367', '16.3367', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90290, '2022-06-12', 9274, 85503, 5447, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90291, '2022-06-12', 9390, 85504, 5447, NULL, '1.0000', '25.0000', '25.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 (90292, '2022-06-12', 9272, 85505, 5447, NULL, '1.0000', '3.1000', '3.1000', '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 (90293, '2022-06-12', 7782, 85506, 5447, NULL, '1.0000', '5.0000', '5.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 (90294, '2022-06-12', 9817, 85507, 5447, 55968, '1.0000', '4.9075', '4.9075', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90295, '2022-06-12', 9265, 85508, 5447, 30225, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90296, '2022-06-12', 8154, 85509, 5447, NULL, '3.0000', '12.3000', '12.3000', '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 (90297, '2022-06-12', 7674, 85510, 5447, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90298, '2022-06-12', 9747, 85511, 5447, 56183, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90299, '2022-06-12', 8325, 85512, 5447, 52019, '1.0000', '1.1625', '1.1625', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90300, '2022-06-12', 7744, 85513, 5447, 56658, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90301, '2022-06-12', 9911, 85514, 5447, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90302, '2022-06-12', 7585, 85515, 5447, 57168, '1.0000', '5.1389', '5.1389', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90303, '2022-06-12', 9274, 85516, 5447, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90304, '2022-06-12', 8918, 85517, 5447, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90305, '2022-06-12', 7883, 85518, 5447, NULL, '1.0000', '329.2200', '329.2200', '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 (90306, '2022-06-12', 2891, 85519, 5447, 56485, '1.0000', '9.4493', '9.4493', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90307, '2022-06-12', 7680, 85520, 5447, NULL, '1.0000', '-178.4708', '-178.4708', '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 (90308, '2022-06-12', 8097, 85521, 5447, 56696, '3.0000', '16.0236', '16.0236', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90309, '2022-06-12', 7585, 85522, 5447, 57168, '1.0000', '5.1389', '5.1389', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90310, '2022-06-12', 7704, 85523, 5447, NULL, '2.0000', '-1.5625', '-1.5625', '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 (90311, '2022-06-12', 1916, 85524, 5447, 55119, '1.0000', '10.4660', '10.4660', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90312, '2022-06-12', 2242, 85525, 5447, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '135.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90313, '2022-06-12', 7411, 85526, 5447, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90314, '2022-06-12', 2315, 85527, 5447, 56594, '3.0000', '0.7474', '0.7474', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90315, '2022-06-12', 7667, 85528, 5447, 43447, '1.0000', '8.6120', '8.6120', '9.0000', '9.0000', '17.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90316, '2022-06-12', 8658, 85529, 5447, 57192, '1.0000', '17.5167', '17.5167', '23.5000', '23.5000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90317, '2022-06-12', 9695, 85530, 5447, 56716, '1.0000', '5.4759', '5.4759', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90318, '2022-06-12', 8539, 85531, 5447, 54276, '1.0000', '1.9333', '1.9333', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90319, '2022-06-12', 7333, 85532, 5447, NULL, '2.0000', '-0.5856', '-0.5856', '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 (90320, '2022-06-12', 7482, 85533, 5447, 56021, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '22.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90321, '2022-06-12', 7674, 85534, 5447, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90322, '2022-06-12', 8303, 85535, 5447, 54293, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90323, '2022-06-12', 7743, 85536, 5447, NULL, '1.0000', '919779.6853', '919779.6853', '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 (90324, '2022-06-12', 7514, 85537, 5447, NULL, '1.0000', '17929.5233', '17929.5233', '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 (90325, '2022-06-12', 8170, 85538, 5447, 56018, '1.0000', '5.7913', '5.7913', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90326, '2022-06-12', 7819, 85539, 5447, 56704, '1.0000', '12.6712', '12.6712', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90327, '2022-06-12', 8539, 85540, 5447, 54276, '3.0000', '1.9333', '1.9333', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90328, '2022-06-12', 9204, 85541, 5447, 56564, '1.0000', '5.9356', '5.9356', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90329, '2022-06-12', 8468, 85542, 5447, 54138, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90330, '2022-06-12', 1501, 85543, 5447, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90331, '2022-06-12', 7482, 85544, 5447, 56021, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '22.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90332, '2022-06-12', 1331, 85545, 5447, 57176, '1.0000', '82.9154', '82.9154', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90333, '2022-06-12', 2298, 85546, 5447, 46651, '1.0000', '6.3879', '6.3879', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90334, '2022-06-12', 7685, 85547, 5447, NULL, '1.0000', '31.2000', '31.2000', '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 (90335, '2022-06-12', 2237, 85548, 5448, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90336, '2022-06-12', 9416, 85549, 5448, 49675, '1.0000', '4.2857', '4.2857', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90337, '2022-06-12', 1649, 85550, 5448, 56421, '1.0000', '11.7333', '11.7333', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90338, '2022-06-12', 1578, 85551, 5448, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90339, '2022-06-12', 7411, 85552, 5448, NULL, '1.0000', '1.3013', '1.3013', '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 (90340, '2022-06-12', 1519, 85553, 5448, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90341, '2022-06-12', 8878, 85554, 5448, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90342, '2022-06-12', 2286, 85555, 5448, 53205, '2.0000', '4.4278', '4.4278', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90343, '2022-06-12', 8623, 85556, 5448, NULL, '3.0000', '19.0000', '19.0000', '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 (90344, '2022-06-12', 2315, 85557, 5448, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '90.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90345, '2022-06-12', 8900, 85558, 5448, NULL, '4.0000', '16.4000', '16.4000', '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 (90346, '2022-06-12', 1338, 85559, 5448, 51235, '1.0000', '4.3814', '4.3814', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90347, '2022-06-12', 9735, 85560, 5448, 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 (90348, '2022-06-12', 2315, 85561, 5448, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90349, '2022-06-12', 7743, 85562, 5448, NULL, '1.0000', '7.3900', '7.3900', '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 (90350, '2022-06-12', 2825, 85563, 5448, NULL, '1.0000', '12.0000', '12.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 (90351, '2022-06-12', 7641, 85564, 5448, NULL, '1.0000', '1.9000', '1.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 (90352, '2022-06-12', 8711, 85565, 5448, NULL, '1.0000', '5.1000', '5.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 (90353, '2022-06-12', 9827, 85566, 5448, NULL, '1.0000', '16.6600', '16.6600', '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 (90354, '2022-06-12', 1812, 85567, 5448, 54944, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90355, '2022-06-12', 1519, 85568, 5448, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90356, '2022-06-12', 9762, 85569, 5448, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90357, '2022-06-12', 2642, 85570, 5448, 57151, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90358, '2022-06-12', 1529, 85571, 5448, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90359, '2022-06-12', 1935, 85572, 5448, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90360, '2022-06-12', 7411, 85573, 5448, NULL, '1.0000', '1.3013', '1.3013', '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 (90361, '2022-06-12', 2302, 85574, 5448, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90362, '2022-06-12', 1628, 85575, 5448, 55896, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90363, '2022-06-12', 2617, 85576, 5448, NULL, '2.0000', '5.1800', '5.1800', '8.5000', '8.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 (90364, '2022-06-12', 9897, 85577, 5448, 55685, '10.0000', '1.7300', '1.7300', '2.3000', '2.3000', '26.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90365, '2022-06-12', 2270, 85578, 5448, 54900, '1.0000', '6.1250', '6.1250', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90366, '2022-06-12', 2277, 85579, 5448, NULL, '2.0000', '0.9399', '0.9399', '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 (90367, '2022-06-12', 2320, 85580, 5448, 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 (90368, '2022-06-12', 8878, 85581, 5448, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90369, '2022-06-12', 8900, 85582, 5448, NULL, '4.0000', '16.4000', '16.4000', '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 (90370, '2022-06-12', 1812, 85583, 5448, 54944, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90371, '2022-06-12', 7411, 85584, 5448, NULL, '1.0000', '1.3013', '1.3013', '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 (90372, '2022-06-12', 1833, 85585, 5448, 53216, '1.0000', '5.1600', '5.1600', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90373, '2022-06-12', 8878, 85586, 5448, 56424, '8.0000', '3.8136', '3.8136', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90374, '2022-06-12', 8878, 85586, 5448, NULL, '4.0000', '3.8136', '3.8136', '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 (90375, '2022-06-12', 7741, 85587, 5448, NULL, '2.0000', '-52.1460', '-52.1460', '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 (90376, '2022-06-12', 2506, 85588, 5448, NULL, '1.0000', '2.9584', '2.9584', '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 (90377, '2022-06-12', 7514, 85589, 5448, NULL, '1.0000', '2.2500', '2.2500', '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 (90378, '2022-06-12', 2315, 85590, 5448, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90379, '2022-06-12', 1590, 85591, 5448, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90380, '2022-06-12', 9902, 85592, 5448, 56441, '1.0000', '8.2875', '8.2875', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90381, '2022-06-12', 7641, 85593, 5448, NULL, '1.0000', '1.9000', '1.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 (90382, '2022-06-12', 2315, 85594, 5448, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90383, '2022-06-12', 9726, 85595, 5448, 55719, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90384, '2022-06-12', 7411, 85596, 5448, NULL, '1.0000', '1.3013', '1.3013', '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 (90385, '2022-06-12', 1577, 85597, 5448, NULL, '1.0000', '1.6245', '1.6245', '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 (90386, '2022-06-12', 9732, 85598, 5448, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90387, '2022-06-12', 7713, 85599, 5448, 57060, '2.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '22.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90388, '2022-06-12', 9821, 85600, 5448, 55566, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90389, '2022-06-12', 1855, 85601, 5448, NULL, '4.0000', '1.4820', '1.4820', '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 (90390, '2022-06-12', 7819, 85602, 5448, NULL, '1.0000', '10.0999', '10.0999', '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 (90391, '2022-06-12', 2821, 85603, 5448, NULL, '1.0000', '3.3984', '3.3984', '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 (90392, '2022-06-12', 8878, 85604, 5448, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90393, '2022-06-12', 8746, 85605, 5448, 57097, '1.0000', '3.6242', '3.6242', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90394, '2022-06-12', 8744, 85606, 5448, 57102, '1.0000', '2.3598', '2.3598', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90395, '2022-06-12', 1519, 85607, 5448, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90396, '2022-06-12', 1578, 85608, 5448, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90397, '2022-06-12', 1704, 85609, 5448, NULL, '1.0000', '27.2300', '27.2300', '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 (90398, '2022-06-12', 1342, 85610, 5448, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90399, '2022-06-12', 8699, 85611, 5448, NULL, '1.0000', '6.3800', '6.3800', '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 (90400, '2022-06-12', 9726, 85612, 5448, 55719, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90401, '2022-06-12', 7411, 85613, 5448, NULL, '3.0000', '1.3013', '1.3013', '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 (90402, '2022-06-12', 8735, 85614, 5448, 57119, '1.0000', '7.1000', '7.1000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90403, '2022-06-12', 1578, 85615, 5448, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90404, '2022-06-12', 8878, 85616, 5448, 56424, '1.0000', '3.8136', '3.8136', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90405, '2022-06-12', 9762, 85617, 5448, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90406, '2022-06-12', 7721, 85618, 5449, 55078, '2.0000', '6.3778', '6.3778', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90407, '2022-06-12', 7587, 85619, 5449, NULL, '1.0000', '6.5032', '6.5032', '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 (90408, '2022-06-12', 7411, 85620, 5449, 56187, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90409, '2022-06-12', 2315, 85621, 5449, 56594, '1.0000', '0.7474', '0.7474', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90410, '2022-06-12', 8154, 85622, 5449, NULL, '1.0000', '12.3000', '12.3000', '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 (90411, '2022-06-12', 9865, 85623, 5449, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '14.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90412, '2022-06-12', 8172, 85624, 5449, NULL, '1.0000', '40.7000', '40.7000', '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 (90413, '2022-06-12', 7514, 85625, 5449, NULL, '1.0000', '17929.5233', '17929.5233', '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 (90414, '2022-06-12', 1935, 85626, 5449, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '124.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90415, '2022-06-12', 8547, 85627, 5449, 56550, '2.0000', '2.5128', '2.5128', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90416, '2022-06-12', 8360, 85628, 5449, 56589, '2.0000', '3.2288', '3.2288', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90417, '2022-06-12', 7713, 85629, 5450, 57060, '3.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90418, '2022-06-12', 8595, 85630, 5450, NULL, '1.0000', '3.9640', '3.9640', '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 (90419, '2022-06-12', 9514, 85631, 5450, 57107, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90420, '2022-06-12', 2417, 85632, 5450, 32544, '1.0000', '3.7800', '3.7800', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90421, '2022-06-12', 2037, 85633, 5450, 22540, '1.0000', '10.7500', '10.7500', '21.0000', '21.0000', '3.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 (90422, '2022-06-12', 2733, 85634, 5450, 19362, '1.0000', '7.5000', '7.5000', '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 (90423, '2022-06-12', 7590, 85635, 5450, 55548, '3.0000', '2.7957', '2.7957', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90424, '2022-06-12', 8677, 85636, 5450, NULL, '2.0000', '496.2705', '496.2705', '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 (90425, '2022-06-12', 2295, 85637, 5450, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90426, '2022-06-12', 7411, 85638, 5450, NULL, '2.0000', '1.3013', '1.3013', '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 (90427, '2022-06-12', 2315, 85639, 5450, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90428, '2022-06-13', 1936, 85640, 5451, 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 (90429, '2022-06-13', 9827, 85641, 5451, NULL, '1.0000', '16.6600', '16.6600', '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 (90430, '2022-06-13', 1837, 85642, 5451, NULL, '1.0000', '-21.5736', '-21.5736', '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 (90431, '2022-06-13', 7753, 85643, 5451, NULL, '1.0000', '3.1400', '3.1400', '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 (90432, '2022-06-13', 2762, 85644, 5451, NULL, '1.0000', '7.1000', '7.1000', '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 (90433, '2022-06-13', 8444, 85645, 5451, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90434, '2022-06-13', 2108, 85646, 5451, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90435, '2022-06-13', 9814, 85647, 5451, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90436, '2022-06-13', 8878, 85648, 5451, NULL, '1.0000', '3.8136', '3.8136', '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 (90437, '2022-06-13', 1905, 85649, 5451, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90438, '2022-06-13', 8444, 85650, 5451, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90439, '2022-06-13', 7491, 85651, 5451, NULL, '1.0000', '4.8000', '4.8000', '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 (90440, '2022-06-13', 9878, 85652, 5451, NULL, '1.0000', '9.6000', '9.6000', '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 (90441, '2022-06-13', 8481, 85653, 5451, 45186, '1.0000', '32.3567', '32.3567', '51.5000', '51.5000', '0.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90442, '2022-06-13', 1787, 85654, 5451, NULL, '1.0000', '0.5000', '0.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 (90443, '2022-06-13', 1961, 85655, 5451, 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 (90444, '2022-06-13', 7411, 85656, 5451, NULL, '1.0000', '1.3013', '1.3013', '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 (90445, '2022-06-13', 9603, 85657, 5451, 57098, '1.0000', '2.4968', '2.4968', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90446, '2022-06-13', 2948, 85658, 5451, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90447, '2022-06-13', 8444, 85659, 5451, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90448, '2022-06-13', 1935, 85660, 5451, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90449, '2022-06-13', 1863, 85661, 5451, 56472, '4.0000', '1.4620', '1.4620', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90450, '2022-06-13', 1688, 85662, 5451, 56456, '1.0000', '21.6067', '21.6067', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90451, '2022-06-13', 8878, 85663, 5451, NULL, '2.0000', '3.8136', '3.8136', '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 (90452, '2022-06-13', 1342, 85664, 5451, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90453, '2022-06-13', 1935, 85665, 5451, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90454, '2022-06-13', 1409, 85666, 5451, 55894, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90455, '2022-06-13', 1875, 85667, 5451, 55926, '10.0000', '2.7375', '2.7375', '3.7000', '3.7000', '30.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90456, '2022-06-13', 2342, 85668, 5451, 54886, '1.0000', '2.2091', '2.2091', '3.5000', '3.5000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90457, '2022-06-13', 1863, 85669, 5451, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90458, '2022-06-13', 2237, 85670, 5451, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90459, '2022-06-13', 1602, 85671, 5451, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '21.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90460, '2022-06-13', 2315, 85672, 5451, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90461, '2022-06-13', 9856, 85673, 5451, 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 (90462, '2022-06-13', 1342, 85674, 5451, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90463, '2022-06-13', 1688, 85675, 5451, 56456, '1.0000', '21.6067', '21.6067', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90464, '2022-06-13', 2384, 85676, 5451, NULL, '1.0000', '-0.4538', '-0.4538', '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 (90465, '2022-06-13', 1342, 85677, 5451, 57117, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90466, '2022-06-13', 9740, 85678, 5451, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '112.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90467, '2022-06-13', 1606, 85679, 5451, 34605, '4.0000', '4.9200', '4.9200', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90468, '2022-06-13', 1606, 85679, 5451, 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 (90469, '2022-06-13', 2277, 85680, 5451, NULL, '2.0000', '0.9399', '0.9399', '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 (90470, '2022-06-13', 9469, 85681, 5451, 57103, '1.0000', '4.3167', '4.3167', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90471, '2022-06-13', 7711, 85682, 5452, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90472, '2022-06-13', 7562, 85683, 5452, NULL, '1.0000', '5.5300', '5.5300', '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 (90473, '2022-06-13', 1501, 85684, 5452, NULL, '2.0000', '2.0500', '2.0500', '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 (90474, '2022-06-13', 7715, 85685, 5452, NULL, '1.0000', '1.8900', '1.8900', '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 (90475, '2022-06-13', 7317, 85686, 5452, NULL, '1.0000', '19.5500', '19.5500', '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 (90476, '2022-06-13', 7779, 85687, 5452, 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 (90477, '2022-06-13', 9835, 85688, 5452, NULL, '2.0000', '25.0000', '25.0000', '40.0000', '40.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 (90478, '2022-06-13', 9734, 85689, 5452, NULL, '1.0000', '0.3200', '0.3200', '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 (90479, '2022-06-13', 8463, 85690, 5452, NULL, '1.0000', '18.0000', '18.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 (90480, '2022-06-13', 9729, 85691, 5452, NULL, '1.0000', '0.6200', '0.6200', '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 (90481, '2022-06-13', 8401, 85692, 5452, 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 (90482, '2022-06-13', 7674, 85693, 5452, NULL, '1.0000', '1.3000', '1.3000', '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 (90483, '2022-06-13', 9204, 85694, 5452, NULL, '1.0000', '8.1600', '8.1600', '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 (90484, '2022-06-13', 7672, 85695, 5452, NULL, '2.0000', '1.0200', '1.0200', '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 (90485, '2022-06-13', 9579, 85696, 5452, 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 (90486, '2022-06-13', 7518, 85697, 5452, NULL, '1.0000', '7.8200', '7.8200', '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 (90487, '2022-06-13', 9731, 85698, 5452, 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 (90488, '2022-06-13', 2242, 85699, 5452, 3059, '-56.0000', '0.4800', '0.4800', '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 (90489, '2022-06-13', 2242, 85699, 5452, NULL, '59.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90490, '2022-06-13', 8753, 85700, 5452, 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 (90491, '2022-06-13', 2284, 85701, 5452, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (90492, '2022-06-13', 9399, 85702, 5452, NULL, '2.0000', '0.9800', '0.9800', '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 (90493, '2022-06-13', 1841, 85703, 5452, NULL, '2.0000', '142.5780', '142.5780', '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 (90494, '2022-06-13', 8203, 85704, 5452, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90495, '2022-06-13', 8814, 85705, 5452, NULL, '1.0000', '5.0000', '5.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 (90496, '2022-06-13', 7557, 85706, 5452, NULL, '10.0000', '0.5000', '0.5000', '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 (90497, '2022-06-13', 7547, 85707, 5452, NULL, '9.0000', '0.0000', '0.0000', '0.5000', '0.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 (90498, '2022-06-13', 7756, 85708, 5452, NULL, '1.0000', '2.5000', '2.5000', '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 (90499, '2022-06-13', 7411, 85709, 5452, NULL, '1.0000', '1.3500', '1.3500', '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 (90500, '2022-06-13', 7355, 85710, 5452, 33805, '1.0000', '19.4600', '19.4600', '32.0000', '32.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90501, '2022-06-13', 7317, 85711, 5452, NULL, '1.0000', '19.5500', '19.5500', '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 (90502, '2022-06-13', 7753, 85712, 5452, NULL, '1.0000', '3.4000', '3.4000', '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 (90503, '2022-06-13', 9089, 85713, 5452, NULL, '1.0000', '3.8000', '3.8000', '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 (90504, '2022-06-13', 8444, 85714, 5452, NULL, '1.0000', '1.6000', '1.6000', '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 (90505, '2022-06-13', 9729, 85715, 5452, NULL, '2.0000', '0.6200', '0.6200', '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 (90506, '2022-06-13', 9729, 85716, 5452, NULL, '2.0000', '0.6200', '0.6200', '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 (90507, '2022-06-13', 7317, 85717, 5452, NULL, '1.0000', '19.5500', '19.5500', '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 (90508, '2022-06-13', 8878, 85718, 5452, NULL, '2.0000', '6.6700', '6.6700', '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 (90509, '2022-06-13', 7509, 85719, 5452, 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 (90510, '2022-06-13', 1501, 85720, 5452, NULL, '1.0000', '2.0500', '2.0500', '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 (90511, '2022-06-13', 7588, 85721, 5453, NULL, '1.0000', '6.9000', '6.9000', '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 (90512, '2022-06-13', 8359, 85722, 5453, 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 (90513, '2022-06-13', 1983, 85723, 5453, 6346, '-1.0000', '11.0000', '11.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 (90514, '2022-06-13', 1983, 85723, 5453, NULL, '2.0000', '11.0000', '11.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 (90515, '2022-06-13', 8017, 85724, 5453, NULL, '2.0000', '40.0000', '40.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 (90516, '2022-06-13', 2643, 85725, 5453, NULL, '1.0000', '0.8700', '0.8700', '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 (90517, '2022-06-13', 9695, 85726, 5453, NULL, '2.0000', '4.5000', '4.5000', '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 (90518, '2022-06-13', 7715, 85727, 5453, NULL, '2.0000', '1.8900', '1.8900', '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 (90519, '2022-06-13', 7514, 85728, 5453, NULL, '2.0000', '2.2500', '2.2500', '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 (90520, '2022-06-13', 1340, 85729, 5453, 13005, '-10.0000', '2.7025', '2.7025', '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 (90521, '2022-06-13', 1340, 85729, 5453, NULL, '11.0000', '2.7025', '2.7025', '5.0000', '5.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 (90522, '2022-06-13', 1577, 85730, 5453, 7596, '-16.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 (90523, '2022-06-13', 1577, 85730, 5453, NULL, '17.0000', '2.5000', '2.5000', '4.0000', '4.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 (90524, '2022-06-13', 7411, 85731, 5453, NULL, '2.0000', '1.3500', '1.3500', '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 (90525, '2022-06-13', 7820, 85732, 5453, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90526, '2022-06-13', 7650, 85733, 5453, NULL, '1.0000', '0.8900', '0.8900', '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 (90527, '2022-06-13', 8566, 85734, 5453, NULL, '1.0000', '11.0000', '11.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 (90528, '2022-06-13', 2315, 85735, 5453, 2735, '-446.0000', '0.3300', '0.3300', '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 (90529, '2022-06-13', 2315, 85735, 5453, NULL, '448.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-448.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90530, '2022-06-13', 9274, 85736, 5453, NULL, '1.0000', '3.6000', '3.6000', '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 (90531, '2022-06-13', 7411, 85737, 5453, NULL, '1.0000', '1.3500', '1.3500', '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 (90532, '2022-06-13', 7641, 85738, 5453, NULL, '1.0000', '1.9000', '1.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 (90533, '2022-06-13', 7544, 85739, 5453, NULL, '2.0000', '9.4300', '9.4300', '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 (90534, '2022-06-13', 1841, 85740, 5453, NULL, '2.0000', '142.5780', '142.5780', '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 (90535, '2022-06-13', 2284, 85741, 5453, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (90536, '2022-06-13', 9390, 85742, 5453, NULL, '1.0000', '25.0000', '25.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 (90537, '2022-06-13', 9817, 85743, 5453, NULL, '1.0000', '3.9000', '3.9000', '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 (90538, '2022-06-13', 1993, 85744, 5453, NULL, '2.0000', '0.6000', '0.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 (90539, '2022-06-13', 8186, 85745, 5453, NULL, '3.0000', '1.0800', '1.0800', '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 (90540, '2022-06-13', 8878, 85746, 5453, NULL, '1.0000', '6.6700', '6.6700', '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 (90541, '2022-06-13', 7867, 85747, 5453, NULL, '3.0000', '1.6300', '1.6300', '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 (90542, '2022-06-13', 8456, 85748, 5453, 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 (90543, '2022-06-13', 7753, 85749, 5453, NULL, '1.0000', '3.4000', '3.4000', '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 (90544, '2022-06-13', 1688, 85750, 5453, 4896, '-14.0000', '18.5000', '18.5000', '31.5000', '31.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 (90545, '2022-06-13', 1688, 85750, 5453, NULL, '15.0000', '18.5000', '18.5000', '31.5000', '31.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 (90546, '2022-06-13', 7634, 85751, 5453, NULL, '1.0000', '1.8000', '1.8000', '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 (90547, '2022-06-13', 1501, 85752, 5453, NULL, '1.0000', '2.0500', '2.0500', '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 (90548, '2022-06-13', 7509, 85753, 5453, 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 (90549, '2022-06-13', 7473, 85754, 5453, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90550, '2022-06-13', 9565, 85755, 5453, NULL, '1.0000', '4.5000', '4.5000', '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 (90551, '2022-06-13', 7411, 85756, 5453, NULL, '3.0000', '1.3500', '1.3500', '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 (90552, '2022-06-13', 2451, 85757, 5453, 12922, '-4.0000', '10.3500', '10.3500', '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 (90553, '2022-06-13', 2451, 85757, 5453, NULL, '5.0000', '10.3500', '10.3500', '17.5000', '17.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 (90554, '2022-06-13', 8215, 85758, 5453, NULL, '1.0000', '13.9000', '13.9000', '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 (90555, '2022-06-13', 7848, 85759, 5453, NULL, '2.0000', '1.3500', '1.3500', '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 (90556, '2022-06-13', 1806, 85760, 5453, 11433, '-5.0000', '28.1300', '28.1300', '40.5000', '40.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 (90557, '2022-06-13', 1806, 85760, 5453, NULL, '6.0000', '28.1300', '28.1300', '40.5000', '40.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 (90558, '2022-06-13', 7611, 85761, 5453, NULL, '1.0000', '4.4000', '4.4000', '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 (90559, '2022-06-13', 1935, 85762, 5453, 5586, '-114.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 (90560, '2022-06-13', 1935, 85762, 5453, NULL, '115.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-115.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90561, '2022-06-13', 7917, 85763, 5453, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90562, '2022-06-13', 7524, 85764, 5453, NULL, '1.0000', '11.9500', '11.9500', '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 (90563, '2022-06-13', 7674, 85765, 5453, NULL, '1.0000', '1.3000', '1.3000', '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 (90564, '2022-06-13', 1671, 85766, 5453, 7457, '-43.0000', '4.2000', '4.2000', '64.0000', '64.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90565, '2022-06-13', 1671, 85766, 5453, NULL, '44.0000', '4.2000', '4.2000', '64.0000', '64.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90566, '2022-06-13', 7354, 85767, 5453, NULL, '2.0000', '0.3700', '0.3700', '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 (90567, '2022-06-13', 7709, 85768, 5453, 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 (90568, '2022-06-13', 9456, 85769, 5453, NULL, '1.0000', '3.3200', '3.3200', '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 (90569, '2022-06-13', 7672, 85770, 5453, NULL, '2.0000', '1.0200', '1.0200', '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 (90570, '2022-06-13', 7666, 85771, 5453, NULL, '1.0000', '3.6000', '3.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 (90571, '2022-06-13', 7316, 85772, 5453, NULL, '10.0000', '9.5500', '9.5500', '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 (90572, '2022-06-13', 7730, 85773, 5453, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (90573, '2022-06-13', 7593, 85774, 5453, NULL, '1.0000', '2.4500', '2.4500', '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 (90574, '2022-06-13', 7411, 85775, 5453, NULL, '1.0000', '1.3500', '1.3500', '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 (90575, '2022-06-13', 8878, 85776, 5453, NULL, '1.0000', '6.6700', '6.6700', '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 (90576, '2022-06-13', 7674, 85777, 5453, NULL, '1.0000', '1.3000', '1.3000', '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 (90577, '2022-06-13', 1560, 85778, 5453, NULL, '2.0000', '130.1885', '130.1885', '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 (90578, '2022-06-13', 1689, 85779, 5453, 4897, '-13.0000', '60.7198', '60.7198', '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 (90579, '2022-06-13', 1689, 85779, 5453, NULL, '14.0000', '60.7198', '60.7198', '21.0000', '21.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 (90580, '2022-06-13', 2277, 85780, 5453, 2937, '-54.0000', '0.7800', '0.7800', '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 (90581, '2022-06-13', 2277, 85780, 5453, NULL, '56.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90582, '2022-06-13', 9311, 85781, 5453, NULL, '1.0000', '6.6000', '6.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 (90583, '2022-06-13', 1420, 85782, 5453, 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 (90584, '2022-06-13', 8878, 85783, 5453, NULL, '1.0000', '6.6700', '6.6700', '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 (90585, '2022-06-13', 9734, 85784, 5453, NULL, '2.0000', '0.3200', '0.3200', '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 (90586, '2022-06-13', 9791, 85785, 5453, 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 (90587, '2022-06-13', 1846, 85786, 5453, 12032, '-19.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 (90588, '2022-06-13', 1846, 85786, 5453, NULL, '20.0000', '12.0000', '12.0000', '18.0000', '18.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 (90589, '2022-06-13', 2242, 85787, 5453, 3059, '-59.0000', '0.4800', '0.4800', '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 (90590, '2022-06-13', 2242, 85787, 5453, NULL, '62.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90591, '2022-06-13', 9214, 85788, 5453, NULL, '1.0000', '9.6000', '9.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 (90592, '2022-06-13', 9695, 85789, 5453, NULL, '1.0000', '4.5000', '4.5000', '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 (90593, '2022-06-13', 9329, 85790, 5453, NULL, '1.0000', '6.7000', '6.7000', '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 (90594, '2022-06-13', 7472, 85791, 5453, NULL, '1.0000', '4.1000', '4.1000', '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 (90595, '2022-06-13', 7958, 85792, 5453, NULL, '1.0000', '3.7500', '3.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 (90596, '2022-06-13', 7518, 85793, 5453, NULL, '1.0000', '7.8200', '7.8200', '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 (90597, '2022-06-13', 7514, 85794, 5454, NULL, '2.0000', '2.2500', '2.2500', '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 (90598, '2022-06-13', 8040, 85795, 5454, NULL, '1.0000', '14.9000', '14.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 (90599, '2022-06-13', 8548, 85796, 5454, NULL, '1.0000', '12.0000', '12.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 (90600, '2022-06-13', 7560, 85797, 5454, NULL, '1.0000', '33.0200', '33.0200', '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 (90601, '2022-06-13', 7666, 85798, 5454, NULL, '1.0000', '3.6000', '3.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 (90602, '2022-06-13', 9740, 85799, 5455, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '110.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90603, '2022-06-13', 1867, 85800, 5455, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90604, '2022-06-13', 9891, 85801, 5455, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90605, '2022-06-13', 8813, 85802, 5455, 55544, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90606, '2022-06-13', 1578, 85803, 5455, 52354, '1.0000', '2.2959', '2.2959', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90607, '2022-06-13', 8878, 85804, 5455, NULL, '1.0000', '3.8136', '3.8136', '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 (90608, '2022-06-13', 2821, 85805, 5455, NULL, '1.0000', '3.3984', '3.3984', '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 (90609, '2022-06-13', 2221, 85806, 5455, NULL, '1.0000', '12.6522', '12.6522', '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 (90610, '2022-06-13', 1529, 85807, 5455, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90611, '2022-06-13', 2010, 85808, 5455, 57153, '1.0000', '1.2882', '1.2882', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90612, '2022-06-13', 2821, 85809, 5455, NULL, '1.0000', '3.3984', '3.3984', '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 (90613, '2022-06-13', 7411, 85810, 5455, NULL, '1.0000', '1.3013', '1.3013', '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 (90614, '2022-06-13', 1577, 85811, 5455, NULL, '1.0000', '1.6245', '1.6245', '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 (90615, '2022-06-13', 8878, 85812, 5455, NULL, '1.0000', '3.8136', '3.8136', '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 (90616, '2022-06-13', 9866, 85813, 5455, 54882, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90617, '2022-06-13', 7411, 85814, 5455, NULL, '1.0000', '1.3013', '1.3013', '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 (90618, '2022-06-13', 8740, 85815, 5455, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90619, '2022-06-13', 2315, 85816, 5455, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90620, '2022-06-13', 2085, 85817, 5455, NULL, '8.0000', '3.9526', '3.9526', '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 (90621, '2022-06-13', 1728, 85818, 5455, 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 (90622, '2022-06-13', 7506, 85819, 5455, NULL, '2.0000', '15.0000', '15.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 (90623, '2022-06-13', 2102, 85820, 5455, 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 (90624, '2022-06-13', 1873, 85821, 5455, 54894, '1.0000', '15.6100', '15.6100', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90625, '2022-06-13', 7401, 85822, 5455, NULL, '1.0000', '74.3000', '74.3000', '98.5000', '98.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90626, '2022-06-13', 1961, 85823, 5455, 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 (90627, '2022-06-13', 1498, 85824, 5455, 52352, '1.0000', '0.4476', '0.4476', '0.6000', '0.6000', '33.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90628, '2022-06-13', 7411, 85825, 5455, NULL, '3.0000', '1.3013', '1.3013', '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 (90629, '2022-06-13', 2289, 85826, 5455, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90630, '2022-06-13', 7328, 85827, 5455, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (90631, '2022-06-13', 1840, 85828, 5455, NULL, '1.0000', '0.2400', '0.2400', '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 (90632, '2022-06-13', 1529, 85829, 5455, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90633, '2022-06-13', 9794, 85830, 5455, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90634, '2022-06-13', 7411, 85831, 5455, NULL, '1.0000', '1.3013', '1.3013', '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 (90635, '2022-06-13', 2315, 85832, 5455, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90636, '2022-06-13', 2354, 85833, 5455, NULL, '1.0000', '-0.6066', '-0.6066', '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 (90637, '2022-06-13', 7514, 85834, 5455, NULL, '1.0000', '2.2500', '2.2500', '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 (90638, '2022-06-13', 7707, 85835, 5455, NULL, '1.0000', '7.0000', '7.0000', '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 (90639, '2022-06-13', 9889, 85836, 5455, 55952, '4.0000', '1.7000', '1.7000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90640, '2022-06-13', 2237, 85837, 5455, 51305, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90641, '2022-06-13', 7514, 85838, 5455, NULL, '2.0000', '2.2500', '2.2500', '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 (90642, '2022-06-13', 1425, 85839, 5455, 57079, '1.0000', '19.3384', '19.3384', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90643, '2022-06-13', 1342, 85840, 5455, 56372, '1.0000', '7.2732', '7.2732', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90644, '2022-06-13', 9762, 85841, 5455, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90645, '2022-06-13', 9715, 85842, 5455, 51322, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90646, '2022-06-13', 2295, 85843, 5455, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90647, '2022-06-13', 2036, 85844, 5455, 57089, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90648, '2022-06-13', 1935, 85845, 5455, 48471, '1.0000', '0.7671', '0.7671', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90649, '2022-06-13', 9735, 85846, 5455, 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 (90650, '2022-06-13', 1945, 85847, 5455, 55668, '1.0000', '9.3000', '9.3000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90651, '2022-06-13', 2384, 85848, 5455, NULL, '9.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-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 (90652, '2022-06-13', 1912, 85849, 5455, 54917, '3.0000', '0.6209', '0.6209', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90653, '2022-06-13', 7641, 85850, 5455, NULL, '1.0000', '1.9000', '1.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 (90654, '2022-06-13', 9834, 85851, 5455, 55944, '3.0000', '1.4500', '1.4500', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90655, '2022-06-13', 2029, 85852, 5455, 54839, '1.0000', '13.2500', '13.2500', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90656, '2022-06-13', 7339, 85853, 5455, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (90657, '2022-06-13', 1888, 85854, 5455, 56371, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90658, '2022-06-13', 2010, 85855, 5455, 57153, '1.0000', '1.2882', '1.2882', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90659, '2022-06-13', 7641, 85856, 5455, NULL, '1.0000', '1.9000', '1.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 (90660, '2022-06-13', 2315, 85857, 5455, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90661, '2022-06-13', 2079, 85858, 5455, 55647, '2.0000', '1.8809', '1.8809', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90662, '2022-06-13', 7472, 85859, 5455, NULL, '1.0000', '-56.4939', '-56.4939', '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 (90663, '2022-06-13', 1904, 85860, 5455, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90664, '2022-06-13', 2295, 85861, 5455, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90665, '2022-06-13', 7585, 85862, 5455, NULL, '1.0000', '3.9600', '3.9600', '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 (90666, '2022-06-13', 1935, 85863, 5455, 48471, '2.0000', '0.7671', '0.7671', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90667, '2022-06-13', 1519, 85864, 5455, 57083, '2.0000', '3.7244', '3.7244', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90668, '2022-06-13', 2132, 85865, 5455, 57091, '1.0000', '28.5000', '28.5000', '32.0000', '32.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90669, '2022-06-13', 9856, 85866, 5455, 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 (90670, '2022-06-13', 7411, 85867, 5455, NULL, '1.0000', '1.3013', '1.3013', '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 (90671, '2022-06-13', 2277, 85868, 5455, NULL, '3.0000', '0.9399', '0.9399', '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 (90672, '2022-06-13', 9891, 85869, 5455, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90673, '2022-06-13', 7579, 85870, 5455, NULL, '1.0000', '15.0000', '15.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 (90674, '2022-06-13', 7411, 85871, 5455, NULL, '2.0000', '1.3013', '1.3013', '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 (90675, '2022-06-13', 7514, 85872, 5455, NULL, '2.0000', '2.2500', '2.2500', '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 (90676, '2022-06-13', 9891, 85873, 5455, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90677, '2022-06-13', 1787, 85874, 5455, NULL, '1.0000', '0.5000', '0.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 (90678, '2022-06-13', 2315, 85875, 5455, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90679, '2022-06-13', 9569, 85876, 5455, 55657, '1.0000', '132.2000', '132.2000', '175.0000', '175.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90680, '2022-06-13', 8149, 85877, 5455, 53667, '1.0000', '6.6333', '6.6333', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90681, '2022-06-13', 8149, 85877, 5455, NULL, '1.0000', '6.6333', '6.6333', '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 (90682, '2022-06-13', 2256, 85878, 5455, NULL, '1.0000', '13.7060', '13.7060', '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 (90683, '2022-06-13', 2730, 85879, 5455, 51643, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90684, '2022-06-13', 3044, 85880, 5455, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '19.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 (90685, '2022-06-13', 9891, 85881, 5455, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90686, '2022-06-13', 2443, 85882, 5455, 56867, '2.0000', '3.1936', '3.1936', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90687, '2022-06-13', 1520, 85883, 5455, 57085, '1.0000', '1.7877', '1.7877', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90688, '2022-06-13', 8774, 85884, 5455, 50535, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90689, '2022-06-13', 9794, 85885, 5455, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90690, '2022-06-13', 1590, 85886, 5455, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90691, '2022-06-13', 8444, 85887, 5455, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90692, '2022-06-13', 9891, 85888, 5455, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90693, '2022-06-13', 9743, 85889, 5455, 56438, '1.0000', '13.2429', '13.2429', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90694, '2022-06-13', 1846, 85890, 5455, NULL, '1.0000', '478.9750', '478.9750', '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 (90695, '2022-06-13', 9821, 85891, 5455, 51690, '2.0000', '1.4500', '1.4500', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90696, '2022-06-13', 7954, 85892, 5455, 57084, '2.0000', '2.4470', '2.4470', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90697, '2022-06-13', 1810, 85893, 5455, NULL, '1.0000', '15.0116', '15.0116', '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 (90698, '2022-06-13', 1487, 85894, 5455, NULL, '1.0000', '-330.9124', '-330.9124', '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 (90699, '2022-06-13', 9726, 85895, 5455, 55719, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90700, '2022-06-13', 7411, 85896, 5455, NULL, '1.0000', '1.3013', '1.3013', '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 (90701, '2022-06-13', 2511, 85897, 5455, NULL, '1.0000', '13.8000', '13.8000', '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 (90702, '2022-06-13', 1546, 85898, 5455, 49329, '2.0000', '51.6105', '51.6105', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90703, '2022-06-13', 8183, 85899, 5455, NULL, '1.0000', '-1179.5325', '-1179.5325', '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 (90704, '2022-06-13', 9634, 85900, 5455, 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 (90705, '2022-06-13', 9408, 85901, 5455, NULL, '1.0000', '10.0000', '10.0000', '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 (90706, '2022-06-13', 9695, 85902, 5455, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '26.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90707, '2022-06-13', 1387, 85903, 5455, 55150, '1.0000', '13.8750', '13.8750', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90708, '2022-06-13', 3039, 85904, 5455, 55153, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90709, '2022-06-13', 9856, 85905, 5455, 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 (90710, '2022-06-13', 1307, 85906, 5455, NULL, '1.0000', '-59.9897', '-59.9897', '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 (90711, '2022-06-13', 2759, 85907, 5455, 54946, '1.0000', '4.0909', '4.0909', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90712, '2022-06-13', 9158, 85908, 5455, NULL, '1.0000', '5.8900', '5.8900', '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 (90713, '2022-06-13', 1779, 85909, 5455, 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 (90714, '2022-06-13', 2302, 85910, 5455, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90715, '2022-06-13', 7886, 85911, 5455, NULL, '1.0000', '14.5000', '14.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 (90716, '2022-06-13', 8207, 85912, 5455, NULL, '1.0000', '0.0000', '0.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 (90717, '2022-06-13', 1486, 85913, 5455, 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 (90718, '2022-06-13', 1904, 85914, 5455, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90719, '2022-06-13', 7641, 85915, 5455, NULL, '1.0000', '1.9000', '1.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 (90720, '2022-06-13', 2394, 85916, 5455, NULL, '1.0000', '6.0000', '6.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 (90721, '2022-06-13', 1410, 85917, 5455, NULL, '1.0000', '48.8052', '48.8052', '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 (90722, '2022-06-13', 7411, 85918, 5455, NULL, '1.0000', '1.3013', '1.3013', '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 (90723, '2022-06-13', 2315, 85919, 5455, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90724, '2022-06-13', 1340, 85920, 5455, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90725, '2022-06-13', 1904, 85921, 5455, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90726, '2022-06-13', 2295, 85922, 5455, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90727, '2022-06-13', 9844, 85923, 5455, 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 (90728, '2022-06-13', 1432, 85924, 5455, 55707, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90729, '2022-06-13', 9715, 85925, 5455, 51322, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90730, '2022-06-13', 7411, 85926, 5455, NULL, '1.0000', '1.3013', '1.3013', '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 (90731, '2022-06-13', 2315, 85927, 5455, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90732, '2022-06-13', 9089, 85928, 5456, NULL, '1.0000', '3.8000', '3.8000', '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 (90733, '2022-06-14', 9856, 85929, 5457, 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 (90734, '2022-06-14', 9866, 85930, 5457, 54882, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90735, '2022-06-14', 1493, 85931, 5457, NULL, '1.0000', '-27.3400', '-27.3400', '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 (90736, '2022-06-14', 9463, 85932, 5457, NULL, '1.0000', '145.5664', '145.5664', '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 (90737, '2022-06-14', 1950, 85933, 5457, NULL, '1.0000', '1.8624', '1.8624', '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 (90738, '2022-06-14', 1649, 85934, 5457, 56421, '1.0000', '11.7333', '11.7333', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90739, '2022-06-14', 2299, 85935, 5457, NULL, '3.0000', '6.0000', '6.0000', '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 (90740, '2022-06-14', 1771, 85936, 5457, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90741, '2022-06-14', 1935, 85937, 5457, NULL, '2.0000', '0.7671', '0.7671', '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 (90742, '2022-06-14', 9794, 85938, 5457, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90743, '2022-06-14', 1342, 85939, 5457, 22390, '1.0000', '7.2732', '7.2732', '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 (90744, '2022-06-14', 2275, 85940, 5457, 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 (90745, '2022-06-14', 2315, 85941, 5457, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '77.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90746, '2022-06-14', 2011, 85942, 5457, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90747, '2022-06-14', 2916, 85943, 5457, NULL, '1.0000', '777.2552', '777.2552', '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 (90748, '2022-06-14', 9603, 85944, 5457, 57098, '1.0000', '2.4968', '2.4968', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90749, '2022-06-14', 1386, 85945, 5457, 55934, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90750, '2022-06-14', 8017, 85946, 5457, 57065, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90751, '2022-06-14', 1856, 85947, 5457, NULL, '1.0000', '20.0009', '20.0009', '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 (90752, '2022-06-14', 9729, 85948, 5457, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90753, '2022-06-14', 2964, 85949, 5457, NULL, '1.0000', '9.0607', '9.0607', '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 (90754, '2022-06-14', 1602, 85950, 5457, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90755, '2022-06-14', 1695, 85951, 5457, 55947, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90756, '2022-06-14', 1837, 85952, 5458, NULL, '3.0000', '-21.5736', '-21.5736', '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 (90757, '2022-06-14', 2315, 85953, 5458, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90758, '2022-06-14', 2242, 85954, 5458, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90759, '2022-06-14', 2315, 85955, 5458, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90760, '2022-06-14', 1450, 85956, 5458, 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 (90761, '2022-06-14', 8637, 85957, 5458, NULL, '4.0000', '40.3000', '40.3000', '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 (90762, '2022-06-14', 9274, 85958, 5458, NULL, '1.0000', '0.2500', '0.2500', '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 (90763, '2022-06-14', 2237, 85959, 5458, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90764, '2022-06-14', 2315, 85960, 5458, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90765, '2022-06-14', 9748, 85961, 5458, 51222, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90766, '2022-06-14', 1867, 85962, 5458, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90767, '2022-06-14', 8068, 85963, 5458, NULL, '1.0000', '8.7900', '8.7900', '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 (90768, '2022-06-14', 2315, 85964, 5459, 2735, '-448.0000', '0.3300', '0.3300', '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 (90769, '2022-06-14', 2315, 85964, 5459, NULL, '449.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-449.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90770, '2022-06-14', 2916, 85965, 5459, 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 (90771, '2022-06-14', 2221, 85966, 5459, 4154, '-63.0000', '14.4737', '14.4737', '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 (90772, '2022-06-14', 2221, 85966, 5459, NULL, '64.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90773, '2022-06-14', 2169, 85967, 5459, 10737, '-143.0000', '3.8397', '3.8397', '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 (90774, '2022-06-14', 2169, 85967, 5459, NULL, '144.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-144.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90775, '2022-06-14', 1493, 85968, 5459, 9747, '-23.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 (90776, '2022-06-14', 1493, 85968, 5459, NULL, '24.0000', '1.5425', '1.5425', '3.0000', '3.0000', '-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 (90777, '2022-06-14', 2768, 85969, 5459, NULL, '2.0000', '0.9600', '0.9600', '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 (90778, '2022-06-14', 2242, 85970, 5459, 3059, '-62.0000', '0.4800', '0.4800', '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 (90779, '2022-06-14', 2242, 85970, 5459, NULL, '64.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90780, '2022-06-14', 7703, 85971, 5459, NULL, '1.0000', '22.9900', '22.9900', '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 (90781, '2022-06-14', 1590, 85972, 5459, 22260, '3.0000', '1.7100', '1.7100', '3.5000', '3.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 (90782, '2022-06-14', 1863, 85973, 5459, 10808, '-132.0000', '0.4136', '0.4136', '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 (90783, '2022-06-14', 1863, 85973, 5459, NULL, '134.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-134.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90784, '2022-06-14', 1646, 85974, 5459, 3239, '-22.0000', '4.5300', '4.5300', '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 (90785, '2022-06-14', 1646, 85974, 5459, NULL, '23.0000', '4.5300', '4.5300', '8.0000', '8.0000', '-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 (90786, '2022-06-14', 1306, 85975, 5459, 5581, '-1.0000', '22.5969', '22.5969', '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 (90787, '2022-06-14', 1306, 85975, 5459, NULL, '3.0000', '22.5969', '22.5969', '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 (90788, '2022-06-14', 1787, 85976, 5459, 4905, '-12.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 (90789, '2022-06-14', 1787, 85976, 5459, NULL, '13.0000', '0.8100', '0.8100', '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 (90790, '2022-06-14', 8878, 85977, 5459, NULL, '1.0000', '6.6700', '6.6700', '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 (90791, '2022-06-14', 1529, 85978, 5459, NULL, '1.0000', '3.5500', '3.5500', '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 (90792, '2022-06-14', 1432, 85979, 5459, NULL, '1.0000', '8.1574', '8.1574', '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 (90793, '2022-06-14', 1425, 85980, 5459, NULL, '1.0000', '6.4405', '6.4405', '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 (90794, '2022-06-14', 7459, 85981, 5459, NULL, '10.0000', '2.3500', '2.3500', '4.0000', '4.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 (90795, '2022-06-14', 2906, 85982, 5459, 18651, '-21.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 (90796, '2022-06-14', 2906, 85982, 5459, NULL, '22.0000', '2.6000', '2.6000', '4.0000', '4.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90797, '2022-06-14', 1536, 85983, 5459, 1634, '-64.0000', '3.1686', '3.1686', '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 (90798, '2022-06-14', 1536, 85983, 5459, NULL, '74.0000', '3.1686', '3.1686', '7.0000', '7.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90799, '2022-06-14', 2221, 85984, 5459, 4154, '-63.0000', '14.4737', '14.4737', '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 (90800, '2022-06-14', 2221, 85984, 5459, NULL, '64.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90801, '2022-06-14', 1726, 85985, 5459, 6623, '-2.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 (90802, '2022-06-14', 1726, 85985, 5459, NULL, '3.0000', '90.0000', '90.0000', '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 (90803, '2022-06-14', 2466, 85986, 5459, 12695, '1.0000', '13.5900', '13.5900', '19.1400', '19.1400', '1.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 (90804, '2022-06-14', 9590, 85987, 5459, 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 (90805, '2022-06-14', 1450, 85988, 5459, 5570, '-37.0000', '61.1074', '61.1074', '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 (90806, '2022-06-14', 1450, 85988, 5459, NULL, '39.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90807, '2022-06-14', 2237, 85989, 5460, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90808, '2022-06-14', 8444, 85990, 5460, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90809, '2022-06-14', 2916, 85991, 5460, NULL, '1.0000', '777.2552', '777.2552', '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 (90810, '2022-06-14', 9748, 85992, 5460, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90811, '2022-06-14', 2921, 85993, 5460, NULL, '1.0000', '4.9000', '4.9000', '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 (90812, '2022-06-14', 1935, 85994, 5460, NULL, '1.0000', '0.7671', '0.7671', '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 (90813, '2022-06-14', 1415, 85995, 5460, NULL, '1.0000', '14.5000', '14.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 (90814, '2022-06-14', 1342, 85996, 5460, 22390, '1.0000', '7.2732', '7.2732', '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 (90815, '2022-06-14', 2275, 85997, 5460, 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 (90816, '2022-06-14', 2302, 85998, 5460, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90817, '2022-06-14', 2385, 85999, 5460, 54549, '1.0000', '10.5450', '10.5450', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90818, '2022-06-14', 8362, 86000, 5460, NULL, '3.0000', '4.1000', '4.1000', '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 (90819, '2022-06-14', 9725, 86001, 5460, 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 (90820, '2022-06-14', 1935, 86002, 5460, NULL, '1.0000', '0.7671', '0.7671', '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 (90821, '2022-06-14', 8444, 86003, 5460, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90822, '2022-06-14', 9737, 86004, 5461, NULL, '1.0000', '7.3000', '7.3000', '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 (90823, '2022-06-14', 1908, 86005, 5461, 5444, '-45.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 (90824, '2022-06-14', 1908, 86005, 5461, NULL, '46.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90825, '2022-06-14', 2237, 86006, 5461, 2781, '-55.0000', '1.0600', '1.0600', '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 (90826, '2022-06-14', 2237, 86006, 5461, NULL, '57.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90827, '2022-06-14', 2298, 86007, 5461, 2957, '-5.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 (90828, '2022-06-14', 2298, 86007, 5461, NULL, '6.0000', '6.0000', '6.0000', '10.0000', '10.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 (90829, '2022-06-14', 2135, 86008, 5461, 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 (90830, '2022-06-14', 1665, 86009, 5461, 3235, '-114.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 (90831, '2022-06-14', 1665, 86009, 5461, NULL, '116.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-116.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90832, '2022-06-14', 9734, 86010, 5461, NULL, '2.0000', '0.3200', '0.3200', '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 (90833, '2022-06-14', 2169, 86011, 5461, 10737, '-144.0000', '3.8397', '3.8397', '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 (90834, '2022-06-14', 2169, 86011, 5461, NULL, '145.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90835, '2022-06-14', 9794, 86012, 5461, NULL, '1.0000', '1.0800', '1.0800', '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 (90836, '2022-06-14', 1371, 86013, 5461, 10169, '-5.0000', '5.5000', '5.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 (90837, '2022-06-14', 1371, 86013, 5461, NULL, '6.0000', '5.5000', '5.5000', '10.0000', '10.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 (90838, '2022-06-14', 2486, 86014, 5461, 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 (90839, '2022-06-14', 1666, 86015, 5461, 3236, '-34.0000', '2.7100', '2.7100', '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 (90840, '2022-06-14', 1666, 86015, 5461, NULL, '35.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90841, '2022-06-14', 1472, 86016, 5461, 122, '1.0000', '90.0000', '90.0000', '53.0000', '53.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 (90842, '2022-06-14', 2384, 86017, 5461, 4087, '-11.0000', '0.4000', '0.4000', '0.7000', '0.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 (90843, '2022-06-14', 2384, 86017, 5461, NULL, '25.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (90844, '2022-06-14', 1668, 86018, 5461, 3238, '-5.0000', '13.0442', '13.0442', '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 (90845, '2022-06-14', 1668, 86018, 5461, NULL, '6.0000', '13.0442', '13.0442', '20.0000', '20.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 (90846, '2022-06-14', 2277, 86019, 5461, 2937, '-56.0000', '0.7800', '0.7800', '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 (90847, '2022-06-14', 2277, 86019, 5461, NULL, '58.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90848, '2022-06-14', 1347, 86020, 5461, 243, '2.0000', '3.4000', '3.4000', '6.0000', '6.0000', '39.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90849, '2022-06-14', 9112, 86021, 5461, NULL, '1.0000', '15.0000', '15.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 (90850, '2022-06-14', 2578, 86022, 5461, NULL, '1.0000', '10.0000', '10.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 (90851, '2022-06-14', 2397, 86023, 5461, 4204, '-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 (90852, '2022-06-14', 2397, 86023, 5461, NULL, '2.0000', '13.5000', '13.5000', '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 (90853, '2022-06-14', 2080, 86024, 5461, NULL, '1.0000', '17.9638', '17.9638', '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 (90854, '2022-06-14', 1812, 86025, 5461, 8224, '-95.0000', '7.8900', '7.8900', '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 (90855, '2022-06-14', 1812, 86025, 5461, NULL, '97.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-97.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90856, '2022-06-14', 1888, 86026, 5461, 14663, '-9.0000', '134.8400', '134.8400', '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 (90857, '2022-06-14', 1888, 86026, 5461, NULL, '10.0000', '134.8400', '134.8400', '25.0000', '25.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 (90858, '2022-06-14', 1486, 86027, 5461, 20667, '1.0000', '17.2400', '17.2400', '22.5000', '22.5000', '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 (90859, '2022-06-14', 1666, 86028, 5461, 3236, '-34.0000', '2.7100', '2.7100', '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 (90860, '2022-06-14', 1666, 86028, 5461, NULL, '35.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90861, '2022-06-14', 2699, 86029, 5461, 12529, '-44.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 (90862, '2022-06-14', 2699, 86029, 5461, NULL, '45.0000', '3.0000', '3.0000', '5.0000', '5.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 (90863, '2022-06-14', 2655, 86030, 5461, 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 (90864, '2022-06-14', 2916, 86031, 5461, 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 (90865, '2022-06-14', 1670, 86032, 5462, 10163, '-17.0000', '19.5000', '19.5000', '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 (90866, '2022-06-14', 1670, 86032, 5462, NULL, '18.0000', '19.5000', '19.5000', '36.0000', '36.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 (90867, '2022-06-14', 2105, 86033, 5462, NULL, '2.0000', '1.3500', '1.3500', '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 (90868, '2022-06-14', 9822, 86034, 5462, NULL, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90869, '2022-06-14', 2379, 86035, 5462, 4032, '-62.0000', '1.5900', '1.5900', '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 (90870, '2022-06-14', 2379, 86035, 5462, NULL, '63.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90871, '2022-06-14', 2245, 86036, 5462, 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 (90872, '2022-06-14', 2285, 86037, 5462, 2945, '-45.0000', '35.8000', '35.8000', '65.5000', '65.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 (90873, '2022-06-14', 2285, 86037, 5462, NULL, '46.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90874, '2022-06-14', 2070, 86038, 5462, NULL, '1.0000', '2.0000', '2.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 (90875, '2022-06-14', 2444, 86039, 5462, 5314, '-8.0000', '6.0000', '6.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90876, '2022-06-14', 2444, 86039, 5462, NULL, '9.0000', '6.0000', '6.0000', '14.0000', '14.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 (90877, '2022-06-14', 1935, 86040, 5462, 5586, '-115.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 (90878, '2022-06-14', 1935, 86040, 5462, NULL, '118.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-118.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90879, '2022-06-14', 7411, 86041, 5462, NULL, '1.0000', '1.3500', '1.3500', '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 (90880, '2022-06-14', 9734, 86042, 5462, NULL, '1.0000', '0.3200', '0.3200', '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 (90881, '2022-06-14', 1839, 86043, 5462, 8734, '-33.0000', '6.1500', '6.1500', '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 (90882, '2022-06-14', 1839, 86043, 5462, NULL, '34.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (90883, '2022-06-14', 2642, 86044, 5462, 10573, '-18.0000', '9.2000', '9.2000', '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 (90884, '2022-06-14', 2642, 86044, 5462, NULL, '19.0000', '9.2000', '9.2000', '15.0000', '15.0000', '-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 (90885, '2022-06-14', 2315, 86045, 5462, 2735, '-449.0000', '0.3300', '0.3300', '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 (90886, '2022-06-14', 2315, 86045, 5462, NULL, '451.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-451.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90887, '2022-06-14', 1330, 86046, 5462, 14393, '-6.0000', '3.7000', '3.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 (90888, '2022-06-14', 1330, 86046, 5462, NULL, '7.0000', '3.7000', '3.7000', '4.0000', '4.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 (90889, '2022-06-14', 1328, 86047, 5462, NULL, '2.0000', '3.1500', '3.1500', '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 (90890, '2022-06-14', 8878, 86048, 5462, NULL, '2.0000', '6.6700', '6.6700', '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 (90891, '2022-06-14', 2821, 86049, 5462, 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 (90892, '2022-06-14', 2315, 86050, 5462, 2735, '-449.0000', '0.3300', '0.3300', '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 (90893, '2022-06-14', 2315, 86050, 5462, NULL, '451.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-451.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90894, '2022-06-14', 1672, 86051, 5462, 7384, '-145.0000', '2.8700', '2.8700', '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 (90895, '2022-06-14', 1672, 86051, 5462, NULL, '155.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90896, '2022-06-14', 1686, 86052, 5462, NULL, '1.0000', '26.6000', '26.6000', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90897, '2022-06-14', 2105, 86053, 5462, NULL, '2.0000', '1.3500', '1.3500', '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 (90898, '2022-06-14', 7318, 86054, 5462, NULL, '1.0000', '13.4400', '13.4400', '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 (90899, '2022-06-14', 9463, 86055, 5462, NULL, '1.0000', '7.5000', '7.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 (90900, '2022-06-14', 1406, 86056, 5462, 22300, '1.0000', '17.1816', '17.1816', '29.0000', '29.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 (90901, '2022-06-14', 2866, 86057, 5462, NULL, '1.0000', '0.8800', '0.8800', '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 (90902, '2022-06-14', 1532, 86058, 5463, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90903, '2022-06-14', 2169, 86059, 5463, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90904, '2022-06-14', 7514, 86060, 5464, NULL, '2.0000', '2.2500', '2.2500', '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 (90905, '2022-06-14', 1498, 86061, 5464, 19685, '-46.0000', '0.3300', '0.3300', '0.6000', '0.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 (90906, '2022-06-14', 1498, 86061, 5464, NULL, '48.0000', '0.3300', '0.3300', '0.6000', '0.6000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90907, '2022-06-14', 1884, 86062, 5464, 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 (90908, '2022-06-14', 7925, 86063, 5464, NULL, '1.0000', '8.3000', '8.3000', '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 (90909, '2022-06-14', 1804, 86064, 5464, 4916, '-14.0000', '4.2500', '4.2500', '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 (90910, '2022-06-14', 1804, 86064, 5464, NULL, '15.0000', '4.2500', '4.2500', '8.5000', '8.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 (90911, '2022-06-14', 8752, 86065, 5464, NULL, '1.0000', '4.2000', '4.2000', '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 (90912, '2022-06-14', 8097, 86066, 5464, NULL, '1.0000', '3.4000', '3.4000', '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 (90913, '2022-06-14', 8395, 86067, 5464, NULL, '1.0000', '0.9700', '0.9700', '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 (90914, '2022-06-14', 8972, 86068, 5464, NULL, '1.0000', '4.5000', '4.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 (90915, '2022-06-14', 7317, 86069, 5464, NULL, '1.0000', '19.5500', '19.5500', '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 (90916, '2022-06-14', 9734, 86070, 5464, NULL, '7.0000', '0.3200', '0.3200', '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 (90917, '2022-06-14', 7674, 86071, 5464, NULL, '1.0000', '1.3000', '1.3000', '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 (90918, '2022-06-14', 7672, 86072, 5464, NULL, '1.0000', '1.0200', '1.0200', '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 (90919, '2022-06-14', 9089, 86073, 5464, NULL, '1.0000', '3.8000', '3.8000', '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 (90920, '2022-06-14', 7354, 86074, 5464, NULL, '2.0000', '0.3700', '0.3700', '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 (90921, '2022-06-14', 9432, 86075, 5464, NULL, '1.0000', '30.0000', '30.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 (90922, '2022-06-14', 9775, 86076, 5464, NULL, '1.0000', '7.9000', '7.9000', '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 (90923, '2022-06-14', 9942, 86077, 5464, NULL, '1.0000', '9.1000', '9.1000', '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 (90924, '2022-06-14', 1420, 86078, 5464, 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 (90925, '2022-06-14', 7650, 86079, 5464, NULL, '1.0000', '0.8900', '0.8900', '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 (90926, '2022-06-14', 1819, 86080, 5464, 18240, '-6.0000', '5.5930', '5.5930', '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 (90927, '2022-06-14', 1819, 86080, 5464, NULL, '7.0000', '5.5930', '5.5930', '11.0000', '11.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 (90928, '2022-06-14', 2332, 86081, 5464, 3835, '-16.0000', '5.8900', '5.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 (90929, '2022-06-14', 2332, 86081, 5464, NULL, '17.0000', '5.8900', '5.8900', '10.5000', '10.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 (90930, '2022-06-14', 7781, 86082, 5464, NULL, '4.0000', '4.2500', '4.2500', '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 (90931, '2022-06-14', 7672, 86083, 5464, NULL, '2.0000', '1.0200', '1.0200', '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 (90932, '2022-06-14', 8186, 86084, 5464, NULL, '1.0000', '1.0800', '1.0800', '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 (90933, '2022-06-14', 8457, 86085, 5464, NULL, '1.0000', '4.5000', '4.5000', '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 (90934, '2022-06-14', 8064, 86086, 5464, 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 (90935, '2022-06-14', 7674, 86087, 5464, NULL, '1.0000', '1.3000', '1.3000', '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 (90936, '2022-06-14', 9092, 86088, 5464, NULL, '3.0000', '5.2900', '5.2900', '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 (90937, '2022-06-14', 1845, 86089, 5464, 6222, '-25.0000', '19.5000', '19.5000', '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 (90938, '2022-06-14', 1845, 86089, 5464, NULL, '26.0000', '19.5000', '19.5000', '30.5000', '30.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 (90939, '2022-06-14', 7680, 86090, 5464, NULL, '2.0000', '21.1800', '21.1800', '38.0000', '38.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 (90940, '2022-06-14', 7885, 86091, 5464, NULL, '1.0000', '82.8700', '82.8700', '107.5000', '107.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90941, '2022-06-14', 1884, 86092, 5464, 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 (90942, '2022-06-14', 7774, 86093, 5464, NULL, '1.0000', '3.3000', '3.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 (90943, '2022-06-14', 7612, 86094, 5464, NULL, '2.0000', '1.7300', '1.7300', '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 (90944, '2022-06-14', 7848, 86095, 5464, NULL, '1.0000', '1.3500', '1.3500', '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 (90945, '2022-06-14', 9856, 86096, 5465, 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 (90946, '2022-06-14', 2754, 86097, 5465, 18938, '3.0000', '0.0800', '0.0800', '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 (90947, '2022-06-14', 2366, 86098, 5466, 3833, '-60.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 (90948, '2022-06-14', 2366, 86098, 5466, NULL, '62.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90949, '2022-06-14', 1756, 86099, 5466, 3166, '-8.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 (90950, '2022-06-14', 1756, 86099, 5466, NULL, '10.0000', '90.0000', '90.0000', '6.5000', '6.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 (90951, '2022-06-14', 7741, 86100, 5466, NULL, '1.0000', '1.2000', '1.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 (90952, '2022-06-14', 2253, 86101, 5466, 2790, '-2.0000', '9.2500', '9.2500', '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 (90953, '2022-06-14', 2253, 86101, 5466, NULL, '3.0000', '9.2500', '9.2500', '20.0000', '20.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 (90954, '2022-06-14', 7444, 86102, 5466, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90955, '2022-06-14', 1398, 86103, 5466, 20629, '1.0000', '7.5000', '7.5000', '15.5000', '15.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 (90956, '2022-06-14', 9794, 86104, 5466, NULL, '1.0000', '1.0800', '1.0800', '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 (90957, '2022-06-14', 3058, 86105, 5466, NULL, '1.0000', '4.3000', '4.3000', '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 (90958, '2022-06-14', 2236, 86106, 5466, 2780, '-19.0000', '5.6599', '5.6599', '9.5000', '9.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 (90959, '2022-06-14', 2236, 86106, 5466, NULL, '20.0000', '5.6599', '5.6599', '9.5000', '9.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 (90960, '2022-06-14', 1383, 86107, 5466, 283, '1.0000', '47.4000', '47.4000', '7.5000', '7.5000', '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 (90961, '2022-06-14', 1533, 86108, 5466, 10381, '-25.0000', '2.5917', '2.5917', '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 (90962, '2022-06-14', 1533, 86108, 5466, NULL, '26.0000', '2.5917', '2.5917', '5.5000', '5.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 (90963, '2022-06-14', 2237, 86109, 5466, 2781, '-57.0000', '1.0600', '1.0600', '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 (90964, '2022-06-14', 2237, 86109, 5466, NULL, '58.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90965, '2022-06-14', 1863, 86110, 5466, 10808, '-134.0000', '0.4136', '0.4136', '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 (90966, '2022-06-14', 1863, 86110, 5466, NULL, '135.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90967, '2022-06-14', 1602, 86111, 5466, 5897, '-149.0000', '6.7859', '6.7859', '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 (90968, '2022-06-14', 1602, 86111, 5466, NULL, '150.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90969, '2022-06-14', 2655, 86112, 5466, 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 (90970, '2022-06-14', 1863, 86113, 5466, 10808, '-134.0000', '0.4136', '0.4136', '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 (90971, '2022-06-14', 1863, 86113, 5466, NULL, '137.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90972, '2022-06-14', 1935, 86114, 5466, 5586, '-118.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 (90973, '2022-06-14', 1935, 86114, 5466, NULL, '121.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-121.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90974, '2022-06-14', 9734, 86115, 5466, NULL, '2.0000', '0.3200', '0.3200', '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 (90975, '2022-06-14', 1954, 86116, 5466, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '1.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 (90976, '2022-06-14', 2169, 86117, 5466, 10737, '-145.0000', '3.8397', '3.8397', '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 (90977, '2022-06-14', 2169, 86117, 5466, NULL, '146.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-146.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90978, '2022-06-14', 2251, 86118, 5466, 2788, '-25.0000', '10.9700', '10.9700', '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 (90979, '2022-06-14', 2251, 86118, 5466, NULL, '26.0000', '10.9700', '10.9700', '19.5000', '19.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 (90980, '2022-06-14', 1340, 86119, 5466, 13005, '-11.0000', '2.7025', '2.7025', '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 (90981, '2022-06-14', 1340, 86119, 5466, NULL, '12.0000', '2.7025', '2.7025', '5.0000', '5.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 (90982, '2022-06-14', 1643, 86120, 5466, 3215, '-3.0000', '90.0000', '90.0000', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90983, '2022-06-14', 1643, 86120, 5466, NULL, '4.0000', '90.0000', '90.0000', '56.0000', '56.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 (90984, '2022-06-14', 1513, 86121, 5466, 10888, '-5.0000', '11.9600', '11.9600', '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 (90985, '2022-06-14', 1513, 86121, 5466, NULL, '6.0000', '11.9600', '11.9600', '23.0000', '23.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 (90986, '2022-06-14', 1592, 86122, 5466, 6223, '-13.0000', '35.9000', '35.9000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90987, '2022-06-14', 1592, 86122, 5466, NULL, '14.0000', '35.9000', '35.9000', '52.0000', '52.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 (90988, '2022-06-14', 2237, 86123, 5466, 2781, '-57.0000', '1.0600', '1.0600', '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 (90989, '2022-06-14', 2237, 86123, 5466, NULL, '58.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90990, '2022-06-14', 1812, 86124, 5466, 8224, '-97.0000', '7.8900', '7.8900', '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 (90991, '2022-06-14', 1812, 86124, 5466, NULL, '98.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90992, '2022-06-14', 1781, 86125, 5466, 4899, '-3.0000', '4.1000', '4.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 (90993, '2022-06-14', 1781, 86125, 5466, NULL, '4.0000', '4.1000', '4.1000', '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 (90994, '2022-06-14', 1398, 86126, 5466, 20629, '1.0000', '7.5000', '7.5000', '15.5000', '15.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 (90995, '2022-06-14', 1313, 86127, 5466, 21496, '1.0000', '2.6700', '2.6700', '2.0000', '2.0000', '18.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 (90996, '2022-06-14', 1672, 86128, 5466, 7384, '-155.0000', '2.8700', '2.8700', '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 (90997, '2022-06-14', 1672, 86128, 5466, NULL, '165.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-165.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90998, '2022-06-14', 2242, 86129, 5466, 3059, '-64.0000', '0.4800', '0.4800', '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 (90999, '2022-06-14', 2242, 86129, 5466, NULL, '67.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91000, '2022-06-14', 2924, 86130, 5466, 18775, '-5.0000', '6.3000', '6.3000', '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 (91001, '2022-06-14', 2924, 86130, 5466, NULL, '6.0000', '6.3000', '6.3000', '9.0000', '9.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 (91002, '2022-06-14', 1602, 86131, 5466, 5897, '-149.0000', '6.7859', '6.7859', '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 (91003, '2022-06-14', 1602, 86131, 5466, NULL, '150.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91004, '2022-06-14', 1687, 86132, 5466, 5785, '-28.0000', '165.9024', '165.9024', '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 (91005, '2022-06-14', 1687, 86132, 5466, NULL, '29.0000', '165.9024', '165.9024', '23.0000', '23.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91006, '2022-06-14', 2237, 86133, 5466, 2781, '-57.0000', '1.0600', '1.0600', '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 (91007, '2022-06-14', 2237, 86133, 5466, NULL, '58.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91008, '2022-06-14', 9523, 86134, 5466, NULL, '2.0000', '10.0000', '10.0000', '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 (91009, '2022-06-14', 1712, 86135, 5466, 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 (91010, '2022-06-14', 1912, 86136, 5466, 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 (91011, '2022-06-14', 1665, 86137, 5466, 3235, '-116.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 (91012, '2022-06-14', 1665, 86137, 5466, NULL, '117.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-117.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91013, '2022-06-14', 1884, 86138, 5467, 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 (91014, '2022-06-14', 7317, 86139, 5467, NULL, '1.0000', '19.5500', '19.5500', '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 (91015, '2022-06-14', 9729, 86140, 5467, NULL, '2.0000', '0.6200', '0.6200', '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 (91016, '2022-06-14', 7411, 86141, 5467, NULL, '1.0000', '1.3500', '1.3500', '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 (91017, '2022-06-14', 9734, 86142, 5467, NULL, '2.0000', '0.3200', '0.3200', '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 (91018, '2022-06-14', 2279, 86143, 5467, 2939, '-21.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 (91019, '2022-06-14', 2279, 86143, 5467, NULL, '22.0000', '2.7000', '2.7000', '3.5000', '3.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91020, '2022-06-14', 8456, 86144, 5467, 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 (91021, '2022-06-14', 2320, 86145, 5468, 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 (91022, '2022-06-14', 9089, 86146, 5468, NULL, '1.0000', '3.8000', '3.8000', '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 (91023, '2022-06-14', 9829, 86147, 5468, 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 (91024, '2022-06-14', 2034, 86148, 5468, 6387, '-2.0000', '6.0000', '6.0000', '9.5000', '9.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 (91025, '2022-06-14', 2034, 86148, 5468, NULL, '3.0000', '6.0000', '6.0000', '9.5000', '9.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 (91026, '2022-06-14', 1863, 86149, 5468, 10808, '-138.0000', '0.4136', '0.4136', '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 (91027, '2022-06-14', 1863, 86149, 5468, NULL, '140.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91028, '2022-06-14', 2253, 86150, 5468, 2790, '-3.0000', '9.2500', '9.2500', '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 (91029, '2022-06-14', 2253, 86150, 5468, NULL, '4.0000', '9.2500', '9.2500', '20.0000', '20.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 (91030, '2022-06-14', 9794, 86151, 5468, NULL, '1.0000', '1.0800', '1.0800', '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 (91031, '2022-06-14', 1310, 86152, 5468, NULL, '2.0000', '0.3700', '0.3700', '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 (91032, '2022-06-14', 7881, 86153, 5468, NULL, '1.0000', '2.3000', '2.3000', '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 (91033, '2022-06-14', 1371, 86154, 5468, 10169, '-6.0000', '5.5000', '5.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 (91034, '2022-06-14', 1371, 86154, 5468, NULL, '7.0000', '5.5000', '5.5000', '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 (91035, '2022-06-14', 2545, 86155, 5468, 6306, '-9.0000', '5.8819', '5.8819', '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 (91036, '2022-06-14', 2545, 86155, 5468, NULL, '10.0000', '5.8819', '5.8819', '11.0000', '11.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 (91037, '2022-06-14', 1863, 86156, 5468, 10808, '-138.0000', '0.4136', '0.4136', '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 (91038, '2022-06-14', 1863, 86156, 5468, NULL, '139.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-139.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91039, '2022-06-14', 1689, 86157, 5468, 4897, '-14.0000', '60.7198', '60.7198', '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 (91040, '2022-06-14', 1689, 86157, 5468, NULL, '15.0000', '60.7198', '60.7198', '21.0000', '21.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 (91041, '2022-06-14', 1839, 86158, 5468, 8734, '-34.0000', '6.1500', '6.1500', '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 (91042, '2022-06-14', 1839, 86158, 5468, NULL, '35.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91043, '2022-06-14', 8208, 86159, 5468, NULL, '2.0000', '33.0000', '33.0000', '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 (91044, '2022-06-14', 2289, 86160, 5468, 2949, '-192.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 (91045, '2022-06-14', 2289, 86160, 5468, NULL, '194.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-194.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91046, '2022-06-14', 1841, 86161, 5468, NULL, '2.0000', '142.5780', '142.5780', '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 (91047, '2022-06-14', 1840, 86162, 5468, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (91048, '2022-06-14', 1383, 86163, 5468, 283, '1.0000', '47.4000', '47.4000', '7.5000', '7.5000', '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 (91049, '2022-06-14', 8309, 86164, 5468, NULL, '1.0000', '14.5000', '14.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 (91050, '2022-06-14', 2348, 86165, 5468, NULL, '1.0000', '22.0300', '22.0300', '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 (91051, '2022-06-14', 9940, 86166, 5468, 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 (91052, '2022-06-14', 2602, 86167, 5468, 18715, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '0.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 (91053, '2022-06-14', 2169, 86168, 5468, 10737, '-146.0000', '3.8397', '3.8397', '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 (91054, '2022-06-14', 2169, 86168, 5468, NULL, '147.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-147.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91055, '2022-06-14', 2351, 86169, 5468, 3854, '-4.0000', '17.7000', '17.7000', '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 (91056, '2022-06-14', 2351, 86169, 5468, NULL, '5.0000', '17.7000', '17.7000', '24.5000', '24.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 (91057, '2022-06-14', 2382, 86170, 5468, 4035, '-5.0000', '15.6600', '15.6600', '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 (91058, '2022-06-14', 2382, 86170, 5468, NULL, '6.0000', '15.6600', '15.6600', '21.0000', '21.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 (91059, '2022-06-14', 9895, 86171, 5468, 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 (91060, '2022-06-14', 1555, 86172, 5468, 1626, '-2.0000', '22.2400', '22.2400', '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 (91061, '2022-06-14', 1555, 86172, 5468, NULL, '3.0000', '22.2400', '22.2400', '29.0000', '29.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 (91062, '2022-06-14', 2221, 86173, 5468, 4154, '-65.0000', '14.4737', '14.4737', '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 (91063, '2022-06-14', 2221, 86173, 5468, NULL, '66.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91064, '2022-06-14', 9873, 86174, 5469, NULL, '1.0000', '8.5000', '8.5000', '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 (91065, '2022-06-14', 2511, 86175, 5469, 9740, '-16.0000', '8.5000', '8.5000', '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 (91066, '2022-06-14', 2511, 86175, 5469, NULL, '17.0000', '8.5000', '8.5000', '16.0000', '16.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 (91067, '2022-06-14', 1425, 86176, 5469, NULL, '1.0000', '6.4405', '6.4405', '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 (91068, '2022-06-14', 1779, 86177, 5469, 4898, '-10.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 (91069, '2022-06-14', 1779, 86177, 5469, NULL, '20.0000', '90.0000', '90.0000', '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 (91070, '2022-06-14', 1533, 86178, 5469, 10381, '-26.0000', '2.5917', '2.5917', '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 (91071, '2022-06-14', 1533, 86178, 5469, NULL, '27.0000', '2.5917', '2.5917', '5.5000', '5.5000', '-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 (91072, '2022-06-14', 1863, 86179, 5469, 10808, '-141.0000', '0.4136', '0.4136', '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 (91073, '2022-06-14', 1863, 86179, 5469, NULL, '142.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-142.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91074, '2022-06-14', 9775, 86180, 5469, NULL, '1.0000', '7.9000', '7.9000', '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 (91075, '2022-06-14', 2331, 86181, 5469, 3834, '-10.0000', '12.0700', '12.0700', '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 (91076, '2022-06-14', 2331, 86181, 5469, NULL, '11.0000', '12.0700', '12.0700', '18.0000', '18.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 (91077, '2022-06-14', 1383, 86182, 5469, 283, '1.0000', '47.4000', '47.4000', '7.5000', '7.5000', '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 (91078, '2022-06-14', 2414, 86183, 5469, 4620, '-22.0000', '3.4000', '3.4000', '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 (91079, '2022-06-14', 2414, 86183, 5469, NULL, '24.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-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 (91080, '2022-06-14', 2340, 86184, 5469, 3843, '-2.0000', '5.9200', '5.9200', '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 (91081, '2022-06-14', 2340, 86184, 5469, NULL, '3.0000', '5.9200', '5.9200', '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 (91082, '2022-06-14', 1307, 86185, 5469, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '20.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 (91083, '2022-06-14', 1666, 86186, 5469, 3236, '-36.0000', '2.7100', '2.7100', '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 (91084, '2022-06-14', 1666, 86186, 5469, NULL, '37.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91085, '2022-06-14', 1329, 86187, 5469, 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 (91086, '2022-06-14', 9734, 86188, 5469, NULL, '4.0000', '0.3200', '0.3200', '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 (91087, '2022-06-14', 8418, 86189, 5469, NULL, '1.0000', '35.1900', '35.1900', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91088, '2022-06-14', 1311, 86190, 5469, 5437, '-12.0000', '79.3908', '79.3908', '0.6000', '0.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 (91089, '2022-06-14', 1311, 86190, 5469, NULL, '17.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (91090, '2022-06-14', 8309, 86191, 5469, NULL, '1.0000', '14.5000', '14.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 (91091, '2022-06-14', 2946, 86192, 5469, NULL, '1.0000', '37.7900', '37.7900', '57.5000', '57.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91092, '2022-06-14', 1702, 86193, 5469, 4499, '-9.0000', '14.9700', '14.9700', '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 (91093, '2022-06-14', 1702, 86193, 5469, NULL, '10.0000', '14.9700', '14.9700', '25.0000', '25.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 (91094, '2022-06-14', 2491, 86194, 5469, 6228, '-32.0000', '12.2000', '12.2000', '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 (91095, '2022-06-14', 2491, 86194, 5469, NULL, '33.0000', '12.2000', '12.2000', '19.5000', '19.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 (91096, '2022-06-14', 9770, 86195, 5469, 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 (91097, '2022-06-14', 9740, 86196, 5469, NULL, '1.0000', '0.6600', '0.6600', '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 (91098, '2022-06-14', 2316, 86197, 5469, 16951, '-3.0000', '44.8814', '44.8814', '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 (91099, '2022-06-14', 2316, 86197, 5469, NULL, '4.0000', '44.8814', '44.8814', '60.0000', '60.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 (91100, '2022-06-14', 3057, 86198, 5469, NULL, '4.0000', '2.7000', '2.7000', '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 (91101, '2022-06-14', 7744, 86199, 5469, 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 (91102, '2022-06-14', 2260, 86200, 5469, 2796, '-18.0000', '4.2000', '4.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 (91103, '2022-06-14', 2260, 86200, 5469, NULL, '19.0000', '4.2000', '4.2000', '7.0000', '7.0000', '-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 (91104, '2022-06-14', 1383, 86201, 5469, 283, '1.0000', '47.4000', '47.4000', '7.5000', '7.5000', '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 (91105, '2022-06-14', 1908, 86202, 5469, 5444, '-46.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 (91106, '2022-06-14', 1908, 86202, 5469, NULL, '49.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91107, '2022-06-14', 1935, 86203, 5469, 5586, '-121.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 (91108, '2022-06-14', 1935, 86203, 5469, NULL, '122.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-122.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91109, '2022-06-14', 9728, 86204, 5469, NULL, '1.0000', '5.4000', '5.4000', '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 (91110, '2022-06-14', 1856, 86205, 5469, NULL, '1.0000', '4.2500', '4.2500', '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 (91111, '2022-06-14', 2169, 86206, 5469, 10737, '-147.0000', '3.8397', '3.8397', '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 (91112, '2022-06-14', 2169, 86206, 5469, NULL, '148.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91113, '2022-06-14', 1519, 86207, 5469, 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 (91114, '2022-06-14', 7703, 86208, 5470, NULL, '2.0000', '-4961.0093', '-4961.0093', '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 (91115, '2022-06-14', 7974, 86209, 5470, 56679, '1.0000', '27.1750', '27.1750', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91116, '2022-06-14', 7355, 86210, 5470, NULL, '1.0000', '-3.6691', '-3.6691', '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 (91117, '2022-06-14', 2822, 86211, 5470, 30155, '2.0000', '2.7200', '2.7200', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91118, '2022-06-14', 7672, 86212, 5470, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91119, '2022-06-14', 8061, 86213, 5470, 57376, '1.0000', '20.5412', '20.5412', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91120, '2022-06-14', 8040, 86214, 5470, 57452, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91121, '2022-06-14', 9751, 86215, 5470, 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 (91122, '2022-06-14', 7689, 86216, 5470, 56000, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91123, '2022-06-14', 8918, 86217, 5470, 56192, '2.0000', '3.2476', '3.2476', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91124, '2022-06-14', 7756, 86218, 5470, 56531, '1.0000', '27.9277', '27.9277', '39.0000', '39.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91125, '2022-06-14', 7317, 86219, 5470, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91126, '2022-06-14', 2287, 86220, 5470, NULL, '4.0000', '3.1699', '3.1699', '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 (91127, '2022-06-14', 2699, 86221, 5470, 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 (91128, '2022-06-14', 8264, 86222, 5470, 54298, '1.0000', '25.0700', '25.0700', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91129, '2022-06-14', 7524, 86223, 5470, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91130, '2022-06-14', 7482, 86224, 5470, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91131, '2022-06-14', 8878, 86225, 5470, 57207, '2.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91132, '2022-06-14', 7715, 86226, 5470, 57195, '1.0000', '3.4699', '3.4699', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91133, '2022-06-14', 7317, 86227, 5470, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91134, '2022-06-14', 8207, 86228, 5470, NULL, '1.0000', '0.0000', '0.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 (91135, '2022-06-14', 3056, 86229, 5470, 56152, '1.0000', '51.5500', '51.5500', '68.0000', '68.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91136, '2022-06-14', 7560, 86230, 5470, 57171, '1.0000', '40.6210', '40.6210', '56.0000', '56.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91137, '2022-06-14', 7730, 86231, 5470, 57375, '5.0000', '0.1000', '0.1000', '0.2000', '0.2000', '135.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91138, '2022-06-14', 7745, 86232, 5470, 57424, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91139, '2022-06-14', 2351, 86233, 5470, 50713, '1.0000', '17.9607', '17.9607', '24.5000', '24.5000', '2.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91140, '2022-06-14', 7649, 86234, 5470, 46167, '1.0000', '2.6700', '2.6700', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91141, '2022-06-14', 8878, 86235, 5470, 57207, '2.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91142, '2022-06-14', 7411, 86236, 5470, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91143, '2022-06-14', 9791, 86237, 5470, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '107.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91144, '2022-06-14', 7509, 86238, 5470, 57441, '1.0000', '10.1903', '10.1903', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91145, '2022-06-14', 7412, 86239, 5470, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91146, '2022-06-14', 7748, 86240, 5470, 57160, '1.0000', '-1038171.7365', '-1038171.7365', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91147, '2022-06-14', 1520, 86241, 5470, NULL, '1.0000', '1.4700', '1.4700', '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 (91148, '2022-06-14', 7472, 86242, 5470, NULL, '1.0000', '-35.4938', '-35.4938', '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 (91149, '2022-06-14', 9566, 86243, 5470, 38176, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91150, '2022-06-14', 8444, 86244, 5470, 55973, '1.0000', '-37.8763', '-37.8763', '2.5000', '2.5000', '91.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91151, '2022-06-14', 9158, 86245, 5470, 57190, '1.0000', '5.8905', '5.8905', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91152, '2022-06-14', 7411, 86246, 5470, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91153, '2022-06-14', 7777, 86247, 5470, NULL, '1.0000', '8.2500', '8.2500', '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 (91154, '2022-06-14', 7743, 86248, 5470, NULL, '1.0000', '919779.6853', '919779.6853', '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 (91155, '2022-06-14', 8127, 86249, 5470, NULL, '1.0000', '24.5300', '24.5300', '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 (91156, '2022-06-14', 9332, 86250, 5470, NULL, '1.0000', '8.6667', '8.6667', '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 (91157, '2022-06-14', 2315, 86251, 5470, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91158, '2022-06-14', 1510, 86252, 5470, 53773, '1.0000', '8.5250', '8.5250', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91159, '2022-06-14', 9461, 86253, 5470, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91160, '2022-06-14', 8135, 86254, 5470, 57396, '1.0000', '5.9090', '5.9090', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91161, '2022-06-14', 8069, 86255, 5470, 56523, '1.0000', '35.9168', '35.9168', '52.0000', '52.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91162, '2022-06-14', 9734, 86256, 5470, 54140, '5.0000', '0.3200', '0.3200', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91163, '2022-06-14', 7753, 86257, 5470, 57182, '2.0000', '3.5424', '3.5424', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91164, '2022-06-14', 7317, 86258, 5470, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91165, '2022-06-14', 2545, 86259, 5471, 55650, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91166, '2022-06-14', 2169, 86260, 5471, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91167, '2022-06-14', 7324, 86261, 5471, NULL, '3.0000', '5.4813', '5.4813', '8.5000', '8.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 (91168, '2022-06-14', 2061, 86262, 5471, NULL, '1.0000', '10.3123', '10.3123', '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 (91169, '2022-06-14', 9834, 86263, 5471, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91170, '2022-06-14', 2315, 86264, 5471, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91171, '2022-06-14', 2916, 86265, 5471, NULL, '1.0000', '777.2552', '777.2552', '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 (91172, '2022-06-14', 1935, 86266, 5471, NULL, '1.0000', '0.7671', '0.7671', '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 (91173, '2022-06-14', 1841, 86267, 5471, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91174, '2022-06-14', 9794, 86268, 5471, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91175, '2022-06-14', 9841, 86269, 5471, 55669, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91176, '2022-06-14', 9794, 86270, 5471, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91177, '2022-06-14', 2893, 86271, 5471, NULL, '1.0000', '6.4400', '6.4400', '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 (91178, '2022-06-14', 1602, 86272, 5471, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91179, '2022-06-14', 7514, 86273, 5471, NULL, '1.0000', '2.2500', '2.2500', '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 (91180, '2022-06-14', 2315, 86274, 5471, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91181, '2022-06-14', 1425, 86275, 5471, NULL, '1.0000', '19.3384', '19.3384', '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 (91182, '2022-06-14', 2169, 86276, 5471, 55701, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91183, '2022-06-14', 9794, 86277, 5471, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91184, '2022-06-14', 2964, 86278, 5471, NULL, '1.0000', '9.0607', '9.0607', '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 (91185, '2022-06-14', 9794, 86279, 5471, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91186, '2022-06-14', 2363, 86280, 5471, NULL, '1.0000', '6.8800', '6.8800', '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 (91187, '2022-06-14', 7954, 86281, 5471, 57084, '4.0000', '2.4470', '2.4470', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91188, '2022-06-14', 2253, 86282, 5471, 51392, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91189, '2022-06-14', 1519, 86283, 5471, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91190, '2022-06-14', 1935, 86284, 5471, NULL, '1.0000', '0.7671', '0.7671', '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 (91191, '2022-06-14', 1577, 86285, 5471, NULL, '1.0000', '1.6245', '1.6245', '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 (91192, '2022-06-14', 8017, 86286, 5471, 57065, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91193, '2022-06-14', 2759, 86287, 5471, 54946, '1.0000', '4.0909', '4.0909', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91194, '2022-06-14', 1667, 86288, 5471, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91195, '2022-06-14', 7917, 86289, 5471, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (91196, '2022-06-14', 7641, 86290, 5471, NULL, '1.0000', '1.9000', '1.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 (91197, '2022-06-14', 2821, 86291, 5471, NULL, '1.0000', '3.3984', '3.3984', '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 (91198, '2022-06-14', 7472, 86292, 5471, NULL, '1.0000', '-56.4939', '-56.4939', '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 (91199, '2022-06-14', 9934, 86293, 5471, 57115, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91200, '2022-06-14', 2169, 86294, 5471, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91201, '2022-06-14', 1519, 86295, 5471, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91202, '2022-06-14', 2942, 86296, 5471, 51210, '2.0000', '0.8200', '0.8200', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91203, '2022-06-14', 1760, 86297, 5471, NULL, '2.0000', '1.5900', '1.5900', '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 (91204, '2022-06-14', 9763, 86298, 5471, 54519, '3.0000', '2.3080', '2.3080', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91205, '2022-06-14', 1314, 86299, 5471, 55930, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91206, '2022-06-14', 2108, 86300, 5471, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91207, '2022-06-14', 9828, 86301, 5471, NULL, '2.0000', '2.9100', '2.9100', '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 (91208, '2022-06-14', 2440, 86302, 5471, 56860, '1.0000', '6.6446', '6.6446', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91209, '2022-06-14', 2038, 86303, 5471, 54836, '1.0000', '17.0564', '17.0564', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91210, '2022-06-14', 1646, 86304, 5471, 56415, '1.0000', '5.6514', '5.6514', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91211, '2022-06-14', 2237, 86305, 5471, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91212, '2022-06-14', 1529, 86306, 5471, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91213, '2022-06-14', 2416, 86307, 5471, 56871, '1.0000', '1.2831', '1.2831', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91214, '2022-06-14', 2061, 86308, 5471, NULL, '1.0000', '10.3123', '10.3123', '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 (91215, '2022-06-14', 9914, 86309, 5471, 55607, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91216, '2022-06-14', 2315, 86310, 5471, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91217, '2022-06-14', 2612, 86311, 5471, 56385, '1.0000', '10.8600', '10.8600', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91218, '2022-06-14', 1529, 86312, 5471, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91219, '2022-06-14', 7877, 86313, 5471, NULL, '1.0000', '5.1600', '5.1600', '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 (91220, '2022-06-14', 2320, 86314, 5471, 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 (91221, '2022-06-14', 1529, 86315, 5471, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91222, '2022-06-14', 9737, 86316, 5471, 55942, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91223, '2022-06-14', 9695, 86317, 5471, 57088, '1.0000', '5.2172', '5.2172', '7.0000', '7.0000', '25.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91224, '2022-06-14', 1499, 86318, 5471, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91225, '2022-06-14', 1984, 86319, 5471, 53420, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91226, '2022-06-14', 9763, 86320, 5471, 54519, '1.0000', '2.3080', '2.3080', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91227, '2022-06-14', 8444, 86321, 5471, 56383, '2.0000', '1.6000', '1.6000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91228, '2022-06-14', 1310, 86322, 5471, 57059, '10.0000', '0.4100', '0.4100', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91229, '2022-06-14', 1812, 86323, 5471, 54944, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91230, '2022-06-14', 8759, 86324, 5471, NULL, '1.0000', '22.7000', '22.7000', '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 (91231, '2022-06-14', 1884, 86325, 5471, 55897, '1.0000', '17.4104', '17.4104', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91232, '2022-06-14', 7316, 86326, 5471, 54885, '3.0000', '0.9020', '0.9020', '1.3000', '1.3000', '41.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91233, '2022-06-14', 2169, 86327, 5471, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91234, '2022-06-14', 2315, 86328, 5471, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91235, '2022-06-14', 9828, 86329, 5471, NULL, '2.0000', '2.9100', '2.9100', '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 (91236, '2022-06-14', 2169, 86330, 5471, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91237, '2022-06-14', 8746, 86331, 5471, 57097, '1.0000', '3.6242', '3.6242', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91238, '2022-06-14', 9832, 86332, 5471, 56854, '1.0000', '1.5600', '1.5600', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91239, '2022-06-14', 9830, 86333, 5471, 56853, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91240, '2022-06-14', 7715, 86334, 5471, NULL, '1.0000', '1.8900', '1.8900', '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 (91241, '2022-06-14', 1519, 86335, 5471, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91242, '2022-06-14', 1409, 86336, 5471, 54968, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91243, '2022-06-14', 1342, 86337, 5471, NULL, '1.0000', '7.2732', '7.2732', '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 (91244, '2022-06-14', 7482, 86338, 5472, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91245, '2022-06-14', 7411, 86339, 5472, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91246, '2022-06-14', 7641, 86340, 5472, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91247, '2022-06-14', 9450, 86341, 5472, 30932, '1.0000', '3.2000', '3.2000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91248, '2022-06-14', 7967, 86342, 5472, 56684, '1.0000', '6.9018', '6.9018', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91249, '2022-06-14', 7832, 86343, 5472, 54475, '1.0000', '12.9545', '12.9545', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91250, '2022-06-14', 7743, 86344, 5472, NULL, '2.0000', '919779.6853', '919779.6853', '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 (91251, '2022-06-14', 8539, 86345, 5472, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91252, '2022-06-14', 7482, 86346, 5472, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91253, '2022-06-14', 2906, 86347, 5472, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91254, '2022-06-14', 7396, 86348, 5472, 55982, '1.0000', '6.2483', '6.2483', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91255, '2022-06-14', 7412, 86349, 5472, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91256, '2022-06-14', 2242, 86350, 5472, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '132.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91257, '2022-06-14', 1501, 86351, 5472, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91258, '2022-06-14', 7781, 86352, 5472, NULL, '1.0000', '5.2802', '5.2802', '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 (91259, '2022-06-14', 8849, 86353, 5472, NULL, '1.0000', '1.0700', '1.0700', '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 (91260, '2022-06-14', 7379, 86354, 5472, 56670, '1.0000', '7.7994', '7.7994', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91261, '2022-06-14', 7590, 86355, 5472, NULL, '1.0000', '6.0509', '6.0509', '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 (91262, '2022-06-14', 1339, 86356, 5472, 57191, '1.0000', '2.6205', '2.6205', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91263, '2022-06-14', 7715, 86357, 5472, 57195, '1.0000', '3.4699', '3.4699', '6.0000', '6.0000', '22.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91264, '2022-06-14', 2248, 86358, 5473, 56180, '1.0000', '3.4528', '3.4528', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91265, '2022-06-14', 1340, 86359, 5473, 57181, '1.0000', '3.3640', '3.3640', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91266, '2022-06-14', 9656, 86360, 5473, 53528, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91267, '2022-06-14', 7711, 86361, 5473, 57155, '1.0000', '2220.0220', '2220.0220', '65.5000', '65.5000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91268, '2022-06-14', 9811, 86362, 5473, 57198, '1.0000', '25.6556', '25.6556', '31.0000', '31.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91269, '2022-06-14', 1425, 86363, 5474, NULL, '1.0000', '19.3384', '19.3384', '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 (91270, '2022-06-14', 8758, 86364, 5474, 55427, '1.0000', '13.0000', '13.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91271, '2022-06-14', 9463, 86365, 5474, NULL, '1.0000', '145.5664', '145.5664', '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 (91272, '2022-06-14', 7741, 86366, 5474, NULL, '1.0000', '-52.1460', '-52.1460', '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 (91273, '2022-06-14', 9794, 86367, 5474, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91274, '2022-06-14', 9830, 86368, 5474, 56853, '3.0000', '1.9000', '1.9000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91275, '2022-06-14', 8735, 86369, 5474, 57119, '1.0000', '7.1000', '7.1000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91276, '2022-06-14', 1529, 86370, 5474, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91277, '2022-06-14', 9794, 86371, 5474, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91278, '2022-06-14', 9729, 86372, 5474, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91279, '2022-06-14', 2061, 86373, 5474, NULL, '2.0000', '10.3123', '10.3123', '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 (91280, '2022-06-14', 7614, 86374, 5474, NULL, '1.0000', '50.7500', '50.7500', '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 (91281, '2022-06-14', 1688, 86375, 5474, 54178, '1.0000', '21.6067', '21.6067', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91282, '2022-06-15', 1637, 86376, 5475, 3210, '-6.0000', '10.2000', '10.2000', '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 (91283, '2022-06-15', 1637, 86376, 5475, NULL, '7.0000', '10.2000', '10.2000', '20.0000', '20.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 (91284, '2022-06-15', 1763, 86377, 5475, 3173, '-1.0000', '4.6900', '4.6900', '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 (91285, '2022-06-15', 1763, 86377, 5475, NULL, '2.0000', '4.6900', '4.6900', '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 (91286, '2022-06-15', 8079, 86378, 5475, NULL, '1.0000', '14.3600', '14.3600', '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 (91287, '2022-06-15', 1839, 86379, 5475, 8734, '-35.0000', '6.1500', '6.1500', '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 (91288, '2022-06-15', 1839, 86379, 5475, NULL, '36.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (91289, '2022-06-15', 1306, 86380, 5475, 5581, '-3.0000', '22.5969', '22.5969', '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 (91290, '2022-06-15', 1306, 86380, 5475, NULL, '6.0000', '22.5969', '22.5969', '3.0000', '3.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 (91291, '2022-06-15', 2221, 86381, 5475, 4154, '-66.0000', '14.4737', '14.4737', '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 (91292, '2022-06-15', 2221, 86381, 5475, NULL, '67.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91293, '2022-06-15', 1765, 86382, 5475, 3175, '-16.0000', '90.0000', '90.0000', '9.5000', '9.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 (91294, '2022-06-15', 1765, 86382, 5475, NULL, '17.0000', '90.0000', '90.0000', '9.5000', '9.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 (91295, '2022-06-15', 1335, 86383, 5475, 12031, '-29.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 (91296, '2022-06-15', 1335, 86383, 5475, NULL, '30.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-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 (91297, '2022-06-15', 1493, 86384, 5475, 9747, '-24.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 (91298, '2022-06-15', 1493, 86384, 5475, NULL, '25.0000', '1.5425', '1.5425', '3.0000', '3.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 (91299, '2022-06-15', 2296, 86385, 5475, 2955, '-6.0000', '13.2900', '13.2900', '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 (91300, '2022-06-15', 2296, 86385, 5475, NULL, '7.0000', '13.2900', '13.2900', '19.0000', '19.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 (91301, '2022-06-15', 1780, 86386, 5475, 3867, '-6.0000', '18.7146', '18.7146', '60.5000', '60.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 (91302, '2022-06-15', 1780, 86386, 5475, NULL, '7.0000', '18.7146', '18.7146', '60.5000', '60.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 (91303, '2022-06-15', 2289, 86387, 5475, 2949, '-194.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 (91304, '2022-06-15', 2289, 86387, 5475, NULL, '197.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-197.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91305, '2022-06-15', 2225, 86388, 5475, 1700, '-6.0000', '14.0000', '14.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 (91306, '2022-06-15', 2225, 86388, 5475, NULL, '7.0000', '14.0000', '14.0000', '20.0000', '20.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 (91307, '2022-06-15', 2699, 86389, 5475, 12529, '-45.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 (91308, '2022-06-15', 2699, 86389, 5475, NULL, '46.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91309, '2022-06-15', 9715, 86390, 5475, NULL, '1.0000', '9.4000', '9.4000', '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 (91310, '2022-06-15', 1533, 86391, 5475, 10381, '-27.0000', '2.5917', '2.5917', '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 (91311, '2022-06-15', 1533, 86391, 5475, NULL, '28.0000', '2.5917', '2.5917', '5.5000', '5.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 (91312, '2022-06-15', 9748, 86392, 5475, NULL, '1.0000', '2.5300', '2.5300', '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 (91313, '2022-06-15', 9794, 86393, 5475, NULL, '1.0000', '1.0800', '1.0800', '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 (91314, '2022-06-15', 1602, 86394, 5475, 5897, '-151.0000', '6.7859', '6.7859', '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 (91315, '2022-06-15', 1602, 86394, 5475, NULL, '152.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-152.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91316, '2022-06-15', 2320, 86395, 5476, 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 (91317, '2022-06-15', 2384, 86396, 5476, 4087, '-25.0000', '0.4000', '0.4000', '0.7000', '0.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 (91318, '2022-06-15', 2384, 86396, 5476, NULL, '26.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (91319, '2022-06-15', 8743, 86397, 5476, NULL, '1.0000', '10.0000', '10.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 (91320, '2022-06-15', 2935, 86398, 5476, 21534, '1.0000', '7.9400', '7.9400', '20.0000', '20.0000', '0.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 (91321, '2022-06-15', 7741, 86399, 5476, NULL, '1.0000', '1.2000', '1.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 (91322, '2022-06-15', 2263, 86400, 5476, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '1.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 (91323, '2022-06-15', 1726, 86401, 5476, 6623, '-3.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 (91324, '2022-06-15', 1726, 86401, 5476, NULL, '4.0000', '90.0000', '90.0000', '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 (91325, '2022-06-15', 2089, 86402, 5476, 10811, '-6.0000', '6.6500', '6.6500', '9.5000', '9.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 (91326, '2022-06-15', 2089, 86402, 5476, NULL, '7.0000', '6.6500', '6.6500', '9.5000', '9.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 (91327, '2022-06-15', 7411, 86403, 5476, NULL, '1.0000', '1.3500', '1.3500', '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 (91328, '2022-06-15', 2237, 86404, 5476, 2781, '-60.0000', '1.0600', '1.0600', '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 (91329, '2022-06-15', 2237, 86404, 5476, NULL, '61.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91330, '2022-06-15', 1432, 86405, 5476, NULL, '1.0000', '8.1574', '8.1574', '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 (91331, '2022-06-15', 1954, 86406, 5476, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '0.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 (91332, '2022-06-15', 2673, 86407, 5476, 11662, '-1.0000', '11.0000', '11.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 (91333, '2022-06-15', 2673, 86407, 5476, NULL, '2.0000', '11.0000', '11.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 (91334, '2022-06-15', 1425, 86408, 5476, NULL, '1.0000', '6.4405', '6.4405', '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 (91335, '2022-06-15', 8711, 86409, 5476, NULL, '1.0000', '5.1000', '5.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 (91336, '2022-06-15', 2315, 86410, 5476, 2735, '-453.0000', '0.3300', '0.3300', '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 (91337, '2022-06-15', 2315, 86410, 5476, NULL, '454.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-454.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91338, '2022-06-15', 1602, 86411, 5476, 5897, '-152.0000', '6.7859', '6.7859', '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 (91339, '2022-06-15', 1602, 86411, 5476, NULL, '153.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-153.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91340, '2022-06-15', 1347, 86412, 5476, 243, '4.0000', '3.4000', '3.4000', '6.0000', '6.0000', '35.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91341, '2022-06-15', 1787, 86413, 5476, 4905, '-13.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 (91342, '2022-06-15', 1787, 86413, 5476, NULL, '14.0000', '0.8100', '0.8100', '2.0000', '2.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 (91343, '2022-06-15', 9845, 86414, 5476, NULL, '1.0000', '5.7000', '5.7000', '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 (91344, '2022-06-15', 7411, 86415, 5476, NULL, '2.0000', '1.3500', '1.3500', '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 (91345, '2022-06-15', 2302, 86416, 5476, 2963, '-51.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 (91346, '2022-06-15', 2302, 86416, 5476, NULL, '52.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91347, '2022-06-15', 1772, 86417, 5476, 4893, '-12.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 (91348, '2022-06-15', 1772, 86417, 5476, NULL, '13.0000', '6.0500', '6.0500', '8.0000', '8.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 (91349, '2022-06-15', 1688, 86418, 5476, 4896, '-15.0000', '18.5000', '18.5000', '31.5000', '31.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 (91350, '2022-06-15', 1688, 86418, 5476, NULL, '16.0000', '18.5000', '18.5000', '31.5000', '31.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 (91351, '2022-06-15', 2237, 86419, 5476, 2781, '-60.0000', '1.0600', '1.0600', '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 (91352, '2022-06-15', 2237, 86419, 5476, NULL, '62.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91353, '2022-06-15', 1651, 86420, 5476, 3222, '-60.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91354, '2022-06-15', 1651, 86420, 5476, NULL, '61.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91355, '2022-06-15', 7722, 86421, 5476, NULL, '1.0000', '11.0000', '11.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 (91356, '2022-06-15', 2959, 86422, 5476, 33063, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91357, '2022-06-15', 2858, 86423, 5476, 17772, '-84.0000', '1.0000', '1.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 (91358, '2022-06-15', 2858, 86423, 5476, NULL, '85.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91359, '2022-06-15', 1386, 86424, 5476, 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 (91360, '2022-06-15', 2277, 86425, 5476, 2937, '-58.0000', '0.7800', '0.7800', '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 (91361, '2022-06-15', 2277, 86425, 5476, NULL, '64.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91362, '2022-06-15', 2990, 86426, 5476, NULL, '1.0000', '1.1200', '1.1200', '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 (91363, '2022-06-15', 9695, 86427, 5476, NULL, '1.0000', '4.5000', '4.5000', '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 (91364, '2022-06-15', 2169, 86428, 5476, 10737, '-148.0000', '3.8397', '3.8397', '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 (91365, '2022-06-15', 2169, 86428, 5476, NULL, '149.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-149.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91366, '2022-06-15', 1665, 86429, 5476, 3235, '-117.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 (91367, '2022-06-15', 1665, 86429, 5476, NULL, '119.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-119.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91368, '2022-06-15', 1812, 86430, 5476, 8224, '-98.0000', '7.8900', '7.8900', '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 (91369, '2022-06-15', 1812, 86430, 5476, NULL, '99.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91370, '2022-06-15', 2299, 86431, 5477, 22479, '-9.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 (91371, '2022-06-15', 2299, 86431, 5477, NULL, '11.0000', '6.0000', '6.0000', '8.0000', '8.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 (91372, '2022-06-15', 2821, 86432, 5477, 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 (91373, '2022-06-15', 7411, 86433, 5477, NULL, '1.0000', '1.3500', '1.3500', '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 (91374, '2022-06-15', 2379, 86434, 5477, 4032, '-63.0000', '1.5900', '1.5900', '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 (91375, '2022-06-15', 2379, 86434, 5477, NULL, '64.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91376, '2022-06-15', 7802, 86435, 5477, NULL, '3.0000', '0.9200', '0.9200', '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 (91377, '2022-06-15', 2893, 86436, 5477, 18242, '-10.0000', '6.0000', '6.0000', '9.5000', '9.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 (91378, '2022-06-15', 2893, 86436, 5477, NULL, '11.0000', '6.0000', '6.0000', '9.5000', '9.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 (91379, '2022-06-15', 2893, 86437, 5477, 18242, '-10.0000', '6.0000', '6.0000', '9.5000', '9.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 (91380, '2022-06-15', 2893, 86437, 5477, NULL, '12.0000', '6.0000', '6.0000', '9.5000', '9.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 (91381, '2022-06-15', 2237, 86438, 5477, 2781, '-63.0000', '1.0600', '1.0600', '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 (91382, '2022-06-15', 2237, 86438, 5477, NULL, '64.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91383, '2022-06-15', 1935, 86439, 5477, 5586, '-122.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 (91384, '2022-06-15', 1935, 86439, 5477, NULL, '124.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-124.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91385, '2022-06-15', 2285, 86440, 5477, 2945, '-46.0000', '35.8000', '35.8000', '65.5000', '65.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 (91386, '2022-06-15', 2285, 86440, 5477, NULL, '47.0000', '35.8000', '35.8000', '65.5000', '65.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 (91387, '2022-06-15', 7411, 86441, 5477, NULL, '1.0000', '1.3500', '1.3500', '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 (91388, '2022-06-15', 1533, 86442, 5477, 10381, '-28.0000', '2.5917', '2.5917', '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 (91389, '2022-06-15', 1533, 86442, 5477, NULL, '29.0000', '2.5917', '2.5917', '5.5000', '5.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91390, '2022-06-15', 1668, 86443, 5477, 3238, '-6.0000', '13.0442', '13.0442', '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 (91391, '2022-06-15', 1668, 86443, 5477, NULL, '7.0000', '13.0442', '13.0442', '20.0000', '20.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 (91392, '2022-06-15', 2699, 86444, 5477, 12529, '-46.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 (91393, '2022-06-15', 2699, 86444, 5477, NULL, '47.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-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 (91394, '2022-06-15', 2236, 86445, 5477, 2780, '-20.0000', '5.6599', '5.6599', '9.5000', '9.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 (91395, '2022-06-15', 2236, 86445, 5477, NULL, '21.0000', '5.6599', '5.6599', '9.5000', '9.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91396, '2022-06-15', 1912, 86446, 5477, 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 (91397, '2022-06-15', 1432, 86447, 5477, NULL, '1.0000', '8.1574', '8.1574', '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 (91398, '2022-06-15', 2916, 86448, 5477, 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 (91399, '2022-06-15', 1371, 86449, 5477, 10169, '-7.0000', '5.5000', '5.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 (91400, '2022-06-15', 1371, 86449, 5477, NULL, '8.0000', '5.5000', '5.5000', '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 (91401, '2022-06-15', 2320, 86450, 5477, 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 (91402, '2022-06-15', 2233, 86451, 5477, 2777, '-32.0000', '19.0200', '19.0200', '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 (91403, '2022-06-15', 2233, 86451, 5477, NULL, '33.0000', '19.0200', '19.0200', '39.0000', '39.0000', '-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 (91404, '2022-06-15', 9827, 86452, 5477, NULL, '1.0000', '13.5000', '13.5000', '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 (91405, '2022-06-15', 1307, 86453, 5477, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '19.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 (91406, '2022-06-15', 9718, 86454, 5477, NULL, '1.0000', '13.3000', '13.3000', '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 (91407, '2022-06-15', 1942, 86455, 5477, 5593, '-2.0000', '19.0000', '19.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 (91408, '2022-06-15', 1942, 86455, 5477, NULL, '3.0000', '19.0000', '19.0000', '28.0000', '28.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 (91409, '2022-06-15', 1888, 86456, 5477, 14663, '-10.0000', '134.8400', '134.8400', '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 (91410, '2022-06-15', 1888, 86456, 5477, NULL, '11.0000', '134.8400', '134.8400', '25.0000', '25.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 (91411, '2022-06-15', 9800, 86457, 5477, NULL, '1.0000', '14.0000', '14.0000', '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 (91412, '2022-06-15', 2444, 86458, 5477, 5314, '-9.0000', '6.0000', '6.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91413, '2022-06-15', 2444, 86458, 5477, NULL, '10.0000', '6.0000', '6.0000', '14.0000', '14.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 (91414, '2022-06-15', 2908, 86459, 5478, 18647, '-11.0000', '0.2700', '0.2700', '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 (91415, '2022-06-15', 2908, 86459, 5478, NULL, '12.0000', '0.2700', '0.2700', '0.5000', '0.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 (91416, '2022-06-15', 2693, 86460, 5478, 12285, '-5.0000', '25.3656', '25.3656', '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 (91417, '2022-06-15', 2693, 86460, 5478, NULL, '6.0000', '25.3656', '25.3656', '32.5000', '32.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 (91418, '2022-06-15', 1470, 86461, 5478, NULL, '1.0000', '90.0000', '90.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 (91419, '2022-06-15', 1993, 86462, 5478, 6356, '-2.0000', '0.6000', '0.6000', '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 (91420, '2022-06-15', 1993, 86462, 5478, NULL, '3.0000', '0.6000', '0.6000', '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 (91421, '2022-06-15', 1837, 86463, 5478, 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 (91422, '2022-06-15', 1604, 86464, 5478, 6525, '2.0000', '34.1212', '34.1212', '50.5000', '50.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 (91423, '2022-06-15', 8771, 86465, 5478, NULL, '1.0000', '4.5000', '4.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 (91424, '2022-06-15', 2858, 86466, 5478, 17772, '-85.0000', '1.0000', '1.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 (91425, '2022-06-15', 2858, 86466, 5478, NULL, '86.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91426, '2022-06-15', 1921, 86467, 5478, 6873, '1.0000', '13.0375', '13.0375', '3.0000', '3.0000', '8.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 (91427, '2022-06-15', 2858, 86468, 5478, 17772, '-85.0000', '1.0000', '1.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 (91428, '2022-06-15', 2858, 86468, 5478, NULL, '86.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91429, '2022-06-15', 2250, 86469, 5478, 2787, '-16.0000', '6.8900', '6.8900', '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 (91430, '2022-06-15', 2250, 86469, 5478, NULL, '17.0000', '6.8900', '6.8900', '12.5000', '12.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 (91431, '2022-06-15', 2109, 86470, 5478, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '70.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 (91432, '2022-06-15', 9734, 86471, 5478, NULL, '1.0000', '0.3200', '0.3200', '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 (91433, '2022-06-15', 1935, 86472, 5478, 5586, '-124.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 (91434, '2022-06-15', 1935, 86472, 5478, NULL, '126.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91435, '2022-06-15', 2282, 86473, 5478, NULL, '1.0000', '18.0000', '18.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 (91436, '2022-06-15', 2821, 86474, 5478, 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 (91437, '2022-06-15', 2779, 86475, 5478, 16132, '1.0000', '26.2800', '26.2800', '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 (91438, '2022-06-15', 2486, 86476, 5478, 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 (91439, '2022-06-15', 2169, 86477, 5478, 10737, '-149.0000', '3.8397', '3.8397', '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 (91440, '2022-06-15', 2169, 86477, 5478, NULL, '150.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91441, '2022-06-15', 2415, 86478, 5478, 4656, '-15.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 (91442, '2022-06-15', 2415, 86478, 5478, NULL, '16.0000', '5.0000', '5.0000', '7.0000', '7.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 (91443, '2022-06-15', 9695, 86479, 5478, NULL, '1.0000', '4.5000', '4.5000', '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 (91444, '2022-06-15', 2135, 86480, 5478, 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 (91445, '2022-06-15', 1788, 86481, 5478, 4906, '-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 (91446, '2022-06-15', 1788, 86481, 5478, 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 (91447, '2022-06-15', 9672, 86482, 5478, NULL, '1.0000', '2.0500', '2.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 (91448, '2022-06-15', 2289, 86483, 5478, 2949, '-197.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 (91449, '2022-06-15', 2289, 86483, 5478, NULL, '200.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-200.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91450, '2022-06-15', 9734, 86484, 5478, NULL, '1.0000', '0.3200', '0.3200', '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 (91451, '2022-06-15', 2916, 86485, 5478, 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 (91452, '2022-06-15', 7802, 86486, 5478, NULL, '3.0000', '0.9200', '0.9200', '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 (91453, '2022-06-15', 2263, 86487, 5478, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '0.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 (91454, '2022-06-15', 8743, 86488, 5478, NULL, '1.0000', '10.0000', '10.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 (91455, '2022-06-15', 9762, 86489, 5478, 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 (91456, '2022-06-15', 2315, 86490, 5478, 2735, '-454.0000', '0.3300', '0.3300', '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 (91457, '2022-06-15', 2315, 86490, 5478, NULL, '455.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-455.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91458, '2022-06-15', 1411, 86491, 5478, NULL, '1.0000', '25.9000', '25.9000', '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 (91459, '2022-06-15', 1805, 86492, 5478, NULL, '1.0000', '195.3170', '195.3170', '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 (91460, '2022-06-15', 2315, 86493, 5478, 2735, '-454.0000', '0.3300', '0.3300', '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 (91461, '2022-06-15', 2315, 86493, 5478, NULL, '455.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-455.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91462, '2022-06-15', 9827, 86494, 5478, NULL, '1.0000', '13.5000', '13.5000', '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 (91463, '2022-06-15', 2320, 86495, 5478, 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 (91464, '2022-06-15', 2862, 86496, 5478, 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 (91465, '2022-06-15', 1347, 86497, 5478, 243, '2.0000', '3.4000', '3.4000', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91466, '2022-06-15', 2916, 86498, 5478, 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 (91467, '2022-06-15', 2379, 86499, 5478, 4032, '-64.0000', '1.5900', '1.5900', '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 (91468, '2022-06-15', 2379, 86499, 5478, NULL, '65.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91469, '2022-06-15', 1840, 86500, 5478, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (91470, '2022-06-15', 1841, 86501, 5478, NULL, '1.0000', '142.5780', '142.5780', '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 (91471, '2022-06-15', 9740, 86502, 5478, NULL, '1.0000', '0.6600', '0.6600', '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 (91472, '2022-06-15', 1452, 86503, 5478, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91473, '2022-06-15', 1837, 86504, 5478, 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 (91474, '2022-06-15', 1908, 86505, 5478, 5444, '-49.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 (91475, '2022-06-15', 1908, 86505, 5478, NULL, '50.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91476, '2022-06-15', 9794, 86506, 5478, NULL, '2.0000', '1.0800', '1.0800', '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 (91477, '2022-06-15', 1954, 86507, 5478, NULL, '1.0000', '13.7500', '13.7500', '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 (91478, '2022-06-15', 2411, 86508, 5478, 4503, '-3.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 (91479, '2022-06-15', 2411, 86508, 5478, NULL, '4.0000', '1.5000', '1.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 (91480, '2022-06-15', 2169, 86509, 5478, 10737, '-149.0000', '3.8397', '3.8397', '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 (91481, '2022-06-15', 2169, 86509, 5478, NULL, '150.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91482, '2022-06-15', 1702, 86510, 5478, 4499, '-10.0000', '14.9700', '14.9700', '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 (91483, '2022-06-15', 1702, 86510, 5478, NULL, '11.0000', '14.9700', '14.9700', '25.0000', '25.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 (91484, '2022-06-15', 8068, 86511, 5478, NULL, '1.0000', '8.7900', '8.7900', '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 (91485, '2022-06-15', 1529, 86512, 5478, NULL, '1.0000', '3.5500', '3.5500', '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 (91486, '2022-06-15', 9940, 86513, 5478, 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 (91487, '2022-06-15', 1667, 86514, 5478, 9745, '-57.0000', '5.9400', '5.9400', '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 (91488, '2022-06-15', 1667, 86514, 5478, NULL, '58.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91489, '2022-06-15', 1313, 86515, 5478, 21496, '2.0000', '2.6700', '2.6700', '2.0000', '2.0000', '16.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 (91490, '2022-06-15', 2916, 86516, 5478, 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 (91491, '2022-06-15', 1867, 86517, 5479, NULL, '1.0000', '1.0500', '1.0500', '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 (91492, '2022-06-15', 2105, 86518, 5479, NULL, '2.0000', '1.3500', '1.3500', '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 (91493, '2022-06-15', 2270, 86519, 5479, 2930, '-14.0000', '0.9880', '0.9880', '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 (91494, '2022-06-15', 2270, 86519, 5479, NULL, '15.0000', '0.9880', '0.9880', '7.0000', '7.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 (91495, '2022-06-15', 1846, 86520, 5479, 12032, '-20.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 (91496, '2022-06-15', 1846, 86520, 5479, NULL, '21.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91497, '2022-06-15', 7411, 86521, 5479, NULL, '1.0000', '1.3500', '1.3500', '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 (91498, '2022-06-15', 8456, 86522, 5479, 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 (91499, '2022-06-15', 2315, 86523, 5479, 2735, '-456.0000', '0.3300', '0.3300', '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 (91500, '2022-06-15', 2315, 86523, 5479, NULL, '458.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-458.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91501, '2022-06-15', 2020, 86524, 5479, 10164, '-24.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 (91502, '2022-06-15', 2020, 86524, 5479, NULL, '25.0000', '7.5000', '7.5000', '10.0000', '10.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 (91503, '2022-06-15', 2384, 86525, 5479, 4087, '-26.0000', '0.4000', '0.4000', '0.7000', '0.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 (91504, '2022-06-15', 2384, 86525, 5479, NULL, '31.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (91505, '2022-06-15', 1310, 86526, 5479, NULL, '10.0000', '0.3700', '0.3700', '0.6000', '0.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 (91506, '2022-06-15', 1349, 86527, 5479, 10162, '-3.0000', '20.8300', '20.8300', '61.0000', '61.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91507, '2022-06-15', 1349, 86527, 5479, NULL, '4.0000', '20.8300', '20.8300', '61.0000', '61.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 (91508, '2022-06-15', 8079, 86528, 5479, NULL, '1.0000', '14.3600', '14.3600', '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 (91509, '2022-06-15', 1912, 86529, 5479, NULL, '2.0000', '0.3200', '0.3200', '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 (91510, '2022-06-15', 2169, 86530, 5479, 10737, '-151.0000', '3.8397', '3.8397', '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 (91511, '2022-06-15', 2169, 86530, 5479, NULL, '152.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-152.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91512, '2022-06-15', 2916, 86531, 5479, 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 (91513, '2022-06-15', 1450, 86532, 5479, 5570, '-39.0000', '61.1074', '61.1074', '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 (91514, '2022-06-15', 1450, 86532, 5479, NULL, '44.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91515, '2022-06-15', 2169, 86533, 5479, 10737, '-151.0000', '3.8397', '3.8397', '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 (91516, '2022-06-15', 2169, 86533, 5479, NULL, '152.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-152.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91517, '2022-06-15', 9723, 86534, 5479, 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 (91518, '2022-06-15', 9750, 86535, 5479, NULL, '1.0000', '3.3000', '3.3000', '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 (91519, '2022-06-15', 9469, 86536, 5479, NULL, '5.0000', '2.3000', '2.3000', '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 (91520, '2022-06-15', 1912, 86537, 5479, 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 (91521, '2022-06-15', 1935, 86538, 5479, 5586, '-126.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 (91522, '2022-06-15', 1935, 86538, 5479, NULL, '127.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91523, '2022-06-15', 2864, 86539, 5479, 17587, '-40.0000', '1.5198', '1.5198', '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 (91524, '2022-06-15', 2864, 86539, 5479, NULL, '45.0000', '1.5198', '1.5198', '2.2000', '2.2000', '-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 (91525, '2022-06-15', 9775, 86540, 5479, NULL, '1.0000', '7.9000', '7.9000', '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 (91526, '2022-06-15', 2221, 86541, 5479, 4154, '-67.0000', '14.4737', '14.4737', '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 (91527, '2022-06-15', 2221, 86541, 5479, NULL, '68.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91528, '2022-06-15', 1787, 86542, 5479, 4905, '-14.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 (91529, '2022-06-15', 1787, 86542, 5479, NULL, '24.0000', '0.8100', '0.8100', '2.0000', '2.0000', '-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 (91530, '2022-06-15', 2237, 86543, 5480, 2781, '-64.0000', '1.0600', '1.0600', '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 (91531, '2022-06-15', 2237, 86543, 5480, NULL, '65.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91532, '2022-06-15', 2237, 86544, 5480, 2781, '-64.0000', '1.0600', '1.0600', '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 (91533, '2022-06-15', 2237, 86544, 5480, NULL, '66.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91534, '2022-06-15', 9827, 86545, 5480, NULL, '1.0000', '13.5000', '13.5000', '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 (91535, '2022-06-15', 1533, 86546, 5480, 10381, '-29.0000', '2.5917', '2.5917', '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 (91536, '2022-06-15', 1533, 86546, 5480, NULL, '30.0000', '2.5917', '2.5917', '5.5000', '5.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 (91537, '2022-06-15', 1335, 86547, 5480, 12031, '-30.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 (91538, '2022-06-15', 1335, 86547, 5480, NULL, '32.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91539, '2022-06-15', 1371, 86548, 5480, 10169, '-8.0000', '5.5000', '5.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 (91540, '2022-06-15', 1371, 86548, 5480, NULL, '9.0000', '5.5000', '5.5000', '10.0000', '10.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 (91541, '2022-06-15', 2293, 86549, 5480, 22262, '2.0000', '1.4400', '1.4400', '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 (91542, '2022-06-15', 2669, 86550, 5480, 11757, '-9.0000', '24.5336', '24.5336', '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 (91543, '2022-06-15', 2669, 86550, 5480, NULL, '10.0000', '24.5336', '24.5336', '32.0000', '32.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 (91544, '2022-06-15', 1384, 86551, 5480, NULL, '1.0000', '39.0000', '39.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 (91545, '2022-06-15', 2821, 86552, 5480, 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 (91546, '2022-06-15', 7411, 86553, 5480, NULL, '1.0000', '1.3500', '1.3500', '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 (91547, '2022-06-15', 2693, 86554, 5480, 12285, '-6.0000', '25.3656', '25.3656', '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 (91548, '2022-06-15', 2693, 86554, 5480, NULL, '7.0000', '25.3656', '25.3656', '32.5000', '32.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 (91549, '2022-06-15', 8761, 86555, 5480, NULL, '1.0000', '12.0000', '12.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 (91550, '2022-06-15', 2154, 86556, 5480, NULL, '1.0000', '10.6849', '10.6849', '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 (91551, '2022-06-15', 2411, 86557, 5480, 4503, '-4.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 (91552, '2022-06-15', 2411, 86557, 5480, NULL, '5.0000', '1.5000', '1.5000', '2.5000', '2.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 (91553, '2022-06-15', 1910, 86558, 5480, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '30.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 (91554, '2022-06-15', 2149, 86559, 5480, 1364, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '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 (91555, '2022-06-15', 1812, 86560, 5480, 8224, '-99.0000', '7.8900', '7.8900', '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 (91556, '2022-06-15', 1812, 86560, 5480, NULL, '100.0000', '7.8900', '7.8900', '12.5000', '12.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 (91557, '2022-06-15', 1651, 86561, 5480, 3222, '-61.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91558, '2022-06-15', 1651, 86561, 5480, NULL, '62.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91559, '2022-06-15', 2628, 86562, 5480, 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 (91560, '2022-06-15', 1760, 86563, 5480, 93, '3.0000', '111.8384', '111.8384', '1.0000', '1.0000', '18.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 (91561, '2022-06-15', 2758, 86564, 5480, 22011, '-5.0000', '-20.1917', '-20.1917', '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 (91562, '2022-06-15', 2758, 86564, 5480, NULL, '6.0000', '-20.1917', '-20.1917', '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 (91563, '2022-06-15', 9896, 86565, 5480, 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 (91564, '2022-06-15', 2236, 86566, 5480, 2780, '-21.0000', '5.6599', '5.6599', '9.5000', '9.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 (91565, '2022-06-15', 2236, 86566, 5480, NULL, '22.0000', '5.6599', '5.6599', '9.5000', '9.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91566, '2022-06-15', 2431, 86567, 5480, 5303, '-4.0000', '2.2000', '2.2000', '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 (91567, '2022-06-15', 2431, 86567, 5480, NULL, '5.0000', '2.2000', '2.2000', '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 (91568, '2022-06-15', 9470, 86568, 5480, NULL, '1.0000', '9.7700', '9.7700', '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 (91569, '2022-06-15', 9734, 86569, 5480, NULL, '2.0000', '0.3200', '0.3200', '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 (91570, '2022-06-15', 1665, 86570, 5480, 3235, '-119.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 (91571, '2022-06-15', 1665, 86570, 5480, NULL, '120.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91572, '2022-06-15', 8744, 86571, 5480, NULL, '1.0000', '3.6600', '3.6600', '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 (91573, '2022-06-15', 2315, 86572, 5480, 2735, '-458.0000', '0.3300', '0.3300', '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 (91574, '2022-06-15', 2315, 86572, 5480, NULL, '459.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-459.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91575, '2022-06-15', 9940, 86573, 5480, 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 (91576, '2022-06-15', 9634, 86574, 5480, 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 (91577, '2022-06-15', 1765, 86575, 5480, 3175, '-17.0000', '90.0000', '90.0000', '9.5000', '9.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 (91578, '2022-06-15', 1765, 86575, 5480, NULL, '18.0000', '90.0000', '90.0000', '9.5000', '9.5000', '-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 (91579, '2022-06-15', 1536, 86576, 5480, 1634, '-74.0000', '3.1686', '3.1686', '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 (91580, '2022-06-15', 1536, 86576, 5480, NULL, '84.0000', '3.1686', '3.1686', '7.0000', '7.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91581, '2022-06-15', 2315, 86577, 5480, 2735, '-458.0000', '0.3300', '0.3300', '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 (91582, '2022-06-15', 2315, 86577, 5480, NULL, '461.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-461.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91583, '2022-06-15', 1452, 86578, 5480, 928, '3.0000', '45.6150', '45.6150', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91584, '2022-06-15', 9734, 86579, 5480, NULL, '1.0000', '0.3200', '0.3200', '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 (91585, '2022-06-15', 1846, 86580, 5480, 12032, '-21.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 (91586, '2022-06-15', 1846, 86580, 5480, NULL, '22.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91587, '2022-06-15', 2253, 86581, 5480, 2790, '-4.0000', '9.2500', '9.2500', '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 (91588, '2022-06-15', 2253, 86581, 5480, NULL, '5.0000', '9.2500', '9.2500', '20.0000', '20.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 (91589, '2022-06-15', 2511, 86582, 5481, 9740, '-17.0000', '8.5000', '8.5000', '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 (91590, '2022-06-15', 2511, 86582, 5481, NULL, '18.0000', '8.5000', '8.5000', '16.0000', '16.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 (91591, '2022-06-15', 2681, 86583, 5481, 12164, '-24.0000', '12.5000', '12.5000', '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 (91592, '2022-06-15', 2681, 86583, 5481, NULL, '26.0000', '12.5000', '12.5000', '24.5000', '24.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 (91593, '2022-06-15', 2964, 86584, 5481, NULL, '1.0000', '6.6000', '6.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 (91594, '2022-06-15', 2699, 86585, 5481, 12529, '-47.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 (91595, '2022-06-15', 2699, 86585, 5481, NULL, '48.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91596, '2022-06-15', 2352, 86586, 5481, 3855, '-206.0000', '20.0000', '20.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 (91597, '2022-06-15', 2352, 86586, 5481, NULL, '210.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-210.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91598, '2022-06-15', 2643, 86587, 5481, NULL, '1.0000', '0.8700', '0.8700', '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 (91599, '2022-06-15', 2611, 86588, 5481, 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 (91600, '2022-06-15', 9762, 86589, 5481, 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 (91601, '2022-06-15', 7411, 86590, 5481, NULL, '1.0000', '1.3500', '1.3500', '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 (91602, '2022-06-15', 1765, 86591, 5481, 3175, '-18.0000', '90.0000', '90.0000', '9.5000', '9.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 (91603, '2022-06-15', 1765, 86591, 5481, NULL, '19.0000', '90.0000', '90.0000', '9.5000', '9.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 (91604, '2022-06-15', 2916, 86592, 5481, 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 (91605, '2022-06-15', 2924, 86593, 5481, 18775, '-6.0000', '6.3000', '6.3000', '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 (91606, '2022-06-15', 2924, 86593, 5481, NULL, '7.0000', '6.3000', '6.3000', '9.0000', '9.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 (91607, '2022-06-15', 8744, 86594, 5481, NULL, '1.0000', '3.6600', '3.6600', '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 (91608, '2022-06-15', 2858, 86595, 5481, 17772, '-87.0000', '1.0000', '1.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 (91609, '2022-06-15', 2858, 86595, 5481, NULL, '88.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91610, '2022-06-15', 2416, 86596, 5481, 4745, '-31.0000', '1.2000', '1.2000', '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 (91611, '2022-06-15', 2416, 86596, 5481, NULL, '32.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91612, '2022-06-15', 1837, 86597, 5481, 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 (91613, '2022-06-15', 3029, 86598, 5481, NULL, '1.0000', '4.7700', '4.7700', '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 (91614, '2022-06-15', 1646, 86599, 5481, 3239, '-23.0000', '4.5300', '4.5300', '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 (91615, '2022-06-15', 1646, 86599, 5481, NULL, '24.0000', '4.5300', '4.5300', '8.0000', '8.0000', '-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 (91616, '2022-06-15', 2646, 86600, 5481, 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 (91617, '2022-06-15', 2916, 86601, 5481, 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 (91618, '2022-06-15', 9748, 86602, 5481, NULL, '1.0000', '2.5300', '2.5300', '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 (91619, '2022-06-15', 1867, 86603, 5481, NULL, '1.0000', '1.0500', '1.0500', '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 (91620, '2022-06-15', 1347, 86604, 5481, 243, '2.0000', '3.4000', '3.4000', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91621, '2022-06-15', 2440, 86605, 5481, 5309, '-3.0000', '5.3000', '5.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 (91622, '2022-06-15', 2440, 86605, 5481, NULL, '4.0000', '5.3000', '5.3000', '12.0000', '12.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 (91623, '2022-06-15', 2024, 86606, 5481, 21767, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.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 (91624, '2022-06-15', 2037, 86607, 5481, 6389, '-14.0000', '10.5000', '10.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 (91625, '2022-06-15', 2037, 86607, 5481, NULL, '15.0000', '10.5000', '10.5000', '21.0000', '21.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 (91626, '2022-06-15', 2277, 86608, 5481, 2937, '-64.0000', '0.7800', '0.7800', '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 (91627, '2022-06-15', 2277, 86608, 5481, NULL, '66.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91628, '2022-06-15', 1910, 86609, 5481, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '29.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 (91629, '2022-06-15', 1668, 86610, 5481, 3238, '-7.0000', '13.0442', '13.0442', '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 (91630, '2022-06-15', 1668, 86610, 5481, NULL, '8.0000', '13.0442', '13.0442', '20.0000', '20.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 (91631, '2022-06-15', 1398, 86611, 5481, NULL, '1.0000', '7.5000', '7.5000', '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 (91632, '2022-06-15', 2342, 86612, 5481, 3845, '-100.0000', '1.8600', '1.8600', '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 (91633, '2022-06-15', 2342, 86612, 5481, NULL, '101.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91634, '2022-06-15', 2012, 86613, 5482, 5299, '-3.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 (91635, '2022-06-15', 2012, 86613, 5482, NULL, '4.0000', '12.0000', '12.0000', '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 (91636, '2022-06-15', 1812, 86614, 5482, 8224, '-100.0000', '7.8900', '7.8900', '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 (91637, '2022-06-15', 1812, 86614, 5482, NULL, '101.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91638, '2022-06-15', 7411, 86615, 5482, NULL, '1.0000', '1.3500', '1.3500', '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 (91639, '2022-06-15', 1519, 86616, 5482, 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 (91640, '2022-06-15', 1839, 86617, 5482, 8734, '-36.0000', '6.1500', '6.1500', '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 (91641, '2022-06-15', 1839, 86617, 5482, NULL, '37.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91642, '2022-06-15', 1837, 86618, 5482, 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 (91643, '2022-06-15', 2255, 86619, 5482, 2792, '-2.0000', '17.4900', '17.4900', '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 (91644, '2022-06-15', 2255, 86619, 5482, NULL, '3.0000', '17.4900', '17.4900', '32.5000', '32.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 (91645, '2022-06-15', 2221, 86620, 5482, 4154, '-68.0000', '14.4737', '14.4737', '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 (91646, '2022-06-15', 2221, 86620, 5482, NULL, '69.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91647, '2022-06-15', 1533, 86621, 5482, 10381, '-30.0000', '2.5917', '2.5917', '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 (91648, '2022-06-15', 1533, 86621, 5482, NULL, '31.0000', '2.5917', '2.5917', '5.5000', '5.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 (91649, '2022-06-15', 1519, 86622, 5482, 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 (91650, '2022-06-15', 9715, 86623, 5482, NULL, '1.0000', '9.4000', '9.4000', '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 (91651, '2022-06-15', 7411, 86624, 5482, NULL, '1.0000', '1.3500', '1.3500', '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 (91652, '2022-06-15', 1580, 86625, 5482, 7598, '-57.0000', '0.9900', '0.9900', '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 (91653, '2022-06-15', 1580, 86625, 5482, NULL, '60.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91654, '2022-06-15', 2315, 86626, 5482, 2735, '-462.0000', '0.3300', '0.3300', '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 (91655, '2022-06-15', 2315, 86626, 5482, NULL, '463.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-463.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91656, '2022-06-15', 1812, 86627, 5482, 8224, '-100.0000', '7.8900', '7.8900', '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 (91657, '2022-06-15', 1812, 86627, 5482, NULL, '101.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91658, '2022-06-15', 2169, 86628, 5482, 10737, '-153.0000', '3.8397', '3.8397', '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 (91659, '2022-06-15', 2169, 86628, 5482, NULL, '154.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-154.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91660, '2022-06-15', 1499, 86629, 5482, 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 (91661, '2022-06-15', 2244, 86630, 5482, NULL, '1.0000', '7.3600', '7.3600', '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 (91662, '2022-06-15', 8068, 86631, 5482, NULL, '1.0000', '8.7900', '8.7900', '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 (91663, '2022-06-15', 1837, 86632, 5482, 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 (91664, '2022-06-15', 2847, 86633, 5482, NULL, '1.0000', '13.8800', '13.8800', '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 (91665, '2022-06-15', 2302, 86634, 5482, 2963, '-52.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 (91666, '2022-06-15', 2302, 86634, 5482, NULL, '53.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (91667, '2022-06-15', 9196, 86635, 5482, NULL, '1.0000', '0.7000', '0.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 (91668, '2022-06-15', 9649, 86636, 5482, NULL, '1.0000', '14.4100', '14.4100', '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 (91669, '2022-06-15', 1470, 86637, 5482, NULL, '1.0000', '90.0000', '90.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 (91670, '2022-06-15', 3029, 86638, 5482, NULL, '1.0000', '4.7700', '4.7700', '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 (91671, '2022-06-15', 1410, 86639, 5482, NULL, '1.0000', '2.2000', '2.2000', '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 (91672, '2022-06-15', 9089, 86640, 5482, NULL, '1.0000', '3.8000', '3.8000', '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 (91673, '2022-06-15', 2916, 86641, 5482, 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 (91674, '2022-06-15', 7753, 86642, 5482, NULL, '1.0000', '3.4000', '3.4000', '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 (91675, '2022-06-15', 2695, 86643, 5482, 12336, '-16.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 (91676, '2022-06-15', 2695, 86643, 5482, NULL, '17.0000', '2.0000', '2.0000', '3.0000', '3.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 (91677, '2022-06-15', 1845, 86644, 5482, 6222, '-26.0000', '19.5000', '19.5000', '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 (91678, '2022-06-15', 1845, 86644, 5482, NULL, '27.0000', '19.5000', '19.5000', '30.5000', '30.5000', '-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 (91679, '2022-06-15', 9715, 86645, 5482, NULL, '1.0000', '9.4000', '9.4000', '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 (91680, '2022-06-15', 9649, 86646, 5482, NULL, '1.0000', '14.4100', '14.4100', '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 (91681, '2022-06-15', 9413, 86647, 5482, 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 (91682, '2022-06-15', 1785, 86648, 5482, 4903, '-6.0000', '4.8380', '4.8380', '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 (91683, '2022-06-15', 1785, 86648, 5482, NULL, '7.0000', '4.8380', '4.8380', '24.0000', '24.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 (91684, '2022-06-15', 1602, 86649, 5482, 5897, '-153.0000', '6.7859', '6.7859', '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 (91685, '2022-06-15', 1602, 86649, 5482, NULL, '154.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-154.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91686, '2022-06-15', 2242, 86650, 5482, 3059, '-67.0000', '0.4800', '0.4800', '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 (91687, '2022-06-15', 2242, 86650, 5482, NULL, '70.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91688, '2022-06-15', 2768, 86651, 5482, 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 (91689, '2022-06-15', 7848, 86652, 5482, NULL, '1.0000', '1.3500', '1.3500', '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 (91690, '2022-06-15', 2169, 86653, 5482, 10737, '-153.0000', '3.8397', '3.8397', '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 (91691, '2022-06-15', 2169, 86653, 5482, NULL, '154.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-154.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91692, '2022-06-15', 1779, 86654, 5482, 4898, '-20.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 (91693, '2022-06-15', 1779, 86654, 5482, NULL, '22.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91694, '2022-06-15', 1504, 86655, 5482, NULL, '10.0000', '1.5000', '1.5000', '2.8000', '2.8000', '-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 (91695, '2022-06-15', 9748, 86656, 5482, NULL, '1.0000', '2.5300', '2.5300', '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 (91696, '2022-06-15', 1822, 86657, 5482, 8225, '-198.0000', '2.4000', '2.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 (91697, '2022-06-15', 1822, 86657, 5482, NULL, '201.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-201.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91698, '2022-06-15', 1863, 86658, 5482, 10808, '-142.0000', '0.4136', '0.4136', '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 (91699, '2022-06-15', 1863, 86658, 5482, NULL, '143.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-143.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91700, '2022-06-15', 1935, 86659, 5482, 5586, '-127.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 (91701, '2022-06-15', 1935, 86659, 5482, NULL, '128.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91702, '2022-06-15', 1499, 86660, 5482, 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 (91703, '2022-06-15', 2491, 86661, 5482, 6228, '-33.0000', '12.2000', '12.2000', '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 (91704, '2022-06-15', 2491, 86661, 5482, NULL, '34.0000', '12.2000', '12.2000', '19.5000', '19.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 (91705, '2022-06-15', 9711, 86662, 5482, NULL, '1.0000', '5.2800', '5.2800', '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 (91706, '2022-06-15', 1470, 86663, 5482, NULL, '1.0000', '90.0000', '90.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 (91707, '2022-06-15', 3019, 86664, 5482, NULL, '1.0000', '7.8000', '7.8000', '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 (91708, '2022-06-15', 9750, 86665, 5482, NULL, '1.0000', '3.3000', '3.3000', '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 (91709, '2022-06-15', 1949, 86666, 5482, 741, '1.0000', '18.0500', '18.0500', '5.0000', '5.0000', '2.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 (91710, '2022-06-15', 2384, 86667, 5482, 4087, '-31.0000', '0.4000', '0.4000', '0.7000', '0.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 (91711, '2022-06-15', 2384, 86667, 5482, NULL, '32.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91712, '2022-06-15', 2293, 86668, 5482, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.5000', '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 (91713, '2022-06-15', 7802, 86669, 5482, NULL, '3.0000', '0.9200', '0.9200', '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 (91714, '2022-06-15', 2315, 86670, 5482, 2735, '-462.0000', '0.3300', '0.3300', '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 (91715, '2022-06-15', 2315, 86670, 5482, NULL, '464.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-464.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91716, '2022-06-15', 9775, 86671, 5482, NULL, '1.0000', '7.9000', '7.9000', '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 (91717, '2022-06-15', 2384, 86672, 5482, 4087, '-31.0000', '0.4000', '0.4000', '0.7000', '0.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 (91718, '2022-06-15', 2384, 86672, 5482, NULL, '33.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (91719, '2022-06-15', 1533, 86673, 5482, 10381, '-30.0000', '2.5917', '2.5917', '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 (91720, '2022-06-15', 1533, 86673, 5482, NULL, '31.0000', '2.5917', '2.5917', '5.5000', '5.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 (91721, '2022-06-15', 1863, 86674, 5482, 10808, '-142.0000', '0.4136', '0.4136', '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 (91722, '2022-06-15', 1863, 86674, 5482, NULL, '143.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-143.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91723, '2022-06-15', 1430, 86675, 5482, 22347, '1.0000', '13.0000', '13.0000', '21.0000', '21.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 (91724, '2022-06-15', 8032, 86676, 5482, NULL, '1.0000', '6.4400', '6.4400', '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 (91725, '2022-06-15', 2342, 86677, 5482, 3845, '-101.0000', '1.8600', '1.8600', '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 (91726, '2022-06-15', 2342, 86677, 5482, NULL, '106.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91727, '2022-06-15', 2293, 86678, 5483, 22262, '3.0000', '1.4400', '1.4400', '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 (91728, '2022-06-15', 9734, 86679, 5483, NULL, '2.0000', '0.3200', '0.3200', '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 (91729, '2022-06-15', 2253, 86680, 5483, 2790, '-5.0000', '9.2500', '9.2500', '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 (91730, '2022-06-15', 2253, 86680, 5483, NULL, '6.0000', '9.2500', '9.2500', '20.0000', '20.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 (91731, '2022-06-15', 7881, 86681, 5483, NULL, '1.0000', '2.3000', '2.3000', '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 (91732, '2022-06-15', 7411, 86682, 5483, NULL, '1.0000', '1.3500', '1.3500', '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 (91733, '2022-06-15', 1872, 86683, 5483, 12520, '-9.0000', '9.0500', '9.0500', '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 (91734, '2022-06-15', 1872, 86683, 5483, NULL, '10.0000', '9.0500', '9.0500', '16.0000', '16.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 (91735, '2022-06-15', 2379, 86684, 5483, 4032, '-65.0000', '1.5900', '1.5900', '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 (91736, '2022-06-15', 2379, 86684, 5483, NULL, '66.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91737, '2022-06-15', 9726, 86685, 5483, 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 (91738, '2022-06-15', 1342, 86686, 5483, 11264, '-18.0000', '6.8074', '6.8074', '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 (91739, '2022-06-15', 1342, 86686, 5483, NULL, '19.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-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 (91740, '2022-06-15', 1529, 86687, 5483, NULL, '1.0000', '3.5500', '3.5500', '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 (91741, '2022-06-15', 2320, 86688, 5483, 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 (91742, '2022-06-15', 1647, 86689, 5483, 3218, '-16.0000', '4.7200', '4.7200', '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 (91743, '2022-06-15', 1647, 86689, 5483, NULL, '17.0000', '4.7200', '4.7200', '8.0000', '8.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 (91744, '2022-06-15', 1946, 86690, 5483, 740, '1.0000', '5.7750', '5.7750', '5.0000', '5.0000', '55.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 (91745, '2022-06-15', 2315, 86691, 5483, 2735, '-465.0000', '0.3300', '0.3300', '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 (91746, '2022-06-15', 2315, 86691, 5483, NULL, '466.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-466.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91747, '2022-06-15', 9729, 86692, 5483, NULL, '1.0000', '0.6200', '0.6200', '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 (91748, '2022-06-15', 1342, 86693, 5483, 11264, '-18.0000', '6.8074', '6.8074', '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 (91749, '2022-06-15', 1342, 86693, 5483, NULL, '19.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-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 (91750, '2022-06-15', 2573, 86694, 5483, 22345, '1.0000', '7.7594', '7.7594', '12.0000', '12.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 (91751, '2022-06-15', 2699, 86695, 5484, 12529, '-48.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 (91752, '2022-06-15', 2699, 86695, 5484, NULL, '49.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91753, '2022-06-15', 1837, 86696, 5484, NULL, '5.0000', '0.9642', '0.9642', '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 (91754, '2022-06-15', 2320, 86697, 5484, 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 (91755, '2022-06-15', 1812, 86698, 5484, 8224, '-102.0000', '7.8900', '7.8900', '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 (91756, '2022-06-15', 1812, 86698, 5484, NULL, '103.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91757, '2022-06-15', 2061, 86699, 5484, 2164, '-9.0000', '10.9800', '10.9800', '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 (91758, '2022-06-15', 2061, 86699, 5484, NULL, '10.0000', '10.9800', '10.9800', '17.5000', '17.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 (91759, '2022-06-15', 1311, 86700, 5484, 5437, '-17.0000', '79.3908', '79.3908', '0.6000', '0.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 (91760, '2022-06-15', 1311, 86700, 5484, NULL, '22.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91761, '2022-06-15', 2797, 86701, 5484, 18967, '1.0000', '27.4800', '27.4800', '70.0000', '70.0000', '0.0000', 1, 0, NULL, 139);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91762, '2022-06-15', 1602, 86702, 5484, 5897, '-154.0000', '6.7859', '6.7859', '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 (91763, '2022-06-15', 1602, 86702, 5484, NULL, '155.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91764, '2022-06-15', 1349, 86703, 5484, 10162, '-4.0000', '20.8300', '20.8300', '61.0000', '61.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91765, '2022-06-15', 1349, 86703, 5484, NULL, '5.0000', '20.8300', '20.8300', '61.0000', '61.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 (91766, '2022-06-15', 1670, 86704, 5484, 10163, '-18.0000', '19.5000', '19.5000', '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 (91767, '2022-06-15', 1670, 86704, 5484, NULL, '19.0000', '19.5000', '19.5000', '36.0000', '36.0000', '-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 (91768, '2022-06-15', 1675, 86705, 5484, NULL, '1.0000', '21.3600', '21.3600', '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 (91769, '2022-06-15', 2669, 86706, 5484, 11757, '-10.0000', '24.5336', '24.5336', '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 (91770, '2022-06-15', 2669, 86706, 5484, NULL, '11.0000', '24.5336', '24.5336', '32.0000', '32.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 (91771, '2022-06-15', 1910, 86707, 5484, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '28.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 (91772, '2022-06-15', 2821, 86708, 5484, 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 (91773, '2022-06-15', 1871, 86709, 5484, 8223, '-207.0000', '24.5246', '24.5246', '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 (91774, '2022-06-15', 1871, 86709, 5484, NULL, '227.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-227.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91775, '2022-06-15', 2169, 86710, 5484, 10737, '-155.0000', '3.8397', '3.8397', '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 (91776, '2022-06-15', 2169, 86710, 5484, NULL, '157.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-157.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91777, '2022-06-15', 2579, 86711, 5484, NULL, '1.0000', '20.0000', '20.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 (91778, '2022-06-15', 2688, 86712, 5484, 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 (91779, '2022-06-15', 2690, 86713, 5484, 12639, '-1.0000', '17.0000', '17.0000', '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 (91780, '2022-06-15', 2690, 86713, 5484, NULL, '2.0000', '17.0000', '17.0000', '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 (91781, '2022-06-15', 9943, 86714, 5484, NULL, '1.0000', '10.5500', '10.5500', '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 (91782, '2022-06-15', 7495, 86715, 5484, NULL, '1.0000', '17.8000', '17.8000', '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 (91783, '2022-06-15', 1910, 86716, 5484, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '28.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 (91784, '2022-06-15', 2237, 86717, 5484, 2781, '-67.0000', '1.0600', '1.0600', '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 (91785, '2022-06-15', 2237, 86717, 5484, NULL, '68.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91786, '2022-06-15', 1342, 86718, 5484, 11264, '-20.0000', '6.8074', '6.8074', '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 (91787, '2022-06-15', 1342, 86718, 5484, NULL, '21.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91788, '2022-06-15', 1762, 86719, 5484, 3172, '-5.0000', '90.0000', '90.0000', '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 (91789, '2022-06-15', 1762, 86719, 5484, NULL, '6.0000', '90.0000', '90.0000', '13.5000', '13.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 (91790, '2022-06-15', 1532, 86720, 5484, 20609, '1.0000', '0.8000', '0.8000', '2.0000', '2.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 (91791, '2022-06-15', 1536, 86721, 5484, 1634, '-84.0000', '3.1686', '3.1686', '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 (91792, '2022-06-15', 1536, 86721, 5484, NULL, '94.0000', '3.1686', '3.1686', '7.0000', '7.0000', '-94.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91793, '2022-06-15', 8079, 86722, 5484, NULL, '1.0000', '14.3600', '14.3600', '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 (91794, '2022-06-15', 2236, 86723, 5484, 2780, '-22.0000', '5.6599', '5.6599', '9.5000', '9.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 (91795, '2022-06-15', 2236, 86723, 5484, NULL, '23.0000', '5.6599', '5.6599', '9.5000', '9.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 (91796, '2022-06-15', 9940, 86724, 5484, 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 (91797, '2022-06-15', 9940, 86725, 5485, 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 (91798, '2022-06-15', 2135, 86726, 5485, 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 (91799, '2022-06-15', 9748, 86727, 5485, NULL, '1.0000', '2.5300', '2.5300', '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 (91800, '2022-06-15', 2020, 86728, 5485, 10164, '-25.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 (91801, '2022-06-15', 2020, 86728, 5485, NULL, '26.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-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 (91802, '2022-06-15', 9783, 86729, 5485, NULL, '1.0000', '17.6000', '17.6000', '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 (91803, '2022-06-15', 1667, 86730, 5485, 9745, '-58.0000', '5.9400', '5.9400', '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 (91804, '2022-06-15', 1667, 86730, 5485, NULL, '59.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91805, '2022-06-15', 2384, 86731, 5485, 4087, '-34.0000', '0.4000', '0.4000', '0.7000', '0.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 (91806, '2022-06-15', 2384, 86731, 5485, NULL, '38.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91807, '2022-06-15', 7886, 86732, 5485, 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 (91808, '2022-06-15', 9748, 86733, 5485, NULL, '1.0000', '2.5300', '2.5300', '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 (91809, '2022-06-15', 2618, 86734, 5485, 9836, '-24.0000', '4.1000', '4.1000', '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 (91810, '2022-06-15', 2618, 86734, 5485, NULL, '25.0000', '4.1000', '4.1000', '6.0000', '6.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 (91811, '2022-06-15', 1780, 86735, 5486, 3867, '-7.0000', '18.7146', '18.7146', '60.5000', '60.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 (91812, '2022-06-15', 1780, 86735, 5486, NULL, '8.0000', '18.7146', '18.7146', '60.5000', '60.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 (91813, '2022-06-15', 1375, 86736, 5486, 275, '1.0000', '92.1118', '92.1118', '45.0000', '45.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 (91814, '2022-06-15', 9723, 86737, 5486, 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 (91815, '2022-06-15', 3017, 86738, 5486, NULL, '1.0000', '3.9000', '3.9000', '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 (91816, '2022-06-15', 1665, 86739, 5486, 3235, '-120.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 (91817, '2022-06-15', 1665, 86739, 5486, NULL, '122.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-122.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91818, '2022-06-15', 1667, 86740, 5486, 9745, '-59.0000', '5.9400', '5.9400', '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 (91819, '2022-06-15', 1667, 86740, 5486, NULL, '60.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91820, '2022-06-15', 2642, 86741, 5486, 10573, '-19.0000', '9.2000', '9.2000', '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 (91821, '2022-06-15', 2642, 86741, 5486, NULL, '20.0000', '9.2000', '9.2000', '15.0000', '15.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 (91822, '2022-06-15', 1425, 86742, 5486, NULL, '1.0000', '6.4405', '6.4405', '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 (91823, '2022-06-15', 2163, 86743, 5486, 16248, '-3.0000', '20.0000', '20.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 (91824, '2022-06-15', 2163, 86743, 5486, NULL, '4.0000', '20.0000', '20.0000', '36.0000', '36.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 (91825, '2022-06-15', 1863, 86744, 5486, 10808, '-144.0000', '0.4136', '0.4136', '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 (91826, '2022-06-15', 1863, 86744, 5486, NULL, '146.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-146.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91827, '2022-06-15', 9748, 86745, 5486, NULL, '1.0000', '2.5300', '2.5300', '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 (91828, '2022-06-15', 1935, 86746, 5486, 5586, '-128.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 (91829, '2022-06-15', 1935, 86746, 5486, NULL, '129.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-129.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91830, '2022-06-15', 9195, 86747, 5486, NULL, '1.0000', '4.9800', '4.9800', '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 (91831, '2022-06-15', 2298, 86748, 5486, 2957, '-6.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 (91832, '2022-06-15', 2298, 86748, 5486, NULL, '7.0000', '6.0000', '6.0000', '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 (91833, '2022-06-15', 1335, 86749, 5486, 12031, '-32.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 (91834, '2022-06-15', 1335, 86749, 5486, NULL, '33.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-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 (91835, '2022-06-15', 2478, 86750, 5486, 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 (91836, '2022-06-15', 2483, 86751, 5486, 18711, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.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 (91837, '2022-06-15', 2486, 86752, 5486, NULL, '2.0000', '4.0000', '4.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 (91838, '2022-06-15', 2855, 86753, 5486, 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 (91839, '2022-06-15', 1529, 86754, 5486, NULL, '1.0000', '3.5500', '3.5500', '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 (91840, '2022-06-15', 1863, 86755, 5486, 10808, '-144.0000', '0.4136', '0.4136', '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 (91841, '2022-06-15', 1863, 86755, 5486, NULL, '145.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91842, '2022-06-15', 2821, 86756, 5486, 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 (91843, '2022-06-15', 1935, 86757, 5486, 5586, '-128.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 (91844, '2022-06-15', 1935, 86757, 5486, NULL, '129.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-129.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91845, '2022-06-15', 1452, 86758, 5486, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91846, '2022-06-15', 3029, 86759, 5486, NULL, '1.0000', '4.7700', '4.7700', '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 (91847, '2022-06-15', 2302, 86760, 5486, 2963, '-53.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 (91848, '2022-06-15', 2302, 86760, 5486, NULL, '54.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91849, '2022-06-15', 1772, 86761, 5486, 4893, '-13.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 (91850, '2022-06-15', 1772, 86761, 5486, NULL, '14.0000', '6.0500', '6.0500', '8.0000', '8.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 (91851, '2022-06-15', 2506, 86762, 5486, 16244, '-22.0000', '3.4900', '3.4900', '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 (91852, '2022-06-15', 2506, 86762, 5486, NULL, '23.0000', '3.4900', '3.4900', '6.5000', '6.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 (91853, '2022-06-15', 2169, 86763, 5486, 10737, '-157.0000', '3.8397', '3.8397', '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 (91854, '2022-06-15', 2169, 86763, 5486, NULL, '159.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-159.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91855, '2022-06-15', 9762, 86764, 5486, 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 (91856, '2022-06-15', 1602, 86765, 5486, 5897, '-155.0000', '6.7859', '6.7859', '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 (91857, '2022-06-15', 1602, 86765, 5486, NULL, '156.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-156.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91858, '2022-06-15', 1331, 86766, 5486, NULL, '1.0000', '4.2000', '4.2000', '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 (91859, '2022-06-15', 2777, 86767, 5486, NULL, '1.0000', '2.5000', '2.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 (91860, '2022-06-15', 1602, 86768, 5486, 5897, '-155.0000', '6.7859', '6.7859', '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 (91861, '2022-06-15', 1602, 86768, 5486, NULL, '156.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-156.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91862, '2022-06-15', 1335, 86769, 5486, 12031, '-32.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 (91863, '2022-06-15', 1335, 86769, 5486, NULL, '34.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-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 (91864, '2022-06-15', 1871, 86770, 5486, 8223, '-227.0000', '24.5246', '24.5246', '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 (91865, '2022-06-15', 1871, 86770, 5486, NULL, '247.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-247.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91866, '2022-06-15', 1666, 86771, 5486, 3236, '-37.0000', '2.7100', '2.7100', '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 (91867, '2022-06-15', 1666, 86771, 5486, NULL, '38.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91868, '2022-06-15', 2366, 86772, 5486, 3833, '-62.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 (91869, '2022-06-15', 2366, 86772, 5486, NULL, '64.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91870, '2022-06-15', 2916, 86773, 5486, 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 (91871, '2022-06-15', 1604, 86774, 5486, 466, '2.0000', '34.1212', '34.1212', '50.5000', '50.5000', '0.0000', 1, 0, NULL, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91872, '2022-06-15', 2916, 86775, 5487, 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 (91873, '2022-06-15', 1863, 86776, 5487, 10808, '-147.0000', '0.4136', '0.4136', '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 (91874, '2022-06-15', 1863, 86776, 5487, NULL, '148.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91875, '2022-06-15', 1822, 86777, 5487, 8225, '-201.0000', '2.4000', '2.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 (91876, '2022-06-15', 1822, 86777, 5487, NULL, '202.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-202.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91877, '2022-06-15', 2058, 86778, 5487, 7512, '-6.0000', '10.0000', '10.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 (91878, '2022-06-15', 2058, 86778, 5487, NULL, '7.0000', '10.0000', '10.0000', '40.0000', '40.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 (91879, '2022-06-15', 3025, 86779, 5487, NULL, '1.0000', '1.8000', '1.8000', '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 (91880, '2022-06-15', 7590, 86780, 5487, NULL, '1.0000', '1.8400', '1.8400', '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 (91881, '2022-06-15', 2858, 86781, 5487, 17772, '-88.0000', '1.0000', '1.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 (91882, '2022-06-15', 2858, 86781, 5487, NULL, '89.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91883, '2022-06-15', 1954, 86782, 5487, NULL, '2.0000', '13.7500', '13.7500', '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 (91884, '2022-06-15', 1863, 86783, 5487, 10808, '-147.0000', '0.4136', '0.4136', '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 (91885, '2022-06-15', 1863, 86783, 5487, NULL, '148.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91886, '2022-06-15', 1665, 86784, 5487, 3235, '-122.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 (91887, '2022-06-15', 1665, 86784, 5487, NULL, '123.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91888, '2022-06-15', 9734, 86785, 5487, NULL, '1.0000', '0.3200', '0.3200', '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 (91889, '2022-06-15', 2442, 86786, 5487, 5312, '-9.0000', '4.8000', '4.8000', '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 (91890, '2022-06-15', 2442, 86786, 5487, NULL, '10.0000', '4.8000', '4.8000', '8.0000', '8.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 (91891, '2022-06-15', 2990, 86787, 5488, NULL, '1.0000', '1.1200', '1.1200', '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 (91892, '2022-06-15', 2331, 86788, 5488, 3834, '-11.0000', '12.0700', '12.0700', '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 (91893, '2022-06-15', 2331, 86788, 5488, NULL, '12.0000', '12.0700', '12.0700', '18.0000', '18.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 (91894, '2022-06-15', 2545, 86789, 5488, 6306, '-10.0000', '5.8819', '5.8819', '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 (91895, '2022-06-15', 2545, 86789, 5488, NULL, '11.0000', '5.8819', '5.8819', '11.0000', '11.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 (91896, '2022-06-15', 9649, 86790, 5488, NULL, '1.0000', '14.4100', '14.4100', '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 (91897, '2022-06-15', 1310, 86791, 5488, NULL, '2.0000', '0.3700', '0.3700', '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 (91898, '2022-06-15', 2315, 86792, 5488, 2735, '-466.0000', '0.3300', '0.3300', '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 (91899, '2022-06-15', 2315, 86792, 5488, NULL, '467.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-467.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91900, '2022-06-15', 1805, 86793, 5488, NULL, '1.0000', '195.3170', '195.3170', '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 (91901, '2022-06-15', 9089, 86794, 5488, NULL, '1.0000', '3.8000', '3.8000', '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 (91902, '2022-06-15', 2699, 86795, 5488, 12529, '-49.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 (91903, '2022-06-15', 2699, 86795, 5488, NULL, '50.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91904, '2022-06-15', 7886, 86796, 5488, 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 (91905, '2022-06-15', 1837, 86797, 5488, NULL, '4.0000', '0.9642', '0.9642', '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 (91906, '2022-06-15', 1864, 86798, 5488, 7389, '-5.0000', '6.0500', '6.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 (91907, '2022-06-15', 1864, 86798, 5488, NULL, '6.0000', '6.0500', '6.0500', '11.0000', '11.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 (91908, '2022-06-15', 2491, 86799, 5488, 6228, '-34.0000', '12.2000', '12.2000', '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 (91909, '2022-06-15', 2491, 86799, 5488, NULL, '35.0000', '12.2000', '12.2000', '19.5000', '19.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91910, '2022-06-15', 1841, 86800, 5488, NULL, '3.0000', '142.5780', '142.5780', '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 (91911, '2022-06-15', 2289, 86801, 5488, 2949, '-200.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 (91912, '2022-06-15', 2289, 86801, 5488, NULL, '203.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-203.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91913, '2022-06-15', 2293, 86802, 5488, 22262, '3.0000', '1.4400', '1.4400', '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 (91914, '2022-06-15', 8767, 86803, 5488, NULL, '1.0000', '6.6900', '6.6900', '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 (91915, '2022-06-15', 2263, 86804, 5488, NULL, '1.0000', '6.5600', '6.5600', '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 (91916, '2022-06-15', 2242, 86805, 5488, 3059, '-70.0000', '0.4800', '0.4800', '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 (91917, '2022-06-15', 2242, 86805, 5488, NULL, '71.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91918, '2022-06-15', 1863, 86806, 5488, 10808, '-149.0000', '0.4136', '0.4136', '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 (91919, '2022-06-15', 1863, 86806, 5488, NULL, '150.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91920, '2022-06-15', 2768, 86807, 5488, 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 (91921, '2022-06-15', 1812, 86808, 5488, 8224, '-103.0000', '7.8900', '7.8900', '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 (91922, '2022-06-15', 1812, 86808, 5488, NULL, '106.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91923, '2022-06-15', 9648, 86809, 5488, NULL, '1.0000', '15.0000', '15.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91924, '2022-06-15', 1602, 86810, 5488, 5897, '-157.0000', '6.7859', '6.7859', '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 (91925, '2022-06-15', 1602, 86810, 5488, NULL, '158.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-158.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91926, '2022-06-15', 1840, 86811, 5488, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (91927, '2022-06-15', 1841, 86812, 5488, NULL, '4.0000', '142.5780', '142.5780', '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 (91928, '2022-06-15', 2289, 86813, 5488, 2949, '-200.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 (91929, '2022-06-15', 2289, 86813, 5488, NULL, '201.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-201.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91930, '2022-06-15', 2592, 86814, 5489, 10812, '-22.0000', '7.9670', '7.9670', '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 (91931, '2022-06-15', 2592, 86814, 5489, NULL, '24.0000', '7.9670', '7.9670', '18.0000', '18.0000', '-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 (91932, '2022-06-15', 1651, 86815, 5489, 3222, '-62.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91933, '2022-06-15', 1651, 86815, 5489, NULL, '65.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91934, '2022-06-15', 7881, 86816, 5489, NULL, '1.0000', '2.3000', '2.3000', '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 (91935, '2022-06-15', 2315, 86817, 5489, 2735, '-467.0000', '0.3300', '0.3300', '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 (91936, '2022-06-15', 2315, 86817, 5489, NULL, '468.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-468.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91937, '2022-06-15', 2602, 86818, 5489, 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 (91938, '2022-06-15', 1311, 86819, 5489, 5437, '-22.0000', '79.3908', '79.3908', '0.6000', '0.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 (91939, '2022-06-15', 1311, 86819, 5489, NULL, '24.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (91940, '2022-06-15', 1592, 86820, 5489, 6223, '-14.0000', '35.9000', '35.9000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91941, '2022-06-15', 1592, 86820, 5489, NULL, '15.0000', '35.9000', '35.9000', '52.0000', '52.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 (91942, '2022-06-15', 1647, 86821, 5489, 3218, '-17.0000', '4.7200', '4.7200', '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 (91943, '2022-06-15', 1647, 86821, 5489, NULL, '18.0000', '4.7200', '4.7200', '8.0000', '8.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 (91944, '2022-06-15', 2381, 86822, 5489, 11263, '-6.0000', '12.1900', '12.1900', '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 (91945, '2022-06-15', 2381, 86822, 5489, NULL, '7.0000', '12.1900', '12.1900', '19.0000', '19.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 (91946, '2022-06-15', 1304, 86823, 5489, 34, '1.0000', '89.2753', '89.2753', '3.0000', '3.0000', '108.0000', 1, 0, NULL, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91947, '2022-06-15', 2916, 86824, 5489, 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 (91948, '2022-06-15', 1425, 86825, 5489, NULL, '2.0000', '6.4405', '6.4405', '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 (91949, '2022-06-15', 1863, 86826, 5489, 10808, '-150.0000', '0.4136', '0.4136', '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 (91950, '2022-06-15', 1863, 86826, 5489, NULL, '151.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-151.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91951, '2022-06-15', 2237, 86827, 5489, 2781, '-68.0000', '1.0600', '1.0600', '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 (91952, '2022-06-15', 2237, 86827, 5489, NULL, '69.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91953, '2022-06-15', 2169, 86828, 5489, 10737, '-159.0000', '3.8397', '3.8397', '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 (91954, '2022-06-15', 2169, 86828, 5489, NULL, '160.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-160.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91955, '2022-06-15', 9762, 86829, 5490, 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 (91956, '2022-06-15', 1602, 86830, 5490, 5897, '-158.0000', '6.7859', '6.7859', '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 (91957, '2022-06-15', 1602, 86830, 5490, NULL, '159.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-159.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91958, '2022-06-15', 1331, 86831, 5490, NULL, '1.0000', '4.2000', '4.2000', '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 (91959, '2022-06-15', 2777, 86832, 5490, NULL, '1.0000', '2.5000', '2.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 (91960, '2022-06-15', 1602, 86833, 5490, 5897, '-158.0000', '6.7859', '6.7859', '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 (91961, '2022-06-15', 1602, 86833, 5490, NULL, '159.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-159.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91962, '2022-06-15', 1335, 86834, 5490, 12031, '-35.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 (91963, '2022-06-15', 1335, 86834, 5490, NULL, '37.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91964, '2022-06-15', 1871, 86835, 5490, 8223, '-247.0000', '24.5246', '24.5246', '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 (91965, '2022-06-15', 1871, 86835, 5490, NULL, '267.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-267.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91966, '2022-06-15', 1666, 86836, 5490, 3236, '-38.0000', '2.7100', '2.7100', '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 (91967, '2022-06-15', 1666, 86836, 5490, NULL, '39.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91968, '2022-06-15', 2366, 86837, 5490, 3833, '-64.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 (91969, '2022-06-15', 2366, 86837, 5490, NULL, '66.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91970, '2022-06-15', 2916, 86838, 5490, 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 (91971, '2022-06-15', 1604, 86839, 5490, NULL, '1.0000', '34.1212', '34.1212', '50.5000', '50.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91972, '2022-06-15', 1674, 86840, 5491, NULL, '2.0000', '3.6000', '3.6000', '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 (91973, '2022-06-15', 2506, 86841, 5491, 16244, '-23.0000', '3.4900', '3.4900', '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 (91974, '2022-06-15', 2506, 86841, 5491, NULL, '24.0000', '3.4900', '3.4900', '6.5000', '6.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 (91975, '2022-06-15', 1935, 86842, 5491, 5586, '-130.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 (91976, '2022-06-15', 1935, 86842, 5491, NULL, '133.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-133.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91977, '2022-06-15', 1937, 86843, 5491, 5588, '-2.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 (91978, '2022-06-15', 1937, 86843, 5491, NULL, '3.0000', '90.0000', '90.0000', '7.0000', '7.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 (91979, '2022-06-15', 1736, 86844, 5491, 7382, '-10.0000', '-6.2282', '-6.2282', '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 (91980, '2022-06-15', 1736, 86844, 5491, NULL, '12.0000', '-6.2282', '-6.2282', '50.0000', '50.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 (91981, '2022-06-15', 7741, 86845, 5491, NULL, '1.0000', '1.2000', '1.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 (91982, '2022-06-15', 1620, 86846, 5491, 8955, '-65.0000', '408.8259', '408.8259', '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 (91983, '2022-06-15', 1620, 86846, 5491, NULL, '68.0000', '408.8259', '408.8259', '3.0000', '3.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91984, '2022-06-15', 2169, 86847, 5491, 10737, '-160.0000', '3.8397', '3.8397', '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 (91985, '2022-06-15', 2169, 86847, 5491, NULL, '161.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-161.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91986, '2022-06-15', 1432, 86848, 5491, NULL, '1.0000', '8.1574', '8.1574', '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 (91987, '2022-06-15', 2169, 86849, 5491, 10737, '-160.0000', '3.8397', '3.8397', '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 (91988, '2022-06-15', 2169, 86849, 5491, NULL, '161.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-161.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91989, '2022-06-15', 1602, 86850, 5491, 5897, '-160.0000', '6.7859', '6.7859', '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 (91990, '2022-06-15', 1602, 86850, 5491, NULL, '161.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-161.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91991, '2022-06-15', 2096, 86851, 5491, NULL, '1.0000', '1.5500', '1.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 (91992, '2022-06-15', 8706, 86852, 5491, NULL, '1.0000', '3.8000', '3.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 (91993, '2022-06-15', 1816, 86853, 5491, 22478, '-6.0000', '18.2300', '18.2300', '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 (91994, '2022-06-15', 1816, 86853, 5491, NULL, '7.0000', '18.2300', '18.2300', '29.0000', '29.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 (91995, '2022-06-15', 1840, 86854, 5491, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (91996, '2022-06-15', 1841, 86855, 5491, NULL, '4.0000', '142.5780', '142.5780', '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 (91997, '2022-06-15', 1702, 86856, 5491, 4499, '-11.0000', '14.9700', '14.9700', '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 (91998, '2022-06-15', 1702, 86856, 5491, NULL, '12.0000', '14.9700', '14.9700', '25.0000', '25.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 (91999, '2022-06-15', 2969, 86857, 5491, NULL, '3.0000', '5.0000', '5.0000', '7.0000', '7.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 (92000, '2022-06-15', 1689, 86858, 5491, 4897, '-15.0000', '60.7198', '60.7198', '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 (92001, '2022-06-15', 1689, 86858, 5491, NULL, '16.0000', '60.7198', '60.7198', '21.0000', '21.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 (92002, '2022-06-15', 9529, 86859, 5491, NULL, '1.0000', '9.2200', '9.2200', '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 (92003, '2022-06-15', 9734, 86860, 5491, NULL, '2.0000', '0.3200', '0.3200', '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 (92004, '2022-06-15', 2651, 86861, 5491, NULL, '1.0000', '10.7500', '10.7500', '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 (92005, '2022-06-15', 1425, 86862, 5491, NULL, '1.0000', '6.4405', '6.4405', '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 (92006, '2022-06-15', 1691, 86863, 5491, NULL, '1.0000', '10.3300', '10.3300', '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 (92007, '2022-06-15', 2580, 86864, 5492, 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 (92008, '2022-06-15', 7459, 86865, 5492, NULL, '1.0000', '2.3500', '2.3500', '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 (92009, '2022-06-15', 7641, 86866, 5492, NULL, '1.0000', '1.9000', '1.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 (92010, '2022-06-15', 2995, 86867, 5492, NULL, '3.0000', '39.7000', '39.7000', '18.0000', '18.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 (92011, '2022-06-15', 7674, 86868, 5492, NULL, '1.0000', '1.3000', '1.3000', '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 (92012, '2022-06-15', 7703, 86869, 5492, NULL, '2.0000', '22.9900', '22.9900', '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 (92013, '2022-06-15', 9274, 86870, 5492, NULL, '1.0000', '3.6000', '3.6000', '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 (92014, '2022-06-15', 7444, 86871, 5492, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92015, '2022-06-15', 9734, 86872, 5492, NULL, '3.0000', '0.3200', '0.3200', '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 (92016, '2022-06-15', 7411, 86873, 5492, NULL, '1.0000', '1.3500', '1.3500', '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 (92017, '2022-06-15', 2297, 86874, 5492, 2956, '-8.0000', '6.6000', '6.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 (92018, '2022-06-15', 2297, 86874, 5492, NULL, '9.0000', '6.6000', '6.6000', '12.0000', '12.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 (92019, '2022-06-15', 7661, 86875, 5492, NULL, '1.0000', '7.2000', '7.2000', '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 (92020, '2022-06-15', 9578, 86876, 5492, NULL, '1.0000', '8.0000', '8.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 (92021, '2022-06-15', 1935, 86877, 5492, 5586, '-133.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 (92022, '2022-06-15', 1935, 86877, 5492, NULL, '135.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-135.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92023, '2022-06-15', 7482, 86878, 5492, NULL, '1.0000', '3.0500', '3.0500', '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 (92024, '2022-06-15', 7562, 86879, 5492, NULL, '1.0000', '5.5300', '5.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 (92025, '2022-06-15', 1339, 86880, 5492, 13004, '-17.0000', '1.6012', '1.6012', '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 (92026, '2022-06-15', 1339, 86880, 5492, NULL, '18.0000', '1.6012', '1.6012', '4.0000', '4.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 (92027, '2022-06-15', 7730, 86881, 5492, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (92028, '2022-06-15', 7460, 86882, 5492, 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 (92029, '2022-06-15', 2315, 86883, 5492, 2735, '-468.0000', '0.3300', '0.3300', '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 (92030, '2022-06-15', 2315, 86883, 5492, NULL, '469.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-469.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92031, '2022-06-15', 8918, 86884, 5492, NULL, '1.0000', '1.0400', '1.0400', '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 (92032, '2022-06-15', 7556, 86885, 5492, 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 (92033, '2022-06-15', 2618, 86886, 5492, 9836, '-25.0000', '4.1000', '4.1000', '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 (92034, '2022-06-15', 2618, 86886, 5492, NULL, '27.0000', '4.1000', '4.1000', '6.0000', '6.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 (92035, '2022-06-15', 9691, 86887, 5492, NULL, '1.0000', '57.5200', '57.5200', '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 (92036, '2022-06-15', 7518, 86888, 5492, NULL, '1.0000', '7.8200', '7.8200', '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 (92037, '2022-06-15', 1622, 86889, 5492, 8739, '-6.0000', '44.8492', '44.8492', '36.5000', '36.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 (92038, '2022-06-15', 1622, 86889, 5492, NULL, '8.0000', '44.8492', '44.8492', '36.5000', '36.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 (92039, '2022-06-15', 7745, 86890, 5492, NULL, '1.0000', '6.7000', '6.7000', '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 (92040, '2022-06-15', 7653, 86891, 5492, 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 (92041, '2022-06-15', 2893, 86892, 5493, 18242, '-13.0000', '6.0000', '6.0000', '9.5000', '9.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 (92042, '2022-06-15', 2893, 86892, 5493, NULL, '14.0000', '6.0000', '6.0000', '9.5000', '9.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 (92043, '2022-06-15', 9734, 86893, 5493, NULL, '2.0000', '0.3200', '0.3200', '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 (92044, '2022-06-15', 2893, 86894, 5493, 18242, '-13.0000', '6.0000', '6.0000', '9.5000', '9.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 (92045, '2022-06-15', 2893, 86894, 5493, NULL, '14.0000', '6.0000', '6.0000', '9.5000', '9.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 (92046, '2022-06-15', 1689, 86895, 5493, 4897, '-16.0000', '60.7198', '60.7198', '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 (92047, '2022-06-15', 1689, 86895, 5493, NULL, '17.0000', '60.7198', '60.7198', '21.0000', '21.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 (92048, '2022-06-15', 1519, 86896, 5493, 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 (92049, '2022-06-15', 1349, 86897, 5493, 10162, '-5.0000', '20.8300', '20.8300', '61.0000', '61.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92050, '2022-06-15', 1349, 86897, 5493, NULL, '6.0000', '20.8300', '20.8300', '61.0000', '61.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 (92051, '2022-06-15', 7608, 86898, 5493, NULL, '1.0000', '6.9800', '6.9800', '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 (92052, '2022-06-15', 1501, 86899, 5493, NULL, '1.0000', '2.0500', '2.0500', '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 (92053, '2022-06-15', 2109, 86900, 5493, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '68.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 (92054, '2022-06-15', 2936, 86901, 5493, 19978, '-2.0000', '6.0400', '6.0400', '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 (92055, '2022-06-15', 2936, 86901, 5493, NULL, '3.0000', '6.0400', '6.0400', '8.5000', '8.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 (92056, '2022-06-15', 1608, 86902, 5493, 8222, '-15.0000', '3.3500', '3.3500', '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 (92057, '2022-06-15', 1608, 86902, 5493, NULL, '16.0000', '3.3500', '3.3500', '6.0000', '6.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 (92058, '2022-06-15', 9747, 86903, 5493, NULL, '4.0000', '0.6500', '0.6500', '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 (92059, '2022-06-15', 2169, 86904, 5493, 10737, '-162.0000', '3.8397', '3.8397', '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 (92060, '2022-06-15', 2169, 86904, 5493, NULL, '163.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-163.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92061, '2022-06-15', 8677, 86905, 5493, NULL, '2.0000', '1.2800', '1.2800', '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 (92062, '2022-06-15', 1602, 86906, 5493, 5897, '-161.0000', '6.7859', '6.7859', '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 (92063, '2022-06-15', 1602, 86906, 5493, NULL, '162.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-162.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92064, '2022-06-15', 3011, 86907, 5493, NULL, '10.0000', '3.7800', '3.7800', '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 (92065, '2022-06-15', 1637, 86908, 5493, 3210, '-7.0000', '10.2000', '10.2000', '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 (92066, '2022-06-15', 1637, 86908, 5493, NULL, '8.0000', '10.2000', '10.2000', '20.0000', '20.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 (92067, '2022-06-15', 1871, 86909, 5493, 8223, '-267.0000', '24.5246', '24.5246', '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 (92068, '2022-06-15', 1871, 86909, 5493, NULL, '277.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-277.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92069, '2022-06-15', 1833, 86910, 5493, NULL, '1.0000', '23.5300', '23.5300', '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 (92070, '2022-06-15', 1840, 86911, 5493, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (92071, '2022-06-15', 1841, 86912, 5493, NULL, '1.0000', '142.5780', '142.5780', '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 (92072, '2022-06-15', 8208, 86913, 5493, NULL, '2.0000', '33.0000', '33.0000', '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 (92073, '2022-06-15', 1612, 86914, 5493, 8732, '-10.0000', '1.6000', '1.6000', '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 (92074, '2022-06-15', 1612, 86914, 5493, NULL, '11.0000', '1.6000', '1.6000', '3.0000', '3.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 (92075, '2022-06-15', 2858, 86915, 5493, 17772, '-89.0000', '1.0000', '1.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 (92076, '2022-06-15', 2858, 86915, 5493, NULL, '90.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92077, '2022-06-15', 2089, 86916, 5493, 10811, '-7.0000', '6.6500', '6.6500', '9.5000', '9.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 (92078, '2022-06-15', 2089, 86916, 5493, NULL, '8.0000', '6.6500', '6.6500', '9.5000', '9.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 (92079, '2022-06-15', 9602, 86917, 5493, NULL, '1.0000', '1.0500', '1.0500', '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 (92080, '2022-06-15', 2285, 86918, 5493, 2945, '-47.0000', '35.8000', '35.8000', '65.5000', '65.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 (92081, '2022-06-15', 2285, 86918, 5493, NULL, '48.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92082, '2022-06-15', 2384, 86919, 5493, 4087, '-38.0000', '0.4000', '0.4000', '0.7000', '0.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 (92083, '2022-06-15', 2384, 86919, 5493, NULL, '43.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (92084, '2022-06-15', 9748, 86920, 5493, NULL, '1.0000', '2.5300', '2.5300', '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 (92085, '2022-06-15', 2315, 86921, 5493, 2735, '-469.0000', '0.3300', '0.3300', '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 (92086, '2022-06-15', 2315, 86921, 5493, NULL, '470.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-470.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92087, '2022-06-15', 1460, 86922, 5493, NULL, '1.0000', '90.0000', '90.0000', '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 (92088, '2022-06-15', 2592, 86923, 5493, 10812, '-24.0000', '7.9670', '7.9670', '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 (92089, '2022-06-15', 2592, 86923, 5493, NULL, '26.0000', '7.9670', '7.9670', '18.0000', '18.0000', '-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 (92090, '2022-06-15', 1812, 86924, 5493, 8224, '-106.0000', '7.8900', '7.8900', '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 (92091, '2022-06-15', 1812, 86924, 5493, NULL, '107.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-107.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92092, '2022-06-15', 2135, 86925, 5493, 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 (92093, '2022-06-15', 2858, 86926, 5493, 17772, '-89.0000', '1.0000', '1.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 (92094, '2022-06-15', 2858, 86926, 5493, NULL, '91.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-91.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92095, '2022-06-15', 1554, 86927, 5493, 1625, '-4.0000', '3.1600', '3.1600', '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 (92096, '2022-06-15', 1554, 86927, 5493, NULL, '5.0000', '3.1600', '3.1600', '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 (92097, '2022-06-15', 9723, 86928, 5493, 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 (92098, '2022-06-15', 9742, 86929, 5493, 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 (92099, '2022-06-15', 1736, 86930, 5493, 7382, '-12.0000', '-6.2282', '-6.2282', '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 (92100, '2022-06-15', 1736, 86930, 5493, NULL, '14.0000', '-6.2282', '-6.2282', '50.0000', '50.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 (92101, '2022-06-15', 9827, 86931, 5493, NULL, '2.0000', '13.5000', '13.5000', '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 (92102, '2022-06-15', 1519, 86932, 5493, 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 (92103, '2022-06-15', 1637, 86933, 5493, 3210, '-7.0000', '10.2000', '10.2000', '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 (92104, '2022-06-15', 1637, 86933, 5493, NULL, '8.0000', '10.2000', '10.2000', '20.0000', '20.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 (92105, '2022-06-15', 1695, 86934, 5493, 12925, '-12.0000', '15.5000', '15.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 (92106, '2022-06-15', 1695, 86934, 5493, NULL, '13.0000', '15.5000', '15.5000', '26.0000', '26.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 (92107, '2022-06-15', 2916, 86935, 5493, 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 (92108, '2022-06-15', 2862, 86936, 5493, 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 (92109, '2022-06-15', 2916, 86937, 5493, 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 (92110, '2022-06-15', 1690, 86938, 5493, NULL, '1.0000', '7.1466', '7.1466', '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 (92111, '2022-06-15', 2293, 86939, 5493, 22262, '3.0000', '1.4400', '1.4400', '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 (92112, '2022-06-15', 7886, 86940, 5493, 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 (92113, '2022-06-15', 9840, 86941, 5493, 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 (92114, '2022-06-15', 2315, 86942, 5494, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92115, '2022-06-15', 1498, 86943, 5494, 52352, '1.0000', '0.4476', '0.4476', '0.6000', '0.6000', '32.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92116, '2022-06-15', 2169, 86944, 5494, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92117, '2022-06-15', 2948, 86945, 5494, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92118, '2022-06-15', 1845, 86946, 5494, 55914, '1.0000', '53.9580', '53.9580', '30.5000', '30.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92119, '2022-06-15', 1841, 86947, 5494, 55655, '1.0000', '0.7630', '0.7630', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92120, '2022-06-15', 2379, 86948, 5494, NULL, '1.0000', '-3.0170', '-3.0170', '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 (92121, '2022-06-15', 2916, 86949, 5494, NULL, '1.0000', '777.2552', '777.2552', '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 (92122, '2022-06-15', 1905, 86950, 5494, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92123, '2022-06-15', 1590, 86951, 5494, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92124, '2022-06-15', 2416, 86952, 5494, 57468, '1.0000', '1.3476', '1.3476', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92125, '2022-06-15', 1668, 86953, 5494, 42095, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92126, '2022-06-15', 1785, 86954, 5494, 55946, '2.0000', '16.7767', '16.7767', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92127, '2022-06-15', 7483, 86955, 5494, 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 (92128, '2022-06-15', 8878, 86956, 5494, NULL, '1.0000', '3.8136', '3.8136', '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 (92129, '2022-06-15', 2384, 86957, 5494, NULL, '2.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92130, '2022-06-15', 2416, 86958, 5494, 57468, '1.0000', '1.3476', '1.3476', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92131, '2022-06-15', 9729, 86959, 5494, 47080, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92132, '2022-06-15', 9794, 86960, 5494, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92133, '2022-06-15', 2916, 86961, 5494, NULL, '1.0000', '777.2552', '777.2552', '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 (92134, '2022-06-15', 2315, 86962, 5494, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92135, '2022-06-15', 2416, 86963, 5494, 57468, '1.0000', '1.3476', '1.3476', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92136, '2022-06-15', 1839, 86964, 5494, NULL, '1.0000', '17468.6132', '17468.6132', '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 (92137, '2022-06-15', 1665, 86965, 5494, 57073, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92138, '2022-06-15', 2643, 86966, 5494, 57469, '1.0000', '0.9962', '0.9962', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92139, '2022-06-15', 1425, 86967, 5494, NULL, '1.0000', '19.3384', '19.3384', '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 (92140, '2022-06-15', 9915, 86968, 5495, 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 (92141, '2022-06-15', 9821, 86969, 5495, NULL, '1.0000', '1.4500', '1.4500', '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 (92142, '2022-06-15', 1425, 86970, 5495, NULL, '1.0000', '6.4405', '6.4405', '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 (92143, '2022-06-15', 1411, 86971, 5495, NULL, '2.0000', '25.9000', '25.9000', '35.0000', '35.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 (92144, '2022-06-15', 9783, 86972, 5495, NULL, '1.0000', '17.6000', '17.6000', '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 (92145, '2022-06-15', 8775, 86973, 5495, NULL, '1.0000', '2.6000', '2.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 (92146, '2022-06-15', 2260, 86974, 5495, 2796, '-19.0000', '4.2000', '4.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 (92147, '2022-06-15', 2260, 86974, 5495, NULL, '21.0000', '4.2000', '4.2000', '7.0000', '7.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92148, '2022-06-15', 1665, 86975, 5495, 3235, '-123.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 (92149, '2022-06-15', 1665, 86975, 5495, NULL, '126.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92150, '2022-06-15', 1867, 86976, 5495, NULL, '1.0000', '1.0500', '1.0500', '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 (92151, '2022-06-15', 9628, 86977, 5495, NULL, '1.0000', '46.1200', '46.1200', '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 (92152, '2022-06-15', 1650, 86978, 5495, 3221, '-16.0000', '14.8000', '14.8000', '20.5000', '20.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 (92153, '2022-06-15', 1650, 86978, 5495, NULL, '17.0000', '14.8000', '14.8000', '20.5000', '20.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 (92154, '2022-06-15', 1501, 86979, 5495, NULL, '1.0000', '2.0500', '2.0500', '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 (92155, '2022-06-15', 9794, 86980, 5495, NULL, '1.0000', '1.0800', '1.0800', '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 (92156, '2022-06-15', 2681, 86981, 5495, 12164, '-26.0000', '12.5000', '12.5000', '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 (92157, '2022-06-15', 2681, 86981, 5495, NULL, '28.0000', '12.5000', '12.5000', '24.5000', '24.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 (92158, '2022-06-15', 1519, 86982, 5495, 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 (92159, '2022-06-15', 2132, 86983, 5495, 4280, '-5.0000', '21.0000', '21.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 (92160, '2022-06-15', 2132, 86983, 5495, NULL, '6.0000', '21.0000', '21.0000', '32.0000', '32.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 (92161, '2022-06-15', 1409, 86984, 5495, 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 (92162, '2022-06-15', 2254, 86985, 5495, 2791, '-2.0000', '17.9400', '17.9400', '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 (92163, '2022-06-15', 2254, 86985, 5495, NULL, '3.0000', '17.9400', '17.9400', '32.0000', '32.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 (92164, '2022-06-15', 9794, 86986, 5495, NULL, '1.0000', '1.0800', '1.0800', '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 (92165, '2022-06-15', 2693, 86987, 5495, 12285, '-7.0000', '25.3656', '25.3656', '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 (92166, '2022-06-15', 2693, 86987, 5495, NULL, '8.0000', '25.3656', '25.3656', '32.5000', '32.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 (92167, '2022-06-15', 2020, 86988, 5495, 10164, '-26.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 (92168, '2022-06-15', 2020, 86988, 5495, NULL, '27.0000', '7.5000', '7.5000', '10.0000', '10.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 (92169, '2022-06-15', 1435, 86989, 5496, NULL, '1.0000', '22.5000', '22.5000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92170, '2022-06-15', 9794, 86990, 5496, NULL, '2.0000', '1.0800', '1.0800', '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 (92171, '2022-06-15', 9546, 86991, 5496, 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 (92172, '2022-06-15', 1859, 86992, 5496, 7388, '-2.0000', '22.6760', '22.6760', '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 (92173, '2022-06-15', 1859, 86992, 5496, NULL, '3.0000', '22.6760', '22.6760', '32.0000', '32.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 (92174, '2022-06-15', 1690, 86993, 5496, NULL, '1.0000', '7.1466', '7.1466', '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 (92175, '2022-06-15', 1499, 86994, 5496, 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 (92176, '2022-06-15', 1695, 86995, 5496, 12925, '-13.0000', '15.5000', '15.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 (92177, '2022-06-15', 1695, 86995, 5496, NULL, '14.0000', '15.5000', '15.5000', '26.0000', '26.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 (92178, '2022-06-15', 8745, 86996, 5496, NULL, '1.0000', '8.0000', '8.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 (92179, '2022-06-15', 2821, 86997, 5496, 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 (92180, '2022-06-15', 2384, 86998, 5496, 4087, '-43.0000', '0.4000', '0.4000', '0.7000', '0.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 (92181, '2022-06-15', 2384, 86998, 5496, NULL, '45.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (92182, '2022-06-15', 1787, 86999, 5496, 4905, '-24.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 (92183, '2022-06-15', 1787, 86999, 5496, NULL, '25.0000', '0.8100', '0.8100', '2.0000', '2.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 (92184, '2022-06-15', 1410, 87000, 5496, NULL, '2.0000', '2.2000', '2.2000', '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 (92185, '2022-06-15', 2315, 87001, 5496, 2735, '-470.0000', '0.3300', '0.3300', '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 (92186, '2022-06-15', 2315, 87001, 5496, NULL, '471.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-471.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92187, '2022-06-15', 7886, 87002, 5496, 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 (92188, '2022-06-15', 2379, 87003, 5496, 4032, '-66.0000', '1.5900', '1.5900', '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 (92189, '2022-06-15', 2379, 87003, 5496, NULL, '67.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92190, '2022-06-15', 2327, 87004, 5496, 5083, '-40.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 (92191, '2022-06-15', 2327, 87004, 5496, NULL, '42.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92192, '2022-06-15', 1863, 87005, 5496, 10808, '-151.0000', '0.4136', '0.4136', '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 (92193, '2022-06-15', 1863, 87005, 5496, NULL, '152.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-152.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92194, '2022-06-15', 1787, 87006, 5496, 4905, '-24.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 (92195, '2022-06-15', 1787, 87006, 5496, NULL, '25.0000', '0.8100', '0.8100', '2.0000', '2.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 (92196, '2022-06-15', 2302, 87007, 5496, 2963, '-54.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 (92197, '2022-06-15', 2302, 87007, 5496, NULL, '55.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-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 (92198, '2022-06-15', 2916, 87008, 5496, 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 (92199, '2022-06-15', 9738, 87009, 5496, NULL, '1.0000', '5.9000', '5.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 (92200, '2022-06-15', 1342, 87010, 5496, 11264, '-21.0000', '6.8074', '6.8074', '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 (92201, '2022-06-15', 1342, 87010, 5496, NULL, '22.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92202, '2022-06-15', 1602, 87011, 5496, 5897, '-162.0000', '6.7859', '6.7859', '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 (92203, '2022-06-15', 1602, 87011, 5496, NULL, '163.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-163.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92204, '2022-06-15', 1425, 87012, 5496, NULL, '1.0000', '6.4405', '6.4405', '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 (92205, '2022-06-15', 9794, 87013, 5496, NULL, '2.0000', '1.0800', '1.0800', '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 (92206, '2022-06-15', 1667, 87014, 5496, 9745, '-60.0000', '5.9400', '5.9400', '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 (92207, '2022-06-15', 1667, 87014, 5496, NULL, '61.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92208, '2022-06-15', 1531, 87015, 5496, 22267, '3.0000', '0.9600', '0.9600', '2.0000', '2.0000', '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 (92209, '2022-06-15', 2411, 87016, 5496, 4503, '-5.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 (92210, '2022-06-15', 2411, 87016, 5496, NULL, '6.0000', '1.5000', '1.5000', '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 (92211, '2022-06-15', 1602, 87017, 5496, 5897, '-162.0000', '6.7859', '6.7859', '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 (92212, '2022-06-15', 1602, 87017, 5496, NULL, '163.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-163.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92213, '2022-06-15', 2237, 87018, 5496, 2781, '-69.0000', '1.0600', '1.0600', '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 (92214, '2022-06-15', 2237, 87018, 5496, NULL, '70.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92215, '2022-06-15', 2285, 87019, 5497, 2945, '-48.0000', '35.8000', '35.8000', '65.5000', '65.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 (92216, '2022-06-15', 2285, 87019, 5497, NULL, '49.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92217, '2022-06-15', 2916, 87020, 5497, 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 (92218, '2022-06-15', 1529, 87021, 5497, NULL, '1.0000', '3.5500', '3.5500', '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 (92219, '2022-06-15', 2332, 87022, 5497, 3835, '-17.0000', '5.8900', '5.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 (92220, '2022-06-15', 2332, 87022, 5497, NULL, '19.0000', '5.8900', '5.8900', '10.5000', '10.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 (92221, '2022-06-15', 1326, 87023, 5497, 20662, '1.0000', '2.7762', '2.7762', '6.0000', '6.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 (92222, '2022-06-15', 1665, 87024, 5497, 3235, '-126.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 (92223, '2022-06-15', 1665, 87024, 5497, NULL, '127.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92224, '2022-06-15', 2237, 87025, 5497, 2781, '-70.0000', '1.0600', '1.0600', '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 (92225, '2022-06-15', 2237, 87025, 5497, NULL, '71.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92226, '2022-06-15', 2643, 87026, 5497, NULL, '1.0000', '0.8700', '0.8700', '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 (92227, '2022-06-15', 9940, 87027, 5497, 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 (92228, '2022-06-15', 9744, 87028, 5497, NULL, '1.0000', '8.6000', '8.6000', '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 (92229, '2022-06-15', 9512, 87029, 5497, 33797, '1.0000', '1.3100', '1.3100', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92230, '2022-06-15', 9734, 87030, 5497, NULL, '1.0000', '0.3200', '0.3200', '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 (92231, '2022-06-15', 9648, 87031, 5497, NULL, '1.0000', '15.0000', '15.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92232, '2022-06-15', 1665, 87032, 5497, 3235, '-126.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 (92233, '2022-06-15', 1665, 87032, 5497, NULL, '128.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92234, '2022-06-15', 7741, 87033, 5497, NULL, '1.0000', '1.2000', '1.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 (92235, '2022-06-15', 7781, 87034, 5498, NULL, '3.0000', '4.2500', '4.2500', '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 (92236, '2022-06-15', 2315, 87035, 5498, 2735, '-471.0000', '0.3300', '0.3300', '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 (92237, '2022-06-15', 2315, 87035, 5498, NULL, '472.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-472.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92238, '2022-06-15', 9092, 87036, 5498, NULL, '2.0000', '5.2900', '5.2900', '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 (92239, '2022-06-15', 1785, 87037, 5499, 55946, '1.0000', '16.7767', '16.7767', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92240, '2022-06-15', 2643, 87038, 5499, 57469, '1.0000', '0.9962', '0.9962', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92241, '2022-06-15', 1602, 87039, 5500, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92242, '2022-06-15', 1537, 87040, 5500, NULL, '1.0000', '40.2700', '40.2700', '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 (92243, '2022-06-15', 2948, 87041, 5500, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92244, '2022-06-15', 9469, 87042, 5500, 57103, '2.0000', '4.3167', '4.3167', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92245, '2022-06-15', 1340, 87043, 5500, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92246, '2022-06-15', 8406, 87044, 5500, 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 (92247, '2022-06-15', 1910, 87045, 5500, 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 (92248, '2022-06-15', 2916, 87046, 5500, NULL, '1.0000', '777.2552', '777.2552', '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 (92249, '2022-06-15', 1529, 87047, 5500, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92250, '2022-06-15', 9794, 87048, 5500, 54929, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92251, '2022-06-15', 8017, 87049, 5500, 57065, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92252, '2022-06-15', 1519, 87050, 5500, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92253, '2022-06-15', 1771, 87051, 5500, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92254, '2022-06-15', 1340, 87052, 5500, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92255, '2022-06-15', 2738, 87053, 5500, 56428, '2.0000', '9.2000', '9.2000', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92256, '2022-06-15', 8689, 87054, 5500, 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 (92257, '2022-06-15', 9941, 87055, 5500, 57096, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92258, '2022-06-15', 7376, 87056, 5500, NULL, '2.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92259, '2022-06-15', 7316, 87057, 5500, 54885, '3.0000', '0.9020', '0.9020', '1.3000', '1.3000', '38.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92260, '2022-06-15', 1912, 87058, 5501, 54917, '2.0000', '0.6209', '0.6209', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92261, '2022-06-15', 2315, 87059, 5501, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92262, '2022-06-15', 9794, 87060, 5501, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92263, '2022-06-15', 9482, 87061, 5501, NULL, '2.0000', '0.5000', '0.5000', '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 (92264, '2022-06-15', 1812, 87062, 5501, 54944, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92265, '2022-06-15', 2986, 87063, 5501, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92266, '2022-06-15', 2088, 87064, 5501, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92267, '2022-06-15', 9856, 87065, 5501, 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 (92268, '2022-06-15', 1625, 87066, 5501, 19332, '1.0000', '90.0000', '90.0000', '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 (92269, '2022-06-15', 1625, 87066, 5501, NULL, '1.0000', '90.0000', '90.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 (92270, '2022-06-15', 9830, 87067, 5501, 57472, '2.0000', '1.9960', '1.9960', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92271, '2022-06-15', 1779, 87068, 5502, 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 (92272, '2022-06-15', 2275, 87069, 5502, 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 (92273, '2022-06-15', 1796, 87070, 5502, 55906, '1.0000', '2.8333', '2.8333', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92274, '2022-06-15', 1946, 87071, 5502, NULL, '1.0000', '-4.7391', '-4.7391', '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 (92275, '2022-06-15', 9841, 87072, 5502, 55549, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92276, '2022-06-15', 1935, 87073, 5502, NULL, '1.0000', '0.7671', '0.7671', '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 (92277, '2022-06-15', 7674, 87074, 5502, NULL, '1.0000', '1.3000', '1.3000', '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 (92278, '2022-06-15', 8740, 87075, 5502, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92279, '2022-06-15', 2061, 87076, 5503, NULL, '1.0000', '10.3123', '10.3123', '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 (92280, '2022-06-15', 2661, 87077, 5503, NULL, '5.0000', '9.0000', '9.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 (92281, '2022-06-15', 2414, 87078, 5503, NULL, '2.0000', '3.9438', '3.9438', '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 (92282, '2022-06-15', 2921, 87079, 5503, NULL, '1.0000', '4.9000', '4.9000', '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 (92283, '2022-06-15', 8177, 87080, 5503, NULL, '1.0000', '10.3000', '10.3000', '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 (92284, '2022-06-15', 1873, 87081, 5503, 54894, '1.0000', '15.6100', '15.6100', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92285, '2022-06-15', 1307, 87082, 5503, NULL, '1.0000', '-59.9897', '-59.9897', '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 (92286, '2022-06-15', 1510, 87083, 5504, 53773, '1.0000', '8.5250', '8.5250', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92287, '2022-06-15', 9092, 87084, 5504, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92288, '2022-06-15', 9935, 87085, 5504, 56708, '1.0000', '12.4200', '12.4200', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92289, '2022-06-15', 7886, 87086, 5504, 56646, '1.0000', '4.6680', '4.6680', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92290, '2022-06-15', 2753, 87087, 5504, 45602, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92291, '2022-06-15', 9167, 87088, 5504, 56559, '1.0000', '-642.1659', '-642.1659', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92292, '2022-06-15', 2061, 87089, 5504, 57399, '1.0000', '12.4947', '12.4947', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92293, '2022-06-15', 9736, 87090, 5504, 51795, '1.0000', '3.9253', '3.9253', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92294, '2022-06-15', 8308, 87091, 5504, NULL, '1.0000', '60.7672', '60.7672', '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 (92295, '2022-06-15', 8135, 87092, 5504, 57396, '1.0000', '5.9090', '5.9090', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92296, '2022-06-15', 7558, 87093, 5504, NULL, '3.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-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 (92297, '2022-06-15', 7803, 87094, 5504, NULL, '1.0000', '1.8200', '1.8200', '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 (92298, '2022-06-15', 8517, 87095, 5504, NULL, '1.0000', '28.0323', '28.0323', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92299, '2022-06-15', 9863, 87096, 5504, 56014, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92300, '2022-06-15', 8449, 87097, 5504, 51786, '1.0000', '11.9000', '11.9000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92301, '2022-06-15', 7446, 87098, 5504, 56607, '1.0000', '1.5241', '1.5241', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92302, '2022-06-15', 9274, 87099, 5504, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92303, '2022-06-15', 7334, 87100, 5504, 57417, '2.0000', '9.1591', '9.1591', '13.5000', '13.5000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92304, '2022-06-15', 7657, 87101, 5504, NULL, '1.0000', '32.0003', '32.0003', '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 (92305, '2022-06-15', 8308, 87102, 5504, NULL, '1.0000', '60.7672', '60.7672', '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 (92306, '2022-06-15', 7411, 87103, 5504, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92307, '2022-06-15', 8061, 87104, 5504, 57376, '1.0000', '20.5412', '20.5412', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92308, '2022-06-15', 8017, 87105, 5504, 51835, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92309, '2022-06-15', 1837, 87106, 5504, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92310, '2022-06-15', 8539, 87107, 5504, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92311, '2022-06-15', 8163, 87108, 5504, 57394, '1.0000', '26.0750', '26.0750', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92312, '2022-06-15', 8000, 87109, 5504, NULL, '1.0000', '-1901.5269', '-1901.5269', '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 (92313, '2022-06-15', 7641, 87110, 5504, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92314, '2022-06-15', 1856, 87111, 5504, 57447, '1.0000', '0.0091', '0.0091', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92315, '2022-06-15', 7526, 87112, 5504, NULL, '1.0000', '27.7600', '27.7600', '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 (92316, '2022-06-15', 8497, 87113, 5504, NULL, '1.0000', '58.7666', '58.7666', '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 (92317, '2022-06-15', 9204, 87114, 5504, 56564, '2.0000', '5.9356', '5.9356', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92318, '2022-06-15', 9729, 87115, 5504, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92319, '2022-06-15', 9747, 87116, 5504, 56183, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92320, '2022-06-15', 2290, 87117, 5504, NULL, '1.0000', '9.7600', '9.7600', '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 (92321, '2022-06-15', 7672, 87118, 5504, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92322, '2022-06-15', 8972, 87119, 5504, NULL, '2.0000', '4.5000', '4.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 (92323, '2022-06-15', 9503, 87120, 5504, 56528, '1.0000', '1.2700', '1.2700', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92324, '2022-06-15', 7753, 87121, 5504, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92325, '2022-06-15', 9390, 87122, 5504, NULL, '1.0000', '25.0000', '25.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 (92326, '2022-06-15', 2287, 87123, 5504, NULL, '4.0000', '3.1699', '3.1699', '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 (92327, '2022-06-15', 9024, 87124, 5504, 57463, '1.0000', '6.1800', '6.1800', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92328, '2022-06-15', 7704, 87125, 5504, NULL, '1.0000', '-1.5625', '-1.5625', '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 (92329, '2022-06-15', 7411, 87126, 5504, 57436, '7.0000', '1.4000', '1.4000', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92330, '2022-06-15', 7635, 87127, 5504, 57406, '1.0000', '16.3711', '16.3711', '24.5000', '24.5000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92331, '2022-06-15', 1935, 87128, 5504, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '123.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92332, '2022-06-15', 1501, 87129, 5504, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92333, '2022-06-15', 7819, 87130, 5504, 56704, '1.0000', '12.6712', '12.6712', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92334, '2022-06-15', 2255, 87131, 5504, NULL, '1.0000', '17.2026', '17.2026', '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 (92335, '2022-06-15', 7438, 87132, 5504, 50288, '1.0000', '25.7270', '25.7270', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92336, '2022-06-15', 8718, 87133, 5504, 56572, '1.0000', '16.4800', '16.4800', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92337, '2022-06-15', 9695, 87134, 5504, 57373, '1.0000', '5.4226', '5.4226', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92338, '2022-06-15', 7674, 87135, 5504, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92339, '2022-06-15', 9734, 87136, 5504, 54140, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92340, '2022-06-15', 7514, 87137, 5504, NULL, '1.0000', '17929.5233', '17929.5233', '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 (92341, '2022-06-15', 7368, 87138, 5504, 57414, '1.0000', '7.4347', '7.4347', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92342, '2022-06-15', 9809, 87139, 5504, 57163, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92343, '2022-06-15', 9791, 87140, 5505, 51704, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92344, '2022-06-15', 2643, 87141, 5505, 57469, '1.0000', '0.9962', '0.9962', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92345, '2022-06-15', 1529, 87142, 5505, 57086, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92346, '2022-06-15', 2363, 87143, 5505, NULL, '1.0000', '6.8800', '6.8800', '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 (92347, '2022-06-15', 2916, 87144, 5505, NULL, '1.0000', '777.2552', '777.2552', '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 (92348, '2022-06-15', 9743, 87145, 5505, 56438, '1.0000', '13.2429', '13.2429', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92349, '2022-06-15', 9742, 87146, 5506, 46040, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92350, '2022-06-15', 8825, 87147, 5506, 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 (92351, '2022-06-15', 2847, 87148, 5506, 45131, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92352, '2022-06-15', 2366, 87149, 5507, NULL, '1.0000', '-51.4778', '-51.4778', '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 (92353, '2022-06-15', 2695, 87150, 5508, NULL, '4.0000', '2.0000', '2.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 (92354, '2022-06-15', 7354, 87151, 5509, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92355, '2022-06-15', 7917, 87152, 5509, 52750, '1.0000', '2.1447', '2.1447', '0.7000', '0.7000', '98.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92356, '2022-06-15', 7674, 87153, 5509, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92357, '2022-06-15', 9214, 87154, 5509, 57339, '1.0000', '10.3676', '10.3676', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92358, '2022-06-15', 8769, 87155, 5509, 57355, '1.0000', '6.1870', '6.1870', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92359, '2022-06-15', 9089, 87156, 5509, 57342, '2.0000', '6.4807', '6.4807', '9.0000', '9.0000', '14.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92360, '2022-06-15', 7480, 87157, 5509, NULL, '2.0000', '3.1000', '3.1000', '40.0000', '40.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 (92361, '2022-06-15', 7518, 87158, 5509, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92362, '2022-06-15', 9269, 87159, 5509, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92363, '2022-06-15', 2654, 87160, 5509, NULL, '1.0000', '18.0000', '18.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 (92364, '2022-06-15', 9827, 87161, 5510, 56243, '1.0000', '16.9421', '16.9421', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92365, '2022-06-15', 1501, 87162, 5510, 55884, '1.0000', '108.1974', '108.1974', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92366, '2022-06-15', 7658, 87163, 5510, NULL, '4.0000', '2.6500', '2.6500', '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 (92367, '2022-06-15', 9634, 87164, 5510, NULL, '3.0000', '4.8000', '4.8000', '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 (92368, '2022-06-15', 7881, 87165, 5510, NULL, '1.0000', '2.7500', '2.7500', '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 (92369, '2022-06-15', 1715, 87166, 5510, 55770, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92370, '2022-06-15', 8657, 87167, 5510, NULL, '1.0000', '7.8000', '7.8000', '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 (92371, '2022-06-15', 2169, 87168, 5510, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92372, '2022-06-15', 7629, 87169, 5510, NULL, '1.0000', '68.8500', '68.8500', '246.5000', '246.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92373, '2022-06-15', 7411, 87170, 5510, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92374, '2022-06-15', 8207, 87171, 5510, NULL, '1.0000', '0.0000', '0.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 (92375, '2022-06-15', 7753, 87172, 5510, NULL, '1.0000', '3.1400', '3.1400', '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 (92376, '2022-06-15', 1819, 87173, 5511, 55755, '1.0000', '6.5815', '6.5815', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92377, '2022-06-15', 2582, 87174, 5511, 56940, '1.0000', '14.0000', '14.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92378, '2022-06-15', 1638, 87175, 5512, 48910, '16.0000', '5.9100', '5.9100', '8.5000', '8.5000', '11.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92379, '2022-06-15', 1411, 87176, 5512, 54969, '1.0000', '25.9970', '25.9970', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92380, '2022-06-15', 9840, 87177, 5512, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92381, '2022-06-15', 9214, 87178, 5512, NULL, '1.0000', '8.5288', '8.5288', '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 (92382, '2022-06-15', 8767, 87179, 5512, 55415, '1.0000', '8.5590', '8.5590', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92383, '2022-06-15', 2030, 87180, 5512, NULL, '1.0000', '11.3333', '11.3333', '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 (92384, '2022-06-15', 8746, 87181, 5512, 57097, '1.0000', '3.6242', '3.6242', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92385, '2022-06-16', 9320, 87182, 5513, NULL, '1.0000', '8.9800', '8.9800', '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 (92386, '2022-06-16', 9329, 87183, 5513, NULL, '1.0000', '6.7000', '6.7000', '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 (92387, '2022-06-16', 7668, 87184, 5513, 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 (92388, '2022-06-16', 2769, 87185, 5513, NULL, '2.0000', '1.5200', '1.5200', '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 (92389, '2022-06-16', 7411, 87186, 5513, NULL, '1.0000', '1.3500', '1.3500', '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 (92390, '2022-06-16', 9724, 87187, 5513, NULL, '1.0000', '20.3000', '20.3000', '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 (92391, '2022-06-16', 1935, 87188, 5513, 5586, '-135.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 (92392, '2022-06-16', 1935, 87188, 5513, NULL, '136.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-136.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92393, '2022-06-16', 9167, 87189, 5513, NULL, '1.0000', '13.3000', '13.3000', '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 (92394, '2022-06-16', 8170, 87190, 5513, 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 (92395, '2022-06-16', 7674, 87191, 5513, NULL, '1.0000', '1.3000', '1.3000', '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 (92396, '2022-06-16', 1751, 87192, 5513, 6681, '1.0000', '3.6900', '3.6900', '8.0000', '8.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 (92397, '2022-06-16', 1501, 87193, 5513, NULL, '1.0000', '2.0500', '2.0500', '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 (92398, '2022-06-16', 7589, 87194, 5513, 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 (92399, '2022-06-16', 7411, 87195, 5513, NULL, '1.0000', '1.3500', '1.3500', '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 (92400, '2022-06-16', 1935, 87196, 5513, 5586, '-135.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 (92401, '2022-06-16', 1935, 87196, 5513, NULL, '137.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92402, '2022-06-16', 7743, 87197, 5513, NULL, '2.0000', '1.3100', '1.3100', '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 (92403, '2022-06-16', 9155, 87198, 5513, NULL, '1.0000', '1.8000', '1.8000', '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 (92404, '2022-06-16', 7411, 87199, 5513, NULL, '2.0000', '1.3500', '1.3500', '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 (92405, '2022-06-16', 8699, 87200, 5513, NULL, '1.0000', '6.3800', '6.3800', '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 (92406, '2022-06-16', 2315, 87201, 5513, 2735, '-472.0000', '0.3300', '0.3300', '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 (92407, '2022-06-16', 2315, 87201, 5513, NULL, '473.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-473.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92408, '2022-06-16', 8167, 87202, 5513, NULL, '2.0000', '16.2000', '16.2000', '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 (92409, '2022-06-16', 9794, 87203, 5513, NULL, '2.0000', '1.0800', '1.0800', '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 (92410, '2022-06-16', 1908, 87204, 5513, 5444, '-50.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 (92411, '2022-06-16', 1908, 87204, 5513, NULL, '55.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (92412, '2022-06-16', 8359, 87205, 5513, 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 (92413, '2022-06-16', 8769, 87206, 5513, NULL, '2.0000', '6.6000', '6.6000', '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 (92414, '2022-06-16', 8918, 87207, 5513, NULL, '1.0000', '1.0400', '1.0400', '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 (92415, '2022-06-16', 7560, 87208, 5513, NULL, '1.0000', '33.0200', '33.0200', '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 (92416, '2022-06-16', 7666, 87209, 5513, NULL, '1.0000', '3.6000', '3.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 (92417, '2022-06-16', 7483, 87210, 5513, 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 (92418, '2022-06-16', 8539, 87211, 5513, NULL, '1.0000', '31.8000', '31.8000', '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 (92419, '2022-06-16', 9791, 87212, 5513, 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 (92420, '2022-06-16', 7862, 87213, 5514, NULL, '1.0000', '87.4250', '87.4250', '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 (92421, '2022-06-16', 7524, 87214, 5514, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92422, '2022-06-16', 7473, 87215, 5514, NULL, '2.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92423, '2022-06-16', 7412, 87216, 5514, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92424, '2022-06-16', 8264, 87217, 5514, 54298, '1.0000', '25.0700', '25.0700', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92425, '2022-06-16', 9819, 87218, 5514, 56652, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92426, '2022-06-16', 9526, 87219, 5514, NULL, '2.0000', '7.0000', '7.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 (92427, '2022-06-16', 7709, 87220, 5514, NULL, '2.0000', '916.6097', '916.6097', '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 (92428, '2022-06-16', 8504, 87221, 5514, NULL, '1.0000', '-23.9000', '-23.9000', '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 (92429, '2022-06-16', 9695, 87222, 5514, 57373, '1.0000', '5.4226', '5.4226', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92430, '2022-06-16', 2506, 87223, 5514, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92431, '2022-06-16', 7521, 87224, 5514, 56560, '1.0000', '19.7139', '19.7139', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92432, '2022-06-16', 9735, 87225, 5514, 51796, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92433, '2022-06-16', 9092, 87226, 5514, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92434, '2022-06-16', 3001, 87227, 5514, NULL, '2.0000', '1.5000', '1.5000', '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 (92435, '2022-06-16', 1845, 87228, 5514, 56592, '1.0000', '22.2501', '22.2501', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92436, '2022-06-16', 7518, 87229, 5514, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92437, '2022-06-16', 1841, 87230, 5514, 56033, '4.0000', '0.1970', '0.1970', '0.5000', '0.5000', '73.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92438, '2022-06-16', 9098, 87231, 5514, NULL, '1.0000', '-2.9392', '-2.9392', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92439, '2022-06-16', 2289, 87232, 5514, NULL, '4.0000', '2.5688', '2.5688', '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 (92440, '2022-06-16', 7744, 87233, 5514, 56658, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92441, '2022-06-16', 7592, 87234, 5514, 56573, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92442, '2022-06-16', 1841, 87235, 5514, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92443, '2022-06-16', 2104, 87236, 5514, NULL, '2.0000', '0.2000', '0.2000', '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 (92444, '2022-06-16', 8539, 87237, 5514, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92445, '2022-06-16', 7889, 87238, 5514, NULL, '1.0000', '-8.6571', '-8.6571', '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 (92446, '2022-06-16', 9794, 87239, 5514, 50668, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92447, '2022-06-16', 8744, 87240, 5514, 57343, '1.0000', '3.8307', '3.8307', '5.5000', '5.5000', '11.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92448, '2022-06-16', 2315, 87241, 5514, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92449, '2022-06-16', 7518, 87242, 5514, 57156, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92450, '2022-06-16', 8462, 87243, 5514, 56002, '1.0000', '7.1000', '7.1000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92451, '2022-06-16', 7412, 87244, 5514, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92452, '2022-06-16', 7411, 87245, 5514, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92453, '2022-06-16', 2699, 87246, 5514, 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 (92454, '2022-06-16', 9742, 87247, 5514, 53517, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92455, '2022-06-16', 8033, 87248, 5514, NULL, '1.0000', '27.7000', '27.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 (92456, '2022-06-16', 7707, 87249, 5514, NULL, '1.0000', '26.7232', '26.7232', '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 (92457, '2022-06-16', 9734, 87250, 5514, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92458, '2022-06-16', 9163, 87251, 5514, NULL, '2.0000', '15.8000', '15.8000', '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 (92459, '2022-06-16', 9272, 87252, 5514, NULL, '2.0000', '3.1000', '3.1000', '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 (92460, '2022-06-16', 7514, 87253, 5514, NULL, '1.0000', '17929.5233', '17929.5233', '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 (92461, '2022-06-16', 7952, 87254, 5514, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92462, '2022-06-16', 7963, 87255, 5514, 55985, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92463, '2022-06-16', 7989, 87256, 5514, 56682, '1.0000', '775.2804', '775.2804', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92464, '2022-06-16', 2229, 87257, 5515, 57110, '1.0000', '21.0098', '21.0098', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92465, '2022-06-16', 2411, 87258, 5515, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92466, '2022-06-16', 7641, 87259, 5515, NULL, '1.0000', '1.9000', '1.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 (92467, '2022-06-16', 1425, 87260, 5515, NULL, '1.0000', '19.3384', '19.3384', '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 (92468, '2022-06-16', 7478, 87261, 5515, 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 (92469, '2022-06-16', 1571, 87262, 5515, NULL, '1.0000', '308.7500', '308.7500', '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 (92470, '2022-06-16', 2061, 87263, 5515, NULL, '1.0000', '10.3123', '10.3123', '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 (92471, '2022-06-16', 1307, 87264, 5515, NULL, '1.0000', '-59.9897', '-59.9897', '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 (92472, '2022-06-16', 2237, 87265, 5515, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92473, '2022-06-16', 2242, 87266, 5515, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '70.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92474, '2022-06-16', 2642, 87267, 5515, 57151, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92475, '2022-06-16', 2444, 87268, 5515, 57149, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92476, '2022-06-16', 1999, 87269, 5515, 57126, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92477, '2022-06-16', 2821, 87270, 5515, NULL, '1.0000', '3.3984', '3.3984', '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 (92478, '2022-06-16', 2315, 87271, 5515, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92479, '2022-06-16', 7959, 87272, 5515, NULL, '1.0000', '9.6000', '9.6000', '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 (92480, '2022-06-16', 2285, 87273, 5515, NULL, '1.0000', '9.3380', '9.3380', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92481, '2022-06-16', 2286, 87274, 5515, 53205, '1.0000', '4.4278', '4.4278', '7.0000', '7.0000', '29.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92482, '2022-06-16', 9794, 87275, 5515, 54929, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92483, '2022-06-16', 9794, 87275, 5515, 52357, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92484, '2022-06-16', 9754, 87276, 5515, NULL, '1.0000', '1.8000', '1.8000', '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 (92485, '2022-06-16', 1499, 87277, 5515, 54918, '2.0000', '0.3993', '0.3993', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92486, '2022-06-16', 1501, 87278, 5515, NULL, '1.0000', '0.9225', '0.9225', '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 (92487, '2022-06-16', 1905, 87279, 5515, 54898, '2.0000', '0.5203', '0.5203', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92488, '2022-06-16', 8699, 87280, 5515, NULL, '2.0000', '6.3800', '6.3800', '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 (92489, '2022-06-16', 1935, 87281, 5515, NULL, '1.0000', '0.7671', '0.7671', '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 (92490, '2022-06-16', 2916, 87282, 5515, NULL, '1.0000', '777.2552', '777.2552', '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 (92491, '2022-06-16', 2169, 87283, 5515, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92492, '2022-06-16', 8017, 87284, 5515, 57065, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92493, '2022-06-16', 9821, 87285, 5515, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92494, '2022-06-16', 9831, 87286, 5515, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92495, '2022-06-16', 1532, 87287, 5515, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92496, '2022-06-16', 9830, 87288, 5515, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92497, '2022-06-16', 7917, 87289, 5515, NULL, '1.0000', '5.0000', '5.0000', '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 (92498, '2022-06-16', 2315, 87290, 5515, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92499, '2022-06-16', 9834, 87291, 5515, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92500, '2022-06-16', 8149, 87292, 5515, NULL, '1.0000', '6.6333', '6.6333', '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 (92501, '2022-06-16', 2061, 87293, 5515, NULL, '2.0000', '10.3123', '10.3123', '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 (92502, '2022-06-16', 2263, 87294, 5515, NULL, '1.0000', '2.4800', '2.4800', '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 (92503, '2022-06-16', 7514, 87295, 5515, NULL, '1.0000', '2.2500', '2.2500', '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 (92504, '2022-06-16', 2108, 87296, 5515, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92505, '2022-06-16', 2169, 87297, 5515, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92506, '2022-06-16', 1760, 87298, 5515, NULL, '3.0000', '1.5900', '1.5900', '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 (92507, '2022-06-16', 2169, 87299, 5515, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92508, '2022-06-16', 1690, 87300, 5515, 55954, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92509, '2022-06-16', 2379, 87301, 5515, NULL, '1.0000', '-3.0170', '-3.0170', '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 (92510, '2022-06-16', 8444, 87302, 5515, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92511, '2022-06-16', 2085, 87303, 5515, NULL, '2.0000', '3.9526', '3.9526', '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 (92512, '2022-06-16', 9940, 87304, 5516, 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 (92513, '2022-06-16', 1665, 87305, 5516, 56234, '1.0000', '1.1809', '1.1809', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92514, '2022-06-16', 2416, 87306, 5516, 56827, '1.0000', '1.2635', '1.2635', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92515, '2022-06-16', 1845, 87307, 5516, 56881, '1.0000', '21.3641', '21.3641', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92516, '2022-06-16', 2253, 87308, 5516, 56880, '1.0000', '14.7074', '14.7074', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92517, '2022-06-16', 1856, 87309, 5516, 56948, '1.0000', '4.9379', '4.9379', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92518, '2022-06-16', 1863, 87310, 5516, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92519, '2022-06-16', 2351, 87311, 5516, 46614, '1.0000', '19.2400', '19.2400', '24.5000', '24.5000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92520, '2022-06-16', 2169, 87312, 5516, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92521, '2022-06-16', 8677, 87313, 5516, 49108, '1.0000', '2.2418', '2.2418', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92522, '2022-06-16', 9940, 87314, 5516, 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 (92523, '2022-06-16', 7848, 87315, 5516, NULL, '1.0000', '15.0000', '15.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 (92524, '2022-06-16', 9275, 87316, 5516, NULL, '2.0000', '6.3000', '6.3000', '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 (92525, '2022-06-16', 7753, 87317, 5516, NULL, '1.0000', '3.1400', '3.1400', '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 (92526, '2022-06-16', 2105, 87318, 5516, 56726, '1.0000', '2.0391', '2.0391', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92527, '2022-06-16', 7672, 87319, 5516, NULL, '1.0000', '1.0200', '1.0200', '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 (92528, '2022-06-16', 9734, 87320, 5516, 56220, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '89.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92529, '2022-06-16', 9734, 87321, 5516, 56220, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '89.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92530, '2022-06-16', 1602, 87322, 5516, 56909, '1.0000', '6.9969', '6.9969', '10.0000', '10.0000', '23.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92531, '2022-06-16', 9291, 87323, 5516, 56913, '1.0000', '15.4949', '15.4949', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92532, '2022-06-16', 7482, 87324, 5516, NULL, '1.0000', '3.0500', '3.0500', '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 (92533, '2022-06-16', 9566, 87325, 5516, NULL, '1.0000', '3.6900', '3.6900', '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 (92534, '2022-06-16', 1596, 87326, 5516, 47994, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92535, '2022-06-16', 8657, 87327, 5516, NULL, '1.0000', '7.8000', '7.8000', '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 (92536, '2022-06-16', 9762, 87328, 5516, 56886, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92537, '2022-06-16', 2315, 87329, 5516, 3069, '2.0000', '0.3300', '0.3300', '1.0000', '1.0000', '113.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92538, '2022-06-16', 8596, 87330, 5516, 48121, '1.0000', '2.2899', '2.2899', '5.0000', '5.0000', '67.0000', 1, 0, NULL, 356);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92539, '2022-06-16', 9940, 87331, 5516, 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 (92540, '2022-06-16', 9762, 87332, 5516, 56886, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92541, '2022-06-16', 8566, 87333, 5516, 54325, '1.0000', '-79.4569', '-79.4569', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92542, '2022-06-16', 2131, 87334, 5516, 56352, '1.0000', '12.7932', '12.7932', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92543, '2022-06-16', 1839, 87335, 5517, 55762, '1.0000', '7.7891', '7.7891', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92544, '2022-06-16', 1912, 87336, 5517, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92545, '2022-06-16', 2169, 87337, 5517, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92546, '2022-06-16', 7802, 87338, 5517, 52269, '3.0000', '1.3468', '1.3468', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92547, '2022-06-16', 7716, 87339, 5517, NULL, '2.0000', '0.0000', '0.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 (92548, '2022-06-16', 2862, 87340, 5517, 17481, '2.0000', '5.0000', '5.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 (92549, '2022-06-16', 9399, 87341, 5517, 50942, '2.0000', '1.0183', '1.0183', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92550, '2022-06-16', 2618, 87342, 5517, 48779, '1.0000', '2.8873', '2.8873', '6.0000', '6.0000', '38.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92551, '2022-06-16', 1910, 87343, 5517, NULL, '1.0000', '0.4600', '0.4600', '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 (92552, '2022-06-16', 9762, 87344, 5517, 56886, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92553, '2022-06-16', 2109, 87345, 5517, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92554, '2022-06-16', 7756, 87346, 5517, NULL, '1.0000', '26.9296', '26.9296', '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 (92555, '2022-06-16', 1452, 87347, 5517, 5632, '2.0000', '1.2300', '1.2300', '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 (92556, '2022-06-16', 7848, 87348, 5517, NULL, '1.0000', '15.0000', '15.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 (92557, '2022-06-16', 2916, 87349, 5517, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92558, '2022-06-16', 2253, 87350, 5517, 56880, '1.0000', '14.7074', '14.7074', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92559, '2022-06-16', 1863, 87351, 5517, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92560, '2022-06-16', 1499, 87352, 5517, 54670, '2.0000', '0.4174', '0.4174', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92561, '2022-06-16', 7753, 87353, 5517, NULL, '1.0000', '3.1400', '3.1400', '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 (92562, '2022-06-16', 1501, 87354, 5517, 55884, '1.0000', '108.1974', '108.1974', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92563, '2022-06-16', 7744, 87355, 5517, NULL, '1.0000', '2.9400', '2.9400', '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 (92564, '2022-06-16', 9827, 87356, 5517, 55828, '1.0000', '16.9421', '16.9421', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92565, '2022-06-16', 7629, 87357, 5517, NULL, '1.0000', '68.8500', '68.8500', '246.5000', '246.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92566, '2022-06-16', 9732, 87358, 5517, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92567, '2022-06-16', 1851, 87359, 5517, 56922, '1.0000', '13.1998', '13.1998', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92568, '2022-06-16', 1935, 87360, 5517, 56892, '1.0000', '1.3636', '1.3636', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92569, '2022-06-16', 8539, 87361, 5518, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92570, '2022-06-16', 8312, 87362, 5518, 48362, '1.0000', '19.2786', '19.2786', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92571, '2022-06-16', 9574, 87363, 5519, 40352, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92572, '2022-06-16', 9734, 87364, 5519, 56220, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92573, '2022-06-16', 8135, 87365, 5519, 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 (92574, '2022-06-16', 9794, 87366, 5519, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '64.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92575, '2022-06-16', 2363, 87367, 5519, 56844, '1.0000', '7.7233', '7.7233', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92576, '2022-06-16', 7756, 87368, 5519, NULL, '1.0000', '26.9296', '26.9296', '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 (92577, '2022-06-16', 7753, 87369, 5519, NULL, '1.0000', '3.1400', '3.1400', '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 (92578, '2022-06-16', 1863, 87370, 5519, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92579, '2022-06-16', 2858, 87371, 5519, 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 (92580, '2022-06-16', 9940, 87372, 5519, 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 (92581, '2022-06-16', 1643, 87373, 5519, 56219, '1.0000', '-30.5000', '-30.5000', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92582, '2022-06-16', 1637, 87374, 5519, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92583, '2022-06-16', 2511, 87375, 5519, 56925, '1.0000', '9.7081', '9.7081', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92584, '2022-06-16', 1912, 87376, 5519, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92585, '2022-06-16', 2169, 87377, 5519, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92586, '2022-06-16', 7411, 87378, 5519, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92587, '2022-06-16', 1935, 87379, 5519, 56892, '1.0000', '1.3636', '1.3636', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92588, '2022-06-16', 7848, 87380, 5519, NULL, '1.0000', '15.0000', '15.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 (92589, '2022-06-16', 8000, 87381, 5519, 53878, '2.0000', '7.9000', '7.9000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92590, '2022-06-16', 2038, 87382, 5519, 56350, '1.0000', '12.2141', '12.2141', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92591, '2022-06-16', 1602, 87383, 5519, 56909, '1.0000', '6.9969', '6.9969', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92592, '2022-06-16', 2038, 87384, 5519, 56350, '1.0000', '12.2141', '12.2141', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92593, '2022-06-16', 7952, 87385, 5519, NULL, '2.0000', '1.4000', '1.4000', '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 (92594, '2022-06-16', 1665, 87386, 5519, 56234, '1.0000', '1.1809', '1.1809', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92595, '2022-06-16', 2592, 87387, 5519, 54648, '2.0000', '10.6326', '10.6326', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92596, '2022-06-16', 1665, 87388, 5520, 3235, '-129.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 (92597, '2022-06-16', 1665, 87388, 5520, NULL, '130.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92598, '2022-06-16', 1425, 87389, 5520, NULL, '1.0000', '6.4405', '6.4405', '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 (92599, '2022-06-17', 1855, 87390, 5521, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92600, '2022-06-17', 1499, 87391, 5521, 54670, '2.0000', '0.4174', '0.4174', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92601, '2022-06-17', 2416, 87392, 5521, 56827, '1.0000', '1.2635', '1.2635', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92602, '2022-06-17', 2275, 87393, 5521, 32825, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '87.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92603, '2022-06-17', 3064, 87394, 5521, 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 (92604, '2022-06-17', 2169, 87395, 5521, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92605, '2022-06-17', 2858, 87396, 5521, 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 (92606, '2022-06-17', 1602, 87397, 5521, 56909, '1.0000', '6.9969', '6.9969', '10.0000', '10.0000', '21.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92607, '2022-06-17', 8761, 87398, 5521, 55444, '1.0000', '13.8930', '13.8930', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92608, '2022-06-17', 9729, 87399, 5521, 46048, '10.0000', '0.6200', '0.6200', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92609, '2022-06-17', 1978, 87400, 5521, 54334, '1.0000', '10.1144', '10.1144', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92610, '2022-06-17', 1935, 87401, 5521, 56892, '2.0000', '1.3636', '1.3636', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92611, '2022-06-17', 2286, 87402, 5521, 56241, '2.0000', '4.9825', '4.9825', '7.0000', '7.0000', '36.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92612, '2022-06-17', 1326, 87403, 5521, 56232, '1.0000', '3.4188', '3.4188', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92613, '2022-06-17', 9732, 87404, 5521, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92614, '2022-06-17', 2893, 87405, 5521, 56879, '1.0000', '6.5687', '6.5687', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92615, '2022-06-17', 9891, 87406, 5522, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92616, '2022-06-17', 2169, 87407, 5522, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92617, '2022-06-17', 1621, 87408, 5522, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '30.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92618, '2022-06-17', 1904, 87409, 5522, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92619, '2022-06-17', 1590, 87410, 5522, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92620, '2022-06-17', 2169, 87411, 5522, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92621, '2022-06-17', 1628, 87412, 5522, 55896, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92622, '2022-06-17', 8878, 87413, 5522, NULL, '1.0000', '3.8136', '3.8136', '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 (92623, '2022-06-17', 1432, 87414, 5522, 55707, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92624, '2022-06-17', 2668, 87415, 5522, 55683, '1.0000', '8.8449', '8.8449', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92625, '2022-06-17', 8878, 87416, 5522, NULL, '1.0000', '3.8136', '3.8136', '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 (92626, '2022-06-17', 7466, 87417, 5522, NULL, '6.0000', '1.5100', '1.5100', '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 (92627, '2022-06-17', 1691, 87418, 5522, 55631, '1.0000', '10.4800', '10.4800', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92628, '2022-06-17', 1601, 87419, 5522, 57080, '1.0000', '13.2798', '13.2798', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92629, '2022-06-17', 9695, 87420, 5522, 57498, '2.0000', '5.2342', '5.2342', '7.0000', '7.0000', '46.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92630, '2022-06-17', 1521, 87421, 5522, NULL, '6.0000', '10.1500', '10.1500', '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 (92631, '2022-06-17', 9762, 87422, 5522, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92632, '2022-06-17', 3058, 87423, 5522, NULL, '2.0000', '-23.3000', '-23.3000', '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 (92633, '2022-06-17', 2236, 87424, 5522, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92634, '2022-06-17', 2887, 87425, 5522, 55148, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92635, '2022-06-17', 9832, 87426, 5522, 57495, '1.0000', '1.7283', '1.7283', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92636, '2022-06-17', 9830, 87427, 5522, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92637, '2022-06-17', 7612, 87428, 5522, NULL, '2.0000', '1.6100', '1.6100', '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 (92638, '2022-06-17', 2983, 87429, 5522, 57145, '2.0000', '3.3333', '3.3333', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92639, '2022-06-17', 2169, 87430, 5522, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92640, '2022-06-17', 2511, 87431, 5522, NULL, '1.0000', '13.8000', '13.8000', '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 (92641, '2022-06-17', 1785, 87432, 5522, 55946, '1.0000', '16.7767', '16.7767', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92642, '2022-06-17', 2893, 87433, 5523, 56879, '1.0000', '6.5687', '6.5687', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92643, '2022-06-17', 1687, 87434, 5523, 56240, '1.0000', '14.3032', '14.3032', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92644, '2022-06-17', 1543, 87435, 5523, 54601, '1.0000', '28.1483', '28.1483', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92645, '2022-06-17', 1796, 87436, 5523, NULL, '1.0000', '3.5000', '3.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 (92646, '2022-06-17', 1912, 87437, 5524, NULL, '2.0000', '0.3200', '0.3200', '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 (92647, '2022-06-17', 7593, 87438, 5524, NULL, '1.0000', '2.4500', '2.4500', '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 (92648, '2022-06-17', 8456, 87439, 5524, 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 (92649, '2022-06-17', 1501, 87440, 5524, NULL, '1.0000', '2.0500', '2.0500', '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 (92650, '2022-06-17', 7652, 87441, 5524, NULL, '15.0000', '0.9800', '0.9800', '1.6000', '1.6000', '-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 (92651, '2022-06-17', 7852, 87442, 5524, NULL, '1.0000', '15.0000', '15.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 (92652, '2022-06-17', 8925, 87443, 5524, NULL, '1.0000', '2.4000', '2.4000', '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 (92653, '2022-06-17', 7473, 87444, 5524, NULL, '1.0000', '0.5300', '0.5300', '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 (92654, '2022-06-17', 8739, 87445, 5524, 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 (92655, '2022-06-17', 8966, 87446, 5524, NULL, '1.0000', '6.8500', '6.8500', '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 (92656, '2022-06-17', 2061, 87447, 5524, 2164, '-10.0000', '10.9800', '10.9800', '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 (92657, '2022-06-17', 2061, 87447, 5524, NULL, '11.0000', '10.9800', '10.9800', '17.5000', '17.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 (92658, '2022-06-17', 7703, 87448, 5524, NULL, '2.0000', '22.9900', '22.9900', '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 (92659, '2022-06-17', 2416, 87449, 5524, 4745, '-32.0000', '1.2000', '1.2000', '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 (92660, '2022-06-17', 2416, 87449, 5524, NULL, '33.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (92661, '2022-06-17', 8924, 87450, 5524, NULL, '1.0000', '4.5000', '4.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 (92662, '2022-06-17', 7609, 87451, 5524, NULL, '1.0000', '4.3300', '4.3300', '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 (92663, '2022-06-17', 9743, 87452, 5524, NULL, '1.0000', '11.7000', '11.7000', '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 (92664, '2022-06-17', 1935, 87453, 5524, 5586, '-138.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 (92665, '2022-06-17', 1935, 87453, 5524, NULL, '140.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92666, '2022-06-17', 9729, 87454, 5524, NULL, '2.0000', '0.6200', '0.6200', '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 (92667, '2022-06-17', 7848, 87455, 5524, NULL, '1.0000', '1.3500', '1.3500', '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 (92668, '2022-06-17', 8672, 87456, 5524, 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 (92669, '2022-06-17', 7886, 87457, 5524, 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 (92670, '2022-06-17', 7652, 87458, 5524, NULL, '5.0000', '0.9800', '0.9800', '1.6000', '1.6000', '-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 (92671, '2022-06-17', 7570, 87459, 5524, NULL, '1.0000', '10.0000', '10.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 (92672, '2022-06-17', 9695, 87460, 5524, NULL, '3.0000', '4.5000', '4.5000', '7.0000', '7.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 (92673, '2022-06-17', 9089, 87461, 5524, NULL, '2.0000', '3.8000', '3.8000', '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 (92674, '2022-06-17', 7784, 87462, 5524, NULL, '1.0000', '4.2300', '4.2300', '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 (92675, '2022-06-17', 8074, 87463, 5524, NULL, '1.0000', '25.3504', '25.3504', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92676, '2022-06-17', 7516, 87464, 5524, NULL, '1.0000', '10.0000', '10.0000', '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 (92677, '2022-06-17', 9900, 87465, 5524, NULL, '1.0000', '3.7200', '3.7200', '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 (92678, '2022-06-17', 7753, 87466, 5524, NULL, '1.0000', '3.4000', '3.4000', '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 (92679, '2022-06-17', 7708, 87467, 5524, 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 (92680, '2022-06-17', 7524, 87468, 5524, NULL, '2.0000', '11.9500', '11.9500', '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 (92681, '2022-06-17', 2315, 87469, 5524, 2735, '-473.0000', '0.3300', '0.3300', '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 (92682, '2022-06-17', 2315, 87469, 5524, NULL, '476.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-476.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92683, '2022-06-17', 2100, 87470, 5524, 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 (92684, '2022-06-17', 8308, 87471, 5524, NULL, '1.0000', '2.0800', '2.0800', '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 (92685, '2022-06-17', 9747, 87472, 5524, NULL, '5.0000', '0.6500', '0.6500', '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 (92686, '2022-06-17', 9507, 87473, 5524, NULL, '1.0000', '42.8000', '42.8000', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92687, '2022-06-17', 7382, 87474, 5524, NULL, '1.0000', '7.4500', '7.4500', '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 (92688, '2022-06-17', 8677, 87475, 5524, NULL, '1.0000', '1.2800', '1.2800', '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 (92689, '2022-06-17', 7703, 87476, 5524, NULL, '1.0000', '22.9900', '22.9900', '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 (92690, '2022-06-17', 2105, 87477, 5524, NULL, '1.0000', '1.3500', '1.3500', '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 (92691, '2022-06-17', 8184, 87478, 5524, NULL, '10.0000', '2.4000', '2.4000', '4.0000', '4.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 (92692, '2022-06-17', 7412, 87479, 5524, NULL, '1.0000', '1.5200', '1.5200', '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 (92693, '2022-06-17', 1622, 87480, 5524, 8739, '-8.0000', '44.8492', '44.8492', '36.5000', '36.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 (92694, '2022-06-17', 1622, 87480, 5524, NULL, '9.0000', '44.8492', '44.8492', '36.5000', '36.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 (92695, '2022-06-17', 7930, 87481, 5525, 50993, '1.0000', '1.5333', '1.5333', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92696, '2022-06-17', 9463, 87482, 5525, 56606, '1.0000', '3.7096', '3.7096', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92697, '2022-06-17', 7586, 87483, 5525, 57434, '1.0000', '6.5122', '6.5122', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92698, '2022-06-17', 8308, 87484, 5525, NULL, '1.0000', '60.7672', '60.7672', '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 (92699, '2022-06-17', 9271, 87485, 5525, 56566, '1.0000', '1.8173', '1.8173', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92700, '2022-06-17', 9503, 87486, 5525, 56528, '1.0000', '1.2700', '1.2700', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92701, '2022-06-17', 8497, 87487, 5525, NULL, '1.0000', '58.7666', '58.7666', '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 (92702, '2022-06-17', 8452, 87488, 5525, NULL, '1.0000', '1.4547', '1.4547', '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 (92703, '2022-06-17', 9785, 87489, 5525, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92704, '2022-06-17', 8345, 87490, 5525, 50055, '2.0000', '-4.8333', '-4.8333', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92705, '2022-06-17', 8154, 87491, 5525, NULL, '2.0000', '12.3000', '12.3000', '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 (92706, '2022-06-17', 8428, 87492, 5525, 56496, '2.0000', '12.8016', '12.8016', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92707, '2022-06-17', 8960, 87493, 5525, 54480, '1.0000', '47.6400', '47.6400', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92708, '2022-06-17', 7833, 87494, 5525, NULL, '1.0000', '20.0000', '20.0000', '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 (92709, '2022-06-17', 7709, 87495, 5525, NULL, '6.0000', '916.6097', '916.6097', '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 (92710, '2022-06-17', 9836, 87496, 5525, 57538, '1.0000', '20.2800', '20.2800', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92711, '2022-06-17', 8387, 87497, 5525, 54300, '1.0000', '49.5000', '49.5000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92712, '2022-06-17', 8456, 87498, 5525, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92713, '2022-06-17', 2315, 87499, 5525, 56594, '1.0000', '0.7474', '0.7474', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92714, '2022-06-17', 7530, 87500, 5525, NULL, '1.0000', '6.9000', '6.9000', '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 (92715, '2022-06-17', 8452, 87501, 5525, NULL, '1.0000', '1.4547', '1.4547', '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 (92716, '2022-06-17', 7641, 87502, 5525, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92717, '2022-06-17', 2699, 87503, 5525, 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 (92718, '2022-06-17', 7753, 87504, 5525, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92719, '2022-06-17', 7959, 87505, 5525, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '34.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92720, '2022-06-17', 7704, 87506, 5525, NULL, '1.0000', '-1.5625', '-1.5625', '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 (92721, '2022-06-17', 7385, 87507, 5525, 55971, '4.0000', '9.0049', '9.0049', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92722, '2022-06-17', 8333, 87508, 5525, 54096, '1.0000', '6.8600', '6.8600', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92723, '2022-06-17', 7473, 87509, 5525, NULL, '3.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (92724, '2022-06-17', 8186, 87510, 5525, 55979, '3.0000', '1.5626', '1.5626', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92725, '2022-06-17', 9740, 87511, 5525, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92726, '2022-06-17', 9332, 87512, 5525, NULL, '1.0000', '8.6667', '8.6667', '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 (92727, '2022-06-17', 8061, 87513, 5525, 57544, '1.0000', '31.2141', '31.2141', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92728, '2022-06-17', 1935, 87514, 5525, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '122.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92729, '2022-06-17', 2104, 87515, 5525, NULL, '3.0000', '0.2000', '0.2000', '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 (92730, '2022-06-17', 9463, 87516, 5525, 56606, '1.0000', '3.7096', '3.7096', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92731, '2022-06-17', 7518, 87517, 5525, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92732, '2022-06-17', 9776, 87518, 5525, 57161, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92733, '2022-06-17', 9729, 87519, 5525, 56613, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92734, '2022-06-17', 8548, 87520, 5525, NULL, '1.0000', '-0.2308', '-0.2308', '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 (92735, '2022-06-17', 8155, 87521, 5525, NULL, '2.0000', '65.0000', '65.0000', '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 (92736, '2022-06-17', 2925, 87522, 5525, 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 (92737, '2022-06-17', 9911, 87523, 5525, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92738, '2022-06-17', 7774, 87524, 5525, 57184, '1.0000', '8.6851', '8.6851', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92739, '2022-06-17', 7612, 87525, 5525, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92740, '2022-06-17', 7675, 87526, 5525, NULL, '1.0000', '84.8590', '84.8590', '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 (92741, '2022-06-17', 9620, 87527, 5525, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92742, '2022-06-17', 2284, 87528, 5525, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92743, '2022-06-17', 8456, 87529, 5525, 46178, '1.0000', '5.5378', '5.5378', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92744, '2022-06-17', 1837, 87530, 5525, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92745, '2022-06-17', 9245, 87531, 5525, 51789, '1.0000', '6.4758', '6.4758', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92746, '2022-06-17', 7892, 87532, 5525, NULL, '1.0000', '5.3403', '5.3403', '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 (92747, '2022-06-17', 7674, 87533, 5525, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92748, '2022-06-17', 2100, 87534, 5525, 57157, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92749, '2022-06-17', 7385, 87535, 5525, 55971, '5.0000', '9.0049', '9.0049', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92750, '2022-06-17', 7930, 87536, 5525, 50993, '1.0000', '1.5333', '1.5333', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92751, '2022-06-17', 7636, 87537, 5525, 56047, '4.0000', '0.7009', '0.7009', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92752, '2022-06-17', 7544, 87538, 5525, NULL, '2.0000', '9.4300', '9.4300', '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 (92753, '2022-06-17', 9107, 87539, 5525, NULL, '2.0000', '3.4000', '3.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 (92754, '2022-06-17', 7722, 87540, 5525, NULL, '2.0000', '3.5000', '3.5000', '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 (92755, '2022-06-17', 2108, 87541, 5526, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92756, '2022-06-17', 2643, 87542, 5526, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92757, '2022-06-17', 9830, 87543, 5526, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92758, '2022-06-17', 8677, 87544, 5526, NULL, '3.0000', '496.2705', '496.2705', '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 (92759, '2022-06-17', 7612, 87545, 5526, NULL, '2.0000', '1.6100', '1.6100', '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 (92760, '2022-06-17', 1867, 87546, 5526, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92761, '2022-06-17', 7593, 87547, 5526, NULL, '1.0000', '0.8000', '0.8000', '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 (92762, '2022-06-17', 9145, 87548, 5526, NULL, '1.0000', '9.0000', '9.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 (92763, '2022-06-17', 1744, 87549, 5526, NULL, '1.0000', '138.0750', '138.0750', '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 (92764, '2022-06-17', 2302, 87550, 5526, 56413, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92765, '2022-06-17', 7514, 87551, 5526, NULL, '1.0000', '2.2500', '2.2500', '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 (92766, '2022-06-17', 7564, 87552, 5526, NULL, '1.0000', '0.6400', '0.6400', '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 (92767, '2022-06-17', 7483, 87553, 5526, NULL, '3.0000', '0.4200', '0.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 (92768, '2022-06-17', 7411, 87554, 5526, NULL, '1.0000', '1.3013', '1.3013', '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 (92769, '2022-06-17', 2237, 87555, 5526, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92770, '2022-06-17', 8878, 87556, 5526, NULL, '1.0000', '3.8136', '3.8136', '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 (92771, '2022-06-17', 9729, 87557, 5526, 47080, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92772, '2022-06-17', 9729, 87557, 5526, NULL, '1.0000', '0.6200', '0.6200', '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 (92773, '2022-06-17', 2254, 87558, 5526, NULL, '1.0000', '42.5400', '42.5400', '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 (92774, '2022-06-17', 9482, 87559, 5526, NULL, '2.0000', '0.5000', '0.5000', '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 (92775, '2022-06-17', 7411, 87560, 5526, NULL, '1.0000', '1.3013', '1.3013', '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 (92776, '2022-06-17', 1910, 87561, 5526, 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 (92777, '2022-06-17', 9914, 87562, 5526, NULL, '1.0000', '46.9900', '46.9900', '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 (92778, '2022-06-17', 8444, 87563, 5526, 56383, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92779, '2022-06-17', 1935, 87564, 5526, NULL, '1.0000', '0.7671', '0.7671', '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 (92780, '2022-06-17', 7514, 87565, 5526, NULL, '1.0000', '2.2500', '2.2500', '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 (92781, '2022-06-17', 1499, 87566, 5526, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92782, '2022-06-17', 2260, 87567, 5526, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92783, '2022-06-17', 2283, 87568, 5526, 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 (92784, '2022-06-17', 2332, 87569, 5526, 55905, '1.0000', '32.4933', '32.4933', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92785, '2022-06-17', 9231, 87570, 5526, NULL, '1.0000', '12.9000', '12.9000', '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 (92786, '2022-06-17', 3029, 87571, 5526, NULL, '1.0000', '123.8886', '123.8886', '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 (92787, '2022-06-17', 9794, 87572, 5526, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92788, '2022-06-17', 7411, 87573, 5526, NULL, '2.0000', '1.3013', '1.3013', '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 (92789, '2022-06-17', 2295, 87574, 5526, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92790, '2022-06-17', 7672, 87575, 5526, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92791, '2022-06-17', 1806, 87576, 5526, 51202, '1.0000', '29.2252', '29.2252', '40.5000', '40.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92792, '2022-06-17', 9862, 87577, 5526, 52197, '1.0000', '16.5000', '16.5000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92793, '2022-06-17', 7324, 87578, 5526, NULL, '3.0000', '5.4813', '5.4813', '8.5000', '8.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 (92794, '2022-06-17', 1410, 87579, 5526, NULL, '1.0000', '48.8052', '48.8052', '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 (92795, '2022-06-17', 2295, 87580, 5526, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92796, '2022-06-17', 1621, 87581, 5526, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '29.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92797, '2022-06-17', 1935, 87582, 5526, NULL, '1.0000', '0.7671', '0.7671', '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 (92798, '2022-06-17', 1425, 87583, 5526, NULL, '1.0000', '19.3384', '19.3384', '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 (92799, '2022-06-17', 2405, 87584, 5526, 56851, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '24.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92800, '2022-06-17', 2237, 87585, 5526, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92801, '2022-06-17', 1827, 87586, 5526, NULL, '10.0000', '0.2000', '0.2000', '0.3000', '0.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 (92802, '2022-06-17', 7411, 87587, 5526, NULL, '1.0000', '1.3013', '1.3013', '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 (92803, '2022-06-17', 2730, 87588, 5526, 51643, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92804, '2022-06-17', 2320, 87589, 5526, 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 (92805, '2022-06-17', 2379, 87590, 5526, NULL, '1.0000', '-3.0170', '-3.0170', '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 (92806, '2022-06-17', 2283, 87591, 5526, 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 (92807, '2022-06-17', 9741, 87592, 5526, NULL, '1.0000', '7.8500', '7.8500', '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 (92808, '2022-06-17', 7411, 87593, 5526, NULL, '1.0000', '1.3013', '1.3013', '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 (92809, '2022-06-17', 1755, 87594, 5526, 13763, '1.0000', '5.8128', '5.8128', '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 (92810, '2022-06-17', 2315, 87595, 5526, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92811, '2022-06-17', 2010, 87596, 5526, 57153, '4.0000', '1.2882', '1.2882', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92812, '2022-06-17', 7707, 87597, 5526, NULL, '1.0000', '7.0000', '7.0000', '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 (92813, '2022-06-17', 2283, 87598, 5526, 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 (92814, '2022-06-17', 7411, 87599, 5526, NULL, '1.0000', '1.3013', '1.3013', '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 (92815, '2022-06-17', 7324, 87600, 5526, NULL, '1.0000', '5.4813', '5.4813', '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 (92816, '2022-06-17', 8677, 87601, 5526, NULL, '1.0000', '496.2705', '496.2705', '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 (92817, '2022-06-17', 2295, 87602, 5526, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92818, '2022-06-17', 2379, 87603, 5526, NULL, '1.0000', '-3.0170', '-3.0170', '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 (92819, '2022-06-17', 9834, 87604, 5526, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92820, '2022-06-17', 1748, 87605, 5526, NULL, '1.0000', '0.3200', '0.3200', '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 (92821, '2022-06-17', 2289, 87606, 5526, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92822, '2022-06-17', 1342, 87607, 5526, NULL, '1.0000', '7.2732', '7.2732', '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 (92823, '2022-06-17', 2295, 87608, 5526, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92824, '2022-06-17', 2315, 87609, 5526, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92825, '2022-06-17', 9695, 87610, 5526, 57498, '2.0000', '5.2342', '5.2342', '8.0000', '8.0000', '44.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92826, '2022-06-17', 3044, 87611, 5526, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '18.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 (92827, '2022-06-17', 7713, 87612, 5526, 57060, '1.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92828, '2022-06-17', 8097, 87613, 5527, 57444, '3.0000', '5.2765', '5.2765', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92829, '2022-06-17', 8548, 87614, 5527, NULL, '1.0000', '-0.2308', '-0.2308', '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 (92830, '2022-06-17', 1856, 87615, 5527, 57447, '1.0000', '0.0091', '0.0091', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92831, '2022-06-17', 9250, 87616, 5527, NULL, '1.0000', '6.8203', '6.8203', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92832, '2022-06-17', 9734, 87617, 5527, 54140, '5.0000', '0.3200', '0.3200', '0.5000', '0.5000', '18.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92833, '2022-06-17', 9794, 87618, 5527, 50668, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92834, '2022-06-17', 7317, 87619, 5527, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92835, '2022-06-17', 7711, 87620, 5527, 57155, '1.0000', '2220.0220', '2220.0220', '65.5000', '65.5000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92836, '2022-06-17', 7917, 87621, 5527, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '96.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92837, '2022-06-17', 7672, 87622, 5527, 57408, '2.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92838, '2022-06-17', 7347, 87623, 5527, 50689, '1.0000', '21.9000', '21.9000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92839, '2022-06-17', 7645, 87624, 5527, 54136, '1.0000', '166.0200', '166.0200', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92840, '2022-06-17', 2699, 87625, 5527, 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 (92841, '2022-06-17', 7952, 87626, 5527, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92842, '2022-06-17', 7674, 87627, 5527, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92843, '2022-06-17', 1837, 87628, 5527, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92844, '2022-06-17', 8172, 87629, 5527, NULL, '1.0000', '40.7000', '40.7000', '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 (92845, '2022-06-17', 7317, 87630, 5527, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92846, '2022-06-17', 7848, 87631, 5527, NULL, '1.0000', '-144.5928', '-144.5928', '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 (92847, '2022-06-17', 7954, 87632, 5527, NULL, '4.0000', '-15800.4581', '-15800.4581', '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 (92848, '2022-06-17', 1339, 87633, 5527, 57191, '1.0000', '2.6205', '2.6205', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92849, '2022-06-17', 8878, 87634, 5527, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92850, '2022-06-17', 7820, 87635, 5527, NULL, '1.0000', '-296.8250', '-296.8250', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92851, '2022-06-17', 7641, 87636, 5527, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92852, '2022-06-17', 1590, 87637, 5528, 9437, '3.0000', '1.7700', '1.7700', '3.5000', '3.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 (92853, '2022-06-17', 9734, 87638, 5528, 56220, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92854, '2022-06-17', 7473, 87639, 5528, NULL, '1.0000', '0.5300', '0.5300', '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 (92855, '2022-06-17', 7608, 87640, 5528, NULL, '1.0000', '6.9800', '6.9800', '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 (92856, '2022-06-17', 8735, 87641, 5528, NULL, '1.0000', '6.2000', '6.2000', '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 (92857, '2022-06-17', 2821, 87642, 5528, 56959, '1.0000', '3.4262', '3.4262', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92858, '2022-06-17', 7881, 87643, 5528, NULL, '1.0000', '2.7500', '2.7500', '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 (92859, '2022-06-17', 2411, 87644, 5528, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92860, '2022-06-17', 7741, 87645, 5528, 56896, '1.0000', '3.0439', '3.0439', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92861, '2022-06-17', 1910, 87646, 5528, NULL, '1.0000', '0.4600', '0.4600', '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 (92862, '2022-06-17', 3019, 87647, 5528, 55831, '1.0000', '11.3964', '11.3964', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92863, '2022-06-17', 2558, 87648, 5528, 44508, '7.0000', '5.4253', '5.4253', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92864, '2022-06-17', 9940, 87649, 5528, 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 (92865, '2022-06-17', 1342, 87650, 5528, 56928, '1.0000', '10.0474', '10.0474', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92866, '2022-06-17', 2169, 87651, 5528, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92867, '2022-06-17', 9750, 87652, 5528, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '31.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92868, '2022-06-17', 1645, 87653, 5528, 54640, '1.0000', '5.5494', '5.5494', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92869, '2022-06-17', 7482, 87654, 5528, NULL, '1.0000', '3.0500', '3.0500', '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 (92870, '2022-06-17', 9158, 87655, 5528, 34699, '1.0000', '5.8900', '5.8900', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92871, '2022-06-17', 9942, 87656, 5528, 56923, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92872, '2022-06-17', 1863, 87657, 5528, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92873, '2022-06-17', 7713, 87658, 5528, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (92874, '2022-06-17', 1342, 87659, 5528, 56928, '1.0000', '10.0474', '10.0474', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92875, '2022-06-17', 1785, 87660, 5528, 54608, '1.0000', '15.2971', '15.2971', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92876, '2022-06-17', 9940, 87661, 5528, 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 (92877, '2022-06-17', 2315, 87662, 5528, 3069, '3.0000', '0.3300', '0.3300', '1.0000', '1.0000', '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 (92878, '2022-06-17', 9827, 87663, 5528, 55507, '1.0000', '16.9421', '16.9421', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92879, '2022-06-17', 9943, 87664, 5528, 56924, '1.0000', '10.5500', '10.5500', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92880, '2022-06-17', 7745, 87665, 5529, 57424, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92881, '2022-06-17', 7611, 87666, 5529, 53521, '1.0000', '17.6895', '17.6895', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92882, '2022-06-17', 9272, 87667, 5529, NULL, '1.0000', '3.1000', '3.1000', '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 (92883, '2022-06-17', 7317, 87668, 5529, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92884, '2022-06-17', 8744, 87669, 5530, 55436, '1.0000', '3.5857', '3.5857', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92885, '2022-06-17', 2858, 87670, 5530, 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 (92886, '2022-06-17', 1863, 87671, 5530, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92887, '2022-06-17', 2315, 87672, 5530, 3069, '2.0000', '0.3300', '0.3300', '1.0000', '1.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 (92888, '2022-06-17', 2262, 87673, 5531, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92889, '2022-06-17', 7685, 87674, 5531, NULL, '1.0000', '31.2000', '31.2000', '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 (92890, '2022-06-17', 1331, 87675, 5531, NULL, '1.0000', '4.2000', '4.2000', '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 (92891, '2022-06-17', 2262, 87676, 5531, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92892, '2022-06-17', 2088, 87677, 5531, 55677, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92893, '2022-06-17', 2169, 87678, 5531, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92894, '2022-06-17', 7472, 87679, 5531, NULL, '1.0000', '-56.4939', '-56.4939', '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 (92895, '2022-06-17', 7612, 87680, 5531, NULL, '1.0000', '1.6100', '1.6100', '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 (92896, '2022-06-17', 1935, 87681, 5531, NULL, '1.0000', '0.7671', '0.7671', '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 (92897, '2022-06-17', 1620, 87682, 5531, 55636, '4.0000', '2.2583', '2.2583', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92898, '2022-06-17', 2363, 87683, 5531, NULL, '1.0000', '6.8800', '6.8800', '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 (92899, '2022-06-17', 9828, 87684, 5531, NULL, '1.0000', '2.9100', '2.9100', '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 (92900, '2022-06-17', 9695, 87685, 5531, 57498, '1.0000', '5.2342', '5.2342', '8.0000', '8.0000', '43.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92901, '2022-06-17', 9531, 87686, 5531, 56862, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92902, '2022-06-17', 1620, 87687, 5531, 55636, '1.0000', '2.2583', '2.2583', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92903, '2022-06-17', 1912, 87688, 5531, 54917, '4.0000', '0.6209', '0.6209', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92904, '2022-06-17', 1306, 87689, 5531, NULL, '3.0000', '2.1000', '2.1000', '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 (92905, '2022-06-17', 2073, 87690, 5531, 55667, '5.0000', '2.3000', '2.3000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92906, '2022-06-17', 2062, 87691, 5531, 13741, '2.0000', '5.8900', '5.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 (92907, '2022-06-18', 1947, 87692, 5532, 54175, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92908, '2022-06-18', 2318, 87693, 5532, 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 (92909, '2022-06-18', 2948, 87694, 5532, 55643, '2.0000', '0.9382', '0.9382', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92910, '2022-06-18', 2444, 87695, 5532, 57149, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92911, '2022-06-18', 2010, 87696, 5532, 57153, '1.0000', '1.2882', '1.2882', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92912, '2022-06-18', 2392, 87697, 5532, 48944, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92913, '2022-06-18', 1501, 87698, 5532, NULL, '1.0000', '0.9225', '0.9225', '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 (92914, '2022-06-18', 2315, 87699, 5532, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92915, '2022-06-18', 7593, 87700, 5532, NULL, '1.0000', '0.8000', '0.8000', '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 (92916, '2022-06-18', 9794, 87701, 5532, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92917, '2022-06-18', 9856, 87702, 5532, 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 (92918, '2022-06-18', 2649, 87703, 5532, 56466, '1.0000', '99.3000', '99.3000', '131.0000', '131.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92919, '2022-06-18', 9715, 87704, 5532, 47053, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92920, '2022-06-18', 7584, 87705, 5532, 53945, '1.0000', '3.1378', '3.1378', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92921, '2022-06-18', 2285, 87706, 5532, NULL, '1.0000', '9.3380', '9.3380', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92922, '2022-06-18', 1628, 87707, 5532, 55896, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92923, '2022-06-18', 7753, 87708, 5532, NULL, '1.0000', '3.1400', '3.1400', '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 (92924, '2022-06-18', 1499, 87709, 5532, 54918, '4.0000', '0.3993', '0.3993', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92925, '2022-06-18', 8444, 87710, 5532, 55700, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92926, '2022-06-18', 1432, 87711, 5532, 55707, '1.0000', '12.1630', '12.1630', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92927, '2022-06-18', 1677, 87712, 5532, NULL, '1.0000', '6.3000', '6.3000', '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 (92928, '2022-06-18', 1946, 87713, 5532, NULL, '1.0000', '-4.7391', '-4.7391', '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 (92929, '2022-06-18', 1846, 87714, 5532, NULL, '1.0000', '478.9750', '478.9750', '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 (92930, '2022-06-18', 7411, 87715, 5532, NULL, '2.0000', '1.3013', '1.3013', '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 (92931, '2022-06-18', 9803, 87716, 5532, 51656, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92932, '2022-06-18', 8200, 87717, 5532, NULL, '1.0000', '8.5500', '8.5500', '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 (92933, '2022-06-18', 1307, 87718, 5532, NULL, '1.0000', '-59.9897', '-59.9897', '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 (92934, '2022-06-18', 8208, 87719, 5532, NULL, '2.0000', '33.0000', '33.0000', '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 (92935, '2022-06-18', 9828, 87720, 5532, NULL, '1.0000', '2.9100', '2.9100', '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 (92936, '2022-06-18', 2821, 87721, 5532, NULL, '1.0000', '3.3984', '3.3984', '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 (92937, '2022-06-18', 9830, 87722, 5532, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92938, '2022-06-18', 9832, 87723, 5532, 57495, '1.0000', '1.7283', '1.7283', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92939, '2022-06-18', 8622, 87724, 5532, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92940, '2022-06-18', 2916, 87725, 5532, NULL, '1.0000', '777.2552', '777.2552', '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 (92941, '2022-06-18', 2643, 87726, 5532, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92942, '2022-06-18', 2384, 87727, 5532, NULL, '2.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92943, '2022-06-18', 1602, 87728, 5533, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92944, '2022-06-18', 9920, 87729, 5533, NULL, '1.0000', '3.3000', '3.3000', '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 (92945, '2022-06-18', 9902, 87730, 5533, NULL, '1.0000', '8.2875', '8.2875', '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 (92946, '2022-06-18', 2643, 87731, 5533, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92947, '2022-06-18', 8900, 87732, 5533, NULL, '2.0000', '16.4000', '16.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 (92948, '2022-06-18', 2916, 87733, 5534, 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 (92949, '2022-06-18', 2315, 87734, 5534, 2735, '-476.0000', '0.3300', '0.3300', '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 (92950, '2022-06-18', 2315, 87734, 5534, NULL, '477.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-477.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92951, '2022-06-18', 1841, 87735, 5534, NULL, '4.0000', '142.5780', '142.5780', '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 (92952, '2022-06-18', 1669, 87736, 5534, 11165, '-5.0000', '6.7000', '6.7000', '9.5000', '9.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 (92953, '2022-06-18', 1669, 87736, 5534, NULL, '19.0000', '6.7000', '6.7000', '9.5000', '9.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 (92954, '2022-06-18', 1851, 87737, 5534, 8627, '-12.0000', '10.6568', '10.6568', '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 (92955, '2022-06-18', 1851, 87737, 5534, NULL, '13.0000', '10.6568', '10.6568', '20.0000', '20.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 (92956, '2022-06-18', 1533, 87738, 5534, 10381, '-32.0000', '2.5917', '2.5917', '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 (92957, '2022-06-18', 1533, 87738, 5534, NULL, '33.0000', '2.5917', '2.5917', '5.5000', '5.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 (92958, '2022-06-18', 1935, 87739, 5534, 5586, '-140.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 (92959, '2022-06-18', 1935, 87739, 5534, NULL, '144.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-144.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92960, '2022-06-18', 2916, 87740, 5534, 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 (92961, '2022-06-18', 1307, 87741, 5534, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '18.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 (92962, '2022-06-18', 7741, 87742, 5534, NULL, '1.0000', '1.2000', '1.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 (92963, '2022-06-18', 7411, 87743, 5534, NULL, '1.0000', '1.3500', '1.3500', '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 (92964, '2022-06-18', 2169, 87744, 5534, 10737, '-163.0000', '3.8397', '3.8397', '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 (92965, '2022-06-18', 2169, 87744, 5534, NULL, '164.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-164.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92966, '2022-06-18', 7376, 87745, 5534, NULL, '2.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92967, '2022-06-18', 1787, 87746, 5534, 4905, '-26.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 (92968, '2022-06-18', 1787, 87746, 5534, NULL, '27.0000', '0.8100', '0.8100', '2.0000', '2.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 (92969, '2022-06-18', 9734, 87747, 5534, NULL, '2.0000', '0.3200', '0.3200', '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 (92970, '2022-06-18', 1785, 87748, 5534, 4903, '-7.0000', '4.8380', '4.8380', '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 (92971, '2022-06-18', 1785, 87748, 5534, NULL, '8.0000', '4.8380', '4.8380', '24.0000', '24.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 (92972, '2022-06-18', 2384, 87749, 5534, 4087, '-45.0000', '0.4000', '0.4000', '0.7000', '0.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 (92973, '2022-06-18', 2384, 87749, 5534, NULL, '47.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (92974, '2022-06-18', 1652, 87750, 5534, 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 (92975, '2022-06-18', 2354, 87751, 5534, 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 (92976, '2022-06-18', 1695, 87752, 5534, 12925, '-14.0000', '15.5000', '15.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 (92977, '2022-06-18', 1695, 87752, 5534, NULL, '15.0000', '15.5000', '15.5000', '26.0000', '26.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 (92978, '2022-06-18', 1452, 87753, 5534, 928, '2.0000', '45.6150', '45.6150', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92979, '2022-06-18', 2858, 87754, 5534, 17772, '-92.0000', '1.0000', '1.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 (92980, '2022-06-18', 2858, 87754, 5534, NULL, '94.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-94.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92981, '2022-06-18', 1912, 87755, 5534, 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 (92982, '2022-06-18', 1335, 87756, 5534, 12031, '-37.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 (92983, '2022-06-18', 1335, 87756, 5534, NULL, '39.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92984, '2022-06-18', 9930, 87757, 5534, 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 (92985, '2022-06-18', 9695, 87758, 5534, NULL, '1.0000', '4.5000', '4.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 (92986, '2022-06-18', 8746, 87759, 5534, NULL, '1.0000', '3.1500', '3.1500', '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 (92987, '2022-06-18', 2633, 87760, 5534, 17589, '-10.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 (92988, '2022-06-18', 2633, 87760, 5534, NULL, '11.0000', '3.5000', '3.5000', '5.0000', '5.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 (92989, '2022-06-18', 2379, 87761, 5534, 4032, '-67.0000', '1.5900', '1.5900', '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 (92990, '2022-06-18', 2379, 87761, 5534, NULL, '68.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92991, '2022-06-18', 1529, 87762, 5534, NULL, '1.0000', '3.5500', '3.5500', '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 (92992, '2022-06-18', 1667, 87763, 5534, 9745, '-61.0000', '5.9400', '5.9400', '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 (92993, '2022-06-18', 1667, 87763, 5534, NULL, '62.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92994, '2022-06-18', 2414, 87764, 5534, 4620, '-24.0000', '3.4000', '3.4000', '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 (92995, '2022-06-18', 2414, 87764, 5534, NULL, '26.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-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 (92996, '2022-06-18', 8753, 87765, 5535, 54116, '1.0000', '3.3875', '3.3875', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92997, '2022-06-18', 2315, 87766, 5535, 56594, '2.0000', '0.7474', '0.7474', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92998, '2022-06-18', 7693, 87767, 5535, 51275, '1.0000', '4.8831', '4.8831', '5.4000', '5.4000', '3.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92999, '2022-06-18', 8040, 87768, 5535, 57452, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93000, '2022-06-18', 7641, 87769, 5535, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93001, '2022-06-18', 7535, 87770, 5535, 57390, '1.0000', '5.1390', '5.1390', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93002, '2022-06-18', 7666, 87771, 5535, 56570, '1.0000', '8.5480', '8.5480', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93003, '2022-06-18', 9729, 87772, 5535, 56613, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93004, '2022-06-18', 9794, 87773, 5535, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93005, '2022-06-18', 7674, 87774, 5535, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93006, '2022-06-18', 7887, 87775, 5535, 48316, '1.0000', '17.9949', '17.9949', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93007, '2022-06-18', 9637, 87776, 5535, 43544, '1.0000', '36.5000', '36.5000', '48.5000', '48.5000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93008, '2022-06-18', 2227, 87777, 5535, 53630, '1.0000', '17.1667', '17.1667', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93009, '2022-06-18', 8069, 87778, 5535, 56523, '1.0000', '35.9168', '35.9168', '52.0000', '52.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93010, '2022-06-18', 8084, 87779, 5535, 56160, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93011, '2022-06-18', 2699, 87780, 5535, 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 (93012, '2022-06-18', 9715, 87781, 5535, 56665, '1.0000', '9.7529', '9.7529', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93013, '2022-06-18', 9895, 87782, 5535, 54443, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93014, '2022-06-18', 7641, 87783, 5535, 56190, '2.0000', '6.9740', '6.9740', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93015, '2022-06-18', 7675, 87784, 5535, NULL, '1.0000', '84.8590', '84.8590', '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 (93016, '2022-06-18', 9734, 87785, 5535, 54140, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93017, '2022-06-18', 8152, 87786, 5535, NULL, '1.0000', '0.1400', '0.1400', '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 (93018, '2022-06-18', 7514, 87787, 5535, NULL, '2.0000', '17929.5233', '17929.5233', '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 (93019, '2022-06-18', 7411, 87788, 5535, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93020, '2022-06-18', 2284, 87789, 5535, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93021, '2022-06-18', 2643, 87790, 5535, 57522, '1.0000', '-0.1768', '-0.1768', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93022, '2022-06-18', 7473, 87791, 5535, NULL, '5.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (93023, '2022-06-18', 2506, 87792, 5535, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93024, '2022-06-18', 9695, 87793, 5535, 57541, '2.0000', '5.7411', '5.7411', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93025, '2022-06-18', 7674, 87794, 5535, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93026, '2022-06-18', 9880, 87795, 5535, NULL, '1.0000', '3.4200', '3.4200', '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 (93027, '2022-06-18', 9729, 87796, 5535, 56613, '4.0000', '0.6200', '0.6200', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93028, '2022-06-18', 7412, 87797, 5535, 56025, '2.0000', '2.1023', '2.1023', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93029, '2022-06-18', 8041, 87798, 5535, NULL, '1.0000', '0.4700', '0.4700', '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 (93030, '2022-06-18', 8395, 87799, 5535, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93031, '2022-06-18', 7446, 87800, 5535, 56607, '1.0000', '1.5241', '1.5241', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93032, '2022-06-18', 8457, 87801, 5535, NULL, '1.0000', '4.9044', '4.9044', '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 (93033, '2022-06-18', 9204, 87802, 5535, 56564, '1.0000', '5.9356', '5.9356', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93034, '2022-06-18', 7753, 87803, 5535, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93035, '2022-06-18', 2699, 87804, 5535, 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 (93036, '2022-06-18', 8646, 87805, 5535, NULL, '10.0000', '35.0000', '35.0000', '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 (93037, '2022-06-18', 7317, 87806, 5535, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93038, '2022-06-18', 7952, 87807, 5535, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93039, '2022-06-18', 7509, 87808, 5535, 57441, '2.0000', '10.1903', '10.1903', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93040, '2022-06-18', 7862, 87809, 5535, NULL, '1.0000', '87.4250', '87.4250', '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 (93041, '2022-06-18', 8084, 87810, 5535, 56160, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93042, '2022-06-18', 7690, 87811, 5535, NULL, '3.0000', '18.3814', '18.3814', '24.0000', '24.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 (93043, '2022-06-18', 9417, 87812, 5535, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93044, '2022-06-18', 7782, 87813, 5535, NULL, '1.0000', '5.0000', '5.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 (93045, '2022-06-18', 7506, 87814, 5535, NULL, '1.0000', '15.0000', '15.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 (93046, '2022-06-18', 7848, 87815, 5535, NULL, '1.0000', '-144.5928', '-144.5928', '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 (93047, '2022-06-18', 2061, 87816, 5535, 57399, '2.0000', '12.4947', '12.4947', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93048, '2022-06-18', 8878, 87817, 5535, 57207, '2.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93049, '2022-06-18', 9741, 87818, 5535, 46920, '1.0000', '7.6000', '7.6000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93050, '2022-06-18', 7715, 87819, 5535, 57195, '1.0000', '3.4699', '3.4699', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93051, '2022-06-18', 7333, 87820, 5535, NULL, '5.0000', '-5.7451', '-5.7451', '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 (93052, '2022-06-18', 8739, 87821, 5535, 56479, '1.0000', '12.5156', '12.5156', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93053, '2022-06-18', 7666, 87822, 5535, 56570, '1.0000', '8.5480', '8.5480', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93054, '2022-06-18', 7317, 87823, 5535, 56664, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93055, '2022-06-18', 8745, 87824, 5535, 57514, '1.0000', '11.9707', '11.9707', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93056, '2022-06-18', 8127, 87825, 5535, NULL, '2.0000', '24.5300', '24.5300', '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 (93057, '2022-06-18', 1450, 87826, 5536, 5570, '-44.0000', '61.1074', '61.1074', '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 (93058, '2022-06-18', 1450, 87826, 5536, NULL, '54.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93059, '2022-06-18', 2633, 87827, 5536, 17589, '-11.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 (93060, '2022-06-18', 2633, 87827, 5536, NULL, '12.0000', '3.5000', '3.5000', '5.0000', '5.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 (93061, '2022-06-18', 9672, 87828, 5536, NULL, '1.0000', '2.0500', '2.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 (93062, '2022-06-18', 1855, 87829, 5536, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (93063, '2022-06-18', 1528, 87830, 5536, NULL, '1.0000', '38.6400', '38.6400', '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 (93064, '2022-06-18', 1689, 87831, 5536, 4897, '-17.0000', '60.7198', '60.7198', '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 (93065, '2022-06-18', 1689, 87831, 5536, NULL, '18.0000', '60.7198', '60.7198', '21.0000', '21.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 (93066, '2022-06-18', 1519, 87832, 5536, 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 (93067, '2022-06-18', 1666, 87833, 5536, 3236, '-39.0000', '2.7100', '2.7100', '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 (93068, '2022-06-18', 1666, 87833, 5536, NULL, '40.0000', '2.7100', '2.7100', '4.0000', '4.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 (93069, '2022-06-18', 1432, 87834, 5536, NULL, '1.0000', '8.1574', '8.1574', '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 (93070, '2022-06-18', 3025, 87835, 5536, NULL, '1.0000', '1.8000', '1.8000', '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 (93071, '2022-06-18', 9089, 87836, 5536, NULL, '1.0000', '3.8000', '3.8000', '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 (93072, '2022-06-18', 9627, 87837, 5536, 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 (93073, '2022-06-18', 1651, 87838, 5536, 3222, '-65.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93074, '2022-06-18', 1651, 87838, 5536, NULL, '66.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93075, '2022-06-18', 9734, 87839, 5536, NULL, '2.0000', '0.3200', '0.3200', '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 (93076, '2022-06-18', 9711, 87840, 5536, NULL, '1.0000', '5.2800', '5.2800', '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 (93077, '2022-06-18', 7411, 87841, 5536, NULL, '1.0000', '1.3500', '1.3500', '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 (93078, '2022-06-18', 1910, 87842, 5536, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '26.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 (93079, '2022-06-18', 2315, 87843, 5536, 2735, '-477.0000', '0.3300', '0.3300', '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 (93080, '2022-06-18', 2315, 87843, 5536, NULL, '478.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-478.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93081, '2022-06-18', 2251, 87844, 5536, 2788, '-26.0000', '10.9700', '10.9700', '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 (93082, '2022-06-18', 2251, 87844, 5536, NULL, '27.0000', '10.9700', '10.9700', '19.5000', '19.5000', '-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 (93083, '2022-06-18', 1841, 87845, 5536, NULL, '4.0000', '142.5780', '142.5780', '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 (93084, '2022-06-18', 1337, 87846, 5536, 10809, '-24.0000', '2.0000', '2.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 (93085, '2022-06-18', 1337, 87846, 5536, NULL, '26.0000', '2.0000', '2.0000', '3.5000', '3.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 (93086, '2022-06-18', 2839, 87847, 5536, NULL, '1.0000', '4.5000', '4.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 (93087, '2022-06-18', 2642, 87848, 5536, 10573, '-20.0000', '9.2000', '9.2000', '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 (93088, '2022-06-18', 2642, 87848, 5536, NULL, '21.0000', '9.2000', '9.2000', '15.0000', '15.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93089, '2022-06-18', 1602, 87849, 5536, 5897, '-164.0000', '6.7859', '6.7859', '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 (93090, '2022-06-18', 1602, 87849, 5536, NULL, '165.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-165.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93091, '2022-06-18', 7411, 87850, 5536, NULL, '1.0000', '1.3500', '1.3500', '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 (93092, '2022-06-18', 2237, 87851, 5536, 2781, '-71.0000', '1.0600', '1.0600', '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 (93093, '2022-06-18', 2237, 87851, 5536, NULL, '72.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93094, '2022-06-18', 2000, 87852, 5536, 6363, '-2.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 (93095, '2022-06-18', 2000, 87852, 5536, NULL, '5.0000', '7.5000', '7.5000', '10.0000', '10.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 (93096, '2022-06-18', 1856, 87853, 5536, NULL, '1.0000', '4.2500', '4.2500', '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 (93097, '2022-06-18', 1654, 87854, 5537, 39888, '1.0000', '9.2613', '9.2613', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93098, '2022-06-18', 1425, 87855, 5537, NULL, '1.0000', '19.3384', '19.3384', '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 (93099, '2022-06-18', 1314, 87856, 5537, 55930, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93100, '2022-06-18', 9794, 87857, 5537, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93101, '2022-06-18', 9856, 87858, 5537, 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 (93102, '2022-06-18', 8208, 87859, 5537, NULL, '2.0000', '33.0000', '33.0000', '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 (93103, '2022-06-18', 2315, 87860, 5537, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93104, '2022-06-18', 2169, 87861, 5537, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93105, '2022-06-18', 1342, 87862, 5537, NULL, '1.0000', '7.2732', '7.2732', '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 (93106, '2022-06-18', 7590, 87863, 5537, 55548, '1.0000', '2.7957', '2.7957', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93107, '2022-06-18', 1904, 87864, 5537, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93108, '2022-06-18', 1340, 87865, 5537, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93109, '2022-06-18', 7579, 87866, 5537, NULL, '1.0000', '15.0000', '15.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 (93110, '2022-06-18', 1331, 87867, 5537, NULL, '1.0000', '4.2000', '4.2000', '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 (93111, '2022-06-18', 2298, 87868, 5537, NULL, '1.0000', '-13.6702', '-13.6702', '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 (93112, '2022-06-18', 2337, 87869, 5537, NULL, '1.0000', '51.0000', '51.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93113, '2022-06-18', 2463, 87870, 5537, NULL, '3.0000', '2.8700', '2.8700', '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 (93114, '2022-06-18', 1884, 87871, 5537, NULL, '1.0000', '17.4104', '17.4104', '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 (93115, '2022-06-18', 9902, 87872, 5537, NULL, '1.0000', '8.2875', '8.2875', '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 (93116, '2022-06-18', 2237, 87873, 5537, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93117, '2022-06-18', 2315, 87874, 5537, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93118, '2022-06-18', 2999, 87875, 5537, 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 (93119, '2022-06-18', 9831, 87876, 5537, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93120, '2022-06-18', 7514, 87877, 5537, NULL, '1.0000', '2.2500', '2.2500', '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 (93121, '2022-06-18', 1342, 87878, 5537, NULL, '1.0000', '7.2732', '7.2732', '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 (93122, '2022-06-18', 2315, 87879, 5537, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93123, '2022-06-18', 1529, 87880, 5537, 50073, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93124, '2022-06-18', 1690, 87881, 5537, 55954, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93125, '2022-06-18', 2315, 87882, 5537, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93126, '2022-06-18', 8208, 87883, 5537, NULL, '12.0000', '33.0000', '33.0000', '0.5000', '0.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 (93127, '2022-06-18', 1935, 87884, 5537, NULL, '1.0000', '0.7671', '0.7671', '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 (93128, '2022-06-18', 9695, 87885, 5537, 57498, '1.0000', '5.2342', '5.2342', '8.0000', '8.0000', '42.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93129, '2022-06-18', 2384, 87886, 5537, NULL, '10.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-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 (93130, '2022-06-18', 1846, 87887, 5537, NULL, '1.0000', '478.9750', '478.9750', '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 (93131, '2022-06-18', 7715, 87888, 5537, NULL, '1.0000', '1.8900', '1.8900', '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 (93132, '2022-06-18', 8878, 87889, 5537, NULL, '2.0000', '3.8136', '3.8136', '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 (93133, '2022-06-18', 2169, 87890, 5537, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93134, '2022-06-18', 1695, 87891, 5537, 55947, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93135, '2022-06-18', 9737, 87892, 5537, NULL, '1.0000', '9.9667', '9.9667', '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 (93136, '2022-06-18', 1426, 87893, 5537, 54941, '1.0000', '36.8416', '36.8416', '47.5000', '47.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93137, '2022-06-18', 7672, 87894, 5537, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93138, '2022-06-18', 7411, 87895, 5537, NULL, '1.0000', '1.3013', '1.3013', '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 (93139, '2022-06-18', 1499, 87896, 5537, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93140, '2022-06-18', 2302, 87897, 5537, 56413, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93141, '2022-06-18', 2302, 87897, 5537, 55626, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93142, '2022-06-18', 1314, 87898, 5537, 55930, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93143, '2022-06-18', 7933, 87899, 5537, NULL, '1.0000', '-0.1222', '-0.1222', '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 (93144, '2022-06-18', 2661, 87900, 5537, NULL, '1.0000', '9.0000', '9.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 (93145, '2022-06-18', 2821, 87901, 5537, NULL, '1.0000', '3.3984', '3.3984', '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 (93146, '2022-06-18', 2228, 87902, 5537, 57109, '1.0000', '32.0000', '32.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93147, '2022-06-18', 2237, 87903, 5537, 49715, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93148, '2022-06-18', 3058, 87904, 5537, NULL, '1.0000', '-23.3000', '-23.3000', '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 (93149, '2022-06-18', 2315, 87905, 5537, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93150, '2022-06-18', 1912, 87906, 5537, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93151, '2022-06-18', 2262, 87907, 5537, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93152, '2022-06-18', 8878, 87908, 5537, NULL, '1.0000', '3.8136', '3.8136', '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 (93153, '2022-06-18', 7641, 87909, 5537, NULL, '1.0000', '1.9000', '1.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 (93154, '2022-06-18', 2661, 87910, 5537, NULL, '1.0000', '9.0000', '9.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 (93155, '2022-06-18', 2864, 87911, 5537, NULL, '1.0000', '1.5150', '1.5150', '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 (93156, '2022-06-18', 7411, 87912, 5537, NULL, '1.0000', '1.3013', '1.3013', '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 (93157, '2022-06-18', 1499, 87913, 5537, 54918, '3.0000', '0.3993', '0.3993', '0.6000', '0.6000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93158, '2022-06-18', 7411, 87914, 5537, NULL, '3.0000', '1.3013', '1.3013', '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 (93159, '2022-06-18', 1810, 87915, 5537, NULL, '1.0000', '15.0116', '15.0116', '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 (93160, '2022-06-18', 1935, 87916, 5537, NULL, '1.0000', '0.7671', '0.7671', '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 (93161, '2022-06-18', 1342, 87917, 5537, NULL, '1.0000', '7.2732', '7.2732', '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 (93162, '2022-06-18', 1867, 87918, 5537, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93163, '2022-06-18', 1519, 87919, 5537, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93164, '2022-06-18', 2293, 87920, 5537, NULL, '3.0000', '-17.4320', '-17.4320', '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 (93165, '2022-06-18', 1810, 87921, 5537, NULL, '1.0000', '15.0116', '15.0116', '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 (93166, '2022-06-18', 9960, 87922, 5537, NULL, '2.0000', '3.3000', '3.3000', '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 (93167, '2022-06-18', 7743, 87923, 5537, NULL, '1.0000', '7.3900', '7.3900', '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 (93168, '2022-06-18', 1855, 87924, 5537, NULL, '2.0000', '1.4820', '1.4820', '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 (93169, '2022-06-18', 7411, 87925, 5537, NULL, '2.0000', '1.3013', '1.3013', '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 (93170, '2022-06-18', 9831, 87926, 5537, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93171, '2022-06-18', 7713, 87927, 5537, 57060, '5.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93172, '2022-06-18', 2169, 87928, 5537, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93173, '2022-06-18', 9737, 87929, 5537, NULL, '1.0000', '9.9667', '9.9667', '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 (93174, '2022-06-18', 9834, 87930, 5537, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93175, '2022-06-18', 1519, 87931, 5537, 57083, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93176, '2022-06-18', 9959, 87932, 5537, NULL, '2.0000', '5.8800', '5.8800', '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 (93177, '2022-06-18', 2315, 87933, 5537, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93178, '2022-06-18', 8124, 87934, 5537, 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 (93179, '2022-06-18', 2342, 87935, 5537, 54886, '10.0000', '2.2091', '2.2091', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93180, '2022-06-18', 7459, 87936, 5537, NULL, '1.0000', '-15.3118', '-15.3118', '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 (93181, '2022-06-18', 2020, 87937, 5537, 55715, '1.0000', '1309.0500', '1309.0500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93182, '2022-06-18', 2031, 87938, 5537, 54841, '1.0000', '5.2857', '5.2857', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93183, '2022-06-18', 1855, 87939, 5537, NULL, '2.0000', '1.4820', '1.4820', '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 (93184, '2022-06-18', 8214, 87940, 5537, NULL, '1.0000', '16.0000', '16.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 (93185, '2022-06-18', 2320, 87941, 5537, 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 (93186, '2022-06-18', 1590, 87942, 5537, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93187, '2022-06-18', 9933, 87943, 5537, 57114, '1.0000', '16.9000', '16.9000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93188, '2022-06-18', 2315, 87944, 5537, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93189, '2022-06-18', 8699, 87945, 5537, NULL, '1.0000', '6.3800', '6.3800', '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 (93190, '2022-06-18', 2661, 87946, 5537, NULL, '1.0000', '9.0000', '9.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 (93191, '2022-06-18', 2864, 87947, 5537, NULL, '1.0000', '1.5150', '1.5150', '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 (93192, '2022-06-18', 2821, 87948, 5537, NULL, '1.0000', '3.3984', '3.3984', '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 (93193, '2022-06-18', 9960, 87949, 5537, NULL, '2.0000', '3.3000', '3.3000', '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 (93194, '2022-06-18', 8595, 87950, 5537, NULL, '1.0000', '3.9640', '3.9640', '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 (93195, '2022-06-18', 9819, 87951, 5537, 55635, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93196, '2022-06-18', 1787, 87952, 5537, NULL, '1.0000', '0.5000', '0.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 (93197, '2022-06-18', 7483, 87953, 5537, 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 (93198, '2022-06-18', 8476, 87954, 5537, NULL, '4.0000', '23.0000', '23.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 (93199, '2022-06-18', 1590, 87955, 5537, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93200, '2022-06-18', 1342, 87956, 5537, NULL, '1.0000', '7.2732', '7.2732', '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 (93201, '2022-06-18', 7353, 87957, 5537, NULL, '2.0000', '0.1900', '0.1900', '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 (93202, '2022-06-18', 8054, 87958, 5538, NULL, '2.0000', '16.0000', '16.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 (93203, '2022-06-18', 8308, 87959, 5538, NULL, '1.0000', '60.7672', '60.7672', '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 (93204, '2022-06-18', 7693, 87960, 5538, 51275, '1.0000', '4.8831', '4.8831', '5.4000', '5.4000', '2.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93205, '2022-06-18', 8878, 87961, 5538, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93206, '2022-06-18', 7730, 87962, 5538, 57543, '6.0000', '0.1000', '0.1000', '0.2000', '0.2000', '129.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93207, '2022-06-18', 8810, 87963, 5538, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93208, '2022-06-18', 7672, 87964, 5538, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93209, '2022-06-18', 7588, 87965, 5538, 57165, '1.0000', '5.5821', '5.5821', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93210, '2022-06-18', 9580, 87966, 5538, 40430, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93211, '2022-06-18', 8401, 87967, 5538, 54747, '1.0000', '7.5225', '7.5225', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93212, '2022-06-18', 7668, 87968, 5538, NULL, '1.0000', '-6.3200', '-6.3200', '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 (93213, '2022-06-18', 2315, 87969, 5538, 56594, '1.0000', '0.7474', '0.7474', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93214, '2022-06-18', 7564, 87970, 5538, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93215, '2022-06-18', 2414, 87971, 5538, NULL, '2.0000', '3.4000', '3.4000', '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 (93216, '2022-06-18', 1855, 87972, 5538, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93217, '2022-06-18', 7741, 87973, 5538, 56667, '1.0000', '2.5248', '2.5248', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93218, '2022-06-18', 7779, 87974, 5538, 56157, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93219, '2022-06-18', 7704, 87975, 5538, NULL, '1.0000', '-1.5625', '-1.5625', '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 (93220, '2022-06-18', 7674, 87976, 5538, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93221, '2022-06-18', 7933, 87977, 5538, NULL, '2.0000', '0.3245', '0.3245', '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 (93222, '2022-06-18', 2248, 87978, 5538, 56180, '1.0000', '3.4528', '3.4528', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93223, '2022-06-18', 9747, 87979, 5538, 56183, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93224, '2022-06-18', 9791, 87980, 5538, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '105.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93225, '2022-06-18', 9729, 87981, 5538, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93226, '2022-06-18', 9734, 87982, 5538, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '12.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93227, '2022-06-18', 8557, 87983, 5538, NULL, '1.0000', '10.9447', '10.9447', '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 (93228, '2022-06-18', 1841, 87984, 5538, 56033, '4.0000', '0.1970', '0.1970', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93229, '2022-06-18', 1840, 87985, 5538, 56555, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '91.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93230, '2022-06-18', 2289, 87986, 5538, NULL, '8.0000', '2.5688', '2.5688', '0.5000', '0.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 (93231, '2022-06-18', 8203, 87987, 5538, 57407, '1.0000', '2.0908', '2.0908', '0.7000', '0.7000', '49.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93232, '2022-06-18', 9729, 87988, 5538, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93233, '2022-06-18', 7672, 87989, 5538, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93234, '2022-06-18', 2242, 87990, 5538, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '129.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93235, '2022-06-18', 7412, 87991, 5538, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93236, '2022-06-18', 1867, 87992, 5538, NULL, '1.0000', '11.8714', '11.8714', '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 (93237, '2022-06-18', 2167, 87993, 5538, 36090, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93238, '2022-06-18', 7674, 87994, 5538, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93239, '2022-06-18', 9275, 87995, 5538, NULL, '2.0000', '6.3000', '6.3000', '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 (93240, '2022-06-18', 9092, 87996, 5538, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93241, '2022-06-18', 9274, 87997, 5539, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93242, '2022-06-18', 9791, 87998, 5539, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '103.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93243, '2022-06-18', 1837, 87999, 5539, 56551, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93244, '2022-06-18', 2315, 88000, 5539, 56594, '3.0000', '0.7474', '0.7474', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93245, '2022-06-18', 7674, 88001, 5539, 56584, '2.0000', '120.7007', '120.7007', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93246, '2022-06-18', 8878, 88002, 5539, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93247, '2022-06-18', 2315, 88003, 5539, 56594, '3.0000', '0.7474', '0.7474', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93248, '2022-06-18', 7642, 88004, 5539, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '14.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93249, '2022-06-18', 9274, 88005, 5539, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93250, '2022-06-18', 8067, 88006, 5539, 54084, '1.0000', '4.5420', '4.5420', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93251, '2022-06-18', 8689, 88007, 5539, 50448, '1.0000', '8.6135', '8.6135', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93252, '2022-06-18', 2248, 88008, 5539, 56180, '1.0000', '3.4528', '3.4528', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93253, '2022-06-18', 8457, 88009, 5539, NULL, '1.0000', '4.9044', '4.9044', '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 (93254, '2022-06-18', 7730, 88010, 5539, 57543, '1.0000', '0.1000', '0.1000', '0.2000', '0.2000', '128.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93255, '2022-06-18', 2342, 88011, 5540, 3845, '-106.0000', '1.8600', '1.8600', '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 (93256, '2022-06-18', 2342, 88011, 5540, NULL, '111.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-111.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93257, '2022-06-18', 2135, 88012, 5540, 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 (93258, '2022-06-18', 2858, 88013, 5540, 17772, '-94.0000', '1.0000', '1.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 (93259, '2022-06-18', 2858, 88013, 5540, NULL, '95.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93260, '2022-06-18', 2858, 88014, 5540, 17772, '-94.0000', '1.0000', '1.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 (93261, '2022-06-18', 2858, 88014, 5540, NULL, '96.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-96.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93262, '2022-06-18', 1824, 88015, 5540, NULL, '1.0000', '5.2000', '5.2000', '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 (93263, '2022-06-18', 2964, 88016, 5540, NULL, '2.0000', '6.6000', '6.6000', '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 (93264, '2022-06-18', 9748, 88017, 5540, NULL, '1.0000', '2.5300', '2.5300', '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 (93265, '2022-06-18', 1501, 88018, 5540, NULL, '1.0000', '2.0500', '2.0500', '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 (93266, '2022-06-18', 1755, 88019, 5540, 3165, '-5.0000', '5.5900', '5.5900', '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 (93267, '2022-06-18', 1755, 88019, 5540, NULL, '6.0000', '5.5900', '5.5900', '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 (93268, '2022-06-18', 1340, 88020, 5540, 13005, '-12.0000', '2.7025', '2.7025', '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 (93269, '2022-06-18', 1340, 88020, 5540, NULL, '13.0000', '2.7025', '2.7025', '5.0000', '5.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 (93270, '2022-06-18', 2135, 88021, 5540, 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 (93271, '2022-06-18', 2416, 88022, 5540, 4745, '-33.0000', '1.2000', '1.2000', '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 (93272, '2022-06-18', 2416, 88022, 5540, NULL, '34.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (93273, '2022-06-18', 2484, 88023, 5540, 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 (93274, '2022-06-18', 1665, 88024, 5540, 3235, '-130.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 (93275, '2022-06-18', 1665, 88024, 5540, NULL, '131.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-131.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93276, '2022-06-18', 7411, 88025, 5540, NULL, '1.0000', '1.3500', '1.3500', '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 (93277, '2022-06-18', 9762, 88026, 5540, 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 (93278, '2022-06-18', 2283, 88027, 5540, 2943, '-25.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 (93279, '2022-06-18', 2283, 88027, 5540, NULL, '27.0000', '1.4300', '1.4300', '2.0000', '2.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 (93280, '2022-06-18', 9907, 88028, 5540, NULL, '2.0000', '12.0000', '12.0000', '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 (93281, '2022-06-18', 7411, 88029, 5541, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93282, '2022-06-18', 7831, 88030, 5541, NULL, '1.0000', '22.5000', '22.5000', '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 (93283, '2022-06-18', 7509, 88031, 5541, 57441, '1.0000', '10.1903', '10.1903', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93284, '2022-06-18', 7820, 88032, 5541, NULL, '1.0000', '-296.8250', '-296.8250', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93285, '2022-06-18', 2219, 88033, 5541, 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 (93286, '2022-06-18', 2602, 88034, 5541, 54442, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93287, '2022-06-18', 2916, 88035, 5542, NULL, '1.0000', '777.2552', '777.2552', '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 (93288, '2022-06-18', 2821, 88036, 5542, NULL, '1.0000', '3.3984', '3.3984', '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 (93289, '2022-06-18', 2108, 88037, 5542, 57122, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93290, '2022-06-18', 1425, 88038, 5542, NULL, '1.0000', '19.3384', '19.3384', '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 (93291, '2022-06-18', 2943, 88039, 5542, 47069, '1.0000', '3.3342', '3.3342', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93292, '2022-06-18', 1307, 88040, 5542, NULL, '1.0000', '-59.9897', '-59.9897', '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 (93293, '2022-06-18', 7561, 88041, 5542, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93294, '2022-06-18', 7743, 88042, 5542, NULL, '1.0000', '7.3900', '7.3900', '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 (93295, '2022-06-18', 1715, 88043, 5542, NULL, '1.0000', '9.5000', '9.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 (93296, '2022-06-18', 7472, 88044, 5542, NULL, '1.0000', '-56.4939', '-56.4939', '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 (93297, '2022-06-18', 2642, 88045, 5542, 56856, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93298, '2022-06-18', 1999, 88046, 5542, 57126, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93299, '2022-06-18', 1608, 88047, 5542, 56376, '1.0000', '4.1598', '4.1598', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93300, '2022-06-18', 2821, 88048, 5542, NULL, '1.0000', '3.3984', '3.3984', '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 (93301, '2022-06-18', 2169, 88049, 5542, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93302, '2022-06-18', 2342, 88050, 5542, 54886, '1.0000', '2.2091', '2.2091', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93303, '2022-06-18', 7411, 88051, 5542, NULL, '1.0000', '1.3013', '1.3013', '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 (93304, '2022-06-19', 1947, 88052, 5543, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93305, '2022-06-19', 9740, 88053, 5543, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93306, '2022-06-19', 2643, 88054, 5543, 57522, '1.0000', '-0.1768', '-0.1768', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93307, '2022-06-19', 2100, 88055, 5543, 57157, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93308, '2022-06-19', 8457, 88056, 5543, NULL, '1.0000', '4.9044', '4.9044', '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 (93309, '2022-06-19', 1837, 88057, 5543, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93310, '2022-06-19', 8207, 88058, 5543, NULL, '1.0000', '0.0000', '0.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 (93311, '2022-06-19', 2104, 88059, 5543, NULL, '2.0000', '0.2000', '0.2000', '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 (93312, '2022-06-19', 7473, 88060, 5543, NULL, '3.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (93313, '2022-06-19', 7317, 88061, 5543, 56596, '1.0000', '14.6321', '14.6321', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93314, '2022-06-19', 2315, 88062, 5543, 56594, '1.0000', '0.7474', '0.7474', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93315, '2022-06-19', 7642, 88063, 5543, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93316, '2022-06-19', 9736, 88064, 5543, 51795, '1.0000', '3.9253', '3.9253', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93317, '2022-06-19', 7674, 88065, 5543, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93318, '2022-06-19', 2643, 88066, 5543, 57522, '1.0000', '-0.1768', '-0.1768', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93319, '2022-06-19', 9865, 88067, 5543, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '13.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93320, '2022-06-19', 7753, 88068, 5543, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93321, '2022-06-19', 7412, 88069, 5543, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93322, '2022-06-19', 8677, 88070, 5543, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93323, '2022-06-19', 7559, 88071, 5543, 55144, '2.0000', '16.0369', '16.0369', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93324, '2022-06-19', 8774, 88072, 5543, NULL, '1.0000', '2.3000', '2.3000', '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 (93325, '2022-06-19', 9092, 88073, 5543, 52527, '5.0000', '0.3175', '0.3175', '0.5000', '0.5000', '77.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93326, '2022-06-19', 7334, 88074, 5543, 57417, '1.0000', '9.1591', '9.1591', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93327, '2022-06-19', 7889, 88075, 5543, NULL, '1.0000', '-8.6571', '-8.6571', '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 (93328, '2022-06-19', 7642, 88076, 5543, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93329, '2022-06-19', 2602, 88077, 5543, 54442, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93330, '2022-06-19', 9878, 88078, 5543, 57177, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93331, '2022-06-19', 7472, 88079, 5543, NULL, '1.0000', '-35.4938', '-35.4938', '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 (93332, '2022-06-19', 8657, 88080, 5543, 56004, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93333, '2022-06-19', 7959, 88081, 5543, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '32.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93334, '2022-06-19', 8074, 88082, 5543, 56191, '1.0000', '24.0992', '24.0992', '34.5000', '34.5000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93335, '2022-06-19', 1935, 88083, 5543, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '121.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93336, '2022-06-19', 7674, 88084, 5543, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93337, '2022-06-19', 8032, 88085, 5543, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93338, '2022-06-19', 9274, 88086, 5543, 56666, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93339, '2022-06-19', 7444, 88087, 5543, NULL, '1.0000', '-160.1545', '-160.1545', '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 (93340, '2022-06-19', 9214, 88088, 5544, NULL, '1.0000', '8.5288', '8.5288', '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 (93341, '2022-06-19', 1665, 88089, 5544, 57073, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93342, '2022-06-19', 2754, 88090, 5544, 18938, '2.0000', '0.0800', '0.0800', '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 (93343, '2022-06-19', 9830, 88091, 5544, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93344, '2022-06-19', 7472, 88092, 5544, NULL, '1.0000', '-56.4939', '-56.4939', '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 (93345, '2022-06-19', 1330, 88093, 5544, 18937, '1.0000', '2.8000', '2.8000', '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 (93346, '2022-06-19', 2315, 88094, 5544, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93347, '2022-06-19', 2285, 88095, 5544, NULL, '1.0000', '9.3380', '9.3380', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93348, '2022-06-19', 7324, 88096, 5544, NULL, '2.0000', '5.4813', '5.4813', '8.5000', '8.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 (93349, '2022-06-19', 7411, 88097, 5544, NULL, '1.0000', '1.3013', '1.3013', '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 (93350, '2022-06-19', 9845, 88098, 5544, NULL, '1.0000', '5.7000', '5.7000', '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 (93351, '2022-06-19', 2083, 88099, 5544, 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 (93352, '2022-06-19', 2643, 88100, 5544, 57494, '2.0000', '0.9927', '0.9927', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93353, '2022-06-19', 9832, 88101, 5544, 57495, '2.0000', '1.7283', '1.7283', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93354, '2022-06-19', 2315, 88102, 5544, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93355, '2022-06-19', 2169, 88103, 5544, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93356, '2022-06-19', 7459, 88104, 5544, NULL, '10.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (93357, '2022-06-19', 2354, 88105, 5544, NULL, '1.0000', '-0.6066', '-0.6066', '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 (93358, '2022-06-19', 9735, 88106, 5544, 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 (93359, '2022-06-19', 1621, 88107, 5544, 42079, '1.0000', '28.9137', '28.9137', '8.0000', '8.0000', '28.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93360, '2022-06-19', 1755, 88108, 5544, 13763, '1.0000', '5.8128', '5.8128', '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 (93361, '2022-06-19', 2315, 88109, 5544, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93362, '2022-06-19', 2754, 88110, 5544, 18938, '2.0000', '0.0800', '0.0800', '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 (93363, '2022-06-19', 2242, 88111, 5544, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '68.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93364, '2022-06-19', 7464, 88112, 5544, NULL, '1.0000', '29.9600', '29.9600', '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 (93365, '2022-06-19', 2315, 88113, 5544, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93366, '2022-06-19', 2061, 88114, 5544, NULL, '1.0000', '10.3123', '10.3123', '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 (93367, '2022-06-19', 2169, 88115, 5544, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93368, '2022-06-19', 7412, 88116, 5545, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93369, '2022-06-19', 7491, 88117, 5545, NULL, '1.0000', '30.2006', '30.2006', '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 (93370, '2022-06-19', 9942, 88118, 5545, 57188, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93371, '2022-06-19', 9231, 88119, 5545, 57451, '1.0000', '12.9000', '12.9000', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93372, '2022-06-19', 8207, 88120, 5545, NULL, '1.0000', '0.0000', '0.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 (93373, '2022-06-19', 8802, 88121, 5545, NULL, '1.0000', '5.0000', '5.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 (93374, '2022-06-19', 1501, 88122, 5545, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93375, '2022-06-19', 9618, 88123, 5545, NULL, '4.0000', '3.7500', '3.7500', '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 (93376, '2022-06-19', 7819, 88124, 5545, 56704, '1.0000', '12.6712', '12.6712', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93377, '2022-06-19', 1668, 88125, 5546, 42095, '1.0000', '26.8067', '26.8067', '20.0000', '20.0000', '18.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93378, '2022-06-19', 2916, 88126, 5546, NULL, '1.0000', '777.2552', '777.2552', '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 (93379, '2022-06-19', 2821, 88127, 5546, NULL, '2.0000', '3.3984', '3.3984', '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 (93380, '2022-06-19', 8677, 88128, 5546, NULL, '5.0000', '496.2705', '496.2705', '2.5000', '2.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 (93381, '2022-06-19', 2295, 88129, 5546, 57068, '4.0000', '1.4104', '1.4104', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93382, '2022-06-19', 7801, 88130, 5546, NULL, '4.0000', '3.0000', '3.0000', '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 (93383, '2022-06-19', 8203, 88131, 5546, NULL, '1.0000', '9.8000', '9.8000', '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 (93384, '2022-06-19', 2283, 88132, 5546, 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 (93385, '2022-06-19', 9959, 88133, 5546, 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 (93386, '2022-06-19', 8595, 88134, 5546, NULL, '1.0000', '3.9640', '3.9640', '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 (93387, '2022-06-19', 2237, 88135, 5546, 48702, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93388, '2022-06-19', 2935, 88136, 5546, NULL, '1.0000', '-2.6500', '-2.6500', '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 (93389, '2022-06-19', 1693, 88137, 5546, 55664, '1.0000', '9.5194', '9.5194', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93390, '2022-06-19', 1946, 88138, 5546, NULL, '1.0000', '-4.7391', '-4.7391', '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 (93391, '2022-06-19', 1519, 88139, 5546, 48674, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93392, '2022-06-19', 1665, 88140, 5546, 57073, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93393, '2022-06-19', 2986, 88141, 5546, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93394, '2022-06-19', 9891, 88142, 5546, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93395, '2022-06-19', 2935, 88143, 5546, NULL, '1.0000', '-2.6500', '-2.6500', '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 (93396, '2022-06-19', 1873, 88144, 5546, 54894, '1.0000', '15.6100', '15.6100', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93397, '2022-06-19', 1402, 88145, 5546, 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 (93398, '2022-06-19', 1702, 88146, 5546, NULL, '1.0000', '10.8300', '10.8300', '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 (93399, '2022-06-19', 9831, 88147, 5546, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93400, '2022-06-19', 2169, 88148, 5546, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93401, '2022-06-19', 1651, 88149, 5546, NULL, '2.0000', '8.2255', '8.2255', '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 (93402, '2022-06-19', 2916, 88150, 5546, NULL, '1.0000', '777.2552', '777.2552', '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 (93403, '2022-06-19', 2948, 88151, 5546, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93404, '2022-06-19', 1602, 88152, 5546, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93405, '2022-06-19', 2643, 88153, 5546, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93406, '2022-06-19', 2769, 88154, 5546, 54167, '1.0000', '1.8925', '1.8925', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93407, '2022-06-19', 2769, 88154, 5546, NULL, '3.0000', '1.8925', '1.8925', '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 (93408, '2022-06-19', 2810, 88155, 5546, 24934, '2.0000', '6788008906.4158', '6788008906.4158', '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 (93409, '2022-06-19', 7953, 88156, 5546, NULL, '1.0000', '-0.5345', '-0.5345', '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 (93410, '2022-06-19', 9888, 88157, 5546, 54517, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93411, '2022-06-19', 2906, 88158, 5546, NULL, '3.0000', '2.6000', '2.6000', '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 (93412, '2022-06-19', 2295, 88159, 5546, 57068, '1.0000', '1.4104', '1.4104', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93413, '2022-06-19', 2242, 88160, 5546, 56409, '1.0000', '1.2664', '1.2664', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93414, '2022-06-19', 9905, 88161, 5546, 55158, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93415, '2022-06-19', 2237, 88162, 5546, 48702, '7.0000', '58.1889', '58.1889', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93416, '2022-06-19', 1504, 88163, 5546, 56423, '10.0000', '2.0162', '2.0162', '2.8000', '2.8000', '40.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93417, '2022-06-19', 2374, 88164, 5547, 55555, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93418, '2022-06-19', 1863, 88165, 5547, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93419, '2022-06-19', 1912, 88166, 5547, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93420, '2022-06-19', 1454, 88167, 5547, NULL, '1.0000', '10.9000', '10.9000', '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 (93421, '2022-06-19', 1785, 88168, 5547, 51303, '1.0000', '16.7767', '16.7767', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93422, '2022-06-19', 2259, 88169, 5547, 49309, '1.0000', '22.8355', '22.8355', '31.0000', '31.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93423, '2022-06-19', 1529, 88170, 5547, 50073, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93424, '2022-06-19', 2916, 88171, 5547, NULL, '1.0000', '777.2552', '777.2552', '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 (93425, '2022-06-19', 2025, 88172, 5547, 57133, '1.0000', '4.9124', '4.9124', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93426, '2022-06-19', 2315, 88173, 5547, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93427, '2022-06-19', 2769, 88174, 5547, NULL, '2.0000', '1.8925', '1.8925', '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 (93428, '2022-06-19', 3058, 88175, 5547, NULL, '1.0000', '-23.3000', '-23.3000', '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 (93429, '2022-06-19', 1487, 88176, 5547, NULL, '1.0000', '-330.9124', '-330.9124', '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 (93430, '2022-06-19', 9089, 88177, 5548, 56825, '1.0000', '4.8664', '4.8664', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93431, '2022-06-19', 9089, 88178, 5548, 56825, '1.0000', '4.8664', '4.8664', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93432, '2022-06-19', 9590, 88179, 5548, NULL, '1.0000', '0.0000', '0.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 (93433, '2022-06-19', 9763, 88180, 5548, 56957, '1.0000', '2.2663', '2.2663', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93434, '2022-06-19', 9763, 88180, 5548, 56958, '2.0000', '2.2663', '2.2663', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93435, '2022-06-19', 8207, 88181, 5548, NULL, '1.0000', '0.0000', '0.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 (93436, '2022-06-19', 2237, 88182, 5548, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93437, '2022-06-19', 2102, 88183, 5548, 56976, '3.0000', '2.0737', '2.0737', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93438, '2022-06-19', 1646, 88184, 5548, 56889, '1.0000', '5.2908', '5.2908', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93439, '2022-06-19', 9943, 88185, 5548, 56924, '1.0000', '10.5500', '10.5500', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93440, '2022-06-19', 1340, 88186, 5548, 52235, '1.0000', '3.2084', '3.2084', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93441, '2022-06-19', 9732, 88187, 5548, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93442, '2022-06-19', 8207, 88188, 5548, NULL, '2.0000', '0.0000', '0.0000', '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 (93443, '2022-06-19', 1342, 88189, 5548, 56928, '1.0000', '10.0474', '10.0474', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93444, '2022-06-19', 2271, 88190, 5548, 10390, '1.0000', '12.0000', '12.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 (93445, '2022-06-19', 3025, 88191, 5548, 55003, '2.0000', '2.5811', '2.5811', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93446, '2022-06-19', 2440, 88192, 5548, 56836, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93447, '2022-06-19', 7953, 88193, 5548, NULL, '1.0000', '6.0000', '6.0000', '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 (93448, '2022-06-19', 9930, 88194, 5548, 56752, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93449, '2022-06-19', 2036, 88195, 5548, 56349, '1.0000', '8.9375', '8.9375', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93450, '2022-06-19', 1519, 88196, 5548, 55886, '1.0000', '3.3940', '3.3940', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93451, '2022-06-19', 9873, 88197, 5548, 56894, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93452, '2022-06-19', 1935, 88198, 5548, 56892, '1.0000', '1.3636', '1.3636', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93453, '2022-06-19', 9815, 88199, 5548, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '22.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93454, '2022-06-19', 8011, 88200, 5548, NULL, '1.0000', '0.9500', '0.9500', '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 (93455, '2022-06-19', 9732, 88201, 5548, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93456, '2022-06-19', 2384, 88202, 5548, 56740, '18.0000', '0.3965', '0.3965', '0.7000', '0.7000', '82.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93457, '2022-06-19', 7473, 88203, 5549, NULL, '1.0000', '0.5300', '0.5300', '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 (93458, '2022-06-19', 2315, 88204, 5549, 2735, '-478.0000', '0.3300', '0.3300', '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 (93459, '2022-06-19', 2315, 88204, 5549, NULL, '479.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-479.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93460, '2022-06-19', 9956, 88205, 5549, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93461, '2022-06-19', 9958, 88206, 5549, NULL, '1.0000', '7.8000', '7.8000', '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 (93462, '2022-06-19', 7674, 88207, 5549, NULL, '1.0000', '1.3000', '1.3000', '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 (93463, '2022-06-19', 7730, 88208, 5549, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (93464, '2022-06-19', 7881, 88209, 5549, NULL, '1.0000', '2.3000', '2.3000', '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 (93465, '2022-06-19', 7673, 88210, 5549, NULL, '1.0000', '16.8000', '16.8000', '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 (93466, '2022-06-19', 7628, 88211, 5549, NULL, '1.0000', '2.2900', '2.2900', '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 (93467, '2022-06-19', 7385, 88212, 5549, NULL, '2.0000', '2.0000', '2.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 (93468, '2022-06-19', 2733, 88213, 5549, 14083, '-3.0000', '7.5000', '7.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 (93469, '2022-06-19', 2733, 88213, 5549, NULL, '4.0000', '7.5000', '7.5000', '12.0000', '12.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 (93470, '2022-06-19', 7585, 88214, 5549, NULL, '2.0000', '3.9600', '3.9600', '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 (93471, '2022-06-19', 7354, 88215, 5549, NULL, '1.0000', '0.3700', '0.3700', '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 (93472, '2022-06-19', 9092, 88216, 5549, NULL, '1.0000', '5.2900', '5.2900', '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 (93473, '2022-06-19', 8666, 88217, 5549, NULL, '1.0000', '0.4600', '0.4600', '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 (93474, '2022-06-19', 9727, 88218, 5549, NULL, '1.0000', '6.7000', '6.7000', '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 (93475, '2022-06-19', 2643, 88219, 5549, NULL, '4.0000', '0.8700', '0.8700', '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 (93476, '2022-06-19', 8101, 88220, 5549, NULL, '2.0000', '1.9700', '1.9700', '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 (93477, '2022-06-19', 7368, 88221, 5549, NULL, '1.0000', '14.7500', '14.7500', '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 (93478, '2022-06-19', 9791, 88222, 5549, 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 (93479, '2022-06-19', 8548, 88223, 5549, NULL, '1.0000', '12.0000', '12.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 (93480, '2022-06-19', 2221, 88224, 5549, 4154, '-69.0000', '14.4737', '14.4737', '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 (93481, '2022-06-19', 2221, 88224, 5549, NULL, '70.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93482, '2022-06-19', 7523, 88225, 5549, NULL, '1.0000', '9.7500', '9.7500', '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 (93483, '2022-06-19', 9329, 88226, 5549, NULL, '1.0000', '6.7000', '6.7000', '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 (93484, '2022-06-19', 2506, 88227, 5549, 16244, '-24.0000', '3.4900', '3.4900', '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 (93485, '2022-06-19', 2506, 88227, 5549, NULL, '25.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-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 (93486, '2022-06-19', 7784, 88228, 5549, NULL, '2.0000', '4.2300', '4.2300', '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 (93487, '2022-06-19', 7666, 88229, 5549, NULL, '2.0000', '3.6000', '3.6000', '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 (93488, '2022-06-19', 2248, 88230, 5549, 2785, '-15.0000', '2.5000', '2.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 (93489, '2022-06-19', 2248, 88230, 5549, NULL, '16.0000', '2.5000', '2.5000', '6.0000', '6.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 (93490, '2022-06-19', 9160, 88231, 5549, NULL, '1.0000', '15.0000', '15.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 (93491, '2022-06-19', 7444, 88232, 5549, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93492, '2022-06-19', 7779, 88233, 5549, 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 (93493, '2022-06-19', 9092, 88234, 5549, NULL, '10.0000', '5.2900', '5.2900', '0.5000', '0.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 (93494, '2022-06-19', 9274, 88235, 5549, NULL, '1.0000', '3.6000', '3.6000', '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 (93495, '2022-06-19', 1914, 88236, 5549, 5476, '1.0000', '4.9000', '4.9000', '8.0000', '8.0000', '5.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 (93496, '2022-06-19', 8753, 88237, 5549, 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 (93497, '2022-06-19', 7514, 88238, 5549, NULL, '2.0000', '2.2500', '2.2500', '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 (93498, '2022-06-19', 2251, 88239, 5549, 2788, '-27.0000', '10.9700', '10.9700', '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 (93499, '2022-06-19', 2251, 88239, 5549, NULL, '28.0000', '10.9700', '10.9700', '19.5000', '19.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 (93500, '2022-06-19', 8918, 88240, 5549, NULL, '1.0000', '1.0400', '1.0400', '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 (93501, '2022-06-19', 7396, 88241, 5549, NULL, '1.0000', '6.0000', '6.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 (93502, '2022-06-19', 7770, 88242, 5549, NULL, '1.0000', '7.8200', '7.8200', '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 (93503, '2022-06-19', 8011, 88243, 5549, 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 (93504, '2022-06-19', 8308, 88244, 5549, NULL, '1.0000', '2.0800', '2.0800', '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 (93505, '2022-06-19', 8276, 88245, 5549, 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 (93506, '2022-06-19', 9839, 88246, 5549, NULL, '1.0000', '15.0200', '15.0200', '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 (93507, '2022-06-19', 7707, 88247, 5549, NULL, '1.0000', '7.0000', '7.0000', '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 (93508, '2022-06-19', 1935, 88248, 5549, 5586, '-144.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 (93509, '2022-06-19', 1935, 88248, 5549, NULL, '145.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93510, '2022-06-19', 8810, 88249, 5549, NULL, '1.0000', '1.6000', '1.6000', '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 (93511, '2022-06-19', 7411, 88250, 5549, NULL, '1.0000', '1.3500', '1.3500', '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 (93512, '2022-06-19', 9695, 88251, 5549, NULL, '1.0000', '4.5000', '4.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 (93513, '2022-06-19', 7524, 88252, 5549, NULL, '1.0000', '11.9500', '11.9500', '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 (93514, '2022-06-19', 8186, 88253, 5549, NULL, '1.0000', '1.0800', '1.0800', '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 (93515, '2022-06-19', 7354, 88254, 5549, NULL, '1.0000', '0.3700', '0.3700', '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 (93516, '2022-06-19', 1855, 88255, 5549, 20589, '1.0000', '1.4000', '1.4000', '2.0000', '2.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 (93517, '2022-06-19', 8539, 88256, 5549, NULL, '2.0000', '31.8000', '31.8000', '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 (93518, '2022-06-19', 7459, 88257, 5549, NULL, '10.0000', '2.3500', '2.3500', '4.0000', '4.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 (93519, '2022-06-19', 7952, 88258, 5549, 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 (93520, '2022-06-19', 9503, 88259, 5549, NULL, '1.0000', '20.6000', '20.6000', '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 (93521, '2022-06-19', 8813, 88260, 5549, NULL, '1.0000', '17.6000', '17.6000', '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 (93522, '2022-06-19', 7694, 88261, 5549, NULL, '1.0000', '4.7900', '4.7900', '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 (93523, '2022-06-19', 8000, 88262, 5549, NULL, '1.0000', '6.8400', '6.8400', '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 (93524, '2022-06-19', 9456, 88263, 5549, NULL, '1.0000', '3.3200', '3.3200', '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 (93525, '2022-06-19', 2279, 88264, 5549, 2939, '-22.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 (93526, '2022-06-19', 2279, 88264, 5549, NULL, '23.0000', '2.7000', '2.7000', '3.5000', '3.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 (93527, '2022-06-19', 8744, 88265, 5549, NULL, '1.0000', '3.6600', '3.6600', '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 (93528, '2022-06-19', 1935, 88266, 5549, 5586, '-144.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 (93529, '2022-06-19', 1935, 88266, 5549, NULL, '145.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-145.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93530, '2022-06-19', 1521, 88267, 5550, NULL, '1.0000', '10.1500', '10.1500', '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 (93531, '2022-06-19', 1812, 88268, 5550, 54944, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93532, '2022-06-19', 1519, 88269, 5550, 48674, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93533, '2022-06-19', 1863, 88270, 5550, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93534, '2022-06-19', 9830, 88271, 5550, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93535, '2022-06-19', 9730, 88272, 5550, 47078, '1.0000', '18.2000', '18.2000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93536, '2022-06-19', 8933, 88273, 5550, NULL, '1.0000', '8.7500', '8.7500', '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 (93537, '2022-06-19', 2316, 88274, 5550, 56625, '1.0000', '50.6700', '50.6700', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93538, '2022-06-19', 1676, 88275, 5550, 55540, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93539, '2022-06-19', 1863, 88276, 5550, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93540, '2022-06-19', 2062, 88277, 5550, NULL, '1.0000', '5.8900', '5.8900', '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 (93541, '2022-06-19', 1388, 88278, 5550, 51245, '1.0000', '6.1880', '6.1880', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93542, '2022-06-19', 1651, 88279, 5550, NULL, '1.0000', '8.2255', '8.2255', '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 (93543, '2022-06-19', 2592, 88280, 5550, 55933, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93544, '2022-06-19', 1665, 88281, 5550, 57073, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93545, '2022-06-19', 9831, 88282, 5550, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93546, '2022-06-19', 1493, 88283, 5550, NULL, '1.0000', '-27.3400', '-27.3400', '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 (93547, '2022-06-19', 8759, 88284, 5550, NULL, '1.0000', '22.7000', '22.7000', '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 (93548, '2022-06-19', 2643, 88285, 5550, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93549, '2022-06-19', 2706, 88286, 5550, 48666, '1.0000', '8.0157', '8.0157', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93550, '2022-06-19', 9830, 88287, 5550, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93551, '2022-06-19', 2948, 88288, 5550, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93552, '2022-06-19', 2916, 88289, 5550, NULL, '1.0000', '777.2552', '777.2552', '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 (93553, '2022-06-19', 2283, 88290, 5550, 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 (93554, '2022-06-19', 1520, 88291, 5550, 57085, '1.0000', '1.7877', '1.7877', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93555, '2022-06-19', 2025, 88292, 5550, 57133, '1.0000', '4.9124', '4.9124', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93556, '2022-06-19', 2643, 88293, 5550, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93557, '2022-06-19', 1499, 88294, 5550, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93558, '2022-06-19', 2315, 88295, 5550, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93559, '2022-06-19', 1665, 88296, 5550, 57073, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93560, '2022-06-19', 9565, 88297, 5550, NULL, '1.0000', '4.5000', '4.5000', '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 (93561, '2022-06-19', 2089, 88298, 5550, 57075, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93562, '2022-06-19', 1935, 88299, 5550, NULL, '1.0000', '0.7671', '0.7671', '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 (93563, '2022-06-19', 1480, 88300, 5550, 49341, '1.0000', '29.9900', '29.9900', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93564, '2022-06-19', 1481, 88301, 5550, 55642, '1.0000', '41.8000', '41.8000', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93565, '2022-06-19', 1602, 88302, 5550, 55530, '1.0000', '7.0635', '7.0635', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93566, '2022-06-19', 9565, 88303, 5550, NULL, '2.0000', '4.5000', '4.5000', '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 (93567, '2022-06-19', 9828, 88304, 5550, NULL, '1.0000', '2.9100', '2.9100', '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 (93568, '2022-06-19', 9794, 88305, 5550, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93569, '2022-06-19', 1935, 88306, 5551, NULL, '1.0000', '0.7671', '0.7671', '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 (93570, '2022-06-19', 1613, 88307, 5552, 56973, '1.0000', '9.2833', '9.2833', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93571, '2022-06-19', 1856, 88308, 5552, 56948, '1.0000', '4.9379', '4.9379', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93572, '2022-06-19', 9715, 88309, 5552, 54667, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93573, '2022-06-19', 7412, 88310, 5552, NULL, '1.0000', '1.5200', '1.5200', '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 (93574, '2022-06-19', 1603, 88311, 5552, 55513, '1.0000', '63.0044', '63.0044', '96.0000', '96.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93575, '2022-06-19', 7848, 88312, 5552, NULL, '1.0000', '15.0000', '15.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 (93576, '2022-06-19', 2231, 88313, 5552, 54360, '1.0000', '35.4838', '35.4838', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93577, '2022-06-19', 1504, 88314, 5552, 56247, '10.0000', '2.3266', '2.3266', '2.8000', '2.8000', '80.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93578, '2022-06-19', 2296, 88315, 5552, 56966, '1.0000', '12.6705', '12.6705', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93579, '2022-06-19', 2545, 88316, 5552, 55509, '1.0000', '7.5146', '7.5146', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93580, '2022-06-19', 1432, 88317, 5552, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93581, '2022-06-19', 2070, 88318, 5552, 5618, '1.0000', '2.0000', '2.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 (93582, '2022-06-19', 1855, 88319, 5552, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93583, '2022-06-19', 7713, 88320, 5552, NULL, '3.0000', '0.3800', '0.3800', '0.6000', '0.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 (93584, '2022-06-19', 1912, 88321, 5552, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93585, '2022-06-19', 7506, 88322, 5552, NULL, '1.0000', '15.0000', '15.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 (93586, '2022-06-19', 2916, 88323, 5552, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93587, '2022-06-19', 1529, 88324, 5552, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '23.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93588, '2022-06-19', 2384, 88325, 5552, 56740, '5.0000', '0.3965', '0.3965', '0.7000', '0.7000', '77.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93589, '2022-06-19', 2839, 88326, 5552, 40355, '1.0000', '4.5000', '4.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93590, '2022-06-19', 9695, 88327, 5552, 56942, '1.0000', '5.2431', '5.2431', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93591, '2022-06-19', 2864, 88328, 5552, 56226, '10.0000', '1.1926', '1.1926', '2.2000', '2.2000', '36.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93592, '2022-06-20', 9738, 88329, 5553, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93593, '2022-06-20', 1501, 88330, 5553, NULL, '1.0000', '0.9225', '0.9225', '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 (93594, '2022-06-20', 9827, 88331, 5553, NULL, '1.0000', '16.6600', '16.6600', '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 (93595, '2022-06-20', 1787, 88332, 5553, NULL, '1.0000', '0.5000', '0.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 (93596, '2022-06-20', 1837, 88333, 5553, NULL, '2.0000', '-21.5736', '-21.5736', '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 (93597, '2022-06-20', 8735, 88334, 5553, 57119, '1.0000', '7.1000', '7.1000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93598, '2022-06-20', 2379, 88335, 5553, NULL, '1.0000', '-3.0170', '-3.0170', '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 (93599, '2022-06-20', 1529, 88336, 5553, 50073, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93600, '2022-06-20', 8735, 88337, 5553, 57119, '1.0000', '7.1000', '7.1000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93601, '2022-06-20', 2237, 88338, 5553, 48702, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93602, '2022-06-20', 2754, 88339, 5553, 18938, '1.0000', '0.0800', '0.0800', '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 (93603, '2022-06-20', 2416, 88340, 5553, 57493, '1.0000', '1.3319', '1.3319', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93604, '2022-06-20', 2169, 88341, 5553, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93605, '2022-06-20', 9959, 88342, 5553, 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 (93606, '2022-06-20', 2283, 88343, 5553, 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 (93607, '2022-06-20', 1863, 88344, 5553, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93608, '2022-06-20', 2263, 88345, 5553, NULL, '1.0000', '2.4800', '2.4800', '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 (93609, '2022-06-20', 1837, 88346, 5553, NULL, '1.0000', '-21.5736', '-21.5736', '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 (93610, '2022-06-20', 1580, 88347, 5553, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93611, '2022-06-20', 2225, 88348, 5553, 53638, '1.0000', '18.5000', '18.5000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93612, '2022-06-20', 9828, 88349, 5553, NULL, '1.0000', '2.9100', '2.9100', '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 (93613, '2022-06-20', 2169, 88350, 5553, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93614, '2022-06-20', 2169, 88351, 5553, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93615, '2022-06-20', 2252, 88352, 5553, 55710, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93616, '2022-06-20', 7411, 88353, 5553, NULL, '1.0000', '1.3013', '1.3013', '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 (93617, '2022-06-20', 1935, 88354, 5553, NULL, '1.0000', '0.7671', '0.7671', '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 (93618, '2022-06-20', 7917, 88355, 5553, NULL, '1.0000', '5.0000', '5.0000', '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 (93619, '2022-06-20', 1580, 88356, 5553, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93620, '2022-06-20', 1912, 88357, 5553, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93621, '2022-06-20', 9748, 88358, 5553, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93622, '2022-06-20', 2916, 88359, 5553, NULL, '1.0000', '777.2552', '777.2552', '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 (93623, '2022-06-20', 1501, 88360, 5553, NULL, '1.0000', '0.9225', '0.9225', '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 (93624, '2022-06-20', 9891, 88361, 5553, 56460, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93625, '2022-06-20', 2250, 88362, 5553, 57067, '1.0000', '8.6441', '8.6441', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93626, '2022-06-20', 7753, 88363, 5553, NULL, '1.0000', '3.1400', '3.1400', '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 (93627, '2022-06-20', 8844, 88364, 5553, 55695, '1.0000', '4.0579', '4.0579', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93628, '2022-06-20', 1863, 88365, 5553, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93629, '2022-06-20', 1935, 88366, 5553, NULL, '1.0000', '0.7671', '0.7671', '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 (93630, '2022-06-20', 2642, 88367, 5553, 56856, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93631, '2022-06-20', 2643, 88368, 5553, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93632, '2022-06-20', 2948, 88369, 5553, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93633, '2022-06-20', 9649, 88370, 5553, NULL, '1.0000', '14.2780', '14.2780', '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 (93634, '2022-06-20', 7953, 88371, 5553, NULL, '1.0000', '-0.5345', '-0.5345', '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 (93635, '2022-06-20', 1307, 88372, 5553, NULL, '1.0000', '-59.9897', '-59.9897', '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 (93636, '2022-06-20', 1863, 88373, 5553, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93637, '2022-06-20', 1935, 88374, 5553, NULL, '1.0000', '0.7671', '0.7671', '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 (93638, '2022-06-20', 8878, 88375, 5553, NULL, '1.0000', '3.8136', '3.8136', '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 (93639, '2022-06-20', 7709, 88376, 5554, NULL, '2.0000', '3.5000', '3.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 (93640, '2022-06-20', 2416, 88377, 5554, 4745, '-34.0000', '1.2000', '1.2000', '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 (93641, '2022-06-20', 2416, 88377, 5554, NULL, '35.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93642, '2022-06-20', 1689, 88378, 5554, 4897, '-18.0000', '60.7198', '60.7198', '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 (93643, '2022-06-20', 1689, 88378, 5554, NULL, '19.0000', '60.7198', '60.7198', '21.0000', '21.0000', '-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 (93644, '2022-06-20', 7708, 88379, 5554, 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 (93645, '2022-06-20', 7459, 88380, 5554, NULL, '30.0000', '2.3500', '2.3500', '4.0000', '4.0000', '-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 (93646, '2022-06-20', 7762, 88381, 5554, NULL, '1.0000', '1.5000', '1.5000', '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 (93647, '2022-06-20', 7588, 88382, 5554, NULL, '2.0000', '6.9000', '6.9000', '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 (93648, '2022-06-20', 2521, 88383, 5554, 6035, '-7.0000', '8.8000', '8.8000', '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 (93649, '2022-06-20', 2521, 88383, 5554, NULL, '8.0000', '8.8000', '8.8000', '16.0000', '16.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 (93650, '2022-06-20', 8677, 88384, 5554, NULL, '2.0000', '1.2800', '1.2800', '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 (93651, '2022-06-20', 7886, 88385, 5554, 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 (93652, '2022-06-20', 9461, 88386, 5554, NULL, '1.0000', '1.6000', '1.6000', '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 (93653, '2022-06-20', 9695, 88387, 5554, NULL, '1.0000', '4.5000', '4.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 (93654, '2022-06-20', 9657, 88388, 5554, NULL, '1.0000', '37.0000', '37.0000', '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 (93655, '2022-06-20', 7762, 88389, 5554, NULL, '1.0000', '1.5000', '1.5000', '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 (93656, '2022-06-20', 7703, 88390, 5554, NULL, '2.0000', '22.9900', '22.9900', '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 (93657, '2022-06-20', 7709, 88391, 5554, NULL, '2.0000', '3.5000', '3.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 (93658, '2022-06-20', 7444, 88392, 5554, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93659, '2022-06-20', 7674, 88393, 5554, NULL, '1.0000', '1.3000', '1.3000', '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 (93660, '2022-06-20', 9098, 88394, 5554, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93661, '2022-06-20', 7514, 88395, 5554, NULL, '1.0000', '2.2500', '2.2500', '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 (93662, '2022-06-20', 7333, 88396, 5554, NULL, '1.0000', '13.5000', '13.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 (93663, '2022-06-20', 7674, 88397, 5554, NULL, '1.0000', '1.3000', '1.3000', '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 (93664, '2022-06-20', 8085, 88398, 5554, NULL, '1.0000', '1.1700', '1.1700', '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 (93665, '2022-06-20', 9734, 88399, 5554, NULL, '2.0000', '0.3200', '0.3200', '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 (93666, '2022-06-20', 9274, 88400, 5554, NULL, '1.0000', '3.6000', '3.6000', '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 (93667, '2022-06-20', 8534, 88401, 5554, 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 (93668, '2022-06-20', 7748, 88402, 5554, NULL, '1.0000', '7.3000', '7.3000', '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 (93669, '2022-06-20', 2456, 88403, 5554, 4800, '-2.0000', '18.5000', '18.5000', '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 (93670, '2022-06-20', 2456, 88403, 5554, NULL, '3.0000', '18.5000', '18.5000', '24.0000', '24.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 (93671, '2022-06-20', 2887, 88404, 5555, NULL, '1.0000', '11.0000', '11.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 (93672, '2022-06-20', 9831, 88405, 5555, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93673, '2022-06-20', 9830, 88406, 5555, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93674, '2022-06-20', 1812, 88407, 5555, 54944, '1.0000', '9.3212', '9.3212', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93675, '2022-06-20', 7411, 88408, 5556, NULL, '1.0000', '1.3500', '1.3500', '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 (93676, '2022-06-20', 1331, 88409, 5556, NULL, '1.0000', '4.2000', '4.2000', '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 (93677, '2022-06-20', 1935, 88410, 5556, 5586, '-146.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 (93678, '2022-06-20', 1935, 88410, 5556, NULL, '149.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-149.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93679, '2022-06-20', 9734, 88411, 5556, NULL, '4.0000', '0.3200', '0.3200', '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 (93680, '2022-06-20', 2315, 88412, 5556, 2735, '-479.0000', '0.3300', '0.3300', '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 (93681, '2022-06-20', 2315, 88412, 5556, NULL, '482.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-482.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93682, '2022-06-20', 1387, 88413, 5556, NULL, '1.0000', '10.5068', '10.5068', '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 (93683, '2022-06-20', 2366, 88414, 5556, 3833, '-66.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 (93684, '2022-06-20', 2366, 88414, 5556, NULL, '68.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93685, '2022-06-20', 2289, 88415, 5556, 2949, '-204.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 (93686, '2022-06-20', 2289, 88415, 5556, NULL, '208.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-208.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93687, '2022-06-20', 2643, 88416, 5556, NULL, '1.0000', '0.8700', '0.8700', '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 (93688, '2022-06-20', 2916, 88417, 5556, 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 (93689, '2022-06-20', 2315, 88418, 5556, 2735, '-479.0000', '0.3300', '0.3300', '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 (93690, '2022-06-20', 2315, 88418, 5556, NULL, '481.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-481.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93691, '2022-06-20', 2864, 88419, 5556, 17587, '-45.0000', '1.5198', '1.5198', '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 (93692, '2022-06-20', 2864, 88419, 5556, NULL, '46.0000', '1.5198', '1.5198', '2.2000', '2.2000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93693, '2022-06-20', 2384, 88420, 5556, 4087, '-47.0000', '0.4000', '0.4000', '0.7000', '0.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 (93694, '2022-06-20', 2384, 88420, 5556, NULL, '49.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93695, '2022-06-20', 9695, 88421, 5556, NULL, '1.0000', '4.5000', '4.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 (93696, '2022-06-20', 2381, 88422, 5557, 56373, '1.0000', '14.1080', '14.1080', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93697, '2022-06-20', 3029, 88423, 5557, NULL, '1.0000', '123.8886', '123.8886', '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 (93698, '2022-06-20', 1730, 88424, 5558, 46769, '2.0000', '23.8847', '23.8847', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93699, '2022-06-20', 9734, 88425, 5558, 56220, '9.0000', '0.3200', '0.3200', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93700, '2022-06-20', 1839, 88426, 5558, 55762, '1.0000', '7.7891', '7.7891', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93701, '2022-06-20', 1867, 88427, 5558, NULL, '1.0000', '9.0894', '9.0894', '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 (93702, '2022-06-20', 2105, 88428, 5558, 56726, '2.0000', '2.0391', '2.0391', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93703, '2022-06-20', 1674, 88429, 5558, 55764, '1.0000', '9.2774', '9.2774', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93704, '2022-06-20', 1781, 88430, 5558, 4936, '1.0000', '4.1000', '4.1000', '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 (93705, '2022-06-20', 9716, 88431, 5558, 45080, '2.0000', '4.4000', '4.4000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93706, '2022-06-20', 1602, 88432, 5558, 56909, '1.0000', '6.9969', '6.9969', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93707, '2022-06-20', 2169, 88433, 5558, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93708, '2022-06-20', 9729, 88434, 5558, 46048, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93709, '2022-06-20', 1863, 88435, 5558, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93710, '2022-06-20', 9821, 88436, 5558, 56978, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93711, '2022-06-20', 2242, 88437, 5558, 55869, '3.0000', '0.7167', '0.7167', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93712, '2022-06-20', 7756, 88438, 5558, NULL, '1.0000', '26.9296', '26.9296', '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 (93713, '2022-06-20', 9732, 88439, 5558, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93714, '2022-06-20', 2769, 88440, 5558, 52293, '2.0000', '2.8167', '2.8167', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93715, '2022-06-20', 2769, 88440, 5558, NULL, '2.0000', '2.8167', '2.8167', '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 (93716, '2022-06-20', 1411, 88441, 5558, 53254, '1.0000', '25.9566', '25.9566', '35.0000', '35.0000', '8.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93717, '2022-06-20', 1665, 88442, 5558, 56234, '2.0000', '1.1809', '1.1809', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93718, '2022-06-20', 1666, 88443, 5558, 56912, '1.0000', '32.6073', '32.6073', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93719, '2022-06-20', 8184, 88444, 5559, 55561, '2.0000', '3.0310', '3.0310', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93720, '2022-06-20', 8184, 88444, 5559, NULL, '8.0000', '3.0310', '3.0310', '4.0000', '4.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 (93721, '2022-06-20', 9822, 88445, 5559, 51220, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93722, '2022-06-20', 7612, 88446, 5559, NULL, '2.0000', '1.6100', '1.6100', '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 (93723, '2022-06-20', 2061, 88447, 5559, NULL, '1.0000', '10.3123', '10.3123', '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 (93724, '2022-06-20', 2221, 88448, 5559, NULL, '1.0000', '12.6522', '12.6522', '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 (93725, '2022-06-20', 1787, 88449, 5559, NULL, '2.0000', '0.5000', '0.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 (93726, '2022-06-20', 1999, 88450, 5559, 57126, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93727, '2022-06-20', 9830, 88451, 5559, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93728, '2022-06-20', 8740, 88452, 5559, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93729, '2022-06-20', 2379, 88453, 5559, NULL, '1.0000', '-3.0170', '-3.0170', '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 (93730, '2022-06-20', 8878, 88454, 5559, NULL, '1.0000', '3.8136', '3.8136', '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 (93731, '2022-06-20', 7514, 88455, 5559, NULL, '1.0000', '2.2500', '2.2500', '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 (93732, '2022-06-20', 1699, 88456, 5559, NULL, '1.0000', '3.2000', '3.2000', '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 (93733, '2022-06-20', 1840, 88457, 5559, NULL, '2.0000', '0.2400', '0.2400', '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 (93734, '2022-06-20', 1841, 88458, 5559, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93735, '2022-06-20', 1499, 88459, 5559, 54918, '1.0000', '0.3993', '0.3993', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93736, '2022-06-20', 7403, 88460, 5559, 55724, '1.0000', '1.0100', '1.0100', '1.3000', '1.3000', '59.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93737, '2022-06-20', 2379, 88461, 5559, NULL, '1.0000', '-3.0170', '-3.0170', '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 (93738, '2022-06-20', 9831, 88462, 5559, 57496, '4.0000', '1.6920', '1.6920', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93739, '2022-06-20', 9735, 88463, 5559, 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 (93740, '2022-06-20', 3029, 88464, 5559, NULL, '1.0000', '123.8886', '123.8886', '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 (93741, '2022-06-20', 2169, 88465, 5559, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93742, '2022-06-20', 2643, 88466, 5559, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93743, '2022-06-20', 2237, 88467, 5559, 48702, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93744, '2022-06-20', 8699, 88468, 5559, NULL, '1.0000', '6.3800', '6.3800', '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 (93745, '2022-06-20', 9598, 88469, 5559, 51686, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93746, '2022-06-20', 2643, 88470, 5559, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93747, '2022-06-20', 7514, 88471, 5559, NULL, '1.0000', '2.2500', '2.2500', '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 (93748, '2022-06-20', 7579, 88472, 5559, NULL, '2.0000', '15.0000', '15.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 (93749, '2022-06-20', 1499, 88473, 5559, 54918, '4.0000', '0.3993', '0.3993', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93750, '2022-06-20', 9832, 88474, 5559, 57495, '1.0000', '1.7283', '1.7283', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93751, '2022-06-20', 2169, 88475, 5559, 55701, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93752, '2022-06-20', 9830, 88476, 5559, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93753, '2022-06-20', 9831, 88477, 5559, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93754, '2022-06-20', 2643, 88478, 5559, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93755, '2022-06-20', 1785, 88479, 5559, 51337, '1.0000', '16.7767', '16.7767', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93756, '2022-06-20', 2916, 88480, 5559, NULL, '1.0000', '777.2552', '777.2552', '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 (93757, '2022-06-20', 2315, 88481, 5559, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93758, '2022-06-20', 2169, 88482, 5559, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93759, '2022-06-20', 9834, 88483, 5559, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93760, '2022-06-20', 8677, 88484, 5559, NULL, '1.0000', '496.2705', '496.2705', '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 (93761, '2022-06-20', 2295, 88485, 5559, 57068, '1.0000', '1.4104', '1.4104', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93762, '2022-06-20', 7933, 88486, 5559, NULL, '1.0000', '-0.1222', '-0.1222', '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 (93763, '2022-06-20', 9737, 88487, 5559, NULL, '1.0000', '9.9667', '9.9667', '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 (93764, '2022-06-20', 7713, 88488, 5559, 57060, '3.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93765, '2022-06-20', 9819, 88489, 5559, 55635, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93766, '2022-06-20', 2283, 88490, 5559, 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 (93767, '2022-06-20', 7328, 88491, 5559, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (93768, '2022-06-20', 7564, 88492, 5559, NULL, '1.0000', '0.6400', '0.6400', '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 (93769, '2022-06-20', 9832, 88493, 5559, 57495, '1.0000', '1.7283', '1.7283', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93770, '2022-06-20', 1762, 88494, 5559, 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 (93771, '2022-06-20', 2237, 88495, 5559, 48702, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93772, '2022-06-20', 1851, 88496, 5559, 55913, '1.0000', '12.6300', '12.6300', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93773, '2022-06-20', 9830, 88497, 5559, 57497, '4.0000', '1.9614', '1.9614', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93774, '2022-06-20', 2394, 88498, 5559, NULL, '1.0000', '6.0000', '6.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 (93775, '2022-06-20', 1501, 88499, 5559, NULL, '1.0000', '0.9225', '0.9225', '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 (93776, '2022-06-20', 1388, 88500, 5559, 51245, '1.0000', '6.1880', '6.1880', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93777, '2022-06-20', 2169, 88501, 5559, 55701, '2.0000', '1.6119', '1.6119', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93778, '2022-06-20', 2295, 88502, 5559, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93779, '2022-06-20', 2738, 88503, 5559, 56428, '1.0000', '9.2000', '9.2000', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93780, '2022-06-20', 9646, 88504, 5559, 41424, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93781, '2022-06-20', 2010, 88505, 5559, 57153, '1.0000', '1.2882', '1.2882', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93782, '2022-06-20', 2384, 88506, 5559, NULL, '2.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93783, '2022-06-20', 2221, 88507, 5559, NULL, '1.0000', '12.6522', '12.6522', '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 (93784, '2022-06-20', 1409, 88508, 5559, 54968, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93785, '2022-06-20', 1314, 88509, 5559, 55930, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93786, '2022-06-20', 1687, 88510, 5560, 56240, '1.0000', '14.3032', '14.3032', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93787, '2022-06-20', 1839, 88511, 5560, 55762, '2.0000', '7.7891', '7.7891', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93788, '2022-06-20', 1519, 88512, 5560, 55886, '1.0000', '3.3940', '3.3940', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93789, '2022-06-20', 2169, 88513, 5560, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93790, '2022-06-20', 1666, 88514, 5560, 56912, '1.0000', '32.6073', '32.6073', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93791, '2022-06-20', 2135, 88515, 5560, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93792, '2022-06-20', 2098, 88516, 5560, 6010, '1.0000', '1.0000', '1.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 (93793, '2022-06-20', 1812, 88517, 5560, 55880, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93794, '2022-06-20', 1935, 88518, 5560, 56892, '2.0000', '1.3636', '1.3636', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93795, '2022-06-20', 1863, 88519, 5560, 56917, '2.0000', '1.3484', '1.3484', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93796, '2022-06-20', 7684, 88520, 5560, NULL, '1.0000', '9.0000', '9.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 (93797, '2022-06-20', 2237, 88521, 5560, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93798, '2022-06-20', 2315, 88522, 5560, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (93799, '2022-06-20', 2753, 88523, 5561, 53665, '1.0000', '4.8632', '4.8632', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93800, '2022-06-20', 1501, 88524, 5561, NULL, '1.0000', '0.9225', '0.9225', '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 (93801, '2022-06-20', 7472, 88525, 5561, NULL, '1.0000', '-56.4939', '-56.4939', '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 (93802, '2022-06-20', 9831, 88526, 5561, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93803, '2022-06-20', 9695, 88527, 5561, 57498, '2.0000', '5.2342', '5.2342', '8.0000', '8.0000', '40.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93804, '2022-06-20', 7473, 88528, 5561, 39817, '2.0000', '0.1679', '0.1679', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93805, '2022-06-20', 8146, 88529, 5561, 57071, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93806, '2022-06-20', 1651, 88530, 5561, NULL, '1.0000', '8.2255', '8.2255', '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 (93807, '2022-06-20', 7411, 88531, 5561, NULL, '1.0000', '1.3013', '1.3013', '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 (93808, '2022-06-20', 1670, 88532, 5561, NULL, '1.0000', '7.2499', '7.2499', '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 (93809, '2022-06-20', 1519, 88533, 5561, 48674, '1.0000', '3.7244', '3.7244', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93810, '2022-06-20', 1677, 88534, 5561, NULL, '1.0000', '6.3000', '6.3000', '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 (93811, '2022-06-20', 2916, 88535, 5561, NULL, '1.0000', '777.2552', '777.2552', '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 (93812, '2022-06-20', 7411, 88536, 5561, NULL, '1.0000', '1.3013', '1.3013', '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 (93813, '2022-06-20', 2169, 88537, 5561, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93814, '2022-06-20', 7411, 88538, 5561, NULL, '1.0000', '1.3013', '1.3013', '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 (93815, '2022-06-20', 1529, 88539, 5561, 50073, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93816, '2022-06-20', 2643, 88540, 5561, 57494, '1.0000', '0.9927', '0.9927', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93817, '2022-06-20', 2315, 88541, 5561, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93818, '2022-06-20', 1807, 88542, 5561, NULL, '3.0000', '34.9993', '34.9993', '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 (93819, '2022-06-20', 1521, 88543, 5561, NULL, '2.0000', '10.1500', '10.1500', '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 (93820, '2022-06-20', 8746, 88544, 5562, 55447, '1.0000', '129.8458', '129.8458', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93821, '2022-06-20', 8746, 88545, 5563, 55447, '1.0000', '129.8458', '129.8458', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93822, '2022-06-20', 7879, 88546, 5564, NULL, '2.0000', '1.9800', '1.9800', '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 (93823, '2022-06-20', 8925, 88547, 5564, NULL, '1.0000', '2.4000', '2.4000', '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 (93824, '2022-06-20', 2295, 88548, 5564, 2954, '-13.0000', '0.9600', '0.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 (93825, '2022-06-20', 2295, 88548, 5564, NULL, '16.0000', '0.9600', '0.9600', '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 (93826, '2022-06-20', 9695, 88549, 5564, NULL, '1.0000', '4.5000', '4.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 (93827, '2022-06-20', 8000, 88550, 5564, NULL, '1.0000', '6.8400', '6.8400', '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 (93828, '2022-06-20', 7831, 88551, 5564, NULL, '1.0000', '22.5000', '22.5000', '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 (93829, '2022-06-20', 9461, 88552, 5564, NULL, '1.0000', '1.6000', '1.6000', '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 (93830, '2022-06-20', 7781, 88553, 5564, NULL, '1.0000', '4.2500', '4.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 (93831, '2022-06-20', 7825, 88554, 5564, NULL, '1.0000', '6.5000', '6.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 (93832, '2022-06-20', 7952, 88555, 5564, 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 (93833, '2022-06-20', 9245, 88556, 5564, NULL, '1.0000', '6.6100', '6.6100', '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 (93834, '2022-06-20', 7674, 88557, 5564, NULL, '1.0000', '1.3000', '1.3000', '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 (93835, '2022-06-20', 7963, 88558, 5564, NULL, '1.0000', '14.7000', '14.7000', '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 (93836, '2022-06-20', 9001, 88559, 5564, NULL, '1.0000', '23.5000', '23.5000', '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 (93837, '2022-06-20', 1501, 88560, 5564, NULL, '5.0000', '2.0500', '2.0500', '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 (93838, '2022-06-20', 8539, 88561, 5564, NULL, '1.0000', '31.8000', '31.8000', '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 (93839, '2022-06-20', 7674, 88562, 5564, NULL, '1.0000', '1.3000', '1.3000', '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 (93840, '2022-06-20', 7881, 88563, 5564, NULL, '1.0000', '2.3000', '2.3000', '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 (93841, '2022-06-20', 1760, 88564, 5564, 93, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '16.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 (93842, '2022-06-20', 7447, 88565, 5564, NULL, '4.0000', '19.1100', '19.1100', '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 (93843, '2022-06-20', 7317, 88566, 5564, NULL, '1.0000', '19.5500', '19.5500', '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 (93844, '2022-06-20', 8085, 88567, 5564, NULL, '2.0000', '1.1700', '1.1700', '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 (93845, '2022-06-20', 7527, 88568, 5564, NULL, '1.0000', '0.8900', '0.8900', '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 (93846, '2022-06-20', 2315, 88569, 5564, 2735, '-484.0000', '0.3300', '0.3300', '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 (93847, '2022-06-20', 2315, 88569, 5564, NULL, '485.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-485.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93848, '2022-06-20', 8924, 88570, 5564, NULL, '1.0000', '4.5000', '4.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 (93849, '2022-06-20', 9204, 88571, 5564, NULL, '2.0000', '8.1600', '8.1600', '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 (93850, '2022-06-20', 7411, 88572, 5564, NULL, '1.0000', '1.3500', '1.3500', '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 (93851, '2022-06-20', 8057, 88573, 5564, NULL, '1.0000', '6.0000', '6.0000', '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 (93852, '2022-06-20', 8457, 88574, 5564, NULL, '1.0000', '4.5000', '4.5000', '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 (93853, '2022-06-20', 7707, 88575, 5564, NULL, '1.0000', '7.0000', '7.0000', '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 (93854, '2022-06-20', 1935, 88576, 5564, 5586, '-149.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 (93855, '2022-06-20', 1935, 88576, 5564, NULL, '150.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93856, '2022-06-20', 7514, 88577, 5564, NULL, '1.0000', '2.2500', '2.2500', '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 (93857, '2022-06-20', 7715, 88578, 5564, NULL, '1.0000', '1.8900', '1.8900', '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 (93858, '2022-06-20', 7819, 88579, 5564, NULL, '1.0000', '9.5000', '9.5000', '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 (93859, '2022-06-20', 9399, 88580, 5564, NULL, '1.0000', '0.9800', '0.9800', '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 (93860, '2022-06-20', 9894, 88581, 5564, 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 (93861, '2022-06-20', 8878, 88582, 5564, NULL, '1.0000', '6.6700', '6.6700', '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 (93862, '2022-06-20', 7742, 88583, 5564, 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 (93863, '2022-06-20', 9092, 88584, 5564, NULL, '2.0000', '5.2900', '5.2900', '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 (93864, '2022-06-20', 8753, 88585, 5564, 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 (93865, '2022-06-20', 7741, 88586, 5564, NULL, '1.0000', '1.2000', '1.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 (93866, '2022-06-20', 2290, 88587, 5564, 2950, '-5.0000', '6.8500', '6.8500', '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 (93867, '2022-06-20', 2290, 88587, 5564, NULL, '6.0000', '6.8500', '6.8500', '15.0000', '15.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 (93868, '2022-06-20', 8878, 88588, 5564, NULL, '1.0000', '6.6700', '6.6700', '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 (93869, '2022-06-20', 8682, 88589, 5564, NULL, '1.0000', '30.0000', '30.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 (93870, '2022-06-20', 9725, 88590, 5564, 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 (93871, '2022-06-20', 8944, 88591, 5564, NULL, '1.0000', '45.2400', '45.2400', '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 (93872, '2022-06-20', 2582, 88592, 5565, 56940, '1.0000', '14.0000', '14.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93873, '2022-06-20', 7641, 88593, 5566, NULL, '1.0000', '1.9000', '1.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 (93874, '2022-06-20', 7385, 88594, 5566, NULL, '4.0000', '2.0000', '2.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 (93875, '2022-06-20', 2384, 88595, 5567, NULL, '2.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93876, '2022-06-20', 7411, 88596, 5567, NULL, '1.0000', '1.3013', '1.3013', '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 (93877, '2022-06-20', 9821, 88597, 5567, 51690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93878, '2022-06-21', 2916, 88598, 5568, 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 (93879, '2022-06-21', 9747, 88599, 5568, NULL, '2.0000', '0.6500', '0.6500', '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 (93880, '2022-06-21', 2277, 88600, 5568, 2937, '-66.0000', '0.7800', '0.7800', '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 (93881, '2022-06-21', 2277, 88600, 5568, NULL, '68.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93882, '2022-06-21', 1425, 88601, 5568, NULL, '1.0000', '6.4405', '6.4405', '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 (93883, '2022-06-21', 9729, 88602, 5568, NULL, '1.0000', '0.6200', '0.6200', '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 (93884, '2022-06-21', 1504, 88603, 5568, NULL, '10.0000', '1.5000', '1.5000', '2.8000', '2.8000', '-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 (93885, '2022-06-21', 9204, 88604, 5568, NULL, '1.0000', '8.1600', '8.1600', '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 (93886, '2022-06-21', 1935, 88605, 5568, 5586, '-150.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 (93887, '2022-06-21', 1935, 88605, 5568, NULL, '153.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-153.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93888, '2022-06-21', 2237, 88606, 5568, 2781, '-72.0000', '1.0600', '1.0600', '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 (93889, '2022-06-21', 2237, 88606, 5568, NULL, '73.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93890, '2022-06-21', 2916, 88607, 5568, 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 (93891, '2022-06-21', 2315, 88608, 5568, 2735, '-485.0000', '0.3300', '0.3300', '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 (93892, '2022-06-21', 2315, 88608, 5568, NULL, '487.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-487.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93893, '2022-06-21', 1342, 88609, 5568, 11264, '-22.0000', '6.8074', '6.8074', '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 (93894, '2022-06-21', 1342, 88609, 5568, NULL, '23.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-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 (93895, '2022-06-21', 2169, 88610, 5568, 10737, '-164.0000', '3.8397', '3.8397', '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 (93896, '2022-06-21', 2169, 88610, 5568, NULL, '165.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-165.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93897, '2022-06-21', 7802, 88611, 5568, NULL, '2.0000', '0.9200', '0.9200', '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 (93898, '2022-06-21', 9794, 88612, 5568, NULL, '1.0000', '1.0800', '1.0800', '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 (93899, '2022-06-21', 2277, 88613, 5568, 2937, '-66.0000', '0.7800', '0.7800', '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 (93900, '2022-06-21', 2277, 88613, 5568, NULL, '67.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93901, '2022-06-21', 1524, 88614, 5568, NULL, '1.0000', '3.8400', '3.8400', '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 (93902, '2022-06-21', 2862, 88615, 5568, NULL, '3.0000', '5.0000', '5.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 (93903, '2022-06-21', 2437, 88616, 5568, 5306, '-6.0000', '80.0000', '80.0000', '140.0000', '140.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93904, '2022-06-21', 2437, 88616, 5568, NULL, '7.0000', '80.0000', '80.0000', '140.0000', '140.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 (93905, '2022-06-21', 2858, 88617, 5568, 17772, '-97.0000', '1.0000', '1.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 (93906, '2022-06-21', 2858, 88617, 5568, NULL, '98.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93907, '2022-06-21', 1875, 88618, 5568, 6949, '-81.0000', '2.4000', '2.4000', '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 (93908, '2022-06-21', 1875, 88618, 5568, NULL, '91.0000', '2.4000', '2.4000', '3.7000', '3.7000', '-91.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93909, '2022-06-21', 2379, 88619, 5568, 4032, '-68.0000', '1.5900', '1.5900', '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 (93910, '2022-06-21', 2379, 88619, 5568, NULL, '69.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93911, '2022-06-21', 1326, 88620, 5568, 20662, '1.0000', '2.7762', '2.7762', '6.0000', '6.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 (93912, '2022-06-21', 7638, 88621, 5569, 56526, '1.0000', '7.0429', '7.0429', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93913, '2022-06-21', 7781, 88622, 5569, NULL, '3.0000', '5.2802', '5.2802', '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 (93914, '2022-06-21', 7952, 88623, 5569, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93915, '2022-06-21', 7693, 88624, 5569, 51275, '1.0000', '4.8831', '4.8831', '5.4000', '5.4000', '1.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93916, '2022-06-21', 2315, 88625, 5569, 56594, '1.0000', '0.7474', '0.7474', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93917, '2022-06-21', 9914, 88626, 5569, 57462, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93918, '2022-06-21', 8878, 88627, 5569, 57207, '2.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93919, '2022-06-21', 7431, 88628, 5569, 53500, '1.0000', '-21.4007', '-21.4007', '33.0000', '33.0000', '9.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93920, '2022-06-21', 1935, 88629, 5569, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '120.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93921, '2022-06-21', 2868, 88630, 5569, 56525, '1.0000', '7.8610', '7.8610', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93922, '2022-06-21', 7411, 88631, 5569, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93923, '2022-06-21', 2279, 88632, 5569, 56502, '1.0000', '2.7380', '2.7380', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93924, '2022-06-21', 8127, 88633, 5569, NULL, '1.0000', '24.5300', '24.5300', '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 (93925, '2022-06-21', 7560, 88634, 5569, 57171, '1.0000', '40.6210', '40.6210', '56.0000', '56.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93926, '2022-06-21', 9537, 88635, 5569, 46156, '1.0000', '36.0000', '36.0000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93927, '2022-06-21', 8203, 88636, 5569, 57407, '1.0000', '2.0908', '2.0908', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93928, '2022-06-21', 8878, 88637, 5569, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93929, '2022-06-21', 8457, 88638, 5569, NULL, '1.0000', '4.9044', '4.9044', '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 (93930, '2022-06-21', 2295, 88639, 5569, NULL, '3.0000', '-2.3086', '-2.3086', '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 (93931, '2022-06-21', 8924, 88640, 5569, 56549, '1.0000', '5.4429', '5.4429', '7.5000', '7.5000', '19.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93932, '2022-06-21', 9272, 88641, 5569, NULL, '1.0000', '3.1000', '3.1000', '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 (93933, '2022-06-21', 2825, 88642, 5569, 30221, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93934, '2022-06-21', 7867, 88643, 5569, 57203, '2.0000', '2.3130', '2.3130', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93935, '2022-06-21', 7782, 88644, 5569, NULL, '1.0000', '5.0000', '5.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 (93936, '2022-06-21', 9747, 88645, 5569, 56183, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93937, '2022-06-21', 7542, 88646, 5569, NULL, '1.0000', '4.7100', '4.7100', '5.0300', '5.0300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93938, '2022-06-21', 7411, 88647, 5569, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93939, '2022-06-21', 9092, 88648, 5569, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93940, '2022-06-21', 1498, 88649, 5569, 50696, '2.0000', '0.3942', '0.3942', '0.6000', '0.6000', '11.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93941, '2022-06-21', 7715, 88650, 5570, 57195, '1.0000', '3.4699', '3.4699', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93942, '2022-06-21', 7879, 88651, 5570, NULL, '10.0000', '2.2800', '2.2800', '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 (93943, '2022-06-21', 9794, 88652, 5571, NULL, '2.0000', '1.0800', '1.0800', '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 (93944, '2022-06-21', 8960, 88653, 5572, 54480, '1.0000', '47.6400', '47.6400', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93945, '2022-06-21', 8052, 88654, 5572, 57418, '1.0000', '37.7100', '37.7100', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93946, '2022-06-21', 8444, 88655, 5573, 55973, '1.0000', '-37.8763', '-37.8763', '2.5000', '2.5000', '90.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93947, '2022-06-21', 9399, 88656, 5574, NULL, '1.0000', '0.9794', '0.9794', '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 (93948, '2022-06-21', 1340, 88657, 5575, 55581, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93949, '2022-06-21', 2088, 88658, 5575, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93950, '2022-06-21', 7411, 88659, 5575, NULL, '1.0000', '1.3013', '1.3013', '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 (93951, '2022-06-21', 1935, 88660, 5575, NULL, '1.0000', '0.7671', '0.7671', '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 (93952, '2022-06-21', 2315, 88661, 5575, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93953, '2022-06-21', 1577, 88662, 5575, NULL, '1.0000', '1.6245', '1.6245', '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 (93954, '2022-06-21', 2237, 88663, 5575, 48702, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93955, '2022-06-21', 9735, 88664, 5575, 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 (93956, '2022-06-21', 7411, 88665, 5575, NULL, '1.0000', '1.3013', '1.3013', '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 (93957, '2022-06-21', 1577, 88666, 5575, NULL, '1.0000', '1.6245', '1.6245', '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 (93958, '2022-06-21', 2169, 88667, 5575, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93959, '2022-06-21', 9729, 88668, 5575, NULL, '1.0000', '0.6200', '0.6200', '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 (93960, '2022-06-21', 7933, 88669, 5575, NULL, '1.0000', '-0.1222', '-0.1222', '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 (93961, '2022-06-21', 2295, 88670, 5575, 57068, '1.0000', '1.4104', '1.4104', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93962, '2022-06-21', 9856, 88671, 5575, 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 (93963, '2022-06-21', 1532, 88672, 5575, 56447, '1.0000', '1.4708', '1.4708', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93964, '2022-06-21', 2315, 88673, 5575, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93965, '2022-06-21', 9831, 88674, 5575, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93966, '2022-06-21', 2916, 88675, 5575, NULL, '1.0000', '777.2552', '777.2552', '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 (93967, '2022-06-21', 9830, 88676, 5575, 57497, '1.0000', '1.9614', '1.9614', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93968, '2022-06-21', 7411, 88677, 5575, NULL, '1.0000', '1.3013', '1.3013', '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 (93969, '2022-06-21', 7638, 88678, 5575, NULL, '1.0000', '12.0000', '12.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 (93970, '2022-06-21', 1543, 88679, 5575, NULL, '1.0000', '26.1267', '26.1267', '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 (93971, '2022-06-21', 2342, 88680, 5575, 54886, '5.0000', '2.2091', '2.2091', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93972, '2022-06-21', 1425, 88681, 5575, NULL, '1.0000', '19.3384', '19.3384', '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 (93973, '2022-06-21', 7641, 88682, 5575, NULL, '1.0000', '1.9000', '1.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 (93974, '2022-06-21', 9762, 88683, 5575, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93975, '2022-06-21', 7411, 88684, 5575, NULL, '1.0000', '1.3013', '1.3013', '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 (93976, '2022-06-21', 9828, 88685, 5575, NULL, '1.0000', '2.9100', '2.9100', '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 (93977, '2022-06-21', 3039, 88686, 5575, 55153, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93978, '2022-06-21', 9831, 88687, 5575, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93979, '2022-06-21', 7411, 88688, 5575, NULL, '1.0000', '1.3013', '1.3013', '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 (93980, '2022-06-21', 9737, 88689, 5575, NULL, '1.0000', '9.9667', '9.9667', '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 (93981, '2022-06-21', 7339, 88690, 5575, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (93982, '2022-06-21', 2295, 88691, 5575, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93983, '2022-06-21', 8677, 88692, 5575, NULL, '1.0000', '496.2705', '496.2705', '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 (93984, '2022-06-21', 7564, 88693, 5575, NULL, '1.0000', '0.6400', '0.6400', '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 (93985, '2022-06-21', 1905, 88694, 5575, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93986, '2022-06-21', 2293, 88695, 5575, NULL, '1.0000', '-17.4320', '-17.4320', '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 (93987, '2022-06-21', 2706, 88696, 5575, 48666, '1.0000', '8.0157', '8.0157', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93988, '2022-06-21', 9732, 88697, 5575, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93989, '2022-06-21', 2237, 88698, 5575, 48702, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93990, '2022-06-21', 7334, 88699, 5575, NULL, '3.0000', '8.1600', '8.1600', '13.5000', '13.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 (93991, '2022-06-21', 2379, 88700, 5575, NULL, '1.0000', '-3.0170', '-3.0170', '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 (93992, '2022-06-21', 7933, 88701, 5575, NULL, '1.0000', '-0.1222', '-0.1222', '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 (93993, '2022-06-21', 1369, 88702, 5575, 55569, '1.0000', '7.2000', '7.2000', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93994, '2022-06-21', 9866, 88703, 5575, NULL, '1.0000', '9.5500', '9.5500', '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 (93995, '2022-06-21', 9729, 88704, 5575, NULL, '1.0000', '0.6200', '0.6200', '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 (93996, '2022-06-21', 8017, 88705, 5575, 57065, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93997, '2022-06-21', 7459, 88706, 5575, NULL, '1.0000', '-15.3118', '-15.3118', '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 (93998, '2022-06-21', 1577, 88707, 5575, NULL, '1.0000', '1.6245', '1.6245', '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 (93999, '2022-06-21', 2277, 88708, 5575, NULL, '2.0000', '0.9399', '0.9399', '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 (94000, '2022-06-21', 1805, 88709, 5575, NULL, '1.0000', '40.8080', '40.8080', '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 (94001, '2022-06-21', 9794, 88710, 5575, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94002, '2022-06-21', 2315, 88711, 5575, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94003, '2022-06-21', 7411, 88712, 5575, NULL, '1.0000', '1.3013', '1.3013', '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 (94004, '2022-06-21', 1654, 88713, 5575, 39888, '1.0000', '9.2613', '9.2613', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94005, '2022-06-21', 2169, 88714, 5575, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94006, '2022-06-21', 3044, 88715, 5575, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '17.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 (94007, '2022-06-21', 2295, 88716, 5575, 57068, '3.0000', '1.4104', '1.4104', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94008, '2022-06-21', 2061, 88717, 5575, NULL, '1.0000', '10.3123', '10.3123', '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 (94009, '2022-06-21', 2320, 88718, 5575, 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 (94010, '2022-06-21', 3001, 88719, 5575, 37759, '5.0000', '2.5621', '2.5621', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94011, '2022-06-21', 2943, 88720, 5575, 38528, '1.0000', '3.3342', '3.3342', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94012, '2022-06-21', 1307, 88721, 5575, NULL, '1.0000', '-59.9897', '-59.9897', '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 (94013, '2022-06-21', 7744, 88722, 5575, NULL, '1.0000', '2.5833', '2.5833', '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 (94014, '2022-06-21', 2916, 88723, 5575, NULL, '1.0000', '777.2552', '777.2552', '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 (94015, '2022-06-21', 2315, 88724, 5575, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94016, '2022-06-21', 8017, 88725, 5575, 57065, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94017, '2022-06-21', 7411, 88726, 5575, NULL, '2.0000', '1.3013', '1.3013', '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 (94018, '2022-06-21', 2277, 88727, 5575, NULL, '2.0000', '0.9399', '0.9399', '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 (94019, '2022-06-21', 8017, 88728, 5575, 57065, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94020, '2022-06-21', 9812, 88729, 5575, NULL, '1.0000', '20.0000', '20.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 (94021, '2022-06-21', 1388, 88730, 5575, 51245, '1.0000', '6.1880', '6.1880', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94022, '2022-06-21', 9695, 88731, 5575, 57498, '1.0000', '5.2342', '5.2342', '8.0000', '8.0000', '39.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94023, '2022-06-21', 2342, 88732, 5575, 54886, '1.0000', '2.2091', '2.2091', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94024, '2022-06-21', 2315, 88733, 5576, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (94025, '2022-06-21', 7583, 88734, 5576, NULL, '2.0000', '4.0000', '4.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 (94026, '2022-06-21', 2236, 88735, 5576, 56244, '1.0000', '5.9676', '5.9676', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94027, '2022-06-21', 1743, 88736, 5576, 6814, '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 (94028, '2022-06-21', 1856, 88737, 5576, 56948, '1.0000', '4.9379', '4.9379', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94029, '2022-06-21', 7848, 88738, 5576, NULL, '1.0000', '15.0000', '15.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 (94030, '2022-06-21', 7745, 88739, 5576, NULL, '2.0000', '6.7000', '6.7000', '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 (94031, '2022-06-21', 2379, 88740, 5576, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94032, '2022-06-21', 2285, 88741, 5576, 56890, '1.0000', '40.3808', '40.3808', '65.5000', '65.5000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94033, '2022-06-21', 7753, 88742, 5576, NULL, '1.0000', '3.1400', '3.1400', '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 (94034, '2022-06-21', 1880, 88743, 5576, 55776, '1.0000', '4.8385', '4.8385', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94035, '2022-06-21', 1647, 88744, 5576, 55475, '1.0000', '5.6257', '5.6257', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94036, '2022-06-21', 2169, 88745, 5576, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94037, '2022-06-21', 1425, 88746, 5576, 56257, '1.0000', '6.9142', '6.9142', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94038, '2022-06-21', 7917, 88747, 5576, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94039, '2022-06-21', 9551, 88748, 5576, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '12.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94040, '2022-06-21', 9250, 88749, 5576, NULL, '1.0000', '20.5000', '20.5000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94041, '2022-06-21', 1504, 88750, 5576, 56247, '10.0000', '2.3266', '2.3266', '2.8000', '2.8000', '70.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94042, '2022-06-21', 1783, 88751, 5576, 56252, '3.0000', '0.2778', '0.2778', '13.5000', '13.5000', '12.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94043, '2022-06-21', 2135, 88752, 5576, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94044, '2022-06-21', 2285, 88753, 5577, 56890, '1.0000', '40.3808', '40.3808', '65.5000', '65.5000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94045, '2022-06-21', 1812, 88754, 5577, 55880, '2.0000', '8.3716', '8.3716', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94046, '2022-06-21', 7392, 88755, 5577, NULL, '1.0000', '19.5300', '19.5300', '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 (94047, '2022-06-21', 7672, 88756, 5578, NULL, '1.0000', '1.0200', '1.0200', '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 (94048, '2022-06-21', 8497, 88757, 5578, NULL, '1.0000', '9.0000', '9.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 (94049, '2022-06-21', 1760, 88758, 5578, 93, '4.0000', '111.8384', '111.8384', '1.0000', '1.0000', '12.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 (94050, '2022-06-21', 7881, 88759, 5578, NULL, '2.0000', '2.3000', '2.3000', '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 (94051, '2022-06-21', 9503, 88760, 5578, NULL, '1.0000', '20.6000', '20.6000', '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 (94052, '2022-06-21', 2242, 88761, 5578, 3059, '-71.0000', '0.4800', '0.4800', '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 (94053, '2022-06-21', 2242, 88761, 5578, NULL, '72.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94054, '2022-06-21', 7644, 88762, 5578, NULL, '5.0000', '4.4800', '4.4800', '10.0000', '10.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 (94055, '2022-06-21', 7592, 88763, 5578, NULL, '1.0000', '6.8000', '6.8000', '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 (94056, '2022-06-21', 7333, 88764, 5578, NULL, '1.0000', '13.5000', '13.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 (94057, '2022-06-21', 9735, 88765, 5578, 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 (94058, '2022-06-21', 7980, 88766, 5578, NULL, '2.0000', '17.4500', '17.4500', '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 (94059, '2022-06-21', 7776, 88767, 5578, 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 (94060, '2022-06-21', 2105, 88768, 5578, NULL, '1.0000', '1.3500', '1.3500', '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 (94061, '2022-06-21', 7774, 88769, 5578, NULL, '1.0000', '3.3000', '3.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 (94062, '2022-06-21', 7514, 88770, 5578, NULL, '1.0000', '2.2500', '2.2500', '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 (94063, '2022-06-21', 1916, 88771, 5578, 5445, '-8.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94064, '2022-06-21', 1916, 88771, 5578, NULL, '9.0000', '8.2300', '8.2300', '14.0000', '14.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 (94065, '2022-06-21', 7509, 88772, 5578, 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 (94066, '2022-06-21', 1665, 88773, 5578, 3235, '-131.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 (94067, '2022-06-21', 1665, 88773, 5578, NULL, '132.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-132.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94068, '2022-06-21', 1904, 88774, 5578, 5442, '-59.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 (94069, '2022-06-21', 1904, 88774, 5578, NULL, '62.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94070, '2022-06-21', 2315, 88775, 5578, 2735, '-487.0000', '0.3300', '0.3300', '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 (94071, '2022-06-21', 2315, 88775, 5578, NULL, '488.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-488.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94072, '2022-06-21', 8000, 88776, 5578, NULL, '1.0000', '6.8400', '6.8400', '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 (94073, '2022-06-21', 7518, 88777, 5578, NULL, '1.0000', '7.8200', '7.8200', '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 (94074, '2022-06-21', 2284, 88778, 5578, 22249, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (94075, '2022-06-21', 7757, 88779, 5578, NULL, '1.0000', '82.4400', '82.4400', '179.0000', '179.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94076, '2022-06-21', 9199, 88780, 5578, NULL, '1.0000', '19.0000', '19.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 (94077, '2022-06-21', 7708, 88781, 5578, 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 (94078, '2022-06-21', 7911, 88782, 5578, NULL, '1.0000', '4.3700', '4.3700', '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 (94079, '2022-06-21', 9329, 88783, 5578, NULL, '1.0000', '6.7000', '6.7000', '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 (94080, '2022-06-21', 1804, 88784, 5578, 4916, '-15.0000', '4.2500', '4.2500', '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 (94081, '2022-06-21', 1804, 88784, 5578, NULL, '16.0000', '4.2500', '4.2500', '8.5000', '8.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 (94082, '2022-06-21', 7674, 88785, 5578, NULL, '1.0000', '1.3000', '1.3000', '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 (94083, '2022-06-21', 7457, 88786, 5578, 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 (94084, '2022-06-21', 7411, 88787, 5578, NULL, '1.0000', '1.3500', '1.3500', '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 (94085, '2022-06-21', 7708, 88788, 5578, NULL, '2.0000', '7.8000', '7.8000', '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 (94086, '2022-06-21', 7518, 88789, 5578, NULL, '1.0000', '7.8200', '7.8200', '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 (94087, '2022-06-21', 2062, 88790, 5578, 2165, '-3.0000', '5.7540', '5.7540', '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 (94088, '2022-06-21', 2062, 88790, 5578, NULL, '4.0000', '5.7540', '5.7540', '12.0000', '12.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 (94089, '2022-06-21', 7980, 88791, 5578, NULL, '10.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (94090, '2022-06-21', 7368, 88792, 5578, NULL, '1.0000', '14.7500', '14.7500', '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 (94091, '2022-06-21', 7730, 88793, 5578, NULL, '6.0000', '0.1000', '0.1000', '0.2000', '0.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 (94092, '2022-06-21', 9092, 88794, 5578, NULL, '3.0000', '5.2900', '5.2900', '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 (94093, '2022-06-21', 8000, 88795, 5578, NULL, '2.0000', '6.8400', '6.8400', '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 (94094, '2022-06-21', 7334, 88796, 5578, NULL, '1.0000', '8.2300', '8.2300', '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 (94095, '2022-06-21', 9092, 88797, 5578, NULL, '2.0000', '5.2900', '5.2900', '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 (94096, '2022-06-21', 2315, 88798, 5578, 2735, '-487.0000', '0.3300', '0.3300', '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 (94097, '2022-06-21', 2315, 88798, 5578, NULL, '488.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-488.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94098, '2022-06-21', 1935, 88799, 5578, 5586, '-153.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 (94099, '2022-06-21', 1935, 88799, 5578, NULL, '154.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-154.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94100, '2022-06-21', 7947, 88800, 5578, NULL, '2.0000', '14.4400', '14.4400', '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 (94101, '2022-06-21', 7781, 88801, 5578, NULL, '3.0000', '4.2500', '4.2500', '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 (94102, '2022-06-21', 7334, 88802, 5578, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (94103, '2022-06-21', 7317, 88803, 5578, NULL, '1.0000', '19.5500', '19.5500', '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 (94104, '2022-06-21', 7753, 88804, 5578, NULL, '1.0000', '3.4000', '3.4000', '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 (94105, '2022-06-21', 9695, 88805, 5579, 57498, '1.0000', '5.2342', '5.2342', '8.0000', '8.0000', '38.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94106, '2022-06-21', 2027, 88806, 5579, 57092, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94107, '2022-06-21', 2088, 88807, 5579, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94108, '2022-06-21', 9726, 88808, 5579, 55719, '1.0000', '5.1059', '5.1059', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94109, '2022-06-21', 9030, 88809, 5579, NULL, '1.0000', '12.9000', '12.9000', '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 (94110, '2022-06-21', 9831, 88810, 5579, 57496, '3.0000', '1.6920', '1.6920', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94111, '2022-06-21', 1667, 88811, 5579, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94112, '2022-06-21', 9794, 88812, 5579, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94113, '2022-06-21', 9754, 88813, 5579, NULL, '1.0000', '1.8000', '1.8000', '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 (94114, '2022-06-21', 9634, 88814, 5579, 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 (94115, '2022-06-21', 2315, 88815, 5579, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94116, '2022-06-21', 8207, 88816, 5579, NULL, '1.0000', '0.0000', '0.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 (94117, '2022-06-21', 2260, 88817, 5579, 56404, '2.0000', '4.7545', '4.7545', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94118, '2022-06-21', 9482, 88818, 5579, NULL, '2.0000', '0.5000', '0.5000', '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 (94119, '2022-06-21', 2315, 88819, 5579, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94120, '2022-06-21', 9948, 88820, 5579, 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 (94121, '2022-06-21', 2592, 88821, 5579, 55933, '2.0000', '13.8100', '13.8100', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94122, '2022-06-21', 2969, 88822, 5580, 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 (94123, '2022-06-21', 7411, 88823, 5580, NULL, '2.0000', '1.3500', '1.3500', '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 (94124, '2022-06-21', 1840, 88824, 5580, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (94125, '2022-06-21', 7933, 88825, 5580, NULL, '1.0000', '0.4400', '0.4400', '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 (94126, '2022-06-21', 7411, 88826, 5580, NULL, '1.0000', '1.3500', '1.3500', '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 (94127, '2022-06-22', 9628, 88827, 5581, 40453, '1.0000', '46.1200', '46.1200', '55.0000', '55.0000', '7.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94128, '2022-06-22', 7559, 88828, 5581, 55144, '3.0000', '16.0369', '16.0369', '14.5000', '14.5000', '6.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94129, '2022-06-22', 7653, 88829, 5581, 55074, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94130, '2022-06-22', 7730, 88830, 5581, 57543, '5.0000', '0.1000', '0.1000', '0.2000', '0.2000', '123.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94131, '2022-06-22', 7473, 88831, 5581, NULL, '1.0000', '75.1643', '75.1643', '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 (94132, '2022-06-22', 8714, 88832, 5581, 56542, '1.0000', '3.8309', '3.8309', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94133, '2022-06-22', 8753, 88833, 5581, 54116, '1.0000', '3.3875', '3.3875', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94134, '2022-06-22', 7473, 88834, 5581, NULL, '1.0000', '75.1643', '75.1643', '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 (94135, '2022-06-22', 7558, 88835, 5581, NULL, '10.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-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 (94136, '2022-06-22', 8814, 88836, 5581, 57568, '10.0000', '-4.3750', '-4.3750', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94137, '2022-06-22', 7490, 88837, 5581, 57570, '20.0000', '1.5415', '1.5415', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94138, '2022-06-22', 8596, 88838, 5581, NULL, '1.0000', '39.8982', '39.8982', '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 (94139, '2022-06-22', 7514, 88839, 5581, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94140, '2022-06-22', 1837, 88840, 5581, 56551, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94141, '2022-06-22', 9092, 88841, 5581, 52527, '4.0000', '0.3175', '0.3175', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94142, '2022-06-22', 7411, 88842, 5581, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94143, '2022-06-22', 2618, 88843, 5581, 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 (94144, '2022-06-22', 9274, 88844, 5582, 56602, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94145, '2022-06-22', 9953, 88845, 5582, 57648, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94146, '2022-06-22', 7675, 88846, 5582, NULL, '1.0000', '84.8590', '84.8590', '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 (94147, '2022-06-22', 1743, 88847, 5583, NULL, '1.0000', '4.6550', '4.6550', '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 (94148, '2022-06-22', 3017, 88848, 5583, 56392, '1.0000', '3.9753', '3.9753', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94149, '2022-06-22', 7496, 88849, 5583, 56436, '1.0000', '3.8460', '3.8460', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94150, '2022-06-22', 1946, 88850, 5583, NULL, '1.0000', '-4.7391', '-4.7391', '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 (94151, '2022-06-22', 9827, 88851, 5583, NULL, '1.0000', '16.6600', '16.6600', '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 (94152, '2022-06-22', 1529, 88852, 5583, 48650, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94153, '2022-06-22', 2297, 88853, 5583, 55653, '1.0000', '10.3086', '10.3086', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94154, '2022-06-22', 2293, 88854, 5583, NULL, '6.0000', '-17.4320', '-17.4320', '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 (94155, '2022-06-22', 1695, 88855, 5583, 54176, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94156, '2022-06-22', 2289, 88856, 5583, 56470, '6.0000', '0.3611', '0.3611', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94157, '2022-06-22', 1840, 88857, 5583, NULL, '6.0000', '0.2400', '0.2400', '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 (94158, '2022-06-22', 7802, 88858, 5583, NULL, '3.0000', '1.1497', '1.1497', '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 (94159, '2022-06-22', 9648, 88859, 5583, 56870, '1.0000', '16.3300', '16.3300', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94160, '2022-06-22', 2262, 88860, 5583, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94161, '2022-06-22', 1855, 88861, 5583, NULL, '1.0000', '1.4820', '1.4820', '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 (94162, '2022-06-22', 2070, 88862, 5583, 49718, '1.0000', '2.2143', '2.2143', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94163, '2022-06-22', 9732, 88863, 5583, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94164, '2022-06-22', 2366, 88864, 5583, NULL, '1.0000', '-51.4778', '-51.4778', '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 (94165, '2022-06-22', 8878, 88865, 5583, NULL, '1.0000', '3.8136', '3.8136', '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 (94166, '2022-06-22', 7472, 88866, 5583, NULL, '1.0000', '-56.4939', '-56.4939', '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 (94167, '2022-06-22', 9729, 88867, 5583, NULL, '1.0000', '0.6200', '0.6200', '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 (94168, '2022-06-22', 1521, 88868, 5583, NULL, '1.0000', '10.1500', '10.1500', '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 (94169, '2022-06-22', 7411, 88869, 5583, NULL, '2.0000', '1.3013', '1.3013', '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 (94170, '2022-06-22', 1667, 88870, 5583, 55922, '1.0000', '9.9871', '9.9871', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94171, '2022-06-22', 9902, 88871, 5583, NULL, '1.0000', '8.2875', '8.2875', '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 (94172, '2022-06-22', 1867, 88872, 5583, 56402, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94173, '2022-06-22', 9740, 88873, 5583, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '108.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94174, '2022-06-22', 9827, 88874, 5583, NULL, '1.0000', '16.6600', '16.6600', '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 (94175, '2022-06-22', 1307, 88875, 5583, NULL, '1.0000', '-59.9897', '-59.9897', '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 (94176, '2022-06-22', 9794, 88876, 5583, 52357, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94177, '2022-06-22', 1499, 88877, 5583, 52148, '2.0000', '0.3993', '0.3993', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94178, '2022-06-22', 1571, 88878, 5583, NULL, '1.0000', '308.7500', '308.7500', '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 (94179, '2022-06-22', 1840, 88879, 5583, NULL, '1.0000', '0.2400', '0.2400', '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 (94180, '2022-06-22', 2289, 88880, 5583, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94181, '2022-06-22', 1841, 88881, 5583, 55655, '1.0000', '0.7630', '0.7630', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94182, '2022-06-22', 7975, 88882, 5583, NULL, '1.0000', '21.7000', '21.7000', '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 (94183, '2022-06-22', 1309, 88883, 5583, 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 (94184, '2022-06-22', 9492, 88884, 5583, 57146, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94185, '2022-06-22', 9565, 88885, 5583, NULL, '1.0000', '4.5000', '4.5000', '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 (94186, '2022-06-22', 7641, 88886, 5584, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94187, '2022-06-22', 1460, 88887, 5584, NULL, '1.0000', '10.8600', '10.8600', '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 (94188, '2022-06-22', 2363, 88888, 5585, NULL, '1.0000', '6.8800', '6.8800', '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 (94189, '2022-06-22', 1621, 88889, 5585, 42079, '2.0000', '28.9137', '28.9137', '8.0000', '8.0000', '26.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94190, '2022-06-22', 7412, 88890, 5586, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94191, '2022-06-22', 1425, 88891, 5587, NULL, '1.0000', '6.4405', '6.4405', '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 (94192, '2022-06-22', 8079, 88892, 5587, NULL, '1.0000', '14.3600', '14.3600', '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 (94193, '2022-06-22', 1839, 88893, 5587, 8734, '-37.0000', '6.1500', '6.1500', '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 (94194, '2022-06-22', 1839, 88893, 5587, NULL, '38.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94195, '2022-06-22', 1306, 88894, 5587, 5581, '-6.0000', '22.5969', '22.5969', '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 (94196, '2022-06-22', 1306, 88894, 5587, NULL, '8.0000', '22.5969', '22.5969', '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 (94197, '2022-06-22', 1432, 88895, 5587, NULL, '1.0000', '8.1574', '8.1574', '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 (94198, '2022-06-22', 9775, 88896, 5587, NULL, '1.0000', '7.9000', '7.9000', '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 (94199, '2022-06-22', 1470, 88897, 5587, NULL, '1.0000', '90.0000', '90.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 (94200, '2022-06-22', 2762, 88898, 5587, NULL, '1.0000', '7.1000', '7.1000', '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 (94201, '2022-06-22', 1529, 88899, 5587, NULL, '1.0000', '3.5500', '3.5500', '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 (94202, '2022-06-22', 2673, 88900, 5587, 11662, '-2.0000', '11.0000', '11.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 (94203, '2022-06-22', 2673, 88900, 5587, NULL, '3.0000', '11.0000', '11.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 (94204, '2022-06-22', 1602, 88901, 5587, 5897, '-165.0000', '6.7859', '6.7859', '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 (94205, '2022-06-22', 1602, 88901, 5587, NULL, '166.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-166.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94206, '2022-06-22', 2602, 88902, 5587, 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 (94207, '2022-06-22', 2486, 88903, 5587, 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 (94208, '2022-06-22', 9729, 88904, 5588, NULL, '2.0000', '0.6200', '0.6200', '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 (94209, '2022-06-22', 9755, 88905, 5588, 55152, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94210, '2022-06-22', 1485, 88906, 5588, NULL, '1.0000', '90.0000', '90.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 (94211, '2022-06-22', 2275, 88907, 5588, 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 (94212, '2022-06-22', 9959, 88908, 5588, 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 (94213, '2022-06-22', 9840, 88909, 5588, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94214, '2022-06-22', 9330, 88910, 5588, 53672, '1.0000', '8.6000', '8.6000', '13.8600', '13.8600', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94215, '2022-06-22', 1487, 88911, 5588, NULL, '1.0000', '-330.9124', '-330.9124', '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 (94216, '2022-06-22', 1425, 88912, 5588, NULL, '1.0000', '19.3384', '19.3384', '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 (94217, '2022-06-22', 2169, 88913, 5588, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94218, '2022-06-22', 1867, 88914, 5588, 55547, '1.0000', '7.9400', '7.9400', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94219, '2022-06-22', 2661, 88915, 5588, NULL, '3.0000', '9.0000', '9.0000', '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 (94220, '2022-06-22', 1450, 88916, 5588, 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 (94221, '2022-06-22', 1580, 88917, 5588, 56446, '2.0000', '1.4661', '1.4661', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94222, '2022-06-22', 2618, 88918, 5588, 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 (94223, '2022-06-22', 1839, 88919, 5588, NULL, '1.0000', '17468.6132', '17468.6132', '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 (94224, '2022-06-22', 8878, 88920, 5588, NULL, '2.0000', '3.8136', '3.8136', '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 (94225, '2022-06-22', 2252, 88921, 5588, 55710, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94226, '2022-06-22', 1810, 88922, 5588, NULL, '1.0000', '15.0116', '15.0116', '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 (94227, '2022-06-22', 1783, 88923, 5588, 54548, '3.0000', '12.2246', '12.2246', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94228, '2022-06-22', 7560, 88924, 5588, NULL, '1.0000', '90.1600', '90.1600', '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 (94229, '2022-06-22', 1771, 88925, 5588, 56394, '1.0000', '6.4358', '6.4358', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94230, '2022-06-22', 9794, 88926, 5588, 52357, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94231, '2022-06-22', 2444, 88927, 5588, 57149, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94232, '2022-06-22', 8963, 88928, 5589, NULL, '1.0000', '7.6600', '7.6600', '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 (94233, '2022-06-22', 2248, 88929, 5589, 56451, '1.0000', '3.3616', '3.3616', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94234, '2022-06-22', 1501, 88930, 5589, NULL, '1.0000', '0.9225', '0.9225', '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 (94235, '2022-06-22', 2293, 88931, 5589, NULL, '3.0000', '-17.4320', '-17.4320', '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 (94236, '2022-06-22', 2295, 88932, 5589, 57068, '2.0000', '1.4104', '1.4104', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94237, '2022-06-22', 2295, 88932, 5589, 54913, '1.0000', '1.4104', '1.4104', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94238, '2022-06-22', 2237, 88933, 5589, 48702, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94239, '2022-06-22', 2315, 88934, 5589, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94240, '2022-06-22', 1450, 88935, 5589, 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 (94241, '2022-06-22', 9902, 88936, 5589, NULL, '1.0000', '8.2875', '8.2875', '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 (94242, '2022-06-22', 9291, 88937, 5589, NULL, '1.0000', '15.4000', '15.4000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94243, '2022-06-22', 8017, 88938, 5589, 57065, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94244, '2022-06-22', 8017, 88938, 5589, NULL, '1.0000', '0.6000', '0.6000', '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 (94245, '2022-06-22', 1912, 88939, 5589, 54917, '1.0000', '0.6209', '0.6209', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94246, '2022-06-22', 2068, 88940, 5589, 55704, '1.0000', '11.5810', '11.5810', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94247, '2022-06-22', 1529, 88941, 5589, 48650, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94248, '2022-06-22', 1910, 88942, 5589, 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 (94249, '2022-06-22', 2315, 88943, 5589, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94250, '2022-06-22', 1863, 88944, 5589, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94251, '2022-06-22', 2020, 88945, 5589, NULL, '1.0000', '1309.0500', '1309.0500', '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 (94252, '2022-06-22', 2169, 88946, 5589, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94253, '2022-06-22', 2614, 88947, 5589, NULL, '1.0000', '53.3200', '53.3200', '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 (94254, '2022-06-22', 2068, 88948, 5589, 55704, '1.0000', '11.5810', '11.5810', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94255, '2022-06-22', 9695, 88949, 5589, 57498, '1.0000', '5.2342', '5.2342', '8.0000', '8.0000', '37.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94256, '2022-06-22', 2363, 88950, 5589, NULL, '1.0000', '6.8800', '6.8800', '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 (94257, '2022-06-22', 8183, 88951, 5589, NULL, '1.0000', '-1179.5325', '-1179.5325', '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 (94258, '2022-06-22', 9840, 88952, 5589, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94259, '2022-06-22', 1702, 88953, 5589, NULL, '1.0000', '10.8300', '10.8300', '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 (94260, '2022-06-22', 2491, 88954, 5589, NULL, '1.0000', '13.0000', '13.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 (94261, '2022-06-22', 9840, 88955, 5589, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94262, '2022-06-22', 2315, 88956, 5589, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94263, '2022-06-22', 7741, 88957, 5589, NULL, '1.0000', '-52.1460', '-52.1460', '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 (94264, '2022-06-22', 1688, 88958, 5589, 54178, '1.0000', '21.6067', '21.6067', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94265, '2022-06-22', 1863, 88959, 5589, 56472, '1.0000', '1.4620', '1.4620', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94266, '2022-06-22', 1411, 88960, 5589, 54969, '1.0000', '25.9970', '25.9970', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94267, '2022-06-22', 1550, 88961, 5590, 56406, '1.0000', '19.1058', '19.1058', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94268, '2022-06-22', 8677, 88962, 5590, NULL, '2.0000', '496.2705', '496.2705', '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 (94269, '2022-06-22', 1674, 88963, 5590, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94270, '2022-06-22', 2135, 88964, 5590, NULL, '1.0000', '-0.2588', '-0.2588', '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 (94271, '2022-06-22', 9469, 88965, 5590, 57103, '1.0000', '4.3167', '4.3167', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94272, '2022-06-22', 1329, 88966, 5590, NULL, '1.0000', '4.2000', '4.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 (94273, '2022-06-22', 1529, 88967, 5590, 48650, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94274, '2022-06-22', 1863, 88968, 5590, 56472, '2.0000', '1.4620', '1.4620', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94275, '2022-06-22', 2237, 88969, 5590, 48500, '1.0000', '58.1889', '58.1889', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94276, '2022-06-22', 2169, 88970, 5590, 55701, '1.0000', '1.6119', '1.6119', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94277, '2022-06-22', 2948, 88971, 5590, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94278, '2022-06-22', 1346, 88972, 5590, 55603, '3.0000', '1.6774', '1.6774', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94279, '2022-06-22', 7741, 88973, 5590, NULL, '1.0000', '-52.1460', '-52.1460', '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 (94280, '2022-06-22', 3058, 88974, 5590, NULL, '1.0000', '-23.3000', '-23.3000', '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 (94281, '2022-06-22', 9762, 88975, 5590, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94282, '2022-06-22', 2068, 88976, 5590, 55704, '1.0000', '11.5810', '11.5810', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94283, '2022-06-22', 9848, 88977, 5590, NULL, '1.0000', '2.8000', '2.8000', '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 (94284, '2022-06-22', 1529, 88978, 5590, 48650, '1.0000', '4.4830', '4.4830', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94285, '2022-06-22', 1866, 88979, 5590, 48696, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94286, '2022-06-22', 1313, 88980, 5590, 55923, '1.0000', '0.8043', '0.8043', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94287, '2022-06-22', 1863, 88981, 5591, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94288, '2022-06-22', 1501, 88982, 5591, NULL, '1.0000', '0.6299', '0.6299', '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 (94289, '2022-06-22', 7514, 88983, 5592, NULL, '1.0000', '2.2500', '2.2500', '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 (94290, '2022-06-22', 9740, 88984, 5592, NULL, '5.0000', '0.6600', '0.6600', '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 (94291, '2022-06-22', 2650, 88985, 5592, 12033, '-4.0000', '7.3200', '7.3200', '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 (94292, '2022-06-22', 2650, 88985, 5592, NULL, '5.0000', '7.3200', '7.3200', '11.5000', '11.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 (94293, '2022-06-22', 2494, 88986, 5592, NULL, '1.0000', '32.7000', '32.7000', '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 (94294, '2022-06-22', 7806, 88987, 5592, NULL, '2.0000', '1.8000', '1.8000', '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 (94295, '2022-06-22', 7879, 88988, 5592, NULL, '2.0000', '1.9800', '1.9800', '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 (94296, '2022-06-22', 2440, 88989, 5592, 5309, '-4.0000', '5.3000', '5.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 (94297, '2022-06-22', 2440, 88989, 5592, NULL, '5.0000', '5.3000', '5.3000', '12.0000', '12.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 (94298, '2022-06-22', 8124, 88990, 5592, 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 (94299, '2022-06-22', 8835, 88991, 5592, NULL, '4.0000', '7.0000', '7.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 (94300, '2022-06-22', 7853, 88992, 5592, NULL, '1.0000', '13.0000', '13.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 (94301, '2022-06-22', 2227, 88993, 5592, 1702, '-6.0000', '14.0000', '14.0000', '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 (94302, '2022-06-22', 2227, 88993, 5592, NULL, '8.0000', '14.0000', '14.0000', '22.0000', '22.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 (94303, '2022-06-22', 2225, 88994, 5592, 1700, '-7.0000', '14.0000', '14.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 (94304, '2022-06-22', 2225, 88994, 5592, NULL, '8.0000', '14.0000', '14.0000', '20.0000', '20.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 (94305, '2022-06-22', 8566, 88995, 5592, NULL, '1.0000', '11.0000', '11.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 (94306, '2022-06-22', 9214, 88996, 5592, NULL, '2.0000', '9.6000', '9.6000', '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 (94307, '2022-06-22', 8772, 88997, 5592, 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 (94308, '2022-06-22', 7380, 88998, 5592, NULL, '1.0000', '8.0000', '8.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 (94309, '2022-06-22', 8063, 88999, 5592, NULL, '1.0000', '1.6000', '1.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 (94310, '2022-06-22', 7672, 89000, 5592, NULL, '1.0000', '1.0200', '1.0200', '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 (94311, '2022-06-22', 1577, 89001, 5592, 7596, '-17.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 (94312, '2022-06-22', 1577, 89001, 5592, NULL, '18.0000', '2.5000', '2.5000', '4.0000', '4.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 (94313, '2022-06-22', 9747, 89002, 5592, NULL, '3.0000', '0.6500', '0.6500', '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 (94314, '2022-06-22', 9740, 89003, 5592, NULL, '1.0000', '0.6600', '0.6600', '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 (94315, '2022-06-22', 7659, 89004, 5592, NULL, '1.0000', '5.9700', '5.9700', '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 (94316, '2022-06-22', 1335, 89005, 5592, 12031, '-39.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 (94317, '2022-06-22', 1335, 89005, 5592, NULL, '40.0000', '0.8500', '0.8500', '2.0000', '2.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 (94318, '2022-06-22', 1339, 89006, 5592, 13004, '-18.0000', '1.6012', '1.6012', '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 (94319, '2022-06-22', 1339, 89006, 5592, NULL, '19.0000', '1.6012', '1.6012', '4.0000', '4.0000', '-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 (94320, '2022-06-22', 7473, 89007, 5592, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94321, '2022-06-22', 1837, 89008, 5592, NULL, '10.0000', '0.9642', '0.9642', '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 (94322, '2022-06-22', 7755, 89009, 5592, 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 (94323, '2022-06-22', 7713, 89010, 5592, NULL, '3.0000', '0.3800', '0.3800', '0.6000', '0.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 (94324, '2022-06-22', 2295, 89011, 5592, 2954, '-16.0000', '0.9600', '0.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 (94325, '2022-06-22', 2295, 89011, 5592, NULL, '18.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-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 (94326, '2022-06-22', 8924, 89012, 5592, NULL, '3.0000', '4.5000', '4.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 (94327, '2022-06-22', 2315, 89013, 5592, 2735, '-489.0000', '0.3300', '0.3300', '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 (94328, '2022-06-22', 2315, 89013, 5592, NULL, '492.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-492.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94329, '2022-06-22', 9825, 89014, 5592, 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 (94330, '2022-06-22', 7611, 89015, 5592, NULL, '1.0000', '4.4000', '4.4000', '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 (94331, '2022-06-22', 7657, 89016, 5592, NULL, '1.0000', '11.3200', '11.3200', '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 (94332, '2022-06-22', 7711, 89017, 5592, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94333, '2022-06-22', 1665, 89018, 5592, 3235, '-132.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 (94334, '2022-06-22', 1665, 89018, 5592, NULL, '134.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-134.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94335, '2022-06-22', 7367, 89019, 5592, NULL, '2.0000', '9.1700', '9.1700', '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 (94336, '2022-06-22', 7411, 89020, 5592, NULL, '2.0000', '1.3500', '1.3500', '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 (94337, '2022-06-22', 7781, 89021, 5592, NULL, '3.0000', '4.2500', '4.2500', '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 (94338, '2022-06-22', 7644, 89022, 5592, NULL, '5.0000', '4.4800', '4.4800', '10.0000', '10.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 (94339, '2022-06-22', 9791, 89023, 5592, 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 (94340, '2022-06-22', 7385, 89024, 5592, NULL, '3.0000', '2.0000', '2.0000', '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 (94341, '2022-06-22', 7509, 89025, 5592, 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 (94342, '2022-06-22', 9911, 89026, 5592, 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 (94343, '2022-06-22', 8077, 89027, 5592, NULL, '1.0000', '3.6000', '3.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 (94344, '2022-06-22', 7411, 89028, 5592, NULL, '1.0000', '1.3500', '1.3500', '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 (94345, '2022-06-22', 9892, 89029, 5592, 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 (94346, '2022-06-22', 1837, 89030, 5592, 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 (94347, '2022-06-22', 8539, 89031, 5592, NULL, '2.0000', '31.8000', '31.8000', '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 (94348, '2022-06-22', 9791, 89032, 5592, 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 (94349, '2022-06-22', 7687, 89033, 5592, NULL, '1.0000', '39.5800', '39.5800', '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 (94350, '2022-06-22', 7524, 89034, 5592, NULL, '1.0000', '11.9500', '11.9500', '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 (94351, '2022-06-22', 1501, 89035, 5592, NULL, '1.0000', '2.0500', '2.0500', '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 (94352, '2022-06-22', 9274, 89036, 5592, NULL, '1.0000', '3.6000', '3.6000', '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 (94353, '2022-06-22', 7709, 89037, 5592, NULL, '2.0000', '3.5000', '3.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 (94354, '2022-06-22', 7608, 89038, 5592, NULL, '1.0000', '6.9800', '6.9800', '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 (94355, '2022-06-22', 7644, 89039, 5592, NULL, '5.0000', '4.4800', '4.4800', '10.0000', '10.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 (94356, '2022-06-22', 7762, 89040, 5592, NULL, '1.0000', '1.5000', '1.5000', '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 (94357, '2022-06-22', 7999, 89041, 5592, NULL, '1.0000', '1.7500', '1.7500', '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 (94358, '2022-06-22', 7886, 89042, 5592, 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 (94359, '2022-06-22', 7514, 89043, 5592, NULL, '2.0000', '2.2500', '2.2500', '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 (94360, '2022-06-22', 7806, 89044, 5592, NULL, '3.0000', '1.8000', '1.8000', '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 (94361, '2022-06-22', 7593, 89045, 5592, NULL, '1.0000', '2.4500', '2.4500', '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 (94362, '2022-06-22', 7641, 89046, 5592, NULL, '1.0000', '1.9000', '1.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 (94363, '2022-06-22', 2295, 89047, 5592, 2954, '-16.0000', '0.9600', '0.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 (94364, '2022-06-22', 2295, 89047, 5592, NULL, '19.0000', '0.9600', '0.9600', '2.5000', '2.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 (94365, '2022-06-22', 8539, 89048, 5592, NULL, '2.0000', '31.8000', '31.8000', '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 (94366, '2022-06-22', 9503, 89049, 5592, NULL, '1.0000', '20.6000', '20.6000', '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 (94367, '2022-06-22', 7457, 89050, 5592, 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 (94368, '2022-06-22', 9204, 89051, 5592, NULL, '1.0000', '8.1600', '8.1600', '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 (94369, '2022-06-22', 9274, 89052, 5592, NULL, '1.0000', '3.6000', '3.6000', '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 (94370, '2022-06-22', 9740, 89053, 5592, NULL, '1.0000', '0.6600', '0.6600', '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 (94371, '2022-06-22', 1841, 89054, 5592, NULL, '1.0000', '142.5780', '142.5780', '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 (94372, '2022-06-22', 7544, 89055, 5592, NULL, '1.0000', '9.4300', '9.4300', '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 (94373, '2022-06-22', 1846, 89056, 5593, 55479, '1.0000', '3.7535', '3.7535', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94374, '2022-06-22', 2243, 89057, 5593, 54398, '1.0000', '4.6362', '4.6362', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94375, '2022-06-22', 1816, 89058, 5593, 54637, '1.0000', '19.6801', '19.6801', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94376, '2022-06-22', 2437, 89059, 5593, 56841, '1.0000', '95.7065', '95.7065', '140.0000', '140.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94377, '2022-06-22', 2821, 89060, 5593, 56959, '1.0000', '3.4262', '3.4262', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94378, '2022-06-22', 9732, 89061, 5593, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94379, '2022-06-22', 2315, 89062, 5593, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (94380, '2022-06-22', 1499, 89063, 5593, 54670, '2.0000', '0.4174', '0.4174', '0.7000', '0.7000', '5.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94381, '2022-06-22', 8451, 89064, 5593, NULL, '1.0000', '9.6000', '9.6000', '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 (94382, '2022-06-22', 7753, 89065, 5593, NULL, '1.0000', '3.1400', '3.1400', '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 (94383, '2022-06-22', 9747, 89066, 5593, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94384, '2022-06-22', 1863, 89067, 5593, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94385, '2022-06-22', 1873, 89068, 5593, 54674, '1.0000', '12.9254', '12.9254', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94386, '2022-06-22', 1371, 89069, 5593, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94387, '2022-06-22', 1702, 89070, 5593, 56723, '1.0000', '24.5154', '24.5154', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94388, '2022-06-22', 9729, 89071, 5593, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94389, '2022-06-22', 2036, 89072, 5593, 56349, '1.0000', '8.9375', '8.9375', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94390, '2022-06-22', 8479, 89073, 5593, NULL, '1.0000', '33.0000', '33.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 (94391, '2022-06-22', 9794, 89074, 5593, 49849, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '62.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94392, '2022-06-22', 9940, 89075, 5593, 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 (94393, '2022-06-22', 1805, 89076, 5593, 56963, '1.0000', '5.1703', '5.1703', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94394, '2022-06-22', 1339, 89077, 5593, 41979, '1.0000', '1.7611', '1.7611', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94395, '2022-06-22', 2642, 89078, 5593, 55000, '1.0000', '9.4389', '9.4389', '15.0000', '15.0000', '14.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94396, '2022-06-22', 9672, 89079, 5593, NULL, '1.0000', '2.0500', '2.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 (94397, '2022-06-22', 7495, 89080, 5593, NULL, '1.0000', '17.8000', '17.8000', '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 (94398, '2022-06-22', 1812, 89081, 5593, 55784, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94399, '2022-06-22', 9940, 89082, 5593, 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 (94400, '2022-06-22', 9098, 89083, 5593, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94401, '2022-06-22', 2297, 89084, 5593, 50924, '1.0000', '8.0496', '8.0496', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94402, '2022-06-22', 1978, 89085, 5594, 54334, '1.0000', '10.1144', '10.1144', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94403, '2022-06-22', 8767, 89086, 5595, NULL, '1.0000', '8.5590', '8.5590', '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 (94404, '2022-06-22', 2293, 89087, 5595, NULL, '3.0000', '-17.4320', '-17.4320', '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 (94405, '2022-06-22', 2295, 89088, 5595, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94406, '2022-06-22', 2315, 89089, 5595, 54938, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94407, '2022-06-22', 1501, 89090, 5595, NULL, '1.0000', '0.6299', '0.6299', '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 (94408, '2022-06-22', 2033, 89091, 5596, 57128, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94409, '2022-06-22', 1310, 89092, 5597, 57744, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94410, '2022-06-22', 2320, 89093, 5598, 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 (94411, '2022-06-23', 9775, 89094, 5599, NULL, '1.0000', '9.6292', '9.6292', '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 (94412, '2022-06-23', 9831, 89095, 5599, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94413, '2022-06-23', 1855, 89096, 5599, NULL, '1.0000', '1.4615', '1.4615', '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 (94414, '2022-06-23', 8984, 89097, 5599, NULL, '1.0000', '422.2794', '422.2794', '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 (94415, '2022-06-23', 9831, 89098, 5599, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94416, '2022-06-23', 2643, 89099, 5599, 57921, '1.0000', '0.9970', '0.9970', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94417, '2022-06-23', 9794, 89100, 5599, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '99.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94418, '2022-06-23', 2728, 89101, 5599, 19354, '5.0000', '0.8000', '0.8000', '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 (94419, '2022-06-23', 2556, 89102, 5599, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94420, '2022-06-23', 1760, 89103, 5599, NULL, '3.0000', '1.5900', '1.5900', '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 (94421, '2022-06-23', 2672, 89104, 5599, NULL, '1.0000', '7.6200', '7.6200', '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 (94422, '2022-06-23', 1628, 89105, 5599, 55896, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94423, '2022-06-23', 1546, 89106, 5599, 49329, '6.0000', '51.6105', '51.6105', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94424, '2022-06-23', 1546, 89106, 5599, 48166, '6.0000', '51.6105', '51.6105', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94425, '2022-06-23', 1863, 89107, 5599, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94426, '2022-06-23', 2942, 89108, 5599, 51210, '1.0000', '0.8200', '0.8200', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94427, '2022-06-23', 9214, 89109, 5599, NULL, '1.0000', '8.5288', '8.5288', '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 (94428, '2022-06-23', 9736, 89110, 5599, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94429, '2022-06-23', 2556, 89111, 5599, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94430, '2022-06-23', 1388, 89112, 5599, 57772, '1.0000', '6.9440', '6.9440', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94431, '2022-06-23', 2221, 89113, 5599, NULL, '1.0000', '2.3805', '2.3805', '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 (94432, '2022-06-23', 9482, 89114, 5599, 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 (94433, '2022-06-23', 2327, 89115, 5599, 49257, '1.0000', '3.8469', '3.8469', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94434, '2022-06-23', 9831, 89116, 5599, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94435, '2022-06-23', 9832, 89117, 5599, 57495, '1.0000', '1.7283', '1.7283', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94436, '2022-06-23', 1863, 89118, 5599, 57733, '2.0000', '1.4714', '1.4714', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94437, '2022-06-23', 2297, 89119, 5599, 55653, '1.0000', '10.3086', '10.3086', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94438, '2022-06-23', 2315, 89120, 5599, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94439, '2022-06-23', 8878, 89121, 5599, NULL, '1.0000', '3.8136', '3.8136', '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 (94440, '2022-06-23', 1334, 89122, 5599, 53239, '1.0000', '0.8419', '0.8419', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94441, '2022-06-23', 1339, 89123, 5599, 51940, '1.0000', '2.2232', '2.2232', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94442, '2022-06-23', 1337, 89124, 5599, 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 (94443, '2022-06-23', 2293, 89125, 5599, NULL, '3.0000', '-17.4320', '-17.4320', '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 (94444, '2022-06-23', 2366, 89126, 5599, NULL, '2.0000', '-51.4778', '-51.4778', '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 (94445, '2022-06-23', 7928, 89127, 5599, NULL, '1.0000', '11.7000', '11.7000', '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 (94446, '2022-06-23', 2762, 89128, 5599, NULL, '1.0000', '7.1000', '7.1000', '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 (94447, '2022-06-23', 2236, 89129, 5599, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94448, '2022-06-23', 7454, 89130, 5599, NULL, '1.0000', '57.7600', '57.7600', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94449, '2022-06-23', 2385, 89131, 5599, 54549, '1.0000', '10.5450', '10.5450', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94450, '2022-06-23', 1785, 89132, 5599, 57752, '1.0000', '17.1845', '17.1845', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94451, '2022-06-23', 8085, 89133, 5600, 49815, '1.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94452, '2022-06-23', 7703, 89134, 5600, NULL, '2.0000', '-4961.0093', '-4961.0093', '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 (94453, '2022-06-23', 7715, 89135, 5600, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94454, '2022-06-23', 9175, 89136, 5600, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94455, '2022-06-23', 9740, 89137, 5600, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94456, '2022-06-23', 8167, 89138, 5600, 56519, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94457, '2022-06-23', 7852, 89139, 5600, NULL, '1.0000', '59.3041', '59.3041', '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 (94458, '2022-06-23', 1904, 89140, 5600, 56161, '1.0000', '179.9997', '179.9997', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94459, '2022-06-23', 7588, 89141, 5600, 57165, '1.0000', '5.5821', '5.5821', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94460, '2022-06-23', 7715, 89142, 5600, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94461, '2022-06-23', 1650, 89143, 5600, 48102, '1.0000', '15.2896', '15.2896', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94462, '2022-06-23', 7524, 89144, 5600, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94463, '2022-06-23', 8101, 89145, 5600, NULL, '1.0000', '-0.2222', '-0.2222', '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 (94464, '2022-06-23', 7806, 89146, 5600, NULL, '5.0000', '226.1990', '226.1990', '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 (94465, '2022-06-23', 7411, 89147, 5600, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94466, '2022-06-23', 9873, 89148, 5600, 57180, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94467, '2022-06-23', 2726, 89149, 5600, 54152, '1.0000', '0.1000', '0.1000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94468, '2022-06-23', 7952, 89150, 5600, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94469, '2022-06-23', 7527, 89151, 5600, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94470, '2022-06-23', 7412, 89152, 5600, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94471, '2022-06-23', 7483, 89153, 5600, NULL, '1.0000', '0.4200', '0.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 (94472, '2022-06-23', 7674, 89154, 5600, 56584, '2.0000', '120.7007', '120.7007', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94473, '2022-06-23', 2167, 89155, 5600, 36090, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94474, '2022-06-23', 7558, 89156, 5600, NULL, '1.0000', '1.4867', '1.4867', '3.7000', '3.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 (94475, '2022-06-23', 7959, 89157, 5600, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '30.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94476, '2022-06-23', 2315, 89158, 5600, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94477, '2022-06-23', 9401, 89159, 5600, NULL, '1.0000', '2.9600', '2.9600', '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 (94478, '2022-06-23', 8346, 89160, 5600, NULL, '3.0000', '18.0000', '18.0000', '24.0000', '24.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 (94479, '2022-06-23', 7411, 89161, 5600, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94480, '2022-06-23', 2948, 89162, 5601, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94481, '2022-06-23', 2543, 89163, 5601, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94482, '2022-06-23', 1432, 89164, 5601, 57757, '1.0000', '12.2101', '12.2101', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94483, '2022-06-23', 2643, 89165, 5601, 57921, '1.0000', '0.9970', '0.9970', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94484, '2022-06-23', 2169, 89166, 5601, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94485, '2022-06-23', 8489, 89167, 5601, NULL, '1.0000', '30.3000', '30.3000', '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 (94486, '2022-06-23', 7317, 89168, 5602, 57642, '1.0000', '15.2534', '15.2534', '22.5000', '22.5000', '19.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94487, '2022-06-23', 8878, 89169, 5602, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94488, '2022-06-23', 7555, 89170, 5603, 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 (94489, '2022-06-23', 2283, 89171, 5603, 57674, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94490, '2022-06-23', 1307, 89172, 5604, NULL, '1.0000', '-59.9897', '-59.9897', '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 (94491, '2022-06-23', 2986, 89173, 5604, 51665, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94492, '2022-06-23', 7411, 89174, 5604, NULL, '1.0000', '1.3013', '1.3013', '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 (94493, '2022-06-23', 7473, 89175, 5604, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '38.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94494, '2022-06-23', 9695, 89176, 5604, 57926, '2.0000', '5.3163', '5.3163', '8.0000', '8.0000', '22.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94495, '2022-06-23', 2416, 89177, 5604, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94496, '2022-06-23', 7555, 89178, 5604, 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 (94497, '2022-06-23', 9743, 89179, 5604, 56438, '1.0000', '13.2429', '13.2429', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94498, '2022-06-23', 2283, 89180, 5604, 57674, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94499, '2022-06-23', 2730, 89181, 5604, 51643, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94500, '2022-06-23', 2342, 89182, 5604, 54886, '1.0000', '2.2091', '2.2091', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94501, '2022-06-23', 7564, 89183, 5604, NULL, '1.0000', '0.6400', '0.6400', '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 (94502, '2022-06-23', 9740, 89184, 5604, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '107.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94503, '2022-06-23', 1999, 89185, 5604, 56865, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94504, '2022-06-23', 1340, 89186, 5604, 54554, '1.0000', '3.6010', '3.6010', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94505, '2022-06-23', 7641, 89187, 5604, NULL, '1.0000', '1.9000', '1.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 (94506, '2022-06-23', 1751, 89188, 5604, 56435, '1.0000', '5.6063', '5.6063', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94507, '2022-06-23', 7524, 89189, 5604, NULL, '1.0000', '11.9500', '11.9500', '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 (94508, '2022-06-23', 1628, 89190, 5604, 55896, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94509, '2022-06-23', 8878, 89191, 5604, NULL, '2.0000', '3.8136', '3.8136', '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 (94510, '2022-06-23', 9695, 89192, 5604, 57926, '1.0000', '5.3163', '5.3163', '8.0000', '8.0000', '23.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94511, '2022-06-23', 2315, 89193, 5604, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94512, '2022-06-23', 2964, 89194, 5604, NULL, '1.0000', '9.0607', '9.0607', '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 (94513, '2022-06-23', 8677, 89195, 5604, NULL, '2.0000', '496.2705', '496.2705', '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 (94514, '2022-06-23', 7411, 89196, 5604, NULL, '2.0000', '1.3013', '1.3013', '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 (94515, '2022-06-23', 2730, 89197, 5604, 51643, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94516, '2022-06-23', 7514, 89198, 5604, NULL, '1.0000', '2.2500', '2.2500', '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 (94517, '2022-06-23', 1425, 89199, 5604, 57668, '1.0000', '-104.0456', '-104.0456', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94518, '2022-06-23', 1912, 89200, 5604, 57704, '2.0000', '0.6868', '0.6868', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94519, '2022-06-23', 2318, 89201, 5604, 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 (94520, '2022-06-23', 1499, 89202, 5604, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '49.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94521, '2022-06-23', 2169, 89203, 5604, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94522, '2022-06-23', 9832, 89204, 5604, 57495, '1.0000', '1.7283', '1.7283', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94523, '2022-06-23', 7514, 89205, 5604, NULL, '1.0000', '2.2500', '2.2500', '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 (94524, '2022-06-23', 2293, 89206, 5604, NULL, '3.0000', '-17.4320', '-17.4320', '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 (94525, '2022-06-23', 8677, 89207, 5604, NULL, '2.0000', '496.2705', '496.2705', '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 (94526, '2022-06-23', 7514, 89208, 5604, NULL, '1.0000', '2.2500', '2.2500', '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 (94527, '2022-06-23', 2011, 89209, 5604, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94528, '2022-06-23', 2327, 89210, 5604, 49257, '1.0000', '3.8469', '3.8469', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94529, '2022-06-23', 7743, 89211, 5604, NULL, '1.0000', '7.3900', '7.3900', '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 (94530, '2022-06-23', 9831, 89212, 5604, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94531, '2022-06-23', 2444, 89213, 5604, 57149, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94532, '2022-06-23', 2169, 89214, 5604, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94533, '2022-06-23', 9695, 89215, 5604, 57926, '2.0000', '5.3163', '5.3163', '8.0000', '8.0000', '22.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94534, '2022-06-23', 7564, 89216, 5604, NULL, '1.0000', '0.6400', '0.6400', '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 (94535, '2022-06-23', 7316, 89217, 5604, 54885, '4.0000', '0.9020', '0.9020', '1.3000', '1.3000', '34.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94536, '2022-06-23', 2332, 89218, 5604, 55905, '1.0000', '32.4933', '32.4933', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94537, '2022-06-23', 9634, 89219, 5604, 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 (94538, '2022-06-23', 2444, 89220, 5604, 57149, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94539, '2022-06-23', 8133, 89221, 5604, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (94540, '2022-06-23', 2283, 89222, 5604, 57674, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94541, '2022-06-23', 2964, 89223, 5604, NULL, '1.0000', '9.0607', '9.0607', '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 (94542, '2022-06-23', 1521, 89224, 5604, NULL, '1.0000', '58.1500', '58.1500', '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 (94543, '2022-06-23', 1627, 89225, 5605, 54428, '1.0000', '47.7400', '47.7400', '67.0000', '67.0000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94544, '2022-06-23', 2506, 89226, 5605, 56739, '1.0000', '4.0840', '4.0840', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94545, '2022-06-23', 3017, 89227, 5605, 55771, '1.0000', '3.9691', '3.9691', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94546, '2022-06-23', 1864, 89228, 5605, 55788, '1.0000', '7.5750', '7.5750', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94547, '2022-06-23', 2302, 89229, 5605, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94548, '2022-06-23', 8077, 89230, 5605, 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 (94549, '2022-06-23', 1665, 89231, 5605, 56234, '1.0000', '1.1809', '1.1809', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94550, '2022-06-23', 2154, 89232, 5605, 54582, '1.0000', '12.4502', '12.4502', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94551, '2022-06-23', 2169, 89233, 5605, 56941, '1.0000', '1.2934', '1.2934', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94552, '2022-06-23', 7684, 89234, 5605, NULL, '1.0000', '9.0000', '9.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 (94553, '2022-06-23', 1765, 89235, 5605, 56225, '1.0000', '6.1597', '6.1597', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94554, '2022-06-23', 7630, 89236, 5605, NULL, '2.0000', '10.0000', '10.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 (94555, '2022-06-23', 1602, 89237, 5605, 56909, '1.0000', '6.9969', '6.9969', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94556, '2022-06-23', 2167, 89238, 5605, 52285, '2.0000', '2.3105', '2.3105', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94557, '2022-06-23', 2236, 89239, 5605, 56244, '1.0000', '5.9676', '5.9676', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94558, '2022-06-23', 2558, 89240, 5605, 44508, '5.0000', '5.4253', '5.4253', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94559, '2022-06-23', 1908, 89241, 5605, 5510, '2.0000', '1.7500', '1.7500', '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 (94560, '2022-06-23', 9732, 89242, 5605, 55495, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94561, '2022-06-23', 3002, 89243, 5605, 54686, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94562, '2022-06-23', 9821, 89244, 5605, 56978, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94563, '2022-06-23', 2858, 89245, 5605, NULL, '2.0000', '1.0000', '1.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 (94564, '2022-06-23', 7744, 89246, 5605, NULL, '2.0000', '2.9400', '2.9400', '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 (94565, '2022-06-23', 9089, 89247, 5605, 56825, '1.0000', '4.8664', '4.8664', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94566, '2022-06-23', 2592, 89248, 5605, 54648, '1.0000', '10.6326', '10.6326', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94567, '2022-06-23', 1346, 89249, 5605, 55497, '10.0000', '1.0027', '1.0027', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94568, '2022-06-23', 2169, 89250, 5605, 56941, '2.0000', '1.2934', '1.2934', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94569, '2022-06-23', 2643, 89251, 5605, 57896, '1.0000', '0.9509', '0.9509', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94570, '2022-06-23', 7608, 89252, 5605, NULL, '1.0000', '6.9800', '6.9800', '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 (94571, '2022-06-23', 1863, 89253, 5605, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94572, '2022-06-23', 2940, 89254, 5605, 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 (94573, '2022-06-23', 7741, 89255, 5605, 56896, '1.0000', '3.0439', '3.0439', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94574, '2022-06-23', 7788, 89256, 5606, NULL, '1.0000', '21.7600', '21.7600', '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 (94575, '2022-06-23', 9819, 89257, 5606, NULL, '2.0000', '3.6300', '3.6300', '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 (94576, '2022-06-23', 7376, 89258, 5606, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94577, '2022-06-23', 8020, 89259, 5606, NULL, '1.0000', '11.9000', '11.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 (94578, '2022-06-23', 9690, 89260, 5606, NULL, '1.0000', '25.4200', '25.4200', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94579, '2022-06-23', 7385, 89261, 5606, NULL, '1.0000', '2.0000', '2.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 (94580, '2022-06-23', 2100, 89262, 5606, 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 (94581, '2022-06-23', 8677, 89263, 5606, NULL, '2.0000', '1.2800', '1.2800', '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 (94582, '2022-06-23', 7412, 89264, 5606, NULL, '1.0000', '1.5200', '1.5200', '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 (94583, '2022-06-23', 7315, 89265, 5606, NULL, '1.0000', '15.0000', '15.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 (94584, '2022-06-23', 2284, 89266, 5606, 20597, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '12.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 (94585, '2022-06-23', 9092, 89267, 5606, NULL, '4.0000', '5.2900', '5.2900', '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 (94586, '2022-06-23', 8918, 89268, 5606, NULL, '1.0000', '1.0400', '1.0400', '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 (94587, '2022-06-23', 7780, 89269, 5606, NULL, '1.0000', '11.6000', '11.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 (94588, '2022-06-23', 7586, 89270, 5606, NULL, '1.0000', '4.1700', '4.1700', '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 (94589, '2022-06-23', 9245, 89271, 5606, NULL, '1.0000', '6.6100', '6.6100', '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 (94590, '2022-06-23', 7674, 89272, 5606, NULL, '2.0000', '1.3000', '1.3000', '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 (94591, '2022-06-23', 8000, 89273, 5606, NULL, '1.0000', '6.8400', '6.8400', '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 (94592, '2022-06-23', 9274, 89274, 5606, NULL, '1.0000', '3.6000', '3.6000', '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 (94593, '2022-06-23', 2315, 89275, 5606, 2735, '-492.0000', '0.3300', '0.3300', '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 (94594, '2022-06-23', 2315, 89275, 5606, NULL, '493.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-493.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94595, '2022-06-23', 7820, 89276, 5606, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94596, '2022-06-23', 1688, 89277, 5606, 4896, '-16.0000', '18.5000', '18.5000', '31.5000', '31.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 (94597, '2022-06-23', 1688, 89277, 5606, NULL, '17.0000', '18.5000', '18.5000', '31.5000', '31.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 (94598, '2022-06-23', 2962, 89278, 5606, 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 (94599, '2022-06-23', 7385, 89279, 5606, NULL, '5.0000', '2.0000', '2.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 (94600, '2022-06-23', 8539, 89280, 5606, NULL, '1.0000', '31.8000', '31.8000', '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 (94601, '2022-06-23', 9953, 89281, 5606, NULL, '1.0000', '8.9000', '8.9000', '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 (94602, '2022-06-23', 7524, 89282, 5606, NULL, '2.0000', '11.9500', '11.9500', '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 (94603, '2022-06-23', 1935, 89283, 5606, 5586, '-154.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 (94604, '2022-06-23', 1935, 89283, 5606, NULL, '155.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94605, '2022-06-23', 2315, 89284, 5606, 2735, '-492.0000', '0.3300', '0.3300', '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 (94606, '2022-06-23', 2315, 89284, 5606, NULL, '502.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-502.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94607, '2022-06-23', 8435, 89285, 5606, NULL, '1.0000', '5.7000', '5.7000', '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 (94608, '2022-06-23', 7707, 89286, 5606, NULL, '1.0000', '7.0000', '7.0000', '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 (94609, '2022-06-23', 2061, 89287, 5606, 2164, '-11.0000', '10.9800', '10.9800', '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 (94610, '2022-06-23', 2061, 89287, 5606, NULL, '12.0000', '10.9800', '10.9800', '17.5000', '17.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 (94611, '2022-06-23', 7527, 89288, 5606, NULL, '1.0000', '0.8900', '0.8900', '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 (94612, '2022-06-23', 7954, 89289, 5606, 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 (94613, '2022-06-23', 2289, 89290, 5606, 2949, '-208.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 (94614, '2022-06-23', 2289, 89290, 5606, NULL, '210.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-210.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94615, '2022-06-23', 7514, 89291, 5606, NULL, '1.0000', '2.2500', '2.2500', '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 (94616, '2022-06-23', 7435, 89292, 5606, NULL, '4.0000', '5.2000', '5.2000', '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 (94617, '2022-06-23', 8677, 89293, 5606, NULL, '2.0000', '1.2800', '1.2800', '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 (94618, '2022-06-23', 7658, 89294, 5606, NULL, '9.0000', '2.0200', '2.0200', '3.5000', '3.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 (94619, '2022-06-23', 9946, 89295, 5606, 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 (94620, '2022-06-23', 2105, 89296, 5606, NULL, '2.0000', '1.3500', '1.3500', '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 (94621, '2022-06-23', 7635, 89297, 5606, NULL, '2.0000', '13.7500', '13.7500', '24.5000', '24.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 (94622, '2022-06-23', 7848, 89298, 5606, NULL, '1.0000', '1.3500', '1.3500', '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 (94623, '2022-06-23', 7886, 89299, 5606, 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 (94624, '2022-06-23', 8200, 89300, 5606, NULL, '2.0000', '6.2600', '6.2600', '11.5000', '11.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 (94625, '2022-06-23', 9021, 89301, 5606, NULL, '1.0000', '6.7300', '6.7300', '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 (94626, '2022-06-23', 7954, 89302, 5606, 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 (94627, '2022-06-23', 8666, 89303, 5606, NULL, '1.0000', '0.4600', '0.4600', '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 (94628, '2022-06-23', 7411, 89304, 5606, NULL, '2.0000', '1.3500', '1.3500', '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 (94629, '2022-06-23', 9399, 89305, 5606, NULL, '1.0000', '0.9800', '0.9800', '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 (94630, '2022-06-23', 7516, 89306, 5606, NULL, '1.0000', '10.0000', '10.0000', '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 (94631, '2022-06-23', 7333, 89307, 5606, NULL, '2.0000', '13.5000', '13.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 (94632, '2022-06-23', 8097, 89308, 5606, NULL, '1.0000', '3.4000', '3.4000', '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 (94633, '2022-06-23', 7321, 89309, 5606, NULL, '1.0000', '7.9500', '7.9500', '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 (94634, '2022-06-23', 7514, 89310, 5606, NULL, '1.0000', '2.2500', '2.2500', '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 (94635, '2022-06-23', 7672, 89311, 5606, NULL, '1.0000', '1.0200', '1.0200', '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 (94636, '2022-06-23', 7518, 89312, 5606, NULL, '1.0000', '7.8200', '7.8200', '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 (94637, '2022-06-23', 9736, 89313, 5607, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94638, '2022-06-23', 7641, 89314, 5607, NULL, '1.0000', '1.9000', '1.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 (94639, '2022-06-23', 9672, 89315, 5607, NULL, '1.0000', '2.0500', '2.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 (94640, '2022-06-23', 2169, 89316, 5607, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94641, '2022-06-23', 7744, 89317, 5607, NULL, '1.0000', '2.5833', '2.5833', '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 (94642, '2022-06-23', 1647, 89318, 5607, 54874, '1.0000', '-8.0033', '-8.0033', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94643, '2022-06-23', 1912, 89319, 5607, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94644, '2022-06-23', 2670, 89320, 5607, 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 (94645, '2022-06-23', 7741, 89321, 5607, NULL, '1.0000', '-52.1460', '-52.1460', '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 (94646, '2022-06-23', 7411, 89322, 5607, NULL, '2.0000', '1.3013', '1.3013', '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 (94647, '2022-06-23', 9735, 89323, 5607, 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 (94648, '2022-06-23', 2381, 89324, 5607, 56373, '2.0000', '14.1080', '14.1080', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94649, '2022-06-23', 9725, 89325, 5607, 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 (94650, '2022-06-23', 2416, 89326, 5607, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94651, '2022-06-23', 1856, 89327, 5607, NULL, '1.0000', '155.0099', '155.0099', '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 (94652, '2022-06-23', 2416, 89328, 5607, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94653, '2022-06-23', 8595, 89329, 5607, NULL, '1.0000', '3.5480', '3.5480', '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 (94654, '2022-06-23', 9028, 89330, 5607, 34030, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 240);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94655, '2022-06-23', 2298, 89331, 5607, 57722, '1.0000', '-24.4602', '-24.4602', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94656, '2022-06-23', 7411, 89332, 5607, NULL, '1.0000', '1.3013', '1.3013', '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 (94657, '2022-06-23', 9695, 89333, 5607, 57926, '1.0000', '5.3163', '5.3163', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94658, '2022-06-23', 7411, 89334, 5608, NULL, '1.0000', '1.3500', '1.3500', '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 (94659, '2022-06-23', 8745, 89335, 5608, NULL, '1.0000', '8.0000', '8.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 (94660, '2022-06-23', 8740, 89336, 5608, NULL, '1.0000', '2.0000', '2.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 (94661, '2022-06-23', 8710, 89337, 5608, NULL, '1.0000', '10.9000', '10.9000', '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 (94662, '2022-06-23', 1863, 89338, 5608, 10808, '-152.0000', '0.4136', '0.4136', '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 (94663, '2022-06-23', 1863, 89338, 5608, NULL, '153.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-153.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94664, '2022-06-24', 2567, 89339, 5609, 56837, '1.0000', '-77.0807', '-77.0807', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94665, '2022-06-24', 2228, 89340, 5609, 56838, '1.0000', '26.5737', '26.5737', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94666, '2022-06-24', 2293, 89341, 5609, 50920, '6.0000', '0.8705', '0.8705', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94667, '2022-06-24', 2128, 89342, 5609, 2647, '1.0000', '30.0000', '30.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 (94668, '2022-06-24', 8775, 89343, 5609, 52321, '1.0000', '3.1153', '3.1153', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94669, '2022-06-24', 1501, 89344, 5609, 55884, '1.0000', '108.1974', '108.1974', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94670, '2022-06-24', 1342, 89345, 5609, 56928, '1.0000', '10.0474', '10.0474', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94671, '2022-06-24', 1505, 89346, 5609, 54611, '1.0000', '41.1161', '41.1161', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94672, '2022-06-24', 2286, 89347, 5609, 56241, '2.0000', '4.9825', '4.9825', '7.0000', '7.0000', '34.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94673, '2022-06-24', 2730, 89348, 5609, 21547, '1.0000', '1.2000', '1.2000', '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 (94674, '2022-06-24', 2352, 89349, 5609, 44595, '10.0000', '233.6176', '233.6176', '3.5000', '3.5000', '56.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94675, '2022-06-24', 8773, 89350, 5610, NULL, '1.0000', '1.3601', '1.3601', '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 (94676, '2022-06-24', 1812, 89351, 5610, 55784, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94677, '2022-06-24', 1665, 89352, 5611, 56234, '2.0000', '1.1809', '1.1809', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94678, '2022-06-24', 2237, 89353, 5611, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94679, '2022-06-24', 1912, 89354, 5612, 57704, '2.0000', '0.6868', '0.6868', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94680, '2022-06-24', 1307, 89355, 5612, NULL, '1.0000', '-59.9897', '-59.9897', '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 (94681, '2022-06-24', 2169, 89356, 5612, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94682, '2022-06-24', 1912, 89357, 5612, 57704, '6.0000', '0.6868', '0.6868', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94683, '2022-06-24', 8133, 89358, 5612, NULL, '1.0000', '-22758.7660', '-22758.7660', '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 (94684, '2022-06-24', 9649, 89359, 5612, NULL, '1.0000', '14.2780', '14.2780', '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 (94685, '2022-06-24', 1852, 89360, 5612, NULL, '1.0000', '14.9000', '14.9000', '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 (94686, '2022-06-24', 2434, 89361, 5612, 54826, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94687, '2022-06-24', 2315, 89362, 5612, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94688, '2022-06-24', 2061, 89363, 5612, NULL, '1.0000', '4.3037', '4.3037', '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 (94689, '2022-06-24', 2315, 89364, 5612, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94690, '2022-06-24', 9891, 89365, 5612, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94691, '2022-06-24', 7947, 89366, 5612, NULL, '1.0000', '14.4400', '14.4400', '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 (94692, '2022-06-24', 9891, 89367, 5612, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94693, '2022-06-24', 2416, 89368, 5612, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94694, '2022-06-24', 2948, 89369, 5612, 55643, '2.0000', '0.9382', '0.9382', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94695, '2022-06-24', 1935, 89370, 5612, 57699, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94696, '2022-06-24', 2277, 89371, 5612, NULL, '6.0000', '0.9399', '0.9399', '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 (94697, '2022-06-24', 1621, 89372, 5612, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94698, '2022-06-24', 2416, 89373, 5612, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94699, '2022-06-24', 2302, 89374, 5612, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94700, '2022-06-24', 2289, 89375, 5612, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94701, '2022-06-24', 1588, 89376, 5612, 55543, '1.0000', '5.6403', '5.6403', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94702, '2022-06-24', 2821, 89377, 5612, 57694, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94703, '2022-06-24', 8740, 89378, 5612, 56875, '2.0000', '2.0000', '2.0000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94704, '2022-06-24', 1529, 89379, 5612, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94705, '2022-06-24', 7531, 89380, 5612, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94706, '2022-06-24', 2409, 89381, 5612, 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 (94707, '2022-06-24', 2315, 89382, 5613, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94708, '2022-06-24', 7711, 89383, 5613, 57607, '1.0000', '49.6000', '49.6000', '65.5000', '65.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94709, '2022-06-24', 7514, 89384, 5613, 57588, '2.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94710, '2022-06-24', 7317, 89385, 5613, 57642, '1.0000', '15.2534', '15.2534', '22.5000', '22.5000', '18.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94711, '2022-06-24', 7708, 89386, 5613, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94712, '2022-06-24', 8203, 89387, 5613, 57407, '3.0000', '2.0908', '2.0908', '0.7000', '0.7000', '45.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94713, '2022-06-24', 8401, 89388, 5613, 54747, '1.0000', '7.5225', '7.5225', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94714, '2022-06-24', 7411, 89389, 5613, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94715, '2022-06-24', 7744, 89390, 5613, 56658, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94716, '2022-06-24', 7743, 89391, 5613, NULL, '1.0000', '919779.6853', '919779.6853', '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 (94717, '2022-06-24', 1841, 89392, 5613, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94718, '2022-06-24', 7544, 89393, 5613, NULL, '2.0000', '9.4300', '9.4300', '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 (94719, '2022-06-24', 2560, 89394, 5613, 57540, '1.0000', '20.3704', '20.3704', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94720, '2022-06-24', 7980, 89395, 5613, NULL, '5.0000', '-31.7682', '-31.7682', '0.8000', '0.8000', '-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 (94721, '2022-06-24', 7762, 89396, 5613, 57413, '1.0000', '0.7818', '0.7818', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94722, '2022-06-24', 7781, 89397, 5613, NULL, '3.0000', '6.8496', '6.8496', '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 (94723, '2022-06-24', 1592, 89398, 5614, 56736, '1.0000', '35.6192', '35.6192', '52.0000', '52.0000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94724, '2022-06-24', 2237, 89399, 5614, 54421, '2.0000', '1.3518', '1.3518', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94725, '2022-06-24', 7638, 89400, 5615, 56526, '1.0000', '7.0429', '7.0429', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94726, '2022-06-24', 2612, 89401, 5615, 57602, '1.0000', '8.4480', '8.4480', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94727, '2022-06-24', 9329, 89402, 5616, NULL, '1.0000', '8.8000', '8.8000', '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 (94728, '2022-06-24', 9089, 89403, 5617, 56825, '1.0000', '4.8664', '4.8664', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94729, '2022-06-24', 2088, 89404, 5617, 56955, '1.0000', '1.6864', '1.6864', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94730, '2022-06-24', 1340, 89405, 5617, 52235, '1.0000', '3.2084', '3.2084', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94731, '2022-06-24', 2237, 89406, 5617, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94732, '2022-06-24', 9469, 89407, 5617, 55440, '4.0000', '3.0857', '3.0857', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94733, '2022-06-24', 2825, 89408, 5617, NULL, '1.0000', '12.0000', '12.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 (94734, '2022-06-24', 9695, 89409, 5617, 57893, '1.0000', '5.4364', '5.4364', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94735, '2022-06-24', 1779, 89410, 5617, 4938, '1.0000', '0.3100', '0.3100', '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 (94736, '2022-06-24', 9731, 89411, 5617, 55494, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94737, '2022-06-24', 8767, 89412, 5617, 42933, '1.0000', '6.6900', '6.6900', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94738, '2022-06-24', 2285, 89413, 5617, 56890, '1.0000', '40.3808', '40.3808', '65.5000', '65.5000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94739, '2022-06-24', 2908, 89414, 5617, 48776, '4.0000', '0.2700', '0.2700', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94740, '2022-06-24', 2237, 89415, 5617, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94741, '2022-06-24', 7703, 89416, 5617, NULL, '1.0000', '0.6500', '0.6500', '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 (94742, '2022-06-24', 7482, 89417, 5617, NULL, '1.0000', '3.0500', '3.0500', '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 (94743, '2022-06-24', 1432, 89418, 5617, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94744, '2022-06-24', 1383, 89419, 5617, 56883, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94745, '2022-06-24', 2858, 89420, 5617, 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 (94746, '2022-06-24', 1702, 89421, 5617, 56723, '1.0000', '24.5154', '24.5154', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94747, '2022-06-24', 8745, 89422, 5617, 56833, '1.0000', '11.2652', '11.2652', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94748, '2022-06-24', 8773, 89423, 5617, NULL, '2.0000', '1.3601', '1.3601', '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 (94749, '2022-06-24', 8746, 89424, 5617, 55447, '1.0000', '129.8458', '129.8458', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94750, '2022-06-24', 9089, 89425, 5617, 56825, '1.0000', '4.8664', '4.8664', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94751, '2022-06-24', 1650, 89426, 5617, 56213, '1.0000', '14.9457', '14.9457', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94752, '2022-06-24', 1757, 89427, 5617, 48746, '1.0000', '4.5526', '4.5526', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94753, '2022-06-24', 2558, 89428, 5617, 44508, '1.0000', '5.4253', '5.4253', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94754, '2022-06-24', 7745, 89429, 5617, NULL, '1.0000', '6.7000', '6.7000', '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 (94755, '2022-06-24', 2916, 89430, 5617, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94756, '2022-06-24', 9896, 89431, 5617, 54367, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '14.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94757, '2022-06-24', 9590, 89432, 5617, NULL, '1.0000', '0.0000', '0.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 (94758, '2022-06-24', 8745, 89433, 5617, 56833, '1.0000', '11.2652', '11.2652', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94759, '2022-06-24', 2271, 89434, 5617, 10390, '1.0000', '12.0000', '12.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 (94760, '2022-06-24', 2221, 89435, 5617, 56927, '1.0000', '16.8057', '16.8057', '26.0000', '26.0000', '11.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94761, '2022-06-24', 2443, 89436, 5617, NULL, '1.0000', '4.0000', '4.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 (94762, '2022-06-24', 1411, 89437, 5617, 53254, '1.0000', '25.9566', '25.9566', '35.0000', '35.0000', '7.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94763, '2022-06-24', 1667, 89438, 5617, 56914, '1.0000', '20.3909', '20.3909', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94764, '2022-06-24', 1602, 89439, 5617, 56909, '1.0000', '6.9969', '6.9969', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94765, '2022-06-24', 7385, 89440, 5617, 55490, '1.0000', '2.5970', '2.5970', '4.0000', '4.0000', '47.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94766, '2022-06-24', 2169, 89441, 5618, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94767, '2022-06-24', 9819, 89442, 5618, 55635, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94768, '2022-06-24', 2022, 89443, 5618, 55157, '1.0000', '3.8333', '3.8333', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94769, '2022-06-24', 2908, 89444, 5618, 55931, '2.0000', '0.3518', '0.3518', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94770, '2022-06-24', 2009, 89445, 5618, 57111, '1.0000', '17.9524', '17.9524', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94771, '2022-06-24', 1687, 89446, 5618, 56467, '1.0000', '14.1684', '14.1684', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94772, '2022-06-24', 8677, 89447, 5618, NULL, '2.0000', '496.2705', '496.2705', '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 (94773, '2022-06-24', 9960, 89448, 5618, 57743, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94774, '2022-06-24', 9469, 89449, 5618, 57103, '1.0000', '4.3167', '4.3167', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94775, '2022-06-24', 9469, 89449, 5618, 51026, '1.0000', '4.3167', '4.3167', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 422);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94776, '2022-06-24', 1529, 89450, 5618, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94777, '2022-06-24', 1501, 89451, 5618, NULL, '1.0000', '0.6299', '0.6299', '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 (94778, '2022-06-24', 1935, 89452, 5618, 57699, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94779, '2022-06-24', 8362, 89453, 5618, NULL, '4.0000', '4.1000', '4.1000', '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 (94780, '2022-06-24', 7514, 89454, 5618, NULL, '1.0000', '2.2500', '2.2500', '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 (94781, '2022-06-24', 1925, 89455, 5618, 51221, '3.0000', '1.4444', '1.4444', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94782, '2022-06-24', 9834, 89456, 5618, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94783, '2022-06-24', 9902, 89457, 5618, 57714, '2.0000', '7.8000', '7.8000', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94784, '2022-06-24', 2521, 89458, 5618, 57138, '1.0000', '12.2500', '12.2500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94785, '2022-06-24', 2999, 89459, 5618, 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 (94786, '2022-06-24', 1593, 89460, 5618, NULL, '5.0000', '5.9000', '5.9000', '8.7000', '8.7000', '-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 (94787, '2022-06-24', 2297, 89461, 5618, 55653, '1.0000', '10.3086', '10.3086', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94788, '2022-06-24', 7579, 89462, 5618, NULL, '1.0000', '15.0000', '15.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 (94789, '2022-06-24', 1339, 89463, 5618, 51940, '1.0000', '2.2232', '2.2232', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94790, '2022-06-24', 1331, 89464, 5618, NULL, '1.0000', '4.2000', '4.2000', '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 (94791, '2022-06-24', 9695, 89465, 5618, 57926, '1.0000', '5.3163', '5.3163', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94792, '2022-06-24', 2083, 89466, 5618, 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 (94793, '2022-06-24', 2162, 89467, 5618, 23989, '2.0000', '6.5000', '6.5000', '8.5000', '8.5000', '7.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 (94794, '2022-06-24', 2441, 89468, 5618, 54830, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94795, '2022-06-24', 1763, 89469, 5618, 55644, '1.0000', '4.6631', '4.6631', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94796, '2022-06-24', 2089, 89470, 5618, 57075, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94797, '2022-06-24', 2277, 89471, 5618, NULL, '2.0000', '0.9399', '0.9399', '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 (94798, '2022-06-24', 2363, 89472, 5618, 57814, '1.0000', '4.9400', '4.9400', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94799, '2022-06-24', 1677, 89473, 5618, NULL, '1.0000', '3.0375', '3.0375', '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 (94800, '2022-06-24', 2315, 89474, 5618, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94801, '2022-06-24', 2754, 89475, 5618, 18938, '2.0000', '0.0800', '0.0800', '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 (94802, '2022-06-24', 2283, 89476, 5618, 57674, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94803, '2022-06-24', 2297, 89477, 5618, 55653, '1.0000', '10.3086', '10.3086', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94804, '2022-06-24', 2250, 89478, 5618, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94805, '2022-06-24', 9736, 89479, 5618, 56414, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94806, '2022-06-24', 8595, 89480, 5618, NULL, '1.0000', '3.5480', '3.5480', '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 (94807, '2022-06-24', 9794, 89481, 5618, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '98.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94808, '2022-06-24', 9788, 89482, 5618, 54919, '4.0000', '1.5347', '1.5347', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94809, '2022-06-24', 8677, 89483, 5618, NULL, '4.0000', '496.2705', '496.2705', '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 (94810, '2022-06-24', 7673, 89484, 5618, NULL, '1.0000', '15.5000', '15.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 (94811, '2022-06-24', 1602, 89485, 5618, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94812, '2022-06-24', 7514, 89486, 5618, NULL, '1.0000', '2.2500', '2.2500', '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 (94813, '2022-06-24', 2169, 89487, 5618, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94814, '2022-06-24', 1339, 89488, 5618, 51940, '1.0000', '2.2232', '2.2232', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94815, '2022-06-24', 1337, 89489, 5618, 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 (94816, '2022-06-24', 2298, 89490, 5618, 57722, '1.0000', '-24.4602', '-24.4602', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94817, '2022-06-24', 2302, 89491, 5618, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94818, '2022-06-24', 2142, 89492, 5618, 57767, '1.0000', '69.7500', '69.7500', '98.0000', '98.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94819, '2022-06-24', 3015, 89493, 5618, 24936, '1.0000', '49.0000', '49.0000', '65.0000', '65.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 (94820, '2022-06-24', 3046, 89494, 5618, NULL, '1.0000', '5.4000', '5.4000', '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 (94821, '2022-06-24', 7472, 89495, 5618, NULL, '1.0000', '-107.6090', '-107.6090', '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 (94822, '2022-06-24', 9948, 89496, 5618, 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 (94823, '2022-06-24', 2916, 89497, 5618, NULL, '1.0000', '1412.8179', '1412.8179', '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 (94824, '2022-06-24', 1307, 89498, 5618, NULL, '1.0000', '-59.9897', '-59.9897', '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 (94825, '2022-06-24', 1935, 89499, 5618, 57699, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94826, '2022-06-24', 9762, 89500, 5618, 51228, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94827, '2022-06-24', 2546, 89501, 5618, 57804, '1.0000', '117.1000', '117.1000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94828, '2022-06-24', 7411, 89502, 5618, NULL, '2.0000', '1.3013', '1.3013', '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 (94829, '2022-06-24', 1621, 89503, 5618, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94830, '2022-06-24', 7411, 89504, 5618, NULL, '1.0000', '1.3013', '1.3013', '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 (94831, '2022-06-24', 1621, 89505, 5619, 48794, '1.0000', '38.3074', '38.3074', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94832, '2022-06-24', 7745, 89506, 5619, NULL, '1.0000', '6.7000', '6.7000', '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 (94833, '2022-06-24', 8710, 89507, 5620, NULL, '1.0000', '10.9000', '10.9000', '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 (94834, '2022-06-24', 9695, 89508, 5620, NULL, '2.0000', '4.5000', '4.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 (94835, '2022-06-24', 7518, 89509, 5620, NULL, '2.0000', '7.8200', '7.8200', '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 (94836, '2022-06-24', 2992, 89510, 5620, NULL, '1.0000', '2.6000', '2.6000', '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 (94837, '2022-06-24', 7666, 89511, 5620, NULL, '1.0000', '3.6000', '3.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 (94838, '2022-06-24', 7879, 89512, 5620, NULL, '2.0000', '1.9800', '1.9800', '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 (94839, '2022-06-24', 7390, 89513, 5620, NULL, '1.0000', '6.9800', '6.9800', '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 (94840, '2022-06-24', 1904, 89514, 5620, 5442, '-62.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 (94841, '2022-06-24', 1904, 89514, 5620, NULL, '64.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94842, '2022-06-24', 7857, 89515, 5620, NULL, '1.0000', '15.1300', '15.1300', '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 (94843, '2022-06-24', 8061, 89516, 5620, NULL, '1.0000', '6.5000', '6.5000', '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 (94844, '2022-06-24', 8415, 89517, 5620, NULL, '1.0000', '3.2500', '3.2500', '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 (94845, '2022-06-24', 9092, 89518, 5620, NULL, '4.0000', '5.2900', '5.2900', '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 (94846, '2022-06-24', 7464, 89519, 5620, NULL, '1.0000', '21.9000', '21.9000', '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 (94847, '2022-06-24', 2256, 89520, 5620, 2793, '-6.0000', '12.7400', '12.7400', '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 (94848, '2022-06-24', 2256, 89520, 5620, NULL, '7.0000', '12.7400', '12.7400', '22.0000', '22.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 (94849, '2022-06-24', 9274, 89521, 5620, NULL, '1.0000', '3.6000', '3.6000', '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 (94850, '2022-06-24', 8000, 89522, 5620, NULL, '3.0000', '6.8400', '6.8400', '14.0000', '14.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 (94851, '2022-06-24', 2726, 89523, 5620, NULL, '1.0000', '4.0000', '4.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 (94852, '2022-06-24', 7867, 89524, 5620, NULL, '2.0000', '1.6300', '1.6300', '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 (94853, '2022-06-24', 1338, 89525, 5620, 16502, '-14.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 (94854, '2022-06-24', 1338, 89525, 5620, NULL, '15.0000', '4.0000', '4.0000', '6.5000', '6.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 (94855, '2022-06-24', 8279, 89526, 5620, NULL, '1.0000', '6.0000', '6.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 (94856, '2022-06-24', 9271, 89527, 5620, NULL, '1.0000', '0.9900', '0.9900', '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 (94857, '2022-06-24', 7713, 89528, 5620, NULL, '3.0000', '0.3800', '0.3800', '0.6000', '0.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 (94858, '2022-06-24', 7472, 89529, 5620, NULL, '1.0000', '4.1000', '4.1000', '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 (94859, '2022-06-24', 9274, 89530, 5620, NULL, '1.0000', '3.6000', '3.6000', '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 (94860, '2022-06-24', 8097, 89531, 5620, NULL, '4.0000', '3.4000', '3.4000', '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 (94861, '2022-06-24', 8966, 89532, 5620, NULL, '1.0000', '6.8500', '6.8500', '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 (94862, '2022-06-24', 7518, 89533, 5620, NULL, '1.0000', '7.8200', '7.8200', '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 (94863, '2022-06-24', 9209, 89534, 5620, NULL, '1.0000', '4.8000', '4.8000', '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 (94864, '2022-06-24', 7652, 89535, 5620, NULL, '10.0000', '0.9800', '0.9800', '1.6000', '1.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 (94865, '2022-06-24', 7917, 89536, 5620, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94866, '2022-06-24', 8878, 89537, 5620, NULL, '1.0000', '6.6700', '6.6700', '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 (94867, '2022-06-24', 7852, 89538, 5620, NULL, '1.0000', '15.0000', '15.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 (94868, '2022-06-25', 2415, 89539, 5621, 4656, '-16.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 (94869, '2022-06-25', 2415, 89539, 5621, NULL, '17.0000', '5.0000', '5.0000', '7.0000', '7.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 (94870, '2022-06-25', 2237, 89540, 5621, 2781, '-73.0000', '1.0600', '1.0600', '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 (94871, '2022-06-25', 2237, 89540, 5621, NULL, '74.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94872, '2022-06-25', 7411, 89541, 5621, NULL, '1.0000', '1.3500', '1.3500', '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 (94873, '2022-06-25', 2821, 89542, 5621, 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 (94874, '2022-06-25', 7339, 89543, 5621, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (94875, '2022-06-25', 1536, 89544, 5621, 1634, '-94.0000', '3.1686', '3.1686', '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 (94876, '2022-06-25', 1536, 89544, 5621, NULL, '104.0000', '3.1686', '3.1686', '7.0000', '7.0000', '-104.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94877, '2022-06-25', 9740, 89545, 5621, NULL, '1.0000', '0.6600', '0.6600', '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 (94878, '2022-06-25', 1373, 89546, 5621, 18885, '1.0000', '8.1000', '8.1000', '10.5000', '10.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 (94879, '2022-06-25', 1373, 89546, 5621, 4348, '3.0000', '8.1000', '8.1000', '10.5000', '10.5000', '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 (94880, '2022-06-25', 1783, 89547, 5621, 4901, '-31.0000', '7.8500', '7.8500', '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 (94881, '2022-06-25', 1783, 89547, 5621, NULL, '34.0000', '7.8500', '7.8500', '13.5000', '13.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 (94882, '2022-06-25', 2384, 89548, 5621, 4087, '-49.0000', '0.4000', '0.4000', '0.7000', '0.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 (94883, '2022-06-25', 2384, 89548, 5621, NULL, '51.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (94884, '2022-06-25', 2244, 89549, 5621, NULL, '1.0000', '7.3600', '7.3600', '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 (94885, '2022-06-25', 1892, 89550, 5621, 5431, '-17.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 (94886, '2022-06-25', 1892, 89550, 5621, NULL, '19.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (94887, '2022-06-25', 7802, 89551, 5621, NULL, '3.0000', '0.9200', '0.9200', '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 (94888, '2022-06-25', 2285, 89552, 5621, 2945, '-49.0000', '35.8000', '35.8000', '65.5000', '65.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 (94889, '2022-06-25', 2285, 89552, 5621, NULL, '50.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94890, '2022-06-25', 1371, 89553, 5621, 10169, '-9.0000', '5.5000', '5.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 (94891, '2022-06-25', 1371, 89553, 5621, NULL, '10.0000', '5.5000', '5.5000', '10.0000', '10.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 (94892, '2022-06-25', 9741, 89554, 5621, NULL, '1.0000', '7.6000', '7.6000', '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 (94893, '2022-06-25', 1452, 89555, 5621, 928, '1.0000', '45.6150', '45.6150', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94894, '2022-06-25', 9794, 89556, 5621, NULL, '1.0000', '1.0800', '1.0800', '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 (94895, '2022-06-25', 1499, 89557, 5621, NULL, '3.0000', '0.4100', '0.4100', '0.7000', '0.7000', '-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 (94896, '2022-06-25', 2384, 89558, 5621, 4087, '-49.0000', '0.4000', '0.4000', '0.7000', '0.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 (94897, '2022-06-25', 2384, 89558, 5621, NULL, '51.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (94898, '2022-06-25', 1910, 89559, 5621, 167, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '25.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 (94899, '2022-06-25', 2341, 89560, 5621, 3844, '-1.0000', '6.8000', '6.8000', '9.4800', '9.4800', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94900, '2022-06-25', 2341, 89560, 5621, NULL, '2.0000', '6.8000', '6.8000', '9.4800', '9.4800', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94901, '2022-06-25', 8745, 89561, 5621, NULL, '1.0000', '8.0000', '8.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 (94902, '2022-06-25', 2251, 89562, 5621, 2788, '-28.0000', '10.9700', '10.9700', '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 (94903, '2022-06-25', 2251, 89562, 5621, NULL, '29.0000', '10.9700', '10.9700', '19.5000', '19.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94904, '2022-06-25', 1765, 89563, 5621, 3175, '-19.0000', '90.0000', '90.0000', '9.5000', '9.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 (94905, '2022-06-25', 1765, 89563, 5621, NULL, '20.0000', '90.0000', '90.0000', '9.5000', '9.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 (94906, '2022-06-25', 2315, 89564, 5621, 2735, '-503.0000', '0.3300', '0.3300', '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 (94907, '2022-06-25', 2315, 89564, 5621, NULL, '504.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-504.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94908, '2022-06-25', 8208, 89565, 5621, NULL, '2.0000', '33.0000', '33.0000', '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 (94909, '2022-06-25', 2394, 89566, 5621, 4201, '-6.0000', '4.0000', '4.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 (94910, '2022-06-25', 2394, 89566, 5621, NULL, '7.0000', '4.0000', '4.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 (94911, '2022-06-25', 9794, 89567, 5621, NULL, '2.0000', '1.0800', '1.0800', '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 (94912, '2022-06-25', 1519, 89568, 5621, 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 (94913, '2022-06-25', 9750, 89569, 5621, NULL, '1.0000', '3.3000', '3.3000', '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 (94914, '2022-06-25', 2567, 89570, 5622, 57917, '3.0000', '34.9168', '34.9168', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94915, '2022-06-25', 2302, 89571, 5622, 55626, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94916, '2022-06-25', 9726, 89572, 5622, 57740, '1.0000', '5.1598', '5.1598', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94917, '2022-06-25', 9729, 89573, 5622, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94918, '2022-06-25', 1935, 89574, 5622, 57699, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94919, '2022-06-25', 9576, 89575, 5622, 55151, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94920, '2022-06-25', 8775, 89576, 5622, 57094, '1.0000', '1.9789', '1.9789', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94921, '2022-06-25', 2169, 89577, 5622, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94922, '2022-06-25', 9959, 89578, 5622, 57700, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94923, '2022-06-25', 1529, 89579, 5622, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94924, '2022-06-25', 9740, 89580, 5622, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '106.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94925, '2022-06-25', 2821, 89581, 5622, 57694, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94926, '2022-06-25', 8308, 89582, 5622, NULL, '1.0000', '11.0000', '11.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 (94927, '2022-06-25', 7911, 89583, 5622, NULL, '1.0000', '4.3700', '4.3700', '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 (94928, '2022-06-25', 2242, 89584, 5622, 56409, '1.0000', '1.2664', '1.2664', '1.5000', '1.5000', '66.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94929, '2022-06-25', 7483, 89585, 5622, NULL, '1.0000', '0.4200', '0.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 (94930, '2022-06-25', 1855, 89586, 5622, NULL, '1.0000', '1.4615', '1.4615', '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 (94931, '2022-06-25', 2237, 89587, 5622, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94932, '2022-06-25', 9030, 89588, 5622, 57805, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94933, '2022-06-25', 2617, 89589, 5622, NULL, '2.0000', '5.1800', '5.1800', '8.5000', '8.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 (94934, '2022-06-25', 9695, 89590, 5622, 57926, '3.0000', '5.3163', '5.3163', '8.0000', '8.0000', '14.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94935, '2022-06-25', 2347, 89591, 5622, 48967, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94936, '2022-06-25', 2327, 89592, 5622, 49257, '2.0000', '3.8469', '3.8469', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94937, '2022-06-25', 2169, 89593, 5622, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94938, '2022-06-25', 1912, 89594, 5622, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94939, '2022-06-25', 9729, 89595, 5622, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94940, '2022-06-25', 7411, 89596, 5622, NULL, '1.0000', '1.3013', '1.3013', '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 (94941, '2022-06-25', 1702, 89597, 5622, NULL, '1.0000', '10.8300', '10.8300', '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 (94942, '2022-06-25', 7398, 89598, 5622, NULL, '1.0000', '143.5000', '143.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 (94943, '2022-06-25', 2908, 89599, 5622, 55931, '1.0000', '0.3518', '0.3518', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94944, '2022-06-25', 1425, 89600, 5622, NULL, '1.0000', '-104.0456', '-104.0456', '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 (94945, '2022-06-25', 7895, 89601, 5622, 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 (94946, '2022-06-25', 2105, 89602, 5622, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94947, '2022-06-25', 7641, 89603, 5622, NULL, '1.0000', '1.9000', '1.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 (94948, '2022-06-25', 9740, 89604, 5622, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '106.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94949, '2022-06-25', 2352, 89605, 5623, NULL, '8.0000', '126.2588', '126.2588', '3.5000', '3.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 (94950, '2022-06-25', 2240, 89606, 5623, 57776, '1.0000', '41.2979', '41.2979', '53.0000', '53.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94951, '2022-06-25', 1529, 89607, 5623, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94952, '2022-06-25', 1856, 89608, 5623, NULL, '1.0000', '155.0099', '155.0099', '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 (94953, '2022-06-25', 7743, 89609, 5623, NULL, '1.0000', '7.3900', '7.3900', '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 (94954, '2022-06-25', 9482, 89610, 5623, 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 (94955, '2022-06-25', 1432, 89611, 5623, 55707, '1.0000', '12.2101', '12.2101', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94956, '2022-06-25', 2384, 89612, 5623, NULL, '3.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-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 (94957, '2022-06-25', 2277, 89613, 5623, NULL, '1.0000', '0.9399', '0.9399', '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 (94958, '2022-06-25', 7411, 89614, 5623, NULL, '1.0000', '1.3013', '1.3013', '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 (94959, '2022-06-25', 9832, 89615, 5623, 57495, '2.0000', '1.7283', '1.7283', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94960, '2022-06-25', 1905, 89616, 5623, 54898, '3.0000', '0.5203', '0.5203', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94961, '2022-06-25', 1760, 89617, 5623, NULL, '5.0000', '1.5900', '1.5900', '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 (94962, '2022-06-25', 9754, 89618, 5623, 57794, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94963, '2022-06-25', 2325, 89619, 5623, 57127, '1.0000', '6.4615', '6.4615', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94964, '2022-06-25', 9831, 89620, 5623, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94965, '2022-06-25', 2302, 89621, 5623, 55567, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94966, '2022-06-25', 1342, 89622, 5623, 57688, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94967, '2022-06-25', 1621, 89623, 5623, 57751, '1.0000', '18.8366', '18.8366', '8.8000', '8.8000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94968, '2022-06-25', 7411, 89624, 5623, NULL, '2.0000', '1.3013', '1.3013', '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 (94969, '2022-06-25', 8595, 89625, 5623, NULL, '1.0000', '3.5480', '3.5480', '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 (94970, '2022-06-25', 8444, 89626, 5623, 57692, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94971, '2022-06-25', 8413, 89627, 5623, 53241, '1.0000', '138.9375', '138.9375', '120.0000', '120.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94972, '2022-06-25', 2022, 89628, 5623, 55157, '1.0000', '3.8333', '3.8333', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94973, '2022-06-25', 8017, 89629, 5623, NULL, '2.0000', '0.6000', '0.6000', '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 (94974, '2022-06-25', 2315, 89630, 5623, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94975, '2022-06-25', 1935, 89631, 5623, 57699, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94976, '2022-06-25', 9754, 89632, 5623, 57794, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94977, '2022-06-25', 1501, 89633, 5623, NULL, '1.0000', '0.6299', '0.6299', '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 (94978, '2022-06-25', 7820, 89634, 5624, NULL, '1.0000', '-296.8250', '-296.8250', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94979, '2022-06-25', 8063, 89635, 5624, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '83.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94980, '2022-06-25', 7693, 89636, 5624, 51275, '1.0000', '4.8831', '4.8831', '5.4000', '5.4000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94981, '2022-06-25', 9275, 89637, 5624, NULL, '3.0000', '6.3000', '6.3000', '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 (94982, '2022-06-25', 1935, 89638, 5624, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '118.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94983, '2022-06-25', 7354, 89639, 5624, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94984, '2022-06-25', 7411, 89640, 5624, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94985, '2022-06-25', 7952, 89641, 5624, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94986, '2022-06-25', 2699, 89642, 5624, 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 (94987, '2022-06-25', 1765, 89643, 5624, 56587, '1.0000', '5.9330', '5.9330', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94988, '2022-06-25', 8746, 89644, 5624, 57512, '1.0000', '3.2874', '3.2874', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94989, '2022-06-25', 7917, 89645, 5624, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '94.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94990, '2022-06-25', 7524, 89646, 5624, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94991, '2022-06-25', 1339, 89647, 5624, NULL, '1.0000', '2.6205', '2.6205', '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 (94992, '2022-06-25', 7741, 89648, 5624, 56667, '1.0000', '2.5248', '2.5248', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94993, '2022-06-25', 7382, 89649, 5624, 30014, '1.0000', '7.4500', '7.4500', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94994, '2022-06-25', 7653, 89650, 5624, 55074, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94995, '2022-06-25', 7558, 89651, 5624, NULL, '1.0000', '1.4867', '1.4867', '3.7000', '3.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 (94996, '2022-06-25', 7385, 89652, 5624, 57604, '2.0000', '7.8936', '7.8936', '4.0000', '4.0000', '58.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94997, '2022-06-25', 9729, 89653, 5624, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94998, '2022-06-25', 9695, 89654, 5624, 57541, '1.0000', '5.7411', '5.7411', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94999, '2022-06-25', 9458, 89655, 5624, 48030, '2.0000', '1.8000', '1.8000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95000, '2022-06-25', 2699, 89656, 5624, 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 (95001, '2022-06-25', 9028, 89657, 5624, 46232, '1.0000', '5.6880', '5.6880', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95002, '2022-06-25', 7483, 89658, 5624, 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 (95003, '2022-06-25', 7643, 89659, 5624, NULL, '1.0000', '2.1100', '2.1100', '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 (95004, '2022-06-25', 7954, 89660, 5624, NULL, '4.0000', '-15800.4581', '-15800.4581', '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 (95005, '2022-06-25', 3046, 89661, 5624, NULL, '1.0000', '5.4000', '5.4000', '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 (95006, '2022-06-25', 2612, 89662, 5624, 57602, '1.0000', '8.4480', '8.4480', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95007, '2022-06-25', 9729, 89663, 5624, 56613, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95008, '2022-06-25', 9275, 89664, 5624, NULL, '2.0000', '6.3000', '6.3000', '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 (95009, '2022-06-25', 7933, 89665, 5624, 57614, '3.0000', '1.0292', '1.0292', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95010, '2022-06-25', 7411, 89666, 5624, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95011, '2022-06-25', 7548, 89667, 5624, NULL, '2.0000', '2.0471', '2.0471', '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 (95012, '2022-06-25', 7385, 89668, 5624, 57604, '5.0000', '7.8936', '7.8936', '4.0000', '4.0000', '55.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95013, '2022-06-25', 7959, 89669, 5624, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '28.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95014, '2022-06-25', 9445, 89670, 5624, 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 (95015, '2022-06-25', 7650, 89671, 5624, 57209, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95016, '2022-06-25', 8883, 89672, 5624, NULL, '3.0000', '56.5500', '56.5500', '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 (95017, '2022-06-25', 7411, 89673, 5624, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95018, '2022-06-25', 9503, 89674, 5624, 56528, '1.0000', '1.2700', '1.2700', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95019, '2022-06-25', 7780, 89675, 5624, NULL, '1.0000', '-632.7715', '-632.7715', '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 (95020, '2022-06-25', 8878, 89676, 5624, 57207, '2.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95021, '2022-06-25', 8328, 89677, 5624, NULL, '1.0000', '6.5306', '6.5306', '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 (95022, '2022-06-25', 7980, 89678, 5624, NULL, '10.0000', '-31.7682', '-31.7682', '0.8000', '0.8000', '-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 (95023, '2022-06-25', 1841, 89679, 5624, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95024, '2022-06-25', 1840, 89680, 5624, 56555, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '89.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95025, '2022-06-25', 9797, 89681, 5624, 50292, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95026, '2022-06-25', 7722, 89682, 5624, NULL, '1.0000', '3.5000', '3.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 (95027, '2022-06-25', 2670, 89683, 5624, NULL, '2.0000', '0.3200', '0.3200', '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 (95028, '2022-06-25', 2315, 89684, 5624, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95029, '2022-06-25', 7933, 89685, 5624, 57614, '1.0000', '1.0292', '1.0292', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95030, '2022-06-25', 9274, 89686, 5624, 56602, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95031, '2022-06-25', 7473, 89687, 5624, NULL, '3.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (95032, '2022-06-25', 8918, 89688, 5624, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95033, '2022-06-25', 9274, 89689, 5624, 56602, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95034, '2022-06-25', 7952, 89690, 5624, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95035, '2022-06-25', 7674, 89691, 5624, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95036, '2022-06-25', 8000, 89692, 5624, 57616, '3.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '10.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95037, '2022-06-25', 9092, 89693, 5624, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95038, '2022-06-25', 7959, 89694, 5624, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '28.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95039, '2022-06-25', 7704, 89695, 5624, NULL, '1.0000', '-1.5625', '-1.5625', '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 (95040, '2022-06-25', 3066, 89696, 5624, NULL, '1.0000', '24.6400', '24.6400', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95041, '2022-06-25', 7753, 89697, 5624, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95042, '2022-06-25', 7708, 89698, 5625, NULL, '1.0000', '6.3400', '6.3400', '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 (95043, '2022-06-25', 7398, 89699, 5625, NULL, '1.0000', '143.5000', '143.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 (95044, '2022-06-25', 2169, 89700, 5625, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95045, '2022-06-25', 7411, 89701, 5625, NULL, '5.0000', '1.3013', '1.3013', '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 (95046, '2022-06-25', 2302, 89702, 5625, 55567, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95047, '2022-06-25', 1904, 89703, 5625, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95048, '2022-06-25', 1521, 89704, 5625, NULL, '1.0000', '58.1500', '58.1500', '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 (95049, '2022-06-25', 1487, 89705, 5625, NULL, '1.0000', '-330.9124', '-330.9124', '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 (95050, '2022-06-25', 2058, 89706, 5625, NULL, '1.0000', '10.0000', '10.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 (95051, '2022-06-25', 8208, 89707, 5625, NULL, '2.0000', '47.9541', '47.9541', '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 (95052, '2022-06-25', 1840, 89708, 5625, NULL, '2.0000', '0.2400', '0.2400', '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 (95053, '2022-06-25', 9891, 89709, 5625, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95054, '2022-06-25', 8811, 89710, 5625, NULL, '1.0000', '11.6000', '11.6000', '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 (95055, '2022-06-25', 9834, 89711, 5625, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95056, '2022-06-25', 9960, 89712, 5625, 57743, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95057, '2022-06-25', 2167, 89713, 5625, NULL, '1.0000', '1.7907', '1.7907', '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 (95058, '2022-06-25', 2315, 89714, 5625, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95059, '2022-06-25', 9821, 89715, 5625, 57690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95060, '2022-06-25', 2299, 89716, 5625, 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 (95061, '2022-06-25', 2821, 89717, 5625, 57694, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95062, '2022-06-25', 7411, 89718, 5625, NULL, '2.0000', '1.3013', '1.3013', '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 (95063, '2022-06-25', 2476, 89719, 5625, 24875, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '3.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 (95064, '2022-06-25', 1529, 89720, 5625, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95065, '2022-06-25', 7741, 89721, 5625, NULL, '1.0000', '-52.1460', '-52.1460', '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 (95066, '2022-06-25', 2236, 89722, 5625, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95067, '2022-06-25', 2068, 89723, 5625, 55704, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95068, '2022-06-25', 1580, 89724, 5625, 56446, '5.0000', '1.4661', '1.4661', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95069, '2022-06-25', 2079, 89725, 5625, 55542, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95070, '2022-06-25', 7411, 89726, 5625, NULL, '1.0000', '1.3013', '1.3013', '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 (95071, '2022-06-25', 1501, 89727, 5625, NULL, '1.0000', '0.6299', '0.6299', '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 (95072, '2022-06-25', 1912, 89728, 5625, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95073, '2022-06-25', 1529, 89729, 5625, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95074, '2022-06-25', 1807, 89730, 5625, NULL, '9.0000', '34.9993', '34.9993', '2.5000', '2.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 (95075, '2022-06-25', 7411, 89731, 5625, NULL, '1.0000', '1.3013', '1.3013', '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 (95076, '2022-06-25', 7944, 89732, 5625, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95077, '2022-06-25', 9695, 89733, 5625, 57926, '1.0000', '5.3163', '5.3163', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95078, '2022-06-25', 1620, 89734, 5625, 55636, '4.0000', '2.2583', '2.2583', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95079, '2022-06-25', 8984, 89735, 5625, NULL, '1.0000', '422.2794', '422.2794', '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 (95080, '2022-06-25', 1715, 89736, 5625, NULL, '1.0000', '9.5000', '9.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 (95081, '2022-06-25', 2169, 89737, 5625, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95082, '2022-06-25', 1667, 89738, 5625, 57712, '2.0000', '9.6099', '9.6099', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95083, '2022-06-25', 1550, 89739, 5625, 57797, '1.0000', '19.4890', '19.4890', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95084, '2022-06-25', 1409, 89740, 5626, 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 (95085, '2022-06-25', 1504, 89741, 5626, NULL, '10.0000', '1.5000', '1.5000', '2.8000', '2.8000', '-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 (95086, '2022-06-25', 1670, 89742, 5626, 10163, '-19.0000', '19.5000', '19.5000', '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 (95087, '2022-06-25', 1670, 89742, 5626, NULL, '20.0000', '19.5000', '19.5000', '36.0000', '36.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 (95088, '2022-06-25', 9748, 89743, 5626, NULL, '1.0000', '2.5300', '2.5300', '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 (95089, '2022-06-25', 1808, 89744, 5626, 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 (95090, '2022-06-25', 2169, 89745, 5626, 10737, '-165.0000', '3.8397', '3.8397', '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 (95091, '2022-06-25', 2169, 89745, 5626, NULL, '166.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-166.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95092, '2022-06-25', 9775, 89746, 5626, NULL, '1.0000', '7.9000', '7.9000', '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 (95093, '2022-06-25', 9770, 89747, 5626, 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 (95094, '2022-06-25', 2332, 89748, 5626, 3835, '-19.0000', '5.8900', '5.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 (95095, '2022-06-25', 2332, 89748, 5626, NULL, '20.0000', '5.8900', '5.8900', '10.5000', '10.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 (95096, '2022-06-25', 1839, 89749, 5626, 8734, '-38.0000', '6.1500', '6.1500', '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 (95097, '2022-06-25', 1839, 89749, 5626, NULL, '39.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95098, '2022-06-25', 2777, 89750, 5626, NULL, '1.0000', '2.5000', '2.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 (95099, '2022-06-25', 2668, 89751, 5626, 20619, '1.0000', '7.9800', '7.9800', '16.5000', '16.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 (95100, '2022-06-25', 2285, 89752, 5626, 2945, '-50.0000', '35.8000', '35.8000', '65.5000', '65.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 (95101, '2022-06-25', 2285, 89752, 5626, NULL, '51.0000', '35.8000', '35.8000', '65.5000', '65.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 (95102, '2022-06-25', 2592, 89753, 5626, 10812, '-26.0000', '7.9670', '7.9670', '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 (95103, '2022-06-25', 2592, 89753, 5626, NULL, '28.0000', '7.9670', '7.9670', '18.0000', '18.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 (95104, '2022-06-25', 3001, 89754, 5626, NULL, '5.0000', '1.5000', '1.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 (95105, '2022-06-25', 2943, 89755, 5626, 19987, '-13.0000', '2.1800', '2.1800', '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 (95106, '2022-06-25', 2943, 89755, 5626, NULL, '15.0000', '2.1800', '2.1800', '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 (95107, '2022-06-25', 2022, 89756, 5626, 4200, '-1.0000', '3.5000', '3.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 (95108, '2022-06-25', 2022, 89756, 5626, NULL, '2.0000', '3.5000', '3.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 (95109, '2022-06-25', 9896, 89757, 5626, 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 (95110, '2022-06-25', 1846, 89758, 5626, 12032, '-22.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 (95111, '2022-06-25', 1846, 89758, 5626, NULL, '23.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (95112, '2022-06-25', 9729, 89759, 5626, NULL, '2.0000', '0.6200', '0.6200', '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 (95113, '2022-06-25', 7741, 89760, 5626, NULL, '2.0000', '1.2000', '1.2000', '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 (95114, '2022-06-25', 1555, 89761, 5626, 1626, '-3.0000', '22.2400', '22.2400', '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 (95115, '2022-06-25', 1555, 89761, 5626, NULL, '4.0000', '22.2400', '22.2400', '40.0000', '40.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 (95116, '2022-06-25', 1425, 89762, 5626, NULL, '1.0000', '6.4405', '6.4405', '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 (95117, '2022-06-25', 2315, 89763, 5626, 2735, '-504.0000', '0.3300', '0.3300', '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 (95118, '2022-06-25', 2315, 89763, 5626, NULL, '506.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-506.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95119, '2022-06-25', 1602, 89764, 5626, 5897, '-166.0000', '6.7859', '6.7859', '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 (95120, '2022-06-25', 1602, 89764, 5626, NULL, '167.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-167.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95121, '2022-06-25', 1678, 89765, 5626, NULL, '1.0000', '24.5300', '24.5300', '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 (95122, '2022-06-25', 1863, 89766, 5626, 10808, '-153.0000', '0.4136', '0.4136', '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 (95123, '2022-06-25', 1863, 89766, 5626, NULL, '155.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95124, '2022-06-25', 9695, 89767, 5626, NULL, '2.0000', '4.5000', '4.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 (95125, '2022-06-25', 2315, 89768, 5626, 2735, '-504.0000', '0.3300', '0.3300', '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 (95126, '2022-06-25', 2315, 89768, 5626, NULL, '505.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-505.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95127, '2022-06-25', 2169, 89769, 5626, 10737, '-165.0000', '3.8397', '3.8397', '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 (95128, '2022-06-25', 2169, 89769, 5626, NULL, '166.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-166.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95129, '2022-06-25', 2678, 89770, 5626, 12161, '-2.0000', '37.0000', '37.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 (95130, '2022-06-25', 2678, 89770, 5626, NULL, '3.0000', '37.0000', '37.0000', '48.0000', '48.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 (95131, '2022-06-25', 1912, 89771, 5626, NULL, '2.0000', '0.3200', '0.3200', '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 (95132, '2022-06-25', 1311, 89772, 5626, 5437, '-24.0000', '79.3908', '79.3908', '0.6000', '0.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 (95133, '2022-06-25', 1311, 89772, 5626, NULL, '34.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (95134, '2022-06-25', 8773, 89773, 5626, NULL, '1.0000', '2.5000', '2.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 (95135, '2022-06-25', 2616, 89774, 5627, 9742, '-14.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 (95136, '2022-06-25', 2616, 89774, 5627, 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 (95137, '2022-06-25', 2068, 89775, 5627, 5568, '-28.0000', '13.1000', '13.1000', '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 (95138, '2022-06-25', 2068, 89775, 5627, NULL, '29.0000', '13.1000', '13.1000', '20.0000', '20.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95139, '2022-06-25', 9738, 89776, 5627, NULL, '1.0000', '5.9000', '5.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 (95140, '2022-06-25', 9602, 89777, 5627, NULL, '1.0000', '1.0500', '1.0500', '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 (95141, '2022-06-25', 2285, 89778, 5628, 2945, '-51.0000', '35.8000', '35.8000', '65.5000', '65.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 (95142, '2022-06-25', 2285, 89778, 5628, NULL, '52.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95143, '2022-06-25', 1371, 89779, 5628, 10169, '-10.0000', '5.5000', '5.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 (95144, '2022-06-25', 1371, 89779, 5628, NULL, '11.0000', '5.5000', '5.5000', '10.0000', '10.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 (95145, '2022-06-25', 2858, 89780, 5628, 17772, '-98.0000', '1.0000', '1.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 (95146, '2022-06-25', 2858, 89780, 5628, NULL, '99.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-99.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95147, '2022-06-25', 1863, 89781, 5629, 10808, '-155.0000', '0.4136', '0.4136', '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 (95148, '2022-06-25', 1863, 89781, 5629, NULL, '156.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-156.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95149, '2022-06-25', 1546, 89782, 5629, 1633, '-25.0000', '2.3697', '2.3697', '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 (95150, '2022-06-25', 1546, 89782, 5629, NULL, '37.0000', '2.3697', '2.3697', '4.0000', '4.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95151, '2022-06-25', 9963, 89783, 5629, 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 (95152, '2022-06-25', 9711, 89784, 5629, NULL, '1.0000', '5.2800', '5.2800', '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 (95153, '2022-06-25', 8167, 89785, 5630, 56519, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95154, '2022-06-25', 1875, 89786, 5630, NULL, '10.0000', '90.0000', '90.0000', '3.7000', '3.7000', '-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 (95155, '2022-06-25', 8072, 89787, 5630, NULL, '3.0000', '-133.6999', '-133.6999', '8.7000', '8.7000', '-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 (95156, '2022-06-25', 8052, 89788, 5630, 57418, '1.0000', '37.7100', '37.7100', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95157, '2022-06-25', 1805, 89789, 5630, NULL, '1.0000', '4.9973', '4.9973', '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 (95158, '2022-06-25', 7472, 89790, 5630, 57612, '1.0000', '-207.0690', '-207.0690', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95159, '2022-06-25', 7917, 89791, 5630, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '92.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95160, '2022-06-25', 8677, 89792, 5630, 56676, '1.0000', '1.9860', '1.9860', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95161, '2022-06-25', 7473, 89793, 5630, NULL, '3.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (95162, '2022-06-25', 8878, 89794, 5630, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95163, '2022-06-25', 2414, 89795, 5630, NULL, '2.0000', '3.4000', '3.4000', '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 (95164, '2022-06-25', 7385, 89796, 5630, 57604, '4.0000', '7.8936', '7.8936', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95165, '2022-06-25', 2699, 89797, 5630, 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 (95166, '2022-06-25', 8359, 89798, 5630, 57600, '1.0000', '301.5619', '301.5619', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95167, '2022-06-25', 8566, 89799, 5630, 57537, '1.0000', '-38517.4536', '-38517.4536', '22.0000', '22.0000', '9.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95168, '2022-06-25', 2295, 89800, 5630, NULL, '3.0000', '-2.3086', '-2.3086', '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 (95169, '2022-06-25', 7412, 89801, 5630, 56025, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95170, '2022-06-25', 9155, 89802, 5630, NULL, '1.0000', '1.8000', '1.8000', '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 (95171, '2022-06-25', 2315, 89803, 5630, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95172, '2022-06-25', 9199, 89804, 5630, 47942, '1.0000', '19.0000', '19.0000', '26.0000', '26.0000', '5.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95173, '2022-06-25', 7644, 89805, 5630, 57422, '5.0000', '4.1645', '4.1645', '10.0000', '10.0000', '50.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95174, '2022-06-25', 9456, 89806, 5630, 54750, '1.0000', '3.4942', '3.4942', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95175, '2022-06-25', 7818, 89807, 5630, NULL, '2.0000', '15.5200', '15.5200', '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 (95176, '2022-06-25', 1337, 89808, 5631, 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 (95177, '2022-06-25', 1499, 89809, 5631, 57679, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '47.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95178, '2022-06-25', 2821, 89810, 5631, 57694, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95179, '2022-06-25', 2248, 89811, 5631, 56451, '1.0000', '3.3616', '3.3616', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95180, '2022-06-25', 2237, 89812, 5631, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95181, '2022-06-25', 1855, 89813, 5631, NULL, '1.0000', '1.4615', '1.4615', '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 (95182, '2022-06-25', 2342, 89814, 5631, 54886, '1.0000', '2.2091', '2.2091', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95183, '2022-06-25', 2068, 89815, 5631, 55704, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95184, '2022-06-25', 7506, 89816, 5631, NULL, '1.0000', '15.0000', '15.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 (95185, '2022-06-25', 8984, 89817, 5631, NULL, '1.0000', '422.2794', '422.2794', '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 (95186, '2022-06-25', 8444, 89818, 5631, 57692, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95187, '2022-06-25', 1855, 89819, 5631, NULL, '1.0000', '1.4615', '1.4615', '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 (95188, '2022-06-25', 9828, 89820, 5631, NULL, '2.0000', '2.9100', '2.9100', '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 (95189, '2022-06-25', 1873, 89821, 5631, 57676, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95190, '2022-06-25', 7411, 89822, 5631, NULL, '1.0000', '1.3013', '1.3013', '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 (95191, '2022-06-25', 9794, 89823, 5631, 57665, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '96.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95192, '2022-06-25', 9848, 89824, 5631, NULL, '1.0000', '2.8000', '2.8000', '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 (95193, '2022-06-25', 2315, 89825, 5631, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95194, '2022-06-25', 9729, 89826, 5632, NULL, '1.0000', '0.6200', '0.6200', '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 (95195, '2022-06-25', 9940, 89827, 5632, 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 (95196, '2022-06-25', 9590, 89828, 5632, 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 (95197, '2022-06-25', 9092, 89829, 5633, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95198, '2022-06-25', 8539, 89830, 5633, 54276, '2.0000', '1.9333', '1.9333', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95199, '2022-06-25', 1425, 89831, 5634, NULL, '1.0000', '6.4405', '6.4405', '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 (95200, '2022-06-25', 1863, 89832, 5634, 10808, '-156.0000', '0.4136', '0.4136', '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 (95201, '2022-06-25', 1863, 89832, 5634, NULL, '157.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-157.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95202, '2022-06-25', 9915, 89833, 5634, 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 (95203, '2022-06-25', 2302, 89834, 5635, 2963, '-55.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 (95204, '2022-06-25', 2302, 89834, 5635, NULL, '56.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95205, '2022-06-25', 9915, 89835, 5635, 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 (95206, '2022-06-25', 1602, 89836, 5635, 5897, '-167.0000', '6.7859', '6.7859', '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 (95207, '2022-06-25', 1602, 89836, 5635, NULL, '168.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-168.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95208, '2022-06-25', 1425, 89837, 5635, NULL, '1.0000', '6.4405', '6.4405', '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 (95209, '2022-06-25', 1863, 89838, 5635, 10808, '-157.0000', '0.4136', '0.4136', '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 (95210, '2022-06-25', 1863, 89838, 5635, NULL, '158.0000', '0.4136', '0.4136', '2.0000', '2.0000', '-158.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95211, '2022-06-25', 2821, 89839, 5636, 57694, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95212, '2022-06-25', 1602, 89840, 5636, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95213, '2022-06-25', 9736, 89841, 5636, 51682, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95214, '2022-06-25', 2642, 89842, 5636, 56856, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95215, '2022-06-25', 8183, 89843, 5636, 57735, '2.0000', '2774.2425', '2774.2425', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95216, '2022-06-25', 2061, 89844, 5636, NULL, '1.0000', '4.3037', '4.3037', '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 (95217, '2022-06-25', 9831, 89845, 5636, 57496, '1.0000', '1.6920', '1.6920', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95218, '2022-06-25', 7398, 89846, 5636, NULL, '1.0000', '143.5000', '143.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 (95219, '2022-06-25', 2906, 89847, 5636, NULL, '2.0000', '2.6000', '2.6000', '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 (95220, '2022-06-25', 1779, 89848, 5636, 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 (95221, '2022-06-25', 8740, 89849, 5636, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95222, '2022-06-26', 9959, 89850, 5637, 57700, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95223, '2022-06-26', 9902, 89851, 5637, 57714, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95224, '2022-06-26', 9848, 89852, 5637, NULL, '1.0000', '2.8000', '2.8000', '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 (95225, '2022-06-26', 9840, 89853, 5637, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95226, '2022-06-26', 2416, 89854, 5637, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95227, '2022-06-26', 9743, 89855, 5637, 56438, '1.0000', '13.2429', '13.2429', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95228, '2022-06-26', 1602, 89856, 5637, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95229, '2022-06-26', 2263, 89857, 5637, NULL, '1.0000', '2.4800', '2.4800', '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 (95230, '2022-06-26', 1868, 89858, 5637, NULL, '1.0000', '3.8800', '3.8800', '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 (95231, '2022-06-26', 1837, 89859, 5637, 57779, '2.0000', '4.8950', '4.8950', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95232, '2022-06-26', 1863, 89860, 5637, 57733, '3.0000', '1.4714', '1.4714', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95233, '2022-06-26', 1935, 89861, 5637, 57809, '3.0000', '0.1236', '0.1236', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95234, '2022-06-26', 1580, 89862, 5637, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95235, '2022-06-26', 1532, 89863, 5637, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95236, '2022-06-26', 2556, 89864, 5637, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95237, '2022-06-26', 2414, 89865, 5637, NULL, '4.0000', '3.9438', '3.9438', '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 (95238, '2022-06-26', 9776, 89866, 5637, 57721, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95239, '2022-06-26', 2916, 89867, 5637, NULL, '1.0000', '1412.8179', '1412.8179', '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 (95240, '2022-06-26', 2986, 89868, 5637, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95241, '2022-06-26', 9740, 89869, 5637, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '103.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95242, '2022-06-26', 1645, 89870, 5637, NULL, '1.0000', '13.1800', '13.1800', '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 (95243, '2022-06-26', 7630, 89871, 5637, NULL, '6.0000', '10.0000', '10.0000', '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 (95244, '2022-06-26', 7548, 89872, 5637, NULL, '1.0000', '0.3400', '0.3400', '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 (95245, '2022-06-26', 7953, 89873, 5637, NULL, '1.0000', '-0.5345', '-0.5345', '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 (95246, '2022-06-26', 7575, 89874, 5637, 52171, '1.0000', '-16.5200', '-16.5200', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95247, '2022-06-26', 3058, 89875, 5637, NULL, '3.0000', '-23.3000', '-23.3000', '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 (95248, '2022-06-26', 1767, 89876, 5637, 55576, '1.0000', '5.3188', '5.3188', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95249, '2022-06-26', 2293, 89877, 5637, NULL, '3.0000', '-17.4320', '-17.4320', '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 (95250, '2022-06-26', 1545, 89878, 5637, 55688, '1.0000', '6.7700', '6.7700', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95251, '2022-06-26', 9911, 89879, 5637, 55596, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95252, '2022-06-26', 1674, 89880, 5637, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95253, '2022-06-26', 2105, 89881, 5637, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95254, '2022-06-26', 1868, 89882, 5637, NULL, '1.0000', '3.8800', '3.8800', '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 (95255, '2022-06-26', 1863, 89883, 5637, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95256, '2022-06-26', 3058, 89884, 5637, NULL, '3.0000', '-23.3000', '-23.3000', '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 (95257, '2022-06-26', 2346, 89885, 5637, NULL, '1.0000', '3.4800', '3.4800', '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 (95258, '2022-06-26', 9732, 89886, 5637, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95259, '2022-06-26', 8982, 89887, 5637, 55421, '1.0000', '11.3489', '11.3489', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95260, '2022-06-26', 9695, 89888, 5637, 57926, '2.0000', '5.3163', '5.3163', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95261, '2022-06-26', 2038, 89889, 5637, 57898, '1.0000', '16.9809', '16.9809', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95262, '2022-06-26', 9715, 89890, 5637, 45632, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95263, '2022-06-26', 2221, 89891, 5637, NULL, '1.0000', '2.3805', '2.3805', '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 (95264, '2022-06-26', 1807, 89892, 5637, NULL, '9.0000', '34.9993', '34.9993', '2.5000', '2.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 (95265, '2022-06-26', 2565, 89893, 5637, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95266, '2022-06-26', 9834, 89894, 5637, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95267, '2022-06-26', 1805, 89895, 5638, NULL, '1.0000', '40.8080', '40.8080', '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 (95268, '2022-06-26', 1499, 89896, 5639, 57679, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '44.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95269, '2022-06-26', 2068, 89897, 5639, 55704, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95270, '2022-06-26', 1369, 89898, 5639, 55569, '1.0000', '7.2000', '7.2000', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95271, '2022-06-26', 2089, 89899, 5639, 57075, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95272, '2022-06-26', 7944, 89900, 5640, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95273, '2022-06-26', 1912, 89901, 5640, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95274, '2022-06-26', 7753, 89902, 5641, NULL, '1.0000', '3.4000', '3.4000', '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 (95275, '2022-06-26', 9204, 89903, 5641, NULL, '1.0000', '8.1600', '8.1600', '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 (95276, '2022-06-26', 7317, 89904, 5641, NULL, '1.0000', '19.5500', '19.5500', '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 (95277, '2022-06-26', 1627, 89905, 5641, NULL, '1.0000', '46.2600', '46.2600', '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 (95278, '2022-06-26', 7317, 89906, 5641, NULL, '1.0000', '19.5500', '19.5500', '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 (95279, '2022-06-26', 9177, 89907, 5641, 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 (95280, '2022-06-26', 2069, 89908, 5641, 5571, '-12.0000', '2.0400', '2.0400', '9.5000', '9.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 (95281, '2022-06-26', 2069, 89908, 5641, NULL, '13.0000', '2.0400', '2.0400', '9.5000', '9.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 (95282, '2022-06-26', 7663, 89909, 5641, NULL, '1.0000', '8.2000', '8.2000', '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 (95283, '2022-06-26', 7661, 89910, 5641, NULL, '1.0000', '7.2000', '7.2000', '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 (95284, '2022-06-26', 1339, 89911, 5641, 13004, '-19.0000', '1.6012', '1.6012', '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 (95285, '2022-06-26', 1339, 89911, 5641, NULL, '20.0000', '1.6012', '1.6012', '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 (95286, '2022-06-26', 1335, 89912, 5641, 12031, '-40.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 (95287, '2022-06-26', 1335, 89912, 5641, NULL, '41.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-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 (95288, '2022-06-26', 1332, 89913, 5641, 14392, '-1.0000', '7.5000', '7.5000', '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 (95289, '2022-06-26', 1332, 89913, 5641, NULL, '2.0000', '7.5000', '7.5000', '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 (95290, '2022-06-26', 7860, 89914, 5641, NULL, '1.0000', '20.3700', '20.3700', '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 (95291, '2022-06-26', 7967, 89915, 5641, 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 (95292, '2022-06-26', 9685, 89916, 5641, NULL, '1.0000', '34.6600', '34.6600', '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 (95293, '2022-06-26', 9695, 89917, 5641, NULL, '1.0000', '4.5000', '4.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 (95294, '2022-06-26', 8429, 89918, 5641, NULL, '1.0000', '9.3000', '9.3000', '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 (95295, '2022-06-26', 7730, 89919, 5641, NULL, '6.0000', '0.1000', '0.1000', '0.2000', '0.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 (95296, '2022-06-26', 7693, 89920, 5641, NULL, '1.0000', '4.0900', '4.0900', '5.4000', '5.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 (95297, '2022-06-26', 8710, 89921, 5641, NULL, '1.0000', '10.9000', '10.9000', '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 (95298, '2022-06-26', 9834, 89922, 5641, NULL, '1.0000', '1.4500', '1.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 (95299, '2022-06-26', 8186, 89923, 5641, NULL, '2.0000', '1.0800', '1.0800', '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 (95300, '2022-06-26', 2315, 89924, 5641, 2735, '-507.0000', '0.3300', '0.3300', '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 (95301, '2022-06-26', 2315, 89924, 5641, NULL, '509.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-509.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95302, '2022-06-26', 1856, 89925, 5641, NULL, '1.0000', '4.2500', '4.2500', '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 (95303, '2022-06-26', 8771, 89926, 5641, NULL, '1.0000', '4.5000', '4.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 (95304, '2022-06-26', 9609, 89927, 5641, NULL, '1.0000', '6.4000', '6.4000', '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 (95305, '2022-06-26', 1504, 89928, 5641, NULL, '10.0000', '1.5000', '1.5000', '2.8000', '2.8000', '-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 (95306, '2022-06-26', 7853, 89929, 5641, NULL, '1.0000', '13.0000', '13.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 (95307, '2022-06-26', 7848, 89930, 5641, NULL, '1.0000', '1.3500', '1.3500', '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 (95308, '2022-06-26', 1529, 89931, 5642, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95309, '2022-06-26', 2228, 89932, 5642, 57109, '1.0000', '32.0000', '32.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95310, '2022-06-26', 2416, 89933, 5642, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95311, '2022-06-26', 1501, 89934, 5642, NULL, '1.0000', '0.6299', '0.6299', '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 (95312, '2022-06-26', 1499, 89935, 5642, 57679, '7.0000', '0.4542', '0.4542', '0.7000', '0.7000', '37.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95313, '2022-06-26', 2237, 89936, 5642, 57669, '2.0000', '15.5072', '15.5072', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95314, '2022-06-26', 2277, 89937, 5642, NULL, '2.0000', '0.9399', '0.9399', '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 (95315, '2022-06-26', 7322, 89938, 5642, 55599, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95316, '2022-06-26', 7482, 89939, 5642, NULL, '1.0000', '2.5019', '2.5019', '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 (95317, '2022-06-26', 1339, 89940, 5642, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95318, '2022-06-26', 1672, 89941, 5642, 57792, '10.0000', '4.1808', '4.1808', '5.5000', '5.5000', '40.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95319, '2022-06-26', 1686, 89942, 5642, 57683, '1.0000', '33.0000', '33.0000', '46.5000', '46.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95320, '2022-06-26', 1521, 89943, 5642, NULL, '1.0000', '58.1500', '58.1500', '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 (95321, '2022-06-26', 9808, 89944, 5642, 51699, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95322, '2022-06-26', 9151, 89945, 5642, NULL, '1.0000', '23.5000', '23.5000', '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 (95323, '2022-06-26', 8079, 89946, 5642, 57687, '1.0000', '16.6100', '16.6100', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95324, '2022-06-26', 2342, 89947, 5642, 54886, '4.0000', '2.2091', '2.2091', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95325, '2022-06-26', 2400, 89948, 5642, 48994, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95326, '2022-06-26', 9736, 89949, 5642, NULL, '1.0000', '5.0278', '5.0278', '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 (95327, '2022-06-26', 1425, 89950, 5642, NULL, '1.0000', '-104.0456', '-104.0456', '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 (95328, '2022-06-26', 7514, 89951, 5642, NULL, '1.0000', '2.2500', '2.2500', '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 (95329, '2022-06-26', 1650, 89952, 5642, 48665, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95330, '2022-06-26', 2277, 89953, 5642, NULL, '1.0000', '0.9399', '0.9399', '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 (95331, '2022-06-26', 2237, 89954, 5642, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95332, '2022-06-26', 1603, 89955, 5642, 13738, '1.0000', '55.1600', '55.1600', '96.0000', '96.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95333, '2022-06-26', 2277, 89956, 5642, NULL, '1.0000', '0.9399', '0.9399', '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 (95334, '2022-06-26', 1499, 89957, 5642, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95335, '2022-06-26', 2754, 89958, 5642, 18938, '2.0000', '0.0800', '0.0800', '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 (95336, '2022-06-26', 1620, 89959, 5642, 55636, '2.0000', '2.2583', '2.2583', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95337, '2022-06-26', 2085, 89960, 5642, NULL, '2.0000', '3.9526', '3.9526', '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 (95338, '2022-06-26', 9609, 89961, 5642, NULL, '1.0000', '-1.7000', '-1.7000', '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 (95339, '2022-06-26', 9812, 89962, 5642, NULL, '1.0000', '20.0000', '20.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 (95340, '2022-06-26', 2754, 89963, 5642, 18938, '4.0000', '0.0800', '0.0800', '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 (95341, '2022-06-26', 1425, 89964, 5642, NULL, '1.0000', '-104.0456', '-104.0456', '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 (95342, '2022-06-26', 8775, 89965, 5642, 57094, '1.0000', '1.9789', '1.9789', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95343, '2022-06-26', 2315, 89966, 5642, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95344, '2022-06-26', 7514, 89967, 5642, NULL, '1.0000', '2.2500', '2.2500', '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 (95345, '2022-06-26', 2363, 89968, 5642, 57814, '2.0000', '4.9400', '4.9400', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95346, '2022-06-26', 2352, 89969, 5642, NULL, '2.0000', '126.2588', '126.2588', '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 (95347, '2022-06-26', 2079, 89970, 5642, 55542, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95348, '2022-06-26', 8984, 89971, 5642, NULL, '1.0000', '422.2794', '422.2794', '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 (95349, '2022-06-26', 9777, 89972, 5642, NULL, '1.0000', '22.9900', '22.9900', '30.2300', '30.2300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95350, '2022-06-26', 7933, 89973, 5642, NULL, '1.0000', '-0.1222', '-0.1222', '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 (95351, '2022-06-26', 1590, 89974, 5642, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95352, '2022-06-26', 7411, 89975, 5642, NULL, '2.0000', '1.3013', '1.3013', '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 (95353, '2022-06-26', 8746, 89976, 5642, 57097, '1.0000', '3.6242', '3.6242', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95354, '2022-06-26', 2237, 89977, 5642, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95355, '2022-06-26', 1965, 89978, 5643, NULL, '1.0000', '17.2400', '17.2400', '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 (95356, '2022-06-26', 8297, 89979, 5643, NULL, '1.0000', '73.3000', '73.3000', '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 (95357, '2022-06-26', 8596, 89980, 5643, NULL, '1.0000', '39.8982', '39.8982', '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 (95358, '2022-06-26', 7584, 89981, 5643, NULL, '1.0000', '3.8100', '3.8100', '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 (95359, '2022-06-26', 7784, 89982, 5643, NULL, '2.0000', '1.9939', '1.9939', '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 (95360, '2022-06-26', 7708, 89983, 5643, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95361, '2022-06-26', 7674, 89984, 5643, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95362, '2022-06-26', 8243, 89985, 5643, NULL, '2.0000', '1.1400', '1.1400', '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 (95363, '2022-06-26', 8915, 89986, 5643, 57519, '1.0000', '8.7010', '8.7010', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95364, '2022-06-26', 7331, 89987, 5643, 56167, '1.0000', '14.0840', '14.0840', '77.0000', '77.0000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95365, '2022-06-26', 2290, 89988, 5643, NULL, '1.0000', '9.7600', '9.7600', '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 (95366, '2022-06-26', 7652, 89989, 5643, NULL, '5.0000', '-7032.8807', '-7032.8807', '1.6000', '1.6000', '-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 (95367, '2022-06-26', 7859, 89990, 5643, 57172, '1.0000', '13.2900', '13.2900', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95368, '2022-06-26', 9463, 89991, 5643, 56606, '1.0000', '3.7096', '3.7096', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95369, '2022-06-26', 2315, 89992, 5643, 57597, '3.0000', '0.7562', '0.7562', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95370, '2022-06-26', 2284, 89993, 5643, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95371, '2022-06-26', 8746, 89994, 5643, 57512, '1.0000', '3.2874', '3.2874', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95372, '2022-06-26', 8308, 89995, 5643, NULL, '1.0000', '60.7672', '60.7672', '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 (95373, '2022-06-26', 9271, 89996, 5643, 56566, '1.0000', '1.8173', '1.8173', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95374, '2022-06-26', 7385, 89997, 5643, 57604, '1.0000', '7.8936', '7.8936', '4.0000', '4.0000', '48.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95375, '2022-06-26', 7852, 89998, 5643, NULL, '1.0000', '59.3041', '59.3041', '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 (95376, '2022-06-26', 2699, 89999, 5643, 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 (95377, '2022-06-26', 8322, 90000, 5643, NULL, '1.0000', '7.0000', '7.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 (95378, '2022-06-26', 7753, 90001, 5643, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95379, '2022-06-26', 8039, 90002, 5643, 55964, '1.0000', '16.8443', '16.8443', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95380, '2022-06-26', 7560, 90003, 5643, 57591, '1.0000', '41.1293', '41.1293', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95381, '2022-06-26', 8501, 90004, 5643, NULL, '1.0000', '47.0000', '47.0000', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95382, '2022-06-26', 2891, 90005, 5643, 56485, '1.0000', '9.4493', '9.4493', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95383, '2022-06-26', 8177, 90006, 5643, 57518, '1.0000', '15.5370', '15.5370', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95384, '2022-06-26', 7672, 90007, 5643, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95385, '2022-06-26', 8360, 90008, 5643, 56589, '1.0000', '3.2288', '3.2288', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95386, '2022-06-26', 8336, 90009, 5643, 56649, '1.0000', '2.9000', '2.9000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95387, '2022-06-26', 8769, 90010, 5643, 57523, '2.0000', '5.0676', '5.0676', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95388, '2022-06-26', 7667, 90011, 5643, 43447, '1.0000', '8.6120', '8.6120', '9.0000', '9.0000', '16.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95389, '2022-06-26', 1916, 90012, 5643, 57386, '1.0000', '10.5269', '10.5269', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95390, '2022-06-26', 7316, 90013, 5643, 57459, '10.0000', '0.9231', '0.9231', '1.3000', '1.3000', '40.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95391, '2022-06-26', 7730, 90014, 5643, 57543, '5.0000', '0.1000', '0.1000', '0.2000', '0.2000', '118.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95392, '2022-06-26', 7593, 90015, 5643, 54502, '1.0000', '2.8297', '2.8297', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95393, '2022-06-26', 2315, 90016, 5643, 57597, '2.0000', '0.7562', '0.7562', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95394, '2022-06-26', 8328, 90017, 5643, NULL, '1.0000', '6.5306', '6.5306', '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 (95395, '2022-06-26', 7482, 90018, 5643, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95396, '2022-06-26', 2242, 90019, 5643, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '126.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95397, '2022-06-26', 8878, 90020, 5644, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95398, '2022-06-26', 2295, 90021, 5644, NULL, '2.0000', '-2.3086', '-2.3086', '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 (95399, '2022-06-26', 8743, 90022, 5644, NULL, '1.0000', '9.6250', '9.6250', '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 (95400, '2022-06-26', 8772, 90023, 5644, 57516, '1.0000', '15.1595', '15.1595', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95401, '2022-06-26', 8745, 90024, 5644, 57514, '1.0000', '11.9707', '11.9707', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95402, '2022-06-26', 9469, 90025, 5644, 57520, '2.0000', '1.5529', '1.5529', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95403, '2022-06-26', 8739, 90026, 5644, 56479, '1.0000', '12.5156', '12.5156', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95404, '2022-06-26', 7672, 90027, 5644, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95405, '2022-06-26', 8669, 90028, 5644, 47954, '1.0000', '66.6000', '66.6000', '47.5000', '47.5000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95406, '2022-06-26', 9894, 90029, 5644, 56574, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95407, '2022-06-26', 9797, 90030, 5644, 50292, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95408, '2022-06-26', 8155, 90031, 5644, NULL, '1.0000', '65.0000', '65.0000', '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 (95409, '2022-06-26', 2289, 90032, 5644, NULL, '1.0000', '2.5688', '2.5688', '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 (95410, '2022-06-26', 1760, 90033, 5644, 57610, '1.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95411, '2022-06-26', 7730, 90034, 5644, 57543, '10.0000', '0.1000', '0.1000', '0.2000', '0.2000', '108.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95412, '2022-06-26', 7859, 90035, 5644, 57172, '1.0000', '13.2900', '13.2900', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95413, '2022-06-26', 9720, 90036, 5644, NULL, '1.0000', '10.6000', '10.6000', '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 (95414, '2022-06-26', 7559, 90037, 5644, 55144, '2.0000', '16.0369', '16.0369', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95415, '2022-06-26', 9089, 90038, 5645, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95416, '2022-06-26', 1621, 90039, 5645, 57986, '1.0000', '35.3870', '35.3870', '8.8000', '8.8000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95417, '2022-06-26', 9794, 90040, 5645, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '61.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95418, '2022-06-26', 2315, 90041, 5645, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (95419, '2022-06-26', 1863, 90042, 5645, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95420, '2022-06-26', 1863, 90043, 5645, 56917, '2.0000', '1.3484', '1.3484', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95421, '2022-06-26', 1665, 90044, 5645, 57952, '1.0000', '1.1816', '1.1816', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95422, '2022-06-26', 2821, 90045, 5645, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95423, '2022-06-26', 1602, 90046, 5645, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95424, '2022-06-26', 1863, 90047, 5645, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95425, '2022-06-26', 1383, 90048, 5645, 56883, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95426, '2022-06-26', 9747, 90049, 5645, 49848, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95427, '2022-06-26', 7917, 90050, 5645, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95428, '2022-06-26', 1807, 90051, 5645, NULL, '4.0000', '5.3000', '5.3000', '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 (95429, '2022-06-26', 2289, 90052, 5645, 56722, '2.0000', '0.2692', '0.2692', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95430, '2022-06-26', 2100, 90053, 5645, 44561, '1.0000', '1.7307', '1.7307', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95431, '2022-06-26', 2169, 90054, 5645, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95432, '2022-06-26', 7713, 90055, 5645, NULL, '3.0000', '0.3800', '0.3800', '0.6000', '0.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 (95433, '2022-06-26', 7917, 90056, 5645, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95434, '2022-06-26', 1856, 90057, 5645, 57957, '1.0000', '5.1154', '5.1154', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95435, '2022-06-26', 9794, 90058, 5645, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '61.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95436, '2022-06-26', 2682, 90059, 5645, 54587, '1.0000', '18.1500', '18.1500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95437, '2022-06-26', 2821, 90060, 5645, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95438, '2022-06-26', 9940, 90061, 5645, 57894, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95439, '2022-06-26', 8773, 90062, 5645, NULL, '1.0000', '-3.5797', '-3.5797', '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 (95440, '2022-06-26', 8710, 90063, 5645, NULL, '1.0000', '10.9000', '10.9000', '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 (95441, '2022-06-26', 1602, 90064, 5645, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95442, '2022-06-26', 1863, 90065, 5646, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95443, '2022-06-26', 2277, 90066, 5646, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '124.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95444, '2022-06-26', 2738, 90067, 5646, 56938, '1.0000', '8.9533', '8.9533', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95445, '2022-06-26', 7482, 90068, 5646, NULL, '1.0000', '3.0500', '3.0500', '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 (95446, '2022-06-26', 1388, 90069, 5646, 55516, '1.0000', '5.8542', '5.8542', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95447, '2022-06-26', 2085, 90070, 5646, 54602, '8.0000', '8.7836', '8.7836', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95448, '2022-06-26', 2085, 90070, 5646, 49132, '2.0000', '8.7836', '8.7836', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95449, '2022-06-26', 1342, 90071, 5646, 57966, '1.0000', '9.5389', '9.5389', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95450, '2022-06-26', 2068, 90072, 5646, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95451, '2022-06-26', 1501, 90073, 5646, 55884, '1.0000', '108.1974', '108.1974', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95452, '2022-06-26', 2758, 90074, 5646, 49542, '1.0000', '1.2400', '1.2400', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95453, '2022-06-26', 2020, 90075, 5646, 57949, '1.0000', '6.2316', '6.2316', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95454, '2022-06-26', 1349, 90076, 5646, 56214, '1.0000', '34.7034', '34.7034', '61.0000', '61.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95455, '2022-06-26', 7364, 90077, 5646, NULL, '2.0000', '5.5300', '5.5300', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95456, '2022-06-26', 9551, 90078, 5646, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95457, '2022-06-26', 1863, 90079, 5646, 56917, '2.0000', '1.3484', '1.3484', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95458, '2022-06-26', 2263, 90080, 5646, 56910, '1.0000', '5.2300', '5.2300', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95459, '2022-06-26', 1665, 90081, 5646, 57952, '1.0000', '1.1816', '1.1816', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95460, '2022-06-26', 2169, 90082, 5646, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95461, '2022-06-26', 2411, 90083, 5646, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95462, '2022-06-26', 2302, 90084, 5646, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95463, '2022-06-26', 9245, 90085, 5647, NULL, '1.0000', '7.0000', '7.0000', '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 (95464, '2022-06-26', 7952, 90086, 5647, NULL, '1.0000', '1.4000', '1.4000', '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 (95465, '2022-06-26', 9809, 90087, 5648, 57163, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95466, '2022-06-26', 1837, 90088, 5648, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95467, '2022-06-26', 9821, 90089, 5649, NULL, '1.0000', '1.4500', '1.4500', '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 (95468, '2022-06-26', 8982, 90090, 5649, NULL, '1.0000', '10.0000', '10.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 (95469, '2022-06-26', 9794, 90091, 5649, NULL, '1.0000', '1.0800', '1.0800', '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 (95470, '2022-06-26', 8393, 90092, 5649, 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 (95471, '2022-06-26', 7411, 90093, 5649, NULL, '2.0000', '1.3500', '1.3500', '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 (95472, '2022-06-26', 9831, 90094, 5649, NULL, '1.0000', '1.5600', '1.5600', '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 (95473, '2022-06-26', 9740, 90095, 5649, NULL, '1.0000', '0.6600', '0.6600', '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 (95474, '2022-06-26', 9736, 90096, 5649, NULL, '1.0000', '3.9100', '3.9100', '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 (95475, '2022-06-26', 7514, 90097, 5649, NULL, '1.0000', '2.2500', '2.2500', '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 (95476, '2022-06-26', 2242, 90098, 5649, 3059, '-72.0000', '0.4800', '0.4800', '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 (95477, '2022-06-26', 2242, 90098, 5649, NULL, '75.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95478, '2022-06-26', 2169, 90099, 5649, 10737, '-167.0000', '3.8397', '3.8397', '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 (95479, '2022-06-26', 2169, 90099, 5649, NULL, '168.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-168.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95480, '2022-06-26', 7411, 90100, 5649, NULL, '1.0000', '1.3500', '1.3500', '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 (95481, '2022-06-26', 7976, 90101, 5649, NULL, '1.0000', '20.6900', '20.6900', '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 (95482, '2022-06-26', 1845, 90102, 5649, 6222, '-27.0000', '19.5000', '19.5000', '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 (95483, '2022-06-26', 1845, 90102, 5649, NULL, '28.0000', '19.5000', '19.5000', '30.5000', '30.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 (95484, '2022-06-26', 9832, 90103, 5649, NULL, '3.0000', '1.5600', '1.5600', '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 (95485, '2022-06-26', 2068, 90104, 5649, 5568, '-29.0000', '13.1000', '13.1000', '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 (95486, '2022-06-26', 2068, 90104, 5649, NULL, '30.0000', '13.1000', '13.1000', '20.0000', '20.0000', '-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 (95487, '2022-06-26', 2061, 90105, 5649, 2164, '-12.0000', '10.9800', '10.9800', '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 (95488, '2022-06-26', 2061, 90105, 5649, NULL, '13.0000', '10.9800', '10.9800', '17.5000', '17.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 (95489, '2022-06-26', 2821, 90106, 5649, 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 (95490, '2022-06-26', 1311, 90107, 5649, 5437, '-34.0000', '79.3908', '79.3908', '0.6000', '0.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 (95491, '2022-06-26', 1311, 90107, 5649, NULL, '40.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (95492, '2022-06-27', 7917, 90108, 5650, NULL, '1.0000', '5.0000', '5.0000', '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 (95493, '2022-06-27', 1736, 90109, 5650, 57069, '1.0000', '92.8200', '92.8200', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95494, '2022-06-27', 2435, 90110, 5650, 57108, '1.0000', '7.9565', '7.9565', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95495, '2022-06-27', 2010, 90111, 5650, 57915, '1.0000', '1.2757', '1.2757', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95496, '2022-06-27', 1529, 90112, 5650, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95497, '2022-06-27', 7917, 90113, 5650, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95498, '2022-06-27', 1863, 90114, 5650, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95499, '2022-06-27', 1580, 90115, 5650, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95500, '2022-06-27', 1637, 90116, 5650, 57715, '1.0000', '238.7168', '238.7168', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95501, '2022-06-27', 2916, 90117, 5650, NULL, '1.0000', '1412.8179', '1412.8179', '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 (95502, '2022-06-27', 2169, 90118, 5650, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95503, '2022-06-27', 9864, 90119, 5650, 55579, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95504, '2022-06-27', 2169, 90120, 5650, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95505, '2022-06-27', 1763, 90121, 5650, 55556, '1.0000', '4.6631', '4.6631', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95506, '2022-06-27', 1822, 90122, 5650, 56458, '2.0000', '2.7534', '2.7534', '4.0000', '4.0000', '58.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95507, '2022-06-27', 1313, 90123, 5650, 55923, '2.0000', '0.8043', '0.8043', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95508, '2022-06-27', 2434, 90124, 5650, 54826, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95509, '2022-06-27', 1676, 90125, 5650, 55540, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95510, '2022-06-27', 2491, 90126, 5650, NULL, '1.0000', '13.0000', '13.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 (95511, '2022-06-27', 2131, 90127, 5650, 57090, '1.0000', '12.2750', '12.2750', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95512, '2022-06-27', 2039, 90128, 5650, 49915, '1.0000', '9.0000', '9.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 (95513, '2022-06-27', 9469, 90129, 5650, NULL, '1.0000', '4.3167', '4.3167', '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 (95514, '2022-06-27', 1425, 90130, 5650, NULL, '1.0000', '-104.0456', '-104.0456', '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 (95515, '2022-06-27', 7886, 90131, 5650, NULL, '1.0000', '14.5000', '14.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 (95516, '2022-06-27', 1643, 90132, 5650, 56432, '1.0000', '41.6400', '41.6400', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95517, '2022-06-27', 2169, 90133, 5650, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95518, '2022-06-27', 7482, 90134, 5650, NULL, '1.0000', '2.5019', '2.5019', '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 (95519, '2022-06-27', 1432, 90135, 5650, 55707, '1.0000', '12.2101', '12.2101', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95520, '2022-06-27', 2169, 90136, 5650, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95521, '2022-06-27', 8740, 90137, 5650, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95522, '2022-06-27', 2416, 90138, 5650, 57920, '1.0000', '1.3377', '1.3377', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95523, '2022-06-27', 8746, 90139, 5650, 57097, '1.0000', '3.6242', '3.6242', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95524, '2022-06-27', 1528, 90140, 5650, NULL, '2.0000', '323.4803', '323.4803', '8.5000', '8.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 (95525, '2022-06-27', 2315, 90141, 5650, 54938, '5.0000', '0.7701', '0.7701', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95526, '2022-06-27', 1702, 90142, 5651, NULL, '1.0000', '10.8300', '10.8300', '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 (95527, '2022-06-27', 1711, 90143, 5651, 53679, '1.0000', '9.3308', '9.3308', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95528, '2022-06-27', 9856, 90144, 5651, 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 (95529, '2022-06-27', 1620, 90145, 5651, 55636, '2.0000', '2.2583', '2.2583', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95530, '2022-06-27', 2169, 90146, 5651, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95531, '2022-06-27', 9828, 90147, 5651, NULL, '2.0000', '2.9100', '2.9100', '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 (95532, '2022-06-27', 2315, 90148, 5652, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95533, '2022-06-27', 2277, 90149, 5652, NULL, '1.0000', '0.9399', '0.9399', '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 (95534, '2022-06-27', 7743, 90150, 5653, NULL, '3.0000', '1.3100', '1.3100', '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 (95535, '2022-06-27', 8135, 90151, 5653, NULL, '1.0000', '5.4500', '5.4500', '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 (95536, '2022-06-27', 8052, 90152, 5653, NULL, '1.0000', '29.0000', '29.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 (95537, '2022-06-27', 7715, 90153, 5653, NULL, '1.0000', '1.8900', '1.8900', '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 (95538, '2022-06-27', 7666, 90154, 5653, NULL, '1.0000', '3.6000', '3.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 (95539, '2022-06-27', 7411, 90155, 5653, NULL, '1.0000', '1.3500', '1.3500', '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 (95540, '2022-06-27', 9716, 90156, 5653, NULL, '1.0000', '4.4000', '4.4000', '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 (95541, '2022-06-27', 1935, 90157, 5653, 5586, '-155.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 (95542, '2022-06-27', 1935, 90157, 5653, NULL, '157.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-157.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95543, '2022-06-27', 8063, 90158, 5653, NULL, '1.0000', '1.6000', '1.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 (95544, '2022-06-27', 8135, 90159, 5653, NULL, '1.0000', '5.4500', '5.4500', '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 (95545, '2022-06-27', 7317, 90160, 5653, NULL, '1.0000', '19.5500', '19.5500', '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 (95546, '2022-06-27', 9092, 90161, 5653, NULL, '1.0000', '5.2900', '5.2900', '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 (95547, '2022-06-27', 8328, 90162, 5653, 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 (95548, '2022-06-27', 7354, 90163, 5653, NULL, '2.0000', '0.3700', '0.3700', '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 (95549, '2022-06-27', 7558, 90164, 5653, NULL, '1.0000', '1.9700', '1.9700', '3.7000', '3.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 (95550, '2022-06-27', 1935, 90165, 5653, 5586, '-155.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 (95551, '2022-06-27', 1935, 90165, 5653, NULL, '157.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-157.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95552, '2022-06-27', 7674, 90166, 5653, NULL, '1.0000', '1.3000', '1.3000', '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 (95553, '2022-06-27', 7967, 90167, 5653, 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 (95554, '2022-06-27', 9957, 90168, 5653, NULL, '1.0000', '8.8000', '8.8000', '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 (95555, '2022-06-27', 7523, 90169, 5653, NULL, '1.0000', '9.7500', '9.7500', '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 (95556, '2022-06-27', 7411, 90170, 5653, NULL, '5.0000', '1.3500', '1.3500', '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 (95557, '2022-06-27', 7623, 90171, 5653, NULL, '1.0000', '47.0000', '47.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 (95558, '2022-06-27', 9491, 90172, 5653, NULL, '1.0000', '14.5000', '14.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 (95559, '2022-06-27', 8722, 90173, 5653, 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 (95560, '2022-06-27', 9914, 90174, 5653, NULL, '1.0000', '46.9900', '46.9900', '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 (95561, '2022-06-27', 7743, 90175, 5653, NULL, '1.0000', '1.3100', '1.3100', '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 (95562, '2022-06-27', 8918, 90176, 5653, NULL, '1.0000', '1.0400', '1.0400', '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 (95563, '2022-06-27', 2289, 90177, 5653, 2949, '-210.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 (95564, '2022-06-27', 2289, 90177, 5653, NULL, '218.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-218.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95565, '2022-06-27', 1827, 90178, 5653, NULL, '7.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-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 (95566, '2022-06-27', 1935, 90179, 5654, 5586, '-159.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 (95567, '2022-06-27', 1935, 90179, 5654, NULL, '161.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-161.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95568, '2022-06-27', 2102, 90180, 5654, 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 (95569, '2022-06-27', 2381, 90181, 5654, 11263, '-7.0000', '12.1900', '12.1900', '19.2700', '19.2700', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95570, '2022-06-27', 2381, 90181, 5654, NULL, '8.0000', '12.1900', '12.1900', '19.2700', '19.2700', '-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 (95571, '2022-06-27', 7411, 90182, 5654, NULL, '2.0000', '1.3500', '1.3500', '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 (95572, '2022-06-27', 2858, 90183, 5654, 17772, '-99.0000', '1.0000', '1.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 (95573, '2022-06-27', 2858, 90183, 5654, NULL, '100.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-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 (95574, '2022-06-27', 1530, 90184, 5654, 7391, '-6.0000', '28.7012', '28.7012', '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 (95575, '2022-06-27', 1530, 90184, 5654, NULL, '7.0000', '28.7012', '28.7012', '40.0000', '40.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 (95576, '2022-06-27', 1407, 90185, 5654, 22293, '1.0000', '17.1680', '17.1680', '29.0000', '29.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 (95577, '2022-06-27', 2327, 90186, 5654, 5083, '-42.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 (95578, '2022-06-27', 2327, 90186, 5654, NULL, '43.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-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 (95579, '2022-06-27', 1347, 90187, 5654, 243, '2.0000', '3.4000', '3.4000', '6.0000', '6.0000', '29.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95580, '2022-06-27', 2379, 90188, 5654, 4032, '-69.0000', '1.5900', '1.5900', '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 (95581, '2022-06-27', 2379, 90188, 5654, NULL, '70.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95582, '2022-06-27', 1432, 90189, 5654, NULL, '1.0000', '8.1574', '8.1574', '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 (95583, '2022-06-27', 7411, 90190, 5654, NULL, '1.0000', '1.3500', '1.3500', '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 (95584, '2022-06-27', 1651, 90191, 5654, 3222, '-66.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95585, '2022-06-27', 1651, 90191, 5654, NULL, '67.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95586, '2022-06-27', 1876, 90192, 5654, 6312, '-1.0000', '0.9126', '0.9126', '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 (95587, '2022-06-27', 1876, 90192, 5654, NULL, '2.0000', '0.9126', '0.9126', '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 (95588, '2022-06-27', 7411, 90193, 5654, NULL, '1.0000', '1.3500', '1.3500', '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 (95589, '2022-06-27', 2226, 90194, 5654, 1701, '-1.0000', '14.0000', '14.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 (95590, '2022-06-27', 2226, 90194, 5654, NULL, '2.0000', '14.0000', '14.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 (95591, '2022-06-27', 2614, 90195, 5654, 9739, '-3.0000', '52.5100', '52.5100', '76.0000', '76.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95592, '2022-06-27', 2614, 90195, 5654, NULL, '4.0000', '52.5100', '52.5100', '76.0000', '76.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 (95593, '2022-06-27', 7759, 90196, 5654, NULL, '1.0000', '19.5000', '19.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 (95594, '2022-06-27', 7411, 90197, 5654, NULL, '2.0000', '1.3500', '1.3500', '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 (95595, '2022-06-27', 1690, 90198, 5654, NULL, '1.0000', '7.1466', '7.1466', '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 (95596, '2022-06-27', 3058, 90199, 5654, NULL, '1.0000', '4.3000', '4.3000', '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 (95597, '2022-06-27', 2008, 90200, 5654, 6366, '-2.0000', '10.0000', '10.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95598, '2022-06-27', 2008, 90200, 5654, NULL, '3.0000', '10.0000', '10.0000', '14.0000', '14.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 (95599, '2022-06-27', 7411, 90201, 5654, NULL, '1.0000', '1.3500', '1.3500', '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 (95600, '2022-06-27', 2386, 90202, 5654, NULL, '1.0000', '2.0100', '2.0100', '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 (95601, '2022-06-27', 9695, 90203, 5654, NULL, '1.0000', '4.5000', '4.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 (95602, '2022-06-27', 1822, 90204, 5654, 8225, '-202.0000', '2.4000', '2.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 (95603, '2022-06-27', 1822, 90204, 5654, NULL, '204.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-204.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95604, '2022-06-27', 7411, 90205, 5654, NULL, '1.0000', '1.3500', '1.3500', '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 (95605, '2022-06-27', 1669, 90206, 5654, 11165, '-19.0000', '6.7000', '6.7000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95606, '2022-06-27', 1669, 90206, 5654, NULL, '26.0000', '6.7000', '6.7000', '14.0000', '14.0000', '-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 (95607, '2022-06-27', 1785, 90207, 5654, 4903, '-8.0000', '4.8380', '4.8380', '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 (95608, '2022-06-27', 1785, 90207, 5654, NULL, '9.0000', '4.8380', '4.8380', '24.0000', '24.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 (95609, '2022-06-27', 1822, 90208, 5655, 55874, '5.0000', '2.4738', '2.4738', '4.0000', '4.0000', '55.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95610, '2022-06-27', 2221, 90209, 5655, 56927, '1.0000', '16.8057', '16.8057', '26.0000', '26.0000', '10.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95611, '2022-06-27', 1812, 90210, 5655, 55784, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95612, '2022-06-27', 7739, 90211, 5655, 49145, '1.0000', '2.7500', '2.7500', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95613, '2022-06-27', 1702, 90212, 5655, 56723, '1.0000', '24.5154', '24.5154', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95614, '2022-06-27', 9827, 90213, 5655, 57965, '1.0000', '16.7251', '16.7251', '22.0000', '22.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95615, '2022-06-27', 1519, 90214, 5655, 55886, '1.0000', '3.3940', '3.3940', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95616, '2022-06-27', 2379, 90215, 5655, 56971, '2.0000', '1.9610', '1.9610', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95617, '2022-06-27', 1347, 90216, 5655, 56984, '6.0000', '-9.0535', '-9.0535', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95618, '2022-06-27', 2068, 90217, 5655, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95619, '2022-06-27', 1984, 90218, 5655, 54333, '1.0000', '2.3473', '2.3473', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95620, '2022-06-27', 7608, 90219, 5655, NULL, '1.0000', '6.9800', '6.9800', '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 (95621, '2022-06-27', 1837, 90220, 5655, 56224, '3.0000', '0.5767', '0.5767', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95622, '2022-06-27', 1702, 90221, 5655, 56723, '1.0000', '24.5154', '24.5154', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95623, '2022-06-27', 9785, 90222, 5655, 55765, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95624, '2022-06-27', 9726, 90223, 5655, 46082, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95625, '2022-06-27', 1935, 90224, 5655, 57988, '1.0000', '1.3001', '1.3001', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95626, '2022-06-27', 1310, 90225, 5655, 57989, '8.0000', '0.4060', '0.4060', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95627, '2022-06-27', 1736, 90226, 5655, 56930, '2.0000', '34.9151', '34.9151', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95628, '2022-06-27', 9815, 90227, 5655, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '21.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95629, '2022-06-27', 7591, 90228, 5655, 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 (95630, '2022-06-27', 2169, 90229, 5655, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95631, '2022-06-27', 2068, 90230, 5655, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95632, '2022-06-27', 9776, 90231, 5655, 56223, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95633, '2022-06-27', 2302, 90232, 5655, 55484, '3.0000', '5.1961', '5.1961', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95634, '2022-06-27', 1314, 90233, 5655, 21584, '1.0000', '1.2000', '1.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 (95635, '2022-06-27', 1863, 90234, 5655, 56917, '2.0000', '1.3484', '1.3484', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95636, '2022-06-27', 1812, 90235, 5655, 55784, '3.0000', '8.3716', '8.3716', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95637, '2022-06-27', 1812, 90236, 5656, 55784, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95638, '2022-06-27', 9342, 90237, 5656, NULL, '1.0000', '52.0200', '52.0200', '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 (95639, '2022-06-27', 9742, 90238, 5657, 57958, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95640, '2022-06-27', 1432, 90239, 5658, 55707, '1.0000', '12.2101', '12.2101', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95641, '2022-06-27', 1504, 90240, 5658, 56423, '1.0000', '2.0162', '2.0162', '2.8000', '2.8000', '39.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95642, '2022-06-27', 2384, 90241, 5658, NULL, '3.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-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 (95643, '2022-06-27', 2315, 90242, 5658, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95644, '2022-06-27', 2887, 90243, 5658, 57756, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95645, '2022-06-27', 2916, 90244, 5658, NULL, '1.0000', '1412.8179', '1412.8179', '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 (95646, '2022-06-27', 2366, 90245, 5658, NULL, '2.0000', '-51.4778', '-51.4778', '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 (95647, '2022-06-27', 8017, 90246, 5658, NULL, '6.0000', '0.6000', '0.6000', '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 (95648, '2022-06-27', 9732, 90247, 5658, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95649, '2022-06-27', 7411, 90248, 5658, NULL, '2.0000', '1.3013', '1.3013', '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 (95650, '2022-06-27', 9754, 90249, 5658, 57794, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95651, '2022-06-27', 2169, 90250, 5658, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95652, '2022-06-27', 2352, 90251, 5658, NULL, '4.0000', '126.2588', '126.2588', '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 (95653, '2022-06-27', 9695, 90252, 5658, 58072, '2.0000', '5.3049', '5.3049', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95654, '2022-06-27', 2169, 90253, 5658, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95655, '2022-06-27', 1621, 90254, 5658, 57751, '1.0000', '18.8366', '18.8366', '8.8000', '8.8000', '20.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95656, '2022-06-27', 2169, 90255, 5658, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95657, '2022-06-27', 2169, 90256, 5658, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95658, '2022-06-27', 8699, 90257, 5658, NULL, '1.0000', '6.3800', '6.3800', '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 (95659, '2022-06-27', 9959, 90258, 5658, 57700, '2.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95660, '2022-06-27', 2283, 90259, 5658, 57674, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95661, '2022-06-27', 2169, 90260, 5658, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95662, '2022-06-27', 8677, 90261, 5658, NULL, '2.0000', '496.2705', '496.2705', '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 (95663, '2022-06-27', 1912, 90262, 5658, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95664, '2022-06-27', 7953, 90263, 5658, NULL, '1.0000', '-0.5345', '-0.5345', '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 (95665, '2022-06-27', 9732, 90264, 5658, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95666, '2022-06-27', 2237, 90265, 5658, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95667, '2022-06-27', 2289, 90266, 5658, 56470, '4.0000', '0.3611', '0.3611', '0.5000', '0.5000', '22.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95668, '2022-06-27', 1342, 90267, 5658, 57688, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95669, '2022-06-27', 2293, 90268, 5658, NULL, '4.0000', '-17.4320', '-17.4320', '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 (95670, '2022-06-27', 9794, 90269, 5658, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '95.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95671, '2022-06-27', 2379, 90270, 5658, NULL, '1.0000', '-5.7628', '-5.7628', '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 (95672, '2022-06-27', 2386, 90271, 5658, 56437, '1.0000', '2.8183', '2.8183', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95673, '2022-06-27', 1867, 90272, 5658, 57762, '2.0000', '9.3173', '9.3173', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95674, '2022-06-27', 2068, 90273, 5658, 55704, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95675, '2022-06-27', 2416, 90274, 5658, 58066, '1.0000', '1.3371', '1.3371', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95676, '2022-06-27', 2556, 90275, 5658, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95677, '2022-06-27', 1521, 90276, 5658, NULL, '1.0000', '58.1500', '58.1500', '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 (95678, '2022-06-27', 2293, 90277, 5658, NULL, '3.0000', '-17.4320', '-17.4320', '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 (95679, '2022-06-27', 1785, 90278, 5658, 57752, '1.0000', '17.1845', '17.1845', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95680, '2022-06-27', 2221, 90279, 5658, NULL, '1.0000', '2.3805', '2.3805', '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 (95681, '2022-06-27', 9609, 90280, 5658, NULL, '1.0000', '-1.7000', '-1.7000', '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 (95682, '2022-06-27', 1715, 90281, 5658, NULL, '1.0000', '9.5000', '9.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 (95683, '2022-06-27', 1470, 90282, 5658, 57671, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95684, '2022-06-27', 7411, 90283, 5658, NULL, '1.0000', '1.3013', '1.3013', '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 (95685, '2022-06-27', 2293, 90284, 5658, NULL, '3.0000', '-17.4320', '-17.4320', '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 (95686, '2022-06-27', 2315, 90285, 5658, 54938, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95687, '2022-06-27', 7564, 90286, 5658, NULL, '1.0000', '0.6400', '0.6400', '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 (95688, '2022-06-27', 2068, 90287, 5658, 55704, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95689, '2022-06-27', 1840, 90288, 5658, NULL, '1.0000', '0.2400', '0.2400', '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 (95690, '2022-06-27', 1841, 90289, 5658, 55655, '1.0000', '0.7630', '0.7630', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95691, '2022-06-27', 2289, 90290, 5658, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95692, '2022-06-27', 1571, 90291, 5658, NULL, '1.0000', '308.7500', '308.7500', '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 (95693, '2022-06-27', 1521, 90292, 5658, NULL, '1.0000', '58.1500', '58.1500', '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 (95694, '2022-06-27', 9626, 90293, 5658, 40340, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95695, '2022-06-27', 1339, 90294, 5658, 51940, '1.0000', '2.2232', '2.2232', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95696, '2022-06-27', 1602, 90295, 5658, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95697, '2022-06-27', 1841, 90296, 5658, 55655, '1.0000', '0.7630', '0.7630', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95698, '2022-06-27', 1840, 90297, 5658, NULL, '1.0000', '0.2400', '0.2400', '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 (95699, '2022-06-27', 1748, 90298, 5658, NULL, '1.0000', '0.3200', '0.3200', '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 (95700, '2022-06-27', 2289, 90299, 5658, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95701, '2022-06-27', 8787, 90300, 5658, NULL, '1.0000', '5.9300', '5.9300', '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 (95702, '2022-06-27', 8775, 90301, 5658, 57094, '1.0000', '1.9789', '1.9789', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95703, '2022-06-27', 2068, 90302, 5658, 55704, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95704, '2022-06-27', 2277, 90303, 5658, NULL, '2.0000', '0.9399', '0.9399', '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 (95705, '2022-06-27', 2132, 90304, 5658, 57091, '1.0000', '28.5000', '28.5000', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95706, '2022-06-27', 7411, 90305, 5658, NULL, '1.0000', '1.3013', '1.3013', '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 (95707, '2022-06-27', 1785, 90306, 5658, 57752, '1.0000', '17.1845', '17.1845', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95708, '2022-06-27', 1855, 90307, 5658, NULL, '1.0000', '1.4615', '1.4615', '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 (95709, '2022-06-27', 7514, 90308, 5658, NULL, '1.0000', '2.2500', '2.2500', '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 (95710, '2022-06-27', 7962, 90309, 5658, NULL, '1.0000', '19.0000', '19.0000', '25.5000', '25.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95711, '2022-06-27', 1912, 90310, 5658, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95712, '2022-06-27', 7385, 90311, 5658, 55960, '2.0000', '3.8645', '3.8645', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95713, '2022-06-27', 1912, 90312, 5658, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95714, '2022-06-27', 2315, 90313, 5658, 54938, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95715, '2022-06-27', 1388, 90314, 5659, 57772, '1.0000', '6.9440', '6.9440', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95716, '2022-06-27', 9834, 90315, 5659, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95717, '2022-06-27', 7482, 90316, 5659, NULL, '2.0000', '2.5019', '2.5019', '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 (95718, '2022-06-27', 1935, 90317, 5659, 57809, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95719, '2022-06-27', 2237, 90318, 5659, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95720, '2022-06-27', 8017, 90319, 5659, NULL, '1.0000', '0.6000', '0.6000', '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 (95721, '2022-06-27', 7933, 90320, 5659, NULL, '1.0000', '-0.1222', '-0.1222', '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 (95722, '2022-06-27', 1912, 90321, 5659, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95723, '2022-06-27', 9452, 90322, 5659, 56852, '1.0000', '57.2819', '57.2819', '66.0000', '66.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95724, '2022-06-27', 7832, 90323, 5659, NULL, '1.0000', '11.0000', '11.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 (95725, '2022-06-27', 8759, 90324, 5659, NULL, '1.0000', '22.7000', '22.7000', '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 (95726, '2022-06-27', 7762, 90325, 5659, NULL, '1.0000', '7.6833', '7.6833', '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 (95727, '2022-06-27', 2169, 90326, 5659, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95728, '2022-06-27', 1760, 90327, 5659, NULL, '3.0000', '1.5900', '1.5900', '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 (95729, '2022-06-27', 9736, 90328, 5660, NULL, '1.0000', '5.0278', '5.0278', '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 (95730, '2022-06-27', 9329, 90329, 5660, NULL, '1.0000', '5.8000', '5.8000', '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 (95731, '2022-06-27', 9775, 90330, 5660, NULL, '1.0000', '9.6292', '9.6292', '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 (95732, '2022-06-27', 2068, 90331, 5661, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95733, '2022-06-27', 2169, 90332, 5661, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95734, '2022-06-27', 1602, 90333, 5661, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95735, '2022-06-27', 2167, 90334, 5661, 57982, '1.0000', '2.4773', '2.4773', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95736, '2022-06-27', 8359, 90335, 5662, 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 (95737, '2022-06-27', 7560, 90336, 5662, NULL, '1.0000', '33.0200', '33.0200', '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 (95738, '2022-06-27', 7473, 90337, 5662, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95739, '2022-06-27', 9503, 90338, 5662, NULL, '1.0000', '20.6000', '20.6000', '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 (95740, '2022-06-27', 1884, 90339, 5662, 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 (95741, '2022-06-27', 1855, 90340, 5662, 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 (95742, '2022-06-27', 1841, 90341, 5662, NULL, '4.0000', '142.5780', '142.5780', '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 (95743, '2022-06-27', 7411, 90342, 5662, NULL, '1.0000', '1.3500', '1.3500', '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 (95744, '2022-06-27', 9088, 90343, 5662, NULL, '1.0000', '15.4000', '15.4000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95745, '2022-06-27', 7641, 90344, 5662, NULL, '2.0000', '1.9000', '1.9000', '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 (95746, '2022-06-27', 2643, 90345, 5662, NULL, '1.0000', '0.8700', '0.8700', '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 (95747, '2022-06-27', 7899, 90346, 5662, NULL, '1.0000', '3.3000', '3.3000', '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 (95748, '2022-06-27', 7522, 90347, 5662, NULL, '1.0000', '9.7000', '9.7000', '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 (95749, '2022-06-27', 7748, 90348, 5662, NULL, '1.0000', '7.3000', '7.3000', '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 (95750, '2022-06-27', 1935, 90349, 5662, 5586, '-161.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 (95751, '2022-06-27', 1935, 90349, 5662, NULL, '162.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-162.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95752, '2022-06-27', 8135, 90350, 5662, NULL, '1.0000', '5.4500', '5.4500', '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 (95753, '2022-06-27', 1837, 90351, 5662, 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 (95754, '2022-06-27', 8677, 90352, 5662, NULL, '3.0000', '1.2800', '1.2800', '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 (95755, '2022-06-27', 8097, 90353, 5662, NULL, '3.0000', '3.4000', '3.4000', '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 (95756, '2022-06-27', 9332, 90354, 5662, NULL, '1.0000', '8.0000', '8.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 (95757, '2022-06-27', 7560, 90355, 5662, NULL, '1.0000', '33.0200', '33.0200', '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 (95758, '2022-06-27', 7558, 90356, 5662, NULL, '4.0000', '1.9700', '1.9700', '3.7000', '3.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 (95759, '2022-06-27', 8925, 90357, 5662, NULL, '1.0000', '2.4000', '2.4000', '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 (95760, '2022-06-27', 2295, 90358, 5662, 2954, '-21.0000', '0.9600', '0.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 (95761, '2022-06-27', 2295, 90358, 5662, NULL, '24.0000', '0.9600', '0.9600', '2.5000', '2.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 (95762, '2022-06-27', 7803, 90359, 5662, NULL, '1.0000', '1.8200', '1.8200', '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 (95763, '2022-06-27', 7697, 90360, 5662, 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 (95764, '2022-06-27', 7411, 90361, 5662, NULL, '1.0000', '1.3500', '1.3500', '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 (95765, '2022-06-27', 7473, 90362, 5662, NULL, '6.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (95766, '2022-06-27', 8038, 90363, 5662, 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 (95767, '2022-06-27', 7636, 90364, 5662, NULL, '4.0000', '2.5000', '2.5000', '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 (95768, '2022-06-27', 9089, 90365, 5662, NULL, '2.0000', '3.8000', '3.8000', '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 (95769, '2022-06-27', 7768, 90366, 5662, NULL, '1.0000', '12.2000', '12.2000', '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 (95770, '2022-06-27', 7587, 90367, 5662, NULL, '1.0000', '6.4400', '6.4400', '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 (95771, '2022-06-27', 9846, 90368, 5662, NULL, '1.0000', '5.7000', '5.7000', '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 (95772, '2022-06-27', 9092, 90369, 5662, NULL, '2.0000', '5.2900', '5.2900', '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 (95773, '2022-06-27', 7473, 90370, 5662, NULL, '6.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (95774, '2022-06-27', 1665, 90371, 5662, 3235, '-134.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 (95775, '2022-06-27', 1665, 90371, 5662, NULL, '136.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-136.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95776, '2022-06-27', 2315, 90372, 5662, 2735, '-509.0000', '0.3300', '0.3300', '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 (95777, '2022-06-27', 2315, 90372, 5662, NULL, '511.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-511.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95778, '2022-06-27', 7753, 90373, 5662, NULL, '1.0000', '3.4000', '3.4000', '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 (95779, '2022-06-27', 7385, 90374, 5662, NULL, '3.0000', '2.0000', '2.0000', '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 (95780, '2022-06-27', 7915, 90375, 5662, NULL, '1.0000', '2.8000', '2.8000', '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 (95781, '2022-06-27', 7411, 90376, 5662, NULL, '1.0000', '1.3500', '1.3500', '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 (95782, '2022-06-27', 2289, 90377, 5662, 2949, '-218.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 (95783, '2022-06-27', 2289, 90377, 5662, NULL, '221.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-221.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95784, '2022-06-27', 7385, 90378, 5662, NULL, '2.0000', '2.0000', '2.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 (95785, '2022-06-27', 2315, 90379, 5662, 2735, '-509.0000', '0.3300', '0.3300', '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 (95786, '2022-06-27', 2315, 90379, 5662, NULL, '512.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-512.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95787, '2022-06-27', 9762, 90380, 5662, 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 (95788, '2022-06-27', 7886, 90381, 5663, 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 (95789, '2022-06-27', 2295, 90382, 5663, 2954, '-24.0000', '0.9600', '0.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 (95790, '2022-06-27', 2295, 90382, 5663, NULL, '27.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-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 (95791, '2022-06-27', 7780, 90383, 5663, NULL, '1.0000', '11.6000', '11.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 (95792, '2022-06-27', 1450, 90384, 5663, 5570, '-54.0000', '61.1074', '61.1074', '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 (95793, '2022-06-27', 1450, 90384, 5663, NULL, '64.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95794, '2022-06-27', 7857, 90385, 5663, NULL, '1.0000', '15.1300', '15.1300', '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 (95795, '2022-06-27', 8878, 90386, 5663, NULL, '6.0000', '6.6700', '6.6700', '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 (95796, '2022-06-27', 9272, 90387, 5663, NULL, '1.0000', '3.1000', '3.1000', '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 (95797, '2022-06-27', 7411, 90388, 5663, NULL, '1.0000', '1.3500', '1.3500', '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 (95798, '2022-06-27', 7954, 90389, 5663, 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 (95799, '2022-06-27', 9557, 90390, 5664, 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 (95800, '2022-06-27', 1715, 90391, 5664, 55770, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95801, '2022-06-27', 1383, 90392, 5664, 56883, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95802, '2022-06-27', 2302, 90393, 5664, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95803, '2022-06-27', 1499, 90394, 5665, 54670, '1.0000', '0.4174', '0.4174', '0.7000', '0.7000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95804, '2022-06-27', 1689, 90395, 5665, 57953, '1.0000', '14.0071', '14.0071', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95805, '2022-06-27', 2917, 90396, 5665, 54685, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95806, '2022-06-27', 8566, 90397, 5666, NULL, '1.0000', '11.0000', '11.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 (95807, '2022-06-27', 1856, 90398, 5666, NULL, '1.0000', '4.2500', '4.2500', '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 (95808, '2022-06-27', 8596, 90399, 5666, 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 (95809, '2022-06-27', 7522, 90400, 5666, NULL, '1.0000', '9.7000', '9.7000', '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 (95810, '2022-06-27', 2385, 90401, 5667, NULL, '1.0000', '10.5450', '10.5450', '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 (95811, '2022-06-27', 2237, 90402, 5667, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95812, '2022-06-27', 2821, 90403, 5667, 57694, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95813, '2022-06-27', 2277, 90404, 5667, NULL, '2.0000', '0.9399', '0.9399', '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 (95814, '2022-06-27', 7411, 90405, 5667, NULL, '1.0000', '1.3013', '1.3013', '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 (95815, '2022-06-27', 9828, 90406, 5667, NULL, '1.0000', '2.9100', '2.9100', '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 (95816, '2022-06-27', 2011, 90407, 5667, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95817, '2022-06-27', 7514, 90408, 5667, NULL, '1.0000', '2.2500', '2.2500', '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 (95818, '2022-06-27', 2135, 90409, 5667, NULL, '1.0000', '-0.2588', '-0.2588', '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 (95819, '2022-06-27', 9736, 90410, 5667, NULL, '1.0000', '5.0278', '5.0278', '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 (95820, '2022-06-27', 9960, 90411, 5667, 57743, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95821, '2022-06-27', 2315, 90412, 5667, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '147.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95822, '2022-06-28', 2169, 90413, 5668, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95823, '2022-06-28', 8963, 90414, 5668, NULL, '1.0000', '7.6600', '7.6600', '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 (95824, '2022-06-28', 1529, 90415, 5668, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95825, '2022-06-28', 1863, 90416, 5668, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95826, '2022-06-28', 1501, 90417, 5668, NULL, '1.0000', '0.6299', '0.6299', '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 (95827, '2022-06-28', 2916, 90418, 5668, NULL, '1.0000', '1412.8179', '1412.8179', '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 (95828, '2022-06-28', 1529, 90419, 5668, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95829, '2022-06-28', 1863, 90420, 5668, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95830, '2022-06-28', 1912, 90421, 5668, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95831, '2022-06-28', 2169, 90422, 5668, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95832, '2022-06-28', 1498, 90423, 5668, 57680, '1.0000', '0.4912', '0.4912', '0.7000', '0.7000', '49.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95833, '2022-06-28', 1665, 90424, 5668, 57073, '3.0000', '1.1685', '1.1685', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95834, '2022-06-28', 9311, 90425, 5668, NULL, '1.0000', '7.8000', '7.8000', '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 (95835, '2022-06-28', 2965, 90426, 5668, NULL, '1.0000', '9.1051', '9.1051', '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 (95836, '2022-06-28', 2565, 90427, 5668, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95837, '2022-06-28', 2556, 90428, 5668, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95838, '2022-06-28', 2268, 90429, 5669, 51217, '1.0000', '7.3286', '7.3286', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95839, '2022-06-28', 9697, 90430, 5669, 55574, '2.0000', '7.4600', '7.4600', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95840, '2022-06-28', 1787, 90431, 5669, NULL, '2.0000', '0.5000', '0.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 (95841, '2022-06-28', 2169, 90432, 5669, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95842, '2022-06-28', 2169, 90433, 5669, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95843, '2022-06-28', 1912, 90434, 5669, 57704, '3.0000', '0.6868', '0.6868', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95844, '2022-06-28', 9695, 90435, 5669, 58072, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95845, '2022-06-28', 2293, 90436, 5669, NULL, '3.0000', '-17.4320', '-17.4320', '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 (95846, '2022-06-28', 2237, 90437, 5669, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95847, '2022-06-28', 2556, 90438, 5669, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95848, '2022-06-28', 2286, 90439, 5669, 57711, '2.0000', '4.7224', '4.7224', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95849, '2022-06-28', 7953, 90440, 5669, NULL, '1.0000', '-0.5345', '-0.5345', '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 (95850, '2022-06-28', 9732, 90441, 5669, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95851, '2022-06-28', 1637, 90442, 5669, 57715, '1.0000', '238.7168', '238.7168', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95852, '2022-06-28', 1339, 90443, 5670, NULL, '1.0000', '2.2232', '2.2232', '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 (95853, '2022-06-28', 2169, 90444, 5670, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95854, '2022-06-28', 1590, 90445, 5670, 55929, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95855, '2022-06-28', 1493, 90446, 5670, NULL, '1.0000', '-27.3400', '-27.3400', '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 (95856, '2022-06-28', 2754, 90447, 5670, 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 (95857, '2022-06-28', 2169, 90448, 5671, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95858, '2022-06-28', 2169, 90449, 5671, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95859, '2022-06-28', 2305, 90450, 5671, 53223, '1.0000', '4.0595', '4.0595', '8.5000', '8.5000', '14.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95860, '2022-06-28', 2916, 90451, 5672, NULL, '1.0000', '1412.8179', '1412.8179', '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 (95861, '2022-06-28', 2169, 90452, 5672, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95862, '2022-06-28', 8740, 90453, 5672, 56875, '2.0000', '2.0000', '2.0000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95863, '2022-06-28', 1326, 90454, 5673, 55898, '1.0000', '4.3669', '4.3669', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95864, '2022-06-28', 2893, 90455, 5674, 18242, '-15.0000', '6.0000', '6.0000', '9.5000', '9.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 (95865, '2022-06-28', 2893, 90455, 5674, NULL, '16.0000', '6.0000', '6.0000', '9.5000', '9.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 (95866, '2022-06-28', 2221, 90456, 5674, 4154, '-70.0000', '14.4737', '14.4737', '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 (95867, '2022-06-28', 2221, 90456, 5674, NULL, '71.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95868, '2022-06-28', 2258, 90457, 5674, NULL, '1.0000', '0.3500', '0.3500', '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 (95869, '2022-06-28', 2247, 90458, 5674, 2784, '-10.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 (95870, '2022-06-28', 2247, 90458, 5674, NULL, '11.0000', '2.5000', '2.5000', '3.5000', '3.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 (95871, '2022-06-28', 1306, 90459, 5674, 5581, '-8.0000', '22.5969', '22.5969', '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 (95872, '2022-06-28', 1306, 90459, 5674, NULL, '9.0000', '22.5969', '22.5969', '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 (95873, '2022-06-28', 2821, 90460, 5674, 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 (95874, '2022-06-28', 1921, 90461, 5674, 6873, '1.0000', '13.0375', '13.0375', '3.0000', '3.0000', '7.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 (95875, '2022-06-28', 1470, 90462, 5674, NULL, '1.0000', '90.0000', '90.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 (95876, '2022-06-28', 7411, 90463, 5674, NULL, '1.0000', '1.3500', '1.3500', '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 (95877, '2022-06-28', 1699, 90464, 5674, 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 (95878, '2022-06-28', 1845, 90465, 5674, 6222, '-28.0000', '19.5000', '19.5000', '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 (95879, '2022-06-28', 1845, 90465, 5674, NULL, '29.0000', '19.5000', '19.5000', '30.5000', '30.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95880, '2022-06-28', 9775, 90466, 5674, NULL, '1.0000', '7.9000', '7.9000', '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 (95881, '2022-06-28', 1371, 90467, 5674, 10169, '-11.0000', '5.5000', '5.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 (95882, '2022-06-28', 1371, 90467, 5674, NULL, '12.0000', '5.5000', '5.5000', '10.0000', '10.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 (95883, '2022-06-28', 1411, 90468, 5674, NULL, '1.0000', '25.9000', '25.9000', '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 (95884, '2022-06-28', 1655, 90469, 5674, 3226, '-3.0000', '33.8400', '33.8400', '54.0000', '54.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95885, '2022-06-28', 1655, 90469, 5674, NULL, '4.0000', '33.8400', '33.8400', '54.0000', '54.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 (95886, '2022-06-28', 1306, 90470, 5675, NULL, '5.0000', '2.1000', '2.1000', '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 (95887, '2022-06-28', 8774, 90471, 5676, 58065, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95888, '2022-06-28', 2342, 90472, 5676, 54886, '3.0000', '2.2091', '2.2091', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95889, '2022-06-28', 2858, 90473, 5677, 17772, '-100.0000', '1.0000', '1.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 (95890, '2022-06-28', 2858, 90473, 5677, NULL, '102.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-102.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95891, '2022-06-28', 2151, 90474, 5678, 37966, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95892, '2022-06-28', 1935, 90475, 5678, 57809, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95893, '2022-06-28', 2315, 90476, 5679, 2735, '-514.0000', '0.3300', '0.3300', '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 (95894, '2022-06-28', 2315, 90476, 5679, NULL, '516.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-516.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95895, '2022-06-28', 9408, 90477, 5679, NULL, '1.0000', '10.0000', '10.0000', '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 (95896, '2022-06-28', 7635, 90478, 5679, NULL, '1.0000', '13.7500', '13.7500', '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 (95897, '2022-06-28', 7967, 90479, 5679, 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 (95898, '2022-06-28', 7577, 90480, 5679, NULL, '1.0000', '0.5900', '0.5900', '42.5000', '42.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95899, '2022-06-28', 9933, 90481, 5679, NULL, '1.0000', '16.9000', '16.9000', '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 (95900, '2022-06-28', 7474, 90482, 5679, NULL, '1.0000', '67.6200', '67.6200', '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 (95901, '2022-06-28', 7911, 90483, 5679, NULL, '1.0000', '4.3700', '4.3700', '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 (95902, '2022-06-28', 1867, 90484, 5679, NULL, '1.0000', '1.0500', '1.0500', '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 (95903, '2022-06-28', 1845, 90485, 5679, 6222, '-29.0000', '19.5000', '19.5000', '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 (95904, '2022-06-28', 1845, 90485, 5679, NULL, '30.0000', '19.5000', '19.5000', '30.5000', '30.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 (95905, '2022-06-28', 7411, 90486, 5679, NULL, '2.0000', '1.3500', '1.3500', '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 (95906, '2022-06-28', 2015, 90487, 5679, 6373, '-1.0000', '5.0000', '5.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 (95907, '2022-06-28', 2015, 90487, 5679, 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 (95908, '2022-06-28', 7672, 90488, 5679, NULL, '1.0000', '1.0200', '1.0200', '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 (95909, '2022-06-28', 1750, 90489, 5679, 6680, '1.0000', '31.9800', '31.9800', '55.0000', '55.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 (95910, '2022-06-28', 7338, 90490, 5679, 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 (95911, '2022-06-28', 7324, 90491, 5679, NULL, '10.0000', '4.0000', '4.0000', '8.5000', '8.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 (95912, '2022-06-28', 8308, 90492, 5679, NULL, '1.0000', '2.0800', '2.0800', '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 (95913, '2022-06-28', 8918, 90493, 5679, NULL, '1.0000', '1.0400', '1.0400', '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 (95914, '2022-06-28', 9092, 90494, 5679, NULL, '2.0000', '5.2900', '5.2900', '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 (95915, '2022-06-28', 7709, 90495, 5679, NULL, '2.0000', '3.5000', '3.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 (95916, '2022-06-28', 7412, 90496, 5679, NULL, '1.0000', '1.5200', '1.5200', '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 (95917, '2022-06-28', 7762, 90497, 5679, NULL, '2.0000', '1.5000', '1.5000', '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 (95918, '2022-06-28', 7411, 90498, 5679, NULL, '1.0000', '1.3500', '1.3500', '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 (95919, '2022-06-28', 7704, 90499, 5679, NULL, '1.0000', '0.4900', '0.4900', '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 (95920, '2022-06-28', 9204, 90500, 5679, NULL, '1.0000', '8.1600', '8.1600', '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 (95921, '2022-06-28', 2556, 90501, 5680, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95922, '2022-06-28', 7411, 90502, 5680, NULL, '1.0000', '1.3013', '1.3013', '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 (95923, '2022-06-28', 2283, 90503, 5680, 57674, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95924, '2022-06-28', 2285, 90504, 5680, NULL, '1.0000', '-35.9568', '-35.9568', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95925, '2022-06-28', 1621, 90505, 5680, 57751, '3.0000', '18.8366', '18.8366', '8.8000', '8.8000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95926, '2022-06-28', 7472, 90506, 5680, NULL, '1.0000', '-107.6090', '-107.6090', '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 (95927, '2022-06-28', 1342, 90507, 5680, 57688, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95928, '2022-06-28', 1307, 90508, 5680, NULL, '1.0000', '-59.9897', '-59.9897', '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 (95929, '2022-06-28', 7441, 90509, 5680, NULL, '1.0000', '0.2300', '0.2300', '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 (95930, '2022-06-28', 2169, 90510, 5680, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95931, '2022-06-28', 1665, 90511, 5680, 57073, '2.0000', '1.1685', '1.1685', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95932, '2022-06-28', 1501, 90512, 5680, NULL, '1.0000', '0.6299', '0.6299', '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 (95933, '2022-06-28', 2251, 90513, 5680, 57670, '1.0000', '14.9073', '14.9073', '19.5000', '19.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95934, '2022-06-28', 2511, 90514, 5680, NULL, '1.0000', '13.8000', '13.8000', '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 (95935, '2022-06-28', 1499, 90515, 5680, 57679, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '34.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95936, '2022-06-28', 7641, 90516, 5680, NULL, '1.0000', '1.9000', '1.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 (95937, '2022-06-28', 1935, 90517, 5680, 57809, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95938, '2022-06-28', 2669, 90518, 5680, 23125, '1.0000', '24.3367', '24.3367', '32.0000', '32.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 (95939, '2022-06-28', 1839, 90519, 5680, 57682, '1.0000', '-157134.5188', '-157134.5188', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95940, '2022-06-28', 2251, 90520, 5680, 57670, '1.0000', '14.9073', '14.9073', '19.5000', '19.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95941, '2022-06-28', 2085, 90521, 5680, NULL, '4.0000', '3.9526', '3.9526', '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 (95942, '2022-06-28', 7483, 90522, 5680, 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 (95943, '2022-06-28', 2068, 90523, 5680, 52329, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95944, '2022-06-28', 8183, 90524, 5680, 57735, '1.0000', '2774.2425', '2774.2425', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95945, '2022-06-28', 8183, 90524, 5680, NULL, '1.0000', '2774.2425', '2774.2425', '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 (95946, '2022-06-28', 8208, 90525, 5680, NULL, '2.0000', '47.9541', '47.9541', '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 (95947, '2022-06-28', 7328, 90526, 5680, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95948, '2022-06-28', 2289, 90527, 5680, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95949, '2022-06-28', 1840, 90528, 5680, NULL, '1.0000', '0.2400', '0.2400', '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 (95950, '2022-06-28', 1529, 90529, 5680, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95951, '2022-06-28', 2277, 90530, 5680, NULL, '2.0000', '0.9399', '0.9399', '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 (95952, '2022-06-28', 8904, 90531, 5680, 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 (95953, '2022-06-28', 7411, 90532, 5680, NULL, '1.0000', '1.3013', '1.3013', '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 (95954, '2022-06-28', 2169, 90533, 5680, 57709, '2.0000', '1.6576', '1.6576', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95955, '2022-06-28', 1388, 90534, 5680, 57772, '1.0000', '6.9440', '6.9440', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95956, '2022-06-28', 2020, 90535, 5680, NULL, '1.0000', '1309.0500', '1309.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 (95957, '2022-06-28', 2135, 90536, 5680, NULL, '1.0000', '-0.2588', '-0.2588', '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 (95958, '2022-06-28', 7974, 90537, 5680, NULL, '2.0000', '26.9000', '26.9000', '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 (95959, '2022-06-28', 2237, 90538, 5680, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95960, '2022-06-28', 1841, 90539, 5680, 55655, '1.0000', '0.7630', '0.7630', '0.5000', '0.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95961, '2022-06-28', 2169, 90540, 5680, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95962, '2022-06-28', 2821, 90541, 5680, 57694, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95963, '2022-06-28', 2821, 90541, 5680, 57741, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95964, '2022-06-28', 1342, 90542, 5680, 57688, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95965, '2022-06-28', 1529, 90543, 5680, 57707, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95966, '2022-06-28', 7411, 90544, 5680, NULL, '2.0000', '1.3013', '1.3013', '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 (95967, '2022-06-28', 2416, 90545, 5680, 58066, '2.0000', '1.3371', '1.3371', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95968, '2022-06-28', 2169, 90546, 5680, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95969, '2022-06-28', 9727, 90547, 5680, 53234, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95970, '2022-06-28', 2315, 90548, 5680, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '145.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95971, '2022-06-28', 9960, 90549, 5680, 57743, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95972, '2022-06-28', 1810, 90550, 5680, NULL, '1.0000', '15.0116', '15.0116', '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 (95973, '2022-06-28', 1910, 90551, 5680, 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 (95974, '2022-06-28', 7411, 90552, 5680, NULL, '1.0000', '1.3013', '1.3013', '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 (95975, '2022-06-28', 9773, 90553, 5680, 49306, '1.0000', '48.1000', '48.1000', '63.5000', '63.5000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95976, '2022-06-28', 1935, 90554, 5680, 57809, '2.0000', '0.1236', '0.1236', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95977, '2022-06-28', 7590, 90555, 5680, 55548, '2.0000', '2.7957', '2.7957', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95978, '2022-06-28', 9856, 90556, 5680, 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 (95979, '2022-06-28', 9695, 90557, 5680, 58072, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95980, '2022-06-28', 1980, 90558, 5680, 57132, '1.0000', '11.5000', '11.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95981, '2022-06-28', 2169, 90559, 5680, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95982, '2022-06-28', 9736, 90560, 5680, NULL, '1.0000', '5.0278', '5.0278', '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 (95983, '2022-06-28', 9955, 90561, 5680, 57812, '2.0000', '5.4000', '5.4000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95984, '2022-06-28', 1841, 90562, 5680, 55655, '2.0000', '0.7630', '0.7630', '0.5000', '0.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95985, '2022-06-28', 2289, 90563, 5680, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '18.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95986, '2022-06-28', 1748, 90564, 5680, NULL, '2.0000', '0.3200', '0.3200', '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 (95987, '2022-06-28', 8208, 90565, 5680, NULL, '2.0000', '47.9541', '47.9541', '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 (95988, '2022-06-28', 1840, 90566, 5680, NULL, '2.0000', '0.2400', '0.2400', '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 (95989, '2022-06-28', 7445, 90567, 5680, 34616, '1.0000', '7.9900', '7.9900', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95990, '2022-06-28', 1499, 90568, 5680, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95991, '2022-06-28', 8183, 90569, 5680, 57735, '1.0000', '2774.2425', '2774.2425', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95992, '2022-06-28', 1388, 90570, 5680, 57772, '1.0000', '6.9440', '6.9440', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95993, '2022-06-28', 7411, 90571, 5680, NULL, '1.0000', '1.3013', '1.3013', '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 (95994, '2022-06-28', 9736, 90572, 5680, NULL, '1.0000', '5.0278', '5.0278', '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 (95995, '2022-06-28', 1342, 90573, 5680, 57688, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95996, '2022-06-28', 7411, 90574, 5680, NULL, '1.0000', '1.3013', '1.3013', '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 (95997, '2022-06-28', 2129, 90575, 5680, NULL, '1.0000', '6.4100', '6.4100', '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 (95998, '2022-06-28', 2169, 90576, 5680, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95999, '2022-06-28', 2556, 90577, 5680, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96000, '2022-06-28', 9821, 90578, 5680, 57690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96001, '2022-06-28', 2068, 90579, 5680, 52329, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96002, '2022-06-28', 2651, 90580, 5680, 56379, '1.0000', '11.9313', '11.9313', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96003, '2022-06-28', 7482, 90581, 5680, NULL, '1.0000', '2.5019', '2.5019', '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 (96004, '2022-06-28', 9834, 90582, 5680, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96005, '2022-06-28', 1904, 90583, 5680, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96006, '2022-06-28', 8207, 90584, 5680, NULL, '1.0000', '0.0000', '0.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 (96007, '2022-06-28', 2104, 90585, 5681, NULL, '4.0000', '0.2000', '0.2000', '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 (96008, '2022-06-28', 7822, 90586, 5681, 56490, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96009, '2022-06-28', 7514, 90587, 5681, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96010, '2022-06-28', 7650, 90588, 5681, 57209, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96011, '2022-06-28', 1993, 90589, 5681, 39438, '1.0000', '1.5914', '1.5914', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96012, '2022-06-28', 9946, 90590, 5681, 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 (96013, '2022-06-28', 9461, 90591, 5681, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96014, '2022-06-28', 9598, 90592, 5681, 56583, '1.0000', '4.2430', '4.2430', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96015, '2022-06-28', 9747, 90593, 5681, 56183, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96016, '2022-06-28', 2315, 90594, 5681, 57597, '5.0000', '0.7562', '0.7562', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96017, '2022-06-28', 7711, 90595, 5681, 57607, '1.0000', '49.6000', '49.6000', '65.5000', '65.5000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96018, '2022-06-28', 8328, 90596, 5681, NULL, '1.0000', '6.5306', '6.5306', '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 (96019, '2022-06-28', 7715, 90597, 5681, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '22.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96020, '2022-06-28', 8753, 90598, 5681, 54116, '2.0000', '3.3875', '3.3875', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96021, '2022-06-28', 7652, 90599, 5681, NULL, '1.0000', '-7032.8807', '-7032.8807', '1.6000', '1.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 (96022, '2022-06-28', 7674, 90600, 5681, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96023, '2022-06-28', 7709, 90601, 5681, NULL, '2.0000', '916.6097', '916.6097', '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 (96024, '2022-06-28', 8395, 90602, 5681, 57204, '2.0000', '0.6130', '0.6130', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96025, '2022-06-28', 8878, 90603, 5681, 57207, '1.0000', '-0.0992', '-0.0992', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96026, '2022-06-28', 8133, 90604, 5681, NULL, '1.0000', '5.0000', '5.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 (96027, '2022-06-28', 9523, 90605, 5681, 34543, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96028, '2022-06-28', 7694, 90606, 5681, NULL, '4.0000', '4.7900', '4.7900', '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 (96029, '2022-06-28', 7317, 90607, 5681, 57642, '1.0000', '15.2534', '15.2534', '22.5000', '22.5000', '17.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96030, '2022-06-28', 7412, 90608, 5681, 54506, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96031, '2022-06-28', 7608, 90609, 5681, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96032, '2022-06-28', 7874, 90610, 5681, NULL, '1.0000', '52.9094', '52.9094', '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 (96033, '2022-06-28', 7673, 90611, 5681, 56533, '1.0000', '16.3367', '16.3367', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96034, '2022-06-28', 7514, 90612, 5681, 57588, '3.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96035, '2022-06-28', 9785, 90613, 5681, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96036, '2022-06-28', 7628, 90614, 5681, 54135, '6.0000', '0.0299', '0.0299', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96037, '2022-06-28', 9740, 90615, 5681, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96038, '2022-06-28', 8965, 90616, 5681, NULL, '2.0000', '-263.2470', '-263.2470', '9.5000', '9.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 (96039, '2022-06-28', 7810, 90617, 5681, NULL, '1.0000', '12.0714', '12.0714', '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 (96040, '2022-06-28', 8622, 90618, 5681, 51013, '1.0000', '-10.8064', '-10.8064', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96041, '2022-06-28', 7514, 90619, 5681, 57588, '2.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96042, '2022-06-28', 7593, 90620, 5681, 54502, '1.0000', '2.8297', '2.8297', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96043, '2022-06-28', 1855, 90621, 5681, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96044, '2022-06-28', 1501, 90622, 5681, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96045, '2022-06-28', 8454, 90623, 5681, NULL, '1.0000', '5.1700', '5.1700', '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 (96046, '2022-06-28', 7961, 90624, 5681, 56687, '1.0000', '13.2000', '13.2000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96047, '2022-06-28', 2699, 90625, 5681, 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 (96048, '2022-06-28', 8154, 90626, 5681, NULL, '2.0000', '12.3000', '12.3000', '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 (96049, '2022-06-28', 7877, 90627, 5681, NULL, '1.0000', '24.8229', '24.8229', '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 (96050, '2022-06-28', 2733, 90628, 5681, 54110, '1.0000', '-5.0000', '-5.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96051, '2022-06-28', 8000, 90629, 5681, 57616, '2.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96052, '2022-06-28', 7569, 90630, 5681, 45815, '1.0000', '40.9189', '40.9189', '48.5000', '48.5000', '8.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96053, '2022-06-28', 2983, 90631, 5681, 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 (96054, '2022-06-28', 7762, 90632, 5681, 57413, '1.0000', '0.7818', '0.7818', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96055, '2022-06-28', 7590, 90633, 5681, NULL, '1.0000', '6.0509', '6.0509', '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 (96056, '2022-06-28', 7796, 90634, 5681, NULL, '1.0000', '13.5000', '13.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 (96057, '2022-06-28', 7354, 90635, 5681, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96058, '2022-06-28', 7672, 90636, 5681, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96059, '2022-06-28', 7446, 90637, 5681, 56607, '1.0000', '1.5241', '1.5241', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96060, '2022-06-28', 1884, 90638, 5681, 57438, '1.0000', '8.2666', '8.2666', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96061, '2022-06-28', 7518, 90639, 5681, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '12.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96062, '2022-06-28', 7535, 90640, 5681, 57390, '1.0000', '5.1390', '5.1390', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96063, '2022-06-28', 7357, 90641, 5681, NULL, '1.0000', '11.7500', '11.7500', '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 (96064, '2022-06-28', 7877, 90642, 5681, NULL, '1.0000', '24.8229', '24.8229', '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 (96065, '2022-06-28', 7524, 90643, 5681, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96066, '2022-06-28', 8161, 90644, 5681, NULL, '2.0000', '26.7096', '26.7096', '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 (96067, '2022-06-28', 8308, 90645, 5681, NULL, '1.0000', '60.7672', '60.7672', '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 (96068, '2022-06-28', 8039, 90646, 5681, 55964, '1.0000', '16.8443', '16.8443', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96069, '2022-06-28', 8039, 90646, 5681, NULL, '1.0000', '16.8443', '16.8443', '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 (96070, '2022-06-28', 7704, 90647, 5682, NULL, '3.0000', '-1.5625', '-1.5625', '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 (96071, '2022-06-28', 9569, 90648, 5682, 56680, '1.0000', '132.2733', '132.2733', '175.0000', '175.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96072, '2022-06-28', 2315, 90649, 5682, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96073, '2022-06-28', 8053, 90650, 5682, 56579, '5.0000', '1.1052', '1.1052', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96074, '2022-06-28', 9092, 90651, 5682, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96075, '2022-06-28', 7641, 90652, 5682, 56190, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96076, '2022-06-28', 7385, 90653, 5682, 57604, '3.0000', '7.8936', '7.8936', '4.0000', '4.0000', '45.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96077, '2022-06-28', 7652, 90654, 5682, NULL, '5.0000', '-7032.8807', '-7032.8807', '1.6000', '1.6000', '-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 (96078, '2022-06-28', 7411, 90655, 5682, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96079, '2022-06-28', 1935, 90656, 5682, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '117.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96080, '2022-06-28', 9827, 90657, 5683, 57965, '1.0000', '16.7251', '16.7251', '22.0000', '22.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96081, '2022-06-28', 2354, 90658, 5683, 56731, '1.0000', '5.2506', '5.2506', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96082, '2022-06-28', 2821, 90659, 5683, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96083, '2022-06-28', 1346, 90660, 5683, 55497, '5.0000', '1.0027', '1.0027', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96084, '2022-06-28', 2777, 90661, 5683, 55759, '1.0000', '3.3848', '3.3848', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96085, '2022-06-28', 9089, 90662, 5683, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96086, '2022-06-28', 1620, 90663, 5683, 57947, '4.0000', '2.2914', '2.2914', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96087, '2022-06-28', 2821, 90664, 5683, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96088, '2022-06-28', 7385, 90665, 5683, 57945, '2.0000', '2.6553', '2.6553', '4.0000', '4.0000', '58.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96089, '2022-06-28', 7482, 90666, 5683, NULL, '1.0000', '3.0500', '3.0500', '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 (96090, '2022-06-28', 1670, 90667, 5683, 54623, '1.0000', '48.0854', '48.0854', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96091, '2022-06-28', 2858, 90668, 5683, NULL, '2.0000', '1.0000', '1.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 (96092, '2022-06-28', 2384, 90669, 5683, 56740, '5.0000', '0.3965', '0.3965', '0.7000', '0.7000', '72.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96093, '2022-06-28', 2858, 90670, 5683, 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 (96094, '2022-06-28', 1780, 90671, 5683, 56897, '1.0000', '40.6277', '40.6277', '60.5000', '60.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96095, '2022-06-28', 7887, 90672, 5683, NULL, '1.0000', '18.0000', '18.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 (96096, '2022-06-28', 9940, 90673, 5683, NULL, '2.0000', '9.0000', '9.0000', '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 (96097, '2022-06-28', 8758, 90674, 5683, 55445, '1.0000', '9.5523', '9.5523', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96098, '2022-06-28', 2366, 90675, 5683, 56954, '2.0000', '3.6526', '3.6526', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96099, '2022-06-28', 2317, 90676, 5683, 58096, '1.0000', '15.4737', '15.4737', '20.0000', '20.0000', '17.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96100, '2022-06-28', 1620, 90677, 5683, 57947, '4.0000', '2.2914', '2.2914', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96101, '2022-06-28', 2260, 90678, 5683, 57992, '1.0000', '4.6659', '4.6659', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96102, '2022-06-28', 7881, 90679, 5683, NULL, '2.0000', '2.7500', '2.7500', '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 (96103, '2022-06-28', 2466, 90680, 5683, 29806, '1.0000', '15.2520', '15.2520', '19.1400', '19.1400', '2.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96104, '2022-06-28', 1863, 90681, 5683, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96105, '2022-06-28', 2135, 90682, 5683, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96106, '2022-06-28', 9940, 90683, 5683, 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 (96107, '2022-06-28', 1935, 90684, 5683, 57988, '1.0000', '1.3001', '1.3001', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96108, '2022-06-28', 2524, 90685, 5683, 58097, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96109, '2022-06-28', 2209, 90686, 5683, 58106, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96110, '2022-06-28', 9761, 90687, 5683, 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 (96111, '2022-06-28', 2821, 90688, 5683, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96112, '2022-06-28', 9940, 90689, 5683, 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 (96113, '2022-06-28', 2221, 90690, 5683, 56927, '1.0000', '16.8057', '16.8057', '26.0000', '26.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96114, '2022-06-28', 2221, 90691, 5684, NULL, '1.0000', '2.3805', '2.3805', '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 (96115, '2022-06-28', 7482, 90692, 5684, NULL, '1.0000', '2.5019', '2.5019', '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 (96116, '2022-06-28', 9754, 90693, 5684, 57794, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96117, '2022-06-28', 8207, 90694, 5684, NULL, '1.0000', '0.0000', '0.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 (96118, '2022-06-28', 1412, 90695, 5684, 48991, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96119, '2022-06-28', 1840, 90696, 5684, NULL, '1.0000', '0.2400', '0.2400', '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 (96120, '2022-06-28', 1841, 90697, 5684, NULL, '1.0000', '0.7630', '0.7630', '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 (96121, '2022-06-28', 1691, 90698, 5684, 55631, '1.0000', '10.4800', '10.4800', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96122, '2022-06-28', 2295, 90699, 5684, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96123, '2022-06-28', 2169, 90700, 5684, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96124, '2022-06-28', 7944, 90701, 5684, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96125, '2022-06-28', 2169, 90702, 5684, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96126, '2022-06-28', 2254, 90703, 5684, NULL, '1.0000', '42.5400', '42.5400', '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 (96127, '2022-06-28', 1856, 90704, 5684, NULL, '1.0000', '155.0099', '155.0099', '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 (96128, '2022-06-28', 7506, 90705, 5684, NULL, '2.0000', '15.0000', '15.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 (96129, '2022-06-28', 1910, 90706, 5684, 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 (96130, '2022-06-28', 9609, 90707, 5684, NULL, '1.0000', '-1.7000', '-1.7000', '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 (96131, '2022-06-28', 8677, 90708, 5684, NULL, '2.0000', '496.2705', '496.2705', '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 (96132, '2022-06-29', 2283, 90709, 5685, 2943, '-27.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 (96133, '2022-06-29', 2283, 90709, 5685, NULL, '29.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96134, '2022-06-29', 9274, 90710, 5685, NULL, '1.0000', '3.6000', '3.6000', '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 (96135, '2022-06-29', 7482, 90711, 5685, NULL, '1.0000', '3.0500', '3.0500', '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 (96136, '2022-06-29', 1993, 90712, 5685, 6356, '-3.0000', '0.6000', '0.6000', '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 (96137, '2022-06-29', 1993, 90712, 5685, NULL, '4.0000', '0.6000', '0.6000', '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 (96138, '2022-06-29', 2315, 90713, 5685, 2735, '-516.0000', '0.3300', '0.3300', '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 (96139, '2022-06-29', 2315, 90713, 5685, NULL, '519.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-519.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96140, '2022-06-29', 2295, 90714, 5685, 2954, '-27.0000', '0.9600', '0.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 (96141, '2022-06-29', 2295, 90714, 5685, NULL, '29.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96142, '2022-06-29', 7781, 90715, 5685, NULL, '2.0000', '4.2500', '4.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 (96143, '2022-06-29', 7881, 90716, 5685, NULL, '2.0000', '2.3000', '2.3000', '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 (96144, '2022-06-29', 7672, 90717, 5685, NULL, '1.0000', '1.0200', '1.0200', '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 (96145, '2022-06-29', 7560, 90718, 5685, NULL, '1.0000', '33.0200', '33.0200', '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 (96146, '2022-06-29', 7385, 90719, 5685, NULL, '2.0000', '2.0000', '2.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 (96147, '2022-06-29', 9695, 90720, 5685, NULL, '2.0000', '4.5000', '4.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 (96148, '2022-06-29', 2315, 90721, 5685, 2735, '-516.0000', '0.3300', '0.3300', '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 (96149, '2022-06-29', 2315, 90721, 5685, NULL, '518.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-518.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96150, '2022-06-29', 7694, 90722, 5685, NULL, '1.0000', '4.7900', '4.7900', '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 (96151, '2022-06-29', 9526, 90723, 5685, NULL, '2.0000', '7.0000', '7.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 (96152, '2022-06-29', 7547, 90724, 5685, NULL, '4.0000', '0.0000', '0.0000', '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 (96153, '2022-06-29', 7776, 90725, 5685, 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 (96154, '2022-06-29', 1498, 90726, 5685, 19685, '-48.0000', '0.3300', '0.3300', '0.7000', '0.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 (96155, '2022-06-29', 1498, 90726, 5685, NULL, '50.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96156, '2022-06-29', 8699, 90727, 5685, NULL, '1.0000', '6.3800', '6.3800', '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 (96157, '2022-06-29', 7317, 90728, 5685, NULL, '1.0000', '19.5500', '19.5500', '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 (96158, '2022-06-29', 8810, 90729, 5685, NULL, '1.0000', '1.6000', '1.6000', '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 (96159, '2022-06-29', 7674, 90730, 5685, NULL, '1.0000', '1.3000', '1.3000', '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 (96160, '2022-06-29', 7490, 90731, 5685, NULL, '20.0000', '0.2300', '0.2300', '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 (96161, '2022-06-29', 7444, 90732, 5685, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96162, '2022-06-29', 7411, 90733, 5685, NULL, '1.0000', '1.3500', '1.3500', '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 (96163, '2022-06-29', 2315, 90734, 5685, 2735, '-516.0000', '0.3300', '0.3300', '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 (96164, '2022-06-29', 2315, 90734, 5685, NULL, '517.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-517.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96165, '2022-06-29', 7608, 90735, 5685, NULL, '1.0000', '6.9800', '6.9800', '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 (96166, '2022-06-29', 8101, 90736, 5685, NULL, '4.0000', '1.9700', '1.9700', '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 (96167, '2022-06-29', 8672, 90737, 5685, 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 (96168, '2022-06-29', 2256, 90738, 5685, 2793, '-7.0000', '12.7400', '12.7400', '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 (96169, '2022-06-29', 2256, 90738, 5685, NULL, '8.0000', '12.7400', '12.7400', '22.0000', '22.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 (96170, '2022-06-29', 8163, 90739, 5686, NULL, '1.0000', '22.0000', '22.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 (96171, '2022-06-29', 9724, 90740, 5687, NULL, '1.0000', '20.3000', '20.3000', '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 (96172, '2022-06-29', 2556, 90741, 5688, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96173, '2022-06-29', 2565, 90742, 5688, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96174, '2022-06-29', 2565, 90743, 5688, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96175, '2022-06-29', 1674, 90744, 5688, 55628, '2.0000', '0.8028', '0.8028', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96176, '2022-06-29', 1935, 90745, 5688, 57809, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96177, '2022-06-29', 1806, 90746, 5688, NULL, '2.0000', '29.2252', '29.2252', '40.5000', '40.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 (96178, '2022-06-29', 1689, 90747, 5688, 56468, '1.0000', '15.5565', '15.5565', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96179, '2022-06-29', 9828, 90748, 5688, NULL, '1.0000', '2.9100', '2.9100', '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 (96180, '2022-06-29', 1863, 90749, 5688, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96181, '2022-06-29', 9743, 90750, 5688, 47094, '1.0000', '13.2429', '13.2429', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96182, '2022-06-29', 1665, 90751, 5688, 57073, '2.0000', '1.1685', '1.1685', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96183, '2022-06-29', 1533, 90752, 5688, 55682, '1.0000', '3.4598', '3.4598', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96184, '2022-06-29', 2821, 90753, 5688, 57741, '1.0000', '3.4130', '3.4130', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96185, '2022-06-29', 1486, 90754, 5688, 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 (96186, '2022-06-29', 9653, 90755, 5688, NULL, '2.0000', '46.0000', '46.0000', '60.0000', '60.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 (96187, '2022-06-29', 2384, 90756, 5688, NULL, '5.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-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 (96188, '2022-06-29', 2948, 90757, 5688, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96189, '2022-06-29', 7944, 90758, 5688, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96190, '2022-06-29', 2275, 90759, 5688, 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 (96191, '2022-06-29', 9821, 90760, 5688, 57690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96192, '2022-06-29', 2435, 90761, 5688, NULL, '1.0000', '7.9565', '7.9565', '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 (96193, '2022-06-29', 7790, 90762, 5689, NULL, '1.0000', '17.0000', '17.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 (96194, '2022-06-29', 9463, 90763, 5689, NULL, '1.0000', '287.4328', '287.4328', '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 (96195, '2022-06-29', 1946, 90764, 5689, NULL, '1.0000', '-4.7391', '-4.7391', '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 (96196, '2022-06-29', 2545, 90765, 5689, 55650, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96197, '2022-06-29', 1337, 90766, 5689, 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 (96198, '2022-06-29', 2366, 90767, 5689, NULL, '2.0000', '-51.4778', '-51.4778', '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 (96199, '2022-06-29', 2777, 90768, 5689, 55916, '1.0000', '3.7508', '3.7508', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96200, '2022-06-29', 1425, 90769, 5689, NULL, '1.0000', '-104.0456', '-104.0456', '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 (96201, '2022-06-29', 1806, 90770, 5689, NULL, '1.0000', '29.2252', '29.2252', '40.5000', '40.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96202, '2022-06-29', 2315, 90771, 5689, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '143.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96203, '2022-06-29', 2335, 90772, 5689, 57803, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96204, '2022-06-29', 1412, 90773, 5689, 48991, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96205, '2022-06-29', 2986, 90774, 5690, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96206, '2022-06-29', 1912, 90775, 5690, 57704, '3.0000', '0.6868', '0.6868', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96207, '2022-06-29', 1650, 90776, 5690, 33143, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96208, '2022-06-29', 2068, 90777, 5690, 52329, '1.0000', '11.5810', '11.5810', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96209, '2022-06-29', 9920, 90778, 5690, NULL, '1.0000', '3.3000', '3.3000', '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 (96210, '2022-06-29', 2315, 90779, 5690, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '141.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96211, '2022-06-29', 1863, 90780, 5690, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96212, '2022-06-29', 1711, 90781, 5690, 53679, '1.0000', '9.3308', '9.3308', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96213, '2022-06-29', 1839, 90782, 5690, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (96214, '2022-06-29', 9821, 90783, 5690, 57690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96215, '2022-06-29', 1646, 90784, 5690, 57673, '1.0000', '5.6966', '5.6966', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96216, '2022-06-29', 1946, 90785, 5690, NULL, '1.0000', '-4.7391', '-4.7391', '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 (96217, '2022-06-29', 1493, 90786, 5690, NULL, '1.0000', '-27.3400', '-27.3400', '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 (96218, '2022-06-29', 2169, 90787, 5690, 57709, '1.0000', '1.6576', '1.6576', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96219, '2022-06-29', 2020, 90788, 5690, NULL, '1.0000', '1309.0500', '1309.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 (96220, '2022-06-29', 2293, 90789, 5690, NULL, '3.0000', '-17.4320', '-17.4320', '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 (96221, '2022-06-29', 1307, 90790, 5691, NULL, '1.0000', '-59.9897', '-59.9897', '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 (96222, '2022-06-29', 1863, 90791, 5691, 57733, '2.0000', '1.4714', '1.4714', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96223, '2022-06-29', 2289, 90792, 5691, 56470, '3.0000', '0.3611', '0.3611', '0.5000', '0.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96224, '2022-06-29', 1841, 90793, 5691, NULL, '3.0000', '0.7630', '0.7630', '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 (96225, '2022-06-29', 2435, 90794, 5691, NULL, '1.0000', '7.9565', '7.9565', '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 (96226, '2022-06-29', 2135, 90795, 5691, NULL, '2.0000', '-0.2588', '-0.2588', '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 (96227, '2022-06-29', 1369, 90796, 5692, 55569, '1.0000', '7.2000', '7.2000', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96228, '2022-06-29', 9840, 90797, 5692, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96229, '2022-06-29', 2948, 90798, 5692, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96230, '2022-06-29', 2332, 90799, 5692, NULL, '2.0000', '32.4933', '32.4933', '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 (96231, '2022-06-29', 8982, 90800, 5692, NULL, '1.0000', '11.3489', '11.3489', '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 (96232, '2022-06-29', 2965, 90801, 5692, NULL, '1.0000', '9.1051', '9.1051', '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 (96233, '2022-06-29', 1743, 90802, 5692, NULL, '1.0000', '4.6550', '4.6550', '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 (96234, '2022-06-29', 1715, 90803, 5692, NULL, '1.0000', '9.5000', '9.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 (96235, '2022-06-29', 9828, 90804, 5692, NULL, '1.0000', '2.9100', '2.9100', '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 (96236, '2022-06-29', 1935, 90805, 5692, 57809, '1.0000', '0.1236', '0.1236', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96237, '2022-06-29', 8775, 90806, 5692, 57094, '1.0000', '1.9789', '1.9789', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96238, '2022-06-29', 1590, 90807, 5692, 54532, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96239, '2022-06-29', 2315, 90808, 5692, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '140.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96240, '2022-06-29', 1856, 90809, 5692, NULL, '1.0000', '155.0099', '155.0099', '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 (96241, '2022-06-29', 9927, 90810, 5692, 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 (96242, '2022-06-29', 8079, 90811, 5692, NULL, '3.0000', '16.6100', '16.6100', '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 (96243, '2022-06-29', 2221, 90812, 5692, NULL, '1.0000', '2.3805', '2.3805', '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 (96244, '2022-06-29', 9724, 90813, 5693, 57621, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96245, '2022-06-29', 9715, 90814, 5693, 57629, '1.0000', '9.9147', '9.9147', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96246, '2022-06-29', 1557, 90815, 5693, 57609, '1.0000', '8.0725', '8.0725', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96247, '2022-06-29', 8303, 90816, 5693, 54293, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96248, '2022-06-29', 7317, 90817, 5693, 57642, '1.0000', '15.2534', '15.2534', '22.5000', '22.5000', '16.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96249, '2022-06-29', 7674, 90818, 5693, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96250, '2022-06-29', 7638, 90819, 5693, 56526, '1.0000', '7.0429', '7.0429', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96251, '2022-06-29', 7570, 90820, 5693, 53932, '1.0000', '6.8025', '6.8025', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96252, '2022-06-29', 7674, 90821, 5693, 56584, '2.0000', '120.7007', '120.7007', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96253, '2022-06-29', 7334, 90822, 5693, 57417, '1.0000', '9.1591', '9.1591', '13.5000', '13.5000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96254, '2022-06-29', 2315, 90823, 5693, 57597, '3.0000', '0.7562', '0.7562', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96255, '2022-06-29', 8196, 90824, 5693, NULL, '3.0000', '53.3100', '53.3100', '42.5000', '42.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 (96256, '2022-06-29', 7672, 90825, 5693, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96257, '2022-06-29', 7787, 90826, 5693, NULL, '1.0000', '11.7735', '11.7735', '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 (96258, '2022-06-29', 7859, 90827, 5693, 57172, '1.0000', '13.2900', '13.2900', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96259, '2022-06-29', 7989, 90828, 5693, NULL, '2.0000', '775.2804', '775.2804', '60.0000', '60.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 (96260, '2022-06-29', 8000, 90829, 5693, 57616, '1.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96261, '2022-06-29', 9092, 90830, 5693, 52527, '1.0000', '0.3175', '0.3175', '0.5000', '0.5000', '64.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96262, '2022-06-29', 7730, 90831, 5693, 57543, '2.0000', '0.1000', '0.1000', '0.2000', '0.2000', '106.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96263, '2022-06-29', 7588, 90832, 5693, 57165, '2.0000', '5.5821', '5.5821', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96264, '2022-06-29', 7535, 90833, 5693, 57390, '1.0000', '5.1390', '5.1390', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96265, '2022-06-29', 8005, 90834, 5693, NULL, '1.0000', '53.5000', '53.5000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96266, '2022-06-29', 9399, 90835, 5693, NULL, '1.0000', '0.9794', '0.9794', '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 (96267, '2022-06-29', 2289, 90836, 5693, NULL, '4.0000', '2.5688', '2.5688', '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 (96268, '2022-06-29', 9729, 90837, 5693, 56613, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96269, '2022-06-29', 7339, 90838, 5693, 56611, '10.0000', '-85.2778', '-85.2778', '0.9000', '0.9000', '80.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96270, '2022-06-29', 2740, 90839, 5693, 57419, '2.0000', '11.0640', '11.0640', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96271, '2022-06-29', 9891, 90840, 5693, 55109, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96272, '2022-06-29', 9811, 90841, 5693, 57198, '1.0000', '25.6556', '25.6556', '31.0000', '31.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96273, '2022-06-29', 1398, 90842, 5693, 56701, '1.0000', '8.6367', '8.6367', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96274, '2022-06-29', 9214, 90843, 5693, 57507, '1.0000', '-9.3835', '-9.3835', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96275, '2022-06-29', 7560, 90844, 5693, 57591, '1.0000', '41.1293', '41.1293', '56.0000', '56.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96276, '2022-06-29', 8328, 90845, 5693, NULL, '1.0000', '6.5306', '6.5306', '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 (96277, '2022-06-29', 9740, 90846, 5693, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96278, '2022-06-29', 7411, 90847, 5693, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96279, '2022-06-29', 1688, 90848, 5694, 56732, '1.0000', '19.9824', '19.9824', '31.5000', '31.5000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96280, '2022-06-29', 8068, 90849, 5694, 56982, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96281, '2022-06-29', 1532, 90850, 5695, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96282, '2022-06-29', 2221, 90851, 5695, NULL, '1.0000', '2.3805', '2.3805', '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 (96283, '2022-06-29', 7411, 90852, 5695, NULL, '1.0000', '1.3013', '1.3013', '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 (96284, '2022-06-29', 2754, 90853, 5695, 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 (96285, '2022-06-29', 9832, 90854, 5695, 57495, '1.0000', '1.7283', '1.7283', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96286, '2022-06-29', 7344, 90855, 5696, NULL, '9.0000', '94.2800', '94.2800', '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 (96287, '2022-06-29', 1470, 90856, 5696, 57671, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96288, '2022-06-29', 7444, 90857, 5697, NULL, '1.0000', '-160.1545', '-160.1545', '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 (96289, '2022-06-29', 7509, 90858, 5697, 57598, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96290, '2022-06-29', 9740, 90859, 5697, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96291, '2022-06-29', 8813, 90860, 5697, NULL, '1.0000', '17.6000', '17.6000', '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 (96292, '2022-06-29', 8000, 90861, 5697, 57616, '1.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96293, '2022-06-29', 9177, 90862, 5697, 57428, '10.0000', '-11.3652', '-11.3652', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96294, '2022-06-29', 7518, 90863, 5697, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96295, '2022-06-29', 2315, 90864, 5698, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '139.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96296, '2022-06-29', 1602, 90865, 5698, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96297, '2022-06-29', 8740, 90866, 5698, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96298, '2022-06-29', 2260, 90867, 5698, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96299, '2022-06-29', 1410, 90868, 5699, 56900, '1.0000', '2.8637', '2.8637', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96300, '2022-06-29', 9815, 90869, 5699, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '20.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96301, '2022-06-29', 2669, 90870, 5699, 46611, '2.0000', '25.1873', '25.1873', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96302, '2022-06-29', 7638, 90871, 5699, 44598, '3.0000', '1.1651', '1.1651', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96303, '2022-06-29', 1371, 90872, 5699, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96304, '2022-06-29', 1519, 90873, 5699, 55886, '1.0000', '3.3940', '3.3940', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96305, '2022-06-29', 2315, 90874, 5699, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.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 (96306, '2022-06-29', 8763, 90875, 5699, 58007, '1.0000', '28.0200', '28.0200', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96307, '2022-06-29', 9827, 90876, 5699, 57965, '1.0000', '16.7251', '16.7251', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96308, '2022-06-29', 8677, 90877, 5699, 49108, '3.0000', '2.2418', '2.2418', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96309, '2022-06-29', 8548, 90878, 5699, NULL, '1.0000', '12.0000', '12.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 (96310, '2022-06-29', 2821, 90879, 5699, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96311, '2022-06-29', 1612, 90880, 5699, 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 (96312, '2022-06-29', 7744, 90881, 5699, NULL, '1.0000', '2.9400', '2.9400', '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 (96313, '2022-06-29', 2379, 90882, 5699, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96314, '2022-06-29', 2415, 90883, 5699, 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 (96315, '2022-06-29', 1954, 90884, 5699, 47998, '1.0000', '-11.3000', '-11.3000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96316, '2022-06-29', 9794, 90885, 5699, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '59.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96317, '2022-06-29', 7482, 90886, 5700, NULL, '1.0000', '3.0500', '3.0500', '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 (96318, '2022-06-29', 2167, 90887, 5700, 57982, '1.0000', '2.4773', '2.4773', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96319, '2022-06-29', 2169, 90888, 5700, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96320, '2022-06-29', 1935, 90889, 5700, 57988, '1.0000', '1.3001', '1.3001', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96321, '2022-06-29', 9275, 90890, 5700, NULL, '2.0000', '6.3000', '6.3000', '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 (96322, '2022-06-29', 1837, 90891, 5700, 56224, '5.0000', '0.5767', '0.5767', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96323, '2022-06-29', 1592, 90892, 5700, 56736, '1.0000', '35.6192', '35.6192', '52.0000', '52.0000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96324, '2022-06-29', 1863, 90893, 5700, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96325, '2022-06-29', 1602, 90894, 5700, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96326, '2022-06-29', 1665, 90895, 5700, 57952, '1.0000', '1.1816', '1.1816', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96327, '2022-06-29', 1612, 90896, 5700, 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 (96328, '2022-06-29', 2135, 90897, 5700, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96329, '2022-06-29', 2893, 90898, 5700, 56879, '1.0000', '6.5687', '6.5687', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96330, '2022-06-29', 2135, 90899, 5700, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96331, '2022-06-29', 2237, 90900, 5700, 54421, '2.0000', '1.3518', '1.3518', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96332, '2022-06-29', 2935, 90901, 5700, 56949, '1.0000', '12.1760', '12.1760', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96333, '2022-06-29', 1999, 90902, 5700, 56347, '1.0000', '7.3337', '7.3337', '12.0000', '12.0000', '11.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96334, '2022-06-29', 2106, 90903, 5700, 6018, '1.0000', '0.9900', '0.9900', '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 (96335, '2022-06-29', 1598, 90904, 5700, 49141, '1.0000', '4.0345', '4.0345', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96336, '2022-06-29', 1812, 90905, 5700, 55784, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96337, '2022-06-29', 2381, 90906, 5700, 57944, '1.0000', '11.1107', '11.1107', '19.2700', '19.2700', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96338, '2022-06-29', 7753, 90907, 5700, NULL, '1.0000', '3.1400', '3.1400', '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 (96339, '2022-06-29', 2167, 90908, 5700, 57982, '2.0000', '2.4773', '2.4773', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96340, '2022-06-29', 1863, 90909, 5700, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96341, '2022-06-29', 2248, 90910, 5700, 55871, '1.0000', '3.0210', '3.0210', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96342, '2022-06-29', 9715, 90911, 5700, 54667, '1.0000', '9.4000', '9.4000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96343, '2022-06-29', 9775, 90912, 5700, 57983, '1.0000', '10.4000', '10.4000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96344, '2022-06-29', 2248, 90913, 5700, 55871, '1.0000', '3.0210', '3.0210', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96345, '2022-06-29', 9625, 90914, 5700, 40290, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96346, '2022-06-29', 1651, 90915, 5700, 57968, '1.0000', '7.7134', '7.7134', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96347, '2022-06-30', 7318, 90916, 5701, 55904, '1.0000', '10.6757', '10.6757', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96348, '2022-06-30', 1580, 90917, 5701, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96349, '2022-06-30', 1783, 90918, 5701, 57793, '1.0000', '11.0704', '11.0704', '13.5000', '13.5000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96350, '2022-06-30', 1776, 90919, 5701, NULL, '1.0000', '90.0000', '90.0000', '6.2000', '6.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 (96351, '2022-06-30', 2284, 90920, 5701, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96352, '2022-06-30', 7944, 90921, 5701, 58223, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96353, '2022-06-30', 2169, 90922, 5701, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96354, '2022-06-30', 8367, 90923, 5701, NULL, '1.0000', '9.5000', '9.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 (96355, '2022-06-30', 1904, 90924, 5701, 56403, '2.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96356, '2022-06-30', 7344, 90925, 5701, NULL, '5.0000', '94.2800', '94.2800', '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 (96357, '2022-06-30', 2068, 90926, 5701, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96358, '2022-06-30', 2284, 90927, 5701, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96359, '2022-06-30', 2169, 90928, 5701, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96360, '2022-06-30', 1602, 90929, 5701, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96361, '2022-06-30', 2284, 90930, 5701, 55637, '2.0000', '1.3400', '1.3400', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96362, '2022-06-30', 8622, 90931, 5701, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96363, '2022-06-30', 1532, 90932, 5701, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96364, '2022-06-30', 1532, 90933, 5701, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96365, '2022-06-30', 1867, 90934, 5701, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96366, '2022-06-30', 1674, 90935, 5701, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96367, '2022-06-30', 1908, 90936, 5701, NULL, '1.0000', '0.9032', '0.9032', '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 (96368, '2022-06-30', 8984, 90937, 5701, NULL, '1.0000', '-2216.1099', '-2216.1099', '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 (96369, '2022-06-30', 2169, 90938, 5701, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96370, '2022-06-30', 1785, 90939, 5701, 58167, '1.0000', '17.5552', '17.5552', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96371, '2022-06-30', 8984, 90940, 5701, NULL, '1.0000', '-2216.1099', '-2216.1099', '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 (96372, '2022-06-30', 2413, 90941, 5701, NULL, '2.0000', '1.0500', '1.0500', '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 (96373, '2022-06-30', 9827, 90942, 5701, 57810, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96374, '2022-06-30', 1313, 90943, 5701, 55923, '1.0000', '0.8043', '0.8043', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96375, '2022-06-30', 1867, 90944, 5701, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96376, '2022-06-30', 2068, 90945, 5701, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96377, '2022-06-30', 7318, 90946, 5702, 55904, '1.0000', '10.6757', '10.6757', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96378, '2022-06-30', 1580, 90947, 5702, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96379, '2022-06-30', 1783, 90948, 5702, 57793, '1.0000', '11.0704', '11.0704', '13.5000', '13.5000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96380, '2022-06-30', 1776, 90949, 5702, NULL, '1.0000', '90.0000', '90.0000', '6.2000', '6.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 (96381, '2022-06-30', 2284, 90950, 5702, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96382, '2022-06-30', 7944, 90951, 5702, 58223, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96383, '2022-06-30', 2169, 90952, 5702, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96384, '2022-06-30', 8367, 90953, 5702, NULL, '1.0000', '9.5000', '9.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 (96385, '2022-06-30', 1904, 90954, 5702, 56403, '1.0000', '-21.7625', '-21.7625', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96386, '2022-06-30', 1904, 90954, 5702, NULL, '1.0000', '-21.7625', '-21.7625', '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 (96387, '2022-06-30', 7344, 90955, 5702, NULL, '5.0000', '94.2800', '94.2800', '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 (96388, '2022-06-30', 2068, 90956, 5702, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96389, '2022-06-30', 2284, 90957, 5702, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96390, '2022-06-30', 2169, 90958, 5702, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96391, '2022-06-30', 1602, 90959, 5702, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96392, '2022-06-30', 2284, 90960, 5702, 55637, '2.0000', '1.3400', '1.3400', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96393, '2022-06-30', 8622, 90961, 5702, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96394, '2022-06-30', 1532, 90962, 5702, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96395, '2022-06-30', 1532, 90963, 5702, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96396, '2022-06-30', 1867, 90964, 5702, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96397, '2022-06-30', 1674, 90965, 5702, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96398, '2022-06-30', 1908, 90966, 5702, NULL, '1.0000', '0.9032', '0.9032', '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 (96399, '2022-06-30', 8984, 90967, 5702, NULL, '1.0000', '-2216.1099', '-2216.1099', '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 (96400, '2022-06-30', 2169, 90968, 5702, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96401, '2022-06-30', 1785, 90969, 5702, 58167, '1.0000', '17.5552', '17.5552', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96402, '2022-06-30', 8984, 90970, 5702, NULL, '1.0000', '-2216.1099', '-2216.1099', '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 (96403, '2022-06-30', 2413, 90971, 5702, NULL, '2.0000', '1.0500', '1.0500', '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 (96404, '2022-06-30', 9827, 90972, 5702, 57810, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96405, '2022-06-30', 1313, 90973, 5702, 55923, '1.0000', '0.8043', '0.8043', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96406, '2022-06-30', 1867, 90974, 5702, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96407, '2022-06-30', 2068, 90975, 5702, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96408, '2022-06-30', 2315, 90976, 5703, 2735, '-522.0000', '0.3300', '0.3300', '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 (96409, '2022-06-30', 2315, 90976, 5703, NULL, '523.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-523.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96410, '2022-06-30', 7583, 90977, 5703, NULL, '1.0000', '4.0000', '4.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 (96411, '2022-06-30', 8539, 90978, 5703, NULL, '3.0000', '31.8000', '31.8000', '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 (96412, '2022-06-30', 2295, 90979, 5703, 2954, '-29.0000', '0.9600', '0.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 (96413, '2022-06-30', 2295, 90979, 5703, NULL, '32.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96414, '2022-06-30', 8677, 90980, 5703, NULL, '2.0000', '1.2800', '1.2800', '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 (96415, '2022-06-30', 7412, 90981, 5703, NULL, '2.0000', '1.5200', '1.5200', '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 (96416, '2022-06-30', 1647, 90982, 5703, 3218, '-18.0000', '4.7200', '4.7200', '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 (96417, '2022-06-30', 1647, 90982, 5703, NULL, '19.0000', '4.7200', '4.7200', '8.0000', '8.0000', '-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 (96418, '2022-06-30', 7411, 90983, 5703, NULL, '2.0000', '1.3500', '1.3500', '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 (96419, '2022-06-30', 7748, 90984, 5703, NULL, '1.0000', '7.3000', '7.3000', '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 (96420, '2022-06-30', 2411, 90985, 5703, 4503, '-6.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 (96421, '2022-06-30', 2411, 90985, 5703, NULL, '7.0000', '1.5000', '1.5000', '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 (96422, '2022-06-30', 9791, 90986, 5703, 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 (96423, '2022-06-30', 2295, 90987, 5703, 2954, '-29.0000', '0.9600', '0.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 (96424, '2022-06-30', 2295, 90987, 5703, NULL, '31.0000', '0.9600', '0.9600', '2.5000', '2.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 (96425, '2022-06-30', 7852, 90988, 5703, NULL, '1.0000', '15.0000', '15.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 (96426, '2022-06-30', 2655, 90989, 5703, 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 (96427, '2022-06-30', 7514, 90990, 5703, NULL, '1.0000', '2.2500', '2.2500', '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 (96428, '2022-06-30', 7730, 90991, 5703, NULL, '4.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (96429, '2022-06-30', 9569, 90992, 5703, NULL, '1.0000', '145.5600', '145.5600', '175.0000', '175.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96430, '2022-06-30', 7703, 90993, 5703, NULL, '1.0000', '22.9900', '22.9900', '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 (96431, '2022-06-30', 8101, 90994, 5703, NULL, '2.0000', '1.9700', '1.9700', '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 (96432, '2022-06-30', 2237, 90995, 5704, 2781, '-74.0000', '1.0600', '1.0600', '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 (96433, '2022-06-30', 2237, 90995, 5704, NULL, '75.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96434, '2022-06-30', 1912, 90996, 5704, NULL, '2.0000', '0.3200', '0.3200', '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 (96435, '2022-06-30', 2853, 90997, 5704, NULL, '1.0000', '18.5900', '18.5900', '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 (96436, '2022-06-30', 8418, 90998, 5704, NULL, '1.0000', '35.1900', '35.1900', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96437, '2022-06-30', 2442, 90999, 5704, 5312, '-10.0000', '4.8000', '4.8000', '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 (96438, '2022-06-30', 2442, 90999, 5704, NULL, '11.0000', '4.8000', '4.8000', '8.0000', '8.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 (96439, '2022-06-30', 2440, 91000, 5704, 5309, '-5.0000', '5.3000', '5.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 (96440, '2022-06-30', 2440, 91000, 5704, NULL, '6.0000', '5.3000', '5.3000', '12.0000', '12.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 (96441, '2022-06-30', 2109, 91001, 5704, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '67.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 (96442, '2022-06-30', 2237, 91002, 5704, 2781, '-74.0000', '1.0600', '1.0600', '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 (96443, '2022-06-30', 2237, 91002, 5704, NULL, '75.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96444, '2022-06-30', 9741, 91003, 5704, NULL, '1.0000', '7.6000', '7.6000', '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 (96445, '2022-06-30', 1621, 91004, 5704, 7385, '-14.0000', '6.6000', '6.6000', '8.8000', '8.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 (96446, '2022-06-30', 1621, 91004, 5704, NULL, '15.0000', '6.6000', '6.6000', '8.8000', '8.8000', '-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 (96447, '2022-06-30', 2154, 91005, 5704, 13520, '-1.0000', '10.6849', '10.6849', '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 (96448, '2022-06-30', 2154, 91005, 5704, NULL, '2.0000', '10.6849', '10.6849', '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 (96449, '2022-06-30', 1903, 91006, 5704, 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 (96450, '2022-06-30', 2167, 91007, 5704, 17165, '-50.0000', '2.2000', '2.2000', '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 (96451, '2022-06-30', 2167, 91007, 5704, NULL, '51.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-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 (96452, '2022-06-30', 2073, 91008, 5704, 22247, '2.0000', '2.3000', '2.3000', '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 (96453, '2022-06-30', 1961, 91009, 5704, 4501, '-4.0000', '20.4530', '20.4530', '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 (96454, '2022-06-30', 1961, 91009, 5704, NULL, '5.0000', '20.4530', '20.4530', '35.0000', '35.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 (96455, '2022-06-30', 3029, 91010, 5704, NULL, '1.0000', '4.7700', '4.7700', '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 (96456, '2022-06-30', 1620, 91011, 5704, 8955, '-68.0000', '408.8259', '408.8259', '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 (96457, '2022-06-30', 1620, 91011, 5704, NULL, '69.0000', '408.8259', '408.8259', '3.5000', '3.5000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96458, '2022-06-30', 2444, 91012, 5704, 5314, '-10.0000', '6.0000', '6.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96459, '2022-06-30', 2444, 91012, 5704, NULL, '11.0000', '6.0000', '6.0000', '14.0000', '14.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 (96460, '2022-06-30', 2270, 91013, 5704, 2930, '-15.0000', '0.9880', '0.9880', '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 (96461, '2022-06-30', 2270, 91013, 5704, NULL, '16.0000', '0.9880', '0.9880', '7.0000', '7.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 (96462, '2022-06-30', 2105, 91014, 5704, NULL, '2.0000', '1.3500', '1.3500', '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 (96463, '2022-06-30', 8763, 91015, 5704, NULL, '1.0000', '5.4000', '5.4000', '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 (96464, '2022-06-30', 8017, 91016, 5705, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96465, '2022-06-30', 7881, 91017, 5705, NULL, '1.0000', '32.7700', '32.7700', '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 (96466, '2022-06-30', 1912, 91018, 5705, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96467, '2022-06-30', 2352, 91019, 5705, NULL, '2.0000', '126.2588', '126.2588', '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 (96468, '2022-06-30', 7316, 91020, 5705, 54885, '5.0000', '0.9020', '0.9020', '1.3000', '1.3000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96469, '2022-06-30', 2617, 91021, 5705, NULL, '1.0000', '5.1800', '5.1800', '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 (96470, '2022-06-30', 1840, 91022, 5705, NULL, '1.0000', '0.2400', '0.2400', '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 (96471, '2022-06-30', 1841, 91023, 5705, NULL, '1.0000', '0.7630', '0.7630', '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 (96472, '2022-06-30', 7636, 91024, 5705, NULL, '1.0000', '11.8700', '11.8700', '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 (96473, '2022-06-30', 1808, 91025, 5705, 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 (96474, '2022-06-30', 8017, 91026, 5705, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96475, '2022-06-30', 7743, 91027, 5705, NULL, '2.0000', '7.3900', '7.3900', '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 (96476, '2022-06-30', 9762, 91028, 5705, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96477, '2022-06-30', 1827, 91029, 5705, NULL, '10.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-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 (96478, '2022-06-30', 2315, 91030, 5705, 54963, '4.0000', '0.7701', '0.7701', '1.0000', '1.0000', '135.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96479, '2022-06-30', 2221, 91031, 5705, NULL, '1.0000', '2.3805', '2.3805', '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 (96480, '2022-06-30', 1577, 91032, 5705, NULL, '1.0000', '0.4895', '0.4895', '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 (96481, '2022-06-30', 7864, 91033, 5705, 39767, '1.0000', '17.7700', '17.7700', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96482, '2022-06-30', 9856, 91034, 5705, 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 (96483, '2022-06-30', 9030, 91035, 5705, 57805, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96484, '2022-06-30', 2259, 91036, 5705, 58154, '1.0000', '25.7085', '25.7085', '34.0000', '34.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96485, '2022-06-30', 2887, 91037, 5705, 57756, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96486, '2022-06-30', 8133, 91038, 5705, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (96487, '2022-06-30', 1910, 91039, 5705, 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 (96488, '2022-06-30', 2277, 91040, 5705, NULL, '1.0000', '0.9399', '0.9399', '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 (96489, '2022-06-30', 2169, 91041, 5705, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96490, '2022-06-30', 2384, 91042, 5705, NULL, '1.0000', '-0.4538', '-0.4538', '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 (96491, '2022-06-30', 7514, 91043, 5705, NULL, '2.0000', '2.2500', '2.2500', '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 (96492, '2022-06-30', 7959, 91044, 5705, NULL, '1.0000', '9.6000', '9.6000', '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 (96493, '2022-06-30', 1577, 91045, 5705, NULL, '1.0000', '0.4895', '0.4895', '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 (96494, '2022-06-30', 2169, 91046, 5705, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96495, '2022-06-30', 9743, 91047, 5705, 58138, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96496, '2022-06-30', 9856, 91048, 5705, 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 (96497, '2022-06-30', 1520, 91049, 5705, 57085, '2.0000', '1.7877', '1.7877', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96498, '2022-06-30', 1935, 91050, 5705, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96499, '2022-06-30', 2225, 91051, 5705, NULL, '1.0000', '18.5000', '18.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 (96500, '2022-06-30', 2224, 91052, 5705, 53640, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96501, '2022-06-30', 2224, 91052, 5705, 53436, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96502, '2022-06-30', 8641, 91053, 5705, 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 (96503, '2022-06-30', 7933, 91054, 5705, NULL, '1.0000', '-0.1222', '-0.1222', '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 (96504, '2022-06-30', 9904, 91055, 5705, 54842, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96505, '2022-06-30', 7886, 91056, 5705, NULL, '1.0000', '14.5000', '14.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 (96506, '2022-06-30', 2315, 91057, 5705, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '138.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96507, '2022-06-30', 3059, 91058, 5705, 37758, '2.0000', '2.2083', '2.2083', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96508, '2022-06-30', 9695, 91059, 5705, 58072, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96509, '2022-06-30', 7398, 91060, 5705, NULL, '2.0000', '143.5000', '143.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 (96510, '2022-06-30', 2036, 91061, 5705, 57089, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96511, '2022-06-30', 2169, 91062, 5705, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96512, '2022-06-30', 2315, 91063, 5705, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '138.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96513, '2022-06-30', 1665, 91064, 5705, 57073, '7.0000', '1.1685', '1.1685', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96514, '2022-06-30', 1665, 91064, 5705, 55689, '6.0000', '1.1685', '1.1685', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96515, '2022-06-30', 9727, 91065, 5705, 53234, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96516, '2022-06-30', 9482, 91066, 5705, 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 (96517, '2022-06-30', 8893, 91067, 5705, NULL, '1.0000', '8.0000', '8.0000', '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 (96518, '2022-06-30', 2058, 91068, 5705, NULL, '1.0000', '10.0000', '10.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 (96519, '2022-06-30', 8740, 91069, 5705, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96520, '2022-06-30', 1806, 91070, 5706, 56148, '1.0000', '51.1040', '51.1040', '40.5000', '40.5000', '3.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96521, '2022-06-30', 7781, 91071, 5706, NULL, '3.0000', '6.8496', '6.8496', '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 (96522, '2022-06-30', 7412, 91072, 5706, 54506, '1.0000', '2.1023', '2.1023', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96523, '2022-06-30', 7674, 91073, 5706, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96524, '2022-06-30', 9272, 91074, 5706, NULL, '1.0000', '3.1000', '3.1000', '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 (96525, '2022-06-30', 7446, 91075, 5706, 56607, '1.0000', '1.5241', '1.5241', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96526, '2022-06-30', 9092, 91076, 5706, 52527, '3.0000', '0.3175', '0.3175', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96527, '2022-06-30', 7641, 91077, 5706, 55967, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96528, '2022-06-30', 7780, 91078, 5706, NULL, '1.0000', '-632.7715', '-632.7715', '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 (96529, '2022-06-30', 7807, 91079, 5706, 57411, '4.0000', '-61.8000', '-61.8000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96530, '2022-06-30', 7911, 91080, 5706, 56650, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96531, '2022-06-30', 9271, 91081, 5706, 56566, '1.0000', '1.8173', '1.8173', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96532, '2022-06-30', 9943, 91082, 5706, 57189, '1.0000', '10.5500', '10.5500', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96533, '2022-06-30', 9693, 91083, 5706, 54133, '1.0000', '41.8000', '41.8000', '55.5000', '55.5000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96534, '2022-06-30', 9740, 91084, 5706, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96535, '2022-06-30', 7334, 91085, 5706, 57417, '3.0000', '9.1591', '9.1591', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96536, '2022-06-30', 7658, 91086, 5706, 56019, '5.0000', '188.9318', '188.9318', '3.5000', '3.5000', '84.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96537, '2022-06-30', 9744, 91087, 5706, 56690, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96538, '2022-06-30', 7518, 91088, 5706, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96539, '2022-06-30', 9809, 91089, 5706, 57163, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96540, '2022-06-30', 7709, 91090, 5706, NULL, '2.0000', '916.6097', '916.6097', '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 (96541, '2022-06-30', 2847, 91091, 5706, 48100, '1.0000', '13.9557', '13.9557', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96542, '2022-06-30', 9724, 91092, 5706, 57621, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96543, '2022-06-30', 7730, 91093, 5706, 57543, '7.0000', '0.1000', '0.1000', '0.2000', '0.2000', '99.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96544, '2022-06-30', 7514, 91094, 5706, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96545, '2022-06-30', 9809, 91095, 5706, 57163, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96546, '2022-06-30', 2315, 91096, 5706, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96547, '2022-06-30', 7753, 91097, 5706, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96548, '2022-06-30', 7644, 91098, 5706, 57422, '5.0000', '4.1645', '4.1645', '10.0000', '10.0000', '45.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96549, '2022-06-30', 8712, 91099, 5706, NULL, '1.0000', '6.5750', '6.5750', '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 (96550, '2022-06-30', 9286, 91100, 5706, 40393, '2.0000', '7.5000', '7.5000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96551, '2022-06-30', 8689, 91101, 5706, 50448, '1.0000', '8.6135', '8.6135', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96552, '2022-06-30', 1771, 91102, 5706, 39531, '1.0000', '11.9058', '11.9058', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96553, '2022-06-30', 7411, 91103, 5706, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96554, '2022-06-30', 2906, 91104, 5706, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96555, '2022-06-30', 7380, 91105, 5706, NULL, '2.0000', '11.5143', '11.5143', '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 (96556, '2022-06-30', 7518, 91106, 5706, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96557, '2022-06-30', 2506, 91107, 5706, 56514, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96558, '2022-06-30', 8052, 91108, 5706, 57418, '1.0000', '37.7100', '37.7100', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96559, '2022-06-30', 8677, 91109, 5706, 56676, '3.0000', '1.9860', '1.9860', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96560, '2022-06-30', 2740, 91110, 5706, 57419, '1.0000', '11.0640', '11.0640', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96561, '2022-06-30', 9740, 91111, 5706, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96562, '2022-06-30', 7482, 91112, 5706, 57429, '2.0000', '4.2593', '4.2593', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96563, '2022-06-30', 2699, 91113, 5706, 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 (96564, '2022-06-30', 7411, 91114, 5706, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96565, '2022-06-30', 7782, 91115, 5706, NULL, '1.0000', '5.0000', '5.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 (96566, '2022-06-30', 7674, 91116, 5706, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96567, '2022-06-30', 9463, 91117, 5706, 56606, '1.0000', '3.7096', '3.7096', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96568, '2022-06-30', 9178, 91118, 5706, 57579, '1.0000', '5.4242', '5.4242', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96569, '2022-06-30', 8061, 91119, 5706, 57544, '1.0000', '31.2141', '31.2141', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96570, '2022-06-30', 7585, 91120, 5706, 57168, '1.0000', '5.1389', '5.1389', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96571, '2022-06-30', 1855, 91121, 5706, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96572, '2022-06-30', 8032, 91122, 5706, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96573, '2022-06-30', 9946, 91123, 5706, 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 (96574, '2022-06-30', 7514, 91124, 5706, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96575, '2022-06-30', 7509, 91125, 5706, 57598, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96576, '2022-06-30', 9092, 91126, 5706, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '62.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96577, '2022-06-30', 7730, 91127, 5706, 57543, '5.0000', '0.1000', '0.1000', '0.2000', '0.2000', '101.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96578, '2022-06-30', 8000, 91128, 5706, 57616, '2.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96579, '2022-06-30', 7446, 91129, 5706, 56607, '1.0000', '1.5241', '1.5241', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96580, '2022-06-30', 7634, 91130, 5706, 57608, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96581, '2022-06-30', 7641, 91131, 5706, 55967, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96582, '2022-06-30', 7409, 91132, 5706, 55111, '1.0000', '5.0453', '5.0453', '19.0000', '19.0000', '9.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96583, '2022-06-30', 9740, 91133, 5706, 55131, '2.0000', '0.6600', '0.6600', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96584, '2022-06-30', 7672, 91134, 5706, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96585, '2022-06-30', 7911, 91135, 5706, 56650, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96586, '2022-06-30', 8020, 91136, 5706, 55995, '1.0000', '11.2392', '11.2392', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96587, '2022-06-30', 7730, 91137, 5706, 57543, '2.0000', '0.1000', '0.1000', '0.2000', '0.2000', '104.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96588, '2022-06-30', 7999, 91138, 5706, 46264, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96589, '2022-06-30', 9740, 91139, 5706, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96590, '2022-06-30', 7411, 91140, 5707, NULL, '1.0000', '1.2819', '1.2819', '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 (96591, '2022-06-30', 2283, 91141, 5707, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96592, '2022-06-30', 9794, 91142, 5707, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '94.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96593, '2022-06-30', 7514, 91143, 5707, NULL, '1.0000', '2.2500', '2.2500', '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 (96594, '2022-06-30', 7744, 91144, 5707, NULL, '1.0000', '2.5833', '2.5833', '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 (96595, '2022-06-30', 7641, 91145, 5707, NULL, '1.0000', '1.9000', '1.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 (96596, '2022-06-30', 1787, 91146, 5707, NULL, '1.0000', '0.5000', '0.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 (96597, '2022-06-30', 9695, 91147, 5707, 58072, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96598, '2022-06-30', 2169, 91148, 5707, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96599, '2022-06-30', 2135, 91149, 5707, NULL, '1.0000', '-0.2588', '-0.2588', '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 (96600, '2022-06-30', 7514, 91150, 5707, NULL, '1.0000', '2.2500', '2.2500', '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 (96601, '2022-06-30', 7593, 91151, 5707, NULL, '1.0000', '0.8000', '0.8000', '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 (96602, '2022-06-30', 2315, 91152, 5707, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '132.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96603, '2022-06-30', 2135, 91153, 5707, NULL, '1.0000', '-0.2588', '-0.2588', '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 (96604, '2022-06-30', 7398, 91154, 5707, NULL, '1.0000', '143.5000', '143.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 (96605, '2022-06-30', 2342, 91155, 5707, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96606, '2022-06-30', 9735, 91156, 5707, 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 (96607, '2022-06-30', 7514, 91157, 5707, NULL, '1.0000', '2.2500', '2.2500', '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 (96608, '2022-06-30', 2315, 91158, 5708, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96609, '2022-06-30', 1935, 91159, 5708, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '116.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96610, '2022-06-30', 9523, 91160, 5708, 34543, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96611, '2022-06-30', 1499, 91161, 5709, 54670, '1.0000', '0.4174', '0.4174', '0.7000', '0.7000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96612, '2022-06-30', 1872, 91162, 5709, 56953, '1.0000', '10.3223', '10.3223', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96613, '2022-06-30', 7674, 91163, 5709, 50863, '1.0000', '0.8448', '0.8448', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96614, '2022-06-30', 8773, 91164, 5709, NULL, '3.0000', '-3.5797', '-3.5797', '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 (96615, '2022-06-30', 9089, 91165, 5709, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96616, '2022-06-30', 7954, 91166, 5709, 56718, '1.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96617, '2022-06-30', 9529, 91167, 5709, 44533, '1.0000', '9.2200', '9.2200', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96618, '2022-06-30', 9649, 91168, 5709, 56905, '1.0000', '16.7238', '16.7238', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96619, '2022-06-30', 1371, 91169, 5709, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96620, '2022-06-30', 7411, 91170, 5709, 55760, '3.0000', '1.3793', '1.3793', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96621, '2022-06-30', 1841, 91171, 5709, 54426, '6.0000', '0.0701', '0.0701', '0.5000', '0.5000', '26.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96622, '2022-06-30', 8165, 91172, 5709, 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 (96623, '2022-06-30', 8933, 91173, 5709, 58002, '1.0000', '8.7475', '8.7475', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96624, '2022-06-30', 9551, 91174, 5709, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '10.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96625, '2022-06-30', 2020, 91175, 5709, 57949, '1.0000', '6.2316', '6.2316', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96626, '2022-06-30', 1328, 91176, 5709, 55767, '1.0000', '3.9079', '3.9079', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96627, '2022-06-30', 1602, 91177, 5709, 57946, '2.0000', '7.0096', '7.0096', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96628, '2022-06-30', 2386, 91178, 5709, 56749, '1.0000', '2.8183', '2.8183', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96629, '2022-06-30', 2916, 91179, 5709, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96630, '2022-06-30', 1499, 91180, 5709, 54670, '1.0000', '0.4174', '0.4174', '0.7000', '0.7000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96631, '2022-06-30', 7952, 91181, 5709, NULL, '1.0000', '1.4000', '1.4000', '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 (96632, '2022-06-30', 2849, 91182, 5709, 17311, '1.0000', '5.8500', '5.8500', '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 (96633, '2022-06-30', 1856, 91183, 5710, NULL, '1.0000', '155.0099', '155.0099', '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 (96634, '2022-06-30', 9695, 91184, 5710, 58072, '2.0000', '5.3049', '5.3049', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96635, '2022-06-30', 2352, 91185, 5710, NULL, '2.0000', '126.2588', '126.2588', '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 (96636, '2022-06-30', 7707, 91186, 5710, NULL, '1.0000', '7.0000', '7.0000', '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 (96637, '2022-06-30', 1339, 91187, 5710, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96638, '2022-06-30', 2335, 91188, 5710, 57803, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96639, '2022-06-30', 2298, 91189, 5710, 57722, '1.0000', '-24.4602', '-24.4602', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96640, '2022-06-30', 1337, 91190, 5710, 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 (96641, '2022-06-30', 1863, 91191, 5710, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96642, '2022-06-30', 1602, 91192, 5711, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96643, '2022-06-30', 1856, 91193, 5712, NULL, '1.0000', '155.0099', '155.0099', '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 (96644, '2022-06-30', 9695, 91194, 5712, 58072, '2.0000', '5.3049', '5.3049', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96645, '2022-06-30', 2352, 91195, 5712, NULL, '2.0000', '126.2588', '126.2588', '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 (96646, '2022-06-30', 7707, 91196, 5712, NULL, '1.0000', '7.0000', '7.0000', '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 (96647, '2022-06-30', 1339, 91197, 5712, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96648, '2022-06-30', 2335, 91198, 5712, 57803, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96649, '2022-06-30', 2298, 91199, 5712, 57795, '1.0000', '-24.4602', '-24.4602', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96650, '2022-06-30', 1337, 91200, 5712, 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 (96651, '2022-06-30', 1863, 91201, 5712, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96652, '2022-07-01', 2315, 91202, 5713, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '130.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96653, '2022-07-01', 7564, 91203, 5713, NULL, '3.0000', '0.6400', '0.6400', '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 (96654, '2022-07-01', 1756, 91204, 5713, NULL, '2.0000', '4.9900', '4.9900', '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 (96655, '2022-07-01', 2565, 91205, 5713, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96656, '2022-07-01', 2916, 91206, 5713, NULL, '1.0000', '4209.2937', '4209.2937', '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 (96657, '2022-07-01', 8165, 91207, 5713, 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 (96658, '2022-07-01', 1640, 91208, 5713, NULL, '1.0000', '3.0496', '3.0496', '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 (96659, '2022-07-01', 3029, 91209, 5713, 58131, '1.0000', '-67.9257', '-67.9257', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96660, '2022-07-01', 1689, 91210, 5713, 58150, '1.0000', '15.6116', '15.6116', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96661, '2022-07-01', 2248, 91211, 5713, 56451, '1.0000', '3.3616', '3.3616', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96662, '2022-07-01', 1779, 91212, 5713, 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 (96663, '2022-07-01', 2754, 91213, 5713, NULL, '10.0000', '0.0800', '0.0800', '0.5000', '0.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 (96664, '2022-07-01', 8476, 91214, 5713, NULL, '2.0000', '23.0000', '23.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 (96665, '2022-07-01', 2315, 91215, 5713, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '131.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96666, '2022-07-01', 1904, 91216, 5713, NULL, '1.0000', '-21.7625', '-21.7625', '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 (96667, '2022-07-01', 3058, 91217, 5713, NULL, '1.0000', '-23.3000', '-23.3000', '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 (96668, '2022-07-01', 2227, 91218, 5713, 56628, '1.0000', '16.5881', '16.5881', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96669, '2022-07-01', 9828, 91219, 5713, NULL, '1.0000', '2.9100', '2.9100', '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 (96670, '2022-07-01', 9695, 91220, 5713, 58072, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96671, '2022-07-01', 1912, 91221, 5713, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96672, '2022-07-01', 2511, 91222, 5713, NULL, '1.0000', '13.8000', '13.8000', '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 (96673, '2022-07-01', 2315, 91223, 5713, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '131.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96674, '2022-07-01', 7744, 91224, 5713, NULL, '1.0000', '2.5833', '2.5833', '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 (96675, '2022-07-01', 2565, 91225, 5713, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96676, '2022-07-01', 2556, 91226, 5713, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96677, '2022-07-01', 1787, 91227, 5713, NULL, '1.0000', '0.5000', '0.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 (96678, '2022-07-01', 1837, 91228, 5713, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96679, '2022-07-01', 2379, 91229, 5713, NULL, '1.0000', '-14.1447', '-14.1447', '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 (96680, '2022-07-01', 9695, 91230, 5713, 58072, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96681, '2022-07-01', 9695, 91230, 5713, 57498, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '36.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96682, '2022-07-01', 1935, 91231, 5713, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96683, '2022-07-01', 2236, 91232, 5713, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96684, '2022-07-01', 2556, 91233, 5714, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96685, '2022-07-01', 2556, 91234, 5715, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96686, '2022-07-01', 2858, 91235, 5716, NULL, '3.0000', '1.0000', '1.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 (96687, '2022-07-01', 2293, 91236, 5716, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '53.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96688, '2022-07-01', 1812, 91237, 5716, 55784, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96689, '2022-07-01', 2738, 91238, 5716, 56938, '1.0000', '8.9533', '8.9533', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96690, '2022-07-01', 2109, 91239, 5716, 40229, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96691, '2022-07-01', 1647, 91240, 5716, 55475, '1.0000', '5.6257', '5.6257', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96692, '2022-07-01', 1860, 91241, 5716, 56250, '1.0000', '33.2500', '33.2500', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96693, '2022-07-01', 1335, 91242, 5716, 49466, '1.0000', '0.8780', '0.8780', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96694, '2022-07-01', 1337, 91243, 5716, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96695, '2022-07-01', 8677, 91244, 5716, 49108, '2.0000', '2.2418', '2.2418', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96696, '2022-07-01', 7772, 91245, 5716, 49074, '1.0000', '56.0833', '56.0833', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96697, '2022-07-01', 2169, 91246, 5716, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96698, '2022-07-01', 1935, 91247, 5716, 57988, '1.0000', '1.3001', '1.3001', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96699, '2022-07-01', 9329, 91248, 5716, NULL, '1.0000', '8.8000', '8.8000', '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 (96700, '2022-07-01', 2302, 91249, 5716, 55484, '2.0000', '5.1961', '5.1961', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96701, '2022-07-01', 2096, 91250, 5716, 55819, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96702, '2022-07-01', 2093, 91251, 5716, 6001, '1.0000', '2.5500', '2.5500', '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 (96703, '2022-07-01', 1493, 91252, 5716, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96704, '2022-07-01', 2236, 91253, 5717, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96705, '2022-07-01', 7472, 91254, 5717, NULL, '1.0000', '-107.6090', '-107.6090', '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 (96706, '2022-07-01', 7954, 91255, 5717, 57084, '1.0000', '2.4470', '2.4470', '4.0000', '4.0000', '33.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96707, '2022-07-01', 1689, 91256, 5717, 58150, '1.0000', '15.6116', '15.6116', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96708, '2022-07-01', 7832, 91257, 5717, NULL, '1.0000', '11.0000', '11.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 (96709, '2022-07-01', 2284, 91258, 5717, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96710, '2022-07-01', 2248, 91259, 5718, 2785, '-16.0000', '2.5000', '2.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 (96711, '2022-07-01', 2248, 91259, 5718, NULL, '17.0000', '2.5000', '2.5000', '6.0000', '6.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 (96712, '2022-07-01', 7385, 91260, 5718, NULL, '1.0000', '2.0000', '2.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 (96713, '2022-07-01', 8145, 91261, 5718, NULL, '1.0000', '28.0000', '28.0000', '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 (96714, '2022-07-01', 1751, 91262, 5718, NULL, '1.0000', '3.6900', '3.6900', '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 (96715, '2022-07-01', 9634, 91263, 5718, NULL, '3.0000', '4.8000', '4.8000', '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 (96716, '2022-07-01', 7857, 91264, 5718, NULL, '1.0000', '15.1300', '15.1300', '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 (96717, '2022-07-01', 9809, 91265, 5718, NULL, '1.0000', '5.7900', '5.7900', '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 (96718, '2022-07-01', 2100, 91266, 5718, 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 (96719, '2022-07-01', 2062, 91267, 5718, 2165, '-4.0000', '5.7540', '5.7540', '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 (96720, '2022-07-01', 2062, 91267, 5718, NULL, '5.0000', '5.7540', '5.7540', '15.0000', '15.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 (96721, '2022-07-01', 2269, 91268, 5718, 2929, '-6.0000', '4.9800', '4.9800', '9.5000', '9.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 (96722, '2022-07-01', 2269, 91268, 5718, NULL, '7.0000', '4.9800', '4.9800', '9.5000', '9.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 (96723, '2022-07-01', 1860, 91269, 5718, 22336, '1.0000', '21.5000', '21.5000', '29.0000', '29.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 (96724, '2022-07-01', 9092, 91270, 5718, NULL, '6.0000', '5.2900', '5.2900', '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 (96725, '2022-07-01', 8539, 91271, 5718, NULL, '3.0000', '31.8000', '31.8000', '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 (96726, '2022-07-01', 7552, 91272, 5718, NULL, '1.0000', '4.7500', '4.7500', '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 (96727, '2022-07-01', 7711, 91273, 5718, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96728, '2022-07-01', 8690, 91274, 5718, NULL, '1.0000', '10.8000', '10.8000', '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 (96729, '2022-07-01', 7715, 91275, 5718, NULL, '1.0000', '1.8900', '1.8900', '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 (96730, '2022-07-01', 7354, 91276, 5718, NULL, '2.0000', '0.3700', '0.3700', '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 (96731, '2022-07-01', 7674, 91277, 5718, NULL, '2.0000', '1.3000', '1.3000', '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 (96732, '2022-07-01', 8730, 91278, 5718, NULL, '1.0000', '29.0000', '29.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 (96733, '2022-07-01', 8362, 91279, 5718, NULL, '10.0000', '0.6000', '0.6000', '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 (96734, '2022-07-01', 8814, 91280, 5718, NULL, '10.0000', '5.0000', '5.0000', '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 (96735, '2022-07-01', 9245, 91281, 5718, NULL, '1.0000', '6.6100', '6.6100', '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 (96736, '2022-07-01', 1501, 91282, 5718, NULL, '1.0000', '2.0500', '2.0500', '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 (96737, '2022-07-01', 8401, 91283, 5718, 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 (96738, '2022-07-01', 7725, 91284, 5718, NULL, '1.0000', '7.0000', '7.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 (96739, '2022-07-01', 9272, 91285, 5718, NULL, '2.0000', '3.1000', '3.1000', '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 (96740, '2022-07-01', 1486, 91286, 5719, 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 (96741, '2022-07-01', 9145, 91287, 5719, NULL, '1.0000', '9.0000', '9.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 (96742, '2022-07-01', 1935, 91288, 5719, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96743, '2022-07-01', 1425, 91289, 5719, 58197, '1.0000', '86.3183', '86.3183', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96744, '2022-07-01', 9834, 91290, 5719, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96745, '2022-07-01', 9856, 91291, 5719, 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 (96746, '2022-07-01', 8097, 91292, 5720, NULL, '2.0000', '3.4000', '3.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 (96747, '2022-07-01', 8084, 91293, 5720, NULL, '1.0000', '12.7000', '12.7000', '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 (96748, '2022-07-01', 9286, 91294, 5720, 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 (96749, '2022-07-01', 8359, 91295, 5720, 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 (96750, '2022-07-01', 9649, 91296, 5721, 56905, '1.0000', '16.7238', '16.7238', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96751, '2022-07-01', 2524, 91297, 5721, 58097, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96752, '2022-07-01', 9286, 91298, 5721, 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 (96753, '2022-07-01', 3058, 91299, 5721, 55501, '1.0000', '5.1132', '5.1132', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96754, '2022-07-01', 1536, 91300, 5721, 57942, '10.0000', '25.1306', '25.1306', '7.0000', '7.0000', '40.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96755, '2022-07-01', 9731, 91301, 5721, 55494, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96756, '2022-07-01', 1783, 91302, 5721, 56252, '1.0000', '0.2778', '0.2778', '13.5000', '13.5000', '11.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96757, '2022-07-01', 2242, 91303, 5721, 55869, '4.0000', '0.7167', '0.7167', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96758, '2022-07-01', 1580, 91304, 5721, 54604, '1.0000', '1.2644', '1.2644', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96759, '2022-07-01', 3058, 91305, 5721, 55501, '2.0000', '5.1132', '5.1132', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96760, '2022-07-01', 1613, 91306, 5721, 56973, '1.0000', '9.2833', '9.2833', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96761, '2022-07-01', 2506, 91307, 5721, 56739, '1.0000', '4.0840', '4.0840', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96762, '2022-07-01', 1825, 91308, 5721, 44620, '1.0000', '5.0960', '5.0960', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96763, '2022-07-01', 3064, 91309, 5722, 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 (96764, '2022-07-01', 2415, 91310, 5722, 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 (96765, '2022-07-01', 1602, 91311, 5722, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96766, '2022-07-01', 2302, 91312, 5723, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96767, '2022-07-01', 2384, 91313, 5723, 56740, '3.0000', '0.3965', '0.3965', '0.7000', '0.7000', '69.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96768, '2022-07-01', 1666, 91314, 5723, 57951, '1.0000', '30.3243', '30.3243', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96769, '2022-07-01', 1590, 91315, 5723, 9437, '1.0000', '1.7700', '1.7700', '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 (96770, '2022-07-01', 8444, 91316, 5723, NULL, '1.0000', '1.6000', '1.6000', '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 (96771, '2022-07-01', 2506, 91317, 5723, 56739, '1.0000', '4.0840', '4.0840', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96772, '2022-07-01', 1450, 91318, 5723, NULL, '2.0000', '0.8255', '0.8255', '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 (96773, '2022-07-01', 2169, 91319, 5723, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96774, '2022-07-01', 9695, 91320, 5723, 58037, '1.0000', '5.3952', '5.3952', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96775, '2022-07-01', 2167, 91321, 5723, 57982, '1.0000', '2.4773', '2.4773', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96776, '2022-07-01', 2315, 91322, 5723, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.0000', '102.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96777, '2022-07-01', 9942, 91323, 5723, 56923, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96778, '2022-07-01', 1411, 91324, 5724, 53254, '1.0000', '25.9566', '25.9566', '35.0000', '35.0000', '6.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96779, '2022-07-01', 2379, 91325, 5724, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96780, '2022-07-01', 1410, 91326, 5724, 56900, '1.0000', '2.8637', '2.8637', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96781, '2022-07-01', 2315, 91327, 5724, 3069, '1.0000', '0.3300', '0.3300', '1.0000', '1.0000', '101.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96782, '2022-07-01', 2618, 91328, 5724, 48779, '1.0000', '2.8873', '2.8873', '6.0000', '6.0000', '37.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96783, '2022-07-01', 1307, 91329, 5725, 56920, '1.0000', '4.8231', '4.8231', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96784, '2022-07-01', 1432, 91330, 5726, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96785, '2022-07-01', 2411, 91331, 5726, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96786, '2022-07-01', 9695, 91332, 5727, 57498, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '34.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96787, '2022-07-01', 2250, 91333, 5727, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96788, '2022-07-01', 7953, 91334, 5727, NULL, '1.0000', '-0.5345', '-0.5345', '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 (96789, '2022-07-01', 7322, 91335, 5727, 55599, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96790, '2022-07-01', 7707, 91336, 5727, NULL, '1.0000', '7.0000', '7.0000', '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 (96791, '2022-07-01', 7411, 91337, 5727, NULL, '1.0000', '1.2819', '1.2819', '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 (96792, '2022-07-01', 9740, 91338, 5727, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '102.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96793, '2022-07-01', 7482, 91339, 5727, NULL, '2.0000', '2.5019', '2.5019', '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 (96794, '2022-07-01', 1577, 91340, 5727, NULL, '1.0000', '0.4895', '0.4895', '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 (96795, '2022-07-01', 2821, 91341, 5727, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96796, '2022-07-01', 8362, 91342, 5727, NULL, '1.0000', '4.1000', '4.1000', '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 (96797, '2022-07-01', 9834, 91343, 5727, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96798, '2022-07-01', 7411, 91344, 5727, NULL, '2.0000', '1.2819', '1.2819', '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 (96799, '2022-07-01', 2315, 91345, 5727, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '127.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96800, '2022-07-01', 1912, 91346, 5727, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96801, '2022-07-01', 1668, 91347, 5727, 57703, '1.0000', '22.1926', '22.1926', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96802, '2022-07-01', 7411, 91348, 5727, NULL, '1.0000', '1.2819', '1.2819', '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 (96803, '2022-07-01', 7428, 91349, 5727, NULL, '5.0000', '2.6100', '2.6100', '4.5000', '4.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 (96804, '2022-07-01', 3058, 91350, 5727, NULL, '1.0000', '-23.3000', '-23.3000', '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 (96805, '2022-07-01', 7708, 91351, 5727, NULL, '1.0000', '6.3400', '6.3400', '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 (96806, '2022-07-01', 7743, 91352, 5727, NULL, '1.0000', '7.3900', '7.3900', '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 (96807, '2022-07-01', 2251, 91353, 5727, 57670, '1.0000', '14.9073', '14.9073', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96808, '2022-07-01', 1580, 91354, 5727, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96809, '2022-07-01', 1783, 91355, 5727, 57793, '3.0000', '11.0704', '11.0704', '13.5000', '13.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96810, '2022-07-01', 2759, 91356, 5727, 54946, '2.0000', '4.0909', '4.0909', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96811, '2022-07-01', 1342, 91357, 5727, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96812, '2022-07-01', 1688, 91358, 5727, 58151, '1.0000', '22.9150', '22.9150', '31.5000', '31.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96813, '2022-07-01', 2315, 91359, 5727, 54963, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '125.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96814, '2022-07-01', 1409, 91360, 5727, 54968, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96815, '2022-07-01', 8183, 91361, 5727, NULL, '1.0000', '2774.2425', '2774.2425', '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 (96816, '2022-07-01', 1340, 91362, 5727, 58179, '1.0000', '3.6001', '3.6001', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96817, '2022-07-01', 1691, 91363, 5727, 58218, '1.0000', '12.4229', '12.4229', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96818, '2022-07-01', 9821, 91364, 5727, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96819, '2022-07-01', 8831, 91365, 5727, 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 (96820, '2022-07-01', 2389, 91366, 5727, 23156, '1.0000', '3.1400', '3.1400', '4.5000', '4.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 (96821, '2022-07-01', 2169, 91367, 5727, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96822, '2022-07-01', 2344, 91368, 5727, 57768, '1.0000', '20.0000', '20.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96823, '2022-07-01', 2344, 91368, 5727, NULL, '1.0000', '20.0000', '20.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 (96824, '2022-07-01', 7368, 91369, 5727, 51670, '2.0000', '14.7500', '14.7500', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96825, '2022-07-01', 9828, 91370, 5727, NULL, '1.0000', '2.9100', '2.9100', '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 (96826, '2022-07-01', 1338, 91371, 5727, 58153, '1.0000', '4.5271', '4.5271', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96827, '2022-07-01', 1337, 91372, 5727, 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 (96828, '2022-07-01', 2384, 91373, 5727, NULL, '7.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-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 (96829, '2022-07-01', 1839, 91374, 5727, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (96830, '2022-07-01', 8011, 91375, 5727, NULL, '2.0000', '0.9500', '0.9500', '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 (96831, '2022-07-01', 2821, 91376, 5727, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96832, '2022-07-01', 2221, 91377, 5727, NULL, '1.0000', '2.3805', '2.3805', '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 (96833, '2022-07-01', 2521, 91378, 5727, 57138, '1.0000', '12.2500', '12.2500', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96834, '2022-07-01', 1311, 91379, 5727, 57745, '10.0000', '0.3700', '0.3700', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96835, '2022-07-01', 9856, 91380, 5727, 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 (96836, '2022-07-01', 1650, 91381, 5727, NULL, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96837, '2022-07-01', 9821, 91382, 5727, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96838, '2022-07-01', 9948, 91383, 5727, 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 (96839, '2022-07-01', 2951, 91384, 5727, 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 (96840, '2022-07-01', 7514, 91385, 5727, NULL, '1.0000', '2.2500', '2.2500', '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 (96841, '2022-07-01', 7411, 91386, 5727, NULL, '1.0000', '1.2819', '1.2819', '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 (96842, '2022-07-01', 9762, 91387, 5727, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96843, '2022-07-01', 1641, 91388, 5727, 51481, '2.0000', '1.3209', '1.3209', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96844, '2022-07-01', 8763, 91389, 5728, NULL, '1.0000', '28.0200', '28.0200', '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 (96845, '2022-07-01', 1602, 91390, 5729, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96846, '2022-07-01', 1386, 91391, 5729, 57985, '1.0000', '258.0841', '258.0841', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96847, '2022-07-01', 1783, 91392, 5729, 56252, '1.0000', '0.2778', '0.2778', '13.5000', '13.5000', '10.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96848, '2022-07-01', 1386, 91393, 5729, 57985, '3.0000', '258.0841', '258.0841', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96849, '2022-07-01', 8547, 91394, 5730, 55821, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96850, '2022-07-01', 2237, 91395, 5730, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96851, '2022-07-01', 9272, 91396, 5731, NULL, '1.0000', '3.1000', '3.1000', '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 (96852, '2022-07-01', 9777, 91397, 5731, 54139, '1.0000', '22.9441', '22.9441', '30.2300', '30.2300', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96853, '2022-07-01', 7848, 91398, 5731, NULL, '1.0000', '-223.3573', '-223.3573', '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 (96854, '2022-07-01', 7638, 91399, 5731, 56526, '1.0000', '7.0429', '7.0429', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96855, '2022-07-01', 7745, 91400, 5731, 57424, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96856, '2022-07-01', 7641, 91401, 5731, 55967, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96857, '2022-07-01', 7411, 91402, 5731, 57436, '3.0000', '1.4000', '1.4000', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96858, '2022-07-01', 8085, 91403, 5731, 49815, '1.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96859, '2022-07-01', 7482, 91404, 5731, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96860, '2022-07-01', 9727, 91405, 5731, 46159, '4.0000', '6.7000', '6.7000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96861, '2022-07-01', 2321, 91406, 5731, 57427, '2.0000', '7.5000', '7.5000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96862, '2022-07-01', 7411, 91407, 5731, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96863, '2022-07-01', 2699, 91408, 5731, 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 (96864, '2022-07-01', 7412, 91409, 5731, 54506, '2.0000', '2.1023', '2.1023', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96865, '2022-07-01', 1339, 91410, 5731, NULL, '1.0000', '2.6205', '2.6205', '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 (96866, '2022-07-01', 2079, 91411, 5731, 45601, '1.0000', '2.1080', '2.1080', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96867, '2022-07-01', 7590, 91412, 5731, NULL, '1.0000', '6.0509', '6.0509', '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 (96868, '2022-07-01', 2298, 91413, 5731, 46651, '1.0000', '6.3879', '6.3879', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96869, '2022-07-01', 7579, 91414, 5731, NULL, '1.0000', '15.0000', '15.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 (96870, '2022-07-01', 8548, 91415, 5731, NULL, '1.0000', '-0.2308', '-0.2308', '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 (96871, '2022-07-01', 9809, 91416, 5731, 57163, '1.0000', '5.7900', '5.7900', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96872, '2022-07-01', 7707, 91417, 5731, NULL, '1.0000', '26.7232', '26.7232', '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 (96873, '2022-07-01', 7385, 91418, 5731, 57604, '5.0000', '7.8936', '7.8936', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96874, '2022-07-01', 7819, 91419, 5731, 57601, '1.0000', '12.7495', '12.7495', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96875, '2022-07-01', 9740, 91420, 5731, 55131, '1.0000', '0.6600', '0.6600', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96876, '2022-07-01', 8622, 91421, 5731, 51013, '1.0000', '-10.8064', '-10.8064', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96877, '2022-07-01', 7506, 91422, 5731, NULL, '1.0000', '15.0000', '15.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 (96878, '2022-07-01', 7544, 91423, 5731, NULL, '2.0000', '9.4300', '9.4300', '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 (96879, '2022-07-01', 1841, 91424, 5731, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96880, '2022-07-01', 2289, 91425, 5731, NULL, '2.0000', '2.5688', '2.5688', '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 (96881, '2022-07-01', 7554, 91426, 5731, 53774, '10.0000', '2.1763', '2.1763', '3.0000', '3.0000', '53.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96882, '2022-07-01', 7558, 91427, 5731, NULL, '10.0000', '1.4867', '1.4867', '3.7000', '3.7000', '-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 (96883, '2022-07-01', 7608, 91428, 5731, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96884, '2022-07-01', 7819, 91429, 5731, 57601, '1.0000', '12.7495', '12.7495', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96885, '2022-07-01', 7750, 91430, 5731, 56538, '1.0000', '43.7502', '43.7502', '61.0000', '61.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96886, '2022-07-01', 7535, 91431, 5731, 57390, '1.0000', '5.1390', '5.1390', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96887, '2022-07-01', 7753, 91432, 5731, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96888, '2022-07-01', 7708, 91433, 5731, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96889, '2022-07-01', 7324, 91434, 5731, 56022, '3.0000', '6.3200', '6.3200', '8.5000', '8.5000', '17.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96890, '2022-07-01', 8753, 91435, 5731, 54116, '1.0000', '3.3875', '3.3875', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96891, '2022-07-01', 9873, 91436, 5731, 57180, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96892, '2022-07-01', 7609, 91437, 5731, NULL, '1.0000', '101.4174', '101.4174', '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 (96893, '2022-07-01', 7591, 91438, 5731, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96894, '2022-07-01', 7776, 91439, 5731, NULL, '1.0000', '18.3574', '18.3574', '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 (96895, '2022-07-01', 7570, 91440, 5731, 53932, '1.0000', '6.8025', '6.8025', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96896, '2022-07-01', 2109, 91441, 5732, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96897, '2022-07-01', 2503, 91442, 5732, 40162, '1.0000', '55.0258', '55.0258', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96898, '2022-07-01', 9856, 91443, 5733, 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 (96899, '2022-07-01', 1311, 91444, 5733, 57745, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96900, '2022-07-01', 2411, 91445, 5733, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96901, '2022-07-01', 7514, 91446, 5733, NULL, '1.0000', '2.2500', '2.2500', '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 (96902, '2022-07-01', 1935, 91447, 5733, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96903, '2022-07-01', 1311, 91448, 5733, 57745, '10.0000', '0.3700', '0.3700', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96904, '2022-07-01', 2245, 91449, 5733, 51375, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96905, '2022-07-01', 7741, 91450, 5733, NULL, '1.0000', '-52.1460', '-52.1460', '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 (96906, '2022-07-01', 9828, 91451, 5733, NULL, '1.0000', '2.9100', '2.9100', '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 (96907, '2022-07-01', 2327, 91452, 5733, 58157, '2.0000', '3.8350', '3.8350', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96908, '2022-07-01', 2821, 91453, 5733, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96909, '2022-07-01', 2352, 91454, 5733, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (96910, '2022-07-01', 9828, 91455, 5733, NULL, '2.0000', '2.9100', '2.9100', '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 (96911, '2022-07-01', 9695, 91456, 5733, 57498, '2.0000', '5.3049', '5.3049', '8.0000', '8.0000', '32.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96912, '2022-07-01', 2221, 91457, 5733, NULL, '1.0000', '2.3805', '2.3805', '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 (96913, '2022-07-01', 8984, 91458, 5733, NULL, '3.0000', '-2216.1099', '-2216.1099', '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 (96914, '2022-07-01', 2916, 91459, 5733, NULL, '1.0000', '4209.2937', '4209.2937', '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 (96915, '2022-07-01', 9820, 91460, 5733, 52217, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96916, '2022-07-01', 2259, 91461, 5733, 58154, '1.0000', '25.7085', '25.7085', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96917, '2022-07-01', 2327, 91462, 5734, 55803, '1.0000', '3.1287', '3.1287', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96918, '2022-07-01', 7713, 91463, 5735, 50666, '5.0000', '0.3910', '0.3910', '0.6000', '0.6000', '97.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96919, '2022-07-01', 1769, 91464, 5735, 44740, '1.0000', '26.8000', '26.8000', '35.5000', '35.5000', '0.0000', 1, 0, NULL, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96920, '2022-07-01', 1914, 91465, 5735, 57389, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96921, '2022-07-01', 7518, 91466, 5735, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96922, '2022-07-01', 7527, 91467, 5735, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '83.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96923, '2022-07-01', 7411, 91468, 5735, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96924, '2022-07-01', 7324, 91469, 5735, 56022, '2.0000', '6.3200', '6.3200', '8.5000', '8.5000', '15.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96925, '2022-07-01', 7746, 91470, 5736, 31723, '5.0000', '2.8600', '2.8600', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96926, '2022-07-01', 7746, 91471, 5737, 31723, '1.0000', '2.8600', '2.8600', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96927, '2022-07-01', 7746, 91471, 5737, NULL, '4.0000', '2.8600', '2.8600', '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 (96928, '2022-07-01', 7713, 91472, 5738, 57060, '5.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96929, '2022-07-01', 2315, 91473, 5738, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '123.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96930, '2022-07-02', 1828, 91474, 5739, NULL, '2.0000', '0.7300', '0.7300', '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 (96931, '2022-07-02', 1602, 91475, 5739, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96932, '2022-07-02', 2088, 91476, 5739, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96933, '2022-07-02', 1837, 91477, 5739, 58241, '3.0000', '2.5422', '2.5422', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96934, '2022-07-02', 1590, 91478, 5739, 54532, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96935, '2022-07-02', 1532, 91479, 5739, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96936, '2022-07-02', 1628, 91480, 5739, 54550, '1.0000', '7.1500', '7.1500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96937, '2022-07-02', 1827, 91481, 5739, NULL, '5.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-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 (96938, '2022-07-02', 7612, 91482, 5739, 57807, '6.0000', '0.4900', '0.4900', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96939, '2022-07-02', 2986, 91483, 5739, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96940, '2022-07-02', 7323, 91484, 5739, 57672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96941, '2022-07-02', 2948, 91485, 5739, 55643, '2.0000', '0.9382', '0.9382', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96942, '2022-07-02', 2315, 91486, 5739, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '122.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96943, '2022-07-02', 9828, 91487, 5739, NULL, '3.0000', '2.9100', '2.9100', '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 (96944, '2022-07-02', 2068, 91488, 5739, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96945, '2022-07-02', 9740, 91489, 5739, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '100.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96946, '2022-07-02', 1602, 91490, 5739, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96947, '2022-07-02', 1935, 91491, 5739, 58141, '2.0000', '0.6516', '0.6516', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96948, '2022-07-02', 9695, 91492, 5739, 57498, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '31.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96949, '2022-07-02', 2342, 91493, 5739, 58159, '3.0000', '2.3666', '2.3666', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96950, '2022-07-02', 2352, 91494, 5739, NULL, '6.0000', '126.2588', '126.2588', '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 (96951, '2022-07-02', 9794, 91495, 5739, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '93.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96952, '2022-07-02', 9902, 91496, 5739, 57714, '2.0000', '7.8000', '7.8000', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96953, '2022-07-02', 9849, 91497, 5739, 58203, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96954, '2022-07-02', 2285, 91498, 5739, NULL, '2.0000', '-35.9568', '-35.9568', '65.5000', '65.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 (96955, '2022-07-02', 7379, 91499, 5739, NULL, '1.0000', '12.5100', '12.5100', '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 (96956, '2022-07-02', 2284, 91500, 5740, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96957, '2022-07-02', 9828, 91501, 5740, NULL, '1.0000', '2.9100', '2.9100', '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 (96958, '2022-07-02', 7491, 91502, 5741, NULL, '1.0000', '30.2006', '30.2006', '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 (96959, '2022-07-02', 7411, 91503, 5741, 57436, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96960, '2022-07-02', 7675, 91504, 5741, NULL, '1.0000', '84.8590', '84.8590', '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 (96961, '2022-07-02', 7473, 91505, 5741, NULL, '7.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (96962, '2022-07-02', 1947, 91506, 5741, 43122, '2.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96963, '2022-07-02', 1364, 91507, 5741, 48859, '2.0000', '27.0000', '27.0000', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96964, '2022-07-02', 8395, 91508, 5741, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96965, '2022-07-02', 8739, 91509, 5741, NULL, '1.0000', '12.5156', '12.5156', '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 (96966, '2022-07-02', 7330, 91510, 5741, 50701, '1.0000', '19.1333', '19.1333', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96967, '2022-07-02', 1339, 91511, 5741, NULL, '1.0000', '2.6205', '2.6205', '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 (96968, '2022-07-02', 9092, 91512, 5741, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96969, '2022-07-02', 7435, 91513, 5741, NULL, '7.0000', '5.3311', '5.3311', '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 (96970, '2022-07-02', 2287, 91514, 5741, NULL, '3.0000', '3.1699', '3.1699', '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 (96971, '2022-07-02', 7672, 91515, 5741, 57408, '1.0000', '-13.8800', '-13.8800', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96972, '2022-07-02', 2098, 91516, 5741, 57186, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96973, '2022-07-02', 8638, 91517, 5741, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96974, '2022-07-02', 7928, 91518, 5741, NULL, '1.0000', '11.5906', '11.5906', '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 (96975, '2022-07-02', 7867, 91519, 5741, 57203, '1.0000', '2.3130', '2.3130', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96976, '2022-07-02', 8203, 91520, 5741, 57407, '3.0000', '2.0908', '2.0908', '0.7000', '0.7000', '42.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96977, '2022-07-02', 7333, 91521, 5741, NULL, '1.0000', '-5.7451', '-5.7451', '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 (96978, '2022-07-02', 1339, 91522, 5741, NULL, '1.0000', '2.6205', '2.6205', '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 (96979, '2022-07-02', 7776, 91523, 5741, NULL, '1.0000', '18.3574', '18.3574', '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 (96980, '2022-07-02', 7641, 91524, 5741, 55967, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96981, '2022-07-02', 7674, 91525, 5741, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96982, '2022-07-02', 2506, 91526, 5741, 56196, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96983, '2022-07-02', 9873, 91527, 5741, 57180, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96984, '2022-07-02', 7514, 91528, 5741, 57588, '2.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96985, '2022-07-02', 7743, 91529, 5741, NULL, '2.0000', '919779.6853', '919779.6853', '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 (96986, '2022-07-02', 8184, 91530, 5741, 56035, '10.0000', '2.9728', '2.9728', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96987, '2022-07-02', 2315, 91531, 5741, 57597, '3.0000', '0.7562', '0.7562', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96988, '2022-07-02', 2289, 91532, 5741, NULL, '3.0000', '2.5688', '2.5688', '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 (96989, '2022-07-02', 7544, 91533, 5741, NULL, '3.0000', '9.4300', '9.4300', '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 (96990, '2022-07-02', 7509, 91534, 5741, 57598, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96991, '2022-07-02', 9424, 91535, 5741, 57392, '1.0000', '-37.5013', '-37.5013', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96992, '2022-07-02', 9804, 91536, 5741, 55112, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96993, '2022-07-02', 7674, 91537, 5741, 56584, '2.0000', '120.7007', '120.7007', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96994, '2022-07-02', 7703, 91538, 5741, NULL, '1.0000', '-4961.0093', '-4961.0093', '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 (96995, '2022-07-02', 9729, 91539, 5741, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96996, '2022-07-02', 3001, 91540, 5741, NULL, '2.0000', '1.5000', '1.5000', '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 (96997, '2022-07-02', 7781, 91541, 5741, NULL, '3.0000', '6.8496', '6.8496', '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 (96998, '2022-07-02', 7715, 91542, 5741, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96999, '2022-07-02', 7518, 91543, 5741, 57156, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97000, '2022-07-02', 2315, 91544, 5741, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97001, '2022-07-02', 7473, 91545, 5741, NULL, '4.0000', '75.1643', '75.1643', '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 (97002, '2022-07-02', 7757, 91546, 5741, NULL, '1.0000', '-300.9548', '-300.9548', '179.0000', '179.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97003, '2022-07-02', 7848, 91547, 5741, NULL, '1.0000', '-223.3573', '-223.3573', '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 (97004, '2022-07-02', 8328, 91548, 5741, NULL, '1.0000', '6.5306', '6.5306', '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 (97005, '2022-07-02', 7514, 91549, 5741, 57588, '2.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97006, '2022-07-02', 7592, 91550, 5741, 56573, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97007, '2022-07-02', 1935, 91551, 5741, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '115.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97008, '2022-07-02', 9565, 91552, 5742, 56066, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97009, '2022-07-02', 8243, 91553, 5742, NULL, '2.0000', '1.1400', '1.1400', '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 (97010, '2022-07-02', 7674, 91554, 5742, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97011, '2022-07-02', 8205, 91555, 5742, NULL, '1.0000', '2.9500', '2.9500', '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 (97012, '2022-07-02', 9695, 91556, 5742, 57541, '1.0000', '5.7411', '5.7411', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97013, '2022-07-02', 7373, 91557, 5742, 53522, '1.0000', '2.1526', '2.1526', '22.5000', '22.5000', '9.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97014, '2022-07-02', 7608, 91558, 5742, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97015, '2022-07-02', 9942, 91559, 5742, 57188, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97016, '2022-07-02', 7318, 91560, 5742, 57645, '1.0000', '12.6298', '12.6298', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97017, '2022-07-02', 8083, 91561, 5742, 53628, '1.0000', '36.0657', '36.0657', '33.0000', '33.0000', '3.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97018, '2022-07-02', 8097, 91562, 5742, 57444, '5.0000', '5.2765', '5.2765', '6.0000', '6.0000', '22.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97019, '2022-07-02', 2102, 91563, 5742, 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 (97020, '2022-07-02', 2506, 91564, 5742, 56196, '1.0000', '4.6688', '4.6688', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97021, '2022-07-02', 1771, 91565, 5742, 39531, '1.0000', '11.9058', '11.9058', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97022, '2022-07-02', 9785, 91566, 5742, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97023, '2022-07-02', 7980, 91567, 5742, NULL, '5.0000', '-31.7682', '-31.7682', '0.8000', '0.8000', '-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 (97024, '2022-07-02', 1935, 91568, 5742, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '114.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97025, '2022-07-02', 7776, 91569, 5742, NULL, '1.0000', '18.3574', '18.3574', '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 (97026, '2022-07-02', 7634, 91570, 5742, 57608, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97027, '2022-07-02', 7509, 91571, 5742, 57598, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97028, '2022-07-02', 7675, 91572, 5742, NULL, '1.0000', '84.8590', '84.8590', '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 (97029, '2022-07-02', 8186, 91573, 5742, 55979, '1.0000', '1.5626', '1.5626', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97030, '2022-07-02', 7867, 91574, 5742, 57203, '1.0000', '2.3130', '2.3130', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97031, '2022-07-02', 8172, 91575, 5742, NULL, '1.0000', '40.7000', '40.7000', '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 (97032, '2022-07-02', 1837, 91576, 5742, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97033, '2022-07-02', 1734, 91577, 5743, 57466, '1.0000', '13.0600', '13.0600', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97034, '2022-07-02', 8300, 91578, 5743, NULL, '1.0000', '7.4300', '7.4300', '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 (97035, '2022-07-02', 7664, 91579, 5743, 56599, '1.0000', '8.6930', '8.6930', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97036, '2022-07-02', 9711, 91580, 5743, NULL, '1.0000', '5.2800', '5.2800', '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 (97037, '2022-07-02', 7431, 91581, 5743, 53500, '1.0000', '-21.4007', '-21.4007', '33.0000', '33.0000', '8.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97038, '2022-07-02', 7469, 91582, 5743, NULL, '1.0000', '18.8000', '18.8000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97039, '2022-07-02', 8744, 91583, 5743, 57511, '1.0000', '3.7472', '3.7472', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97040, '2022-07-02', 7708, 91584, 5743, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97041, '2022-07-02', 8052, 91585, 5743, 57418, '1.0000', '37.7100', '37.7100', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97042, '2022-07-02', 8172, 91586, 5743, NULL, '1.0000', '40.7000', '40.7000', '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 (97043, '2022-07-02', 1935, 91587, 5743, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '113.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97044, '2022-07-02', 9272, 91588, 5743, NULL, '1.0000', '3.1000', '3.1000', '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 (97045, '2022-07-02', 8548, 91589, 5743, NULL, '1.0000', '-0.2308', '-0.2308', '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 (97046, '2022-07-02', 7730, 91590, 5743, 57543, '3.0000', '0.1000', '0.1000', '0.2000', '0.2000', '89.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97047, '2022-07-02', 7704, 91591, 5743, NULL, '1.0000', '-1.5625', '-1.5625', '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 (97048, '2022-07-02', 2289, 91592, 5743, NULL, '4.0000', '2.5688', '2.5688', '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 (97049, '2022-07-02', 1841, 91593, 5743, 56033, '4.0000', '0.1970', '0.1970', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97050, '2022-07-02', 7917, 91594, 5743, 52750, '3.0000', '2.1447', '2.1447', '0.7000', '0.7000', '89.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97051, '2022-07-02', 7588, 91595, 5743, NULL, '1.0000', '5.5821', '5.5821', '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 (97052, '2022-07-02', 7753, 91596, 5743, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97053, '2022-07-02', 9813, 91597, 5744, NULL, '1.0000', '1.4900', '1.4900', '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 (97054, '2022-07-02', 7674, 91598, 5744, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97055, '2022-07-02', 2315, 91599, 5744, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97056, '2022-07-02', 1672, 91600, 5744, 52445, '10.0000', '3.0045', '3.0045', '5.5000', '5.5000', '20.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97057, '2022-07-02', 9834, 91601, 5744, 51301, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97058, '2022-07-02', 7447, 91602, 5744, NULL, '5.0000', '22.2074', '22.2074', '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 (97059, '2022-07-02', 7524, 91603, 5744, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97060, '2022-07-02', 7457, 91604, 5744, 57615, '1.0000', '4.4780', '4.4780', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97061, '2022-07-02', 7354, 91605, 5744, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97062, '2022-07-02', 9274, 91606, 5744, 56602, '1.0000', '5.7160', '5.7160', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97063, '2022-07-02', 2315, 91607, 5744, 57597, '2.0000', '0.7562', '0.7562', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97064, '2022-07-02', 9785, 91608, 5744, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97065, '2022-07-02', 7658, 91609, 5744, 56019, '1.0000', '188.9318', '188.9318', '3.5000', '3.5000', '83.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97066, '2022-07-02', 7459, 91610, 5744, NULL, '1.0000', '3.0137', '3.0137', '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 (97067, '2022-07-02', 7509, 91611, 5744, 57598, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97068, '2022-07-02', 2668, 91612, 5745, 20619, '1.0000', '7.9800', '7.9800', '16.5000', '16.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 (97069, '2022-07-02', 2289, 91613, 5745, 2949, '-221.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 (97070, '2022-07-02', 2289, 91613, 5745, NULL, '222.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-222.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97071, '2022-07-02', 1841, 91614, 5745, NULL, '1.0000', '142.5780', '142.5780', '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 (97072, '2022-07-02', 1310, 91615, 5745, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (97073, '2022-07-02', 1763, 91616, 5745, 3173, '-2.0000', '4.6900', '4.6900', '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 (97074, '2022-07-02', 1763, 91616, 5745, NULL, '3.0000', '4.6900', '4.6900', '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 (97075, '2022-07-02', 2169, 91617, 5745, 10737, '-168.0000', '3.8397', '3.8397', '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 (97076, '2022-07-02', 2169, 91617, 5745, NULL, '169.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-169.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97077, '2022-07-02', 2037, 91618, 5745, 6389, '-15.0000', '10.5000', '10.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 (97078, '2022-07-02', 2037, 91618, 5745, NULL, '16.0000', '10.5000', '10.5000', '21.0000', '21.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 (97079, '2022-07-02', 2511, 91619, 5745, 9740, '-18.0000', '8.5000', '8.5000', '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 (97080, '2022-07-02', 2511, 91619, 5745, NULL, '19.0000', '8.5000', '8.5000', '16.0000', '16.0000', '-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 (97081, '2022-07-02', 1867, 91620, 5745, NULL, '1.0000', '1.0500', '1.0500', '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 (97082, '2022-07-02', 3020, 91621, 5745, NULL, '1.0000', '11.2100', '11.2100', '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 (97083, '2022-07-02', 2169, 91622, 5745, 10737, '-168.0000', '3.8397', '3.8397', '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 (97084, '2022-07-02', 2169, 91622, 5745, NULL, '169.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-169.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97085, '2022-07-02', 2237, 91623, 5745, 2781, '-76.0000', '1.0600', '1.0600', '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 (97086, '2022-07-02', 2237, 91623, 5745, NULL, '77.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97087, '2022-07-02', 1346, 91624, 5745, 21942, '-144.0000', '1.0594', '1.0594', '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 (97088, '2022-07-02', 1346, 91624, 5745, NULL, '149.0000', '1.0594', '1.0594', '2.0000', '2.0000', '-149.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97089, '2022-07-02', 1912, 91625, 5745, NULL, '2.0000', '0.3200', '0.3200', '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 (97090, '2022-07-02', 2858, 91626, 5745, 17772, '-102.0000', '1.0000', '1.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 (97091, '2022-07-02', 2858, 91626, 5745, NULL, '103.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-103.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97092, '2022-07-02', 7453, 91627, 5745, NULL, '1.0000', '28.5000', '28.5000', '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 (97093, '2022-07-02', 2248, 91628, 5745, 2785, '-17.0000', '2.5000', '2.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 (97094, '2022-07-02', 2248, 91628, 5745, NULL, '18.0000', '2.5000', '2.5000', '6.0000', '6.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 (97095, '2022-07-02', 2221, 91629, 5745, 4154, '-71.0000', '14.4737', '14.4737', '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 (97096, '2022-07-02', 2221, 91629, 5745, NULL, '72.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97097, '2022-07-02', 1602, 91630, 5745, 5897, '-168.0000', '6.7859', '6.7859', '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 (97098, '2022-07-02', 1602, 91630, 5745, NULL, '169.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-169.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97099, '2022-07-02', 2299, 91631, 5745, 22479, '-11.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 (97100, '2022-07-02', 2299, 91631, 5745, NULL, '12.0000', '6.0000', '6.0000', '8.0000', '8.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 (97101, '2022-07-02', 9598, 91632, 5745, NULL, '1.0000', '3.7600', '3.7600', '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 (97102, '2022-07-02', 1612, 91633, 5745, 8732, '-11.0000', '1.6000', '1.6000', '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 (97103, '2022-07-02', 1612, 91633, 5745, NULL, '12.0000', '1.6000', '1.6000', '3.0000', '3.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 (97104, '2022-07-02', 9729, 91634, 5745, NULL, '1.0000', '0.6200', '0.6200', '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 (97105, '2022-07-02', 2643, 91635, 5745, NULL, '1.0000', '0.8700', '0.8700', '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 (97106, '2022-07-02', 1763, 91636, 5745, 3173, '-2.0000', '4.6900', '4.6900', '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 (97107, '2022-07-02', 1763, 91636, 5745, NULL, '3.0000', '4.6900', '4.6900', '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 (97108, '2022-07-02', 1912, 91637, 5745, NULL, '2.0000', '0.3200', '0.3200', '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 (97109, '2022-07-02', 1665, 91638, 5745, 3235, '-136.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 (97110, '2022-07-02', 1665, 91638, 5745, NULL, '137.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97111, '2022-07-02', 1837, 91639, 5745, 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 (97112, '2022-07-02', 2384, 91640, 5745, 4087, '-53.0000', '0.4000', '0.4000', '0.7000', '0.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 (97113, '2022-07-02', 2384, 91640, 5745, NULL, '55.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (97114, '2022-07-02', 1590, 91641, 5746, 54532, '1.0000', '2.2860', '2.2860', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97115, '2022-07-02', 9822, 91642, 5746, 58124, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97116, '2022-07-02', 1672, 91643, 5746, 57792, '10.0000', '4.1808', '4.1808', '5.5000', '5.5000', '30.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97117, '2022-07-02', 1668, 91644, 5746, 57703, '1.0000', '22.1926', '22.1926', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97118, '2022-07-02', 2491, 91645, 5746, 58257, '1.0000', '-73.4000', '-73.4000', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97119, '2022-07-02', 2100, 91646, 5746, NULL, '1.0000', '1.6804', '1.6804', '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 (97120, '2022-07-02', 7678, 91647, 5746, NULL, '1.0000', '5.1400', '5.1400', '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 (97121, '2022-07-02', 1337, 91648, 5746, 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 (97122, '2022-07-02', 2169, 91649, 5746, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97123, '2022-07-02', 2315, 91650, 5746, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '121.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97124, '2022-07-02', 9960, 91651, 5746, 58163, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97125, '2022-07-02', 1715, 91652, 5746, 58171, '1.0000', '10.1667', '10.1667', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97126, '2022-07-02', 9634, 91653, 5746, 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 (97127, '2022-07-02', 2277, 91654, 5746, NULL, '2.0000', '0.9399', '0.9399', '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 (97128, '2022-07-02', 2095, 91655, 5746, NULL, '1.0000', '-8.5000', '-8.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 (97129, '2022-07-02', 7650, 91656, 5746, NULL, '1.0000', '0.8900', '0.8900', '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 (97130, '2022-07-02', 2085, 91657, 5746, NULL, '8.0000', '3.9526', '3.9526', '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 (97131, '2022-07-02', 7944, 91658, 5746, 58223, '3.0000', '2.0100', '2.0100', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97132, '2022-07-02', 8844, 91659, 5746, 55695, '1.0000', '4.0579', '4.0579', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97133, '2022-07-02', 7482, 91660, 5746, NULL, '1.0000', '2.5019', '2.5019', '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 (97134, '2022-07-02', 2618, 91661, 5746, 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 (97135, '2022-07-02', 2020, 91662, 5746, NULL, '1.0000', '1309.0500', '1309.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 (97136, '2022-07-02', 2260, 91663, 5746, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97137, '2022-07-02', 7678, 91664, 5746, NULL, '1.0000', '5.1400', '5.1400', '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 (97138, '2022-07-02', 2315, 91665, 5746, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '120.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97139, '2022-07-02', 7514, 91666, 5746, NULL, '2.0000', '2.2500', '2.2500', '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 (97140, '2022-07-02', 7555, 91667, 5746, 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 (97141, '2022-07-02', 2921, 91668, 5746, 58178, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97142, '2022-07-02', 7472, 91669, 5746, NULL, '1.0000', '-107.6090', '-107.6090', '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 (97143, '2022-07-02', 9329, 91670, 5746, NULL, '1.0000', '5.8000', '5.8000', '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 (97144, '2022-07-02', 2730, 91671, 5746, 51643, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97145, '2022-07-02', 1406, 91672, 5746, 57770, '1.0000', '21.3954', '21.3954', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97146, '2022-07-02', 1912, 91673, 5746, 57704, '2.0000', '0.6868', '0.6868', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97147, '2022-07-02', 2935, 91674, 5746, NULL, '1.0000', '-2.6500', '-2.6500', '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 (97148, '2022-07-02', 2916, 91675, 5746, NULL, '1.0000', '4209.2937', '4209.2937', '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 (97149, '2022-07-02', 2315, 91676, 5746, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '120.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97150, '2022-07-02', 1935, 91677, 5746, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97151, '2022-07-02', 7411, 91678, 5746, NULL, '1.0000', '1.2819', '1.2819', '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 (97152, '2022-07-02', 7944, 91679, 5746, 58223, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97153, '2022-07-02', 1602, 91680, 5746, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97154, '2022-07-02', 9634, 91681, 5746, 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 (97155, '2022-07-02', 9794, 91682, 5746, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '92.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97156, '2022-07-02', 9891, 91683, 5746, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97157, '2022-07-02', 8775, 91684, 5746, 57094, '1.0000', '1.9789', '1.9789', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97158, '2022-07-02', 2318, 91685, 5746, 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 (97159, '2022-07-02', 1711, 91686, 5746, 53679, '1.0000', '9.3308', '9.3308', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97160, '2022-07-02', 1910, 91687, 5746, 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 (97161, '2022-07-02', 9794, 91688, 5746, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '92.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97162, '2022-07-02', 7743, 91689, 5746, NULL, '1.0000', '7.3900', '7.3900', '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 (97163, '2022-07-02', 2411, 91690, 5746, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97164, '2022-07-02', 2089, 91691, 5746, 58158, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97165, '2022-07-02', 7500, 91692, 5746, 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 (97166, '2022-07-02', 8984, 91693, 5746, NULL, '1.0000', '-2216.1099', '-2216.1099', '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 (97167, '2022-07-02', 1621, 91694, 5746, 57751, '1.0000', '18.8366', '18.8366', '8.8000', '8.8000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97168, '2022-07-02', 2315, 91695, 5746, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '120.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97169, '2022-07-02', 2642, 91696, 5746, 56856, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97170, '2022-07-02', 9603, 91697, 5746, 57098, '1.0000', '2.4968', '2.4968', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97171, '2022-07-02', 1781, 91698, 5746, 57775, '1.0000', '5.8614', '5.8614', '7.7900', '7.7900', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97172, '2022-07-02', 1665, 91699, 5746, 55689, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97173, '2022-07-02', 2035, 91700, 5746, 57129, '1.0000', '8.6500', '8.6500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97174, '2022-07-02', 2224, 91701, 5746, 53436, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97175, '2022-07-02', 9889, 91702, 5746, 55952, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97176, '2022-07-02', 2342, 91703, 5746, 58159, '1.0000', '2.3666', '2.3666', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97177, '2022-07-02', 8149, 91704, 5746, 58152, '2.0000', '7.1834', '7.1834', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97178, '2022-07-02', 1645, 91705, 5746, NULL, '1.0000', '13.1800', '13.1800', '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 (97179, '2022-07-02', 7483, 91706, 5746, NULL, '1.0000', '0.4200', '0.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 (97180, '2022-07-02', 8476, 91707, 5746, NULL, '1.0000', '23.0000', '23.0000', '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 (97181, '2022-07-02', 1342, 91708, 5746, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97182, '2022-07-02', 8933, 91709, 5746, NULL, '1.0000', '8.7500', '8.7500', '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 (97183, '2022-07-02', 7514, 91710, 5746, NULL, '1.0000', '2.2500', '2.2500', '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 (97184, '2022-07-02', 8740, 91711, 5746, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97185, '2022-07-02', 8562, 91712, 5746, NULL, '1.0000', '12.0000', '12.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 (97186, '2022-07-02', 2263, 91713, 5746, 58187, '1.0000', '37.4800', '37.4800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97187, '2022-07-02', 8984, 91714, 5746, NULL, '1.0000', '-2216.1099', '-2216.1099', '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 (97188, '2022-07-02', 7642, 91715, 5746, NULL, '1.0000', '2.6900', '2.6900', '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 (97189, '2022-07-02', 9737, 91716, 5746, 58160, '1.0000', '9.4750', '9.4750', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97190, '2022-07-02', 2293, 91717, 5746, NULL, '3.0000', '-17.4320', '-17.4320', '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 (97191, '2022-07-02', 2315, 91718, 5746, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '121.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97192, '2022-07-02', 9834, 91719, 5746, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97193, '2022-07-02', 9960, 91720, 5746, 58163, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97194, '2022-07-02', 2169, 91721, 5746, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97195, '2022-07-02', 3067, 91722, 5746, 25025, '1.0000', '0.7000', '0.7000', '0.5000', '0.5000', '18.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 (97196, '2022-07-02', 2315, 91723, 5746, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '120.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97197, '2022-07-02', 7411, 91724, 5746, NULL, '1.0000', '1.2819', '1.2819', '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 (97198, '2022-07-02', 2293, 91725, 5746, NULL, '3.0000', '-17.4320', '-17.4320', '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 (97199, '2022-07-02', 9960, 91726, 5746, 58163, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97200, '2022-07-02', 7411, 91727, 5746, NULL, '1.0000', '1.2819', '1.2819', '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 (97201, '2022-07-02', 9866, 91728, 5746, 57677, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97202, '2022-07-02', 8740, 91729, 5747, NULL, '1.0000', '2.0000', '2.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 (97203, '2022-07-02', 8745, 91730, 5747, NULL, '1.0000', '8.0000', '8.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 (97204, '2022-07-02', 1884, 91731, 5748, 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 (97205, '2022-07-02', 9794, 91732, 5748, NULL, '2.0000', '1.0800', '1.0800', '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 (97206, '2022-07-02', 2315, 91733, 5748, 2735, '-523.0000', '0.3300', '0.3300', '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 (97207, '2022-07-02', 2315, 91733, 5748, NULL, '526.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-526.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97208, '2022-07-02', 7411, 91734, 5748, NULL, '1.0000', '1.3500', '1.3500', '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 (97209, '2022-07-03', 2315, 91735, 5749, 57597, '3.0000', '0.7562', '0.7562', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97210, '2022-07-03', 7704, 91736, 5749, NULL, '1.0000', '-1.5625', '-1.5625', '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 (97211, '2022-07-03', 7952, 91737, 5749, 56655, '1.0000', '10.1302', '10.1302', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97212, '2022-07-03', 7382, 91738, 5749, 30014, '1.0000', '7.4500', '7.4500', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97213, '2022-07-03', 9793, 91739, 5749, 50460, '1.0000', '23.5000', '23.5000', '31.0000', '31.0000', '3.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97214, '2022-07-03', 7411, 91740, 5749, 57436, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97215, '2022-07-03', 8203, 91741, 5749, 57407, '1.0000', '2.0908', '2.0908', '0.7000', '0.7000', '41.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97216, '2022-07-03', 7708, 91742, 5749, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97217, '2022-07-03', 8097, 91743, 5749, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97218, '2022-07-03', 9785, 91744, 5749, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97219, '2022-07-03', 7753, 91745, 5749, 57182, '1.0000', '3.5424', '3.5424', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97220, '2022-07-03', 1935, 91746, 5749, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '112.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97221, '2022-07-03', 7411, 91747, 5749, 57436, '7.0000', '1.4000', '1.4000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97222, '2022-07-03', 2098, 91748, 5749, 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 (97223, '2022-07-03', 7564, 91749, 5749, 51806, '1.0000', '-550542.5691', '-550542.5691', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97224, '2022-07-03', 8658, 91750, 5749, 57192, '1.0000', '17.5167', '17.5167', '23.5000', '23.5000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97225, '2022-07-03', 7967, 91751, 5749, 57611, '2.0000', '7.1299', '7.1299', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97226, '2022-07-03', 8759, 91752, 5749, 57513, '1.0000', '8.0678', '8.0678', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97227, '2022-07-03', 7482, 91753, 5749, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97228, '2022-07-03', 7960, 91754, 5749, NULL, '1.0000', '18.0000', '18.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 (97229, '2022-07-03', 7782, 91755, 5749, NULL, '1.0000', '5.0000', '5.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 (97230, '2022-07-03', 9797, 91756, 5749, 50292, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97231, '2022-07-03', 9747, 91757, 5749, 56183, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97232, '2022-07-03', 9958, 91758, 5749, 57653, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97233, '2022-07-03', 7523, 91759, 5749, 57585, '1.0000', '12.0925', '12.0925', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97234, '2022-07-03', 8658, 91760, 5749, 57192, '1.0000', '17.5167', '17.5167', '23.5000', '23.5000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97235, '2022-07-03', 3001, 91761, 5749, NULL, '2.0000', '1.5000', '1.5000', '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 (97236, '2022-07-03', 9726, 91762, 5750, 57740, '1.0000', '5.1598', '5.1598', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97237, '2022-07-03', 9821, 91763, 5750, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97238, '2022-07-03', 1771, 91764, 5750, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97239, '2022-07-03', 2277, 91765, 5750, NULL, '1.0000', '0.9399', '0.9399', '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 (97240, '2022-07-03', 7411, 91766, 5750, NULL, '1.0000', '1.2819', '1.2819', '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 (97241, '2022-07-03', 2088, 91767, 5750, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97242, '2022-07-03', 7745, 91768, 5750, 58190, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97243, '2022-07-03', 9728, 91769, 5750, 47072, '1.0000', '5.4000', '5.4000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97244, '2022-07-03', 2095, 91770, 5750, NULL, '1.0000', '-8.5000', '-8.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 (97245, '2022-07-03', 2260, 91771, 5750, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97246, '2022-07-03', 9821, 91772, 5750, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97247, '2022-07-03', 7483, 91773, 5750, 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 (97248, '2022-07-03', 2169, 91774, 5750, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97249, '2022-07-03', 2068, 91775, 5750, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97250, '2022-07-03', 8068, 91776, 5750, NULL, '1.0000', '8.7900', '8.7900', '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 (97251, '2022-07-03', 9737, 91777, 5750, 58160, '1.0000', '9.4750', '9.4750', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97252, '2022-07-03', 9834, 91778, 5750, 55944, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97253, '2022-07-03', 9960, 91779, 5750, 58163, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97254, '2022-07-03', 8677, 91780, 5750, NULL, '2.0000', '630.6244', '630.6244', '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 (97255, '2022-07-03', 1498, 91781, 5750, 57680, '1.0000', '0.4912', '0.4912', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97256, '2022-07-03', 2221, 91782, 5750, NULL, '1.0000', '2.3805', '2.3805', '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 (97257, '2022-07-03', 1571, 91783, 5750, NULL, '1.0000', '308.7500', '308.7500', '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 (97258, '2022-07-03', 2366, 91784, 5750, NULL, '1.0000', '-51.4778', '-51.4778', '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 (97259, '2022-07-03', 2339, 91785, 5750, 55940, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97260, '2022-07-03', 2893, 91786, 5750, NULL, '1.0000', '6.4400', '6.4400', '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 (97261, '2022-07-03', 2315, 91787, 5750, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '111.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97262, '2022-07-03', 1520, 91788, 5750, 57085, '1.0000', '1.7877', '1.7877', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97263, '2022-07-03', 2104, 91789, 5750, 22380, '4.0000', '0.2000', '0.2000', '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 (97264, '2022-07-03', 7328, 91790, 5750, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (97265, '2022-07-03', 1840, 91791, 5750, NULL, '4.0000', '0.2400', '0.2400', '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 (97266, '2022-07-03', 7564, 91792, 5750, NULL, '1.0000', '0.6400', '0.6400', '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 (97267, '2022-07-03', 8444, 91793, 5750, 57692, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97268, '2022-07-03', 2965, 91794, 5750, NULL, '1.0000', '9.1051', '9.1051', '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 (97269, '2022-07-03', 7412, 91795, 5750, NULL, '1.0000', '8.3200', '8.3200', '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 (97270, '2022-07-03', 1337, 91796, 5750, 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 (97271, '2022-07-03', 8677, 91797, 5751, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97272, '2022-07-03', 8097, 91798, 5751, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97273, '2022-07-03', 7473, 91799, 5751, NULL, '3.0000', '75.1643', '75.1643', '0.7000', '0.7000', '-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 (97274, '2022-07-03', 7961, 91800, 5751, 56687, '1.0000', '13.2000', '13.2000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97275, '2022-07-03', 7709, 91801, 5751, NULL, '2.0000', '916.6097', '916.6097', '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 (97276, '2022-07-03', 8783, 91802, 5752, NULL, '1.0000', '45.0300', '45.0300', '70.5000', '70.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97277, '2022-07-03', 1922, 91803, 5753, 58207, '1.0000', '-84.0000', '-84.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97278, '2022-07-03', 7944, 91804, 5753, 58223, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97279, '2022-07-03', 1388, 91805, 5753, 51245, '1.0000', '6.9440', '6.9440', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97280, '2022-07-03', 2964, 91806, 5753, NULL, '1.0000', '9.0607', '9.0607', '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 (97281, '2022-07-03', 2315, 91807, 5753, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '110.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97282, '2022-07-03', 9740, 91808, 5753, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97283, '2022-07-03', 1676, 91809, 5753, 55540, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97284, '2022-07-03', 1703, 91810, 5753, 58237, '1.0000', '9.2200', '9.2200', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97285, '2022-07-03', 9821, 91811, 5753, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97286, '2022-07-03', 2068, 91812, 5753, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97287, '2022-07-03', 8133, 91813, 5753, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (97288, '2022-07-03', 1606, 91814, 5753, 57684, '5.0000', '5.4993', '5.4993', '7.2000', '7.2000', '24.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97289, '2022-07-03', 1863, 91815, 5753, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97290, '2022-07-03', 2315, 91816, 5753, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '110.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97291, '2022-07-03', 9794, 91817, 5753, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97292, '2022-07-03', 9815, 91818, 5753, 50255, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97293, '2022-07-03', 9815, 91818, 5753, NULL, '1.0000', '0.9000', '0.9000', '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 (97294, '2022-07-03', 9821, 91819, 5753, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97295, '2022-07-03', 2379, 91820, 5753, NULL, '1.0000', '-14.1447', '-14.1447', '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 (97296, '2022-07-03', 1506, 91821, 5753, 55692, '1.0000', '-131.4000', '-131.4000', '21.5000', '21.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97297, '2022-07-03', 2352, 91822, 5753, NULL, '3.0000', '126.2588', '126.2588', '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 (97298, '2022-07-03', 2565, 91823, 5753, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97299, '2022-07-03', 2738, 91824, 5753, 56428, '2.0000', '9.2000', '9.2000', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97300, '2022-07-03', 2545, 91825, 5753, 55650, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97301, '2022-07-03', 2297, 91826, 5753, 55594, '1.0000', '10.3086', '10.3086', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97302, '2022-07-03', 2352, 91827, 5753, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (97303, '2022-07-03', 2363, 91828, 5753, 57814, '1.0000', '4.9400', '4.9400', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97304, '2022-07-03', 9695, 91829, 5753, 57498, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '30.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97305, '2022-07-03', 9794, 91830, 5753, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97306, '2022-07-03', 2986, 91831, 5753, 51665, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97307, '2022-07-03', 9649, 91832, 5753, NULL, '1.0000', '9.9875', '9.9875', '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 (97308, '2022-07-03', 9822, 91833, 5753, 58124, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97309, '2022-07-03', 1868, 91834, 5753, NULL, '1.0000', '3.8800', '3.8800', '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 (97310, '2022-07-03', 2948, 91835, 5753, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97311, '2022-07-03', 7533, 91836, 5753, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97312, '2022-07-03', 2289, 91837, 5753, 56470, '3.0000', '0.3611', '0.3611', '0.5000', '0.5000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97313, '2022-07-03', 2948, 91838, 5753, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97314, '2022-07-03', 8767, 91839, 5753, NULL, '1.0000', '8.5590', '8.5590', '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 (97315, '2022-07-03', 1787, 91840, 5753, NULL, '1.0000', '0.5000', '0.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 (97316, '2022-07-03', 1863, 91841, 5753, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97317, '2022-07-03', 8183, 91842, 5753, NULL, '1.0000', '2774.2425', '2774.2425', '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 (97318, '2022-07-03', 1690, 91843, 5753, 55954, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97319, '2022-07-03', 2342, 91844, 5753, 58159, '1.0000', '2.3666', '2.3666', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97320, '2022-07-03', 2263, 91845, 5754, NULL, '1.0000', '37.4800', '37.4800', '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 (97321, '2022-07-03', 1666, 91846, 5754, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97322, '2022-07-03', 8444, 91847, 5754, 57692, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97323, '2022-07-03', 7459, 91848, 5754, NULL, '1.0000', '-15.3118', '-15.3118', '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 (97324, '2022-07-03', 7741, 91849, 5754, NULL, '1.0000', '-52.1460', '-52.1460', '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 (97325, '2022-07-03', 8622, 91850, 5754, 53675, '1.0000', '1.4921', '1.4921', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97326, '2022-07-03', 1613, 91851, 5754, 53215, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97327, '2022-07-03', 2263, 91852, 5754, NULL, '1.0000', '37.4800', '37.4800', '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 (97328, '2022-07-03', 1863, 91853, 5754, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97329, '2022-07-03', 2255, 91854, 5754, 52331, '1.0000', '17.1339', '17.1339', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97330, '2022-07-03', 2289, 91855, 5754, 56470, '3.0000', '0.3611', '0.3611', '0.5000', '0.5000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97331, '2022-07-03', 2315, 91856, 5755, 2735, '-526.0000', '0.3300', '0.3300', '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 (97332, '2022-07-03', 2315, 91856, 5755, NULL, '528.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-528.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97333, '2022-07-03', 7933, 91857, 5755, NULL, '1.0000', '0.4400', '0.4400', '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 (97334, '2022-07-03', 1340, 91858, 5755, 13005, '-13.0000', '2.7025', '2.7025', '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 (97335, '2022-07-03', 1340, 91858, 5755, NULL, '14.0000', '2.7025', '2.7025', '5.0000', '5.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 (97336, '2022-07-03', 7744, 91859, 5755, 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 (97337, '2022-07-03', 7514, 91860, 5755, NULL, '1.0000', '2.2500', '2.2500', '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 (97338, '2022-07-03', 1743, 91861, 5755, 2162, '-1.0000', '3.9800', '3.9800', '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 (97339, '2022-07-03', 1743, 91861, 5755, NULL, '2.0000', '3.9800', '3.9800', '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 (97340, '2022-07-03', 9945, 91862, 5755, NULL, '1.0000', '12.1000', '12.1000', '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 (97341, '2022-07-03', 8133, 91863, 5755, NULL, '1.0000', '5.0000', '5.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 (97342, '2022-07-03', 7672, 91864, 5755, NULL, '1.0000', '1.0200', '1.0200', '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 (97343, '2022-07-03', 7697, 91865, 5755, 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 (97344, '2022-07-03', 7524, 91866, 5755, NULL, '1.0000', '11.9500', '11.9500', '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 (97345, '2022-07-03', 7641, 91867, 5755, NULL, '1.0000', '1.9000', '1.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 (97346, '2022-07-03', 7385, 91868, 5755, NULL, '5.0000', '2.0000', '2.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 (97347, '2022-07-03', 1689, 91869, 5755, 4897, '-19.0000', '60.7198', '60.7198', '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 (97348, '2022-07-03', 1689, 91869, 5755, NULL, '20.0000', '60.7198', '60.7198', '21.0000', '21.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 (97349, '2022-07-03', 1935, 91870, 5755, 5586, '-162.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 (97350, '2022-07-03', 1935, 91870, 5755, NULL, '165.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-165.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97351, '2022-07-03', 8714, 91871, 5755, NULL, '1.0000', '5.2100', '5.2100', '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 (97352, '2022-07-03', 9329, 91872, 5755, NULL, '1.0000', '6.7000', '6.7000', '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 (97353, '2022-07-03', 7784, 91873, 5755, NULL, '1.0000', '4.2300', '4.2300', '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 (97354, '2022-07-03', 8186, 91874, 5755, NULL, '3.0000', '1.0800', '1.0800', '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 (97355, '2022-07-03', 7881, 91875, 5755, NULL, '1.0000', '2.3000', '2.3000', '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 (97356, '2022-07-03', 7523, 91876, 5755, NULL, '1.0000', '9.7500', '9.7500', '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 (97357, '2022-07-03', 7518, 91877, 5755, NULL, '3.0000', '7.8200', '7.8200', '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 (97358, '2022-07-03', 9499, 91878, 5755, NULL, '1.0000', '22.0000', '22.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 (97359, '2022-07-03', 2363, 91879, 5755, 3866, '-8.0000', '6.8800', '6.8800', '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 (97360, '2022-07-03', 2363, 91879, 5755, NULL, '9.0000', '6.8800', '6.8800', '12.0000', '12.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 (97361, '2022-07-03', 8304, 91880, 5755, NULL, '1.0000', '6.0000', '6.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 (97362, '2022-07-03', 7753, 91881, 5755, NULL, '1.0000', '3.4000', '3.4000', '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 (97363, '2022-07-03', 7316, 91882, 5755, NULL, '5.0000', '9.5500', '9.5500', '1.3000', '1.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 (97364, '2022-07-03', 7641, 91883, 5755, NULL, '2.0000', '1.9000', '1.9000', '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 (97365, '2022-07-03', 7674, 91884, 5755, NULL, '2.0000', '1.3000', '1.3000', '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 (97366, '2022-07-03', 9507, 91885, 5755, NULL, '1.0000', '42.8000', '42.8000', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97367, '2022-07-03', 8040, 91886, 5755, NULL, '1.0000', '14.9000', '14.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 (97368, '2022-07-03', 7514, 91887, 5755, NULL, '1.0000', '2.2500', '2.2500', '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 (97369, '2022-07-03', 7642, 91888, 5755, NULL, '1.0000', '5.9200', '5.9200', '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 (97370, '2022-07-03', 7674, 91889, 5755, NULL, '1.0000', '1.3000', '1.3000', '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 (97371, '2022-07-03', 9092, 91890, 5755, NULL, '4.0000', '5.2900', '5.2900', '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 (97372, '2022-07-03', 7444, 91891, 5755, 33813, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97373, '2022-07-03', 7652, 91892, 5755, NULL, '2.0000', '0.9800', '0.9800', '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 (97374, '2022-07-03', 7641, 91893, 5755, NULL, '1.0000', '1.9000', '1.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 (97375, '2022-07-03', 7695, 91894, 5755, NULL, '1.0000', '3.9400', '3.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 (97376, '2022-07-03', 7730, 91895, 5755, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (97377, '2022-07-03', 2295, 91896, 5755, 2954, '-34.0000', '0.9600', '0.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 (97378, '2022-07-03', 2295, 91896, 5755, NULL, '37.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97379, '2022-07-03', 7885, 91897, 5755, NULL, '1.0000', '82.8700', '82.8700', '107.5000', '107.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97380, '2022-07-03', 1550, 91898, 5755, NULL, '1.0000', '13.9000', '13.9000', '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 (97381, '2022-07-03', 7886, 91899, 5755, 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 (97382, '2022-07-03', 7720, 91900, 5755, NULL, '1.0000', '4.5000', '4.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 (97383, '2022-07-03', 8134, 91901, 5755, NULL, '1.0000', '5.2300', '5.2300', '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 (97384, '2022-07-03', 7411, 91902, 5755, NULL, '1.0000', '1.3500', '1.3500', '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 (97385, '2022-07-03', 7672, 91903, 5755, NULL, '1.0000', '1.0200', '1.0200', '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 (97386, '2022-07-03', 7652, 91904, 5755, NULL, '7.0000', '0.9800', '0.9800', '1.6000', '1.6000', '-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 (97387, '2022-07-03', 7638, 91905, 5755, NULL, '1.0000', '12.0000', '12.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 (97388, '2022-07-03', 9199, 91906, 5755, NULL, '1.0000', '19.0000', '19.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 (97389, '2022-07-03', 7518, 91907, 5755, NULL, '2.0000', '7.8200', '7.8200', '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 (97390, '2022-07-03', 8744, 91908, 5755, NULL, '1.0000', '3.6600', '3.6600', '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 (97391, '2022-07-03', 9695, 91909, 5755, NULL, '1.0000', '4.5000', '4.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 (97392, '2022-07-03', 9089, 91910, 5755, NULL, '1.0000', '3.8000', '3.8000', '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 (97393, '2022-07-03', 1310, 91911, 5755, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (97394, '2022-07-03', 2279, 91912, 5755, 2939, '-23.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 (97395, '2022-07-03', 2279, 91912, 5755, NULL, '24.0000', '2.7000', '2.7000', '3.5000', '3.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 (97396, '2022-07-03', 7666, 91913, 5755, NULL, '1.0000', '3.6000', '3.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 (97397, '2022-07-03', 2289, 91914, 5755, 2949, '-222.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 (97398, '2022-07-03', 2289, 91914, 5755, NULL, '224.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-224.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97399, '2022-07-03', 1935, 91915, 5755, 5586, '-162.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 (97400, '2022-07-03', 1935, 91915, 5755, NULL, '163.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-163.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97401, '2022-07-03', 7554, 91916, 5755, 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 (97402, '2022-07-03', 7899, 91917, 5755, NULL, '1.0000', '3.3000', '3.3000', '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 (97403, '2022-07-03', 8053, 91918, 5755, NULL, '1.0000', '0.8000', '0.8000', '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 (97404, '2022-07-03', 9695, 91919, 5755, NULL, '1.0000', '4.5000', '4.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 (97405, '2022-07-03', 7641, 91920, 5755, NULL, '2.0000', '1.9000', '1.9000', '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 (97406, '2022-07-03', 1602, 91921, 5756, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97407, '2022-07-03', 9695, 91922, 5756, 58037, '1.0000', '5.3952', '5.3952', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97408, '2022-07-03', 7339, 91923, 5756, 56741, '10.0000', '-3.8719', '-3.8719', '0.9000', '0.9000', '80.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97409, '2022-07-03', 8208, 91924, 5756, NULL, '2.0000', '33.0000', '33.0000', '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 (97410, '2022-07-03', 7877, 91925, 5756, NULL, '1.0000', '5.4000', '5.4000', '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 (97411, '2022-07-03', 1371, 91926, 5756, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97412, '2022-07-03', 8767, 91927, 5756, 58005, '1.0000', '8.6300', '8.6300', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97413, '2022-07-03', 2221, 91928, 5756, 56927, '1.0000', '16.8057', '16.8057', '26.0000', '26.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97414, '2022-07-03', 1432, 91929, 5756, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97415, '2022-07-03', 2259, 91930, 5756, 56206, '1.0000', '21.3801', '21.3801', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97416, '2022-07-03', 1437, 91931, 5756, 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 (97417, '2022-07-03', 2169, 91932, 5756, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97418, '2022-07-03', 7459, 91933, 5756, 55783, '7.0000', '4.5753', '4.5753', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97419, '2022-07-03', 7459, 91933, 5756, NULL, '13.0000', '4.5753', '4.5753', '4.0000', '4.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 (97420, '2022-07-03', 1841, 91934, 5756, 54426, '1.0000', '0.0701', '0.0701', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97421, '2022-07-03', 2068, 91935, 5756, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97422, '2022-07-03', 7881, 91936, 5756, NULL, '1.0000', '2.7500', '2.7500', '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 (97423, '2022-07-03', 7459, 91937, 5757, NULL, '2.0000', '2.3500', '2.3500', '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 (97424, '2022-07-03', 8415, 91938, 5757, NULL, '1.0000', '3.2500', '3.2500', '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 (97425, '2022-07-03', 7674, 91939, 5757, NULL, '1.0000', '1.3000', '1.3000', '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 (97426, '2022-07-03', 9536, 91940, 5757, NULL, '1.0000', '2.6500', '2.6500', '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 (97427, '2022-07-03', 7675, 91941, 5757, NULL, '1.0000', '11.4300', '11.4300', '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 (97428, '2022-07-03', 9729, 91942, 5757, NULL, '1.0000', '0.6200', '0.6200', '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 (97429, '2022-07-03', 9821, 91943, 5758, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97430, '2022-07-03', 2411, 91944, 5758, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97431, '2022-07-03', 2366, 91945, 5758, NULL, '2.0000', '-51.4778', '-51.4778', '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 (97432, '2022-07-03', 9740, 91946, 5758, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '98.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97433, '2022-07-03', 2295, 91947, 5758, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97434, '2022-07-03', 8627, 91948, 5758, NULL, '1.0000', '6.7500', '6.7500', '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 (97435, '2022-07-03', 9821, 91949, 5758, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97436, '2022-07-03', 9695, 91950, 5758, 57498, '1.0000', '5.3049', '5.3049', '8.0000', '8.0000', '29.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97437, '2022-07-03', 1637, 91951, 5758, NULL, '1.0000', '238.7168', '238.7168', '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 (97438, '2022-07-03', 2738, 91952, 5759, 56428, '2.0000', '9.2000', '9.2000', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97439, '2022-07-03', 2298, 91953, 5759, 57795, '1.0000', '-24.4602', '-24.4602', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97440, '2022-07-03', 9840, 91954, 5759, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97441, '2022-07-03', 7579, 91955, 5759, NULL, '1.0000', '15.0000', '15.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 (97442, '2022-07-03', 9649, 91956, 5759, NULL, '2.0000', '9.9875', '9.9875', '23.0000', '23.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 (97443, '2022-07-03', 1686, 91957, 5759, 57683, '2.0000', '33.0000', '33.0000', '46.5000', '46.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97444, '2022-07-03', 8933, 91958, 5759, NULL, '1.0000', '8.7500', '8.7500', '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 (97445, '2022-07-03', 2643, 91959, 5759, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97446, '2022-07-03', 2379, 91960, 5759, NULL, '1.0000', '-14.1447', '-14.1447', '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 (97447, '2022-07-03', 1590, 91961, 5759, 54532, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97448, '2022-07-03', 1562, 91962, 5759, 53666, '1.0000', '5.7883', '5.7883', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97449, '2022-07-03', 2346, 91963, 5759, NULL, '1.0000', '3.4800', '3.4800', '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 (97450, '2022-07-03', 2130, 91964, 5759, 42640, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97451, '2022-07-03', 9965, 91965, 5759, 58075, '1.0000', '23.0000', '23.0000', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97452, '2022-07-03', 2959, 91966, 5760, 49917, '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 (97453, '2022-07-03', 7506, 91967, 5761, NULL, '1.0000', '15.0000', '15.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 (97454, '2022-07-03', 8207, 91968, 5761, NULL, '1.0000', '0.0000', '0.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 (97455, '2022-07-03', 1935, 91969, 5761, 57988, '1.0000', '1.3001', '1.3001', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97456, '2022-07-03', 2354, 91970, 5761, 56731, '1.0000', '5.2506', '5.2506', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97457, '2022-07-03', 9873, 91971, 5761, 56894, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97458, '2022-07-03', 1950, 91972, 5761, 55511, '1.0000', '8.4081', '8.4081', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97459, '2022-07-03', 1846, 91973, 5761, 57998, '2.0000', '6.4609', '6.4609', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97460, '2022-07-03', 1856, 91974, 5761, 57957, '1.0000', '5.1154', '5.1154', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97461, '2022-07-03', 2302, 91975, 5761, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97462, '2022-07-03', 2858, 91976, 5761, 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 (97463, '2022-07-03', 9788, 91977, 5761, 53266, '2.0000', '1.5100', '1.5100', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97464, '2022-07-03', 1371, 91978, 5761, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97465, '2022-07-03', 8079, 91979, 5761, 56979, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97466, '2022-07-03', 2864, 91980, 5761, 56226, '5.0000', '1.1926', '1.1926', '2.2000', '2.2000', '31.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97467, '2022-07-03', 2237, 91981, 5761, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97468, '2022-07-03', 7443, 91982, 5761, NULL, '1.0000', '6.8600', '6.8600', '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 (97469, '2022-07-03', 1837, 91983, 5761, 56224, '1.0000', '0.5767', '0.5767', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97470, '2022-07-03', 7806, 91984, 5761, 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 (97471, '2022-07-03', 1912, 91985, 5761, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97472, '2022-07-03', 9762, 91986, 5761, 57987, '2.0000', '2.4700', '2.4700', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97473, '2022-07-03', 1785, 91987, 5761, 49051, '1.0000', '15.2971', '15.2971', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97474, '2022-07-03', 1943, 91988, 5761, 49223, '1.0000', '4.8068', '4.8068', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97475, '2022-07-03', 1763, 91989, 5761, 55751, '1.0000', '4.7363', '4.7363', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97476, '2022-07-04', 2948, 91990, 5762, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97477, '2022-07-04', 7912, 91991, 5762, NULL, '1.0000', '7.9000', '7.9000', '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 (97478, '2022-07-04', 2754, 91992, 5762, NULL, '2.0000', '0.0800', '0.0800', '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 (97479, '2022-07-04', 1825, 91993, 5762, 55678, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97480, '2022-07-04', 2948, 91994, 5762, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97481, '2022-07-04', 1872, 91995, 5762, 54552, '1.0000', '10.5986', '10.5986', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97482, '2022-07-04', 1867, 91996, 5762, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97483, '2022-07-04', 1837, 91997, 5762, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97484, '2022-07-04', 1787, 91998, 5762, NULL, '1.0000', '0.5000', '0.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 (97485, '2022-07-04', 2643, 91999, 5762, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97486, '2022-07-04', 2379, 92000, 5762, NULL, '1.0000', '-14.1447', '-14.1447', '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 (97487, '2022-07-04', 2556, 92001, 5762, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97488, '2022-07-04', 1393, 92002, 5762, 55147, '2.0000', '8.0000', '8.0000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97489, '2022-07-04', 2465, 92003, 5762, 58180, '1.0000', '9.7769', '9.7769', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97490, '2022-07-04', 2416, 92004, 5762, 58066, '1.0000', '1.3371', '1.3371', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97491, '2022-07-04', 1760, 92005, 5762, 58185, '3.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97492, '2022-07-04', 1646, 92006, 5762, 57673, '1.0000', '5.6966', '5.6966', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97493, '2022-07-04', 1863, 92007, 5762, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97494, '2022-07-04', 2565, 92008, 5762, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97495, '2022-07-04', 2565, 92009, 5762, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97496, '2022-07-04', 2221, 92010, 5762, NULL, '1.0000', '2.3805', '2.3805', '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 (97497, '2022-07-04', 1851, 92011, 5762, 58164, '1.0000', '13.3410', '13.3410', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97498, '2022-07-04', 9695, 92012, 5762, 57498, '2.0000', '5.3049', '5.3049', '8.0000', '8.0000', '27.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97499, '2022-07-04', 1693, 92013, 5762, 55664, '1.0000', '9.5194', '9.5194', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97500, '2022-07-04', 1693, 92013, 5762, 55593, '1.0000', '9.5194', '9.5194', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97501, '2022-07-04', 9828, 92014, 5763, NULL, '1.0000', '2.9100', '2.9100', '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 (97502, '2022-07-04', 2283, 92015, 5763, 58254, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97503, '2022-07-04', 7944, 92016, 5763, 58223, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97504, '2022-07-04', 1783, 92017, 5763, 57793, '2.0000', '11.0704', '11.0704', '13.5000', '13.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97505, '2022-07-04', 2623, 92018, 5763, NULL, '2.0000', '0.6000', '0.6000', '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 (97506, '2022-07-04', 1999, 92019, 5764, 6362, '-15.0000', '6.0000', '6.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 (97507, '2022-07-04', 1999, 92019, 5764, NULL, '16.0000', '6.0000', '6.0000', '12.0000', '12.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 (97508, '2022-07-04', 1513, 92020, 5764, 10888, '-6.0000', '11.9600', '11.9600', '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 (97509, '2022-07-04', 1513, 92020, 5764, NULL, '7.0000', '11.9600', '11.9600', '23.0000', '23.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 (97510, '2022-07-04', 2386, 92021, 5764, 4038, '-1.0000', '2.0100', '2.0100', '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 (97511, '2022-07-04', 2386, 92021, 5764, NULL, '2.0000', '2.0100', '2.0100', '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 (97512, '2022-07-04', 9829, 92022, 5764, 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 (97513, '2022-07-04', 1386, 92023, 5764, 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 (97514, '2022-07-04', 1307, 92024, 5764, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '17.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 (97515, '2022-07-04', 2070, 92025, 5764, NULL, '1.0000', '2.0000', '2.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 (97516, '2022-07-04', 3029, 92026, 5764, NULL, '1.0000', '4.7700', '4.7700', '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 (97517, '2022-07-04', 1347, 92027, 5764, 243, '2.0000', '3.4000', '3.4000', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97518, '2022-07-04', 2379, 92028, 5764, 4032, '-70.0000', '1.5900', '1.5900', '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 (97519, '2022-07-04', 2379, 92028, 5764, NULL, '71.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97520, '2022-07-04', 1892, 92029, 5764, 5431, '-19.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 (97521, '2022-07-04', 1892, 92029, 5764, NULL, '20.0000', '90.0000', '90.0000', '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 (97522, '2022-07-04', 8183, 92030, 5764, NULL, '1.0000', '81.9100', '81.9100', '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 (97523, '2022-07-04', 9729, 92031, 5764, NULL, '1.0000', '0.6200', '0.6200', '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 (97524, '2022-07-04', 1935, 92032, 5764, 5586, '-166.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 (97525, '2022-07-04', 1935, 92032, 5764, NULL, '167.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-167.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97526, '2022-07-04', 2221, 92033, 5764, 4154, '-72.0000', '14.4737', '14.4737', '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 (97527, '2022-07-04', 2221, 92033, 5764, NULL, '73.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97528, '2022-07-04', 2654, 92034, 5764, 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 (97529, '2022-07-04', 1884, 92035, 5764, 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 (97530, '2022-07-04', 2479, 92036, 5764, 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 (97531, '2022-07-04', 1840, 92037, 5764, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (97532, '2022-07-04', 1841, 92038, 5764, NULL, '1.0000', '142.5780', '142.5780', '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 (97533, '2022-07-04', 1519, 92039, 5764, 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 (97534, '2022-07-04', 2169, 92040, 5764, 10737, '-170.0000', '3.8397', '3.8397', '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 (97535, '2022-07-04', 2169, 92040, 5764, NULL, '171.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-171.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97536, '2022-07-04', 2643, 92041, 5764, NULL, '1.0000', '0.8700', '0.8700', '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 (97537, '2022-07-04', 7790, 92042, 5764, NULL, '8.0000', '17.0000', '17.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 (97538, '2022-07-04', 7923, 92043, 5764, NULL, '6.0000', '6.9800', '6.9800', '0.4000', '0.4000', '-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 (97539, '2022-07-04', 9729, 92044, 5764, NULL, '1.0000', '0.6200', '0.6200', '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 (97540, '2022-07-04', 7608, 92045, 5765, NULL, '1.0000', '6.9800', '6.9800', '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 (97541, '2022-07-04', 1863, 92046, 5765, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97542, '2022-07-04', 2135, 92047, 5765, NULL, '1.0000', '-0.2588', '-0.2588', '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 (97543, '2022-07-04', 2948, 92048, 5765, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97544, '2022-07-04', 9828, 92049, 5765, NULL, '2.0000', '2.9100', '2.9100', '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 (97545, '2022-07-04', 2068, 92050, 5765, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97546, '2022-07-04', 8746, 92051, 5765, 58337, '1.0000', '3.6776', '3.6776', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97547, '2022-07-04', 2656, 92052, 5765, 58321, '2.0000', '1.6962', '1.6962', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97548, '2022-07-04', 2821, 92053, 5765, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97549, '2022-07-04', 1498, 92054, 5765, 57680, '2.0000', '0.4912', '0.4912', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97550, '2022-07-04', 2411, 92055, 5765, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97551, '2022-07-04', 9649, 92056, 5765, NULL, '1.0000', '9.9875', '9.9875', '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 (97552, '2022-07-04', 1572, 92057, 5765, 48878, '1.0000', '1.9556', '1.9556', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97553, '2022-07-04', 1572, 92057, 5765, NULL, '1.0000', '1.9556', '1.9556', '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 (97554, '2022-07-04', 8101, 92058, 5765, NULL, '3.0000', '21.7000', '21.7000', '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 (97555, '2022-07-04', 1580, 92059, 5765, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97556, '2022-07-04', 2293, 92060, 5765, NULL, '5.0000', '-17.4320', '-17.4320', '1.5000', '1.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 (97557, '2022-07-04', 2242, 92061, 5765, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97558, '2022-07-04', 3058, 92062, 5765, NULL, '1.0000', '-23.3000', '-23.3000', '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 (97559, '2022-07-04', 1825, 92063, 5766, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97560, '2022-07-04', 9878, 92064, 5766, NULL, '1.0000', '9.6000', '9.6000', '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 (97561, '2022-07-04', 2410, 92065, 5766, 55671, '1.0000', '4.5240', '4.5240', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97562, '2022-07-04', 1908, 92066, 5766, NULL, '2.0000', '0.9032', '0.9032', '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 (97563, '2022-07-04', 7388, 92067, 5766, NULL, '1.0000', '4.0000', '4.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 (97564, '2022-07-04', 1743, 92068, 5766, NULL, '1.0000', '3.5650', '3.5650', '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 (97565, '2022-07-04', 1912, 92069, 5766, 57704, '5.0000', '0.6868', '0.6868', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97566, '2022-07-04', 2352, 92070, 5766, NULL, '6.0000', '126.2588', '126.2588', '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 (97567, '2022-07-04', 9748, 92071, 5766, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97568, '2022-07-04', 2546, 92072, 5766, 57804, '1.0000', '117.1000', '117.1000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97569, '2022-07-04', 1427, 92073, 5766, 52220, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97570, '2022-07-04', 1425, 92074, 5766, 58197, '1.0000', '86.3183', '86.3183', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97571, '2022-07-04', 2221, 92075, 5766, NULL, '1.0000', '2.3805', '2.3805', '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 (97572, '2022-07-04', 7777, 92076, 5766, NULL, '1.0000', '9.5000', '9.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 (97573, '2022-07-04', 8079, 92077, 5766, NULL, '1.0000', '16.6100', '16.6100', '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 (97574, '2022-07-04', 2655, 92078, 5766, NULL, '1.0000', '3.5999', '3.5999', '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 (97575, '2022-07-04', 9794, 92079, 5766, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97576, '2022-07-04', 7482, 92080, 5767, NULL, '1.0000', '3.0500', '3.0500', '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 (97577, '2022-07-04', 8539, 92081, 5767, NULL, '2.0000', '31.8000', '31.8000', '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 (97578, '2022-07-04', 1935, 92082, 5767, 5586, '-167.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 (97579, '2022-07-04', 1935, 92082, 5767, NULL, '169.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-169.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97580, '2022-07-04', 7524, 92083, 5767, NULL, '1.0000', '11.9500', '11.9500', '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 (97581, '2022-07-04', 7412, 92084, 5767, NULL, '1.0000', '1.5200', '1.5200', '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 (97582, '2022-07-04', 7509, 92085, 5767, 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 (97583, '2022-07-04', 7674, 92086, 5767, NULL, '2.0000', '1.3000', '1.3000', '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 (97584, '2022-07-04', 7375, 92087, 5767, NULL, '14.0000', '3.9300', '3.9300', '7.0000', '7.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 (97585, '2022-07-04', 9199, 92088, 5767, NULL, '1.0000', '19.0000', '19.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 (97586, '2022-07-04', 7560, 92089, 5767, NULL, '1.0000', '33.0200', '33.0200', '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 (97587, '2022-07-04', 7753, 92090, 5767, NULL, '1.0000', '3.4000', '3.4000', '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 (97588, '2022-07-04', 8753, 92091, 5767, 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 (97589, '2022-07-04', 2826, 92092, 5767, NULL, '1.0000', '45.0000', '45.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 (97590, '2022-07-04', 8277, 92093, 5767, 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 (97591, '2022-07-04', 7709, 92094, 5767, 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 (97592, '2022-07-04', 8038, 92095, 5767, 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 (97593, '2022-07-04', 8596, 92096, 5767, 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 (97594, '2022-07-04', 7591, 92097, 5767, NULL, '1.0000', '2.7500', '2.7500', '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 (97595, '2022-07-04', 2315, 92098, 5767, 2735, '-528.0000', '0.3300', '0.3300', '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 (97596, '2022-07-04', 2315, 92098, 5767, NULL, '529.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-529.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97597, '2022-07-04', 7672, 92099, 5767, NULL, '1.0000', '1.0200', '1.0200', '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 (97598, '2022-07-04', 7317, 92100, 5767, NULL, '1.0000', '19.5500', '19.5500', '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 (97599, '2022-07-04', 1501, 92101, 5767, NULL, '1.0000', '2.0500', '2.0500', '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 (97600, '2022-07-04', 7959, 92102, 5767, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97601, '2022-07-04', 7881, 92103, 5767, NULL, '2.0000', '2.3000', '2.3000', '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 (97602, '2022-07-04', 7558, 92104, 5767, NULL, '4.0000', '1.9700', '1.9700', '3.7000', '3.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 (97603, '2022-07-04', 7886, 92105, 5767, 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 (97604, '2022-07-04', 8548, 92106, 5767, NULL, '1.0000', '12.0000', '12.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 (97605, '2022-07-04', 9209, 92107, 5767, NULL, '1.0000', '4.8000', '4.8000', '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 (97606, '2022-07-04', 7675, 92108, 5767, NULL, '1.0000', '11.4300', '11.4300', '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 (97607, '2022-07-04', 8918, 92109, 5767, NULL, '1.0000', '1.0400', '1.0400', '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 (97608, '2022-07-04', 7781, 92110, 5767, NULL, '1.0000', '4.2500', '4.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 (97609, '2022-07-04', 7674, 92111, 5767, NULL, '1.0000', '1.3000', '1.3000', '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 (97610, '2022-07-04', 9092, 92112, 5767, NULL, '1.0000', '5.2900', '5.2900', '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 (97611, '2022-07-04', 7674, 92113, 5767, NULL, '1.0000', '1.3000', '1.3000', '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 (97612, '2022-07-04', 9445, 92114, 5767, NULL, '1.0000', '4.5000', '4.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 (97613, '2022-07-04', 2295, 92115, 5767, 2954, '-37.0000', '0.9600', '0.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 (97614, '2022-07-04', 2295, 92115, 5767, NULL, '40.0000', '0.9600', '0.9600', '2.5000', '2.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 (97615, '2022-07-04', 2242, 92116, 5767, 3059, '-75.0000', '0.4800', '0.4800', '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 (97616, '2022-07-04', 2242, 92116, 5767, NULL, '78.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97617, '2022-07-04', 9209, 92117, 5767, NULL, '1.0000', '4.8000', '4.8000', '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 (97618, '2022-07-04', 7375, 92118, 5767, NULL, '10.0000', '3.9300', '3.9300', '7.0000', '7.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 (97619, '2022-07-04', 7457, 92119, 5767, 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 (97620, '2022-07-04', 2906, 92120, 5767, 18651, '-22.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 (97621, '2022-07-04', 2906, 92120, 5767, NULL, '24.0000', '2.6000', '2.6000', '4.0000', '4.0000', '-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 (97622, '2022-07-04', 7675, 92121, 5767, NULL, '1.0000', '11.4300', '11.4300', '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 (97623, '2022-07-04', 8690, 92122, 5767, NULL, '1.0000', '10.8000', '10.8000', '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 (97624, '2022-07-04', 7523, 92123, 5767, NULL, '1.0000', '9.7500', '9.7500', '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 (97625, '2022-07-04', 2284, 92124, 5767, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '11.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 (97626, '2022-07-04', 2311, 92125, 5767, NULL, '1.0000', '46.2900', '46.2900', '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 (97627, '2022-07-04', 7848, 92126, 5767, NULL, '1.0000', '1.3500', '1.3500', '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 (97628, '2022-07-04', 8879, 92127, 5767, NULL, '1.0000', '20.9000', '20.9000', '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 (97629, '2022-07-04', 7638, 92128, 5767, NULL, '1.0000', '12.0000', '12.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 (97630, '2022-07-04', 1665, 92129, 5767, 3235, '-137.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 (97631, '2022-07-04', 1665, 92129, 5767, NULL, '138.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-138.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97632, '2022-07-04', 7514, 92130, 5767, NULL, '1.0000', '2.2500', '2.2500', '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 (97633, '2022-07-04', 7411, 92131, 5767, NULL, '5.0000', '1.3500', '1.3500', '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 (97634, '2022-07-04', 8164, 92132, 5767, NULL, '1.0000', '16.3900', '16.3900', '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 (97635, '2022-07-04', 9763, 92133, 5767, 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 (97636, '2022-07-04', 7547, 92134, 5767, NULL, '4.0000', '0.0000', '0.0000', '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 (97637, '2022-07-04', 9646, 92135, 5767, 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 (97638, '2022-07-04', 7564, 92136, 5767, NULL, '1.0000', '0.6400', '0.6400', '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 (97639, '2022-07-04', 7703, 92137, 5767, NULL, '1.0000', '22.9900', '22.9900', '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 (97640, '2022-07-04', 7954, 92138, 5767, 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 (97641, '2022-07-04', 7564, 92139, 5767, NULL, '1.0000', '0.6400', '0.6400', '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 (97642, '2022-07-04', 8539, 92140, 5767, NULL, '2.0000', '31.8000', '31.8000', '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 (97643, '2022-07-04', 7483, 92141, 5767, 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 (97644, '2022-07-04', 9791, 92142, 5767, 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 (97645, '2022-07-04', 7376, 92143, 5767, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97646, '2022-07-04', 8017, 92144, 5767, NULL, '1.0000', '40.0000', '40.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 (97647, '2022-07-04', 7527, 92145, 5767, NULL, '1.0000', '0.8900', '0.8900', '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 (97648, '2022-07-04', 7400, 92146, 5767, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97649, '2022-07-04', 9794, 92147, 5768, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '87.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97650, '2022-07-04', 7790, 92148, 5768, NULL, '4.0000', '17.0000', '17.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 (97651, '2022-07-04', 8133, 92149, 5768, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (97652, '2022-07-04', 9715, 92150, 5768, 58139, '1.0000', '10.1143', '10.1143', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97653, '2022-07-04', 1837, 92151, 5768, 58241, '3.0000', '2.5422', '2.5422', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97654, '2022-07-04', 2275, 92152, 5768, 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 (97655, '2022-07-04', 2089, 92153, 5768, 58158, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97656, '2022-07-04', 2135, 92154, 5768, NULL, '1.0000', '-0.2588', '-0.2588', '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 (97657, '2022-07-04', 2293, 92155, 5768, NULL, '3.0000', '-17.4320', '-17.4320', '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 (97658, '2022-07-04', 2411, 92156, 5768, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97659, '2022-07-04', 1450, 92157, 5768, NULL, '5.0000', '0.8483', '0.8483', '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 (97660, '2022-07-04', 9794, 92158, 5768, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '87.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97661, '2022-07-04', 7857, 92159, 5768, NULL, '1.0000', '15.1300', '15.1300', '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 (97662, '2022-07-04', 2699, 92160, 5768, 58322, '1.0000', '3.5049', '3.5049', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97663, '2022-07-04', 8085, 92161, 5768, NULL, '3.0000', '14.0000', '14.0000', '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 (97664, '2022-07-04', 1935, 92162, 5768, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97665, '2022-07-04', 7704, 92163, 5768, NULL, '2.0000', '0.4900', '0.4900', '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 (97666, '2022-07-04', 1342, 92164, 5769, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97667, '2022-07-04', 8740, 92165, 5769, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97668, '2022-07-04', 2965, 92166, 5769, NULL, '1.0000', '10.9681', '10.9681', '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 (97669, '2022-07-04', 2089, 92167, 5769, 58158, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97670, '2022-07-04', 2289, 92168, 5769, 56470, '2.0000', '0.3611', '0.3611', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97671, '2022-07-04', 8208, 92169, 5769, NULL, '12.0000', '47.9541', '47.9541', '0.5000', '0.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 (97672, '2022-07-04', 2777, 92170, 5769, 58193, '1.0000', '3.8913', '3.8913', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97673, '2022-07-04', 2411, 92171, 5769, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97674, '2022-07-04', 8204, 92172, 5769, NULL, '4.0000', '1.5000', '1.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 (97675, '2022-07-04', 1935, 92173, 5769, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97676, '2022-07-04', 9794, 92174, 5769, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '85.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97677, '2022-07-04', 1910, 92175, 5769, 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 (97678, '2022-07-04', 1912, 92176, 5770, 57704, '5.0000', '0.6868', '0.6868', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97679, '2022-07-04', 9836, 92177, 5771, NULL, '1.0000', '25.0000', '25.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 (97680, '2022-07-04', 9823, 92178, 5771, NULL, '3.0000', '13.2500', '13.2500', '17.5000', '17.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 (97681, '2022-07-04', 7588, 92179, 5771, NULL, '1.0000', '6.9000', '6.9000', '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 (97682, '2022-07-04', 2643, 92180, 5771, NULL, '2.0000', '0.8700', '0.8700', '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 (97683, '2022-07-04', 7354, 92181, 5771, NULL, '3.0000', '0.3700', '0.3700', '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 (97684, '2022-07-04', 7745, 92182, 5771, NULL, '1.0000', '6.7000', '6.7000', '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 (97685, '2022-07-04', 7640, 92183, 5771, 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 (97686, '2022-07-04', 9204, 92184, 5771, NULL, '1.0000', '8.1600', '8.1600', '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 (97687, '2022-07-04', 7514, 92185, 5771, NULL, '1.0000', '2.2500', '2.2500', '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 (97688, '2022-07-04', 7917, 92186, 5771, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (97689, '2022-07-04', 1841, 92187, 5771, NULL, '2.0000', '142.5780', '142.5780', '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 (97690, '2022-07-04', 7560, 92188, 5771, NULL, '1.0000', '33.0200', '33.0200', '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 (97691, '2022-07-04', 8040, 92189, 5771, NULL, '1.0000', '14.9000', '14.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 (97692, '2022-07-04', 9160, 92190, 5771, NULL, '1.0000', '15.0000', '15.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 (97693, '2022-07-04', 9834, 92191, 5771, NULL, '1.0000', '1.4500', '1.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 (97694, '2022-07-04', 7954, 92192, 5771, 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 (97695, '2022-07-04', 1855, 92193, 5771, 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 (97696, '2022-07-04', 1577, 92194, 5771, 7596, '-18.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 (97697, '2022-07-04', 1577, 92194, 5771, NULL, '19.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-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 (97698, '2022-07-04', 9747, 92195, 5771, NULL, '2.0000', '0.6500', '0.6500', '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 (97699, '2022-07-04', 1935, 92196, 5771, 5586, '-169.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 (97700, '2022-07-04', 1935, 92196, 5771, NULL, '170.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-170.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97701, '2022-07-04', 7711, 92197, 5771, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97702, '2022-07-04', 8934, 92198, 5771, 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 (97703, '2022-07-04', 9603, 92199, 5771, NULL, '1.0000', '2.3300', '2.3300', '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 (97704, '2022-07-04', 7516, 92200, 5771, NULL, '1.0000', '10.0000', '10.0000', '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 (97705, '2022-07-04', 9089, 92201, 5771, NULL, '1.0000', '3.8000', '3.8000', '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 (97706, '2022-07-04', 9729, 92202, 5771, NULL, '1.0000', '0.6200', '0.6200', '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 (97707, '2022-07-04', 2169, 92203, 5772, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97708, '2022-07-04', 2068, 92204, 5773, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97709, '2022-07-04', 1689, 92205, 5773, 58150, '1.0000', '15.6116', '15.6116', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97710, '2022-07-04', 1342, 92206, 5774, 11264, '-23.0000', '6.8074', '6.8074', '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 (97711, '2022-07-04', 1342, 92206, 5774, NULL, '24.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-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 (97712, '2022-07-04', 1637, 92207, 5774, 3210, '-9.0000', '10.2000', '10.2000', '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 (97713, '2022-07-04', 1637, 92207, 5774, NULL, '10.0000', '10.2000', '10.2000', '20.0000', '20.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 (97714, '2022-07-04', 9626, 92208, 5774, 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 (97715, '2022-07-04', 1903, 92209, 5774, 5441, '-1.0000', '90.0000', '90.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 (97716, '2022-07-04', 1903, 92209, 5774, 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 (97717, '2022-07-04', 9800, 92210, 5774, NULL, '1.0000', '14.0000', '14.0000', '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 (97718, '2022-07-04', 9740, 92211, 5774, NULL, '1.0000', '0.6600', '0.6600', '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 (97719, '2022-07-04', 2384, 92212, 5774, 4087, '-55.0000', '0.4000', '0.4000', '0.7000', '0.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 (97720, '2022-07-04', 2384, 92212, 5774, NULL, '60.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97721, '2022-07-04', 1691, 92213, 5774, NULL, '1.0000', '10.3300', '10.3300', '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 (97722, '2022-07-04', 1592, 92214, 5774, 6223, '-15.0000', '35.9000', '35.9000', '52.0000', '52.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97723, '2022-07-04', 1592, 92214, 5774, NULL, '16.0000', '35.9000', '35.9000', '52.0000', '52.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 (97724, '2022-07-04', 2342, 92215, 5774, 3845, '-111.0000', '1.8600', '1.8600', '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 (97725, '2022-07-04', 2342, 92215, 5774, NULL, '113.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97726, '2022-07-04', 1855, 92216, 5774, 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 (97727, '2022-07-04', 2221, 92217, 5774, 4154, '-73.0000', '14.4737', '14.4737', '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 (97728, '2022-07-04', 2221, 92217, 5774, NULL, '74.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97729, '2022-07-04', 2135, 92218, 5774, 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 (97730, '2022-07-04', 2327, 92219, 5774, 5083, '-43.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 (97731, '2022-07-04', 2327, 92219, 5774, NULL, '45.0000', '4.5000', '4.5000', '6.0000', '6.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 (97732, '2022-07-04', 1647, 92220, 5774, 3218, '-19.0000', '4.7200', '4.7200', '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 (97733, '2022-07-04', 1647, 92220, 5774, NULL, '20.0000', '4.7200', '4.7200', '8.0000', '8.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 (97734, '2022-07-04', 1846, 92221, 5774, 12032, '-23.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 (97735, '2022-07-04', 1846, 92221, 5774, NULL, '24.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (97736, '2022-07-04', 9788, 92222, 5774, 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 (97737, '2022-07-04', 9401, 92223, 5774, NULL, '1.0000', '4.8500', '4.8500', '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 (97738, '2022-07-04', 2109, 92224, 5774, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '65.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 (97739, '2022-07-04', 9908, 92225, 5774, 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 (97740, '2022-07-04', 9907, 92226, 5774, 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 (97741, '2022-07-04', 8775, 92227, 5774, NULL, '1.0000', '2.6000', '2.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 (97742, '2022-07-04', 2088, 92228, 5774, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '43.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 (97743, '2022-07-04', 2289, 92229, 5774, 2949, '-224.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 (97744, '2022-07-04', 2289, 92229, 5774, NULL, '234.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-234.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97745, '2022-07-04', 2109, 92230, 5774, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '66.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 (97746, '2022-07-04', 8528, 92231, 5774, NULL, '1.0000', '16.4000', '16.4000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97747, '2022-07-05', 1519, 92232, 5775, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97748, '2022-07-05', 2068, 92233, 5775, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97749, '2022-07-05', 1807, 92234, 5775, NULL, '2.0000', '34.9993', '34.9993', '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 (97750, '2022-07-05', 1863, 92235, 5775, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97751, '2022-07-05', 2643, 92236, 5775, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97752, '2022-07-05', 1807, 92237, 5775, NULL, '2.0000', '34.9993', '34.9993', '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 (97753, '2022-07-05', 9783, 92238, 5775, 58166, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97754, '2022-07-05', 8369, 92239, 5775, 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 (97755, '2022-07-05', 1342, 92240, 5775, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97756, '2022-07-05', 2231, 92241, 5775, NULL, '2.0000', '-2049.0060', '-2049.0060', '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 (97757, '2022-07-05', 2491, 92242, 5775, 58257, '1.0000', '-73.4000', '-73.4000', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97758, '2022-07-05', 2971, 92243, 5775, 56861, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97759, '2022-07-05', 2416, 92244, 5775, 57493, '1.0000', '1.3371', '1.3371', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97760, '2022-07-05', 2379, 92245, 5775, NULL, '1.0000', '-14.1447', '-14.1447', '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 (97761, '2022-07-05', 2821, 92246, 5775, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97762, '2022-07-05', 2169, 92247, 5775, 58135, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97763, '2022-07-05', 9683, 92248, 5775, 58326, '1.0000', '3.3897', '3.3897', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97764, '2022-07-05', 2169, 92249, 5775, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97765, '2022-07-05', 8208, 92250, 5775, NULL, '2.0000', '47.9541', '47.9541', '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 (97766, '2022-07-05', 1580, 92251, 5775, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97767, '2022-07-05', 2242, 92252, 5775, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '60.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97768, '2022-07-05', 1519, 92253, 5775, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97769, '2022-07-05', 2821, 92254, 5775, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97770, '2022-07-05', 9715, 92255, 5775, 58139, '1.0000', '10.1143', '10.1143', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97771, '2022-07-05', 1935, 92256, 5775, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97772, '2022-07-05', 2001, 92257, 5776, 58050, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97773, '2022-07-05', 1339, 92258, 5776, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97774, '2022-07-05', 1839, 92259, 5776, NULL, '2.0000', '-157134.5188', '-157134.5188', '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 (97775, '2022-07-05', 9775, 92260, 5776, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97776, '2022-07-05', 2506, 92261, 5776, NULL, '1.0000', '-8.6523', '-8.6523', '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 (97777, '2022-07-05', 2096, 92262, 5776, 58242, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97778, '2022-07-05', 9683, 92263, 5776, 58326, '1.0000', '3.3897', '3.3897', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97779, '2022-07-05', 2754, 92264, 5777, NULL, '2.0000', '0.0800', '0.0800', '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 (97780, '2022-07-05', 7917, 92265, 5778, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '87.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97781, '2022-07-05', 7385, 92266, 5778, 57604, '1.0000', '7.8936', '7.8936', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97782, '2022-07-05', 7634, 92267, 5778, 57608, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97783, '2022-07-05', 2945, 92268, 5778, 54509, '1.0000', '9.4166', '9.4166', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97784, '2022-07-05', 9942, 92269, 5778, 57188, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97785, '2022-07-05', 7560, 92270, 5778, 57171, '1.0000', '41.1293', '41.1293', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97786, '2022-07-05', 7959, 92271, 5778, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '24.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97787, '2022-07-05', 9092, 92272, 5778, 52527, '2.0000', '0.3175', '0.3175', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97788, '2022-07-05', 9450, 92273, 5778, 30932, '1.0000', '3.2000', '3.2000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97789, '2022-07-05', 7675, 92274, 5778, NULL, '1.0000', '84.8590', '84.8590', '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 (97790, '2022-07-05', 2823, 92275, 5778, NULL, '1.0000', '11.2100', '11.2100', '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 (97791, '2022-07-05', 9269, 92276, 5778, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97792, '2022-07-05', 2876, 92277, 5778, 40403, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97793, '2022-07-05', 9417, 92278, 5778, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97794, '2022-07-05', 8367, 92279, 5778, NULL, '1.0000', '9.5000', '9.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 (97795, '2022-07-05', 8915, 92280, 5778, 57519, '1.0000', '8.7010', '8.7010', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97796, '2022-07-05', 1916, 92281, 5778, 57386, '1.0000', '10.5269', '10.5269', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97797, '2022-07-05', 7709, 92282, 5778, NULL, '2.0000', '916.6097', '916.6097', '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 (97798, '2022-07-05', 7740, 92283, 5778, NULL, '1.0000', '3.9500', '3.9500', '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 (97799, '2022-07-05', 2769, 92284, 5778, NULL, '2.0000', '1.8760', '1.8760', '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 (97800, '2022-07-05', 2242, 92285, 5778, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '123.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97801, '2022-07-05', 9274, 92286, 5778, NULL, '1.0000', '5.7160', '5.7160', '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 (97802, '2022-07-05', 2315, 92287, 5778, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97803, '2022-07-05', 7630, 92288, 5778, 53942, '1.0000', '5.6211', '5.6211', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97804, '2022-07-05', 7518, 92289, 5778, 57156, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97805, '2022-07-05', 8966, 92290, 5778, 56656, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97806, '2022-07-05', 7509, 92291, 5778, 57598, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97807, '2022-07-05', 7509, 92291, 5778, 57441, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97808, '2022-07-05', 7459, 92292, 5778, NULL, '20.0000', '3.0137', '3.0137', '4.0000', '4.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 (97809, '2022-07-05', 1841, 92293, 5778, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97810, '2022-07-05', 2363, 92294, 5778, 57465, '1.0000', '9.5960', '9.5960', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97811, '2022-07-05', 2232, 92295, 5779, 2776, '-7.0000', '29.0000', '29.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97812, '2022-07-05', 2232, 92295, 5779, NULL, '8.0000', '29.0000', '29.0000', '42.0000', '42.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 (97813, '2022-07-05', 9715, 92296, 5779, NULL, '1.0000', '9.4000', '9.4000', '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 (97814, '2022-07-05', 2957, 92297, 5779, NULL, '1.0000', '22.0000', '22.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 (97815, '2022-07-05', 2169, 92298, 5779, 10737, '-171.0000', '3.8397', '3.8397', '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 (97816, '2022-07-05', 2169, 92298, 5779, NULL, '172.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-172.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97817, '2022-07-05', 2975, 92299, 5779, 22363, '2.0000', '6.0000', '6.0000', '10.5000', '10.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 (97818, '2022-07-05', 1667, 92300, 5779, 9745, '-62.0000', '5.9400', '5.9400', '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 (97819, '2022-07-05', 1667, 92300, 5779, NULL, '64.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97820, '2022-07-05', 2823, 92301, 5779, 19684, '-15.0000', '11.2100', '11.2100', '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 (97821, '2022-07-05', 2823, 92301, 5779, NULL, '17.0000', '11.2100', '11.2100', '7.5000', '7.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 (97822, '2022-07-05', 2285, 92302, 5779, 2945, '-52.0000', '35.8000', '35.8000', '65.5000', '65.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 (97823, '2022-07-05', 2285, 92302, 5779, NULL, '53.0000', '35.8000', '35.8000', '65.5000', '65.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 (97824, '2022-07-05', 1409, 92303, 5779, 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 (97825, '2022-07-05', 9794, 92304, 5779, NULL, '2.0000', '1.0800', '1.0800', '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 (97826, '2022-07-05', 9834, 92305, 5779, NULL, '2.0000', '1.4500', '1.4500', '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 (97827, '2022-07-05', 9763, 92306, 5779, 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 (97828, '2022-07-05', 1371, 92307, 5779, 10169, '-12.0000', '5.5000', '5.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 (97829, '2022-07-05', 1371, 92307, 5779, NULL, '13.0000', '5.5000', '5.5000', '10.0000', '10.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 (97830, '2022-07-05', 9729, 92308, 5779, NULL, '2.0000', '0.6200', '0.6200', '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 (97831, '2022-07-05', 2169, 92309, 5779, 10737, '-171.0000', '3.8397', '3.8397', '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 (97832, '2022-07-05', 2169, 92309, 5779, NULL, '176.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-176.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97833, '2022-07-05', 2411, 92310, 5779, 4503, '-7.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 (97834, '2022-07-05', 2411, 92310, 5779, NULL, '10.0000', '1.5000', '1.5000', '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 (97835, '2022-07-05', 2823, 92311, 5779, 19684, '-15.0000', '11.2100', '11.2100', '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 (97836, '2022-07-05', 2823, 92311, 5779, NULL, '16.0000', '11.2100', '11.2100', '7.5000', '7.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 (97837, '2022-07-05', 8208, 92312, 5779, NULL, '2.0000', '33.0000', '33.0000', '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 (97838, '2022-07-05', 1841, 92313, 5779, NULL, '2.0000', '142.5780', '142.5780', '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 (97839, '2022-07-05', 1840, 92314, 5779, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (97840, '2022-07-05', 2247, 92315, 5779, 2784, '-11.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 (97841, '2022-07-05', 2247, 92315, 5779, NULL, '13.0000', '2.5000', '2.5000', '3.5000', '3.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 (97842, '2022-07-05', 2379, 92316, 5779, 4032, '-71.0000', '1.5900', '1.5900', '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 (97843, '2022-07-05', 2379, 92316, 5779, NULL, '72.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97844, '2022-07-05', 7747, 92317, 5780, NULL, '1.0000', '17.9300', '17.9300', '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 (97845, '2022-07-05', 7473, 92318, 5780, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (97846, '2022-07-05', 7917, 92319, 5780, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (97847, '2022-07-05', 7641, 92320, 5780, NULL, '1.0000', '1.9000', '1.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 (97848, '2022-07-05', 9089, 92321, 5780, NULL, '2.0000', '3.8000', '3.8000', '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 (97849, '2022-07-05', 7886, 92322, 5780, 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 (97850, '2022-07-05', 8172, 92323, 5780, NULL, '1.0000', '40.7000', '40.7000', '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 (97851, '2022-07-05', 7862, 92324, 5780, NULL, '1.0000', '3.8500', '3.8500', '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 (97852, '2022-07-05', 7865, 92325, 5780, NULL, '1.0000', '1.6300', '1.6300', '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 (97853, '2022-07-05', 7621, 92326, 5780, NULL, '1.0000', '5.9000', '5.9000', '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 (97854, '2022-07-05', 7911, 92327, 5780, NULL, '1.0000', '4.3700', '4.3700', '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 (97855, '2022-07-05', 7473, 92328, 5780, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97856, '2022-07-05', 7996, 92329, 5780, NULL, '1.0000', '47.0000', '47.0000', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97857, '2022-07-05', 7899, 92330, 5780, NULL, '2.0000', '3.3000', '3.3000', '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 (97858, '2022-07-05', 2251, 92331, 5780, 2788, '-29.0000', '10.9700', '10.9700', '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 (97859, '2022-07-05', 2251, 92331, 5780, NULL, '30.0000', '10.9700', '10.9700', '19.5000', '19.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 (97860, '2022-07-05', 2762, 92332, 5780, NULL, '1.0000', '7.1000', '7.1000', '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 (97861, '2022-07-05', 7380, 92333, 5780, NULL, '1.0000', '8.0000', '8.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 (97862, '2022-07-05', 8203, 92334, 5780, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97863, '2022-07-05', 7674, 92335, 5780, NULL, '1.0000', '1.3000', '1.3000', '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 (97864, '2022-07-05', 7518, 92336, 5780, NULL, '1.0000', '7.8200', '7.8200', '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 (97865, '2022-07-05', 2242, 92337, 5780, 3059, '-78.0000', '0.4800', '0.4800', '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 (97866, '2022-07-05', 2242, 92337, 5780, NULL, '80.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97867, '2022-07-05', 7672, 92338, 5780, NULL, '1.0000', '1.0200', '1.0200', '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 (97868, '2022-07-05', 8689, 92339, 5780, 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 (97869, '2022-07-05', 7713, 92340, 5780, NULL, '4.0000', '0.3800', '0.3800', '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 (97870, '2022-07-05', 9012, 92341, 5780, NULL, '1.0000', '24.0000', '24.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 (97871, '2022-07-05', 7411, 92342, 5780, NULL, '2.0000', '1.3500', '1.3500', '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 (97872, '2022-07-05', 9729, 92343, 5780, NULL, '1.0000', '0.6200', '0.6200', '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 (97873, '2022-07-05', 7674, 92344, 5780, NULL, '1.0000', '1.3000', '1.3000', '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 (97874, '2022-07-05', 7933, 92345, 5780, NULL, '1.0000', '0.4400', '0.4400', '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 (97875, '2022-07-05', 9498, 92346, 5780, NULL, '1.0000', '12.5000', '12.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 (97876, '2022-07-05', 7524, 92347, 5780, NULL, '1.0000', '11.9500', '11.9500', '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 (97877, '2022-07-05', 7411, 92348, 5780, NULL, '1.0000', '1.3500', '1.3500', '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 (97878, '2022-07-05', 7473, 92349, 5780, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97879, '2022-07-05', 8547, 92350, 5780, NULL, '1.0000', '3.3500', '3.3500', '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 (97880, '2022-07-05', 9729, 92351, 5780, NULL, '5.0000', '0.6200', '0.6200', '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 (97881, '2022-07-05', 7464, 92352, 5780, NULL, '1.0000', '21.9000', '21.9000', '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 (97882, '2022-07-05', 7411, 92353, 5781, NULL, '1.0000', '1.3500', '1.3500', '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 (97883, '2022-07-05', 7591, 92354, 5781, NULL, '1.0000', '2.7500', '2.7500', '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 (97884, '2022-07-05', 7569, 92355, 5781, NULL, '1.0000', '37.0000', '37.0000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97885, '2022-07-05', 7560, 92356, 5781, NULL, '1.0000', '33.0200', '33.0200', '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 (97886, '2022-07-05', 7954, 92357, 5781, 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 (97887, '2022-07-05', 2169, 92358, 5782, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97888, '2022-07-05', 1425, 92359, 5782, 56257, '1.0000', '6.9142', '6.9142', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97889, '2022-07-05', 2366, 92360, 5782, 56954, '4.0000', '3.6526', '3.6526', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97890, '2022-07-05', 3017, 92361, 5782, 55771, '1.0000', '3.9691', '3.9691', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97891, '2022-07-05', 3064, 92362, 5782, 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 (97892, '2022-07-05', 1338, 92363, 5782, 57980, '2.0000', '1.8768', '1.8768', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97893, '2022-07-05', 2167, 92364, 5782, 57982, '1.0000', '2.4773', '2.4773', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97894, '2022-07-05', 3029, 92365, 5782, 54655, '1.0000', '7.0906', '7.0906', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97895, '2022-07-05', 2506, 92366, 5782, 56739, '1.0000', '4.0840', '4.0840', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97896, '2022-07-05', 9275, 92367, 5782, NULL, '1.0000', '6.3000', '6.3000', '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 (97897, '2022-07-05', 7590, 92368, 5782, 54617, '1.0000', '3.0718', '3.0718', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97898, '2022-07-05', 1339, 92369, 5782, 57978, '1.0000', '1.8343', '1.8343', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97899, '2022-07-05', 2693, 92370, 5782, 56907, '1.0000', '24.4402', '24.4402', '32.5000', '32.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97900, '2022-07-05', 1767, 92371, 5782, 18796, '1.0000', '4.6000', '4.6000', '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 (97901, '2022-07-05', 2342, 92372, 5782, 55488, '2.0000', '2.0954', '2.0954', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97902, '2022-07-05', 2604, 92373, 5782, 46954, '3.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 345);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97903, '2022-07-05', 2098, 92374, 5782, 57999, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97904, '2022-07-05', 1409, 92375, 5782, 56951, '1.0000', '13.0594', '13.0594', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97905, '2022-07-05', 2384, 92376, 5782, 56740, '5.0000', '0.3965', '0.3965', '0.7000', '0.7000', '64.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97906, '2022-07-05', 1432, 92377, 5782, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97907, '2022-07-05', 3011, 92378, 5782, 47963, '4.0000', '3.7800', '3.7800', '5.0000', '5.0000', '56.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97908, '2022-07-05', 9399, 92379, 5782, 50942, '1.0000', '1.0183', '1.0183', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97909, '2022-07-05', 2354, 92380, 5782, 56731, '1.0000', '5.2506', '5.2506', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97910, '2022-07-05', 1935, 92381, 5782, 57988, '1.0000', '1.3001', '1.3001', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97911, '2022-07-05', 1410, 92382, 5782, 56900, '1.0000', '2.8637', '2.8637', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97912, '2022-07-05', 7917, 92383, 5782, NULL, '6.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (97913, '2022-07-05', 2248, 92384, 5782, 55871, '1.0000', '3.0210', '3.0210', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97914, '2022-07-05', 7741, 92385, 5782, 56896, '1.0000', '3.0439', '3.0439', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97915, '2022-07-05', 2254, 92386, 5782, 57954, '1.0000', '20.9378', '20.9378', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97916, '2022-07-05', 1785, 92387, 5782, 49051, '1.0000', '15.2971', '15.2971', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97917, '2022-07-05', 8052, 92388, 5782, NULL, '1.0000', '29.0000', '29.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 (97918, '2022-07-05', 2317, 92389, 5782, 58096, '1.0000', '15.4737', '15.4737', '20.0000', '20.0000', '16.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97919, '2022-07-05', 1871, 92390, 5782, 56238, '10.0000', '5.0960', '5.0960', '3.7000', '3.7000', '62.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97920, '2022-07-05', 9736, 92391, 5783, NULL, '1.0000', '3.9100', '3.9100', '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 (97921, '2022-07-05', 1665, 92392, 5784, 57952, '2.0000', '1.1816', '1.1816', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97922, '2022-07-05', 8622, 92393, 5785, NULL, '1.0000', '1.4921', '1.4921', '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 (97923, '2022-07-05', 8208, 92394, 5785, NULL, '4.0000', '47.9541', '47.9541', '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 (97924, '2022-07-05', 2068, 92395, 5785, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97925, '2022-07-05', 2315, 92396, 5785, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '107.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97926, '2022-07-05', 2942, 92397, 5785, 51210, '1.0000', '0.8200', '0.8200', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97927, '2022-07-05', 7514, 92398, 5785, NULL, '1.0000', '2.2500', '2.2500', '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 (97928, '2022-07-05', 1425, 92399, 5785, 58197, '1.0000', '86.3183', '86.3183', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97929, '2022-07-05', 2656, 92400, 5785, 58354, '1.0000', '1.4206', '1.4206', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97930, '2022-07-05', 2699, 92401, 5785, NULL, '1.0000', '3.5000', '3.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 (97931, '2022-07-05', 9634, 92402, 5785, NULL, '3.0000', '4.8000', '4.8000', '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 (97932, '2022-07-05', 2237, 92403, 5785, 57669, '2.0000', '15.5072', '15.5072', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97933, '2022-07-05', 2169, 92404, 5785, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97934, '2022-07-05', 2315, 92405, 5785, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '108.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97935, '2022-07-05', 1699, 92406, 5785, NULL, '1.0000', '3.2000', '3.2000', '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 (97936, '2022-07-05', 1908, 92407, 5785, NULL, '3.0000', '0.9032', '0.9032', '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 (97937, '2022-07-05', 2379, 92408, 5785, NULL, '2.0000', '-14.1447', '-14.1447', '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 (97938, '2022-07-05', 2440, 92409, 5785, 58057, '1.0000', '6.6730', '6.6730', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97939, '2022-07-05', 1489, 92410, 5785, 50070, '1.0000', '36.0600', '36.0600', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97940, '2022-07-05', 9840, 92411, 5785, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97941, '2022-07-05', 1912, 92412, 5785, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97942, '2022-07-05', 2169, 92413, 5785, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97943, '2022-07-05', 1833, 92414, 5785, 53216, '9.0000', '5.1600', '5.1600', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97944, '2022-07-05', 1833, 92414, 5785, NULL, '1.0000', '5.1600', '5.1600', '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 (97945, '2022-07-05', 2255, 92415, 5785, 51664, '1.0000', '17.1339', '17.1339', '32.5000', '32.5000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97946, '2022-07-05', 9651, 92416, 5785, 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 (97947, '2022-07-05', 1425, 92417, 5785, 58197, '1.0000', '86.3183', '86.3183', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97948, '2022-07-05', 2655, 92418, 5785, NULL, '1.0000', '2.3332', '2.3332', '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 (97949, '2022-07-05', 9841, 92419, 5785, 55549, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97950, '2022-07-05', 2169, 92420, 5785, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97951, '2022-07-05', 9831, 92421, 5785, 58376, '2.0000', '1.9224', '1.9224', '3.5000', '3.5000', '70.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97952, '2022-07-05', 1529, 92422, 5785, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97953, '2022-07-05', 2916, 92423, 5785, NULL, '1.0000', '4209.2937', '4209.2937', '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 (97954, '2022-07-05', 9741, 92424, 5785, 57720, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97955, '2022-07-05', 1935, 92425, 5785, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97956, '2022-07-05', 1935, 92426, 5785, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97957, '2022-07-05', 8844, 92427, 5785, 55695, '1.0000', '4.0579', '4.0579', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97958, '2022-07-05', 7411, 92428, 5785, NULL, '1.0000', '1.2819', '1.2819', '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 (97959, '2022-07-05', 1665, 92429, 5785, 55689, '2.0000', '1.1685', '1.1685', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97960, '2022-07-05', 1665, 92429, 5785, 55698, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97961, '2022-07-05', 1521, 92430, 5785, 58220, '2.0000', '-217.8500', '-217.8500', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97962, '2022-07-05', 8065, 92431, 5785, NULL, '1.0000', '32.0000', '32.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 (97963, '2022-07-05', 2169, 92432, 5785, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97964, '2022-07-05', 2283, 92433, 5785, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97965, '2022-07-05', 1760, 92434, 5785, 58185, '3.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97966, '2022-07-05', 1499, 92435, 5785, 57679, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '31.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97967, '2022-07-05', 3001, 92436, 5785, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97968, '2022-07-05', 1715, 92437, 5785, 58171, '1.0000', '10.1667', '10.1667', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97969, '2022-07-05', 2135, 92438, 5785, NULL, '1.0000', '-0.2588', '-0.2588', '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 (97970, '2022-07-05', 2762, 92439, 5785, NULL, '1.0000', '7.1000', '7.1000', '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 (97971, '2022-07-05', 1519, 92440, 5785, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97972, '2022-07-05', 9736, 92441, 5785, 58161, '1.0000', '5.1722', '5.1722', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97973, '2022-07-05', 8333, 92442, 5785, NULL, '1.0000', '7.5900', '7.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 (97974, '2022-07-05', 7944, 92443, 5785, 58223, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97975, '2022-07-05', 7411, 92444, 5785, NULL, '3.0000', '1.2819', '1.2819', '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 (97976, '2022-07-05', 2398, 92445, 5785, 48932, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97977, '2022-07-05', 1410, 92446, 5785, NULL, '1.0000', '48.8052', '48.8052', '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 (97978, '2022-07-05', 1981, 92447, 5785, 58048, '1.0000', '12.5000', '12.5000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97979, '2022-07-05', 7398, 92448, 5785, NULL, '1.0000', '143.5000', '143.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 (97980, '2022-07-05', 1307, 92449, 5785, NULL, '1.0000', '-59.9897', '-59.9897', '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 (97981, '2022-07-05', 2916, 92450, 5785, NULL, '1.0000', '4209.2937', '4209.2937', '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 (97982, '2022-07-05', 9831, 92451, 5785, 58376, '2.0000', '1.9224', '1.9224', '3.5000', '3.5000', '70.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97983, '2022-07-05', 1521, 92452, 5785, 58220, '1.0000', '-217.8500', '-217.8500', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97984, '2022-07-05', 1501, 92453, 5785, NULL, '1.0000', '0.6299', '0.6299', '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 (97985, '2022-07-05', 1935, 92454, 5785, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97986, '2022-07-05', 9737, 92455, 5785, 58160, '1.0000', '9.4750', '9.4750', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97987, '2022-07-05', 8740, 92456, 5785, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97988, '2022-07-05', 8984, 92457, 5785, NULL, '1.0000', '-2216.1099', '-2216.1099', '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 (97989, '2022-07-05', 2643, 92458, 5785, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97990, '2022-07-05', 9960, 92459, 5785, 58163, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97991, '2022-07-05', 9834, 92460, 5785, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97992, '2022-07-05', 1521, 92461, 5785, 58220, '1.0000', '-217.8500', '-217.8500', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97993, '2022-07-05', 2363, 92462, 5785, 57814, '1.0000', '4.9400', '4.9400', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97994, '2022-07-05', 7385, 92463, 5785, 58142, '4.0000', '3.1710', '3.1710', '4.0000', '4.0000', '196.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97995, '2022-07-05', 8207, 92464, 5785, NULL, '1.0000', '0.0000', '0.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 (97996, '2022-07-05', 9762, 92465, 5785, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97997, '2022-07-05', 7519, 92466, 5785, NULL, '1.0000', '-12.1850', '-12.1850', '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 (97998, '2022-07-05', 1771, 92467, 5785, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97999, '2022-07-05', 7585, 92468, 5785, NULL, '1.0000', '3.9600', '3.9600', '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 (98000, '2022-07-05', 2260, 92469, 5785, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98001, '2022-07-05', 9695, 92470, 5785, 58375, '1.0000', '5.4288', '5.4288', '8.0000', '8.0000', '35.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98002, '2022-07-05', 2363, 92471, 5785, 57814, '1.0000', '4.9400', '4.9400', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98003, '2022-07-05', 7819, 92472, 5785, NULL, '1.0000', '10.0999', '10.0999', '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 (98004, '2022-07-05', 2887, 92473, 5785, 57756, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98005, '2022-07-05', 8743, 92474, 5785, 58360, '1.0000', '14.9167', '14.9167', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98006, '2022-07-05', 2363, 92475, 5785, 57814, '1.0000', '4.9400', '4.9400', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98007, '2022-07-05', 2363, 92475, 5785, NULL, '1.0000', '4.9400', '4.9400', '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 (98008, '2022-07-05', 2921, 92476, 5785, 58178, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98009, '2022-07-05', 2643, 92477, 5785, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98010, '2022-07-05', 2962, 92478, 5785, 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 (98011, '2022-07-05', 1425, 92479, 5785, 58197, '2.0000', '86.3183', '86.3183', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98012, '2022-07-05', 2384, 92480, 5785, NULL, '2.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98013, '2022-07-05', 7411, 92481, 5785, NULL, '1.0000', '1.2819', '1.2819', '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 (98014, '2022-07-05', 2416, 92482, 5785, 57493, '1.0000', '1.3371', '1.3371', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98015, '2022-07-05', 1521, 92483, 5785, 58220, '1.0000', '-217.8500', '-217.8500', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98016, '2022-07-05', 2921, 92484, 5785, 58178, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98017, '2022-07-05', 2250, 92485, 5785, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98018, '2022-07-05', 9736, 92486, 5785, 58161, '1.0000', '5.1722', '5.1722', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98019, '2022-07-05', 7411, 92487, 5785, NULL, '1.0000', '1.2819', '1.2819', '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 (98020, '2022-07-05', 1499, 92488, 5785, 57679, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '31.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98021, '2022-07-05', 7411, 92489, 5785, NULL, '2.0000', '1.2819', '1.2819', '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 (98022, '2022-07-05', 1329, 92490, 5785, NULL, '1.0000', '4.2000', '4.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 (98023, '2022-07-05', 2354, 92491, 5785, 57746, '1.0000', '28.4264', '28.4264', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98024, '2022-07-05', 9831, 92492, 5785, 58376, '4.0000', '1.9224', '1.9224', '3.5000', '3.5000', '68.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98025, '2022-07-05', 2088, 92493, 5785, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98026, '2022-07-05', 1331, 92494, 5785, NULL, '1.0000', '4.2000', '4.2000', '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 (98027, '2022-07-06', 2916, 92495, 5786, NULL, '1.0000', '4209.2937', '4209.2937', '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 (98028, '2022-07-06', 2068, 92496, 5786, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98029, '2022-07-06', 1840, 92497, 5786, NULL, '1.0000', '0.2400', '0.2400', '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 (98030, '2022-07-06', 2315, 92498, 5786, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '105.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98031, '2022-07-06', 7328, 92499, 5786, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (98032, '2022-07-06', 1908, 92500, 5786, NULL, '5.0000', '0.9032', '0.9032', '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 (98033, '2022-07-06', 2154, 92501, 5786, 57141, '1.0000', '12.2956', '12.2956', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98034, '2022-07-06', 8186, 92502, 5786, NULL, '3.0000', '1.0800', '1.0800', '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 (98035, '2022-07-06', 9831, 92503, 5786, 58376, '1.0000', '1.9224', '1.9224', '3.5000', '3.5000', '63.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98036, '2022-07-06', 2706, 92504, 5786, 58186, '1.0000', '8.7925', '8.7925', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98037, '2022-07-06', 1657, 92505, 5786, 19371, '2.0000', '90.0000', '90.0000', '0.6000', '0.6000', '174.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98038, '2022-07-06', 2236, 92506, 5786, 55909, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98039, '2022-07-06', 9683, 92507, 5786, 58359, '1.0000', '3.2974', '3.2974', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98040, '2022-07-06', 1521, 92508, 5786, NULL, '1.0000', '-217.8500', '-217.8500', '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 (98041, '2022-07-06', 1536, 92509, 5786, 37793, '10.0000', '101.0896', '101.0896', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98042, '2022-07-06', 1889, 92510, 5786, NULL, '1.0000', '1.3000', '1.3000', '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 (98043, '2022-07-06', 7612, 92511, 5786, 57807, '2.0000', '0.4900', '0.4900', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98044, '2022-07-06', 2352, 92512, 5786, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (98045, '2022-07-06', 9794, 92513, 5786, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '84.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98046, '2022-07-06', 9683, 92514, 5786, 58359, '1.0000', '3.2974', '3.2974', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98047, '2022-07-06', 9482, 92515, 5786, NULL, '2.0000', '0.5000', '0.5000', '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 (98048, '2022-07-06', 1519, 92516, 5786, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98049, '2022-07-06', 1339, 92517, 5786, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98050, '2022-07-06', 1941, 92518, 5786, 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 (98051, '2022-07-06', 9245, 92519, 5786, NULL, '1.0000', '15.1700', '15.1700', '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 (98052, '2022-07-06', 1574, 92520, 5786, NULL, '1.0000', '1.7000', '1.7000', '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 (98053, '2022-07-06', 2643, 92521, 5786, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98054, '2022-07-06', 2643, 92522, 5786, 58067, '2.0000', '0.9967', '0.9967', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98055, '2022-07-06', 7961, 92523, 5786, 45193, '1.0000', '10.5600', '10.5600', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98056, '2022-07-06', 9831, 92524, 5786, 58376, '1.0000', '1.9224', '1.9224', '3.5000', '3.5000', '63.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98057, '2022-07-06', 2384, 92525, 5786, NULL, '1.0000', '-0.4538', '-0.4538', '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 (98058, '2022-07-06', 9089, 92526, 5786, 58356, '1.0000', '6.0629', '6.0629', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98059, '2022-07-06', 2643, 92527, 5786, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98060, '2022-07-06', 7334, 92528, 5787, 57417, '1.0000', '9.1591', '9.1591', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98061, '2022-07-06', 2104, 92529, 5787, NULL, '4.0000', '0.2000', '0.2000', '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 (98062, '2022-07-06', 2242, 92530, 5787, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '120.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98063, '2022-07-06', 8097, 92531, 5787, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98064, '2022-07-06', 1837, 92532, 5787, 56551, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98065, '2022-07-06', 7432, 92533, 5787, 51785, '1.0000', '3.7506', '3.7506', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98066, '2022-07-06', 7848, 92534, 5787, NULL, '1.0000', '-223.3573', '-223.3573', '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 (98067, '2022-07-06', 9953, 92535, 5787, 57648, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98068, '2022-07-06', 7457, 92536, 5787, 57615, '1.0000', '4.4780', '4.4780', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98069, '2022-07-06', 2315, 92537, 5787, 57597, '2.0000', '0.7562', '0.7562', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98070, '2022-07-06', 7959, 92538, 5787, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98071, '2022-07-06', 9729, 92539, 5787, 56613, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98072, '2022-07-06', 7385, 92540, 5787, 57604, '5.0000', '7.8936', '7.8936', '4.0000', '4.0000', '34.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98073, '2022-07-06', 1340, 92541, 5787, 57181, '1.0000', '3.3640', '3.3640', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98074, '2022-07-06', 8918, 92542, 5787, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98075, '2022-07-06', 9819, 92543, 5787, 56652, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98076, '2022-07-06', 8849, 92544, 5787, NULL, '1.0000', '1.0700', '1.0700', '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 (98077, '2022-07-06', 7641, 92545, 5787, 55967, '1.0000', '6.9740', '6.9740', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98078, '2022-07-06', 8739, 92546, 5787, NULL, '1.0000', '12.5156', '12.5156', '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 (98079, '2022-07-06', 7674, 92547, 5787, 56584, '1.0000', '120.7007', '120.7007', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98080, '2022-07-06', 9695, 92548, 5787, 57541, '2.0000', '5.7411', '5.7411', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98081, '2022-07-06', 7354, 92549, 5787, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98082, '2022-07-06', 7750, 92550, 5787, 56538, '1.0000', '43.7502', '43.7502', '61.0000', '61.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98083, '2022-07-06', 2608, 92551, 5788, 40127, '2.0000', '83.3300', '83.3300', '120.0000', '120.0000', '2.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98084, '2022-07-06', 7509, 92552, 5789, 57441, '1.0000', '9.8358', '9.8358', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98085, '2022-07-06', 1501, 92553, 5789, 56659, '2.0000', '2.6357', '2.6357', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98086, '2022-07-06', 1529, 92554, 5790, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98087, '2022-07-06', 1590, 92555, 5790, 54532, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98088, '2022-07-06', 8773, 92556, 5790, 58357, '1.0000', '3.8300', '3.8300', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98089, '2022-07-06', 1637, 92557, 5790, NULL, '1.0000', '238.7168', '238.7168', '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 (98090, '2022-07-06', 1593, 92558, 5790, NULL, '10.0000', '5.9000', '5.9000', '8.7000', '8.7000', '-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 (98091, '2022-07-06', 1559, 92559, 5790, 53218, '1.0000', '31.0635', '31.0635', '41.0000', '41.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98092, '2022-07-06', 2169, 92560, 5790, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98093, '2022-07-06', 1935, 92561, 5790, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98094, '2022-07-06', 2730, 92562, 5790, 51643, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98095, '2022-07-06', 1602, 92563, 5790, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98096, '2022-07-06', 7652, 92564, 5790, NULL, '5.0000', '40.3000', '40.3000', '1.6000', '1.6000', '-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 (98097, '2022-07-06', 2543, 92565, 5790, 51488, '1.0000', '3.0560', '3.0560', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98098, '2022-07-06', 9783, 92566, 5790, 58166, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98099, '2022-07-06', 2169, 92567, 5790, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98100, '2022-07-06', 1912, 92568, 5790, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98101, '2022-07-06', 1501, 92569, 5790, NULL, '1.0000', '0.6299', '0.6299', '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 (98102, '2022-07-06', 2363, 92570, 5790, NULL, '2.0000', '4.9400', '4.9400', '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 (98103, '2022-07-06', 9927, 92571, 5790, 58136, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98104, '2022-07-06', 2643, 92572, 5790, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98105, '2022-07-06', 2275, 92573, 5790, 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 (98106, '2022-07-06', 2769, 92574, 5790, NULL, '4.0000', '1.8925', '1.8925', '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 (98107, '2022-07-06', 1904, 92575, 5790, NULL, '1.0000', '-21.7625', '-21.7625', '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 (98108, '2022-07-06', 2135, 92576, 5790, NULL, '1.0000', '-0.2588', '-0.2588', '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 (98109, '2022-07-06', 8740, 92577, 5791, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98110, '2022-07-06', 1501, 92578, 5791, NULL, '1.0000', '0.6299', '0.6299', '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 (98111, '2022-07-06', 2986, 92579, 5791, 47074, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98112, '2022-07-06', 9573, 92580, 5791, 51685, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98113, '2022-07-06', 9748, 92581, 5791, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98114, '2022-07-06', 1310, 92582, 5791, 57744, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98115, '2022-07-06', 7569, 92583, 5791, NULL, '1.0000', '37.0000', '37.0000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98116, '2022-07-06', 1450, 92584, 5791, NULL, '15.0000', '0.8483', '0.8483', '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 (98117, '2022-07-06', 1665, 92585, 5791, 55698, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98118, '2022-07-06', 2010, 92586, 5791, 58061, '2.0000', '1.1210', '1.1210', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98119, '2022-07-06', 2565, 92587, 5791, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98120, '2022-07-06', 8021, 92588, 5791, NULL, '1.0000', '13.0000', '13.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 (98121, '2022-07-06', 1432, 92589, 5791, 58198, '1.0000', '12.5636', '12.5636', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98122, '2022-07-06', 1805, 92590, 5792, NULL, '1.0000', '40.8080', '40.8080', '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 (98123, '2022-07-06', 2352, 92591, 5792, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (98124, '2022-07-06', 2986, 92592, 5792, 47074, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98125, '2022-07-06', 2511, 92593, 5792, NULL, '1.0000', '13.8000', '13.8000', '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 (98126, '2022-07-06', 1665, 92594, 5792, 55698, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98127, '2022-07-06', 2295, 92595, 5792, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98128, '2022-07-06', 8208, 92596, 5792, NULL, '2.0000', '47.9541', '47.9541', '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 (98129, '2022-07-06', 2315, 92597, 5792, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '104.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98130, '2022-07-06', 2965, 92598, 5792, NULL, '1.0000', '11.6750', '11.6750', '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 (98131, '2022-07-06', 2643, 92599, 5792, 58067, '1.0000', '0.9967', '0.9967', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98132, '2022-07-06', 2813, 92600, 5793, NULL, '1.0000', '51.5300', '51.5300', '95.5000', '95.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98133, '2022-07-06', 7547, 92601, 5793, NULL, '5.0000', '0.0000', '0.0000', '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 (98134, '2022-07-06', 7385, 92602, 5793, NULL, '3.0000', '2.0000', '2.0000', '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 (98135, '2022-07-06', 7608, 92603, 5793, NULL, '1.0000', '6.9800', '6.9800', '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 (98136, '2022-07-06', 1935, 92604, 5793, 5586, '-170.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 (98137, '2022-07-06', 1935, 92604, 5793, NULL, '171.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-171.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98138, '2022-07-06', 7713, 92605, 5793, NULL, '1.0000', '0.3800', '0.3800', '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 (98139, '2022-07-06', 7651, 92606, 5793, NULL, '1.0000', '2.6700', '2.6700', '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 (98140, '2022-07-06', 7385, 92607, 5793, NULL, '2.0000', '2.0000', '2.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 (98141, '2022-07-06', 8878, 92608, 5793, NULL, '1.0000', '6.6700', '6.6700', '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 (98142, '2022-07-06', 7672, 92609, 5793, NULL, '2.0000', '1.0200', '1.0200', '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 (98143, '2022-07-06', 7781, 92610, 5793, NULL, '3.0000', '4.2500', '4.2500', '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 (98144, '2022-07-06', 7664, 92611, 5793, NULL, '1.0000', '6.9400', '6.9400', '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 (98145, '2022-07-06', 1841, 92612, 5793, NULL, '2.0000', '142.5780', '142.5780', '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 (98146, '2022-07-06', 1840, 92613, 5793, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (98147, '2022-07-06', 2315, 92614, 5793, 2735, '-529.0000', '0.3300', '0.3300', '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 (98148, '2022-07-06', 2315, 92614, 5793, NULL, '531.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-531.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98149, '2022-07-06', 2283, 92615, 5793, 2943, '-29.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 (98150, '2022-07-06', 2283, 92615, 5793, NULL, '30.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (98151, '2022-07-06', 7674, 92616, 5793, NULL, '1.0000', '1.3000', '1.3000', '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 (98152, '2022-07-06', 8429, 92617, 5793, NULL, '1.0000', '9.3000', '9.3000', '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 (98153, '2022-07-06', 7743, 92618, 5793, NULL, '3.0000', '1.3100', '1.3100', '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 (98154, '2022-07-06', 7886, 92619, 5793, 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 (98155, '2022-07-06', 7674, 92620, 5793, NULL, '1.0000', '1.3000', '1.3000', '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 (98156, '2022-07-06', 7704, 92621, 5793, NULL, '2.0000', '0.4900', '0.4900', '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 (98157, '2022-07-06', 7730, 92622, 5793, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (98158, '2022-07-06', 7730, 92623, 5793, NULL, '1.0000', '0.1000', '0.1000', '0.2000', '0.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 (98159, '2022-07-06', 7713, 92624, 5793, NULL, '1.0000', '0.3800', '0.3800', '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 (98160, '2022-07-06', 7642, 92625, 5794, NULL, '1.0000', '5.9200', '5.9200', '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 (98161, '2022-07-06', 9092, 92626, 5794, NULL, '4.0000', '5.2900', '5.2900', '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 (98162, '2022-07-06', 7859, 92627, 5794, NULL, '1.0000', '12.6300', '12.6300', '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 (98163, '2022-07-06', 7672, 92628, 5794, NULL, '1.0000', '1.0200', '1.0200', '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 (98164, '2022-07-06', 8924, 92629, 5794, NULL, '1.0000', '4.5000', '4.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 (98165, '2022-07-06', 9399, 92630, 5794, NULL, '1.0000', '0.9800', '0.9800', '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 (98166, '2022-07-06', 7473, 92631, 5794, NULL, '7.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (98167, '2022-07-06', 1340, 92632, 5794, 13005, '-14.0000', '2.7025', '2.7025', '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 (98168, '2022-07-06', 1340, 92632, 5794, NULL, '15.0000', '2.7025', '2.7025', '5.0000', '5.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 (98169, '2022-07-06', 2315, 92633, 5794, 2735, '-531.0000', '0.3300', '0.3300', '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 (98170, '2022-07-06', 2315, 92633, 5794, NULL, '532.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-532.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98171, '2022-07-06', 7886, 92634, 5794, 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 (98172, '2022-07-06', 9089, 92635, 5794, NULL, '1.0000', '3.8000', '3.8000', '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 (98173, '2022-07-06', 7658, 92636, 5794, NULL, '1.0000', '2.0200', '2.0200', '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 (98174, '2022-07-06', 9953, 92637, 5794, NULL, '1.0000', '8.9000', '8.9000', '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 (98175, '2022-07-06', 7324, 92638, 5794, NULL, '1.0000', '4.0000', '4.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 (98176, '2022-07-06', 8462, 92639, 5794, NULL, '1.0000', '7.0400', '7.0400', '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 (98177, '2022-07-06', 8539, 92640, 5794, NULL, '2.0000', '31.8000', '31.8000', '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 (98178, '2022-07-06', 8596, 92641, 5794, 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 (98179, '2022-07-06', 7825, 92642, 5794, NULL, '1.0000', '6.5000', '6.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 (98180, '2022-07-06', 7711, 92643, 5794, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98181, '2022-07-06', 7412, 92644, 5794, NULL, '1.0000', '1.5200', '1.5200', '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 (98182, '2022-07-06', 7715, 92645, 5794, NULL, '1.0000', '1.8900', '1.8900', '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 (98183, '2022-07-06', 8519, 92646, 5794, NULL, '16.0000', '4.6700', '4.6700', '3.7000', '3.7000', '-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 (98184, '2022-07-06', 7917, 92647, 5794, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (98185, '2022-07-06', 8328, 92648, 5794, NULL, '2.0000', '10.0000', '10.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 (98186, '2022-07-06', 9715, 92649, 5794, NULL, '1.0000', '9.4000', '9.4000', '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 (98187, '2022-07-06', 8065, 92650, 5794, NULL, '1.0000', '32.0000', '32.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 (98188, '2022-07-06', 7411, 92651, 5794, NULL, '2.0000', '1.3500', '1.3500', '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 (98189, '2022-07-06', 7453, 92652, 5794, NULL, '1.0000', '28.5000', '28.5000', '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 (98190, '2022-07-06', 7318, 92653, 5794, NULL, '1.0000', '13.4400', '13.4400', '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 (98191, '2022-07-06', 9219, 92654, 5794, NULL, '1.0000', '6.3000', '6.3000', '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 (98192, '2022-07-06', 8660, 92655, 5794, 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 (98193, '2022-07-06', 7592, 92656, 5795, NULL, '1.0000', '8.6500', '8.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 (98194, '2022-07-06', 1863, 92657, 5795, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98195, '2022-07-06', 1521, 92658, 5795, NULL, '2.0000', '-217.8500', '-217.8500', '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 (98196, '2022-07-06', 9909, 92659, 5795, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98197, '2022-07-06', 1760, 92660, 5795, 58185, '2.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98198, '2022-07-06', 2315, 92661, 5795, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '103.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98199, '2022-07-06', 1779, 92662, 5795, 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 (98200, '2022-07-06', 2169, 92663, 5796, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98201, '2022-07-06', 1863, 92664, 5796, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98202, '2022-07-06', 2253, 92665, 5797, 57678, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98203, '2022-07-06', 7954, 92666, 5798, 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 (98204, '2022-07-06', 8539, 92667, 5798, NULL, '1.0000', '31.8000', '31.8000', '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 (98205, '2022-07-06', 2295, 92668, 5798, 2954, '-40.0000', '0.9600', '0.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 (98206, '2022-07-06', 2295, 92668, 5798, NULL, '43.0000', '0.9600', '0.9600', '2.5000', '2.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 (98207, '2022-07-06', 7917, 92669, 5798, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98208, '2022-07-06', 7518, 92670, 5798, NULL, '1.0000', '7.8200', '7.8200', '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 (98209, '2022-07-06', 7402, 92671, 5798, NULL, '1.0000', '18.9000', '18.9000', '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 (98210, '2022-07-06', 1765, 92672, 5798, 3175, '-20.0000', '90.0000', '90.0000', '9.5000', '9.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 (98211, '2022-07-06', 1765, 92672, 5798, NULL, '21.0000', '90.0000', '90.0000', '9.5000', '9.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98212, '2022-07-06', 9894, 92673, 5798, 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 (98213, '2022-07-06', 8481, 92674, 5798, NULL, '1.0000', '40.0000', '40.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 (98214, '2022-07-06', 1743, 92675, 5799, NULL, '1.0000', '3.5650', '3.5650', '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 (98215, '2022-07-06', 7608, 92676, 5799, NULL, '1.0000', '6.9800', '6.9800', '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 (98216, '2022-07-06', 2948, 92677, 5799, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98217, '2022-07-06', 2293, 92678, 5800, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98218, '2022-07-06', 1580, 92679, 5800, 54604, '1.0000', '1.2644', '1.2644', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98219, '2022-07-06', 8677, 92680, 5800, 49108, '1.0000', '2.2418', '2.2418', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98220, '2022-07-06', 7857, 92681, 5800, NULL, '1.0000', '15.1300', '15.1300', '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 (98221, '2022-07-06', 7318, 92682, 5800, 54669, '1.0000', '10.5558', '10.5558', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98222, '2022-07-06', 1521, 92683, 5800, 56249, '1.0000', '2.8071', '2.8071', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98223, '2022-07-06', 9747, 92684, 5800, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98224, '2022-07-06', 7745, 92685, 5800, 57997, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98225, '2022-07-06', 9963, 92686, 5800, 58029, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98226, '2022-07-06', 7642, 92687, 5800, 54649, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98227, '2022-07-06', 8498, 92688, 5800, 54645, '1.0000', '1.3375', '1.3375', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98228, '2022-07-06', 8498, 92688, 5800, NULL, '1.0000', '1.3375', '1.3375', '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 (98229, '2022-07-06', 7411, 92689, 5800, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98230, '2022-07-06', 1660, 92690, 5800, 56969, '1.0000', '75.8375', '75.8375', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98231, '2022-07-06', 1875, 92691, 5800, 55870, '5.0000', '73.8421', '73.8421', '3.7000', '3.7000', '84.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98232, '2022-07-06', 2277, 92692, 5800, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '123.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98233, '2022-07-06', 7558, 92693, 5800, 44706, '10.0000', '2.4013', '2.4013', '3.7000', '3.7000', '11.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98234, '2022-07-06', 2038, 92694, 5800, 58034, '1.0000', '13.0627', '13.0627', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98235, '2022-07-06', 2858, 92695, 5800, NULL, '2.0000', '1.0000', '1.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 (98236, '2022-07-06', 7459, 92696, 5800, NULL, '1.0000', '4.5753', '4.5753', '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 (98237, '2022-07-06', 1665, 92697, 5800, 57952, '3.0000', '1.1816', '1.1816', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98238, '2022-07-06', 8969, 92698, 5801, 39814, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '60.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98239, '2022-07-06', 2169, 92699, 5802, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98240, '2022-07-06', 9471, 92700, 5803, 54355, '1.0000', '15.3200', '15.3200', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98241, '2022-07-06', 7317, 92701, 5804, NULL, '2.0000', '19.5500', '19.5500', '22.5000', '22.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 (98242, '2022-07-06', 1501, 92702, 5804, NULL, '1.0000', '2.0500', '2.0500', '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 (98243, '2022-07-06', 7674, 92703, 5804, NULL, '1.0000', '1.3000', '1.3000', '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 (98244, '2022-07-06', 9762, 92704, 5804, 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 (98245, '2022-07-06', 1665, 92705, 5805, 57952, '1.0000', '1.1816', '1.1816', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98246, '2022-07-06', 9565, 92706, 5806, NULL, '1.0000', '4.5000', '4.5000', '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 (98247, '2022-07-06', 8746, 92707, 5806, 58370, '3.0000', '3.6475', '3.6475', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98248, '2022-07-06', 2352, 92708, 5806, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (98249, '2022-07-06', 9831, 92709, 5806, 58376, '2.0000', '1.9224', '1.9224', '3.5000', '3.5000', '60.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98250, '2022-07-06', 7736, 92710, 5807, NULL, '1.0000', '13.2000', '13.2000', '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 (98251, '2022-07-06', 2858, 92711, 5807, 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 (98252, '2022-07-06', 2069, 92712, 5808, 56934, '1.0000', '4.2514', '4.2514', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98253, '2022-07-07', 2100, 92713, 5809, NULL, '1.0000', '1.6804', '1.6804', '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 (98254, '2022-07-07', 1867, 92714, 5809, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98255, '2022-07-07', 1787, 92715, 5809, NULL, '1.0000', '0.5000', '0.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 (98256, '2022-07-07', 1837, 92716, 5809, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98257, '2022-07-07', 2237, 92717, 5809, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98258, '2022-07-07', 1532, 92718, 5809, 56447, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98259, '2022-07-07', 2036, 92719, 5809, 57089, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98260, '2022-07-07', 8309, 92720, 5809, 34577, '1.0000', '14.5000', '14.5000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98261, '2022-07-07', 2352, 92721, 5809, NULL, '15.0000', '126.2588', '126.2588', '3.5000', '3.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 (98262, '2022-07-07', 2315, 92722, 5809, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '101.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98263, '2022-07-07', 9732, 92723, 5809, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98264, '2022-07-07', 1688, 92724, 5809, 58151, '1.0000', '22.9150', '22.9150', '31.5000', '31.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98265, '2022-07-07', 1307, 92725, 5809, NULL, '1.0000', '-59.9897', '-59.9897', '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 (98266, '2022-07-07', 9503, 92726, 5809, 33350, '1.0000', '24.1775', '24.1775', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98267, '2022-07-07', 1339, 92727, 5809, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98268, '2022-07-07', 2299, 92728, 5809, 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 (98269, '2022-07-07', 7612, 92729, 5809, 57807, '2.0000', '0.4900', '0.4900', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98270, '2022-07-07', 1504, 92730, 5809, 58181, '10.0000', '2.0486', '2.0486', '2.8000', '2.8000', '70.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98271, '2022-07-07', 9695, 92731, 5809, 58540, '1.0000', '5.5156', '5.5156', '8.0000', '8.0000', '35.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98272, '2022-07-07', 9831, 92732, 5809, 58537, '2.0000', '1.8485', '1.8485', '3.5000', '3.5000', '58.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98273, '2022-07-07', 1841, 92733, 5810, NULL, '3.0000', '0.7630', '0.7630', '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 (98274, '2022-07-07', 8933, 92734, 5810, NULL, '1.0000', '8.8300', '8.8300', '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 (98275, '2022-07-07', 8773, 92735, 5810, 58518, '1.0000', '3.8300', '3.8300', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98276, '2022-07-07', 9089, 92736, 5810, 58517, '1.0000', '5.9996', '5.9996', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98277, '2022-07-07', 1425, 92737, 5810, 58197, '1.0000', '86.3183', '86.3183', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98278, '2022-07-07', 7867, 92738, 5811, 57203, '2.0000', '2.3130', '2.3130', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98279, '2022-07-07', 7473, 92739, 5811, 58462, '2.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '29.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98280, '2022-07-07', 8063, 92740, 5811, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '82.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98281, '2022-07-07', 8638, 92741, 5811, 50385, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98282, '2022-07-07', 7708, 92742, 5811, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98283, '2022-07-07', 7473, 92743, 5811, 58462, '7.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '24.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98284, '2022-07-07', 9785, 92744, 5811, 54499, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98285, '2022-07-07', 7806, 92745, 5811, NULL, '3.0000', '226.1990', '226.1990', '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 (98286, '2022-07-07', 7490, 92746, 5811, 57570, '20.0000', '1.5415', '1.5415', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98287, '2022-07-07', 8814, 92747, 5811, 57568, '10.0000', '-4.3750', '-4.3750', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98288, '2022-07-07', 7557, 92748, 5811, NULL, '10.0000', '0.5000', '0.5000', '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 (98289, '2022-07-07', 7547, 92749, 5811, NULL, '1.0000', '-0.3235', '-0.3235', '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 (98290, '2022-07-07', 7694, 92750, 5811, NULL, '1.0000', '4.7900', '4.7900', '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 (98291, '2022-07-07', 7385, 92751, 5811, 58497, '4.0000', '6.6482', '6.6482', '4.0000', '4.0000', '96.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98292, '2022-07-07', 8744, 92752, 5811, 57511, '1.0000', '3.7472', '3.7472', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98293, '2022-07-07', 7509, 92753, 5811, 58441, '1.0000', '9.6089', '9.6089', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98294, '2022-07-07', 7591, 92754, 5811, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98295, '2022-07-07', 7430, 92755, 5811, NULL, '1.0000', '15.0000', '15.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 (98296, '2022-07-07', 7658, 92756, 5811, 56019, '6.0000', '188.9318', '188.9318', '3.5000', '3.5000', '77.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98297, '2022-07-07', 9529, 92757, 5811, 57464, '1.0000', '10.2520', '10.2520', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98298, '2022-07-07', 1935, 92758, 5812, 5586, '-171.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 (98299, '2022-07-07', 1935, 92758, 5812, NULL, '172.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-172.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98300, '2022-07-07', 9092, 92759, 5812, NULL, '2.0000', '5.2900', '5.2900', '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 (98301, '2022-07-07', 2070, 92760, 5812, NULL, '1.0000', '2.0000', '2.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 (98302, '2022-07-07', 3035, 92761, 5812, NULL, '1.0000', '9.5000', '9.5000', '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 (98303, '2022-07-07', 2248, 92762, 5812, 2785, '-18.0000', '2.5000', '2.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 (98304, '2022-07-07', 2248, 92762, 5812, NULL, '19.0000', '2.5000', '2.5000', '6.0000', '6.0000', '-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 (98305, '2022-07-07', 7762, 92763, 5812, NULL, '1.0000', '1.5000', '1.5000', '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 (98306, '2022-07-07', 7776, 92764, 5812, 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 (98307, '2022-07-07', 9187, 92765, 5812, NULL, '1.0000', '18.9000', '18.9000', '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 (98308, '2022-07-07', 8425, 92766, 5812, 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 (98309, '2022-07-07', 8164, 92767, 5812, NULL, '1.0000', '16.3900', '16.3900', '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 (98310, '2022-07-07', 7385, 92768, 5812, NULL, '2.0000', '2.0000', '2.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 (98311, '2022-07-07', 8714, 92769, 5812, NULL, '1.0000', '5.2100', '5.2100', '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 (98312, '2022-07-07', 7358, 92770, 5812, NULL, '2.0000', '18.8000', '18.8000', '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 (98313, '2022-07-07', 9271, 92771, 5812, NULL, '1.0000', '0.9900', '0.9900', '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 (98314, '2022-07-07', 9463, 92772, 5812, NULL, '1.0000', '7.5000', '7.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 (98315, '2022-07-07', 7954, 92773, 5812, NULL, '2.0000', '3.0000', '3.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 (98316, '2022-07-07', 9878, 92774, 5812, NULL, '1.0000', '8.0000', '8.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 (98317, '2022-07-07', 7715, 92775, 5812, NULL, '1.0000', '1.8900', '1.8900', '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 (98318, '2022-07-07', 7745, 92776, 5812, NULL, '1.0000', '6.7000', '6.7000', '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 (98319, '2022-07-07', 7713, 92777, 5812, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (98320, '2022-07-07', 8690, 92778, 5812, NULL, '1.0000', '10.8000', '10.8000', '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 (98321, '2022-07-07', 7715, 92779, 5812, NULL, '1.0000', '1.8900', '1.8900', '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 (98322, '2022-07-07', 2284, 92780, 5812, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.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 (98323, '2022-07-07', 8889, 92781, 5812, NULL, '1.0000', '39.0000', '39.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 (98324, '2022-07-07', 9274, 92782, 5812, NULL, '1.0000', '3.6000', '3.6000', '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 (98325, '2022-07-07', 7713, 92783, 5812, NULL, '4.0000', '0.3800', '0.3800', '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 (98326, '2022-07-07', 1935, 92784, 5812, 5586, '-171.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 (98327, '2022-07-07', 1935, 92784, 5812, NULL, '172.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-172.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98328, '2022-07-07', 7518, 92785, 5812, NULL, '4.0000', '7.8200', '7.8200', '12.5000', '12.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 (98329, '2022-07-07', 7609, 92786, 5812, NULL, '1.0000', '4.3300', '4.3300', '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 (98330, '2022-07-07', 8638, 92787, 5812, NULL, '1.0000', '0.5100', '0.5100', '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 (98331, '2022-07-07', 8208, 92788, 5812, NULL, '2.0000', '33.0000', '33.0000', '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 (98332, '2022-07-07', 7674, 92789, 5812, NULL, '1.0000', '1.3000', '1.3000', '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 (98333, '2022-07-07', 8101, 92790, 5812, NULL, '2.0000', '1.9700', '1.9700', '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 (98334, '2022-07-07', 7317, 92791, 5812, NULL, '1.0000', '19.5500', '19.5500', '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 (98335, '2022-07-07', 7666, 92792, 5812, NULL, '1.0000', '3.6000', '3.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 (98336, '2022-07-07', 8040, 92793, 5812, NULL, '1.0000', '14.9000', '14.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 (98337, '2022-07-07', 1647, 92794, 5812, 3218, '-20.0000', '4.7200', '4.7200', '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 (98338, '2022-07-07', 1647, 92794, 5812, NULL, '21.0000', '4.7200', '4.7200', '8.0000', '8.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98339, '2022-07-07', 9740, 92795, 5812, NULL, '1.0000', '0.6600', '0.6600', '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 (98340, '2022-07-07', 2079, 92796, 5813, 55542, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98341, '2022-07-07', 1872, 92797, 5813, 54552, '1.0000', '10.5986', '10.5986', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98342, '2022-07-07', 2105, 92798, 5813, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98343, '2022-07-07', 8773, 92799, 5813, 58518, '2.0000', '3.8300', '3.8300', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98344, '2022-07-07', 8746, 92800, 5813, 58531, '1.0000', '3.6041', '3.6041', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98345, '2022-07-07', 8607, 92801, 5813, 58070, '1.0000', '1.0085', '1.0085', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98346, '2022-07-07', 8773, 92802, 5813, 58518, '1.0000', '3.8300', '3.8300', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98347, '2022-07-07', 1702, 92803, 5813, NULL, '1.0000', '6.3467', '6.3467', '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 (98348, '2022-07-07', 2315, 92804, 5813, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '100.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98349, '2022-07-07', 1912, 92805, 5813, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98350, '2022-07-07', 2244, 92806, 5813, NULL, '1.0000', '6.8500', '6.8500', '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 (98351, '2022-07-07', 8205, 92807, 5813, NULL, '1.0000', '2.9500', '2.9500', '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 (98352, '2022-07-07', 1804, 92808, 5813, NULL, '1.0000', '4.3180', '4.3180', '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 (98353, '2022-07-07', 1571, 92809, 5813, NULL, '1.0000', '308.7500', '308.7500', '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 (98354, '2022-07-07', 7328, 92810, 5813, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (98355, '2022-07-07', 1840, 92811, 5813, NULL, '1.0000', '0.2400', '0.2400', '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 (98356, '2022-07-07', 2289, 92812, 5813, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98357, '2022-07-07', 8878, 92813, 5813, NULL, '1.0000', '3.8136', '3.8136', '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 (98358, '2022-07-07', 9831, 92814, 5813, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '57.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98359, '2022-07-07', 1904, 92815, 5813, NULL, '1.0000', '-21.7625', '-21.7625', '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 (98360, '2022-07-07', 1767, 92816, 5813, 55576, '1.0000', '5.3188', '5.3188', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98361, '2022-07-07', 7411, 92817, 5813, NULL, '2.0000', '1.2819', '1.2819', '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 (98362, '2022-07-07', 1665, 92818, 5813, 55698, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98363, '2022-07-07', 2015, 92819, 5813, 57144, '1.0000', '3.9255', '3.9255', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98364, '2022-07-07', 9726, 92820, 5813, 57740, '1.0000', '5.1598', '5.1598', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98365, '2022-07-07', 7944, 92821, 5813, 58223, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98366, '2022-07-07', 1487, 92822, 5813, NULL, '1.0000', '-330.9124', '-330.9124', '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 (98367, '2022-07-07', 7385, 92823, 5813, 58142, '3.0000', '3.1710', '3.1710', '4.0000', '4.0000', '193.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98368, '2022-07-07', 9695, 92824, 5813, 58540, '1.0000', '5.5156', '5.5156', '8.0000', '8.0000', '34.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98369, '2022-07-07', 2315, 92825, 5813, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98370, '2022-07-07', 1307, 92826, 5813, NULL, '1.0000', '-59.9897', '-59.9897', '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 (98371, '2022-07-07', 2821, 92827, 5813, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98372, '2022-07-07', 2169, 92828, 5813, 58135, '3.0000', '1.6818', '1.6818', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98373, '2022-07-07', 2135, 92829, 5813, NULL, '1.0000', '-0.2588', '-0.2588', '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 (98374, '2022-07-07', 1888, 92830, 5813, 56371, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98375, '2022-07-07', 8039, 92831, 5813, NULL, '1.0000', '12.9000', '12.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 (98376, '2022-07-07', 1307, 92832, 5813, NULL, '1.0000', '-59.9897', '-59.9897', '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 (98377, '2022-07-07', 7881, 92833, 5813, NULL, '1.0000', '32.7700', '32.7700', '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 (98378, '2022-07-07', 8208, 92834, 5813, NULL, '2.0000', '47.9541', '47.9541', '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 (98379, '2022-07-07', 9831, 92835, 5813, 58537, '2.0000', '1.8485', '1.8485', '3.5000', '3.5000', '56.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98380, '2022-07-07', 7917, 92836, 5813, NULL, '1.0000', '5.0000', '5.0000', '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 (98381, '2022-07-07', 9891, 92837, 5813, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98382, '2022-07-07', 9788, 92838, 5813, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98383, '2022-07-07', 2293, 92839, 5813, NULL, '8.0000', '-17.4320', '-17.4320', '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 (98384, '2022-07-07', 2506, 92840, 5813, NULL, '1.0000', '-8.6523', '-8.6523', '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 (98385, '2022-07-07', 9828, 92841, 5813, NULL, '1.0000', '2.9100', '2.9100', '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 (98386, '2022-07-07', 8878, 92842, 5813, NULL, '2.0000', '3.8136', '3.8136', '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 (98387, '2022-07-07', 7514, 92843, 5813, NULL, '1.0000', '2.2500', '2.2500', '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 (98388, '2022-07-07', 2068, 92844, 5813, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98389, '2022-07-07', 7743, 92845, 5813, NULL, '3.0000', '7.3900', '7.3900', '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 (98390, '2022-07-07', 7411, 92846, 5813, NULL, '1.0000', '1.2819', '1.2819', '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 (98391, '2022-07-07', 8017, 92847, 5813, 58212, '5.0000', '0.6000', '0.6000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98392, '2022-07-07', 7411, 92848, 5813, NULL, '1.0000', '1.2819', '1.2819', '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 (98393, '2022-07-07', 9831, 92849, 5813, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '57.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98394, '2022-07-07', 8740, 92850, 5813, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98395, '2022-07-07', 2224, 92851, 5813, 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 (98396, '2022-07-07', 1855, 92852, 5813, NULL, '1.0000', '1.4615', '1.4615', '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 (98397, '2022-07-07', 7411, 92853, 5813, NULL, '1.0000', '1.2819', '1.2819', '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 (98398, '2022-07-07', 1590, 92854, 5813, 54532, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98399, '2022-07-07', 1440, 92855, 5813, 55149, '1.0000', '11.6667', '11.6667', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98400, '2022-07-07', 2592, 92856, 5813, 55933, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98401, '2022-07-07', 2221, 92857, 5813, NULL, '1.0000', '2.3805', '2.3805', '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 (98402, '2022-07-07', 1715, 92858, 5813, 58213, '1.0000', '10.1667', '10.1667', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98403, '2022-07-07', 8116, 92859, 5813, NULL, '1.0000', '57.5000', '57.5000', '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 (98404, '2022-07-07', 8039, 92860, 5813, NULL, '1.0000', '12.9000', '12.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 (98405, '2022-07-07', 1855, 92861, 5813, NULL, '2.0000', '1.4615', '1.4615', '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 (98406, '2022-07-07', 8878, 92862, 5813, NULL, '3.0000', '3.8136', '3.8136', '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 (98407, '2022-07-07', 9089, 92863, 5814, NULL, '1.0000', '3.8000', '3.8000', '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 (98408, '2022-07-07', 1867, 92864, 5814, NULL, '1.0000', '1.0500', '1.0500', '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 (98409, '2022-07-07', 2270, 92865, 5814, 2930, '-16.0000', '0.9880', '0.9880', '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 (98410, '2022-07-07', 2270, 92865, 5814, NULL, '17.0000', '0.9880', '0.9880', '7.0000', '7.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 (98411, '2022-07-07', 8077, 92866, 5814, NULL, '1.0000', '3.6000', '3.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 (98412, '2022-07-07', 7872, 92867, 5814, 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 (98413, '2022-07-07', 7496, 92868, 5814, NULL, '1.0000', '0.9600', '0.9600', '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 (98414, '2022-07-07', 9286, 92869, 5815, 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 (98415, '2022-07-07', 7341, 92870, 5815, NULL, '1.0000', '24.0100', '24.0100', '44.5000', '44.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98416, '2022-07-07', 9554, 92871, 5815, 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 (98417, '2022-07-07', 7674, 92872, 5816, NULL, '1.0000', '1.3000', '1.3000', '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 (98418, '2022-07-07', 7385, 92873, 5817, NULL, '5.0000', '2.0000', '2.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 (98419, '2022-07-07', 9876, 92874, 5817, NULL, '1.0000', '11.8000', '11.8000', '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 (98420, '2022-07-07', 7411, 92875, 5817, NULL, '2.0000', '1.3500', '1.3500', '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 (98421, '2022-07-07', 1765, 92876, 5817, 3175, '-21.0000', '90.0000', '90.0000', '9.5000', '9.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 (98422, '2022-07-07', 1765, 92876, 5817, NULL, '22.0000', '90.0000', '90.0000', '9.5000', '9.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98423, '2022-07-07', 1837, 92877, 5818, 56224, '1.0000', '0.5767', '0.5767', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98424, '2022-07-07', 9747, 92878, 5818, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98425, '2022-07-07', 9776, 92879, 5818, 56223, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98426, '2022-07-07', 1840, 92880, 5818, 54425, '5.0000', '0.2400', '0.2400', '0.5000', '0.5000', '7.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98427, '2022-07-07', 9726, 92881, 5818, 46082, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98428, '2022-07-07', 1572, 92882, 5818, 49525, '1.0000', '1.9151', '1.9151', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98429, '2022-07-07', 1863, 92883, 5818, 56917, '2.0000', '1.3484', '1.3484', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98430, '2022-07-07', 2612, 92884, 5818, 54603, '1.0000', '7.9238', '7.9238', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98431, '2022-07-07', 1767, 92885, 5818, 8430, '1.0000', '4.6000', '4.6000', '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 (98432, '2022-07-07', 2169, 92886, 5818, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98433, '2022-07-07', 2342, 92887, 5818, 55488, '1.0000', '2.0954', '2.0954', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98434, '2022-07-07', 2248, 92888, 5818, 55871, '1.0000', '3.0210', '3.0210', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98435, '2022-07-07', 2302, 92889, 5818, 55484, '1.0000', '5.1961', '5.1961', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98436, '2022-07-07', 1671, 92890, 5818, 53275, '1.0000', '50.1205', '50.1205', '64.0000', '64.0000', '0.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98437, '2022-07-07', 2823, 92891, 5818, 53274, '2.0000', '5.7100', '5.7100', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98438, '2022-07-07', 1942, 92892, 5818, 56256, '1.0000', '20.1250', '20.1250', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98439, '2022-07-07', 2315, 92893, 5818, 3069, '5.0000', '0.3300', '0.3300', '1.0000', '1.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 (98440, '2022-07-07', 1308, 92894, 5818, 46782, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98441, '2022-07-07', 1602, 92895, 5818, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98442, '2022-07-07', 1409, 92896, 5818, 56951, '1.0000', '13.0594', '13.0594', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98443, '2022-07-07', 9747, 92897, 5818, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98444, '2022-07-07', 2169, 92898, 5818, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98445, '2022-07-07', 1493, 92899, 5818, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98446, '2022-07-07', 1340, 92900, 5818, 57979, '1.0000', '3.2900', '3.2900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98447, '2022-07-07', 2411, 92901, 5818, 54665, '1.0000', '1.4852', '1.4852', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98448, '2022-07-07', 2379, 92902, 5818, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98449, '2022-07-07', 1499, 92903, 5818, 54670, '2.0000', '0.4174', '0.4174', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98450, '2022-07-07', 1499, 92903, 5818, 45093, '1.0000', '0.4174', '0.4174', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98451, '2022-07-07', 1688, 92904, 5818, 56732, '1.0000', '19.9824', '19.9824', '31.5000', '31.5000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98452, '2022-07-07', 1863, 92905, 5818, 56917, '10.0000', '1.3484', '1.3484', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98453, '2022-07-07', 9761, 92906, 5818, 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 (98454, '2022-07-07', 9762, 92907, 5818, 57987, '1.0000', '2.4700', '2.4700', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98455, '2022-07-07', 9712, 92908, 5818, 44510, '1.0000', '20.0000', '20.0000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98456, '2022-07-07', 2038, 92909, 5818, 58547, '1.0000', '12.6660', '12.6660', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98457, '2022-07-07', 2169, 92910, 5818, 57981, '2.0000', '1.3557', '1.3557', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98458, '2022-07-07', 9762, 92911, 5818, 57987, '1.0000', '2.4700', '2.4700', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98459, '2022-07-07', 1667, 92912, 5818, 57996, '2.0000', '19.5846', '19.5846', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98460, '2022-07-07', 8247, 92913, 5818, NULL, '5.0000', '10.0000', '10.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 (98461, '2022-07-07', 2444, 92914, 5818, 56840, '1.0000', '8.4868', '8.4868', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98462, '2022-07-08', 1837, 92915, 5819, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98463, '2022-07-08', 1498, 92916, 5819, 57680, '3.0000', '0.4912', '0.4912', '0.7000', '0.7000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98464, '2022-07-08', 2374, 92917, 5819, 55555, '2.0000', '7.1000', '7.1000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98465, '2022-07-08', 1863, 92918, 5819, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98466, '2022-07-08', 9831, 92919, 5819, 58537, '3.0000', '1.8485', '1.8485', '3.5000', '3.5000', '51.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98467, '2022-07-08', 9832, 92920, 5819, 58538, '1.0000', '1.8275', '1.8275', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98468, '2022-07-08', 1935, 92921, 5819, 58141, '3.0000', '0.6516', '0.6516', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98469, '2022-07-08', 1340, 92922, 5819, 58179, '2.0000', '3.6001', '3.6001', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98470, '2022-07-08', 9736, 92923, 5819, 58161, '1.0000', '5.1722', '5.1722', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98471, '2022-07-08', 1855, 92924, 5819, NULL, '1.0000', '1.4615', '1.4615', '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 (98472, '2022-07-08', 2565, 92925, 5819, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98473, '2022-07-08', 2169, 92926, 5819, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98474, '2022-07-08', 1839, 92927, 5819, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (98475, '2022-07-08', 9866, 92928, 5819, 57677, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98476, '2022-07-08', 1863, 92929, 5819, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98477, '2022-07-08', 9729, 92930, 5819, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98478, '2022-07-08', 1935, 92931, 5819, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98479, '2022-07-08', 2161, 92932, 5819, 58051, '1.0000', '6.5220', '6.5220', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98480, '2022-07-08', 9831, 92933, 5819, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '53.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98481, '2022-07-08', 2655, 92934, 5819, NULL, '1.0000', '0.8473', '0.8473', '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 (98482, '2022-07-08', 2964, 92935, 5819, NULL, '1.0000', '83.9500', '83.9500', '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 (98483, '2022-07-08', 2346, 92936, 5819, NULL, '1.0000', '3.4800', '3.4800', '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 (98484, '2022-07-08', 8835, 92937, 5819, 57150, '1.0000', '7.0000', '7.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98485, '2022-07-08', 2556, 92938, 5819, 53458, '1.0000', '0.7769', '0.7769', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98486, '2022-07-08', 1606, 92939, 5819, 57684, '5.0000', '5.4993', '5.4993', '7.2000', '7.2000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98487, '2022-07-08', 2337, 92940, 5819, NULL, '1.0000', '33.0000', '33.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98488, '2022-07-08', 7883, 92941, 5819, 39836, '1.0000', '34.0000', '34.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98489, '2022-07-08', 1425, 92942, 5820, 56257, '1.0000', '6.9142', '6.9142', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98490, '2022-07-08', 1863, 92943, 5820, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98491, '2022-07-08', 1488, 92944, 5820, 42962, '1.0000', '11.8182', '11.8182', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98492, '2022-07-08', 2643, 92945, 5820, 58009, '1.0000', '0.9691', '0.9691', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98493, '2022-07-08', 1935, 92946, 5820, 57988, '2.0000', '1.3001', '1.3001', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98494, '2022-07-08', 2277, 92947, 5820, 56888, '2.0000', '0.4266', '0.4266', '1.5000', '1.5000', '121.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98495, '2022-07-08', 2916, 92948, 5820, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98496, '2022-07-08', 2455, 92949, 5820, 47956, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98497, '2022-07-08', 1867, 92950, 5820, NULL, '1.0000', '9.0894', '9.0894', '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 (98498, '2022-07-08', 2105, 92951, 5820, 56726, '3.0000', '2.0391', '2.0391', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98499, '2022-07-08', 2543, 92952, 5820, 9539, '1.0000', '2.0000', '2.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 (98500, '2022-07-08', 2237, 92953, 5820, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98501, '2022-07-08', 1844, 92954, 5821, 4976, '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 (98502, '2022-07-08', 1935, 92955, 5821, 57988, '1.0000', '1.3001', '1.3001', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98503, '2022-07-08', 2416, 92956, 5822, 57493, '1.0000', '1.3371', '1.3371', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98504, '2022-07-08', 8068, 92957, 5823, 58479, '1.0000', '7.6900', '7.6900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98505, '2022-07-08', 7514, 92958, 5823, 57588, '2.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98506, '2022-07-08', 1935, 92959, 5823, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '111.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98507, '2022-07-08', 9177, 92960, 5823, NULL, '10.0000', '-11.3652', '-11.3652', '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 (98508, '2022-07-08', 8170, 92961, 5823, 56018, '1.0000', '5.7913', '5.7913', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98509, '2022-07-08', 8155, 92962, 5823, NULL, '1.0000', '65.0000', '65.0000', '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 (98510, '2022-07-08', 7514, 92963, 5823, 57588, '2.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98511, '2022-07-08', 8135, 92964, 5823, 57396, '1.0000', '5.9090', '5.9090', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98512, '2022-07-08', 8136, 92965, 5823, 51832, '1.0000', '-4.7978', '-4.7978', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98513, '2022-07-08', 1856, 92966, 5823, 57447, '1.0000', '0.0091', '0.0091', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98514, '2022-07-08', 7821, 92967, 5823, 54472, '1.0000', '10.8121', '10.8121', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98515, '2022-07-08', 8169, 92968, 5823, NULL, '1.0000', '7.9800', '7.9800', '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 (98516, '2022-07-08', 2699, 92969, 5823, NULL, '1.0000', '3.0000', '3.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 (98517, '2022-07-08', 7822, 92970, 5823, 58471, '1.0000', '13.2500', '13.2500', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98518, '2022-07-08', 7917, 92971, 5823, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '85.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98519, '2022-07-08', 1916, 92972, 5823, 57386, '1.0000', '10.5269', '10.5269', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98520, '2022-07-08', 3001, 92973, 5823, NULL, '3.0000', '1.5000', '1.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 (98521, '2022-07-08', 7524, 92974, 5823, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98522, '2022-07-08', 8154, 92975, 5823, NULL, '4.0000', '12.3000', '12.3000', '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 (98523, '2022-07-08', 7781, 92976, 5823, NULL, '3.0000', '6.8496', '6.8496', '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 (98524, '2022-07-08', 1332, 92977, 5823, 52470, '1.0000', '-73.0510', '-73.0510', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98525, '2022-07-08', 8186, 92978, 5823, NULL, '3.0000', '1.5626', '1.5626', '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 (98526, '2022-07-08', 7674, 92979, 5823, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98527, '2022-07-08', 7753, 92980, 5823, 58502, '1.0000', '3.5820', '3.5820', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98528, '2022-07-08', 7821, 92981, 5823, 54472, '1.0000', '10.8121', '10.8121', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98529, '2022-07-08', 9711, 92982, 5823, NULL, '1.0000', '5.2800', '5.2800', '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 (98530, '2022-07-08', 7750, 92983, 5823, 56538, '1.0000', '43.7502', '43.7502', '61.0000', '61.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98531, '2022-07-08', 7848, 92984, 5823, NULL, '1.0000', '-223.3573', '-223.3573', '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 (98532, '2022-07-08', 8328, 92985, 5823, NULL, '1.0000', '-35.1022', '-35.1022', '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 (98533, '2022-07-08', 2102, 92986, 5823, 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 (98534, '2022-07-08', 8597, 92987, 5823, 56681, '1.0000', '59.0000', '59.0000', '78.0000', '78.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98535, '2022-07-08', 7366, 92988, 5823, 57397, '1.0000', '7.2902', '7.2902', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98536, '2022-07-08', 8079, 92989, 5823, 56706, '1.0000', '9.1732', '9.1732', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98537, '2022-07-08', 7560, 92990, 5823, 58444, '1.0000', '41.8352', '41.8352', '56.0000', '56.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98538, '2022-07-08', 8497, 92991, 5823, NULL, '1.0000', '58.7666', '58.7666', '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 (98539, '2022-07-08', 9424, 92992, 5823, 57392, '1.0000', '-37.5013', '-37.5013', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98540, '2022-07-08', 9329, 92993, 5823, 57443, '1.0000', '-2789.5699', '-2789.5699', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98541, '2022-07-08', 7715, 92994, 5823, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98542, '2022-07-08', 7628, 92995, 5823, 54135, '4.0000', '0.0299', '0.0299', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98543, '2022-07-08', 8254, 92996, 5824, NULL, '1.0000', '25.9000', '25.9000', '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 (98544, '2022-07-08', 7867, 92997, 5824, NULL, '3.0000', '1.6300', '1.6300', '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 (98545, '2022-07-08', 8918, 92998, 5824, NULL, '1.0000', '1.0400', '1.0400', '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 (98546, '2022-07-08', 7672, 92999, 5824, NULL, '1.0000', '1.0200', '1.0200', '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 (98547, '2022-07-08', 9695, 93000, 5824, NULL, '1.0000', '4.5000', '4.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 (98548, '2022-07-08', 9803, 93001, 5824, NULL, '1.0000', '4.5500', '4.5500', '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 (98549, '2022-07-08', 7708, 93002, 5824, 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 (98550, '2022-07-08', 8638, 93003, 5824, NULL, '1.0000', '0.5100', '0.5100', '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 (98551, '2022-07-08', 8154, 93004, 5824, NULL, '2.0000', '12.3000', '12.3000', '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 (98552, '2022-07-08', 1855, 93005, 5824, 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 (98553, '2022-07-08', 7715, 93006, 5824, NULL, '1.0000', '1.8900', '1.8900', '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 (98554, '2022-07-08', 1665, 93007, 5824, 3235, '-138.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 (98555, '2022-07-08', 1665, 93007, 5824, NULL, '140.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98556, '2022-07-08', 1837, 93008, 5824, NULL, '5.0000', '0.9642', '0.9642', '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 (98557, '2022-07-08', 7664, 93009, 5824, NULL, '1.0000', '6.9400', '6.9400', '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 (98558, '2022-07-08', 9788, 93010, 5824, NULL, '4.0000', '1.3000', '1.3000', '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 (98559, '2022-07-08', 1501, 93011, 5824, NULL, '1.0000', '2.0500', '2.0500', '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 (98560, '2022-07-08', 9088, 93012, 5824, NULL, '1.0000', '15.4000', '15.4000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98561, '2022-07-08', 2295, 93013, 5824, 2954, '-43.0000', '0.9600', '0.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 (98562, '2022-07-08', 2295, 93013, 5824, NULL, '46.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98563, '2022-07-08', 7674, 93014, 5824, NULL, '1.0000', '1.3000', '1.3000', '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 (98564, '2022-07-08', 7444, 93015, 5824, 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 (98565, '2022-07-08', 8714, 93016, 5824, NULL, '1.0000', '5.2100', '5.2100', '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 (98566, '2022-07-08', 9852, 93017, 5824, 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 (98567, '2022-07-08', 8208, 93018, 5824, NULL, '1.0000', '33.0000', '33.0000', '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 (98568, '2022-07-08', 8746, 93019, 5824, NULL, '1.0000', '3.1500', '3.1500', '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 (98569, '2022-07-08', 1553, 93020, 5824, 22251, '18.0000', '2690641.7070', '2690641.7070', '10.0000', '10.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 (98570, '2022-07-08', 8445, 93021, 5824, NULL, '1.0000', '35.0000', '35.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 (98571, '2022-07-08', 7514, 93022, 5825, NULL, '1.0000', '2.2500', '2.2500', '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 (98572, '2022-07-08', 7954, 93023, 5825, 57084, '4.0000', '2.4470', '2.4470', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98573, '2022-07-08', 2260, 93024, 5825, 56404, '3.0000', '4.7545', '4.7545', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98574, '2022-07-08', 9388, 93025, 5825, 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 (98575, '2022-07-08', 2506, 93026, 5825, NULL, '1.0000', '-8.6523', '-8.6523', '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 (98576, '2022-07-08', 2110, 93027, 5825, 49614, '1.0000', '35.0000', '35.0000', '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 (98577, '2022-07-08', 7713, 93028, 5825, 57060, '3.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98578, '2022-07-08', 2945, 93029, 5825, 57785, '1.0000', '9.3750', '9.3750', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98579, '2022-07-08', 9775, 93030, 5825, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98580, '2022-07-08', 2095, 93031, 5825, NULL, '1.0000', '-8.5000', '-8.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 (98581, '2022-07-08', 9831, 93032, 5825, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98582, '2022-07-08', 7324, 93033, 5825, NULL, '2.0000', '5.4813', '5.4813', '8.5000', '8.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 (98583, '2022-07-08', 2315, 93034, 5825, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98584, '2022-07-08', 1840, 93035, 5825, NULL, '5.0000', '0.2400', '0.2400', '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 (98585, '2022-07-08', 1841, 93036, 5825, NULL, '5.0000', '0.7630', '0.7630', '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 (98586, '2022-07-08', 2289, 93037, 5825, 56470, '1.0000', '0.3611', '0.3611', '0.5000', '0.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98587, '2022-07-08', 1621, 93038, 5825, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98588, '2022-07-08', 2379, 93039, 5825, NULL, '1.0000', '-14.1447', '-14.1447', '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 (98589, '2022-07-08', 7411, 93040, 5825, NULL, '2.0000', '1.2819', '1.2819', '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 (98590, '2022-07-08', 9634, 93041, 5825, 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 (98591, '2022-07-08', 2297, 93042, 5825, 55594, '1.0000', '10.3086', '10.3086', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98592, '2022-07-08', 8039, 93043, 5825, NULL, '1.0000', '12.9000', '12.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 (98593, '2022-07-08', 1454, 93044, 5825, 58125, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98594, '2022-07-08', 9736, 93045, 5825, 58161, '1.0000', '5.1722', '5.1722', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98595, '2022-07-08', 2617, 93046, 5825, NULL, '1.0000', '5.1800', '5.1800', '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 (98596, '2022-07-08', 8798, 93047, 5825, 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 (98597, '2022-07-08', 7514, 93048, 5825, NULL, '1.0000', '2.2500', '2.2500', '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 (98598, '2022-07-08', 9775, 93049, 5825, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98599, '2022-07-08', 1825, 93050, 5825, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98600, '2022-07-08', 1856, 93051, 5825, NULL, '1.0000', '155.0099', '155.0099', '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 (98601, '2022-07-08', 2315, 93052, 5825, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98602, '2022-07-08', 7398, 93053, 5825, NULL, '1.0000', '143.5000', '143.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 (98603, '2022-07-08', 2250, 93054, 5825, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98604, '2022-07-08', 8595, 93055, 5825, NULL, '1.0000', '-3.2120', '-3.2120', '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 (98605, '2022-07-08', 1751, 93056, 5825, 56435, '1.0000', '5.6063', '5.6063', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98606, '2022-07-08', 7483, 93057, 5825, 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 (98607, '2022-07-08', 9737, 93058, 5825, 58160, '1.0000', '9.4750', '9.4750', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98608, '2022-07-08', 8097, 93059, 5825, NULL, '1.0000', '7.6800', '7.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 (98609, '2022-07-08', 2503, 93060, 5825, 57104, '1.0000', '17.7545', '17.7545', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98610, '2022-07-08', 2959, 93061, 5825, NULL, '2.0000', '4.0000', '4.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 (98611, '2022-07-08', 7556, 93062, 5825, 55601, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98612, '2022-07-08', 2100, 93063, 5825, NULL, '1.0000', '1.6804', '1.6804', '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 (98613, '2022-07-08', 1839, 93064, 5825, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (98614, '2022-07-08', 1501, 93065, 5825, NULL, '1.0000', '0.6299', '0.6299', '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 (98615, '2022-07-08', 1855, 93066, 5825, NULL, '1.0000', '1.4615', '1.4615', '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 (98616, '2022-07-08', 1871, 93067, 5825, NULL, '6.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (98617, '2022-07-08', 9920, 93068, 5825, 58210, '1.0000', '3.3000', '3.3000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98618, '2022-07-08', 2251, 93069, 5825, 57670, '1.0000', '14.9073', '14.9073', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98619, '2022-07-08', 2315, 93070, 5825, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98620, '2022-07-08', 1665, 93071, 5825, 55698, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98621, '2022-07-08', 9831, 93072, 5825, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98622, '2022-07-08', 8476, 93073, 5825, NULL, '2.0000', '23.0000', '23.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 (98623, '2022-07-08', 7429, 93074, 5825, NULL, '1.0000', '18.0000', '18.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 (98624, '2022-07-08', 2440, 93075, 5825, 58057, '1.0000', '6.6730', '6.6730', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98625, '2022-07-08', 7385, 93076, 5825, 58142, '10.0000', '3.1710', '3.1710', '4.0000', '4.0000', '183.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98626, '2022-07-08', 2037, 93077, 5825, 22540, '1.0000', '10.7500', '10.7500', '21.0000', '21.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 (98627, '2022-07-08', 2821, 93078, 5825, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98628, '2022-07-08', 9821, 93079, 5825, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98629, '2022-07-08', 2384, 93080, 5825, NULL, '1.0000', '-0.4538', '-0.4538', '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 (98630, '2022-07-08', 7398, 93081, 5825, NULL, '1.0000', '143.5000', '143.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 (98631, '2022-07-08', 7411, 93082, 5825, NULL, '1.0000', '1.2819', '1.2819', '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 (98632, '2022-07-08', 8699, 93083, 5825, NULL, '2.0000', '6.3800', '6.3800', '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 (98633, '2022-07-08', 1836, 93084, 5825, 53217, '1.0000', '14.5700', '14.5700', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98634, '2022-07-08', 2256, 93085, 5825, 58149, '1.0000', '18.0320', '18.0320', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98635, '2022-07-08', 7446, 93086, 5825, NULL, '1.0000', '1.3100', '1.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 (98636, '2022-07-08', 1514, 93087, 5825, 23184, '1.0000', '11.9600', '11.9600', '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 (98637, '2022-07-08', 9732, 93088, 5825, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98638, '2022-07-08', 1935, 93089, 5825, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98639, '2022-07-08', 2066, 93090, 5825, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98640, '2022-07-08', 7709, 93091, 5826, NULL, '2.0000', '3.5000', '3.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 (98641, '2022-07-08', 7324, 93092, 5826, NULL, '1.0000', '4.0000', '4.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 (98642, '2022-07-08', 7518, 93093, 5826, NULL, '1.0000', '7.8200', '7.8200', '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 (98643, '2022-07-08', 7524, 93094, 5826, NULL, '1.0000', '11.9500', '11.9500', '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 (98644, '2022-07-08', 2821, 93095, 5827, 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 (98645, '2022-07-08', 1485, 93096, 5828, 11894, '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 (98646, '2022-07-08', 1432, 93097, 5828, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98647, '2022-07-08', 1506, 93098, 5828, 57948, '1.0000', '25.5190', '25.5190', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98648, '2022-07-08', 1651, 93099, 5828, 57968, '1.0000', '7.7134', '7.7134', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98649, '2022-07-08', 1772, 93100, 5828, 56230, '1.0000', '6.0178', '6.0178', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98650, '2022-07-08', 2169, 93101, 5828, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98651, '2022-07-08', 1432, 93102, 5828, 56228, '1.0000', '10.5994', '10.5994', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98652, '2022-07-08', 2511, 93103, 5828, 56925, '1.0000', '9.7081', '9.7081', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98653, '2022-07-08', 1561, 93104, 5828, 56743, '1.0000', '29.9250', '29.9250', '46.0000', '46.0000', '5.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98654, '2022-07-08', 1543, 93105, 5828, 54601, '1.0000', '28.1483', '28.1483', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98655, '2022-07-08', 2379, 93106, 5828, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98656, '2022-07-08', 1470, 93107, 5828, 57964, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98657, '2022-07-08', 9649, 93108, 5828, 56905, '1.0000', '16.7238', '16.7238', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98658, '2022-07-08', 7658, 93109, 5828, 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 (98659, '2022-07-08', 2317, 93110, 5828, 58096, '2.0000', '15.4737', '15.4737', '20.0000', '20.0000', '14.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98660, '2022-07-08', 7411, 93111, 5828, 55760, '3.0000', '1.3793', '1.3793', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98661, '2022-07-08', 1528, 93112, 5828, 57943, '2.0000', '37.9774', '37.9774', '8.5000', '8.5000', '18.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98662, '2022-07-08', 9940, 93113, 5828, 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 (98663, '2022-07-08', 2916, 93114, 5828, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98664, '2022-07-08', 8744, 93115, 5828, 58003, '1.0000', '3.6619', '3.6619', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98665, '2022-07-08', 7562, 93116, 5828, NULL, '1.0000', '7.6300', '7.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 (98666, '2022-07-08', 7744, 93117, 5828, NULL, '1.0000', '2.9400', '2.9400', '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 (98667, '2022-07-08', 2416, 93118, 5828, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98668, '2022-07-08', 2384, 93119, 5828, 56740, '8.0000', '0.3965', '0.3965', '0.7000', '0.7000', '56.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98669, '2022-07-08', 9794, 93120, 5828, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98670, '2022-07-08', 1689, 93121, 5828, 57953, '1.0000', '14.0071', '14.0071', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98671, '2022-07-08', 9732, 93122, 5828, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98672, '2022-07-08', 1651, 93123, 5828, 57968, '1.0000', '7.7134', '7.7134', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98673, '2022-07-08', 1772, 93124, 5828, 56230, '1.0000', '6.0178', '6.0178', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98674, '2022-07-08', 1493, 93125, 5828, 54609, '1.0000', '1.6388', '1.6388', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98675, '2022-07-08', 2068, 93126, 5828, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98676, '2022-07-08', 9747, 93127, 5828, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98677, '2022-07-09', 1519, 93128, 5829, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98678, '2022-07-09', 1602, 93129, 5829, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98679, '2022-07-09', 9832, 93130, 5829, 58538, '1.0000', '1.8275', '1.8275', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98680, '2022-07-09', 9831, 93131, 5829, 58537, '2.0000', '1.8485', '1.8485', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98681, '2022-07-09', 7944, 93132, 5829, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98682, '2022-07-09', 1825, 93133, 5829, 55533, '2.0000', '7.4000', '7.4000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98683, '2022-07-09', 9902, 93134, 5829, 57714, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98684, '2022-07-09', 2416, 93135, 5829, 57493, '1.0000', '1.3371', '1.3371', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98685, '2022-07-09', 2352, 93136, 5829, NULL, '5.0000', '126.2588', '126.2588', '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 (98686, '2022-07-09', 8017, 93137, 5829, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98687, '2022-07-09', 9573, 93138, 5829, 51685, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98688, '2022-07-09', 9794, 93139, 5829, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '83.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98689, '2022-07-09', 8735, 93140, 5829, NULL, '1.0000', '7.1000', '7.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 (98690, '2022-07-09', 9821, 93141, 5829, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98691, '2022-07-09', 9783, 93142, 5829, 58166, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98692, '2022-07-09', 2169, 93143, 5829, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98693, '2022-07-09', 7886, 93144, 5829, NULL, '1.0000', '14.5000', '14.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 (98694, '2022-07-09', 8020, 93145, 5829, NULL, '1.0000', '51.6000', '51.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 (98695, '2022-07-09', 2100, 93146, 5829, NULL, '1.0000', '1.6804', '1.6804', '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 (98696, '2022-07-09', 1715, 93147, 5829, 58213, '1.0000', '10.1667', '10.1667', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98697, '2022-07-09', 8878, 93148, 5829, NULL, '2.0000', '3.8136', '3.8136', '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 (98698, '2022-07-09', 7375, 93149, 5829, NULL, '10.0000', '5.1000', '5.1000', '7.0000', '7.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 (98699, '2022-07-09', 2068, 93150, 5829, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98700, '2022-07-09', 1910, 93151, 5830, 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 (98701, '2022-07-09', 2315, 93152, 5830, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98702, '2022-07-09', 7877, 93153, 5830, NULL, '1.0000', '5.1600', '5.1600', '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 (98703, '2022-07-09', 2352, 93154, 5830, NULL, '1.0000', '126.2588', '126.2588', '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 (98704, '2022-07-09', 2245, 93155, 5830, 51375, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98705, '2022-07-09', 9634, 93156, 5830, 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 (98706, '2022-07-09', 9831, 93157, 5830, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98707, '2022-07-09', 2327, 93158, 5830, 58157, '10.0000', '3.8350', '3.8350', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98708, '2022-07-09', 1863, 93159, 5830, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98709, '2022-07-09', 1620, 93160, 5831, 58145, '4.0000', '2.3133', '2.3133', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98710, '2022-07-09', 9732, 93161, 5832, 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 (98711, '2022-07-09', 2693, 93162, 5832, 12285, '-8.0000', '25.3656', '25.3656', '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 (98712, '2022-07-09', 2693, 93162, 5832, NULL, '9.0000', '25.3656', '25.3656', '32.5000', '32.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 (98713, '2022-07-09', 2413, 93163, 5832, 4505, '-12.0000', '1.0500', '1.0500', '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 (98714, '2022-07-09', 2413, 93163, 5832, NULL, '15.0000', '1.0500', '1.0500', '2.0000', '2.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 (98715, '2022-07-09', 9007, 93164, 5832, NULL, '2.0000', '22.2000', '22.2000', '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 (98716, '2022-07-09', 9891, 93165, 5832, NULL, '1.0000', '17.4000', '17.4000', '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 (98717, '2022-07-09', 7609, 93166, 5832, NULL, '1.0000', '4.3300', '4.3300', '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 (98718, '2022-07-09', 2085, 93167, 5832, 8628, '-26.0000', '-1.0741', '-1.0741', '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 (98719, '2022-07-09', 2085, 93167, 5832, NULL, '28.0000', '-1.0741', '-1.0741', '2.5000', '2.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 (98720, '2022-07-09', 1425, 93168, 5832, NULL, '1.0000', '6.4405', '6.4405', '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 (98721, '2022-07-09', 9715, 93169, 5832, NULL, '1.0000', '9.4000', '9.4000', '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 (98722, '2022-07-09', 2088, 93170, 5832, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '42.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 (98723, '2022-07-09', 2332, 93171, 5832, 3835, '-20.0000', '5.8900', '5.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 (98724, '2022-07-09', 2332, 93171, 5832, NULL, '21.0000', '5.8900', '5.8900', '10.5000', '10.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98725, '2022-07-09', 2237, 93172, 5832, 2781, '-77.0000', '1.0600', '1.0600', '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 (98726, '2022-07-09', 2237, 93172, 5832, NULL, '78.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98727, '2022-07-09', 1840, 93173, 5832, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (98728, '2022-07-09', 2758, 93174, 5832, 22011, '-6.0000', '-20.1917', '-20.1917', '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 (98729, '2022-07-09', 2758, 93174, 5832, NULL, '7.0000', '-20.1917', '-20.1917', '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 (98730, '2022-07-09', 1828, 93175, 5832, NULL, '1.0000', '0.7300', '0.7300', '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 (98731, '2022-07-09', 7741, 93176, 5832, NULL, '1.0000', '1.2000', '1.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 (98732, '2022-07-09', 2293, 93177, 5832, 22262, '3.0000', '1.4400', '1.4400', '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 (98733, '2022-07-09', 2020, 93178, 5832, 10164, '-27.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 (98734, '2022-07-09', 2020, 93178, 5832, NULL, '28.0000', '7.5000', '7.5000', '11.0000', '11.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 (98735, '2022-07-09', 2643, 93179, 5832, NULL, '1.0000', '0.8700', '0.8700', '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 (98736, '2022-07-09', 1864, 93180, 5832, 7389, '-6.0000', '6.0500', '6.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 (98737, '2022-07-09', 1864, 93180, 5832, NULL, '7.0000', '6.0500', '6.0500', '11.0000', '11.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 (98738, '2022-07-09', 2135, 93181, 5832, 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 (98739, '2022-07-09', 2486, 93182, 5832, 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 (98740, '2022-07-09', 1754, 93183, 5832, 2171, '-1.0000', '13.4800', '13.4800', '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 (98741, '2022-07-09', 1754, 93183, 5832, NULL, '2.0000', '13.4800', '13.4800', '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 (98742, '2022-07-09', 7703, 93184, 5833, NULL, '1.0000', '-4961.0093', '-4961.0093', '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 (98743, '2022-07-09', 8020, 93185, 5833, 55995, '1.0000', '11.2392', '11.2392', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98744, '2022-07-09', 7980, 93186, 5833, NULL, '10.0000', '-31.7682', '-31.7682', '0.8000', '0.8000', '-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 (98745, '2022-07-09', 9942, 93187, 5833, 57188, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98746, '2022-07-09', 7641, 93188, 5833, 58496, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98747, '2022-07-09', 7385, 93189, 5833, 58497, '5.0000', '6.6482', '6.6482', '4.0000', '4.0000', '91.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98748, '2022-07-09', 2315, 93190, 5833, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98749, '2022-07-09', 7411, 93191, 5833, 58390, '3.0000', '1.4000', '1.4000', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98750, '2022-07-09', 8203, 93192, 5833, 57407, '2.0000', '2.0908', '2.0908', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98751, '2022-07-09', 9423, 93193, 5833, NULL, '1.0000', '1.6000', '1.6000', '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 (98752, '2022-07-09', 9724, 93194, 5833, 57621, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98753, '2022-07-09', 9729, 93195, 5833, 56613, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98754, '2022-07-09', 7354, 93196, 5833, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98755, '2022-07-09', 7411, 93197, 5833, 58390, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98756, '2022-07-09', 1914, 93198, 5833, 57389, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98757, '2022-07-09', 9463, 93199, 5833, 56606, '1.0000', '3.7096', '3.7096', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98758, '2022-07-09', 7806, 93200, 5833, NULL, '5.0000', '226.1990', '226.1990', '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 (98759, '2022-07-09', 7608, 93201, 5833, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98760, '2022-07-09', 7707, 93202, 5833, 58392, '1.0000', '-22.2098', '-22.2098', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98761, '2022-07-09', 7514, 93203, 5833, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98762, '2022-07-09', 8613, 93204, 5833, NULL, '2.0000', '4.0000', '4.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 (98763, '2022-07-09', 8883, 93205, 5833, NULL, '4.0000', '56.5500', '56.5500', '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 (98764, '2022-07-09', 7672, 93206, 5833, 58391, '1.0000', '0.3513', '0.3513', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98765, '2022-07-09', 9745, 93207, 5833, 46908, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98766, '2022-07-09', 9329, 93208, 5833, 57443, '1.0000', '-2789.5699', '-2789.5699', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98767, '2022-07-09', 9245, 93209, 5833, 57646, '1.0000', '6.7670', '6.7670', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98768, '2022-07-09', 7933, 93210, 5833, 57614, '1.0000', '1.0292', '1.0292', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98769, '2022-07-09', 7674, 93211, 5833, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98770, '2022-07-09', 9320, 93212, 5833, 57431, '1.0000', '11.3150', '11.3150', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98771, '2022-07-09', 7704, 93213, 5833, NULL, '2.0000', '-1.5625', '-1.5625', '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 (98772, '2022-07-09', 7491, 93214, 5833, 58438, '1.0000', '-83.8024', '-83.8024', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98773, '2022-07-09', 7980, 93215, 5833, NULL, '4.0000', '-31.7682', '-31.7682', '0.8000', '0.8000', '-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 (98774, '2022-07-09', 7518, 93216, 5833, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98775, '2022-07-09', 7473, 93217, 5833, 58462, '1.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '21.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98776, '2022-07-09', 8097, 93218, 5833, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98777, '2022-07-09', 7621, 93219, 5833, 57433, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98778, '2022-07-09', 7630, 93220, 5833, 53942, '3.0000', '5.6211', '5.6211', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98779, '2022-07-09', 8319, 93221, 5833, NULL, '1.0000', '5.7500', '5.7500', '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 (98780, '2022-07-09', 8597, 93222, 5833, NULL, '1.0000', '59.0000', '59.0000', '78.0000', '78.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98781, '2022-07-09', 7955, 93223, 5833, 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 (98782, '2022-07-09', 8021, 93224, 5833, 55996, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98783, '2022-07-09', 1935, 93225, 5833, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '109.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98784, '2022-07-09', 7652, 93226, 5833, NULL, '5.0000', '-7032.8807', '-7032.8807', '1.6000', '1.6000', '-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 (98785, '2022-07-09', 7848, 93227, 5833, NULL, '1.0000', '-223.3573', '-223.3573', '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 (98786, '2022-07-09', 7411, 93228, 5833, 58390, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98787, '2022-07-09', 7784, 93229, 5833, NULL, '4.0000', '1.9939', '1.9939', '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 (98788, '2022-07-09', 8395, 93230, 5833, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98789, '2022-07-09', 7358, 93231, 5833, 58414, '1.0000', '14.4886', '14.4886', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98790, '2022-07-09', 7459, 93232, 5833, NULL, '20.0000', '3.0559', '3.0559', '4.0000', '4.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 (98791, '2022-07-09', 7473, 93233, 5833, 58462, '1.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '21.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98792, '2022-07-09', 8539, 93234, 5833, 54276, '1.0000', '1.9333', '1.9333', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98793, '2022-07-09', 7564, 93235, 5834, NULL, '1.0000', '0.6400', '0.6400', '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 (98794, '2022-07-09', 8017, 93236, 5834, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98795, '2022-07-09', 9737, 93237, 5834, NULL, '1.0000', '9.4750', '9.4750', '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 (98796, '2022-07-09', 1856, 93238, 5834, NULL, '1.0000', '155.0099', '155.0099', '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 (98797, '2022-07-09', 2416, 93239, 5834, 57493, '1.0000', '1.3371', '1.3371', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98798, '2022-07-09', 2260, 93240, 5834, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98799, '2022-07-09', 2411, 93241, 5834, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98800, '2022-07-09', 1840, 93242, 5834, NULL, '4.0000', '0.2400', '0.2400', '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 (98801, '2022-07-09', 2289, 93243, 5834, 56470, '4.0000', '0.3611', '0.3611', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98802, '2022-07-09', 8677, 93244, 5834, NULL, '4.0000', '630.6244', '630.6244', '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 (98803, '2022-07-09', 7819, 93245, 5834, NULL, '1.0000', '10.0999', '10.0999', '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 (98804, '2022-07-09', 9832, 93246, 5834, 58538, '2.0000', '1.8275', '1.8275', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98805, '2022-07-09', 9783, 93247, 5834, 58166, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98806, '2022-07-09', 9831, 93248, 5834, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98807, '2022-07-09', 8710, 93249, 5834, NULL, '1.0000', '10.9000', '10.9000', '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 (98808, '2022-07-09', 1751, 93250, 5834, 56435, '1.0000', '5.6063', '5.6063', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98809, '2022-07-09', 9960, 93251, 5834, 58163, '2.0000', '3.3000', '3.3000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98810, '2022-07-09', 1935, 93252, 5834, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98811, '2022-07-09', 2221, 93253, 5834, NULL, '1.0000', '2.3805', '2.3805', '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 (98812, '2022-07-09', 1529, 93254, 5834, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98813, '2022-07-09', 7339, 93255, 5834, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (98814, '2022-07-09', 2260, 93256, 5834, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98815, '2022-07-09', 2315, 93257, 5834, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98816, '2022-07-09', 7358, 93258, 5834, NULL, '1.0000', '18.8000', '18.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 (98817, '2022-07-09', 7583, 93259, 5834, NULL, '1.0000', '4.0000', '4.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 (98818, '2022-07-09', 3044, 93260, 5834, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '16.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 (98819, '2022-07-09', 2100, 93261, 5834, NULL, '1.0000', '1.6804', '1.6804', '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 (98820, '2022-07-09', 8165, 93262, 5834, 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 (98821, '2022-07-09', 2592, 93263, 5834, 55933, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98822, '2022-07-09', 8308, 93264, 5834, NULL, '1.0000', '11.0000', '11.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 (98823, '2022-07-09', 7411, 93265, 5834, NULL, '1.0000', '1.2819', '1.2819', '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 (98824, '2022-07-09', 2315, 93266, 5834, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98825, '2022-07-09', 2440, 93267, 5834, 58057, '1.0000', '6.6730', '6.6730', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98826, '2022-07-09', 2315, 93268, 5834, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98827, '2022-07-09', 1519, 93269, 5834, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98828, '2022-07-09', 2363, 93270, 5834, NULL, '1.0000', '4.9400', '4.9400', '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 (98829, '2022-07-09', 9741, 93271, 5834, NULL, '1.0000', '7.8500', '7.8500', '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 (98830, '2022-07-09', 9089, 93272, 5834, NULL, '1.0000', '5.9996', '5.9996', '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 (98831, '2022-07-09', 9831, 93273, 5834, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98832, '2022-07-09', 1622, 93274, 5834, NULL, '1.0000', '90.0000', '90.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 (98833, '2022-07-09', 2169, 93275, 5834, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98834, '2022-07-09', 2440, 93276, 5834, 58057, '1.0000', '6.6730', '6.6730', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98835, '2022-07-09', 2342, 93277, 5834, 58159, '1.0000', '2.3666', '2.3666', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98836, '2022-07-09', 2169, 93278, 5834, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98837, '2022-07-09', 2293, 93279, 5834, NULL, '2.0000', '-17.4320', '-17.4320', '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 (98838, '2022-07-09', 1888, 93280, 5834, 56371, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98839, '2022-07-09', 2102, 93281, 5834, 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 (98840, '2022-07-09', 9482, 93282, 5834, 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 (98841, '2022-07-09', 2384, 93283, 5834, NULL, '2.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98842, '2022-07-09', 2293, 93284, 5834, NULL, '3.0000', '-17.4320', '-17.4320', '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 (98843, '2022-07-09', 1342, 93285, 5834, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98844, '2022-07-09', 7398, 93286, 5834, NULL, '1.0000', '143.5000', '143.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 (98845, '2022-07-09', 9831, 93287, 5834, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98846, '2022-07-09', 2864, 93288, 5834, NULL, '2.0000', '1.5150', '1.5150', '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 (98847, '2022-07-09', 7743, 93289, 5834, NULL, '1.0000', '7.3900', '7.3900', '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 (98848, '2022-07-09', 9832, 93290, 5834, 58538, '1.0000', '1.8275', '1.8275', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98849, '2022-07-09', 7917, 93291, 5835, 52750, '4.0000', '2.1447', '2.1447', '0.7000', '0.7000', '81.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98850, '2022-07-09', 7354, 93292, 5835, 56647, '4.0000', '1.5641', '1.5641', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98851, '2022-07-09', 7652, 93293, 5835, NULL, '10.0000', '-7032.8807', '-7032.8807', '1.6000', '1.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 (98852, '2022-07-09', 9274, 93294, 5835, 58409, '1.0000', '5.5017', '5.5017', '7.5000', '7.5000', '13.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98853, '2022-07-09', 1501, 93295, 5835, 56659, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98854, '2022-07-09', 7674, 93296, 5835, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98855, '2022-07-09', 7753, 93297, 5835, 58502, '1.0000', '3.5820', '3.5820', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98856, '2022-07-09', 1760, 93298, 5835, 57610, '1.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98857, '2022-07-09', 7482, 93299, 5835, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98858, '2022-07-09', 7317, 93300, 5835, 58407, '1.0000', '15.4618', '15.4618', '22.5000', '22.5000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98859, '2022-07-09', 7704, 93301, 5835, NULL, '1.0000', '-1.5625', '-1.5625', '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 (98860, '2022-07-09', 1339, 93302, 5835, NULL, '1.0000', '2.6205', '2.6205', '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 (98861, '2022-07-09', 8878, 93303, 5835, 58413, '1.0000', '0.2806', '0.2806', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98862, '2022-07-09', 9332, 93304, 5835, NULL, '1.0000', '8.6667', '8.6667', '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 (98863, '2022-07-09', 1837, 93305, 5835, 56551, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98864, '2022-07-09', 8254, 93306, 5835, 58469, '1.0000', '28.1491', '28.1491', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98865, '2022-07-09', 9399, 93307, 5835, NULL, '1.0000', '0.9754', '0.9754', '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 (98866, '2022-07-09', 7333, 93308, 5836, NULL, '1.0000', '-5.7451', '-5.7451', '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 (98867, '2022-07-09', 7666, 93309, 5836, 58503, '1.0000', '7.4751', '7.4751', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98868, '2022-07-09', 9831, 93310, 5837, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '41.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98869, '2022-07-09', 2656, 93311, 5837, 58515, '1.0000', '0.8170', '0.8170', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98870, '2022-07-09', 9909, 93312, 5837, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98871, '2022-07-09', 7398, 93313, 5837, NULL, '1.0000', '143.5000', '143.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 (98872, '2022-07-09', 2260, 93314, 5837, 56404, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98873, '2022-07-09', 1694, 93315, 5837, 53648, '1.0000', '7.4679', '7.4679', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98874, '2022-07-09', 2762, 93316, 5837, NULL, '1.0000', '7.1000', '7.1000', '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 (98875, '2022-07-09', 2269, 93317, 5837, NULL, '1.0000', '4.2967', '4.2967', '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 (98876, '2022-07-09', 1410, 93318, 5838, NULL, '1.0000', '2.2000', '2.2000', '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 (98877, '2022-07-09', 1912, 93319, 5838, NULL, '2.0000', '0.3200', '0.3200', '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 (98878, '2022-07-09', 9747, 93320, 5838, NULL, '3.0000', '0.6500', '0.6500', '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 (98879, '2022-07-09', 2637, 93321, 5838, 10377, '-1.0000', '10.0000', '10.0000', '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 (98880, '2022-07-09', 2637, 93321, 5838, NULL, '2.0000', '10.0000', '10.0000', '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 (98881, '2022-07-09', 1651, 93322, 5838, 3222, '-67.0000', '6.7039', '6.7039', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98882, '2022-07-09', 1651, 93322, 5838, NULL, '68.0000', '6.7039', '6.7039', '14.0000', '14.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98883, '2022-07-09', 8821, 93323, 5838, NULL, '1.0000', '15.0000', '15.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 (98884, '2022-07-09', 2303, 93324, 5838, 2959, '-1.0000', '16.1000', '16.1000', '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 (98885, '2022-07-09', 2303, 93324, 5838, NULL, '3.0000', '16.1000', '16.1000', '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 (98886, '2022-07-09', 7741, 93325, 5838, NULL, '1.0000', '1.2000', '1.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 (98887, '2022-07-09', 8208, 93326, 5838, NULL, '4.0000', '33.0000', '33.0000', '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 (98888, '2022-07-09', 9641, 93327, 5838, NULL, '1.0000', '36.0800', '36.0800', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98889, '2022-07-09', 3029, 93328, 5838, NULL, '1.0000', '4.7700', '4.7700', '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 (98890, '2022-07-09', 1912, 93329, 5838, 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 (98891, '2022-07-09', 2277, 93330, 5838, 2937, '-69.0000', '0.7800', '0.7800', '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 (98892, '2022-07-09', 2277, 93330, 5838, NULL, '70.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98893, '2022-07-09', 1602, 93331, 5838, 5897, '-169.0000', '6.7859', '6.7859', '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 (98894, '2022-07-09', 1602, 93331, 5838, NULL, '171.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-171.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98895, '2022-07-09', 1637, 93332, 5838, 3210, '-10.0000', '10.2000', '10.2000', '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 (98896, '2022-07-09', 1637, 93332, 5838, NULL, '11.0000', '10.2000', '10.2000', '20.0000', '20.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 (98897, '2022-07-09', 2167, 93333, 5838, 17165, '-51.0000', '2.2000', '2.2000', '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 (98898, '2022-07-09', 2167, 93333, 5838, NULL, '53.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-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 (98899, '2022-07-09', 9748, 93334, 5838, NULL, '1.0000', '2.5300', '2.5300', '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 (98900, '2022-07-09', 2169, 93335, 5838, 10737, '-177.0000', '3.8397', '3.8397', '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 (98901, '2022-07-09', 2169, 93335, 5838, NULL, '179.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-179.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98902, '2022-07-09', 3034, 93336, 5838, NULL, '1.0000', '17.0000', '17.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 (98903, '2022-07-09', 2642, 93337, 5838, 10573, '-21.0000', '9.2000', '9.2000', '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 (98904, '2022-07-09', 2642, 93337, 5838, NULL, '22.0000', '9.2000', '9.2000', '15.0000', '15.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98905, '2022-07-09', 1342, 93338, 5838, 11264, '-24.0000', '6.8074', '6.8074', '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 (98906, '2022-07-09', 1342, 93338, 5838, NULL, '25.0000', '6.8074', '6.8074', '10.0000', '10.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 (98907, '2022-07-09', 9794, 93339, 5838, NULL, '2.0000', '1.0800', '1.0800', '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 (98908, '2022-07-09', 2315, 93340, 5838, 2735, '-532.0000', '0.3300', '0.3300', '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 (98909, '2022-07-09', 2315, 93340, 5838, NULL, '533.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-533.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98910, '2022-07-09', 1772, 93341, 5838, 4893, '-14.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 (98911, '2022-07-09', 1772, 93341, 5838, NULL, '15.0000', '6.0500', '6.0500', '8.0000', '8.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 (98912, '2022-07-09', 7411, 93342, 5838, NULL, '1.0000', '1.3500', '1.3500', '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 (98913, '2022-07-09', 1813, 93343, 5838, 12527, '-3.0000', '28.2400', '28.2400', '62.5000', '62.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 (98914, '2022-07-09', 1813, 93343, 5838, NULL, '4.0000', '28.2400', '28.2400', '62.5000', '62.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 (98915, '2022-07-09', 1813, 93344, 5838, 12527, '-3.0000', '28.2400', '28.2400', '62.5000', '62.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 (98916, '2022-07-09', 1813, 93344, 5838, NULL, '4.0000', '28.2400', '28.2400', '62.5000', '62.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 (98917, '2022-07-09', 1702, 93345, 5838, 4499, '-12.0000', '14.9700', '14.9700', '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 (98918, '2022-07-09', 1702, 93345, 5838, NULL, '13.0000', '14.9700', '14.9700', '25.0000', '25.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 (98919, '2022-07-09', 9740, 93346, 5838, NULL, '2.0000', '0.6600', '0.6600', '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 (98920, '2022-07-09', 2293, 93347, 5838, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.5000', '33.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 (98921, '2022-07-09', 2250, 93348, 5838, 2787, '-17.0000', '6.8900', '6.8900', '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 (98922, '2022-07-09', 2250, 93348, 5838, NULL, '18.0000', '6.8900', '6.8900', '12.5000', '12.5000', '-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 (98923, '2022-07-10', 1340, 93349, 5839, 58179, '1.0000', '3.6001', '3.6001', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98924, '2022-07-10', 1935, 93350, 5839, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98925, '2022-07-10', 1863, 93351, 5839, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98926, '2022-07-10', 1602, 93352, 5839, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98927, '2022-07-10', 1580, 93353, 5839, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98928, '2022-07-10', 2738, 93354, 5839, 56428, '2.0000', '9.2000', '9.2000', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98929, '2022-07-10', 1410, 93355, 5839, NULL, '1.0000', '48.8052', '48.8052', '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 (98930, '2022-07-10', 9840, 93356, 5839, 56380, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98931, '2022-07-10', 9840, 93356, 5839, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98932, '2022-07-10', 2699, 93357, 5839, NULL, '1.0000', '3.5000', '3.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 (98933, '2022-07-10', 7500, 93358, 5839, 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 (98934, '2022-07-10', 8746, 93359, 5839, 58531, '1.0000', '3.6041', '3.6041', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98935, '2022-07-10', 2151, 93360, 5839, 37966, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98936, '2022-07-10', 1863, 93361, 5839, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98937, '2022-07-10', 2237, 93362, 5839, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98938, '2022-07-10', 1499, 93363, 5839, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98939, '2022-07-10', 1999, 93364, 5839, 56865, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98940, '2022-07-10', 8773, 93365, 5839, 58518, '1.0000', '3.8300', '3.8300', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98941, '2022-07-10', 8133, 93366, 5839, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (98942, '2022-07-10', 2283, 93367, 5839, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98943, '2022-07-10', 7762, 93368, 5839, NULL, '1.0000', '7.6833', '7.6833', '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 (98944, '2022-07-10', 9732, 93369, 5839, 54926, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98945, '2022-07-10', 2237, 93370, 5839, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98946, '2022-07-10', 1863, 93371, 5839, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98947, '2022-07-10', 9831, 93372, 5839, 58537, '2.0000', '1.8485', '1.8485', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98948, '2022-07-10', 1499, 93373, 5839, 57679, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '27.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98949, '2022-07-10', 1912, 93374, 5839, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98950, '2022-07-10', 1532, 93375, 5839, 56447, '1.0000', '1.4708', '1.4708', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98951, '2022-07-10', 1532, 93375, 5839, 52201, '1.0000', '1.4708', '1.4708', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98952, '2022-07-10', 2169, 93376, 5839, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98953, '2022-07-10', 1855, 93377, 5839, NULL, '1.0000', '1.4615', '1.4615', '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 (98954, '2022-07-10', 2068, 93378, 5839, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98955, '2022-07-10', 9821, 93379, 5839, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98956, '2022-07-10', 2297, 93380, 5839, NULL, '1.0000', '10.3086', '10.3086', '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 (98957, '2022-07-10', 9832, 93381, 5839, 58538, '1.0000', '1.8275', '1.8275', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98958, '2022-07-10', 2169, 93382, 5840, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98959, '2022-07-10', 2916, 93383, 5840, NULL, '1.0000', '4209.2937', '4209.2937', '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 (98960, '2022-07-10', 9821, 93384, 5840, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98961, '2022-07-10', 9927, 93385, 5840, 58255, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98962, '2022-07-10', 9831, 93386, 5840, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98963, '2022-07-10', 7658, 93387, 5840, NULL, '10.0000', '10.1500', '10.1500', '3.5000', '3.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 (98964, '2022-07-10', 8254, 93388, 5840, NULL, '1.0000', '27.2800', '27.2800', '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 (98965, '2022-07-10', 1307, 93389, 5840, NULL, '1.0000', '-59.9897', '-59.9897', '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 (98966, '2022-07-10', 1841, 93390, 5840, NULL, '1.0000', '0.7630', '0.7630', '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 (98967, '2022-07-10', 9330, 93391, 5840, 53672, '1.0000', '8.6000', '8.6000', '13.8600', '13.8600', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98968, '2022-07-10', 8133, 93392, 5840, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (98969, '2022-07-10', 2237, 93393, 5840, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98970, '2022-07-10', 1837, 93394, 5840, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98971, '2022-07-10', 1307, 93395, 5841, NULL, '1.0000', '-59.9897', '-59.9897', '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 (98972, '2022-07-10', 2061, 93396, 5841, NULL, '1.0000', '4.3037', '4.3037', '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 (98973, '2022-07-10', 1935, 93397, 5841, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98974, '2022-07-10', 9794, 93398, 5841, 57665, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '81.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98975, '2022-07-10', 2460, 93399, 5842, 56390, '1.0000', '34.4280', '34.4280', '44.6200', '44.6200', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98976, '2022-07-10', 8966, 93400, 5843, NULL, '1.0000', '6.8500', '6.8500', '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 (98977, '2022-07-10', 9834, 93401, 5843, NULL, '1.0000', '1.4500', '1.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 (98978, '2022-07-10', 8517, 93402, 5843, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98979, '2022-07-10', 8548, 93403, 5843, NULL, '1.0000', '12.0000', '12.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 (98980, '2022-07-10', 8101, 93404, 5843, 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 (98981, '2022-07-10', 8701, 93405, 5843, NULL, '1.0000', '5.6300', '5.6300', '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 (98982, '2022-07-10', 7514, 93406, 5843, NULL, '1.0000', '2.2500', '2.2500', '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 (98983, '2022-07-10', 7753, 93407, 5843, NULL, '1.0000', '3.4000', '3.4000', '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 (98984, '2022-07-10', 7411, 93408, 5843, NULL, '3.0000', '1.3500', '1.3500', '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 (98985, '2022-07-10', 7666, 93409, 5843, NULL, '1.0000', '3.6000', '3.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 (98986, '2022-07-10', 9715, 93410, 5843, NULL, '1.0000', '9.4000', '9.4000', '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 (98987, '2022-07-10', 8063, 93411, 5843, NULL, '1.0000', '1.6000', '1.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 (98988, '2022-07-10', 9391, 93412, 5843, 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 (98989, '2022-07-10', 7442, 93413, 5843, 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 (98990, '2022-07-10', 8359, 93414, 5843, 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 (98991, '2022-07-10', 8074, 93415, 5843, NULL, '1.0000', '25.3504', '25.3504', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98992, '2022-07-10', 8746, 93416, 5843, NULL, '1.0000', '3.1500', '3.1500', '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 (98993, '2022-07-10', 1856, 93417, 5843, NULL, '1.0000', '4.2500', '4.2500', '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 (98994, '2022-07-10', 9272, 93418, 5843, NULL, '2.0000', '3.1000', '3.1000', '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 (98995, '2022-07-10', 7518, 93419, 5843, NULL, '1.0000', '7.8200', '7.8200', '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 (98996, '2022-07-10', 8053, 93420, 5843, NULL, '2.0000', '0.8000', '0.8000', '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 (98997, '2022-07-10', 9794, 93421, 5843, NULL, '1.0000', '1.0800', '1.0800', '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 (98998, '2022-07-10', 7588, 93422, 5843, NULL, '1.0000', '6.9000', '6.9000', '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 (98999, '2022-07-10', 8135, 93423, 5844, 57396, '1.0000', '5.9090', '5.9090', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99000, '2022-07-10', 8308, 93424, 5844, NULL, '1.0000', '76.0217', '76.0217', '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 (99001, '2022-07-10', 9729, 93425, 5844, 56613, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99002, '2022-07-10', 9794, 93426, 5844, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99003, '2022-07-10', 8000, 93427, 5844, 57616, '1.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99004, '2022-07-10', 7776, 93428, 5844, NULL, '1.0000', '18.3574', '18.3574', '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 (99005, '2022-07-10', 7353, 93429, 5844, 45856, '1.0000', '-1347.9792', '-1347.9792', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99006, '2022-07-10', 2035, 93430, 5844, NULL, '1.0000', '5.2000', '5.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 (99007, '2022-07-10', 7457, 93431, 5844, 57615, '1.0000', '4.4780', '4.4780', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99008, '2022-07-10', 1935, 93432, 5844, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '108.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99009, '2022-07-10', 2069, 93433, 5844, 57633, '1.0000', '7.4345', '7.4345', '9.5000', '9.5000', '19.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99010, '2022-07-10', 7564, 93434, 5844, 58477, '2.0000', '-222838.2780', '-222838.2780', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99011, '2022-07-10', 7453, 93435, 5844, 57636, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99012, '2022-07-10', 8485, 93436, 5844, NULL, '1.0000', '6.0600', '6.0600', '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 (99013, '2022-07-10', 8866, 93437, 5844, NULL, '2.0000', '0.4300', '0.4300', '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 (99014, '2022-07-10', 8753, 93438, 5844, 54116, '1.0000', '3.3875', '3.3875', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99015, '2022-07-10', 7473, 93439, 5844, 58462, '4.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '16.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99016, '2022-07-10', 7412, 93440, 5844, 58474, '1.0000', '2.1697', '2.1697', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99017, '2022-07-10', 7588, 93441, 5844, 58494, '4.0000', '8.7131', '8.7131', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99018, '2022-07-10', 9658, 93442, 5844, 42666, '1.0000', '32.0000', '32.0000', '42.0000', '42.0000', '0.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99019, '2022-07-10', 7725, 93443, 5844, NULL, '1.0000', '6.2371', '6.2371', '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 (99020, '2022-07-10', 9204, 93444, 5844, 56564, '1.0000', '5.9356', '5.9356', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99021, '2022-07-10', 9894, 93445, 5844, 56574, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99022, '2022-07-10', 7548, 93446, 5844, 58436, '1.0000', '5.9529', '5.9529', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99023, '2022-07-10', 7588, 93447, 5844, 58494, '1.0000', '8.7131', '8.7131', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99024, '2022-07-10', 9794, 93448, 5844, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99025, '2022-07-10', 3001, 93449, 5844, NULL, '2.0000', '1.5000', '1.5000', '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 (99026, '2022-07-10', 9729, 93450, 5844, 56613, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99027, '2022-07-10', 9272, 93451, 5844, NULL, '1.0000', '3.1000', '3.1000', '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 (99028, '2022-07-10', 1875, 93452, 5844, NULL, '10.0000', '90.0000', '90.0000', '3.7000', '3.7000', '-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 (99029, '2022-07-10', 8072, 93453, 5844, NULL, '3.0000', '-133.6999', '-133.6999', '8.7000', '8.7000', '-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 (99030, '2022-07-10', 9329, 93454, 5844, 57443, '1.0000', '-2789.5699', '-2789.5699', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99031, '2022-07-10', 9689, 93455, 5844, 43436, '1.0000', '40.1400', '40.1400', '53.0000', '53.0000', '2.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99032, '2022-07-10', 7641, 93456, 5844, 58496, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99033, '2022-07-10', 7954, 93457, 5844, NULL, '4.0000', '-15800.4581', '-15800.4581', '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 (99034, '2022-07-10', 7333, 93458, 5844, NULL, '3.0000', '-5.7451', '-5.7451', '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 (99035, '2022-07-10', 7743, 93459, 5844, NULL, '2.0000', '919779.6853', '919779.6853', '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 (99036, '2022-07-10', 7753, 93460, 5844, 58502, '1.0000', '3.5820', '3.5820', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99037, '2022-07-10', 1557, 93461, 5844, 57609, '1.0000', '8.0725', '8.0725', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99038, '2022-07-10', 2379, 93462, 5845, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99039, '2022-07-10', 7385, 93463, 5845, 57945, '10.0000', '2.6553', '2.6553', '4.0000', '4.0000', '48.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99040, '2022-07-10', 1307, 93464, 5845, 56920, '1.0000', '4.8231', '4.8231', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99041, '2022-07-10', 1602, 93465, 5845, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99042, '2022-07-10', 1856, 93466, 5845, 57957, '1.0000', '5.1154', '5.1154', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99043, '2022-07-10', 2398, 93467, 5845, 44588, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99044, '2022-07-10', 9794, 93468, 5845, 49849, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '57.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99045, '2022-07-10', 7927, 93469, 5845, NULL, '1.0000', '11.8000', '11.8000', '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 (99046, '2022-07-10', 1863, 93470, 5845, 56917, '3.0000', '1.3484', '1.3484', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99047, '2022-07-10', 9848, 93471, 5845, NULL, '1.0000', '2.8000', '2.8000', '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 (99048, '2022-07-10', 1326, 93472, 5845, 56232, '1.0000', '3.4188', '3.4188', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99049, '2022-07-10', 2916, 93473, 5845, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99050, '2022-07-10', 9695, 93474, 5845, 58550, '1.0000', '5.7386', '5.7386', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99051, '2022-07-10', 2236, 93475, 5845, 56244, '1.0000', '5.9676', '5.9676', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99052, '2022-07-10', 2916, 93476, 5845, 56891, '1.0000', '14.4513', '14.4513', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99053, '2022-07-10', 2678, 93477, 5845, 49077, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '19.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99054, '2022-07-10', 2858, 93478, 5845, 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 (99055, '2022-07-10', 9800, 93479, 5845, 56901, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99056, '2022-07-10', 2693, 93480, 5845, 56907, '1.0000', '24.4402', '24.4402', '32.5000', '32.5000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99057, '2022-07-10', 9732, 93481, 5845, 55495, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99058, '2022-07-10', 7743, 93482, 5846, NULL, '1.0000', '919779.6853', '919779.6853', '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 (99059, '2022-07-10', 1529, 93483, 5847, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99060, '2022-07-10', 1783, 93484, 5847, 57793, '3.0000', '11.0704', '11.0704', '13.5000', '13.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99061, '2022-07-10', 1715, 93485, 5847, 58213, '1.0000', '10.1667', '10.1667', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99062, '2022-07-10', 9609, 93486, 5847, NULL, '1.0000', '-1.7000', '-1.7000', '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 (99063, '2022-07-10', 2506, 93487, 5847, NULL, '1.0000', '-8.6523', '-8.6523', '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 (99064, '2022-07-10', 2244, 93488, 5847, NULL, '1.0000', '6.8500', '6.8500', '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 (99065, '2022-07-10', 1912, 93489, 5847, 57704, '2.0000', '0.6868', '0.6868', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99066, '2022-07-10', 2366, 93490, 5847, NULL, '2.0000', '-51.4778', '-51.4778', '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 (99067, '2022-07-10', 2250, 93491, 5847, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99068, '2022-07-10', 2384, 93492, 5847, NULL, '2.0000', '-0.4538', '-0.4538', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99069, '2022-07-10', 1807, 93493, 5847, NULL, '3.0000', '34.9993', '34.9993', '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 (99070, '2022-07-10', 9828, 93494, 5847, NULL, '2.0000', '2.9100', '2.9100', '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 (99071, '2022-07-10', 1555, 93495, 5847, 57813, '1.0000', '45.4000', '45.4000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99072, '2022-07-10', 1715, 93496, 5847, 58213, '1.0000', '10.1667', '10.1667', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99073, '2022-07-10', 2295, 93497, 5847, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99074, '2022-07-10', 9831, 93498, 5847, 58537, '2.0000', '1.8485', '1.8485', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99075, '2022-07-10', 9609, 93499, 5847, NULL, '1.0000', '-1.7000', '-1.7000', '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 (99076, '2022-07-10', 2169, 93500, 5847, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99077, '2022-07-10', 7411, 93501, 5847, NULL, '1.0000', '1.2819', '1.2819', '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 (99078, '2022-07-10', 7641, 93502, 5847, NULL, '1.0000', '1.9000', '1.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 (99079, '2022-07-10', 8476, 93503, 5847, NULL, '2.0000', '23.0000', '23.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 (99080, '2022-07-10', 1841, 93504, 5847, NULL, '1.0000', '0.7630', '0.7630', '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 (99081, '2022-07-10', 1840, 93505, 5847, NULL, '1.0000', '0.2400', '0.2400', '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 (99082, '2022-07-10', 1748, 93506, 5847, NULL, '1.0000', '0.3200', '0.3200', '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 (99083, '2022-07-10', 2289, 93507, 5847, NULL, '1.0000', '0.3611', '0.3611', '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 (99084, '2022-07-10', 2245, 93508, 5847, 51375, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99085, '2022-07-10', 1855, 93509, 5847, NULL, '1.0000', '1.4615', '1.4615', '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 (99086, '2022-07-10', 1386, 93510, 5847, 57759, '1.0000', '4.5308', '4.5308', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99087, '2022-07-10', 2315, 93511, 5847, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99088, '2022-07-10', 1806, 93512, 5847, NULL, '1.0000', '29.2252', '29.2252', '40.5000', '40.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99089, '2022-07-10', 2893, 93513, 5847, NULL, '1.0000', '6.4400', '6.4400', '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 (99090, '2022-07-10', 7514, 93514, 5847, NULL, '3.0000', '2.2500', '2.2500', '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 (99091, '2022-07-10', 9634, 93515, 5847, 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 (99092, '2022-07-10', 8017, 93516, 5847, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99093, '2022-07-10', 7411, 93517, 5847, NULL, '2.0000', '1.2819', '1.2819', '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 (99094, '2022-07-10', 2154, 93518, 5847, 57141, '2.0000', '12.2956', '12.2956', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99095, '2022-07-10', 8476, 93519, 5847, NULL, '6.0000', '23.0000', '23.0000', '0.6000', '0.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 (99096, '2022-07-10', 2491, 93520, 5847, 58257, '1.0000', '-73.4000', '-73.4000', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99097, '2022-07-10', 1787, 93521, 5847, NULL, '1.0000', '0.5000', '0.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 (99098, '2022-07-10', 8677, 93522, 5847, NULL, '2.0000', '630.6244', '630.6244', '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 (99099, '2022-07-10', 1935, 93523, 5847, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99100, '2022-07-10', 2315, 93524, 5847, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99101, '2022-07-10', 9732, 93525, 5847, 54926, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99102, '2022-07-10', 1499, 93526, 5847, 57679, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99103, '2022-07-10', 2315, 93527, 5847, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99104, '2022-07-10', 2678, 93528, 5847, 23181, '1.0000', '37.0000', '37.0000', '48.0000', '48.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 (99105, '2022-07-10', 1805, 93529, 5847, NULL, '1.0000', '40.8080', '40.8080', '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 (99106, '2022-07-10', 2335, 93530, 5847, NULL, '1.0000', '18.9000', '18.9000', '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 (99107, '2022-07-10', 8767, 93531, 5847, NULL, '2.0000', '8.5590', '8.5590', '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 (99108, '2022-07-10', 1480, 93532, 5847, 24922, '1.0000', '29.9900', '29.9900', '41.0000', '41.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 (99109, '2022-07-10', 1822, 93533, 5847, 56458, '1.0000', '2.7534', '2.7534', '4.0000', '4.0000', '57.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99110, '2022-07-10', 8699, 93534, 5847, NULL, '2.0000', '6.3800', '6.3800', '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 (99111, '2022-07-10', 1908, 93535, 5847, NULL, '2.0000', '0.9032', '0.9032', '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 (99112, '2022-07-10', 7495, 93536, 5847, NULL, '1.0000', '17.8000', '17.8000', '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 (99113, '2022-07-10', 7657, 93537, 5847, 39824, '1.0000', '10.3000', '10.3000', '20.0000', '20.0000', '15.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99114, '2022-07-10', 1519, 93538, 5847, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99115, '2022-07-10', 2287, 93539, 5847, 57710, '2.0000', '2.3233', '2.3233', '4.0000', '4.0000', '48.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99116, '2022-07-10', 2237, 93540, 5847, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99117, '2022-07-10', 8068, 93541, 5847, NULL, '1.0000', '8.7900', '8.7900', '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 (99118, '2022-07-10', 8183, 93542, 5847, NULL, '1.0000', '2774.2425', '2774.2425', '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 (99119, '2022-07-10', 1787, 93543, 5847, NULL, '1.0000', '0.5000', '0.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 (99120, '2022-07-10', 8677, 93544, 5847, NULL, '2.0000', '630.6244', '630.6244', '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 (99121, '2022-07-10', 1529, 93545, 5847, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99122, '2022-07-10', 2320, 93546, 5847, 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 (99123, '2022-07-10', 7641, 93547, 5847, NULL, '1.0000', '1.9000', '1.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 (99124, '2022-07-10', 7411, 93548, 5847, NULL, '1.0000', '1.2819', '1.2819', '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 (99125, '2022-07-10', 7743, 93549, 5847, NULL, '1.0000', '7.3900', '7.3900', '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 (99126, '2022-07-10', 9729, 93550, 5847, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99127, '2022-07-10', 2135, 93551, 5847, NULL, '2.0000', '-0.2588', '-0.2588', '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 (99128, '2022-07-10', 1590, 93552, 5847, 54532, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99129, '2022-07-10', 2295, 93553, 5847, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99130, '2022-07-10', 1690, 93554, 5847, 55578, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99131, '2022-07-10', 7514, 93555, 5847, NULL, '2.0000', '2.2500', '2.2500', '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 (99132, '2022-07-10', 7411, 93556, 5847, NULL, '1.0000', '1.2819', '1.2819', '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 (99133, '2022-07-10', 1935, 93557, 5847, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99134, '2022-07-10', 8878, 93558, 5847, NULL, '1.0000', '3.8136', '3.8136', '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 (99135, '2022-07-10', 2169, 93559, 5847, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99136, '2022-07-10', 2315, 93560, 5847, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99137, '2022-07-10', 2366, 93561, 5847, NULL, '2.0000', '-51.4778', '-51.4778', '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 (99138, '2022-07-10', 7650, 93562, 5847, NULL, '1.0000', '0.8900', '0.8900', '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 (99139, '2022-07-10', 2699, 93563, 5847, NULL, '1.0000', '3.5000', '3.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 (99140, '2022-07-10', 2656, 93564, 5847, 58515, '1.0000', '0.8170', '0.8170', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99141, '2022-07-10', 9831, 93565, 5847, 58537, '2.0000', '1.8485', '1.8485', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99142, '2022-07-10', 7514, 93566, 5847, NULL, '1.0000', '2.2500', '2.2500', '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 (99143, '2022-07-10', 1501, 93567, 5847, NULL, '1.0000', '0.6299', '0.6299', '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 (99144, '2022-07-10', 2068, 93568, 5847, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99145, '2022-07-10', 9831, 93569, 5848, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99146, '2022-07-10', 2592, 93570, 5848, 55933, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99147, '2022-07-10', 2169, 93571, 5849, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99148, '2022-07-10', 2604, 93572, 5849, 40184, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99149, '2022-07-10', 2777, 93573, 5849, 55759, '9.0000', '3.3848', '3.3848', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99150, '2022-07-10', 2777, 93573, 5849, 50944, '1.0000', '3.3848', '3.3848', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99151, '2022-07-10', 8444, 93574, 5849, NULL, '1.0000', '1.6000', '1.6000', '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 (99152, '2022-07-10', 7719, 93575, 5849, 42937, '1.0000', '6.0000', '6.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99153, '2022-07-10', 1574, 93576, 5849, 45115, '2.0000', '39.2960', '39.2960', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99154, '2022-07-10', 2169, 93577, 5849, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99155, '2022-07-10', 2342, 93578, 5849, 55488, '1.0000', '2.0954', '2.0954', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99156, '2022-07-10', 1863, 93579, 5849, 56917, '1.0000', '1.3484', '1.3484', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99157, '2022-07-10', 1602, 93580, 5849, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99158, '2022-07-10', 7917, 93581, 5849, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (99159, '2022-07-10', 2273, 93582, 5849, 49025, '1.0000', '2.6700', '2.6700', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99160, '2022-07-10', 1999, 93583, 5849, 56347, '1.0000', '7.3337', '7.3337', '12.0000', '12.0000', '10.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99161, '2022-07-10', 2858, 93584, 5849, 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 (99162, '2022-07-10', 2917, 93585, 5849, 54685, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99163, '2022-07-10', 1592, 93586, 5849, 56736, '1.0000', '35.6192', '35.6192', '52.0000', '52.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99164, '2022-07-10', 2135, 93587, 5849, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99165, '2022-07-10', 7922, 93588, 5849, 54656, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99166, '2022-07-10', 1867, 93589, 5849, NULL, '1.0000', '9.0894', '9.0894', '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 (99167, '2022-07-10', 9872, 93590, 5849, NULL, '1.0000', '14.6300', '14.6300', '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 (99168, '2022-07-10', 8775, 93591, 5849, 52321, '1.0000', '3.1153', '3.1153', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99169, '2022-07-10', 8773, 93592, 5849, NULL, '1.0000', '-3.5797', '-3.5797', '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 (99170, '2022-07-10', 2524, 93593, 5849, 58097, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99171, '2022-07-10', 2178, 93594, 5849, 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 (99172, '2022-07-10', 2858, 93595, 5849, NULL, '2.0000', '1.0000', '1.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 (99173, '2022-07-10', 2342, 93596, 5849, 55488, '10.0000', '2.0954', '2.0954', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99174, '2022-07-10', 1592, 93597, 5849, 56736, '1.0000', '35.6192', '35.6192', '52.0000', '52.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99175, '2022-07-10', 7385, 93598, 5849, 57945, '8.0000', '2.6553', '2.6553', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99176, '2022-07-10', 2695, 93599, 5849, 45122, '3.0000', '2.0000', '2.0000', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99177, '2022-07-10', 1407, 93600, 5849, 56258, '1.0000', '18.0109', '18.0109', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99178, '2022-07-11', 8363, 93601, 5850, NULL, '1.0000', '38.0000', '38.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 (99179, '2022-07-11', 9418, 93602, 5850, NULL, '1.0000', '6.6000', '6.6000', '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 (99180, '2022-07-11', 8677, 93603, 5850, NULL, '2.0000', '1.2800', '1.2800', '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 (99181, '2022-07-11', 1935, 93604, 5850, 5586, '-173.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 (99182, '2022-07-11', 1935, 93604, 5850, NULL, '175.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-175.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99183, '2022-07-11', 2673, 93605, 5851, 55938, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99184, '2022-07-11', 2414, 93606, 5851, NULL, '2.0000', '3.9438', '3.9438', '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 (99185, '2022-07-11', 1912, 93607, 5851, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99186, '2022-07-11', 2250, 93608, 5851, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99187, '2022-07-11', 2169, 93609, 5851, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99188, '2022-07-11', 3016, 93610, 5851, 57723, '1.0000', '13.9139', '13.9139', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99189, '2022-07-11', 2440, 93611, 5851, 58057, '1.0000', '6.6730', '6.6730', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99190, '2022-07-11', 1691, 93612, 5851, 58218, '1.0000', '12.4229', '12.4229', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99191, '2022-07-11', 1543, 93613, 5851, NULL, '1.0000', '26.1267', '26.1267', '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 (99192, '2022-07-11', 9740, 93614, 5851, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '97.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99193, '2022-07-11', 2849, 93615, 5851, NULL, '1.0000', '5.8500', '5.8500', '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 (99194, '2022-07-11', 1960, 93616, 5851, 57154, '1.0000', '7.5000', '7.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99195, '2022-07-11', 1346, 93617, 5851, 55603, '2.0000', '1.6774', '1.6774', '2.0000', '2.0000', '77.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99196, '2022-07-11', 1432, 93618, 5851, 58198, '1.0000', '12.5636', '12.5636', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99197, '2022-07-11', 2236, 93619, 5851, NULL, '1.0000', '8.2102', '8.2102', '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 (99198, '2022-07-11', 7411, 93620, 5851, NULL, '1.0000', '1.2819', '1.2819', '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 (99199, '2022-07-11', 9740, 93621, 5851, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '97.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99200, '2022-07-11', 2169, 93622, 5851, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99201, '2022-07-11', 2315, 93623, 5851, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99202, '2022-07-11', 1326, 93624, 5851, 55898, '2.0000', '4.3669', '4.3669', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99203, '2022-07-11', 7560, 93625, 5851, NULL, '1.0000', '90.1600', '90.1600', '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 (99204, '2022-07-11', 9831, 93626, 5851, 58537, '2.0000', '1.8485', '1.8485', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99205, '2022-07-11', 2135, 93627, 5852, NULL, '1.0000', '-0.2588', '-0.2588', '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 (99206, '2022-07-11', 1839, 93628, 5852, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (99207, '2022-07-11', 1342, 93629, 5852, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99208, '2022-07-11', 9821, 93630, 5852, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99209, '2022-07-11', 2073, 93631, 5852, 55667, '2.0000', '2.3000', '2.3000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99210, '2022-07-11', 7438, 93632, 5852, NULL, '1.0000', '28.6900', '28.6900', '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 (99211, '2022-07-11', 1501, 93633, 5852, NULL, '1.0000', '0.6299', '0.6299', '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 (99212, '2022-07-11', 2342, 93634, 5852, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99213, '2022-07-11', 9891, 93635, 5852, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99214, '2022-07-11', 2522, 93636, 5853, 57139, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99215, '2022-07-11', 7650, 93637, 5853, NULL, '1.0000', '0.8900', '0.8900', '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 (99216, '2022-07-11', 2506, 93638, 5853, NULL, '1.0000', '-8.6523', '-8.6523', '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 (99217, '2022-07-11', 1867, 93639, 5853, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99218, '2022-07-11', 9738, 93640, 5853, 55943, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99219, '2022-07-11', 2287, 93641, 5853, 57710, '3.0000', '2.3233', '2.3233', '4.0000', '4.0000', '45.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99220, '2022-07-11', 1787, 93642, 5853, NULL, '1.0000', '0.5000', '0.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 (99221, '2022-07-11', 2699, 93643, 5853, NULL, '1.0000', '3.5000', '3.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 (99222, '2022-07-11', 2169, 93644, 5853, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99223, '2022-07-11', 1999, 93645, 5854, 6362, '-16.0000', '6.0000', '6.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 (99224, '2022-07-11', 1999, 93645, 5854, NULL, '17.0000', '6.0000', '6.0000', '12.0000', '12.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 (99225, '2022-07-11', 2339, 93646, 5854, 3842, '-7.0000', '7.2300', '7.2300', '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 (99226, '2022-07-11', 2339, 93646, 5854, NULL, '8.0000', '7.2300', '7.2300', '15.5000', '15.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 (99227, '2022-07-11', 2366, 93647, 5854, 3833, '-68.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 (99228, '2022-07-11', 2366, 93647, 5854, NULL, '70.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99229, '2022-07-11', 2479, 93648, 5854, 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 (99230, '2022-07-11', 3057, 93649, 5854, NULL, '2.0000', '2.7000', '2.7000', '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 (99231, '2022-07-11', 2858, 93650, 5854, 17772, '-103.0000', '1.0000', '1.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 (99232, '2022-07-11', 2858, 93650, 5854, NULL, '104.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-104.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99233, '2022-07-11', 8677, 93651, 5854, NULL, '2.0000', '1.2800', '1.2800', '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 (99234, '2022-07-11', 1347, 93652, 5854, 243, '3.0000', '3.4000', '3.4000', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99235, '2022-07-11', 8677, 93653, 5854, NULL, '2.0000', '1.2800', '1.2800', '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 (99236, '2022-07-11', 1432, 93654, 5854, NULL, '1.0000', '8.1574', '8.1574', '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 (99237, '2022-07-11', 2225, 93655, 5854, 1700, '-8.0000', '14.0000', '14.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 (99238, '2022-07-11', 2225, 93655, 5854, NULL, '9.0000', '14.0000', '14.0000', '20.0000', '20.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 (99239, '2022-07-11', 2251, 93656, 5854, 2788, '-30.0000', '10.9700', '10.9700', '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 (99240, '2022-07-11', 2251, 93656, 5854, NULL, '31.0000', '10.9700', '10.9700', '19.5000', '19.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 (99241, '2022-07-11', 2612, 93657, 5854, 9748, '-4.0000', '7.1600', '7.1600', '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 (99242, '2022-07-11', 2612, 93657, 5854, NULL, '5.0000', '7.1600', '7.1600', '11.5000', '11.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 (99243, '2022-07-11', 2297, 93658, 5854, 2956, '-9.0000', '6.6000', '6.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 (99244, '2022-07-11', 2297, 93658, 5854, NULL, '10.0000', '6.6000', '6.6000', '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 (99245, '2022-07-11', 1335, 93659, 5854, 12031, '-41.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 (99246, '2022-07-11', 1335, 93659, 5854, NULL, '42.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99247, '2022-07-11', 2503, 93660, 5854, NULL, '1.0000', '14.6000', '14.6000', '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 (99248, '2022-07-11', 9634, 93661, 5854, NULL, '3.0000', '4.8000', '4.8000', '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 (99249, '2022-07-11', 1754, 93662, 5854, 2171, '-2.0000', '13.4800', '13.4800', '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 (99250, '2022-07-11', 1754, 93662, 5854, NULL, '3.0000', '13.4800', '13.4800', '20.0000', '20.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 (99251, '2022-07-11', 9471, 93663, 5854, 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 (99252, '2022-07-11', 1647, 93664, 5854, 3218, '-21.0000', '4.7200', '4.7200', '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 (99253, '2022-07-11', 1647, 93664, 5854, NULL, '22.0000', '4.7200', '4.7200', '8.0000', '8.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99254, '2022-07-11', 1608, 93665, 5854, 8222, '-16.0000', '3.3500', '3.3500', '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 (99255, '2022-07-11', 1608, 93665, 5854, NULL, '17.0000', '3.3500', '3.3500', '6.0000', '6.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 (99256, '2022-07-11', 9747, 93666, 5854, NULL, '2.0000', '0.6500', '0.6500', '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 (99257, '2022-07-11', 1331, 93667, 5854, NULL, '1.0000', '4.2000', '4.2000', '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 (99258, '2022-07-11', 2062, 93668, 5854, 2165, '-5.0000', '5.7540', '5.7540', '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 (99259, '2022-07-11', 2062, 93668, 5854, NULL, '7.0000', '5.7540', '5.7540', '15.0000', '15.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 (99260, '2022-07-11', 8933, 93669, 5854, NULL, '1.0000', '7.5000', '7.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 (99261, '2022-07-11', 8763, 93670, 5854, NULL, '3.0000', '5.4000', '5.4000', '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 (99262, '2022-07-11', 1411, 93671, 5854, NULL, '1.0000', '25.9000', '25.9000', '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 (99263, '2022-07-11', 2758, 93672, 5854, 22011, '-7.0000', '-20.1917', '-20.1917', '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 (99264, '2022-07-11', 2758, 93672, 5854, NULL, '8.0000', '-20.1917', '-20.1917', '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 (99265, '2022-07-11', 9814, 93673, 5854, 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 (99266, '2022-07-11', 1760, 93674, 5854, 93, '1.0000', '111.8384', '111.8384', '1.0000', '1.0000', '11.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 (99267, '2022-07-11', 7411, 93675, 5854, NULL, '4.0000', '1.3500', '1.3500', '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 (99268, '2022-07-11', 1665, 93676, 5854, 3235, '-140.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 (99269, '2022-07-11', 1665, 93676, 5854, NULL, '142.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-142.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99270, '2022-07-11', 9648, 93677, 5854, NULL, '1.0000', '15.0000', '15.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99271, '2022-07-11', 9399, 93678, 5854, NULL, '1.0000', '0.9800', '0.9800', '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 (99272, '2022-07-11', 1851, 93679, 5854, 8627, '-13.0000', '10.6568', '10.6568', '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 (99273, '2022-07-11', 1851, 93679, 5854, NULL, '14.0000', '10.6568', '10.6568', '20.0000', '20.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 (99274, '2022-07-11', 1590, 93680, 5854, 22260, '2.0000', '1.7100', '1.7100', '3.5000', '3.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 (99275, '2022-07-11', 2237, 93681, 5855, 54421, '1.0000', '1.3518', '1.3518', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99276, '2022-07-11', 1672, 93682, 5855, 50912, '10.0000', '14.4417', '14.4417', '5.5000', '5.5000', '40.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99277, '2022-07-11', 7658, 93683, 5855, NULL, '10.0000', '2.6500', '2.6500', '3.5000', '3.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 (99278, '2022-07-11', 1888, 93684, 5855, 56246, '1.0000', '16.8978', '16.8978', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99279, '2022-07-11', 8086, 93685, 5855, NULL, '1.0000', '12.0000', '12.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 (99280, '2022-07-11', 2485, 93686, 5855, 39201, '1.0000', '29.8556', '29.8556', '18.0000', '18.0000', '63.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99281, '2022-07-11', 2479, 93687, 5855, 5192, '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 (99282, '2022-07-11', 9895, 93688, 5855, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '24.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99283, '2022-07-11', 2487, 93689, 5855, 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 (99284, '2022-07-11', 2693, 93690, 5855, 56907, '1.0000', '24.4402', '24.4402', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99285, '2022-07-11', 1665, 93691, 5855, 57952, '13.0000', '1.1816', '1.1816', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99286, '2022-07-11', 9648, 93692, 5855, 47957, '1.0000', '15.8313', '15.8313', '21.5000', '21.5000', '9.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99287, '2022-07-11', 1867, 93693, 5856, NULL, '1.0000', '9.0894', '9.0894', '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 (99288, '2022-07-11', 1837, 93694, 5856, 56224, '2.0000', '0.5767', '0.5767', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99289, '2022-07-11', 2379, 93695, 5856, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99290, '2022-07-11', 9939, 93696, 5856, 56848, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99291, '2022-07-11', 1787, 93697, 5856, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '92.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99292, '2022-07-11', 1498, 93698, 5856, 52247, '2.0000', '0.3808', '0.3808', '0.7000', '0.7000', '21.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99293, '2022-07-11', 1371, 93699, 5857, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99294, '2022-07-11', 2917, 93700, 5857, 54685, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99295, '2022-07-11', 9891, 93701, 5857, NULL, '1.0000', '17.4000', '17.4000', '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 (99296, '2022-07-11', 8664, 93702, 5858, NULL, '1.0000', '0.3500', '0.3500', '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 (99297, '2022-07-11', 8135, 93703, 5858, NULL, '1.0000', '5.4500', '5.4500', '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 (99298, '2022-07-11', 8136, 93704, 5858, NULL, '1.0000', '5.7700', '5.7700', '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 (99299, '2022-07-11', 7317, 93705, 5858, NULL, '1.0000', '19.5500', '19.5500', '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 (99300, '2022-07-11', 7666, 93706, 5858, NULL, '1.0000', '3.6000', '3.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 (99301, '2022-07-11', 9445, 93707, 5858, NULL, '1.0000', '4.5000', '4.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 (99302, '2022-07-11', 7548, 93708, 5858, NULL, '1.0000', '0.3400', '0.3400', '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 (99303, '2022-07-11', 9715, 93709, 5858, NULL, '1.0000', '9.4000', '9.4000', '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 (99304, '2022-07-11', 7848, 93710, 5858, NULL, '1.0000', '1.3500', '1.3500', '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 (99305, '2022-07-11', 8677, 93711, 5858, NULL, '2.0000', '1.2800', '1.2800', '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 (99306, '2022-07-11', 8918, 93712, 5858, NULL, '1.0000', '1.0400', '1.0400', '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 (99307, '2022-07-11', 9274, 93713, 5858, NULL, '1.0000', '3.6000', '3.6000', '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 (99308, '2022-07-11', 7782, 93714, 5858, 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 (99309, '2022-07-11', 7524, 93715, 5858, NULL, '1.0000', '11.9500', '11.9500', '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 (99310, '2022-07-11', 7715, 93716, 5858, NULL, '1.0000', '1.8900', '1.8900', '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 (99311, '2022-07-11', 7557, 93717, 5858, NULL, '2.0000', '0.5000', '0.5000', '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 (99312, '2022-07-11', 7385, 93718, 5858, NULL, '3.0000', '2.0000', '2.0000', '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 (99313, '2022-07-11', 9695, 93719, 5858, NULL, '1.0000', '4.5000', '4.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 (99314, '2022-07-11', 8359, 93720, 5858, 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 (99315, '2022-07-11', 1935, 93721, 5858, 5586, '-175.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 (99316, '2022-07-11', 1935, 93721, 5858, NULL, '177.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-177.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99317, '2022-07-11', 9499, 93722, 5858, NULL, '1.0000', '22.0000', '22.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 (99318, '2022-07-11', 7318, 93723, 5858, NULL, '1.0000', '13.4400', '13.4400', '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 (99319, '2022-07-11', 8517, 93724, 5858, NULL, '1.0000', '26.4500', '26.4500', '37.5000', '37.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99320, '2022-07-11', 2315, 93725, 5858, 2735, '-533.0000', '0.3300', '0.3300', '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 (99321, '2022-07-11', 2315, 93725, 5858, NULL, '534.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-534.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99322, '2022-07-11', 7514, 93726, 5858, NULL, '1.0000', '2.2500', '2.2500', '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 (99323, '2022-07-11', 9332, 93727, 5858, NULL, '1.0000', '8.0000', '8.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 (99324, '2022-07-11', 7674, 93728, 5858, NULL, '1.0000', '1.3000', '1.3000', '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 (99325, '2022-07-11', 1340, 93729, 5858, 13005, '-15.0000', '2.7025', '2.7025', '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 (99326, '2022-07-11', 1340, 93729, 5858, NULL, '16.0000', '2.7025', '2.7025', '5.0000', '5.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 (99327, '2022-07-11', 8063, 93730, 5858, NULL, '1.0000', '1.6000', '1.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 (99328, '2022-07-11', 7641, 93731, 5858, NULL, '1.0000', '1.9000', '1.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 (99329, '2022-07-11', 7457, 93732, 5858, NULL, '2.0000', '6.0000', '6.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 (99330, '2022-07-11', 7375, 93733, 5858, NULL, '10.0000', '3.9300', '3.9300', '7.0000', '7.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 (99331, '2022-07-11', 7514, 93734, 5858, NULL, '1.0000', '2.2500', '2.2500', '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 (99332, '2022-07-11', 8101, 93735, 5858, 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 (99333, '2022-07-11', 2242, 93736, 5858, 3059, '-80.0000', '0.4800', '0.4800', '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 (99334, '2022-07-11', 2242, 93736, 5858, NULL, '83.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99335, '2022-07-11', 2279, 93737, 5858, 2939, '-24.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 (99336, '2022-07-11', 2279, 93737, 5858, NULL, '25.0000', '2.7000', '2.7000', '3.5000', '3.5000', '-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 (99337, '2022-07-11', 7444, 93738, 5858, 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 (99338, '2022-07-11', 7411, 93739, 5858, NULL, '2.0000', '1.3500', '1.3500', '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 (99339, '2022-07-11', 8395, 93740, 5858, NULL, '1.0000', '0.9700', '0.9700', '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 (99340, '2022-07-11', 7385, 93741, 5858, NULL, '4.0000', '2.0000', '2.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 (99341, '2022-07-11', 7869, 93742, 5858, NULL, '1.0000', '4.2900', '4.2900', '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 (99342, '2022-07-11', 7890, 93743, 5858, NULL, '1.0000', '1.0000', '1.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 (99343, '2022-07-11', 7730, 93744, 5858, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (99344, '2022-07-11', 7411, 93745, 5858, NULL, '2.0000', '1.3500', '1.3500', '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 (99345, '2022-07-11', 7444, 93746, 5858, 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 (99346, '2022-07-11', 8810, 93747, 5858, NULL, '1.0000', '1.6000', '1.6000', '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 (99347, '2022-07-11', 7569, 93748, 5858, NULL, '1.0000', '37.0000', '37.0000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99348, '2022-07-11', 7506, 93749, 5858, NULL, '1.0000', '15.0000', '15.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 (99349, '2022-07-11', 8638, 93750, 5858, NULL, '1.0000', '0.5100', '0.5100', '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 (99350, '2022-07-11', 7981, 93751, 5858, NULL, '15.0000', '6.0000', '6.0000', '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 (99351, '2022-07-11', 7781, 93752, 5858, NULL, '3.0000', '4.2500', '4.2500', '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 (99352, '2022-07-11', 8068, 93753, 5858, NULL, '1.0000', '8.7900', '8.7900', '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 (99353, '2022-07-11', 9641, 93754, 5858, NULL, '1.0000', '36.0800', '36.0800', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99354, '2022-07-11', 9736, 93755, 5858, NULL, '1.0000', '3.9100', '3.9100', '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 (99355, '2022-07-11', 7630, 93756, 5858, NULL, '1.0000', '10.0000', '10.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 (99356, '2022-07-11', 1383, 93757, 5859, 56883, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99357, '2022-07-11', 2435, 93758, 5859, NULL, '1.0000', '4.8000', '4.8000', '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 (99358, '2022-07-11', 2169, 93759, 5859, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99359, '2022-07-11', 1383, 93760, 5859, 56883, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99360, '2022-07-11', 7746, 93761, 5859, NULL, '1.0000', '2.8600', '2.8600', '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 (99361, '2022-07-11', 1837, 93762, 5859, 56224, '2.0000', '0.5767', '0.5767', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99362, '2022-07-11', 2734, 93763, 5859, 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 (99363, '2022-07-11', 2379, 93764, 5859, 56971, '1.0000', '1.9610', '1.9610', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99364, '2022-07-11', 1506, 93765, 5860, 57948, '1.0000', '25.5190', '25.5190', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99365, '2022-07-11', 1873, 93766, 5860, 57990, '1.0000', '13.3096', '13.3096', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99366, '2022-07-11', 1787, 93767, 5860, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99367, '2022-07-11', 1837, 93768, 5860, 56224, '1.0000', '0.5767', '0.5767', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99368, '2022-07-11', 8773, 93769, 5860, NULL, '1.0000', '-3.5797', '-3.5797', '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 (99369, '2022-07-11', 8444, 93770, 5861, NULL, '1.0000', '1.6000', '1.6000', '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 (99370, '2022-07-11', 2975, 93771, 5861, NULL, '5.0000', '6.0000', '6.0000', '10.5000', '10.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 (99371, '2022-07-11', 9729, 93772, 5861, 46048, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99372, '2022-07-11', 3017, 93773, 5861, 55771, '1.0000', '3.9691', '3.9691', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99373, '2022-07-11', 3029, 93774, 5861, 54655, '1.0000', '7.0906', '7.0906', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99374, '2022-07-11', 2135, 93775, 5862, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99375, '2022-07-11', 1695, 93776, 5862, 57955, '1.0000', '28.4742', '28.4742', '26.0000', '26.0000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99376, '2022-07-11', 2062, 93777, 5862, 57956, '1.0000', '9.6167', '9.6167', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99377, '2022-07-11', 2948, 93778, 5862, 56245, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99378, '2022-07-11', 1863, 93779, 5862, 56917, '3.0000', '1.3484', '1.3484', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99379, '2022-07-11', 7524, 93780, 5863, NULL, '1.0000', '11.9500', '11.9500', '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 (99380, '2022-07-11', 8744, 93781, 5863, NULL, '2.0000', '3.6600', '3.6600', '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 (99381, '2022-07-11', 9971, 93782, 5863, NULL, '1.0000', '5.8300', '5.8300', '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 (99382, '2022-07-11', 8878, 93783, 5863, NULL, '1.0000', '6.6700', '6.6700', '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 (99383, '2022-07-11', 2769, 93784, 5863, NULL, '4.0000', '1.5200', '1.5200', '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 (99384, '2022-07-11', 7666, 93785, 5863, NULL, '1.0000', '3.6000', '3.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 (99385, '2022-07-11', 9463, 93786, 5863, NULL, '1.0000', '7.5000', '7.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 (99386, '2022-07-11', 7609, 93787, 5863, NULL, '1.0000', '4.3300', '4.3300', '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 (99387, '2022-07-11', 8145, 93788, 5863, NULL, '1.0000', '28.0000', '28.0000', '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 (99388, '2022-07-11', 8328, 93789, 5863, 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 (99389, '2022-07-11', 8011, 93790, 5863, 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 (99390, '2022-07-11', 1743, 93791, 5863, 2162, '-2.0000', '3.9800', '3.9800', '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 (99391, '2022-07-11', 1743, 93791, 5863, NULL, '3.0000', '3.9800', '3.9800', '7.0000', '7.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 (99392, '2022-07-11', 1914, 93792, 5863, 5476, '1.0000', '4.9000', '4.9000', '8.0000', '8.0000', '4.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 (99393, '2022-07-11', 7317, 93793, 5863, NULL, '1.0000', '19.5500', '19.5500', '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 (99394, '2022-07-11', 8878, 93794, 5863, NULL, '1.0000', '6.6700', '6.6700', '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 (99395, '2022-07-11', 7353, 93795, 5863, NULL, '2.0000', '0.1900', '0.1900', '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 (99396, '2022-07-11', 7514, 93796, 5863, NULL, '1.0000', '2.2500', '2.2500', '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 (99397, '2022-07-11', 2414, 93797, 5863, 4620, '-26.0000', '3.4000', '3.4000', '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 (99398, '2022-07-11', 2414, 93797, 5863, NULL, '27.0000', '3.4000', '3.4000', '5.0000', '5.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 (99399, '2022-07-11', 2315, 93798, 5863, 2735, '-534.0000', '0.3300', '0.3300', '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 (99400, '2022-07-11', 2315, 93798, 5863, NULL, '535.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-535.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99401, '2022-07-11', 9762, 93799, 5863, 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 (99402, '2022-07-11', 2100, 93800, 5863, 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 (99403, '2022-07-11', 7472, 93801, 5863, NULL, '1.0000', '4.1000', '4.1000', '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 (99404, '2022-07-11', 9747, 93802, 5863, NULL, '2.0000', '0.6500', '0.6500', '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 (99405, '2022-07-11', 1855, 93803, 5863, 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 (99406, '2022-07-11', 8154, 93804, 5863, NULL, '2.0000', '12.3000', '12.3000', '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 (99407, '2022-07-11', 8638, 93805, 5863, NULL, '1.0000', '0.5100', '0.5100', '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 (99408, '2022-07-11', 7825, 93806, 5863, NULL, '1.0000', '6.5000', '6.5000', '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 (99409, '2022-07-11', 1871, 93807, 5864, 56238, '10.0000', '5.0960', '5.0960', '3.7000', '3.7000', '52.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99410, '2022-07-11', 2135, 93808, 5864, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99411, '2022-07-11', 1999, 93809, 5865, 56865, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99412, '2022-07-11', 2449, 93810, 5865, 56866, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99413, '2022-07-11', 9959, 93811, 5865, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99414, '2022-07-11', 2169, 93812, 5865, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99415, '2022-07-11', 9503, 93813, 5865, 33350, '2.0000', '24.1775', '24.1775', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99416, '2022-07-11', 2315, 93814, 5865, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99417, '2022-07-11', 7411, 93815, 5865, NULL, '1.0000', '1.2819', '1.2819', '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 (99418, '2022-07-11', 1529, 93816, 5865, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99419, '2022-07-11', 9831, 93817, 5865, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99420, '2022-07-11', 2315, 93818, 5865, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99421, '2022-07-11', 2169, 93819, 5865, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99422, '2022-07-11', 2251, 93820, 5865, 57670, '1.0000', '14.9073', '14.9073', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99423, '2022-07-11', 1873, 93821, 5865, 58170, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99424, '2022-07-11', 1935, 93822, 5865, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99425, '2022-07-11', 7444, 93823, 5865, 39808, '2.0000', '3.5100', '3.5100', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99426, '2022-07-11', 2937, 93824, 5865, 51655, '1.0000', '5.5731', '5.5731', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99427, '2022-07-11', 2384, 93825, 5865, NULL, '1.0000', '-0.4538', '-0.4538', '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 (99428, '2022-07-11', 9828, 93826, 5865, NULL, '1.0000', '2.9100', '2.9100', '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 (99429, '2022-07-11', 9695, 93827, 5865, 58540, '1.0000', '5.5156', '5.5156', '8.0000', '8.0000', '33.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99430, '2022-07-11', 2321, 93828, 5865, 39848, '1.0000', '3.0000', '3.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99431, '2022-07-11', 1494, 93829, 5865, NULL, '1.0000', '4.3900', '4.3900', '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 (99432, '2022-07-11', 2245, 93830, 5865, 51375, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99433, '2022-07-11', 2169, 93831, 5865, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99434, '2022-07-11', 7589, 93832, 5865, 58268, '1.0000', '3.0700', '3.0700', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99435, '2022-07-11', 2506, 93833, 5865, NULL, '1.0000', '-8.6523', '-8.6523', '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 (99436, '2022-07-11', 7344, 93834, 5865, NULL, '5.0000', '94.2800', '94.2800', '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 (99437, '2022-07-11', 2409, 93835, 5865, 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 (99438, '2022-07-11', 1398, 93836, 5865, 53656, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99439, '2022-07-11', 9828, 93837, 5865, NULL, '1.0000', '2.9100', '2.9100', '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 (99440, '2022-07-11', 1840, 93838, 5865, NULL, '6.0000', '0.2400', '0.2400', '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 (99441, '2022-07-11', 1822, 93839, 5865, 56458, '5.0000', '2.7534', '2.7534', '4.0000', '4.0000', '52.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99442, '2022-07-11', 2070, 93840, 5865, 49718, '1.0000', '2.2143', '2.2143', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99443, '2022-07-11', 9831, 93841, 5865, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99444, '2022-07-11', 2906, 93842, 5865, NULL, '2.0000', '2.6000', '2.6000', '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 (99445, '2022-07-11', 2327, 93843, 5865, 58157, '3.0000', '3.8350', '3.8350', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99446, '2022-07-11', 2642, 93844, 5865, 56856, '1.0000', '9.8752', '9.8752', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99447, '2022-07-11', 2100, 93845, 5865, NULL, '1.0000', '1.6804', '1.6804', '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 (99448, '2022-07-11', 2366, 93846, 5865, NULL, '2.0000', '-51.4778', '-51.4778', '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 (99449, '2022-07-11', 9732, 93847, 5865, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99450, '2022-07-11', 7561, 93848, 5865, NULL, '1.0000', '16.2000', '16.2000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99451, '2022-07-11', 2270, 93849, 5865, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99452, '2022-07-11', 1912, 93850, 5865, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99453, '2022-07-11', 7411, 93851, 5865, NULL, '1.0000', '1.2819', '1.2819', '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 (99454, '2022-07-11', 1772, 93852, 5865, 58175, '1.0000', '5.9598', '5.9598', '8.0000', '8.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99455, '2022-07-11', 2682, 93853, 5865, 57072, '2.0000', '15.6200', '15.6200', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99456, '2022-07-11', 1822, 93854, 5865, 56458, '1.0000', '2.7534', '2.7534', '4.0000', '4.0000', '56.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99457, '2022-07-11', 2315, 93855, 5865, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99458, '2022-07-11', 7411, 93856, 5865, NULL, '1.0000', '1.2819', '1.2819', '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 (99459, '2022-07-11', 1529, 93857, 5865, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99460, '2022-07-11', 8677, 93858, 5865, NULL, '2.0000', '630.6244', '630.6244', '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 (99461, '2022-07-11', 2316, 93859, 5865, 56625, '1.0000', '50.6700', '50.6700', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 481);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99462, '2022-07-11', 8878, 93860, 5865, NULL, '2.0000', '3.8136', '3.8136', '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 (99463, '2022-07-11', 7411, 93861, 5865, NULL, '1.0000', '1.2819', '1.2819', '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 (99464, '2022-07-11', 1935, 93862, 5865, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99465, '2022-07-11', 2496, 93863, 5865, NULL, '1.0000', '0.5900', '0.5900', '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 (99466, '2022-07-11', 1365, 93864, 5865, 57729, '1.0000', '28.8565', '28.8565', '29.0000', '29.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99467, '2022-07-11', 9480, 93865, 5865, 44436, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99468, '2022-07-11', 1339, 93866, 5865, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99469, '2022-07-11', 2221, 93867, 5865, NULL, '1.0000', '2.3805', '2.3805', '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 (99470, '2022-07-11', 2730, 93868, 5865, 51643, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99471, '2022-07-11', 2287, 93869, 5865, 57710, '4.0000', '2.3233', '2.3233', '4.0000', '4.0000', '41.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99472, '2022-07-11', 1668, 93870, 5865, 57703, '1.0000', '22.1926', '22.1926', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99473, '2022-07-11', 8736, 93871, 5865, 56455, '1.0000', '6.6250', '6.6250', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99474, '2022-07-11', 2142, 93872, 5865, 55559, '1.0000', '69.7500', '69.7500', '98.0000', '98.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99475, '2022-07-11', 1935, 93873, 5865, 58141, '2.0000', '0.6516', '0.6516', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99476, '2022-07-11', 7411, 93874, 5865, NULL, '1.0000', '1.2819', '1.2819', '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 (99477, '2022-07-11', 9831, 93875, 5865, 58537, '3.0000', '1.8485', '1.8485', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99478, '2022-07-11', 1905, 93876, 5865, 54898, '3.0000', '0.5203', '0.5203', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99479, '2022-07-11', 8011, 93877, 5865, NULL, '1.0000', '0.9500', '0.9500', '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 (99480, '2022-07-11', 1863, 93878, 5866, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99481, '2022-07-11', 1855, 93879, 5866, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99482, '2022-07-11', 2327, 93880, 5867, 55803, '1.0000', '3.1287', '3.1287', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99483, '2022-07-11', 9814, 93881, 5868, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99484, '2022-07-11', 9828, 93882, 5868, NULL, '2.0000', '2.9100', '2.9100', '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 (99485, '2022-07-11', 1935, 93883, 5868, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99486, '2022-07-11', 2315, 93884, 5868, 54963, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99487, '2022-07-11', 2821, 93885, 5868, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99488, '2022-07-11', 7514, 93886, 5868, NULL, '2.0000', '2.2500', '2.2500', '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 (99489, '2022-07-11', 7324, 93887, 5869, NULL, '1.0000', '4.0000', '4.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 (99490, '2022-07-11', 7899, 93888, 5869, NULL, '1.0000', '3.3000', '3.3000', '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 (99491, '2022-07-11', 9456, 93889, 5869, NULL, '1.0000', '3.3200', '3.3200', '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 (99492, '2022-07-11', 7672, 93890, 5869, NULL, '1.0000', '1.0200', '1.0200', '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 (99493, '2022-07-11', 7524, 93891, 5869, NULL, '2.0000', '11.9500', '11.9500', '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 (99494, '2022-07-11', 7641, 93892, 5869, NULL, '1.0000', '1.9000', '1.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 (99495, '2022-07-11', 7496, 93893, 5869, NULL, '1.0000', '0.9600', '0.9600', '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 (99496, '2022-07-11', 7411, 93894, 5869, NULL, '1.0000', '1.3500', '1.3500', '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 (99497, '2022-07-12', 1863, 93895, 5870, 57733, '2.0000', '1.4714', '1.4714', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99498, '2022-07-12', 8133, 93896, 5870, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (99499, '2022-07-12', 1519, 93897, 5870, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99500, '2022-07-12', 2283, 93898, 5870, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99501, '2022-07-12', 9732, 93899, 5870, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99502, '2022-07-12', 2315, 93900, 5870, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99503, '2022-07-12', 9857, 93901, 5870, 57121, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99504, '2022-07-12', 8041, 93902, 5870, NULL, '1.0000', '0.4700', '0.4700', '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 (99505, '2022-07-12', 2384, 93903, 5870, NULL, '5.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (99506, '2022-07-12', 1863, 93904, 5870, 57733, '2.0000', '1.4714', '1.4714', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99507, '2022-07-12', 9683, 93905, 5870, 58520, '1.0000', '3.1613', '3.1613', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99508, '2022-07-12', 9831, 93906, 5870, 58537, '1.0000', '1.8485', '1.8485', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99509, '2022-07-12', 9866, 93907, 5870, 57677, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99510, '2022-07-12', 1935, 93908, 5870, 58141, '2.0000', '0.6516', '0.6516', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99511, '2022-07-12', 1863, 93909, 5870, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99512, '2022-07-12', 2062, 93910, 5870, 57738, '1.0000', '12.5700', '12.5700', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99513, '2022-07-12', 9943, 93911, 5870, NULL, '1.0000', '10.5500', '10.5500', '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 (99514, '2022-07-12', 2491, 93912, 5870, 58257, '1.0000', '-73.4000', '-73.4000', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99515, '2022-07-12', 7772, 93913, 5870, NULL, '1.0000', '34.6500', '34.6500', '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 (99516, '2022-07-12', 2105, 93914, 5870, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99517, '2022-07-12', 1905, 93915, 5870, 54898, '4.0000', '0.5203', '0.5203', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99518, '2022-07-12', 1602, 93916, 5871, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99519, '2022-07-12', 2971, 93917, 5871, 54827, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99520, '2022-07-12', 2363, 93918, 5871, NULL, '1.0000', '4.9400', '4.9400', '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 (99521, '2022-07-12', 2971, 93919, 5871, 54827, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99522, '2022-07-12', 1760, 93920, 5872, 58185, '5.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99523, '2022-07-12', 9834, 93921, 5872, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99524, '2022-07-12', 1454, 93922, 5872, 58125, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99525, '2022-07-12', 2656, 93923, 5872, 58515, '1.0000', '0.8170', '0.8170', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99526, '2022-07-12', 1307, 93924, 5872, NULL, '1.0000', '-59.9897', '-59.9897', '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 (99527, '2022-07-12', 2656, 93925, 5872, 58515, '1.0000', '0.8170', '0.8170', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99528, '2022-07-12', 1837, 93926, 5873, 58241, '5.0000', '2.5422', '2.5422', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99529, '2022-07-12', 2443, 93927, 5874, 56867, '2.0000', '3.1936', '3.1936', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99530, '2022-07-12', 1888, 93928, 5874, 56371, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99531, '2022-07-12', 7509, 93929, 5875, 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 (99532, '2022-07-12', 9745, 93930, 5875, NULL, '1.0000', '7.2000', '7.2000', '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 (99533, '2022-07-12', 9740, 93931, 5875, NULL, '1.0000', '0.6600', '0.6600', '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 (99534, '2022-07-12', 7586, 93932, 5875, NULL, '1.0000', '4.1700', '4.1700', '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 (99535, '2022-07-12', 1837, 93933, 5875, 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 (99536, '2022-07-12', 9791, 93934, 5875, 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 (99537, '2022-07-12', 7473, 93935, 5875, NULL, '1.0000', '0.5300', '0.5300', '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 (99538, '2022-07-12', 3009, 93936, 5875, NULL, '1.0000', '22.0000', '22.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 (99539, '2022-07-12', 7688, 93937, 5875, NULL, '1.0000', '14.7000', '14.7000', '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 (99540, '2022-07-12', 7852, 93938, 5875, NULL, '1.0000', '15.0000', '15.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 (99541, '2022-07-12', 7674, 93939, 5875, NULL, '2.0000', '1.3000', '1.3000', '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 (99542, '2022-07-12', 7881, 93940, 5875, NULL, '1.0000', '2.3000', '2.3000', '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 (99543, '2022-07-12', 7609, 93941, 5875, NULL, '2.0000', '4.3300', '4.3300', '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 (99544, '2022-07-12', 7980, 93942, 5875, NULL, '5.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (99545, '2022-07-12', 8666, 93943, 5875, NULL, '1.0000', '0.4600', '0.4600', '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 (99546, '2022-07-12', 8061, 93944, 5875, NULL, '1.0000', '6.5000', '6.5000', '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 (99547, '2022-07-12', 7562, 93945, 5875, NULL, '2.0000', '5.5300', '5.5300', '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 (99548, '2022-07-12', 7324, 93946, 5875, NULL, '1.0000', '4.0000', '4.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 (99549, '2022-07-12', 7664, 93947, 5875, NULL, '1.0000', '6.9400', '6.9400', '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 (99550, '2022-07-12', 7411, 93948, 5875, NULL, '2.0000', '1.3500', '1.3500', '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 (99551, '2022-07-12', 2284, 93949, 5875, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (99552, '2022-07-12', 7879, 93950, 5875, NULL, '10.0000', '1.9800', '1.9800', '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 (99553, '2022-07-12', 7514, 93951, 5875, NULL, '1.0000', '2.2500', '2.2500', '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 (99554, '2022-07-12', 1703, 93952, 5875, 5487, '-5.0000', '9.2200', '9.2200', '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 (99555, '2022-07-12', 1703, 93952, 5875, NULL, '6.0000', '9.2200', '9.2200', '12.5000', '12.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 (99556, '2022-07-12', 2315, 93953, 5875, 2735, '-535.0000', '0.3300', '0.3300', '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 (99557, '2022-07-12', 2315, 93953, 5875, NULL, '537.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-537.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99558, '2022-07-12', 7781, 93954, 5875, NULL, '3.0000', '4.2500', '4.2500', '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 (99559, '2022-07-12', 7720, 93955, 5875, NULL, '1.0000', '4.5000', '4.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 (99560, '2022-07-12', 7641, 93956, 5875, NULL, '1.0000', '1.9000', '1.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 (99561, '2022-07-12', 7672, 93957, 5875, NULL, '1.0000', '1.0200', '1.0200', '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 (99562, '2022-07-12', 8972, 93958, 5875, NULL, '1.0000', '4.5000', '4.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 (99563, '2022-07-12', 7554, 93959, 5875, NULL, '10.0000', '2.1000', '2.1000', '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 (99564, '2022-07-12', 2277, 93960, 5875, 2937, '-70.0000', '0.7800', '0.7800', '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 (99565, '2022-07-12', 2277, 93960, 5875, NULL, '71.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99566, '2022-07-12', 7674, 93961, 5875, NULL, '1.0000', '1.3000', '1.3000', '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 (99567, '2022-07-12', 7444, 93962, 5875, 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 (99568, '2022-07-12', 1804, 93963, 5876, 4916, '-16.0000', '4.2500', '4.2500', '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 (99569, '2022-07-12', 1804, 93963, 5876, NULL, '17.0000', '4.2500', '4.2500', '8.5000', '8.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 (99570, '2022-07-12', 9672, 93964, 5876, NULL, '1.0000', '2.0500', '2.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 (99571, '2022-07-12', 2068, 93965, 5876, 5568, '-30.0000', '13.1000', '13.1000', '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 (99572, '2022-07-12', 2068, 93965, 5876, NULL, '31.0000', '13.1000', '13.1000', '20.0000', '20.0000', '-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 (99573, '2022-07-12', 2858, 93966, 5876, 17772, '-104.0000', '1.0000', '1.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 (99574, '2022-07-12', 2858, 93966, 5876, NULL, '105.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99575, '2022-07-12', 2169, 93967, 5876, 10737, '-179.0000', '3.8397', '3.8397', '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 (99576, '2022-07-12', 2169, 93967, 5876, NULL, '181.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-181.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99577, '2022-07-12', 1528, 93968, 5876, NULL, '3.0000', '38.6400', '38.6400', '8.5000', '8.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 (99578, '2022-07-12', 2414, 93969, 5876, 4620, '-27.0000', '3.4000', '3.4000', '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 (99579, '2022-07-12', 2414, 93969, 5876, NULL, '29.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99580, '2022-07-12', 1602, 93970, 5876, 5897, '-171.0000', '6.7859', '6.7859', '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 (99581, '2022-07-12', 1602, 93970, 5876, NULL, '172.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-172.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99582, '2022-07-12', 9821, 93971, 5876, NULL, '1.0000', '1.4500', '1.4500', '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 (99583, '2022-07-12', 1888, 93972, 5876, 14663, '-11.0000', '134.8400', '134.8400', '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 (99584, '2022-07-12', 1888, 93972, 5876, NULL, '12.0000', '134.8400', '134.8400', '25.0000', '25.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 (99585, '2022-07-12', 2858, 93973, 5876, 17772, '-104.0000', '1.0000', '1.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 (99586, '2022-07-12', 2858, 93973, 5876, NULL, '105.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99587, '2022-07-12', 2479, 93974, 5876, 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 (99588, '2022-07-12', 2169, 93975, 5876, 10737, '-179.0000', '3.8397', '3.8397', '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 (99589, '2022-07-12', 2169, 93975, 5876, NULL, '180.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-180.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99590, '2022-07-12', 9895, 93976, 5876, 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 (99591, '2022-07-12', 8164, 93977, 5877, NULL, '1.0000', '15.5606', '15.5606', '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 (99592, '2022-07-12', 9888, 93978, 5877, NULL, '1.0000', '19.8000', '19.8000', '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 (99593, '2022-07-12', 2290, 93979, 5877, 58486, '1.0000', '10.2600', '10.2600', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99594, '2022-07-12', 7877, 93980, 5877, 58451, '1.0000', '-69.7916', '-69.7916', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99595, '2022-07-12', 9620, 93981, 5877, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99596, '2022-07-12', 7852, 93982, 5877, NULL, '1.0000', '67.7849', '67.7849', '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 (99597, '2022-07-12', 7514, 93983, 5877, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99598, '2022-07-12', 7522, 93984, 5877, 58491, '1.0000', '229.5780', '229.5780', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99599, '2022-07-12', 7859, 93985, 5877, 57172, '1.0000', '13.2900', '13.2900', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99600, '2022-07-12', 8596, 93986, 5877, NULL, '1.0000', '39.8982', '39.8982', '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 (99601, '2022-07-12', 8407, 93987, 5877, 48379, '1.0000', '1.6726', '1.6726', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99602, '2022-07-12', 9711, 93988, 5877, NULL, '1.0000', '5.2800', '5.2800', '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 (99603, '2022-07-12', 7704, 93989, 5877, NULL, '1.0000', '-1.5625', '-1.5625', '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 (99604, '2022-07-12', 7547, 93990, 5877, NULL, '4.0000', '-0.3235', '-0.3235', '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 (99605, '2022-07-12', 7887, 93991, 5877, NULL, '1.0000', '17.9949', '17.9949', '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 (99606, '2022-07-12', 9803, 93992, 5877, 50387, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99607, '2022-07-12', 8903, 93993, 5877, 50380, '1.0000', '8.3558', '8.3558', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99608, '2022-07-12', 7473, 93994, 5877, 58462, '2.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99609, '2022-07-12', 8395, 93995, 5877, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99610, '2022-07-12', 7560, 93996, 5877, 58444, '1.0000', '41.8352', '41.8352', '56.0000', '56.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99611, '2022-07-12', 7518, 93997, 5877, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99612, '2022-07-12', 7864, 93998, 5877, 57170, '2.0000', '20.7755', '20.7755', '30.0000', '30.0000', '8.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99613, '2022-07-12', 8063, 93999, 5877, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '81.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99614, '2022-07-12', 8186, 94000, 5877, NULL, '3.0000', '1.5626', '1.5626', '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 (99615, '2022-07-12', 7784, 94001, 5877, NULL, '1.0000', '1.9939', '1.9939', '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 (99616, '2022-07-12', 8878, 94002, 5877, 58413, '1.0000', '0.2806', '0.2806', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99617, '2022-07-12', 7345, 94003, 5877, 56149, '1.0000', '74.1700', '74.1700', '67.0000', '67.0000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99618, '2022-07-12', 9274, 94004, 5877, 58409, '1.0000', '5.5017', '5.5017', '7.5000', '7.5000', '12.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99619, '2022-07-12', 2315, 94005, 5877, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99620, '2022-07-12', 7674, 94006, 5877, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99621, '2022-07-12', 7743, 94007, 5877, NULL, '1.0000', '919779.6853', '919779.6853', '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 (99622, '2022-07-12', 2104, 94008, 5877, NULL, '2.0000', '0.2000', '0.2000', '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 (99623, '2022-07-12', 9946, 94009, 5877, 58505, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99624, '2022-07-12', 7933, 94010, 5877, 57614, '3.0000', '1.0292', '1.0292', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99625, '2022-07-12', 7930, 94011, 5877, 50993, '1.0000', '1.5333', '1.5333', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99626, '2022-07-12', 2506, 94012, 5877, 58394, '1.0000', '4.6736', '4.6736', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99627, '2022-07-12', 9804, 94013, 5877, 55112, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99628, '2022-07-12', 7472, 94014, 5877, 58398, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99629, '2022-07-12', 7491, 94015, 5877, NULL, '1.0000', '-83.8024', '-83.8024', '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 (99630, '2022-07-12', 7457, 94016, 5877, 57615, '1.0000', '4.4780', '4.4780', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99631, '2022-07-12', 7641, 94017, 5877, 58496, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99632, '2022-07-12', 7672, 94018, 5877, 58391, '1.0000', '0.3513', '0.3513', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99633, '2022-07-12', 7518, 94019, 5877, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99634, '2022-07-12', 7411, 94020, 5877, 58390, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99635, '2022-07-12', 8200, 94021, 5877, 56669, '1.0000', '8.7746', '8.7746', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99636, '2022-07-12', 1935, 94022, 5877, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '106.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99637, '2022-07-12', 9729, 94023, 5877, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99638, '2022-07-12', 9747, 94024, 5877, 56183, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99639, '2022-07-12', 8949, 94025, 5877, NULL, '1.0000', '6.7080', '6.7080', '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 (99640, '2022-07-12', 7385, 94026, 5877, 58497, '5.0000', '6.6482', '6.6482', '4.0000', '4.0000', '86.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99641, '2022-07-12', 7675, 94027, 5877, NULL, '1.0000', '494.1540', '494.1540', '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 (99642, '2022-07-12', 9943, 94028, 5877, 57189, '1.0000', '10.5500', '10.5500', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99643, '2022-07-12', 8745, 94029, 5877, 57514, '1.0000', '11.9707', '11.9707', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99644, '2022-07-12', 1557, 94030, 5877, 57609, '1.0000', '8.0725', '8.0725', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99645, '2022-07-12', 7629, 94031, 5878, NULL, '1.0000', '-874.7500', '-874.7500', '246.5000', '246.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99646, '2022-07-12', 7803, 94032, 5878, NULL, '1.0000', '1.8200', '1.8200', '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 (99647, '2022-07-12', 7514, 94033, 5878, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99648, '2022-07-12', 7885, 94034, 5878, 57594, '1.0000', '81.2000', '81.2000', '107.5000', '107.5000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99649, '2022-07-12', 7704, 94035, 5878, NULL, '1.0000', '-1.5625', '-1.5625', '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 (99650, '2022-07-12', 7650, 94036, 5878, 58461, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99651, '2022-07-12', 2070, 94037, 5878, 58459, '1.0000', '5.8000', '5.8000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99652, '2022-07-12', 8061, 94038, 5878, 57544, '1.0000', '31.2141', '31.2141', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99653, '2022-07-12', 1470, 94039, 5879, 57671, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99654, '2022-07-12', 8165, 94040, 5879, 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 (99655, '2022-07-12', 2656, 94041, 5879, 58671, '3.0000', '-1.8718', '-1.8718', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99656, '2022-07-12', 1748, 94042, 5879, NULL, '2.0000', '0.3200', '0.3200', '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 (99657, '2022-07-12', 2664, 94043, 5879, NULL, '1.0000', '11.4500', '11.4500', '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 (99658, '2022-07-12', 2289, 94044, 5879, NULL, '1.0000', '0.3611', '0.3611', '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 (99659, '2022-07-12', 1888, 94045, 5879, 55945, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99660, '2022-07-12', 1715, 94046, 5879, 58213, '1.0000', '10.1667', '10.1667', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99661, '2022-07-12', 2169, 94047, 5879, 58135, '3.0000', '1.6818', '1.6818', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99662, '2022-07-12', 7869, 94048, 5879, NULL, '1.0000', '4.2900', '4.2900', '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 (99663, '2022-07-12', 7339, 94049, 5879, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (99664, '2022-07-12', 8011, 94050, 5879, NULL, '1.0000', '0.9500', '0.9500', '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 (99665, '2022-07-12', 8164, 94051, 5879, NULL, '1.0000', '3.1200', '3.1200', '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 (99666, '2022-07-12', 2656, 94052, 5879, 58671, '2.0000', '-1.8718', '-1.8718', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99667, '2022-07-12', 2354, 94053, 5879, NULL, '1.0000', '28.4264', '28.4264', '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 (99668, '2022-07-12', 1787, 94054, 5879, NULL, '1.0000', '0.5000', '0.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 (99669, '2022-07-12', 7398, 94055, 5879, NULL, '6.0000', '143.5000', '143.5000', '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 (99670, '2022-07-12', 2169, 94056, 5879, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99671, '2022-07-12', 7825, 94057, 5879, NULL, '1.0000', '6.5000', '6.5000', '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 (99672, '2022-07-12', 9737, 94058, 5879, NULL, '1.0000', '9.4750', '9.4750', '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 (99673, '2022-07-12', 9834, 94059, 5879, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99674, '2022-07-12', 9834, 94059, 5879, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99675, '2022-07-12', 7564, 94060, 5879, NULL, '1.0000', '0.6400', '0.6400', '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 (99676, '2022-07-12', 1855, 94061, 5879, NULL, '2.0000', '1.4615', '1.4615', '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 (99677, '2022-07-12', 2617, 94062, 5879, NULL, '1.0000', '5.1800', '5.1800', '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 (99678, '2022-07-12', 1571, 94063, 5879, NULL, '1.0000', '308.7500', '308.7500', '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 (99679, '2022-07-12', 1840, 94064, 5879, NULL, '1.0000', '0.2400', '0.2400', '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 (99680, '2022-07-12', 1841, 94065, 5879, NULL, '1.0000', '0.7630', '0.7630', '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 (99681, '2022-07-12', 1999, 94066, 5879, 51936, '1.0000', '-2.3941', '-2.3941', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99682, '2022-07-12', 9834, 94067, 5879, 55944, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99683, '2022-07-12', 7514, 94068, 5879, NULL, '1.0000', '2.2500', '2.2500', '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 (99684, '2022-07-12', 1674, 94069, 5879, 55628, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99685, '2022-07-12', 7579, 94070, 5879, NULL, '1.0000', '15.0000', '15.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 (99686, '2022-07-12', 2754, 94071, 5879, NULL, '2.0000', '0.0800', '0.0800', '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 (99687, '2022-07-12', 2964, 94072, 5879, NULL, '1.0000', '181.2143', '181.2143', '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 (99688, '2022-07-12', 1781, 94073, 5879, 57775, '1.0000', '5.8614', '5.8614', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99689, '2022-07-12', 7593, 94074, 5879, NULL, '1.0000', '0.8000', '0.8000', '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 (99690, '2022-07-12', 1306, 94075, 5879, 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 (99691, '2022-07-12', 1857, 94076, 5879, 58221, '1.0000', '-332.5000', '-332.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99692, '2022-07-12', 7398, 94077, 5879, NULL, '1.0000', '143.5000', '143.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 (99693, '2022-07-12', 2366, 94078, 5879, NULL, '2.0000', '-51.4778', '-51.4778', '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 (99694, '2022-07-12', 1912, 94079, 5879, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99695, '2022-07-12', 1665, 94080, 5879, 55698, '2.0000', '1.1685', '1.1685', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99696, '2022-07-12', 1804, 94081, 5879, NULL, '1.0000', '4.3180', '4.3180', '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 (99697, '2022-07-12', 9503, 94082, 5879, 33350, '1.0000', '24.1775', '24.1775', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99698, '2022-07-12', 2363, 94083, 5879, NULL, '1.0000', '4.9400', '4.9400', '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 (99699, '2022-07-12', 1501, 94084, 5879, NULL, '1.0000', '0.6299', '0.6299', '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 (99700, '2022-07-12', 2009, 94085, 5879, 57111, '1.0000', '17.9524', '17.9524', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99701, '2022-07-12', 9732, 94086, 5879, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99702, '2022-07-12', 1912, 94087, 5879, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99703, '2022-07-12', 2169, 94088, 5879, 58135, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99704, '2022-07-12', 9867, 94089, 5879, 55528, '4.0000', '12.9429', '12.9429', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99705, '2022-07-12', 1912, 94090, 5879, 57704, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99706, '2022-07-12', 1580, 94091, 5879, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99707, '2022-07-12', 7745, 94092, 5879, 58190, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99708, '2022-07-12', 7641, 94093, 5879, NULL, '1.0000', '1.9000', '1.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 (99709, '2022-07-12', 9831, 94094, 5879, 58693, '1.0000', '1.6952', '1.6952', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99710, '2022-07-12', 2135, 94095, 5879, NULL, '1.0000', '-0.2588', '-0.2588', '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 (99711, '2022-07-12', 2409, 94096, 5879, 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 (99712, '2022-07-12', 8595, 94097, 5879, NULL, '1.0000', '-3.2120', '-3.2120', '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 (99713, '2022-07-12', 7483, 94098, 5879, NULL, '1.0000', '0.4200', '0.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 (99714, '2022-07-12', 1787, 94099, 5879, NULL, '1.0000', '0.5000', '0.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 (99715, '2022-07-12', 2244, 94100, 5879, NULL, '1.0000', '6.8500', '6.8500', '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 (99716, '2022-07-12', 7411, 94101, 5879, NULL, '1.0000', '1.2819', '1.2819', '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 (99717, '2022-07-12', 2384, 94102, 5879, NULL, '2.0000', '-0.4538', '-0.4538', '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 (99718, '2022-07-12', 1521, 94103, 5879, NULL, '1.0000', '-217.8500', '-217.8500', '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 (99719, '2022-07-12', 2821, 94104, 5879, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99720, '2022-07-12', 2416, 94105, 5879, 58697, '1.0000', '1.3570', '1.3570', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99721, '2022-07-12', 1394, 94106, 5879, 55146, '1.0000', '10.7744', '10.7744', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99722, '2022-07-12', 9831, 94107, 5879, 58693, '1.0000', '1.6952', '1.6952', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99723, '2022-07-12', 1394, 94108, 5879, 55146, '1.0000', '10.7744', '10.7744', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99724, '2022-07-12', 8595, 94109, 5879, NULL, '1.0000', '-3.2120', '-3.2120', '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 (99725, '2022-07-12', 9831, 94110, 5879, 58693, '2.0000', '1.6952', '1.6952', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99726, '2022-07-12', 7398, 94111, 5879, NULL, '2.0000', '143.5000', '143.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 (99727, '2022-07-12', 7819, 94112, 5879, NULL, '1.0000', '10.0999', '10.0999', '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 (99728, '2022-07-12', 2237, 94113, 5879, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99729, '2022-07-12', 9828, 94114, 5879, NULL, '2.0000', '2.9100', '2.9100', '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 (99730, '2022-07-12', 1541, 94115, 5879, 48603, '1.0000', '19.0000', '19.0000', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99731, '2022-07-12', 2384, 94116, 5879, NULL, '2.0000', '-0.4538', '-0.4538', '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 (99732, '2022-07-12', 1311, 94117, 5879, 57745, '3.0000', '0.3700', '0.3700', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99733, '2022-07-12', 1311, 94117, 5879, 52210, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99734, '2022-07-12', 1592, 94118, 5879, 54875, '1.0000', '39.3500', '39.3500', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99735, '2022-07-12', 9831, 94119, 5879, 58693, '2.0000', '1.6952', '1.6952', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99736, '2022-07-12', 1521, 94120, 5879, NULL, '1.0000', '-217.8500', '-217.8500', '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 (99737, '2022-07-12', 9732, 94121, 5879, 54926, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99738, '2022-07-12', 7674, 94122, 5880, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99739, '2022-07-12', 7954, 94123, 5880, NULL, '1.0000', '-15800.4581', '-15800.4581', '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 (99740, '2022-07-12', 8097, 94124, 5880, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99741, '2022-07-12', 7621, 94125, 5880, 57433, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99742, '2022-07-12', 7848, 94126, 5880, NULL, '1.0000', '-223.3573', '-223.3573', '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 (99743, '2022-07-12', 2248, 94127, 5881, 56180, '1.0000', '3.4528', '3.4528', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99744, '2022-07-12', 1651, 94128, 5882, 58584, '1.0000', '7.9440', '7.9440', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99745, '2022-07-12', 2342, 94129, 5882, 55488, '3.0000', '2.0954', '2.0954', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99746, '2022-07-12', 2135, 94130, 5882, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99747, '2022-07-12', 2379, 94131, 5882, 58652, '1.0000', '2.0012', '2.0012', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99748, '2022-07-12', 2315, 94132, 5882, 3069, '3.0000', '0.3300', '0.3300', '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 (99749, '2022-07-12', 7777, 94133, 5882, 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 (99750, '2022-07-12', 2858, 94134, 5882, 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 (99751, '2022-07-12', 2169, 94135, 5882, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99752, '2022-07-12', 7590, 94136, 5882, 54617, '1.0000', '3.0718', '3.0718', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99753, '2022-07-12', 9775, 94137, 5882, 57983, '1.0000', '10.4000', '10.4000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99754, '2022-07-12', 1470, 94138, 5882, 57964, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99755, '2022-07-12', 1857, 94139, 5882, 55779, '1.0000', '-7.6688', '-7.6688', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99756, '2022-07-12', 1863, 94140, 5882, 58630, '2.0000', '1.3605', '1.3605', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99757, '2022-07-12', 2315, 94141, 5882, 3069, '1.0000', '0.3300', '0.3300', '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 (99758, '2022-07-12', 9747, 94142, 5882, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99759, '2022-07-12', 8677, 94143, 5882, 58649, '1.0000', '2.1372', '2.1372', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99760, '2022-07-12', 9729, 94144, 5882, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99761, '2022-07-12', 8012, 94145, 5882, NULL, '3.0000', '0.8400', '0.8400', '4.2000', '4.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 (99762, '2022-07-12', 1859, 94146, 5882, 57950, '1.0000', '49.8495', '49.8495', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99763, '2022-07-12', 2380, 94147, 5882, 56885, '2.0000', '45.0800', '45.0800', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99764, '2022-07-12', 2058, 94148, 5882, 7513, '1.0000', '10.0000', '10.0000', '40.0000', '40.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 (99765, '2022-07-12', 2169, 94149, 5882, 57981, '2.0000', '1.3557', '1.3557', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99766, '2022-07-12', 2643, 94150, 5882, 58009, '1.0000', '0.9691', '0.9691', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99767, '2022-07-12', 9732, 94151, 5882, 55495, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99768, '2022-07-12', 1892, 94152, 5882, 58588, '1.0000', '0.5200', '0.5200', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99769, '2022-07-12', 1837, 94153, 5882, 56224, '1.0000', '0.5767', '0.5767', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99770, '2022-07-12', 2242, 94154, 5882, 55869, '2.0000', '0.7167', '0.7167', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99771, '2022-07-12', 8097, 94155, 5882, NULL, '3.0000', '7.6800', '7.6800', '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 (99772, '2022-07-12', 1435, 94156, 5882, 56903, '1.0000', '21.9211', '21.9211', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99773, '2022-07-12', 1432, 94157, 5882, 58643, '1.0000', '11.0638', '11.0638', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99774, '2022-07-12', 2858, 94158, 5882, 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 (99775, '2022-07-12', 2169, 94159, 5882, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99776, '2022-07-12', 7703, 94160, 5882, NULL, '1.0000', '0.6500', '0.6500', '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 (99777, '2022-07-12', 1665, 94161, 5882, 57952, '1.0000', '1.1816', '1.1816', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99778, '2022-07-12', 7917, 94162, 5882, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99779, '2022-07-12', 1643, 94163, 5882, 56219, '1.0000', '-30.5000', '-30.5000', '56.0000', '56.0000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99780, '2022-07-12', 8677, 94164, 5882, 58649, '1.0000', '2.1372', '2.1372', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99781, '2022-07-12', 1855, 94165, 5882, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99782, '2022-07-12', 2135, 94166, 5882, 52322, '1.0000', '2.2504', '2.2504', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99783, '2022-07-12', 1602, 94167, 5882, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99784, '2022-07-12', 1864, 94168, 5882, 55788, '1.0000', '7.5750', '7.5750', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99785, '2022-07-12', 2384, 94169, 5882, 58658, '1.0000', '0.4170', '0.4170', '0.8000', '0.8000', '99.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99786, '2022-07-12', 8736, 94170, 5882, 55796, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99787, '2022-07-12', 7562, 94171, 5882, NULL, '2.0000', '7.6300', '7.6300', '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 (99788, '2022-07-12', 8065, 94172, 5882, NULL, '1.0000', '-39.2200', '-39.2200', '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 (99789, '2022-07-12', 1863, 94173, 5882, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99790, '2022-07-12', 9743, 94174, 5883, 58138, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99791, '2022-07-12', 7944, 94175, 5883, 57689, '2.0000', '2.0100', '2.0100', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99792, '2022-07-12', 1695, 94176, 5883, 58122, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99793, '2022-07-12', 2315, 94177, 5883, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99794, '2022-07-12', 7411, 94178, 5883, NULL, '1.0000', '1.2819', '1.2819', '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 (99795, '2022-07-12', 7385, 94179, 5883, 58142, '10.0000', '3.1710', '3.1710', '4.0000', '4.0000', '173.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99796, '2022-07-12', 9942, 94180, 5883, NULL, '1.0000', '9.1000', '9.1000', '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 (99797, '2022-07-12', 9683, 94181, 5883, 58676, '1.0000', '2.9700', '2.9700', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99798, '2022-07-12', 3029, 94182, 5883, 58131, '1.0000', '-67.9257', '-67.9257', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99799, '2022-07-12', 9832, 94183, 5883, 58694, '2.0000', '1.7757', '1.7757', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99800, '2022-07-12', 2335, 94184, 5883, NULL, '1.0000', '18.9000', '18.9000', '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 (99801, '2022-07-12', 2943, 94185, 5883, 58199, '1.0000', '3.7503', '3.7503', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99802, '2022-07-13', 2384, 94186, 5884, NULL, '3.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (99803, '2022-07-13', 2416, 94187, 5884, 58697, '1.0000', '1.3570', '1.3570', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99804, '2022-07-13', 2293, 94188, 5884, NULL, '3.0000', '-17.4320', '-17.4320', '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 (99805, '2022-07-13', 9725, 94189, 5884, 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 (99806, '2022-07-13', 8017, 94190, 5884, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99807, '2022-07-13', 9959, 94191, 5884, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99808, '2022-07-13', 1935, 94192, 5884, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99809, '2022-07-13', 7406, 94193, 5884, NULL, '1.0000', '2.3750', '2.3750', '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 (99810, '2022-07-13', 1703, 94194, 5884, 58237, '1.0000', '9.2200', '9.2200', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99811, '2022-07-13', 2379, 94195, 5884, NULL, '1.0000', '-14.1447', '-14.1447', '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 (99812, '2022-07-13', 2135, 94196, 5884, NULL, '1.0000', '-0.2588', '-0.2588', '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 (99813, '2022-07-13', 7819, 94197, 5884, NULL, '1.0000', '10.0999', '10.0999', '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 (99814, '2022-07-13', 2169, 94198, 5884, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99815, '2022-07-13', 1935, 94199, 5884, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99816, '2022-07-13', 1863, 94200, 5884, 57733, '2.0000', '1.4714', '1.4714', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99817, '2022-07-13', 1689, 94201, 5884, 58150, '1.0000', '15.6116', '15.6116', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99818, '2022-07-13', 1529, 94202, 5884, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99819, '2022-07-13', 9725, 94203, 5884, 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 (99820, '2022-07-13', 2656, 94204, 5884, 58671, '1.0000', '-1.8718', '-1.8718', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99821, '2022-07-13', 2643, 94205, 5884, 58698, '1.0000', '1.0273', '1.0273', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99822, '2022-07-13', 7590, 94206, 5884, 55548, '1.0000', '2.7957', '2.7957', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99823, '2022-07-13', 2694, 94207, 5884, 50233, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99824, '2022-07-13', 2728, 94208, 5884, 19354, '3.0000', '0.8000', '0.8000', '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 (99825, '2022-07-13', 1864, 94209, 5884, 34594, '1.0000', '6.2625', '6.2625', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99826, '2022-07-13', 1695, 94210, 5884, 58122, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99827, '2022-07-13', 2386, 94211, 5884, 56437, '1.0000', '2.8183', '2.8183', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99828, '2022-07-13', 2169, 94212, 5884, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99829, '2022-07-13', 2643, 94213, 5884, 58698, '2.0000', '1.0273', '1.0273', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99830, '2022-07-13', 2352, 94214, 5884, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (99831, '2022-07-13', 8775, 94215, 5884, 57094, '1.0000', '1.9789', '1.9789', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99832, '2022-07-13', 9695, 94216, 5884, 58696, '1.0000', '5.4919', '5.4919', '8.0000', '8.0000', '32.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99833, '2022-07-13', 1863, 94217, 5884, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99834, '2022-07-13', 7848, 94218, 5884, NULL, '1.0000', '15.0000', '15.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 (99835, '2022-07-13', 1935, 94219, 5884, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99836, '2022-07-13', 1704, 94220, 5884, NULL, '1.0000', '27.2300', '27.2300', '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 (99837, '2022-07-13', 7652, 94221, 5884, NULL, '2.0000', '40.3000', '40.3000', '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 (99838, '2022-07-13', 9030, 94222, 5884, 57805, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99839, '2022-07-13', 2284, 94223, 5884, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99840, '2022-07-13', 8746, 94224, 5884, 58687, '1.0000', '3.5423', '3.5423', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99841, '2022-07-13', 2287, 94225, 5884, 57710, '3.0000', '2.3233', '2.3233', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99842, '2022-07-13', 8171, 94226, 5884, 48622, '1.0000', '3.9900', '3.9900', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99843, '2022-07-13', 1863, 94227, 5884, 57733, '2.0000', '1.4714', '1.4714', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99844, '2022-07-13', 1519, 94228, 5884, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99845, '2022-07-13', 2287, 94229, 5884, 57710, '3.0000', '2.3233', '2.3233', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99846, '2022-07-13', 9828, 94230, 5884, NULL, '1.0000', '2.9100', '2.9100', '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 (99847, '2022-07-13', 9959, 94231, 5885, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99848, '2022-07-13', 2315, 94232, 5885, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99849, '2022-07-13', 1699, 94233, 5885, NULL, '1.0000', '3.2000', '3.2000', '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 (99850, '2022-07-13', 7506, 94234, 5885, NULL, '1.0000', '15.0000', '15.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 (99851, '2022-07-13', 1841, 94235, 5885, NULL, '1.0000', '0.7630', '0.7630', '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 (99852, '2022-07-13', 2104, 94236, 5885, 22380, '2.0000', '0.2000', '0.2000', '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 (99853, '2022-07-13', 2287, 94237, 5885, 57710, '3.0000', '2.3233', '2.3233', '4.0000', '4.0000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99854, '2022-07-13', 2169, 94238, 5885, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99855, '2022-07-13', 1840, 94239, 5885, NULL, '1.0000', '0.2400', '0.2400', '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 (99856, '2022-07-13', 7748, 94240, 5886, NULL, '1.0000', '7.3000', '7.3000', '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 (99857, '2022-07-13', 7708, 94241, 5886, 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 (99858, '2022-07-13', 1647, 94242, 5886, 3218, '-22.0000', '4.7200', '4.7200', '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 (99859, '2022-07-13', 1647, 94242, 5886, NULL, '23.0000', '4.7200', '4.7200', '8.0000', '8.0000', '-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 (99860, '2022-07-13', 3001, 94243, 5886, NULL, '1.0000', '1.5000', '1.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 (99861, '2022-07-13', 7412, 94244, 5886, NULL, '2.0000', '1.5200', '1.5200', '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 (99862, '2022-07-13', 1837, 94245, 5886, NULL, '4.0000', '0.9642', '0.9642', '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 (99863, '2022-07-13', 2506, 94246, 5886, 16244, '-25.0000', '3.4900', '3.4900', '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 (99864, '2022-07-13', 2506, 94246, 5886, NULL, '26.0000', '3.4900', '3.4900', '6.5000', '6.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 (99865, '2022-07-13', 7634, 94247, 5886, NULL, '1.0000', '1.8000', '1.8000', '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 (99866, '2022-07-13', 7353, 94248, 5886, NULL, '2.0000', '0.1900', '0.1900', '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 (99867, '2022-07-13', 1703, 94249, 5886, 5487, '-6.0000', '9.2200', '9.2200', '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 (99868, '2022-07-13', 1703, 94249, 5886, NULL, '7.0000', '9.2200', '9.2200', '12.5000', '12.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 (99869, '2022-07-13', 8622, 94250, 5886, 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 (99870, '2022-07-13', 7708, 94251, 5886, 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 (99871, '2022-07-13', 8878, 94252, 5886, NULL, '1.0000', '6.6700', '6.6700', '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 (99872, '2022-07-13', 7657, 94253, 5886, NULL, '1.0000', '11.3200', '11.3200', '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 (99873, '2022-07-13', 7412, 94254, 5886, NULL, '1.0000', '1.5200', '1.5200', '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 (99874, '2022-07-13', 1935, 94255, 5886, 5586, '-177.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 (99875, '2022-07-13', 1935, 94255, 5886, NULL, '178.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-178.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99876, '2022-07-13', 8011, 94256, 5886, 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 (99877, '2022-07-13', 2256, 94257, 5886, 2793, '-8.0000', '12.7400', '12.7400', '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 (99878, '2022-07-13', 2256, 94257, 5886, NULL, '9.0000', '12.7400', '12.7400', '22.0000', '22.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 (99879, '2022-07-13', 9100, 94258, 5886, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99880, '2022-07-13', 1703, 94259, 5886, 5487, '-6.0000', '9.2200', '9.2200', '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 (99881, '2022-07-13', 1703, 94259, 5886, NULL, '7.0000', '9.2200', '9.2200', '12.5000', '12.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 (99882, '2022-07-13', 7774, 94260, 5886, NULL, '1.0000', '3.3000', '3.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 (99883, '2022-07-13', 8031, 94261, 5886, NULL, '1.0000', '32.0000', '32.0000', '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 (99884, '2022-07-13', 2315, 94262, 5886, 2735, '-537.0000', '0.3300', '0.3300', '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 (99885, '2022-07-13', 2315, 94262, 5886, NULL, '539.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-539.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99886, '2022-07-13', 7741, 94263, 5886, NULL, '1.0000', '1.2000', '1.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 (99887, '2022-07-13', 9412, 94264, 5886, NULL, '1.0000', '25.0000', '25.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 (99888, '2022-07-13', 8061, 94265, 5886, NULL, '1.0000', '6.5000', '6.5000', '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 (99889, '2022-07-13', 1856, 94266, 5886, NULL, '1.0000', '4.2500', '4.2500', '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 (99890, '2022-07-13', 2315, 94267, 5886, 2735, '-537.0000', '0.3300', '0.3300', '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 (99891, '2022-07-13', 2315, 94267, 5886, NULL, '539.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-539.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99892, '2022-07-13', 7650, 94268, 5886, NULL, '1.0000', '0.8900', '0.8900', '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 (99893, '2022-07-13', 8084, 94269, 5886, NULL, '1.0000', '12.7000', '12.7000', '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 (99894, '2022-07-13', 7852, 94270, 5886, NULL, '1.0000', '15.0000', '15.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 (99895, '2022-07-13', 1333, 94271, 5886, NULL, '6.0000', '0.5500', '0.5500', '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 (99896, '2022-07-13', 9800, 94272, 5886, NULL, '1.0000', '14.0000', '14.0000', '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 (99897, '2022-07-13', 7899, 94273, 5886, NULL, '1.0000', '3.3000', '3.3000', '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 (99898, '2022-07-13', 9894, 94274, 5886, 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 (99899, '2022-07-13', 8315, 94275, 5886, NULL, '1.0000', '14.3500', '14.3500', '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 (99900, '2022-07-13', 7660, 94276, 5886, NULL, '1.0000', '3.6000', '3.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 (99901, '2022-07-13', 7862, 94277, 5886, NULL, '1.0000', '3.8500', '3.8500', '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 (99902, '2022-07-13', 8062, 94278, 5886, NULL, '4.0000', '4.8200', '4.8200', '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 (99903, '2022-07-13', 9828, 94279, 5887, NULL, '1.0000', '2.9100', '2.9100', '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 (99904, '2022-07-13', 1602, 94280, 5887, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99905, '2022-07-13', 2273, 94281, 5887, 58148, '1.0000', '3.0473', '3.0473', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99906, '2022-07-13', 2546, 94282, 5887, NULL, '1.0000', '117.1000', '117.1000', '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 (99907, '2022-07-13', 2649, 94283, 5887, 56466, '1.0000', '99.3000', '99.3000', '131.0000', '131.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99908, '2022-07-13', 9683, 94284, 5887, 58676, '1.0000', '2.9700', '2.9700', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99909, '2022-07-13', 9832, 94285, 5887, 58694, '1.0000', '1.7757', '1.7757', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99910, '2022-07-13', 3029, 94286, 5888, 58131, '1.0000', '-67.9257', '-67.9257', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99911, '2022-07-13', 3017, 94287, 5888, 56392, '1.0000', '3.9753', '3.9753', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99912, '2022-07-13', 2283, 94288, 5888, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99913, '2022-07-13', 8746, 94289, 5888, 58687, '1.0000', '3.5423', '3.5423', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99914, '2022-07-13', 1863, 94290, 5888, 57733, '3.0000', '1.4714', '1.4714', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99915, '2022-07-13', 8068, 94291, 5888, NULL, '1.0000', '8.7900', '8.7900', '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 (99916, '2022-07-13', 1342, 94292, 5888, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99917, '2022-07-13', 9748, 94293, 5888, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99918, '2022-07-13', 9219, 94294, 5888, NULL, '1.0000', '6.3000', '6.3000', '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 (99919, '2022-07-13', 9934, 94295, 5888, 57115, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99920, '2022-07-13', 7658, 94296, 5888, NULL, '10.0000', '10.1500', '10.1500', '3.5000', '3.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 (99921, '2022-07-13', 1602, 94297, 5888, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99922, '2022-07-13', 1772, 94298, 5888, 58175, '1.0000', '5.9598', '5.9598', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99923, '2022-07-13', 1602, 94299, 5888, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99924, '2022-07-13', 2135, 94300, 5888, NULL, '2.0000', '-0.2588', '-0.2588', '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 (99925, '2022-07-13', 9831, 94301, 5888, 58693, '1.0000', '1.6952', '1.6952', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99926, '2022-07-13', 2295, 94302, 5888, 57742, '4.0000', '1.4864', '1.4864', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99927, '2022-07-13', 2250, 94303, 5889, 2787, '-18.0000', '6.8900', '6.8900', '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 (99928, '2022-07-13', 2250, 94303, 5889, NULL, '19.0000', '6.8900', '6.8900', '12.5000', '12.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 (99929, '2022-07-13', 1884, 94304, 5889, 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 (99930, '2022-07-13', 9683, 94305, 5889, NULL, '1.0000', '3.1000', '3.1000', '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 (99931, '2022-07-13', 3057, 94306, 5889, NULL, '1.0000', '2.7000', '2.7000', '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 (99932, '2022-07-13', 7411, 94307, 5889, NULL, '1.0000', '1.3500', '1.3500', '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 (99933, '2022-07-13', 2379, 94308, 5889, 4032, '-72.0000', '1.5900', '1.5900', '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 (99934, '2022-07-13', 2379, 94308, 5889, NULL, '73.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99935, '2022-07-13', 1837, 94309, 5889, 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 (99936, '2022-07-13', 2642, 94310, 5889, 10573, '-22.0000', '9.2000', '9.2000', '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 (99937, '2022-07-13', 2642, 94310, 5889, NULL, '23.0000', '9.2000', '9.2000', '15.0000', '15.0000', '-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 (99938, '2022-07-13', 8744, 94311, 5889, NULL, '1.0000', '3.6600', '3.6600', '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 (99939, '2022-07-13', 9695, 94312, 5889, NULL, '1.0000', '4.5000', '4.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 (99940, '2022-07-13', 1580, 94313, 5889, 7598, '-60.0000', '0.9900', '0.9900', '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 (99941, '2022-07-13', 1580, 94313, 5889, NULL, '63.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99942, '2022-07-13', 2242, 94314, 5889, 3059, '-83.0000', '0.4800', '0.4800', '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 (99943, '2022-07-13', 2242, 94314, 5889, NULL, '86.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99944, '2022-07-13', 1871, 94315, 5889, 8223, '-277.0000', '24.5246', '24.5246', '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 (99945, '2022-07-13', 1871, 94315, 5889, NULL, '287.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-287.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99946, '2022-07-13', 9818, 94316, 5889, NULL, '1.0000', '1.5000', '1.5000', '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 (99947, '2022-07-13', 1828, 94317, 5889, NULL, '1.0000', '0.7300', '0.7300', '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 (99948, '2022-07-13', 2169, 94318, 5889, 10737, '-182.0000', '3.8397', '3.8397', '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 (99949, '2022-07-13', 2169, 94318, 5889, NULL, '183.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-183.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99950, '2022-07-13', 1702, 94319, 5889, 4499, '-13.0000', '14.9700', '14.9700', '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 (99951, '2022-07-13', 1702, 94319, 5889, NULL, '14.0000', '14.9700', '14.9700', '25.0000', '25.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 (99952, '2022-07-13', 1528, 94320, 5889, NULL, '3.0000', '38.6400', '38.6400', '8.5000', '8.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 (99953, '2022-07-13', 3017, 94321, 5889, NULL, '2.0000', '3.9000', '3.9000', '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 (99954, '2022-07-13', 3029, 94322, 5889, NULL, '1.0000', '4.7700', '4.7700', '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 (99955, '2022-07-13', 9763, 94323, 5889, NULL, '3.0000', '2.1000', '2.1000', '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 (99956, '2022-07-13', 9794, 94324, 5889, NULL, '1.0000', '1.0800', '1.0800', '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 (99957, '2022-07-13', 1426, 94325, 5889, 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 (99958, '2022-07-13', 1404, 94326, 5889, 22351, '1.0000', '9.0000', '9.0000', '12.0000', '12.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 (99959, '2022-07-13', 1411, 94327, 5889, NULL, '1.0000', '25.9000', '25.9000', '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 (99960, '2022-07-13', 2730, 94328, 5889, 19267, '3.0000', '1.2000', '1.2000', '2.0000', '2.0000', '26.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 (99961, '2022-07-13', 2734, 94329, 5889, 19311, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '2.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 (99962, '2022-07-13', 9800, 94330, 5889, NULL, '1.0000', '14.0000', '14.0000', '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 (99963, '2022-07-13', 9715, 94331, 5889, NULL, '1.0000', '9.4000', '9.4000', '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 (99964, '2022-07-13', 3057, 94332, 5889, NULL, '2.0000', '2.7000', '2.7000', '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 (99965, '2022-07-13', 2109, 94333, 5889, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '63.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 (99966, '2022-07-13', 8759, 94334, 5889, NULL, '1.0000', '6.5000', '6.5000', '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 (99967, '2022-07-13', 2730, 94335, 5889, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '28.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 (99968, '2022-07-13', 9915, 94336, 5889, 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 (99969, '2022-07-13', 7741, 94337, 5889, NULL, '1.0000', '1.2000', '1.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 (99970, '2022-07-13', 2916, 94338, 5889, 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 (99971, '2022-07-13', 2100, 94339, 5889, 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 (99972, '2022-07-13', 8203, 94340, 5890, NULL, '15.0000', '9.8000', '9.8000', '0.7000', '0.7000', '-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 (99973, '2022-07-13', 2237, 94341, 5891, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99974, '2022-07-13', 2384, 94342, 5891, NULL, '1.0000', '-0.4538', '-0.4538', '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 (99975, '2022-07-13', 2948, 94343, 5891, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99976, '2022-07-13', 7318, 94344, 5891, 48729, '1.0000', '10.6757', '10.6757', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99977, '2022-07-13', 9834, 94345, 5891, 54879, '2.0000', '1.4500', '1.4500', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99978, '2022-07-13', 9831, 94346, 5891, 58693, '2.0000', '1.6952', '1.6952', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99979, '2022-07-13', 7345, 94347, 5891, NULL, '1.0000', '50.9300', '50.9300', '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 (99980, '2022-07-13', 2315, 94348, 5891, 54963, '4.0000', '0.7701', '0.7701', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99981, '2022-07-13', 1307, 94349, 5891, NULL, '1.0000', '-59.9897', '-59.9897', '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 (99982, '2022-07-13', 2295, 94350, 5891, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99983, '2022-07-13', 2948, 94351, 5892, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99984, '2022-07-13', 1342, 94352, 5892, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99985, '2022-07-13', 1529, 94353, 5892, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99986, '2022-07-13', 7459, 94354, 5892, NULL, '1.0000', '-15.3118', '-15.3118', '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 (99987, '2022-07-13', 1772, 94355, 5892, 58175, '1.0000', '5.9598', '5.9598', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99988, '2022-07-13', 2699, 94356, 5892, NULL, '1.0000', '3.5000', '3.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 (99989, '2022-07-13', 1409, 94357, 5893, 54968, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99990, '2022-07-13', 1863, 94358, 5893, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99991, '2022-07-13', 2260, 94359, 5893, 54937, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99992, '2022-07-13', 2656, 94360, 5893, 58671, '1.0000', '-1.8718', '-1.8718', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99993, '2022-07-13', 2315, 94361, 5893, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99994, '2022-07-13', 2416, 94362, 5893, 58697, '1.0000', '1.3570', '1.3570', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99995, '2022-07-13', 1311, 94363, 5893, 52210, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99996, '2022-07-13', 1311, 94363, 5893, 49359, '1.0000', '0.3700', '0.3700', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99997, '2022-07-13', 1666, 94364, 5893, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99998, '2022-07-13', 1863, 94365, 5893, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99999, '2022-07-13', 1796, 94366, 5893, 55906, '1.0000', '2.8333', '2.8333', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100000, '2022-07-13', 9725, 94367, 5893, 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 (100001, '2022-07-13', 2643, 94368, 5893, 58698, '1.0000', '1.0273', '1.0273', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100002, '2022-07-13', 2295, 94369, 5893, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100003, '2022-07-13', 7459, 94370, 5893, NULL, '20.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (100004, '2022-07-13', 1339, 94371, 5894, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100005, '2022-07-13', 9089, 94372, 5894, 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 (100006, '2022-07-13', 9740, 94373, 5894, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '95.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100007, '2022-07-13', 7611, 94374, 5895, 57635, '1.0000', '12.5782', '12.5782', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100008, '2022-07-13', 9272, 94375, 5895, NULL, '1.0000', '3.1000', '3.1000', '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 (100009, '2022-07-13', 8924, 94376, 5895, 56549, '2.0000', '5.4429', '5.4429', '7.5000', '7.5000', '17.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100010, '2022-07-13', 7482, 94377, 5895, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100011, '2022-07-13', 7518, 94378, 5895, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100012, '2022-07-13', 9909, 94379, 5895, 56052, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100013, '2022-07-13', 7483, 94380, 5895, 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 (100014, '2022-07-13', 9390, 94381, 5895, NULL, '1.0000', '25.0000', '25.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 (100015, '2022-07-13', 7715, 94382, 5895, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100016, '2022-07-13', 8883, 94383, 5895, NULL, '4.0000', '56.5500', '56.5500', '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 (100017, '2022-07-13', 8063, 94384, 5895, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '80.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100018, '2022-07-13', 9689, 94385, 5895, 43436, '1.0000', '40.1400', '40.1400', '53.0000', '53.0000', '1.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100019, '2022-07-13', 7411, 94386, 5895, 58390, '4.0000', '1.4000', '1.4000', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100020, '2022-07-13', 7514, 94387, 5895, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100021, '2022-07-13', 8596, 94388, 5895, NULL, '1.0000', '39.8982', '39.8982', '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 (100022, '2022-07-13', 7564, 94389, 5895, 58477, '1.0000', '-222838.2780', '-222838.2780', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100023, '2022-07-13', 2506, 94390, 5895, 58394, '1.0000', '4.6736', '4.6736', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100024, '2022-07-13', 7444, 94391, 5895, 58399, '1.0000', '658.1680', '658.1680', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100025, '2022-07-13', 8000, 94392, 5895, 57616, '2.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100026, '2022-07-13', 7411, 94393, 5895, 58390, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100027, '2022-07-13', 9747, 94394, 5895, 56183, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100028, '2022-07-13', 7822, 94395, 5895, 58471, '1.0000', '13.2500', '13.2500', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100029, '2022-07-13', 9698, 94396, 5895, 51006, '1.0000', '7.4353', '7.4353', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100030, '2022-07-13', 9729, 94397, 5895, 56613, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100031, '2022-07-13', 7673, 94398, 5895, 56533, '1.0000', '16.3367', '16.3367', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100032, '2022-07-13', 9878, 94399, 5895, 57177, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100033, '2022-07-13', 2315, 94400, 5895, 57597, '2.0000', '0.7562', '0.7562', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100034, '2022-07-13', 8504, 94401, 5895, NULL, '1.0000', '-103.9000', '-103.9000', '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 (100035, '2022-07-13', 2255, 94402, 5895, NULL, '1.0000', '17.2026', '17.2026', '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 (100036, '2022-07-13', 7524, 94403, 5895, 57179, '2.0000', '4.5322', '4.5322', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100037, '2022-07-13', 2251, 94404, 5895, 56653, '1.0000', '12.5571', '12.5571', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100038, '2022-07-13', 7750, 94405, 5895, 56538, '1.0000', '43.7502', '43.7502', '61.0000', '61.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100039, '2022-07-13', 7859, 94406, 5895, 57172, '1.0000', '13.2900', '13.2900', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100040, '2022-07-13', 9634, 94407, 5895, 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 (100041, '2022-07-13', 8200, 94408, 5895, 56669, '1.0000', '8.7746', '8.7746', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100042, '2022-07-13', 8097, 94409, 5895, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100043, '2022-07-13', 2506, 94410, 5895, 58394, '1.0000', '4.6736', '4.6736', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100044, '2022-07-13', 9785, 94411, 5895, 53927, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100045, '2022-07-13', 1935, 94412, 5895, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '105.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100046, '2022-07-13', 7547, 94413, 5895, NULL, '4.0000', '-0.3235', '-0.3235', '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 (100047, '2022-07-13', 8925, 94414, 5895, 58435, '1.0000', '3.6864', '3.6864', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100048, '2022-07-13', 1501, 94415, 5895, 56582, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100049, '2022-07-13', 7857, 94416, 5895, 57174, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100050, '2022-07-13', 2315, 94417, 5895, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100051, '2022-07-13', 7820, 94418, 5895, 58492, '1.0000', '-3306.3000', '-3306.3000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100052, '2022-07-13', 2315, 94419, 5895, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100053, '2022-07-13', 2668, 94420, 5895, 34499, '1.0000', '7.9800', '7.9800', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100054, '2022-07-13', 1912, 94421, 5896, 54917, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100055, '2022-07-13', 9740, 94422, 5896, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100056, '2022-07-13', 2237, 94423, 5896, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100057, '2022-07-13', 9695, 94424, 5896, 58696, '1.0000', '5.4919', '5.4919', '8.0000', '8.0000', '31.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100058, '2022-07-13', 9831, 94425, 5896, 58693, '1.0000', '1.6952', '1.6952', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100059, '2022-07-13', 9832, 94426, 5896, 58694, '1.0000', '1.7757', '1.7757', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100060, '2022-07-13', 1974, 94427, 5896, 58045, '1.0000', '16.4444', '16.4444', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100061, '2022-07-13', 7379, 94428, 5897, NULL, '1.0000', '12.5100', '12.5100', '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 (100062, '2022-07-13', 1807, 94429, 5897, NULL, '2.0000', '34.9993', '34.9993', '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 (100063, '2022-07-13', 1510, 94430, 5897, 58227, '1.0000', '-13.8480', '-13.8480', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100064, '2022-07-13', 9960, 94431, 5897, NULL, '2.0000', '3.3000', '3.3000', '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 (100065, '2022-07-13', 2169, 94432, 5897, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100066, '2022-07-13', 8767, 94433, 5897, NULL, '1.0000', '8.5590', '8.5590', '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 (100067, '2022-07-13', 7741, 94434, 5898, 56896, '1.0000', '3.0439', '3.0439', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100068, '2022-07-13', 2293, 94435, 5898, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100069, '2022-07-13', 2169, 94436, 5898, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100070, '2022-07-13', 8052, 94437, 5898, NULL, '1.0000', '29.0000', '29.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 (100071, '2022-07-13', 2858, 94438, 5898, 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 (100072, '2022-07-13', 1602, 94439, 5898, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100073, '2022-07-13', 7358, 94440, 5898, NULL, '1.0000', '18.8000', '18.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 (100074, '2022-07-13', 1807, 94441, 5898, NULL, '3.0000', '5.3000', '5.3000', '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 (100075, '2022-07-13', 7917, 94442, 5898, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100076, '2022-07-13', 9721, 94443, 5898, NULL, '1.0000', '11.7000', '11.7000', '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 (100077, '2022-07-13', 1398, 94444, 5898, 58646, '1.0000', '9.2391', '9.2391', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100078, '2022-07-13', 9695, 94445, 5898, 58550, '1.0000', '5.7386', '5.7386', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100079, '2022-07-13', 2604, 94446, 5898, 40184, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '1.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100080, '2022-07-13', 2240, 94447, 5898, 57971, '1.0000', '38.2400', '38.2400', '53.0000', '53.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100081, '2022-07-13', 2547, 94448, 5898, 49543, '1.0000', '9.4412', '9.4412', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100082, '2022-07-13', 7927, 94449, 5898, NULL, '1.0000', '11.8000', '11.8000', '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 (100083, '2022-07-13', 9940, 94450, 5898, 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 (100084, '2022-07-13', 1660, 94451, 5898, 56969, '1.0000', '75.8375', '75.8375', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100085, '2022-07-13', 1851, 94452, 5898, 56922, '1.0000', '13.1998', '13.1998', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100086, '2022-07-13', 2379, 94453, 5898, 58652, '1.0000', '2.0012', '2.0012', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100087, '2022-07-13', 2169, 94454, 5898, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100088, '2022-07-13', 1816, 94455, 5898, 57984, '1.0000', '20.2957', '20.2957', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100089, '2022-07-13', 1754, 94456, 5898, 17309, '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 (100090, '2022-07-13', 2135, 94457, 5898, NULL, '1.0000', '2.2504', '2.2504', '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 (100091, '2022-07-13', 2345, 94458, 5898, 56725, '1.0000', '4.9044', '4.9044', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100092, '2022-07-13', 7881, 94459, 5898, NULL, '1.0000', '2.7500', '2.7500', '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 (100093, '2022-07-13', 2440, 94460, 5898, 56836, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100094, '2022-07-13', 2290, 94461, 5899, NULL, '1.0000', '10.2600', '10.2600', '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 (100095, '2022-07-13', 2315, 94462, 5899, 57597, '2.0000', '0.7562', '0.7562', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100096, '2022-07-13', 7820, 94463, 5899, 58492, '1.0000', '-3306.3000', '-3306.3000', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100097, '2022-07-13', 7822, 94464, 5899, 58471, '1.0000', '13.2500', '13.2500', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100098, '2022-07-13', 2295, 94465, 5899, NULL, '2.0000', '-2.3086', '-2.3086', '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 (100099, '2022-07-13', 7784, 94466, 5899, NULL, '2.0000', '1.9939', '1.9939', '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 (100100, '2022-07-13', 7385, 94467, 5899, 58497, '5.0000', '6.6482', '6.6482', '4.0000', '4.0000', '81.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100101, '2022-07-13', 2363, 94468, 5900, 56844, '2.0000', '7.7233', '7.7233', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100102, '2022-07-13', 8164, 94469, 5901, NULL, '1.0000', '3.1200', '3.1200', '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 (100103, '2022-07-13', 2351, 94470, 5902, 57123, '1.0000', '18.3300', '18.3300', '24.5000', '24.5000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100104, '2022-07-13', 8026, 94471, 5902, NULL, '1.0000', '16.5000', '16.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 (100105, '2022-07-13', 1306, 94472, 5902, 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 (100106, '2022-07-13', 9695, 94473, 5902, 58696, '1.0000', '5.4919', '5.4919', '8.0000', '8.0000', '30.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100107, '2022-07-13', 1665, 94474, 5902, 55698, '2.0000', '1.1685', '1.1685', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100108, '2022-07-14', 9827, 94475, 5903, 57810, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100109, '2022-07-14', 1519, 94476, 5903, 57764, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100110, '2022-07-14', 9834, 94477, 5903, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100111, '2022-07-14', 1905, 94478, 5903, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100112, '2022-07-14', 7652, 94479, 5903, NULL, '4.0000', '40.3000', '40.3000', '1.6000', '1.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 (100113, '2022-07-14', 1309, 94480, 5903, 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 (100114, '2022-07-14', 1699, 94481, 5903, NULL, '1.0000', '3.2000', '3.2000', '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 (100115, '2022-07-14', 1912, 94482, 5903, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100116, '2022-07-14', 2948, 94483, 5903, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100117, '2022-07-14', 2293, 94484, 5903, NULL, '3.0000', '-17.4320', '-17.4320', '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 (100118, '2022-07-14', 2104, 94485, 5903, 22380, '2.0000', '0.2000', '0.2000', '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 (100119, '2022-07-14', 9683, 94486, 5903, 58676, '1.0000', '2.9700', '2.9700', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100120, '2022-07-14', 1746, 94487, 5903, 56417, '1.0000', '4.6178', '4.6178', '8.0000', '8.0000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100121, '2022-07-14', 1863, 94488, 5903, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100122, '2022-07-14', 1425, 94489, 5903, NULL, '1.0000', '86.3183', '86.3183', '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 (100123, '2022-07-14', 2821, 94490, 5903, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100124, '2022-07-14', 1863, 94491, 5903, 57733, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100125, '2022-07-14', 2416, 94492, 5903, 58697, '1.0000', '1.3570', '1.3570', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100126, '2022-07-14', 2656, 94493, 5903, 58671, '4.0000', '-1.8718', '-1.8718', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100127, '2022-07-14', 2169, 94494, 5903, 58135, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100128, '2022-07-14', 7744, 94495, 5903, NULL, '1.0000', '2.5833', '2.5833', '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 (100129, '2022-07-14', 9828, 94496, 5903, NULL, '1.0000', '2.9100', '2.9100', '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 (100130, '2022-07-14', 2444, 94497, 5903, 57149, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100131, '2022-07-14', 9831, 94498, 5903, 58693, '1.0000', '1.6952', '1.6952', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100132, '2022-07-14', 2643, 94499, 5903, 58698, '1.0000', '1.0273', '1.0273', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100133, '2022-07-14', 1521, 94500, 5903, NULL, '1.0000', '-217.8500', '-217.8500', '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 (100134, '2022-07-14', 2643, 94501, 5904, 58698, '1.0000', '1.0273', '1.0273', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100135, '2022-07-14', 9800, 94502, 5905, NULL, '1.0000', '14.0000', '14.0000', '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 (100136, '2022-07-14', 7780, 94503, 5905, NULL, '1.0000', '11.6000', '11.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 (100137, '2022-07-14', 7730, 94504, 5905, NULL, '4.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (100138, '2022-07-14', 8677, 94505, 5905, NULL, '1.0000', '1.2800', '1.2800', '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 (100139, '2022-07-14', 9731, 94506, 5905, 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 (100140, '2022-07-14', 7323, 94507, 5905, NULL, '1.0000', '7.9800', '7.9800', '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 (100141, '2022-07-14', 9942, 94508, 5905, NULL, '1.0000', '9.1000', '9.1000', '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 (100142, '2022-07-14', 9329, 94509, 5905, NULL, '1.0000', '6.7000', '6.7000', '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 (100143, '2022-07-14', 7353, 94510, 5905, NULL, '2.0000', '0.1900', '0.1900', '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 (100144, '2022-07-14', 7762, 94511, 5905, NULL, '1.0000', '1.5000', '1.5000', '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 (100145, '2022-07-14', 8208, 94512, 5905, NULL, '4.0000', '33.0000', '33.0000', '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 (100146, '2022-07-14', 9245, 94513, 5905, NULL, '1.0000', '6.6100', '6.6100', '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 (100147, '2022-07-14', 7402, 94514, 5905, NULL, '1.0000', '18.9000', '18.9000', '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 (100148, '2022-07-14', 8097, 94515, 5905, NULL, '4.0000', '3.4000', '3.4000', '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 (100149, '2022-07-14', 7806, 94516, 5905, NULL, '5.0000', '1.8000', '1.8000', '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 (100150, '2022-07-14', 9621, 94517, 5905, 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 (100151, '2022-07-14', 2332, 94518, 5905, 3835, '-21.0000', '5.8900', '5.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 (100152, '2022-07-14', 2332, 94518, 5905, NULL, '22.0000', '5.8900', '5.8900', '10.5000', '10.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100153, '2022-07-14', 7899, 94519, 5905, NULL, '1.0000', '3.3000', '3.3000', '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 (100154, '2022-07-14', 9503, 94520, 5905, NULL, '1.0000', '20.6000', '20.6000', '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 (100155, '2022-07-14', 7333, 94521, 5905, NULL, '3.0000', '13.5000', '13.5000', '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 (100156, '2022-07-14', 7521, 94522, 5905, NULL, '1.0000', '15.5000', '15.5000', '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 (100157, '2022-07-14', 7741, 94523, 5905, NULL, '1.0000', '1.2000', '1.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 (100158, '2022-07-14', 7621, 94524, 5905, NULL, '1.0000', '5.9000', '5.9000', '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 (100159, '2022-07-14', 7591, 94525, 5905, NULL, '1.0000', '2.7500', '2.7500', '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 (100160, '2022-07-14', 8814, 94526, 5905, NULL, '10.0000', '5.0000', '5.0000', '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 (100161, '2022-07-14', 7557, 94527, 5905, NULL, '10.0000', '0.5000', '0.5000', '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 (100162, '2022-07-14', 7490, 94528, 5905, NULL, '30.0000', '0.2300', '0.2300', '0.5000', '0.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 (100163, '2022-07-14', 9274, 94529, 5905, NULL, '1.0000', '3.6000', '3.6000', '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 (100164, '2022-07-14', 2315, 94530, 5905, 2735, '-541.0000', '0.3300', '0.3300', '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 (100165, '2022-07-14', 2315, 94530, 5905, NULL, '543.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-543.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100166, '2022-07-14', 7412, 94531, 5905, NULL, '1.0000', '1.5200', '1.5200', '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 (100167, '2022-07-14', 8918, 94532, 5905, NULL, '2.0000', '1.0400', '1.0400', '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 (100168, '2022-07-14', 7781, 94533, 5905, NULL, '3.0000', '4.2500', '4.2500', '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 (100169, '2022-07-14', 7672, 94534, 5905, NULL, '2.0000', '1.0200', '1.0200', '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 (100170, '2022-07-14', 7873, 94535, 5905, NULL, '1.0000', '52.9900', '52.9900', '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 (100171, '2022-07-14', 7762, 94536, 5905, NULL, '1.0000', '1.5000', '1.5000', '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 (100172, '2022-07-14', 9971, 94537, 5905, NULL, '1.0000', '5.8300', '5.8300', '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 (100173, '2022-07-14', 1432, 94538, 5906, NULL, '1.0000', '8.1574', '8.1574', '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 (100174, '2022-07-14', 2858, 94539, 5906, 17772, '-106.0000', '1.0000', '1.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 (100175, '2022-07-14', 2858, 94539, 5906, NULL, '107.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-107.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100176, '2022-07-14', 7411, 94540, 5906, NULL, '1.0000', '1.3500', '1.3500', '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 (100177, '2022-07-14', 2858, 94541, 5906, 17772, '-106.0000', '1.0000', '1.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 (100178, '2022-07-14', 2858, 94541, 5906, NULL, '107.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-107.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100179, '2022-07-14', 2285, 94542, 5906, 2945, '-53.0000', '35.8000', '35.8000', '65.5000', '65.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 (100180, '2022-07-14', 2285, 94542, 5906, NULL, '54.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100181, '2022-07-14', 2307, 94543, 5906, 2960, '-3.0000', '118.9901', '118.9901', '246.0000', '246.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100182, '2022-07-14', 2307, 94543, 5906, NULL, '4.0000', '118.9901', '118.9901', '246.0000', '246.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 (100183, '2022-07-14', 1744, 94544, 5906, 2163, '-4.0000', '26.5281', '26.5281', '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 (100184, '2022-07-14', 1744, 94544, 5906, NULL, '5.0000', '26.5281', '26.5281', '36.0000', '36.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 (100185, '2022-07-14', 7339, 94545, 5906, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (100186, '2022-07-14', 8963, 94546, 5906, NULL, '1.0000', '9.9800', '9.9800', '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 (100187, '2022-07-14', 8616, 94547, 5906, NULL, '1.0000', '23.0000', '23.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 (100188, '2022-07-14', 9481, 94548, 5906, 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 (100189, '2022-07-14', 2037, 94549, 5906, 6389, '-16.0000', '10.5000', '10.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 (100190, '2022-07-14', 2037, 94549, 5906, NULL, '17.0000', '10.5000', '10.5000', '21.0000', '21.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 (100191, '2022-07-14', 2022, 94550, 5906, 4200, '-2.0000', '3.5000', '3.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 (100192, '2022-07-14', 2022, 94550, 5906, NULL, '3.0000', '3.5000', '3.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 (100193, '2022-07-14', 1410, 94551, 5906, NULL, '1.0000', '2.2000', '2.2000', '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 (100194, '2022-07-14', 9628, 94552, 5906, NULL, '1.0000', '46.1200', '46.1200', '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 (100195, '2022-07-14', 2685, 94553, 5906, 12645, '-2.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 (100196, '2022-07-14', 2685, 94553, 5906, NULL, '3.0000', '35.0000', '35.0000', '45.0000', '45.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 (100197, '2022-07-14', 1623, 94554, 5906, 17338, '1.0000', '140.8400', '140.8400', '186.0000', '186.0000', '0.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 (100198, '2022-07-14', 2225, 94555, 5906, 1700, '-9.0000', '14.0000', '14.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 (100199, '2022-07-14', 2225, 94555, 5906, NULL, '11.0000', '14.0000', '14.0000', '20.0000', '20.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 (100200, '2022-07-14', 9468, 94556, 5906, NULL, '1.0000', '17.5000', '17.5000', '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 (100201, '2022-07-14', 2518, 94557, 5906, 10167, '-1.0000', '120.7354', '120.7354', '157.0000', '157.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100202, '2022-07-14', 2518, 94557, 5906, NULL, '2.0000', '120.7354', '120.7354', '157.0000', '157.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 (100203, '2022-07-14', 9628, 94558, 5906, NULL, '1.0000', '46.1200', '46.1200', '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 (100204, '2022-07-14', 7744, 94559, 5906, 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 (100205, '2022-07-14', 1845, 94560, 5906, 6222, '-30.0000', '19.5000', '19.5000', '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 (100206, '2022-07-14', 1845, 94560, 5906, NULL, '31.0000', '19.5000', '19.5000', '30.5000', '30.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 (100207, '2022-07-14', 9814, 94561, 5906, 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 (100208, '2022-07-14', 2380, 94562, 5906, 4033, '-2.0000', '37.9000', '37.9000', '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 (100209, '2022-07-14', 2380, 94562, 5906, NULL, '4.0000', '37.9000', '37.9000', '60.0000', '60.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 (100210, '2022-07-14', 1863, 94563, 5907, 57733, '2.0000', '1.4714', '1.4714', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100211, '2022-07-14', 1863, 94563, 5907, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100212, '2022-07-14', 1807, 94564, 5907, NULL, '2.0000', '34.9993', '34.9993', '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 (100213, '2022-07-14', 2980, 94565, 5907, 22538, '1.0000', '19.0000', '19.0000', '23.0000', '23.0000', '5.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 (100214, '2022-07-14', 9828, 94566, 5907, NULL, '1.0000', '2.9100', '2.9100', '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 (100215, '2022-07-14', 1307, 94567, 5907, NULL, '1.0000', '-59.9897', '-59.9897', '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 (100216, '2022-07-14', 1670, 94568, 5907, NULL, '1.0000', '-32.2503', '-32.2503', '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 (100217, '2022-07-14', 2061, 94569, 5907, NULL, '1.0000', '4.3037', '4.3037', '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 (100218, '2022-07-14', 2169, 94570, 5907, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100219, '2022-07-14', 8746, 94571, 5907, 58687, '1.0000', '3.5423', '3.5423', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100220, '2022-07-14', 7743, 94572, 5907, NULL, '1.0000', '7.3900', '7.3900', '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 (100221, '2022-07-14', 2948, 94573, 5907, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100222, '2022-07-14', 1499, 94574, 5907, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100223, '2022-07-14', 9831, 94575, 5907, 58693, '1.0000', '1.6952', '1.6952', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100224, '2022-07-14', 9832, 94576, 5907, 58694, '1.0000', '1.7757', '1.7757', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100225, '2022-07-14', 2237, 94577, 5907, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100226, '2022-07-14', 8595, 94578, 5907, NULL, '1.0000', '-3.2120', '-3.2120', '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 (100227, '2022-07-14', 1880, 94579, 5907, 58250, '1.0000', '4.8475', '4.8475', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100228, '2022-07-14', 8677, 94580, 5907, NULL, '2.0000', '630.6244', '630.6244', '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 (100229, '2022-07-14', 2295, 94581, 5907, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100230, '2022-07-14', 9831, 94582, 5907, 58693, '1.0000', '1.6952', '1.6952', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100231, '2022-07-14', 2384, 94583, 5907, NULL, '4.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (100232, '2022-07-14', 2315, 94584, 5907, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100233, '2022-07-14', 1935, 94585, 5907, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100234, '2022-07-14', 2754, 94586, 5907, NULL, '1.0000', '0.0800', '0.0800', '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 (100235, '2022-07-14', 7713, 94587, 5907, 57060, '1.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100236, '2022-07-14', 2295, 94588, 5907, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100237, '2022-07-14', 1307, 94589, 5907, NULL, '1.0000', '-59.9897', '-59.9897', '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 (100238, '2022-07-14', 1856, 94590, 5907, NULL, '1.0000', '155.0099', '155.0099', '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 (100239, '2022-07-14', 2169, 94591, 5907, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100240, '2022-07-14', 2156, 94592, 5907, 55716, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100241, '2022-07-14', 8069, 94593, 5908, 57617, '1.0000', '37.0445', '37.0445', '52.0000', '52.0000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100242, '2022-07-14', 7708, 94594, 5908, 56662, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100243, '2022-07-14', 9955, 94595, 5908, 57650, '1.0000', '5.4000', '5.4000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100244, '2022-07-14', 7478, 94596, 5908, 52449, '1.0000', '33.7925', '33.7925', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100245, '2022-07-14', 8220, 94597, 5908, NULL, '1.0000', '32.7000', '32.7000', '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 (100246, '2022-07-14', 7514, 94598, 5908, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100247, '2022-07-14', 7753, 94599, 5908, 58502, '2.0000', '3.5820', '3.5820', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100248, '2022-07-14', 7373, 94600, 5908, 53522, '1.0000', '2.1526', '2.1526', '22.5000', '22.5000', '8.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100249, '2022-07-14', 7638, 94601, 5908, 58402, '1.0000', '8.8868', '8.8868', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100250, '2022-07-14', 7560, 94602, 5908, 58444, '1.0000', '41.8352', '41.8352', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100251, '2022-07-14', 9834, 94603, 5908, 58405, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100252, '2022-07-14', 1501, 94604, 5908, 56582, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100253, '2022-07-14', 7496, 94605, 5908, NULL, '1.0000', '-2.0067', '-2.0067', '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 (100254, '2022-07-14', 9740, 94606, 5908, 58400, '1.0000', '0.6661', '0.6661', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100255, '2022-07-14', 9275, 94607, 5908, NULL, '1.0000', '6.3000', '6.3000', '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 (100256, '2022-07-14', 7781, 94608, 5908, NULL, '1.0000', '6.8496', '6.8496', '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 (100257, '2022-07-14', 1935, 94609, 5908, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '104.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100258, '2022-07-14', 7917, 94610, 5908, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '79.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100259, '2022-07-14', 2284, 94611, 5908, 54126, '2.0000', '1.3870', '1.3870', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100260, '2022-07-14', 7886, 94612, 5908, 58446, '1.0000', '4.5933', '4.5933', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100261, '2022-07-14', 7658, 94613, 5908, 56019, '5.0000', '188.9318', '188.9318', '3.5000', '3.5000', '72.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100262, '2022-07-14', 7658, 94614, 5908, 56019, '1.0000', '188.9318', '188.9318', '3.5000', '3.5000', '76.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100263, '2022-07-14', 7473, 94615, 5908, 58462, '2.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100264, '2022-07-14', 7514, 94616, 5908, 57588, '1.0000', '-19420.5252', '-19420.5252', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100265, '2022-07-14', 7509, 94617, 5908, 58441, '1.0000', '9.6089', '9.6089', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100266, '2022-07-14', 7959, 94618, 5908, 56660, '1.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '21.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100267, '2022-07-14', 2315, 94619, 5908, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100268, '2022-07-14', 7704, 94620, 5908, NULL, '1.0000', '-1.5625', '-1.5625', '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 (100269, '2022-07-14', 9819, 94621, 5908, 56652, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100270, '2022-07-14', 1884, 94622, 5908, 57438, '1.0000', '8.2666', '8.2666', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100271, '2022-07-14', 1541, 94623, 5908, NULL, '1.0000', '20.9531', '20.9531', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100272, '2022-07-14', 7712, 94624, 5908, NULL, '1.0000', '-538.5623', '-538.5623', '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 (100273, '2022-07-14', 2604, 94625, 5908, NULL, '2.0000', '90.0000', '90.0000', '110.0000', '110.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 (100274, '2022-07-14', 9803, 94626, 5908, 50387, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100275, '2022-07-14', 7527, 94627, 5908, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '82.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100276, '2022-07-14', 7981, 94628, 5908, 56673, '2.0000', '-2.5818', '-2.5818', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100277, '2022-07-14', 2242, 94629, 5909, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '117.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100278, '2022-07-14', 9911, 94630, 5909, 56054, '3.0000', '2.0000', '2.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100279, '2022-07-14', 7530, 94631, 5909, 57628, '1.0000', '7.8600', '7.8600', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100280, '2022-07-14', 2643, 94632, 5910, 58698, '1.0000', '1.0273', '1.0273', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100281, '2022-07-14', 1425, 94633, 5910, NULL, '1.0000', '86.3183', '86.3183', '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 (100282, '2022-07-14', 7819, 94634, 5910, NULL, '1.0000', '10.0999', '10.0999', '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 (100283, '2022-07-14', 1307, 94635, 5910, NULL, '1.0000', '-59.9897', '-59.9897', '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 (100284, '2022-07-14', 7328, 94636, 5910, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (100285, '2022-07-14', 1905, 94637, 5910, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100286, '2022-07-14', 2384, 94638, 5910, NULL, '1.0000', '-0.4538', '-0.4538', '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 (100287, '2022-07-14', 1601, 94639, 5910, 57080, '1.0000', '13.2798', '13.2798', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100288, '2022-07-14', 1691, 94640, 5910, 58218, '1.0000', '12.4229', '12.4229', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100289, '2022-07-14', 2289, 94641, 5910, NULL, '3.0000', '0.3611', '0.3611', '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 (100290, '2022-07-14', 7411, 94642, 5910, NULL, '1.0000', '1.2819', '1.2819', '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 (100291, '2022-07-14', 9539, 94643, 5910, 57105, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100292, '2022-07-14', 1519, 94644, 5910, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100293, '2022-07-14', 9695, 94645, 5910, 58696, '1.0000', '5.4919', '5.4919', '8.0000', '8.0000', '29.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100294, '2022-07-14', 2363, 94646, 5910, NULL, '1.0000', '4.9400', '4.9400', '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 (100295, '2022-07-14', 9311, 94647, 5910, NULL, '1.0000', '7.8000', '7.8000', '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 (100296, '2022-07-14', 7743, 94648, 5910, NULL, '1.0000', '7.3900', '7.3900', '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 (100297, '2022-07-14', 2169, 94649, 5910, 58135, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100298, '2022-07-14', 9737, 94650, 5910, NULL, '1.0000', '9.4750', '9.4750', '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 (100299, '2022-07-14', 9834, 94651, 5910, 54879, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100300, '2022-07-14', 3023, 94652, 5910, 50234, '1.0000', '5.5275', '5.5275', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100301, '2022-07-14', 2221, 94653, 5910, NULL, '1.0000', '2.3805', '2.3805', '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 (100302, '2022-07-14', 2754, 94654, 5911, NULL, '4.0000', '0.0800', '0.0800', '0.2000', '0.2000', '-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 (100303, '2022-07-14', 2169, 94655, 5911, 58135, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100304, '2022-07-14', 8183, 94656, 5911, NULL, '1.0000', '2774.2425', '2774.2425', '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 (100305, '2022-07-14', 8677, 94657, 5911, NULL, '2.0000', '630.6244', '630.6244', '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 (100306, '2022-07-14', 2384, 94658, 5911, NULL, '5.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (100307, '2022-07-14', 7411, 94659, 5911, NULL, '2.0000', '1.2819', '1.2819', '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 (100308, '2022-07-14', 9778, 94660, 5911, 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 (100309, '2022-07-14', 2384, 94661, 5911, NULL, '2.0000', '-0.4538', '-0.4538', '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 (100310, '2022-07-14', 7411, 94662, 5911, NULL, '2.0000', '1.2819', '1.2819', '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 (100311, '2022-07-14', 2315, 94663, 5911, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100312, '2022-07-14', 9820, 94664, 5911, 51692, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100313, '2022-07-14', 9695, 94665, 5911, 58736, '2.0000', '5.4670', '5.4670', '8.0000', '8.0000', '28.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100314, '2022-07-14', 7411, 94666, 5911, NULL, '2.0000', '1.2819', '1.2819', '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 (100315, '2022-07-14', 7641, 94667, 5911, NULL, '1.0000', '1.9000', '1.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 (100316, '2022-07-14', 2315, 94668, 5911, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100317, '2022-07-14', 8434, 94669, 5912, NULL, '1.0000', '7.6300', '7.6300', '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 (100318, '2022-07-14', 9740, 94670, 5912, 58400, '1.0000', '0.6661', '0.6661', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100319, '2022-07-14', 9740, 94671, 5912, 58400, '1.0000', '0.6661', '0.6661', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100320, '2022-07-14', 9565, 94672, 5912, 56066, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100321, '2022-07-14', 9084, 94673, 5912, 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 (100322, '2022-07-14', 8759, 94674, 5912, 57513, '1.0000', '8.0678', '8.0678', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100323, '2022-07-14', 9214, 94675, 5912, 57507, '1.0000', '-9.3835', '-9.3835', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100324, '2022-07-14', 8744, 94676, 5912, 57511, '1.0000', '3.7472', '3.7472', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100325, '2022-07-14', 7518, 94677, 5912, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100326, '2022-07-14', 7548, 94678, 5912, 58436, '1.0000', '5.9529', '5.9529', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100327, '2022-07-14', 2726, 94679, 5912, 54152, '1.0000', '0.1000', '0.1000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100328, '2022-07-14', 7911, 94680, 5912, 56650, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100329, '2022-07-14', 8135, 94681, 5912, NULL, '1.0000', '5.9090', '5.9090', '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 (100330, '2022-07-14', 7588, 94682, 5912, 58494, '1.0000', '8.7131', '8.7131', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100331, '2022-07-14', 7524, 94683, 5912, 57179, '1.0000', '4.5322', '4.5322', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100332, '2022-07-14', 1520, 94684, 5912, NULL, '1.0000', '1.4700', '1.4700', '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 (100333, '2022-07-14', 1855, 94685, 5912, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100334, '2022-07-14', 7807, 94686, 5912, 57411, '5.0000', '-61.8000', '-61.8000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100335, '2022-07-14', 7518, 94687, 5912, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100336, '2022-07-14', 7396, 94688, 5912, 57592, '1.0000', '10.6847', '10.6847', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100337, '2022-07-14', 9740, 94689, 5912, 58400, '1.0000', '0.6661', '0.6661', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100338, '2022-07-14', 7514, 94690, 5912, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (100339, '2022-07-14', 2169, 94691, 5913, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100340, '2022-07-14', 8165, 94692, 5913, 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 (100341, '2022-07-14', 2283, 94693, 5913, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100342, '2022-07-14', 8187, 94694, 5913, NULL, '2.0000', '14.3900', '14.3900', '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 (100343, '2022-07-14', 1307, 94695, 5913, NULL, '1.0000', '-59.9897', '-59.9897', '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 (100344, '2022-07-14', 2275, 94696, 5913, 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 (100345, '2022-07-14', 2283, 94697, 5913, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100346, '2022-07-14', 8878, 94698, 5913, NULL, '2.0000', '3.8136', '3.8136', '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 (100347, '2022-07-14', 1529, 94699, 5913, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100348, '2022-07-14', 9204, 94700, 5913, NULL, '1.0000', '14.1514', '14.1514', '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 (100349, '2022-07-14', 7715, 94701, 5913, NULL, '1.0000', '1.8900', '1.8900', '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 (100350, '2022-07-14', 2916, 94702, 5913, NULL, '1.0000', '4209.2937', '4209.2937', '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 (100351, '2022-07-14', 7514, 94703, 5913, NULL, '1.0000', '2.2500', '2.2500', '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 (100352, '2022-07-14', 2384, 94704, 5913, NULL, '2.0000', '-0.4538', '-0.4538', '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 (100353, '2022-07-14', 7398, 94705, 5913, NULL, '1.0000', '143.5000', '143.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 (100354, '2022-07-14', 1665, 94706, 5913, 55698, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100355, '2022-07-14', 7514, 94707, 5913, NULL, '2.0000', '2.2500', '2.2500', '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 (100356, '2022-07-14', 1647, 94708, 5913, 54874, '1.0000', '-8.0033', '-8.0033', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100357, '2022-07-14', 1621, 94709, 5913, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100358, '2022-07-14', 1580, 94710, 5913, 56446, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100359, '2022-07-14', 2169, 94711, 5913, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100360, '2022-07-14', 1493, 94712, 5913, NULL, '1.0000', '-27.3400', '-27.3400', '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 (100361, '2022-07-14', 1501, 94713, 5913, NULL, '1.0000', '0.6299', '0.6299', '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 (100362, '2022-07-14', 8699, 94714, 5913, NULL, '1.0000', '6.3800', '6.3800', '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 (100363, '2022-07-14', 1339, 94715, 5913, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100364, '2022-07-14', 9482, 94716, 5913, 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 (100365, '2022-07-14', 8923, 94717, 5914, NULL, '1.0000', '7.2500', '7.2500', '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 (100366, '2022-07-14', 9828, 94718, 5914, NULL, '2.0000', '2.9100', '2.9100', '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 (100367, '2022-07-14', 2655, 94719, 5914, NULL, '1.0000', '-5.7208', '-5.7208', '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 (100368, '2022-07-14', 2283, 94720, 5914, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100369, '2022-07-14', 9794, 94721, 5914, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100370, '2022-07-14', 7743, 94722, 5914, NULL, '3.0000', '7.3900', '7.3900', '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 (100371, '2022-07-14', 9940, 94723, 5915, 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 (100372, '2022-07-14', 1521, 94724, 5915, 56249, '1.0000', '2.8071', '2.8071', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100373, '2022-07-14', 1695, 94725, 5915, 58641, '1.0000', '27.0720', '27.0720', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100374, '2022-07-14', 1690, 94726, 5915, 56926, '1.0000', '7.1057', '7.1057', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100375, '2022-07-14', 9634, 94727, 5915, NULL, '3.0000', '4.8000', '4.8000', '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 (100376, '2022-07-14', 1828, 94728, 5915, 33003, '1.0000', '0.7300', '0.7300', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100377, '2022-07-14', 1602, 94729, 5915, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100378, '2022-07-14', 1536, 94730, 5915, 57942, '10.0000', '25.1306', '25.1306', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100379, '2022-07-14', 2384, 94731, 5915, 58658, '1.0000', '0.4170', '0.4170', '0.8000', '0.8000', '98.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100380, '2022-07-14', 1651, 94732, 5915, 58584, '1.0000', '7.9440', '7.9440', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100381, '2022-07-14', 1308, 94733, 5915, 46782, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100382, '2022-07-14', 1346, 94734, 5915, 55497, '4.0000', '1.0027', '1.0027', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100383, '2022-07-14', 9729, 94735, 5915, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100384, '2022-07-14', 1383, 94736, 5915, 58591, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100385, '2022-07-14', 2169, 94737, 5915, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100386, '2022-07-14', 1529, 94738, 5915, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '22.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100387, '2022-07-14', 7745, 94739, 5915, 57997, '1.0000', '6.7000', '6.7000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100388, '2022-07-14', 2950, 94740, 5915, 52313, '1.0000', '1.7000', '1.7000', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100389, '2022-07-14', 2135, 94741, 5915, NULL, '1.0000', '2.2504', '2.2504', '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 (100390, '2022-07-14', 7412, 94742, 5915, NULL, '1.0000', '1.5200', '1.5200', '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 (100391, '2022-07-14', 1812, 94743, 5915, 58648, '6.0000', '8.4873', '8.4873', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100392, '2022-07-14', 2315, 94744, 5915, 3069, '2.0000', '0.3300', '0.3300', '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 (100393, '2022-07-14', 2167, 94745, 5915, 57982, '1.0000', '2.4773', '2.4773', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100394, '2022-07-14', 9940, 94746, 5915, 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 (100395, '2022-07-14', 2653, 94747, 5915, 11143, '1.0000', '2.7000', '2.7000', '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 (100396, '2022-07-14', 1620, 94748, 5915, 57947, '1.0000', '2.2914', '2.2914', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100397, '2022-07-14', 3034, 94749, 5915, 24008, '1.0000', '17.0000', '17.0000', '25.0000', '25.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 (100398, '2022-07-14', 2354, 94750, 5915, 56731, '1.0000', '5.2506', '5.2506', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100399, '2022-07-14', 7385, 94751, 5915, 57945, '2.0000', '2.6553', '2.6553', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100400, '2022-07-14', 7482, 94752, 5915, NULL, '1.0000', '3.0500', '3.0500', '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 (100401, '2022-07-14', 1337, 94753, 5915, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100402, '2022-07-14', 8000, 94754, 5915, 53878, '1.0000', '7.9000', '7.9000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100403, '2022-07-14', 2169, 94755, 5915, 57981, '2.0000', '1.3557', '1.3557', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100404, '2022-07-14', 2331, 94756, 5915, 58609, '1.0000', '12.9127', '12.9127', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100405, '2022-07-14', 2331, 94757, 5915, 58609, '1.0000', '12.9127', '12.9127', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100406, '2022-07-14', 1892, 94758, 5915, 58588, '6.0000', '0.5200', '0.5200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100407, '2022-07-14', 1561, 94759, 5915, 56743, '1.0000', '29.9250', '29.9250', '46.0000', '46.0000', '4.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100408, '2022-07-14', 1536, 94760, 5915, 57942, '10.0000', '25.1306', '25.1306', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100409, '2022-07-14', 1670, 94761, 5915, 58802, '1.0000', '40.8146', '40.8146', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100410, '2022-07-14', 8744, 94762, 5915, 58003, '1.0000', '3.6619', '3.6619', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100411, '2022-07-14', 2384, 94763, 5915, 58658, '5.0000', '0.4170', '0.4170', '0.8000', '0.8000', '94.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100412, '2022-07-14', 1640, 94764, 5915, 58805, '1.0000', '5.2125', '5.2125', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100413, '2022-07-15', 2287, 94765, 5916, 57710, '4.0000', '2.3233', '2.3233', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100414, '2022-07-15', 1687, 94766, 5916, 58146, '1.0000', '15.0626', '15.0626', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100415, '2022-07-15', 1335, 94767, 5916, 53240, '1.0000', '1.1969', '1.1969', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100416, '2022-07-15', 1945, 94768, 5916, 55668, '1.0000', '9.3000', '9.3000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100417, '2022-07-15', 2169, 94769, 5916, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100418, '2022-07-15', 9590, 94770, 5916, NULL, '1.0000', '-6.6667', '-6.6667', '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 (100419, '2022-07-15', 2237, 94771, 5916, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100420, '2022-07-15', 1772, 94772, 5916, 58175, '1.0000', '5.9598', '5.9598', '8.0000', '8.0000', '16.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100421, '2022-07-15', 1746, 94773, 5916, 56417, '1.0000', '4.6178', '4.6178', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100422, '2022-07-15', 8773, 94774, 5916, 58850, '1.0000', '3.8300', '3.8300', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100423, '2022-07-15', 2643, 94775, 5916, 58874, '1.0000', '1.0187', '1.0187', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100424, '2022-07-15', 2169, 94776, 5916, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100425, '2022-07-15', 2416, 94777, 5916, 58873, '1.0000', '1.3505', '1.3505', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100426, '2022-07-15', 7652, 94778, 5916, NULL, '2.0000', '40.3000', '40.3000', '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 (100427, '2022-07-15', 2363, 94779, 5916, NULL, '1.0000', '4.9400', '4.9400', '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 (100428, '2022-07-15', 2405, 94780, 5916, 56851, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '22.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100429, '2022-07-15', 2506, 94781, 5917, 56739, '1.0000', '4.0840', '4.0840', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100430, '2022-07-15', 1767, 94782, 5917, 58818, '1.0000', '5.1227', '5.1227', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100431, '2022-07-15', 8149, 94783, 5917, 56956, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100432, '2022-07-15', 3029, 94784, 5917, 58627, '1.0000', '7.4131', '7.4131', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100433, '2022-07-15', 1702, 94785, 5917, 58593, '1.0000', '23.4755', '23.4755', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100434, '2022-07-15', 2916, 94786, 5917, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '9.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100435, '2022-07-15', 1519, 94787, 5917, 58634, '1.0000', '3.4435', '3.4435', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100436, '2022-07-15', 1863, 94788, 5917, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100437, '2022-07-15', 1602, 94789, 5917, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100438, '2022-07-15', 1942, 94790, 5917, 56256, '1.0000', '20.1250', '20.1250', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100439, '2022-07-15', 2893, 94791, 5918, 58614, '1.0000', '6.6885', '6.6885', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100440, '2022-07-15', 7639, 94792, 5918, 32060, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100441, '2022-07-15', 1364, 94793, 5919, 3404, '2.0000', '52.5500', '52.5500', '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 (100442, '2022-07-15', 2229, 94794, 5920, 56839, '1.0000', '26.0242', '26.0242', '37.0000', '37.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100443, '2022-07-15', 9649, 94795, 5920, 58793, '1.0000', '16.8809', '16.8809', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100444, '2022-07-15', 9725, 94796, 5920, 46081, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100445, '2022-07-15', 9834, 94797, 5921, 58836, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100446, '2022-07-15', 7744, 94798, 5922, NULL, '2.0000', '2.5833', '2.5833', '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 (100447, '2022-07-15', 9482, 94799, 5922, NULL, '2.0000', '0.5000', '0.5000', '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 (100448, '2022-07-15', 7652, 94800, 5922, NULL, '1.0000', '40.3000', '40.3000', '1.6000', '1.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 (100449, '2022-07-15', 1912, 94801, 5922, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100450, '2022-07-15', 2738, 94802, 5922, 56428, '1.0000', '9.2000', '9.2000', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100451, '2022-07-15', 1529, 94803, 5922, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100452, '2022-07-15', 2366, 94804, 5922, NULL, '2.0000', '-51.4778', '-51.4778', '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 (100453, '2022-07-15', 2821, 94805, 5922, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100454, '2022-07-15', 8017, 94806, 5922, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100455, '2022-07-15', 1867, 94807, 5922, 57762, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100456, '2022-07-15', 7652, 94808, 5922, NULL, '6.0000', '40.3000', '40.3000', '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 (100457, '2022-07-15', 7612, 94809, 5922, NULL, '2.0000', '0.4900', '0.4900', '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 (100458, '2022-07-15', 7583, 94810, 5923, NULL, '1.0000', '4.0000', '4.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 (100459, '2022-07-15', 2259, 94811, 5923, 58622, '1.0000', '21.7568', '21.7568', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100460, '2022-07-15', 1772, 94812, 5924, 58175, '1.0000', '5.9598', '5.9598', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100461, '2022-07-15', 2948, 94813, 5924, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100462, '2022-07-15', 2379, 94814, 5924, NULL, '1.0000', '-14.1447', '-14.1447', '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 (100463, '2022-07-15', 2295, 94815, 5925, 58759, '2.0000', '1.4606', '1.4606', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100464, '2022-07-15', 2100, 94816, 5925, 58620, '1.0000', '1.7687', '1.7687', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100465, '2022-07-15', 2738, 94817, 5926, 56938, '3.0000', '8.9533', '8.9533', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100466, '2022-07-15', 2424, 94818, 5927, 58058, '1.0000', '11.4446', '11.4446', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100467, '2022-07-15', 1665, 94819, 5928, 3235, '-142.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 (100468, '2022-07-15', 1665, 94819, 5928, NULL, '143.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-143.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100469, '2022-07-15', 7363, 94820, 5928, 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 (100470, '2022-07-15', 7807, 94821, 5928, NULL, '3.0000', '2.1600', '2.1600', '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 (100471, '2022-07-15', 2315, 94822, 5928, 2735, '-543.0000', '0.3300', '0.3300', '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 (100472, '2022-07-15', 2315, 94822, 5928, NULL, '544.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-544.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100473, '2022-07-15', 2643, 94823, 5928, NULL, '1.0000', '0.8700', '0.8700', '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 (100474, '2022-07-15', 8677, 94824, 5928, NULL, '2.0000', '1.2800', '1.2800', '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 (100475, '2022-07-15', 7482, 94825, 5928, NULL, '1.0000', '3.0500', '3.0500', '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 (100476, '2022-07-15', 7385, 94826, 5928, NULL, '2.0000', '2.0000', '2.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 (100477, '2022-07-15', 9699, 94827, 5928, 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 (100478, '2022-07-15', 7666, 94828, 5928, NULL, '1.0000', '3.6000', '3.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 (100479, '2022-07-15', 7713, 94829, 5928, NULL, '3.0000', '0.3800', '0.3800', '0.6000', '0.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 (100480, '2022-07-15', 1837, 94830, 5928, 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 (100481, '2022-07-15', 7560, 94831, 5928, NULL, '1.0000', '33.0200', '33.0200', '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 (100482, '2022-07-15', 7954, 94832, 5928, NULL, '3.0000', '3.0000', '3.0000', '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 (100483, '2022-07-15', 7514, 94833, 5928, NULL, '1.0000', '2.2500', '2.2500', '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 (100484, '2022-07-15', 7819, 94834, 5928, NULL, '1.0000', '9.5000', '9.5000', '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 (100485, '2022-07-15', 7674, 94835, 5928, NULL, '1.0000', '1.3000', '1.3000', '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 (100486, '2022-07-15', 2315, 94836, 5928, 2735, '-543.0000', '0.3300', '0.3300', '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 (100487, '2022-07-15', 2315, 94836, 5928, NULL, '546.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-546.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100488, '2022-07-15', 7411, 94837, 5928, NULL, '1.0000', '1.3500', '1.3500', '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 (100489, '2022-07-15', 1935, 94838, 5928, 5586, '-178.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 (100490, '2022-07-15', 1935, 94838, 5928, NULL, '179.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-179.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100491, '2022-07-15', 7385, 94839, 5928, NULL, '4.0000', '2.0000', '2.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 (100492, '2022-07-15', 7709, 94840, 5928, NULL, '2.0000', '3.5000', '3.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 (100493, '2022-07-15', 7794, 94841, 5928, NULL, '1.0000', '9.8000', '9.8000', '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 (100494, '2022-07-15', 9324, 94842, 5928, 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 (100495, '2022-07-15', 8712, 94843, 5928, NULL, '1.0000', '7.0400', '7.0400', '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 (100496, '2022-07-15', 8101, 94844, 5928, NULL, '2.0000', '1.9700', '1.9700', '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 (100497, '2022-07-15', 7608, 94845, 5928, NULL, '1.0000', '6.9800', '6.9800', '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 (100498, '2022-07-15', 2506, 94846, 5928, 16244, '-26.0000', '3.4900', '3.4900', '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 (100499, '2022-07-15', 2506, 94846, 5928, NULL, '27.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-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 (100500, '2022-07-15', 7457, 94847, 5928, NULL, '2.0000', '6.0000', '6.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 (100501, '2022-07-15', 9740, 94848, 5928, NULL, '1.0000', '0.6600', '0.6600', '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 (100502, '2022-07-15', 9735, 94849, 5928, 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 (100503, '2022-07-15', 8920, 94850, 5928, 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 (100504, '2022-07-15', 7376, 94851, 5928, NULL, '1.0000', '141.7100', '141.7100', '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 (100505, '2022-07-15', 7806, 94852, 5928, NULL, '3.0000', '1.8000', '1.8000', '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 (100506, '2022-07-15', 7981, 94853, 5928, NULL, '5.0000', '6.0000', '6.0000', '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 (100507, '2022-07-15', 7483, 94854, 5928, 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 (100508, '2022-07-15', 7917, 94855, 5928, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (100509, '2022-07-15', 1649, 94856, 5929, 48182, '1.0000', '11.7333', '11.7333', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100510, '2022-07-15', 1519, 94857, 5929, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100511, '2022-07-15', 9740, 94858, 5929, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '92.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100512, '2022-07-15', 2244, 94859, 5929, NULL, '1.0000', '6.8500', '6.8500', '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 (100513, '2022-07-15', 8039, 94860, 5929, NULL, '1.0000', '12.9000', '12.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 (100514, '2022-07-15', 2506, 94861, 5929, NULL, '1.0000', '-8.6523', '-8.6523', '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 (100515, '2022-07-15', 1519, 94862, 5929, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100516, '2022-07-15', 1846, 94863, 5929, NULL, '1.0000', '478.9750', '478.9750', '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 (100517, '2022-07-15', 1687, 94864, 5929, 58146, '2.0000', '15.0626', '15.0626', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100518, '2022-07-15', 2384, 94865, 5929, NULL, '7.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (100519, '2022-07-15', 8497, 94866, 5929, NULL, '1.0000', '13.0000', '13.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 (100520, '2022-07-15', 2466, 94867, 5929, 52192, '1.0000', '14.5000', '14.5000', '19.1400', '19.1400', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100521, '2022-07-15', 1935, 94868, 5929, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100522, '2022-07-15', 8362, 94869, 5929, NULL, '5.0000', '4.1000', '4.1000', '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 (100523, '2022-07-15', 2315, 94870, 5929, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100524, '2022-07-15', 9834, 94871, 5929, NULL, '1.0000', '1.4500', '1.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 (100525, '2022-07-15', 7324, 94872, 5929, NULL, '2.0000', '5.4813', '5.4813', '8.5000', '8.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 (100526, '2022-07-15', 7621, 94873, 5929, NULL, '2.0000', '3.1000', '3.1000', '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 (100527, '2022-07-15', 7459, 94874, 5929, NULL, '1.0000', '-15.3118', '-15.3118', '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 (100528, '2022-07-15', 7339, 94875, 5929, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (100529, '2022-07-15', 8878, 94876, 5929, NULL, '1.0000', '3.8136', '3.8136', '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 (100530, '2022-07-15', 1748, 94877, 5929, NULL, '6.0000', '0.3200', '0.3200', '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 (100531, '2022-07-15', 1536, 94878, 5929, 37793, '10.0000', '101.0896', '101.0896', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100532, '2022-07-15', 2384, 94879, 5929, NULL, '1.0000', '-0.4538', '-0.4538', '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 (100533, '2022-07-15', 9794, 94880, 5929, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '79.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100534, '2022-07-15', 2673, 94881, 5929, 55938, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100535, '2022-07-15', 7514, 94882, 5929, NULL, '1.0000', '2.2500', '2.2500', '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 (100536, '2022-07-15', 1529, 94883, 5929, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100537, '2022-07-15', 2384, 94884, 5929, NULL, '2.0000', '-0.4538', '-0.4538', '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 (100538, '2022-07-15', 9737, 94885, 5929, NULL, '1.0000', '9.4750', '9.4750', '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 (100539, '2022-07-15', 9821, 94886, 5929, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100540, '2022-07-15', 9959, 94887, 5929, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100541, '2022-07-15', 9737, 94888, 5929, NULL, '1.0000', '9.4750', '9.4750', '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 (100542, '2022-07-15', 9960, 94889, 5929, NULL, '2.0000', '3.3000', '3.3000', '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 (100543, '2022-07-15', 9204, 94890, 5929, NULL, '1.0000', '14.1514', '14.1514', '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 (100544, '2022-07-15', 2315, 94891, 5929, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100545, '2022-07-15', 9923, 94892, 5929, 58233, '1.0000', '8.7000', '8.7000', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100546, '2022-07-15', 2061, 94893, 5929, NULL, '1.0000', '4.3037', '4.3037', '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 (100547, '2022-07-15', 2061, 94894, 5929, NULL, '1.0000', '4.3037', '4.3037', '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 (100548, '2022-07-15', 8183, 94895, 5929, NULL, '1.0000', '2774.2425', '2774.2425', '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 (100549, '2022-07-15', 2270, 94896, 5929, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100550, '2022-07-15', 2643, 94897, 5929, 59003, '2.0000', '1.0097', '1.0097', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100551, '2022-07-15', 2366, 94898, 5929, NULL, '2.0000', '-51.4778', '-51.4778', '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 (100552, '2022-07-15', 2623, 94899, 5929, NULL, '1.0000', '0.6000', '0.6000', '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 (100553, '2022-07-15', 8878, 94900, 5929, NULL, '1.0000', '3.8136', '3.8136', '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 (100554, '2022-07-15', 7673, 94901, 5929, NULL, '1.0000', '15.5000', '15.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 (100555, '2022-07-15', 7744, 94902, 5929, NULL, '1.0000', '2.5833', '2.5833', '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 (100556, '2022-07-15', 9783, 94903, 5929, 58166, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100557, '2022-07-15', 9794, 94904, 5929, 57665, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100558, '2022-07-15', 1691, 94905, 5929, 58218, '1.0000', '12.4229', '12.4229', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100559, '2022-07-15', 2315, 94906, 5929, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100560, '2022-07-15', 8133, 94907, 5929, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (100561, '2022-07-15', 8208, 94908, 5929, NULL, '1.0000', '47.9541', '47.9541', '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 (100562, '2022-07-15', 2169, 94909, 5929, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100563, '2022-07-15', 1935, 94910, 5929, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100564, '2022-07-15', 8699, 94911, 5930, NULL, '3.0000', '18.5578', '18.5578', '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 (100565, '2022-07-15', 8746, 94912, 5930, 57512, '1.0000', '3.2874', '3.2874', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100566, '2022-07-15', 9751, 94913, 5930, 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 (100567, '2022-07-15', 7641, 94914, 5930, 58496, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100568, '2022-07-15', 9503, 94915, 5930, 56528, '2.0000', '1.2700', '1.2700', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100569, '2022-07-15', 8674, 94916, 5930, NULL, '1.0000', '28.8900', '28.8900', '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 (100570, '2022-07-15', 9747, 94917, 5930, 56183, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100571, '2022-07-15', 7736, 94918, 5930, 58432, '1.0000', '27.6633', '27.6633', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100572, '2022-07-15', 2612, 94919, 5930, 52743, '1.0000', '8.4480', '8.4480', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100573, '2022-07-15', 8548, 94920, 5930, NULL, '1.0000', '-2.8299', '-2.8299', '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 (100574, '2022-07-15', 8164, 94921, 5930, NULL, '1.0000', '15.5606', '15.5606', '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 (100575, '2022-07-15', 8000, 94922, 5930, 57616, '1.0000', '1040.0222', '1040.0222', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100576, '2022-07-15', 7411, 94923, 5930, 58390, '6.0000', '1.4000', '1.4000', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100577, '2022-07-15', 9695, 94924, 5930, 58488, '1.0000', '5.8111', '5.8111', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100578, '2022-07-15', 7674, 94925, 5930, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100579, '2022-07-15', 7638, 94926, 5930, 58402, '1.0000', '8.8868', '8.8868', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100580, '2022-07-15', 7612, 94927, 5930, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100581, '2022-07-15', 8677, 94928, 5930, 56676, '3.0000', '1.9860', '1.9860', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100582, '2022-07-15', 9275, 94929, 5930, NULL, '1.0000', '6.3000', '6.3000', '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 (100583, '2022-07-15', 2315, 94930, 5930, 57597, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100584, '2022-07-15', 7899, 94931, 5930, 58485, '1.0000', '3.6960', '3.6960', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100585, '2022-07-15', 8918, 94932, 5930, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100586, '2022-07-15', 1935, 94933, 5930, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '102.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100587, '2022-07-15', 7444, 94934, 5930, 58399, '1.0000', '658.1680', '658.1680', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100588, '2022-07-15', 8412, 94935, 5930, NULL, '2.0000', '15.0000', '15.0000', '55.5000', '55.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 (100589, '2022-07-15', 7523, 94936, 5930, 58499, '1.0000', '12.0597', '12.0597', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100590, '2022-07-15', 7672, 94937, 5930, 58391, '1.0000', '0.3513', '0.3513', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100591, '2022-07-15', 9177, 94938, 5930, NULL, '10.0000', '-11.3652', '-11.3652', '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 (100592, '2022-07-15', 7518, 94939, 5930, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100593, '2022-07-15', 7810, 94940, 5930, NULL, '1.0000', '12.0714', '12.0714', '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 (100594, '2022-07-15', 9177, 94941, 5930, NULL, '5.0000', '-11.3652', '-11.3652', '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 (100595, '2022-07-15', 8005, 94942, 5930, NULL, '1.0000', '53.5000', '53.5000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100596, '2022-07-15', 7548, 94943, 5930, 58436, '1.0000', '5.9529', '5.9529', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100597, '2022-07-15', 7411, 94944, 5930, 58390, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100598, '2022-07-15', 7821, 94945, 5930, 54472, '1.0000', '10.8121', '10.8121', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100599, '2022-07-15', 8233, 94946, 5930, 53621, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100600, '2022-07-15', 8136, 94947, 5930, 51832, '1.0000', '-4.7978', '-4.7978', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100601, '2022-07-15', 7411, 94948, 5930, 58390, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '61.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100602, '2022-07-15', 8849, 94949, 5930, NULL, '1.0000', '1.0700', '1.0700', '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 (100603, '2022-07-15', 7867, 94950, 5931, 57203, '1.0000', '2.3130', '2.3130', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100604, '2022-07-15', 7385, 94951, 5931, 58497, '5.0000', '6.6482', '6.6482', '4.0000', '4.0000', '76.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100605, '2022-07-15', 7708, 94952, 5931, 56588, '1.0000', '8.3056', '8.3056', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100606, '2022-07-15', 8089, 94953, 5931, 51838, '1.0000', '20.4097', '20.4097', '26.9300', '26.9300', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100607, '2022-07-15', 7509, 94954, 5931, 58441, '1.0000', '9.6089', '9.6089', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100608, '2022-07-15', 9791, 94955, 5931, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '101.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100609, '2022-07-15', 8172, 94956, 5931, NULL, '1.0000', '40.7000', '40.7000', '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 (100610, '2022-07-15', 8069, 94957, 5931, 57617, '1.0000', '37.0445', '37.0445', '52.0000', '52.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100611, '2022-07-15', 7514, 94958, 5931, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (100612, '2022-07-15', 7324, 94959, 5931, 58401, '2.0000', '6.3200', '6.3200', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100613, '2022-07-15', 1602, 94960, 5932, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100614, '2022-07-15', 1785, 94961, 5932, 58633, '1.0000', '15.7331', '15.7331', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100615, '2022-07-15', 1602, 94962, 5932, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100616, '2022-07-15', 1525, 94963, 5932, NULL, '3.0000', '90.0000', '90.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 (100617, '2022-07-15', 7753, 94964, 5932, NULL, '1.0000', '3.1400', '3.1400', '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 (100618, '2022-07-15', 9634, 94965, 5932, 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 (100619, '2022-07-15', 2302, 94966, 5932, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100620, '2022-07-15', 2673, 94967, 5932, 56747, '1.0000', '12.3000', '12.3000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100621, '2022-07-15', 1602, 94968, 5932, 57946, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100622, '2022-07-15', 1695, 94969, 5932, 58641, '1.0000', '27.0720', '27.0720', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100623, '2022-07-15', 1592, 94970, 5932, 58606, '1.0000', '36.4668', '36.4668', '56.0000', '56.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100624, '2022-07-15', 1715, 94971, 5932, 55770, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100625, '2022-07-15', 1785, 94972, 5932, 58633, '1.0000', '15.7331', '15.7331', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100626, '2022-07-15', 7741, 94973, 5932, 58791, '1.0000', '3.2806', '3.2806', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100627, '2022-07-15', 1863, 94974, 5932, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100628, '2022-07-15', 1754, 94975, 5932, 58834, '1.0000', '49.8889', '49.8889', '23.5000', '23.5000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100629, '2022-07-15', 2169, 94976, 5933, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100630, '2022-07-15', 7514, 94977, 5934, NULL, '2.0000', '-19420.5252', '-19420.5252', '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 (100631, '2022-07-15', 8164, 94978, 5934, NULL, '1.0000', '15.5606', '15.5606', '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 (100632, '2022-07-15', 7707, 94979, 5934, 58392, '1.0000', '-22.2098', '-22.2098', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100633, '2022-07-15', 9329, 94980, 5934, 57443, '1.0000', '-2789.5699', '-2789.5699', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100634, '2022-07-15', 8316, 94981, 5934, 58419, '1.0000', '16.1828', '16.1828', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100635, '2022-07-15', 1410, 94982, 5935, NULL, '1.0000', '48.8052', '48.8052', '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 (100636, '2022-07-15', 2417, 94983, 5935, 32544, '1.0000', '3.7800', '3.7800', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100637, '2022-07-15', 7641, 94984, 5935, NULL, '2.0000', '1.9000', '1.9000', '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 (100638, '2022-07-15', 9831, 94985, 5935, 58998, '1.0000', '-0.3182', '-0.3182', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100639, '2022-07-15', 1339, 94986, 5935, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100640, '2022-07-15', 2506, 94987, 5935, NULL, '1.0000', '-8.6523', '-8.6523', '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 (100641, '2022-07-15', 9828, 94988, 5935, NULL, '1.0000', '2.9100', '2.9100', '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 (100642, '2022-07-15', 9794, 94989, 5935, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '76.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100643, '2022-07-15', 1499, 94990, 5935, 57679, '4.0000', '0.4542', '0.4542', '0.7000', '0.7000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100644, '2022-07-15', 1387, 94991, 5935, 57771, '1.0000', '15.1875', '15.1875', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100645, '2022-07-15', 1855, 94992, 5935, NULL, '1.0000', '1.4615', '1.4615', '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 (100646, '2022-07-15', 1810, 94993, 5935, NULL, '1.0000', '15.0116', '15.0116', '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 (100647, '2022-07-15', 2255, 94994, 5935, 51664, '1.0000', '17.1339', '17.1339', '32.5000', '32.5000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100648, '2022-07-15', 1912, 94995, 5935, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100649, '2022-07-15', 9737, 94996, 5935, NULL, '1.0000', '9.4750', '9.4750', '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 (100650, '2022-07-15', 9834, 94997, 5935, NULL, '1.0000', '1.4500', '1.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 (100651, '2022-07-15', 9831, 94998, 5935, 58998, '1.0000', '-0.3182', '-0.3182', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100652, '2022-07-15', 9089, 94999, 5935, 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 (100653, '2022-07-15', 2169, 95000, 5935, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100654, '2022-07-15', 1695, 95001, 5935, 58122, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100655, '2022-07-15', 8677, 95002, 5935, NULL, '2.0000', '630.6244', '630.6244', '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 (100656, '2022-07-15', 1598, 95003, 5935, 52207, '1.0000', '4.4436', '4.4436', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100657, '2022-07-15', 2167, 95004, 5935, NULL, '1.0000', '1.7907', '1.7907', '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 (100658, '2022-07-15', 1688, 95005, 5935, 58151, '1.0000', '22.9150', '22.9150', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100659, '2022-07-15', 2068, 95006, 5935, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100660, '2022-07-15', 2315, 95007, 5935, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100661, '2022-07-16', 1432, 95008, 5936, 58198, '1.0000', '12.5636', '12.5636', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100662, '2022-07-16', 2237, 95009, 5936, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100663, '2022-07-16', 1513, 95010, 5936, 56433, '1.0000', '13.4840', '13.4840', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100664, '2022-07-16', 1519, 95011, 5936, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100665, '2022-07-16', 9811, 95012, 5936, NULL, '1.0000', '4.9200', '4.9200', '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 (100666, '2022-07-16', 9214, 95013, 5936, NULL, '1.0000', '17.5000', '17.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 (100667, '2022-07-16', 2916, 95014, 5936, NULL, '1.0000', '4209.2937', '4209.2937', '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 (100668, '2022-07-16', 1863, 95015, 5936, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100669, '2022-07-16', 1519, 95016, 5936, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100670, '2022-07-16', 2612, 95017, 5936, 56385, '1.0000', '10.8600', '10.8600', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100671, '2022-07-16', 1530, 95018, 5936, NULL, '1.0000', '90.0000', '90.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 (100672, '2022-07-16', 1863, 95019, 5936, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100673, '2022-07-16', 2252, 95020, 5936, 55710, '1.0000', '14.1056', '14.1056', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100674, '2022-07-16', 1863, 95021, 5936, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100675, '2022-07-16', 2379, 95022, 5936, NULL, '1.0000', '-14.1447', '-14.1447', '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 (100676, '2022-07-16', 1787, 95023, 5936, NULL, '1.0000', '0.5000', '0.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 (100677, '2022-07-16', 1837, 95024, 5936, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100678, '2022-07-16', 1905, 95025, 5936, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100679, '2022-07-16', 1912, 95026, 5936, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100680, '2022-07-16', 2283, 95027, 5936, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100681, '2022-07-16', 9959, 95028, 5936, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100682, '2022-07-16', 2242, 95029, 5936, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '57.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100683, '2022-07-16', 1837, 95030, 5936, 58241, '1.0000', '2.5422', '2.5422', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100684, '2022-07-16', 2821, 95031, 5936, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100685, '2022-07-16', 7744, 95032, 5936, NULL, '1.0000', '2.5833', '2.5833', '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 (100686, '2022-07-16', 1425, 95033, 5936, NULL, '1.0000', '86.3183', '86.3183', '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 (100687, '2022-07-16', 2169, 95034, 5936, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100688, '2022-07-16', 8735, 95035, 5936, NULL, '1.0000', '7.1000', '7.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 (100689, '2022-07-16', 2221, 95036, 5936, NULL, '1.0000', '2.3805', '2.3805', '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 (100690, '2022-07-16', 1864, 95037, 5936, 34594, '1.0000', '6.2625', '6.2625', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100691, '2022-07-16', 2643, 95038, 5936, 59003, '2.0000', '1.0097', '1.0097', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100692, '2022-07-16', 2167, 95039, 5936, NULL, '1.0000', '1.7907', '1.7907', '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 (100693, '2022-07-16', 8184, 95040, 5936, NULL, '10.0000', '3.0310', '3.0310', '4.0000', '4.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 (100694, '2022-07-16', 2107, 95041, 5936, 31964, '2.0000', '0.2500', '0.2500', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100695, '2022-07-16', 2068, 95042, 5936, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100696, '2022-07-16', 3073, 95043, 5936, 25163, '1.0000', '5.5000', '5.5000', '7.5000', '7.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 (100697, '2022-07-16', 9732, 95044, 5937, 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 (100698, '2022-07-16', 1843, 95045, 5937, 16249, '-30.0000', '4.3000', '4.3000', '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 (100699, '2022-07-16', 1843, 95045, 5937, NULL, '44.0000', '4.3000', '4.3000', '6.5000', '6.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100700, '2022-07-16', 2169, 95046, 5937, 10737, '-183.0000', '3.8397', '3.8397', '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 (100701, '2022-07-16', 2169, 95046, 5937, NULL, '184.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-184.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100702, '2022-07-16', 2315, 95047, 5937, 2735, '-547.0000', '0.3300', '0.3300', '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 (100703, '2022-07-16', 2315, 95047, 5937, NULL, '549.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-549.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100704, '2022-07-16', 9742, 95048, 5937, 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 (100705, '2022-07-16', 2062, 95049, 5937, 2165, '-7.0000', '5.7540', '5.7540', '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 (100706, '2022-07-16', 2062, 95049, 5937, NULL, '8.0000', '5.7540', '5.7540', '15.0000', '15.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 (100707, '2022-07-16', 1409, 95050, 5937, NULL, '2.0000', '13.0000', '13.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 (100708, '2022-07-16', 2415, 95051, 5937, 4656, '-17.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 (100709, '2022-07-16', 2415, 95051, 5937, NULL, '18.0000', '5.0000', '5.0000', '7.0000', '7.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 (100710, '2022-07-16', 1736, 95052, 5937, 7382, '-14.0000', '-6.2282', '-6.2282', '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 (100711, '2022-07-16', 1736, 95052, 5937, NULL, '16.0000', '-6.2282', '-6.2282', '50.0000', '50.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 (100712, '2022-07-16', 1528, 95053, 5937, NULL, '1.0000', '38.6400', '38.6400', '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 (100713, '2022-07-16', 9729, 95054, 5937, NULL, '1.0000', '0.6200', '0.6200', '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 (100714, '2022-07-16', 2643, 95055, 5937, NULL, '1.0000', '0.8700', '0.8700', '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 (100715, '2022-07-16', 2923, 95056, 5937, 18780, '-2.0000', '11.1200', '11.1200', '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 (100716, '2022-07-16', 2923, 95056, 5937, NULL, '3.0000', '11.1200', '11.1200', '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 (100717, '2022-07-16', 2366, 95057, 5937, 3833, '-70.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 (100718, '2022-07-16', 2366, 95057, 5937, NULL, '72.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-72.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100719, '2022-07-16', 2339, 95058, 5937, 3842, '-8.0000', '7.2300', '7.2300', '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 (100720, '2022-07-16', 2339, 95058, 5937, NULL, '9.0000', '7.2300', '7.2300', '15.5000', '15.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 (100721, '2022-07-16', 2221, 95059, 5937, 4154, '-74.0000', '14.4737', '14.4737', '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 (100722, '2022-07-16', 2221, 95059, 5937, NULL, '76.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100723, '2022-07-16', 2135, 95060, 5937, 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 (100724, '2022-07-16', 1612, 95061, 5937, 8732, '-12.0000', '1.6000', '1.6000', '2.6400', '2.6400', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100725, '2022-07-16', 1612, 95061, 5937, NULL, '14.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-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 (100726, '2022-07-16', 1961, 95062, 5937, 4501, '-5.0000', '20.4530', '20.4530', '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 (100727, '2022-07-16', 1961, 95062, 5937, NULL, '6.0000', '20.4530', '20.4530', '35.0000', '35.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 (100728, '2022-07-16', 1307, 95063, 5938, NULL, '1.0000', '-59.9897', '-59.9897', '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 (100729, '2022-07-16', 7817, 95064, 5939, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100730, '2022-07-16', 9695, 95065, 5939, 59001, '1.0000', '5.3806', '5.3806', '8.0000', '8.0000', '27.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100731, '2022-07-16', 1335, 95066, 5939, 53240, '1.0000', '1.1969', '1.1969', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100732, '2022-07-16', 8740, 95067, 5939, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100733, '2022-07-16', 7777, 95068, 5940, NULL, '1.0000', '8.2500', '8.2500', '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 (100734, '2022-07-16', 9695, 95069, 5940, 58488, '1.0000', '5.8111', '5.8111', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100735, '2022-07-16', 7674, 95070, 5940, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100736, '2022-07-16', 7411, 95071, 5940, 58390, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100737, '2022-07-16', 1557, 95072, 5940, 57609, '1.0000', '8.0725', '8.0725', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100738, '2022-07-16', 9275, 95073, 5940, NULL, '2.0000', '6.3000', '6.3000', '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 (100739, '2022-07-16', 7473, 95074, 5940, 58462, '7.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100740, '2022-07-16', 7641, 95075, 5940, 58496, '2.0000', '7.0929', '7.0929', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100741, '2022-07-16', 7482, 95076, 5940, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100742, '2022-07-16', 9785, 95077, 5940, 53927, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 451);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100743, '2022-07-16', 1837, 95078, 5940, 56551, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100744, '2022-07-16', 8097, 95079, 5940, 57444, '3.0000', '5.2765', '5.2765', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100745, '2022-07-16', 8677, 95080, 5940, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100746, '2022-07-16', 7333, 95081, 5940, NULL, '1.0000', '-5.7451', '-5.7451', '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 (100747, '2022-07-16', 7750, 95082, 5940, 51808, '1.0000', '43.7502', '43.7502', '61.0000', '61.0000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100748, '2022-07-16', 7473, 95083, 5940, 58462, '2.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '10.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100749, '2022-07-16', 1532, 95084, 5940, NULL, '3.0000', '90.0000', '90.0000', '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 (100750, '2022-07-16', 2315, 95085, 5940, 57597, '3.0000', '0.7562', '0.7562', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100751, '2022-07-16', 7911, 95086, 5940, 56650, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100752, '2022-07-16', 8203, 95087, 5940, 57407, '2.0000', '2.0908', '2.0908', '0.7000', '0.7000', '37.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100753, '2022-07-16', 7989, 95088, 5940, NULL, '1.0000', '775.2804', '775.2804', '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 (100754, '2022-07-16', 7544, 95089, 5940, NULL, '3.0000', '9.4300', '9.4300', '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 (100755, '2022-07-16', 7877, 95090, 5940, NULL, '1.0000', '-69.7916', '-69.7916', '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 (100756, '2022-07-16', 8965, 95091, 5940, NULL, '1.0000', '-263.2470', '-263.2470', '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 (100757, '2022-07-16', 7685, 95092, 5940, NULL, '2.0000', '31.2000', '31.2000', '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 (100758, '2022-07-16', 7542, 95093, 5940, NULL, '1.0000', '4.7100', '4.7100', '5.0300', '5.0300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100759, '2022-07-16', 9724, 95094, 5940, 57621, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100760, '2022-07-16', 9834, 95095, 5940, 58405, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100761, '2022-07-16', 9740, 95096, 5940, 58400, '1.0000', '0.6661', '0.6661', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100762, '2022-07-16', 8677, 95097, 5940, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100763, '2022-07-16', 7316, 95098, 5940, 57459, '1.0000', '0.9231', '0.9231', '1.3000', '1.3000', '39.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100764, '2022-07-16', 9946, 95099, 5940, 58505, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100765, '2022-07-16', 7518, 95100, 5940, 58490, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100766, '2022-07-16', 7459, 95101, 5940, NULL, '20.0000', '3.0559', '3.0559', '4.0000', '4.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 (100767, '2022-07-16', 7642, 95102, 5940, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100768, '2022-07-16', 7473, 95103, 5940, 58462, '3.0000', '-105.4026', '-105.4026', '0.7000', '0.7000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100769, '2022-07-16', 7867, 95104, 5940, 57203, '1.0000', '2.3130', '2.3130', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100770, '2022-07-16', 7867, 95104, 5940, NULL, '1.0000', '2.3130', '2.3130', '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 (100771, '2022-07-16', 9463, 95105, 5940, 56606, '1.0000', '3.7096', '3.7096', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100772, '2022-07-16', 1501, 95106, 5940, 56582, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100773, '2022-07-16', 7859, 95107, 5940, 56597, '1.0000', '13.2900', '13.2900', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100774, '2022-07-16', 9943, 95108, 5940, 57189, '1.0000', '10.5500', '10.5500', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100775, '2022-07-16', 7642, 95109, 5940, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100776, '2022-07-16', 9275, 95110, 5940, NULL, '2.0000', '6.3000', '6.3000', '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 (100777, '2022-07-16', 1935, 95111, 5940, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '101.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100778, '2022-07-16', 8062, 95112, 5940, NULL, '5.0000', '4.8200', '4.8200', '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 (100779, '2022-07-16', 8395, 95113, 5940, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100780, '2022-07-16', 7317, 95114, 5940, 58407, '1.0000', '15.4618', '15.4618', '22.5000', '22.5000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100781, '2022-07-16', 7632, 95115, 5940, 54290, '1.0000', '12.0422', '12.0422', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100782, '2022-07-16', 2522, 95116, 5940, NULL, '1.0000', '4.8000', '4.8000', '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 (100783, '2022-07-16', 7642, 95117, 5940, 54746, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100784, '2022-07-16', 7657, 95118, 5940, 58454, '1.0000', '-24.6674', '-24.6674', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100785, '2022-07-16', 2287, 95119, 5940, NULL, '1.0000', '3.1699', '3.1699', '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 (100786, '2022-07-16', 7593, 95120, 5940, 58440, '2.0000', '2.9567', '2.9567', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100787, '2022-07-16', 8053, 95121, 5940, 56579, '2.0000', '1.1052', '1.1052', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100788, '2022-07-16', 7782, 95122, 5940, NULL, '2.0000', '5.0000', '5.0000', '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 (100789, '2022-07-16', 7819, 95123, 5940, 57601, '1.0000', '12.7495', '12.7495', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100790, '2022-07-16', 1855, 95124, 5940, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100791, '2022-07-16', 9894, 95125, 5940, 56574, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100792, '2022-07-16', 7782, 95126, 5940, NULL, '1.0000', '5.0000', '5.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 (100793, '2022-07-16', 7509, 95127, 5940, 58441, '1.0000', '9.6089', '9.6089', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100794, '2022-07-16', 7674, 95128, 5940, 58512, '2.0000', '100.1868', '100.1868', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100795, '2022-07-16', 1990, 95129, 5940, 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 (100796, '2022-07-16', 7672, 95130, 5940, 58391, '2.0000', '0.3513', '0.3513', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100797, '2022-07-16', 7514, 95131, 5940, NULL, '3.0000', '-19420.5252', '-19420.5252', '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 (100798, '2022-07-16', 7715, 95132, 5940, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100799, '2022-07-16', 8680, 95133, 5940, NULL, '1.0000', '2.0000', '2.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 (100800, '2022-07-16', 7317, 95134, 5940, 58407, '1.0000', '15.4618', '15.4618', '22.5000', '22.5000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100801, '2022-07-16', 7674, 95135, 5940, 58512, '1.0000', '100.1868', '100.1868', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100802, '2022-07-16', 1760, 95136, 5940, 57610, '2.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100803, '2022-07-16', 8203, 95137, 5940, 57407, '2.0000', '2.0908', '2.0908', '0.7000', '0.7000', '37.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100804, '2022-07-16', 7674, 95138, 5940, 58512, '2.0000', '100.1868', '100.1868', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100805, '2022-07-16', 9089, 95139, 5941, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100806, '2022-07-16', 2169, 95140, 5941, 57981, '2.0000', '1.3557', '1.3557', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100807, '2022-07-16', 2384, 95141, 5941, 58658, '5.0000', '0.4170', '0.4170', '0.8000', '0.8000', '88.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100808, '2022-07-16', 9747, 95142, 5941, 49848, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100809, '2022-07-16', 9794, 95143, 5941, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100810, '2022-07-16', 1812, 95144, 5941, 58648, '2.0000', '8.4873', '8.4873', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100811, '2022-07-16', 2020, 95145, 5941, 58661, '1.0000', '6.4673', '6.4673', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100812, '2022-07-16', 8079, 95146, 5941, 58582, '2.0000', '14.2100', '14.2100', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100813, '2022-07-16', 2236, 95147, 5941, 56244, '1.0000', '5.9676', '5.9676', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100814, '2022-07-16', 1863, 95148, 5941, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100815, '2022-07-16', 1432, 95149, 5941, 58767, '1.0000', '11.3050', '11.3050', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100816, '2022-07-16', 2135, 95150, 5941, NULL, '1.0000', '2.2504', '2.2504', '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 (100817, '2022-07-16', 1863, 95151, 5941, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100818, '2022-07-16', 2020, 95152, 5941, 58661, '1.0000', '6.4673', '6.4673', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100819, '2022-07-16', 1660, 95153, 5941, 44783, '1.0000', '75.8375', '75.8375', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100820, '2022-07-16', 2858, 95154, 5941, 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 (100821, '2022-07-16', 2440, 95155, 5941, 59061, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100822, '2022-07-16', 1410, 95156, 5941, 56900, '1.0000', '2.8637', '2.8637', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100823, '2022-07-16', 2486, 95157, 5941, 21821, '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 (100824, '2022-07-16', 2295, 95158, 5941, 58759, '2.0000', '1.4606', '1.4606', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100825, '2022-07-16', 8208, 95159, 5941, NULL, '1.0000', '33.0000', '33.0000', '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 (100826, '2022-07-16', 2068, 95160, 5941, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100827, '2022-07-16', 7358, 95161, 5941, NULL, '1.0000', '18.8000', '18.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 (100828, '2022-07-16', 9940, 95162, 5941, 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 (100829, '2022-07-16', 2762, 95163, 5941, 55780, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100830, '2022-07-16', 1650, 95164, 5941, 58642, '1.0000', '15.0971', '15.0971', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100831, '2022-07-16', 1519, 95165, 5941, 58634, '1.0000', '3.4435', '3.4435', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100832, '2022-07-16', 7518, 95166, 5942, 58490, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100833, '2022-07-16', 7678, 95167, 5942, 57430, '1.0000', '9.7900', '9.7900', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100834, '2022-07-16', 7324, 95168, 5942, 58401, '1.0000', '6.3200', '6.3200', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100835, '2022-07-16', 7401, 95169, 5942, 56034, '1.0000', '68.8333', '68.8333', '98.5000', '98.5000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100836, '2022-07-16', 2279, 95170, 5942, 56502, '1.0000', '2.7380', '2.7380', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100837, '2022-07-16', 1935, 95171, 5942, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '100.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100838, '2022-07-16', 8000, 95172, 5942, NULL, '1.0000', '1040.0222', '1040.0222', '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 (100839, '2022-07-16', 2607, 95173, 5942, NULL, '4.0000', '1.4000', '1.4000', '1.7000', '1.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 (100840, '2022-07-16', 9740, 95174, 5942, 58400, '1.0000', '0.6661', '0.6661', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100841, '2022-07-16', 2295, 95175, 5942, NULL, '3.0000', '-2.3086', '-2.3086', '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 (100842, '2022-07-16', 7554, 95176, 5942, 53774, '10.0000', '2.1763', '2.1763', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100843, '2022-07-16', 2100, 95177, 5942, 57157, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100844, '2022-07-16', 7591, 95178, 5942, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100845, '2022-07-16', 9740, 95179, 5942, 58400, '1.0000', '0.6661', '0.6661', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100846, '2022-07-16', 7506, 95180, 5942, NULL, '1.0000', '15.0000', '15.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 (100847, '2022-07-16', 9751, 95181, 5942, 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 (100848, '2022-07-16', 8325, 95182, 5942, 52019, '1.0000', '1.1625', '1.1625', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100849, '2022-07-16', 2315, 95183, 5942, 57597, '4.0000', '0.7562', '0.7562', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100850, '2022-07-16', 7411, 95184, 5942, 58390, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100851, '2022-07-16', 7609, 95185, 5942, NULL, '1.0000', '101.4174', '101.4174', '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 (100852, '2022-07-16', 1875, 95186, 5942, NULL, '20.0000', '90.0000', '90.0000', '3.7000', '3.7000', '-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 (100853, '2022-07-16', 9695, 95187, 5942, 58488, '1.0000', '5.8111', '5.8111', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100854, '2022-07-16', 7411, 95188, 5942, 58390, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100855, '2022-07-16', 1935, 95189, 5942, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '100.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100856, '2022-07-16', 9399, 95190, 5942, NULL, '1.0000', '0.9754', '0.9754', '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 (100857, '2022-07-16', 7715, 95191, 5942, 57589, '1.0000', '3.8794', '3.8794', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100858, '2022-07-16', 7765, 95192, 5942, NULL, '2.0000', '16.0000', '16.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 (100859, '2022-07-16', 8168, 95193, 5942, NULL, '1.0000', '5.2500', '5.2500', '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 (100860, '2022-07-16', 1810, 95194, 5942, NULL, '1.0000', '8.7500', '8.7500', '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 (100861, '2022-07-16', 8596, 95195, 5943, NULL, '1.0000', '39.8982', '39.8982', '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 (100862, '2022-07-17', 1908, 95196, 5944, NULL, '1.0000', '0.9032', '0.9032', '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 (100863, '2022-07-17', 8844, 95197, 5944, 55695, '1.0000', '4.0579', '4.0579', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100864, '2022-07-17', 2169, 95198, 5944, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100865, '2022-07-17', 2379, 95199, 5944, NULL, '1.0000', '-14.1447', '-14.1447', '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 (100866, '2022-07-17', 1837, 95200, 5944, 58241, '1.0000', '2.5422', '2.5422', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100867, '2022-07-17', 9565, 95201, 5944, NULL, '1.0000', '4.5000', '4.5000', '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 (100868, '2022-07-17', 2643, 95202, 5944, 59003, '1.0000', '1.0097', '1.0097', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100869, '2022-07-17', 9867, 95203, 5944, 55528, '1.0000', '12.9429', '12.9429', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100870, '2022-07-17', 7500, 95204, 5944, 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 (100871, '2022-07-17', 9715, 95205, 5944, 58139, '1.0000', '10.1143', '10.1143', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100872, '2022-07-17', 1501, 95206, 5944, NULL, '1.0000', '0.6299', '0.6299', '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 (100873, '2022-07-17', 1386, 95207, 5944, 57759, '1.0000', '4.5308', '4.5308', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100874, '2022-07-17', 8183, 95208, 5944, NULL, '1.0000', '2774.2425', '2774.2425', '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 (100875, '2022-07-17', 1674, 95209, 5944, 55572, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100876, '2022-07-17', 1953, 95210, 5944, 58130, '1.0000', '2.6515', '2.6515', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100877, '2022-07-17', 2105, 95211, 5944, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100878, '2022-07-17', 2416, 95212, 5944, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100879, '2022-07-17', 9565, 95213, 5944, NULL, '1.0000', '4.5000', '4.5000', '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 (100880, '2022-07-17', 2228, 95214, 5944, 59035, '1.0000', '33.0000', '33.0000', '37.0000', '37.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100881, '2022-07-17', 2016, 95215, 5944, 57143, '1.0000', '9.3333', '9.3333', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100882, '2022-07-17', 8878, 95216, 5944, NULL, '1.0000', '3.8136', '3.8136', '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 (100883, '2022-07-17', 1490, 95217, 5945, 49642, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100884, '2022-07-17', 1746, 95218, 5945, 56417, '1.0000', '4.6178', '4.6178', '8.0000', '8.0000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100885, '2022-07-17', 7806, 95219, 5946, NULL, '4.0000', '226.1990', '226.1990', '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 (100886, '2022-07-17', 8657, 95220, 5946, 56004, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100887, '2022-07-17', 8457, 95221, 5946, NULL, '1.0000', '-8.0516', '-8.0516', '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 (100888, '2022-07-17', 1501, 95222, 5946, 56582, '1.0000', '2.6357', '2.6357', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100889, '2022-07-17', 7713, 95223, 5946, 50666, '2.0000', '0.3910', '0.3910', '0.6000', '0.6000', '95.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100890, '2022-07-17', 7640, 95224, 5946, 56029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100891, '2022-07-17', 1856, 95225, 5946, 57447, '1.0000', '0.0091', '0.0091', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100892, '2022-07-17', 2289, 95226, 5946, NULL, '4.0000', '2.5688', '2.5688', '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 (100893, '2022-07-17', 7453, 95227, 5946, 57636, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100894, '2022-07-17', 2315, 95228, 5946, 56594, '1.0000', '0.7562', '0.7562', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100895, '2022-07-17', 7334, 95229, 5946, 57417, '1.0000', '9.1591', '9.1591', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100896, '2022-07-17', 7334, 95229, 5946, 57210, '1.0000', '9.1591', '9.1591', '13.5000', '13.5000', '10.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100897, '2022-07-17', 8038, 95230, 5946, 57398, '1.0000', '6.7192', '6.7192', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100898, '2022-07-17', 1769, 95231, 5946, NULL, '1.0000', '26.8000', '26.8000', '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 (100899, '2022-07-17', 8359, 95232, 5946, 58495, '1.0000', '268.0082', '268.0082', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100900, '2022-07-17', 7385, 95233, 5946, 58497, '5.0000', '6.6482', '6.6482', '4.0000', '4.0000', '71.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100901, '2022-07-17', 9563, 95234, 5946, 42672, '1.0000', '5.1000', '5.1000', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100902, '2022-07-17', 9741, 95235, 5947, 57639, '2.0000', '7.7250', '7.7250', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100903, '2022-07-17', 8097, 95236, 5947, 57444, '3.0000', '5.2765', '5.2765', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100904, '2022-07-17', 9883, 95237, 5947, 54147, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100905, '2022-07-17', 1935, 95238, 5947, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '98.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100906, '2022-07-17', 1989, 95239, 5947, NULL, '1.0000', '6.7500', '6.7500', '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 (100907, '2022-07-17', 7473, 95240, 5947, NULL, '4.0000', '-105.4026', '-105.4026', '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 (100908, '2022-07-17', 7672, 95241, 5947, 58391, '1.0000', '0.3513', '0.3513', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100909, '2022-07-17', 8918, 95242, 5947, 56192, '1.0000', '3.2476', '3.2476', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100910, '2022-07-17', 8965, 95243, 5947, NULL, '1.0000', '-263.2470', '-263.2470', '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 (100911, '2022-07-17', 8053, 95244, 5947, 56579, '5.0000', '1.1052', '1.1052', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100912, '2022-07-17', 1325, 95245, 5948, NULL, '1.0000', '23.9800', '23.9800', '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 (100913, '2022-07-17', 7608, 95246, 5948, NULL, '1.0000', '6.9800', '6.9800', '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 (100914, '2022-07-17', 2295, 95247, 5948, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100915, '2022-07-17', 7848, 95248, 5949, NULL, '2.0000', '15.0000', '15.0000', '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 (100916, '2022-07-17', 8204, 95249, 5949, NULL, '4.0000', '1.5000', '1.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 (100917, '2022-07-17', 1521, 95250, 5949, NULL, '1.0000', '-217.8500', '-217.8500', '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 (100918, '2022-07-17', 7704, 95251, 5950, NULL, '1.0000', '0.4900', '0.4900', '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 (100919, '2022-07-17', 2010, 95252, 5950, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100920, '2022-07-17', 8101, 95253, 5951, NULL, '3.0000', '-0.2222', '-0.2222', '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 (100921, '2022-07-17', 7590, 95254, 5951, NULL, '1.0000', '6.0509', '6.0509', '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 (100922, '2022-07-17', 7523, 95255, 5951, 58499, '1.0000', '12.0597', '12.0597', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100923, '2022-07-17', 8596, 95256, 5951, NULL, '1.0000', '39.8982', '39.8982', '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 (100924, '2022-07-17', 7867, 95257, 5951, NULL, '2.0000', '2.3130', '2.3130', '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 (100925, '2022-07-17', 7514, 95258, 5952, NULL, '1.0000', '2.2500', '2.2500', '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 (100926, '2022-07-17', 1519, 95259, 5952, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100927, '2022-07-17', 8878, 95260, 5952, NULL, '1.0000', '3.8136', '3.8136', '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 (100928, '2022-07-17', 9762, 95261, 5952, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100929, '2022-07-17', 1307, 95262, 5952, NULL, '1.0000', '-59.9897', '-59.9897', '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 (100930, '2022-07-17', 2821, 95263, 5952, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100931, '2022-07-17', 1399, 95264, 5952, 53651, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100932, '2022-07-17', 9740, 95265, 5952, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100933, '2022-07-17', 8677, 95266, 5952, NULL, '2.0000', '630.6244', '630.6244', '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 (100934, '2022-07-17', 7886, 95267, 5952, NULL, '1.0000', '14.5000', '14.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 (100935, '2022-07-17', 2353, 95268, 5952, NULL, '1.0000', '-23.9980', '-23.9980', '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 (100936, '2022-07-17', 9834, 95269, 5952, NULL, '1.0000', '1.4500', '1.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 (100937, '2022-07-17', 7713, 95270, 5952, 57060, '1.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100938, '2022-07-17', 7713, 95270, 5952, 55577, '3.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100939, '2022-07-17', 2699, 95271, 5952, NULL, '1.0000', '3.5000', '3.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 (100940, '2022-07-17', 9204, 95272, 5952, NULL, '1.0000', '14.1514', '14.1514', '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 (100941, '2022-07-17', 2655, 95273, 5952, NULL, '1.0000', '-12.5505', '-12.5505', '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 (100942, '2022-07-17', 2295, 95274, 5952, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100943, '2022-07-17', 8677, 95275, 5952, NULL, '2.0000', '630.6244', '630.6244', '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 (100944, '2022-07-17', 3001, 95276, 5952, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100945, '2022-07-17', 2295, 95277, 5952, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100946, '2022-07-17', 2242, 95278, 5952, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100947, '2022-07-17', 2821, 95279, 5952, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100948, '2022-07-17', 2231, 95280, 5952, NULL, '1.0000', '-478.5015', '-478.5015', '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 (100949, '2022-07-17', 9030, 95281, 5952, 57805, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100950, '2022-07-17', 2098, 95282, 5952, 58188, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100951, '2022-07-17', 7339, 95283, 5952, NULL, '1.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100952, '2022-07-17', 8124, 95284, 5952, 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 (100953, '2022-07-17', 1519, 95285, 5952, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100954, '2022-07-17', 1785, 95286, 5952, 58167, '1.0000', '17.5552', '17.5552', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100955, '2022-07-17', 9794, 95287, 5952, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '75.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100956, '2022-07-17', 1310, 95288, 5952, 57744, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100957, '2022-07-17', 1411, 95289, 5952, 57758, '1.0000', '25.9987', '25.9987', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100958, '2022-07-17', 1521, 95290, 5952, NULL, '1.0000', '-217.8500', '-217.8500', '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 (100959, '2022-07-17', 7713, 95291, 5952, 57060, '1.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100960, '2022-07-17', 7713, 95291, 5952, 55577, '1.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100961, '2022-07-17', 7514, 95292, 5952, NULL, '1.0000', '2.2500', '2.2500', '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 (100962, '2022-07-17', 2295, 95293, 5952, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100963, '2022-07-17', 9311, 95294, 5952, NULL, '2.0000', '7.8000', '7.8000', '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 (100964, '2022-07-17', 7411, 95295, 5952, NULL, '2.0000', '1.2819', '1.2819', '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 (100965, '2022-07-17', 1519, 95296, 5952, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100966, '2022-07-17', 1501, 95297, 5952, NULL, '1.0000', '0.6299', '0.6299', '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 (100967, '2022-07-17', 2068, 95298, 5952, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100968, '2022-07-17', 9399, 95299, 5952, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100969, '2022-07-17', 8333, 95300, 5952, NULL, '1.0000', '7.5900', '7.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 (100970, '2022-07-17', 2010, 95301, 5952, 58061, '3.0000', '1.1210', '1.1210', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100971, '2022-07-17', 9891, 95302, 5952, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100972, '2022-07-17', 8745, 95303, 5952, 58983, '1.0000', '14.1048', '14.1048', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100973, '2022-07-17', 7506, 95304, 5952, NULL, '1.0000', '15.0000', '15.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 (100974, '2022-07-17', 1818, 95305, 5952, 51648, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100975, '2022-07-17', 2250, 95306, 5952, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100976, '2022-07-17', 7483, 95307, 5952, NULL, '1.0000', '0.4200', '0.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 (100977, '2022-07-17', 1306, 95308, 5952, NULL, '3.0000', '2.1000', '2.1000', '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 (100978, '2022-07-17', 1519, 95309, 5952, 48674, '1.0000', '3.7571', '3.7571', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100979, '2022-07-17', 2342, 95310, 5952, 58159, '3.0000', '2.3666', '2.3666', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100980, '2022-07-17', 9740, 95311, 5952, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '90.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100981, '2022-07-17', 7743, 95312, 5952, NULL, '1.0000', '7.3900', '7.3900', '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 (100982, '2022-07-17', 2342, 95313, 5952, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100983, '2022-07-17', 8771, 95314, 5952, 58984, '1.0000', '7.1676', '7.1676', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100984, '2022-07-17', 9720, 95315, 5952, NULL, '1.0000', '10.6000', '10.6000', '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 (100985, '2022-07-17', 9736, 95316, 5952, 58161, '1.0000', '5.1722', '5.1722', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100986, '2022-07-17', 7411, 95317, 5952, NULL, '1.0000', '1.2819', '1.2819', '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 (100987, '2022-07-17', 2411, 95318, 5952, 56382, '2.0000', '1.6667', '1.6667', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100988, '2022-07-17', 1780, 95319, 5952, NULL, '1.0000', '95.5759', '95.5759', '60.5000', '60.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100989, '2022-07-17', 7518, 95320, 5953, NULL, '5.0000', '7.8200', '7.8200', '12.5000', '12.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 (100990, '2022-07-17', 2242, 95321, 5953, 3059, '-86.0000', '0.4800', '0.4800', '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 (100991, '2022-07-17', 2242, 95321, 5953, NULL, '89.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100992, '2022-07-17', 2768, 95322, 5953, 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 (100993, '2022-07-17', 7474, 95323, 5953, NULL, '1.0000', '67.6200', '67.6200', '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 (100994, '2022-07-17', 8721, 95324, 5953, NULL, '2.0000', '23.0000', '23.0000', '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 (100995, '2022-07-17', 2255, 95325, 5953, 2792, '-3.0000', '17.4900', '17.4900', '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 (100996, '2022-07-17', 2255, 95325, 5953, NULL, '4.0000', '17.4900', '17.4900', '32.5000', '32.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 (100997, '2022-07-17', 8208, 95326, 5953, NULL, '2.0000', '33.0000', '33.0000', '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 (100998, '2022-07-17', 1498, 95327, 5953, 19685, '-50.0000', '0.3300', '0.3300', '0.7000', '0.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 (100999, '2022-07-17', 1498, 95327, 5953, NULL, '52.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101000, '2022-07-17', 2414, 95328, 5953, 4620, '-29.0000', '3.4000', '3.4000', '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 (101001, '2022-07-17', 2414, 95328, 5953, NULL, '31.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-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 (101002, '2022-07-17', 7473, 95329, 5953, NULL, '1.0000', '0.5300', '0.5300', '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 (101003, '2022-07-17', 7641, 95330, 5953, NULL, '1.0000', '1.9000', '1.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 (101004, '2022-07-17', 7967, 95331, 5953, 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 (101005, '2022-07-17', 7509, 95332, 5953, 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 (101006, '2022-07-17', 7672, 95333, 5953, NULL, '1.0000', '1.0200', '1.0200', '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 (101007, '2022-07-17', 7411, 95334, 5953, NULL, '1.0000', '1.3500', '1.3500', '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 (101008, '2022-07-17', 7784, 95335, 5953, NULL, '2.0000', '4.2300', '4.2300', '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 (101009, '2022-07-17', 7824, 95336, 5953, 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 (101010, '2022-07-17', 2506, 95337, 5953, 16244, '-27.0000', '3.4900', '3.4900', '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 (101011, '2022-07-17', 2506, 95337, 5953, NULL, '28.0000', '3.4900', '3.4900', '6.5000', '6.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 (101012, '2022-07-17', 8925, 95338, 5953, NULL, '1.0000', '2.4000', '2.4000', '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 (101013, '2022-07-17', 7608, 95339, 5953, NULL, '1.0000', '6.9800', '6.9800', '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 (101014, '2022-07-17', 9729, 95340, 5953, NULL, '2.0000', '0.6200', '0.6200', '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 (101015, '2022-07-17', 7807, 95341, 5953, NULL, '3.0000', '2.1600', '2.1600', '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 (101016, '2022-07-17', 8207, 95342, 5953, NULL, '3.0000', '0.0000', '0.0000', '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 (101017, '2022-07-17', 7411, 95343, 5953, NULL, '1.0000', '1.3500', '1.3500', '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 (101018, '2022-07-17', 9272, 95344, 5953, NULL, '1.0000', '3.1000', '3.1000', '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 (101019, '2022-07-17', 7672, 95345, 5953, NULL, '1.0000', '1.0200', '1.0200', '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 (101020, '2022-07-17', 7707, 95346, 5953, NULL, '1.0000', '7.0000', '7.0000', '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 (101021, '2022-07-17', 8883, 95347, 5953, NULL, '2.0000', '56.5500', '56.5500', '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 (101022, '2022-07-17', 7411, 95348, 5953, NULL, '2.0000', '1.3500', '1.3500', '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 (101023, '2022-07-17', 1935, 95349, 5953, 5586, '-179.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 (101024, '2022-07-17', 1935, 95349, 5953, NULL, '182.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-182.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101025, '2022-07-17', 7886, 95350, 5953, 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 (101026, '2022-07-17', 7524, 95351, 5953, NULL, '1.0000', '11.9500', '11.9500', '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 (101027, '2022-07-17', 9760, 95352, 5953, NULL, '1.0000', '1.1000', '1.1000', '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 (101028, '2022-07-17', 8083, 95353, 5953, NULL, '1.0000', '26.0000', '26.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 (101029, '2022-07-17', 8767, 95354, 5953, NULL, '1.0000', '6.6900', '6.6900', '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 (101030, '2022-07-17', 7744, 95355, 5953, 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 (101031, '2022-07-17', 7674, 95356, 5953, NULL, '1.0000', '1.3000', '1.3000', '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 (101032, '2022-07-17', 7514, 95357, 5953, NULL, '1.0000', '2.2500', '2.2500', '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 (101033, '2022-07-17', 8444, 95358, 5953, 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 (101034, '2022-07-17', 8810, 95359, 5953, NULL, '1.0000', '1.6000', '1.6000', '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 (101035, '2022-07-17', 7457, 95360, 5953, NULL, '2.0000', '6.0000', '6.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 (101036, '2022-07-17', 9272, 95361, 5953, NULL, '1.0000', '3.1000', '3.1000', '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 (101037, '2022-07-17', 7917, 95362, 5953, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101038, '2022-07-17', 9740, 95363, 5953, NULL, '1.0000', '0.6600', '0.6600', '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 (101039, '2022-07-17', 8690, 95364, 5953, NULL, '1.0000', '10.8000', '10.8000', '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 (101040, '2022-07-17', 9699, 95365, 5953, 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 (101041, '2022-07-17', 2379, 95366, 5954, 58652, '1.0000', '2.0012', '2.0012', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101042, '2022-07-17', 2416, 95367, 5954, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101043, '2022-07-17', 7357, 95368, 5954, NULL, '1.0000', '12.2000', '12.2000', '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 (101044, '2022-07-17', 9750, 95369, 5954, 46052, '1.0000', '3.3000', '3.3000', '4.5000', '4.5000', '30.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101045, '2022-07-17', 2315, 95370, 5954, 3069, '2.0000', '0.3300', '0.3300', '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 (101046, '2022-07-17', 1602, 95371, 5954, 56909, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101047, '2022-07-17', 2893, 95372, 5954, 58614, '1.0000', '6.6885', '6.6885', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101048, '2022-07-17', 1602, 95373, 5954, 56909, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101049, '2022-07-17', 7324, 95374, 5954, NULL, '1.0000', '55.7000', '55.7000', '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 (101050, '2022-07-17', 9649, 95375, 5954, 58793, '1.0000', '16.8809', '16.8809', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101051, '2022-07-17', 1411, 95376, 5954, 58604, '1.0000', '25.9575', '25.9575', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101052, '2022-07-17', 1411, 95376, 5954, 53254, '1.0000', '25.9575', '25.9575', '35.0000', '35.0000', '5.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101053, '2022-07-17', 1499, 95377, 5954, 58613, '2.0000', '0.4612', '0.4612', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101054, '2022-07-17', 2169, 95378, 5954, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101055, '2022-07-17', 1602, 95379, 5954, 56909, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '17.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101056, '2022-07-17', 2228, 95380, 5954, 59060, '1.0000', '26.9754', '26.9754', '37.0000', '37.0000', '0.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101057, '2022-07-17', 9089, 95381, 5954, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101058, '2022-07-17', 8743, 95382, 5954, 56834, '1.0000', '11.1938', '11.1938', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101059, '2022-07-17', 8759, 95383, 5954, 55448, '1.0000', '9.6666', '9.6666', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101060, '2022-07-17', 9089, 95384, 5954, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101061, '2022-07-17', 8759, 95385, 5954, 55448, '1.0000', '9.6666', '9.6666', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101062, '2022-07-17', 9089, 95386, 5954, 58000, '3.0000', '5.2244', '5.2244', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101063, '2022-07-17', 7385, 95387, 5954, 57945, '10.0000', '2.6553', '2.6553', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101064, '2022-07-17', 1602, 95388, 5954, 56909, '2.0000', '7.0096', '7.0096', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101065, '2022-07-17', 7736, 95389, 5955, NULL, '1.0000', '16.2000', '16.2000', '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 (101066, '2022-07-17', 1399, 95390, 5955, NULL, '1.0000', '13.3890', '13.3890', '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 (101067, '2022-07-17', 8074, 95391, 5955, NULL, '1.0000', '25.3504', '25.3504', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101068, '2022-07-17', 1672, 95392, 5956, 58624, '10.0000', '12.2469', '12.2469', '5.5000', '5.5000', '40.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101069, '2022-07-17', 9747, 95393, 5956, 49848, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101070, '2022-07-17', 2344, 95394, 5956, 55799, '1.0000', '19.8747', '19.8747', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101071, '2022-07-17', 7385, 95395, 5956, 57945, '2.0000', '2.6553', '2.6553', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101072, '2022-07-17', 2347, 95396, 5956, 3884, '1.0000', '5.2000', '5.2000', '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 (101073, '2022-07-17', 1555, 95397, 5956, 58597, '1.0000', '55.2617', '55.2617', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101074, '2022-07-17', 2061, 95398, 5956, 56746, '1.0000', '12.3044', '12.3044', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101075, '2022-07-17', 7886, 95399, 5956, 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 (101076, '2022-07-17', 1904, 95400, 5956, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101077, '2022-07-17', 2169, 95401, 5956, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101078, '2022-07-17', 1519, 95402, 5956, 58634, '1.0000', '3.4435', '3.4435', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101079, '2022-07-17', 2263, 95403, 5956, 56910, '1.0000', '5.2300', '5.2300', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101080, '2022-07-17', 1888, 95404, 5956, 58762, '1.0000', '17.1841', '17.1841', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101081, '2022-07-17', 7358, 95405, 5956, NULL, '2.0000', '18.8000', '18.8000', '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 (101082, '2022-07-17', 3057, 95406, 5956, 54621, '2.0000', '3.2824', '3.2824', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101083, '2022-07-17', 2167, 95407, 5957, NULL, '1.0000', '1.7907', '1.7907', '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 (101084, '2022-07-17', 2250, 95408, 5957, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101085, '2022-07-17', 7483, 95409, 5957, 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 (101086, '2022-07-18', 9933, 95410, 5958, 57114, '1.0000', '16.9000', '16.9000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101087, '2022-07-18', 1912, 95411, 5958, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101088, '2022-07-18', 2038, 95412, 5958, 59005, '1.0000', '15.0599', '15.0599', '22.0000', '22.0000', '8.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101089, '2022-07-18', 2012, 95413, 5958, 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 (101090, '2022-07-18', 1340, 95414, 5958, 58179, '1.0000', '3.6001', '3.6001', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101091, '2022-07-18', 8017, 95415, 5958, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101092, '2022-07-18', 1912, 95416, 5958, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101093, '2022-07-18', 2297, 95417, 5958, NULL, '1.0000', '10.3086', '10.3086', '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 (101094, '2022-07-18', 1335, 95418, 5958, 53240, '1.0000', '1.1969', '1.1969', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101095, '2022-07-18', 1334, 95419, 5958, 53239, '1.0000', '0.8419', '0.8419', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101096, '2022-07-18', 1331, 95420, 5958, NULL, '1.0000', '4.2000', '4.2000', '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 (101097, '2022-07-18', 1331, 95421, 5958, NULL, '1.0000', '4.2000', '4.2000', '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 (101098, '2022-07-18', 7531, 95422, 5958, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101099, '2022-07-18', 9770, 95423, 5958, 48585, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101100, '2022-07-18', 1743, 95424, 5958, NULL, '1.0000', '3.5650', '3.5650', '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 (101101, '2022-07-18', 1946, 95425, 5958, NULL, '1.0000', '-4.7391', '-4.7391', '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 (101102, '2022-07-18', 2948, 95426, 5958, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101103, '2022-07-18', 2643, 95427, 5958, 59003, '1.0000', '1.0097', '1.0097', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101104, '2022-07-18', 2352, 95428, 5959, NULL, '4.0000', '126.2588', '126.2588', '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 (101105, '2022-07-18', 2262, 95429, 5959, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101106, '2022-07-18', 1746, 95430, 5959, 56417, '1.0000', '4.6178', '4.6178', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101107, '2022-07-18', 2015, 95431, 5959, 57144, '1.0000', '3.9255', '3.9255', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101108, '2022-07-18', 2015, 95431, 5959, 56863, '1.0000', '3.9255', '3.9255', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101109, '2022-07-18', 7558, 95432, 5959, NULL, '10.0000', '-37.0255', '-37.0255', '3.7000', '3.7000', '-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 (101110, '2022-07-18', 2617, 95433, 5959, NULL, '1.0000', '5.1800', '5.1800', '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 (101111, '2022-07-18', 1432, 95434, 5960, NULL, '1.0000', '8.1574', '8.1574', '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 (101112, '2022-07-18', 1785, 95435, 5960, 4903, '-9.0000', '4.8380', '4.8380', '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 (101113, '2022-07-18', 1785, 95435, 5960, NULL, '10.0000', '4.8380', '4.8380', '24.0000', '24.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 (101114, '2022-07-18', 1668, 95436, 5960, 3238, '-8.0000', '13.0442', '13.0442', '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 (101115, '2022-07-18', 1668, 95436, 5960, NULL, '9.0000', '13.0442', '13.0442', '20.0000', '20.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 (101116, '2022-07-18', 2416, 95437, 5960, 4745, '-35.0000', '1.2000', '1.2000', '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 (101117, '2022-07-18', 2416, 95437, 5960, NULL, '36.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (101118, '2022-07-18', 1342, 95438, 5960, 11264, '-25.0000', '6.8074', '6.8074', '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 (101119, '2022-07-18', 1342, 95438, 5960, NULL, '26.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-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 (101120, '2022-07-18', 1767, 95439, 5960, 4502, '-3.0000', '4.6052', '4.6052', '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 (101121, '2022-07-18', 1767, 95439, 5960, NULL, '4.0000', '4.6052', '4.6052', '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 (101122, '2022-07-18', 1590, 95440, 5960, 22260, '1.0000', '1.7100', '1.7100', '3.5000', '3.5000', '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 (101123, '2022-07-18', 1590, 95440, 5960, 20607, '1.0000', '1.7100', '1.7100', '3.5000', '3.5000', '49.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 (101124, '2022-07-18', 9848, 95441, 5960, NULL, '1.0000', '2.8000', '2.8000', '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 (101125, '2022-07-18', 2362, 95442, 5960, 3864, '-65.0000', '8.8300', '8.8300', '179.0000', '179.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101126, '2022-07-18', 2362, 95442, 5960, NULL, '67.0000', '8.8300', '8.8300', '179.0000', '179.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101127, '2022-07-18', 1686, 95443, 5960, NULL, '1.0000', '26.6000', '26.6000', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101128, '2022-07-18', 1541, 95444, 5960, 18018, '-5.0000', '19.0000', '19.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 (101129, '2022-07-18', 1541, 95444, 5960, NULL, '6.0000', '19.0000', '19.0000', '30.5000', '30.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 (101130, '2022-07-18', 8677, 95445, 5960, NULL, '3.0000', '1.2800', '1.2800', '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 (101131, '2022-07-18', 2518, 95446, 5960, 10167, '-2.0000', '120.7354', '120.7354', '157.0000', '157.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101132, '2022-07-18', 2518, 95446, 5960, NULL, '3.0000', '120.7354', '120.7354', '157.0000', '157.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 (101133, '2022-07-18', 2105, 95447, 5960, NULL, '1.0000', '1.3500', '1.3500', '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 (101134, '2022-07-18', 2221, 95448, 5960, 4154, '-76.0000', '14.4737', '14.4737', '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 (101135, '2022-07-18', 2221, 95448, 5960, NULL, '77.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101136, '2022-07-18', 1596, 95449, 5960, 8361, '-8.0000', '2.5700', '2.5700', '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 (101137, '2022-07-18', 1596, 95449, 5960, NULL, '9.0000', '2.5700', '2.5700', '5.0000', '5.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 (101138, '2022-07-18', 2169, 95450, 5960, 10737, '-184.0000', '3.8397', '3.8397', '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 (101139, '2022-07-18', 2169, 95450, 5960, NULL, '185.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-185.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101140, '2022-07-18', 1499, 95451, 5960, NULL, '2.0000', '0.4100', '0.4100', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101141, '2022-07-18', 2221, 95452, 5960, 4154, '-76.0000', '14.4737', '14.4737', '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 (101142, '2022-07-18', 2221, 95452, 5960, NULL, '77.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101143, '2022-07-18', 2893, 95453, 5960, 18242, '-16.0000', '6.0000', '6.0000', '9.5000', '9.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 (101144, '2022-07-18', 2893, 95453, 5960, NULL, '17.0000', '6.0000', '6.0000', '9.5000', '9.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 (101145, '2022-07-18', 7411, 95454, 5960, NULL, '1.0000', '1.3500', '1.3500', '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 (101146, '2022-07-18', 7339, 95455, 5960, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (101147, '2022-07-18', 1785, 95456, 5960, 4903, '-9.0000', '4.8380', '4.8380', '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 (101148, '2022-07-18', 1785, 95456, 5960, NULL, '10.0000', '4.8380', '4.8380', '24.0000', '24.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 (101149, '2022-07-18', 1668, 95457, 5960, 3238, '-8.0000', '13.0442', '13.0442', '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 (101150, '2022-07-18', 1668, 95457, 5960, NULL, '9.0000', '13.0442', '13.0442', '20.0000', '20.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 (101151, '2022-07-18', 1371, 95458, 5960, 10169, '-13.0000', '5.5000', '5.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 (101152, '2022-07-18', 1371, 95458, 5960, NULL, '14.0000', '5.5000', '5.5000', '10.0000', '10.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 (101153, '2022-07-18', 1812, 95459, 5960, 8224, '-107.0000', '7.8900', '7.8900', '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 (101154, '2022-07-18', 1812, 95459, 5960, NULL, '108.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-108.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101155, '2022-07-18', 1533, 95460, 5960, 10381, '-33.0000', '2.5917', '2.5917', '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 (101156, '2022-07-18', 1533, 95460, 5960, NULL, '34.0000', '2.5917', '2.5917', '6.5000', '6.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 (101157, '2022-07-18', 9762, 95461, 5960, 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 (101158, '2022-07-18', 2263, 95462, 5960, 2799, '-1.0000', '6.5600', '6.5600', '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 (101159, '2022-07-18', 2263, 95462, 5960, NULL, '2.0000', '6.5600', '6.5600', '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 (101160, '2022-07-18', 2237, 95463, 5961, 2781, '-78.0000', '1.0600', '1.0600', '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 (101161, '2022-07-18', 2237, 95463, 5961, NULL, '79.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101162, '2022-07-18', 7853, 95464, 5962, NULL, '1.0000', '13.0000', '13.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 (101163, '2022-07-18', 9291, 95465, 5962, NULL, '1.0000', '11.9000', '11.9000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101164, '2022-07-18', 8097, 95466, 5962, NULL, '4.0000', '3.4000', '3.4000', '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 (101165, '2022-07-18', 7321, 95467, 5962, NULL, '1.0000', '7.9500', '7.9500', '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 (101166, '2022-07-18', 7472, 95468, 5962, NULL, '1.0000', '4.1000', '4.1000', '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 (101167, '2022-07-18', 7967, 95469, 5962, 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 (101168, '2022-07-18', 7641, 95470, 5962, NULL, '1.0000', '1.9000', '1.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 (101169, '2022-07-18', 7514, 95471, 5962, NULL, '1.0000', '2.2500', '2.2500', '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 (101170, '2022-07-18', 9974, 95472, 5962, 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 (101171, '2022-07-18', 1743, 95473, 5962, 2162, '-3.0000', '3.9800', '3.9800', '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 (101172, '2022-07-18', 1743, 95473, 5962, NULL, '4.0000', '3.9800', '3.9800', '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 (101173, '2022-07-18', 2289, 95474, 5962, 2949, '-234.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 (101174, '2022-07-18', 2289, 95474, 5962, NULL, '236.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-236.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101175, '2022-07-18', 8063, 95475, 5962, NULL, '1.0000', '1.6000', '1.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 (101176, '2022-07-18', 2287, 95476, 5962, 2947, '-37.0000', '1.8000', '1.8000', '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 (101177, '2022-07-18', 2287, 95476, 5962, NULL, '41.0000', '1.8000', '1.8000', '4.0000', '4.0000', '-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 (101178, '2022-07-18', 7709, 95477, 5962, NULL, '2.0000', '3.5000', '3.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 (101179, '2022-07-18', 2868, 95478, 5962, NULL, '1.0000', '5.0000', '5.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 (101180, '2022-07-18', 7853, 95479, 5962, NULL, '1.0000', '13.0000', '13.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 (101181, '2022-07-18', 2332, 95480, 5962, 3835, '-22.0000', '5.8900', '5.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 (101182, '2022-07-18', 2332, 95480, 5962, NULL, '23.0000', '5.8900', '5.8900', '10.5000', '10.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 (101183, '2022-07-18', 8145, 95481, 5962, NULL, '1.0000', '28.0000', '28.0000', '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 (101184, '2022-07-18', 8158, 95482, 5962, NULL, '1.0000', '24.5000', '24.5000', '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 (101185, '2022-07-18', 7524, 95483, 5962, NULL, '1.0000', '11.9500', '11.9500', '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 (101186, '2022-07-18', 8918, 95484, 5962, NULL, '1.0000', '1.0400', '1.0400', '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 (101187, '2022-07-18', 2906, 95485, 5962, 18651, '-24.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 (101188, '2022-07-18', 2906, 95485, 5962, NULL, '25.0000', '2.6000', '2.6000', '4.0000', '4.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 (101189, '2022-07-18', 7473, 95486, 5962, NULL, '7.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (101190, '2022-07-18', 7711, 95487, 5962, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101191, '2022-07-18', 8763, 95488, 5962, NULL, '1.0000', '5.4000', '5.4000', '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 (101192, '2022-07-18', 1689, 95489, 5962, 4897, '-20.0000', '60.7198', '60.7198', '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 (101193, '2022-07-18', 1689, 95489, 5962, NULL, '21.0000', '60.7198', '60.7198', '21.0000', '21.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101194, '2022-07-18', 9534, 95490, 5962, NULL, '1.0000', '19.8900', '19.8900', '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 (101195, '2022-07-18', 7641, 95491, 5962, NULL, '1.0000', '1.9000', '1.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 (101196, '2022-07-18', 8767, 95492, 5962, NULL, '1.0000', '6.6900', '6.6900', '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 (101197, '2022-07-18', 9850, 95493, 5962, NULL, '1.0000', '17.6000', '17.6000', '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 (101198, '2022-07-18', 3080, 95494, 5962, 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 (101199, '2022-07-18', 8468, 95495, 5962, NULL, '1.0000', '10.0000', '10.0000', '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 (101200, '2022-07-18', 7634, 95496, 5962, NULL, '1.0000', '1.8000', '1.8000', '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 (101201, '2022-07-18', 7367, 95497, 5962, NULL, '2.0000', '9.1700', '9.1700', '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 (101202, '2022-07-18', 9943, 95498, 5962, NULL, '1.0000', '10.5500', '10.5500', '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 (101203, '2022-07-18', 7411, 95499, 5962, NULL, '1.0000', '1.3500', '1.3500', '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 (101204, '2022-07-18', 7967, 95500, 5962, 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 (101205, '2022-07-18', 9311, 95501, 5962, NULL, '1.0000', '6.6000', '6.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 (101206, '2022-07-18', 2351, 95502, 5963, 3854, '-5.0000', '17.7000', '17.7000', '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 (101207, '2022-07-18', 2351, 95502, 5963, NULL, '6.0000', '17.7000', '17.7000', '24.5000', '24.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 (101208, '2022-07-18', 7491, 95503, 5963, NULL, '1.0000', '5.6000', '5.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 (101209, '2022-07-18', 2320, 95504, 5963, 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 (101210, '2022-07-18', 9452, 95505, 5964, 58600, '1.0000', '53.2000', '53.2000', '66.0000', '66.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101211, '2022-07-18', 8746, 95506, 5965, 58001, '1.0000', '65.4820', '65.4820', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101212, '2022-07-18', 9827, 95507, 5965, 58583, '1.0000', '16.7034', '16.7034', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101213, '2022-07-18', 9748, 95508, 5965, 57974, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101214, '2022-07-18', 2567, 95509, 5965, 56837, '1.0000', '-77.0807', '-77.0807', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101215, '2022-07-18', 2233, 95510, 5965, 55867, '1.0000', '22.0646', '22.0646', '39.0000', '39.0000', '2.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101216, '2022-07-18', 1640, 95511, 5965, 58805, '1.0000', '5.2125', '5.2125', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101217, '2022-07-18', 2256, 95512, 5965, 55791, '1.0000', '15.2117', '15.2117', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101218, '2022-07-18', 1310, 95513, 5965, 57989, '10.0000', '0.4060', '0.4060', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101219, '2022-07-18', 7318, 95514, 5965, 58756, '1.0000', '11.1169', '11.1169', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101220, '2022-07-18', 1812, 95515, 5965, 58648, '1.0000', '8.4873', '8.4873', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101221, '2022-07-18', 1651, 95516, 5965, 58584, '1.0000', '7.9440', '7.9440', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101222, '2022-07-18', 9715, 95517, 5965, 58819, '1.0000', '9.6273', '9.6273', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101223, '2022-07-18', 9729, 95518, 5965, 46048, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101224, '2022-07-18', 2912, 95519, 5965, 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 (101225, '2022-07-18', 1912, 95520, 5965, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101226, '2022-07-18', 1528, 95521, 5965, 57943, '2.0000', '37.9774', '37.9774', '8.5000', '8.5000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101227, '2022-07-18', 1787, 95522, 5965, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '90.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101228, '2022-07-18', 9794, 95523, 5965, 58789, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101229, '2022-07-18', 1875, 95524, 5965, 55870, '10.0000', '73.8421', '73.8421', '3.7000', '3.7000', '74.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101230, '2022-07-18', 2299, 95525, 5965, 52254, '1.0000', '3.0771', '3.0771', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101231, '2022-07-18', 2169, 95526, 5965, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101232, '2022-07-18', 9939, 95527, 5965, 56848, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101233, '2022-07-18', 2169, 95528, 5965, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101234, '2022-07-18', 1841, 95529, 5965, 54426, '1.0000', '0.0701', '0.0701', '0.5000', '0.5000', '24.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101235, '2022-07-18', 1612, 95530, 5965, 58596, '1.0000', '11.6000', '11.6000', '2.6400', '2.6400', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101236, '2022-07-18', 2384, 95531, 5965, 58658, '20.0000', '0.4170', '0.4170', '0.8000', '0.8000', '68.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101237, '2022-07-18', 1736, 95532, 5965, 58629, '1.0000', '35.3158', '35.3158', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101238, '2022-07-18', 2354, 95533, 5965, 56731, '1.0000', '5.2506', '5.2506', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101239, '2022-07-18', 2821, 95534, 5965, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101240, '2022-07-18', 7674, 95535, 5966, NULL, '1.0000', '1.3000', '1.3000', '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 (101241, '2022-07-18', 7411, 95536, 5966, NULL, '1.0000', '1.3500', '1.3500', '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 (101242, '2022-07-18', 8360, 95537, 5966, NULL, '1.0000', '3.2300', '3.2300', '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 (101243, '2022-07-18', 2315, 95538, 5966, 2735, '-549.0000', '0.3300', '0.3300', '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 (101244, '2022-07-18', 2315, 95538, 5966, NULL, '554.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-554.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101245, '2022-07-18', 8466, 95539, 5966, NULL, '30.0000', '2.8900', '2.8900', '4.0000', '4.0000', '-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 (101246, '2022-07-18', 7651, 95540, 5966, NULL, '1.0000', '2.6700', '2.6700', '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 (101247, '2022-07-18', 7354, 95541, 5966, NULL, '1.0000', '0.3700', '0.3700', '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 (101248, '2022-07-18', 7509, 95542, 5966, 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 (101249, '2022-07-18', 7521, 95543, 5966, NULL, '1.0000', '15.5000', '15.5000', '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 (101250, '2022-07-18', 7674, 95544, 5966, NULL, '1.0000', '1.3000', '1.3000', '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 (101251, '2022-07-18', 7591, 95545, 5966, NULL, '1.0000', '2.7500', '2.7500', '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 (101252, '2022-07-18', 2283, 95546, 5966, 2943, '-30.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 (101253, '2022-07-18', 2283, 95546, 5966, NULL, '31.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (101254, '2022-07-18', 2315, 95547, 5966, 2735, '-549.0000', '0.3300', '0.3300', '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 (101255, '2022-07-18', 2315, 95547, 5966, NULL, '550.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-550.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101256, '2022-07-18', 2506, 95548, 5966, 16244, '-28.0000', '3.4900', '3.4900', '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 (101257, '2022-07-18', 2506, 95548, 5966, NULL, '29.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101258, '2022-07-18', 7743, 95549, 5966, NULL, '1.0000', '1.3100', '1.3100', '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 (101259, '2022-07-18', 8098, 95550, 5966, NULL, '1.0000', '15.9900', '15.9900', '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 (101260, '2022-07-18', 7926, 95551, 5966, 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 (101261, '2022-07-18', 9699, 95552, 5966, 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 (101262, '2022-07-18', 7641, 95553, 5966, NULL, '1.0000', '1.9000', '1.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 (101263, '2022-07-18', 8052, 95554, 5966, NULL, '1.0000', '29.0000', '29.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 (101264, '2022-07-18', 9729, 95555, 5966, NULL, '1.0000', '0.6200', '0.6200', '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 (101265, '2022-07-18', 9740, 95556, 5966, NULL, '1.0000', '0.6600', '0.6600', '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 (101266, '2022-07-18', 7672, 95557, 5966, NULL, '1.0000', '1.0200', '1.0200', '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 (101267, '2022-07-18', 7917, 95558, 5966, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101268, '2022-07-18', 7713, 95559, 5966, NULL, '2.0000', '0.3800', '0.3800', '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 (101269, '2022-07-18', 7317, 95560, 5966, NULL, '1.0000', '19.5500', '19.5500', '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 (101270, '2022-07-18', 8463, 95561, 5966, NULL, '1.0000', '18.0000', '18.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 (101271, '2022-07-18', 8404, 95562, 5966, NULL, '1.0000', '36.1200', '36.1200', '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 (101272, '2022-07-18', 7592, 95563, 5966, NULL, '1.0000', '6.8000', '6.8000', '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 (101273, '2022-07-18', 9506, 95564, 5966, 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 (101274, '2022-07-18', 7514, 95565, 5966, NULL, '2.0000', '2.2500', '2.2500', '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 (101275, '2022-07-18', 8596, 95566, 5966, 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 (101276, '2022-07-18', 2315, 95567, 5966, 2735, '-549.0000', '0.3300', '0.3300', '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 (101277, '2022-07-18', 2315, 95567, 5966, NULL, '550.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-550.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101278, '2022-07-18', 7560, 95568, 5966, NULL, '1.0000', '33.0200', '33.0200', '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 (101279, '2022-07-18', 8498, 95569, 5966, NULL, '1.0000', '3.1500', '3.1500', '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 (101280, '2022-07-18', 1884, 95570, 5966, 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 (101281, '2022-07-18', 7657, 95571, 5966, NULL, '2.0000', '11.3200', '11.3200', '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 (101282, '2022-07-18', 7762, 95572, 5966, NULL, '1.0000', '1.5000', '1.5000', '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 (101283, '2022-07-18', 7781, 95573, 5966, NULL, '3.0000', '4.2500', '4.2500', '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 (101284, '2022-07-18', 7674, 95574, 5966, NULL, '1.0000', '1.3000', '1.3000', '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 (101285, '2022-07-18', 1807, 95575, 5966, 18924, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '18.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 (101286, '2022-07-18', 2169, 95576, 5967, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101287, '2022-07-18', 2156, 95577, 5967, 55820, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101288, '2022-07-18', 2904, 95578, 5967, 46583, '1.0000', '20.4440', '20.4440', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101289, '2022-07-18', 1856, 95579, 5967, 57957, '1.0000', '5.1154', '5.1154', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101290, '2022-07-18', 2167, 95580, 5967, 57982, '1.0000', '2.4773', '2.4773', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101291, '2022-07-18', 2317, 95581, 5967, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '13.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101292, '2022-07-18', 2371, 95582, 5967, 4376, '1.0000', '12.0000', '12.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 (101293, '2022-07-18', 1863, 95583, 5967, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101294, '2022-07-18', 2302, 95584, 5967, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101295, '2022-07-18', 2379, 95585, 5967, 58652, '1.0000', '2.0012', '2.0012', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101296, '2022-07-18', 8775, 95586, 5967, 52321, '1.0000', '3.1153', '3.1153', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101297, '2022-07-18', 1912, 95587, 5968, 51315, '4.0000', '0.6868', '0.6868', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101298, '2022-07-18', 2263, 95588, 5968, NULL, '1.0000', '37.4800', '37.4800', '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 (101299, '2022-07-18', 9695, 95589, 5968, 59001, '1.0000', '5.3806', '5.3806', '8.0000', '8.0000', '26.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101300, '2022-07-18', 7641, 95590, 5968, NULL, '1.0000', '1.9000', '1.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 (101301, '2022-07-18', 1674, 95591, 5968, 55572, '1.0000', '0.8028', '0.8028', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101302, '2022-07-18', 2320, 95592, 5968, 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 (101303, '2022-07-18', 8084, 95593, 5968, 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 (101304, '2022-07-18', 7491, 95594, 5968, NULL, '1.0000', '4.8000', '4.8000', '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 (101305, '2022-07-18', 7473, 95595, 5968, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '37.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101306, '2022-07-18', 9762, 95596, 5968, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101307, '2022-07-18', 1342, 95597, 5968, 57763, '1.0000', '6.9530', '6.9530', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101308, '2022-07-18', 9740, 95598, 5968, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101309, '2022-07-18', 8699, 95599, 5968, NULL, '1.0000', '6.3800', '6.3800', '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 (101310, '2022-07-18', 1577, 95600, 5968, NULL, '1.0000', '0.4895', '0.4895', '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 (101311, '2022-07-18', 7411, 95601, 5968, NULL, '1.0000', '1.2819', '1.2819', '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 (101312, '2022-07-18', 7917, 95602, 5968, NULL, '1.0000', '5.0000', '5.0000', '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 (101313, '2022-07-18', 2066, 95603, 5968, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101314, '2022-07-18', 7917, 95604, 5968, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101315, '2022-07-18', 7713, 95605, 5968, 55577, '1.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101316, '2022-07-18', 7483, 95606, 5968, 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 (101317, '2022-07-18', 7459, 95607, 5968, NULL, '5.0000', '-15.3118', '-15.3118', '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 (101318, '2022-07-18', 7473, 95608, 5968, 39817, '2.0000', '0.1679', '0.1679', '0.7000', '0.7000', '36.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101319, '2022-07-18', 8068, 95609, 5968, NULL, '1.0000', '8.7900', '8.7900', '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 (101320, '2022-07-18', 7398, 95610, 5968, NULL, '2.0000', '143.5000', '143.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 (101321, '2022-07-18', 7411, 95611, 5968, NULL, '2.0000', '1.2819', '1.2819', '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 (101322, '2022-07-18', 8359, 95612, 5968, NULL, '1.0000', '13.5000', '13.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 (101323, '2022-07-18', 9740, 95613, 5968, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101324, '2022-07-18', 2656, 95614, 5968, 58976, '1.0000', '0.8907', '0.8907', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101325, '2022-07-18', 7411, 95615, 5968, NULL, '1.0000', '1.2819', '1.2819', '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 (101326, '2022-07-18', 2169, 95616, 5968, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101327, '2022-07-18', 1813, 95617, 5968, 57790, '1.0000', '68.6603', '68.6603', '62.5000', '62.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101328, '2022-07-18', 1501, 95618, 5968, NULL, '1.0000', '0.6299', '0.6299', '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 (101329, '2022-07-18', 7514, 95619, 5968, NULL, '1.0000', '2.2500', '2.2500', '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 (101330, '2022-07-18', 7741, 95620, 5968, NULL, '1.0000', '-52.1460', '-52.1460', '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 (101331, '2022-07-18', 2169, 95621, 5968, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101332, '2022-07-18', 9831, 95622, 5968, 58998, '1.0000', '-0.3182', '-0.3182', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101333, '2022-07-18', 2945, 95623, 5968, 57785, '1.0000', '9.3750', '9.3750', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101334, '2022-07-18', 1880, 95624, 5968, 58250, '1.0000', '4.8475', '4.8475', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101335, '2022-07-18', 2079, 95625, 5968, 55542, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101336, '2022-07-18', 9695, 95626, 5968, 59001, '1.0000', '5.3806', '5.3806', '8.0000', '8.0000', '26.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101337, '2022-07-18', 7641, 95627, 5968, NULL, '1.0000', '1.9000', '1.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 (101338, '2022-07-18', 1303, 95628, 5968, 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 (101339, '2022-07-18', 9832, 95629, 5968, 58999, '1.0000', '1.3451', '1.3451', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101340, '2022-07-18', 7641, 95630, 5968, NULL, '2.0000', '1.9000', '1.9000', '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 (101341, '2022-07-18', 2262, 95631, 5968, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101342, '2022-07-18', 2699, 95632, 5968, NULL, '1.0000', '3.5000', '3.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 (101343, '2022-07-18', 8746, 95633, 5968, 58992, '2.0000', '2.8817', '2.8817', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101344, '2022-07-18', 2506, 95634, 5968, NULL, '1.0000', '-8.6523', '-8.6523', '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 (101345, '2022-07-18', 3017, 95635, 5968, 56392, '1.0000', '3.9753', '3.9753', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101346, '2022-07-18', 7514, 95636, 5968, NULL, '1.0000', '2.2500', '2.2500', '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 (101347, '2022-07-18', 9794, 95637, 5968, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '74.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101348, '2022-07-18', 2384, 95638, 5968, NULL, '14.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (101349, '2022-07-18', 1621, 95639, 5968, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101350, '2022-07-18', 7411, 95640, 5968, NULL, '2.0000', '1.2819', '1.2819', '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 (101351, '2022-07-18', 2416, 95641, 5968, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101352, '2022-07-18', 1646, 95642, 5968, 57673, '1.0000', '5.6966', '5.6966', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101353, '2022-07-18', 2062, 95643, 5968, 57738, '1.0000', '12.5700', '12.5700', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101354, '2022-07-18', 1432, 95644, 5968, 58198, '1.0000', '12.5636', '12.5636', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101355, '2022-07-18', 1840, 95645, 5969, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (101356, '2022-07-18', 9107, 95646, 5969, NULL, '2.0000', '3.4000', '3.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 (101357, '2022-07-18', 7636, 95647, 5969, 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 (101358, '2022-07-18', 7911, 95648, 5969, NULL, '1.0000', '4.3700', '4.3700', '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 (101359, '2022-07-18', 9329, 95649, 5969, NULL, '1.0000', '6.7000', '6.7000', '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 (101360, '2022-07-18', 2315, 95650, 5969, 2735, '-556.0000', '0.3300', '0.3300', '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 (101361, '2022-07-18', 2315, 95650, 5969, NULL, '557.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-557.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101362, '2022-07-18', 9272, 95651, 5969, NULL, '1.0000', '3.1000', '3.1000', '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 (101363, '2022-07-18', 8208, 95652, 5969, NULL, '2.0000', '33.0000', '33.0000', '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 (101364, '2022-07-18', 7522, 95653, 5969, NULL, '1.0000', '9.7000', '9.7000', '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 (101365, '2022-07-18', 2506, 95654, 5969, 16244, '-29.0000', '3.4900', '3.4900', '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 (101366, '2022-07-18', 2506, 95654, 5969, NULL, '30.0000', '3.4900', '3.4900', '6.5000', '6.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 (101367, '2022-07-18', 2242, 95655, 5969, 3059, '-89.0000', '0.4800', '0.4800', '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 (101368, '2022-07-18', 2242, 95655, 5969, NULL, '92.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101369, '2022-07-18', 7859, 95656, 5969, NULL, '1.0000', '12.6300', '12.6300', '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 (101370, '2022-07-18', 7411, 95657, 5969, NULL, '1.0000', '1.3500', '1.3500', '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 (101371, '2022-07-18', 8254, 95658, 5969, NULL, '1.0000', '25.9000', '25.9000', '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 (101372, '2022-07-18', 7641, 95659, 5969, NULL, '2.0000', '1.9000', '1.9000', '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 (101373, '2022-07-18', 8316, 95660, 5969, 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 (101374, '2022-07-18', 9737, 95661, 5970, NULL, '1.0000', '9.4750', '9.4750', '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 (101375, '2022-07-18', 1845, 95662, 5970, NULL, '1.0000', '53.9580', '53.9580', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101376, '2022-07-18', 9831, 95663, 5970, 58998, '1.0000', '-0.3182', '-0.3182', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101377, '2022-07-18', 9609, 95664, 5970, NULL, '1.0000', '-1.7000', '-1.7000', '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 (101378, '2022-07-18', 7411, 95665, 5970, NULL, '1.0000', '1.2819', '1.2819', '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 (101379, '2022-07-18', 2627, 95666, 5970, 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 (101380, '2022-07-19', 1781, 95667, 5971, 57775, '2.0000', '5.8614', '5.8614', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101381, '2022-07-19', 1523, 95668, 5971, NULL, '1.0000', '1.0061', '1.0061', '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 (101382, '2022-07-19', 1837, 95669, 5971, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101383, '2022-07-19', 8017, 95670, 5971, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101384, '2022-07-19', 1748, 95671, 5971, NULL, '1.0000', '0.3200', '0.3200', '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 (101385, '2022-07-19', 2289, 95672, 5971, NULL, '1.0000', '0.3611', '0.3611', '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 (101386, '2022-07-19', 1519, 95673, 5971, NULL, '1.0000', '3.7571', '3.7571', '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 (101387, '2022-07-19', 2592, 95674, 5971, 55933, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101388, '2022-07-19', 8025, 95675, 5971, NULL, '1.0000', '19.0000', '19.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 (101389, '2022-07-19', 9695, 95676, 5971, 59001, '1.0000', '5.3806', '5.3806', '8.0000', '8.0000', '24.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101390, '2022-07-19', 1760, 95677, 5971, 58185, '1.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101391, '2022-07-19', 2381, 95678, 5971, 58123, '1.0000', '14.3540', '14.3540', '19.2700', '19.2700', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101392, '2022-07-19', 1796, 95679, 5971, 55906, '1.0000', '2.8333', '2.8333', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101393, '2022-07-19', 3029, 95680, 5971, 58131, '1.0000', '-67.9257', '-67.9257', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101394, '2022-07-19', 2169, 95681, 5971, 57709, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101395, '2022-07-19', 1912, 95682, 5971, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101396, '2022-07-19', 9959, 95683, 5971, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101397, '2022-07-19', 9729, 95684, 5971, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101398, '2022-07-19', 8933, 95685, 5971, NULL, '1.0000', '8.8300', '8.8300', '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 (101399, '2022-07-19', 9783, 95686, 5971, 56401, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101400, '2022-07-19', 1572, 95687, 5971, NULL, '1.0000', '1.9556', '1.9556', '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 (101401, '2022-07-19', 9979, 95688, 5971, NULL, '1.0000', '13.9000', '13.9000', '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 (101402, '2022-07-19', 2315, 95689, 5972, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101403, '2022-07-19', 9939, 95690, 5972, 58054, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101404, '2022-07-19', 2283, 95691, 5973, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101405, '2022-07-19', 1499, 95692, 5973, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101406, '2022-07-19', 7641, 95693, 5974, 59229, '1.0000', '7.1219', '7.1219', '10.0000', '10.0000', '39.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101407, '2022-07-19', 7482, 95694, 5974, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101408, '2022-07-19', 7641, 95695, 5974, 59229, '2.0000', '7.1219', '7.1219', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101409, '2022-07-19', 7954, 95696, 5974, NULL, '4.0000', '-86029.7385', '-86029.7385', '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 (101410, '2022-07-19', 9942, 95697, 5974, 59245, '1.0000', '10.1000', '10.1000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101411, '2022-07-19', 7457, 95698, 5974, 59280, '1.0000', '4.6202', '4.6202', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101412, '2022-07-19', 7762, 95699, 5974, 57413, '1.0000', '0.7818', '0.7818', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101413, '2022-07-19', 1837, 95700, 5974, 45863, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101414, '2022-07-19', 7560, 95701, 5974, 59284, '1.0000', '41.4757', '41.4757', '56.0000', '56.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101415, '2022-07-19', 1841, 95702, 5974, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101416, '2022-07-19', 2315, 95703, 5974, 59232, '1.0000', '0.7616', '0.7616', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101417, '2022-07-19', 7725, 95704, 5974, NULL, '1.0000', '6.2371', '6.2371', '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 (101418, '2022-07-19', 9724, 95705, 5974, 57621, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101419, '2022-07-19', 7632, 95706, 5974, 54290, '1.0000', '12.0422', '12.0422', '18.5000', '18.5000', '6.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101420, '2022-07-19', 9911, 95707, 5974, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101421, '2022-07-19', 8077, 95708, 5974, NULL, '1.0000', '4.9986', '4.9986', '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 (101422, '2022-07-19', 8306, 95709, 5974, NULL, '1.0000', '1.6000', '1.6000', '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 (101423, '2022-07-19', 7612, 95710, 5974, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101424, '2022-07-19', 9865, 95711, 5974, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '12.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101425, '2022-07-19', 2284, 95712, 5974, 54126, '1.0000', '1.3870', '1.3870', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101426, '2022-07-19', 7482, 95713, 5974, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101427, '2022-07-19', 7611, 95714, 5974, 57635, '1.0000', '12.5782', '12.5782', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101428, '2022-07-19', 7482, 95715, 5974, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101429, '2022-07-19', 9272, 95716, 5974, NULL, '1.0000', '3.1000', '3.1000', '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 (101430, '2022-07-19', 2517, 95717, 5974, 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 (101431, '2022-07-19', 7473, 95718, 5974, 59258, '1.0000', '0.5130', '0.5130', '0.7000', '0.7000', '70.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101432, '2022-07-19', 7708, 95719, 5974, 59204, '1.0000', '8.3014', '8.3014', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101433, '2022-07-19', 7544, 95720, 5974, NULL, '1.0000', '9.4300', '9.4300', '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 (101434, '2022-07-19', 9785, 95721, 5974, 59249, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101435, '2022-07-19', 9329, 95722, 5974, 57443, '1.0000', '-2789.5699', '-2789.5699', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101436, '2022-07-19', 7457, 95723, 5974, 59280, '1.0000', '4.6202', '4.6202', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101437, '2022-07-19', 8452, 95724, 5974, NULL, '1.0000', '1.4547', '1.4547', '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 (101438, '2022-07-19', 7385, 95725, 5974, 59184, '10.0000', '6.9345', '6.9345', '4.0000', '4.0000', '61.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101439, '2022-07-19', 7514, 95726, 5974, NULL, '2.0000', '-19420.5252', '-19420.5252', '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 (101440, '2022-07-19', 9685, 95727, 5974, NULL, '1.0000', '34.6600', '34.6600', '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 (101441, '2022-07-19', 7848, 95728, 5974, NULL, '1.0000', '-376.7409', '-376.7409', '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 (101442, '2022-07-19', 7385, 95729, 5974, 59184, '2.0000', '6.9345', '6.9345', '4.0000', '4.0000', '69.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101443, '2022-07-19', 8810, 95730, 5974, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101444, '2022-07-19', 8097, 95731, 5974, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101445, '2022-07-19', 2285, 95732, 5975, NULL, '1.0000', '-35.9568', '-35.9568', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101446, '2022-07-19', 1871, 95733, 5975, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (101447, '2022-07-19', 1689, 95734, 5975, 58150, '1.0000', '15.6116', '15.6116', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101448, '2022-07-19', 9834, 95735, 5975, NULL, '2.0000', '1.4500', '1.4500', '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 (101449, '2022-07-19', 1871, 95736, 5975, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (101450, '2022-07-19', 1935, 95737, 5975, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101451, '2022-07-19', 7531, 95738, 5975, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101452, '2022-07-19', 9878, 95739, 5975, NULL, '1.0000', '9.6000', '9.6000', '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 (101453, '2022-07-19', 1640, 95740, 5975, NULL, '1.0000', '3.0496', '3.0496', '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 (101454, '2022-07-19', 2416, 95741, 5975, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101455, '2022-07-19', 1670, 95742, 5976, NULL, '1.0000', '-32.2503', '-32.2503', '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 (101456, '2022-07-19', 9794, 95743, 5976, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '73.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101457, '2022-07-19', 7777, 95744, 5977, NULL, '1.0000', '8.2500', '8.2500', '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 (101458, '2022-07-19', 7611, 95745, 5977, 57635, '1.0000', '12.5782', '12.5782', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101459, '2022-07-19', 7742, 95746, 5978, 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 (101460, '2022-07-19', 2283, 95747, 5978, 2943, '-31.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 (101461, '2022-07-19', 2283, 95747, 5978, NULL, '32.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101462, '2022-07-19', 9699, 95748, 5978, 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 (101463, '2022-07-19', 7779, 95749, 5978, NULL, '1.0000', '9.5000', '9.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 (101464, '2022-07-19', 7963, 95750, 5978, NULL, '1.0000', '14.7000', '14.7000', '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 (101465, '2022-07-19', 8883, 95751, 5978, NULL, '3.0000', '56.5500', '56.5500', '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 (101466, '2022-07-19', 7881, 95752, 5978, NULL, '1.0000', '2.3000', '2.3000', '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 (101467, '2022-07-19', 7674, 95753, 5978, NULL, '2.0000', '1.3000', '1.3000', '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 (101468, '2022-07-19', 8359, 95754, 5978, 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 (101469, '2022-07-19', 8063, 95755, 5978, NULL, '1.0000', '1.6000', '1.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 (101470, '2022-07-19', 7672, 95756, 5978, NULL, '1.0000', '1.0200', '1.0200', '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 (101471, '2022-07-19', 7454, 95757, 5978, NULL, '1.0000', '26.2200', '26.2200', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101472, '2022-07-19', 7411, 95758, 5978, NULL, '1.0000', '1.3500', '1.3500', '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 (101473, '2022-07-19', 1935, 95759, 5978, 5586, '-182.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 (101474, '2022-07-19', 1935, 95759, 5978, NULL, '186.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-186.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101475, '2022-07-19', 7674, 95760, 5978, NULL, '2.0000', '1.3000', '1.3000', '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 (101476, '2022-07-19', 8925, 95761, 5978, NULL, '1.0000', '2.4000', '2.4000', '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 (101477, '2022-07-19', 7558, 95762, 5978, NULL, '2.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101478, '2022-07-19', 7431, 95763, 5978, NULL, '1.0000', '18.0000', '18.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 (101479, '2022-07-19', 9783, 95764, 5978, NULL, '1.0000', '17.6000', '17.6000', '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 (101480, '2022-07-19', 7781, 95765, 5978, NULL, '3.0000', '4.2500', '4.2500', '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 (101481, '2022-07-19', 7411, 95766, 5978, NULL, '1.0000', '1.3500', '1.3500', '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 (101482, '2022-07-19', 2289, 95767, 5978, 2949, '-236.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 (101483, '2022-07-19', 2289, 95767, 5978, NULL, '240.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-240.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101484, '2022-07-19', 7447, 95768, 5978, NULL, '4.0000', '19.1100', '19.1100', '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 (101485, '2022-07-19', 7482, 95769, 5978, NULL, '1.0000', '3.0500', '3.0500', '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 (101486, '2022-07-19', 8677, 95770, 5978, NULL, '3.0000', '1.2800', '1.2800', '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 (101487, '2022-07-19', 7917, 95771, 5978, NULL, '4.0000', '5.0000', '5.0000', '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 (101488, '2022-07-19', 7621, 95772, 5978, NULL, '1.0000', '5.9000', '5.9000', '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 (101489, '2022-07-19', 7483, 95773, 5978, 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 (101490, '2022-07-19', 8097, 95774, 5978, NULL, '2.0000', '3.4000', '3.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 (101491, '2022-07-19', 1841, 95775, 5978, NULL, '1.0000', '142.5780', '142.5780', '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 (101492, '2022-07-19', 7473, 95776, 5978, NULL, '6.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (101493, '2022-07-19', 9280, 95777, 5978, NULL, '2.0000', '12.0000', '12.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 (101494, '2022-07-19', 7483, 95778, 5978, NULL, '1.0000', '0.4200', '0.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 (101495, '2022-07-19', 7527, 95779, 5978, NULL, '1.0000', '0.8900', '0.8900', '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 (101496, '2022-07-19', 9763, 95780, 5978, NULL, '1.0000', '2.1000', '2.1000', '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 (101497, '2022-07-19', 7675, 95781, 5978, NULL, '1.0000', '11.4300', '11.4300', '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 (101498, '2022-07-19', 1976, 95782, 5978, 6343, '-3.0000', '5.0000', '5.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 (101499, '2022-07-19', 1976, 95782, 5978, NULL, '4.0000', '5.0000', '5.0000', '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 (101500, '2022-07-19', 7588, 95783, 5978, NULL, '1.0000', '6.9000', '6.9000', '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 (101501, '2022-07-19', 9794, 95784, 5978, NULL, '2.0000', '1.0800', '1.0800', '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 (101502, '2022-07-19', 7628, 95785, 5978, NULL, '4.0000', '2.2900', '2.2900', '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 (101503, '2022-07-19', 7709, 95786, 5978, NULL, '2.0000', '3.5000', '3.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 (101504, '2022-07-19', 7593, 95787, 5978, NULL, '2.0000', '2.4500', '2.4500', '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 (101505, '2022-07-19', 9272, 95788, 5978, NULL, '1.0000', '3.1000', '3.1000', '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 (101506, '2022-07-19', 1806, 95789, 5978, 11433, '-6.0000', '28.1300', '28.1300', '40.5000', '40.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 (101507, '2022-07-19', 1806, 95789, 5978, NULL, '7.0000', '28.1300', '28.1300', '40.5000', '40.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 (101508, '2022-07-19', 7954, 95790, 5978, 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 (101509, '2022-07-19', 7483, 95791, 5978, NULL, '3.0000', '0.4200', '0.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 (101510, '2022-07-19', 7880, 95792, 5978, NULL, '1.0000', '2.6500', '2.6500', '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 (101511, '2022-07-19', 8475, 95793, 5979, NULL, '5.0000', '8.6000', '8.6000', '1.5000', '1.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 (101512, '2022-07-19', 2242, 95794, 5979, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '51.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101513, '2022-07-19', 1450, 95795, 5979, NULL, '1.0000', '0.8483', '0.8483', '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 (101514, '2022-07-19', 2167, 95796, 5979, NULL, '1.0000', '1.7907', '1.7907', '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 (101515, '2022-07-19', 9469, 95797, 5979, NULL, '1.0000', '4.3167', '4.3167', '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 (101516, '2022-07-19', 7411, 95798, 5979, NULL, '2.0000', '1.2819', '1.2819', '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 (101517, '2022-07-19', 1748, 95799, 5979, NULL, '2.0000', '0.3200', '0.3200', '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 (101518, '2022-07-19', 1840, 95800, 5979, NULL, '1.0000', '0.2400', '0.2400', '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 (101519, '2022-07-19', 2237, 95801, 5979, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101520, '2022-07-19', 7483, 95802, 5979, NULL, '3.0000', '0.4200', '0.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 (101521, '2022-07-19', 1925, 95803, 5979, NULL, '2.0000', '1.4444', '1.4444', '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 (101522, '2022-07-19', 7328, 95804, 5979, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101523, '2022-07-19', 7411, 95805, 5979, NULL, '1.0000', '1.2819', '1.2819', '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 (101524, '2022-07-19', 9750, 95806, 5979, NULL, '1.0000', '3.3000', '3.3000', '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 (101525, '2022-07-19', 2320, 95807, 5979, 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 (101526, '2022-07-19', 9734, 95808, 5979, NULL, '4.0000', '0.3200', '0.3200', '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 (101527, '2022-07-19', 7917, 95809, 5979, NULL, '1.0000', '5.0000', '5.0000', '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 (101528, '2022-07-19', 7483, 95810, 5979, 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 (101529, '2022-07-19', 9832, 95811, 5979, 58999, '1.0000', '1.3451', '1.3451', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101530, '2022-07-19', 9831, 95812, 5979, 58998, '1.0000', '-0.3182', '-0.3182', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101531, '2022-07-19', 8021, 95813, 5979, NULL, '1.0000', '13.0000', '13.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 (101532, '2022-07-19', 2916, 95814, 5979, NULL, '1.0000', '4209.2937', '4209.2937', '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 (101533, '2022-07-19', 9740, 95815, 5979, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '85.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101534, '2022-07-19', 9649, 95816, 5979, NULL, '1.0000', '9.9875', '9.9875', '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 (101535, '2022-07-19', 2655, 95817, 5979, NULL, '1.0000', '-12.5505', '-12.5505', '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 (101536, '2022-07-19', 2506, 95818, 5979, NULL, '1.0000', '-8.6523', '-8.6523', '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 (101537, '2022-07-19', 2169, 95819, 5979, 57709, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101538, '2022-07-19', 7917, 95820, 5979, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (101539, '2022-07-19', 7411, 95821, 5979, NULL, '1.0000', '1.2819', '1.2819', '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 (101540, '2022-07-19', 2699, 95822, 5979, NULL, '1.0000', '3.5000', '3.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 (101541, '2022-07-19', 2167, 95823, 5979, NULL, '1.0000', '1.7907', '1.7907', '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 (101542, '2022-07-19', 2237, 95824, 5979, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101543, '2022-07-19', 9729, 95825, 5979, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101544, '2022-07-19', 8476, 95826, 5979, NULL, '1.0000', '23.0000', '23.0000', '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 (101545, '2022-07-19', 9834, 95827, 5979, NULL, '1.0000', '1.4500', '1.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 (101546, '2022-07-19', 7412, 95828, 5979, NULL, '1.0000', '8.3200', '8.3200', '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 (101547, '2022-07-19', 2864, 95829, 5979, NULL, '2.0000', '1.5150', '1.5150', '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 (101548, '2022-07-19', 7324, 95830, 5979, NULL, '1.0000', '5.4813', '5.4813', '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 (101549, '2022-07-19', 2506, 95831, 5979, NULL, '1.0000', '-8.6523', '-8.6523', '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 (101550, '2022-07-19', 8444, 95832, 5979, 57692, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101551, '2022-07-19', 2738, 95833, 5979, 56428, '2.0000', '9.2000', '9.2000', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101552, '2022-07-19', 8065, 95834, 5979, NULL, '1.0000', '32.0000', '32.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 (101553, '2022-07-19', 2730, 95835, 5979, 51643, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101554, '2022-07-19', 1387, 95836, 5979, 57771, '1.0000', '15.1875', '15.1875', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101555, '2022-07-19', 8208, 95837, 5979, NULL, '1.0000', '47.9541', '47.9541', '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 (101556, '2022-07-19', 9778, 95838, 5979, 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 (101557, '2022-07-19', 9508, 95839, 5979, 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 (101558, '2022-07-19', 7411, 95840, 5979, NULL, '1.0000', '1.2819', '1.2819', '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 (101559, '2022-07-19', 7514, 95841, 5979, NULL, '1.0000', '2.2500', '2.2500', '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 (101560, '2022-07-19', 7744, 95842, 5979, NULL, '1.0000', '2.5833', '2.5833', '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 (101561, '2022-07-19', 2444, 95843, 5979, 51937, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101562, '2022-07-19', 2088, 95844, 5979, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101563, '2022-07-19', 2366, 95845, 5979, NULL, '2.0000', '-51.4778', '-51.4778', '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 (101564, '2022-07-19', 1624, 95846, 5979, 41404, '1.0000', '69.8000', '69.8000', '39.0000', '39.0000', '2.0000', 1, 0, NULL, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101565, '2022-07-19', 1501, 95847, 5979, NULL, '1.0000', '0.6299', '0.6299', '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 (101566, '2022-07-19', 9740, 95848, 5979, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101567, '2022-07-19', 1499, 95849, 5979, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101568, '2022-07-19', 9734, 95850, 5979, NULL, '2.0000', '0.3200', '0.3200', '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 (101569, '2022-07-19', 2821, 95851, 5979, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101570, '2022-07-19', 8444, 95852, 5979, 57692, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101571, '2022-07-19', 2169, 95853, 5979, 57709, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101572, '2022-07-19', 1880, 95854, 5979, 58250, '1.0000', '4.8475', '4.8475', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101573, '2022-07-19', 1501, 95855, 5979, NULL, '1.0000', '0.6299', '0.6299', '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 (101574, '2022-07-19', 1592, 95856, 5979, 54875, '1.0000', '39.3500', '39.3500', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101575, '2022-07-19', 9832, 95857, 5979, 58999, '1.0000', '1.3451', '1.3451', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101576, '2022-07-19', 9750, 95858, 5979, NULL, '1.0000', '3.3000', '3.3000', '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 (101577, '2022-07-19', 9832, 95859, 5979, 58999, '1.0000', '1.3451', '1.3451', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101578, '2022-07-19', 7411, 95860, 5979, NULL, '1.0000', '1.2819', '1.2819', '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 (101579, '2022-07-19', 1884, 95861, 5979, NULL, '1.0000', '17.4104', '17.4104', '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 (101580, '2022-07-19', 2548, 95862, 5979, 55634, '1.0000', '7.6792', '7.6792', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101581, '2022-07-19', 7514, 95863, 5979, NULL, '1.0000', '2.2500', '2.2500', '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 (101582, '2022-07-19', 2567, 95864, 5979, 59012, '1.0000', '34.3900', '34.3900', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101583, '2022-07-19', 9740, 95865, 5979, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101584, '2022-07-19', 7411, 95866, 5979, NULL, '3.0000', '1.2819', '1.2819', '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 (101585, '2022-07-19', 7483, 95867, 5979, NULL, '3.0000', '0.4200', '0.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 (101586, '2022-07-19', 9794, 95868, 5979, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101587, '2022-07-19', 7318, 95869, 5979, 48729, '1.0000', '10.6757', '10.6757', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101588, '2022-07-19', 1873, 95870, 5979, 58170, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101589, '2022-07-19', 2506, 95871, 5979, NULL, '1.0000', '-8.6523', '-8.6523', '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 (101590, '2022-07-19', 1787, 95872, 5979, NULL, '1.0000', '0.5000', '0.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 (101591, '2022-07-19', 9089, 95873, 5979, 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 (101592, '2022-07-19', 9740, 95874, 5979, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101593, '2022-07-19', 9482, 95875, 5979, 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 (101594, '2022-07-19', 7495, 95876, 5979, NULL, '1.0000', '17.8000', '17.8000', '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 (101595, '2022-07-19', 1501, 95877, 5979, NULL, '1.0000', '0.6299', '0.6299', '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 (101596, '2022-07-19', 2821, 95878, 5979, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101597, '2022-07-19', 2248, 95879, 5979, 56451, '1.0000', '3.3616', '3.3616', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101598, '2022-07-19', 2068, 95880, 5979, 58129, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101599, '2022-07-19', 7411, 95881, 5979, NULL, '3.0000', '1.2819', '1.2819', '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 (101600, '2022-07-19', 2315, 95882, 5979, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101601, '2022-07-19', 7514, 95883, 5979, NULL, '1.0000', '2.2500', '2.2500', '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 (101602, '2022-07-19', 1339, 95884, 5979, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101603, '2022-07-19', 8933, 95885, 5979, NULL, '3.0000', '8.8300', '8.8300', '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 (101604, '2022-07-19', 7745, 95886, 5979, 58190, '2.0000', '6.7000', '6.7000', '12.0000', '12.0000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101605, '2022-07-19', 9469, 95887, 5979, NULL, '2.0000', '4.3167', '4.3167', '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 (101606, '2022-07-19', 9735, 95888, 5979, 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 (101607, '2022-07-19', 1557, 95889, 5979, 51512, '2.0000', '8.1969', '8.1969', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101608, '2022-07-19', 7641, 95890, 5979, NULL, '1.0000', '1.9000', '1.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 (101609, '2022-07-19', 9695, 95891, 5979, 59001, '2.0000', '5.3806', '5.3806', '8.0000', '8.0000', '22.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101610, '2022-07-19', 2169, 95892, 5979, 57709, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101611, '2022-07-19', 2453, 95893, 5980, 5374, '1.0000', '2.7000', '2.7000', '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 (101612, '2022-07-19', 2653, 95894, 5980, 11143, '1.0000', '2.7000', '2.7000', '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 (101613, '2022-07-19', 1695, 95895, 5980, 58641, '1.0000', '27.0720', '27.0720', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101614, '2022-07-19', 2479, 95896, 5980, 5192, '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 (101615, '2022-07-19', 2763, 95897, 5980, 15805, '1.0000', '7.5000', '7.5000', '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 (101616, '2022-07-19', 2485, 95898, 5980, 39201, '1.0000', '29.8556', '29.8556', '18.0000', '18.0000', '62.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101617, '2022-07-19', 9291, 95899, 5980, 56913, '1.0000', '15.4949', '15.4949', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101618, '2022-07-19', 2256, 95900, 5980, 55791, '1.0000', '15.2117', '15.2117', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101619, '2022-07-19', 9794, 95901, 5980, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101620, '2022-07-19', 1812, 95902, 5980, 58648, '1.0000', '8.4873', '8.4873', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101621, '2022-07-19', 1646, 95903, 5980, 56889, '1.0000', '5.2908', '5.2908', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101622, '2022-07-19', 1812, 95904, 5980, 58648, '1.0000', '8.4873', '8.4873', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101623, '2022-07-19', 1555, 95905, 5980, 58597, '1.0000', '55.2617', '55.2617', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101624, '2022-07-19', 1342, 95906, 5980, 58769, '1.0000', '9.1791', '9.1791', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101625, '2022-07-19', 2169, 95907, 5980, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101626, '2022-07-19', 2858, 95908, 5980, 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 (101627, '2022-07-19', 7886, 95909, 5980, 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 (101628, '2022-07-19', 2068, 95910, 5980, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101629, '2022-07-19', 1863, 95911, 5980, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101630, '2022-07-19', 7482, 95912, 5980, NULL, '1.0000', '3.0500', '3.0500', '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 (101631, '2022-07-19', 8068, 95913, 5980, 58631, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101632, '2022-07-19', 1843, 95914, 5980, 49134, '14.0000', '4.6200', '4.6200', '6.5000', '6.5000', '38.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101633, '2022-07-19', 8937, 95915, 5980, NULL, '2.0000', '3.5000', '3.5000', '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 (101634, '2022-07-19', 9748, 95916, 5980, 57974, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101635, '2022-07-19', 2823, 95917, 5980, 58782, '1.0000', '7.1869', '7.1869', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101636, '2022-07-19', 7459, 95918, 5980, NULL, '10.0000', '4.5753', '4.5753', '4.0000', '4.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 (101637, '2022-07-19', 7644, 95919, 5980, NULL, '4.0000', '4.4800', '4.4800', '10.0000', '10.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 (101638, '2022-07-19', 2270, 95920, 5980, 54628, '1.0000', '3.9362', '3.9362', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101639, '2022-07-19', 1687, 95921, 5980, 58611, '1.0000', '14.6097', '14.6097', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101640, '2022-07-19', 1541, 95922, 5980, 46589, '1.0000', '129.9257', '129.9257', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101641, '2022-07-19', 2302, 95923, 5980, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '22.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101642, '2022-07-19', 1772, 95924, 5980, 58771, '1.0000', '6.0141', '6.0141', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101643, '2022-07-19', 1961, 95925, 5980, 58595, '1.0000', '18.0966', '18.0966', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101644, '2022-07-19', 1368, 95926, 5980, NULL, '1.0000', '-163.5000', '-163.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 (101645, '2022-07-19', 9747, 95927, 5980, 49848, '8.0000', '0.6500', '0.6500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101646, '2022-07-19', 2277, 95928, 5980, 56888, '2.0000', '0.4266', '0.4266', '1.5000', '1.5000', '119.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101647, '2022-07-19', 1388, 95929, 5980, 55516, '1.0000', '5.8542', '5.8542', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101648, '2022-07-19', 9761, 95930, 5980, 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 (101649, '2022-07-19', 7524, 95931, 5981, NULL, '1.0000', '11.9500', '11.9500', '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 (101650, '2022-07-19', 7666, 95932, 5981, NULL, '1.0000', '3.6000', '3.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 (101651, '2022-07-19', 7674, 95933, 5981, NULL, '1.0000', '1.3000', '1.3000', '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 (101652, '2022-07-19', 2295, 95934, 5981, 2954, '-46.0000', '0.9600', '0.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 (101653, '2022-07-19', 2295, 95934, 5981, NULL, '49.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101654, '2022-07-19', 7674, 95935, 5981, NULL, '1.0000', '1.3000', '1.3000', '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 (101655, '2022-07-19', 8966, 95936, 5981, NULL, '1.0000', '6.8500', '6.8500', '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 (101656, '2022-07-19', 7411, 95937, 5981, NULL, '1.0000', '1.3500', '1.3500', '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 (101657, '2022-07-19', 7824, 95938, 5981, 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 (101658, '2022-07-19', 2821, 95939, 5981, 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 (101659, '2022-07-19', 9160, 95940, 5981, NULL, '1.0000', '15.0000', '15.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 (101660, '2022-07-19', 8810, 95941, 5981, NULL, '1.0000', '1.6000', '1.6000', '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 (101661, '2022-07-19', 7807, 95942, 5981, NULL, '5.0000', '2.1600', '2.1600', '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 (101662, '2022-07-19', 7780, 95943, 5982, NULL, '1.0000', '11.6000', '11.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 (101663, '2022-07-19', 7674, 95944, 5982, NULL, '1.0000', '1.3000', '1.3000', '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 (101664, '2022-07-19', 9737, 95945, 5983, NULL, '1.0000', '9.4750', '9.4750', '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 (101665, '2022-07-19', 9960, 95946, 5983, NULL, '2.0000', '3.3000', '3.3000', '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 (101666, '2022-07-19', 9834, 95947, 5983, NULL, '1.0000', '1.4500', '1.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 (101667, '2022-07-19', 2315, 95948, 5983, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101668, '2022-07-19', 1693, 95949, 5983, 55593, '1.0000', '9.5194', '9.5194', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101669, '2022-07-19', 9725, 95950, 5983, 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 (101670, '2022-07-19', 8017, 95951, 5983, 58212, '5.0000', '0.6000', '0.6000', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101671, '2022-07-19', 8361, 95952, 5983, NULL, '1.0000', '4.5800', '4.5800', '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 (101672, '2022-07-20', 9785, 95953, 5984, 55765, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101673, '2022-07-20', 1845, 95954, 5984, 58807, '1.0000', '21.4933', '21.4933', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101674, '2022-07-20', 1863, 95955, 5984, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101675, '2022-07-20', 2293, 95956, 5984, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101676, '2022-07-20', 2242, 95957, 5984, 55869, '3.0000', '0.7167', '0.7167', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101677, '2022-07-20', 9463, 95958, 5984, 58794, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101678, '2022-07-20', 2346, 95959, 5984, 55754, '1.0000', '6.2032', '6.2032', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101679, '2022-07-20', 1825, 95960, 5984, 44620, '1.0000', '5.0960', '5.0960', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101680, '2022-07-20', 9731, 95961, 5984, 55494, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101681, '2022-07-20', 1446, 95962, 5984, 46043, '1.0000', '4.4636', '4.4636', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101682, '2022-07-20', 9788, 95963, 5984, 53266, '1.0000', '1.5100', '1.5100', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101683, '2022-07-20', 1888, 95964, 5984, 58762, '1.0000', '17.1841', '17.1841', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101684, '2022-07-20', 2384, 95965, 5984, 58658, '5.0000', '0.4170', '0.4170', '0.8000', '0.8000', '63.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101685, '2022-07-20', 1863, 95966, 5984, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101686, '2022-07-20', 1760, 95967, 5985, 58781, '1.0000', '0.8900', '0.8900', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101687, '2022-07-20', 9592, 95968, 5985, NULL, '20.0000', '3.2000', '3.2000', '2.1000', '2.1000', '-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 (101688, '2022-07-20', 1760, 95969, 5986, 58781, '1.0000', '0.8900', '0.8900', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101689, '2022-07-20', 2302, 95970, 5986, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101690, '2022-07-20', 7514, 95971, 5987, NULL, '1.0000', '2.2500', '2.2500', '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 (101691, '2022-07-20', 9863, 95972, 5987, 55580, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101692, '2022-07-20', 1307, 95973, 5987, NULL, '1.0000', '-59.9897', '-59.9897', '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 (101693, '2022-07-20', 2068, 95974, 5987, 52329, '1.0000', '14.6943', '14.6943', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101694, '2022-07-20', 1703, 95975, 5987, 58237, '1.0000', '9.2200', '9.2200', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101695, '2022-07-20', 9821, 95976, 5987, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101696, '2022-07-20', 9695, 95977, 5987, 59001, '1.0000', '5.3806', '5.3806', '8.0000', '8.0000', '21.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101697, '2022-07-20', 7514, 95978, 5987, NULL, '2.0000', '2.2500', '2.2500', '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 (101698, '2022-07-20', 9832, 95979, 5987, 58999, '1.0000', '1.3451', '1.3451', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101699, '2022-07-20', 7453, 95980, 5987, NULL, '1.0000', '21.6500', '21.6500', '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 (101700, '2022-07-20', 1689, 95981, 5987, 58150, '1.0000', '15.6116', '15.6116', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101701, '2022-07-20', 2350, 95982, 5987, 57124, '1.0000', '10.7250', '10.7250', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101702, '2022-07-20', 2506, 95983, 5987, NULL, '1.0000', '-8.6523', '-8.6523', '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 (101703, '2022-07-20', 7411, 95984, 5987, NULL, '1.0000', '1.2819', '1.2819', '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 (101704, '2022-07-20', 9943, 95985, 5987, NULL, '1.0000', '10.5500', '10.5500', '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 (101705, '2022-07-20', 9800, 95986, 5987, 54162, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101706, '2022-07-20', 2167, 95987, 5987, NULL, '1.0000', '1.7907', '1.7907', '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 (101707, '2022-07-20', 2026, 95988, 5987, 42642, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101708, '2022-07-20', 1588, 95989, 5987, 55543, '1.0000', '5.6403', '5.6403', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101709, '2022-07-20', 8308, 95990, 5987, NULL, '1.0000', '11.0000', '11.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 (101710, '2022-07-20', 1839, 95991, 5987, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (101711, '2022-07-20', 2410, 95992, 5987, 55671, '1.0000', '4.5240', '4.5240', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101712, '2022-07-20', 9463, 95993, 5987, NULL, '1.0000', '287.4328', '287.4328', '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 (101713, '2022-07-20', 1406, 95994, 5987, 57770, '2.0000', '21.3954', '21.3954', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101714, '2022-07-20', 7862, 95995, 5987, NULL, '1.0000', '3.8500', '3.8500', '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 (101715, '2022-07-20', 2971, 95996, 5987, 59020, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101716, '2022-07-20', 1487, 95997, 5987, NULL, '1.0000', '-330.9124', '-330.9124', '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 (101717, '2022-07-20', 2132, 95998, 5987, 57091, '1.0000', '28.5000', '28.5000', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101718, '2022-07-20', 9778, 95999, 5987, 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 (101719, '2022-07-20', 9482, 96000, 5987, NULL, '4.0000', '0.5000', '0.5000', '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 (101720, '2022-07-20', 2986, 96001, 5987, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101721, '2022-07-20', 2169, 96002, 5987, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101722, '2022-07-20', 2105, 96003, 5987, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101723, '2022-07-20', 7921, 96004, 5987, NULL, '1.0000', '0.3000', '0.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 (101724, '2022-07-20', 1779, 96005, 5987, 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 (101725, '2022-07-20', 1905, 96006, 5987, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101726, '2022-07-20', 8746, 96007, 5987, 58992, '1.0000', '2.8817', '2.8817', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101727, '2022-07-20', 7585, 96008, 5987, NULL, '1.0000', '3.9600', '3.9600', '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 (101728, '2022-07-20', 2031, 96009, 5987, 59019, '1.0000', '5.5238', '5.5238', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101729, '2022-07-20', 7459, 96010, 5987, NULL, '4.0000', '-15.3118', '-15.3118', '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 (101730, '2022-07-20', 1580, 96011, 5987, 56446, '2.0000', '1.4661', '1.4661', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101731, '2022-07-20', 1580, 96011, 5987, 54914, '1.0000', '1.4661', '1.4661', '2.0000', '2.0000', '83.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101732, '2022-07-20', 2315, 96012, 5987, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101733, '2022-07-20', 2916, 96013, 5988, NULL, '1.0000', '4209.2937', '4209.2937', '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 (101734, '2022-07-20', 9741, 96014, 5988, NULL, '1.0000', '7.8500', '7.8500', '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 (101735, '2022-07-20', 2315, 96015, 5988, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101736, '2022-07-20', 1867, 96016, 5988, 55547, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101737, '2022-07-20', 7385, 96017, 5988, 58142, '15.0000', '3.1710', '3.1710', '4.0000', '4.0000', '158.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101738, '2022-07-20', 2142, 96018, 5988, 55559, '1.0000', '69.7500', '69.7500', '98.0000', '98.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101739, '2022-07-20', 2444, 96019, 5988, 39222, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101740, '2022-07-20', 2935, 96020, 5988, NULL, '1.0000', '-2.6500', '-2.6500', '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 (101741, '2022-07-20', 2315, 96021, 5988, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101742, '2022-07-20', 2285, 96022, 5988, NULL, '1.0000', '-35.9568', '-35.9568', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101743, '2022-07-20', 1809, 96023, 5988, 54950, '1.0000', '10.1539', '10.1539', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101744, '2022-07-20', 7324, 96024, 5988, NULL, '2.0000', '5.4813', '5.4813', '8.5000', '8.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 (101745, '2022-07-20', 2315, 96025, 5988, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101746, '2022-07-20', 7483, 96026, 5988, 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 (101747, '2022-07-20', 1819, 96027, 5988, 56391, '1.0000', '7.2433', '7.2433', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101748, '2022-07-20', 7822, 96028, 5988, NULL, '1.0000', '8.0000', '8.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 (101749, '2022-07-20', 1529, 96029, 5988, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101750, '2022-07-20', 7583, 96030, 5988, NULL, '1.0000', '4.0000', '4.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 (101751, '2022-07-20', 2299, 96031, 5988, 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 (101752, '2022-07-20', 8677, 96032, 5988, NULL, '1.0000', '630.6244', '630.6244', '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 (101753, '2022-07-20', 1672, 96033, 5988, 57792, '14.0000', '4.1808', '4.1808', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101754, '2022-07-20', 2105, 96034, 5988, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101755, '2022-07-20', 2730, 96035, 5988, 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 (101756, '2022-07-20', 2221, 96036, 5988, NULL, '1.0000', '2.3805', '2.3805', '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 (101757, '2022-07-20', 2027, 96037, 5988, 57092, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101758, '2022-07-20', 1859, 96038, 5988, 57718, '1.0000', '23.4408', '23.4408', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101759, '2022-07-20', 7347, 96039, 5988, NULL, '1.0000', '21.9000', '21.9000', '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 (101760, '2022-07-20', 2221, 96040, 5988, NULL, '1.0000', '2.3805', '2.3805', '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 (101761, '2022-07-20', 7398, 96041, 5988, NULL, '1.0000', '143.5000', '143.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 (101762, '2022-07-20', 1428, 96042, 5988, 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 (101763, '2022-07-20', 2617, 96043, 5988, NULL, '1.0000', '5.1800', '5.1800', '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 (101764, '2022-07-20', 1571, 96044, 5988, NULL, '1.0000', '308.7500', '308.7500', '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 (101765, '2022-07-20', 2965, 96045, 5988, NULL, '1.0000', '17.5053', '17.5053', '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 (101766, '2022-07-20', 9959, 96046, 5988, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101767, '2022-07-20', 9750, 96047, 5988, NULL, '1.0000', '3.3000', '3.3000', '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 (101768, '2022-07-20', 7744, 96048, 5988, NULL, '2.0000', '2.5833', '2.5833', '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 (101769, '2022-07-20', 2088, 96049, 5988, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101770, '2022-07-20', 1499, 96050, 5988, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101771, '2022-07-20', 2169, 96051, 5988, 55701, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101772, '2022-07-20', 9634, 96052, 5988, NULL, '3.0000', '4.8000', '4.8000', '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 (101773, '2022-07-20', 2643, 96053, 5988, 59003, '2.0000', '1.0097', '1.0097', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101774, '2022-07-20', 1577, 96054, 5988, NULL, '1.0000', '0.4895', '0.4895', '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 (101775, '2022-07-20', 7411, 96055, 5988, NULL, '1.0000', '1.2819', '1.2819', '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 (101776, '2022-07-20', 2163, 96056, 5988, 57777, '1.0000', '16.5835', '16.5835', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101777, '2022-07-20', 8133, 96057, 5988, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (101778, '2022-07-20', 7820, 96058, 5989, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101779, '2022-07-20', 7666, 96059, 5989, NULL, '1.0000', '3.6000', '3.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 (101780, '2022-07-20', 2965, 96060, 5989, NULL, '1.0000', '5.0000', '5.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 (101781, '2022-07-20', 7708, 96061, 5989, 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 (101782, '2022-07-20', 7611, 96062, 5989, NULL, '1.0000', '4.4000', '4.4000', '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 (101783, '2022-07-20', 7442, 96063, 5989, 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 (101784, '2022-07-20', 7672, 96064, 5989, NULL, '1.0000', '1.0200', '1.0200', '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 (101785, '2022-07-20', 9695, 96065, 5989, NULL, '1.0000', '4.5000', '4.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 (101786, '2022-07-20', 7411, 96066, 5989, NULL, '1.0000', '1.3500', '1.3500', '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 (101787, '2022-07-20', 7473, 96067, 5989, NULL, '4.0000', '0.5300', '0.5300', '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 (101788, '2022-07-20', 7579, 96068, 5989, NULL, '4.0000', '15.0000', '15.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 (101789, '2022-07-20', 7776, 96069, 5989, 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 (101790, '2022-07-20', 2649, 96070, 5989, 11163, '-6.0000', '71.9188', '71.9188', '131.0000', '131.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101791, '2022-07-20', 2649, 96070, 5989, NULL, '7.0000', '71.9188', '71.9188', '131.0000', '131.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 (101792, '2022-07-20', 1856, 96071, 5989, NULL, '1.0000', '4.2500', '4.2500', '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 (101793, '2022-07-20', 7672, 96072, 5989, NULL, '1.0000', '1.0200', '1.0200', '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 (101794, '2022-07-20', 1827, 96073, 5989, NULL, '10.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-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 (101795, '2022-07-20', 7490, 96074, 5989, NULL, '10.0000', '0.2300', '0.2300', '0.5000', '0.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 (101796, '2022-07-20', 8548, 96075, 5989, NULL, '1.0000', '12.0000', '12.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 (101797, '2022-07-20', 7848, 96076, 5989, NULL, '1.0000', '1.3500', '1.3500', '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 (101798, '2022-07-20', 9685, 96077, 5989, NULL, '1.0000', '34.6600', '34.6600', '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 (101799, '2022-07-20', 7514, 96078, 5989, NULL, '1.0000', '2.2500', '2.2500', '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 (101800, '2022-07-20', 7509, 96079, 5989, 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 (101801, '2022-07-20', 8457, 96080, 5989, NULL, '1.0000', '4.5000', '4.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 (101802, '2022-07-20', 9785, 96081, 5989, 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 (101803, '2022-07-20', 7806, 96082, 5989, NULL, '3.0000', '1.8000', '1.8000', '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 (101804, '2022-07-20', 7703, 96083, 5989, NULL, '1.0000', '22.9900', '22.9900', '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 (101805, '2022-07-20', 2315, 96084, 5989, 2735, '-557.0000', '0.3300', '0.3300', '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 (101806, '2022-07-20', 2315, 96084, 5989, NULL, '559.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-559.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101807, '2022-07-20', 1329, 96085, 5989, 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 (101808, '2022-07-20', 1337, 96086, 5989, 10809, '-26.0000', '2.0000', '2.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 (101809, '2022-07-20', 1337, 96086, 5989, NULL, '27.0000', '2.0000', '2.0000', '3.5000', '3.5000', '-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 (101810, '2022-07-20', 7762, 96087, 5989, NULL, '1.0000', '1.5000', '1.5000', '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 (101811, '2022-07-20', 7685, 96088, 5989, NULL, '2.0000', '31.2000', '31.2000', '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 (101812, '2022-07-20', 9974, 96089, 5989, 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 (101813, '2022-07-20', 7473, 96090, 5990, NULL, '4.0000', '0.5300', '0.5300', '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 (101814, '2022-07-20', 7885, 96091, 5990, NULL, '1.0000', '82.8700', '82.8700', '107.5000', '107.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101815, '2022-07-20', 9740, 96092, 5990, NULL, '1.0000', '0.6600', '0.6600', '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 (101816, '2022-07-20', 7411, 96093, 5990, NULL, '2.0000', '1.3500', '1.3500', '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 (101817, '2022-07-20', 8101, 96094, 5990, NULL, '2.0000', '1.9700', '1.9700', '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 (101818, '2022-07-20', 7453, 96095, 5990, NULL, '1.0000', '28.5000', '28.5000', '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 (101819, '2022-07-20', 2617, 96096, 5990, 9743, '-8.0000', '4.4000', '4.4000', '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 (101820, '2022-07-20', 2617, 96096, 5990, NULL, '9.0000', '4.4000', '4.4000', '8.5000', '8.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 (101821, '2022-07-20', 8288, 96097, 5990, NULL, '2.0000', '1.1600', '1.1600', '1.8000', '1.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 (101822, '2022-07-20', 7324, 96098, 5990, NULL, '5.0000', '4.0000', '4.0000', '8.5000', '8.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 (101823, '2022-07-20', 7708, 96099, 5990, 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 (101824, '2022-07-20', 7819, 96100, 5990, NULL, '1.0000', '9.5000', '9.5000', '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 (101825, '2022-07-20', 9586, 96101, 5990, 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 (101826, '2022-07-20', 9955, 96102, 5990, NULL, '1.0000', '5.4000', '5.4000', '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 (101827, '2022-07-20', 9450, 96103, 5990, NULL, '1.0000', '3.2000', '3.2000', '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 (101828, '2022-07-20', 8463, 96104, 5990, NULL, '1.0000', '18.0000', '18.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 (101829, '2022-07-20', 2256, 96105, 5990, 2793, '-9.0000', '12.7400', '12.7400', '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 (101830, '2022-07-20', 2256, 96105, 5990, NULL, '10.0000', '12.7400', '12.7400', '22.0000', '22.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 (101831, '2022-07-20', 7457, 96106, 5990, 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 (101832, '2022-07-20', 7832, 96107, 5990, NULL, '1.0000', '10.0000', '10.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 (101833, '2022-07-20', 2506, 96108, 5990, 16244, '-30.0000', '3.4900', '3.4900', '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 (101834, '2022-07-20', 2506, 96108, 5990, NULL, '31.0000', '3.4900', '3.4900', '6.5000', '6.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 (101835, '2022-07-20', 7664, 96109, 5990, NULL, '1.0000', '6.9400', '6.9400', '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 (101836, '2022-07-20', 1501, 96110, 5990, NULL, '1.0000', '2.0500', '2.0500', '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 (101837, '2022-07-20', 7591, 96111, 5990, NULL, '2.0000', '2.7500', '2.7500', '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 (101838, '2022-07-20', 7719, 96112, 5990, NULL, '1.0000', '6.0000', '6.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 (101839, '2022-07-20', 7756, 96113, 5990, NULL, '2.0000', '2.5000', '2.5000', '39.0000', '39.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 (101840, '2022-07-20', 7848, 96114, 5990, NULL, '1.0000', '1.3500', '1.3500', '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 (101841, '2022-07-20', 7917, 96115, 5990, NULL, '4.0000', '5.0000', '5.0000', '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 (101842, '2022-07-20', 7524, 96116, 5990, NULL, '1.0000', '11.9500', '11.9500', '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 (101843, '2022-07-20', 7412, 96117, 5990, NULL, '1.0000', '1.5200', '1.5200', '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 (101844, '2022-07-20', 1841, 96118, 5990, NULL, '4.0000', '142.5780', '142.5780', '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 (101845, '2022-07-20', 1840, 96119, 5990, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (101846, '2022-07-20', 2289, 96120, 5990, 2949, '-240.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 (101847, '2022-07-20', 2289, 96120, 5990, NULL, '242.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-242.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101848, '2022-07-20', 8328, 96121, 5990, 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 (101849, '2022-07-20', 2821, 96122, 5990, 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 (101850, '2022-07-20', 9274, 96123, 5990, NULL, '1.0000', '3.6000', '3.6000', '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 (101851, '2022-07-20', 2315, 96124, 5990, 2735, '-559.0000', '0.3300', '0.3300', '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 (101852, '2022-07-20', 2315, 96124, 5990, NULL, '561.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-561.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101853, '2022-07-20', 7315, 96125, 5990, NULL, '1.0000', '15.0000', '15.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 (101854, '2022-07-20', 7666, 96126, 5990, NULL, '1.0000', '3.6000', '3.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 (101855, '2022-07-20', 8753, 96127, 5990, 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 (101856, '2022-07-20', 8101, 96128, 5990, NULL, '1.0000', '1.9700', '1.9700', '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 (101857, '2022-07-20', 2506, 96129, 5990, 16244, '-30.0000', '3.4900', '3.4900', '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 (101858, '2022-07-20', 2506, 96129, 5990, NULL, '31.0000', '3.4900', '3.4900', '6.5000', '6.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 (101859, '2022-07-20', 9399, 96130, 5990, NULL, '1.0000', '0.9800', '0.9800', '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 (101860, '2022-07-20', 7611, 96131, 5990, NULL, '1.0000', '4.4000', '4.4000', '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 (101861, '2022-07-20', 7666, 96132, 5990, NULL, '1.0000', '3.6000', '3.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 (101862, '2022-07-20', 8918, 96133, 5990, NULL, '1.0000', '1.0400', '1.0400', '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 (101863, '2022-07-20', 1806, 96134, 5990, 11433, '-7.0000', '28.1300', '28.1300', '40.5000', '40.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 (101864, '2022-07-20', 1806, 96134, 5990, NULL, '8.0000', '28.1300', '28.1300', '40.5000', '40.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 (101865, '2022-07-20', 7560, 96135, 5990, NULL, '1.0000', '33.0200', '33.0200', '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 (101866, '2022-07-20', 8345, 96136, 5990, NULL, '1.0000', '5.9000', '5.9000', '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 (101867, '2022-07-20', 1310, 96137, 5991, 57989, '2.0000', '0.4060', '0.4060', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101868, '2022-07-20', 1580, 96138, 5991, 54604, '1.0000', '1.2644', '1.2644', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101869, '2022-07-20', 2315, 96139, 5991, 3069, '1.0000', '0.3300', '0.3300', '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 (101870, '2022-07-20', 1837, 96140, 5991, 56224, '2.0000', '0.5767', '0.5767', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101871, '2022-07-20', 2416, 96141, 5991, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101872, '2022-07-20', 8743, 96142, 5991, 56834, '1.0000', '11.1938', '11.1938', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101873, '2022-07-20', 8743, 96143, 5991, 56834, '2.0000', '11.1938', '11.1938', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101874, '2022-07-20', 2548, 96144, 5991, 56960, '1.0000', '9.2261', '9.2261', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101875, '2022-07-20', 9748, 96145, 5991, 57974, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101876, '2022-07-20', 9736, 96146, 5991, 58778, '1.0000', '4.4200', '4.4200', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101877, '2022-07-20', 7608, 96147, 5991, NULL, '1.0000', '6.9800', '6.9800', '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 (101878, '2022-07-20', 2248, 96148, 5991, 55871, '1.0000', '3.0210', '3.0210', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101879, '2022-07-20', 1812, 96149, 5991, 58615, '1.0000', '8.4873', '8.4873', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101880, '2022-07-20', 7411, 96150, 5991, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101881, '2022-07-20', 2169, 96151, 5991, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101882, '2022-07-20', 7411, 96152, 5991, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101883, '2022-07-20', 7358, 96153, 5991, NULL, '1.0000', '18.8000', '18.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 (101884, '2022-07-20', 1688, 96154, 5991, 56732, '1.0000', '19.9824', '19.9824', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101885, '2022-07-20', 7411, 96155, 5991, 55760, '3.0000', '1.3793', '1.3793', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101886, '2022-07-20', 2823, 96156, 5991, 58782, '2.0000', '7.1869', '7.1869', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101887, '2022-07-20', 7411, 96157, 5991, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101888, '2022-07-20', 9794, 96158, 5991, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101889, '2022-07-20', 1525, 96159, 5991, 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 (101890, '2022-07-20', 2260, 96160, 5991, 57992, '4.0000', '4.6659', '4.6659', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101891, '2022-07-20', 8761, 96161, 5991, 55444, '1.0000', '13.8930', '13.8930', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101892, '2022-07-20', 2293, 96162, 5991, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101893, '2022-07-20', 9729, 96163, 5991, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101894, '2022-07-20', 1470, 96164, 5991, 57964, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101895, '2022-07-20', 2916, 96165, 5991, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '8.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101896, '2022-07-20', 2020, 96166, 5991, 58661, '1.0000', '6.4673', '6.4673', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101897, '2022-07-20', 1812, 96167, 5991, 58615, '1.0000', '8.4873', '8.4873', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101898, '2022-07-20', 9747, 96168, 5991, 49848, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101899, '2022-07-20', 7411, 96169, 5991, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101900, '2022-07-20', 1590, 96170, 5991, 9437, '1.0000', '1.7700', '1.7700', '3.5000', '3.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 (101901, '2022-07-20', 2263, 96171, 5992, 56910, '1.0000', '5.2300', '5.2300', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101902, '2022-07-20', 7588, 96172, 5993, NULL, '1.0000', '6.9000', '6.9000', '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 (101903, '2022-07-20', 7506, 96173, 5993, NULL, '1.0000', '15.0000', '15.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 (101904, '2022-07-20', 7333, 96174, 5993, NULL, '4.0000', '13.5000', '13.5000', '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 (101905, '2022-07-20', 7834, 96175, 5994, 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 (101906, '2022-07-20', 2169, 96176, 5995, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101907, '2022-07-20', 7917, 96177, 5995, NULL, '1.0000', '5.0000', '5.0000', '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 (101908, '2022-07-20', 2908, 96178, 5995, 55931, '1.0000', '0.3518', '0.3518', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101909, '2022-07-20', 1399, 96179, 5995, 53651, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101910, '2022-07-20', 7514, 96180, 5995, NULL, '1.0000', '2.2500', '2.2500', '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 (101911, '2022-07-20', 2298, 96181, 5995, 57795, '1.0000', '-24.4602', '-24.4602', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101912, '2022-07-20', 7744, 96182, 5995, NULL, '1.0000', '2.5833', '2.5833', '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 (101913, '2022-07-20', 9902, 96183, 5995, 57714, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101914, '2022-07-20', 2068, 96184, 5995, NULL, '1.0000', '14.6943', '14.6943', '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 (101915, '2022-07-20', 9750, 96185, 5995, NULL, '1.0000', '3.3000', '3.3000', '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 (101916, '2022-07-20', 1519, 96186, 5995, NULL, '2.0000', '3.7571', '3.7571', '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 (101917, '2022-07-20', 2068, 96187, 5995, NULL, '1.0000', '14.6943', '14.6943', '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 (101918, '2022-07-20', 1696, 96188, 5995, 52156, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101919, '2022-07-20', 9695, 96189, 5995, 59001, '1.0000', '5.3806', '5.3806', '8.0000', '8.0000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101920, '2022-07-20', 9832, 96190, 5995, 58999, '1.0000', '1.3451', '1.3451', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101921, '2022-07-20', 8746, 96191, 5995, 58992, '1.0000', '2.8817', '2.8817', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101922, '2022-07-20', 2342, 96192, 5995, 58159, '1.0000', '2.3666', '2.3666', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101923, '2022-07-20', 1410, 96193, 5995, NULL, '1.0000', '48.8052', '48.8052', '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 (101924, '2022-07-20', 2384, 96194, 5995, NULL, '2.0000', '-0.4538', '-0.4538', '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 (101925, '2022-07-20', 2416, 96195, 5995, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101926, '2022-07-20', 2379, 96196, 5995, NULL, '2.0000', '-14.1447', '-14.1447', '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 (101927, '2022-07-20', 1855, 96197, 5995, NULL, '1.0000', '1.4615', '1.4615', '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 (101928, '2022-07-20', 2315, 96198, 5995, 54963, '3.0000', '0.7701', '0.7701', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101929, '2022-07-20', 9734, 96199, 5995, NULL, '4.0000', '0.3200', '0.3200', '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 (101930, '2022-07-20', 2821, 96200, 5995, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101931, '2022-07-20', 9725, 96201, 5995, 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 (101932, '2022-07-20', 2299, 96202, 5995, 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 (101933, '2022-07-20', 2254, 96203, 5995, 58168, '1.0000', '-31.2200', '-31.2200', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101934, '2022-07-20', 7411, 96204, 5995, NULL, '1.0000', '1.2819', '1.2819', '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 (101935, '2022-07-20', 8878, 96205, 5995, NULL, '1.0000', '3.8136', '3.8136', '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 (101936, '2022-07-20', 7514, 96206, 5995, NULL, '1.0000', '2.2500', '2.2500', '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 (101937, '2022-07-20', 1307, 96207, 5996, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '16.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 (101938, '2022-07-20', 7398, 96208, 5996, NULL, '2.0000', '6.0000', '6.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 (101939, '2022-07-21', 9760, 96209, 5997, 46938, '1.0000', '1.1000', '1.1000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101940, '2022-07-21', 7782, 96210, 5997, NULL, '1.0000', '5.0000', '5.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 (101941, '2022-07-21', 7411, 96211, 5997, 59077, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101942, '2022-07-21', 8878, 96212, 5997, 59100, '1.0000', '0.2117', '0.2117', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101943, '2022-07-21', 8132, 96213, 5997, 56600, '1.0000', '13.0514', '13.0514', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101944, '2022-07-21', 7868, 96214, 5997, NULL, '1.0000', '28.7600', '28.7600', '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 (101945, '2022-07-21', 7411, 96215, 5997, 59077, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101946, '2022-07-21', 9835, 96216, 5997, 57539, '1.0000', '24.0738', '24.0738', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101947, '2022-07-21', 9084, 96217, 5997, 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 (101948, '2022-07-21', 2363, 96218, 5997, 57465, '1.0000', '9.5960', '9.5960', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101949, '2022-07-21', 2416, 96219, 5997, 57521, '1.0000', '0.0332', '0.0332', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101950, '2022-07-21', 9819, 96220, 5997, 59226, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101951, '2022-07-21', 7333, 96221, 5997, NULL, '2.0000', '-5.7451', '-5.7451', '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 (101952, '2022-07-21', 7385, 96222, 5997, 59184, '2.0000', '6.9345', '6.9345', '4.0000', '4.0000', '57.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101953, '2022-07-21', 8200, 96223, 5997, 56669, '1.0000', '8.7746', '8.7746', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101954, '2022-07-21', 8448, 96224, 5997, 57458, '1.0000', '9.0400', '9.0400', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101955, '2022-07-21', 1884, 96225, 5997, 57438, '1.0000', '8.2666', '8.2666', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101956, '2022-07-21', 9732, 96226, 5997, 46184, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101957, '2022-07-21', 8677, 96227, 5997, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101958, '2022-07-21', 7518, 96228, 5997, 59177, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101959, '2022-07-21', 9734, 96229, 5997, 54140, '6.0000', '0.3200', '0.3200', '0.5000', '0.5000', '6.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101960, '2022-07-21', 7482, 96230, 5997, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101961, '2022-07-21', 7558, 96231, 5997, NULL, '2.0000', '0.9338', '0.9338', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101962, '2022-07-21', 9734, 96232, 5997, 54140, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '10.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101963, '2022-07-21', 7412, 96233, 5997, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101964, '2022-07-21', 7819, 96234, 5997, 59266, '1.0000', '12.8040', '12.8040', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101965, '2022-07-21', 7636, 96235, 5997, 57623, '3.0000', '1.3285', '1.3285', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101966, '2022-07-21', 1501, 96236, 5997, 59261, '1.0000', '2.7100', '2.7100', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101967, '2022-07-21', 7460, 96237, 5997, NULL, '3.0000', '294.7000', '294.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 (101968, '2022-07-21', 7674, 96238, 5997, 59259, '1.0000', '87.7517', '87.7517', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101969, '2022-07-21', 7712, 96239, 5997, NULL, '1.0000', '-1028.9043', '-1028.9043', '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 (101970, '2022-07-21', 8017, 96240, 5997, 59111, '4.0000', '0.6000', '0.6000', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101971, '2022-07-21', 9503, 96241, 5997, 56528, '1.0000', '1.2700', '1.2700', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101972, '2022-07-21', 7382, 96242, 5997, 59082, '1.0000', '8.4288', '8.4288', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101973, '2022-07-21', 7753, 96243, 5997, 59189, '1.0000', '3.5753', '3.5753', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101974, '2022-07-21', 1698, 96244, 5997, 33729, '1.0000', '8.4500', '8.4500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101975, '2022-07-21', 7383, 96245, 5997, 45820, '1.0000', '7.8552', '7.8552', '78.0000', '78.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101976, '2022-07-21', 7967, 96246, 5997, 57611, '1.0000', '7.1299', '7.1299', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101977, '2022-07-21', 7473, 96247, 5997, 59258, '4.0000', '0.5130', '0.5130', '0.7000', '0.7000', '66.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101978, '2022-07-21', 9819, 96248, 5997, 59226, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101979, '2022-07-21', 7784, 96249, 5997, 59237, '2.0000', '18.1744', '18.1744', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101980, '2022-07-21', 7641, 96250, 5997, 59229, '1.0000', '7.1219', '7.1219', '10.0000', '10.0000', '36.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101981, '2022-07-21', 2361, 96251, 5998, 42543, '1.0000', '0.4744', '0.4744', '0.6000', '0.6000', '24.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101982, '2022-07-21', 1912, 96252, 5998, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101983, '2022-07-21', 1912, 96253, 5998, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101984, '2022-07-21', 8021, 96254, 5998, NULL, '1.0000', '13.0000', '13.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 (101985, '2022-07-21', 2271, 96255, 5998, NULL, '1.0000', '12.0000', '12.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 (101986, '2022-07-21', 2315, 96256, 5998, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101987, '2022-07-21', 2643, 96257, 5998, 59003, '2.0000', '1.0097', '1.0097', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101988, '2022-07-21', 2169, 96258, 5998, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101989, '2022-07-21', 2242, 96259, 5998, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101990, '2022-07-21', 9207, 96260, 5998, NULL, '6.0000', '4.6000', '4.6000', '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 (101991, '2022-07-21', 2655, 96261, 5998, NULL, '1.0000', '-12.5505', '-12.5505', '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 (101992, '2022-07-21', 7753, 96262, 5998, NULL, '1.0000', '3.1400', '3.1400', '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 (101993, '2022-07-21', 2068, 96263, 5998, NULL, '1.0000', '14.6943', '14.6943', '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 (101994, '2022-07-21', 7591, 96264, 5998, NULL, '1.0000', '2.7500', '2.7500', '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 (101995, '2022-07-21', 9946, 96265, 5998, 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 (101996, '2022-07-21', 2935, 96266, 5998, NULL, '1.0000', '-2.6500', '-2.6500', '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 (101997, '2022-07-21', 9695, 96267, 5998, 59001, '2.0000', '5.3806', '5.3806', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101998, '2022-07-21', 9018, 96268, 5998, NULL, '1.0000', '6.9600', '6.9600', '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 (101999, '2022-07-21', 7736, 96269, 5998, 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 (102000, '2022-07-21', 1945, 96270, 5998, 55705, '1.0000', '9.3000', '9.3000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102001, '2022-07-21', 2100, 96271, 5998, NULL, '1.0000', '1.6804', '1.6804', '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 (102002, '2022-07-21', 2315, 96272, 5998, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102003, '2022-07-21', 2100, 96273, 5998, NULL, '1.0000', '1.6804', '1.6804', '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 (102004, '2022-07-21', 2315, 96274, 5998, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102005, '2022-07-21', 9738, 96275, 5998, 55943, '1.0000', '7.4000', '7.4000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102006, '2022-07-21', 9748, 96276, 5998, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102007, '2022-07-21', 7944, 96277, 5998, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102008, '2022-07-21', 2284, 96278, 5999, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102009, '2022-07-21', 2366, 96279, 6000, 3833, '-72.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 (102010, '2022-07-21', 2366, 96279, 6000, NULL, '74.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102011, '2022-07-21', 1528, 96280, 6000, NULL, '2.0000', '38.6400', '38.6400', '8.5000', '8.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 (102012, '2022-07-21', 1519, 96281, 6000, 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 (102013, '2022-07-21', 1695, 96282, 6000, 12925, '-15.0000', '15.5000', '15.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 (102014, '2022-07-21', 1695, 96282, 6000, NULL, '16.0000', '15.5000', '15.5000', '26.0000', '26.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 (102015, '2022-07-21', 2352, 96283, 6000, 3855, '-210.0000', '20.0000', '20.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 (102016, '2022-07-21', 2352, 96283, 6000, NULL, '212.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-212.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102017, '2022-07-21', 7674, 96284, 6000, NULL, '1.0000', '1.3000', '1.3000', '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 (102018, '2022-07-21', 2643, 96285, 6000, NULL, '1.0000', '0.8700', '0.8700', '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 (102019, '2022-07-21', 1432, 96286, 6000, NULL, '1.0000', '8.1574', '8.1574', '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 (102020, '2022-07-21', 7745, 96287, 6000, NULL, '1.0000', '6.7000', '6.7000', '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 (102021, '2022-07-21', 2167, 96288, 6000, 17165, '-53.0000', '2.2000', '2.2000', '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 (102022, '2022-07-21', 2167, 96288, 6000, NULL, '54.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102023, '2022-07-21', 2682, 96289, 6000, 12165, '-5.0000', '19.3000', '19.3000', '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 (102024, '2022-07-21', 2682, 96289, 6000, NULL, '6.0000', '19.3000', '19.3000', '20.0000', '20.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 (102025, '2022-07-21', 2414, 96290, 6000, 4620, '-31.0000', '3.4000', '3.4000', '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 (102026, '2022-07-21', 2414, 96290, 6000, NULL, '33.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-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 (102027, '2022-07-21', 2315, 96291, 6000, 2735, '-561.0000', '0.3300', '0.3300', '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 (102028, '2022-07-21', 2315, 96291, 6000, NULL, '562.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-562.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102029, '2022-07-21', 2366, 96292, 6000, 3833, '-72.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 (102030, '2022-07-21', 2366, 96292, 6000, NULL, '74.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102031, '2022-07-21', 2487, 96293, 6000, NULL, '1.0000', '23.7500', '23.7500', '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 (102032, '2022-07-21', 8878, 96294, 6001, NULL, '2.0000', '3.8136', '3.8136', '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 (102033, '2022-07-21', 8021, 96295, 6001, NULL, '1.0000', '13.0000', '13.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 (102034, '2022-07-21', 2285, 96296, 6001, NULL, '1.0000', '-35.9568', '-35.9568', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102035, '2022-07-21', 8065, 96297, 6001, NULL, '1.0000', '32.0000', '32.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 (102036, '2022-07-21', 2061, 96298, 6001, NULL, '1.0000', '4.3037', '4.3037', '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 (102037, '2022-07-21', 7323, 96299, 6002, 57672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102038, '2022-07-21', 2506, 96300, 6003, NULL, '1.0000', '-8.6523', '-8.6523', '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 (102039, '2022-07-21', 1577, 96301, 6003, NULL, '1.0000', '0.4895', '0.4895', '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 (102040, '2022-07-21', 2001, 96302, 6003, 58050, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102041, '2022-07-21', 1306, 96303, 6003, 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 (102042, '2022-07-21', 2381, 96304, 6003, 58123, '1.0000', '14.3540', '14.3540', '19.2700', '19.2700', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102043, '2022-07-21', 7779, 96305, 6003, NULL, '1.0000', '0.6200', '0.6200', '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 (102044, '2022-07-21', 9089, 96306, 6003, 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 (102045, '2022-07-21', 8183, 96307, 6003, NULL, '1.0000', '2774.2425', '2774.2425', '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 (102046, '2022-07-21', 9472, 96308, 6003, 58996, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102047, '2022-07-21', 2061, 96309, 6003, NULL, '1.0000', '4.3037', '4.3037', '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 (102048, '2022-07-21', 2754, 96310, 6003, NULL, '4.0000', '0.0800', '0.0800', '0.2000', '0.2000', '-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 (102049, '2022-07-21', 1938, 96311, 6003, 38554, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102050, '2022-07-21', 2409, 96312, 6003, 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 (102051, '2022-07-21', 2506, 96313, 6003, NULL, '1.0000', '-8.6523', '-8.6523', '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 (102052, '2022-07-21', 2320, 96314, 6003, 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 (102053, '2022-07-21', 8649, 96315, 6003, NULL, '1.0000', '20.9000', '20.9000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102054, '2022-07-21', 2699, 96316, 6003, NULL, '1.0000', '3.5000', '3.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 (102055, '2022-07-21', 8359, 96317, 6003, NULL, '1.0000', '13.5000', '13.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 (102056, '2022-07-21', 2254, 96318, 6003, NULL, '1.0000', '-31.2200', '-31.2200', '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 (102057, '2022-07-21', 8202, 96319, 6003, NULL, '1.0000', '1.6600', '1.6600', '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 (102058, '2022-07-21', 9794, 96320, 6003, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102059, '2022-07-21', 9902, 96321, 6003, 57714, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102060, '2022-07-21', 2384, 96322, 6003, NULL, '5.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (102061, '2022-07-21', 9422, 96323, 6003, NULL, '1.0000', '4.3200', '4.3200', '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 (102062, '2022-07-21', 1307, 96324, 6003, NULL, '1.0000', '-59.9897', '-59.9897', '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 (102063, '2022-07-21', 7741, 96325, 6003, NULL, '1.0000', '-52.1460', '-52.1460', '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 (102064, '2022-07-21', 1912, 96326, 6003, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102065, '2022-07-21', 7944, 96327, 6003, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102066, '2022-07-21', 1425, 96328, 6003, NULL, '1.0000', '86.3183', '86.3183', '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 (102067, '2022-07-21', 2353, 96329, 6003, NULL, '1.0000', '-23.9980', '-23.9980', '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 (102068, '2022-07-21', 2315, 96330, 6003, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102069, '2022-07-21', 1810, 96331, 6003, NULL, '1.0000', '15.0116', '15.0116', '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 (102070, '2022-07-21', 2344, 96332, 6003, NULL, '1.0000', '20.0000', '20.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 (102071, '2022-07-21', 2908, 96333, 6003, 55931, '10.0000', '0.3518', '0.3518', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102072, '2022-07-21', 7514, 96334, 6003, NULL, '1.0000', '2.2500', '2.2500', '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 (102073, '2022-07-21', 8844, 96335, 6003, NULL, '1.0000', '4.0579', '4.0579', '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 (102074, '2022-07-21', 7514, 96336, 6003, NULL, '1.0000', '2.2500', '2.2500', '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 (102075, '2022-07-21', 2642, 96337, 6003, 59010, '1.0000', '9.5647', '9.5647', '16.0000', '16.0000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102076, '2022-07-21', 8677, 96338, 6003, NULL, '2.0000', '630.6244', '630.6244', '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 (102077, '2022-07-21', 1306, 96339, 6003, 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 (102078, '2022-07-21', 8878, 96340, 6003, NULL, '2.0000', '3.8136', '3.8136', '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 (102079, '2022-07-21', 2169, 96341, 6003, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102080, '2022-07-21', 2964, 96342, 6003, NULL, '1.0000', '1823.4850', '1823.4850', '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 (102081, '2022-07-21', 9750, 96343, 6003, NULL, '1.0000', '3.3000', '3.3000', '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 (102082, '2022-07-21', 1577, 96344, 6003, NULL, '1.0000', '0.4895', '0.4895', '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 (102083, '2022-07-21', 1501, 96345, 6003, NULL, '1.0000', '0.6299', '0.6299', '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 (102084, '2022-07-21', 9794, 96346, 6003, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102085, '2022-07-21', 9734, 96347, 6003, NULL, '2.0000', '0.3200', '0.3200', '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 (102086, '2022-07-21', 9695, 96348, 6003, 59001, '1.0000', '5.3806', '5.3806', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102087, '2022-07-21', 7514, 96349, 6003, NULL, '1.0000', '2.2500', '2.2500', '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 (102088, '2022-07-21', 9734, 96350, 6003, NULL, '8.0000', '0.3200', '0.3200', '0.5000', '0.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 (102089, '2022-07-21', 1810, 96351, 6003, NULL, '1.0000', '15.0116', '15.0116', '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 (102090, '2022-07-21', 9794, 96352, 6003, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102091, '2022-07-21', 2821, 96353, 6003, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102092, '2022-07-21', 2068, 96354, 6003, NULL, '1.0000', '14.6943', '14.6943', '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 (102093, '2022-07-21', 9750, 96355, 6003, NULL, '1.0000', '3.3000', '3.3000', '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 (102094, '2022-07-21', 9794, 96356, 6003, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '71.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102095, '2022-07-21', 2315, 96357, 6003, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102096, '2022-07-21', 2169, 96358, 6003, 55701, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102097, '2022-07-21', 2242, 96359, 6004, 3059, '-92.0000', '0.4800', '0.4800', '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 (102098, '2022-07-21', 2242, 96359, 6004, NULL, '95.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-95.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102099, '2022-07-21', 7674, 96360, 6004, NULL, '1.0000', '1.3000', '1.3000', '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 (102100, '2022-07-21', 1841, 96361, 6004, NULL, '2.0000', '142.5780', '142.5780', '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 (102101, '2022-07-21', 8208, 96362, 6004, NULL, '2.0000', '33.0000', '33.0000', '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 (102102, '2022-07-21', 7674, 96363, 6004, NULL, '1.0000', '1.3000', '1.3000', '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 (102103, '2022-07-21', 7657, 96364, 6004, NULL, '1.0000', '11.3200', '11.3200', '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 (102104, '2022-07-21', 2279, 96365, 6004, 2939, '-25.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 (102105, '2022-07-21', 2279, 96365, 6004, NULL, '27.0000', '2.7000', '2.7000', '3.5000', '3.5000', '-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 (102106, '2022-07-21', 7473, 96366, 6004, NULL, '4.0000', '0.5300', '0.5300', '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 (102107, '2022-07-21', 1943, 96367, 6004, 5594, '-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 (102108, '2022-07-21', 1943, 96367, 6004, 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 (102109, '2022-07-21', 9797, 96368, 6004, 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 (102110, '2022-07-21', 7641, 96369, 6004, NULL, '1.0000', '1.9000', '1.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 (102111, '2022-07-21', 7917, 96370, 6004, NULL, '1.0000', '5.0000', '5.0000', '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 (102112, '2022-07-21', 7886, 96371, 6004, 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 (102113, '2022-07-21', 9729, 96372, 6004, NULL, '1.0000', '0.6200', '0.6200', '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 (102114, '2022-07-21', 7704, 96373, 6004, NULL, '2.0000', '0.4900', '0.4900', '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 (102115, '2022-07-21', 7518, 96374, 6004, NULL, '1.0000', '7.8200', '7.8200', '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 (102116, '2022-07-21', 2315, 96375, 6004, 2735, '-562.0000', '0.3300', '0.3300', '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 (102117, '2022-07-21', 2315, 96375, 6004, NULL, '563.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-563.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102118, '2022-07-21', 7641, 96376, 6004, NULL, '1.0000', '1.9000', '1.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 (102119, '2022-07-21', 7704, 96377, 6004, NULL, '1.0000', '0.4900', '0.4900', '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 (102120, '2022-07-21', 8883, 96378, 6004, NULL, '2.0000', '56.5500', '56.5500', '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 (102121, '2022-07-21', 7780, 96379, 6004, NULL, '1.0000', '11.6000', '11.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 (102122, '2022-07-21', 7514, 96380, 6004, NULL, '1.0000', '2.2500', '2.2500', '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 (102123, '2022-07-21', 7832, 96381, 6004, NULL, '1.0000', '10.0000', '10.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 (102124, '2022-07-21', 2315, 96382, 6004, 2735, '-562.0000', '0.3300', '0.3300', '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 (102125, '2022-07-21', 2315, 96382, 6004, NULL, '572.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-572.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102126, '2022-07-21', 1807, 96383, 6004, 18924, '3.0000', '1.8000', '1.8000', '2.5000', '2.5000', '15.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 (102127, '2022-07-21', 9274, 96384, 6004, NULL, '1.0000', '3.6000', '3.6000', '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 (102128, '2022-07-21', 2315, 96385, 6004, 2735, '-562.0000', '0.3300', '0.3300', '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 (102129, '2022-07-21', 2315, 96385, 6004, NULL, '564.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-564.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102130, '2022-07-21', 7708, 96386, 6004, NULL, '2.0000', '7.8000', '7.8000', '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 (102131, '2022-07-21', 8657, 96387, 6004, NULL, '1.0000', '6.3900', '6.3900', '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 (102132, '2022-07-21', 7779, 96388, 6004, NULL, '1.0000', '9.5000', '9.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 (102133, '2022-07-21', 7506, 96389, 6004, NULL, '1.0000', '15.0000', '15.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 (102134, '2022-07-21', 7641, 96390, 6004, NULL, '1.0000', '1.9000', '1.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 (102135, '2022-07-21', 7745, 96391, 6004, NULL, '1.0000', '6.7000', '6.7000', '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 (102136, '2022-07-21', 7385, 96392, 6004, NULL, '5.0000', '2.0000', '2.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 (102137, '2022-07-21', 7674, 96393, 6004, NULL, '1.0000', '1.3000', '1.3000', '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 (102138, '2022-07-21', 7323, 96394, 6004, NULL, '1.0000', '7.9800', '7.9800', '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 (102139, '2022-07-21', 7524, 96395, 6004, NULL, '1.0000', '11.9500', '11.9500', '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 (102140, '2022-07-21', 7457, 96396, 6004, 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 (102141, '2022-07-21', 7411, 96397, 6004, NULL, '2.0000', '1.3500', '1.3500', '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 (102142, '2022-07-21', 2821, 96398, 6004, 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 (102143, '2022-07-21', 9747, 96399, 6004, NULL, '1.0000', '0.6500', '0.6500', '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 (102144, '2022-07-21', 8810, 96400, 6004, NULL, '1.0000', '1.6000', '1.6000', '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 (102145, '2022-07-21', 1337, 96401, 6004, 10809, '-27.0000', '2.0000', '2.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 (102146, '2022-07-21', 1337, 96401, 6004, NULL, '28.0000', '2.0000', '2.0000', '3.5000', '3.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 (102147, '2022-07-21', 2069, 96402, 6004, 5571, '-13.0000', '2.0400', '2.0400', '9.5000', '9.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 (102148, '2022-07-21', 2069, 96402, 6004, NULL, '14.0000', '2.0400', '2.0400', '9.5000', '9.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 (102149, '2022-07-21', 9177, 96403, 6004, 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 (102150, '2022-07-21', 8721, 96404, 6004, NULL, '2.0000', '23.0000', '23.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 (102151, '2022-07-21', 7955, 96405, 6004, 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 (102152, '2022-07-21', 1620, 96406, 6004, 8955, '-69.0000', '408.8259', '408.8259', '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 (102153, '2022-07-21', 1620, 96406, 6004, NULL, '71.0000', '408.8259', '408.8259', '3.5000', '3.5000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102154, '2022-07-21', 7713, 96407, 6004, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (102155, '2022-07-21', 2345, 96408, 6004, 3848, '-4.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 (102156, '2022-07-21', 2345, 96408, 6004, NULL, '6.0000', '7.6400', '7.6400', '10.0000', '10.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 (102157, '2022-07-21', 7411, 96409, 6004, NULL, '2.0000', '1.3500', '1.3500', '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 (102158, '2022-07-21', 7896, 96410, 6004, NULL, '1.0000', '7.0000', '7.0000', '45.5000', '45.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102159, '2022-07-21', 1914, 96411, 6004, 5476, '1.0000', '4.9000', '4.9000', '8.0000', '8.0000', '3.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 (102160, '2022-07-21', 7411, 96412, 6004, NULL, '2.0000', '1.3500', '1.3500', '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 (102161, '2022-07-21', 2279, 96413, 6004, 2939, '-25.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 (102162, '2022-07-21', 2279, 96413, 6004, NULL, '26.0000', '2.7000', '2.7000', '3.5000', '3.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 (102163, '2022-07-21', 2740, 96414, 6004, 14259, '-2.0000', '9.0000', '9.0000', '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 (102164, '2022-07-21', 2740, 96414, 6004, NULL, '3.0000', '9.0000', '9.0000', '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 (102165, '2022-07-21', 9469, 96415, 6005, 59063, '1.0000', '3.6750', '3.6750', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102166, '2022-07-21', 3013, 96416, 6005, 46770, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102167, '2022-07-21', 1863, 96417, 6005, 58630, '1.0000', '1.3605', '1.3605', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102168, '2022-07-21', 7753, 96418, 6005, NULL, '1.0000', '3.1400', '3.1400', '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 (102169, '2022-07-21', 7881, 96419, 6005, NULL, '1.0000', '2.7500', '2.7500', '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 (102170, '2022-07-21', 1602, 96420, 6005, 56909, '1.0000', '7.0096', '7.0096', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102171, '2022-07-21', 7639, 96421, 6005, 32060, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102172, '2022-07-21', 1425, 96422, 6005, 58766, '1.0000', '6.9256', '6.9256', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102173, '2022-07-21', 1529, 96423, 6005, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '21.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102174, '2022-07-21', 9399, 96424, 6005, 50942, '1.0000', '1.0183', '1.0183', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102175, '2022-07-21', 1425, 96425, 6005, 58766, '1.0000', '6.9256', '6.9256', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102176, '2022-07-21', 2511, 96426, 6005, 56925, '1.0000', '9.7081', '9.7081', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102177, '2022-07-21', 2068, 96427, 6005, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102178, '2022-07-21', 9748, 96428, 6005, 57974, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102179, '2022-07-21', 2916, 96429, 6005, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '7.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102180, '2022-07-21', 1812, 96430, 6005, 58615, '1.0000', '8.4873', '8.4873', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102181, '2022-07-21', 3029, 96431, 6005, 58627, '1.0000', '7.4131', '7.4131', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102182, '2022-07-21', 7772, 96432, 6005, 49074, '1.0000', '56.0833', '56.0833', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102183, '2022-07-21', 2916, 96433, 6005, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '7.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102184, '2022-07-21', 2916, 96434, 6005, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '7.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102185, '2022-07-21', 2682, 96435, 6005, 58801, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102186, '2022-07-21', 1371, 96436, 6005, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102187, '2022-07-21', 1942, 96437, 6005, 56256, '1.0000', '20.1250', '20.1250', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102188, '2022-07-21', 1612, 96438, 6005, NULL, '1.0000', '11.6000', '11.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102189, '2022-07-21', 7411, 96439, 6005, 55760, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102190, '2022-07-21', 2315, 96440, 6005, 3069, '3.0000', '0.3300', '0.3300', '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 (102191, '2022-07-21', 7745, 96441, 6005, 57997, '3.0000', '6.7000', '6.7000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102192, '2022-07-21', 1425, 96442, 6005, 58766, '1.0000', '6.9256', '6.9256', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102193, '2022-07-21', 1525, 96443, 6005, 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 (102194, '2022-07-21', 2068, 96444, 6005, 57967, '1.0000', '12.3639', '12.3639', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102195, '2022-07-21', 2511, 96445, 6005, 56925, '1.0000', '9.7081', '9.7081', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102196, '2022-07-21', 2277, 96446, 6005, 56888, '3.0000', '0.4266', '0.4266', '1.5000', '1.5000', '116.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102197, '2022-07-21', 2277, 96447, 6005, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '118.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102198, '2022-07-21', 2618, 96448, 6005, 48779, '1.0000', '2.8873', '2.8873', '6.0000', '6.0000', '36.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102199, '2022-07-21', 7411, 96449, 6005, 55760, '2.0000', '1.3793', '1.3793', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102200, '2022-07-21', 1807, 96450, 6005, 58783, '3.0000', '-3.9727', '-3.9727', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102201, '2022-07-21', 2295, 96451, 6006, 2954, '-49.0000', '0.9600', '0.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 (102202, '2022-07-21', 2295, 96451, 6006, NULL, '52.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102203, '2022-07-21', 8677, 96452, 6006, NULL, '3.0000', '1.2800', '1.2800', '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 (102204, '2022-07-21', 2315, 96453, 6006, 2735, '-575.0000', '0.3300', '0.3300', '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 (102205, '2022-07-21', 2315, 96453, 6006, NULL, '576.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-576.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102206, '2022-07-21', 7411, 96454, 6006, NULL, '1.0000', '1.3500', '1.3500', '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 (102207, '2022-07-21', 7514, 96455, 6006, NULL, '1.0000', '2.2500', '2.2500', '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 (102208, '2022-07-21', 9978, 96456, 6006, NULL, '1.0000', '42.0000', '42.0000', '55.5000', '55.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102209, '2022-07-21', 7639, 96457, 6006, 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 (102210, '2022-07-21', 7848, 96458, 6006, NULL, '1.0000', '1.3500', '1.3500', '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 (102211, '2022-07-21', 2506, 96459, 6007, 16244, '-32.0000', '3.4900', '3.4900', '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 (102212, '2022-07-21', 2506, 96459, 6007, NULL, '33.0000', '3.4900', '3.4900', '6.5000', '6.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 (102213, '2022-07-21', 7514, 96460, 6008, NULL, '1.0000', '2.2500', '2.2500', '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 (102214, '2022-07-21', 2262, 96461, 6008, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102215, '2022-07-21', 8767, 96462, 6008, NULL, '1.0000', '8.5590', '8.5590', '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 (102216, '2022-07-21', 2754, 96463, 6008, NULL, '5.0000', '0.0800', '0.0800', '0.2000', '0.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 (102217, '2022-07-21', 2169, 96464, 6008, 55701, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102218, '2022-07-21', 1904, 96465, 6008, NULL, '1.0000', '-21.7625', '-21.7625', '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 (102219, '2022-07-21', 2765, 96466, 6008, NULL, '1.0000', '-3.5000', '-3.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 (102220, '2022-07-21', 1856, 96467, 6008, NULL, '1.0000', '155.0099', '155.0099', '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 (102221, '2022-07-21', 2986, 96468, 6008, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102222, '2022-07-21', 9204, 96469, 6008, NULL, '1.0000', '14.1514', '14.1514', '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 (102223, '2022-07-21', 2332, 96470, 6008, NULL, '1.0000', '32.4933', '32.4933', '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 (102224, '2022-07-21', 2384, 96471, 6008, NULL, '2.0000', '-0.4538', '-0.4538', '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 (102225, '2022-07-21', 2068, 96472, 6008, NULL, '1.0000', '14.6943', '14.6943', '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 (102226, '2022-07-21', 2169, 96473, 6008, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102227, '2022-07-21', 1689, 96474, 6008, 54947, '1.0000', '15.6116', '15.6116', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102228, '2022-07-21', 2511, 96475, 6008, NULL, '1.0000', '13.8000', '13.8000', '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 (102229, '2022-07-21', 7514, 96476, 6008, NULL, '1.0000', '2.2500', '2.2500', '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 (102230, '2022-07-21', 7630, 96477, 6009, NULL, '2.0000', '10.0000', '10.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 (102231, '2022-07-21', 7385, 96478, 6009, NULL, '4.0000', '2.0000', '2.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 (102232, '2022-07-21', 7780, 96479, 6009, NULL, '1.0000', '11.6000', '11.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 (102233, '2022-07-22', 7512, 96480, 6010, 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 (102234, '2022-07-22', 9539, 96481, 6010, 57105, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102235, '2022-07-22', 9736, 96482, 6010, NULL, '1.0000', '5.1722', '5.1722', '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 (102236, '2022-07-22', 2167, 96483, 6010, NULL, '1.0000', '1.7907', '1.7907', '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 (102237, '2022-07-22', 9740, 96484, 6010, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '81.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102238, '2022-07-22', 2608, 96485, 6010, 40127, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102239, '2022-07-22', 2948, 96486, 6010, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102240, '2022-07-22', 9959, 96487, 6010, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102241, '2022-07-22', 9748, 96488, 6010, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102242, '2022-07-22', 1695, 96489, 6010, 58122, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102243, '2022-07-22', 8844, 96490, 6010, NULL, '1.0000', '4.0579', '4.0579', '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 (102244, '2022-07-22', 7802, 96491, 6010, NULL, '3.0000', '1.1497', '1.1497', '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 (102245, '2022-07-22', 2345, 96492, 6010, 56377, '1.0000', '7.7764', '7.7764', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102246, '2022-07-22', 1674, 96493, 6010, NULL, '1.0000', '0.8028', '0.8028', '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 (102247, '2022-07-22', 2012, 96494, 6010, 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 (102248, '2022-07-22', 1867, 96495, 6010, 55547, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102249, '2022-07-22', 2270, 96496, 6010, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102250, '2022-07-22', 1867, 96497, 6010, 55547, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102251, '2022-07-22', 7774, 96498, 6010, 39783, '1.0000', '3.3000', '3.3000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102252, '2022-07-22', 7638, 96499, 6010, NULL, '1.0000', '12.0000', '12.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 (102253, '2022-07-22', 2256, 96500, 6010, 58149, '1.0000', '18.0320', '18.0320', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102254, '2022-07-22', 9902, 96501, 6010, 57714, '2.0000', '7.8000', '7.8000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102255, '2022-07-22', 1921, 96502, 6010, 57074, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102256, '2022-07-22', 8119, 96503, 6010, 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 (102257, '2022-07-22', 2299, 96504, 6010, 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 (102258, '2022-07-22', 1855, 96505, 6010, NULL, '1.0000', '1.4615', '1.4615', '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 (102259, '2022-07-22', 2728, 96506, 6010, 19354, '3.0000', '0.8000', '0.8000', '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 (102260, '2022-07-22', 9482, 96507, 6010, NULL, '2.0000', '0.5000', '0.5000', '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 (102261, '2022-07-22', 9482, 96508, 6010, NULL, '10.0000', '0.5000', '0.5000', '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 (102262, '2022-07-22', 9794, 96509, 6010, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102263, '2022-07-22', 1837, 96510, 6010, 58241, '2.0000', '2.5422', '2.5422', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102264, '2022-07-22', 7375, 96511, 6010, NULL, '10.0000', '5.1000', '5.1000', '7.0000', '7.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 (102265, '2022-07-22', 8119, 96512, 6010, 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 (102266, '2022-07-22', 1602, 96513, 6010, 57732, '1.0000', '7.0929', '7.0929', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102267, '2022-07-22', 2593, 96514, 6010, NULL, '1.0000', '14.4000', '14.4000', '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 (102268, '2022-07-22', 9749, 96515, 6010, 47098, '1.0000', '8.2900', '8.2900', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102269, '2022-07-22', 2823, 96516, 6010, 58215, '2.0000', '-5.2900', '-5.2900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102270, '2022-07-22', 9695, 96517, 6011, NULL, '1.0000', '4.5000', '4.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 (102271, '2022-07-22', 2268, 96518, 6011, 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 (102272, '2022-07-22', 2268, 96518, 6011, NULL, '3.0000', '7.3000', '7.3000', '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 (102273, '2022-07-22', 1808, 96519, 6011, 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 (102274, '2022-07-22', 2237, 96520, 6011, 2781, '-79.0000', '1.0600', '1.0600', '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 (102275, '2022-07-22', 2237, 96520, 6011, NULL, '81.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102276, '2022-07-22', 1394, 96521, 6011, 22358, '1.0000', '8.1700', '8.1700', '16.5000', '16.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 (102277, '2022-07-22', 1783, 96522, 6011, 4901, '-34.0000', '7.8500', '7.8500', '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 (102278, '2022-07-22', 1783, 96522, 6011, NULL, '37.0000', '7.8500', '7.8500', '13.5000', '13.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102279, '2022-07-22', 2317, 96523, 6011, 3473, '-15.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 (102280, '2022-07-22', 2317, 96523, 6011, NULL, '16.0000', '15.0000', '15.0000', '20.0000', '20.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 (102281, '2022-07-22', 1604, 96524, 6011, 6525, '-1.0000', '34.1212', '34.1212', '50.5000', '50.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 (102282, '2022-07-22', 1604, 96524, 6011, NULL, '3.0000', '34.1212', '34.1212', '50.5000', '50.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 (102283, '2022-07-22', 2821, 96525, 6011, 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 (102284, '2022-07-22', 9940, 96526, 6011, 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 (102285, '2022-07-22', 1339, 96527, 6011, 13004, '-20.0000', '1.6012', '1.6012', '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 (102286, '2022-07-22', 1339, 96527, 6011, NULL, '21.0000', '1.6012', '1.6012', '3.0000', '3.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102287, '2022-07-22', 2076, 96528, 6011, 18876, '1.0000', '8.0000', '8.0000', '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 (102288, '2022-07-22', 2916, 96529, 6011, NULL, '1.0000', '15.0000', '15.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 (102289, '2022-07-22', 2167, 96530, 6011, 17165, '-54.0000', '2.2000', '2.2000', '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 (102290, '2022-07-22', 2167, 96530, 6011, NULL, '55.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-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 (102291, '2022-07-22', 2503, 96531, 6011, NULL, '1.0000', '14.6000', '14.6000', '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 (102292, '2022-07-22', 1528, 96532, 6011, NULL, '2.0000', '38.6400', '38.6400', '8.5000', '8.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 (102293, '2022-07-22', 9940, 96533, 6011, 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 (102294, '2022-07-22', 7411, 96534, 6011, NULL, '1.0000', '1.3500', '1.3500', '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 (102295, '2022-07-22', 7913, 96535, 6012, NULL, '2.0000', '2.5500', '2.5500', '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 (102296, '2022-07-22', 1410, 96536, 6012, NULL, '1.0000', '48.8052', '48.8052', '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 (102297, '2022-07-22', 2668, 96537, 6012, 55683, '1.0000', '8.8449', '8.8449', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102298, '2022-07-22', 2416, 96538, 6012, 59002, '2.0000', '1.3437', '1.3437', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102299, '2022-07-22', 2699, 96539, 6012, NULL, '1.0000', '3.5000', '3.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 (102300, '2022-07-22', 2169, 96540, 6012, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102301, '2022-07-22', 2916, 96541, 6012, NULL, '1.0000', '4209.2937', '4209.2937', '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 (102302, '2022-07-22', 1501, 96542, 6012, NULL, '1.0000', '0.6299', '0.6299', '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 (102303, '2022-07-22', 2315, 96543, 6012, 54963, '1.0000', '0.7701', '0.7701', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102304, '2022-07-22', 1620, 96544, 6012, 58145, '1.0000', '2.3133', '2.3133', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102305, '2022-07-22', 2068, 96545, 6012, NULL, '1.0000', '14.6943', '14.6943', '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 (102306, '2022-07-22', 8444, 96546, 6012, 57692, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102307, '2022-07-22', 9482, 96547, 6012, NULL, '7.0000', '0.5000', '0.5000', '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 (102308, '2022-07-22', 2275, 96548, 6012, 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 (102309, '2022-07-22', 1409, 96549, 6012, 54544, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102310, '2022-07-22', 1904, 96550, 6012, NULL, '2.0000', '-21.7625', '-21.7625', '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 (102311, '2022-07-22', 2315, 96551, 6012, 54963, '2.0000', '0.7701', '0.7701', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102312, '2022-07-22', 2263, 96552, 6012, NULL, '1.0000', '37.4800', '37.4800', '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 (102313, '2022-07-22', 2416, 96553, 6012, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102314, '2022-07-22', 2068, 96554, 6012, NULL, '1.0000', '14.6943', '14.6943', '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 (102315, '2022-07-22', 1637, 96555, 6012, NULL, '1.0000', '238.7168', '238.7168', '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 (102316, '2022-07-22', 1867, 96556, 6012, 54516, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102317, '2022-07-22', 9794, 96557, 6012, 57665, '3.0000', '1.0800', '1.0800', '1.5000', '1.5000', '64.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102318, '2022-07-22', 2416, 96558, 6012, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102319, '2022-07-22', 1636, 96559, 6013, 55483, '3.0000', '52.1050', '52.1050', '19.0000', '19.0000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102320, '2022-07-22', 7591, 96560, 6014, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102321, '2022-07-22', 8622, 96561, 6014, 59550, '1.0000', '-7.8787', '-7.8787', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102322, '2022-07-22', 7674, 96562, 6014, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102323, '2022-07-22', 8825, 96563, 6014, 56568, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102324, '2022-07-22', 8395, 96564, 6014, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102325, '2022-07-22', 8547, 96565, 6014, 56550, '1.0000', '2.5128', '2.5128', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102326, '2022-07-22', 1557, 96566, 6014, 59560, '1.0000', '8.1218', '8.1218', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102327, '2022-07-22', 2416, 96567, 6014, 57521, '1.0000', '0.0332', '0.0332', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102328, '2022-07-22', 8097, 96568, 6014, 57444, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102329, '2022-07-22', 8097, 96568, 6014, 56696, '2.0000', '5.2765', '5.2765', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102330, '2022-07-22', 9656, 96569, 6014, 53528, '2.0000', '33.0000', '33.0000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102331, '2022-07-22', 9657, 96570, 6014, 53529, '2.0000', '37.0000', '37.0000', '49.0000', '49.0000', '2.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102332, '2022-07-22', 1501, 96571, 6014, 59364, '2.0000', '2.6968', '2.6968', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102333, '2022-07-22', 7672, 96572, 6014, 59078, '2.0000', '4.1633', '4.1633', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102334, '2022-07-22', 2906, 96573, 6014, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '33.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102335, '2022-07-22', 8000, 96574, 6014, NULL, '1.0000', '1040.0222', '1040.0222', '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 (102336, '2022-07-22', 8063, 96575, 6014, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '79.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102337, '2022-07-22', 7473, 96576, 6014, 59361, '2.0000', '0.5887', '0.5887', '0.7000', '0.7000', '64.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102338, '2022-07-22', 2315, 96577, 6014, 59539, '3.0000', '0.7632', '0.7632', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102339, '2022-07-22', 7753, 96578, 6014, 59563, '1.0000', '3.6029', '3.6029', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102340, '2022-07-22', 8485, 96579, 6014, NULL, '1.0000', '6.0600', '6.0600', '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 (102341, '2022-07-22', 7774, 96580, 6014, 57184, '1.0000', '8.6851', '8.6851', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102342, '2022-07-22', 2548, 96581, 6014, NULL, '1.0000', '6.7200', '6.7200', '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 (102343, '2022-07-22', 7640, 96582, 6014, 56029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102344, '2022-07-22', 7552, 96583, 6014, 57603, '1.0000', '5.1602', '5.1602', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102345, '2022-07-22', 7657, 96584, 6014, 59141, '1.0000', '16.6528', '16.6528', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102346, '2022-07-22', 2315, 96585, 6014, 59539, '1.0000', '0.7632', '0.7632', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102347, '2022-07-22', 7781, 96586, 6014, NULL, '3.0000', '6.8496', '6.8496', '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 (102348, '2022-07-22', 7867, 96587, 6014, NULL, '2.0000', '2.3130', '2.3130', '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 (102349, '2022-07-22', 8753, 96588, 6014, 59586, '1.0000', '4.1427', '4.1427', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102350, '2022-07-22', 7753, 96589, 6014, 59563, '1.0000', '3.6029', '3.6029', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102351, '2022-07-22', 9269, 96590, 6014, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102352, '2022-07-22', 7820, 96591, 6014, 59179, '1.0000', '10.5467', '10.5467', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102353, '2022-07-22', 8395, 96592, 6014, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102354, '2022-07-22', 7853, 96593, 6014, 56603, '2.0000', '2991.0589', '2991.0589', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102355, '2022-07-22', 1482, 96594, 6014, 52745, '2.0000', '-30.2144', '-30.2144', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102356, '2022-07-22', 9941, 96595, 6014, 57517, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102357, '2022-07-22', 8743, 96596, 6014, NULL, '1.0000', '9.6250', '9.6250', '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 (102358, '2022-07-22', 7512, 96597, 6014, 55062, '2.0000', '7.2082', '7.2082', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102359, '2022-07-22', 7382, 96598, 6014, 59082, '1.0000', '8.4288', '8.4288', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102360, '2022-07-22', 9084, 96599, 6014, 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 (102361, '2022-07-22', 9214, 96600, 6014, 57507, '1.0000', '-9.3835', '-9.3835', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102362, '2022-07-22', 8247, 96601, 6014, NULL, '1.0000', '54.0000', '54.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 (102363, '2022-07-22', 8925, 96602, 6014, 59122, '1.0000', '3.5315', '3.5315', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102364, '2022-07-22', 7704, 96603, 6014, NULL, '1.0000', '-1.5625', '-1.5625', '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 (102365, '2022-07-22', 8017, 96604, 6014, 59111, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102366, '2022-07-22', 8316, 96605, 6014, 59106, '1.0000', '11.4914', '11.4914', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102367, '2022-07-22', 9880, 96606, 6014, 59573, '1.0000', '4.3450', '4.3450', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102368, '2022-07-22', 8000, 96607, 6014, NULL, '1.0000', '1040.0222', '1040.0222', '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 (102369, '2022-07-22', 2169, 96608, 6015, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102370, '2022-07-22', 1529, 96609, 6015, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102371, '2022-07-22', 2237, 96610, 6015, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102372, '2022-07-22', 8017, 96611, 6015, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102373, '2022-07-22', 2948, 96612, 6015, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102374, '2022-07-22', 9794, 96613, 6015, 57665, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '62.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102375, '2022-07-22', 1501, 96614, 6015, NULL, '1.0000', '0.6299', '0.6299', '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 (102376, '2022-07-22', 7459, 96615, 6015, NULL, '1.0000', '-15.3118', '-15.3118', '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 (102377, '2022-07-22', 7777, 96616, 6015, NULL, '1.0000', '9.5000', '9.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 (102378, '2022-07-22', 1521, 96617, 6015, NULL, '1.0000', '-217.8500', '-217.8500', '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 (102379, '2022-07-22', 1590, 96618, 6015, 54532, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102380, '2022-07-22', 7913, 96619, 6015, NULL, '2.0000', '2.5500', '2.5500', '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 (102381, '2022-07-22', 9840, 96620, 6015, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102382, '2022-07-22', 9794, 96621, 6015, 57665, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '62.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102383, '2022-07-22', 9827, 96622, 6015, 57810, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102384, '2022-07-22', 7554, 96623, 6015, NULL, '10.0000', '16.0000', '16.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 (102385, '2022-07-22', 1833, 96624, 6015, NULL, '1.0000', '5.1600', '5.1600', '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 (102386, '2022-07-22', 3017, 96625, 6015, 56392, '1.0000', '3.9753', '3.9753', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102387, '2022-07-22', 7542, 96626, 6015, NULL, '1.0000', '3.8100', '3.8100', '5.0300', '5.0300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102388, '2022-07-22', 9959, 96627, 6015, 58176, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102389, '2022-07-22', 2353, 96628, 6015, NULL, '1.0000', '-23.9980', '-23.9980', '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 (102390, '2022-07-22', 9794, 96629, 6015, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '63.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102391, '2022-07-22', 2293, 96630, 6015, NULL, '3.0000', '-17.4320', '-17.4320', '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 (102392, '2022-07-22', 2295, 96631, 6015, 57742, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102393, '2022-07-22', 2242, 96632, 6015, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102394, '2022-07-22', 8017, 96633, 6015, 58212, '4.0000', '0.6000', '0.6000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102395, '2022-07-22', 9844, 96634, 6015, NULL, '2.0000', '2.5000', '2.5000', '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 (102396, '2022-07-22', 9891, 96635, 6015, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102397, '2022-07-22', 9840, 96636, 6015, 54934, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102398, '2022-07-22', 2694, 96637, 6015, 50233, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102399, '2022-07-22', 1910, 96638, 6015, 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 (102400, '2022-07-22', 2416, 96639, 6016, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102401, '2022-07-22', 1666, 96640, 6016, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102402, '2022-07-22', 2503, 96641, 6016, 57104, '1.0000', '17.7545', '17.7545', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102403, '2022-07-22', 2324, 96642, 6016, 59024, '1.0000', '12.2142', '12.2142', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102404, '2022-07-22', 1519, 96643, 6016, NULL, '1.0000', '3.7571', '3.7571', '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 (102405, '2022-07-22', 1369, 96644, 6016, 55569, '1.0000', '7.2000', '7.2000', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102406, '2022-07-22', 2754, 96645, 6016, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (102407, '2022-07-22', 7741, 96646, 6016, NULL, '1.0000', '-52.1460', '-52.1460', '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 (102408, '2022-07-22', 1873, 96647, 6016, 58170, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102409, '2022-07-22', 1787, 96648, 6016, NULL, '1.0000', '0.5000', '0.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 (102410, '2022-07-22', 1837, 96649, 6016, 58241, '1.0000', '2.5422', '2.5422', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102411, '2022-07-22', 2293, 96650, 6017, NULL, '3.0000', '-17.4320', '-17.4320', '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 (102412, '2022-07-22', 9794, 96651, 6017, 57665, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102413, '2022-07-22', 1884, 96652, 6017, NULL, '1.0000', '17.4104', '17.4104', '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 (102414, '2022-07-22', 2964, 96653, 6017, NULL, '1.0000', '1823.4850', '1823.4850', '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 (102415, '2022-07-22', 9108, 96654, 6017, NULL, '1.0000', '3.4000', '3.4000', '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 (102416, '2022-07-22', 9089, 96655, 6017, 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 (102417, '2022-07-22', 1845, 96656, 6018, 56592, '1.0000', '22.2501', '22.2501', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102418, '2022-07-22', 7899, 96657, 6018, 59172, '1.0000', '3.5357', '3.5357', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102419, '2022-07-22', 8097, 96658, 6018, NULL, '2.0000', '5.2765', '5.2765', '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 (102420, '2022-07-22', 9785, 96659, 6018, 59352, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102421, '2022-07-22', 8105, 96660, 6018, NULL, '1.0000', '17.7033', '17.7033', '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 (102422, '2022-07-22', 7453, 96661, 6018, 59546, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102423, '2022-07-22', 8449, 96662, 6018, 59316, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102424, '2022-07-22', 8133, 96663, 6018, 59188, '1.0000', '10.2727', '10.2727', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102425, '2022-07-22', 7780, 96664, 6018, 59555, '1.0000', '-1095.3583', '-1095.3583', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102426, '2022-07-22', 7630, 96665, 6018, 59310, '1.0000', '4.5400', '4.5400', '4.5000', '4.5000', '35.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102427, '2022-07-22', 7890, 96666, 6018, 52723, '1.0000', '30.9101', '30.9101', '23.5000', '23.5000', '2.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102428, '2022-07-22', 8878, 96667, 6018, 59552, '2.0000', '0.6570', '0.6570', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102429, '2022-07-22', 7782, 96668, 6018, NULL, '1.0000', '5.0000', '5.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 (102430, '2022-07-22', 8664, 96669, 6018, NULL, '1.0000', '0.3500', '0.3500', '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 (102431, '2022-07-22', 8017, 96670, 6018, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102432, '2022-07-22', 7753, 96671, 6018, 59563, '1.0000', '3.6029', '3.6029', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102433, '2022-07-22', 1947, 96672, 6018, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102434, '2022-07-22', 7474, 96673, 6018, 59196, '1.0000', '24.4271', '24.4271', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102435, '2022-07-22', 7803, 96674, 6018, NULL, '1.0000', '1.8200', '1.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 (102436, '2022-07-22', 8077, 96675, 6018, NULL, '1.0000', '4.9986', '4.9986', '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 (102437, '2022-07-22', 2315, 96676, 6018, 59539, '2.0000', '0.7632', '0.7632', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102438, '2022-07-22', 9272, 96677, 6018, NULL, '1.0000', '3.1000', '3.1000', '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 (102439, '2022-07-22', 7518, 96678, 6018, 59542, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '28.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102440, '2022-07-22', 7666, 96679, 6018, 59564, '1.0000', '7.2004', '7.2004', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102441, '2022-07-22', 7713, 96680, 6018, 50666, '5.0000', '0.3910', '0.3910', '0.6000', '0.6000', '90.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102442, '2022-07-22', 7524, 96681, 6018, 59543, '1.0000', '4.7622', '4.7622', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102443, '2022-07-22', 7641, 96682, 6018, 59538, '1.0000', '7.1027', '7.1027', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102444, '2022-07-22', 1529, 96683, 6019, 57765, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102445, '2022-07-22', 2315, 96684, 6019, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102446, '2022-07-22', 2169, 96685, 6019, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102447, '2022-07-22', 2030, 96686, 6020, NULL, '1.0000', '11.3333', '11.3333', '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 (102448, '2022-07-22', 2031, 96687, 6020, 59019, '1.0000', '5.5238', '5.5238', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102449, '2022-07-22', 2315, 96688, 6021, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102450, '2022-07-22', 1839, 96689, 6021, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (102451, '2022-07-22', 2416, 96690, 6021, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102452, '2022-07-22', 9942, 96691, 6021, NULL, '1.0000', '9.1000', '9.1000', '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 (102453, '2022-07-22', 3029, 96692, 6021, 58131, '1.0000', '-67.9257', '-67.9257', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102454, '2022-07-22', 1470, 96693, 6021, 55598, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102455, '2022-07-22', 2445, 96694, 6022, 22547, '4.0000', '3.2000', '3.2000', '5.5000', '5.5000', '12.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 (102456, '2022-07-22', 2379, 96695, 6023, NULL, '1.0000', '-14.1447', '-14.1447', '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 (102457, '2022-07-22', 1310, 96696, 6023, 57744, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102458, '2022-07-22', 1837, 96697, 6023, 58241, '1.0000', '2.5422', '2.5422', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102459, '2022-07-22', 1519, 96698, 6024, NULL, '1.0000', '3.7571', '3.7571', '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 (102460, '2022-07-22', 1667, 96699, 6024, 57712, '1.0000', '9.6099', '9.6099', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102461, '2022-07-22', 1702, 96700, 6025, 58593, '1.0000', '23.4755', '23.4755', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102462, '2022-07-22', 2416, 96701, 6025, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102463, '2022-07-22', 1841, 96702, 6025, 54426, '1.0000', '0.0701', '0.0701', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102464, '2022-07-22', 2289, 96703, 6025, 56722, '1.0000', '0.2692', '0.2692', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102465, '2022-07-22', 9783, 96704, 6025, 56908, '1.0000', '19.8667', '19.8667', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102466, '2022-07-22', 2403, 96705, 6025, 46568, '1.0000', '18.1582', '18.1582', '24.0000', '24.0000', '6.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102467, '2022-07-22', 2237, 96706, 6025, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102468, '2022-07-22', 2506, 96707, 6025, 54658, '1.0000', '4.0840', '4.0840', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102469, '2022-07-22', 2251, 96708, 6025, 57962, '1.0000', '12.4913', '12.4913', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102470, '2022-07-22', 9827, 96709, 6025, 58583, '1.0000', '16.7034', '16.7034', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102471, '2022-07-22', 2315, 96710, 6025, 3069, '2.0000', '0.3300', '0.3300', '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 (102472, '2022-07-22', 2327, 96711, 6025, 55803, '1.0000', '3.1287', '3.1287', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102473, '2022-07-22', 1593, 96712, 6025, 46780, '3.0000', '6.4444', '6.4444', '8.7000', '8.7000', '53.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102474, '2022-07-22', 1572, 96713, 6025, 58815, '3.0000', '1.9861', '1.9861', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102475, '2022-07-22', 2020, 96714, 6025, 58661, '1.0000', '6.4673', '6.4673', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102476, '2022-07-22', 2169, 96715, 6025, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102477, '2022-07-22', 2317, 96716, 6025, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '12.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102478, '2022-07-22', 2135, 96717, 6025, NULL, '1.0000', '2.2504', '2.2504', '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 (102479, '2022-07-22', 1812, 96718, 6025, 59633, '1.0000', '8.5380', '8.5380', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102480, '2022-07-22', 1662, 96719, 6025, 56987, '1.0000', '51.7297', '51.7297', '86.0000', '86.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102481, '2022-07-22', 2255, 96720, 6025, 52312, '1.0000', '19.7622', '19.7622', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102482, '2022-07-22', 9961, 96721, 6025, 58543, '1.0000', '18.5000', '18.5000', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102483, '2022-07-22', 2384, 96722, 6025, 58658, '2.0000', '0.4170', '0.4170', '0.8000', '0.8000', '61.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102484, '2022-07-22', 2777, 96723, 6025, 59629, '1.0000', '3.8697', '3.8697', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102485, '2022-07-22', 2379, 96724, 6025, 58652, '1.0000', '2.0012', '2.0012', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102486, '2022-07-22', 2281, 96725, 6025, 58765, '5.0000', '3.0000', '3.0000', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102487, '2022-07-22', 2221, 96726, 6025, 58659, '1.0000', '17.3584', '17.3584', '26.0000', '26.0000', '23.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102488, '2022-07-22', 2408, 96727, 6025, 40209, '1.0000', '8.9516', '8.9516', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102489, '2022-07-22', 9940, 96728, 6025, 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 (102490, '2022-07-22', 2251, 96729, 6025, 57962, '1.0000', '12.4913', '12.4913', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102491, '2022-07-22', 7411, 96730, 6025, 48774, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102492, '2022-07-22', 7639, 96731, 6025, 32060, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102493, '2022-07-22', 7708, 96732, 6026, 59536, '1.0000', '8.3016', '8.3016', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102494, '2022-07-22', 9204, 96733, 6026, 59545, '1.0000', '5.7904', '5.7904', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102495, '2022-07-22', 7865, 96734, 6026, 57391, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102496, '2022-07-22', 8200, 96735, 6026, 56669, '1.0000', '8.7746', '8.7746', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102497, '2022-07-22', 7385, 96736, 6026, 59399, '3.0000', '6.5272', '6.5272', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102498, '2022-07-22', 7548, 96737, 6026, 59123, '1.0000', '3.9186', '3.9186', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102499, '2022-07-22', 2445, 96738, 6027, 22547, '2.0000', '3.2000', '3.2000', '5.5000', '5.5000', '10.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 (102500, '2022-07-22', 1746, 96739, 6028, 56417, '1.0000', '4.6178', '4.6178', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102501, '2022-07-23', 2379, 96740, 6029, NULL, '1.0000', '-14.1447', '-14.1447', '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 (102502, '2022-07-23', 1302, 96741, 6029, 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 (102503, '2022-07-23', 2169, 96742, 6029, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102504, '2022-07-23', 1580, 96743, 6029, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '80.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102505, '2022-07-23', 9827, 96744, 6029, 57810, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102506, '2022-07-23', 2916, 96745, 6029, NULL, '1.0000', '4209.2937', '4209.2937', '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 (102507, '2022-07-23', 9695, 96746, 6029, 59001, '2.0000', '5.3806', '5.3806', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102508, '2022-07-23', 1912, 96747, 6029, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102509, '2022-07-23', 9891, 96748, 6029, 57769, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102510, '2022-07-23', 2167, 96749, 6029, NULL, '1.0000', '1.7907', '1.7907', '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 (102511, '2022-07-23', 2169, 96750, 6029, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102512, '2022-07-23', 7802, 96751, 6029, NULL, '2.0000', '1.1497', '1.1497', '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 (102513, '2022-07-23', 8017, 96752, 6029, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102514, '2022-07-23', 1689, 96753, 6029, 59602, '1.0000', '15.6239', '15.6239', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102515, '2022-07-23', 8878, 96754, 6029, NULL, '2.0000', '3.8136', '3.8136', '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 (102516, '2022-07-23', 8595, 96755, 6029, NULL, '1.0000', '-3.2120', '-3.2120', '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 (102517, '2022-07-23', 2948, 96756, 6029, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102518, '2022-07-23', 1499, 96757, 6029, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102519, '2022-07-23', 8254, 96758, 6029, NULL, '1.0000', '27.2800', '27.2800', '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 (102520, '2022-07-23', 8844, 96759, 6029, 59598, '1.0000', '6.8542', '6.8542', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102521, '2022-07-23', 1807, 96760, 6029, NULL, '1.0000', '34.9993', '34.9993', '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 (102522, '2022-07-23', 2545, 96761, 6029, 55553, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102523, '2022-07-23', 1519, 96762, 6029, NULL, '1.0000', '3.7571', '3.7571', '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 (102524, '2022-07-23', 1337, 96763, 6029, 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 (102525, '2022-07-23', 9959, 96764, 6029, 59622, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102526, '2022-07-23', 9946, 96765, 6029, 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 (102527, '2022-07-23', 8021, 96766, 6029, NULL, '1.0000', '13.0000', '13.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 (102528, '2022-07-23', 2256, 96767, 6029, 58149, '1.0000', '18.0320', '18.0320', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102529, '2022-07-23', 8878, 96768, 6029, NULL, '2.0000', '3.8136', '3.8136', '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 (102530, '2022-07-23', 1602, 96769, 6029, 59619, '1.0000', '7.1154', '7.1154', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102531, '2022-07-23', 7554, 96770, 6029, NULL, '10.0000', '16.0000', '16.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 (102532, '2022-07-23', 7749, 96771, 6030, NULL, '1.0000', '20.0200', '20.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 (102533, '2022-07-23', 9030, 96772, 6030, NULL, '1.0000', '12.9000', '12.9000', '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 (102534, '2022-07-23', 2416, 96773, 6030, 59002, '1.0000', '1.3437', '1.3437', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102535, '2022-07-23', 9740, 96774, 6030, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '80.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102536, '2022-07-23', 2262, 96775, 6031, 2798, '-10.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 (102537, '2022-07-23', 2262, 96775, 6031, NULL, '11.0000', '4.5000', '4.5000', '6.0000', '6.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 (102538, '2022-07-23', 1612, 96776, 6031, 8732, '-14.0000', '1.6000', '1.6000', '2.6400', '2.6400', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102539, '2022-07-23', 1612, 96776, 6031, NULL, '15.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-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 (102540, '2022-07-23', 1816, 96777, 6031, 22478, '-7.0000', '18.2300', '18.2300', '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 (102541, '2022-07-23', 1816, 96777, 6031, NULL, '8.0000', '18.2300', '18.2300', '29.0000', '29.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 (102542, '2022-07-23', 1596, 96778, 6031, 8361, '-9.0000', '2.5700', '2.5700', '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 (102543, '2022-07-23', 1596, 96778, 6031, NULL, '10.0000', '2.5700', '2.5700', '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 (102544, '2022-07-23', 1763, 96779, 6031, 3173, '-4.0000', '4.6900', '4.6900', '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 (102545, '2022-07-23', 1763, 96779, 6031, NULL, '5.0000', '4.6900', '4.6900', '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 (102546, '2022-07-23', 1715, 96780, 6031, 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 (102547, '2022-07-23', 7411, 96781, 6031, NULL, '1.0000', '1.3500', '1.3500', '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 (102548, '2022-07-23', 7848, 96782, 6031, NULL, '1.0000', '1.3500', '1.3500', '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 (102549, '2022-07-23', 1337, 96783, 6031, 10809, '-28.0000', '2.0000', '2.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 (102550, '2022-07-23', 1337, 96783, 6031, NULL, '30.0000', '2.0000', '2.0000', '3.5000', '3.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 (102551, '2022-07-23', 9757, 96784, 6031, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102552, '2022-07-23', 1533, 96785, 6031, 10381, '-34.0000', '2.5917', '2.5917', '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 (102553, '2022-07-23', 1533, 96785, 6031, NULL, '35.0000', '2.5917', '2.5917', '6.5000', '6.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102554, '2022-07-23', 2366, 96786, 6031, 3833, '-76.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 (102555, '2022-07-23', 2366, 96786, 6031, NULL, '78.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102556, '2022-07-23', 1910, 96787, 6031, 167, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '22.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 (102557, '2022-07-23', 1904, 96788, 6031, 5442, '-64.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 (102558, '2022-07-23', 1904, 96788, 6031, NULL, '68.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102559, '2022-07-23', 1808, 96789, 6031, 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 (102560, '2022-07-23', 1528, 96790, 6031, NULL, '1.0000', '38.6400', '38.6400', '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 (102561, '2022-07-23', 1612, 96791, 6031, 8732, '-14.0000', '1.6000', '1.6000', '2.6400', '2.6400', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102562, '2022-07-23', 1612, 96791, 6031, NULL, '15.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-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 (102563, '2022-07-23', 2823, 96792, 6031, 19684, '-18.0000', '11.2100', '11.2100', '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 (102564, '2022-07-23', 2823, 96792, 6031, NULL, '19.0000', '11.2100', '11.2100', '10.0000', '10.0000', '-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 (102565, '2022-07-23', 2260, 96793, 6031, 2796, '-21.0000', '4.2000', '4.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 (102566, '2022-07-23', 2260, 96793, 6031, NULL, '23.0000', '4.2000', '4.2000', '7.0000', '7.0000', '-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 (102567, '2022-07-23', 1689, 96794, 6031, 4897, '-21.0000', '60.7198', '60.7198', '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 (102568, '2022-07-23', 1689, 96794, 6031, NULL, '22.0000', '60.7198', '60.7198', '21.0000', '21.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102569, '2022-07-23', 7954, 96795, 6032, NULL, '1.0000', '7039.4904', '7039.4904', '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 (102570, '2022-07-23', 8017, 96796, 6032, 59111, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102571, '2022-07-23', 2315, 96797, 6032, 59539, '3.0000', '0.7632', '0.7632', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102572, '2022-07-23', 9734, 96798, 6032, 59554, '2.0000', '0.3605', '0.3605', '0.7000', '0.7000', '98.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102573, '2022-07-23', 7955, 96799, 6032, 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 (102574, '2022-07-23', 8324, 96800, 6032, NULL, '1.0000', '5.0011', '5.0011', '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 (102575, '2022-07-23', 7473, 96801, 6032, 59361, '2.0000', '0.5887', '0.5887', '0.7000', '0.7000', '62.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102576, '2022-07-23', 8068, 96802, 6032, 59166, '1.0000', '7.9956', '7.9956', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102577, '2022-07-23', 8878, 96803, 6032, 59552, '2.0000', '0.6570', '0.6570', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102578, '2022-07-23', 8395, 96804, 6032, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102579, '2022-07-23', 7483, 96805, 6032, 59356, '2.0000', '0.4200', '0.4200', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102580, '2022-07-23', 8097, 96806, 6032, NULL, '2.0000', '5.2765', '5.2765', '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 (102581, '2022-07-23', 8677, 96807, 6032, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102582, '2022-07-23', 1935, 96808, 6032, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '97.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102583, '2022-07-23', 1807, 96809, 6032, NULL, '2.0000', '-34.8462', '-34.8462', '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 (102584, '2022-07-23', 7412, 96810, 6032, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102585, '2022-07-23', 3019, 96811, 6032, 33731, '1.0000', '7.8000', '7.8000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102586, '2022-07-23', 7911, 96812, 6032, 59318, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102587, '2022-07-23', 9888, 96813, 6032, NULL, '1.0000', '19.8000', '19.8000', '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 (102588, '2022-07-23', 9800, 96814, 6032, 59136, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102589, '2022-07-23', 8883, 96815, 6032, NULL, '2.0000', '56.5500', '56.5500', '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 (102590, '2022-07-23', 7959, 96816, 6032, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '19.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102591, '2022-07-23', 2315, 96817, 6032, 59539, '1.0000', '0.7632', '0.7632', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102592, '2022-07-23', 2749, 96818, 6032, NULL, '1.0000', '27.0000', '27.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 (102593, '2022-07-23', 9634, 96819, 6032, NULL, '6.0000', '4.8000', '4.8000', '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 (102594, '2022-07-23', 7704, 96820, 6032, NULL, '3.0000', '-1.5625', '-1.5625', '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 (102595, '2022-07-23', 8677, 96821, 6032, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102596, '2022-07-23', 3045, 96822, 6032, 56521, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102597, '2022-07-23', 7765, 96823, 6032, NULL, '6.0000', '16.0000', '16.0000', '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 (102598, '2022-07-23', 8101, 96824, 6032, 59363, '3.0000', '2.1159', '2.1159', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102599, '2022-07-23', 7917, 96825, 6032, 52750, '1.0000', '2.1447', '2.1447', '0.7000', '0.7000', '78.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102600, '2022-07-23', 7473, 96826, 6032, 59361, '5.0000', '0.5887', '0.5887', '0.7000', '0.7000', '59.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102601, '2022-07-23', 9834, 96827, 6032, 59092, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102602, '2022-07-23', 7641, 96828, 6032, 59538, '1.0000', '7.1027', '7.1027', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102603, '2022-07-23', 9089, 96829, 6032, 57510, '1.0000', '7.1458', '7.1458', '9.0000', '9.0000', '13.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102604, '2022-07-23', 9695, 96830, 6032, 59175, '1.0000', '5.8540', '5.8540', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102605, '2022-07-23', 7674, 96831, 6032, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102606, '2022-07-23', 8883, 96832, 6032, NULL, '4.0000', '56.5500', '56.5500', '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 (102607, '2022-07-23', 8825, 96833, 6032, 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 (102608, '2022-07-23', 7496, 96834, 6032, NULL, '1.0000', '-2.0067', '-2.0067', '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 (102609, '2022-07-23', 9953, 96835, 6032, 59388, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102610, '2022-07-23', 9788, 96836, 6032, 56595, '4.0000', '1.5400', '1.5400', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102611, '2022-07-23', 7547, 96837, 6032, NULL, '4.0000', '-0.3235', '-0.3235', '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 (102612, '2022-07-23', 9692, 96838, 6032, 51054, '1.0000', '-20.7921', '-20.7921', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102613, '2022-07-23', 1935, 96839, 6032, 50678, '3.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '95.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102614, '2022-07-23', 7557, 96840, 6032, NULL, '10.0000', '0.5000', '0.5000', '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 (102615, '2022-07-23', 7482, 96841, 6032, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102616, '2022-07-23', 7382, 96842, 6032, 59082, '1.0000', '8.4288', '8.4288', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102617, '2022-07-23', 2284, 96843, 6032, 59510, '1.0000', '1.3717', '1.3717', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102618, '2022-07-23', 7641, 96844, 6032, 59538, '1.0000', '7.1027', '7.1027', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102619, '2022-07-23', 7385, 96845, 6032, 59399, '2.0000', '6.5272', '6.5272', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102620, '2022-07-23', 1501, 96846, 6032, 59364, '1.0000', '2.6968', '2.6968', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102621, '2022-07-23', 2284, 96847, 6032, 59510, '1.0000', '1.3717', '1.3717', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102622, '2022-07-23', 2248, 96848, 6032, 59324, '1.0000', '3.8406', '3.8406', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102623, '2022-07-23', 7993, 96849, 6032, 54731, '2.0000', '67.7556', '67.7556', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102624, '2022-07-23', 7334, 96850, 6032, 57210, '2.0000', '9.1591', '9.1591', '13.5000', '13.5000', '8.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102625, '2022-07-23', 8810, 96851, 6032, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102626, '2022-07-23', 7781, 96852, 6032, NULL, '3.0000', '6.8496', '6.8496', '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 (102627, '2022-07-23', 7506, 96853, 6033, NULL, '1.0000', '15.0000', '15.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 (102628, '2022-07-23', 7411, 96854, 6033, 59553, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102629, '2022-07-23', 1769, 96855, 6033, NULL, '1.0000', '26.8000', '26.8000', '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 (102630, '2022-07-23', 7725, 96856, 6033, NULL, '1.0000', '6.2371', '6.2371', '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 (102631, '2022-07-23', 7435, 96857, 6033, 59407, '14.0000', '9.2363', '9.2363', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102632, '2022-07-23', 7411, 96858, 6033, 59553, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102633, '2022-07-23', 8020, 96859, 6033, 59380, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102634, '2022-07-23', 2332, 96860, 6034, NULL, '1.0000', '32.4933', '32.4933', '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 (102635, '2022-07-23', 9469, 96861, 6034, NULL, '1.0000', '4.3167', '4.3167', '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 (102636, '2022-07-23', 2354, 96862, 6034, NULL, '1.0000', '28.4264', '28.4264', '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 (102637, '2022-07-23', 8744, 96863, 6034, 59647, '1.0000', '1.7672', '1.7672', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102638, '2022-07-23', 7641, 96864, 6034, NULL, '1.0000', '1.9000', '1.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 (102639, '2022-07-23', 2315, 96865, 6034, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102640, '2022-07-23', 2283, 96866, 6034, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102641, '2022-07-23', 8208, 96867, 6034, NULL, '1.0000', '47.9541', '47.9541', '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 (102642, '2022-07-23', 2169, 96868, 6034, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102643, '2022-07-23', 2169, 96869, 6034, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102644, '2022-07-23', 1888, 96870, 6034, 55945, '1.0000', '17.8475', '17.8475', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102645, '2022-07-23', 7917, 96871, 6034, NULL, '10.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (102646, '2022-07-23', 2643, 96872, 6034, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102647, '2022-07-23', 1331, 96873, 6034, NULL, '1.0000', '4.2000', '4.2000', '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 (102648, '2022-07-23', 2169, 96874, 6034, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102649, '2022-07-23', 9863, 96875, 6034, 55580, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102650, '2022-07-23', 1703, 96876, 6034, NULL, '1.0000', '9.2200', '9.2200', '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 (102651, '2022-07-23', 1839, 96877, 6034, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (102652, '2022-07-23', 8878, 96878, 6034, NULL, '2.0000', '3.8136', '3.8136', '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 (102653, '2022-07-23', 1499, 96879, 6034, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102654, '2022-07-23', 7790, 96880, 6034, NULL, '1.0000', '17.0000', '17.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 (102655, '2022-07-23', 2608, 96881, 6034, 40127, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102656, '2022-07-23', 2643, 96882, 6034, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102657, '2022-07-23', 8740, 96883, 6034, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102658, '2022-07-23', 7564, 96884, 6034, NULL, '1.0000', '0.6400', '0.6400', '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 (102659, '2022-07-23', 8043, 96885, 6034, NULL, '2.0000', '27.9800', '27.9800', '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 (102660, '2022-07-23', 8444, 96886, 6034, 57692, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102661, '2022-07-23', 2250, 96887, 6034, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102662, '2022-07-23', 7741, 96888, 6034, NULL, '1.0000', '-52.1460', '-52.1460', '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 (102663, '2022-07-23', 1501, 96889, 6034, NULL, '1.0000', '0.6299', '0.6299', '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 (102664, '2022-07-23', 7483, 96890, 6034, NULL, '1.0000', '0.4200', '0.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 (102665, '2022-07-23', 7411, 96891, 6034, NULL, '1.0000', '1.2819', '1.2819', '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 (102666, '2022-07-23', 7411, 96892, 6034, NULL, '2.0000', '1.2819', '1.2819', '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 (102667, '2022-07-23', 1904, 96893, 6034, NULL, '10.0000', '-21.7625', '-21.7625', '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 (102668, '2022-07-23', 1307, 96894, 6034, NULL, '1.0000', '-59.9897', '-59.9897', '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 (102669, '2022-07-23', 2169, 96895, 6034, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102670, '2022-07-23', 7411, 96896, 6034, NULL, '1.0000', '1.2819', '1.2819', '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 (102671, '2022-07-23', 1704, 96897, 6034, NULL, '1.0000', '27.2300', '27.2300', '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 (102672, '2022-07-23', 1912, 96898, 6034, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102673, '2022-07-23', 7514, 96899, 6034, NULL, '1.0000', '2.2500', '2.2500', '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 (102674, '2022-07-23', 7741, 96900, 6034, NULL, '1.0000', '-52.1460', '-52.1460', '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 (102675, '2022-07-23', 1787, 96901, 6034, NULL, '1.0000', '0.5000', '0.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 (102676, '2022-07-23', 7483, 96902, 6034, NULL, '1.0000', '0.4200', '0.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 (102677, '2022-07-23', 2379, 96903, 6034, NULL, '1.0000', '-14.1447', '-14.1447', '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 (102678, '2022-07-23', 1410, 96904, 6034, NULL, '1.0000', '48.8052', '48.8052', '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 (102679, '2022-07-23', 2699, 96905, 6034, NULL, '1.0000', '3.5000', '3.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 (102680, '2022-07-23', 2673, 96906, 6034, 55938, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102681, '2022-07-23', 9747, 96907, 6034, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102682, '2022-07-23', 7411, 96908, 6034, NULL, '1.0000', '1.2819', '1.2819', '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 (102683, '2022-07-23', 9734, 96909, 6034, 59596, '2.0000', '0.7089', '0.7089', '0.7000', '0.7000', '34.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102684, '2022-07-23', 8184, 96910, 6034, NULL, '10.0000', '3.0310', '3.0310', '4.0000', '4.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 (102685, '2022-07-23', 1688, 96911, 6034, 59601, '1.0000', '23.2094', '23.2094', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102686, '2022-07-23', 3029, 96912, 6034, 58131, '1.0000', '-67.9257', '-67.9257', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102687, '2022-07-23', 7429, 96913, 6034, NULL, '1.0000', '18.0000', '18.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 (102688, '2022-07-23', 2293, 96914, 6034, NULL, '3.0000', '-17.4320', '-17.4320', '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 (102689, '2022-07-23', 1871, 96915, 6034, NULL, '14.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (102690, '2022-07-23', 1812, 96916, 6034, 57783, '1.0000', '9.3425', '9.3425', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102691, '2022-07-23', 1487, 96917, 6034, NULL, '1.0000', '-330.9124', '-330.9124', '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 (102692, '2022-07-23', 7913, 96918, 6034, NULL, '2.0000', '2.5500', '2.5500', '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 (102693, '2022-07-23', 2169, 96919, 6034, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102694, '2022-07-23', 2263, 96920, 6034, NULL, '1.0000', '37.4800', '37.4800', '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 (102695, '2022-07-23', 2169, 96921, 6034, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102696, '2022-07-23', 2263, 96922, 6034, NULL, '1.0000', '37.4800', '37.4800', '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 (102697, '2022-07-23', 2169, 96923, 6034, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102698, '2022-07-23', 1857, 96924, 6034, NULL, '1.0000', '-332.5000', '-332.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 (102699, '2022-07-23', 1542, 96925, 6034, 19881, '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 (102700, '2022-07-23', 8183, 96926, 6034, NULL, '1.0000', '2774.2425', '2774.2425', '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 (102701, '2022-07-23', 1529, 96927, 6034, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102702, '2022-07-23', 7411, 96928, 6034, NULL, '1.0000', '1.2819', '1.2819', '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 (102703, '2022-07-23', 7743, 96929, 6034, NULL, '1.0000', '7.3900', '7.3900', '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 (102704, '2022-07-23', 8017, 96930, 6034, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102705, '2022-07-23', 2167, 96931, 6034, NULL, '1.0000', '1.7907', '1.7907', '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 (102706, '2022-07-23', 2473, 96932, 6034, 59675, '2.0000', '17.0000', '17.0000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102707, '2022-07-23', 1903, 96933, 6035, 5441, '-2.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 (102708, '2022-07-23', 1903, 96933, 6035, NULL, '3.0000', '90.0000', '90.0000', '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 (102709, '2022-07-23', 2823, 96934, 6035, 19684, '-19.0000', '11.2100', '11.2100', '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 (102710, '2022-07-23', 2823, 96934, 6035, NULL, '20.0000', '11.2100', '11.2100', '10.0000', '10.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 (102711, '2022-07-23', 2821, 96935, 6035, 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 (102712, '2022-07-23', 7411, 96936, 6035, NULL, '1.0000', '1.3500', '1.3500', '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 (102713, '2022-07-23', 2022, 96937, 6035, 4200, '-3.0000', '3.5000', '3.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 (102714, '2022-07-23', 2022, 96937, 6035, NULL, '4.0000', '3.5000', '3.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 (102715, '2022-07-23', 2281, 96938, 6035, 2941, '-34.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 (102716, '2022-07-23', 2281, 96938, 6035, NULL, '35.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102717, '2022-07-23', 1386, 96939, 6035, 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 (102718, '2022-07-23', 1851, 96940, 6035, 8627, '-14.0000', '10.6568', '10.6568', '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 (102719, '2022-07-23', 1851, 96940, 6035, NULL, '15.0000', '10.6568', '10.6568', '20.0000', '20.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 (102720, '2022-07-23', 1691, 96941, 6035, NULL, '1.0000', '10.3300', '10.3300', '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 (102721, '2022-07-23', 9747, 96942, 6035, NULL, '1.0000', '0.6500', '0.6500', '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 (102722, '2022-07-23', 1851, 96943, 6035, 8627, '-14.0000', '10.6568', '10.6568', '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 (102723, '2022-07-23', 1851, 96943, 6035, NULL, '15.0000', '10.6568', '10.6568', '20.0000', '20.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 (102724, '2022-07-23', 2100, 96944, 6035, 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 (102725, '2022-07-23', 9286, 96945, 6035, 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 (102726, '2022-07-23', 9762, 96946, 6035, 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 (102727, '2022-07-23', 2332, 96947, 6035, 3835, '-23.0000', '5.8900', '5.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 (102728, '2022-07-23', 2332, 96947, 6035, NULL, '24.0000', '5.8900', '5.8900', '10.5000', '10.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 (102729, '2022-07-23', 1839, 96948, 6035, 8734, '-39.0000', '6.1500', '6.1500', '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 (102730, '2022-07-23', 1839, 96948, 6035, NULL, '40.0000', '6.1500', '6.1500', '11.0000', '11.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 (102731, '2022-07-23', 2858, 96949, 6035, 17772, '-108.0000', '1.0000', '1.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 (102732, '2022-07-23', 2858, 96949, 6035, NULL, '109.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-109.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102733, '2022-07-23', 7593, 96950, 6035, NULL, '1.0000', '2.4500', '2.4500', '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 (102734, '2022-07-23', 2821, 96951, 6035, 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 (102735, '2022-07-23', 9732, 96952, 6035, 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 (102736, '2022-07-23', 2406, 96953, 6035, 4454, '-4.0000', '20.7000', '20.7000', '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 (102737, '2022-07-23', 2406, 96953, 6035, NULL, '6.0000', '20.7000', '20.7000', '30.0000', '30.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 (102738, '2022-07-23', 1759, 96954, 6035, 6746, '-8.0000', '11.5000', '11.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 (102739, '2022-07-23', 1759, 96954, 6035, NULL, '9.0000', '11.5000', '11.5000', '18.0000', '18.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 (102740, '2022-07-23', 2259, 96955, 6035, 2795, '-6.0000', '19.9405', '19.9405', '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 (102741, '2022-07-23', 2259, 96955, 6035, NULL, '7.0000', '19.9405', '19.9405', '34.0000', '34.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 (102742, '2022-07-23', 1665, 96956, 6035, 3235, '-143.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 (102743, '2022-07-23', 1665, 96956, 6035, NULL, '146.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-146.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102744, '2022-07-23', 7411, 96957, 6035, NULL, '1.0000', '1.3500', '1.3500', '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 (102745, '2022-07-23', 1482, 96958, 6035, 1443, '-2.0000', '12.9900', '12.9900', '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 (102746, '2022-07-23', 1482, 96958, 6035, NULL, '3.0000', '12.9900', '12.9900', '18.0000', '18.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 (102747, '2022-07-23', 8167, 96959, 6036, 56519, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102748, '2022-07-23', 8149, 96960, 6036, 42409, '1.0000', '5.3000', '5.3000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102749, '2022-07-23', 8481, 96961, 6036, NULL, '1.0000', '-53.7484', '-53.7484', '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 (102750, '2022-07-23', 3074, 96962, 6036, 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 (102751, '2022-07-23', 8613, 96963, 6036, NULL, '1.0000', '4.0000', '4.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 (102752, '2022-07-23', 7514, 96964, 6036, NULL, '2.0000', '-19420.5252', '-19420.5252', '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 (102753, '2022-07-23', 1993, 96965, 6036, 39438, '1.0000', '1.5914', '1.5914', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102754, '2022-07-23', 7674, 96966, 6036, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102755, '2022-07-23', 9469, 96967, 6036, 57520, '1.0000', '1.5529', '1.5529', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102756, '2022-07-23', 7506, 96968, 6036, NULL, '1.0000', '15.0000', '15.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 (102757, '2022-07-23', 7478, 96969, 6036, 59338, '1.0000', '22.3458', '22.3458', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102758, '2022-07-23', 8038, 96970, 6036, 57398, '1.0000', '6.7192', '6.7192', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102759, '2022-07-23', 8063, 96971, 6036, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '78.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102760, '2022-07-23', 2643, 96972, 6037, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102761, '2022-07-23', 2169, 96973, 6038, 10737, '-185.0000', '3.8397', '3.8397', '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 (102762, '2022-07-23', 2169, 96973, 6038, NULL, '187.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-187.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102763, '2022-07-24', 2015, 96974, 6039, 56863, '1.0000', '3.9255', '3.9255', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102764, '2022-07-24', 2169, 96975, 6039, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102765, '2022-07-24', 1912, 96976, 6039, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102766, '2022-07-24', 2643, 96977, 6039, 59706, '2.0000', '1.0382', '1.0382', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102767, '2022-07-24', 2730, 96978, 6039, 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 (102768, '2022-07-24', 1620, 96979, 6039, 58145, '4.0000', '2.3133', '2.3133', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102769, '2022-07-24', 2275, 96980, 6039, 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 (102770, '2022-07-24', 1470, 96981, 6039, NULL, '1.0000', '12.9000', '12.9000', '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 (102771, '2022-07-24', 9942, 96982, 6039, NULL, '1.0000', '9.1000', '9.1000', '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 (102772, '2022-07-24', 7579, 96983, 6039, NULL, '1.0000', '15.0000', '15.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 (102773, '2022-07-24', 2545, 96984, 6039, 55553, '1.0000', '8.1019', '8.1019', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102774, '2022-07-24', 1839, 96985, 6039, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (102775, '2022-07-24', 8133, 96986, 6039, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (102776, '2022-07-24', 1307, 96987, 6039, NULL, '1.0000', '-59.9897', '-59.9897', '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 (102777, '2022-07-24', 8746, 96988, 6039, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102778, '2022-07-24', 1748, 96989, 6039, NULL, '1.0000', '0.3200', '0.3200', '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 (102779, '2022-07-24', 8773, 96990, 6039, 59646, '1.0000', '3.8300', '3.8300', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102780, '2022-07-24', 2352, 96991, 6039, NULL, '10.0000', '126.2588', '126.2588', '3.5000', '3.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 (102781, '2022-07-24', 2643, 96992, 6039, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102782, '2022-07-24', 1912, 96993, 6039, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102783, '2022-07-24', 9741, 96994, 6039, NULL, '1.0000', '7.8500', '7.8500', '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 (102784, '2022-07-24', 8133, 96995, 6039, NULL, '1.0000', '-34742.7481', '-34742.7481', '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 (102785, '2022-07-24', 2105, 96996, 6039, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102786, '2022-07-24', 9840, 96997, 6039, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102787, '2022-07-24', 1837, 96998, 6039, 58241, '1.0000', '2.5422', '2.5422', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102788, '2022-07-24', 2441, 96999, 6039, 59698, '1.0000', '14.5308', '14.5308', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102789, '2022-07-24', 9734, 97000, 6039, 59596, '7.0000', '0.7089', '0.7089', '0.7000', '0.7000', '27.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102790, '2022-07-24', 1863, 97001, 6039, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102791, '2022-07-24', 9030, 97002, 6039, NULL, '1.0000', '12.9000', '12.9000', '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 (102792, '2022-07-24', 2315, 97003, 6039, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102793, '2022-07-24', 8746, 97004, 6039, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102794, '2022-07-24', 1665, 97005, 6040, 55698, '1.0000', '1.1685', '1.1685', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102795, '2022-07-24', 2088, 97006, 6040, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102796, '2022-07-24', 2699, 97007, 6041, NULL, '1.0000', '3.5000', '3.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 (102797, '2022-07-24', 2948, 97008, 6041, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102798, '2022-07-24', 2167, 97009, 6042, NULL, '1.0000', '1.7907', '1.7907', '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 (102799, '2022-07-24', 2169, 97010, 6042, 55701, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102800, '2022-07-24', 2315, 97011, 6042, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102801, '2022-07-24', 1711, 97012, 6043, 59608, '1.0000', '10.2947', '10.2947', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102802, '2022-07-24', 2167, 97013, 6044, NULL, '1.0000', '1.7907', '1.7907', '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 (102803, '2022-07-24', 7526, 97014, 6045, NULL, '1.0000', '14.0000', '14.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 (102804, '2022-07-24', 7672, 97015, 6045, NULL, '1.0000', '1.0200', '1.0200', '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 (102805, '2022-07-24', 7715, 97016, 6045, NULL, '2.0000', '1.8900', '1.8900', '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 (102806, '2022-07-24', 8164, 97017, 6045, NULL, '1.0000', '16.3900', '16.3900', '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 (102807, '2022-07-24', 9274, 97018, 6045, NULL, '1.0000', '3.6000', '3.6000', '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 (102808, '2022-07-24', 8548, 97019, 6045, NULL, '1.0000', '12.0000', '12.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 (102809, '2022-07-24', 8053, 97020, 6045, 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 (102810, '2022-07-24', 7334, 97021, 6045, NULL, '1.0000', '8.2300', '8.2300', '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 (102811, '2022-07-24', 2315, 97022, 6045, 2735, '-576.0000', '0.3300', '0.3300', '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 (102812, '2022-07-24', 2315, 97022, 6045, NULL, '577.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-577.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102813, '2022-07-24', 7316, 97023, 6045, NULL, '5.0000', '9.5500', '9.5500', '1.3000', '1.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 (102814, '2022-07-24', 8896, 97024, 6045, NULL, '1.0000', '42.0000', '42.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 (102815, '2022-07-24', 7848, 97025, 6045, NULL, '1.0000', '1.3500', '1.3500', '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 (102816, '2022-07-24', 9763, 97026, 6045, NULL, '3.0000', '2.1000', '2.1000', '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 (102817, '2022-07-24', 7592, 97027, 6045, NULL, '1.0000', '6.8000', '6.8000', '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 (102818, '2022-07-24', 2069, 97028, 6045, 5571, '-14.0000', '2.0400', '2.0400', '9.5000', '9.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 (102819, '2022-07-24', 2069, 97028, 6045, NULL, '15.0000', '2.0400', '2.0400', '9.5000', '9.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 (102820, '2022-07-24', 7634, 97029, 6045, NULL, '1.0000', '1.8000', '1.8000', '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 (102821, '2022-07-24', 9507, 97030, 6045, NULL, '1.0000', '42.8000', '42.8000', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102822, '2022-07-24', 7444, 97031, 6045, 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 (102823, '2022-07-24', 7753, 97032, 6045, NULL, '1.0000', '3.4000', '3.4000', '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 (102824, '2022-07-24', 7749, 97033, 6045, NULL, '1.0000', '3.0000', '3.0000', '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 (102825, '2022-07-24', 7865, 97034, 6045, NULL, '1.0000', '1.6300', '1.6300', '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 (102826, '2022-07-24', 7899, 97035, 6045, NULL, '1.0000', '3.3000', '3.3000', '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 (102827, '2022-07-24', 7453, 97036, 6045, NULL, '1.0000', '28.5000', '28.5000', '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 (102828, '2022-07-24', 8596, 97037, 6045, NULL, '3.0000', '2.5000', '2.5000', '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 (102829, '2022-07-24', 7574, 97038, 6045, NULL, '1.0000', '8.2900', '8.2900', '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 (102830, '2022-07-24', 7661, 97039, 6045, NULL, '1.0000', '7.2000', '7.2000', '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 (102831, '2022-07-24', 7659, 97040, 6045, NULL, '1.0000', '5.9700', '5.9700', '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 (102832, '2022-07-24', 7608, 97041, 6045, NULL, '1.0000', '6.9800', '6.9800', '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 (102833, '2022-07-24', 7651, 97042, 6045, NULL, '1.0000', '2.6700', '2.6700', '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 (102834, '2022-07-24', 7740, 97043, 6045, NULL, '1.0000', '3.9500', '3.9500', '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 (102835, '2022-07-24', 7411, 97044, 6045, NULL, '1.0000', '1.3500', '1.3500', '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 (102836, '2022-07-24', 8085, 97045, 6046, NULL, '1.0000', '1.1700', '1.1700', '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 (102837, '2022-07-24', 9311, 97046, 6046, NULL, '2.0000', '6.6000', '6.6000', '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 (102838, '2022-07-24', 2730, 97047, 6047, 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 (102839, '2022-07-24', 7593, 97048, 6047, NULL, '1.0000', '0.8000', '0.8000', '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 (102840, '2022-07-24', 1450, 97049, 6047, NULL, '4.0000', '0.8483', '0.8483', '1.2000', '1.2000', '-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 (102841, '2022-07-24', 1487, 97050, 6047, NULL, '1.0000', '-330.9124', '-330.9124', '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 (102842, '2022-07-24', 2821, 97051, 6047, 58134, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102843, '2022-07-24', 1695, 97052, 6047, 59605, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102844, '2022-07-24', 2379, 97053, 6047, NULL, '1.0000', '-14.1447', '-14.1447', '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 (102845, '2022-07-24', 1856, 97054, 6047, NULL, '2.0000', '155.0099', '155.0099', '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 (102846, '2022-07-24', 2916, 97055, 6047, NULL, '1.0000', '4209.2937', '4209.2937', '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 (102847, '2022-07-24', 2315, 97056, 6047, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102848, '2022-07-24', 1425, 97057, 6047, NULL, '1.0000', '86.3183', '86.3183', '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 (102849, '2022-07-24', 8207, 97058, 6047, NULL, '1.0000', '0.0000', '0.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 (102850, '2022-07-24', 1307, 97059, 6047, NULL, '1.0000', '-59.9897', '-59.9897', '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 (102851, '2022-07-24', 9821, 97060, 6047, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102852, '2022-07-24', 2916, 97061, 6047, NULL, '1.0000', '4209.2937', '4209.2937', '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 (102853, '2022-07-24', 1410, 97062, 6047, NULL, '1.0000', '48.8052', '48.8052', '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 (102854, '2022-07-24', 9834, 97063, 6047, NULL, '1.0000', '1.4500', '1.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 (102855, '2022-07-24', 7953, 97064, 6047, NULL, '1.0000', '-0.5345', '-0.5345', '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 (102856, '2022-07-24', 9834, 97065, 6047, NULL, '1.0000', '1.4500', '1.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 (102857, '2022-07-24', 7324, 97066, 6047, NULL, '1.0000', '5.4813', '5.4813', '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 (102858, '2022-07-24', 2959, 97067, 6047, NULL, '1.0000', '4.0000', '4.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 (102859, '2022-07-24', 9834, 97068, 6047, NULL, '1.0000', '1.4500', '1.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 (102860, '2022-07-24', 7641, 97069, 6047, NULL, '1.0000', '1.9000', '1.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 (102861, '2022-07-24', 7411, 97070, 6047, NULL, '1.0000', '1.2819', '1.2819', '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 (102862, '2022-07-24', 1871, 97071, 6047, NULL, '2.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102863, '2022-07-24', 8677, 97072, 6047, NULL, '2.0000', '630.6244', '630.6244', '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 (102864, '2022-07-24', 1425, 97073, 6047, NULL, '1.0000', '86.3183', '86.3183', '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 (102865, '2022-07-24', 2315, 97074, 6047, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102866, '2022-07-24', 9902, 97075, 6047, 57714, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102867, '2022-07-24', 1529, 97076, 6047, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102868, '2022-07-24', 7328, 97077, 6047, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (102869, '2022-07-24', 8208, 97078, 6047, NULL, '4.0000', '47.9541', '47.9541', '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 (102870, '2022-07-24', 7911, 97079, 6047, NULL, '1.0000', '4.3700', '4.3700', '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 (102871, '2022-07-24', 2616, 97080, 6047, 59597, '1.0000', '3.3750', '3.3750', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102872, '2022-07-24', 8595, 97081, 6047, NULL, '1.0000', '-3.2120', '-3.2120', '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 (102873, '2022-07-24', 9740, 97082, 6047, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102874, '2022-07-24', 1880, 97083, 6047, 58250, '1.0000', '4.8475', '4.8475', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102875, '2022-07-24', 8743, 97084, 6047, 59649, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102876, '2022-07-24', 8746, 97085, 6047, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102877, '2022-07-24', 2061, 97086, 6047, NULL, '1.0000', '4.3037', '4.3037', '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 (102878, '2022-07-24', 7713, 97087, 6047, 55577, '4.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102879, '2022-07-24', 1529, 97088, 6047, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102880, '2022-07-24', 9740, 97089, 6047, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102881, '2022-07-24', 8699, 97090, 6047, NULL, '2.0000', '6.3800', '6.3800', '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 (102882, '2022-07-24', 2414, 97091, 6048, NULL, '1.0000', '3.4000', '3.4000', '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 (102883, '2022-07-24', 8878, 97092, 6048, 59552, '2.0000', '0.6570', '0.6570', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102884, '2022-07-24', 7854, 97093, 6048, NULL, '1.0000', '58.6100', '58.6100', '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 (102885, '2022-07-24', 1840, 97094, 6048, 56555, '3.0000', '0.2400', '0.2400', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102886, '2022-07-24', 1841, 97095, 6048, 56033, '3.0000', '0.1970', '0.1970', '0.5000', '0.5000', '50.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102887, '2022-07-24', 9445, 97096, 6048, 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 (102888, '2022-07-24', 9714, 97097, 6048, NULL, '1.0000', '25.0000', '25.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102889, '2022-07-24', 9695, 97098, 6048, 59175, '1.0000', '5.8540', '5.8540', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102890, '2022-07-24', 7509, 97099, 6048, 59556, '1.0000', '8.9370', '8.9370', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102891, '2022-07-24', 7411, 97100, 6048, 59553, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102892, '2022-07-24', 9272, 97101, 6048, NULL, '1.0000', '3.1000', '3.1000', '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 (102893, '2022-07-24', 9576, 97102, 6048, 54473, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102894, '2022-07-24', 9755, 97103, 6048, 54474, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102895, '2022-07-24', 2290, 97104, 6048, NULL, '1.0000', '9.8433', '9.8433', '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 (102896, '2022-07-24', 3056, 97105, 6048, 56152, '1.0000', '51.5500', '51.5500', '68.0000', '68.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102897, '2022-07-24', 1532, 97106, 6048, NULL, '3.0000', '90.0000', '90.0000', '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 (102898, '2022-07-24', 1935, 97107, 6048, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '93.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102899, '2022-07-24', 2821, 97108, 6048, 45852, '1.0000', '3.3725', '3.3725', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102900, '2022-07-24', 7411, 97109, 6048, 59553, '2.0000', '1.4000', '1.4000', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102901, '2022-07-24', 7872, 97110, 6048, 59403, '1.0000', '-2180.3597', '-2180.3597', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102902, '2022-07-24', 7674, 97111, 6048, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102903, '2022-07-24', 9788, 97112, 6048, 56595, '1.0000', '1.5400', '1.5400', '2.0000', '2.0000', '65.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102904, '2022-07-24', 7671, 97113, 6048, NULL, '1.0000', '254.1240', '254.1240', '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 (102905, '2022-07-24', 7401, 97114, 6048, 59524, '1.0000', '74.3000', '74.3000', '98.5000', '98.5000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102906, '2022-07-24', 7509, 97115, 6048, 59556, '1.0000', '8.9370', '8.9370', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102907, '2022-07-24', 1337, 97116, 6049, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102908, '2022-07-24', 1528, 97117, 6049, 57943, '3.0000', '37.9774', '37.9774', '8.5000', '8.5000', '13.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102909, '2022-07-24', 2618, 97118, 6049, 48779, '1.0000', '2.8873', '2.8873', '6.0000', '6.0000', '35.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102910, '2022-07-24', 2293, 97119, 6049, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102911, '2022-07-24', 1602, 97120, 6049, 59628, '1.0000', '7.0218', '7.0218', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102912, '2022-07-24', 7756, 97121, 6049, NULL, '1.0000', '26.9296', '26.9296', '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 (102913, '2022-07-24', 7411, 97122, 6049, 48774, '3.0000', '1.3793', '1.3793', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102914, '2022-07-24', 7504, 97123, 6049, NULL, '1.0000', '1.2400', '1.2400', '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 (102915, '2022-07-24', 2236, 97124, 6049, 54415, '1.0000', '5.9676', '5.9676', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102916, '2022-07-24', 1602, 97125, 6049, 59628, '1.0000', '7.0218', '7.0218', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102917, '2022-07-24', 1610, 97126, 6049, 56207, '1.0000', '24.7530', '24.7530', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102918, '2022-07-24', 7324, 97127, 6049, NULL, '2.0000', '55.7000', '55.7000', '8.5000', '8.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 (102919, '2022-07-24', 2567, 97128, 6049, 56837, '1.0000', '-77.0807', '-77.0807', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102920, '2022-07-24', 2169, 97129, 6049, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102921, '2022-07-24', 8158, 97130, 6049, NULL, '1.0000', '24.5000', '24.5000', '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 (102922, '2022-07-24', 1407, 97131, 6049, 58804, '1.0000', '18.3908', '18.3908', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102923, '2022-07-24', 7411, 97132, 6049, 48774, '2.0000', '1.3793', '1.3793', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102924, '2022-07-24', 1873, 97133, 6049, 57990, '1.0000', '13.3096', '13.3096', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102925, '2022-07-24', 1347, 97134, 6049, 59626, '3.0000', '-0.5451', '-0.5451', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102926, '2022-07-24', 2486, 97135, 6049, 21821, '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 (102927, '2022-07-24', 1602, 97136, 6049, 59628, '1.0000', '7.0218', '7.0218', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102928, '2022-07-24', 7411, 97137, 6049, 48774, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102929, '2022-07-24', 1839, 97138, 6049, 58650, '1.0000', '7.8591', '7.8591', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102930, '2022-07-24', 1499, 97139, 6049, 58613, '1.0000', '0.4612', '0.4612', '0.7000', '0.7000', '47.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102931, '2022-07-24', 2135, 97140, 6049, NULL, '1.0000', '2.2504', '2.2504', '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 (102932, '2022-07-24', 2643, 97141, 6049, 58009, '2.0000', '0.9691', '0.9691', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102933, '2022-07-24', 2169, 97142, 6049, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102934, '2022-07-24', 2024, 97143, 6049, 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 (102935, '2022-07-24', 1337, 97144, 6050, 57969, '2.0000', '2.2526', '2.2526', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102936, '2022-07-24', 1772, 97145, 6050, 58771, '1.0000', '6.0141', '6.0141', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102937, '2022-07-24', 8933, 97146, 6050, 58002, '1.0000', '8.7475', '8.7475', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102938, '2022-07-24', 7411, 97147, 6050, 48774, '1.0000', '1.3793', '1.3793', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102939, '2022-07-24', 2670, 97148, 6050, 11896, '1.0000', '0.3200', '0.3200', '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 (102940, '2022-07-24', 2085, 97149, 6050, 49132, '5.0000', '8.7836', '8.7836', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102941, '2022-07-24', 7385, 97150, 6050, 57945, '2.0000', '2.6553', '2.6553', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102942, '2022-07-24', 8677, 97151, 6050, 58649, '1.0000', '2.1372', '2.1372', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102943, '2022-07-24', 1643, 97152, 6050, NULL, '1.0000', '-30.5000', '-30.5000', '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 (102944, '2022-07-24', 2642, 97153, 6050, 58549, '1.0000', '9.6833', '9.6833', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102945, '2022-07-24', 7592, 97154, 6051, 59395, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102946, '2022-07-24', 8722, 97155, 6051, 50469, '1.0000', '21.3935', '21.3935', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102947, '2022-07-24', 7457, 97156, 6051, 59544, '1.0000', '4.7190', '4.7190', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102948, '2022-07-24', 2102, 97157, 6051, 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 (102949, '2022-07-24', 9272, 97158, 6051, NULL, '1.0000', '3.1000', '3.1000', '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 (102950, '2022-07-24', 7611, 97159, 6051, 59514, '1.0000', '9.8522', '9.8522', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102951, '2022-07-24', 3058, 97160, 6051, 48089, '1.0000', '4.2947', '4.2947', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102952, '2022-07-24', 7704, 97161, 6051, NULL, '1.0000', '-1.5625', '-1.5625', '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 (102953, '2022-07-24', 1855, 97162, 6051, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102954, '2022-07-24', 8017, 97163, 6052, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102955, '2022-07-24', 2169, 97164, 6052, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102956, '2022-07-24', 2916, 97165, 6052, NULL, '1.0000', '4209.2937', '4209.2937', '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 (102957, '2022-07-24', 2315, 97166, 6052, 59595, '4.0000', '0.7700', '0.7700', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102958, '2022-07-24', 9695, 97167, 6052, 59668, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102959, '2022-07-24', 9740, 97168, 6052, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '77.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102960, '2022-07-24', 2643, 97169, 6052, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102961, '2022-07-24', 7673, 97170, 6052, NULL, '1.0000', '15.5000', '15.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 (102962, '2022-07-24', 7743, 97171, 6052, NULL, '1.0000', '7.3900', '7.3900', '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 (102963, '2022-07-24', 8699, 97172, 6052, NULL, '1.0000', '6.3800', '6.3800', '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 (102964, '2022-07-24', 2730, 97173, 6052, 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 (102965, '2022-07-24', 1593, 97174, 6052, NULL, '3.0000', '5.9000', '5.9000', '8.7000', '8.7000', '-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 (102966, '2022-07-24', 1871, 97175, 6052, NULL, '4.0000', '-33.0401', '-33.0401', '3.7000', '3.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 (102967, '2022-07-25', 2293, 97176, 6053, NULL, '2.0000', '-17.4320', '-17.4320', '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 (102968, '2022-07-25', 9747, 97177, 6053, 54928, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102969, '2022-07-25', 7584, 97178, 6053, NULL, '1.0000', '3.1378', '3.1378', '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 (102970, '2022-07-25', 2089, 97179, 6053, 58158, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102971, '2022-07-25', 8119, 97180, 6053, 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 (102972, '2022-07-25', 2169, 97181, 6053, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102973, '2022-07-25', 1425, 97182, 6053, NULL, '1.0000', '86.3183', '86.3183', '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 (102974, '2022-07-25', 8017, 97183, 6053, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102975, '2022-07-25', 2315, 97184, 6053, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102976, '2022-07-25', 7917, 97185, 6053, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (102977, '2022-07-25', 8746, 97186, 6053, 59659, '2.0000', '2.4364', '2.4364', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102978, '2022-07-25', 8017, 97187, 6053, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102979, '2022-07-25', 2699, 97188, 6053, NULL, '1.0000', '3.5000', '3.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 (102980, '2022-07-25', 9762, 97189, 6053, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102981, '2022-07-25', 2169, 97190, 6053, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102982, '2022-07-25', 1339, 97191, 6053, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102983, '2022-07-25', 8485, 97192, 6053, NULL, '2.0000', '7.0400', '7.0400', '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 (102984, '2022-07-25', 2699, 97193, 6053, NULL, '1.0000', '3.5000', '3.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 (102985, '2022-07-25', 2754, 97194, 6053, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (102986, '2022-07-25', 2098, 97195, 6053, 58188, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102987, '2022-07-25', 1499, 97196, 6053, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102988, '2022-07-25', 1910, 97197, 6053, 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 (102989, '2022-07-25', 9902, 97198, 6053, 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 (102990, '2022-07-25', 2643, 97199, 6054, 59706, '3.0000', '1.0382', '1.0382', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102991, '2022-07-25', 2363, 97200, 6055, 3866, '-9.0000', '6.8800', '6.8800', '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 (102992, '2022-07-25', 2363, 97200, 6055, NULL, '11.0000', '6.8800', '6.8800', '12.0000', '12.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 (102993, '2022-07-25', 9715, 97201, 6055, NULL, '1.0000', '9.4000', '9.4000', '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 (102994, '2022-07-25', 9620, 97202, 6055, 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 (102995, '2022-07-25', 2069, 97203, 6055, 5571, '-15.0000', '2.0400', '2.0400', '9.5000', '9.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 (102996, '2022-07-25', 2069, 97203, 6055, NULL, '16.0000', '2.0400', '2.0400', '9.5000', '9.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 (102997, '2022-07-25', 7753, 97204, 6055, NULL, '1.0000', '3.4000', '3.4000', '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 (102998, '2022-07-25', 1935, 97205, 6055, 5586, '-186.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 (102999, '2022-07-25', 1935, 97205, 6055, NULL, '187.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-187.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103000, '2022-07-25', 7780, 97206, 6055, NULL, '1.0000', '11.6000', '11.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 (103001, '2022-07-25', 7657, 97207, 6055, NULL, '1.0000', '11.3200', '11.3200', '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 (103002, '2022-07-25', 7333, 97208, 6055, NULL, '1.0000', '13.5000', '13.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 (103003, '2022-07-25', 2315, 97209, 6055, 2735, '-577.0000', '0.3300', '0.3300', '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 (103004, '2022-07-25', 2315, 97209, 6055, NULL, '578.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-578.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103005, '2022-07-25', 7690, 97210, 6055, NULL, '1.0000', '18.2800', '18.2800', '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 (103006, '2022-07-25', 2650, 97211, 6055, 12033, '-5.0000', '7.3200', '7.3200', '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 (103007, '2022-07-25', 2650, 97211, 6055, NULL, '6.0000', '7.3200', '7.3200', '12.5000', '12.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 (103008, '2022-07-25', 7447, 97212, 6055, NULL, '5.0000', '19.1100', '19.1100', '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 (103009, '2022-07-25', 1965, 97213, 6055, NULL, '1.0000', '17.2400', '17.2400', '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 (103010, '2022-07-25', 3045, 97214, 6055, NULL, '1.0000', '5.4200', '5.4200', '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 (103011, '2022-07-25', 9461, 97215, 6055, NULL, '1.0000', '1.6000', '1.6000', '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 (103012, '2022-07-25', 7634, 97216, 6055, NULL, '1.0000', '1.8000', '1.8000', '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 (103013, '2022-07-25', 7879, 97217, 6055, NULL, '5.0000', '1.9800', '1.9800', '2.5000', '2.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 (103014, '2022-07-25', 9695, 97218, 6055, NULL, '1.0000', '4.5000', '4.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 (103015, '2022-07-25', 7518, 97219, 6055, NULL, '1.0000', '7.8200', '7.8200', '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 (103016, '2022-07-25', 8101, 97220, 6055, NULL, '1.0000', '1.9700', '1.9700', '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 (103017, '2022-07-25', 2315, 97221, 6055, 2735, '-577.0000', '0.3300', '0.3300', '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 (103018, '2022-07-25', 2315, 97221, 6055, NULL, '579.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-579.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103019, '2022-07-25', 7621, 97222, 6055, NULL, '1.0000', '5.9000', '5.9000', '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 (103020, '2022-07-25', 9776, 97223, 6055, NULL, '1.0000', '7.6700', '7.6700', '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 (103021, '2022-07-25', 7315, 97224, 6055, NULL, '1.0000', '15.0000', '15.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 (103022, '2022-07-25', 7330, 97225, 6055, NULL, '2.0000', '12.7000', '12.7000', '19.8000', '19.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 (103023, '2022-07-25', 2061, 97226, 6055, 2164, '-13.0000', '10.9800', '10.9800', '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 (103024, '2022-07-25', 2061, 97226, 6055, NULL, '14.0000', '10.9800', '10.9800', '17.5000', '17.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 (103025, '2022-07-25', 8040, 97227, 6055, NULL, '1.0000', '14.9000', '14.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 (103026, '2022-07-25', 9811, 97228, 6055, NULL, '1.0000', '29.0000', '29.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 (103027, '2022-07-25', 8068, 97229, 6055, NULL, '1.0000', '8.7900', '8.7900', '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 (103028, '2022-07-25', 8786, 97230, 6055, NULL, '1.0000', '1.0000', '1.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 (103029, '2022-07-25', 9505, 97231, 6055, NULL, '1.0000', '77.0000', '77.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 (103030, '2022-07-25', 9536, 97232, 6055, NULL, '1.0000', '2.6500', '2.6500', '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 (103031, '2022-07-25', 7514, 97233, 6055, NULL, '1.0000', '2.2500', '2.2500', '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 (103032, '2022-07-25', 8690, 97234, 6055, NULL, '1.0000', '10.8000', '10.8000', '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 (103033, '2022-07-25', 7317, 97235, 6055, NULL, '1.0000', '19.5500', '19.5500', '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 (103034, '2022-07-25', 8360, 97236, 6055, NULL, '1.0000', '3.2300', '3.2300', '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 (103035, '2022-07-25', 7715, 97237, 6055, NULL, '1.0000', '1.8900', '1.8900', '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 (103036, '2022-07-25', 7981, 97238, 6055, NULL, '5.0000', '6.0000', '6.0000', '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 (103037, '2022-07-25', 7614, 97239, 6055, NULL, '1.0000', '50.4900', '50.4900', '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 (103038, '2022-07-25', 8413, 97240, 6056, 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 (103039, '2022-07-25', 1867, 97241, 6056, NULL, '1.0000', '1.0500', '1.0500', '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 (103040, '2022-07-25', 9740, 97242, 6056, NULL, '2.0000', '0.6600', '0.6600', '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 (103041, '2022-07-25', 2384, 97243, 6056, 4087, '-60.0000', '0.4000', '0.4000', '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 (103042, '2022-07-25', 2384, 97243, 6056, NULL, '62.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103043, '2022-07-25', 1809, 97244, 6056, 7386, '-9.0000', '9.6000', '9.6000', '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 (103044, '2022-07-25', 1809, 97244, 6056, NULL, '10.0000', '9.6000', '9.6000', '16.0000', '16.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 (103045, '2022-07-25', 2169, 97245, 6056, 10737, '-187.0000', '3.8397', '3.8397', '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 (103046, '2022-07-25', 2169, 97245, 6056, NULL, '188.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-188.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103047, '2022-07-25', 2352, 97246, 6056, 3855, '-212.0000', '20.0000', '20.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 (103048, '2022-07-25', 2352, 97246, 6056, NULL, '214.0000', '20.0000', '20.0000', '3.5000', '3.5000', '-214.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103049, '2022-07-25', 2643, 97247, 6056, NULL, '1.0000', '0.8700', '0.8700', '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 (103050, '2022-07-25', 2240, 97248, 6056, 13712, '-6.0000', '36.9100', '36.9100', '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 (103051, '2022-07-25', 2240, 97248, 6056, NULL, '7.0000', '36.9100', '36.9100', '53.0000', '53.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 (103052, '2022-07-25', 9866, 97249, 6057, 56221, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103053, '2022-07-25', 2381, 97250, 6057, 57944, '1.0000', '11.1107', '11.1107', '19.2700', '19.2700', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103054, '2022-07-25', 1715, 97251, 6057, 52258, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103055, '2022-07-25', 2303, 97252, 6057, 58763, '2.0000', '17.2488', '17.2488', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103056, '2022-07-25', 1528, 97253, 6057, 57943, '1.0000', '37.9774', '37.9774', '8.5000', '8.5000', '12.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103057, '2022-07-25', 2906, 97254, 6057, 18670, '2.0000', '2.6000', '2.6000', '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 (103058, '2022-07-25', 3079, 97255, 6057, 27334, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103059, '2022-07-25', 2386, 97256, 6057, 56749, '1.0000', '2.8183', '2.8183', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103060, '2022-07-25', 7741, 97257, 6057, 58791, '1.0000', '3.2806', '3.2806', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103061, '2022-07-25', 2352, 97258, 6057, 44595, '1.0000', '233.6176', '233.6176', '3.5000', '3.5000', '55.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103062, '2022-07-25', 2315, 97259, 6057, 3069, '1.0000', '0.3300', '0.3300', '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 (103063, '2022-07-25', 2229, 97260, 6057, 56839, '1.0000', '26.0242', '26.0242', '37.0000', '37.0000', '0.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103064, '2022-07-25', 2858, 97261, 6057, 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 (103065, '2022-07-25', 1650, 97262, 6057, 58642, '1.0000', '15.0971', '15.0971', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103066, '2022-07-25', 9729, 97263, 6057, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103067, '2022-07-25', 2169, 97264, 6057, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103068, '2022-07-25', 1855, 97265, 6057, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103069, '2022-07-25', 2893, 97266, 6057, 58614, '1.0000', '6.6885', '6.6885', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103070, '2022-07-25', 8746, 97267, 6057, 58001, '1.0000', '65.4820', '65.4820', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103071, '2022-07-25', 1783, 97268, 6057, 58758, '3.0000', '1.0310', '1.0310', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103072, '2022-07-25', 1386, 97269, 6057, 58645, '1.0000', '216.5293', '216.5293', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103073, '2022-07-25', 2858, 97270, 6057, 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 (103074, '2022-07-25', 8746, 97271, 6057, 58001, '1.0000', '65.4820', '65.4820', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103075, '2022-07-25', 1519, 97272, 6057, 58634, '1.0000', '3.4435', '3.4435', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103076, '2022-07-25', 9219, 97273, 6058, 58824, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103077, '2022-07-25', 8758, 97274, 6058, 55445, '1.0000', '9.5523', '9.5523', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103078, '2022-07-25', 2503, 97275, 6058, 58598, '1.0000', '35.0129', '35.0129', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103079, '2022-07-25', 1863, 97276, 6058, 59625, '1.0000', '1.3711', '1.3711', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103080, '2022-07-25', 1666, 97277, 6059, 58660, '1.0000', '28.3511', '28.3511', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103081, '2022-07-25', 2858, 97278, 6060, 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 (103082, '2022-07-25', 2169, 97279, 6060, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103083, '2022-07-25', 1783, 97280, 6061, 58758, '1.0000', '1.0310', '1.0310', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103084, '2022-07-25', 1580, 97281, 6062, 54604, '5.0000', '1.2644', '1.2644', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103085, '2022-07-25', 9529, 97282, 6062, 58618, '1.0000', '11.8000', '11.8000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103086, '2022-07-25', 2416, 97283, 6063, 59669, '1.0000', '1.3394', '1.3394', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103087, '2022-07-25', 9734, 97284, 6063, 59596, '2.0000', '0.7089', '0.7089', '0.7000', '0.7000', '25.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103088, '2022-07-25', 2237, 97285, 6063, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103089, '2022-07-25', 9750, 97286, 6063, NULL, '1.0000', '3.3000', '3.3000', '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 (103090, '2022-07-25', 2916, 97287, 6063, NULL, '1.0000', '4209.2937', '4209.2937', '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 (103091, '2022-07-25', 1912, 97288, 6063, 51315, '3.0000', '0.6868', '0.6868', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103092, '2022-07-25', 9736, 97289, 6063, NULL, '1.0000', '5.1722', '5.1722', '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 (103093, '2022-07-25', 1596, 97290, 6063, 43255, '1.0000', '2.0328', '2.0328', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103094, '2022-07-25', 1856, 97291, 6063, NULL, '1.0000', '155.0099', '155.0099', '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 (103095, '2022-07-25', 8746, 97292, 6063, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103096, '2022-07-25', 3023, 97293, 6063, 50234, '1.0000', '5.5275', '5.5275', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103097, '2022-07-25', 2315, 97294, 6063, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103098, '2022-07-25', 9750, 97295, 6063, NULL, '1.0000', '3.3000', '3.3000', '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 (103099, '2022-07-25', 1904, 97296, 6063, NULL, '1.0000', '-21.7625', '-21.7625', '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 (103100, '2022-07-25', 1672, 97297, 6063, 57792, '14.0000', '4.1808', '4.1808', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103101, '2022-07-25', 2105, 97298, 6063, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103102, '2022-07-25', 8677, 97299, 6063, NULL, '2.0000', '630.6244', '630.6244', '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 (103103, '2022-07-25', 2237, 97300, 6063, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103104, '2022-07-25', 2753, 97301, 6063, 53665, '1.0000', '4.8632', '4.8632', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103105, '2022-07-25', 1337, 97302, 6063, 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 (103106, '2022-07-25', 2297, 97303, 6063, NULL, '1.0000', '10.3086', '10.3086', '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 (103107, '2022-07-25', 9740, 97304, 6063, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103108, '2022-07-25', 7324, 97305, 6063, NULL, '1.0000', '5.4813', '5.4813', '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 (103109, '2022-07-25', 9740, 97306, 6063, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103110, '2022-07-25', 8011, 97307, 6063, NULL, '1.0000', '0.9500', '0.9500', '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 (103111, '2022-07-25', 1856, 97308, 6063, NULL, '1.0000', '155.0099', '155.0099', '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 (103112, '2022-07-25', 2163, 97309, 6063, 57777, '1.0000', '16.5835', '16.5835', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103113, '2022-07-25', 8878, 97310, 6063, NULL, '1.0000', '3.8136', '3.8136', '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 (103114, '2022-07-25', 9960, 97311, 6063, NULL, '2.0000', '3.3000', '3.3000', '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 (103115, '2022-07-25', 2642, 97312, 6063, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '13.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103116, '2022-07-25', 2169, 97313, 6063, 55701, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103117, '2022-07-25', 2100, 97314, 6063, NULL, '1.0000', '0.4608', '0.4608', '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 (103118, '2022-07-25', 3029, 97315, 6063, NULL, '1.0000', '-67.9257', '-67.9257', '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 (103119, '2022-07-25', 2237, 97316, 6063, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103120, '2022-07-25', 1580, 97317, 6063, 54914, '4.0000', '1.4661', '1.4661', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103121, '2022-07-25', 2237, 97318, 6063, 57669, '2.0000', '15.5072', '15.5072', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103122, '2022-07-25', 2405, 97319, 6063, 56851, '5.0000', '1.2000', '1.2000', '1.8000', '1.8000', '17.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103123, '2022-07-25', 9204, 97320, 6063, NULL, '1.0000', '14.1514', '14.1514', '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 (103124, '2022-07-25', 2169, 97321, 6063, 55701, '5.0000', '1.6818', '1.6818', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103125, '2022-07-25', 1905, 97322, 6063, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103126, '2022-07-25', 7350, 97323, 6063, NULL, '1.0000', '30.4000', '30.4000', '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 (103127, '2022-07-25', 2511, 97324, 6063, NULL, '1.0000', '13.8000', '13.8000', '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 (103128, '2022-07-25', 8017, 97325, 6063, 58212, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103129, '2022-07-25', 1855, 97326, 6063, NULL, '1.0000', '1.4615', '1.4615', '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 (103130, '2022-07-25', 2289, 97327, 6063, NULL, '1.0000', '0.3611', '0.3611', '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 (103131, '2022-07-25', 1841, 97328, 6063, NULL, '1.0000', '0.7630', '0.7630', '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 (103132, '2022-07-25', 2169, 97329, 6063, 55701, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103133, '2022-07-25', 1409, 97330, 6063, 54544, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103134, '2022-07-25', 2916, 97331, 6063, NULL, '1.0000', '4209.2937', '4209.2937', '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 (103135, '2022-07-25', 9741, 97332, 6063, NULL, '1.0000', '7.8500', '7.8500', '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 (103136, '2022-07-25', 2544, 97333, 6063, NULL, '1.0000', '6.8800', '6.8800', '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 (103137, '2022-07-25', 7411, 97334, 6063, NULL, '1.0000', '1.2819', '1.2819', '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 (103138, '2022-07-25', 2916, 97335, 6063, NULL, '1.0000', '4209.2937', '4209.2937', '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 (103139, '2022-07-25', 7641, 97336, 6063, NULL, '2.0000', '1.9000', '1.9000', '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 (103140, '2022-07-25', 1621, 97337, 6063, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103141, '2022-07-25', 7411, 97338, 6063, NULL, '1.0000', '1.2819', '1.2819', '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 (103142, '2022-07-25', 2167, 97339, 6063, NULL, '1.0000', '1.7907', '1.7907', '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 (103143, '2022-07-25', 7411, 97340, 6063, NULL, '1.0000', '1.2819', '1.2819', '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 (103144, '2022-07-25', 9736, 97341, 6063, NULL, '1.0000', '5.1722', '5.1722', '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 (103145, '2022-07-25', 2169, 97342, 6063, 55701, '2.0000', '1.6818', '1.6818', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103146, '2022-07-25', 2959, 97343, 6064, 59053, '1.0000', '4.6271', '4.6271', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103147, '2022-07-25', 1984, 97344, 6064, 54333, '1.0000', '2.3473', '2.3473', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103148, '2022-07-25', 1383, 97345, 6064, 58591, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103149, '2022-07-25', 7459, 97346, 6064, NULL, '5.0000', '4.5753', '4.5753', '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 (103150, '2022-07-25', 1863, 97347, 6064, 59625, '2.0000', '1.3711', '1.3711', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103151, '2022-07-25', 7671, 97348, 6065, NULL, '1.0000', '15.5000', '15.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 (103152, '2022-07-25', 7564, 97349, 6065, 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 (103153, '2022-07-25', 7482, 97350, 6065, NULL, '1.0000', '3.0500', '3.0500', '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 (103154, '2022-07-25', 8203, 97351, 6065, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (103155, '2022-07-25', 9177, 97352, 6065, NULL, '4.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-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 (103156, '2022-07-25', 1856, 97353, 6065, NULL, '1.0000', '4.2500', '4.2500', '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 (103157, '2022-07-25', 9275, 97354, 6065, NULL, '2.0000', '6.3000', '6.3000', '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 (103158, '2022-07-25', 7780, 97355, 6065, NULL, '1.0000', '11.6000', '11.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 (103159, '2022-07-25', 9274, 97356, 6065, NULL, '1.0000', '3.6000', '3.6000', '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 (103160, '2022-07-25', 2315, 97357, 6065, 2735, '-580.0000', '0.3300', '0.3300', '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 (103161, '2022-07-25', 2315, 97357, 6065, NULL, '581.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-581.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103162, '2022-07-25', 7881, 97358, 6065, NULL, '1.0000', '2.3000', '2.3000', '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 (103163, '2022-07-25', 7411, 97359, 6065, NULL, '1.0000', '1.3500', '1.3500', '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 (103164, '2022-07-25', 7411, 97360, 6065, NULL, '1.0000', '1.3500', '1.3500', '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 (103165, '2022-07-25', 9751, 97361, 6065, 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 (103166, '2022-07-25', 9633, 97362, 6065, NULL, '1.0000', '8.4100', '8.4100', '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 (103167, '2022-07-25', 8396, 97363, 6065, NULL, '1.0000', '4.3000', '4.3000', '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 (103168, '2022-07-25', 2315, 97364, 6065, 2735, '-580.0000', '0.3300', '0.3300', '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 (103169, '2022-07-25', 2315, 97364, 6065, NULL, '582.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-582.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103170, '2022-07-25', 8463, 97365, 6065, NULL, '1.0000', '18.0000', '18.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 (103171, '2022-07-25', 7339, 97366, 6065, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (103172, '2022-07-25', 2315, 97367, 6065, 2735, '-580.0000', '0.3300', '0.3300', '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 (103173, '2022-07-25', 2315, 97367, 6065, NULL, '581.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-581.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103174, '2022-07-25', 7385, 97368, 6065, NULL, '5.0000', '2.0000', '2.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 (103175, '2022-07-25', 7514, 97369, 6065, NULL, '2.0000', '2.2500', '2.2500', '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 (103176, '2022-07-25', 9695, 97370, 6065, NULL, '1.0000', '4.5000', '4.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 (103177, '2022-07-25', 9761, 97371, 6065, 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 (103178, '2022-07-25', 8208, 97372, 6065, NULL, '4.0000', '33.0000', '33.0000', '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 (103179, '2022-07-25', 7641, 97373, 6065, NULL, '1.0000', '1.9000', '1.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 (103180, '2022-07-25', 8756, 97374, 6065, NULL, '1.0000', '7.5000', '7.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 (103181, '2022-07-25', 2983, 97375, 6065, 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 (103182, '2022-07-25', 7524, 97376, 6065, NULL, '1.0000', '11.9500', '11.9500', '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 (103183, '2022-07-25', 1665, 97377, 6065, 3235, '-146.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 (103184, '2022-07-25', 1665, 97377, 6065, NULL, '147.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-147.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103185, '2022-07-25', 9762, 97378, 6065, 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 (103186, '2022-07-25', 7385, 97379, 6065, NULL, '2.0000', '2.0000', '2.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 (103187, '2022-07-25', 8596, 97380, 6065, 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 (103188, '2022-07-25', 2823, 97381, 6066, 58782, '1.0000', '7.1869', '7.1869', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103189, '2022-07-25', 1368, 97382, 6067, NULL, '1.0000', '-163.5000', '-163.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 (103190, '2022-07-25', 2259, 97383, 6068, 58622, '1.0000', '21.7568', '21.7568', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103191, '2022-07-25', 2327, 97384, 6069, 55803, '1.0000', '3.1287', '3.1287', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103192, '2022-07-25', 2486, 97385, 6070, 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 (103193, '2022-07-25', 8243, 97386, 6070, NULL, '2.0000', '1.1400', '1.1400', '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 (103194, '2022-07-25', 1760, 97387, 6070, 93, '3.0000', '111.8384', '111.8384', '1.0000', '1.0000', '8.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 (103195, '2022-07-25', 2283, 97388, 6070, 2943, '-32.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 (103196, '2022-07-25', 2283, 97388, 6070, NULL, '33.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (103197, '2022-07-25', 7514, 97389, 6070, NULL, '1.0000', '2.2500', '2.2500', '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 (103198, '2022-07-25', 1805, 97390, 6070, NULL, '1.0000', '195.3170', '195.3170', '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 (103199, '2022-07-25', 1339, 97391, 6070, 13004, '-21.0000', '1.6012', '1.6012', '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 (103200, '2022-07-25', 1339, 97391, 6070, NULL, '22.0000', '1.6012', '1.6012', '3.0000', '3.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103201, '2022-07-25', 1532, 97392, 6070, 20609, '2.0000', '0.8000', '0.8000', '2.0000', '2.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 (103202, '2022-07-25', 9716, 97393, 6071, 58813, '1.0000', '4.8500', '4.8500', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103203, '2022-07-25', 1825, 97394, 6071, 44620, '1.0000', '5.0960', '5.0960', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103204, '2022-07-25', 7743, 97395, 6072, NULL, '1.0000', '7.3900', '7.3900', '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 (103205, '2022-07-25', 2342, 97396, 6072, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103206, '2022-07-25', 1311, 97397, 6072, 49359, '2.0000', '0.3700', '0.3700', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103207, '2022-07-25', 2037, 97398, 6072, 59674, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103208, '2022-07-25', 1974, 97399, 6072, NULL, '1.0000', '16.4444', '16.4444', '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 (103209, '2022-07-25', 2299, 97400, 6072, 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 (103210, '2022-07-25', 9734, 97401, 6072, 59596, '4.0000', '0.7089', '0.7089', '0.7000', '0.7000', '21.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103211, '2022-07-26', 2289, 97402, 6073, NULL, '4.0000', '0.3611', '0.3611', '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 (103212, '2022-07-26', 1841, 97403, 6073, NULL, '4.0000', '0.7630', '0.7630', '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 (103213, '2022-07-26', 2769, 97404, 6073, NULL, '4.0000', '1.8925', '1.8925', '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 (103214, '2022-07-26', 8207, 97405, 6073, NULL, '1.0000', '0.0000', '0.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 (103215, '2022-07-26', 2344, 97406, 6073, NULL, '1.0000', '20.0000', '20.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 (103216, '2022-07-26', 2384, 97407, 6073, NULL, '1.0000', '-0.4538', '-0.4538', '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 (103217, '2022-07-26', 2237, 97408, 6073, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103218, '2022-07-26', 2864, 97409, 6073, NULL, '5.0000', '1.5150', '1.5150', '2.2000', '2.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 (103219, '2022-07-26', 2237, 97410, 6073, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103220, '2022-07-26', 1580, 97411, 6073, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103221, '2022-07-26', 1837, 97412, 6073, 58241, '1.0000', '2.5422', '2.5422', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103222, '2022-07-26', 9030, 97413, 6073, NULL, '1.0000', '12.9000', '12.9000', '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 (103223, '2022-07-26', 2416, 97414, 6073, 59669, '1.0000', '1.3394', '1.3394', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103224, '2022-07-26', 9783, 97415, 6073, 56401, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103225, '2022-07-26', 9959, 97416, 6073, 59622, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103226, '2022-07-26', 9840, 97417, 6073, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103227, '2022-07-26', 9424, 97418, 6073, 51684, '1.0000', '-12.4625', '-12.4625', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103228, '2022-07-26', 1772, 97419, 6073, 58175, '1.0000', '5.9598', '5.9598', '8.0000', '8.0000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103229, '2022-07-26', 1839, 97420, 6073, NULL, '1.0000', '-157134.5188', '-157134.5188', '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 (103230, '2022-07-26', 2315, 97421, 6073, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103231, '2022-07-26', 9734, 97422, 6073, 59596, '2.0000', '0.7089', '0.7089', '0.7000', '0.7000', '19.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103232, '2022-07-26', 2088, 97423, 6073, 55708, '1.0000', '1.8495', '1.8495', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103233, '2022-07-26', 2352, 97424, 6073, NULL, '4.0000', '126.2588', '126.2588', '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 (103234, '2022-07-26', 1499, 97425, 6074, 57679, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103235, '2022-07-26', 1856, 97426, 6074, NULL, '1.0000', '155.0099', '155.0099', '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 (103236, '2022-07-26', 2379, 97427, 6074, NULL, '1.0000', '-14.1447', '-14.1447', '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 (103237, '2022-07-26', 9751, 97428, 6074, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103238, '2022-07-26', 1432, 97429, 6074, 58198, '1.0000', '12.5636', '12.5636', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103239, '2022-07-26', 2864, 97430, 6074, NULL, '5.0000', '1.5150', '1.5150', '2.2000', '2.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 (103240, '2022-07-26', 9891, 97431, 6074, 57769, '2.0000', '17.4000', '17.4000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103241, '2022-07-26', 2463, 97432, 6074, 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 (103242, '2022-07-26', 9751, 97433, 6074, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103243, '2022-07-26', 1804, 97434, 6075, 4916, '-17.0000', '4.2500', '4.2500', '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 (103244, '2022-07-26', 1804, 97434, 6075, NULL, '18.0000', '4.2500', '4.2500', '8.5000', '8.5000', '-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 (103245, '2022-07-26', 7781, 97435, 6075, NULL, '6.0000', '4.2500', '4.2500', '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 (103246, '2022-07-26', 8020, 97436, 6075, NULL, '1.0000', '11.9000', '11.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 (103247, '2022-07-26', 7317, 97437, 6075, NULL, '1.0000', '19.5500', '19.5500', '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 (103248, '2022-07-26', 1501, 97438, 6075, NULL, '1.0000', '2.0500', '2.0500', '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 (103249, '2022-07-26', 9620, 97439, 6075, 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 (103250, '2022-07-26', 8557, 97440, 6075, 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 (103251, '2022-07-26', 7569, 97441, 6075, NULL, '1.0000', '37.0000', '37.0000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103252, '2022-07-26', 7666, 97442, 6075, NULL, '1.0000', '3.6000', '3.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 (103253, '2022-07-26', 7730, 97443, 6075, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (103254, '2022-07-26', 8203, 97444, 6075, 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 (103255, '2022-07-26', 9931, 97445, 6075, 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 (103256, '2022-07-26', 7555, 97446, 6075, 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 (103257, '2022-07-26', 7562, 97447, 6075, NULL, '1.0000', '5.5300', '5.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 (103258, '2022-07-26', 2355, 97448, 6075, 3857, '1.0000', '5.3300', '5.3300', '124.0000', '124.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 (103259, '2022-07-26', 8061, 97449, 6075, 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 (103260, '2022-07-26', 7412, 97450, 6075, NULL, '1.0000', '1.5200', '1.5200', '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 (103261, '2022-07-26', 7640, 97451, 6075, 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 (103262, '2022-07-26', 1935, 97452, 6075, 5586, '-187.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 (103263, '2022-07-26', 1935, 97452, 6075, NULL, '188.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-188.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103264, '2022-07-26', 7473, 97453, 6075, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (103265, '2022-07-26', 1435, 97454, 6075, NULL, '1.0000', '22.5000', '22.5000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103266, '2022-07-26', 2451, 97455, 6075, 12922, '-5.0000', '10.3500', '10.3500', '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 (103267, '2022-07-26', 2451, 97455, 6075, NULL, '6.0000', '10.3500', '10.3500', '17.5000', '17.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 (103268, '2022-07-26', 9418, 97456, 6075, 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 (103269, '2022-07-26', 9264, 97457, 6075, NULL, '2.0000', '3.1000', '3.1000', '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 (103270, '2022-07-26', 9089, 97458, 6076, NULL, '1.0000', '3.8000', '3.8000', '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 (103271, '2022-07-26', 9818, 97459, 6077, NULL, '1.0000', '1.5000', '1.5000', '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 (103272, '2022-07-26', 7506, 97460, 6077, NULL, '1.0000', '15.0000', '15.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 (103273, '2022-07-26', 2169, 97461, 6077, 10737, '-188.0000', '3.8397', '3.8397', '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 (103274, '2022-07-26', 2169, 97461, 6077, NULL, '189.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-189.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103275, '2022-07-26', 2059, 97462, 6077, NULL, '1.0000', '10.0000', '10.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 (103276, '2022-07-26', 1640, 97463, 6077, 19759, '1.0000', '2.6500', '2.6500', '6.0000', '6.0000', '1.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 (103277, '2022-07-26', 2068, 97464, 6077, 5568, '-31.0000', '13.1000', '13.1000', '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 (103278, '2022-07-26', 2068, 97464, 6077, NULL, '32.0000', '13.1000', '13.1000', '20.0000', '20.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103279, '2022-07-26', 7318, 97465, 6077, NULL, '1.0000', '13.4400', '13.4400', '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 (103280, '2022-07-26', 2169, 97466, 6077, 10737, '-188.0000', '3.8397', '3.8397', '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 (103281, '2022-07-26', 2169, 97466, 6077, NULL, '189.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-189.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103282, '2022-07-26', 2283, 97467, 6078, 50041, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 404);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103283, '2022-07-26', 2906, 97468, 6078, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '32.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103284, '2022-07-26', 7527, 97469, 6078, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '81.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103285, '2022-07-26', 7483, 97470, 6078, 59356, '3.0000', '0.4200', '0.4200', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103286, '2022-07-26', 1867, 97471, 6078, NULL, '1.0000', '11.8714', '11.8714', '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 (103287, '2022-07-26', 8548, 97472, 6078, NULL, '1.0000', '-4.1859', '-4.1859', '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 (103288, '2022-07-26', 8422, 97473, 6078, 34493, '1.0000', '34.8900', '34.8900', '46.0000', '46.0000', '0.0000', 1, 0, NULL, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103289, '2022-07-26', 7950, 97474, 6078, NULL, '1.0000', '2.4000', '2.4000', '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 (103290, '2022-07-26', 7457, 97475, 6078, 59769, '1.0000', '4.7091', '4.7091', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103291, '2022-07-26', 8208, 97476, 6078, 59117, '6.0000', '8.8519', '8.8519', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103292, '2022-07-26', 2315, 97477, 6078, 59764, '2.0000', '0.7613', '0.7613', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103293, '2022-07-26', 7674, 97478, 6078, 59362, '4.0000', '89.9278', '89.9278', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103294, '2022-07-26', 7483, 97479, 6078, 59356, '2.0000', '0.4200', '0.4200', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103295, '2022-07-26', 9760, 97480, 6078, 46938, '1.0000', '1.1000', '1.1000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103296, '2022-07-26', 7411, 97481, 6078, 59778, '4.0000', '1.4000', '1.4000', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103297, '2022-07-26', 7518, 97482, 6078, 59767, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '27.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103298, '2022-07-26', 7472, 97483, 6078, 59085, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103299, '2022-07-26', 7331, 97484, 6078, 56167, '1.0000', '14.0840', '14.0840', '77.0000', '77.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103300, '2022-07-26', 7671, 97485, 6078, NULL, '1.0000', '489.2432', '489.2432', '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 (103301, '2022-07-26', 9390, 97486, 6078, NULL, '1.0000', '25.0000', '25.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 (103302, '2022-07-26', 8247, 97487, 6078, NULL, '5.0000', '54.0000', '54.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 (103303, '2022-07-26', 7672, 97488, 6078, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103304, '2022-07-26', 7658, 97489, 6078, 56019, '1.0000', '188.9318', '188.9318', '3.5000', '3.5000', '70.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103305, '2022-07-26', 7719, 97490, 6078, 55075, '1.0000', '8.2508', '8.2508', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103306, '2022-07-26', 7514, 97491, 6078, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (103307, '2022-07-26', 8767, 97492, 6078, 57525, '1.0000', '0.8520', '0.8520', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103308, '2022-07-26', 8359, 97493, 6078, 59371, '1.0000', '246.8018', '246.8018', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103309, '2022-07-26', 8288, 97494, 6078, NULL, '5.0000', '1.1434', '1.1434', '1.8000', '1.8000', '-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 (103310, '2022-07-26', 8186, 97495, 6078, NULL, '2.0000', '1.5626', '1.5626', '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 (103311, '2022-07-26', 7385, 97496, 6078, 59399, '5.0000', '6.5272', '6.5272', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103312, '2022-07-26', 9942, 97497, 6078, 59750, '1.0000', '9.6351', '9.6351', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103313, '2022-07-26', 7772, 97498, 6078, NULL, '1.0000', '32.2400', '32.2400', '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 (103314, '2022-07-26', 2656, 97499, 6078, 59720, '1.0000', '0.6761', '0.6761', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103315, '2022-07-26', 1364, 97500, 6078, 48859, '2.0000', '27.0000', '27.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103316, '2022-07-26', 7917, 97501, 6078, 52750, '3.0000', '2.1447', '2.1447', '0.7000', '0.7000', '75.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103317, '2022-07-26', 2284, 97502, 6078, 59735, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103318, '2022-07-26', 1665, 97503, 6078, 59323, '1.0000', '1.1410', '1.1410', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103319, '2022-07-26', 7588, 97504, 6078, 59378, '1.0000', '8.3822', '8.3822', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103320, '2022-07-26', 9084, 97505, 6078, 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 (103321, '2022-07-26', 2699, 97506, 6078, NULL, '1.0000', '3.0000', '3.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 (103322, '2022-07-26', 9469, 97507, 6078, 57520, '1.0000', '1.5529', '1.5529', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103323, '2022-07-26', 7671, 97508, 6078, NULL, '1.0000', '489.2432', '489.2432', '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 (103324, '2022-07-26', 7639, 97509, 6079, 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 (103325, '2022-07-26', 1904, 97510, 6079, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103326, '2022-07-26', 2821, 97511, 6079, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103327, '2022-07-26', 9742, 97512, 6079, 57958, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103328, '2022-07-26', 1904, 97513, 6079, 45091, '1.0000', '39.3704', '39.3704', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103329, '2022-07-26', 1499, 97514, 6079, 58613, '1.0000', '0.4612', '0.4612', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103330, '2022-07-26', 2858, 97515, 6079, NULL, '2.0000', '1.0000', '1.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 (103331, '2022-07-26', 2256, 97516, 6079, 55791, '1.0000', '15.2117', '15.2117', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103332, '2022-07-26', 8761, 97517, 6079, 55444, '1.0000', '13.8930', '13.8930', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103333, '2022-07-26', 2315, 97518, 6079, 3069, '1.0000', '0.3300', '0.3300', '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 (103334, '2022-07-26', 9794, 97519, 6079, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103335, '2022-07-26', 7411, 97520, 6079, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103336, '2022-07-26', 2916, 97521, 6079, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103337, '2022-07-26', 7744, 97522, 6079, NULL, '1.0000', '2.9400', '2.9400', '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 (103338, '2022-07-26', 2823, 97523, 6079, 58782, '1.0000', '7.1869', '7.1869', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103339, '2022-07-26', 2971, 97524, 6079, 59062, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103340, '2022-07-26', 2642, 97525, 6079, 58549, '1.0000', '9.6833', '9.6833', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103341, '2022-07-26', 1349, 97526, 6079, 58621, '1.0000', '35.9919', '35.9919', '61.0000', '61.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103342, '2022-07-26', 1328, 97527, 6079, 55767, '3.0000', '3.9079', '3.9079', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103343, '2022-07-26', 1812, 97528, 6079, 59633, '1.0000', '8.5380', '8.5380', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103344, '2022-07-26', 1667, 97529, 6079, 57996, '1.0000', '19.5846', '19.5846', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103345, '2022-07-26', 2293, 97530, 6079, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103346, '2022-07-26', 2487, 97531, 6079, NULL, '1.0000', '35.7143', '35.7143', '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 (103347, '2022-07-26', 9626, 97532, 6079, 40291, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103348, '2022-07-26', 2762, 97533, 6079, 55780, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103349, '2022-07-26', 9626, 97534, 6079, 40291, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103350, '2022-07-26', 2020, 97535, 6079, 58661, '1.0000', '6.4673', '6.4673', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103351, '2022-07-26', 1499, 97536, 6079, 58613, '1.0000', '0.4612', '0.4612', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103352, '2022-07-26', 2285, 97537, 6079, 58601, '1.0000', '41.0587', '41.0587', '65.5000', '65.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103353, '2022-07-26', 2416, 97538, 6079, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103354, '2022-07-26', 2916, 97539, 6079, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103355, '2022-07-26', 1383, 97540, 6079, 58591, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103356, '2022-07-26', 2342, 97541, 6079, 59635, '10.0000', '2.1970', '2.1970', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103357, '2022-07-26', 2273, 97542, 6080, NULL, '1.0000', '2.6700', '2.6700', '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 (103358, '2022-07-26', 2699, 97543, 6080, NULL, '1.0000', '3.0000', '3.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 (103359, '2022-07-26', 7524, 97544, 6080, 59768, '1.0000', '4.7424', '4.7424', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103360, '2022-07-26', 7704, 97545, 6080, NULL, '1.0000', '-1.5625', '-1.5625', '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 (103361, '2022-07-26', 7518, 97546, 6080, 59767, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '26.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103362, '2022-07-26', 7385, 97547, 6080, 59399, '2.0000', '6.5272', '6.5272', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103363, '2022-07-26', 8883, 97548, 6081, NULL, '4.0000', '56.5500', '56.5500', '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 (103364, '2022-07-26', 2169, 97549, 6081, 51695, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103365, '2022-07-26', 7411, 97550, 6081, NULL, '1.0000', '1.2819', '1.2819', '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 (103366, '2022-07-26', 1590, 97551, 6081, 54532, '4.0000', '2.2860', '2.2860', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103367, '2022-07-26', 7411, 97552, 6081, NULL, '1.0000', '1.2819', '1.2819', '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 (103368, '2022-07-26', 1904, 97553, 6081, NULL, '1.0000', '-21.7625', '-21.7625', '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 (103369, '2022-07-26', 1504, 97554, 6081, 58181, '10.0000', '2.0486', '2.0486', '2.8000', '2.8000', '60.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103370, '2022-07-26', 2916, 97555, 6081, NULL, '1.0000', '4209.2937', '4209.2937', '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 (103371, '2022-07-26', 8017, 97556, 6081, 58212, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103372, '2022-07-26', 8017, 97556, 6081, NULL, '1.0000', '0.6000', '0.6000', '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 (103373, '2022-07-26', 1807, 97557, 6081, NULL, '3.0000', '34.9993', '34.9993', '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 (103374, '2022-07-26', 1450, 97558, 6081, NULL, '5.0000', '0.8483', '0.8483', '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 (103375, '2022-07-26', 7745, 97559, 6081, 58190, '2.0000', '6.7000', '6.7000', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103376, '2022-07-26', 9482, 97560, 6081, 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 (103377, '2022-07-26', 1310, 97561, 6081, 57744, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103378, '2022-07-26', 2250, 97562, 6081, 57697, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103379, '2022-07-26', 2336, 97563, 6081, 48655, '1.0000', '8.2640', '8.2640', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103380, '2022-07-26', 7385, 97564, 6081, 58142, '10.0000', '3.1710', '3.1710', '4.0000', '4.0000', '148.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103381, '2022-07-27', 2366, 97565, 6082, NULL, '2.0000', '-51.4778', '-51.4778', '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 (103382, '2022-07-27', 2237, 97566, 6082, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103383, '2022-07-27', 2315, 97567, 6082, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103384, '2022-07-27', 1840, 97568, 6082, NULL, '1.0000', '0.2400', '0.2400', '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 (103385, '2022-07-27', 2315, 97569, 6082, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103386, '2022-07-27', 7802, 97570, 6082, NULL, '2.0000', '1.1497', '1.1497', '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 (103387, '2022-07-27', 1912, 97571, 6082, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103388, '2022-07-27', 8774, 97572, 6082, 58065, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103389, '2022-07-27', 9943, 97573, 6082, NULL, '1.0000', '10.5500', '10.5500', '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 (103390, '2022-07-27', 2236, 97574, 6082, NULL, '1.0000', '8.2102', '8.2102', '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 (103391, '2022-07-27', 1946, 97575, 6082, NULL, '1.0000', '-4.7391', '-4.7391', '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 (103392, '2022-07-27', 9729, 97576, 6082, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103393, '2022-07-27', 7411, 97577, 6082, NULL, '2.0000', '1.2819', '1.2819', '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 (103394, '2022-07-27', 8638, 97578, 6082, NULL, '1.0000', '0.5254', '0.5254', '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 (103395, '2022-07-27', 2095, 97579, 6082, NULL, '1.0000', '-8.5000', '-8.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 (103396, '2022-07-27', 1946, 97580, 6082, NULL, '1.0000', '-4.7391', '-4.7391', '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 (103397, '2022-07-27', 8031, 97581, 6082, 55723, '1.0000', '32.0000', '32.0000', '43.0000', '43.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103398, '2022-07-27', 9740, 97582, 6082, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103399, '2022-07-27', 1922, 97583, 6082, 58207, '1.0000', '-84.0000', '-84.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103400, '2022-07-27', 2167, 97584, 6082, NULL, '1.0000', '1.7907', '1.7907', '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 (103401, '2022-07-27', 2131, 97585, 6082, 59685, '1.0000', '12.6477', '12.6477', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103402, '2022-07-27', 2986, 97586, 6082, 47074, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103403, '2022-07-27', 1867, 97587, 6082, 54516, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103404, '2022-07-27', 1687, 97588, 6082, 58146, '1.0000', '15.0626', '15.0626', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103405, '2022-07-27', 9979, 97589, 6082, NULL, '1.0000', '13.9000', '13.9000', '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 (103406, '2022-07-27', 9722, 97590, 6082, 47061, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103407, '2022-07-27', 8065, 97591, 6082, NULL, '1.0000', '32.0000', '32.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 (103408, '2022-07-27', 2935, 97592, 6082, NULL, '1.0000', '-2.6500', '-2.6500', '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 (103409, '2022-07-27', 9946, 97593, 6082, 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 (103410, '2022-07-27', 9747, 97594, 6083, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103411, '2022-07-27', 2648, 97595, 6083, 53441, '1.0000', '2.2228', '2.2228', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103412, '2022-07-27', 2262, 97596, 6083, 55639, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103413, '2022-07-27', 8101, 97597, 6084, NULL, '1.0000', '1.9700', '1.9700', '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 (103414, '2022-07-27', 1532, 97598, 6084, 20609, '2.0000', '0.8000', '0.8000', '2.0000', '2.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 (103415, '2022-07-27', 7494, 97599, 6084, NULL, '1.0000', '51.0000', '51.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 (103416, '2022-07-27', 8063, 97600, 6084, NULL, '1.0000', '1.6000', '1.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 (103417, '2022-07-27', 7853, 97601, 6084, NULL, '1.0000', '13.0000', '13.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 (103418, '2022-07-27', 7411, 97602, 6084, NULL, '2.0000', '1.3500', '1.3500', '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 (103419, '2022-07-27', 7675, 97603, 6084, NULL, '2.0000', '11.4300', '11.4300', '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 (103420, '2022-07-27', 7907, 97604, 6084, NULL, '5.0000', '12.0000', '12.0000', '1.5000', '1.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 (103421, '2022-07-27', 9264, 97605, 6084, NULL, '2.0000', '3.1000', '3.1000', '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 (103422, '2022-07-27', 9762, 97606, 6084, 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 (103423, '2022-07-27', 8641, 97607, 6084, 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 (103424, '2022-07-27', 7396, 97608, 6084, NULL, '1.0000', '6.0000', '6.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 (103425, '2022-07-27', 2315, 97609, 6084, 2735, '-584.0000', '0.3300', '0.3300', '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 (103426, '2022-07-27', 2315, 97609, 6084, NULL, '585.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-585.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103427, '2022-07-27', 1846, 97610, 6084, 12032, '-24.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 (103428, '2022-07-27', 1846, 97610, 6084, NULL, '25.0000', '12.0000', '12.0000', '18.0000', '18.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 (103429, '2022-07-27', 7715, 97611, 6084, NULL, '1.0000', '1.8900', '1.8900', '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 (103430, '2022-07-27', 1339, 97612, 6084, 13004, '-22.0000', '1.6012', '1.6012', '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 (103431, '2022-07-27', 1339, 97612, 6084, NULL, '23.0000', '1.6012', '1.6012', '3.0000', '3.0000', '-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 (103432, '2022-07-27', 2891, 97613, 6084, 18020, '-5.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 (103433, '2022-07-27', 2891, 97613, 6084, NULL, '6.0000', '9.5000', '9.5000', '12.0000', '12.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 (103434, '2022-07-27', 9734, 97614, 6084, NULL, '2.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103435, '2022-07-27', 7521, 97615, 6084, NULL, '1.0000', '15.5000', '15.5000', '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 (103436, '2022-07-27', 7608, 97616, 6084, NULL, '1.0000', '6.9800', '6.9800', '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 (103437, '2022-07-27', 9770, 97617, 6084, 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 (103438, '2022-07-27', 7848, 97618, 6084, NULL, '1.0000', '1.3500', '1.3500', '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 (103439, '2022-07-27', 7781, 97619, 6084, NULL, '3.0000', '4.2500', '4.2500', '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 (103440, '2022-07-27', 7911, 97620, 6084, NULL, '1.0000', '4.3700', '4.3700', '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 (103441, '2022-07-27', 8308, 97621, 6084, NULL, '1.0000', '2.0800', '2.0800', '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 (103442, '2022-07-27', 7920, 97622, 6084, NULL, '2.0000', '4.0000', '4.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 (103443, '2022-07-27', 7959, 97623, 6084, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103444, '2022-07-27', 8000, 97624, 6084, NULL, '1.0000', '6.8400', '6.8400', '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 (103445, '2022-07-27', 9763, 97625, 6084, NULL, '3.0000', '2.1000', '2.1000', '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 (103446, '2022-07-27', 7558, 97626, 6084, NULL, '10.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (103447, '2022-07-27', 1557, 97627, 6084, 1628, '-13.0000', '7.9500', '7.9500', '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 (103448, '2022-07-27', 1557, 97627, 6084, NULL, '14.0000', '7.9500', '7.9500', '11.0000', '11.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 (103449, '2022-07-27', 1807, 97628, 6085, 18924, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '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 (103450, '2022-07-27', 8767, 97629, 6085, NULL, '1.0000', '6.6900', '6.6900', '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 (103451, '2022-07-27', 7703, 97630, 6085, NULL, '1.0000', '22.9900', '22.9900', '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 (103452, '2022-07-27', 8288, 97631, 6085, NULL, '2.0000', '1.1600', '1.1600', '1.8000', '1.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 (103453, '2022-07-27', 7675, 97632, 6085, NULL, '1.0000', '11.4300', '11.4300', '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 (103454, '2022-07-27', 9695, 97633, 6085, NULL, '1.0000', '4.5000', '4.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 (103455, '2022-07-27', 1303, 97634, 6086, 32, '1.0000', '54.5520', '54.5520', '4.0000', '4.0000', '88.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 (103456, '2022-07-27', 2381, 97635, 6087, 11263, '-8.0000', '12.1900', '12.1900', '19.2700', '19.2700', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103457, '2022-07-27', 2381, 97635, 6087, NULL, '9.0000', '12.1900', '12.1900', '19.2700', '19.2700', '-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 (103458, '2022-07-27', 2912, 97636, 6087, 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 (103459, '2022-07-27', 2858, 97637, 6087, 17772, '-109.0000', '1.0000', '1.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 (103460, '2022-07-27', 2858, 97637, 6087, NULL, '110.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103461, '2022-07-27', 7917, 97638, 6087, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103462, '2022-07-27', 1310, 97639, 6087, NULL, '3.0000', '0.3700', '0.3700', '0.6000', '0.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 (103463, '2022-07-27', 2908, 97640, 6087, 18647, '-12.0000', '0.2700', '0.2700', '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 (103464, '2022-07-27', 2908, 97640, 6087, NULL, '13.0000', '0.2700', '0.2700', '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 (103465, '2022-07-27', 9471, 97641, 6087, 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 (103466, '2022-07-27', 9469, 97642, 6087, NULL, '4.0000', '2.3000', '2.3000', '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 (103467, '2022-07-27', 2344, 97643, 6087, 3847, '-4.0000', '18.2000', '18.2000', '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 (103468, '2022-07-27', 2344, 97643, 6087, NULL, '5.0000', '18.2000', '18.2000', '27.0000', '27.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 (103469, '2022-07-27', 2169, 97644, 6087, 10737, '-190.0000', '3.8397', '3.8397', '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 (103470, '2022-07-27', 2169, 97644, 6087, NULL, '191.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-191.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103471, '2022-07-27', 2858, 97645, 6087, 17772, '-109.0000', '1.0000', '1.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 (103472, '2022-07-27', 2858, 97645, 6087, NULL, '111.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-111.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103473, '2022-07-27', 1851, 97646, 6087, 8627, '-16.0000', '10.6568', '10.6568', '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 (103474, '2022-07-27', 1851, 97646, 6087, NULL, '17.0000', '10.6568', '10.6568', '20.0000', '20.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 (103475, '2022-07-27', 1432, 97647, 6087, NULL, '1.0000', '8.1574', '8.1574', '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 (103476, '2022-07-27', 1912, 97648, 6087, 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 (103477, '2022-07-27', 1426, 97649, 6087, 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 (103478, '2022-07-27', 1686, 97650, 6087, NULL, '1.0000', '26.6000', '26.6000', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103479, '2022-07-27', 2237, 97651, 6087, 2781, '-81.0000', '1.0600', '1.0600', '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 (103480, '2022-07-27', 2237, 97651, 6087, NULL, '82.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103481, '2022-07-27', 1427, 97652, 6087, NULL, '2.0000', '14.2181', '14.2181', '20.5000', '20.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 (103482, '2022-07-27', 9940, 97653, 6087, 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 (103483, '2022-07-27', 9729, 97654, 6087, NULL, '1.0000', '0.6200', '0.6200', '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 (103484, '2022-07-27', 9634, 97655, 6087, NULL, '3.0000', '4.8000', '4.8000', '7.0000', '7.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 (103485, '2022-07-27', 8866, 97656, 6087, NULL, '1.0000', '0.4300', '0.4300', '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 (103486, '2022-07-27', 1609, 97657, 6087, 8729, '-3.0000', '12.0000', '12.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 (103487, '2022-07-27', 1609, 97657, 6087, NULL, '4.0000', '12.0000', '12.0000', '20.0000', '20.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 (103488, '2022-07-27', 1674, 97658, 6087, NULL, '1.0000', '3.6000', '3.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 (103489, '2022-07-27', 2738, 97659, 6087, NULL, '3.0000', '7.6000', '7.6000', '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 (103490, '2022-07-27', 2315, 97660, 6088, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103491, '2022-07-27', 1695, 97661, 6088, 59605, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103492, '2022-07-27', 1602, 97662, 6088, 59619, '1.0000', '7.1154', '7.1154', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103493, '2022-07-27', 1912, 97663, 6088, 51315, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103494, '2022-07-27', 2163, 97664, 6088, 57777, '1.0000', '16.5835', '16.5835', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103495, '2022-07-27', 1340, 97665, 6088, 58179, '1.0000', '3.6001', '3.6001', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103496, '2022-07-27', 1590, 97666, 6088, 54532, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103497, '2022-07-27', 1602, 97667, 6088, 59619, '1.0000', '7.1154', '7.1154', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103498, '2022-07-27', 1724, 97668, 6088, 13728, '1.0000', '90.0000', '90.0000', '187.0000', '187.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103499, '2022-07-27', 8165, 97669, 6088, 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 (103500, '2022-07-27', 2315, 97670, 6088, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103501, '2022-07-27', 2643, 97671, 6088, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103502, '2022-07-27', 1867, 97672, 6088, 54516, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103503, '2022-07-27', 9399, 97673, 6088, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103504, '2022-07-27', 2275, 97674, 6088, 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 (103505, '2022-07-27', 2738, 97675, 6088, 56428, '2.0000', '9.2000', '9.2000', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103506, '2022-07-27', 1863, 97676, 6088, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103507, '2022-07-27', 9734, 97677, 6088, 59596, '1.0000', '0.7089', '0.7089', '0.7000', '0.7000', '18.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103508, '2022-07-27', 8444, 97678, 6088, 57692, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103509, '2022-07-27', 9965, 97679, 6088, 58075, '1.0000', '23.0000', '23.0000', '28.0000', '28.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103510, '2022-07-27', 1812, 97680, 6088, 57783, '1.0000', '9.3425', '9.3425', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103511, '2022-07-27', 2027, 97681, 6088, 57092, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103512, '2022-07-27', 1529, 97682, 6089, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103513, '2022-07-27', 2169, 97683, 6089, 51695, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103514, '2022-07-27', 1771, 97684, 6089, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103515, '2022-07-27', 2221, 97685, 6089, NULL, '1.0000', '2.3805', '2.3805', '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 (103516, '2022-07-27', 2916, 97686, 6089, NULL, '1.0000', '4209.2937', '4209.2937', '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 (103517, '2022-07-27', 2169, 97687, 6089, 51695, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103518, '2022-07-27', 1812, 97688, 6089, 57783, '2.0000', '9.3425', '9.3425', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103519, '2022-07-27', 1855, 97689, 6089, NULL, '1.0000', '1.4615', '1.4615', '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 (103520, '2022-07-27', 1796, 97690, 6089, 55906, '1.0000', '2.8333', '2.8333', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103521, '2022-07-27', 1905, 97691, 6089, 54898, '2.0000', '0.5203', '0.5203', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103522, '2022-07-27', 1425, 97692, 6089, NULL, '1.0000', '86.3183', '86.3183', '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 (103523, '2022-07-27', 8433, 97693, 6090, 48393, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103524, '2022-07-27', 7564, 97694, 6090, 59164, '1.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103525, '2022-07-27', 8918, 97695, 6090, 59368, '1.0000', '2.5563', '2.5563', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103526, '2022-07-27', 8810, 97696, 6090, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103527, '2022-07-27', 7514, 97697, 6090, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (103528, '2022-07-27', 7741, 97698, 6090, 59794, '1.0000', '3.2178', '3.2178', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103529, '2022-07-27', 9894, 97699, 6090, 59344, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103530, '2022-07-27', 7651, 97700, 6090, NULL, '1.0000', '2.7641', '2.7641', '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 (103531, '2022-07-27', 9412, 97701, 6090, 51063, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103532, '2022-07-27', 2656, 97702, 6090, 59720, '1.0000', '0.6761', '0.6761', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103533, '2022-07-27', 9089, 97703, 6090, 57510, '1.0000', '7.1458', '7.1458', '9.0000', '9.0000', '12.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103534, '2022-07-27', 8077, 97704, 6090, NULL, '1.0000', '4.9986', '4.9986', '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 (103535, '2022-07-27', 7674, 97705, 6090, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103536, '2022-07-27', 8037, 97706, 6090, 57457, '1.0000', '26.1078', '26.1078', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103537, '2022-07-27', 8234, 97707, 6090, 53623, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103538, '2022-07-27', 9641, 97708, 6090, 59103, '1.0000', '40.6000', '40.6000', '54.0000', '54.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103539, '2022-07-27', 7385, 97709, 6090, 59399, '10.0000', '6.5272', '6.5272', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103540, '2022-07-27', 1935, 97710, 6090, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '92.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103541, '2022-07-27', 2656, 97711, 6090, 59720, '1.0000', '0.6761', '0.6761', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103542, '2022-07-27', 2937, 97712, 6090, NULL, '1.0000', '5.3700', '5.3700', '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 (103543, '2022-07-27', 7899, 97713, 6090, 59172, '1.0000', '3.5357', '3.5357', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103544, '2022-07-27', 7411, 97714, 6090, 59778, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103545, '2022-07-27', 7444, 97715, 6090, 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 (103546, '2022-07-27', 7671, 97716, 6090, NULL, '1.0000', '489.2432', '489.2432', '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 (103547, '2022-07-27', 9734, 97717, 6090, 59779, '2.0000', '0.3402', '0.3402', '0.7000', '0.7000', '96.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103548, '2022-07-27', 1665, 97718, 6090, 59323, '1.0000', '1.1410', '1.1410', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103549, '2022-07-27', 2315, 97719, 6090, 59764, '2.0000', '0.7613', '0.7613', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103550, '2022-07-27', 7765, 97720, 6090, NULL, '1.0000', '16.0000', '16.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 (103551, '2022-07-27', 7674, 97721, 6090, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103552, '2022-07-27', 7920, 97722, 6090, 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 (103553, '2022-07-27', 9267, 97723, 6090, 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 (103554, '2022-07-27', 8186, 97724, 6090, NULL, '3.0000', '1.5626', '1.5626', '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 (103555, '2022-07-27', 1855, 97725, 6090, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103556, '2022-07-27', 2315, 97726, 6090, 59764, '1.0000', '0.7613', '0.7613', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103557, '2022-07-27', 2305, 97727, 6091, 53223, '1.0000', '4.0595', '4.0595', '9.0000', '9.0000', '13.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103558, '2022-07-27', 7926, 97728, 6091, NULL, '1.0000', '5.1333', '5.1333', '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 (103559, '2022-07-27', 1501, 97729, 6091, NULL, '1.0000', '0.6299', '0.6299', '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 (103560, '2022-07-27', 2167, 97730, 6091, NULL, '1.0000', '1.7907', '1.7907', '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 (103561, '2022-07-27', 2315, 97731, 6091, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103562, '2022-07-27', 2384, 97732, 6091, NULL, '3.0000', '-0.4538', '-0.4538', '0.8000', '0.8000', '-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 (103563, '2022-07-27', 1863, 97733, 6091, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103564, '2022-07-27', 9747, 97734, 6091, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103565, '2022-07-27', 1529, 97735, 6091, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103566, '2022-07-27', 8208, 97736, 6091, NULL, '2.0000', '47.9541', '47.9541', '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 (103567, '2022-07-27', 2923, 97737, 6092, 49890, '1.0000', '11.1200', '11.1200', '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 (103568, '2022-07-27', 1946, 97738, 6092, NULL, '1.0000', '-4.7391', '-4.7391', '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 (103569, '2022-07-27', 2354, 97739, 6092, NULL, '1.0000', '28.4264', '28.4264', '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 (103570, '2022-07-27', 1863, 97740, 6092, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103571, '2022-07-27', 9943, 97741, 6092, NULL, '1.0000', '10.5500', '10.5500', '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 (103572, '2022-07-27', 1741, 97742, 6092, 56425, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103573, '2022-07-27', 2283, 97743, 6092, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103574, '2022-07-27', 1904, 97744, 6092, NULL, '1.0000', '-21.7625', '-21.7625', '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 (103575, '2022-07-27', 1741, 97745, 6093, 56425, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103576, '2022-07-27', 7709, 97746, 6094, NULL, '1.0000', '-1277.8597', '-1277.8597', '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 (103577, '2022-07-27', 7671, 97747, 6094, NULL, '1.0000', '489.2432', '489.2432', '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 (103578, '2022-07-27', 7730, 97748, 6094, 59728, '2.0000', '0.1460', '0.1460', '0.2000', '0.2000', '178.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103579, '2022-07-27', 9399, 97749, 6094, NULL, '1.0000', '0.9803', '0.9803', '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 (103580, '2022-07-27', 7674, 97750, 6094, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103581, '2022-07-27', 2315, 97751, 6094, 59764, '2.0000', '0.7613', '0.7613', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103582, '2022-07-27', 7412, 97752, 6094, 59161, '2.0000', '2.1381', '2.1381', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103583, '2022-07-27', 2295, 97753, 6094, NULL, '3.0000', '-2.3086', '-2.3086', '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 (103584, '2022-07-27', 7666, 97754, 6094, 59789, '1.0000', '7.3386', '7.3386', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103585, '2022-07-27', 7674, 97755, 6094, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103586, '2022-07-27', 7730, 97756, 6094, 59728, '5.0000', '0.1460', '0.1460', '0.2000', '0.2000', '175.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103587, '2022-07-27', 7709, 97757, 6094, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (103588, '2022-07-27', 9695, 97758, 6095, 59668, '2.0000', '5.3447', '5.3447', '8.0000', '8.0000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103589, '2022-07-27', 7743, 97759, 6095, NULL, '1.0000', '7.3900', '7.3900', '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 (103590, '2022-07-27', 2285, 97760, 6096, 58601, '1.0000', '41.0587', '41.0587', '65.5000', '65.5000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103591, '2022-07-27', 1647, 97761, 6096, 58635, '1.0000', '5.7458', '5.7458', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103592, '2022-07-27', 2315, 97762, 6096, 3069, '1.0000', '0.3300', '0.3300', '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 (103593, '2022-07-27', 2379, 97763, 6096, 58652, '1.0000', '2.0012', '2.0012', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103594, '2022-07-27', 1525, 97764, 6096, 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 (103595, '2022-07-27', 2769, 97765, 6096, 58760, '2.0000', '2.0708', '2.0708', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103596, '2022-07-27', 2413, 97766, 6096, 54395, '2.0000', '1.1122', '1.1122', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103597, '2022-07-27', 9748, 97767, 6096, 57974, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103598, '2022-07-27', 2169, 97768, 6096, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103599, '2022-07-27', 1812, 97769, 6096, 59633, '3.0000', '8.5380', '8.5380', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103600, '2022-07-27', 1772, 97770, 6096, 58771, '1.0000', '6.0141', '6.0141', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103601, '2022-07-27', 2317, 97771, 6096, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '11.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103602, '2022-07-27', 2481, 97772, 6096, 5193, '1.0000', '3.5000', '3.5000', '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 (103603, '2022-07-27', 8390, 97773, 6096, NULL, '1.0000', '8.8700', '8.8700', '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 (103604, '2022-07-27', 2169, 97774, 6096, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103605, '2022-07-27', 7375, 97775, 6096, NULL, '10.0000', '5.3000', '5.3000', '7.0000', '7.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 (103606, '2022-07-27', 8677, 97776, 6096, 58649, '1.0000', '2.1372', '2.1372', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103607, '2022-07-27', 1592, 97777, 6096, 58606, '1.0000', '36.4668', '36.4668', '56.0000', '56.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103608, '2022-07-27', 1812, 97778, 6096, 59633, '1.0000', '8.5380', '8.5380', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103609, '2022-07-27', 2169, 97779, 6096, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103610, '2022-07-27', 2858, 97780, 6096, 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 (103611, '2022-07-27', 1409, 97781, 6096, 59636, '1.0000', '13.0704', '13.0704', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103612, '2022-07-27', 9400, 97782, 6096, NULL, '1.0000', '4.2000', '4.2000', '5.5400', '5.5400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103613, '2022-07-27', 1525, 97783, 6096, NULL, '3.0000', '90.0000', '90.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 (103614, '2022-07-27', 2020, 97784, 6096, 57949, '1.0000', '6.4673', '6.4673', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103615, '2022-07-27', 1828, 97785, 6096, 33003, '1.0000', '0.7300', '0.7300', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103616, '2022-07-27', 1387, 97786, 6096, 54406, '1.0000', '57.7158', '57.7158', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103617, '2022-07-27', 2486, 97787, 6096, 21821, '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 (103618, '2022-07-27', 1812, 97788, 6096, 59633, '1.0000', '8.5380', '8.5380', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103619, '2022-07-27', 7482, 97789, 6096, NULL, '1.0000', '3.0500', '3.0500', '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 (103620, '2022-07-27', 2635, 97790, 6096, 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 (103621, '2022-07-27', 7684, 97791, 6096, NULL, '1.0000', '9.0000', '9.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 (103622, '2022-07-27', 2545, 97792, 6096, 55509, '1.0000', '7.5146', '7.5146', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103623, '2022-07-27', 1647, 97793, 6096, 58635, '1.0000', '5.7458', '5.7458', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103624, '2022-07-27', 1863, 97794, 6096, 59625, '3.0000', '1.3711', '1.3711', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103625, '2022-07-27', 2582, 97795, 6096, 56940, '1.0000', '14.0000', '14.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103626, '2022-07-27', 7722, 97796, 6096, 55005, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103627, '2022-07-27', 2273, 97797, 6096, 58816, '1.0000', '3.0283', '3.0283', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103628, '2022-07-27', 7375, 97798, 6096, NULL, '10.0000', '5.3000', '5.3000', '7.0000', '7.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 (103629, '2022-07-27', 7753, 97799, 6096, NULL, '1.0000', '3.1400', '3.1400', '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 (103630, '2022-07-27', 1888, 97800, 6096, 58762, '1.0000', '17.1841', '17.1841', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103631, '2022-07-27', 1602, 97801, 6096, 59628, '1.0000', '7.0218', '7.0218', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103632, '2022-07-27', 2858, 97802, 6096, NULL, '2.0000', '1.0000', '1.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 (103633, '2022-07-28', 9634, 97803, 6097, NULL, '3.0000', '4.4667', '4.4667', '7.0000', '7.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 (103634, '2022-07-28', 9751, 97804, 6097, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103635, '2022-07-28', 2169, 97805, 6097, 51695, '1.0000', '1.6818', '1.6818', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103636, '2022-07-28', 7672, 97806, 6097, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103637, '2022-07-28', 9663, 97807, 6097, NULL, '1.0000', '18.0000', '18.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 (103638, '2022-07-28', 1577, 97808, 6097, NULL, '1.0000', '0.4895', '0.4895', '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 (103639, '2022-07-28', 2061, 97809, 6097, NULL, '1.0000', '4.3037', '4.3037', '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 (103640, '2022-07-28', 1529, 97810, 6097, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103641, '2022-07-28', 1863, 97811, 6097, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103642, '2022-07-28', 7917, 97812, 6097, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103643, '2022-07-28', 1499, 97813, 6097, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103644, '2022-07-28', 1873, 97814, 6097, 58170, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103645, '2022-07-28', 2916, 97815, 6097, NULL, '1.0000', '4209.2937', '4209.2937', '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 (103646, '2022-07-28', 9748, 97816, 6097, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103647, '2022-07-28', 1780, 97817, 6097, NULL, '1.0000', '95.5759', '95.5759', '60.5000', '60.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103648, '2022-07-28', 1307, 97818, 6097, NULL, '1.0000', '-59.9897', '-59.9897', '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 (103649, '2022-07-28', 9844, 97819, 6097, NULL, '2.0000', '2.5000', '2.5000', '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 (103650, '2022-07-28', 1912, 97820, 6097, 49717, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103651, '2022-07-28', 2948, 97821, 6097, 55643, '1.0000', '0.9382', '0.9382', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103652, '2022-07-28', 2221, 97822, 6097, NULL, '1.0000', '2.3805', '2.3805', '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 (103653, '2022-07-28', 1856, 97823, 6097, NULL, '1.0000', '155.0099', '155.0099', '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 (103654, '2022-07-28', 2237, 97824, 6097, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103655, '2022-07-28', 2315, 97825, 6097, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103656, '2022-07-28', 1863, 97826, 6097, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103657, '2022-07-28', 2250, 97827, 6097, 55910, '1.0000', '8.8944', '8.8944', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103658, '2022-07-28', 1521, 97828, 6097, NULL, '1.0000', '-217.8500', '-217.8500', '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 (103659, '2022-07-28', 1968, 97829, 6097, NULL, '1.0000', '55.1600', '55.1600', '103.3600', '103.3600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103660, '2022-07-28', 1519, 97830, 6097, NULL, '1.0000', '3.7571', '3.7571', '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 (103661, '2022-07-28', 1912, 97831, 6097, 49717, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103662, '2022-07-28', 8444, 97832, 6097, 57692, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103663, '2022-07-28', 1572, 97833, 6097, NULL, '1.0000', '1.9556', '1.9556', '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 (103664, '2022-07-28', 9740, 97834, 6097, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103665, '2022-07-28', 1501, 97835, 6097, NULL, '1.0000', '0.6299', '0.6299', '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 (103666, '2022-07-28', 1863, 97836, 6097, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103667, '2022-07-28', 1863, 97837, 6097, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103668, '2022-07-28', 9472, 97838, 6097, 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 (103669, '2022-07-28', 1837, 97839, 6097, 58241, '1.0000', '2.5422', '2.5422', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103670, '2022-07-28', 1501, 97840, 6097, NULL, '1.0000', '0.6299', '0.6299', '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 (103671, '2022-07-28', 1764, 97841, 6097, 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 (103672, '2022-07-28', 9798, 97842, 6097, NULL, '1.0000', '13.9000', '13.9000', '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 (103673, '2022-07-28', 9902, 97843, 6097, 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 (103674, '2022-07-28', 9959, 97844, 6097, 59622, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103675, '2022-07-28', 1399, 97845, 6097, 53651, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103676, '2022-07-28', 1867, 97846, 6097, 54516, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103677, '2022-07-28', 1867, 97846, 6097, 48507, '1.0000', '9.3173', '9.3173', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103678, '2022-07-28', 3024, 97847, 6097, 59699, '1.0000', '6.7023', '6.7023', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103679, '2022-07-28', 8785, 97848, 6097, 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 (103680, '2022-07-28', 9695, 97849, 6097, 59668, '3.0000', '5.3447', '5.3447', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103681, '2022-07-28', 2221, 97850, 6097, NULL, '1.0000', '2.3805', '2.3805', '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 (103682, '2022-07-28', 2959, 97851, 6097, NULL, '1.0000', '4.0000', '4.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 (103683, '2022-07-28', 2648, 97852, 6097, 53441, '1.0000', '2.2228', '2.2228', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 444);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103684, '2022-07-28', 2095, 97853, 6097, NULL, '1.0000', '-8.5000', '-8.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 (103685, '2022-07-28', 2315, 97854, 6097, 59595, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103686, '2022-07-28', 9959, 97855, 6097, 59622, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103687, '2022-07-28', 2100, 97856, 6097, NULL, '1.0000', '0.4608', '0.4608', '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 (103688, '2022-07-28', 8444, 97857, 6097, 57692, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103689, '2022-07-28', 7591, 97858, 6097, NULL, '1.0000', '2.7500', '2.7500', '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 (103690, '2022-07-28', 7911, 97859, 6097, NULL, '1.0000', '4.3700', '4.3700', '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 (103691, '2022-07-28', 1620, 97860, 6097, 58145, '1.0000', '2.3133', '2.3133', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103692, '2022-07-28', 7713, 97861, 6097, 55577, '7.0000', '-1.6750', '-1.6750', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103693, '2022-07-28', 1863, 97862, 6097, 57693, '1.0000', '1.4714', '1.4714', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103694, '2022-07-28', 1905, 97863, 6097, 54898, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103695, '2022-07-28', 1621, 97864, 6097, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103696, '2022-07-28', 1307, 97865, 6097, NULL, '1.0000', '-59.9897', '-59.9897', '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 (103697, '2022-07-28', 1306, 97866, 6097, 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 (103698, '2022-07-28', 1820, 97867, 6098, 58228, '1.0000', '8.3700', '8.3700', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103699, '2022-07-28', 2169, 97868, 6098, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103700, '2022-07-28', 2948, 97869, 6098, 59842, '1.0000', '1.0119', '1.0119', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103701, '2022-07-28', 8133, 97870, 6098, NULL, '1.0000', '-53034.0892', '-53034.0892', '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 (103702, '2022-07-28', 1501, 97871, 6098, NULL, '1.0000', '0.6299', '0.6299', '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 (103703, '2022-07-28', 9695, 97872, 6098, 59668, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103704, '2022-07-28', 8133, 97873, 6098, NULL, '1.0000', '-53034.0892', '-53034.0892', '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 (103705, '2022-07-28', 8878, 97874, 6098, NULL, '1.0000', '6.0509', '6.0509', '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 (103706, '2022-07-28', 9979, 97875, 6098, NULL, '1.0000', '13.9000', '13.9000', '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 (103707, '2022-07-28', 7411, 97876, 6098, NULL, '1.0000', '1.2819', '1.2819', '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 (103708, '2022-07-28', 8699, 97877, 6098, NULL, '2.0000', '6.3800', '6.3800', '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 (103709, '2022-07-28', 9845, 97878, 6098, 58251, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103710, '2022-07-28', 1837, 97879, 6098, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103711, '2022-07-28', 1787, 97880, 6098, NULL, '1.0000', '0.5000', '0.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 (103712, '2022-07-28', 9751, 97881, 6098, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103713, '2022-07-28', 1610, 97882, 6098, 55625, '1.0000', '2.2800', '2.2800', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103714, '2022-07-28', 3058, 97883, 6098, NULL, '1.0000', '-23.3000', '-23.3000', '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 (103715, '2022-07-28', 8638, 97884, 6098, NULL, '1.0000', '0.5254', '0.5254', '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 (103716, '2022-07-28', 2315, 97885, 6098, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103717, '2022-07-28', 9649, 97886, 6098, NULL, '1.0000', '9.9875', '9.9875', '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 (103718, '2022-07-28', 1686, 97887, 6098, 48135, '1.0000', '33.0000', '33.0000', '46.5000', '46.5000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103719, '2022-07-28', 7411, 97888, 6098, NULL, '1.0000', '1.2819', '1.2819', '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 (103720, '2022-07-28', 2821, 97889, 6098, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103721, '2022-07-28', 8638, 97890, 6098, NULL, '1.0000', '0.5254', '0.5254', '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 (103722, '2022-07-28', 9968, 97891, 6098, 59623, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103723, '2022-07-28', 1640, 97892, 6098, NULL, '1.0000', '3.0496', '3.0496', '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 (103724, '2022-07-28', 8498, 97893, 6098, 58231, '1.0000', '-0.4750', '-0.4750', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103725, '2022-07-28', 1665, 97894, 6098, 59912, '3.0000', '1.1718', '1.1718', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103726, '2022-07-28', 1529, 97895, 6098, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103727, '2022-07-28', 8133, 97896, 6098, NULL, '1.0000', '-53034.0892', '-53034.0892', '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 (103728, '2022-07-28', 2169, 97897, 6098, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103729, '2022-07-28', 2315, 97898, 6098, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103730, '2022-07-28', 2169, 97899, 6098, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103731, '2022-07-28', 9695, 97900, 6098, 59668, '2.0000', '5.3447', '5.3447', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103732, '2022-07-28', 8184, 97901, 6098, NULL, '10.0000', '3.0310', '3.0310', '4.0000', '4.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 (103733, '2022-07-28', 1669, 97902, 6098, 23163, '6.0000', '9.3000', '9.3000', '14.0000', '14.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 (103734, '2022-07-28', 1669, 97902, 6098, NULL, '1.0000', '9.3000', '9.3000', '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 (103735, '2022-07-28', 8677, 97903, 6098, NULL, '2.0000', '630.6244', '630.6244', '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 (103736, '2022-07-28', 7612, 97904, 6098, NULL, '2.0000', '0.4900', '0.4900', '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 (103737, '2022-07-28', 1871, 97905, 6098, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (103738, '2022-07-28', 8878, 97906, 6098, NULL, '1.0000', '6.0509', '6.0509', '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 (103739, '2022-07-28', 2285, 97907, 6098, NULL, '1.0000', '-83.4884', '-83.4884', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103740, '2022-07-28', 2315, 97908, 6098, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103741, '2022-07-28', 7411, 97909, 6098, NULL, '1.0000', '1.2819', '1.2819', '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 (103742, '2022-07-28', 7411, 97910, 6099, NULL, '1.0000', '1.2819', '1.2819', '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 (103743, '2022-07-28', 1715, 97911, 6099, 59612, '1.0000', '8.8334', '8.8334', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103744, '2022-07-28', 2167, 97912, 6100, 17165, '-55.0000', '2.2000', '2.2000', '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 (103745, '2022-07-28', 2167, 97912, 6100, NULL, '56.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103746, '2022-07-28', 2070, 97913, 6100, NULL, '1.0000', '2.0000', '2.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 (103747, '2022-07-28', 8068, 97914, 6100, NULL, '1.0000', '8.7900', '8.7900', '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 (103748, '2022-07-28', 9740, 97915, 6100, NULL, '1.0000', '0.6600', '0.6600', '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 (103749, '2022-07-28', 9566, 97916, 6100, NULL, '1.0000', '33.0000', '33.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 (103750, '2022-07-28', 2096, 97917, 6100, NULL, '1.0000', '1.5500', '1.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 (103751, '2022-07-28', 1945, 97918, 6100, 18023, '-6.0000', '9.5000', '9.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103752, '2022-07-28', 1945, 97918, 6100, NULL, '7.0000', '9.5000', '9.5000', '14.0000', '14.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 (103753, '2022-07-28', 1602, 97919, 6100, 5897, '-172.0000', '6.7859', '6.7859', '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 (103754, '2022-07-28', 1602, 97919, 6100, NULL, '173.0000', '6.7859', '6.7859', '10.0000', '10.0000', '-173.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103755, '2022-07-28', 1666, 97920, 6100, 3236, '-40.0000', '2.7100', '2.7100', '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 (103756, '2022-07-28', 1666, 97920, 6100, NULL, '41.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-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 (103757, '2022-07-28', 2221, 97921, 6100, 4154, '-78.0000', '14.4737', '14.4737', '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 (103758, '2022-07-28', 2221, 97921, 6100, NULL, '79.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-79.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103759, '2022-07-28', 9626, 97922, 6100, 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 (103760, '2022-07-28', 2363, 97923, 6100, 3866, '-11.0000', '6.8800', '6.8800', '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 (103761, '2022-07-28', 2363, 97923, 6100, NULL, '12.0000', '6.8800', '6.8800', '12.0000', '12.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 (103762, '2022-07-28', 1528, 97924, 6100, NULL, '1.0000', '38.6400', '38.6400', '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 (103763, '2022-07-28', 2618, 97925, 6100, 9836, '-27.0000', '4.1000', '4.1000', '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 (103764, '2022-07-28', 2618, 97925, 6100, NULL, '29.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103765, '2022-07-28', 1912, 97926, 6100, NULL, '5.0000', '0.3200', '0.3200', '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 (103766, '2022-07-28', 8677, 97927, 6100, NULL, '2.0000', '1.2800', '1.2800', '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 (103767, '2022-07-28', 2497, 97928, 6100, 11164, '-2.0000', '34.4493', '34.4493', '48.5000', '48.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 (103768, '2022-07-28', 2497, 97928, 6100, NULL, '3.0000', '34.4493', '34.4493', '48.5000', '48.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 (103769, '2022-07-28', 3029, 97929, 6100, NULL, '1.0000', '4.7700', '4.7700', '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 (103770, '2022-07-28', 2315, 97930, 6100, 2735, '-585.0000', '0.3300', '0.3300', '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 (103771, '2022-07-28', 2315, 97930, 6100, NULL, '586.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-586.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103772, '2022-07-28', 2038, 97931, 6100, 6390, '-3.0000', '10.5000', '10.5000', '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 (103773, '2022-07-28', 2038, 97931, 6100, NULL, '4.0000', '10.5000', '10.5000', '22.0000', '22.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 (103774, '2022-07-28', 2545, 97932, 6100, 6306, '-11.0000', '5.8819', '5.8819', '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 (103775, '2022-07-28', 2545, 97932, 6100, NULL, '12.0000', '5.8819', '5.8819', '12.5000', '12.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 (103776, '2022-07-28', 9219, 97933, 6100, NULL, '1.0000', '6.3000', '6.3000', '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 (103777, '2022-07-28', 7411, 97934, 6100, NULL, '1.0000', '1.3500', '1.3500', '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 (103778, '2022-07-28', 1310, 97935, 6100, NULL, '2.0000', '0.3700', '0.3700', '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 (103779, '2022-07-28', 9695, 97936, 6100, NULL, '1.0000', '4.5000', '4.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 (103780, '2022-07-28', 1822, 97937, 6100, 8225, '-204.0000', '2.4000', '2.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 (103781, '2022-07-28', 1822, 97937, 6100, NULL, '206.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-206.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103782, '2022-07-28', 1310, 97938, 6100, NULL, '3.0000', '0.3700', '0.3700', '0.6000', '0.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 (103783, '2022-07-28', 2893, 97939, 6100, 18242, '-17.0000', '6.0000', '6.0000', '9.5000', '9.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 (103784, '2022-07-28', 2893, 97939, 6100, NULL, '18.0000', '6.0000', '6.0000', '9.5000', '9.5000', '-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 (103785, '2022-07-28', 8814, 97940, 6101, NULL, '11.0000', '5.0000', '5.0000', '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 (103786, '2022-07-28', 7557, 97941, 6101, NULL, '10.0000', '0.5000', '0.5000', '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 (103787, '2022-07-28', 8665, 97942, 6101, NULL, '1.0000', '6.2700', '6.2700', '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 (103788, '2022-07-28', 7694, 97943, 6101, NULL, '2.0000', '4.7900', '4.7900', '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 (103789, '2022-07-28', 8780, 97944, 6101, NULL, '1.0000', '46.0000', '46.0000', '67.5000', '67.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103790, '2022-07-28', 2315, 97945, 6101, 2735, '-586.0000', '0.3300', '0.3300', '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 (103791, '2022-07-28', 2315, 97945, 6101, NULL, '587.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-587.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103792, '2022-07-28', 7671, 97946, 6101, NULL, '1.0000', '15.5000', '15.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 (103793, '2022-07-28', 2105, 97947, 6101, NULL, '1.0000', '1.3500', '1.3500', '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 (103794, '2022-07-28', 2270, 97948, 6101, 2930, '-17.0000', '0.9880', '0.9880', '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 (103795, '2022-07-28', 2270, 97948, 6101, NULL, '18.0000', '0.9880', '0.9880', '7.0000', '7.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 (103796, '2022-07-28', 7872, 97949, 6101, 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 (103797, '2022-07-28', 8077, 97950, 6101, NULL, '1.0000', '3.6000', '3.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 (103798, '2022-07-28', 9956, 97951, 6101, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103799, '2022-07-28', 8063, 97952, 6101, NULL, '1.0000', '1.6000', '1.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 (103800, '2022-07-28', 9783, 97953, 6101, NULL, '1.0000', '17.6000', '17.6000', '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 (103801, '2022-07-28', 9231, 97954, 6101, NULL, '1.0000', '40.0000', '40.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 (103802, '2022-07-28', 7562, 97955, 6101, NULL, '1.0000', '5.5300', '5.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 (103803, '2022-07-28', 7781, 97956, 6101, NULL, '1.0000', '4.2500', '4.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 (103804, '2022-07-28', 8677, 97957, 6101, NULL, '1.0000', '1.2800', '1.2800', '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 (103805, '2022-07-28', 9503, 97958, 6101, NULL, '1.0000', '20.6000', '20.6000', '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 (103806, '2022-07-28', 1310, 97959, 6101, NULL, '4.0000', '0.3700', '0.3700', '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 (103807, '2022-07-28', 2283, 97960, 6101, 2943, '-33.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 (103808, '2022-07-28', 2283, 97960, 6101, NULL, '34.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (103809, '2022-07-28', 7482, 97961, 6101, NULL, '1.0000', '3.0500', '3.0500', '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 (103810, '2022-07-28', 9715, 97962, 6101, NULL, '1.0000', '9.4000', '9.4000', '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 (103811, '2022-07-28', 7411, 97963, 6101, NULL, '3.0000', '1.3500', '1.3500', '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 (103812, '2022-07-28', 2315, 97964, 6101, 2735, '-586.0000', '0.3300', '0.3300', '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 (103813, '2022-07-28', 2315, 97964, 6101, NULL, '587.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-587.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103814, '2022-07-28', 7588, 97965, 6101, NULL, '1.0000', '6.9000', '6.9000', '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 (103815, '2022-07-28', 7412, 97966, 6101, NULL, '1.0000', '1.5200', '1.5200', '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 (103816, '2022-07-28', 7464, 97967, 6102, 57440, '1.0000', '29.9600', '29.9600', '39.5000', '39.5000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103817, '2022-07-28', 8040, 97968, 6102, 59799, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103818, '2022-07-28', 7411, 97969, 6102, 59778, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103819, '2022-07-28', 7848, 97970, 6102, NULL, '1.0000', '-599.6264', '-599.6264', '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 (103820, '2022-07-28', 8069, 97971, 6102, 59746, '1.0000', '37.3421', '37.3421', '52.0000', '52.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103821, '2022-07-28', 1796, 97972, 6102, NULL, '1.0000', '3.5000', '3.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 (103822, '2022-07-28', 7518, 97973, 6102, 59767, '3.0000', '9.3500', '9.3500', '12.5000', '12.5000', '23.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103823, '2022-07-28', 1672, 97974, 6102, 59377, '10.0000', '3.1988', '3.1988', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103824, '2022-07-28', 2315, 97975, 6102, 59764, '1.0000', '0.7613', '0.7613', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103825, '2022-07-28', 9802, 97976, 6102, NULL, '1.0000', '8.9100', '8.9100', '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 (103826, '2022-07-28', 7451, 97977, 6102, 59142, '2.0000', '9.5563', '9.5563', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103827, '2022-07-28', 9791, 97978, 6102, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '100.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103828, '2022-07-28', 9785, 97979, 6102, 59352, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103829, '2022-07-28', 9469, 97980, 6102, 57520, '1.0000', '1.5529', '1.5529', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103830, '2022-07-28', 9028, 97981, 6102, NULL, '1.0000', '5.6880', '5.6880', '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 (103831, '2022-07-28', 8243, 97982, 6102, NULL, '2.0000', '1.1400', '1.1400', '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 (103832, '2022-07-28', 1935, 97983, 6102, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103833, '2022-07-28', 2251, 97984, 6102, 56653, '1.0000', '12.5571', '12.5571', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103834, '2022-07-28', 8481, 97985, 6102, NULL, '1.0000', '-53.7484', '-53.7484', '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 (103835, '2022-07-28', 8631, 97986, 6102, 52014, '1.0000', '5.0000', '5.0000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103836, '2022-07-28', 7730, 97987, 6102, 59927, '7.0000', '0.1296', '0.1296', '0.2000', '0.2000', '166.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103837, '2022-07-28', 2315, 97988, 6102, 59764, '1.0000', '0.7613', '0.7613', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103838, '2022-07-28', 2656, 97989, 6102, 59919, '1.0000', '1.9545', '1.9545', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103839, '2022-07-28', 7591, 97990, 6102, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103840, '2022-07-28', 7825, 97991, 6102, 59180, '2.0000', '-7.5140', '-7.5140', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103841, '2022-07-28', 7917, 97992, 6102, 52750, '3.0000', '2.1447', '2.1447', '0.7000', '0.7000', '72.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103842, '2022-07-28', 7411, 97993, 6102, 59778, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103843, '2022-07-28', 7954, 97994, 6102, NULL, '20.0000', '7039.4904', '7039.4904', '4.0000', '4.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 (103844, '2022-07-28', 7674, 97995, 6102, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103845, '2022-07-28', 2995, 97996, 6102, NULL, '1.0000', '13.5284', '13.5284', '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 (103846, '2022-07-28', 8763, 97997, 6102, 57509, '1.0000', '9.9422', '9.9422', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103847, '2022-07-28', 9729, 97998, 6102, 59783, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103848, '2022-07-28', 7704, 97999, 6102, NULL, '1.0000', '-1.5625', '-1.5625', '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 (103849, '2022-07-28', 7473, 98000, 6102, 59361, '6.0000', '0.5887', '0.5887', '0.7000', '0.7000', '51.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103850, '2022-07-28', 1561, 98001, 6102, NULL, '3.0000', '23.1000', '23.1000', '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 (103851, '2022-07-28', 2284, 98002, 6102, 59735, '1.0000', '1.4033', '1.4033', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103852, '2022-07-28', 7641, 98003, 6102, 59763, '1.0000', '7.0970', '7.0970', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103853, '2022-07-28', 9736, 98004, 6102, 59080, '1.0000', '4.1455', '4.1455', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103854, '2022-07-28', 7736, 98005, 6102, 59119, '1.0000', '33.3897', '33.3897', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103855, '2022-07-28', 2906, 98006, 6102, 50455, '5.0000', '2.6818', '2.6818', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103856, '2022-07-28', 7674, 98007, 6102, 59362, '2.0000', '89.9278', '89.9278', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103857, '2022-07-28', 8517, 98008, 6102, 59320, '1.0000', '27.6774', '27.6774', '36.5000', '36.5000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103858, '2022-07-28', 9272, 98009, 6102, NULL, '1.0000', '3.1000', '3.1000', '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 (103859, '2022-07-28', 2602, 98010, 6102, 54442, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103860, '2022-07-28', 7886, 98011, 6102, 59133, '1.0000', '4.6185', '4.6185', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103861, '2022-07-28', 1674, 98012, 6103, NULL, '1.0000', '0.8028', '0.8028', '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 (103862, '2022-07-28', 7514, 98013, 6103, NULL, '1.0000', '2.2500', '2.2500', '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 (103863, '2022-07-28', 2169, 98014, 6103, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103864, '2022-07-28', 1812, 98015, 6103, 59911, '1.0000', '9.3448', '9.3448', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103865, '2022-07-28', 1349, 98016, 6103, 56375, '1.0000', '42.3933', '42.3933', '61.0000', '61.0000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103866, '2022-07-28', 2027, 98017, 6103, 57092, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103867, '2022-07-28', 7909, 98018, 6103, NULL, '1.0000', '4.0000', '4.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 (103868, '2022-07-28', 2643, 98019, 6103, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103869, '2022-07-28', 2169, 98020, 6103, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103870, '2022-07-28', 7514, 98021, 6103, NULL, '4.0000', '2.2500', '2.2500', '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 (103871, '2022-07-28', 1904, 98022, 6103, 59888, '1.0000', '45.2950', '45.2950', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103872, '2022-07-28', 2237, 98023, 6103, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103873, '2022-07-28', 2169, 98024, 6103, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103874, '2022-07-28', 9959, 98025, 6103, 59848, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103875, '2022-07-28', 9960, 98026, 6103, NULL, '2.0000', '3.3000', '3.3000', '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 (103876, '2022-07-28', 2169, 98027, 6103, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103877, '2022-07-28', 7514, 98028, 6103, NULL, '2.0000', '2.2500', '2.2500', '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 (103878, '2022-07-28', 8133, 98029, 6103, NULL, '1.0000', '-53034.0892', '-53034.0892', '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 (103879, '2022-07-28', 2315, 98030, 6103, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103880, '2022-07-28', 7398, 98031, 6103, NULL, '1.0000', '143.5000', '143.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 (103881, '2022-07-28', 2289, 98032, 6103, NULL, '1.0000', '0.3611', '0.3611', '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 (103882, '2022-07-28', 2295, 98033, 6103, 57742, '1.0000', '1.4864', '1.4864', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103883, '2022-07-28', 2295, 98033, 6103, 54913, '2.0000', '1.4864', '1.4864', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103884, '2022-07-28', 8878, 98034, 6103, NULL, '2.0000', '6.0509', '6.0509', '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 (103885, '2022-07-28', 8677, 98035, 6103, NULL, '2.0000', '630.6244', '630.6244', '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 (103886, '2022-07-28', 2169, 98036, 6103, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103887, '2022-07-28', 1499, 98037, 6103, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103888, '2022-07-28', 1498, 98038, 6103, 57680, '1.0000', '0.4912', '0.4912', '0.7000', '0.7000', '42.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103889, '2022-07-28', 2169, 98039, 6103, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103890, '2022-07-28', 9089, 98040, 6103, 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 (103891, '2022-07-28', 1394, 98041, 6103, 47131, '1.0000', '10.7744', '10.7744', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103892, '2022-07-28', 9834, 98042, 6103, NULL, '1.0000', '1.4500', '1.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 (103893, '2022-07-28', 9737, 98043, 6103, NULL, '1.0000', '7.9000', '7.9000', '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 (103894, '2022-07-28', 8068, 98044, 6103, NULL, '1.0000', '8.7900', '8.7900', '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 (103895, '2022-07-28', 2728, 98045, 6103, 19354, '5.0000', '0.8000', '0.8000', '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 (103896, '2022-07-28', 2283, 98046, 6103, 58254, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103897, '2022-07-28', 9695, 98047, 6103, 59668, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103898, '2022-07-28', 1410, 98048, 6103, NULL, '1.0000', '48.8052', '48.8052', '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 (103899, '2022-07-28', 9783, 98049, 6103, 59891, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103900, '2022-07-28', 8677, 98050, 6103, NULL, '1.0000', '630.6244', '630.6244', '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 (103901, '2022-07-28', 7411, 98051, 6103, NULL, '1.0000', '1.2819', '1.2819', '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 (103902, '2022-07-28', 2169, 98052, 6103, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103903, '2022-07-28', 9880, 98053, 6103, NULL, '1.0000', '3.4200', '3.4200', '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 (103904, '2022-07-28', 9695, 98054, 6103, 59668, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103905, '2022-07-28', 7641, 98055, 6103, NULL, '1.0000', '1.9000', '1.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 (103906, '2022-07-28', 2754, 98056, 6103, NULL, '5.0000', '0.0800', '0.0800', '0.2000', '0.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 (103907, '2022-07-28', 9747, 98057, 6103, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103908, '2022-07-28', 1904, 98058, 6103, 59888, '1.0000', '45.2950', '45.2950', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103909, '2022-07-28', 2020, 98059, 6103, 59611, '1.0000', '-5194.2000', '-5194.2000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103910, '2022-07-28', 1621, 98060, 6103, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103911, '2022-07-28', 2315, 98061, 6103, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '71.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103912, '2022-07-28', 1812, 98062, 6103, 59911, '1.0000', '9.3448', '9.3448', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103913, '2022-07-28', 1529, 98063, 6103, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103914, '2022-07-28', 9834, 98064, 6103, NULL, '3.0000', '1.4500', '1.4500', '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 (103915, '2022-07-28', 9960, 98065, 6103, NULL, '2.0000', '3.3000', '3.3000', '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 (103916, '2022-07-28', 2221, 98066, 6103, NULL, '1.0000', '2.3805', '2.3805', '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 (103917, '2022-07-28', 1720, 98067, 6103, 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 (103918, '2022-07-28', 8006, 98068, 6103, NULL, '1.0000', '30.0000', '30.0000', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103919, '2022-07-28', 2275, 98069, 6103, 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 (103920, '2022-07-28', 9737, 98070, 6103, NULL, '1.0000', '7.9000', '7.9000', '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 (103921, '2022-07-28', 1386, 98071, 6103, 57759, '1.0000', '4.5308', '4.5308', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103922, '2022-07-28', 8444, 98072, 6103, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '49.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103923, '2022-07-28', 1999, 98073, 6103, 59704, '1.0000', '-1.1834', '-1.1834', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103924, '2022-07-28', 2986, 98074, 6103, 59900, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103925, '2022-07-28', 7743, 98075, 6103, NULL, '2.0000', '7.3900', '7.3900', '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 (103926, '2022-07-28', 9503, 98076, 6103, 33350, '2.0000', '24.1775', '24.1775', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103927, '2022-07-28', 9503, 98076, 6103, NULL, '1.0000', '24.1775', '24.1775', '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 (103928, '2022-07-28', 9482, 98077, 6103, 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 (103929, '2022-07-28', 2167, 98078, 6103, NULL, '1.0000', '0.6663', '0.6663', '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 (103930, '2022-07-28', 1905, 98079, 6103, 51374, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103931, '2022-07-28', 7411, 98080, 6103, NULL, '1.0000', '1.2819', '1.2819', '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 (103932, '2022-07-28', 9736, 98081, 6103, 59890, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103933, '2022-07-28', 1499, 98082, 6103, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103934, '2022-07-28', 1912, 98083, 6103, 49717, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103935, '2022-07-28', 7411, 98084, 6103, NULL, '1.0000', '1.2819', '1.2819', '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 (103936, '2022-07-28', 2066, 98085, 6103, 54883, '2.0000', '0.5100', '0.5100', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103937, '2022-07-28', 7411, 98086, 6103, NULL, '1.0000', '1.2819', '1.2819', '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 (103938, '2022-07-28', 9320, 98087, 6103, NULL, '1.0000', '8.8900', '8.8900', '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 (103939, '2022-07-28', 2244, 98088, 6103, NULL, '1.0000', '-2.9000', '-2.9000', '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 (103940, '2022-07-28', 1863, 98089, 6103, 59906, '1.0000', '1.4865', '1.4865', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103941, '2022-07-28', 1513, 98090, 6103, 59854, '1.0000', '14.1672', '14.1672', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103942, '2022-07-28', 8710, 98091, 6103, NULL, '1.0000', '10.9000', '10.9000', '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 (103943, '2022-07-28', 7608, 98092, 6104, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103944, '2022-07-28', 7709, 98093, 6104, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (103945, '2022-07-28', 9329, 98094, 6104, 59740, '1.0000', '-2685.3782', '-2685.3782', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103946, '2022-07-28', 7886, 98095, 6104, 59133, '1.0000', '4.6185', '4.6185', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103947, '2022-07-28', 2919, 98096, 6105, NULL, '4.0000', '2.9000', '2.9000', '6.3000', '6.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 (103948, '2022-07-28', 1867, 98097, 6106, NULL, '1.0000', '8.2279', '8.2279', '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 (103949, '2022-07-28', 1779, 98098, 6106, 4938, '1.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 (103950, '2022-07-28', 9720, 98099, 6106, 46026, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103951, '2022-07-28', 2916, 98100, 6106, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103952, '2022-07-28', 2400, 98101, 6106, 49470, '1.0000', '12.8889', '12.8889', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103953, '2022-07-28', 2379, 98102, 6106, 58652, '1.0000', '2.0012', '2.0012', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103954, '2022-07-28', 1908, 98103, 6106, 5510, '1.0000', '1.7500', '1.7500', '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 (103955, '2022-07-28', 1519, 98104, 6106, 58634, '1.0000', '3.4435', '3.4435', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103956, '2022-07-28', 7459, 98105, 6106, NULL, '2.0000', '4.5753', '4.5753', '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 (103957, '2022-07-28', 2823, 98106, 6106, 58782, '2.0000', '7.1869', '7.1869', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103958, '2022-07-28', 1307, 98107, 6106, 58787, '1.0000', '4.1753', '4.1753', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103959, '2022-07-28', 1851, 98108, 6106, 56922, '1.0000', '13.1998', '13.1998', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103960, '2022-07-28', 9933, 98109, 6106, 56931, '1.0000', '16.9000', '16.9000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103961, '2022-07-28', 1863, 98110, 6106, 59625, '1.0000', '1.3711', '1.3711', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103962, '2022-07-28', 2543, 98111, 6106, 58796, '1.0000', '2.2750', '2.2750', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103963, '2022-07-28', 7375, 98112, 6106, NULL, '10.0000', '5.3000', '5.3000', '7.0000', '7.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 (103964, '2022-07-28', 1670, 98113, 6106, 58802, '1.0000', '40.8146', '40.8146', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103965, '2022-07-28', 7612, 98114, 6106, NULL, '4.0000', '46.0000', '46.0000', '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 (103966, '2022-07-28', 2486, 98115, 6106, 21821, '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 (103967, '2022-07-28', 2602, 98116, 6106, 54368, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103968, '2022-07-28', 7736, 98117, 6106, NULL, '1.0000', '13.2000', '13.2000', '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 (103969, '2022-07-28', 8746, 98118, 6106, 58001, '1.0000', '65.4820', '65.4820', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103970, '2022-07-28', 7917, 98119, 6106, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103971, '2022-07-28', 1812, 98120, 6106, 59633, '1.0000', '8.5380', '8.5380', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103972, '2022-07-28', 7411, 98121, 6106, 48774, '2.0000', '1.3793', '1.3793', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103973, '2022-07-29', 1328, 98122, 6107, 55767, '1.0000', '3.9079', '3.9079', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103974, '2022-07-29', 2738, 98123, 6107, 56938, '1.0000', '8.9533', '8.9533', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103975, '2022-07-29', 2435, 98124, 6107, NULL, '1.0000', '4.8000', '4.8000', '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 (103976, '2022-07-29', 2169, 98125, 6107, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103977, '2022-07-29', 1808, 98126, 6107, 49253, '1.0000', '48.1667', '48.1667', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103978, '2022-07-29', 2262, 98127, 6107, 55469, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103979, '2022-07-29', 1950, 98128, 6107, 55511, '1.0000', '8.4081', '8.4081', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103980, '2022-07-29', 2059, 98129, 6107, 56348, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103981, '2022-07-29', 2169, 98130, 6107, 57981, '1.0000', '1.3557', '1.3557', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103982, '2022-07-29', 2297, 98131, 6108, 58656, '1.0000', '8.3580', '8.3580', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103983, '2022-07-29', 1339, 98132, 6108, 57978, '1.0000', '1.8343', '1.8343', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103984, '2022-07-29', 1337, 98133, 6108, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103985, '2022-07-29', 2821, 98134, 6108, 57970, '1.0000', '3.4238', '3.4238', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103986, '2022-07-29', 2643, 98135, 6108, 58009, '1.0000', '0.9691', '0.9691', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103987, '2022-07-29', 2643, 98136, 6109, 58009, '1.0000', '0.9691', '0.9691', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103988, '2022-07-29', 1399, 98137, 6110, 53651, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103989, '2022-07-29', 2405, 98138, 6110, 56851, '5.0000', '1.2000', '1.2000', '1.8000', '1.8000', '12.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103990, '2022-07-29', 1905, 98139, 6110, 51374, '1.0000', '0.5203', '0.5203', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103991, '2022-07-29', 1620, 98140, 6110, 59879, '2.0000', '2.3396', '2.3396', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103992, '2022-07-29', 1912, 98141, 6110, 49717, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103993, '2022-07-29', 7741, 98142, 6110, NULL, '1.0000', '-85.1907', '-85.1907', '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 (103994, '2022-07-29', 9946, 98143, 6110, 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 (103995, '2022-07-29', 2893, 98144, 6110, NULL, '1.0000', '6.4400', '6.4400', '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 (103996, '2022-07-29', 2253, 98145, 6110, 57678, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103997, '2022-07-29', 9751, 98146, 6110, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103998, '2022-07-29', 1812, 98147, 6110, 59911, '1.0000', '9.3448', '9.3448', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103999, '2022-07-29', 1921, 98148, 6110, 57074, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104000, '2022-07-29', 1961, 98149, 6110, NULL, '1.0000', '6.1600', '6.1600', '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 (104001, '2022-07-29', 8017, 98150, 6110, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104002, '2022-07-29', 1912, 98151, 6110, 49717, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104003, '2022-07-29', 2262, 98152, 6110, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104004, '2022-07-29', 1665, 98153, 6110, 59912, '2.0000', '1.1718', '1.1718', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104005, '2022-07-29', 9902, 98154, 6110, 59883, '1.0000', '7.9671', '7.9671', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104006, '2022-07-29', 2068, 98155, 6110, NULL, '1.0000', '14.6943', '14.6943', '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 (104007, '2022-07-29', 1337, 98156, 6110, 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 (104008, '2022-07-29', 2247, 98157, 6110, 33149, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104009, '2022-07-29', 2236, 98158, 6110, NULL, '1.0000', '8.2102', '8.2102', '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 (104010, '2022-07-29', 9747, 98159, 6110, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104011, '2022-07-29', 9751, 98160, 6110, 59707, '2.0000', '1.1935', '1.1935', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104012, '2022-07-29', 1812, 98161, 6110, 59911, '1.0000', '9.3448', '9.3448', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104013, '2022-07-29', 7411, 98162, 6110, NULL, '2.0000', '1.2819', '1.2819', '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 (104014, '2022-07-29', 7579, 98163, 6110, NULL, '1.0000', '15.0000', '15.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 (104015, '2022-07-29', 2754, 98164, 6110, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (104016, '2022-07-29', 2545, 98165, 6110, 59905, '1.0000', '8.6211', '8.6211', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104017, '2022-07-29', 7801, 98166, 6110, NULL, '2.0000', '3.0000', '3.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 (104018, '2022-07-29', 1554, 98167, 6110, 19872, '1.0000', '2.5497', '2.5497', '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 (104019, '2022-07-29', 2273, 98168, 6110, 58148, '1.0000', '3.0473', '3.0473', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104020, '2022-07-29', 2104, 98169, 6110, 22380, '1.0000', '0.2000', '0.2000', '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 (104021, '2022-07-29', 1602, 98170, 6110, 59619, '1.0000', '7.1154', '7.1154', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104022, '2022-07-29', 2250, 98171, 6110, 59886, '1.0000', '9.0177', '9.0177', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104023, '2022-07-29', 1783, 98172, 6111, 60061, '6.0000', '2.8473', '2.8473', '13.5000', '13.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104024, '2022-07-29', 1501, 98173, 6112, NULL, '1.0000', '2.0500', '2.0500', '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 (104025, '2022-07-29', 9275, 98174, 6112, NULL, '2.0000', '6.3000', '6.3000', '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 (104026, '2022-07-29', 1804, 98175, 6112, 4916, '-18.0000', '4.2500', '4.2500', '9.5000', '9.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 (104027, '2022-07-29', 1804, 98175, 6112, NULL, '19.0000', '4.2500', '4.2500', '9.5000', '9.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 (104028, '2022-07-29', 1577, 98176, 6112, 7596, '-19.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 (104029, '2022-07-29', 1577, 98176, 6112, NULL, '20.0000', '2.5000', '2.5000', '4.0000', '4.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 (104030, '2022-07-29', 7959, 98177, 6112, NULL, '1.0000', '9.6000', '9.6000', '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 (104031, '2022-07-29', 1557, 98178, 6112, 1628, '-14.0000', '7.9500', '7.9500', '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 (104032, '2022-07-29', 1557, 98178, 6112, NULL, '15.0000', '7.9500', '7.9500', '11.0000', '11.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 (104033, '2022-07-29', 7707, 98179, 6112, NULL, '1.0000', '7.0000', '7.0000', '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 (104034, '2022-07-29', 8362, 98180, 6112, NULL, '10.0000', '0.6000', '0.6000', '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 (104035, '2022-07-29', 1337, 98181, 6112, 10809, '-30.0000', '2.0000', '2.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 (104036, '2022-07-29', 1337, 98181, 6112, NULL, '31.0000', '2.0000', '2.0000', '3.5000', '3.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 (104037, '2022-07-29', 8288, 98182, 6112, NULL, '1.0000', '1.1600', '1.1600', '1.8000', '1.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 (104038, '2022-07-29', 9572, 98183, 6112, NULL, '3.0000', '14.0000', '14.0000', '22.0000', '22.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 (104039, '2022-07-29', 1856, 98184, 6112, NULL, '1.0000', '4.2500', '4.2500', '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 (104040, '2022-07-29', 9783, 98185, 6112, NULL, '1.0000', '17.6000', '17.6000', '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 (104041, '2022-07-29', 7917, 98186, 6112, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104042, '2022-07-29', 8774, 98187, 6112, NULL, '1.0000', '2.3000', '2.3000', '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 (104043, '2022-07-29', 1935, 98188, 6112, 5586, '-188.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 (104044, '2022-07-29', 1935, 98188, 6112, NULL, '189.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-189.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104045, '2022-07-29', 1623, 98189, 6112, NULL, '1.0000', '140.8400', '140.8400', '186.0000', '186.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104046, '2022-07-29', 9471, 98190, 6112, 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 (104047, '2022-07-29', 9534, 98191, 6112, NULL, '1.0000', '19.8900', '19.8900', '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 (104048, '2022-07-29', 7318, 98192, 6112, NULL, '1.0000', '13.4400', '13.4400', '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 (104049, '2022-07-29', 7409, 98193, 6112, NULL, '1.0000', '4.3300', '4.3300', '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 (104050, '2022-07-29', 8017, 98194, 6112, NULL, '7.0000', '40.0000', '40.0000', '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 (104051, '2022-07-29', 2363, 98195, 6112, 3866, '-12.0000', '6.8800', '6.8800', '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 (104052, '2022-07-29', 2363, 98195, 6112, NULL, '13.0000', '6.8800', '6.8800', '12.0000', '12.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 (104053, '2022-07-29', 8638, 98196, 6112, NULL, '1.0000', '0.5100', '0.5100', '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 (104054, '2022-07-29', 7674, 98197, 6112, NULL, '1.0000', '1.3000', '1.3000', '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 (104055, '2022-07-29', 8834, 98198, 6112, 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 (104056, '2022-07-29', 7411, 98199, 6112, NULL, '1.0000', '1.3500', '1.3500', '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 (104057, '2022-07-29', 2315, 98200, 6112, 2735, '-588.0000', '0.3300', '0.3300', '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 (104058, '2022-07-29', 2315, 98200, 6112, NULL, '589.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-589.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104059, '2022-07-29', 8017, 98201, 6113, NULL, '1.0000', '40.0000', '40.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 (104060, '2022-07-29', 9641, 98202, 6114, 58828, '1.0000', '39.4700', '39.4700', '54.0000', '54.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104061, '2022-07-29', 2233, 98203, 6115, 57788, '1.0000', '25.0654', '25.0654', '39.0000', '39.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104062, '2022-07-29', 1871, 98204, 6115, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (104063, '2022-07-29', 8006, 98205, 6115, NULL, '1.0000', '30.0000', '30.0000', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104064, '2022-07-29', 1672, 98206, 6115, 57792, '2.0000', '4.1808', '4.1808', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104065, '2022-07-29', 1672, 98206, 6115, 56440, '8.0000', '4.1808', '4.1808', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104066, '2022-07-29', 9834, 98207, 6115, NULL, '2.0000', '1.4500', '1.4500', '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 (104067, '2022-07-29', 8915, 98208, 6116, 57519, '1.0000', '8.7010', '8.7010', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104068, '2022-07-29', 7674, 98209, 6116, 59362, '2.0000', '89.9278', '89.9278', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104069, '2022-07-29', 7411, 98210, 6116, 60143, '3.0000', '1.4000', '1.4000', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104070, '2022-07-29', 7730, 98211, 6116, 60195, '5.0000', '0.0723', '0.0723', '0.2000', '0.2000', '161.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104071, '2022-07-29', 9271, 98212, 6116, 56566, '1.0000', '1.8173', '1.8173', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104072, '2022-07-29', 9463, 98213, 6116, 59353, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104073, '2022-07-29', 8308, 98214, 6116, NULL, '1.0000', '22.3258', '22.3258', '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 (104074, '2022-07-29', 7872, 98215, 6116, 59403, '2.0000', '-2180.3597', '-2180.3597', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104075, '2022-07-29', 9633, 98216, 6116, 59401, '2.0000', '7.2000', '7.2000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104076, '2022-07-29', 1542, 98217, 6116, NULL, '1.0000', '115.7329', '115.7329', '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 (104077, '2022-07-29', 1550, 98218, 6116, 54085, '2.0000', '1.3854', '1.3854', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104078, '2022-07-29', 2317, 98219, 6116, 58109, '1.0000', '15.5909', '15.5909', '20.0000', '20.0000', '12.0000', 1, 0, NULL, 506);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104079, '2022-07-29', 7847, 98220, 6116, 60189, '2.0000', '6.6016', '6.6016', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104080, '2022-07-29', 9469, 98221, 6116, 57520, '1.0000', '1.5529', '1.5529', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104081, '2022-07-29', 1620, 98222, 6116, 55139, '4.0000', '2.3411', '2.3411', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104082, '2022-07-29', 2255, 98223, 6116, NULL, '1.0000', '17.2026', '17.2026', '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 (104083, '2022-07-29', 7674, 98224, 6116, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104084, '2022-07-29', 8120, 98225, 6116, NULL, '1.0000', '33.0000', '33.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 (104085, '2022-07-29', 7900, 98226, 6116, 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 (104086, '2022-07-29', 7411, 98227, 6116, 60143, '3.0000', '1.4000', '1.4000', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104087, '2022-07-29', 7689, 98228, 6116, 56000, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104088, '2022-07-29', 7890, 98229, 6116, 52723, '1.0000', '30.9101', '30.9101', '23.5000', '23.5000', '1.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104089, '2022-07-29', 7857, 98230, 6116, 57174, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104090, '2022-07-29', 7808, 98231, 6116, 60192, '1.0000', '8.3340', '8.3340', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104091, '2022-07-29', 9803, 98232, 6116, 50387, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104092, '2022-07-29', 8677, 98233, 6116, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104093, '2022-07-29', 9272, 98234, 6116, NULL, '1.0000', '3.1000', '3.1000', '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 (104094, '2022-07-29', 7674, 98235, 6116, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104095, '2022-07-29', 2962, 98236, 6116, 57527, '1.0000', '1.2049', '1.2049', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104096, '2022-07-29', 8243, 98237, 6116, NULL, '2.0000', '1.1400', '1.1400', '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 (104097, '2022-07-29', 7585, 98238, 6116, 57168, '1.0000', '5.1389', '5.1389', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104098, '2022-07-29', 7482, 98239, 6116, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104099, '2022-07-29', 7703, 98240, 6116, NULL, '2.0000', '-4961.0093', '-4961.0093', '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 (104100, '2022-07-29', 7781, 98241, 6116, NULL, '3.0000', '6.8496', '6.8496', '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 (104101, '2022-07-29', 2656, 98242, 6116, 60187, '1.0000', '1.7540', '1.7540', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104102, '2022-07-29', 9412, 98243, 6116, 51063, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104103, '2022-07-29', 1837, 98244, 6116, 45863, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104104, '2022-07-29', 7560, 98245, 6116, 60094, '1.0000', '41.1025', '41.1025', '55.0000', '55.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104105, '2022-07-29', 2699, 98246, 6116, NULL, '1.0000', '3.0000', '3.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 (104106, '2022-07-29', 2104, 98247, 6116, NULL, '2.0000', '0.2000', '0.2000', '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 (104107, '2022-07-29', 8200, 98248, 6116, 56669, '1.0000', '8.7746', '8.7746', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104108, '2022-07-29', 7743, 98249, 6116, NULL, '1.0000', '919779.6853', '919779.6853', '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 (104109, '2022-07-29', 7954, 98250, 6116, NULL, '4.0000', '7039.4904', '7039.4904', '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 (104110, '2022-07-29', 8074, 98251, 6116, 59165, '2.0000', '24.5833', '24.5833', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104111, '2022-07-29', 7611, 98252, 6116, 60104, '1.0000', '14.8304', '14.8304', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104112, '2022-07-29', 7641, 98253, 6117, NULL, '1.0000', '1.9000', '1.9000', '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 (104113, '2022-07-29', 1805, 98254, 6117, NULL, '1.0000', '40.8080', '40.8080', '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 (104114, '2022-07-29', 2242, 98255, 6117, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104115, '2022-07-29', 1805, 98256, 6117, NULL, '1.0000', '40.8080', '40.8080', '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 (104116, '2022-07-29', 2315, 98257, 6117, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104117, '2022-07-29', 9870, 98258, 6117, NULL, '1.0000', '7.0507', '7.0507', '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 (104118, '2022-07-29', 9750, 98259, 6117, NULL, '1.0000', '3.1493', '3.1493', '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 (104119, '2022-07-29', 2169, 98260, 6117, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104120, '2022-07-29', 9814, 98261, 6117, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104121, '2022-07-29', 8444, 98262, 6117, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104122, '2022-07-29', 2287, 98263, 6117, 57710, '1.0000', '2.3233', '2.3233', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104123, '2022-07-29', 1855, 98264, 6117, NULL, '1.0000', '1.4615', '1.4615', '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 (104124, '2022-07-29', 7913, 98265, 6117, NULL, '3.0000', '2.5500', '2.5500', '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 (104125, '2022-07-29', 7324, 98266, 6117, NULL, '2.0000', '5.4813', '5.4813', '8.5000', '8.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 (104126, '2022-07-29', 9834, 98267, 6117, NULL, '1.0000', '1.4500', '1.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 (104127, '2022-07-29', 1340, 98268, 6117, 58179, '1.0000', '3.6001', '3.6001', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104128, '2022-07-29', 1337, 98269, 6117, 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 (104129, '2022-07-29', 2986, 98270, 6117, 59900, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104130, '2022-07-29', 2612, 98271, 6117, NULL, '1.0000', '10.8600', '10.8600', '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 (104131, '2022-07-29', 7411, 98272, 6117, NULL, '1.0000', '1.2819', '1.2819', '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 (104132, '2022-07-29', 9734, 98273, 6117, 59596, '1.0000', '0.7089', '0.7089', '0.7000', '0.7000', '17.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104133, '2022-07-29', 2821, 98274, 6117, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104134, '2022-07-29', 8017, 98275, 6117, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104135, '2022-07-29', 9832, 98276, 6117, 59666, '1.0000', '1.1069', '1.1069', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104136, '2022-07-29', 2315, 98277, 6117, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104137, '2022-07-29', 1851, 98278, 6117, 58164, '1.0000', '13.3410', '13.3410', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104138, '2022-07-29', 7756, 98279, 6117, NULL, '1.0000', '2.5000', '2.5000', '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 (104139, '2022-07-29', 2821, 98280, 6117, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104140, '2022-07-29', 9609, 98281, 6117, NULL, '1.0000', '-1.7000', '-1.7000', '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 (104141, '2022-07-29', 8207, 98282, 6117, NULL, '1.0000', '0.0000', '0.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 (104142, '2022-07-29', 1855, 98283, 6117, NULL, '1.0000', '1.4615', '1.4615', '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 (104143, '2022-07-29', 9824, 98284, 6117, 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 (104144, '2022-07-29', 7641, 98285, 6117, NULL, '1.0000', '1.9000', '1.9000', '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 (104145, '2022-07-29', 1604, 98286, 6117, NULL, '2.0000', '70.6900', '70.6900', '50.5000', '50.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 (104146, '2022-07-29', 3029, 98287, 6117, NULL, '1.0000', '-67.9257', '-67.9257', '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 (104147, '2022-07-29', 2062, 98288, 6117, 57738, '1.0000', '12.5700', '12.5700', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104148, '2022-07-29', 9750, 98289, 6117, NULL, '1.0000', '3.1493', '3.1493', '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 (104149, '2022-07-29', 2262, 98290, 6117, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104150, '2022-07-29', 2068, 98291, 6117, NULL, '2.0000', '14.6943', '14.6943', '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 (104151, '2022-07-29', 8006, 98292, 6117, NULL, '1.0000', '30.0000', '30.0000', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104152, '2022-07-29', 1672, 98293, 6117, 56440, '2.0000', '4.1808', '4.1808', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104153, '2022-07-29', 1672, 98293, 6117, NULL, '8.0000', '4.1808', '4.1808', '5.5000', '5.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 (104154, '2022-07-29', 9834, 98294, 6117, NULL, '1.0000', '1.4500', '1.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 (104155, '2022-07-29', 1871, 98295, 6117, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (104156, '2022-07-29', 7741, 98296, 6117, NULL, '1.0000', '-85.1907', '-85.1907', '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 (104157, '2022-07-29', 2259, 98297, 6117, 58154, '1.0000', '25.7085', '25.7085', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104158, '2022-07-29', 2643, 98298, 6117, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104159, '2022-07-29', 1856, 98299, 6117, NULL, '2.0000', '155.0099', '155.0099', '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 (104160, '2022-07-29', 1409, 98300, 6117, 54544, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104161, '2022-07-29', 1665, 98301, 6117, 59912, '1.0000', '1.1718', '1.1718', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104162, '2022-07-29', 9831, 98302, 6117, 59665, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104163, '2022-07-29', 2418, 98303, 6117, 56857, '1.0000', '9.2668', '9.2668', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104164, '2022-07-29', 1410, 98304, 6117, NULL, '1.0000', '48.8052', '48.8052', '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 (104165, '2022-07-29', 2237, 98305, 6117, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104166, '2022-07-29', 9482, 98306, 6117, NULL, '2.0000', '0.5000', '0.5000', '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 (104167, '2022-07-29', 9734, 98307, 6117, 59596, '2.0000', '0.7089', '0.7089', '0.7000', '0.7000', '16.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104168, '2022-07-29', 7411, 98308, 6117, NULL, '1.0000', '1.2819', '1.2819', '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 (104169, '2022-07-29', 9752, 98309, 6117, NULL, '1.0000', '0.8700', '0.8700', '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 (104170, '2022-07-29', 2986, 98310, 6117, 59900, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104171, '2022-07-29', 9503, 98311, 6117, NULL, '2.0000', '24.1775', '24.1775', '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 (104172, '2022-07-29', 9695, 98312, 6117, 59668, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104173, '2022-07-29', 9204, 98313, 6117, NULL, '1.0000', '14.1514', '14.1514', '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 (104174, '2022-07-29', 9734, 98314, 6117, 59596, '4.0000', '0.7089', '0.7089', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104175, '2022-07-29', 2169, 98315, 6117, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104176, '2022-07-29', 8743, 98316, 6117, 59649, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104177, '2022-07-29', 8771, 98317, 6117, 59651, '1.0000', '6.9441', '6.9441', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104178, '2022-07-29', 9961, 98318, 6117, NULL, '1.0000', '18.5000', '18.5000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104179, '2022-07-29', 1644, 98319, 6118, 56529, '1.0000', '38.4568', '38.4568', '51.0000', '51.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104180, '2022-07-29', 2104, 98320, 6118, NULL, '4.0000', '0.2000', '0.2000', '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 (104181, '2022-07-29', 7411, 98321, 6118, 60143, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104182, '2022-07-29', 9729, 98322, 6118, 60148, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104183, '2022-07-29', 7524, 98323, 6118, 60133, '3.0000', '4.7209', '4.7209', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104184, '2022-07-29', 7672, 98324, 6118, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104185, '2022-07-29', 2327, 98325, 6119, 59969, '2.0000', '3.3869', '3.3869', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104186, '2022-07-29', 2413, 98326, 6119, 54395, '1.0000', '1.1122', '1.1122', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104187, '2022-07-29', 2769, 98327, 6119, 58760, '2.0000', '2.0708', '2.0708', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104188, '2022-07-29', 1845, 98328, 6119, 60067, '1.0000', '21.6063', '21.6063', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104189, '2022-07-29', 7756, 98329, 6119, NULL, '1.0000', '26.9296', '26.9296', '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 (104190, '2022-07-29', 2605, 98330, 6119, 54630, '8.0000', '15.2250', '15.2250', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104191, '2022-07-29', 7459, 98331, 6119, NULL, '20.0000', '4.5753', '4.5753', '4.0000', '4.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 (104192, '2022-07-29', 1337, 98332, 6119, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104193, '2022-07-29', 2068, 98333, 6119, 59987, '1.0000', '12.8818', '12.8818', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104194, '2022-07-29', 9762, 98334, 6119, 57987, '1.0000', '2.4700', '2.4700', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104195, '2022-07-29', 7881, 98335, 6119, NULL, '1.0000', '2.7500', '2.7500', '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 (104196, '2022-07-29', 2167, 98336, 6119, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104197, '2022-07-29', 1863, 98337, 6119, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104198, '2022-07-29', 2315, 98338, 6119, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104199, '2022-07-29', 2315, 98339, 6119, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104200, '2022-07-29', 1602, 98340, 6119, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104201, '2022-07-29', 7802, 98341, 6119, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104202, '2022-07-29', 2823, 98342, 6119, 59967, '2.0000', '7.5677', '7.5677', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104203, '2022-07-29', 2825, 98343, 6119, NULL, '1.0000', '12.0000', '12.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 (104204, '2022-07-29', 1863, 98344, 6119, 60078, '2.0000', '1.3992', '1.3992', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104205, '2022-07-29', 1450, 98345, 6119, NULL, '10.0000', '0.8255', '0.8255', '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 (104206, '2022-07-29', 7641, 98346, 6119, NULL, '1.0000', '1.9000', '1.9000', '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 (104207, '2022-07-29', 2302, 98347, 6119, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104208, '2022-07-29', 1785, 98348, 6119, 60015, '1.0000', '16.0665', '16.0665', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104209, '2022-07-29', 1812, 98349, 6119, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104210, '2022-07-29', 9695, 98350, 6119, 58550, '1.0000', '5.7386', '5.7386', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104211, '2022-07-29', 1318, 98351, 6119, 5491, '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 (104212, '2022-07-29', 2769, 98352, 6119, 58760, '3.0000', '2.0708', '2.0708', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104213, '2022-07-29', 2682, 98353, 6119, 58801, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104214, '2022-07-29', 2823, 98354, 6119, 59967, '2.0000', '7.5677', '7.5677', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104215, '2022-07-29', 7411, 98355, 6119, 48774, '2.0000', '1.3793', '1.3793', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104216, '2022-07-29', 7506, 98356, 6119, NULL, '3.0000', '15.0000', '15.0000', '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 (104217, '2022-07-29', 1432, 98357, 6119, 59982, '1.0000', '11.5719', '11.5719', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104218, '2022-07-29', 1409, 98358, 6119, 59960, '1.0000', '13.0799', '13.0799', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104219, '2022-07-29', 7411, 98359, 6119, 48774, '2.0000', '1.3793', '1.3793', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104220, '2022-07-29', 7756, 98360, 6119, NULL, '1.0000', '26.9296', '26.9296', '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 (104221, '2022-07-29', 9626, 98361, 6119, 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 (104222, '2022-07-29', 2036, 98362, 6119, 56349, '2.0000', '8.9375', '8.9375', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104223, '2022-07-29', 9762, 98363, 6119, 57987, '1.0000', '2.4700', '2.4700', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104224, '2022-07-29', 2685, 98364, 6119, 12780, '1.0000', '35.0000', '35.0000', '45.0000', '45.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104225, '2022-07-29', 1410, 98365, 6119, 60072, '2.0000', '2.9374', '2.9374', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104226, '2022-07-29', 2925, 98366, 6119, 18797, '1.0000', '5.0000', '5.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 (104227, '2022-07-29', 1904, 98367, 6119, 59962, '2.0000', '19.3805', '19.3805', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104228, '2022-07-29', 9794, 98368, 6119, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104229, '2022-07-29', 2693, 98369, 6119, 60021, '1.0000', '24.4717', '24.4717', '32.5000', '32.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104230, '2022-07-29', 3025, 98370, 6119, 55003, '1.0000', '2.5811', '2.5811', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104231, '2022-07-29', 8745, 98371, 6120, 59650, '1.0000', '13.9869', '13.9869', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104232, '2022-07-29', 8743, 98372, 6120, 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 (104233, '2022-07-29', 1999, 98373, 6120, 59704, '1.0000', '-1.1834', '-1.1834', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104234, '2022-07-29', 7411, 98374, 6120, NULL, '1.0000', '1.2819', '1.2819', '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 (104235, '2022-07-29', 1828, 98375, 6120, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104236, '2022-07-30', 2169, 98376, 6121, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104237, '2022-07-30', 7411, 98377, 6121, NULL, '1.0000', '1.2819', '1.2819', '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 (104238, '2022-07-30', 1912, 98378, 6121, 49717, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104239, '2022-07-30', 8133, 98379, 6121, NULL, '1.0000', '-53034.0892', '-53034.0892', '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 (104240, '2022-07-30', 9762, 98380, 6121, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104241, '2022-07-30', 2256, 98381, 6121, 58149, '1.0000', '18.0320', '18.0320', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104242, '2022-07-30', 2237, 98382, 6121, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104243, '2022-07-30', 1912, 98383, 6121, 49717, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104244, '2022-07-30', 2088, 98384, 6121, 59892, '1.0000', '2.0426', '2.0426', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104245, '2022-07-30', 9750, 98385, 6121, NULL, '1.0000', '3.1493', '3.1493', '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 (104246, '2022-07-30', 2068, 98386, 6121, NULL, '1.0000', '14.6943', '14.6943', '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 (104247, '2022-07-30', 7385, 98387, 6121, 58142, '2.0000', '3.1710', '3.1710', '4.0000', '4.0000', '146.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104248, '2022-07-30', 8068, 98388, 6121, NULL, '1.0000', '8.7900', '8.7900', '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 (104249, '2022-07-30', 2699, 98389, 6121, NULL, '2.0000', '3.5000', '3.5000', '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 (104250, '2022-07-30', 1904, 98390, 6121, 59888, '2.0000', '45.2950', '45.2950', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104251, '2022-07-30', 2643, 98391, 6121, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104252, '2022-07-30', 8207, 98392, 6121, NULL, '1.0000', '0.0000', '0.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 (104253, '2022-07-30', 2169, 98393, 6121, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104254, '2022-07-30', 9751, 98394, 6121, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104255, '2022-07-30', 1602, 98395, 6121, 59619, '1.0000', '7.1154', '7.1154', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104256, '2022-07-30', 2315, 98396, 6121, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104257, '2022-07-30', 1501, 98397, 6121, NULL, '1.0000', '0.6299', '0.6299', '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 (104258, '2022-07-30', 9832, 98398, 6121, 59666, '2.0000', '1.1069', '1.1069', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104259, '2022-07-30', 9831, 98399, 6121, 59665, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104260, '2022-07-30', 1912, 98400, 6121, 49717, '4.0000', '0.6868', '0.6868', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104261, '2022-07-30', 1731, 98401, 6121, 51361, '1.0000', '19.7600', '19.7600', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104262, '2022-07-30', 1536, 98402, 6121, 30663, '10.0000', '101.0896', '101.0896', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104263, '2022-07-30', 8878, 98403, 6121, NULL, '2.0000', '6.0509', '6.0509', '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 (104264, '2022-07-30', 2169, 98404, 6121, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104265, '2022-07-30', 9909, 98405, 6121, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104266, '2022-07-30', 7953, 98406, 6121, NULL, '1.0000', '-0.5345', '-0.5345', '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 (104267, '2022-07-30', 2849, 98407, 6121, NULL, '1.0000', '5.8500', '5.8500', '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 (104268, '2022-07-30', 7802, 98408, 6122, NULL, '3.0000', '0.9200', '0.9200', '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 (104269, '2022-07-30', 2350, 98409, 6122, 3853, '-8.0000', '10.3800', '10.3800', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104270, '2022-07-30', 2350, 98409, 6122, NULL, '9.0000', '10.3800', '10.3800', '14.0000', '14.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 (104271, '2022-07-30', 2602, 98410, 6122, 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 (104272, '2022-07-30', 2362, 98411, 6122, 3864, '-67.0000', '8.8300', '8.8300', '179.0000', '179.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104273, '2022-07-30', 2362, 98411, 6122, NULL, '68.0000', '8.8300', '8.8300', '179.0000', '179.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104274, '2022-07-30', 1541, 98412, 6122, 18018, '-6.0000', '19.0000', '19.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 (104275, '2022-07-30', 1541, 98412, 6122, NULL, '7.0000', '19.0000', '19.0000', '30.5000', '30.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 (104276, '2022-07-30', 2395, 98413, 6122, 4202, '-6.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 (104277, '2022-07-30', 2395, 98413, 6122, NULL, '7.0000', '27.0000', '27.0000', '36.0000', '36.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 (104278, '2022-07-30', 1486, 98414, 6122, NULL, '1.0000', '17.2400', '17.2400', '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 (104279, '2022-07-30', 1904, 98415, 6122, 5442, '-68.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 (104280, '2022-07-30', 1904, 98415, 6122, NULL, '69.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104281, '2022-07-30', 1825, 98416, 6122, 11265, '-12.0000', '4.8000', '4.8000', '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 (104282, '2022-07-30', 1825, 98416, 6122, NULL, '13.0000', '4.8000', '4.8000', '10.0000', '10.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 (104283, '2022-07-30', 2297, 98417, 6122, 2956, '-10.0000', '6.6000', '6.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 (104284, '2022-07-30', 2297, 98417, 6122, NULL, '11.0000', '6.6000', '6.6000', '12.0000', '12.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 (104285, '2022-07-30', 1333, 98418, 6122, 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 (104286, '2022-07-30', 9815, 98419, 6122, NULL, '1.0000', '0.8000', '0.8000', '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 (104287, '2022-07-30', 1529, 98420, 6122, NULL, '1.0000', '3.5500', '3.5500', '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 (104288, '2022-07-30', 7411, 98421, 6122, NULL, '1.0000', '1.3500', '1.3500', '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 (104289, '2022-07-30', 2682, 98422, 6122, 12165, '-6.0000', '19.3000', '19.3000', '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 (104290, '2022-07-30', 2682, 98422, 6122, NULL, '7.0000', '19.3000', '19.3000', '20.0000', '20.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 (104291, '2022-07-30', 7533, 98423, 6122, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104292, '2022-07-30', 1961, 98424, 6122, 4501, '-6.0000', '20.4530', '20.4530', '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 (104293, '2022-07-30', 1961, 98424, 6122, NULL, '7.0000', '20.4530', '20.4530', '35.0000', '35.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 (104294, '2022-07-30', 9762, 98425, 6122, 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 (104295, '2022-07-30', 2965, 98426, 6122, NULL, '1.0000', '5.0000', '5.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 (104296, '2022-07-30', 1885, 98427, 6122, 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 (104297, '2022-07-30', 2316, 98428, 6122, 16951, '-4.0000', '44.8814', '44.8814', '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 (104298, '2022-07-30', 2316, 98428, 6122, NULL, '5.0000', '44.8814', '44.8814', '60.0000', '60.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 (104299, '2022-07-30', 7753, 98429, 6123, 60153, '1.0000', '3.5929', '3.5929', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104300, '2022-07-30', 1837, 98430, 6123, 45863, '3.0000', '0.5600', '0.5600', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104301, '2022-07-30', 8061, 98431, 6123, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104302, '2022-07-30', 9850, 98432, 6123, 55123, '1.0000', '17.6000', '17.6000', '23.5000', '23.5000', '1.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104303, '2022-07-30', 8756, 98433, 6123, NULL, '1.0000', '8.5042', '8.5042', '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 (104304, '2022-07-30', 2317, 98434, 6123, 58109, '1.0000', '15.5909', '15.5909', '20.0000', '20.0000', '11.0000', 1, 0, NULL, 506);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104305, '2022-07-30', 2416, 98435, 6123, 57521, '1.0000', '0.0332', '0.0332', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104306, '2022-07-30', 7444, 98436, 6123, 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 (104307, '2022-07-30', 9469, 98437, 6123, 57520, '1.0000', '1.5529', '1.5529', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104308, '2022-07-30', 7411, 98438, 6123, 60143, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104309, '2022-07-30', 8136, 98439, 6123, NULL, '1.0000', '-4.7978', '-4.7978', '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 (104310, '2022-07-30', 7514, 98440, 6123, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (104311, '2022-07-30', 9819, 98441, 6123, 59329, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104312, '2022-07-30', 7526, 98442, 6123, NULL, '1.0000', '36.8575', '36.8575', '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 (104313, '2022-07-30', 7898, 98443, 6123, NULL, '1.0000', '2.2000', '2.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 (104314, '2022-07-30', 8177, 98444, 6123, 57518, '1.0000', '15.5370', '15.5370', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104315, '2022-07-30', 1837, 98445, 6123, 45863, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104316, '2022-07-30', 2079, 98446, 6123, 45601, '1.0000', '2.1080', '2.1080', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104317, '2022-07-30', 7674, 98447, 6123, 59362, '3.0000', '89.9278', '89.9278', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104318, '2022-07-30', 2287, 98448, 6123, 59355, '3.0000', '3.1700', '3.1700', '4.5000', '4.5000', '30.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104319, '2022-07-30', 7881, 98449, 6123, 57456, '1.0000', '-16.9095', '-16.9095', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104320, '2022-07-30', 2416, 98450, 6123, 57521, '2.0000', '0.0332', '0.0332', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104321, '2022-07-30', 9695, 98451, 6123, 60197, '1.0000', '5.8843', '5.8843', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104322, '2022-07-30', 7917, 98452, 6123, 52750, '1.0000', '2.1447', '2.1447', '0.7000', '0.7000', '71.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104323, '2022-07-30', 7409, 98453, 6123, 55111, '1.0000', '5.0453', '5.0453', '19.0000', '19.0000', '8.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104324, '2022-07-30', 7473, 98454, 6123, 59361, '5.0000', '0.5887', '0.5887', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104325, '2022-07-30', 9880, 98455, 6123, 60163, '1.0000', '4.8799', '4.8799', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104326, '2022-07-30', 2062, 98456, 6123, 59185, '1.0000', '9.1979', '9.1979', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104327, '2022-07-30', 7714, 98457, 6123, NULL, '4.0000', '0.4200', '0.4200', '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 (104328, '2022-07-30', 2656, 98458, 6123, 60187, '1.0000', '1.7540', '1.7540', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104329, '2022-07-30', 7821, 98459, 6123, 54472, '1.0000', '10.8121', '10.8121', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104330, '2022-07-30', 2329, 98460, 6123, 45838, '10.0000', '4.6000', '4.6000', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104331, '2022-07-30', 2699, 98461, 6123, NULL, '2.0000', '3.0000', '3.0000', '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 (104332, '2022-07-30', 7316, 98462, 6123, 57459, '2.0000', '0.9231', '0.9231', '1.3000', '1.3000', '37.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104333, '2022-07-30', 7657, 98463, 6123, 59141, '1.0000', '16.6528', '16.6528', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104334, '2022-07-30', 7412, 98464, 6123, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104335, '2022-07-30', 7509, 98465, 6123, 60146, '1.0000', '9.0351', '9.0351', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104336, '2022-07-30', 7881, 98466, 6123, 57456, '1.0000', '-16.9095', '-16.9095', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104337, '2022-07-30', 2104, 98467, 6123, NULL, '3.0000', '0.2000', '0.2000', '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 (104338, '2022-07-30', 8953, 98468, 6123, 44472, '1.0000', '18.0000', '18.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 312);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104339, '2022-07-30', 8124, 98469, 6123, 53614, '1.0000', '16.2500', '16.2500', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104340, '2022-07-30', 7768, 98470, 6123, NULL, '1.0000', '12.1540', '12.1540', '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 (104341, '2022-07-30', 7954, 98471, 6123, NULL, '8.0000', '7039.4904', '7039.4904', '4.0000', '4.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 (104342, '2022-07-30', 2284, 98472, 6123, 60100, '1.0000', '1.5246', '1.5246', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104343, '2022-07-30', 7880, 98473, 6123, NULL, '1.0000', '1.0000', '1.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 (104344, '2022-07-30', 7429, 98474, 6123, 46650, '1.0000', '3.8156', '3.8156', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104345, '2022-07-30', 7612, 98475, 6123, 50635, '1.0000', '2.3846', '2.3846', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104346, '2022-07-30', 8077, 98476, 6123, NULL, '1.0000', '4.9986', '4.9986', '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 (104347, '2022-07-30', 7872, 98477, 6123, 59403, '1.0000', '-2180.3597', '-2180.3597', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104348, '2022-07-30', 7382, 98478, 6123, 59193, '1.0000', '8.4288', '8.4288', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104349, '2022-07-30', 7526, 98479, 6123, NULL, '1.0000', '36.8575', '36.8575', '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 (104350, '2022-07-30', 7641, 98480, 6124, NULL, '1.0000', '1.9000', '1.9000', '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 (104351, '2022-07-30', 2738, 98481, 6124, 56428, '1.0000', '9.2000', '9.2000', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104352, '2022-07-30', 9482, 98482, 6124, 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 (104353, '2022-07-30', 8717, 98483, 6124, NULL, '1.0000', '4.7000', '4.7000', '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 (104354, '2022-07-30', 2058, 98484, 6124, NULL, '1.0000', '10.0000', '10.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 (104355, '2022-07-30', 7324, 98485, 6124, NULL, '2.0000', '5.4813', '5.4813', '8.5000', '8.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 (104356, '2022-07-30', 1670, 98486, 6124, NULL, '1.0000', '-32.2503', '-32.2503', '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 (104357, '2022-07-30', 2283, 98487, 6124, 58254, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104358, '2022-07-30', 7638, 98488, 6124, NULL, '1.0000', '12.0000', '12.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 (104359, '2022-07-30', 1501, 98489, 6124, NULL, '1.0000', '0.6299', '0.6299', '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 (104360, '2022-07-30', 2384, 98490, 6124, NULL, '1.0000', '-1.7022', '-1.7022', '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 (104361, '2022-07-30', 7411, 98491, 6124, NULL, '1.0000', '1.2819', '1.2819', '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 (104362, '2022-07-30', 1904, 98492, 6124, 59888, '1.0000', '45.2950', '45.2950', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104363, '2022-07-30', 2105, 98493, 6124, 54575, '1.0000', '2.4149', '2.4149', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104364, '2022-07-30', 7785, 98494, 6124, 58235, '1.0000', '3.9000', '3.9000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104365, '2022-07-30', 2085, 98495, 6124, NULL, '2.0000', '3.9526', '3.9526', '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 (104366, '2022-07-30', 8591, 98496, 6124, NULL, '1.0000', '1.5000', '1.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 (104367, '2022-07-30', 2643, 98497, 6124, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104368, '2022-07-30', 2237, 98498, 6124, 57669, '2.0000', '15.5072', '15.5072', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104369, '2022-07-30', 1855, 98499, 6124, NULL, '1.0000', '1.4615', '1.4615', '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 (104370, '2022-07-30', 1590, 98500, 6124, 50113, '3.0000', '2.2860', '2.2860', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104371, '2022-07-30', 9762, 98501, 6124, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104372, '2022-07-30', 2105, 98502, 6124, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104373, '2022-07-30', 8208, 98503, 6124, NULL, '1.0000', '47.9541', '47.9541', '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 (104374, '2022-07-30', 9762, 98504, 6124, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104375, '2022-07-30', 8017, 98505, 6124, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104376, '2022-07-30', 9108, 98506, 6124, NULL, '1.0000', '3.4000', '3.4000', '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 (104377, '2022-07-30', 2250, 98507, 6124, 59886, '1.0000', '9.0177', '9.0177', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104378, '2022-07-30', 1978, 98508, 6124, 57131, '1.0000', '15.5000', '15.5000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104379, '2022-07-30', 1303, 98509, 6124, 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 (104380, '2022-07-30', 8677, 98510, 6124, NULL, '2.0000', '630.6244', '630.6244', '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 (104381, '2022-07-30', 2105, 98511, 6124, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104382, '2022-07-30', 1867, 98512, 6124, 59841, '1.0000', '10.6181', '10.6181', '18.5000', '18.5000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104383, '2022-07-30', 1337, 98513, 6124, 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 (104384, '2022-07-30', 2384, 98514, 6124, NULL, '1.0000', '-1.7022', '-1.7022', '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 (104385, '2022-07-30', 8878, 98515, 6124, NULL, '1.0000', '6.0509', '6.0509', '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 (104386, '2022-07-30', 7411, 98516, 6124, NULL, '1.0000', '1.2819', '1.2819', '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 (104387, '2022-07-30', 2327, 98517, 6124, 58157, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104388, '2022-07-30', 7323, 98518, 6124, 57672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104389, '2022-07-30', 2100, 98519, 6124, NULL, '1.0000', '0.4608', '0.4608', '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 (104390, '2022-07-30', 1621, 98520, 6124, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104391, '2022-07-30', 2592, 98521, 6124, 54893, '1.0000', '13.8100', '13.8100', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104392, '2022-07-30', 7398, 98522, 6124, NULL, '1.0000', '143.5000', '143.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 (104393, '2022-07-30', 2079, 98523, 6124, 55542, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104394, '2022-07-30', 9482, 98524, 6124, 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 (104395, '2022-07-30', 9290, 98525, 6124, NULL, '1.0000', '15.2700', '15.2700', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104396, '2022-07-30', 7339, 98526, 6124, NULL, '1.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104397, '2022-07-30', 9747, 98527, 6124, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104398, '2022-07-30', 1340, 98528, 6124, 58179, '1.0000', '3.6001', '3.6001', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104399, '2022-07-30', 2100, 98529, 6124, NULL, '1.0000', '0.4608', '0.4608', '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 (104400, '2022-07-30', 9503, 98530, 6124, NULL, '3.0000', '24.1775', '24.1775', '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 (104401, '2022-07-30', 2169, 98531, 6124, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '104.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104402, '2022-07-30', 9734, 98532, 6124, 59596, '1.0000', '0.7089', '0.7089', '0.7000', '0.7000', '10.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104403, '2022-07-30', 1904, 98533, 6124, 59888, '1.0000', '45.2950', '45.2950', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104404, '2022-07-30', 9747, 98534, 6124, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104405, '2022-07-30', 1812, 98535, 6124, 59911, '2.0000', '9.3448', '9.3448', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104406, '2022-07-30', 8878, 98536, 6124, NULL, '1.0000', '6.0509', '6.0509', '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 (104407, '2022-07-30', 2315, 98537, 6124, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104408, '2022-07-30', 7926, 98538, 6124, NULL, '1.0000', '5.1333', '5.1333', '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 (104409, '2022-07-30', 8677, 98539, 6124, NULL, '2.0000', '630.6244', '630.6244', '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 (104410, '2022-07-30', 7411, 98540, 6124, NULL, '1.0000', '1.2819', '1.2819', '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 (104411, '2022-07-30', 2169, 98541, 6124, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '104.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104412, '2022-07-30', 1307, 98542, 6124, NULL, '1.0000', '-59.9897', '-59.9897', '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 (104413, '2022-07-30', 1871, 98543, 6125, NULL, '21.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104414, '2022-07-30', 7385, 98544, 6126, 59399, '5.0000', '6.5272', '6.5272', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104415, '2022-07-30', 7675, 98545, 6126, NULL, '1.0000', '-21.9809', '-21.9809', '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 (104416, '2022-07-30', 9791, 98546, 6126, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '99.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104417, '2022-07-30', 2287, 98547, 6126, 59355, '2.0000', '3.1700', '3.1700', '4.5000', '4.5000', '28.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104418, '2022-07-30', 8145, 98548, 6126, 56186, '1.0000', '-0.6362', '-0.6362', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104419, '2022-07-30', 7704, 98549, 6126, NULL, '2.0000', '-1.5625', '-1.5625', '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 (104420, '2022-07-30', 7819, 98550, 6126, 59369, '1.0000', '12.7933', '12.7933', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104421, '2022-07-30', 9891, 98551, 6126, 55109, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104422, '2022-07-30', 8061, 98552, 6126, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104423, '2022-07-30', 7591, 98553, 6126, 57426, '2.0000', '1.5000', '1.5000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104424, '2022-07-30', 8163, 98554, 6126, 59145, '1.0000', '26.9166', '26.9166', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104425, '2022-07-30', 7524, 98555, 6126, 60133, '1.0000', '4.7209', '4.7209', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104426, '2022-07-30', 1947, 98556, 6126, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104427, '2022-07-30', 7674, 98557, 6126, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104428, '2022-07-30', 8077, 98558, 6126, NULL, '1.0000', '4.9986', '4.9986', '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 (104429, '2022-07-30', 7872, 98559, 6126, 59403, '1.0000', '-2180.3597', '-2180.3597', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104430, '2022-07-30', 7612, 98560, 6126, NULL, '1.0000', '2.3846', '2.3846', '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 (104431, '2022-07-30', 7382, 98561, 6126, 59193, '1.0000', '8.4288', '8.4288', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104432, '2022-07-30', 9886, 98562, 6126, 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 (104433, '2022-07-30', 7444, 98563, 6126, 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 (104434, '2022-07-30', 7860, 98564, 6126, 59168, '1.0000', '24.0624', '24.0624', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104435, '2022-07-30', 8097, 98565, 6126, NULL, '3.0000', '5.2765', '5.2765', '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 (104436, '2022-07-30', 2241, 98566, 6126, 59109, '1.0000', '6.5470', '6.5470', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104437, '2022-07-30', 9797, 98567, 6126, 50292, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104438, '2022-07-30', 7803, 98568, 6126, NULL, '1.0000', '1.8200', '1.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 (104439, '2022-07-30', 7825, 98569, 6126, NULL, '1.0000', '-7.5140', '-7.5140', '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 (104440, '2022-07-30', 7989, 98570, 6126, NULL, '1.0000', '-35.9089', '-35.9089', '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 (104441, '2022-07-30', 7411, 98571, 6126, 60143, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104442, '2022-07-30', 9560, 98572, 6126, 51065, '1.0000', '15.0000', '15.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104443, '2022-07-30', 7638, 98573, 6126, 59089, '1.0000', '8.5488', '8.5488', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104444, '2022-07-30', 9750, 98574, 6127, NULL, '1.0000', '3.1493', '3.1493', '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 (104445, '2022-07-30', 9734, 98575, 6127, 59596, '2.0000', '0.7089', '0.7089', '0.7000', '0.7000', '8.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104446, '2022-07-30', 9828, 98576, 6127, NULL, '4.0000', '2.9100', '2.9100', '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 (104447, '2022-07-30', 1781, 98577, 6127, 57775, '1.0000', '5.8614', '5.8614', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104448, '2022-07-30', 1839, 98578, 6127, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (104449, '2022-07-30', 1666, 98579, 6127, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104450, '2022-07-30', 7641, 98580, 6127, NULL, '1.0000', '1.9000', '1.9000', '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 (104451, '2022-07-30', 2169, 98581, 6127, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104452, '2022-07-30', 1912, 98582, 6127, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104453, '2022-07-30', 2088, 98583, 6127, 59892, '1.0000', '2.0426', '2.0426', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104454, '2022-07-30', 2821, 98584, 6127, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104455, '2022-07-30', 7583, 98585, 6127, NULL, '2.0000', '4.0000', '4.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 (104456, '2022-07-30', 9514, 98586, 6127, 57107, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104457, '2022-07-30', 2431, 98587, 6127, NULL, '2.0000', '2.2000', '2.2000', '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 (104458, '2022-07-30', 3024, 98588, 6127, 59699, '1.0000', '6.7023', '6.7023', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104459, '2022-07-30', 8362, 98589, 6127, NULL, '2.0000', '4.1000', '4.1000', '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 (104460, '2022-07-30', 9832, 98590, 6127, 59666, '1.0000', '1.1069', '1.1069', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104461, '2022-07-30', 8746, 98591, 6127, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104462, '2022-07-30', 9482, 98592, 6127, NULL, '2.0000', '0.5000', '0.5000', '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 (104463, '2022-07-30', 2262, 98593, 6127, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104464, '2022-07-30', 8878, 98594, 6127, NULL, '1.0000', '6.0509', '6.0509', '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 (104465, '2022-07-30', 7411, 98595, 6127, NULL, '1.0000', '1.2819', '1.2819', '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 (104466, '2022-07-30', 9695, 98596, 6127, 59668, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104467, '2022-07-30', 1971, 98597, 6127, 57130, '1.0000', '15.5000', '15.5000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104468, '2022-07-30', 9634, 98598, 6127, NULL, '3.0000', '4.4667', '4.4667', '7.0000', '7.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 (104469, '2022-07-30', 9204, 98599, 6127, NULL, '1.0000', '14.1514', '14.1514', '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 (104470, '2022-07-30', 9891, 98600, 6127, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '23.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104471, '2022-07-30', 1884, 98601, 6127, NULL, '1.0000', '17.4104', '17.4104', '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 (104472, '2022-07-30', 8596, 98602, 6128, NULL, '1.0000', '39.8982', '39.8982', '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 (104473, '2022-07-30', 9293, 98603, 6128, 45295, '10.0000', '0.2188', '0.2188', '1.8000', '1.8000', '8.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104474, '2022-07-30', 9729, 98604, 6128, 60148, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104475, '2022-07-30', 7651, 98605, 6128, NULL, '1.0000', '2.7641', '2.7641', '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 (104476, '2022-07-30', 7708, 98606, 6128, 60126, '1.0000', '8.3018', '8.3018', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104477, '2022-07-30', 2315, 98607, 6129, 2735, '-589.0000', '0.3300', '0.3300', '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 (104478, '2022-07-30', 2315, 98607, 6129, NULL, '590.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-590.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104479, '2022-07-30', 2094, 98608, 6129, 1036, '1.0000', '2.9000', '2.9000', '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 (104480, '2022-07-30', 7411, 98609, 6129, NULL, '1.0000', '1.3500', '1.3500', '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 (104481, '2022-07-30', 9695, 98610, 6129, NULL, '1.0000', '4.5000', '4.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 (104482, '2022-07-30', 9729, 98611, 6129, NULL, '1.0000', '0.6200', '0.6200', '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 (104483, '2022-07-30', 1411, 98612, 6129, NULL, '1.0000', '25.9000', '25.9000', '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 (104484, '2022-07-30', 8208, 98613, 6129, NULL, '2.0000', '33.0000', '33.0000', '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 (104485, '2022-07-30', 7672, 98614, 6129, NULL, '1.0000', '1.0200', '1.0200', '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 (104486, '2022-07-30', 2277, 98615, 6129, 2937, '-71.0000', '0.7800', '0.7800', '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 (104487, '2022-07-30', 2277, 98615, 6129, NULL, '73.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104488, '2022-07-30', 8933, 98616, 6129, NULL, '1.0000', '7.5000', '7.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 (104489, '2022-07-30', 1867, 98617, 6129, NULL, '1.0000', '1.0500', '1.0500', '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 (104490, '2022-07-30', 2270, 98618, 6129, 2930, '-18.0000', '0.9880', '0.9880', '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 (104491, '2022-07-30', 2270, 98618, 6129, NULL, '19.0000', '0.9880', '0.9880', '7.0000', '7.0000', '-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 (104492, '2022-07-30', 1674, 98619, 6129, NULL, '1.0000', '3.6000', '3.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 (104493, '2022-07-30', 1851, 98620, 6129, 8627, '-17.0000', '10.6568', '10.6568', '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 (104494, '2022-07-30', 1851, 98620, 6129, NULL, '18.0000', '10.6568', '10.6568', '20.0000', '20.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 (104495, '2022-07-30', 2062, 98621, 6129, 2165, '-8.0000', '5.7540', '5.7540', '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 (104496, '2022-07-30', 2062, 98621, 6129, NULL, '9.0000', '5.7540', '5.7540', '15.0000', '15.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 (104497, '2022-07-30', 8444, 98622, 6129, 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 (104498, '2022-07-30', 1812, 98623, 6129, 8224, '-108.0000', '7.8900', '7.8900', '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 (104499, '2022-07-30', 1812, 98623, 6129, NULL, '109.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-109.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104500, '2022-07-30', 9794, 98624, 6129, NULL, '1.0000', '1.0800', '1.0800', '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 (104501, '2022-07-30', 1699, 98625, 6129, 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 (104502, '2022-07-30', 2821, 98626, 6129, 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 (104503, '2022-07-30', 2169, 98627, 6129, 10737, '-191.0000', '3.8397', '3.8397', '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 (104504, '2022-07-30', 2169, 98627, 6129, NULL, '192.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-192.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104505, '2022-07-30', 2315, 98628, 6129, 2735, '-589.0000', '0.3300', '0.3300', '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 (104506, '2022-07-30', 2315, 98628, 6129, NULL, '590.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-590.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104507, '2022-07-30', 2691, 98629, 6129, 12637, '-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 (104508, '2022-07-30', 2691, 98629, 6129, NULL, '2.0000', '6.0000', '6.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 (104509, '2022-07-30', 9468, 98630, 6129, NULL, '1.0000', '17.5000', '17.5000', '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 (104510, '2022-07-30', 2486, 98631, 6129, 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 (104511, '2022-07-30', 1637, 98632, 6129, 3210, '-11.0000', '10.2000', '10.2000', '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 (104512, '2022-07-30', 1637, 98632, 6129, NULL, '12.0000', '10.2000', '10.2000', '20.0000', '20.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 (104513, '2022-07-30', 2643, 98633, 6129, NULL, '1.0000', '0.8700', '0.8700', '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 (104514, '2022-07-30', 2302, 98634, 6129, 2963, '-56.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 (104515, '2022-07-30', 2302, 98634, 6129, NULL, '57.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104516, '2022-07-30', 1425, 98635, 6129, NULL, '1.0000', '6.4405', '6.4405', '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 (104517, '2022-07-30', 2405, 98636, 6129, 4452, '-21.0000', '1.2000', '1.2000', '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 (104518, '2022-07-30', 2405, 98636, 6129, NULL, '25.0000', '1.2000', '1.2000', '1.8000', '1.8000', '-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 (104519, '2022-07-30', 2893, 98637, 6129, 18242, '-18.0000', '6.0000', '6.0000', '9.5000', '9.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 (104520, '2022-07-30', 2893, 98637, 6129, NULL, '19.0000', '6.0000', '6.0000', '9.5000', '9.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 (104521, '2022-07-30', 9775, 98638, 6129, NULL, '1.0000', '7.9000', '7.9000', '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 (104522, '2022-07-30', 1446, 98639, 6129, 5566, '-2.0000', '90.0000', '90.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 (104523, '2022-07-30', 1446, 98639, 6129, NULL, '3.0000', '90.0000', '90.0000', '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 (104524, '2022-07-30', 2821, 98640, 6129, 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 (104525, '2022-07-30', 9762, 98641, 6129, 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 (104526, '2022-07-30', 7411, 98642, 6129, NULL, '1.0000', '1.3500', '1.3500', '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 (104527, '2022-07-30', 2277, 98643, 6129, 2937, '-71.0000', '0.7800', '0.7800', '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 (104528, '2022-07-30', 2277, 98643, 6129, NULL, '73.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104529, '2022-07-30', 1912, 98644, 6129, 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 (104530, '2022-07-30', 7411, 98645, 6129, NULL, '1.0000', '1.3500', '1.3500', '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 (104531, '2022-07-30', 2543, 98646, 6129, 6304, '-1.0000', '2.0000', '2.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 (104532, '2022-07-30', 2543, 98646, 6129, NULL, '2.0000', '2.0000', '2.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 (104533, '2022-07-30', 7805, 98647, 6129, NULL, '1.0000', '2.1800', '2.1800', '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 (104534, '2022-07-30', 2858, 98648, 6129, 17772, '-112.0000', '1.0000', '1.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 (104535, '2022-07-30', 2858, 98648, 6129, NULL, '114.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104536, '2022-07-30', 3064, 98649, 6129, 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 (104537, '2022-07-30', 3001, 98650, 6130, 37759, '1.0000', '2.5621', '2.5621', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104538, '2022-07-30', 1646, 98651, 6130, 57673, '1.0000', '5.6966', '5.6966', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104539, '2022-07-30', 1627, 98652, 6130, 54569, '1.0000', '49.2200', '49.2200', '67.0000', '67.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104540, '2022-07-30', 7756, 98653, 6130, NULL, '1.0000', '2.5000', '2.5000', '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 (104541, '2022-07-30', 7743, 98654, 6130, NULL, '1.0000', '7.3900', '7.3900', '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 (104542, '2022-07-30', 1912, 98655, 6130, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104543, '2022-07-30', 9747, 98656, 6130, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104544, '2022-07-30', 9750, 98657, 6130, NULL, '1.0000', '3.1493', '3.1493', '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 (104545, '2022-07-31', 9734, 98658, 6131, 59596, '1.0000', '0.7089', '0.7089', '0.7000', '0.7000', '7.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104546, '2022-07-31', 9834, 98659, 6131, NULL, '2.0000', '1.4500', '1.4500', '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 (104547, '2022-07-31', 2089, 98660, 6131, 58158, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104548, '2022-07-31', 9832, 98661, 6131, 59666, '1.0000', '1.1069', '1.1069', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104549, '2022-07-31', 9734, 98662, 6131, 59596, '2.0000', '0.7089', '0.7089', '0.7000', '0.7000', '6.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104550, '2022-07-31', 1346, 98663, 6131, 55603, '1.0000', '1.6774', '1.6774', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104551, '2022-07-31', 2384, 98664, 6131, NULL, '1.0000', '-1.7022', '-1.7022', '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 (104552, '2022-07-31', 1499, 98665, 6131, 57679, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104553, '2022-07-31', 7756, 98666, 6131, NULL, '1.0000', '2.5000', '2.5000', '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 (104554, '2022-07-31', 9748, 98667, 6131, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104555, '2022-07-31', 8677, 98668, 6131, NULL, '2.0000', '630.6244', '630.6244', '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 (104556, '2022-07-31', 2228, 98669, 6131, 59702, '1.0000', '33.0000', '33.0000', '37.0000', '37.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104557, '2022-07-31', 1825, 98670, 6131, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104558, '2022-07-31', 1846, 98671, 6131, NULL, '1.0000', '478.9750', '478.9750', '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 (104559, '2022-07-31', 9734, 98672, 6131, 59596, '4.0000', '0.7089', '0.7089', '0.7000', '0.7000', '4.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104560, '2022-07-31', 9891, 98673, 6131, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '22.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104561, '2022-07-31', 2345, 98674, 6131, 56377, '1.0000', '7.7764', '7.7764', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104562, '2022-07-31', 2948, 98675, 6131, 59842, '1.0000', '1.0119', '1.0119', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104563, '2022-07-31', 8745, 98676, 6131, NULL, '1.0000', '13.9869', '13.9869', '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 (104564, '2022-07-31', 9828, 98677, 6131, NULL, '1.0000', '2.9100', '2.9100', '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 (104565, '2022-07-31', 2221, 98678, 6131, NULL, '1.0000', '2.3805', '2.3805', '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 (104566, '2022-07-31', 7756, 98679, 6131, NULL, '1.0000', '2.5000', '2.5000', '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 (104567, '2022-07-31', 1504, 98680, 6131, 58181, '10.0000', '2.0486', '2.0486', '2.8000', '2.8000', '50.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104568, '2022-07-31', 8133, 98681, 6132, NULL, '1.0000', '-53034.0892', '-53034.0892', '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 (104569, '2022-07-31', 2275, 98682, 6132, 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 (104570, '2022-07-31', 7944, 98683, 6132, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104571, '2022-07-31', 2167, 98684, 6132, NULL, '1.0000', '0.6663', '0.6663', '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 (104572, '2022-07-31', 9821, 98685, 6132, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104573, '2022-07-31', 1863, 98686, 6132, 59906, '1.0000', '1.4865', '1.4865', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104574, '2022-07-31', 9943, 98687, 6132, 59857, '1.0000', '16.8000', '16.8000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104575, '2022-07-31', 7323, 98688, 6132, 57672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104576, '2022-07-31', 9775, 98689, 6132, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104577, '2022-07-31', 2275, 98690, 6132, 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 (104578, '2022-07-31', 2354, 98691, 6132, NULL, '1.0000', '28.4264', '28.4264', '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 (104579, '2022-07-31', 9831, 98692, 6132, 59665, '2.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104580, '2022-07-31', 7412, 98693, 6133, 59161, '2.0000', '2.1381', '2.1381', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104581, '2022-07-31', 7514, 98694, 6133, NULL, '2.0000', '-19420.5252', '-19420.5252', '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 (104582, '2022-07-31', 7642, 98695, 6133, 59333, '1.0000', '5.9844', '5.9844', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104583, '2022-07-31', 7411, 98696, 6133, 60143, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104584, '2022-07-31', 7473, 98697, 6133, 59361, '3.0000', '0.5887', '0.5887', '0.7000', '0.7000', '43.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104585, '2022-07-31', 7641, 98698, 6133, 60128, '2.0000', '7.0908', '7.0908', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104586, '2022-07-31', 8433, 98699, 6133, 48393, '1.0000', '33.0000', '33.0000', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104587, '2022-07-31', 7911, 98700, 6133, 59318, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104588, '2022-07-31', 9534, 98701, 6133, 54714, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104589, '2022-07-31', 7514, 98702, 6133, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (104590, '2022-07-31', 7509, 98703, 6133, 60146, '1.0000', '9.0351', '9.0351', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104591, '2022-07-31', 8721, 98704, 6133, 60182, '1.0000', '25.3333', '25.3333', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104592, '2022-07-31', 9269, 98705, 6133, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104593, '2022-07-31', 8053, 98706, 6133, 56579, '4.0000', '1.1052', '1.1052', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104594, '2022-07-31', 8061, 98707, 6133, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104595, '2022-07-31', 9271, 98708, 6133, 56566, '2.0000', '1.8173', '1.8173', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104596, '2022-07-31', 9463, 98709, 6133, 59353, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104597, '2022-07-31', 8308, 98710, 6133, NULL, '1.0000', '22.3258', '22.3258', '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 (104598, '2022-07-31', 9272, 98711, 6133, NULL, '1.0000', '3.1000', '3.1000', '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 (104599, '2022-07-31', 7457, 98712, 6133, 60134, '2.0000', '4.6990', '4.6990', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104600, '2022-07-31', 2315, 98713, 6134, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104601, '2022-07-31', 9734, 98714, 6134, 59596, '1.0000', '0.7089', '0.7089', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104602, '2022-07-31', 9734, 98714, 6134, NULL, '2.0000', '0.7089', '0.7089', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104603, '2022-07-31', 1580, 98715, 6134, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104604, '2022-07-31', 2295, 98716, 6134, 54913, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104605, '2022-07-31', 1493, 98717, 6134, NULL, '1.0000', '-174.0400', '-174.0400', '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 (104606, '2022-07-31', 1340, 98718, 6134, 54554, '1.0000', '3.6001', '3.6001', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104607, '2022-07-31', 2169, 98719, 6134, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '101.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104608, '2022-07-31', 1837, 98720, 6134, 59893, '1.0000', '1.6544', '1.6544', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104609, '2022-07-31', 2643, 98721, 6134, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104610, '2022-07-31', 2242, 98722, 6134, 56409, '1.0000', '1.2664', '1.2664', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104611, '2022-07-31', 2068, 98723, 6134, NULL, '1.0000', '14.6943', '14.6943', '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 (104612, '2022-07-31', 7586, 98724, 6134, NULL, '1.0000', '-3.1500', '-3.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 (104613, '2022-07-31', 9939, 98725, 6135, 58054, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104614, '2022-07-31', 8547, 98726, 6136, 56550, '1.0000', '2.5128', '2.5128', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104615, '2022-07-31', 8000, 98727, 6136, NULL, '1.0000', '1040.0222', '1040.0222', '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 (104616, '2022-07-31', 1841, 98728, 6136, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104617, '2022-07-31', 2315, 98729, 6136, 60129, '1.0000', '0.7586', '0.7586', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104618, '2022-07-31', 7411, 98730, 6136, 60143, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104619, '2022-07-31', 2295, 98731, 6136, NULL, '3.0000', '-2.3086', '-2.3086', '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 (104620, '2022-07-31', 2299, 98732, 6136, 52742, '1.0000', '6.2355', '6.2355', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104621, '2022-07-31', 1338, 98733, 6137, 16502, '-15.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 (104622, '2022-07-31', 1338, 98733, 6137, NULL, '16.0000', '4.0000', '4.0000', '6.5000', '6.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 (104623, '2022-07-31', 2068, 98734, 6138, NULL, '1.0000', '14.6943', '14.6943', '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 (104624, '2022-07-31', 2295, 98735, 6138, 54913, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104625, '2022-07-31', 1637, 98736, 6138, NULL, '1.0000', '238.7168', '238.7168', '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 (104626, '2022-07-31', 9960, 98737, 6138, NULL, '2.0000', '3.3000', '3.3000', '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 (104627, '2022-07-31', 1841, 98738, 6138, NULL, '1.0000', '0.7630', '0.7630', '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 (104628, '2022-07-31', 1840, 98739, 6138, NULL, '1.0000', '0.2400', '0.2400', '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 (104629, '2022-07-31', 1307, 98740, 6138, NULL, '1.0000', '-59.9897', '-59.9897', '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 (104630, '2022-07-31', 9736, 98741, 6138, 59890, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104631, '2022-07-31', 8677, 98742, 6138, NULL, '2.0000', '630.6244', '630.6244', '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 (104632, '2022-07-31', 7483, 98743, 6138, 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 (104633, '2022-07-31', 7564, 98744, 6138, 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 (104634, '2022-07-31', 9482, 98745, 6138, NULL, '2.0000', '0.5000', '0.5000', '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 (104635, '2022-07-31', 2271, 98746, 6138, NULL, '1.0000', '12.0000', '12.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 (104636, '2022-07-31', 9891, 98747, 6138, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '21.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104637, '2022-07-31', 2821, 98748, 6138, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104638, '2022-07-31', 9831, 98749, 6138, 59665, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104639, '2022-07-31', 2169, 98750, 6138, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '100.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104640, '2022-07-31', 7880, 98751, 6138, NULL, '1.0000', '-6.4250', '-6.4250', '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 (104641, '2022-07-31', 7483, 98752, 6138, NULL, '1.0000', '0.4200', '0.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 (104642, '2022-07-31', 2545, 98753, 6138, 59905, '1.0000', '8.6211', '8.6211', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104643, '2022-07-31', 1409, 98754, 6138, 54544, '1.0000', '13.1111', '13.1111', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104644, '2022-07-31', 9695, 98755, 6138, 59668, '2.0000', '5.3447', '5.3447', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104645, '2022-07-31', 7741, 98756, 6138, NULL, '1.0000', '-85.1907', '-85.1907', '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 (104646, '2022-07-31', 1884, 98757, 6138, NULL, '1.0000', '17.4104', '17.4104', '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 (104647, '2022-07-31', 7715, 98758, 6138, NULL, '2.0000', '1.8900', '1.8900', '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 (104648, '2022-07-31', 2506, 98759, 6138, NULL, '1.0000', '-9.4377', '-9.4377', '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 (104649, '2022-07-31', 7974, 98760, 6138, NULL, '2.0000', '26.9000', '26.9000', '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 (104650, '2022-07-31', 2250, 98761, 6138, 59886, '1.0000', '9.0177', '9.0177', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104651, '2022-07-31', 1425, 98762, 6138, NULL, '1.0000', '324.2732', '324.2732', '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 (104652, '2022-07-31', 2893, 98763, 6138, NULL, '1.0000', '6.4400', '6.4400', '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 (104653, '2022-07-31', 1667, 98764, 6138, 57712, '2.0000', '9.6099', '9.6099', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104654, '2022-07-31', 3044, 98765, 6138, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '15.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 (104655, '2022-07-31', 9942, 98766, 6138, 59856, '1.0000', '13.1000', '13.1000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104656, '2022-07-31', 9634, 98767, 6138, NULL, '3.0000', '4.4667', '4.4667', '7.0000', '7.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 (104657, '2022-07-31', 2068, 98768, 6138, NULL, '1.0000', '14.6943', '14.6943', '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 (104658, '2022-07-31', 2986, 98769, 6138, 59900, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104659, '2022-07-31', 1905, 98770, 6138, NULL, '1.0000', '0.5203', '0.5203', '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 (104660, '2022-07-31', 2169, 98771, 6138, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '100.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104661, '2022-07-31', 9750, 98772, 6138, NULL, '2.0000', '3.1493', '3.1493', '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 (104662, '2022-07-31', 7713, 98773, 6138, 59895, '4.0000', '0.1598', '0.1598', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104663, '2022-07-31', 7954, 98774, 6138, 57084, '1.0000', '2.4470', '2.4470', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104664, '2022-07-31', 2821, 98775, 6138, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104665, '2022-07-31', 1499, 98776, 6138, 57679, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104666, '2022-07-31', 2061, 98777, 6138, NULL, '1.0000', '4.3037', '4.3037', '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 (104667, '2022-07-31', 7411, 98778, 6138, NULL, '1.0000', '1.2819', '1.2819', '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 (104668, '2022-07-31', 2289, 98779, 6138, NULL, '2.0000', '0.3611', '0.3611', '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 (104669, '2022-07-31', 7781, 98780, 6139, NULL, '2.0000', '4.2500', '4.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 (104670, '2022-07-31', 2034, 98781, 6139, 6387, '-3.0000', '6.0000', '6.0000', '9.5000', '9.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 (104671, '2022-07-31', 2034, 98781, 6139, NULL, '4.0000', '6.0000', '6.0000', '9.5000', '9.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 (104672, '2022-07-31', 7716, 98782, 6139, NULL, '2.0000', '0.0000', '0.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 (104673, '2022-07-31', 7444, 98783, 6139, 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 (104674, '2022-07-31', 7658, 98784, 6139, NULL, '1.0000', '2.0200', '2.0200', '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 (104675, '2022-07-31', 9834, 98785, 6139, NULL, '1.0000', '1.4500', '1.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 (104676, '2022-07-31', 7473, 98786, 6139, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104677, '2022-07-31', 7703, 98787, 6139, NULL, '1.0000', '22.9900', '22.9900', '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 (104678, '2022-07-31', 7588, 98788, 6139, NULL, '1.0000', '6.9000', '6.9000', '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 (104679, '2022-07-31', 7674, 98789, 6139, NULL, '2.0000', '1.3000', '1.3000', '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 (104680, '2022-07-31', 7730, 98790, 6139, NULL, '1.0000', '0.1000', '0.1000', '0.2000', '0.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 (104681, '2022-07-31', 8463, 98791, 6139, NULL, '1.0000', '18.0000', '18.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 (104682, '2022-07-31', 9742, 98792, 6139, 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 (104683, '2022-07-31', 8395, 98793, 6139, NULL, '1.0000', '0.9700', '0.9700', '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 (104684, '2022-07-31', 2315, 98794, 6139, 2735, '-591.0000', '0.3300', '0.3300', '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 (104685, '2022-07-31', 2315, 98794, 6139, NULL, '593.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-593.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104686, '2022-07-31', 7637, 98795, 6139, NULL, '1.0000', '7.3300', '7.3300', '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 (104687, '2022-07-31', 7963, 98796, 6139, NULL, '1.0000', '14.7000', '14.7000', '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 (104688, '2022-07-31', 9953, 98797, 6139, NULL, '1.0000', '8.9000', '8.9000', '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 (104689, '2022-07-31', 8068, 98798, 6139, NULL, '1.0000', '8.7900', '8.7900', '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 (104690, '2022-07-31', 1916, 98799, 6139, 5445, '-9.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104691, '2022-07-31', 1916, 98799, 6139, NULL, '10.0000', '8.2300', '8.2300', '14.0000', '14.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 (104692, '2022-07-31', 8415, 98800, 6139, NULL, '2.0000', '3.2500', '3.2500', '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 (104693, '2022-07-31', 9275, 98801, 6139, NULL, '1.0000', '6.3000', '6.3000', '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 (104694, '2022-07-31', 1665, 98802, 6139, 3235, '-147.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 (104695, '2022-07-31', 1665, 98802, 6139, NULL, '148.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-148.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104696, '2022-07-31', 8746, 98803, 6139, NULL, '1.0000', '3.1500', '3.1500', '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 (104697, '2022-07-31', 2965, 98804, 6139, NULL, '1.0000', '5.0000', '5.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 (104698, '2022-07-31', 7339, 98805, 6139, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (104699, '2022-07-31', 9809, 98806, 6139, NULL, '1.0000', '5.7900', '5.7900', '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 (104700, '2022-07-31', 9329, 98807, 6139, NULL, '1.0000', '6.7000', '6.7000', '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 (104701, '2022-07-31', 7762, 98808, 6139, NULL, '1.0000', '1.5000', '1.5000', '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 (104702, '2022-07-31', 9160, 98809, 6139, NULL, '2.0000', '15.0000', '15.0000', '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 (104703, '2022-07-31', 7672, 98810, 6139, NULL, '1.0000', '1.0200', '1.0200', '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 (104704, '2022-07-31', 7411, 98811, 6139, NULL, '2.0000', '1.3500', '1.3500', '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 (104705, '2022-07-31', 9734, 98812, 6139, NULL, '5.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (104706, '2022-07-31', 1935, 98813, 6139, 5586, '-189.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 (104707, '2022-07-31', 1935, 98813, 6139, NULL, '190.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-190.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104708, '2022-07-31', 9974, 98814, 6139, 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 (104709, '2022-07-31', 9204, 98815, 6139, NULL, '1.0000', '8.1600', '8.1600', '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 (104710, '2022-07-31', 9536, 98816, 6139, NULL, '1.0000', '2.6500', '2.6500', '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 (104711, '2022-07-31', 8680, 98817, 6139, NULL, '1.0000', '2.0000', '2.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 (104712, '2022-07-31', 7584, 98818, 6139, NULL, '1.0000', '2.6000', '2.6000', '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 (104713, '2022-07-31', 1965, 98819, 6139, NULL, '1.0000', '17.2400', '17.2400', '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 (104714, '2022-07-31', 1841, 98820, 6139, NULL, '9.0000', '142.5780', '142.5780', '0.5000', '0.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 (104715, '2022-07-31', 7983, 98821, 6139, NULL, '1.0000', '5.9000', '5.9000', '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 (104716, '2022-07-31', 9791, 98822, 6139, 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 (104717, '2022-07-31', 7514, 98823, 6139, NULL, '1.0000', '2.2500', '2.2500', '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 (104718, '2022-07-31', 7334, 98824, 6139, NULL, '1.0000', '8.2300', '8.2300', '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 (104719, '2022-07-31', 7412, 98825, 6139, NULL, '2.0000', '1.5200', '1.5200', '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 (104720, '2022-07-31', 7711, 98826, 6139, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104721, '2022-07-31', 8596, 98827, 6139, 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 (104722, '2022-07-31', 7859, 98828, 6139, NULL, '1.0000', '12.6300', '12.6300', '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 (104723, '2022-07-31', 2295, 98829, 6139, 2954, '-52.0000', '0.9600', '0.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 (104724, '2022-07-31', 2295, 98829, 6139, NULL, '54.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104725, '2022-07-31', 8167, 98830, 6139, NULL, '1.0000', '16.2000', '16.2000', '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 (104726, '2022-07-31', 9100, 98831, 6139, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104727, '2022-07-31', 7641, 98832, 6139, NULL, '1.0000', '1.9000', '1.9000', '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 (104728, '2022-07-31', 1669, 98833, 6140, 57961, '2.0000', '17.9963', '17.9963', '14.0000', '14.0000', '26.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104729, '2022-07-31', 2898, 98834, 6140, 18353, '1.0000', '10.0000', '10.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 (104730, '2022-07-31', 9940, 98835, 6140, 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 (104731, '2022-07-31', 2487, 98836, 6140, NULL, '1.0000', '35.7143', '35.7143', '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 (104732, '2022-07-31', 1912, 98837, 6140, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104733, '2022-07-31', 7411, 98838, 6140, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104734, '2022-07-31', 2506, 98839, 6140, 60011, '1.0000', '4.3139', '4.3139', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104735, '2022-07-31', 1411, 98840, 6140, 60022, '1.0000', '25.9617', '25.9617', '35.0000', '35.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104736, '2022-07-31', 1999, 98841, 6140, 56347, '1.0000', '7.3337', '7.3337', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104737, '2022-07-31', 2102, 98842, 6140, 56976, '1.0000', '2.0737', '2.0737', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104738, '2022-07-31', 7482, 98843, 6140, NULL, '1.0000', '3.0500', '3.0500', '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 (104739, '2022-07-31', 1342, 98844, 6140, 58769, '1.0000', '9.1791', '9.1791', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104740, '2022-07-31', 1525, 98845, 6140, 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 (104741, '2022-07-31', 1715, 98846, 6140, 60012, '1.0000', '7.4167', '7.4167', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104742, '2022-07-31', 1839, 98847, 6140, 59989, '1.0000', '7.8877', '7.8877', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104743, '2022-07-31', 7411, 98848, 6140, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104744, '2022-07-31', 1307, 98849, 6140, 58787, '1.0000', '4.1753', '4.1753', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104745, '2022-07-31', 1383, 98850, 6140, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104746, '2022-07-31', 2135, 98851, 6140, NULL, '1.0000', '2.2504', '2.2504', '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 (104747, '2022-07-31', 1620, 98852, 6140, 57947, '1.0000', '2.2914', '2.2914', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104748, '2022-07-31', 7524, 98853, 6141, NULL, '1.0000', '11.9500', '11.9500', '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 (104749, '2022-07-31', 9909, 98854, 6141, 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 (104750, '2022-07-31', 1912, 98855, 6142, 37802, '2.0000', '0.6868', '0.6868', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104751, '2022-07-31', 2821, 98856, 6142, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104752, '2022-07-31', 9715, 98857, 6142, 58139, '1.0000', '10.1143', '10.1143', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104753, '2022-07-31', 1307, 98858, 6142, NULL, '1.0000', '-59.9897', '-59.9897', '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 (104754, '2022-07-31', 7819, 98859, 6142, NULL, '1.0000', '10.0999', '10.0999', '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 (104755, '2022-07-31', 7592, 98860, 6142, NULL, '1.0000', '8.6500', '8.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 (104756, '2022-07-31', 2315, 98861, 6142, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104757, '2022-07-31', 1499, 98862, 6142, 57679, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104758, '2022-07-31', 1499, 98862, 6142, 52148, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '8.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104759, '2022-07-31', 2680, 98863, 6143, 58823, '1.0000', '14.5933', '14.5933', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104760, '2022-07-31', 1394, 98864, 6143, 54990, '1.0000', '8.0658', '8.0658', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104761, '2022-07-31', 7411, 98865, 6143, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104762, '2022-07-31', 1425, 98866, 6143, 59959, '1.0000', '6.9322', '6.9322', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104763, '2022-07-31', 7881, 98867, 6143, NULL, '1.0000', '2.7500', '2.7500', '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 (104764, '2022-07-31', 2167, 98868, 6143, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104765, '2022-07-31', 1410, 98869, 6143, 60072, '4.0000', '2.9374', '2.9374', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104766, '2022-07-31', 1872, 98870, 6143, 60005, '1.0000', '10.6019', '10.6019', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104767, '2022-07-31', 1647, 98871, 6143, 59985, '1.0000', '5.8258', '5.8258', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104768, '2022-07-31', 8900, 98872, 6143, NULL, '4.0000', '16.4000', '16.4000', '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 (104769, '2022-07-31', 9943, 98873, 6143, 60007, '1.0000', '11.3313', '11.3313', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104770, '2022-07-31', 7411, 98874, 6143, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104771, '2022-07-31', 9762, 98875, 6143, 57987, '2.0000', '2.4700', '2.4700', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104772, '2022-07-31', 1904, 98876, 6143, 59962, '2.0000', '19.3805', '19.3805', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104773, '2022-07-31', 7524, 98877, 6143, NULL, '1.0000', '11.9500', '11.9500', '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 (104774, '2022-07-31', 9740, 98878, 6143, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104775, '2022-07-31', 1602, 98879, 6143, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104776, '2022-07-31', 1339, 98880, 6143, 60024, '1.0000', '1.8897', '1.8897', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104777, '2022-07-31', 9740, 98881, 6143, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104778, '2022-07-31', 2236, 98882, 6143, 59990, '1.0000', '6.0883', '6.0883', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104779, '2022-07-31', 1637, 98883, 6143, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104780, '2022-07-31', 2959, 98884, 6143, 59053, '2.0000', '4.6271', '4.6271', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104781, '2022-07-31', 9815, 98885, 6143, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '19.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104782, '2022-07-31', 1501, 98886, 6143, 58770, '1.0000', '95.0477', '95.0477', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104783, '2022-07-31', 1665, 98887, 6143, 59974, '1.0000', '1.1823', '1.1823', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104784, '2022-07-31', 2394, 98888, 6143, 54994, '1.0000', '4.2728', '4.2728', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104785, '2022-07-31', 7411, 98889, 6143, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104786, '2022-07-31', 1904, 98890, 6143, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104787, '2022-07-31', 1410, 98891, 6143, 60072, '4.0000', '2.9374', '2.9374', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104788, '2022-07-31', 2167, 98892, 6143, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104789, '2022-08-01', 1669, 98893, 6144, NULL, '1.0000', '9.3000', '9.3000', '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 (104790, '2022-08-01', 1771, 98894, 6144, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104791, '2022-08-01', 1501, 98895, 6144, NULL, '1.0000', '0.6299', '0.6299', '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 (104792, '2022-08-01', 2131, 98896, 6144, 59685, '1.0000', '12.6477', '12.6477', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104793, '2022-08-01', 8208, 98897, 6144, NULL, '2.0000', '47.9541', '47.9541', '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 (104794, '2022-08-01', 2948, 98898, 6144, 59842, '1.0000', '1.0119', '1.0119', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104795, '2022-08-01', 2643, 98899, 6144, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104796, '2022-08-01', 1912, 98900, 6144, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104797, '2022-08-01', 2237, 98901, 6144, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104798, '2022-08-01', 9740, 98902, 6144, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104799, '2022-08-01', 2315, 98903, 6144, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104800, '2022-08-01', 2068, 98904, 6144, NULL, '1.0000', '14.6943', '14.6943', '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 (104801, '2022-08-01', 9751, 98905, 6144, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104802, '2022-08-01', 2250, 98906, 6144, 59886, '1.0000', '9.0177', '9.0177', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104803, '2022-08-01', 2169, 98907, 6144, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '98.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104804, '2022-08-01', 1888, 98908, 6144, 59876, '1.0000', '18.0681', '18.0681', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104805, '2022-08-01', 9834, 98909, 6144, NULL, '1.0000', '1.4500', '1.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 (104806, '2022-08-01', 9923, 98910, 6144, 58233, '1.0000', '8.7000', '8.7000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104807, '2022-08-01', 7802, 98911, 6144, NULL, '3.0000', '1.1497', '1.1497', '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 (104808, '2022-08-01', 3058, 98912, 6144, NULL, '1.0000', '-23.3000', '-23.3000', '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 (104809, '2022-08-01', 1904, 98913, 6144, 59888, '1.0000', '45.2950', '45.2950', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104810, '2022-08-01', 2821, 98914, 6144, 57741, '1.0000', '3.4037', '3.4037', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104811, '2022-08-01', 2821, 98914, 6144, NULL, '1.0000', '3.4037', '3.4037', '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 (104812, '2022-08-01', 9715, 98915, 6144, 58139, '1.0000', '10.1143', '10.1143', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104813, '2022-08-01', 1863, 98916, 6144, 59906, '1.0000', '1.4865', '1.4865', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104814, '2022-08-01', 2250, 98917, 6144, 59886, '1.0000', '9.0177', '9.0177', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104815, '2022-08-01', 1337, 98918, 6144, 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 (104816, '2022-08-01', 2169, 98919, 6144, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '98.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104817, '2022-08-01', 7641, 98920, 6144, NULL, '1.0000', '1.9000', '1.9000', '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 (104818, '2022-08-01', 2948, 98921, 6144, 59842, '1.0000', '1.0119', '1.0119', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104819, '2022-08-01', 2237, 98922, 6144, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104820, '2022-08-01', 9775, 98923, 6144, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104821, '2022-08-01', 1592, 98924, 6144, 59599, '1.0000', '41.6098', '41.6098', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104822, '2022-08-01', 7560, 98925, 6144, NULL, '1.0000', '90.1600', '90.1600', '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 (104823, '2022-08-01', 2221, 98926, 6144, NULL, '1.0000', '2.3805', '2.3805', '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 (104824, '2022-08-01', 1840, 98927, 6144, NULL, '1.0000', '0.2400', '0.2400', '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 (104825, '2022-08-01', 1841, 98928, 6144, NULL, '1.0000', '0.7630', '0.7630', '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 (104826, '2022-08-01', 2289, 98929, 6144, NULL, '1.0000', '0.3611', '0.3611', '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 (104827, '2022-08-01', 2315, 98930, 6144, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104828, '2022-08-01', 1871, 98931, 6144, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (104829, '2022-08-01', 2923, 98932, 6144, 45430, '1.0000', '11.1200', '11.1200', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104830, '2022-08-01', 8773, 98933, 6145, 59646, '1.0000', '3.8300', '3.8300', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104831, '2022-08-01', 1694, 98934, 6145, 53648, '1.0000', '7.4679', '7.4679', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104832, '2022-08-01', 9695, 98935, 6145, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '34.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104833, '2022-08-01', 9832, 98936, 6145, 59666, '1.0000', '1.1069', '1.1069', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104834, '2022-08-01', 9762, 98937, 6145, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104835, '2022-08-01', 2167, 98938, 6145, NULL, '1.0000', '0.6663', '0.6663', '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 (104836, '2022-08-01', 2680, 98939, 6145, 57725, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104837, '2022-08-01', 1478, 98940, 6145, 59902, '1.0000', '27.0201', '27.0201', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104838, '2022-08-01', 1867, 98941, 6146, NULL, '1.0000', '1.0500', '1.0500', '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 (104839, '2022-08-01', 1340, 98942, 6146, 13005, '-16.0000', '2.7025', '2.7025', '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 (104840, '2022-08-01', 1340, 98942, 6146, NULL, '17.0000', '2.7025', '2.7025', '5.0000', '5.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 (104841, '2022-08-01', 1525, 98943, 6146, NULL, '3.0000', '4.9100', '4.9100', '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 (104842, '2022-08-01', 9627, 98944, 6146, 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 (104843, '2022-08-01', 9841, 98945, 6146, NULL, '1.0000', '5.1900', '5.1900', '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 (104844, '2022-08-01', 2075, 98946, 6146, 5583, '-2.0000', '7.0000', '7.0000', '9.5000', '9.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 (104845, '2022-08-01', 2075, 98946, 6146, NULL, '3.0000', '7.0000', '7.0000', '9.5000', '9.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 (104846, '2022-08-01', 9895, 98947, 6146, 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 (104847, '2022-08-01', 2299, 98948, 6146, 22479, '-12.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 (104848, '2022-08-01', 2299, 98948, 6146, NULL, '13.0000', '6.0000', '6.0000', '8.0000', '8.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 (104849, '2022-08-01', 1609, 98949, 6146, 8729, '-4.0000', '12.0000', '12.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 (104850, '2022-08-01', 1609, 98949, 6146, NULL, '5.0000', '12.0000', '12.0000', '20.0000', '20.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 (104851, '2022-08-01', 1620, 98950, 6146, 8955, '-71.0000', '408.8259', '408.8259', '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 (104852, '2022-08-01', 1620, 98950, 6146, NULL, '76.0000', '408.8259', '408.8259', '3.5000', '3.5000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104853, '2022-08-01', 2167, 98951, 6146, 17165, '-56.0000', '2.2000', '2.2000', '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 (104854, '2022-08-01', 2167, 98951, 6146, NULL, '57.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104855, '2022-08-01', 2964, 98952, 6146, NULL, '1.0000', '6.6000', '6.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 (104856, '2022-08-01', 7954, 98953, 6146, 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 (104857, '2022-08-01', 1425, 98954, 6146, NULL, '1.0000', '6.4405', '6.4405', '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 (104858, '2022-08-01', 1427, 98955, 6146, NULL, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104859, '2022-08-01', 2231, 98956, 6146, 1706, '-8.0000', '33.0000', '33.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 (104860, '2022-08-01', 2231, 98956, 6146, NULL, '9.0000', '33.0000', '33.0000', '48.0000', '48.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 (104861, '2022-08-01', 8933, 98957, 6146, NULL, '1.0000', '7.5000', '7.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 (104862, '2022-08-01', 2102, 98958, 6147, 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 (104863, '2022-08-01', 1604, 98959, 6147, NULL, '1.0000', '70.6900', '70.6900', '50.5000', '50.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104864, '2022-08-01', 9695, 98960, 6147, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '33.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104865, '2022-08-01', 1946, 98961, 6147, NULL, '1.0000', '-4.7391', '-4.7391', '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 (104866, '2022-08-01', 7922, 98962, 6147, 54896, '1.0000', '3.8944', '3.8944', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104867, '2022-08-01', 8017, 98963, 6147, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104868, '2022-08-01', 2315, 98964, 6147, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104869, '2022-08-01', 1827, 98965, 6147, NULL, '1.0000', '0.2000', '0.2000', '0.4000', '0.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 (104870, '2022-08-01', 9750, 98966, 6147, NULL, '1.0000', '3.1493', '3.1493', '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 (104871, '2022-08-01', 9832, 98967, 6147, 59666, '1.0000', '1.1069', '1.1069', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104872, '2022-08-01', 2384, 98968, 6147, NULL, '1.0000', '-1.7022', '-1.7022', '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 (104873, '2022-08-01', 1840, 98969, 6147, NULL, '5.0000', '0.2400', '0.2400', '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 (104874, '2022-08-01', 1311, 98970, 6147, 49359, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104875, '2022-08-01', 9204, 98971, 6147, NULL, '1.0000', '14.1514', '14.1514', '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 (104876, '2022-08-01', 2384, 98972, 6147, NULL, '5.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (104877, '2022-08-01', 2921, 98973, 6147, 58244, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104878, '2022-08-01', 2169, 98974, 6147, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104879, '2022-08-01', 2315, 98975, 6147, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104880, '2022-08-01', 1905, 98976, 6147, NULL, '3.0000', '0.5203', '0.5203', '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 (104881, '2022-08-01', 9204, 98977, 6147, NULL, '3.0000', '14.1514', '14.1514', '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 (104882, '2022-08-01', 7703, 98978, 6147, NULL, '2.0000', '22.9900', '22.9900', '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 (104883, '2022-08-01', 9747, 98979, 6147, 59907, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104884, '2022-08-01', 2068, 98980, 6147, NULL, '1.0000', '14.6943', '14.6943', '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 (104885, '2022-08-01', 1867, 98981, 6147, 59841, '1.0000', '10.6181', '10.6181', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104886, '2022-08-01', 1781, 98982, 6147, 57775, '1.0000', '5.8614', '5.8614', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104887, '2022-08-01', 1574, 98983, 6147, NULL, '4.0000', '1.7000', '1.7000', '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 (104888, '2022-08-01', 7514, 98984, 6147, NULL, '1.0000', '2.2500', '2.2500', '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 (104889, '2022-08-01', 2821, 98985, 6147, NULL, '1.0000', '3.4037', '3.4037', '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 (104890, '2022-08-01', 2066, 98986, 6147, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104891, '2022-08-01', 2167, 98987, 6147, NULL, '1.0000', '0.6663', '0.6663', '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 (104892, '2022-08-01', 9750, 98988, 6147, NULL, '1.0000', '3.1493', '3.1493', '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 (104893, '2022-08-01', 1501, 98989, 6147, NULL, '1.0000', '0.6299', '0.6299', '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 (104894, '2022-08-01', 7583, 98990, 6147, NULL, '1.0000', '4.0000', '4.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 (104895, '2022-08-01', 2361, 98991, 6147, 42543, '5.0000', '0.4744', '0.4744', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104896, '2022-08-01', 8155, 98992, 6147, NULL, '1.0000', '65.0000', '65.0000', '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 (104897, '2022-08-01', 9841, 98993, 6147, 55549, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104898, '2022-08-01', 9736, 98994, 6147, 59890, '1.0000', '5.0278', '5.0278', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104899, '2022-08-01', 9747, 98995, 6147, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104900, '2022-08-01', 9828, 98996, 6147, NULL, '2.0000', '2.9100', '2.9100', '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 (104901, '2022-08-01', 8744, 98997, 6147, 59647, '1.0000', '1.7672', '1.7672', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104902, '2022-08-01', 7483, 98998, 6147, 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 (104903, '2022-08-01', 2315, 98999, 6147, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104904, '2022-08-01', 9482, 99000, 6147, 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 (104905, '2022-08-01', 8969, 99001, 6147, 39814, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '59.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104906, '2022-08-01', 8444, 99002, 6147, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104907, '2022-08-01', 8183, 99003, 6147, NULL, '1.0000', '2774.2425', '2774.2425', '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 (104908, '2022-08-01', 2061, 99004, 6147, NULL, '1.0000', '4.3037', '4.3037', '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 (104909, '2022-08-01', 2270, 99005, 6147, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104910, '2022-08-01', 1478, 99006, 6147, 59902, '1.0000', '27.0201', '27.0201', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104911, '2022-08-01', 1307, 99007, 6147, NULL, '1.0000', '-59.9897', '-59.9897', '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 (104912, '2022-08-01', 2255, 99008, 6147, 51664, '1.0000', '17.1339', '17.1339', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104913, '2022-08-01', 7500, 99009, 6147, 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 (104914, '2022-08-01', 8017, 99010, 6147, 59863, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104915, '2022-08-01', 2315, 99011, 6147, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104916, '2022-08-01', 2221, 99012, 6147, NULL, '1.0000', '2.3805', '2.3805', '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 (104917, '2022-08-01', 7779, 99013, 6147, NULL, '1.0000', '0.6200', '0.6200', '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 (104918, '2022-08-01', 1912, 99014, 6147, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104919, '2022-08-01', 1501, 99015, 6147, NULL, '1.0000', '0.6299', '0.6299', '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 (104920, '2022-08-01', 1307, 99016, 6147, NULL, '1.0000', '-59.9897', '-59.9897', '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 (104921, '2022-08-01', 8207, 99017, 6147, NULL, '1.0000', '0.0000', '0.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 (104922, '2022-08-01', 1337, 99018, 6147, 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 (104923, '2022-08-01', 2315, 99019, 6147, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104924, '2022-08-01', 2169, 99020, 6147, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104925, '2022-08-01', 1912, 99021, 6148, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104926, '2022-08-01', 7672, 99022, 6149, NULL, '1.0000', '1.0200', '1.0200', '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 (104927, '2022-08-01', 2315, 99023, 6149, 2735, '-593.0000', '0.3300', '0.3300', '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 (104928, '2022-08-01', 2315, 99023, 6149, NULL, '594.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-594.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104929, '2022-08-01', 1498, 99024, 6149, 19685, '-52.0000', '0.3300', '0.3300', '0.7000', '0.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 (104930, '2022-08-01', 1498, 99024, 6149, NULL, '54.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104931, '2022-08-01', 8918, 99025, 6149, NULL, '2.0000', '1.0400', '1.0400', '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 (104932, '2022-08-01', 7333, 99026, 6149, NULL, '1.0000', '13.5000', '13.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 (104933, '2022-08-01', 8063, 99027, 6149, NULL, '1.0000', '1.6000', '1.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 (104934, '2022-08-01', 2656, 99028, 6149, NULL, '1.0000', '1.5000', '1.5000', '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 (104935, '2022-08-01', 8596, 99029, 6149, 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 (104936, '2022-08-01', 7671, 99030, 6149, NULL, '1.0000', '15.5000', '15.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 (104937, '2022-08-01', 8046, 99031, 6149, NULL, '1.0000', '1.5000', '1.5000', '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 (104938, '2022-08-01', 7753, 99032, 6149, NULL, '2.0000', '3.4000', '3.4000', '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 (104939, '2022-08-01', 8753, 99033, 6149, 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 (104940, '2022-08-01', 7524, 99034, 6149, NULL, '1.0000', '11.9500', '11.9500', '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 (104941, '2022-08-01', 9734, 99035, 6149, NULL, '4.0000', '0.3200', '0.3200', '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 (104942, '2022-08-01', 7900, 99036, 6149, 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 (104943, '2022-08-01', 2892, 99037, 6149, 18050, '-2.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 (104944, '2022-08-01', 2892, 99037, 6149, 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 (104945, '2022-08-01', 7716, 99038, 6149, NULL, '1.0000', '0.0000', '0.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 (104946, '2022-08-01', 7509, 99039, 6149, 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 (104947, '2022-08-01', 1935, 99040, 6149, 5586, '-190.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 (104948, '2022-08-01', 1935, 99040, 6149, NULL, '191.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-191.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104949, '2022-08-01', 9826, 99041, 6149, NULL, '1.0000', '13.5000', '13.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 (104950, '2022-08-01', 7864, 99042, 6149, NULL, '1.0000', '19.5100', '19.5100', '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 (104951, '2022-08-01', 9325, 99043, 6149, NULL, '1.0000', '8.8000', '8.8000', '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 (104952, '2022-08-01', 7776, 99044, 6149, 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 (104953, '2022-08-01', 7881, 99045, 6149, NULL, '1.0000', '2.3000', '2.3000', '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 (104954, '2022-08-01', 1482, 99046, 6149, 1443, '-3.0000', '12.9900', '12.9900', '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 (104955, '2022-08-01', 1482, 99046, 6149, NULL, '4.0000', '12.9900', '12.9900', '18.0000', '18.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 (104956, '2022-08-01', 7666, 99047, 6149, NULL, '1.0000', '3.6000', '3.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 (104957, '2022-08-01', 8135, 99048, 6149, NULL, '1.0000', '5.4500', '5.4500', '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 (104958, '2022-08-01', 9956, 99049, 6149, NULL, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104959, '2022-08-01', 7334, 99050, 6149, NULL, '1.0000', '8.2300', '8.2300', '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 (104960, '2022-08-01', 9275, 99051, 6149, NULL, '1.0000', '6.3000', '6.3000', '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 (104961, '2022-08-01', 2726, 99052, 6149, NULL, '1.0000', '4.0000', '4.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 (104962, '2022-08-01', 7482, 99053, 6149, NULL, '1.0000', '3.0500', '3.0500', '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 (104963, '2022-08-01', 7558, 99054, 6149, NULL, '10.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (104964, '2022-08-01', 8279, 99055, 6149, NULL, '1.0000', '6.0000', '6.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 (104965, '2022-08-01', 9142, 99056, 6149, NULL, '1.0000', '11.1000', '11.1000', '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 (104966, '2022-08-01', 8690, 99057, 6149, NULL, '1.0000', '10.8000', '10.8000', '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 (104967, '2022-08-01', 8155, 99058, 6149, NULL, '2.0000', '65.0000', '65.0000', '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 (104968, '2022-08-01', 9819, 99059, 6149, NULL, '1.0000', '3.6300', '3.6300', '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 (104969, '2022-08-01', 8084, 99060, 6149, NULL, '1.0000', '12.7000', '12.7000', '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 (104970, '2022-08-01', 7651, 99061, 6149, NULL, '1.0000', '2.6700', '2.6700', '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 (104971, '2022-08-01', 7621, 99062, 6149, NULL, '1.0000', '5.9000', '5.9000', '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 (104972, '2022-08-01', 1837, 99063, 6149, 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 (104973, '2022-08-01', 8746, 99064, 6149, NULL, '1.0000', '3.1500', '3.1500', '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 (104974, '2022-08-01', 7741, 99065, 6149, NULL, '1.0000', '1.2000', '1.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 (104975, '2022-08-01', 1884, 99066, 6149, 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 (104976, '2022-08-01', 7482, 99067, 6149, NULL, '1.0000', '3.0500', '3.0500', '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 (104977, '2022-08-01', 2289, 99068, 6149, 2949, '-242.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 (104978, '2022-08-01', 2289, 99068, 6149, NULL, '244.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-244.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104979, '2022-08-01', 8101, 99069, 6149, NULL, '2.0000', '1.9700', '1.9700', '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 (104980, '2022-08-01', 7709, 99070, 6149, 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 (104981, '2022-08-01', 3006, 99071, 6149, 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 (104982, '2022-08-01', 7753, 99072, 6149, NULL, '1.0000', '3.4000', '3.4000', '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 (104983, '2022-08-01', 7673, 99073, 6149, NULL, '1.0000', '16.8000', '16.8000', '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 (104984, '2022-08-01', 7506, 99074, 6149, NULL, '1.0000', '15.0000', '15.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 (104985, '2022-08-01', 9783, 99075, 6149, NULL, '1.0000', '17.6000', '17.6000', '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 (104986, '2022-08-01', 9209, 99076, 6149, NULL, '1.0000', '4.8000', '4.8000', '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 (104987, '2022-08-01', 9576, 99077, 6149, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104988, '2022-08-01', 9755, 99078, 6149, NULL, '1.0000', '17.0000', '17.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 (104989, '2022-08-01', 9734, 99079, 6149, NULL, '1.0000', '0.3200', '0.3200', '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 (104990, '2022-08-01', 7548, 99080, 6149, NULL, '1.0000', '0.3400', '0.3400', '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 (104991, '2022-08-01', 7411, 99081, 6149, NULL, '2.0000', '1.3500', '1.3500', '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 (104992, '2022-08-01', 7459, 99082, 6149, NULL, '10.0000', '2.3500', '2.3500', '4.0000', '4.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 (104993, '2022-08-01', 8193, 99083, 6149, NULL, '1.0000', '25.8000', '25.8000', '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 (104994, '2022-08-01', 9791, 99084, 6149, 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 (104995, '2022-08-01', 7641, 99085, 6149, NULL, '1.0000', '1.9000', '1.9000', '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 (104996, '2022-08-01', 8040, 99086, 6149, NULL, '1.0000', '14.9000', '14.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 (104997, '2022-08-01', 2284, 99087, 6149, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (104998, '2022-08-01', 7671, 99088, 6149, NULL, '1.0000', '15.5000', '15.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 (104999, '2022-08-01', 7703, 99089, 6149, NULL, '1.0000', '22.9900', '22.9900', '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 (105000, '2022-08-01', 8085, 99090, 6149, NULL, '2.0000', '1.1700', '1.1700', '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 (105001, '2022-08-01', 7629, 99091, 6149, NULL, '2.0000', '186.8000', '186.8000', '246.5000', '246.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 (105002, '2022-08-01', 9275, 99092, 6149, NULL, '2.0000', '6.3000', '6.3000', '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 (105003, '2022-08-01', 7713, 99093, 6149, NULL, '2.0000', '0.3800', '0.3800', '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 (105004, '2022-08-01', 7385, 99094, 6149, NULL, '5.0000', '2.0000', '2.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 (105005, '2022-08-01', 7474, 99095, 6149, NULL, '1.0000', '67.6200', '67.6200', '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 (105006, '2022-08-01', 7630, 99096, 6149, NULL, '3.0000', '10.0000', '10.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 (105007, '2022-08-01', 8101, 99097, 6149, NULL, '2.0000', '1.9700', '1.9700', '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 (105008, '2022-08-01', 2063, 99098, 6149, 2169, '-2.0000', '1.9900', '1.9900', '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 (105009, '2022-08-01', 2063, 99098, 6149, NULL, '4.0000', '1.9900', '1.9900', '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 (105010, '2022-08-01', 7588, 99099, 6149, NULL, '2.0000', '6.9000', '6.9000', '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 (105011, '2022-08-01', 1895, 99100, 6149, 5435, '-2.0000', '7.0200', '7.0200', '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 (105012, '2022-08-01', 1895, 99100, 6149, NULL, '3.0000', '7.0200', '7.0200', '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 (105013, '2022-08-01', 9245, 99101, 6149, NULL, '1.0000', '6.6100', '6.6100', '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 (105014, '2022-08-01', 7509, 99102, 6149, NULL, '2.0000', '6.5000', '6.5000', '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 (105015, '2022-08-01', 7736, 99103, 6149, NULL, '1.0000', '16.2000', '16.2000', '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 (105016, '2022-08-01', 7824, 99104, 6149, 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 (105017, '2022-08-01', 7514, 99105, 6149, NULL, '1.0000', '2.2500', '2.2500', '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 (105018, '2022-08-01', 2656, 99106, 6149, NULL, '1.0000', '1.5000', '1.5000', '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 (105019, '2022-08-01', 8203, 99107, 6149, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105020, '2022-08-01', 7780, 99108, 6149, NULL, '1.0000', '11.6000', '11.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 (105021, '2022-08-01', 7396, 99109, 6149, NULL, '1.0000', '6.0000', '6.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 (105022, '2022-08-01', 9456, 99110, 6149, NULL, '1.0000', '3.3200', '3.3200', '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 (105023, '2022-08-01', 7678, 99111, 6149, NULL, '1.0000', '5.1400', '5.1400', '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 (105024, '2022-08-01', 9819, 99112, 6149, NULL, '1.0000', '3.6300', '3.6300', '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 (105025, '2022-08-01', 7557, 99113, 6149, NULL, '2.0000', '0.5000', '0.5000', '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 (105026, '2022-08-01', 7460, 99114, 6149, NULL, '2.0000', '2.5000', '2.5000', '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 (105027, '2022-08-01', 2251, 99115, 6150, 2788, '-31.0000', '10.9700', '10.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 (105028, '2022-08-01', 2251, 99115, 6150, NULL, '33.0000', '10.9700', '10.9700', '20.0000', '20.0000', '-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 (105029, '2022-08-01', 7779, 99116, 6150, NULL, '1.0000', '9.5000', '9.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 (105030, '2022-08-01', 9736, 99117, 6150, NULL, '1.0000', '3.9100', '3.9100', '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 (105031, '2022-08-01', 9160, 99118, 6150, NULL, '1.0000', '15.0000', '15.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 (105032, '2022-08-01', 7524, 99119, 6150, NULL, '1.0000', '11.9500', '11.9500', '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 (105033, '2022-08-01', 7917, 99120, 6150, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105034, '2022-08-01', 8430, 99121, 6150, NULL, '1.0000', '32.0800', '32.0800', '46.6000', '46.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 (105035, '2022-08-01', 1855, 99122, 6151, NULL, '1.0000', '1.4615', '1.4615', '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 (105036, '2022-08-01', 1867, 99123, 6151, 59841, '1.0000', '10.6181', '10.6181', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105037, '2022-08-01', 1346, 99124, 6151, 55603, '10.0000', '1.6774', '1.6774', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105038, '2022-08-01', 9734, 99125, 6151, NULL, '1.0000', '0.7089', '0.7089', '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 (105039, '2022-08-01', 9747, 99126, 6151, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105040, '2022-08-01', 1904, 99127, 6151, 59888, '1.0000', '45.2950', '45.2950', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105041, '2022-08-01', 1666, 99128, 6151, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105042, '2022-08-01', 7790, 99129, 6151, NULL, '1.0000', '17.0000', '17.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 (105043, '2022-08-01', 1577, 99130, 6151, NULL, '1.0000', '-0.5547', '-0.5547', '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 (105044, '2022-08-01', 7514, 99131, 6151, NULL, '1.0000', '2.2500', '2.2500', '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 (105045, '2022-08-01', 2169, 99132, 6151, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105046, '2022-08-01', 1621, 99133, 6151, 57751, '1.0000', '18.8366', '18.8366', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105047, '2022-08-01', 8187, 99134, 6151, NULL, '4.0000', '14.3900', '14.3900', '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 (105048, '2022-08-01', 2250, 99135, 6151, 59886, '1.0000', '9.0177', '9.0177', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105049, '2022-08-01', 7641, 99136, 6151, NULL, '1.0000', '1.9000', '1.9000', '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 (105050, '2022-08-01', 2315, 99137, 6151, 59595, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105051, '2022-08-01', 7473, 99138, 6151, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '34.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105052, '2022-08-01', 1912, 99139, 6151, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105053, '2022-08-01', 9747, 99140, 6151, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105054, '2022-08-01', 9828, 99141, 6151, NULL, '1.0000', '2.9100', '2.9100', '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 (105055, '2022-08-01', 9832, 99142, 6151, 57495, '1.0000', '1.1069', '1.1069', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105056, '2022-08-01', 9695, 99143, 6151, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '32.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105057, '2022-08-01', 1529, 99144, 6151, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105058, '2022-08-01', 1781, 99145, 6151, 57775, '1.0000', '5.8614', '5.8614', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105059, '2022-08-01', 1665, 99146, 6151, 59912, '1.0000', '1.1718', '1.1718', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105060, '2022-08-01', 2169, 99147, 6151, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105061, '2022-08-01', 8017, 99148, 6151, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105062, '2022-08-01', 9695, 99149, 6151, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '32.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105063, '2022-08-01', 2392, 99150, 6151, 48944, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105064, '2022-08-01', 2022, 99151, 6151, 55157, '1.0000', '3.8333', '3.8333', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105065, '2022-08-01', 2169, 99152, 6151, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105066, '2022-08-01', 2285, 99153, 6151, NULL, '1.0000', '-83.4884', '-83.4884', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105067, '2022-08-01', 1574, 99154, 6151, NULL, '3.0000', '1.7000', '1.7000', '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 (105068, '2022-08-01', 9828, 99155, 6151, NULL, '1.0000', '2.9100', '2.9100', '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 (105069, '2022-08-01', 2169, 99156, 6151, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105070, '2022-08-01', 2315, 99157, 6151, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105071, '2022-08-01', 1669, 99158, 6151, NULL, '2.0000', '9.3000', '9.3000', '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 (105072, '2022-08-01', 2260, 99159, 6151, 54937, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105073, '2022-08-01', 1715, 99160, 6151, 59612, '2.0000', '8.8334', '8.8334', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105074, '2022-08-01', 9609, 99161, 6151, NULL, '1.0000', '-1.7000', '-1.7000', '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 (105075, '2022-08-01', 9734, 99162, 6151, NULL, '6.0000', '0.7089', '0.7089', '0.7000', '0.7000', '-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 (105076, '2022-08-01', 2821, 99163, 6151, NULL, '1.0000', '3.4037', '3.4037', '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 (105077, '2022-08-01', 2169, 99164, 6151, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105078, '2022-08-01', 8187, 99165, 6151, NULL, '4.0000', '14.3900', '14.3900', '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 (105079, '2022-08-01', 1884, 99166, 6151, NULL, '1.0000', '17.4104', '17.4104', '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 (105080, '2022-08-01', 9747, 99167, 6151, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105081, '2022-08-01', 9734, 99168, 6151, NULL, '3.0000', '0.7089', '0.7089', '0.7000', '0.7000', '-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 (105082, '2022-08-01', 9921, 99169, 6152, 58205, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105083, '2022-08-01', 9832, 99170, 6152, 57495, '3.0000', '1.1069', '1.1069', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105084, '2022-08-01', 2643, 99171, 6152, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105085, '2022-08-01', 2315, 99172, 6153, 2735, '-594.0000', '0.3300', '0.3300', '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 (105086, '2022-08-01', 2315, 99172, 6153, NULL, '600.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-600.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105087, '2022-08-01', 9286, 99173, 6153, 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 (105088, '2022-08-01', 2302, 99174, 6153, 2963, '-57.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 (105089, '2022-08-01', 2302, 99174, 6153, NULL, '58.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105090, '2022-08-01', 2769, 99175, 6153, NULL, '2.0000', '1.5200', '1.5200', '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 (105091, '2022-08-01', 1550, 99176, 6153, NULL, '1.0000', '13.9000', '13.9000', '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 (105092, '2022-08-01', 3013, 99177, 6153, NULL, '2.0000', '8.0000', '8.0000', '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 (105093, '2022-08-01', 1541, 99178, 6153, 18018, '-7.0000', '19.0000', '19.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 (105094, '2022-08-01', 1541, 99178, 6153, NULL, '8.0000', '19.0000', '19.0000', '30.5000', '30.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 (105095, '2022-08-01', 8677, 99179, 6153, NULL, '3.0000', '1.2800', '1.2800', '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 (105096, '2022-08-01', 1371, 99180, 6153, 10169, '-14.0000', '5.5000', '5.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 (105097, '2022-08-01', 1371, 99180, 6153, NULL, '15.0000', '5.5000', '5.5000', '10.0000', '10.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 (105098, '2022-08-01', 2340, 99181, 6153, 3843, '-3.0000', '5.9200', '5.9200', '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 (105099, '2022-08-01', 2340, 99181, 6153, NULL, '4.0000', '5.9200', '5.9200', '9.0000', '9.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 (105100, '2022-08-01', 1783, 99182, 6153, 4901, '-37.0000', '7.8500', '7.8500', '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 (105101, '2022-08-01', 1783, 99182, 6153, NULL, '40.0000', '7.8500', '7.8500', '13.5000', '13.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 (105102, '2022-08-01', 9794, 99183, 6153, NULL, '1.0000', '1.0800', '1.0800', '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 (105103, '2022-08-01', 2636, 99184, 6153, NULL, '1.0000', '7.2738', '7.2738', '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 (105104, '2022-08-01', 1328, 99185, 6153, NULL, '1.0000', '3.1500', '3.1500', '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 (105105, '2022-08-01', 2263, 99186, 6153, 2799, '-2.0000', '6.5600', '6.5600', '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 (105106, '2022-08-01', 2263, 99186, 6153, NULL, '3.0000', '6.5600', '6.5600', '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 (105107, '2022-08-01', 2250, 99187, 6153, 2787, '-19.0000', '6.8900', '6.8900', '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 (105108, '2022-08-01', 2250, 99187, 6153, NULL, '20.0000', '6.8900', '6.8900', '12.5000', '12.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 (105109, '2022-08-01', 2221, 99188, 6153, 4154, '-79.0000', '14.4737', '14.4737', '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 (105110, '2022-08-01', 2221, 99188, 6153, NULL, '80.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105111, '2022-08-01', 2384, 99189, 6153, 4087, '-62.0000', '0.4000', '0.4000', '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 (105112, '2022-08-01', 2384, 99189, 6153, NULL, '65.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105113, '2022-08-01', 2823, 99190, 6153, 19684, '-20.0000', '11.2100', '11.2100', '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 (105114, '2022-08-01', 2823, 99190, 6153, NULL, '21.0000', '11.2100', '11.2100', '10.0000', '10.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105115, '2022-08-01', 2285, 99191, 6153, 2945, '-54.0000', '35.8000', '35.8000', '65.5000', '65.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 (105116, '2022-08-01', 2285, 99191, 6153, NULL, '55.0000', '35.8000', '35.8000', '65.5000', '65.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 (105117, '2022-08-01', 2858, 99192, 6153, 17772, '-114.0000', '1.0000', '1.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 (105118, '2022-08-01', 2858, 99192, 6153, NULL, '116.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-116.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105119, '2022-08-01', 7593, 99193, 6153, NULL, '2.0000', '2.4500', '2.4500', '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 (105120, '2022-08-01', 2248, 99194, 6153, 2785, '-19.0000', '2.5000', '2.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 (105121, '2022-08-01', 2248, 99194, 6153, NULL, '20.0000', '2.5000', '2.5000', '6.0000', '6.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 (105122, '2022-08-01', 9748, 99195, 6153, NULL, '1.0000', '2.5300', '2.5300', '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 (105123, '2022-08-01', 1394, 99196, 6153, 22358, '1.0000', '8.1700', '8.1700', '16.5000', '16.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 (105124, '2022-08-01', 2848, 99197, 6153, 17213, '-1.0000', '16.2000', '16.2000', '20.5000', '20.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 (105125, '2022-08-01', 2848, 99197, 6153, NULL, '2.0000', '16.2000', '16.2000', '20.5000', '20.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 (105126, '2022-08-01', 1338, 99198, 6153, 16502, '-16.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 (105127, '2022-08-01', 1338, 99198, 6153, NULL, '17.0000', '4.0000', '4.0000', '6.5000', '6.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 (105128, '2022-08-01', 1846, 99199, 6153, 12032, '-25.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 (105129, '2022-08-01', 1846, 99199, 6153, NULL, '26.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (105130, '2022-08-01', 7411, 99200, 6153, NULL, '1.0000', '1.3500', '1.3500', '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 (105131, '2022-08-01', 7741, 99201, 6153, NULL, '1.0000', '1.2000', '1.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 (105132, '2022-08-01', 1602, 99202, 6153, 5897, '-173.0000', '6.7859', '6.7859', '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 (105133, '2022-08-01', 1602, 99202, 6153, NULL, '174.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-174.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105134, '2022-08-01', 7741, 99203, 6153, NULL, '1.0000', '1.2000', '1.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 (105135, '2022-08-01', 7411, 99204, 6153, NULL, '1.0000', '1.3500', '1.3500', '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 (105136, '2022-08-01', 2135, 99205, 6153, 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 (105137, '2022-08-01', 2331, 99206, 6153, 3834, '-12.0000', '12.0700', '12.0700', '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 (105138, '2022-08-01', 2331, 99206, 6153, NULL, '13.0000', '12.0700', '12.0700', '18.0000', '18.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 (105139, '2022-08-01', 1409, 99207, 6153, 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 (105140, '2022-08-02', 1628, 99208, 6154, 59606, '2.0000', '7.1000', '7.1000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105141, '2022-08-02', 9718, 99209, 6154, 48466, '1.0000', '13.3235', '13.3235', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105142, '2022-08-02', 7665, 99210, 6154, NULL, '1.0000', '7.9000', '7.9000', '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 (105143, '2022-08-02', 8079, 99211, 6154, NULL, '1.0000', '16.6100', '16.6100', '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 (105144, '2022-08-02', 1839, 99212, 6154, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (105145, '2022-08-02', 2244, 99213, 6154, NULL, '1.0000', '-2.9000', '-2.9000', '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 (105146, '2022-08-02', 9762, 99214, 6154, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105147, '2022-08-02', 1650, 99215, 6154, NULL, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105148, '2022-08-02', 2263, 99216, 6154, NULL, '1.0000', '37.4800', '37.4800', '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 (105149, '2022-08-02', 2169, 99217, 6154, 59849, '1.0000', '1.7114', '1.7114', '2.5000', '2.5000', '89.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105150, '2022-08-02', 1521, 99218, 6154, NULL, '1.0000', '-217.8500', '-217.8500', '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 (105151, '2022-08-02', 8429, 99219, 6154, NULL, '1.0000', '16.0000', '16.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 (105152, '2022-08-02', 7574, 99220, 6154, NULL, '1.0000', '8.2900', '8.2900', '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 (105153, '2022-08-02', 8835, 99221, 6154, 57150, '1.0000', '7.0000', '7.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105154, '2022-08-02', 1602, 99222, 6154, 59619, '1.0000', '7.1154', '7.1154', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105155, '2022-08-02', 2233, 99223, 6155, 2777, '-33.0000', '19.0200', '19.0200', '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 (105156, '2022-08-02', 2233, 99223, 6155, NULL, '34.0000', '19.0200', '19.0200', '39.0000', '39.0000', '-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 (105157, '2022-08-02', 2061, 99224, 6155, 2164, '-14.0000', '10.9800', '10.9800', '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 (105158, '2022-08-02', 2061, 99224, 6155, NULL, '15.0000', '10.9800', '10.9800', '17.5000', '17.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 (105159, '2022-08-02', 9832, 99225, 6156, 57495, '2.0000', '1.1069', '1.1069', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105160, '2022-08-02', 9828, 99226, 6156, NULL, '1.0000', '2.9100', '2.9100', '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 (105161, '2022-08-02', 1425, 99227, 6156, NULL, '1.0000', '324.2732', '324.2732', '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 (105162, '2022-08-02', 9831, 99228, 6156, 59665, '2.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105163, '2022-08-02', 1590, 99229, 6156, 50113, '2.0000', '2.2860', '2.2860', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105164, '2022-08-02', 9831, 99230, 6156, 59665, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105165, '2022-08-02', 2730, 99231, 6157, 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 (105166, '2022-08-02', 1528, 99232, 6157, NULL, '1.0000', '323.4803', '323.4803', '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 (105167, '2022-08-02', 9834, 99233, 6157, NULL, '1.0000', '1.4500', '1.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 (105168, '2022-08-02', 7756, 99234, 6157, NULL, '1.0000', '2.5000', '2.5000', '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 (105169, '2022-08-02', 2295, 99235, 6157, 54913, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105170, '2022-08-02', 2948, 99236, 6157, 59842, '1.0000', '1.0119', '1.0119', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105171, '2022-08-02', 1863, 99237, 6157, 59906, '1.0000', '1.4865', '1.4865', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105172, '2022-08-02', 8771, 99238, 6157, 59651, '1.0000', '6.9441', '6.9441', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105173, '2022-08-02', 2643, 99239, 6157, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105174, '2022-08-02', 9840, 99240, 6157, 53230, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105175, '2022-08-02', 2315, 99241, 6157, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105176, '2022-08-02', 2406, 99242, 6158, 34583, '1.0000', '20.7000', '20.7000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105177, '2022-08-02', 2680, 99243, 6158, 57725, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105178, '2022-08-02', 1672, 99244, 6158, NULL, '10.0000', '4.1808', '4.1808', '5.5000', '5.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 (105179, '2022-08-02', 7666, 99245, 6159, NULL, '1.0000', '3.6000', '3.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 (105180, '2022-08-02', 9794, 99246, 6159, NULL, '1.0000', '1.0800', '1.0800', '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 (105181, '2022-08-02', 8444, 99247, 6159, 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 (105182, '2022-08-02', 9715, 99248, 6159, NULL, '1.0000', '9.4000', '9.4000', '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 (105183, '2022-08-02', 1302, 99249, 6159, 31, '1.0000', '390.9115', '390.9115', '6.0000', '6.0000', '1.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 (105184, '2022-08-02', 2430, 99250, 6159, 5302, '-2.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 (105185, '2022-08-02', 2430, 99250, 6159, 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 (105186, '2022-08-02', 2266, 99251, 6159, 2801, '-13.0000', '6.4900', '6.4900', '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 (105187, '2022-08-02', 2266, 99251, 6159, NULL, '14.0000', '6.4900', '6.4900', '13.0000', '13.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 (105188, '2022-08-02', 3079, 99252, 6159, 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 (105189, '2022-08-02', 9794, 99253, 6159, NULL, '1.0000', '1.0800', '1.0800', '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 (105190, '2022-08-02', 1912, 99254, 6159, 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 (105191, '2022-08-02', 9274, 99255, 6160, NULL, '1.0000', '3.6000', '3.6000', '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 (105192, '2022-08-02', 9988, 99256, 6160, 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 (105193, '2022-08-02', 2656, 99257, 6160, NULL, '1.0000', '1.5000', '1.5000', '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 (105194, '2022-08-02', 7716, 99258, 6160, NULL, '1.0000', '0.0000', '0.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 (105195, '2022-08-02', 2662, 99259, 6160, 12036, '-16.0000', '4.5000', '4.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 (105196, '2022-08-02', 2662, 99259, 6160, NULL, '17.0000', '4.5000', '4.5000', '7.0000', '7.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 (105197, '2022-08-02', 7318, 99260, 6160, NULL, '1.0000', '13.4400', '13.4400', '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 (105198, '2022-08-02', 9942, 99261, 6160, NULL, '1.0000', '9.1000', '9.1000', '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 (105199, '2022-08-02', 8085, 99262, 6160, NULL, '2.0000', '1.1700', '1.1700', '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 (105200, '2022-08-02', 7703, 99263, 6160, NULL, '3.0000', '22.9900', '22.9900', '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 (105201, '2022-08-02', 1827, 99264, 6160, NULL, '10.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-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 (105202, '2022-08-02', 8020, 99265, 6160, NULL, '1.0000', '11.9000', '11.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 (105203, '2022-08-02', 7411, 99266, 6160, NULL, '4.0000', '1.3500', '1.3500', '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 (105204, '2022-08-02', 8101, 99267, 6160, NULL, '2.0000', '1.9700', '1.9700', '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 (105205, '2022-08-02', 8052, 99268, 6160, NULL, '1.0000', '29.0000', '29.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 (105206, '2022-08-02', 9791, 99269, 6160, 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 (105207, '2022-08-02', 8133, 99270, 6160, NULL, '1.0000', '5.0000', '5.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 (105208, '2022-08-02', 1501, 99271, 6160, NULL, '1.0000', '2.0500', '2.0500', '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 (105209, '2022-08-02', 7674, 99272, 6160, NULL, '1.0000', '1.3000', '1.3000', '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 (105210, '2022-08-02', 3006, 99273, 6160, 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 (105211, '2022-08-02', 7315, 99274, 6160, NULL, '1.0000', '15.0000', '15.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 (105212, '2022-08-02', 7473, 99275, 6160, NULL, '6.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (105213, '2022-08-02', 7671, 99276, 6160, NULL, '1.0000', '15.5000', '15.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 (105214, '2022-08-02', 9695, 99277, 6160, NULL, '1.0000', '4.5000', '4.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 (105215, '2022-08-02', 7459, 99278, 6160, NULL, '2.0000', '2.3500', '2.3500', '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 (105216, '2022-08-02', 7694, 99279, 6160, NULL, '1.0000', '4.7900', '4.7900', '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 (105217, '2022-08-02', 7547, 99280, 6160, NULL, '1.0000', '0.0000', '0.0000', '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 (105218, '2022-08-02', 9274, 99281, 6160, NULL, '1.0000', '3.6000', '3.6000', '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 (105219, '2022-08-02', 7712, 99282, 6160, NULL, '1.0000', '26.0000', '26.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 (105220, '2022-08-02', 1935, 99283, 6160, 5586, '-191.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 (105221, '2022-08-02', 1935, 99283, 6160, NULL, '193.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-193.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105222, '2022-08-02', 7716, 99284, 6161, NULL, '1.0000', '0.0000', '0.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 (105223, '2022-08-02', 1984, 99285, 6161, 57534, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105224, '2022-08-02', 7780, 99286, 6161, 60145, '1.0000', '12.9226', '12.9226', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105225, '2022-08-02', 9821, 99287, 6161, 56590, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105226, '2022-08-02', 8517, 99288, 6161, NULL, '1.0000', '27.6774', '27.6774', '36.5000', '36.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105227, '2022-08-02', 7457, 99289, 6161, 60134, '1.0000', '4.6990', '4.6990', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105228, '2022-08-02', 7524, 99290, 6161, 60133, '1.0000', '4.7209', '4.7209', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105229, '2022-08-02', 8135, 99291, 6161, 59312, '1.0000', '5.9042', '5.9042', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105230, '2022-08-02', 8134, 99292, 6161, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105231, '2022-08-02', 2063, 99293, 6161, 52439, '2.0000', '10.6325', '10.6325', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105232, '2022-08-02', 7382, 99294, 6161, 59193, '1.0000', '8.4288', '8.4288', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105233, '2022-08-02', 7518, 99295, 6161, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '22.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105234, '2022-08-02', 8699, 99296, 6161, NULL, '1.0000', '18.5578', '18.5578', '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 (105235, '2022-08-02', 7872, 99297, 6161, 59403, '1.0000', '-2180.3597', '-2180.3597', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105236, '2022-08-02', 2063, 99298, 6161, 52439, '1.0000', '10.6325', '10.6325', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105237, '2022-08-02', 7785, 99299, 6161, 46925, '1.0000', '3.9000', '3.9000', '5.5000', '5.5000', '11.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105238, '2022-08-02', 8335, 99300, 6161, NULL, '1.0000', '21.7000', '21.7000', '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 (105239, '2022-08-02', 7444, 99301, 6161, 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 (105240, '2022-08-02', 9329, 99302, 6161, 60105, '1.0000', '-4412.4155', '-4412.4155', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105241, '2022-08-02', 9988, 99303, 6161, 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 (105242, '2022-08-02', 2315, 99304, 6161, 60129, '3.0000', '0.7586', '0.7586', '1.0000', '1.0000', '77.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105243, '2022-08-02', 8017, 99305, 6161, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '90.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105244, '2022-08-02', 8923, 99306, 6161, NULL, '1.0000', '7.2500', '7.2500', '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 (105245, '2022-08-02', 9698, 99307, 6161, 51006, '1.0000', '7.4353', '7.4353', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105246, '2022-08-02', 7780, 99308, 6161, 60145, '1.0000', '12.9226', '12.9226', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105247, '2022-08-02', 9245, 99309, 6161, 59359, '1.0000', '6.8253', '6.8253', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105248, '2022-08-02', 7715, 99310, 6161, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105249, '2022-08-02', 1501, 99311, 6161, 59364, '1.0000', '2.6968', '2.6968', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105250, '2022-08-02', 9269, 99312, 6161, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105251, '2022-08-02', 9734, 99313, 6161, 60144, '2.0000', '0.3152', '0.3152', '0.7000', '0.7000', '94.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105252, '2022-08-02', 7411, 99314, 6161, 60143, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105253, '2022-08-02', 7444, 99315, 6161, 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 (105254, '2022-08-02', 2104, 99316, 6161, NULL, '4.0000', '0.2000', '0.2000', '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 (105255, '2022-08-02', 1947, 99317, 6161, 43122, '2.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105256, '2022-08-02', 7423, 99318, 6161, 51254, '1.0000', '14.3352', '14.3352', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105257, '2022-08-02', 7673, 99319, 6161, 60108, '2.0000', '13.3509', '13.3509', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105258, '2022-08-02', 7591, 99320, 6161, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105259, '2022-08-02', 9865, 99321, 6161, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '11.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105260, '2022-08-02', 1501, 99322, 6161, 59364, '1.0000', '2.6968', '2.6968', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105261, '2022-08-02', 7518, 99323, 6161, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '22.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105262, '2022-08-02', 7354, 99324, 6162, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105263, '2022-08-02', 7518, 99325, 6162, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '20.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105264, '2022-08-02', 7917, 99326, 6162, 52750, '4.0000', '2.1447', '2.1447', '0.7000', '0.7000', '67.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105265, '2022-08-02', 9748, 99327, 6162, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105266, '2022-08-02', 7860, 99328, 6162, 59168, '1.0000', '24.0624', '24.0624', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105267, '2022-08-02', 1841, 99329, 6162, 56033, '8.0000', '0.1970', '0.1970', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105268, '2022-08-02', 9715, 99330, 6162, 59314, '1.0000', '10.0087', '10.0087', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105269, '2022-08-02', 7674, 99331, 6162, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105270, '2022-08-02', 8154, 99332, 6162, NULL, '1.0000', '12.3000', '12.3000', '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 (105271, '2022-08-02', 7642, 99333, 6162, 59333, '2.0000', '5.9844', '5.9844', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105272, '2022-08-02', 7714, 99334, 6162, NULL, '2.0000', '0.4200', '0.4200', '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 (105273, '2022-08-02', 8395, 99335, 6162, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105274, '2022-08-02', 7877, 99336, 6162, NULL, '1.0000', '9.0538', '9.0538', '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 (105275, '2022-08-02', 9834, 99337, 6162, 59092, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105276, '2022-08-02', 7608, 99338, 6162, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105277, '2022-08-02', 8413, 99339, 6162, NULL, '1.0000', '89.9992', '89.9992', '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 (105278, '2022-08-02', 9275, 99340, 6162, NULL, '2.0000', '6.3000', '6.3000', '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 (105279, '2022-08-02', 9272, 99341, 6162, NULL, '1.0000', '3.1000', '3.1000', '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 (105280, '2022-08-02', 7704, 99342, 6162, NULL, '1.0000', '-1.5625', '-1.5625', '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 (105281, '2022-08-02', 7900, 99343, 6162, 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 (105282, '2022-08-02', 7548, 99344, 6162, 59123, '1.0000', '3.9186', '3.9186', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105283, '2022-08-02', 8135, 99345, 6162, 59312, '1.0000', '5.9042', '5.9042', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105284, '2022-08-02', 7411, 99346, 6162, 60143, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105285, '2022-08-02', 2315, 99347, 6162, 60129, '1.0000', '0.7586', '0.7586', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105286, '2022-08-02', 8011, 99348, 6162, 60097, '1.0000', '7.5500', '7.5500', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105287, '2022-08-02', 1935, 99349, 6162, 50678, '2.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105288, '2022-08-02', 7457, 99350, 6162, 60134, '3.0000', '4.6990', '4.6990', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105289, '2022-08-02', 8068, 99351, 6163, 59166, '1.0000', '7.9956', '7.9956', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105290, '2022-08-02', 2315, 99352, 6163, 60129, '2.0000', '0.7586', '0.7586', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105291, '2022-08-02', 2699, 99353, 6163, NULL, '1.0000', '3.0000', '3.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 (105292, '2022-08-02', 8164, 99354, 6163, 60130, '1.0000', '26.6200', '26.6200', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105293, '2022-08-02', 8061, 99355, 6163, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105294, '2022-08-02', 9534, 99356, 6163, 54714, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105295, '2022-08-02', 7459, 99357, 6163, 59304, '7.0000', '26.0971', '26.0971', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105296, '2022-08-02', 7459, 99357, 6163, 59339, '3.0000', '26.0971', '26.0971', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105297, '2022-08-02', 2546, 99358, 6163, 57454, '1.0000', '16.9000', '16.9000', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105298, '2022-08-02', 8328, 99359, 6163, NULL, '1.0000', '11.2886', '11.2886', '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 (105299, '2022-08-02', 1855, 99360, 6163, 56023, '1.0000', '1.4699', '1.4699', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105300, '2022-08-02', 1904, 99361, 6164, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105301, '2022-08-02', 7638, 99362, 6164, 40602, '1.0000', '1.1651', '1.1651', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105302, '2022-08-02', 3013, 99363, 6164, 60009, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105303, '2022-08-02', 1609, 99364, 6164, 53268, '1.0000', '12.7000', '12.7000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105304, '2022-08-02', 2237, 99365, 6164, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105305, '2022-08-02', 1660, 99366, 6164, 60025, '1.0000', '72.9580', '72.9580', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105306, '2022-08-02', 1744, 99367, 6164, 58761, '1.0000', '31.7371', '31.7371', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105307, '2022-08-02', 1780, 99368, 6164, 59996, '1.0000', '41.3380', '41.3380', '60.5000', '60.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105308, '2022-08-02', 2167, 99369, 6164, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105309, '2022-08-02', 7482, 99370, 6164, NULL, '1.0000', '3.0500', '3.0500', '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 (105310, '2022-08-02', 1872, 99371, 6164, 60005, '1.0000', '10.6019', '10.6019', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105311, '2022-08-02', 8933, 99372, 6164, 58002, '1.0000', '8.7475', '8.7475', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105312, '2022-08-02', 1812, 99373, 6164, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105313, '2022-08-02', 2255, 99374, 6164, 60039, '1.0000', '21.5389', '21.5389', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105314, '2022-08-02', 7411, 99375, 6164, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105315, '2022-08-02', 2315, 99376, 6164, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105316, '2022-08-02', 2916, 99377, 6164, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105317, '2022-08-02', 1409, 99378, 6164, 59960, '1.0000', '13.0799', '13.0799', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105318, '2022-08-02', 1744, 99379, 6164, 58761, '1.0000', '31.7371', '31.7371', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105319, '2022-08-02', 2061, 99380, 6164, 60035, '1.0000', '12.7115', '12.7115', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105320, '2022-08-02', 1367, 99381, 6164, NULL, '10.0000', '3.2867', '3.2867', '11.0000', '11.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 (105321, '2022-08-02', 1637, 99382, 6164, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105322, '2022-08-02', 2315, 99383, 6164, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105323, '2022-08-02', 9724, 99384, 6164, 46080, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105324, '2022-08-02', 7411, 99385, 6164, 48774, '2.0000', '1.3793', '1.3793', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105325, '2022-08-02', 7411, 99386, 6164, 48774, '3.0000', '1.3793', '1.3793', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105326, '2022-08-02', 1506, 99387, 6164, 57948, '1.0000', '25.5190', '25.5190', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105327, '2022-08-02', 1371, 99388, 6164, 44773, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105328, '2022-08-02', 9729, 99389, 6164, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105329, '2022-08-02', 2366, 99390, 6164, 60001, '2.0000', '3.6431', '3.6431', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105330, '2022-08-02', 1410, 99391, 6164, 59957, '1.0000', '2.9374', '2.9374', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105331, '2022-08-02', 7328, 99392, 6164, NULL, '9.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (105332, '2022-08-02', 7917, 99393, 6164, NULL, '1.0000', '5.0000', '5.0000', '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 (105333, '2022-08-02', 2511, 99394, 6164, 60055, '1.0000', '10.0175', '10.0175', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105334, '2022-08-02', 7375, 99395, 6164, NULL, '10.0000', '5.3000', '5.3000', '7.0000', '7.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 (105335, '2022-08-02', 8900, 99396, 6164, NULL, '2.0000', '16.4000', '16.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 (105336, '2022-08-02', 9967, 99397, 6164, 59051, '2.0000', '6.6000', '6.6000', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105337, '2022-08-02', 2302, 99398, 6164, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105338, '2022-08-02', 7879, 99399, 6164, NULL, '8.0000', '1.9200', '1.9200', '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 (105339, '2022-08-02', 2317, 99400, 6164, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '10.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105340, '2022-08-02', 2344, 99401, 6164, 55799, '1.0000', '19.8747', '19.8747', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105341, '2022-08-02', 1863, 99402, 6164, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105342, '2022-08-02', 9626, 99403, 6164, 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 (105343, '2022-08-02', 7564, 99404, 6164, 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 (105344, '2022-08-02', 1912, 99405, 6164, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105345, '2022-08-02', 9729, 99406, 6164, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105346, '2022-08-02', 9291, 99407, 6164, 56913, '2.0000', '15.4949', '15.4949', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105347, '2022-08-02', 7411, 99408, 6164, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105348, '2022-08-02', 2917, 99409, 6164, 54685, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105349, '2022-08-02', 9732, 99410, 6164, 58774, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105350, '2022-08-02', 1785, 99411, 6164, 60015, '1.0000', '16.0665', '16.0665', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105351, '2022-08-02', 9794, 99412, 6164, 58789, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105352, '2022-08-02', 2167, 99413, 6164, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105353, '2022-08-02', 9742, 99414, 6164, 57958, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105354, '2022-08-02', 2380, 99415, 6164, 59637, '1.0000', '45.1378', '45.1378', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105355, '2022-08-02', 2642, 99416, 6164, 58549, '1.0000', '9.6833', '9.6833', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105356, '2022-08-02', 9740, 99417, 6164, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105357, '2022-08-02', 9794, 99418, 6164, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105358, '2022-08-02', 3029, 99419, 6164, 59983, '1.0000', '7.5369', '7.5369', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105359, '2022-08-02', 7917, 99420, 6164, NULL, '1.0000', '5.0000', '5.0000', '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 (105360, '2022-08-02', 1620, 99421, 6164, 57947, '4.0000', '2.2914', '2.2914', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105361, '2022-08-03', 2964, 99422, 6165, NULL, '2.0000', '2592.2692', '2592.2692', '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 (105362, '2022-08-03', 2237, 99423, 6165, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105363, '2022-08-03', 2293, 99424, 6165, NULL, '5.0000', '-17.4320', '-17.4320', '1.5000', '1.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 (105364, '2022-08-03', 2289, 99425, 6165, NULL, '4.0000', '0.3611', '0.3611', '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 (105365, '2022-08-03', 2294, 99426, 6165, 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 (105366, '2022-08-03', 8504, 99427, 6165, NULL, '1.0000', '8.1000', '8.1000', '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 (105367, '2022-08-03', 1912, 99428, 6165, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105368, '2022-08-03', 9724, 99429, 6165, 57719, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105369, '2022-08-03', 9089, 99430, 6165, 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 (105370, '2022-08-03', 1501, 99431, 6165, NULL, '1.0000', '0.6299', '0.6299', '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 (105371, '2022-08-03', 9508, 99432, 6165, 59867, '1.0000', '10.6000', '10.6000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105372, '2022-08-03', 7753, 99433, 6165, NULL, '1.0000', '3.1400', '3.1400', '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 (105373, '2022-08-03', 1668, 99434, 6165, 57703, '1.0000', '22.1926', '22.1926', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105374, '2022-08-03', 1888, 99435, 6165, 59876, '1.0000', '18.0681', '18.0681', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105375, '2022-08-03', 1432, 99436, 6165, 59851, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105376, '2022-08-03', 1339, 99437, 6165, 58192, '1.0000', '2.1988', '2.1988', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105377, '2022-08-03', 2167, 99438, 6165, NULL, '1.0000', '0.6663', '0.6663', '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 (105378, '2022-08-03', 2435, 99439, 6165, 59690, '1.0000', '8.3108', '8.3108', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105379, '2022-08-03', 9482, 99440, 6165, NULL, '2.0000', '0.5000', '0.5000', '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 (105380, '2022-08-03', 2893, 99441, 6165, NULL, '1.0000', '6.4400', '6.4400', '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 (105381, '2022-08-03', 2062, 99442, 6165, NULL, '1.0000', '12.5700', '12.5700', '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 (105382, '2022-08-03', 2506, 99443, 6165, NULL, '2.0000', '-9.4377', '-9.4377', '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 (105383, '2022-08-03', 1432, 99444, 6165, 59851, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105384, '2022-08-03', 2167, 99445, 6165, NULL, '1.0000', '0.6663', '0.6663', '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 (105385, '2022-08-03', 7353, 99446, 6165, NULL, '2.0000', '0.1900', '0.1900', '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 (105386, '2022-08-03', 2284, 99447, 6165, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105387, '2022-08-03', 2643, 99448, 6165, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105388, '2022-08-03', 9751, 99449, 6165, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105389, '2022-08-03', 9695, 99450, 6165, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '30.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105390, '2022-08-03', 2237, 99451, 6166, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105391, '2022-08-03', 2167, 99452, 6166, NULL, '1.0000', '0.6663', '0.6663', '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 (105392, '2022-08-03', 7778, 99453, 6167, NULL, '2.0000', '9.0000', '9.0000', '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 (105393, '2022-08-03', 7363, 99454, 6167, 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 (105394, '2022-08-03', 7929, 99455, 6167, NULL, '1.0000', '7.9000', '7.9000', '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 (105395, '2022-08-03', 7938, 99456, 6167, NULL, '1.0000', '2.9000', '2.9000', '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 (105396, '2022-08-03', 7444, 99457, 6167, 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 (105397, '2022-08-03', 2876, 99458, 6167, 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 (105398, '2022-08-03', 7558, 99459, 6167, NULL, '12.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (105399, '2022-08-03', 7872, 99460, 6167, 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 (105400, '2022-08-03', 9633, 99461, 6167, NULL, '1.0000', '8.4100', '8.4100', '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 (105401, '2022-08-03', 8677, 99462, 6167, NULL, '3.0000', '1.2800', '1.2800', '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 (105402, '2022-08-03', 2105, 99463, 6167, NULL, '1.0000', '1.3500', '1.3500', '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 (105403, '2022-08-03', 1837, 99464, 6167, 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 (105404, '2022-08-03', 9581, 99465, 6167, NULL, '2.0000', '22.0000', '22.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 (105405, '2022-08-03', 7514, 99466, 6167, NULL, '1.0000', '2.2500', '2.2500', '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 (105406, '2022-08-03', 7321, 99467, 6167, NULL, '1.0000', '7.9500', '7.9500', '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 (105407, '2022-08-03', 8097, 99468, 6167, NULL, '4.0000', '3.4000', '3.4000', '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 (105408, '2022-08-03', 9274, 99469, 6167, NULL, '1.0000', '3.6000', '3.6000', '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 (105409, '2022-08-03', 9330, 99470, 6167, NULL, '1.0000', '8.6000', '8.6000', '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 (105410, '2022-08-03', 9399, 99471, 6167, NULL, '1.0000', '0.9800', '0.9800', '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 (105411, '2022-08-03', 9463, 99472, 6167, NULL, '1.0000', '7.5000', '7.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 (105412, '2022-08-03', 9716, 99473, 6167, NULL, '1.0000', '4.4000', '4.4000', '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 (105413, '2022-08-03', 2416, 99474, 6167, 4745, '-36.0000', '1.2000', '1.2000', '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 (105414, '2022-08-03', 2416, 99474, 6167, NULL, '38.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105415, '2022-08-03', 9735, 99475, 6167, 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 (105416, '2022-08-03', 9729, 99476, 6167, NULL, '1.0000', '0.6200', '0.6200', '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 (105417, '2022-08-03', 7473, 99477, 6167, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105418, '2022-08-03', 1805, 99478, 6167, NULL, '2.0000', '195.3170', '195.3170', '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 (105419, '2022-08-03', 7606, 99479, 6167, NULL, '1.0000', '4.8600', '4.8600', '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 (105420, '2022-08-03', 7411, 99480, 6167, NULL, '1.0000', '1.3500', '1.3500', '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 (105421, '2022-08-03', 7400, 99481, 6167, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105422, '2022-08-03', 2289, 99482, 6167, 2949, '-244.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 (105423, '2022-08-03', 2289, 99482, 6167, NULL, '245.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-245.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105424, '2022-08-03', 2891, 99483, 6167, 18020, '-6.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 (105425, '2022-08-03', 2891, 99483, 6167, NULL, '7.0000', '9.5000', '9.5000', '12.0000', '12.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 (105426, '2022-08-03', 2260, 99484, 6168, 57992, '12.0000', '4.6659', '4.6659', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105427, '2022-08-03', 1592, 99485, 6168, 59995, '1.0000', '36.7235', '36.7235', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105428, '2022-08-03', 7641, 99486, 6169, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105429, '2022-08-03', 7886, 99487, 6169, 59133, '1.0000', '4.6185', '4.6185', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105430, '2022-08-03', 1837, 99488, 6169, 45863, '2.0000', '0.5600', '0.5600', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105431, '2022-08-03', 7444, 99489, 6169, 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 (105432, '2022-08-03', 8504, 99490, 6169, NULL, '1.0000', '-103.9000', '-103.9000', '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 (105433, '2022-08-03', 7316, 99491, 6169, 57459, '5.0000', '0.9231', '0.9231', '1.3000', '1.3000', '32.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105434, '2022-08-03', 8084, 99492, 6169, 56160, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105435, '2022-08-03', 7560, 99493, 6169, 60094, '1.0000', '41.1025', '41.1025', '55.0000', '55.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105436, '2022-08-03', 9534, 99494, 6169, 50456, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105437, '2022-08-03', 8072, 99495, 6169, NULL, '3.0000', '-133.6999', '-133.6999', '8.7000', '8.7000', '-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 (105438, '2022-08-03', 1875, 99496, 6169, 60124, '18.0000', '-36.7752', '-36.7752', '3.7000', '3.7000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105439, '2022-08-03', 1875, 99496, 6169, NULL, '2.0000', '-36.7752', '-36.7752', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105440, '2022-08-03', 9117, 99497, 6169, 56478, '1.0000', '42.5504', '42.5504', '58.0000', '58.0000', '1.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105441, '2022-08-03', 2503, 99498, 6169, 36674, '1.0000', '15.0899', '15.0899', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105442, '2022-08-03', 7411, 99499, 6169, 60143, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105443, '2022-08-03', 7674, 99500, 6169, 59362, '2.0000', '89.9278', '89.9278', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105444, '2022-08-03', 9329, 99501, 6169, 60105, '1.0000', '-4412.4155', '-4412.4155', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105445, '2022-08-03', 7777, 99502, 6169, NULL, '1.0000', '0.1218', '0.1218', '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 (105446, '2022-08-03', 1760, 99503, 6169, 57610, '8.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105447, '2022-08-03', 2315, 99504, 6169, 60129, '4.0000', '0.7586', '0.7586', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105448, '2022-08-03', 9734, 99505, 6169, 60144, '4.0000', '0.3152', '0.3152', '0.7000', '0.7000', '90.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105449, '2022-08-03', 7558, 99506, 6169, NULL, '1.0000', '0.9338', '0.9338', '3.7000', '3.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 (105450, '2022-08-03', 7954, 99507, 6169, NULL, '1.0000', '7039.4904', '7039.4904', '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 (105451, '2022-08-03', 9271, 99508, 6169, 56566, '2.0000', '1.8173', '1.8173', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105452, '2022-08-03', 7514, 99509, 6169, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (105453, '2022-08-03', 7867, 99510, 6169, NULL, '1.0000', '2.3130', '2.3130', '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 (105454, '2022-08-03', 7730, 99511, 6169, 60195, '14.0000', '0.0723', '0.0723', '0.2000', '0.2000', '147.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105455, '2022-08-03', 8658, 99512, 6169, NULL, '1.0000', '17.5167', '17.5167', '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 (105456, '2022-08-03', 7781, 99513, 6169, NULL, '3.0000', '6.8496', '6.8496', '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 (105457, '2022-08-03', 7482, 99514, 6169, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105458, '2022-08-03', 2242, 99515, 6169, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '114.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105459, '2022-08-03', 7704, 99516, 6169, NULL, '1.0000', '-1.5625', '-1.5625', '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 (105460, '2022-08-03', 7917, 99517, 6169, 52750, '4.0000', '2.1447', '2.1447', '0.7000', '0.7000', '63.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105461, '2022-08-03', 7588, 99518, 6169, 59378, '1.0000', '8.3822', '8.3822', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105462, '2022-08-03', 7560, 99519, 6169, 60094, '1.0000', '41.1025', '41.1025', '55.0000', '55.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105463, '2022-08-03', 2289, 99520, 6169, NULL, '3.0000', '2.5688', '2.5688', '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 (105464, '2022-08-03', 9274, 99521, 6169, 59096, '1.0000', '5.5040', '5.5040', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105465, '2022-08-03', 9785, 99522, 6169, 59352, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105466, '2022-08-03', 8097, 99523, 6169, NULL, '3.0000', '5.2765', '5.2765', '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 (105467, '2022-08-03', 9943, 99524, 6169, 60116, '1.0000', '9.8930', '9.8930', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105468, '2022-08-03', 7442, 99525, 6169, 53780, '1.0000', '11.8000', '11.8000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105469, '2022-08-03', 7544, 99526, 6169, NULL, '2.0000', '9.4300', '9.4300', '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 (105470, '2022-08-03', 1841, 99527, 6169, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105471, '2022-08-03', 7820, 99528, 6169, NULL, '1.0000', '10.5467', '10.5467', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105472, '2022-08-03', 8746, 99529, 6169, 57512, '1.0000', '3.2874', '3.2874', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105473, '2022-08-03', 7411, 99530, 6169, 60143, '3.0000', '1.4000', '1.4000', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105474, '2022-08-03', 7518, 99531, 6169, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105475, '2022-08-03', 9734, 99532, 6169, 60144, '4.0000', '0.3152', '0.3152', '0.7000', '0.7000', '90.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105476, '2022-08-03', 7482, 99533, 6169, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105477, '2022-08-03', 7814, 99534, 6169, NULL, '1.0000', '26.8335', '26.8335', '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 (105478, '2022-08-03', 7666, 99535, 6169, 60154, '1.0000', '7.4928', '7.4928', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105479, '2022-08-03', 7641, 99536, 6170, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105480, '2022-08-03', 9272, 99537, 6170, NULL, '1.0000', '3.1000', '3.1000', '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 (105481, '2022-08-03', 7852, 99538, 6170, NULL, '1.0000', '3.8153', '3.8153', '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 (105482, '2022-08-03', 2925, 99539, 6170, 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 (105483, '2022-08-03', 8032, 99540, 6170, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105484, '2022-08-03', 7639, 99541, 6170, 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 (105485, '2022-08-03', 9729, 99542, 6170, 60148, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105486, '2022-08-03', 7671, 99543, 6170, NULL, '1.0000', '861.3000', '861.3000', '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 (105487, '2022-08-03', 7926, 99544, 6170, NULL, '1.0000', '5.7999', '5.7999', '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 (105488, '2022-08-03', 9219, 99545, 6171, 58824, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105489, '2022-08-03', 1744, 99546, 6171, 58761, '1.0000', '31.7371', '31.7371', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105490, '2022-08-03', 2858, 99547, 6171, NULL, '2.0000', '1.0000', '1.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 (105491, '2022-08-03', 1755, 99548, 6171, 48740, '1.0000', '5.6333', '5.6333', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105492, '2022-08-03', 2169, 99549, 6171, 59977, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105493, '2022-08-03', 9715, 99550, 6171, 60068, '1.0000', '9.7509', '9.7509', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105494, '2022-08-03', 1863, 99551, 6171, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105495, '2022-08-03', 1864, 99552, 6171, 55788, '1.0000', '7.5750', '7.5750', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105496, '2022-08-03', 1340, 99553, 6171, 57979, '1.0000', '3.2900', '3.2900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105497, '2022-08-03', 1809, 99554, 6171, 58799, '1.0000', '10.3854', '10.3854', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105498, '2022-08-03', 2415, 99555, 6171, 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 (105499, '2022-08-03', 2777, 99556, 6171, 60031, '1.0000', '4.0667', '4.0667', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105500, '2022-08-03', 1425, 99557, 6171, 59959, '1.0000', '6.9322', '6.9322', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105501, '2022-08-03', 2511, 99558, 6171, 60055, '1.0000', '10.0175', '10.0175', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105502, '2022-08-03', 1812, 99559, 6171, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105503, '2022-08-03', 2821, 99560, 6171, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105504, '2022-08-03', 2169, 99561, 6171, 59977, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105505, '2022-08-03', 7802, 99562, 6171, 52269, '3.0000', '1.3468', '1.3468', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105506, '2022-08-03', 1328, 99563, 6171, 55767, '1.0000', '3.9079', '3.9079', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105507, '2022-08-03', 2394, 99564, 6171, 54994, '1.0000', '4.2728', '4.2728', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105508, '2022-08-03', 1410, 99565, 6171, 59957, '1.0000', '2.9374', '2.9374', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105509, '2022-08-03', 9747, 99566, 6171, 59965, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105510, '2022-08-03', 9747, 99567, 6171, 59965, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105511, '2022-08-03', 3001, 99568, 6171, NULL, '1.0000', '1.5000', '1.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 (105512, '2022-08-03', 2906, 99569, 6171, 18670, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (105513, '2022-08-03', 1783, 99570, 6171, 60061, '3.0000', '2.8473', '2.8473', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105514, '2022-08-03', 2098, 99571, 6171, 57999, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105515, '2022-08-03', 2619, 99572, 6171, NULL, '14.0000', '31.5000', '31.5000', '26.5000', '26.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 (105516, '2022-08-03', 2285, 99573, 6171, 60070, '1.0000', '41.6602', '41.6602', '65.5000', '65.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105517, '2022-08-03', 7411, 99574, 6171, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105518, '2022-08-03', 2237, 99575, 6171, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105519, '2022-08-03', 8933, 99576, 6171, 58002, '1.0000', '8.7475', '8.7475', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105520, '2022-08-03', 1592, 99577, 6171, 59995, '1.0000', '36.7235', '36.7235', '55.0000', '55.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105521, '2022-08-03', 1904, 99578, 6171, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105522, '2022-08-03', 1339, 99579, 6171, 60024, '1.0000', '1.8897', '1.8897', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105523, '2022-08-03', 7703, 99580, 6171, NULL, '1.0000', '0.6500', '0.6500', '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 (105524, '2022-08-03', 2135, 99581, 6171, NULL, '1.0000', '2.2504', '2.2504', '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 (105525, '2022-08-03', 2823, 99582, 6171, 59967, '1.0000', '7.5677', '7.5677', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105526, '2022-08-03', 1812, 99583, 6171, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105527, '2022-08-04', 2293, 99584, 6172, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.5000', '30.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 (105528, '2022-08-04', 2342, 99585, 6172, 3845, '-113.0000', '1.8600', '1.8600', '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 (105529, '2022-08-04', 2342, 99585, 6172, NULL, '123.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105530, '2022-08-04', 9399, 99586, 6172, NULL, '2.0000', '0.9800', '0.9800', '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 (105531, '2022-08-04', 9775, 99587, 6172, NULL, '1.0000', '7.9000', '7.9000', '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 (105532, '2022-08-04', 8490, 99588, 6172, NULL, '1.0000', '27.3000', '27.3000', '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 (105533, '2022-08-04', 1873, 99589, 6172, 16245, '-12.0000', '11.9500', '11.9500', '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 (105534, '2022-08-04', 1873, 99589, 6172, NULL, '13.0000', '11.9500', '11.9500', '20.0000', '20.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 (105535, '2022-08-04', 2346, 99590, 6172, NULL, '1.0000', '5.5000', '5.5000', '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 (105536, '2022-08-04', 2332, 99591, 6172, 3835, '-24.0000', '5.8900', '5.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 (105537, '2022-08-04', 2332, 99591, 6172, NULL, '25.0000', '5.8900', '5.8900', '10.5000', '10.5000', '-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 (105538, '2022-08-04', 1446, 99592, 6172, 5566, '-3.0000', '90.0000', '90.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 (105539, '2022-08-04', 1446, 99592, 6172, NULL, '4.0000', '90.0000', '90.0000', '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 (105540, '2022-08-04', 2135, 99593, 6172, 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 (105541, '2022-08-04', 8046, 99594, 6172, NULL, '1.0000', '1.5000', '1.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 (105542, '2022-08-04', 8933, 99595, 6172, NULL, '1.0000', '7.5000', '7.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 (105543, '2022-08-04', 9214, 99596, 6172, NULL, '1.0000', '9.6000', '9.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 (105544, '2022-08-04', 2332, 99597, 6172, 3835, '-24.0000', '5.8900', '5.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 (105545, '2022-08-04', 2332, 99597, 6172, NULL, '25.0000', '5.8900', '5.8900', '10.5000', '10.5000', '-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 (105546, '2022-08-04', 2693, 99598, 6172, 12285, '-9.0000', '25.3656', '25.3656', '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 (105547, '2022-08-04', 2693, 99598, 6172, NULL, '10.0000', '25.3656', '25.3656', '32.5000', '32.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 (105548, '2022-08-04', 2233, 99599, 6172, 2777, '-34.0000', '19.0200', '19.0200', '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 (105549, '2022-08-04', 2233, 99599, 6172, NULL, '35.0000', '19.0200', '19.0200', '39.0000', '39.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105550, '2022-08-04', 7411, 99600, 6172, NULL, '2.0000', '1.3500', '1.3500', '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 (105551, '2022-08-04', 2275, 99601, 6172, 2935, '-16.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 (105552, '2022-08-04', 2275, 99601, 6172, NULL, '18.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-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 (105553, '2022-08-04', 1787, 99602, 6172, 4905, '-27.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 (105554, '2022-08-04', 1787, 99602, 6172, NULL, '28.0000', '0.8100', '0.8100', '2.0000', '2.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 (105555, '2022-08-04', 2038, 99603, 6172, 6390, '-4.0000', '10.5000', '10.5000', '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 (105556, '2022-08-04', 2038, 99603, 6172, NULL, '5.0000', '10.5000', '10.5000', '22.0000', '22.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 (105557, '2022-08-04', 1700, 99604, 6172, 6227, '-6.0000', '8.0000', '8.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 (105558, '2022-08-04', 1700, 99604, 6172, NULL, '7.0000', '8.0000', '8.0000', '15.0000', '15.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 (105559, '2022-08-04', 1730, 99605, 6172, 11661, '-5.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 (105560, '2022-08-04', 1730, 99605, 6172, NULL, '6.0000', '23.9100', '23.9100', '32.0000', '32.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 (105561, '2022-08-04', 9649, 99606, 6172, NULL, '1.0000', '14.4100', '14.4100', '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 (105562, '2022-08-04', 2302, 99607, 6172, 2963, '-58.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 (105563, '2022-08-04', 2302, 99607, 6172, NULL, '59.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105564, '2022-08-04', 1772, 99608, 6172, 4893, '-15.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 (105565, '2022-08-04', 1772, 99608, 6172, NULL, '16.0000', '6.0500', '6.0500', '8.0000', '8.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 (105566, '2022-08-04', 2135, 99609, 6173, 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 (105567, '2022-08-04', 8743, 99610, 6173, NULL, '1.0000', '10.0000', '10.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 (105568, '2022-08-04', 2100, 99611, 6174, 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 (105569, '2022-08-04', 8937, 99612, 6174, NULL, '61.0000', '3.5000', '3.5000', '0.5000', '0.5000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105570, '2022-08-04', 8851, 99613, 6174, NULL, '13.0000', '16.6600', '16.6600', '1.5000', '1.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 (105571, '2022-08-04', 9862, 99614, 6174, NULL, '1.0000', '16.5000', '16.5000', '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 (105572, '2022-08-04', 8463, 99615, 6174, NULL, '1.0000', '18.0000', '18.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 (105573, '2022-08-04', 7562, 99616, 6174, NULL, '2.0000', '5.5300', '5.5300', '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 (105574, '2022-08-04', 7411, 99617, 6174, NULL, '1.0000', '1.3500', '1.3500', '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 (105575, '2022-08-04', 8063, 99618, 6174, NULL, '3.0000', '1.6000', '1.6000', '7.0000', '7.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 (105576, '2022-08-04', 7606, 99619, 6174, NULL, '1.0000', '4.8600', '4.8600', '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 (105577, '2022-08-04', 7444, 99620, 6174, 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 (105578, '2022-08-04', 8254, 99621, 6174, NULL, '1.0000', '25.9000', '25.9000', '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 (105579, '2022-08-04', 1665, 99622, 6174, 3235, '-148.0000', '1.3000', '1.3000', '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 (105580, '2022-08-04', 1665, 99622, 6174, NULL, '150.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-150.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105581, '2022-08-04', 2733, 99623, 6174, 14083, '-4.0000', '7.5000', '7.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 (105582, '2022-08-04', 2733, 99623, 6174, NULL, '5.0000', '7.5000', '7.5000', '12.0000', '12.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 (105583, '2022-08-04', 7478, 99624, 6174, NULL, '1.0000', '4.0000', '4.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 (105584, '2022-08-04', 1845, 99625, 6174, 6222, '-31.0000', '19.5000', '19.5000', '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 (105585, '2022-08-04', 1845, 99625, 6174, NULL, '32.0000', '19.5000', '19.5000', '30.5000', '30.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105586, '2022-08-04', 7382, 99626, 6174, NULL, '1.0000', '7.4500', '7.4500', '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 (105587, '2022-08-04', 7366, 99627, 6174, NULL, '1.0000', '7.0000', '7.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 (105588, '2022-08-04', 8208, 99628, 6174, NULL, '4.0000', '33.0000', '33.0000', '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 (105589, '2022-08-04', 7412, 99629, 6174, NULL, '1.0000', '1.5200', '1.5200', '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 (105590, '2022-08-04', 8415, 99630, 6174, NULL, '1.0000', '3.2500', '3.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 (105591, '2022-08-04', 1602, 99631, 6174, 5897, '-174.0000', '6.7859', '6.7859', '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 (105592, '2022-08-04', 1602, 99631, 6174, NULL, '175.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-175.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105593, '2022-08-04', 7780, 99632, 6174, NULL, '1.0000', '11.6000', '11.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 (105594, '2022-08-04', 7715, 99633, 6174, NULL, '1.0000', '1.8900', '1.8900', '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 (105595, '2022-08-04', 7709, 99634, 6174, NULL, '2.0000', '3.5000', '3.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 (105596, '2022-08-04', 1841, 99635, 6174, NULL, '1.0000', '142.5780', '142.5780', '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 (105597, '2022-08-04', 8395, 99636, 6174, NULL, '1.0000', '0.9700', '0.9700', '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 (105598, '2022-08-04', 7671, 99637, 6174, NULL, '2.0000', '15.5000', '15.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 (105599, '2022-08-04', 7745, 99638, 6174, NULL, '1.0000', '6.7000', '6.7000', '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 (105600, '2022-08-04', 7753, 99639, 6174, NULL, '1.0000', '3.4000', '3.4000', '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 (105601, '2022-08-04', 7514, 99640, 6174, NULL, '1.0000', '2.2500', '2.2500', '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 (105602, '2022-08-04', 9762, 99641, 6175, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105603, '2022-08-04', 2169, 99642, 6175, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105604, '2022-08-04', 9752, 99643, 6175, NULL, '1.0000', '0.8700', '0.8700', '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 (105605, '2022-08-04', 2643, 99644, 6175, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105606, '2022-08-04', 7411, 99645, 6175, NULL, '1.0000', '1.2819', '1.2819', '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 (105607, '2022-08-04', 1574, 99646, 6175, NULL, '1.0000', '1.7000', '1.7000', '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 (105608, '2022-08-04', 9734, 99647, 6175, 60360, '7.0000', '0.4261', '0.4261', '0.7000', '0.7000', '81.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105609, '2022-08-04', 7708, 99648, 6175, NULL, '1.0000', '6.3400', '6.3400', '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 (105610, '2022-08-04', 1771, 99649, 6175, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105611, '2022-08-04', 2332, 99650, 6175, 60281, '1.0000', '-41.5866', '-41.5866', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105612, '2022-08-04', 2384, 99651, 6175, NULL, '1.0000', '-1.7022', '-1.7022', '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 (105613, '2022-08-04', 2506, 99652, 6175, NULL, '1.0000', '-9.4377', '-9.4377', '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 (105614, '2022-08-04', 9382, 99653, 6176, NULL, '1.0000', '5.2000', '5.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 (105615, '2022-08-04', 9750, 99654, 6176, NULL, '1.0000', '2.7458', '2.7458', '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 (105616, '2022-08-04', 2167, 99655, 6176, NULL, '1.0000', '0.6663', '0.6663', '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 (105617, '2022-08-04', 8006, 99656, 6176, NULL, '1.0000', '30.0000', '30.0000', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105618, '2022-08-04', 2643, 99657, 6176, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105619, '2022-08-04', 7642, 99658, 6176, NULL, '1.0000', '2.6900', '2.6900', '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 (105620, '2022-08-04', 7859, 99659, 6176, NULL, '1.0000', '3.6000', '3.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 (105621, '2022-08-04', 1648, 99660, 6176, 34637, '1.0000', '5.6700', '5.6700', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105622, '2022-08-04', 2061, 99661, 6176, NULL, '1.0000', '-0.6387', '-0.6387', '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 (105623, '2022-08-04', 2061, 99662, 6176, NULL, '1.0000', '-0.6387', '-0.6387', '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 (105624, '2022-08-04', 2669, 99663, 6176, 23125, '1.0000', '24.3367', '24.3367', '32.0000', '32.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 (105625, '2022-08-04', 1687, 99664, 6176, 58146, '1.0000', '15.0626', '15.0626', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105626, '2022-08-04', 8184, 99665, 6176, NULL, '10.0000', '3.0310', '3.0310', '4.0000', '4.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 (105627, '2022-08-04', 1501, 99666, 6176, NULL, '1.0000', '0.3856', '0.3856', '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 (105628, '2022-08-04', 2642, 99667, 6176, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105629, '2022-08-04', 3056, 99668, 6176, 59878, '1.0000', '72.1500', '72.1500', '82.5000', '82.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105630, '2022-08-04', 7353, 99669, 6176, NULL, '2.0000', '0.1900', '0.1900', '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 (105631, '2022-08-04', 1910, 99670, 6176, NULL, '1.0000', '0.5756', '0.5756', '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 (105632, '2022-08-04', 2238, 99671, 6176, 55895, '1.0000', '55.5946', '55.5946', '73.0000', '73.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105633, '2022-08-04', 2169, 99672, 6176, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105634, '2022-08-04', 1562, 99673, 6176, 53666, '1.0000', '5.7883', '5.7883', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105635, '2022-08-04', 8208, 99674, 6176, NULL, '1.0000', '47.9541', '47.9541', '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 (105636, '2022-08-04', 9695, 99675, 6176, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '29.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105637, '2022-08-04', 2354, 99676, 6176, NULL, '1.0000', '28.4264', '28.4264', '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 (105638, '2022-08-04', 2315, 99677, 6176, 60316, '4.0000', '0.7700', '0.7700', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105639, '2022-08-04', 7708, 99678, 6176, NULL, '1.0000', '6.3400', '6.3400', '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 (105640, '2022-08-04', 1855, 99679, 6176, NULL, '1.0000', '1.4615', '1.4615', '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 (105641, '2022-08-04', 1912, 99680, 6176, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105642, '2022-08-04', 2821, 99681, 6176, NULL, '1.0000', '3.4037', '3.4037', '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 (105643, '2022-08-04', 1578, 99682, 6176, 59845, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105644, '2022-08-04', 2251, 99683, 6176, 59852, '1.0000', '14.9029', '14.9029', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105645, '2022-08-04', 1510, 99684, 6176, NULL, '1.0000', '-13.8480', '-13.8480', '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 (105646, '2022-08-04', 3024, 99685, 6176, 59699, '1.0000', '6.7023', '6.7023', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105647, '2022-08-04', 7859, 99686, 6176, NULL, '1.0000', '3.6000', '3.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 (105648, '2022-08-04', 1337, 99687, 6176, 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 (105649, '2022-08-04', 2754, 99688, 6176, NULL, '7.0000', '0.0800', '0.0800', '0.2000', '0.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 (105650, '2022-08-04', 1340, 99689, 6176, NULL, '2.0000', '3.6001', '3.6001', '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 (105651, '2022-08-04', 9965, 99690, 6176, 58075, '1.0000', '23.0000', '23.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105652, '2022-08-04', 7459, 99691, 6176, NULL, '1.0000', '-15.3118', '-15.3118', '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 (105653, '2022-08-04', 1306, 99692, 6176, 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 (105654, '2022-08-04', 7411, 99693, 6176, NULL, '1.0000', '1.2819', '1.2819', '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 (105655, '2022-08-04', 2919, 99694, 6176, NULL, '1.0000', '2.9000', '2.9000', '6.3000', '6.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 (105656, '2022-08-04', 2237, 99695, 6176, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105657, '2022-08-04', 2169, 99696, 6176, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105658, '2022-08-04', 1411, 99697, 6176, 57758, '1.0000', '25.9987', '25.9987', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105659, '2022-08-04', 1904, 99698, 6176, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105660, '2022-08-04', 2237, 99699, 6176, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105661, '2022-08-04', 2642, 99700, 6176, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105662, '2022-08-04', 7506, 99701, 6176, NULL, '2.0000', '15.0000', '15.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 (105663, '2022-08-04', 9482, 99702, 6176, 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 (105664, '2022-08-04', 2923, 99703, 6176, 60271, '1.0000', '13.2325', '13.2325', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105665, '2022-08-04', 1578, 99704, 6176, 59845, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105666, '2022-08-04', 2254, 99705, 6176, NULL, '1.0000', '-31.2200', '-31.2200', '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 (105667, '2022-08-04', 9750, 99706, 6176, NULL, '1.0000', '2.7458', '2.7458', '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 (105668, '2022-08-04', 2821, 99707, 6176, NULL, '1.0000', '3.4037', '3.4037', '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 (105669, '2022-08-04', 1946, 99708, 6176, NULL, '1.0000', '-6.7231', '-6.7231', '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 (105670, '2022-08-04', 2473, 99709, 6176, 59675, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105671, '2022-08-04', 8205, 99710, 6176, NULL, '1.0000', '2.9500', '2.9500', '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 (105672, '2022-08-04', 2285, 99711, 6176, NULL, '1.0000', '-159.5389', '-159.5389', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105673, '2022-08-04', 2315, 99712, 6176, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105674, '2022-08-04', 7871, 99713, 6176, NULL, '2.0000', '7.0900', '7.0900', '9.5000', '9.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 (105675, '2022-08-04', 9740, 99714, 6176, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105676, '2022-08-04', 2417, 99715, 6176, NULL, '1.0000', '3.7800', '3.7800', '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 (105677, '2022-08-04', 1863, 99716, 6176, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105678, '2022-08-04', 2695, 99717, 6176, 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 (105679, '2022-08-04', 2260, 99718, 6176, 54937, '3.0000', '4.7545', '4.7545', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105680, '2022-08-04', 2916, 99719, 6176, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105681, '2022-08-04', 7328, 99720, 6176, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105682, '2022-08-04', 1840, 99721, 6176, NULL, '2.0000', '0.2400', '0.2400', '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 (105683, '2022-08-04', 7473, 99722, 6176, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '33.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105684, '2022-08-04', 9828, 99723, 6176, NULL, '1.0000', '2.9100', '2.9100', '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 (105685, '2022-08-04', 9089, 99724, 6176, 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 (105686, '2022-08-04', 8746, 99725, 6176, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105687, '2022-08-04', 2543, 99726, 6176, 60263, '1.0000', '3.3251', '3.3251', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105688, '2022-08-04', 8759, 99727, 6176, NULL, '1.0000', '263.7140', '263.7140', '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 (105689, '2022-08-04', 9828, 99728, 6176, NULL, '2.0000', '2.9100', '2.9100', '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 (105690, '2022-08-04', 2169, 99729, 6176, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105691, '2022-08-04', 1855, 99730, 6176, NULL, '1.0000', '1.4615', '1.4615', '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 (105692, '2022-08-04', 2315, 99731, 6176, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105693, '2022-08-04', 7411, 99732, 6176, NULL, '1.0000', '1.2819', '1.2819', '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 (105694, '2022-08-04', 2262, 99733, 6176, 55557, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105695, '2022-08-04', 7398, 99734, 6176, NULL, '1.0000', '143.5000', '143.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 (105696, '2022-08-04', 2169, 99735, 6176, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105697, '2022-08-04', 8165, 99736, 6176, 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 (105698, '2022-08-04', 7641, 99737, 6177, NULL, '1.0000', '1.9000', '1.9000', '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 (105699, '2022-08-04', 1665, 99738, 6177, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105700, '2022-08-04', 2295, 99739, 6177, 54913, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105701, '2022-08-04', 7514, 99740, 6177, NULL, '1.0000', '2.2500', '2.2500', '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 (105702, '2022-08-04', 8759, 99741, 6177, NULL, '1.0000', '263.7140', '263.7140', '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 (105703, '2022-08-04', 9828, 99742, 6177, NULL, '2.0000', '2.9100', '2.9100', '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 (105704, '2022-08-04', 1578, 99743, 6177, 59845, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105705, '2022-08-04', 9734, 99744, 6177, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '79.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105706, '2022-08-04', 7564, 99745, 6177, NULL, '1.0000', '0.6400', '0.6400', '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 (105707, '2022-08-04', 7574, 99746, 6177, NULL, '1.0000', '8.2900', '8.2900', '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 (105708, '2022-08-04', 2821, 99747, 6177, NULL, '1.0000', '3.4037', '3.4037', '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 (105709, '2022-08-04', 8017, 99748, 6177, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105710, '2022-08-04', 2295, 99749, 6177, 54913, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105711, '2022-08-04', 1499, 99750, 6177, 52148, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '7.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105712, '2022-08-04', 1425, 99751, 6177, NULL, '2.0000', '324.2732', '324.2732', '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 (105713, '2022-08-04', 2821, 99752, 6177, NULL, '1.0000', '3.4037', '3.4037', '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 (105714, '2022-08-04', 2169, 99753, 6177, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105715, '2022-08-04', 1342, 99754, 6177, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105716, '2022-08-04', 2315, 99755, 6177, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105717, '2022-08-04', 7514, 99756, 6177, NULL, '1.0000', '2.2500', '2.2500', '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 (105718, '2022-08-04', 2088, 99757, 6177, 60330, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105719, '2022-08-04', 9848, 99758, 6177, 60301, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105720, '2022-08-04', 9726, 99759, 6177, 57740, '1.0000', '5.1598', '5.1598', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105721, '2022-08-04', 7411, 99760, 6177, NULL, '2.0000', '1.2819', '1.2819', '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 (105722, '2022-08-04', 1702, 99761, 6177, NULL, '1.0000', '-12.4833', '-12.4833', '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 (105723, '2022-08-04', 9532, 99762, 6177, 59689, '1.0000', '11.0235', '11.0235', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105724, '2022-08-04', 2299, 99763, 6177, 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 (105725, '2022-08-04', 1501, 99764, 6177, NULL, '1.0000', '0.3856', '0.3856', '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 (105726, '2022-08-04', 8595, 99765, 6177, NULL, '2.0000', '-3.2120', '-3.2120', '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 (105727, '2022-08-04', 1805, 99766, 6177, NULL, '1.0000', '40.8080', '40.8080', '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 (105728, '2022-08-04', 2066, 99767, 6177, 54883, '1.0000', '0.5100', '0.5100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105729, '2022-08-04', 2066, 99767, 6177, NULL, '2.0000', '0.5100', '0.5100', '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 (105730, '2022-08-04', 1501, 99768, 6177, NULL, '1.0000', '0.3856', '0.3856', '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 (105731, '2022-08-04', 2167, 99769, 6177, NULL, '1.0000', '0.6663', '0.6663', '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 (105732, '2022-08-04', 1665, 99770, 6177, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105733, '2022-08-04', 7411, 99771, 6177, NULL, '2.0000', '1.2819', '1.2819', '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 (105734, '2022-08-04', 2614, 99772, 6177, 60219, '1.0000', '17.1400', '17.1400', '38.5000', '38.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105735, '2022-08-04', 2258, 99773, 6177, 39837, '1.0000', '2.5781', '2.5781', '47.5000', '47.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105736, '2022-08-04', 7385, 99774, 6177, 58142, '10.0000', '3.1710', '3.1710', '4.0000', '4.0000', '136.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105737, '2022-08-04', 9695, 99775, 6177, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '28.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105738, '2022-08-04', 8164, 99776, 6177, NULL, '1.0000', '3.1200', '3.1200', '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 (105739, '2022-08-04', 9942, 99777, 6177, 59856, '1.0000', '13.1000', '13.1000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105740, '2022-08-04', 2649, 99778, 6177, 60247, '1.0000', '99.3000', '99.3000', '131.0000', '131.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105741, '2022-08-04', 8085, 99779, 6177, NULL, '3.0000', '14.0000', '14.0000', '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 (105742, '2022-08-04', 2440, 99780, 6177, 59696, '1.0000', '6.9575', '6.9575', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105743, '2022-08-04', 3029, 99781, 6177, 60266, '1.0000', '59.9505', '59.9505', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105744, '2022-08-04', 8017, 99782, 6177, 59863, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105745, '2022-08-04', 1425, 99783, 6177, NULL, '1.0000', '324.2732', '324.2732', '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 (105746, '2022-08-04', 7514, 99784, 6177, NULL, '2.0000', '2.2500', '2.2500', '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 (105747, '2022-08-04', 9151, 99785, 6177, 58249, '1.0000', '9.7000', '9.7000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105748, '2022-08-04', 1702, 99786, 6177, NULL, '1.0000', '-12.4833', '-12.4833', '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 (105749, '2022-08-04', 7411, 99787, 6177, NULL, '1.0000', '1.2819', '1.2819', '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 (105750, '2022-08-04', 1690, 99788, 6177, 60355, '1.0000', '8.6455', '8.6455', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105751, '2022-08-04', 7913, 99789, 6177, NULL, '2.0000', '2.5500', '2.5500', '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 (105752, '2022-08-04', 7514, 99790, 6177, NULL, '2.0000', '2.2500', '2.2500', '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 (105753, '2022-08-04', 7641, 99791, 6177, NULL, '1.0000', '1.9000', '1.9000', '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 (105754, '2022-08-04', 2352, 99792, 6177, NULL, '5.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (105755, '2022-08-04', 2345, 99793, 6177, 60322, '1.0000', '7.6701', '7.6701', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105756, '2022-08-04', 8207, 99794, 6177, NULL, '2.0000', '0.0000', '0.0000', '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 (105757, '2022-08-04', 7411, 99795, 6177, NULL, '2.0000', '1.2819', '1.2819', '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 (105758, '2022-08-04', 8079, 99796, 6177, NULL, '1.0000', '16.6100', '16.6100', '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 (105759, '2022-08-04', 2295, 99797, 6177, 54913, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105760, '2022-08-04', 1342, 99798, 6177, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105761, '2022-08-04', 1771, 99799, 6177, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105762, '2022-08-04', 1342, 99800, 6177, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105763, '2022-08-04', 7530, 99801, 6177, 45187, '1.0000', '4.3208', '4.3208', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105764, '2022-08-04', 8444, 99802, 6177, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105765, '2022-08-04', 2295, 99803, 6177, 54913, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105766, '2022-08-04', 2167, 99804, 6177, NULL, '1.0000', '0.6663', '0.6663', '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 (105767, '2022-08-04', 8165, 99805, 6177, 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 (105768, '2022-08-04', 8011, 99806, 6177, NULL, '1.0000', '0.9500', '0.9500', '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 (105769, '2022-08-04', 9957, 99807, 6177, NULL, '1.0000', '8.8000', '8.8000', '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 (105770, '2022-08-04', 1743, 99808, 6177, NULL, '1.0000', '3.5650', '3.5650', '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 (105771, '2022-08-04', 8202, 99809, 6177, NULL, '1.0000', '1.6600', '1.6600', '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 (105772, '2022-08-04', 9734, 99810, 6177, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '79.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105773, '2022-08-04', 1669, 99811, 6177, NULL, '3.0000', '9.3000', '9.3000', '14.0000', '14.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 (105774, '2022-08-04', 1871, 99812, 6177, NULL, '1.0000', '-33.0401', '-33.0401', '3.7000', '3.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 (105775, '2022-08-04', 1339, 99813, 6177, 60346, '3.0000', '2.1997', '2.1997', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105776, '2022-08-04', 7639, 99814, 6177, 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 (105777, '2022-08-04', 2381, 99815, 6177, 58123, '1.0000', '14.3540', '14.3540', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105778, '2022-08-04', 8059, 99816, 6177, 59688, '1.0000', '11.4900', '11.4900', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105779, '2022-08-04', 2169, 99817, 6177, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105780, '2022-08-04', 2163, 99818, 6177, 57777, '1.0000', '16.5835', '16.5835', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105781, '2022-08-04', 9939, 99819, 6177, 58054, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105782, '2022-08-04', 9828, 99820, 6177, NULL, '1.0000', '2.9100', '2.9100', '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 (105783, '2022-08-04', 7743, 99821, 6177, NULL, '1.0000', '7.3900', '7.3900', '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 (105784, '2022-08-04', 7886, 99822, 6178, 59133, '1.0000', '4.6185', '4.6185', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105785, '2022-08-04', 7781, 99823, 6178, NULL, '6.0000', '6.8496', '6.8496', '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 (105786, '2022-08-04', 7544, 99824, 6178, NULL, '4.0000', '9.4300', '9.4300', '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 (105787, '2022-08-04', 8918, 99825, 6178, 59368, '2.0000', '2.5563', '2.5563', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105788, '2022-08-04', 7671, 99826, 6178, NULL, '1.0000', '861.3000', '861.3000', '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 (105789, '2022-08-04', 9324, 99827, 6178, 44221, '1.0000', '13.4546', '13.4546', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105790, '2022-08-04', 2295, 99828, 6178, NULL, '3.0000', '-2.3086', '-2.3086', '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 (105791, '2022-08-04', 7703, 99829, 6178, NULL, '2.0000', '-4961.0093', '-4961.0093', '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 (105792, '2022-08-04', 2241, 99830, 6178, 59109, '1.0000', '6.5470', '6.5470', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105793, '2022-08-04', 8184, 99831, 6178, 56035, '10.0000', '2.9728', '2.9728', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105794, '2022-08-04', 7412, 99832, 6178, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105795, '2022-08-04', 7509, 99833, 6178, 60146, '1.0000', '9.0351', '9.0351', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105796, '2022-08-04', 7642, 99834, 6178, 59333, '1.0000', '5.9844', '5.9844', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105797, '2022-08-04', 7641, 99835, 6178, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105798, '2022-08-04', 8933, 99836, 6178, 32140, '1.0000', '10.0000', '10.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105799, '2022-08-04', 8677, 99837, 6178, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105800, '2022-08-04', 2416, 99838, 6178, 57521, '1.0000', '0.0332', '0.0332', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105801, '2022-08-04', 9463, 99839, 6178, 59353, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105802, '2022-08-04', 7586, 99840, 6178, 57434, '1.0000', '6.5122', '6.5122', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105803, '2022-08-04', 9329, 99841, 6178, 60105, '1.0000', '-4412.4155', '-4412.4155', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105804, '2022-08-04', 2656, 99842, 6178, 60187, '1.0000', '1.7540', '1.7540', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105805, '2022-08-04', 7762, 99843, 6178, 57413, '1.0000', '0.7818', '0.7818', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105806, '2022-08-04', 7590, 99844, 6178, NULL, '1.0000', '6.0509', '6.0509', '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 (105807, '2022-08-04', 7708, 99845, 6178, 60126, '1.0000', '8.3018', '8.3018', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105808, '2022-08-04', 7690, 99846, 6178, 59412, '1.0000', '17.7730', '17.7730', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105809, '2022-08-04', 7709, 99847, 6178, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (105810, '2022-08-04', 7385, 99848, 6178, 59399, '5.0000', '6.5272', '6.5272', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105811, '2022-08-04', 7396, 99849, 6178, 60095, '1.0000', '13.0105', '13.0105', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105812, '2022-08-04', 2740, 99850, 6178, 59093, '1.0000', '11.5275', '11.5275', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105813, '2022-08-04', 7780, 99851, 6178, NULL, '1.0000', '12.9226', '12.9226', '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 (105814, '2022-08-04', 1845, 99852, 6178, 56592, '1.0000', '22.2501', '22.2501', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105815, '2022-08-04', 1339, 99853, 6178, 59327, '1.0000', '2.3147', '2.3147', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105816, '2022-08-04', 8457, 99854, 6178, NULL, '1.0000', '-8.0516', '-8.0516', '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 (105817, '2022-08-04', 9271, 99855, 6178, 56566, '1.0000', '1.8173', '1.8173', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105818, '2022-08-04', 8866, 99856, 6178, NULL, '1.0000', '0.4300', '0.4300', '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 (105819, '2022-08-04', 7634, 99857, 6178, 60152, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105820, '2022-08-04', 7357, 99858, 6178, NULL, '1.0000', '11.7500', '11.7500', '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 (105821, '2022-08-04', 9942, 99859, 6178, 60115, '1.0000', '9.2802', '9.2802', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105822, '2022-08-04', 2699, 99860, 6178, NULL, '1.0000', '3.0000', '3.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 (105823, '2022-08-04', 2506, 99861, 6178, 59309, '2.0000', '4.6791', '4.6791', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105824, '2022-08-04', 9711, 99862, 6178, NULL, '1.0000', '5.2800', '5.2800', '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 (105825, '2022-08-04', 7447, 99863, 6178, NULL, '3.0000', '22.2074', '22.2074', '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 (105826, '2022-08-04', 7781, 99864, 6178, NULL, '6.0000', '6.8496', '6.8496', '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 (105827, '2022-08-04', 7671, 99865, 6178, NULL, '1.0000', '861.3000', '861.3000', '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 (105828, '2022-08-04', 7896, 99866, 6178, 56699, '1.0000', '52.8333', '52.8333', '45.5000', '45.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105829, '2022-08-04', 7368, 99867, 6178, 57414, '1.0000', '7.4347', '7.4347', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105830, '2022-08-04', 9794, 99868, 6178, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105831, '2022-08-04', 8677, 99869, 6178, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105832, '2022-08-04', 2740, 99870, 6178, 59093, '1.0000', '11.5275', '11.5275', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105833, '2022-08-04', 7518, 99871, 6178, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105834, '2022-08-04', 8097, 99872, 6178, NULL, '3.0000', '5.2765', '5.2765', '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 (105835, '2022-08-04', 1771, 99873, 6178, 39531, '1.0000', '11.9058', '11.9058', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105836, '2022-08-04', 7666, 99874, 6178, 60154, '1.0000', '7.4928', '7.4928', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105837, '2022-08-04', 2102, 99875, 6178, 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 (105838, '2022-08-04', 7457, 99876, 6178, 60134, '1.0000', '4.6990', '4.6990', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105839, '2022-08-04', 8167, 99877, 6178, 56519, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105840, '2022-08-04', 7411, 99878, 6178, 60143, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105841, '2022-08-04', 8032, 99879, 6178, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105842, '2022-08-04', 7899, 99880, 6178, 59172, '1.0000', '3.5357', '3.5357', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105843, '2022-08-04', 9734, 99881, 6178, 60144, '4.0000', '0.3152', '0.3152', '0.7000', '0.7000', '82.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105844, '2022-08-04', 2352, 99882, 6179, NULL, '10.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (105845, '2022-08-04', 1689, 99883, 6179, 60349, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105846, '2022-08-04', 2295, 99884, 6179, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105847, '2022-08-04', 2242, 99885, 6179, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105848, '2022-08-04', 7913, 99886, 6179, NULL, '3.0000', '2.5500', '2.5500', '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 (105849, '2022-08-04', 2738, 99887, 6179, 60282, '1.0000', '9.3067', '9.3067', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105850, '2022-08-04', 2730, 99888, 6179, 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 (105851, '2022-08-04', 7411, 99889, 6179, NULL, '1.0000', '1.2819', '1.2819', '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 (105852, '2022-08-04', 2242, 99890, 6179, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105853, '2022-08-04', 7886, 99891, 6179, NULL, '1.0000', '14.5000', '14.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 (105854, '2022-08-04', 2283, 99892, 6179, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105855, '2022-08-04', 2643, 99893, 6179, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105856, '2022-08-04', 7483, 99894, 6179, 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 (105857, '2022-08-04', 9979, 99895, 6179, 60279, '1.0000', '13.9000', '13.9000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105858, '2022-08-04', 2740, 99896, 6179, 60236, '1.0000', '11.2413', '11.2413', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105859, '2022-08-04', 1670, 99897, 6179, NULL, '1.0000', '-32.2503', '-32.2503', '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 (105860, '2022-08-04', 2068, 99898, 6179, NULL, '1.0000', '14.6943', '14.6943', '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 (105861, '2022-08-04', 2315, 99899, 6179, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105862, '2022-08-04', 1912, 99900, 6179, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105863, '2022-08-04', 1621, 99901, 6179, 60228, '1.0000', '17.1389', '17.1389', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105864, '2022-08-04', 2237, 99902, 6179, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105865, '2022-08-04', 1342, 99903, 6179, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105866, '2022-08-04', 9750, 99904, 6179, NULL, '1.0000', '2.7458', '2.7458', '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 (105867, '2022-08-04', 9965, 99905, 6179, 58075, '1.0000', '23.0000', '23.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105868, '2022-08-04', 9695, 99906, 6179, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '27.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105869, '2022-08-04', 2242, 99907, 6179, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105870, '2022-08-04', 9828, 99908, 6179, NULL, '1.0000', '2.9100', '2.9100', '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 (105871, '2022-08-04', 1307, 99909, 6179, NULL, '1.0000', '-106.4636', '-106.4636', '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 (105872, '2022-08-04', 7743, 99910, 6179, NULL, '1.0000', '7.3900', '7.3900', '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 (105873, '2022-08-04', 1874, 99911, 6179, NULL, '1.0000', '6.1000', '6.1000', '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 (105874, '2022-08-04', 1999, 99912, 6179, 59704, '1.0000', '-1.1834', '-1.1834', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105875, '2022-08-04', 7639, 99913, 6179, 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 (105876, '2022-08-04', 2342, 99914, 6179, 58159, '3.0000', '2.3666', '2.3666', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105877, '2022-08-04', 1855, 99915, 6179, NULL, '1.0000', '1.4615', '1.4615', '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 (105878, '2022-08-04', 8772, 99916, 6179, 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 (105879, '2022-08-04', 9828, 99917, 6179, NULL, '1.0000', '2.9100', '2.9100', '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 (105880, '2022-08-04', 2108, 99918, 6179, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105881, '2022-08-04', 2237, 99919, 6179, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105882, '2022-08-04', 2643, 99920, 6179, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105883, '2022-08-04', 2022, 99921, 6179, 48945, '1.0000', '3.8333', '3.8333', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105884, '2022-08-04', 2986, 99922, 6179, 59900, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105885, '2022-08-04', 7777, 99923, 6179, NULL, '1.0000', '9.5000', '9.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 (105886, '2022-08-04', 8772, 99924, 6179, 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 (105887, '2022-08-04', 7482, 99925, 6180, 57429, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105888, '2022-08-04', 2315, 99926, 6180, 60129, '2.0000', '0.7586', '0.7586', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105889, '2022-08-04', 2242, 99927, 6180, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '111.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105890, '2022-08-04', 1855, 99928, 6180, 56023, '2.0000', '1.4699', '1.4699', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105891, '2022-08-04', 7743, 99929, 6180, NULL, '1.0000', '919779.6853', '919779.6853', '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 (105892, '2022-08-04', 7518, 99930, 6180, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105893, '2022-08-04', 7714, 99931, 6180, NULL, '2.0000', '0.4200', '0.4200', '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 (105894, '2022-08-04', 7412, 99932, 6180, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105895, '2022-08-04', 2315, 99933, 6180, 60129, '1.0000', '0.7586', '0.7586', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105896, '2022-08-04', 7704, 99934, 6180, NULL, '1.0000', '-1.5625', '-1.5625', '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 (105897, '2022-08-04', 7674, 99935, 6180, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105898, '2022-08-04', 7724, 99936, 6180, 52027, '1.0000', '9.7900', '9.7900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105899, '2022-08-04', 7593, 99937, 6180, 60160, '1.0000', '3.0249', '3.0249', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105900, '2022-08-04', 7730, 99938, 6180, 60195, '3.0000', '0.0723', '0.0723', '0.2000', '0.2000', '144.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105901, '2022-08-04', 7752, 99939, 6180, 46196, '1.0000', '2.4834', '2.4834', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105902, '2022-08-04', 7756, 99940, 6180, NULL, '1.0000', '27.9277', '27.9277', '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 (105903, '2022-08-04', 7865, 99941, 6180, 57391, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105904, '2022-08-04', 9894, 99942, 6180, 59344, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105905, '2022-08-04', 1863, 99943, 6181, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105906, '2022-08-04', 1904, 99944, 6181, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105907, '2022-08-04', 1525, 99945, 6181, 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 (105908, '2022-08-04', 2169, 99946, 6181, 59977, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105909, '2022-08-04', 2607, 99947, 6181, 42956, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '5.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105910, '2022-08-04', 1450, 99948, 6181, NULL, '10.0000', '0.8255', '0.8255', '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 (105911, '2022-08-04', 7411, 99949, 6181, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105912, '2022-08-04', 2880, 99950, 6181, 17905, '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 (105913, '2022-08-04', 1602, 99951, 6181, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105914, '2022-08-04', 2178, 99952, 6181, 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 (105915, '2022-08-04', 2580, 99953, 6181, 59042, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105916, '2022-08-04', 7411, 99954, 6181, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105917, '2022-08-04', 2821, 99955, 6181, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105918, '2022-08-04', 7917, 99956, 6181, NULL, '9.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (105919, '2022-08-04', 2653, 99957, 6181, 11143, '1.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 (105920, '2022-08-04', 2251, 99958, 6181, 60076, '1.0000', '12.8798', '12.8798', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105921, '2022-08-04', 2255, 99959, 6181, 60039, '1.0000', '21.5389', '21.5389', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105922, '2022-08-04', 1812, 99960, 6181, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105923, '2022-08-04', 2316, 99961, 6181, 49410, '1.0000', '47.6625', '47.6625', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105924, '2022-08-04', 2345, 99962, 6181, 56725, '1.0000', '4.9044', '4.9044', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105925, '2022-08-04', 7375, 99963, 6181, NULL, '10.0000', '5.3000', '5.3000', '7.0000', '7.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 (105926, '2022-08-04', 1525, 99964, 6181, NULL, '3.0000', '90.0000', '90.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 (105927, '2022-08-04', 9724, 99965, 6181, 46080, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105928, '2022-08-04', 2546, 99966, 6181, 49062, '1.0000', '12.3150', '12.3150', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105929, '2022-08-04', 1763, 99967, 6181, 60050, '1.0000', '5.0170', '5.0170', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105930, '2022-08-04', 2302, 99968, 6181, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105931, '2022-08-04', 1904, 99969, 6181, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105932, '2022-08-04', 2169, 99970, 6182, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105933, '2022-08-04', 2821, 99971, 6182, NULL, '1.0000', '3.4037', '3.4037', '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 (105934, '2022-08-04', 2169, 99972, 6182, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105935, '2022-08-04', 8444, 99973, 6182, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105936, '2022-08-04', 2655, 99974, 6182, NULL, '1.0000', '-16.0142', '-16.0142', '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 (105937, '2022-08-04', 9824, 99975, 6182, NULL, '1.0000', '1.3000', '1.3000', '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 (105938, '2022-08-04', 7411, 99976, 6182, NULL, '1.0000', '1.2819', '1.2819', '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 (105939, '2022-08-04', 2650, 99977, 6182, NULL, '1.0000', '8.0748', '8.0748', '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 (105940, '2022-08-04', 9828, 99978, 6182, NULL, '1.0000', '2.9100', '2.9100', '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 (105941, '2022-08-04', 2643, 99979, 6182, 59706, '2.0000', '1.0382', '1.0382', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105942, '2022-08-04', 7411, 99980, 6182, NULL, '1.0000', '1.2819', '1.2819', '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 (105943, '2022-08-04', 8208, 99981, 6182, NULL, '1.0000', '47.9541', '47.9541', '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 (105944, '2022-08-04', 2289, 99982, 6182, NULL, '1.0000', '0.3611', '0.3611', '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 (105945, '2022-08-04', 1840, 99983, 6182, NULL, '1.0000', '0.2400', '0.2400', '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 (105946, '2022-08-04', 7328, 99984, 6182, NULL, '1.0000', '11.8200', '11.8200', '0.4000', '0.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 (105947, '2022-08-04', 2893, 99985, 6182, 60362, '1.0000', '9.1280', '9.1280', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105948, '2022-08-04', 8717, 99986, 6182, NULL, '1.0000', '4.7000', '4.7000', '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 (105949, '2022-08-04', 1309, 99987, 6182, 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 (105950, '2022-08-04', 9736, 99988, 6182, NULL, '1.0000', '5.0278', '5.0278', '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 (105951, '2022-08-04', 2108, 99989, 6182, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105952, '2022-08-04', 1501, 99990, 6182, NULL, '1.0000', '0.3856', '0.3856', '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 (105953, '2022-08-04', 9831, 99991, 6182, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105954, '2022-08-04', 2169, 99992, 6182, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105955, '2022-08-04', 9734, 99993, 6182, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '75.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105956, '2022-08-04', 7411, 99994, 6182, NULL, '1.0000', '1.2819', '1.2819', '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 (105957, '2022-08-04', 2237, 99995, 6182, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105958, '2022-08-04', 8017, 99996, 6182, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105959, '2022-08-04', 1311, 99997, 6182, NULL, '1.0000', '0.3700', '0.3700', '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 (105960, '2022-08-04', 1516, 99998, 6182, 48873, '1.0000', '15.7600', '15.7600', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105961, '2022-08-04', 1812, 99999, 6182, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105962, '2022-08-04', 9747, 100000, 6182, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105963, '2022-08-04', 1912, 100001, 6182, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105964, '2022-08-04', 1912, 100001, 6182, NULL, '2.0000', '0.6868', '0.6868', '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 (105965, '2022-08-04', 7514, 100002, 6182, NULL, '1.0000', '2.2500', '2.2500', '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 (105966, '2022-08-04', 1904, 100003, 6182, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105967, '2022-08-04', 7779, 100004, 6182, NULL, '1.0000', '0.6200', '0.6200', '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 (105968, '2022-08-04', 1839, 100005, 6182, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (105969, '2022-08-04', 2066, 100006, 6182, NULL, '1.0000', '0.5100', '0.5100', '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 (105970, '2022-08-04', 1499, 100007, 6182, 52148, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '6.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105971, '2022-08-04', 1912, 100008, 6182, 37802, '1.0000', '0.6868', '0.6868', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105972, '2022-08-04', 2655, 100009, 6182, NULL, '1.0000', '-16.0142', '-16.0142', '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 (105973, '2022-08-04', 7641, 100010, 6182, NULL, '1.0000', '1.9000', '1.9000', '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 (105974, '2022-08-04', 1637, 100011, 6182, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105975, '2022-08-04', 7741, 100012, 6182, NULL, '1.0000', '-174.4114', '-174.4114', '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 (105976, '2022-08-04', 1609, 100013, 6182, 57780, '1.0000', '33.7500', '33.7500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105977, '2022-08-04', 9734, 100014, 6182, 60360, '1.0000', '0.4261', '0.4261', '0.7000', '0.7000', '76.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105978, '2022-08-04', 2169, 100015, 6182, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105979, '2022-08-04', 1342, 100016, 6182, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105980, '2022-08-04', 2283, 100017, 6182, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105981, '2022-08-04', 8207, 100018, 6182, NULL, '1.0000', '0.0000', '0.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 (105982, '2022-08-04', 2315, 100019, 6182, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105983, '2022-08-04', 1812, 100020, 6182, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105984, '2022-08-04', 1493, 100021, 6182, NULL, '1.0000', '-174.0400', '-174.0400', '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 (105985, '2022-08-04', 1489, 100022, 6182, 48963, '1.0000', '36.0600', '36.0600', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105986, '2022-08-04', 2363, 100023, 6182, NULL, '1.0000', '3.2771', '3.2771', '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 (105987, '2022-08-04', 9214, 100024, 6182, NULL, '1.0000', '17.5000', '17.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 (105988, '2022-08-04', 8207, 100025, 6182, NULL, '1.0000', '0.0000', '0.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 (105989, '2022-08-04', 2088, 100026, 6182, 60330, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105990, '2022-08-04', 7859, 100027, 6182, NULL, '1.0000', '3.6000', '3.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 (105991, '2022-08-04', 8011, 100028, 6182, NULL, '1.0000', '0.9500', '0.9500', '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 (105992, '2022-08-04', 2342, 100029, 6182, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105993, '2022-08-04', 8878, 100030, 6182, NULL, '2.0000', '6.0509', '6.0509', '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 (105994, '2022-08-04', 1828, 100031, 6182, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105995, '2022-08-04', 2245, 100032, 6182, 51375, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105996, '2022-08-04', 8207, 100033, 6182, NULL, '1.0000', '0.0000', '0.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 (105997, '2022-08-04', 2169, 100034, 6182, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105998, '2022-08-04', 2356, 100035, 6182, NULL, '1.0000', '38.9800', '38.9800', '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 (105999, '2022-08-04', 1409, 100036, 6182, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106000, '2022-08-04', 2642, 100037, 6182, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106001, '2022-08-04', 1812, 100038, 6182, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106002, '2022-08-04', 7741, 100039, 6182, NULL, '1.0000', '-174.4114', '-174.4114', '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 (106003, '2022-08-04', 1694, 100040, 6182, 53648, '1.0000', '7.4679', '7.4679', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106004, '2022-08-04', 2169, 100041, 6182, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106005, '2022-08-04', 7411, 100042, 6182, NULL, '1.0000', '1.2819', '1.2819', '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 (106006, '2022-08-04', 9740, 100043, 6182, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106007, '2022-08-04', 1383, 100044, 6182, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106008, '2022-08-04', 7713, 100045, 6182, 59895, '1.0000', '0.1598', '0.1598', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106009, '2022-08-04', 1307, 100046, 6182, NULL, '1.0000', '-106.4636', '-106.4636', '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 (106010, '2022-08-04', 2943, 100047, 6182, 59620, '1.0000', '3.8543', '3.8543', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106011, '2022-08-04', 8677, 100048, 6182, NULL, '2.0000', '1026.1382', '1026.1382', '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 (106012, '2022-08-04', 7707, 100049, 6182, NULL, '1.0000', '7.0000', '7.0000', '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 (106013, '2022-08-04', 9514, 100050, 6182, 57107, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106014, '2022-08-04', 2169, 100051, 6182, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106015, '2022-08-04', 8183, 100052, 6182, NULL, '2.0000', '2774.2425', '2774.2425', '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 (106016, '2022-08-04', 9886, 100053, 6182, 57755, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106017, '2022-08-04', 1687, 100054, 6182, 58146, '1.0000', '15.0626', '15.0626', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106018, '2022-08-04', 1687, 100054, 6182, 56467, '1.0000', '15.0626', '15.0626', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106019, '2022-08-04', 2061, 100055, 6182, NULL, '2.0000', '-0.6387', '-0.6387', '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 (106020, '2022-08-04', 1521, 100056, 6182, NULL, '1.0000', '-770.4750', '-770.4750', '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 (106021, '2022-08-04', 9482, 100057, 6182, 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 (106022, '2022-08-04', 7743, 100058, 6182, NULL, '1.0000', '7.3900', '7.3900', '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 (106023, '2022-08-04', 2315, 100059, 6182, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106024, '2022-08-04', 7744, 100060, 6182, NULL, '2.0000', '2.5833', '2.5833', '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 (106025, '2022-08-04', 8771, 100061, 6183, 59651, '1.0000', '6.9441', '6.9441', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106026, '2022-08-04', 8771, 100061, 6183, NULL, '1.0000', '6.9441', '6.9441', '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 (106027, '2022-08-04', 9832, 100062, 6183, 57495, '2.0000', '1.1069', '1.1069', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106028, '2022-08-04', 9831, 100063, 6183, 57496, '2.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106029, '2022-08-04', 9828, 100064, 6183, NULL, '2.0000', '2.9100', '2.9100', '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 (106030, '2022-08-04', 1754, 100065, 6184, 59980, '1.0000', '32.0617', '32.0617', '23.5000', '23.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106031, '2022-08-04', 1859, 100066, 6185, 57950, '1.0000', '49.8495', '49.8495', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106032, '2022-08-05', 2237, 100067, 6186, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106033, '2022-08-05', 1863, 100068, 6186, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106034, '2022-08-05', 2769, 100069, 6186, 58760, '1.0000', '2.0708', '2.0708', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106035, '2022-08-05', 2769, 100069, 6186, NULL, '1.0000', '2.0708', '2.0708', '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 (106036, '2022-08-05', 1602, 100070, 6186, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106037, '2022-08-05', 1637, 100071, 6186, 56899, '2.0000', '191.7389', '191.7389', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106038, '2022-08-05', 1901, 100072, 6186, 5505, '2.0000', '2.0100', '2.0100', '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 (106039, '2022-08-05', 2283, 100073, 6186, 56961, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106040, '2022-08-05', 1828, 100074, 6186, 33003, '1.0000', '0.7300', '0.7300', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 237);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106041, '2022-08-05', 2169, 100075, 6186, 59977, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106042, '2022-08-05', 1386, 100076, 6186, 60073, '1.0000', '185.1788', '185.1788', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106043, '2022-08-05', 2315, 100077, 6186, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106044, '2022-08-05', 1781, 100078, 6186, 58607, '1.0000', '4.8500', '4.8500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106045, '2022-08-05', 1425, 100079, 6186, 59959, '1.0000', '6.9322', '6.9322', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106046, '2022-08-05', 2152, 100080, 6186, NULL, '1.0000', '14.0800', '14.0800', '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 (106047, '2022-08-05', 1450, 100081, 6186, NULL, '3.0000', '0.8255', '0.8255', '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 (106048, '2022-08-05', 1689, 100082, 6187, 60053, '1.0000', '14.3061', '14.3061', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106049, '2022-08-05', 1871, 100083, 6187, 59999, '3.0000', '4.6908', '4.6908', '3.7000', '3.7000', '57.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106050, '2022-08-05', 2256, 100084, 6187, 60054, '1.0000', '15.4874', '15.4874', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106051, '2022-08-05', 1340, 100085, 6188, NULL, '1.0000', '3.6001', '3.6001', '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 (106052, '2022-08-05', 1874, 100086, 6188, NULL, '1.0000', '6.1000', '6.1000', '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 (106053, '2022-08-05', 9740, 100087, 6188, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106054, '2022-08-05', 1382, 100088, 6188, 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 (106055, '2022-08-05', 2169, 100089, 6188, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106056, '2022-08-05', 2294, 100090, 6188, 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 (106057, '2022-08-05', 2293, 100091, 6188, NULL, '3.0000', '-17.4320', '-17.4320', '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 (106058, '2022-08-05', 1334, 100092, 6188, 53239, '2.0000', '0.8419', '0.8419', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106059, '2022-08-05', 9683, 100093, 6188, 59648, '1.0000', '-1.0523', '-1.0523', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106060, '2022-08-05', 1867, 100094, 6188, 60276, '1.0000', '10.8114', '10.8114', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106061, '2022-08-05', 2734, 100095, 6188, 56448, '1.0000', '4.7222', '4.7222', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106062, '2022-08-05', 1855, 100096, 6188, NULL, '1.0000', '1.4615', '1.4615', '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 (106063, '2022-08-05', 9751, 100097, 6188, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106064, '2022-08-05', 2506, 100098, 6188, NULL, '1.0000', '-9.4377', '-9.4377', '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 (106065, '2022-08-05', 2079, 100099, 6188, 55542, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106066, '2022-08-05', 7579, 100100, 6188, NULL, '1.0000', '15.0000', '15.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 (106067, '2022-08-05', 2342, 100101, 6188, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106068, '2022-08-05', 2643, 100102, 6188, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106069, '2022-08-05', 2543, 100103, 6188, 60263, '1.0000', '3.3251', '3.3251', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106070, '2022-08-05', 7641, 100104, 6188, NULL, '1.0000', '1.9000', '1.9000', '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 (106071, '2022-08-05', 9482, 100105, 6188, 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 (106072, '2022-08-05', 1602, 100106, 6188, 60317, '2.0000', '7.3695', '7.3695', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106073, '2022-08-05', 2256, 100107, 6188, 60350, '1.0000', '16.6000', '16.6000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106074, '2022-08-05', 9622, 100108, 6188, 40335, '1.0000', '35.0000', '35.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106075, '2022-08-05', 9624, 100109, 6188, 40337, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106076, '2022-08-05', 7753, 100110, 6188, NULL, '1.0000', '3.1400', '3.1400', '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 (106077, '2022-08-05', 9751, 100111, 6188, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106078, '2022-08-05', 9482, 100112, 6188, 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 (106079, '2022-08-05', 1340, 100113, 6188, NULL, '1.0000', '3.6001', '3.6001', '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 (106080, '2022-08-05', 2169, 100114, 6188, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106081, '2022-08-05', 2068, 100115, 6188, NULL, '1.0000', '14.6943', '14.6943', '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 (106082, '2022-08-05', 9740, 100116, 6188, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106083, '2022-08-05', 9649, 100117, 6188, NULL, '1.0000', '2.6750', '2.6750', '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 (106084, '2022-08-05', 1863, 100118, 6188, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106085, '2022-08-05', 1819, 100119, 6188, 56391, '1.0000', '7.2433', '7.2433', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106086, '2022-08-05', 9683, 100120, 6189, 59648, '1.0000', '-1.0523', '-1.0523', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106087, '2022-08-05', 9943, 100121, 6189, NULL, '1.0000', '16.8000', '16.8000', '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 (106088, '2022-08-05', 7917, 100122, 6189, NULL, '1.0000', '5.0000', '5.0000', '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 (106089, '2022-08-05', 1310, 100123, 6189, 60259, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106090, '2022-08-05', 1602, 100124, 6189, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106091, '2022-08-05', 7762, 100125, 6190, NULL, '1.0000', '1.5000', '1.5000', '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 (106092, '2022-08-05', 7672, 100126, 6190, NULL, '1.0000', '1.0200', '1.0200', '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 (106093, '2022-08-05', 7781, 100127, 6190, NULL, '6.0000', '4.2500', '4.2500', '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 (106094, '2022-08-05', 7886, 100128, 6190, 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 (106095, '2022-08-05', 8925, 100129, 6190, NULL, '1.0000', '2.4000', '2.4000', '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 (106096, '2022-08-05', 7675, 100130, 6190, NULL, '1.0000', '11.4300', '11.4300', '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 (106097, '2022-08-05', 7482, 100131, 6190, NULL, '1.0000', '3.0500', '3.0500', '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 (106098, '2022-08-05', 9804, 100132, 6190, NULL, '1.0000', '3.0500', '3.0500', '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 (106099, '2022-08-05', 7911, 100133, 6190, NULL, '1.0000', '4.3700', '4.3700', '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 (106100, '2022-08-05', 8308, 100134, 6190, NULL, '1.0000', '2.0800', '2.0800', '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 (106101, '2022-08-05', 8722, 100135, 6190, 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 (106102, '2022-08-05', 9641, 100136, 6190, NULL, '1.0000', '36.0800', '36.0800', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106103, '2022-08-05', 9329, 100137, 6190, NULL, '1.0000', '6.7000', '6.7000', '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 (106104, '2022-08-05', 7382, 100138, 6190, NULL, '1.0000', '7.4500', '7.4500', '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 (106105, '2022-08-05', 2251, 100139, 6190, 2788, '-33.0000', '10.9700', '10.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 (106106, '2022-08-05', 2251, 100139, 6190, NULL, '34.0000', '10.9700', '10.9700', '20.0000', '20.0000', '-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 (106107, '2022-08-05', 8924, 100140, 6190, NULL, '2.0000', '4.5000', '4.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 (106108, '2022-08-05', 8068, 100141, 6190, NULL, '1.0000', '8.7900', '8.7900', '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 (106109, '2022-08-05', 7881, 100142, 6190, NULL, '1.0000', '2.3000', '2.3000', '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 (106110, '2022-08-05', 8813, 100143, 6190, NULL, '1.0000', '17.6000', '17.6000', '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 (106111, '2022-08-05', 7780, 100144, 6190, NULL, '1.0000', '11.6000', '11.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 (106112, '2022-08-05', 2315, 100145, 6190, 2735, '-600.0000', '0.3300', '0.3300', '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 (106113, '2022-08-05', 2315, 100145, 6190, NULL, '601.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-601.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106114, '2022-08-05', 7852, 100146, 6190, NULL, '2.0000', '15.0000', '15.0000', '22.5000', '22.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 (106115, '2022-08-05', 9794, 100147, 6190, NULL, '1.0000', '1.0800', '1.0800', '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 (106116, '2022-08-05', 2822, 100148, 6190, 17166, '-14.0000', '2.7200', '2.7200', '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 (106117, '2022-08-05', 2822, 100148, 6190, NULL, '17.0000', '2.7200', '2.7200', '4.0000', '4.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 (106118, '2022-08-05', 7514, 100149, 6190, NULL, '1.0000', '2.2500', '2.2500', '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 (106119, '2022-08-05', 7666, 100150, 6190, NULL, '1.0000', '3.6000', '3.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 (106120, '2022-08-05', 1935, 100151, 6190, 5586, '-193.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 (106121, '2022-08-05', 1935, 100151, 6190, NULL, '194.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-194.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106122, '2022-08-05', 7411, 100152, 6190, NULL, '1.0000', '1.3500', '1.3500', '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 (106123, '2022-08-05', 7483, 100153, 6190, NULL, '3.0000', '0.4200', '0.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 (106124, '2022-08-05', 7523, 100154, 6190, NULL, '1.0000', '9.7500', '9.7500', '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 (106125, '2022-08-05', 7411, 100155, 6190, NULL, '1.0000', '1.3500', '1.3500', '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 (106126, '2022-08-05', 9329, 100156, 6190, NULL, '1.0000', '6.7000', '6.7000', '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 (106127, '2022-08-05', 9823, 100157, 6190, NULL, '3.0000', '13.2500', '13.2500', '17.5000', '17.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 (106128, '2022-08-05', 9978, 100158, 6190, NULL, '1.0000', '42.0000', '42.0000', '55.5000', '55.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106129, '2022-08-05', 7638, 100159, 6190, NULL, '2.0000', '12.0000', '12.0000', '22.5000', '22.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 (106130, '2022-08-05', 7886, 100160, 6190, 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 (106131, '2022-08-05', 9699, 100161, 6190, 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 (106132, '2022-08-05', 2416, 100162, 6190, 4745, '-38.0000', '1.2000', '1.2000', '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 (106133, '2022-08-05', 2416, 100162, 6190, NULL, '43.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (106134, '2022-08-05', 9788, 100163, 6190, NULL, '4.0000', '1.3000', '1.3000', '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 (106135, '2022-08-05', 1577, 100164, 6190, 7596, '-20.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 (106136, '2022-08-05', 1577, 100164, 6190, NULL, '21.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106137, '2022-08-05', 7588, 100165, 6190, NULL, '1.0000', '6.9000', '6.9000', '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 (106138, '2022-08-05', 8017, 100166, 6190, NULL, '2.0000', '40.0000', '40.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 (106139, '2022-08-05', 9503, 100167, 6190, NULL, '1.0000', '20.6000', '20.6000', '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 (106140, '2022-08-05', 7564, 100168, 6190, 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 (106141, '2022-08-05', 7396, 100169, 6190, NULL, '1.0000', '6.0000', '6.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 (106142, '2022-08-05', 1771, 100170, 6191, 39531, '1.0000', '11.9058', '11.9058', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106143, '2022-08-05', 7444, 100171, 6191, 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 (106144, '2022-08-05', 7860, 100172, 6191, 59168, '1.0000', '24.0624', '24.0624', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106145, '2022-08-05', 7358, 100173, 6191, 60122, '1.0000', '14.5109', '14.5109', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106146, '2022-08-05', 7333, 100174, 6191, NULL, '4.0000', '-5.7451', '-5.7451', '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 (106147, '2022-08-05', 9001, 100175, 6191, 57596, '1.0000', '29.6338', '29.6338', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106148, '2022-08-05', 2284, 100176, 6191, 60100, '1.0000', '1.5246', '1.5246', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106149, '2022-08-05', 8596, 100177, 6191, NULL, '1.0000', '39.8982', '39.8982', '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 (106150, '2022-08-05', 9785, 100178, 6191, 59352, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106151, '2022-08-05', 7457, 100179, 6191, 60134, '1.0000', '4.6990', '4.6990', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106152, '2022-08-05', 7709, 100180, 6191, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (106153, '2022-08-05', 7859, 100181, 6191, 60155, '1.0000', '13.9418', '13.9418', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106154, '2022-08-05', 2289, 100182, 6191, NULL, '2.0000', '2.5688', '2.5688', '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 (106155, '2022-08-05', 2506, 100183, 6191, 59309, '1.0000', '4.6791', '4.6791', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106156, '2022-08-05', 8360, 100184, 6191, 56589, '1.0000', '3.2288', '3.2288', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106157, '2022-08-05', 8926, 100185, 6191, 48818, '1.0000', '39.0000', '39.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106158, '2022-08-05', 7453, 100186, 6191, 60136, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106159, '2022-08-05', 9724, 100187, 6191, 60103, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106160, '2022-08-05', 9399, 100188, 6191, NULL, '2.0000', '0.9803', '0.9803', '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 (106161, '2022-08-05', 7730, 100189, 6191, 60195, '5.0000', '0.0723', '0.0723', '0.2000', '0.2000', '139.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106162, '2022-08-05', 9794, 100190, 6191, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106163, '2022-08-05', 9988, 100191, 6191, 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 (106164, '2022-08-05', 2506, 100192, 6191, 59309, '1.0000', '4.6791', '4.6791', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106165, '2022-08-05', 7354, 100193, 6191, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106166, '2022-08-05', 7703, 100194, 6191, NULL, '3.0000', '-4961.0093', '-4961.0093', '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 (106167, '2022-08-05', 7473, 100195, 6191, 59361, '10.0000', '0.5887', '0.5887', '0.7000', '0.7000', '33.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106168, '2022-08-05', 7591, 100196, 6191, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106169, '2022-08-05', 7714, 100197, 6191, NULL, '1.0000', '0.4200', '0.4200', '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 (106170, '2022-08-05', 8308, 100198, 6191, NULL, '1.0000', '22.3258', '22.3258', '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 (106171, '2022-08-05', 7358, 100199, 6191, 60122, '1.0000', '14.5109', '14.5109', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106172, '2022-08-05', 7509, 100200, 6191, 60146, '1.0000', '9.0351', '9.0351', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106173, '2022-08-05', 7672, 100201, 6191, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106174, '2022-08-05', 7666, 100202, 6191, 60154, '1.0000', '7.4928', '7.4928', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106175, '2022-08-05', 7675, 100203, 6191, NULL, '1.0000', '-21.9809', '-21.9809', '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 (106176, '2022-08-05', 9794, 100204, 6191, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106177, '2022-08-05', 9729, 100205, 6191, 60148, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106178, '2022-08-05', 7832, 100206, 6191, 60194, '1.0000', '12.9658', '12.9658', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106179, '2022-08-05', 1841, 100207, 6191, 56033, '5.0000', '0.1970', '0.1970', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106180, '2022-08-05', 7317, 100208, 6191, 59094, '1.0000', '15.4364', '15.4364', '22.5000', '22.5000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106181, '2022-08-05', 7674, 100209, 6191, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106182, '2022-08-05', 2315, 100210, 6191, 60129, '1.0000', '0.7586', '0.7586', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106183, '2022-08-05', 2937, 100211, 6192, 51237, '1.0000', '5.5731', '5.5731', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106184, '2022-08-05', 9751, 100212, 6192, 59707, '3.0000', '1.1935', '1.1935', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106185, '2022-08-05', 2302, 100213, 6192, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '49.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106186, '2022-08-05', 8444, 100214, 6192, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106187, '2022-08-05', 9912, 100215, 6192, 55605, '1.0000', '14.4000', '14.4000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106188, '2022-08-05', 7411, 100216, 6192, NULL, '1.0000', '1.2819', '1.2819', '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 (106189, '2022-08-05', 2413, 100217, 6192, NULL, '3.0000', '1.0500', '1.0500', '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 (106190, '2022-08-05', 1647, 100218, 6192, NULL, '1.0000', '-8.0033', '-8.0033', '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 (106191, '2022-08-05', 2237, 100219, 6192, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106192, '2022-08-05', 7483, 100220, 6192, 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 (106193, '2022-08-05', 2893, 100221, 6192, 60362, '1.0000', '9.1280', '9.1280', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106194, '2022-08-05', 9828, 100222, 6192, NULL, '2.0000', '2.9100', '2.9100', '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 (106195, '2022-08-05', 7411, 100223, 6192, NULL, '1.0000', '1.2819', '1.2819', '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 (106196, '2022-08-05', 8933, 100224, 6192, NULL, '1.0000', '8.8300', '8.8300', '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 (106197, '2022-08-05', 9740, 100225, 6192, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106198, '2022-08-05', 2068, 100226, 6192, NULL, '1.0000', '14.6943', '14.6943', '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 (106199, '2022-08-05', 2821, 100227, 6192, NULL, '1.0000', '3.4037', '3.4037', '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 (106200, '2022-08-05', 9750, 100228, 6192, NULL, '1.0000', '2.7458', '2.7458', '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 (106201, '2022-08-05', 2315, 100229, 6192, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106202, '2022-08-05', 1804, 100230, 6192, NULL, '1.0000', '0.4450', '0.4450', '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 (106203, '2022-08-05', 2521, 100231, 6192, 59701, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106204, '2022-08-05', 7398, 100232, 6192, NULL, '1.0000', '143.5000', '143.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 (106205, '2022-08-05', 2937, 100233, 6192, 51237, '1.0000', '5.5731', '5.5731', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106206, '2022-08-05', 7324, 100234, 6192, NULL, '1.0000', '5.4813', '5.4813', '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 (106207, '2022-08-05', 1761, 100235, 6192, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106208, '2022-08-05', 8362, 100236, 6192, NULL, '3.0000', '4.1000', '4.1000', '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 (106209, '2022-08-05', 3012, 100237, 6192, 59850, '1.0000', '4.7000', '4.7000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106210, '2022-08-05', 2315, 100238, 6192, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106211, '2022-08-05', 7886, 100239, 6192, NULL, '1.0000', '14.5000', '14.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 (106212, '2022-08-05', 9737, 100240, 6192, NULL, '1.0000', '7.9000', '7.9000', '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 (106213, '2022-08-05', 9734, 100241, 6192, 60360, '1.0000', '0.4261', '0.4261', '0.7000', '0.7000', '73.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106214, '2022-08-05', 7840, 100242, 6192, NULL, '3.0000', '4.0000', '4.0000', '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 (106215, '2022-08-05', 2496, 100243, 6192, NULL, '1.0000', '0.5900', '0.5900', '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 (106216, '2022-08-05', 2384, 100244, 6192, NULL, '4.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (106217, '2022-08-05', 2061, 100245, 6192, NULL, '1.0000', '-0.6387', '-0.6387', '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 (106218, '2022-08-05', 9747, 100246, 6192, 59907, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106219, '2022-08-05', 2728, 100247, 6192, 19354, '5.0000', '0.8000', '0.8000', '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 (106220, '2022-08-05', 7411, 100248, 6192, NULL, '2.0000', '1.2819', '1.2819', '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 (106221, '2022-08-05', 2068, 100249, 6192, NULL, '1.0000', '14.6943', '14.6943', '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 (106222, '2022-08-05', 1501, 100250, 6192, NULL, '1.0000', '0.3856', '0.3856', '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 (106223, '2022-08-05', 2327, 100251, 6192, 58157, '2.0000', '3.8350', '3.8350', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106224, '2022-08-05', 9332, 100252, 6192, 39845, '1.0000', '11.9900', '11.9900', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106225, '2022-08-05', 1855, 100253, 6192, NULL, '1.0000', '1.4615', '1.4615', '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 (106226, '2022-08-05', 8184, 100254, 6192, NULL, '14.0000', '3.0310', '3.0310', '4.0000', '4.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 (106227, '2022-08-05', 2131, 100255, 6192, 59685, '1.0000', '12.6477', '12.6477', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106228, '2022-08-05', 1425, 100256, 6192, NULL, '1.0000', '324.2732', '324.2732', '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 (106229, '2022-08-05', 1383, 100257, 6192, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106230, '2022-08-05', 1555, 100258, 6192, NULL, '1.0000', '45.4000', '45.4000', '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 (106231, '2022-08-05', 7756, 100259, 6192, NULL, '1.0000', '2.5000', '2.5000', '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 (106232, '2022-08-05', 1695, 100260, 6192, 59605, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106233, '2022-08-05', 8017, 100261, 6192, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106234, '2022-08-05', 2038, 100262, 6192, 59672, '1.0000', '13.6990', '13.6990', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106235, '2022-08-05', 1574, 100263, 6192, 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 (106236, '2022-08-05', 1839, 100264, 6192, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (106237, '2022-08-05', 1303, 100265, 6192, 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 (106238, '2022-08-05', 2315, 100266, 6192, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106239, '2022-08-05', 9695, 100267, 6192, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '26.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106240, '2022-08-05', 9089, 100268, 6192, 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 (106241, '2022-08-05', 1578, 100269, 6192, 59845, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106242, '2022-08-05', 9750, 100270, 6192, NULL, '1.0000', '2.7458', '2.7458', '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 (106243, '2022-08-05', 7411, 100271, 6192, NULL, '2.0000', '1.2819', '1.2819', '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 (106244, '2022-08-05', 9734, 100272, 6192, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '72.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106245, '2022-08-05', 2699, 100273, 6192, NULL, '3.0000', '3.5000', '3.5000', '5.5000', '5.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 (106246, '2022-08-05', 2295, 100274, 6192, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106247, '2022-08-05', 2285, 100275, 6192, NULL, '1.0000', '-159.5389', '-159.5389', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106248, '2022-08-05', 1637, 100276, 6192, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '24.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106249, '2022-08-05', 9740, 100277, 6192, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '66.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106250, '2022-08-05', 9821, 100278, 6192, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106251, '2022-08-05', 2315, 100279, 6192, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106252, '2022-08-05', 1687, 100280, 6192, 52178, '1.0000', '15.0626', '15.0626', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106253, '2022-08-05', 2642, 100281, 6192, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106254, '2022-08-05', 2221, 100282, 6192, NULL, '1.0000', '2.3805', '2.3805', '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 (106255, '2022-08-05', 2109, 100283, 6192, NULL, '1.0000', '0.0413', '0.0413', '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 (106256, '2022-08-05', 2169, 100284, 6192, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106257, '2022-08-05', 2673, 100285, 6192, 55938, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106258, '2022-08-05', 2342, 100286, 6192, 58159, '10.0000', '2.3666', '2.3666', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106259, '2022-08-05', 9821, 100287, 6193, 56590, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106260, '2022-08-05', 9715, 100288, 6193, 59314, '1.0000', '10.0087', '10.0087', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106261, '2022-08-05', 7590, 100289, 6193, NULL, '1.0000', '6.0509', '6.0509', '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 (106262, '2022-08-05', 7674, 100290, 6193, 59362, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106263, '2022-08-05', 2656, 100291, 6193, 60187, '1.0000', '1.7540', '1.7540', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106264, '2022-08-05', 8203, 100292, 6193, 57407, '7.0000', '2.0908', '2.0908', '0.7000', '0.7000', '28.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106265, '2022-08-05', 7411, 100293, 6193, 60143, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106266, '2022-08-05', 7514, 100294, 6193, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (106267, '2022-08-05', 7562, 100295, 6193, 57409, '2.0000', '6.1314', '6.1314', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106268, '2022-08-05', 7524, 100296, 6193, 60133, '3.0000', '4.7209', '4.7209', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106269, '2022-08-05', 7639, 100297, 6193, 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 (106270, '2022-08-05', 7927, 100298, 6193, 59354, '1.0000', '12.7435', '12.7435', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106271, '2022-08-05', 7524, 100299, 6193, 60133, '1.0000', '4.7209', '4.7209', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106272, '2022-08-05', 8677, 100300, 6193, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106273, '2022-08-05', 2079, 100301, 6193, 45601, '2.0000', '2.1080', '2.1080', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106274, '2022-08-05', 7879, 100302, 6193, NULL, '10.0000', '2.2800', '2.2800', '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 (106275, '2022-08-05', 9791, 100303, 6193, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '97.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106276, '2022-08-05', 7564, 100304, 6193, 59164, '1.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106277, '2022-08-05', 1837, 100305, 6193, 45863, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106278, '2022-08-05', 7473, 100306, 6193, 59361, '2.0000', '0.5887', '0.5887', '0.7000', '0.7000', '31.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106279, '2022-08-05', 7675, 100307, 6193, NULL, '2.0000', '-21.9809', '-21.9809', '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 (106280, '2022-08-05', 9804, 100308, 6193, 55112, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106281, '2022-08-05', 8106, 100309, 6193, 59408, '28.0000', '0.1820', '0.1820', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106282, '2022-08-05', 9399, 100310, 6193, NULL, '1.0000', '0.9803', '0.9803', '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 (106283, '2022-08-05', 8925, 100311, 6193, 59122, '1.0000', '3.5315', '3.5315', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106284, '2022-08-05', 7730, 100312, 6193, 60195, '5.0000', '0.0723', '0.0723', '0.2000', '0.2000', '134.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106285, '2022-08-05', 2642, 100313, 6194, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106286, '2022-08-05', 8413, 100314, 6194, 59667, '1.0000', '4077.8428', '4077.8428', '120.0000', '120.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106287, '2022-08-05', 7473, 100315, 6194, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '32.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106288, '2022-08-05', 2411, 100316, 6194, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106289, '2022-08-05', 1809, 100317, 6194, 54950, '1.0000', '10.1539', '10.1539', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106290, '2022-08-05', 1434, 100318, 6194, 54924, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106291, '2022-08-05', 7954, 100319, 6194, 57084, '4.0000', '2.4470', '2.4470', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106292, '2022-08-05', 1771, 100320, 6194, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106293, '2022-08-05', 9740, 100321, 6195, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106294, '2022-08-05', 7514, 100322, 6195, NULL, '2.0000', '2.2500', '2.2500', '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 (106295, '2022-08-05', 9695, 100323, 6195, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '25.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106296, '2022-08-05', 7411, 100324, 6195, NULL, '1.0000', '1.2819', '1.2819', '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 (106297, '2022-08-05', 2135, 100325, 6196, 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 (106298, '2022-08-05', 9724, 100326, 6196, NULL, '1.0000', '20.3000', '20.3000', '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 (106299, '2022-08-05', 1812, 100327, 6196, 8224, '-109.0000', '7.8900', '7.8900', '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 (106300, '2022-08-05', 1812, 100327, 6196, NULL, '110.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106301, '2022-08-05', 2900, 100328, 6196, 18346, '-2.0000', '20.0000', '20.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 (106302, '2022-08-05', 2900, 100328, 6196, NULL, '3.0000', '20.0000', '20.0000', '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 (106303, '2022-08-05', 1374, 100329, 6196, 4655, '-4.0000', '24.0076', '24.0076', '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 (106304, '2022-08-05', 1374, 100329, 6196, NULL, '5.0000', '24.0076', '24.0076', '39.0000', '39.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 (106305, '2022-08-05', 9794, 100330, 6196, NULL, '1.0000', '1.0800', '1.0800', '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 (106306, '2022-08-05', 2858, 100331, 6196, 17772, '-116.0000', '1.0000', '1.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 (106307, '2022-08-05', 2858, 100331, 6196, NULL, '117.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-117.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106308, '2022-08-05', 7411, 100332, 6196, NULL, '1.0000', '1.3500', '1.3500', '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 (106309, '2022-08-05', 8068, 100333, 6196, NULL, '1.0000', '8.7900', '8.7900', '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 (106310, '2022-08-05', 2169, 100334, 6196, 10737, '-192.0000', '3.8397', '3.8397', '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 (106311, '2022-08-05', 2169, 100334, 6196, NULL, '193.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-193.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106312, '2022-08-05', 1339, 100335, 6196, 13004, '-23.0000', '1.6012', '1.6012', '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 (106313, '2022-08-05', 1339, 100335, 6196, NULL, '24.0000', '1.6012', '1.6012', '3.0000', '3.0000', '-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 (106314, '2022-08-05', 1666, 100336, 6196, 3236, '-41.0000', '2.7100', '2.7100', '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 (106315, '2022-08-05', 1666, 100336, 6196, NULL, '42.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106316, '2022-08-05', 7411, 100337, 6196, NULL, '1.0000', '1.3500', '1.3500', '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 (106317, '2022-08-05', 1647, 100338, 6196, 3218, '-23.0000', '4.7200', '4.7200', '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 (106318, '2022-08-05', 1647, 100338, 6196, NULL, '24.0000', '4.7200', '4.7200', '8.0000', '8.0000', '-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 (106319, '2022-08-05', 9747, 100339, 6196, NULL, '1.0000', '0.6500', '0.6500', '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 (106320, '2022-08-05', 2558, 100340, 6196, 17773, '-7.0000', '5.0000', '5.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 (106321, '2022-08-05', 2558, 100340, 6196, NULL, '12.0000', '5.0000', '5.0000', '10.0000', '10.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 (106322, '2022-08-05', 2061, 100341, 6196, 2164, '-15.0000', '10.9800', '10.9800', '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 (106323, '2022-08-05', 2061, 100341, 6196, NULL, '16.0000', '10.9800', '10.9800', '17.5000', '17.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 (106324, '2022-08-05', 1845, 100342, 6196, 6222, '-32.0000', '19.5000', '19.5000', '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 (106325, '2022-08-05', 1845, 100342, 6196, NULL, '33.0000', '19.5000', '19.5000', '30.5000', '30.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 (106326, '2022-08-05', 2479, 100343, 6196, 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 (106327, '2022-08-05', 2221, 100344, 6196, 4154, '-80.0000', '14.4737', '14.4737', '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 (106328, '2022-08-05', 2221, 100344, 6196, NULL, '81.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106329, '2022-08-05', 2821, 100345, 6196, NULL, '2.0000', '3.5100', '3.5100', '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 (106330, '2022-08-05', 2169, 100346, 6196, 10737, '-192.0000', '3.8397', '3.8397', '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 (106331, '2022-08-05', 2169, 100346, 6196, NULL, '193.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-193.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106332, '2022-08-05', 1529, 100347, 6196, NULL, '1.0000', '3.5500', '3.5500', '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 (106333, '2022-08-05', 2100, 100348, 6196, 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 (106334, '2022-08-05', 3059, 100349, 6196, NULL, '2.0000', '0.4500', '0.4500', '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 (106335, '2022-08-05', 1602, 100350, 6196, 5897, '-175.0000', '6.7859', '6.7859', '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 (106336, '2022-08-05', 1602, 100350, 6196, NULL, '176.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-176.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106337, '2022-08-05', 2651, 100351, 6196, NULL, '1.0000', '10.7500', '10.7500', '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 (106338, '2022-08-05', 2080, 100352, 6196, NULL, '1.0000', '17.9638', '17.9638', '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 (106339, '2022-08-05', 2730, 100353, 6196, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '24.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 (106340, '2022-08-05', 7411, 100354, 6196, NULL, '2.0000', '1.3500', '1.3500', '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 (106341, '2022-08-05', 2315, 100355, 6196, 2735, '-601.0000', '0.3300', '0.3300', '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 (106342, '2022-08-05', 2315, 100355, 6196, NULL, '604.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-604.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106343, '2022-08-05', 9748, 100356, 6196, NULL, '1.0000', '2.5300', '2.5300', '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 (106344, '2022-08-05', 7535, 100357, 6196, NULL, '1.0000', '4.9000', '4.9000', '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 (106345, '2022-08-05', 1386, 100358, 6196, 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 (106346, '2022-08-05', 2486, 100359, 6196, NULL, '5.0000', '4.0000', '4.0000', '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 (106347, '2022-08-05', 8740, 100360, 6196, NULL, '1.0000', '2.0000', '2.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 (106348, '2022-08-05', 9747, 100361, 6196, NULL, '10.0000', '0.6500', '0.6500', '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 (106349, '2022-08-05', 2169, 100362, 6196, 10737, '-192.0000', '3.8397', '3.8397', '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 (106350, '2022-08-05', 2169, 100362, 6196, NULL, '193.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-193.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106351, '2022-08-05', 1386, 100363, 6196, 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 (106352, '2022-08-05', 1875, 100364, 6196, 6949, '-91.0000', '2.4000', '2.4000', '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 (106353, '2022-08-05', 1875, 100364, 6196, NULL, '101.0000', '2.4000', '2.4000', '3.7000', '3.7000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106354, '2022-08-05', 7411, 100365, 6196, NULL, '1.0000', '1.3500', '1.3500', '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 (106355, '2022-08-05', 9558, 100366, 6196, 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 (106356, '2022-08-05', 1867, 100367, 6196, NULL, '1.0000', '1.0500', '1.0500', '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 (106357, '2022-08-05', 2169, 100368, 6196, 10737, '-192.0000', '3.8397', '3.8397', '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 (106358, '2022-08-05', 2169, 100368, 6196, NULL, '194.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-194.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106359, '2022-08-05', 1908, 100369, 6196, 5444, '-55.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 (106360, '2022-08-05', 1908, 100369, 6196, NULL, '56.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106361, '2022-08-05', 8866, 100370, 6196, NULL, '1.0000', '0.4300', '0.4300', '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 (106362, '2022-08-05', 2293, 100371, 6196, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.5000', '27.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 (106363, '2022-08-05', 2266, 100372, 6196, 2801, '-14.0000', '6.4900', '6.4900', '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 (106364, '2022-08-05', 2266, 100372, 6196, NULL, '15.0000', '6.4900', '6.4900', '13.0000', '13.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 (106365, '2022-08-05', 1541, 100373, 6196, 18018, '-8.0000', '19.0000', '19.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 (106366, '2022-08-05', 1541, 100373, 6196, NULL, '9.0000', '19.0000', '19.0000', '30.5000', '30.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 (106367, '2022-08-05', 9649, 100374, 6196, NULL, '1.0000', '14.4100', '14.4100', '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 (106368, '2022-08-05', 1904, 100375, 6196, 5442, '-69.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 (106369, '2022-08-05', 1904, 100375, 6196, NULL, '70.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106370, '2022-08-05', 8677, 100376, 6196, NULL, '3.0000', '1.2800', '1.2800', '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 (106371, '2022-08-05', 7411, 100377, 6196, NULL, '1.0000', '1.3500', '1.3500', '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 (106372, '2022-08-05', 9399, 100378, 6196, NULL, '2.0000', '0.9800', '0.9800', '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 (106373, '2022-08-05', 9929, 100379, 6196, 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 (106374, '2022-08-05', 1904, 100380, 6196, 5442, '-69.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 (106375, '2022-08-05', 1904, 100380, 6196, NULL, '71.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106376, '2022-08-05', 1723, 100381, 6196, 6619, '-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 (106377, '2022-08-05', 1723, 100381, 6196, NULL, '2.0000', '90.0000', '90.0000', '8.5000', '8.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 (106378, '2022-08-05', 1863, 100382, 6196, 10808, '-158.0000', '0.4136', '0.4136', '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 (106379, '2022-08-05', 1863, 100382, 6196, NULL, '161.0000', '0.4136', '0.4136', '2.5000', '2.5000', '-161.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106380, '2022-08-05', 8740, 100383, 6196, NULL, '2.0000', '2.0000', '2.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 (106381, '2022-08-05', 1805, 100384, 6196, NULL, '1.0000', '195.3170', '195.3170', '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 (106382, '2022-08-05', 2263, 100385, 6196, 2799, '-3.0000', '6.5600', '6.5600', '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 (106383, '2022-08-05', 2263, 100385, 6196, NULL, '4.0000', '6.5600', '6.5600', '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 (106384, '2022-08-05', 2558, 100386, 6196, 17773, '-7.0000', '5.0000', '5.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 (106385, '2022-08-05', 2558, 100386, 6196, NULL, '8.0000', '5.0000', '5.0000', '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 (106386, '2022-08-05', 1665, 100387, 6196, 3235, '-150.0000', '1.3000', '1.3000', '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 (106387, '2022-08-05', 1665, 100387, 6196, NULL, '151.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-151.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106388, '2022-08-05', 1672, 100388, 6196, 7384, '-165.0000', '2.8700', '2.8700', '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 (106389, '2022-08-05', 1672, 100388, 6196, NULL, '175.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-175.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106390, '2022-08-05', 7955, 100389, 6196, 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 (106391, '2022-08-06', 2242, 100390, 6197, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106392, '2022-08-06', 1837, 100391, 6197, 59893, '1.0000', '1.6544', '1.6544', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106393, '2022-08-06', 2379, 100392, 6197, NULL, '1.0000', '-14.1447', '-14.1447', '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 (106394, '2022-08-06', 1787, 100393, 6197, NULL, '1.0000', '0.5000', '0.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 (106395, '2022-08-06', 1666, 100394, 6197, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106396, '2022-08-06', 9751, 100395, 6197, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106397, '2022-08-06', 9469, 100396, 6197, NULL, '1.0000', '4.3167', '4.3167', '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 (106398, '2022-08-06', 1504, 100397, 6197, 58181, '10.0000', '2.0486', '2.0486', '2.8000', '2.8000', '40.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106399, '2022-08-06', 1665, 100398, 6197, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106400, '2022-08-06', 2754, 100399, 6197, NULL, '10.0000', '0.0800', '0.0800', '0.2000', '0.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 (106401, '2022-08-06', 1637, 100400, 6197, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106402, '2022-08-06', 9649, 100401, 6198, NULL, '1.0000', '2.6750', '2.6750', '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 (106403, '2022-08-06', 1810, 100402, 6199, 59904, '1.0000', '32.9337', '32.9337', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106404, '2022-08-06', 3044, 100403, 6199, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '14.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 (106405, '2022-08-06', 7704, 100404, 6199, NULL, '1.0000', '0.4900', '0.4900', '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 (106406, '2022-08-06', 2384, 100405, 6199, NULL, '2.0000', '-1.7022', '-1.7022', '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 (106407, '2022-08-06', 2754, 100406, 6199, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (106408, '2022-08-06', 9734, 100407, 6199, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '69.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106409, '2022-08-06', 2061, 100408, 6199, NULL, '1.0000', '-0.6387', '-0.6387', '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 (106410, '2022-08-06', 2699, 100409, 6199, NULL, '1.0000', '3.5000', '3.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 (106411, '2022-08-06', 7322, 100410, 6199, 55599, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106412, '2022-08-06', 7318, 100411, 6199, 60226, '1.0000', '12.1931', '12.1931', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106413, '2022-08-06', 2332, 100412, 6199, 60281, '1.0000', '-41.5866', '-41.5866', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106414, '2022-08-06', 8773, 100413, 6199, NULL, '1.0000', '3.8300', '3.8300', '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 (106415, '2022-08-06', 2816, 100414, 6199, NULL, '5.0000', '0.8000', '0.8000', '1.5000', '1.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 (106416, '2022-08-06', 9927, 100415, 6199, 60359, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106417, '2022-08-06', 2315, 100416, 6199, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106418, '2022-08-06', 8017, 100417, 6199, 59863, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106419, '2022-08-06', 1669, 100418, 6199, NULL, '2.0000', '9.3000', '9.3000', '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 (106420, '2022-08-06', 1450, 100419, 6199, NULL, '5.0000', '0.8483', '0.8483', '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 (106421, '2022-08-06', 9886, 100420, 6199, 57755, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106422, '2022-08-06', 1674, 100421, 6199, NULL, '1.0000', '0.8028', '0.8028', '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 (106423, '2022-08-06', 1868, 100422, 6199, NULL, '1.0000', '3.8800', '3.8800', '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 (106424, '2022-08-06', 2102, 100423, 6199, NULL, '1.0000', '-20.1000', '-20.1000', '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 (106425, '2022-08-06', 2332, 100424, 6199, 60281, '1.0000', '-41.5866', '-41.5866', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106426, '2022-08-06', 1825, 100425, 6199, 60267, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106427, '2022-08-06', 7665, 100426, 6199, NULL, '1.0000', '7.9000', '7.9000', '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 (106428, '2022-08-06', 9745, 100427, 6200, 47102, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106429, '2022-08-06', 3044, 100428, 6200, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '13.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 (106430, '2022-08-06', 2088, 100429, 6200, 60330, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106431, '2022-08-06', 1689, 100430, 6200, 60349, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106432, '2022-08-06', 9030, 100431, 6200, NULL, '1.0000', '12.9000', '12.9000', '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 (106433, '2022-08-06', 1837, 100432, 6200, 59893, '1.0000', '1.6544', '1.6544', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106434, '2022-08-06', 9649, 100433, 6200, NULL, '1.0000', '2.6750', '2.6750', '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 (106435, '2022-08-06', 1743, 100434, 6200, NULL, '1.0000', '3.5650', '3.5650', '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 (106436, '2022-08-06', 1863, 100435, 6200, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106437, '2022-08-06', 1307, 100436, 6200, NULL, '1.0000', '-106.4636', '-106.4636', '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 (106438, '2022-08-06', 2546, 100437, 6200, NULL, '1.0000', '117.1000', '117.1000', '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 (106439, '2022-08-06', 1511, 100438, 6200, 13749, '1.0000', '90.0000', '90.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 (106440, '2022-08-06', 2335, 100439, 6200, NULL, '1.0000', '18.9000', '18.9000', '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 (106441, '2022-08-06', 2070, 100440, 6200, 59855, '1.0000', '2.4107', '2.4107', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106442, '2022-08-06', 1647, 100441, 6200, NULL, '1.0000', '-8.0033', '-8.0033', '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 (106443, '2022-08-06', 1637, 100442, 6200, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106444, '2022-08-06', 1375, 100443, 6200, 60357, '1.0000', '32.9413', '32.9413', '41.0000', '41.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106445, '2022-08-06', 2643, 100444, 6200, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106446, '2022-08-06', 9783, 100445, 6200, 60304, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106447, '2022-08-06', 9690, 100446, 6200, 58165, '1.0000', '25.4200', '25.4200', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106448, '2022-08-06', 2366, 100447, 6200, NULL, '2.0000', '-98.6017', '-98.6017', '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 (106449, '2022-08-06', 2673, 100448, 6200, 55938, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106450, '2022-08-06', 1454, 100449, 6201, 58125, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106451, '2022-08-06', 1637, 100450, 6201, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106452, '2022-08-06', 1781, 100451, 6201, 60352, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106453, '2022-08-06', 9751, 100452, 6201, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106454, '2022-08-06', 9828, 100453, 6201, NULL, '1.0000', '2.9100', '2.9100', '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 (106455, '2022-08-06', 1505, 100454, 6201, 60303, '1.0000', '107.0915', '107.0915', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106456, '2022-08-06', 2864, 100455, 6201, 60338, '2.0000', '3.3622', '3.3622', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106457, '2022-08-06', 1846, 100456, 6201, 60306, '1.0000', '-296.8167', '-296.8167', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106458, '2022-08-06', 1339, 100457, 6201, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106459, '2022-08-06', 9683, 100458, 6201, 59648, '1.0000', '-1.0523', '-1.0523', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106460, '2022-08-06', 1856, 100459, 6201, NULL, '1.0000', '155.0099', '155.0099', '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 (106461, '2022-08-06', 2965, 100460, 6201, NULL, '1.0000', '18.7797', '18.7797', '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 (106462, '2022-08-06', 8746, 100461, 6201, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106463, '2022-08-06', 9469, 100462, 6201, NULL, '1.0000', '4.3167', '4.3167', '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 (106464, '2022-08-06', 8773, 100463, 6201, NULL, '1.0000', '3.8300', '3.8300', '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 (106465, '2022-08-06', 2617, 100464, 6201, NULL, '3.0000', '-5.4200', '-5.4200', '8.5000', '8.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 (106466, '2022-08-06', 9030, 100465, 6201, NULL, '1.0000', '12.9000', '12.9000', '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 (106467, '2022-08-06', 1688, 100466, 6201, 59601, '1.0000', '23.2094', '23.2094', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106468, '2022-08-06', 9942, 100467, 6201, NULL, '1.0000', '13.1000', '13.1000', '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 (106469, '2022-08-06', 1787, 100468, 6201, NULL, '1.0000', '0.5000', '0.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 (106470, '2022-08-06', 1837, 100469, 6201, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106471, '2022-08-06', 3044, 100470, 6201, 25017, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '12.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 (106472, '2022-08-06', 7926, 100471, 6202, 60315, '1.0000', '4.2867', '4.2867', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106473, '2022-08-06', 1863, 100472, 6202, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106474, '2022-08-06', 2416, 100473, 6202, 59669, '1.0000', '1.3394', '1.3394', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106475, '2022-08-06', 9565, 100474, 6202, NULL, '1.0000', '4.5000', '4.5000', '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 (106476, '2022-08-06', 1640, 100475, 6202, NULL, '1.0000', '3.0496', '3.0496', '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 (106477, '2022-08-06', 1637, 100476, 6202, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '20.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106478, '2022-08-06', 7533, 100477, 6202, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106479, '2022-08-06', 8622, 100478, 6202, 60237, '1.0000', '1.4898', '1.4898', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106480, '2022-08-06', 1846, 100479, 6202, 60306, '1.0000', '-296.8167', '-296.8167', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106481, '2022-08-06', 1863, 100480, 6202, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106482, '2022-08-06', 2948, 100481, 6203, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106483, '2022-08-06', 1863, 100482, 6203, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106484, '2022-08-06', 8706, 100483, 6203, 58229, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106485, '2022-08-06', 1647, 100484, 6203, NULL, '1.0000', '-8.0033', '-8.0033', '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 (106486, '2022-08-06', 2095, 100485, 6203, NULL, '1.0000', '-8.5000', '-8.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 (106487, '2022-08-06', 2315, 100486, 6203, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106488, '2022-08-06', 9747, 100487, 6203, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106489, '2022-08-06', 7592, 100488, 6203, NULL, '1.0000', '8.6500', '8.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 (106490, '2022-08-06', 1510, 100489, 6203, NULL, '1.0000', '-13.8480', '-13.8480', '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 (106491, '2022-08-06', 2273, 100490, 6203, 60335, '1.0000', '3.0605', '3.0605', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106492, '2022-08-06', 2315, 100491, 6203, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106493, '2022-08-06', 2038, 100492, 6203, 59672, '1.0000', '13.6990', '13.6990', '22.0000', '22.0000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106494, '2022-08-06', 2416, 100493, 6203, 59669, '1.0000', '1.3394', '1.3394', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106495, '2022-08-06', 3045, 100494, 6203, 60248, '1.0000', '4.0533', '4.0533', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106496, '2022-08-06', 2506, 100495, 6203, NULL, '1.0000', '-9.4377', '-9.4377', '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 (106497, '2022-08-06', 2302, 100496, 6203, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '48.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106498, '2022-08-06', 1904, 100497, 6203, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106499, '2022-08-06', 9927, 100498, 6203, 60359, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106500, '2022-08-06', 2762, 100499, 6203, NULL, '1.0000', '7.1000', '7.1000', '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 (106501, '2022-08-06', 9747, 100500, 6203, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106502, '2022-08-06', 1498, 100501, 6203, 57680, '1.0000', '0.4912', '0.4912', '0.7000', '0.7000', '41.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106503, '2022-08-06', 2617, 100502, 6204, NULL, '1.0000', '-5.4200', '-5.4200', '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 (106504, '2022-08-06', 2643, 100503, 6204, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106505, '2022-08-06', 2107, 100504, 6204, 31964, '1.0000', '0.2500', '0.2500', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106506, '2022-08-06', 2558, 100505, 6204, 24140, '1.0000', '6.0000', '6.0000', '10.0000', '10.0000', '1.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 (106507, '2022-08-06', 1863, 100506, 6204, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106508, '2022-08-06', 1529, 100507, 6205, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106509, '2022-08-06', 1450, 100508, 6205, NULL, '5.0000', '0.8483', '0.8483', '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 (106510, '2022-08-06', 2068, 100509, 6205, NULL, '1.0000', '14.6943', '14.6943', '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 (106511, '2022-08-06', 1383, 100510, 6205, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106512, '2022-08-06', 1863, 100511, 6205, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106513, '2022-08-06', 7491, 100512, 6205, NULL, '1.0000', '4.8000', '4.8000', '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 (106514, '2022-08-06', 2673, 100513, 6205, 55938, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106515, '2022-08-06', 8835, 100514, 6205, 57150, '1.0000', '7.0000', '7.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106516, '2022-08-06', 2728, 100515, 6205, 19354, '1.0000', '0.8000', '0.8000', '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 (106517, '2022-08-06', 2616, 100516, 6206, 59597, '1.0000', '3.3750', '3.3750', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106518, '2022-08-06', 9831, 100517, 6207, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106519, '2022-08-06', 8746, 100518, 6207, 59659, '1.0000', '2.4364', '2.4364', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106520, '2022-08-06', 7944, 100519, 6208, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106521, '2022-08-06', 2906, 100520, 6209, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106522, '2022-08-06', 7544, 100521, 6209, NULL, '2.0000', '9.4300', '9.4300', '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 (106523, '2022-08-06', 1841, 100522, 6209, 56033, '2.0000', '0.1970', '0.1970', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106524, '2022-08-06', 7790, 100523, 6209, NULL, '8.0000', '-7.6667', '-7.6667', '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 (106525, '2022-08-06', 8163, 100524, 6209, 59145, '1.0000', '26.9166', '26.9166', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106526, '2022-08-06', 2104, 100525, 6209, NULL, '2.0000', '0.2000', '0.2000', '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 (106527, '2022-08-06', 9695, 100526, 6209, 60197, '1.0000', '5.8843', '5.8843', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106528, '2022-08-06', 8063, 100527, 6209, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '77.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106529, '2022-08-06', 7412, 100528, 6209, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106530, '2022-08-06', 9503, 100529, 6209, 56528, '1.0000', '1.2700', '1.2700', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106531, '2022-08-06', 2287, 100530, 6209, 59355, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '24.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106532, '2022-08-06', 7473, 100531, 6209, 59361, '7.0000', '0.5887', '0.5887', '0.7000', '0.7000', '24.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106533, '2022-08-06', 2102, 100532, 6209, 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 (106534, '2022-08-06', 7707, 100533, 6209, 60125, '1.0000', '7.1500', '7.1500', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106535, '2022-08-06', 9819, 100534, 6209, 59329, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106536, '2022-08-06', 8810, 100535, 6209, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106537, '2022-08-06', 8600, 100536, 6209, NULL, '1.0000', '0.6300', '0.6300', '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 (106538, '2022-08-06', 7518, 100537, 6209, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106539, '2022-08-06', 9269, 100538, 6209, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106540, '2022-08-06', 8308, 100539, 6209, NULL, '1.0000', '22.3258', '22.3258', '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 (106541, '2022-08-06', 9275, 100540, 6209, NULL, '1.0000', '6.3000', '6.3000', '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 (106542, '2022-08-06', 8254, 100541, 6209, 60138, '1.0000', '28.0373', '28.0373', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106543, '2022-08-06', 8485, 100542, 6209, NULL, '1.0000', '6.0600', '6.0600', '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 (106544, '2022-08-06', 7514, 100543, 6209, NULL, '1.0000', '-19420.5252', '-19420.5252', '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 (106545, '2022-08-06', 9809, 100544, 6209, 59084, '1.0000', '6.0804', '6.0804', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106546, '2022-08-06', 7925, 100545, 6209, 60118, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106547, '2022-08-06', 8878, 100546, 6209, 60142, '2.0000', '0.1062', '0.1062', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106548, '2022-08-06', 7346, 100547, 6209, 56150, '1.0000', '103.7200', '103.7200', '121.0000', '121.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106549, '2022-08-06', 7412, 100548, 6209, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106550, '2022-08-06', 7514, 100549, 6209, NULL, '2.0000', '-19420.5252', '-19420.5252', '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 (106551, '2022-08-06', 2506, 100550, 6209, 59309, '1.0000', '4.6791', '4.6791', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106552, '2022-08-06', 8308, 100551, 6209, NULL, '1.0000', '22.3258', '22.3258', '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 (106553, '2022-08-06', 1856, 100552, 6209, 60120, '1.0000', '0.7368', '0.7368', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106554, '2022-08-06', 7385, 100553, 6209, 59399, '8.0000', '6.5272', '6.5272', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106555, '2022-08-06', 7385, 100553, 6209, 59184, '2.0000', '6.5272', '6.5272', '4.0000', '4.0000', '55.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106556, '2022-08-06', 9076, 100554, 6209, NULL, '1.0000', '52.0200', '52.0200', '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 (106557, '2022-08-06', 1935, 100555, 6209, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106558, '2022-08-06', 9167, 100556, 6209, 56559, '1.0000', '-642.1659', '-642.1659', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106559, '2022-08-06', 9762, 100557, 6209, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106560, '2022-08-06', 7473, 100558, 6209, 59361, '5.0000', '0.5887', '0.5887', '0.7000', '0.7000', '26.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106561, '2022-08-06', 7762, 100559, 6209, 57413, '2.0000', '0.7818', '0.7818', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106562, '2022-08-06', 8965, 100560, 6209, NULL, '1.0000', '-263.2470', '-263.2470', '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 (106563, '2022-08-06', 9894, 100561, 6209, 59344, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106564, '2022-08-06', 7518, 100562, 6209, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106565, '2022-08-06', 8677, 100563, 6209, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106566, '2022-08-06', 7509, 100564, 6209, 60146, '1.0000', '9.0351', '9.0351', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106567, '2022-08-06', 1947, 100565, 6209, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106568, '2022-08-06', 2315, 100566, 6209, 60129, '1.0000', '0.7586', '0.7586', '1.0000', '1.0000', '65.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106569, '2022-08-06', 7959, 100567, 6209, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '17.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106570, '2022-08-06', 2290, 100568, 6209, NULL, '1.0000', '9.8433', '9.8433', '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 (106571, '2022-08-06', 7502, 100569, 6209, NULL, '5.0000', '1.4000', '1.4000', '12.0000', '12.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 (106572, '2022-08-06', 7562, 100570, 6209, 57409, '1.0000', '6.1314', '6.1314', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106573, '2022-08-06', 7608, 100571, 6209, 56695, '1.0000', '9.4722', '9.4722', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106574, '2022-08-06', 2699, 100572, 6209, NULL, '2.0000', '3.0000', '3.0000', '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 (106575, '2022-08-06', 8825, 100573, 6209, 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 (106576, '2022-08-06', 8548, 100574, 6209, NULL, '2.0000', '-4.1859', '-4.1859', '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 (106577, '2022-08-06', 7457, 100575, 6209, 59383, '1.0000', '4.6990', '4.6990', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106578, '2022-08-06', 7411, 100576, 6209, 60143, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106579, '2022-08-06', 9505, 100577, 6209, 59413, '1.0000', '72.9400', '72.9400', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106580, '2022-08-06', 7657, 100578, 6209, NULL, '1.0000', '16.6528', '16.6528', '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 (106581, '2022-08-06', 1383, 100579, 6210, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106582, '2022-08-06', 2315, 100580, 6211, 60129, '3.0000', '0.7586', '0.7586', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106583, '2022-08-06', 2699, 100581, 6211, NULL, '2.0000', '3.0000', '3.0000', '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 (106584, '2022-08-06', 7730, 100582, 6211, 60195, '6.0000', '0.0723', '0.0723', '0.2000', '0.2000', '128.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106585, '2022-08-06', 8467, 100583, 6211, 60174, '1.0000', '64.4150', '64.4150', '87.0000', '87.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106586, '2022-08-06', 7518, 100584, 6211, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106587, '2022-08-06', 8596, 100585, 6211, NULL, '2.0000', '39.8982', '39.8982', '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 (106588, '2022-08-06', 8134, 100586, 6211, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106589, '2022-08-06', 8310, 100587, 6211, NULL, '1.0000', '22.5000', '22.5000', '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 (106590, '2022-08-06', 8207, 100588, 6211, NULL, '1.0000', '0.0000', '0.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 (106591, '2022-08-06', 7674, 100589, 6211, 59199, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106592, '2022-08-06', 7473, 100590, 6211, 59361, '4.0000', '0.5887', '0.5887', '0.7000', '0.7000', '15.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106593, '2022-08-06', 9734, 100591, 6211, 60144, '2.0000', '0.3152', '0.3152', '0.7000', '0.7000', '80.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106594, '2022-08-06', 7324, 100592, 6211, 60112, '3.0000', '6.3200', '6.3200', '8.5000', '8.5000', '17.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106595, '2022-08-06', 7862, 100593, 6211, NULL, '1.0000', '87.4250', '87.4250', '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 (106596, '2022-08-06', 9001, 100594, 6211, NULL, '1.0000', '29.6338', '29.6338', '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 (106597, '2022-08-06', 2363, 100595, 6211, 57465, '1.0000', '9.5960', '9.5960', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106598, '2022-08-06', 8136, 100596, 6211, NULL, '1.0000', '-4.7978', '-4.7978', '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 (106599, '2022-08-06', 7339, 100597, 6211, 56611, '10.0000', '-85.2778', '-85.2778', '0.9000', '0.9000', '70.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106600, '2022-08-06', 2069, 100598, 6211, 57633, '1.0000', '7.4345', '7.4345', '9.5000', '9.5000', '18.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106601, '2022-08-06', 7834, 100599, 6211, 60193, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106602, '2022-08-06', 7585, 100600, 6211, NULL, '4.0000', '5.1389', '5.1389', '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 (106603, '2022-08-06', 2315, 100601, 6211, 60129, '2.0000', '0.7586', '0.7586', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106604, '2022-08-06', 7674, 100602, 6211, 59199, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106605, '2022-08-06', 2287, 100603, 6211, 59355, '1.0000', '3.1700', '3.1700', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106606, '2022-08-06', 9272, 100604, 6211, NULL, '1.0000', '3.1000', '3.1000', '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 (106607, '2022-08-06', 7590, 100605, 6211, NULL, '1.0000', '6.0509', '6.0509', '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 (106608, '2022-08-06', 9762, 100606, 6211, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106609, '2022-08-06', 7444, 100607, 6211, 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 (106610, '2022-08-06', 7864, 100608, 6211, 57170, '2.0000', '20.7755', '20.7755', '30.0000', '30.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106611, '2022-08-06', 7672, 100609, 6211, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106612, '2022-08-06', 8161, 100610, 6211, NULL, '2.0000', '26.7096', '26.7096', '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 (106613, '2022-08-06', 9599, 100611, 6211, NULL, '1.0000', '2.7300', '2.7300', '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 (106614, '2022-08-06', 2108, 100612, 6212, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106615, '2022-08-06', 8015, 100613, 6212, 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 (106616, '2022-08-06', 1546, 100614, 6212, 48166, '2.0000', '51.6105', '51.6105', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106617, '2022-08-06', 7531, 100615, 6212, 52150, '2.0000', '2.9968', '2.9968', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106618, '2022-08-06', 8119, 100616, 6212, 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 (106619, '2022-08-06', 9831, 100617, 6212, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106620, '2022-08-06', 1905, 100618, 6212, NULL, '2.0000', '0.5203', '0.5203', '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 (106621, '2022-08-06', 8011, 100619, 6212, NULL, '1.0000', '0.9500', '0.9500', '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 (106622, '2022-08-06', 2273, 100620, 6212, 60335, '1.0000', '3.0605', '3.0605', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106623, '2022-08-06', 3029, 100621, 6212, 60266, '1.0000', '59.9505', '59.9505', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106624, '2022-08-06', 7832, 100622, 6212, NULL, '1.0000', '11.0000', '11.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 (106625, '2022-08-06', 1637, 100623, 6212, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106626, '2022-08-06', 2416, 100624, 6212, 59669, '1.0000', '1.3394', '1.3394', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106627, '2022-08-06', 1904, 100625, 6212, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106628, '2022-08-06', 1637, 100626, 6212, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106629, '2022-08-06', 2299, 100627, 6212, 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 (106630, '2022-08-06', 1346, 100628, 6212, 55603, '7.0000', '1.6774', '1.6774', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106631, '2022-08-06', 1904, 100629, 6212, 60310, '5.0000', '2.3094', '2.3094', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106632, '2022-08-06', 9776, 100630, 6212, 57721, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106633, '2022-08-06', 1557, 100631, 6212, 60305, '1.0000', '8.2500', '8.2500', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106634, '2022-08-06', 1904, 100632, 6212, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106635, '2022-08-06', 7411, 100633, 6212, NULL, '2.0000', '1.2819', '1.2819', '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 (106636, '2022-08-06', 8769, 100634, 6212, 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 (106637, '2022-08-06', 3029, 100635, 6212, 60266, '1.0000', '59.9505', '59.9505', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106638, '2022-08-06', 1804, 100636, 6212, NULL, '1.0000', '0.4450', '0.4450', '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 (106639, '2022-08-06', 9943, 100637, 6212, NULL, '1.0000', '16.8000', '16.8000', '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 (106640, '2022-08-06', 2315, 100638, 6212, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106641, '2022-08-06', 8677, 100639, 6212, NULL, '2.0000', '1026.1382', '1026.1382', '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 (106642, '2022-08-06', 1873, 100640, 6212, 58170, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106643, '2022-08-06', 1873, 100640, 6212, 57676, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106644, '2022-08-06', 1499, 100641, 6212, 52148, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '3.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106645, '2022-08-06', 1407, 100642, 6212, 54556, '1.0000', '19.0167', '19.0167', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106646, '2022-08-06', 7514, 100643, 6212, NULL, '1.0000', '2.2500', '2.2500', '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 (106647, '2022-08-06', 1812, 100644, 6212, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106648, '2022-08-06', 8566, 100645, 6212, 58043, '1.0000', '18.0000', '18.0000', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106649, '2022-08-06', 9734, 100646, 6212, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '67.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106650, '2022-08-06', 8395, 100647, 6212, NULL, '2.0000', '0.9700', '0.9700', '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 (106651, '2022-08-06', 2315, 100648, 6212, 60316, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106652, '2022-08-06', 8745, 100649, 6212, NULL, '1.0000', '13.9869', '13.9869', '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 (106653, '2022-08-06', 9089, 100650, 6212, 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 (106654, '2022-08-06', 8710, 100651, 6212, NULL, '1.0000', '10.9000', '10.9000', '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 (106655, '2022-08-06', 1688, 100652, 6212, 59601, '1.0000', '23.2094', '23.2094', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106656, '2022-08-06', 1912, 100653, 6212, NULL, '2.0000', '0.6868', '0.6868', '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 (106657, '2022-08-06', 9747, 100654, 6212, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106658, '2022-08-06', 1521, 100655, 6212, NULL, '2.0000', '-770.4750', '-770.4750', '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 (106659, '2022-08-06', 9750, 100656, 6212, NULL, '1.0000', '2.7458', '2.7458', '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 (106660, '2022-08-06', 2068, 100657, 6212, NULL, '2.0000', '14.6943', '14.6943', '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 (106661, '2022-08-06', 9864, 100658, 6212, 55579, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106662, '2022-08-06', 2440, 100659, 6212, 59696, '1.0000', '6.9575', '6.9575', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106663, '2022-08-06', 2293, 100660, 6212, NULL, '3.0000', '-17.4320', '-17.4320', '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 (106664, '2022-08-06', 1501, 100661, 6212, NULL, '1.0000', '0.3856', '0.3856', '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 (106665, '2022-08-06', 2244, 100662, 6212, NULL, '1.0000', '-2.9000', '-2.9000', '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 (106666, '2022-08-06', 7564, 100663, 6212, NULL, '1.0000', '0.6400', '0.6400', '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 (106667, '2022-08-06', 7639, 100664, 6212, 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 (106668, '2022-08-06', 1780, 100665, 6212, NULL, '1.0000', '95.5759', '95.5759', '60.5000', '60.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106669, '2022-08-06', 7713, 100666, 6212, 59895, '3.0000', '0.1598', '0.1598', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106670, '2022-08-06', 2821, 100667, 6212, NULL, '1.0000', '3.4037', '3.4037', '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 (106671, '2022-08-06', 9747, 100668, 6212, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106672, '2022-08-06', 2315, 100669, 6212, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106673, '2022-08-06', 2617, 100670, 6212, NULL, '1.0000', '-5.4200', '-5.4200', '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 (106674, '2022-08-06', 9202, 100671, 6212, NULL, '1.0000', '3.5000', '3.5000', '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 (106675, '2022-08-06', 1905, 100672, 6212, NULL, '2.0000', '0.5203', '0.5203', '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 (106676, '2022-08-06', 2366, 100673, 6212, NULL, '2.0000', '-98.6017', '-98.6017', '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 (106677, '2022-08-06', 2821, 100674, 6212, NULL, '1.0000', '3.4037', '3.4037', '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 (106678, '2022-08-06', 9828, 100675, 6212, NULL, '2.0000', '2.9100', '2.9100', '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 (106679, '2022-08-06', 8744, 100676, 6212, 59647, '1.0000', '1.7672', '1.7672', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106680, '2022-08-06', 7411, 100677, 6212, NULL, '1.0000', '1.2819', '1.2819', '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 (106681, '2022-08-06', 2342, 100678, 6212, 58159, '1.0000', '2.3666', '2.3666', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106682, '2022-08-06', 2156, 100679, 6212, 55716, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106683, '2022-08-06', 9897, 100680, 6212, 55685, '10.0000', '1.7300', '1.7300', '2.3000', '2.3000', '16.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106684, '2022-08-06', 1884, 100681, 6212, NULL, '1.0000', '17.4104', '17.4104', '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 (106685, '2022-08-06', 2821, 100682, 6212, NULL, '1.0000', '3.4037', '3.4037', '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 (106686, '2022-08-06', 7398, 100683, 6212, NULL, '1.0000', '143.5000', '143.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 (106687, '2022-08-06', 2986, 100684, 6212, 59900, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106688, '2022-08-06', 7411, 100685, 6212, NULL, '1.0000', '1.2819', '1.2819', '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 (106689, '2022-08-06', 2221, 100686, 6212, NULL, '1.0000', '2.3805', '2.3805', '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 (106690, '2022-08-06', 7411, 100687, 6212, NULL, '1.0000', '1.2819', '1.2819', '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 (106691, '2022-08-06', 7641, 100688, 6212, NULL, '1.0000', '1.9000', '1.9000', '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 (106692, '2022-08-06', 2315, 100689, 6212, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106693, '2022-08-06', 2169, 100690, 6212, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106694, '2022-08-06', 2506, 100691, 6212, NULL, '1.0000', '-9.4377', '-9.4377', '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 (106695, '2022-08-06', 1640, 100692, 6212, NULL, '1.0000', '3.0496', '3.0496', '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 (106696, '2022-08-06', 2260, 100693, 6212, 51688, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106697, '2022-08-06', 7641, 100694, 6212, NULL, '1.0000', '1.9000', '1.9000', '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 (106698, '2022-08-06', 9532, 100695, 6212, 59689, '1.0000', '11.0235', '11.0235', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106699, '2022-08-06', 2655, 100696, 6212, NULL, '2.0000', '-16.0142', '-16.0142', '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 (106700, '2022-08-06', 1983, 100697, 6212, NULL, '1.0000', '11.0000', '11.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 (106701, '2022-08-06', 2031, 100698, 6212, 59686, '1.0000', '4.9116', '4.9116', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106702, '2022-08-06', 1667, 100699, 6212, 57712, '2.0000', '9.6099', '9.6099', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106703, '2022-08-06', 7741, 100700, 6212, NULL, '1.0000', '-174.4114', '-174.4114', '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 (106704, '2022-08-06', 2506, 100701, 6212, NULL, '1.0000', '-9.4377', '-9.4377', '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 (106705, '2022-08-06', 2656, 100702, 6212, 59643, '1.0000', '2.6240', '2.6240', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106706, '2022-08-06', 8020, 100703, 6212, NULL, '1.0000', '51.6000', '51.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 (106707, '2022-08-06', 2085, 100704, 6212, 60337, '2.0000', '1.4119', '1.4119', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106708, '2022-08-06', 7832, 100705, 6212, NULL, '1.0000', '11.0000', '11.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 (106709, '2022-08-06', 9945, 100706, 6212, 60251, '1.0000', '12.1000', '12.1000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106710, '2022-08-06', 2342, 100707, 6212, 58159, '1.0000', '2.3666', '2.3666', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106711, '2022-08-06', 9845, 100708, 6212, 58251, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106712, '2022-08-06', 2765, 100709, 6212, NULL, '1.0000', '-3.5000', '-3.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 (106713, '2022-08-06', 2250, 100710, 6212, 60309, '1.0000', '9.1590', '9.1590', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106714, '2022-08-06', 2821, 100711, 6212, NULL, '1.0000', '3.4037', '3.4037', '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 (106715, '2022-08-06', 9740, 100712, 6212, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106716, '2022-08-06', 2289, 100713, 6212, NULL, '1.0000', '0.3611', '0.3611', '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 (106717, '2022-08-06', 9734, 100714, 6212, 60360, '1.0000', '0.4261', '0.4261', '0.7000', '0.7000', '68.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106718, '2022-08-06', 9866, 100715, 6212, 57677, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106719, '2022-08-06', 8017, 100716, 6212, 59863, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106720, '2022-08-06', 2315, 100717, 6212, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106721, '2022-08-06', 7411, 100718, 6213, 48774, '1.0000', '1.3793', '1.3793', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106722, '2022-08-06', 1912, 100719, 6213, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '90.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106723, '2022-08-06', 2363, 100720, 6213, 58755, '2.0000', '7.9124', '7.9124', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106724, '2022-08-06', 2916, 100721, 6213, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106725, '2022-08-06', 2221, 100722, 6213, 58659, '1.0000', '17.3584', '17.3584', '26.0000', '26.0000', '22.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106726, '2022-08-06', 2916, 100723, 6213, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106727, '2022-08-06', 1432, 100724, 6213, 59982, '1.0000', '11.5719', '11.5719', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106728, '2022-08-06', 2643, 100725, 6213, 58009, '1.0000', '0.9691', '0.9691', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106729, '2022-08-06', 2416, 100726, 6213, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106730, '2022-08-06', 1347, 100727, 6213, 59626, '3.0000', '-0.5451', '-0.5451', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106731, '2022-08-06', 2821, 100728, 6213, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106732, '2022-08-06', 2916, 100729, 6213, 58768, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106733, '2022-08-06', 1371, 100730, 6213, 41971, '1.0000', '2454.3187', '2454.3187', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106734, '2022-08-06', 9089, 100731, 6213, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106735, '2022-08-06', 8756, 100732, 6214, NULL, '1.0000', '8.5042', '8.5042', '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 (106736, '2022-08-06', 8136, 100733, 6214, NULL, '1.0000', '-4.7978', '-4.7978', '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 (106737, '2022-08-06', 9734, 100734, 6214, 60144, '2.0000', '0.3152', '0.3152', '0.7000', '0.7000', '78.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106738, '2022-08-06', 7671, 100735, 6214, NULL, '2.0000', '861.3000', '861.3000', '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 (106739, '2022-08-06', 9456, 100736, 6214, 54750, '1.0000', '3.4942', '3.4942', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106740, '2022-08-06', 7564, 100737, 6214, 59164, '1.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106741, '2022-08-06', 9794, 100738, 6214, 50668, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106742, '2022-08-06', 2169, 100739, 6215, 59977, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106743, '2022-08-06', 2315, 100740, 6215, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106744, '2022-08-06', 2363, 100741, 6215, 58755, '2.0000', '7.9124', '7.9124', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106745, '2022-08-06', 7744, 100742, 6215, NULL, '2.0000', '2.9400', '2.9400', '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 (106746, '2022-08-06', 2221, 100743, 6215, 58659, '2.0000', '17.3584', '17.3584', '26.0000', '26.0000', '20.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106747, '2022-08-06', 9715, 100744, 6215, 60068, '1.0000', '9.7509', '9.7509', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106748, '2022-08-06', 9715, 100745, 6215, 60068, '1.0000', '9.7509', '9.7509', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106749, '2022-08-06', 1528, 100746, 6215, 60059, '1.0000', '33.2874', '33.2874', '8.5000', '8.5000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106750, '2022-08-06', 9649, 100747, 6215, 60008, '1.0000', '17.0306', '17.0306', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106751, '2022-08-06', 2256, 100748, 6215, 60054, '1.0000', '15.4874', '15.4874', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106752, '2022-08-06', 1904, 100749, 6215, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106753, '2022-08-06', 8163, 100750, 6215, NULL, '1.0000', '4.9000', '4.9000', '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 (106754, '2022-08-06', 1383, 100751, 6215, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106755, '2022-08-06', 2858, 100752, 6215, 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 (106756, '2022-08-06', 2068, 100753, 6215, 59987, '1.0000', '12.8818', '12.8818', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106757, '2022-08-06', 2858, 100754, 6215, 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 (106758, '2022-08-06', 1506, 100755, 6215, 57948, '1.0000', '25.5190', '25.5190', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106759, '2022-08-06', 1307, 100756, 6215, 58787, '1.0000', '4.1753', '4.1753', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106760, '2022-08-06', 1840, 100757, 6215, 59955, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106761, '2022-08-06', 2289, 100758, 6215, 56722, '2.0000', '0.2692', '0.2692', '0.5000', '0.5000', '45.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106762, '2022-08-06', 1912, 100759, 6215, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106763, '2022-08-06', 1863, 100760, 6215, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106764, '2022-08-06', 2543, 100761, 6215, 58796, '1.0000', '2.2750', '2.2750', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106765, '2022-08-06', 2088, 100762, 6215, 56955, '1.0000', '1.6864', '1.6864', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106766, '2022-08-06', 2169, 100763, 6215, 59977, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106767, '2022-08-06', 2135, 100764, 6215, NULL, '1.0000', '2.2504', '2.2504', '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 (106768, '2022-08-06', 1961, 100765, 6215, 60026, '1.0000', '20.4212', '20.4212', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106769, '2022-08-07', 2169, 100766, 6216, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106770, '2022-08-07', 9482, 100767, 6216, 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 (106771, '2022-08-07', 2948, 100768, 6216, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106772, '2022-08-07', 2916, 100769, 6216, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106773, '2022-08-07', 2315, 100770, 6216, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106774, '2022-08-07', 2965, 100771, 6216, NULL, '1.0000', '18.7797', '18.7797', '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 (106775, '2022-08-07', 2416, 100772, 6216, 59669, '1.0000', '1.3394', '1.3394', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106776, '2022-08-07', 1888, 100773, 6216, 60289, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106777, '2022-08-07', 1521, 100774, 6216, NULL, '2.0000', '-770.4750', '-770.4750', '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 (106778, '2022-08-07', 2315, 100775, 6216, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106779, '2022-08-07', 9832, 100776, 6216, 57495, '2.0000', '1.1069', '1.1069', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106780, '2022-08-07', 9828, 100777, 6216, NULL, '2.0000', '2.9100', '2.9100', '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 (106781, '2022-08-07', 9695, 100778, 6216, 59664, '2.0000', '5.3447', '5.3447', '8.0000', '8.0000', '23.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106782, '2022-08-07', 1602, 100779, 6216, 60317, '2.0000', '7.3695', '7.3695', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106783, '2022-08-07', 2030, 100780, 6216, NULL, '1.0000', '11.3333', '11.3333', '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 (106784, '2022-08-07', 3058, 100781, 6216, NULL, '2.0000', '-47.3000', '-47.3000', '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 (106785, '2022-08-07', 2020, 100782, 6216, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (106786, '2022-08-07', 2293, 100783, 6216, NULL, '2.0000', '-17.4320', '-17.4320', '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 (106787, '2022-08-07', 2284, 100784, 6216, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106788, '2022-08-07', 2936, 100785, 6216, 51654, '1.0000', '6.1500', '6.1500', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106789, '2022-08-07', 9747, 100786, 6216, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106790, '2022-08-07', 1715, 100787, 6216, 60307, '1.0000', '8.2180', '8.2180', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106791, '2022-08-07', 1946, 100788, 6216, NULL, '1.0000', '-6.7231', '-6.7231', '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 (106792, '2022-08-07', 2315, 100789, 6216, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106793, '2022-08-07', 1337, 100790, 6216, 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 (106794, '2022-08-07', 1331, 100791, 6216, NULL, '1.0000', '4.2000', '4.2000', '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 (106795, '2022-08-07', 2297, 100792, 6216, NULL, '1.0000', '10.3086', '10.3086', '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 (106796, '2022-08-07', 1339, 100793, 6216, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106797, '2022-08-07', 2315, 100794, 6216, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106798, '2022-08-07', 1513, 100795, 6216, 59854, '1.0000', '14.1672', '14.1672', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106799, '2022-08-07', 1628, 100796, 6216, 60232, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106800, '2022-08-07', 1772, 100797, 6216, 60328, '1.0000', '5.9694', '5.9694', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106801, '2022-08-07', 2643, 100798, 6216, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106802, '2022-08-07', 1837, 100799, 6216, 59893, '1.0000', '1.6544', '1.6544', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106803, '2022-08-07', 2085, 100800, 6216, 60337, '2.0000', '1.4119', '1.4119', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106804, '2022-08-07', 1528, 100801, 6216, NULL, '1.0000', '900.1354', '900.1354', '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 (106805, '2022-08-07', 1771, 100802, 6216, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106806, '2022-08-07', 1863, 100803, 6216, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106807, '2022-08-07', 2237, 100804, 6216, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106808, '2022-08-07', 9831, 100805, 6217, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106809, '2022-08-07', 2262, 100806, 6217, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106810, '2022-08-07', 1856, 100807, 6217, NULL, '1.0000', '155.0099', '155.0099', '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 (106811, '2022-08-07', 2237, 100808, 6217, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106812, '2022-08-07', 2379, 100809, 6217, NULL, '1.0000', '-14.1447', '-14.1447', '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 (106813, '2022-08-07', 2923, 100810, 6217, 60271, '1.0000', '13.2325', '13.2325', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106814, '2022-08-07', 9979, 100811, 6218, 60279, '1.0000', '13.9000', '13.9000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106815, '2022-08-07', 7514, 100812, 6219, NULL, '1.0000', '2.2500', '2.2500', '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 (106816, '2022-08-07', 7709, 100813, 6219, NULL, '2.0000', '3.5000', '3.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 (106817, '2022-08-07', 8596, 100814, 6219, 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 (106818, '2022-08-07', 2906, 100815, 6219, 18651, '-25.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 (106819, '2022-08-07', 2906, 100815, 6219, NULL, '26.0000', '2.6000', '2.6000', '4.0000', '4.0000', '-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 (106820, '2022-08-07', 2295, 100816, 6219, 2954, '-54.0000', '0.9600', '0.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 (106821, '2022-08-07', 2295, 100816, 6219, NULL, '57.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106822, '2022-08-07', 8978, 100817, 6219, NULL, '1.0000', '0.6900', '0.6900', '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 (106823, '2022-08-07', 8746, 100818, 6219, NULL, '1.0000', '3.1500', '3.1500', '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 (106824, '2022-08-07', 7641, 100819, 6219, NULL, '1.0000', '1.9000', '1.9000', '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 (106825, '2022-08-07', 9734, 100820, 6219, NULL, '3.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (106826, '2022-08-07', 7781, 100821, 6219, NULL, '3.0000', '4.2500', '4.2500', '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 (106827, '2022-08-07', 7730, 100822, 6219, NULL, '6.0000', '0.1000', '0.1000', '0.2000', '0.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 (106828, '2022-08-07', 9811, 100823, 6219, NULL, '1.0000', '29.0000', '29.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 (106829, '2022-08-07', 2920, 100824, 6219, 18777, '-6.0000', '22.0000', '22.0000', '21.5000', '21.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 (106830, '2022-08-07', 2920, 100824, 6219, NULL, '7.0000', '22.0000', '22.0000', '21.5000', '21.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 (106831, '2022-08-07', 7562, 100825, 6219, NULL, '1.0000', '5.5300', '5.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 (106832, '2022-08-07', 7820, 100826, 6219, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106833, '2022-08-07', 9592, 100827, 6219, NULL, '25.0000', '3.2000', '3.2000', '2.1000', '2.1000', '-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 (106834, '2022-08-07', 7952, 100828, 6219, 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 (106835, '2022-08-07', 1846, 100829, 6219, 12032, '-26.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 (106836, '2022-08-07', 1846, 100829, 6219, NULL, '28.0000', '12.0000', '12.0000', '18.0000', '18.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 (106837, '2022-08-07', 1855, 100830, 6219, 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 (106838, '2022-08-07', 2105, 100831, 6219, NULL, '1.0000', '1.3500', '1.3500', '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 (106839, '2022-08-07', 7774, 100832, 6219, NULL, '1.0000', '3.3000', '3.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 (106840, '2022-08-07', 3013, 100833, 6219, 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 (106841, '2022-08-07', 9825, 100834, 6219, 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 (106842, '2022-08-07', 8677, 100835, 6219, NULL, '3.0000', '1.2800', '1.2800', '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 (106843, '2022-08-07', 7883, 100836, 6219, NULL, '1.0000', '34.0000', '34.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 (106844, '2022-08-07', 2289, 100837, 6219, 2949, '-245.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 (106845, '2022-08-07', 2289, 100837, 6219, NULL, '248.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-248.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106846, '2022-08-07', 9953, 100838, 6219, NULL, '1.0000', '8.9000', '8.9000', '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 (106847, '2022-08-07', 8085, 100839, 6219, NULL, '2.0000', '1.1700', '1.1700', '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 (106848, '2022-08-07', 2295, 100840, 6219, 2954, '-54.0000', '0.9600', '0.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 (106849, '2022-08-07', 2295, 100840, 6219, NULL, '57.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106850, '2022-08-07', 8101, 100841, 6219, NULL, '1.0000', '1.9700', '1.9700', '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 (106851, '2022-08-07', 2656, 100842, 6219, NULL, '1.0000', '1.5000', '1.5000', '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 (106852, '2022-08-07', 8415, 100843, 6219, NULL, '1.0000', '3.2500', '3.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 (106853, '2022-08-07', 7555, 100844, 6220, 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 (106854, '2022-08-07', 2416, 100845, 6220, 4745, '-43.0000', '1.2000', '1.2000', '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 (106855, '2022-08-07', 2416, 100845, 6220, NULL, '46.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106856, '2022-08-07', 7671, 100846, 6221, NULL, '1.0000', '861.3000', '861.3000', '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 (106857, '2022-08-07', 8918, 100847, 6221, 59368, '1.0000', '2.5563', '2.5563', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106858, '2022-08-07', 8810, 100848, 6221, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106859, '2022-08-07', 7927, 100849, 6221, 59354, '1.0000', '12.7435', '12.7435', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106860, '2022-08-07', 8186, 100850, 6221, NULL, '3.0000', '1.5626', '1.5626', '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 (106861, '2022-08-07', 7459, 100851, 6221, 59339, '20.0000', '26.0971', '26.0971', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106862, '2022-08-07', 7518, 100852, 6221, 60132, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106863, '2022-08-07', 9463, 100853, 6221, 59353, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106864, '2022-08-07', 8308, 100854, 6221, NULL, '1.0000', '22.3258', '22.3258', '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 (106865, '2022-08-07', 9271, 100855, 6221, 46698, '1.0000', '1.8173', '1.8173', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106866, '2022-08-07', 7590, 100856, 6221, NULL, '1.0000', '6.0509', '6.0509', '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 (106867, '2022-08-07', 9615, 100857, 6221, 39415, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106868, '2022-08-07', 8032, 100858, 6221, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106869, '2022-08-07', 2699, 100859, 6221, NULL, '1.0000', '3.0000', '3.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 (106870, '2022-08-07', 9942, 100860, 6221, 60115, '1.0000', '9.2802', '9.2802', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106871, '2022-08-07', 7778, 100861, 6221, NULL, '1.0000', '17.8220', '17.8220', '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 (106872, '2022-08-07', 8011, 100862, 6221, 60097, '1.0000', '7.5500', '7.5500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106873, '2022-08-07', 8021, 100863, 6221, 55996, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106874, '2022-08-07', 8308, 100864, 6221, NULL, '1.0000', '22.3258', '22.3258', '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 (106875, '2022-08-07', 7674, 100865, 6221, 59199, '1.0000', '89.9278', '89.9278', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106876, '2022-08-07', 7730, 100866, 6221, 60195, '5.0000', '0.0723', '0.0723', '0.2000', '0.2000', '123.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106877, '2022-08-07', 8200, 100867, 6221, 56669, '1.0000', '8.7746', '8.7746', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106878, '2022-08-07', 7641, 100868, 6221, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '10.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106879, '2022-08-07', 1758, 100869, 6222, NULL, '1.0000', '47.0000', '47.0000', '62.5000', '62.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106880, '2022-08-07', 7671, 100870, 6222, NULL, '2.0000', '861.3000', '861.3000', '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 (106881, '2022-08-07', 7848, 100871, 6222, NULL, '1.0000', '-599.6264', '-599.6264', '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 (106882, '2022-08-07', 9942, 100872, 6222, 60115, '1.0000', '9.2802', '9.2802', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106883, '2022-08-07', 7472, 100873, 6222, 59085, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106884, '2022-08-07', 7886, 100874, 6222, 59133, '1.0000', '4.6185', '4.6185', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106885, '2022-08-07', 7981, 100875, 6222, 56673, '10.0000', '-2.5818', '-2.5818', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106886, '2022-08-07', 9804, 100876, 6222, 55112, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106887, '2022-08-07', 8566, 100877, 6222, 57537, '1.0000', '-38517.4536', '-38517.4536', '22.0000', '22.0000', '8.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106888, '2022-08-07', 7354, 100878, 6222, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106889, '2022-08-07', 1856, 100879, 6222, 60120, '1.0000', '0.7368', '0.7368', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106890, '2022-08-07', 7317, 100880, 6223, 59094, '1.0000', '15.4364', '15.4364', '22.5000', '22.5000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106891, '2022-08-07', 2104, 100881, 6223, NULL, '1.0000', '0.2000', '0.2000', '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 (106892, '2022-08-07', 1841, 100882, 6223, 56033, '1.0000', '0.1970', '0.1970', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106893, '2022-08-07', 7544, 100883, 6223, NULL, '1.0000', '9.4300', '9.4300', '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 (106894, '2022-08-07', 7411, 100884, 6223, 60143, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106895, '2022-08-07', 7778, 100885, 6223, NULL, '1.0000', '17.8220', '17.8220', '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 (106896, '2022-08-07', 2242, 100886, 6223, 56030, '3.0000', '0.6908', '0.6908', '1.5000', '1.5000', '108.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106897, '2022-08-07', 7482, 100887, 6223, 56021, '1.0000', '4.2593', '4.2593', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106898, '2022-08-07', 7730, 100888, 6223, 60195, '2.0000', '0.0723', '0.0723', '0.2000', '0.2000', '121.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106899, '2022-08-07', 7989, 100889, 6223, NULL, '1.0000', '-35.9089', '-35.9089', '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 (106900, '2022-08-07', 8097, 100890, 6223, NULL, '3.0000', '5.2765', '5.2765', '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 (106901, '2022-08-07', 2102, 100891, 6223, 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 (106902, '2022-08-07', 7954, 100892, 6223, NULL, '1.0000', '7039.4904', '7039.4904', '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 (106903, '2022-08-07', 9811, 100893, 6223, 57198, '1.0000', '25.6556', '25.6556', '31.0000', '31.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106904, '2022-08-07', 7911, 100894, 6223, 59318, '1.0000', '3.9600', '3.9600', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106905, '2022-08-07', 8308, 100895, 6223, NULL, '1.0000', '22.3258', '22.3258', '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 (106906, '2022-08-07', 7453, 100896, 6223, 57636, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106907, '2022-08-07', 7640, 100897, 6223, 56029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106908, '2022-08-07', 9729, 100898, 6223, 60148, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106909, '2022-08-07', 8677, 100899, 6223, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106910, '2022-08-07', 7412, 100900, 6223, 59161, '1.0000', '2.1381', '2.1381', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106911, '2022-08-07', 9665, 100901, 6224, NULL, '1.0000', '30.7500', '30.7500', '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 (106912, '2022-08-07', 7743, 100902, 6224, NULL, '1.0000', '919779.6853', '919779.6853', '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 (106913, '2022-08-07', 9006, 100903, 6224, NULL, '1.0000', '43.1500', '43.1500', '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 (106914, '2022-08-07', 8016, 100904, 6224, NULL, '1.0000', '42.0000', '42.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 (106915, '2022-08-07', 3010, 100905, 6224, NULL, '1.0000', '42.0000', '42.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106916, '2022-08-07', 9482, 100906, 6225, 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 (106917, '2022-08-07', 2169, 100907, 6225, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106918, '2022-08-07', 7713, 100908, 6225, 59895, '7.0000', '0.1598', '0.1598', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106919, '2022-08-07', 8359, 100909, 6225, NULL, '1.0000', '13.5000', '13.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 (106920, '2022-08-07', 7398, 100910, 6225, NULL, '1.0000', '143.5000', '143.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 (106921, '2022-08-07', 2765, 100911, 6225, NULL, '1.0000', '-3.5000', '-3.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 (106922, '2022-08-07', 1912, 100912, 6225, NULL, '1.0000', '0.6868', '0.6868', '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 (106923, '2022-08-07', 2942, 100913, 6225, 59882, '1.0000', '0.8200', '0.8200', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106924, '2022-08-07', 1888, 100914, 6225, 60289, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106925, '2022-08-07', 7926, 100915, 6225, 60315, '1.0000', '4.2867', '4.2867', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106926, '2022-08-07', 7514, 100916, 6225, NULL, '1.0000', '2.2500', '2.2500', '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 (106927, '2022-08-07', 8677, 100917, 6225, NULL, '2.0000', '1026.1382', '1026.1382', '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 (106928, '2022-08-07', 2754, 100918, 6225, NULL, '3.0000', '0.0800', '0.0800', '0.2000', '0.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 (106929, '2022-08-07', 9740, 100919, 6225, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106930, '2022-08-07', 1904, 100920, 6225, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106931, '2022-08-07', 9750, 100921, 6225, NULL, '1.0000', '2.7458', '2.7458', '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 (106932, '2022-08-07', 1690, 100922, 6225, 60355, '1.0000', '8.6455', '8.6455', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106933, '2022-08-07', 1872, 100923, 6225, 60287, '1.0000', '11.2454', '11.2454', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106934, '2022-08-07', 2109, 100924, 6225, NULL, '1.0000', '0.0413', '0.0413', '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 (106935, '2022-08-07', 1665, 100925, 6225, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106936, '2022-08-07', 9740, 100926, 6225, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106937, '2022-08-07', 1904, 100927, 6225, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106938, '2022-08-07', 2342, 100928, 6225, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106939, '2022-08-07', 2260, 100929, 6225, 51688, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106940, '2022-08-07', 2088, 100930, 6225, 60330, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106941, '2022-08-07', 7641, 100931, 6225, NULL, '1.0000', '1.9000', '1.9000', '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 (106942, '2022-08-07', 8165, 100932, 6225, 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 (106943, '2022-08-07', 9942, 100933, 6225, NULL, '1.0000', '13.1000', '13.1000', '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 (106944, '2022-08-07', 7639, 100934, 6225, 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 (106945, '2022-08-07', 9831, 100935, 6225, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106946, '2022-08-07', 9695, 100936, 6225, 59664, '1.0000', '5.3447', '5.3447', '8.0000', '8.0000', '22.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106947, '2022-08-07', 9416, 100937, 6225, 49675, '1.0000', '4.2857', '4.2857', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106948, '2022-08-07', 1670, 100938, 6225, NULL, '1.0000', '-32.2503', '-32.2503', '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 (106949, '2022-08-07', 2275, 100939, 6225, 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 (106950, '2022-08-07', 1669, 100940, 6225, NULL, '14.0000', '9.3000', '9.3000', '14.0000', '14.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 (106951, '2022-08-07', 2352, 100941, 6225, NULL, '3.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (106952, '2022-08-07', 8616, 100942, 6225, NULL, '1.0000', '27.9000', '27.9000', '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 (106953, '2022-08-07', 2315, 100943, 6225, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106954, '2022-08-07', 7324, 100944, 6225, NULL, '1.0000', '5.4813', '5.4813', '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 (106955, '2022-08-07', 8183, 100945, 6225, NULL, '1.0000', '2774.2425', '2774.2425', '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 (106956, '2022-08-07', 2315, 100946, 6225, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106957, '2022-08-07', 7639, 100947, 6225, 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 (106958, '2022-08-07', 9529, 100948, 6225, 60344, '1.0000', '16.9600', '16.9600', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106959, '2022-08-07', 9740, 100949, 6225, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106960, '2022-08-07', 1501, 100950, 6225, NULL, '1.0000', '0.3856', '0.3856', '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 (106961, '2022-08-07', 1307, 100951, 6225, NULL, '1.0000', '-106.4636', '-106.4636', '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 (106962, '2022-08-07', 1621, 100952, 6225, 60228, '1.0000', '17.1389', '17.1389', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106963, '2022-08-07', 2169, 100953, 6225, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106964, '2022-08-07', 7743, 100954, 6225, NULL, '2.0000', '7.3900', '7.3900', '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 (106965, '2022-08-07', 2315, 100955, 6225, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106966, '2022-08-07', 7639, 100956, 6225, 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 (106967, '2022-08-07', 2643, 100957, 6225, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106968, '2022-08-07', 2986, 100958, 6225, 59900, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106969, '2022-08-07', 9831, 100959, 6226, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106970, '2022-08-07', 1904, 100960, 6227, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106971, '2022-08-07', 2416, 100961, 6227, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106972, '2022-08-07', 1892, 100962, 6227, 58588, '1.0000', '0.5200', '0.5200', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106973, '2022-08-07', 1837, 100963, 6227, 60063, '2.0000', '0.6105', '0.6105', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106974, '2022-08-07', 1872, 100964, 6227, 60005, '1.0000', '10.6019', '10.6019', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106975, '2022-08-07', 1908, 100965, 6227, 5510, '1.0000', '1.7500', '1.7500', '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 (106976, '2022-08-07', 2558, 100966, 6227, 44508, '1.0000', '5.4253', '5.4253', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106977, '2022-08-07', 9089, 100967, 6227, 58000, '1.0000', '5.2244', '5.2244', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106978, '2022-08-07', 2229, 100968, 6227, 44488, '1.0000', '26.0242', '26.0242', '37.0000', '37.0000', '1.0000', 1, 0, NULL, 310);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106979, '2022-08-07', 8933, 100969, 6227, 58002, '1.0000', '8.7475', '8.7475', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106980, '2022-08-07', 9213, 100970, 6227, 55451, '1.0000', '5.7334', '5.7334', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106981, '2022-08-07', 9213, 100970, 6227, 42925, '2.0000', '5.7334', '5.7334', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106982, '2022-08-07', 2167, 100971, 6227, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106983, '2022-08-07', 2262, 100972, 6227, 55469, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106984, '2022-08-07', 8208, 100973, 6227, NULL, '2.0000', '33.0000', '33.0000', '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 (106985, '2022-08-07', 1525, 100974, 6227, NULL, '3.0000', '90.0000', '90.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 (106986, '2022-08-07', 9715, 100975, 6227, 60068, '1.0000', '9.7509', '9.7509', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106987, '2022-08-07', 1493, 100976, 6227, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106988, '2022-08-07', 1590, 100977, 6227, 9437, '1.0000', '1.7700', '1.7700', '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 (106989, '2022-08-07', 1383, 100978, 6227, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106990, '2022-08-07', 1602, 100979, 6227, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106991, '2022-08-07', 9738, 100980, 6227, 58587, '1.0000', '7.3500', '7.3500', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106992, '2022-08-07', 9747, 100981, 6227, 59965, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106993, '2022-08-07', 7744, 100982, 6227, NULL, '1.0000', '2.9400', '2.9400', '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 (106994, '2022-08-07', 7608, 100983, 6227, NULL, '1.0000', '6.9800', '6.9800', '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 (106995, '2022-08-07', 1665, 100984, 6227, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106996, '2022-08-07', 2384, 100985, 6227, 60032, '3.0000', '0.4392', '0.4392', '0.8000', '0.8000', '97.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106997, '2022-08-07', 2410, 100986, 6227, 58772, '1.0000', '6.6700', '6.6700', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106998, '2022-08-07', 9736, 100987, 6227, 58778, '1.0000', '4.4200', '4.4200', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106999, '2022-08-07', 1314, 100988, 6227, 21584, '1.0000', '1.2000', '1.2000', '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 (107000, '2022-08-07', 1525, 100989, 6227, NULL, '3.0000', '90.0000', '90.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 (107001, '2022-08-07', 7411, 100990, 6227, NULL, '1.0000', '1.3793', '1.3793', '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 (107002, '2022-08-07', 1306, 100991, 6227, 56248, '5.0000', '2.0627', '2.0627', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107003, '2022-08-07', 1812, 100992, 6227, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107004, '2022-08-07', 2237, 100993, 6227, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107005, '2022-08-07', 1904, 100994, 6227, 59962, '2.0000', '19.3805', '19.3805', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107006, '2022-08-07', 3034, 100995, 6227, 60018, '1.0000', '18.3333', '18.3333', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107007, '2022-08-07', 1646, 100996, 6227, 59961, '1.0000', '5.3633', '5.3633', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107008, '2022-08-07', 7411, 100997, 6227, NULL, '1.0000', '1.3793', '1.3793', '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 (107009, '2022-08-07', 2821, 100998, 6227, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107010, '2022-08-07', 2068, 100999, 6227, 59987, '1.0000', '12.8818', '12.8818', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107011, '2022-08-07', 2315, 101000, 6227, 60074, '3.0000', '0.5758', '0.5758', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107012, '2022-08-07', 1904, 101001, 6227, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107013, '2022-08-07', 8773, 101002, 6227, NULL, '1.0000', '-3.5797', '-3.5797', '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 (107014, '2022-08-07', 1884, 101003, 6227, 47968, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107015, '2022-08-07', 1840, 101004, 6227, 59955, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107016, '2022-08-07', 1841, 101005, 6227, 59954, '2.0000', '0.2061', '0.2061', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107017, '2022-08-07', 7675, 101006, 6227, NULL, '1.0000', '11.4300', '11.4300', '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 (107018, '2022-08-07', 8677, 101007, 6227, 60034, '1.0000', '2.1023', '2.1023', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107019, '2022-08-07', 2821, 101008, 6227, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107020, '2022-08-08', 2236, 101009, 6228, 60308, '1.0000', '5.5597', '5.5597', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107021, '2022-08-08', 1756, 101010, 6228, 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 (107022, '2022-08-08', 1499, 101011, 6228, 52148, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107023, '2022-08-08', 2302, 101012, 6228, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '47.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107024, '2022-08-08', 8052, 101013, 6228, NULL, '1.0000', '0.4700', '0.4700', '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 (107025, '2022-08-08', 7318, 101014, 6228, 60226, '1.0000', '12.1931', '12.1931', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107026, '2022-08-08', 2864, 101015, 6228, 60338, '9.0000', '3.3622', '3.3622', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107027, '2022-08-08', 3045, 101016, 6228, 60248, '1.0000', '4.0533', '4.0533', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107028, '2022-08-08', 7554, 101017, 6228, NULL, '20.0000', '16.0000', '16.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 (107029, '2022-08-08', 2169, 101018, 6228, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107030, '2022-08-08', 1863, 101019, 6228, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107031, '2022-08-08', 9089, 101020, 6228, 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 (107032, '2022-08-08', 8773, 101021, 6228, NULL, '1.0000', '3.8300', '3.8300', '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 (107033, '2022-08-08', 2315, 101022, 6228, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107034, '2022-08-08', 2242, 101023, 6228, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107035, '2022-08-08', 8963, 101024, 6228, 60235, '1.0000', '21.6733', '21.6733', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107036, '2022-08-08', 2259, 101025, 6228, 58154, '1.0000', '25.7085', '25.7085', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107037, '2022-08-08', 8449, 101026, 6228, 55953, '1.0000', '13.9000', '13.9000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107038, '2022-08-08', 2948, 101027, 6228, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107039, '2022-08-08', 9979, 101028, 6228, NULL, '1.0000', '13.9000', '13.9000', '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 (107040, '2022-08-08', 2738, 101029, 6228, 60282, '2.0000', '9.3067', '9.3067', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107041, '2022-08-08', 2740, 101030, 6228, 60236, '1.0000', '11.2413', '11.2413', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107042, '2022-08-08', 1888, 101031, 6228, 60289, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107043, '2022-08-08', 2352, 101032, 6228, NULL, '10.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (107044, '2022-08-08', 7652, 101033, 6228, NULL, '5.0000', '40.3000', '40.3000', '1.6000', '1.6000', '-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 (107045, '2022-08-08', 1965, 101034, 6228, 60345, '1.0000', '13.8600', '13.8600', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107046, '2022-08-08', 2916, 101035, 6228, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107047, '2022-08-08', 2754, 101036, 6228, NULL, '1.0000', '0.0800', '0.0800', '0.2000', '0.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 (107048, '2022-08-08', 2643, 101037, 6228, 59706, '1.0000', '1.0382', '1.0382', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107049, '2022-08-08', 7382, 101038, 6228, 60250, '1.0000', '11.0333', '11.0333', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107050, '2022-08-08', 8155, 101039, 6228, NULL, '1.0000', '65.0000', '65.0000', '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 (107051, '2022-08-08', 1863, 101040, 6228, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107052, '2022-08-08', 1810, 101041, 6228, NULL, '1.0000', '32.9337', '32.9337', '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 (107053, '2022-08-08', 1308, 101042, 6228, 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 (107054, '2022-08-08', 1308, 101043, 6228, 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 (107055, '2022-08-08', 9934, 101044, 6228, 57115, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107056, '2022-08-08', 2315, 101045, 6228, 60316, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107057, '2022-08-08', 7411, 101046, 6228, NULL, '2.0000', '1.2819', '1.2819', '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 (107058, '2022-08-08', 3043, 101047, 6229, 25006, '1.0000', '65.0000', '65.0000', '86.0000', '86.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 (107059, '2022-08-08', 9775, 101048, 6229, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107060, '2022-08-08', 2506, 101049, 6229, NULL, '1.0000', '-9.4377', '-9.4377', '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 (107061, '2022-08-08', 2864, 101050, 6229, 60338, '7.0000', '3.3622', '3.3622', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107062, '2022-08-08', 2410, 101051, 6229, 60269, '1.0000', '4.9430', '4.9430', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107063, '2022-08-08', 1781, 101052, 6230, 60352, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107064, '2022-08-08', 2315, 101053, 6231, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107065, '2022-08-08', 1912, 101054, 6231, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107066, '2022-08-08', 9813, 101055, 6231, NULL, '2.0000', '1.4900', '1.4900', '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 (107067, '2022-08-08', 2289, 101056, 6231, 56722, '1.0000', '0.2692', '0.2692', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107068, '2022-08-08', 1602, 101057, 6231, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107069, '2022-08-08', 1945, 101058, 6231, 58757, '1.0000', '9.7022', '9.7022', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107070, '2022-08-08', 1702, 101059, 6231, 60056, '1.0000', '22.0774', '22.0774', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107071, '2022-08-08', 2085, 101060, 6231, 59966, '5.0000', '6.0814', '6.0814', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107072, '2022-08-08', 2102, 101061, 6231, 56976, '1.0000', '2.0737', '2.0737', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107073, '2022-08-08', 2286, 101062, 6231, 56241, '3.0000', '4.9825', '4.9825', '7.0000', '7.0000', '31.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107074, '2022-08-08', 2135, 101063, 6231, NULL, '1.0000', '2.2504', '2.2504', '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 (107075, '2022-08-08', 2734, 101064, 6231, 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 (107076, '2022-08-08', 1837, 101065, 6231, 60063, '2.0000', '0.6105', '0.6105', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107077, '2022-08-08', 7385, 101066, 6232, NULL, '2.0000', '2.0000', '2.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 (107078, '2022-08-08', 8918, 101067, 6232, NULL, '1.0000', '1.0400', '1.0400', '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 (107079, '2022-08-08', 7589, 101068, 6232, 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 (107080, '2022-08-08', 7514, 101069, 6232, NULL, '2.0000', '2.2500', '2.2500', '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 (107081, '2022-08-08', 2315, 101070, 6232, 2735, '-604.0000', '0.3300', '0.3300', '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 (107082, '2022-08-08', 2315, 101070, 6232, NULL, '606.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-606.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107083, '2022-08-08', 8223, 101071, 6232, NULL, '1.0000', '1.5000', '1.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 (107084, '2022-08-08', 9735, 101072, 6232, 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 (107085, '2022-08-08', 9734, 101073, 6232, NULL, '4.0000', '0.3200', '0.3200', '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 (107086, '2022-08-08', 1760, 101074, 6232, 93, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '6.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 (107087, '2022-08-08', 2315, 101075, 6232, 2735, '-604.0000', '0.3300', '0.3300', '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 (107088, '2022-08-08', 2315, 101075, 6232, NULL, '606.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-606.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107089, '2022-08-08', 8203, 101076, 6232, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107090, '2022-08-08', 2955, 101077, 6232, 21541, '-1.0000', '4.8000', '4.8000', '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 (107091, '2022-08-08', 2955, 101077, 6232, NULL, '2.0000', '4.8000', '4.8000', '8.5000', '8.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 (107092, '2022-08-08', 7716, 101078, 6232, NULL, '1.0000', '0.0000', '0.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 (107093, '2022-08-08', 9715, 101079, 6232, NULL, '1.0000', '9.4000', '9.4000', '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 (107094, '2022-08-08', 9275, 101080, 6232, NULL, '2.0000', '6.3000', '6.3000', '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 (107095, '2022-08-08', 9274, 101081, 6232, NULL, '1.0000', '3.6000', '3.6000', '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 (107096, '2022-08-08', 1501, 101082, 6232, NULL, '1.0000', '2.0500', '2.0500', '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 (107097, '2022-08-08', 7709, 101083, 6232, NULL, '2.0000', '3.5000', '3.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 (107098, '2022-08-08', 7558, 101084, 6232, NULL, '1.0000', '1.9700', '1.9700', '3.7000', '3.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 (107099, '2022-08-08', 7367, 101085, 6232, NULL, '1.0000', '9.1700', '9.1700', '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 (107100, '2022-08-08', 7483, 101086, 6232, 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 (107101, '2022-08-08', 1982, 101087, 6232, NULL, '1.0000', '5.5000', '5.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 (107102, '2022-08-08', 7544, 101088, 6232, NULL, '100.0000', '9.4300', '9.4300', '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 (107103, '2022-08-08', 2740, 101089, 6232, 14259, '-3.0000', '9.0000', '9.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 (107104, '2022-08-08', 2740, 101089, 6232, NULL, '4.0000', '9.0000', '9.0000', '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 (107105, '2022-08-08', 1672, 101090, 6232, 7384, '-175.0000', '2.8700', '2.8700', '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 (107106, '2022-08-08', 1672, 101090, 6232, NULL, '185.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-185.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107107, '2022-08-08', 8005, 101091, 6232, NULL, '1.0000', '58.0000', '58.0000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107108, '2022-08-08', 7848, 101092, 6232, NULL, '1.0000', '1.3500', '1.3500', '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 (107109, '2022-08-08', 7781, 101093, 6232, NULL, '3.0000', '4.2500', '4.2500', '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 (107110, '2022-08-08', 9734, 101094, 6232, NULL, '3.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (107111, '2022-08-08', 7748, 101095, 6232, NULL, '1.0000', '7.3000', '7.3000', '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 (107112, '2022-08-08', 7675, 101096, 6232, NULL, '1.0000', '11.4300', '11.4300', '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 (107113, '2022-08-08', 9274, 101097, 6232, NULL, '1.0000', '3.6000', '3.6000', '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 (107114, '2022-08-08', 7674, 101098, 6232, NULL, '1.0000', '1.3000', '1.3000', '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 (107115, '2022-08-08', 2955, 101099, 6232, 21541, '-1.0000', '4.8000', '4.8000', '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 (107116, '2022-08-08', 2955, 101099, 6232, NULL, '2.0000', '4.8000', '4.8000', '8.5000', '8.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 (107117, '2022-08-08', 7674, 101100, 6232, NULL, '1.0000', '1.3000', '1.3000', '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 (107118, '2022-08-08', 8208, 101101, 6232, NULL, '2.0000', '33.0000', '33.0000', '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 (107119, '2022-08-08', 9633, 101102, 6232, NULL, '2.0000', '8.4100', '8.4100', '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 (107120, '2022-08-08', 2105, 101103, 6232, NULL, '1.0000', '1.3500', '1.3500', '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 (107121, '2022-08-08', 7416, 101104, 6232, NULL, '1.0000', '18.2100', '18.2100', '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 (107122, '2022-08-08', 7872, 101105, 6232, 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 (107123, '2022-08-08', 7531, 101106, 6232, NULL, '1.0000', '3.1900', '3.1900', '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 (107124, '2022-08-08', 8415, 101107, 6232, NULL, '1.0000', '3.2500', '3.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 (107125, '2022-08-08', 2506, 101108, 6232, 16244, '-33.0000', '3.4900', '3.4900', '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 (107126, '2022-08-08', 2506, 101108, 6232, NULL, '34.0000', '3.4900', '3.4900', '6.5000', '6.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 (107127, '2022-08-08', 7959, 101109, 6232, NULL, '3.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-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 (107128, '2022-08-08', 7544, 101110, 6232, NULL, '1.0000', '9.4300', '9.4300', '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 (107129, '2022-08-08', 1841, 101111, 6232, NULL, '1.0000', '142.5780', '142.5780', '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 (107130, '2022-08-08', 7478, 101112, 6232, NULL, '1.0000', '4.0000', '4.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 (107131, '2022-08-08', 7576, 101113, 6232, NULL, '1.0000', '1.6300', '1.6300', '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 (107132, '2022-08-08', 1804, 101114, 6232, 4916, '-19.0000', '4.2500', '4.2500', '9.5000', '9.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 (107133, '2022-08-08', 1804, 101114, 6232, NULL, '20.0000', '4.2500', '4.2500', '9.5000', '9.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 (107134, '2022-08-08', 9836, 101115, 6232, NULL, '1.0000', '25.0000', '25.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 (107135, '2022-08-08', 9988, 101116, 6232, 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 (107136, '2022-08-08', 9209, 101117, 6232, NULL, '1.0000', '4.8000', '4.8000', '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 (107137, '2022-08-08', 7917, 101118, 6232, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (107138, '2022-08-08', 9794, 101119, 6232, NULL, '2.0000', '1.0800', '1.0800', '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 (107139, '2022-08-08', 8407, 101120, 6232, NULL, '3.0000', '1.0700', '1.0700', '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 (107140, '2022-08-08', 8017, 101121, 6232, NULL, '1.0000', '40.0000', '40.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 (107141, '2022-08-08', 9503, 101122, 6232, NULL, '1.0000', '20.6000', '20.6000', '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 (107142, '2022-08-08', 7621, 101123, 6232, NULL, '1.0000', '5.9000', '5.9000', '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 (107143, '2022-08-08', 7457, 101124, 6232, 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 (107144, '2022-08-08', 2352, 101125, 6232, 3855, '-214.0000', '20.0000', '20.0000', '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 (107145, '2022-08-08', 2352, 101125, 6232, NULL, '215.0000', '20.0000', '20.0000', '3.7000', '3.7000', '-215.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107146, '2022-08-08', 7558, 101126, 6232, NULL, '1.0000', '1.9700', '1.9700', '3.7000', '3.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 (107147, '2022-08-08', 9734, 101127, 6232, NULL, '2.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107148, '2022-08-08', 7576, 101128, 6232, NULL, '1.0000', '1.6300', '1.6300', '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 (107149, '2022-08-08', 7672, 101129, 6232, NULL, '2.0000', '1.0200', '1.0200', '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 (107150, '2022-08-08', 8978, 101130, 6232, NULL, '1.0000', '0.6900', '0.6900', '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 (107151, '2022-08-08', 1577, 101131, 6232, 7596, '-21.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 (107152, '2022-08-08', 1577, 101131, 6232, NULL, '23.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-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 (107153, '2022-08-08', 9275, 101132, 6232, NULL, '2.0000', '6.3000', '6.3000', '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 (107154, '2022-08-08', 8712, 101133, 6232, NULL, '1.0000', '7.0400', '7.0400', '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 (107155, '2022-08-08', 7412, 101134, 6232, NULL, '1.0000', '1.5200', '1.5200', '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 (107156, '2022-08-08', 7518, 101135, 6232, NULL, '1.0000', '7.8200', '7.8200', '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 (107157, '2022-08-08', 2295, 101136, 6232, 2954, '-60.0000', '0.9600', '0.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 (107158, '2022-08-08', 2295, 101136, 6232, NULL, '63.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107159, '2022-08-08', 8677, 101137, 6232, NULL, '3.0000', '1.2800', '1.2800', '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 (107160, '2022-08-08', 7666, 101138, 6232, NULL, '1.0000', '3.6000', '3.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 (107161, '2022-08-08', 7730, 101139, 6232, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (107162, '2022-08-08', 9401, 101140, 6232, NULL, '1.0000', '4.8500', '4.8500', '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 (107163, '2022-08-08', 7412, 101141, 6232, NULL, '1.0000', '1.5200', '1.5200', '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 (107164, '2022-08-08', 7781, 101142, 6232, NULL, '3.0000', '4.2500', '4.2500', '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 (107165, '2022-08-08', 2315, 101143, 6232, 2735, '-604.0000', '0.3300', '0.3300', '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 (107166, '2022-08-08', 2315, 101143, 6232, NULL, '605.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-605.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107167, '2022-08-08', 7967, 101144, 6232, 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 (107168, '2022-08-08', 7518, 101145, 6232, NULL, '1.0000', '7.8200', '7.8200', '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 (107169, '2022-08-08', 7611, 101146, 6232, NULL, '1.0000', '4.4000', '4.4000', '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 (107170, '2022-08-08', 2105, 101147, 6232, NULL, '2.0000', '1.3500', '1.3500', '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 (107171, '2022-08-08', 8415, 101148, 6232, NULL, '1.0000', '3.2500', '3.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 (107172, '2022-08-08', 8015, 101149, 6232, NULL, '2.0000', '2.9000', '2.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 (107173, '2022-08-08', 7514, 101150, 6232, NULL, '1.0000', '2.2500', '2.2500', '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 (107174, '2022-08-08', 1856, 101151, 6232, NULL, '1.0000', '4.2500', '4.2500', '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 (107175, '2022-08-08', 9735, 101152, 6232, 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 (107176, '2022-08-08', 8084, 101153, 6232, NULL, '1.0000', '12.7000', '12.7000', '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 (107177, '2022-08-08', 9770, 101154, 6232, 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 (107178, '2022-08-08', 7483, 101155, 6232, 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 (107179, '2022-08-08', 9399, 101156, 6232, NULL, '2.0000', '0.9800', '0.9800', '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 (107180, '2022-08-08', 9001, 101157, 6232, NULL, '1.0000', '23.5000', '23.5000', '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 (107181, '2022-08-08', 1807, 101158, 6232, 18924, '2.0000', '1.8000', '1.8000', '2.5000', '2.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 (107182, '2022-08-08', 7980, 101159, 6233, NULL, '10.0000', '17.4500', '17.4500', '0.8000', '0.8000', '-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 (107183, '2022-08-08', 9734, 101160, 6234, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '64.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107184, '2022-08-08', 9634, 101161, 6234, NULL, '2.0000', '4.4667', '4.4667', '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 (107185, '2022-08-08', 2169, 101162, 6234, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107186, '2022-08-08', 2435, 101163, 6234, NULL, '1.0000', '8.3108', '8.3108', '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 (107187, '2022-08-08', 2169, 101164, 6234, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107188, '2022-08-08', 2503, 101165, 6234, 57104, '1.0000', '17.7545', '17.7545', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107189, '2022-08-08', 2011, 101166, 6234, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107190, '2022-08-08', 2068, 101167, 6234, NULL, '1.0000', '14.6943', '14.6943', '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 (107191, '2022-08-08', 2068, 101168, 6234, NULL, '1.0000', '14.6943', '14.6943', '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 (107192, '2022-08-08', 9750, 101169, 6234, NULL, '1.0000', '2.7458', '2.7458', '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 (107193, '2022-08-08', 9831, 101170, 6234, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107194, '2022-08-08', 9695, 101171, 6234, 59664, '2.0000', '5.3447', '5.3447', '8.0000', '8.0000', '20.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107195, '2022-08-08', 8068, 101172, 6234, NULL, '1.0000', '8.7900', '8.7900', '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 (107196, '2022-08-08', 9866, 101173, 6234, NULL, '1.0000', '9.5500', '9.5500', '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 (107197, '2022-08-08', 8017, 101174, 6234, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107198, '2022-08-08', 7518, 101175, 6234, NULL, '1.0000', '7.8200', '7.8200', '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 (107199, '2022-08-08', 9747, 101176, 6234, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107200, '2022-08-08', 2237, 101177, 6234, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107201, '2022-08-08', 2061, 101178, 6234, NULL, '2.0000', '-0.6387', '-0.6387', '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 (107202, '2022-08-08', 7756, 101179, 6234, NULL, '1.0000', '2.5000', '2.5000', '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 (107203, '2022-08-08', 2643, 101180, 6234, 59670, '2.0000', '1.0382', '1.0382', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107204, '2022-08-08', 1389, 101181, 6234, 48935, '1.0000', '16.4000', '16.4000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107205, '2022-08-08', 2548, 101182, 6234, 55634, '1.0000', '7.6792', '7.6792', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107206, '2022-08-08', 1702, 101183, 6234, NULL, '1.0000', '-12.4833', '-12.4833', '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 (107207, '2022-08-08', 1715, 101184, 6234, 60307, '1.0000', '8.2180', '8.2180', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107208, '2022-08-08', 7411, 101185, 6234, NULL, '1.0000', '1.2819', '1.2819', '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 (107209, '2022-08-08', 7518, 101186, 6234, NULL, '1.0000', '7.8200', '7.8200', '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 (107210, '2022-08-08', 2558, 101187, 6234, 24140, '1.0000', '6.0000', '6.0000', '10.0000', '10.0000', '0.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 (107211, '2022-08-08', 7324, 101188, 6234, NULL, '1.0000', '5.4813', '5.4813', '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 (107212, '2022-08-08', 2543, 101189, 6234, 60263, '2.0000', '3.3251', '3.3251', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107213, '2022-08-08', 2237, 101190, 6234, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107214, '2022-08-08', 9202, 101191, 6234, NULL, '3.0000', '3.5000', '3.5000', '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 (107215, '2022-08-08', 9720, 101192, 6234, 59898, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107216, '2022-08-08', 7454, 101193, 6234, NULL, '1.0000', '57.7600', '57.7600', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107217, '2022-08-08', 1925, 101194, 6234, NULL, '5.0000', '1.4444', '1.4444', '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 (107218, '2022-08-08', 2068, 101195, 6234, NULL, '1.0000', '14.6943', '14.6943', '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 (107219, '2022-08-08', 8451, 101196, 6234, NULL, '1.0000', '8.5000', '8.5000', '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 (107220, '2022-08-08', 9750, 101197, 6234, NULL, '1.0000', '2.7458', '2.7458', '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 (107221, '2022-08-08', 1812, 101198, 6234, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107222, '2022-08-08', 2066, 101199, 6234, NULL, '1.0000', '0.5100', '0.5100', '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 (107223, '2022-08-08', 1646, 101200, 6234, 60270, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107224, '2022-08-08', 3029, 101201, 6234, NULL, '1.0000', '59.9505', '59.9505', '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 (107225, '2022-08-08', 1812, 101202, 6234, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107226, '2022-08-08', 2294, 101203, 6234, 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 (107227, '2022-08-08', 1621, 101204, 6234, 60228, '1.0000', '17.1389', '17.1389', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107228, '2022-08-08', 2223, 101205, 6234, NULL, '1.0000', '-2.3706', '-2.3706', '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 (107229, '2022-08-08', 7411, 101206, 6234, NULL, '1.0000', '1.2819', '1.2819', '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 (107230, '2022-08-08', 8017, 101207, 6234, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107231, '2022-08-08', 2068, 101208, 6234, NULL, '1.0000', '14.6943', '14.6943', '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 (107232, '2022-08-08', 9750, 101209, 6234, NULL, '1.0000', '2.7458', '2.7458', '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 (107233, '2022-08-08', 7564, 101210, 6234, NULL, '1.0000', '0.6400', '0.6400', '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 (107234, '2022-08-08', 8566, 101211, 6234, 58043, '1.0000', '18.0000', '18.0000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107235, '2022-08-08', 1307, 101212, 6234, NULL, '1.0000', '-106.4636', '-106.4636', '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 (107236, '2022-08-08', 1905, 101213, 6234, NULL, '1.0000', '0.5203', '0.5203', '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 (107237, '2022-08-08', 9902, 101214, 6234, 59883, '1.0000', '7.9671', '7.9671', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107238, '2022-08-08', 9750, 101215, 6234, NULL, '1.0000', '2.7458', '2.7458', '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 (107239, '2022-08-08', 1812, 101216, 6234, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107240, '2022-08-08', 7398, 101217, 6234, NULL, '1.0000', '143.5000', '143.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 (107241, '2022-08-08', 8595, 101218, 6234, NULL, '1.0000', '-3.2120', '-3.2120', '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 (107242, '2022-08-08', 7514, 101219, 6234, NULL, '1.0000', '2.2500', '2.2500', '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 (107243, '2022-08-08', 2302, 101220, 6234, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107244, '2022-08-08', 1790, 101221, 6234, 58184, '1.0000', '-111.0000', '-111.0000', '31.0000', '31.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107245, '2022-08-08', 9831, 101222, 6234, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107246, '2022-08-08', 9214, 101223, 6234, NULL, '1.0000', '17.5000', '17.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 (107247, '2022-08-08', 1450, 101224, 6234, NULL, '2.0000', '0.8483', '0.8483', '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 (107248, '2022-08-08', 9831, 101225, 6234, 57496, '1.0000', '-1.6182', '-1.6182', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107249, '2022-08-08', 2223, 101226, 6235, 1698, '-1.0000', '14.0000', '14.0000', '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 (107250, '2022-08-08', 2223, 101226, 6235, NULL, '2.0000', '14.0000', '14.0000', '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 (107251, '2022-08-08', 8017, 101227, 6235, NULL, '1.0000', '40.0000', '40.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 (107252, '2022-08-08', 7411, 101228, 6235, NULL, '1.0000', '1.3500', '1.3500', '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 (107253, '2022-08-08', 9831, 101229, 6235, NULL, '2.0000', '1.5600', '1.5600', '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 (107254, '2022-08-09', 1481, 101230, 6236, 58126, '1.0000', '41.8000', '41.8000', '55.0000', '55.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107255, '2022-08-09', 9979, 101231, 6236, NULL, '1.0000', '13.9000', '13.9000', '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 (107256, '2022-08-09', 9840, 101232, 6236, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107257, '2022-08-09', 2068, 101233, 6236, NULL, '1.0000', '14.6943', '14.6943', '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 (107258, '2022-08-09', 1875, 101234, 6236, 55926, '10.0000', '2.7375', '2.7375', '3.7000', '3.7000', '20.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107259, '2022-08-09', 9891, 101235, 6236, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '20.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107260, '2022-08-09', 1781, 101236, 6236, 60352, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107261, '2022-08-09', 1425, 101237, 6236, NULL, '2.0000', '324.2732', '324.2732', '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 (107262, '2022-08-09', 1751, 101238, 6236, 48456, '1.0000', '5.6063', '5.6063', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107263, '2022-08-09', 1868, 101239, 6236, NULL, '1.0000', '3.8800', '3.8800', '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 (107264, '2022-08-09', 1837, 101240, 6236, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107265, '2022-08-09', 1787, 101241, 6236, NULL, '1.0000', '0.5000', '0.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 (107266, '2022-08-09', 1504, 101242, 6236, 58181, '10.0000', '2.0486', '2.0486', '2.8000', '2.8000', '30.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107267, '2022-08-09', 1868, 101243, 6236, NULL, '1.0000', '3.8800', '3.8800', '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 (107268, '2022-08-09', 9847, 101244, 6236, 53676, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107269, '2022-08-09', 1621, 101245, 6236, 60228, '1.0000', '17.1389', '17.1389', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107270, '2022-08-09', 2389, 101246, 6236, 23156, '1.0000', '3.1400', '3.1400', '4.5000', '4.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 (107271, '2022-08-09', 2327, 101247, 6236, 58157, '2.0000', '3.8350', '3.8350', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107272, '2022-08-09', 2416, 101248, 6236, 59669, '1.0000', '1.3394', '1.3394', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107273, '2022-08-09', 2506, 101249, 6236, NULL, '1.0000', '-9.4377', '-9.4377', '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 (107274, '2022-08-09', 1874, 101250, 6236, NULL, '1.0000', '6.1000', '6.1000', '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 (107275, '2022-08-09', 9891, 101251, 6236, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '20.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107276, '2022-08-09', 1688, 101252, 6236, 58151, '1.0000', '23.2094', '23.2094', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107277, '2022-08-09', 1578, 101253, 6236, 59845, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107278, '2022-08-09', 7550, 101254, 6236, NULL, '5.0000', '4.7300', '4.7300', '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 (107279, '2022-08-09', 1310, 101255, 6236, 60259, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107280, '2022-08-09', 1980, 101256, 6237, NULL, '1.0000', '11.5000', '11.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 (107281, '2022-08-09', 1337, 101257, 6237, NULL, '2.0000', '2.2000', '2.2000', '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 (107282, '2022-08-09', 1863, 101258, 6237, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107283, '2022-08-09', 2169, 101259, 6237, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107284, '2022-08-09', 1982, 101260, 6237, 58049, '1.0000', '-4.0378', '-4.0378', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107285, '2022-08-09', 9683, 101261, 6237, 59648, '1.0000', '-1.0523', '-1.0523', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107286, '2022-08-09', 8769, 101262, 6237, 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 (107287, '2022-08-09', 2169, 101263, 6237, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107288, '2022-08-09', 2020, 101264, 6237, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (107289, '2022-08-09', 1561, 101265, 6237, NULL, '1.0000', '27.0000', '27.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 (107290, '2022-08-09', 9649, 101266, 6237, NULL, '1.0000', '2.6750', '2.6750', '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 (107291, '2022-08-09', 9855, 101267, 6237, 58128, '1.0000', '28.8840', '28.8840', '38.5000', '38.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107292, '2022-08-09', 9330, 101268, 6237, 59838, '1.0000', '9.5500', '9.5500', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107293, '2022-08-09', 2567, 101269, 6238, 59679, '1.0000', '33.3407', '33.3407', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107294, '2022-08-09', 1812, 101270, 6239, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107295, '2022-08-09', 2167, 101271, 6239, NULL, '1.0000', '0.6663', '0.6663', '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 (107296, '2022-08-09', 2299, 101272, 6239, 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 (107297, '2022-08-09', 1904, 101273, 6239, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107298, '2022-08-09', 1637, 101274, 6239, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107299, '2022-08-09', 1307, 101275, 6240, NULL, '1.0000', '-106.4636', '-106.4636', '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 (107300, '2022-08-09', 2068, 101276, 6240, NULL, '1.0000', '14.6943', '14.6943', '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 (107301, '2022-08-09', 1864, 101277, 6240, 60356, '1.0000', '9.1500', '9.1500', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107302, '2022-08-09', 7658, 101278, 6241, NULL, '3.0000', '10.1500', '10.1500', '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 (107303, '2022-08-09', 9818, 101279, 6242, NULL, '1.0000', '1.5000', '1.5000', '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 (107304, '2022-08-09', 2169, 101280, 6242, 10737, '-197.0000', '3.8397', '3.8397', '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 (107305, '2022-08-09', 2169, 101280, 6242, NULL, '198.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-198.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107306, '2022-08-09', 2379, 101281, 6242, 4032, '-73.0000', '1.5900', '1.5900', '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 (107307, '2022-08-09', 2379, 101281, 6242, NULL, '74.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107308, '2022-08-09', 1702, 101282, 6242, 4499, '-14.0000', '14.9700', '14.9700', '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 (107309, '2022-08-09', 1702, 101282, 6242, NULL, '15.0000', '14.9700', '14.9700', '25.0000', '25.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 (107310, '2022-08-09', 2965, 101283, 6242, NULL, '1.0000', '5.0000', '5.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 (107311, '2022-08-09', 1314, 101284, 6242, 2710, '-8.0000', '1.2000', '1.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 (107312, '2022-08-09', 1314, 101284, 6242, NULL, '9.0000', '1.2000', '1.2000', '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 (107313, '2022-08-09', 8079, 101285, 6242, NULL, '1.0000', '14.3600', '14.3600', '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 (107314, '2022-08-09', 1666, 101286, 6242, 3236, '-42.0000', '2.7100', '2.7100', '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 (107315, '2022-08-09', 1666, 101286, 6242, NULL, '44.0000', '2.7100', '2.7100', '4.0000', '4.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107316, '2022-08-09', 2748, 101287, 6242, 14030, '-1.0000', '35.5000', '35.5000', '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 (107317, '2022-08-09', 2748, 101287, 6242, NULL, '2.0000', '35.5000', '35.5000', '23.0000', '23.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 (107318, '2022-08-09', 1698, 101288, 6242, NULL, '1.0000', '7.9800', '7.9800', '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 (107319, '2022-08-09', 1672, 101289, 6242, 7384, '-185.0000', '2.8700', '2.8700', '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 (107320, '2022-08-09', 1672, 101289, 6242, NULL, '195.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-195.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107321, '2022-08-09', 2270, 101290, 6242, 2930, '-19.0000', '0.9880', '0.9880', '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 (107322, '2022-08-09', 2270, 101290, 6242, NULL, '20.0000', '0.9880', '0.9880', '7.0000', '7.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 (107323, '2022-08-09', 1837, 101291, 6242, 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 (107324, '2022-08-09', 1904, 101292, 6242, 5442, '-72.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 (107325, '2022-08-09', 1904, 101292, 6242, NULL, '74.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-74.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107326, '2022-08-09', 8740, 101293, 6242, NULL, '1.0000', '2.0000', '2.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 (107327, '2022-08-09', 1687, 101294, 6242, 5785, '-29.0000', '165.9024', '165.9024', '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 (107328, '2022-08-09', 1687, 101294, 6242, NULL, '31.0000', '165.9024', '165.9024', '23.0000', '23.0000', '-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 (107329, '2022-08-09', 1592, 101295, 6243, 60348, '1.0000', '41.8074', '41.8074', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107330, '2022-08-09', 2916, 101296, 6243, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107331, '2022-08-09', 7518, 101297, 6244, NULL, '1.0000', '7.8200', '7.8200', '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 (107332, '2022-08-09', 7444, 101298, 6244, 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 (107333, '2022-08-09', 7355, 101299, 6244, 33805, '1.0000', '19.4600', '19.4600', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107334, '2022-08-09', 8203, 101300, 6244, 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 (107335, '2022-08-09', 1557, 101301, 6244, 1628, '-15.0000', '7.9500', '7.9500', '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 (107336, '2022-08-09', 1557, 101301, 6244, NULL, '16.0000', '7.9500', '7.9500', '11.0000', '11.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 (107337, '2022-08-09', 9734, 101302, 6244, NULL, '1.0000', '0.3200', '0.3200', '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 (107338, '2022-08-09', 8596, 101303, 6244, 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 (107339, '2022-08-09', 7745, 101304, 6244, NULL, '1.0000', '6.7000', '6.7000', '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 (107340, '2022-08-09', 7611, 101305, 6244, NULL, '1.0000', '4.4000', '4.4000', '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 (107341, '2022-08-09', 7959, 101306, 6244, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107342, '2022-08-09', 9105, 101307, 6244, NULL, '1.0000', '1.1800', '1.1800', '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 (107343, '2022-08-09', 7317, 101308, 6244, NULL, '1.0000', '19.5500', '19.5500', '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 (107344, '2022-08-09', 8151, 101309, 6244, NULL, '2.0000', '1.9300', '1.9300', '51.0000', '51.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 (107345, '2022-08-09', 7464, 101310, 6244, NULL, '1.0000', '21.9000', '21.9000', '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 (107346, '2022-08-09', 7322, 101311, 6244, NULL, '1.0000', '4.3600', '4.3600', '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 (107347, '2022-08-09', 9010, 101312, 6244, 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 (107348, '2022-08-09', 8448, 101313, 6244, NULL, '1.0000', '6.8900', '6.8900', '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 (107349, '2022-08-09', 8345, 101314, 6244, NULL, '1.0000', '5.9000', '5.9000', '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 (107350, '2022-08-09', 7514, 101315, 6244, NULL, '1.0000', '2.2500', '2.2500', '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 (107351, '2022-08-09', 9736, 101316, 6244, NULL, '1.0000', '3.9100', '3.9100', '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 (107352, '2022-08-09', 7806, 101317, 6244, NULL, '2.0000', '1.8000', '1.8000', '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 (107353, '2022-08-09', 7457, 101318, 6244, 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 (107354, '2022-08-09', 9809, 101319, 6244, NULL, '1.0000', '5.7900', '5.7900', '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 (107355, '2022-08-09', 7848, 101320, 6244, NULL, '1.0000', '1.3500', '1.3500', '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 (107356, '2022-08-09', 7689, 101321, 6244, NULL, '1.0000', '9.1000', '9.1000', '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 (107357, '2022-08-09', 7784, 101322, 6244, NULL, '4.0000', '4.2300', '4.2300', '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 (107358, '2022-08-09', 9008, 101323, 6244, NULL, '1.0000', '45.2700', '45.2700', '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 (107359, '2022-08-09', 8208, 101324, 6244, NULL, '4.0000', '33.0000', '33.0000', '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 (107360, '2022-08-09', 2612, 101325, 6244, 9748, '-5.0000', '7.1600', '7.1600', '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 (107361, '2022-08-09', 2612, 101325, 6244, NULL, '6.0000', '7.1600', '7.1600', '11.5000', '11.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 (107362, '2022-08-09', 7412, 101326, 6244, NULL, '1.0000', '1.5200', '1.5200', '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 (107363, '2022-08-09', 1704, 101327, 6245, NULL, '1.0000', '27.2300', '27.2300', '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 (107364, '2022-08-09', 2095, 101328, 6245, NULL, '1.0000', '-8.5000', '-8.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 (107365, '2022-08-09', 1711, 101329, 6245, 60240, '1.0000', '10.7231', '10.7231', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107366, '2022-08-09', 7411, 101330, 6245, NULL, '1.0000', '1.2819', '1.2819', '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 (107367, '2022-08-09', 8068, 101331, 6245, NULL, '1.0000', '8.7900', '8.7900', '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 (107368, '2022-08-09', 9741, 101332, 6245, NULL, '1.0000', '7.8500', '7.8500', '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 (107369, '2022-08-09', 1670, 101333, 6245, NULL, '1.0000', '-32.2503', '-32.2503', '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 (107370, '2022-08-09', 8878, 101334, 6245, NULL, '3.0000', '6.0509', '6.0509', '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 (107371, '2022-08-09', 1921, 101335, 6245, 57074, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107372, '2022-08-09', 1702, 101336, 6245, NULL, '1.0000', '-12.4833', '-12.4833', '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 (107373, '2022-08-09', 2654, 101337, 6245, 32545, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107374, '2022-08-09', 7514, 101338, 6245, NULL, '1.0000', '2.2500', '2.2500', '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 (107375, '2022-08-09', 8622, 101339, 6245, 60237, '1.0000', '1.4898', '1.4898', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107376, '2022-08-09', 9750, 101340, 6245, NULL, '1.0000', '2.7458', '2.7458', '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 (107377, '2022-08-09', 2379, 101341, 6245, NULL, '1.0000', '-14.1447', '-14.1447', '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 (107378, '2022-08-09', 7776, 101342, 6246, 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 (107379, '2022-08-09', 7509, 101343, 6247, 60453, '1.0000', '8.8761', '8.8761', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107380, '2022-08-09', 7753, 101344, 6247, 60153, '1.0000', '3.5929', '3.5929', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107381, '2022-08-09', 7456, 101345, 6247, 56554, '1.0000', '34.7000', '34.7000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107382, '2022-08-09', 7657, 101346, 6247, 60424, '1.0000', '14.8164', '14.8164', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107383, '2022-08-09', 7990, 101347, 6247, 59414, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107384, '2022-08-09', 7591, 101348, 6247, 57426, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107385, '2022-08-09', 2102, 101349, 6247, 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 (107386, '2022-08-09', 8300, 101350, 6247, NULL, '1.0000', '7.4300', '7.4300', '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 (107387, '2022-08-09', 9463, 101351, 6247, 59353, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107388, '2022-08-09', 2315, 101352, 6247, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107389, '2022-08-09', 1855, 101353, 6247, 56023, '2.0000', '1.4699', '1.4699', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107390, '2022-08-09', 7411, 101354, 6247, 60389, '3.0000', '1.4000', '1.4000', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107391, '2022-08-09', 7608, 101355, 6247, 60460, '1.0000', '9.4713', '9.4713', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107392, '2022-08-09', 7564, 101356, 6247, 59164, '1.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107393, '2022-08-09', 7865, 101357, 6247, 57391, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107394, '2022-08-09', 8657, 101358, 6247, 56004, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107395, '2022-08-09', 7781, 101359, 6247, NULL, '3.0000', '9.6314', '9.6314', '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 (107396, '2022-08-09', 2355, 101360, 6247, 54736, '1.0000', '13.4745', '13.4745', '124.0000', '124.0000', '1.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107397, '2022-08-09', 8061, 101361, 6247, 60185, '2.0000', '33.3545', '33.3545', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107398, '2022-08-09', 2102, 101362, 6247, 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 (107399, '2022-08-09', 7651, 101363, 6247, 60419, '1.0000', '3.4359', '3.4359', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107400, '2022-08-09', 7611, 101364, 6247, 60104, '1.0000', '14.8304', '14.8304', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107401, '2022-08-09', 9300, 101365, 6247, NULL, '1.0000', '3.0968', '3.0968', '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 (107402, '2022-08-09', 7777, 101366, 6247, NULL, '1.0000', '0.1218', '0.1218', '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 (107403, '2022-08-09', 7674, 101367, 6247, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107404, '2022-08-09', 7396, 101368, 6247, 60466, '1.0000', '14.1322', '14.1322', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107405, '2022-08-09', 9620, 101369, 6247, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107406, '2022-08-09', 7518, 101370, 6247, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107407, '2022-08-09', 2363, 101371, 6247, 60458, '1.0000', '9.2080', '9.2080', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107408, '2022-08-09', 7917, 101372, 6247, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '61.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107409, '2022-08-09', 9103, 101373, 6247, NULL, '1.0000', '21.6600', '21.6600', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107410, '2022-08-09', 2656, 101374, 6247, 60187, '1.0000', '1.7540', '1.7540', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107411, '2022-08-09', 8965, 101375, 6247, NULL, '1.0000', '-263.2470', '-263.2470', '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 (107412, '2022-08-09', 7641, 101376, 6247, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107413, '2022-08-09', 7821, 101377, 6247, 54472, '1.0000', '10.8121', '10.8121', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 461);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107414, '2022-08-09', 7666, 101378, 6247, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107415, '2022-08-09', 8616, 101379, 6247, 56516, '1.0000', '7.1568', '7.1568', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107416, '2022-08-09', 8463, 101380, 6247, NULL, '1.0000', '18.0000', '18.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 (107417, '2022-08-09', 9148, 101381, 6247, NULL, '2.0000', '20.1000', '20.1000', '3.4000', '3.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107418, '2022-08-09', 2699, 101382, 6247, NULL, '1.0000', '3.0000', '3.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 (107419, '2022-08-09', 1916, 101383, 6247, 59384, '1.0000', '10.5472', '10.5472', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107420, '2022-08-09', 7524, 101384, 6247, 60436, '2.0000', '4.9338', '4.9338', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107421, '2022-08-09', 8328, 101385, 6247, NULL, '1.0000', '11.2886', '11.2886', '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 (107422, '2022-08-09', 8186, 101386, 6247, NULL, '3.0000', '1.5626', '1.5626', '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 (107423, '2022-08-09', 9762, 101387, 6247, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107424, '2022-08-09', 7411, 101388, 6247, 60389, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107425, '2022-08-09', 8866, 101389, 6247, NULL, '1.0000', '0.4300', '0.4300', '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 (107426, '2022-08-09', 7459, 101390, 6247, 60478, '20.0000', '8.0994', '8.0994', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107427, '2022-08-09', 7317, 101391, 6247, 59094, '1.0000', '15.4364', '15.4364', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107428, '2022-08-09', 7954, 101392, 6247, NULL, '4.0000', '7039.4904', '7039.4904', '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 (107429, '2022-08-09', 7524, 101393, 6247, 60436, '1.0000', '4.9338', '4.9338', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107430, '2022-08-09', 7981, 101394, 6247, 56673, '10.0000', '-2.5818', '-2.5818', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107431, '2022-08-09', 7981, 101394, 6247, NULL, '10.0000', '-2.5818', '-2.5818', '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 (107432, '2022-08-09', 8714, 101395, 6248, 56542, '1.0000', '3.8309', '3.8309', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107433, '2022-08-09', 9457, 101396, 6248, 43107, '1.0000', '2.9800', '2.9800', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107434, '2022-08-09', 8135, 101397, 6248, 59312, '1.0000', '5.9042', '5.9042', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107435, '2022-08-09', 8136, 101398, 6248, NULL, '1.0000', '-4.7978', '-4.7978', '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 (107436, '2022-08-09', 9274, 101399, 6248, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '14.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107437, '2022-08-09', 7593, 101400, 6248, 60160, '1.0000', '3.0249', '3.0249', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107438, '2022-08-09', 7674, 101401, 6248, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107439, '2022-08-09', 7483, 101402, 6249, NULL, '1.0000', '0.4200', '0.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 (107440, '2022-08-09', 8878, 101403, 6249, NULL, '1.0000', '6.6700', '6.6700', '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 (107441, '2022-08-09', 1311, 101404, 6249, 5437, '-40.0000', '79.3908', '79.3908', '0.6000', '0.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 (107442, '2022-08-09', 1311, 101404, 6249, NULL, '41.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (107443, '2022-08-09', 9788, 101405, 6249, 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 (107444, '2022-08-09', 2237, 101406, 6249, 2781, '-82.0000', '1.0600', '1.0600', '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 (107445, '2022-08-09', 2237, 101406, 6249, NULL, '83.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107446, '2022-08-09', 2169, 101407, 6249, 10737, '-198.0000', '3.8397', '3.8397', '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 (107447, '2022-08-09', 2169, 101407, 6249, NULL, '199.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-199.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107448, '2022-08-09', 1812, 101408, 6249, 8224, '-110.0000', '7.8900', '7.8900', '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 (107449, '2022-08-09', 1812, 101408, 6249, NULL, '111.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-111.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107450, '2022-08-09', 2169, 101409, 6249, 10737, '-198.0000', '3.8397', '3.8397', '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 (107451, '2022-08-09', 2169, 101409, 6249, NULL, '199.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-199.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107452, '2022-08-09', 1493, 101410, 6249, 9747, '-25.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 (107453, '2022-08-09', 1493, 101410, 6249, NULL, '26.0000', '1.5425', '1.5425', '3.0000', '3.0000', '-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 (107454, '2022-08-09', 2315, 101411, 6249, 2735, '-609.0000', '0.3300', '0.3300', '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 (107455, '2022-08-09', 2315, 101411, 6249, NULL, '610.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-610.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107456, '2022-08-09', 2386, 101412, 6249, 4038, '-2.0000', '2.0100', '2.0100', '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 (107457, '2022-08-09', 2386, 101412, 6249, NULL, '3.0000', '2.0100', '2.0100', '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 (107458, '2022-08-09', 1342, 101413, 6249, 11264, '-26.0000', '6.8074', '6.8074', '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 (107459, '2022-08-09', 1342, 101413, 6249, NULL, '27.0000', '6.8074', '6.8074', '10.0000', '10.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 (107460, '2022-08-09', 2521, 101414, 6249, 6035, '-8.0000', '8.8000', '8.8000', '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 (107461, '2022-08-09', 2521, 101414, 6249, NULL, '9.0000', '8.8000', '8.8000', '16.0000', '16.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 (107462, '2022-08-09', 1410, 101415, 6249, NULL, '1.0000', '2.2000', '2.2000', '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 (107463, '2022-08-09', 2169, 101416, 6249, 10737, '-198.0000', '3.8397', '3.8397', '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 (107464, '2022-08-09', 2169, 101416, 6249, NULL, '199.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-199.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107465, '2022-08-09', 1521, 101417, 6249, 20591, '1.0000', '2.5754', '2.5754', '4.5000', '4.5000', '6.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 (107466, '2022-08-09', 9819, 101418, 6249, NULL, '1.0000', '3.6300', '3.6300', '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 (107467, '2022-08-09', 2893, 101419, 6249, 18242, '-19.0000', '6.0000', '6.0000', '9.5000', '9.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 (107468, '2022-08-09', 2893, 101419, 6249, NULL, '20.0000', '6.0000', '6.0000', '9.5000', '9.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 (107469, '2022-08-09', 2068, 101420, 6249, 5568, '-32.0000', '13.1000', '13.1000', '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 (107470, '2022-08-09', 2068, 101420, 6249, NULL, '33.0000', '13.1000', '13.1000', '20.0000', '20.0000', '-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 (107471, '2022-08-09', 1311, 101421, 6249, 5437, '-40.0000', '79.3908', '79.3908', '0.6000', '0.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 (107472, '2022-08-09', 1311, 101421, 6249, NULL, '41.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (107473, '2022-08-09', 8526, 101422, 6249, NULL, '4.0000', '52.9900', '52.9900', '26.5000', '26.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 (107474, '2022-08-09', 7472, 101423, 6249, NULL, '1.0000', '4.1000', '4.1000', '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 (107475, '2022-08-09', 7749, 101424, 6249, NULL, '1.0000', '3.0000', '3.0000', '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 (107476, '2022-08-09', 9089, 101425, 6249, NULL, '2.0000', '3.8000', '3.8000', '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 (107477, '2022-08-09', 2754, 101426, 6249, 16504, '-6.0000', '0.0800', '0.0800', '0.2000', '0.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 (107478, '2022-08-09', 2754, 101426, 6249, NULL, '10.0000', '0.0800', '0.0800', '0.2000', '0.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 (107479, '2022-08-09', 7564, 101427, 6249, NULL, '4.0000', '0.6400', '0.6400', '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 (107480, '2022-08-09', 9634, 101428, 6249, NULL, '3.0000', '4.8000', '4.8000', '7.0000', '7.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 (107481, '2022-08-09', 1505, 101429, 6249, 10379, '-4.0000', '13.3062', '13.3062', '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 (107482, '2022-08-09', 1505, 101429, 6249, NULL, '5.0000', '13.3062', '13.3062', '22.5000', '22.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 (107483, '2022-08-09', 2893, 101430, 6249, 18242, '-19.0000', '6.0000', '6.0000', '9.5000', '9.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 (107484, '2022-08-09', 2893, 101430, 6249, NULL, '20.0000', '6.0000', '6.0000', '9.5000', '9.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 (107485, '2022-08-09', 9482, 101431, 6249, 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 (107486, '2022-08-09', 2295, 101432, 6249, 2954, '-63.0000', '0.9600', '0.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 (107487, '2022-08-09', 2295, 101432, 6249, NULL, '66.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107488, '2022-08-09', 2352, 101433, 6249, 3855, '-215.0000', '20.0000', '20.0000', '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 (107489, '2022-08-09', 2352, 101433, 6249, NULL, '219.0000', '20.0000', '20.0000', '3.7000', '3.7000', '-219.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107490, '2022-08-09', 1550, 101434, 6249, NULL, '1.0000', '13.9000', '13.9000', '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 (107491, '2022-08-09', 2167, 101435, 6249, 17165, '-57.0000', '2.2000', '2.2000', '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 (107492, '2022-08-09', 2167, 101435, 6249, NULL, '58.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107493, '2022-08-09', 7579, 101436, 6249, NULL, '1.0000', '15.0000', '15.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 (107494, '2022-08-09', 2297, 101437, 6249, 2956, '-11.0000', '6.6000', '6.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 (107495, '2022-08-09', 2297, 101437, 6249, NULL, '12.0000', '6.6000', '6.6000', '12.0000', '12.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 (107496, '2022-08-09', 7411, 101438, 6249, NULL, '1.0000', '1.3500', '1.3500', '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 (107497, '2022-08-09', 2893, 101439, 6249, 18242, '-19.0000', '6.0000', '6.0000', '9.5000', '9.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 (107498, '2022-08-09', 2893, 101439, 6249, NULL, '21.0000', '6.0000', '6.0000', '9.5000', '9.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107499, '2022-08-09', 2036, 101440, 6249, 4277, '-15.0000', '8.0000', '8.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 (107500, '2022-08-09', 2036, 101440, 6249, NULL, '16.0000', '8.0000', '8.0000', '15.0000', '15.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 (107501, '2022-08-09', 1665, 101441, 6249, 3235, '-151.0000', '1.3000', '1.3000', '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 (107502, '2022-08-09', 1665, 101441, 6249, NULL, '152.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-152.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107503, '2022-08-09', 2302, 101442, 6249, 2963, '-59.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 (107504, '2022-08-09', 2302, 101442, 6249, NULL, '60.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107505, '2022-08-09', 2250, 101443, 6249, 2787, '-20.0000', '6.8900', '6.8900', '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 (107506, '2022-08-09', 2250, 101443, 6249, NULL, '21.0000', '6.8900', '6.8900', '12.5000', '12.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107507, '2022-08-09', 1501, 101444, 6249, NULL, '1.0000', '2.0500', '2.0500', '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 (107508, '2022-08-09', 2260, 101445, 6249, 2796, '-23.0000', '4.2000', '4.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 (107509, '2022-08-09', 2260, 101445, 6249, NULL, '24.0000', '4.2000', '4.2000', '7.0000', '7.0000', '-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 (107510, '2022-08-09', 7776, 101446, 6249, 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 (107511, '2022-08-09', 2169, 101447, 6249, 10737, '-198.0000', '3.8397', '3.8397', '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 (107512, '2022-08-09', 2169, 101447, 6249, NULL, '199.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-199.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107513, '2022-08-09', 2229, 101448, 6249, 1704, '-6.0000', '24.5000', '24.5000', '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 (107514, '2022-08-09', 2229, 101448, 6249, NULL, '7.0000', '24.5000', '24.5000', '38.0000', '38.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 (107515, '2022-08-09', 2221, 101449, 6249, 4154, '-81.0000', '14.4737', '14.4737', '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 (107516, '2022-08-09', 2221, 101449, 6249, NULL, '82.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107517, '2022-08-09', 7411, 101450, 6249, NULL, '1.0000', '1.3500', '1.3500', '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 (107518, '2022-08-09', 7514, 101451, 6249, NULL, '1.0000', '2.2500', '2.2500', '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 (107519, '2022-08-09', 7803, 101452, 6249, NULL, '1.0000', '1.8200', '1.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 (107520, '2022-08-09', 1665, 101453, 6249, 3235, '-151.0000', '1.3000', '1.3000', '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 (107521, '2022-08-09', 1665, 101453, 6249, NULL, '152.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-152.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107522, '2022-08-09', 9747, 101454, 6249, NULL, '3.0000', '0.6500', '0.6500', '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 (107523, '2022-08-09', 8208, 101455, 6249, NULL, '1.0000', '33.0000', '33.0000', '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 (107524, '2022-08-09', 2289, 101456, 6249, 2949, '-248.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 (107525, '2022-08-09', 2289, 101456, 6249, NULL, '249.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-249.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107526, '2022-08-09', 7530, 101457, 6249, NULL, '2.0000', '7.7000', '7.7000', '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 (107527, '2022-08-09', 1841, 101458, 6249, NULL, '1.0000', '142.5780', '142.5780', '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 (107528, '2022-08-09', 1840, 101459, 6249, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (107529, '2022-08-09', 2315, 101460, 6249, 2735, '-609.0000', '0.3300', '0.3300', '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 (107530, '2022-08-09', 2315, 101460, 6249, NULL, '610.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-610.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107531, '2022-08-09', 7514, 101461, 6249, NULL, '1.0000', '2.2500', '2.2500', '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 (107532, '2022-08-09', 1689, 101462, 6249, 4897, '-22.0000', '60.7198', '60.7198', '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 (107533, '2022-08-09', 1689, 101462, 6249, NULL, '23.0000', '60.7198', '60.7198', '21.0000', '21.0000', '-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 (107534, '2022-08-09', 7927, 101463, 6249, NULL, '2.0000', '11.9800', '11.9800', '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 (107535, '2022-08-09', 2643, 101464, 6249, NULL, '1.0000', '0.8700', '0.8700', '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 (107536, '2022-08-09', 1904, 101465, 6249, 5442, '-74.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 (107537, '2022-08-09', 1904, 101465, 6249, NULL, '76.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107538, '2022-08-09', 1646, 101466, 6249, 3239, '-24.0000', '4.5300', '4.5300', '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 (107539, '2022-08-09', 1646, 101466, 6249, NULL, '25.0000', '4.5300', '4.5300', '8.5000', '8.5000', '-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 (107540, '2022-08-09', 1761, 101467, 6249, 3171, '-14.0000', '1.8200', '1.8200', '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 (107541, '2022-08-09', 1761, 101467, 6249, NULL, '16.0000', '1.8200', '1.8200', '3.0000', '3.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 (107542, '2022-08-09', 2352, 101468, 6249, 3855, '-215.0000', '20.0000', '20.0000', '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 (107543, '2022-08-09', 2352, 101468, 6249, NULL, '221.0000', '20.0000', '20.0000', '3.7000', '3.7000', '-221.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107544, '2022-08-09', 2315, 101469, 6249, 2735, '-609.0000', '0.3300', '0.3300', '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 (107545, '2022-08-09', 2315, 101469, 6249, NULL, '610.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-610.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107546, '2022-08-09', 8763, 101470, 6250, 60521, '1.0000', '5.4000', '5.4000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107547, '2022-08-09', 9736, 101471, 6250, 58778, '1.0000', '4.4200', '4.4200', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107548, '2022-08-09', 1383, 101472, 6250, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107549, '2022-08-09', 9794, 101473, 6250, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107550, '2022-08-09', 7640, 101474, 6250, NULL, '1.0000', '5.8900', '5.8900', '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 (107551, '2022-08-09', 2906, 101475, 6250, 18670, '1.0000', '2.6000', '2.6000', '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 (107552, '2022-08-09', 1925, 101476, 6250, 53256, '1.0000', '1.2449', '1.2449', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107553, '2022-08-09', 9794, 101477, 6250, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107554, '2022-08-09', 9878, 101478, 6250, 56906, '1.0000', '8.7483', '8.7483', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107555, '2022-08-09', 1812, 101479, 6250, 60049, '2.0000', '8.6297', '8.6297', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107556, '2022-08-09', 9508, 101480, 6250, 45069, '1.0000', '3.5083', '3.5083', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107557, '2022-08-09', 7917, 101481, 6250, NULL, '1.0000', '5.0000', '5.0000', '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 (107558, '2022-08-09', 9634, 101482, 6250, NULL, '3.0000', '4.8000', '4.8000', '7.0000', '7.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 (107559, '2022-08-09', 1499, 101483, 6250, 58613, '2.0000', '0.4612', '0.4612', '0.7000', '0.7000', '43.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107560, '2022-08-09', 2169, 101484, 6250, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107561, '2022-08-09', 9794, 101485, 6250, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107562, '2022-08-09', 2167, 101486, 6250, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107563, '2022-08-09', 2015, 101487, 6250, 60533, '1.0000', '9.0000', '9.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107564, '2022-08-09', 8489, 101488, 6250, NULL, '1.0000', '33.2333', '33.2333', '28.5000', '28.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107565, '2022-08-09', 2135, 101489, 6250, NULL, '1.0000', '2.2504', '2.2504', '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 (107566, '2022-08-09', 1435, 101490, 6250, 56903, '1.0000', '21.9211', '21.9211', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107567, '2022-08-09', 1602, 101491, 6250, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107568, '2022-08-09', 1837, 101492, 6250, 60063, '5.0000', '0.6105', '0.6105', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107569, '2022-08-09', 2167, 101493, 6250, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107570, '2022-08-09', 1888, 101494, 6250, 60057, '1.0000', '17.6053', '17.6053', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107571, '2022-08-10', 1488, 101495, 6251, 55624, '1.0000', '4.2938', '4.2938', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107572, '2022-08-10', 2545, 101496, 6251, 59905, '1.0000', '8.6211', '8.6211', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107573, '2022-08-10', 7823, 101497, 6251, NULL, '1.0000', '11.3000', '11.3000', '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 (107574, '2022-08-10', 9729, 101498, 6251, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107575, '2022-08-10', 8017, 101499, 6251, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107576, '2022-08-10', 1912, 101500, 6251, NULL, '2.0000', '0.6868', '0.6868', '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 (107577, '2022-08-10', 1837, 101501, 6251, 59893, '5.0000', '1.6544', '1.6544', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107578, '2022-08-10', 8158, 101502, 6251, NULL, '1.0000', '22.0000', '22.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 (107579, '2022-08-10', 1330, 101503, 6251, 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 (107580, '2022-08-10', 2285, 101504, 6251, NULL, '1.0000', '-159.5389', '-159.5389', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107581, '2022-08-10', 1863, 101505, 6251, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107582, '2022-08-10', 1310, 101506, 6251, 60259, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107583, '2022-08-10', 1828, 101507, 6251, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107584, '2022-08-10', 8208, 101508, 6251, NULL, '2.0000', '47.9541', '47.9541', '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 (107585, '2022-08-10', 1602, 101509, 6251, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107586, '2022-08-10', 9747, 101510, 6251, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107587, '2022-08-10', 2256, 101511, 6251, 60350, '1.0000', '16.6000', '16.6000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107588, '2022-08-10', 8336, 101512, 6252, NULL, '2.0000', '3.4000', '3.4000', '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 (107589, '2022-08-10', 7666, 101513, 6252, NULL, '1.0000', '3.6000', '3.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 (107590, '2022-08-10', 9695, 101514, 6252, NULL, '1.0000', '4.5000', '4.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 (107591, '2022-08-10', 7756, 101515, 6252, NULL, '1.0000', '2.5000', '2.5000', '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 (107592, '2022-08-10', 8548, 101516, 6252, NULL, '1.0000', '12.0000', '12.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 (107593, '2022-08-10', 7881, 101517, 6252, NULL, '1.0000', '2.3000', '2.3000', '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 (107594, '2022-08-10', 7482, 101518, 6252, NULL, '1.0000', '3.0500', '3.0500', '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 (107595, '2022-08-10', 7780, 101519, 6252, NULL, '1.0000', '11.6000', '11.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 (107596, '2022-08-10', 9741, 101520, 6252, NULL, '1.0000', '7.6000', '7.6000', '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 (107597, '2022-08-10', 7806, 101521, 6252, NULL, '2.0000', '1.8000', '1.8000', '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 (107598, '2022-08-10', 7518, 101522, 6252, NULL, '1.0000', '7.8200', '7.8200', '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 (107599, '2022-08-10', 7412, 101523, 6252, NULL, '1.0000', '1.5200', '1.5200', '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 (107600, '2022-08-10', 7558, 101524, 6252, NULL, '2.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107601, '2022-08-10', 7621, 101525, 6252, NULL, '1.0000', '5.9000', '5.9000', '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 (107602, '2022-08-10', 2506, 101526, 6252, 16244, '-34.0000', '3.4900', '3.4900', '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 (107603, '2022-08-10', 2506, 101526, 6252, NULL, '35.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107604, '2022-08-10', 8097, 101527, 6252, NULL, '2.0000', '3.4000', '3.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 (107605, '2022-08-10', 7806, 101528, 6252, NULL, '1.0000', '1.8000', '1.8000', '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 (107606, '2022-08-10', 7457, 101529, 6252, 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 (107607, '2022-08-10', 2284, 101530, 6252, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '7.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 (107608, '2022-08-10', 7641, 101531, 6252, NULL, '1.0000', '1.9000', '1.9000', '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 (107609, '2022-08-10', 8288, 101532, 6252, NULL, '8.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (107610, '2022-08-10', 8918, 101533, 6252, NULL, '2.0000', '1.0400', '1.0400', '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 (107611, '2022-08-10', 7674, 101534, 6252, NULL, '1.0000', '1.3000', '1.3000', '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 (107612, '2022-08-10', 7684, 101535, 6252, NULL, '6.0000', '9.0000', '9.0000', '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 (107613, '2022-08-10', 9514, 101536, 6252, NULL, '1.0000', '21.0000', '21.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 (107614, '2022-08-10', 8878, 101537, 6252, NULL, '3.0000', '6.6700', '6.6700', '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 (107615, '2022-08-10', 7671, 101538, 6252, NULL, '1.0000', '15.5000', '15.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 (107616, '2022-08-10', 1765, 101539, 6252, 3175, '-22.0000', '90.0000', '90.0000', '9.5000', '9.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 (107617, '2022-08-10', 1765, 101539, 6252, NULL, '24.0000', '90.0000', '90.0000', '9.5000', '9.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 (107618, '2022-08-10', 8467, 101540, 6252, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107619, '2022-08-10', 2849, 101541, 6252, 17212, '-2.0000', '5.8500', '5.8500', '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 (107620, '2022-08-10', 2849, 101541, 6252, NULL, '4.0000', '5.8500', '5.8500', '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 (107621, '2022-08-10', 2221, 101542, 6253, NULL, '1.0000', '2.3805', '2.3805', '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 (107622, '2022-08-10', 9891, 101543, 6253, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '18.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107623, '2022-08-10', 9750, 101544, 6253, NULL, '1.0000', '2.7458', '2.7458', '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 (107624, '2022-08-10', 1689, 101545, 6253, 60349, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107625, '2022-08-10', 9945, 101546, 6253, 60251, '1.0000', '12.1000', '12.1000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107626, '2022-08-10', 7318, 101547, 6253, 60226, '1.0000', '12.1931', '12.1931', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107627, '2022-08-10', 2864, 101548, 6253, NULL, '4.0000', '3.3622', '3.3622', '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 (107628, '2022-08-10', 2762, 101549, 6254, NULL, '1.0000', '7.1000', '7.1000', '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 (107629, '2022-08-10', 7379, 101550, 6254, NULL, '1.0000', '12.5100', '12.5100', '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 (107630, '2022-08-10', 1499, 101551, 6254, 50243, '7.0000', '0.4542', '0.4542', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107631, '2022-08-10', 2352, 101552, 6254, NULL, '20.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (107632, '2022-08-10', 7756, 101553, 6254, NULL, '1.0000', '2.5000', '2.5000', '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 (107633, '2022-08-10', 2324, 101554, 6254, 59691, '1.0000', '13.9286', '13.9286', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107634, '2022-08-10', 2030, 101555, 6254, NULL, '1.0000', '11.3333', '11.3333', '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 (107635, '2022-08-10', 3079, 101556, 6254, 25164, '1.0000', '9.0000', '9.0000', '12.0000', '12.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 (107636, '2022-08-10', 2521, 101557, 6254, 59701, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107637, '2022-08-10', 1665, 101558, 6254, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107638, '2022-08-10', 1602, 101559, 6254, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107639, '2022-08-10', 1812, 101560, 6254, 60326, '2.0000', '9.3470', '9.3470', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107640, '2022-08-10', 2948, 101561, 6254, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107641, '2022-08-10', 2643, 101562, 6255, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107642, '2022-08-10', 9734, 101563, 6255, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '61.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107643, '2022-08-10', 1665, 101564, 6255, 60262, '2.0000', '1.3274', '1.3274', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107644, '2022-08-10', 7382, 101565, 6255, 60250, '2.0000', '11.0333', '11.0333', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107645, '2022-08-10', 2921, 101566, 6255, 58244, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107646, '2022-08-10', 1637, 101567, 6255, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107647, '2022-08-10', 2315, 101568, 6255, 60316, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107648, '2022-08-10', 8444, 101569, 6255, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107649, '2022-08-10', 7608, 101570, 6255, NULL, '1.0000', '6.9800', '6.9800', '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 (107650, '2022-08-10', 1771, 101571, 6255, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107651, '2022-08-10', 1855, 101572, 6255, NULL, '1.0000', '1.4615', '1.4615', '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 (107652, '2022-08-10', 1310, 101573, 6255, 60259, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '43.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107653, '2022-08-10', 2283, 101574, 6255, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107654, '2022-08-10', 2089, 101575, 6256, 58158, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107655, '2022-08-10', 9219, 101576, 6256, 59836, '1.0000', '7.3500', '7.3500', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107656, '2022-08-10', 7704, 101577, 6256, NULL, '2.0000', '0.4900', '0.4900', '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 (107657, '2022-08-10', 7746, 101578, 6256, NULL, '2.0000', '2.8600', '2.8600', '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 (107658, '2022-08-10', 7671, 101579, 6256, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107659, '2022-08-10', 2893, 101580, 6256, 60362, '1.0000', '9.1280', '9.1280', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107660, '2022-08-10', 1670, 101581, 6256, NULL, '1.0000', '-32.2503', '-32.2503', '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 (107661, '2022-08-10', 2293, 101582, 6256, NULL, '3.0000', '-17.4320', '-17.4320', '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 (107662, '2022-08-10', 2948, 101583, 6256, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107663, '2022-08-10', 9532, 101584, 6256, 59689, '1.0000', '11.0235', '11.0235', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107664, '2022-08-10', 2169, 101585, 6256, 60325, '2.0000', '1.7142', '1.7142', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107665, '2022-08-10', 7745, 101586, 6257, 58190, '2.0000', '6.7000', '6.7000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107666, '2022-08-10', 7584, 101587, 6257, NULL, '2.0000', '3.1378', '3.1378', '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 (107667, '2022-08-10', 1386, 101588, 6257, 60299, '1.0000', '4.5458', '4.5458', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107668, '2022-08-10', 9634, 101589, 6257, NULL, '2.0000', '4.4667', '4.4667', '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 (107669, '2022-08-10', 9649, 101590, 6257, NULL, '1.0000', '2.6750', '2.6750', '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 (107670, '2022-08-10', 1916, 101591, 6257, NULL, '1.0000', '8.2300', '8.2300', '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 (107671, '2022-08-10', 1369, 101592, 6257, 55569, '1.0000', '7.2000', '7.2000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107672, '2022-08-10', 2262, 101593, 6257, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107673, '2022-08-10', 1699, 101594, 6257, NULL, '1.0000', '-5.0000', '-5.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 (107674, '2022-08-10', 1863, 101595, 6257, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107675, '2022-08-10', 2706, 101596, 6257, 58186, '1.0000', '8.7925', '8.7925', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107676, '2022-08-10', 7550, 101597, 6257, NULL, '4.0000', '4.7300', '4.7300', '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 (107677, '2022-08-10', 1761, 101598, 6257, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107678, '2022-08-10', 2379, 101599, 6257, NULL, '1.0000', '-14.1447', '-14.1447', '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 (107679, '2022-08-10', 2020, 101600, 6257, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (107680, '2022-08-10', 1837, 101601, 6257, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107681, '2022-08-10', 1499, 101602, 6258, 50243, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '19.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107682, '2022-08-10', 1863, 101603, 6258, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107683, '2022-08-10', 2169, 101604, 6258, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107684, '2022-08-10', 9988, 101605, 6258, 60254, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107685, '2022-08-10', 1904, 101606, 6258, 60310, '2.0000', '2.3094', '2.3094', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107686, '2022-08-10', 9747, 101607, 6258, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107687, '2022-08-10', 7522, 101608, 6258, NULL, '1.0000', '5.2000', '5.2000', '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 (107688, '2022-08-10', 7592, 101609, 6258, NULL, '1.0000', '8.6500', '8.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 (107689, '2022-08-10', 1840, 101610, 6258, NULL, '10.0000', '0.2400', '0.2400', '0.5000', '0.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 (107690, '2022-08-10', 1841, 101611, 6258, NULL, '10.0000', '0.7630', '0.7630', '0.5000', '0.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 (107691, '2022-08-10', 8208, 101612, 6258, NULL, '4.0000', '47.9541', '47.9541', '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 (107692, '2022-08-10', 7741, 101613, 6258, NULL, '1.0000', '-174.4114', '-174.4114', '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 (107693, '2022-08-10', 1905, 101614, 6258, NULL, '1.0000', '0.5203', '0.5203', '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 (107694, '2022-08-10', 2169, 101615, 6258, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107695, '2022-08-10', 1602, 101616, 6258, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107696, '2022-08-10', 2656, 101617, 6258, 60555, '2.0000', '2.0601', '2.0601', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107697, '2022-08-10', 2010, 101618, 6258, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107698, '2022-08-10', 3029, 101619, 6258, NULL, '1.0000', '59.9505', '59.9505', '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 (107699, '2022-08-10', 7641, 101620, 6259, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107700, '2022-08-10', 7832, 101621, 6259, 60194, '1.0000', '12.9658', '12.9658', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107701, '2022-08-10', 7565, 101622, 6259, NULL, '1.0000', '0.2000', '0.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 (107702, '2022-08-10', 2315, 101623, 6259, 60392, '1.0000', '0.7626', '0.7626', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107703, '2022-08-10', 9028, 101624, 6259, NULL, '1.0000', '5.6880', '5.6880', '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 (107704, '2022-08-10', 7611, 101625, 6259, 60104, '2.0000', '14.8304', '14.8304', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107705, '2022-08-10', 7551, 101626, 6259, NULL, '8.0000', '-19.2050', '-19.2050', '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 (107706, '2022-08-10', 9503, 101627, 6259, 56528, '1.0000', '1.2700', '1.2700', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107707, '2022-08-10', 9177, 101628, 6259, NULL, '3.0000', '-11.3652', '-11.3652', '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 (107708, '2022-08-10', 7821, 101629, 6259, 51268, '1.0000', '10.8121', '10.8121', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107709, '2022-08-10', 7634, 101630, 6259, 60428, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107710, '2022-08-10', 8243, 101631, 6259, NULL, '4.0000', '1.1400', '1.1400', '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 (107711, '2022-08-10', 7316, 101632, 6259, 57459, '1.0000', '0.9231', '0.9231', '1.3000', '1.3000', '31.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107712, '2022-08-10', 9186, 101633, 6259, 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 (107713, '2022-08-10', 7412, 101634, 6259, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107714, '2022-08-10', 7666, 101635, 6259, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107715, '2022-08-10', 7984, 101636, 6259, NULL, '1.0000', '32.8375', '32.8375', '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 (107716, '2022-08-10', 9736, 101637, 6259, 60487, '1.0000', '4.4637', '4.4637', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107717, '2022-08-10', 7385, 101638, 6259, 60459, '6.0000', '5.7239', '5.7239', '4.0000', '4.0000', '94.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107718, '2022-08-10', 9396, 101639, 6259, 53612, '1.0000', '5.9075', '5.9075', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107719, '2022-08-10', 1665, 101640, 6259, 60446, '2.0000', '1.2418', '1.2418', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107720, '2022-08-10', 7653, 101641, 6259, 55074, '2.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107721, '2022-08-10', 2298, 101642, 6259, 46651, '1.0000', '6.3879', '6.3879', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107722, '2022-08-10', 7725, 101643, 6259, NULL, '1.0000', '6.2371', '6.2371', '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 (107723, '2022-08-10', 8167, 101644, 6259, 60495, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107724, '2022-08-10', 8061, 101645, 6259, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107725, '2022-08-10', 8053, 101646, 6259, 56579, '5.0000', '1.1052', '1.1052', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107726, '2022-08-10', 7518, 101647, 6259, 60471, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107727, '2022-08-10', 7411, 101648, 6259, 60389, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107728, '2022-08-10', 7819, 101649, 6259, 60394, '1.0000', '12.8331', '12.8331', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107729, '2022-08-10', 9715, 101650, 6259, 59314, '1.0000', '10.0087', '10.0087', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107730, '2022-08-10', 8658, 101651, 6259, NULL, '1.0000', '17.5167', '17.5167', '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 (107731, '2022-08-10', 1837, 101652, 6259, 45863, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107732, '2022-08-10', 7354, 101653, 6259, 56647, '3.0000', '1.5641', '1.5641', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107733, '2022-08-10', 8849, 101654, 6259, NULL, '1.0000', '1.0700', '1.0700', '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 (107734, '2022-08-10', 7864, 101655, 6259, 60484, '2.0000', '21.2816', '21.2816', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107735, '2022-08-10', 8074, 101656, 6259, 60448, '2.0000', '24.7912', '24.7912', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107736, '2022-08-10', 8127, 101657, 6259, NULL, '3.0000', '24.5300', '24.5300', '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 (107737, '2022-08-10', 8363, 101658, 6259, NULL, '1.0000', '38.0000', '38.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 (107738, '2022-08-10', 1557, 101659, 6259, 60150, '1.0000', '8.0623', '8.0623', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107739, '2022-08-10', 8077, 101660, 6259, NULL, '1.0000', '4.9986', '4.9986', '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 (107740, '2022-08-10', 7915, 101661, 6259, NULL, '1.0000', '2.8000', '2.8000', '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 (107741, '2022-08-10', 7746, 101662, 6259, 59097, '2.0000', '1.3400', '1.3400', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107742, '2022-08-10', 1501, 101663, 6259, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107743, '2022-08-10', 2906, 101664, 6259, 50455, '1.0000', '2.6818', '2.6818', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107744, '2022-08-10', 2656, 101665, 6259, 60187, '1.0000', '1.7540', '1.7540', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107745, '2022-08-10', 9742, 101666, 6259, 57637, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107746, '2022-08-10', 7444, 101667, 6259, 60402, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107747, '2022-08-10', 9809, 101668, 6259, 59084, '1.0000', '6.0804', '6.0804', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107748, '2022-08-10', 7675, 101669, 6259, NULL, '1.0000', '-21.9809', '-21.9809', '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 (107749, '2022-08-10', 7651, 101670, 6259, 60419, '1.0000', '3.4359', '3.4359', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107750, '2022-08-10', 7674, 101671, 6259, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107751, '2022-08-10', 8135, 101672, 6259, 59312, '1.0000', '5.9042', '5.9042', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107752, '2022-08-10', 2102, 101673, 6259, 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 (107753, '2022-08-10', 9942, 101674, 6259, 60115, '1.0000', '9.2802', '9.2802', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107754, '2022-08-10', 9271, 101675, 6259, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107755, '2022-08-10', 9311, 101676, 6260, NULL, '1.0000', '7.8000', '7.8000', '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 (107756, '2022-08-10', 2558, 101677, 6260, NULL, '1.0000', '6.0000', '6.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 (107757, '2022-08-10', 1528, 101678, 6260, NULL, '2.0000', '900.1354', '900.1354', '8.5000', '8.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 (107758, '2022-08-10', 1557, 101679, 6260, 60305, '2.0000', '8.2500', '8.2500', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107759, '2022-08-10', 2169, 101680, 6260, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107760, '2022-08-10', 9988, 101681, 6261, 60254, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107761, '2022-08-10', 7658, 101682, 6261, NULL, '2.0000', '10.1500', '10.1500', '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 (107762, '2022-08-10', 1703, 101683, 6261, 59868, '1.0000', '11.5700', '11.5700', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107763, '2022-08-10', 1388, 101684, 6262, 59616, '1.0000', '7.3760', '7.3760', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107764, '2022-08-10', 1647, 101685, 6263, NULL, '1.0000', '-8.0033', '-8.0033', '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 (107765, '2022-08-10', 1868, 101686, 6263, NULL, '1.0000', '3.8800', '3.8800', '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 (107766, '2022-08-10', 9921, 101687, 6263, 60358, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107767, '2022-08-10', 9947, 101688, 6264, 60238, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107768, '2022-08-10', 2068, 101689, 6264, NULL, '1.0000', '14.6943', '14.6943', '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 (107769, '2022-08-10', 1307, 101690, 6264, NULL, '1.0000', '-106.4636', '-106.4636', '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 (107770, '2022-08-10', 8011, 101691, 6265, 60097, '1.0000', '7.5500', '7.5500', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107771, '2022-08-10', 7704, 101692, 6265, NULL, '1.0000', '-1.5625', '-1.5625', '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 (107772, '2022-08-10', 7588, 101693, 6265, 59378, '1.0000', '8.3822', '8.3822', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107773, '2022-08-10', 2104, 101694, 6265, NULL, '1.0000', '0.2000', '0.2000', '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 (107774, '2022-08-10', 7917, 101695, 6265, 52750, '1.0000', '2.1447', '2.1447', '0.7000', '0.7000', '60.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107775, '2022-08-10', 7778, 101696, 6265, NULL, '1.0000', '33.6270', '33.6270', '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 (107776, '2022-08-10', 7674, 101697, 6265, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107777, '2022-08-10', 8452, 101698, 6265, NULL, '1.0000', '1.4547', '1.4547', '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 (107778, '2022-08-10', 7509, 101699, 6265, 60453, '1.0000', '8.8761', '8.8761', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107779, '2022-08-10', 7673, 101700, 6265, 60108, '1.0000', '13.3509', '13.3509', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107780, '2022-08-10', 9269, 101701, 6265, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107781, '2022-08-10', 9947, 101702, 6266, 60238, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107782, '2022-08-10', 9729, 101703, 6266, 57675, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107783, '2022-08-10', 9634, 101704, 6267, NULL, '1.0000', '4.8000', '4.8000', '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 (107784, '2022-08-10', 2865, 101705, 6267, 40624, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107785, '2022-08-10', 1904, 101706, 6267, 59962, '2.0000', '19.3805', '19.3805', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107786, '2022-08-10', 2293, 101707, 6267, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107787, '2022-08-10', 1912, 101708, 6267, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107788, '2022-08-10', 2315, 101709, 6267, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107789, '2022-08-10', 2237, 101710, 6267, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107790, '2022-08-10', 7802, 101711, 6267, 52269, '1.0000', '1.3468', '1.3468', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107791, '2022-08-10', 1884, 101712, 6267, 47968, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107792, '2022-08-10', 2167, 101713, 6267, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107793, '2022-08-10', 2327, 101714, 6267, 59969, '1.0000', '3.3869', '3.3869', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107794, '2022-08-10', 1846, 101715, 6267, 57998, '1.0000', '6.4609', '6.4609', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107795, '2022-08-10', 9716, 101716, 6267, 58813, '1.0000', '4.8500', '4.8500', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107796, '2022-08-10', 2506, 101717, 6267, 60011, '1.0000', '4.3139', '4.3139', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107797, '2022-08-10', 2169, 101718, 6267, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107798, '2022-08-10', 1875, 101719, 6267, 55870, '2.0000', '73.8421', '73.8421', '3.7000', '3.7000', '72.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107799, '2022-08-10', 1602, 101720, 6267, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107800, '2022-08-10', 1863, 101721, 6267, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107801, '2022-08-10', 2327, 101722, 6267, 59969, '2.0000', '3.3869', '3.3869', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107802, '2022-08-10', 9940, 101723, 6267, 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 (107803, '2022-08-10', 9204, 101724, 6267, NULL, '1.0000', '8.1600', '8.1600', '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 (107804, '2022-08-10', 1665, 101725, 6267, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107805, '2022-08-10', 1812, 101726, 6267, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107806, '2022-08-10', 2893, 101727, 6267, 60048, '1.0000', '6.7609', '6.7609', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107807, '2022-08-10', 2384, 101728, 6267, 60032, '2.0000', '0.4392', '0.4392', '0.8000', '0.8000', '95.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107808, '2022-08-10', 9471, 101729, 6267, 60509, '1.0000', '15.0800', '15.0800', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107809, '2022-08-10', 8773, 101730, 6267, NULL, '1.0000', '-92.4961', '-92.4961', '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 (107810, '2022-08-10', 1345, 101731, 6267, 46576, '1.0000', '52.0000', '52.0000', '77.0000', '77.0000', '2.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107811, '2022-08-10', 1695, 101732, 6267, 58641, '1.0000', '27.0720', '27.0720', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107812, '2022-08-10', 1470, 101733, 6267, 57964, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107813, '2022-08-10', 1409, 101734, 6267, 59960, '1.0000', '13.0799', '13.0799', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107814, '2022-08-10', 1347, 101735, 6267, 59626, '3.0000', '-0.5451', '-0.5451', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107815, '2022-08-11', 9329, 101736, 6268, NULL, '1.0000', '6.7000', '6.7000', '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 (107816, '2022-08-11', 8933, 101737, 6269, NULL, '1.0000', '8.8300', '8.8300', '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 (107817, '2022-08-11', 9695, 101738, 6269, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107818, '2022-08-11', 2916, 101739, 6269, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107819, '2022-08-11', 2315, 101740, 6269, 60316, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107820, '2022-08-11', 7642, 101741, 6269, NULL, '1.0000', '2.6900', '2.6900', '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 (107821, '2022-08-11', 7756, 101742, 6269, NULL, '1.0000', '2.5000', '2.5000', '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 (107822, '2022-08-11', 1637, 101743, 6269, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107823, '2022-08-11', 1863, 101744, 6269, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107824, '2022-08-11', 2504, 101745, 6269, 44448, '1.0000', '35.0000', '35.0000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 314);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107825, '2022-08-11', 1394, 101746, 6269, 60293, '1.0000', '12.8535', '12.8535', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107826, '2022-08-11', 9740, 101747, 6269, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107827, '2022-08-11', 7382, 101748, 6269, NULL, '1.0000', '11.0333', '11.0333', '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 (107828, '2022-08-11', 7390, 101749, 6269, NULL, '1.0000', '-18.9300', '-18.9300', '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 (107829, '2022-08-11', 2253, 101750, 6269, 57678, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107830, '2022-08-11', 1342, 101751, 6269, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107831, '2022-08-11', 2169, 101752, 6269, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107832, '2022-08-11', 8933, 101753, 6269, NULL, '1.0000', '8.8300', '8.8300', '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 (107833, '2022-08-11', 2416, 101754, 6269, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107834, '2022-08-11', 7386, 101755, 6269, 55937, '2.0000', '8.2000', '8.2000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107835, '2022-08-11', 1665, 101756, 6269, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107836, '2022-08-11', 9482, 101757, 6269, 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 (107837, '2022-08-11', 1557, 101758, 6269, 60305, '1.0000', '8.2500', '8.2500', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107838, '2022-08-11', 2169, 101759, 6269, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107839, '2022-08-11', 1499, 101760, 6269, 50243, '4.0000', '0.4542', '0.4542', '0.7000', '0.7000', '15.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107840, '2022-08-11', 9482, 101761, 6269, 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 (107841, '2022-08-11', 2379, 101762, 6269, NULL, '1.0000', '-14.1447', '-14.1447', '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 (107842, '2022-08-11', 9836, 101763, 6269, 58195, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107843, '2022-08-11', 8254, 101764, 6269, NULL, '1.0000', '27.2800', '27.2800', '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 (107844, '2022-08-11', 2521, 101765, 6269, 59701, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107845, '2022-08-11', 2169, 101766, 6269, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107846, '2022-08-11', 1307, 101767, 6269, NULL, '1.0000', '-106.4636', '-106.4636', '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 (107847, '2022-08-11', 1812, 101768, 6269, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107848, '2022-08-11', 9945, 101769, 6269, 60251, '1.0000', '12.1000', '12.1000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107849, '2022-08-11', 2643, 101770, 6269, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107850, '2022-08-11', 2416, 101771, 6269, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107851, '2022-08-11', 1846, 101772, 6270, 60306, '1.0000', '-296.8167', '-296.8167', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107852, '2022-08-11', 2233, 101773, 6270, 60278, '1.0000', '25.7222', '25.7222', '39.0000', '39.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107853, '2022-08-11', 7716, 101774, 6271, NULL, '1.0000', '0.0000', '0.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 (107854, '2022-08-11', 1577, 101775, 6271, 7596, '-23.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 (107855, '2022-08-11', 1577, 101775, 6271, NULL, '24.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-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 (107856, '2022-08-11', 7411, 101776, 6271, NULL, '2.0000', '1.3500', '1.3500', '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 (107857, '2022-08-11', 1501, 101777, 6271, NULL, '1.0000', '2.0500', '2.0500', '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 (107858, '2022-08-11', 2289, 101778, 6271, 2949, '-249.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 (107859, '2022-08-11', 2289, 101778, 6271, NULL, '251.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-251.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107860, '2022-08-11', 8677, 101779, 6271, NULL, '3.0000', '1.2800', '1.2800', '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 (107861, '2022-08-11', 8467, 101780, 6271, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107862, '2022-08-11', 7780, 101781, 6271, NULL, '1.0000', '11.6000', '11.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 (107863, '2022-08-11', 8415, 101782, 6271, NULL, '1.0000', '3.2500', '3.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 (107864, '2022-08-11', 8673, 101783, 6271, NULL, '1.0000', '20.0000', '20.0000', '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 (107865, '2022-08-11', 7894, 101784, 6271, NULL, '1.0000', '3.8000', '3.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 (107866, '2022-08-11', 1855, 101785, 6271, 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 (107867, '2022-08-11', 7658, 101786, 6271, NULL, '2.0000', '2.0200', '2.0200', '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 (107868, '2022-08-11', 7899, 101787, 6271, NULL, '1.0000', '3.3000', '3.3000', '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 (107869, '2022-08-11', 7674, 101788, 6271, NULL, '1.0000', '1.3000', '1.3000', '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 (107870, '2022-08-11', 7641, 101789, 6271, NULL, '1.0000', '1.9000', '1.9000', '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 (107871, '2022-08-11', 1904, 101790, 6271, 5442, '-76.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 (107872, '2022-08-11', 1904, 101790, 6271, NULL, '81.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107873, '2022-08-11', 7412, 101791, 6271, NULL, '1.0000', '1.5200', '1.5200', '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 (107874, '2022-08-11', 8934, 101792, 6271, 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 (107875, '2022-08-11', 7411, 101793, 6271, NULL, '2.0000', '1.3500', '1.3500', '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 (107876, '2022-08-11', 7671, 101794, 6271, NULL, '1.0000', '15.5000', '15.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 (107877, '2022-08-11', 2506, 101795, 6271, 16244, '-35.0000', '3.4900', '3.4900', '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 (107878, '2022-08-11', 2506, 101795, 6271, NULL, '36.0000', '3.4900', '3.4900', '6.5000', '6.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 (107879, '2022-08-11', 7518, 101796, 6271, NULL, '1.0000', '7.8200', '7.8200', '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 (107880, '2022-08-11', 7744, 101797, 6271, NULL, '2.0000', '2.7000', '2.7000', '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 (107881, '2022-08-11', 9580, 101798, 6271, 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 (107882, '2022-08-11', 8352, 101799, 6271, 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 (107883, '2022-08-11', 8079, 101800, 6271, NULL, '1.0000', '14.3600', '14.3600', '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 (107884, '2022-08-11', 7711, 101801, 6271, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107885, '2022-08-11', 7707, 101802, 6271, NULL, '1.0000', '7.0000', '7.0000', '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 (107886, '2022-08-11', 9092, 101803, 6271, NULL, '1.0000', '5.2900', '5.2900', '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 (107887, '2022-08-11', 8979, 101804, 6271, 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 (107888, '2022-08-11', 3044, 101805, 6271, NULL, '1.0000', '0.4000', '0.4000', '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 (107889, '2022-08-11', 2543, 101806, 6272, 6304, '-2.0000', '2.0000', '2.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 (107890, '2022-08-11', 2543, 101806, 6272, NULL, '3.0000', '2.0000', '2.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 (107891, '2022-08-11', 2415, 101807, 6272, 4656, '-18.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 (107892, '2022-08-11', 2415, 101807, 6272, NULL, '19.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-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 (107893, '2022-08-11', 2416, 101808, 6272, 4745, '-46.0000', '1.2000', '1.2000', '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 (107894, '2022-08-11', 2416, 101808, 6272, NULL, '47.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-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 (107895, '2022-08-11', 2169, 101809, 6272, 10737, '-202.0000', '3.8397', '3.8397', '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 (107896, '2022-08-11', 2169, 101809, 6272, NULL, '203.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-203.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107897, '2022-08-11', 9907, 101810, 6272, 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 (107898, '2022-08-11', 9908, 101811, 6272, 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 (107899, '2022-08-11', 8740, 101812, 6272, NULL, '1.0000', '2.0000', '2.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 (107900, '2022-08-11', 1349, 101813, 6272, 10162, '-6.0000', '20.8300', '20.8300', '61.0000', '61.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107901, '2022-08-11', 1349, 101813, 6272, NULL, '7.0000', '20.8300', '20.8300', '61.0000', '61.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 (107902, '2022-08-11', 2682, 101814, 6272, 12165, '-7.0000', '19.3000', '19.3000', '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 (107903, '2022-08-11', 2682, 101814, 6272, NULL, '8.0000', '19.3000', '19.3000', '20.0000', '20.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 (107904, '2022-08-11', 1888, 101815, 6272, 14663, '-12.0000', '134.8400', '134.8400', '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 (107905, '2022-08-11', 1888, 101815, 6272, NULL, '13.0000', '134.8400', '134.8400', '26.5000', '26.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 (107906, '2022-08-11', 9834, 101816, 6272, NULL, '2.0000', '1.4500', '1.4500', '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 (107907, '2022-08-11', 1744, 101817, 6272, 2163, '-5.0000', '26.5281', '26.5281', '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 (107908, '2022-08-11', 1744, 101817, 6272, NULL, '6.0000', '26.5281', '26.5281', '40.0000', '40.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 (107909, '2022-08-11', 2384, 101818, 6272, 4087, '-65.0000', '0.4000', '0.4000', '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 (107910, '2022-08-11', 2384, 101818, 6272, NULL, '67.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107911, '2022-08-11', 8557, 101819, 6272, NULL, '2.0000', '10.0000', '10.0000', '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 (107912, '2022-08-11', 2224, 101820, 6272, 1699, '-2.0000', '14.0000', '14.0000', '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 (107913, '2022-08-11', 2224, 101820, 6272, NULL, '3.0000', '14.0000', '14.0000', '22.0000', '22.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 (107914, '2022-08-11', 2250, 101821, 6272, 2787, '-21.0000', '6.8900', '6.8900', '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 (107915, '2022-08-11', 2250, 101821, 6272, NULL, '22.0000', '6.8900', '6.8900', '12.5000', '12.5000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107916, '2022-08-11', 1647, 101822, 6272, 3218, '-24.0000', '4.7200', '4.7200', '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 (107917, '2022-08-11', 1647, 101822, 6272, NULL, '25.0000', '4.7200', '4.7200', '8.0000', '8.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 (107918, '2022-08-11', 2693, 101823, 6272, 12285, '-10.0000', '25.3656', '25.3656', '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 (107919, '2022-08-11', 2693, 101823, 6272, NULL, '11.0000', '25.3656', '25.3656', '32.5000', '32.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 (107920, '2022-08-11', 1839, 101824, 6272, 8734, '-40.0000', '6.1500', '6.1500', '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 (107921, '2022-08-11', 1839, 101824, 6272, NULL, '41.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (107922, '2022-08-11', 1672, 101825, 6272, 7384, '-195.0000', '2.8700', '2.8700', '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 (107923, '2022-08-11', 1672, 101825, 6272, NULL, '205.0000', '2.8700', '2.8700', '5.5000', '5.5000', '-205.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107924, '2022-08-11', 2302, 101826, 6272, 2963, '-60.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 (107925, '2022-08-11', 2302, 101826, 6272, NULL, '62.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-62.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107926, '2022-08-11', 2277, 101827, 6272, 2937, '-75.0000', '0.7800', '0.7800', '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 (107927, '2022-08-11', 2277, 101827, 6272, NULL, '76.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107928, '2022-08-11', 7548, 101828, 6273, NULL, '1.0000', '3.9186', '3.9186', '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 (107929, '2022-08-11', 7671, 101829, 6273, NULL, '1.0000', '861.3000', '861.3000', '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 (107930, '2022-08-11', 7672, 101830, 6273, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107931, '2022-08-11', 7959, 101831, 6273, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '15.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107932, '2022-08-11', 7473, 101832, 6273, 60388, '1.0000', '0.5398', '0.5398', '0.7000', '0.7000', '74.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107933, '2022-08-11', 2315, 101833, 6273, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107934, '2022-08-11', 2284, 101834, 6273, 60100, '1.0000', '1.5246', '1.5246', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107935, '2022-08-11', 7708, 101835, 6273, 60608, '1.0000', '8.4528', '8.4528', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107936, '2022-08-11', 9800, 101836, 6273, 59136, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107937, '2022-08-11', 7894, 101837, 6273, 60624, '1.0000', '32.1111', '32.1111', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107938, '2022-08-11', 9715, 101838, 6273, 59314, '1.0000', '10.0087', '10.0087', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107939, '2022-08-11', 7848, 101839, 6273, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (107940, '2022-08-11', 7518, 101840, 6273, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '16.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107941, '2022-08-11', 2287, 101841, 6273, 59355, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107942, '2022-08-11', 7674, 101842, 6273, 60393, '2.0000', '65.7613', '65.7613', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107943, '2022-08-11', 9202, 101843, 6273, NULL, '5.0000', '3.5000', '3.5000', '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 (107944, '2022-08-11', 7411, 101844, 6273, 60389, '4.0000', '1.4000', '1.4000', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107945, '2022-08-11', 7345, 101845, 6273, 56149, '1.0000', '74.1700', '74.1700', '67.0000', '67.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107946, '2022-08-11', 7708, 101846, 6273, 60608, '1.0000', '8.4528', '8.4528', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107947, '2022-08-11', 9609, 101847, 6273, 60098, '1.0000', '7.7220', '7.7220', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107948, '2022-08-11', 7668, 101848, 6273, 60585, '1.0000', '95.2800', '95.2800', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107949, '2022-08-11', 9804, 101849, 6273, 55112, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107950, '2022-08-11', 9734, 101850, 6273, 60144, '3.0000', '0.3152', '0.3152', '0.7000', '0.7000', '75.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107951, '2022-08-11', 9883, 101851, 6273, 54147, '1.0000', '19.8000', '19.8000', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107952, '2022-08-11', 9463, 101852, 6273, 56606, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107953, '2022-08-11', 9271, 101853, 6273, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107954, '2022-08-11', 8308, 101854, 6273, NULL, '1.0000', '22.3258', '22.3258', '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 (107955, '2022-08-11', 7591, 101855, 6273, 60600, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107956, '2022-08-11', 7641, 101856, 6273, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107957, '2022-08-11', 9092, 101857, 6273, 60618, '3.0000', '0.3187', '0.3187', '0.5000', '0.5000', '148.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107958, '2022-08-11', 7518, 101858, 6273, 60471, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107959, '2022-08-11', 8600, 101859, 6273, NULL, '1.0000', '0.6300', '0.6300', '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 (107960, '2022-08-11', 7382, 101860, 6273, 60592, '1.0000', '9.0632', '9.0632', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107961, '2022-08-11', 7672, 101861, 6273, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107962, '2022-08-11', 7317, 101862, 6273, 59094, '1.0000', '15.4364', '15.4364', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107963, '2022-08-11', 1845, 101863, 6273, 60577, '1.0000', '22.5385', '22.5385', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107964, '2022-08-11', 9098, 101864, 6273, NULL, '1.0000', '-2.9392', '-2.9392', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107965, '2022-08-11', 8328, 101865, 6273, NULL, '1.0000', '11.2886', '11.2886', '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 (107966, '2022-08-11', 8969, 101866, 6273, NULL, '1.0000', '2.0000', '2.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 (107967, '2022-08-11', 1837, 101867, 6273, 45863, '1.0000', '0.5600', '0.5600', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107968, '2022-08-11', 7411, 101868, 6273, 60389, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107969, '2022-08-11', 7523, 101869, 6273, 60157, '1.0000', '12.1102', '12.1102', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107970, '2022-08-11', 8401, 101870, 6273, 59130, '1.0000', '8.6488', '8.6488', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107971, '2022-08-11', 7778, 101871, 6273, NULL, '1.0000', '33.6270', '33.6270', '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 (107972, '2022-08-11', 7490, 101872, 6273, 60611, '20.0000', '0.8377', '0.8377', '0.5000', '0.5000', '180.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107973, '2022-08-11', 1884, 101873, 6273, 57438, '1.0000', '8.2666', '8.2666', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107974, '2022-08-11', 8363, 101874, 6273, NULL, '1.0000', '38.0000', '38.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 (107975, '2022-08-11', 8178, 101875, 6273, NULL, '1.0000', '-3.7500', '-3.7500', '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 (107976, '2022-08-11', 8444, 101876, 6273, 55973, '1.0000', '-37.8763', '-37.8763', '3.0000', '3.0000', '89.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107977, '2022-08-11', 7899, 101877, 6273, 60625, '1.0000', '3.6854', '3.6854', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107978, '2022-08-11', 7514, 101878, 6273, 60457, '1.0000', '223354.7898', '223354.7898', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107979, '2022-08-11', 7703, 101879, 6273, NULL, '1.0000', '-4961.0093', '-4961.0093', '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 (107980, '2022-08-11', 9736, 101880, 6274, 60487, '1.0000', '4.4637', '4.4637', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107981, '2022-08-11', 7917, 101881, 6274, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '58.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107982, '2022-08-11', 7628, 101882, 6274, 54135, '4.0000', '0.0299', '0.0299', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107983, '2022-08-11', 7921, 101883, 6274, NULL, '1.0000', '0.3000', '0.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 (107984, '2022-08-11', 2315, 101884, 6274, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107985, '2022-08-11', 8186, 101885, 6274, NULL, '2.0000', '1.5626', '1.5626', '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 (107986, '2022-08-11', 7640, 101886, 6274, 56029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107987, '2022-08-11', 9092, 101887, 6274, 60618, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '146.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107988, '2022-08-11', 2656, 101888, 6274, 60187, '1.0000', '1.7540', '1.7540', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107989, '2022-08-11', 7713, 101889, 6274, 50666, '2.0000', '0.3910', '0.3910', '0.6000', '0.6000', '88.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107990, '2022-08-11', 2887, 101890, 6274, 56698, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107991, '2022-08-11', 8548, 101891, 6274, NULL, '1.0000', '-4.1859', '-4.1859', '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 (107992, '2022-08-11', 1339, 101892, 6274, 59327, '1.0000', '2.3147', '2.3147', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107993, '2022-08-11', 9729, 101893, 6274, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107994, '2022-08-11', 2858, 101894, 6275, 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 (107995, '2022-08-11', 2971, 101895, 6275, 59062, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107996, '2022-08-11', 2059, 101896, 6275, 60507, '1.0000', '12.8571', '12.8571', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107997, '2022-08-11', 2169, 101897, 6275, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107998, '2022-08-11', 2379, 101898, 6275, 60017, '1.0000', '2.0313', '2.0313', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107999, '2022-08-11', 2286, 101899, 6275, 56241, '1.0000', '4.9825', '4.9825', '7.0000', '7.0000', '30.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108000, '2022-08-11', 2576, 101900, 6275, NULL, '1.0000', '107.9300', '107.9300', '86.0000', '86.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108001, '2022-08-11', 8878, 101901, 6275, 58808, '1.0000', '1.2006', '1.2006', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108002, '2022-08-11', 8208, 101902, 6275, NULL, '2.0000', '33.0000', '33.0000', '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 (108003, '2022-08-11', 7802, 101903, 6275, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108004, '2022-08-11', 9794, 101904, 6275, 58789, '2.0000', '1.0800', '1.0800', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108005, '2022-08-11', 2511, 101905, 6275, 60055, '2.0000', '10.0175', '10.0175', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108006, '2022-08-11', 2821, 101906, 6275, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108007, '2022-08-11', 2379, 101907, 6275, 60017, '1.0000', '2.0313', '2.0313', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108008, '2022-08-11', 2759, 101908, 6275, 56965, '1.0000', '4.2175', '4.2175', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108009, '2022-08-11', 1819, 101909, 6275, 55755, '1.0000', '6.5815', '6.5815', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108010, '2022-08-11', 1310, 101910, 6275, 59953, '2.0000', '0.4064', '0.4064', '0.6000', '0.6000', '23.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108011, '2022-08-11', 2858, 101911, 6275, 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 (108012, '2022-08-11', 1780, 101912, 6275, 59996, '1.0000', '41.3380', '41.3380', '60.5000', '60.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108013, '2022-08-11', 1845, 101913, 6275, 60067, '1.0000', '21.6063', '21.6063', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108014, '2022-08-11', 1521, 101914, 6275, 56249, '1.0000', '2.8071', '2.8071', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108015, '2022-08-11', 2169, 101915, 6275, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108016, '2022-08-11', 1984, 101916, 6275, 54333, '1.0000', '2.3473', '2.3473', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108017, '2022-08-11', 2237, 101917, 6275, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108018, '2022-08-11', 2135, 101918, 6275, NULL, '1.0000', '2.2504', '2.2504', '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 (108019, '2022-08-11', 1386, 101919, 6275, 60073, '1.0000', '185.1788', '185.1788', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108020, '2022-08-11', 2864, 101920, 6275, 59978, '2.0000', '1.4045', '1.4045', '3.0000', '3.0000', '48.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108021, '2022-08-11', 2669, 101921, 6275, 46611, '1.0000', '25.1873', '25.1873', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108022, '2022-08-11', 1863, 101922, 6275, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108023, '2022-08-11', 1513, 101923, 6275, 56211, '1.0000', '22.0332', '22.0332', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108024, '2022-08-11', 1859, 101924, 6276, 57718, '1.0000', '23.4408', '23.4408', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108025, '2022-08-11', 9945, 101925, 6276, 60251, '1.0000', '12.1000', '12.1000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108026, '2022-08-11', 9740, 101926, 6276, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108027, '2022-08-11', 2295, 101927, 6276, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108028, '2022-08-11', 8208, 101928, 6276, NULL, '1.0000', '47.9541', '47.9541', '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 (108029, '2022-08-11', 1845, 101929, 6276, NULL, '1.0000', '53.9580', '53.9580', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108030, '2022-08-11', 2066, 101930, 6276, NULL, '2.0000', '0.5100', '0.5100', '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 (108031, '2022-08-11', 1388, 101931, 6276, 59616, '1.0000', '7.3760', '7.3760', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108032, '2022-08-11', 1665, 101932, 6276, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108033, '2022-08-11', 1410, 101933, 6276, NULL, '2.0000', '124.6472', '124.6472', '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 (108034, '2022-08-11', 1536, 101934, 6276, 60242, '14.0000', '32.6685', '32.6685', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108035, '2022-08-11', 7473, 101935, 6276, 39817, '2.0000', '0.1679', '0.1679', '0.7000', '0.7000', '30.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108036, '2022-08-11', 8017, 101936, 6276, 59863, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108037, '2022-08-11', 2293, 101937, 6276, NULL, '3.0000', '-17.4320', '-17.4320', '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 (108038, '2022-08-11', 9634, 101938, 6276, NULL, '1.0000', '4.4667', '4.4667', '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 (108039, '2022-08-11', 1411, 101939, 6276, 57758, '1.0000', '25.9987', '25.9987', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108040, '2022-08-11', 1905, 101940, 6276, NULL, '2.0000', '0.5203', '0.5203', '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 (108041, '2022-08-11', 7459, 101941, 6276, NULL, '10.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (108042, '2022-08-11', 2167, 101942, 6276, NULL, '1.0000', '0.6663', '0.6663', '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 (108043, '2022-08-11', 9979, 101943, 6276, NULL, '1.0000', '13.9000', '13.9000', '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 (108044, '2022-08-11', 9819, 101944, 6276, 55560, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108045, '2022-08-11', 9750, 101945, 6276, NULL, '1.0000', '2.7458', '2.7458', '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 (108046, '2022-08-11', 9734, 101946, 6276, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '58.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108047, '2022-08-11', 7411, 101947, 6276, NULL, '1.0000', '1.2819', '1.2819', '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 (108048, '2022-08-11', 2916, 101948, 6276, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108049, '2022-08-11', 2643, 101949, 6276, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108050, '2022-08-11', 8017, 101950, 6276, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108051, '2022-08-11', 9729, 101951, 6276, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108052, '2022-08-11', 2169, 101952, 6276, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108053, '2022-08-11', 1432, 101953, 6276, 59851, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108054, '2022-08-11', 2256, 101954, 6276, 60350, '1.0000', '16.6000', '16.6000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108055, '2022-08-11', 2233, 101955, 6276, 60278, '1.0000', '25.7222', '25.7222', '39.0000', '39.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108056, '2022-08-11', 9996, 101956, 6276, 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 (108057, '2022-08-11', 2547, 101957, 6276, NULL, '1.0000', '10.2000', '10.2000', '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 (108058, '2022-08-11', 2302, 101958, 6276, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '45.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108059, '2022-08-11', 1499, 101959, 6276, 50243, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108060, '2022-08-11', 2169, 101960, 6276, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108061, '2022-08-11', 7411, 101961, 6276, NULL, '1.0000', '1.2819', '1.2819', '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 (108062, '2022-08-11', 2656, 101962, 6276, 60555, '1.0000', '2.0601', '2.0601', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108063, '2022-08-11', 1840, 101963, 6276, NULL, '2.0000', '0.2400', '0.2400', '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 (108064, '2022-08-11', 2293, 101964, 6276, NULL, '4.0000', '-17.4320', '-17.4320', '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 (108065, '2022-08-11', 1493, 101965, 6276, NULL, '1.0000', '-174.0400', '-174.0400', '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 (108066, '2022-08-11', 1339, 101966, 6276, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108067, '2022-08-11', 8745, 101967, 6276, 60544, '1.0000', '14.0066', '14.0066', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108068, '2022-08-11', 8744, 101968, 6276, 60543, '1.0000', '2.3138', '2.3138', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108069, '2022-08-11', 9399, 101969, 6276, 34949, '1.0000', '0.9800', '0.9800', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108070, '2022-08-11', 2625, 101970, 6276, NULL, '1.0000', '17.0000', '17.0000', '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 (108071, '2022-08-11', 9729, 101971, 6276, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108072, '2022-08-11', 1637, 101972, 6276, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108073, '2022-08-11', 2443, 101973, 6276, 54833, '1.0000', '3.1936', '3.1936', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108074, '2022-08-11', 2260, 101974, 6276, 51688, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108075, '2022-08-11', 1610, 101975, 6276, 55625, '1.0000', '2.2800', '2.2800', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108076, '2022-08-11', 2169, 101976, 6276, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108077, '2022-08-11', 2237, 101977, 6276, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108078, '2022-08-11', 1557, 101978, 6276, 60305, '1.0000', '8.2500', '8.2500', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108079, '2022-08-11', 2167, 101979, 6276, NULL, '1.0000', '0.6663', '0.6663', '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 (108080, '2022-08-11', 2315, 101980, 6276, 59595, '5.0000', '0.7700', '0.7700', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108081, '2022-08-11', 9902, 101981, 6276, 59883, '1.0000', '7.9671', '7.9671', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108082, '2022-08-11', 2545, 101982, 6276, 59905, '1.0000', '8.6211', '8.6211', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108083, '2022-08-11', 8519, 101983, 6276, NULL, '30.0000', '4.6700', '4.6700', '3.7000', '3.7000', '-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 (108084, '2022-08-11', 7514, 101984, 6276, NULL, '1.0000', '2.2500', '2.2500', '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 (108085, '2022-08-11', 1574, 101985, 6276, 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 (108086, '2022-08-11', 2731, 101986, 6276, NULL, '1.0000', '2.8500', '2.8500', '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 (108087, '2022-08-11', 9729, 101987, 6276, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108088, '2022-08-11', 7741, 101988, 6276, NULL, '1.0000', '-174.4114', '-174.4114', '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 (108089, '2022-08-11', 2445, 101989, 6276, 22547, '6.0000', '3.2000', '3.2000', '5.5000', '5.5000', '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 (108090, '2022-08-11', 8595, 101990, 6276, NULL, '1.0000', '-3.2120', '-3.2120', '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 (108091, '2022-08-11', 9634, 101991, 6276, NULL, '2.0000', '4.4667', '4.4667', '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 (108092, '2022-08-11', 1665, 101992, 6276, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108093, '2022-08-12', 9823, 101993, 6277, NULL, '1.0000', '13.2500', '13.2500', '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 (108094, '2022-08-12', 9727, 101994, 6277, NULL, '1.0000', '6.7000', '6.7000', '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 (108095, '2022-08-12', 8722, 101995, 6277, NULL, '1.0000', '21.0000', '21.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 (108096, '2022-08-12', 8718, 101996, 6277, NULL, '1.0000', '11.2000', '11.2000', '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 (108097, '2022-08-12', 2416, 101997, 6278, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108098, '2022-08-12', 2169, 101998, 6278, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108099, '2022-08-12', 2007, 101999, 6278, 54358, '1.0000', '2.9984', '2.9984', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108100, '2022-08-12', 1863, 102000, 6278, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108101, '2022-08-12', 9794, 102001, 6278, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108102, '2022-08-12', 9718, 102002, 6278, 55787, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108103, '2022-08-12', 2289, 102003, 6278, 56722, '1.0000', '0.2692', '0.2692', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108104, '2022-08-12', 7459, 102004, 6278, NULL, '2.0000', '4.5753', '4.5753', '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 (108105, '2022-08-12', 2105, 102005, 6278, 56726, '1.0000', '2.0391', '2.0391', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108106, '2022-08-12', 9645, 102006, 6278, 41994, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108107, '2022-08-12', 1602, 102007, 6278, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108108, '2022-08-12', 1822, 102008, 6278, 59997, '2.0000', '2.5369', '2.5369', '4.0000', '4.0000', '58.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108109, '2022-08-12', 1695, 102009, 6278, 58641, '1.0000', '27.0720', '27.0720', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108110, '2022-08-12', 1326, 102010, 6278, 58753, '1.0000', '3.6418', '3.6418', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108111, '2022-08-12', 2315, 102011, 6279, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108112, '2022-08-12', 1307, 102012, 6279, NULL, '1.0000', '-106.4636', '-106.4636', '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 (108113, '2022-08-12', 1602, 102013, 6279, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108114, '2022-08-12', 2948, 102014, 6279, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108115, '2022-08-12', 1912, 102015, 6279, NULL, '1.0000', '0.6868', '0.6868', '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 (108116, '2022-08-12', 1602, 102016, 6279, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108117, '2022-08-12', 1837, 102017, 6279, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108118, '2022-08-12', 2379, 102018, 6279, NULL, '1.0000', '-14.1447', '-14.1447', '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 (108119, '2022-08-12', 2315, 102019, 6279, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108120, '2022-08-12', 1810, 102020, 6279, NULL, '1.0000', '32.9337', '32.9337', '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 (108121, '2022-08-12', 2068, 102021, 6279, NULL, '1.0000', '14.6943', '14.6943', '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 (108122, '2022-08-12', 9750, 102022, 6279, NULL, '1.0000', '2.7458', '2.7458', '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 (108123, '2022-08-12', 9734, 102023, 6279, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '56.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108124, '2022-08-12', 1863, 102024, 6279, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108125, '2022-08-12', 1751, 102025, 6279, NULL, '1.0000', '5.6063', '5.6063', '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 (108126, '2022-08-12', 1837, 102026, 6279, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108127, '2022-08-12', 1904, 102027, 6279, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108128, '2022-08-12', 1787, 102028, 6279, NULL, '1.0000', '0.5000', '0.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 (108129, '2022-08-12', 9683, 102029, 6279, 60556, '1.0000', '0.8886', '0.8886', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108130, '2022-08-12', 2271, 102030, 6279, NULL, '1.0000', '12.0000', '12.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 (108131, '2022-08-12', 1904, 102031, 6279, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108132, '2022-08-12', 1407, 102032, 6279, 54556, '1.0000', '19.0167', '19.0167', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108133, '2022-08-12', 9750, 102033, 6279, NULL, '1.0000', '2.7458', '2.7458', '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 (108134, '2022-08-12', 7944, 102034, 6279, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108135, '2022-08-12', 2682, 102035, 6279, 59600, '1.0000', '15.1600', '15.1600', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108136, '2022-08-12', 2315, 102036, 6279, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108137, '2022-08-12', 7926, 102037, 6279, 60315, '1.0000', '4.2867', '4.2867', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108138, '2022-08-12', 7398, 102038, 6279, NULL, '2.0000', '143.5000', '143.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 (108139, '2022-08-12', 1812, 102039, 6279, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108140, '2022-08-12', 2068, 102040, 6279, NULL, '1.0000', '14.6943', '14.6943', '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 (108141, '2022-08-12', 9089, 102041, 6279, 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 (108142, '2022-08-12', 2233, 102042, 6279, 60278, '1.0000', '25.7222', '25.7222', '39.0000', '39.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108143, '2022-08-12', 9740, 102043, 6279, 55951, '3.0000', '0.6685', '0.6685', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108144, '2022-08-12', 1809, 102044, 6279, 54950, '1.0000', '10.1539', '10.1539', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108145, '2022-08-12', 9891, 102045, 6279, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108146, '2022-08-12', 2921, 102046, 6279, 58244, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108147, '2022-08-12', 9741, 102047, 6279, NULL, '1.0000', '7.8500', '7.8500', '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 (108148, '2022-08-12', 2730, 102048, 6279, 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 (108149, '2022-08-12', 2277, 102049, 6280, 56888, '2.0000', '0.4266', '0.4266', '1.5000', '1.5000', '113.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108150, '2022-08-12', 1905, 102050, 6280, 5509, '1.0000', '0.4000', '0.4000', '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 (108151, '2022-08-12', 2441, 102051, 6280, 60529, '1.0000', '6.6400', '6.6400', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108152, '2022-08-12', 2169, 102052, 6280, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108153, '2022-08-12', 2416, 102053, 6281, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108154, '2022-08-12', 1637, 102054, 6281, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108155, '2022-08-12', 1772, 102055, 6281, 60328, '2.0000', '5.9694', '5.9694', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108156, '2022-08-12', 7524, 102056, 6281, NULL, '2.0000', '11.9500', '11.9500', '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 (108157, '2022-08-12', 1812, 102057, 6281, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108158, '2022-08-12', 1670, 102058, 6281, NULL, '1.0000', '-32.2503', '-32.2503', '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 (108159, '2022-08-12', 7926, 102059, 6281, 60315, '1.0000', '4.2867', '4.2867', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108160, '2022-08-12', 8773, 102060, 6281, 60542, '1.0000', '3.8300', '3.8300', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108161, '2022-08-12', 2253, 102061, 6282, 57678, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108162, '2022-08-12', 7531, 102062, 6283, NULL, '1.0000', '3.1900', '3.1900', '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 (108163, '2022-08-12', 8979, 102063, 6283, NULL, '6.0000', '1.0000', '1.0000', '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 (108164, '2022-08-12', 9988, 102064, 6283, 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 (108165, '2022-08-12', 7411, 102065, 6283, NULL, '1.0000', '1.3500', '1.3500', '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 (108166, '2022-08-12', 2295, 102066, 6283, 2954, '-66.0000', '0.9600', '0.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 (108167, '2022-08-12', 2295, 102066, 6283, NULL, '69.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108168, '2022-08-12', 8167, 102067, 6283, NULL, '1.0000', '16.2000', '16.2000', '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 (108169, '2022-08-12', 2154, 102068, 6283, 13520, '-2.0000', '10.6849', '10.6849', '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 (108170, '2022-08-12', 2154, 102068, 6283, NULL, '3.0000', '10.6849', '10.6849', '17.5000', '17.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 (108171, '2022-08-12', 7899, 102069, 6283, NULL, '1.0000', '3.3000', '3.3000', '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 (108172, '2022-08-12', 7473, 102070, 6283, NULL, '6.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (108173, '2022-08-12', 7645, 102071, 6283, NULL, '1.0000', '23.7800', '23.7800', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108174, '2022-08-12', 7514, 102072, 6283, NULL, '1.0000', '2.2500', '2.2500', '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 (108175, '2022-08-12', 1340, 102073, 6283, 13005, '-17.0000', '2.7025', '2.7025', '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 (108176, '2022-08-12', 1340, 102073, 6283, NULL, '18.0000', '2.7025', '2.7025', '5.0000', '5.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 (108177, '2022-08-12', 8063, 102074, 6283, NULL, '1.0000', '1.6000', '1.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 (108178, '2022-08-12', 2906, 102075, 6283, 18651, '-26.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 (108179, '2022-08-12', 2906, 102075, 6283, NULL, '28.0000', '2.6000', '2.6000', '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 (108180, '2022-08-12', 7661, 102076, 6283, NULL, '1.0000', '7.2000', '7.2000', '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 (108181, '2022-08-12', 1339, 102077, 6283, 13004, '-24.0000', '1.6012', '1.6012', '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 (108182, '2022-08-12', 1339, 102077, 6283, NULL, '25.0000', '1.6012', '1.6012', '3.0000', '3.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 (108183, '2022-08-12', 1329, 102078, 6283, 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 (108184, '2022-08-12', 9456, 102079, 6283, NULL, '1.0000', '3.3200', '3.3200', '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 (108185, '2022-08-12', 9092, 102080, 6283, NULL, '2.0000', '5.2900', '5.2900', '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 (108186, '2022-08-12', 7744, 102081, 6283, 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 (108187, '2022-08-12', 9417, 102082, 6283, NULL, '1.0000', '4.0000', '4.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 (108188, '2022-08-12', 7820, 102083, 6283, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108189, '2022-08-12', 7756, 102084, 6283, NULL, '1.0000', '2.5000', '2.5000', '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 (108190, '2022-08-12', 8445, 102085, 6283, NULL, '3.0000', '35.0000', '35.0000', '46.0000', '46.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 (108191, '2022-08-12', 7588, 102086, 6283, NULL, '5.0000', '6.9000', '6.9000', '11.0000', '11.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 (108192, '2022-08-12', 7611, 102087, 6283, NULL, '4.0000', '4.4000', '4.4000', '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 (108193, '2022-08-12', 8061, 102088, 6283, 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 (108194, '2022-08-12', 8924, 102089, 6283, NULL, '3.0000', '4.5000', '4.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 (108195, '2022-08-12', 7860, 102090, 6283, NULL, '1.0000', '20.3700', '20.3700', '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 (108196, '2022-08-12', 9943, 102091, 6283, NULL, '1.0000', '10.5500', '10.5500', '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 (108197, '2022-08-12', 7741, 102092, 6283, NULL, '2.0000', '1.2000', '1.2000', '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 (108198, '2022-08-12', 8548, 102093, 6283, NULL, '1.0000', '12.0000', '12.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 (108199, '2022-08-12', 7900, 102094, 6283, 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 (108200, '2022-08-12', 7952, 102095, 6284, 59404, '6.0000', '6.8635', '6.8635', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108201, '2022-08-12', 7518, 102096, 6284, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108202, '2022-08-12', 7865, 102097, 6284, 57391, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108203, '2022-08-12', 7765, 102098, 6284, NULL, '2.0000', '16.0000', '16.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 (108204, '2022-08-12', 8254, 102099, 6284, 60138, '1.0000', '28.0373', '28.0373', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108205, '2022-08-12', 9272, 102100, 6284, NULL, '1.0000', '3.1000', '3.1000', '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 (108206, '2022-08-12', 9463, 102101, 6284, 56606, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108207, '2022-08-12', 1501, 102102, 6284, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108208, '2022-08-12', 7712, 102103, 6284, NULL, '1.0000', '-322.7015', '-322.7015', '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 (108209, '2022-08-12', 2699, 102104, 6284, NULL, '1.0000', '3.0000', '3.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 (108210, '2022-08-12', 8948, 102105, 6284, NULL, '1.0000', '4.6000', '4.6000', '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 (108211, '2022-08-12', 7938, 102106, 6284, 57178, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108212, '2022-08-12', 7514, 102107, 6284, 60457, '1.0000', '223354.7898', '223354.7898', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108213, '2022-08-12', 7671, 102108, 6284, NULL, '2.0000', '861.3000', '861.3000', '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 (108214, '2022-08-12', 8068, 102109, 6284, 59166, '1.0000', '7.9956', '7.9956', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108215, '2022-08-12', 7946, 102110, 6284, 48254, '1.0000', '-3.9133', '-3.9133', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108216, '2022-08-12', 7419, 102111, 6284, 53504, '1.0000', '25.9000', '25.9000', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108217, '2022-08-12', 9988, 102112, 6284, 60407, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108218, '2022-08-12', 9092, 102113, 6284, 60618, '4.0000', '0.3187', '0.3187', '0.5000', '0.5000', '142.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108219, '2022-08-12', 9724, 102114, 6284, 60103, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108220, '2022-08-12', 9272, 102115, 6284, NULL, '1.0000', '3.1000', '3.1000', '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 (108221, '2022-08-12', 7354, 102116, 6284, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108222, '2022-08-12', 8849, 102117, 6284, NULL, '1.0000', '1.0700', '1.0700', '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 (108223, '2022-08-12', 7980, 102118, 6284, NULL, '5.0000', '1584.1429', '1584.1429', '0.8000', '0.8000', '-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 (108224, '2022-08-12', 7518, 102119, 6284, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108225, '2022-08-12', 8359, 102120, 6284, 59371, '1.0000', '246.8018', '246.8018', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108226, '2022-08-12', 7954, 102121, 6284, NULL, '4.0000', '7039.4904', '7039.4904', '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 (108227, '2022-08-12', 9736, 102122, 6284, 60487, '1.0000', '4.4637', '4.4637', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108228, '2022-08-12', 7411, 102123, 6284, 60389, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108229, '2022-08-12', 1501, 102124, 6284, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108230, '2022-08-12', 7709, 102125, 6284, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (108231, '2022-08-12', 9865, 102126, 6284, 52461, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '10.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108232, '2022-08-12', 8444, 102127, 6284, 55973, '1.0000', '-37.8763', '-37.8763', '3.0000', '3.0000', '88.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108233, '2022-08-12', 2315, 102128, 6284, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108234, '2022-08-12', 8677, 102129, 6284, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108235, '2022-08-12', 7382, 102130, 6284, 60592, '1.0000', '9.0632', '9.0632', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108236, '2022-08-12', 7674, 102131, 6284, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108237, '2022-08-12', 7590, 102132, 6285, NULL, '1.0000', '6.0509', '6.0509', '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 (108238, '2022-08-12', 8154, 102133, 6285, NULL, '1.0000', '12.3000', '12.3000', '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 (108239, '2022-08-12', 7675, 102134, 6285, NULL, '1.0000', '-21.9809', '-21.9809', '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 (108240, '2022-08-12', 9736, 102135, 6285, 60487, '1.0000', '4.4637', '4.4637', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108241, '2022-08-12', 7864, 102136, 6285, 60484, '2.0000', '21.2816', '21.2816', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108242, '2022-08-12', 8167, 102137, 6285, 60495, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108243, '2022-08-12', 7494, 102138, 6285, 45797, '1.0000', '51.0000', '51.0000', '67.0000', '67.0000', '2.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108244, '2022-08-12', 7825, 102139, 6285, NULL, '1.0000', '-7.5140', '-7.5140', '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 (108245, '2022-08-12', 8328, 102140, 6285, NULL, '1.0000', '11.2886', '11.2886', '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 (108246, '2022-08-12', 8085, 102141, 6285, 49815, '3.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108247, '2022-08-12', 9399, 102142, 6285, NULL, '1.0000', '0.9803', '0.9803', '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 (108248, '2022-08-12', 7641, 102143, 6285, 60128, '2.0000', '7.0908', '7.0908', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108249, '2022-08-12', 9893, 102144, 6285, 54306, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108250, '2022-08-12', 7641, 102145, 6285, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108251, '2022-08-12', 9151, 102146, 6285, 57175, '1.0000', '10.5845', '10.5845', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108252, '2022-08-12', 9271, 102147, 6285, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108253, '2022-08-12', 8979, 102148, 6285, 60567, '1.0000', '0.8800', '0.8800', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108254, '2022-08-12', 7411, 102149, 6286, NULL, '2.0000', '1.2819', '1.2819', '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 (108255, '2022-08-12', 9824, 102150, 6286, NULL, '2.0000', '1.3000', '1.3000', '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 (108256, '2022-08-12', 7944, 102151, 6286, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108257, '2022-08-12', 2156, 102152, 6286, 55716, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108258, '2022-08-12', 7491, 102153, 6286, NULL, '1.0000', '4.8000', '4.8000', '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 (108259, '2022-08-12', 9151, 102154, 6286, 58249, '1.0000', '9.7000', '9.7000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108260, '2022-08-12', 7483, 102155, 6286, NULL, '1.0000', '0.4200', '0.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 (108261, '2022-08-12', 1435, 102156, 6286, 59862, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108262, '2022-08-12', 1787, 102157, 6286, NULL, '1.0000', '0.5000', '0.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 (108263, '2022-08-12', 2079, 102158, 6286, 55542, '1.0000', '1.8809', '1.8809', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108264, '2022-08-12', 8740, 102159, 6286, 56875, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108265, '2022-08-12', 1525, 102160, 6286, 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 (108266, '2022-08-12', 2251, 102161, 6286, 59852, '1.0000', '14.9029', '14.9029', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108267, '2022-08-12', 9468, 102162, 6286, NULL, '1.0000', '22.0000', '22.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 (108268, '2022-08-12', 9472, 102163, 6286, 60548, '2.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108269, '2022-08-12', 1663, 102164, 6286, 60296, '1.0000', '125.5500', '125.5500', '143.0000', '143.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108270, '2022-08-12', 2167, 102165, 6286, NULL, '1.0000', '0.6663', '0.6663', '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 (108271, '2022-08-12', 1841, 102166, 6286, NULL, '2.0000', '0.7630', '0.7630', '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 (108272, '2022-08-12', 7591, 102167, 6286, NULL, '1.0000', '2.7500', '2.7500', '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 (108273, '2022-08-12', 2380, 102168, 6286, 55679, '2.0000', '47.0967', '47.0967', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108274, '2022-08-12', 2680, 102169, 6286, 57725, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108275, '2022-08-12', 2255, 102170, 6286, 60351, '1.0000', '22.3954', '22.3954', '32.5000', '32.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108276, '2022-08-12', 8362, 102171, 6286, NULL, '2.0000', '4.1000', '4.1000', '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 (108277, '2022-08-12', 1761, 102172, 6286, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108278, '2022-08-12', 1690, 102173, 6286, 60355, '1.0000', '8.6455', '8.6455', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108279, '2022-08-12', 9729, 102174, 6286, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108280, '2022-08-12', 2293, 102175, 6286, NULL, '3.0000', '-17.4320', '-17.4320', '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 (108281, '2022-08-12', 2289, 102176, 6286, NULL, '3.0000', '0.3611', '0.3611', '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 (108282, '2022-08-12', 2295, 102177, 6286, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108283, '2022-08-12', 8208, 102178, 6286, NULL, '1.0000', '47.9541', '47.9541', '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 (108284, '2022-08-12', 1545, 102179, 6286, 55529, '1.0000', '6.7700', '6.7700', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108285, '2022-08-12', 1704, 102180, 6286, NULL, '1.0000', '27.2300', '27.2300', '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 (108286, '2022-08-12', 7514, 102181, 6286, NULL, '2.0000', '2.2500', '2.2500', '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 (108287, '2022-08-12', 9692, 102182, 6286, 49343, '3.0000', '5.3000', '5.3000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108288, '2022-08-12', 1712, 102183, 6286, 56463, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108289, '2022-08-12', 9482, 102184, 6286, 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 (108290, '2022-08-12', 2361, 102185, 6286, 42543, '1.0000', '0.4744', '0.4744', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108291, '2022-08-12', 2315, 102186, 6286, 59595, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108292, '2022-08-12', 2376, 102187, 6286, 48940, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108293, '2022-08-12', 1637, 102188, 6286, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108294, '2022-08-12', 1544, 102189, 6286, NULL, '1.0000', '18.0200', '18.0200', '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 (108295, '2022-08-12', 1904, 102190, 6286, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108296, '2022-08-12', 2270, 102191, 6286, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108297, '2022-08-12', 8085, 102192, 6286, NULL, '1.0000', '14.0000', '14.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 (108298, '2022-08-12', 2108, 102193, 6286, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108299, '2022-08-12', 2169, 102194, 6286, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108300, '2022-08-12', 7743, 102195, 6286, NULL, '1.0000', '7.3900', '7.3900', '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 (108301, '2022-08-12', 2284, 102196, 6286, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108302, '2022-08-12', 2315, 102197, 6286, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108303, '2022-08-12', 9729, 102198, 6286, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108304, '2022-08-12', 9750, 102199, 6286, NULL, '1.0000', '2.7458', '2.7458', '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 (108305, '2022-08-12', 7743, 102200, 6286, NULL, '1.0000', '7.3900', '7.3900', '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 (108306, '2022-08-12', 3059, 102201, 6286, 59839, '3.0000', '1.1792', '1.1792', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108307, '2022-08-12', 7819, 102202, 6286, NULL, '1.0000', '10.0999', '10.0999', '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 (108308, '2022-08-12', 2655, 102203, 6286, NULL, '2.0000', '-28.0213', '-28.0213', '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 (108309, '2022-08-12', 9740, 102204, 6286, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108310, '2022-08-12', 2491, 102205, 6286, 58257, '1.0000', '-73.4000', '-73.4000', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108311, '2022-08-12', 2320, 102206, 6286, 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 (108312, '2022-08-12', 1529, 102207, 6286, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108313, '2022-08-12', 9729, 102208, 6286, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108314, '2022-08-12', 9819, 102209, 6286, 55560, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108315, '2022-08-12', 2295, 102210, 6286, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108316, '2022-08-12', 9902, 102211, 6286, 59883, '1.0000', '7.9671', '7.9671', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108317, '2022-08-12', 2567, 102212, 6286, 60535, '1.0000', '36.2555', '36.2555', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108318, '2022-08-12', 9845, 102213, 6286, 58251, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108319, '2022-08-12', 7411, 102214, 6286, NULL, '1.0000', '1.2819', '1.2819', '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 (108320, '2022-08-12', 1499, 102215, 6286, 50243, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '13.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108321, '2022-08-12', 7707, 102216, 6286, NULL, '1.0000', '7.0000', '7.0000', '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 (108322, '2022-08-12', 9729, 102217, 6286, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108323, '2022-08-12', 2893, 102218, 6286, 60362, '1.0000', '9.1280', '9.1280', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108324, '2022-08-12', 2167, 102219, 6286, NULL, '1.0000', '0.6663', '0.6663', '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 (108325, '2022-08-12', 7514, 102220, 6286, NULL, '1.0000', '2.2500', '2.2500', '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 (108326, '2022-08-12', 1857, 102221, 6286, 60222, '1.0000', '73.1000', '73.1000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108327, '2022-08-12', 7641, 102222, 6286, NULL, '1.0000', '1.9000', '1.9000', '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 (108328, '2022-08-12', 8451, 102223, 6286, NULL, '1.0000', '8.5000', '8.5000', '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 (108329, '2022-08-12', 2269, 102224, 6286, NULL, '1.0000', '4.2967', '4.2967', '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 (108330, '2022-08-12', 2361, 102225, 6286, 42543, '2.0000', '0.4744', '0.4744', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108331, '2022-08-12', 2320, 102226, 6286, 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 (108332, '2022-08-12', 2315, 102227, 6286, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108333, '2022-08-12', 8526, 102228, 6286, NULL, '2.0000', '52.9900', '52.9900', '26.5000', '26.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 (108334, '2022-08-12', 1695, 102229, 6286, 59605, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108335, '2022-08-12', 8773, 102230, 6287, NULL, '1.0000', '-92.4961', '-92.4961', '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 (108336, '2022-08-12', 1807, 102231, 6287, 58783, '1.0000', '-3.9727', '-3.9727', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108337, '2022-08-12', 9750, 102232, 6287, 46052, '1.0000', '3.3000', '3.3000', '6.0000', '6.0000', '29.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108338, '2022-08-12', 2036, 102233, 6287, 60508, '3.0000', '9.7596', '9.7596', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108339, '2022-08-12', 8498, 102234, 6287, 59973, '1.0000', '3.6031', '3.6031', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108340, '2022-08-12', 1328, 102235, 6287, 55767, '2.0000', '3.9079', '3.9079', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108341, '2022-08-12', 7684, 102236, 6287, NULL, '1.0000', '9.0000', '9.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 (108342, '2022-08-12', 1856, 102237, 6287, 57957, '1.0000', '5.1154', '5.1154', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108343, '2022-08-12', 8359, 102238, 6287, 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 (108344, '2022-08-12', 7459, 102239, 6287, NULL, '4.0000', '4.5753', '4.5753', '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 (108345, '2022-08-12', 1871, 102240, 6287, 59999, '6.0000', '4.6908', '4.6908', '3.7000', '3.7000', '51.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108346, '2022-08-12', 8490, 102241, 6287, 58829, '1.0000', '27.3000', '27.3000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108347, '2022-08-12', 7318, 102242, 6287, 58756, '1.0000', '11.1169', '11.1169', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108348, '2022-08-12', 2273, 102243, 6287, 58816, '1.0000', '3.0283', '3.0283', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108349, '2022-08-12', 7412, 102244, 6287, NULL, '1.0000', '1.5200', '1.5200', '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 (108350, '2022-08-12', 2511, 102245, 6287, 60055, '1.0000', '10.0175', '10.0175', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108351, '2022-08-12', 1772, 102246, 6287, 60016, '1.0000', '6.0114', '6.0114', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108352, '2022-08-12', 7459, 102247, 6287, NULL, '10.0000', '4.5753', '4.5753', '4.0000', '4.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 (108353, '2022-08-12', 2262, 102248, 6287, 55469, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108354, '2022-08-12', 2273, 102249, 6287, 58816, '1.0000', '3.0283', '3.0283', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108355, '2022-08-12', 1715, 102250, 6287, 60012, '1.0000', '7.4167', '7.4167', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108356, '2022-08-12', 2260, 102251, 6287, 57992, '3.0000', '4.6659', '4.6659', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108357, '2022-08-12', 2315, 102252, 6287, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108358, '2022-08-12', 2085, 102253, 6287, 59966, '4.0000', '6.0814', '6.0814', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108359, '2022-08-12', 2237, 102254, 6287, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108360, '2022-08-12', 1302, 102255, 6287, 46755, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108361, '2022-08-12', 1667, 102256, 6287, 57996, '1.0000', '19.5846', '19.5846', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108362, '2022-08-12', 2169, 102257, 6287, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108363, '2022-08-12', 1383, 102258, 6287, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108364, '2022-08-12', 2237, 102259, 6287, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108365, '2022-08-12', 9634, 102260, 6287, NULL, '2.0000', '4.8000', '4.8000', '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 (108366, '2022-08-13', 2379, 102261, 6288, NULL, '1.0000', '-14.1447', '-14.1447', '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 (108367, '2022-08-13', 8207, 102262, 6288, NULL, '1.0000', '0.0000', '0.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 (108368, '2022-08-13', 7429, 102263, 6288, NULL, '1.0000', '18.0000', '18.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 (108369, '2022-08-13', 1665, 102264, 6288, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108370, '2022-08-13', 9783, 102265, 6288, 60304, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108371, '2022-08-13', 2416, 102266, 6288, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108372, '2022-08-13', 1855, 102267, 6288, NULL, '1.0000', '1.4615', '1.4615', '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 (108373, '2022-08-13', 1666, 102268, 6288, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108374, '2022-08-13', 2649, 102269, 6288, 60247, '1.0000', '99.3000', '99.3000', '131.0000', '131.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108375, '2022-08-13', 2315, 102270, 6288, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108376, '2022-08-13', 9891, 102271, 6288, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '16.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108377, '2022-08-13', 1912, 102272, 6288, NULL, '1.0000', '0.6868', '0.6868', '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 (108378, '2022-08-13', 9724, 102273, 6288, 57719, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108379, '2022-08-13', 1528, 102274, 6288, NULL, '1.0000', '900.1354', '900.1354', '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 (108380, '2022-08-13', 2289, 102275, 6288, NULL, '2.0000', '0.3611', '0.3611', '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 (108381, '2022-08-13', 1840, 102276, 6288, NULL, '2.0000', '0.2400', '0.2400', '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 (108382, '2022-08-13', 2352, 102277, 6288, NULL, '10.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (108383, '2022-08-13', 2454, 102278, 6288, 58265, '1.0000', '9.1032', '9.1032', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108384, '2022-08-13', 2643, 102279, 6288, 60559, '2.0000', '1.0506', '1.0506', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108385, '2022-08-13', 9747, 102280, 6288, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108386, '2022-08-13', 8661, 102281, 6288, 60253, '1.0000', '5.6000', '5.6000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108387, '2022-08-13', 3058, 102282, 6288, NULL, '1.0000', '-47.3000', '-47.3000', '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 (108388, '2022-08-13', 1946, 102283, 6288, NULL, '1.0000', '-6.7231', '-6.7231', '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 (108389, '2022-08-13', 8661, 102284, 6288, 60253, '1.0000', '5.6000', '5.6000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108390, '2022-08-13', 1554, 102285, 6288, 60284, '1.0000', '3.0916', '3.0916', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108391, '2022-08-13', 1647, 102286, 6288, NULL, '1.0000', '-8.0033', '-8.0033', '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 (108392, '2022-08-13', 1700, 102287, 6288, NULL, '1.0000', '1.0000', '1.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 (108393, '2022-08-13', 2413, 102288, 6288, NULL, '3.0000', '1.0500', '1.0500', '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 (108394, '2022-08-13', 2132, 102289, 6288, 57091, '1.0000', '28.5000', '28.5000', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108395, '2022-08-13', 8054, 102290, 6288, NULL, '1.0000', '16.0000', '16.0000', '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 (108396, '2022-08-13', 7671, 102291, 6288, 51511, '1.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108397, '2022-08-13', 1760, 102292, 6288, 58185, '2.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108398, '2022-08-13', 9734, 102293, 6288, 60360, '1.0000', '0.4261', '0.4261', '0.7000', '0.7000', '55.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108399, '2022-08-13', 2089, 102294, 6288, 53952, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108400, '2022-08-13', 2242, 102295, 6289, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108401, '2022-08-13', 2085, 102296, 6290, 8628, '-28.0000', '-1.0741', '-1.0741', '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 (108402, '2022-08-13', 2085, 102296, 6290, NULL, '38.0000', '-1.0741', '-1.0741', '2.5000', '2.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108403, '2022-08-13', 2440, 102297, 6290, 5309, '-6.0000', '5.3000', '5.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 (108404, '2022-08-13', 2440, 102297, 6290, NULL, '7.0000', '5.3000', '5.3000', '12.0000', '12.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 (108405, '2022-08-13', 1936, 102298, 6290, 5587, '-2.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 (108406, '2022-08-13', 1936, 102298, 6290, NULL, '3.0000', '90.0000', '90.0000', '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 (108407, '2022-08-13', 2129, 102299, 6290, NULL, '1.0000', '6.4100', '6.4100', '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 (108408, '2022-08-13', 2916, 102300, 6290, NULL, '2.0000', '15.0000', '15.0000', '22.5000', '22.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 (108409, '2022-08-13', 2169, 102301, 6290, 10737, '-203.0000', '3.8397', '3.8397', '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 (108410, '2022-08-13', 2169, 102301, 6290, NULL, '204.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-204.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108411, '2022-08-13', 7954, 102302, 6290, 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 (108412, '2022-08-13', 1700, 102303, 6290, 6227, '-7.0000', '8.0000', '8.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 (108413, '2022-08-13', 1700, 102303, 6290, NULL, '8.0000', '8.0000', '8.0000', '15.0000', '15.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 (108414, '2022-08-13', 9729, 102304, 6290, NULL, '1.0000', '0.6200', '0.6200', '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 (108415, '2022-08-13', 2416, 102305, 6290, 4745, '-47.0000', '1.2000', '1.2000', '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 (108416, '2022-08-13', 2416, 102305, 6290, NULL, '48.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108417, '2022-08-13', 2169, 102306, 6290, 10737, '-203.0000', '3.8397', '3.8397', '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 (108418, '2022-08-13', 2169, 102306, 6290, NULL, '204.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-204.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108419, '2022-08-13', 1696, 102307, 6290, 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 (108420, '2022-08-13', 1529, 102308, 6290, NULL, '1.0000', '3.5500', '3.5500', '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 (108421, '2022-08-13', 7411, 102309, 6290, NULL, '1.0000', '1.3500', '1.3500', '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 (108422, '2022-08-13', 9915, 102310, 6290, 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 (108423, '2022-08-13', 2371, 102311, 6290, 22289, '1.0000', '12.0000', '12.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 (108424, '2022-08-13', 9747, 102312, 6290, NULL, '3.0000', '0.6500', '0.6500', '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 (108425, '2022-08-13', 2823, 102313, 6290, 19684, '-21.0000', '11.2100', '11.2100', '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 (108426, '2022-08-13', 2823, 102313, 6290, NULL, '22.0000', '11.2100', '11.2100', '10.0000', '10.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108427, '2022-08-13', 2916, 102314, 6290, NULL, '1.0000', '15.0000', '15.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 (108428, '2022-08-13', 1888, 102315, 6290, 14663, '-13.0000', '134.8400', '134.8400', '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 (108429, '2022-08-13', 1888, 102315, 6290, NULL, '14.0000', '134.8400', '134.8400', '26.5000', '26.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 (108430, '2022-08-13', 1533, 102316, 6290, 10381, '-35.0000', '2.5917', '2.5917', '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 (108431, '2022-08-13', 1533, 102316, 6290, NULL, '36.0000', '2.5917', '2.5917', '6.5000', '6.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 (108432, '2022-08-13', 2618, 102317, 6290, 9836, '-29.0000', '4.1000', '4.1000', '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 (108433, '2022-08-13', 2618, 102317, 6290, NULL, '31.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-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 (108434, '2022-08-13', 2740, 102318, 6290, 14259, '-4.0000', '9.0000', '9.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 (108435, '2022-08-13', 2740, 102318, 6290, NULL, '5.0000', '9.0000', '9.0000', '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 (108436, '2022-08-13', 8677, 102319, 6290, NULL, '2.0000', '1.2800', '1.2800', '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 (108437, '2022-08-13', 2858, 102320, 6290, 17772, '-117.0000', '1.0000', '1.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 (108438, '2022-08-13', 2858, 102320, 6290, NULL, '118.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-118.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108439, '2022-08-13', 8744, 102321, 6290, NULL, '1.0000', '3.6600', '3.6600', '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 (108440, '2022-08-13', 2285, 102322, 6290, 2945, '-55.0000', '35.8000', '35.8000', '65.5000', '65.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 (108441, '2022-08-13', 2285, 102322, 6290, NULL, '56.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108442, '2022-08-13', 1695, 102323, 6290, 12925, '-16.0000', '15.5000', '15.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 (108443, '2022-08-13', 1695, 102323, 6290, NULL, '17.0000', '15.5000', '15.5000', '26.0000', '26.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 (108444, '2022-08-13', 9512, 102324, 6290, 33797, '2.0000', '1.3100', '1.3100', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108445, '2022-08-13', 9729, 102325, 6290, NULL, '1.0000', '0.6200', '0.6200', '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 (108446, '2022-08-13', 2604, 102326, 6290, 14491, '-13.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108447, '2022-08-13', 2604, 102326, 6290, NULL, '15.0000', '90.0000', '90.0000', '110.0000', '110.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 (108448, '2022-08-13', 1658, 102327, 6290, 3229, '-6.0000', '27.9300', '27.9300', '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 (108449, '2022-08-13', 1658, 102327, 6290, NULL, '7.0000', '27.9300', '27.9300', '36.0000', '36.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 (108450, '2022-08-13', 2178, 102328, 6290, 7862, '-2.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 (108451, '2022-08-13', 2178, 102328, 6290, NULL, '3.0000', '7.5000', '7.5000', '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 (108452, '2022-08-13', 2315, 102329, 6291, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108453, '2022-08-13', 8032, 102330, 6291, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108454, '2022-08-13', 9958, 102331, 6291, 57653, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108455, '2022-08-13', 7335, 102332, 6291, 60579, '1.0000', '84.6601', '84.6601', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108456, '2022-08-13', 9160, 102333, 6291, NULL, '1.0000', '1.3097', '1.3097', '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 (108457, '2022-08-13', 9956, 102334, 6291, 57651, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108458, '2022-08-13', 7315, 102335, 6291, 59191, '1.0000', '13.3694', '13.3694', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108459, '2022-08-13', 7774, 102336, 6291, 57184, '2.0000', '8.6851', '8.6851', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108460, '2022-08-13', 7745, 102337, 6291, 59357, '1.0000', '7.4585', '7.4585', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108461, '2022-08-13', 9290, 102338, 6291, NULL, '1.0000', '15.2700', '15.2700', '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 (108462, '2022-08-13', 7859, 102339, 6291, 60155, '1.0000', '13.9418', '13.9418', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108463, '2022-08-13', 7674, 102340, 6291, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108464, '2022-08-13', 8097, 102341, 6291, 60444, '2.0000', '1.6940', '1.6940', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108465, '2022-08-13', 8677, 102342, 6291, 56676, '2.0000', '1.9860', '1.9860', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108466, '2022-08-13', 7672, 102343, 6291, 59078, '2.0000', '4.1633', '4.1633', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108467, '2022-08-13', 2102, 102344, 6291, 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 (108468, '2022-08-13', 2100, 102345, 6291, 60117, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108469, '2022-08-13', 7611, 102346, 6291, 60104, '1.0000', '14.8304', '14.8304', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108470, '2022-08-13', 2656, 102347, 6291, NULL, '1.0000', '1.7540', '1.7540', '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 (108471, '2022-08-13', 9887, 102348, 6291, 54150, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108472, '2022-08-13', 7382, 102349, 6291, 60592, '1.0000', '9.0632', '9.0632', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108473, '2022-08-13', 7612, 102350, 6291, NULL, '1.0000', '2.3846', '2.3846', '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 (108474, '2022-08-13', 8243, 102351, 6291, NULL, '2.0000', '1.1400', '1.1400', '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 (108475, '2022-08-13', 2506, 102352, 6291, 60417, '1.0000', '4.6846', '4.6846', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108476, '2022-08-13', 8164, 102353, 6291, 60454, '1.0000', '26.6200', '26.6200', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108477, '2022-08-13', 7658, 102354, 6291, 56019, '10.0000', '188.9318', '188.9318', '3.5000', '3.5000', '60.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108478, '2022-08-13', 9988, 102355, 6291, 60407, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108479, '2022-08-13', 8925, 102356, 6291, 59122, '1.0000', '3.5315', '3.5315', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108480, '2022-08-13', 8842, 102357, 6291, 30216, '1.0000', '13.6700', '13.6700', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108481, '2022-08-13', 1856, 102358, 6291, 60582, '2.0000', '1.4621', '1.4621', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108482, '2022-08-13', 7778, 102359, 6291, NULL, '1.0000', '33.6270', '33.6270', '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 (108483, '2022-08-13', 7591, 102360, 6291, 60600, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108484, '2022-08-13', 8207, 102361, 6291, NULL, '1.0000', '0.0000', '0.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 (108485, '2022-08-13', 9834, 102362, 6291, 59092, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108486, '2022-08-13', 2289, 102363, 6291, NULL, '4.0000', '2.5688', '2.5688', '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 (108487, '2022-08-13', 7711, 102364, 6291, 59381, '1.0000', '49.6000', '49.6000', '65.5000', '65.5000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108488, '2022-08-13', 9835, 102365, 6291, 57539, '1.0000', '24.0738', '24.0738', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108489, '2022-08-13', 8425, 102366, 6291, 52015, '1.0000', '8.8153', '8.8153', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108490, '2022-08-13', 7518, 102367, 6291, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108491, '2022-08-13', 7457, 102368, 6291, 60437, '1.0000', '4.9359', '4.9359', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108492, '2022-08-13', 7514, 102369, 6291, NULL, '2.0000', '223354.7898', '223354.7898', '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 (108493, '2022-08-13', 7765, 102370, 6291, NULL, '2.0000', '16.0000', '16.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 (108494, '2022-08-13', 7509, 102371, 6291, 60453, '1.0000', '8.8761', '8.8761', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108495, '2022-08-13', 9271, 102372, 6291, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108496, '2022-08-13', 9463, 102373, 6291, 56606, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108497, '2022-08-13', 8308, 102374, 6291, NULL, '1.0000', '22.3258', '22.3258', '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 (108498, '2022-08-13', 9092, 102375, 6291, 60618, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '140.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108499, '2022-08-13', 9985, 102376, 6291, NULL, '1.0000', '5.8000', '5.8000', '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 (108500, '2022-08-13', 1330, 102377, 6291, 60473, '1.0000', '304.4706', '304.4706', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108501, '2022-08-13', 8146, 102378, 6291, 59396, '1.0000', '9.2500', '9.2500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108502, '2022-08-13', 8712, 102379, 6291, NULL, '1.0000', '6.5750', '6.5750', '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 (108503, '2022-08-13', 7473, 102380, 6291, 60388, '5.0000', '0.5398', '0.5398', '0.7000', '0.7000', '69.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108504, '2022-08-13', 7457, 102381, 6291, 60437, '1.0000', '4.9359', '4.9359', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108505, '2022-08-13', 1916, 102382, 6291, 59384, '1.0000', '10.5472', '10.5472', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108506, '2022-08-13', 9762, 102383, 6291, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108507, '2022-08-13', 7367, 102384, 6291, 60456, '2.0000', '3.8000', '3.8000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108508, '2022-08-13', 7671, 102385, 6291, NULL, '1.0000', '861.3000', '861.3000', '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 (108509, '2022-08-13', 2656, 102386, 6291, NULL, '3.0000', '1.7540', '1.7540', '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 (108510, '2022-08-13', 9734, 102387, 6291, 60144, '2.0000', '0.3152', '0.3152', '0.7000', '0.7000', '73.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108511, '2022-08-13', 7860, 102388, 6291, 59168, '1.0000', '24.0624', '24.0624', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108512, '2022-08-13', 8463, 102389, 6291, NULL, '1.0000', '18.0000', '18.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 (108513, '2022-08-13', 7411, 102390, 6291, 60389, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108514, '2022-08-13', 8387, 102391, 6291, 54300, '1.0000', '49.5000', '49.5000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108515, '2022-08-13', 9953, 102392, 6291, 60498, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108516, '2022-08-13', 8476, 102393, 6292, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (108517, '2022-08-13', 2169, 102394, 6292, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108518, '2022-08-13', 9867, 102395, 6292, 60220, '10.0000', '10.2176', '10.2176', '12.5000', '12.5000', '20.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108519, '2022-08-13', 7556, 102396, 6292, 55601, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108520, '2022-08-13', 9695, 102397, 6292, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108521, '2022-08-13', 8744, 102398, 6292, 60543, '2.0000', '2.3138', '2.3138', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108522, '2022-08-13', 2643, 102399, 6292, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108523, '2022-08-13', 1810, 102400, 6292, NULL, '1.0000', '32.9337', '32.9337', '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 (108524, '2022-08-13', 7640, 102401, 6292, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108525, '2022-08-13', 9734, 102402, 6292, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '53.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108526, '2022-08-13', 7514, 102403, 6292, NULL, '1.0000', '2.2500', '2.2500', '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 (108527, '2022-08-13', 8813, 102404, 6292, 55544, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108528, '2022-08-13', 2289, 102405, 6292, NULL, '2.0000', '0.3611', '0.3611', '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 (108529, '2022-08-13', 9482, 102406, 6292, 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 (108530, '2022-08-13', 7411, 102407, 6292, NULL, '2.0000', '1.2819', '1.2819', '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 (108531, '2022-08-13', 9740, 102408, 6292, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108532, '2022-08-13', 1621, 102409, 6292, 60228, '1.0000', '17.1389', '17.1389', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108533, '2022-08-13', 2366, 102410, 6292, NULL, '1.0000', '-98.6017', '-98.6017', '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 (108534, '2022-08-13', 7564, 102411, 6292, 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 (108535, '2022-08-13', 2068, 102412, 6292, NULL, '1.0000', '14.6943', '14.6943', '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 (108536, '2022-08-13', 7514, 102413, 6292, NULL, '1.0000', '2.2500', '2.2500', '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 (108537, '2022-08-13', 8187, 102414, 6292, NULL, '5.0000', '14.3900', '14.3900', '1.5000', '1.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 (108538, '2022-08-13', 1337, 102415, 6292, 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 (108539, '2022-08-13', 2315, 102416, 6292, 59595, '4.0000', '0.7700', '0.7700', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108540, '2022-08-13', 9482, 102417, 6292, 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 (108541, '2022-08-13', 7641, 102418, 6292, NULL, '1.0000', '1.9000', '1.9000', '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 (108542, '2022-08-13', 1674, 102419, 6292, NULL, '1.0000', '0.8028', '0.8028', '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 (108543, '2022-08-13', 9798, 102420, 6292, NULL, '1.0000', '13.9000', '13.9000', '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 (108544, '2022-08-13', 9747, 102421, 6292, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108545, '2022-08-13', 9695, 102422, 6292, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108546, '2022-08-13', 2643, 102423, 6292, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108547, '2022-08-13', 7917, 102424, 6292, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108548, '2022-08-13', 9204, 102425, 6292, NULL, '1.0000', '14.1514', '14.1514', '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 (108549, '2022-08-13', 1383, 102426, 6292, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108550, '2022-08-13', 7744, 102427, 6292, NULL, '1.0000', '2.5833', '2.5833', '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 (108551, '2022-08-13', 2167, 102428, 6292, NULL, '1.0000', '0.6663', '0.6663', '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 (108552, '2022-08-13', 8745, 102429, 6292, 60544, '1.0000', '14.0066', '14.0066', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108553, '2022-08-13', 8933, 102430, 6292, NULL, '1.0000', '8.8300', '8.8300', '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 (108554, '2022-08-13', 1912, 102431, 6292, NULL, '1.0000', '0.6868', '0.6868', '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 (108555, '2022-08-13', 1428, 102432, 6292, 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 (108556, '2022-08-13', 2315, 102433, 6292, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108557, '2022-08-13', 2614, 102434, 6292, 60219, '2.0000', '17.1400', '17.1400', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108558, '2022-08-13', 2262, 102435, 6292, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108559, '2022-08-13', 1672, 102436, 6292, NULL, '16.0000', '4.1808', '4.1808', '5.5000', '5.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 (108560, '2022-08-13', 2163, 102437, 6292, NULL, '1.0000', '16.5835', '16.5835', '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 (108561, '2022-08-13', 1912, 102438, 6292, NULL, '1.0000', '0.6868', '0.6868', '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 (108562, '2022-08-13', 2327, 102439, 6292, 49257, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108563, '2022-08-13', 8207, 102440, 6292, NULL, '1.0000', '0.0000', '0.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 (108564, '2022-08-13', 2759, 102441, 6292, 54946, '2.0000', '4.0909', '4.0909', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108565, '2022-08-13', 2315, 102442, 6292, 59595, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108566, '2022-08-13', 9740, 102443, 6292, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108567, '2022-08-13', 7886, 102444, 6292, NULL, '1.0000', '14.5000', '14.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 (108568, '2022-08-13', 7944, 102445, 6292, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108569, '2022-08-13', 3058, 102446, 6292, NULL, '2.0000', '-47.3000', '-47.3000', '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 (108570, '2022-08-13', 1342, 102447, 6292, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108571, '2022-08-13', 7588, 102448, 6292, 39763, '1.0000', '7.0000', '7.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108572, '2022-08-13', 8177, 102449, 6292, NULL, '1.0000', '17.2448', '17.2448', '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 (108573, '2022-08-13', 8020, 102450, 6292, NULL, '1.0000', '51.6000', '51.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 (108574, '2022-08-13', 9979, 102451, 6292, NULL, '1.0000', '13.9000', '13.9000', '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 (108575, '2022-08-13', 7954, 102452, 6292, 57084, '1.0000', '2.4470', '2.4470', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108576, '2022-08-13', 1665, 102453, 6292, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108577, '2022-08-13', 7917, 102454, 6292, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (108578, '2022-08-13', 8615, 102455, 6292, NULL, '1.0000', '4.5000', '4.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 (108579, '2022-08-13', 1578, 102456, 6292, 59845, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108580, '2022-08-13', 1493, 102457, 6292, NULL, '1.0000', '-174.0400', '-174.0400', '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 (108581, '2022-08-13', 1487, 102458, 6292, 60343, '1.0000', '1350.3996', '1350.3996', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108582, '2022-08-13', 8690, 102459, 6293, 50462, '1.0000', '10.8000', '10.8000', '14.5000', '14.5000', '13.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108583, '2022-08-13', 9274, 102460, 6293, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '13.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108584, '2022-08-13', 9275, 102461, 6293, NULL, '1.0000', '6.3000', '6.3000', '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 (108585, '2022-08-13', 8085, 102462, 6293, 49815, '3.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108586, '2022-08-13', 8127, 102463, 6293, NULL, '1.0000', '24.5300', '24.5300', '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 (108587, '2022-08-13', 7814, 102464, 6293, NULL, '1.0000', '26.8335', '26.8335', '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 (108588, '2022-08-13', 7690, 102465, 6293, NULL, '1.0000', '17.7730', '17.7730', '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 (108589, '2022-08-13', 7411, 102466, 6293, 60389, '4.0000', '1.4000', '1.4000', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108590, '2022-08-13', 2650, 102467, 6293, 59195, '1.0000', '8.4572', '8.4572', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108591, '2022-08-13', 7886, 102468, 6293, 60384, '1.0000', '4.5754', '4.5754', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108592, '2022-08-13', 2242, 102469, 6293, 60415, '1.0000', '0.7520', '0.7520', '1.5000', '1.5000', '99.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108593, '2022-08-13', 7599, 102470, 6293, NULL, '1.0000', '11.0000', '11.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 (108594, '2022-08-13', 9098, 102471, 6293, NULL, '1.0000', '-2.9392', '-2.9392', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108595, '2022-08-13', 7514, 102472, 6293, NULL, '1.0000', '223354.7898', '223354.7898', '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 (108596, '2022-08-13', 1916, 102473, 6293, 59384, '1.0000', '10.5472', '10.5472', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108597, '2022-08-13', 7641, 102474, 6293, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108598, '2022-08-13', 9274, 102475, 6293, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '13.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108599, '2022-08-13', 8359, 102476, 6293, 59371, '1.0000', '246.8018', '246.8018', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108600, '2022-08-13', 7674, 102477, 6293, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108601, '2022-08-13', 7518, 102478, 6293, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108602, '2022-08-13', 7354, 102479, 6293, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108603, '2022-08-13', 7745, 102480, 6293, 59357, '1.0000', '7.4585', '7.4585', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108604, '2022-08-13', 1520, 102481, 6293, NULL, '1.0000', '1.4700', '1.4700', '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 (108605, '2022-08-13', 8434, 102482, 6293, NULL, '1.0000', '7.6300', '7.6300', '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 (108606, '2022-08-13', 2927, 102483, 6293, NULL, '1.0000', '14.7000', '14.7000', '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 (108607, '2022-08-13', 1501, 102484, 6293, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108608, '2022-08-13', 9430, 102485, 6294, 51094, '1.0000', '40.9000', '40.9000', '54.0000', '54.0000', '2.0000', 1, 0, NULL, 423);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108609, '2022-08-13', 8548, 102486, 6294, NULL, '1.0000', '-4.1859', '-4.1859', '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 (108610, '2022-08-13', 7708, 102487, 6294, 60608, '1.0000', '8.4528', '8.4528', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108611, '2022-08-13', 9800, 102488, 6294, 59136, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108612, '2022-08-13', 8714, 102489, 6294, 56542, '1.0000', '3.8309', '3.8309', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108613, '2022-08-13', 7474, 102490, 6294, 60438, '1.0000', '7.6054', '7.6054', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108614, '2022-08-13', 2102, 102491, 6294, 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 (108615, '2022-08-13', 7473, 102492, 6294, 60388, '2.0000', '0.5398', '0.5398', '0.7000', '0.7000', '67.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108616, '2022-08-13', 8756, 102493, 6294, NULL, '1.0000', '8.5042', '8.5042', '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 (108617, '2022-08-13', 7491, 102494, 6294, NULL, '1.0000', '11.2001', '11.2001', '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 (108618, '2022-08-13', 2287, 102495, 6294, 59355, '3.0000', '3.1700', '3.1700', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108619, '2022-08-13', 9271, 102496, 6294, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108620, '2022-08-13', 9743, 102497, 6294, 46913, '1.0000', '11.7000', '11.7000', '20.0000', '20.0000', '13.5000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108621, '2022-08-13', 9878, 102498, 6294, 57177, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108622, '2022-08-13', 8254, 102499, 6294, 60138, '1.0000', '28.0373', '28.0373', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108623, '2022-08-13', 9636, 102500, 6294, 59102, '1.0000', '52.6667', '52.6667', '75.5000', '75.5000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108624, '2022-08-13', 7867, 102501, 6294, NULL, '2.0000', '2.3130', '2.3130', '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 (108625, '2022-08-13', 7518, 102502, 6294, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108626, '2022-08-13', 7641, 102503, 6294, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108627, '2022-08-13', 2315, 102504, 6295, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108628, '2022-08-13', 7514, 102505, 6295, NULL, '3.0000', '2.2500', '2.2500', '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 (108629, '2022-08-13', 2260, 102506, 6295, 51688, '2.0000', '4.7545', '4.7545', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108630, '2022-08-13', 1338, 102507, 6295, 58153, '1.0000', '4.5271', '4.5271', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108631, '2022-08-13', 7743, 102508, 6295, NULL, '1.0000', '7.3900', '7.3900', '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 (108632, '2022-08-13', 9482, 102509, 6295, NULL, '2.0000', '0.5000', '0.5000', '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 (108633, '2022-08-13', 2260, 102510, 6295, 51688, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108634, '2022-08-13', 8187, 102511, 6295, NULL, '5.0000', '14.3900', '14.3900', '1.5000', '1.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 (108635, '2022-08-13', 1554, 102512, 6295, 60284, '1.0000', '3.0916', '3.0916', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108636, '2022-08-13', 7411, 102513, 6295, NULL, '1.0000', '1.2819', '1.2819', '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 (108637, '2022-08-13', 9729, 102514, 6295, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108638, '2022-08-13', 2315, 102515, 6296, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108639, '2022-08-13', 9695, 102516, 6297, NULL, '1.0000', '4.5000', '4.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 (108640, '2022-08-13', 2169, 102517, 6297, 10737, '-205.0000', '3.8397', '3.8397', '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 (108641, '2022-08-13', 2169, 102517, 6297, NULL, '206.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-206.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108642, '2022-08-13', 1499, 102518, 6297, NULL, '2.0000', '0.4100', '0.4100', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108643, '2022-08-13', 9399, 102519, 6297, NULL, '1.0000', '0.9800', '0.9800', '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 (108644, '2022-08-13', 1670, 102520, 6297, 10163, '-20.0000', '19.5000', '19.5000', '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 (108645, '2022-08-13', 1670, 102520, 6297, NULL, '21.0000', '19.5000', '19.5000', '36.0000', '36.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108646, '2022-08-13', 1670, 102521, 6297, 10163, '-20.0000', '19.5000', '19.5000', '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 (108647, '2022-08-13', 1670, 102521, 6297, NULL, '21.0000', '19.5000', '19.5000', '36.0000', '36.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108648, '2022-08-13', 8177, 102522, 6297, NULL, '1.0000', '12.5000', '12.5000', '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 (108649, '2022-08-13', 8740, 102523, 6297, NULL, '1.0000', '2.0000', '2.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 (108650, '2022-08-13', 1702, 102524, 6297, 4499, '-15.0000', '14.9700', '14.9700', '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 (108651, '2022-08-13', 1702, 102524, 6297, NULL, '16.0000', '14.9700', '14.9700', '25.0000', '25.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 (108652, '2022-08-13', 2693, 102525, 6297, 12285, '-11.0000', '25.3656', '25.3656', '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 (108653, '2022-08-13', 2693, 102525, 6297, NULL, '12.0000', '25.3656', '25.3656', '32.5000', '32.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 (108654, '2022-08-13', 1580, 102526, 6297, 7598, '-63.0000', '0.9900', '0.9900', '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 (108655, '2022-08-13', 1580, 102526, 6297, NULL, '65.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108656, '2022-08-13', 2293, 102527, 6297, 22262, '2.0000', '1.4400', '1.4400', '1.5000', '1.5000', '25.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 (108657, '2022-08-13', 2821, 102528, 6297, 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 (108658, '2022-08-13', 1855, 102529, 6297, 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 (108659, '2022-08-13', 9747, 102530, 6297, NULL, '1.0000', '0.6500', '0.6500', '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 (108660, '2022-08-13', 2109, 102531, 6297, 1053, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '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 (108661, '2022-08-13', 9747, 102532, 6297, NULL, '4.0000', '0.6500', '0.6500', '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 (108662, '2022-08-13', 1602, 102533, 6297, 5897, '-176.0000', '6.7859', '6.7859', '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 (108663, '2022-08-13', 1602, 102533, 6297, NULL, '177.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-177.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108664, '2022-08-13', 9740, 102534, 6297, NULL, '1.0000', '0.6600', '0.6600', '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 (108665, '2022-08-13', 2315, 102535, 6297, 2735, '-612.0000', '0.3300', '0.3300', '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 (108666, '2022-08-13', 2315, 102535, 6297, NULL, '613.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-613.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108667, '2022-08-13', 8809, 102536, 6297, 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 (108668, '2022-08-13', 1481, 102537, 6297, 1442, '-2.0000', '25.0024', '25.0024', '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 (108669, '2022-08-13', 1481, 102537, 6297, NULL, '3.0000', '25.0024', '25.0024', '55.0000', '55.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 (108670, '2022-08-13', 1812, 102538, 6297, 8224, '-111.0000', '7.8900', '7.8900', '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 (108671, '2022-08-13', 1812, 102538, 6297, NULL, '114.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108672, '2022-08-13', 1383, 102539, 6297, NULL, '1.0000', '47.4000', '47.4000', '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 (108673, '2022-08-13', 9800, 102540, 6297, NULL, '1.0000', '14.0000', '14.0000', '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 (108674, '2022-08-13', 2479, 102541, 6297, 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 (108675, '2022-08-13', 2441, 102542, 6297, 5311, '-2.0000', '4.6000', '4.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 (108676, '2022-08-13', 2441, 102542, 6297, NULL, '3.0000', '4.6000', '4.6000', '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 (108677, '2022-08-13', 2858, 102543, 6297, 17772, '-118.0000', '1.0000', '1.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 (108678, '2022-08-13', 2858, 102543, 6297, NULL, '119.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-119.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108679, '2022-08-13', 2242, 102544, 6297, 3059, '-95.0000', '0.4800', '0.4800', '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 (108680, '2022-08-13', 2242, 102544, 6297, NULL, '98.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108681, '2022-08-13', 2293, 102545, 6297, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.5000', '24.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 (108682, '2022-08-13', 2730, 102546, 6297, 19267, '5.0000', '1.2000', '1.2000', '2.0000', '2.0000', '19.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 (108683, '2022-08-13', 7411, 102547, 6297, NULL, '6.0000', '1.3500', '1.3500', '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 (108684, '2022-08-13', 2233, 102548, 6297, 2777, '-35.0000', '19.0200', '19.0200', '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 (108685, '2022-08-13', 2233, 102548, 6297, NULL, '36.0000', '19.0200', '19.0200', '39.0000', '39.0000', '-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 (108686, '2022-08-13', 9747, 102549, 6297, NULL, '2.0000', '0.6500', '0.6500', '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 (108687, '2022-08-13', 2109, 102550, 6297, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '61.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 (108688, '2022-08-13', 1845, 102551, 6297, 6222, '-33.0000', '19.5000', '19.5000', '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 (108689, '2022-08-13', 1845, 102551, 6297, NULL, '35.0000', '19.5000', '19.5000', '30.5000', '30.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108690, '2022-08-13', 9641, 102552, 6297, NULL, '1.0000', '36.0800', '36.0800', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108691, '2022-08-13', 2858, 102553, 6297, 17772, '-118.0000', '1.0000', '1.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 (108692, '2022-08-13', 2858, 102553, 6297, NULL, '120.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108693, '2022-08-13', 2277, 102554, 6297, 2937, '-76.0000', '0.7800', '0.7800', '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 (108694, '2022-08-13', 2277, 102554, 6297, NULL, '77.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108695, '2022-08-13', 2821, 102555, 6297, 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 (108696, '2022-08-13', 9940, 102556, 6297, 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 (108697, '2022-08-13', 7802, 102557, 6297, NULL, '3.0000', '0.9200', '0.9200', '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 (108698, '2022-08-13', 1809, 102558, 6297, 7386, '-10.0000', '9.6000', '9.6000', '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 (108699, '2022-08-13', 1809, 102558, 6297, NULL, '11.0000', '9.6000', '9.6000', '16.0000', '16.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 (108700, '2022-08-13', 9794, 102559, 6297, NULL, '1.0000', '1.0800', '1.0800', '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 (108701, '2022-08-13', 9637, 102560, 6297, NULL, '1.0000', '36.5000', '36.5000', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108702, '2022-08-13', 2266, 102561, 6297, 2801, '-15.0000', '6.4900', '6.4900', '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 (108703, '2022-08-13', 2266, 102561, 6297, NULL, '16.0000', '6.4900', '6.4900', '13.0000', '13.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 (108704, '2022-08-13', 9794, 102562, 6297, NULL, '1.0000', '1.0800', '1.0800', '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 (108705, '2022-08-13', 1744, 102563, 6297, 2163, '-6.0000', '26.5281', '26.5281', '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 (108706, '2022-08-13', 1744, 102563, 6297, NULL, '7.0000', '26.5281', '26.5281', '40.0000', '40.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 (108707, '2022-08-13', 2020, 102564, 6297, 10164, '-28.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 (108708, '2022-08-13', 2020, 102564, 6297, NULL, '29.0000', '7.5000', '7.5000', '11.0000', '11.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108709, '2022-08-13', 1720, 102565, 6297, 6661, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '138.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 (108710, '2022-08-13', 9634, 102566, 6297, NULL, '2.0000', '4.8000', '4.8000', '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 (108711, '2022-08-13', 1342, 102567, 6297, 11264, '-27.0000', '6.8074', '6.8074', '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 (108712, '2022-08-13', 1342, 102567, 6297, NULL, '28.0000', '6.8074', '6.8074', '10.0000', '10.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 (108713, '2022-08-13', 1602, 102568, 6297, 5897, '-176.0000', '6.7859', '6.7859', '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 (108714, '2022-08-13', 1602, 102568, 6297, NULL, '177.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-177.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108715, '2022-08-13', 1525, 102569, 6297, 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 (108716, '2022-08-13', 1904, 102570, 6297, 5442, '-81.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 (108717, '2022-08-13', 1904, 102570, 6297, NULL, '82.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108718, '2022-08-13', 2823, 102571, 6297, 19684, '-22.0000', '11.2100', '11.2100', '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 (108719, '2022-08-13', 2823, 102571, 6297, NULL, '23.0000', '11.2100', '11.2100', '10.0000', '10.0000', '-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 (108720, '2022-08-13', 9794, 102572, 6297, NULL, '1.0000', '1.0800', '1.0800', '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 (108721, '2022-08-13', 2559, 102573, 6297, NULL, '1.0000', '6.0000', '6.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 (108722, '2022-08-13', 1840, 102574, 6297, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (108723, '2022-08-13', 1841, 102575, 6297, NULL, '2.0000', '142.5780', '142.5780', '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 (108724, '2022-08-13', 1310, 102576, 6297, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (108725, '2022-08-13', 2893, 102577, 6297, 18242, '-23.0000', '6.0000', '6.0000', '9.5000', '9.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 (108726, '2022-08-13', 2893, 102577, 6297, NULL, '24.0000', '6.0000', '6.0000', '9.5000', '9.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 (108727, '2022-08-13', 3029, 102578, 6297, NULL, '1.0000', '4.7700', '4.7700', '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 (108728, '2022-08-13', 2327, 102579, 6297, 5083, '-45.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 (108729, '2022-08-13', 2327, 102579, 6297, NULL, '46.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108730, '2022-08-13', 2823, 102580, 6297, 19684, '-22.0000', '11.2100', '11.2100', '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 (108731, '2022-08-13', 2823, 102580, 6297, NULL, '23.0000', '11.2100', '11.2100', '10.0000', '10.0000', '-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 (108732, '2022-08-13', 2416, 102581, 6297, 4745, '-48.0000', '1.2000', '1.2000', '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 (108733, '2022-08-13', 2416, 102581, 6297, NULL, '49.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108734, '2022-08-14', 2241, 102582, 6298, 59109, '1.0000', '6.5470', '6.5470', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108735, '2022-08-14', 2506, 102583, 6298, 60417, '1.0000', '4.6846', '4.6846', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108736, '2022-08-14', 7671, 102584, 6298, NULL, '4.0000', '861.3000', '861.3000', '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 (108737, '2022-08-14', 7358, 102585, 6298, 60122, '1.0000', '14.5109', '14.5109', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108738, '2022-08-14', 2315, 102586, 6298, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108739, '2022-08-14', 7641, 102587, 6298, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108740, '2022-08-14', 2066, 102588, 6298, NULL, '1.0000', '0.5100', '0.5100', '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 (108741, '2022-08-14', 7608, 102589, 6298, 60460, '1.0000', '9.4713', '9.4713', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108742, '2022-08-14', 7444, 102590, 6298, 60402, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108743, '2022-08-14', 7411, 102591, 6298, 60389, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108744, '2022-08-14', 7459, 102592, 6298, 60478, '10.0000', '8.0994', '8.0994', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108745, '2022-08-14', 7848, 102593, 6298, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (108746, '2022-08-14', 7444, 102594, 6298, 60402, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108747, '2022-08-14', 7518, 102595, 6298, 60471, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108748, '2022-08-14', 9092, 102596, 6298, 60618, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '138.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108749, '2022-08-14', 7586, 102597, 6298, 57434, '1.0000', '6.5122', '6.5122', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108750, '2022-08-14', 7881, 102598, 6298, 60422, '1.0000', '-9.0457', '-9.0457', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108751, '2022-08-14', 7457, 102599, 6298, 60437, '1.0000', '4.9359', '4.9359', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108752, '2022-08-14', 9028, 102600, 6298, NULL, '1.0000', '5.6880', '5.6880', '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 (108753, '2022-08-14', 1856, 102601, 6298, 60582, '1.0000', '1.4621', '1.4621', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108754, '2022-08-14', 7514, 102602, 6298, NULL, '2.0000', '223354.7898', '223354.7898', '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 (108755, '2022-08-14', 7411, 102603, 6298, 60389, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108756, '2022-08-14', 7385, 102604, 6298, 60459, '5.0000', '5.7239', '5.7239', '4.0000', '4.0000', '89.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108757, '2022-08-14', 7514, 102605, 6298, NULL, '4.0000', '223354.7898', '223354.7898', '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 (108758, '2022-08-14', 8849, 102606, 6298, NULL, '1.0000', '1.0700', '1.0700', '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 (108759, '2022-08-14', 7864, 102607, 6298, 57170, '2.0000', '21.2816', '21.2816', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108760, '2022-08-14', 9979, 102608, 6298, 59406, '1.0000', '13.9000', '13.9000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108761, '2022-08-14', 7872, 102609, 6298, 59403, '1.0000', '-2180.3597', '-2180.3597', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108762, '2022-08-14', 8077, 102610, 6298, NULL, '1.0000', '4.9986', '4.9986', '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 (108763, '2022-08-14', 7416, 102611, 6298, NULL, '1.0000', '52.1300', '52.1300', '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 (108764, '2022-08-14', 9821, 102612, 6298, 56590, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108765, '2022-08-14', 2169, 102613, 6299, 10737, '-206.0000', '3.8397', '3.8397', '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 (108766, '2022-08-14', 2169, 102613, 6299, NULL, '207.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-207.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108767, '2022-08-14', 1338, 102614, 6299, 16502, '-17.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 (108768, '2022-08-14', 1338, 102614, 6299, NULL, '18.0000', '4.0000', '4.0000', '6.5000', '6.5000', '-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 (108769, '2022-08-14', 9734, 102615, 6299, NULL, '1.0000', '0.3200', '0.3200', '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 (108770, '2022-08-14', 2169, 102616, 6299, 10737, '-206.0000', '3.8397', '3.8397', '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 (108771, '2022-08-14', 2169, 102616, 6299, NULL, '207.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-207.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108772, '2022-08-14', 1819, 102617, 6299, 18240, '-7.0000', '5.5930', '5.5930', '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 (108773, '2022-08-14', 1819, 102617, 6299, NULL, '8.0000', '5.5930', '5.5930', '11.0000', '11.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 (108774, '2022-08-14', 2315, 102618, 6299, 2735, '-613.0000', '0.3300', '0.3300', '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 (108775, '2022-08-14', 2315, 102618, 6299, NULL, '614.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-614.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108776, '2022-08-14', 2169, 102619, 6299, 10737, '-206.0000', '3.8397', '3.8397', '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 (108777, '2022-08-14', 2169, 102619, 6299, NULL, '207.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-207.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108778, '2022-08-14', 1856, 102620, 6299, NULL, '1.0000', '4.2500', '4.2500', '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 (108779, '2022-08-14', 1501, 102621, 6299, NULL, '1.0000', '2.0500', '2.0500', '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 (108780, '2022-08-14', 2169, 102622, 6299, 10737, '-206.0000', '3.8397', '3.8397', '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 (108781, '2022-08-14', 2169, 102622, 6299, NULL, '207.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-207.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108782, '2022-08-14', 9151, 102623, 6299, NULL, '1.0000', '9.7000', '9.7000', '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 (108783, '2022-08-14', 9457, 102624, 6299, NULL, '1.0000', '2.9800', '2.9800', '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 (108784, '2022-08-14', 2259, 102625, 6299, 2795, '-7.0000', '19.9405', '19.9405', '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 (108785, '2022-08-14', 2259, 102625, 6299, NULL, '8.0000', '19.9405', '19.9405', '34.0000', '34.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 (108786, '2022-08-14', 1409, 102626, 6299, 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 (108787, '2022-08-14', 1307, 102627, 6299, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '15.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 (108788, '2022-08-14', 1342, 102628, 6299, 11264, '-28.0000', '6.8074', '6.8074', '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 (108789, '2022-08-14', 1342, 102628, 6299, NULL, '29.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108790, '2022-08-14', 9695, 102629, 6299, NULL, '1.0000', '4.5000', '4.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 (108791, '2022-08-14', 1386, 102630, 6300, 60299, '1.0000', '4.5458', '4.5458', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108792, '2022-08-14', 1621, 102631, 6300, 60228, '1.0000', '17.1389', '17.1389', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108793, '2022-08-14', 7339, 102632, 6300, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (108794, '2022-08-14', 2361, 102633, 6300, 42543, '2.0000', '0.4744', '0.4744', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108795, '2022-08-14', 1888, 102634, 6300, 60289, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108796, '2022-08-14', 7944, 102635, 6300, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108797, '2022-08-14', 7802, 102636, 6300, NULL, '1.0000', '1.1497', '1.1497', '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 (108798, '2022-08-14', 1620, 102637, 6300, 60302, '4.0000', '2.3610', '2.3610', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108799, '2022-08-14', 7379, 102638, 6300, NULL, '1.0000', '12.5100', '12.5100', '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 (108800, '2022-08-14', 9569, 102639, 6300, 55591, '1.0000', '132.2000', '132.2000', '175.0000', '175.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108801, '2022-08-14', 2271, 102640, 6300, NULL, '1.0000', '12.0000', '12.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 (108802, '2022-08-14', 2169, 102641, 6300, 60325, '2.0000', '1.7142', '1.7142', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108803, '2022-08-14', 7917, 102642, 6300, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108804, '2022-08-14', 3058, 102643, 6300, NULL, '1.0000', '-47.3000', '-47.3000', '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 (108805, '2022-08-14', 9729, 102644, 6300, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108806, '2022-08-14', 9762, 102645, 6300, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108807, '2022-08-14', 1828, 102646, 6300, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108808, '2022-08-14', 2263, 102647, 6300, NULL, '1.0000', '37.4800', '37.4800', '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 (108809, '2022-08-14', 2923, 102648, 6300, 60271, '1.0000', '13.2325', '13.2325', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108810, '2022-08-14', 9945, 102649, 6300, 60251, '1.0000', '12.1000', '12.1000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108811, '2022-08-14', 9945, 102649, 6300, NULL, '1.0000', '12.1000', '12.1000', '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 (108812, '2022-08-14', 9734, 102650, 6300, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '51.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108813, '2022-08-14', 9514, 102651, 6300, 57107, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108814, '2022-08-14', 7744, 102652, 6300, NULL, '1.0000', '2.5833', '2.5833', '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 (108815, '2022-08-14', 7745, 102653, 6300, 58190, '1.0000', '6.7000', '6.7000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108816, '2022-08-14', 1388, 102654, 6300, 59616, '1.0000', '7.3760', '7.3760', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108817, '2022-08-14', 1580, 102655, 6300, 54914, '2.0000', '1.4661', '1.4661', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108818, '2022-08-14', 2948, 102656, 6300, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108819, '2022-08-14', 9503, 102657, 6300, NULL, '1.0000', '24.1775', '24.1775', '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 (108820, '2022-08-14', 2263, 102658, 6301, NULL, '1.0000', '37.4800', '37.4800', '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 (108821, '2022-08-14', 2302, 102659, 6301, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '44.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108822, '2022-08-14', 2302, 102660, 6301, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '44.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108823, '2022-08-14', 2342, 102661, 6301, 58159, '1.0000', '2.3666', '2.3666', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108824, '2022-08-14', 1346, 102662, 6301, 55603, '2.0000', '1.6774', '1.6774', '2.0000', '2.0000', '57.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108825, '2022-08-14', 2656, 102663, 6301, 60555, '2.0000', '2.0601', '2.0601', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108826, '2022-08-14', 2820, 102664, 6301, 58273, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108827, '2022-08-14', 8020, 102665, 6301, NULL, '1.0000', '51.6000', '51.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 (108828, '2022-08-14', 9828, 102666, 6301, NULL, '1.0000', '2.9100', '2.9100', '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 (108829, '2022-08-14', 7457, 102667, 6302, NULL, '2.0000', '6.0000', '6.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 (108830, '2022-08-14', 7518, 102668, 6302, NULL, '1.0000', '7.8200', '7.8200', '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 (108831, '2022-08-14', 7491, 102669, 6302, NULL, '1.0000', '5.6000', '5.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 (108832, '2022-08-14', 8164, 102670, 6302, NULL, '1.0000', '16.3900', '16.3900', '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 (108833, '2022-08-14', 7674, 102671, 6302, NULL, '1.0000', '1.3000', '1.3000', '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 (108834, '2022-08-14', 7544, 102672, 6302, NULL, '1.0000', '9.4300', '9.4300', '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 (108835, '2022-08-14', 1841, 102673, 6302, NULL, '1.0000', '142.5780', '142.5780', '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 (108836, '2022-08-14', 2315, 102674, 6302, 2735, '-614.0000', '0.3300', '0.3300', '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 (108837, '2022-08-14', 2315, 102674, 6302, NULL, '615.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-615.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108838, '2022-08-14', 1498, 102675, 6302, 19685, '-54.0000', '0.3300', '0.3300', '0.7000', '0.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 (108839, '2022-08-14', 1498, 102675, 6302, NULL, '56.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-56.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108840, '2022-08-14', 8457, 102676, 6302, NULL, '1.0000', '4.5000', '4.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 (108841, '2022-08-14', 2031, 102677, 6302, 6384, '-1.0000', '5.0000', '5.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 (108842, '2022-08-14', 2031, 102677, 6302, NULL, '2.0000', '5.0000', '5.0000', '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 (108843, '2022-08-14', 8127, 102678, 6302, NULL, '1.0000', '24.5300', '24.5300', '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 (108844, '2022-08-14', 1856, 102679, 6302, NULL, '1.0000', '4.2500', '4.2500', '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 (108845, '2022-08-14', 7730, 102680, 6302, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (108846, '2022-08-14', 7358, 102681, 6302, NULL, '2.0000', '18.8000', '18.8000', '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 (108847, '2022-08-14', 1435, 102682, 6302, NULL, '1.0000', '22.5000', '22.5000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108848, '2022-08-14', 2503, 102683, 6302, NULL, '1.0000', '14.6000', '14.6000', '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 (108849, '2022-08-14', 7518, 102684, 6302, NULL, '1.0000', '7.8200', '7.8200', '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 (108850, '2022-08-14', 1501, 102685, 6302, NULL, '2.0000', '2.0500', '2.0500', '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 (108851, '2022-08-14', 2287, 102686, 6302, 2947, '-41.0000', '1.8000', '1.8000', '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 (108852, '2022-08-14', 2287, 102686, 6302, NULL, '45.0000', '1.8000', '1.8000', '4.5000', '4.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 (108853, '2022-08-14', 7457, 102687, 6302, NULL, '2.0000', '6.0000', '6.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 (108854, '2022-08-14', 8690, 102688, 6302, NULL, '1.0000', '10.8000', '10.8000', '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 (108855, '2022-08-14', 9092, 102689, 6302, NULL, '3.0000', '5.2900', '5.2900', '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 (108856, '2022-08-14', 8053, 102690, 6302, NULL, '2.0000', '0.8000', '0.8000', '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 (108857, '2022-08-14', 2906, 102691, 6302, 18651, '-28.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 (108858, '2022-08-14', 2906, 102691, 6302, NULL, '29.0000', '2.6000', '2.6000', '4.0000', '4.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108859, '2022-08-14', 7482, 102692, 6302, NULL, '2.0000', '3.0500', '3.0500', '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 (108860, '2022-08-14', 7657, 102693, 6302, NULL, '1.0000', '11.3200', '11.3200', '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 (108861, '2022-08-14', 8077, 102694, 6302, NULL, '1.0000', '3.6000', '3.6000', '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 (108862, '2022-08-14', 1501, 102695, 6302, NULL, '1.0000', '2.0500', '2.0500', '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 (108863, '2022-08-14', 9330, 102696, 6302, NULL, '1.0000', '8.6000', '8.6000', '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 (108864, '2022-08-14', 9914, 102697, 6302, NULL, '1.0000', '46.9900', '46.9900', '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 (108865, '2022-08-14', 7671, 102698, 6302, NULL, '1.0000', '15.5000', '15.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 (108866, '2022-08-14', 8949, 102699, 6302, 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 (108867, '2022-08-14', 7411, 102700, 6302, NULL, '1.0000', '1.3500', '1.3500', '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 (108868, '2022-08-14', 1804, 102701, 6302, 4916, '-20.0000', '4.2500', '4.2500', '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 (108869, '2022-08-14', 1804, 102701, 6302, NULL, '21.0000', '4.2500', '4.2500', '10.0000', '10.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108870, '2022-08-14', 7780, 102702, 6302, NULL, '1.0000', '11.6000', '11.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 (108871, '2022-08-14', 7637, 102703, 6302, NULL, '1.0000', '7.3300', '7.3300', '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 (108872, '2022-08-14', 7587, 102704, 6302, NULL, '1.0000', '6.4400', '6.4400', '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 (108873, '2022-08-14', 7915, 102705, 6302, NULL, '1.0000', '2.8000', '2.8000', '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 (108874, '2022-08-14', 8186, 102706, 6302, NULL, '3.0000', '1.0800', '1.0800', '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 (108875, '2022-08-14', 8154, 102707, 6302, NULL, '3.0000', '12.3000', '12.3000', '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 (108876, '2022-08-14', 1855, 102708, 6302, 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 (108877, '2022-08-14', 7852, 102709, 6302, NULL, '1.0000', '15.0000', '15.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 (108878, '2022-08-14', 1756, 102710, 6302, 3166, '-10.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 (108879, '2022-08-14', 1756, 102710, 6302, NULL, '13.0000', '90.0000', '90.0000', '6.5000', '6.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 (108880, '2022-08-14', 7886, 102711, 6302, 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 (108881, '2022-08-14', 7524, 102712, 6302, NULL, '3.0000', '11.9500', '11.9500', '7.0000', '7.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 (108882, '2022-08-14', 7514, 102713, 6302, NULL, '2.0000', '2.2500', '2.2500', '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 (108883, '2022-08-14', 8101, 102714, 6302, NULL, '1.0000', '1.9700', '1.9700', '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 (108884, '2022-08-14', 7457, 102715, 6302, 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 (108885, '2022-08-14', 9734, 102716, 6302, NULL, '8.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (108886, '2022-08-14', 8825, 102717, 6302, NULL, '1.0000', '15.0000', '15.0000', '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 (108887, '2022-08-14', 2069, 102718, 6302, 5571, '-16.0000', '2.0400', '2.0400', '9.5000', '9.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 (108888, '2022-08-14', 2069, 102718, 6302, NULL, '17.0000', '2.0400', '2.0400', '9.5000', '9.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 (108889, '2022-08-14', 2315, 102719, 6302, 2735, '-614.0000', '0.3300', '0.3300', '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 (108890, '2022-08-14', 2315, 102719, 6302, NULL, '617.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-617.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108891, '2022-08-14', 1904, 102720, 6302, 5442, '-82.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 (108892, '2022-08-14', 1904, 102720, 6302, NULL, '83.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108893, '2022-08-14', 9942, 102721, 6302, NULL, '1.0000', '9.1000', '9.1000', '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 (108894, '2022-08-14', 7444, 102722, 6302, 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 (108895, '2022-08-14', 9209, 102723, 6302, NULL, '1.0000', '4.8000', '4.8000', '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 (108896, '2022-08-14', 7900, 102724, 6302, 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 (108897, '2022-08-14', 2287, 102725, 6302, 2947, '-41.0000', '1.8000', '1.8000', '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 (108898, '2022-08-14', 2287, 102725, 6302, NULL, '45.0000', '1.8000', '1.8000', '4.5000', '4.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 (108899, '2022-08-14', 7703, 102726, 6302, NULL, '1.0000', '22.9900', '22.9900', '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 (108900, '2022-08-14', 7621, 102727, 6302, NULL, '1.0000', '5.9000', '5.9000', '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 (108901, '2022-08-14', 9695, 102728, 6302, NULL, '2.0000', '4.5000', '4.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 (108902, '2022-08-14', 8759, 102729, 6302, NULL, '1.0000', '6.5000', '6.5000', '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 (108903, '2022-08-14', 9098, 102730, 6302, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108904, '2022-08-14', 8020, 102731, 6302, NULL, '1.0000', '11.9000', '11.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 (108905, '2022-08-14', 9803, 102732, 6302, NULL, '1.0000', '4.5500', '4.5500', '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 (108906, '2022-08-14', 9846, 102733, 6302, NULL, '1.0000', '5.7000', '5.7000', '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 (108907, '2022-08-14', 7411, 102734, 6302, NULL, '1.0000', '1.3500', '1.3500', '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 (108908, '2022-08-14', 7674, 102735, 6302, NULL, '1.0000', '1.3000', '1.3000', '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 (108909, '2022-08-14', 7712, 102736, 6302, NULL, '1.0000', '26.0000', '26.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 (108910, '2022-08-14', 7822, 102737, 6302, NULL, '1.0000', '8.0000', '8.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 (108911, '2022-08-14', 2296, 102738, 6303, 58655, '1.0000', '13.2303', '13.2303', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108912, '2022-08-14', 1337, 102739, 6303, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108913, '2022-08-14', 1340, 102740, 6303, 57979, '1.0000', '3.2900', '3.2900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108914, '2022-08-14', 8677, 102741, 6303, 60034, '3.0000', '2.1023', '2.1023', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108915, '2022-08-14', 2105, 102742, 6303, 56726, '2.0000', '2.0391', '2.0391', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108916, '2022-08-14', 2821, 102743, 6303, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108917, '2022-08-14', 9740, 102744, 6303, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108918, '2022-08-14', 2221, 102745, 6303, 58659, '1.0000', '17.3584', '17.3584', '26.0000', '26.0000', '19.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108919, '2022-08-14', 7886, 102746, 6303, 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 (108920, '2022-08-14', 1912, 102747, 6303, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108921, '2022-08-14', 1904, 102748, 6303, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108922, '2022-08-14', 1620, 102749, 6303, 57947, '6.0000', '2.2914', '2.2914', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108923, '2022-08-14', 1620, 102749, 6303, 56217, '2.0000', '2.2914', '2.2914', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108924, '2022-08-14', 9740, 102750, 6303, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108925, '2022-08-14', 7714, 102751, 6303, NULL, '6.0000', '0.4200', '0.4200', '0.6000', '0.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 (108926, '2022-08-14', 9740, 102752, 6303, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108927, '2022-08-14', 9716, 102753, 6303, 58813, '1.0000', '4.8500', '4.8500', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108928, '2022-08-14', 9649, 102754, 6303, 60008, '1.0000', '17.0306', '17.0306', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108929, '2022-08-14', 9329, 102755, 6303, NULL, '1.0000', '8.8000', '8.8000', '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 (108930, '2022-08-14', 9943, 102756, 6303, 60007, '1.0000', '11.3313', '11.3313', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108931, '2022-08-14', 1339, 102757, 6303, 60024, '1.0000', '1.8897', '1.8897', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108932, '2022-08-14', 9030, 102758, 6303, 56932, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108933, '2022-08-14', 2413, 102759, 6303, 54395, '1.0000', '1.1122', '1.1122', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108934, '2022-08-14', 7917, 102760, 6303, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108935, '2022-08-14', 9089, 102761, 6303, 60519, '1.0000', '5.3654', '5.3654', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108936, '2022-08-14', 2169, 102762, 6303, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108937, '2022-08-14', 2893, 102763, 6303, 60048, '1.0000', '6.7609', '6.7609', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108938, '2022-08-14', 2260, 102764, 6303, 56911, '2.0000', '4.6659', '4.6659', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108939, '2022-08-14', 2030, 102765, 6303, 56824, '1.0000', '9.6183', '9.6183', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108940, '2022-08-14', 2167, 102766, 6303, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108941, '2022-08-14', 9626, 102767, 6303, 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 (108942, '2022-08-14', 2135, 102768, 6303, NULL, '2.0000', '2.2504', '2.2504', '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 (108943, '2022-08-14', 2315, 102769, 6303, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108944, '2022-08-14', 2506, 102770, 6303, 60011, '1.0000', '4.3139', '4.3139', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108945, '2022-08-14', 2109, 102771, 6303, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108946, '2022-08-14', 7641, 102772, 6303, NULL, '1.0000', '1.9000', '1.9000', '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 (108947, '2022-08-14', 1501, 102773, 6303, 58770, '1.0000', '95.0477', '95.0477', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108948, '2022-08-14', 2109, 102774, 6303, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108949, '2022-08-14', 2864, 102775, 6303, 59978, '5.0000', '1.4045', '1.4045', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108950, '2022-08-14', 2236, 102776, 6303, 59990, '1.0000', '6.0883', '6.0883', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108951, '2022-08-14', 7318, 102777, 6303, 58756, '1.0000', '11.1169', '11.1169', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108952, '2022-08-14', 7318, 102778, 6303, 58756, '1.0000', '11.1169', '11.1169', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108953, '2022-08-14', 9265, 102779, 6303, NULL, '1.0000', '1.5500', '1.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 (108954, '2022-08-14', 3029, 102780, 6303, 59983, '1.0000', '7.5369', '7.5369', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108955, '2022-08-14', 7491, 102781, 6303, NULL, '1.0000', '4.8000', '4.8000', '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 (108956, '2022-08-14', 2083, 102782, 6303, 1662, '2.0000', '0.5800', '0.5800', '1.0000', '1.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 (108957, '2022-08-14', 9695, 102783, 6303, 58550, '1.0000', '5.7386', '5.7386', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108958, '2022-08-14', 1620, 102784, 6303, 57947, '1.0000', '2.2914', '2.2914', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108959, '2022-08-14', 9751, 102785, 6303, 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 (108960, '2022-08-14', 9751, 102786, 6303, 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 (108961, '2022-08-15', 1307, 102787, 6304, NULL, '1.0000', '-106.4636', '-106.4636', '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 (108962, '2022-08-15', 1912, 102788, 6304, NULL, '1.0000', '0.6868', '0.6868', '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 (108963, '2022-08-15', 9996, 102789, 6304, 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 (108964, '2022-08-15', 2233, 102790, 6304, 60278, '1.0000', '25.7222', '25.7222', '39.0000', '39.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108965, '2022-08-15', 2643, 102791, 6304, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108966, '2022-08-15', 2284, 102792, 6304, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108967, '2022-08-15', 7674, 102793, 6304, NULL, '1.0000', '1.3000', '1.3000', '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 (108968, '2022-08-15', 7674, 102794, 6304, NULL, '1.0000', '1.3000', '1.3000', '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 (108969, '2022-08-15', 7666, 102795, 6304, NULL, '1.0000', '-6.0000', '-6.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 (108970, '2022-08-15', 1501, 102796, 6304, NULL, '1.0000', '0.3856', '0.3856', '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 (108971, '2022-08-15', 1699, 102797, 6304, NULL, '1.0000', '-5.0000', '-5.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 (108972, '2022-08-15', 1454, 102798, 6304, 58125, '1.0000', '10.9000', '10.9000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108973, '2022-08-15', 9828, 102799, 6304, NULL, '1.0000', '2.9100', '2.9100', '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 (108974, '2022-08-15', 1676, 102800, 6304, 38561, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108975, '2022-08-15', 2384, 102801, 6304, NULL, '2.0000', '-1.7022', '-1.7022', '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 (108976, '2022-08-15', 9715, 102802, 6304, 45632, '1.0000', '10.1143', '10.1143', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 334);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108977, '2022-08-15', 7688, 102803, 6304, NULL, '1.0000', '13.3400', '13.3400', '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 (108978, '2022-08-15', 2442, 102804, 6304, 51951, '1.0000', '6.7125', '6.7125', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108979, '2022-08-15', 9961, 102805, 6304, NULL, '1.0000', '18.5000', '18.5000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108980, '2022-08-15', 9492, 102806, 6304, 57146, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108981, '2022-08-15', 1971, 102807, 6304, 57130, '1.0000', '15.5000', '15.5000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108982, '2022-08-15', 2035, 102808, 6304, 59676, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108983, '2022-08-15', 9738, 102809, 6304, 59860, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108984, '2022-08-15', 2255, 102810, 6304, 60351, '1.0000', '22.3954', '22.3954', '32.5000', '32.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108985, '2022-08-15', 2169, 102811, 6305, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108986, '2022-08-15', 8254, 102812, 6305, NULL, '1.0000', '27.2800', '27.2800', '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 (108987, '2022-08-15', 9808, 102813, 6305, 51367, '2.0000', '4.6000', '4.6000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108988, '2022-08-15', 1590, 102814, 6305, 50113, '1.0000', '2.2860', '2.2860', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108989, '2022-08-15', 1590, 102814, 6305, 49903, '2.0000', '2.2860', '2.2860', '3.5000', '3.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 (108990, '2022-08-15', 1580, 102815, 6305, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '65.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108991, '2022-08-15', 1307, 102816, 6305, NULL, '1.0000', '-106.4636', '-106.4636', '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 (108992, '2022-08-15', 2066, 102817, 6305, NULL, '1.0000', '0.5100', '0.5100', '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 (108993, '2022-08-15', 2262, 102818, 6305, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108994, '2022-08-15', 1912, 102819, 6306, NULL, '2.0000', '0.6868', '0.6868', '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 (108995, '2022-08-15', 1884, 102820, 6306, NULL, '1.0000', '17.4104', '17.4104', '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 (108996, '2022-08-15', 2284, 102821, 6306, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108997, '2022-08-15', 1943, 102822, 6306, NULL, '1.0000', '5.7300', '5.7300', '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 (108998, '2022-08-15', 3044, 102823, 6306, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.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 (108999, '2022-08-15', 2496, 102824, 6306, NULL, '5.0000', '0.5900', '0.5900', '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 (109000, '2022-08-15', 8333, 102825, 6306, 59607, '1.0000', '3.6300', '3.6300', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109001, '2022-08-15', 9720, 102826, 6306, 59898, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109002, '2022-08-15', 9824, 102827, 6306, NULL, '1.0000', '1.3000', '1.3000', '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 (109003, '2022-08-15', 8661, 102828, 6306, 60253, '1.0000', '5.6000', '5.6000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109004, '2022-08-15', 1825, 102829, 6306, 60267, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109005, '2022-08-15', 1702, 102830, 6306, NULL, '1.0000', '-12.4833', '-12.4833', '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 (109006, '2022-08-15', 7323, 102831, 6306, 57672, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109007, '2022-08-15', 1746, 102832, 6306, 60329, '1.0000', '4.8553', '4.8553', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109008, '2022-08-15', 8998, 102833, 6307, NULL, '1.0000', '0.4000', '0.4000', '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 (109009, '2022-08-15', 1333, 102834, 6307, 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 (109010, '2022-08-15', 1411, 102835, 6307, NULL, '1.0000', '25.9000', '25.9000', '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 (109011, '2022-08-15', 2353, 102836, 6307, 3856, '-2.0000', '4.4500', '4.4500', '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 (109012, '2022-08-15', 2353, 102836, 6307, NULL, '3.0000', '4.4500', '4.4500', '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 (109013, '2022-08-15', 9219, 102837, 6307, NULL, '1.0000', '6.3000', '6.3000', '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 (109014, '2022-08-15', 1845, 102838, 6307, 6222, '-35.0000', '19.5000', '19.5000', '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 (109015, '2022-08-15', 1845, 102838, 6307, NULL, '36.0000', '19.5000', '19.5000', '30.5000', '30.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 (109016, '2022-08-15', 1846, 102839, 6307, 12032, '-28.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 (109017, '2022-08-15', 1846, 102839, 6307, NULL, '30.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (109018, '2022-08-15', 2315, 102840, 6307, 2735, '-618.0000', '0.3300', '0.3300', '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 (109019, '2022-08-15', 2315, 102840, 6307, NULL, '619.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-619.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109020, '2022-08-15', 9940, 102841, 6307, 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 (109021, '2022-08-15', 2332, 102842, 6307, 3835, '-26.0000', '5.8900', '5.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 (109022, '2022-08-15', 2332, 102842, 6307, NULL, '27.0000', '5.8900', '5.8900', '10.5000', '10.5000', '-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 (109023, '2022-08-15', 1839, 102843, 6307, 8734, '-41.0000', '6.1500', '6.1500', '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 (109024, '2022-08-15', 1839, 102843, 6307, NULL, '42.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109025, '2022-08-15', 9747, 102844, 6307, NULL, '1.0000', '0.6500', '0.6500', '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 (109026, '2022-08-15', 9747, 102845, 6307, NULL, '1.0000', '0.6500', '0.6500', '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 (109027, '2022-08-15', 2237, 102846, 6307, 2781, '-83.0000', '1.0600', '1.0600', '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 (109028, '2022-08-15', 2237, 102846, 6307, NULL, '84.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109029, '2022-08-15', 2384, 102847, 6307, 4087, '-67.0000', '0.4000', '0.4000', '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 (109030, '2022-08-15', 2384, 102847, 6307, NULL, '70.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109031, '2022-08-15', 3013, 102848, 6307, 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 (109032, '2022-08-15', 9808, 102849, 6307, 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 (109033, '2022-08-15', 2162, 102850, 6307, 1377, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '11.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 (109034, '2022-08-15', 2237, 102851, 6307, 2781, '-83.0000', '1.0600', '1.0600', '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 (109035, '2022-08-15', 2237, 102851, 6307, NULL, '84.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109036, '2022-08-15', 1645, 102852, 6307, 3217, '-9.0000', '4.7200', '4.7200', '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 (109037, '2022-08-15', 1645, 102852, 6307, NULL, '10.0000', '4.7200', '4.7200', '8.5000', '8.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 (109038, '2022-08-15', 1409, 102853, 6307, 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 (109039, '2022-08-15', 7593, 102854, 6307, NULL, '1.0000', '2.4500', '2.4500', '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 (109040, '2022-08-15', 9729, 102855, 6307, NULL, '1.0000', '0.6200', '0.6200', '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 (109041, '2022-08-15', 2135, 102856, 6307, 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 (109042, '2022-08-15', 7604, 102857, 6307, NULL, '1.0000', '4.3900', '4.3900', '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 (109043, '2022-08-15', 2297, 102858, 6307, 2956, '-12.0000', '6.6000', '6.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 (109044, '2022-08-15', 2297, 102858, 6307, NULL, '13.0000', '6.6000', '6.6000', '12.0000', '12.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 (109045, '2022-08-15', 1333, 102859, 6307, 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 (109046, '2022-08-15', 1904, 102860, 6308, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109047, '2022-08-15', 1486, 102861, 6308, 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 (109048, '2022-08-15', 7953, 102862, 6308, NULL, '1.0000', '-0.5345', '-0.5345', '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 (109049, '2022-08-15', 1411, 102863, 6308, 57758, '1.0000', '25.9987', '25.9987', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109050, '2022-08-15', 9891, 102864, 6308, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '15.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109051, '2022-08-15', 2730, 102865, 6308, 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 (109052, '2022-08-15', 2738, 102866, 6308, 60282, '1.0000', '9.3067', '9.3067', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109053, '2022-08-15', 1369, 102867, 6308, 55569, '1.0000', '7.2000', '7.2000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109054, '2022-08-15', 1368, 102868, 6308, 60229, '1.0000', '5.8695', '5.8695', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109055, '2022-08-15', 8677, 102869, 6308, NULL, '2.0000', '1026.1382', '1026.1382', '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 (109056, '2022-08-15', 2293, 102870, 6308, NULL, '3.0000', '-17.4320', '-17.4320', '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 (109057, '2022-08-15', 9482, 102871, 6308, NULL, '7.0000', '0.5000', '0.5000', '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 (109058, '2022-08-15', 1665, 102872, 6308, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109059, '2022-08-15', 1557, 102873, 6308, NULL, '1.0000', '8.2500', '8.2500', '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 (109060, '2022-08-15', 1888, 102874, 6308, 60289, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109061, '2022-08-15', 2237, 102875, 6309, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109062, '2022-08-15', 1855, 102876, 6309, NULL, '1.0000', '1.4615', '1.4615', '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 (109063, '2022-08-15', 2167, 102877, 6310, NULL, '1.0000', '0.6663', '0.6663', '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 (109064, '2022-08-15', 2315, 102878, 6310, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109065, '2022-08-15', 2379, 102879, 6310, NULL, '1.0000', '-14.1447', '-14.1447', '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 (109066, '2022-08-15', 1654, 102880, 6310, 39888, '1.0000', '9.2613', '9.2613', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109067, '2022-08-15', 1761, 102881, 6310, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109068, '2022-08-15', 9808, 102882, 6310, 51367, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109069, '2022-08-15', 2959, 102883, 6310, NULL, '2.0000', '4.0000', '4.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 (109070, '2022-08-15', 9482, 102884, 6310, 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 (109071, '2022-08-15', 2617, 102885, 6310, NULL, '2.0000', '-5.4200', '-5.4200', '8.5000', '8.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 (109072, '2022-08-15', 2953, 102886, 6310, 49304, '2.0000', '33.6000', '33.6000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109073, '2022-08-15', 2953, 102886, 6310, NULL, '1.0000', '33.6000', '33.6000', '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 (109074, '2022-08-15', 7368, 102887, 6311, NULL, '1.0000', '14.7500', '14.7500', '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 (109075, '2022-08-15', 7730, 102888, 6311, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (109076, '2022-08-15', 7586, 102889, 6311, NULL, '1.0000', '4.1700', '4.1700', '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 (109077, '2022-08-15', 9716, 102890, 6311, NULL, '1.0000', '4.4000', '4.4000', '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 (109078, '2022-08-15', 7491, 102891, 6311, NULL, '1.0000', '5.6000', '5.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 (109079, '2022-08-15', 7368, 102892, 6311, NULL, '1.0000', '14.7500', '14.7500', '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 (109080, '2022-08-15', 7514, 102893, 6311, NULL, '1.0000', '2.2500', '2.2500', '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 (109081, '2022-08-15', 8658, 102894, 6311, NULL, '1.0000', '17.6000', '17.6000', '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 (109082, '2022-08-15', 7411, 102895, 6311, NULL, '5.0000', '1.3500', '1.3500', '2.5000', '2.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 (109083, '2022-08-15', 7671, 102896, 6311, NULL, '3.0000', '15.5000', '15.5000', '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 (109084, '2022-08-15', 7412, 102897, 6311, NULL, '1.0000', '1.5200', '1.5200', '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 (109085, '2022-08-15', 7473, 102898, 6311, NULL, '3.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (109086, '2022-08-15', 8134, 102899, 6311, NULL, '1.0000', '5.2300', '5.2300', '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 (109087, '2022-08-15', 8596, 102900, 6311, 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 (109088, '2022-08-15', 7709, 102901, 6311, NULL, '3.0000', '3.5000', '3.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 (109089, '2022-08-15', 2868, 102902, 6311, NULL, '1.0000', '5.0000', '5.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 (109090, '2022-08-15', 2315, 102903, 6311, 2735, '-619.0000', '0.3300', '0.3300', '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 (109091, '2022-08-15', 2315, 102903, 6311, NULL, '620.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-620.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109092, '2022-08-15', 7558, 102904, 6311, NULL, '5.0000', '1.9700', '1.9700', '3.7000', '3.7000', '-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 (109093, '2022-08-15', 7634, 102905, 6311, NULL, '1.0000', '1.8000', '1.8000', '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 (109094, '2022-08-15', 2315, 102906, 6311, 2735, '-619.0000', '0.3300', '0.3300', '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 (109095, '2022-08-15', 2315, 102906, 6311, NULL, '620.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-620.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109096, '2022-08-15', 7514, 102907, 6311, NULL, '1.0000', '2.2500', '2.2500', '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 (109097, '2022-08-15', 8359, 102908, 6311, 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 (109098, '2022-08-15', 9914, 102909, 6311, NULL, '1.0000', '46.9900', '46.9900', '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 (109099, '2022-08-15', 2105, 102910, 6311, NULL, '1.0000', '1.3500', '1.3500', '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 (109100, '2022-08-15', 7628, 102911, 6311, NULL, '4.0000', '2.2900', '2.2900', '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 (109101, '2022-08-15', 7666, 102912, 6311, NULL, '1.0000', '3.6000', '3.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 (109102, '2022-08-15', 3067, 102913, 6311, NULL, '1.0000', '0.7000', '0.7000', '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 (109103, '2022-08-15', 2284, 102914, 6311, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.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 (109104, '2022-08-15', 7674, 102915, 6311, NULL, '1.0000', '1.3000', '1.3000', '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 (109105, '2022-08-15', 8504, 102916, 6311, NULL, '1.0000', '8.1000', '8.1000', '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 (109106, '2022-08-15', 7514, 102917, 6311, NULL, '4.0000', '2.2500', '2.2500', '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 (109107, '2022-08-15', 2486, 102918, 6311, 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 (109108, '2022-08-15', 2602, 102919, 6311, 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 (109109, '2022-08-15', 7711, 102920, 6311, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109110, '2022-08-15', 9890, 102921, 6311, NULL, '1.0000', '109.9000', '109.9000', '145.0000', '145.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109111, '2022-08-15', 8063, 102922, 6311, NULL, '1.0000', '1.6000', '1.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 (109112, '2022-08-15', 7672, 102923, 6311, NULL, '1.0000', '1.0200', '1.0200', '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 (109113, '2022-08-15', 2995, 102924, 6311, NULL, '1.0000', '39.7000', '39.7000', '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 (109114, '2022-08-15', 8638, 102925, 6311, NULL, '1.0000', '0.5100', '0.5100', '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 (109115, '2022-08-15', 2315, 102926, 6311, 2735, '-619.0000', '0.3300', '0.3300', '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 (109116, '2022-08-15', 2315, 102926, 6311, NULL, '621.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-621.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109117, '2022-08-15', 9791, 102927, 6311, 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 (109118, '2022-08-15', 7638, 102928, 6311, NULL, '1.0000', '12.0000', '12.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 (109119, '2022-08-15', 7768, 102929, 6311, NULL, '1.0000', '12.2000', '12.2000', '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 (109120, '2022-08-15', 7411, 102930, 6311, NULL, '2.0000', '1.3500', '1.3500', '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 (109121, '2022-08-15', 9391, 102931, 6311, 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 (109122, '2022-08-15', 8918, 102932, 6311, NULL, '2.0000', '1.0400', '1.0400', '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 (109123, '2022-08-15', 1846, 102933, 6311, 12032, '-30.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 (109124, '2022-08-15', 1846, 102933, 6311, NULL, '31.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (109125, '2022-08-15', 7616, 102934, 6311, NULL, '1.0000', '21.5000', '21.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 (109126, '2022-08-15', 8360, 102935, 6311, NULL, '1.0000', '3.2300', '3.2300', '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 (109127, '2022-08-15', 7709, 102936, 6311, NULL, '2.0000', '3.5000', '3.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 (109128, '2022-08-15', 7544, 102937, 6311, NULL, '4.0000', '9.4300', '9.4300', '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 (109129, '2022-08-15', 1841, 102938, 6311, NULL, '4.0000', '142.5780', '142.5780', '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 (109130, '2022-08-15', 7736, 102939, 6311, NULL, '1.0000', '16.2000', '16.2000', '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 (109131, '2022-08-15', 7524, 102940, 6311, NULL, '3.0000', '11.9500', '11.9500', '7.0000', '7.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 (109132, '2022-08-15', 8649, 102941, 6311, NULL, '3.0000', '20.9000', '20.9000', '27.5000', '27.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 (109133, '2022-08-15', 7345, 102942, 6311, NULL, '1.0000', '56.0000', '56.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 (109134, '2022-08-15', 7674, 102943, 6311, NULL, '2.0000', '1.3000', '1.3000', '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 (109135, '2022-08-15', 2315, 102944, 6311, 2735, '-619.0000', '0.3300', '0.3300', '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 (109136, '2022-08-15', 2315, 102944, 6311, NULL, '621.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-621.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109137, '2022-08-15', 7860, 102945, 6311, NULL, '1.0000', '20.3700', '20.3700', '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 (109138, '2022-08-15', 7848, 102946, 6311, NULL, '1.0000', '1.3500', '1.3500', '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 (109139, '2022-08-15', 7382, 102947, 6311, NULL, '1.0000', '7.4500', '7.4500', '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 (109140, '2022-08-15', 1578, 102948, 6311, 7597, '-10.0000', '1.9700', '1.9700', '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 (109141, '2022-08-15', 1578, 102948, 6311, NULL, '11.0000', '1.9700', '1.9700', '4.0000', '4.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 (109142, '2022-08-15', 7719, 102949, 6311, NULL, '1.0000', '6.0000', '6.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 (109143, '2022-08-15', 7641, 102950, 6311, NULL, '1.0000', '1.9000', '1.9000', '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 (109144, '2022-08-15', 7954, 102951, 6311, 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 (109145, '2022-08-15', 8915, 102952, 6311, 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 (109146, '2022-08-15', 9695, 102953, 6311, NULL, '1.0000', '4.5000', '4.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 (109147, '2022-08-15', 7411, 102954, 6311, NULL, '1.0000', '1.3500', '1.3500', '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 (109148, '2022-08-15', 7509, 102955, 6311, 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 (109149, '2022-08-15', 7473, 102956, 6311, NULL, '10.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (109150, '2022-08-15', 7703, 102957, 6311, NULL, '2.0000', '22.9900', '22.9900', '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 (109151, '2022-08-15', 9955, 102958, 6311, NULL, '1.0000', '5.4000', '5.4000', '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 (109152, '2022-08-15', 7674, 102959, 6311, NULL, '1.0000', '1.3000', '1.3000', '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 (109153, '2022-08-15', 7644, 102960, 6311, NULL, '5.0000', '4.4800', '4.4800', '10.0000', '10.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 (109154, '2022-08-15', 1577, 102961, 6311, 7596, '-24.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 (109155, '2022-08-15', 1577, 102961, 6311, NULL, '26.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-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 (109156, '2022-08-15', 7411, 102962, 6311, NULL, '1.0000', '1.3500', '1.3500', '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 (109157, '2022-08-15', 8463, 102963, 6311, NULL, '1.0000', '18.0000', '18.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 (109158, '2022-08-15', 1916, 102964, 6311, 5445, '-10.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109159, '2022-08-15', 1916, 102964, 6311, NULL, '11.0000', '8.2300', '8.2300', '14.0000', '14.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 (109160, '2022-08-15', 8677, 102965, 6311, NULL, '1.0000', '1.2800', '1.2800', '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 (109161, '2022-08-15', 1837, 102966, 6312, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109162, '2022-08-15', 2237, 102967, 6312, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109163, '2022-08-15', 1763, 102968, 6312, 55556, '1.0000', '4.6631', '4.6631', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109164, '2022-08-15', 9734, 102969, 6312, 60360, '5.0000', '0.4261', '0.4261', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109165, '2022-08-15', 7500, 102970, 6312, 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 (109166, '2022-08-15', 2169, 102971, 6312, 60325, '2.0000', '1.7142', '1.7142', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109167, '2022-08-15', 2262, 102972, 6312, 55557, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109168, '2022-08-15', 2699, 102973, 6312, 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 (109169, '2022-08-15', 2275, 102974, 6312, 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 (109170, '2022-08-15', 2068, 102975, 6312, NULL, '1.0000', '14.6943', '14.6943', '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 (109171, '2022-08-15', 1812, 102976, 6312, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109172, '2022-08-15', 1700, 102977, 6312, NULL, '1.0000', '1.0000', '1.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 (109173, '2022-08-15', 2167, 102978, 6312, NULL, '1.0000', '0.6663', '0.6663', '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 (109174, '2022-08-15', 8622, 102979, 6312, 60237, '1.0000', '1.4898', '1.4898', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109175, '2022-08-15', 1499, 102980, 6312, 50243, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109176, '2022-08-15', 2315, 102981, 6312, 59595, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109177, '2022-08-15', 3010, 102982, 6313, NULL, '1.0000', '42.0000', '42.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109178, '2022-08-15', 9503, 102983, 6314, NULL, '1.0000', '24.1775', '24.1775', '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 (109179, '2022-08-15', 1812, 102984, 6314, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109180, '2022-08-15', 2384, 102985, 6314, NULL, '3.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (109181, '2022-08-15', 2302, 102986, 6314, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '42.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109182, '2022-08-15', 9734, 102987, 6314, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '44.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109183, '2022-08-15', 1383, 102988, 6314, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109184, '2022-08-15', 2262, 102989, 6314, 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 (109185, '2022-08-15', 2345, 102990, 6314, 60322, '1.0000', '7.6701', '7.6701', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109186, '2022-08-15', 1946, 102991, 6314, NULL, '1.0000', '-6.7231', '-6.7231', '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 (109187, '2022-08-15', 7608, 102992, 6314, NULL, '1.0000', '6.9800', '6.9800', '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 (109188, '2022-08-15', 2346, 102993, 6314, NULL, '1.0000', '2.4743', '2.4743', '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 (109189, '2022-08-15', 1562, 102994, 6314, 49515, '1.0000', '5.7883', '5.7883', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 382);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109190, '2022-08-15', 9745, 102995, 6314, 47102, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109191, '2022-08-15', 2948, 102996, 6314, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109192, '2022-08-15', 1347, 102997, 6315, 243, '1.0000', '3.4000', '3.4000', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109193, '2022-08-15', 1499, 102998, 6315, NULL, '2.0000', '0.4100', '0.4100', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109194, '2022-08-15', 8745, 102999, 6315, NULL, '1.0000', '8.0000', '8.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 (109195, '2022-08-15', 1851, 103000, 6315, 8627, '-18.0000', '10.6568', '10.6568', '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 (109196, '2022-08-15', 1851, 103000, 6315, NULL, '19.0000', '10.6568', '10.6568', '20.0000', '20.0000', '-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 (109197, '2022-08-15', 2316, 103001, 6315, 16951, '-5.0000', '44.8814', '44.8814', '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 (109198, '2022-08-15', 2316, 103001, 6315, NULL, '6.0000', '44.8814', '44.8814', '60.0000', '60.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 (109199, '2022-08-15', 1871, 103002, 6315, 8223, '-287.0000', '24.5246', '24.5246', '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 (109200, '2022-08-15', 1871, 103002, 6315, NULL, '290.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-290.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109201, '2022-08-15', 1999, 103003, 6315, 6362, '-17.0000', '6.0000', '6.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 (109202, '2022-08-15', 1999, 103003, 6315, NULL, '18.0000', '6.0000', '6.0000', '12.0000', '12.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 (109203, '2022-08-15', 1342, 103004, 6315, 11264, '-29.0000', '6.8074', '6.8074', '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 (109204, '2022-08-15', 1342, 103004, 6315, NULL, '30.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-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 (109205, '2022-08-15', 8444, 103005, 6315, 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 (109206, '2022-08-15', 2263, 103006, 6315, 2799, '-4.0000', '6.5600', '6.5600', '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 (109207, '2022-08-15', 2263, 103006, 6315, NULL, '5.0000', '6.5600', '6.5600', '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 (109208, '2022-08-15', 2032, 103007, 6315, NULL, '1.0000', '5.5000', '5.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 (109209, '2022-08-15', 1908, 103008, 6315, 5444, '-56.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 (109210, '2022-08-15', 1908, 103008, 6315, NULL, '57.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109211, '2022-08-15', 1839, 103009, 6315, 8734, '-42.0000', '6.1500', '6.1500', '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 (109212, '2022-08-15', 1839, 103009, 6315, NULL, '43.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (109213, '2022-08-15', 2315, 103010, 6315, 2735, '-625.0000', '0.3300', '0.3300', '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 (109214, '2022-08-15', 2315, 103010, 6315, NULL, '626.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-626.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109215, '2022-08-15', 2221, 103011, 6315, 4154, '-82.0000', '14.4737', '14.4737', '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 (109216, '2022-08-15', 2221, 103011, 6315, NULL, '83.0000', '14.4737', '14.4737', '26.0000', '26.0000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109217, '2022-08-15', 1816, 103012, 6315, 22478, '-8.0000', '18.2300', '18.2300', '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 (109218, '2022-08-15', 1816, 103012, 6315, NULL, '9.0000', '18.2300', '18.2300', '29.0000', '29.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 (109219, '2022-08-15', 1702, 103013, 6315, 4499, '-16.0000', '14.9700', '14.9700', '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 (109220, '2022-08-15', 1702, 103013, 6315, NULL, '17.0000', '14.9700', '14.9700', '25.0000', '25.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 (109221, '2022-08-15', 7802, 103014, 6315, NULL, '3.0000', '0.9200', '0.9200', '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 (109222, '2022-08-15', 9943, 103015, 6315, NULL, '1.0000', '10.5500', '10.5500', '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 (109223, '2022-08-15', 1839, 103016, 6315, 8734, '-42.0000', '6.1500', '6.1500', '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 (109224, '2022-08-15', 1839, 103016, 6315, NULL, '43.0000', '6.1500', '6.1500', '11.0000', '11.0000', '-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 (109225, '2022-08-15', 1306, 103017, 6315, 5581, '-9.0000', '22.5969', '22.5969', '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 (109226, '2022-08-15', 1306, 103017, 6315, NULL, '11.0000', '22.5969', '22.5969', '3.0000', '3.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 (109227, '2022-08-15', 1772, 103018, 6315, 4893, '-16.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 (109228, '2022-08-15', 1772, 103018, 6315, NULL, '17.0000', '6.0500', '6.0500', '8.0000', '8.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 (109229, '2022-08-15', 2640, 103019, 6315, NULL, '1.0000', '7.0400', '7.0400', '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 (109230, '2022-08-15', 2486, 103020, 6315, 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 (109231, '2022-08-15', 2858, 103021, 6315, 17772, '-121.0000', '1.0000', '1.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 (109232, '2022-08-15', 2858, 103021, 6315, NULL, '122.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-122.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109233, '2022-08-15', 1772, 103022, 6315, 4893, '-16.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 (109234, '2022-08-15', 1772, 103022, 6315, NULL, '17.0000', '6.0500', '6.0500', '8.0000', '8.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 (109235, '2022-08-15', 7357, 103023, 6316, NULL, '1.0000', '12.2000', '12.2000', '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 (109236, '2022-08-15', 8743, 103024, 6316, 60550, '1.0000', '16.2000', '16.2000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109237, '2022-08-15', 7524, 103025, 6317, NULL, '2.0000', '11.9500', '11.9500', '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 (109238, '2022-08-15', 9751, 103026, 6317, 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 (109239, '2022-08-15', 7763, 103027, 6317, NULL, '1.0000', '3.8000', '3.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 (109240, '2022-08-15', 9954, 103028, 6317, NULL, '1.0000', '8.4000', '8.4000', '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 (109241, '2022-08-15', 9692, 103029, 6317, NULL, '6.0000', '10.4500', '10.4500', '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 (109242, '2022-08-15', 2891, 103030, 6317, 18020, '-7.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 (109243, '2022-08-15', 2891, 103030, 6317, NULL, '8.0000', '9.5000', '9.5000', '12.0000', '12.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 (109244, '2022-08-15', 9984, 103031, 6317, 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 (109245, '2022-08-15', 8940, 103032, 6317, NULL, '3.0000', '4.9900', '4.9900', '13.5000', '13.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 (109246, '2022-08-15', 7379, 103033, 6317, NULL, '1.0000', '12.5100', '12.5100', '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 (109247, '2022-08-15', 7444, 103034, 6317, 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 (109248, '2022-08-15', 8136, 103035, 6317, NULL, '1.0000', '5.7700', '5.7700', '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 (109249, '2022-08-15', 7491, 103036, 6317, NULL, '1.0000', '5.6000', '5.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 (109250, '2022-08-15', 1689, 103037, 6317, 4897, '-23.0000', '60.7198', '60.7198', '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 (109251, '2022-08-15', 1689, 103037, 6317, NULL, '24.0000', '60.7198', '60.7198', '21.0000', '21.0000', '-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 (109252, '2022-08-15', 7779, 103038, 6317, NULL, '1.0000', '9.5000', '9.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 (109253, '2022-08-15', 9735, 103039, 6317, 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 (109254, '2022-08-15', 7933, 103040, 6317, NULL, '1.0000', '0.4400', '0.4400', '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 (109255, '2022-08-15', 7715, 103041, 6317, NULL, '1.0000', '1.8900', '1.8900', '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 (109256, '2022-08-15', 7514, 103042, 6317, NULL, '2.0000', '2.2500', '2.2500', '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 (109257, '2022-08-15', 7456, 103043, 6317, NULL, '1.0000', '34.7000', '34.7000', '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 (109258, '2022-08-15', 8005, 103044, 6317, NULL, '1.0000', '58.0000', '58.0000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109259, '2022-08-15', 7954, 103045, 6317, 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 (109260, '2022-08-15', 7719, 103046, 6317, NULL, '1.0000', '6.0000', '6.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 (109261, '2022-08-15', 8350, 103047, 6317, NULL, '1.0000', '12.0000', '12.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 (109262, '2022-08-15', 1409, 103048, 6317, 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 (109263, '2022-08-15', 7482, 103049, 6317, NULL, '1.0000', '3.0500', '3.0500', '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 (109264, '2022-08-15', 8924, 103050, 6317, NULL, '2.0000', '4.5000', '4.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 (109265, '2022-08-15', 2242, 103051, 6317, 3059, '-98.0000', '0.4800', '0.4800', '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 (109266, '2022-08-15', 2242, 103051, 6317, NULL, '101.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-101.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109267, '2022-08-15', 7318, 103052, 6317, NULL, '1.0000', '13.4400', '13.4400', '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 (109268, '2022-08-15', 7707, 103053, 6317, NULL, '1.0000', '7.0000', '7.0000', '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 (109269, '2022-08-15', 8020, 103054, 6317, NULL, '1.0000', '11.9000', '11.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 (109270, '2022-08-15', 9942, 103055, 6317, NULL, '1.0000', '9.1000', '9.1000', '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 (109271, '2022-08-15', 8889, 103056, 6317, NULL, '1.0000', '39.0000', '39.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 (109272, '2022-08-15', 7725, 103057, 6317, NULL, '1.0000', '7.0000', '7.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 (109273, '2022-08-15', 7641, 103058, 6317, NULL, '1.0000', '1.9000', '1.9000', '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 (109274, '2022-08-15', 8966, 103059, 6317, NULL, '1.0000', '6.8500', '6.8500', '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 (109275, '2022-08-15', 8134, 103060, 6317, NULL, '1.0000', '5.2300', '5.2300', '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 (109276, '2022-08-15', 7411, 103061, 6317, NULL, '1.0000', '1.3500', '1.3500', '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 (109277, '2022-08-15', 9092, 103062, 6317, NULL, '3.0000', '5.2900', '5.2900', '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 (109278, '2022-08-15', 1809, 103063, 6318, 7386, '-11.0000', '9.6000', '9.6000', '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 (109279, '2022-08-15', 1809, 103063, 6318, NULL, '12.0000', '9.6000', '9.6000', '16.0000', '16.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 (109280, '2022-08-15', 2109, 103064, 6318, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '55.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 (109281, '2022-08-15', 1637, 103065, 6318, 3210, '-12.0000', '10.2000', '10.2000', '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 (109282, '2022-08-15', 1637, 103065, 6318, NULL, '13.0000', '10.2000', '10.2000', '20.0000', '20.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 (109283, '2022-08-15', 8740, 103066, 6318, NULL, '1.0000', '2.0000', '2.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 (109284, '2022-08-15', 2169, 103067, 6318, 10737, '-210.0000', '3.8397', '3.8397', '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 (109285, '2022-08-15', 2169, 103067, 6318, NULL, '211.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-211.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109286, '2022-08-16', 9953, 103068, 6319, 60249, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109287, '2022-08-16', 2169, 103069, 6319, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109288, '2022-08-16', 2275, 103070, 6319, 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 (109289, '2022-08-16', 2302, 103071, 6319, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '41.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109290, '2022-08-16', 1904, 103072, 6319, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109291, '2022-08-16', 2769, 103073, 6319, NULL, '4.0000', '0.8008', '0.8008', '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 (109292, '2022-08-16', 7756, 103074, 6319, NULL, '1.0000', '2.5000', '2.5000', '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 (109293, '2022-08-16', 7704, 103075, 6319, NULL, '1.0000', '0.4900', '0.4900', '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 (109294, '2022-08-16', 9947, 103076, 6319, 60238, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109295, '2022-08-16', 9729, 103077, 6319, 57675, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109296, '2022-08-16', 2643, 103078, 6319, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109297, '2022-08-16', 2315, 103079, 6319, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109298, '2022-08-16', 1715, 103080, 6319, 60307, '1.0000', '8.2180', '8.2180', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109299, '2022-08-16', 9311, 103081, 6319, NULL, '1.0000', '7.8000', '7.8000', '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 (109300, '2022-08-16', 2416, 103082, 6319, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109301, '2022-08-16', 2366, 103083, 6319, NULL, '2.0000', '-98.6017', '-98.6017', '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 (109302, '2022-08-16', 9695, 103084, 6319, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109303, '2022-08-16', 8746, 103085, 6319, 60549, '1.0000', '3.0208', '3.0208', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109304, '2022-08-16', 2169, 103086, 6319, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109305, '2022-08-16', 1950, 103087, 6319, 58156, '1.0000', '6.3376', '6.3376', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109306, '2022-08-16', 1825, 103088, 6319, 60267, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109307, '2022-08-16', 1828, 103089, 6319, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109308, '2022-08-16', 9721, 103090, 6319, 58264, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109309, '2022-08-16', 9424, 103091, 6319, 51684, '1.0000', '-12.4625', '-12.4625', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109310, '2022-08-16', 1689, 103092, 6319, 60349, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109311, '2022-08-16', 1409, 103093, 6319, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109312, '2022-08-16', 2169, 103094, 6319, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109313, '2022-08-16', 1744, 103095, 6319, NULL, '1.0000', '138.0750', '138.0750', '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 (109314, '2022-08-16', 1700, 103096, 6319, NULL, '1.0000', '1.0000', '1.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 (109315, '2022-08-16', 1637, 103097, 6319, 60318, '2.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109316, '2022-08-16', 9979, 103098, 6319, NULL, '1.0000', '13.9000', '13.9000', '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 (109317, '2022-08-16', 1375, 103099, 6319, 60357, '1.0000', '32.9413', '32.9413', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109318, '2022-08-16', 2236, 103100, 6320, 60308, '1.0000', '5.5597', '5.5597', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109319, '2022-08-16', 2096, 103101, 6320, 58242, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109320, '2022-08-16', 2169, 103102, 6320, 60325, '2.0000', '1.7142', '1.7142', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109321, '2022-08-16', 2102, 103103, 6320, NULL, '1.0000', '-20.1000', '-20.1000', '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 (109322, '2022-08-16', 9783, 103104, 6321, 60304, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109323, '2022-08-16', 2332, 103105, 6321, NULL, '1.0000', '-41.5866', '-41.5866', '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 (109324, '2022-08-16', 8661, 103106, 6321, 60253, '1.0000', '5.6000', '5.6000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109325, '2022-08-16', 8193, 103107, 6321, NULL, '1.0000', '6.9800', '6.9800', '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 (109326, '2022-08-16', 2327, 103108, 6322, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109327, '2022-08-16', 9695, 103109, 6322, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109328, '2022-08-16', 1339, 103110, 6322, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109329, '2022-08-16', 1837, 103111, 6323, NULL, '6.0000', '0.9642', '0.9642', '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 (109330, '2022-08-16', 9827, 103112, 6323, NULL, '1.0000', '13.5000', '13.5000', '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 (109331, '2022-08-16', 2916, 103113, 6323, NULL, '1.0000', '15.0000', '15.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 (109332, '2022-08-16', 8444, 103114, 6323, 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 (109333, '2022-08-16', 2169, 103115, 6323, 10737, '-211.0000', '3.8397', '3.8397', '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 (109334, '2022-08-16', 2169, 103115, 6323, NULL, '212.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-212.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109335, '2022-08-16', 2858, 103116, 6323, 17772, '-122.0000', '1.0000', '1.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 (109336, '2022-08-16', 2858, 103116, 6323, NULL, '123.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109337, '2022-08-16', 1546, 103117, 6323, 1633, '-37.0000', '2.3697', '2.3697', '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 (109338, '2022-08-16', 1546, 103117, 6323, NULL, '47.0000', '2.3697', '2.3697', '4.0000', '4.0000', '-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 (109339, '2022-08-16', 1825, 103118, 6323, 11265, '-13.0000', '4.8000', '4.8000', '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 (109340, '2022-08-16', 1825, 103118, 6323, NULL, '14.0000', '4.8000', '4.8000', '10.0000', '10.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 (109341, '2022-08-16', 1876, 103119, 6323, 6312, '-2.0000', '0.9126', '0.9126', '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 (109342, '2022-08-16', 1876, 103119, 6323, NULL, '3.0000', '0.9126', '0.9126', '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 (109343, '2022-08-16', 9794, 103120, 6323, NULL, '1.0000', '1.0800', '1.0800', '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 (109344, '2022-08-16', 2706, 103121, 6323, 12525, '-4.0000', '6.5900', '6.5900', '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 (109345, '2022-08-16', 2706, 103121, 6323, NULL, '5.0000', '6.5900', '6.5900', '15.0000', '15.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 (109346, '2022-08-16', 1409, 103122, 6323, NULL, '2.0000', '13.0000', '13.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 (109347, '2022-08-16', 7741, 103123, 6323, NULL, '1.0000', '1.2000', '1.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 (109348, '2022-08-16', 8039, 103124, 6324, 59090, '2.0000', '15.7640', '15.7640', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109349, '2022-08-16', 7514, 103125, 6324, NULL, '1.0000', '223354.7898', '223354.7898', '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 (109350, '2022-08-16', 9751, 103126, 6324, 60568, '1.0000', '1.2432', '1.2432', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109351, '2022-08-16', 7491, 103127, 6324, NULL, '1.0000', '11.2001', '11.2001', '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 (109352, '2022-08-16', 8714, 103128, 6324, 56542, '1.0000', '3.8309', '3.8309', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109353, '2022-08-16', 9092, 103129, 6324, 60618, '7.0000', '0.3187', '0.3187', '0.5000', '0.5000', '131.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109354, '2022-08-16', 7385, 103130, 6324, 60459, '1.0000', '5.7239', '5.7239', '4.0000', '4.0000', '88.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109355, '2022-08-16', 9275, 103131, 6324, NULL, '2.0000', '6.3000', '6.3000', '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 (109356, '2022-08-16', 9399, 103132, 6324, NULL, '10.0000', '0.9803', '0.9803', '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 (109357, '2022-08-16', 8445, 103133, 6324, 45345, '1.0000', '35.2500', '35.2500', '46.0000', '46.0000', '1.0000', 1, 0, NULL, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109358, '2022-08-16', 7658, 103134, 6324, 56019, '2.0000', '188.9318', '188.9318', '3.5000', '3.5000', '58.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109359, '2022-08-16', 7917, 103135, 6324, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '56.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109360, '2022-08-16', 9734, 103136, 6324, 60144, '3.0000', '0.3152', '0.3152', '0.7000', '0.7000', '70.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109361, '2022-08-16', 8193, 103137, 6324, 57445, '1.0000', '32.0733', '32.0733', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109362, '2022-08-16', 8810, 103138, 6324, 56694, '2.0000', '10.8427', '10.8427', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109363, '2022-08-16', 7785, 103139, 6324, 46925, '1.0000', '3.9000', '3.9000', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109364, '2022-08-16', 7927, 103140, 6324, 59354, '1.0000', '12.7435', '12.7435', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109365, '2022-08-16', 7981, 103141, 6324, NULL, '10.0000', '-2.5818', '-2.5818', '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 (109366, '2022-08-16', 7318, 103142, 6324, 57645, '1.0000', '12.6298', '12.6298', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109367, '2022-08-16', 7491, 103143, 6324, NULL, '1.0000', '11.2001', '11.2001', '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 (109368, '2022-08-16', 8657, 103144, 6324, 56004, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109369, '2022-08-16', 8966, 103145, 6324, 56656, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109370, '2022-08-16', 7711, 103146, 6324, 59381, '1.0000', '49.6000', '49.6000', '65.5000', '65.5000', '8.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109371, '2022-08-16', 9747, 103147, 6324, 60584, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109372, '2022-08-16', 7674, 103148, 6324, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109373, '2022-08-16', 7665, 103149, 6324, 56567, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109374, '2022-08-16', 7636, 103150, 6324, 57623, '2.0000', '1.3285', '1.3285', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109375, '2022-08-16', 7806, 103151, 6324, NULL, '2.0000', '226.1990', '226.1990', '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 (109376, '2022-08-16', 7672, 103152, 6324, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109377, '2022-08-16', 7836, 103153, 6324, NULL, '1.0000', '-95.6400', '-95.6400', '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 (109378, '2022-08-16', 7633, 103154, 6324, 56062, '1.0000', '2.8700', '2.8700', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109379, '2022-08-16', 7444, 103155, 6324, 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 (109380, '2022-08-16', 8596, 103156, 6324, NULL, '1.0000', '39.8982', '39.8982', '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 (109381, '2022-08-16', 7564, 103157, 6324, 59164, '2.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109382, '2022-08-16', 7743, 103158, 6324, NULL, '1.0000', '919779.6853', '919779.6853', '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 (109383, '2022-08-16', 7752, 103159, 6324, 46196, '1.0000', '2.4834', '2.4834', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109384, '2022-08-16', 8658, 103160, 6324, NULL, '1.0000', '17.5167', '17.5167', '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 (109385, '2022-08-16', 7848, 103161, 6324, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (109386, '2022-08-16', 7317, 103162, 6324, 59094, '1.0000', '15.4364', '15.4364', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109387, '2022-08-16', 7756, 103163, 6324, 60439, '1.0000', '29.7681', '29.7681', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109388, '2022-08-16', 9734, 103164, 6324, 60144, '4.0000', '0.3152', '0.3152', '0.7000', '0.7000', '69.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109389, '2022-08-16', 8243, 103165, 6324, NULL, '1.0000', '1.1400', '1.1400', '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 (109390, '2022-08-16', 7346, 103166, 6324, 56150, '1.0000', '103.7200', '103.7200', '121.0000', '121.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109391, '2022-08-16', 7382, 103167, 6324, 60592, '1.0000', '9.0632', '9.0632', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109392, '2022-08-16', 7588, 103168, 6324, 60621, '1.0000', '8.3911', '8.3911', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109393, '2022-08-16', 7724, 103169, 6324, 52027, '1.0000', '9.7900', '9.7900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109394, '2022-08-16', 9946, 103170, 6325, 60280, '1.0000', '15.1000', '15.1000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109395, '2022-08-16', 2921, 103171, 6325, 58244, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109396, '2022-08-16', 1637, 103172, 6325, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109397, '2022-08-16', 9729, 103173, 6326, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109398, '2022-08-16', 9092, 103174, 6326, 60618, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '129.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109399, '2022-08-16', 7579, 103175, 6326, NULL, '2.0000', '15.0000', '15.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 (109400, '2022-08-16', 9016, 103176, 6326, NULL, '1.0000', '-8.3000', '-8.3000', '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 (109401, '2022-08-16', 2290, 103177, 6326, NULL, '1.0000', '9.8433', '9.8433', '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 (109402, '2022-08-16', 7345, 103178, 6326, 56149, '1.0000', '74.1700', '74.1700', '67.0000', '67.0000', '0.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109403, '2022-08-16', 7800, 103179, 6326, 51277, '2.0000', '54.4500', '54.4500', '72.0000', '72.0000', '0.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109404, '2022-08-16', 9219, 103180, 6326, 60173, '2.0000', '-5.1627', '-5.1627', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109405, '2022-08-16', 7334, 103181, 6326, 60416, '1.0000', '9.2913', '9.2913', '13.5000', '13.5000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109406, '2022-08-16', 7509, 103182, 6327, 60453, '1.0000', '8.8761', '8.8761', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109407, '2022-08-16', 7917, 103183, 6327, 52750, '2.0000', '2.1447', '2.1447', '0.7000', '0.7000', '54.0000', 1, 0, NULL, 441);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109408, '2022-08-16', 7523, 103184, 6327, 60157, '1.0000', '12.1102', '12.1102', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109409, '2022-08-16', 2315, 103185, 6328, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109410, '2022-08-16', 8745, 103186, 6328, 60544, '1.0000', '14.0066', '14.0066', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109411, '2022-08-16', 2169, 103187, 6328, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109412, '2022-08-16', 9207, 103188, 6328, NULL, '2.0000', '4.6000', '4.6000', '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 (109413, '2022-08-16', 2289, 103189, 6328, NULL, '3.0000', '0.3611', '0.3611', '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 (109414, '2022-08-16', 2293, 103190, 6328, NULL, '3.0000', '-17.4320', '-17.4320', '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 (109415, '2022-08-16', 2302, 103191, 6328, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109416, '2022-08-16', 1424, 103192, 6328, 48939, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109417, '2022-08-16', 1580, 103193, 6328, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109418, '2022-08-16', 9695, 103194, 6328, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109419, '2022-08-16', 2169, 103195, 6328, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109420, '2022-08-16', 1628, 103196, 6328, 60232, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109421, '2022-08-16', 2068, 103197, 6328, NULL, '1.0000', '14.6943', '14.6943', '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 (109422, '2022-08-16', 9750, 103198, 6328, NULL, '1.0000', '2.7458', '2.7458', '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 (109423, '2022-08-16', 2102, 103199, 6328, NULL, '1.0000', '-20.1000', '-20.1000', '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 (109424, '2022-08-16', 9734, 103200, 6328, 60360, '4.0000', '0.4261', '0.4261', '0.7000', '0.7000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109425, '2022-08-16', 9891, 103201, 6328, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '14.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109426, '2022-08-16', 1501, 103202, 6328, NULL, '1.0000', '0.3856', '0.3856', '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 (109427, '2022-08-16', 2302, 103203, 6328, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109428, '2022-08-16', 7459, 103204, 6328, NULL, '10.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (109429, '2022-08-16', 2916, 103205, 6328, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109430, '2022-08-16', 8622, 103206, 6328, 60237, '1.0000', '1.4898', '1.4898', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109431, '2022-08-16', 2104, 103207, 6328, 22380, '2.0000', '0.2000', '0.2000', '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 (109432, '2022-08-16', 2289, 103208, 6328, NULL, '2.0000', '0.3611', '0.3611', '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 (109433, '2022-08-16', 1637, 103209, 6328, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109434, '2022-08-16', 2302, 103210, 6328, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109435, '2022-08-16', 2379, 103211, 6328, NULL, '1.0000', '-14.1447', '-14.1447', '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 (109436, '2022-08-16', 7745, 103212, 6328, 58190, '1.0000', '6.7000', '6.7000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109437, '2022-08-16', 1837, 103213, 6328, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109438, '2022-08-16', 1424, 103214, 6328, 48939, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109439, '2022-08-16', 2256, 103215, 6328, 60350, '1.0000', '16.6000', '16.6000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109440, '2022-08-16', 1428, 103216, 6328, 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 (109441, '2022-08-16', 1637, 103217, 6328, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109442, '2022-08-16', 2104, 103218, 6328, 22380, '2.0000', '0.2000', '0.2000', '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 (109443, '2022-08-16', 1787, 103219, 6328, NULL, '1.0000', '0.5000', '0.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 (109444, '2022-08-16', 1855, 103220, 6329, NULL, '1.0000', '1.4615', '1.4615', '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 (109445, '2022-08-16', 9750, 103221, 6329, NULL, '1.0000', '2.7458', '2.7458', '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 (109446, '2022-08-16', 2948, 103222, 6329, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '41.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109447, '2022-08-16', 1837, 103223, 6329, 59893, '3.0000', '1.6544', '1.6544', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109448, '2022-08-16', 9995, 103224, 6329, NULL, '1.0000', '8.2000', '8.2000', '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 (109449, '2022-08-16', 8208, 103225, 6329, NULL, '1.0000', '47.9541', '47.9541', '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 (109450, '2022-08-16', 8933, 103226, 6329, NULL, '1.0000', '8.8300', '8.8300', '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 (109451, '2022-08-16', 7333, 103227, 6329, NULL, '1.0000', '13.5000', '13.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 (109452, '2022-08-16', 2169, 103228, 6329, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109453, '2022-08-16', 9750, 103229, 6329, NULL, '1.0000', '2.7458', '2.7458', '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 (109454, '2022-08-16', 9734, 103230, 6329, 60360, '1.0000', '0.4261', '0.4261', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109455, '2022-08-16', 2242, 103231, 6329, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109456, '2022-08-16', 2405, 103232, 6329, 56851, '5.0000', '1.2000', '1.2000', '1.8000', '1.8000', '7.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109457, '2022-08-16', 9800, 103233, 6329, 54162, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 457);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109458, '2022-08-16', 2262, 103234, 6329, 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 (109459, '2022-08-16', 9891, 103235, 6329, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '13.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109460, '2022-08-16', 1529, 103236, 6329, 57802, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109461, '2022-08-16', 1557, 103237, 6329, NULL, '1.0000', '8.2500', '8.2500', '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 (109462, '2022-08-16', 2656, 103238, 6329, 60555, '1.0000', '2.0601', '2.0601', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109463, '2022-08-16', 3044, 103239, 6329, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '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 (109464, '2022-08-16', 2169, 103240, 6329, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109465, '2022-08-16', 2260, 103241, 6329, 51688, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109466, '2022-08-16', 2169, 103242, 6329, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109467, '2022-08-16', 1860, 103243, 6329, 54547, '1.0000', '26.9175', '26.9175', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109468, '2022-08-16', 1846, 103244, 6329, NULL, '1.0000', '-296.8167', '-296.8167', '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 (109469, '2022-08-16', 7639, 103245, 6329, 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 (109470, '2022-08-16', 9985, 103246, 6329, 60245, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109471, '2022-08-16', 1779, 103247, 6329, 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 (109472, '2022-08-16', 7744, 103248, 6329, NULL, '1.0000', '2.5833', '2.5833', '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 (109473, '2022-08-16', 7587, 103249, 6330, NULL, '1.0000', '6.4400', '6.4400', '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 (109474, '2022-08-16', 9751, 103250, 6330, 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 (109475, '2022-08-16', 7641, 103251, 6330, NULL, '1.0000', '1.9000', '1.9000', '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 (109476, '2022-08-16', 8722, 103252, 6330, 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 (109477, '2022-08-16', 7576, 103253, 6330, NULL, '4.0000', '1.6300', '1.6300', '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 (109478, '2022-08-16', 9747, 103254, 6330, NULL, '3.0000', '0.6500', '0.6500', '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 (109479, '2022-08-16', 8810, 103255, 6330, NULL, '1.0000', '1.6000', '1.6000', '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 (109480, '2022-08-16', 1501, 103256, 6330, NULL, '1.0000', '2.0500', '2.0500', '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 (109481, '2022-08-16', 7527, 103257, 6330, NULL, '1.0000', '0.8900', '0.8900', '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 (109482, '2022-08-16', 8328, 103258, 6330, NULL, '2.0000', '10.0000', '10.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 (109483, '2022-08-16', 8097, 103259, 6330, NULL, '4.0000', '3.4000', '3.4000', '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 (109484, '2022-08-16', 7411, 103260, 6330, NULL, '1.0000', '1.3500', '1.3500', '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 (109485, '2022-08-16', 8979, 103261, 6330, NULL, '3.0000', '1.0000', '1.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 (109486, '2022-08-16', 9092, 103262, 6330, NULL, '5.0000', '5.2900', '5.2900', '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 (109487, '2022-08-16', 7412, 103263, 6330, NULL, '1.0000', '1.5200', '1.5200', '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 (109488, '2022-08-16', 8918, 103264, 6330, NULL, '1.0000', '1.0400', '1.0400', '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 (109489, '2022-08-16', 8444, 103265, 6330, 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 (109490, '2022-08-16', 9090, 103266, 6330, 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 (109491, '2022-08-16', 7959, 103267, 6330, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109492, '2022-08-16', 3045, 103268, 6330, NULL, '1.0000', '5.4200', '5.4200', '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 (109493, '2022-08-16', 7777, 103269, 6330, NULL, '1.0000', '9.5000', '9.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 (109494, '2022-08-16', 8005, 103270, 6330, NULL, '1.0000', '58.0000', '58.0000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109495, '2022-08-16', 7819, 103271, 6330, NULL, '1.0000', '9.5000', '9.5000', '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 (109496, '2022-08-16', 7762, 103272, 6330, NULL, '2.0000', '1.5000', '1.5000', '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 (109497, '2022-08-16', 7423, 103273, 6330, NULL, '1.0000', '13.2000', '13.2000', '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 (109498, '2022-08-16', 7674, 103274, 6330, NULL, '1.0000', '1.3000', '1.3000', '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 (109499, '2022-08-16', 7411, 103275, 6330, NULL, '1.0000', '1.3500', '1.3500', '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 (109500, '2022-08-16', 8187, 103276, 6330, NULL, '3.0000', '14.3900', '14.3900', '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 (109501, '2022-08-16', 7640, 103277, 6330, 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 (109502, '2022-08-16', 9456, 103278, 6330, NULL, '1.0000', '3.3200', '3.3200', '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 (109503, '2022-08-16', 7730, 103279, 6330, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (109504, '2022-08-16', 7865, 103280, 6330, NULL, '1.0000', '1.6300', '1.6300', '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 (109505, '2022-08-16', 7411, 103281, 6330, NULL, '2.0000', '1.3500', '1.3500', '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 (109506, '2022-08-16', 8878, 103282, 6330, NULL, '1.0000', '6.6700', '6.6700', '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 (109507, '2022-08-16', 7707, 103283, 6330, NULL, '1.0000', '7.0000', '7.0000', '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 (109508, '2022-08-16', 8548, 103284, 6330, NULL, '1.0000', '12.0000', '12.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 (109509, '2022-08-16', 8810, 103285, 6330, NULL, '1.0000', '1.6000', '1.6000', '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 (109510, '2022-08-16', 9399, 103286, 6330, NULL, '1.0000', '0.9800', '0.9800', '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 (109511, '2022-08-16', 7917, 103287, 6330, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (109512, '2022-08-16', 7518, 103288, 6330, NULL, '1.0000', '7.8200', '7.8200', '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 (109513, '2022-08-16', 1837, 103289, 6331, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109514, '2022-08-16', 1590, 103290, 6331, 49903, '1.0000', '2.2860', '2.2860', '3.5000', '3.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 (109515, '2022-08-16', 9725, 103291, 6331, 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 (109516, '2022-08-16', 2066, 103292, 6331, NULL, '1.0000', '0.5100', '0.5100', '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 (109517, '2022-08-16', 2169, 103293, 6331, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109518, '2022-08-16', 1787, 103294, 6331, NULL, '1.0000', '0.5000', '0.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 (109519, '2022-08-16', 2384, 103295, 6331, NULL, '5.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (109520, '2022-08-16', 1310, 103296, 6331, 60259, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109521, '2022-08-16', 2948, 103297, 6331, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109522, '2022-08-16', 9891, 103298, 6331, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '12.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109523, '2022-08-16', 9734, 103299, 6331, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109524, '2022-08-16', 7671, 103300, 6332, NULL, '1.0000', '15.5000', '15.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 (109525, '2022-08-16', 7658, 103301, 6332, NULL, '2.0000', '2.0200', '2.0200', '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 (109526, '2022-08-16', 9954, 103302, 6332, NULL, '1.0000', '8.4000', '8.4000', '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 (109527, '2022-08-16', 9092, 103303, 6332, NULL, '2.0000', '5.2900', '5.2900', '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 (109528, '2022-08-16', 2935, 103304, 6333, 60062, '1.0000', '13.5880', '13.5880', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109529, '2022-08-16', 8086, 103305, 6333, NULL, '1.0000', '12.0000', '12.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 (109530, '2022-08-16', 1999, 103306, 6333, 60531, '1.0000', '7.5395', '7.5395', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109531, '2022-08-16', 1647, 103307, 6333, 59985, '1.0000', '5.8258', '5.8258', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109532, '2022-08-16', 2354, 103308, 6333, 53253, '1.0000', '5.2506', '5.2506', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109533, '2022-08-16', 2273, 103309, 6333, 58816, '1.0000', '3.0283', '3.0283', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109534, '2022-08-16', 9943, 103310, 6333, 60007, '1.0000', '11.3313', '11.3313', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109535, '2022-08-16', 1541, 103311, 6333, 60079, '1.0000', '81.2777', '81.2777', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109536, '2022-08-16', 7638, 103312, 6333, 40602, '1.0000', '1.1651', '1.1651', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109537, '2022-08-16', 2169, 103313, 6333, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109538, '2022-08-16', 2858, 103314, 6333, 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 (109539, '2022-08-16', 2858, 103315, 6333, 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 (109540, '2022-08-16', 7745, 103316, 6333, 57997, '1.0000', '6.7000', '6.7000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109541, '2022-08-16', 2059, 103317, 6333, 60507, '1.0000', '12.8571', '12.8571', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109542, '2022-08-16', 1529, 103318, 6333, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109543, '2022-08-16', 2937, 103319, 6333, 55504, '1.0000', '5.4593', '5.4593', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109544, '2022-08-16', 1689, 103320, 6333, 60053, '1.0000', '14.3061', '14.3061', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109545, '2022-08-16', 9943, 103321, 6333, 60007, '1.0000', '11.3313', '11.3313', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109546, '2022-08-16', 1640, 103322, 6333, 58805, '1.0000', '5.2125', '5.2125', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109547, '2022-08-16', 1857, 103323, 6333, 59992, '1.0000', '-4.6298', '-4.6298', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109548, '2022-08-16', 2315, 103324, 6333, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109549, '2022-08-16', 1602, 103325, 6333, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '10.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109550, '2022-08-16', 2410, 103326, 6333, 58772, '1.0000', '6.6700', '6.6700', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109551, '2022-08-16', 2582, 103327, 6333, 53272, '1.0000', '14.0000', '14.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109552, '2022-08-16', 9716, 103328, 6333, 58813, '1.0000', '4.8500', '4.8500', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109553, '2022-08-16', 1754, 103329, 6333, 59980, '1.0000', '32.0617', '32.0617', '23.5000', '23.5000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109554, '2022-08-16', 2167, 103330, 6333, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109555, '2022-08-16', 9794, 103331, 6333, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109556, '2022-08-16', 1665, 103332, 6333, 59974, '3.0000', '1.1823', '1.1823', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109557, '2022-08-16', 2354, 103333, 6333, 53253, '1.0000', '5.2506', '5.2506', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109558, '2022-08-16', 8011, 103334, 6333, NULL, '1.0000', '0.9500', '0.9500', '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 (109559, '2022-08-16', 9794, 103335, 6333, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109560, '2022-08-16', 1812, 103336, 6333, 60049, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109561, '2022-08-16', 1812, 103336, 6333, 59963, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109562, '2022-08-16', 2331, 103337, 6333, 58609, '1.0000', '12.9127', '12.9127', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109563, '2022-08-16', 1347, 103338, 6333, 59626, '3.0000', '-0.5451', '-0.5451', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109564, '2022-08-16', 1339, 103339, 6333, 60024, '1.0000', '1.8897', '1.8897', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109565, '2022-08-16', 2352, 103340, 6333, 60000, '10.0000', '173.6650', '173.6650', '3.7000', '3.7000', '10.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109566, '2022-08-16', 1337, 103341, 6333, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109567, '2022-08-16', 1620, 103342, 6333, 56217, '4.0000', '2.2914', '2.2914', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109568, '2022-08-16', 2260, 103343, 6333, 56911, '1.0000', '4.6659', '4.6659', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109569, '2022-08-16', 2260, 103344, 6333, 56911, '4.0000', '4.6659', '4.6659', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109570, '2022-08-16', 2607, 103345, 6333, 42956, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109571, '2022-08-16', 1367, 103346, 6333, NULL, '10.0000', '3.2867', '3.2867', '11.0000', '11.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 (109572, '2022-08-16', 9891, 103347, 6334, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '11.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109573, '2022-08-16', 9734, 103348, 6334, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '33.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109574, '2022-08-16', 3039, 103349, 6334, 55153, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 473);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109575, '2022-08-16', 1409, 103350, 6334, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109576, '2022-08-16', 2066, 103351, 6334, NULL, '1.0000', '0.5100', '0.5100', '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 (109577, '2022-08-16', 1307, 103352, 6334, NULL, '1.0000', '-106.4636', '-106.4636', '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 (109578, '2022-08-16', 2259, 103353, 6334, 58154, '1.0000', '25.7085', '25.7085', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109579, '2022-08-16', 7592, 103354, 6334, NULL, '1.0000', '8.6500', '8.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 (109580, '2022-08-16', 9788, 103355, 6334, 54919, '4.0000', '1.5347', '1.5347', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109581, '2022-08-17', 9995, 103356, 6335, NULL, '1.0000', '8.2000', '8.2000', '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 (109582, '2022-08-17', 2302, 103357, 6335, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109583, '2022-08-17', 7741, 103358, 6335, NULL, '1.0000', '-174.4114', '-174.4114', '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 (109584, '2022-08-17', 2410, 103359, 6335, 60269, '1.0000', '4.9430', '4.9430', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109585, '2022-08-17', 1386, 103360, 6335, 60299, '1.0000', '4.5458', '4.5458', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109586, '2022-08-17', 2167, 103361, 6335, NULL, '1.0000', '0.6663', '0.6663', '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 (109587, '2022-08-17', 2416, 103362, 6335, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109588, '2022-08-17', 1510, 103363, 6335, NULL, '1.0000', '-13.8480', '-13.8480', '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 (109589, '2022-08-17', 9649, 103364, 6335, NULL, '1.0000', '2.6750', '2.6750', '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 (109590, '2022-08-17', 9783, 103365, 6335, 60304, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109591, '2022-08-17', 2346, 103366, 6335, NULL, '1.0000', '2.4743', '2.4743', '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 (109592, '2022-08-17', 1487, 103367, 6335, NULL, '1.0000', '1350.3996', '1350.3996', '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 (109593, '2022-08-17', 7777, 103368, 6335, NULL, '1.0000', '9.5000', '9.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 (109594, '2022-08-17', 9463, 103369, 6335, NULL, '1.0000', '287.4328', '287.4328', '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 (109595, '2022-08-17', 2273, 103370, 6335, 60335, '1.0000', '3.0605', '3.0605', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109596, '2022-08-17', 2379, 103371, 6335, NULL, '1.0000', '-14.1447', '-14.1447', '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 (109597, '2022-08-17', 2416, 103372, 6335, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109598, '2022-08-17', 9828, 103373, 6335, NULL, '2.0000', '2.9100', '2.9100', '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 (109599, '2022-08-17', 9946, 103374, 6335, NULL, '1.0000', '15.1000', '15.1000', '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 (109600, '2022-08-17', 1809, 103375, 6335, 54950, '1.0000', '10.1539', '10.1539', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109601, '2022-08-17', 1904, 103376, 6335, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109602, '2022-08-17', 9695, 103377, 6335, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109603, '2022-08-17', 2416, 103378, 6336, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109604, '2022-08-17', 1432, 103379, 6336, 59851, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109605, '2022-08-17', 2167, 103380, 6336, NULL, '1.0000', '0.6663', '0.6663', '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 (109606, '2022-08-17', 2948, 103381, 6336, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109607, '2022-08-17', 1695, 103382, 6336, 59605, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109608, '2022-08-17', 7586, 103383, 6336, NULL, '1.0000', '-3.1500', '-3.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 (109609, '2022-08-17', 1646, 103384, 6336, 60270, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109610, '2022-08-17', 9822, 103385, 6336, 58124, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109611, '2022-08-17', 1557, 103386, 6336, NULL, '1.0000', '8.2500', '8.2500', '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 (109612, '2022-08-17', 9683, 103387, 6336, 60556, '1.0000', '0.8886', '0.8886', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109613, '2022-08-17', 2262, 103388, 6336, 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 (109614, '2022-08-17', 2275, 103389, 6336, 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 (109615, '2022-08-17', 1310, 103390, 6337, 60259, '25.0000', '0.4100', '0.4100', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109616, '2022-08-17', 7989, 103391, 6338, NULL, '2.0000', '-35.9089', '-35.9089', '60.0000', '60.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 (109617, '2022-08-17', 7630, 103392, 6338, 59310, '2.0000', '4.5400', '4.5400', '4.5000', '4.5000', '33.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109618, '2022-08-17', 7762, 103393, 6338, 60602, '1.0000', '1.4586', '1.4586', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109619, '2022-08-17', 7641, 103394, 6338, 60128, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109620, '2022-08-17', 7848, 103395, 6338, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (109621, '2022-08-17', 7780, 103396, 6338, NULL, '2.0000', '12.9226', '12.9226', '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 (109622, '2022-08-17', 9894, 103397, 6338, 59344, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109623, '2022-08-17', 7380, 103398, 6338, 60623, '1.0000', '13.9786', '13.9786', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109624, '2022-08-17', 1965, 103399, 6338, NULL, '1.0000', '22.4400', '22.4400', '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 (109625, '2022-08-17', 7894, 103400, 6338, 60624, '1.0000', '32.1111', '32.1111', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109626, '2022-08-17', 7453, 103401, 6338, 60420, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109627, '2022-08-17', 9762, 103402, 6338, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109628, '2022-08-17', 7730, 103403, 6338, 60195, '2.0000', '0.0723', '0.0723', '0.2000', '0.2000', '119.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109629, '2022-08-17', 7636, 103404, 6338, 57623, '4.0000', '1.3285', '1.3285', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109630, '2022-08-17', 7548, 103405, 6338, NULL, '1.0000', '3.9186', '3.9186', '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 (109631, '2022-08-17', 8154, 103406, 6338, NULL, '2.0000', '12.3000', '12.3000', '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 (109632, '2022-08-17', 7640, 103407, 6338, 56029, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109633, '2022-08-17', 7473, 103408, 6338, 60388, '4.0000', '0.5398', '0.5398', '0.7000', '0.7000', '63.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109634, '2022-08-17', 2038, 103409, 6338, NULL, '1.0000', '10.0000', '10.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 (109635, '2022-08-17', 2403, 103410, 6339, 48210, '1.0000', '17.7915', '17.7915', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109636, '2022-08-17', 8044, 103411, 6339, NULL, '1.0000', '1.5000', '1.5000', '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 (109637, '2022-08-17', 2444, 103412, 6339, 22549, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '1.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 (109638, '2022-08-17', 1699, 103413, 6340, NULL, '1.0000', '-5.0000', '-5.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 (109639, '2022-08-17', 9695, 103414, 6340, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109640, '2022-08-17', 2965, 103415, 6340, NULL, '1.0000', '23.6916', '23.6916', '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 (109641, '2022-08-17', 7382, 103416, 6341, 60592, '1.0000', '9.0632', '9.0632', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109642, '2022-08-17', 9272, 103417, 6341, NULL, '1.0000', '3.1000', '3.1000', '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 (109643, '2022-08-17', 1942, 103418, 6342, 5593, '-3.0000', '19.0000', '19.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 (109644, '2022-08-17', 1942, 103418, 6342, NULL, '4.0000', '19.0000', '19.0000', '28.0000', '28.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 (109645, '2022-08-17', 1674, 103419, 6342, NULL, '1.0000', '3.6000', '3.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 (109646, '2022-08-17', 9747, 103420, 6342, NULL, '1.0000', '0.6500', '0.6500', '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 (109647, '2022-08-17', 1665, 103421, 6342, 3235, '-153.0000', '1.3000', '1.3000', '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 (109648, '2022-08-17', 1665, 103421, 6342, NULL, '154.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-154.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109649, '2022-08-17', 9729, 103422, 6342, NULL, '1.0000', '0.6200', '0.6200', '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 (109650, '2022-08-17', 1572, 103423, 6342, 435, '1.0000', '138.3520', '138.3520', '3.0000', '3.0000', '5.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 (109651, '2022-08-17', 2285, 103424, 6342, 2945, '-56.0000', '35.8000', '35.8000', '65.5000', '65.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 (109652, '2022-08-17', 2285, 103424, 6342, NULL, '57.0000', '35.8000', '35.8000', '65.5000', '65.5000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109653, '2022-08-17', 2823, 103425, 6342, 19684, '-24.0000', '11.2100', '11.2100', '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 (109654, '2022-08-17', 2823, 103425, 6342, NULL, '25.0000', '11.2100', '11.2100', '10.0000', '10.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 (109655, '2022-08-17', 9634, 103426, 6342, NULL, '2.0000', '4.8000', '4.8000', '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 (109656, '2022-08-17', 2327, 103427, 6342, 5083, '-46.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 (109657, '2022-08-17', 2327, 103427, 6342, NULL, '48.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109658, '2022-08-17', 9680, 103428, 6342, NULL, '1.0000', '37.0000', '37.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 (109659, '2022-08-17', 9566, 103429, 6342, NULL, '1.0000', '33.0000', '33.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 (109660, '2022-08-17', 2237, 103430, 6342, 2781, '-85.0000', '1.0600', '1.0600', '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 (109661, '2022-08-17', 2237, 103430, 6342, NULL, '86.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109662, '2022-08-17', 7722, 103431, 6342, NULL, '1.0000', '11.0000', '11.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 (109663, '2022-08-17', 1337, 103432, 6342, 10809, '-31.0000', '2.0000', '2.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 (109664, '2022-08-17', 1337, 103432, 6342, NULL, '32.0000', '2.0000', '2.0000', '3.5000', '3.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109665, '2022-08-17', 2109, 103433, 6342, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '54.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 (109666, '2022-08-17', 1999, 103434, 6342, 6362, '-18.0000', '6.0000', '6.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 (109667, '2022-08-17', 1999, 103434, 6342, NULL, '19.0000', '6.0000', '6.0000', '12.0000', '12.0000', '-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 (109668, '2022-08-17', 1399, 103435, 6342, NULL, '1.0000', '13.3890', '13.3890', '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 (109669, '2022-08-17', 9867, 103436, 6343, 60220, '10.0000', '10.2176', '10.2176', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109670, '2022-08-17', 2302, 103437, 6343, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109671, '2022-08-17', 2283, 103438, 6343, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109672, '2022-08-17', 1695, 103439, 6343, 58122, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109673, '2022-08-17', 9740, 103440, 6343, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109674, '2022-08-17', 1689, 103441, 6343, 60349, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109675, '2022-08-17', 2237, 103442, 6343, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109676, '2022-08-17', 1699, 103443, 6343, NULL, '1.0000', '-5.0000', '-5.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 (109677, '2022-08-17', 9503, 103444, 6343, NULL, '1.0000', '24.1775', '24.1775', '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 (109678, '2022-08-17', 9740, 103445, 6343, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109679, '2022-08-17', 1855, 103446, 6343, NULL, '2.0000', '1.4615', '1.4615', '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 (109680, '2022-08-17', 9773, 103447, 6343, 49306, '1.0000', '48.1000', '48.1000', '63.5000', '63.5000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109681, '2022-08-17', 2363, 103448, 6343, NULL, '1.0000', '3.2771', '3.2771', '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 (109682, '2022-08-17', 1856, 103449, 6343, NULL, '1.0000', '155.0099', '155.0099', '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 (109683, '2022-08-17', 7358, 103450, 6343, NULL, '1.0000', '18.8000', '18.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 (109684, '2022-08-17', 8476, 103451, 6343, NULL, '3.0000', '23.0000', '23.0000', '0.6000', '0.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 (109685, '2022-08-17', 2699, 103452, 6343, 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 (109686, '2022-08-17', 2068, 103453, 6343, NULL, '1.0000', '14.6943', '14.6943', '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 (109687, '2022-08-17', 1761, 103454, 6343, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109688, '2022-08-17', 7954, 103455, 6343, 57084, '2.0000', '2.4470', '2.4470', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109689, '2022-08-17', 1342, 103456, 6343, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109690, '2022-08-17', 2302, 103457, 6343, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109691, '2022-08-17', 7741, 103458, 6343, NULL, '1.0000', '-174.4114', '-174.4114', '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 (109692, '2022-08-17', 1841, 103459, 6343, NULL, '2.0000', '0.7630', '0.7630', '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 (109693, '2022-08-17', 7591, 103460, 6343, NULL, '1.0000', '2.7500', '2.7500', '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 (109694, '2022-08-17', 1763, 103461, 6343, NULL, '1.0000', '4.6631', '4.6631', '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 (109695, '2022-08-17', 8444, 103462, 6343, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109696, '2022-08-17', 7672, 103463, 6343, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109697, '2022-08-17', 2262, 103464, 6343, 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 (109698, '2022-08-17', 2643, 103465, 6343, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109699, '2022-08-17', 1670, 103466, 6343, NULL, '1.0000', '-32.2503', '-32.2503', '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 (109700, '2022-08-17', 1541, 103467, 6343, 48603, '1.0000', '19.0000', '19.0000', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109701, '2022-08-17', 2167, 103468, 6343, NULL, '1.0000', '0.6663', '0.6663', '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 (109702, '2022-08-17', 2262, 103469, 6343, 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 (109703, '2022-08-17', 9695, 103470, 6343, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109704, '2022-08-17', 2167, 103471, 6343, NULL, '1.0000', '0.6663', '0.6663', '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 (109705, '2022-08-17', 1409, 103472, 6343, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109706, '2022-08-17', 2262, 103473, 6343, 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 (109707, '2022-08-17', 2521, 103474, 6343, 59701, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109708, '2022-08-17', 2548, 103475, 6343, 55634, '1.0000', '7.6792', '7.6792', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109709, '2022-08-17', 2642, 103476, 6343, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109710, '2022-08-17', 9750, 103477, 6343, NULL, '1.0000', '2.7458', '2.7458', '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 (109711, '2022-08-17', 1386, 103478, 6343, 60299, '1.0000', '4.5458', '4.5458', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109712, '2022-08-17', 8883, 103479, 6343, NULL, '4.0000', '56.5500', '56.5500', '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 (109713, '2022-08-17', 2617, 103480, 6343, NULL, '1.0000', '-5.4200', '-5.4200', '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 (109714, '2022-08-17', 1665, 103481, 6343, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109715, '2022-08-17', 2237, 103482, 6343, 57669, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109716, '2022-08-17', 1855, 103483, 6343, NULL, '1.0000', '1.4615', '1.4615', '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 (109717, '2022-08-17', 2345, 103484, 6343, 60322, '1.0000', '7.6701', '7.6701', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109718, '2022-08-17', 2604, 103485, 6344, 34974, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109719, '2022-08-17', 7379, 103486, 6344, NULL, '1.0000', '12.5100', '12.5100', '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 (109720, '2022-08-17', 2379, 103487, 6344, NULL, '1.0000', '-14.1447', '-14.1447', '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 (109721, '2022-08-17', 2699, 103488, 6344, 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 (109722, '2022-08-17', 1837, 103489, 6344, 59893, '1.0000', '1.6544', '1.6544', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109723, '2022-08-17', 7944, 103490, 6344, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109724, '2022-08-17', 1529, 103491, 6344, 48650, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109725, '2022-08-17', 1690, 103492, 6344, 60355, '1.0000', '8.6455', '8.6455', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109726, '2022-08-17', 9783, 103493, 6344, 60304, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109727, '2022-08-17', 9953, 103494, 6344, 60249, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109728, '2022-08-17', 8638, 103495, 6344, NULL, '1.0000', '0.5254', '0.5254', '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 (109729, '2022-08-17', 2262, 103496, 6344, 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 (109730, '2022-08-17', 2324, 103497, 6344, 59691, '1.0000', '13.9286', '13.9286', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109731, '2022-08-17', 9734, 103498, 6344, 60360, '4.0000', '0.4261', '0.4261', '0.7000', '0.7000', '29.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109732, '2022-08-17', 1311, 103499, 6344, NULL, '4.0000', '0.3700', '0.3700', '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 (109733, '2022-08-17', 1307, 103500, 6344, NULL, '1.0000', '-106.4636', '-106.4636', '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 (109734, '2022-08-17', 1501, 103501, 6344, NULL, '1.0000', '0.3856', '0.3856', '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 (109735, '2022-08-17', 9828, 103502, 6344, NULL, '1.0000', '2.9100', '2.9100', '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 (109736, '2022-08-17', 2302, 103503, 6344, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109737, '2022-08-17', 2543, 103504, 6344, 60263, '1.0000', '3.3251', '3.3251', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109738, '2022-08-17', 2262, 103505, 6344, 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 (109739, '2022-08-17', 2416, 103506, 6345, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109740, '2022-08-17', 9695, 103507, 6345, 58550, '1.0000', '5.7386', '5.7386', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109741, '2022-08-17', 1511, 103508, 6345, 54593, '1.0000', '42.8914', '42.8914', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109742, '2022-08-17', 2169, 103509, 6345, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109743, '2022-08-17', 2167, 103510, 6345, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109744, '2022-08-17', 2276, 103511, 6345, 46571, '1.0000', '55.1000', '55.1000', '73.0000', '73.0000', '2.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109745, '2022-08-17', 1715, 103512, 6345, 60012, '1.0000', '7.4167', '7.4167', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109746, '2022-08-17', 2109, 103513, 6345, 40229, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109747, '2022-08-17', 2416, 103514, 6345, 58008, '1.0000', '1.3102', '1.3102', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109748, '2022-08-17', 2821, 103515, 6345, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109749, '2022-08-17', 1925, 103516, 6345, 53256, '1.0000', '1.2449', '1.2449', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109750, '2022-08-17', 9895, 103517, 6345, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '23.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109751, '2022-08-17', 2821, 103518, 6345, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109752, '2022-08-17', 1744, 103519, 6345, 58761, '1.0000', '31.7371', '31.7371', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109753, '2022-08-17', 2262, 103520, 6345, 55469, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109754, '2022-08-17', 7819, 103521, 6345, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '7.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109755, '2022-08-17', 2315, 103522, 6345, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109756, '2022-08-17', 9716, 103523, 6345, 58813, '1.0000', '4.8500', '4.8500', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109757, '2022-08-17', 2582, 103524, 6345, 53272, '1.0000', '14.0000', '14.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109758, '2022-08-17', 2316, 103525, 6345, 32617, '1.0000', '47.6625', '47.6625', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109759, '2022-08-17', 9891, 103526, 6345, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '11.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109760, '2022-08-17', 2738, 103527, 6345, 56938, '2.0000', '8.9533', '8.9533', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109761, '2022-08-17', 2260, 103528, 6345, 56911, '4.0000', '4.6659', '4.6659', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109762, '2022-08-17', 9961, 103529, 6345, 58543, '1.0000', '18.5000', '18.5000', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109763, '2022-08-17', 7917, 103530, 6345, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109764, '2022-08-17', 1809, 103531, 6345, 58799, '1.0000', '10.3854', '10.3854', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109765, '2022-08-17', 2858, 103532, 6345, 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 (109766, '2022-08-17', 3013, 103533, 6345, 60009, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109767, '2022-08-17', 1347, 103534, 6345, 59626, '1.0000', '-0.5451', '-0.5451', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109768, '2022-08-17', 9811, 103535, 6345, 52291, '1.0000', '22.9800', '22.9800', '31.0000', '31.0000', '1.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109769, '2022-08-17', 7743, 103536, 6346, NULL, '3.0000', '1.3100', '1.3100', '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 (109770, '2022-08-17', 7666, 103537, 6346, NULL, '2.0000', '3.6000', '3.6000', '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 (109771, '2022-08-17', 7509, 103538, 6346, NULL, '2.0000', '6.5000', '6.5000', '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 (109772, '2022-08-17', 7672, 103539, 6346, NULL, '2.0000', '1.0200', '1.0200', '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 (109773, '2022-08-17', 7385, 103540, 6346, NULL, '1.0000', '2.0000', '2.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 (109774, '2022-08-17', 8467, 103541, 6346, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109775, '2022-08-17', 8068, 103542, 6346, NULL, '1.0000', '8.7900', '8.7900', '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 (109776, '2022-08-17', 7950, 103543, 6346, NULL, '1.0000', '2.4000', '2.4000', '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 (109777, '2022-08-17', 9092, 103544, 6346, NULL, '2.0000', '5.2900', '5.2900', '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 (109778, '2022-08-17', 9186, 103545, 6346, 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 (109779, '2022-08-17', 7514, 103546, 6346, NULL, '4.0000', '2.2500', '2.2500', '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 (109780, '2022-08-17', 7411, 103547, 6346, NULL, '2.0000', '1.3500', '1.3500', '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 (109781, '2022-08-17', 9609, 103548, 6346, NULL, '1.0000', '6.4000', '6.4000', '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 (109782, '2022-08-17', 1804, 103549, 6346, 4916, '-21.0000', '4.2500', '4.2500', '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 (109783, '2022-08-17', 1804, 103549, 6346, NULL, '22.0000', '4.2500', '4.2500', '10.0000', '10.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109784, '2022-08-17', 8467, 103550, 6346, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109785, '2022-08-17', 7716, 103551, 6346, NULL, '1.0000', '0.0000', '0.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 (109786, '2022-08-17', 7453, 103552, 6346, NULL, '1.0000', '28.5000', '28.5000', '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 (109787, '2022-08-17', 7634, 103553, 6346, NULL, '1.0000', '1.8000', '1.8000', '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 (109788, '2022-08-17', 7411, 103554, 6346, NULL, '1.0000', '1.3500', '1.3500', '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 (109789, '2022-08-17', 9734, 103555, 6346, NULL, '2.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109790, '2022-08-17', 7482, 103556, 6346, NULL, '2.0000', '3.0500', '3.0500', '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 (109791, '2022-08-17', 2242, 103557, 6346, 3059, '-101.0000', '0.4800', '0.4800', '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 (109792, '2022-08-17', 2242, 103557, 6346, NULL, '104.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-104.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109793, '2022-08-17', 9092, 103558, 6346, NULL, '3.0000', '5.2900', '5.2900', '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 (109794, '2022-08-17', 7954, 103559, 6346, 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 (109795, '2022-08-17', 7954, 103560, 6346, NULL, '2.0000', '3.0000', '3.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 (109796, '2022-08-17', 7658, 103561, 6346, NULL, '3.0000', '2.0200', '2.0200', '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 (109797, '2022-08-17', 7636, 103562, 6346, NULL, '2.0000', '2.5000', '2.5000', '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 (109798, '2022-08-17', 9107, 103563, 6346, NULL, '1.0000', '3.4000', '3.4000', '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 (109799, '2022-08-17', 8362, 103564, 6346, NULL, '1.0000', '0.6000', '0.6000', '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 (109800, '2022-08-17', 9788, 103565, 6346, NULL, '4.0000', '1.3000', '1.3000', '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 (109801, '2022-08-17', 9695, 103566, 6346, NULL, '1.0000', '4.5000', '4.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 (109802, '2022-08-17', 7917, 103567, 6346, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (109803, '2022-08-17', 7666, 103568, 6346, NULL, '1.0000', '3.6000', '3.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 (109804, '2022-08-17', 8200, 103569, 6346, NULL, '1.0000', '6.2600', '6.2600', '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 (109805, '2022-08-17', 7400, 103570, 6346, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109806, '2022-08-17', 2260, 103571, 6346, 2796, '-24.0000', '4.2000', '4.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 (109807, '2022-08-17', 2260, 103571, 6346, NULL, '26.0000', '4.2000', '4.2000', '7.0000', '7.0000', '-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 (109808, '2022-08-17', 8444, 103572, 6346, 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 (109809, '2022-08-17', 7967, 103573, 6346, 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 (109810, '2022-08-17', 9269, 103574, 6346, NULL, '1.0000', '3.4000', '3.4000', '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 (109811, '2022-08-17', 7674, 103575, 6346, NULL, '1.0000', '1.3000', '1.3000', '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 (109812, '2022-08-17', 7317, 103576, 6346, NULL, '1.0000', '19.5500', '19.5500', '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 (109813, '2022-08-17', 2283, 103577, 6346, 2943, '-34.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 (109814, '2022-08-17', 2283, 103577, 6346, NULL, '35.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109815, '2022-08-17', 7674, 103578, 6346, NULL, '2.0000', '1.3000', '1.3000', '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 (109816, '2022-08-17', 1855, 103579, 6346, 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 (109817, '2022-08-17', 8101, 103580, 6346, NULL, '2.0000', '1.9700', '1.9700', '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 (109818, '2022-08-17', 9098, 103581, 6346, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109819, '2022-08-17', 9461, 103582, 6346, NULL, '1.0000', '1.6000', '1.6000', '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 (109820, '2022-08-17', 8395, 103583, 6346, NULL, '1.0000', '0.9700', '0.9700', '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 (109821, '2022-08-17', 7411, 103584, 6346, NULL, '1.0000', '1.3500', '1.3500', '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 (109822, '2022-08-17', 8548, 103585, 6346, NULL, '1.0000', '12.0000', '12.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 (109823, '2022-08-17', 8101, 103586, 6346, NULL, '2.0000', '1.9700', '1.9700', '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 (109824, '2022-08-17', 7674, 103587, 6346, NULL, '2.0000', '1.3000', '1.3000', '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 (109825, '2022-08-17', 8810, 103588, 6346, NULL, '2.0000', '1.6000', '1.6000', '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 (109826, '2022-08-17', 7411, 103589, 6346, NULL, '2.0000', '1.3500', '1.3500', '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 (109827, '2022-08-17', 2315, 103590, 6346, 2735, '-626.0000', '0.3300', '0.3300', '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 (109828, '2022-08-17', 2315, 103590, 6346, NULL, '627.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-627.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109829, '2022-08-17', 7832, 103591, 6346, NULL, '1.0000', '10.0000', '10.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 (109830, '2022-08-17', 7530, 103592, 6346, NULL, '1.0000', '7.7000', '7.7000', '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 (109831, '2022-08-17', 7591, 103593, 6346, NULL, '1.0000', '2.7500', '2.7500', '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 (109832, '2022-08-17', 2284, 103594, 6346, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.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 (109833, '2022-08-17', 1916, 103595, 6346, 5445, '-11.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109834, '2022-08-17', 1916, 103595, 6346, NULL, '12.0000', '8.2300', '8.2300', '14.0000', '14.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 (109835, '2022-08-17', 7473, 103596, 6346, NULL, '1.0000', '0.5300', '0.5300', '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 (109836, '2022-08-17', 7483, 103597, 6346, NULL, '3.0000', '0.4200', '0.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 (109837, '2022-08-17', 9791, 103598, 6346, NULL, '2.0000', '0.9000', '0.9000', '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 (109838, '2022-08-17', 7674, 103599, 6346, NULL, '1.0000', '1.3000', '1.3000', '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 (109839, '2022-08-17', 7637, 103600, 6346, NULL, '1.0000', '7.3300', '7.3300', '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 (109840, '2022-08-17', 7619, 103601, 6346, NULL, '1.0000', '36.9800', '36.9800', '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 (109841, '2022-08-17', 7672, 103602, 6346, NULL, '2.0000', '1.0200', '1.0200', '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 (109842, '2022-08-17', 7859, 103603, 6346, NULL, '1.0000', '12.6300', '12.6300', '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 (109843, '2022-08-17', 1686, 103604, 6347, 56895, '1.0000', '30.1171', '30.1171', '46.5000', '46.5000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109844, '2022-08-17', 1910, 103605, 6348, NULL, '1.0000', '0.5756', '0.5756', '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 (109845, '2022-08-17', 1339, 103606, 6348, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109846, '2022-08-17', 3059, 103607, 6348, 59839, '1.0000', '1.1792', '1.1792', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109847, '2022-08-18', 9586, 103608, 6349, 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 (109848, '2022-08-18', 7604, 103609, 6349, NULL, '1.0000', '4.3900', '4.3900', '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 (109849, '2022-08-18', 1822, 103610, 6349, 8225, '-206.0000', '2.4000', '2.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 (109850, '2022-08-18', 1822, 103610, 6349, NULL, '207.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-207.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109851, '2022-08-18', 1822, 103611, 6349, 8225, '-206.0000', '2.4000', '2.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 (109852, '2022-08-18', 1822, 103611, 6349, NULL, '216.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-216.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109853, '2022-08-18', 1501, 103612, 6349, NULL, '2.0000', '2.0500', '2.0500', '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 (109854, '2022-08-18', 9747, 103613, 6349, NULL, '1.0000', '0.6500', '0.6500', '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 (109855, '2022-08-18', 1871, 103614, 6349, 8223, '-290.0000', '24.5246', '24.5246', '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 (109856, '2022-08-18', 1871, 103614, 6349, NULL, '300.0000', '24.5246', '24.5246', '3.7000', '3.7000', '-300.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109857, '2022-08-18', 2643, 103615, 6349, NULL, '1.0000', '0.8700', '0.8700', '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 (109858, '2022-08-18', 1525, 103616, 6349, NULL, '3.0000', '4.9100', '4.9100', '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 (109859, '2022-08-18', 1855, 103617, 6350, 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 (109860, '2022-08-18', 2758, 103618, 6351, 22011, '-8.0000', '-20.1917', '-20.1917', '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 (109861, '2022-08-18', 2758, 103618, 6351, NULL, '10.0000', '-20.1917', '-20.1917', '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 (109862, '2022-08-18', 1840, 103619, 6351, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (109863, '2022-08-18', 1841, 103620, 6351, NULL, '2.0000', '142.5780', '142.5780', '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 (109864, '2022-08-18', 8208, 103621, 6351, NULL, '2.0000', '33.0000', '33.0000', '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 (109865, '2022-08-18', 2109, 103622, 6352, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '53.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 (109866, '2022-08-18', 2411, 103623, 6353, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109867, '2022-08-18', 1912, 103624, 6353, NULL, '2.0000', '0.6868', '0.6868', '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 (109868, '2022-08-18', 2167, 103625, 6353, NULL, '1.0000', '0.6663', '0.6663', '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 (109869, '2022-08-18', 1828, 103626, 6353, 59837, '2.0000', '1.9383', '1.9383', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109870, '2022-08-18', 2416, 103627, 6353, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109871, '2022-08-18', 1905, 103628, 6353, NULL, '1.0000', '0.5203', '0.5203', '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 (109872, '2022-08-18', 2416, 103629, 6353, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109873, '2022-08-18', 1339, 103630, 6353, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109874, '2022-08-18', 9690, 103631, 6353, 58209, '1.0000', '25.4200', '25.4200', '34.5000', '34.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109875, '2022-08-18', 7672, 103632, 6353, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109876, '2022-08-18', 2060, 103633, 6353, NULL, '1.0000', '0.3295', '0.3295', '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 (109877, '2022-08-18', 7640, 103634, 6353, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109878, '2022-08-18', 1810, 103635, 6353, NULL, '1.0000', '32.9337', '32.9337', '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 (109879, '2022-08-18', 1644, 103636, 6353, 60241, '1.0000', '40.0000', '40.0000', '53.0000', '53.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109880, '2022-08-18', 2916, 103637, 6353, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109881, '2022-08-18', 9740, 103638, 6353, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109882, '2022-08-18', 7886, 103639, 6353, NULL, '1.0000', '14.5000', '14.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 (109883, '2022-08-18', 2060, 103640, 6353, NULL, '1.0000', '0.3295', '0.3295', '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 (109884, '2022-08-18', 9828, 103641, 6353, NULL, '1.0000', '2.9100', '2.9100', '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 (109885, '2022-08-18', 2643, 103642, 6353, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109886, '2022-08-18', 2945, 103643, 6353, 57785, '1.0000', '9.3750', '9.3750', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109887, '2022-08-18', 1342, 103644, 6353, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109888, '2022-08-18', 9750, 103645, 6353, NULL, '1.0000', '2.7458', '2.7458', '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 (109889, '2022-08-18', 7640, 103646, 6353, 39803, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109890, '2022-08-18', 2948, 103647, 6353, 60261, '2.0000', '1.0692', '1.0692', '3.5000', '3.5000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109891, '2022-08-18', 9151, 103648, 6353, 58249, '1.0000', '9.7000', '9.7000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109892, '2022-08-18', 1616, 103649, 6353, 60339, '10.0000', '0.1071', '0.1071', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109893, '2022-08-18', 9828, 103650, 6353, NULL, '1.0000', '2.9100', '2.9100', '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 (109894, '2022-08-18', 2916, 103651, 6353, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109895, '2022-08-18', 7431, 103652, 6353, 39832, '1.0000', '18.0000', '18.0000', '33.0000', '33.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109896, '2022-08-18', 8039, 103653, 6353, NULL, '1.0000', '12.9000', '12.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 (109897, '2022-08-18', 7562, 103654, 6353, NULL, '1.0000', '7.6300', '7.6300', '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 (109898, '2022-08-18', 2517, 103655, 6353, 49906, '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 (109899, '2022-08-18', 9695, 103656, 6353, 60534, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109900, '2022-08-18', 9213, 103657, 6353, 59655, '1.0000', '-7809.8679', '-7809.8679', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109901, '2022-08-18', 3059, 103658, 6353, 59839, '1.0000', '1.1792', '1.1792', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109902, '2022-08-18', 1910, 103659, 6354, NULL, '1.0000', '0.5756', '0.5756', '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 (109903, '2022-08-18', 1340, 103660, 6354, NULL, '1.0000', '3.6001', '3.6001', '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 (109904, '2022-08-18', 9891, 103661, 6354, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '10.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109905, '2022-08-18', 2345, 103662, 6354, 60322, '1.0000', '7.6701', '7.6701', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109906, '2022-08-18', 2730, 103663, 6354, 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 (109907, '2022-08-18', 1339, 103664, 6354, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109908, '2022-08-18', 2237, 103665, 6354, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109909, '2022-08-18', 2262, 103666, 6354, 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 (109910, '2022-08-18', 1528, 103667, 6354, NULL, '1.0000', '900.1354', '900.1354', '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 (109911, '2022-08-18', 1872, 103668, 6354, 60287, '1.0000', '11.2454', '11.2454', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109912, '2022-08-18', 1837, 103669, 6354, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109913, '2022-08-18', 2965, 103670, 6354, NULL, '1.0000', '23.6916', '23.6916', '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 (109914, '2022-08-18', 2948, 103671, 6354, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109915, '2022-08-18', 7704, 103672, 6354, NULL, '2.0000', '0.4900', '0.4900', '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 (109916, '2022-08-18', 1665, 103673, 6354, 60262, '2.0000', '1.3274', '1.3274', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109917, '2022-08-18', 7507, 103674, 6354, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109918, '2022-08-18', 1855, 103675, 6354, NULL, '1.0000', '1.4615', '1.4615', '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 (109919, '2022-08-18', 2416, 103676, 6354, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109920, '2022-08-18', 9743, 103677, 6355, 58138, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109921, '2022-08-18', 9734, 103678, 6355, 60360, '7.0000', '0.4261', '0.4261', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109922, '2022-08-18', 1432, 103679, 6356, 59851, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109923, '2022-08-18', 8079, 103680, 6356, NULL, '1.0000', '16.6100', '16.6100', '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 (109924, '2022-08-18', 9878, 103681, 6356, NULL, '1.0000', '9.6000', '9.6000', '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 (109925, '2022-08-18', 9840, 103682, 6356, 51249, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109926, '2022-08-18', 8208, 103683, 6356, NULL, '2.0000', '47.9541', '47.9541', '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 (109927, '2022-08-18', 2454, 103684, 6356, 58265, '1.0000', '9.1032', '9.1032', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109928, '2022-08-18', 8677, 103685, 6356, NULL, '2.0000', '1026.1382', '1026.1382', '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 (109929, '2022-08-18', 9840, 103686, 6356, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109930, '2022-08-18', 1846, 103687, 6356, NULL, '1.0000', '-296.8167', '-296.8167', '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 (109931, '2022-08-18', 1501, 103688, 6356, NULL, '1.0000', '0.3856', '0.3856', '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 (109932, '2022-08-18', 2167, 103689, 6356, NULL, '1.0000', '0.6663', '0.6663', '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 (109933, '2022-08-18', 2167, 103690, 6357, NULL, '1.0000', '0.6663', '0.6663', '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 (109934, '2022-08-18', 2247, 103691, 6357, 33149, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 239);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109935, '2022-08-18', 2332, 103692, 6357, NULL, '1.0000', '-41.5866', '-41.5866', '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 (109936, '2022-08-18', 2545, 103693, 6357, 55553, '1.0000', '8.6211', '8.6211', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109937, '2022-08-18', 1337, 103694, 6357, 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 (109938, '2022-08-18', 1331, 103695, 6357, NULL, '1.0000', '4.2000', '4.2000', '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 (109939, '2022-08-18', 1746, 103696, 6357, 60329, '1.0000', '4.8553', '4.8553', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109940, '2022-08-18', 9783, 103697, 6357, 60304, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109941, '2022-08-18', 1868, 103698, 6357, NULL, '1.0000', '3.8800', '3.8800', '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 (109942, '2022-08-18', 7588, 103699, 6358, NULL, '1.0000', '6.9000', '6.9000', '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 (109943, '2022-08-18', 7523, 103700, 6358, NULL, '1.0000', '9.7500', '9.7500', '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 (109944, '2022-08-18', 7708, 103701, 6358, NULL, '1.0000', '7.8000', '7.8000', '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 (109945, '2022-08-18', 8843, 103702, 6358, NULL, '2.0000', '40.0000', '40.0000', '53.5000', '53.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 (109946, '2022-08-18', 9762, 103703, 6358, 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 (109947, '2022-08-18', 8878, 103704, 6358, NULL, '1.0000', '6.6700', '6.6700', '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 (109948, '2022-08-18', 8596, 103705, 6358, 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 (109949, '2022-08-18', 7673, 103706, 6358, NULL, '1.0000', '16.8000', '16.8000', '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 (109950, '2022-08-18', 7820, 103707, 6358, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109951, '2022-08-18', 7666, 103708, 6358, NULL, '1.0000', '3.6000', '3.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 (109952, '2022-08-18', 8547, 103709, 6358, NULL, '1.0000', '3.3500', '3.3500', '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 (109953, '2022-08-18', 7799, 103710, 6358, NULL, '1.0000', '6.4000', '6.4000', '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 (109954, '2022-08-18', 7674, 103711, 6358, NULL, '1.0000', '1.3000', '1.3000', '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 (109955, '2022-08-18', 8101, 103712, 6358, NULL, '1.0000', '1.9700', '1.9700', '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 (109956, '2022-08-18', 7952, 103713, 6358, 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 (109957, '2022-08-18', 7638, 103714, 6358, NULL, '1.0000', '12.0000', '12.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 (109958, '2022-08-18', 7881, 103715, 6358, NULL, '1.0000', '2.3000', '2.3000', '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 (109959, '2022-08-18', 7708, 103716, 6358, NULL, '1.0000', '7.8000', '7.8000', '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 (109960, '2022-08-18', 1623, 103717, 6358, 8740, '-1.0000', '140.8400', '140.8400', '113.0000', '113.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109961, '2022-08-18', 1623, 103717, 6358, NULL, '2.0000', '140.8400', '140.8400', '113.0000', '113.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 (109962, '2022-08-18', 8842, 103718, 6358, NULL, '1.0000', '13.6700', '13.6700', '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 (109963, '2022-08-18', 8616, 103719, 6358, NULL, '1.0000', '23.0000', '23.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 (109964, '2022-08-18', 8566, 103720, 6358, NULL, '1.0000', '11.0000', '11.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 (109965, '2022-08-18', 8017, 103721, 6358, NULL, '1.0000', '40.0000', '40.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 (109966, '2022-08-18', 8011, 103722, 6358, 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 (109967, '2022-08-18', 7514, 103723, 6358, NULL, '5.0000', '2.2500', '2.2500', '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 (109968, '2022-08-18', 8032, 103724, 6358, NULL, '1.0000', '6.4400', '6.4400', '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 (109969, '2022-08-18', 7411, 103725, 6358, NULL, '2.0000', '1.3500', '1.3500', '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 (109970, '2022-08-18', 7674, 103726, 6358, NULL, '1.0000', '1.3000', '1.3000', '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 (109971, '2022-08-18', 7506, 103727, 6358, NULL, '1.0000', '15.0000', '15.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 (109972, '2022-08-18', 8020, 103728, 6358, NULL, '1.0000', '11.9000', '11.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 (109973, '2022-08-18', 7774, 103729, 6358, NULL, '1.0000', '3.3000', '3.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 (109974, '2022-08-18', 7872, 103730, 6358, 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 (109975, '2022-08-18', 7333, 103731, 6358, NULL, '5.0000', '13.5000', '13.5000', '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 (109976, '2022-08-18', 1855, 103732, 6358, 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 (109977, '2022-08-18', 7367, 103733, 6358, NULL, '1.0000', '9.1700', '9.1700', '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 (109978, '2022-08-18', 7708, 103734, 6358, NULL, '1.0000', '7.8000', '7.8000', '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 (109979, '2022-08-18', 9166, 103735, 6358, NULL, '1.0000', '3.5000', '3.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 (109980, '2022-08-18', 8085, 103736, 6358, NULL, '3.0000', '1.1700', '1.1700', '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 (109981, '2022-08-18', 7666, 103737, 6358, NULL, '1.0000', '3.6000', '3.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 (109982, '2022-08-18', 7778, 103738, 6358, NULL, '1.0000', '9.0000', '9.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 (109983, '2022-08-18', 9092, 103739, 6358, NULL, '5.0000', '5.2900', '5.2900', '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 (109984, '2022-08-18', 7730, 103740, 6358, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (109985, '2022-08-18', 2315, 103741, 6358, 2735, '-627.0000', '0.3300', '0.3300', '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 (109986, '2022-08-18', 2315, 103741, 6358, NULL, '628.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-628.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109987, '2022-08-18', 7883, 103742, 6358, NULL, '1.0000', '34.0000', '34.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 (109988, '2022-08-18', 7925, 103743, 6358, NULL, '1.0000', '8.3000', '8.3000', '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 (109989, '2022-08-18', 7324, 103744, 6358, NULL, '4.0000', '4.0000', '4.0000', '8.5000', '8.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 (109990, '2022-08-18', 7375, 103745, 6358, NULL, '14.0000', '3.9300', '3.9300', '7.0000', '7.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 (109991, '2022-08-18', 2255, 103746, 6358, 2792, '-4.0000', '17.4900', '17.4900', '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 (109992, '2022-08-18', 2255, 103746, 6358, NULL, '5.0000', '17.4900', '17.4900', '32.5000', '32.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 (109993, '2022-08-18', 7671, 103747, 6358, NULL, '3.0000', '15.5000', '15.5000', '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 (109994, '2022-08-18', 7400, 103748, 6358, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109995, '2022-08-18', 7872, 103749, 6358, NULL, '2.0000', '2.5000', '2.5000', '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 (109996, '2022-08-18', 8208, 103750, 6358, NULL, '2.0000', '33.0000', '33.0000', '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 (109997, '2022-08-18', 8463, 103751, 6358, NULL, '1.0000', '18.0000', '18.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 (109998, '2022-08-18', 9177, 103752, 6358, 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 (109999, '2022-08-18', 7765, 103753, 6358, NULL, '2.0000', '16.0000', '16.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 (110000, '2022-08-18', 9620, 103754, 6358, 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 (110001, '2022-08-18', 1760, 103755, 6358, 93, '2.0000', '111.8384', '111.8384', '1.0000', '1.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 (110002, '2022-08-18', 8187, 103756, 6358, NULL, '2.0000', '14.3900', '14.3900', '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 (110003, '2022-08-18', 9503, 103757, 6358, NULL, '2.0000', '20.6000', '20.6000', '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 (110004, '2022-08-18', 7524, 103758, 6358, NULL, '1.0000', '11.9500', '11.9500', '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 (110005, '2022-08-18', 1310, 103759, 6358, NULL, '2.0000', '0.3700', '0.3700', '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 (110006, '2022-08-18', 7458, 103760, 6358, NULL, '2.0000', '1.7700', '1.7700', '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 (110007, '2022-08-18', 7518, 103761, 6358, NULL, '1.0000', '7.8200', '7.8200', '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 (110008, '2022-08-18', 1904, 103762, 6358, 5442, '-83.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 (110009, '2022-08-18', 1904, 103762, 6358, NULL, '84.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110010, '2022-08-18', 7674, 103763, 6358, NULL, '2.0000', '1.3000', '1.3000', '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 (110011, '2022-08-18', 8966, 103764, 6358, NULL, '1.0000', '6.8500', '6.8500', '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 (110012, '2022-08-18', 8925, 103765, 6358, NULL, '1.0000', '2.4000', '2.4000', '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 (110013, '2022-08-18', 7382, 103766, 6358, NULL, '1.0000', '7.4500', '7.4500', '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 (110014, '2022-08-18', 7316, 103767, 6358, NULL, '5.0000', '9.5500', '9.5500', '1.3000', '1.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 (110015, '2022-08-18', 1637, 103768, 6359, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110016, '2022-08-18', 9891, 103769, 6359, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110017, '2022-08-18', 9649, 103770, 6359, NULL, '1.0000', '2.6750', '2.6750', '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 (110018, '2022-08-18', 7745, 103771, 6359, 58190, '1.0000', '6.7000', '6.7000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110019, '2022-08-18', 7745, 103772, 6360, 58190, '1.0000', '6.7000', '6.7000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110020, '2022-08-18', 8661, 103773, 6360, 60253, '1.0000', '5.6000', '5.6000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110021, '2022-08-18', 9909, 103774, 6360, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110022, '2022-08-18', 2302, 103775, 6360, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '33.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110023, '2022-08-18', 9783, 103776, 6360, 59891, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110024, '2022-08-18', 1311, 103777, 6360, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (110025, '2022-08-18', 2302, 103778, 6361, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110026, '2022-08-18', 9737, 103779, 6361, NULL, '1.0000', '7.9000', '7.9000', '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 (110027, '2022-08-18', 8773, 103780, 6362, 60542, '1.0000', '3.8300', '3.8300', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110028, '2022-08-18', 9734, 103781, 6362, 60360, '1.0000', '0.4261', '0.4261', '0.7000', '0.7000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110029, '2022-08-18', 8773, 103782, 6362, 60542, '1.0000', '3.8300', '3.8300', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110030, '2022-08-18', 1809, 103783, 6363, 54950, '1.0000', '10.1539', '10.1539', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110031, '2022-08-18', 9828, 103784, 6363, NULL, '2.0000', '2.9100', '2.9100', '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 (110032, '2022-08-18', 8039, 103785, 6364, NULL, '1.0000', '14.7500', '14.7500', '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 (110033, '2022-08-18', 7526, 103786, 6364, NULL, '1.0000', '14.0000', '14.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 (110034, '2022-08-18', 7606, 103787, 6364, NULL, '1.0000', '4.8600', '4.8600', '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 (110035, '2022-08-18', 7411, 103788, 6364, NULL, '2.0000', '1.3500', '1.3500', '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 (110036, '2022-08-18', 8810, 103789, 6364, NULL, '1.0000', '1.6000', '1.6000', '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 (110037, '2022-08-18', 7848, 103790, 6364, NULL, '1.0000', '1.3500', '1.3500', '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 (110038, '2022-08-18', 8208, 103791, 6364, NULL, '2.0000', '33.0000', '33.0000', '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 (110039, '2022-08-18', 1841, 103792, 6364, NULL, '2.0000', '142.5780', '142.5780', '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 (110040, '2022-08-18', 8017, 103793, 6364, NULL, '1.0000', '40.0000', '40.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 (110041, '2022-08-18', 8097, 103794, 6364, NULL, '10.0000', '3.4000', '3.4000', '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 (110042, '2022-08-18', 7518, 103795, 6364, NULL, '1.0000', '7.8200', '7.8200', '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 (110043, '2022-08-18', 8596, 103796, 6364, 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 (110044, '2022-08-18', 1765, 103797, 6364, 3175, '-24.0000', '90.0000', '90.0000', '9.5000', '9.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 (110045, '2022-08-18', 1765, 103797, 6364, NULL, '26.0000', '90.0000', '90.0000', '9.5000', '9.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 (110046, '2022-08-18', 7954, 103798, 6364, NULL, '2.0000', '3.0000', '3.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 (110047, '2022-08-18', 9695, 103799, 6364, NULL, '1.0000', '4.5000', '4.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 (110048, '2022-08-18', 8979, 103800, 6364, NULL, '3.0000', '1.0000', '1.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 (110049, '2022-08-18', 2315, 103801, 6364, 2735, '-628.0000', '0.3300', '0.3300', '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 (110050, '2022-08-18', 2315, 103801, 6364, NULL, '629.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-629.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110051, '2022-08-18', 9734, 103802, 6365, 60360, '5.0000', '0.4261', '0.4261', '0.7000', '0.7000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110052, '2022-08-18', 2392, 103803, 6366, 48944, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110053, '2022-08-18', 2283, 103804, 6366, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110054, '2022-08-18', 7459, 103805, 6367, NULL, '1.0000', '4.5753', '4.5753', '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 (110055, '2022-08-18', 2289, 103806, 6367, 56722, '2.0000', '0.2692', '0.2692', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110056, '2022-08-18', 1840, 103807, 6367, 59955, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110057, '2022-08-18', 1493, 103808, 6367, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110058, '2022-08-18', 7741, 103809, 6367, 59956, '1.0000', '3.4144', '3.4144', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110059, '2022-08-18', 2154, 103810, 6367, 54582, '1.0000', '12.4502', '12.4502', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110060, '2022-08-18', 1339, 103811, 6367, 60024, '1.0000', '1.8897', '1.8897', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110061, '2022-08-18', 1432, 103812, 6367, 59982, '1.0000', '11.5719', '11.5719', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110062, '2022-08-18', 2916, 103813, 6367, 58636, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '7.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110063, '2022-08-18', 2821, 103814, 6367, 60010, '1.0000', '3.4216', '3.4216', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110064, '2022-08-18', 2353, 103815, 6367, NULL, '1.0000', '4.4500', '4.4500', '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 (110065, '2022-08-18', 1950, 103816, 6367, 55511, '1.0000', '8.4081', '8.4081', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110066, '2022-08-18', 2865, 103817, 6367, 40624, '2.0000', '2.8000', '2.8000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110067, '2022-08-18', 1904, 103818, 6367, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110068, '2022-08-18', 7407, 103819, 6367, NULL, '1.0000', '7.7300', '7.7300', '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 (110069, '2022-08-18', 3058, 103820, 6367, 60041, '1.0000', '5.2679', '5.2679', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110070, '2022-08-18', 1665, 103821, 6367, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110071, '2022-08-18', 1910, 103822, 6367, 60091, '1.0000', '1.4600', '1.4600', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110072, '2022-08-18', 2167, 103823, 6367, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110073, '2022-08-18', 2643, 103824, 6367, 58009, '1.0000', '0.9691', '0.9691', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110074, '2022-08-18', 1499, 103825, 6367, 58613, '2.0000', '0.4612', '0.4612', '0.7000', '0.7000', '41.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110075, '2022-08-18', 1812, 103826, 6367, 59963, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110076, '2022-08-18', 1521, 103827, 6367, 56249, '1.0000', '2.8071', '2.8071', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110077, '2022-08-18', 2738, 103828, 6367, 56938, '1.0000', '8.9533', '8.9533', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110078, '2022-08-18', 9794, 103829, 6367, 58789, '1.0000', '1.0800', '1.0800', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110079, '2022-08-18', 9747, 103830, 6367, 59965, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110080, '2022-08-18', 7802, 103831, 6367, 52269, '1.0000', '1.3468', '1.3468', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110081, '2022-08-18', 2497, 103832, 6367, 56215, '1.0000', '35.9257', '35.9257', '48.5000', '48.5000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110082, '2022-08-18', 2221, 103833, 6367, 58659, '1.0000', '17.3584', '17.3584', '26.0000', '26.0000', '18.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110083, '2022-08-18', 1644, 103834, 6367, 49011, '1.0000', '34.0000', '34.0000', '53.0000', '53.0000', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110084, '2022-08-18', 2738, 103835, 6367, 56938, '2.0000', '8.9533', '8.9533', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110085, '2022-08-18', 2738, 103835, 6367, 45129, '1.0000', '8.9533', '8.9533', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110086, '2022-08-18', 1772, 103836, 6367, 60016, '1.0000', '6.0114', '6.0114', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110087, '2022-08-19', 2441, 103837, 6368, 60539, '1.0000', '10.1769', '10.1769', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110088, '2022-08-19', 3025, 103838, 6368, 58059, '2.0000', '2.4395', '2.4395', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110089, '2022-08-19', 9622, 103839, 6368, 40335, '1.0000', '35.0000', '35.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110090, '2022-08-19', 2038, 103840, 6368, 59672, '1.0000', '13.6990', '13.6990', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110091, '2022-08-19', 2007, 103841, 6368, 59697, '1.0000', '13.4379', '13.4379', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110092, '2022-08-19', 7676, 103842, 6368, NULL, '1.0000', '5.2000', '5.2000', '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 (110093, '2022-08-19', 2948, 103843, 6368, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110094, '2022-08-19', 1665, 103844, 6368, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110095, '2022-08-19', 2037, 103845, 6368, 59674, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110096, '2022-08-19', 1825, 103846, 6368, 60267, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110097, '2022-08-19', 2923, 103847, 6368, 60271, '1.0000', '13.2325', '13.2325', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110098, '2022-08-19', 9214, 103848, 6368, NULL, '1.0000', '17.5000', '17.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 (110099, '2022-08-19', 1856, 103849, 6368, NULL, '1.0000', '155.0099', '155.0099', '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 (110100, '2022-08-19', 2108, 103850, 6368, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110101, '2022-08-19', 1310, 103851, 6368, 60259, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110102, '2022-08-19', 1580, 103852, 6368, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110103, '2022-08-19', 2893, 103853, 6368, 60362, '1.0000', '9.1280', '9.1280', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110104, '2022-08-19', 2247, 103854, 6368, 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 (110105, '2022-08-19', 2416, 103855, 6368, 60558, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110106, '2022-08-19', 9695, 103856, 6368, 60534, '2.0000', '5.3844', '5.3844', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110107, '2022-08-19', 2656, 103857, 6368, 60555, '1.0000', '2.0601', '2.0601', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110108, '2022-08-19', 2036, 103858, 6368, 59684, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110109, '2022-08-19', 2655, 103859, 6368, NULL, '1.0000', '-28.0213', '-28.0213', '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 (110110, '2022-08-19', 9734, 103860, 6368, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110111, '2022-08-19', 9214, 103861, 6368, NULL, '1.0000', '17.5000', '17.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 (110112, '2022-08-19', 3077, 103862, 6368, 49912, '1.0000', '11.0000', '11.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 (110113, '2022-08-19', 1498, 103863, 6368, 57680, '2.0000', '0.4912', '0.4912', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110114, '2022-08-19', 1498, 103864, 6368, 57680, '3.0000', '0.4912', '0.4912', '0.7000', '0.7000', '38.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110115, '2022-08-19', 2643, 103865, 6368, 60559, '2.0000', '1.0506', '1.0506', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110116, '2022-08-19', 2169, 103866, 6369, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110117, '2022-08-19', 2293, 103867, 6369, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110118, '2022-08-19', 8254, 103868, 6369, NULL, '1.0000', '29.8000', '29.8000', '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 (110119, '2022-08-19', 1912, 103869, 6369, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110120, '2022-08-19', 7507, 103870, 6369, 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 (110121, '2022-08-19', 1602, 103871, 6369, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110122, '2022-08-19', 2228, 103872, 6369, 60526, '2.0000', '27.7285', '27.7285', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110123, '2022-08-19', 1374, 103873, 6369, 55798, '1.0000', '95.6984', '95.6984', '39.0000', '39.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110124, '2022-08-19', 2151, 103874, 6370, NULL, '1.0000', '10.7000', '10.7000', '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 (110125, '2022-08-19', 9834, 103875, 6370, 58836, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110126, '2022-08-19', 2167, 103876, 6371, NULL, '1.0000', '0.6663', '0.6663', '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 (110127, '2022-08-19', 9401, 103877, 6371, 39792, '1.0000', '2.7665', '2.7665', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110128, '2022-08-19', 9750, 103878, 6371, NULL, '1.0000', '2.7458', '2.7458', '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 (110129, '2022-08-19', 2167, 103879, 6371, NULL, '1.0000', '0.6663', '0.6663', '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 (110130, '2022-08-19', 2522, 103880, 6371, 59700, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110131, '2022-08-19', 1506, 103881, 6371, NULL, '1.0000', '-131.4000', '-131.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110132, '2022-08-19', 7741, 103882, 6371, NULL, '1.0000', '-174.4114', '-174.4114', '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 (110133, '2022-08-19', 1580, 103883, 6371, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110134, '2022-08-19', 7709, 103884, 6372, NULL, '2.0000', '3.5000', '3.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 (110135, '2022-08-19', 7709, 103885, 6373, NULL, '2.0000', '3.5000', '3.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 (110136, '2022-08-19', 7711, 103886, 6373, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110137, '2022-08-19', 8677, 103887, 6373, NULL, '3.0000', '1.2800', '1.2800', '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 (110138, '2022-08-19', 8224, 103888, 6373, NULL, '1.0000', '1.5000', '1.5000', '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 (110139, '2022-08-19', 7730, 103889, 6373, NULL, '7.0000', '0.1000', '0.1000', '0.2000', '0.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 (110140, '2022-08-19', 7641, 103890, 6373, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (110141, '2022-08-19', 7708, 103891, 6373, NULL, '1.0000', '7.8000', '7.8000', '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 (110142, '2022-08-19', 7587, 103892, 6373, NULL, '1.0000', '6.4400', '6.4400', '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 (110143, '2022-08-19', 8038, 103893, 6373, 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 (110144, '2022-08-19', 7981, 103894, 6373, NULL, '5.0000', '6.0000', '6.0000', '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 (110145, '2022-08-19', 1771, 103895, 6373, 13660, '-1.0000', '5.2450', '5.2450', '9.5000', '9.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 (110146, '2022-08-19', 1771, 103895, 6373, NULL, '2.0000', '5.2450', '5.2450', '9.5000', '9.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 (110147, '2022-08-19', 8712, 103896, 6373, NULL, '1.0000', '7.0400', '7.0400', '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 (110148, '2022-08-19', 9763, 103897, 6373, NULL, '1.0000', '2.1000', '2.1000', '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 (110149, '2022-08-19', 7687, 103898, 6373, NULL, '1.0000', '39.5800', '39.5800', '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 (110150, '2022-08-19', 9503, 103899, 6373, NULL, '1.0000', '20.6000', '20.6000', '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 (110151, '2022-08-19', 7709, 103900, 6373, NULL, '4.0000', '3.5000', '3.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 (110152, '2022-08-19', 7666, 103901, 6373, NULL, '1.0000', '3.6000', '3.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 (110153, '2022-08-19', 7588, 103902, 6373, NULL, '1.0000', '6.9000', '6.9000', '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 (110154, '2022-08-19', 7483, 103903, 6373, 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 (110155, '2022-08-19', 7527, 103904, 6373, NULL, '1.0000', '0.8900', '0.8900', '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 (110156, '2022-08-19', 7558, 103905, 6373, NULL, '9.0000', '1.9700', '1.9700', '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 (110157, '2022-08-19', 1483, 103906, 6373, 1444, '1.0000', '26.1578', '26.1578', '40.5000', '40.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 (110158, '2022-08-19', 1856, 103907, 6373, NULL, '2.0000', '4.2500', '4.2500', '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 (110159, '2022-08-19', 7593, 103908, 6373, NULL, '2.0000', '2.4500', '2.4500', '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 (110160, '2022-08-19', 7848, 103909, 6373, NULL, '1.0000', '1.3500', '1.3500', '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 (110161, '2022-08-19', 7483, 103910, 6373, NULL, '4.0000', '0.4200', '0.4200', '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 (110162, '2022-08-19', 7641, 103911, 6373, NULL, '1.0000', '1.9000', '1.9000', '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 (110163, '2022-08-19', 9741, 103912, 6373, NULL, '1.0000', '7.6000', '7.6000', '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 (110164, '2022-08-19', 8085, 103913, 6373, NULL, '3.0000', '1.1700', '1.1700', '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 (110165, '2022-08-19', 8101, 103914, 6373, NULL, '2.0000', '1.9700', '1.9700', '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 (110166, '2022-08-19', 1398, 103915, 6373, NULL, '1.0000', '7.5000', '7.5000', '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 (110167, '2022-08-19', 7483, 103916, 6373, NULL, '1.0000', '0.4200', '0.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 (110168, '2022-08-19', 8308, 103917, 6373, NULL, '1.0000', '2.0800', '2.0800', '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 (110169, '2022-08-19', 7674, 103918, 6373, NULL, '1.0000', '1.3000', '1.3000', '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 (110170, '2022-08-19', 7459, 103919, 6373, NULL, '5.0000', '2.3500', '2.3500', '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 (110171, '2022-08-19', 7412, 103920, 6373, NULL, '1.0000', '1.5200', '1.5200', '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 (110172, '2022-08-19', 2315, 103921, 6373, 2735, '-629.0000', '0.3300', '0.3300', '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 (110173, '2022-08-19', 2315, 103921, 6373, NULL, '630.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-630.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110174, '2022-08-19', 7385, 103922, 6373, NULL, '5.0000', '2.0000', '2.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 (110175, '2022-08-19', 1833, 103923, 6373, 14170, '-1.0000', '23.5300', '23.5300', '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 (110176, '2022-08-19', 1833, 103923, 6373, NULL, '6.0000', '23.5300', '23.5300', '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 (110177, '2022-08-19', 8685, 103924, 6373, NULL, '1.0000', '32.0000', '32.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 (110178, '2022-08-19', 2242, 103925, 6373, 3059, '-104.0000', '0.4800', '0.4800', '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 (110179, '2022-08-19', 2242, 103925, 6373, NULL, '106.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-106.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110180, '2022-08-19', 7781, 103926, 6373, NULL, '1.0000', '4.2500', '4.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 (110181, '2022-08-19', 7967, 103927, 6373, 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 (110182, '2022-08-19', 8352, 103928, 6373, 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 (110183, '2022-08-19', 7411, 103929, 6373, NULL, '1.0000', '1.3500', '1.3500', '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 (110184, '2022-08-19', 8325, 103930, 6373, 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 (110185, '2022-08-19', 2441, 103931, 6373, 5311, '-3.0000', '4.6000', '4.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 (110186, '2022-08-19', 2441, 103931, 6373, NULL, '4.0000', '4.6000', '4.6000', '12.0000', '12.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 (110187, '2022-08-19', 7333, 103932, 6373, NULL, '10.0000', '13.5000', '13.5000', '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 (110188, '2022-08-19', 7518, 103933, 6373, NULL, '1.0000', '7.8200', '7.8200', '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 (110189, '2022-08-19', 1760, 103934, 6373, 93, '2.0000', '111.8384', '111.8384', '1.0000', '1.0000', '2.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 (110190, '2022-08-19', 7708, 103935, 6373, NULL, '1.0000', '7.8000', '7.8000', '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 (110191, '2022-08-19', 7780, 103936, 6373, NULL, '1.0000', '11.6000', '11.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 (110192, '2022-08-19', 7411, 103937, 6373, NULL, '1.0000', '1.3500', '1.3500', '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 (110193, '2022-08-19', 7657, 103938, 6373, NULL, '1.0000', '11.3200', '11.3200', '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 (110194, '2022-08-19', 7473, 103939, 6373, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110195, '2022-08-19', 7564, 103940, 6373, NULL, '1.0000', '0.6400', '0.6400', '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 (110196, '2022-08-19', 9791, 103941, 6373, NULL, '2.0000', '0.9000', '0.9000', '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 (110197, '2022-08-19', 8172, 103942, 6373, NULL, '1.0000', '40.7000', '40.7000', '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 (110198, '2022-08-19', 7453, 103943, 6373, NULL, '1.0000', '28.5000', '28.5000', '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 (110199, '2022-08-19', 8918, 103944, 6373, NULL, '2.0000', '1.0400', '1.0400', '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 (110200, '2022-08-19', 7317, 103945, 6373, NULL, '1.0000', '19.5500', '19.5500', '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 (110201, '2022-08-19', 8810, 103946, 6373, NULL, '1.0000', '1.6000', '1.6000', '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 (110202, '2022-08-19', 1501, 103947, 6373, NULL, '1.0000', '2.0500', '2.0500', '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 (110203, '2022-08-19', 7518, 103948, 6373, NULL, '1.0000', '7.8200', '7.8200', '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 (110204, '2022-08-19', 8433, 103949, 6373, NULL, '1.0000', '33.0000', '33.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 (110205, '2022-08-19', 7703, 103950, 6373, NULL, '2.0000', '22.9900', '22.9900', '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 (110206, '2022-08-19', 1602, 103951, 6374, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110207, '2022-08-19', 1674, 103952, 6374, 58657, '1.0000', '8.2081', '8.2081', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110208, '2022-08-19', 8657, 103953, 6374, NULL, '1.0000', '7.8000', '7.8000', '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 (110209, '2022-08-19', 7459, 103954, 6374, NULL, '2.0000', '4.5753', '4.5753', '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 (110210, '2022-08-19', 7799, 103955, 6374, NULL, '1.0000', '2.0000', '2.0000', '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 (110211, '2022-08-19', 2332, 103956, 6374, 59947, '2.0000', '7.3714', '7.3714', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110212, '2022-08-19', 1637, 103957, 6374, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110213, '2022-08-19', 1620, 103958, 6374, 56217, '4.0000', '2.2914', '2.2914', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110214, '2022-08-19', 1328, 103959, 6374, 55767, '2.0000', '3.9079', '3.9079', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110215, '2022-08-19', 9695, 103960, 6374, 58550, '3.0000', '5.7386', '5.7386', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110216, '2022-08-19', 1702, 103961, 6374, 60056, '1.0000', '22.0774', '22.0774', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110217, '2022-08-19', 1574, 103962, 6374, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110218, '2022-08-19', 2169, 103963, 6374, 57981, '2.0000', '1.3616', '1.3616', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110219, '2022-08-19', 2109, 103964, 6374, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110220, '2022-08-19', 7859, 103965, 6374, 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 (110221, '2022-08-19', 7482, 103966, 6374, NULL, '1.0000', '3.0500', '3.0500', '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 (110222, '2022-08-19', 1592, 103967, 6374, 58606, '1.0000', '36.7235', '36.7235', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110223, '2022-08-19', 9750, 103968, 6374, 46052, '1.0000', '3.3000', '3.3000', '6.0000', '6.0000', '28.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110224, '2022-08-19', 2289, 103969, 6374, 56722, '2.0000', '0.2692', '0.2692', '0.5000', '0.5000', '39.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110225, '2022-08-19', 2858, 103970, 6374, 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 (110226, '2022-08-19', 8767, 103971, 6374, 58005, '1.0000', '8.6300', '8.6300', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110227, '2022-08-19', 1427, 103972, 6374, 58608, '1.0000', '14.5065', '14.5065', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110228, '2022-08-19', 2607, 103973, 6374, 42956, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110229, '2022-08-19', 2289, 103974, 6374, 56722, '2.0000', '0.2692', '0.2692', '0.5000', '0.5000', '39.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110230, '2022-08-19', 9747, 103975, 6374, 59965, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110231, '2022-08-19', 2248, 103976, 6374, 55871, '1.0000', '3.0210', '3.0210', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110232, '2022-08-19', 7739, 103977, 6375, NULL, '1.0000', '2.7500', '2.7500', '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 (110233, '2022-08-19', 8596, 103978, 6375, 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 (110234, '2022-08-19', 9695, 103979, 6375, NULL, '1.0000', '4.5000', '4.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 (110235, '2022-08-19', 7518, 103980, 6375, NULL, '2.0000', '7.8200', '7.8200', '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 (110236, '2022-08-19', 8401, 103981, 6375, 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 (110237, '2022-08-19', 7518, 103982, 6375, NULL, '1.0000', '7.8200', '7.8200', '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 (110238, '2022-08-19', 9821, 103983, 6375, NULL, '1.0000', '1.4500', '1.4500', '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 (110239, '2022-08-19', 1841, 103984, 6375, NULL, '4.0000', '142.5780', '142.5780', '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 (110240, '2022-08-19', 2315, 103985, 6375, 2735, '-630.0000', '0.3300', '0.3300', '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 (110241, '2022-08-19', 2315, 103985, 6375, NULL, '631.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-631.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110242, '2022-08-19', 7917, 103986, 6376, NULL, '1.0000', '5.0000', '5.0000', '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 (110243, '2022-08-19', 8444, 103987, 6376, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110244, '2022-08-19', 8744, 103988, 6376, 60543, '1.0000', '2.3138', '2.3138', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110245, '2022-08-19', 1810, 103989, 6376, NULL, '1.0000', '32.9337', '32.9337', '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 (110246, '2022-08-19', 2384, 103990, 6376, NULL, '1.0000', '-1.7022', '-1.7022', '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 (110247, '2022-08-19', 2728, 103991, 6376, 19354, '3.0000', '0.8000', '0.8000', '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 (110248, '2022-08-19', 8011, 103992, 6376, NULL, '1.0000', '0.9500', '0.9500', '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 (110249, '2022-08-19', 9695, 103993, 6376, 59664, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '19.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110250, '2022-08-19', 2131, 103994, 6376, 59685, '1.0000', '12.6477', '12.6477', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110251, '2022-08-19', 3025, 103995, 6376, 58059, '2.0000', '2.4395', '2.4395', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110252, '2022-08-19', 1312, 103996, 6376, 48664, '1.0000', '6.9511', '6.9511', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110253, '2022-08-19', 2102, 103997, 6376, NULL, '1.0000', '-20.1000', '-20.1000', '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 (110254, '2022-08-19', 9828, 103998, 6376, NULL, '2.0000', '2.9100', '2.9100', '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 (110255, '2022-08-19', 2521, 103999, 6376, 59701, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110256, '2022-08-19', 2380, 104000, 6376, 55679, '1.0000', '47.0967', '47.0967', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110257, '2022-08-19', 1612, 104001, 6376, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110258, '2022-08-19', 9738, 104002, 6376, 59860, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110259, '2022-08-19', 1888, 104003, 6376, 60289, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110260, '2022-08-19', 2073, 104004, 6376, 55667, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110261, '2022-08-19', 1904, 104005, 6376, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110262, '2022-08-19', 2699, 104006, 6376, NULL, '3.0000', '3.5000', '3.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 (110263, '2022-08-19', 2302, 104007, 6376, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110264, '2022-08-19', 8444, 104008, 6376, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110265, '2022-08-19', 2893, 104009, 6376, NULL, '1.0000', '9.1280', '9.1280', '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 (110266, '2022-08-19', 1310, 104010, 6376, 60259, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110267, '2022-08-19', 2384, 104011, 6376, NULL, '2.0000', '-1.7022', '-1.7022', '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 (110268, '2022-08-19', 1432, 104012, 6376, 59851, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110269, '2022-08-19', 2405, 104013, 6376, 56851, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '5.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110270, '2022-08-19', 9979, 104014, 6376, NULL, '1.0000', '13.9000', '13.9000', '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 (110271, '2022-08-19', 1810, 104015, 6376, NULL, '1.0000', '32.9337', '32.9337', '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 (110272, '2022-08-19', 2262, 104016, 6376, 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 (110273, '2022-08-19', 1904, 104017, 6376, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110274, '2022-08-19', 8011, 104018, 6376, NULL, '1.0000', '0.9500', '0.9500', '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 (110275, '2022-08-19', 7922, 104019, 6376, 60268, '1.0000', '4.2426', '4.2426', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110276, '2022-08-19', 1342, 104020, 6376, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110277, '2022-08-19', 8878, 104021, 6376, NULL, '2.0000', '6.0509', '6.0509', '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 (110278, '2022-08-19', 1501, 104022, 6376, NULL, '1.0000', '0.3856', '0.3856', '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 (110279, '2022-08-19', 1578, 104023, 6376, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110280, '2022-08-19', 2511, 104024, 6376, NULL, '1.0000', '15.3000', '15.3000', '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 (110281, '2022-08-19', 2962, 104025, 6376, 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 (110282, '2022-08-19', 1310, 104026, 6376, 60259, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110283, '2022-08-19', 2295, 104027, 6376, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110284, '2022-08-19', 7411, 104028, 6376, NULL, '1.0000', '1.2819', '1.2819', '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 (110285, '2022-08-19', 7514, 104029, 6376, NULL, '1.0000', '2.2500', '2.2500', '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 (110286, '2022-08-19', 9734, 104030, 6376, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110287, '2022-08-19', 7743, 104031, 6376, NULL, '2.0000', '7.3900', '7.3900', '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 (110288, '2022-08-19', 2299, 104032, 6376, 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 (110289, '2022-08-19', 8900, 104033, 6376, NULL, '5.0000', '16.4000', '16.4000', '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 (110290, '2022-08-19', 2302, 104034, 6376, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110291, '2022-08-19', 8759, 104035, 6376, NULL, '1.0000', '263.7140', '263.7140', '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 (110292, '2022-08-19', 2167, 104036, 6376, NULL, '1.0000', '0.6663', '0.6663', '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 (110293, '2022-08-19', 2299, 104037, 6376, 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 (110294, '2022-08-19', 1904, 104038, 6376, 60310, '3.0000', '2.3094', '2.3094', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110295, '2022-08-19', 2384, 104039, 6376, NULL, '2.0000', '-1.7022', '-1.7022', '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 (110296, '2022-08-19', 7741, 104040, 6376, NULL, '1.0000', '-174.4114', '-174.4114', '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 (110297, '2022-08-19', 1501, 104041, 6376, NULL, '1.0000', '0.3856', '0.3856', '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 (110298, '2022-08-19', 2108, 104042, 6376, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110299, '2022-08-19', 9750, 104043, 6376, NULL, '1.0000', '2.7458', '2.7458', '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 (110300, '2022-08-19', 7672, 104044, 6376, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110301, '2022-08-19', 1670, 104045, 6376, NULL, '1.0000', '-32.2503', '-32.2503', '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 (110302, '2022-08-19', 2270, 104046, 6376, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110303, '2022-08-19', 2167, 104047, 6376, NULL, '1.0000', '0.6663', '0.6663', '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 (110304, '2022-08-19', 8011, 104048, 6376, NULL, '1.0000', '0.9500', '0.9500', '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 (110305, '2022-08-19', 1578, 104049, 6376, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110306, '2022-08-19', 7886, 104050, 6376, NULL, '1.0000', '14.5000', '14.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 (110307, '2022-08-19', 2643, 104051, 6376, 60559, '1.0000', '1.0506', '1.0506', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110308, '2022-08-19', 8740, 104052, 6376, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110309, '2022-08-19', 7803, 104053, 6376, NULL, '1.0000', '1.8200', '1.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 (110310, '2022-08-19', 1339, 104054, 6376, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110311, '2022-08-19', 1578, 104055, 6376, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110312, '2022-08-19', 8017, 104056, 6376, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110313, '2022-08-19', 7411, 104057, 6376, NULL, '1.0000', '1.2819', '1.2819', '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 (110314, '2022-08-19', 9828, 104058, 6376, NULL, '1.0000', '2.9100', '2.9100', '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 (110315, '2022-08-19', 1672, 104059, 6376, NULL, '20.0000', '4.1808', '4.1808', '5.5000', '5.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 (110316, '2022-08-19', 2061, 104060, 6376, NULL, '1.0000', '-0.6387', '-0.6387', '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 (110317, '2022-08-19', 2169, 104061, 6376, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110318, '2022-08-19', 9956, 104062, 6376, 60246, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110319, '2022-08-19', 2730, 104063, 6376, 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 (110320, '2022-08-19', 1672, 104064, 6376, NULL, '14.0000', '4.1808', '4.1808', '5.5000', '5.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 (110321, '2022-08-19', 1307, 104065, 6376, NULL, '1.0000', '-106.4636', '-106.4636', '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 (110322, '2022-08-19', 2237, 104066, 6376, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110323, '2022-08-19', 9791, 104067, 6377, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110324, '2022-08-20', 2337, 104068, 6378, NULL, '1.0000', '51.0000', '51.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110325, '2022-08-20', 1968, 104069, 6378, NULL, '1.0000', '55.1600', '55.1600', '103.3600', '103.3600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110326, '2022-08-20', 9219, 104070, 6378, NULL, '1.0000', '6.3000', '6.3000', '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 (110327, '2022-08-20', 1399, 104071, 6379, NULL, '1.0000', '13.3890', '13.3890', '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 (110328, '2022-08-20', 1314, 104072, 6379, 2710, '-9.0000', '1.2000', '1.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 (110329, '2022-08-20', 1314, 104072, 6379, NULL, '10.0000', '1.2000', '1.2000', '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 (110330, '2022-08-20', 2916, 104073, 6379, NULL, '2.0000', '15.0000', '15.0000', '22.5000', '22.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 (110331, '2022-08-20', 2823, 104074, 6379, 19684, '-25.0000', '11.2100', '11.2100', '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 (110332, '2022-08-20', 2823, 104074, 6379, NULL, '27.0000', '11.2100', '11.2100', '10.0000', '10.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 (110333, '2022-08-20', 9729, 104075, 6379, NULL, '1.0000', '0.6200', '0.6200', '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 (110334, '2022-08-20', 9740, 104076, 6379, NULL, '1.0000', '0.6600', '0.6600', '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 (110335, '2022-08-20', 2379, 104077, 6379, 4032, '-74.0000', '1.5900', '1.5900', '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 (110336, '2022-08-20', 2379, 104077, 6379, NULL, '75.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-75.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110337, '2022-08-20', 1347, 104078, 6379, 243, '2.0000', '3.4000', '3.4000', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110338, '2022-08-20', 1392, 104079, 6379, 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 (110339, '2022-08-20', 2244, 104080, 6379, NULL, '1.0000', '7.3600', '7.3600', '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 (110340, '2022-08-20', 2109, 104081, 6379, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '52.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 (110341, '2022-08-20', 2858, 104082, 6379, 17772, '-123.0000', '1.0000', '1.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 (110342, '2022-08-20', 2858, 104082, 6379, NULL, '126.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110343, '2022-08-20', 9695, 104083, 6379, NULL, '1.0000', '4.5000', '4.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 (110344, '2022-08-20', 9683, 104084, 6379, NULL, '1.0000', '3.1000', '3.1000', '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 (110345, '2022-08-20', 7722, 104085, 6379, NULL, '1.0000', '11.0000', '11.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 (110346, '2022-08-20', 1432, 104086, 6379, NULL, '1.0000', '8.1574', '8.1574', '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 (110347, '2022-08-20', 1602, 104087, 6379, 5897, '-178.0000', '6.7859', '6.7859', '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 (110348, '2022-08-20', 1602, 104087, 6379, NULL, '179.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-179.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110349, '2022-08-20', 9470, 104088, 6379, NULL, '1.0000', '9.7700', '9.7700', '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 (110350, '2022-08-20', 2251, 104089, 6379, 2788, '-34.0000', '10.9700', '10.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 (110351, '2022-08-20', 2251, 104089, 6379, NULL, '35.0000', '10.9700', '10.9700', '20.0000', '20.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110352, '2022-08-20', 2612, 104090, 6379, 9748, '-6.0000', '7.1600', '7.1600', '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 (110353, '2022-08-20', 2612, 104090, 6379, NULL, '8.0000', '7.1600', '7.1600', '11.5000', '11.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 (110354, '2022-08-20', 9214, 104091, 6379, NULL, '1.0000', '9.6000', '9.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 (110355, '2022-08-20', 1665, 104092, 6379, 3235, '-154.0000', '1.3000', '1.3000', '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 (110356, '2022-08-20', 1665, 104092, 6379, NULL, '155.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-155.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110357, '2022-08-20', 2948, 104093, 6380, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110358, '2022-08-20', 1988, 104094, 6380, 49919, '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 (110359, '2022-08-20', 2169, 104095, 6380, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110360, '2022-08-20', 9729, 104096, 6380, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110361, '2022-08-20', 2169, 104097, 6380, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110362, '2022-08-20', 2293, 104098, 6380, NULL, '3.0000', '-17.4320', '-17.4320', '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 (110363, '2022-08-20', 2916, 104099, 6380, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110364, '2022-08-20', 8017, 104100, 6380, 59863, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110365, '2022-08-20', 2169, 104101, 6380, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110366, '2022-08-20', 1863, 104102, 6380, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110367, '2022-08-20', 2948, 104103, 6380, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110368, '2022-08-20', 1905, 104104, 6380, NULL, '1.0000', '0.5203', '0.5203', '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 (110369, '2022-08-20', 2699, 104105, 6380, 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 (110370, '2022-08-20', 7744, 104106, 6380, NULL, '2.0000', '2.5833', '2.5833', '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 (110371, '2022-08-20', 9482, 104107, 6380, 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 (110372, '2022-08-20', 2169, 104108, 6380, 60325, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110373, '2022-08-20', 2262, 104109, 6380, 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 (110374, '2022-08-20', 8043, 104110, 6380, NULL, '2.0000', '27.9800', '27.9800', '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 (110375, '2022-08-20', 9821, 104111, 6380, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110376, '2022-08-20', 1863, 104112, 6380, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110377, '2022-08-20', 9539, 104113, 6380, 57105, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110378, '2022-08-20', 2435, 104114, 6380, NULL, '1.0000', '8.3108', '8.3108', '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 (110379, '2022-08-20', 1863, 104115, 6380, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110380, '2022-08-20', 9738, 104116, 6380, 59860, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110381, '2022-08-20', 1942, 104117, 6380, 55687, '1.0000', '20.0151', '20.0151', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110382, '2022-08-20', 1554, 104118, 6380, 60284, '1.0000', '3.0916', '3.0916', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110383, '2022-08-20', 9995, 104119, 6380, NULL, '1.0000', '8.2000', '8.2000', '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 (110384, '2022-08-20', 2271, 104120, 6380, NULL, '1.0000', '12.0000', '12.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 (110385, '2022-08-20', 2416, 104121, 6380, 59669, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110386, '2022-08-20', 7454, 104122, 6380, NULL, '1.0000', '57.7600', '57.7600', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110387, '2022-08-20', 2916, 104123, 6380, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110388, '2022-08-20', 9791, 104124, 6380, 51704, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110389, '2022-08-20', 1863, 104125, 6380, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110390, '2022-08-20', 8810, 104126, 6380, NULL, '1.0000', '1.9200', '1.9200', '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 (110391, '2022-08-20', 2413, 104127, 6380, NULL, '3.0000', '1.0500', '1.0500', '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 (110392, '2022-08-20', 2416, 104128, 6380, 59669, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110393, '2022-08-20', 8746, 104129, 6380, 60549, '2.0000', '3.0208', '3.0208', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110394, '2022-08-20', 2366, 104130, 6380, NULL, '2.0000', '-98.6017', '-98.6017', '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 (110395, '2022-08-20', 1665, 104131, 6381, 60446, '1.0000', '1.2418', '1.2418', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110396, '2022-08-20', 9741, 104132, 6381, 60096, '1.0000', '7.7188', '7.7188', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110397, '2022-08-20', 7586, 104133, 6381, 57434, '1.0000', '6.5122', '6.5122', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110398, '2022-08-20', 7674, 104134, 6381, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110399, '2022-08-20', 7588, 104135, 6381, 60816, '1.0000', '8.3766', '8.3766', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110400, '2022-08-20', 9761, 104136, 6381, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110401, '2022-08-20', 9269, 104137, 6381, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110402, '2022-08-20', 8810, 104138, 6381, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110403, '2022-08-20', 2763, 104139, 6381, 51064, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110404, '2022-08-20', 7641, 104140, 6381, 59332, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '35.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110405, '2022-08-20', 7444, 104141, 6381, 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 (110406, '2022-08-20', 9269, 104142, 6381, 57421, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110407, '2022-08-20', 8167, 104143, 6381, 56519, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110408, '2022-08-20', 7657, 104144, 6381, 60424, '1.0000', '14.8164', '14.8164', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110409, '2022-08-20', 7634, 104145, 6381, 60428, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110410, '2022-08-20', 9985, 104146, 6381, NULL, '1.0000', '5.8000', '5.8000', '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 (110411, '2022-08-20', 7645, 104147, 6381, NULL, '1.0000', '166.0200', '166.0200', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110412, '2022-08-20', 2284, 104148, 6381, 60100, '1.0000', '1.5246', '1.5246', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110413, '2022-08-20', 2546, 104149, 6381, 57454, '1.0000', '16.9000', '16.9000', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110414, '2022-08-20', 9098, 104150, 6381, NULL, '1.0000', '-2.9392', '-2.9392', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110415, '2022-08-20', 8011, 104151, 6381, 60097, '1.0000', '7.5500', '7.5500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110416, '2022-08-20', 8308, 104152, 6381, NULL, '1.0000', '22.3258', '22.3258', '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 (110417, '2022-08-20', 8548, 104153, 6381, NULL, '1.0000', '-4.1859', '-4.1859', '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 (110418, '2022-08-20', 7412, 104154, 6381, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110419, '2022-08-20', 8467, 104155, 6381, 60497, '2.0000', '65.3383', '65.3383', '87.0000', '87.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110420, '2022-08-20', 7560, 104156, 6381, 60485, '2.0000', '41.4439', '41.4439', '56.0000', '56.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110421, '2022-08-20', 8359, 104157, 6381, 59371, '1.0000', '246.8018', '246.8018', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110422, '2022-08-20', 8596, 104158, 6381, NULL, '1.0000', '39.8982', '39.8982', '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 (110423, '2022-08-20', 8965, 104159, 6381, NULL, '1.0000', '-263.2470', '-263.2470', '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 (110424, '2022-08-20', 7709, 104160, 6381, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (110425, '2022-08-20', 7952, 104161, 6381, 59404, '2.0000', '6.8635', '6.8635', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110426, '2022-08-20', 7651, 104162, 6381, 60419, '1.0000', '3.4359', '3.4359', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110427, '2022-08-20', 7704, 104163, 6381, NULL, '2.0000', '-1.5625', '-1.5625', '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 (110428, '2022-08-20', 7611, 104164, 6381, 60104, '1.0000', '14.8304', '14.8304', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110429, '2022-08-20', 7558, 104165, 6381, NULL, '5.0000', '-19.8908', '-19.8908', '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 (110430, '2022-08-20', 9745, 104166, 6381, 46908, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110431, '2022-08-20', 2289, 104167, 6381, NULL, '1.0000', '2.5688', '2.5688', '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 (110432, '2022-08-20', 9942, 104168, 6382, 60115, '1.0000', '9.2802', '9.2802', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110433, '2022-08-20', 8706, 104169, 6382, 49266, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110434, '2022-08-20', 2102, 104170, 6382, 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 (110435, '2022-08-20', 7959, 104171, 6382, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '13.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110436, '2022-08-20', 1841, 104172, 6382, 56033, '1.0000', '0.1970', '0.1970', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110437, '2022-08-20', 2315, 104173, 6382, 60392, '3.0000', '0.7626', '0.7626', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110438, '2022-08-20', 9953, 104174, 6382, 60498, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110439, '2022-08-20', 1470, 104175, 6382, NULL, '1.0000', '90.0000', '90.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 (110440, '2022-08-20', 7472, 104176, 6382, NULL, '1.0000', '7.4000', '7.4000', '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 (110441, '2022-08-20', 7457, 104177, 6382, 60437, '1.0000', '4.9359', '4.9359', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110442, '2022-08-20', 8127, 104178, 6382, NULL, '1.0000', '24.5300', '24.5300', '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 (110443, '2022-08-20', 7666, 104179, 6382, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110444, '2022-08-20', 8135, 104180, 6382, 59312, '1.0000', '5.9042', '5.9042', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110445, '2022-08-20', 7744, 104181, 6382, 59358, '1.0000', '2.7200', '2.7200', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110446, '2022-08-20', 9734, 104182, 6382, 60144, '2.0000', '0.3152', '0.3152', '0.7000', '0.7000', '64.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110447, '2022-08-20', 9711, 104183, 6382, 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 (110448, '2022-08-20', 9275, 104184, 6382, NULL, '1.0000', '6.3000', '6.3000', '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 (110449, '2022-08-20', 7411, 104185, 6382, 60389, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110450, '2022-08-20', 7588, 104186, 6382, 60816, '1.0000', '8.3766', '8.3766', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110451, '2022-08-20', 9399, 104187, 6382, NULL, '1.0000', '0.9803', '0.9803', '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 (110452, '2022-08-20', 9775, 104188, 6382, 56158, '1.0000', '10.4000', '10.4000', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110453, '2022-08-20', 7762, 104189, 6382, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110454, '2022-08-20', 1916, 104190, 6382, 59384, '1.0000', '10.5472', '10.5472', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110455, '2022-08-20', 9729, 104191, 6382, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110456, '2022-08-20', 7672, 104192, 6382, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110457, '2022-08-20', 7335, 104193, 6382, NULL, '1.0000', '16.9000', '16.9000', '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 (110458, '2022-08-20', 7848, 104194, 6382, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (110459, '2022-08-20', 8395, 104195, 6382, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110460, '2022-08-20', 1665, 104196, 6382, 60446, '1.0000', '1.2418', '1.2418', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110461, '2022-08-20', 2895, 104197, 6382, NULL, '1.0000', '11.6000', '11.6000', '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 (110462, '2022-08-20', 1935, 104198, 6382, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110463, '2022-08-20', 7672, 104199, 6382, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110464, '2022-08-20', 8658, 104200, 6382, NULL, '1.0000', '17.5167', '17.5167', '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 (110465, '2022-08-20', 7704, 104201, 6382, NULL, '1.0000', '-1.5625', '-1.5625', '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 (110466, '2022-08-20', 7674, 104202, 6382, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110467, '2022-08-20', 2891, 104203, 6383, 52213, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110468, '2022-08-20', 7411, 104204, 6383, NULL, '4.0000', '1.2819', '1.2819', '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 (110469, '2022-08-20', 7392, 104205, 6383, NULL, '1.0000', '19.5300', '19.5300', '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 (110470, '2022-08-20', 1674, 104206, 6383, NULL, '1.0000', '0.8028', '0.8028', '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 (110471, '2022-08-20', 1615, 104207, 6383, NULL, '14.0000', '5.3000', '5.3000', '7.0000', '7.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 (110472, '2022-08-20', 1744, 104208, 6383, NULL, '1.0000', '138.0750', '138.0750', '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 (110473, '2022-08-20', 7641, 104209, 6383, NULL, '3.0000', '1.9000', '1.9000', '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 (110474, '2022-08-20', 7741, 104210, 6383, NULL, '1.0000', '-174.4114', '-174.4114', '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 (110475, '2022-08-20', 2315, 104211, 6383, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110476, '2022-08-20', 1578, 104212, 6383, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110477, '2022-08-20', 9740, 104213, 6383, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110478, '2022-08-20', 2299, 104214, 6383, 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 (110479, '2022-08-20', 2283, 104215, 6383, 60312, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110480, '2022-08-20', 1841, 104216, 6383, NULL, '1.0000', '0.7630', '0.7630', '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 (110481, '2022-08-20', 8770, 104217, 6383, 59661, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110482, '2022-08-20', 2259, 104218, 6383, 57778, '1.0000', '25.7085', '25.7085', '34.0000', '34.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110483, '2022-08-20', 2766, 104219, 6383, 48868, '1.0000', '22.0000', '22.0000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110484, '2022-08-20', 2169, 104220, 6383, 59849, '2.0000', '1.7142', '1.7142', '2.5000', '2.5000', '87.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110485, '2022-08-20', 2965, 104221, 6383, NULL, '1.0000', '23.6916', '23.6916', '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 (110486, '2022-08-20', 8744, 104222, 6383, 60543, '1.0000', '2.3138', '2.3138', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110487, '2022-08-20', 9482, 104223, 6383, 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 (110488, '2022-08-20', 1450, 104224, 6383, NULL, '5.0000', '0.8483', '0.8483', '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 (110489, '2022-08-20', 8476, 104225, 6383, NULL, '1.0000', '23.0000', '23.0000', '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 (110490, '2022-08-20', 8963, 104226, 6383, 60235, '1.0000', '21.6733', '21.6733', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110491, '2022-08-20', 8476, 104227, 6383, NULL, '2.0000', '23.0000', '23.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 (110492, '2022-08-20', 1945, 104228, 6383, 60264, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110493, '2022-08-20', 7524, 104229, 6383, NULL, '3.0000', '11.9500', '11.9500', '7.0000', '7.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 (110494, '2022-08-20', 1904, 104230, 6383, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110495, '2022-08-20', 7713, 104231, 6383, 59895, '1.0000', '0.1598', '0.1598', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110496, '2022-08-20', 2315, 104232, 6383, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110497, '2022-08-20', 7641, 104233, 6383, NULL, '1.0000', '1.9000', '1.9000', '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 (110498, '2022-08-20', 8208, 104234, 6383, NULL, '4.0000', '47.9541', '47.9541', '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 (110499, '2022-08-20', 8622, 104235, 6383, 60237, '1.0000', '1.4898', '1.4898', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110500, '2022-08-20', 2315, 104236, 6383, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110501, '2022-08-20', 8208, 104237, 6383, NULL, '4.0000', '47.9541', '47.9541', '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 (110502, '2022-08-20', 2169, 104238, 6383, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110503, '2022-08-20', 7917, 104239, 6383, NULL, '8.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (110504, '2022-08-20', 7672, 104240, 6383, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110505, '2022-08-20', 1578, 104241, 6383, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110506, '2022-08-20', 1342, 104242, 6383, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110507, '2022-08-20', 9821, 104243, 6383, 58155, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110508, '2022-08-20', 7411, 104244, 6383, NULL, '1.0000', '1.2819', '1.2819', '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 (110509, '2022-08-20', 1755, 104245, 6383, 13763, '1.0000', '5.8128', '5.8128', '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 (110510, '2022-08-20', 1578, 104246, 6383, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110511, '2022-08-20', 2169, 104247, 6383, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110512, '2022-08-20', 7507, 104248, 6383, 54888, '3.0000', '0.3606', '0.3606', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110513, '2022-08-20', 2315, 104249, 6383, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110514, '2022-08-20', 1307, 104250, 6383, NULL, '1.0000', '-106.4636', '-106.4636', '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 (110515, '2022-08-20', 2315, 104251, 6383, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110516, '2022-08-20', 7473, 104252, 6383, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '29.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110517, '2022-08-20', 1578, 104253, 6383, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110518, '2022-08-20', 2682, 104254, 6383, 59600, '1.0000', '15.1600', '15.1600', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110519, '2022-08-20', 2098, 104255, 6383, 58188, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110520, '2022-08-20', 7921, 104256, 6383, NULL, '1.0000', '0.3000', '0.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 (110521, '2022-08-20', 2088, 104257, 6383, 60330, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110522, '2022-08-20', 2237, 104258, 6383, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110523, '2022-08-20', 7411, 104259, 6383, NULL, '1.0000', '1.2819', '1.2819', '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 (110524, '2022-08-20', 8878, 104260, 6383, NULL, '3.0000', '6.0509', '6.0509', '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 (110525, '2022-08-20', 1499, 104261, 6383, 50243, '10.0000', '0.4542', '0.4542', '0.7000', '0.7000', '2.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110526, '2022-08-20', 2283, 104262, 6383, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110527, '2022-08-20', 1394, 104263, 6383, 60293, '1.0000', '12.8535', '12.8535', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110528, '2022-08-20', 9788, 104264, 6383, 54919, '4.0000', '1.5347', '1.5347', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110529, '2022-08-20', 8170, 104265, 6383, NULL, '1.0000', '5.7500', '5.7500', '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 (110530, '2022-08-20', 1501, 104266, 6383, NULL, '1.0000', '0.3856', '0.3856', '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 (110531, '2022-08-20', 7473, 104267, 6383, 39817, '2.0000', '0.1679', '0.1679', '0.7000', '0.7000', '28.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110532, '2022-08-20', 1839, 104268, 6383, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (110533, '2022-08-20', 2642, 104269, 6383, 59677, '1.0000', '8.6674', '8.6674', '16.0000', '16.0000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110534, '2022-08-20', 2440, 104270, 6383, 59696, '1.0000', '6.9575', '6.9575', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110535, '2022-08-20', 7524, 104271, 6383, NULL, '1.0000', '11.9500', '11.9500', '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 (110536, '2022-08-20', 7641, 104272, 6383, NULL, '1.0000', '1.9000', '1.9000', '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 (110537, '2022-08-20', 1410, 104273, 6383, NULL, '1.0000', '124.6472', '124.6472', '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 (110538, '2022-08-20', 2327, 104274, 6383, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110539, '2022-08-20', 2384, 104275, 6383, NULL, '5.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (110540, '2022-08-20', 7411, 104276, 6383, NULL, '1.0000', '1.2819', '1.2819', '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 (110541, '2022-08-20', 8053, 104277, 6384, 56579, '4.0000', '1.1052', '1.1052', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110542, '2022-08-20', 8053, 104277, 6384, 37844, '1.0000', '1.1052', '1.1052', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110543, '2022-08-20', 9735, 104278, 6384, 60127, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110544, '2022-08-20', 7779, 104279, 6384, 57644, '2.0000', '10.1250', '10.1250', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110545, '2022-08-20', 7641, 104280, 6384, 59332, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '34.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110546, '2022-08-20', 7674, 104281, 6384, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110547, '2022-08-20', 9734, 104282, 6384, 60144, '1.0000', '0.3152', '0.3152', '0.7000', '0.7000', '63.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110548, '2022-08-20', 7848, 104283, 6384, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (110549, '2022-08-20', 2821, 104284, 6385, 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 (110550, '2022-08-20', 1637, 104285, 6385, 3210, '-13.0000', '10.2000', '10.2000', '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 (110551, '2022-08-20', 1637, 104285, 6385, NULL, '14.0000', '10.2000', '10.2000', '20.0000', '20.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 (110552, '2022-08-20', 2384, 104286, 6385, 4087, '-70.0000', '0.4000', '0.4000', '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 (110553, '2022-08-20', 2384, 104286, 6385, NULL, '71.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110554, '2022-08-20', 1806, 104287, 6385, 11433, '-8.0000', '28.1300', '28.1300', '40.5000', '40.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 (110555, '2022-08-20', 1806, 104287, 6385, NULL, '10.0000', '28.1300', '28.1300', '40.5000', '40.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 (110556, '2022-08-20', 1822, 104288, 6385, 8225, '-217.0000', '2.4000', '2.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 (110557, '2022-08-20', 1822, 104288, 6385, NULL, '237.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-237.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110558, '2022-08-20', 1592, 104289, 6385, 6223, '-16.0000', '35.9000', '35.9000', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110559, '2022-08-20', 1592, 104289, 6385, NULL, '17.0000', '35.9000', '35.9000', '56.0000', '56.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 (110560, '2022-08-20', 2384, 104290, 6385, 4087, '-70.0000', '0.4000', '0.4000', '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 (110561, '2022-08-20', 2384, 104290, 6385, NULL, '73.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110562, '2022-08-20', 2738, 104291, 6385, 14257, '-3.0000', '7.6000', '7.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 (110563, '2022-08-20', 2738, 104291, 6385, NULL, '4.0000', '7.6000', '7.6000', '12.5000', '12.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 (110564, '2022-08-20', 2893, 104292, 6385, 18242, '-24.0000', '6.0000', '6.0000', '9.5000', '9.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 (110565, '2022-08-20', 2893, 104292, 6385, NULL, '25.0000', '6.0000', '6.0000', '9.5000', '9.5000', '-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 (110566, '2022-08-20', 2169, 104293, 6385, 10737, '-212.0000', '3.8397', '3.8397', '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 (110567, '2022-08-20', 2169, 104293, 6385, NULL, '214.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-214.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110568, '2022-08-20', 1812, 104294, 6385, 8224, '-114.0000', '7.8900', '7.8900', '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 (110569, '2022-08-20', 1812, 104294, 6385, NULL, '117.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-117.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110570, '2022-08-20', 2406, 104295, 6385, 4454, '-6.0000', '20.7000', '20.7000', '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 (110571, '2022-08-20', 2406, 104295, 6385, NULL, '8.0000', '20.7000', '20.7000', '30.0000', '30.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 (110572, '2022-08-20', 1400, 104296, 6385, NULL, '1.0000', '22.0000', '22.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 (110573, '2022-08-20', 2228, 104297, 6385, 1703, '-6.0000', '25.0000', '25.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 (110574, '2022-08-20', 2228, 104297, 6385, NULL, '7.0000', '25.0000', '25.0000', '38.0000', '38.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 (110575, '2022-08-20', 2503, 104298, 6385, NULL, '1.0000', '14.6000', '14.6000', '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 (110576, '2022-08-20', 9940, 104299, 6385, 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 (110577, '2022-08-20', 1314, 104300, 6385, 2710, '-10.0000', '1.2000', '1.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 (110578, '2022-08-20', 1314, 104300, 6385, NULL, '11.0000', '1.2000', '1.2000', '3.0000', '3.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 (110579, '2022-08-20', 9818, 104301, 6385, NULL, '1.0000', '1.5000', '1.5000', '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 (110580, '2022-08-20', 1779, 104302, 6385, 4898, '-22.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 (110581, '2022-08-20', 1779, 104302, 6385, NULL, '23.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-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 (110582, '2022-08-20', 1688, 104303, 6385, 4896, '-17.0000', '18.5000', '18.5000', '31.5000', '31.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 (110583, '2022-08-20', 1688, 104303, 6385, NULL, '18.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-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 (110584, '2022-08-20', 2341, 104304, 6385, 3844, '-2.0000', '6.8000', '6.8000', '9.4800', '9.4800', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110585, '2022-08-20', 2341, 104304, 6385, NULL, '3.0000', '6.8000', '6.8000', '9.4800', '9.4800', '-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 (110586, '2022-08-20', 1812, 104305, 6385, 8224, '-114.0000', '7.8900', '7.8900', '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 (110587, '2022-08-20', 1812, 104305, 6385, NULL, '115.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-115.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110588, '2022-08-20', 1525, 104306, 6385, NULL, '3.0000', '4.9100', '4.9100', '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 (110589, '2022-08-20', 1904, 104307, 6385, 5442, '-84.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 (110590, '2022-08-20', 1904, 104307, 6385, NULL, '87.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110591, '2022-08-20', 9747, 104308, 6385, NULL, '2.0000', '0.6500', '0.6500', '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 (110592, '2022-08-20', 1342, 104309, 6385, 11264, '-30.0000', '6.8074', '6.8074', '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 (110593, '2022-08-20', 1342, 104309, 6385, NULL, '31.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-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 (110594, '2022-08-20', 1868, 104310, 6385, NULL, '1.0000', '4.0300', '4.0300', '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 (110595, '2022-08-20', 9747, 104311, 6385, NULL, '2.0000', '0.6500', '0.6500', '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 (110596, '2022-08-20', 1667, 104312, 6385, 9745, '-64.0000', '5.9400', '5.9400', '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 (110597, '2022-08-20', 1667, 104312, 6385, NULL, '65.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110598, '2022-08-20', 2315, 104313, 6385, 2735, '-631.0000', '0.3300', '0.3300', '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 (110599, '2022-08-20', 2315, 104313, 6385, NULL, '632.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-632.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110600, '2022-08-20', 1837, 104314, 6385, 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 (110601, '2022-08-20', 1406, 104315, 6385, 22300, '1.0000', '17.1816', '17.1816', '29.0000', '29.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 (110602, '2022-08-20', 1695, 104316, 6385, 12925, '-17.0000', '15.5000', '15.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 (110603, '2022-08-20', 1695, 104316, 6385, NULL, '18.0000', '15.5000', '15.5000', '26.0000', '26.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 (110604, '2022-08-20', 1690, 104317, 6385, NULL, '1.0000', '7.1466', '7.1466', '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 (110605, '2022-08-20', 8208, 104318, 6385, NULL, '1.0000', '33.0000', '33.0000', '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 (110606, '2022-08-20', 1666, 104319, 6385, 3236, '-44.0000', '2.7100', '2.7100', '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 (110607, '2022-08-20', 1666, 104319, 6385, NULL, '45.0000', '2.7100', '2.7100', '4.0000', '4.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 (110608, '2022-08-20', 2250, 104320, 6385, 2787, '-22.0000', '6.8900', '6.8900', '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 (110609, '2022-08-20', 2250, 104320, 6385, NULL, '23.0000', '6.8900', '6.8900', '12.5000', '12.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 (110610, '2022-08-20', 2738, 104321, 6385, 14257, '-3.0000', '7.6000', '7.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 (110611, '2022-08-20', 2738, 104321, 6385, NULL, '5.0000', '7.6000', '7.6000', '12.5000', '12.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 (110612, '2022-08-20', 2277, 104322, 6385, 2937, '-77.0000', '0.7800', '0.7800', '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 (110613, '2022-08-20', 2277, 104322, 6385, NULL, '78.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110614, '2022-08-20', 2169, 104323, 6385, 10737, '-212.0000', '3.8397', '3.8397', '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 (110615, '2022-08-20', 2169, 104323, 6385, NULL, '213.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-213.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110616, '2022-08-20', 2302, 104324, 6385, 2963, '-62.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 (110617, '2022-08-20', 2302, 104324, 6385, NULL, '64.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110618, '2022-08-20', 2169, 104325, 6385, 10737, '-212.0000', '3.8397', '3.8397', '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 (110619, '2022-08-20', 2169, 104325, 6385, NULL, '213.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-213.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110620, '2022-08-20', 2740, 104326, 6385, 14259, '-5.0000', '9.0000', '9.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 (110621, '2022-08-20', 2740, 104326, 6385, NULL, '6.0000', '9.0000', '9.0000', '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 (110622, '2022-08-20', 1855, 104327, 6385, 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 (110623, '2022-08-20', 7506, 104328, 6385, NULL, '1.0000', '15.0000', '15.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 (110624, '2022-08-20', 9747, 104329, 6385, NULL, '1.0000', '0.6500', '0.6500', '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 (110625, '2022-08-20', 2428, 104330, 6385, 5300, '-2.0000', '19.0000', '19.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 (110626, '2022-08-20', 2428, 104330, 6385, NULL, '3.0000', '19.0000', '19.0000', '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 (110627, '2022-08-20', 9558, 104331, 6385, 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 (110628, '2022-08-20', 1702, 104332, 6385, 4499, '-17.0000', '14.9700', '14.9700', '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 (110629, '2022-08-20', 1702, 104332, 6385, NULL, '18.0000', '14.9700', '14.9700', '25.0000', '25.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 (110630, '2022-08-21', 1604, 104333, 6386, 6525, '-3.0000', '34.1212', '34.1212', '57.0000', '57.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110631, '2022-08-21', 1604, 104333, 6386, NULL, '5.0000', '34.1212', '34.1212', '57.0000', '57.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 (110632, '2022-08-21', 7638, 104334, 6386, NULL, '2.0000', '12.0000', '12.0000', '22.5000', '22.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 (110633, '2022-08-21', 9824, 104335, 6386, NULL, '2.0000', '1.3000', '1.3000', '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 (110634, '2022-08-21', 2295, 104336, 6387, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110635, '2022-08-21', 2293, 104337, 6387, NULL, '3.0000', '-17.4320', '-17.4320', '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 (110636, '2022-08-21', 2506, 104338, 6387, NULL, '1.0000', '-9.4377', '-9.4377', '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 (110637, '2022-08-21', 2289, 104339, 6387, NULL, '6.0000', '0.3611', '0.3611', '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 (110638, '2022-08-21', 1339, 104340, 6387, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110639, '2022-08-21', 9747, 104341, 6387, 59907, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110640, '2022-08-21', 2169, 104342, 6387, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '84.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110641, '2022-08-21', 1339, 104343, 6387, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110642, '2022-08-21', 9946, 104344, 6387, NULL, '1.0000', '15.1000', '15.1000', '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 (110643, '2022-08-21', 9729, 104345, 6387, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110644, '2022-08-21', 2864, 104346, 6387, NULL, '10.0000', '3.3622', '3.3622', '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 (110645, '2022-08-21', 2085, 104347, 6387, 60337, '5.0000', '1.4119', '1.4119', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110646, '2022-08-21', 2582, 104348, 6387, NULL, '1.0000', '16.7500', '16.7500', '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 (110647, '2022-08-21', 7318, 104349, 6387, 60226, '1.0000', '12.1931', '12.1931', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110648, '2022-08-21', 3045, 104350, 6387, 60248, '1.0000', '4.0533', '4.0533', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110649, '2022-08-21', 1306, 104351, 6387, NULL, '4.0000', '2.1000', '2.1000', '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 (110650, '2022-08-21', 1398, 104352, 6387, 53656, '2.0000', '12.0000', '12.0000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110651, '2022-08-21', 9942, 104353, 6387, NULL, '1.0000', '13.1000', '13.1000', '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 (110652, '2022-08-21', 7584, 104354, 6387, NULL, '1.0000', '3.1378', '3.1378', '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 (110653, '2022-08-21', 1912, 104355, 6387, NULL, '2.0000', '0.6868', '0.6868', '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 (110654, '2022-08-21', 1499, 104356, 6387, 50243, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110655, '2022-08-21', 1541, 104357, 6387, 48603, '1.0000', '19.0000', '19.0000', '30.5000', '30.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110656, '2022-08-21', 2916, 104358, 6387, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110657, '2022-08-21', 2256, 104359, 6387, 60350, '1.0000', '16.6000', '16.6000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110658, '2022-08-21', 2275, 104360, 6387, 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 (110659, '2022-08-21', 8746, 104361, 6387, 60549, '1.0000', '3.0208', '3.0208', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110660, '2022-08-21', 2237, 104362, 6387, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110661, '2022-08-21', 1666, 104363, 6388, 57713, '1.0000', '2.7066', '2.7066', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110662, '2022-08-21', 1748, 104364, 6388, NULL, '2.0000', '0.3200', '0.3200', '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 (110663, '2022-08-21', 1409, 104365, 6388, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110664, '2022-08-21', 2916, 104366, 6388, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110665, '2022-08-21', 2315, 104367, 6388, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110666, '2022-08-21', 2262, 104368, 6388, 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 (110667, '2022-08-21', 1462, 104369, 6388, 34574, '1.0000', '102.9630', '102.9630', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110668, '2022-08-21', 9787, 104370, 6388, 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 (110669, '2022-08-21', 1981, 104371, 6388, 58048, '1.0000', '12.5000', '12.5000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110670, '2022-08-21', 1545, 104372, 6389, 55529, '1.0000', '6.7700', '6.7700', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110671, '2022-08-21', 1953, 104373, 6389, 58130, '1.0000', '2.6515', '2.6515', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110672, '2022-08-21', 1868, 104374, 6389, NULL, '1.0000', '3.8800', '3.8800', '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 (110673, '2022-08-21', 1674, 104375, 6389, NULL, '1.0000', '0.8028', '0.8028', '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 (110674, '2022-08-21', 9979, 104376, 6390, NULL, '1.0000', '13.9000', '13.9000', '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 (110675, '2022-08-21', 9726, 104377, 6390, 57740, '1.0000', '5.1598', '5.1598', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110676, '2022-08-21', 2167, 104378, 6390, NULL, '1.0000', '0.6663', '0.6663', '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 (110677, '2022-08-21', 1912, 104379, 6390, NULL, '1.0000', '0.6868', '0.6868', '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 (110678, '2022-08-21', 2302, 104380, 6391, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '29.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110679, '2022-08-21', 1557, 104381, 6391, NULL, '1.0000', '8.2500', '8.2500', '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 (110680, '2022-08-21', 2068, 104382, 6392, NULL, '1.0000', '14.6943', '14.6943', '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 (110681, '2022-08-21', 2169, 104383, 6392, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110682, '2022-08-21', 9269, 104384, 6393, NULL, '1.0000', '3.4000', '3.4000', '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 (110683, '2022-08-21', 9311, 104385, 6393, NULL, '1.0000', '6.6000', '6.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 (110684, '2022-08-21', 8949, 104386, 6393, 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 (110685, '2022-08-21', 2287, 104387, 6393, 2947, '-49.0000', '1.8000', '1.8000', '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 (110686, '2022-08-21', 2287, 104387, 6393, NULL, '53.0000', '1.8000', '1.8000', '4.5000', '4.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 (110687, '2022-08-21', 9776, 104388, 6393, NULL, '1.0000', '7.6700', '7.6700', '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 (110688, '2022-08-21', 7518, 104389, 6393, NULL, '1.0000', '7.8200', '7.8200', '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 (110689, '2022-08-21', 9413, 104390, 6393, 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 (110690, '2022-08-21', 1916, 104391, 6393, 5445, '-12.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110691, '2022-08-21', 1916, 104391, 6393, NULL, '13.0000', '8.2300', '8.2300', '14.0000', '14.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 (110692, '2022-08-21', 9809, 104392, 6393, NULL, '1.0000', '5.7900', '5.7900', '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 (110693, '2022-08-21', 7709, 104393, 6393, 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 (110694, '2022-08-21', 9456, 104394, 6393, NULL, '1.0000', '3.3200', '3.3200', '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 (110695, '2022-08-21', 8208, 104395, 6393, NULL, '1.0000', '33.0000', '33.0000', '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 (110696, '2022-08-21', 8746, 104396, 6393, NULL, '1.0000', '3.1500', '3.1500', '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 (110697, '2022-08-21', 7641, 104397, 6393, NULL, '1.0000', '1.9000', '1.9000', '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 (110698, '2022-08-21', 8979, 104398, 6393, 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 (110699, '2022-08-21', 7672, 104399, 6393, NULL, '1.0000', '1.0200', '1.0200', '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 (110700, '2022-08-21', 7674, 104400, 6393, NULL, '1.0000', '1.3000', '1.3000', '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 (110701, '2022-08-21', 8208, 104401, 6393, NULL, '7.0000', '33.0000', '33.0000', '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 (110702, '2022-08-21', 7730, 104402, 6393, NULL, '10.0000', '0.1000', '0.1000', '0.2000', '0.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 (110703, '2022-08-21', 7848, 104403, 6393, NULL, '1.0000', '1.3500', '1.3500', '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 (110704, '2022-08-21', 7658, 104404, 6393, NULL, '10.0000', '2.0200', '2.0200', '3.5000', '3.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 (110705, '2022-08-21', 7675, 104405, 6393, NULL, '1.0000', '11.4300', '11.4300', '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 (110706, '2022-08-21', 7926, 104406, 6393, 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 (110707, '2022-08-21', 7671, 104407, 6393, NULL, '2.0000', '15.5000', '15.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 (110708, '2022-08-21', 7741, 104408, 6393, NULL, '1.0000', '1.2000', '1.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 (110709, '2022-08-21', 8208, 104409, 6393, NULL, '2.0000', '33.0000', '33.0000', '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 (110710, '2022-08-21', 7983, 104410, 6393, NULL, '1.0000', '5.9000', '5.9000', '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 (110711, '2022-08-21', 7779, 104411, 6393, NULL, '1.0000', '9.5000', '9.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 (110712, '2022-08-21', 9821, 104412, 6393, NULL, '1.0000', '1.4500', '1.4500', '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 (110713, '2022-08-21', 9092, 104413, 6393, NULL, '1.0000', '5.2900', '5.2900', '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 (110714, '2022-08-21', 7473, 104414, 6393, NULL, '4.0000', '0.5300', '0.5300', '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 (110715, '2022-08-21', 7576, 104415, 6393, NULL, '2.0000', '1.6300', '1.6300', '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 (110716, '2022-08-21', 7928, 104416, 6393, NULL, '1.0000', '1.2000', '1.2000', '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 (110717, '2022-08-21', 7709, 104417, 6393, NULL, '2.0000', '3.5000', '3.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 (110718, '2022-08-21', 2289, 104418, 6393, 2949, '-251.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 (110719, '2022-08-21', 2289, 104418, 6393, NULL, '253.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-253.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110720, '2022-08-21', 7675, 104419, 6394, NULL, '1.0000', '-21.9809', '-21.9809', '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 (110721, '2022-08-21', 7730, 104420, 6394, 60195, '5.0000', '0.0723', '0.0723', '0.2000', '0.2000', '114.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110722, '2022-08-21', 7704, 104421, 6394, NULL, '3.0000', '-1.5625', '-1.5625', '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 (110723, '2022-08-21', 7524, 104422, 6394, 60436, '1.0000', '4.9338', '4.9338', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110724, '2022-08-21', 7385, 104423, 6394, 60459, '8.0000', '5.7239', '5.7239', '4.0000', '4.0000', '80.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110725, '2022-08-21', 7666, 104424, 6394, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110726, '2022-08-21', 1665, 104425, 6394, 60446, '1.0000', '1.2418', '1.2418', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110727, '2022-08-21', 7954, 104426, 6394, NULL, '4.0000', '7039.4904', '7039.4904', '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 (110728, '2022-08-21', 7952, 104427, 6394, 59404, '1.0000', '6.8635', '6.8635', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110729, '2022-08-21', 7952, 104427, 6394, 59139, '1.0000', '6.8635', '6.8635', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110730, '2022-08-21', 7709, 104428, 6394, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (110731, '2022-08-21', 7509, 104429, 6394, 60453, '1.0000', '8.8761', '8.8761', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110732, '2022-08-21', 7671, 104430, 6394, NULL, '3.0000', '861.3000', '861.3000', '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 (110733, '2022-08-21', 7317, 104431, 6394, 59094, '1.0000', '15.4364', '15.4364', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110734, '2022-08-21', 7411, 104432, 6394, 60389, '1.0000', '1.4000', '1.4000', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110735, '2022-08-21', 2287, 104433, 6394, 59355, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '12.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110736, '2022-08-21', 1557, 104434, 6394, 60788, '1.0000', '8.0689', '8.0689', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110737, '2022-08-21', 8032, 104435, 6394, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110738, '2022-08-21', 7411, 104436, 6394, 60389, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110739, '2022-08-21', 7704, 104437, 6394, NULL, '1.0000', '-1.5625', '-1.5625', '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 (110740, '2022-08-21', 2295, 104438, 6394, NULL, '3.0000', '-7.8337', '-7.8337', '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 (110741, '2022-08-21', 2100, 104439, 6394, 60117, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110742, '2022-08-21', 9272, 104440, 6394, NULL, '1.0000', '3.1000', '3.1000', '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 (110743, '2022-08-21', 8714, 104441, 6394, 56542, '1.0000', '3.8309', '3.8309', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110744, '2022-08-21', 8308, 104442, 6394, NULL, '1.0000', '22.3258', '22.3258', '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 (110745, '2022-08-21', 7514, 104443, 6394, NULL, '1.0000', '223354.7898', '223354.7898', '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 (110746, '2022-08-21', 8017, 104444, 6394, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110747, '2022-08-21', 9503, 104445, 6394, 56528, '1.0000', '1.2700', '1.2700', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110748, '2022-08-21', 7709, 104446, 6394, NULL, '2.0000', '-1277.8597', '-1277.8597', '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 (110749, '2022-08-21', 1810, 104447, 6394, NULL, '1.0000', '8.7500', '8.7500', '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 (110750, '2022-08-21', 7756, 104448, 6394, 60439, '1.0000', '29.7681', '29.7681', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110751, '2022-08-21', 7674, 104449, 6394, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110752, '2022-08-21', 7317, 104450, 6394, 59094, '1.0000', '15.4364', '15.4364', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110753, '2022-08-21', 7755, 104451, 6394, 60817, '1.0000', '4.9366', '4.9366', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110754, '2022-08-21', 7641, 104452, 6394, 59332, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '33.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110755, '2022-08-21', 7474, 104453, 6394, 60438, '1.0000', '7.6054', '7.6054', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110756, '2022-08-21', 7444, 104454, 6394, 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 (110757, '2022-08-21', 7560, 104455, 6394, 60485, '1.0000', '41.4439', '41.4439', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110758, '2022-08-21', 7711, 104456, 6394, 59381, '1.0000', '49.6000', '49.6000', '65.5000', '65.5000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110759, '2022-08-21', 9649, 104457, 6394, NULL, '1.0000', '14.4100', '14.4100', '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 (110760, '2022-08-21', 1935, 104458, 6394, 50678, '1.0000', '-0.4418', '-0.4418', '2.0000', '2.0000', '86.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110761, '2022-08-21', 7593, 104459, 6394, 60160, '1.0000', '3.0249', '3.0249', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110762, '2022-08-21', 8333, 104460, 6394, 54096, '1.0000', '6.8600', '6.8600', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110763, '2022-08-21', 9271, 104461, 6394, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110764, '2022-08-21', 8866, 104462, 6394, NULL, '1.0000', '0.4300', '0.4300', '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 (110765, '2022-08-21', 8965, 104463, 6394, NULL, '1.0000', '-263.2470', '-263.2470', '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 (110766, '2022-08-21', 7752, 104464, 6394, 46196, '1.0000', '2.4834', '2.4834', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110767, '2022-08-21', 7674, 104465, 6394, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110768, '2022-08-21', 8101, 104466, 6394, 59363, '3.0000', '2.1159', '2.1159', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110769, '2022-08-21', 7411, 104467, 6394, 60389, '2.0000', '1.4000', '1.4000', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110770, '2022-08-21', 9815, 104468, 6395, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '18.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110771, '2022-08-21', 7802, 104469, 6395, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110772, '2022-08-21', 8745, 104470, 6395, 60515, '2.0000', '11.8963', '11.8963', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110773, '2022-08-21', 2167, 104471, 6395, 59964, '1.0000', '2.5881', '2.5881', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110774, '2022-08-21', 8745, 104472, 6395, 60515, '2.0000', '11.8963', '11.8963', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110775, '2022-08-21', 2163, 104473, 6395, 56208, '1.0000', '24.1717', '24.1717', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110776, '2022-08-21', 1525, 104474, 6395, 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 (110777, '2022-08-21', 2893, 104475, 6395, 60048, '1.0000', '6.7609', '6.7609', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110778, '2022-08-21', 9745, 104476, 6395, 46045, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110779, '2022-08-21', 9818, 104477, 6395, NULL, '1.0000', '1.5000', '1.5000', '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 (110780, '2022-08-21', 1347, 104478, 6395, 59626, '3.0000', '-0.5451', '-0.5451', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110781, '2022-08-21', 7799, 104479, 6395, NULL, '1.0000', '2.0000', '2.0000', '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 (110782, '2022-08-21', 7917, 104480, 6395, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110783, '2022-08-21', 9815, 104481, 6395, 55826, '3.0000', '0.9000', '0.9000', '1.2000', '1.2000', '16.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110784, '2022-08-21', 2477, 104482, 6395, 5190, '1.0000', '8.0000', '8.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 (110785, '2022-08-21', 1837, 104483, 6395, 60063, '2.0000', '0.6105', '0.6105', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110786, '2022-08-21', 2315, 104484, 6395, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110787, '2022-08-21', 9992, 104485, 6395, NULL, '1.0000', '27.6000', '27.6000', '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 (110788, '2022-08-21', 9747, 104486, 6395, 59965, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110789, '2022-08-21', 2277, 104487, 6395, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '112.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110790, '2022-08-21', 2386, 104488, 6395, 56749, '1.0000', '2.8183', '2.8183', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110791, '2022-08-21', 2070, 104489, 6395, 58843, '1.0000', '2.1957', '2.1957', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110792, '2022-08-21', 1892, 104490, 6395, 58588, '1.0000', '0.5200', '0.5200', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110793, '2022-08-21', 9747, 104491, 6395, 59965, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110794, '2022-08-21', 2858, 104492, 6395, NULL, '2.0000', '1.0000', '1.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 (110795, '2022-08-21', 1837, 104493, 6395, 60063, '2.0000', '0.6105', '0.6105', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110796, '2022-08-21', 1602, 104494, 6395, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110797, '2022-08-21', 8359, 104495, 6395, 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 (110798, '2022-08-21', 1912, 104496, 6395, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110799, '2022-08-21', 7744, 104497, 6395, NULL, '1.0000', '2.9400', '2.9400', '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 (110800, '2022-08-21', 2302, 104498, 6395, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110801, '2022-08-21', 2546, 104499, 6395, 49062, '1.0000', '12.3150', '12.3150', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110802, '2022-08-21', 8435, 104500, 6395, NULL, '1.0000', '5.7000', '5.7000', '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 (110803, '2022-08-21', 9275, 104501, 6395, NULL, '1.0000', '6.3000', '6.3000', '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 (110804, '2022-08-21', 2169, 104502, 6395, 57981, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110805, '2022-08-21', 2025, 104503, 6395, NULL, '1.0000', '4.5000', '4.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 (110806, '2022-08-21', 7917, 104504, 6395, NULL, '1.0000', '5.0000', '5.0000', '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 (110807, '2022-08-21', 9747, 104505, 6395, 59965, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110808, '2022-08-21', 8444, 104506, 6395, 58612, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110809, '2022-08-21', 9213, 104507, 6395, 60520, '2.0000', '6.8191', '6.8191', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110810, '2022-08-21', 2858, 104508, 6395, 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 (110811, '2022-08-21', 2417, 104509, 6395, 58548, '1.0000', '15.8267', '15.8267', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110812, '2022-08-21', 2435, 104510, 6395, 60530, '1.0000', '10.0500', '10.0500', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110813, '2022-08-21', 8444, 104511, 6395, 58612, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110814, '2022-08-21', 7802, 104512, 6395, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110815, '2022-08-21', 9788, 104513, 6396, 56595, '1.0000', '1.5400', '1.5400', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110816, '2022-08-21', 8068, 104514, 6396, 59166, '1.0000', '7.9956', '7.9956', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110817, '2022-08-21', 7671, 104515, 6396, NULL, '2.0000', '861.3000', '861.3000', '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 (110818, '2022-08-21', 7641, 104516, 6396, 59332, '1.0000', '7.0908', '7.0908', '11.5000', '11.5000', '32.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110819, '2022-08-21', 9098, 104517, 6396, NULL, '2.0000', '-2.9392', '-2.9392', '34.5000', '34.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 (110820, '2022-08-21', 8085, 104518, 6396, 49815, '3.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110821, '2022-08-21', 8101, 104519, 6396, 59363, '2.0000', '2.1159', '2.1159', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110822, '2022-08-21', 8101, 104519, 6396, NULL, '1.0000', '2.1159', '2.1159', '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 (110823, '2022-08-21', 7714, 104520, 6396, NULL, '8.0000', '0.4200', '0.4200', '0.6000', '0.6000', '-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 (110824, '2022-08-21', 7444, 104521, 6396, 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 (110825, '2022-08-21', 7674, 104522, 6396, 60393, '1.0000', '65.7613', '65.7613', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110826, '2022-08-21', 8186, 104523, 6396, NULL, '2.0000', '1.5626', '1.5626', '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 (110827, '2022-08-21', 8158, 104524, 6397, 56697, '1.0000', '24.5000', '24.5000', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110828, '2022-08-21', 7514, 104525, 6398, 54672, '1.0000', '0.7619', '0.7619', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110829, '2022-08-21', 1425, 104526, 6398, 59959, '2.0000', '6.9322', '6.9322', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110830, '2022-08-21', 2237, 104527, 6398, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110831, '2022-08-21', 2237, 104528, 6398, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110832, '2022-08-21', 2315, 104529, 6398, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110833, '2022-08-21', 2169, 104530, 6398, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110834, '2022-08-21', 9503, 104531, 6398, NULL, '1.0000', '20.6000', '20.6000', '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 (110835, '2022-08-21', 2315, 104532, 6398, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110836, '2022-08-21', 7318, 104533, 6398, 58756, '1.0000', '11.1169', '11.1169', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110837, '2022-08-21', 2068, 104534, 6398, 59987, '1.0000', '12.8818', '12.8818', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110838, '2022-08-21', 2315, 104535, 6398, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110839, '2022-08-21', 1674, 104536, 6398, 58657, '3.0000', '8.2081', '8.2081', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110840, '2022-08-21', 1665, 104537, 6398, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110841, '2022-08-21', 1904, 104538, 6398, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110842, '2022-08-21', 9924, 104539, 6398, 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 (110843, '2022-08-21', 7641, 104540, 6398, NULL, '1.0000', '1.9000', '1.9000', '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 (110844, '2022-08-21', 1383, 104541, 6398, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110845, '2022-08-21', 2923, 104542, 6398, 59984, '1.0000', '13.9367', '13.9367', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110846, '2022-08-21', 2656, 104543, 6398, 40382, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110847, '2022-08-21', 2699, 104544, 6398, 55438, '1.0000', '3.0981', '3.0981', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110848, '2022-08-21', 1755, 104545, 6398, 32881, '1.0000', '5.6333', '5.6333', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110849, '2022-08-21', 1501, 104546, 6398, 58770, '1.0000', '95.0477', '95.0477', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110850, '2022-08-21', 1812, 104547, 6398, 59963, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110851, '2022-08-21', 1804, 104548, 6398, 53692, '1.0000', '4.4470', '4.4470', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110852, '2022-08-21', 1946, 104549, 6398, 56944, '1.0000', '8.9714', '8.9714', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110853, '2022-08-21', 2169, 104550, 6398, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110854, '2022-08-21', 1672, 104551, 6398, 58624, '4.0000', '12.2469', '12.2469', '5.5000', '5.5000', '36.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110855, '2022-08-21', 1761, 104552, 6398, 44765, '1.0000', '1.8333', '1.8333', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110856, '2022-08-21', 1812, 104553, 6398, 59963, '1.0000', '8.6297', '8.6297', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110857, '2022-08-21', 7411, 104554, 6398, NULL, '20.0000', '1.3793', '1.3793', '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 (110858, '2022-08-21', 2823, 104555, 6398, 59967, '2.0000', '7.5677', '7.5677', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110859, '2022-08-21', 7743, 104556, 6398, NULL, '1.0000', '1.3100', '1.3100', '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 (110860, '2022-08-21', 8476, 104557, 6398, NULL, '2.0000', '23.0000', '23.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 (110861, '2022-08-21', 9729, 104558, 6398, 46048, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110862, '2022-08-21', 2315, 104559, 6398, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110863, '2022-08-21', 9821, 104560, 6398, 56978, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110864, '2022-08-21', 2221, 104561, 6398, 58659, '1.0000', '17.3584', '17.3584', '26.0000', '26.0000', '17.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110865, '2022-08-21', 1578, 104562, 6398, 46035, '1.0000', '1.9700', '1.9700', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110866, '2022-08-21', 2699, 104563, 6398, 55438, '1.0000', '3.0981', '3.0981', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110867, '2022-08-21', 1905, 104564, 6398, 5509, '5.0000', '0.4000', '0.4000', '1.0000', '1.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 (110868, '2022-08-21', 2440, 104565, 6398, 59061, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110869, '2022-08-21', 7819, 104566, 6398, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '6.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110870, '2022-08-21', 2068, 104567, 6398, 59987, '1.0000', '12.8818', '12.8818', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110871, '2022-08-21', 2169, 104568, 6398, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110872, '2022-08-21', 9482, 104569, 6398, 32585, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '140.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110873, '2022-08-21', 7743, 104570, 6398, NULL, '1.0000', '1.3100', '1.3100', '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 (110874, '2022-08-21', 1884, 104571, 6398, 40864, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110875, '2022-08-21', 1501, 104572, 6398, 58770, '1.0000', '95.0477', '95.0477', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110876, '2022-08-21', 7743, 104573, 6398, NULL, '1.0000', '1.3100', '1.3100', '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 (110877, '2022-08-21', 9791, 104574, 6398, 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 (110878, '2022-08-21', 2070, 104575, 6398, 58843, '1.0000', '2.1957', '2.1957', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110879, '2022-08-21', 2068, 104576, 6398, 59987, '1.0000', '12.8818', '12.8818', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110880, '2022-08-21', 1711, 104577, 6398, 9478, '1.0000', '7.4900', '7.4900', '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 (110881, '2022-08-21', 9734, 104578, 6398, 56220, '4.0000', '0.3200', '0.3200', '0.7000', '0.7000', '67.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110882, '2022-08-21', 2169, 104579, 6398, 56941, '2.0000', '1.3616', '1.3616', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110883, '2022-08-21', 7743, 104580, 6398, NULL, '2.0000', '1.3100', '1.3100', '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 (110884, '2022-08-21', 1543, 104581, 6398, 54601, '1.0000', '28.1483', '28.1483', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110885, '2022-08-21', 7411, 104582, 6398, NULL, '1.0000', '1.3793', '1.3793', '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 (110886, '2022-08-21', 2656, 104583, 6398, 40382, '1.0000', '1.5000', '1.5000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110887, '2022-08-21', 2777, 104584, 6398, 60031, '1.0000', '4.0667', '4.0667', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110888, '2022-08-21', 7483, 104585, 6398, NULL, '1.0000', '0.7400', '0.7400', '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 (110889, '2022-08-21', 2991, 104586, 6398, 48761, '1.0000', '0.1733', '0.1733', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110890, '2022-08-21', 1669, 104587, 6398, 57961, '1.0000', '17.9963', '17.9963', '14.0000', '14.0000', '25.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110891, '2022-08-21', 8745, 104588, 6398, 55450, '1.0000', '11.8963', '11.8963', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110892, '2022-08-21', 1639, 104589, 6398, 43553, '1.0000', '7.3300', '7.3300', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110893, '2022-08-21', 7411, 104590, 6398, NULL, '1.0000', '1.3793', '1.3793', '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 (110894, '2022-08-21', 8866, 104591, 6398, NULL, '1.0000', '0.4300', '0.4300', '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 (110895, '2022-08-22', 1501, 104592, 6399, NULL, '1.0000', '0.3856', '0.3856', '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 (110896, '2022-08-22', 2060, 104593, 6399, NULL, '1.0000', '0.3295', '0.3295', '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 (110897, '2022-08-22', 1501, 104594, 6399, NULL, '1.0000', '0.3856', '0.3856', '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 (110898, '2022-08-22', 1904, 104595, 6399, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110899, '2022-08-22', 1501, 104596, 6399, NULL, '1.0000', '0.3856', '0.3856', '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 (110900, '2022-08-22', 2769, 104597, 6399, NULL, '2.0000', '0.8008', '0.8008', '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 (110901, '2022-08-22', 9482, 104598, 6399, NULL, '2.0000', '0.5000', '0.5000', '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 (110902, '2022-08-22', 2167, 104599, 6399, NULL, '1.0000', '0.6663', '0.6663', '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 (110903, '2022-08-22', 7514, 104600, 6399, NULL, '1.0000', '2.2500', '2.2500', '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 (110904, '2022-08-22', 8933, 104601, 6399, NULL, '1.0000', '8.8300', '8.8300', '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 (110905, '2022-08-22', 7514, 104602, 6399, NULL, '1.0000', '2.2500', '2.2500', '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 (110906, '2022-08-22', 1342, 104603, 6399, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110907, '2022-08-22', 1841, 104604, 6399, NULL, '2.0000', '0.7630', '0.7630', '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 (110908, '2022-08-22', 1840, 104605, 6399, NULL, '2.0000', '0.2400', '0.2400', '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 (110909, '2022-08-22', 2060, 104606, 6399, NULL, '2.0000', '0.3295', '0.3295', '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 (110910, '2022-08-22', 1308, 104607, 6399, 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 (110911, '2022-08-22', 2289, 104608, 6399, NULL, '2.0000', '0.3611', '0.3611', '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 (110912, '2022-08-22', 7917, 104609, 6399, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110913, '2022-08-22', 7412, 104610, 6399, NULL, '1.0000', '8.3200', '8.3200', '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 (110914, '2022-08-22', 7672, 104611, 6399, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110915, '2022-08-22', 7803, 104612, 6399, NULL, '2.0000', '1.8200', '1.8200', '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 (110916, '2022-08-22', 7641, 104613, 6399, NULL, '1.0000', '1.9000', '1.9000', '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 (110917, '2022-08-22', 1375, 104614, 6399, 60357, '1.0000', '32.9413', '32.9413', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110918, '2022-08-22', 1375, 104614, 6399, 56410, '1.0000', '32.9413', '32.9413', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110919, '2022-08-22', 2311, 104615, 6399, 60295, '1.0000', '60.3000', '60.3000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110920, '2022-08-22', 9984, 104616, 6399, 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 (110921, '2022-08-22', 2256, 104617, 6399, 60350, '1.0000', '16.6000', '16.6000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110922, '2022-08-22', 2109, 104618, 6399, NULL, '2.0000', '0.0413', '0.0413', '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 (110923, '2022-08-22', 7458, 104619, 6399, NULL, '1.0000', '3.0000', '3.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 (110924, '2022-08-22', 2416, 104620, 6399, 57493, '1.0000', '1.3499', '1.3499', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110925, '2022-08-22', 1743, 104621, 6399, NULL, '1.0000', '3.5650', '3.5650', '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 (110926, '2022-08-22', 8771, 104622, 6399, 60545, '1.0000', '7.0112', '7.0112', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110927, '2022-08-22', 2167, 104623, 6399, NULL, '3.0000', '0.6663', '0.6663', '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 (110928, '2022-08-22', 9740, 104624, 6399, 55951, '4.0000', '0.6685', '0.6685', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110929, '2022-08-22', 1493, 104625, 6399, NULL, '1.0000', '-174.0400', '-174.0400', '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 (110930, '2022-08-22', 1700, 104626, 6399, NULL, '1.0000', '1.0000', '1.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 (110931, '2022-08-22', 2331, 104627, 6400, 3834, '-13.0000', '12.0700', '12.0700', '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 (110932, '2022-08-22', 2331, 104627, 6400, NULL, '14.0000', '12.0700', '12.0700', '18.0000', '18.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 (110933, '2022-08-22', 2315, 104628, 6400, 2735, '-632.0000', '0.3300', '0.3300', '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 (110934, '2022-08-22', 2315, 104628, 6400, NULL, '633.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-633.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110935, '2022-08-22', 9785, 104629, 6400, 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 (110936, '2022-08-22', 1945, 104630, 6400, 18023, '-7.0000', '9.5000', '9.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110937, '2022-08-22', 1945, 104630, 6400, NULL, '8.0000', '9.5000', '9.5000', '14.0000', '14.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 (110938, '2022-08-22', 2096, 104631, 6400, NULL, '1.0000', '1.5500', '1.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 (110939, '2022-08-22', 1885, 104632, 6400, 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 (110940, '2022-08-22', 8677, 104633, 6400, NULL, '2.0000', '1.2800', '1.2800', '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 (110941, '2022-08-22', 7802, 104634, 6400, NULL, '2.0000', '0.9200', '0.9200', '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 (110942, '2022-08-22', 2050, 104635, 6400, 6869, '1.0000', '4.5000', '4.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 61);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110943, '2022-08-22', 1513, 104636, 6400, 10888, '-7.0000', '11.9600', '11.9600', '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 (110944, '2022-08-22', 1513, 104636, 6400, NULL, '8.0000', '11.9600', '11.9600', '23.0000', '23.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 (110945, '2022-08-22', 7756, 104637, 6400, NULL, '1.0000', '2.5000', '2.5000', '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 (110946, '2022-08-22', 2341, 104638, 6400, 3844, '-3.0000', '6.8000', '6.8000', '9.4800', '9.4800', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110947, '2022-08-22', 2341, 104638, 6400, NULL, '4.0000', '6.8000', '6.8000', '9.4800', '9.4800', '-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 (110948, '2022-08-22', 7506, 104639, 6400, NULL, '1.0000', '15.0000', '15.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 (110949, '2022-08-22', 1841, 104640, 6400, NULL, '1.0000', '142.5780', '142.5780', '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 (110950, '2022-08-22', 9458, 104641, 6400, NULL, '1.0000', '1.5000', '1.5000', '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 (110951, '2022-08-22', 2460, 104642, 6400, 12921, '-8.0000', '32.7700', '32.7700', '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 (110952, '2022-08-22', 2460, 104642, 6400, NULL, '9.0000', '32.7700', '32.7700', '45.0000', '45.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 (110953, '2022-08-22', 1602, 104643, 6400, 5897, '-179.0000', '6.7859', '6.7859', '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 (110954, '2022-08-22', 1602, 104643, 6400, NULL, '180.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-180.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110955, '2022-08-22', 2384, 104644, 6400, 4087, '-74.0000', '0.4000', '0.4000', '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 (110956, '2022-08-22', 2384, 104644, 6400, NULL, '86.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110957, '2022-08-22', 2348, 104645, 6401, 54551, '1.0000', '26.9800', '26.9800', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110958, '2022-08-22', 2348, 104645, 6401, 51333, '1.0000', '26.9800', '26.9800', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110959, '2022-08-22', 2670, 104646, 6401, NULL, '4.0000', '0.3200', '0.3200', '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 (110960, '2022-08-22', 3064, 104647, 6402, 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 (110961, '2022-08-22', 2602, 104648, 6402, 54368, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110962, '2022-08-22', 2169, 104649, 6402, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110963, '2022-08-22', 9747, 104650, 6402, 59965, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110964, '2022-08-22', 1871, 104651, 6402, 59999, '10.0000', '4.6908', '4.6908', '3.7000', '3.7000', '41.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110965, '2022-08-22', 9219, 104652, 6402, 58824, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110966, '2022-08-22', 2237, 104653, 6402, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110967, '2022-08-22', 1704, 104654, 6402, 52231, '1.0000', '-1889.8857', '-1889.8857', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110968, '2022-08-22', 2315, 104655, 6402, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110969, '2022-08-22', 8711, 104656, 6402, NULL, '1.0000', '5.1000', '5.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 (110970, '2022-08-22', 2262, 104657, 6402, 55469, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110971, '2022-08-22', 1602, 104658, 6402, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110972, '2022-08-22', 1781, 104659, 6402, 58607, '1.0000', '4.8500', '4.8500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110973, '2022-08-22', 9685, 104660, 6403, NULL, '1.0000', '34.6600', '34.6600', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110974, '2022-08-22', 7411, 104661, 6403, NULL, '1.0000', '1.3500', '1.3500', '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 (110975, '2022-08-22', 2435, 104662, 6404, 60530, '1.0000', '10.0500', '10.0500', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110976, '2022-08-22', 2095, 104663, 6404, 54414, '1.0000', '1.6508', '1.6508', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110977, '2022-08-22', 2263, 104664, 6404, 56910, '1.0000', '5.2300', '5.2300', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110978, '2022-08-22', 1910, 104665, 6404, 60091, '1.0000', '1.4600', '1.4600', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110979, '2022-08-22', 1670, 104666, 6404, 58802, '1.0000', '40.8146', '40.8146', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110980, '2022-08-22', 1868, 104667, 6404, 53259, '1.0000', '4.1530', '4.1530', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110981, '2022-08-22', 1674, 104668, 6404, 58657, '1.0000', '8.2081', '8.2081', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110982, '2022-08-22', 2105, 104669, 6404, 56726, '2.0000', '2.0391', '2.0391', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110983, '2022-08-22', 2011, 104670, 6404, 6434, '1.0000', '0.5300', '0.5300', '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 (110984, '2022-08-22', 2289, 104671, 6404, 56722, '2.0000', '0.2692', '0.2692', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110985, '2022-08-22', 2916, 104672, 6404, 58636, '1.0000', '14.8126', '14.8126', '22.5000', '22.5000', '6.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110986, '2022-08-22', 9871, 104673, 6404, 54350, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110987, '2022-08-22', 9989, 104674, 6405, 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 (110988, '2022-08-22', 1760, 104675, 6405, 93, '1.0000', '111.8384', '111.8384', '1.0000', '1.0000', '1.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 (110989, '2022-08-22', 8203, 104676, 6405, 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 (110990, '2022-08-22', 2315, 104677, 6405, 2735, '-633.0000', '0.3300', '0.3300', '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 (110991, '2022-08-22', 2315, 104677, 6405, NULL, '634.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-634.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110992, '2022-08-22', 2284, 104678, 6405, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (110993, '2022-08-22', 7674, 104679, 6405, NULL, '3.0000', '1.3000', '1.3000', '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 (110994, '2022-08-22', 7917, 104680, 6405, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (110995, '2022-08-22', 7743, 104681, 6405, NULL, '1.0000', '1.3100', '1.3100', '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 (110996, '2022-08-22', 7418, 104682, 6405, NULL, '4.0000', '25.3000', '25.3000', '1.6000', '1.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 (110997, '2022-08-22', 8966, 104683, 6405, NULL, '1.0000', '6.8500', '6.8500', '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 (110998, '2022-08-22', 7514, 104684, 6405, NULL, '1.0000', '2.2500', '2.2500', '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 (110999, '2022-08-22', 2986, 104685, 6405, NULL, '1.0000', '0.7700', '0.7700', '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 (111000, '2022-08-22', 7921, 104686, 6405, NULL, '1.0000', '0.3000', '0.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 (111001, '2022-08-22', 1338, 104687, 6405, 16502, '-18.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 (111002, '2022-08-22', 1338, 104687, 6405, NULL, '19.0000', '4.0000', '4.0000', '6.5000', '6.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 (111003, '2022-08-22', 7736, 104688, 6405, NULL, '1.0000', '16.2000', '16.2000', '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 (111004, '2022-08-22', 7509, 104689, 6405, 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 (111005, '2022-08-22', 7588, 104690, 6405, NULL, '1.0000', '6.9000', '6.9000', '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 (111006, '2022-08-22', 8596, 104691, 6405, 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 (111007, '2022-08-22', 7765, 104692, 6405, NULL, '2.0000', '16.0000', '16.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 (111008, '2022-08-22', 8677, 104693, 6405, NULL, '3.0000', '1.2800', '1.2800', '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 (111009, '2022-08-22', 7781, 104694, 6405, NULL, '3.0000', '4.2500', '4.2500', '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 (111010, '2022-08-22', 2506, 104695, 6405, 16244, '-36.0000', '3.4900', '3.4900', '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 (111011, '2022-08-22', 2506, 104695, 6405, NULL, '37.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111012, '2022-08-22', 7741, 104696, 6405, NULL, '1.0000', '1.2000', '1.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 (111013, '2022-08-22', 7757, 104697, 6405, NULL, '1.0000', '82.4400', '82.4400', '179.0000', '179.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111014, '2022-08-22', 7576, 104698, 6405, NULL, '3.0000', '1.6300', '1.6300', '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 (111015, '2022-08-22', 2105, 104699, 6405, NULL, '2.0000', '1.3500', '1.3500', '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 (111016, '2022-08-22', 7431, 104700, 6405, NULL, '1.0000', '18.0000', '18.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 (111017, '2022-08-22', 8077, 104701, 6405, NULL, '1.0000', '3.6000', '3.6000', '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 (111018, '2022-08-22', 7872, 104702, 6405, 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 (111019, '2022-08-22', 7774, 104703, 6405, NULL, '1.0000', '3.3000', '3.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 (111020, '2022-08-22', 9449, 104704, 6405, NULL, '1.0000', '8.5000', '8.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 (111021, '2022-08-22', 7482, 104705, 6405, NULL, '1.0000', '3.0500', '3.0500', '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 (111022, '2022-08-22', 9245, 104706, 6405, NULL, '1.0000', '6.6100', '6.6100', '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 (111023, '2022-08-22', 7518, 104707, 6405, NULL, '5.0000', '7.8200', '7.8200', '12.5000', '12.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 (111024, '2022-08-22', 1904, 104708, 6405, 5442, '-87.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 (111025, '2022-08-22', 1904, 104708, 6405, NULL, '97.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-97.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111026, '2022-08-22', 2251, 104709, 6405, 2788, '-35.0000', '10.9700', '10.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 (111027, '2022-08-22', 2251, 104709, 6405, NULL, '36.0000', '10.9700', '10.9700', '20.0000', '20.0000', '-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 (111028, '2022-08-22', 7708, 104710, 6405, NULL, '1.0000', '7.8000', '7.8000', '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 (111029, '2022-08-22', 9151, 104711, 6405, NULL, '1.0000', '9.7000', '9.7000', '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 (111030, '2022-08-22', 1409, 104712, 6405, 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 (111031, '2022-08-22', 1804, 104713, 6405, 4916, '-22.0000', '4.2500', '4.2500', '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 (111032, '2022-08-22', 1804, 104713, 6405, NULL, '23.0000', '4.2500', '4.2500', '10.0000', '10.0000', '-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 (111033, '2022-08-22', 1855, 104714, 6405, 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 (111034, '2022-08-22', 7514, 104715, 6405, NULL, '2.0000', '2.2500', '2.2500', '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 (111035, '2022-08-22', 7412, 104716, 6405, NULL, '1.0000', '1.5200', '1.5200', '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 (111036, '2022-08-22', 7917, 104717, 6405, NULL, '7.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (111037, '2022-08-22', 7385, 104718, 6405, NULL, '1.0000', '2.0000', '2.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 (111038, '2022-08-22', 9092, 104719, 6405, NULL, '4.0000', '5.2900', '5.2900', '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 (111039, '2022-08-22', 7741, 104720, 6405, NULL, '1.0000', '1.2000', '1.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 (111040, '2022-08-22', 1841, 104721, 6405, NULL, '10.0000', '142.5780', '142.5780', '0.5000', '0.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 (111041, '2022-08-22', 7862, 104722, 6405, NULL, '1.0000', '3.8500', '3.8500', '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 (111042, '2022-08-22', 7608, 104723, 6405, NULL, '1.0000', '6.9800', '6.9800', '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 (111043, '2022-08-22', 1557, 104724, 6405, 1628, '-16.0000', '7.9500', '7.9500', '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 (111044, '2022-08-22', 1557, 104724, 6405, NULL, '17.0000', '7.9500', '7.9500', '11.0000', '11.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 (111045, '2022-08-22', 8866, 104725, 6405, NULL, '1.0000', '0.4300', '0.4300', '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 (111046, '2022-08-22', 7674, 104726, 6405, NULL, '2.0000', '1.3000', '1.3000', '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 (111047, '2022-08-22', 2315, 104727, 6405, 2735, '-633.0000', '0.3300', '0.3300', '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 (111048, '2022-08-22', 2315, 104727, 6405, NULL, '634.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-634.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111049, '2022-08-22', 7411, 104728, 6405, NULL, '2.0000', '1.3500', '1.3500', '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 (111050, '2022-08-22', 2506, 104729, 6405, 16244, '-36.0000', '3.4900', '3.4900', '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 (111051, '2022-08-22', 2506, 104729, 6405, NULL, '37.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111052, '2022-08-22', 8017, 104730, 6405, NULL, '2.0000', '40.0000', '40.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 (111053, '2022-08-22', 9092, 104731, 6405, NULL, '4.0000', '5.2900', '5.2900', '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 (111054, '2022-08-22', 8011, 104732, 6405, 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 (111055, '2022-08-22', 8811, 104733, 6405, NULL, '1.0000', '11.6000', '11.6000', '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 (111056, '2022-08-22', 7666, 104734, 6405, NULL, '1.0000', '3.6000', '3.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 (111057, '2022-08-22', 2283, 104735, 6405, 2943, '-35.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 (111058, '2022-08-22', 2283, 104735, 6405, NULL, '36.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-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 (111059, '2022-08-22', 9214, 104736, 6406, 56835, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111060, '2022-08-22', 9469, 104737, 6406, 60511, '2.0000', '3.9250', '3.9250', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111061, '2022-08-22', 1375, 104738, 6406, 56975, '1.0000', '87.5586', '87.5586', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111062, '2022-08-22', 2858, 104739, 6406, 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 (111063, '2022-08-22', 8963, 104740, 6407, 58820, '1.0000', '12.3000', '12.3000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111064, '2022-08-22', 2384, 104741, 6407, 60032, '10.0000', '0.4392', '0.4392', '0.8000', '0.8000', '85.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111065, '2022-08-22', 9736, 104742, 6407, 58778, '1.0000', '4.4200', '4.4200', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111066, '2022-08-22', 2286, 104743, 6407, 56241, '2.0000', '4.9825', '4.9825', '7.0000', '7.0000', '28.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111067, '2022-08-22', 2221, 104744, 6408, 58659, '1.0000', '17.3584', '17.3584', '26.0000', '26.0000', '16.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111068, '2022-08-22', 10000, 104745, 6409, NULL, '1.0000', '38.0000', '38.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 (111069, '2022-08-22', 9092, 104746, 6410, NULL, '1.0000', '5.2900', '5.2900', '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 (111070, '2022-08-22', 7672, 104747, 6410, NULL, '1.0000', '1.0200', '1.0200', '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 (111071, '2022-08-22', 9202, 104748, 6410, NULL, '1.0000', '3.5000', '3.5000', '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 (111072, '2022-08-22', 7524, 104749, 6410, NULL, '2.0000', '11.9500', '11.9500', '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 (111073, '2022-08-22', 7671, 104750, 6410, NULL, '2.0000', '15.5000', '15.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 (111074, '2022-08-22', 7641, 104751, 6410, NULL, '1.0000', '1.9000', '1.9000', '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 (111075, '2022-08-22', 7514, 104752, 6410, NULL, '1.0000', '2.2500', '2.2500', '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 (111076, '2022-08-22', 9274, 104753, 6410, NULL, '2.0000', '3.6000', '3.6000', '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 (111077, '2022-08-22', 7411, 104754, 6410, NULL, '1.0000', '1.3500', '1.3500', '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 (111078, '2022-08-22', 2289, 104755, 6410, 2949, '-253.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 (111079, '2022-08-22', 2289, 104755, 6410, NULL, '255.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-255.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111080, '2022-08-22', 7984, 104756, 6410, NULL, '1.0000', '16.9000', '16.9000', '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 (111081, '2022-08-22', 9649, 104757, 6410, NULL, '2.0000', '14.4100', '14.4100', '23.0000', '23.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 (111082, '2022-08-22', 7339, 104758, 6410, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (111083, '2022-08-22', 7859, 104759, 6410, NULL, '1.0000', '12.6300', '12.6300', '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 (111084, '2022-08-22', 7675, 104760, 6410, NULL, '1.0000', '11.4300', '11.4300', '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 (111085, '2022-08-22', 9092, 104761, 6410, NULL, '4.0000', '5.2900', '5.2900', '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 (111086, '2022-08-22', 8787, 104762, 6410, NULL, '1.0000', '5.9300', '5.9300', '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 (111087, '2022-08-22', 7628, 104763, 6410, NULL, '12.0000', '2.2900', '2.2900', '3.0000', '3.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 (111088, '2022-08-22', 9735, 104764, 6411, 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 (111089, '2022-08-22', 2169, 104765, 6411, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111090, '2022-08-22', 7411, 104766, 6411, NULL, '2.0000', '1.2819', '1.2819', '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 (111091, '2022-08-22', 2416, 104767, 6411, 60955, '1.0000', '1.3677', '1.3677', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111092, '2022-08-22', 1905, 104768, 6411, NULL, '1.0000', '0.5203', '0.5203', '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 (111093, '2022-08-22', 1501, 104769, 6411, NULL, '1.0000', '0.3856', '0.3856', '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 (111094, '2022-08-22', 7666, 104770, 6411, NULL, '1.0000', '-6.0000', '-6.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 (111095, '2022-08-22', 1912, 104771, 6411, NULL, '1.0000', '0.6868', '0.6868', '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 (111096, '2022-08-22', 2169, 104772, 6411, 59849, '2.0000', '1.7142', '1.7142', '2.5000', '2.5000', '81.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111097, '2022-08-22', 2506, 104773, 6411, NULL, '1.0000', '-9.4377', '-9.4377', '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 (111098, '2022-08-22', 8208, 104774, 6411, NULL, '1.0000', '47.9541', '47.9541', '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 (111099, '2022-08-22', 1501, 104775, 6411, NULL, '1.0000', '0.3856', '0.3856', '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 (111100, '2022-08-22', 2315, 104776, 6411, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111101, '2022-08-22', 7328, 104777, 6411, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (111102, '2022-08-22', 1748, 104778, 6411, NULL, '3.0000', '0.3200', '0.3200', '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 (111103, '2022-08-22', 2891, 104779, 6411, 51378, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111104, '2022-08-22', 2237, 104780, 6411, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111105, '2022-08-22', 7411, 104781, 6411, NULL, '1.0000', '1.2819', '1.2819', '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 (111106, '2022-08-22', 9740, 104782, 6411, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111107, '2022-08-22', 1340, 104783, 6411, NULL, '1.0000', '3.6001', '3.6001', '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 (111108, '2022-08-22', 9482, 104784, 6411, 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 (111109, '2022-08-22', 9791, 104785, 6411, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111110, '2022-08-22', 7411, 104786, 6411, NULL, '1.0000', '1.2819', '1.2819', '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 (111111, '2022-08-22', 1888, 104787, 6411, 59876, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111112, '2022-08-22', 2656, 104788, 6411, 60959, '2.0000', '1.9191', '1.9191', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111113, '2022-08-22', 9791, 104789, 6411, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111114, '2022-08-22', 7411, 104790, 6411, NULL, '1.0000', '1.2819', '1.2819', '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 (111115, '2022-08-22', 1311, 104791, 6411, NULL, '4.0000', '0.3700', '0.3700', '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 (111116, '2022-08-22', 2169, 104792, 6411, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111117, '2022-08-22', 7641, 104793, 6411, NULL, '1.0000', '1.9000', '1.9000', '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 (111118, '2022-08-22', 7514, 104794, 6411, NULL, '1.0000', '2.2500', '2.2500', '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 (111119, '2022-08-22', 8878, 104795, 6411, NULL, '1.0000', '6.0509', '6.0509', '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 (111120, '2022-08-22', 2223, 104796, 6411, NULL, '1.0000', '-2.3706', '-2.3706', '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 (111121, '2022-08-22', 1839, 104797, 6411, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (111122, '2022-08-22', 3059, 104798, 6411, 59839, '2.0000', '1.1792', '1.1792', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111123, '2022-08-22', 2293, 104799, 6411, NULL, '3.0000', '-17.4320', '-17.4320', '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 (111124, '2022-08-22', 7483, 104800, 6411, NULL, '1.0000', '0.4200', '0.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 (111125, '2022-08-22', 8308, 104801, 6411, NULL, '1.0000', '17.1500', '17.1500', '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 (111126, '2022-08-22', 9463, 104802, 6411, NULL, '1.0000', '287.4328', '287.4328', '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 (111127, '2022-08-22', 2273, 104803, 6411, 60335, '1.0000', '3.0605', '3.0605', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111128, '2022-08-22', 2095, 104804, 6411, NULL, '1.0000', '-8.5000', '-8.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 (111129, '2022-08-22', 2243, 104805, 6411, NULL, '1.0000', '3.5000', '3.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 (111130, '2022-08-22', 2699, 104806, 6411, 60958, '1.0000', '4.6538', '4.6538', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111131, '2022-08-22', 8207, 104807, 6411, NULL, '2.0000', '0.0000', '0.0000', '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 (111132, '2022-08-22', 7514, 104808, 6411, NULL, '1.0000', '2.2500', '2.2500', '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 (111133, '2022-08-22', 9747, 104809, 6411, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111134, '2022-08-22', 8017, 104810, 6411, 59863, '6.0000', '0.6000', '0.6000', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111135, '2022-08-22', 1521, 104811, 6411, NULL, '1.0000', '-770.4750', '-770.4750', '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 (111136, '2022-08-22', 9788, 104812, 6411, 54919, '2.0000', '1.5347', '1.5347', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111137, '2022-08-22', 2262, 104813, 6411, 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 (111138, '2022-08-22', 7641, 104814, 6411, NULL, '1.0000', '1.9000', '1.9000', '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 (111139, '2022-08-22', 8308, 104815, 6411, NULL, '1.0000', '17.1500', '17.1500', '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 (111140, '2022-08-22', 2730, 104816, 6411, 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 (111141, '2022-08-22', 8165, 104817, 6411, 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 (111142, '2022-08-22', 9945, 104818, 6411, NULL, '1.0000', '12.1000', '12.1000', '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 (111143, '2022-08-22', 1450, 104819, 6411, NULL, '2.0000', '0.8483', '0.8483', '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 (111144, '2022-08-22', 1647, 104820, 6411, NULL, '1.0000', '-8.0033', '-8.0033', '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 (111145, '2022-08-22', 1340, 104821, 6411, NULL, '1.0000', '3.6001', '3.6001', '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 (111146, '2022-08-22', 9695, 104822, 6411, 59664, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111147, '2022-08-22', 9092, 104823, 6412, NULL, '2.0000', '5.2900', '5.2900', '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 (111148, '2022-08-22', 7730, 104824, 6412, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (111149, '2022-08-22', 7350, 104825, 6413, NULL, '2.0000', '30.4000', '30.4000', '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 (111150, '2022-08-23', 1646, 104826, 6414, 60270, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111151, '2022-08-23', 1825, 104827, 6414, 60267, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111152, '2022-08-23', 1349, 104828, 6414, 56375, '1.0000', '42.3933', '42.3933', '61.0000', '61.0000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111153, '2022-08-23', 9840, 104829, 6414, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111154, '2022-08-23', 8187, 104830, 6414, NULL, '3.0000', '14.3900', '14.3900', '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 (111155, '2022-08-23', 1912, 104831, 6414, NULL, '1.0000', '0.6868', '0.6868', '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 (111156, '2022-08-23', 2699, 104832, 6414, 60958, '1.0000', '4.6538', '4.6538', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111157, '2022-08-23', 9457, 104833, 6414, NULL, '1.0000', '2.9800', '2.9800', '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 (111158, '2022-08-23', 9947, 104834, 6414, 60238, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111159, '2022-08-23', 2948, 104835, 6414, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111160, '2022-08-23', 2416, 104836, 6414, 60955, '1.0000', '1.3677', '1.3677', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111161, '2022-08-23', 2001, 104837, 6414, 58050, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111162, '2022-08-23', 2327, 104838, 6414, 48714, '2.0000', '3.8350', '3.8350', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111163, '2022-08-23', 9736, 104839, 6414, NULL, '1.0000', '5.0278', '5.0278', '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 (111164, '2022-08-23', 9565, 104840, 6414, NULL, '1.0000', '4.5000', '4.5000', '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 (111165, '2022-08-23', 7558, 104841, 6414, NULL, '4.0000', '-37.0255', '-37.0255', '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 (111166, '2022-08-23', 1410, 104842, 6414, NULL, '1.0000', '124.6472', '124.6472', '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 (111167, '2022-08-23', 2940, 104843, 6414, NULL, '1.0000', '6.3600', '6.3600', '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 (111168, '2022-08-23', 9729, 104844, 6414, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111169, '2022-08-23', 2061, 104845, 6414, NULL, '1.0000', '-0.6387', '-0.6387', '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 (111170, '2022-08-23', 2921, 104846, 6414, 58244, '1.0000', '4.6300', '4.6300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111171, '2022-08-23', 2285, 104847, 6414, NULL, '1.0000', '-159.5389', '-159.5389', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111172, '2022-08-23', 1672, 104848, 6414, NULL, '10.0000', '4.1808', '4.1808', '5.5000', '5.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 (111173, '2022-08-23', 1637, 104849, 6414, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111174, '2022-08-23', 1689, 104850, 6414, 60349, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111175, '2022-08-23', 2037, 104851, 6414, 59674, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111176, '2022-08-23', 2643, 104852, 6414, 60956, '2.0000', '1.0797', '1.0797', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111177, '2022-08-23', 3058, 104853, 6415, NULL, '1.0000', '-47.3000', '-47.3000', '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 (111178, '2022-08-23', 2289, 104854, 6415, NULL, '4.0000', '0.3611', '0.3611', '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 (111179, '2022-08-23', 1837, 104855, 6415, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111180, '2022-08-23', 2242, 104856, 6415, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111181, '2022-08-23', 9649, 104857, 6416, NULL, '1.0000', '2.6750', '2.6750', '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 (111182, '2022-08-23', 2169, 104858, 6416, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111183, '2022-08-23', 2506, 104859, 6416, NULL, '1.0000', '-9.4377', '-9.4377', '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 (111184, '2022-08-23', 2068, 104860, 6416, NULL, '1.0000', '14.6943', '14.6943', '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 (111185, '2022-08-23', 1912, 104861, 6417, NULL, '5.0000', '0.6868', '0.6868', '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 (111186, '2022-08-23', 2352, 104862, 6417, NULL, '2.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111187, '2022-08-23', 1646, 104863, 6417, 60270, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111188, '2022-08-23', 2169, 104864, 6417, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '77.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111189, '2022-08-23', 1912, 104865, 6417, NULL, '1.0000', '0.6868', '0.6868', '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 (111190, '2022-08-23', 1905, 104866, 6418, NULL, '1.0000', '0.5203', '0.5203', '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 (111191, '2022-08-23', 1644, 104867, 6419, 3216, '-10.0000', '33.8200', '33.8200', '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 (111192, '2022-08-23', 1644, 104867, 6419, NULL, '11.0000', '33.8200', '33.8200', '53.0000', '53.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 (111193, '2022-08-23', 7444, 104868, 6419, 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 (111194, '2022-08-23', 7496, 104869, 6419, NULL, '1.0000', '0.9600', '0.9600', '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 (111195, '2022-08-23', 9092, 104870, 6419, NULL, '2.0000', '5.2900', '5.2900', '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 (111196, '2022-08-23', 7736, 104871, 6419, NULL, '1.0000', '16.2000', '16.2000', '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 (111197, '2022-08-23', 7514, 104872, 6419, NULL, '1.0000', '2.2500', '2.2500', '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 (111198, '2022-08-23', 8172, 104873, 6419, NULL, '1.0000', '40.7000', '40.7000', '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 (111199, '2022-08-23', 7672, 104874, 6419, NULL, '1.0000', '1.0200', '1.0200', '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 (111200, '2022-08-23', 2315, 104875, 6419, 2735, '-635.0000', '0.3300', '0.3300', '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 (111201, '2022-08-23', 2315, 104875, 6419, NULL, '636.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-636.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111202, '2022-08-23', 7674, 104876, 6419, NULL, '1.0000', '1.3000', '1.3000', '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 (111203, '2022-08-23', 2791, 104877, 6419, 16144, '2.0000', '41.2200', '41.2200', '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 (111204, '2022-08-23', 7743, 104878, 6419, NULL, '2.0000', '1.3100', '1.3100', '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 (111205, '2022-08-23', 7473, 104879, 6419, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (111206, '2022-08-23', 7412, 104880, 6419, NULL, '1.0000', '1.5200', '1.5200', '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 (111207, '2022-08-23', 9092, 104881, 6419, NULL, '1.0000', '5.2900', '5.2900', '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 (111208, '2022-08-23', 8714, 104882, 6420, NULL, '1.0000', '5.2100', '5.2100', '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 (111209, '2022-08-23', 8097, 104883, 6421, 61163, '3.0000', '3.0816', '3.0816', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111210, '2022-08-23', 8677, 104884, 6421, 61172, '2.0000', '2.0073', '2.0073', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111211, '2022-08-23', 9620, 104885, 6421, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111212, '2022-08-23', 7632, 104886, 6421, 60139, '1.0000', '12.1047', '12.1047', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111213, '2022-08-23', 9741, 104887, 6421, 60096, '1.0000', '7.7188', '7.7188', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111214, '2022-08-23', 7730, 104888, 6421, 60195, '2.0000', '0.0723', '0.0723', '0.2000', '0.2000', '112.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111215, '2022-08-23', 9092, 104889, 6421, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '126.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111216, '2022-08-23', 9286, 104890, 6421, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111217, '2022-08-23', 1557, 104891, 6421, 60788, '1.0000', '8.0689', '8.0689', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111218, '2022-08-23', 7435, 104892, 6421, 59407, '7.0000', '9.2363', '9.2363', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111219, '2022-08-23', 7435, 104892, 6421, NULL, '7.0000', '9.2363', '9.2363', '11.0000', '11.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 (111220, '2022-08-23', 7708, 104893, 6421, 60803, '1.0000', '8.3058', '8.3058', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111221, '2022-08-23', 9695, 104894, 6421, 61195, '1.0000', '5.9172', '5.9172', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111222, '2022-08-23', 8328, 104895, 6421, NULL, '1.0000', '11.2886', '11.2886', '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 (111223, '2022-08-23', 9762, 104896, 6421, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111224, '2022-08-23', 7612, 104897, 6421, NULL, '2.0000', '2.3846', '2.3846', '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 (111225, '2022-08-23', 2962, 104898, 6421, 57527, '1.0000', '1.2049', '1.2049', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111226, '2022-08-23', 7591, 104899, 6421, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111227, '2022-08-23', 9985, 104900, 6421, 61222, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111228, '2022-08-23', 7883, 104901, 6421, 60477, '1.0000', '33.8000', '33.8000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111229, '2022-08-23', 7819, 104902, 6421, 60394, '1.0000', '12.8331', '12.8331', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111230, '2022-08-23', 7382, 104903, 6421, 60787, '1.0000', '8.1794', '8.1794', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111231, '2022-08-23', 8101, 104904, 6421, NULL, '2.0000', '2.1159', '2.1159', '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 (111232, '2022-08-23', 8677, 104905, 6421, 61172, '2.0000', '2.0073', '2.0073', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111233, '2022-08-23', 2225, 104906, 6421, 60572, '3.0000', '21.1250', '21.1250', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111234, '2022-08-23', 2226, 104907, 6421, NULL, '2.0000', '-18.0000', '-18.0000', '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 (111235, '2022-08-23', 7380, 104908, 6421, 60818, '1.0000', '12.4986', '12.4986', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111236, '2022-08-23', 7512, 104909, 6421, 55062, '2.0000', '7.2082', '7.2082', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111237, '2022-08-23', 7512, 104909, 6421, NULL, '1.0000', '7.2082', '7.2082', '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 (111238, '2022-08-23', 1754, 104910, 6421, NULL, '1.0000', '90.0000', '90.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 (111239, '2022-08-23', 2440, 104911, 6421, 52007, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111240, '2022-08-23', 8882, 104912, 6421, 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 (111241, '2022-08-23', 9190, 104913, 6421, 61162, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111242, '2022-08-23', 9961, 104914, 6421, NULL, '1.0000', '18.5000', '18.5000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111243, '2022-08-23', 9878, 104915, 6421, 57177, '1.0000', '9.6000', '9.6000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111244, '2022-08-23', 9776, 104916, 6421, 57161, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111245, '2022-08-23', 2102, 104917, 6421, 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 (111246, '2022-08-23', 8079, 104918, 6421, 56706, '1.0000', '9.1732', '9.1732', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111247, '2022-08-23', 9271, 104919, 6421, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111248, '2022-08-23', 8657, 104920, 6421, 56004, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111249, '2022-08-23', 9275, 104921, 6421, NULL, '1.0000', '6.3000', '6.3000', '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 (111250, '2022-08-23', 7411, 104922, 6421, 61112, '1.0000', '1.4433', '1.4433', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111251, '2022-08-23', 8557, 104923, 6421, NULL, '1.0000', '10.9447', '10.9447', '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 (111252, '2022-08-23', 1620, 104924, 6421, 61214, '2.0000', '2.4075', '2.4075', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111253, '2022-08-23', 7385, 104925, 6421, 60459, '5.0000', '5.7239', '5.7239', '4.0000', '4.0000', '75.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111254, '2022-08-23', 7954, 104926, 6421, NULL, '4.0000', '7039.4904', '7039.4904', '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 (111255, '2022-08-23', 7674, 104927, 6421, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111256, '2022-08-23', 7749, 104928, 6421, 57620, '1.0000', '19.8511', '19.8511', '26.5000', '26.5000', '5.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111257, '2022-08-23', 2607, 104929, 6421, NULL, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111258, '2022-08-23', 8032, 104930, 6421, 56175, '1.0000', '6.5986', '6.5986', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111259, '2022-08-23', 7714, 104931, 6421, NULL, '6.0000', '0.4200', '0.4200', '0.6000', '0.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 (111260, '2022-08-23', 9092, 104932, 6421, 60813, '4.0000', '0.3167', '0.3167', '0.5000', '0.5000', '125.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111261, '2022-08-23', 7707, 104933, 6421, 60125, '1.0000', '7.1500', '7.1500', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111262, '2022-08-23', 7544, 104934, 6421, NULL, '2.0000', '9.4300', '9.4300', '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 (111263, '2022-08-23', 1841, 104935, 6421, 61154, '2.0000', '0.2808', '0.2808', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111264, '2022-08-23', 8154, 104936, 6421, NULL, '3.0000', '12.3000', '12.3000', '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 (111265, '2022-08-23', 7613, 104937, 6422, 60442, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111266, '2022-08-23', 7886, 104938, 6422, 60384, '1.0000', '4.5754', '4.5754', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111267, '2022-08-23', 7641, 104939, 6422, 61190, '1.0000', '7.3618', '7.3618', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111268, '2022-08-23', 1340, 104940, 6422, 57181, '1.0000', '3.3640', '3.3640', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111269, '2022-08-23', 1935, 104941, 6422, 61208, '1.0000', '0.0058', '0.0058', '2.0000', '2.0000', '107.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111270, '2022-08-23', 7576, 104942, 6422, NULL, '4.0000', '294.2473', '294.2473', '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 (111271, '2022-08-23', 7482, 104943, 6423, NULL, '1.0000', '3.0500', '3.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 (111272, '2022-08-23', 7848, 104944, 6423, NULL, '1.0000', '15.0000', '15.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 (111273, '2022-08-23', 2086, 104945, 6423, 9423, '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 (111274, '2022-08-23', 7917, 104946, 6423, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111275, '2022-08-23', 1837, 104947, 6423, 60063, '2.0000', '0.6105', '0.6105', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111276, '2022-08-23', 2293, 104948, 6423, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111277, '2022-08-23', 2237, 104949, 6423, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111278, '2022-08-23', 1665, 104950, 6423, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111279, '2022-08-23', 1856, 104951, 6423, 56948, '1.0000', '5.1154', '5.1154', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111280, '2022-08-23', 2315, 104952, 6423, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111281, '2022-08-23', 2379, 104953, 6423, 60977, '2.0000', '2.0512', '2.0512', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111282, '2022-08-23', 2315, 104954, 6423, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111283, '2022-08-23', 1637, 104955, 6423, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111284, '2022-08-23', 7954, 104956, 6423, 56718, '2.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111285, '2022-08-23', 2821, 104957, 6423, 60978, '1.0000', '3.4282', '3.4282', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111286, '2022-08-23', 9695, 104958, 6423, 58550, '1.0000', '5.7386', '5.7386', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111287, '2022-08-23', 1602, 104959, 6423, 60085, '2.0000', '7.1218', '7.1218', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111288, '2022-08-23', 1646, 104960, 6423, 59961, '1.0000', '5.3633', '5.3633', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111289, '2022-08-23', 9818, 104961, 6423, NULL, '1.0000', '1.5000', '1.5000', '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 (111290, '2022-08-23', 2486, 104962, 6423, 21821, '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 (111291, '2022-08-23', 1812, 104963, 6423, 60974, '1.0000', '8.6681', '8.6681', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111292, '2022-08-23', 7453, 104964, 6423, NULL, '1.0000', '28.5000', '28.5000', '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 (111293, '2022-08-23', 1486, 104965, 6423, 44576, '1.0000', '64.0884', '64.0884', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111294, '2022-08-23', 7608, 104966, 6423, NULL, '1.0000', '6.9800', '6.9800', '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 (111295, '2022-08-23', 2327, 104967, 6423, 59969, '1.0000', '3.3869', '3.3869', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111296, '2022-08-23', 2643, 104968, 6424, NULL, '1.0000', '0.8700', '0.8700', '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 (111297, '2022-08-23', 9740, 104969, 6424, NULL, '1.0000', '0.6600', '0.6600', '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 (111298, '2022-08-23', 7514, 104970, 6424, NULL, '1.0000', '2.2500', '2.2500', '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 (111299, '2022-08-23', 1905, 104971, 6424, 5443, '-15.0000', '0.4000', '0.4000', '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 (111300, '2022-08-23', 1905, 104971, 6424, NULL, '16.0000', '0.4000', '0.4000', '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 (111301, '2022-08-23', 2293, 104972, 6424, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.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 (111302, '2022-08-23', 9695, 104973, 6424, NULL, '1.0000', '4.5000', '4.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 (111303, '2022-08-23', 1759, 104974, 6424, 6746, '-9.0000', '11.5000', '11.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 (111304, '2022-08-23', 1759, 104974, 6424, NULL, '10.0000', '11.5000', '11.5000', '18.0000', '18.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 (111305, '2022-08-23', 7741, 104975, 6424, NULL, '1.0000', '1.2000', '1.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 (111306, '2022-08-23', 1592, 104976, 6424, 6223, '-17.0000', '35.9000', '35.9000', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111307, '2022-08-23', 1592, 104976, 6424, NULL, '18.0000', '35.9000', '35.9000', '56.0000', '56.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 (111308, '2022-08-23', 9738, 104977, 6424, NULL, '1.0000', '5.9000', '5.9000', '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 (111309, '2022-08-23', 7514, 104978, 6424, NULL, '1.0000', '2.2500', '2.2500', '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 (111310, '2022-08-23', 3058, 104979, 6424, NULL, '1.0000', '4.3000', '4.3000', '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 (111311, '2022-08-23', 2237, 104980, 6424, 2781, '-86.0000', '1.0600', '1.0600', '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 (111312, '2022-08-23', 2237, 104980, 6424, NULL, '87.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111313, '2022-08-23', 2315, 104981, 6424, 2735, '-636.0000', '0.3300', '0.3300', '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 (111314, '2022-08-23', 2315, 104981, 6424, NULL, '637.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-637.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111315, '2022-08-23', 1695, 104982, 6424, 12925, '-18.0000', '15.5000', '15.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 (111316, '2022-08-23', 1695, 104982, 6424, NULL, '19.0000', '15.5000', '15.5000', '26.0000', '26.0000', '-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 (111317, '2022-08-23', 2169, 104983, 6424, 10737, '-216.0000', '3.8397', '3.8397', '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 (111318, '2022-08-23', 2169, 104983, 6424, NULL, '217.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-217.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111319, '2022-08-23', 2259, 104984, 6424, 2795, '-8.0000', '19.9405', '19.9405', '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 (111320, '2022-08-23', 2259, 104984, 6424, NULL, '9.0000', '19.9405', '19.9405', '34.0000', '34.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 (111321, '2022-08-23', 2345, 104985, 6424, 3848, '-6.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 (111322, '2022-08-23', 2345, 104985, 6424, NULL, '7.0000', '7.6400', '7.6400', '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 (111323, '2022-08-23', 1647, 104986, 6424, 3218, '-25.0000', '4.7200', '4.7200', '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 (111324, '2022-08-23', 1647, 104986, 6424, NULL, '26.0000', '4.7200', '4.7200', '10.0000', '10.0000', '-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 (111325, '2022-08-23', 2506, 104987, 6424, 16244, '-38.0000', '3.4900', '3.4900', '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 (111326, '2022-08-23', 2506, 104987, 6424, NULL, '39.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111327, '2022-08-23', 7641, 104988, 6424, NULL, '1.0000', '1.9000', '1.9000', '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 (111328, '2022-08-23', 9718, 104989, 6424, NULL, '1.0000', '13.3000', '13.3000', '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 (111329, '2022-08-23', 2167, 104990, 6424, 17165, '-58.0000', '2.2000', '2.2000', '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 (111330, '2022-08-23', 2167, 104990, 6424, NULL, '59.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111331, '2022-08-23', 2088, 104991, 6424, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '41.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 (111332, '2022-08-23', 2315, 104992, 6424, 2735, '-636.0000', '0.3300', '0.3300', '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 (111333, '2022-08-23', 2315, 104992, 6424, NULL, '637.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-637.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111334, '2022-08-23', 1610, 104993, 6424, 8730, '-9.0000', '15.7500', '15.7500', '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 (111335, '2022-08-23', 1610, 104993, 6424, NULL, '10.0000', '15.7500', '15.7500', '22.5000', '22.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 (111336, '2022-08-23', 1837, 104994, 6424, 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 (111337, '2022-08-23', 9995, 104995, 6424, NULL, '1.0000', '8.2000', '8.2000', '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 (111338, '2022-08-23', 2656, 104996, 6424, NULL, '1.0000', '1.5000', '1.5000', '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 (111339, '2022-08-23', 7398, 104997, 6424, 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 (111340, '2022-08-23', 2004, 104998, 6424, 6822, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '34.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 (111341, '2022-08-23', 1828, 104999, 6424, NULL, '1.0000', '0.7300', '0.7300', '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 (111342, '2022-08-23', 1637, 105000, 6424, 3210, '-14.0000', '10.2000', '10.2000', '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 (111343, '2022-08-23', 1637, 105000, 6424, NULL, '15.0000', '10.2000', '10.2000', '20.0000', '20.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 (111344, '2022-08-23', 1884, 105001, 6424, 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 (111345, '2022-08-23', 2655, 105002, 6424, 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 (111346, '2022-08-23', 2250, 105003, 6424, 2787, '-23.0000', '6.8900', '6.8900', '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 (111347, '2022-08-23', 2250, 105003, 6424, NULL, '24.0000', '6.8900', '6.8900', '12.5000', '12.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 (111348, '2022-08-23', 7639, 105004, 6424, 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 (111349, '2022-08-23', 1888, 105005, 6424, 14663, '-14.0000', '134.8400', '134.8400', '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 (111350, '2022-08-23', 1888, 105005, 6424, NULL, '15.0000', '134.8400', '134.8400', '26.5000', '26.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 (111351, '2022-08-23', 9202, 105006, 6424, NULL, '1.0000', '3.5000', '3.5000', '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 (111352, '2022-08-23', 8359, 105007, 6424, 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 (111353, '2022-08-23', 2169, 105008, 6424, 10737, '-216.0000', '3.8397', '3.8397', '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 (111354, '2022-08-23', 2169, 105008, 6424, NULL, '218.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-218.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111355, '2022-08-23', 1912, 105009, 6424, 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 (111356, '2022-08-23', 2893, 105010, 6424, 18242, '-25.0000', '6.0000', '6.0000', '9.5000', '9.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 (111357, '2022-08-23', 2893, 105010, 6424, NULL, '26.0000', '6.0000', '6.0000', '9.5000', '9.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 (111358, '2022-08-23', 9740, 105011, 6424, NULL, '1.0000', '0.6600', '0.6600', '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 (111359, '2022-08-23', 2891, 105012, 6424, 18020, '-8.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 (111360, '2022-08-23', 2891, 105012, 6424, NULL, '9.0000', '9.5000', '9.5000', '12.0000', '12.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 (111361, '2022-08-23', 2221, 105013, 6424, 4154, '-83.0000', '14.4737', '14.4737', '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 (111362, '2022-08-23', 2221, 105013, 6424, NULL, '84.0000', '14.4737', '14.4737', '29.0000', '29.0000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111363, '2022-08-23', 9307, 105014, 6424, NULL, '32.0000', '3.9000', '3.9000', '0.2500', '0.2500', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111364, '2022-08-23', 2169, 105015, 6424, 10737, '-216.0000', '3.8397', '3.8397', '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 (111365, '2022-08-23', 2169, 105015, 6424, NULL, '217.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-217.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111366, '2022-08-23', 8444, 105016, 6424, 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 (111367, '2022-08-23', 7743, 105017, 6424, NULL, '1.0000', '1.3100', '1.3100', '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 (111368, '2022-08-23', 2167, 105018, 6424, 17165, '-58.0000', '2.2000', '2.2000', '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 (111369, '2022-08-23', 2167, 105018, 6424, NULL, '59.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111370, '2022-08-23', 2169, 105019, 6424, 10737, '-216.0000', '3.8397', '3.8397', '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 (111371, '2022-08-23', 2169, 105019, 6424, NULL, '218.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-218.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111372, '2022-08-23', 1812, 105020, 6424, 8224, '-118.0000', '7.8900', '7.8900', '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 (111373, '2022-08-23', 1812, 105020, 6424, NULL, '119.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-119.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111374, '2022-08-23', 7398, 105021, 6424, 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 (111375, '2022-08-23', 2088, 105022, 6424, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '41.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 (111376, '2022-08-23', 2095, 105023, 6424, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '47.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 (111377, '2022-08-23', 9457, 105024, 6424, NULL, '1.0000', '2.9800', '2.9800', '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 (111378, '2022-08-23', 1888, 105025, 6424, 14663, '-14.0000', '134.8400', '134.8400', '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 (111379, '2022-08-23', 1888, 105025, 6424, NULL, '15.0000', '134.8400', '134.8400', '26.5000', '26.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 (111380, '2022-08-23', 2068, 105026, 6424, 5568, '-33.0000', '13.1000', '13.1000', '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 (111381, '2022-08-23', 2068, 105026, 6424, NULL, '34.0000', '13.1000', '13.1000', '20.0000', '20.0000', '-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 (111382, '2022-08-23', 7926, 105027, 6424, 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 (111383, '2022-08-23', 7483, 105028, 6424, 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 (111384, '2022-08-23', 1787, 105029, 6424, 4905, '-28.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 (111385, '2022-08-23', 1787, 105029, 6424, NULL, '30.0000', '0.8100', '0.8100', '2.0000', '2.0000', '-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 (111386, '2022-08-23', 2242, 105030, 6424, 3059, '-106.0000', '0.4800', '0.4800', '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 (111387, '2022-08-23', 2242, 105030, 6424, NULL, '108.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-108.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111388, '2022-08-23', 7744, 105031, 6424, 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 (111389, '2022-08-23', 1386, 105032, 6424, 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 (111390, '2022-08-23', 2169, 105033, 6424, 10737, '-216.0000', '3.8397', '3.8397', '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 (111391, '2022-08-23', 2169, 105033, 6424, NULL, '217.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-217.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111392, '2022-08-23', 2655, 105034, 6424, NULL, '2.0000', '6.5000', '6.5000', '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 (111393, '2022-08-23', 7886, 105035, 6424, 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 (111394, '2022-08-23', 2169, 105036, 6424, 10737, '-216.0000', '3.8397', '3.8397', '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 (111395, '2022-08-23', 2169, 105036, 6424, NULL, '217.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-217.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111396, '2022-08-23', 1839, 105037, 6424, 8734, '-44.0000', '6.1500', '6.1500', '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 (111397, '2022-08-23', 1839, 105037, 6424, NULL, '45.0000', '6.1500', '6.1500', '11.0000', '11.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 (111398, '2022-08-23', 1521, 105038, 6424, 20591, '1.0000', '2.5754', '2.5754', '4.5000', '4.5000', '5.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 (111399, '2022-08-23', 9747, 105039, 6424, NULL, '1.0000', '0.6500', '0.6500', '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 (111400, '2022-08-23', 7641, 105040, 6424, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (111401, '2022-08-23', 8740, 105041, 6424, NULL, '1.0000', '2.0000', '2.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 (111402, '2022-08-23', 2260, 105042, 6424, 2796, '-26.0000', '4.2000', '4.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 (111403, '2022-08-23', 2260, 105042, 6424, NULL, '27.0000', '4.2000', '4.2000', '7.0000', '7.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 (111404, '2022-08-23', 8011, 105043, 6424, 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 (111405, '2022-08-23', 9202, 105044, 6424, NULL, '1.0000', '3.5000', '3.5000', '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 (111406, '2022-08-23', 8771, 105045, 6424, NULL, '1.0000', '4.5000', '4.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 (111407, '2022-08-23', 7411, 105046, 6424, NULL, '1.0000', '1.3500', '1.3500', '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 (111408, '2022-08-23', 1560, 105047, 6424, 1631, '-2.0000', '130.1885', '130.1885', '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 (111409, '2022-08-23', 1560, 105047, 6424, NULL, '8.0000', '130.1885', '130.1885', '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 (111410, '2022-08-23', 7743, 105048, 6424, NULL, '2.0000', '1.3100', '1.3100', '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 (111411, '2022-08-24', 2237, 105049, 6425, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111412, '2022-08-24', 1855, 105050, 6425, NULL, '1.0000', '1.4615', '1.4615', '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 (111413, '2022-08-24', 1499, 105051, 6425, 49347, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '9.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111414, '2022-08-24', 1450, 105052, 6425, NULL, '1.0000', '0.8483', '0.8483', '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 (111415, '2022-08-24', 9734, 105053, 6425, 60360, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111416, '2022-08-24', 2777, 105054, 6425, 58193, '1.0000', '3.8913', '3.8913', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111417, '2022-08-24', 1339, 105055, 6425, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111418, '2022-08-24', 2545, 105056, 6425, 55553, '1.0000', '8.6211', '8.6211', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111419, '2022-08-24', 2262, 105057, 6425, 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 (111420, '2022-08-24', 1825, 105058, 6425, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111421, '2022-08-24', 1743, 105059, 6425, NULL, '1.0000', '3.5650', '3.5650', '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 (111422, '2022-08-24', 9762, 105060, 6425, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111423, '2022-08-24', 1771, 105061, 6425, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111424, '2022-08-24', 1715, 105062, 6425, 60307, '1.0000', '8.2180', '8.2180', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111425, '2022-08-24', 9740, 105063, 6425, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111426, '2022-08-24', 1761, 105064, 6425, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111427, '2022-08-24', 2352, 105065, 6425, NULL, '5.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (111428, '2022-08-24', 2088, 105066, 6425, 59892, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111429, '2022-08-24', 9791, 105067, 6425, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111430, '2022-08-24', 2522, 105068, 6425, 59700, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111431, '2022-08-24', 8871, 105069, 6425, NULL, '1.0000', '10.0000', '10.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 (111432, '2022-08-24', 2315, 105070, 6425, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111433, '2022-08-24', 1871, 105071, 6425, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (111434, '2022-08-24', 8065, 105072, 6425, NULL, '1.0000', '32.0000', '32.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 (111435, '2022-08-24', 1771, 105073, 6425, 58162, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111436, '2022-08-24', 1863, 105074, 6425, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111437, '2022-08-24', 1559, 105075, 6426, 53218, '1.0000', '31.0635', '31.0635', '41.0000', '41.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111438, '2022-08-24', 8395, 105076, 6426, NULL, '1.0000', '0.9700', '0.9700', '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 (111439, '2022-08-24', 2500, 105077, 6426, NULL, '15.0000', '5.6000', '5.6000', '7.2000', '7.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 (111440, '2022-08-24', 8763, 105078, 6427, NULL, '1.0000', '-5.9100', '-5.9100', '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 (111441, '2022-08-24', 2643, 105079, 6428, 60956, '1.0000', '1.0797', '1.0797', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111442, '2022-08-24', 7704, 105080, 6428, NULL, '1.0000', '0.4900', '0.4900', '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 (111443, '2022-08-24', 1342, 105081, 6428, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111444, '2022-08-24', 1863, 105082, 6429, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111445, '2022-08-24', 2169, 105083, 6429, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111446, '2022-08-24', 9942, 105084, 6429, NULL, '1.0000', '13.1000', '13.1000', '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 (111447, '2022-08-24', 1825, 105085, 6429, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111448, '2022-08-24', 8079, 105086, 6429, NULL, '1.0000', '16.6100', '16.6100', '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 (111449, '2022-08-24', 9736, 105087, 6429, NULL, '1.0000', '5.0278', '5.0278', '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 (111450, '2022-08-24', 2015, 105088, 6429, 54829, '1.0000', '3.9255', '3.9255', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111451, '2022-08-24', 9565, 105089, 6430, NULL, '1.0000', '4.5000', '4.5000', '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 (111452, '2022-08-24', 2655, 105090, 6430, NULL, '1.0000', '-55.7300', '-55.7300', '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 (111453, '2022-08-24', 8187, 105091, 6430, NULL, '3.0000', '14.3900', '14.3900', '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 (111454, '2022-08-24', 9840, 105092, 6430, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111455, '2022-08-24', 1410, 105093, 6430, NULL, '1.0000', '124.6472', '124.6472', '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 (111456, '2022-08-24', 9741, 105094, 6430, NULL, '1.0000', '7.8500', '7.8500', '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 (111457, '2022-08-24', 8969, 105095, 6430, 39814, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '58.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111458, '2022-08-24', 8744, 105096, 6430, 60543, '1.0000', '2.3138', '2.3138', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111459, '2022-08-24', 2305, 105097, 6430, 53223, '1.0000', '4.0595', '4.0595', '9.0000', '9.0000', '12.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111460, '2022-08-24', 1999, 105098, 6431, 60540, '1.0000', '2.6900', '2.6900', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111461, '2022-08-24', 9738, 105099, 6432, NULL, '1.0000', '5.9000', '5.9000', '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 (111462, '2022-08-24', 7869, 105100, 6432, NULL, '1.0000', '4.2900', '4.2900', '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 (111463, '2022-08-24', 2169, 105101, 6432, 10737, '-224.0000', '3.8397', '3.8397', '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 (111464, '2022-08-24', 2169, 105101, 6432, NULL, '225.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-225.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111465, '2022-08-24', 2379, 105102, 6432, 4032, '-75.0000', '1.5900', '1.5900', '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 (111466, '2022-08-24', 2379, 105102, 6432, NULL, '76.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111467, '2022-08-24', 2242, 105103, 6432, 3059, '-108.0000', '0.4800', '0.4800', '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 (111468, '2022-08-24', 2242, 105103, 6432, NULL, '110.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-110.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111469, '2022-08-24', 1533, 105104, 6432, 10381, '-36.0000', '2.5917', '2.5917', '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 (111470, '2022-08-24', 1533, 105104, 6432, NULL, '37.0000', '2.5917', '2.5917', '6.5000', '6.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111471, '2022-08-24', 1846, 105105, 6432, 12032, '-31.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 (111472, '2022-08-24', 1846, 105105, 6432, NULL, '32.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111473, '2022-08-24', 1592, 105106, 6432, 6223, '-18.0000', '35.9000', '35.9000', '56.0000', '56.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111474, '2022-08-24', 1592, 105106, 6432, NULL, '19.0000', '35.9000', '35.9000', '56.0000', '56.0000', '-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 (111475, '2022-08-24', 1744, 105107, 6432, 2163, '-7.0000', '26.5281', '26.5281', '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 (111476, '2022-08-24', 1744, 105107, 6432, NULL, '8.0000', '26.5281', '26.5281', '40.0000', '40.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 (111477, '2022-08-24', 2100, 105108, 6432, 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 (111478, '2022-08-24', 2106, 105109, 6432, 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 (111479, '2022-08-24', 9695, 105110, 6432, NULL, '1.0000', '4.5000', '4.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 (111480, '2022-08-24', 2228, 105111, 6432, 1703, '-7.0000', '25.0000', '25.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 (111481, '2022-08-24', 2228, 105111, 6432, NULL, '9.0000', '25.0000', '25.0000', '38.0000', '38.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 (111482, '2022-08-24', 1427, 105112, 6432, NULL, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111483, '2022-08-24', 2325, 105113, 6432, 3572, '-2.0000', '5.5000', '5.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 (111484, '2022-08-24', 2325, 105113, 6432, NULL, '3.0000', '5.5000', '5.5000', '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 (111485, '2022-08-24', 7411, 105114, 6432, NULL, '1.0000', '1.3500', '1.3500', '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 (111486, '2022-08-24', 7671, 105115, 6433, NULL, '2.0000', '15.5000', '15.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 (111487, '2022-08-24', 8186, 105116, 6433, NULL, '3.0000', '1.0800', '1.0800', '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 (111488, '2022-08-24', 7530, 105117, 6433, NULL, '1.0000', '7.7000', '7.7000', '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 (111489, '2022-08-24', 7514, 105118, 6433, NULL, '1.0000', '2.2500', '2.2500', '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 (111490, '2022-08-24', 8233, 105119, 6433, NULL, '2.0000', '4.5000', '4.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 (111491, '2022-08-24', 7639, 105120, 6433, 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 (111492, '2022-08-24', 9729, 105121, 6433, NULL, '2.0000', '0.6200', '0.6200', '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 (111493, '2022-08-24', 8672, 105122, 6433, 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 (111494, '2022-08-24', 7674, 105123, 6433, NULL, '2.0000', '1.3000', '1.3000', '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 (111495, '2022-08-24', 8038, 105124, 6433, 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 (111496, '2022-08-24', 9092, 105125, 6433, NULL, '2.0000', '5.2900', '5.2900', '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 (111497, '2022-08-24', 9177, 105126, 6433, 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 (111498, '2022-08-24', 8596, 105127, 6433, 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 (111499, '2022-08-24', 7482, 105128, 6433, NULL, '2.0000', '3.0500', '3.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 (111500, '2022-08-24', 7781, 105129, 6433, NULL, '3.0000', '4.2500', '4.2500', '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 (111501, '2022-08-24', 7762, 105130, 6433, NULL, '1.0000', '1.5000', '1.5000', '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 (111502, '2022-08-24', 1840, 105131, 6433, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (111503, '2022-08-24', 9326, 105132, 6433, NULL, '2.0000', '14.0000', '14.0000', '18.5000', '18.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 (111504, '2022-08-24', 1935, 105133, 6433, 5586, '-194.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 (111505, '2022-08-24', 1935, 105133, 6433, NULL, '195.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-195.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111506, '2022-08-24', 2315, 105134, 6433, 2735, '-638.0000', '0.3300', '0.3300', '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 (111507, '2022-08-24', 2315, 105134, 6433, NULL, '640.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-640.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111508, '2022-08-24', 7411, 105135, 6433, NULL, '1.0000', '1.3500', '1.3500', '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 (111509, '2022-08-24', 8194, 105136, 6433, NULL, '1.0000', '5.4600', '5.4600', '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 (111510, '2022-08-24', 8020, 105137, 6433, NULL, '1.0000', '11.9000', '11.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 (111511, '2022-08-24', 8714, 105138, 6433, NULL, '1.0000', '5.2100', '5.2100', '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 (111512, '2022-08-24', 8097, 105139, 6433, NULL, '2.0000', '3.4000', '3.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 (111513, '2022-08-24', 7894, 105140, 6433, NULL, '1.0000', '3.8000', '3.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 (111514, '2022-08-24', 7780, 105141, 6433, NULL, '1.0000', '11.6000', '11.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 (111515, '2022-08-24', 8878, 105142, 6433, NULL, '2.0000', '6.6700', '6.6700', '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 (111516, '2022-08-24', 9788, 105143, 6433, NULL, '4.0000', '1.3000', '1.3000', '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 (111517, '2022-08-24', 8979, 105144, 6433, NULL, '4.0000', '1.0000', '1.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 (111518, '2022-08-24', 7444, 105145, 6433, 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 (111519, '2022-08-24', 7514, 105146, 6433, NULL, '1.0000', '2.2500', '2.2500', '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 (111520, '2022-08-24', 7672, 105147, 6433, NULL, '2.0000', '1.0200', '1.0200', '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 (111521, '2022-08-24', 2104, 105148, 6434, NULL, '2.0000', '0.2000', '0.2000', '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 (111522, '2022-08-24', 2289, 105149, 6434, NULL, '2.0000', '2.5688', '2.5688', '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 (111523, '2022-08-24', 1841, 105150, 6434, 61154, '1.0000', '0.2808', '0.2808', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111524, '2022-08-24', 2350, 105151, 6434, NULL, '1.0000', '15.9150', '15.9150', '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 (111525, '2022-08-24', 7524, 105152, 6434, 60436, '1.0000', '4.9338', '4.9338', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111526, '2022-08-24', 7959, 105153, 6434, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '11.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111527, '2022-08-24', 9819, 105154, 6434, 60449, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111528, '2022-08-24', 9272, 105155, 6434, NULL, '1.0000', '3.1000', '3.1000', '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 (111529, '2022-08-24', 8810, 105156, 6434, 56694, '1.0000', '10.8427', '10.8427', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111530, '2022-08-24', 7672, 105157, 6434, 59078, '2.0000', '4.1633', '4.1633', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111531, '2022-08-24', 7411, 105158, 6434, 61112, '1.0000', '1.4433', '1.4433', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111532, '2022-08-24', 7354, 105159, 6434, 56647, '11.0000', '1.5641', '1.5641', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111533, '2022-08-24', 7716, 105160, 6434, NULL, '1.0000', '0.0000', '0.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 (111534, '2022-08-24', 9391, 105161, 6434, 53532, '1.0000', '14.5081', '14.5081', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111535, '2022-08-24', 7667, 105162, 6434, 43447, '1.0000', '8.6120', '8.6120', '9.0000', '9.0000', '15.0000', 1, 0, NULL, 306);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111536, '2022-08-24', 7457, 105163, 6434, 60437, '1.0000', '4.9359', '4.9359', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111537, '2022-08-24', 8714, 105164, 6434, 56542, '1.0000', '3.8309', '3.8309', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111538, '2022-08-24', 7674, 105165, 6434, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111539, '2022-08-24', 9942, 105166, 6434, 59348, '1.0000', '9.2802', '9.2802', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111540, '2022-08-24', 2315, 105167, 6434, 60392, '1.0000', '0.7626', '0.7626', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111541, '2022-08-24', 8463, 105168, 6434, NULL, '1.0000', '18.0000', '18.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 (111542, '2022-08-24', 1855, 105169, 6434, 61179, '1.0000', '1.4943', '1.4943', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111543, '2022-08-24', 7412, 105170, 6434, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111544, '2022-08-24', 8413, 105171, 6434, 60441, '1.0000', '75.0008', '75.0008', '120.0000', '120.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111545, '2022-08-24', 9729, 105172, 6434, 60467, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111546, '2022-08-24', 2284, 105173, 6434, 61178, '2.0000', '1.5498', '1.5498', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111547, '2022-08-24', 1947, 105174, 6434, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111548, '2022-08-24', 1501, 105175, 6434, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111549, '2022-08-24', 8849, 105176, 6434, NULL, '1.0000', '1.0700', '1.0700', '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 (111550, '2022-08-24', 8147, 105177, 6434, NULL, '1.0000', '4.5100', '4.5100', '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 (111551, '2022-08-24', 7781, 105178, 6434, NULL, '2.0000', '9.6314', '9.6314', '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 (111552, '2022-08-24', 7762, 105179, 6434, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111553, '2022-08-24', 8878, 105180, 6434, 61213, '2.0000', '0.6074', '0.6074', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111554, '2022-08-24', 2293, 105181, 6435, NULL, '3.0000', '-17.4320', '-17.4320', '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 (111555, '2022-08-24', 2297, 105182, 6435, NULL, '1.0000', '10.3086', '10.3086', '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 (111556, '2022-08-24', 1554, 105183, 6435, 60284, '1.0000', '3.0916', '3.0916', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111557, '2022-08-24', 1837, 105184, 6435, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111558, '2022-08-24', 1787, 105185, 6435, NULL, '1.0000', '0.5000', '0.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 (111559, '2022-08-24', 9995, 105186, 6435, NULL, '1.0000', '8.2000', '8.2000', '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 (111560, '2022-08-24', 1383, 105187, 6435, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111561, '2022-08-24', 9743, 105188, 6435, 58138, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111562, '2022-08-24', 1863, 105189, 6435, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111563, '2022-08-24', 1771, 105190, 6435, 51319, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111564, '2022-08-24', 9911, 105191, 6435, 55596, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111565, '2022-08-24', 1463, 105192, 6435, NULL, '1.0000', '18.5000', '18.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 (111566, '2022-08-24', 3025, 105193, 6435, 58059, '1.0000', '2.4395', '2.4395', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111567, '2022-08-24', 2167, 105194, 6435, NULL, '1.0000', '0.6663', '0.6663', '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 (111568, '2022-08-24', 8183, 105195, 6435, NULL, '1.0000', '2774.2425', '2774.2425', '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 (111569, '2022-08-24', 1863, 105196, 6435, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111570, '2022-08-24', 3059, 105197, 6435, 59839, '1.0000', '1.1792', '1.1792', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111571, '2022-08-24', 2263, 105198, 6435, NULL, '1.0000', '37.4800', '37.4800', '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 (111572, '2022-08-24', 1812, 105199, 6435, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111573, '2022-08-24', 1410, 105200, 6435, NULL, '1.0000', '124.6472', '124.6472', '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 (111574, '2022-08-24', 8083, 105201, 6435, NULL, '1.0000', '26.0000', '26.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 (111575, '2022-08-24', 1637, 105202, 6435, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111576, '2022-08-24', 1665, 105203, 6435, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111577, '2022-08-24', 8338, 105204, 6435, NULL, '1.0000', '1.8300', '1.8300', '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 (111578, '2022-08-24', 1529, 105205, 6435, 48650, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111579, '2022-08-24', 7316, 105206, 6435, 54885, '5.0000', '0.9020', '0.9020', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111580, '2022-08-24', 7944, 105207, 6435, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111581, '2022-08-24', 7585, 105208, 6435, NULL, '2.0000', '3.9600', '3.9600', '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 (111582, '2022-08-24', 2068, 105209, 6435, NULL, '1.0000', '14.6943', '14.6943', '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 (111583, '2022-08-24', 8878, 105210, 6435, NULL, '3.0000', '6.0509', '6.0509', '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 (111584, '2022-08-24', 9750, 105211, 6435, NULL, '1.0000', '2.7458', '2.7458', '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 (111585, '2022-08-24', 7333, 105212, 6435, NULL, '2.0000', '13.5000', '13.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 (111586, '2022-08-24', 1779, 105213, 6435, 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 (111587, '2022-08-24', 9762, 105214, 6435, 51228, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111588, '2022-08-24', 8878, 105215, 6435, NULL, '1.0000', '6.0509', '6.0509', '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 (111589, '2022-08-24', 2384, 105216, 6435, NULL, '2.0000', '-1.7022', '-1.7022', '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 (111590, '2022-08-24', 9539, 105217, 6435, 40116, '1.0000', '23.7500', '23.7500', '37.0000', '37.0000', '0.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111591, '2022-08-24', 2038, 105218, 6435, 59672, '1.0000', '13.6990', '13.6990', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111592, '2022-08-24', 2009, 105219, 6435, 57111, '1.0000', '17.9524', '17.9524', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111593, '2022-08-24', 1816, 105220, 6435, 58143, '1.0000', '22.2575', '22.2575', '29.0000', '29.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111594, '2022-08-24', 2344, 105221, 6435, NULL, '1.0000', '20.0000', '20.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 (111595, '2022-08-24', 2009, 105222, 6435, 57111, '1.0000', '17.9524', '17.9524', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111596, '2022-08-24', 1874, 105223, 6435, NULL, '1.0000', '6.1000', '6.1000', '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 (111597, '2022-08-24', 7752, 105224, 6435, NULL, '1.0000', '2.6100', '2.6100', '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 (111598, '2022-08-24', 7579, 105225, 6435, NULL, '1.0000', '15.0000', '15.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 (111599, '2022-08-24', 1329, 105226, 6435, NULL, '1.0000', '4.2000', '4.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 (111600, '2022-08-24', 7584, 105227, 6435, NULL, '1.0000', '3.1378', '3.1378', '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 (111601, '2022-08-24', 2007, 105228, 6435, 60941, '1.0000', '13.6515', '13.6515', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111602, '2022-08-24', 9626, 105229, 6435, 40340, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111603, '2022-08-24', 1338, 105230, 6435, 58153, '1.0000', '4.5271', '4.5271', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111604, '2022-08-24', 8079, 105231, 6435, NULL, '1.0000', '16.6100', '16.6100', '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 (111605, '2022-08-24', 1771, 105232, 6435, 51319, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111606, '2022-08-24', 9734, 105233, 6435, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111607, '2022-08-24', 8011, 105234, 6435, NULL, '1.0000', '0.9500', '0.9500', '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 (111608, '2022-08-24', 1946, 105235, 6435, NULL, '1.0000', '-6.7231', '-6.7231', '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 (111609, '2022-08-24', 7495, 105236, 6435, NULL, '1.0000', '17.8000', '17.8000', '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 (111610, '2022-08-24', 2935, 105237, 6435, NULL, '1.0000', '-2.6500', '-2.6500', '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 (111611, '2022-08-24', 7639, 105238, 6435, 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 (111612, '2022-08-24', 9866, 105239, 6435, NULL, '1.0000', '9.5500', '9.5500', '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 (111613, '2022-08-24', 9734, 105240, 6435, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111614, '2022-08-24', 1863, 105241, 6435, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111615, '2022-08-24', 1339, 105242, 6435, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111616, '2022-08-24', 9695, 105243, 6435, 59664, '1.0000', '5.3844', '5.3844', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111617, '2022-08-24', 1499, 105244, 6435, 49347, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111618, '2022-08-24', 1383, 105245, 6435, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111619, '2022-08-24', 1621, 105246, 6435, 57751, '1.0000', '17.1389', '17.1389', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111620, '2022-08-24', 7630, 105247, 6435, NULL, '2.0000', '10.0000', '10.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 (111621, '2022-08-24', 1499, 105248, 6435, 49347, '3.0000', '0.4542', '0.4542', '0.7000', '0.7000', '6.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111622, '2022-08-24', 2293, 105249, 6435, NULL, '3.0000', '-17.4320', '-17.4320', '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 (111623, '2022-08-24', 1637, 105250, 6436, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111624, '2022-08-24', 3058, 105251, 6436, NULL, '1.0000', '-47.3000', '-47.3000', '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 (111625, '2022-08-24', 9734, 105252, 6436, 60360, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111626, '2022-08-24', 1863, 105253, 6436, 60323, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111627, '2022-08-24', 2699, 105254, 6436, 60958, '1.0000', '4.6538', '4.6538', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111628, '2022-08-24', 2983, 105255, 6436, 57145, '1.0000', '3.3333', '3.3333', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111629, '2022-08-24', 2983, 105255, 6436, NULL, '1.0000', '3.3333', '3.3333', '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 (111630, '2022-08-24', 7886, 105256, 6437, 60384, '1.0000', '4.5754', '4.5754', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111631, '2022-08-24', 7673, 105257, 6437, 60108, '1.0000', '13.3509', '13.3509', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111632, '2022-08-24', 7925, 105258, 6437, 60118, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111633, '2022-08-24', 7674, 105259, 6437, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111634, '2022-08-24', 7560, 105260, 6437, 60485, '1.0000', '41.4439', '41.4439', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111635, '2022-08-24', 7588, 105261, 6437, 61176, '1.0000', '8.3830', '8.3830', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111636, '2022-08-24', 9791, 105262, 6437, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '95.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111637, '2022-08-24', 1837, 105263, 6437, NULL, '2.0000', '0.5600', '0.5600', '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 (111638, '2022-08-24', 8155, 105264, 6437, NULL, '1.0000', '65.0000', '65.0000', '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 (111639, '2022-08-24', 9865, 105265, 6437, 61131, '1.0000', '8.6334', '8.6334', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111640, '2022-08-24', 8677, 105266, 6437, 61172, '2.0000', '2.0073', '2.0073', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111641, '2022-08-24', 7560, 105267, 6437, 60485, '1.0000', '41.4439', '41.4439', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111642, '2022-08-24', 8933, 105268, 6437, 32140, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111643, '2022-08-24', 7642, 105269, 6437, 59333, '2.0000', '5.9844', '5.9844', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111644, '2022-08-24', 7955, 105270, 6438, 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 (111645, '2022-08-24', 2277, 105271, 6438, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '111.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111646, '2022-08-24', 2699, 105272, 6438, 60928, '2.0000', '3.2934', '3.2934', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111647, '2022-08-24', 1328, 105273, 6438, 55767, '1.0000', '3.9079', '3.9079', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111648, '2022-08-24', 1328, 105273, 6438, 49464, '1.0000', '3.9079', '3.9079', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111649, '2022-08-24', 7917, 105274, 6438, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111650, '2022-08-24', 1481, 105275, 6438, 58788, '1.0000', '41.0790', '41.0790', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111651, '2022-08-24', 2821, 105276, 6438, 60978, '1.0000', '3.4282', '3.4282', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111652, '2022-08-24', 9551, 105277, 6438, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111653, '2022-08-24', 2187, 105278, 6438, 39193, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111654, '2022-08-24', 9745, 105279, 6438, 46045, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111655, '2022-08-24', 7318, 105280, 6438, 54669, '1.0000', '11.1169', '11.1169', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111656, '2022-08-24', 2617, 105281, 6438, 59945, '6.0000', '6.1455', '6.1455', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111657, '2022-08-24', 2076, 105282, 6438, 55815, '1.0000', '7.9560', '7.9560', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111658, '2022-08-24', 2321, 105283, 6438, NULL, '1.0000', '2.5000', '2.5000', '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 (111659, '2022-08-24', 1812, 105284, 6438, 60974, '1.0000', '8.6681', '8.6681', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111660, '2022-08-24', 2169, 105285, 6438, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111661, '2022-08-24', 7385, 105286, 6438, 57945, '4.0000', '2.6553', '2.6553', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111662, '2022-08-24', 8011, 105287, 6438, NULL, '1.0000', '0.9500', '0.9500', '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 (111663, '2022-08-24', 9745, 105288, 6438, 46045, '1.0000', '7.2000', '7.2000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111664, '2022-08-24', 2479, 105289, 6438, 5192, '2.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 (111665, '2022-08-24', 1425, 105290, 6438, 59959, '2.0000', '6.9322', '6.9322', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111666, '2022-08-24', 1493, 105291, 6438, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111667, '2022-08-24', 7482, 105292, 6438, NULL, '2.0000', '3.0500', '3.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 (111668, '2022-08-24', 1337, 105293, 6438, 57969, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111669, '2022-08-24', 1521, 105294, 6438, 56249, '1.0000', '2.8071', '2.8071', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111670, '2022-08-24', 1855, 105295, 6438, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111671, '2022-08-24', 1754, 105296, 6438, 59980, '1.0000', '32.0617', '32.0617', '23.5000', '23.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111672, '2022-08-24', 2914, 105297, 6438, NULL, '2.0000', '10.0000', '10.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 (111673, '2022-08-24', 2187, 105298, 6438, 39193, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111674, '2022-08-24', 9551, 105299, 6438, 39186, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111675, '2022-08-24', 7641, 105300, 6438, NULL, '1.0000', '1.9000', '1.9000', '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 (111676, '2022-08-24', 2643, 105301, 6438, 60925, '1.0000', '1.0109', '1.0109', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111677, '2022-08-24', 2619, 105302, 6439, NULL, '12.0000', '100.5000', '100.5000', '26.5000', '26.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 (111678, '2022-08-25', 9695, 105303, 6440, 59664, '1.0000', '5.3818', '5.3818', '8.0000', '8.0000', '16.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111679, '2022-08-25', 2416, 105304, 6440, 60955, '1.0000', '1.3670', '1.3670', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111680, '2022-08-25', 1628, 105305, 6440, 60232, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111681, '2022-08-25', 2068, 105306, 6440, NULL, '1.0000', '14.6943', '14.6943', '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 (111682, '2022-08-25', 1529, 105307, 6440, 48650, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111683, '2022-08-25', 1856, 105308, 6440, NULL, '2.0000', '155.0099', '155.0099', '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 (111684, '2022-08-25', 1339, 105309, 6440, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111685, '2022-08-25', 2706, 105310, 6440, 58186, '1.0000', '8.7925', '8.7925', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111686, '2022-08-25', 1529, 105311, 6440, 48650, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111687, '2022-08-25', 1342, 105312, 6440, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111688, '2022-08-25', 1665, 105313, 6440, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111689, '2022-08-25', 2303, 105314, 6440, 60320, '1.0000', '27.4455', '27.4455', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111690, '2022-08-25', 9209, 105315, 6440, NULL, '1.0000', '5.7500', '5.7500', '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 (111691, '2022-08-25', 1946, 105316, 6440, NULL, '1.0000', '-6.7231', '-6.7231', '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 (111692, '2022-08-25', 8165, 105317, 6440, 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 (111693, '2022-08-25', 1863, 105318, 6440, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111694, '2022-08-25', 1406, 105319, 6440, 54555, '1.0000', '21.3954', '21.3954', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111695, '2022-08-25', 1816, 105320, 6440, 58143, '1.0000', '22.2575', '22.2575', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111696, '2022-08-25', 7316, 105321, 6440, 54885, '10.0000', '0.9020', '0.9020', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111697, '2022-08-25', 7558, 105322, 6440, NULL, '14.0000', '-37.0255', '-37.0255', '4.0000', '4.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 (111698, '2022-08-25', 1703, 105323, 6440, 59868, '1.0000', '11.5700', '11.5700', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111699, '2022-08-25', 2917, 105324, 6440, 24194, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '0.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 (111700, '2022-08-25', 2038, 105325, 6440, 59672, '2.0000', '13.6990', '13.6990', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111701, '2022-08-25', 2475, 105326, 6440, 60937, '1.0000', '8.3094', '8.3094', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111702, '2022-08-25', 2315, 105327, 6440, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111703, '2022-08-25', 9207, 105328, 6440, NULL, '2.0000', '4.6000', '4.6000', '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 (111704, '2022-08-25', 2289, 105329, 6440, NULL, '3.0000', '0.3611', '0.3611', '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 (111705, '2022-08-25', 9747, 105330, 6440, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111706, '2022-08-25', 1309, 105331, 6440, 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 (111707, '2022-08-25', 2296, 105332, 6440, 55720, '1.0000', '16.0300', '16.0300', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111708, '2022-08-25', 1333, 105333, 6440, 53238, '1.0000', '0.7056', '0.7056', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111709, '2022-08-25', 2754, 105334, 6440, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (111710, '2022-08-25', 2283, 105335, 6440, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111711, '2022-08-25', 1342, 105336, 6440, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111712, '2022-08-25', 2315, 105337, 6440, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111713, '2022-08-25', 1572, 105338, 6440, NULL, '1.0000', '1.9556', '1.9556', '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 (111714, '2022-08-25', 1863, 105339, 6440, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111715, '2022-08-25', 9996, 105340, 6440, 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 (111716, '2022-08-25', 2169, 105341, 6440, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111717, '2022-08-25', 2161, 105342, 6440, 58051, '1.0000', '6.5220', '6.5220', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111718, '2022-08-25', 8254, 105343, 6440, NULL, '1.0000', '27.2800', '27.2800', '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 (111719, '2022-08-25', 9683, 105344, 6440, 60946, '2.0000', '1.5604', '1.5604', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111720, '2022-08-25', 2169, 105345, 6440, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111721, '2022-08-25', 1912, 105346, 6440, NULL, '2.0000', '0.6868', '0.6868', '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 (111722, '2022-08-25', 1337, 105347, 6440, 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 (111723, '2022-08-25', 7375, 105348, 6440, NULL, '10.0000', '5.1000', '5.1000', '7.0000', '7.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 (111724, '2022-08-25', 1368, 105349, 6440, 60229, '1.0000', '5.8695', '5.8695', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111725, '2022-08-25', 2416, 105350, 6440, 60955, '1.0000', '1.3670', '1.3670', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111726, '2022-08-25', 2916, 105351, 6441, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111727, '2022-08-25', 7864, 105352, 6441, 39767, '1.0000', '17.7700', '17.7700', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111728, '2022-08-25', 1536, 105353, 6441, 60242, '6.0000', '32.6685', '32.6685', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111729, '2022-08-25', 1536, 105353, 6441, 30663, '4.0000', '32.6685', '32.6685', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111730, '2022-08-25', 1874, 105354, 6441, NULL, '1.0000', '6.1000', '6.1000', '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 (111731, '2022-08-25', 1308, 105355, 6441, 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 (111732, '2022-08-25', 9734, 105356, 6441, NULL, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111733, '2022-08-25', 1828, 105357, 6441, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111734, '2022-08-25', 8878, 105358, 6441, NULL, '2.0000', '6.0509', '6.0509', '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 (111735, '2022-08-25', 2315, 105359, 6441, 59595, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111736, '2022-08-25', 7967, 105360, 6441, NULL, '1.0000', '0.8900', '0.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 (111737, '2022-08-25', 1557, 105361, 6441, NULL, '1.0000', '8.2500', '8.2500', '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 (111738, '2022-08-25', 9747, 105362, 6441, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111739, '2022-08-25', 1409, 105363, 6442, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111740, '2022-08-25', 2414, 105364, 6442, 59833, '2.0000', '-1.2752', '-1.2752', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111741, '2022-08-25', 7802, 105365, 6443, NULL, '4.0000', '0.9200', '0.9200', '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 (111742, '2022-08-25', 8677, 105366, 6443, NULL, '2.0000', '1.2800', '1.2800', '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 (111743, '2022-08-25', 2293, 105367, 6443, 22262, '2.0000', '1.4400', '1.4400', '1.5000', '1.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 (111744, '2022-08-25', 2169, 105368, 6443, 10737, '-225.0000', '3.8397', '3.8397', '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 (111745, '2022-08-25', 2169, 105368, 6443, NULL, '226.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-226.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111746, '2022-08-25', 2511, 105369, 6443, 9740, '-19.0000', '8.5000', '8.5000', '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 (111747, '2022-08-25', 2511, 105369, 6443, NULL, '20.0000', '8.5000', '8.5000', '16.0000', '16.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 (111748, '2022-08-25', 2089, 105370, 6443, 10811, '-8.0000', '6.6500', '6.6500', '9.5000', '9.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 (111749, '2022-08-25', 2089, 105370, 6443, NULL, '9.0000', '6.6500', '6.6500', '9.5000', '9.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 (111750, '2022-08-25', 9915, 105371, 6443, 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 (111751, '2022-08-25', 1855, 105372, 6443, 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 (111752, '2022-08-25', 2858, 105373, 6443, 17772, '-126.0000', '1.0000', '1.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 (111753, '2022-08-25', 2858, 105373, 6443, NULL, '128.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-128.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111754, '2022-08-25', 2486, 105374, 6443, 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 (111755, '2022-08-25', 7741, 105375, 6443, NULL, '1.0000', '1.2000', '1.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 (111756, '2022-08-25', 7411, 105376, 6443, NULL, '1.0000', '1.3500', '1.3500', '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 (111757, '2022-08-25', 1912, 105377, 6443, NULL, '2.0000', '0.3200', '0.3200', '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 (111758, '2022-08-25', 1387, 105378, 6443, NULL, '1.0000', '10.5068', '10.5068', '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 (111759, '2022-08-25', 2169, 105379, 6443, 10737, '-225.0000', '3.8397', '3.8397', '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 (111760, '2022-08-25', 2169, 105379, 6443, NULL, '226.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-226.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111761, '2022-08-25', 2384, 105380, 6443, 4087, '-86.0000', '0.4000', '0.4000', '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 (111762, '2022-08-25', 2384, 105380, 6443, NULL, '89.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111763, '2022-08-25', 2020, 105381, 6443, 10164, '-29.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 (111764, '2022-08-25', 2020, 105381, 6443, NULL, '30.0000', '7.5000', '7.5000', '11.0000', '11.0000', '-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 (111765, '2022-08-25', 1602, 105382, 6443, 5897, '-180.0000', '6.7859', '6.7859', '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 (111766, '2022-08-25', 1602, 105382, 6443, NULL, '181.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-181.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111767, '2022-08-25', 2391, 105383, 6443, 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 (111768, '2022-08-25', 1486, 105384, 6443, 1447, '-1.0000', '17.2400', '17.2400', '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 (111769, '2022-08-25', 1486, 105384, 6443, NULL, '2.0000', '17.2400', '17.2400', '22.5000', '22.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 (111770, '2022-08-25', 2693, 105385, 6443, 12285, '-12.0000', '25.3656', '25.3656', '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 (111771, '2022-08-25', 2693, 105385, 6443, NULL, '13.0000', '25.3656', '25.3656', '32.5000', '32.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 (111772, '2022-08-25', 7411, 105386, 6443, NULL, '1.0000', '1.3500', '1.3500', '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 (111773, '2022-08-25', 7588, 105387, 6444, NULL, '1.0000', '6.9000', '6.9000', '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 (111774, '2022-08-25', 8203, 105388, 6444, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111775, '2022-08-25', 8097, 105389, 6444, NULL, '2.0000', '3.4000', '3.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 (111776, '2022-08-25', 7666, 105390, 6444, NULL, '2.0000', '3.6000', '3.6000', '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 (111777, '2022-08-25', 2602, 105391, 6444, 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 (111778, '2022-08-25', 7368, 105392, 6444, NULL, '1.0000', '14.7500', '14.7500', '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 (111779, '2022-08-25', 8361, 105393, 6444, NULL, '1.0000', '7.2300', '7.2300', '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 (111780, '2022-08-25', 7530, 105394, 6444, NULL, '1.0000', '7.7000', '7.7000', '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 (111781, '2022-08-25', 1904, 105395, 6444, 5442, '-97.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 (111782, '2022-08-25', 1904, 105395, 6444, NULL, '98.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-98.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111783, '2022-08-25', 7518, 105396, 6444, NULL, '1.0000', '7.8200', '7.8200', '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 (111784, '2022-08-25', 7749, 105397, 6444, NULL, '1.0000', '3.0000', '3.0000', '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 (111785, '2022-08-25', 2242, 105398, 6444, 3059, '-110.0000', '0.4800', '0.4800', '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 (111786, '2022-08-25', 2242, 105398, 6444, NULL, '112.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111787, '2022-08-25', 7671, 105399, 6444, NULL, '1.0000', '15.5000', '15.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 (111788, '2022-08-25', 9007, 105400, 6444, NULL, '1.0000', '22.2000', '22.2000', '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 (111789, '2022-08-25', 7672, 105401, 6444, NULL, '1.0000', '1.0200', '1.0200', '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 (111790, '2022-08-25', 8889, 105402, 6444, NULL, '1.0000', '39.0000', '39.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 (111791, '2022-08-25', 1340, 105403, 6444, 13005, '-18.0000', '2.7025', '2.7025', '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 (111792, '2022-08-25', 1340, 105403, 6444, NULL, '19.0000', '2.7025', '2.7025', '5.0000', '5.0000', '-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 (111793, '2022-08-25', 8823, 105404, 6444, NULL, '1.0000', '12.0000', '12.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 (111794, '2022-08-25', 7781, 105405, 6444, NULL, '3.0000', '4.2500', '4.2500', '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 (111795, '2022-08-25', 9695, 105406, 6444, NULL, '1.0000', '4.5000', '4.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 (111796, '2022-08-25', 8721, 105407, 6444, NULL, '2.0000', '23.0000', '23.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 (111797, '2022-08-25', 9566, 105408, 6444, NULL, '1.0000', '33.0000', '33.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 (111798, '2022-08-25', 7334, 105409, 6444, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (111799, '2022-08-25', 2069, 105410, 6444, 5571, '-17.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111800, '2022-08-25', 2069, 105410, 6444, NULL, '18.0000', '2.0400', '2.0400', '14.0000', '14.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 (111801, '2022-08-25', 7778, 105411, 6445, NULL, '1.0000', '7.0746', '7.0746', '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 (111802, '2022-08-25', 7959, 105412, 6445, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '9.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111803, '2022-08-25', 2315, 105413, 6445, 60392, '1.0000', '0.7626', '0.7626', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111804, '2022-08-25', 7967, 105414, 6445, 60121, '1.0000', '7.1845', '7.1845', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111805, '2022-08-25', 7514, 105415, 6445, 61185, '1.0000', '97875.4136', '97875.4136', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111806, '2022-08-25', 1841, 105416, 6445, 61154, '2.0000', '0.2808', '0.2808', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111807, '2022-08-25', 8878, 105417, 6445, 61213, '2.0000', '0.6074', '0.6074', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111808, '2022-08-25', 9819, 105418, 6445, 60449, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111809, '2022-08-25', 9953, 105419, 6445, 60498, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111810, '2022-08-25', 7689, 105420, 6445, 60800, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111811, '2022-08-25', 7514, 105421, 6445, 61185, '1.0000', '97875.4136', '97875.4136', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111812, '2022-08-25', 7379, 105422, 6445, 60431, '1.0000', '8.9427', '8.9427', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111813, '2022-08-25', 7352, 105423, 6445, 43112, '1.0000', '-1.2510', '-1.2510', '2.6000', '2.6000', '36.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111814, '2022-08-25', 8203, 105424, 6445, 57407, '3.0000', '2.0908', '2.0908', '0.7000', '0.7000', '25.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111815, '2022-08-25', 8046, 105425, 6445, NULL, '2.0000', '645.1436', '645.1436', '28.0000', '28.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 (111816, '2022-08-25', 7324, 105426, 6445, 60112, '3.0000', '6.3200', '6.3200', '8.5000', '8.5000', '14.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111817, '2022-08-25', 7709, 105427, 6445, NULL, '2.0000', '644.1799', '644.1799', '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 (111818, '2022-08-25', 7690, 105428, 6445, NULL, '1.0000', '17.7730', '17.7730', '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 (111819, '2022-08-25', 2650, 105429, 6445, 59195, '1.0000', '8.4572', '8.4572', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111820, '2022-08-25', 7675, 105430, 6445, NULL, '1.0000', '-21.9809', '-21.9809', '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 (111821, '2022-08-25', 7334, 105431, 6445, 60416, '2.0000', '9.2913', '9.2913', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111822, '2022-08-25', 2612, 105432, 6445, 59308, '1.0000', '8.5056', '8.5056', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111823, '2022-08-25', 1665, 105433, 6445, 60446, '1.0000', '1.2418', '1.2418', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111824, '2022-08-25', 7564, 105434, 6445, 59164, '3.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111825, '2022-08-25', 7412, 105435, 6445, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111826, '2022-08-25', 8963, 105436, 6445, 54716, '1.0000', '15.7800', '15.7800', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111827, '2022-08-25', 7756, 105437, 6445, 61138, '1.0000', '31.1808', '31.1808', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111828, '2022-08-25', 7523, 105438, 6445, 61197, '1.0000', '12.0963', '12.0963', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111829, '2022-08-25', 8363, 105439, 6445, NULL, '1.0000', '38.0000', '38.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 (111830, '2022-08-25', 9503, 105440, 6445, 61146, '1.0000', '1.7046', '1.7046', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111831, '2022-08-25', 8677, 105441, 6445, 61172, '2.0000', '2.0073', '2.0073', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111832, '2022-08-25', 7674, 105442, 6445, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111833, '2022-08-25', 9503, 105443, 6445, 61146, '1.0000', '1.7046', '1.7046', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111834, '2022-08-25', 2289, 105444, 6446, NULL, '2.0000', '2.5688', '2.5688', '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 (111835, '2022-08-25', 7954, 105445, 6446, NULL, '2.0000', '7039.4904', '7039.4904', '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 (111836, '2022-08-25', 8085, 105446, 6446, 49815, '2.0000', '-30.0931', '-30.0931', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111837, '2022-08-25', 2315, 105447, 6446, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111838, '2022-08-25', 7781, 105448, 6446, NULL, '2.0000', '9.6314', '9.6314', '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 (111839, '2022-08-25', 8288, 105449, 6446, NULL, '3.0000', '1.1434', '1.1434', '1.8000', '1.8000', '-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 (111840, '2022-08-25', 8077, 105450, 6446, NULL, '1.0000', '4.9986', '4.9986', '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 (111841, '2022-08-25', 9092, 105451, 6446, 60813, '4.0000', '0.3167', '0.3167', '0.5000', '0.5000', '118.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111842, '2022-08-25', 7558, 105452, 6446, NULL, '5.0000', '-19.8908', '-19.8908', '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 (111843, '2022-08-25', 7886, 105453, 6446, 60384, '1.0000', '4.5754', '4.5754', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111844, '2022-08-25', 7316, 105454, 6446, 61107, '10.0000', '0.9680', '0.9680', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111845, '2022-08-25', 8842, 105455, 6446, 30216, '1.0000', '13.6700', '13.6700', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111846, '2022-08-25', 8661, 105456, 6447, 60253, '1.0000', '5.6000', '5.6000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111847, '2022-08-25', 2608, 105457, 6447, NULL, '1.0000', '83.3300', '83.3300', '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 (111848, '2022-08-25', 1499, 105458, 6447, 49347, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111849, '2022-08-25', 1318, 105459, 6447, 45180, '1.0000', '5.2690', '5.2690', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111850, '2022-08-25', 1592, 105460, 6447, 60348, '1.0000', '41.8074', '41.8074', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111851, '2022-08-25', 9695, 105461, 6447, 59664, '1.0000', '5.3818', '5.3818', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111852, '2022-08-25', 7328, 105462, 6447, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (111853, '2022-08-25', 1840, 105463, 6447, NULL, '4.0000', '0.2400', '0.2400', '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 (111854, '2022-08-25', 2893, 105464, 6447, NULL, '1.0000', '9.1280', '9.1280', '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 (111855, '2022-08-25', 8740, 105465, 6447, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111856, '2022-08-25', 1955, 105466, 6447, 51501, '1.0000', '2.6400', '2.6400', '2.2000', '2.2000', '19.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111857, '2022-08-25', 9727, 105467, 6447, NULL, '1.0000', '6.7000', '6.7000', '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 (111858, '2022-08-25', 9734, 105468, 6447, NULL, '6.0000', '0.4261', '0.4261', '0.7000', '0.7000', '-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 (111859, '2022-08-25', 1771, 105469, 6447, 51319, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111860, '2022-08-25', 9482, 105470, 6447, 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 (111861, '2022-08-25', 7641, 105471, 6447, NULL, '1.0000', '1.9000', '1.9000', '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 (111862, '2022-08-25', 2893, 105472, 6447, NULL, '1.0000', '9.1280', '9.1280', '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 (111863, '2022-08-25', 9734, 105473, 6447, NULL, '6.0000', '0.4261', '0.4261', '0.7000', '0.7000', '-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 (111864, '2022-08-25', 3001, 105474, 6447, 37759, '3.0000', '2.5621', '2.5621', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111865, '2022-08-25', 1767, 105475, 6447, 13767, '1.0000', '5.3188', '5.3188', '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 (111866, '2022-08-25', 9750, 105476, 6447, NULL, '1.0000', '2.7458', '2.7458', '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 (111867, '2022-08-25', 1612, 105477, 6447, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111868, '2022-08-25', 2169, 105478, 6447, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111869, '2022-08-25', 7585, 105479, 6447, NULL, '1.0000', '3.9600', '3.9600', '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 (111870, '2022-08-25', 7432, 105480, 6447, NULL, '1.0000', '18.9000', '18.9000', '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 (111871, '2022-08-25', 1383, 105481, 6447, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111872, '2022-08-25', 8065, 105482, 6447, NULL, '1.0000', '32.0000', '32.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 (111873, '2022-08-25', 2068, 105483, 6447, NULL, '1.0000', '14.6943', '14.6943', '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 (111874, '2022-08-25', 2260, 105484, 6447, 51688, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111875, '2022-08-25', 2315, 105485, 6447, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111876, '2022-08-25', 2475, 105486, 6447, 60937, '1.0000', '8.3094', '8.3094', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111877, '2022-08-25', 1529, 105487, 6447, 48650, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111878, '2022-08-25', 1840, 105488, 6447, NULL, '4.0000', '0.2400', '0.2400', '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 (111879, '2022-08-25', 7324, 105489, 6447, NULL, '1.0000', '5.4813', '5.4813', '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 (111880, '2022-08-25', 7944, 105490, 6447, 57689, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111881, '2022-08-25', 2167, 105491, 6447, NULL, '1.0000', '0.6663', '0.6663', '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 (111882, '2022-08-25', 1550, 105492, 6447, 57797, '1.0000', '19.4890', '19.4890', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111883, '2022-08-25', 8743, 105493, 6447, 61267, '1.0000', '15.8400', '15.8400', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111884, '2022-08-25', 2959, 105494, 6447, 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 (111885, '2022-08-25', 2443, 105495, 6447, 54833, '1.0000', '3.1936', '3.1936', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111886, '2022-08-25', 9750, 105496, 6447, NULL, '1.0000', '2.7458', '2.7458', '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 (111887, '2022-08-25', 7411, 105497, 6447, NULL, '1.0000', '1.2819', '1.2819', '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 (111888, '2022-08-25', 2283, 105498, 6447, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111889, '2022-08-25', 2656, 105499, 6447, 60959, '1.0000', '1.9688', '1.9688', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111890, '2022-08-25', 1425, 105500, 6447, NULL, '1.0000', '324.2732', '324.2732', '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 (111891, '2022-08-25', 1432, 105501, 6447, 58198, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111892, '2022-08-25', 1432, 105502, 6447, 58198, '1.0000', '12.6953', '12.6953', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111893, '2022-08-25', 1311, 105503, 6447, NULL, '2.0000', '0.3700', '0.3700', '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 (111894, '2022-08-25', 2655, 105504, 6447, NULL, '2.0000', '-122.1154', '-122.1154', '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 (111895, '2022-08-25', 2096, 105505, 6447, 58242, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111896, '2022-08-25', 8183, 105506, 6447, NULL, '1.0000', '2774.2425', '2774.2425', '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 (111897, '2022-08-25', 2061, 105507, 6447, NULL, '1.0000', '-0.6387', '-0.6387', '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 (111898, '2022-08-25', 2270, 105508, 6447, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111899, '2022-08-25', 2366, 105509, 6447, NULL, '2.0000', '-98.6017', '-98.6017', '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 (111900, '2022-08-25', 2315, 105510, 6447, 59595, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111901, '2022-08-25', 1910, 105511, 6447, NULL, '1.0000', '0.5756', '0.5756', '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 (111902, '2022-08-25', 8124, 105512, 6447, 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 (111903, '2022-08-25', 7849, 105513, 6447, 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 (111904, '2022-08-25', 7745, 105514, 6447, 58190, '1.0000', '6.7000', '6.7000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111905, '2022-08-25', 9788, 105515, 6447, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111906, '2022-08-25', 2699, 105516, 6447, 60958, '1.0000', '4.1154', '4.1154', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111907, '2022-08-25', 1310, 105517, 6447, 60259, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111908, '2022-08-25', 1529, 105518, 6448, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111909, '2022-08-25', 2070, 105519, 6448, 58843, '1.0000', '2.1957', '2.1957', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111910, '2022-08-25', 7744, 105520, 6448, NULL, '1.0000', '2.9400', '2.9400', '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 (111911, '2022-08-25', 7411, 105521, 6448, 61244, '1.0000', '1.6318', '1.6318', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111912, '2022-08-25', 1816, 105522, 6448, 60038, '1.0000', '20.4550', '20.4550', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111913, '2022-08-25', 2734, 105523, 6448, 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 (111914, '2022-08-25', 7565, 105524, 6448, NULL, '1.0000', '0.2000', '0.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 (111915, '2022-08-25', 1383, 105525, 6448, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111916, '2022-08-25', 2352, 105526, 6448, 60000, '1.0000', '173.6650', '173.6650', '3.7000', '3.7000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111917, '2022-08-25', 2366, 105527, 6448, 60001, '2.0000', '3.6431', '3.6431', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111918, '2022-08-25', 7954, 105528, 6448, 56718, '1.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111919, '2022-08-25', 7848, 105529, 6448, NULL, '1.0000', '15.0000', '15.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 (111920, '2022-08-25', 2255, 105530, 6448, 60039, '1.0000', '21.5389', '21.5389', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111921, '2022-08-25', 1688, 105531, 6448, 56732, '1.0000', '19.9824', '19.9824', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111922, '2022-08-25', 1375, 105532, 6448, 56975, '1.0000', '87.5586', '87.5586', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111923, '2022-08-25', 2821, 105533, 6448, 61242, '1.0000', '3.4275', '3.4275', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111924, '2022-08-25', 1779, 105534, 6448, 4938, '1.0000', '0.3100', '0.3100', '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 (111925, '2022-08-25', 1871, 105535, 6448, 59999, '20.0000', '4.6908', '4.6908', '3.7000', '3.7000', '21.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111926, '2022-08-25', 9533, 105536, 6448, 35933, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111927, '2022-08-25', 2858, 105537, 6448, NULL, '2.0000', '1.0000', '1.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 (111928, '2022-08-25', 1807, 105538, 6448, 58783, '4.0000', '-3.9727', '-3.9727', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111929, '2022-08-25', 1904, 105539, 6448, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111930, '2022-08-25', 8498, 105540, 6448, 59973, '1.0000', '3.6031', '3.6031', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111931, '2022-08-25', 1863, 105541, 6448, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111932, '2022-08-25', 2327, 105542, 6448, 59969, '1.0000', '3.3869', '3.3869', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111933, '2022-08-25', 1687, 105543, 6448, 59951, '1.0000', '14.8587', '14.8587', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111934, '2022-08-25', 7585, 105544, 6448, NULL, '1.0000', '4.2400', '4.2400', '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 (111935, '2022-08-26', 2847, 105545, 6449, NULL, '1.0000', '13.8800', '13.8800', '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 (111936, '2022-08-26', 2416, 105546, 6449, 60955, '1.0000', '1.3670', '1.3670', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111937, '2022-08-26', 2169, 105547, 6449, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111938, '2022-08-26', 1310, 105548, 6449, 60259, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111939, '2022-08-26', 2109, 105549, 6449, NULL, '1.0000', '0.0413', '0.0413', '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 (111940, '2022-08-26', 9750, 105550, 6449, NULL, '1.0000', '2.7458', '2.7458', '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 (111941, '2022-08-26', 9872, 105551, 6449, NULL, '1.0000', '14.6300', '14.6300', '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 (111942, '2022-08-26', 1781, 105552, 6449, 60352, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111943, '2022-08-26', 2295, 105553, 6449, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111944, '2022-08-26', 9866, 105554, 6449, NULL, '1.0000', '9.5500', '9.5500', '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 (111945, '2022-08-26', 9747, 105555, 6449, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111946, '2022-08-26', 2169, 105556, 6449, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111947, '2022-08-26', 1837, 105557, 6449, 59893, '3.0000', '1.6544', '1.6544', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111948, '2022-08-26', 2237, 105558, 6449, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111949, '2022-08-26', 2167, 105559, 6449, NULL, '1.0000', '0.6663', '0.6663', '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 (111950, '2022-08-26', 1860, 105560, 6449, 51335, '1.0000', '26.9175', '26.9175', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111951, '2022-08-26', 9729, 105561, 6449, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111952, '2022-08-26', 7741, 105562, 6449, NULL, '1.0000', '-174.4114', '-174.4114', '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 (111953, '2022-08-26', 2643, 105563, 6449, 60956, '1.0000', '1.0791', '1.0791', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111954, '2022-08-26', 2068, 105564, 6449, NULL, '1.0000', '14.6943', '14.6943', '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 (111955, '2022-08-26', 2284, 105565, 6449, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111956, '2022-08-26', 2379, 105566, 6449, NULL, '1.0000', '-14.1447', '-14.1447', '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 (111957, '2022-08-26', 1841, 105567, 6449, NULL, '2.0000', '0.7630', '0.7630', '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 (111958, '2022-08-26', 2289, 105568, 6449, NULL, '2.0000', '0.3611', '0.3611', '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 (111959, '2022-08-26', 1840, 105569, 6449, NULL, '2.0000', '0.2400', '0.2400', '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 (111960, '2022-08-26', 2295, 105570, 6449, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111961, '2022-08-26', 1816, 105571, 6449, 58143, '1.0000', '22.2575', '22.2575', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111962, '2022-08-26', 1383, 105572, 6449, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111963, '2022-08-26', 9649, 105573, 6449, NULL, '1.0000', '2.6750', '2.6750', '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 (111964, '2022-08-26', 1785, 105574, 6449, 59858, '1.0000', '17.7035', '17.7035', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111965, '2022-08-26', 2169, 105575, 6449, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111966, '2022-08-26', 2384, 105576, 6449, NULL, '4.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (111967, '2022-08-26', 9956, 105577, 6449, 60246, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111968, '2022-08-26', 3058, 105578, 6449, NULL, '1.0000', '-47.3000', '-47.3000', '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 (111969, '2022-08-26', 1609, 105579, 6449, 57780, '1.0000', '33.7500', '33.7500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111970, '2022-08-26', 2416, 105580, 6449, 60955, '1.0000', '1.3670', '1.3670', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111971, '2022-08-26', 8746, 105581, 6450, 61266, '1.0000', '2.8100', '2.8100', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111972, '2022-08-26', 1409, 105582, 6450, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111973, '2022-08-26', 1620, 105583, 6450, 60302, '4.0000', '2.3610', '2.3610', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111974, '2022-08-26', 7411, 105584, 6450, NULL, '1.0000', '1.2819', '1.2819', '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 (111975, '2022-08-26', 8065, 105585, 6451, NULL, '1.0000', '32.0000', '32.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 (111976, '2022-08-26', 7411, 105586, 6451, NULL, '1.0000', '1.2819', '1.2819', '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 (111977, '2022-08-26', 7926, 105587, 6451, 60315, '1.0000', '4.2867', '4.2867', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111978, '2022-08-26', 1781, 105588, 6451, 60352, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111979, '2022-08-26', 1590, 105589, 6452, 9437, '1.0000', '1.7700', '1.7700', '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 (111980, '2022-08-26', 2169, 105590, 6452, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111981, '2022-08-26', 1867, 105591, 6452, NULL, '1.0000', '7.6834', '7.6834', '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 (111982, '2022-08-26', 7819, 105592, 6452, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '5.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111983, '2022-08-26', 8710, 105593, 6452, NULL, '1.0000', '10.9000', '10.9000', '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 (111984, '2022-08-26', 2821, 105594, 6452, 61242, '1.0000', '3.4275', '3.4275', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111985, '2022-08-26', 1383, 105595, 6452, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111986, '2022-08-26', 2699, 105596, 6452, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111987, '2022-08-26', 9628, 105597, 6452, 40391, '1.0000', '46.1200', '46.1200', '55.0000', '55.0000', '6.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111988, '2022-08-26', 2655, 105598, 6452, 60926, '1.0000', '7.0022', '7.0022', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111989, '2022-08-26', 9940, 105599, 6453, NULL, '2.0000', '9.0000', '9.0000', '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 (111990, '2022-08-26', 2062, 105600, 6453, 59968, '1.0000', '10.1103', '10.1103', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111991, '2022-08-26', 8746, 105601, 6453, 58001, '1.0000', '65.4820', '65.4820', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111992, '2022-08-26', 1529, 105602, 6453, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111993, '2022-08-26', 2444, 105603, 6453, 56840, '1.0000', '8.4868', '8.4868', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111994, '2022-08-26', 1478, 105604, 6453, 60043, '1.0000', '38.2121', '38.2121', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111995, '2022-08-26', 1602, 105605, 6453, 60085, '1.0000', '7.1218', '7.1218', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111996, '2022-08-26', 2281, 105606, 6453, 58765, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111997, '2022-08-26', 1754, 105607, 6453, 59980, '1.0000', '32.0617', '32.0617', '23.5000', '23.5000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (111998, '2022-08-26', 9940, 105608, 6453, 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 (111999, '2022-08-26', 8044, 105609, 6453, NULL, '1.0000', '1.5000', '1.5000', '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 (112000, '2022-08-26', 2582, 105610, 6453, 31977, '1.0000', '14.0000', '14.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112001, '2022-08-26', 3017, 105611, 6453, 59986, '1.0000', '3.9652', '3.9652', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112002, '2022-08-26', 9711, 105612, 6453, 59627, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112003, '2022-08-26', 9692, 105613, 6454, NULL, '2.0000', '10.4500', '10.4500', '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 (112004, '2022-08-26', 8097, 105614, 6454, NULL, '2.0000', '3.4000', '3.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 (112005, '2022-08-26', 8677, 105615, 6454, NULL, '3.0000', '1.2800', '1.2800', '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 (112006, '2022-08-26', 8097, 105616, 6454, NULL, '2.0000', '3.4000', '3.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 (112007, '2022-08-26', 7807, 105617, 6454, NULL, '1.0000', '2.1600', '2.1600', '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 (112008, '2022-08-26', 7743, 105618, 6454, NULL, '1.0000', '1.3100', '1.3100', '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 (112009, '2022-08-26', 9988, 105619, 6454, 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 (112010, '2022-08-26', 7411, 105620, 6454, NULL, '2.0000', '1.3500', '1.3500', '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 (112011, '2022-08-26', 8032, 105621, 6454, NULL, '1.0000', '6.4400', '6.4400', '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 (112012, '2022-08-26', 7444, 105622, 6454, 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 (112013, '2022-08-26', 7674, 105623, 6454, NULL, '1.0000', '1.3000', '1.3000', '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 (112014, '2022-08-26', 8243, 105624, 6454, NULL, '1.0000', '1.1400', '1.1400', '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 (112015, '2022-08-26', 2548, 105625, 6454, 6904, '-3.0000', '6.7200', '6.7200', '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 (112016, '2022-08-26', 2548, 105625, 6454, NULL, '4.0000', '6.7200', '6.7200', '11.5000', '11.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 (112017, '2022-08-26', 2506, 105626, 6454, 16244, '-39.0000', '3.4900', '3.4900', '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 (112018, '2022-08-26', 2506, 105626, 6454, NULL, '40.0000', '3.4900', '3.4900', '6.5000', '6.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 (112019, '2022-08-26', 7640, 105627, 6454, 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 (112020, '2022-08-26', 9747, 105628, 6454, NULL, '1.0000', '0.6500', '0.6500', '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 (112021, '2022-08-26', 2650, 105629, 6454, 12033, '-6.0000', '7.3200', '7.3200', '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 (112022, '2022-08-26', 2650, 105629, 6454, NULL, '7.0000', '7.3200', '7.3200', '12.5000', '12.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 (112023, '2022-08-26', 7557, 105630, 6454, NULL, '10.0000', '0.5000', '0.5000', '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 (112024, '2022-08-26', 8085, 105631, 6454, NULL, '2.0000', '1.1700', '1.1700', '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 (112025, '2022-08-26', 7547, 105632, 6454, NULL, '4.0000', '0.0000', '0.0000', '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 (112026, '2022-08-26', 8180, 105633, 6454, NULL, '4.0000', '4.4000', '4.4000', '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 (112027, '2022-08-26', 7863, 105634, 6454, NULL, '1.0000', '3.0000', '3.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 (112028, '2022-08-26', 3079, 105635, 6454, 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 (112029, '2022-08-26', 9724, 105636, 6454, NULL, '1.0000', '20.3000', '20.3000', '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 (112030, '2022-08-26', 7438, 105637, 6454, NULL, '1.0000', '28.6900', '28.6900', '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 (112031, '2022-08-26', 9248, 105638, 6454, NULL, '1.0000', '20.0000', '20.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 (112032, '2022-08-26', 8756, 105639, 6454, NULL, '1.0000', '7.5000', '7.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 (112033, '2022-08-26', 8766, 105640, 6454, NULL, '1.0000', '5.8000', '5.8000', '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 (112034, '2022-08-26', 8063, 105641, 6454, NULL, '1.0000', '1.6000', '1.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 (112035, '2022-08-26', 7524, 105642, 6454, NULL, '3.0000', '11.9500', '11.9500', '7.0000', '7.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 (112036, '2022-08-26', 7457, 105643, 6454, NULL, '2.0000', '6.0000', '6.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 (112037, '2022-08-26', 7708, 105644, 6454, NULL, '1.0000', '7.8000', '7.8000', '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 (112038, '2022-08-26', 8466, 105645, 6454, NULL, '30.0000', '2.8900', '2.8900', '4.0000', '4.0000', '-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 (112039, '2022-08-26', 7411, 105646, 6454, NULL, '2.0000', '1.3500', '1.3500', '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 (112040, '2022-08-26', 8810, 105647, 6454, NULL, '1.0000', '1.6000', '1.6000', '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 (112041, '2022-08-26', 1488, 105648, 6455, 60087, '1.0000', '8.0591', '8.0591', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112042, '2022-08-26', 9866, 105649, 6455, 56221, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112043, '2022-08-26', 1863, 105650, 6455, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112044, '2022-08-26', 2298, 105651, 6455, 55521, '1.0000', '7.1975', '7.1975', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112045, '2022-08-26', 2297, 105652, 6455, 58656, '1.0000', '8.3580', '8.3580', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112046, '2022-08-26', 2286, 105653, 6455, 56241, '1.0000', '4.9825', '4.9825', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112047, '2022-08-26', 1499, 105654, 6455, 58613, '2.0000', '0.4612', '0.4612', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112048, '2022-08-26', 1337, 105655, 6455, 34683, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112049, '2022-08-26', 3017, 105656, 6456, 59986, '1.0000', '3.9652', '3.9652', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112050, '2022-08-26', 2163, 105657, 6456, 56208, '1.0000', '24.1717', '24.1717', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112051, '2022-08-26', 1667, 105658, 6456, 57996, '1.0000', '19.5846', '19.5846', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112052, '2022-08-26', 1667, 105658, 6456, 56914, '1.0000', '19.5846', '19.5846', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112053, '2022-08-26', 2169, 105659, 6456, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112054, '2022-08-26', 2964, 105660, 6456, 60920, '1.0000', '6.4630', '6.4630', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112055, '2022-08-26', 2487, 105661, 6457, NULL, '1.0000', '35.7143', '35.7143', '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 (112056, '2022-08-26', 2341, 105662, 6457, 56724, '1.0000', '5.8706', '5.8706', '9.4800', '9.4800', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112057, '2022-08-26', 1863, 105663, 6457, 60078, '9.0000', '1.3992', '1.3992', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112058, '2022-08-26', 8933, 105664, 6458, 60917, '1.0000', '9.1447', '9.1447', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112059, '2022-08-26', 1699, 105665, 6459, 49088, '1.0000', '3.2000', '3.2000', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112060, '2022-08-26', 2435, 105666, 6460, 60530, '1.0000', '10.0500', '10.0500', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112061, '2022-08-26', 2011, 105667, 6460, 6434, '1.0000', '0.5300', '0.5300', '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 (112062, '2022-08-26', 1665, 105668, 6460, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112063, '2022-08-26', 1863, 105669, 6461, 60078, '2.0000', '1.3992', '1.3992', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112064, '2022-08-26', 9695, 105670, 6462, 58556, '1.0000', '5.7386', '5.7386', '8.0000', '8.0000', '47.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112065, '2022-08-26', 7745, 105671, 6463, NULL, '1.0000', '6.7000', '6.7000', '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 (112066, '2022-08-26', 7565, 105672, 6464, NULL, '1.0000', '0.2000', '0.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 (112067, '2022-08-26', 9092, 105673, 6464, 60813, '4.0000', '0.3167', '0.3167', '0.5000', '0.5000', '114.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112068, '2022-08-26', 7586, 105674, 6464, 57434, '1.0000', '6.5122', '6.5122', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112069, '2022-08-26', 7899, 105675, 6464, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112070, '2022-08-26', 9729, 105676, 6464, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112071, '2022-08-26', 7588, 105677, 6464, 61176, '1.0000', '8.3830', '8.3830', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112072, '2022-08-26', 7411, 105678, 6464, 61112, '1.0000', '1.4433', '1.4433', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112073, '2022-08-26', 7917, 105679, 6464, 61150, '4.0000', '1.4973', '1.4973', '0.7000', '0.7000', '96.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112074, '2022-08-26', 7904, 105680, 6464, NULL, '1.0000', '8.0000', '8.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 (112075, '2022-08-26', 2983, 105681, 6464, 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 (112076, '2022-08-26', 7899, 105682, 6464, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112077, '2022-08-26', 1339, 105683, 6464, 59327, '1.0000', '2.3147', '2.3147', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112078, '2022-08-26', 9865, 105684, 6464, 61131, '1.0000', '8.6334', '8.6334', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112079, '2022-08-26', 7675, 105685, 6464, NULL, '1.0000', '-21.9809', '-21.9809', '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 (112080, '2022-08-26', 1856, 105686, 6464, 60777, '1.0000', '1.2253', '1.2253', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112081, '2022-08-26', 1501, 105687, 6464, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '14.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112082, '2022-08-26', 7411, 105688, 6464, 61112, '2.0000', '1.4433', '1.4433', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112083, '2022-08-26', 7674, 105689, 6464, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112084, '2022-08-26', 9598, 105690, 6464, 56583, '1.0000', '4.2430', '4.2430', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112085, '2022-08-26', 7709, 105691, 6464, NULL, '2.0000', '644.1799', '644.1799', '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 (112086, '2022-08-26', 7526, 105692, 6464, NULL, '1.0000', '142.9950', '142.9950', '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 (112087, '2022-08-26', 7412, 105693, 6464, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112088, '2022-08-26', 8154, 105694, 6464, NULL, '1.0000', '12.3000', '12.3000', '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 (112089, '2022-08-26', 7554, 105695, 6464, 53774, '2.0000', '2.1763', '2.1763', '3.0000', '3.0000', '41.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112090, '2022-08-26', 9456, 105696, 6464, 54750, '1.0000', '3.4942', '3.4942', '5.0000', '5.0000', '25.0000', 1, 0, NULL, 466);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112091, '2022-08-26', 7709, 105697, 6464, NULL, '1.0000', '644.1799', '644.1799', '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 (112092, '2022-08-26', 7518, 105698, 6464, 61187, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112093, '2022-08-26', 9399, 105699, 6464, NULL, '1.0000', '0.9803', '0.9803', '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 (112094, '2022-08-26', 7585, 105700, 6464, 60502, '1.0000', '3.6407', '3.6407', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112095, '2022-08-26', 2315, 105701, 6464, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112096, '2022-08-26', 7675, 105702, 6464, NULL, '1.0000', '-21.9809', '-21.9809', '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 (112097, '2022-08-26', 8337, 105703, 6464, 60440, '1.0000', '17.8000', '17.8000', '23.5000', '23.5000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112098, '2022-08-26', 9734, 105704, 6464, 61149, '3.0000', '0.3629', '0.3629', '0.7000', '0.7000', '197.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112099, '2022-08-26', 8878, 105705, 6464, 61213, '2.0000', '0.6074', '0.6074', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112100, '2022-08-26', 7883, 105706, 6464, 60477, '1.0000', '33.8000', '33.8000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112101, '2022-08-26', 9762, 105707, 6464, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112102, '2022-08-26', 7411, 105708, 6464, 61112, '1.0000', '1.4433', '1.4433', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112103, '2022-08-26', 9092, 105709, 6464, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '115.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112104, '2022-08-26', 9269, 105710, 6464, 61155, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112105, '2022-08-26', 7674, 105711, 6464, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112106, '2022-08-27', 2948, 105712, 6465, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112107, '2022-08-27', 7318, 105713, 6465, 60226, '1.0000', '12.1931', '12.1931', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112108, '2022-08-27', 9736, 105714, 6465, NULL, '1.0000', '5.0278', '5.0278', '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 (112109, '2022-08-27', 1488, 105715, 6465, 55624, '1.0000', '4.2938', '4.2938', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112110, '2022-08-27', 1700, 105716, 6465, NULL, '1.0000', '1.0000', '1.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 (112111, '2022-08-27', 2916, 105717, 6465, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112112, '2022-08-27', 2352, 105718, 6465, NULL, '5.0000', '187.6811', '187.6811', '3.7000', '3.7000', '-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 (112113, '2022-08-27', 2263, 105719, 6465, NULL, '1.0000', '37.4800', '37.4800', '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 (112114, '2022-08-27', 8622, 105720, 6465, 60237, '3.0000', '1.4898', '1.4898', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112115, '2022-08-27', 9856, 105721, 6465, 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 (112116, '2022-08-27', 2169, 105722, 6465, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112117, '2022-08-27', 2921, 105723, 6465, NULL, '1.0000', '4.6300', '4.6300', '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 (112118, '2022-08-27', 2284, 105724, 6465, 55637, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112119, '2022-08-27', 1501, 105725, 6465, NULL, '1.0000', '0.3856', '0.3856', '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 (112120, '2022-08-27', 2277, 105726, 6465, NULL, '2.0000', '0.9399', '0.9399', '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 (112121, '2022-08-27', 9788, 105727, 6465, 54919, '2.0000', '1.5347', '1.5347', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112122, '2022-08-27', 2169, 105728, 6465, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112123, '2022-08-27', 1672, 105729, 6465, NULL, '10.0000', '4.1808', '4.1808', '5.5000', '5.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 (112124, '2022-08-27', 2270, 105730, 6465, 57702, '1.0000', '5.1875', '5.1875', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112125, '2022-08-27', 7612, 105731, 6465, NULL, '1.0000', '0.4900', '0.4900', '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 (112126, '2022-08-27', 2948, 105732, 6465, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112127, '2022-08-27', 9747, 105733, 6465, 59907, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112128, '2022-08-27', 2169, 105734, 6466, 10737, '-227.0000', '3.8397', '3.8397', '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 (112129, '2022-08-27', 2169, 105734, 6466, NULL, '228.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-228.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112130, '2022-08-27', 9750, 105735, 6466, NULL, '1.0000', '3.3000', '3.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 (112131, '2022-08-27', 1912, 105736, 6466, NULL, '2.0000', '0.3200', '0.3200', '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 (112132, '2022-08-27', 7411, 105737, 6466, NULL, '1.0000', '1.3500', '1.3500', '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 (112133, '2022-08-27', 9740, 105738, 6466, NULL, '1.0000', '0.6600', '0.6600', '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 (112134, '2022-08-27', 1670, 105739, 6466, 10163, '-22.0000', '19.5000', '19.5000', '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 (112135, '2022-08-27', 1670, 105739, 6466, NULL, '23.0000', '19.5000', '19.5000', '36.0000', '36.0000', '-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 (112136, '2022-08-27', 9822, 105740, 6466, NULL, '2.0000', '23.8000', '23.8000', '31.5000', '31.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 (112137, '2022-08-27', 8183, 105741, 6466, NULL, '1.0000', '81.9100', '81.9100', '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 (112138, '2022-08-27', 2105, 105742, 6466, NULL, '3.0000', '1.3500', '1.3500', '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 (112139, '2022-08-27', 1501, 105743, 6467, NULL, '1.0000', '0.3856', '0.3856', '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 (112140, '2022-08-27', 9207, 105744, 6467, NULL, '2.0000', '4.6000', '4.6000', '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 (112141, '2022-08-27', 7741, 105745, 6467, NULL, '1.0000', '-174.4114', '-174.4114', '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 (112142, '2022-08-27', 1501, 105746, 6467, NULL, '1.0000', '0.3856', '0.3856', '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 (112143, '2022-08-27', 2265, 105747, 6468, 2800, '-1.0000', '28.0000', '28.0000', '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 (112144, '2022-08-27', 2265, 105747, 6468, NULL, '3.0000', '28.0000', '28.0000', '43.0000', '43.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 (112145, '2022-08-27', 9750, 105748, 6468, NULL, '1.0000', '3.3000', '3.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 (112146, '2022-08-27', 2307, 105749, 6468, 2960, '-4.0000', '118.9901', '118.9901', '247.0000', '247.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112147, '2022-08-27', 2307, 105749, 6468, NULL, '5.0000', '118.9901', '118.9901', '247.0000', '247.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 (112148, '2022-08-27', 2263, 105750, 6468, 2799, '-5.0000', '6.5600', '6.5600', '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 (112149, '2022-08-27', 2263, 105750, 6468, NULL, '6.0000', '6.5600', '6.5600', '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 (112150, '2022-08-27', 7411, 105751, 6468, NULL, '1.0000', '1.3500', '1.3500', '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 (112151, '2022-08-27', 9999, 105752, 6468, NULL, '1.0000', '3.1000', '3.1000', '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 (112152, '2022-08-27', 7762, 105753, 6469, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112153, '2022-08-27', 8457, 105754, 6469, NULL, '1.0000', '-8.0516', '-8.0516', '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 (112154, '2022-08-27', 8596, 105755, 6469, NULL, '1.0000', '39.8982', '39.8982', '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 (112155, '2022-08-27', 7457, 105756, 6469, 60437, '1.0000', '4.9359', '4.9359', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112156, '2022-08-27', 8063, 105757, 6469, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '76.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112157, '2022-08-27', 9649, 105758, 6469, 61183, '1.0000', '16.0156', '16.0156', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112158, '2022-08-27', 7554, 105759, 6469, 53774, '10.0000', '2.1763', '2.1763', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112159, '2022-08-27', 8878, 105760, 6469, 61213, '1.0000', '0.6074', '0.6074', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112160, '2022-08-27', 2863, 105761, 6469, NULL, '25.0000', '0.2000', '0.2000', '0.3000', '0.3000', '-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 (112161, '2022-08-27', 7691, 105762, 6469, 60804, '1.0000', '13.5332', '13.5332', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112162, '2022-08-27', 7824, 105763, 6469, NULL, '1.0000', '7.7000', '7.7000', '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 (112163, '2022-08-27', 7674, 105764, 6469, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112164, '2022-08-27', 8154, 105765, 6469, NULL, '1.0000', '12.3000', '12.3000', '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 (112165, '2022-08-27', 9729, 105766, 6469, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112166, '2022-08-27', 2104, 105767, 6469, NULL, '1.0000', '0.2000', '0.2000', '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 (112167, '2022-08-27', 7672, 105768, 6469, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112168, '2022-08-27', 8011, 105769, 6469, 56044, '1.0000', '7.5500', '7.5500', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112169, '2022-08-27', 8011, 105769, 6469, NULL, '1.0000', '7.5500', '7.5500', '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 (112170, '2022-08-27', 7401, 105770, 6469, 60408, '1.0000', '74.3000', '74.3000', '98.5000', '98.5000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112171, '2022-08-27', 7401, 105770, 6469, NULL, '1.0000', '74.3000', '74.3000', '98.5000', '98.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112172, '2022-08-27', 9691, 105771, 6469, 60789, '2.0000', '56.7272', '56.7272', '82.0000', '82.0000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112173, '2022-08-27', 7591, 105772, 6469, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112174, '2022-08-27', 8547, 105773, 6469, 56550, '1.0000', '2.5128', '2.5128', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112175, '2022-08-27', 8965, 105774, 6469, NULL, '1.0000', '-263.2470', '-263.2470', '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 (112176, '2022-08-27', 7684, 105775, 6469, NULL, '12.0000', '9.0000', '9.0000', '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 (112177, '2022-08-27', 8074, 105776, 6469, 61215, '2.0000', '24.9966', '24.9966', '34.5000', '34.5000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112178, '2022-08-27', 2315, 105777, 6469, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112179, '2022-08-27', 7368, 105778, 6469, 60776, '1.0000', '8.3638', '8.3638', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112180, '2022-08-27', 7380, 105779, 6469, 60818, '1.0000', '12.4986', '12.4986', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112181, '2022-08-27', 2289, 105780, 6469, NULL, '4.0000', '2.5688', '2.5688', '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 (112182, '2022-08-27', 7453, 105781, 6469, 60420, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112183, '2022-08-27', 1841, 105782, 6469, 61154, '9.0000', '0.2808', '0.2808', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112184, '2022-08-27', 9891, 105783, 6469, 55109, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112185, '2022-08-27', 9649, 105784, 6469, 61183, '1.0000', '16.0156', '16.0156', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112186, '2022-08-27', 7392, 105785, 6469, 50637, '1.0000', '3.6419', '3.6419', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112187, '2022-08-27', 7917, 105786, 6469, 61150, '2.0000', '1.4973', '1.4973', '0.7000', '0.7000', '94.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112188, '2022-08-27', 8101, 105787, 6469, NULL, '1.0000', '2.1159', '2.1159', '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 (112189, '2022-08-27', 7788, 105788, 6469, 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 (112190, '2022-08-27', 7562, 105789, 6469, 60773, '1.0000', '6.7445', '6.7445', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112191, '2022-08-27', 7645, 105790, 6469, NULL, '1.0000', '166.0200', '166.0200', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112192, '2022-08-27', 3009, 105791, 6470, NULL, '2.0000', '22.0000', '22.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 (112193, '2022-08-27', 1637, 105792, 6470, 3210, '-15.0000', '10.2000', '10.2000', '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 (112194, '2022-08-27', 1637, 105792, 6470, NULL, '16.0000', '10.2000', '10.2000', '20.0000', '20.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 (112195, '2022-08-27', 1533, 105793, 6470, 10381, '-37.0000', '2.5917', '2.5917', '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 (112196, '2022-08-27', 1533, 105793, 6470, NULL, '38.0000', '2.5917', '2.5917', '6.5000', '6.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112197, '2022-08-27', 1822, 105794, 6470, 8225, '-237.0000', '2.4000', '2.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 (112198, '2022-08-27', 1822, 105794, 6470, NULL, '238.0000', '2.4000', '2.4000', '4.0000', '4.0000', '-238.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112199, '2022-08-27', 2256, 105795, 6470, 2793, '-10.0000', '12.7400', '12.7400', '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 (112200, '2022-08-27', 2256, 105795, 6470, NULL, '11.0000', '12.7400', '12.7400', '22.0000', '22.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 (112201, '2022-08-27', 9219, 105796, 6470, NULL, '1.0000', '6.3000', '6.3000', '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 (112202, '2022-08-27', 2655, 105797, 6470, 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 (112203, '2022-08-27', 2656, 105798, 6470, NULL, '1.0000', '1.5000', '1.5000', '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 (112204, '2022-08-27', 2297, 105799, 6470, 2956, '-13.0000', '6.6000', '6.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 (112205, '2022-08-27', 2297, 105799, 6470, NULL, '14.0000', '6.6000', '6.6000', '12.0000', '12.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 (112206, '2022-08-27', 9940, 105800, 6470, 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 (112207, '2022-08-27', 9697, 105801, 6470, NULL, '3.0000', '13.0000', '13.0000', '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 (112208, '2022-08-27', 1667, 105802, 6470, 9745, '-65.0000', '5.9400', '5.9400', '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 (112209, '2022-08-27', 1667, 105802, 6470, NULL, '66.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112210, '2022-08-27', 1628, 105803, 6470, 18856, '1.0000', '6.4000', '6.4000', '9.5000', '9.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 (112211, '2022-08-27', 2353, 105804, 6470, 3856, '-3.0000', '4.4500', '4.4500', '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 (112212, '2022-08-27', 2353, 105804, 6470, NULL, '4.0000', '4.4500', '4.4500', '9.0000', '9.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 (112213, '2022-08-27', 2858, 105805, 6470, 17772, '-128.0000', '1.0000', '1.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 (112214, '2022-08-27', 2858, 105805, 6470, NULL, '129.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-129.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112215, '2022-08-27', 7954, 105806, 6470, 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 (112216, '2022-08-27', 9740, 105807, 6470, NULL, '1.0000', '0.6600', '0.6600', '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 (112217, '2022-08-27', 2730, 105808, 6470, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '18.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 (112218, '2022-08-27', 9829, 105809, 6470, 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 (112219, '2022-08-27', 2363, 105810, 6470, 3866, '-13.0000', '6.8800', '6.8800', '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 (112220, '2022-08-27', 2363, 105810, 6470, NULL, '14.0000', '6.8800', '6.8800', '12.0000', '12.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 (112221, '2022-08-27', 2699, 105811, 6470, 12529, '-50.0000', '3.0000', '3.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 (112222, '2022-08-27', 2699, 105811, 6470, NULL, '51.0000', '3.0000', '3.0000', '6.0000', '6.0000', '-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 (112223, '2022-08-27', 7745, 105812, 6471, NULL, '1.0000', '6.7000', '6.7000', '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 (112224, '2022-08-27', 2135, 105813, 6471, 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 (112225, '2022-08-27', 1428, 105814, 6472, 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 (112226, '2022-08-27', 9734, 105815, 6472, NULL, '1.0000', '0.4261', '0.4261', '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 (112227, '2022-08-27', 2169, 105816, 6472, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112228, '2022-08-27', 9902, 105817, 6472, 59883, '1.0000', '7.9671', '7.9671', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112229, '2022-08-27', 7708, 105818, 6472, NULL, '1.0000', '6.3400', '6.3400', '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 (112230, '2022-08-27', 1761, 105819, 6472, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112231, '2022-08-27', 8677, 105820, 6472, NULL, '2.0000', '1026.1382', '1026.1382', '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 (112232, '2022-08-27', 2283, 105821, 6472, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112233, '2022-08-27', 1904, 105822, 6472, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112234, '2022-08-27', 2109, 105823, 6472, NULL, '1.0000', '0.0413', '0.0413', '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 (112235, '2022-08-27', 1557, 105824, 6472, NULL, '1.0000', '8.2500', '8.2500', '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 (112236, '2022-08-27', 9735, 105825, 6472, 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 (112237, '2022-08-27', 1945, 105826, 6472, 60264, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112238, '2022-08-27', 1689, 105827, 6472, 59873, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112239, '2022-08-27', 1711, 105828, 6472, 60240, '1.0000', '10.7231', '10.7231', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112240, '2022-08-27', 1665, 105829, 6472, 60262, '3.0000', '1.3274', '1.3274', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112241, '2022-08-27', 1812, 105830, 6472, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112242, '2022-08-27', 1479, 105831, 6472, 59903, '1.0000', '50.0000', '50.0000', '68.0000', '68.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112243, '2022-08-27', 2109, 105832, 6472, NULL, '1.0000', '0.0413', '0.0413', '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 (112244, '2022-08-27', 8017, 105833, 6472, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112245, '2022-08-27', 9734, 105834, 6472, NULL, '3.0000', '0.4261', '0.4261', '0.7000', '0.7000', '-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 (112246, '2022-08-27', 7473, 105835, 6472, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '26.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112247, '2022-08-27', 2379, 105836, 6472, NULL, '1.0000', '-14.1447', '-14.1447', '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 (112248, '2022-08-27', 2908, 105837, 6472, 55931, '1.0000', '0.3518', '0.3518', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112249, '2022-08-27', 7713, 105838, 6472, 59895, '1.0000', '0.1598', '0.1598', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112250, '2022-08-27', 1612, 105839, 6472, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112251, '2022-08-27', 2327, 105840, 6472, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112252, '2022-08-27', 1425, 105841, 6472, NULL, '1.0000', '324.2732', '324.2732', '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 (112253, '2022-08-27', 7745, 105842, 6472, 58190, '1.0000', '6.7000', '6.7000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112254, '2022-08-27', 8187, 105843, 6472, NULL, '5.0000', '14.3900', '14.3900', '1.5000', '1.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 (112255, '2022-08-27', 2302, 105844, 6472, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112256, '2022-08-27', 1383, 105845, 6472, 60314, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112257, '2022-08-27', 2379, 105846, 6472, NULL, '1.0000', '-14.1447', '-14.1447', '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 (112258, '2022-08-27', 7483, 105847, 6472, NULL, '1.0000', '0.4200', '0.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 (112259, '2022-08-27', 1787, 105848, 6472, NULL, '1.0000', '0.5000', '0.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 (112260, '2022-08-27', 8183, 105849, 6472, NULL, '1.0000', '2774.2425', '2774.2425', '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 (112261, '2022-08-27', 8223, 105850, 6472, NULL, '1.0000', '1.5000', '1.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 (112262, '2022-08-27', 2109, 105851, 6472, NULL, '2.0000', '0.0413', '0.0413', '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 (112263, '2022-08-27', 7641, 105852, 6472, NULL, '1.0000', '1.9000', '1.9000', '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 (112264, '2022-08-27', 1904, 105853, 6472, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112265, '2022-08-27', 1609, 105854, 6472, 57780, '1.0000', '33.7500', '33.7500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112266, '2022-08-27', 1646, 105855, 6472, 60270, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112267, '2022-08-27', 1912, 105856, 6472, NULL, '1.0000', '0.6868', '0.6868', '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 (112268, '2022-08-27', 1912, 105857, 6472, NULL, '1.0000', '0.6868', '0.6868', '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 (112269, '2022-08-27', 1904, 105858, 6472, 60310, '2.0000', '2.3094', '2.3094', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112270, '2022-08-27', 1521, 105859, 6472, NULL, '1.0000', '-770.4750', '-770.4750', '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 (112271, '2022-08-27', 7641, 105860, 6472, NULL, '1.0000', '1.9000', '1.9000', '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 (112272, '2022-08-27', 8740, 105861, 6472, 54070, '2.0000', '2.0000', '2.0000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112273, '2022-08-27', 2445, 105862, 6472, 22547, '4.0000', '3.2000', '3.2000', '5.5000', '5.5000', '0.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 (112274, '2022-08-27', 9738, 105863, 6472, 59860, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112275, '2022-08-27', 2379, 105864, 6472, NULL, '1.0000', '-14.1447', '-14.1447', '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 (112276, '2022-08-27', 9891, 105865, 6472, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112277, '2022-08-27', 7324, 105866, 6472, NULL, '1.0000', '5.4813', '5.4813', '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 (112278, '2022-08-27', 2642, 105867, 6472, 60939, '1.0000', '9.6487', '9.6487', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112279, '2022-08-27', 2582, 105868, 6472, NULL, '1.0000', '16.7500', '16.7500', '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 (112280, '2022-08-27', 9945, 105869, 6472, NULL, '1.0000', '12.1000', '12.1000', '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 (112281, '2022-08-27', 9942, 105870, 6472, NULL, '1.0000', '13.1000', '13.1000', '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 (112282, '2022-08-27', 1825, 105871, 6472, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112283, '2022-08-27', 1855, 105872, 6472, NULL, '1.0000', '1.4615', '1.4615', '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 (112284, '2022-08-27', 2085, 105873, 6472, 60337, '12.0000', '1.4119', '1.4119', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112285, '2022-08-27', 7514, 105874, 6472, NULL, '1.0000', '2.2500', '2.2500', '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 (112286, '2022-08-27', 1529, 105875, 6472, 48650, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112287, '2022-08-27', 2068, 105876, 6472, NULL, '1.0000', '14.6943', '14.6943', '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 (112288, '2022-08-27', 1767, 105877, 6472, 13767, '1.0000', '5.3188', '5.3188', '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 (112289, '2022-08-27', 3045, 105878, 6472, NULL, '1.0000', '4.0533', '4.0533', '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 (112290, '2022-08-27', 9747, 105879, 6472, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112291, '2022-08-27', 2475, 105880, 6472, NULL, '1.0000', '8.3094', '8.3094', '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 (112292, '2022-08-27', 2036, 105881, 6472, 59684, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112293, '2022-08-27', 9330, 105882, 6472, 59838, '1.0000', '9.5500', '9.5500', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112294, '2022-08-27', 8085, 105883, 6472, NULL, '4.0000', '14.0000', '14.0000', '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 (112295, '2022-08-27', 7316, 105884, 6472, 54885, '10.0000', '0.9020', '0.9020', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112296, '2022-08-27', 1744, 105885, 6472, NULL, '1.0000', '138.0750', '138.0750', '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 (112297, '2022-08-27', 8774, 105886, 6472, 58065, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112298, '2022-08-27', 2416, 105887, 6472, 60955, '1.0000', '1.3670', '1.3670', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112299, '2022-08-27', 7585, 105888, 6472, NULL, '1.0000', '3.9600', '3.9600', '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 (112300, '2022-08-27', 9683, 105889, 6472, 60946, '1.0000', '1.5604', '1.5604', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112301, '2022-08-27', 7514, 105890, 6472, NULL, '1.0000', '2.2500', '2.2500', '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 (112302, '2022-08-27', 2315, 105891, 6472, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112303, '2022-08-27', 1855, 105892, 6472, NULL, '1.0000', '1.4615', '1.4615', '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 (112304, '2022-08-27', 8878, 105893, 6472, NULL, '2.0000', '6.0509', '6.0509', '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 (112305, '2022-08-27', 2275, 105894, 6473, 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 (112306, '2022-08-27', 7324, 105895, 6473, NULL, '2.0000', '5.4813', '5.4813', '8.5000', '8.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 (112307, '2022-08-27', 9725, 105896, 6473, 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 (112308, '2022-08-27', 2109, 105897, 6473, NULL, '1.0000', '0.0413', '0.0413', '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 (112309, '2022-08-27', 2302, 105898, 6473, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112310, '2022-08-27', 8878, 105899, 6473, NULL, '2.0000', '6.0509', '6.0509', '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 (112311, '2022-08-27', 1839, 105900, 6473, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (112312, '2022-08-27', 7482, 105901, 6473, NULL, '1.0000', '2.5019', '2.5019', '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 (112313, '2022-08-27', 1590, 105902, 6473, 49903, '3.0000', '2.2860', '2.2860', '3.5000', '3.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 (112314, '2022-08-27', 1912, 105903, 6473, NULL, '2.0000', '0.6868', '0.6868', '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 (112315, '2022-08-27', 1427, 105904, 6473, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112316, '2022-08-27', 7743, 105905, 6473, NULL, '1.0000', '7.3900', '7.3900', '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 (112317, '2022-08-27', 2754, 105906, 6473, NULL, '1.0000', '0.0800', '0.0800', '0.2000', '0.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 (112318, '2022-08-27', 9819, 105907, 6473, 55560, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112319, '2022-08-27', 9819, 105907, 6473, 51693, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112320, '2022-08-27', 7639, 105908, 6473, 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 (112321, '2022-08-27', 2108, 105909, 6473, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112322, '2022-08-27', 8208, 105910, 6473, NULL, '2.0000', '47.9541', '47.9541', '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 (112323, '2022-08-27', 2699, 105911, 6473, 61331, '1.0000', '4.2842', '4.2842', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112324, '2022-08-27', 1342, 105912, 6473, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112325, '2022-08-27', 8878, 105913, 6473, NULL, '1.0000', '6.0509', '6.0509', '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 (112326, '2022-08-27', 8622, 105914, 6473, 60237, '1.0000', '1.4898', '1.4898', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112327, '2022-08-27', 8208, 105915, 6473, NULL, '4.0000', '47.9541', '47.9541', '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 (112328, '2022-08-27', 2068, 105916, 6473, NULL, '1.0000', '14.6943', '14.6943', '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 (112329, '2022-08-27', 2916, 105917, 6473, 60332, '1.0000', '-7436.2444', '-7436.2444', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112330, '2022-08-27', 8068, 105918, 6473, NULL, '1.0000', '8.7900', '8.7900', '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 (112331, '2022-08-27', 2109, 105919, 6473, NULL, '1.0000', '0.0413', '0.0413', '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 (112332, '2022-08-27', 1812, 105920, 6473, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112333, '2022-08-27', 2315, 105921, 6473, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112334, '2022-08-27', 7411, 105922, 6473, NULL, '1.0000', '1.2819', '1.2819', '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 (112335, '2022-08-27', 2327, 105923, 6473, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112336, '2022-08-27', 9788, 105924, 6473, 54919, '5.0000', '1.5347', '1.5347', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112337, '2022-08-27', 2642, 105925, 6473, 61312, '1.0000', '9.0695', '9.0695', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112338, '2022-08-27', 1578, 105926, 6473, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112339, '2022-08-27', 9734, 105927, 6473, NULL, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112340, '2022-08-27', 8746, 105928, 6473, 61266, '1.0000', '2.8100', '2.8100', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112341, '2022-08-27', 1812, 105929, 6473, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112342, '2022-08-27', 1578, 105930, 6473, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112343, '2022-08-27', 8017, 105931, 6473, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112344, '2022-08-27', 7473, 105932, 6473, 39817, '1.0000', '0.1679', '0.1679', '0.7000', '0.7000', '25.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112345, '2022-08-27', 8017, 105933, 6473, 59863, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112346, '2022-08-27', 7411, 105934, 6473, NULL, '1.0000', '1.2819', '1.2819', '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 (112347, '2022-08-27', 7641, 105935, 6473, NULL, '1.0000', '1.9000', '1.9000', '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 (112348, '2022-08-27', 1746, 105936, 6473, 60329, '1.0000', '4.8553', '4.8553', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112349, '2022-08-27', 1369, 105937, 6473, 55569, '3.0000', '7.2000', '7.2000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112350, '2022-08-27', 1369, 105937, 6473, 19356, '1.0000', '7.2000', '7.2000', '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 (112351, '2022-08-27', 1562, 105938, 6473, NULL, '1.0000', '5.7883', '5.7883', '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 (112352, '2022-08-27', 7743, 105939, 6473, NULL, '1.0000', '7.3900', '7.3900', '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 (112353, '2022-08-27', 9737, 105940, 6473, NULL, '1.0000', '7.9000', '7.9000', '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 (112354, '2022-08-27', 1761, 105941, 6473, 60290, '3.0000', '2.2177', '2.2177', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112355, '2022-08-27', 1855, 105942, 6473, NULL, '1.0000', '1.4615', '1.4615', '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 (112356, '2022-08-27', 8878, 105943, 6473, NULL, '1.0000', '6.0509', '6.0509', '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 (112357, '2022-08-27', 9960, 105944, 6473, NULL, '2.0000', '3.3000', '3.3000', '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 (112358, '2022-08-27', 9894, 105945, 6473, 55584, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112359, '2022-08-27', 2109, 105946, 6473, NULL, '2.0000', '0.0413', '0.0413', '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 (112360, '2022-08-27', 2302, 105947, 6473, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '27.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112361, '2022-08-27', 9726, 105948, 6473, 55719, '1.0000', '5.1598', '5.1598', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112362, '2022-08-27', 7650, 105949, 6473, NULL, '1.0000', '0.8900', '0.8900', '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 (112363, '2022-08-27', 1644, 105950, 6473, 60241, '1.0000', '40.0000', '40.0000', '53.0000', '53.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112364, '2022-08-27', 7639, 105951, 6473, 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 (112365, '2022-08-27', 1759, 105952, 6473, 23110, '1.0000', '11.5000', '11.5000', '18.0000', '18.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 (112366, '2022-08-27', 2656, 105953, 6473, 61332, '1.0000', '2.0372', '2.0372', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112367, '2022-08-27', 7473, 105954, 6474, 61174, '3.0000', '0.5367', '0.5367', '0.7000', '0.7000', '72.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112368, '2022-08-27', 7674, 105955, 6474, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112369, '2022-08-27', 1837, 105956, 6474, NULL, '1.0000', '0.5600', '0.5600', '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 (112370, '2022-08-27', 7886, 105957, 6474, 60384, '1.0000', '4.5754', '4.5754', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112371, '2022-08-27', 1501, 105958, 6474, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112372, '2022-08-27', 7682, 105959, 6474, 60099, '1.0000', '7.5976', '7.5976', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112373, '2022-08-27', 8135, 105960, 6474, 61121, '1.0000', '6.8609', '6.8609', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112374, '2022-08-27', 9271, 105961, 6474, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112375, '2022-08-27', 9762, 105962, 6474, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112376, '2022-08-27', 7730, 105963, 6474, 60195, '10.0000', '0.0723', '0.0723', '0.2000', '0.2000', '102.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112377, '2022-08-27', 8969, 105964, 6474, NULL, '1.0000', '2.0000', '2.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 (112378, '2022-08-27', 8077, 105965, 6474, NULL, '3.0000', '4.9986', '4.9986', '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 (112379, '2022-08-27', 7585, 105966, 6474, 60502, '2.0000', '3.6407', '3.6407', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112380, '2022-08-27', 7917, 105967, 6474, 61150, '2.0000', '1.4973', '1.4973', '0.7000', '0.7000', '92.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112381, '2022-08-27', 7672, 105968, 6474, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112382, '2022-08-27', 7593, 105969, 6474, 60160, '1.0000', '3.0249', '3.0249', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112383, '2022-08-27', 9204, 105970, 6474, 60135, '1.0000', '6.0556', '6.0556', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112384, '2022-08-27', 7674, 105971, 6474, 61113, '2.0000', '53.8855', '53.8855', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112385, '2022-08-27', 7690, 105972, 6474, NULL, '1.0000', '17.7730', '17.7730', '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 (112386, '2022-08-27', 7558, 105973, 6474, NULL, '2.0000', '-19.8908', '-19.8908', '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 (112387, '2022-08-27', 7412, 105974, 6474, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112388, '2022-08-27', 7779, 105975, 6474, 57644, '1.0000', '10.1250', '10.1250', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112389, '2022-08-27', 9271, 105976, 6474, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112390, '2022-08-27', 9272, 105977, 6474, NULL, '1.0000', '3.1000', '3.1000', '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 (112391, '2022-08-27', 2088, 105978, 6475, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '39.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 (112392, '2022-08-27', 2135, 105979, 6475, 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 (112393, '2022-08-27', 1368, 105980, 6475, 268, '1.0000', '-55.5295', '-55.5295', '9.0000', '9.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 (112394, '2022-08-27', 1531, 105981, 6475, 22267, '2.0000', '0.9600', '0.9600', '2.0000', '2.0000', '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 (112395, '2022-08-27', 9463, 105982, 6475, NULL, '1.0000', '7.5000', '7.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 (112396, '2022-08-27', 1326, 105983, 6475, NULL, '1.0000', '2.7762', '2.7762', '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 (112397, '2022-08-27', 1840, 105984, 6475, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (112398, '2022-08-27', 1841, 105985, 6475, NULL, '2.0000', '142.5780', '142.5780', '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 (112399, '2022-08-27', 2289, 105986, 6475, 2949, '-255.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 (112400, '2022-08-27', 2289, 105986, 6475, NULL, '257.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-257.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112401, '2022-08-27', 8208, 105987, 6475, NULL, '2.0000', '33.0000', '33.0000', '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 (112402, '2022-08-27', 1368, 105988, 6476, 268, '1.0000', '-55.5295', '-55.5295', '9.0000', '9.0000', '0.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 (112403, '2022-08-27', 2109, 105989, 6476, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '51.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 (112404, '2022-08-27', 8680, 105990, 6477, NULL, '1.0000', '2.0000', '2.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 (112405, '2022-08-27', 8067, 105991, 6477, 61206, '1.0000', '5.0245', '5.0245', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112406, '2022-08-27', 7546, 105992, 6477, 46941, '2.0000', '10.4029', '10.4029', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112407, '2022-08-27', 7954, 105993, 6477, NULL, '1.0000', '7039.4904', '7039.4904', '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 (112408, '2022-08-27', 7641, 105994, 6477, 61190, '1.0000', '7.3618', '7.3618', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112409, '2022-08-27', 8362, 105995, 6477, 57624, '3.0000', '-8.2315', '-8.2315', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112410, '2022-08-27', 7324, 105996, 6477, 60112, '2.0000', '6.3200', '6.3200', '8.5000', '8.5000', '12.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112411, '2022-08-27', 8680, 105997, 6477, NULL, '1.0000', '2.0000', '2.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 (112412, '2022-08-27', 8444, 105998, 6477, 55973, '1.0000', '-37.8763', '-37.8763', '3.0000', '3.0000', '87.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112413, '2022-08-27', 2965, 105999, 6477, 57515, '3.0000', '-1.0413', '-1.0413', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112414, '2022-08-27', 7852, 106000, 6477, NULL, '1.0000', '3.8153', '3.8153', '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 (112415, '2022-08-27', 8203, 106001, 6477, 57407, '3.0000', '2.0908', '2.0908', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112416, '2022-08-27', 8167, 106002, 6477, 56519, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112417, '2022-08-27', 1665, 106003, 6478, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112418, '2022-08-27', 1925, 106004, 6478, NULL, '5.0000', '1.4444', '1.4444', '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 (112419, '2022-08-27', 1812, 106005, 6478, 60326, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112420, '2022-08-27', 1812, 106005, 6478, 59911, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112421, '2022-08-27', 8775, 106006, 6478, 61327, '1.0000', '2.8853', '2.8853', '7.0000', '7.0000', '11.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112422, '2022-08-27', 7459, 106007, 6478, NULL, '7.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (112423, '2022-08-27', 8771, 106008, 6478, 61326, '1.0000', '7.0110', '7.0110', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112424, '2022-08-27', 7886, 106009, 6478, NULL, '1.0000', '14.5000', '14.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 (112425, '2022-08-27', 9813, 106010, 6478, 58274, '2.0000', '1.4900', '1.4900', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112426, '2022-08-27', 7398, 106011, 6478, NULL, '3.0000', '143.5000', '143.5000', '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 (112427, '2022-08-27', 7322, 106012, 6479, NULL, '1.0000', '4.3600', '4.3600', '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 (112428, '2022-08-27', 2259, 106013, 6479, 60084, '1.0000', '22.1021', '22.1021', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112429, '2022-08-28', 9956, 106014, 6480, 60246, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112430, '2022-08-28', 2738, 106015, 6480, 60282, '1.0000', '9.3067', '9.3067', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112431, '2022-08-28', 9821, 106016, 6480, 57690, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112432, '2022-08-28', 2109, 106017, 6480, NULL, '1.0000', '0.0413', '0.0413', '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 (112433, '2022-08-28', 8750, 106018, 6480, NULL, '1.0000', '2.6600', '2.6600', '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 (112434, '2022-08-28', 2302, 106019, 6480, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112435, '2022-08-28', 2379, 106020, 6480, NULL, '1.0000', '-14.1447', '-14.1447', '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 (112436, '2022-08-28', 1837, 106021, 6480, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112437, '2022-08-28', 1871, 106022, 6480, NULL, '3.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (112438, '2022-08-28', 2473, 106023, 6480, 59675, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112439, '2022-08-28', 3058, 106024, 6480, NULL, '1.0000', '-47.3000', '-47.3000', '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 (112440, '2022-08-28', 1863, 106025, 6480, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112441, '2022-08-28', 7459, 106026, 6480, NULL, '10.0000', '-15.3118', '-15.3118', '4.0000', '4.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 (112442, '2022-08-28', 1602, 106027, 6480, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112443, '2022-08-28', 9857, 106028, 6480, 57121, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112444, '2022-08-28', 2295, 106029, 6480, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112445, '2022-08-28', 9736, 106030, 6480, NULL, '1.0000', '5.0278', '5.0278', '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 (112446, '2022-08-28', 1337, 106031, 6480, 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 (112447, '2022-08-28', 1863, 106032, 6480, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112448, '2022-08-28', 2656, 106033, 6480, 61332, '1.0000', '2.0372', '2.0372', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112449, '2022-08-28', 1863, 106034, 6480, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112450, '2022-08-28', 8017, 106035, 6480, 59863, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112451, '2022-08-28', 9747, 106036, 6480, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112452, '2022-08-28', 8878, 106037, 6480, NULL, '1.0000', '6.0509', '6.0509', '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 (112453, '2022-08-28', 8878, 106038, 6480, NULL, '1.0000', '6.0509', '6.0509', '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 (112454, '2022-08-28', 1338, 106039, 6480, 58153, '1.0000', '4.5271', '4.5271', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112455, '2022-08-28', 9482, 106040, 6480, NULL, '2.0000', '0.5000', '0.5000', '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 (112456, '2022-08-28', 8254, 106041, 6480, NULL, '1.0000', '27.2800', '27.2800', '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 (112457, '2022-08-28', 9763, 106042, 6480, 54519, '2.0000', '2.3080', '2.3080', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112458, '2022-08-28', 1505, 106043, 6480, 60303, '1.0000', '107.0915', '107.0915', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112459, '2022-08-28', 9763, 106044, 6480, 54519, '3.0000', '2.3080', '2.3080', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112460, '2022-08-28', 9840, 106045, 6480, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112461, '2022-08-28', 1744, 106046, 6480, NULL, '1.0000', '138.0750', '138.0750', '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 (112462, '2022-08-28', 9245, 106047, 6481, 59359, '1.0000', '6.8253', '6.8253', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112463, '2022-08-28', 8053, 106048, 6481, 61118, '3.0000', '0.9892', '0.9892', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112464, '2022-08-28', 8596, 106049, 6481, NULL, '1.0000', '39.8982', '39.8982', '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 (112465, '2022-08-28', 7657, 106050, 6481, 61123, '1.0000', '14.8844', '14.8844', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112466, '2022-08-28', 7641, 106051, 6481, 61190, '1.0000', '7.3618', '7.3618', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112467, '2022-08-28', 7411, 106052, 6481, 61112, '1.0000', '1.4433', '1.4433', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112468, '2022-08-28', 7379, 106053, 6481, 60431, '1.0000', '8.9427', '8.9427', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112469, '2022-08-28', 2287, 106054, 6481, 59355, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112470, '2022-08-28', 7824, 106055, 6481, NULL, '1.0000', '7.7000', '7.7000', '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 (112471, '2022-08-28', 7412, 106056, 6481, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112472, '2022-08-28', 7819, 106057, 6481, 60394, '1.0000', '12.8331', '12.8331', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112473, '2022-08-28', 1935, 106058, 6481, 61208, '1.0000', '0.0058', '0.0058', '2.0000', '2.0000', '106.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112474, '2022-08-28', 7666, 106059, 6481, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112475, '2022-08-28', 2315, 106060, 6481, 60392, '8.0000', '0.7626', '0.7626', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112476, '2022-08-28', 8203, 106061, 6481, 57407, '4.0000', '2.0908', '2.0908', '0.7000', '0.7000', '18.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112477, '2022-08-28', 2486, 106062, 6481, 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 (112478, '2022-08-28', 7447, 106063, 6481, NULL, '5.0000', '22.2074', '22.2074', '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 (112479, '2022-08-28', 7382, 106064, 6481, 60787, '1.0000', '8.1794', '8.1794', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112480, '2022-08-28', 7952, 106065, 6481, 59139, '1.0000', '6.8635', '6.8635', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112481, '2022-08-28', 2088, 106066, 6482, 59892, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112482, '2022-08-28', 9763, 106067, 6482, 54519, '2.0000', '2.3080', '2.3080', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112483, '2022-08-28', 9763, 106067, 6482, 51336, '1.0000', '2.3080', '2.3080', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112484, '2022-08-28', 2821, 106068, 6482, NULL, '1.0000', '3.4037', '3.4037', '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 (112485, '2022-08-28', 2293, 106069, 6482, NULL, '3.0000', '-17.4320', '-17.4320', '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 (112486, '2022-08-28', 9763, 106070, 6482, 54519, '2.0000', '2.3080', '2.3080', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112487, '2022-08-28', 9840, 106071, 6482, 51249, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112488, '2022-08-28', 1499, 106072, 6482, 49347, '1.0000', '0.4542', '0.4542', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112489, '2022-08-28', 2242, 106073, 6482, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112490, '2022-08-28', 7802, 106074, 6482, NULL, '3.0000', '1.1497', '1.1497', '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 (112491, '2022-08-28', 7316, 106075, 6482, 54885, '4.0000', '0.9020', '0.9020', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112492, '2022-08-28', 7316, 106075, 6482, 51382, '1.0000', '0.9020', '0.9020', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112493, '2022-08-28', 8254, 106076, 6482, NULL, '1.0000', '27.2800', '27.2800', '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 (112494, '2022-08-28', 1339, 106077, 6482, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112495, '2022-08-28', 2169, 106078, 6482, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112496, '2022-08-28', 1665, 106079, 6482, 60262, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112497, '2022-08-28', 1665, 106079, 6482, 59912, '1.0000', '1.3274', '1.3274', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112498, '2022-08-28', 1863, 106080, 6482, 60323, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112499, '2022-08-28', 9734, 106081, 6482, NULL, '2.0000', '0.4261', '0.4261', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112500, '2022-08-28', 9482, 106082, 6482, 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 (112501, '2022-08-28', 2315, 106083, 6482, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112502, '2022-08-28', 9695, 106084, 6482, 61333, '1.0000', '5.5357', '5.5357', '8.0000', '8.0000', '59.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112503, '2022-08-28', 1578, 106085, 6482, 52355, '1.0000', '2.5599', '2.5599', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112504, '2022-08-28', 2068, 106086, 6482, NULL, '1.0000', '14.6943', '14.6943', '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 (112505, '2022-08-28', 1746, 106087, 6482, 60329, '1.0000', '4.8553', '4.8553', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112506, '2022-08-28', 2302, 106088, 6482, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112507, '2022-08-28', 1674, 106089, 6482, NULL, '1.0000', '0.8028', '0.8028', '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 (112508, '2022-08-28', 7431, 106090, 6483, 53500, '1.0000', '-21.4007', '-21.4007', '33.0000', '33.0000', '7.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112509, '2022-08-28', 9633, 106091, 6483, 61145, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112510, '2022-08-28', 9272, 106092, 6483, NULL, '1.0000', '3.1000', '3.1000', '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 (112511, '2022-08-28', 8133, 106093, 6483, NULL, '1.0000', '10.2727', '10.2727', '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 (112512, '2022-08-28', 1501, 106094, 6483, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112513, '2022-08-28', 7781, 106095, 6483, NULL, '3.0000', '9.6314', '9.6314', '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 (112514, '2022-08-28', 2315, 106096, 6483, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112515, '2022-08-28', 7848, 106097, 6483, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (112516, '2022-08-28', 7606, 106098, 6484, NULL, '1.0000', '4.8600', '4.8600', '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 (112517, '2022-08-28', 7457, 106099, 6484, 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 (112518, '2022-08-28', 8186, 106100, 6484, NULL, '2.0000', '1.0800', '1.0800', '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 (112519, '2022-08-28', 9729, 106101, 6484, NULL, '1.0000', '0.6200', '0.6200', '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 (112520, '2022-08-28', 8918, 106102, 6484, NULL, '2.0000', '1.0400', '1.0400', '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 (112521, '2022-08-28', 8596, 106103, 6484, 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 (112522, '2022-08-28', 7675, 106104, 6484, NULL, '1.0000', '11.4300', '11.4300', '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 (112523, '2022-08-28', 8557, 106105, 6484, 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 (112524, '2022-08-28', 8966, 106106, 6484, NULL, '1.0000', '6.8500', '6.8500', '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 (112525, '2022-08-28', 7518, 106107, 6484, NULL, '1.0000', '7.8200', '7.8200', '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 (112526, '2022-08-28', 7444, 106108, 6484, 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 (112527, '2022-08-28', 7781, 106109, 6484, NULL, '3.0000', '4.2500', '4.2500', '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 (112528, '2022-08-28', 7896, 106110, 6484, NULL, '1.0000', '7.0000', '7.0000', '45.5000', '45.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112529, '2022-08-28', 1501, 106111, 6484, NULL, '1.0000', '2.0500', '2.0500', '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 (112530, '2022-08-28', 7552, 106112, 6484, NULL, '1.0000', '4.7500', '4.7500', '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 (112531, '2022-08-28', 9092, 106113, 6484, NULL, '2.0000', '5.2900', '5.2900', '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 (112532, '2022-08-28', 7730, 106114, 6484, NULL, '20.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (112533, '2022-08-28', 7373, 106115, 6484, NULL, '2.0000', '17.0000', '17.0000', '22.5000', '22.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 (112534, '2022-08-28', 7588, 106116, 6484, NULL, '1.0000', '6.9000', '6.9000', '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 (112535, '2022-08-28', 2284, 106117, 6484, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (112536, '2022-08-28', 7674, 106118, 6484, NULL, '1.0000', '1.3000', '1.3000', '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 (112537, '2022-08-28', 9620, 106119, 6484, 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 (112538, '2022-08-28', 7411, 106120, 6484, NULL, '1.0000', '1.3500', '1.3500', '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 (112539, '2022-08-28', 1935, 106121, 6484, 5586, '-195.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 (112540, '2022-08-28', 1935, 106121, 6484, NULL, '196.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-196.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112541, '2022-08-28', 9275, 106122, 6484, NULL, '2.0000', '6.3000', '6.3000', '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 (112542, '2022-08-28', 7514, 106123, 6484, NULL, '1.0000', '2.2500', '2.2500', '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 (112543, '2022-08-28', 7641, 106124, 6484, NULL, '1.0000', '1.9000', '1.9000', '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 (112544, '2022-08-28', 9763, 106125, 6484, NULL, '1.0000', '2.1000', '2.1000', '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 (112545, '2022-08-28', 7339, 106126, 6484, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (112546, '2022-08-28', 7316, 106127, 6484, NULL, '5.0000', '9.5500', '9.5500', '1.5000', '1.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 (112547, '2022-08-28', 7483, 106128, 6484, 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 (112548, '2022-08-28', 7473, 106129, 6484, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112549, '2022-08-28', 7564, 106130, 6484, NULL, '1.0000', '0.6400', '0.6400', '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 (112550, '2022-08-28', 9791, 106131, 6484, NULL, '2.0000', '0.9000', '0.9000', '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 (112551, '2022-08-28', 7524, 106132, 6484, NULL, '1.0000', '11.9500', '11.9500', '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 (112552, '2022-08-28', 7674, 106133, 6484, NULL, '2.0000', '1.3000', '1.3000', '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 (112553, '2022-08-28', 7524, 106134, 6484, NULL, '1.0000', '11.9500', '11.9500', '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 (112554, '2022-08-28', 8097, 106135, 6484, NULL, '2.0000', '3.4000', '3.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 (112555, '2022-08-28', 7711, 106136, 6484, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112556, '2022-08-28', 7657, 106137, 6484, NULL, '1.0000', '11.3200', '11.3200', '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 (112557, '2022-08-28', 7926, 106138, 6484, 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 (112558, '2022-08-28', 7518, 106139, 6484, NULL, '1.0000', '7.8200', '7.8200', '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 (112559, '2022-08-28', 2295, 106140, 6484, 2954, '-69.0000', '0.9600', '0.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 (112560, '2022-08-28', 2295, 106140, 6484, NULL, '70.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112561, '2022-08-28', 8677, 106141, 6484, NULL, '3.0000', '1.2800', '1.2800', '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 (112562, '2022-08-28', 9963, 106142, 6485, 59054, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112563, '2022-08-28', 1310, 106143, 6485, 59953, '2.0000', '0.4064', '0.4064', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112564, '2022-08-28', 9110, 106144, 6485, NULL, '1.0000', '7.0000', '7.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 (112565, '2022-08-28', 2655, 106145, 6485, 60926, '1.0000', '7.0022', '7.0022', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112566, '2022-08-28', 2025, 106146, 6485, NULL, '1.0000', '4.5000', '4.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 (112567, '2022-08-28', 2169, 106147, 6485, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112568, '2022-08-28', 1875, 106148, 6485, 55870, '10.0000', '73.8421', '73.8421', '3.7000', '3.7000', '62.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112569, '2022-08-28', 7819, 106149, 6485, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112570, '2022-08-28', 1310, 106150, 6485, 59953, '2.0000', '0.4064', '0.4064', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112571, '2022-08-28', 1807, 106151, 6485, 58783, '2.0000', '-3.9727', '-3.9727', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112572, '2022-08-28', 8208, 106152, 6485, NULL, '2.0000', '33.0000', '33.0000', '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 (112573, '2022-08-28', 2315, 106153, 6485, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112574, '2022-08-28', 1912, 106154, 6485, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '77.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112575, '2022-08-28', 1856, 106155, 6485, 56948, '1.0000', '5.1154', '5.1154', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112576, '2022-08-28', 2821, 106156, 6485, 61293, '1.0000', '3.4268', '3.4268', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112577, '2022-08-28', 9740, 106157, 6485, 56933, '3.0000', '0.6636', '0.6636', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112578, '2022-08-28', 2617, 106158, 6485, 59945, '1.0000', '6.1455', '6.1455', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112579, '2022-08-28', 2289, 106159, 6485, 56722, '4.0000', '0.2692', '0.2692', '0.5000', '0.5000', '31.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112580, '2022-08-28', 9736, 106160, 6485, 58778, '1.0000', '4.4200', '4.4200', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112581, '2022-08-28', 2237, 106161, 6485, 58590, '2.0000', '1.3368', '1.3368', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112582, '2022-08-28', 7954, 106162, 6485, 56718, '1.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112583, '2022-08-28', 1754, 106163, 6485, 59980, '1.0000', '32.0617', '32.0617', '23.5000', '23.5000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112584, '2022-08-28', 2277, 106164, 6485, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '110.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112585, '2022-08-28', 2414, 106165, 6485, NULL, '2.0000', '3.8350', '3.8350', '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 (112586, '2022-08-28', 7524, 106166, 6485, NULL, '2.0000', '11.9500', '11.9500', '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 (112587, '2022-08-28', 1671, 106167, 6485, 58626, '1.0000', '49.9914', '49.9914', '64.0000', '64.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112588, '2022-08-28', 9891, 106168, 6485, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '10.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112589, '2022-08-28', 1785, 106169, 6485, 60015, '1.0000', '16.0665', '16.0665', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112590, '2022-08-28', 1432, 106170, 6485, 59982, '1.0000', '11.5719', '11.5719', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112591, '2022-08-28', 9740, 106171, 6485, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112592, '2022-08-28', 7744, 106172, 6485, NULL, '1.0000', '2.9400', '2.9400', '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 (112593, '2022-08-28', 2858, 106173, 6485, 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 (112594, '2022-08-28', 1598, 106174, 6485, 49141, '1.0000', '4.0345', '4.0345', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112595, '2022-08-28', 8881, 106175, 6485, 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 (112596, '2022-08-28', 2289, 106176, 6485, 56722, '1.0000', '0.2692', '0.2692', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112597, '2022-08-28', 9821, 106177, 6485, 56978, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112598, '2022-08-28', 8119, 106178, 6485, 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 (112599, '2022-08-28', 9917, 106179, 6485, NULL, '1.0000', '1.2300', '1.2300', '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 (112600, '2022-08-28', 8119, 106180, 6485, 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 (112601, '2022-08-28', 1592, 106181, 6485, 58606, '1.0000', '36.7235', '36.7235', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112602, '2022-08-28', 2289, 106182, 6485, 56722, '5.0000', '0.2692', '0.2692', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112603, '2022-08-28', 9291, 106183, 6485, 56913, '1.0000', '15.4949', '15.4949', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112604, '2022-08-28', 9291, 106183, 6485, 55493, '1.0000', '15.4949', '15.4949', '20.5000', '20.5000', '5.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112605, '2022-08-28', 2016, 106184, 6485, 60532, '1.0000', '8.6667', '8.6667', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112606, '2022-08-28', 2038, 106185, 6485, 59056, '1.0000', '14.1208', '14.1208', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112607, '2022-08-28', 7333, 106186, 6485, NULL, '2.0000', '3.8000', '3.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 (112608, '2022-08-28', 9636, 106187, 6485, 58830, '1.0000', '57.0000', '57.0000', '75.5000', '75.5000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112609, '2022-08-28', 8359, 106188, 6485, 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 (112610, '2022-08-28', 9496, 106189, 6486, NULL, '1.0000', '-1.0000', '-1.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 (112611, '2022-08-28', 2332, 106190, 6486, NULL, '1.0000', '-41.5866', '-41.5866', '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 (112612, '2022-08-28', 1960, 106191, 6486, 57154, '1.0000', '7.5000', '7.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112613, '2022-08-28', 1410, 106192, 6486, NULL, '1.0000', '124.6472', '124.6472', '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 (112614, '2022-08-28', 2656, 106193, 6486, 61332, '1.0000', '2.0372', '2.0372', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112615, '2022-08-28', 9736, 106194, 6486, NULL, '1.0000', '5.0278', '5.0278', '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 (112616, '2022-08-28', 1646, 106195, 6486, 57673, '1.0000', '5.8000', '5.8000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112617, '2022-08-28', 2250, 106196, 6486, 60309, '1.0000', '9.1590', '9.1590', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112618, '2022-08-28', 2444, 106197, 6486, 22549, '1.0000', '10.0950', '10.0950', '14.0000', '14.0000', '0.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 (112619, '2022-08-28', 1715, 106198, 6486, 60307, '1.0000', '8.2180', '8.2180', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112620, '2022-08-28', 2445, 106199, 6486, NULL, '2.0000', '3.2000', '3.2000', '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 (112621, '2022-08-28', 2966, 106200, 6486, NULL, '1.0000', '45.0000', '45.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 (112622, '2022-08-28', 2645, 106201, 6486, 58060, '1.0000', '26.7778', '26.7778', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112623, '2022-08-28', 7472, 106202, 6486, NULL, '1.0000', '-107.6090', '-107.6090', '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 (112624, '2022-08-28', 7514, 106203, 6486, NULL, '1.0000', '2.2500', '2.2500', '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 (112625, '2022-08-28', 9747, 106204, 6486, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112626, '2022-08-28', 7472, 106205, 6486, NULL, '1.0000', '-107.6090', '-107.6090', '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 (112627, '2022-08-28', 7641, 106206, 6486, NULL, '1.0000', '1.9000', '1.9000', '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 (112628, '2022-08-28', 7514, 106207, 6486, NULL, '1.0000', '2.2500', '2.2500', '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 (112629, '2022-08-28', 2414, 106208, 6486, NULL, '2.0000', '-1.2752', '-1.2752', '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 (112630, '2022-08-28', 2656, 106209, 6486, 61332, '1.0000', '2.0372', '2.0372', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112631, '2022-08-28', 1383, 106210, 6486, 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 (112632, '2022-08-28', 1338, 106211, 6486, 58153, '1.0000', '4.5271', '4.5271', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112633, '2022-08-28', 2315, 106212, 6486, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112634, '2022-08-28', 7917, 106213, 6486, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (112635, '2022-08-28', 9791, 106214, 6486, 51704, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112636, '2022-08-28', 8165, 106215, 6486, 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 (112637, '2022-08-28', 2643, 106216, 6486, 61329, '1.0000', '1.0760', '1.0760', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112638, '2022-08-28', 7386, 106217, 6486, NULL, '1.0000', '8.2000', '8.2000', '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 (112639, '2022-08-28', 7642, 106218, 6486, NULL, '1.0000', '2.6900', '2.6900', '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 (112640, '2022-08-28', 9747, 106219, 6486, 59907, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112641, '2022-08-28', 8772, 106220, 6486, 61320, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112642, '2022-08-28', 7411, 106221, 6486, NULL, '2.0000', '1.2819', '1.2819', '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 (112643, '2022-08-28', 2315, 106222, 6486, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112644, '2022-08-28', 2405, 106223, 6486, 56851, '5.0000', '1.2000', '1.2000', '1.8000', '1.8000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112645, '2022-08-28', 9204, 106224, 6486, NULL, '1.0000', '14.1514', '14.1514', '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 (112646, '2022-08-28', 2821, 106225, 6486, NULL, '1.0000', '3.4037', '3.4037', '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 (112647, '2022-08-28', 7917, 106226, 6486, NULL, '4.0000', '5.0000', '5.0000', '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 (112648, '2022-08-28', 2169, 106227, 6486, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112649, '2022-08-28', 2315, 106228, 6486, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112650, '2022-08-28', 8878, 106229, 6486, NULL, '2.0000', '6.0509', '6.0509', '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 (112651, '2022-08-28', 7514, 106230, 6486, NULL, '1.0000', '2.2500', '2.2500', '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 (112652, '2022-08-28', 2495, 106231, 6486, 49635, '1.0000', '8.6100', '8.6100', '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 (112653, '2022-08-28', 1628, 106232, 6486, 60232, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112654, '2022-08-28', 1828, 106233, 6486, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112655, '2022-08-28', 2315, 106234, 6486, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112656, '2022-08-28', 9791, 106235, 6486, 51704, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112657, '2022-08-28', 2293, 106236, 6486, NULL, '3.0000', '-17.4320', '-17.4320', '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 (112658, '2022-08-28', 1590, 106237, 6486, 49903, '3.0000', '2.2860', '2.2860', '3.5000', '3.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 (112659, '2022-08-28', 9695, 106238, 6486, 61333, '2.0000', '5.5357', '5.5357', '8.0000', '8.0000', '57.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112660, '2022-08-28', 9902, 106239, 6486, 59883, '1.0000', '7.9671', '7.9671', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112661, '2022-08-28', 2475, 106240, 6486, NULL, '1.0000', '8.2997', '8.2997', '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 (112662, '2022-08-28', 2940, 106241, 6486, NULL, '1.0000', '6.3600', '6.3600', '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 (112663, '2022-08-28', 1871, 106242, 6486, NULL, '3.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (112664, '2022-08-28', 2263, 106243, 6486, NULL, '1.0000', '37.4800', '37.4800', '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 (112665, '2022-08-28', 9482, 106244, 6486, NULL, '10.0000', '0.5000', '0.5000', '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 (112666, '2022-08-28', 2384, 106245, 6486, NULL, '14.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (112667, '2022-08-28', 7666, 106246, 6486, NULL, '1.0000', '-6.0000', '-6.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 (112668, '2022-08-28', 8775, 106247, 6486, 61327, '1.0000', '2.8853', '2.8853', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112669, '2022-08-28', 7744, 106248, 6486, NULL, '1.0000', '2.5833', '2.5833', '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 (112670, '2022-08-29', 8208, 106249, 6487, NULL, '4.0000', '47.9541', '47.9541', '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 (112671, '2022-08-29', 2948, 106250, 6487, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112672, '2022-08-29', 2263, 106251, 6487, NULL, '1.0000', '37.4800', '37.4800', '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 (112673, '2022-08-29', 2384, 106252, 6487, NULL, '3.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (112674, '2022-08-29', 2908, 106253, 6487, 55931, '4.0000', '0.3518', '0.3518', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112675, '2022-08-29', 2237, 106254, 6487, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112676, '2022-08-29', 1744, 106255, 6487, NULL, '1.0000', '138.0750', '138.0750', '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 (112677, '2022-08-29', 1781, 106256, 6487, 57775, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112678, '2022-08-29', 2302, 106257, 6487, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112679, '2022-08-29', 2643, 106258, 6487, 61329, '1.0000', '1.0760', '1.0760', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112680, '2022-08-29', 1342, 106259, 6487, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112681, '2022-08-29', 1871, 106260, 6487, NULL, '5.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (112682, '2022-08-29', 1746, 106261, 6487, 59870, '1.0000', '4.8553', '4.8553', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112683, '2022-08-29', 2169, 106262, 6487, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112684, '2022-08-29', 1863, 106263, 6487, 60323, '8.0000', '1.4907', '1.4907', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112685, '2022-08-29', 1863, 106263, 6487, 59906, '1.0000', '1.4907', '1.4907', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112686, '2022-08-29', 2547, 106264, 6487, NULL, '1.0000', '10.2000', '10.2000', '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 (112687, '2022-08-29', 1781, 106265, 6487, 57775, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112688, '2022-08-29', 7926, 106266, 6487, NULL, '1.0000', '4.2867', '4.2867', '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 (112689, '2022-08-29', 2167, 106267, 6487, NULL, '1.0000', '0.6663', '0.6663', '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 (112690, '2022-08-29', 2315, 106268, 6488, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112691, '2022-08-29', 1828, 106269, 6488, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112692, '2022-08-29', 2237, 106270, 6488, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112693, '2022-08-29', 1904, 106271, 6488, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112694, '2022-08-29', 1450, 106272, 6488, NULL, '1.0000', '0.8483', '0.8483', '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 (112695, '2022-08-29', 1499, 106273, 6488, 48877, '2.0000', '0.4542', '0.4542', '0.7000', '0.7000', '10.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112696, '2022-08-29', 2285, 106274, 6488, NULL, '1.0000', '-159.5389', '-159.5389', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112697, '2022-08-29', 7926, 106275, 6488, NULL, '1.0000', '4.2867', '4.2867', '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 (112698, '2022-08-29', 9219, 106276, 6488, 59836, '1.0000', '7.3500', '7.3500', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112699, '2022-08-29', 1781, 106277, 6488, 57775, '1.0000', '5.8828', '5.8828', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112700, '2022-08-29', 1863, 106278, 6488, 59906, '3.0000', '1.4907', '1.4907', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112701, '2022-08-29', 7953, 106279, 6488, NULL, '1.0000', '-0.5345', '-0.5345', '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 (112702, '2022-08-29', 1965, 106280, 6488, 60345, '1.0000', '13.8600', '13.8600', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112703, '2022-08-29', 2263, 106281, 6488, NULL, '1.0000', '37.4800', '37.4800', '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 (112704, '2022-08-29', 2237, 106282, 6489, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112705, '2022-08-29', 2315, 106283, 6489, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112706, '2022-08-29', 1760, 106284, 6490, 58185, '2.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112707, '2022-08-29', 1310, 106285, 6491, 60260, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '48.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112708, '2022-08-29', 2339, 106286, 6491, 55940, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112709, '2022-08-29', 2366, 106287, 6491, NULL, '2.0000', '-98.6017', '-98.6017', '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 (112710, '2022-08-29', 2293, 106288, 6491, NULL, '3.0000', '-17.4320', '-17.4320', '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 (112711, '2022-08-29', 1310, 106289, 6492, 60260, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '46.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112712, '2022-08-29', 2339, 106290, 6492, 55940, '1.0000', '11.7000', '11.7000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112713, '2022-08-29', 2366, 106291, 6492, NULL, '2.0000', '-98.6017', '-98.6017', '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 (112714, '2022-08-29', 2293, 106292, 6492, NULL, '3.0000', '-17.4320', '-17.4320', '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 (112715, '2022-08-29', 2356, 106293, 6492, NULL, '1.0000', '38.9800', '38.9800', '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 (112716, '2022-08-29', 8677, 106294, 6493, NULL, '1.0000', '1.2800', '1.2800', '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 (112717, '2022-08-29', 1668, 106295, 6493, 3238, '-10.0000', '13.0442', '13.0442', '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 (112718, '2022-08-29', 1668, 106295, 6493, NULL, '11.0000', '13.0442', '13.0442', '20.0000', '20.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 (112719, '2022-08-29', 1498, 106296, 6493, 19685, '-56.0000', '0.3300', '0.3300', '0.7000', '0.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 (112720, '2022-08-29', 1498, 106296, 6493, NULL, '57.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112721, '2022-08-29', 2656, 106297, 6493, NULL, '1.0000', '1.5000', '1.5000', '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 (112722, '2022-08-29', 2299, 106298, 6493, 22479, '-13.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 (112723, '2022-08-29', 2299, 106298, 6493, NULL, '14.0000', '6.0000', '6.0000', '8.0000', '8.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 (112724, '2022-08-29', 2167, 106299, 6493, 17165, '-60.0000', '2.2000', '2.2000', '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 (112725, '2022-08-29', 2167, 106299, 6493, NULL, '63.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-63.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112726, '2022-08-29', 2547, 106300, 6493, 6309, '-3.0000', '8.7600', '8.7600', '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 (112727, '2022-08-29', 2547, 106300, 6493, NULL, '4.0000', '8.7600', '8.7600', '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 (112728, '2022-08-29', 9731, 106301, 6493, 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 (112729, '2022-08-29', 7609, 106302, 6493, NULL, '1.0000', '4.3300', '4.3300', '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 (112730, '2022-08-29', 1306, 106303, 6493, 5581, '-11.0000', '22.5969', '22.5969', '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 (112731, '2022-08-29', 1306, 106303, 6493, NULL, '12.0000', '22.5969', '22.5969', '3.0000', '3.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 (112732, '2022-08-29', 2135, 106304, 6493, 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 (112733, '2022-08-29', 3058, 106305, 6493, NULL, '1.0000', '4.3000', '4.3000', '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 (112734, '2022-08-29', 1326, 106306, 6493, NULL, '1.0000', '2.7762', '2.7762', '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 (112735, '2022-08-29', 1864, 106307, 6493, 7389, '-7.0000', '6.0500', '6.0500', '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 (112736, '2022-08-29', 1864, 106307, 6493, NULL, '8.0000', '6.0500', '6.0500', '12.0000', '12.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 (112737, '2022-08-29', 9747, 106308, 6493, NULL, '4.0000', '0.6500', '0.6500', '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 (112738, '2022-08-29', 2315, 106309, 6493, 2735, '-640.0000', '0.3300', '0.3300', '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 (112739, '2022-08-29', 2315, 106309, 6493, NULL, '642.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-642.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112740, '2022-08-29', 2277, 106310, 6493, 2937, '-78.0000', '0.7800', '0.7800', '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 (112741, '2022-08-29', 2277, 106310, 6493, NULL, '80.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112742, '2022-08-29', 1533, 106311, 6493, 10381, '-38.0000', '2.5917', '2.5917', '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 (112743, '2022-08-29', 1533, 106311, 6493, NULL, '39.0000', '2.5917', '2.5917', '6.5000', '6.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112744, '2022-08-29', 1807, 106312, 6493, 18924, '1.0000', '1.8000', '1.8000', '2.5000', '2.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 (112745, '2022-08-29', 7954, 106313, 6493, NULL, '2.0000', '3.0000', '3.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 (112746, '2022-08-29', 9089, 106314, 6493, NULL, '1.0000', '3.8000', '3.8000', '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 (112747, '2022-08-29', 8771, 106315, 6493, NULL, '1.0000', '4.5000', '4.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 (112748, '2022-08-29', 2293, 106316, 6493, 22262, '2.0000', '1.4400', '1.4400', '1.5000', '1.5000', '15.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 (112749, '2022-08-29', 1511, 106317, 6493, 13713, '-3.0000', '19.0000', '19.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 (112750, '2022-08-29', 1511, 106317, 6493, NULL, '4.0000', '19.0000', '19.0000', '30.0000', '30.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 (112751, '2022-08-29', 1528, 106318, 6493, NULL, '4.0000', '38.6400', '38.6400', '8.5000', '8.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 (112752, '2022-08-29', 9740, 106319, 6493, NULL, '1.0000', '0.6600', '0.6600', '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 (112753, '2022-08-29', 2366, 106320, 6493, 3833, '-78.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 (112754, '2022-08-29', 2366, 106320, 6493, NULL, '80.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112755, '2022-08-29', 1637, 106321, 6493, 3210, '-16.0000', '10.2000', '10.2000', '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 (112756, '2022-08-29', 1637, 106321, 6493, NULL, '17.0000', '10.2000', '10.2000', '20.0000', '20.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 (112757, '2022-08-29', 7954, 106322, 6493, NULL, '2.0000', '3.0000', '3.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 (112758, '2022-08-29', 2299, 106323, 6493, 22479, '-13.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 (112759, '2022-08-29', 2299, 106323, 6493, NULL, '14.0000', '6.0000', '6.0000', '8.0000', '8.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 (112760, '2022-08-29', 1425, 106324, 6494, 59959, '1.0000', '6.9322', '6.9322', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112761, '2022-08-29', 9012, 106325, 6494, 55002, '1.0000', '0.7500', '0.7500', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112762, '2022-08-29', 1674, 106326, 6494, 58657, '1.0000', '8.2081', '8.2081', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112763, '2022-08-29', 7785, 106327, 6494, 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 (112764, '2022-08-29', 1912, 106328, 6494, 56898, '3.0000', '0.6773', '0.6773', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112765, '2022-08-29', 9482, 106329, 6494, 32585, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '137.0000', 1, 0, NULL, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112766, '2022-08-29', 8771, 106330, 6494, 61291, '1.0000', '6.0304', '6.0304', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112767, '2022-08-29', 7411, 106331, 6494, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112768, '2022-08-29', 7411, 106332, 6494, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112769, '2022-08-29', 2169, 106333, 6494, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112770, '2022-08-29', 2263, 106334, 6494, 56910, '1.0000', '5.2300', '5.2300', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112771, '2022-08-29', 2327, 106335, 6494, 59969, '1.0000', '3.3869', '3.3869', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112772, '2022-08-29', 1620, 106336, 6494, 56217, '1.0000', '2.2914', '2.2914', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112773, '2022-08-29', 2315, 106337, 6494, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112774, '2022-08-29', 2302, 106338, 6494, 58616, '1.0000', '5.1969', '5.1969', '7.0000', '7.0000', '16.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112775, '2022-08-29', 8184, 106339, 6494, 54394, '10.0000', '2.6350', '2.6350', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112776, '2022-08-29', 7612, 106340, 6494, NULL, '2.0000', '46.0000', '46.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 (112777, '2022-08-29', 7459, 106341, 6494, NULL, '10.0000', '4.5753', '4.5753', '4.0000', '4.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 (112778, '2022-08-29', 7411, 106342, 6494, 61295, '2.0000', '1.5882', '1.5882', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112779, '2022-08-29', 9956, 106343, 6494, NULL, '1.0000', '15.5000', '15.5000', '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 (112780, '2022-08-29', 2669, 106344, 6494, 44777, '1.0000', '25.1873', '25.1873', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112781, '2022-08-29', 1884, 106345, 6494, 40864, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112782, '2022-08-29', 2617, 106346, 6494, 59945, '1.0000', '6.1455', '6.1455', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112783, '2022-08-29', 7411, 106347, 6494, 61295, '2.0000', '1.5882', '1.5882', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112784, '2022-08-29', 9891, 106348, 6494, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112785, '2022-08-29', 1499, 106349, 6494, 58613, '1.0000', '0.4612', '0.4612', '0.7000', '0.7000', '38.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112786, '2022-08-29', 8476, 106350, 6494, NULL, '2.0000', '23.0000', '23.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 (112787, '2022-08-29', 2079, 106351, 6494, 49468, '1.0000', '2.1500', '2.1500', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112788, '2022-08-29', 1767, 106352, 6494, 58818, '1.0000', '5.1227', '5.1227', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112789, '2022-08-29', 8878, 106353, 6494, 58808, '1.0000', '1.2006', '1.2006', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112790, '2022-08-29', 2169, 106354, 6494, 56941, '2.0000', '1.3616', '1.3616', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112791, '2022-08-29', 2315, 106355, 6494, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112792, '2022-08-29', 1767, 106356, 6494, 58818, '1.0000', '5.1227', '5.1227', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112793, '2022-08-29', 1805, 106357, 6494, 58776, '1.0000', '5.7294', '5.7294', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112794, '2022-08-29', 7411, 106358, 6494, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112795, '2022-08-29', 1621, 106359, 6494, 57986, '1.0000', '35.3870', '35.3870', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112796, '2022-08-29', 1521, 106360, 6494, 56249, '1.0000', '2.8071', '2.8071', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112797, '2022-08-29', 2169, 106361, 6494, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112798, '2022-08-29', 2315, 106362, 6494, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112799, '2022-08-29', 1695, 106363, 6494, 57955, '1.0000', '27.0720', '27.0720', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112800, '2022-08-29', 1529, 106364, 6494, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112801, '2022-08-29', 2315, 106365, 6494, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112802, '2022-08-29', 7608, 106366, 6494, NULL, '1.0000', '6.9800', '6.9800', '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 (112803, '2022-08-29', 2070, 106367, 6494, 57993, '1.0000', '2.1957', '2.1957', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112804, '2022-08-29', 7674, 106368, 6494, 59634, '1.0000', '1.2028', '1.2028', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112805, '2022-08-29', 2366, 106369, 6494, 60001, '2.0000', '3.6431', '3.6431', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112806, '2022-08-29', 1482, 106370, 6494, 55517, '1.0000', '39.3189', '39.3189', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112807, '2022-08-29', 2283, 106371, 6494, 56961, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112808, '2022-08-29', 2379, 106372, 6494, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112809, '2022-08-29', 1406, 106373, 6494, 58653, '1.0000', '18.3081', '18.3081', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112810, '2022-08-29', 7363, 106374, 6494, 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 (112811, '2022-08-29', 1383, 106375, 6494, 60020, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112812, '2022-08-29', 1342, 106376, 6494, 58769, '1.0000', '9.1791', '9.1791', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112813, '2022-08-29', 2260, 106377, 6494, 56911, '1.0000', '4.6659', '4.6659', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112814, '2022-08-29', 1871, 106378, 6494, 59999, '1.0000', '4.6908', '4.6908', '3.7000', '3.7000', '20.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112815, '2022-08-29', 1590, 106379, 6494, 9437, '3.0000', '1.7700', '1.7700', '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 (112816, '2022-08-29', 2315, 106380, 6494, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112817, '2022-08-29', 2295, 106381, 6494, 58759, '2.0000', '1.4606', '1.4606', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112818, '2022-08-29', 9891, 106382, 6494, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112819, '2022-08-29', 2943, 106383, 6494, 54591, '1.0000', '1.9204', '1.9204', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112820, '2022-08-29', 8878, 106384, 6494, 58808, '2.0000', '1.2006', '1.2006', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112821, '2022-08-29', 1337, 106385, 6494, 34683, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112822, '2022-08-29', 9736, 106386, 6494, 58778, '1.0000', '4.4200', '4.4200', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112823, '2022-08-29', 2656, 106387, 6494, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112824, '2022-08-29', 7608, 106388, 6494, NULL, '1.0000', '6.9800', '6.9800', '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 (112825, '2022-08-29', 2277, 106389, 6494, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '109.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112826, '2022-08-29', 7333, 106390, 6495, NULL, '2.0000', '13.5000', '13.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 (112827, '2022-08-29', 1620, 106391, 6495, 8955, '-76.0000', '408.8259', '408.8259', '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 (112828, '2022-08-29', 1620, 106391, 6495, NULL, '80.0000', '408.8259', '408.8259', '3.5000', '3.5000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112829, '2022-08-29', 9729, 106392, 6495, NULL, '2.0000', '0.6200', '0.6200', '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 (112830, '2022-08-29', 8063, 106393, 6495, NULL, '1.0000', '1.6000', '1.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 (112831, '2022-08-29', 9734, 106394, 6495, NULL, '1.0000', '0.3200', '0.3200', '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 (112832, '2022-08-29', 9330, 106395, 6495, NULL, '2.0000', '8.6000', '8.6000', '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 (112833, '2022-08-29', 2098, 106396, 6495, 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 (112834, '2022-08-29', 7318, 106397, 6495, NULL, '1.0000', '13.4400', '13.4400', '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 (112835, '2022-08-29', 2315, 106398, 6495, 2735, '-642.0000', '0.3300', '0.3300', '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 (112836, '2022-08-29', 2315, 106398, 6495, NULL, '644.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-644.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112837, '2022-08-29', 9430, 106399, 6495, NULL, '2.0000', '40.9000', '40.9000', '54.0000', '54.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 (112838, '2022-08-29', 7560, 106400, 6495, NULL, '1.0000', '33.0200', '33.0200', '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 (112839, '2022-08-29', 8596, 106401, 6495, 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 (112840, '2022-08-29', 8077, 106402, 6495, NULL, '1.0000', '3.6000', '3.6000', '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 (112841, '2022-08-29', 7872, 106403, 6495, 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 (112842, '2022-08-29', 7781, 106404, 6495, NULL, '3.0000', '4.2500', '4.2500', '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 (112843, '2022-08-29', 7785, 106405, 6495, 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 (112844, '2022-08-29', 7694, 106406, 6495, NULL, '2.0000', '4.7900', '4.7900', '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 (112845, '2022-08-29', 7954, 106407, 6495, 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 (112846, '2022-08-29', 9800, 106408, 6495, NULL, '1.0000', '14.0000', '14.0000', '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 (112847, '2022-08-29', 2503, 106409, 6495, NULL, '1.0000', '14.6000', '14.6000', '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 (112848, '2022-08-29', 7666, 106410, 6495, NULL, '1.0000', '3.6000', '3.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 (112849, '2022-08-29', 8814, 106411, 6495, NULL, '10.0000', '5.0000', '5.0000', '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 (112850, '2022-08-29', 7557, 106412, 6495, NULL, '10.0000', '0.5000', '0.5000', '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 (112851, '2022-08-29', 7621, 106413, 6495, NULL, '1.0000', '5.9000', '5.9000', '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 (112852, '2022-08-29', 7707, 106414, 6495, NULL, '1.0000', '7.0000', '7.0000', '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 (112853, '2022-08-29', 7318, 106415, 6495, NULL, '1.0000', '13.4400', '13.4400', '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 (112854, '2022-08-29', 9955, 106416, 6495, NULL, '1.0000', '5.4000', '5.4000', '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 (112855, '2022-08-29', 8254, 106417, 6495, NULL, '2.0000', '25.9000', '25.9000', '40.0000', '40.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 (112856, '2022-08-29', 8722, 106418, 6495, 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 (112857, '2022-08-29', 9988, 106419, 6495, 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 (112858, '2022-08-29', 7412, 106420, 6495, NULL, '1.0000', '1.5200', '1.5200', '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 (112859, '2022-08-29', 7639, 106421, 6495, 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 (112860, '2022-08-29', 2255, 106422, 6495, 2792, '-5.0000', '17.4900', '17.4900', '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 (112861, '2022-08-29', 2255, 106422, 6495, NULL, '9.0000', '17.4900', '17.4900', '32.5000', '32.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 (112862, '2022-08-29', 7513, 106423, 6495, NULL, '3.0000', '7.1000', '7.1000', '24.0000', '24.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 (112863, '2022-08-29', 7711, 106424, 6495, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112864, '2022-08-29', 7473, 106425, 6495, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112865, '2022-08-29', 7730, 106426, 6495, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (112866, '2022-08-29', 7402, 106427, 6495, NULL, '1.0000', '18.9000', '18.9000', '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 (112867, '2022-08-29', 7518, 106428, 6495, NULL, '1.0000', '7.8200', '7.8200', '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 (112868, '2022-08-29', 7650, 106429, 6495, NULL, '1.0000', '0.8900', '0.8900', '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 (112869, '2022-08-29', 9092, 106430, 6495, NULL, '2.0000', '5.2900', '5.2900', '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 (112870, '2022-08-29', 8243, 106431, 6495, NULL, '1.0000', '1.1400', '1.1400', '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 (112871, '2022-08-29', 7444, 106432, 6495, 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 (112872, '2022-08-29', 7473, 106433, 6495, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (112873, '2022-08-29', 1557, 106434, 6495, 1628, '-17.0000', '7.9500', '7.9500', '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 (112874, '2022-08-29', 1557, 106434, 6495, NULL, '18.0000', '7.9500', '7.9500', '11.0000', '11.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 (112875, '2022-08-29', 9988, 106435, 6495, 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 (112876, '2022-08-29', 1501, 106436, 6495, NULL, '1.0000', '2.0500', '2.0500', '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 (112877, '2022-08-29', 8449, 106437, 6495, NULL, '1.0000', '11.9000', '11.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 (112878, '2022-08-29', 2105, 106438, 6495, NULL, '1.0000', '1.3500', '1.3500', '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 (112879, '2022-08-29', 8677, 106439, 6495, NULL, '3.0000', '1.2800', '1.2800', '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 (112880, '2022-08-29', 9177, 106440, 6495, 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 (112881, '2022-08-29', 7552, 106441, 6495, NULL, '1.0000', '4.7500', '4.7500', '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 (112882, '2022-08-29', 7708, 106442, 6495, NULL, '1.0000', '7.8000', '7.8000', '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 (112883, '2022-08-29', 7628, 106443, 6495, NULL, '6.0000', '2.2900', '2.2900', '3.0000', '3.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 (112884, '2022-08-29', 7588, 106444, 6495, NULL, '2.0000', '6.9000', '6.9000', '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 (112885, '2022-08-29', 7674, 106445, 6495, NULL, '1.0000', '1.3000', '1.3000', '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 (112886, '2022-08-29', 9809, 106446, 6495, NULL, '1.0000', '5.7900', '5.7900', '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 (112887, '2022-08-29', 7959, 106447, 6495, NULL, '1.0000', '9.6000', '9.6000', '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 (112888, '2022-08-29', 7558, 106448, 6495, NULL, '2.0000', '1.9700', '1.9700', '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 (112889, '2022-08-29', 7473, 106449, 6495, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (112890, '2022-08-29', 8395, 106450, 6495, NULL, '1.0000', '0.9700', '0.9700', '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 (112891, '2022-08-29', 3067, 106451, 6495, NULL, '1.0000', '0.7000', '0.7000', '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 (112892, '2022-08-29', 7730, 106452, 6495, NULL, '1.0000', '0.1000', '0.1000', '0.2000', '0.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 (112893, '2022-08-29', 7333, 106453, 6495, NULL, '7.0000', '13.5000', '13.5000', '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 (112894, '2022-08-29', 7721, 106454, 6495, NULL, '1.0000', '5.5000', '5.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 (112895, '2022-08-29', 7917, 106455, 6495, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (112896, '2022-08-29', 9204, 106456, 6495, NULL, '1.0000', '8.1600', '8.1600', '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 (112897, '2022-08-29', 7925, 106457, 6495, NULL, '1.0000', '8.3000', '8.3000', '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 (112898, '2022-08-29', 7496, 106458, 6495, NULL, '1.0000', '0.9600', '0.9600', '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 (112899, '2022-08-29', 7420, 106459, 6495, NULL, '1.0000', '30.7900', '30.7900', '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 (112900, '2022-08-29', 1665, 106460, 6495, 3235, '-155.0000', '1.3000', '1.3000', '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 (112901, '2022-08-29', 1665, 106460, 6495, NULL, '156.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-156.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112902, '2022-08-29', 7641, 106461, 6495, NULL, '1.0000', '1.9000', '1.9000', '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 (112903, '2022-08-29', 7514, 106462, 6495, NULL, '2.0000', '2.2500', '2.2500', '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 (112904, '2022-08-29', 7770, 106463, 6495, NULL, '1.0000', '7.8200', '7.8200', '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 (112905, '2022-08-29', 7707, 106464, 6495, NULL, '1.0000', '7.0000', '7.0000', '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 (112906, '2022-08-29', 8413, 106465, 6496, 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 (112907, '2022-08-29', 7678, 106466, 6497, NULL, '1.0000', '5.1400', '5.1400', '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 (112908, '2022-08-29', 7496, 106467, 6497, NULL, '1.0000', '0.9600', '0.9600', '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 (112909, '2022-08-29', 9399, 106468, 6497, NULL, '1.0000', '0.9800', '0.9800', '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 (112910, '2022-08-29', 8077, 106469, 6497, NULL, '1.0000', '3.6000', '3.6000', '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 (112911, '2022-08-29', 7872, 106470, 6497, 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 (112912, '2022-08-29', 7402, 106471, 6497, NULL, '2.0000', '18.9000', '18.9000', '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 (112913, '2022-08-29', 1804, 106472, 6497, 4916, '-23.0000', '4.2500', '4.2500', '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 (112914, '2022-08-29', 1804, 106472, 6497, NULL, '24.0000', '4.2500', '4.2500', '10.0000', '10.0000', '-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 (112915, '2022-08-29', 2076, 106473, 6498, 18876, '1.0000', '8.0000', '8.0000', '11.0000', '11.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 (112916, '2022-08-29', 2315, 106474, 6498, 2735, '-644.0000', '0.3300', '0.3300', '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 (112917, '2022-08-29', 2315, 106474, 6498, NULL, '648.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-648.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112918, '2022-08-29', 1310, 106475, 6498, NULL, '3.0000', '0.3700', '0.3700', '0.6000', '0.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 (112919, '2022-08-29', 1670, 106476, 6498, 10163, '-23.0000', '19.5000', '19.5000', '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 (112920, '2022-08-29', 1670, 106476, 6498, NULL, '24.0000', '19.5000', '19.5000', '36.0000', '36.0000', '-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 (112921, '2022-08-29', 2642, 106477, 6498, 10573, '-23.0000', '9.2000', '9.2000', '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 (112922, '2022-08-29', 2642, 106477, 6498, NULL, '24.0000', '9.2000', '9.2000', '18.0000', '18.0000', '-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 (112923, '2022-08-29', 10004, 106478, 6498, NULL, '40.0000', '2.5100', '2.5100', '3.0000', '3.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 (112924, '2022-08-29', 2327, 106479, 6498, 5083, '-48.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 (112925, '2022-08-29', 2327, 106479, 6498, NULL, '50.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112926, '2022-08-29', 2221, 106480, 6498, 4154, '-84.0000', '14.4737', '14.4737', '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 (112927, '2022-08-29', 2221, 106480, 6498, NULL, '85.0000', '14.4737', '14.4737', '29.0000', '29.0000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112928, '2022-08-29', 2858, 106481, 6498, 17772, '-129.0000', '1.0000', '1.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 (112929, '2022-08-29', 2858, 106481, 6498, NULL, '130.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112930, '2022-08-29', 1427, 106482, 6498, NULL, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112931, '2022-08-29', 2858, 106483, 6498, 17772, '-129.0000', '1.0000', '1.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 (112932, '2022-08-29', 2858, 106483, 6498, NULL, '130.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112933, '2022-08-29', 9458, 106484, 6498, NULL, '1.0000', '1.5000', '1.5000', '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 (112934, '2022-08-29', 1840, 106485, 6498, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (112935, '2022-08-29', 1841, 106486, 6498, NULL, '1.0000', '142.5780', '142.5780', '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 (112936, '2022-08-29', 8208, 106487, 6498, NULL, '2.0000', '33.0000', '33.0000', '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 (112937, '2022-08-29', 8418, 106488, 6498, NULL, '1.0000', '35.1900', '35.1900', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112938, '2022-08-29', 1669, 106489, 6498, 11165, '-26.0000', '6.7000', '6.7000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112939, '2022-08-29', 1669, 106489, 6498, NULL, '29.0000', '6.7000', '6.7000', '14.0000', '14.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112940, '2022-08-29', 2135, 106490, 6498, 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 (112941, '2022-08-29', 9866, 106491, 6498, NULL, '1.0000', '9.5500', '9.5500', '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 (112942, '2022-08-29', 2858, 106492, 6498, 17772, '-129.0000', '1.0000', '1.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 (112943, '2022-08-29', 2858, 106492, 6498, NULL, '130.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-130.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112944, '2022-08-29', 1478, 106493, 6498, 1439, '-1.0000', '50.6858', '50.6858', '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 (112945, '2022-08-29', 1478, 106493, 6498, NULL, '2.0000', '50.6858', '50.6858', '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 (112946, '2022-08-29', 1367, 106494, 6498, 11001, '6.0000', '-17710.9284', '-17710.9284', '11.0000', '11.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 (112947, '2022-08-29', 1367, 106494, 6498, 263, '2.0000', '-17710.9284', '-17710.9284', '11.0000', '11.0000', '0.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 (112948, '2022-08-29', 1367, 106494, 6498, NULL, '2.0000', '-17710.9284', '-17710.9284', '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 (112949, '2022-08-29', 1541, 106495, 6498, 18018, '-9.0000', '19.0000', '19.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 (112950, '2022-08-29', 1541, 106495, 6498, NULL, '10.0000', '19.0000', '19.0000', '30.5000', '30.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 (112951, '2022-08-29', 2242, 106496, 6498, 3059, '-112.0000', '0.4800', '0.4800', '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 (112952, '2022-08-29', 2242, 106496, 6498, NULL, '115.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-115.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112953, '2022-08-29', 1368, 106497, 6498, NULL, '1.0000', '-55.5295', '-55.5295', '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 (112954, '2022-08-29', 9929, 106498, 6498, 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 (112955, '2022-08-29', 9463, 106499, 6498, NULL, '2.0000', '7.5000', '7.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 (112956, '2022-08-29', 1736, 106500, 6498, 7382, '-16.0000', '-6.2282', '-6.2282', '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 (112957, '2022-08-29', 1736, 106500, 6498, NULL, '17.0000', '-6.2282', '-6.2282', '50.0000', '50.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 (112958, '2022-08-29', 9089, 106501, 6498, NULL, '1.0000', '3.8000', '3.8000', '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 (112959, '2022-08-29', 1665, 106502, 6498, 3235, '-156.0000', '1.3000', '1.3000', '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 (112960, '2022-08-29', 1665, 106502, 6498, NULL, '157.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-157.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112961, '2022-08-29', 2169, 106503, 6499, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112962, '2022-08-29', 2232, 106504, 6499, 54972, '1.0000', '30.5263', '30.5263', '42.0000', '42.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112963, '2022-08-29', 1688, 106505, 6499, 58151, '1.0000', '23.2094', '23.2094', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112964, '2022-08-29', 3044, 106506, 6499, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '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 (112965, '2022-08-29', 1863, 106507, 6499, 59906, '2.0000', '1.4907', '1.4907', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112966, '2022-08-29', 2655, 106508, 6499, NULL, '2.0000', '-205.5227', '-205.5227', '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 (112967, '2022-08-29', 8878, 106509, 6499, NULL, '1.0000', '6.0509', '6.0509', '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 (112968, '2022-08-29', 7744, 106510, 6500, 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 (112969, '2022-08-30', 8825, 106511, 6501, NULL, '1.0000', '7.4000', '7.4000', '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 (112970, '2022-08-30', 1501, 106512, 6502, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112971, '2022-08-30', 9332, 106513, 6502, NULL, '1.0000', '10.6668', '10.6668', '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 (112972, '2022-08-30', 8288, 106514, 6502, NULL, '10.0000', '1.1434', '1.1434', '1.8000', '1.8000', '-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 (112973, '2022-08-30', 7707, 106515, 6502, 60125, '1.0000', '7.1500', '7.1500', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112974, '2022-08-30', 1856, 106516, 6502, 60777, '1.0000', '1.2253', '1.2253', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112975, '2022-08-30', 7917, 106517, 6502, 61150, '5.0000', '1.4973', '1.4973', '0.7000', '0.7000', '87.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112976, '2022-08-30', 7412, 106518, 6502, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112977, '2022-08-30', 1837, 106519, 6502, NULL, '5.0000', '0.5600', '0.5600', '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 (112978, '2022-08-30', 2315, 106520, 6502, 60392, '3.0000', '0.7626', '0.7626', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112979, '2022-08-30', 9566, 106521, 6502, 60102, '1.0000', '3.9699', '3.9699', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112980, '2022-08-30', 7606, 106522, 6502, 60413, '1.0000', '5.2822', '5.2822', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112981, '2022-08-30', 7743, 106523, 6502, NULL, '1.0000', '1680974.7627', '1680974.7627', '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 (112982, '2022-08-30', 8187, 106524, 6502, NULL, '4.0000', '14.3900', '14.3900', '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 (112983, '2022-08-30', 7927, 106525, 6502, 59354, '1.0000', '12.7435', '12.7435', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112984, '2022-08-30', 7360, 106526, 6502, 53625, '1.0000', '-213.1120', '-213.1120', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112985, '2022-08-30', 1856, 106527, 6502, 60777, '1.0000', '1.2253', '1.2253', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112986, '2022-08-30', 8649, 106528, 6502, 61192, '1.0000', '21.2550', '21.2550', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112987, '2022-08-30', 7912, 106529, 6502, 61132, '1.0000', '9.8026', '9.8026', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112988, '2022-08-30', 9885, 106530, 6502, 54148, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112989, '2022-08-30', 7473, 106531, 6502, 61174, '5.0000', '0.5367', '0.5367', '0.7000', '0.7000', '67.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112990, '2022-08-30', 9762, 106532, 6502, 46935, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112991, '2022-08-30', 7881, 106533, 6502, 60422, '1.0000', '-9.0457', '-9.0457', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112992, '2022-08-30', 7743, 106534, 6502, NULL, '1.0000', '1680974.7627', '1680974.7627', '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 (112993, '2022-08-30', 7974, 106535, 6502, 56679, '1.0000', '27.1750', '27.1750', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112994, '2022-08-30', 7560, 106536, 6502, 60094, '1.0000', '41.4439', '41.4439', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112995, '2022-08-30', 1501, 106537, 6502, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112996, '2022-08-30', 9332, 106538, 6502, NULL, '1.0000', '10.6668', '10.6668', '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 (112997, '2022-08-30', 9942, 106539, 6503, NULL, '1.0000', '13.1000', '13.1000', '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 (112998, '2022-08-30', 9496, 106540, 6503, NULL, '1.0000', '-1.0000', '-1.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 (112999, '2022-08-30', 7316, 106541, 6503, 51382, '2.0000', '0.9020', '0.9020', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113000, '2022-08-30', 9996, 106542, 6503, 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 (113001, '2022-08-30', 2547, 106543, 6503, NULL, '1.0000', '10.2000', '10.2000', '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 (113002, '2022-08-30', 2169, 106544, 6503, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113003, '2022-08-30', 7411, 106545, 6503, NULL, '1.0000', '1.2819', '1.2819', '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 (113004, '2022-08-30', 7459, 106546, 6503, NULL, '4.0000', '-15.3118', '-15.3118', '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 (113005, '2022-08-30', 1946, 106547, 6503, NULL, '1.0000', '-6.7231', '-6.7231', '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 (113006, '2022-08-30', 2315, 106548, 6503, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113007, '2022-08-30', 7339, 106549, 6503, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (113008, '2022-08-30', 1868, 106550, 6503, NULL, '1.0000', '3.8800', '3.8800', '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 (113009, '2022-08-30', 3058, 106551, 6503, NULL, '1.0000', '-47.3000', '-47.3000', '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 (113010, '2022-08-30', 9482, 106552, 6503, 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 (113011, '2022-08-30', 1367, 106553, 6503, 18939, '10.0000', '49.2100', '49.2100', '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 (113012, '2022-08-30', 3044, 106554, 6503, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.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 (113013, '2022-08-30', 7589, 106555, 6503, NULL, '1.0000', '3.0700', '3.0700', '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 (113014, '2022-08-30', 8068, 106556, 6503, NULL, '1.0000', '8.7900', '8.7900', '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 (113015, '2022-08-30', 2582, 106557, 6503, NULL, '1.0000', '16.7500', '16.7500', '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 (113016, '2022-08-30', 8825, 106558, 6503, NULL, '1.0000', '7.4000', '7.4000', '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 (113017, '2022-08-30', 9720, 106559, 6503, 59898, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113018, '2022-08-30', 9202, 106560, 6503, NULL, '2.0000', '3.5000', '3.5000', '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 (113019, '2022-08-30', 1843, 106561, 6503, 39760, '4.0000', '6.1258', '6.1258', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113020, '2022-08-30', 7558, 106562, 6503, NULL, '20.0000', '-37.0255', '-37.0255', '4.0000', '4.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 (113021, '2022-08-30', 2277, 106563, 6503, NULL, '4.0000', '0.9399', '0.9399', '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 (113022, '2022-08-30', 2295, 106564, 6503, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113023, '2022-08-30', 2242, 106565, 6503, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113024, '2022-08-30', 2635, 106566, 6503, 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 (113025, '2022-08-30', 2821, 106567, 6503, NULL, '1.0000', '3.4037', '3.4037', '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 (113026, '2022-08-30', 2467, 106568, 6503, NULL, '1.0000', '19.8000', '19.8000', '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 (113027, '2022-08-30', 2416, 106569, 6503, 61328, '2.0000', '1.3640', '1.3640', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113028, '2022-08-30', 1628, 106570, 6503, 60232, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113029, '2022-08-30', 2068, 106571, 6503, NULL, '1.0000', '14.6943', '14.6943', '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 (113030, '2022-08-30', 2237, 106572, 6503, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113031, '2022-08-30', 1532, 106573, 6503, 52201, '2.0000', '1.4708', '1.4708', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113032, '2022-08-30', 1532, 106573, 6503, 48901, '1.0000', '1.4708', '1.4708', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113033, '2022-08-30', 1845, 106574, 6503, NULL, '1.0000', '53.9580', '53.9580', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113034, '2022-08-30', 7491, 106575, 6503, NULL, '1.0000', '4.8000', '4.8000', '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 (113035, '2022-08-30', 9482, 106576, 6503, NULL, '2.0000', '0.5000', '0.5000', '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 (113036, '2022-08-30', 7722, 106577, 6503, 59692, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113037, '2022-08-30', 7819, 106578, 6503, NULL, '1.0000', '10.0999', '10.0999', '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 (113038, '2022-08-30', 7324, 106579, 6503, NULL, '1.0000', '5.4813', '5.4813', '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 (113039, '2022-08-30', 2237, 106580, 6503, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113040, '2022-08-30', 1888, 106581, 6503, 59876, '1.0000', '18.5836', '18.5836', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113041, '2022-08-30', 9844, 106582, 6503, NULL, '2.0000', '2.5000', '2.5000', '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 (113042, '2022-08-30', 9202, 106583, 6503, NULL, '1.0000', '3.5000', '3.5000', '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 (113043, '2022-08-30', 8689, 106584, 6504, 50448, '1.0000', '8.6135', '8.6135', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113044, '2022-08-30', 7558, 106585, 6505, NULL, '10.0000', '-19.8908', '-19.8908', '4.0000', '4.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 (113045, '2022-08-30', 3016, 106586, 6506, NULL, '1.0000', '14.5200', '14.5200', '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 (113046, '2022-08-30', 9566, 106587, 6506, NULL, '1.0000', '33.0000', '33.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 (113047, '2022-08-30', 2263, 106588, 6506, 2799, '-6.0000', '6.5600', '6.5600', '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 (113048, '2022-08-30', 2263, 106588, 6506, NULL, '7.0000', '6.5600', '6.5600', '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 (113049, '2022-08-30', 1311, 106589, 6506, 5437, '-42.0000', '79.3908', '79.3908', '0.6000', '0.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 (113050, '2022-08-30', 1311, 106589, 6506, NULL, '43.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (113051, '2022-08-30', 2384, 106590, 6506, 4087, '-89.0000', '0.4000', '0.4000', '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 (113052, '2022-08-30', 2384, 106590, 6506, NULL, '90.0000', '0.4000', '0.4000', '0.8000', '0.8000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113053, '2022-08-30', 2415, 106591, 6506, 4656, '-19.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 (113054, '2022-08-30', 2415, 106591, 6506, NULL, '20.0000', '5.0000', '5.0000', '7.0000', '7.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 (113055, '2022-08-30', 2237, 106592, 6506, 2781, '-87.0000', '1.0600', '1.0600', '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 (113056, '2022-08-30', 2237, 106592, 6506, NULL, '88.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113057, '2022-08-30', 1347, 106593, 6506, 243, '3.0000', '3.4000', '3.4000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113058, '2022-08-30', 2379, 106594, 6506, 4032, '-76.0000', '1.5900', '1.5900', '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 (113059, '2022-08-30', 2379, 106594, 6506, NULL, '77.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-77.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113060, '2022-08-30', 1892, 106595, 6506, 5431, '-20.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 (113061, '2022-08-30', 1892, 106595, 6506, NULL, '22.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113062, '2022-08-30', 8183, 106596, 6506, NULL, '1.0000', '81.9100', '81.9100', '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 (113063, '2022-08-30', 1837, 106597, 6506, 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 (113064, '2022-08-30', 2233, 106598, 6506, 2777, '-36.0000', '19.0200', '19.0200', '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 (113065, '2022-08-30', 2233, 106598, 6506, NULL, '37.0000', '19.0200', '19.0200', '39.0000', '39.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113066, '2022-08-30', 2289, 106599, 6506, 2949, '-257.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 (113067, '2022-08-30', 2289, 106599, 6506, NULL, '259.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-259.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113068, '2022-08-30', 1383, 106600, 6506, NULL, '2.0000', '47.4000', '47.4000', '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 (113069, '2022-08-30', 2221, 106601, 6506, 4154, '-85.0000', '14.4737', '14.4737', '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 (113070, '2022-08-30', 2221, 106601, 6506, NULL, '86.0000', '14.4737', '14.4737', '29.0000', '29.0000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113071, '2022-08-30', 2935, 106602, 6506, NULL, '2.0000', '7.9400', '7.9400', '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 (113072, '2022-08-30', 9775, 106603, 6506, NULL, '1.0000', '7.9000', '7.9000', '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 (113073, '2022-08-30', 1342, 106604, 6506, 11264, '-31.0000', '6.8074', '6.8074', '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 (113074, '2022-08-30', 1342, 106604, 6506, NULL, '32.0000', '6.8074', '6.8074', '10.0000', '10.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113075, '2022-08-30', 9747, 106605, 6506, NULL, '1.0000', '0.6500', '0.6500', '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 (113076, '2022-08-30', 2640, 106606, 6506, NULL, '1.0000', '7.0400', '7.0400', '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 (113077, '2022-08-30', 2086, 106607, 6506, 8731, '-2.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 (113078, '2022-08-30', 2086, 106607, 6506, NULL, '3.0000', '4.3200', '4.3200', '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 (113079, '2022-08-30', 1787, 106608, 6506, 4905, '-30.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 (113080, '2022-08-30', 1787, 106608, 6506, NULL, '31.0000', '0.8100', '0.8100', '2.0000', '2.0000', '-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 (113081, '2022-08-30', 1347, 106609, 6506, 243, '2.0000', '3.4000', '3.4000', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113082, '2022-08-30', 3017, 106610, 6506, NULL, '1.0000', '3.9000', '3.9000', '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 (113083, '2022-08-30', 1590, 106611, 6506, 20607, '3.0000', '1.7100', '1.7100', '3.5000', '3.5000', '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 (113084, '2022-08-30', 9907, 106612, 6506, 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 (113085, '2022-08-30', 9908, 106613, 6506, 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 (113086, '2022-08-30', 1910, 106614, 6506, 167, '2.0000', '90.0000', '90.0000', '2.0000', '2.0000', '20.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 (113087, '2022-08-30', 9735, 106615, 6507, 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 (113088, '2022-08-30', 2250, 106616, 6507, 60309, '1.0000', '9.1590', '9.1590', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113089, '2022-08-30', 9845, 106617, 6507, 58251, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113090, '2022-08-30', 2320, 106618, 6507, 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 (113091, '2022-08-30', 7518, 106619, 6508, NULL, '1.0000', '7.8200', '7.8200', '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 (113092, '2022-08-30', 1337, 106620, 6508, 10809, '-32.0000', '2.0000', '2.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 (113093, '2022-08-30', 1337, 106620, 6508, NULL, '33.0000', '2.0000', '2.0000', '3.5000', '3.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 (113094, '2022-08-30', 7412, 106621, 6508, NULL, '1.0000', '1.5200', '1.5200', '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 (113095, '2022-08-30', 7825, 106622, 6508, NULL, '1.0000', '6.5000', '6.5000', '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 (113096, '2022-08-30', 7774, 106623, 6508, NULL, '1.0000', '3.3000', '3.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 (113097, '2022-08-30', 7564, 106624, 6508, 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 (113098, '2022-08-30', 7780, 106625, 6508, NULL, '1.0000', '11.6000', '11.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 (113099, '2022-08-30', 1845, 106626, 6508, 6222, '-36.0000', '19.5000', '19.5000', '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 (113100, '2022-08-30', 1845, 106626, 6508, NULL, '37.0000', '19.5000', '19.5000', '30.5000', '30.5000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113101, '2022-08-30', 7954, 106627, 6508, 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 (113102, '2022-08-30', 1827, 106628, 6508, NULL, '2.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113103, '2022-08-30', 7674, 106629, 6508, NULL, '1.0000', '1.3000', '1.3000', '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 (113104, '2022-08-30', 8074, 106630, 6508, NULL, '1.0000', '25.3504', '25.3504', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113105, '2022-08-30', 7632, 106631, 6508, NULL, '1.0000', '9.0000', '9.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 (113106, '2022-08-30', 1680, 106632, 6508, NULL, '1.0000', '5.0209', '5.0209', '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 (113107, '2022-08-30', 8359, 106633, 6508, 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 (113108, '2022-08-30', 7518, 106634, 6508, NULL, '4.0000', '7.8200', '7.8200', '12.5000', '12.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 (113109, '2022-08-30', 7819, 106635, 6508, NULL, '1.0000', '9.5000', '9.5000', '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 (113110, '2022-08-30', 7877, 106636, 6508, NULL, '1.0000', '4.4000', '4.4000', '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 (113111, '2022-08-30', 7674, 106637, 6508, NULL, '1.0000', '1.3000', '1.3000', '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 (113112, '2022-08-30', 7848, 106638, 6508, NULL, '1.0000', '1.3500', '1.3500', '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 (113113, '2022-08-30', 3067, 106639, 6508, NULL, '1.0000', '0.7000', '0.7000', '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 (113114, '2022-08-30', 7576, 106640, 6508, NULL, '1.0000', '1.6300', '1.6300', '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 (113115, '2022-08-30', 7447, 106641, 6508, NULL, '8.0000', '19.1100', '19.1100', '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 (113116, '2022-08-30', 8413, 106642, 6508, 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 (113117, '2022-08-30', 7514, 106643, 6508, NULL, '3.0000', '2.2500', '2.2500', '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 (113118, '2022-08-30', 7708, 106644, 6508, NULL, '1.0000', '7.8000', '7.8000', '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 (113119, '2022-08-30', 1310, 106645, 6508, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (113120, '2022-08-30', 7672, 106646, 6508, NULL, '1.0000', '1.0200', '1.0200', '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 (113121, '2022-08-30', 9988, 106647, 6508, 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 (113122, '2022-08-30', 7651, 106648, 6508, NULL, '2.0000', '2.6700', '2.6700', '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 (113123, '2022-08-30', 7518, 106649, 6508, NULL, '1.0000', '7.8200', '7.8200', '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 (113124, '2022-08-30', 7447, 106650, 6508, NULL, '10.0000', '19.1100', '19.1100', '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 (113125, '2022-08-30', 7411, 106651, 6508, NULL, '2.0000', '1.3500', '1.3500', '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 (113126, '2022-08-30', 7382, 106652, 6508, NULL, '1.0000', '7.4500', '7.4500', '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 (113127, '2022-08-30', 1557, 106653, 6508, 1628, '-18.0000', '7.9500', '7.9500', '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 (113128, '2022-08-30', 1557, 106653, 6508, NULL, '19.0000', '7.9500', '7.9500', '11.0000', '11.0000', '-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 (113129, '2022-08-30', 8889, 106654, 6508, NULL, '1.0000', '39.0000', '39.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 (113130, '2022-08-30', 2506, 106655, 6508, 16244, '-40.0000', '3.4900', '3.4900', '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 (113131, '2022-08-30', 2506, 106655, 6508, NULL, '41.0000', '3.4900', '3.4900', '6.5000', '6.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 (113132, '2022-08-30', 7952, 106656, 6508, 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 (113133, '2022-08-30', 1501, 106657, 6508, NULL, '1.0000', '2.0500', '2.0500', '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 (113134, '2022-08-30', 9645, 106658, 6508, NULL, '1.0000', '5.4000', '5.4000', '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 (113135, '2022-08-30', 10004, 106659, 6508, NULL, '2.0000', '2.5100', '2.5100', '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 (113136, '2022-08-30', 8878, 106660, 6508, NULL, '1.0000', '6.6700', '6.6700', '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 (113137, '2022-08-30', 7518, 106661, 6508, NULL, '1.0000', '7.8200', '7.8200', '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 (113138, '2022-08-30', 2100, 106662, 6508, 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 (113139, '2022-08-30', 2105, 106663, 6508, NULL, '1.0000', '1.3500', '1.3500', '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 (113140, '2022-08-30', 8979, 106664, 6508, NULL, '5.0000', '1.0000', '1.0000', '1.5000', '1.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 (113141, '2022-08-30', 9751, 106665, 6508, 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 (113142, '2022-08-30', 1310, 106666, 6509, NULL, '4.0000', '0.3700', '0.3700', '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 (113143, '2022-08-30', 2315, 106667, 6510, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113144, '2022-08-30', 2416, 106668, 6510, 61328, '1.0000', '1.3640', '1.3640', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113145, '2022-08-30', 8878, 106669, 6510, NULL, '1.0000', '6.0509', '6.0509', '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 (113146, '2022-08-30', 2642, 106670, 6510, 61312, '1.0000', '9.0695', '9.0695', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113147, '2022-08-30', 2293, 106671, 6510, NULL, '6.0000', '-17.4320', '-17.4320', '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 (113148, '2022-08-30', 2228, 106672, 6510, 61254, '1.0000', '33.0000', '33.0000', '38.0000', '38.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113149, '2022-08-30', 7429, 106673, 6510, NULL, '1.0000', '18.0000', '18.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 (113150, '2022-08-30', 9845, 106674, 6510, 58251, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113151, '2022-08-30', 2320, 106675, 6510, 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 (113152, '2022-08-30', 1976, 106676, 6510, 58047, '1.0000', '7.4074', '7.4074', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113153, '2022-08-30', 2015, 106677, 6510, 54829, '1.0000', '3.9255', '3.9255', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113154, '2022-08-30', 1674, 106678, 6510, NULL, '2.0000', '0.8028', '0.8028', '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 (113155, '2022-08-30', 7584, 106679, 6510, NULL, '1.0000', '3.1378', '3.1378', '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 (113156, '2022-08-30', 2315, 106680, 6510, 54963, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113157, '2022-08-30', 2255, 106681, 6510, 60351, '1.0000', '22.3954', '22.3954', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113158, '2022-08-30', 1828, 106682, 6510, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113159, '2022-08-30', 2682, 106683, 6510, 48606, '1.0000', '15.1600', '15.1600', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113160, '2022-08-30', 1859, 106684, 6510, 57718, '1.0000', '23.4408', '23.4408', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113161, '2022-08-30', 1688, 106685, 6510, 13745, '1.0000', '23.2094', '23.2094', '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 (113162, '2022-08-30', 2169, 106686, 6510, 59849, '1.0000', '1.7142', '1.7142', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113163, '2022-08-30', 1339, 106687, 6510, 60346, '1.0000', '2.1997', '2.1997', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113164, '2022-08-30', 9695, 106688, 6510, 61333, '1.0000', '5.5357', '5.5357', '8.0000', '8.0000', '56.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113165, '2022-08-30', 7411, 106689, 6510, NULL, '2.0000', '1.2819', '1.2819', '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 (113166, '2022-08-30', 2642, 106690, 6510, 61312, '1.0000', '9.0695', '9.0695', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113167, '2022-08-30', 8183, 106691, 6510, NULL, '1.0000', '2774.2425', '2774.2425', '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 (113168, '2022-08-30', 1884, 106692, 6510, NULL, '1.0000', '17.4104', '17.4104', '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 (113169, '2022-08-30', 1342, 106693, 6510, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113170, '2022-08-30', 7514, 106694, 6510, NULL, '4.0000', '2.2500', '2.2500', '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 (113171, '2022-08-30', 7353, 106695, 6510, NULL, '1.0000', '0.1900', '0.1900', '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 (113172, '2022-08-30', 2642, 106696, 6510, 61312, '1.0000', '9.0695', '9.0695', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113173, '2022-08-30', 7641, 106697, 6510, NULL, '1.0000', '1.9000', '1.9000', '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 (113174, '2022-08-30', 2242, 106698, 6510, 56409, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113175, '2022-08-30', 7483, 106699, 6510, NULL, '1.0000', '0.4200', '0.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 (113176, '2022-08-30', 7639, 106700, 6510, 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 (113177, '2022-08-30', 1787, 106701, 6510, NULL, '1.0000', '0.5000', '0.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 (113178, '2022-08-30', 1855, 106702, 6510, NULL, '2.0000', '1.4615', '1.4615', '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 (113179, '2022-08-30', 9960, 106703, 6510, NULL, '3.0000', '3.3000', '3.3000', '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 (113180, '2022-08-30', 7555, 106704, 6510, 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 (113181, '2022-08-30', 2302, 106705, 6510, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113182, '2022-08-30', 2315, 106706, 6510, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113183, '2022-08-30', 7780, 106707, 6511, NULL, '1.0000', '11.6000', '11.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 (113184, '2022-08-30', 7444, 106708, 6511, 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 (113185, '2022-08-30', 7881, 106709, 6511, NULL, '1.0000', '2.3000', '2.3000', '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 (113186, '2022-08-30', 2277, 106710, 6512, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '108.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113187, '2022-08-30', 2413, 106711, 6512, 54395, '1.0000', '1.1122', '1.1122', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113188, '2022-08-30', 1840, 106712, 6512, 59955, '10.0000', '0.2400', '0.2400', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113189, '2022-08-30', 7411, 106713, 6512, 61295, '4.0000', '1.5882', '1.5882', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113190, '2022-08-30', 2483, 106714, 6512, 5195, '3.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 (113191, '2022-08-30', 2642, 106715, 6512, 60910, '1.0000', '10.3548', '10.3548', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113192, '2022-08-30', 7411, 106716, 6512, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113193, '2022-08-30', 1488, 106717, 6512, 60087, '1.0000', '8.0591', '8.0591', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113194, '2022-08-30', 9740, 106718, 6512, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113195, '2022-08-30', 1613, 106719, 6512, 56973, '1.0000', '9.2833', '9.2833', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113196, '2022-08-30', 2315, 106720, 6512, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113197, '2022-08-30', 2413, 106721, 6512, 54395, '4.0000', '1.1122', '1.1122', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113198, '2022-08-30', 1533, 106722, 6512, 61383, '1.0000', '3.6489', '3.6489', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113199, '2022-08-30', 1671, 106723, 6512, 58626, '1.0000', '49.9914', '49.9914', '64.0000', '64.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113200, '2022-08-30', 1379, 106724, 6512, 49065, '1.0000', '83.0000', '83.0000', '110.0000', '110.0000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113201, '2022-08-30', 9731, 106725, 6512, 55494, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113202, '2022-08-30', 1435, 106726, 6512, 56903, '1.0000', '21.9211', '21.9211', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113203, '2022-08-30', 1644, 106727, 6512, 61460, '1.0000', '37.3333', '37.3333', '53.0000', '53.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113204, '2022-08-30', 2649, 106728, 6512, 56936, '1.0000', '78.0840', '78.0840', '131.0000', '131.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113205, '2022-08-30', 8721, 106729, 6512, NULL, '1.0000', '25.5000', '25.5000', '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 (113206, '2022-08-30', 2916, 106730, 6512, 61410, '1.0000', '15.0767', '15.0767', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113207, '2022-08-30', 7756, 106731, 6512, NULL, '1.0000', '26.9296', '26.9296', '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 (113208, '2022-08-30', 2809, 106732, 6512, 55456, '1.0000', '28.0000', '28.0000', '35.0000', '35.0000', '9.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113209, '2022-08-30', 3025, 106733, 6512, 55003, '2.0000', '2.5811', '2.5811', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113210, '2022-08-30', 2699, 106734, 6512, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113211, '2022-08-30', 1856, 106735, 6512, 53696, '1.0000', '5.1154', '5.1154', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113212, '2022-08-30', 7743, 106736, 6512, NULL, '1.0000', '1.3100', '1.3100', '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 (113213, '2022-08-30', 1602, 106737, 6512, 61384, '1.0000', '7.2012', '7.2012', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113214, '2022-08-30', 1912, 106738, 6512, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113215, '2022-08-30', 2169, 106739, 6512, 56941, '2.0000', '1.3616', '1.3616', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113216, '2022-08-30', 1602, 106740, 6512, 61384, '1.0000', '7.2012', '7.2012', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113217, '2022-08-30', 7744, 106741, 6512, NULL, '1.0000', '2.9400', '2.9400', '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 (113218, '2022-08-30', 7411, 106742, 6512, 61295, '2.0000', '1.5882', '1.5882', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113219, '2022-08-30', 2435, 106743, 6512, 60530, '1.0000', '10.0500', '10.0500', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113220, '2022-08-30', 9940, 106744, 6512, 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 (113221, '2022-08-30', 2655, 106745, 6512, 60926, '1.0000', '7.0022', '7.0022', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113222, '2022-08-30', 2503, 106746, 6512, 61296, '1.0000', '33.1971', '33.1971', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113223, '2022-08-30', 1580, 106747, 6512, 61432, '5.0000', '1.3325', '1.3325', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113224, '2022-08-30', 1670, 106748, 6512, 61426, '1.0000', '39.3855', '39.3855', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113225, '2022-08-30', 1965, 106749, 6512, 61450, '1.0000', '15.4000', '15.4000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113226, '2022-08-30', 1812, 106750, 6513, 8224, '-119.0000', '7.8900', '7.8900', '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 (113227, '2022-08-30', 1812, 106750, 6513, NULL, '120.0000', '7.8900', '7.8900', '12.5000', '12.5000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113228, '2022-08-30', 7652, 106751, 6513, NULL, '4.0000', '0.9800', '0.9800', '1.6000', '1.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 (113229, '2022-08-31', 7490, 106752, 6514, 60806, '10.0000', '2.2232', '2.2232', '0.5000', '0.5000', '170.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113230, '2022-08-31', 7674, 106753, 6514, 61113, '1.0000', '53.8855', '53.8855', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113231, '2022-08-31', 7779, 106754, 6514, 57644, '1.0000', '10.1250', '10.1250', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113232, '2022-08-31', 8689, 106755, 6514, 50448, '1.0000', '8.6135', '8.6135', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113233, '2022-08-31', 7657, 106756, 6514, 61123, '1.0000', '14.8844', '14.8844', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113234, '2022-08-31', 7756, 106757, 6514, 61138, '1.0000', '31.1808', '31.1808', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113235, '2022-08-31', 9190, 106758, 6514, 61162, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113236, '2022-08-31', 7526, 106759, 6514, NULL, '1.0000', '142.9950', '142.9950', '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 (113237, '2022-08-31', 9092, 106760, 6514, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '108.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113238, '2022-08-31', 7730, 106761, 6514, 60195, '3.0000', '0.0723', '0.0723', '0.2000', '0.2000', '99.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113239, '2022-08-31', 8304, 106762, 6514, 57627, '1.0000', '8.5947', '8.5947', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113240, '2022-08-31', 9819, 106763, 6514, 60449, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113241, '2022-08-31', 2315, 106764, 6514, 60392, '2.0000', '0.7626', '0.7626', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113242, '2022-08-31', 7883, 106765, 6514, NULL, '1.0000', '33.8000', '33.8000', '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 (113243, '2022-08-31', 8177, 106766, 6514, 57518, '1.0000', '15.5370', '15.5370', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113244, '2022-08-31', 7715, 106767, 6514, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113245, '2022-08-31', 7666, 106768, 6514, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113246, '2022-08-31', 9885, 106769, 6514, 54148, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113247, '2022-08-31', 1856, 106770, 6514, 60120, '1.0000', '1.2253', '1.2253', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113248, '2022-08-31', 7672, 106771, 6514, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113249, '2022-08-31', 7708, 106772, 6514, 60803, '1.0000', '8.3058', '8.3058', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113250, '2022-08-31', 8677, 106773, 6514, 61172, '2.0000', '2.0073', '2.0073', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113251, '2022-08-31', 7689, 106774, 6514, 60800, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113252, '2022-08-31', 8849, 106775, 6514, NULL, '1.0000', '1.0700', '1.0700', '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 (113253, '2022-08-31', 7482, 106776, 6514, 61200, '1.0000', '4.5500', '4.5500', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113254, '2022-08-31', 1501, 106777, 6514, 60504, '1.0000', '2.7931', '2.7931', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113255, '2022-08-31', 7833, 106778, 6515, NULL, '2.0000', '20.0000', '20.0000', '26.5000', '26.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 (113256, '2022-08-31', 2379, 106779, 6516, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113257, '2022-08-31', 1837, 106780, 6516, 60063, '2.0000', '0.6105', '0.6105', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113258, '2022-08-31', 1411, 106781, 6516, 61606, '1.0000', '25.9672', '25.9672', '35.0000', '35.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113259, '2022-08-31', 9942, 106782, 6516, 56923, '1.0000', '9.1000', '9.1000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113260, '2022-08-31', 1602, 106783, 6516, 61621, '1.0000', '7.1991', '7.1991', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113261, '2022-08-31', 1916, 106784, 6516, 58812, '1.0000', '9.5467', '9.5467', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113262, '2022-08-31', 1863, 106785, 6516, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113263, '2022-08-31', 2656, 106786, 6516, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113264, '2022-08-31', 2548, 106787, 6516, 56960, '1.0000', '9.2261', '9.2261', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113265, '2022-08-31', 7608, 106788, 6516, NULL, '1.0000', '6.9800', '6.9800', '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 (113266, '2022-08-31', 1976, 106789, 6516, 40300, '1.0000', '6.0000', '6.0000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113267, '2022-08-31', 2906, 106790, 6516, 18670, '1.0000', '2.6000', '2.6000', '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 (113268, '2022-08-31', 2602, 106791, 6516, 54368, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113269, '2022-08-31', 9836, 106792, 6516, 58667, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113270, '2022-08-31', 3001, 106793, 6516, NULL, '5.0000', '1.5000', '1.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 (113271, '2022-08-31', 2242, 106794, 6516, 60033, '3.0000', '0.7573', '0.7573', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113272, '2022-08-31', 2132, 106795, 6516, 4404, '1.0000', '21.6667', '21.6667', '32.0000', '32.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113273, '2022-08-31', 2237, 106796, 6516, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113274, '2022-08-31', 1805, 106797, 6516, 58776, '1.0000', '5.7294', '5.7294', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113275, '2022-08-31', 1665, 106798, 6516, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113276, '2022-08-31', 2331, 106799, 6516, 58609, '1.0000', '12.9127', '12.9127', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113277, '2022-08-31', 2821, 106800, 6516, 61643, '1.0000', '3.4327', '3.4327', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113278, '2022-08-31', 9896, 106801, 6516, 54367, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '12.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113279, '2022-08-31', 2482, 106802, 6516, 5194, '2.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 (113280, '2022-08-31', 2251, 106803, 6516, 60076, '1.0000', '12.8798', '12.8798', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113281, '2022-08-31', 2324, 106804, 6516, 60916, '1.0000', '11.4534', '11.4534', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113282, '2022-08-31', 9895, 106805, 6516, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113283, '2022-08-31', 1347, 106806, 6516, 59626, '2.0000', '-0.5451', '-0.5451', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113284, '2022-08-31', 1892, 106807, 6516, 58588, '2.0000', '0.5200', '0.5200', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113285, '2022-08-31', 9725, 106808, 6516, 46081, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113286, '2022-08-31', 1387, 106809, 6517, 54406, '1.0000', '57.7158', '57.7158', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113287, '2022-08-31', 2403, 106810, 6518, 48210, '3.0000', '17.7915', '17.7915', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113288, '2022-08-31', 2403, 106810, 6518, 34566, '3.0000', '17.7915', '17.7915', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113289, '2022-08-31', 2759, 106811, 6518, 54946, '1.0000', '4.0909', '4.0909', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113290, '2022-08-31', 2167, 106812, 6518, NULL, '1.0000', '0.6663', '0.6663', '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 (113291, '2022-08-31', 9996, 106813, 6518, 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 (113292, '2022-08-31', 2994, 106814, 6518, 61559, '1.0000', '11.3612', '11.3612', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113293, '2022-08-31', 2416, 106815, 6518, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113294, '2022-08-31', 9856, 106816, 6518, 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 (113295, '2022-08-31', 2169, 106817, 6518, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113296, '2022-08-31', 1841, 106818, 6518, NULL, '2.0000', '0.7630', '0.7630', '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 (113297, '2022-08-31', 2289, 106819, 6518, NULL, '2.0000', '0.3611', '0.3611', '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 (113298, '2022-08-31', 2416, 106820, 6518, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113299, '2022-08-31', 2169, 106821, 6518, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113300, '2022-08-31', 2237, 106822, 6518, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113301, '2022-08-31', 2416, 106823, 6518, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113302, '2022-08-31', 2208, 106824, 6518, 42554, '1.0000', '8.9000', '8.9000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113303, '2022-08-31', 1760, 106825, 6518, 58185, '5.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113304, '2022-08-31', 2068, 106826, 6518, NULL, '1.0000', '14.6943', '14.6943', '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 (113305, '2022-08-31', 1529, 106827, 6518, 48167, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113306, '2022-08-31', 2352, 106828, 6518, NULL, '4.0000', '187.6811', '187.6811', '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 (113307, '2022-08-31', 2643, 106829, 6518, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113308, '2022-08-31', 2617, 106830, 6518, NULL, '1.0000', '-5.4200', '-5.4200', '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 (113309, '2022-08-31', 1528, 106831, 6518, NULL, '1.0000', '900.1354', '900.1354', '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 (113310, '2022-08-31', 8878, 106832, 6518, NULL, '1.0000', '6.0509', '6.0509', '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 (113311, '2022-08-31', 8878, 106833, 6518, NULL, '1.0000', '6.0509', '6.0509', '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 (113312, '2022-08-31', 2352, 106834, 6518, NULL, '5.0000', '187.6811', '187.6811', '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 (113313, '2022-08-31', 2643, 106835, 6518, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113314, '2022-08-31', 2643, 106836, 6518, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113315, '2022-08-31', 2821, 106837, 6518, NULL, '1.0000', '3.4037', '3.4037', '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 (113316, '2022-08-31', 2643, 106838, 6518, 61492, '2.0000', '1.0727', '1.0727', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113317, '2022-08-31', 2277, 106839, 6518, NULL, '3.0000', '0.9399', '0.9399', '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 (113318, '2022-08-31', 9747, 106840, 6518, 59907, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113319, '2022-08-31', 2167, 106841, 6518, NULL, '2.0000', '0.6663', '0.6663', '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 (113320, '2022-08-31', 1905, 106842, 6518, NULL, '1.0000', '0.5203', '0.5203', '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 (113321, '2022-08-31', 9844, 106843, 6518, NULL, '2.0000', '2.5000', '2.5000', '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 (113322, '2022-08-31', 1855, 106844, 6518, NULL, '2.0000', '1.4000', '1.4000', '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 (113323, '2022-08-31', 2643, 106845, 6518, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113324, '2022-08-31', 1828, 106846, 6518, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113325, '2022-08-31', 9763, 106847, 6518, 51336, '2.0000', '2.3080', '2.3080', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113326, '2022-08-31', 9891, 106848, 6518, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113327, '2022-08-31', 2965, 106849, 6518, NULL, '1.0000', '25.8406', '25.8406', '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 (113328, '2022-08-31', 7333, 106850, 6519, NULL, '5.0000', '13.5000', '13.5000', '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 (113329, '2022-08-31', 1339, 106851, 6519, 13004, '-25.0000', '1.6012', '1.6012', '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 (113330, '2022-08-31', 1339, 106851, 6519, NULL, '26.0000', '1.6012', '1.6012', '3.0000', '3.0000', '-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 (113331, '2022-08-31', 7444, 106852, 6519, 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 (113332, '2022-08-31', 7730, 106853, 6519, NULL, '6.0000', '0.1000', '0.1000', '0.2000', '0.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 (113333, '2022-08-31', 1337, 106854, 6519, 10809, '-33.0000', '2.0000', '2.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 (113334, '2022-08-31', 1337, 106854, 6519, NULL, '34.0000', '2.0000', '2.0000', '3.5000', '3.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 (113335, '2022-08-31', 7518, 106855, 6519, NULL, '1.0000', '7.8200', '7.8200', '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 (113336, '2022-08-31', 7778, 106856, 6519, NULL, '1.0000', '9.0000', '9.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 (113337, '2022-08-31', 7708, 106857, 6519, NULL, '1.0000', '7.8000', '7.8000', '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 (113338, '2022-08-31', 2100, 106858, 6519, 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 (113339, '2022-08-31', 7730, 106859, 6519, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (113340, '2022-08-31', 9855, 106860, 6519, NULL, '1.0000', '28.7100', '28.7100', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113341, '2022-08-31', 8879, 106861, 6519, NULL, '1.0000', '20.9000', '20.9000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113342, '2022-08-31', 7638, 106862, 6519, NULL, '1.0000', '12.0000', '12.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 (113343, '2022-08-31', 7872, 106863, 6519, 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 (113344, '2022-08-31', 8184, 106864, 6519, NULL, '10.0000', '2.4000', '2.4000', '4.0000', '4.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 (113345, '2022-08-31', 9272, 106865, 6519, NULL, '1.0000', '3.1000', '3.1000', '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 (113346, '2022-08-31', 7674, 106866, 6519, NULL, '1.0000', '1.3000', '1.3000', '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 (113347, '2022-08-31', 2284, 106867, 6519, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (113348, '2022-08-31', 7554, 106868, 6519, NULL, '20.0000', '2.1000', '2.1000', '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 (113349, '2022-08-31', 8189, 106869, 6519, NULL, '1.0000', '42.0000', '42.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 (113350, '2022-08-31', 7690, 106870, 6519, NULL, '1.0000', '18.2800', '18.2800', '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 (113351, '2022-08-31', 7637, 106871, 6519, NULL, '1.0000', '7.3300', '7.3300', '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 (113352, '2022-08-31', 8918, 106872, 6519, NULL, '1.0000', '1.0400', '1.0400', '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 (113353, '2022-08-31', 8463, 106873, 6519, NULL, '1.0000', '18.0000', '18.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 (113354, '2022-08-31', 7881, 106874, 6519, NULL, '1.0000', '2.3000', '2.3000', '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 (113355, '2022-08-31', 8501, 106875, 6519, NULL, '1.0000', '65.0000', '65.0000', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113356, '2022-08-31', 8967, 106876, 6519, NULL, '1.0000', '1.5000', '1.5000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113357, '2022-08-31', 7832, 106877, 6519, NULL, '1.0000', '10.0000', '10.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 (113358, '2022-08-31', 2289, 106878, 6519, 2949, '-259.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 (113359, '2022-08-31', 2289, 106878, 6519, NULL, '263.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-263.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113360, '2022-08-31', 9092, 106879, 6519, NULL, '2.0000', '5.2900', '5.2900', '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 (113361, '2022-08-31', 7397, 106880, 6519, NULL, '1.0000', '74.1500', '74.1500', '131.5000', '131.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113362, '2022-08-31', 8203, 106881, 6519, NULL, '8.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (113363, '2022-08-31', 9943, 106882, 6519, NULL, '1.0000', '10.5500', '10.5500', '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 (113364, '2022-08-31', 2154, 106883, 6519, 13520, '-3.0000', '10.6849', '10.6849', '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 (113365, '2022-08-31', 2154, 106883, 6519, NULL, '4.0000', '10.6849', '10.6849', '17.5000', '17.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 (113366, '2022-08-31', 2295, 106884, 6519, 2954, '-70.0000', '0.9600', '0.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 (113367, '2022-08-31', 2295, 106884, 6519, NULL, '73.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-73.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113368, '2022-08-31', 7743, 106885, 6519, NULL, '1.0000', '1.3100', '1.3100', '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 (113369, '2022-08-31', 7345, 106886, 6519, NULL, '3.0000', '56.0000', '56.0000', '80.0000', '80.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 (113370, '2022-08-31', 7780, 106887, 6519, NULL, '1.0000', '11.6000', '11.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 (113371, '2022-08-31', 7674, 106888, 6519, NULL, '1.0000', '1.3000', '1.3000', '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 (113372, '2022-08-31', 10004, 106889, 6519, NULL, '5.0000', '2.5100', '2.5100', '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 (113373, '2022-08-31', 9729, 106890, 6519, NULL, '1.0000', '0.6200', '0.6200', '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 (113374, '2022-08-31', 8084, 106891, 6519, NULL, '1.0000', '12.7000', '12.7000', '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 (113375, '2022-08-31', 8101, 106892, 6519, NULL, '2.0000', '1.9700', '1.9700', '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 (113376, '2022-08-31', 7917, 106893, 6519, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (113377, '2022-08-31', 9160, 106894, 6519, NULL, '1.0000', '15.0000', '15.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 (113378, '2022-08-31', 7666, 106895, 6519, NULL, '1.0000', '3.6000', '3.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 (113379, '2022-08-31', 7672, 106896, 6520, NULL, '1.0000', '1.0200', '1.0200', '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 (113380, '2022-08-31', 7857, 106897, 6520, NULL, '1.0000', '15.1300', '15.1300', '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 (113381, '2022-08-31', 7368, 106898, 6521, NULL, '1.0000', '14.7500', '14.7500', '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 (113382, '2022-08-31', 1671, 106899, 6521, 58626, '1.0000', '49.9914', '49.9914', '64.0000', '64.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113383, '2022-08-31', 2020, 106900, 6521, 61645, '1.0000', '6.8382', '6.8382', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113384, '2022-08-31', 1944, 106901, 6521, 5598, '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 (113385, '2022-08-31', 7954, 106902, 6521, 56718, '4.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113386, '2022-08-31', 2413, 106903, 6521, 54395, '4.0000', '1.1122', '1.1122', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113387, '2022-08-31', 1812, 106904, 6521, 61630, '1.0000', '8.6987', '8.6987', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113388, '2022-08-31', 2656, 106905, 6521, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113389, '2022-08-31', 1637, 106906, 6521, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113390, '2022-08-31', 1863, 106907, 6521, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113391, '2022-08-31', 9763, 106908, 6521, 56958, '1.0000', '2.2663', '2.2663', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113392, '2022-08-31', 2413, 106909, 6521, 54395, '8.0000', '1.1122', '1.1122', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113393, '2022-08-31', 1837, 106910, 6521, 60063, '2.0000', '0.6105', '0.6105', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113394, '2022-08-31', 1863, 106911, 6521, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113395, '2022-08-31', 1454, 106912, 6521, 58786, '1.0000', '10.6467', '10.6467', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113396, '2022-08-31', 2379, 106913, 6521, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113397, '2022-08-31', 2327, 106914, 6521, 59969, '1.0000', '3.3869', '3.3869', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113398, '2022-08-31', 1665, 106915, 6521, 59974, '1.0000', '1.1823', '1.1823', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113399, '2022-08-31', 1521, 106916, 6521, 61614, '1.0000', '2.8889', '2.8889', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113400, '2022-08-31', 2277, 106917, 6521, 56888, '1.0000', '0.4266', '0.4266', '1.5000', '1.5000', '107.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113401, '2022-08-31', 1812, 106918, 6521, 61630, '1.0000', '8.6987', '8.6987', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113402, '2022-08-31', 2262, 106919, 6521, 55469, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113403, '2022-08-31', 9940, 106920, 6521, 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 (113404, '2022-08-31', 2317, 106921, 6521, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113405, '2022-08-31', 2169, 106922, 6521, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113406, '2022-08-31', 2858, 106923, 6521, 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 (113407, '2022-08-31', 9855, 106924, 6521, 61590, '1.0000', '31.0000', '31.0000', '51.5000', '51.5000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113408, '2022-08-31', 7411, 106925, 6521, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113409, '2022-08-31', 1371, 106926, 6521, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113410, '2022-08-31', 1863, 106927, 6521, 60078, '2.0000', '1.3992', '1.3992', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113411, '2022-09-01', 7666, 106928, 6522, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113412, '2022-09-01', 7523, 106929, 6522, 61794, '1.0000', '12.1008', '12.1008', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113413, '2022-09-01', 9636, 106930, 6522, NULL, '1.0000', '52.6667', '52.6667', '75.5000', '75.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113414, '2022-09-01', 3001, 106931, 6522, NULL, '2.0000', '1.5000', '1.5000', '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 (113415, '2022-09-01', 2315, 106932, 6522, 60392, '5.0000', '0.7626', '0.7626', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113416, '2022-09-01', 7674, 106933, 6522, 61710, '1.0000', '57.0138', '57.0138', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113417, '2022-09-01', 9463, 106934, 6522, 56041, '1.0000', '3.7063', '3.7063', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113418, '2022-09-01', 8825, 106935, 6522, 60406, '1.0000', '22.5000', '22.5000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113419, '2022-09-01', 8825, 106935, 6522, NULL, '1.0000', '22.5000', '22.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 (113420, '2022-09-01', 7918, 106936, 6522, NULL, '1.0000', '9.2000', '9.2000', '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 (113421, '2022-09-01', 7588, 106937, 6522, 61773, '3.0000', '8.3798', '8.3798', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113422, '2022-09-01', 9160, 106938, 6522, NULL, '1.0000', '1.3097', '1.3097', '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 (113423, '2022-09-01', 7825, 106939, 6522, 61766, '1.0000', '21.5654', '21.5654', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113424, '2022-09-01', 8085, 106940, 6522, NULL, '2.0000', '-30.0931', '-30.0931', '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 (113425, '2022-09-01', 8849, 106941, 6522, NULL, '2.0000', '1.0700', '1.0700', '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 (113426, '2022-09-01', 7558, 106942, 6522, NULL, '6.0000', '-19.8908', '-19.8908', '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 (113427, '2022-09-01', 2104, 106943, 6522, NULL, '1.0000', '0.2000', '0.2000', '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 (113428, '2022-09-01', 7762, 106944, 6522, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113429, '2022-09-01', 8457, 106945, 6522, NULL, '1.0000', '-8.0516', '-8.0516', '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 (113430, '2022-09-01', 7881, 106946, 6522, 60422, '2.0000', '-9.0457', '-9.0457', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113431, '2022-09-01', 9751, 106947, 6522, 60568, '1.0000', '1.2432', '1.2432', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113432, '2022-09-01', 9734, 106948, 6522, 61746, '1.0000', '0.3316', '0.3316', '0.7000', '0.7000', '196.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113433, '2022-09-01', 8243, 106949, 6522, 61802, '2.0000', '1.1400', '1.1400', '1.5000', '1.5000', '57.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113434, '2022-09-01', 9729, 106950, 6522, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113435, '2022-09-01', 9804, 106951, 6522, 61762, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113436, '2022-09-01', 2825, 106952, 6522, NULL, '2.0000', '8.0000', '8.0000', '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 (113437, '2022-09-01', 9272, 106953, 6522, NULL, '2.0000', '3.1000', '3.1000', '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 (113438, '2022-09-01', 7482, 106954, 6522, 61797, '1.0000', '4.4749', '4.4749', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113439, '2022-09-01', 7886, 106955, 6522, 60384, '1.0000', '4.5754', '4.5754', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113440, '2022-09-01', 9821, 106956, 6522, 56590, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113441, '2022-09-01', 9729, 106957, 6522, 60467, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113442, '2022-09-01', 8359, 106958, 6522, 61791, '1.0000', '227.0678', '227.0678', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113443, '2022-09-01', 7514, 106959, 6522, 61782, '2.0000', '-118468.3389', '-118468.3389', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113444, '2022-09-01', 8677, 106960, 6522, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113445, '2022-09-01', 1532, 106961, 6523, 60037, '3.0000', '22.8160', '22.8160', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113446, '2022-09-01', 7741, 106962, 6523, 59956, '1.0000', '3.4144', '3.4144', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113447, '2022-09-01', 2633, 106963, 6523, 56253, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113448, '2022-09-01', 9729, 106964, 6523, 61673, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113449, '2022-09-01', 2384, 106965, 6523, 60032, '2.0000', '0.4392', '0.4392', '0.8000', '0.8000', '83.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113450, '2022-09-01', 2228, 106966, 6523, 60911, '1.0000', '28.4978', '28.4978', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113451, '2022-09-01', 1687, 106967, 6523, 61651, '1.0000', '15.0466', '15.0466', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113452, '2022-09-01', 9896, 106968, 6523, 54367, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '11.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113453, '2022-09-01', 2873, 106969, 6523, 17898, '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 (113454, '2022-09-01', 2655, 106970, 6523, 60926, '2.0000', '7.0022', '7.0022', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113455, '2022-09-01', 2169, 106971, 6523, 56941, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113456, '2022-09-01', 7802, 106972, 6523, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113457, '2022-09-01', 2352, 106973, 6523, 61648, '4.0000', '118.5472', '118.5472', '4.0000', '4.0000', '56.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113458, '2022-09-01', 2643, 106974, 6523, 60925, '1.0000', '1.0109', '1.0109', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113459, '2022-09-01', 1944, 106975, 6523, 5598, '1.0000', '5.0000', '5.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 (113460, '2022-09-01', 2699, 106976, 6523, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113461, '2022-09-01', 1754, 106977, 6524, 59980, '4.0000', '32.0617', '32.0617', '23.5000', '23.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113462, '2022-09-01', 1307, 106978, 6525, 58787, '1.0000', '4.1753', '4.1753', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113463, '2022-09-01', 2237, 106979, 6525, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113464, '2022-09-01', 2248, 106980, 6526, 60291, '1.0000', '3.6964', '3.6964', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113465, '2022-09-01', 1590, 106981, 6526, 49903, '3.0000', '2.2860', '2.2860', '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 (113466, '2022-09-01', 2095, 106982, 6526, NULL, '1.0000', '-8.5000', '-8.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 (113467, '2022-09-01', 9995, 106983, 6526, NULL, '1.0000', '8.2000', '8.2000', '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 (113468, '2022-09-01', 1809, 106984, 6526, 61547, '1.0000', '11.0494', '11.0494', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113469, '2022-09-01', 7411, 106985, 6526, NULL, '1.0000', '1.2819', '1.2819', '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 (113470, '2022-09-01', 1665, 106986, 6526, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113471, '2022-09-01', 10004, 106987, 6526, NULL, '5.0000', '2.5100', '2.5100', '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 (113472, '2022-09-01', 2315, 106988, 6526, 54963, '4.0000', '0.7700', '0.7700', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113473, '2022-09-01', 2296, 106989, 6526, 55720, '1.0000', '16.0300', '16.0300', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113474, '2022-09-01', 1333, 106990, 6526, 53238, '2.0000', '0.7056', '0.7056', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113475, '2022-09-01', 1501, 106991, 6526, NULL, '1.0000', '0.3856', '0.3856', '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 (113476, '2022-09-01', 2332, 106992, 6526, NULL, '1.0000', '-41.5866', '-41.5866', '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 (113477, '2022-09-01', 7411, 106993, 6526, NULL, '1.0000', '1.2819', '1.2819', '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 (113478, '2022-09-01', 1812, 106994, 6526, 59911, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113479, '2022-09-01', 9634, 106995, 6526, NULL, '2.0000', '4.4667', '4.4667', '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 (113480, '2022-09-01', 8677, 106996, 6526, NULL, '3.0000', '1026.1382', '1026.1382', '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 (113481, '2022-09-01', 8595, 106997, 6526, NULL, '1.0000', '-3.2120', '-3.2120', '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 (113482, '2022-09-01', 2806, 106998, 6526, 54832, '1.0000', '6.2500', '6.2500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113483, '2022-09-01', 2068, 106999, 6526, NULL, '1.0000', '14.6943', '14.6943', '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 (113484, '2022-09-01', 1871, 107000, 6526, NULL, '10.0000', '-33.0401', '-33.0401', '3.7000', '3.7000', '-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 (113485, '2022-09-01', 2362, 107001, 6526, 56465, '1.0000', '84.7015', '84.7015', '179.0000', '179.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113486, '2022-09-01', 2669, 107002, 6526, NULL, '1.0000', '24.3367', '24.3367', '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 (113487, '2022-09-01', 9831, 107003, 6526, 61498, '1.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113488, '2022-09-01', 1371, 107004, 6526, NULL, '1.0000', '180.8891', '180.8891', '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 (113489, '2022-09-01', 2604, 107005, 6526, 23993, '1.0000', '90.0000', '90.0000', '110.0000', '110.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 (113490, '2022-09-01', 1812, 107006, 6526, 59911, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113491, '2022-09-01', 1637, 107007, 6526, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113492, '2022-09-01', 2384, 107008, 6526, NULL, '2.0000', '-1.7022', '-1.7022', '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 (113493, '2022-09-01', 2625, 107009, 6526, NULL, '1.0000', '17.0000', '17.0000', '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 (113494, '2022-09-01', 2643, 107010, 6526, 61492, '3.0000', '1.0727', '1.0727', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113495, '2022-09-01', 2668, 107011, 6526, 60283, '1.0000', '10.6725', '10.6725', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113496, '2022-09-01', 9777, 107012, 6526, NULL, '1.0000', '22.9900', '22.9900', '30.2300', '30.2300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113497, '2022-09-01', 2643, 107013, 6526, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113498, '2022-09-01', 2643, 107014, 6526, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113499, '2022-09-01', 1406, 107015, 6526, 49512, '1.0000', '21.3954', '21.3954', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113500, '2022-09-01', 1407, 107016, 6526, 48930, '1.0000', '19.0167', '19.0167', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113501, '2022-09-01', 2135, 107017, 6526, NULL, '1.0000', '-0.2588', '-0.2588', '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 (113502, '2022-09-01', 9747, 107018, 6526, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113503, '2022-09-01', 7852, 107019, 6526, 39761, '1.0000', '15.0000', '15.0000', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113504, '2022-09-01', 7411, 107020, 6526, NULL, '1.0000', '1.2819', '1.2819', '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 (113505, '2022-09-01', 8767, 107021, 6526, 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 (113506, '2022-09-01', 2442, 107022, 6526, 51951, '1.0000', '6.7125', '6.7125', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 431);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113507, '2022-09-01', 9734, 107023, 6526, NULL, '1.0000', '0.4261', '0.4261', '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 (113508, '2022-09-01', 2384, 107024, 6526, NULL, '3.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (113509, '2022-09-01', 8595, 107025, 6526, NULL, '1.0000', '-3.2120', '-3.2120', '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 (113510, '2022-09-01', 2643, 107026, 6526, 61492, '2.0000', '1.0727', '1.0727', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113511, '2022-09-01', 9482, 107027, 6526, 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 (113512, '2022-09-01', 9996, 107028, 6526, 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 (113513, '2022-09-01', 2823, 107029, 6526, 58215, '1.0000', '-5.2900', '-5.2900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113514, '2022-09-01', 2248, 107030, 6526, 60291, '1.0000', '3.6964', '3.6964', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113515, '2022-09-01', 1337, 107031, 6526, 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 (113516, '2022-09-01', 2233, 107032, 6526, 60278, '1.0000', '25.7222', '25.7222', '44.0000', '44.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113517, '2022-09-01', 9503, 107033, 6526, NULL, '1.0000', '24.1775', '24.1775', '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 (113518, '2022-09-01', 9747, 107034, 6526, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113519, '2022-09-01', 2059, 107035, 6526, 61500, '1.0000', '10.8085', '10.8085', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113520, '2022-09-01', 8622, 107036, 6527, 60140, '1.0000', '-10.3674', '-10.3674', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113521, '2022-09-01', 2445, 107037, 6528, NULL, '4.0000', '3.2000', '3.2000', '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 (113522, '2022-09-01', 1690, 107038, 6528, 60355, '1.0000', '8.6455', '8.6455', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113523, '2022-09-01', 1386, 107039, 6528, 60299, '1.0000', '4.5458', '4.5458', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113524, '2022-09-01', 1409, 107040, 6528, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113525, '2022-09-01', 1863, 107041, 6528, 61545, '1.0000', '1.4938', '1.4938', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113526, '2022-09-01', 7411, 107042, 6528, NULL, '1.0000', '1.2819', '1.2819', '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 (113527, '2022-09-01', 1711, 107043, 6528, 60240, '1.0000', '10.7231', '10.7231', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113528, '2022-09-01', 1999, 107044, 6528, 61257, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113529, '2022-09-01', 2169, 107045, 6528, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113530, '2022-09-01', 8208, 107046, 6528, NULL, '4.0000', '47.9541', '47.9541', '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 (113531, '2022-09-01', 2642, 107047, 6528, 61475, '1.0000', '8.2025', '8.2025', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113532, '2022-09-01', 10010, 107048, 6528, 61586, '2.0000', '0.8400', '0.8400', '1.1100', '1.1100', '98.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113533, '2022-09-01', 2948, 107049, 6528, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113534, '2022-09-01', 9956, 107050, 6528, 61551, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113535, '2022-09-01', 8770, 107051, 6528, 59661, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113536, '2022-09-01', 9469, 107052, 6528, 61479, '1.0000', '5.5270', '5.5270', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113537, '2022-09-01', 8170, 107053, 6528, NULL, '1.0000', '5.7500', '5.7500', '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 (113538, '2022-09-01', 2109, 107054, 6528, NULL, '1.0000', '0.0413', '0.0413', '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 (113539, '2022-09-01', 2237, 107055, 6528, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113540, '2022-09-01', 2545, 107056, 6528, 61556, '1.0000', '8.8992', '8.8992', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113541, '2022-09-01', 1965, 107057, 6528, 60345, '1.0000', '13.8600', '13.8600', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113542, '2022-09-01', 1695, 107058, 6528, 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 (113543, '2022-09-01', 2295, 107059, 6528, 51373, '1.0000', '1.4864', '1.4864', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113544, '2022-09-01', 2352, 107060, 6528, NULL, '2.0000', '187.6811', '187.6811', '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 (113545, '2022-09-01', 9747, 107061, 6528, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113546, '2022-09-01', 1425, 107062, 6528, NULL, '2.0000', '481.1599', '481.1599', '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 (113547, '2022-09-01', 2379, 107063, 6528, NULL, '1.0000', '-14.1447', '-14.1447', '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 (113548, '2022-09-01', 1837, 107064, 6528, 59893, '1.0000', '1.6544', '1.6544', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113549, '2022-09-01', 1787, 107065, 6528, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113550, '2022-09-01', 9946, 107066, 6528, NULL, '1.0000', '15.1000', '15.1000', '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 (113551, '2022-09-01', 9743, 107067, 6528, 58138, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113552, '2022-09-01', 1398, 107068, 6528, 48924, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113553, '2022-09-01', 1812, 107069, 6528, 59911, '1.0000', '9.3470', '9.3470', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113554, '2022-09-01', 7316, 107070, 6528, 51382, '2.0000', '0.9020', '0.9020', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113555, '2022-09-01', 1837, 107071, 6528, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113556, '2022-09-01', 2169, 107072, 6528, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113557, '2022-09-01', 9945, 107073, 6528, NULL, '1.0000', '12.1000', '12.1000', '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 (113558, '2022-09-01', 1825, 107074, 6528, 55533, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113559, '2022-09-01', 1666, 107075, 6528, 57713, '1.0000', '2.7066', '2.7066', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113560, '2022-09-01', 7745, 107076, 6528, NULL, '1.0000', '6.7000', '6.7000', '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 (113561, '2022-09-01', 2260, 107077, 6528, 51688, '2.0000', '4.7545', '4.7545', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113562, '2022-09-01', 2366, 107078, 6528, NULL, '1.0000', '-98.6017', '-98.6017', '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 (113563, '2022-09-01', 8745, 107079, 6528, 61488, '1.0000', '14.0504', '14.0504', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113564, '2022-09-01', 2163, 107080, 6528, NULL, '1.0000', '16.5835', '16.5835', '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 (113565, '2022-09-01', 2699, 107081, 6528, 61494, '1.0000', '4.2435', '4.2435', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113566, '2022-09-01', 2135, 107082, 6528, NULL, '1.0000', '-0.2588', '-0.2588', '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 (113567, '2022-09-01', 1746, 107083, 6528, 59870, '1.0000', '4.8553', '4.8553', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113568, '2022-09-01', 2352, 107084, 6528, NULL, '8.0000', '187.6811', '187.6811', '4.0000', '4.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 (113569, '2022-09-01', 2169, 107085, 6528, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113570, '2022-09-01', 1410, 107086, 6528, NULL, '1.0000', '124.6472', '124.6472', '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 (113571, '2022-09-01', 2167, 107087, 6528, NULL, '1.0000', '0.6663', '0.6663', '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 (113572, '2022-09-01', 1855, 107088, 6528, 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 (113573, '2022-09-01', 2386, 107089, 6528, 56437, '1.0000', '2.8183', '2.8183', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113574, '2022-09-01', 8878, 107090, 6528, NULL, '1.0000', '6.0509', '6.0509', '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 (113575, '2022-09-01', 1756, 107091, 6528, 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 (113576, '2022-09-01', 2354, 107092, 6528, NULL, '1.0000', '28.4264', '28.4264', '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 (113577, '2022-09-01', 1874, 107093, 6528, NULL, '1.0000', '6.1000', '6.1000', '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 (113578, '2022-09-01', 2916, 107094, 6528, 60332, '1.0000', '-7436.2444', '-7436.2444', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113579, '2022-09-01', 8083, 107095, 6528, NULL, '1.0000', '26.0000', '26.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 (113580, '2022-09-01', 7411, 107096, 6528, NULL, '1.0000', '1.2819', '1.2819', '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 (113581, '2022-09-01', 2699, 107097, 6528, 61494, '1.0000', '4.2435', '4.2435', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113582, '2022-09-01', 1339, 107098, 6528, 61581, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113583, '2022-09-01', 9831, 107099, 6528, 61498, '1.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113584, '2022-09-01', 9695, 107100, 6528, 61501, '1.0000', '5.5201', '5.5201', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113585, '2022-09-01', 1846, 107101, 6528, 61549, '1.0000', '-89.9389', '-89.9389', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113586, '2022-09-01', 1602, 107102, 6528, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113587, '2022-09-01', 9747, 107103, 6528, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113588, '2022-09-01', 1855, 107104, 6528, 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 (113589, '2022-09-01', 7749, 107105, 6528, NULL, '1.0000', '20.0200', '20.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 (113590, '2022-09-01', 2108, 107106, 6528, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113591, '2022-09-01', 9882, 107107, 6528, 54071, '1.0000', '14.3500', '14.3500', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113592, '2022-09-01', 2948, 107108, 6528, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113593, '2022-09-01', 1839, 107109, 6528, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (113594, '2022-09-01', 7852, 107110, 6528, 39761, '1.0000', '15.0000', '15.0000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113595, '2022-09-01', 2959, 107111, 6528, 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 (113596, '2022-09-01', 8208, 107112, 6528, NULL, '2.0000', '47.9541', '47.9541', '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 (113597, '2022-09-01', 2036, 107113, 6528, 59684, '2.0000', '12.5000', '12.5000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113598, '2022-09-01', 7926, 107114, 6528, NULL, '1.0000', '4.2867', '4.2867', '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 (113599, '2022-09-01', 2614, 107115, 6528, 60219, '1.0000', '17.1400', '17.1400', '38.5000', '38.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113600, '2022-09-01', 1602, 107116, 6529, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113601, '2022-09-01', 2295, 107117, 6529, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113602, '2022-09-01', 2416, 107118, 6529, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113603, '2022-09-01', 1495, 107119, 6529, 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 (113604, '2022-09-01', 1328, 107120, 6529, 32533, '1.0000', '3.1500', '3.1500', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113605, '2022-09-01', 2293, 107121, 6529, NULL, '3.0000', '-17.4320', '-17.4320', '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 (113606, '2022-09-01', 1807, 107122, 6529, 61572, '4.0000', '3.9687', '3.9687', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113607, '2022-09-01', 1807, 107122, 6529, NULL, '4.0000', '3.9687', '3.9687', '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 (113608, '2022-09-01', 2135, 107123, 6529, NULL, '1.0000', '-0.2588', '-0.2588', '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 (113609, '2022-09-01', 2169, 107124, 6529, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113610, '2022-09-01', 1602, 107125, 6529, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113611, '2022-09-01', 7925, 107126, 6529, NULL, '1.0000', '6.8000', '6.8000', '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 (113612, '2022-09-01', 1702, 107127, 6529, NULL, '1.0000', '-12.4833', '-12.4833', '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 (113613, '2022-09-01', 9747, 107128, 6529, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113614, '2022-09-01', 1840, 107129, 6529, NULL, '4.0000', '0.2400', '0.2400', '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 (113615, '2022-09-01', 2289, 107130, 6529, NULL, '6.0000', '0.3611', '0.3611', '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 (113616, '2022-09-01', 2169, 107131, 6529, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113617, '2022-09-01', 2950, 107132, 6529, NULL, '3.0000', '1.4000', '1.4000', '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 (113618, '2022-09-01', 9503, 107133, 6529, NULL, '1.0000', '24.1775', '24.1775', '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 (113619, '2022-09-01', 1602, 107134, 6529, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113620, '2022-09-01', 2643, 107135, 6529, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113621, '2022-09-01', 9856, 107136, 6529, 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 (113622, '2022-09-01', 2352, 107137, 6529, NULL, '3.0000', '187.6811', '187.6811', '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 (113623, '2022-09-01', 7350, 107138, 6529, NULL, '1.0000', '30.4000', '30.4000', '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 (113624, '2022-09-01', 2283, 107139, 6529, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113625, '2022-09-01', 7558, 107140, 6529, NULL, '10.0000', '-37.0255', '-37.0255', '4.0000', '4.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 (113626, '2022-09-01', 1688, 107141, 6529, 13745, '1.0000', '23.2094', '23.2094', '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 (113627, '2022-09-01', 2655, 107142, 6529, NULL, '1.0000', '-300.8454', '-300.8454', '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 (113628, '2022-09-01', 9891, 107143, 6529, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113629, '2022-09-01', 2540, 107144, 6529, NULL, '1.0000', '45.0000', '45.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 (113630, '2022-09-01', 1665, 107145, 6529, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113631, '2022-09-01', 1812, 107146, 6529, 57783, '2.0000', '9.3470', '9.3470', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113632, '2022-09-01', 1825, 107147, 6529, NULL, '1.0000', '7.4000', '7.4000', '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 (113633, '2022-09-01', 7472, 107148, 6529, NULL, '1.0000', '-107.6090', '-107.6090', '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 (113634, '2022-09-01', 7318, 107149, 6529, 48474, '1.0000', '12.1931', '12.1931', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113635, '2022-09-01', 2284, 107150, 6529, 55589, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113636, '2022-09-01', 9956, 107151, 6529, 61551, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113637, '2022-09-01', 2068, 107152, 6529, NULL, '1.0000', '14.6943', '14.6943', '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 (113638, '2022-09-01', 9788, 107153, 6529, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113639, '2022-09-01', 2088, 107154, 6529, 59892, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113640, '2022-09-01', 1828, 107155, 6529, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113641, '2022-09-01', 2315, 107156, 6529, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113642, '2022-09-01', 2643, 107157, 6529, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113643, '2022-09-01', 2248, 107158, 6529, 60291, '1.0000', '3.6964', '3.6964', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113644, '2022-09-01', 2295, 107159, 6529, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113645, '2022-09-01', 2293, 107160, 6529, NULL, '3.0000', '-17.4320', '-17.4320', '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 (113646, '2022-09-01', 9902, 107161, 6529, 59883, '1.0000', '7.9671', '7.9671', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113647, '2022-09-01', 1985, 107162, 6529, 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 (113648, '2022-09-01', 9763, 107163, 6529, NULL, '3.0000', '2.3080', '2.3080', '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 (113649, '2022-09-01', 2438, 107164, 6529, 61478, '1.0000', '27.1694', '27.1694', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113650, '2022-09-01', 8595, 107165, 6529, NULL, '1.0000', '-3.2120', '-3.2120', '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 (113651, '2022-09-01', 2295, 107166, 6529, 51373, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113652, '2022-09-01', 2135, 107167, 6529, NULL, '1.0000', '-0.2588', '-0.2588', '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 (113653, '2022-09-01', 2384, 107168, 6529, NULL, '2.0000', '-1.7022', '-1.7022', '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 (113654, '2022-09-01', 1665, 107169, 6529, 61557, '2.0000', '1.4459', '1.4459', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113655, '2022-09-01', 9783, 107170, 6529, 59891, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113656, '2022-09-01', 2068, 107171, 6529, NULL, '1.0000', '14.6943', '14.6943', '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 (113657, '2022-09-01', 2315, 107172, 6529, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113658, '2022-09-01', 2283, 107173, 6529, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113659, '2022-09-01', 8878, 107174, 6529, NULL, '1.0000', '6.0509', '6.0509', '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 (113660, '2022-09-01', 2315, 107175, 6529, 54963, '2.0000', '0.7700', '0.7700', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113661, '2022-09-01', 9963, 107176, 6529, 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 (113662, '2022-09-01', 7756, 107177, 6529, NULL, '1.0000', '2.5000', '2.5000', '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 (113663, '2022-09-01', 7411, 107178, 6529, NULL, '1.0000', '1.2819', '1.2819', '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 (113664, '2022-09-01', 2283, 107179, 6529, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113665, '2022-09-01', 7558, 107180, 6529, NULL, '3.0000', '-37.0255', '-37.0255', '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 (113666, '2022-09-01', 2302, 107181, 6529, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113667, '2022-09-01', 2169, 107182, 6529, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113668, '2022-09-01', 2250, 107183, 6529, 61562, '1.0000', '9.1988', '9.1988', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113669, '2022-09-01', 2315, 107184, 6529, 54963, '1.0000', '0.7700', '0.7700', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113670, '2022-09-01', 2699, 107185, 6529, 61494, '1.0000', '4.2435', '4.2435', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113671, '2022-09-01', 1310, 107186, 6529, 60260, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '44.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113672, '2022-09-01', 2167, 107187, 6529, NULL, '1.0000', '0.6663', '0.6663', '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 (113673, '2022-09-01', 2237, 107188, 6529, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113674, '2022-09-01', 1501, 107189, 6529, NULL, '1.0000', '0.3856', '0.3856', '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 (113675, '2022-09-01', 1665, 107190, 6529, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113676, '2022-09-01', 1435, 107191, 6529, 59862, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113677, '2022-09-01', 2037, 107192, 6529, 59674, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113678, '2022-09-01', 2070, 107193, 6530, NULL, '1.0000', '2.0000', '2.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 (113679, '2022-09-01', 8918, 107194, 6530, NULL, '2.0000', '1.0400', '1.0400', '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 (113680, '2022-09-01', 10016, 107195, 6530, NULL, '2.0000', '10.2000', '10.2000', '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 (113681, '2022-09-01', 8714, 107196, 6530, NULL, '1.0000', '5.2100', '5.2100', '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 (113682, '2022-09-01', 7950, 107197, 6530, NULL, '1.0000', '2.4000', '2.4000', '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 (113683, '2022-09-01', 9092, 107198, 6530, NULL, '6.0000', '5.2900', '5.2900', '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 (113684, '2022-09-01', 7639, 107199, 6530, 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 (113685, '2022-09-01', 8425, 107200, 6530, 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 (113686, '2022-09-01', 8787, 107201, 6530, NULL, '1.0000', '5.9300', '5.9300', '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 (113687, '2022-09-01', 9190, 107202, 6530, NULL, '1.0000', '7.6000', '7.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 (113688, '2022-09-01', 7560, 107203, 6530, NULL, '1.0000', '33.0200', '33.0200', '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 (113689, '2022-09-01', 7708, 107204, 6530, NULL, '1.0000', '7.8000', '7.8000', '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 (113690, '2022-09-01', 8039, 107205, 6530, NULL, '1.0000', '14.7500', '14.7500', '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 (113691, '2022-09-01', 7743, 107206, 6530, NULL, '1.0000', '1.3100', '1.3100', '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 (113692, '2022-09-01', 7639, 107207, 6530, 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 (113693, '2022-09-01', 7999, 107208, 6530, NULL, '1.0000', '1.7500', '1.7500', '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 (113694, '2022-09-01', 7675, 107209, 6530, NULL, '1.0000', '11.4300', '11.4300', '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 (113695, '2022-09-01', 9092, 107210, 6530, NULL, '4.0000', '5.2900', '5.2900', '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 (113696, '2022-09-01', 7641, 107211, 6530, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (113697, '2022-09-01', 7741, 107212, 6530, NULL, '1.0000', '1.2000', '1.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 (113698, '2022-09-01', 7547, 107213, 6530, NULL, '2.0000', '0.0000', '0.0000', '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 (113699, '2022-09-01', 7557, 107214, 6530, NULL, '10.0000', '0.5000', '0.5000', '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 (113700, '2022-09-01', 7799, 107215, 6530, NULL, '1.0000', '6.4000', '6.4000', '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 (113701, '2022-09-01', 9092, 107216, 6530, NULL, '34.0000', '5.2900', '5.2900', '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 (113702, '2022-09-01', 7335, 107217, 6530, NULL, '1.0000', '14.5000', '14.5000', '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 (113703, '2022-09-01', 7707, 107218, 6530, NULL, '2.0000', '7.0000', '7.0000', '9.5000', '9.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 (113704, '2022-09-01', 7457, 107219, 6530, NULL, '2.0000', '6.0000', '6.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 (113705, '2022-09-01', 9204, 107220, 6530, NULL, '1.0000', '8.1600', '8.1600', '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 (113706, '2022-09-01', 8913, 107221, 6530, NULL, '1.0000', '15.1700', '15.1700', '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 (113707, '2022-09-01', 7411, 107222, 6530, NULL, '1.0000', '1.3500', '1.3500', '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 (113708, '2022-09-01', 7753, 107223, 6530, NULL, '1.0000', '3.4000', '3.4000', '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 (113709, '2022-09-01', 1806, 107224, 6530, 11433, '-10.0000', '28.1300', '28.1300', '40.5000', '40.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 (113710, '2022-09-01', 1806, 107224, 6530, NULL, '12.0000', '28.1300', '28.1300', '40.5000', '40.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 (113711, '2022-09-01', 7473, 107225, 6530, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113712, '2022-09-01', 8638, 107226, 6530, NULL, '2.0000', '0.5100', '0.5100', '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 (113713, '2022-09-01', 7883, 107227, 6530, NULL, '2.0000', '34.0000', '34.0000', '45.0000', '45.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 (113714, '2022-09-01', 7925, 107228, 6530, NULL, '1.0000', '8.3000', '8.3000', '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 (113715, '2022-09-01', 7954, 107229, 6530, 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 (113716, '2022-09-01', 1647, 107230, 6530, 3218, '-26.0000', '4.7200', '4.7200', '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 (113717, '2022-09-01', 1647, 107230, 6530, NULL, '27.0000', '4.7200', '4.7200', '10.0000', '10.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 (113718, '2022-09-01', 8430, 107231, 6530, NULL, '1.0000', '32.0800', '32.0800', '46.6000', '46.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 (113719, '2022-09-01', 7482, 107232, 6530, NULL, '1.0000', '3.0500', '3.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 (113720, '2022-09-01', 7518, 107233, 6530, NULL, '1.0000', '7.8200', '7.8200', '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 (113721, '2022-09-01', 8053, 107234, 6530, NULL, '2.0000', '0.8000', '0.8000', '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 (113722, '2022-09-01', 9272, 107235, 6530, NULL, '2.0000', '3.1000', '3.1000', '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 (113723, '2022-09-01', 8413, 107236, 6530, 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 (113724, '2022-09-01', 8746, 107237, 6530, NULL, '1.0000', '3.1500', '3.1500', '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 (113725, '2022-09-01', 8756, 107238, 6530, NULL, '1.0000', '7.5000', '7.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 (113726, '2022-09-01', 7514, 107239, 6530, NULL, '2.0000', '2.2500', '2.2500', '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 (113727, '2022-09-01', 9202, 107240, 6530, NULL, '1.0000', '3.5000', '3.5000', '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 (113728, '2022-09-01', 7321, 107241, 6530, NULL, '1.0000', '7.9500', '7.9500', '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 (113729, '2022-09-01', 8084, 107242, 6531, NULL, '2.0000', '12.7000', '12.7000', '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 (113730, '2022-09-01', 8763, 107243, 6532, NULL, '2.0000', '7.4944', '7.4944', '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 (113731, '2022-09-01', 8746, 107244, 6532, 61266, '1.0000', '2.8100', '2.8100', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113732, '2022-09-01', 2260, 107245, 6532, 48160, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113733, '2022-09-01', 2263, 107246, 6532, 61560, '1.0000', '18.6742', '18.6742', '8.0000', '8.0000', '26.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113734, '2022-09-01', 1856, 107247, 6532, NULL, '1.0000', '155.0099', '155.0099', '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 (113735, '2022-09-01', 9634, 107248, 6532, NULL, '2.0000', '4.4667', '4.4667', '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 (113736, '2022-09-01', 1676, 107249, 6532, 38561, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113737, '2022-09-01', 1946, 107250, 6532, NULL, '1.0000', '-6.7231', '-6.7231', '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 (113738, '2022-09-01', 9878, 107251, 6532, NULL, '1.0000', '9.6000', '9.6000', '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 (113739, '2022-09-01', 1689, 107252, 6532, 59873, '1.0000', '15.8853', '15.8853', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113740, '2022-09-01', 1837, 107253, 6532, 59893, '3.0000', '1.6544', '1.6544', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113741, '2022-09-01', 1787, 107254, 6532, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113742, '2022-09-01', 1620, 107255, 6532, 60302, '1.0000', '2.3610', '2.3610', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113743, '2022-09-01', 2237, 107256, 6532, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113744, '2022-09-01', 2384, 107257, 6532, NULL, '2.0000', '-1.7022', '-1.7022', '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 (113745, '2022-09-01', 9204, 107258, 6533, NULL, '1.0000', '8.1600', '8.1600', '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 (113746, '2022-09-01', 2169, 107259, 6533, 56231, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113747, '2022-09-01', 7459, 107260, 6533, NULL, '1.0000', '4.5753', '4.5753', '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 (113748, '2022-09-01', 2582, 107261, 6533, 61617, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113749, '2022-09-01', 9716, 107262, 6533, 45080, '1.0000', '4.8500', '4.8500', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113750, '2022-09-01', 2266, 107263, 6533, 60013, '1.0000', '7.1367', '7.1367', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113751, '2022-09-01', 7411, 107264, 6533, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113752, '2022-09-01', 9747, 107265, 6533, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113753, '2022-09-01', 7741, 107266, 6533, 59956, '1.0000', '3.4144', '3.4144', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113754, '2022-09-01', 2821, 107267, 6533, 61643, '1.0000', '3.4327', '3.4327', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113755, '2022-09-01', 2353, 107268, 6533, NULL, '1.0000', '4.4500', '4.4500', '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 (113756, '2022-09-01', 1855, 107269, 6533, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113757, '2022-09-01', 2262, 107270, 6533, 55469, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113758, '2022-09-01', 1888, 107271, 6533, 60057, '1.0000', '17.6053', '17.6053', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113759, '2022-09-01', 2229, 107272, 6533, 60527, '1.0000', '27.7682', '27.7682', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113760, '2022-09-01', 1703, 107273, 6533, 58840, '1.0000', '8.9424', '8.9424', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113761, '2022-09-01', 2633, 107274, 6533, 56253, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113762, '2022-09-01', 2020, 107275, 6533, 61645, '1.0000', '6.8382', '6.8382', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113763, '2022-09-01', 1602, 107276, 6533, 61621, '1.0000', '7.1991', '7.1991', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113764, '2022-09-01', 2699, 107277, 6533, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113765, '2022-09-01', 2416, 107278, 6533, 60924, '1.0000', '1.3345', '1.3345', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113766, '2022-09-01', 1812, 107279, 6533, 61630, '1.0000', '8.6987', '8.6987', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113767, '2022-09-01', 1658, 107280, 6533, 49458, '1.0000', '29.3337', '29.3337', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113768, '2022-09-01', 2089, 107281, 6533, 58586, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113769, '2022-09-01', 10007, 107282, 6534, 61583, '14.0000', '0.9700', '0.9700', '1.3000', '1.3000', '42.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113770, '2022-09-01', 9891, 107283, 6534, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113771, '2022-09-02', 7745, 107284, 6535, 59357, '1.0000', '7.4585', '7.4585', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113772, '2022-09-02', 8393, 107285, 6535, 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 (113773, '2022-09-02', 9984, 107286, 6535, 61820, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113774, '2022-09-02', 1841, 107287, 6535, 61751, '10.0000', '0.1461', '0.1461', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113775, '2022-09-02', 7848, 107288, 6535, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (113776, '2022-09-02', 7544, 107289, 6535, NULL, '1.0000', '9.4300', '9.4300', '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 (113777, '2022-09-02', 2104, 107290, 6535, NULL, '1.0000', '0.2000', '0.2000', '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 (113778, '2022-09-02', 2015, 107291, 6535, 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 (113779, '2022-09-02', 2297, 107292, 6535, NULL, '1.0000', '7.9071', '7.9071', '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 (113780, '2022-09-02', 7899, 107293, 6535, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113781, '2022-09-02', 9275, 107294, 6535, NULL, '5.0000', '6.3000', '6.3000', '1.5000', '1.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 (113782, '2022-09-02', 9956, 107295, 6535, 57651, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113783, '2022-09-02', 7774, 107296, 6535, 61858, '1.0000', '6.7456', '6.7456', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113784, '2022-09-02', 7959, 107297, 6535, 56660, '1.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '8.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113785, '2022-09-02', 1837, 107298, 6535, NULL, '1.0000', '0.5600', '0.5600', '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 (113786, '2022-09-02', 2102, 107299, 6535, NULL, '1.0000', '1.5667', '1.5667', '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 (113787, '2022-09-02', 7473, 107300, 6535, 61833, '5.0000', '0.5360', '0.5360', '0.7000', '0.7000', '70.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113788, '2022-09-02', 7704, 107301, 6535, NULL, '1.0000', '-1.5625', '-1.5625', '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 (113789, '2022-09-02', 9956, 107302, 6535, 57651, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113790, '2022-09-02', 7453, 107303, 6535, 61868, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113791, '2022-09-02', 9204, 107304, 6535, 60135, '1.0000', '6.0556', '6.0556', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113792, '2022-09-02', 7713, 107305, 6535, 50666, '5.0000', '0.3910', '0.3910', '0.6000', '0.6000', '83.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113793, '2022-09-02', 2560, 107306, 6535, 57540, '1.0000', '20.3704', '20.3704', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113794, '2022-09-02', 7991, 107307, 6535, NULL, '1.0000', '34.0000', '34.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 (113795, '2022-09-02', 8005, 107308, 6535, 61790, '1.0000', '57.9888', '57.9888', '76.5000', '76.5000', '1.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113796, '2022-09-02', 8969, 107309, 6535, NULL, '1.0000', '2.0000', '2.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 (113797, '2022-09-02', 7848, 107310, 6535, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (113798, '2022-09-02', 8878, 107311, 6535, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113799, '2022-09-02', 7641, 107312, 6535, 61787, '1.0000', '7.2879', '7.2879', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113800, '2022-09-02', 8918, 107313, 6535, 61838, '2.0000', '2.0791', '2.0791', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113801, '2022-09-02', 8810, 107314, 6535, 61847, '1.0000', '5.7535', '5.7535', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113802, '2022-09-02', 2295, 107315, 6535, NULL, '3.0000', '-7.8337', '-7.8337', '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 (113803, '2022-09-02', 8308, 107316, 6535, NULL, '1.0000', '386.2157', '386.2157', '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 (113804, '2022-09-02', 9943, 107317, 6535, 60116, '1.0000', '9.8930', '9.8930', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113805, '2022-09-02', 1947, 107318, 6535, 43122, '1.0000', '-122941.3106', '-122941.3106', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113806, '2022-09-02', 7894, 107319, 6535, 60819, '1.0000', '3.6043', '3.6043', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113807, '2022-09-02', 1695, 107320, 6536, 57955, '1.0000', '27.0720', '27.0720', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113808, '2022-09-02', 2169, 107321, 6536, 56231, '1.0000', '1.3616', '1.3616', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113809, '2022-09-02', 2924, 107322, 6536, 61589, '1.0000', '7.1589', '7.1589', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113810, '2022-09-02', 2699, 107323, 6536, 60928, '2.0000', '3.2934', '3.2934', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113811, '2022-09-02', 1582, 107324, 6536, 9445, '1.0000', '90.0000', '90.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 (113812, '2022-09-02', 8208, 107325, 6536, NULL, '4.0000', '33.0000', '33.0000', '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 (113813, '2022-09-02', 1425, 107326, 6536, 61591, '1.0000', '6.9351', '6.9351', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113814, '2022-09-02', 8288, 107327, 6537, NULL, '3.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (113815, '2022-09-02', 8903, 107328, 6537, NULL, '1.0000', '5.4000', '5.4000', '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 (113816, '2022-09-02', 7457, 107329, 6537, 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 (113817, '2022-09-02', 1884, 107330, 6537, 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 (113818, '2022-09-02', 2315, 107331, 6537, 2735, '-648.0000', '0.3300', '0.3300', '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 (113819, '2022-09-02', 2315, 107331, 6537, NULL, '649.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-649.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113820, '2022-09-02', 9092, 107332, 6537, NULL, '2.0000', '5.2900', '5.2900', '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 (113821, '2022-09-02', 1983, 107333, 6537, 6346, '-2.0000', '11.0000', '11.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 (113822, '2022-09-02', 1983, 107333, 6537, NULL, '3.0000', '11.0000', '11.0000', '18.0000', '18.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 (113823, '2022-09-02', 8254, 107334, 6537, NULL, '1.0000', '25.9000', '25.9000', '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 (113824, '2022-09-02', 9734, 107335, 6537, NULL, '2.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113825, '2022-09-02', 7334, 107336, 6537, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (113826, '2022-09-02', 7780, 107337, 6537, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113827, '2022-09-02', 7779, 107338, 6537, NULL, '1.0000', '9.5000', '9.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 (113828, '2022-09-02', 7762, 107339, 6537, NULL, '1.0000', '1.5000', '1.5000', '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 (113829, '2022-09-02', 2995, 107340, 6537, NULL, '1.0000', '39.7000', '39.7000', '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 (113830, '2022-09-02', 7438, 107341, 6537, NULL, '1.0000', '28.6900', '28.6900', '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 (113831, '2022-09-02', 7518, 107342, 6537, NULL, '1.0000', '7.8200', '7.8200', '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 (113832, '2022-09-02', 9199, 107343, 6537, NULL, '1.0000', '19.0000', '19.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 (113833, '2022-09-02', 7872, 107344, 6537, 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 (113834, '2022-09-02', 2063, 107345, 6537, 2169, '-4.0000', '1.9900', '1.9900', '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 (113835, '2022-09-02', 2063, 107345, 6537, NULL, '5.0000', '1.9900', '1.9900', '5.5000', '5.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 (113836, '2022-09-02', 1819, 107346, 6537, 18240, '-8.0000', '5.5930', '5.5930', '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 (113837, '2022-09-02', 1819, 107346, 6537, NULL, '9.0000', '5.5930', '5.5930', '11.0000', '11.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 (113838, '2022-09-02', 7401, 107347, 6537, NULL, '1.0000', '57.9000', '57.9000', '98.5000', '98.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113839, '2022-09-02', 7411, 107348, 6537, NULL, '1.0000', '1.3500', '1.3500', '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 (113840, '2022-09-02', 1827, 107349, 6537, NULL, '2.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113841, '2022-09-02', 7558, 107350, 6537, NULL, '2.0000', '1.9700', '1.9700', '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 (113842, '2022-09-02', 7473, 107351, 6537, NULL, '6.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (113843, '2022-09-02', 8979, 107352, 6537, 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 (113844, '2022-09-02', 9834, 107353, 6537, NULL, '1.0000', '1.4500', '1.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 (113845, '2022-09-02', 7658, 107354, 6537, NULL, '1.0000', '2.0200', '2.0200', '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 (113846, '2022-09-02', 7514, 107355, 6537, NULL, '1.0000', '2.2500', '2.2500', '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 (113847, '2022-09-02', 9751, 107356, 6537, NULL, '3.0000', '1.0000', '1.0000', '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 (113848, '2022-09-02', 7411, 107357, 6537, NULL, '2.0000', '1.3500', '1.3500', '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 (113849, '2022-09-02', 9092, 107358, 6537, NULL, '5.0000', '5.2900', '5.2900', '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 (113850, '2022-09-02', 7959, 107359, 6537, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113851, '2022-09-02', 1935, 107360, 6537, 5586, '-196.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 (113852, '2022-09-02', 1935, 107360, 6537, NULL, '197.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-197.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113853, '2022-09-02', 8638, 107361, 6537, NULL, '1.0000', '0.5100', '0.5100', '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 (113854, '2022-09-02', 7368, 107362, 6537, NULL, '1.0000', '14.7500', '14.7500', '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 (113855, '2022-09-02', 7444, 107363, 6537, 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 (113856, '2022-09-02', 2854, 107364, 6537, NULL, '1.0000', '8.9500', '8.9500', '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 (113857, '2022-09-02', 7952, 107365, 6537, 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 (113858, '2022-09-02', 7707, 107366, 6537, NULL, '1.0000', '7.0000', '7.0000', '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 (113859, '2022-09-02', 7638, 107367, 6537, NULL, '1.0000', '12.0000', '12.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 (113860, '2022-09-02', 7445, 107368, 6537, NULL, '1.0000', '7.9900', '7.9900', '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 (113861, '2022-09-02', 9088, 107369, 6537, NULL, '1.0000', '15.4000', '15.4000', '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 (113862, '2022-09-02', 9401, 107370, 6537, NULL, '1.0000', '4.8500', '4.8500', '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 (113863, '2022-09-02', 7741, 107371, 6537, NULL, '1.0000', '1.2000', '1.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 (113864, '2022-09-02', 10000, 107372, 6537, NULL, '1.0000', '38.0000', '38.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 (113865, '2022-09-02', 9092, 107373, 6537, NULL, '87.0000', '5.2900', '5.2900', '0.5000', '0.5000', '-87.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113866, '2022-09-02', 2226, 107374, 6537, 1701, '-2.0000', '14.0000', '14.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 (113867, '2022-09-02', 2226, 107374, 6537, NULL, '3.0000', '14.0000', '14.0000', '24.0000', '24.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 (113868, '2022-09-02', 8756, 107375, 6537, NULL, '1.0000', '7.5000', '7.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 (113869, '2022-09-02', 7504, 107376, 6537, NULL, '1.0000', '1.2400', '1.2400', '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 (113870, '2022-09-02', 7473, 107377, 6537, NULL, '1.0000', '0.5300', '0.5300', '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 (113871, '2022-09-02', 9092, 107378, 6537, NULL, '2.0000', '5.2900', '5.2900', '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 (113872, '2022-09-02', 9399, 107379, 6537, NULL, '1.0000', '0.9800', '0.9800', '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 (113873, '2022-09-02', 9272, 107380, 6537, NULL, '1.0000', '3.1000', '3.1000', '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 (113874, '2022-09-02', 2315, 107381, 6537, 2735, '-648.0000', '0.3300', '0.3300', '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 (113875, '2022-09-02', 2315, 107381, 6537, NULL, '650.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-650.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113876, '2022-09-02', 8180, 107382, 6537, NULL, '4.0000', '4.4000', '4.4000', '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 (113877, '2022-09-02', 7560, 107383, 6537, NULL, '1.0000', '33.0200', '33.0200', '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 (113878, '2022-09-02', 8596, 107384, 6537, 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 (113879, '2022-09-02', 7547, 107385, 6537, NULL, '2.0000', '0.0000', '0.0000', '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 (113880, '2022-09-02', 7460, 107386, 6537, NULL, '3.0000', '2.5000', '2.5000', '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 (113881, '2022-09-02', 7694, 107387, 6537, NULL, '1.0000', '4.7900', '4.7900', '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 (113882, '2022-09-02', 8085, 107388, 6537, NULL, '2.0000', '1.1700', '1.1700', '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 (113883, '2022-09-02', 7514, 107389, 6537, NULL, '1.0000', '2.2500', '2.2500', '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 (113884, '2022-09-02', 7744, 107390, 6537, 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 (113885, '2022-09-02', 7703, 107391, 6537, NULL, '1.0000', '22.9900', '22.9900', '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 (113886, '2022-09-02', 1840, 107392, 6537, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (113887, '2022-09-02', 1841, 107393, 6537, NULL, '2.0000', '142.5780', '142.5780', '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 (113888, '2022-09-02', 8167, 107394, 6537, NULL, '2.0000', '16.2000', '16.2000', '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 (113889, '2022-09-02', 1904, 107395, 6537, 5442, '-98.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 (113890, '2022-09-02', 1904, 107395, 6537, NULL, '100.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-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 (113891, '2022-09-02', 7588, 107396, 6537, NULL, '1.0000', '6.9000', '6.9000', '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 (113892, '2022-09-02', 7674, 107397, 6537, NULL, '2.0000', '1.3000', '1.3000', '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 (113893, '2022-09-02', 2445, 107398, 6538, NULL, '2.0000', '3.2000', '3.2000', '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 (113894, '2022-09-02', 2237, 107399, 6538, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113895, '2022-09-02', 1999, 107400, 6538, 61257, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113896, '2022-09-02', 1839, 107401, 6538, NULL, '1.0000', '-269379.3894', '-269379.3894', '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 (113897, '2022-09-02', 8810, 107402, 6538, NULL, '1.0000', '1.9200', '1.9200', '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 (113898, '2022-09-02', 10007, 107403, 6538, 61583, '14.0000', '0.9700', '0.9700', '1.3000', '1.3000', '28.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113899, '2022-09-02', 1863, 107404, 6538, 61545, '2.0000', '1.4938', '1.4938', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113900, '2022-09-02', 8065, 107405, 6538, NULL, '1.0000', '32.0000', '32.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 (113901, '2022-09-02', 2169, 107406, 6538, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113902, '2022-09-02', 1874, 107407, 6538, NULL, '1.0000', '6.1000', '6.1000', '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 (113903, '2022-09-02', 9891, 107408, 6538, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113904, '2022-09-02', 2068, 107409, 6538, NULL, '1.0000', '14.6943', '14.6943', '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 (113905, '2022-09-02', 1837, 107410, 6538, 59893, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113906, '2022-09-02', 1941, 107411, 6538, 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 (113907, '2022-09-02', 2715, 107412, 6538, NULL, '1.0000', '9.2600', '9.2600', '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 (113908, '2022-09-02', 9695, 107413, 6538, 61501, '1.0000', '5.5201', '5.5201', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113909, '2022-09-02', 1912, 107414, 6538, NULL, '1.0000', '0.6868', '0.6868', '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 (113910, '2022-09-02', 1746, 107415, 6538, 59870, '2.0000', '4.8553', '4.8553', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113911, '2022-09-02', 2302, 107416, 6538, 60327, '3.0000', '5.2000', '5.2000', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113912, '2022-09-02', 1592, 107417, 6538, 60348, '1.0000', '41.8074', '41.8074', '56.0000', '56.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113913, '2022-09-02', 1637, 107418, 6538, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113914, '2022-09-02', 8844, 107419, 6538, NULL, '2.0000', '6.8542', '6.8542', '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 (113915, '2022-09-02', 8476, 107420, 6538, NULL, '5.0000', '23.0000', '23.0000', '0.6000', '0.6000', '-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 (113916, '2022-09-02', 2010, 107421, 6538, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113917, '2022-09-02', 1785, 107422, 6538, 59858, '1.0000', '17.7035', '17.7035', '25.5000', '25.5000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113918, '2022-09-02', 9824, 107423, 6538, NULL, '1.0000', '1.3000', '1.3000', '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 (113919, '2022-09-02', 1863, 107424, 6538, 61545, '2.0000', '1.4938', '1.4938', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113920, '2022-09-02', 2135, 107425, 6538, NULL, '1.0000', '-0.2588', '-0.2588', '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 (113921, '2022-09-02', 3012, 107426, 6538, 59850, '1.0000', '4.7000', '4.7000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113922, '2022-09-02', 2295, 107427, 6538, 48904, '3.0000', '1.4864', '1.4864', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113923, '2022-09-02', 8677, 107428, 6538, NULL, '2.0000', '1026.1382', '1026.1382', '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 (113924, '2022-09-02', 1342, 107429, 6538, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113925, '2022-09-02', 1521, 107430, 6538, NULL, '1.0000', '-770.4750', '-770.4750', '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 (113926, '2022-09-02', 1339, 107431, 6538, 61581, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113927, '2022-09-02', 9891, 107432, 6538, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113928, '2022-09-02', 9747, 107433, 6538, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113929, '2022-09-02', 2237, 107434, 6538, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113930, '2022-09-02', 2169, 107435, 6538, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113931, '2022-09-02', 3025, 107436, 6538, 58059, '2.0000', '2.4395', '2.4395', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113932, '2022-09-02', 2506, 107437, 6538, NULL, '1.0000', '-9.4377', '-9.4377', '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 (113933, '2022-09-02', 7318, 107438, 6538, 48474, '1.0000', '12.1931', '12.1931', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113934, '2022-09-02', 9945, 107439, 6538, NULL, '1.0000', '12.1000', '12.1000', '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 (113935, '2022-09-02', 9634, 107440, 6538, NULL, '2.0000', '4.4667', '4.4667', '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 (113936, '2022-09-02', 9902, 107441, 6538, NULL, '1.0000', '7.9671', '7.9671', '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 (113937, '2022-09-02', 7886, 107442, 6538, NULL, '1.0000', '14.5000', '14.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 (113938, '2022-09-02', 1383, 107443, 6538, 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 (113939, '2022-09-02', 7385, 107444, 6539, NULL, '3.0000', '2.0000', '2.0000', '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 (113940, '2022-09-02', 2699, 107445, 6540, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113941, '2022-09-02', 8773, 107446, 6540, NULL, '1.0000', '-92.4961', '-92.4961', '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 (113942, '2022-09-02', 1493, 107447, 6540, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113943, '2022-09-02', 1572, 107448, 6540, 58815, '1.0000', '1.9861', '1.9861', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113944, '2022-09-02', 1935, 107449, 6540, 58605, '1.0000', '1.2477', '1.2477', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113945, '2022-09-02', 2151, 107450, 6540, NULL, '1.0000', '10.7000', '10.7000', '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 (113946, '2022-09-02', 7411, 107451, 6540, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113947, '2022-09-02', 1667, 107452, 6540, 61689, '1.0000', '18.3282', '18.3282', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113948, '2022-09-02', 1311, 107453, 6540, NULL, '1.0000', '0.3700', '0.3700', '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 (113949, '2022-09-02', 9590, 107454, 6540, NULL, '2.0000', '0.0000', '0.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 (113950, '2022-09-02', 2995, 107455, 6540, NULL, '3.0000', '39.7000', '39.7000', '18.0000', '18.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 (113951, '2022-09-02', 2699, 107456, 6540, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113952, '2022-09-02', 1888, 107457, 6540, 60057, '1.0000', '17.6053', '17.6053', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113953, '2022-09-02', 1811, 107458, 6540, 44607, '1.0000', '14.5300', '14.5300', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113954, '2022-09-02', 7881, 107459, 6540, NULL, '1.0000', '2.7500', '2.7500', '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 (113955, '2022-09-02', 2858, 107460, 6540, 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 (113956, '2022-09-02', 1846, 107461, 6540, 61595, '1.0000', '7.8688', '7.8688', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113957, '2022-09-02', 7802, 107462, 6540, 52269, '3.0000', '1.3468', '1.3468', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113958, '2022-09-02', 1928, 107463, 6540, 56962, '1.0000', '23.5859', '23.5859', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113959, '2022-09-02', 1620, 107464, 6540, 61622, '2.0000', '2.3174', '2.3174', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113960, '2022-09-02', 1329, 107465, 6540, 40295, '1.0000', '6.1200', '6.1200', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113961, '2022-09-02', 7353, 107466, 6540, NULL, '6.0000', '0.1900', '0.1900', '0.6000', '0.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 (113962, '2022-09-02', 1720, 107467, 6540, NULL, '6.0000', '0.5800', '0.5800', '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 (113963, '2022-09-02', 2380, 107468, 6540, 59637, '1.0000', '45.1378', '45.1378', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113964, '2022-09-02', 1811, 107469, 6540, 44607, '1.0000', '14.5300', '14.5300', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113965, '2022-09-02', 2936, 107470, 6540, 46602, '1.0000', '5.9233', '5.9233', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113966, '2022-09-02', 2285, 107471, 6540, 61628, '1.0000', '42.5627', '42.5627', '74.0000', '74.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113967, '2022-09-02', 1620, 107472, 6541, 60302, '3.0000', '2.3610', '2.3610', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113968, '2022-09-02', 1620, 107472, 6541, 59879, '1.0000', '2.3610', '2.3610', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113969, '2022-09-02', 9695, 107473, 6541, 61501, '1.0000', '5.5201', '5.5201', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113970, '2022-09-02', 8595, 107474, 6541, NULL, '1.0000', '-3.2120', '-3.2120', '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 (113971, '2022-09-02', 7953, 107475, 6541, NULL, '1.0000', '-0.5345', '-0.5345', '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 (113972, '2022-09-02', 2223, 107476, 6541, NULL, '1.0000', '-2.3706', '-2.3706', '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 (113973, '2022-09-02', 2655, 107477, 6542, 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 (113974, '2022-09-02', 9695, 107478, 6542, NULL, '1.0000', '4.5000', '4.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 (113975, '2022-09-02', 9329, 107479, 6542, NULL, '1.0000', '6.7000', '6.7000', '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 (113976, '2022-09-02', 9151, 107480, 6542, NULL, '1.0000', '9.7000', '9.7000', '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 (113977, '2022-09-02', 7453, 107481, 6542, NULL, '1.0000', '28.5000', '28.5000', '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 (113978, '2022-09-02', 8721, 107482, 6542, NULL, '1.0000', '23.0000', '23.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 (113979, '2022-09-02', 2655, 107483, 6542, 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 (113980, '2022-09-02', 2656, 107484, 6542, NULL, '1.0000', '1.5000', '1.5000', '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 (113981, '2022-09-03', 7674, 107485, 6543, 61832, '2.0000', '46.3674', '46.3674', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113982, '2022-09-03', 2287, 107486, 6543, 61863, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '46.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113983, '2022-09-03', 9177, 107487, 6543, 61839, '2.0000', '5.6559', '5.6559', '1.2000', '1.2000', '70.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113984, '2022-09-03', 7905, 107488, 6543, NULL, '1.0000', '3.9963', '3.9963', '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 (113985, '2022-09-03', 7641, 107489, 6543, 61787, '1.0000', '7.2879', '7.2879', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113986, '2022-09-03', 9413, 107490, 6543, 61705, '1.0000', '9.2095', '9.2095', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113987, '2022-09-03', 9821, 107491, 6543, 56590, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113988, '2022-09-03', 8810, 107492, 6543, 61847, '1.0000', '5.7535', '5.7535', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113989, '2022-09-03', 9274, 107493, 6543, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113990, '2022-09-03', 7886, 107494, 6543, 61876, '1.0000', '4.8599', '4.8599', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113991, '2022-09-03', 7703, 107495, 6543, NULL, '1.0000', '-4961.0093', '-4961.0093', '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 (113992, '2022-09-03', 2242, 107496, 6543, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '96.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113993, '2022-09-03', 7641, 107497, 6543, 61787, '1.0000', '7.2879', '7.2879', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113994, '2022-09-03', 7713, 107498, 6543, 50666, '5.0000', '0.3910', '0.3910', '0.6000', '0.6000', '78.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113995, '2022-09-03', 2289, 107499, 6543, NULL, '5.0000', '4.0652', '4.0652', '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 (113996, '2022-09-03', 7917, 107500, 6543, 61747, '5.0000', '2.5067', '2.5067', '0.7000', '0.7000', '82.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113997, '2022-09-03', 7641, 107501, 6543, 61787, '1.0000', '7.2879', '7.2879', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113998, '2022-09-03', 7518, 107502, 6543, 61873, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113999, '2022-09-03', 2295, 107503, 6543, NULL, '3.0000', '-7.8337', '-7.8337', '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 (114000, '2022-09-03', 2102, 107504, 6543, NULL, '2.0000', '1.5667', '1.5667', '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 (114001, '2022-09-03', 7857, 107505, 6543, 61857, '1.0000', '18.3655', '18.3655', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114002, '2022-09-03', 8039, 107506, 6543, 59090, '1.0000', '15.7640', '15.7640', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114003, '2022-09-03', 8155, 107507, 6543, NULL, '1.0000', '65.0000', '65.0000', '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 (114004, '2022-09-03', 7564, 107508, 6543, 59164, '1.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114005, '2022-09-03', 7473, 107509, 6543, 61833, '1.0000', '0.5360', '0.5360', '0.7000', '0.7000', '69.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114006, '2022-09-03', 7513, 107510, 6543, 61919, '3.0000', '18.0000', '18.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114007, '2022-09-03', 2255, 107511, 6543, 60476, '1.0000', '46.3922', '46.3922', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114008, '2022-09-03', 2255, 107511, 6543, NULL, '1.0000', '46.3922', '46.3922', '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 (114009, '2022-09-03', 2361, 107512, 6544, 42543, '2.0000', '0.4744', '0.4744', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114010, '2022-09-03', 2167, 107513, 6544, NULL, '1.0000', '0.6663', '0.6663', '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 (114011, '2022-09-03', 9791, 107514, 6544, 51704, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114012, '2022-09-03', 1525, 107515, 6544, NULL, '3.0000', '90.0000', '90.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 (114013, '2022-09-03', 2699, 107516, 6544, 61494, '1.0000', '4.2435', '4.2435', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114014, '2022-09-03', 1337, 107517, 6544, 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 (114015, '2022-09-03', 9747, 107518, 6544, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114016, '2022-09-03', 8772, 107519, 6544, 61483, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114017, '2022-09-03', 1672, 107520, 6544, NULL, '10.0000', '4.1808', '4.1808', '5.5000', '5.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 (114018, '2022-09-03', 1592, 107521, 6544, 59599, '1.0000', '41.8074', '41.8074', '56.0000', '56.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114019, '2022-09-03', 2699, 107522, 6544, 61494, '1.0000', '4.2435', '4.2435', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114020, '2022-09-03', 9831, 107523, 6544, 61498, '2.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114021, '2022-09-03', 1650, 107524, 6544, NULL, '1.0000', '14.9969', '14.9969', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114022, '2022-09-03', 9891, 107525, 6544, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114023, '2022-09-03', 1525, 107526, 6544, 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 (114024, '2022-09-03', 2037, 107527, 6544, 59674, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114025, '2022-09-03', 8763, 107528, 6544, NULL, '1.0000', '7.4944', '7.4944', '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 (114026, '2022-09-03', 1761, 107529, 6544, 60290, '1.0000', '2.2177', '2.2177', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114027, '2022-09-03', 1637, 107530, 6544, 60318, '1.0000', '-19.6372', '-19.6372', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114028, '2022-09-03', 2627, 107531, 6544, 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 (114029, '2022-09-03', 1715, 107532, 6544, 60307, '1.0000', '8.2180', '8.2180', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114030, '2022-09-03', 2920, 107533, 6544, NULL, '1.0000', '30.0307', '30.0307', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114031, '2022-09-03', 2237, 107534, 6544, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114032, '2022-09-03', 1501, 107535, 6544, NULL, '1.0000', '0.3856', '0.3856', '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 (114033, '2022-09-03', 1905, 107536, 6544, NULL, '1.0000', '0.5203', '0.5203', '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 (114034, '2022-09-03', 2379, 107537, 6544, NULL, '1.0000', '-14.1447', '-14.1447', '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 (114035, '2022-09-03', 2135, 107538, 6544, NULL, '1.0000', '-0.2588', '-0.2588', '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 (114036, '2022-09-03', 7411, 107539, 6544, NULL, '1.0000', '1.2819', '1.2819', '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 (114037, '2022-09-03', 2108, 107540, 6544, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114038, '2022-09-03', 1425, 107541, 6544, NULL, '1.0000', '481.1599', '481.1599', '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 (114039, '2022-09-03', 9827, 107542, 6544, NULL, '1.0000', '16.6600', '16.6600', '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 (114040, '2022-09-03', 2076, 107543, 6544, NULL, '1.0000', '8.3000', '8.3000', '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 (114041, '2022-09-03', 1912, 107544, 6544, NULL, '2.0000', '0.6868', '0.6868', '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 (114042, '2022-09-03', 2335, 107545, 6544, NULL, '1.0000', '18.9000', '18.9000', '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 (114043, '2022-09-03', 2416, 107546, 6544, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114044, '2022-09-03', 9979, 107547, 6544, NULL, '1.0000', '13.9000', '13.9000', '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 (114045, '2022-09-03', 2921, 107548, 6544, NULL, '1.0000', '4.6300', '4.6300', '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 (114046, '2022-09-03', 2315, 107549, 6544, 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 (114047, '2022-09-03', 2061, 107550, 6544, NULL, '1.0000', '-0.6387', '-0.6387', '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 (114048, '2022-09-03', 1884, 107551, 6544, NULL, '1.0000', '17.4104', '17.4104', '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 (114049, '2022-09-03', 8384, 107552, 6544, 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 (114050, '2022-09-03', 2169, 107553, 6544, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114051, '2022-09-03', 1840, 107554, 6544, NULL, '2.0000', '0.2400', '0.2400', '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 (114052, '2022-09-03', 2289, 107555, 6544, NULL, '2.0000', '0.3611', '0.3611', '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 (114053, '2022-09-03', 2088, 107556, 6545, 59892, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114054, '2022-09-03', 2088, 107556, 6545, 55708, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114055, '2022-09-03', 2088, 107556, 6545, 54566, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114056, '2022-09-03', 2169, 107557, 6546, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114057, '2022-09-03', 1662, 107558, 6547, 56987, '1.0000', '51.7297', '51.7297', '86.0000', '86.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114058, '2022-09-03', 1590, 107559, 6547, 9437, '2.0000', '1.7700', '1.7700', '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 (114059, '2022-09-03', 2315, 107560, 6547, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114060, '2022-09-03', 1602, 107561, 6547, 61621, '1.0000', '7.1991', '7.1991', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114061, '2022-09-03', 1851, 107562, 6547, 61594, '1.0000', '13.6743', '13.6743', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114062, '2022-09-03', 1863, 107563, 6547, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114063, '2022-09-03', 9747, 107564, 6547, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114064, '2022-09-03', 2109, 107565, 6547, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114065, '2022-09-03', 7756, 107566, 6547, NULL, '1.0000', '26.9296', '26.9296', '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 (114066, '2022-09-03', 2228, 107567, 6547, 60911, '1.0000', '28.4978', '28.4978', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114067, '2022-09-03', 9740, 107568, 6547, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114068, '2022-09-03', 1671, 107569, 6548, 39833, '1.0000', '103.6357', '103.6357', '64.0000', '64.0000', '28.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114069, '2022-09-03', 1688, 107570, 6548, 13745, '1.0000', '23.2094', '23.2094', '31.5000', '31.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 (114070, '2022-09-03', 1875, 107571, 6548, 55926, '10.0000', '2.7375', '2.7375', '3.7000', '3.7000', '10.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114071, '2022-09-03', 8393, 107572, 6549, 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 (114072, '2022-09-03', 8243, 107573, 6549, 61802, '2.0000', '1.1400', '1.1400', '1.5000', '1.5000', '55.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114073, '2022-09-03', 7736, 107574, 6549, 61856, '1.0000', '25.2865', '25.2865', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114074, '2022-09-03', 7411, 107575, 6549, 61709, '2.0000', '1.4296', '1.4296', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114075, '2022-09-03', 2295, 107576, 6549, NULL, '3.0000', '-7.8337', '-7.8337', '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 (114076, '2022-09-03', 2975, 107577, 6549, NULL, '1.0000', '6.0000', '6.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 (114077, '2022-09-03', 1856, 107578, 6549, 61855, '1.0000', '2.4948', '2.4948', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114078, '2022-09-03', 9092, 107579, 6549, 60813, '1.0000', '0.3167', '0.3167', '0.5000', '0.5000', '107.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114079, '2022-09-03', 9463, 107580, 6549, 61916, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114080, '2022-09-03', 9271, 107581, 6549, 60480, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114081, '2022-09-03', 8308, 107582, 6549, NULL, '1.0000', '386.2157', '386.2157', '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 (114082, '2022-09-03', 9821, 107583, 6549, 56590, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114083, '2022-09-03', 8254, 107584, 6549, 61926, '1.0000', '29.1364', '29.1364', '43.5000', '43.5000', '2.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114084, '2022-09-03', 8673, 107585, 6549, 47904, '1.0000', '20.0000', '20.0000', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114085, '2022-09-03', 9734, 107586, 6549, 61746, '3.0000', '0.3316', '0.3316', '0.7000', '0.7000', '193.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114086, '2022-09-03', 9413, 107587, 6549, 61705, '1.0000', '9.2095', '9.2095', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114087, '2022-09-03', 9821, 107588, 6549, 56590, '1.0000', '1.4500', '1.4500', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114088, '2022-09-03', 9272, 107589, 6549, NULL, '1.0000', '3.1206', '3.1206', '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 (114089, '2022-09-03', 7709, 107590, 6549, NULL, '2.0000', '2418.3704', '2418.3704', '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 (114090, '2022-09-03', 8203, 107591, 6549, 57407, '4.0000', '2.0908', '2.0908', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114091, '2022-09-03', 2242, 107592, 6549, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '93.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114092, '2022-09-03', 7482, 107593, 6549, 61836, '1.0000', '4.7347', '4.7347', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114093, '2022-09-03', 8187, 107594, 6549, 61864, '4.0000', '-28.2100', '-28.2100', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114094, '2022-09-03', 7411, 107595, 6549, 61709, '2.0000', '1.4296', '1.4296', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114095, '2022-09-03', 7472, 107596, 6549, 61910, '1.0000', '8.0480', '8.0480', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114096, '2022-09-03', 10017, 107597, 6549, 61942, '1.0000', '8.4000', '8.4000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114097, '2022-09-03', 7333, 107598, 6549, 61921, '2.0000', '13.3704', '13.3704', '5.5000', '5.5000', '34.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114098, '2022-09-03', 7376, 107599, 6549, 57405, '1.0000', '-177.0400', '-177.0400', '18.7500', '18.7500', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114099, '2022-09-03', 7612, 107600, 6549, NULL, '2.0000', '2.3846', '2.3846', '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 (114100, '2022-09-03', 8677, 107601, 6549, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114101, '2022-09-03', 7778, 107602, 6549, NULL, '1.0000', '12.0532', '12.0532', '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 (114102, '2022-09-03', 9272, 107603, 6549, NULL, '1.0000', '3.1206', '3.1206', '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 (114103, '2022-09-03', 7562, 107604, 6549, 60773, '1.0000', '6.7445', '6.7445', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114104, '2022-09-03', 7411, 107605, 6549, 61709, '2.0000', '1.4296', '1.4296', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114105, '2022-09-03', 10004, 107606, 6550, 61894, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '55.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114106, '2022-09-03', 7872, 107607, 6550, 61744, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114107, '2022-09-03', 10019, 107608, 6550, 61957, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114108, '2022-09-03', 7562, 107609, 6550, 60773, '1.0000', '6.7445', '6.7445', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114109, '2022-09-03', 9751, 107610, 6550, 60568, '1.0000', '1.2432', '1.2432', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114110, '2022-09-03', 7848, 107611, 6550, NULL, '1.0000', '-1218.7528', '-1218.7528', '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 (114111, '2022-09-03', 7317, 107612, 6550, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114112, '2022-09-03', 7704, 107613, 6550, NULL, '2.0000', '-1.5625', '-1.5625', '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 (114113, '2022-09-03', 7917, 107614, 6550, 61747, '10.0000', '2.5067', '2.5067', '0.7000', '0.7000', '72.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114114, '2022-09-03', 7713, 107615, 6550, 50666, '3.0000', '0.3910', '0.3910', '0.6000', '0.6000', '75.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114115, '2022-09-03', 9480, 107616, 6550, 39402, '1.0000', '8.5000', '8.5000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114116, '2022-09-03', 7350, 107617, 6550, 57632, '2.0000', '29.1750', '29.1750', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114117, '2022-09-03', 9695, 107618, 6550, 61792, '2.0000', '5.9153', '5.9153', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114118, '2022-09-03', 8979, 107619, 6550, 60567, '1.0000', '0.8800', '0.8800', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114119, '2022-09-03', 9286, 107620, 6550, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114120, '2022-09-03', 7630, 107621, 6550, 59310, '2.0000', '4.5400', '4.5400', '4.5000', '4.5000', '31.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114121, '2022-09-03', 7548, 107622, 6550, NULL, '1.0000', '3.9186', '3.9186', '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 (114122, '2022-09-03', 7905, 107623, 6550, NULL, '1.0000', '3.9963', '3.9963', '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 (114123, '2022-09-03', 9835, 107624, 6550, 52002, '1.0000', '24.0738', '24.0738', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114124, '2022-09-03', 8913, 107625, 6550, 60177, '1.0000', '15.4283', '15.4283', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114125, '2022-09-03', 8254, 107626, 6550, 61926, '1.0000', '29.1364', '29.1364', '43.5000', '43.5000', '1.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114126, '2022-09-03', 7560, 107627, 6550, 61927, '1.0000', '41.7459', '41.7459', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114127, '2022-09-03', 8463, 107628, 6550, NULL, '1.0000', '18.0000', '18.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 (114128, '2022-09-03', 1841, 107629, 6550, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114129, '2022-09-03', 8359, 107630, 6550, 61881, '1.0000', '206.4844', '206.4844', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114130, '2022-09-03', 8168, 107631, 6550, NULL, '1.0000', '5.2500', '5.2500', '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 (114131, '2022-09-03', 9734, 107632, 6550, 61746, '1.0000', '0.3316', '0.3316', '0.7000', '0.7000', '192.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114132, '2022-09-03', 7879, 107633, 6550, 61774, '10.0000', '1.9004', '1.9004', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114133, '2022-09-03', 2251, 107634, 6550, 60469, '1.0000', '13.0059', '13.0059', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114134, '2022-09-03', 2506, 107635, 6550, 61907, '1.0000', '4.6900', '4.6900', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114135, '2022-09-03', 7867, 107636, 6550, NULL, '3.0000', '2.3130', '2.3130', '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 (114136, '2022-09-03', 8145, 107637, 6550, 56186, '1.0000', '-0.6362', '-0.6362', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114137, '2022-09-03', 2315, 107638, 6550, 61885, '5.0000', '0.7648', '0.7648', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114138, '2022-09-03', 9742, 107639, 6550, 57637, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114139, '2022-09-03', 8359, 107640, 6550, 61881, '1.0000', '206.4844', '206.4844', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114140, '2022-09-03', 7713, 107641, 6550, 50666, '2.0000', '0.3910', '0.3910', '0.6000', '0.6000', '76.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114141, '2022-09-03', 2315, 107642, 6551, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114142, '2022-09-03', 2965, 107643, 6551, 57515, '1.0000', '-1.0413', '-1.0413', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114143, '2022-09-03', 2069, 107644, 6552, 59638, '1.0000', '5.3434', '5.3434', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114144, '2022-09-03', 1337, 107645, 6552, 34683, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114145, '2022-09-03', 9471, 107646, 6552, 60509, '1.0000', '15.0800', '15.0800', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114146, '2022-09-03', 9311, 107647, 6552, 40379, '1.0000', '6.6000', '6.6000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114147, '2022-09-03', 2366, 107648, 6552, 61627, '3.0000', '3.6301', '3.6301', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114148, '2022-09-03', 2315, 107649, 6552, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114149, '2022-09-03', 1892, 107650, 6552, 58588, '4.0000', '0.5200', '0.5200', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114150, '2022-09-03', 1310, 107651, 6552, 61642, '8.0000', '0.4067', '0.4067', '0.6000', '0.6000', '17.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114151, '2022-09-03', 2416, 107652, 6552, 60924, '1.0000', '1.3345', '1.3345', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114152, '2022-09-03', 1837, 107653, 6552, 60063, '1.0000', '0.6105', '0.6105', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114153, '2022-09-03', 2379, 107654, 6552, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114154, '2022-09-03', 1812, 107655, 6552, 61630, '1.0000', '8.6987', '8.6987', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114155, '2022-09-03', 8498, 107656, 6552, 59973, '1.0000', '3.6031', '3.6031', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114156, '2022-09-03', 7411, 107657, 6552, 61295, '2.0000', '1.5882', '1.5882', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114157, '2022-09-03', 7741, 107658, 6552, 59956, '1.0000', '3.4144', '3.4144', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114158, '2022-09-03', 7911, 107659, 6552, NULL, '1.0000', '4.3700', '4.3700', '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 (114159, '2022-09-03', 7411, 107660, 6552, 61295, '2.0000', '1.5882', '1.5882', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114160, '2022-09-03', 7608, 107661, 6552, NULL, '1.0000', '6.9800', '6.9800', '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 (114161, '2022-09-03', 9636, 107662, 6552, 58830, '1.0000', '57.0000', '57.0000', '75.5000', '75.5000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114162, '2022-09-03', 1863, 107663, 6552, 60078, '1.0000', '1.3992', '1.3992', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114163, '2022-09-03', 2289, 107664, 6552, 61661, '2.0000', '0.2667', '0.2667', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114164, '2022-09-03', 9695, 107665, 6552, 61701, '1.0000', '5.7919', '5.7919', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114165, '2022-09-03', 1409, 107666, 6552, 61593, '1.0000', '13.0879', '13.0879', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114166, '2022-09-03', 1780, 107667, 6552, 56897, '1.0000', '41.3380', '41.3380', '60.5000', '60.5000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114167, '2022-09-03', 1874, 107668, 6552, NULL, '1.0000', '6.1000', '6.1000', '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 (114168, '2022-09-03', 9788, 107669, 6553, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114169, '2022-09-03', 1368, 107670, 6553, 60229, '1.0000', '5.8695', '5.8695', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114170, '2022-09-03', 8189, 107671, 6553, NULL, '1.0000', '42.0000', '42.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 (114171, '2022-09-03', 2293, 107672, 6553, NULL, '3.0000', '-17.4320', '-17.4320', '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 (114172, '2022-09-03', 1339, 107673, 6553, 61581, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114173, '2022-09-03', 1337, 107674, 6553, 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 (114174, '2022-09-03', 2297, 107675, 6553, NULL, '1.0000', '10.2971', '10.2971', '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 (114175, '2022-09-03', 1670, 107676, 6553, NULL, '1.0000', '-32.2503', '-32.2503', '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 (114176, '2022-09-03', 2315, 107677, 6553, 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 (114177, '2022-09-03', 2073, 107678, 6553, 55667, '3.0000', '2.3000', '2.3000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114178, '2022-09-03', 1871, 107679, 6553, NULL, '1.0000', '-33.0401', '-33.0401', '3.7000', '3.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 (114179, '2022-09-03', 2643, 107680, 6553, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114180, '2022-09-03', 2416, 107681, 6553, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114181, '2022-09-03', 1387, 107682, 6553, 61564, '1.0000', '15.5976', '15.5976', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114182, '2022-09-03', 1936, 107683, 6553, 57811, '1.0000', '7.0500', '7.0500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114183, '2022-09-03', 2245, 107684, 6553, 51375, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114184, '2022-09-03', 1488, 107685, 6553, 61577, '2.0000', '4.2951', '4.2951', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114185, '2022-09-03', 2169, 107686, 6553, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114186, '2022-09-03', 1498, 107687, 6553, 57680, '1.0000', '0.4912', '0.4912', '0.7000', '0.7000', '35.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114187, '2022-09-03', 2169, 107688, 6553, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114188, '2022-09-03', 1637, 107689, 6553, NULL, '1.0000', '-19.6372', '-19.6372', '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 (114189, '2022-09-03', 2076, 107690, 6553, NULL, '1.0000', '8.3000', '8.3000', '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 (114190, '2022-09-03', 2068, 107691, 6553, NULL, '1.0000', '14.6943', '14.6943', '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 (114191, '2022-09-03', 1425, 107692, 6553, NULL, '1.0000', '481.1599', '481.1599', '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 (114192, '2022-09-03', 1863, 107693, 6553, 61545, '1.0000', '1.4938', '1.4938', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114193, '2022-09-03', 2315, 107694, 6553, NULL, '2.0000', '0.7700', '0.7700', '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 (114194, '2022-09-03', 1521, 107695, 6553, NULL, '2.0000', '-770.4750', '-770.4750', '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 (114195, '2022-09-03', 1876, 107696, 6553, 51667, '1.0000', '18.8100', '18.8100', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114196, '2022-09-03', 9804, 107697, 6553, 60223, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114197, '2022-09-03', 2277, 107698, 6553, NULL, '2.0000', '0.9399', '0.9399', '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 (114198, '2022-09-03', 2379, 107699, 6553, NULL, '1.0000', '-14.1447', '-14.1447', '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 (114199, '2022-09-03', 9729, 107700, 6553, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114200, '2022-09-03', 8746, 107701, 6553, 61266, '1.0000', '2.8100', '2.8100', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114201, '2022-09-03', 2643, 107702, 6553, 61492, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114202, '2022-09-03', 1856, 107703, 6553, NULL, '1.0000', '155.0099', '155.0099', '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 (114203, '2022-09-03', 2315, 107704, 6553, NULL, '1.0000', '0.7700', '0.7700', '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 (114204, '2022-09-03', 2293, 107705, 6553, NULL, '3.0000', '-17.4320', '-17.4320', '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 (114205, '2022-09-03', 1602, 107706, 6553, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114206, '2022-09-03', 1912, 107707, 6553, NULL, '1.0000', '0.6868', '0.6868', '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 (114207, '2022-09-03', 9482, 107708, 6553, NULL, '2.0000', '0.5000', '0.5000', '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 (114208, '2022-09-03', 2088, 107709, 6553, 51347, '1.0000', '2.1183', '2.1183', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114209, '2022-09-03', 2823, 107710, 6553, 58215, '1.0000', '-5.2900', '-5.2900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114210, '2022-09-03', 1342, 107711, 6553, 60331, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114211, '2022-09-03', 9870, 107712, 6553, 61499, '2.0000', '7.0202', '7.0202', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114212, '2022-09-03', 1665, 107713, 6553, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114213, '2022-09-03', 1670, 107714, 6553, NULL, '1.0000', '-32.2503', '-32.2503', '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 (114214, '2022-09-03', 9697, 107715, 6553, 55574, '1.0000', '7.4600', '7.4600', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114215, '2022-09-03', 1610, 107716, 6553, 55625, '1.0000', '2.2800', '2.2800', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114216, '2022-09-03', 7376, 107717, 6553, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114217, '2022-09-03', 2942, 107718, 6553, 59882, '2.0000', '0.8200', '0.8200', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114218, '2022-09-03', 1529, 107719, 6553, 48167, '1.0000', '4.8416', '4.8416', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114219, '2022-09-03', 2942, 107720, 6553, 59882, '2.0000', '0.8200', '0.8200', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114220, '2022-09-03', 1425, 107721, 6553, NULL, '1.0000', '481.1599', '481.1599', '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 (114221, '2022-09-03', 2315, 107722, 6553, NULL, '1.0000', '0.7700', '0.7700', '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 (114222, '2022-09-03', 1844, 107723, 6553, NULL, '2.0000', '1.3981', '1.3981', '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 (114223, '2022-09-03', 1698, 107724, 6553, 51380, '1.0000', '8.0429', '8.0429', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114224, '2022-09-03', 2643, 107725, 6553, 61492, '2.0000', '1.0727', '1.0727', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114225, '2022-09-03', 8740, 107726, 6553, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114226, '2022-09-03', 2699, 107727, 6553, 61494, '3.0000', '4.2435', '4.2435', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114227, '2022-09-03', 2699, 107727, 6553, NULL, '1.0000', '4.2435', '4.2435', '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 (114228, '2022-09-03', 1525, 107728, 6553, 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 (114229, '2022-09-03', 2821, 107729, 6553, NULL, '1.0000', '3.4037', '3.4037', '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 (114230, '2022-09-03', 7411, 107730, 6553, NULL, '1.0000', '1.2819', '1.2819', '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 (114231, '2022-09-03', 1541, 107731, 6553, NULL, '1.0000', '19.0000', '19.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114232, '2022-09-03', 8677, 107732, 6553, NULL, '3.0000', '1026.1382', '1026.1382', '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 (114233, '2022-09-03', 7612, 107733, 6553, NULL, '2.0000', '0.4900', '0.4900', '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 (114234, '2022-09-03', 8184, 107734, 6553, NULL, '10.0000', '2.9902', '2.9902', '4.0000', '4.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 (114235, '2022-09-03', 1746, 107735, 6553, 59870, '1.0000', '4.8553', '4.8553', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114236, '2022-09-03', 2441, 107736, 6553, 61256, '1.0000', '12.9756', '12.9756', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114237, '2022-09-03', 7411, 107737, 6553, NULL, '1.0000', '1.2819', '1.2819', '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 (114238, '2022-09-03', 7316, 107738, 6553, 51382, '2.0000', '0.9020', '0.9020', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114239, '2022-09-03', 2916, 107739, 6553, 60332, '1.0000', '-7436.2444', '-7436.2444', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114240, '2022-09-03', 2167, 107740, 6553, NULL, '1.0000', '0.6663', '0.6663', '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 (114241, '2022-09-03', 2384, 107741, 6553, NULL, '10.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (114242, '2022-09-03', 2699, 107742, 6553, 61494, '1.0000', '4.2435', '4.2435', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114243, '2022-09-03', 7382, 107743, 6553, NULL, '1.0000', '11.0333', '11.0333', '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 (114244, '2022-09-03', 1846, 107744, 6553, 61549, '1.0000', '-89.9389', '-89.9389', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114245, '2022-09-03', 7411, 107745, 6553, NULL, '1.0000', '1.2819', '1.2819', '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 (114246, '2022-09-03', 1501, 107746, 6553, NULL, '1.0000', '0.3856', '0.3856', '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 (114247, '2022-09-04', 1604, 107747, 6554, 6525, '-5.0000', '34.1212', '34.1212', '50.5000', '50.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 (114248, '2022-09-04', 1604, 107747, 6554, NULL, '6.0000', '34.1212', '34.1212', '50.5000', '50.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 (114249, '2022-09-04', 7954, 107748, 6554, NULL, '2.0000', '3.0000', '3.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 (114250, '2022-09-04', 9751, 107749, 6554, 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 (114251, '2022-09-04', 7628, 107750, 6554, NULL, '1.0000', '2.2900', '2.2900', '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 (114252, '2022-09-04', 9177, 107751, 6554, NULL, '1.0000', '0.8900', '0.8900', '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 (114253, '2022-09-04', 9825, 107752, 6554, 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 (114254, '2022-09-04', 7781, 107753, 6554, NULL, '3.0000', '4.2500', '4.2500', '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 (114255, '2022-09-04', 1935, 107754, 6554, 5586, '-197.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 (114256, '2022-09-04', 1935, 107754, 6554, NULL, '198.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-198.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114257, '2022-09-04', 7324, 107755, 6554, NULL, '4.0000', '4.0000', '4.0000', '8.5000', '8.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 (114258, '2022-09-04', 1501, 107756, 6554, NULL, '1.0000', '2.0500', '2.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 (114259, '2022-09-04', 7730, 107757, 6554, NULL, '1.0000', '0.1000', '0.1000', '0.2000', '0.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 (114260, '2022-09-04', 2062, 107758, 6554, 2165, '-9.0000', '5.7540', '5.7540', '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 (114261, '2022-09-04', 2062, 107758, 6554, NULL, '10.0000', '5.7540', '5.7540', '15.0000', '15.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 (114262, '2022-09-04', 7707, 107759, 6554, NULL, '1.0000', '7.0000', '7.0000', '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 (114263, '2022-09-04', 9326, 107760, 6554, NULL, '2.0000', '14.0000', '14.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 (114264, '2022-09-04', 2602, 107761, 6554, 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 (114265, '2022-09-04', 7899, 107762, 6554, NULL, '1.0000', '3.3000', '3.3000', '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 (114266, '2022-09-04', 7886, 107763, 6554, NULL, '1.0000', '4.5000', '4.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 (114267, '2022-09-04', 8746, 107764, 6554, NULL, '1.0000', '3.1500', '3.1500', '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 (114268, '2022-09-04', 7373, 107765, 6554, NULL, '1.0000', '17.0000', '17.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 (114269, '2022-09-04', 9092, 107766, 6554, NULL, '6.0000', '5.2900', '5.2900', '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 (114270, '2022-09-04', 7608, 107767, 6554, NULL, '1.0000', '6.9800', '6.9800', '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 (114271, '2022-09-04', 7709, 107768, 6554, 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 (114272, '2022-09-04', 7819, 107769, 6554, NULL, '1.0000', '9.5000', '9.5000', '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 (114273, '2022-09-04', 9092, 107770, 6554, NULL, '5.0000', '5.2900', '5.2900', '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 (114274, '2022-09-04', 7821, 107771, 6554, NULL, '2.0000', '13.0700', '13.0700', '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 (114275, '2022-09-04', 9695, 107772, 6554, NULL, '2.0000', '4.5000', '4.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 (114276, '2022-09-04', 7716, 107773, 6554, NULL, '1.0000', '0.0000', '0.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 (114277, '2022-09-04', 8680, 107774, 6554, NULL, '1.0000', '2.0000', '2.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 (114278, '2022-09-04', 7514, 107775, 6554, NULL, '1.0000', '2.2500', '2.2500', '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 (114279, '2022-09-04', 7460, 107776, 6554, NULL, '2.0000', '2.5000', '2.5000', '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 (114280, '2022-09-04', 7558, 107777, 6554, NULL, '2.0000', '1.9700', '1.9700', '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 (114281, '2022-09-04', 3001, 107778, 6554, NULL, '2.0000', '1.5000', '1.5000', '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 (114282, '2022-09-04', 7616, 107779, 6554, NULL, '1.0000', '21.5000', '21.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 (114283, '2022-09-04', 7411, 107780, 6554, NULL, '1.0000', '1.3500', '1.3500', '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 (114284, '2022-09-04', 9275, 107781, 6554, NULL, '2.0000', '6.3000', '6.3000', '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 (114285, '2022-09-04', 1904, 107782, 6554, 5442, '-100.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 (114286, '2022-09-04', 1904, 107782, 6554, NULL, '102.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-102.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114287, '2022-09-04', 8134, 107783, 6554, NULL, '1.0000', '5.2300', '5.2300', '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 (114288, '2022-09-04', 8135, 107784, 6554, NULL, '1.0000', '5.4500', '5.4500', '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 (114289, '2022-09-04', 10003, 107785, 6554, NULL, '1.0000', '6.3000', '6.3000', '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 (114290, '2022-09-04', 8322, 107786, 6554, NULL, '1.0000', '7.0000', '7.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 (114291, '2022-09-04', 1912, 107787, 6555, NULL, '1.0000', '0.6868', '0.6868', '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 (114292, '2022-09-04', 1602, 107788, 6555, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114293, '2022-09-04', 1340, 107789, 6555, NULL, '1.0000', '5.5200', '5.5200', '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 (114294, '2022-09-04', 9482, 107790, 6555, 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 (114295, '2022-09-04', 9902, 107791, 6555, NULL, '2.0000', '7.9671', '7.9671', '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 (114296, '2022-09-04', 1771, 107792, 6555, 48459, '1.0000', '6.8048', '6.8048', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114297, '2022-09-04', 1863, 107793, 6555, 61545, '2.0000', '1.4938', '1.4938', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114298, '2022-09-04', 2169, 107794, 6555, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114299, '2022-09-04', 1863, 107795, 6555, 61545, '1.0000', '1.4938', '1.4938', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114300, '2022-09-04', 2643, 107796, 6555, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114301, '2022-09-04', 1578, 107797, 6555, NULL, '1.0000', '2.5599', '2.5599', '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 (114302, '2022-09-04', 2135, 107798, 6555, NULL, '1.0000', '-0.2588', '-0.2588', '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 (114303, '2022-09-04', 1863, 107799, 6555, 61545, '1.0000', '1.4938', '1.4938', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114304, '2022-09-04', 2315, 107800, 6555, NULL, '1.0000', '0.7700', '0.7700', '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 (114305, '2022-09-04', 8745, 107801, 6555, 61488, '1.0000', '14.0504', '14.0504', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114306, '2022-09-04', 8933, 107802, 6555, 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 (114307, '2022-09-04', 2656, 107803, 6555, 61495, '1.0000', '2.1557', '2.1557', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114308, '2022-09-04', 1501, 107804, 6555, NULL, '1.0000', '0.3856', '0.3856', '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 (114309, '2022-09-04', 2299, 107805, 6555, 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 (114310, '2022-09-04', 2315, 107806, 6555, 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 (114311, '2022-09-04', 2680, 107807, 6555, 55600, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114312, '2022-09-04', 1874, 107808, 6555, NULL, '1.0000', '6.1000', '6.1000', '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 (114313, '2022-09-04', 7558, 107809, 6555, NULL, '6.0000', '-37.0255', '-37.0255', '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 (114314, '2022-09-04', 1760, 107810, 6555, 58185, '1.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114315, '2022-09-04', 1840, 107811, 6555, NULL, '1.0000', '0.2400', '0.2400', '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 (114316, '2022-09-04', 1841, 107812, 6555, NULL, '1.0000', '0.7630', '0.7630', '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 (114317, '2022-09-04', 1855, 107813, 6555, 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 (114318, '2022-09-04', 2567, 107814, 6555, 61252, '1.0000', '35.5528', '35.5528', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114319, '2022-09-04', 1532, 107815, 6555, 48901, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114320, '2022-09-04', 1863, 107816, 6555, 61545, '2.0000', '1.4938', '1.4938', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114321, '2022-09-04', 7591, 107817, 6555, NULL, '1.0000', '2.7500', '2.7500', '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 (114322, '2022-09-04', 2289, 107818, 6555, NULL, '2.0000', '0.3611', '0.3611', '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 (114323, '2022-09-04', 2315, 107819, 6555, NULL, '2.0000', '0.7700', '0.7700', '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 (114324, '2022-09-04', 1904, 107820, 6555, 60310, '1.0000', '2.3094', '2.3094', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114325, '2022-09-04', 7802, 107821, 6555, NULL, '3.0000', '1.1497', '1.1497', '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 (114326, '2022-09-04', 1665, 107822, 6555, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114327, '2022-09-04', 2384, 107823, 6555, NULL, '3.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (114328, '2022-09-04', 1532, 107824, 6555, 48901, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114329, '2022-09-04', 9962, 107825, 6555, 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 (114330, '2022-09-04', 2025, 107826, 6555, 59671, '1.0000', '4.9242', '4.9242', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114331, '2022-09-04', 2821, 107827, 6555, NULL, '2.0000', '3.4037', '3.4037', '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 (114332, '2022-09-04', 9695, 107828, 6555, 61501, '1.0000', '5.5201', '5.5201', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114333, '2022-09-04', 2948, 107829, 6555, 60261, '1.0000', '1.0692', '1.0692', '3.5000', '3.5000', '26.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114334, '2022-09-04', 2379, 107830, 6555, NULL, '1.0000', '-14.1447', '-14.1447', '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 (114335, '2022-09-04', 7446, 107831, 6556, 59147, '1.0000', '1.6896', '1.6896', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114336, '2022-09-04', 7317, 107832, 6556, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114337, '2022-09-04', 7666, 107833, 6556, 60503, '1.0000', '6.5987', '6.5987', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114338, '2022-09-04', 7473, 107834, 6556, 61833, '1.0000', '0.5360', '0.5360', '0.7000', '0.7000', '68.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114339, '2022-09-04', 9275, 107835, 6556, NULL, '1.0000', '6.3000', '6.3000', '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 (114340, '2022-09-04', 10004, 107836, 6556, 61894, '1.0000', '2.5100', '2.5100', '3.0000', '3.0000', '54.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114341, '2022-09-04', 2102, 107837, 6556, NULL, '1.0000', '1.5667', '1.5667', '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 (114342, '2022-09-04', 9028, 107838, 6556, NULL, '1.0000', '5.6880', '5.6880', '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 (114343, '2022-09-04', 8061, 107839, 6556, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114344, '2022-09-04', 1807, 107840, 6556, NULL, '3.0000', '-34.8462', '-34.8462', '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 (114345, '2022-09-04', 7457, 107841, 6556, 61924, '3.0000', '5.0178', '5.0178', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114346, '2022-09-04', 7753, 107842, 6556, 60153, '1.0000', '3.5929', '3.5929', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114347, '2022-09-04', 7526, 107843, 6556, 61850, '1.0000', '-174.2425', '-174.2425', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114348, '2022-09-04', 8802, 107844, 6556, NULL, '1.0000', '5.0000', '5.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 (114349, '2022-09-04', 9791, 107845, 6556, 50485, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '93.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114350, '2022-09-04', 1837, 107846, 6556, NULL, '3.0000', '0.5600', '0.5600', '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 (114351, '2022-09-04', 8172, 107847, 6556, NULL, '1.0000', '40.7000', '40.7000', '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 (114352, '2022-09-04', 7473, 107848, 6556, 61833, '1.0000', '0.5360', '0.5360', '0.7000', '0.7000', '68.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114353, '2022-09-04', 8053, 107849, 6556, 61715, '2.0000', '1.4542', '1.4542', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114354, '2022-09-04', 7431, 107850, 6556, 61854, '1.0000', '-12.4376', '-12.4376', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114355, '2022-09-04', 9724, 107851, 6556, 60103, '1.0000', '20.3000', '20.3000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114356, '2022-09-04', 2104, 107852, 6556, NULL, '2.0000', '0.2000', '0.2000', '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 (114357, '2022-09-04', 9092, 107853, 6556, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '104.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114358, '2022-09-04', 7651, 107854, 6556, 60419, '1.0000', '3.4359', '3.4359', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114359, '2022-09-04', 8877, 107855, 6556, 57432, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114360, '2022-09-04', 1486, 107856, 6556, 48059, '1.0000', '17.2810', '17.2810', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114361, '2022-09-04', 9151, 107857, 6556, 57175, '1.0000', '10.5845', '10.5845', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114362, '2022-09-04', 2255, 107858, 6556, NULL, '1.0000', '46.3922', '46.3922', '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 (114363, '2022-09-04', 8680, 107859, 6556, NULL, '1.0000', '2.0000', '2.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 (114364, '2022-09-04', 7518, 107860, 6556, 61873, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114365, '2022-09-04', 9814, 107861, 6556, 56194, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114366, '2022-09-04', 7746, 107862, 6556, 59097, '2.0000', '1.3400', '1.3400', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114367, '2022-09-04', 8463, 107863, 6556, NULL, '1.0000', '18.0000', '18.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 (114368, '2022-09-04', 9103, 107864, 6556, NULL, '1.0000', '21.6600', '21.6600', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114369, '2022-09-04', 7981, 107865, 6556, 61716, '5.0000', '1.5133', '1.5133', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114370, '2022-09-04', 7514, 107866, 6556, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114371, '2022-09-04', 7472, 107867, 6556, 61910, '1.0000', '8.0480', '8.0480', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114372, '2022-09-04', 7787, 107868, 6556, NULL, '1.0000', '11.7735', '11.7735', '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 (114373, '2022-09-04', 9092, 107869, 6556, 60813, '5.0000', '0.3167', '0.3167', '0.5000', '0.5000', '102.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114374, '2022-09-04', 8061, 107870, 6556, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114375, '2022-09-04', 8756, 107871, 6556, NULL, '1.0000', '8.5042', '8.5042', '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 (114376, '2022-09-04', 7756, 107872, 6556, 61902, '1.0000', '32.8291', '32.8291', '44.0000', '44.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114377, '2022-09-04', 7709, 107873, 6556, NULL, '2.0000', '2418.3704', '2418.3704', '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 (114378, '2022-09-04', 7518, 107874, 6556, 61873, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114379, '2022-09-04', 1935, 107875, 6556, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '105.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114380, '2022-09-04', 8061, 107876, 6556, 60185, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114381, '2022-09-04', 7820, 107877, 6556, 61708, '1.0000', '18.5840', '18.5840', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114382, '2022-09-04', 7509, 107878, 6556, 61880, '1.0000', '8.4623', '8.4623', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114383, '2022-09-04', 7447, 107879, 6556, NULL, '5.0000', '30.5060', '30.5060', '2.5000', '2.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 (114384, '2022-09-04', 8207, 107880, 6556, NULL, '1.0000', '0.0000', '0.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 (114385, '2022-09-04', 7714, 107881, 6556, NULL, '5.0000', '0.4200', '0.4200', '0.6000', '0.6000', '-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 (114386, '2022-09-04', 8548, 107882, 6556, NULL, '1.0000', '6.3499', '6.3499', '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 (114387, '2022-09-04', 9791, 107883, 6556, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '94.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114388, '2022-09-04', 7411, 107884, 6556, 61709, '1.0000', '1.4296', '1.4296', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114389, '2022-09-04', 1908, 107885, 6557, NULL, '1.0000', '0.9032', '0.9032', '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 (114390, '2022-09-04', 1837, 107886, 6557, 58241, '1.0000', '1.6544', '1.6544', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114391, '2022-09-04', 2073, 107887, 6557, 55667, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114392, '2022-09-04', 8476, 107888, 6557, NULL, '2.0000', '23.0000', '23.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 (114393, '2022-09-04', 1904, 107889, 6557, 60310, '2.0000', '2.3094', '2.3094', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114394, '2022-09-04', 2169, 107890, 6557, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114395, '2022-09-04', 1628, 107891, 6557, 61561, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114396, '2022-09-04', 1339, 107892, 6557, 61581, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114397, '2022-09-04', 1828, 107893, 6557, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114398, '2022-09-04', 7411, 107894, 6557, NULL, '2.0000', '1.2819', '1.2819', '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 (114399, '2022-09-04', 1388, 107895, 6557, 61565, '1.0000', '7.4975', '7.4975', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114400, '2022-09-04', 1855, 107896, 6557, 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 (114401, '2022-09-04', 9747, 107897, 6557, 54928, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114402, '2022-09-04', 1665, 107898, 6557, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114403, '2022-09-04', 7612, 107899, 6557, NULL, '2.0000', '0.4900', '0.4900', '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 (114404, '2022-09-04', 2682, 107900, 6557, 24925, '1.0000', '15.1600', '15.1600', '20.0000', '20.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 (114405, '2022-09-04', 2237, 107901, 6557, 48500, '1.0000', '15.5072', '15.5072', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114406, '2022-09-04', 1760, 107902, 6557, 58185, '6.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114407, '2022-09-04', 1580, 107903, 6557, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114408, '2022-09-04', 1665, 107904, 6557, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114409, '2022-09-04', 1410, 107905, 6557, NULL, '2.0000', '124.6472', '124.6472', '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 (114410, '2022-09-04', 1580, 107906, 6557, 54914, '3.0000', '1.4661', '1.4661', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114411, '2022-09-04', 2293, 107907, 6557, NULL, '3.0000', '-17.4320', '-17.4320', '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 (114412, '2022-09-04', 7944, 107908, 6557, NULL, '1.0000', '2.0100', '2.0100', '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 (114413, '2022-09-04', 2167, 107909, 6557, NULL, '1.0000', '0.6663', '0.6663', '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 (114414, '2022-09-04', 8184, 107910, 6557, NULL, '10.0000', '2.9902', '2.9902', '4.0000', '4.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 (114415, '2022-09-04', 1686, 107911, 6557, NULL, '1.0000', '33.0000', '33.0000', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114416, '2022-09-04', 1654, 107912, 6557, 38538, '1.0000', '9.2613', '9.2613', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114417, '2022-09-04', 2384, 107913, 6557, NULL, '2.0000', '-1.7022', '-1.7022', '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 (114418, '2022-09-04', 1488, 107914, 6557, 61577, '1.0000', '4.2951', '4.2951', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114419, '2022-09-04', 2916, 107915, 6557, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (114420, '2022-09-04', 2352, 107916, 6557, NULL, '3.0000', '187.6811', '187.6811', '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 (114421, '2022-09-04', 2109, 107917, 6557, NULL, '3.0000', '0.0413', '0.0413', '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 (114422, '2022-09-04', 1342, 107918, 6557, 57774, '1.0000', '7.1177', '7.1177', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114423, '2022-09-04', 9902, 107919, 6557, NULL, '1.0000', '7.9671', '7.9671', '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 (114424, '2022-09-04', 1557, 107920, 6557, NULL, '1.0000', '8.2500', '8.2500', '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 (114425, '2022-09-04', 9738, 107921, 6557, 59860, '1.0000', '8.4000', '8.4000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114426, '2022-09-04', 7807, 107922, 6557, NULL, '1.0000', '2.1600', '2.1600', '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 (114427, '2022-09-04', 9870, 107923, 6557, 61499, '1.0000', '7.0202', '7.0202', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114428, '2022-09-04', 9831, 107924, 6557, 61498, '2.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114429, '2022-09-04', 2260, 107925, 6557, 48160, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114430, '2022-09-04', 1820, 107926, 6557, 58228, '1.0000', '8.3700', '8.3700', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114431, '2022-09-04', 9856, 107927, 6557, NULL, '1.0000', '1.6000', '1.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 (114432, '2022-09-04', 2384, 107928, 6557, NULL, '3.0000', '-1.7022', '-1.7022', '0.8000', '0.8000', '-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 (114433, '2022-09-04', 9401, 107929, 6557, 39792, '1.0000', '2.7665', '2.7665', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114434, '2022-09-04', 9911, 107930, 6557, 55596, '2.0000', '2.0000', '2.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114435, '2022-09-04', 7612, 107931, 6557, NULL, '2.0000', '0.4900', '0.4900', '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 (114436, '2022-09-04', 1772, 107932, 6557, 60328, '1.0000', '5.9694', '5.9694', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114437, '2022-09-04', 1532, 107933, 6557, 48901, '3.0000', '1.4708', '1.4708', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114438, '2022-09-04', 7642, 107934, 6558, 59333, '1.0000', '5.9844', '5.9844', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114439, '2022-09-04', 1580, 107935, 6559, 61669, '2.0000', '1.3143', '1.3143', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114440, '2022-09-04', 2293, 107936, 6559, 50920, '2.0000', '0.8705', '0.8705', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114441, '2022-09-04', 9747, 107937, 6559, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114442, '2022-09-04', 1840, 107938, 6559, 59955, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114443, '2022-09-04', 1841, 107939, 6559, 61665, '2.0000', '0.2691', '0.2691', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114444, '2022-09-04', 2242, 107940, 6559, 60033, '1.0000', '0.7573', '0.7573', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114445, '2022-09-04', 7802, 107941, 6559, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114446, '2022-09-04', 7741, 107942, 6559, 59956, '1.0000', '3.4144', '3.4144', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114447, '2022-09-04', 9740, 107943, 6559, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114448, '2022-09-04', 2315, 107944, 6559, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114449, '2022-09-04', 2289, 107945, 6559, 61661, '4.0000', '0.2667', '0.2667', '0.5000', '0.5000', '64.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114450, '2022-09-04', 1975, 107946, 6559, NULL, '1.0000', '9.4630', '9.4630', '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 (114451, '2022-09-04', 1529, 107947, 6559, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114452, '2022-09-04', 2655, 107948, 6559, 60926, '1.0000', '7.0022', '7.0022', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114453, '2022-09-04', 2656, 107949, 6559, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114454, '2022-09-04', 1383, 107950, 6559, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114455, '2022-09-04', 7746, 107951, 6559, NULL, '1.0000', '2.8600', '2.8600', '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 (114456, '2022-09-04', 8677, 107952, 6559, 62023, '1.0000', '2.0852', '2.0852', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114457, '2022-09-04', 2379, 107953, 6559, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114458, '2022-09-04', 2738, 107954, 6559, 61985, '3.0000', '9.1392', '9.1392', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114459, '2022-09-04', 2256, 107955, 6559, 61655, '1.0000', '15.7294', '15.7294', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114460, '2022-09-04', 1308, 107956, 6559, 46782, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114461, '2022-09-04', 9219, 107957, 6559, 61682, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114462, '2022-09-04', 1888, 107958, 6559, 60057, '1.0000', '17.6053', '17.6053', '26.5000', '26.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114463, '2022-09-04', 2281, 107959, 6559, 58765, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114464, '2022-09-04', 8067, 107960, 6559, NULL, '2.0000', '5.7000', '5.7000', '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 (114465, '2022-09-04', 1311, 107961, 6559, NULL, '10.0000', '0.3700', '0.3700', '0.6000', '0.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 (114466, '2022-09-04', 7584, 107962, 6559, 60088, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114467, '2022-09-04', 1326, 107963, 6559, 58753, '1.0000', '3.6418', '3.6418', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114468, '2022-09-04', 1715, 107964, 6559, 61998, '1.0000', '7.4688', '7.4688', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114469, '2022-09-04', 8677, 107965, 6559, 62023, '2.0000', '2.0852', '2.0852', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114470, '2022-09-04', 2237, 107966, 6559, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114471, '2022-09-04', 2315, 107967, 6559, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114472, '2022-09-04', 7459, 107968, 6559, NULL, '20.0000', '4.5753', '4.5753', '4.0000', '4.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 (114473, '2022-09-04', 1425, 107969, 6559, 62057, '1.0000', '6.9406', '6.9406', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114474, '2022-09-04', 1785, 107970, 6559, 61685, '1.0000', '16.4023', '16.4023', '25.5000', '25.5000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114475, '2022-09-04', 2908, 107971, 6559, 48776, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '17.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114476, '2022-09-04', 1856, 107972, 6559, 62043, '1.0000', '5.4306', '5.4306', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114477, '2022-09-04', 8079, 107973, 6559, 61668, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114478, '2022-09-04', 7917, 107974, 6559, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114479, '2022-09-04', 1386, 107975, 6559, 62022, '1.0000', '141.3488', '141.3488', '7.5000', '7.5000', '19.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114480, '2022-09-04', 1812, 107976, 6559, 61630, '1.0000', '8.6987', '8.6987', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114481, '2022-09-04', 7612, 107977, 6560, NULL, '2.0000', '0.4900', '0.4900', '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 (114482, '2022-09-04', 1308, 107978, 6560, 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 (114483, '2022-09-04', 1863, 107979, 6560, 61545, '2.0000', '1.4938', '1.4938', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114484, '2022-09-04', 2643, 107980, 6560, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114485, '2022-09-04', 7917, 107981, 6561, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (114486, '2022-09-04', 2416, 107982, 6561, 60924, '1.0000', '1.3345', '1.3345', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114487, '2022-09-04', 2643, 107983, 6561, 60925, '1.0000', '1.0109', '1.0109', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114488, '2022-09-04', 2395, 107984, 6561, 62062, '1.0000', '29.0000', '29.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114489, '2022-09-04', 8898, 107985, 6561, NULL, '1.0000', '45.5400', '45.5400', '60.5000', '60.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114490, '2022-09-05', 2617, 107986, 6562, NULL, '1.0000', '-5.4200', '-5.4200', '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 (114491, '2022-09-05', 9747, 107987, 6562, 54928, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114492, '2022-09-05', 9827, 107988, 6562, NULL, '1.0000', '16.6600', '16.6600', '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 (114493, '2022-09-05', 7411, 107989, 6562, NULL, '2.0000', '1.2819', '1.2819', '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 (114494, '2022-09-05', 1602, 107990, 6562, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114495, '2022-09-05', 2643, 107991, 6562, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114496, '2022-09-05', 8183, 107992, 6562, NULL, '1.0000', '2774.2425', '2774.2425', '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 (114497, '2022-09-05', 1837, 107993, 6562, 58241, '2.0000', '1.6544', '1.6544', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114498, '2022-09-05', 1347, 107994, 6562, 57726, '3.0000', '4.0941', '4.0941', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114499, '2022-09-05', 1905, 107995, 6562, NULL, '1.0000', '0.5203', '0.5203', '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 (114500, '2022-09-05', 9683, 107996, 6562, 61482, '2.0000', '1.0029', '1.0029', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114501, '2022-09-05', 8878, 107997, 6562, NULL, '2.0000', '6.0509', '6.0509', '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 (114502, '2022-09-05', 2260, 107998, 6562, 48160, '1.0000', '4.7545', '4.7545', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114503, '2022-09-05', 1528, 107999, 6562, NULL, '2.0000', '900.1354', '900.1354', '8.5000', '8.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 (114504, '2022-09-05', 1857, 108000, 6562, 60222, '1.0000', '73.1000', '73.1000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114505, '2022-09-05', 1647, 108001, 6562, NULL, '1.0000', '-8.0033', '-8.0033', '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 (114506, '2022-09-05', 7491, 108002, 6562, NULL, '1.0000', '4.8000', '4.8000', '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 (114507, '2022-09-05', 2924, 108003, 6562, 58224, '1.0000', '6.5800', '6.5800', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114508, '2022-09-05', 2416, 108004, 6562, 61491, '2.0000', '1.3608', '1.3608', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114509, '2022-09-05', 2823, 108005, 6562, NULL, '1.0000', '-5.2900', '-5.2900', '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 (114510, '2022-09-05', 10004, 108006, 6562, NULL, '1.0000', '2.5100', '2.5100', '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 (114511, '2022-09-05', 2643, 108007, 6562, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114512, '2022-09-05', 1592, 108008, 6563, 62029, '1.0000', '38.1717', '38.1717', '66.0000', '66.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114513, '2022-09-05', 1666, 108009, 6563, 62007, '1.0000', '24.0307', '24.0307', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114514, '2022-09-05', 1863, 108010, 6563, 62044, '2.0000', '1.4340', '1.4340', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114515, '2022-09-05', 2821, 108011, 6563, 61993, '1.0000', '3.4429', '3.4429', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114516, '2022-09-05', 7639, 108012, 6563, 61288, '1.0000', '5.8250', '5.8250', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114517, '2022-09-05', 1542, 108013, 6563, 40852, '1.0000', '14.7800', '14.7800', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114518, '2022-09-05', 1307, 108014, 6563, 58787, '1.0000', '4.1753', '4.1753', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114519, '2022-09-05', 2821, 108015, 6563, 61993, '1.0000', '3.4429', '3.4429', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114520, '2022-09-05', 1760, 108016, 6563, 58781, '1.0000', '0.8900', '0.8900', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114521, '2022-09-05', 1857, 108017, 6563, 59992, '1.0000', '-4.6298', '-4.6298', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114522, '2022-09-05', 3019, 108018, 6563, 55831, '1.0000', '11.3964', '11.3964', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114523, '2022-09-05', 7802, 108019, 6563, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114524, '2022-09-05', 1839, 108020, 6563, 62024, '1.0000', '7.9908', '7.9908', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114525, '2022-09-05', 7756, 108021, 6563, NULL, '1.0000', '26.9296', '26.9296', '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 (114526, '2022-09-05', 8677, 108022, 6563, 62023, '3.0000', '2.0852', '2.0852', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114527, '2022-09-05', 1812, 108023, 6563, 61630, '1.0000', '8.6987', '8.6987', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114528, '2022-09-05', 1368, 108024, 6563, NULL, '1.0000', '-248.0000', '-248.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 (114529, '2022-09-05', 2821, 108025, 6563, 61993, '1.0000', '3.4429', '3.4429', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114530, '2022-09-05', 9896, 108026, 6563, 54367, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '10.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114531, '2022-09-05', 1620, 108027, 6564, 8955, '-80.0000', '408.8259', '408.8259', '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 (114532, '2022-09-05', 1620, 108027, 6564, NULL, '88.0000', '408.8259', '408.8259', '3.5000', '3.5000', '-88.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114533, '2022-09-05', 8690, 108028, 6564, NULL, '1.0000', '10.8000', '10.8000', '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 (114534, '2022-09-05', 1846, 108029, 6564, 12032, '-32.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 (114535, '2022-09-05', 1846, 108029, 6564, NULL, '33.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (114536, '2022-09-05', 8596, 108030, 6564, 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 (114537, '2022-09-05', 7778, 108031, 6564, NULL, '1.0000', '9.0000', '9.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 (114538, '2022-09-05', 8336, 108032, 6564, NULL, '2.0000', '3.4000', '3.4000', '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 (114539, '2022-09-05', 1982, 108033, 6564, 6340, '-1.0000', '5.5000', '5.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 (114540, '2022-09-05', 1982, 108033, 6564, NULL, '2.0000', '5.5000', '5.5000', '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 (114541, '2022-09-05', 7780, 108034, 6564, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114542, '2022-09-05', 7753, 108035, 6564, NULL, '1.0000', '3.4000', '3.4000', '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 (114543, '2022-09-05', 8878, 108036, 6564, NULL, '3.0000', '6.6700', '6.6700', '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 (114544, '2022-09-05', 7730, 108037, 6564, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (114545, '2022-09-05', 7762, 108038, 6564, NULL, '1.0000', '1.5000', '1.5000', '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 (114546, '2022-09-05', 7709, 108039, 6564, NULL, '2.0000', '3.5000', '3.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 (114547, '2022-09-05', 7367, 108040, 6564, NULL, '1.0000', '9.1700', '9.1700', '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 (114548, '2022-09-05', 7621, 108041, 6564, NULL, '2.0000', '5.9000', '5.9000', '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 (114549, '2022-09-05', 7857, 108042, 6564, NULL, '1.0000', '15.1300', '15.1300', '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 (114550, '2022-09-05', 7483, 108043, 6564, NULL, '5.0000', '0.4200', '0.4200', '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 (114551, '2022-09-05', 7848, 108044, 6564, NULL, '1.0000', '1.3500', '1.3500', '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 (114552, '2022-09-05', 7711, 108045, 6564, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114553, '2022-09-05', 7339, 108046, 6564, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (114554, '2022-09-05', 8677, 108047, 6564, NULL, '3.0000', '1.2800', '1.2800', '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 (114555, '2022-09-05', 7926, 108048, 6564, 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 (114556, '2022-09-05', 7591, 108049, 6564, NULL, '1.0000', '2.7500', '2.7500', '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 (114557, '2022-09-05', 9984, 108050, 6564, 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 (114558, '2022-09-05', 7674, 108051, 6564, NULL, '1.0000', '1.3000', '1.3000', '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 (114559, '2022-09-05', 9199, 108052, 6564, NULL, '1.0000', '19.0000', '19.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 (114560, '2022-09-05', 8879, 108053, 6564, NULL, '1.0000', '20.9000', '20.9000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114561, '2022-09-05', 8184, 108054, 6564, NULL, '14.0000', '2.4000', '2.4000', '4.0000', '4.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 (114562, '2022-09-05', 7680, 108055, 6564, NULL, '1.0000', '21.1800', '21.1800', '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 (114563, '2022-09-05', 2105, 108056, 6564, NULL, '1.0000', '1.3500', '1.3500', '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 (114564, '2022-09-05', 7638, 108057, 6564, NULL, '1.0000', '12.0000', '12.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 (114565, '2022-09-05', 7641, 108058, 6564, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (114566, '2022-09-05', 7674, 108059, 6564, NULL, '1.0000', '1.3000', '1.3000', '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 (114567, '2022-09-05', 2289, 108060, 6564, 2949, '-263.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 (114568, '2022-09-05', 2289, 108060, 6564, NULL, '265.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-265.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114569, '2022-09-05', 7674, 108061, 6564, NULL, '2.0000', '1.3000', '1.3000', '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 (114570, '2022-09-05', 7411, 108062, 6564, NULL, '2.0000', '1.3500', '1.3500', '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 (114571, '2022-09-05', 7674, 108063, 6564, NULL, '2.0000', '1.3000', '1.3000', '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 (114572, '2022-09-05', 2105, 108064, 6564, NULL, '1.0000', '1.3500', '1.3500', '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 (114573, '2022-09-05', 1557, 108065, 6564, 1628, '-19.0000', '7.9500', '7.9500', '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 (114574, '2022-09-05', 1557, 108065, 6564, NULL, '21.0000', '7.9500', '7.9500', '11.0000', '11.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114575, '2022-09-05', 8085, 108066, 6564, NULL, '2.0000', '1.1700', '1.1700', '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 (114576, '2022-09-05', 7705, 108067, 6564, NULL, '1.0000', '22.9900', '22.9900', '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 (114577, '2022-09-05', 8596, 108068, 6564, 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 (114578, '2022-09-05', 9620, 108069, 6564, 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 (114579, '2022-09-05', 7482, 108070, 6564, NULL, '1.0000', '3.0500', '3.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 (114580, '2022-09-05', 7657, 108071, 6564, NULL, '1.0000', '11.3200', '11.3200', '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 (114581, '2022-09-05', 8972, 108072, 6564, NULL, '2.0000', '4.5000', '4.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 (114582, '2022-09-05', 2965, 108073, 6564, 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 (114583, '2022-09-05', 9092, 108074, 6564, NULL, '5.0000', '5.2900', '5.2900', '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 (114584, '2022-09-05', 7411, 108075, 6564, NULL, '1.0000', '1.3500', '1.3500', '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 (114585, '2022-09-05', 7368, 108076, 6564, NULL, '1.0000', '14.7500', '14.7500', '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 (114586, '2022-09-05', 8243, 108077, 6564, NULL, '2.0000', '1.1400', '1.1400', '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 (114587, '2022-09-05', 7396, 108078, 6564, NULL, '1.0000', '6.0000', '6.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 (114588, '2022-09-05', 7672, 108079, 6564, NULL, '1.0000', '1.0200', '1.0200', '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 (114589, '2022-09-05', 7674, 108080, 6564, NULL, '1.0000', '1.3000', '1.3000', '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 (114590, '2022-09-05', 7778, 108081, 6564, NULL, '1.0000', '9.0000', '9.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 (114591, '2022-09-05', 9835, 108082, 6564, NULL, '1.0000', '25.0000', '25.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 (114592, '2022-09-05', 9974, 108083, 6564, 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 (114593, '2022-09-05', 1935, 108084, 6564, 5586, '-198.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 (114594, '2022-09-05', 1935, 108084, 6564, NULL, '200.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-200.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114595, '2022-09-05', 1498, 108085, 6564, 19685, '-57.0000', '0.3300', '0.3300', '0.7000', '0.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 (114596, '2022-09-05', 1498, 108085, 6564, NULL, '58.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114597, '2022-09-05', 7753, 108086, 6564, NULL, '1.0000', '3.4000', '3.4000', '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 (114598, '2022-09-05', 8712, 108087, 6564, NULL, '1.0000', '7.0400', '7.0400', '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 (114599, '2022-09-05', 7673, 108088, 6564, NULL, '1.0000', '16.8000', '16.8000', '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 (114600, '2022-09-05', 7666, 108089, 6564, NULL, '1.0000', '3.6000', '3.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 (114601, '2022-09-05', 8183, 108090, 6564, NULL, '1.0000', '81.9100', '81.9100', '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 (114602, '2022-09-05', 1840, 108091, 6564, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (114603, '2022-09-05', 7490, 108092, 6564, NULL, '20.0000', '0.2300', '0.2300', '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 (114604, '2022-09-05', 9272, 108093, 6564, NULL, '1.0000', '3.1000', '3.1000', '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 (114605, '2022-09-05', 7967, 108094, 6564, 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 (114606, '2022-09-05', 8254, 108095, 6564, NULL, '1.0000', '25.9000', '25.9000', '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 (114607, '2022-09-05', 8208, 108096, 6564, NULL, '2.0000', '33.0000', '33.0000', '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 (114608, '2022-09-05', 7380, 108097, 6564, NULL, '1.0000', '8.0000', '8.0000', '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 (114609, '2022-09-05', 9092, 108098, 6564, NULL, '4.0000', '5.2900', '5.2900', '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 (114610, '2022-09-05', 7674, 108099, 6564, NULL, '1.0000', '1.3000', '1.3000', '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 (114611, '2022-09-05', 9274, 108100, 6564, NULL, '1.0000', '3.6000', '3.6000', '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 (114612, '2022-09-05', 2315, 108101, 6564, 2735, '-651.0000', '0.3300', '0.3300', '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 (114613, '2022-09-05', 2315, 108101, 6564, NULL, '656.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-656.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114614, '2022-09-05', 7819, 108102, 6564, NULL, '1.0000', '9.5000', '9.5000', '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 (114615, '2022-09-05', 7412, 108103, 6564, NULL, '1.0000', '1.5200', '1.5200', '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 (114616, '2022-09-05', 7518, 108104, 6564, NULL, '1.0000', '7.8200', '7.8200', '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 (114617, '2022-09-05', 7780, 108105, 6564, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114618, '2022-09-05', 7917, 108106, 6564, NULL, '1.0000', '5.0000', '5.0000', '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 (114619, '2022-09-05', 7954, 108107, 6564, 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 (114620, '2022-09-05', 7664, 108108, 6564, NULL, '1.0000', '6.9400', '6.9400', '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 (114621, '2022-09-05', 7641, 108109, 6564, NULL, '1.0000', '1.9000', '1.9000', '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 (114622, '2022-09-05', 7832, 108110, 6564, NULL, '1.0000', '10.0000', '10.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 (114623, '2022-09-05', 2289, 108111, 6564, 2949, '-263.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 (114624, '2022-09-05', 2289, 108111, 6564, NULL, '264.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-264.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114625, '2022-09-05', 9734, 108112, 6564, NULL, '1.0000', '0.3200', '0.3200', '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 (114626, '2022-09-05', 7411, 108113, 6564, NULL, '1.0000', '1.3500', '1.3500', '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 (114627, '2022-09-05', 7862, 108114, 6564, NULL, '1.0000', '3.8500', '3.8500', '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 (114628, '2022-09-05', 7674, 108115, 6564, NULL, '1.0000', '1.3000', '1.3000', '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 (114629, '2022-09-05', 7674, 108116, 6564, NULL, '1.0000', '1.3000', '1.3000', '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 (114630, '2022-09-05', 8878, 108117, 6564, NULL, '1.0000', '6.6700', '6.6700', '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 (114631, '2022-09-05', 8433, 108118, 6564, NULL, '1.0000', '33.0000', '33.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 (114632, '2022-09-05', 7952, 108119, 6564, 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 (114633, '2022-09-05', 7460, 108120, 6564, NULL, '2.0000', '2.5000', '2.5000', '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 (114634, '2022-09-05', 7711, 108121, 6564, NULL, '1.0000', '35.6300', '35.6300', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114635, '2022-09-05', 2350, 108122, 6564, 3853, '-9.0000', '10.3800', '10.3800', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114636, '2022-09-05', 2350, 108122, 6564, NULL, '10.0000', '10.3800', '10.3800', '14.0000', '14.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 (114637, '2022-09-05', 2506, 108123, 6564, 16244, '-41.0000', '3.4900', '3.4900', '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 (114638, '2022-09-05', 2506, 108123, 6564, NULL, '42.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114639, '2022-09-05', 2315, 108124, 6564, 2735, '-651.0000', '0.3300', '0.3300', '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 (114640, '2022-09-05', 2315, 108124, 6564, NULL, '653.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-653.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114641, '2022-09-05', 7641, 108125, 6564, NULL, '1.0000', '1.9000', '1.9000', '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 (114642, '2022-09-05', 9751, 108126, 6564, NULL, '3.0000', '1.0000', '1.0000', '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 (114643, '2022-09-05', 8771, 108127, 6564, NULL, '1.0000', '4.5000', '4.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 (114644, '2022-09-05', 7709, 108128, 6564, NULL, '2.0000', '3.5000', '3.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 (114645, '2022-09-05', 1771, 108129, 6564, 13660, '-2.0000', '5.2450', '5.2450', '9.5000', '9.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 (114646, '2022-09-05', 1771, 108129, 6564, NULL, '3.0000', '5.2450', '5.2450', '9.5000', '9.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 (114647, '2022-09-05', 8979, 108130, 6564, 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 (114648, '2022-09-05', 9827, 108131, 6565, NULL, '1.0000', '16.6600', '16.6600', '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 (114649, '2022-09-05', 7411, 108132, 6565, NULL, '2.0000', '1.2819', '1.2819', '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 (114650, '2022-09-05', 1841, 108133, 6565, NULL, '3.0000', '0.7630', '0.7630', '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 (114651, '2022-09-05', 1837, 108134, 6565, 62104, '3.0000', '1.1717', '1.1717', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114652, '2022-09-05', 7316, 108135, 6565, 51382, '9.0000', '0.9020', '0.9020', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114653, '2022-09-05', 1828, 108136, 6565, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114654, '2022-09-05', 9751, 108137, 6565, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114655, '2022-09-05', 2033, 108138, 6565, 57128, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114656, '2022-09-05', 2416, 108139, 6565, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114657, '2022-09-05', 1417, 108140, 6565, NULL, '1.0000', '11.5000', '11.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 (114658, '2022-09-05', 2169, 108141, 6565, 61566, '2.0000', '1.7455', '1.7455', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114659, '2022-09-05', 1339, 108142, 6565, 61581, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114660, '2022-09-05', 1771, 108143, 6565, 62098, '1.0000', '7.0319', '7.0319', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114661, '2022-09-05', 1603, 108144, 6565, 13738, '1.0000', '55.1600', '55.1600', '96.0000', '96.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114662, '2022-09-05', 2315, 108145, 6565, 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 (114663, '2022-09-05', 8039, 108146, 6565, NULL, '1.0000', '12.9000', '12.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 (114664, '2022-09-05', 1888, 108147, 6565, 62160, '1.0000', '18.9518', '18.9518', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114665, '2022-09-05', 2238, 108148, 6565, 55895, '1.0000', '55.5946', '55.5946', '73.0000', '73.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114666, '2022-09-05', 9870, 108149, 6565, 61499, '1.0000', '7.0202', '7.0202', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114667, '2022-09-05', 1837, 108150, 6565, 62104, '1.0000', '1.1717', '1.1717', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114668, '2022-09-05', 1342, 108151, 6565, 62151, '1.0000', '7.1610', '7.1610', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114669, '2022-09-05', 1529, 108152, 6565, 62135, '1.0000', '4.8781', '4.8781', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114670, '2022-09-05', 9831, 108153, 6565, 61498, '2.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114671, '2022-09-05', 2643, 108154, 6565, 59670, '2.0000', '1.0727', '1.0727', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114672, '2022-09-05', 1578, 108155, 6565, 62183, '1.0000', '3.0489', '3.0489', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114673, '2022-09-05', 2289, 108156, 6565, NULL, '3.0000', '0.3611', '0.3611', '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 (114674, '2022-09-05', 7459, 108157, 6565, NULL, '14.0000', '-17.6445', '-17.6445', '4.0000', '4.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 (114675, '2022-09-05', 8677, 108158, 6565, NULL, '2.0000', '1026.1382', '1026.1382', '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 (114676, '2022-09-05', 2656, 108159, 6565, 61495, '1.0000', '2.1557', '2.1557', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114677, '2022-09-05', 2428, 108160, 6565, 58052, '1.0000', '18.0000', '18.0000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114678, '2022-09-05', 2295, 108161, 6565, 62188, '3.0000', '1.6175', '1.6175', '2.5000', '2.5000', '97.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114679, '2022-09-05', 1499, 108162, 6565, 62139, '2.0000', '0.5090', '0.5090', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114680, '2022-09-05', 2167, 108163, 6565, NULL, '1.0000', '-1.6257', '-1.6257', '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 (114681, '2022-09-05', 2169, 108164, 6565, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114682, '2022-09-05', 1386, 108165, 6565, 60299, '1.0000', '4.5458', '4.5458', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114683, '2022-09-05', 1863, 108166, 6565, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '124.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114684, '2022-09-05', 1703, 108167, 6565, 59868, '1.0000', '11.5700', '11.5700', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114685, '2022-09-05', 8622, 108168, 6565, 61575, '1.0000', '1.4900', '1.4900', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114686, '2022-09-05', 1668, 108169, 6565, 60288, '1.0000', '20.0477', '20.0477', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114687, '2022-09-05', 1863, 108170, 6565, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '123.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114688, '2022-09-05', 8119, 108171, 6565, 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 (114689, '2022-09-05', 2699, 108172, 6565, NULL, '2.0000', '4.2435', '4.2435', '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 (114690, '2022-09-05', 1528, 108173, 6565, NULL, '1.0000', '900.1354', '900.1354', '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 (114691, '2022-09-05', 2169, 108174, 6565, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114692, '2022-09-05', 8065, 108175, 6565, NULL, '1.0000', '32.0000', '32.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 (114693, '2022-09-05', 1674, 108176, 6565, 62110, '1.0000', '5.0303', '5.0303', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114694, '2022-09-05', 2237, 108177, 6565, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114695, '2022-09-05', 1427, 108178, 6565, NULL, '2.0000', '14.5000', '14.5000', '20.5000', '20.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 (114696, '2022-09-05', 1529, 108179, 6565, 62135, '1.0000', '4.8781', '4.8781', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114697, '2022-09-05', 1856, 108180, 6565, NULL, '1.0000', '155.0099', '155.0099', '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 (114698, '2022-09-05', 9867, 108181, 6565, 60220, '1.0000', '10.2176', '10.2176', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114699, '2022-09-05', 1863, 108182, 6565, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '123.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114700, '2022-09-05', 8746, 108183, 6565, 61266, '2.0000', '2.8100', '2.8100', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114701, '2022-09-05', 2169, 108184, 6565, 61566, '2.0000', '1.7455', '1.7455', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114702, '2022-09-05', 9762, 108185, 6565, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114703, '2022-09-05', 1855, 108186, 6565, 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 (114704, '2022-09-05', 2327, 108187, 6565, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114705, '2022-09-05', 9840, 108188, 6565, 62133, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114706, '2022-09-05', 1368, 108189, 6565, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114707, '2022-09-05', 1665, 108190, 6565, 61557, '2.0000', '1.4459', '1.4459', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114708, '2022-09-05', 1488, 108191, 6565, 62081, '2.0000', '4.2964', '4.2964', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114709, '2022-09-05', 2699, 108192, 6565, NULL, '1.0000', '4.2435', '4.2435', '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 (114710, '2022-09-05', 8933, 108193, 6565, 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 (114711, '2022-09-05', 2315, 108194, 6565, NULL, '2.0000', '0.7700', '0.7700', '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 (114712, '2022-09-05', 1695, 108195, 6565, 62074, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114713, '2022-09-05', 1828, 108196, 6565, 59837, '1.0000', '1.9383', '1.9383', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114714, '2022-09-05', 1562, 108197, 6565, 62085, '1.0000', '7.9059', '7.9059', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114715, '2022-09-05', 2410, 108198, 6565, 60269, '1.0000', '4.9430', '4.9430', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114716, '2022-09-05', 9995, 108199, 6565, NULL, '1.0000', '8.2000', '8.2000', '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 (114717, '2022-09-05', 9735, 108200, 6565, 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 (114718, '2022-09-05', 1837, 108201, 6565, 62104, '2.0000', '1.1717', '1.1717', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114719, '2022-09-05', 1787, 108202, 6565, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114720, '2022-09-05', 1387, 108203, 6565, 61564, '1.0000', '15.5976', '15.5976', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114721, '2022-09-05', 1856, 108204, 6565, NULL, '1.0000', '155.0099', '155.0099', '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 (114722, '2022-09-05', 1342, 108205, 6565, 62151, '1.0000', '7.1610', '7.1610', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114723, '2022-09-05', 9864, 108206, 6565, 55579, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114724, '2022-09-05', 2315, 108207, 6565, NULL, '1.0000', '0.7700', '0.7700', '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 (114725, '2022-09-05', 9695, 108208, 6565, 61501, '1.0000', '5.5201', '5.5201', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114726, '2022-09-05', 2231, 108209, 6565, NULL, '1.0000', '643.2875', '643.2875', '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 (114727, '2022-09-05', 8384, 108210, 6565, NULL, '2.0000', '2.5000', '2.5000', '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 (114728, '2022-09-05', 2169, 108211, 6565, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114729, '2022-09-05', 3059, 108212, 6565, 59839, '1.0000', '1.1792', '1.1792', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114730, '2022-09-05', 1912, 108213, 6565, 62138, '1.0000', '0.9741', '0.9741', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114731, '2022-09-05', 1855, 108214, 6565, 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 (114732, '2022-09-05', 2295, 108215, 6565, 62188, '6.0000', '1.6175', '1.6175', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114733, '2022-09-05', 1863, 108216, 6565, 62178, '4.0000', '1.5016', '1.5016', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114734, '2022-09-05', 1383, 108217, 6565, 62134, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114735, '2022-09-05', 1396, 108218, 6565, 48952, '1.0000', '2.7000', '2.7000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114736, '2022-09-05', 2762, 108219, 6565, NULL, '1.0000', '7.1000', '7.1000', '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 (114737, '2022-09-05', 1674, 108220, 6565, 62110, '1.0000', '5.0303', '5.0303', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114738, '2022-09-05', 7785, 108221, 6565, 58235, '1.0000', '3.9000', '3.9000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114739, '2022-09-05', 1672, 108222, 6565, 62102, '2.0000', '3.6408', '3.6408', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114740, '2022-09-05', 1672, 108222, 6565, NULL, '8.0000', '3.6408', '3.6408', '5.5000', '5.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 (114741, '2022-09-05', 2248, 108223, 6565, 60291, '1.0000', '3.6964', '3.6964', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114742, '2022-09-05', 2263, 108224, 6565, 61560, '1.0000', '18.6742', '18.6742', '8.0000', '8.0000', '25.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114743, '2022-09-05', 1580, 108225, 6565, 62190, '3.0000', '1.4680', '1.4680', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114744, '2022-09-05', 9856, 108226, 6565, NULL, '1.0000', '1.6000', '1.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 (114745, '2022-09-05', 8462, 108227, 6566, NULL, '1.0000', '7.0400', '7.0400', '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 (114746, '2022-09-05', 2284, 108228, 6566, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (114747, '2022-09-05', 2283, 108229, 6566, 2943, '-36.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 (114748, '2022-09-05', 2283, 108229, 6566, NULL, '37.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114749, '2022-09-05', 8097, 108230, 6566, NULL, '4.0000', '3.4000', '3.4000', '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 (114750, '2022-09-05', 9399, 108231, 6566, NULL, '1.0000', '0.9800', '0.9800', '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 (114751, '2022-09-05', 7411, 108232, 6566, NULL, '2.0000', '1.3500', '1.3500', '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 (114752, '2022-09-05', 7447, 108233, 6566, NULL, '8.0000', '19.1100', '19.1100', '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 (114753, '2022-09-05', 1875, 108234, 6567, 62034, '10.0000', '61.6913', '61.6913', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114754, '2022-09-05', 2315, 108235, 6567, 60074, '10.0000', '0.5758', '0.5758', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114755, '2022-09-05', 9747, 108236, 6567, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114756, '2022-09-05', 1374, 108237, 6567, 55798, '1.0000', '95.6984', '95.6984', '39.0000', '39.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114757, '2022-09-05', 2302, 108238, 6567, 61671, '1.0000', '5.1974', '5.1974', '7.0000', '7.0000', '24.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114758, '2022-09-05', 7411, 108239, 6567, 61295, '2.0000', '1.5882', '1.5882', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114759, '2022-09-05', 2643, 108240, 6567, 60925, '1.0000', '1.0109', '1.0109', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114760, '2022-09-05', 1602, 108241, 6567, 62047, '1.0000', '7.3972', '7.3972', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114761, '2022-09-05', 1846, 108242, 6567, 61595, '1.0000', '7.8688', '7.8688', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114762, '2022-09-05', 1637, 108243, 6567, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114763, '2022-09-05', 2656, 108244, 6567, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114764, '2022-09-05', 1888, 108245, 6567, 60057, '1.0000', '17.6053', '17.6053', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114765, '2022-09-05', 8753, 108246, 6567, 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 (114766, '2022-09-05', 1592, 108247, 6567, 62029, '1.0000', '38.1717', '38.1717', '66.0000', '66.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114767, '2022-09-05', 2325, 108248, 6567, 60915, '1.0000', '6.1971', '6.1971', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114768, '2022-09-05', 1950, 108249, 6567, 61660, '1.0000', '7.7926', '7.7926', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114769, '2022-09-05', 9891, 108250, 6567, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114770, '2022-09-05', 1856, 108251, 6567, 62043, '1.0000', '5.4306', '5.4306', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114771, '2022-09-05', 1863, 108252, 6567, 62044, '1.0000', '1.4340', '1.4340', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114772, '2022-09-05', 2293, 108253, 6567, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '33.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114773, '2022-09-05', 1863, 108254, 6567, 62044, '1.0000', '1.4340', '1.4340', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114774, '2022-09-05', 2821, 108255, 6567, 61993, '1.0000', '3.4429', '3.4429', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114775, '2022-09-05', 9750, 108256, 6567, 46052, '1.0000', '3.3000', '3.3000', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114776, '2022-09-05', 2135, 108257, 6567, NULL, '1.0000', '2.2504', '2.2504', '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 (114777, '2022-09-05', 1572, 108258, 6567, 58815, '5.0000', '1.9861', '1.9861', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114778, '2022-09-05', 7411, 108259, 6567, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114779, '2022-09-05', 1650, 108260, 6567, 62021, '1.0000', '15.6257', '15.6257', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114780, '2022-09-05', 1592, 108261, 6567, 62029, '1.0000', '38.1717', '38.1717', '66.0000', '66.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114781, '2022-09-05', 8809, 108262, 6567, 32625, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114782, '2022-09-05', 1754, 108263, 6567, 62030, '1.0000', '24.5555', '24.5555', '23.5000', '23.5000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114783, '2022-09-05', 2260, 108264, 6567, 61989, '2.0000', '4.9377', '4.9377', '7.0000', '7.0000', '38.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114784, '2022-09-05', 10004, 108265, 6567, 61693, '2.0000', '2.5100', '2.5100', '3.0000', '3.0000', '88.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114785, '2022-09-05', 2250, 108266, 6567, 60075, '1.0000', '8.4268', '8.4268', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114786, '2022-09-05', 2302, 108267, 6567, 61671, '2.0000', '5.1974', '5.1974', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114787, '2022-09-05', 2699, 108268, 6567, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114788, '2022-09-05', 1620, 108269, 6567, 61991, '8.0000', '2.3356', '2.3356', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114789, '2022-09-05', 2260, 108270, 6567, 61989, '8.0000', '4.9377', '4.9377', '7.0000', '7.0000', '32.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114790, '2022-09-05', 2738, 108271, 6567, 61985, '1.0000', '9.1392', '9.1392', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114791, '2022-09-05', 9590, 108272, 6567, NULL, '2.0000', '0.0000', '0.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 (114792, '2022-09-05', 2244, 108273, 6568, NULL, '1.0000', '-2.9000', '-2.9000', '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 (114793, '2022-09-05', 2167, 108274, 6568, NULL, '1.0000', '-1.6257', '-1.6257', '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 (114794, '2022-09-06', 9513, 108275, 6569, 61637, '1.0000', '11.6000', '11.6000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114795, '2022-09-06', 3017, 108276, 6569, 59986, '1.0000', '3.9652', '3.9652', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114796, '2022-09-06', 2384, 108277, 6569, 60032, '25.0000', '0.4392', '0.4392', '0.8000', '0.8000', '58.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114797, '2022-09-06', 7745, 108278, 6569, 62217, '2.0000', '8.4200', '8.4200', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114798, '2022-09-06', 2893, 108279, 6569, 62224, '1.0000', '6.8008', '6.8008', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114799, '2022-09-06', 2237, 108280, 6569, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114800, '2022-09-06', 7745, 108281, 6569, 62217, '1.0000', '8.4200', '8.4200', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114801, '2022-09-06', 1432, 108282, 6569, 61596, '1.0000', '11.7590', '11.7590', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114802, '2022-09-06', 2154, 108283, 6569, 61662, '1.0000', '12.6096', '12.6096', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114803, '2022-09-06', 1759, 108284, 6569, 56921, '1.0000', '16.2090', '16.2090', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114804, '2022-09-06', 2618, 108285, 6569, 48779, '2.0000', '2.8873', '2.8873', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114805, '2022-09-06', 2384, 108286, 6569, 60032, '3.0000', '0.4392', '0.4392', '0.8000', '0.8000', '80.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114806, '2022-09-06', 8208, 108287, 6569, NULL, '6.0000', '33.0000', '33.0000', '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 (114807, '2022-09-06', 2315, 108288, 6569, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114808, '2022-09-06', 1863, 108289, 6569, 62253, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114809, '2022-09-06', 8359, 108290, 6570, 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 (114810, '2022-09-06', 7483, 108291, 6570, NULL, '1.0000', '0.4200', '0.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 (114811, '2022-09-06', 7444, 108292, 6570, 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 (114812, '2022-09-06', 9503, 108293, 6570, NULL, '2.0000', '20.6000', '20.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 (114813, '2022-09-06', 8979, 108294, 6570, NULL, '3.0000', '1.0000', '1.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 (114814, '2022-09-06', 7741, 108295, 6570, NULL, '1.0000', '1.2000', '1.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 (114815, '2022-09-06', 8063, 108296, 6570, NULL, '1.0000', '1.6000', '1.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 (114816, '2022-09-06', 9001, 108297, 6570, NULL, '1.0000', '23.5000', '23.5000', '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 (114817, '2022-09-06', 8566, 108298, 6570, NULL, '1.0000', '11.0000', '11.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 (114818, '2022-09-06', 7709, 108299, 6570, 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 (114819, '2022-09-06', 8813, 108300, 6570, NULL, '1.0000', '17.6000', '17.6000', '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 (114820, '2022-09-06', 9512, 108301, 6570, 33797, '1.0000', '1.3100', '1.3100', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114821, '2022-09-06', 7756, 108302, 6570, NULL, '1.0000', '2.5000', '2.5000', '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 (114822, '2022-09-06', 1631, 108303, 6570, 3205, '-4.0000', '37.6948', '37.6948', '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 (114823, '2022-09-06', 1631, 108303, 6570, NULL, '5.0000', '37.6948', '37.6948', '18.0000', '18.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 (114824, '2022-09-06', 9209, 108304, 6570, NULL, '1.0000', '4.8000', '4.8000', '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 (114825, '2022-09-06', 7641, 108305, 6570, NULL, '1.0000', '1.9000', '1.9000', '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 (114826, '2022-09-06', 7690, 108306, 6570, NULL, '1.0000', '18.2800', '18.2800', '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 (114827, '2022-09-06', 7438, 108307, 6570, NULL, '1.0000', '28.6900', '28.6900', '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 (114828, '2022-09-06', 7666, 108308, 6570, NULL, '1.0000', '3.6000', '3.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 (114829, '2022-09-06', 1498, 108309, 6570, 19685, '-58.0000', '0.3300', '0.3300', '0.7000', '0.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 (114830, '2022-09-06', 1498, 108309, 6570, NULL, '59.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114831, '2022-09-06', 8596, 108310, 6570, 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 (114832, '2022-09-06', 1722, 108311, 6570, NULL, '1.0000', '90.0000', '90.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 (114833, '2022-09-06', 7316, 108312, 6570, NULL, '10.0000', '9.5500', '9.5500', '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 (114834, '2022-09-06', 7473, 108313, 6570, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (114835, '2022-09-06', 7780, 108314, 6570, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114836, '2022-09-06', 7334, 108315, 6570, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (114837, '2022-09-06', 7367, 108316, 6570, NULL, '1.0000', '9.1700', '9.1700', '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 (114838, '2022-09-06', 8084, 108317, 6570, NULL, '1.0000', '12.7000', '12.7000', '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 (114839, '2022-09-06', 8011, 108318, 6570, 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 (114840, '2022-09-06', 8308, 108319, 6570, NULL, '1.0000', '2.0800', '2.0800', '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 (114841, '2022-09-06', 7640, 108320, 6570, 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 (114842, '2022-09-06', 9988, 108321, 6570, 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 (114843, '2022-09-06', 7447, 108322, 6570, NULL, '3.0000', '19.1100', '19.1100', '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 (114844, '2022-09-06', 8547, 108323, 6570, NULL, '1.0000', '3.3500', '3.3500', '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 (114845, '2022-09-06', 2167, 108324, 6571, NULL, '2.0000', '-1.6257', '-1.6257', '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 (114846, '2022-09-06', 2327, 108325, 6571, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114847, '2022-09-06', 9870, 108326, 6571, 61499, '2.0000', '7.0202', '7.0202', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114848, '2022-09-06', 9472, 108327, 6571, 61265, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114849, '2022-09-06', 2754, 108328, 6571, NULL, '6.0000', '0.0800', '0.0800', '0.2000', '0.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 (114850, '2022-09-06', 2169, 108329, 6571, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114851, '2022-09-06', 2352, 108330, 6571, NULL, '1.0000', '313.7364', '313.7364', '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 (114852, '2022-09-06', 2289, 108331, 6571, NULL, '3.0000', '0.3611', '0.3611', '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 (114853, '2022-09-06', 9798, 108332, 6571, NULL, '1.0000', '13.9000', '13.9000', '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 (114854, '2022-09-06', 2315, 108333, 6571, 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 (114855, '2022-09-06', 9747, 108334, 6571, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114856, '2022-09-06', 9741, 108335, 6571, NULL, '1.0000', '7.8500', '7.8500', '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 (114857, '2022-09-06', 2416, 108336, 6571, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114858, '2022-09-06', 2643, 108337, 6571, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114859, '2022-09-06', 9634, 108338, 6571, NULL, '2.0000', '4.4667', '4.4667', '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 (114860, '2022-09-06', 2443, 108339, 6571, 54833, '1.0000', '3.1936', '3.1936', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114861, '2022-09-06', 8677, 108340, 6571, NULL, '3.0000', '1026.1382', '1026.1382', '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 (114862, '2022-09-06', 7801, 108341, 6571, NULL, '2.0000', '3.0000', '3.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 (114863, '2022-09-06', 1767, 108342, 6571, 61569, '1.0000', '5.7685', '5.7685', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114864, '2022-09-06', 7429, 108343, 6571, NULL, '1.0000', '18.0000', '18.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 (114865, '2022-09-06', 2506, 108344, 6571, NULL, '1.0000', '-9.4377', '-9.4377', '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 (114866, '2022-09-06', 7954, 108345, 6571, 57084, '4.0000', '2.4470', '2.4470', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114867, '2022-09-06', 2416, 108346, 6571, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114868, '2022-09-06', 1602, 108347, 6571, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114869, '2022-09-06', 1410, 108348, 6571, NULL, '1.0000', '124.6472', '124.6472', '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 (114870, '2022-09-06', 9734, 108349, 6571, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '276.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114871, '2022-09-06', 8740, 108350, 6571, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114872, '2022-09-06', 2643, 108351, 6571, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114873, '2022-09-06', 2284, 108352, 6571, 55589, '1.0000', '1.3400', '1.3400', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114874, '2022-09-06', 7824, 108353, 6571, 39802, '1.0000', '5.5000', '5.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114875, '2022-09-06', 1904, 108354, 6571, 60310, '4.0000', '2.3094', '2.3094', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114876, '2022-09-06', 1822, 108355, 6571, 59618, '17.0000', '2.8001', '2.8001', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114877, '2022-09-06', 9219, 108356, 6571, 62077, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114878, '2022-09-06', 2303, 108357, 6571, 60320, '2.0000', '27.4455', '27.4455', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114879, '2022-09-06', 2567, 108358, 6571, 61252, '1.0000', '35.5528', '35.5528', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114880, '2022-09-06', 1650, 108359, 6571, NULL, '1.0000', '14.9969', '14.9969', '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 (114881, '2022-09-06', 7382, 108360, 6571, NULL, '1.0000', '11.0333', '11.0333', '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 (114882, '2022-09-06', 3059, 108361, 6571, 59839, '1.0000', '1.1792', '1.1792', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114883, '2022-09-06', 2264, 108362, 6571, NULL, '1.0000', '12.0000', '12.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 (114884, '2022-09-06', 7318, 108363, 6571, NULL, '1.0000', '12.1931', '12.1931', '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 (114885, '2022-09-06', 8189, 108364, 6572, NULL, '1.0000', '42.0000', '42.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 (114886, '2022-09-06', 8917, 108365, 6572, NULL, '1.0000', '4.0500', '4.0500', '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 (114887, '2022-09-06', 7592, 108366, 6572, 59395, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114888, '2022-09-06', 1738, 108367, 6572, NULL, '1.0000', '7.1000', '7.1000', '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 (114889, '2022-09-06', 7324, 108368, 6572, 60112, '6.0000', '6.3200', '6.3200', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114890, '2022-09-06', 7473, 108369, 6572, 61833, '7.0000', '0.5360', '0.5360', '0.7000', '0.7000', '60.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114891, '2022-09-06', 7518, 108370, 6572, 61873, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114892, '2022-09-06', 9531, 108371, 6572, 39430, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114893, '2022-09-06', 8363, 108372, 6572, NULL, '1.0000', '38.0000', '38.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 (114894, '2022-09-06', 7560, 108373, 6572, 61927, '1.0000', '41.7459', '41.7459', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114895, '2022-09-06', 7641, 108374, 6572, 61787, '1.0000', '7.2879', '7.2879', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114896, '2022-09-06', 9691, 108375, 6572, 61886, '1.0000', '59.7709', '59.7709', '82.0000', '82.0000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114897, '2022-09-06', 7897, 108376, 6572, NULL, '1.0000', '-24.5000', '-24.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 (114898, '2022-09-06', 7411, 108377, 6572, 61709, '2.0000', '1.4296', '1.4296', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114899, '2022-09-06', 7544, 108378, 6572, NULL, '2.0000', '9.4300', '9.4300', '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 (114900, '2022-09-06', 1841, 108379, 6572, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '72.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114901, '2022-09-06', 7888, 108380, 6572, NULL, '1.0000', '17.8091', '17.8091', '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 (114902, '2022-09-06', 7588, 108381, 6572, 61874, '1.0000', '8.3861', '8.3861', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114903, '2022-09-06', 7838, 108382, 6572, 61960, '2.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114904, '2022-09-06', 7628, 108383, 6572, 54135, '1.0000', '0.0299', '0.0299', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114905, '2022-09-06', 7628, 108383, 6572, NULL, '2.0000', '0.0299', '0.0299', '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 (114906, '2022-09-06', 2289, 108384, 6572, NULL, '2.0000', '4.0652', '4.0652', '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 (114907, '2022-09-06', 7457, 108385, 6572, 61924, '1.0000', '5.0178', '5.0178', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114908, '2022-09-06', 7719, 108386, 6572, 60808, '1.0000', '8.1122', '8.1122', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114909, '2022-09-06', 8463, 108387, 6572, NULL, '1.0000', '18.0000', '18.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 (114910, '2022-09-06', 7672, 108388, 6572, 59078, '1.0000', '4.1633', '4.1633', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114911, '2022-09-06', 7514, 108389, 6572, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114912, '2022-09-06', 9695, 108390, 6572, 61792, '1.0000', '5.9153', '5.9153', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114913, '2022-09-06', 8101, 108391, 6572, 61865, '1.0000', '2.5225', '2.5225', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114914, '2022-09-06', 7444, 108392, 6572, 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 (114915, '2022-09-06', 7674, 108393, 6572, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114916, '2022-09-06', 10004, 108394, 6572, 61894, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '49.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114917, '2022-09-06', 1339, 108395, 6572, NULL, '1.0000', '2.3147', '2.3147', '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 (114918, '2022-09-06', 9775, 108396, 6573, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114919, '2022-09-06', 2762, 108397, 6573, NULL, '1.0000', '7.1000', '7.1000', '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 (114920, '2022-09-06', 2699, 108398, 6573, NULL, '1.0000', '4.2435', '4.2435', '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 (114921, '2022-09-06', 2643, 108399, 6573, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114922, '2022-09-06', 2169, 108400, 6573, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114923, '2022-09-06', 2315, 108401, 6573, NULL, '1.0000', '0.7700', '0.7700', '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 (114924, '2022-09-06', 7886, 108402, 6573, NULL, '1.0000', '14.5000', '14.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 (114925, '2022-09-06', 1388, 108403, 6573, 61565, '1.0000', '7.4975', '7.4975', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114926, '2022-09-06', 1430, 108404, 6573, 48984, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114927, '2022-09-06', 8184, 108405, 6573, NULL, '10.0000', '2.9902', '2.9902', '4.0000', '4.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 (114928, '2022-09-06', 7403, 108406, 6573, 55724, '10.0000', '1.0100', '1.0100', '1.3000', '1.3000', '49.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114929, '2022-09-06', 3058, 108407, 6573, NULL, '2.0000', '-47.3000', '-47.3000', '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 (114930, '2022-09-06', 9831, 108408, 6573, 61498, '1.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114931, '2022-09-06', 7612, 108409, 6573, NULL, '2.0000', '0.4900', '0.4900', '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 (114932, '2022-09-06', 1855, 108410, 6573, 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 (114933, '2022-09-06', 8184, 108411, 6573, NULL, '10.0000', '2.9902', '2.9902', '4.0000', '4.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 (114934, '2022-09-06', 2460, 108412, 6573, 62095, '1.0000', '34.0691', '34.0691', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114935, '2022-09-06', 2169, 108413, 6573, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114936, '2022-09-06', 9995, 108414, 6573, NULL, '1.0000', '8.2000', '8.2000', '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 (114937, '2022-09-06', 2444, 108415, 6573, NULL, '1.0000', '10.0950', '10.0950', '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 (114938, '2022-09-06', 1837, 108416, 6573, 62104, '2.0000', '1.1717', '1.1717', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114939, '2022-09-06', 2384, 108417, 6573, NULL, '2.0000', '-5.5392', '-5.5392', '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 (114940, '2022-09-06', 1746, 108418, 6573, 62186, '2.0000', '5.0901', '5.0901', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114941, '2022-09-06', 2237, 108419, 6573, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114942, '2022-09-06', 1863, 108420, 6573, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '115.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114943, '2022-09-06', 7741, 108421, 6573, NULL, '1.0000', '-174.4114', '-174.4114', '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 (114944, '2022-09-06', 1396, 108422, 6573, 48952, '1.0000', '2.7000', '2.7000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114945, '2022-09-06', 2315, 108423, 6573, NULL, '1.0000', '0.7700', '0.7700', '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 (114946, '2022-09-06', 1863, 108424, 6573, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '115.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114947, '2022-09-06', 2327, 108425, 6573, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114948, '2022-09-06', 1501, 108426, 6573, NULL, '1.0000', '0.0905', '0.0905', '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 (114949, '2022-09-06', 2036, 108427, 6573, 59684, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114950, '2022-09-06', 3076, 108428, 6573, 61471, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114951, '2022-09-06', 1999, 108429, 6573, 61257, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114952, '2022-09-06', 3025, 108430, 6573, 58059, '1.0000', '2.4395', '2.4395', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114953, '2022-09-06', 1704, 108431, 6573, 62076, '1.0000', '32.3358', '32.3358', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114954, '2022-09-06', 2169, 108432, 6573, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114955, '2022-09-06', 2673, 108433, 6573, 55938, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114956, '2022-09-06', 2315, 108434, 6573, 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 (114957, '2022-09-06', 9856, 108435, 6573, NULL, '1.0000', '1.6000', '1.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 (114958, '2022-09-06', 1499, 108436, 6573, 62139, '1.0000', '0.5090', '0.5090', '0.7000', '0.7000', '47.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114959, '2022-09-06', 7558, 108437, 6573, NULL, '1.0000', '-37.0255', '-37.0255', '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 (114960, '2022-09-06', 9209, 108438, 6573, NULL, '1.0000', '5.7500', '5.7500', '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 (114961, '2022-09-06', 1409, 108439, 6573, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114962, '2022-09-06', 1746, 108440, 6573, 62186, '3.0000', '5.0901', '5.0901', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114963, '2022-09-06', 2361, 108441, 6573, 42543, '2.0000', '0.4744', '0.4744', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114964, '2022-09-06', 7593, 108442, 6573, NULL, '1.0000', '0.8000', '0.8000', '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 (114965, '2022-09-06', 1855, 108443, 6573, 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 (114966, '2022-09-06', 1310, 108444, 6573, 60260, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114967, '2022-09-06', 1863, 108445, 6573, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '115.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114968, '2022-09-06', 2248, 108446, 6573, 60291, '1.0000', '3.6964', '3.6964', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114969, '2022-09-06', 9807, 108447, 6573, 51364, '1.0000', '36.8000', '36.8000', '49.0000', '49.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114970, '2022-09-06', 1501, 108448, 6573, NULL, '1.0000', '0.0905', '0.0905', '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 (114971, '2022-09-06', 1425, 108449, 6573, NULL, '1.0000', '1666.9347', '1666.9347', '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 (114972, '2022-09-06', 2109, 108450, 6573, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114973, '2022-09-06', 9747, 108451, 6573, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114974, '2022-09-06', 1310, 108452, 6573, 60260, '10.0000', '0.4100', '0.4100', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114975, '2022-09-06', 9633, 108453, 6573, 61578, '1.0000', '7.9117', '7.9117', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114976, '2022-09-06', 1921, 108454, 6573, 62157, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114977, '2022-09-06', 2169, 108455, 6573, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114978, '2022-09-06', 1665, 108456, 6573, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114979, '2022-09-06', 7675, 108457, 6574, NULL, '1.0000', '-21.9809', '-21.9809', '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 (114980, '2022-09-06', 2821, 108458, 6575, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114981, '2022-09-06', 1904, 108459, 6575, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114982, '2022-09-06', 1520, 108460, 6575, 56972, '3.0000', '1.5765', '1.5765', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114983, '2022-09-06', 2315, 108461, 6575, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114984, '2022-09-06', 2821, 108462, 6575, 62202, '2.0000', '3.4415', '3.4415', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114985, '2022-09-06', 7533, 108463, 6575, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114986, '2022-09-06', 2699, 108464, 6575, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114987, '2022-09-06', 1921, 108465, 6575, 57994, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114988, '2022-09-06', 1602, 108466, 6575, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114989, '2022-09-06', 9747, 108467, 6575, 61623, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114990, '2022-09-06', 8745, 108468, 6575, 60922, '1.0000', '12.3471', '12.3471', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114991, '2022-09-06', 1521, 108469, 6575, 61614, '1.0000', '2.8889', '2.8889', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114992, '2022-09-06', 1424, 108470, 6575, 39191, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114993, '2022-09-06', 8038, 108471, 6575, NULL, '1.0000', '6.7000', '6.7000', '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 (114994, '2022-09-06', 7411, 108472, 6575, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114995, '2022-09-06', 2821, 108473, 6575, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114996, '2022-09-06', 1425, 108474, 6575, 62266, '1.0000', '6.9402', '6.9402', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114997, '2022-09-06', 9726, 108475, 6575, 46082, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114998, '2022-09-06', 7609, 108476, 6575, NULL, '1.0000', '4.3300', '4.3300', '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 (114999, '2022-09-06', 2607, 108477, 6575, 42956, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '0.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115000, '2022-09-06', 2607, 108477, 6575, 9786, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '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 (115001, '2022-09-06', 7917, 108478, 6575, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (115002, '2022-09-06', 2380, 108479, 6575, 59637, '1.0000', '45.1378', '45.1378', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115003, '2022-09-06', 8052, 108480, 6575, NULL, '1.0000', '29.0000', '29.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 (115004, '2022-09-06', 1602, 108481, 6575, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115005, '2022-09-06', 1955, 108482, 6575, 12383, '6.0000', '35.0000', '35.0000', '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 (115006, '2022-09-06', 1955, 108482, 6575, 3409, '4.0000', '35.0000', '35.0000', '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 (115007, '2022-09-06', 2260, 108483, 6575, 62198, '2.0000', '4.8731', '4.8731', '7.0000', '7.0000', '28.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115008, '2022-09-06', 1431, 108484, 6575, 62264, '1.0000', '11.4353', '11.4353', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115009, '2022-09-06', 9199, 108485, 6575, NULL, '1.0000', '19.0000', '19.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 (115010, '2022-09-06', 7411, 108486, 6575, 61295, '1.0000', '1.5882', '1.5882', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115011, '2022-09-06', 1411, 108487, 6575, 61606, '1.0000', '25.9672', '25.9672', '35.0000', '35.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115012, '2022-09-06', 7886, 108488, 6575, NULL, '1.0000', '4.5000', '4.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 (115013, '2022-09-06', 7524, 108489, 6575, NULL, '1.0000', '11.9500', '11.9500', '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 (115014, '2022-09-06', 2315, 108490, 6575, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115015, '2022-09-06', 2221, 108491, 6575, 61601, '1.0000', '17.7772', '17.7772', '29.0000', '29.0000', '11.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115016, '2022-09-06', 1760, 108492, 6575, 58781, '1.0000', '0.8900', '0.8900', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115017, '2022-09-06', 8881, 108493, 6575, NULL, '4.0000', '2.5000', '2.5000', '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 (115018, '2022-09-06', 1665, 108494, 6575, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '47.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115019, '2022-09-06', 2256, 108495, 6575, 61655, '1.0000', '15.7294', '15.7294', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115020, '2022-09-06', 2142, 108496, 6575, 55756, '1.0000', '74.0000', '74.0000', '98.0000', '98.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115021, '2022-09-06', 2821, 108497, 6576, NULL, '1.0000', '3.4037', '3.4037', '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 (115022, '2022-09-06', 7386, 108498, 6576, NULL, '1.0000', '8.2000', '8.2000', '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 (115023, '2022-09-06', 2384, 108499, 6576, NULL, '1.0000', '-5.5392', '-5.5392', '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 (115024, '2022-09-06', 1541, 108500, 6576, NULL, '1.0000', '19.0000', '19.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115025, '2022-09-06', 9902, 108501, 6576, 62143, '1.0000', '9.0074', '9.0074', '12.0000', '12.0000', '10.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115026, '2022-09-06', 2441, 108502, 6576, 61256, '1.0000', '12.9756', '12.9756', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115027, '2022-09-06', 9695, 108503, 6576, 61501, '1.0000', '5.5201', '5.5201', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115028, '2022-09-07', 1715, 108504, 6577, 62207, '1.0000', '7.4363', '7.4363', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115029, '2022-09-07', 9880, 108505, 6577, 54434, '1.0000', '3.4200', '3.4200', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115030, '2022-09-07', 7756, 108506, 6577, NULL, '1.0000', '26.9296', '26.9296', '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 (115031, '2022-09-07', 2935, 108507, 6577, 60062, '1.0000', '13.5880', '13.5880', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115032, '2022-09-07', 1406, 108508, 6577, 58653, '1.0000', '18.3081', '18.3081', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115033, '2022-09-07', 1595, 108509, 6577, 47973, '1.0000', '20.0158', '20.0158', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115034, '2022-09-07', 2296, 108510, 6577, 61650, '1.0000', '13.7602', '13.7602', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115035, '2022-09-07', 7590, 108511, 6577, 60065, '1.0000', '2.9357', '2.9357', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115036, '2022-09-07', 1867, 108512, 6577, NULL, '1.0000', '6.9656', '6.9656', '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 (115037, '2022-09-07', 1715, 108513, 6577, 62207, '1.0000', '7.4363', '7.4363', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115038, '2022-09-07', 9880, 108514, 6577, 54434, '1.0000', '3.4200', '3.4200', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115039, '2022-09-07', 2762, 108515, 6577, 59993, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115040, '2022-09-07', 2238, 108516, 6577, 55772, '2.0000', '47.3889', '47.3889', '73.0000', '73.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115041, '2022-09-07', 9747, 108517, 6577, 61623, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115042, '2022-09-07', 2225, 108518, 6577, 56843, '1.0000', '15.7345', '15.7345', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115043, '2022-09-07', 7459, 108519, 6577, NULL, '10.0000', '4.5753', '4.5753', '4.0000', '4.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 (115044, '2022-09-07', 1839, 108520, 6577, 62233, '1.0000', '7.9880', '7.9880', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115045, '2022-09-07', 10004, 108521, 6577, 61693, '2.0000', '2.5100', '2.5100', '3.0000', '3.0000', '86.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115046, '2022-09-07', 2548, 108522, 6577, 62246, '1.0000', '9.0738', '9.0738', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115047, '2022-09-07', 8359, 108523, 6578, 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 (115048, '2022-09-07', 8074, 108524, 6578, NULL, '1.0000', '25.3504', '25.3504', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115049, '2022-09-07', 7509, 108525, 6578, NULL, '2.0000', '6.5000', '6.5000', '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 (115050, '2022-09-07', 7658, 108526, 6578, NULL, '1.0000', '2.0200', '2.0200', '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 (115051, '2022-09-07', 2315, 108527, 6578, 2735, '-658.0000', '0.3300', '0.3300', '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 (115052, '2022-09-07', 2315, 108527, 6578, NULL, '660.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-660.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115053, '2022-09-07', 7641, 108528, 6578, NULL, '1.0000', '1.9000', '1.9000', '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 (115054, '2022-09-07', 8053, 108529, 6578, NULL, '1.0000', '0.8000', '0.8000', '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 (115055, '2022-09-07', 7917, 108530, 6578, NULL, '1.0000', '5.0000', '5.0000', '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 (115056, '2022-09-07', 7518, 108531, 6578, NULL, '1.0000', '7.8200', '7.8200', '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 (115057, '2022-09-07', 8167, 108532, 6578, NULL, '2.0000', '16.2000', '16.2000', '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 (115058, '2022-09-07', 8318, 108533, 6578, NULL, '1.0000', '5.5000', '5.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 (115059, '2022-09-07', 2916, 108534, 6579, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115060, '2022-09-07', 9736, 108535, 6579, 62089, '1.0000', '5.2083', '5.2083', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115061, '2022-09-07', 2293, 108536, 6579, NULL, '1.0000', '-17.4320', '-17.4320', '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 (115062, '2022-09-07', 2038, 108537, 6579, 59672, '1.0000', '13.6990', '13.6990', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115063, '2022-09-07', 2416, 108538, 6579, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115064, '2022-09-07', 9482, 108539, 6579, NULL, '2.0000', '0.5000', '0.5000', '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 (115065, '2022-09-07', 2161, 108540, 6579, 58051, '1.0000', '6.5220', '6.5220', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115066, '2022-09-07', 7593, 108541, 6579, NULL, '1.0000', '0.8000', '0.8000', '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 (115067, '2022-09-07', 1704, 108542, 6579, 62076, '1.0000', '32.3358', '32.3358', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115068, '2022-09-07', 7513, 108543, 6579, 54535, '1.0000', '28.9000', '28.9000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115069, '2022-09-07', 8184, 108544, 6579, NULL, '10.0000', '2.9902', '2.9902', '4.0000', '4.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 (115070, '2022-09-07', 1875, 108545, 6579, 55926, '10.0000', '2.7375', '2.7375', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115071, '2022-09-07', 1704, 108546, 6579, 62076, '1.0000', '32.3358', '32.3358', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115072, '2022-09-07', 1499, 108547, 6579, 62139, '1.0000', '0.5090', '0.5090', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115073, '2022-09-07', 9747, 108548, 6579, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115074, '2022-09-07', 8740, 108549, 6579, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115075, '2022-09-07', 1688, 108550, 6579, 62073, '1.0000', '23.7000', '23.7000', '31.5000', '31.5000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115076, '2022-09-07', 2617, 108551, 6579, NULL, '1.0000', '-5.4200', '-5.4200', '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 (115077, '2022-09-07', 3044, 108552, 6579, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.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 (115078, '2022-09-07', 8444, 108553, 6579, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115079, '2022-09-07', 2440, 108554, 6579, 59696, '2.0000', '6.9575', '6.9575', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115080, '2022-09-07', 9747, 108555, 6579, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '87.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115081, '2022-09-07', 2643, 108556, 6579, 59670, '2.0000', '1.0727', '1.0727', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115082, '2022-09-07', 1521, 108557, 6579, 62130, '1.0000', '1808.4417', '1808.4417', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115083, '2022-09-07', 2965, 108558, 6579, NULL, '1.0000', '25.8406', '25.8406', '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 (115084, '2022-09-07', 1602, 108559, 6579, 60317, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115085, '2022-09-07', 8444, 108560, 6579, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115086, '2022-09-07', 2315, 108561, 6579, NULL, '1.0000', '0.7700', '0.7700', '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 (115087, '2022-09-07', 9856, 108562, 6579, NULL, '1.0000', '1.6000', '1.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 (115088, '2022-09-07', 2251, 108563, 6580, 62067, '1.0000', '14.9015', '14.9015', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115089, '2022-09-07', 1578, 108564, 6580, 62183, '1.0000', '3.0489', '3.0489', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115090, '2022-09-07', 1863, 108565, 6580, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '111.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115091, '2022-09-07', 9956, 108566, 6580, 61551, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115092, '2022-09-07', 2315, 108567, 6581, NULL, '1.0000', '0.7700', '0.7700', '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 (115093, '2022-09-07', 2102, 108568, 6581, NULL, '1.0000', '-20.1000', '-20.1000', '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 (115094, '2022-09-07', 2295, 108569, 6581, 62188, '3.0000', '1.6175', '1.6175', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115095, '2022-09-07', 9204, 108570, 6581, NULL, '1.0000', '14.1514', '14.1514', '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 (115096, '2022-09-07', 2240, 108571, 6581, 57776, '1.0000', '41.2979', '41.2979', '53.0000', '53.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115097, '2022-09-07', 1975, 108572, 6581, 58046, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115098, '2022-09-07', 8086, 108573, 6581, NULL, '1.0000', '9.3000', '9.3000', '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 (115099, '2022-09-07', 2237, 108574, 6581, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115100, '2022-09-07', 1388, 108575, 6581, 61565, '1.0000', '7.4975', '7.4975', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115101, '2022-09-07', 7376, 108576, 6581, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115102, '2022-09-07', 3059, 108577, 6581, 59839, '1.0000', '1.1792', '1.1792', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115103, '2022-09-07', 3044, 108578, 6581, 25017, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '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 (115104, '2022-09-07', 2643, 108579, 6581, 59670, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115105, '2022-09-07', 2643, 108579, 6581, 58067, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115106, '2022-09-07', 7886, 108580, 6581, NULL, '1.0000', '14.5000', '14.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 (115107, '2022-09-07', 8444, 108581, 6581, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115108, '2022-09-07', 1844, 108582, 6581, NULL, '2.0000', '1.3981', '1.3981', '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 (115109, '2022-09-07', 2020, 108583, 6581, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (115110, '2022-09-07', 10022, 108584, 6581, 62164, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115111, '2022-09-07', 1912, 108585, 6581, 62138, '1.0000', '0.9741', '0.9741', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115112, '2022-09-07', 1855, 108586, 6581, NULL, '5.0000', '1.4000', '1.4000', '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 (115113, '2022-09-07', 1910, 108587, 6581, NULL, '2.0000', '0.5756', '0.5756', '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 (115114, '2022-09-07', 2167, 108588, 6582, NULL, '1.0000', '-1.6257', '-1.6257', '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 (115115, '2022-09-07', 9213, 108589, 6582, 61486, '1.0000', '-6941.3272', '-6941.3272', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115116, '2022-09-07', 9902, 108590, 6582, 62143, '1.0000', '9.0074', '9.0074', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115117, '2022-09-07', 1383, 108591, 6582, 62134, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115118, '2022-09-07', 1602, 108592, 6582, 59619, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115119, '2022-09-07', 1863, 108593, 6582, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115120, '2022-09-07', 9747, 108594, 6582, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115121, '2022-09-07', 9856, 108595, 6582, NULL, '1.0000', '1.6000', '1.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 (115122, '2022-09-07', 9747, 108596, 6582, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '85.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115123, '2022-09-07', 1912, 108597, 6582, 62138, '1.0000', '0.9741', '0.9741', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115124, '2022-09-07', 9737, 108598, 6582, NULL, '1.0000', '7.9000', '7.9000', '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 (115125, '2022-09-07', 3085, 108599, 6582, NULL, '1.0000', '55.0000', '55.0000', '75.0000', '75.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115126, '2022-09-07', 2239, 108600, 6582, 51383, '1.0000', '25.8041', '25.8041', '74.0000', '74.0000', '5.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115127, '2022-09-07', 2020, 108601, 6582, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (115128, '2022-09-07', 1602, 108602, 6582, 59619, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115129, '2022-09-07', 2315, 108603, 6582, NULL, '1.0000', '0.7700', '0.7700', '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 (115130, '2022-09-07', 7386, 108604, 6582, NULL, '1.0000', '8.2000', '8.2000', '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 (115131, '2022-09-07', 2275, 108605, 6582, NULL, '3.0000', '1.0900', '1.0900', '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 (115132, '2022-09-07', 7741, 108606, 6582, NULL, '1.0000', '-174.4114', '-174.4114', '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 (115133, '2022-09-07', 7406, 108607, 6582, NULL, '1.0000', '2.3750', '2.3750', '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 (115134, '2022-09-07', 1499, 108608, 6582, 62139, '1.0000', '0.5090', '0.5090', '0.7000', '0.7000', '45.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115135, '2022-09-07', 1590, 108609, 6582, 62189, '2.0000', '2.4695', '2.4695', '3.5000', '3.5000', '248.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115136, '2022-09-07', 2293, 108610, 6582, NULL, '3.0000', '-17.4320', '-17.4320', '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 (115137, '2022-09-07', 1529, 108611, 6583, 62135, '1.0000', '4.8781', '4.8781', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115138, '2022-09-07', 9856, 108612, 6583, NULL, '1.0000', '1.6000', '1.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 (115139, '2022-09-07', 3001, 108613, 6583, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115140, '2022-09-07', 8677, 108614, 6583, NULL, '2.0000', '1026.1382', '1026.1382', '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 (115141, '2022-09-07', 2289, 108615, 6583, NULL, '5.0000', '0.3611', '0.3611', '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 (115142, '2022-09-07', 1704, 108616, 6583, 62076, '1.0000', '32.3358', '32.3358', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115143, '2022-09-07', 9996, 108617, 6583, 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 (115144, '2022-09-07', 2275, 108618, 6583, 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 (115145, '2022-09-07', 2169, 108619, 6583, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115146, '2022-09-07', 9996, 108620, 6583, 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 (115147, '2022-09-07', 8444, 108621, 6583, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115148, '2022-09-07', 9840, 108622, 6583, 62133, '3.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115149, '2022-09-07', 1450, 108623, 6583, NULL, '5.0000', '0.8483', '0.8483', '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 (115150, '2022-09-07', 1856, 108624, 6584, NULL, '1.0000', '155.0099', '155.0099', '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 (115151, '2022-09-07', 2643, 108625, 6584, 58067, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115152, '2022-09-07', 1310, 108626, 6584, 60260, '14.0000', '0.4100', '0.4100', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115153, '2022-09-07', 1342, 108627, 6584, 62151, '1.0000', '7.1610', '7.1610', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115154, '2022-09-07', 2263, 108628, 6584, 61560, '1.0000', '18.6742', '18.6742', '8.0000', '8.0000', '24.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115155, '2022-09-07', 9791, 108629, 6584, 62105, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115156, '2022-09-07', 1409, 108630, 6584, 60292, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115157, '2022-09-07', 2945, 108631, 6585, 54509, '1.0000', '9.4166', '9.4166', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115158, '2022-09-07', 9092, 108632, 6585, 60813, '4.0000', '0.3167', '0.3167', '0.5000', '0.5000', '95.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115159, '2022-09-07', 7959, 108633, 6585, 56660, '1.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '7.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115160, '2022-09-07', 9629, 108634, 6585, NULL, '4.0000', '22.0000', '22.0000', '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 (115161, '2022-09-07', 8468, 108635, 6585, 54138, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115162, '2022-09-07', 7952, 108636, 6585, 61882, '1.0000', '5.4929', '5.4929', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115163, '2022-09-07', 7743, 108637, 6585, NULL, '2.0000', '2076336.1912', '2076336.1912', '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 (115164, '2022-09-07', 9971, 108638, 6585, NULL, '1.0000', '5.8300', '5.8300', '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 (115165, '2022-09-07', 7514, 108639, 6585, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115166, '2022-09-07', 1935, 108640, 6585, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '104.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115167, '2022-09-07', 9275, 108641, 6585, NULL, '2.0000', '6.3000', '6.3000', '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 (115168, '2022-09-07', 9092, 108642, 6585, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115169, '2022-09-07', 7506, 108643, 6585, NULL, '1.0000', '15.0000', '15.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 (115170, '2022-09-07', 9890, 108644, 6585, 54117, '1.0000', '109.9000', '109.9000', '145.0000', '145.0000', '1.0000', 1, 0, NULL, 456);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115171, '2022-09-07', 7346, 108645, 6585, 53781, '1.0000', '103.7200', '103.7200', '121.0000', '121.0000', '0.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115172, '2022-09-07', 9413, 108646, 6585, 61705, '1.0000', '9.2095', '9.2095', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115173, '2022-09-07', 7518, 108647, 6585, 61873, '2.0000', '9.3500', '9.3500', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115174, '2022-09-07', 8200, 108648, 6585, 60445, '1.0000', '8.7785', '8.7785', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115175, '2022-09-07', 8918, 108649, 6585, 61838, '1.0000', '2.0791', '2.0791', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115176, '2022-09-07', 2070, 108650, 6585, 61841, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115177, '2022-09-07', 2251, 108651, 6585, 60469, '1.0000', '13.0059', '13.0059', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115178, '2022-09-07', 8666, 108652, 6585, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115179, '2022-09-07', 7674, 108653, 6585, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115180, '2022-09-07', 1501, 108654, 6585, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115181, '2022-09-07', 7518, 108655, 6585, 61873, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115182, '2022-09-07', 7316, 108656, 6585, 61704, '10.0000', '0.9268', '0.9268', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115183, '2022-09-07', 7952, 108657, 6585, 61882, '1.0000', '5.4929', '5.4929', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115184, '2022-09-07', 9092, 108658, 6585, 60813, '2.0000', '0.3167', '0.3167', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115185, '2022-09-07', 7533, 108659, 6585, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115186, '2022-09-07', 9783, 108660, 6585, 60781, '1.0000', '19.5206', '19.5206', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115187, '2022-09-07', 1856, 108661, 6585, 61855, '1.0000', '2.4948', '2.4948', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115188, '2022-09-07', 7518, 108662, 6585, 61873, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115189, '2022-09-07', 7899, 108663, 6585, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115190, '2022-09-07', 2545, 108664, 6585, 48058, '1.0000', '8.5306', '8.5306', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115191, '2022-09-07', 8079, 108665, 6586, NULL, '1.0000', '16.6100', '16.6100', '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 (115192, '2022-09-07', 1602, 108666, 6586, 59619, '2.0000', '7.3695', '7.3695', '11.5000', '11.5000', '10.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115193, '2022-09-07', 1982, 108667, 6586, 58049, '1.0000', '-4.0378', '-4.0378', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115194, '2022-09-07', 8746, 108668, 6586, 61266, '1.0000', '2.8100', '2.8100', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115195, '2022-09-07', 9565, 108669, 6586, NULL, '2.0000', '4.5000', '4.5000', '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 (115196, '2022-09-07', 1767, 108670, 6586, 61569, '1.0000', '5.7685', '5.7685', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115197, '2022-09-07', 1501, 108671, 6586, NULL, '1.0000', '0.0905', '0.0905', '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 (115198, '2022-09-07', 9902, 108672, 6586, 62143, '1.0000', '9.0074', '9.0074', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115199, '2022-09-07', 7558, 108673, 6587, NULL, '2.0000', '-19.8908', '-19.8908', '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 (115200, '2022-09-07', 7473, 108674, 6587, 61833, '5.0000', '0.5360', '0.5360', '0.7000', '0.7000', '55.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115201, '2022-09-07', 7950, 108675, 6587, NULL, '1.0000', '2.4000', '2.4000', '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 (115202, '2022-09-07', 7832, 108676, 6587, 61972, '1.0000', '12.9801', '12.9801', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115203, '2022-09-07', 1746, 108677, 6588, 62186, '3.0000', '5.0901', '5.0901', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115204, '2022-09-07', 2167, 108678, 6588, NULL, '1.0000', '-1.6257', '-1.6257', '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 (115205, '2022-09-07', 2275, 108679, 6588, 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 (115206, '2022-09-07', 1665, 108680, 6588, 61557, '1.0000', '1.4459', '1.4459', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115207, '2022-09-07', 1666, 108681, 6588, 57713, '1.0000', '2.7066', '2.7066', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115208, '2022-09-07', 9895, 108682, 6589, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '21.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115209, '2022-09-07', 2135, 108683, 6589, NULL, '1.0000', '2.2504', '2.2504', '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 (115210, '2022-09-07', 2169, 108684, 6589, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115211, '2022-09-07', 7411, 108685, 6589, NULL, '1.0000', '1.5882', '1.5882', '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 (115212, '2022-09-07', 8068, 108686, 6589, 58631, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115213, '2022-09-07', 7411, 108687, 6589, NULL, '1.0000', '1.5882', '1.5882', '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 (115214, '2022-09-07', 2237, 108688, 6589, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115215, '2022-09-07', 1841, 108689, 6589, 61665, '1.0000', '0.2691', '0.2691', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115216, '2022-09-07', 1620, 108690, 6589, 62200, '4.0000', '2.3342', '2.3342', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115217, '2022-09-07', 1371, 108691, 6589, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115218, '2022-09-07', 1840, 108692, 6589, 59955, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '80.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115219, '2022-09-07', 7328, 108693, 6589, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115220, '2022-09-07', 1612, 108694, 6589, NULL, '1.0000', '11.6000', '11.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115221, '2022-09-07', 2237, 108695, 6589, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115222, '2022-09-07', 2315, 108696, 6589, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115223, '2022-09-07', 1493, 108697, 6589, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115224, '2022-09-07', 7411, 108698, 6589, NULL, '1.0000', '1.5882', '1.5882', '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 (115225, '2022-09-07', 2656, 108699, 6589, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115226, '2022-09-07', 2302, 108700, 6589, 61671, '1.0000', '5.1974', '5.1974', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115227, '2022-09-07', 1431, 108701, 6589, 62264, '2.0000', '11.4353', '11.4353', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115228, '2022-09-07', 2379, 108702, 6589, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115229, '2022-09-07', 1595, 108703, 6589, 47973, '1.0000', '20.0158', '20.0158', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 354);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115230, '2022-09-07', 1383, 108704, 6589, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115231, '2022-09-07', 2169, 108705, 6589, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115232, '2022-09-07', 7886, 108706, 6589, NULL, '1.0000', '4.5000', '4.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 (115233, '2022-09-07', 2858, 108707, 6589, NULL, '2.0000', '1.0000', '1.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 (115234, '2022-09-07', 1754, 108708, 6589, 62239, '1.0000', '27.5713', '27.5713', '23.5000', '23.5000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115235, '2022-09-07', 2169, 108709, 6589, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115236, '2022-09-07', 1666, 108710, 6589, 62216, '1.0000', '24.1019', '24.1019', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115237, '2022-09-07', 8881, 108711, 6589, NULL, '6.0000', '2.5000', '2.5000', '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 (115238, '2022-09-07', 1695, 108712, 6589, 62228, '1.0000', '25.9903', '25.9903', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115239, '2022-09-07', 2416, 108713, 6589, 60924, '1.0000', '1.3345', '1.3345', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115240, '2022-09-07', 2823, 108714, 6589, 61639, '2.0000', '7.5838', '7.5838', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115241, '2022-09-08', 2821, 108715, 6590, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115242, '2022-09-08', 2414, 108716, 6590, NULL, '2.0000', '3.8350', '3.8350', '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 (115243, '2022-09-08', 1888, 108717, 6590, 60014, '1.0000', '17.6053', '17.6053', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115244, '2022-09-08', 1668, 108718, 6590, 58585, '1.0000', '31.4191', '31.4191', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115245, '2022-09-08', 9891, 108719, 6590, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115246, '2022-09-08', 9813, 108720, 6590, NULL, '1.0000', '1.4900', '1.4900', '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 (115247, '2022-09-08', 2352, 108721, 6590, 61648, '5.0000', '118.5472', '118.5472', '4.0000', '4.0000', '51.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115248, '2022-09-08', 8203, 108722, 6590, NULL, '5.0000', '0.5000', '0.5000', '0.7000', '0.7000', '-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 (115249, '2022-09-08', 2738, 108723, 6590, 62194, '2.0000', '9.1183', '9.1183', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115250, '2022-09-08', 7584, 108724, 6590, 60088, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115251, '2022-09-08', 2298, 108725, 6590, 55521, '1.0000', '7.1975', '7.1975', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115252, '2022-09-08', 2416, 108726, 6590, 60924, '1.0000', '1.3345', '1.3345', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115253, '2022-09-08', 1863, 108727, 6590, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115254, '2022-09-08', 2169, 108728, 6590, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115255, '2022-09-08', 2380, 108729, 6590, 59637, '1.0000', '45.1378', '45.1378', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115256, '2022-09-08', 2643, 108730, 6590, 60925, '1.0000', '1.0109', '1.0109', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115257, '2022-09-08', 2031, 108731, 6591, 49497, '1.0000', '5.0000', '5.0000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115258, '2022-09-08', 1695, 108732, 6591, 62228, '1.0000', '25.9903', '25.9903', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115259, '2022-09-08', 2302, 108733, 6591, 61671, '1.0000', '5.1974', '5.1974', '7.0000', '7.0000', '20.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115260, '2022-09-08', 2068, 108734, 6591, 59987, '1.0000', '12.8818', '12.8818', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115261, '2022-09-08', 2107, 108735, 6592, 6019, '2.0000', '0.2500', '0.2500', '0.5000', '0.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 (115262, '2022-09-08', 1736, 108736, 6593, 60060, '6.0000', '35.8601', '35.8601', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115263, '2022-09-08', 2821, 108737, 6594, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115264, '2022-09-08', 8744, 108738, 6595, 60510, '1.0000', '3.8415', '3.8415', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115265, '2022-09-08', 9870, 108739, 6596, 61499, '1.0000', '7.0202', '7.0202', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115266, '2022-09-08', 1499, 108740, 6596, 62139, '1.0000', '0.5090', '0.5090', '0.7000', '0.7000', '44.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115267, '2022-09-08', 2289, 108741, 6596, NULL, '2.0000', '0.3611', '0.3611', '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 (115268, '2022-09-08', 1840, 108742, 6596, NULL, '1.0000', '0.2400', '0.2400', '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 (115269, '2022-09-08', 1841, 108743, 6596, NULL, '1.0000', '0.7630', '0.7630', '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 (115270, '2022-09-08', 10021, 108744, 6596, 62154, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115271, '2022-09-08', 2943, 108745, 6596, 61548, '1.0000', '3.8850', '3.8850', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115272, '2022-09-08', 2109, 108746, 6596, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115273, '2022-09-08', 9747, 108747, 6596, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '83.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115274, '2022-09-08', 2020, 108748, 6596, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (115275, '2022-09-08', 2167, 108749, 6596, NULL, '1.0000', '-1.6257', '-1.6257', '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 (115276, '2022-09-08', 2416, 108750, 6596, 61491, '2.0000', '1.3608', '1.3608', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115277, '2022-09-08', 2416, 108750, 6596, 57493, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115278, '2022-09-08', 1771, 108751, 6596, 62098, '1.0000', '7.0319', '7.0319', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115279, '2022-09-08', 2657, 108752, 6596, 62162, '1.0000', '0.4111', '0.4111', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115280, '2022-09-08', 2237, 108753, 6596, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115281, '2022-09-08', 2656, 108754, 6596, 61495, '2.0000', '2.1557', '2.1557', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115282, '2022-09-08', 9783, 108755, 6596, 56401, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115283, '2022-09-08', 1488, 108756, 6596, 62081, '1.0000', '4.2964', '4.2964', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115284, '2022-09-08', 9700, 108757, 6596, 44154, '1.0000', '8.5000', '8.5000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115285, '2022-09-08', 1340, 108758, 6596, NULL, '1.0000', '5.5200', '5.5200', '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 (115286, '2022-09-08', 2315, 108759, 6596, NULL, '1.0000', '0.7700', '0.7700', '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 (115287, '2022-09-08', 9700, 108760, 6596, 44154, '1.0000', '8.5000', '8.5000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115288, '2022-09-08', 9627, 108761, 6596, 40339, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115289, '2022-09-08', 1872, 108762, 6596, 60287, '1.0000', '11.2454', '11.2454', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115290, '2022-09-08', 1837, 108763, 6596, 62104, '2.0000', '1.1717', '1.1717', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115291, '2022-09-08', 2416, 108764, 6596, 61491, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115292, '2022-09-08', 2656, 108765, 6596, 61495, '4.0000', '2.1557', '2.1557', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115293, '2022-09-08', 9788, 108766, 6596, 54919, '1.0000', '1.5347', '1.5347', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115294, '2022-09-08', 2656, 108767, 6596, 61495, '4.0000', '2.1557', '2.1557', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115295, '2022-09-08', 2020, 108768, 6596, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (115296, '2022-09-08', 1326, 108769, 6596, NULL, '1.0000', '4.3669', '4.3669', '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 (115297, '2022-09-08', 1904, 108770, 6596, 60310, '2.0000', '2.3094', '2.3094', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115298, '2022-09-08', 2821, 108771, 6596, NULL, '1.0000', '3.4037', '3.4037', '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 (115299, '2022-09-08', 2633, 108772, 6596, 52195, '1.0000', '3.5000', '3.5000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115300, '2022-09-08', 1383, 108773, 6596, 62134, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115301, '2022-09-08', 7541, 108774, 6596, NULL, '2.0000', '3.3000', '3.3000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115302, '2022-09-08', 1406, 108775, 6596, 48937, '1.0000', '21.3954', '21.3954', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115303, '2022-09-08', 1407, 108776, 6596, 48930, '1.0000', '19.0167', '19.0167', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115304, '2022-09-08', 2668, 108777, 6596, 60283, '1.0000', '10.6725', '10.6725', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115305, '2022-09-08', 2250, 108778, 6596, 61562, '1.0000', '9.1988', '9.1988', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115306, '2022-09-08', 1326, 108779, 6596, NULL, '1.0000', '4.3669', '4.3669', '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 (115307, '2022-09-08', 9783, 108780, 6596, 56401, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115308, '2022-09-08', 1602, 108781, 6596, 59619, '1.0000', '7.3695', '7.3695', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115309, '2022-09-08', 2169, 108782, 6596, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115310, '2022-09-08', 2315, 108783, 6596, NULL, '2.0000', '0.7700', '0.7700', '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 (115311, '2022-09-08', 7411, 108784, 6596, NULL, '3.0000', '1.2819', '1.2819', '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 (115312, '2022-09-08', 8878, 108785, 6596, NULL, '2.0000', '6.0509', '6.0509', '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 (115313, '2022-09-08', 9219, 108786, 6596, 62077, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115314, '2022-09-08', 2341, 108787, 6596, NULL, '1.0000', '5.4350', '5.4350', '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 (115315, '2022-09-08', 1367, 108788, 6596, 18939, '1.0000', '49.2100', '49.2100', '110.0000', '110.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 (115316, '2022-09-08', 8979, 108789, 6597, 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 (115317, '2022-09-08', 8063, 108790, 6597, NULL, '1.0000', '1.6000', '1.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 (115318, '2022-09-08', 9204, 108791, 6597, NULL, '1.0000', '8.1600', '8.1600', '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 (115319, '2022-09-08', 7810, 108792, 6597, NULL, '1.0000', '14.6000', '14.6000', '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 (115320, '2022-09-08', 7666, 108793, 6597, NULL, '1.0000', '3.6000', '3.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 (115321, '2022-09-08', 7741, 108794, 6597, NULL, '2.0000', '1.2000', '1.2000', '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 (115322, '2022-09-08', 7781, 108795, 6597, NULL, '3.0000', '4.2500', '4.2500', '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 (115323, '2022-09-08', 7765, 108796, 6597, NULL, '3.0000', '16.0000', '16.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 (115324, '2022-09-08', 7688, 108797, 6597, NULL, '1.0000', '14.7000', '14.7000', '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 (115325, '2022-09-08', 7518, 108798, 6597, NULL, '1.0000', '7.8200', '7.8200', '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 (115326, '2022-09-08', 9007, 108799, 6597, NULL, '1.0000', '22.2000', '22.2000', '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 (115327, '2022-09-08', 8187, 108800, 6597, NULL, '2.0000', '14.3900', '14.3900', '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 (115328, '2022-09-08', 7991, 108801, 6597, NULL, '1.0000', '26.5700', '26.5700', '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 (115329, '2022-09-08', 8944, 108802, 6597, NULL, '1.0000', '45.2400', '45.2400', '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 (115330, '2022-09-08', 2656, 108803, 6597, NULL, '1.0000', '1.5000', '1.5000', '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 (115331, '2022-09-08', 7708, 108804, 6597, NULL, '1.0000', '7.8000', '7.8000', '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 (115332, '2022-09-08', 7411, 108805, 6597, NULL, '1.0000', '1.3500', '1.3500', '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 (115333, '2022-09-08', 8979, 108806, 6597, 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 (115334, '2022-09-08', 7674, 108807, 6597, NULL, '1.0000', '1.3000', '1.3000', '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 (115335, '2022-09-08', 7730, 108808, 6597, NULL, '4.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (115336, '2022-09-08', 1310, 108809, 6597, NULL, '6.0000', '0.3700', '0.3700', '0.6000', '0.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 (115337, '2022-09-08', 9167, 108810, 6597, NULL, '1.0000', '13.3000', '13.3000', '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 (115338, '2022-09-08', 8154, 108811, 6597, NULL, '4.0000', '12.3000', '12.3000', '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 (115339, '2022-09-08', 7674, 108812, 6597, NULL, '1.0000', '1.3000', '1.3000', '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 (115340, '2022-09-08', 7411, 108813, 6597, NULL, '2.0000', '1.3500', '1.3500', '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 (115341, '2022-09-08', 7317, 108814, 6597, NULL, '1.0000', '19.5500', '19.5500', '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 (115342, '2022-09-08', 7483, 108815, 6597, 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 (115343, '2022-09-08', 7518, 108816, 6597, NULL, '1.0000', '7.8200', '7.8200', '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 (115344, '2022-09-08', 7672, 108817, 6597, NULL, '1.0000', '1.0200', '1.0200', '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 (115345, '2022-09-08', 8063, 108818, 6597, NULL, '1.0000', '1.6000', '1.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 (115346, '2022-09-08', 8753, 108819, 6597, 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 (115347, '2022-09-08', 7778, 108820, 6597, NULL, '1.0000', '9.0000', '9.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 (115348, '2022-09-08', 8306, 108821, 6597, NULL, '1.0000', '1.6000', '1.6000', '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 (115349, '2022-09-08', 7514, 108822, 6598, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115350, '2022-09-08', 7917, 108823, 6598, 61747, '4.0000', '2.5067', '2.5067', '0.7000', '0.7000', '68.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115351, '2022-09-08', 7518, 108824, 6598, 61873, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115352, '2022-09-08', 7518, 108824, 6598, 61784, '5.0000', '9.3500', '9.3500', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115353, '2022-09-08', 7457, 108825, 6598, 61924, '2.0000', '5.0178', '5.0178', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115354, '2022-09-08', 9695, 108826, 6598, 61792, '1.0000', '5.9153', '5.9153', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115355, '2022-09-08', 7588, 108827, 6598, 62306, '2.0000', '8.3895', '8.3895', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115356, '2022-09-08', 8780, 108828, 6598, 59410, '1.0000', '50.1202', '50.1202', '67.5000', '67.5000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115357, '2022-09-08', 2486, 108829, 6598, NULL, '2.0000', '4.0000', '4.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 (115358, '2022-09-08', 7917, 108830, 6598, 61747, '3.0000', '2.5067', '2.5067', '0.7000', '0.7000', '69.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115359, '2022-09-08', 7852, 108831, 6598, 62307, '1.0000', '24.7508', '24.7508', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115360, '2022-09-08', 9526, 108832, 6598, NULL, '2.0000', '7.0000', '7.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 (115361, '2022-09-08', 7460, 108833, 6598, NULL, '2.0000', '294.7000', '294.7000', '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 (115362, '2022-09-08', 7640, 108834, 6598, 62314, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115363, '2022-09-08', 7894, 108835, 6598, 60819, '1.0000', '3.6043', '3.6043', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115364, '2022-09-08', 9271, 108836, 6598, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115365, '2022-09-08', 9463, 108837, 6598, 61916, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115366, '2022-09-08', 7491, 108838, 6598, NULL, '1.0000', '7.4000', '7.4000', '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 (115367, '2022-09-08', 9734, 108839, 6598, 61746, '1.0000', '0.3316', '0.3316', '0.7000', '0.7000', '191.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115368, '2022-09-08', 7674, 108840, 6598, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115369, '2022-09-08', 7743, 108841, 6598, NULL, '1.0000', '2076336.1912', '2076336.1912', '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 (115370, '2022-09-08', 9272, 108842, 6598, NULL, '1.0000', '3.1206', '3.1206', '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 (115371, '2022-09-08', 7714, 108843, 6598, NULL, '1.0000', '0.4200', '0.4200', '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 (115372, '2022-09-08', 2251, 108844, 6598, 60469, '1.0000', '13.0059', '13.0059', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115373, '2022-09-08', 7666, 108845, 6598, 62332, '1.0000', '6.1134', '6.1134', '6.5000', '6.5000', '19.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115374, '2022-09-08', 7672, 108846, 6598, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115375, '2022-09-08', 7730, 108847, 6598, 60195, '6.0000', '0.0723', '0.0723', '0.2000', '0.2000', '93.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115376, '2022-09-08', 7674, 108848, 6598, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115377, '2022-09-08', 8406, 108849, 6598, 53779, '1.0000', '7.0697', '7.0697', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 448);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115378, '2022-09-08', 7885, 108850, 6598, 60418, '1.0000', '81.2000', '81.2000', '107.5000', '107.5000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115379, '2022-09-08', 8879, 108851, 6598, 62304, '1.0000', '20.9867', '20.9867', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115380, '2022-09-08', 7482, 108852, 6598, 61836, '1.0000', '4.7347', '4.7347', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115381, '2022-09-08', 2315, 108853, 6598, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115382, '2022-09-08', 9272, 108854, 6598, NULL, '1.0000', '3.1206', '3.1206', '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 (115383, '2022-09-08', 8456, 108855, 6598, 61937, '1.0000', '8.6291', '8.6291', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115384, '2022-09-08', 9204, 108856, 6598, 60135, '1.0000', '6.0556', '6.0556', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115385, '2022-09-08', 2506, 108857, 6598, 61907, '1.0000', '4.6900', '4.6900', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115386, '2022-09-08', 7641, 108858, 6598, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '39.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115387, '2022-09-08', 7593, 108859, 6598, 60160, '1.0000', '3.0249', '3.0249', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115388, '2022-09-08', 7354, 108860, 6598, 56647, '1.0000', '1.5641', '1.5641', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115389, '2022-09-08', 8303, 108861, 6598, 54293, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115390, '2022-09-08', 7762, 108862, 6598, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115391, '2022-09-08', 7819, 108863, 6598, 62301, '1.0000', '12.8837', '12.8837', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115392, '2022-09-08', 7712, 108864, 6598, NULL, '1.0000', '-1389.2060', '-1389.2060', '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 (115393, '2022-09-08', 7983, 108865, 6598, NULL, '1.0000', '97.4250', '97.4250', '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 (115394, '2022-09-08', 9738, 108866, 6599, 62435, '1.0000', '8.7000', '8.7000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115395, '2022-09-08', 2010, 108867, 6599, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115396, '2022-09-08', 2025, 108868, 6599, 59671, '1.0000', '4.9242', '4.9242', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115397, '2022-09-08', 1843, 108869, 6599, 39760, '20.0000', '6.1258', '6.1258', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115398, '2022-09-08', 1888, 108870, 6599, 62452, '1.0000', '19.1482', '19.1482', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115399, '2022-09-08', 2948, 108871, 6599, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '99.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115400, '2022-09-08', 2315, 108872, 6599, NULL, '1.0000', '0.7700', '0.7700', '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 (115401, '2022-09-08', 1695, 108873, 6599, 62430, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115402, '2022-09-08', 2444, 108874, 6599, NULL, '1.0000', '10.0950', '10.0950', '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 (115403, '2022-09-08', 2754, 108875, 6599, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (115404, '2022-09-08', 8878, 108876, 6599, NULL, '2.0000', '14.9442', '14.9442', '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 (115405, '2022-09-08', 9831, 108877, 6599, 61498, '2.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115406, '2022-09-08', 2167, 108878, 6599, NULL, '1.0000', '-1.6257', '-1.6257', '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 (115407, '2022-09-08', 2262, 108879, 6599, 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 (115408, '2022-09-08', 2315, 108880, 6599, NULL, '1.0000', '0.7700', '0.7700', '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 (115409, '2022-09-08', 2289, 108881, 6599, NULL, '1.0000', '0.3611', '0.3611', '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 (115410, '2022-09-08', 1841, 108882, 6599, NULL, '1.0000', '0.7630', '0.7630', '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 (115411, '2022-09-08', 1840, 108883, 6599, NULL, '1.0000', '0.2400', '0.2400', '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 (115412, '2022-09-08', 2283, 108884, 6599, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115413, '2022-09-08', 2315, 108885, 6599, NULL, '1.0000', '0.7700', '0.7700', '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 (115414, '2022-09-08', 3044, 108886, 6599, NULL, '1.0000', '0.4000', '0.4000', '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 (115415, '2022-09-08', 2108, 108887, 6599, 60334, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115416, '2022-09-08', 2315, 108888, 6599, NULL, '2.0000', '0.7700', '0.7700', '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 (115417, '2022-09-08', 2277, 108889, 6599, 62419, '2.0000', '0.5402', '0.5402', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115418, '2022-09-08', 1529, 108890, 6599, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115419, '2022-09-08', 2226, 108891, 6599, 59682, '1.0000', '6.6234', '6.6234', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115420, '2022-09-08', 1432, 108892, 6599, 62389, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115421, '2022-09-08', 9634, 108893, 6599, NULL, '2.0000', '4.4667', '4.4667', '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 (115422, '2022-09-08', 2283, 108894, 6599, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115423, '2022-09-08', 2379, 108895, 6599, NULL, '1.0000', '-17.5498', '-17.5498', '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 (115424, '2022-09-08', 2916, 108896, 6599, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115425, '2022-09-08', 2948, 108897, 6599, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '99.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115426, '2022-09-08', 1578, 108898, 6599, 62408, '1.0000', '3.0263', '3.0263', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115427, '2022-09-08', 2088, 108899, 6599, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115428, '2022-09-08', 2315, 108900, 6599, NULL, '1.0000', '0.7700', '0.7700', '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 (115429, '2022-09-08', 1805, 108901, 6599, NULL, '1.0000', '80.7776', '80.7776', '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 (115430, '2022-09-08', 1888, 108902, 6599, 62452, '1.0000', '19.1482', '19.1482', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115431, '2022-09-08', 2740, 108903, 6599, 60236, '1.0000', '11.2413', '11.2413', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115432, '2022-09-08', 9831, 108904, 6599, 61498, '2.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115433, '2022-09-08', 1665, 108905, 6599, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115434, '2022-09-08', 1665, 108906, 6599, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115435, '2022-09-08', 9482, 108907, 6599, 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 (115436, '2022-09-08', 1955, 108908, 6599, 51501, '5.0000', '2.6400', '2.6400', '2.2000', '2.2000', '14.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115437, '2022-09-08', 2260, 108909, 6599, 62140, '1.0000', '5.0048', '5.0048', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115438, '2022-09-08', 1863, 108910, 6599, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115439, '2022-09-08', 1840, 108911, 6599, NULL, '4.0000', '0.2400', '0.2400', '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 (115440, '2022-09-08', 1841, 108912, 6599, NULL, '4.0000', '0.7630', '0.7630', '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 (115441, '2022-09-08', 2289, 108913, 6599, NULL, '4.0000', '0.3611', '0.3611', '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 (115442, '2022-09-08', 1841, 108914, 6599, NULL, '4.0000', '0.7630', '0.7630', '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 (115443, '2022-09-08', 8208, 108915, 6599, NULL, '4.0000', '47.9541', '47.9541', '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 (115444, '2022-09-08', 2916, 108916, 6599, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115445, '2022-09-08', 2916, 108917, 6599, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115446, '2022-09-08', 1529, 108918, 6599, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '11.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115447, '2022-09-08', 1812, 108919, 6599, 62185, '1.0000', '9.3485', '9.3485', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115448, '2022-09-08', 1425, 108920, 6599, NULL, '1.0000', '1666.9347', '1666.9347', '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 (115449, '2022-09-08', 1871, 108921, 6600, 59999, '5.0000', '4.6908', '4.6908', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115450, '2022-09-08', 1871, 108922, 6600, 59999, '5.0000', '4.6908', '4.6908', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115451, '2022-09-08', 2656, 108923, 6600, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115452, '2022-09-08', 1646, 108924, 6600, 59961, '1.0000', '5.3633', '5.3633', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115453, '2022-09-08', 2315, 108925, 6600, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115454, '2022-09-08', 7886, 108926, 6600, NULL, '1.0000', '4.5000', '4.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 (115455, '2022-09-08', 1699, 108927, 6600, 49088, '1.0000', '3.2000', '3.2000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115456, '2022-09-08', 2236, 108928, 6600, 62209, '1.0000', '6.1815', '6.1815', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115457, '2022-09-08', 1425, 108929, 6600, 62266, '1.0000', '6.9402', '6.9402', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115458, '2022-09-08', 8360, 108930, 6600, NULL, '1.0000', '3.2300', '3.2300', '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 (115459, '2022-09-08', 9740, 108931, 6600, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115460, '2022-09-08', 2682, 108932, 6600, 62218, '1.0000', '16.5000', '16.5000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115461, '2022-09-08', 1863, 108933, 6600, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115462, '2022-09-08', 1975, 108934, 6600, NULL, '1.0000', '9.4630', '9.4630', '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 (115463, '2022-09-08', 1837, 108935, 6600, 62213, '3.0000', '0.6220', '0.6220', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115464, '2022-09-08', 2073, 108936, 6600, 62229, '5.0000', '2.3675', '2.3675', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115465, '2022-09-08', 1700, 108937, 6600, 44709, '1.0000', '21.6025', '21.6025', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115466, '2022-09-08', 1580, 108938, 6600, 61669, '1.0000', '1.3143', '1.3143', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115467, '2022-09-08', 1779, 108939, 6600, 4938, '1.0000', '0.3100', '0.3100', '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 (115468, '2022-09-08', 9996, 108940, 6600, 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 (115469, '2022-09-08', 3059, 108941, 6600, NULL, '1.0000', '0.4500', '0.4500', '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 (115470, '2022-09-08', 7802, 108942, 6600, 52269, '1.0000', '1.3468', '1.3468', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115471, '2022-09-08', 8490, 108943, 6600, 61683, '1.0000', '30.3000', '30.3000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115472, '2022-09-08', 2154, 108944, 6600, 61662, '2.0000', '12.6096', '12.6096', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115473, '2022-09-08', 8177, 108945, 6600, 56828, '1.0000', '14.0145', '14.0145', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115474, '2022-09-08', 1743, 108946, 6600, 6814, '1.0000', '3.9800', '3.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 (115475, '2022-09-08', 1501, 108947, 6600, 58770, '1.0000', '95.0477', '95.0477', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115476, '2022-09-08', 1432, 108948, 6600, 61596, '1.0000', '11.7590', '11.7590', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115477, '2022-09-08', 1339, 108949, 6600, 61599, '1.0000', '1.9305', '1.9305', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115478, '2022-09-08', 2135, 108950, 6600, NULL, '1.0000', '2.2504', '2.2504', '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 (115479, '2022-09-08', 2302, 108951, 6600, 61671, '1.0000', '5.1974', '5.1974', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115480, '2022-09-08', 2259, 108952, 6600, 62199, '1.0000', '22.6776', '22.6776', '34.0000', '34.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115481, '2022-09-08', 10024, 108953, 6600, 62272, '2.0000', '24.0000', '24.0000', '28.0000', '28.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115482, '2022-09-08', 7514, 108954, 6601, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115483, '2022-09-08', 8529, 108955, 6601, NULL, '30.0000', '0.2600', '0.2600', '0.4000', '0.4000', '-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 (115484, '2022-09-08', 7980, 108956, 6601, NULL, '10.0000', '21379.0542', '21379.0542', '0.9000', '0.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 (115485, '2022-09-08', 7762, 108957, 6601, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115486, '2022-09-08', 8063, 108958, 6601, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '75.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115487, '2022-09-08', 8279, 108959, 6601, 57536, '2.0000', '4.7245', '4.7245', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115488, '2022-09-08', 8417, 108960, 6601, 61952, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115489, '2022-09-08', 7917, 108961, 6601, 61747, '2.0000', '2.5067', '2.5067', '0.7000', '0.7000', '63.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115490, '2022-09-08', 8053, 108962, 6601, 61715, '10.0000', '1.4542', '1.4542', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115491, '2022-09-08', 1837, 108963, 6601, NULL, '1.0000', '0.5600', '0.5600', '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 (115492, '2022-09-08', 8101, 108964, 6601, 61865, '2.0000', '2.5225', '2.5225', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115493, '2022-09-08', 8924, 108965, 6601, 62322, '2.0000', '6.7605', '6.7605', '10.5000', '10.5000', '23.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115494, '2022-09-08', 2110, 108966, 6602, 49614, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115495, '2022-09-08', 2821, 108967, 6602, NULL, '1.0000', '3.3676', '3.3676', '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 (115496, '2022-09-08', 1510, 108968, 6602, NULL, '1.0000', '-13.8480', '-13.8480', '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 (115497, '2022-09-08', 2682, 108969, 6602, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '14.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115498, '2022-09-08', 9726, 108970, 6602, 62100, '1.0000', '5.2010', '5.2010', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115499, '2022-09-08', 8017, 108971, 6602, 62109, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115500, '2022-09-08', 1755, 108972, 6602, 62165, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115501, '2022-09-08', 2916, 108973, 6602, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115502, '2022-09-08', 2821, 108974, 6602, NULL, '1.0000', '3.3676', '3.3676', '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 (115503, '2022-09-08', 2823, 108975, 6602, NULL, '1.0000', '-5.2900', '-5.2900', '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 (115504, '2022-09-08', 2284, 108976, 6602, 55589, '2.0000', '1.3400', '1.3400', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115505, '2022-09-08', 9747, 108977, 6602, 62180, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115506, '2022-09-08', 7411, 108978, 6602, NULL, '2.0000', '1.2819', '1.2819', '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 (115507, '2022-09-08', 2823, 108979, 6602, NULL, '1.0000', '-5.2900', '-5.2900', '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 (115508, '2022-09-08', 1578, 108980, 6602, 62408, '1.0000', '3.0263', '3.0263', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115509, '2022-09-09', 1772, 108981, 6603, 62187, '1.0000', '5.9758', '5.9758', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115510, '2022-09-09', 2169, 108982, 6603, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115511, '2022-09-09', 9734, 108983, 6603, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '275.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115512, '2022-09-09', 9463, 108984, 6603, NULL, '1.0000', '287.4328', '287.4328', '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 (115513, '2022-09-09', 1338, 108985, 6603, 61580, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115514, '2022-09-09', 1501, 108986, 6603, NULL, '1.0000', '-0.6640', '-0.6640', '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 (115515, '2022-09-09', 2493, 108987, 6603, 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 (115516, '2022-09-09', 1712, 108988, 6603, 56463, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115517, '2022-09-09', 2416, 108989, 6603, 57493, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115518, '2022-09-09', 2167, 108990, 6603, NULL, '1.0000', '-1.6257', '-1.6257', '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 (115519, '2022-09-09', 9512, 108991, 6603, NULL, '2.0000', '1.3100', '1.3100', '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 (115520, '2022-09-09', 2633, 108992, 6603, 62405, '1.0000', '4.4231', '4.4231', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115521, '2022-09-09', 2362, 108993, 6603, 56465, '1.0000', '84.7015', '84.7015', '179.0000', '179.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115522, '2022-09-09', 1871, 108994, 6603, NULL, '5.0000', '-79.1764', '-79.1764', '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 (115523, '2022-09-09', 9748, 108995, 6603, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115524, '2022-09-09', 9824, 108996, 6603, NULL, '1.0000', '1.3000', '1.3000', '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 (115525, '2022-09-09', 9213, 108997, 6603, 61486, '1.0000', '-6941.3272', '-6941.3272', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115526, '2022-09-09', 2643, 108998, 6603, 57494, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115527, '2022-09-09', 2275, 108999, 6603, 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 (115528, '2022-09-09', 8165, 109000, 6603, 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 (115529, '2022-09-09', 9891, 109001, 6603, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115530, '2022-09-09', 2296, 109002, 6603, 55720, '1.0000', '16.0300', '16.0300', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115531, '2022-09-09', 2545, 109003, 6603, 62082, '1.0000', '9.0358', '9.0358', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115532, '2022-09-09', 2232, 109004, 6603, 62174, '1.0000', '34.6848', '34.6848', '64.0000', '64.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115533, '2022-09-09', 7684, 109005, 6603, NULL, '2.0000', '9.0000', '9.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 (115534, '2022-09-09', 1501, 109006, 6603, NULL, '1.0000', '-0.6640', '-0.6640', '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 (115535, '2022-09-09', 2237, 109007, 6603, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115536, '2022-09-09', 9791, 109008, 6603, 62105, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115537, '2022-09-09', 1863, 109009, 6603, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115538, '2022-09-09', 9891, 109010, 6604, 59869, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115539, '2022-09-09', 1844, 109011, 6605, NULL, '1.0000', '1.3981', '1.3981', '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 (115540, '2022-09-09', 2263, 109012, 6605, 62358, '1.0000', '14.9406', '14.9406', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115541, '2022-09-09', 2994, 109013, 6605, 62366, '1.0000', '9.0785', '9.0785', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115542, '2022-09-09', 1863, 109014, 6605, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115543, '2022-09-09', 2263, 109015, 6606, 62358, '1.0000', '14.9406', '14.9406', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115544, '2022-09-09', 2643, 109016, 6606, 57494, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115545, '2022-09-09', 9844, 109017, 6606, NULL, '2.0000', '2.5000', '2.5000', '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 (115546, '2022-09-09', 9734, 109018, 6606, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '274.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115547, '2022-09-09', 9503, 109019, 6607, NULL, '1.0000', '240.6525', '240.6525', '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 (115548, '2022-09-09', 1839, 109020, 6608, NULL, '1.0000', '-718359.7051', '-718359.7051', '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 (115549, '2022-09-09', 7608, 109021, 6608, NULL, '1.0000', '6.9800', '6.9800', '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 (115550, '2022-09-09', 3016, 109022, 6608, 57723, '1.0000', '13.9139', '13.9139', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115551, '2022-09-09', 2948, 109023, 6608, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '96.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115552, '2022-09-09', 2293, 109024, 6609, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115553, '2022-09-09', 2070, 109025, 6609, 57993, '1.0000', '2.1957', '2.1957', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115554, '2022-09-09', 9743, 109026, 6609, 55477, '1.0000', '12.3429', '12.3429', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115555, '2022-09-09', 2916, 109027, 6609, 61647, '1.0000', '15.0676', '15.0676', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115556, '2022-09-09', 2169, 109028, 6609, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115557, '2022-09-09', 1383, 109029, 6609, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115558, '2022-09-09', 7802, 109030, 6609, 52269, '2.0000', '1.3468', '1.3468', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115559, '2022-09-09', 1680, 109031, 6609, 45104, '1.0000', '4.9960', '4.9960', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115560, '2022-09-09', 1306, 109032, 6609, 62244, '5.0000', '2.0485', '2.0485', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115561, '2022-09-09', 1602, 109033, 6609, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115562, '2022-09-09', 2762, 109034, 6609, 59993, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115563, '2022-09-09', 9775, 109035, 6609, 61699, '1.0000', '10.4000', '10.4000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115564, '2022-09-09', 8079, 109036, 6609, 61668, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115565, '2022-09-09', 2916, 109037, 6609, 61647, '1.0000', '15.0676', '15.0676', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115566, '2022-09-09', 1811, 109038, 6609, 62219, '1.0000', '17.1520', '17.1520', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115567, '2022-09-09', 2169, 109039, 6609, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115568, '2022-09-09', 1330, 109040, 6609, 55768, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115569, '2022-09-09', 2583, 109041, 6609, 8286, '1.0000', '77.2500', '77.2500', '102.0000', '102.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115570, '2022-09-09', 2656, 109042, 6609, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115571, '2022-09-09', 1637, 109043, 6609, 56899, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115572, '2022-09-09', 1863, 109044, 6609, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115573, '2022-09-09', 9391, 109045, 6610, 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 (115574, '2022-09-09', 9572, 109046, 6610, NULL, '1.0000', '14.0000', '14.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 (115575, '2022-09-09', 7641, 109047, 6610, NULL, '1.0000', '1.9000', '1.9000', '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 (115576, '2022-09-09', 10004, 109048, 6610, NULL, '1.0000', '2.5100', '2.5100', '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 (115577, '2022-09-09', 7385, 109049, 6610, NULL, '1.0000', '2.0000', '2.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 (115578, '2022-09-09', 7333, 109050, 6610, NULL, '2.0000', '13.5000', '13.5000', '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 (115579, '2022-09-09', 7743, 109051, 6610, NULL, '1.0000', '1.3100', '1.3100', '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 (115580, '2022-09-09', 7644, 109052, 6610, NULL, '5.0000', '4.4800', '4.4800', '10.0000', '10.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 (115581, '2022-09-09', 2287, 109053, 6610, 2947, '-53.0000', '1.8000', '1.8000', '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 (115582, '2022-09-09', 2287, 109053, 6610, NULL, '57.0000', '1.8000', '1.8000', '4.5000', '4.5000', '-57.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115583, '2022-09-09', 9747, 109054, 6610, NULL, '2.0000', '0.6500', '0.6500', '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 (115584, '2022-09-09', 8878, 109055, 6610, NULL, '2.0000', '6.6700', '6.6700', '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 (115585, '2022-09-09', 7787, 109056, 6610, NULL, '1.0000', '10.9000', '10.9000', '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 (115586, '2022-09-09', 7531, 109057, 6610, NULL, '2.0000', '3.1900', '3.1900', '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 (115587, '2022-09-09', 7715, 109058, 6610, NULL, '1.0000', '1.8900', '1.8900', '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 (115588, '2022-09-09', 7400, 109059, 6610, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115589, '2022-09-09', 7666, 109060, 6610, NULL, '1.0000', '3.6000', '3.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 (115590, '2022-09-09', 2548, 109061, 6610, 6904, '-4.0000', '6.7200', '6.7200', '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 (115591, '2022-09-09', 2548, 109061, 6610, NULL, '5.0000', '6.7200', '6.7200', '12.0000', '12.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 (115592, '2022-09-09', 7730, 109062, 6610, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (115593, '2022-09-09', 8127, 109063, 6610, NULL, '1.0000', '24.5300', '24.5300', '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 (115594, '2022-09-09', 7857, 109064, 6610, NULL, '1.0000', '15.1300', '15.1300', '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 (115595, '2022-09-09', 7400, 109065, 6610, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115596, '2022-09-09', 9775, 109066, 6610, NULL, '1.0000', '7.9000', '7.9000', '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 (115597, '2022-09-09', 7707, 109067, 6610, NULL, '1.0000', '7.0000', '7.0000', '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 (115598, '2022-09-09', 1588, 109068, 6610, 7604, '-1.0000', '4.8000', '4.8000', '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 (115599, '2022-09-09', 1588, 109068, 6610, NULL, '2.0000', '4.8000', '4.8000', '11.5000', '11.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 (115600, '2022-09-09', 8186, 109069, 6610, NULL, '2.0000', '1.0800', '1.0800', '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 (115601, '2022-09-09', 2283, 109070, 6610, 2943, '-37.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 (115602, '2022-09-09', 2283, 109070, 6610, NULL, '38.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115603, '2022-09-09', 2315, 109071, 6610, 2735, '-660.0000', '0.3300', '0.3300', '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 (115604, '2022-09-09', 2315, 109071, 6610, NULL, '661.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-661.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115605, '2022-09-09', 7928, 109072, 6610, NULL, '1.0000', '1.2000', '1.2000', '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 (115606, '2022-09-09', 7709, 109073, 6610, 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 (115607, '2022-09-09', 2351, 109074, 6610, 3854, '-6.0000', '17.7000', '17.7000', '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 (115608, '2022-09-09', 2351, 109074, 6610, NULL, '7.0000', '17.7000', '17.7000', '24.5000', '24.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 (115609, '2022-09-09', 8177, 109075, 6611, NULL, '1.0000', '17.2448', '17.2448', '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 (115610, '2022-09-09', 1602, 109076, 6611, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115611, '2022-09-09', 1580, 109077, 6611, 62190, '3.0000', '1.4680', '1.4680', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115612, '2022-09-09', 8677, 109078, 6611, NULL, '2.0000', '1026.1382', '1026.1382', '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 (115613, '2022-09-09', 1665, 109079, 6611, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115614, '2022-09-09', 2315, 109080, 6611, NULL, '1.0000', '0.7700', '0.7700', '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 (115615, '2022-09-09', 9683, 109081, 6611, 61482, '1.0000', '1.0029', '1.0029', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115616, '2022-09-09', 9469, 109082, 6611, 61479, '1.0000', '5.5270', '5.5270', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115617, '2022-09-09', 1888, 109083, 6611, 62452, '1.0000', '19.1482', '19.1482', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115618, '2022-09-09', 1761, 109084, 6611, 62436, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115619, '2022-09-09', 1578, 109085, 6611, 62408, '1.0000', '3.0263', '3.0263', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115620, '2022-09-09', 1525, 109086, 6611, 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 (115621, '2022-09-09', 1807, 109087, 6611, NULL, '4.0000', '3.9687', '3.9687', '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 (115622, '2022-09-09', 8333, 109088, 6611, NULL, '1.0000', '3.6300', '3.6300', '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 (115623, '2022-09-09', 9819, 109089, 6611, 62425, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115624, '2022-09-09', 1557, 109090, 6611, 62155, '1.0000', '8.2500', '8.2500', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115625, '2022-09-09', 9821, 109091, 6611, 62142, '1.0000', '1.6500', '1.6500', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115626, '2022-09-09', 1493, 109092, 6611, 61567, '1.0000', '-38.6246', '-38.6246', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115627, '2022-09-09', 1871, 109093, 6611, NULL, '15.0000', '-79.1764', '-79.1764', '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 (115628, '2022-09-09', 7339, 109094, 6611, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (115629, '2022-09-09', 1668, 109095, 6611, 60288, '1.0000', '20.0477', '20.0477', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115630, '2022-09-09', 1499, 109096, 6611, 62139, '2.0000', '0.5090', '0.5090', '0.7000', '0.7000', '42.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115631, '2022-09-09', 2821, 109097, 6611, NULL, '1.0000', '3.3676', '3.3676', '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 (115632, '2022-09-09', 1904, 109098, 6611, 62413, '1.0000', '1.1631', '1.1631', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115633, '2022-09-09', 7382, 109099, 6611, 62379, '1.0000', '7.4501', '7.4501', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115634, '2022-09-09', 2699, 109100, 6611, NULL, '1.0000', '4.2435', '4.2435', '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 (115635, '2022-09-09', 2656, 109101, 6611, 61495, '1.0000', '2.1557', '2.1557', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115636, '2022-09-09', 1670, 109102, 6611, NULL, '1.0000', '-35.9534', '-35.9534', '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 (115637, '2022-09-09', 9759, 109103, 6611, 59624, '1.0000', '19.6800', '19.6800', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115638, '2022-09-09', 2016, 109104, 6611, 61258, '1.0000', '9.5833', '9.5833', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115639, '2022-09-09', 2715, 109105, 6611, NULL, '1.0000', '9.2600', '9.2600', '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 (115640, '2022-09-09', 2935, 109106, 6611, NULL, '1.0000', '-2.6500', '-2.6500', '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 (115641, '2022-09-09', 2277, 109107, 6611, 62419, '1.0000', '0.5402', '0.5402', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115642, '2022-09-09', 10006, 109108, 6611, 62362, '1.0000', '12.9800', '12.9800', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115643, '2022-09-09', 1310, 109109, 6611, 60260, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115644, '2022-09-09', 1481, 109110, 6611, 58126, '1.0000', '41.8000', '41.8000', '55.0000', '55.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115645, '2022-09-09', 1478, 109111, 6611, 59902, '1.0000', '27.0201', '27.0201', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115646, '2022-09-09', 1368, 109112, 6611, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115647, '2022-09-09', 2315, 109113, 6611, NULL, '1.0000', '0.7700', '0.7700', '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 (115648, '2022-09-09', 1812, 109114, 6611, 62185, '1.0000', '9.3485', '9.3485', '12.5000', '12.5000', '18.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115649, '2022-09-09', 2506, 109115, 6611, NULL, '1.0000', '-15.8639', '-15.8639', '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 (115650, '2022-09-09', 1908, 109116, 6611, NULL, '1.0000', '0.9032', '0.9032', '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 (115651, '2022-09-09', 2283, 109117, 6611, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115652, '2022-09-09', 2315, 109118, 6611, NULL, '1.0000', '0.7700', '0.7700', '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 (115653, '2022-09-09', 1367, 109119, 6611, 18939, '1.0000', '49.2100', '49.2100', '110.0000', '110.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 (115654, '2022-09-09', 2384, 109120, 6611, NULL, '2.0000', '-5.5392', '-5.5392', '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 (115655, '2022-09-09', 2854, 109121, 6611, NULL, '1.0000', '8.9500', '8.9500', '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 (115656, '2022-09-09', 7953, 109122, 6611, NULL, '1.0000', '-0.5345', '-0.5345', '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 (115657, '2022-09-09', 7741, 109123, 6611, NULL, '1.0000', '-174.4114', '-174.4114', '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 (115658, '2022-09-09', 9856, 109124, 6611, NULL, '1.0000', '-4.4000', '-4.4000', '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 (115659, '2022-09-09', 7324, 109125, 6611, NULL, '1.0000', '5.4813', '5.4813', '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 (115660, '2022-09-09', 1532, 109126, 6611, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115661, '2022-09-09', 2823, 109127, 6611, NULL, '1.0000', '-5.2900', '-5.2900', '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 (115662, '2022-09-09', 1863, 109128, 6611, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '106.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115663, '2022-09-09', 7608, 109129, 6612, 60460, '1.0000', '9.4713', '9.4713', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115664, '2022-09-09', 8408, 109130, 6612, 50693, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 416);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115665, '2022-09-09', 7478, 109131, 6612, 59338, '6.0000', '22.3458', '22.3458', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115666, '2022-09-09', 7324, 109132, 6612, 62344, '6.0000', '6.3200', '6.3200', '8.5000', '8.5000', '24.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115667, '2022-09-09', 9317, 109133, 6612, NULL, '1.0000', '12.0000', '12.0000', '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 (115668, '2022-09-09', 7411, 109134, 6612, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115669, '2022-09-09', 9736, 109135, 6612, 61906, '1.0000', '4.7288', '4.7288', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115670, '2022-09-09', 2757, 109136, 6612, NULL, '1.0000', '6.8000', '6.8000', '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 (115671, '2022-09-09', 7704, 109137, 6612, NULL, '2.0000', '-1.5625', '-1.5625', '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 (115672, '2022-09-09', 1501, 109138, 6612, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115673, '2022-09-09', 8965, 109139, 6612, NULL, '1.0000', '-263.2470', '-263.2470', '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 (115674, '2022-09-09', 8101, 109140, 6612, 61865, '3.0000', '2.5225', '2.5225', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115675, '2022-09-09', 7565, 109141, 6612, NULL, '1.0000', '0.2000', '0.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 (115676, '2022-09-09', 7354, 109142, 6612, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115677, '2022-09-09', 9272, 109143, 6612, NULL, '1.0000', '3.1206', '3.1206', '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 (115678, '2022-09-09', 7859, 109144, 6612, 61801, '1.0000', '14.0998', '14.0998', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115679, '2022-09-09', 8666, 109145, 6612, 52530, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 440);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115680, '2022-09-09', 9092, 109146, 6612, 60813, '2.0000', '0.3167', '0.3167', '0.5000', '0.5000', '88.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115681, '2022-09-09', 7815, 109147, 6612, 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 (115682, '2022-09-09', 7814, 109148, 6612, 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 (115683, '2022-09-09', 7821, 109149, 6612, 61971, '1.0000', '12.6561', '12.6561', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115684, '2022-09-09', 10004, 109150, 6612, 61894, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '44.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115685, '2022-09-09', 9271, 109151, 6612, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115686, '2022-09-09', 9685, 109152, 6612, 60500, '1.0000', '68.6800', '68.6800', '61.0000', '61.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115687, '2022-09-09', 8866, 109153, 6612, 61723, '1.0000', '3.6189', '3.6189', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115688, '2022-09-09', 7335, 109154, 6612, 61840, '1.0000', '16.9000', '16.9000', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115689, '2022-09-09', 2315, 109155, 6612, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115690, '2022-09-09', 7899, 109156, 6612, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115691, '2022-09-09', 9457, 109157, 6612, 43107, '1.0000', '2.9800', '2.9800', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115692, '2022-09-09', 1627, 109158, 6612, NULL, '1.0000', '46.2600', '46.2600', '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 (115693, '2022-09-09', 7380, 109159, 6612, 60818, '1.0000', '12.4986', '12.4986', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115694, '2022-09-09', 9737, 109160, 6613, NULL, '1.0000', '1.6000', '1.6000', '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 (115695, '2022-09-09', 1787, 109161, 6613, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115696, '2022-09-09', 1837, 109162, 6613, 62104, '2.0000', '1.1717', '1.1717', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115697, '2022-09-09', 2657, 109163, 6613, 62162, '1.0000', '0.4111', '0.4111', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115698, '2022-09-09', 2302, 109164, 6613, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115699, '2022-09-09', 7324, 109165, 6613, NULL, '1.0000', '5.4813', '5.4813', '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 (115700, '2022-09-09', 2237, 109166, 6613, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115701, '2022-09-09', 1855, 109167, 6613, 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 (115702, '2022-09-09', 9734, 109168, 6613, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '273.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115703, '2022-09-09', 2988, 109169, 6613, 22604, '2.0000', '7.1000', '7.1000', '9.5000', '9.5000', '28.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 (115704, '2022-09-09', 1912, 109170, 6613, 62138, '1.0000', '0.9741', '0.9741', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115705, '2022-09-09', 1654, 109171, 6613, 38538, '1.0000', '9.2613', '9.2613', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115706, '2022-09-09', 2262, 109172, 6613, 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 (115707, '2022-09-09', 2262, 109173, 6613, 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 (115708, '2022-09-09', 8746, 109174, 6613, 61266, '1.0000', '2.8100', '2.8100', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115709, '2022-09-09', 1501, 109175, 6613, NULL, '2.0000', '-0.6640', '-0.6640', '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 (115710, '2022-09-09', 9633, 109176, 6613, 61578, '1.0000', '7.9117', '7.9117', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115711, '2022-09-09', 9695, 109177, 6613, 62386, '1.0000', '5.5432', '5.5432', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115712, '2022-09-09', 1863, 109178, 6613, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '105.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115713, '2022-09-09', 2657, 109179, 6613, 62162, '1.0000', '0.4111', '0.4111', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115714, '2022-09-09', 2089, 109180, 6613, 62456, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115715, '2022-09-09', 1837, 109181, 6613, 62104, '3.0000', '1.1717', '1.1717', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115716, '2022-09-09', 1787, 109182, 6613, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115717, '2022-09-09', 9856, 109183, 6613, NULL, '1.0000', '-4.4000', '-4.4000', '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 (115718, '2022-09-09', 2416, 109184, 6614, 60924, '1.0000', '1.3345', '1.3345', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115719, '2022-09-09', 7741, 109185, 6614, 58791, '1.0000', '3.4144', '3.4144', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115720, '2022-09-09', 9680, 109186, 6614, NULL, '1.0000', '37.0000', '37.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 (115721, '2022-09-09', 1521, 109187, 6614, 61614, '1.0000', '2.8889', '2.8889', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115722, '2022-09-09', 1855, 109188, 6614, 53886, '2.0000', '1.4608', '1.4608', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115723, '2022-09-09', 2656, 109189, 6614, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115724, '2022-09-09', 7339, 109190, 6614, 56741, '1.0000', '-3.8719', '-3.8719', '0.9000', '0.9000', '79.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115725, '2022-09-09', 9177, 109191, 6614, 57975, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '40.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115726, '2022-09-09', 10005, 109192, 6614, 61633, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115727, '2022-09-09', 2302, 109193, 6614, 61671, '1.0000', '5.1974', '5.1974', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115728, '2022-09-09', 1411, 109194, 6614, 61606, '1.0000', '25.9672', '25.9672', '35.0000', '35.0000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115729, '2022-09-09', 1342, 109195, 6614, 58769, '1.0000', '9.1791', '9.1791', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115730, '2022-09-09', 1383, 109196, 6614, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115731, '2022-09-09', 2315, 109197, 6614, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115732, '2022-09-09', 2169, 109198, 6614, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115733, '2022-09-09', 1409, 109199, 6614, 62201, '1.0000', '13.1005', '13.1005', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115734, '2022-09-09', 1314, 109200, 6614, 21584, '1.0000', '1.2000', '1.2000', '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 (115735, '2022-09-09', 1863, 109201, 6614, 62253, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115736, '2022-09-09', 2086, 109202, 6614, 61626, '1.0000', '5.0384', '5.0384', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115737, '2022-09-09', 3001, 109203, 6614, NULL, '3.0000', '1.5000', '1.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 (115738, '2022-09-09', 2515, 109204, 6614, 7517, '1.0000', '16.0000', '16.0000', '20.0000', '20.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 (115739, '2022-09-09', 8177, 109205, 6614, 56828, '1.0000', '14.0145', '14.0145', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115740, '2022-09-09', 2850, 109206, 6614, 61696, '10.0000', '7.4451', '7.4451', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115741, '2022-09-09', 2546, 109207, 6614, 49062, '1.0000', '12.3150', '12.3150', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115742, '2022-09-09', 9326, 109208, 6615, 61961, '1.0000', '17.7500', '17.7500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115743, '2022-09-09', 7917, 109209, 6615, 61747, '1.0000', '2.5067', '2.5067', '0.7000', '0.7000', '62.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115744, '2022-09-09', 8657, 109210, 6615, NULL, '1.0000', '9.5800', '9.5800', '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 (115745, '2022-09-09', 7386, 109211, 6615, NULL, '1.0000', '-2.1000', '-2.1000', '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 (115746, '2022-09-09', 9821, 109212, 6615, 56590, '1.0000', '1.4500', '1.4500', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115747, '2022-09-09', 9413, 109213, 6615, 61705, '1.0000', '9.2095', '9.2095', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115748, '2022-09-09', 8512, 109214, 6615, 43136, '2.0000', '1.8000', '1.8000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115749, '2022-09-09', 7564, 109215, 6615, 59164, '2.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115750, '2022-09-09', 7355, 109216, 6615, NULL, '1.0000', '-3.6691', '-3.6691', '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 (115751, '2022-09-09', 7674, 109217, 6615, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115752, '2022-09-09', 7657, 109218, 6615, 61720, '1.0000', '14.7918', '14.7918', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115753, '2022-09-09', 7317, 109219, 6615, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115754, '2022-09-09', 9092, 109220, 6615, 60813, '14.0000', '0.3167', '0.3167', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115755, '2022-09-09', 8102, 109221, 6615, 54292, '1.0000', '32.3959', '32.3959', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115756, '2022-09-09', 7514, 109222, 6615, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115757, '2022-09-09', 9092, 109223, 6615, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '85.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115758, '2022-09-09', 7819, 109224, 6615, 62301, '1.0000', '12.8837', '12.8837', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115759, '2022-09-10', 2948, 109225, 6616, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '95.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115760, '2022-09-10', 1338, 109226, 6616, 61580, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115761, '2022-09-10', 1562, 109227, 6616, 62085, '1.0000', '7.9059', '7.9059', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115762, '2022-09-10', 1863, 109228, 6616, 62178, '4.0000', '1.5016', '1.5016', '2.5000', '2.5000', '101.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115763, '2022-09-10', 9695, 109229, 6616, 62386, '2.0000', '5.5432', '5.5432', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115764, '2022-09-10', 8963, 109230, 6616, 62451, '1.0000', '16.1427', '16.1427', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115765, '2022-09-10', 2657, 109231, 6616, 62162, '1.0000', '0.4111', '0.4111', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115766, '2022-09-10', 7411, 109232, 6616, NULL, '1.0000', '1.2819', '1.2819', '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 (115767, '2022-09-10', 1787, 109233, 6616, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115768, '2022-09-10', 1837, 109234, 6616, 62104, '2.0000', '1.1717', '1.1717', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115769, '2022-09-10', 1367, 109235, 6616, 18939, '1.0000', '49.2100', '49.2100', '110.0000', '110.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 (115770, '2022-09-10', 9822, 109236, 6616, 51220, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115771, '2022-09-10', 1672, 109237, 6616, NULL, '10.0000', '3.6408', '3.6408', '5.5000', '5.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 (115772, '2022-09-10', 1912, 109238, 6616, 62138, '5.0000', '0.9741', '0.9741', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115773, '2022-09-10', 1346, 109239, 6616, 55603, '15.0000', '1.6774', '1.6774', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115774, '2022-09-10', 2070, 109240, 6616, 62158, '1.0000', '2.6913', '2.6913', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115775, '2022-09-10', 2643, 109241, 6616, 57494, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115776, '2022-09-10', 2169, 109242, 6616, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115777, '2022-09-10', 1863, 109243, 6616, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '104.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115778, '2022-09-10', 2169, 109244, 6616, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115779, '2022-09-10', 1874, 109245, 6616, NULL, '1.0000', '-4.1000', '-4.1000', '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 (115780, '2022-09-10', 1863, 109246, 6616, 62178, '5.0000', '1.5016', '1.5016', '2.5000', '2.5000', '100.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115781, '2022-09-10', 3016, 109247, 6616, 57723, '1.0000', '13.9139', '13.9139', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115782, '2022-09-10', 2295, 109248, 6616, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115783, '2022-09-10', 1620, 109249, 6616, 59879, '2.0000', '2.3610', '2.3610', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115784, '2022-09-10', 2651, 109250, 6616, 56379, '1.0000', '11.9313', '11.9313', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115785, '2022-09-10', 8534, 109251, 6616, NULL, '1.0000', '22.0000', '22.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 (115786, '2022-09-10', 1860, 109252, 6616, 62402, '1.0000', '23.9070', '23.9070', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115787, '2022-09-10', 2283, 109253, 6616, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115788, '2022-09-10', 9902, 109254, 6616, 62143, '1.0000', '9.0074', '9.0074', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115789, '2022-09-10', 2315, 109255, 6616, 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 (115790, '2022-09-10', 1867, 109256, 6616, 60276, '1.0000', '10.8114', '10.8114', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115791, '2022-09-10', 9482, 109257, 6616, 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 (115792, '2022-09-10', 2416, 109258, 6616, 57493, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115793, '2022-09-10', 9734, 109259, 6616, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '271.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115794, '2022-09-10', 2607, 109260, 6616, 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 (115795, '2022-09-10', 2169, 109261, 6616, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115796, '2022-09-10', 8097, 109262, 6616, NULL, '1.0000', '7.6800', '7.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 (115797, '2022-09-10', 9207, 109263, 6616, NULL, '2.0000', '4.6000', '4.6000', '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 (115798, '2022-09-10', 2289, 109264, 6616, NULL, '2.0000', '0.3611', '0.3611', '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 (115799, '2022-09-10', 2643, 109265, 6616, 57494, '1.0000', '1.0727', '1.0727', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115800, '2022-09-10', 9030, 109266, 6616, NULL, '1.0000', '12.9000', '12.9000', '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 (115801, '2022-09-10', 1921, 109267, 6616, 62157, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115802, '2022-09-10', 1501, 109268, 6616, NULL, '1.0000', '-0.6640', '-0.6640', '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 (115803, '2022-09-10', 7886, 109269, 6616, NULL, '1.0000', '14.5000', '14.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 (115804, '2022-09-10', 2416, 109270, 6616, 57493, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115805, '2022-09-10', 9695, 109271, 6616, 62386, '2.0000', '5.5432', '5.5432', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115806, '2022-09-10', 1670, 109272, 6617, 62226, '1.0000', '37.8807', '37.8807', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115807, '2022-09-10', 2858, 109273, 6617, NULL, '2.0000', '1.0000', '1.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 (115808, '2022-09-10', 1612, 109274, 6617, NULL, '1.0000', '11.6000', '11.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115809, '2022-09-10', 1807, 109275, 6617, 58783, '1.0000', '-3.9727', '-3.9727', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115810, '2022-09-10', 1807, 109275, 6617, NULL, '2.0000', '-3.9727', '-3.9727', '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 (115811, '2022-09-10', 2962, 109276, 6617, 56354, '2.0000', '4.2143', '4.2143', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115812, '2022-09-10', 1578, 109277, 6617, 62241, '1.0000', '2.2213', '2.2213', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115813, '2022-09-10', 1521, 109278, 6617, 61614, '1.0000', '2.8889', '2.8889', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115814, '2022-09-10', 1650, 109279, 6617, 62230, '1.0000', '15.4955', '15.4955', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115815, '2022-09-10', 1604, 109280, 6617, 57941, '2.0000', '57.1901', '57.1901', '50.5000', '50.5000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115816, '2022-09-10', 9891, 109281, 6617, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115817, '2022-09-10', 1942, 109282, 6617, 61652, '1.0000', '20.5577', '20.5577', '28.0000', '28.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115818, '2022-09-10', 9940, 109283, 6617, 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 (115819, '2022-09-10', 2906, 109284, 6617, 18670, '1.0000', '2.6000', '2.6000', '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 (115820, '2022-09-10', 1602, 109285, 6617, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115821, '2022-09-10', 7333, 109286, 6618, 61921, '1.0000', '13.3704', '13.3704', '5.5000', '5.5000', '33.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115822, '2022-09-10', 7514, 109287, 6618, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115823, '2022-09-10', 9272, 109288, 6618, NULL, '1.0000', '3.1206', '3.1206', '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 (115824, '2022-09-10', 7611, 109289, 6618, 61772, '1.0000', '13.3642', '13.3642', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115825, '2022-09-10', 7324, 109290, 6618, 62344, '1.0000', '6.3200', '6.3200', '8.5000', '8.5000', '23.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115826, '2022-09-10', 7380, 109291, 6618, NULL, '1.0000', '12.4986', '12.4986', '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 (115827, '2022-09-10', 1837, 109292, 6618, NULL, '3.0000', '0.5600', '0.5600', '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 (115828, '2022-09-10', 8677, 109293, 6618, 61769, '3.0000', '1.9747', '1.9747', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115829, '2022-09-10', 8336, 109294, 6618, 56649, '2.0000', '2.9000', '2.9000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115830, '2022-09-10', 1501, 109295, 6618, 61830, '2.0000', '3.0589', '3.0589', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115831, '2022-09-10', 7730, 109296, 6618, 60195, '5.0000', '0.0723', '0.0723', '0.2000', '0.2000', '88.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115832, '2022-09-10', 7411, 109297, 6618, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115833, '2022-09-10', 9747, 109298, 6618, 60779, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115834, '2022-09-10', 9729, 109299, 6618, 60467, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115835, '2022-09-10', 7787, 109300, 6618, 62335, '1.0000', '20.6816', '20.6816', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115836, '2022-09-10', 7762, 109301, 6618, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115837, '2022-09-10', 7491, 109302, 6618, NULL, '2.0000', '7.4000', '7.4000', '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 (115838, '2022-09-10', 7412, 109303, 6618, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '21.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115839, '2022-09-10', 7473, 109304, 6618, 61833, '5.0000', '0.5360', '0.5360', '0.7000', '0.7000', '50.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115840, '2022-09-10', 7562, 109305, 6618, 62320, '1.0000', '6.8921', '6.8921', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115841, '2022-09-10', 8485, 109306, 6618, NULL, '1.0000', '6.0600', '6.0600', '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 (115842, '2022-09-10', 7872, 109307, 6618, 62345, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115843, '2022-09-10', 10019, 109308, 6618, 61957, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115844, '2022-09-10', 7392, 109309, 6618, 50637, '1.0000', '3.6419', '3.6419', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 414);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115845, '2022-09-10', 9204, 109310, 6618, 60135, '1.0000', '6.0556', '6.0556', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115846, '2022-09-10', 8097, 109311, 6618, 61845, '6.0000', '14.9186', '14.9186', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115847, '2022-09-10', 2315, 109312, 6618, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '90.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115848, '2022-09-10', 9747, 109313, 6618, 60779, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115849, '2022-09-10', 9810, 109314, 6618, 50392, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115850, '2022-09-10', 9750, 109315, 6618, 46931, '1.0000', '3.3000', '3.3000', '6.0000', '6.0000', '42.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115851, '2022-09-10', 2656, 109316, 6618, NULL, '1.0000', '1.7540', '1.7540', '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 (115852, '2022-09-10', 7711, 109317, 6618, 62295, '1.0000', '51.7667', '51.7667', '74.0000', '74.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115853, '2022-09-10', 7674, 109318, 6618, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115854, '2022-09-10', 8017, 109319, 6618, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115855, '2022-09-10', 7411, 109320, 6618, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115856, '2022-09-10', 1557, 109321, 6618, 62319, '1.0000', '8.1070', '8.1070', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115857, '2022-09-10', 8918, 109322, 6618, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115858, '2022-09-10', 7558, 109323, 6618, NULL, '2.0000', '-33.4148', '-33.4148', '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 (115859, '2022-09-10', 7675, 109324, 6618, NULL, '1.0000', '-21.9809', '-21.9809', '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 (115860, '2022-09-10', 7867, 109325, 6618, NULL, '1.0000', '2.3130', '2.3130', '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 (115861, '2022-09-10', 9269, 109326, 6618, 61752, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115862, '2022-09-10', 7894, 109327, 6618, 60819, '1.0000', '3.6043', '3.6043', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115863, '2022-09-10', 7674, 109328, 6619, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115864, '2022-09-10', 9576, 109329, 6619, 61973, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115865, '2022-09-10', 9755, 109330, 6619, 61974, '1.0000', '16.5000', '16.5000', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115866, '2022-09-10', 9819, 109331, 6619, 61922, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115867, '2022-09-10', 7790, 109332, 6619, NULL, '4.0000', '-7.6667', '-7.6667', '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 (115868, '2022-09-10', 7333, 109333, 6619, 61921, '1.0000', '13.3704', '13.3704', '5.5000', '5.5000', '32.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115869, '2022-09-10', 9463, 109334, 6619, 61916, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115870, '2022-09-10', 9329, 109335, 6619, 61944, '1.0000', '-3822.9201', '-3822.9201', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115871, '2022-09-10', 7518, 109336, 6619, 61784, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115872, '2022-09-10', 8155, 109337, 6619, NULL, '1.0000', '65.0000', '65.0000', '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 (115873, '2022-09-10', 7518, 109338, 6619, 61784, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '13.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115874, '2022-09-10', 7899, 109339, 6619, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115875, '2022-09-10', 9092, 109340, 6619, 60813, '2.0000', '0.3167', '0.3167', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115876, '2022-09-10', 2284, 109341, 6619, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115877, '2022-09-10', 7544, 109342, 6619, NULL, '2.0000', '9.4300', '9.4300', '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 (115878, '2022-09-10', 1841, 109343, 6619, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115879, '2022-09-10', 8965, 109344, 6619, NULL, '1.0000', '-263.2470', '-263.2470', '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 (115880, '2022-09-10', 8154, 109345, 6619, NULL, '1.0000', '12.3000', '12.3000', '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 (115881, '2022-09-10', 7704, 109346, 6619, NULL, '2.0000', '-1.5625', '-1.5625', '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 (115882, '2022-09-10', 7666, 109347, 6619, 62332, '1.0000', '6.1134', '6.1134', '6.5000', '6.5000', '18.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115883, '2022-09-10', 9751, 109348, 6619, 60568, '3.0000', '1.2432', '1.2432', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115884, '2022-09-10', 8759, 109349, 6619, 57513, '1.0000', '8.0678', '8.0678', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115885, '2022-09-10', 8596, 109350, 6619, NULL, '1.0000', '71.0634', '71.0634', '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 (115886, '2022-09-10', 2295, 109351, 6619, NULL, '3.0000', '-7.8337', '-7.8337', '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 (115887, '2022-09-10', 7576, 109352, 6619, NULL, '2.0000', '294.2473', '294.2473', '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 (115888, '2022-09-10', 7699, 109353, 6619, 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 (115889, '2022-09-10', 8324, 109354, 6619, NULL, '2.0000', '5.0011', '5.0011', '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 (115890, '2022-09-10', 8566, 109355, 6619, 60814, '2.0000', '-35666.0097', '-35666.0097', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115891, '2022-09-10', 9399, 109356, 6619, NULL, '1.0000', '0.9803', '0.9803', '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 (115892, '2022-09-10', 1340, 109357, 6619, 57181, '1.0000', '3.3640', '3.3640', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115893, '2022-09-10', 1740, 109358, 6619, 60450, '1.0000', '15.8000', '15.8000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115894, '2022-09-10', 7917, 109359, 6619, 61747, '1.0000', '2.5067', '2.5067', '0.7000', '0.7000', '61.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115895, '2022-09-10', 2503, 109360, 6619, 61911, '1.0000', '15.3221', '15.3221', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115896, '2022-09-10', 7753, 109361, 6619, 60153, '1.0000', '3.5929', '3.5929', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115897, '2022-09-10', 9770, 109362, 6619, 61761, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115898, '2022-09-10', 8457, 109363, 6619, NULL, '1.0000', '-8.0516', '-8.0516', '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 (115899, '2022-09-10', 7678, 109364, 6619, 61905, '1.0000', '7.4650', '7.4650', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115900, '2022-09-10', 2102, 109365, 6619, NULL, '1.0000', '1.5667', '1.5667', '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 (115901, '2022-09-10', 9272, 109366, 6619, NULL, '3.0000', '3.1206', '3.1206', '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 (115902, '2022-09-10', 7611, 109367, 6619, 61772, '1.0000', '13.3642', '13.3642', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115903, '2022-09-10', 7457, 109368, 6619, 61924, '1.0000', '5.0178', '5.0178', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115904, '2022-09-10', 9092, 109369, 6619, 60813, '10.0000', '0.3167', '0.3167', '0.5000', '0.5000', '61.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115905, '2022-09-10', 7611, 109370, 6619, 61772, '1.0000', '13.3642', '13.3642', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115906, '2022-09-10', 1771, 109371, 6619, 39531, '1.0000', '11.9058', '11.9058', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115907, '2022-09-10', 9822, 109372, 6620, 50998, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115908, '2022-09-10', 1672, 109373, 6620, 61756, '10.0000', '3.3201', '3.3201', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115909, '2022-09-10', 10019, 109374, 6620, 61957, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115910, '2022-09-10', 2061, 109375, 6620, 59322, '1.0000', '12.7640', '12.7640', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115911, '2022-09-10', 7411, 109376, 6620, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115912, '2022-09-10', 1501, 109377, 6620, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115913, '2022-09-10', 7666, 109378, 6620, 62332, '1.0000', '6.1134', '6.1134', '6.5000', '6.5000', '17.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115914, '2022-09-10', 7591, 109379, 6620, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115915, '2022-09-10', 9735, 109380, 6620, 60127, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115916, '2022-09-10', 2169, 109381, 6621, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115917, '2022-09-10', 1756, 109382, 6621, NULL, '1.0000', '4.9900', '4.9900', '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 (115918, '2022-09-10', 2259, 109383, 6621, 62448, '1.0000', '25.7632', '25.7632', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115919, '2022-09-10', 8017, 109384, 6621, 62109, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115920, '2022-09-10', 9788, 109385, 6621, 51672, '2.0000', '1.5347', '1.5347', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115921, '2022-09-10', 2283, 109386, 6621, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115922, '2022-09-10', 1628, 109387, 6621, 61561, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115923, '2022-09-10', 1700, 109388, 6621, NULL, '1.0000', '1.0000', '1.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 (115924, '2022-09-10', 9815, 109389, 6621, 62097, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '47.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115925, '2022-09-10', 7411, 109390, 6621, NULL, '1.0000', '1.2819', '1.2819', '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 (115926, '2022-09-10', 1383, 109391, 6621, 62134, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115927, '2022-09-10', 2646, 109392, 6621, 61476, '1.0000', '9.0000', '9.0000', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115928, '2022-09-10', 2357, 109393, 6621, 62427, '1.0000', '4.2955', '4.2955', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115929, '2022-09-10', 1912, 109394, 6621, 62138, '1.0000', '0.9741', '0.9741', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115930, '2022-09-10', 9672, 109395, 6621, NULL, '1.0000', '2.0500', '2.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 (115931, '2022-09-10', 2908, 109396, 6621, 55931, '2.0000', '0.3518', '0.3518', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115932, '2022-09-10', 1499, 109397, 6621, 62139, '1.0000', '0.5090', '0.5090', '0.7000', '0.7000', '41.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115933, '2022-09-10', 9791, 109398, 6621, 62105, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115934, '2022-09-10', 9791, 109399, 6621, 62105, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115935, '2022-09-10', 2567, 109400, 6621, 59679, '1.0000', '35.5528', '35.5528', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115936, '2022-09-10', 2293, 109401, 6621, NULL, '2.0000', '-17.4320', '-17.4320', '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 (115937, '2022-09-10', 1580, 109402, 6621, 62190, '2.0000', '1.4680', '1.4680', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115938, '2022-09-10', 2262, 109403, 6621, 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 (115939, '2022-09-10', 2169, 109404, 6621, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115940, '2022-09-10', 2237, 109405, 6621, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115941, '2022-09-10', 7802, 109406, 6621, NULL, '3.0000', '1.1497', '1.1497', '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 (115942, '2022-09-10', 1440, 109407, 6621, 62401, '1.0000', '12.1795', '12.1795', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115943, '2022-09-10', 2293, 109408, 6621, NULL, '3.0000', '-17.4320', '-17.4320', '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 (115944, '2022-09-10', 2916, 109409, 6621, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115945, '2022-09-10', 1529, 109410, 6621, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115946, '2022-09-10', 3020, 109411, 6621, 60239, '1.0000', '11.9900', '11.9900', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115947, '2022-09-10', 9730, 109412, 6621, 47078, '1.0000', '18.2000', '18.2000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115948, '2022-09-10', 7411, 109413, 6621, NULL, '1.0000', '1.2819', '1.2819', '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 (115949, '2022-09-10', 8384, 109414, 6621, 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 (115950, '2022-09-10', 1746, 109415, 6621, 62186, '1.0000', '5.0901', '5.0901', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115951, '2022-09-10', 9740, 109416, 6621, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115952, '2022-09-10', 2315, 109417, 6621, NULL, '1.0000', '0.7700', '0.7700', '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 (115953, '2022-09-10', 9943, 109418, 6621, NULL, '2.0000', '16.8000', '16.8000', '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 (115954, '2022-09-10', 1871, 109419, 6621, NULL, '4.0000', '-79.1764', '-79.1764', '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 (115955, '2022-09-10', 1668, 109420, 6621, 60288, '1.0000', '20.0477', '20.0477', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115956, '2022-09-10', 1772, 109421, 6621, 62187, '1.0000', '5.9758', '5.9758', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115957, '2022-09-10', 1804, 109422, 6621, 62124, '1.0000', '19.8100', '19.8100', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115958, '2022-09-10', 2236, 109423, 6621, NULL, '1.0000', '5.5597', '5.5597', '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 (115959, '2022-09-10', 2237, 109424, 6621, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115960, '2022-09-10', 1885, 109425, 6621, 59621, '1.0000', '6.9875', '6.9875', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115961, '2022-09-10', 1432, 109426, 6621, 62389, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115962, '2022-09-10', 2252, 109427, 6621, 55710, '1.0000', '14.1056', '14.1056', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115963, '2022-09-10', 9213, 109428, 6621, 61486, '2.0000', '-6941.3272', '-6941.3272', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115964, '2022-09-10', 1912, 109429, 6621, 62138, '2.0000', '0.9741', '0.9741', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115965, '2022-09-10', 1912, 109429, 6621, NULL, '1.0000', '0.9741', '0.9741', '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 (115966, '2022-09-10', 7498, 109430, 6621, NULL, '1.0000', '3.5000', '3.5000', '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 (115967, '2022-09-10', 2699, 109431, 6621, NULL, '1.0000', '4.2435', '4.2435', '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 (115968, '2022-09-10', 2823, 109432, 6621, NULL, '1.0000', '-5.2900', '-5.2900', '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 (115969, '2022-09-10', 3025, 109433, 6621, 58059, '1.0000', '2.4395', '2.4395', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115970, '2022-09-10', 1368, 109434, 6621, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115971, '2022-09-10', 2315, 109435, 6621, NULL, '1.0000', '0.7700', '0.7700', '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 (115972, '2022-09-10', 1342, 109436, 6621, 62151, '1.0000', '7.1610', '7.1610', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115973, '2022-09-10', 1342, 109437, 6621, 62151, '1.0000', '7.1610', '7.1610', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115974, '2022-09-10', 7666, 109438, 6621, NULL, '1.0000', '-6.0000', '-6.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 (115975, '2022-09-10', 8017, 109439, 6621, 62109, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115976, '2022-09-10', 1760, 109440, 6621, 58185, '1.0000', '-0.1939', '-0.1939', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115977, '2022-09-10', 1760, 109440, 6621, NULL, '9.0000', '-0.1939', '-0.1939', '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 (115978, '2022-09-10', 8878, 109441, 6621, NULL, '1.0000', '14.9442', '14.9442', '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 (115979, '2022-09-10', 2699, 109442, 6621, NULL, '1.0000', '4.2435', '4.2435', '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 (115980, '2022-09-10', 2169, 109443, 6621, 61566, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115981, '2022-09-10', 1426, 109444, 6621, 54941, '1.0000', '36.8416', '36.8416', '47.5000', '47.5000', '4.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115982, '2022-09-10', 1665, 109445, 6621, 62363, '2.0000', '1.5573', '1.5573', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115983, '2022-09-10', 2916, 109446, 6621, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115984, '2022-09-10', 2823, 109447, 6621, NULL, '1.0000', '-5.2900', '-5.2900', '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 (115985, '2022-09-10', 9741, 109448, 6621, NULL, '1.0000', '7.8500', '7.8500', '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 (115986, '2022-09-10', 3044, 109449, 6621, NULL, '1.0000', '0.4000', '0.4000', '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 (115987, '2022-09-10', 1499, 109450, 6621, 62139, '2.0000', '0.5090', '0.5090', '0.7000', '0.7000', '40.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115988, '2022-09-10', 1812, 109451, 6621, 62185, '1.0000', '9.3485', '9.3485', '12.5000', '12.5000', '17.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115989, '2022-09-10', 2302, 109452, 6621, 60327, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115990, '2022-09-10', 8482, 109453, 6621, NULL, '1.0000', '2.9500', '2.9500', '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 (115991, '2022-09-10', 1785, 109454, 6621, 59858, '1.0000', '17.7035', '17.7035', '25.5000', '25.5000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115992, '2022-09-10', 2073, 109455, 6621, 55667, '3.0000', '2.3000', '2.3000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115993, '2022-09-10', 1310, 109456, 6621, 60260, '7.0000', '0.4100', '0.4100', '0.6000', '0.6000', '7.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115994, '2022-09-10', 2916, 109457, 6621, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (115995, '2022-09-10', 2823, 109458, 6621, NULL, '1.0000', '-5.2900', '-5.2900', '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 (115996, '2022-09-10', 8384, 109459, 6621, 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 (115997, '2022-09-10', 1602, 109460, 6621, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115998, '2022-09-10', 7954, 109461, 6621, 62424, '4.0000', '1.6365', '1.6365', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115999, '2022-09-10', 8133, 109462, 6622, 62251, '1.0000', '10.3333', '10.3333', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116000, '2022-09-10', 2823, 109463, 6622, 61639, '1.0000', '7.5838', '7.5838', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116001, '2022-09-10', 2315, 109464, 6622, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116002, '2022-09-10', 7368, 109465, 6622, NULL, '1.0000', '14.7500', '14.7500', '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 (116003, '2022-09-10', 2651, 109466, 6622, 57995, '1.0000', '5.7380', '5.7380', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116004, '2022-09-10', 7802, 109467, 6622, 52269, '4.0000', '1.3468', '1.3468', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116005, '2022-09-10', 1699, 109468, 6622, 49088, '1.0000', '3.2000', '3.2000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116006, '2022-09-10', 1339, 109469, 6622, 61599, '1.0000', '1.9305', '1.9305', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116007, '2022-09-10', 1440, 109470, 6622, 62265, '1.0000', '10.3334', '10.3334', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116008, '2022-09-10', 2169, 109471, 6622, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116009, '2022-09-10', 2061, 109472, 6622, 62250, '1.0000', '12.7522', '12.7522', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116010, '2022-09-10', 9940, 109473, 6622, NULL, '3.0000', '9.0000', '9.0000', '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 (116011, '2022-09-10', 7743, 109474, 6622, NULL, '2.0000', '1.3100', '1.3100', '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 (116012, '2022-09-10', 9891, 109475, 6622, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116013, '2022-09-10', 2821, 109476, 6622, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116014, '2022-09-10', 7411, 109477, 6622, NULL, '1.0000', '1.5882', '1.5882', '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 (116015, '2022-09-10', 2135, 109478, 6622, NULL, '1.0000', '2.2504', '2.2504', '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 (116016, '2022-09-10', 1871, 109479, 6622, 59999, '3.0000', '4.6908', '4.6908', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116017, '2022-09-10', 9740, 109480, 6622, 56933, '2.0000', '0.6636', '0.6636', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116018, '2022-09-10', 7725, 109481, 6622, NULL, '1.0000', '9.5000', '9.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 (116019, '2022-09-10', 2069, 109482, 6622, 62222, '1.0000', '6.0498', '6.0498', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116020, '2022-09-10', 2020, 109483, 6622, 62236, '1.0000', '7.0334', '7.0334', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116021, '2022-09-10', 2656, 109484, 6622, 60927, '1.0000', '1.5521', '1.5521', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116022, '2022-09-10', 1650, 109485, 6622, 62230, '1.0000', '15.4955', '15.4955', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116023, '2022-09-10', 7411, 109486, 6622, NULL, '1.0000', '1.5882', '1.5882', '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 (116024, '2022-09-10', 2061, 109487, 6622, 62250, '1.0000', '12.7522', '12.7522', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116025, '2022-09-10', 1754, 109488, 6622, 62239, '1.0000', '27.5713', '27.5713', '23.5000', '23.5000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116026, '2022-09-10', 9740, 109489, 6622, 56933, '2.0000', '0.6636', '0.6636', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116027, '2022-09-10', 7411, 109490, 6622, NULL, '1.0000', '1.5882', '1.5882', '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 (116028, '2022-09-10', 1665, 109491, 6622, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116029, '2022-09-10', 1383, 109492, 6622, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116030, '2022-09-10', 1700, 109493, 6622, 44709, '1.0000', '21.6025', '21.6025', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116031, '2022-09-10', 1621, 109494, 6622, 57986, '2.0000', '35.3870', '35.3870', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116032, '2022-09-10', 1371, 109495, 6622, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116033, '2022-09-10', 1498, 109496, 6622, 52247, '1.0000', '0.3808', '0.3808', '0.7000', '0.7000', '20.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116034, '2022-09-10', 1621, 109497, 6622, 57986, '1.0000', '35.3870', '35.3870', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116035, '2022-09-10', 2302, 109498, 6622, 61671, '1.0000', '5.1974', '5.1974', '7.0000', '7.0000', '17.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116036, '2022-09-10', 1689, 109499, 6622, 60053, '1.0000', '14.3061', '14.3061', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116037, '2022-09-10', 7385, 109500, 6622, 57945, '3.0000', '2.6553', '2.6553', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116038, '2022-09-10', 2260, 109501, 6622, 62198, '2.0000', '4.8731', '4.8731', '7.0000', '7.0000', '26.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116039, '2022-09-11', 2252, 109502, 6623, 55710, '1.0000', '14.1056', '14.1056', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116040, '2022-09-11', 2315, 109503, 6623, NULL, '1.0000', '0.7700', '0.7700', '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 (116041, '2022-09-11', 1602, 109504, 6623, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116042, '2022-09-11', 1912, 109505, 6623, NULL, '1.0000', '0.9741', '0.9741', '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 (116043, '2022-09-11', 2416, 109506, 6623, 57493, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116044, '2022-09-11', 2893, 109507, 6623, NULL, '1.0000', '9.1280', '9.1280', '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 (116045, '2022-09-11', 9734, 109508, 6623, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '269.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116046, '2022-09-11', 1856, 109509, 6623, NULL, '1.0000', '155.0099', '155.0099', '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 (116047, '2022-09-11', 9683, 109510, 6623, 61482, '1.0000', '1.0029', '1.0029', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116048, '2022-09-11', 1912, 109511, 6623, NULL, '2.0000', '0.9741', '0.9741', '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 (116049, '2022-09-11', 2366, 109512, 6623, NULL, '1.0000', '-98.6017', '-98.6017', '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 (116050, '2022-09-11', 9565, 109513, 6623, NULL, '1.0000', '4.5000', '4.5000', '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 (116051, '2022-09-11', 9831, 109514, 6623, 61498, '1.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '10.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116052, '2022-09-11', 9213, 109515, 6623, 61486, '1.0000', '-6941.3272', '-6941.3272', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116053, '2022-09-11', 8444, 109516, 6623, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116054, '2022-09-11', 8743, 109517, 6623, 61267, '1.0000', '15.8400', '15.8400', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116055, '2022-09-11', 2059, 109518, 6623, 61500, '1.0000', '10.8085', '10.8085', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116056, '2022-09-11', 2009, 109519, 6623, 57111, '1.0000', '17.9524', '17.9524', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116057, '2022-09-11', 8205, 109520, 6623, NULL, '1.0000', '2.9500', '2.9500', '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 (116058, '2022-09-11', 9870, 109521, 6623, 61499, '1.0000', '7.0202', '7.0202', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116059, '2022-09-11', 9870, 109521, 6623, NULL, '1.0000', '7.0202', '7.0202', '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 (116060, '2022-09-11', 2169, 109522, 6623, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116061, '2022-09-11', 9740, 109523, 6623, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116062, '2022-09-11', 2352, 109524, 6623, NULL, '10.0000', '313.7364', '313.7364', '4.0000', '4.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 (116063, '2022-09-11', 9870, 109525, 6624, NULL, '1.0000', '7.0202', '7.0202', '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 (116064, '2022-09-11', 2169, 109526, 6624, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116065, '2022-09-11', 2163, 109527, 6625, 62449, '1.0000', '43.4165', '43.4165', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116066, '2022-09-11', 8622, 109528, 6625, 61575, '3.0000', '1.4900', '1.4900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116067, '2022-09-11', 8622, 109528, 6625, NULL, '1.0000', '1.4900', '1.4900', '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 (116068, '2022-09-11', 8727, 109529, 6626, NULL, '1.0000', '13.1300', '13.1300', '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 (116069, '2022-09-11', 7402, 109530, 6626, 61925, '1.0000', '18.9416', '18.9416', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116070, '2022-09-11', 8392, 109531, 6626, 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 (116071, '2022-09-11', 8969, 109532, 6626, NULL, '1.0000', '2.0000', '2.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 (116072, '2022-09-11', 7518, 109533, 6626, 61784, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116073, '2022-09-11', 10004, 109534, 6626, 61894, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116074, '2022-09-11', 7641, 109535, 6626, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '38.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116075, '2022-09-11', 7959, 109536, 6626, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '5.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116076, '2022-09-11', 2357, 109537, 6626, NULL, '2.0000', '4.0000', '4.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 (116077, '2022-09-11', 8134, 109538, 6626, 51812, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116078, '2022-09-11', 9729, 109539, 6626, 60467, '4.0000', '0.6200', '0.6200', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116079, '2022-09-11', 9734, 109540, 6626, 61746, '4.0000', '0.3316', '0.3316', '0.7000', '0.7000', '187.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116080, '2022-09-11', 7980, 109541, 6626, NULL, '10.0000', '21379.0542', '21379.0542', '0.9000', '0.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 (116081, '2022-09-11', 7784, 109542, 6626, 59340, '1.0000', '5.0992', '5.0992', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116082, '2022-09-11', 7824, 109543, 6626, NULL, '1.0000', '7.7000', '7.7000', '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 (116083, '2022-09-11', 7952, 109544, 6626, 62310, '1.0000', '4.8479', '4.8479', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116084, '2022-09-11', 7819, 109545, 6626, 62301, '1.0000', '12.8837', '12.8837', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116085, '2022-09-11', 7672, 109546, 6626, 62287, '2.0000', '1.8417', '1.8417', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116086, '2022-09-11', 8677, 109547, 6626, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116087, '2022-09-11', 7411, 109548, 6626, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116088, '2022-09-11', 2315, 109549, 6626, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116089, '2022-09-11', 9747, 109550, 6626, 60779, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116090, '2022-09-11', 9751, 109551, 6626, 60568, '1.0000', '1.2432', '1.2432', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116091, '2022-09-11', 7675, 109552, 6626, NULL, '1.0000', '-21.9809', '-21.9809', '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 (116092, '2022-09-11', 7672, 109553, 6626, 62287, '2.0000', '1.8417', '1.8417', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116093, '2022-09-11', 9092, 109554, 6626, 60813, '4.0000', '0.3167', '0.3167', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116094, '2022-09-11', 7673, 109555, 6626, 61867, '1.0000', '16.4255', '16.4255', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116095, '2022-09-11', 8965, 109556, 6626, NULL, '1.0000', '-263.2470', '-263.2470', '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 (116096, '2022-09-11', 7509, 109557, 6626, 62298, '1.0000', '8.5881', '8.5881', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116097, '2022-09-11', 7658, 109558, 6627, NULL, '2.0000', '2.0200', '2.0200', '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 (116098, '2022-09-11', 7744, 109559, 6627, NULL, '2.0000', '2.7000', '2.7000', '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 (116099, '2022-09-11', 1420, 109560, 6627, NULL, '1.0000', '1.2000', '1.2000', '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 (116100, '2022-09-11', 2315, 109561, 6627, 2735, '-661.0000', '0.3300', '0.3300', '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 (116101, '2022-09-11', 2315, 109561, 6627, NULL, '662.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-662.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116102, '2022-09-11', 7641, 109562, 6627, NULL, '1.0000', '1.9000', '1.9000', '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 (116103, '2022-09-11', 8207, 109563, 6627, NULL, '1.0000', '0.0000', '0.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 (116104, '2022-09-11', 9092, 109564, 6627, NULL, '6.0000', '5.2900', '5.2900', '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 (116105, '2022-09-11', 7469, 109565, 6627, NULL, '1.0000', '23.0000', '23.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116106, '2022-09-11', 1834, 109566, 6627, NULL, '10.0000', '6.9600', '6.9600', '9.2000', '9.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 (116107, '2022-09-11', 7518, 109567, 6627, NULL, '1.0000', '7.8200', '7.8200', '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 (116108, '2022-09-11', 2315, 109568, 6627, 2735, '-661.0000', '0.3300', '0.3300', '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 (116109, '2022-09-11', 2315, 109568, 6627, NULL, '662.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-662.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116110, '2022-09-11', 7959, 109569, 6627, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116111, '2022-09-11', 8061, 109570, 6627, 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 (116112, '2022-09-11', 7411, 109571, 6627, NULL, '1.0000', '1.3500', '1.3500', '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 (116113, '2022-09-11', 7657, 109572, 6627, NULL, '1.0000', '11.3200', '11.3200', '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 (116114, '2022-09-11', 7641, 109573, 6627, NULL, '1.0000', '1.9000', '1.9000', '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 (116115, '2022-09-11', 8666, 109574, 6627, NULL, '1.0000', '0.4600', '0.4600', '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 (116116, '2022-09-11', 3001, 109575, 6627, NULL, '1.0000', '1.5000', '1.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 (116117, '2022-09-11', 9791, 109576, 6627, NULL, '2.0000', '0.9000', '0.9000', '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 (116118, '2022-09-11', 7473, 109577, 6627, NULL, '3.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (116119, '2022-09-11', 9092, 109578, 6627, NULL, '4.0000', '5.2900', '5.2900', '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 (116120, '2022-09-11', 7672, 109579, 6627, NULL, '1.0000', '1.0200', '1.0200', '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 (116121, '2022-09-11', 7317, 109580, 6627, NULL, '1.0000', '19.5500', '19.5500', '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 (116122, '2022-09-11', 7780, 109581, 6627, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116123, '2022-09-11', 7666, 109582, 6627, NULL, '1.0000', '3.6000', '3.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 (116124, '2022-09-11', 9330, 109583, 6627, NULL, '1.0000', '8.6000', '8.6000', '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 (116125, '2022-09-11', 8331, 109584, 6627, 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 (116126, '2022-09-11', 7379, 109585, 6627, NULL, '1.0000', '12.5100', '12.5100', '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 (116127, '2022-09-11', 9092, 109586, 6627, NULL, '2.0000', '5.2900', '5.2900', '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 (116128, '2022-09-11', 7917, 109587, 6627, NULL, '1.0000', '5.0000', '5.0000', '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 (116129, '2022-09-11', 8982, 109588, 6627, NULL, '1.0000', '10.0000', '10.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 (116130, '2022-09-11', 8949, 109589, 6627, 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 (116131, '2022-09-11', 2169, 109590, 6628, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116132, '2022-09-11', 2068, 109591, 6628, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116133, '2022-09-11', 9740, 109592, 6628, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116134, '2022-09-11', 2169, 109593, 6628, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116135, '2022-09-11', 7741, 109594, 6628, NULL, '1.0000', '-174.4114', '-174.4114', '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 (116136, '2022-09-11', 1499, 109595, 6628, 62139, '2.0000', '0.5090', '0.5090', '0.7000', '0.7000', '37.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116137, '2022-09-11', 1501, 109596, 6628, NULL, '1.0000', '-0.6640', '-0.6640', '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 (116138, '2022-09-11', 7944, 109597, 6628, NULL, '1.0000', '2.0100', '2.0100', '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 (116139, '2022-09-11', 2821, 109598, 6628, NULL, '1.0000', '3.3676', '3.3676', '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 (116140, '2022-09-11', 9953, 109599, 6628, 60249, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116141, '2022-09-11', 1702, 109600, 6628, NULL, '1.0000', '-12.4833', '-12.4833', '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 (116142, '2022-09-11', 2948, 109601, 6628, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '94.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116143, '2022-09-11', 2315, 109602, 6628, NULL, '1.0000', '0.7700', '0.7700', '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 (116144, '2022-09-11', 10010, 109603, 6628, 61586, '1.0000', '0.8400', '0.8400', '1.1100', '1.1100', '97.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116145, '2022-09-11', 2315, 109604, 6628, NULL, '1.0000', '0.7700', '0.7700', '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 (116146, '2022-09-11', 2821, 109605, 6628, NULL, '1.0000', '3.3676', '3.3676', '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 (116147, '2022-09-11', 2169, 109606, 6628, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116148, '2022-09-11', 2295, 109607, 6628, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116149, '2022-09-11', 2088, 109608, 6628, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116150, '2022-09-11', 1863, 109609, 6628, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '94.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116151, '2022-09-11', 1771, 109610, 6628, 62098, '1.0000', '7.0319', '7.0319', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116152, '2022-09-11', 2277, 109611, 6628, 62419, '1.0000', '0.5402', '0.5402', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116153, '2022-09-11', 9840, 109612, 6628, 62133, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116154, '2022-09-11', 9695, 109613, 6628, 62386, '1.0000', '5.5432', '5.5432', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116155, '2022-09-11', 2169, 109614, 6628, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116156, '2022-09-11', 8740, 109615, 6628, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116157, '2022-09-11', 9482, 109616, 6628, 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 (116158, '2022-09-11', 1816, 109617, 6628, 58143, '1.0000', '22.2575', '22.2575', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116159, '2022-09-11', 7472, 109618, 6628, NULL, '1.0000', '-170.6357', '-170.6357', '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 (116160, '2022-09-11', 1855, 109619, 6628, NULL, '2.0000', '1.4000', '1.4000', '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 (116161, '2022-09-11', 2237, 109620, 6628, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116162, '2022-09-11', 2169, 109621, 6628, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116163, '2022-09-11', 1602, 109622, 6628, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116164, '2022-09-11', 2762, 109623, 6628, NULL, '1.0000', '7.1000', '7.1000', '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 (116165, '2022-09-11', 1946, 109624, 6628, NULL, '1.0000', '-12.3249', '-12.3249', '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 (116166, '2022-09-11', 1602, 109625, 6628, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116167, '2022-09-11', 9748, 109626, 6628, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116168, '2022-09-11', 2109, 109627, 6628, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116169, '2022-09-11', 1314, 109628, 6628, 54908, '4.0000', '1.5721', '1.5721', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116170, '2022-09-11', 1812, 109629, 6628, 62185, '2.0000', '9.3485', '9.3485', '12.5000', '12.5000', '15.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116171, '2022-09-11', 2543, 109630, 6628, 60263, '1.0000', '3.3251', '3.3251', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116172, '2022-09-11', 2821, 109631, 6628, NULL, '1.0000', '3.3676', '3.3676', '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 (116173, '2022-09-11', 9747, 109632, 6628, 62180, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '79.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116174, '2022-09-11', 9734, 109633, 6628, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '268.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116175, '2022-09-11', 1665, 109634, 6628, 62363, '6.0000', '1.5573', '1.5573', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116176, '2022-09-11', 2410, 109635, 6628, 60269, '1.0000', '4.9430', '4.9430', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116177, '2022-09-11', 2285, 109636, 6628, NULL, '1.0000', '-159.5389', '-159.5389', '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 (116178, '2022-09-11', 9720, 109637, 6628, 59898, '1.0000', '10.6000', '10.6000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116179, '2022-09-11', 1314, 109638, 6628, 54908, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116180, '2022-09-11', 1411, 109639, 6628, 62192, '1.0000', '25.9995', '25.9995', '35.0000', '35.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116181, '2022-09-11', 1867, 109640, 6628, 59841, '1.0000', '10.8114', '10.8114', '18.5000', '18.5000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116182, '2022-09-11', 2252, 109641, 6628, 55710, '1.0000', '14.1056', '14.1056', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116183, '2022-09-11', 9725, 109642, 6628, 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 (116184, '2022-09-11', 1590, 109643, 6628, 62189, '3.0000', '2.4695', '2.4695', '3.5000', '3.5000', '245.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116185, '2022-09-11', 1772, 109644, 6628, 62187, '1.0000', '5.9758', '5.9758', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116186, '2022-09-11', 1746, 109645, 6628, 62186, '1.0000', '5.0901', '5.0901', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116187, '2022-09-11', 9740, 109646, 6628, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116188, '2022-09-11', 9469, 109647, 6628, 61479, '1.0000', '5.5270', '5.5270', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116189, '2022-09-11', 2169, 109648, 6628, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116190, '2022-09-11', 2327, 109649, 6628, 48714, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116191, '2022-09-11', 7674, 109650, 6629, NULL, '1.0000', '1.3000', '1.3000', '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 (116192, '2022-09-11', 7411, 109651, 6629, NULL, '1.0000', '1.3500', '1.3500', '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 (116193, '2022-09-11', 1904, 109652, 6630, 59962, '1.0000', '19.3805', '19.3805', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116194, '2022-09-11', 7954, 109653, 6630, 56718, '2.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116195, '2022-09-11', 9814, 109654, 6630, 55830, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116196, '2022-09-11', 1612, 109655, 6630, NULL, '1.0000', '11.6000', '11.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116197, '2022-09-11', 2964, 109656, 6630, 60920, '3.0000', '6.4630', '6.4630', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116198, '2022-09-11', 2283, 109657, 6630, 56961, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116199, '2022-09-11', 2263, 109658, 6630, 61618, '1.0000', '5.3665', '5.3665', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116200, '2022-09-11', 1342, 109659, 6630, 58769, '1.0000', '9.1791', '9.1791', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116201, '2022-09-11', 9747, 109660, 6630, 61623, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116202, '2022-09-11', 1383, 109661, 6630, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116203, '2022-09-11', 2315, 109662, 6630, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116204, '2022-09-11', 7353, 109663, 6630, NULL, '4.0000', '0.1900', '0.1900', '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 (116205, '2022-09-11', 7802, 109664, 6630, 52269, '1.0000', '1.3468', '1.3468', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116206, '2022-09-11', 2293, 109665, 6630, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116207, '2022-09-11', 1590, 109666, 6630, 9437, '1.0000', '1.7700', '1.7700', '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 (116208, '2022-09-11', 1602, 109667, 6630, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116209, '2022-09-11', 2821, 109668, 6630, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116210, '2022-09-11', 7744, 109669, 6630, NULL, '1.0000', '2.9400', '2.9400', '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 (116211, '2022-09-11', 7745, 109670, 6630, 62217, '1.0000', '8.4200', '8.4200', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116212, '2022-09-11', 2277, 109671, 6630, 56888, '2.0000', '0.4266', '0.4266', '1.5000', '1.5000', '105.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116213, '2022-09-11', 2315, 109672, 6630, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116214, '2022-09-11', 1695, 109673, 6630, 62228, '1.0000', '25.9903', '25.9903', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116215, '2022-09-11', 2315, 109674, 6630, 60074, '2.0000', '0.5758', '0.5758', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116216, '2022-09-11', 7330, 109675, 6630, 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 (116217, '2022-09-11', 7524, 109676, 6630, NULL, '1.0000', '11.9500', '11.9500', '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 (116218, '2022-09-11', 1314, 109677, 6630, 21584, '2.0000', '1.2000', '1.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 (116219, '2022-09-11', 7411, 109678, 6630, NULL, '1.0000', '1.5882', '1.5882', '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 (116220, '2022-09-11', 7584, 109679, 6630, 60088, '1.0000', '2.6000', '2.6000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116221, '2022-09-11', 7802, 109680, 6630, 52269, '1.0000', '1.3468', '1.3468', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116222, '2022-09-11', 2281, 109681, 6630, 58765, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116223, '2022-09-11', 1695, 109682, 6630, 62228, '1.0000', '25.9903', '25.9903', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116224, '2022-09-11', 8622, 109683, 6630, 49079, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116225, '2022-09-11', 7641, 109684, 6630, NULL, '1.0000', '1.9000', '1.9000', '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 (116226, '2022-09-11', 2169, 109685, 6630, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116227, '2022-09-11', 2582, 109686, 6630, 61617, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116228, '2022-09-11', 9878, 109687, 6630, 56906, '1.0000', '8.7483', '8.7483', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116229, '2022-09-11', 2236, 109688, 6630, 62209, '1.0000', '6.1815', '6.1815', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116230, '2022-09-11', 1921, 109689, 6630, 57994, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116231, '2022-09-11', 2858, 109690, 6630, 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 (116232, '2022-09-11', 7639, 109691, 6630, 61288, '1.0000', '5.8250', '5.8250', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116233, '2022-09-11', 1839, 109692, 6630, 62233, '1.0000', '7.9880', '7.9880', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116234, '2022-09-11', 2893, 109693, 6630, 62224, '1.0000', '6.8008', '6.8008', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116235, '2022-09-11', 2135, 109694, 6630, NULL, '1.0000', '2.2504', '2.2504', '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 (116236, '2022-09-11', 2315, 109695, 6630, 60074, '1.0000', '0.5758', '0.5758', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116237, '2022-09-11', 1501, 109696, 6630, 55884, '1.0000', '95.0477', '95.0477', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116238, '2022-09-11', 1498, 109697, 6630, 52247, '1.0000', '0.3808', '0.3808', '0.7000', '0.7000', '19.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116239, '2022-09-11', 2481, 109698, 6630, 5193, '1.0000', '3.5000', '3.5000', '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 (116240, '2022-09-11', 2302, 109699, 6630, 61671, '2.0000', '5.1974', '5.1974', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116241, '2022-09-12', 1409, 109700, 6631, 62429, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116242, '2022-09-12', 2948, 109701, 6631, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '93.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116243, '2022-09-12', 2380, 109702, 6631, 55679, '1.0000', '47.0967', '47.0967', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116244, '2022-09-12', 7637, 109703, 6631, NULL, '1.0000', '5.0000', '5.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 (116245, '2022-09-12', 8017, 109704, 6631, 62109, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116246, '2022-09-12', 2315, 109705, 6631, NULL, '1.0000', '0.7700', '0.7700', '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 (116247, '2022-09-12', 2237, 109706, 6631, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116248, '2022-09-12', 2315, 109707, 6631, NULL, '1.0000', '0.7700', '0.7700', '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 (116249, '2022-09-12', 9729, 109708, 6631, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116250, '2022-09-12', 8170, 109709, 6631, NULL, '1.0000', '5.7500', '5.7500', '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 (116251, '2022-09-12', 1501, 109710, 6631, NULL, '1.0000', '-0.6640', '-0.6640', '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 (116252, '2022-09-12', 2167, 109711, 6631, NULL, '1.0000', '-1.6257', '-1.6257', '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 (116253, '2022-09-12', 9783, 109712, 6631, 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 (116254, '2022-09-12', 8763, 109713, 6631, NULL, '1.0000', '7.4944', '7.4944', '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 (116255, '2022-09-12', 9831, 109714, 6631, 61498, '1.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116256, '2022-09-12', 1665, 109715, 6631, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116257, '2022-09-12', 2083, 109716, 6631, 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 (116258, '2022-09-12', 2315, 109717, 6631, NULL, '1.0000', '0.7700', '0.7700', '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 (116259, '2022-09-12', 2416, 109718, 6631, 57493, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116260, '2022-09-12', 2237, 109719, 6631, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116261, '2022-09-12', 2617, 109720, 6631, NULL, '3.0000', '-5.4200', '-5.4200', '8.5000', '8.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 (116262, '2022-09-12', 1578, 109721, 6631, 62408, '1.0000', '3.0263', '3.0263', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116263, '2022-09-12', 2277, 109722, 6631, 62419, '1.0000', '0.5402', '0.5402', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116264, '2022-09-12', 9734, 109723, 6631, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '266.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116265, '2022-09-12', 1863, 109724, 6631, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '93.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116266, '2022-09-12', 2380, 109725, 6631, 55679, '1.0000', '47.0967', '47.0967', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116267, '2022-09-12', 2238, 109726, 6631, 55895, '1.0000', '55.5946', '55.5946', '73.0000', '73.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116268, '2022-09-12', 1340, 109727, 6631, NULL, '1.0000', '5.5200', '5.5200', '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 (116269, '2022-09-12', 8065, 109728, 6631, NULL, '1.0000', '32.0000', '32.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 (116270, '2022-09-12', 1843, 109729, 6631, 23164, '14.0000', '6.1258', '6.1258', '6.5000', '6.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 (116271, '2022-09-12', 1871, 109730, 6631, NULL, '10.0000', '-79.1764', '-79.1764', '4.0000', '4.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 (116272, '2022-09-12', 9207, 109731, 6631, NULL, '3.0000', '4.6000', '4.6000', '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 (116273, '2022-09-12', 7328, 109732, 6631, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116274, '2022-09-12', 2289, 109733, 6631, NULL, '2.0000', '0.3611', '0.3611', '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 (116275, '2022-09-12', 9747, 109734, 6631, 62180, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116276, '2022-09-12', 1874, 109735, 6631, NULL, '1.0000', '-4.1000', '-4.1000', '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 (116277, '2022-09-12', 3044, 109736, 6631, NULL, '1.0000', '0.4000', '0.4000', '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 (116278, '2022-09-12', 9747, 109737, 6631, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '78.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116279, '2022-09-12', 9937, 109738, 6632, 56846, '1.0000', '40.0000', '40.0000', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116280, '2022-09-12', 1602, 109739, 6632, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116281, '2022-09-12', 2858, 109740, 6632, NULL, '2.0000', '1.0000', '1.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 (116282, '2022-09-12', 2758, 109741, 6632, 49542, '1.0000', '1.2400', '1.2400', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116283, '2022-09-12', 2384, 109742, 6632, 60032, '10.0000', '0.4392', '0.4392', '0.8000', '0.8000', '45.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116284, '2022-09-12', 1382, 109743, 6632, 52095, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116285, '2022-09-12', 2758, 109744, 6632, 49542, '2.0000', '1.2400', '1.2400', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116286, '2022-09-12', 8208, 109745, 6632, NULL, '4.0000', '33.0000', '33.0000', '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 (116287, '2022-09-12', 7544, 109746, 6632, NULL, '4.0000', '9.4300', '9.4300', '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 (116288, '2022-09-12', 1841, 109747, 6632, 61665, '4.0000', '0.2691', '0.2691', '0.5000', '0.5000', '93.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116289, '2022-09-12', 1572, 109748, 6632, 58815, '1.0000', '1.9861', '1.9861', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116290, '2022-09-12', 2086, 109749, 6632, 61626, '1.0000', '5.0384', '5.0384', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116291, '2022-09-12', 1347, 109750, 6632, 62254, '1.0000', '1.1566', '1.1566', '6.0000', '6.0000', '29.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116292, '2022-09-12', 2237, 109751, 6632, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116293, '2022-09-12', 7745, 109752, 6632, 62217, '1.0000', '8.4200', '8.4200', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116294, '2022-09-12', 9907, 109753, 6632, 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 (116295, '2022-09-12', 9908, 109754, 6632, 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 (116296, '2022-09-12', 2440, 109755, 6633, 59696, '1.0000', '6.9575', '6.9575', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116297, '2022-09-12', 1863, 109756, 6633, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '92.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116298, '2022-09-12', 7802, 109757, 6633, NULL, '3.0000', '1.1497', '1.1497', '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 (116299, '2022-09-12', 7509, 109758, 6633, 39804, '1.0000', '6.6000', '6.6000', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116300, '2022-09-12', 2416, 109759, 6634, 57493, '1.0000', '1.3608', '1.3608', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 498);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116301, '2022-09-12', 7704, 109760, 6634, NULL, '1.0000', '0.4900', '0.4900', '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 (116302, '2022-09-12', 1715, 109761, 6634, 62108, '1.0000', '7.7956', '7.7956', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116303, '2022-09-12', 2916, 109762, 6634, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (116304, '2022-09-12', 2167, 109763, 6634, NULL, '1.0000', '-1.6257', '-1.6257', '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 (116305, '2022-09-12', 9734, 109764, 6634, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '262.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116306, '2022-09-12', 2384, 109765, 6634, NULL, '2.0000', '-5.5392', '-5.5392', '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 (116307, '2022-09-12', 1912, 109766, 6634, NULL, '2.0000', '0.9741', '0.9741', '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 (116308, '2022-09-12', 1409, 109767, 6634, 62429, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116309, '2022-09-12', 2948, 109768, 6634, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '92.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116310, '2022-09-12', 1945, 109769, 6634, 60264, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116311, '2022-09-12', 2506, 109770, 6634, NULL, '1.0000', '-15.8639', '-15.8639', '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 (116312, '2022-09-12', 9151, 109771, 6634, 62169, '1.0000', '11.0800', '11.0800', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116313, '2022-09-12', 2315, 109772, 6634, NULL, '1.0000', '0.7700', '0.7700', '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 (116314, '2022-09-12', 2987, 109773, 6634, 22607, '1.0000', '0.7500', '0.7500', '1.0000', '1.0000', '16.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 (116315, '2022-09-12', 2262, 109774, 6634, 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 (116316, '2022-09-12', 1337, 109775, 6634, 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 (116317, '2022-09-12', 1715, 109776, 6634, 62108, '1.0000', '7.7956', '7.7956', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116318, '2022-09-12', 1863, 109777, 6634, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '90.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116319, '2022-09-12', 1837, 109778, 6634, 62104, '1.0000', '1.1717', '1.1717', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116320, '2022-09-12', 2657, 109779, 6634, 62162, '1.0000', '0.4111', '0.4111', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116321, '2022-09-12', 1841, 109780, 6634, NULL, '2.0000', '0.7630', '0.7630', '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 (116322, '2022-09-12', 9762, 109781, 6634, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '22.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116323, '2022-09-12', 7608, 109782, 6634, NULL, '1.0000', '6.9800', '6.9800', '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 (116324, '2022-09-12', 7472, 109783, 6634, NULL, '1.0000', '-170.6357', '-170.6357', '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 (116325, '2022-09-12', 2109, 109784, 6634, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116326, '2022-09-12', 9539, 109785, 6634, 62391, '1.0000', '27.9000', '27.9000', '37.0000', '37.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116327, '2022-09-12', 2522, 109786, 6634, 59700, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116328, '2022-09-12', 9999, 109787, 6634, 61484, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116329, '2022-09-12', 9831, 109788, 6634, 61498, '1.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116330, '2022-09-12', 9905, 109789, 6634, NULL, '1.0000', '17.0000', '17.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 (116331, '2022-09-12', 9748, 109790, 6634, 57705, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116332, '2022-09-12', 7323, 109791, 6634, 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 (116333, '2022-09-12', 2100, 109792, 6634, NULL, '1.0000', '0.4608', '0.4608', '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 (116334, '2022-09-12', 1306, 109793, 6634, 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 (116335, '2022-09-12', 2088, 109794, 6634, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116336, '2022-09-12', 2916, 109795, 6634, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (116337, '2022-09-12', 2275, 109796, 6634, 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 (116338, '2022-09-12', 1367, 109797, 6634, 18939, '1.0000', '49.2100', '49.2100', '110.0000', '110.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 (116339, '2022-09-12', 8677, 109798, 6634, NULL, '2.0000', '1026.1382', '1026.1382', '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 (116340, '2022-09-12', 2095, 109799, 6634, NULL, '1.0000', '-116.5000', '-116.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 (116341, '2022-09-12', 7666, 109800, 6635, NULL, '1.0000', '3.6000', '3.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 (116342, '2022-09-12', 7412, 109801, 6635, NULL, '2.0000', '1.5200', '1.5200', '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 (116343, '2022-09-12', 8359, 109802, 6635, 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 (116344, '2022-09-12', 2289, 109803, 6635, 2949, '-266.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 (116345, '2022-09-12', 2289, 109803, 6635, NULL, '270.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-270.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116346, '2022-09-12', 7674, 109804, 6635, NULL, '1.0000', '1.3000', '1.3000', '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 (116347, '2022-09-12', 7473, 109805, 6635, NULL, '4.0000', '0.5300', '0.5300', '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 (116348, '2022-09-12', 7743, 109806, 6635, NULL, '1.0000', '1.3100', '1.3100', '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 (116349, '2022-09-12', 8596, 109807, 6635, 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 (116350, '2022-09-12', 7509, 109808, 6635, NULL, '2.0000', '6.5000', '6.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 (116351, '2022-09-12', 7730, 109809, 6635, NULL, '7.0000', '0.1000', '0.1000', '0.2000', '0.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 (116352, '2022-09-12', 8011, 109810, 6635, 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 (116353, '2022-09-12', 2315, 109811, 6635, 2735, '-663.0000', '0.3300', '0.3300', '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 (116354, '2022-09-12', 2315, 109811, 6635, NULL, '665.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-665.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116355, '2022-09-12', 7506, 109812, 6635, NULL, '3.0000', '15.0000', '15.0000', '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 (116356, '2022-09-12', 9951, 109813, 6635, 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 (116357, '2022-09-12', 7799, 109814, 6635, NULL, '1.0000', '6.4000', '6.4000', '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 (116358, '2022-09-12', 7608, 109815, 6635, NULL, '1.0000', '6.9800', '6.9800', '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 (116359, '2022-09-12', 7781, 109816, 6635, NULL, '3.0000', '4.2500', '4.2500', '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 (116360, '2022-09-12', 7674, 109817, 6635, NULL, '1.0000', '1.3000', '1.3000', '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 (116361, '2022-09-12', 7711, 109818, 6635, NULL, '1.0000', '35.6300', '35.6300', '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 (116362, '2022-09-12', 7674, 109819, 6635, NULL, '2.0000', '1.3000', '1.3000', '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 (116363, '2022-09-12', 7444, 109820, 6635, 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 (116364, '2022-09-12', 8878, 109821, 6635, NULL, '1.0000', '6.6700', '6.6700', '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 (116365, '2022-09-12', 7650, 109822, 6635, NULL, '1.0000', '0.8900', '0.8900', '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 (116366, '2022-09-12', 7926, 109823, 6635, 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 (116367, '2022-09-12', 7411, 109824, 6635, NULL, '1.0000', '1.3500', '1.3500', '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 (116368, '2022-09-12', 8359, 109825, 6635, 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 (116369, '2022-09-12', 7872, 109826, 6635, 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 (116370, '2022-09-12', 7638, 109827, 6635, NULL, '1.0000', '12.0000', '12.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 (116371, '2022-09-12', 9855, 109828, 6635, NULL, '1.0000', '28.7100', '28.7100', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116372, '2022-09-12', 8184, 109829, 6635, NULL, '10.0000', '2.4000', '2.4000', '4.0000', '4.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 (116373, '2022-09-12', 8879, 109830, 6635, NULL, '1.0000', '20.9000', '20.9000', '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 (116374, '2022-09-12', 8202, 109831, 6635, NULL, '1.0000', '1.6600', '1.6600', '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 (116375, '2022-09-12', 3044, 109832, 6635, NULL, '1.0000', '0.4000', '0.4000', '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 (116376, '2022-09-12', 7641, 109833, 6635, NULL, '1.0000', '1.9000', '1.9000', '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 (116377, '2022-09-12', 1935, 109834, 6635, 5586, '-200.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 (116378, '2022-09-12', 1935, 109834, 6635, NULL, '201.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-201.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116379, '2022-09-12', 9788, 109835, 6635, 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 (116380, '2022-09-12', 7473, 109836, 6635, NULL, '7.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (116381, '2022-09-12', 7411, 109837, 6635, NULL, '1.0000', '1.3500', '1.3500', '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 (116382, '2022-09-12', 7859, 109838, 6635, NULL, '1.0000', '12.6300', '12.6300', '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 (116383, '2022-09-12', 7350, 109839, 6635, NULL, '2.0000', '30.4000', '30.4000', '44.0000', '44.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 (116384, '2022-09-12', 7482, 109840, 6635, NULL, '1.0000', '3.0500', '3.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 (116385, '2022-09-12', 8208, 109841, 6635, NULL, '2.0000', '33.0000', '33.0000', '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 (116386, '2022-09-12', 7520, 109842, 6635, NULL, '1.0000', '9.6000', '9.6000', '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 (116387, '2022-09-12', 9690, 109843, 6635, NULL, '1.0000', '25.4200', '25.4200', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116388, '2022-09-12', 7473, 109844, 6635, NULL, '10.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (116389, '2022-09-12', 7558, 109845, 6635, NULL, '3.0000', '1.9700', '1.9700', '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 (116390, '2022-09-12', 7703, 109846, 6635, NULL, '2.0000', '22.9900', '22.9900', '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 (116391, '2022-09-12', 7742, 109847, 6635, 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 (116392, '2022-09-12', 7518, 109848, 6635, NULL, '1.0000', '7.8200', '7.8200', '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 (116393, '2022-09-12', 8200, 109849, 6635, NULL, '1.0000', '6.2600', '6.2600', '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 (116394, '2022-09-12', 2315, 109850, 6635, 2735, '-663.0000', '0.3300', '0.3300', '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 (116395, '2022-09-12', 2315, 109850, 6635, NULL, '665.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-665.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116396, '2022-09-12', 7787, 109851, 6635, NULL, '1.0000', '10.9000', '10.9000', '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 (116397, '2022-09-12', 7639, 109852, 6635, 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 (116398, '2022-09-12', 7637, 109853, 6635, NULL, '1.0000', '7.3300', '7.3300', '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 (116399, '2022-09-12', 7674, 109854, 6635, NULL, '2.0000', '1.3000', '1.3000', '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 (116400, '2022-09-12', 2656, 109855, 6635, NULL, '1.0000', '1.5000', '1.5000', '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 (116401, '2022-09-12', 7888, 109856, 6635, NULL, '1.0000', '14.0000', '14.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 (116402, '2022-09-12', 9503, 109857, 6635, NULL, '1.0000', '20.6000', '20.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 (116403, '2022-09-12', 7514, 109858, 6635, NULL, '2.0000', '2.2500', '2.2500', '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 (116404, '2022-09-12', 9620, 109859, 6635, 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 (116405, '2022-09-12', 7518, 109860, 6635, NULL, '1.0000', '7.8200', '7.8200', '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 (116406, '2022-09-12', 8155, 109861, 6635, NULL, '2.0000', '65.0000', '65.0000', '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 (116407, '2022-09-12', 8127, 109862, 6635, NULL, '3.0000', '24.5300', '24.5300', '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 (116408, '2022-09-12', 9984, 109863, 6635, 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 (116409, '2022-09-12', 8810, 109864, 6635, NULL, '1.0000', '1.6000', '1.6000', '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 (116410, '2022-09-12', 2506, 109865, 6635, 16244, '-42.0000', '3.4900', '3.4900', '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 (116411, '2022-09-12', 2506, 109865, 6635, NULL, '43.0000', '3.4900', '3.4900', '6.5000', '6.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 (116412, '2022-09-12', 7715, 109866, 6635, NULL, '1.0000', '1.8900', '1.8900', '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 (116413, '2022-09-12', 9790, 109867, 6635, 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 (116414, '2022-09-12', 7640, 109868, 6635, 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 (116415, '2022-09-12', 9751, 109869, 6635, NULL, '3.0000', '1.0000', '1.0000', '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 (116416, '2022-09-12', 8187, 109870, 6635, NULL, '3.0000', '14.3900', '14.3900', '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 (116417, '2022-09-12', 7672, 109871, 6635, NULL, '2.0000', '1.0200', '1.0200', '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 (116418, '2022-09-12', 7715, 109872, 6635, NULL, '1.0000', '1.8900', '1.8900', '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 (116419, '2022-09-12', 7356, 109873, 6635, NULL, '1.0000', '10.9000', '10.9000', '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 (116420, '2022-09-12', 7674, 109874, 6635, NULL, '1.0000', '1.3000', '1.3000', '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 (116421, '2022-09-12', 7999, 109875, 6635, NULL, '1.0000', '1.7500', '1.7500', '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 (116422, '2022-09-12', 7641, 109876, 6635, NULL, '1.0000', '1.9000', '1.9000', '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 (116423, '2022-09-12', 8172, 109877, 6635, NULL, '1.0000', '40.7000', '40.7000', '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 (116424, '2022-09-12', 7483, 109878, 6635, NULL, '1.0000', '0.4200', '0.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 (116425, '2022-09-12', 7473, 109879, 6635, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116426, '2022-09-12', 8596, 109880, 6635, 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 (116427, '2022-09-12', 1521, 109881, 6636, 62130, '2.0000', '1808.4417', '1808.4417', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116428, '2022-09-12', 1650, 109882, 6636, 62418, '1.0000', '25.0124', '25.0124', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116429, '2022-09-12', 7704, 109883, 6636, NULL, '2.0000', '0.4900', '0.4900', '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 (116430, '2022-09-12', 8677, 109884, 6636, NULL, '2.0000', '1026.1382', '1026.1382', '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 (116431, '2022-09-12', 1557, 109885, 6636, 62155, '1.0000', '8.2500', '8.2500', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116432, '2022-09-12', 1863, 109886, 6636, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '89.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116433, '2022-09-12', 1529, 109887, 6636, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116434, '2022-09-12', 1602, 109888, 6636, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116435, '2022-09-12', 1339, 109889, 6636, 61581, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116436, '2022-09-12', 7514, 109890, 6637, NULL, '2.0000', '2.2500', '2.2500', '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 (116437, '2022-09-12', 7715, 109891, 6637, NULL, '1.0000', '1.8900', '1.8900', '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 (116438, '2022-09-12', 7779, 109892, 6637, NULL, '1.0000', '9.5000', '9.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 (116439, '2022-09-12', 9151, 109893, 6637, NULL, '1.0000', '9.7000', '9.7000', '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 (116440, '2022-09-12', 8657, 109894, 6637, NULL, '1.0000', '6.3900', '6.3900', '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 (116441, '2022-09-12', 7379, 109895, 6637, NULL, '1.0000', '12.5100', '12.5100', '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 (116442, '2022-09-12', 2506, 109896, 6637, 16244, '-43.0000', '3.4900', '3.4900', '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 (116443, '2022-09-12', 2506, 109896, 6637, NULL, '44.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116444, '2022-09-12', 7781, 109897, 6637, NULL, '3.0000', '4.2500', '4.2500', '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 (116445, '2022-09-12', 7952, 109898, 6637, 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 (116446, '2022-09-12', 8746, 109899, 6637, NULL, '1.0000', '3.1500', '3.1500', '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 (116447, '2022-09-12', 8915, 109900, 6637, 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 (116448, '2022-09-12', 2656, 109901, 6637, NULL, '1.0000', '1.5000', '1.5000', '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 (116449, '2022-09-12', 9092, 109902, 6637, NULL, '1.0000', '5.2900', '5.2900', '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 (116450, '2022-09-12', 8254, 109903, 6637, NULL, '1.0000', '25.9000', '25.9000', '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 (116451, '2022-09-12', 2302, 109904, 6638, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116452, '2022-09-12', 9791, 109905, 6639, 62105, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116453, '2022-09-12', 2821, 109906, 6640, NULL, '2.0000', '3.5100', '3.5100', '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 (116454, '2022-09-12', 2169, 109907, 6640, 10737, '-228.0000', '3.8397', '3.8397', '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 (116455, '2022-09-12', 2169, 109907, 6640, NULL, '229.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-229.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116456, '2022-09-12', 2293, 109908, 6640, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.5000', '12.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 (116457, '2022-09-12', 2285, 109909, 6640, 2945, '-57.0000', '35.8000', '35.8000', '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 (116458, '2022-09-12', 2285, 109909, 6640, NULL, '58.0000', '35.8000', '35.8000', '74.0000', '74.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116459, '2022-09-12', 2251, 109910, 6640, 2788, '-36.0000', '10.9700', '10.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 (116460, '2022-09-12', 2251, 109910, 6640, NULL, '37.0000', '10.9700', '10.9700', '20.0000', '20.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116461, '2022-09-12', 9695, 109911, 6640, NULL, '1.0000', '4.5000', '4.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 (116462, '2022-09-12', 2169, 109912, 6640, 10737, '-228.0000', '3.8397', '3.8397', '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 (116463, '2022-09-12', 2169, 109912, 6640, NULL, '229.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-229.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116464, '2022-09-12', 2007, 109913, 6640, 6367, '-2.0000', '15.0000', '15.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 (116465, '2022-09-12', 2007, 109913, 6640, NULL, '3.0000', '15.0000', '15.0000', '18.0000', '18.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 (116466, '2022-09-12', 8444, 109914, 6640, 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 (116467, '2022-09-12', 1330, 109915, 6640, 14393, '-7.0000', '3.7000', '3.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 (116468, '2022-09-12', 1330, 109915, 6640, NULL, '9.0000', '3.7000', '3.7000', '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 (116469, '2022-09-12', 2414, 109916, 6640, 4620, '-33.0000', '3.4000', '3.4000', '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 (116470, '2022-09-12', 2414, 109916, 6640, NULL, '35.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116471, '2022-09-12', 9030, 109917, 6640, NULL, '1.0000', '12.9000', '12.9000', '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 (116472, '2022-09-12', 2348, 109918, 6640, 3851, '-1.0000', '22.0300', '22.0300', '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 (116473, '2022-09-12', 2348, 109918, 6640, NULL, '3.0000', '22.0300', '22.0300', '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 (116474, '2022-09-12', 1687, 109919, 6640, 5785, '-31.0000', '165.9024', '165.9024', '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 (116475, '2022-09-12', 1687, 109919, 6640, NULL, '32.0000', '165.9024', '165.9024', '23.0000', '23.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116476, '2022-09-12', 2959, 109920, 6640, 33063, '1.0000', '4.0000', '4.0000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 238);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116477, '2022-09-12', 1637, 109921, 6640, 3210, '-17.0000', '10.2000', '10.2000', '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 (116478, '2022-09-12', 1637, 109921, 6640, NULL, '18.0000', '10.2000', '10.2000', '20.0000', '20.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 (116479, '2022-09-12', 1368, 109922, 6640, 18648, '-1.0000', '-55.5295', '-55.5295', '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 (116480, '2022-09-12', 1368, 109922, 6640, NULL, '2.0000', '-55.5295', '-55.5295', '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 (116481, '2022-09-12', 1867, 109923, 6640, NULL, '1.0000', '1.0500', '1.0500', '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 (116482, '2022-09-12', 1602, 109924, 6640, 5897, '-181.0000', '6.7859', '6.7859', '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 (116483, '2022-09-12', 1602, 109924, 6640, NULL, '182.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-182.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116484, '2022-09-12', 8638, 109925, 6640, NULL, '1.0000', '0.5100', '0.5100', '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 (116485, '2022-09-12', 8011, 109926, 6640, 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 (116486, '2022-09-12', 2858, 109927, 6640, 17772, '-132.0000', '1.0000', '1.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 (116487, '2022-09-12', 2858, 109927, 6640, NULL, '133.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-133.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116488, '2022-09-12', 1501, 109928, 6640, NULL, '1.0000', '2.0500', '2.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 (116489, '2022-09-12', 1531, 109929, 6640, 22267, '3.0000', '0.9600', '0.9600', '2.0000', '2.0000', '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 (116490, '2022-09-12', 9024, 109930, 6640, NULL, '1.0000', '7.4400', '7.4400', '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 (116491, '2022-09-12', 2346, 109931, 6640, 3849, '-1.0000', '5.5000', '5.5000', '9.5000', '9.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 (116492, '2022-09-12', 2346, 109931, 6640, NULL, '2.0000', '5.5000', '5.5000', '9.5000', '9.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 (116493, '2022-09-12', 2302, 109932, 6640, 2963, '-64.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 (116494, '2022-09-12', 2302, 109932, 6640, NULL, '65.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116495, '2022-09-12', 8638, 109933, 6640, NULL, '1.0000', '0.5100', '0.5100', '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 (116496, '2022-09-12', 1888, 109934, 6640, 14663, '-16.0000', '134.8400', '134.8400', '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 (116497, '2022-09-12', 1888, 109934, 6640, NULL, '17.0000', '134.8400', '134.8400', '27.0000', '27.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 (116498, '2022-09-12', 1843, 109935, 6640, 16249, '-44.0000', '4.3000', '4.3000', '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 (116499, '2022-09-12', 1843, 109935, 6640, NULL, '58.0000', '4.3000', '4.3000', '6.5000', '6.5000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116500, '2022-09-12', 1371, 109936, 6640, 10169, '-15.0000', '5.5000', '5.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 (116501, '2022-09-12', 1371, 109936, 6640, NULL, '16.0000', '5.5000', '5.5000', '10.0000', '10.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 (116502, '2022-09-12', 2069, 109937, 6640, 5571, '-18.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116503, '2022-09-12', 2069, 109937, 6640, NULL, '19.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (116504, '2022-09-12', 1326, 109938, 6640, NULL, '1.0000', '2.7762', '2.7762', '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 (116505, '2022-09-12', 1531, 109939, 6640, 22267, '3.0000', '0.9600', '0.9600', '2.0000', '2.0000', '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 (116506, '2022-09-12', 1602, 109940, 6640, 5897, '-181.0000', '6.7859', '6.7859', '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 (116507, '2022-09-12', 1602, 109940, 6640, NULL, '182.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-182.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116508, '2022-09-12', 9738, 109941, 6640, NULL, '1.0000', '5.9000', '5.9000', '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 (116509, '2022-09-12', 1667, 109942, 6640, 9745, '-66.0000', '5.9400', '5.9400', '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 (116510, '2022-09-12', 1667, 109942, 6640, NULL, '67.0000', '5.9400', '5.9400', '12.0000', '12.0000', '-67.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116511, '2022-09-12', 7411, 109943, 6640, NULL, '4.0000', '1.3500', '1.3500', '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 (116512, '2022-09-12', 10025, 109944, 6640, NULL, '1.0000', '20.0000', '20.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116513, '2022-09-12', 2135, 109945, 6640, 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 (116514, '2022-09-12', 9716, 109946, 6640, NULL, '1.0000', '4.4000', '4.4000', '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 (116515, '2022-09-12', 2924, 109947, 6640, 18775, '-7.0000', '6.3000', '6.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 (116516, '2022-09-12', 2924, 109947, 6640, NULL, '8.0000', '6.3000', '6.3000', '12.5000', '12.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 (116517, '2022-09-12', 9747, 109948, 6640, NULL, '1.0000', '0.6500', '0.6500', '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 (116518, '2022-09-12', 2251, 109949, 6640, 2788, '-36.0000', '10.9700', '10.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 (116519, '2022-09-12', 2251, 109949, 6640, NULL, '37.0000', '10.9700', '10.9700', '20.0000', '20.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116520, '2022-09-12', 2299, 109950, 6640, 22479, '-15.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 (116521, '2022-09-12', 2299, 109950, 6640, NULL, '16.0000', '6.0000', '6.0000', '8.0000', '8.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 (116522, '2022-09-12', 1330, 109951, 6640, 14393, '-7.0000', '3.7000', '3.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 (116523, '2022-09-12', 1330, 109951, 6640, NULL, '8.0000', '3.7000', '3.7000', '4.0000', '4.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 (116524, '2022-09-12', 7411, 109952, 6641, NULL, '1.0000', '1.3500', '1.3500', '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 (116525, '2022-09-12', 1386, 109953, 6641, NULL, '1.0000', '4.5000', '4.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 (116526, '2022-09-12', 8878, 109954, 6642, NULL, '3.0000', '6.6700', '6.6700', '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 (116527, '2022-09-12', 8677, 109955, 6642, NULL, '2.0000', '1.2800', '1.2800', '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 (116528, '2022-09-12', 7859, 109956, 6642, NULL, '1.0000', '12.6300', '12.6300', '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 (116529, '2022-09-12', 7756, 109957, 6642, NULL, '1.0000', '2.5000', '2.5000', '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 (116530, '2022-09-12', 7715, 109958, 6642, NULL, '1.0000', '1.8900', '1.8900', '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 (116531, '2022-09-12', 7689, 109959, 6642, NULL, '1.0000', '9.1000', '9.1000', '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 (116532, '2022-09-12', 8325, 109960, 6642, 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 (116533, '2022-09-12', 8966, 109961, 6642, NULL, '1.0000', '6.8500', '6.8500', '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 (116534, '2022-09-12', 7668, 109962, 6642, NULL, '1.0000', '11.0000', '11.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 (116535, '2022-09-12', 7411, 109963, 6642, NULL, '2.0000', '1.3500', '1.3500', '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 (116536, '2022-09-13', 1767, 109964, 6643, 61569, '1.0000', '5.7685', '5.7685', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116537, '2022-09-13', 1810, 109965, 6643, NULL, '1.0000', '32.9337', '32.9337', '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 (116538, '2022-09-13', 2444, 109966, 6643, NULL, '1.0000', '10.0950', '10.0950', '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 (116539, '2022-09-13', 2657, 109967, 6643, 62162, '1.0000', '0.4111', '0.4111', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116540, '2022-09-13', 1837, 109968, 6643, 62104, '1.0000', '1.1717', '1.1717', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116541, '2022-09-13', 9089, 109969, 6643, 62486, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116542, '2022-09-13', 8746, 109970, 6643, 62476, '1.0000', '3.5829', '3.5829', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116543, '2022-09-13', 1905, 109971, 6643, 62444, '1.0000', '0.5198', '0.5198', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116544, '2022-09-13', 1424, 109972, 6643, 48939, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116545, '2022-09-13', 2643, 109973, 6643, 62478, '1.0000', '1.1080', '1.1080', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116546, '2022-09-13', 1602, 109974, 6643, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116547, '2022-09-13', 9734, 109975, 6643, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '260.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116548, '2022-09-13', 7756, 109976, 6643, NULL, '1.0000', '2.5000', '2.5000', '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 (116549, '2022-09-13', 2339, 109977, 6643, 62421, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116550, '2022-09-13', 2315, 109978, 6643, NULL, '2.0000', '0.7700', '0.7700', '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 (116551, '2022-09-13', 2167, 109979, 6643, NULL, '1.0000', '-1.6257', '-1.6257', '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 (116552, '2022-09-13', 1668, 109980, 6643, 60288, '1.0000', '20.0477', '20.0477', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116553, '2022-09-13', 9737, 109981, 6643, NULL, '1.0000', '1.6000', '1.6000', '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 (116554, '2022-09-13', 7584, 109982, 6643, NULL, '1.0000', '3.1378', '3.1378', '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 (116555, '2022-09-13', 2384, 109983, 6643, NULL, '1.0000', '-5.5392', '-5.5392', '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 (116556, '2022-09-13', 1837, 109984, 6643, 62104, '2.0000', '1.1717', '1.1717', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116557, '2022-09-13', 2068, 109985, 6643, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116558, '2022-09-13', 1427, 109986, 6643, NULL, '1.0000', '14.5000', '14.5000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116559, '2022-09-13', 2441, 109987, 6643, 61256, '1.0000', '12.9756', '12.9756', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116560, '2022-09-13', 2010, 109988, 6643, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116561, '2022-09-13', 1755, 109989, 6643, 62165, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116562, '2022-09-13', 1368, 109990, 6643, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116563, '2022-09-13', 2169, 109991, 6643, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116564, '2022-09-13', 2942, 109992, 6643, 59882, '2.0000', '0.8200', '0.8200', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116565, '2022-09-13', 9866, 109993, 6643, 62111, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116566, '2022-09-13', 2242, 109994, 6643, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116567, '2022-09-13', 2416, 109995, 6643, 62477, '1.0000', '1.3777', '1.3777', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116568, '2022-09-13', 1856, 109996, 6643, NULL, '1.0000', '155.0099', '155.0099', '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 (116569, '2022-09-13', 2806, 109997, 6644, 54832, '1.0000', '6.2500', '6.2500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116570, '2022-09-13', 9700, 109998, 6644, 44154, '1.0000', '8.5000', '8.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116571, '2022-09-13', 2015, 109999, 6644, 54829, '2.0000', '3.9255', '3.9255', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116572, '2022-09-13', 9482, 110000, 6644, NULL, '10.0000', '0.5000', '0.5000', '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 (116573, '2022-09-13', 3025, 110001, 6644, 58059, '1.0000', '2.4395', '2.4395', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116574, '2022-09-13', 9734, 110002, 6644, 62184, '5.0000', '0.4628', '0.4628', '0.7000', '0.7000', '255.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116575, '2022-09-13', 10004, 110003, 6645, 61894, '1.0000', '2.5100', '2.5100', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116576, '2022-09-13', 7335, 110004, 6645, 61840, '1.0000', '16.9000', '16.9000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116577, '2022-09-13', 7886, 110005, 6645, 61876, '1.0000', '4.8599', '4.8599', '7.5000', '7.5000', '10.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116578, '2022-09-13', 8420, 110006, 6645, 31035, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116579, '2022-09-13', 1501, 110007, 6645, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116580, '2022-09-13', 9848, 110008, 6645, 57453, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116581, '2022-09-13', 8243, 110009, 6645, 61802, '1.0000', '1.1400', '1.1400', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116582, '2022-09-13', 7473, 110010, 6645, 61833, '2.0000', '0.5360', '0.5360', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116583, '2022-09-13', 7674, 110011, 6645, 61832, '3.0000', '46.3674', '46.3674', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116584, '2022-09-13', 9620, 110012, 6645, 43084, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116585, '2022-09-13', 9272, 110013, 6645, NULL, '1.0000', '3.1206', '3.1206', '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 (116586, '2022-09-13', 8677, 110014, 6645, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116587, '2022-09-13', 1841, 110015, 6645, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116588, '2022-09-13', 7544, 110016, 6645, NULL, '2.0000', '9.4300', '9.4300', '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 (116589, '2022-09-13', 2289, 110017, 6645, NULL, '2.0000', '4.0652', '4.0652', '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 (116590, '2022-09-13', 8207, 110018, 6645, NULL, '1.0000', '0.0000', '0.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 (116591, '2022-09-13', 7657, 110019, 6645, 61720, '1.0000', '14.7918', '14.7918', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116592, '2022-09-13', 7881, 110020, 6645, 60422, '1.0000', '-9.0457', '-9.0457', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116593, '2022-09-13', 7472, 110021, 6645, 61910, '1.0000', '8.0480', '8.0480', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116594, '2022-09-13', 7632, 110022, 6645, 60139, '1.0000', '12.1047', '12.1047', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116595, '2022-09-13', 7872, 110023, 6645, 62345, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116596, '2022-09-13', 7612, 110024, 6645, NULL, '1.0000', '2.3846', '2.3846', '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 (116597, '2022-09-13', 7675, 110025, 6645, NULL, '1.0000', '-21.9809', '-21.9809', '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 (116598, '2022-09-13', 9695, 110026, 6645, 61792, '1.0000', '5.9153', '5.9153', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116599, '2022-09-13', 7482, 110027, 6645, 61836, '1.0000', '4.7347', '4.7347', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116600, '2022-09-13', 8714, 110028, 6645, 61904, '1.0000', '5.2100', '5.2100', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116601, '2022-09-13', 7473, 110029, 6645, 61833, '5.0000', '0.5360', '0.5360', '0.7000', '0.7000', '45.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116602, '2022-09-13', 2100, 110030, 6646, NULL, '1.0000', '0.4608', '0.4608', '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 (116603, '2022-09-13', 2086, 110031, 6646, 13771, '1.0000', '4.3200', '4.3200', '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 (116604, '2022-09-13', 1306, 110032, 6646, NULL, '5.0000', '2.1000', '2.1000', '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 (116605, '2022-09-13', 8079, 110033, 6646, NULL, '1.0000', '16.6100', '16.6100', '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 (116606, '2022-09-13', 2251, 110034, 6646, 62067, '1.0000', '14.9015', '14.9015', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116607, '2022-09-13', 10004, 110035, 6647, 61894, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116608, '2022-09-13', 1498, 110036, 6648, 52247, '2.0000', '0.3808', '0.3808', '0.7000', '0.7000', '17.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116609, '2022-09-13', 9930, 110037, 6648, 56752, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116610, '2022-09-13', 1863, 110038, 6648, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116611, '2022-09-13', 2821, 110039, 6648, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116612, '2022-09-13', 7756, 110040, 6648, NULL, '1.0000', '26.9296', '26.9296', '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 (116613, '2022-09-13', 2285, 110041, 6648, 61628, '1.0000', '42.5627', '42.5627', '74.0000', '74.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116614, '2022-09-13', 1875, 110042, 6648, 62243, '10.0000', '63.6324', '63.6324', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116615, '2022-09-13', 1689, 110043, 6648, 58637, '1.0000', '14.3061', '14.3061', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116616, '2022-09-13', 2104, 110044, 6648, 29846, '4.0000', '0.2000', '0.2000', '0.5000', '0.5000', '190.0000', 1, 0, NULL, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116617, '2022-09-13', 1840, 110045, 6648, 59955, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116618, '2022-09-13', 1841, 110046, 6648, 61665, '4.0000', '0.2691', '0.2691', '0.5000', '0.5000', '89.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116619, '2022-09-13', 8638, 110047, 6648, 61638, '2.0000', '0.5064', '0.5064', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116620, '2022-09-13', 2413, 110048, 6648, 54395, '5.0000', '1.1122', '1.1122', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116621, '2022-09-13', 7639, 110049, 6648, 61288, '1.0000', '5.8250', '5.8250', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116622, '2022-09-13', 1409, 110050, 6648, 62201, '1.0000', '13.1005', '13.1005', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116623, '2022-09-13', 9940, 110051, 6648, 62499, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '18.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116624, '2022-09-13', 1851, 110052, 6648, 61594, '1.0000', '13.6743', '13.6743', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116625, '2022-09-13', 2821, 110053, 6648, 62202, '1.0000', '3.4415', '3.4415', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116626, '2022-09-13', 1621, 110054, 6648, 57986, '1.0000', '35.3870', '35.3870', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116627, '2022-09-13', 1388, 110055, 6648, 55516, '1.0000', '5.8542', '5.8542', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116628, '2022-09-13', 2293, 110056, 6648, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116629, '2022-09-13', 1935, 110057, 6648, 62237, '1.0000', '1.2091', '1.2091', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116630, '2022-09-13', 1486, 110058, 6648, 44576, '1.0000', '64.0884', '64.0884', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116631, '2022-09-13', 2068, 110059, 6648, 59987, '1.0000', '12.8818', '12.8818', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116632, '2022-09-13', 2656, 110060, 6648, 62496, '1.0000', '1.5895', '1.5895', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116633, '2022-09-13', 9750, 110061, 6648, 46052, '1.0000', '3.3000', '3.3000', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116634, '2022-09-13', 1765, 110062, 6648, 58654, '1.0000', '6.3961', '6.3961', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116635, '2022-09-13', 1383, 110063, 6648, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116636, '2022-09-13', 1499, 110064, 6649, 62139, '2.0000', '0.5090', '0.5090', '0.7000', '0.7000', '35.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116637, '2022-09-13', 1383, 110065, 6649, 62134, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116638, '2022-09-13', 1761, 110066, 6649, 62436, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116639, '2022-09-13', 1528, 110067, 6649, NULL, '2.0000', '900.1354', '900.1354', '8.5000', '8.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 (116640, '2022-09-13', 2821, 110068, 6649, NULL, '1.0000', '3.3676', '3.3676', '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 (116641, '2022-09-13', 2908, 110069, 6649, 55931, '1.0000', '0.3518', '0.3518', '0.5000', '0.5000', '39.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116642, '2022-09-13', 1602, 110070, 6649, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116643, '2022-09-13', 2940, 110071, 6649, 62115, '1.0000', '10.3800', '10.3800', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116644, '2022-09-13', 2315, 110072, 6649, NULL, '1.0000', '0.7700', '0.7700', '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 (116645, '2022-09-13', 2924, 110073, 6649, 62447, '1.0000', '9.0133', '9.0133', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116646, '2022-09-13', 1521, 110074, 6649, 62130, '1.0000', '1808.4417', '1808.4417', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116647, '2022-09-13', 9945, 110075, 6649, NULL, '1.0000', '12.1000', '12.1000', '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 (116648, '2022-09-13', 1702, 110076, 6649, NULL, '1.0000', '-12.4833', '-12.4833', '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 (116649, '2022-09-13', 1863, 110077, 6649, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116650, '2022-09-13', 7406, 110078, 6649, NULL, '1.0000', '2.3750', '2.3750', '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 (116651, '2022-09-13', 1410, 110079, 6649, NULL, '1.0000', '298.0003', '298.0003', '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 (116652, '2022-09-13', 2656, 110080, 6649, 62480, '1.0000', '1.9713', '1.9713', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116653, '2022-09-13', 2315, 110081, 6649, NULL, '2.0000', '0.7700', '0.7700', '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 (116654, '2022-09-13', 9734, 110082, 6649, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '254.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116655, '2022-09-13', 8528, 110083, 6650, NULL, '1.0000', '16.4000', '16.4000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116656, '2022-09-13', 7777, 110084, 6650, NULL, '1.0000', '9.5000', '9.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 (116657, '2022-09-13', 7875, 110085, 6650, NULL, '1.0000', '56.0400', '56.0400', '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 (116658, '2022-09-13', 1912, 110086, 6651, NULL, '1.0000', '0.9741', '0.9741', '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 (116659, '2022-09-13', 1532, 110087, 6651, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116660, '2022-09-13', 8177, 110088, 6651, NULL, '1.0000', '17.2448', '17.2448', '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 (116661, '2022-09-13', 2109, 110089, 6651, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116662, '2022-09-13', 9909, 110090, 6651, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116663, '2022-09-13', 8149, 110091, 6651, 58152, '1.0000', '7.1834', '7.1834', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116664, '2022-09-13', 2948, 110092, 6651, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '91.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116665, '2022-09-13', 2088, 110093, 6651, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116666, '2022-09-13', 2169, 110094, 6651, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116667, '2022-09-13', 8444, 110095, 6651, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116668, '2022-09-13', 2821, 110096, 6651, NULL, '1.0000', '3.3676', '3.3676', '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 (116669, '2022-09-13', 2821, 110097, 6651, NULL, '1.0000', '3.3676', '3.3676', '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 (116670, '2022-09-13', 1450, 110098, 6651, NULL, '10.0000', '0.8483', '0.8483', '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 (116671, '2022-09-13', 2948, 110099, 6651, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '91.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116672, '2022-09-13', 1863, 110100, 6651, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '87.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116673, '2022-09-13', 2135, 110101, 6651, NULL, '1.0000', '-0.2588', '-0.2588', '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 (116674, '2022-09-13', 2315, 110102, 6651, NULL, '1.0000', '0.7700', '0.7700', '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 (116675, '2022-09-13', 8170, 110103, 6652, NULL, '1.0000', '5.7500', '5.7500', '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 (116676, '2022-09-13', 1592, 110104, 6652, 62431, '1.0000', '41.9259', '41.9259', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116677, '2022-09-13', 7777, 110105, 6652, NULL, '1.0000', '9.5000', '9.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 (116678, '2022-09-13', 1487, 110106, 6652, NULL, '1.0000', '1350.3996', '1350.3996', '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 (116679, '2022-09-13', 1314, 110107, 6652, 53233, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116680, '2022-09-13', 9902, 110108, 6653, 62143, '1.0000', '9.0074', '9.0074', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116681, '2022-09-13', 1529, 110109, 6653, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116682, '2022-09-13', 1562, 110110, 6653, NULL, '1.0000', '7.9059', '7.9059', '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 (116683, '2022-09-13', 2346, 110111, 6653, NULL, '1.0000', '2.4743', '2.4743', '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 (116684, '2022-09-13', 1665, 110112, 6653, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116685, '2022-09-13', 1592, 110113, 6653, 62431, '1.0000', '41.9259', '41.9259', '56.0000', '56.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116686, '2022-09-13', 9999, 110114, 6653, 62475, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116687, '2022-09-13', 1812, 110115, 6653, 62185, '1.0000', '9.3485', '9.3485', '12.5000', '12.5000', '14.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116688, '2022-09-13', 7641, 110116, 6654, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (116689, '2022-09-13', 9177, 110117, 6654, 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 (116690, '2022-09-13', 7327, 110118, 6654, NULL, '7.0000', '1.0100', '1.0100', '1.5000', '1.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 (116691, '2022-09-13', 7514, 110119, 6654, NULL, '1.0000', '2.2500', '2.2500', '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 (116692, '2022-09-13', 1338, 110120, 6654, 16502, '-19.0000', '4.0000', '4.0000', '9.5000', '9.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 (116693, '2022-09-13', 1338, 110120, 6654, NULL, '20.0000', '4.0000', '4.0000', '9.5000', '9.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 (116694, '2022-09-13', 9720, 110121, 6654, NULL, '1.0000', '10.6000', '10.6000', '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 (116695, '2022-09-13', 7832, 110122, 6654, NULL, '3.0000', '10.0000', '10.0000', '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 (116696, '2022-09-13', 7852, 110123, 6654, NULL, '1.0000', '15.0000', '15.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 (116697, '2022-09-13', 9791, 110124, 6654, 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 (116698, '2022-09-13', 8359, 110125, 6654, 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 (116699, '2022-09-13', 2289, 110126, 6654, 2949, '-270.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 (116700, '2022-09-13', 2289, 110126, 6654, NULL, '271.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-271.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116701, '2022-09-13', 1310, 110127, 6654, NULL, '1.0000', '0.3700', '0.3700', '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 (116702, '2022-09-13', 7781, 110128, 6654, NULL, '3.0000', '4.2500', '4.2500', '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 (116703, '2022-09-13', 8467, 110129, 6654, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116704, '2022-09-13', 8739, 110130, 6654, NULL, '2.0000', '13.0000', '13.0000', '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 (116705, '2022-09-13', 7756, 110131, 6654, NULL, '1.0000', '2.5000', '2.5000', '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 (116706, '2022-09-13', 1904, 110132, 6654, 5442, '-102.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 (116707, '2022-09-13', 1904, 110132, 6654, NULL, '104.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-104.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116708, '2022-09-13', 8596, 110133, 6654, 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 (116709, '2022-09-13', 7672, 110134, 6654, NULL, '1.0000', '1.0200', '1.0200', '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 (116710, '2022-09-13', 8699, 110135, 6654, NULL, '4.0000', '6.3800', '6.3800', '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 (116711, '2022-09-13', 7513, 110136, 6654, NULL, '1.0000', '7.1000', '7.1000', '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 (116712, '2022-09-13', 8463, 110137, 6654, NULL, '1.0000', '18.0000', '18.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 (116713, '2022-09-13', 7639, 110138, 6654, 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 (116714, '2022-09-13', 7411, 110139, 6654, NULL, '1.0000', '1.3500', '1.3500', '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 (116715, '2022-09-13', 7674, 110140, 6654, NULL, '1.0000', '1.3000', '1.3000', '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 (116716, '2022-09-13', 10004, 110141, 6654, NULL, '2.0000', '2.5100', '2.5100', '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 (116717, '2022-09-13', 9275, 110142, 6654, NULL, '1.0000', '6.3000', '6.3000', '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 (116718, '2022-09-13', 2656, 110143, 6654, NULL, '1.0000', '1.5000', '1.5000', '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 (116719, '2022-09-13', 1904, 110144, 6654, 5442, '-102.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 (116720, '2022-09-13', 1904, 110144, 6654, NULL, '104.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-104.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116721, '2022-09-13', 9508, 110145, 6654, NULL, '1.0000', '3.4000', '3.4000', '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 (116722, '2022-09-13', 8878, 110146, 6654, NULL, '1.0000', '6.6700', '6.6700', '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 (116723, '2022-09-13', 7447, 110147, 6654, NULL, '5.0000', '19.1100', '19.1100', '2.5000', '2.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 (116724, '2022-09-13', 8084, 110148, 6654, NULL, '1.0000', '12.7000', '12.7000', '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 (116725, '2022-09-13', 7806, 110149, 6654, NULL, '5.0000', '1.8000', '1.8000', '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 (116726, '2022-09-13', 9885, 110150, 6654, NULL, '2.0000', '30.0000', '30.0000', '40.0000', '40.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 (116727, '2022-09-13', 8712, 110151, 6654, NULL, '1.0000', '7.0400', '7.0400', '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 (116728, '2022-09-13', 7730, 110152, 6654, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (116729, '2022-09-13', 8127, 110153, 6654, NULL, '2.0000', '24.5300', '24.5300', '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 (116730, '2022-09-13', 1904, 110154, 6654, 5442, '-102.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 (116731, '2022-09-13', 1904, 110154, 6654, NULL, '105.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-105.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116732, '2022-09-13', 7509, 110155, 6654, NULL, '1.0000', '6.5000', '6.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 (116733, '2022-09-13', 7743, 110156, 6654, NULL, '1.0000', '1.3100', '1.3100', '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 (116734, '2022-09-13', 7640, 110157, 6654, 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 (116735, '2022-09-13', 7514, 110158, 6654, NULL, '1.0000', '2.2500', '2.2500', '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 (116736, '2022-09-13', 2287, 110159, 6654, 2947, '-57.0000', '1.8000', '1.8000', '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 (116737, '2022-09-13', 2287, 110159, 6654, NULL, '61.0000', '1.8000', '1.8000', '4.5000', '4.5000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116738, '2022-09-13', 7564, 110160, 6654, 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 (116739, '2022-09-13', 7672, 110161, 6654, NULL, '1.0000', '1.0200', '1.0200', '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 (116740, '2022-09-13', 2315, 110162, 6654, 2735, '-667.0000', '0.3300', '0.3300', '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 (116741, '2022-09-13', 2315, 110162, 6654, NULL, '668.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-668.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116742, '2022-09-13', 8966, 110163, 6654, NULL, '1.0000', '6.8500', '6.8500', '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 (116743, '2022-09-13', 2762, 110164, 6655, NULL, '1.0000', '7.1000', '7.1000', '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 (116744, '2022-09-13', 2169, 110165, 6656, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116745, '2022-09-13', 1874, 110166, 6656, NULL, '1.0000', '-4.1000', '-4.1000', '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 (116746, '2022-09-13', 1590, 110167, 6657, 62189, '3.0000', '2.4695', '2.4695', '3.5000', '3.5000', '242.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116747, '2022-09-13', 1580, 110168, 6657, 62190, '3.0000', '1.4680', '1.4680', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116748, '2022-09-13', 9747, 110169, 6657, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116749, '2022-09-13', 9092, 110170, 6658, NULL, '2.0000', '5.2900', '5.2900', '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 (116750, '2022-09-13', 7954, 110171, 6658, NULL, '2.0000', '3.0000', '3.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 (116751, '2022-09-13', 7672, 110172, 6658, NULL, '1.0000', '1.0200', '1.0200', '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 (116752, '2022-09-13', 7917, 110173, 6658, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116753, '2022-09-13', 9734, 110174, 6658, NULL, '1.0000', '0.3200', '0.3200', '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 (116754, '2022-09-13', 1811, 110175, 6659, 42078, '1.0000', '14.8531', '14.8531', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116755, '2022-09-13', 1562, 110176, 6659, NULL, '1.0000', '7.9059', '7.9059', '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 (116756, '2022-09-13', 2346, 110177, 6659, NULL, '1.0000', '2.4743', '2.4743', '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 (116757, '2022-09-13', 8772, 110178, 6660, 62474, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116758, '2022-09-13', 9808, 110179, 6661, 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 (116759, '2022-09-13', 1867, 110180, 6661, NULL, '1.0000', '6.9656', '6.9656', '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 (116760, '2022-09-13', 2105, 110181, 6661, 61649, '1.0000', '2.1063', '2.1063', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116761, '2022-09-13', 2270, 110182, 6661, 62269, '1.0000', '4.1408', '4.1408', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116762, '2022-09-13', 3025, 110183, 6661, 55003, '1.0000', '2.5811', '2.5811', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116763, '2022-09-13', 2699, 110184, 6661, 60928, '1.0000', '3.2934', '3.2934', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116764, '2022-09-13', 2431, 110185, 6661, 5818, '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 (116765, '2022-09-13', 8208, 110186, 6661, NULL, '10.0000', '33.0000', '33.0000', '0.5000', '0.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 (116766, '2022-09-13', 1450, 110187, 6661, NULL, '10.0000', '0.8255', '0.8255', '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 (116767, '2022-09-13', 1602, 110188, 6661, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116768, '2022-09-13', 7802, 110189, 6661, 52269, '1.0000', '1.3468', '1.3468', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116769, '2022-09-13', 7802, 110189, 6661, NULL, '1.0000', '1.3468', '1.3468', '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 (116770, '2022-09-13', 2693, 110190, 6661, 60021, '1.0000', '24.4717', '24.4717', '32.5000', '32.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116771, '2022-09-13', 9740, 110191, 6661, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116772, '2022-09-13', 1758, 110192, 6661, 3185, '1.0000', '43.5408', '43.5408', '62.5000', '62.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 (116773, '2022-09-13', 2642, 110193, 6661, 60910, '1.0000', '10.3548', '10.3548', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116774, '2022-09-13', 2858, 110194, 6661, 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 (116775, '2022-09-13', 2342, 110195, 6661, 60051, '5.0000', '2.2694', '2.2694', '3.5000', '3.5000', '45.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116776, '2022-09-13', 1912, 110196, 6661, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116777, '2022-09-13', 1602, 110197, 6661, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116778, '2022-09-13', 1912, 110198, 6661, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116779, '2022-09-13', 7743, 110199, 6661, NULL, '1.0000', '1.3100', '1.3100', '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 (116780, '2022-09-13', 9695, 110200, 6661, 61701, '2.0000', '5.7919', '5.7919', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116781, '2022-09-13', 9821, 110201, 6661, 56978, '1.0000', '1.4500', '1.4500', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116782, '2022-09-13', 7385, 110202, 6661, 57945, '1.0000', '2.6553', '2.6553', '4.0000', '4.0000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116783, '2022-09-13', 8933, 110203, 6661, 60917, '1.0000', '9.1447', '9.1447', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116784, '2022-09-13', 1637, 110204, 6661, 55766, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116785, '2022-09-14', 1501, 110205, 6662, NULL, '1.0000', '2.0500', '2.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 (116786, '2022-09-14', 2762, 110206, 6662, NULL, '1.0000', '7.1000', '7.1000', '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 (116787, '2022-09-14', 1650, 110207, 6662, 3221, '-17.0000', '14.8000', '14.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 (116788, '2022-09-14', 1650, 110207, 6662, NULL, '18.0000', '14.8000', '14.8000', '22.5000', '22.5000', '-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 (116789, '2022-09-14', 2069, 110208, 6662, 5571, '-19.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116790, '2022-09-14', 2069, 110208, 6662, NULL, '20.0000', '2.0400', '2.0400', '14.0000', '14.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 (116791, '2022-09-14', 2004, 110209, 6662, 6822, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '33.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 (116792, '2022-09-14', 1532, 110210, 6662, 20609, '2.0000', '0.8000', '0.8000', '2.0000', '2.0000', '34.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 (116793, '2022-09-14', 2169, 110211, 6662, 10737, '-230.0000', '3.8397', '3.8397', '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 (116794, '2022-09-14', 2169, 110211, 6662, NULL, '231.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-231.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116795, '2022-09-14', 7411, 110212, 6662, NULL, '1.0000', '1.3500', '1.3500', '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 (116796, '2022-09-14', 1860, 110213, 6662, 22336, '1.0000', '21.5000', '21.5000', '30.0000', '30.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 (116797, '2022-09-14', 2352, 110214, 6663, NULL, '2.0000', '313.7364', '313.7364', '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 (116798, '2022-09-14', 1885, 110215, 6663, 59621, '1.0000', '6.9875', '6.9875', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116799, '2022-09-14', 2643, 110216, 6663, 62478, '1.0000', '1.1080', '1.1080', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116800, '2022-09-14', 2242, 110217, 6663, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116801, '2022-09-14', 1905, 110218, 6663, 62444, '3.0000', '0.5198', '0.5198', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116802, '2022-09-14', 2410, 110219, 6663, 60269, '1.0000', '4.9430', '4.9430', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116803, '2022-09-14', 1946, 110220, 6663, NULL, '1.0000', '-12.3249', '-12.3249', '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 (116804, '2022-09-14', 9736, 110221, 6663, 62089, '1.0000', '5.2083', '5.2083', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116805, '2022-09-14', 2057, 110222, 6663, 61497, '1.0000', '1.6496', '1.6496', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116806, '2022-09-14', 9878, 110223, 6663, NULL, '1.0000', '9.6000', '9.6000', '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 (116807, '2022-09-14', 1921, 110224, 6663, 62157, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116808, '2022-09-14', 9734, 110225, 6663, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '252.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116809, '2022-09-14', 1863, 110226, 6663, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '85.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116810, '2022-09-14', 1446, 110227, 6663, NULL, '1.0000', '5.3416', '5.3416', '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 (116811, '2022-09-14', 2491, 110228, 6663, NULL, '1.0000', '-73.4000', '-73.4000', '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 (116812, '2022-09-14', 9463, 110229, 6663, NULL, '1.0000', '287.4328', '287.4328', '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 (116813, '2022-09-14', 2169, 110230, 6663, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116814, '2022-09-14', 1863, 110231, 6663, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116815, '2022-09-14', 2169, 110232, 6663, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116816, '2022-09-14', 9734, 110233, 6663, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '251.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116817, '2022-09-14', 1386, 110234, 6663, 62404, '1.0000', '4.7366', '4.7366', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116818, '2022-09-14', 2416, 110235, 6663, 62477, '1.0000', '1.3777', '1.3777', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116819, '2022-09-14', 2169, 110236, 6664, 10737, '-231.0000', '3.8397', '3.8397', '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 (116820, '2022-09-14', 2169, 110236, 6664, NULL, '232.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-232.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116821, '2022-09-14', 2823, 110237, 6664, 19684, '-27.0000', '11.2100', '11.2100', '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 (116822, '2022-09-14', 2823, 110237, 6664, NULL, '28.0000', '11.2100', '11.2100', '10.0000', '10.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 (116823, '2022-09-14', 2655, 110238, 6664, 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 (116824, '2022-09-14', 2004, 110239, 6664, 6822, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '32.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 (116825, '2022-09-14', 2252, 110240, 6664, 2789, '-24.0000', '9.5000', '9.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 (116826, '2022-09-14', 2252, 110240, 6664, NULL, '25.0000', '9.5000', '9.5000', '25.0000', '25.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 (116827, '2022-09-14', 7411, 110241, 6664, NULL, '1.0000', '1.3500', '1.3500', '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 (116828, '2022-09-14', 9856, 110242, 6665, NULL, '1.0000', '-4.4000', '-4.4000', '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 (116829, '2022-09-14', 2411, 110243, 6665, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116830, '2022-09-14', 2169, 110244, 6665, 59849, '2.0000', '1.7455', '1.7455', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116831, '2022-09-14', 1912, 110245, 6665, NULL, '2.0000', '0.9741', '0.9741', '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 (116832, '2022-09-14', 2169, 110246, 6665, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116833, '2022-09-14', 8744, 110247, 6665, 62482, '1.0000', '2.6820', '2.6820', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116834, '2022-09-14', 2070, 110248, 6665, 62158, '1.0000', '2.6913', '2.6913', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116835, '2022-09-14', 1695, 110249, 6666, 12925, '-19.0000', '15.5000', '15.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 (116836, '2022-09-14', 1695, 110249, 6666, NULL, '20.0000', '15.5000', '15.5000', '26.0000', '26.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 (116837, '2022-09-14', 2069, 110250, 6666, 5571, '-20.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116838, '2022-09-14', 2069, 110250, 6666, NULL, '21.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116839, '2022-09-14', 8133, 110251, 6666, NULL, '1.0000', '5.0000', '5.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 (116840, '2022-09-14', 7353, 110252, 6666, NULL, '2.0000', '0.1900', '0.1900', '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 (116841, '2022-09-14', 2237, 110253, 6666, 2781, '-88.0000', '1.0600', '1.0600', '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 (116842, '2022-09-14', 2237, 110253, 6666, NULL, '89.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116843, '2022-09-14', 2959, 110254, 6667, 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 (116844, '2022-09-14', 1602, 110255, 6667, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116845, '2022-09-14', 3020, 110256, 6667, 60239, '1.0000', '11.9900', '11.9900', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116846, '2022-09-14', 1602, 110257, 6667, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116847, '2022-09-14', 8063, 110258, 6668, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '74.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116848, '2022-09-14', 9791, 110259, 6668, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '91.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116849, '2022-09-14', 7514, 110260, 6668, 61871, '3.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116850, '2022-09-14', 7518, 110261, 6668, 61784, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116851, '2022-09-14', 7674, 110262, 6668, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116852, '2022-09-14', 1330, 110263, 6668, 60473, '1.0000', '304.4706', '304.4706', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116853, '2022-09-14', 8878, 110264, 6668, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116854, '2022-09-14', 7412, 110265, 6668, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116855, '2022-09-14', 8063, 110266, 6668, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '74.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116856, '2022-09-14', 8032, 110267, 6668, 61893, '1.0000', '6.9554', '6.9554', '9.5000', '9.5000', '23.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116857, '2022-09-14', 7675, 110268, 6668, NULL, '1.0000', '-21.9809', '-21.9809', '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 (116858, '2022-09-14', 2102, 110269, 6668, NULL, '1.0000', '1.5667', '1.5667', '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 (116859, '2022-09-14', 2100, 110270, 6668, 60117, '1.0000', '2.0800', '2.0800', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116860, '2022-09-14', 8359, 110271, 6668, 62300, '1.0000', '182.7232', '182.7232', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116861, '2022-09-14', 7954, 110272, 6668, 61938, '1.0000', '-133727.7176', '-133727.7176', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116862, '2022-09-14', 9151, 110273, 6668, 62337, '1.0000', '11.2279', '11.2279', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116863, '2022-09-14', 7335, 110274, 6668, 61840, '1.0000', '16.9000', '16.9000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116864, '2022-09-14', 8918, 110275, 6668, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116865, '2022-09-14', 8596, 110276, 6668, NULL, '1.0000', '71.0634', '71.0634', '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 (116866, '2022-09-14', 7588, 110277, 6668, 62306, '1.0000', '8.3895', '8.3895', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116867, '2022-09-14', 9463, 110278, 6668, 61916, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116868, '2022-09-14', 9271, 110279, 6668, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116869, '2022-09-14', 8308, 110280, 6668, NULL, '1.0000', '386.2157', '386.2157', '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 (116870, '2022-09-14', 7316, 110281, 6668, 61704, '1.0000', '0.9268', '0.9268', '1.5000', '1.5000', '79.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116871, '2022-09-14', 8878, 110282, 6668, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116872, '2022-09-14', 7447, 110283, 6668, NULL, '2.0000', '30.5060', '30.5060', '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 (116873, '2022-09-14', 7787, 110284, 6668, 62335, '1.0000', '20.6816', '20.6816', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116874, '2022-09-14', 8918, 110285, 6668, 62303, '10.0000', '1.8469', '1.8469', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116875, '2022-09-14', 9747, 110286, 6668, 60779, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116876, '2022-09-14', 1845, 110287, 6668, 61786, '1.0000', '22.3023', '22.3023', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116877, '2022-09-14', 7447, 110288, 6668, NULL, '8.0000', '30.5060', '30.5060', '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 (116878, '2022-09-14', 2289, 110289, 6668, NULL, '4.0000', '4.0652', '4.0652', '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 (116879, '2022-09-14', 2546, 110290, 6668, 57454, '1.0000', '16.9000', '16.9000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116880, '2022-09-14', 7704, 110291, 6668, NULL, '1.0000', '-1.5625', '-1.5625', '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 (116881, '2022-09-14', 8596, 110292, 6668, NULL, '1.0000', '71.0634', '71.0634', '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 (116882, '2022-09-14', 7442, 110293, 6668, 60399, '1.0000', '11.8000', '11.8000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116883, '2022-09-14', 9971, 110294, 6668, NULL, '1.0000', '5.8300', '5.8300', '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 (116884, '2022-09-14', 2848, 110295, 6668, 56492, '1.0000', '15.5028', '15.5028', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116885, '2022-09-14', 2848, 110295, 6668, NULL, '1.0000', '15.5028', '15.5028', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116886, '2022-09-14', 2602, 110296, 6668, 54442, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116887, '2022-09-14', 7556, 110297, 6668, 60381, '1.0000', '22.2000', '22.2000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116888, '2022-09-14', 8746, 110298, 6668, 57512, '1.0000', '3.2874', '3.2874', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116889, '2022-09-14', 2891, 110299, 6669, 62078, '1.0000', '9.0714', '9.0714', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116890, '2022-09-14', 1528, 110300, 6669, NULL, '1.0000', '900.1354', '900.1354', '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 (116891, '2022-09-14', 1369, 110301, 6669, 62152, '1.0000', '7.6286', '7.6286', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116892, '2022-09-14', 1450, 110302, 6669, NULL, '5.0000', '0.8483', '0.8483', '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 (116893, '2022-09-14', 2656, 110303, 6669, 62480, '1.0000', '1.9713', '1.9713', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116894, '2022-09-14', 8771, 110304, 6669, 61489, '1.0000', '7.0198', '7.0198', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116895, '2022-09-14', 1314, 110305, 6669, 53233, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116896, '2022-09-14', 1935, 110306, 6670, 5586, '-201.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 (116897, '2022-09-14', 1935, 110306, 6670, NULL, '202.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-202.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116898, '2022-09-14', 9822, 110307, 6670, NULL, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116899, '2022-09-14', 2891, 110308, 6671, 62078, '1.0000', '9.0714', '9.0714', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116900, '2022-09-14', 1528, 110309, 6671, NULL, '1.0000', '900.1354', '900.1354', '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 (116901, '2022-09-14', 1369, 110310, 6671, 62152, '1.0000', '7.6286', '7.6286', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116902, '2022-09-14', 1450, 110311, 6671, NULL, '5.0000', '0.8483', '0.8483', '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 (116903, '2022-09-14', 2656, 110312, 6671, 62480, '1.0000', '1.9713', '1.9713', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116904, '2022-09-14', 8771, 110313, 6671, 61489, '1.0000', '7.0198', '7.0198', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116905, '2022-09-14', 1314, 110314, 6671, 53233, '1.0000', '1.5721', '1.5721', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116906, '2022-09-14', 2506, 110315, 6672, NULL, '1.0000', '-15.8639', '-15.8639', '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 (116907, '2022-09-14', 9740, 110316, 6672, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116908, '2022-09-14', 2503, 110317, 6672, 62390, '1.0000', '16.9818', '16.9818', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116909, '2022-09-14', 9539, 110318, 6672, 62391, '1.0000', '27.9000', '27.9000', '37.0000', '37.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116910, '2022-09-14', 2964, 110319, 6672, NULL, '1.0000', '2592.2692', '2592.2692', '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 (116911, '2022-09-14', 9902, 110320, 6672, 62143, '1.0000', '9.0074', '9.0074', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116912, '2022-09-14', 2680, 110321, 6672, 62176, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116913, '2022-09-14', 2169, 110322, 6672, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116914, '2022-09-14', 9814, 110323, 6672, 50254, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116915, '2022-09-14', 2582, 110324, 6672, 62172, '1.0000', '20.5000', '20.5000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116916, '2022-09-14', 1406, 110325, 6672, 34926, '1.0000', '21.3954', '21.3954', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116917, '2022-09-14', 2656, 110326, 6672, 62480, '1.0000', '1.9713', '1.9713', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116918, '2022-09-14', 1663, 110327, 6672, NULL, '1.0000', '125.5500', '125.5500', '143.0000', '143.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116919, '2022-09-14', 9468, 110328, 6672, NULL, '1.0000', '22.0000', '22.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 (116920, '2022-09-14', 2233, 110329, 6672, 62173, '1.0000', '26.7472', '26.7472', '44.0000', '44.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116921, '2022-09-14', 3057, 110330, 6672, 51479, '2.0000', '2.8440', '2.8440', '4.5000', '4.5000', '14.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116922, '2022-09-14', 9979, 110331, 6672, NULL, '1.0000', '13.9000', '13.9000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116923, '2022-09-14', 2247, 110332, 6672, 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 (116924, '2022-09-14', 7612, 110333, 6672, 62446, '2.0000', '5.5300', '5.5300', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116925, '2022-09-14', 9728, 110334, 6672, 47072, '1.0000', '5.4000', '5.4000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116926, '2022-09-14', 2169, 110335, 6672, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116927, '2022-09-14', 1863, 110336, 6672, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116928, '2022-09-14', 2169, 110337, 6672, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116929, '2022-09-14', 1580, 110338, 6672, 62190, '3.0000', '1.4680', '1.4680', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116930, '2022-09-14', 1499, 110339, 6672, 62139, '2.0000', '0.5090', '0.5090', '0.7000', '0.7000', '33.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116931, '2022-09-14', 2491, 110340, 6672, NULL, '1.0000', '-73.4000', '-73.4000', '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 (116932, '2022-09-14', 7628, 110341, 6672, NULL, '2.0000', '2.9100', '2.9100', '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 (116933, '2022-09-14', 1446, 110342, 6672, NULL, '1.0000', '5.3416', '5.3416', '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 (116934, '2022-09-14', 2088, 110343, 6672, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116935, '2022-09-14', 9751, 110344, 6672, 59707, '1.0000', '1.1935', '1.1935', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116936, '2022-09-14', 7376, 110345, 6672, NULL, '2.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116937, '2022-09-14', 1925, 110346, 6672, 61553, '3.0000', '1.9127', '1.9127', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116938, '2022-09-14', 1478, 110347, 6672, 59902, '1.0000', '27.0201', '27.0201', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116939, '2022-09-14', 2416, 110348, 6672, 62477, '1.0000', '1.3777', '1.3777', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116940, '2022-09-14', 2061, 110349, 6672, NULL, '1.0000', '-13.2193', '-13.2193', '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 (116941, '2022-09-14', 2315, 110350, 6672, NULL, '1.0000', '0.7700', '0.7700', '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 (116942, '2022-09-14', 1812, 110351, 6672, 62185, '2.0000', '9.3485', '9.3485', '12.5000', '12.5000', '12.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116943, '2022-09-14', 2302, 110352, 6672, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116944, '2022-09-14', 7524, 110353, 6672, NULL, '2.0000', '11.9500', '11.9500', '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 (116945, '2022-09-14', 1772, 110354, 6672, 62187, '2.0000', '5.9758', '5.9758', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116946, '2022-09-14', 9909, 110355, 6672, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116947, '2022-09-14', 1863, 110356, 6672, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116948, '2022-09-14', 7558, 110357, 6672, NULL, '10.0000', '-37.0255', '-37.0255', '4.0000', '4.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 (116949, '2022-09-14', 8595, 110358, 6672, NULL, '1.0000', '-3.2120', '-3.2120', '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 (116950, '2022-09-14', 7591, 110359, 6672, NULL, '1.0000', '2.7500', '2.7500', '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 (116951, '2022-09-14', 1628, 110360, 6672, 61561, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116952, '2022-09-14', 7565, 110361, 6672, NULL, '1.0000', '0.2000', '0.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 (116953, '2022-09-14', 2167, 110362, 6672, NULL, '1.0000', '-1.6257', '-1.6257', '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 (116954, '2022-09-14', 1863, 110363, 6672, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116955, '2022-09-14', 7491, 110364, 6672, NULL, '1.0000', '4.8000', '4.8000', '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 (116956, '2022-09-14', 1446, 110365, 6672, NULL, '1.0000', '5.3416', '5.3416', '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 (116957, '2022-09-14', 9945, 110366, 6672, NULL, '1.0000', '12.1000', '12.1000', '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 (116958, '2022-09-14', 1602, 110367, 6672, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116959, '2022-09-14', 1912, 110368, 6672, NULL, '1.0000', '0.9741', '0.9741', '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 (116960, '2022-09-14', 1863, 110369, 6672, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116961, '2022-09-14', 2169, 110370, 6672, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116962, '2022-09-14', 8955, 110371, 6672, 59652, '1.0000', '18.0000', '18.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116963, '2022-09-14', 2656, 110372, 6672, 62480, '1.0000', '1.9713', '1.9713', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116964, '2022-09-14', 2169, 110373, 6672, 59849, '2.0000', '1.7455', '1.7455', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116965, '2022-09-14', 7690, 110374, 6673, NULL, '2.0000', '18.2800', '18.2800', '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 (116966, '2022-09-14', 7709, 110375, 6673, 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 (116967, '2022-09-14', 3044, 110376, 6673, NULL, '1.0000', '0.4000', '0.4000', '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 (116968, '2022-09-14', 7899, 110377, 6674, NULL, '1.0000', '3.3000', '3.3000', '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 (116969, '2022-09-14', 8718, 110378, 6674, NULL, '1.0000', '11.2000', '11.2000', '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 (116970, '2022-09-14', 7483, 110379, 6674, NULL, '3.0000', '0.4200', '0.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 (116971, '2022-09-14', 7527, 110380, 6674, NULL, '1.0000', '0.8900', '0.8900', '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 (116972, '2022-09-14', 7672, 110381, 6674, NULL, '1.0000', '1.0200', '1.0200', '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 (116973, '2022-09-14', 8925, 110382, 6674, NULL, '1.0000', '2.4000', '2.4000', '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 (116974, '2022-09-14', 9685, 110383, 6674, NULL, '1.0000', '34.6600', '34.6600', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116975, '2022-09-14', 7411, 110384, 6674, NULL, '1.0000', '1.3500', '1.3500', '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 (116976, '2022-09-14', 7894, 110385, 6674, NULL, '1.0000', '3.8000', '3.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 (116977, '2022-09-14', 7444, 110386, 6674, 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 (116978, '2022-09-14', 7412, 110387, 6674, NULL, '1.0000', '1.5200', '1.5200', '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 (116979, '2022-09-14', 2284, 110388, 6674, 20597, '1.0000', '1.3000', '1.3000', '2.0000', '2.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 (116980, '2022-09-14', 7674, 110389, 6674, NULL, '1.0000', '1.3000', '1.3000', '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 (116981, '2022-09-14', 9971, 110390, 6674, NULL, '1.0000', '5.8300', '5.8300', '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 (116982, '2022-09-14', 9695, 110391, 6674, NULL, '3.0000', '4.5000', '4.5000', '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 (116983, '2022-09-14', 7385, 110392, 6674, NULL, '3.0000', '2.0000', '2.0000', '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 (116984, '2022-09-14', 9958, 110393, 6674, NULL, '1.0000', '7.8000', '7.8000', '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 (116985, '2022-09-14', 9088, 110394, 6674, NULL, '2.0000', '15.4000', '15.4000', '22.5000', '22.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 (116986, '2022-09-14', 9791, 110395, 6674, NULL, '2.0000', '0.9000', '0.9000', '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 (116987, '2022-09-14', 9729, 110396, 6674, NULL, '1.0000', '0.6200', '0.6200', '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 (116988, '2022-09-14', 9275, 110397, 6674, NULL, '2.0000', '6.3000', '6.3000', '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 (116989, '2022-09-14', 9092, 110398, 6674, NULL, '4.0000', '5.2900', '5.2900', '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 (116990, '2022-09-14', 7482, 110399, 6674, NULL, '1.0000', '3.0500', '3.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 (116991, '2022-09-14', 7917, 110400, 6674, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116992, '2022-09-14', 2295, 110401, 6674, 2954, '-73.0000', '0.9600', '0.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 (116993, '2022-09-14', 2295, 110401, 6674, NULL, '76.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116994, '2022-09-14', 7621, 110402, 6674, NULL, '1.0000', '5.9000', '5.9000', '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 (116995, '2022-09-14', 7518, 110403, 6674, NULL, '1.0000', '7.8200', '7.8200', '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 (116996, '2022-09-14', 7411, 110404, 6674, NULL, '1.0000', '1.3500', '1.3500', '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 (116997, '2022-09-14', 9391, 110405, 6674, 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 (116998, '2022-09-14', 10004, 110406, 6674, NULL, '1.0000', '2.5100', '2.5100', '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 (116999, '2022-09-14', 7675, 110407, 6674, NULL, '1.0000', '11.4300', '11.4300', '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 (117000, '2022-09-14', 7514, 110408, 6674, NULL, '1.0000', '2.2500', '2.2500', '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 (117001, '2022-09-14', 7636, 110409, 6674, NULL, '2.0000', '2.5000', '2.5000', '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 (117002, '2022-09-14', 1501, 110410, 6674, NULL, '1.0000', '2.0500', '2.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 (117003, '2022-09-14', 1760, 110411, 6674, 93, '1.0000', '111.8384', '111.8384', '1.0000', '1.0000', '0.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 (117004, '2022-09-14', 1760, 110411, 6674, NULL, '2.0000', '111.8384', '111.8384', '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 (117005, '2022-09-14', 8187, 110412, 6674, NULL, '3.0000', '14.3900', '14.3900', '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 (117006, '2022-09-14', 7765, 110413, 6674, NULL, '3.0000', '16.0000', '16.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 (117007, '2022-09-14', 9620, 110414, 6674, 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 (117008, '2022-09-14', 9724, 110415, 6674, NULL, '1.0000', '20.3000', '20.3000', '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 (117009, '2022-09-14', 9734, 110416, 6674, NULL, '1.0000', '0.3200', '0.3200', '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 (117010, '2022-09-14', 8566, 110417, 6674, NULL, '1.0000', '11.0000', '11.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 (117011, '2022-09-14', 7674, 110418, 6674, NULL, '1.0000', '1.3000', '1.3000', '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 (117012, '2022-09-14', 9956, 110419, 6675, NULL, '1.0000', '15.5000', '15.5000', '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 (117013, '2022-09-14', 7509, 110420, 6675, NULL, '1.0000', '6.5000', '6.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 (117014, '2022-09-14', 7872, 110421, 6675, 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 (117015, '2022-09-14', 10019, 110422, 6675, NULL, '1.0000', '2.8900', '2.8900', '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 (117016, '2022-09-14', 2105, 110423, 6675, NULL, '1.0000', '1.3500', '1.3500', '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 (117017, '2022-09-14', 7774, 110424, 6675, NULL, '1.0000', '3.3000', '3.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 (117018, '2022-09-14', 1420, 110425, 6675, NULL, '1.0000', '1.2000', '1.2000', '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 (117019, '2022-09-14', 9399, 110426, 6675, NULL, '1.0000', '0.9800', '0.9800', '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 (117020, '2022-09-14', 9791, 110427, 6675, NULL, '2.0000', '0.9000', '0.9000', '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 (117021, '2022-09-14', 7483, 110428, 6675, 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 (117022, '2022-09-14', 7411, 110429, 6675, NULL, '1.0000', '1.3500', '1.3500', '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 (117023, '2022-09-14', 7373, 110430, 6675, NULL, '1.0000', '17.0000', '17.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 (117024, '2022-09-14', 1432, 110431, 6676, 61596, '1.0000', '11.7590', '11.7590', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117025, '2022-09-14', 8758, 110432, 6676, 60514, '1.0000', '10.7015', '10.7015', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117026, '2022-09-14', 9204, 110433, 6676, NULL, '1.0000', '8.1600', '8.1600', '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 (117027, '2022-09-14', 8773, 110434, 6676, NULL, '1.0000', '-92.4961', '-92.4961', '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 (117028, '2022-09-14', 2416, 110435, 6676, 62498, '1.0000', '1.3450', '1.3450', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117029, '2022-09-14', 2169, 110436, 6676, 62205, '2.0000', '1.4279', '1.4279', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117030, '2022-09-14', 7564, 110437, 6676, NULL, '1.0000', '0.6400', '0.6400', '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 (117031, '2022-09-14', 1620, 110438, 6676, 62200, '1.0000', '2.3342', '2.3342', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117032, '2022-09-14', 8767, 110439, 6676, 58005, '1.0000', '8.6300', '8.6300', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117033, '2022-09-14', 9089, 110440, 6676, 60921, '2.0000', '5.4520', '5.4520', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117034, '2022-09-14', 2682, 110441, 6676, 62218, '1.0000', '16.5000', '16.5000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117035, '2022-09-14', 7591, 110442, 6676, 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 (117036, '2022-09-14', 9695, 110443, 6676, 61701, '1.0000', '5.7919', '5.7919', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117037, '2022-09-14', 1620, 110444, 6676, 62200, '3.0000', '2.3342', '2.3342', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117038, '2022-09-14', 1620, 110444, 6676, 61622, '1.0000', '2.3342', '2.3342', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117039, '2022-09-14', 2169, 110445, 6676, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117040, '2022-09-14', 7639, 110446, 6676, 61288, '1.0000', '5.8250', '5.8250', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117041, '2022-09-14', 2380, 110447, 6676, 56885, '2.0000', '45.1378', '45.1378', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117042, '2022-09-14', 1916, 110448, 6676, 58812, '1.0000', '9.5467', '9.5467', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117043, '2022-09-14', 9734, 110449, 6677, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '248.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117044, '2022-09-14', 2948, 110450, 6677, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '88.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117045, '2022-09-14', 2921, 110451, 6677, 62125, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117046, '2022-09-14', 8638, 110452, 6677, NULL, '1.0000', '0.5254', '0.5254', '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 (117047, '2022-09-14', 9729, 110453, 6677, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117048, '2022-09-14', 1863, 110454, 6677, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117049, '2022-09-14', 1505, 110455, 6677, 60303, '1.0000', '107.0915', '107.0915', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117050, '2022-09-14', 1863, 110456, 6677, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117051, '2022-09-14', 2948, 110457, 6677, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '89.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117052, '2022-09-14', 1812, 110458, 6677, 62185, '1.0000', '9.3485', '9.3485', '12.5000', '12.5000', '11.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117053, '2022-09-14', 2384, 110459, 6677, NULL, '1.0000', '-5.5392', '-5.5392', '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 (117054, '2022-09-14', 1529, 110460, 6677, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117055, '2022-09-14', 2327, 110461, 6677, 39828, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '40.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117056, '2022-09-14', 2293, 110462, 6677, NULL, '3.0000', '-17.4320', '-17.4320', '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 (117057, '2022-09-14', 1837, 110463, 6677, 62104, '20.0000', '1.1717', '1.1717', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117058, '2022-09-14', 2237, 110464, 6677, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117059, '2022-09-14', 1339, 110465, 6677, 60346, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117060, '2022-09-14', 1674, 110466, 6677, 62110, '1.0000', '5.0303', '5.0303', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117061, '2022-09-14', 2948, 110467, 6677, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '89.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117062, '2022-09-14', 9734, 110468, 6677, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '246.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117063, '2022-09-14', 1863, 110469, 6677, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117064, '2022-09-14', 9633, 110470, 6677, 61578, '2.0000', '7.9117', '7.9117', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117065, '2022-09-14', 7612, 110471, 6677, 62446, '2.0000', '5.5300', '5.5300', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117066, '2022-09-15', 7715, 110472, 6678, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '22.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117067, '2022-09-15', 8444, 110473, 6678, 55973, '1.0000', '-37.8763', '-37.8763', '3.0000', '3.0000', '86.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117068, '2022-09-15', 8187, 110474, 6678, 61864, '4.0000', '-28.2100', '-28.2100', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117069, '2022-09-15', 8456, 110475, 6678, 61937, '1.0000', '8.6291', '8.6291', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117070, '2022-09-15', 9231, 110476, 6678, 57451, '1.0000', '12.9000', '12.9000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117071, '2022-09-15', 7641, 110477, 6678, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '37.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117072, '2022-09-15', 8011, 110478, 6678, NULL, '1.0000', '7.5500', '7.5500', '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 (117073, '2022-09-15', 7959, 110479, 6678, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '3.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117074, '2022-09-15', 8677, 110480, 6678, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117075, '2022-09-15', 9272, 110481, 6678, NULL, '1.0000', '3.1206', '3.1206', '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 (117076, '2022-09-15', 8053, 110482, 6678, 61715, '2.0000', '1.4542', '1.4542', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117077, '2022-09-15', 8810, 110483, 6678, 61847, '1.0000', '5.7535', '5.7535', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117078, '2022-09-15', 8063, 110484, 6678, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '72.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117079, '2022-09-15', 8154, 110485, 6678, NULL, '3.0000', '12.3000', '12.3000', '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 (117080, '2022-09-15', 2506, 110486, 6678, 61907, '1.0000', '4.6900', '4.6900', '6.5000', '6.5000', '12.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117081, '2022-09-15', 9911, 110487, 6678, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117082, '2022-09-15', 10019, 110488, 6678, 61957, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117083, '2022-09-15', 7429, 110489, 6678, NULL, '1.0000', '3.8156', '3.8156', '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 (117084, '2022-09-15', 8485, 110490, 6678, NULL, '1.0000', '6.0600', '6.0600', '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 (117085, '2022-09-15', 7612, 110491, 6678, NULL, '1.0000', '2.3846', '2.3846', '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 (117086, '2022-09-15', 7514, 110492, 6678, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117087, '2022-09-15', 7980, 110493, 6678, NULL, '10.0000', '21379.0542', '21379.0542', '0.9000', '0.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 (117088, '2022-09-15', 9747, 110494, 6678, 60779, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117089, '2022-09-15', 8017, 110495, 6678, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117090, '2022-09-15', 7836, 110496, 6678, NULL, '1.0000', '-38.3200', '-38.3200', '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 (117091, '2022-09-15', 7819, 110497, 6678, 62301, '1.0000', '12.8837', '12.8837', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117092, '2022-09-15', 7674, 110498, 6678, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117093, '2022-09-15', 7412, 110499, 6678, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117094, '2022-09-15', 7431, 110500, 6678, 61854, '1.0000', '-12.4376', '-12.4376', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117095, '2022-09-15', 9001, 110501, 6679, 61813, '1.0000', '30.2896', '30.2896', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117096, '2022-09-15', 10004, 110502, 6679, 61894, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117097, '2022-09-15', 3025, 110503, 6680, 58059, '1.0000', '2.4395', '2.4395', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117098, '2022-09-15', 1912, 110504, 6680, NULL, '1.0000', '0.9741', '0.9741', '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 (117099, '2022-09-15', 2352, 110505, 6680, NULL, '2.0000', '313.7364', '313.7364', '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 (117100, '2022-09-15', 1839, 110506, 6680, NULL, '1.0000', '-718359.7051', '-718359.7051', '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 (117101, '2022-09-15', 2020, 110507, 6680, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (117102, '2022-09-15', 1339, 110508, 6680, 60346, '1.0000', '2.2855', '2.2855', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117103, '2022-09-15', 2522, 110509, 6680, 59700, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117104, '2022-09-15', 2237, 110510, 6680, 62137, '2.0000', '1.2800', '1.2800', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117105, '2022-09-15', 3016, 110511, 6680, 57723, '1.0000', '13.9139', '13.9139', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117106, '2022-09-15', 1837, 110512, 6680, 62104, '3.0000', '1.1717', '1.1717', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117107, '2022-09-15', 1822, 110513, 6680, 59618, '1.0000', '2.8001', '2.8001', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117108, '2022-09-15', 9177, 110514, 6680, 50249, '5.0000', '0.8600', '0.8600', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117109, '2022-09-15', 9177, 110514, 6680, 39826, '5.0000', '0.8600', '0.8600', '1.2000', '1.2000', '22.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117110, '2022-09-15', 1580, 110515, 6680, 62190, '3.0000', '1.4680', '1.4680', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117111, '2022-09-15', 1670, 110516, 6680, NULL, '1.0000', '-35.9534', '-35.9534', '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 (117112, '2022-09-15', 1837, 110517, 6680, 62104, '2.0000', '1.1717', '1.1717', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117113, '2022-09-15', 1347, 110518, 6680, 57726, '3.0000', '4.0941', '4.0941', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117114, '2022-09-15', 1905, 110519, 6680, 62444, '1.0000', '0.5198', '0.5198', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117115, '2022-09-15', 2643, 110520, 6680, 62478, '1.0000', '1.1080', '1.1080', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117116, '2022-09-15', 1501, 110521, 6680, NULL, '1.0000', '-0.6640', '-0.6640', '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 (117117, '2022-09-15', 7801, 110522, 6680, NULL, '2.0000', '3.0000', '3.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 (117118, '2022-09-15', 7411, 110523, 6680, NULL, '2.0000', '1.2819', '1.2819', '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 (117119, '2022-09-15', 2109, 110524, 6680, 62179, '2.0000', '1.4840', '1.4840', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117120, '2022-09-15', 9747, 110525, 6680, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117121, '2022-09-15', 9824, 110526, 6680, NULL, '1.0000', '1.3000', '1.3000', '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 (117122, '2022-09-15', 8878, 110527, 6680, NULL, '1.0000', '14.9442', '14.9442', '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 (117123, '2022-09-15', 2237, 110528, 6680, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117124, '2022-09-15', 9840, 110529, 6680, 62133, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117125, '2022-09-15', 1528, 110530, 6680, NULL, '2.0000', '900.1354', '900.1354', '8.5000', '8.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 (117126, '2022-09-15', 9827, 110531, 6680, 62370, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117127, '2022-09-15', 1825, 110532, 6680, 62441, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117128, '2022-09-15', 2302, 110533, 6680, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117129, '2022-09-15', 1772, 110534, 6680, 62187, '2.0000', '5.9758', '5.9758', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117130, '2022-09-15', 2302, 110535, 6680, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117131, '2022-09-15', 1746, 110536, 6680, 59870, '1.0000', '5.0901', '5.0901', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117132, '2022-09-15', 1545, 110537, 6680, 55529, '1.0000', '6.7700', '6.7700', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117133, '2022-09-15', 2627, 110538, 6680, 62409, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117134, '2022-09-15', 2414, 110539, 6680, NULL, '2.0000', '-1.2752', '-1.2752', '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 (117135, '2022-09-15', 8773, 110540, 6680, 62483, '1.0000', '4.0100', '4.0100', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117136, '2022-09-15', 8773, 110541, 6680, 62483, '1.0000', '4.0100', '4.0100', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117137, '2022-09-15', 1310, 110542, 6680, 60260, '7.0000', '0.4100', '0.4100', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117138, '2022-09-15', 2285, 110543, 6680, NULL, '1.0000', '-159.5389', '-159.5389', '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 (117139, '2022-09-15', 1671, 110544, 6680, 39833, '2.0000', '103.6357', '103.6357', '82.0000', '82.0000', '26.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117140, '2022-09-15', 1875, 110545, 6680, 62376, '10.0000', '2.7455', '2.7455', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117141, '2022-09-15', 2903, 110546, 6680, 23154, '1.0000', '32.0000', '32.0000', '44.0000', '44.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 (117142, '2022-09-15', 2416, 110547, 6680, 62477, '1.0000', '1.3777', '1.3777', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117143, '2022-09-15', 2167, 110548, 6680, NULL, '1.0000', '-1.6257', '-1.6257', '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 (117144, '2022-09-15', 2352, 110549, 6680, NULL, '10.0000', '313.7364', '313.7364', '4.0000', '4.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 (117145, '2022-09-15', 1741, 110550, 6681, 56425, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117146, '2022-09-15', 7548, 110551, 6681, NULL, '1.0000', '0.3400', '0.3400', '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 (117147, '2022-09-15', 2582, 110552, 6681, NULL, '1.0000', '20.5000', '20.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 (117148, '2022-09-15', 1602, 110553, 6681, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117149, '2022-09-15', 1863, 110554, 6681, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117150, '2022-09-15', 9740, 110555, 6681, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117151, '2022-09-15', 1863, 110556, 6681, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117152, '2022-09-15', 2384, 110557, 6681, NULL, '5.0000', '-5.5392', '-5.5392', '0.8000', '0.8000', '-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 (117153, '2022-09-15', 1602, 110558, 6681, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117154, '2022-09-15', 9956, 110559, 6681, 61551, '1.0000', '15.9500', '15.9500', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117155, '2022-09-15', 1871, 110560, 6681, NULL, '10.0000', '-79.1764', '-79.1764', '4.0000', '4.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 (117156, '2022-09-15', 7756, 110561, 6681, NULL, '1.0000', '2.5000', '2.5000', '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 (117157, '2022-09-15', 2656, 110562, 6681, 62480, '3.0000', '1.9713', '1.9713', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117158, '2022-09-15', 8775, 110563, 6681, 61490, '2.0000', '2.3129', '2.3129', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117159, '2022-09-15', 2299, 110564, 6681, 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 (117160, '2022-09-15', 1501, 110565, 6681, NULL, '1.0000', '-0.6640', '-0.6640', '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 (117161, '2022-09-15', 1945, 110566, 6681, 60264, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117162, '2022-09-15', 1501, 110567, 6681, NULL, '1.0000', '-0.6640', '-0.6640', '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 (117163, '2022-09-15', 2656, 110568, 6681, 62480, '1.0000', '1.9713', '1.9713', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117164, '2022-09-15', 2384, 110569, 6681, NULL, '2.0000', '-5.5392', '-5.5392', '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 (117165, '2022-09-15', 2020, 110570, 6681, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (117166, '2022-09-15', 1871, 110571, 6681, NULL, '12.0000', '-79.1764', '-79.1764', '4.0000', '4.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 (117167, '2022-09-15', 9776, 110572, 6681, 57721, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117168, '2022-09-15', 9898, 110573, 6681, 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 (117169, '2022-09-15', 2289, 110574, 6681, NULL, '3.0000', '0.3611', '0.3611', '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 (117170, '2022-09-15', 9985, 110575, 6681, 60245, '1.0000', '5.8000', '5.8000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117171, '2022-09-15', 2315, 110576, 6681, 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 (117172, '2022-09-15', 9747, 110577, 6681, 62180, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117173, '2022-09-15', 2617, 110578, 6681, NULL, '1.0000', '-5.4200', '-5.4200', '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 (117174, '2022-09-15', 2250, 110579, 6681, 61562, '1.0000', '9.1988', '9.1988', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117175, '2022-09-15', 1592, 110580, 6681, 59604, '1.0000', '41.9259', '41.9259', '56.0000', '56.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117176, '2022-09-15', 7637, 110581, 6681, NULL, '1.0000', '5.0000', '5.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 (117177, '2022-09-15', 2491, 110582, 6681, NULL, '1.0000', '-73.4000', '-73.4000', '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 (117178, '2022-09-15', 8011, 110583, 6681, NULL, '1.0000', '0.9500', '0.9500', '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 (117179, '2022-09-15', 2296, 110584, 6681, 55720, '1.0000', '16.0300', '16.0300', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117180, '2022-09-15', 1340, 110585, 6681, NULL, '1.0000', '5.5200', '5.5200', '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 (117181, '2022-09-15', 2240, 110586, 6681, 57776, '1.0000', '41.2979', '41.2979', '53.0000', '53.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117182, '2022-09-15', 2497, 110587, 6681, NULL, '1.0000', '34.0000', '34.0000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117183, '2022-09-15', 1562, 110588, 6681, NULL, '1.0000', '7.9059', '7.9059', '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 (117184, '2022-09-15', 7472, 110589, 6681, NULL, '1.0000', '-170.6357', '-170.6357', '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 (117185, '2022-09-15', 2642, 110590, 6681, 61475, '1.0000', '8.2025', '8.2025', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117186, '2022-09-15', 2250, 110591, 6681, 61562, '1.0000', '9.1988', '9.1988', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117187, '2022-09-15', 2357, 110592, 6681, 62427, '1.0000', '4.2955', '4.2955', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117188, '2022-09-15', 7541, 110593, 6681, NULL, '4.0000', '3.3000', '3.3000', '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 (117189, '2022-09-15', 1841, 110594, 6681, NULL, '2.0000', '0.7630', '0.7630', '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 (117190, '2022-09-15', 9388, 110595, 6681, 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 (117191, '2022-09-15', 9388, 110596, 6681, 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 (117192, '2022-09-15', 2824, 110597, 6681, 58056, '1.0000', '23.0000', '23.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117193, '2022-09-15', 10007, 110598, 6681, 61583, '4.0000', '0.9700', '0.9700', '1.3000', '1.3000', '24.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117194, '2022-09-15', 9740, 110599, 6681, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117195, '2022-09-15', 2315, 110600, 6681, NULL, '1.0000', '0.7700', '0.7700', '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 (117196, '2022-09-15', 1501, 110601, 6681, NULL, '1.0000', '-0.6640', '-0.6640', '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 (117197, '2022-09-15', 2038, 110602, 6681, 59672, '1.0000', '13.6990', '13.6990', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117198, '2022-09-15', 2465, 110603, 6681, 58180, '1.0000', '9.7769', '9.7769', '13.5000', '13.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117199, '2022-09-15', 1888, 110604, 6681, 62452, '1.0000', '19.1482', '19.1482', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117200, '2022-09-15', 1670, 110605, 6681, NULL, '1.0000', '-35.9534', '-35.9534', '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 (117201, '2022-09-15', 1837, 110606, 6681, 62104, '3.0000', '1.1717', '1.1717', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117202, '2022-09-15', 1787, 110607, 6681, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117203, '2022-09-15', 2089, 110608, 6681, 62456, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117204, '2022-09-15', 1557, 110609, 6681, NULL, '1.0000', '8.2500', '8.2500', '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 (117205, '2022-09-15', 1812, 110610, 6681, 62185, '1.0000', '9.3485', '9.3485', '12.5000', '12.5000', '10.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117206, '2022-09-15', 9814, 110611, 6681, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117207, '2022-09-15', 7368, 110612, 6681, 51670, '1.0000', '14.7500', '14.7500', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117208, '2022-09-15', 9892, 110613, 6682, 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 (117209, '2022-09-15', 8395, 110614, 6682, NULL, '1.0000', '0.9700', '0.9700', '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 (117210, '2022-09-15', 2427, 110615, 6682, 5800, '-1.0000', '5.8000', '5.8000', '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 (117211, '2022-09-15', 2427, 110615, 6682, NULL, '2.0000', '5.8000', '5.8000', '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 (117212, '2022-09-15', 7411, 110616, 6682, NULL, '1.0000', '1.3500', '1.3500', '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 (117213, '2022-09-15', 7564, 110617, 6682, NULL, '3.0000', '0.6400', '0.6400', '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 (117214, '2022-09-15', 1935, 110618, 6682, 5586, '-202.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 (117215, '2022-09-15', 1935, 110618, 6682, NULL, '203.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-203.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117216, '2022-09-15', 7666, 110619, 6682, NULL, '1.0000', '3.6000', '3.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 (117217, '2022-09-15', 7672, 110620, 6682, NULL, '1.0000', '1.0200', '1.0200', '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 (117218, '2022-09-15', 7794, 110621, 6682, NULL, '1.0000', '9.8000', '9.8000', '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 (117219, '2022-09-15', 8243, 110622, 6682, NULL, '2.0000', '1.1400', '1.1400', '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 (117220, '2022-09-15', 9729, 110623, 6682, NULL, '1.0000', '0.6200', '0.6200', '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 (117221, '2022-09-15', 7853, 110624, 6682, NULL, '1.0000', '13.0000', '13.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 (117222, '2022-09-15', 7559, 110625, 6682, NULL, '1.0000', '6.0000', '6.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 (117223, '2022-09-15', 7457, 110626, 6682, 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 (117224, '2022-09-15', 2315, 110627, 6682, 2735, '-668.0000', '0.3300', '0.3300', '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 (117225, '2022-09-15', 2315, 110627, 6682, NULL, '670.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-670.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117226, '2022-09-15', 7588, 110628, 6682, NULL, '1.0000', '6.9000', '6.9000', '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 (117227, '2022-09-15', 8677, 110629, 6682, NULL, '1.0000', '1.2800', '1.2800', '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 (117228, '2022-09-15', 7483, 110630, 6682, 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 (117229, '2022-09-15', 7412, 110631, 6682, NULL, '1.0000', '1.5200', '1.5200', '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 (117230, '2022-09-15', 7807, 110632, 6682, NULL, '1.0000', '2.1600', '2.1600', '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 (117231, '2022-09-15', 7366, 110633, 6682, NULL, '2.0000', '7.0000', '7.0000', '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 (117232, '2022-09-15', 7514, 110634, 6682, NULL, '1.0000', '2.2500', '2.2500', '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 (117233, '2022-09-15', 9274, 110635, 6682, NULL, '1.0000', '3.6000', '3.6000', '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 (117234, '2022-09-15', 2315, 110636, 6682, 2735, '-668.0000', '0.3300', '0.3300', '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 (117235, '2022-09-15', 2315, 110636, 6682, NULL, '669.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-669.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117236, '2022-09-15', 8134, 110637, 6682, NULL, '1.0000', '5.2300', '5.2300', '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 (117237, '2022-09-15', 7482, 110638, 6682, NULL, '1.0000', '3.0500', '3.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 (117238, '2022-09-15', 7583, 110639, 6682, NULL, '1.0000', '4.0000', '4.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 (117239, '2022-09-15', 8158, 110640, 6682, NULL, '1.0000', '24.5000', '24.5000', '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 (117240, '2022-09-15', 7953, 110641, 6682, NULL, '1.0000', '6.0000', '6.0000', '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 (117241, '2022-09-15', 8767, 110642, 6682, NULL, '1.0000', '6.6900', '6.6900', '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 (117242, '2022-09-15', 7334, 110643, 6682, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (117243, '2022-09-15', 7316, 110644, 6682, NULL, '5.0000', '9.5500', '9.5500', '1.5000', '1.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 (117244, '2022-09-15', 7317, 110645, 6682, NULL, '1.0000', '19.5500', '19.5500', '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 (117245, '2022-09-15', 8878, 110646, 6682, NULL, '1.0000', '6.6700', '6.6700', '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 (117246, '2022-09-15', 7483, 110647, 6682, 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 (117247, '2022-09-15', 10019, 110648, 6682, NULL, '1.0000', '2.8900', '2.8900', '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 (117248, '2022-09-15', 8360, 110649, 6682, NULL, '1.0000', '3.2300', '3.2300', '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 (117249, '2022-09-15', 7482, 110650, 6682, NULL, '1.0000', '3.0500', '3.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 (117250, '2022-09-15', 8203, 110651, 6682, 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 (117251, '2022-09-15', 9272, 110652, 6682, NULL, '1.0000', '3.1000', '3.1000', '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 (117252, '2022-09-15', 7715, 110653, 6682, NULL, '2.0000', '1.8900', '1.8900', '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 (117253, '2022-09-15', 7787, 110654, 6682, NULL, '1.0000', '10.9000', '10.9000', '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 (117254, '2022-09-15', 7373, 110655, 6682, NULL, '1.0000', '17.0000', '17.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 (117255, '2022-09-15', 9214, 110656, 6682, NULL, '1.0000', '9.6000', '9.6000', '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 (117256, '2022-09-15', 8482, 110657, 6682, NULL, '2.0000', '2.9500', '2.9500', '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 (117257, '2022-09-15', 9092, 110658, 6682, NULL, '10.0000', '5.2900', '5.2900', '0.5000', '0.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 (117258, '2022-09-15', 8722, 110659, 6682, 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 (117259, '2022-09-15', 8061, 110660, 6682, 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 (117260, '2022-09-15', 7588, 110661, 6682, NULL, '1.0000', '6.9000', '6.9000', '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 (117261, '2022-09-15', 9791, 110662, 6682, 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 (117262, '2022-09-15', 8979, 110663, 6682, NULL, '4.0000', '1.0000', '1.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 (117263, '2022-09-15', 1434, 110664, 6682, NULL, '1.0000', '15.3766', '15.3766', '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 (117264, '2022-09-15', 7509, 110665, 6682, NULL, '1.0000', '6.5000', '6.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 (117265, '2022-09-15', 7409, 110666, 6682, NULL, '1.0000', '4.3300', '4.3300', '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 (117266, '2022-09-15', 9526, 110667, 6682, NULL, '2.0000', '7.0000', '7.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 (117267, '2022-09-15', 8814, 110668, 6682, NULL, '10.0000', '5.0000', '5.0000', '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 (117268, '2022-09-15', 7376, 110669, 6682, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117269, '2022-09-15', 1804, 110670, 6682, 4916, '-24.0000', '4.2500', '4.2500', '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 (117270, '2022-09-15', 1804, 110670, 6682, NULL, '25.0000', '4.2500', '4.2500', '10.0000', '10.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 (117271, '2022-09-15', 7674, 110671, 6682, NULL, '1.0000', '1.3000', '1.3000', '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 (117272, '2022-09-15', 7915, 110672, 6682, NULL, '1.0000', '2.8000', '2.8000', '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 (117273, '2022-09-15', 7768, 110673, 6682, NULL, '1.0000', '12.2000', '12.2000', '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 (117274, '2022-09-15', 7666, 110674, 6682, NULL, '1.0000', '3.6000', '3.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 (117275, '2022-09-15', 8658, 110675, 6682, NULL, '1.0000', '17.6000', '17.6000', '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 (117276, '2022-09-15', 7316, 110676, 6682, NULL, '5.0000', '9.5500', '9.5500', '1.5000', '1.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 (117277, '2022-09-15', 7715, 110677, 6682, NULL, '1.0000', '1.8900', '1.8900', '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 (117278, '2022-09-15', 7641, 110678, 6682, NULL, '1.0000', '1.9000', '1.9000', '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 (117279, '2022-09-15', 8359, 110679, 6682, 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 (117280, '2022-09-15', 8596, 110680, 6682, 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 (117281, '2022-09-15', 9160, 110681, 6682, NULL, '1.0000', '15.0000', '15.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 (117282, '2022-09-15', 8918, 110682, 6682, NULL, '1.0000', '1.0400', '1.0400', '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 (117283, '2022-09-15', 9762, 110683, 6682, 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 (117284, '2022-09-15', 1501, 110684, 6682, NULL, '1.0000', '2.0500', '2.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 (117285, '2022-09-15', 2020, 110685, 6683, 62236, '1.0000', '7.0334', '7.0334', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117286, '2022-09-15', 2416, 110686, 6683, 62498, '1.0000', '1.3450', '1.3450', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117287, '2022-09-15', 2020, 110687, 6683, 62236, '1.0000', '7.0334', '7.0334', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117288, '2022-09-15', 1620, 110688, 6683, 61622, '1.0000', '2.3342', '2.3342', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117289, '2022-09-15', 2548, 110689, 6683, 62246, '1.0000', '9.0738', '9.0738', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117290, '2022-09-15', 1715, 110690, 6683, 62207, '2.0000', '7.4363', '7.4363', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117291, '2022-09-15', 9878, 110691, 6683, 56906, '2.0000', '8.7483', '8.7483', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117292, '2022-09-15', 1863, 110692, 6683, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117293, '2022-09-15', 7672, 110693, 6683, 59981, '1.0000', '1.3852', '1.3852', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117294, '2022-09-15', 2858, 110694, 6683, 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 (117295, '2022-09-15', 2366, 110695, 6683, 61627, '2.0000', '3.6301', '3.6301', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117296, '2022-09-15', 7802, 110696, 6683, NULL, '1.0000', '1.3468', '1.3468', '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 (117297, '2022-09-15', 1863, 110697, 6683, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117298, '2022-09-15', 1825, 110698, 6683, 38065, '1.0000', '5.0960', '5.0960', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117299, '2022-09-15', 1306, 110699, 6683, 62244, '3.0000', '2.0485', '2.0485', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117300, '2022-09-15', 2169, 110700, 6683, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117301, '2022-09-15', 1863, 110701, 6683, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117302, '2022-09-15', 1863, 110702, 6683, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117303, '2022-09-15', 7743, 110703, 6683, NULL, '1.0000', '1.3100', '1.3100', '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 (117304, '2022-09-15', 9151, 110704, 6684, NULL, '1.0000', '9.7000', '9.7000', '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 (117305, '2022-09-15', 2496, 110705, 6684, NULL, '3.0000', '0.5900', '0.5900', '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 (117306, '2022-09-15', 7326, 110706, 6684, NULL, '1.0000', '54.0000', '54.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117307, '2022-09-15', 9984, 110707, 6684, 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 (117308, '2022-09-15', 2891, 110708, 6684, 18020, '-9.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 (117309, '2022-09-15', 2891, 110708, 6684, NULL, '10.0000', '9.5000', '9.5000', '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 (117310, '2022-09-15', 7657, 110709, 6684, NULL, '1.0000', '11.3200', '11.3200', '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 (117311, '2022-09-15', 8878, 110710, 6684, NULL, '2.0000', '6.6700', '6.6700', '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 (117312, '2022-09-15', 8395, 110711, 6684, NULL, '2.0000', '0.9700', '0.9700', '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 (117313, '2022-09-15', 2445, 110712, 6684, 5315, '-10.0000', '3.2000', '3.2000', '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 (117314, '2022-09-15', 2445, 110712, 6684, NULL, '20.0000', '3.2000', '3.2000', '5.5000', '5.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 (117315, '2022-09-15', 2656, 110713, 6684, NULL, '1.0000', '1.5000', '1.5000', '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 (117316, '2022-09-15', 2315, 110714, 6684, 2735, '-671.0000', '0.3300', '0.3300', '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 (117317, '2022-09-15', 2315, 110714, 6684, NULL, '672.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-672.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117318, '2022-09-15', 7886, 110715, 6684, NULL, '1.0000', '4.5000', '4.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 (117319, '2022-09-15', 9001, 110716, 6684, NULL, '1.0000', '23.5000', '23.5000', '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 (117320, '2022-09-15', 1856, 110717, 6684, NULL, '1.0000', '4.2500', '4.2500', '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 (117321, '2022-09-15', 7524, 110718, 6684, NULL, '1.0000', '11.9500', '11.9500', '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 (117322, '2022-09-15', 7316, 110719, 6684, NULL, '10.0000', '9.5500', '9.5500', '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 (117323, '2022-09-15', 8925, 110720, 6684, NULL, '1.0000', '2.4000', '2.4000', '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 (117324, '2022-09-15', 8765, 110721, 6684, NULL, '1.0000', '5.0000', '5.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 (117325, '2022-09-15', 7666, 110722, 6684, NULL, '1.0000', '3.6000', '3.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 (117326, '2022-09-15', 7675, 110723, 6684, NULL, '1.0000', '11.4300', '11.4300', '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 (117327, '2022-09-15', 9814, 110724, 6685, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117328, '2022-09-15', 7368, 110725, 6685, 50521, '1.0000', '14.7500', '14.7500', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117329, '2022-09-15', 2169, 110726, 6685, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117330, '2022-09-15', 2236, 110727, 6685, NULL, '1.0000', '5.5597', '5.5597', '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 (117331, '2022-09-15', 8170, 110728, 6685, NULL, '1.0000', '5.7500', '5.7500', '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 (117332, '2022-09-15', 1812, 110729, 6685, 62185, '1.0000', '9.3485', '9.3485', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117333, '2022-09-15', 7491, 110730, 6685, NULL, '1.0000', '4.8000', '4.8000', '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 (117334, '2022-09-15', 2643, 110731, 6685, 62478, '8.0000', '1.1080', '1.1080', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117335, '2022-09-15', 9740, 110732, 6685, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117336, '2022-09-15', 9848, 110733, 6685, 60301, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117337, '2022-09-15', 2315, 110734, 6685, NULL, '1.0000', '0.7700', '0.7700', '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 (117338, '2022-09-15', 7640, 110735, 6685, 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 (117339, '2022-09-15', 1529, 110736, 6685, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117340, '2022-09-15', 1528, 110737, 6685, NULL, '1.0000', '900.1354', '900.1354', '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 (117341, '2022-09-15', 2642, 110738, 6685, 61475, '1.0000', '8.2025', '8.2025', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117342, '2022-09-15', 7741, 110739, 6685, NULL, '1.0000', '-174.4114', '-174.4114', '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 (117343, '2022-09-15', 9979, 110740, 6685, NULL, '1.0000', '13.9000', '13.9000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117344, '2022-09-15', 1863, 110741, 6685, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117345, '2022-09-15', 2273, 110742, 6685, 60335, '1.0000', '3.0605', '3.0605', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117346, '2022-09-15', 1557, 110743, 6685, NULL, '1.0000', '8.2500', '8.2500', '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 (117347, '2022-09-15', 1505, 110744, 6685, 60303, '1.0000', '107.0915', '107.0915', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117348, '2022-09-15', 8017, 110745, 6685, 62109, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117349, '2022-09-15', 2259, 110746, 6685, 62448, '1.0000', '25.7632', '25.7632', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117350, '2022-09-15', 9482, 110747, 6685, 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 (117351, '2022-09-15', 1715, 110748, 6685, 62108, '1.0000', '7.7956', '7.7956', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117352, '2022-09-15', 2655, 110749, 6685, NULL, '1.0000', '-644.0070', '-644.0070', '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 (117353, '2022-09-15', 9734, 110750, 6685, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '244.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117354, '2022-09-15', 8482, 110751, 6685, NULL, '1.0000', '2.9500', '2.9500', '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 (117355, '2022-09-15', 9734, 110752, 6685, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '243.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117356, '2022-09-15', 2109, 110753, 6685, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117357, '2022-09-15', 1310, 110754, 6685, 59901, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '22.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117358, '2022-09-15', 2384, 110755, 6685, NULL, '2.0000', '-5.5392', '-5.5392', '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 (117359, '2022-09-15', 8208, 110756, 6685, NULL, '4.0000', '47.9541', '47.9541', '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 (117360, '2022-09-15', 8743, 110757, 6686, 60518, '1.0000', '12.9961', '12.9961', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117361, '2022-09-15', 8745, 110758, 6686, 60922, '2.0000', '12.3471', '12.3471', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117362, '2022-09-15', 8457, 110759, 6686, NULL, '1.0000', '6.2000', '6.2000', '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 (117363, '2022-09-15', 8746, 110760, 6686, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117364, '2022-09-15', 9089, 110761, 6686, 60921, '1.0000', '5.4520', '5.4520', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117365, '2022-09-15', 2557, 110762, 6687, 49344, '1.0000', '0.5700', '0.5700', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117366, '2022-09-15', 1670, 110763, 6687, NULL, '1.0000', '-35.9534', '-35.9534', '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 (117367, '2022-09-15', 2607, 110764, 6687, 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 (117368, '2022-09-15', 1871, 110765, 6687, NULL, '5.0000', '-79.1764', '-79.1764', '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 (117369, '2022-09-15', 9751, 110766, 6687, 59707, '2.0000', '1.1935', '1.1935', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117370, '2022-09-15', 9695, 110767, 6687, 62386, '1.0000', '5.5432', '5.5432', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117371, '2022-09-15', 1863, 110768, 6687, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117372, '2022-09-15', 2109, 110769, 6687, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117373, '2022-09-15', 9734, 110770, 6687, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '239.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117374, '2022-09-15', 2643, 110771, 6687, 62478, '1.0000', '1.1080', '1.1080', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117375, '2022-09-15', 9734, 110772, 6687, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '240.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117376, '2022-09-15', 2167, 110773, 6687, NULL, '1.0000', '-1.6257', '-1.6257', '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 (117377, '2022-09-16', 7711, 110774, 6688, 62295, '2.0000', '51.7667', '51.7667', '74.0000', '74.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117378, '2022-09-16', 9274, 110775, 6688, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '10.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117379, '2022-09-16', 9390, 110776, 6688, NULL, '1.0000', '25.0000', '25.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 (117380, '2022-09-16', 2560, 110777, 6688, NULL, '1.0000', '20.3704', '20.3704', '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 (117381, '2022-09-16', 7412, 110778, 6688, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117382, '2022-09-16', 8677, 110779, 6688, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117383, '2022-09-16', 9271, 110780, 6688, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117384, '2022-09-16', 9463, 110781, 6688, 61916, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117385, '2022-09-16', 9190, 110782, 6688, 61759, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117386, '2022-09-16', 9909, 110783, 6688, 56053, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117387, '2022-09-16', 8154, 110784, 6688, NULL, '1.0000', '12.3000', '12.3000', '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 (117388, '2022-09-16', 8061, 110785, 6688, 57544, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117389, '2022-09-16', 1486, 110786, 6688, 48059, '1.0000', '17.2810', '17.2810', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117390, '2022-09-16', 7616, 110787, 6688, 62305, '1.0000', '-5.6667', '-5.6667', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117391, '2022-09-16', 8167, 110788, 6688, 56519, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117392, '2022-09-16', 8135, 110789, 6688, 61718, '1.0000', '3.8176', '3.8176', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117393, '2022-09-16', 7753, 110790, 6688, 60153, '1.0000', '3.5929', '3.5929', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117394, '2022-09-16', 2440, 110791, 6688, 52007, '1.0000', '7.0000', '7.0000', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117395, '2022-09-16', 1841, 110792, 6688, 61751, '9.0000', '0.1461', '0.1461', '0.5000', '0.5000', '59.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117396, '2022-09-16', 7743, 110793, 6688, NULL, '2.0000', '2076336.1912', '2076336.1912', '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 (117397, '2022-09-16', 7559, 110794, 6688, 59091, '2.0000', '13.6845', '13.6845', '14.5000', '14.5000', '12.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117398, '2022-09-16', 7862, 110795, 6688, NULL, '1.0000', '496.0500', '496.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 (117399, '2022-09-16', 7472, 110796, 6688, 61910, '1.0000', '8.0480', '8.0480', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117400, '2022-09-16', 8308, 110797, 6688, NULL, '1.0000', '386.2157', '386.2157', '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 (117401, '2022-09-16', 7806, 110798, 6688, NULL, '5.0000', '9.6685', '9.6685', '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 (117402, '2022-09-16', 9761, 110799, 6688, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117403, '2022-09-16', 8097, 110800, 6688, 61845, '1.0000', '14.9186', '14.9186', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117404, '2022-09-16', 2315, 110801, 6688, 61885, '5.0000', '0.7648', '0.7648', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117405, '2022-09-16', 7886, 110802, 6688, 61876, '1.0000', '4.8599', '4.8599', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117406, '2022-09-16', 7824, 110803, 6688, NULL, '1.0000', '7.7000', '7.7000', '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 (117407, '2022-09-16', 8677, 110804, 6688, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117408, '2022-09-16', 9946, 110805, 6688, 59192, '1.0000', '13.6000', '13.6000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117409, '2022-09-16', 8763, 110806, 6688, 57509, '1.0000', '9.9422', '9.9422', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117410, '2022-09-16', 8949, 110807, 6688, 60810, '1.0000', '6.5904', '6.5904', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117411, '2022-09-16', 1501, 110808, 6688, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117412, '2022-09-16', 9092, 110809, 6688, 60813, '2.0000', '0.3167', '0.3167', '0.5000', '0.5000', '53.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117413, '2022-09-16', 8359, 110810, 6688, 62300, '1.0000', '182.7232', '182.7232', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117414, '2022-09-16', 2615, 110811, 6689, 10538, '1.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 (117415, '2022-09-16', 1528, 110812, 6689, 60059, '3.0000', '33.2874', '33.2874', '8.5000', '8.5000', '16.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117416, '2022-09-16', 1807, 110813, 6689, NULL, '4.0000', '-3.9727', '-3.9727', '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 (117417, '2022-09-16', 2366, 110814, 6689, 61627, '2.0000', '3.6301', '3.6301', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117418, '2022-09-16', 1582, 110815, 6689, 9445, '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 (117419, '2022-09-16', 9776, 110816, 6689, 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 (117420, '2022-09-16', 2061, 110817, 6689, 60035, '1.0000', '12.7522', '12.7522', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117421, '2022-09-16', 8746, 110818, 6689, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117422, '2022-09-16', 9866, 110819, 6689, 56221, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117423, '2022-09-16', 2384, 110820, 6689, 60032, '2.0000', '0.4392', '0.4392', '0.8000', '0.8000', '43.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117424, '2022-09-16', 1411, 110821, 6689, 61606, '1.0000', '25.9672', '25.9672', '35.0000', '35.0000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117425, '2022-09-16', 2233, 110822, 6690, 62173, '1.0000', '26.7472', '26.7472', '44.0000', '44.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117426, '2022-09-16', 2068, 110823, 6690, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117427, '2022-09-16', 9996, 110824, 6690, 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 (117428, '2022-09-16', 2351, 110825, 6690, 57123, '1.0000', '18.3300', '18.3300', '24.5000', '24.5000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117429, '2022-09-16', 2315, 110826, 6690, NULL, '2.0000', '0.7700', '0.7700', '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 (117430, '2022-09-16', 8384, 110827, 6690, 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 (117431, '2022-09-16', 2816, 110828, 6690, NULL, '1.0000', '0.8000', '0.8000', '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 (117432, '2022-09-16', 8677, 110829, 6690, NULL, '1.0000', '1026.1382', '1026.1382', '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 (117433, '2022-09-16', 2058, 110830, 6690, NULL, '1.0000', '10.0000', '10.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 (117434, '2022-09-16', 1875, 110831, 6690, 62376, '10.0000', '2.7455', '2.7455', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117435, '2022-09-16', 1884, 110832, 6690, NULL, '1.0000', '30.3260', '30.3260', '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 (117436, '2022-09-16', 10007, 110833, 6690, 61583, '4.0000', '0.9700', '0.9700', '1.3000', '1.3000', '20.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117437, '2022-09-16', 2283, 110834, 6690, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117438, '2022-09-16', 2167, 110835, 6690, NULL, '1.0000', '-1.6257', '-1.6257', '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 (117439, '2022-09-16', 1383, 110836, 6690, 62134, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117440, '2022-09-16', 2643, 110837, 6690, 62478, '1.0000', '1.1080', '1.1080', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117441, '2022-09-16', 9734, 110838, 6690, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '236.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117442, '2022-09-16', 1845, 110839, 6690, NULL, '1.0000', '53.9580', '53.9580', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117443, '2022-09-16', 2233, 110840, 6690, 62173, '1.0000', '26.7472', '26.7472', '44.0000', '44.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117444, '2022-09-16', 2823, 110841, 6690, NULL, '1.0000', '-5.2900', '-5.2900', '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 (117445, '2022-09-16', 3044, 110842, 6690, NULL, '2.0000', '0.4000', '0.4000', '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 (117446, '2022-09-16', 1783, 110843, 6690, 57793, '3.0000', '11.0704', '11.0704', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117447, '2022-09-16', 9024, 110844, 6690, NULL, '1.0000', '7.4400', '7.4400', '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 (117448, '2022-09-16', 2998, 110845, 6690, 23107, '1.0000', '3.6000', '3.6000', '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 (117449, '2022-09-16', 2233, 110846, 6690, 62173, '1.0000', '26.7472', '26.7472', '44.0000', '44.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117450, '2022-09-16', 7953, 110847, 6690, NULL, '1.0000', '-0.5345', '-0.5345', '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 (117451, '2022-09-16', 9388, 110848, 6690, 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 (117452, '2022-09-16', 2344, 110849, 6690, 62069, '1.0000', '20.0000', '20.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117453, '2022-09-16', 8744, 110850, 6690, 62482, '1.0000', '2.6820', '2.6820', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117454, '2022-09-16', 1871, 110851, 6690, NULL, '10.0000', '-79.1764', '-79.1764', '4.0000', '4.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 (117455, '2022-09-16', 3044, 110852, 6690, NULL, '2.0000', '0.4000', '0.4000', '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 (117456, '2022-09-16', 1845, 110853, 6690, NULL, '1.0000', '53.9580', '53.9580', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117457, '2022-09-16', 2441, 110854, 6690, 61256, '1.0000', '12.9756', '12.9756', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117458, '2022-09-16', 2522, 110855, 6690, 59700, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117459, '2022-09-16', 8740, 110856, 6690, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117460, '2022-09-16', 1670, 110857, 6690, NULL, '1.0000', '-35.9534', '-35.9534', '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 (117461, '2022-09-16', 1837, 110858, 6690, 62104, '1.0000', '1.1717', '1.1717', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117462, '2022-09-16', 1837, 110858, 6690, 58241, '1.0000', '1.1717', '1.1717', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117463, '2022-09-16', 2379, 110859, 6690, NULL, '1.0000', '-17.5498', '-17.5498', '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 (117464, '2022-09-16', 1347, 110860, 6690, 57726, '3.0000', '4.0941', '4.0941', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117465, '2022-09-16', 1908, 110861, 6690, NULL, '2.0000', '0.9032', '0.9032', '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 (117466, '2022-09-16', 1521, 110862, 6690, 62130, '1.0000', '1808.4417', '1808.4417', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117467, '2022-09-16', 9747, 110863, 6690, 62180, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117468, '2022-09-16', 9503, 110864, 6690, NULL, '1.0000', '240.6525', '240.6525', '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 (117469, '2022-09-16', 8017, 110865, 6691, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117470, '2022-09-16', 7967, 110866, 6691, 60121, '1.0000', '7.1845', '7.1845', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117471, '2022-09-16', 7672, 110867, 6691, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117472, '2022-09-16', 7778, 110868, 6691, NULL, '1.0000', '12.0532', '12.0532', '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 (117473, '2022-09-16', 9507, 110869, 6692, 60400, '1.0000', '48.2322', '48.2322', '74.0000', '74.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117474, '2022-09-16', 8482, 110870, 6692, NULL, '1.0000', '2.9500', '2.9500', '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 (117475, '2022-09-16', 7518, 110871, 6692, 61784, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117476, '2022-09-16', 8444, 110872, 6693, 59865, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117477, '2022-09-16', 2823, 110873, 6693, NULL, '1.0000', '-5.2900', '-5.2900', '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 (117478, '2022-09-16', 2916, 110874, 6693, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (117479, '2022-09-16', 9727, 110875, 6693, NULL, '1.0000', '6.7000', '6.7000', '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 (117480, '2022-09-16', 7612, 110876, 6693, 62446, '1.0000', '5.5300', '5.5300', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117481, '2022-09-16', 7612, 110876, 6693, NULL, '1.0000', '5.5300', '5.5300', '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 (117482, '2022-09-16', 1688, 110877, 6693, 62073, '1.0000', '23.7000', '23.7000', '31.5000', '31.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117483, '2022-09-16', 7584, 110878, 6693, NULL, '1.0000', '3.1378', '3.1378', '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 (117484, '2022-09-16', 9089, 110879, 6693, 62486, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117485, '2022-09-16', 1427, 110880, 6693, NULL, '2.0000', '14.5000', '14.5000', '20.5000', '20.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 (117486, '2022-09-16', 8775, 110881, 6693, 61490, '1.0000', '2.3129', '2.3129', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117487, '2022-09-16', 8017, 110882, 6693, 62109, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117488, '2022-09-16', 9866, 110883, 6693, 62111, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117489, '2022-09-16', 2295, 110884, 6693, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117490, '2022-09-16', 9747, 110885, 6693, 62180, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117491, '2022-09-16', 1912, 110886, 6693, NULL, '1.0000', '0.9741', '0.9741', '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 (117492, '2022-09-16', 1409, 110887, 6693, 62429, '2.0000', '13.2000', '13.2000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117493, '2022-09-16', 1841, 110888, 6693, NULL, '2.0000', '0.7630', '0.7630', '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 (117494, '2022-09-16', 1840, 110889, 6693, NULL, '2.0000', '0.2400', '0.2400', '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 (117495, '2022-09-16', 7411, 110890, 6693, NULL, '2.0000', '1.2819', '1.2819', '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 (117496, '2022-09-16', 9734, 110891, 6693, 62184, '5.0000', '0.4628', '0.4628', '0.7000', '0.7000', '231.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117497, '2022-09-16', 9734, 110892, 6693, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '233.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117498, '2022-09-16', 1925, 110893, 6693, 61553, '3.0000', '1.9127', '1.9127', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117499, '2022-09-16', 9734, 110894, 6693, 62184, '10.0000', '0.4628', '0.4628', '0.7000', '0.7000', '226.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117500, '2022-09-16', 1781, 110895, 6693, 62072, '1.0000', '5.8957', '5.8957', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117501, '2022-09-16', 2416, 110896, 6693, 62477, '1.0000', '1.3777', '1.3777', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117502, '2022-09-16', 1368, 110897, 6693, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117503, '2022-09-16', 2655, 110898, 6693, NULL, '1.0000', '-644.0070', '-644.0070', '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 (117504, '2022-09-16', 1839, 110899, 6693, NULL, '1.0000', '-718359.7051', '-718359.7051', '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 (117505, '2022-09-16', 8208, 110900, 6693, NULL, '2.0000', '47.9541', '47.9541', '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 (117506, '2022-09-16', 2327, 110901, 6693, 39828, '3.0000', '3.8350', '3.8350', '6.0000', '6.0000', '37.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117507, '2022-09-16', 1431, 110902, 6693, 62400, '1.0000', '39.8000', '39.8000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117508, '2022-09-16', 1387, 110903, 6693, 61564, '1.0000', '15.5976', '15.5976', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117509, '2022-09-16', 1665, 110904, 6693, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117510, '2022-09-16', 2283, 110905, 6693, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117511, '2022-09-16', 2916, 110906, 6693, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (117512, '2022-09-16', 2908, 110907, 6693, 55931, '1.0000', '0.3518', '0.3518', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117513, '2022-09-16', 8476, 110908, 6693, NULL, '2.0000', '23.0000', '23.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 (117514, '2022-09-16', 1310, 110909, 6693, 59901, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '20.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117515, '2022-09-16', 2379, 110910, 6693, NULL, '1.0000', '-17.5498', '-17.5498', '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 (117516, '2022-09-16', 1301, 110911, 6693, NULL, '3.0000', '1.6800', '1.6800', '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 (117517, '2022-09-16', 2916, 110912, 6693, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (117518, '2022-09-16', 1772, 110913, 6693, 62187, '1.0000', '5.9758', '5.9758', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117519, '2022-09-16', 9740, 110914, 6693, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117520, '2022-09-16', 1863, 110915, 6693, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117521, '2022-09-16', 7375, 110916, 6693, NULL, '8.0000', '5.1000', '5.1000', '7.0000', '7.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 (117522, '2022-09-16', 9898, 110917, 6693, NULL, '2.0000', '3.0000', '3.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 (117523, '2022-09-16', 7652, 110918, 6693, NULL, '3.0000', '40.3000', '40.3000', '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 (117524, '2022-09-16', 9827, 110919, 6693, 62370, '1.0000', '16.6600', '16.6600', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117525, '2022-09-16', 8170, 110920, 6693, NULL, '1.0000', '5.7500', '5.7500', '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 (117526, '2022-09-16', 2315, 110921, 6693, NULL, '1.0000', '0.7700', '0.7700', '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 (117527, '2022-09-16', 1863, 110922, 6693, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117528, '2022-09-16', 2237, 110923, 6693, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117529, '2022-09-16', 9953, 110924, 6693, 60249, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117530, '2022-09-16', 1871, 110925, 6693, NULL, '5.0000', '-79.1764', '-79.1764', '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 (117531, '2022-09-16', 8595, 110926, 6693, NULL, '1.0000', '-3.2120', '-3.2120', '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 (117532, '2022-09-16', 2656, 110927, 6693, 62480, '2.0000', '1.9713', '1.9713', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117533, '2022-09-16', 3044, 110928, 6693, NULL, '1.0000', '0.4000', '0.4000', '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 (117534, '2022-09-16', 2821, 110929, 6693, NULL, '1.0000', '3.3676', '3.3676', '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 (117535, '2022-09-16', 1863, 110930, 6693, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117536, '2022-09-16', 2823, 110931, 6693, NULL, '1.0000', '-5.2900', '-5.2900', '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 (117537, '2022-09-16', 2169, 110932, 6693, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117538, '2022-09-16', 2384, 110933, 6693, NULL, '6.0000', '-5.5392', '-5.5392', '0.8000', '0.8000', '-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 (117539, '2022-09-16', 7741, 110934, 6693, NULL, '1.0000', '-174.4114', '-174.4114', '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 (117540, '2022-09-16', 2169, 110935, 6693, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117541, '2022-09-16', 2302, 110936, 6693, 60327, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117542, '2022-09-16', 10007, 110937, 6693, 61583, '7.0000', '0.9700', '0.9700', '1.3000', '1.3000', '13.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117543, '2022-09-16', 7444, 110938, 6694, 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 (117544, '2022-09-16', 2315, 110939, 6694, 2735, '-672.0000', '0.3300', '0.3300', '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 (117545, '2022-09-16', 2315, 110939, 6694, NULL, '673.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-673.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117546, '2022-09-16', 7411, 110940, 6694, NULL, '1.0000', '1.3500', '1.3500', '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 (117547, '2022-09-16', 8467, 110941, 6694, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117548, '2022-09-16', 7334, 110942, 6694, NULL, '3.0000', '8.2300', '8.2300', '13.5000', '13.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 (117549, '2022-09-16', 7743, 110943, 6694, NULL, '1.0000', '1.3100', '1.3100', '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 (117550, '2022-09-16', 7591, 110944, 6694, NULL, '1.0000', '2.7500', '2.7500', '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 (117551, '2022-09-16', 8712, 110945, 6694, NULL, '1.0000', '7.0400', '7.0400', '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 (117552, '2022-09-16', 7822, 110946, 6694, NULL, '1.0000', '8.0000', '8.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 (117553, '2022-09-16', 2506, 110947, 6694, 16244, '-44.0000', '3.4900', '3.4900', '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 (117554, '2022-09-16', 2506, 110947, 6694, NULL, '45.0000', '3.4900', '3.4900', '6.5000', '6.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 (117555, '2022-09-16', 1855, 110948, 6694, NULL, '2.0000', '1.4000', '1.4000', '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 (117556, '2022-09-16', 2289, 110949, 6694, 2949, '-271.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 (117557, '2022-09-16', 2289, 110949, 6694, NULL, '272.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-272.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117558, '2022-09-16', 1841, 110950, 6694, NULL, '1.0000', '142.5780', '142.5780', '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 (117559, '2022-09-16', 1665, 110951, 6694, 3235, '-157.0000', '1.3000', '1.3000', '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 (117560, '2022-09-16', 1665, 110951, 6694, NULL, '159.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-159.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117561, '2022-09-16', 7523, 110952, 6694, NULL, '1.0000', '9.7500', '9.7500', '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 (117562, '2022-09-16', 8449, 110953, 6694, NULL, '1.0000', '11.9000', '11.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 (117563, '2022-09-16', 7820, 110954, 6694, NULL, '1.0000', '14.5000', '14.5000', '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 (117564, '2022-09-16', 9729, 110955, 6694, NULL, '5.0000', '0.6200', '0.6200', '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 (117565, '2022-09-16', 7780, 110956, 6694, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117566, '2022-09-16', 10004, 110957, 6694, NULL, '3.0000', '2.5100', '2.5100', '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 (117567, '2022-09-16', 7442, 110958, 6694, 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 (117568, '2022-09-16', 7917, 110959, 6694, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (117569, '2022-09-16', 8243, 110960, 6694, NULL, '1.0000', '1.1400', '1.1400', '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 (117570, '2022-09-16', 7554, 110961, 6694, NULL, '3.0000', '2.1000', '2.1000', '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 (117571, '2022-09-16', 7743, 110962, 6694, NULL, '1.0000', '1.3100', '1.3100', '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 (117572, '2022-09-16', 8658, 110963, 6694, NULL, '1.0000', '17.6000', '17.6000', '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 (117573, '2022-09-16', 7518, 110964, 6694, NULL, '2.0000', '7.8200', '7.8200', '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 (117574, '2022-09-16', 9856, 110965, 6694, NULL, '1.0000', '1.6000', '1.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 (117575, '2022-09-16', 1760, 110966, 6694, 3170, '-2.0000', '111.8384', '111.8384', '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 (117576, '2022-09-16', 1760, 110966, 6694, NULL, '4.0000', '111.8384', '111.8384', '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 (117577, '2022-09-16', 7708, 110967, 6694, NULL, '1.0000', '7.8000', '7.8000', '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 (117578, '2022-09-16', 2315, 110968, 6694, 2735, '-672.0000', '0.3300', '0.3300', '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 (117579, '2022-09-16', 2315, 110968, 6694, NULL, '673.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-673.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117580, '2022-09-16', 9988, 110969, 6694, 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 (117581, '2022-09-16', 8765, 110970, 6694, NULL, '1.0000', '5.0000', '5.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 (117582, '2022-09-16', 8187, 110971, 6694, NULL, '3.0000', '14.3900', '14.3900', '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 (117583, '2022-09-16', 1644, 110972, 6694, 3216, '-11.0000', '33.8200', '33.8200', '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 (117584, '2022-09-16', 1644, 110972, 6694, NULL, '12.0000', '33.8200', '33.8200', '53.0000', '53.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 (117585, '2022-09-16', 8011, 110973, 6694, 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 (117586, '2022-09-16', 7402, 110974, 6694, NULL, '2.0000', '18.9000', '18.9000', '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 (117587, '2022-09-16', 2921, 110975, 6694, 18778, '-2.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 (117588, '2022-09-16', 2921, 110975, 6694, NULL, '3.0000', '4.9000', '4.9000', '7.0000', '7.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 (117589, '2022-09-16', 7380, 110976, 6694, NULL, '1.0000', '8.0000', '8.0000', '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 (117590, '2022-09-16', 9734, 110977, 6694, NULL, '3.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (117591, '2022-09-16', 2315, 110978, 6694, 2735, '-672.0000', '0.3300', '0.3300', '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 (117592, '2022-09-16', 2315, 110978, 6694, NULL, '673.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-673.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117593, '2022-09-16', 1916, 110979, 6695, 58812, '1.0000', '9.5467', '9.5467', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117594, '2022-09-16', 9695, 110980, 6695, 61701, '1.0000', '5.7919', '5.7919', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117595, '2022-09-16', 2281, 110981, 6695, 58765, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117596, '2022-09-16', 1665, 110982, 6695, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117597, '2022-09-16', 2342, 110983, 6695, 60051, '10.0000', '2.2694', '2.2694', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117598, '2022-09-16', 7518, 110984, 6695, 56943, '1.0000', '26.2300', '26.2300', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117599, '2022-09-16', 1665, 110985, 6695, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '45.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117600, '2022-09-16', 9648, 110986, 6695, 47957, '1.0000', '15.8313', '15.8313', '21.5000', '21.5000', '8.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117601, '2022-09-16', 7459, 110987, 6695, NULL, '1.0000', '4.5753', '4.5753', '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 (117602, '2022-09-16', 2494, 110988, 6695, NULL, '1.0000', '32.7000', '32.7000', '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 (117603, '2022-09-16', 2302, 110989, 6695, 61671, '1.0000', '5.1974', '5.1974', '7.0000', '7.0000', '14.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117604, '2022-09-16', 7725, 110990, 6695, NULL, '1.0000', '9.5000', '9.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 (117605, '2022-09-16', 2858, 110991, 6695, 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 (117606, '2022-09-16', 1825, 110992, 6695, 38065, '1.0000', '5.0960', '5.0960', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117607, '2022-09-16', 2236, 110993, 6695, 62209, '1.0000', '6.1815', '6.1815', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117608, '2022-09-16', 2062, 110994, 6695, 59968, '1.0000', '10.1103', '10.1103', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117609, '2022-09-16', 7358, 110995, 6695, NULL, '1.0000', '18.8000', '18.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 (117610, '2022-09-16', 2655, 110996, 6695, 62495, '1.0000', '7.2019', '7.2019', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117611, '2022-09-16', 1935, 110997, 6695, 62237, '3.0000', '1.2091', '1.2091', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117612, '2022-09-16', 2169, 110998, 6695, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117613, '2022-09-16', 2069, 110999, 6695, 62222, '1.0000', '6.0498', '6.0498', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117614, '2022-09-16', 3013, 111000, 6695, 61656, '1.0000', '8.2500', '8.2500', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117615, '2022-09-16', 7704, 111001, 6695, NULL, '2.0000', '0.4900', '0.4900', '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 (117616, '2022-09-16', 2858, 111002, 6695, 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 (117617, '2022-09-16', 10006, 111003, 6695, 61692, '1.0000', '12.9800', '12.9800', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117618, '2022-09-16', 2169, 111004, 6695, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117619, '2022-09-16', 7411, 111005, 6695, NULL, '1.0000', '1.5882', '1.5882', '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 (117620, '2022-09-16', 1501, 111006, 6695, 55884, '1.0000', '95.0477', '95.0477', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117621, '2022-09-16', 1410, 111007, 6695, 61607, '1.0000', '2.9736', '2.9736', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117622, '2022-09-16', 1371, 111008, 6695, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117623, '2022-09-16', 7879, 111009, 6695, NULL, '10.0000', '1.9200', '1.9200', '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 (117624, '2022-09-16', 1432, 111010, 6695, 61596, '1.0000', '11.7590', '11.7590', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117625, '2022-09-16', 2248, 111011, 6695, 62270, '1.0000', '3.3270', '3.3270', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117626, '2022-09-16', 2260, 111012, 6695, 62198, '1.0000', '4.8731', '4.8731', '7.0000', '7.0000', '25.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117627, '2022-09-16', 1912, 111013, 6695, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '69.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117628, '2022-09-16', 2169, 111014, 6695, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117629, '2022-09-16', 2315, 111015, 6695, 60074, '5.0000', '0.5758', '0.5758', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117630, '2022-09-16', 1637, 111016, 6695, 55766, '1.0000', '191.7389', '191.7389', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117631, '2022-09-16', 2655, 111017, 6695, 62495, '1.0000', '7.2019', '7.2019', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117632, '2022-09-16', 7917, 111018, 6695, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (117633, '2022-09-16', 1521, 111019, 6695, 61614, '1.0000', '2.8889', '2.8889', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117634, '2022-09-16', 1863, 111020, 6695, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117635, '2022-09-16', 1574, 111021, 6695, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117636, '2022-09-16', 1386, 111022, 6695, 62231, '1.0000', '148.5738', '148.5738', '7.5000', '7.5000', '18.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117637, '2022-09-16', 1590, 111023, 6696, 62189, '3.0000', '2.4695', '2.4695', '3.5000', '3.5000', '239.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117638, '2022-09-16', 2295, 111024, 6696, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117639, '2022-09-16', 1590, 111025, 6696, 62189, '3.0000', '2.4695', '2.4695', '3.5000', '3.5000', '239.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117640, '2022-09-16', 1529, 111026, 6696, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117641, '2022-09-16', 2916, 111027, 6696, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (117642, '2022-09-16', 9821, 111028, 6696, 62142, '1.0000', '1.6500', '1.6500', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117643, '2022-09-16', 2068, 111029, 6696, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117644, '2022-09-16', 2384, 111030, 6696, NULL, '2.0000', '-5.5392', '-5.5392', '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 (117645, '2022-09-16', 1310, 111031, 6696, 59901, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117646, '2022-09-16', 10006, 111032, 6696, 62362, '1.0000', '12.9800', '12.9800', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117647, '2022-09-16', 9751, 111033, 6696, 59707, '2.0000', '1.1935', '1.1935', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117648, '2022-09-16', 2169, 111034, 6696, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117649, '2022-09-16', 1340, 111035, 6696, NULL, '1.0000', '5.5200', '5.5200', '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 (117650, '2022-09-16', 9695, 111036, 6696, 62386, '2.0000', '5.5432', '5.5432', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117651, '2022-09-16', 1667, 111037, 6696, 62361, '1.0000', '9.3728', '9.3728', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117652, '2022-09-16', 1602, 111038, 6696, 62357, '1.0000', '7.5869', '7.5869', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117653, '2022-09-16', 3058, 111039, 6696, NULL, '1.0000', '-47.3000', '-47.3000', '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 (117654, '2022-09-16', 1695, 111040, 6696, 62430, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117655, '2022-09-16', 9777, 111041, 6696, NULL, '1.0000', '22.9900', '22.9900', '30.2300', '30.2300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117656, '2022-09-16', 7411, 111042, 6696, NULL, '2.0000', '1.2819', '1.2819', '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 (117657, '2022-09-16', 2816, 111043, 6696, NULL, '2.0000', '0.8000', '0.8000', '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 (117658, '2022-09-16', 2213, 111044, 6696, 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 (117659, '2022-09-16', 1696, 111045, 6696, 42552, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117660, '2022-09-16', 1665, 111046, 6696, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117661, '2022-09-16', 1779, 111047, 6696, 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 (117662, '2022-09-16', 9683, 111048, 6696, 62481, '1.0000', '1.8021', '1.8021', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117663, '2022-09-16', 2821, 111049, 6696, NULL, '1.0000', '3.3676', '3.3676', '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 (117664, '2022-09-16', 1863, 111050, 6696, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117665, '2022-09-16', 9734, 111051, 6696, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '217.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117666, '2022-09-17', 3058, 111052, 6697, NULL, '2.0000', '-47.3000', '-47.3000', '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 (117667, '2022-09-17', 7569, 111053, 6697, NULL, '1.0000', '37.0000', '37.0000', '48.5000', '48.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117668, '2022-09-17', 1871, 111054, 6697, NULL, '15.0000', '-79.1764', '-79.1764', '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 (117669, '2022-09-17', 2582, 111055, 6697, NULL, '1.0000', '20.5000', '20.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 (117670, '2022-09-17', 1825, 111056, 6697, 62441, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117671, '2022-09-17', 1596, 111057, 6697, 19850, '1.0000', '2.0328', '2.0328', '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 (117672, '2022-09-17', 9856, 111058, 6697, NULL, '1.0000', '-4.4000', '-4.4000', '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 (117673, '2022-09-17', 8017, 111059, 6697, 62109, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117674, '2022-09-17', 2738, 111060, 6697, 60282, '2.0000', '9.3067', '9.3067', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117675, '2022-09-17', 8149, 111061, 6697, 58152, '1.0000', '7.1834', '7.1834', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117676, '2022-09-17', 7684, 111062, 6697, NULL, '1.0000', '9.0000', '9.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 (117677, '2022-09-17', 2916, 111063, 6697, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (117678, '2022-09-17', 2061, 111064, 6697, NULL, '1.0000', '-13.2193', '-13.2193', '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 (117679, '2022-09-17', 2167, 111065, 6697, NULL, '1.0000', '-1.6257', '-1.6257', '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 (117680, '2022-09-17', 9729, 111066, 6697, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117681, '2022-09-17', 1761, 111067, 6697, 62436, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117682, '2022-09-17', 2295, 111068, 6697, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117683, '2022-09-17', 9748, 111069, 6697, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117684, '2022-09-17', 1588, 111070, 6697, 55543, '1.0000', '5.6403', '5.6403', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117685, '2022-09-17', 7665, 111071, 6697, NULL, '1.0000', '7.9000', '7.9000', '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 (117686, '2022-09-17', 1699, 111072, 6697, NULL, '1.0000', '-5.0000', '-5.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 (117687, '2022-09-17', 7531, 111073, 6697, 52150, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117688, '2022-09-17', 2100, 111074, 6697, NULL, '1.0000', '0.4608', '0.4608', '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 (117689, '2022-09-17', 1399, 111075, 6697, 53651, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117690, '2022-09-17', 1871, 111076, 6697, NULL, '11.0000', '-79.1764', '-79.1764', '4.0000', '4.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 (117691, '2022-09-17', 2169, 111077, 6697, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117692, '2022-09-17', 2682, 111078, 6697, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '13.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117693, '2022-09-17', 9695, 111079, 6697, 62386, '1.0000', '5.5432', '5.5432', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117694, '2022-09-17', 10004, 111080, 6698, 62129, '10.0000', '2.5100', '2.5100', '3.0000', '3.0000', '134.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117695, '2022-09-17', 9726, 111081, 6698, 62100, '1.0000', '5.2010', '5.2010', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117696, '2022-09-17', 9729, 111082, 6698, 62094, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117697, '2022-09-17', 2948, 111083, 6698, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '85.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117698, '2022-09-17', 1805, 111084, 6698, NULL, '1.0000', '80.7776', '80.7776', '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 (117699, '2022-09-17', 9633, 111085, 6698, 61578, '1.0000', '7.9117', '7.9117', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117700, '2022-09-17', 2379, 111086, 6698, NULL, '1.0000', '-17.5498', '-17.5498', '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 (117701, '2022-09-17', 2283, 111087, 6698, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117702, '2022-09-17', 1369, 111088, 6698, 62152, '1.0000', '7.6286', '7.6286', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117703, '2022-09-17', 9213, 111089, 6698, 62487, '1.0000', '-3734.4070', '-3734.4070', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117704, '2022-09-17', 1841, 111090, 6698, NULL, '3.0000', '0.7630', '0.7630', '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 (117705, '2022-09-17', 1590, 111091, 6698, 62189, '3.0000', '2.4695', '2.4695', '3.5000', '3.5000', '233.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117706, '2022-09-17', 2643, 111092, 6698, 62478, '1.0000', '1.1080', '1.1080', '1.5000', '1.5000', '16.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117707, '2022-09-17', 1863, 111093, 6698, 62178, '2.0000', '1.5016', '1.5016', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117708, '2022-09-17', 7746, 111094, 6699, NULL, '2.0000', '2.8600', '2.8600', '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 (117709, '2022-09-17', 2169, 111095, 6699, 59849, '2.0000', '1.7455', '1.7455', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117710, '2022-09-17', 1446, 111096, 6700, NULL, '1.0000', '5.3416', '5.3416', '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 (117711, '2022-09-17', 2102, 111097, 6700, NULL, '1.0000', '-20.1000', '-20.1000', '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 (117712, '2022-09-17', 1369, 111098, 6701, 62152, '1.0000', '7.6286', '7.6286', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117713, '2022-09-17', 9807, 111099, 6701, 51216, '1.0000', '36.8000', '36.8000', '49.0000', '49.0000', '1.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117714, '2022-09-17', 1450, 111100, 6701, NULL, '10.0000', '0.8483', '0.8483', '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 (117715, '2022-09-17', 7533, 111101, 6701, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117716, '2022-09-17', 1488, 111102, 6701, 62081, '1.0000', '4.2964', '4.2964', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117717, '2022-09-17', 1612, 111103, 6701, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117718, '2022-09-17', 8208, 111104, 6701, NULL, '2.0000', '47.9541', '47.9541', '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 (117719, '2022-09-17', 9996, 111105, 6702, 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 (117720, '2022-09-17', 1761, 111106, 6703, 62436, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117721, '2022-09-17', 1551, 111107, 6704, 55797, '1.0000', '14.7700', '14.7700', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117722, '2022-09-17', 8444, 111108, 6704, 58612, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117723, '2022-09-17', 1493, 111109, 6704, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117724, '2022-09-17', 2169, 111110, 6704, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117725, '2022-09-17', 8744, 111111, 6704, 60510, '1.0000', '3.8415', '3.8415', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117726, '2022-09-17', 2221, 111112, 6704, 61601, '1.0000', '17.7772', '17.7772', '29.0000', '29.0000', '10.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117727, '2022-09-17', 1863, 111113, 6704, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117728, '2022-09-17', 2237, 111114, 6704, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117729, '2022-09-17', 2064, 111115, 6704, 5502, '1.0000', '4.2400', '4.2400', '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 (117730, '2022-09-17', 1374, 111116, 6704, 55798, '1.0000', '95.6984', '95.6984', '39.0000', '39.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117731, '2022-09-17', 2135, 111117, 6704, NULL, '1.0000', '2.2504', '2.2504', '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 (117732, '2022-09-17', 1819, 111118, 6704, 55755, '1.0000', '6.5815', '6.5815', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117733, '2022-09-17', 1383, 111119, 6704, 61619, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117734, '2022-09-17', 1602, 111120, 6704, 62256, '2.0000', '7.3836', '7.3836', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117735, '2022-09-17', 1804, 111121, 6704, 46603, '1.0000', '4.4470', '4.4470', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117736, '2022-09-17', 2384, 111122, 6704, 60032, '2.0000', '0.4392', '0.4392', '0.8000', '0.8000', '41.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117737, '2022-09-17', 2325, 111123, 6704, 60915, '1.0000', '6.1971', '6.1971', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117738, '2022-09-17', 7514, 111124, 6705, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117739, '2022-09-17', 7444, 111125, 6705, 62329, '1.0000', '4.5100', '4.5100', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117740, '2022-09-17', 9399, 111126, 6705, NULL, '1.0000', '0.9803', '0.9803', '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 (117741, '2022-09-17', 7317, 111127, 6705, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117742, '2022-09-17', 7753, 111128, 6705, 62559, '1.0000', '3.6453', '3.6453', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117743, '2022-09-17', 8017, 111129, 6705, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117744, '2022-09-17', 1846, 111130, 6705, 60782, '1.0000', '13.0954', '13.0954', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117745, '2022-09-17', 9092, 111131, 6705, 60813, '4.0000', '0.3167', '0.3167', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117746, '2022-09-17', 8878, 111132, 6705, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117747, '2022-09-17', 7753, 111133, 6705, 62559, '1.0000', '3.6453', '3.6453', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117748, '2022-09-17', 7915, 111134, 6705, NULL, '1.0000', '2.8000', '2.8000', '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 (117749, '2022-09-17', 9747, 111135, 6705, 60779, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117750, '2022-09-17', 9089, 111136, 6705, 62524, '1.0000', '6.7507', '6.7507', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117751, '2022-09-17', 7329, 111137, 6705, 29980, '1.0000', '19.3000', '19.3000', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117752, '2022-09-17', 9272, 111138, 6705, NULL, '1.0000', '3.1206', '3.1206', '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 (117753, '2022-09-17', 7762, 111139, 6705, 60797, '1.0000', '1.3010', '1.3010', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117754, '2022-09-17', 7959, 111140, 6705, 56660, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117755, '2022-09-17', 7385, 111141, 6705, 60459, '5.0000', '5.7239', '5.7239', '4.0000', '4.0000', '70.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117756, '2022-09-17', 9266, 111142, 6705, NULL, '1.0000', '-4.1667', '-4.1667', '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 (117757, '2022-09-17', 8304, 111143, 6705, 61870, '1.0000', '8.6320', '8.6320', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117758, '2022-09-17', 7753, 111144, 6705, 62559, '1.0000', '3.6453', '3.6453', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117759, '2022-09-17', 9274, 111145, 6705, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117760, '2022-09-17', 8677, 111146, 6705, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117761, '2022-09-17', 8063, 111147, 6705, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '71.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117762, '2022-09-17', 7509, 111148, 6705, 62298, '1.0000', '8.5881', '8.5881', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117763, '2022-09-17', 8451, 111149, 6705, 62291, '1.0000', '11.1000', '11.1000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117764, '2022-09-17', 9272, 111150, 6705, NULL, '1.0000', '3.1206', '3.1206', '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 (117765, '2022-09-17', 7385, 111151, 6705, 60459, '2.0000', '5.7239', '5.7239', '4.0000', '4.0000', '73.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117766, '2022-09-17', 7473, 111152, 6705, 61833, '5.0000', '0.5360', '0.5360', '0.7000', '0.7000', '38.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117767, '2022-09-17', 7514, 111153, 6705, 61871, '5.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117768, '2022-09-17', 8979, 111154, 6705, 60567, '1.0000', '0.8800', '0.8800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117769, '2022-09-17', 9638, 111155, 6705, 59104, '1.0000', '39.5180', '39.5180', '58.0000', '58.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117770, '2022-09-17', 7382, 111156, 6705, 61844, '1.0000', '8.7055', '8.7055', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117771, '2022-09-17', 7335, 111157, 6705, 61840, '1.0000', '16.9000', '16.9000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117772, '2022-09-17', 7557, 111158, 6705, NULL, '10.0000', '0.0714', '0.0714', '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 (117773, '2022-09-17', 7490, 111159, 6705, 60806, '20.0000', '2.2232', '2.2232', '0.5000', '0.5000', '150.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117774, '2022-09-17', 8714, 111160, 6705, 61904, '1.0000', '5.2100', '5.2100', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117775, '2022-09-17', 7756, 111161, 6705, 61902, '1.0000', '32.8291', '32.8291', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117776, '2022-09-17', 9290, 111162, 6705, NULL, '1.0000', '15.2700', '15.2700', '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 (117777, '2022-09-17', 8017, 111163, 6705, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117778, '2022-09-17', 7317, 111164, 6705, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117779, '2022-09-17', 7674, 111165, 6705, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117780, '2022-09-17', 7711, 111166, 6705, 62295, '1.0000', '51.7667', '51.7667', '74.0000', '74.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117781, '2022-09-17', 8918, 111167, 6705, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117782, '2022-09-17', 2457, 111168, 6705, 48319, '1.0000', '22.2500', '22.2500', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117783, '2022-09-17', 9175, 111169, 6705, NULL, '1.0000', '0.8900', '0.8900', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117784, '2022-09-17', 8849, 111170, 6705, NULL, '2.0000', '1.0700', '1.0700', '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 (117785, '2022-09-17', 9729, 111171, 6705, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117786, '2022-09-17', 2315, 111172, 6705, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '82.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117787, '2022-09-17', 7899, 111173, 6705, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117788, '2022-09-17', 7736, 111174, 6706, 61856, '1.0000', '25.2865', '25.2865', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117789, '2022-09-17', 7559, 111175, 6706, 59091, '1.0000', '13.6845', '13.6845', '14.5000', '14.5000', '11.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117790, '2022-09-17', 7544, 111176, 6706, NULL, '2.0000', '9.4300', '9.4300', '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 (117791, '2022-09-17', 1841, 111177, 6706, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '57.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117792, '2022-09-17', 8849, 111178, 6706, NULL, '1.0000', '1.0700', '1.0700', '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 (117793, '2022-09-17', 7411, 111179, 6706, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117794, '2022-09-17', 7714, 111180, 6706, NULL, '4.0000', '0.4200', '0.4200', '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 (117795, '2022-09-17', 7482, 111181, 6706, 61836, '1.0000', '4.7347', '4.7347', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117796, '2022-09-17', 7444, 111182, 6706, 62329, '1.0000', '4.5100', '4.5100', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117797, '2022-09-17', 9984, 111183, 6706, 62333, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117798, '2022-09-17', 7756, 111184, 6706, 61902, '1.0000', '32.8291', '32.8291', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117799, '2022-09-17', 2315, 111185, 6706, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '80.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117800, '2022-09-17', 2289, 111186, 6706, NULL, '2.0000', '4.0652', '4.0652', '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 (117801, '2022-09-17', 7917, 111187, 6706, 61747, '2.0000', '2.5067', '2.5067', '0.7000', '0.7000', '59.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117802, '2022-09-17', 8101, 111188, 6706, 61865, '1.0000', '2.5225', '2.5225', '3.5000', '3.5000', '39.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117803, '2022-09-17', 7886, 111189, 6706, 61876, '1.0000', '4.8599', '4.8599', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117804, '2022-09-17', 9821, 111190, 6706, 56590, '1.0000', '1.4500', '1.4500', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117805, '2022-09-17', 7482, 111191, 6706, 61836, '1.0000', '4.7347', '4.7347', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117806, '2022-09-17', 7704, 111192, 6706, NULL, '1.0000', '-1.5625', '-1.5625', '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 (117807, '2022-09-17', 9274, 111193, 6706, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117808, '2022-09-17', 7674, 111194, 6706, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117809, '2022-09-17', 7831, 111195, 6706, NULL, '1.0000', '22.8000', '22.8000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117810, '2022-09-17', 8127, 111196, 6706, NULL, '1.0000', '24.5300', '24.5300', '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 (117811, '2022-09-17', 7780, 111197, 6706, 62293, '1.0000', '16.1444', '16.1444', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117812, '2022-09-17', 7820, 111198, 6706, 62299, '1.0000', '17.4262', '17.4262', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117813, '2022-09-17', 1935, 111199, 6706, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '103.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117814, '2022-09-17', 7675, 111200, 6706, NULL, '1.0000', '-21.9809', '-21.9809', '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 (117815, '2022-09-17', 9456, 111201, 6706, 61948, '1.0000', '3.4963', '3.4963', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117816, '2022-09-17', 7672, 111202, 6706, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117817, '2022-09-17', 7666, 111203, 6706, 62332, '1.0000', '6.1134', '6.1134', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117818, '2022-09-17', 7473, 111204, 6706, 61833, '1.0000', '0.5360', '0.5360', '0.7000', '0.7000', '37.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117819, '2022-09-17', 7674, 111205, 6706, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117820, '2022-09-17', 8718, 111206, 6706, 56572, '1.0000', '16.4800', '16.4800', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117821, '2022-09-17', 8718, 111206, 6706, NULL, '1.0000', '16.4800', '16.4800', '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 (117822, '2022-09-17', 8813, 111207, 6706, NULL, '1.0000', '5.9000', '5.9000', '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 (117823, '2022-09-17', 3006, 111208, 6706, 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 (117824, '2022-09-17', 8482, 111209, 6706, 62567, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117825, '2022-09-17', 2891, 111210, 6706, 61740, '1.0000', '9.2658', '9.2658', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117826, '2022-09-17', 7753, 111211, 6706, 62559, '1.0000', '3.6453', '3.6453', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117827, '2022-09-17', 7889, 111212, 6706, NULL, '1.0000', '-8.6571', '-8.6571', '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 (117828, '2022-09-17', 8547, 111213, 6706, 56550, '1.0000', '2.5128', '2.5128', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117829, '2022-09-17', 8202, 111214, 6706, 56027, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117830, '2022-09-17', 9160, 111215, 6706, NULL, '1.0000', '1.3097', '1.3097', '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 (117831, '2022-09-17', 2825, 111216, 6706, 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 (117832, '2022-09-17', 7721, 111217, 6706, 55078, '2.0000', '6.3778', '6.3778', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 467);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117833, '2022-09-17', 7674, 111218, 6706, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117834, '2022-09-17', 7780, 111219, 6706, 62293, '1.0000', '16.1444', '16.1444', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117835, '2022-09-17', 8963, 111220, 6707, 62451, '1.0000', '16.1427', '16.1427', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117836, '2022-09-17', 1871, 111221, 6707, NULL, '10.0000', '-164.8810', '-164.8810', '4.0000', '4.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 (117837, '2022-09-17', 1355, 111222, 6707, 58208, '1.0000', '17.6200', '17.6200', '23.5000', '23.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117838, '2022-09-17', 8773, 111223, 6707, 62483, '1.0000', '4.0100', '4.0100', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117839, '2022-09-17', 2233, 111224, 6707, 62173, '1.0000', '26.7472', '26.7472', '44.0000', '44.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117840, '2022-09-17', 8772, 111225, 6707, 62474, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117841, '2022-09-17', 1912, 111226, 6707, NULL, '2.0000', '0.9741', '0.9741', '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 (117842, '2022-09-17', 2315, 111227, 6707, 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 (117843, '2022-09-17', 2169, 111228, 6707, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117844, '2022-09-17', 8883, 111229, 6707, NULL, '2.0000', '56.5500', '56.5500', '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 (117845, '2022-09-17', 2163, 111230, 6707, 62449, '1.0000', '43.4165', '43.4165', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117846, '2022-09-17', 1432, 111231, 6707, 62389, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117847, '2022-09-17', 2916, 111232, 6707, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (117848, '2022-09-17', 1871, 111233, 6707, NULL, '10.0000', '-164.8810', '-164.8810', '4.0000', '4.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 (117849, '2022-09-17', 1668, 111234, 6707, 60288, '1.0000', '20.0477', '20.0477', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117850, '2022-09-17', 8184, 111235, 6707, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (117851, '2022-09-17', 8638, 111236, 6707, NULL, '1.0000', '0.5254', '0.5254', '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 (117852, '2022-09-17', 1812, 111237, 6707, 62594, '1.0000', '9.9691', '9.9691', '12.5000', '12.5000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117853, '2022-09-17', 9740, 111238, 6707, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117854, '2022-09-17', 2327, 111239, 6707, 39828, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '36.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117855, '2022-09-17', 2302, 111240, 6707, 62595, '1.0000', '6.0936', '6.0936', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117856, '2022-09-17', 2655, 111241, 6707, NULL, '1.0000', '-644.0070', '-644.0070', '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 (117857, '2022-09-17', 2169, 111242, 6707, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117858, '2022-09-17', 1856, 111243, 6707, NULL, '1.0000', '155.0099', '155.0099', '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 (117859, '2022-09-17', 1387, 111244, 6707, 61564, '1.0000', '15.5976', '15.5976', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117860, '2022-09-17', 2357, 111245, 6707, 62427, '1.0000', '4.2955', '4.2955', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117861, '2022-09-17', 1330, 111246, 6707, NULL, '3.0000', '2.8000', '2.8000', '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 (117862, '2022-09-17', 1337, 111247, 6707, 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 (117863, '2022-09-17', 1334, 111248, 6707, 53239, '4.0000', '0.8419', '0.8419', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117864, '2022-09-17', 1765, 111249, 6707, 53668, '1.0000', '5.4760', '5.4760', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117865, '2022-09-17', 2916, 111250, 6707, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (117866, '2022-09-17', 9740, 111251, 6707, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117867, '2022-09-17', 1863, 111252, 6707, 62178, '5.0000', '1.5016', '1.5016', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117868, '2022-09-17', 2506, 111253, 6707, NULL, '1.0000', '-15.8639', '-15.8639', '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 (117869, '2022-09-17', 1501, 111254, 6707, NULL, '1.0000', '-0.6640', '-0.6640', '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 (117870, '2022-09-17', 1410, 111255, 6707, NULL, '1.0000', '298.0003', '298.0003', '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 (117871, '2022-09-17', 2289, 111256, 6707, NULL, '2.0000', '0.3611', '0.3611', '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 (117872, '2022-09-17', 2135, 111257, 6707, NULL, '1.0000', '-0.2588', '-0.2588', '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 (117873, '2022-09-17', 1841, 111258, 6707, NULL, '2.0000', '0.7630', '0.7630', '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 (117874, '2022-09-17', 2821, 111259, 6707, NULL, '1.0000', '3.0485', '3.0485', '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 (117875, '2022-09-17', 8775, 111260, 6707, 61490, '1.0000', '2.3129', '2.3129', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117876, '2022-09-17', 2643, 111261, 6707, 62478, '1.0000', '1.1080', '1.1080', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117877, '2022-09-17', 7368, 111262, 6707, 50521, '1.0000', '14.7500', '14.7500', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117878, '2022-09-17', 1888, 111263, 6707, 62600, '1.0000', '19.2375', '19.2375', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117879, '2022-09-17', 1761, 111264, 6707, 62436, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117880, '2022-09-17', 9740, 111265, 6707, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117881, '2022-09-17', 9996, 111266, 6707, 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 (117882, '2022-09-17', 1383, 111267, 6707, 62134, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117883, '2022-09-17', 2169, 111268, 6707, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117884, '2022-09-17', 9996, 111269, 6707, 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 (117885, '2022-09-17', 2169, 111270, 6707, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117886, '2022-09-17', 1529, 111271, 6707, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117887, '2022-09-17', 9738, 111272, 6707, 62435, '1.0000', '8.7000', '8.7000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117888, '2022-09-17', 2237, 111273, 6707, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117889, '2022-09-17', 2169, 111274, 6707, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117890, '2022-09-17', 1499, 111275, 6707, 62139, '2.0000', '0.5090', '0.5090', '0.7000', '0.7000', '31.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117891, '2022-09-17', 2251, 111276, 6708, 60469, '1.0000', '13.0059', '13.0059', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117892, '2022-09-17', 8878, 111277, 6708, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117893, '2022-09-17', 7743, 111278, 6708, NULL, '2.0000', '2491602.9694', '2491602.9694', '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 (117894, '2022-09-17', 7867, 111279, 6708, NULL, '2.0000', '2.3130', '2.3130', '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 (117895, '2022-09-17', 7514, 111280, 6708, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117896, '2022-09-17', 7954, 111281, 6708, 61938, '3.0000', '-133727.7176', '-133727.7176', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117897, '2022-09-17', 7954, 111281, 6708, NULL, '1.0000', '-133727.7176', '-133727.7176', '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 (117898, '2022-09-17', 7999, 111282, 6708, 61941, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117899, '2022-09-17', 1935, 111283, 6708, 61805, '2.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '101.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117900, '2022-09-17', 8097, 111284, 6708, 61845, '2.0000', '14.9186', '14.9186', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117901, '2022-09-17', 9734, 111285, 6709, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '214.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117902, '2022-09-17', 1863, 111286, 6709, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117903, '2022-09-17', 8746, 111287, 6709, 62476, '2.0000', '3.5829', '3.5829', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117904, '2022-09-17', 2315, 111288, 6709, NULL, '2.0000', '0.7700', '0.7700', '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 (117905, '2022-09-17', 9740, 111289, 6709, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117906, '2022-09-17', 7509, 111290, 6709, 39804, '1.0000', '6.6000', '6.6000', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117907, '2022-09-17', 8184, 111291, 6709, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (117908, '2022-09-17', 7612, 111292, 6709, 62592, '2.0000', '1.3300', '1.3300', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117909, '2022-09-17', 2085, 111293, 6709, 60337, '5.0000', '1.4119', '1.4119', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117910, '2022-09-17', 1945, 111294, 6709, 60264, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117911, '2022-09-17', 1888, 111295, 6709, 62600, '1.0000', '19.2375', '19.2375', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117912, '2022-09-17', 8772, 111296, 6709, 62474, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117913, '2022-09-17', 8883, 111297, 6709, NULL, '4.0000', '56.5500', '56.5500', '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 (117914, '2022-09-17', 3059, 111298, 6710, NULL, '5.0000', '0.4500', '0.4500', '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 (117915, '2022-09-17', 2758, 111299, 6710, 49542, '1.0000', '1.2400', '1.2400', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117916, '2022-09-17', 1602, 111300, 6710, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117917, '2022-09-17', 2386, 111301, 6710, 61688, '1.0000', '3.0037', '3.0037', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117918, '2022-09-17', 2643, 111302, 6710, 62497, '1.0000', '1.0336', '1.0336', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117919, '2022-09-17', 7954, 111303, 6710, 56718, '4.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117920, '2022-09-17', 2317, 111304, 6710, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117921, '2022-09-17', 1856, 111305, 6710, 62252, '1.0000', '5.3927', '5.3927', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117922, '2022-09-17', 8677, 111306, 6710, 62232, '2.0000', '2.0894', '2.0894', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117923, '2022-09-17', 2858, 111307, 6710, NULL, '3.0000', '1.0000', '1.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 (117924, '2022-09-17', 7756, 111308, 6710, NULL, '1.0000', '26.9296', '26.9296', '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 (117925, '2022-09-17', 9891, 111309, 6710, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117926, '2022-09-17', 2893, 111310, 6710, 62224, '1.0000', '6.8008', '6.8008', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117927, '2022-09-17', 9214, 111311, 6710, 56835, '1.0000', '17.0000', '17.0000', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117928, '2022-09-17', 2237, 111312, 6710, 58590, '1.0000', '1.3368', '1.3368', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117929, '2022-09-17', 7339, 111313, 6710, 56741, '10.0000', '-3.8719', '-3.8719', '0.9000', '0.9000', '69.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117930, '2022-09-17', 2345, 111314, 6710, 56725, '1.0000', '4.9044', '4.9044', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117931, '2022-09-17', 8052, 111315, 6710, NULL, '1.0000', '29.0000', '29.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 (117932, '2022-09-17', 7917, 111316, 6710, NULL, '4.0000', '5.0000', '5.0000', '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 (117933, '2022-09-17', 7917, 111317, 6710, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (117934, '2022-09-17', 7591, 111318, 6710, 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 (117935, '2022-09-17', 2251, 111319, 6710, 60076, '2.0000', '12.8798', '12.8798', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117936, '2022-09-17', 1812, 111320, 6710, 61630, '1.0000', '8.6987', '8.6987', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117937, '2022-09-17', 1690, 111321, 6710, 59949, '1.0000', '7.1607', '7.1607', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117938, '2022-09-17', 1479, 111322, 6710, 60044, '1.0000', '49.5000', '49.5000', '68.0000', '68.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117939, '2022-09-17', 2169, 111323, 6710, 62205, '1.0000', '1.4279', '1.4279', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117940, '2022-09-18', 2948, 111324, 6711, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '84.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117941, '2022-09-18', 9482, 111325, 6711, 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 (117942, '2022-09-18', 1837, 111326, 6711, 62616, '2.0000', '1.0463', '1.0463', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117943, '2022-09-18', 1409, 111327, 6711, 62607, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117944, '2022-09-18', 2237, 111328, 6711, 62137, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117945, '2022-09-18', 1856, 111329, 6711, NULL, '1.0000', '155.0099', '155.0099', '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 (117946, '2022-09-18', 1528, 111330, 6711, NULL, '2.0000', '3453.8937', '3453.8937', '8.5000', '8.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 (117947, '2022-09-18', 8638, 111331, 6711, NULL, '1.0000', '0.5254', '0.5254', '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 (117948, '2022-09-18', 9732, 111332, 6711, 59896, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117949, '2022-09-18', 1310, 111333, 6711, 59901, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '16.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117950, '2022-09-18', 1609, 111334, 6711, 19393, '1.0000', '33.7500', '33.7500', '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 (117951, '2022-09-18', 8982, 111335, 6711, NULL, '1.0000', '11.3489', '11.3489', '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 (117952, '2022-09-18', 9213, 111336, 6711, 62487, '2.0000', '-3734.4070', '-3734.4070', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 539);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117953, '2022-09-18', 3025, 111337, 6711, 58059, '2.0000', '2.4395', '2.4395', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117954, '2022-09-18', 2908, 111338, 6711, 55931, '2.0000', '0.3518', '0.3518', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117955, '2022-09-18', 9740, 111339, 6711, 55951, '2.0000', '0.6685', '0.6685', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117956, '2022-09-18', 1771, 111340, 6712, 62098, '1.0000', '7.0319', '7.0319', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117957, '2022-09-18', 1425, 111341, 6712, NULL, '1.0000', '1666.9347', '1666.9347', '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 (117958, '2022-09-18', 8771, 111342, 6712, 61489, '1.0000', '7.0198', '7.0198', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117959, '2022-09-18', 9866, 111343, 6712, 62111, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117960, '2022-09-18', 2821, 111344, 6712, NULL, '1.0000', '1.3030', '1.3030', '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 (117961, '2022-09-18', 2948, 111345, 6712, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '83.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117962, '2022-09-18', 2503, 111346, 6712, 62390, '1.0000', '16.9818', '16.9818', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117963, '2022-09-18', 2354, 111347, 6712, NULL, '1.0000', '74.8792', '74.8792', '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 (117964, '2022-09-18', 2821, 111348, 6712, NULL, '1.0000', '1.3030', '1.3030', '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 (117965, '2022-09-18', 2693, 111349, 6712, 57798, '1.0000', '23.3886', '23.3886', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117966, '2022-09-18', 3016, 111350, 6713, 57723, '1.0000', '13.9139', '13.9139', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117967, '2022-09-18', 9683, 111351, 6713, 62704, '1.0000', '2.2731', '2.2731', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117968, '2022-09-18', 2169, 111352, 6713, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117969, '2022-09-18', 2416, 111353, 6713, 62700, '1.0000', '1.3942', '1.3942', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117970, '2022-09-18', 2643, 111354, 6713, 62701, '1.0000', '1.1357', '1.1357', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117971, '2022-09-18', 1603, 111355, 6713, NULL, '1.0000', '55.1600', '55.1600', '96.0000', '96.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117972, '2022-09-18', 2656, 111356, 6713, 62703, '1.0000', '1.8878', '1.8878', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117973, '2022-09-18', 7737, 111357, 6713, NULL, '1.0000', '3.0000', '3.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 (117974, '2022-09-18', 1863, 111358, 6713, 62178, '1.0000', '1.5016', '1.5016', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117975, '2022-09-18', 2169, 111359, 6713, 59849, '1.0000', '1.7455', '1.7455', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117976, '2022-09-18', 2061, 111360, 6714, NULL, '1.0000', '-13.2193', '-13.2193', '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 (117977, '2022-09-18', 2655, 111361, 6714, NULL, '1.0000', '-3904.0420', '-3904.0420', '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 (117978, '2022-09-18', 1805, 111362, 6715, NULL, '1.0000', '80.7776', '80.7776', '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 (117979, '2022-09-18', 9740, 111363, 6716, 55951, '1.0000', '0.6685', '0.6685', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117980, '2022-09-18', 9469, 111364, 6717, NULL, '2.0000', '2.3000', '2.3000', '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 (117981, '2022-09-18', 7745, 111365, 6717, NULL, '2.0000', '6.7000', '6.7000', '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 (117982, '2022-09-18', 7317, 111366, 6717, NULL, '1.0000', '19.5500', '19.5500', '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 (117983, '2022-09-18', 7666, 111367, 6717, NULL, '1.0000', '3.6000', '3.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 (117984, '2022-09-18', 1715, 111368, 6717, 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 (117985, '2022-09-18', 8006, 111369, 6717, NULL, '1.0000', '30.0000', '30.0000', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117986, '2022-09-18', 2069, 111370, 6717, 5571, '-21.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117987, '2022-09-18', 2069, 111370, 6717, NULL, '22.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117988, '2022-09-18', 9734, 111371, 6717, NULL, '3.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (117989, '2022-09-18', 7518, 111372, 6717, NULL, '1.0000', '7.8200', '7.8200', '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 (117990, '2022-09-18', 2761, 111373, 6717, NULL, '1.0000', '6.0000', '6.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 (117991, '2022-09-18', 8068, 111374, 6717, NULL, '1.0000', '8.7900', '8.7900', '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 (117992, '2022-09-18', 2965, 111375, 6717, 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 (117993, '2022-09-18', 9791, 111376, 6717, NULL, '2.0000', '0.9000', '0.9000', '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 (117994, '2022-09-18', 7784, 111377, 6717, NULL, '2.0000', '4.2300', '4.2300', '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 (117995, '2022-09-18', 7458, 111378, 6717, NULL, '5.0000', '1.7700', '1.7700', '2.5000', '2.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 (117996, '2022-09-18', 7675, 111379, 6717, NULL, '1.0000', '11.4300', '11.4300', '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 (117997, '2022-09-18', 8097, 111380, 6717, NULL, '4.0000', '3.4000', '3.4000', '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 (117998, '2022-09-18', 8677, 111381, 6717, NULL, '2.0000', '1.2800', '1.2800', '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 (117999, '2022-09-18', 2295, 111382, 6717, 2954, '-76.0000', '0.9600', '0.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 (118000, '2022-09-18', 2295, 111382, 6717, NULL, '78.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118001, '2022-09-18', 7781, 111383, 6717, NULL, '1.0000', '4.2500', '4.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 (118002, '2022-09-18', 2315, 111384, 6717, 2735, '-675.0000', '0.3300', '0.3300', '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 (118003, '2022-09-18', 2315, 111384, 6717, NULL, '676.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-676.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118004, '2022-09-18', 7640, 111385, 6717, 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 (118005, '2022-09-18', 2506, 111386, 6717, 16244, '-45.0000', '3.4900', '3.4900', '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 (118006, '2022-09-18', 2506, 111386, 6717, NULL, '46.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118007, '2022-09-18', 7558, 111387, 6717, NULL, '10.0000', '1.9700', '1.9700', '4.0000', '4.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 (118008, '2022-09-18', 1622, 111388, 6717, 8739, '-9.0000', '44.8492', '44.8492', '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 (118009, '2022-09-18', 1622, 111388, 6717, NULL, '10.0000', '44.8492', '44.8492', '40.0000', '40.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 (118010, '2022-09-18', 7886, 111389, 6717, NULL, '1.0000', '4.5000', '4.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 (118011, '2022-09-18', 2486, 111390, 6717, 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 (118012, '2022-09-18', 8596, 111391, 6717, 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 (118013, '2022-09-18', 7780, 111392, 6717, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118014, '2022-09-18', 1501, 111393, 6717, NULL, '1.0000', '2.0500', '2.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 (118015, '2022-09-18', 7317, 111394, 6717, NULL, '1.0000', '19.5500', '19.5500', '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 (118016, '2022-09-18', 8172, 111395, 6717, NULL, '1.0000', '40.7000', '40.7000', '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 (118017, '2022-09-18', 7412, 111396, 6717, NULL, '1.0000', '1.5200', '1.5200', '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 (118018, '2022-09-18', 8966, 111397, 6717, NULL, '1.0000', '6.8500', '6.8500', '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 (118019, '2022-09-18', 7411, 111398, 6717, NULL, '4.0000', '1.3500', '1.3500', '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 (118020, '2022-09-18', 7753, 111399, 6717, NULL, '1.0000', '3.4000', '3.4000', '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 (118021, '2022-09-18', 1912, 111400, 6717, NULL, '2.0000', '0.3200', '0.3200', '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 (118022, '2022-09-18', 2315, 111401, 6717, 2735, '-675.0000', '0.3300', '0.3300', '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 (118023, '2022-09-18', 2315, 111401, 6717, NULL, '676.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-676.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118024, '2022-09-18', 7562, 111402, 6717, NULL, '2.0000', '5.5300', '5.5300', '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 (118025, '2022-09-18', 7556, 111403, 6717, 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 (118026, '2022-09-18', 7691, 111404, 6717, NULL, '1.0000', '4.1300', '4.1300', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118027, '2022-09-18', 9751, 111405, 6717, 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 (118028, '2022-09-18', 7868, 111406, 6717, NULL, '2.0000', '28.7600', '28.7600', '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 (118029, '2022-09-18', 7547, 111407, 6717, NULL, '2.0000', '0.0000', '0.0000', '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 (118030, '2022-09-18', 7641, 111408, 6717, NULL, '1.0000', '1.9000', '1.9000', '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 (118031, '2022-09-18', 7808, 111409, 6717, NULL, '1.0000', '13.9000', '13.9000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118032, '2022-09-18', 1845, 111410, 6718, 61786, '1.0000', '22.3023', '22.3023', '30.5000', '30.5000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118033, '2022-09-18', 8979, 111411, 6719, 60567, '1.0000', '0.8800', '0.8800', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118034, '2022-09-18', 8243, 111412, 6719, 61802, '2.0000', '1.1400', '1.1400', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118035, '2022-09-18', 7999, 111413, 6719, 61941, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118036, '2022-09-18', 7780, 111414, 6719, 62293, '1.0000', '16.1444', '16.1444', '20.5000', '20.5000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118037, '2022-09-18', 7333, 111415, 6719, 61921, '1.0000', '13.3704', '13.3704', '5.5000', '5.5000', '31.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118038, '2022-09-18', 8878, 111416, 6719, 61810, '2.0000', '0.3106', '0.3106', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118039, '2022-09-18', 7743, 111417, 6719, NULL, '1.0000', '2491602.9694', '2491602.9694', '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 (118040, '2022-09-18', 7444, 111418, 6719, 62329, '1.0000', '4.5100', '4.5100', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118041, '2022-09-18', 1501, 111419, 6719, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118042, '2022-09-18', 8097, 111420, 6719, 61845, '3.0000', '14.9186', '14.9186', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118043, '2022-09-18', 7527, 111421, 6719, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '80.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118044, '2022-09-18', 7411, 111422, 6719, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118045, '2022-09-18', 7730, 111423, 6719, 62568, '3.0000', '0.1050', '0.1050', '0.2000', '0.2000', '97.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118046, '2022-09-18', 9092, 111424, 6719, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '46.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118047, '2022-09-18', 7859, 111425, 6719, 61801, '1.0000', '14.0998', '14.0998', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118048, '2022-09-18', 7780, 111426, 6719, 62293, '1.0000', '16.1444', '16.1444', '20.5000', '20.5000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118049, '2022-09-18', 1771, 111427, 6719, 39531, '1.0000', '11.9058', '11.9058', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118050, '2022-09-18', 7518, 111428, 6719, 61784, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118051, '2022-09-18', 7959, 111429, 6719, 56660, '1.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118052, '2022-09-18', 7668, 111430, 6719, 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 (118053, '2022-09-18', 9736, 111431, 6719, 61906, '1.0000', '4.7288', '4.7288', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118054, '2022-09-18', 9821, 111432, 6719, 56590, '1.0000', '1.4500', '1.4500', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118055, '2022-09-18', 9761, 111433, 6719, 46939, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118056, '2022-09-18', 7746, 111434, 6719, 59097, '2.0000', '1.3400', '1.3400', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118057, '2022-09-18', 7509, 111435, 6719, 62298, '1.0000', '8.5881', '8.5881', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118058, '2022-09-18', 7514, 111436, 6719, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118059, '2022-09-18', 8052, 111437, 6719, 59124, '6.0000', '37.7100', '37.7100', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118060, '2022-09-18', 7447, 111438, 6719, NULL, '9.0000', '30.5060', '30.5060', '2.5000', '2.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 (118061, '2022-09-18', 7411, 111439, 6719, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118062, '2022-09-18', 7629, 111440, 6719, 60785, '1.0000', '186.8000', '186.8000', '246.5000', '246.5000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118063, '2022-09-18', 7819, 111441, 6719, 62301, '1.0000', '12.8837', '12.8837', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118064, '2022-09-18', 7674, 111442, 6719, 61832, '3.0000', '46.3674', '46.3674', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118065, '2022-09-18', 9274, 111443, 6719, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118066, '2022-09-18', 7852, 111444, 6719, 62307, '1.0000', '24.7508', '24.7508', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118067, '2022-09-18', 7765, 111445, 6719, NULL, '3.0000', '16.0000', '16.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 (118068, '2022-09-18', 7524, 111446, 6719, 62561, '2.0000', '4.9840', '4.9840', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118069, '2022-09-18', 9187, 111447, 6719, NULL, '1.0000', '18.9000', '18.9000', '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 (118070, '2022-09-18', 2656, 111448, 6719, NULL, '1.0000', '1.7540', '1.7540', '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 (118071, '2022-09-18', 2237, 111449, 6720, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118072, '2022-09-18', 1665, 111450, 6720, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118073, '2022-09-18', 7403, 111451, 6720, 55724, '2.0000', '1.0100', '1.0100', '1.3000', '1.3000', '47.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118074, '2022-09-18', 1946, 111452, 6720, NULL, '1.0000', '-12.3249', '-12.3249', '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 (118075, '2022-09-18', 9469, 111453, 6720, NULL, '2.0000', '5.5270', '5.5270', '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 (118076, '2022-09-18', 2004, 111454, 6720, 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 (118077, '2022-09-18', 8773, 111455, 6720, 62706, '1.0000', '4.0500', '4.0500', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118078, '2022-09-18', 9683, 111456, 6720, 62704, '1.0000', '2.2731', '2.2731', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118079, '2022-09-18', 1837, 111457, 6720, 62682, '1.0000', '1.1490', '1.1490', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118080, '2022-09-18', 2416, 111458, 6720, 62700, '1.0000', '1.3942', '1.3942', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118081, '2022-09-18', 9878, 111459, 6720, NULL, '1.0000', '9.6000', '9.6000', '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 (118082, '2022-09-18', 2491, 111460, 6720, 62838, '1.0000', '166.6000', '166.6000', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118083, '2022-09-18', 1640, 111461, 6720, NULL, '1.0000', '2.4995', '2.4995', '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 (118084, '2022-09-18', 2916, 111462, 6720, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (118085, '2022-09-18', 1383, 111463, 6720, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118086, '2022-09-18', 2302, 111464, 6720, 62819, '1.0000', '5.4776', '5.4776', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118087, '2022-09-18', 2950, 111465, 6720, NULL, '3.0000', '1.4000', '1.4000', '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 (118088, '2022-09-18', 3044, 111466, 6720, 62830, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118089, '2022-09-18', 7756, 111467, 6720, NULL, '1.0000', '2.5000', '2.5000', '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 (118090, '2022-09-18', 2738, 111468, 6720, 60282, '2.0000', '9.3067', '9.3067', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118091, '2022-09-18', 8638, 111469, 6720, NULL, '1.0000', '0.5254', '0.5254', '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 (118092, '2022-09-18', 2656, 111470, 6720, 62703, '1.0000', '1.8878', '1.8878', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118093, '2022-09-18', 1695, 111471, 6720, 62853, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118094, '2022-09-18', 9740, 111472, 6720, 62840, '2.0000', '0.6695', '0.6695', '2.0000', '2.0000', '98.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118095, '2022-09-18', 2821, 111473, 6720, NULL, '1.0000', '1.3030', '1.3030', '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 (118096, '2022-09-18', 9482, 111474, 6720, 62713, '3.0000', '1.2143', '1.2143', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118097, '2022-09-18', 2384, 111475, 6720, NULL, '1.0000', '-5.5392', '-5.5392', '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 (118098, '2022-09-18', 1665, 111476, 6720, 62363, '3.0000', '1.5573', '1.5573', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118099, '2022-09-18', 7593, 111477, 6720, NULL, '1.0000', '0.8000', '0.8000', '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 (118100, '2022-09-18', 8595, 111478, 6720, NULL, '2.0000', '-3.2120', '-3.2120', '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 (118101, '2022-09-18', 1588, 111479, 6720, 55543, '1.0000', '5.6403', '5.6403', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118102, '2022-09-18', 1863, 111480, 6720, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118103, '2022-09-18', 2169, 111481, 6720, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118104, '2022-09-18', 9821, 111482, 6720, 62142, '1.0000', '1.6500', '1.6500', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118105, '2022-09-18', 1945, 111483, 6720, 55705, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118106, '2022-09-18', 9735, 111484, 6720, 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 (118107, '2022-09-18', 2315, 111485, 6720, 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 (118108, '2022-09-18', 1602, 111486, 6720, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '39.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118109, '2022-09-18', 2315, 111487, 6720, NULL, '1.0000', '0.7700', '0.7700', '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 (118110, '2022-09-18', 7457, 111488, 6720, NULL, '1.0000', '2.3500', '2.3500', '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 (118111, '2022-09-18', 2821, 111489, 6720, NULL, '1.0000', '1.3030', '1.3030', '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 (118112, '2022-09-18', 1872, 111490, 6720, 59884, '1.0000', '11.2454', '11.2454', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118113, '2022-09-18', 1837, 111491, 6720, 62682, '3.0000', '1.1490', '1.1490', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118114, '2022-09-18', 2607, 111492, 6720, NULL, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118115, '2022-09-18', 1368, 111493, 6720, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118116, '2022-09-18', 2405, 111494, 6720, 37770, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '7.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118117, '2022-09-18', 2167, 111495, 6720, NULL, '2.0000', '-1.6257', '-1.6257', '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 (118118, '2022-09-18', 2169, 111496, 6720, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118119, '2022-09-18', 1665, 111497, 6720, 62363, '2.0000', '1.5573', '1.5573', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118120, '2022-09-18', 8481, 111498, 6720, NULL, '1.0000', '32.3567', '32.3567', '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 (118121, '2022-09-18', 2384, 111499, 6720, NULL, '3.0000', '-5.5392', '-5.5392', '0.8000', '0.8000', '-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 (118122, '2022-09-18', 9482, 111500, 6720, 62713, '2.0000', '1.2143', '1.2143', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118123, '2022-09-18', 1912, 111501, 6720, 62852, '2.0000', '0.6540', '0.6540', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118124, '2022-09-18', 9683, 111502, 6720, 62704, '1.0000', '2.2731', '2.2731', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118125, '2022-09-18', 9740, 111503, 6720, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118126, '2022-09-18', 9695, 111504, 6720, 62670, '1.0000', '5.5620', '5.5620', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118127, '2022-09-18', 1785, 111505, 6720, 62685, '1.0000', '17.8504', '17.8504', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118128, '2022-09-18', 9922, 111506, 6720, 58232, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118129, '2022-09-18', 2108, 111507, 6720, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118130, '2022-09-18', 9695, 111508, 6720, 62670, '1.0000', '5.5620', '5.5620', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118131, '2022-09-18', 1521, 111509, 6720, 62849, '1.0000', '2857.3077', '2857.3077', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118132, '2022-09-18', 7453, 111510, 6720, NULL, '1.0000', '21.6500', '21.6500', '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 (118133, '2022-09-18', 9997, 111511, 6720, 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 (118134, '2022-09-18', 2167, 111512, 6720, NULL, '1.0000', '-1.6257', '-1.6257', '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 (118135, '2022-09-18', 7954, 111513, 6720, 62424, '5.0000', '1.6365', '1.6365', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118136, '2022-09-18', 1501, 111514, 6721, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118137, '2022-09-18', 10004, 111515, 6721, 61894, '1.0000', '2.5100', '2.5100', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118138, '2022-09-18', 7886, 111516, 6721, 61876, '1.0000', '4.8599', '4.8599', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118139, '2022-09-18', 7411, 111517, 6721, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118140, '2022-09-18', 8918, 111518, 6721, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118141, '2022-09-18', 8155, 111519, 6721, NULL, '2.0000', '65.0000', '65.0000', '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 (118142, '2022-09-18', 7641, 111520, 6721, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118143, '2022-09-18', 1935, 111521, 6721, 61805, '2.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118144, '2022-09-18', 1935, 111522, 6721, 61805, '2.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118145, '2022-09-18', 7708, 111523, 6721, 62286, '1.0000', '8.5118', '8.5118', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118146, '2022-09-18', 9734, 111524, 6721, 61746, '3.0000', '0.3316', '0.3316', '0.7000', '0.7000', '184.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118147, '2022-09-18', 7411, 111525, 6721, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118148, '2022-09-18', 1935, 111526, 6721, 61805, '4.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '97.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118149, '2022-09-18', 8566, 111527, 6721, 60814, '1.0000', '-35666.0097', '-35666.0097', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118150, '2022-09-18', 2655, 111528, 6722, 62495, '1.0000', '7.2019', '7.2019', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118151, '2022-09-18', 1602, 111529, 6722, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118152, '2022-09-18', 1863, 111530, 6722, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118153, '2022-09-18', 2344, 111531, 6722, 62214, '1.0000', '19.9095', '19.9095', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118154, '2022-09-18', 2169, 111532, 6722, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118155, '2022-09-18', 3064, 111533, 6722, 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 (118156, '2022-09-18', 2379, 111534, 6722, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118157, '2022-09-18', 1863, 111535, 6722, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118158, '2022-09-18', 7385, 111536, 6722, 57945, '1.0000', '2.6553', '2.6553', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118159, '2022-09-18', 2068, 111537, 6722, 62744, '1.0000', '13.4054', '13.4054', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118160, '2022-09-18', 1812, 111538, 6722, 62809, '1.0000', '8.8152', '8.8152', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118161, '2022-09-18', 1807, 111539, 6722, NULL, '2.0000', '-3.9727', '-3.9727', '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 (118162, '2022-09-18', 9628, 111540, 6722, 40391, '1.0000', '46.1200', '46.1200', '55.0000', '55.0000', '5.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118163, '2022-09-18', 8184, 111541, 6722, 54394, '10.0000', '2.6350', '2.6350', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118164, '2022-09-18', 1755, 111542, 6722, 32881, '1.0000', '5.6333', '5.6333', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118165, '2022-09-18', 1371, 111543, 6722, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118166, '2022-09-18', 1840, 111544, 6722, 62749, '1.0000', '0.2400', '0.2400', '0.5000', '0.5000', '99.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118167, '2022-09-18', 2289, 111545, 6722, 62763, '1.0000', '0.2648', '0.2648', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118168, '2022-09-18', 2169, 111546, 6722, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118169, '2022-09-18', 9891, 111547, 6722, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118170, '2022-09-18', 1783, 111548, 6722, 62632, '3.0000', '3.4274', '3.4274', '13.5000', '13.5000', '6.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118171, '2022-09-18', 1715, 111549, 6722, 62787, '1.0000', '7.4881', '7.4881', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118172, '2022-09-18', 1647, 111550, 6722, 59985, '1.0000', '5.8258', '5.8258', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118173, '2022-09-18', 7459, 111551, 6722, NULL, '2.0000', '4.5753', '4.5753', '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 (118174, '2022-09-18', 1602, 111552, 6722, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118175, '2022-09-18', 9967, 111553, 6722, 59051, '1.0000', '6.6000', '6.6000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118176, '2022-09-18', 2169, 111554, 6722, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118177, '2022-09-18', 7385, 111555, 6722, 57945, '1.0000', '2.6553', '2.6553', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118178, '2022-09-18', 2302, 111556, 6722, 61671, '1.0000', '5.1974', '5.1974', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118179, '2022-09-18', 1625, 111557, 6722, 60052, '2.0000', '46.4600', '46.4600', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118180, '2022-09-18', 1935, 111558, 6722, 62635, '1.0000', '1.1799', '1.1799', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118181, '2022-09-18', 2481, 111559, 6722, 5193, '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 (118182, '2022-09-18', 2069, 111560, 6722, 62222, '1.0000', '6.0498', '6.0498', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118183, '2022-09-18', 1342, 111561, 6722, 58769, '1.0000', '9.1791', '9.1791', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118184, '2022-09-18', 1383, 111562, 6722, 62717, '1.0000', '5.7778', '5.7778', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118185, '2022-09-18', 7411, 111563, 6722, NULL, '1.0000', '1.5882', '1.5882', '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 (118186, '2022-09-18', 7385, 111564, 6722, 57945, '4.0000', '2.6553', '2.6553', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118187, '2022-09-18', 1308, 111565, 6722, 46782, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118188, '2022-09-18', 1308, 111566, 6722, 46782, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118189, '2022-09-18', 1763, 111567, 6722, 60050, '2.0000', '5.0170', '5.0170', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118190, '2022-09-18', 10006, 111568, 6722, 61692, '1.0000', '12.9800', '12.9800', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118191, '2022-09-18', 7954, 111569, 6722, 56718, '1.0000', '-21.6151', '-21.6151', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118192, '2022-09-18', 1308, 111570, 6722, 46782, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118193, '2022-09-18', 9840, 111571, 6722, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118194, '2022-09-18', 9089, 111572, 6722, 60921, '2.0000', '5.4520', '5.4520', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118195, '2022-09-18', 2260, 111573, 6722, 62198, '2.0000', '4.8731', '4.8731', '7.0000', '7.0000', '23.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118196, '2022-09-18', 2850, 111574, 6722, 61696, '1.0000', '7.4451', '7.4451', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118197, '2022-09-18', 9979, 111575, 6723, NULL, '1.0000', '13.9000', '13.9000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118198, '2022-09-18', 2655, 111576, 6723, 62495, '1.0000', '7.2019', '7.2019', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118199, '2022-09-18', 7411, 111577, 6723, NULL, '2.0000', '1.5882', '1.5882', '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 (118200, '2022-09-18', 2674, 111578, 6723, 62223, '6.0000', '3.9050', '3.9050', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118201, '2022-09-18', 1501, 111579, 6724, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118202, '2022-09-18', 9840, 111580, 6724, 62133, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118203, '2022-09-18', 1946, 111581, 6724, NULL, '1.0000', '-12.3249', '-12.3249', '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 (118204, '2022-09-18', 1427, 111582, 6724, NULL, '1.0000', '14.5000', '14.5000', '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 (118205, '2022-09-18', 1425, 111583, 6724, NULL, '1.0000', '1666.9347', '1666.9347', '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 (118206, '2022-09-18', 9734, 111584, 6724, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '212.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118207, '2022-09-19', 2068, 111585, 6725, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118208, '2022-09-19', 9821, 111586, 6725, 62142, '2.0000', '1.6500', '1.6500', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118209, '2022-09-19', 7401, 111587, 6725, NULL, '1.0000', '74.3000', '74.3000', '98.5000', '98.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118210, '2022-09-19', 2255, 111588, 6725, 60351, '1.0000', '22.3954', '22.3954', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118211, '2022-09-19', 9482, 111589, 6725, 62713, '3.0000', '1.2143', '1.2143', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118212, '2022-09-19', 8482, 111590, 6725, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118213, '2022-09-19', 2135, 111591, 6725, NULL, '1.0000', '-0.2588', '-0.2588', '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 (118214, '2022-09-19', 2416, 111592, 6725, 62700, '1.0000', '1.3942', '1.3942', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118215, '2022-09-19', 8710, 111593, 6725, NULL, '1.0000', '10.9000', '10.9000', '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 (118216, '2022-09-19', 2916, 111594, 6725, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (118217, '2022-09-19', 2284, 111595, 6725, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118218, '2022-09-19', 9814, 111596, 6725, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118219, '2022-09-19', 7411, 111597, 6725, NULL, '2.0000', '1.2819', '1.2819', '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 (118220, '2022-09-19', 7954, 111598, 6725, 62424, '1.0000', '1.6365', '1.6365', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118221, '2022-09-19', 7641, 111599, 6725, NULL, '1.0000', '1.9000', '1.9000', '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 (118222, '2022-09-19', 9482, 111600, 6725, 62713, '1.0000', '1.2143', '1.2143', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118223, '2022-09-19', 9979, 111601, 6725, 62677, '1.0000', '15.3367', '15.3367', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118224, '2022-09-19', 2650, 111602, 6725, NULL, '1.0000', '8.0748', '8.0748', '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 (118225, '2022-09-19', 1338, 111603, 6725, 61580, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118226, '2022-09-19', 9791, 111604, 6725, 62105, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118227, '2022-09-19', 7713, 111605, 6725, 59895, '5.0000', '0.1598', '0.1598', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118228, '2022-09-19', 1383, 111606, 6725, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118229, '2022-09-19', 8482, 111607, 6725, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118230, '2022-09-19', 1812, 111608, 6725, 62817, '1.0000', '9.5645', '9.5645', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118231, '2022-09-19', 2266, 111609, 6725, 51702, '1.0000', '7.5934', '7.5934', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118232, '2022-09-19', 7327, 111610, 6725, NULL, '2.0000', '1.0100', '1.0100', '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 (118233, '2022-09-19', 1912, 111611, 6725, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118234, '2022-09-19', 7672, 111612, 6725, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118235, '2022-09-19', 7819, 111613, 6725, NULL, '1.0000', '10.0999', '10.0999', '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 (118236, '2022-09-19', 7803, 111614, 6725, NULL, '1.0000', '1.8200', '1.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 (118237, '2022-09-19', 9734, 111615, 6725, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '208.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118238, '2022-09-19', 7570, 111616, 6725, NULL, '1.0000', '7.8000', '7.8000', '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 (118239, '2022-09-19', 9979, 111617, 6725, 62677, '1.0000', '15.3367', '15.3367', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118240, '2022-09-19', 1704, 111618, 6725, 62712, '1.0000', '32.8000', '32.8000', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118241, '2022-09-19', 3058, 111619, 6725, NULL, '1.0000', '-47.3000', '-47.3000', '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 (118242, '2022-09-19', 7588, 111620, 6725, 39763, '1.0000', '7.0000', '7.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118243, '2022-09-19', 1602, 111621, 6725, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '38.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118244, '2022-09-19', 8184, 111622, 6725, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (118245, '2022-09-19', 2345, 111623, 6725, 60322, '1.0000', '7.6701', '7.6701', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118246, '2022-09-19', 1340, 111624, 6725, NULL, '1.0000', '5.5200', '5.5200', '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 (118247, '2022-09-19', 2169, 111625, 6725, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '117.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118248, '2022-09-19', 1383, 111626, 6725, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118249, '2022-09-19', 9275, 111627, 6725, NULL, '1.0000', '6.3000', '6.3000', '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 (118250, '2022-09-19', 2948, 111628, 6725, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '82.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118251, '2022-09-19', 9791, 111629, 6725, 62105, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118252, '2022-09-19', 1308, 111630, 6725, 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 (118253, '2022-09-19', 2315, 111631, 6725, NULL, '1.0000', '0.7700', '0.7700', '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 (118254, '2022-09-19', 2289, 111632, 6725, NULL, '1.0000', '0.3611', '0.3611', '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 (118255, '2022-09-19', 7328, 111633, 6725, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118256, '2022-09-19', 1840, 111634, 6725, NULL, '2.0000', '0.2400', '0.2400', '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 (118257, '2022-09-19', 10006, 111635, 6725, 62362, '1.0000', '12.9800', '12.9800', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118258, '2022-09-19', 7411, 111636, 6725, NULL, '1.0000', '1.2819', '1.2819', '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 (118259, '2022-09-19', 7674, 111637, 6725, NULL, '1.0000', '1.3000', '1.3000', '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 (118260, '2022-09-19', 9999, 111638, 6726, 62698, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118261, '2022-09-19', 9024, 111639, 6727, 58810, '1.0000', '7.4400', '7.4400', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118262, '2022-09-19', 2273, 111640, 6727, 62754, '1.0000', '3.0795', '3.0795', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118263, '2022-09-19', 9463, 111641, 6727, 62242, '1.0000', '3.7715', '3.7715', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118264, '2022-09-19', 1704, 111642, 6727, 52231, '1.0000', '-1889.8857', '-1889.8857', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118265, '2022-09-19', 2916, 111643, 6727, 61647, '1.0000', '15.0676', '15.0676', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118266, '2022-09-19', 1650, 111644, 6727, 62804, '1.0000', '15.8716', '15.8716', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118267, '2022-09-19', 2823, 111645, 6727, 62731, '1.0000', '7.5925', '7.5925', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118268, '2022-09-19', 2655, 111646, 6727, 62495, '1.0000', '7.2019', '7.2019', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118269, '2022-09-19', 2089, 111647, 6727, 58586, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118270, '2022-09-19', 1935, 111648, 6727, 62635, '2.0000', '1.1799', '1.1799', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118271, '2022-09-19', 7613, 111649, 6727, 61694, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118272, '2022-09-19', 1339, 111650, 6727, 62720, '1.0000', '2.0694', '2.0694', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118273, '2022-09-19', 2655, 111651, 6727, 62495, '1.0000', '7.2019', '7.2019', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118274, '2022-09-19', 9695, 111652, 6727, 61701, '1.0000', '5.7919', '5.7919', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118275, '2022-09-19', 2342, 111653, 6727, 60051, '5.0000', '2.2694', '2.2694', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118276, '2022-09-19', 2169, 111654, 6727, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118277, '2022-09-19', 2237, 111655, 6727, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118278, '2022-09-19', 1602, 111656, 6728, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '37.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118279, '2022-09-19', 2167, 111657, 6728, NULL, '1.0000', '-1.6257', '-1.6257', '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 (118280, '2022-09-19', 1310, 111658, 6728, 59901, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '14.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118281, '2022-09-19', 9743, 111659, 6728, 62122, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118282, '2022-09-19', 7322, 111660, 6728, 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 (118283, '2022-09-19', 7548, 111661, 6728, NULL, '1.0000', '0.3400', '0.3400', '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 (118284, '2022-09-19', 2948, 111662, 6728, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '81.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118285, '2022-09-19', 2262, 111663, 6728, 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 (118286, '2022-09-19', 2167, 111664, 6728, NULL, '1.0000', '-1.6257', '-1.6257', '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 (118287, '2022-09-19', 1945, 111665, 6728, 55705, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118288, '2022-09-19', 2416, 111666, 6728, 62700, '1.0000', '1.3942', '1.3942', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118289, '2022-09-19', 2642, 111667, 6728, 61475, '1.0000', '8.2025', '8.2025', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118290, '2022-09-19', 2445, 111668, 6728, NULL, '5.0000', '3.2000', '3.2000', '5.5000', '5.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 (118291, '2022-09-19', 2332, 111669, 6728, NULL, '2.0000', '7.8000', '7.8000', '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 (118292, '2022-09-19', 7518, 111670, 6729, NULL, '1.0000', '7.8200', '7.8200', '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 (118293, '2022-09-19', 8677, 111671, 6729, NULL, '3.0000', '1.2800', '1.2800', '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 (118294, '2022-09-19', 8063, 111672, 6729, NULL, '1.0000', '1.6000', '1.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 (118295, '2022-09-19', 8767, 111673, 6729, NULL, '2.0000', '6.6900', '6.6900', '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 (118296, '2022-09-19', 7666, 111674, 6729, NULL, '1.0000', '3.6000', '3.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 (118297, '2022-09-19', 8017, 111675, 6729, NULL, '1.0000', '40.0000', '40.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 (118298, '2022-09-19', 7806, 111676, 6729, NULL, '3.0000', '1.8000', '1.8000', '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 (118299, '2022-09-19', 9424, 111677, 6729, NULL, '1.0000', '3.6300', '3.6300', '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 (118300, '2022-09-19', 8666, 111678, 6729, NULL, '1.0000', '0.4600', '0.4600', '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 (118301, '2022-09-19', 2440, 111679, 6729, 5309, '-7.0000', '5.3000', '5.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 (118302, '2022-09-19', 2440, 111679, 6729, NULL, '8.0000', '5.3000', '5.3000', '12.0000', '12.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 (118303, '2022-09-19', 7753, 111680, 6729, NULL, '1.0000', '3.4000', '3.4000', '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 (118304, '2022-09-19', 7558, 111681, 6729, NULL, '10.0000', '1.9700', '1.9700', '4.0000', '4.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 (118305, '2022-09-19', 9177, 111682, 6729, 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 (118306, '2022-09-19', 7509, 111683, 6729, NULL, '1.0000', '6.5000', '6.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 (118307, '2022-09-19', 7912, 111684, 6729, NULL, '1.0000', '10.7800', '10.7800', '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 (118308, '2022-09-19', 9716, 111685, 6729, NULL, '1.0000', '4.4000', '4.4000', '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 (118309, '2022-09-19', 7853, 111686, 6729, NULL, '1.0000', '13.0000', '13.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 (118310, '2022-09-19', 9291, 111687, 6729, NULL, '1.0000', '11.9000', '11.9000', '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 (118311, '2022-09-19', 9633, 111688, 6729, NULL, '1.0000', '8.4100', '8.4100', '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 (118312, '2022-09-19', 9791, 111689, 6729, 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 (118313, '2022-09-19', 7447, 111690, 6729, NULL, '1.0000', '19.1100', '19.1100', '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 (118314, '2022-09-19', 8482, 111691, 6729, NULL, '1.0000', '2.9500', '2.9500', '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 (118315, '2022-09-19', 7674, 111692, 6729, NULL, '1.0000', '1.3000', '1.3000', '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 (118316, '2022-09-19', 7703, 111693, 6729, NULL, '2.0000', '22.9900', '22.9900', '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 (118317, '2022-09-19', 9274, 111694, 6729, NULL, '1.0000', '3.6000', '3.6000', '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 (118318, '2022-09-19', 2315, 111695, 6729, 2735, '-677.0000', '0.3300', '0.3300', '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 (118319, '2022-09-19', 2315, 111695, 6729, NULL, '678.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-678.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118320, '2022-09-19', 7999, 111696, 6729, NULL, '1.0000', '1.7500', '1.7500', '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 (118321, '2022-09-19', 7444, 111697, 6729, 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 (118322, '2022-09-19', 8068, 111698, 6729, NULL, '1.0000', '8.7900', '8.7900', '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 (118323, '2022-09-19', 7666, 111699, 6729, NULL, '1.0000', '3.6000', '3.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 (118324, '2022-09-19', 7715, 111700, 6729, NULL, '1.0000', '1.8900', '1.8900', '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 (118325, '2022-09-19', 8401, 111701, 6729, 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 (118326, '2022-09-19', 1620, 111702, 6729, 8955, '-88.0000', '408.8259', '408.8259', '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 (118327, '2022-09-19', 1620, 111702, 6729, NULL, '92.0000', '408.8259', '408.8259', '3.5000', '3.5000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118328, '2022-09-19', 7753, 111703, 6729, NULL, '1.0000', '3.4000', '3.4000', '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 (118329, '2022-09-19', 8017, 111704, 6729, NULL, '2.0000', '40.0000', '40.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 (118330, '2022-09-19', 7509, 111705, 6729, NULL, '1.0000', '6.5000', '6.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 (118331, '2022-09-19', 7819, 111706, 6729, NULL, '1.0000', '9.5000', '9.5000', '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 (118332, '2022-09-19', 10004, 111707, 6729, NULL, '5.0000', '2.5100', '2.5100', '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 (118333, '2022-09-19', 7632, 111708, 6729, NULL, '1.0000', '9.0000', '9.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 (118334, '2022-09-19', 2289, 111709, 6729, 2949, '-272.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 (118335, '2022-09-19', 2289, 111709, 6729, NULL, '274.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-274.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118336, '2022-09-19', 10004, 111710, 6729, NULL, '3.0000', '2.5100', '2.5100', '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 (118337, '2022-09-19', 7703, 111711, 6729, NULL, '1.0000', '22.9900', '22.9900', '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 (118338, '2022-09-19', 8622, 111712, 6729, 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 (118339, '2022-09-19', 7756, 111713, 6729, NULL, '1.0000', '2.5000', '2.5000', '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 (118340, '2022-09-19', 8482, 111714, 6729, NULL, '1.0000', '2.9500', '2.9500', '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 (118341, '2022-09-19', 2761, 111715, 6729, NULL, '1.0000', '6.0000', '6.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 (118342, '2022-09-19', 8810, 111716, 6729, NULL, '1.0000', '1.6000', '1.6000', '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 (118343, '2022-09-19', 7514, 111717, 6729, NULL, '1.0000', '2.2500', '2.2500', '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 (118344, '2022-09-19', 8032, 111718, 6729, NULL, '1.0000', '6.4400', '6.4400', '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 (118345, '2022-09-19', 7496, 111719, 6729, NULL, '1.0000', '0.9600', '0.9600', '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 (118346, '2022-09-19', 2506, 111720, 6729, 16244, '-46.0000', '3.4900', '3.4900', '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 (118347, '2022-09-19', 2506, 111720, 6729, NULL, '47.0000', '3.4900', '3.4900', '6.5000', '6.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 (118348, '2022-09-19', 9190, 111721, 6729, NULL, '1.0000', '7.6000', '7.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 (118349, '2022-09-19', 9734, 111722, 6729, NULL, '3.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (118350, '2022-09-19', 7315, 111723, 6729, NULL, '1.0000', '15.0000', '15.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 (118351, '2022-09-19', 7564, 111724, 6729, NULL, '1.0000', '0.6400', '0.6400', '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 (118352, '2022-09-19', 10016, 111725, 6729, NULL, '1.0000', '10.2000', '10.2000', '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 (118353, '2022-09-19', 7736, 111726, 6729, NULL, '1.0000', '16.2000', '16.2000', '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 (118354, '2022-09-19', 7708, 111727, 6729, NULL, '1.0000', '7.8000', '7.8000', '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 (118355, '2022-09-19', 7473, 111728, 6729, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118356, '2022-09-19', 7592, 111729, 6729, NULL, '1.0000', '6.8000', '6.8000', '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 (118357, '2022-09-19', 9274, 111730, 6729, NULL, '1.0000', '3.6000', '3.6000', '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 (118358, '2022-09-19', 9092, 111731, 6729, NULL, '1.0000', '5.2900', '5.2900', '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 (118359, '2022-09-19', 1340, 111732, 6729, 13005, '-19.0000', '2.7025', '2.7025', '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 (118360, '2022-09-19', 1340, 111732, 6729, NULL, '20.0000', '2.7025', '2.7025', '7.0000', '7.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 (118361, '2022-09-19', 8053, 111733, 6729, NULL, '1.0000', '0.8000', '0.8000', '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 (118362, '2022-09-19', 8638, 111734, 6730, NULL, '1.0000', '0.5254', '0.5254', '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 (118363, '2022-09-19', 1871, 111735, 6730, NULL, '3.0000', '-15130.1200', '-15130.1200', '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 (118364, '2022-09-19', 9878, 111736, 6730, NULL, '1.0000', '9.6000', '9.6000', '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 (118365, '2022-09-19', 2100, 111737, 6730, NULL, '1.0000', '0.4608', '0.4608', '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 (118366, '2022-09-19', 1314, 111738, 6730, 53233, '2.0000', '1.5721', '1.5721', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118367, '2022-09-19', 2295, 111739, 6730, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118368, '2022-09-19', 2506, 111740, 6730, NULL, '1.0000', '-15.8639', '-15.8639', '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 (118369, '2022-09-19', 8482, 111741, 6730, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118370, '2022-09-19', 2617, 111742, 6731, NULL, '1.0000', '-5.4200', '-5.4200', '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 (118371, '2022-09-19', 1501, 111743, 6731, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118372, '2022-09-19', 2948, 111744, 6731, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '80.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118373, '2022-09-19', 2237, 111745, 6731, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118374, '2022-09-19', 2169, 111746, 6731, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118375, '2022-09-19', 9695, 111747, 6731, 62670, '1.0000', '5.5620', '5.5620', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118376, '2022-09-19', 1812, 111748, 6731, 62817, '1.0000', '9.5645', '9.5645', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118377, '2022-09-19', 1863, 111749, 6731, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118378, '2022-09-19', 2109, 111750, 6731, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118379, '2022-09-19', 9740, 111751, 6731, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118380, '2022-09-19', 1425, 111752, 6731, NULL, '1.0000', '1666.9347', '1666.9347', '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 (118381, '2022-09-19', 9995, 111753, 6731, 62382, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118382, '2022-09-19', 1310, 111754, 6731, 59901, '9.0000', '0.4100', '0.4100', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118383, '2022-09-19', 1667, 111755, 6731, 62361, '2.0000', '9.3728', '9.3728', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118384, '2022-09-19', 2893, 111756, 6731, NULL, '1.0000', '9.1280', '9.1280', '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 (118385, '2022-09-19', 9213, 111757, 6731, 62710, '1.0000', '-2331.3794', '-2331.3794', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118386, '2022-09-19', 2302, 111758, 6731, 62819, '2.0000', '5.4776', '5.4776', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118387, '2022-09-19', 9911, 111759, 6731, 55596, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118388, '2022-09-19', 9737, 111760, 6731, NULL, '1.0000', '1.6000', '1.6000', '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 (118389, '2022-09-19', 1602, 111761, 6731, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118390, '2022-09-19', 1665, 111762, 6731, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118391, '2022-09-19', 2327, 111763, 6731, 39828, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '35.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118392, '2022-09-19', 9748, 111764, 6731, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118393, '2022-09-19', 2169, 111765, 6731, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118394, '2022-09-19', 9996, 111766, 6731, 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 (118395, '2022-09-19', 1521, 111767, 6731, 62849, '1.0000', '2857.3077', '2857.3077', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118396, '2022-09-19', 1665, 111768, 6731, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118397, '2022-09-19', 1863, 111769, 6731, 62841, '9.0000', '1.5054', '1.5054', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118398, '2022-09-19', 2891, 111770, 6731, 62860, '1.0000', '9.0357', '9.0357', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118399, '2022-09-19', 1704, 111771, 6731, 62712, '1.0000', '32.8000', '32.8000', '44.0000', '44.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118400, '2022-09-19', 8813, 111772, 6731, 62863, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118401, '2022-09-19', 1670, 111773, 6731, NULL, '1.0000', '-35.9534', '-35.9534', '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 (118402, '2022-09-19', 9695, 111774, 6731, 62670, '1.0000', '5.5620', '5.5620', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118403, '2022-09-19', 9734, 111775, 6731, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '207.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118404, '2022-09-19', 9821, 111776, 6732, 62142, '1.0000', '1.6500', '1.6500', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118405, '2022-09-19', 8208, 111777, 6732, NULL, '2.0000', '63.9119', '63.9119', '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 (118406, '2022-09-19', 1501, 111778, 6732, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118407, '2022-09-19', 2916, 111779, 6732, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (118408, '2022-09-19', 2068, 111780, 6732, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118409, '2022-09-19', 2061, 111781, 6732, NULL, '1.0000', '-13.2193', '-13.2193', '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 (118410, '2022-09-19', 3061, 111782, 6732, 62118, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118411, '2022-09-19', 9729, 111783, 6732, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118412, '2022-09-19', 1386, 111784, 6733, 62404, '1.0000', '4.7366', '4.7366', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118413, '2022-09-19', 1410, 111785, 6733, NULL, '1.0000', '298.0003', '298.0003', '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 (118414, '2022-09-19', 8017, 111786, 6733, 62109, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118415, '2022-09-19', 2277, 111787, 6733, 62419, '2.0000', '0.5402', '0.5402', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118416, '2022-09-19', 9734, 111788, 6733, 62184, '5.0000', '0.4628', '0.4628', '0.7000', '0.7000', '202.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118417, '2022-09-19', 1863, 111789, 6733, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118418, '2022-09-19', 1790, 111790, 6734, NULL, '1.0000', '-111.0000', '-111.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 (118419, '2022-09-19', 1383, 111791, 6735, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118420, '2022-09-19', 1383, 111792, 6736, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118421, '2022-09-19', 2643, 111793, 6736, 62701, '1.0000', '1.1357', '1.1357', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118422, '2022-09-19', 1501, 111794, 6737, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118423, '2022-09-19', 7641, 111795, 6738, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (118424, '2022-09-19', 7411, 111796, 6738, NULL, '2.0000', '1.3500', '1.3500', '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 (118425, '2022-09-19', 7674, 111797, 6738, NULL, '1.0000', '1.3000', '1.3000', '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 (118426, '2022-09-19', 7514, 111798, 6738, NULL, '1.0000', '2.2500', '2.2500', '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 (118427, '2022-09-19', 7523, 111799, 6738, NULL, '1.0000', '9.7500', '9.7500', '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 (118428, '2022-09-19', 8467, 111800, 6738, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118429, '2022-09-19', 7715, 111801, 6738, NULL, '1.0000', '1.8900', '1.8900', '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 (118430, '2022-09-19', 8680, 111802, 6738, NULL, '1.0000', '2.0000', '2.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 (118431, '2022-09-19', 9629, 111803, 6738, NULL, '1.0000', '22.0000', '22.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 (118432, '2022-09-19', 2656, 111804, 6738, NULL, '2.0000', '1.5000', '1.5000', '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 (118433, '2022-09-19', 8759, 111805, 6738, NULL, '1.0000', '6.5000', '6.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 (118434, '2022-09-19', 8889, 111806, 6738, NULL, '1.0000', '39.0000', '39.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 (118435, '2022-09-19', 8658, 111807, 6738, NULL, '1.0000', '17.6000', '17.6000', '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 (118436, '2022-09-19', 7411, 111808, 6738, NULL, '2.0000', '1.3500', '1.3500', '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 (118437, '2022-09-19', 8177, 111809, 6738, NULL, '2.0000', '12.5000', '12.5000', '18.5000', '18.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 (118438, '2022-09-19', 8915, 111810, 6738, 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 (118439, '2022-09-19', 9761, 111811, 6738, 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 (118440, '2022-09-19', 2070, 111812, 6738, NULL, '1.0000', '2.0000', '2.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 (118441, '2022-09-19', 8547, 111813, 6738, NULL, '1.0000', '3.3500', '3.3500', '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 (118442, '2022-09-19', 9504, 111814, 6738, NULL, '2.0000', '7.0000', '7.0000', '9.5000', '9.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 (118443, '2022-09-19', 7894, 111815, 6738, NULL, '1.0000', '3.8000', '3.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 (118444, '2022-09-19', 7831, 111816, 6738, NULL, '1.0000', '22.5000', '22.5000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118445, '2022-09-19', 8017, 111817, 6738, NULL, '1.0000', '40.0000', '40.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 (118446, '2022-09-19', 8878, 111818, 6738, NULL, '1.0000', '6.6700', '6.6700', '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 (118447, '2022-09-19', 7496, 111819, 6738, NULL, '1.0000', '0.9600', '0.9600', '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 (118448, '2022-09-19', 7362, 111820, 6738, 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 (118449, '2022-09-19', 9894, 111821, 6738, 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 (118450, '2022-09-19', 7967, 111822, 6738, 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 (118451, '2022-09-19', 7317, 111823, 6738, NULL, '1.0000', '19.5500', '19.5500', '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 (118452, '2022-09-19', 9089, 111824, 6738, NULL, '1.0000', '3.8000', '3.8000', '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 (118453, '2022-09-19', 7524, 111825, 6738, NULL, '2.0000', '11.9500', '11.9500', '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 (118454, '2022-09-19', 7641, 111826, 6738, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (118455, '2022-09-19', 7638, 111827, 6738, NULL, '1.0000', '12.0000', '12.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 (118456, '2022-09-19', 9452, 111828, 6738, NULL, '1.0000', '58.0000', '58.0000', '66.0000', '66.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118457, '2022-09-19', 2369, 111829, 6738, NULL, '1.0000', '13.0000', '13.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 (118458, '2022-09-19', 7518, 111830, 6738, NULL, '1.0000', '7.8200', '7.8200', '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 (118459, '2022-09-19', 9988, 111831, 6738, 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 (118460, '2022-09-19', 7673, 111832, 6738, NULL, '1.0000', '16.8000', '16.8000', '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 (118461, '2022-09-19', 7781, 111833, 6738, NULL, '3.0000', '4.2500', '4.2500', '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 (118462, '2022-09-19', 2384, 111834, 6739, NULL, '3.0000', '-5.5392', '-5.5392', '0.8000', '0.8000', '-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 (118463, '2022-09-19', 1647, 111835, 6739, NULL, '1.0000', '-100.4231', '-100.4231', '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 (118464, '2022-09-19', 1554, 111836, 6739, 62453, '1.0000', '3.1639', '3.1639', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118465, '2022-09-19', 1908, 111837, 6740, 5444, '-57.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 (118466, '2022-09-19', 1908, 111837, 6740, NULL, '58.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-58.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118467, '2022-09-19', 2379, 111838, 6740, 4032, '-77.0000', '1.5900', '1.5900', '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 (118468, '2022-09-19', 2379, 111838, 6740, NULL, '78.0000', '1.5900', '1.5900', '3.0000', '3.0000', '-78.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118469, '2022-09-19', 2277, 111839, 6740, 2937, '-80.0000', '0.7800', '0.7800', '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 (118470, '2022-09-19', 2277, 111839, 6740, NULL, '82.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118471, '2022-09-19', 2893, 111840, 6740, 18242, '-26.0000', '6.0000', '6.0000', '9.5000', '9.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 (118472, '2022-09-19', 2893, 111840, 6740, NULL, '27.0000', '6.0000', '6.0000', '9.5000', '9.5000', '-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 (118473, '2022-09-19', 7411, 111841, 6740, NULL, '1.0000', '1.3500', '1.3500', '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 (118474, '2022-09-19', 2169, 111842, 6740, 10737, '-232.0000', '3.8397', '3.8397', '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 (118475, '2022-09-19', 2169, 111842, 6740, NULL, '233.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-233.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118476, '2022-09-19', 9940, 111843, 6740, NULL, '2.0000', '9.0000', '9.0000', '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 (118477, '2022-09-19', 1935, 111844, 6740, 5586, '-203.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 (118478, '2022-09-19', 1935, 111844, 6740, NULL, '204.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-204.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118479, '2022-09-19', 2169, 111845, 6740, 10737, '-232.0000', '3.8397', '3.8397', '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 (118480, '2022-09-19', 2169, 111845, 6740, NULL, '233.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-233.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118481, '2022-09-19', 2075, 111846, 6740, 5583, '-3.0000', '7.0000', '7.0000', '9.5000', '9.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 (118482, '2022-09-19', 2075, 111846, 6740, NULL, '4.0000', '7.0000', '7.0000', '9.5000', '9.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 (118483, '2022-09-19', 1695, 111847, 6740, 12925, '-20.0000', '15.5000', '15.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 (118484, '2022-09-19', 1695, 111847, 6740, NULL, '21.0000', '15.5000', '15.5000', '26.0000', '26.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118485, '2022-09-19', 1674, 111848, 6740, NULL, '1.0000', '3.6000', '3.6000', '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 (118486, '2022-09-19', 1689, 111849, 6740, 4897, '-24.0000', '60.7198', '60.7198', '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 (118487, '2022-09-19', 1689, 111849, 6740, NULL, '25.0000', '60.7198', '60.7198', '21.0000', '21.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 (118488, '2022-09-19', 1553, 111850, 6740, 22251, '10.0000', '2690641.7070', '2690641.7070', '14.5000', '14.5000', '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 (118489, '2022-09-19', 1553, 111850, 6740, 18889, '1.0000', '2690641.7070', '2690641.7070', '14.5000', '14.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 (118490, '2022-09-19', 1553, 111850, 6740, 20599, '1.0000', '2690641.7070', '2690641.7070', '14.5000', '14.5000', '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 (118491, '2022-09-19', 1553, 111850, 6740, NULL, '18.0000', '2690641.7070', '2690641.7070', '14.5000', '14.5000', '-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 (118492, '2022-09-19', 2135, 111851, 6740, 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 (118493, '2022-09-19', 2916, 111852, 6740, NULL, '1.0000', '15.0000', '15.0000', '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 (118494, '2022-09-19', 8133, 111853, 6740, NULL, '1.0000', '5.0000', '5.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 (118495, '2022-09-19', 9775, 111854, 6740, NULL, '1.0000', '7.9000', '7.9000', '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 (118496, '2022-09-19', 1935, 111855, 6740, 5586, '-203.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 (118497, '2022-09-19', 1935, 111855, 6740, NULL, '206.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-206.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118498, '2022-09-19', 1855, 111856, 6740, 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 (118499, '2022-09-19', 2237, 111857, 6740, 2781, '-89.0000', '1.0600', '1.0600', '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 (118500, '2022-09-19', 2237, 111857, 6740, NULL, '90.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-90.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118501, '2022-09-19', 1434, 111858, 6740, NULL, '1.0000', '15.3766', '15.3766', '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 (118502, '2022-09-19', 7411, 111859, 6740, NULL, '1.0000', '1.3500', '1.3500', '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 (118503, '2022-09-19', 1687, 111860, 6740, 5785, '-32.0000', '165.9024', '165.9024', '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 (118504, '2022-09-19', 1687, 111860, 6740, NULL, '33.0000', '165.9024', '165.9024', '23.0000', '23.0000', '-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 (118505, '2022-09-19', 1942, 111861, 6740, 5593, '-4.0000', '19.0000', '19.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 (118506, '2022-09-19', 1942, 111861, 6740, NULL, '5.0000', '19.0000', '19.0000', '28.0000', '28.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 (118507, '2022-09-19', 2943, 111862, 6740, 19987, '-15.0000', '2.1800', '2.1800', '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 (118508, '2022-09-19', 2943, 111862, 6740, NULL, '16.0000', '2.1800', '2.1800', '6.0000', '6.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 (118509, '2022-09-19', 1425, 111863, 6740, NULL, '1.0000', '6.4405', '6.4405', '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 (118510, '2022-09-19', 2373, 111864, 6740, 3962, '-1.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 (118511, '2022-09-19', 2373, 111864, 6740, NULL, '2.0000', '11.5000', '11.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 (118512, '2022-09-19', 1387, 111865, 6740, NULL, '1.0000', '10.5068', '10.5068', '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 (118513, '2022-09-19', 2682, 111866, 6740, 12165, '-8.0000', '19.3000', '19.3000', '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 (118514, '2022-09-19', 2682, 111866, 6740, NULL, '9.0000', '19.3000', '19.3000', '20.0000', '20.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 (118515, '2022-09-19', 2916, 111867, 6740, NULL, '1.0000', '15.0000', '15.0000', '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 (118516, '2022-09-19', 2655, 111868, 6740, 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 (118517, '2022-09-19', 1519, 111869, 6740, NULL, '2.0000', '3.3500', '3.3500', '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 (118518, '2022-09-19', 1602, 111870, 6740, 5897, '-183.0000', '6.7859', '6.7859', '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 (118519, '2022-09-19', 1602, 111870, 6740, NULL, '184.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-184.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118520, '2022-09-19', 8763, 111871, 6740, NULL, '1.0000', '5.4000', '5.4000', '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 (118521, '2022-09-19', 2580, 111872, 6740, 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 (118522, '2022-09-19', 1621, 111873, 6740, 7385, '-15.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 (118523, '2022-09-19', 1621, 111873, 6740, NULL, '16.0000', '6.6000', '6.6000', '9.0000', '9.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 (118524, '2022-09-19', 1650, 111874, 6740, 3221, '-18.0000', '14.8000', '14.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 (118525, '2022-09-19', 1650, 111874, 6740, NULL, '19.0000', '14.8000', '14.8000', '22.5000', '22.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 (118526, '2022-09-19', 7382, 111875, 6740, NULL, '1.0000', '7.4500', '7.4500', '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 (118527, '2022-09-19', 7584, 111876, 6740, NULL, '2.0000', '2.6000', '2.6000', '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 (118528, '2022-09-19', 9996, 111877, 6740, 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 (118529, '2022-09-19', 9760, 111878, 6740, NULL, '1.0000', '1.1000', '1.1000', '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 (118530, '2022-09-19', 1812, 111879, 6740, 8224, '-120.0000', '7.8900', '7.8900', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118531, '2022-09-19', 1812, 111879, 6740, NULL, '122.0000', '7.8900', '7.8900', '14.0000', '14.0000', '-122.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118532, '2022-09-19', 1541, 111880, 6740, 18018, '-10.0000', '19.0000', '19.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 (118533, '2022-09-19', 1541, 111880, 6740, NULL, '11.0000', '19.0000', '19.0000', '30.5000', '30.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 (118534, '2022-09-19', 3013, 111881, 6740, 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 (118535, '2022-09-19', 8677, 111882, 6740, NULL, '3.0000', '1.2800', '1.2800', '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 (118536, '2022-09-19', 2187, 111883, 6740, 7755, '-3.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 (118537, '2022-09-19', 2187, 111883, 6740, NULL, '4.0000', '7.5000', '7.5000', '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 (118538, '2022-09-19', 2184, 111884, 6740, 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 (118539, '2022-09-19', 9626, 111885, 6740, 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 (118540, '2022-09-19', 1665, 111886, 6740, 3235, '-159.0000', '1.3000', '1.3000', '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 (118541, '2022-09-19', 1665, 111886, 6740, NULL, '161.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-161.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118542, '2022-09-19', 8622, 111887, 6740, 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 (118543, '2022-09-19', 1840, 111888, 6740, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (118544, '2022-09-19', 1841, 111889, 6740, NULL, '1.0000', '142.5780', '142.5780', '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 (118545, '2022-09-19', 8744, 111890, 6740, NULL, '1.0000', '3.6600', '3.6600', '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 (118546, '2022-09-19', 8758, 111891, 6740, NULL, '1.0000', '5.8000', '5.8000', '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 (118547, '2022-09-20', 1845, 111892, 6741, 6222, '-37.0000', '19.5000', '19.5000', '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 (118548, '2022-09-20', 1845, 111892, 6741, NULL, '38.0000', '19.5000', '19.5000', '40.0000', '40.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118549, '2022-09-20', 8482, 111893, 6742, NULL, '1.0000', '2.9500', '2.9500', '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 (118550, '2022-09-20', 1825, 111894, 6743, 62441, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118551, '2022-09-20', 2506, 111895, 6743, NULL, '1.0000', '-15.8639', '-15.8639', '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 (118552, '2022-09-20', 9740, 111896, 6743, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '95.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118553, '2022-09-20', 9798, 111897, 6743, NULL, '1.0000', '13.9000', '13.9000', '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 (118554, '2022-09-20', 7411, 111898, 6743, NULL, '5.0000', '1.2819', '1.2819', '2.5000', '2.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 (118555, '2022-09-20', 2169, 111899, 6743, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118556, '2022-09-20', 2285, 111900, 6743, NULL, '1.0000', '-159.5389', '-159.5389', '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 (118557, '2022-09-20', 7596, 111901, 6743, NULL, '1.0000', '6.5000', '6.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 (118558, '2022-09-20', 2655, 111902, 6743, NULL, '1.0000', '-3904.0420', '-3904.0420', '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 (118559, '2022-09-20', 1367, 111903, 6743, 18939, '1.0000', '49.2100', '49.2100', '110.0000', '110.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 (118560, '2022-09-20', 2669, 111904, 6743, 62163, '2.0000', '36.5544', '36.5544', '44.5000', '44.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118561, '2022-09-20', 8677, 111905, 6743, NULL, '3.0000', '1026.1382', '1026.1382', '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 (118562, '2022-09-20', 1807, 111906, 6743, NULL, '17.0000', '3.9687', '3.9687', '2.5000', '2.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 (118563, '2022-09-20', 2315, 111907, 6743, NULL, '2.0000', '0.7700', '0.7700', '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 (118564, '2022-09-20', 8079, 111908, 6743, NULL, '1.0000', '16.6100', '16.6100', '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 (118565, '2022-09-20', 2085, 111909, 6743, 60337, '6.0000', '1.4119', '1.4119', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118566, '2022-09-20', 1306, 111910, 6743, NULL, '5.0000', '2.1000', '2.1000', '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 (118567, '2022-09-20', 2416, 111911, 6743, 62700, '1.0000', '1.3942', '1.3942', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118568, '2022-09-20', 3044, 111912, 6743, 62830, '5.0000', '0.4000', '0.4000', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118569, '2022-09-20', 2366, 111913, 6743, NULL, '2.0000', '-122.9116', '-122.9116', '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 (118570, '2022-09-20', 1338, 111914, 6743, 61580, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118571, '2022-09-20', 8740, 111915, 6743, 54070, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118572, '2022-09-20', 9815, 111916, 6743, 62097, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '45.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118573, '2022-09-20', 7746, 111917, 6743, NULL, '1.0000', '2.8600', '2.8600', '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 (118574, '2022-09-20', 2942, 111918, 6743, 59882, '1.0000', '0.8200', '0.8200', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118575, '2022-09-20', 2315, 111919, 6743, NULL, '1.0000', '0.7700', '0.7700', '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 (118576, '2022-09-20', 9996, 111920, 6743, 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 (118577, '2022-09-20', 2169, 111921, 6743, 62844, '2.0000', '1.8223', '1.8223', '2.5000', '2.5000', '113.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118578, '2022-09-20', 2236, 111922, 6743, 62825, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118579, '2022-09-20', 1867, 111923, 6743, 62866, '1.0000', '11.2423', '11.2423', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118580, '2022-09-20', 2916, 111924, 6743, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (118581, '2022-09-20', 9740, 111925, 6743, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '95.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118582, '2022-09-20', 2283, 111926, 6743, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118583, '2022-09-20', 9721, 111927, 6743, 58264, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118584, '2022-09-20', 1665, 111928, 6743, 62363, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118585, '2022-09-20', 1665, 111928, 6743, 61557, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118586, '2022-09-20', 2302, 111929, 6743, 62819, '1.0000', '5.4776', '5.4776', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118587, '2022-09-20', 9791, 111930, 6743, 62105, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118588, '2022-09-20', 2643, 111931, 6743, 62701, '1.0000', '1.1357', '1.1357', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118589, '2022-09-20', 2416, 111932, 6743, 62700, '1.0000', '1.3942', '1.3942', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118590, '2022-09-20', 9734, 111933, 6743, 62184, '5.0000', '0.4628', '0.4628', '0.7000', '0.7000', '197.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118591, '2022-09-20', 1511, 111934, 6743, 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 (118592, '2022-09-20', 1407, 111935, 6744, 48930, '1.0000', '19.0167', '19.0167', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118593, '2022-09-20', 2463, 111936, 6745, NULL, '15.0000', '2.8700', '2.8700', '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 (118594, '2022-09-20', 10038, 111937, 6745, 62839, '3.0000', '2.9700', '2.9700', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118595, '2022-09-20', 2236, 111938, 6745, 62825, '1.0000', '8.2102', '8.2102', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118596, '2022-09-20', 8384, 111939, 6746, 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 (118597, '2022-09-20', 2643, 111940, 6747, 62701, '1.0000', '1.1357', '1.1357', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118598, '2022-09-20', 1450, 111941, 6748, NULL, '10.0000', '0.8255', '0.8255', '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 (118599, '2022-09-20', 1675, 111942, 6748, 56735, '1.0000', '32.6108', '32.6108', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118600, '2022-09-20', 1687, 111943, 6748, 61651, '1.0000', '15.0466', '15.0466', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118601, '2022-09-20', 2105, 111944, 6748, 61649, '1.0000', '2.1063', '2.1063', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118602, '2022-09-20', 1383, 111945, 6748, 62717, '1.0000', '5.7778', '5.7778', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118603, '2022-09-20', 9747, 111946, 6748, 61623, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118604, '2022-09-20', 1812, 111947, 6748, 62809, '1.0000', '8.8152', '8.8152', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118605, '2022-09-20', 1822, 111948, 6748, 62784, '2.0000', '2.6886', '2.6886', '4.5000', '4.5000', '38.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118606, '2022-09-20', 1780, 111949, 6748, 56897, '1.0000', '41.3380', '41.3380', '60.5000', '60.5000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118607, '2022-09-20', 1702, 111950, 6748, 62783, '1.0000', '21.6593', '21.6593', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118608, '2022-09-20', 7999, 111951, 6748, NULL, '1.0000', '1.7500', '1.7500', '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 (118609, '2022-09-20', 1650, 111952, 6748, 62804, '1.0000', '15.8716', '15.8716', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118610, '2022-09-20', 8482, 111953, 6749, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118611, '2022-09-20', 8677, 111954, 6749, NULL, '2.0000', '1026.1382', '1026.1382', '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 (118612, '2022-09-20', 1668, 111955, 6749, 60288, '1.0000', '20.0477', '20.0477', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118613, '2022-09-20', 9979, 111956, 6749, 62677, '1.0000', '15.3367', '15.3367', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118614, '2022-09-20', 1672, 111957, 6749, NULL, '10.0000', '3.6408', '3.6408', '5.5000', '5.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 (118615, '2022-09-20', 2655, 111958, 6749, NULL, '1.0000', '-3904.0420', '-3904.0420', '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 (118616, '2022-09-20', 1501, 111959, 6749, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118617, '2022-09-20', 7550, 111960, 6749, NULL, '3.0000', '4.7300', '4.7300', '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 (118618, '2022-09-20', 1501, 111961, 6749, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118619, '2022-09-20', 2384, 111962, 6749, NULL, '1.0000', '-5.5392', '-5.5392', '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 (118620, '2022-09-20', 9633, 111963, 6749, 61578, '1.0000', '7.9117', '7.9117', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118621, '2022-09-20', 1905, 111964, 6749, 62444, '2.0000', '0.5198', '0.5198', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118622, '2022-09-20', 2169, 111965, 6749, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '111.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118623, '2022-09-20', 9856, 111966, 6749, NULL, '1.0000', '-4.4000', '-4.4000', '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 (118624, '2022-09-20', 1592, 111967, 6749, 59604, '1.0000', '41.9259', '41.9259', '56.0000', '56.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118625, '2022-09-20', 1446, 111968, 6750, NULL, '1.0000', '5.3416', '5.3416', '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 (118626, '2022-09-20', 2491, 111969, 6750, 62838, '1.0000', '166.6000', '166.6000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118627, '2022-09-20', 2332, 111970, 6750, NULL, '1.0000', '7.8000', '7.8000', '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 (118628, '2022-09-20', 9736, 111971, 6750, 62089, '1.0000', '5.2083', '5.2083', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118629, '2022-09-20', 1339, 111972, 6751, 58192, '1.0000', '2.2855', '2.2855', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118630, '2022-09-20', 2169, 111973, 6751, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118631, '2022-09-20', 2315, 111974, 6751, NULL, '1.0000', '0.7700', '0.7700', '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 (118632, '2022-09-20', 2242, 111975, 6751, 56409, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118633, '2022-09-20', 1912, 111976, 6751, 62852, '2.0000', '0.6540', '0.6540', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118634, '2022-09-20', 1501, 111977, 6751, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118635, '2022-09-20', 1425, 111978, 6751, NULL, '1.0000', '1666.9347', '1666.9347', '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 (118636, '2022-09-20', 2037, 111979, 6751, 59674, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118637, '2022-09-20', 1863, 111980, 6751, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118638, '2022-09-20', 2315, 111981, 6751, NULL, '1.0000', '0.7700', '0.7700', '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 (118639, '2022-09-20', 1871, 111982, 6751, NULL, '6.0000', '-15130.1200', '-15130.1200', '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 (118640, '2022-09-20', 9921, 111983, 6751, 60358, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118641, '2022-09-20', 1863, 111984, 6751, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118642, '2022-09-20', 2237, 111985, 6751, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118643, '2022-09-20', 7944, 111986, 6751, NULL, '1.0000', '2.0100', '2.0100', '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 (118644, '2022-09-20', 2315, 111987, 6751, NULL, '1.0000', '0.7700', '0.7700', '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 (118645, '2022-09-20', 3026, 111988, 6752, NULL, '1.0000', '1.0000', '1.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 (118646, '2022-09-20', 8063, 111989, 6752, NULL, '1.0000', '1.6000', '1.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 (118647, '2022-09-20', 7777, 111990, 6752, NULL, '1.0000', '9.5000', '9.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 (118648, '2022-09-20', 9775, 111991, 6752, NULL, '1.0000', '7.9000', '7.9000', '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 (118649, '2022-09-20', 7380, 111992, 6752, NULL, '1.0000', '8.0000', '8.0000', '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 (118650, '2022-09-20', 8467, 111993, 6752, NULL, '1.0000', '60.3900', '60.3900', '87.0000', '87.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118651, '2022-09-20', 7483, 111994, 6752, 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 (118652, '2022-09-20', 7385, 111995, 6752, NULL, '4.0000', '2.0000', '2.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 (118653, '2022-09-20', 8810, 111996, 6752, NULL, '1.0000', '1.6000', '1.6000', '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 (118654, '2022-09-20', 7411, 111997, 6752, NULL, '2.0000', '1.3500', '1.3500', '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 (118655, '2022-09-20', 9791, 111998, 6752, 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 (118656, '2022-09-20', 8101, 111999, 6752, NULL, '1.0000', '1.9700', '1.9700', '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 (118657, '2022-09-20', 7672, 112000, 6752, NULL, '1.0000', '1.0200', '1.0200', '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 (118658, '2022-09-20', 7915, 112001, 6752, NULL, '1.0000', '2.8000', '2.8000', '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 (118659, '2022-09-20', 9803, 112002, 6752, NULL, '1.0000', '4.5500', '4.5500', '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 (118660, '2022-09-20', 7411, 112003, 6752, NULL, '1.0000', '1.3500', '1.3500', '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 (118661, '2022-09-20', 8548, 112004, 6752, NULL, '1.0000', '12.0000', '12.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 (118662, '2022-09-20', 7473, 112005, 6752, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (118663, '2022-09-20', 7709, 112006, 6752, NULL, '2.0000', '3.5000', '3.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 (118664, '2022-09-20', 1888, 112007, 6753, 62160, '1.0000', '19.2101', '19.2101', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118665, '2022-09-20', 1590, 112008, 6753, 62692, '3.0000', '2.4719', '2.4719', '4.0000', '4.0000', '47.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118666, '2022-09-20', 1744, 112009, 6753, NULL, '1.0000', '208.2584', '208.2584', '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 (118667, '2022-09-20', 7591, 112010, 6753, NULL, '2.0000', '2.7500', '2.7500', '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 (118668, '2022-09-20', 9734, 112011, 6753, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '195.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118669, '2022-09-20', 9529, 112012, 6753, NULL, '1.0000', '16.9600', '16.9600', '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 (118670, '2022-09-20', 2315, 112013, 6753, NULL, '2.0000', '0.7700', '0.7700', '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 (118671, '2022-09-20', 2948, 112014, 6753, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '79.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118672, '2022-09-20', 8933, 112015, 6753, 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 (118673, '2022-09-20', 1912, 112016, 6753, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118674, '2022-09-20', 1856, 112017, 6753, NULL, '1.0000', '155.0099', '155.0099', '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 (118675, '2022-09-20', 1328, 112018, 6753, NULL, '1.0000', '3.1500', '3.1500', '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 (118676, '2022-09-20', 9089, 112019, 6753, 62709, '1.0000', '6.1600', '6.1600', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118677, '2022-09-20', 8746, 112020, 6753, 62699, '1.0000', '3.9650', '3.9650', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118678, '2022-09-20', 1521, 112021, 6753, 62849, '1.0000', '2857.3077', '2857.3077', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118679, '2022-09-20', 1383, 112022, 6753, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118680, '2022-09-20', 1337, 112023, 6753, 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 (118681, '2022-09-20', 1602, 112024, 6753, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '35.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118682, '2022-09-20', 2506, 112025, 6753, NULL, '1.0000', '-15.8639', '-15.8639', '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 (118683, '2022-09-20', 9734, 112026, 6753, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '196.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118684, '2022-09-20', 2068, 112027, 6753, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118685, '2022-09-20', 2169, 112028, 6753, 62844, '2.0000', '1.8223', '1.8223', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118686, '2022-09-20', 8746, 112029, 6753, 62699, '1.0000', '3.9650', '3.9650', '6.0000', '6.0000', '23.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118687, '2022-09-20', 2336, 112030, 6754, 48655, '1.0000', '8.2640', '8.2640', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 359);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118688, '2022-09-20', 1783, 112031, 6754, 62672, '3.0000', '11.2558', '11.2558', '13.5000', '13.5000', '12.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118689, '2022-09-20', 1807, 112032, 6754, NULL, '5.0000', '3.9687', '3.9687', '2.5000', '2.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 (118690, '2022-09-20', 8680, 112033, 6755, NULL, '1.0000', '2.0000', '2.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 (118691, '2022-09-20', 7715, 112034, 6755, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118692, '2022-09-20', 7787, 112035, 6755, 62335, '1.0000', '20.6816', '20.6816', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118693, '2022-09-20', 8435, 112036, 6755, NULL, '1.0000', '5.7000', '5.7000', '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 (118694, '2022-09-20', 2315, 112037, 6755, 61885, '5.0000', '0.7648', '0.7648', '1.0000', '1.0000', '75.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118695, '2022-09-20', 2350, 112038, 6755, NULL, '1.0000', '15.9150', '15.9150', '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 (118696, '2022-09-20', 2102, 112039, 6755, NULL, '1.0000', '1.5667', '1.5667', '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 (118697, '2022-09-20', 1805, 112040, 6755, NULL, '1.0000', '4.9973', '4.9973', '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 (118698, '2022-09-20', 7609, 112041, 6755, NULL, '1.0000', '101.4174', '101.4174', '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 (118699, '2022-09-20', 9457, 112042, 6755, 43107, '1.0000', '2.9800', '2.9800', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118700, '2022-09-20', 7777, 112043, 6755, NULL, '1.0000', '0.1218', '0.1218', '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 (118701, '2022-09-20', 8243, 112044, 6755, 61802, '1.0000', '1.1400', '1.1400', '1.5000', '1.5000', '51.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118702, '2022-09-20', 8053, 112045, 6755, 61715, '1.0000', '1.4542', '1.4542', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118703, '2022-09-20', 1935, 112046, 6755, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '92.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118704, '2022-09-20', 7514, 112047, 6755, 61871, '2.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118705, '2022-09-20', 9274, 112048, 6755, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118706, '2022-09-20', 2104, 112049, 6755, NULL, '2.0000', '0.2000', '0.2000', '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 (118707, '2022-09-20', 2061, 112050, 6755, 59322, '1.0000', '12.7640', '12.7640', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118708, '2022-09-20', 7778, 112051, 6755, NULL, '1.0000', '12.0532', '12.0532', '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 (118709, '2022-09-20', 8127, 112052, 6755, NULL, '1.0000', '24.5300', '24.5300', '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 (118710, '2022-09-20', 8017, 112053, 6755, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118711, '2022-09-20', 8878, 112054, 6755, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118712, '2022-09-20', 8101, 112055, 6755, 61865, '3.0000', '2.5225', '2.5225', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118713, '2022-09-20', 8186, 112056, 6755, 61866, '3.0000', '1.5581', '1.5581', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118714, '2022-09-20', 2315, 112057, 6755, 61885, '4.0000', '0.7648', '0.7648', '1.0000', '1.0000', '76.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118715, '2022-09-20', 7444, 112058, 6755, 62329, '1.0000', '4.5100', '4.5100', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118716, '2022-09-20', 7396, 112059, 6755, 62346, '1.0000', '15.0592', '15.0592', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118717, '2022-09-20', 2363, 112060, 6755, 61738, '1.0000', '9.1511', '9.1511', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118718, '2022-09-20', 7473, 112061, 6755, 61833, '10.0000', '0.5360', '0.5360', '0.7000', '0.7000', '27.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118719, '2022-09-20', 7703, 112062, 6755, NULL, '2.0000', '-4961.0093', '-4961.0093', '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 (118720, '2022-09-20', 8685, 112063, 6755, NULL, '1.0000', '32.0000', '32.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 (118721, '2022-09-20', 7954, 112064, 6755, NULL, '4.0000', '-133727.7176', '-133727.7176', '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 (118722, '2022-09-20', 7864, 112065, 6755, 57170, '1.0000', '21.2816', '21.2816', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118723, '2022-09-20', 9586, 112066, 6755, 40436, '1.0000', '14.0000', '14.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118724, '2022-09-20', 8254, 112067, 6755, 62330, '1.0000', '30.2813', '30.2813', '43.5000', '43.5000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118725, '2022-09-20', 9865, 112068, 6755, 61728, '1.0000', '8.0234', '8.0234', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118726, '2022-09-20', 7411, 112069, 6755, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '60.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118727, '2022-09-20', 8359, 112070, 6755, 62300, '1.0000', '182.7232', '182.7232', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118728, '2022-09-20', 8739, 112071, 6755, 61970, '1.0000', '17.9896', '17.9896', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118729, '2022-09-20', 8547, 112072, 6755, 56550, '1.0000', '2.5128', '2.5128', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118730, '2022-09-20', 1501, 112073, 6755, 61830, '1.0000', '3.0589', '3.0589', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118731, '2022-09-20', 9177, 112074, 6755, 61839, '5.0000', '5.6559', '5.6559', '1.2000', '1.2000', '65.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118732, '2022-09-20', 7584, 112075, 6755, NULL, '1.0000', '2.5995', '2.5995', '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 (118733, '2022-09-20', 7672, 112076, 6755, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118734, '2022-09-20', 7666, 112077, 6755, 62332, '1.0000', '6.1134', '6.1134', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118735, '2022-09-20', 7709, 112078, 6755, 62558, '1.0000', '-32463.0909', '-32463.0909', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118736, '2022-09-20', 7781, 112079, 6755, NULL, '3.0000', '9.6314', '9.6314', '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 (118737, '2022-09-20', 8677, 112080, 6755, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118738, '2022-09-20', 2169, 112081, 6756, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118739, '2022-09-20', 1396, 112082, 6756, 62396, '1.0000', '2.5750', '2.5750', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118740, '2022-09-20', 2169, 112083, 6756, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118741, '2022-09-20', 10010, 112084, 6756, 61586, '2.0000', '0.8400', '0.8400', '1.1100', '1.1100', '95.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118742, '2022-09-20', 2656, 112085, 6756, 62703, '1.0000', '1.8878', '1.8878', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118743, '2022-09-20', 2169, 112086, 6756, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118744, '2022-09-20', 2283, 112087, 6756, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118745, '2022-09-20', 9695, 112088, 6756, 62670, '4.0000', '5.5620', '5.5620', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118746, '2022-09-20', 2169, 112089, 6756, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118747, '2022-09-20', 2948, 112090, 6757, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '78.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118748, '2022-09-20', 2262, 112091, 6757, 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 (118749, '2022-09-20', 2948, 112092, 6758, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '77.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118750, '2022-09-20', 2262, 112093, 6758, 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 (118751, '2022-09-20', 2948, 112094, 6758, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '77.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118752, '2022-09-20', 1432, 112095, 6758, 62389, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118753, '2022-09-20', 2287, 112096, 6758, 57710, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118754, '2022-09-20', 7357, 112097, 6758, NULL, '1.0000', '12.2000', '12.2000', '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 (118755, '2022-09-20', 2655, 112098, 6758, NULL, '1.0000', '-3904.0420', '-3904.0420', '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 (118756, '2022-09-20', 1772, 112099, 6758, 62187, '2.0000', '5.9758', '5.9758', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118757, '2022-09-20', 1772, 112099, 6758, 60328, '1.0000', '5.9758', '5.9758', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118758, '2022-09-20', 2893, 112100, 6758, NULL, '1.0000', '9.1280', '9.1280', '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 (118759, '2022-09-20', 2302, 112101, 6759, 62819, '1.0000', '5.4776', '5.4776', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118760, '2022-09-20', 1493, 112102, 6759, 61567, '1.0000', '-38.6246', '-38.6246', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118761, '2022-09-20', 7509, 112103, 6760, 62298, '1.0000', '8.5881', '8.5881', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118762, '2022-09-20', 2154, 112104, 6760, 60383, '1.0000', '13.1286', '13.1286', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118763, '2022-09-20', 7857, 112105, 6760, 62289, '1.0000', '18.6903', '18.6903', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118764, '2022-09-20', 7518, 112106, 6760, 61784, '1.0000', '9.3500', '9.3500', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118765, '2022-09-20', 8063, 112107, 6760, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '70.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118766, '2022-09-20', 8200, 112108, 6760, 60445, '1.0000', '8.7785', '8.7785', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118767, '2022-09-20', 9695, 112109, 6760, 62530, '1.0000', '5.9282', '5.9282', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118768, '2022-09-20', 1504, 112110, 6761, 58181, '10.0000', '2.0486', '2.0486', '2.8000', '2.8000', '20.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118769, '2022-09-20', 2297, 112111, 6761, NULL, '1.0000', '10.2971', '10.2971', '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 (118770, '2022-09-20', 2694, 112112, 6761, 50233, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118771, '2022-09-20', 1950, 112113, 6762, 58156, '1.0000', '6.3376', '6.3376', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118772, '2022-09-20', 1946, 112114, 6762, NULL, '1.0000', '-12.3249', '-12.3249', '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 (118773, '2022-09-20', 2100, 112115, 6762, NULL, '1.0000', '0.4608', '0.4608', '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 (118774, '2022-09-20', 9878, 112116, 6763, 62721, '1.0000', '9.0759', '9.0759', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118775, '2022-09-20', 2506, 112117, 6763, 60011, '1.0000', '4.3139', '4.3139', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118776, '2022-09-20', 8759, 112118, 6763, 60517, '1.0000', '9.8095', '9.8095', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118777, '2022-09-20', 2858, 112119, 6763, NULL, '2.0000', '1.0000', '1.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 (118778, '2022-09-20', 1525, 112120, 6763, 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 (118779, '2022-09-20', 2135, 112121, 6763, NULL, '1.0000', '2.2504', '2.2504', '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 (118780, '2022-09-20', 2281, 112122, 6763, 58765, '4.0000', '3.0000', '3.0000', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118781, '2022-09-20', 2627, 112123, 6763, 62631, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118782, '2022-09-20', 2068, 112124, 6763, 62744, '2.0000', '13.4054', '13.4054', '20.5000', '20.5000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118783, '2022-09-20', 1371, 112125, 6763, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118784, '2022-09-20', 1787, 112126, 6763, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118785, '2022-09-20', 2331, 112127, 6763, 62234, '1.0000', '13.8390', '13.8390', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118786, '2022-09-20', 9891, 112128, 6763, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118787, '2022-09-20', 1371, 112129, 6763, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118788, '2022-09-20', 1409, 112130, 6763, 62201, '1.0000', '13.1005', '13.1005', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118789, '2022-09-20', 1440, 112131, 6763, 62265, '1.0000', '10.3334', '10.3334', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118790, '2022-09-20', 2289, 112132, 6763, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118791, '2022-09-20', 2135, 112133, 6763, NULL, '1.0000', '2.2504', '2.2504', '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 (118792, '2022-09-20', 1326, 112134, 6763, 58753, '1.0000', '3.6418', '3.6418', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118793, '2022-09-20', 2277, 112135, 6763, 56888, '2.0000', '0.4266', '0.4266', '1.5000', '1.5000', '103.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118794, '2022-09-20', 2858, 112136, 6763, 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 (118795, '2022-09-20', 7385, 112137, 6763, 57945, '2.0000', '2.6553', '2.6553', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118796, '2022-09-20', 2004, 112138, 6763, NULL, '2.0000', '1.5000', '1.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 (118797, '2022-09-20', 8638, 112139, 6763, 61638, '2.0000', '0.5064', '0.5064', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118798, '2022-09-20', 2255, 112140, 6763, 61634, '1.0000', '22.3464', '22.3464', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118799, '2022-09-20', 9840, 112141, 6763, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118800, '2022-09-20', 2850, 112142, 6763, 61696, '2.0000', '7.4451', '7.4451', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118801, '2022-09-20', 1715, 112143, 6763, 62787, '1.0000', '7.4881', '7.4881', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118802, '2022-09-20', 1662, 112144, 6763, 62759, '1.0000', '52.2605', '52.2605', '86.0000', '86.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118803, '2022-09-20', 1871, 112145, 6763, 59999, '5.0000', '4.6908', '4.6908', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118804, '2022-09-20', 1425, 112146, 6763, 62266, '1.0000', '6.9402', '6.9402', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118805, '2022-09-20', 8746, 112147, 6763, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118806, '2022-09-20', 3033, 112148, 6763, 23995, '1.0000', '22.0000', '22.0000', '30.0000', '30.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 (118807, '2022-09-21', 2416, 112149, 6764, 63089, '1.0000', '1.3798', '1.3798', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118808, '2022-09-21', 2277, 112150, 6764, 62419, '1.0000', '0.5402', '0.5402', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118809, '2022-09-21', 2315, 112151, 6764, NULL, '1.0000', '0.7700', '0.7700', '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 (118810, '2022-09-21', 2169, 112152, 6764, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '103.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118811, '2022-09-21', 2135, 112153, 6764, NULL, '1.0000', '-0.2588', '-0.2588', '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 (118812, '2022-09-21', 2416, 112154, 6764, 63089, '1.0000', '1.3798', '1.3798', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118813, '2022-09-21', 9734, 112155, 6764, 62184, '7.0000', '0.4628', '0.4628', '0.7000', '0.7000', '187.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118814, '2022-09-21', 2061, 112156, 6764, NULL, '1.0000', '-13.2193', '-13.2193', '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 (118815, '2022-09-21', 9089, 112157, 6764, 63098, '1.0000', '-1.8549', '-1.8549', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118816, '2022-09-21', 1501, 112158, 6764, NULL, '1.0000', '-0.6640', '-0.6640', '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 (118817, '2022-09-21', 8017, 112159, 6764, 62109, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118818, '2022-09-21', 2109, 112160, 6764, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118819, '2022-09-21', 1425, 112161, 6764, 63108, '1.0000', '10.6932', '10.6932', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118820, '2022-09-21', 9740, 112162, 6764, 62840, '10.0000', '0.6695', '0.6695', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118821, '2022-09-21', 2252, 112163, 6764, 62865, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118822, '2022-09-21', 2821, 112164, 6764, NULL, '1.0000', '-2.6695', '-2.6695', '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 (118823, '2022-09-21', 1771, 112165, 6764, 62823, '1.0000', '7.3777', '7.3777', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118824, '2022-09-21', 1499, 112166, 6764, 62833, '2.0000', '0.5150', '0.5150', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118825, '2022-09-21', 9909, 112167, 6764, 55592, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118826, '2022-09-21', 2346, 112168, 6764, NULL, '1.0000', '2.4743', '2.4743', '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 (118827, '2022-09-21', 8149, 112169, 6764, NULL, '1.0000', '7.1834', '7.1834', '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 (118828, '2022-09-21', 2287, 112170, 6764, 57710, '2.0000', '2.3233', '2.3233', '4.5000', '4.5000', '21.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118829, '2022-09-21', 2059, 112171, 6764, 61500, '1.0000', '10.8085', '10.8085', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118830, '2022-09-21', 2107, 112172, 6764, 31964, '10.0000', '0.2500', '0.2500', '0.5000', '0.5000', '64.0000', 1, 0, NULL, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118831, '2022-09-21', 9176, 112173, 6765, 49308, '1.0000', '22.2900', '22.2900', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118832, '2022-09-21', 2959, 112174, 6765, 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 (118833, '2022-09-21', 2135, 112175, 6765, NULL, '1.0000', '-0.2588', '-0.2588', '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 (118834, '2022-09-21', 7459, 112176, 6765, NULL, '20.0000', '-17.6445', '-17.6445', '4.0000', '4.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 (118835, '2022-09-21', 1999, 112177, 6765, 61257, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118836, '2022-09-21', 1807, 112178, 6765, 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 (118837, '2022-09-21', 2656, 112179, 6766, 63092, '1.0000', '2.0265', '2.0265', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118838, '2022-09-21', 1339, 112180, 6766, 58192, '1.0000', '2.2855', '2.2855', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118839, '2022-09-21', 1409, 112181, 6766, 63062, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118840, '2022-09-21', 1432, 112182, 6767, 62389, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118841, '2022-09-21', 1529, 112183, 6767, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118842, '2022-09-21', 9734, 112184, 6767, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '186.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118843, '2022-09-21', 1638, 112185, 6767, 60243, '16.0000', '7.2540', '7.2540', '14.5000', '14.5000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118844, '2022-09-21', 9656, 112186, 6767, NULL, '1.0000', '33.0000', '33.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 (118845, '2022-09-21', 7658, 112187, 6767, NULL, '10.0000', '10.1500', '10.1500', '3.5000', '3.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 (118846, '2022-09-21', 1562, 112188, 6767, NULL, '1.0000', '8.2589', '8.2589', '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 (118847, '2022-09-21', 8689, 112189, 6768, 62356, '1.0000', '2.5171', '2.5171', '5.0000', '5.0000', '34.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118848, '2022-09-21', 1771, 112190, 6768, 62823, '1.0000', '7.3777', '7.3777', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118849, '2022-09-21', 8638, 112191, 6768, NULL, '1.0000', '0.5254', '0.5254', '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 (118850, '2022-09-21', 9999, 112192, 6769, 63087, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118851, '2022-09-21', 7317, 112193, 6770, NULL, '1.0000', '19.5500', '19.5500', '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 (118852, '2022-09-21', 8482, 112194, 6770, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118853, '2022-09-21', 9740, 112195, 6770, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '83.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118854, '2022-09-21', 7385, 112196, 6771, 57945, '1.0000', '2.6553', '2.6553', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118855, '2022-09-21', 1620, 112197, 6771, 62795, '1.0000', '2.3564', '2.3564', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118856, '2022-09-21', 7721, 112198, 6771, NULL, '1.0000', '5.5000', '5.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 (118857, '2022-09-21', 7897, 112199, 6771, 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 (118858, '2022-09-21', 2607, 112200, 6771, 9786, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '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 (118859, '2022-09-21', 1371, 112201, 6771, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118860, '2022-09-21', 2302, 112202, 6771, 61671, '1.0000', '5.1974', '5.1974', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118861, '2022-09-21', 1812, 112203, 6771, 62809, '4.0000', '8.8152', '8.8152', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118862, '2022-09-21', 2607, 112204, 6771, 9786, '4.0000', '1.4000', '1.4000', '1.7000', '1.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 (118863, '2022-09-21', 1347, 112205, 6771, 62725, '3.0000', '2.7178', '2.7178', '6.0000', '6.0000', '47.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118864, '2022-09-21', 1347, 112206, 6771, 62725, '3.0000', '2.7178', '2.7178', '6.0000', '6.0000', '47.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118865, '2022-09-21', 2916, 112207, 6771, 61647, '1.0000', '15.0676', '15.0676', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118866, '2022-09-21', 1863, 112208, 6771, 62253, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118867, '2022-09-21', 2281, 112209, 6771, 58765, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118868, '2022-09-21', 1409, 112210, 6771, 62201, '1.0000', '13.1005', '13.1005', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118869, '2022-09-21', 2893, 112211, 6771, 62224, '1.0000', '6.8008', '6.8008', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118870, '2022-09-21', 1863, 112212, 6771, 62253, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118871, '2022-09-21', 2858, 112213, 6771, NULL, '3.0000', '1.0000', '1.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 (118872, '2022-09-21', 1572, 112214, 6771, 58815, '2.0000', '1.9861', '1.9861', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118873, '2022-09-21', 10038, 112215, 6771, NULL, '1.0000', '2.9700', '2.9700', '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 (118874, '2022-09-21', 2277, 112216, 6771, 56888, '2.0000', '0.4266', '0.4266', '1.5000', '1.5000', '101.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118875, '2022-09-21', 2908, 112217, 6771, 62769, '2.0000', '0.2920', '0.2920', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118876, '2022-09-21', 1347, 112218, 6771, 62725, '2.0000', '2.7178', '2.7178', '6.0000', '6.0000', '48.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118877, '2022-09-21', 2607, 112219, 6771, 9786, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '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 (118878, '2022-09-21', 2379, 112220, 6771, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118879, '2022-09-21', 1837, 112221, 6771, 62213, '1.0000', '0.6220', '0.6220', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118880, '2022-09-21', 7886, 112222, 6771, NULL, '2.0000', '4.5000', '4.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 (118881, '2022-09-21', 2281, 112223, 6771, 58765, '9.0000', '3.0000', '3.0000', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118882, '2022-09-21', 1337, 112224, 6771, 34683, '2.0000', '2.2526', '2.2526', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118883, '2022-09-21', 2315, 112225, 6771, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118884, '2022-09-21', 9747, 112226, 6771, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118885, '2022-09-21', 1339, 112227, 6771, 62720, '1.0000', '2.0694', '2.0694', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118886, '2022-09-21', 9945, 112228, 6771, NULL, '1.0000', '12.1000', '12.1000', '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 (118887, '2022-09-21', 2236, 112229, 6771, 62209, '1.0000', '6.1815', '6.1815', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118888, '2022-09-21', 8456, 112230, 6772, NULL, '1.0000', '5.5000', '5.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 (118889, '2022-09-21', 7666, 112231, 6772, NULL, '1.0000', '3.6000', '3.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 (118890, '2022-09-21', 9469, 112232, 6772, NULL, '2.0000', '2.3000', '2.3000', '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 (118891, '2022-09-21', 8767, 112233, 6772, NULL, '1.0000', '6.6900', '6.6900', '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 (118892, '2022-09-21', 7917, 112234, 6772, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (118893, '2022-09-21', 7672, 112235, 6772, NULL, '2.0000', '1.0200', '1.0200', '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 (118894, '2022-09-21', 1420, 112236, 6772, NULL, '1.0000', '1.2000', '1.2000', '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 (118895, '2022-09-21', 9821, 112237, 6772, NULL, '1.0000', '1.4500', '1.4500', '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 (118896, '2022-09-21', 2761, 112238, 6772, NULL, '1.0000', '6.0000', '6.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 (118897, '2022-09-21', 7523, 112239, 6772, NULL, '1.0000', '9.7500', '9.7500', '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 (118898, '2022-09-21', 7457, 112240, 6772, 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 (118899, '2022-09-21', 9836, 112241, 6772, NULL, '1.0000', '25.0000', '25.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 (118900, '2022-09-21', 8101, 112242, 6772, NULL, '20.0000', '1.9700', '1.9700', '3.5000', '3.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 (118901, '2022-09-21', 7781, 112243, 6772, NULL, '23.0000', '4.2500', '4.2500', '1.5000', '1.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 (118902, '2022-09-21', 7570, 112244, 6772, NULL, '1.0000', '10.0000', '10.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 (118903, '2022-09-21', 9177, 112245, 6772, 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 (118904, '2022-09-21', 9865, 112246, 6772, NULL, '1.0000', '7.9500', '7.9500', '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 (118905, '2022-09-21', 7756, 112247, 6772, NULL, '1.0000', '2.5000', '2.5000', '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 (118906, '2022-09-21', 9763, 112248, 6772, NULL, '1.0000', '2.1000', '2.1000', '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 (118907, '2022-09-21', 9092, 112249, 6772, NULL, '2.0000', '5.2900', '5.2900', '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 (118908, '2022-09-21', 7779, 112250, 6772, NULL, '1.0000', '9.5000', '9.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 (118909, '2022-09-21', 8005, 112251, 6772, NULL, '1.0000', '58.0000', '58.0000', '76.5000', '76.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118910, '2022-09-21', 1310, 112252, 6772, NULL, '10.0000', '0.3700', '0.3700', '0.6000', '0.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 (118911, '2022-09-21', 8406, 112253, 6772, NULL, '1.0000', '6.7300', '6.7300', '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 (118912, '2022-09-21', 7894, 112254, 6772, NULL, '1.0000', '3.8000', '3.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 (118913, '2022-09-21', 9089, 112255, 6772, NULL, '1.0000', '3.8000', '3.8000', '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 (118914, '2022-09-21', 8032, 112256, 6772, NULL, '2.0000', '6.4400', '6.4400', '9.5000', '9.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 (118915, '2022-09-21', 7756, 112257, 6772, NULL, '1.0000', '2.5000', '2.5000', '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 (118916, '2022-09-21', 7559, 112258, 6772, NULL, '4.0000', '6.0000', '6.0000', '14.5000', '14.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 (118917, '2022-09-21', 1935, 112259, 6772, 5586, '-207.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 (118918, '2022-09-21', 1935, 112259, 6772, NULL, '209.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-209.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118919, '2022-09-21', 8203, 112260, 6772, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118920, '2022-09-21', 2100, 112261, 6772, 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 (118921, '2022-09-21', 7405, 112262, 6772, 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 (118922, '2022-09-21', 8810, 112263, 6772, NULL, '1.0000', '1.6000', '1.6000', '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 (118923, '2022-09-21', 7324, 112264, 6772, NULL, '3.0000', '4.0000', '4.0000', '8.5000', '8.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 (118924, '2022-09-21', 8547, 112265, 6772, NULL, '1.0000', '3.3500', '3.3500', '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 (118925, '2022-09-21', 7518, 112266, 6772, NULL, '1.0000', '7.8200', '7.8200', '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 (118926, '2022-09-21', 2893, 112267, 6773, NULL, '1.0000', '9.1280', '9.1280', '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 (118927, '2022-09-21', 2085, 112268, 6773, 60337, '2.0000', '1.4119', '1.4119', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118928, '2022-09-21', 1340, 112269, 6773, NULL, '1.0000', '5.5200', '5.5200', '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 (118929, '2022-09-21', 2004, 112270, 6773, 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 (118930, '2022-09-21', 2169, 112271, 6773, 62844, '2.0000', '1.8223', '1.8223', '2.5000', '2.5000', '101.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118931, '2022-09-21', 1369, 112272, 6773, 62152, '1.0000', '7.6286', '7.6286', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118932, '2022-09-21', 7316, 112273, 6773, 62365, '1.0000', '1.0214', '1.0214', '1.5000', '1.5000', '99.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118933, '2022-09-21', 1760, 112274, 6773, NULL, '5.0000', '-0.1939', '-0.1939', '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 (118934, '2022-09-21', 1432, 112275, 6773, 62389, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118935, '2022-09-21', 2169, 112276, 6773, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118936, '2022-09-21', 2971, 112277, 6773, 59687, '3.0000', '5.6665', '5.6665', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118937, '2022-09-21', 2971, 112277, 6773, 54827, '1.0000', '5.6665', '5.6665', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118938, '2022-09-21', 1432, 112278, 6773, 62389, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118939, '2022-09-21', 8449, 112279, 6773, 55953, '1.0000', '13.9000', '13.9000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118940, '2022-09-21', 2086, 112280, 6773, NULL, '1.0000', '4.3200', '4.3200', '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 (118941, '2022-09-21', 8208, 112281, 6773, NULL, '3.0000', '63.9119', '63.9119', '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 (118942, '2022-09-21', 7328, 112282, 6773, NULL, '3.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (118943, '2022-09-21', 1840, 112283, 6773, NULL, '3.0000', '0.2400', '0.2400', '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 (118944, '2022-09-21', 9922, 112284, 6773, 58232, '2.0000', '3.1500', '3.1500', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118945, '2022-09-21', 1427, 112285, 6773, NULL, '1.0000', '9.5000', '9.5000', '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 (118946, '2022-09-21', 2061, 112286, 6773, NULL, '1.0000', '-13.2193', '-13.2193', '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 (118947, '2022-09-21', 1494, 112287, 6773, NULL, '1.0000', '4.3900', '4.3900', '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 (118948, '2022-09-21', 2342, 112288, 6773, 58159, '5.0000', '2.3666', '2.3666', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118949, '2022-09-21', 2088, 112289, 6773, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118950, '2022-09-21', 1676, 112290, 6773, 38561, '1.0000', '12.3375', '12.3375', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118951, '2022-09-21', 2109, 112291, 6773, 62179, '4.0000', '1.4840', '1.4840', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118952, '2022-09-21', 9734, 112292, 6773, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '184.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118953, '2022-09-21', 1409, 112293, 6773, 63062, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118954, '2022-09-21', 2411, 112294, 6773, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118955, '2022-09-21', 2135, 112295, 6773, NULL, '1.0000', '-0.2588', '-0.2588', '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 (118956, '2022-09-21', 1504, 112296, 6773, 63103, '10.0000', '2.0631', '2.0631', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118957, '2022-09-21', 2315, 112297, 6773, 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 (118958, '2022-09-21', 2352, 112298, 6773, NULL, '2.0000', '313.7364', '313.7364', '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 (118959, '2022-09-21', 1771, 112299, 6773, 62823, '1.0000', '7.3777', '7.3777', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118960, '2022-09-21', 1368, 112300, 6773, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118961, '2022-09-21', 1529, 112301, 6773, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118962, '2022-09-21', 2344, 112302, 6773, 62069, '1.0000', '20.0000', '20.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118963, '2022-09-21', 1346, 112303, 6773, 55603, '4.0000', '1.6774', '1.6774', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118964, '2022-09-21', 2315, 112304, 6773, NULL, '1.0000', '0.7700', '0.7700', '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 (118965, '2022-09-21', 1812, 112305, 6773, 62817, '1.0000', '8.6413', '8.6413', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118966, '2022-09-21', 1524, 112306, 6773, 62433, '1.0000', '4.3324', '4.3324', '6.0000', '6.0000', '49.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118967, '2022-09-21', 1602, 112307, 6773, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '34.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118968, '2022-09-21', 2135, 112308, 6773, NULL, '1.0000', '-0.2588', '-0.2588', '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 (118969, '2022-09-21', 9734, 112309, 6773, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '183.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118970, '2022-09-21', 9738, 112310, 6773, 62435, '1.0000', '8.7000', '8.7000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118971, '2022-09-21', 9848, 112311, 6773, 60301, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118972, '2022-09-21', 9275, 112312, 6773, NULL, '3.0000', '6.3000', '6.3000', '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 (118973, '2022-09-21', 2357, 112313, 6773, 62427, '1.0000', '4.2955', '4.2955', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118974, '2022-09-21', 2057, 112314, 6773, 61497, '1.0000', '1.6496', '1.6496', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118975, '2022-09-21', 10042, 112315, 6773, 63116, '4.0000', '3.1700', '3.1700', '4.0000', '4.0000', '96.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118976, '2022-09-21', 1521, 112316, 6773, 62849, '1.0000', '12496.8027', '12496.8027', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118977, '2022-09-21', 8482, 112317, 6773, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118978, '2022-09-21', 2405, 112318, 6773, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '5.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118979, '2022-09-21', 9996, 112319, 6773, 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 (118980, '2022-09-21', 2283, 112320, 6773, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118981, '2022-09-21', 2269, 112321, 6773, NULL, '1.0000', '0.1934', '0.1934', '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 (118982, '2022-09-21', 2169, 112322, 6773, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118983, '2022-09-21', 2994, 112323, 6773, 62366, '1.0000', '9.0785', '9.0785', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118984, '2022-09-21', 1812, 112324, 6773, 62817, '1.0000', '8.6413', '8.6413', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118985, '2022-09-21', 2302, 112325, 6773, 62819, '1.0000', '3.7461', '3.7461', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118986, '2022-09-21', 1640, 112326, 6773, NULL, '1.0000', '2.4995', '2.4995', '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 (118987, '2022-09-21', 1772, 112327, 6773, 60328, '1.0000', '5.9758', '5.9758', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118988, '2022-09-21', 7509, 112328, 6774, 62298, '1.0000', '8.5881', '8.5881', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118989, '2022-09-21', 2289, 112329, 6774, NULL, '4.0000', '4.0652', '4.0652', '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 (118990, '2022-09-21', 7709, 112330, 6774, 62558, '2.0000', '-32463.0909', '-32463.0909', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118991, '2022-09-21', 9740, 112331, 6774, 59087, '2.0000', '0.6631', '0.6631', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118992, '2022-09-21', 7490, 112332, 6774, 60806, '20.0000', '2.2232', '2.2232', '0.5000', '0.5000', '130.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118993, '2022-09-21', 9526, 112333, 6774, NULL, '1.0000', '7.0000', '7.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 (118994, '2022-09-21', 7411, 112334, 6774, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118995, '2022-09-21', 8918, 112335, 6774, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118996, '2022-09-21', 9791, 112336, 6774, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118997, '2022-09-21', 1935, 112337, 6774, 61805, '3.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '89.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118998, '2022-09-21', 8456, 112338, 6774, 61937, '1.0000', '8.6291', '8.6291', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (118999, '2022-09-21', 8017, 112339, 6774, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119000, '2022-09-21', 9320, 112340, 6774, 60156, '1.0000', '11.3227', '11.3227', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119001, '2022-09-21', 7999, 112341, 6774, 61941, '2.0000', '1.7500', '1.7500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119002, '2022-09-21', 9265, 112342, 6774, 30225, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119003, '2022-09-21', 7411, 112343, 6774, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119004, '2022-09-21', 2315, 112344, 6774, 61885, '3.0000', '0.7648', '0.7648', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119005, '2022-09-21', 7674, 112345, 6774, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119006, '2022-09-21', 8061, 112346, 6774, 57544, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119007, '2022-09-21', 10003, 112347, 6774, 61764, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119008, '2022-09-21', 2284, 112348, 6774, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119009, '2022-09-21', 7917, 112349, 6774, 61747, '2.0000', '2.5067', '2.5067', '0.7000', '0.7000', '57.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119010, '2022-09-21', 8243, 112350, 6774, 61802, '3.0000', '1.1400', '1.1400', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119011, '2022-09-21', 7672, 112351, 6774, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119012, '2022-09-21', 7980, 112352, 6774, NULL, '5.0000', '21379.0542', '21379.0542', '0.9000', '0.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 (119013, '2022-09-21', 9856, 112353, 6774, 61955, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119014, '2022-09-21', 1837, 112354, 6774, NULL, '1.0000', '0.5600', '0.5600', '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 (119015, '2022-09-21', 9272, 112355, 6774, NULL, '1.0000', '3.1206', '3.1206', '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 (119016, '2022-09-21', 7862, 112356, 6774, NULL, '1.0000', '496.0500', '496.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 (119017, '2022-09-21', 8053, 112357, 6774, 61715, '1.0000', '1.4542', '1.4542', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119018, '2022-09-21', 9274, 112358, 6774, 60463, '1.0000', '5.5023', '5.5023', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119019, '2022-09-21', 7334, 112359, 6774, 62557, '1.0000', '9.4229', '9.4229', '13.5000', '13.5000', '11.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119020, '2022-09-21', 7473, 112360, 6774, 61833, '9.0000', '0.5360', '0.5360', '0.7000', '0.7000', '18.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119021, '2022-09-21', 2315, 112361, 6774, 61885, '3.0000', '0.7648', '0.7648', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119022, '2022-09-21', 10004, 112362, 6774, 61894, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119023, '2022-09-21', 8017, 112363, 6774, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '74.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119024, '2022-09-21', 8456, 112364, 6774, 61937, '1.0000', '8.6291', '8.6291', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119025, '2022-09-21', 9821, 112365, 6774, 56590, '1.0000', '1.4500', '1.4500', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119026, '2022-09-21', 8061, 112366, 6774, 57544, '1.0000', '33.3545', '33.3545', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119027, '2022-09-21', 7558, 112367, 6774, NULL, '2.0000', '-33.4148', '-33.4148', '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 (119028, '2022-09-21', 9019, 112368, 6775, NULL, '1.0000', '6.0000', '6.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 (119029, '2022-09-21', 7514, 112369, 6775, 61871, '2.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119030, '2022-09-21', 7444, 112370, 6775, NULL, '1.0000', '4.5100', '4.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 (119031, '2022-09-21', 7473, 112371, 6775, 61833, '3.0000', '0.5360', '0.5360', '0.7000', '0.7000', '15.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119032, '2022-09-21', 8925, 112372, 6775, 59122, '1.0000', '3.5315', '3.5315', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119033, '2022-09-21', 1340, 112373, 6775, 57181, '1.0000', '3.3640', '3.3640', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119034, '2022-09-21', 8017, 112374, 6775, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '70.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119035, '2022-09-21', 7674, 112375, 6775, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119036, '2022-09-21', 8303, 112376, 6775, 54293, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 454);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119037, '2022-09-21', 7451, 112377, 6775, 51057, '1.0000', '9.5563', '9.5563', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119038, '2022-09-21', 7983, 112378, 6775, NULL, '1.0000', '97.4250', '97.4250', '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 (119039, '2022-09-21', 8155, 112379, 6775, NULL, '1.0000', '65.0000', '65.0000', '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 (119040, '2022-09-21', 2315, 112380, 6775, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119041, '2022-09-21', 7730, 112381, 6775, 62568, '5.0000', '0.1050', '0.1050', '0.2000', '0.2000', '92.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119042, '2022-09-21', 7917, 112382, 6775, 61747, '1.0000', '2.5067', '2.5067', '0.7000', '0.7000', '56.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119043, '2022-09-21', 7714, 112383, 6775, NULL, '1.0000', '0.4200', '0.4200', '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 (119044, '2022-09-21', 1855, 112384, 6775, 61776, '1.0000', '1.4852', '1.4852', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119045, '2022-09-21', 8154, 112385, 6775, NULL, '3.0000', '12.3000', '12.3000', '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 (119046, '2022-09-21', 7588, 112386, 6775, 62306, '1.0000', '8.3895', '8.3895', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119047, '2022-09-21', 1541, 112387, 6775, NULL, '1.0000', '15.1124', '15.1124', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119048, '2022-09-21', 7641, 112388, 6775, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '35.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119049, '2022-09-21', 7514, 112389, 6775, 61871, '1.0000', '-48780.1984', '-48780.1984', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119050, '2022-09-21', 9092, 112390, 6775, 60813, '3.0000', '0.3167', '0.3167', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119051, '2022-09-21', 7730, 112391, 6775, 62568, '5.0000', '0.1050', '0.1050', '0.2000', '0.2000', '92.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119052, '2022-09-21', 7316, 112392, 6775, 61704, '1.0000', '0.9268', '0.9268', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119053, '2022-09-21', 2761, 112393, 6775, 61954, '1.0000', '10.6154', '10.6154', '16.0000', '16.0000', '9.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119054, '2022-09-21', 9885, 112394, 6776, 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 (119055, '2022-09-21', 2893, 112395, 6776, 18242, '-27.0000', '6.0000', '6.0000', '9.5000', '9.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 (119056, '2022-09-21', 2893, 112395, 6776, NULL, '28.0000', '6.0000', '6.0000', '9.5000', '9.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 (119057, '2022-09-21', 2916, 112396, 6776, NULL, '1.0000', '15.0000', '15.0000', '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 (119058, '2022-09-21', 1383, 112397, 6776, NULL, '1.0000', '47.4000', '47.4000', '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 (119059, '2022-09-21', 1783, 112398, 6776, 4901, '-40.0000', '7.8500', '7.8500', '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 (119060, '2022-09-21', 1783, 112398, 6776, NULL, '41.0000', '7.8500', '7.8500', '13.5000', '13.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 (119061, '2022-09-21', 9469, 112399, 6776, NULL, '3.0000', '2.3000', '2.3000', '7.0000', '7.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 (119062, '2022-09-21', 1572, 112400, 6776, 435, '1.0000', '138.3520', '138.3520', '3.0000', '3.0000', '4.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 (119063, '2022-09-21', 2656, 112401, 6776, NULL, '4.0000', '1.5000', '1.5000', '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 (119064, '2022-09-21', 2893, 112402, 6776, 18242, '-27.0000', '6.0000', '6.0000', '9.5000', '9.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 (119065, '2022-09-21', 2893, 112402, 6776, NULL, '28.0000', '6.0000', '6.0000', '9.5000', '9.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 (119066, '2022-09-21', 2642, 112403, 6776, 10573, '-24.0000', '9.2000', '9.2000', '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 (119067, '2022-09-21', 2642, 112403, 6776, NULL, '25.0000', '9.2000', '9.2000', '18.0000', '18.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 (119068, '2022-09-21', 1837, 112404, 6776, 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 (119069, '2022-09-21', 7496, 112405, 6776, NULL, '2.0000', '0.9600', '0.9600', '8.5000', '8.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 (119070, '2022-09-21', 2821, 112406, 6776, 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 (119071, '2022-09-21', 1874, 112407, 6776, 670, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '3.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 (119072, '2022-09-21', 1819, 112408, 6776, 18240, '-9.0000', '5.5930', '5.5930', '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 (119073, '2022-09-21', 1819, 112408, 6776, NULL, '10.0000', '5.5930', '5.5930', '12.5000', '12.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 (119074, '2022-09-21', 1839, 112409, 6776, 8734, '-45.0000', '6.1500', '6.1500', '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 (119075, '2022-09-21', 1839, 112409, 6776, NULL, '46.0000', '6.1500', '6.1500', '12.0000', '12.0000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119076, '2022-09-21', 2302, 112410, 6776, 2963, '-65.0000', '5.2000', '5.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 (119077, '2022-09-21', 2302, 112410, 6776, NULL, '66.0000', '5.2000', '5.2000', '10.0000', '10.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119078, '2022-09-21', 1525, 112411, 6776, NULL, '3.0000', '4.9100', '4.9100', '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 (119079, '2022-09-21', 8133, 112412, 6776, NULL, '1.0000', '5.0000', '5.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 (119080, '2022-09-21', 7411, 112413, 6776, NULL, '2.0000', '1.3500', '1.3500', '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 (119081, '2022-09-21', 2758, 112414, 6776, 22011, '-10.0000', '-20.1917', '-20.1917', '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 (119082, '2022-09-21', 2758, 112414, 6776, NULL, '12.0000', '-20.1917', '-20.1917', '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 (119083, '2022-09-21', 2858, 112415, 6776, 17772, '-133.0000', '1.0000', '1.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 (119084, '2022-09-21', 2858, 112415, 6776, NULL, '134.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-134.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119085, '2022-09-21', 2893, 112416, 6776, 18242, '-27.0000', '6.0000', '6.0000', '9.5000', '9.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 (119086, '2022-09-21', 2893, 112416, 6776, NULL, '28.0000', '6.0000', '6.0000', '9.5000', '9.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 (119087, '2022-09-21', 2916, 112417, 6776, NULL, '1.0000', '15.0000', '15.0000', '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 (119088, '2022-09-21', 1382, 112418, 6776, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.5000', '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 (119089, '2022-09-21', 2095, 112419, 6776, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '46.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 (119090, '2022-09-21', 1646, 112420, 6776, 3239, '-25.0000', '4.5300', '4.5300', '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 (119091, '2022-09-21', 1646, 112420, 6776, NULL, '26.0000', '4.5300', '4.5300', '11.0000', '11.0000', '-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 (119092, '2022-09-21', 1665, 112421, 6776, 3235, '-161.0000', '1.3000', '1.3000', '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 (119093, '2022-09-21', 1665, 112421, 6776, NULL, '162.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-162.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119094, '2022-09-21', 2342, 112422, 6776, 3845, '-123.0000', '1.8600', '1.8600', '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 (119095, '2022-09-21', 2342, 112422, 6776, NULL, '125.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-125.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119096, '2022-09-21', 1330, 112423, 6776, 14393, '-10.0000', '3.7000', '3.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 (119097, '2022-09-21', 1330, 112423, 6776, NULL, '12.0000', '3.7000', '3.7000', '4.0000', '4.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 (119098, '2022-09-21', 1333, 112424, 6776, 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 (119099, '2022-09-21', 2363, 112425, 6776, 3866, '-14.0000', '6.8800', '6.8800', '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 (119100, '2022-09-21', 2363, 112425, 6776, NULL, '15.0000', '6.8800', '6.8800', '12.0000', '12.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 (119101, '2022-09-21', 2850, 112426, 6776, NULL, '2.0000', '10.0000', '10.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 (119102, '2022-09-21', 2302, 112427, 6776, 2963, '-65.0000', '5.2000', '5.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 (119103, '2022-09-21', 2302, 112427, 6776, NULL, '66.0000', '5.2000', '5.2000', '10.0000', '10.0000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119104, '2022-09-21', 1525, 112428, 6776, 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 (119105, '2022-09-21', 1525, 112429, 6776, 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 (119106, '2022-09-21', 2315, 112430, 6776, 2735, '-678.0000', '0.3300', '0.3300', '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 (119107, '2022-09-21', 2315, 112430, 6776, NULL, '679.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-679.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119108, '2022-09-21', 1856, 112431, 6776, NULL, '1.0000', '4.2500', '4.2500', '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 (119109, '2022-09-21', 2342, 112432, 6776, 3845, '-123.0000', '1.8600', '1.8600', '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 (119110, '2022-09-21', 2342, 112432, 6776, NULL, '127.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119111, '2022-09-21', 1665, 112433, 6776, 3235, '-161.0000', '1.3000', '1.3000', '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 (119112, '2022-09-21', 1665, 112433, 6776, NULL, '162.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-162.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119113, '2022-09-21', 1840, 112434, 6776, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (119114, '2022-09-21', 1841, 112435, 6776, NULL, '4.0000', '142.5780', '142.5780', '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 (119115, '2022-09-21', 2289, 112436, 6776, 2949, '-274.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 (119116, '2022-09-21', 2289, 112436, 6776, NULL, '278.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-278.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119117, '2022-09-21', 9747, 112437, 6776, NULL, '2.0000', '0.6500', '0.6500', '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 (119118, '2022-09-21', 1371, 112438, 6776, 10169, '-16.0000', '5.5000', '5.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 (119119, '2022-09-21', 1371, 112438, 6776, NULL, '17.0000', '5.5000', '5.5000', '10.0000', '10.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 (119120, '2022-09-21', 1367, 112439, 6777, 13715, '-2.0000', '-17710.9284', '-17710.9284', '108.0000', '108.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119121, '2022-09-21', 1367, 112439, 6777, NULL, '3.0000', '-17710.9284', '-17710.9284', '108.0000', '108.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 (119122, '2022-09-21', 2109, 112440, 6778, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119123, '2022-09-21', 8183, 112441, 6778, NULL, '1.0000', '5849.4008', '5849.4008', '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 (119124, '2022-09-21', 9633, 112442, 6778, 61578, '1.0000', '7.9117', '7.9117', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119125, '2022-09-21', 1942, 112443, 6778, 55714, '1.0000', '20.0151', '20.0151', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119126, '2022-09-21', 8482, 112444, 6778, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119127, '2022-09-21', 2260, 112445, 6778, 62140, '1.0000', '5.0048', '5.0048', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119128, '2022-09-21', 2009, 112446, 6778, 57111, '1.0000', '17.9524', '17.9524', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119129, '2022-09-21', 9734, 112447, 6778, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '179.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119130, '2022-09-21', 2109, 112448, 6778, 62179, '3.0000', '1.4840', '1.4840', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119131, '2022-09-21', 2656, 112449, 6778, 63092, '1.0000', '2.0265', '2.0265', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119132, '2022-09-21', 2131, 112450, 6778, 59685, '1.0000', '12.6477', '12.6477', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119133, '2022-09-21', 2004, 112451, 6778, 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 (119134, '2022-09-21', 2948, 112452, 6778, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '75.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119135, '2022-09-21', 2260, 112453, 6778, 62140, '4.0000', '5.0048', '5.0048', '7.0000', '7.0000', '15.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119136, '2022-09-21', 2109, 112454, 6778, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119137, '2022-09-21', 1665, 112455, 6778, 61557, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119138, '2022-09-21', 9927, 112456, 6778, 63118, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119139, '2022-09-21', 9726, 112457, 6778, 62100, '1.0000', '5.2010', '5.2010', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119140, '2022-09-21', 1652, 112458, 6778, 62092, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119141, '2022-09-21', 9683, 112459, 6778, 63093, '1.0000', '1.8684', '1.8684', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119142, '2022-09-21', 1528, 112460, 6778, NULL, '2.0000', '7.2440', '7.2440', '8.5000', '8.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 (119143, '2022-09-21', 2135, 112461, 6778, NULL, '1.0000', '-0.2588', '-0.2588', '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 (119144, '2022-09-21', 2169, 112462, 6778, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '98.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119145, '2022-09-21', 9999, 112463, 6778, 63087, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119146, '2022-09-22', 2244, 112464, 6779, NULL, '1.0000', '-2.9000', '-2.9000', '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 (119147, '2022-09-22', 2237, 112465, 6779, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119148, '2022-09-22', 2035, 112466, 6779, 59676, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119149, '2022-09-22', 2237, 112467, 6779, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119150, '2022-09-22', 2908, 112468, 6779, 55931, '2.0000', '0.3518', '0.3518', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119151, '2022-09-22', 7411, 112469, 6779, NULL, '1.0000', '1.2819', '1.2819', '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 (119152, '2022-09-22', 2109, 112470, 6779, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119153, '2022-09-22', 8183, 112471, 6779, NULL, '1.0000', '5849.4008', '5849.4008', '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 (119154, '2022-09-22', 7612, 112472, 6779, 63065, '2.0000', '2.0673', '2.0673', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119155, '2022-09-22', 2270, 112473, 6779, 61546, '1.0000', '5.1971', '5.1971', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119156, '2022-09-22', 2285, 112474, 6779, NULL, '1.0000', '-159.5389', '-159.5389', '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 (119157, '2022-09-22', 2315, 112475, 6779, NULL, '1.0000', '0.7700', '0.7700', '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 (119158, '2022-09-22', 2693, 112476, 6779, 57798, '1.0000', '23.3886', '23.3886', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119159, '2022-09-22', 2820, 112477, 6779, 58273, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119160, '2022-09-22', 1686, 112478, 6779, NULL, '1.0000', '33.0000', '33.0000', '46.5000', '46.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119161, '2022-09-22', 9697, 112479, 6779, 55574, '1.0000', '7.4600', '7.4600', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119162, '2022-09-22', 1670, 112480, 6779, NULL, '1.0000', '-35.9534', '-35.9534', '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 (119163, '2022-09-22', 9177, 112481, 6779, 62836, '10.0000', '0.8708', '0.8708', '1.2000', '1.2000', '20.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119164, '2022-09-22', 9996, 112482, 6779, 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 (119165, '2022-09-22', 1690, 112483, 6779, 62087, '1.0000', '8.6637', '8.6637', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119166, '2022-09-22', 1855, 112484, 6779, 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 (119167, '2022-09-22', 2315, 112485, 6779, NULL, '1.0000', '0.7700', '0.7700', '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 (119168, '2022-09-22', 1840, 112486, 6779, NULL, '2.0000', '0.2400', '0.2400', '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 (119169, '2022-09-22', 1841, 112487, 6779, NULL, '2.0000', '0.7630', '0.7630', '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 (119170, '2022-09-22', 8746, 112488, 6779, 63088, '1.0000', '3.5796', '3.5796', '6.0000', '6.0000', '21.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119171, '2022-09-22', 7411, 112489, 6779, NULL, '1.0000', '1.2819', '1.2819', '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 (119172, '2022-09-22', 2445, 112490, 6779, NULL, '4.0000', '3.2000', '3.2000', '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 (119173, '2022-09-22', 9921, 112491, 6779, 63119, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119174, '2022-09-22', 9791, 112492, 6779, 62105, '3.0000', '0.9000', '0.9000', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119175, '2022-09-22', 1874, 112493, 6779, NULL, '1.0000', '-24.5000', '-24.5000', '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 (119176, '2022-09-22', 1513, 112494, 6779, 56433, '1.0000', '14.1672', '14.1672', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119177, '2022-09-22', 2169, 112495, 6779, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '97.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119178, '2022-09-22', 1602, 112496, 6779, 62877, '9.0000', '7.8679', '7.8679', '11.5000', '11.5000', '25.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119179, '2022-09-22', 7411, 112497, 6779, NULL, '1.0000', '1.2819', '1.2819', '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 (119180, '2022-09-22', 9979, 112498, 6779, NULL, '1.0000', '15.5300', '15.5300', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119181, '2022-09-22', 7382, 112499, 6779, 62379, '1.0000', '7.4501', '7.4501', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119182, '2022-09-22', 7382, 112499, 6779, NULL, '1.0000', '7.4501', '7.4501', '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 (119183, '2022-09-22', 1851, 112500, 6779, 58164, '1.0000', '13.3410', '13.3410', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119184, '2022-09-22', 7411, 112501, 6779, NULL, '1.0000', '1.2819', '1.2819', '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 (119185, '2022-09-22', 9740, 112502, 6779, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '82.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119186, '2022-09-22', 9770, 112503, 6779, 62093, '1.0000', '2.6571', '2.6571', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119187, '2022-09-22', 9735, 112504, 6779, 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 (119188, '2022-09-22', 1945, 112505, 6779, 55705, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119189, '2022-09-22', 2096, 112506, 6779, 58242, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119190, '2022-09-22', 9734, 112507, 6779, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '177.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119191, '2022-09-22', 2416, 112508, 6779, 63089, '1.0000', '1.3798', '1.3798', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119192, '2022-09-22', 2706, 112509, 6779, 58186, '1.0000', '8.7925', '8.7925', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119193, '2022-09-22', 9827, 112510, 6779, NULL, '1.0000', '16.6600', '16.6600', '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 (119194, '2022-09-22', 1688, 112511, 6779, 62867, '1.0000', '23.7000', '23.7000', '31.5000', '31.5000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119195, '2022-09-22', 2167, 112512, 6779, NULL, '1.0000', '-1.6257', '-1.6257', '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 (119196, '2022-09-22', 1867, 112513, 6779, 62866, '1.0000', '11.2423', '11.2423', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119197, '2022-09-22', 2565, 112514, 6779, 55433, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 475);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119198, '2022-09-22', 2565, 112514, 6779, 54069, '1.0000', '0.8542', '0.8542', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 455);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119199, '2022-09-22', 9683, 112515, 6779, 63093, '1.0000', '1.8684', '1.8684', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119200, '2022-09-22', 1602, 112516, 6779, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '33.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119201, '2022-09-22', 9482, 112517, 6779, 63102, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119202, '2022-09-22', 8769, 112518, 6780, NULL, '1.0000', '6.6000', '6.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 (119203, '2022-09-22', 8672, 112519, 6780, 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 (119204, '2022-09-22', 7674, 112520, 6780, NULL, '1.0000', '1.3000', '1.3000', '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 (119205, '2022-09-22', 8039, 112521, 6780, NULL, '1.0000', '14.7500', '14.7500', '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 (119206, '2022-09-22', 1332, 112522, 6780, 14392, '-2.0000', '7.5000', '7.5000', '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 (119207, '2022-09-22', 1332, 112522, 6780, NULL, '3.0000', '7.5000', '7.5000', '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 (119208, '2022-09-22', 8063, 112523, 6780, NULL, '1.0000', '1.6000', '1.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 (119209, '2022-09-22', 9204, 112524, 6780, NULL, '1.0000', '8.1600', '8.1600', '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 (119210, '2022-09-22', 9092, 112525, 6780, NULL, '1.0000', '5.2900', '5.2900', '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 (119211, '2022-09-22', 7456, 112526, 6780, NULL, '1.0000', '34.7000', '34.7000', '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 (119212, '2022-09-22', 2154, 112527, 6780, 13520, '-4.0000', '10.6849', '10.6849', '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 (119213, '2022-09-22', 2154, 112527, 6780, NULL, '5.0000', '10.6849', '10.6849', '17.5000', '17.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 (119214, '2022-09-22', 7703, 112528, 6780, NULL, '1.0000', '22.9900', '22.9900', '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 (119215, '2022-09-22', 7756, 112529, 6780, NULL, '1.0000', '2.5000', '2.5000', '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 (119216, '2022-09-22', 1840, 112530, 6780, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (119217, '2022-09-22', 2289, 112531, 6780, 2949, '-278.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 (119218, '2022-09-22', 2289, 112531, 6780, NULL, '280.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-280.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119219, '2022-09-22', 7333, 112532, 6780, NULL, '2.0000', '13.5000', '13.5000', '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 (119220, '2022-09-22', 2560, 112533, 6780, NULL, '1.0000', '17.0000', '17.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 (119221, '2022-09-22', 9788, 112534, 6780, 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 (119222, '2022-09-22', 9751, 112535, 6780, NULL, '3.0000', '1.0000', '1.0000', '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 (119223, '2022-09-22', 2769, 112536, 6780, NULL, '4.0000', '1.5200', '1.5200', '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 (119224, '2022-09-22', 2546, 112537, 6780, 6310, '-1.0000', '13.7598', '13.7598', '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 (119225, '2022-09-22', 2546, 112537, 6780, NULL, '2.0000', '13.7598', '13.7598', '22.5000', '22.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 (119226, '2022-09-22', 2295, 112538, 6780, 2954, '-78.0000', '0.9600', '0.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 (119227, '2022-09-22', 2295, 112538, 6780, NULL, '80.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119228, '2022-09-22', 7639, 112539, 6780, 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 (119229, '2022-09-22', 7852, 112540, 6780, NULL, '1.0000', '15.0000', '15.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 (119230, '2022-09-22', 7411, 112541, 6780, NULL, '2.0000', '1.3500', '1.3500', '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 (119231, '2022-09-22', 7708, 112542, 6780, NULL, '1.0000', '7.8000', '7.8000', '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 (119232, '2022-09-22', 7917, 112543, 6780, NULL, '3.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (119233, '2022-09-22', 7730, 112544, 6780, NULL, '10.0000', '0.1000', '0.1000', '0.2000', '0.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 (119234, '2022-09-22', 1602, 112545, 6781, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119235, '2022-09-22', 1935, 112546, 6781, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119236, '2022-09-22', 2169, 112547, 6781, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119237, '2022-09-22', 8677, 112548, 6781, 62232, '2.0000', '2.0894', '2.0894', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119238, '2022-09-22', 1604, 112549, 6781, 57941, '2.0000', '57.1901', '57.1901', '50.5000', '50.5000', '6.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119239, '2022-09-22', 1650, 112550, 6781, 63289, '1.0000', '16.0127', '16.0127', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119240, '2022-09-22', 1504, 112551, 6781, 63133, '10.0000', '2.3115', '2.3115', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119241, '2022-09-22', 1528, 112552, 6781, 60059, '6.0000', '33.2874', '33.2874', '8.5000', '8.5000', '10.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119242, '2022-09-22', 2236, 112553, 6781, 62209, '1.0000', '6.1815', '6.1815', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119243, '2022-09-22', 1867, 112554, 6781, NULL, '1.0000', '6.9656', '6.9656', '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 (119244, '2022-09-22', 2105, 112555, 6781, 63271, '1.0000', '2.1866', '2.1866', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119245, '2022-09-22', 10045, 112556, 6781, 63299, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119246, '2022-09-22', 2864, 112557, 6781, 59978, '5.0000', '1.4045', '1.4045', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119247, '2022-09-22', 1687, 112558, 6781, 61651, '2.0000', '15.0466', '15.0466', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119248, '2022-09-22', 1541, 112559, 6781, 61597, '1.0000', '66.6834', '66.6834', '30.5000', '30.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119249, '2022-09-22', 1912, 112560, 6781, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '67.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119250, '2022-09-22', 9907, 112561, 6781, 63153, '9.0000', '12.0000', '12.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119251, '2022-09-22', 9907, 112561, 6781, 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 (119252, '2022-09-22', 9695, 112562, 6781, 63134, '1.0000', '5.8148', '5.8148', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119253, '2022-09-22', 8746, 112563, 6781, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119254, '2022-09-22', 7917, 112564, 6782, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119255, '2022-09-22', 2315, 112565, 6782, 2735, '-679.0000', '0.3300', '0.3300', '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 (119256, '2022-09-22', 2315, 112565, 6782, NULL, '682.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-682.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119257, '2022-09-22', 7672, 112566, 6782, NULL, '1.0000', '1.0200', '1.0200', '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 (119258, '2022-09-22', 8462, 112567, 6782, NULL, '1.0000', '7.0400', '7.0400', '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 (119259, '2022-09-22', 8065, 112568, 6782, NULL, '1.0000', '32.0000', '32.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 (119260, '2022-09-22', 9413, 112569, 6782, NULL, '1.0000', '9.0000', '9.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 (119261, '2022-09-22', 9740, 112570, 6782, NULL, '2.0000', '0.6600', '0.6600', '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 (119262, '2022-09-22', 1841, 112571, 6782, NULL, '2.0000', '142.5780', '142.5780', '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 (119263, '2022-09-22', 2104, 112572, 6782, 1048, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '277.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 (119264, '2022-09-22', 8359, 112573, 6782, 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 (119265, '2022-09-22', 7482, 112574, 6782, NULL, '1.0000', '3.0500', '3.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 (119266, '2022-09-22', 7514, 112575, 6782, NULL, '1.0000', '2.2500', '2.2500', '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 (119267, '2022-09-22', 7674, 112576, 6782, NULL, '1.0000', '1.3000', '1.3000', '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 (119268, '2022-09-22', 9747, 112577, 6782, NULL, '7.0000', '0.6500', '0.6500', '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 (119269, '2022-09-22', 7836, 112578, 6782, NULL, '1.0000', '9.0000', '9.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 (119270, '2022-09-22', 9202, 112579, 6782, NULL, '1.0000', '3.5000', '3.5000', '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 (119271, '2022-09-22', 7787, 112580, 6782, NULL, '1.0000', '10.9000', '10.9000', '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 (119272, '2022-09-22', 2069, 112581, 6782, 5571, '-22.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119273, '2022-09-22', 2069, 112581, 6782, NULL, '23.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (119274, '2022-09-22', 8097, 112582, 6782, NULL, '5.0000', '3.4000', '3.4000', '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 (119275, '2022-09-22', 9730, 112583, 6782, NULL, '1.0000', '18.2000', '18.2000', '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 (119276, '2022-09-22', 7542, 112584, 6782, NULL, '1.0000', '3.8100', '3.8100', '5.0300', '5.0300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119277, '2022-09-22', 7411, 112585, 6782, NULL, '1.0000', '1.3500', '1.3500', '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 (119278, '2022-09-22', 1520, 112586, 6782, 33822, '1.0000', '1.4700', '1.4700', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119279, '2022-09-22', 8360, 112587, 6782, NULL, '1.0000', '3.2300', '3.2300', '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 (119280, '2022-09-22', 7324, 112588, 6782, NULL, '1.0000', '4.0000', '4.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 (119281, '2022-09-22', 1935, 112589, 6782, 5586, '-209.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 (119282, '2022-09-22', 1935, 112589, 6782, NULL, '210.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-210.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119283, '2022-09-22', 9177, 112590, 6782, NULL, '4.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-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 (119284, '2022-09-22', 7784, 112591, 6782, NULL, '4.0000', '4.2300', '4.2300', '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 (119285, '2022-09-22', 8203, 112592, 6782, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119286, '2022-09-22', 9747, 112593, 6782, NULL, '3.0000', '0.6500', '0.6500', '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 (119287, '2022-09-22', 7641, 112594, 6782, NULL, '1.0000', '1.9000', '1.9000', '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 (119288, '2022-09-22', 9046, 112595, 6782, NULL, '1.0000', '20.0000', '20.0000', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119289, '2022-09-22', 7678, 112596, 6782, NULL, '1.0000', '5.1400', '5.1400', '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 (119290, '2022-09-22', 1812, 112597, 6782, 8224, '-122.0000', '7.8900', '7.8900', '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 (119291, '2022-09-22', 1812, 112597, 6782, NULL, '125.0000', '7.8900', '7.8900', '14.5000', '14.5000', '-125.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119292, '2022-09-22', 7736, 112598, 6782, NULL, '1.0000', '16.2000', '16.2000', '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 (119293, '2022-09-22', 2656, 112599, 6782, NULL, '1.0000', '1.5000', '1.5000', '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 (119294, '2022-09-22', 2069, 112600, 6782, 5571, '-22.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119295, '2022-09-22', 2069, 112600, 6782, NULL, '23.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (119296, '2022-09-22', 8065, 112601, 6782, NULL, '1.0000', '32.0000', '32.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 (119297, '2022-09-22', 2733, 112602, 6782, 14083, '-5.0000', '7.5000', '7.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 (119298, '2022-09-22', 2733, 112602, 6782, NULL, '6.0000', '7.5000', '7.5000', '12.0000', '12.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 (119299, '2022-09-22', 7411, 112603, 6782, NULL, '2.0000', '1.3500', '1.3500', '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 (119300, '2022-09-22', 7385, 112604, 6782, NULL, '2.0000', '2.0000', '2.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 (119301, '2022-09-22', 8154, 112605, 6782, NULL, '1.0000', '12.3000', '12.3000', '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 (119302, '2022-09-22', 7853, 112606, 6782, NULL, '1.0000', '13.0000', '13.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 (119303, '2022-09-22', 7952, 112607, 6782, 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 (119304, '2022-09-22', 7925, 112608, 6782, NULL, '1.0000', '8.3000', '8.3000', '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 (119305, '2022-09-22', 2315, 112609, 6782, 2735, '-679.0000', '0.3300', '0.3300', '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 (119306, '2022-09-22', 2315, 112609, 6782, NULL, '681.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-681.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119307, '2022-09-22', 7672, 112610, 6782, NULL, '1.0000', '1.0200', '1.0200', '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 (119308, '2022-09-22', 7666, 112611, 6782, NULL, '1.0000', '3.6000', '3.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 (119309, '2022-09-22', 9456, 112612, 6782, NULL, '1.0000', '3.3200', '3.3200', '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 (119310, '2022-09-22', 8596, 112613, 6783, 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 (119311, '2022-09-22', 7411, 112614, 6783, NULL, '2.0000', '1.3500', '1.3500', '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 (119312, '2022-09-22', 8069, 112615, 6783, NULL, '1.0000', '29.1700', '29.1700', '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 (119313, '2022-09-22', 8097, 112616, 6783, NULL, '4.0000', '3.4000', '3.4000', '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 (119314, '2022-09-22', 9770, 112617, 6783, NULL, '1.0000', '2.2000', '2.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 (119315, '2022-09-22', 2302, 112618, 6783, 2963, '-67.0000', '5.2000', '5.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 (119316, '2022-09-22', 2302, 112618, 6783, NULL, '68.0000', '5.2000', '5.2000', '10.0000', '10.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119317, '2022-09-22', 7917, 112619, 6783, NULL, '5.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (119318, '2022-09-22', 8080, 112620, 6783, NULL, '1.0000', '2.9000', '2.9000', '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 (119319, '2022-09-22', 9747, 112621, 6783, NULL, '1.0000', '0.6500', '0.6500', '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 (119320, '2022-09-22', 8017, 112622, 6783, NULL, '2.0000', '40.0000', '40.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 (119321, '2022-09-22', 9821, 112623, 6783, NULL, '1.0000', '1.4500', '1.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 (119322, '2022-09-22', 8456, 112624, 6783, NULL, '1.0000', '5.5000', '5.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 (119323, '2022-09-22', 8081, 112625, 6783, NULL, '3.0000', '0.6500', '0.6500', '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 (119324, '2022-09-22', 8413, 112626, 6783, 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 (119325, '2022-09-22', 8889, 112627, 6783, NULL, '1.0000', '39.0000', '39.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 (119326, '2022-09-22', 8208, 112628, 6783, NULL, '10.0000', '33.0000', '33.0000', '0.5000', '0.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 (119327, '2022-09-22', 2289, 112629, 6783, 2949, '-280.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 (119328, '2022-09-22', 2289, 112629, 6783, NULL, '284.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-284.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119329, '2022-09-22', 7411, 112630, 6783, NULL, '2.0000', '1.3500', '1.3500', '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 (119330, '2022-09-22', 7666, 112631, 6783, NULL, '1.0000', '3.6000', '3.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 (119331, '2022-09-22', 2821, 112632, 6784, 62815, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119332, '2022-09-22', 9908, 112633, 6784, 63154, '9.0000', '12.0000', '12.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119333, '2022-09-22', 9908, 112633, 6784, 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 (119334, '2022-09-22', 2858, 112634, 6784, NULL, '2.0000', '1.0000', '1.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 (119335, '2022-09-22', 2238, 112635, 6784, 55772, '1.0000', '47.3889', '47.3889', '73.0000', '73.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119336, '2022-09-22', 2656, 112636, 6784, 63148, '2.0000', '1.5801', '1.5801', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119337, '2022-09-22', 9770, 112637, 6784, 62235, '1.0000', '2.3477', '2.3477', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119338, '2022-09-22', 7603, 112638, 6784, NULL, '1.0000', '1.1500', '1.1500', '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 (119339, '2022-09-22', 2850, 112639, 6784, 61696, '2.0000', '7.4451', '7.4451', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119340, '2022-09-22', 7590, 112640, 6784, 62772, '1.0000', '2.8503', '2.8503', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119341, '2022-09-22', 9891, 112641, 6784, 60077, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119342, '2022-09-22', 2342, 112642, 6784, 60051, '10.0000', '2.2694', '2.2694', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119343, '2022-09-22', 1783, 112643, 6784, 63138, '2.0000', '3.2893', '3.2893', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119344, '2022-09-22', 7999, 112644, 6784, 63397, '1.0000', '-1.6754', '-1.6754', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119345, '2022-09-22', 2262, 112645, 6784, 62196, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119346, '2022-09-22', 1935, 112646, 6784, 63142, '2.0000', '1.1937', '1.1937', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119347, '2022-09-22', 8187, 112647, 6784, NULL, '3.0000', '1.6100', '1.6100', '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 (119348, '2022-09-22', 1621, 112648, 6784, 62723, '1.0000', '30.5334', '30.5334', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119349, '2022-09-22', 2643, 112649, 6784, 63149, '1.0000', '1.0316', '1.0316', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119350, '2022-09-22', 1772, 112650, 6784, 63369, '1.0000', '6.0812', '6.0812', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119351, '2022-09-22', 1863, 112651, 6784, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119352, '2022-09-22', 2315, 112652, 6784, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119353, '2022-09-22', 8337, 112653, 6784, NULL, '1.0000', '17.8000', '17.8000', '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 (119354, '2022-09-22', 9940, 112654, 6784, 63135, '1.0000', '8.5758', '8.5758', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119355, '2022-09-22', 1602, 112655, 6784, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119356, '2022-09-22', 1493, 112656, 6784, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119357, '2022-09-22', 8677, 112657, 6784, 62232, '1.0000', '2.0894', '2.0894', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119358, '2022-09-22', 10038, 112658, 6784, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119359, '2022-09-22', 8133, 112659, 6784, 62251, '1.0000', '10.3333', '10.3333', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119360, '2022-09-22', 2169, 112660, 6784, 62805, '2.0000', '1.4878', '1.4878', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119361, '2022-09-22', 2384, 112661, 6784, 62762, '3.0000', '0.4679', '0.4679', '0.8000', '0.8000', '97.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119362, '2022-09-22', 1493, 112662, 6784, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119363, '2022-09-22', 1935, 112663, 6784, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119364, '2022-09-22', 2655, 112664, 6784, 63147, '1.0000', '7.1263', '7.1263', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119365, '2022-09-22', 2821, 112665, 6784, 62815, '2.0000', '3.5118', '3.5118', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119366, '2022-09-22', 1804, 112666, 6784, 46603, '1.0000', '4.4470', '4.4470', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119367, '2022-09-22', 9775, 112667, 6784, 61699, '1.0000', '10.4000', '10.4000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119368, '2022-09-22', 2315, 112668, 6784, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119369, '2022-09-22', 8187, 112669, 6784, NULL, '4.0000', '1.6100', '1.6100', '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 (119370, '2022-09-22', 9747, 112670, 6784, 61623, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119371, '2022-09-22', 1519, 112671, 6784, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119372, '2022-09-22', 1541, 112672, 6784, 61597, '1.0000', '66.6834', '66.6834', '30.5000', '30.5000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119373, '2022-09-22', 2169, 112673, 6784, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119374, '2022-09-22', 1912, 112674, 6784, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119375, '2022-09-22', 1436, 112675, 6784, 7232, '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 (119376, '2022-09-22', 9732, 112676, 6784, 58774, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119377, '2022-09-22', 1387, 112677, 6784, 62789, '1.0000', '53.9689', '53.9689', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119378, '2022-09-22', 1529, 112678, 6784, 56937, '1.0000', '46621657.3492', '46621657.3492', '6.5000', '6.5000', '15.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119379, '2022-09-22', 2302, 112679, 6784, 63368, '1.0000', '5.3119', '5.3119', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119380, '2022-09-22', 1519, 112680, 6784, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119381, '2022-09-22', 2379, 112681, 6784, 61292, '1.0000', '2.0455', '2.0455', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119382, '2022-09-22', 9695, 112682, 6784, 63134, '1.0000', '5.8148', '5.8148', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119383, '2022-09-22', 1779, 112683, 6784, 4938, '1.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 (119384, '2022-09-22', 2302, 112684, 6784, 63368, '1.0000', '5.3119', '5.3119', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119385, '2022-09-22', 2416, 112685, 6784, 63150, '1.0000', '1.3439', '1.3439', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119386, '2022-09-22', 10037, 112686, 6785, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119387, '2022-09-22', 2169, 112687, 6785, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119388, '2022-09-22', 1912, 112688, 6785, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119389, '2022-09-22', 2916, 112689, 6785, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (119390, '2022-09-22', 1874, 112690, 6785, NULL, '1.0000', '-24.5000', '-24.5000', '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 (119391, '2022-09-22', 1863, 112691, 6785, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119392, '2022-09-22', 9734, 112692, 6785, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '174.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119393, '2022-09-22', 9740, 112693, 6785, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '81.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119394, '2022-09-22', 1493, 112694, 6785, 61567, '1.0000', '-38.6246', '-38.6246', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119395, '2022-09-22', 7824, 112695, 6785, 39802, '1.0000', '5.5000', '5.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119396, '2022-09-22', 2315, 112696, 6785, NULL, '1.0000', '0.7700', '0.7700', '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 (119397, '2022-09-22', 1620, 112697, 6785, 62873, '4.0000', '2.3984', '2.3984', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119398, '2022-09-22', 1912, 112698, 6785, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119399, '2022-09-22', 2169, 112699, 6785, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119400, '2022-09-22', 9775, 112700, 6785, 58147, '1.0000', '10.5927', '10.5927', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119401, '2022-09-22', 9735, 112701, 6785, 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 (119402, '2022-09-22', 9898, 112702, 6785, NULL, '10.0000', '3.0000', '3.0000', '4.0000', '4.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 (119403, '2022-09-22', 2061, 112703, 6785, NULL, '1.0000', '-13.2193', '-13.2193', '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 (119404, '2022-09-22', 7612, 112704, 6785, 63421, '2.0000', '1.6442', '1.6442', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119405, '2022-09-22', 2893, 112705, 6785, NULL, '1.0000', '9.1280', '9.1280', '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 (119406, '2022-09-22', 9921, 112706, 6785, 63475, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119407, '2022-09-22', 2545, 112707, 6785, 62082, '1.0000', '9.0358', '9.0358', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119408, '2022-09-22', 1425, 112708, 6785, 63464, '1.0000', '10.4986', '10.4986', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119409, '2022-09-22', 2169, 112709, 6785, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119410, '2022-09-22', 1863, 112710, 6785, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119411, '2022-09-22', 2237, 112711, 6785, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119412, '2022-09-22', 8963, 112712, 6785, 62451, '1.0000', '16.1427', '16.1427', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119413, '2022-09-22', 1804, 112713, 6785, 62124, '1.0000', '19.8100', '19.8100', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119414, '2022-09-22', 1580, 112714, 6785, 62190, '3.0000', '1.4680', '1.4680', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119415, '2022-09-22', 1425, 112715, 6785, 63464, '1.0000', '10.4986', '10.4986', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119416, '2022-09-22', 9734, 112716, 6785, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '173.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119417, '2022-09-22', 2169, 112717, 6785, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119418, '2022-09-22', 9482, 112718, 6785, 63458, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119419, '2022-09-22', 2169, 112719, 6785, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119420, '2022-09-22', 8638, 112720, 6785, NULL, '1.0000', '0.5254', '0.5254', '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 (119421, '2022-09-22', 2109, 112721, 6785, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119422, '2022-09-22', 3044, 112722, 6785, 62830, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '35.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119423, '2022-09-22', 1863, 112723, 6785, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '58.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119424, '2022-09-22', 1383, 112724, 6785, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119425, '2022-09-22', 1863, 112725, 6785, 62841, '4.0000', '1.5054', '1.5054', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119426, '2022-09-22', 9804, 112726, 6785, 60223, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119427, '2022-09-22', 8193, 112727, 6785, NULL, '1.0000', '6.9800', '6.9800', '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 (119428, '2022-09-22', 2315, 112728, 6785, NULL, '1.0000', '0.7700', '0.7700', '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 (119429, '2022-09-22', 2295, 112729, 6785, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119430, '2022-09-22', 2766, 112730, 6785, NULL, '1.0000', '22.0000', '22.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 (119431, '2022-09-22', 8745, 112731, 6785, 61488, '1.0000', '14.0504', '14.0504', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119432, '2022-09-22', 9999, 112732, 6785, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119433, '2022-09-22', 1346, 112733, 6785, 55603, '4.0000', '1.6774', '1.6774', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119434, '2022-09-22', 1640, 112734, 6785, NULL, '1.0000', '2.4995', '2.4995', '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 (119435, '2022-09-22', 9804, 112735, 6785, 60223, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119436, '2022-09-22', 2169, 112736, 6785, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119437, '2022-09-22', 2109, 112737, 6785, 62179, '1.0000', '1.4840', '1.4840', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119438, '2022-09-22', 1480, 112738, 6785, NULL, '1.0000', '29.9900', '29.9900', '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 (119439, '2022-09-22', 1665, 112739, 6785, 61557, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119440, '2022-09-22', 2169, 112740, 6785, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119441, '2022-09-22', 9482, 112741, 6785, 63458, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119442, '2022-09-22', 1665, 112742, 6785, 61557, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119443, '2022-09-22', 2118, 112743, 6785, 49629, '1.0000', '8.5000', '8.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 (119444, '2022-09-22', 1665, 112744, 6785, 61557, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119445, '2022-09-22', 1667, 112745, 6785, 62361, '1.0000', '9.3728', '9.3728', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119446, '2022-09-22', 1863, 112746, 6785, 62841, '3.0000', '1.5054', '1.5054', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119447, '2022-09-22', 1383, 112747, 6785, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119448, '2022-09-22', 9963, 112748, 6785, 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 (119449, '2022-09-22', 2560, 112749, 6785, NULL, '1.0000', '17.0000', '17.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 (119450, '2022-09-23', 7711, 112750, 6786, NULL, '1.0000', '35.6300', '35.6300', '75.0000', '75.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119451, '2022-09-23', 9856, 112751, 6787, NULL, '1.0000', '-4.4000', '-4.4000', '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 (119452, '2022-09-23', 1493, 112752, 6787, NULL, '1.0000', '-38.6246', '-38.6246', '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 (119453, '2022-09-23', 9750, 112753, 6787, NULL, '1.0000', '2.7458', '2.7458', '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 (119454, '2022-09-23', 2169, 112754, 6787, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '89.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119455, '2022-09-23', 9503, 112755, 6787, NULL, '1.0000', '240.6525', '240.6525', '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 (119456, '2022-09-23', 8059, 112756, 6787, 59688, '1.0000', '11.4900', '11.4900', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119457, '2022-09-23', 2169, 112757, 6787, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '89.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119458, '2022-09-23', 2088, 112758, 6787, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119459, '2022-09-23', 2821, 112759, 6787, NULL, '1.0000', '-4.2032', '-4.2032', '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 (119460, '2022-09-23', 2565, 112760, 6787, 63479, '2.0000', '0.9118', '0.9118', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119461, '2022-09-23', 1399, 112761, 6787, 63471, '1.0000', '25.5000', '25.5000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119462, '2022-09-23', 9914, 112762, 6787, NULL, '1.0000', '46.9900', '46.9900', '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 (119463, '2022-09-23', 2738, 112763, 6787, 60282, '1.0000', '9.3067', '9.3067', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119464, '2022-09-23', 2738, 112763, 6787, 56428, '1.0000', '9.3067', '9.3067', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119465, '2022-09-23', 2948, 112764, 6787, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '74.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119466, '2022-09-23', 9734, 112765, 6787, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '166.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119467, '2022-09-23', 2109, 112766, 6787, NULL, '1.0000', '1.4840', '1.4840', '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 (119468, '2022-09-23', 1748, 112767, 6787, NULL, '2.0000', '0.3200', '0.3200', '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 (119469, '2022-09-23', 8740, 112768, 6787, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119470, '2022-09-23', 8979, 112769, 6787, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119471, '2022-09-23', 2293, 112770, 6787, NULL, '1.0000', '1.1118', '1.1118', '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 (119472, '2022-09-23', 1580, 112771, 6787, 62190, '1.0000', '1.4680', '1.4680', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119473, '2022-09-23', 2565, 112772, 6787, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119474, '2022-09-23', 10006, 112773, 6788, NULL, '2.0000', '12.9800', '12.9800', '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 (119475, '2022-09-23', 2964, 112774, 6788, 60920, '1.0000', '6.4630', '6.4630', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119476, '2022-09-23', 1863, 112775, 6788, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119477, '2022-09-23', 2506, 112776, 6788, 60011, '1.0000', '4.3139', '4.3139', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119478, '2022-09-23', 1772, 112777, 6788, 63369, '1.0000', '6.0812', '6.0812', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119479, '2022-09-23', 8079, 112778, 6788, 62756, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119480, '2022-09-23', 2256, 112779, 6788, 62765, '1.0000', '16.2319', '16.2319', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119481, '2022-09-23', 2251, 112780, 6788, 62728, '1.0000', '13.1955', '13.1955', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119482, '2022-09-23', 2821, 112781, 6788, 62815, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119483, '2022-09-23', 1807, 112782, 6788, 63391, '2.0000', '-1.5061', '-1.5061', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119484, '2022-09-23', 1680, 112783, 6788, 62750, '1.0000', '5.6046', '5.6046', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119485, '2022-09-23', 1395, 112784, 6788, 62259, '1.0000', '8.7000', '8.7000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119486, '2022-09-23', 2062, 112785, 6788, 59968, '1.0000', '10.1103', '10.1103', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119487, '2022-09-23', 2273, 112786, 6788, 62754, '1.0000', '3.0795', '3.0795', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119488, '2022-09-23', 1557, 112787, 6789, NULL, '1.0000', '8.2500', '8.2500', '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 (119489, '2022-09-23', 2315, 112788, 6789, NULL, '2.0000', '0.7700', '0.7700', '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 (119490, '2022-09-23', 9914, 112789, 6789, NULL, '1.0000', '46.9900', '46.9900', '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 (119491, '2022-09-23', 8183, 112790, 6789, NULL, '1.0000', '5849.4008', '5849.4008', '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 (119492, '2022-09-23', 2068, 112791, 6789, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119493, '2022-09-23', 1812, 112792, 6789, 62817, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119494, '2022-09-23', 1365, 112793, 6789, 57729, '2.0000', '28.8565', '28.8565', '29.0000', '29.0000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119495, '2022-09-23', 1857, 112794, 6789, 60222, '1.0000', '73.1000', '73.1000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119496, '2022-09-23', 9847, 112795, 6789, 51398, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119497, '2022-09-23', 1772, 112796, 6789, 60328, '1.0000', '5.9758', '5.9758', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119498, '2022-09-23', 1946, 112797, 6789, NULL, '1.0000', '-12.3249', '-12.3249', '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 (119499, '2022-09-23', 9463, 112798, 6789, NULL, '1.0000', '287.4328', '287.4328', '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 (119500, '2022-09-23', 1487, 112799, 6789, NULL, '1.0000', '1350.3996', '1350.3996', '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 (119501, '2022-09-23', 1562, 112800, 6789, NULL, '1.0000', '8.2589', '8.2589', '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 (119502, '2022-09-23', 2109, 112801, 6789, NULL, '1.0000', '1.4840', '1.4840', '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 (119503, '2022-09-23', 9089, 112802, 6790, 63454, '1.0000', '-48.2505', '-48.2505', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119504, '2022-09-23', 7609, 112803, 6791, NULL, '1.0000', '4.3300', '4.3300', '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 (119505, '2022-09-23', 2656, 112804, 6791, NULL, '1.0000', '1.5000', '1.5000', '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 (119506, '2022-09-23', 7819, 112805, 6791, NULL, '1.0000', '9.5000', '9.5000', '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 (119507, '2022-09-23', 1765, 112806, 6791, 3175, '-26.0000', '90.0000', '90.0000', '9.5000', '9.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 (119508, '2022-09-23', 1765, 112806, 6791, NULL, '27.0000', '90.0000', '90.0000', '9.5000', '9.5000', '-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 (119509, '2022-09-23', 8059, 112807, 6791, NULL, '1.0000', '6.0000', '6.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 (119510, '2022-09-23', 7459, 112808, 6791, NULL, '10.0000', '2.3500', '2.3500', '4.0000', '4.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 (119511, '2022-09-23', 7570, 112809, 6791, NULL, '1.0000', '10.0000', '10.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 (119512, '2022-09-23', 9177, 112810, 6791, 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 (119513, '2022-09-23', 8063, 112811, 6791, NULL, '1.0000', '1.6000', '1.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 (119514, '2022-09-23', 9988, 112812, 6791, 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 (119515, '2022-09-23', 2965, 112813, 6791, 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 (119516, '2022-09-23', 7385, 112814, 6791, NULL, '1.0000', '2.0000', '2.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 (119517, '2022-09-23', 7411, 112815, 6791, NULL, '2.0000', '1.3500', '1.3500', '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 (119518, '2022-09-23', 8878, 112816, 6791, NULL, '1.0000', '6.6700', '6.6700', '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 (119519, '2022-09-23', 9791, 112817, 6791, 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 (119520, '2022-09-23', 7657, 112818, 6791, NULL, '1.0000', '11.3200', '11.3200', '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 (119521, '2022-09-23', 7744, 112819, 6791, NULL, '1.0000', '2.7000', '2.7000', '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 (119522, '2022-09-23', 8254, 112820, 6791, NULL, '1.0000', '25.9000', '25.9000', '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 (119523, '2022-09-23', 7877, 112821, 6791, NULL, '1.0000', '4.4000', '4.4000', '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 (119524, '2022-09-23', 7411, 112822, 6791, NULL, '2.0000', '1.3500', '1.3500', '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 (119525, '2022-09-23', 9734, 112823, 6791, NULL, '20.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (119526, '2022-09-23', 8387, 112824, 6791, NULL, '2.0000', '26.0000', '26.0000', '38.0000', '38.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 (119527, '2022-09-23', 7666, 112825, 6791, NULL, '1.0000', '3.6000', '3.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 (119528, '2022-09-23', 7444, 112826, 6791, 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 (119529, '2022-09-23', 7780, 112827, 6791, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119530, '2022-09-23', 7608, 112828, 6791, NULL, '1.0000', '6.9800', '6.9800', '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 (119531, '2022-09-23', 2251, 112829, 6791, 2788, '-38.0000', '10.9700', '10.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 (119532, '2022-09-23', 2251, 112829, 6791, NULL, '39.0000', '10.9700', '10.9700', '20.0000', '20.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119533, '2022-09-23', 1935, 112830, 6791, 5586, '-210.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 (119534, '2022-09-23', 1935, 112830, 6791, NULL, '211.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-211.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119535, '2022-09-23', 9576, 112831, 6791, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119536, '2022-09-23', 7886, 112832, 6791, NULL, '1.0000', '4.5000', '4.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 (119537, '2022-09-23', 7672, 112833, 6792, 62287, '2.0000', '1.8417', '1.8417', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119538, '2022-09-23', 7781, 112834, 6792, NULL, '3.0000', '9.6314', '9.6314', '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 (119539, '2022-09-23', 9272, 112835, 6792, NULL, '1.0000', '3.1206', '3.1206', '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 (119540, '2022-09-23', 2315, 112836, 6792, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119541, '2022-09-23', 7736, 112837, 6792, 61856, '1.0000', '25.2865', '25.2865', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119542, '2022-09-23', 9755, 112838, 6792, 61974, '1.0000', '16.5000', '16.5000', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119543, '2022-09-23', 8672, 112839, 6792, 56480, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 486);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119544, '2022-09-23', 7576, 112840, 6792, NULL, '1.0000', '294.2473', '294.2473', '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 (119545, '2022-09-23', 9740, 112841, 6792, 59087, '2.0000', '0.6631', '0.6631', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119546, '2022-09-23', 9748, 112842, 6792, 46922, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119547, '2022-09-23', 7411, 112843, 6792, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119548, '2022-09-23', 9751, 112844, 6792, 60568, '1.0000', '1.2432', '1.2432', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119549, '2022-09-23', 2656, 112845, 6792, NULL, '1.0000', '1.7540', '1.7540', '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 (119550, '2022-09-23', 7396, 112846, 6792, 62346, '1.0000', '15.0592', '15.0592', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119551, '2022-09-23', 8155, 112847, 6792, NULL, '1.0000', '65.0000', '65.0000', '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 (119552, '2022-09-23', 8814, 112848, 6792, 57568, '5.0000', '-4.3750', '-4.3750', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119553, '2022-09-23', 9526, 112849, 6792, NULL, '2.0000', '7.0000', '7.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 (119554, '2022-09-23', 7557, 112850, 6792, NULL, '5.0000', '0.0714', '0.0714', '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 (119555, '2022-09-23', 2887, 112851, 6792, 56698, '2.0000', '11.0000', '11.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119556, '2022-09-23', 7591, 112852, 6792, 60795, '2.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119557, '2022-09-23', 8360, 112853, 6792, 60796, '1.0000', '3.2691', '3.2691', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119558, '2022-09-23', 7714, 112854, 6792, NULL, '2.0000', '0.4200', '0.4200', '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 (119559, '2022-09-23', 8918, 112855, 6792, 62303, '2.0000', '1.8469', '1.8469', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119560, '2022-09-23', 7473, 112856, 6792, 61833, '2.0000', '0.5360', '0.5360', '0.7000', '0.7000', '13.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119561, '2022-09-23', 7642, 112857, 6792, 62313, '1.0000', '5.9824', '5.9824', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119562, '2022-09-23', 1841, 112858, 6792, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '55.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119563, '2022-09-23', 7544, 112859, 6792, NULL, '2.0000', '9.4300', '9.4300', '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 (119564, '2022-09-23', 9202, 112860, 6792, NULL, '3.0000', '2.1700', '2.1700', '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 (119565, '2022-09-23', 1501, 112861, 6792, 63525, '1.0000', '3.2884', '3.2884', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119566, '2022-09-23', 9724, 112862, 6792, 60103, '1.0000', '20.3000', '20.3000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119567, '2022-09-23', 7883, 112863, 6792, 62334, '1.0000', '33.8000', '33.8000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119568, '2022-09-23', 8395, 112864, 6792, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119569, '2022-09-23', 9949, 112865, 6792, NULL, '1.0000', '37.9000', '37.9000', '50.5000', '50.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119570, '2022-09-23', 7736, 112866, 6792, 61856, '2.0000', '25.2865', '25.2865', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119571, '2022-09-23', 2482, 112867, 6792, NULL, '2.0000', '6.0000', '6.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 (119572, '2022-09-23', 7317, 112868, 6792, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119573, '2022-09-23', 7666, 112869, 6792, 62332, '1.0000', '6.1134', '6.1134', '6.5000', '6.5000', '14.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119574, '2022-09-23', 7474, 112870, 6792, 61895, '1.0000', '7.3208', '7.3208', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119575, '2022-09-23', 7704, 112871, 6792, NULL, '1.0000', '-1.5625', '-1.5625', '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 (119576, '2022-09-23', 7317, 112872, 6792, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119577, '2022-09-23', 7952, 112873, 6792, 62310, '1.0000', '4.8479', '4.8479', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119578, '2022-09-23', 7412, 112874, 6792, 60492, '1.0000', '2.1785', '2.1785', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119579, '2022-09-23', 1856, 112875, 6792, 61855, '1.0000', '2.4948', '2.4948', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119580, '2022-09-23', 8710, 112876, 6792, 59120, '1.0000', '10.9000', '10.9000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119581, '2022-09-23', 9202, 112877, 6792, NULL, '1.0000', '2.1700', '2.1700', '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 (119582, '2022-09-23', 2242, 112878, 6792, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119583, '2022-09-23', 2315, 112879, 6792, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119584, '2022-09-23', 9984, 112880, 6792, 62333, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119585, '2022-09-23', 2891, 112881, 6792, 61740, '1.0000', '9.2658', '9.2658', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119586, '2022-09-23', 1837, 112882, 6792, NULL, '3.0000', '0.5600', '0.5600', '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 (119587, '2022-09-23', 9747, 112883, 6792, 60779, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119588, '2022-09-23', 8308, 112884, 6792, NULL, '1.0000', '386.2157', '386.2157', '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 (119589, '2022-09-23', 7730, 112885, 6793, 62568, '3.0000', '0.1050', '0.1050', '0.2000', '0.2000', '84.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119590, '2022-09-23', 7724, 112886, 6793, 52027, '1.0000', '9.7900', '9.7900', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 430);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119591, '2022-09-23', 7748, 112887, 6793, 61901, '1.0000', '-360470.3244', '-360470.3244', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119592, '2022-09-23', 8444, 112888, 6793, 55973, '1.0000', '-37.8763', '-37.8763', '3.0000', '3.0000', '85.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119593, '2022-09-23', 7411, 112889, 6793, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119594, '2022-09-23', 8596, 112890, 6793, NULL, '1.0000', '71.0634', '71.0634', '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 (119595, '2022-09-23', 2315, 112891, 6793, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119596, '2022-09-23', 7886, 112892, 6793, 63626, '1.0000', '4.9924', '4.9924', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119597, '2022-09-23', 7591, 112893, 6793, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119598, '2022-09-23', 8664, 112894, 6793, NULL, '1.0000', '0.3500', '0.3500', '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 (119599, '2022-09-23', 8392, 112895, 6793, 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 (119600, '2022-09-23', 8677, 112896, 6793, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119601, '2022-09-23', 7482, 112897, 6793, 63619, '1.0000', '4.8961', '4.8961', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119602, '2022-09-23', 9399, 112898, 6793, NULL, '1.0000', '0.9803', '0.9803', '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 (119603, '2022-09-23', 7641, 112899, 6793, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '34.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119604, '2022-09-23', 9092, 112900, 6793, 60813, '15.0000', '0.3167', '0.3167', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119605, '2022-09-23', 8203, 112901, 6793, 57407, '2.0000', '2.0908', '2.0908', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119606, '2022-09-23', 2656, 112902, 6793, NULL, '1.0000', '1.7540', '1.7540', '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 (119607, '2022-09-23', 1557, 112903, 6793, 63644, '1.0000', '8.1356', '8.1356', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119608, '2022-09-23', 2252, 112904, 6794, 63410, '1.0000', '12.9605', '12.9605', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119609, '2022-09-23', 1612, 112905, 6794, NULL, '1.0000', '11.6000', '11.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119610, '2022-09-23', 1695, 112906, 6794, 63357, '1.0000', '24.5674', '24.5674', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119611, '2022-09-23', 2302, 112907, 6794, 63368, '1.0000', '5.3119', '5.3119', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119612, '2022-09-23', 8097, 112908, 6794, NULL, '1.0000', '7.6800', '7.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 (119613, '2022-09-23', 1837, 112909, 6794, 62213, '1.0000', '0.6220', '0.6220', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119614, '2022-09-23', 2656, 112910, 6794, 63148, '7.0000', '1.5801', '1.5801', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119615, '2022-09-23', 1765, 112911, 6794, 62771, '1.0000', '6.6554', '6.6554', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119616, '2022-09-23', 1493, 112912, 6794, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119617, '2022-09-23', 1935, 112913, 6794, 63142, '2.0000', '1.1937', '1.1937', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119618, '2022-09-23', 2252, 112914, 6794, 63410, '1.0000', '12.9605', '12.9605', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119619, '2022-09-23', 1863, 112915, 6794, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119620, '2022-09-23', 7753, 112916, 6794, NULL, '1.0000', '3.1400', '3.1400', '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 (119621, '2022-09-23', 1572, 112917, 6794, 58815, '1.0000', '1.9861', '1.9861', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119622, '2022-09-23', 1410, 112918, 6794, 61607, '1.0000', '2.9736', '2.9736', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119623, '2022-09-23', 2256, 112919, 6794, 62765, '1.0000', '16.2319', '16.2319', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119624, '2022-09-23', 9638, 112920, 6794, 58831, '1.0000', '38.4429', '38.4429', '58.0000', '58.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119625, '2022-09-23', 9885, 112921, 6794, 63386, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119626, '2022-09-23', 8359, 112922, 6794, 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 (119627, '2022-09-23', 1602, 112923, 6794, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119628, '2022-09-23', 2252, 112924, 6794, 63410, '1.0000', '12.9605', '12.9605', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119629, '2022-09-23', 2038, 112925, 6794, 59056, '1.0000', '14.1208', '14.1208', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119630, '2022-09-23', 1935, 112926, 6794, 63142, '2.0000', '1.1937', '1.1937', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119631, '2022-09-23', 1851, 112927, 6794, 61594, '1.0000', '13.6743', '13.6743', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119632, '2022-09-23', 2100, 112928, 6794, 58620, '1.0000', '1.7687', '1.7687', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119633, '2022-09-23', 1912, 112929, 6794, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119634, '2022-09-23', 1754, 112930, 6794, 62239, '1.0000', '27.5713', '27.5713', '32.0000', '32.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119635, '2022-09-23', 9940, 112931, 6794, 63135, '1.0000', '8.5758', '8.5758', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119636, '2022-09-23', 1812, 112932, 6794, 63373, '2.0000', '8.9018', '8.9018', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119637, '2022-09-23', 9945, 112933, 6794, 63400, '1.0000', '13.5880', '13.5880', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119638, '2022-09-23', 1665, 112934, 6794, 62206, '2.0000', '1.3202', '1.3202', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119639, '2022-09-23', 1825, 112935, 6794, 63145, '1.0000', '5.0731', '5.0731', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119640, '2022-09-23', 1863, 112936, 6794, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119641, '2022-09-23', 2055, 112937, 6794, 63396, '1.0000', '13.9922', '13.9922', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119642, '2022-09-23', 2466, 112938, 6794, 61700, '1.0000', '16.1346', '16.1346', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119643, '2022-09-23', 9776, 112939, 6794, 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 (119644, '2022-09-23', 2135, 112940, 6794, NULL, '1.0000', '2.2504', '2.2504', '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 (119645, '2022-09-23', 8482, 112941, 6794, NULL, '1.0000', '18.0000', '18.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 (119646, '2022-09-23', 2256, 112942, 6794, 62765, '1.0000', '16.2319', '16.2319', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119647, '2022-09-23', 2169, 112943, 6794, 62805, '2.0000', '1.4878', '1.4878', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119648, '2022-09-23', 2237, 112944, 6794, 62746, '2.0000', '1.3254', '1.3254', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119649, '2022-09-23', 1863, 112945, 6794, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119650, '2022-09-23', 1855, 112946, 6794, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119651, '2022-09-23', 1863, 112947, 6794, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119652, '2022-09-23', 1665, 112948, 6794, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '43.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119653, '2022-09-23', 2135, 112949, 6794, NULL, '1.0000', '2.2504', '2.2504', '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 (119654, '2022-09-23', 10006, 112950, 6794, NULL, '1.0000', '12.9800', '12.9800', '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 (119655, '2022-09-23', 2434, 112951, 6795, 5838, '1.0000', '5.2000', '5.2000', '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 (119656, '2022-09-23', 2016, 112952, 6795, 60532, '1.0000', '8.6667', '8.6667', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119657, '2022-09-23', 2738, 112953, 6796, 56428, '1.0000', '9.3067', '9.3067', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119658, '2022-09-23', 2297, 112954, 6796, NULL, '1.0000', '10.2971', '10.2971', '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 (119659, '2022-09-23', 2730, 112955, 6796, 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 (119660, '2022-09-23', 8677, 112956, 6796, NULL, '2.0000', '1026.1382', '1026.1382', '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 (119661, '2022-09-23', 9740, 112957, 6796, 62840, '2.0000', '0.6695', '0.6695', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119662, '2022-09-23', 9979, 112958, 6796, NULL, '1.0000', '15.5300', '15.5300', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119663, '2022-09-23', 2491, 112959, 6796, NULL, '1.0000', '166.6000', '166.6000', '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 (119664, '2022-09-23', 2288, 112960, 6796, 62170, '1.0000', '11.5100', '11.5100', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119665, '2022-09-23', 1554, 112961, 6796, 62453, '1.0000', '3.1639', '3.1639', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119666, '2022-09-23', 9960, 112962, 6796, NULL, '2.0000', '3.3000', '3.3000', '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 (119667, '2022-09-23', 9999, 112963, 6796, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119668, '2022-09-23', 9996, 112964, 6796, 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 (119669, '2022-09-23', 9821, 112965, 6796, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119670, '2022-09-23', 2327, 112966, 6796, 39828, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '34.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119671, '2022-09-23', 2495, 112967, 6796, 48472, '1.0000', '8.6100', '8.6100', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119672, '2022-09-23', 1665, 112968, 6796, 61557, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119673, '2022-09-23', 2821, 112969, 6796, NULL, '1.0000', '-4.2032', '-4.2032', '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 (119674, '2022-09-23', 2169, 112970, 6796, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '87.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119675, '2022-09-23', 1410, 112971, 6796, NULL, '2.0000', '298.0003', '298.0003', '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 (119676, '2022-09-23', 2315, 112972, 6796, NULL, '4.0000', '0.7700', '0.7700', '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 (119677, '2022-09-23', 2135, 112973, 6796, NULL, '1.0000', '-0.2588', '-0.2588', '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 (119678, '2022-09-23', 2109, 112974, 6796, NULL, '2.0000', '1.4840', '1.4840', '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 (119679, '2022-09-23', 9695, 112975, 6796, 63415, '1.0000', '5.5567', '5.5567', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119680, '2022-09-23', 2169, 112976, 6796, 62844, '2.0000', '1.8223', '1.8223', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119681, '2022-09-23', 2223, 112977, 6796, NULL, '1.0000', '-2.3706', '-2.3706', '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 (119682, '2022-09-23', 9999, 112978, 6796, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119683, '2022-09-23', 9999, 112979, 6796, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119684, '2022-09-23', 9999, 112980, 6796, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119685, '2022-09-23', 2283, 112981, 6796, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119686, '2022-09-23', 2682, 112982, 6796, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '12.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119687, '2022-09-23', 2962, 112983, 6796, NULL, '2.0000', '4.0000', '4.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 (119688, '2022-09-23', 1349, 112984, 6796, 56375, '1.0000', '42.3933', '42.3933', '61.0000', '61.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119689, '2022-09-23', 1945, 112985, 6796, 55705, '1.0000', '9.9667', '9.9667', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119690, '2022-09-23', 1946, 112986, 6796, NULL, '1.0000', '-12.3249', '-12.3249', '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 (119691, '2022-09-23', 1446, 112987, 6796, NULL, '1.0000', '5.3416', '5.3416', '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 (119692, '2022-09-23', 9819, 112988, 6796, 62425, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119693, '2022-09-23', 2100, 112989, 6796, NULL, '1.0000', '0.4608', '0.4608', '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 (119694, '2022-09-23', 3012, 112990, 6796, NULL, '1.0000', '4.7000', '4.7000', '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 (119695, '2022-09-23', 7379, 112991, 6796, NULL, '1.0000', '12.5100', '12.5100', '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 (119696, '2022-09-23', 1772, 112992, 6796, 60328, '1.0000', '5.9758', '5.9758', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119697, '2022-09-23', 1863, 112993, 6796, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119698, '2022-09-23', 1746, 112994, 6796, 62821, '1.0000', '5.2843', '5.2843', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119699, '2022-09-23', 9946, 112995, 6796, NULL, '1.0000', '15.1000', '15.1000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119700, '2022-09-23', 2730, 112996, 6796, 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 (119701, '2022-09-23', 1863, 112997, 6796, 62841, '5.0000', '1.5054', '1.5054', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119702, '2022-09-23', 1383, 112998, 6796, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119703, '2022-09-23', 1772, 112999, 6796, 60328, '1.0000', '5.9758', '5.9758', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119704, '2022-09-23', 2916, 113000, 6796, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (119705, '2022-09-23', 1874, 113001, 6796, NULL, '1.0000', '-24.5000', '-24.5000', '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 (119706, '2022-09-23', 2295, 113002, 6796, 62440, '3.0000', '1.6485', '1.6485', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119707, '2022-09-23', 2109, 113003, 6796, NULL, '1.0000', '1.4840', '1.4840', '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 (119708, '2022-09-23', 2068, 113004, 6796, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119709, '2022-09-23', 2283, 113005, 6796, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119710, '2022-09-23', 2020, 113006, 6796, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (119711, '2022-09-23', 1620, 113007, 6796, 62873, '2.0000', '2.3984', '2.3984', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119712, '2022-09-23', 2262, 113008, 6796, 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 (119713, '2022-09-23', 2100, 113009, 6796, NULL, '1.0000', '0.4608', '0.4608', '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 (119714, '2022-09-23', 1812, 113010, 6796, 62817, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119715, '2022-09-23', 2287, 113011, 6796, 57710, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119716, '2022-09-23', 1501, 113012, 6796, NULL, '1.0000', '-0.6640', '-0.6640', '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 (119717, '2022-09-23', 1863, 113013, 6796, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119718, '2022-09-23', 1787, 113014, 6796, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119719, '2022-09-23', 9734, 113015, 6796, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '165.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119720, '2022-09-23', 7709, 113016, 6796, 51700, '4.0000', '3.6111', '3.6111', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119721, '2022-09-23', 2682, 113017, 6796, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '12.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119722, '2022-09-23', 8740, 113018, 6796, 63480, '2.0000', '2.0585', '2.0585', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119723, '2022-09-23', 8835, 113019, 6796, 63566, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119724, '2022-09-23', 8011, 113020, 6796, NULL, '1.0000', '0.9500', '0.9500', '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 (119725, '2022-09-23', 9457, 113021, 6796, NULL, '1.0000', '2.9800', '2.9800', '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 (119726, '2022-09-23', 8878, 113022, 6796, NULL, '1.0000', '15.5838', '15.5838', '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 (119727, '2022-09-23', 2655, 113023, 6796, NULL, '2.0000', '228.3008', '228.3008', '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 (119728, '2022-09-23', 1667, 113024, 6796, 62361, '1.0000', '9.3728', '9.3728', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119729, '2022-09-23', 1620, 113025, 6796, 62873, '2.0000', '2.3984', '2.3984', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119730, '2022-09-23', 2454, 113026, 6796, 62393, '3.0000', '9.1012', '9.1012', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119731, '2022-09-23', 1301, 113027, 6796, NULL, '2.0000', '1.6800', '1.6800', '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 (119732, '2022-09-23', 1690, 113028, 6796, 62087, '1.0000', '8.6637', '8.6637', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119733, '2022-09-23', 9814, 113029, 6796, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119734, '2022-09-23', 1521, 113030, 6796, 62849, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119735, '2022-09-23', 1851, 113031, 6796, 55913, '1.0000', '13.3410', '13.3410', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119736, '2022-09-23', 9734, 113032, 6796, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '162.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119737, '2022-09-23', 9783, 113033, 6796, 62872, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119738, '2022-09-23', 1639, 113034, 6796, 51489, '1.0000', '7.1659', '7.1659', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119739, '2022-09-23', 9726, 113035, 6796, 62100, '1.0000', '5.2010', '5.2010', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119740, '2022-09-23', 9734, 113036, 6796, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '164.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119741, '2022-09-23', 1863, 113037, 6796, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119742, '2022-09-23', 1856, 113038, 6796, NULL, '1.0000', '155.0099', '155.0099', '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 (119743, '2022-09-24', 2167, 113039, 6797, NULL, '1.0000', '-1.6257', '-1.6257', '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 (119744, '2022-09-24', 8017, 113040, 6797, 62109, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119745, '2022-09-24', 1598, 113041, 6797, 52207, '1.0000', '4.4436', '4.4436', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119746, '2022-09-24', 9734, 113042, 6797, 62184, '7.0000', '0.4628', '0.4628', '0.7000', '0.7000', '152.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119747, '2022-09-24', 1501, 113043, 6797, NULL, '1.0000', '-0.6640', '-0.6640', '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 (119748, '2022-09-24', 8979, 113044, 6797, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119749, '2022-09-24', 1620, 113045, 6797, 62873, '1.0000', '2.3984', '2.3984', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119750, '2022-09-24', 2413, 113046, 6797, NULL, '3.0000', '1.0500', '1.0500', '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 (119751, '2022-09-24', 9776, 113047, 6797, 52338, '1.0000', '7.8500', '7.8500', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 439);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119752, '2022-09-24', 1450, 113048, 6797, NULL, '10.0000', '0.8483', '0.8483', '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 (119753, '2022-09-24', 1386, 113049, 6797, 62404, '1.0000', '4.7366', '4.7366', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119754, '2022-09-24', 1602, 113050, 6797, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119755, '2022-09-24', 1339, 113051, 6797, 58192, '1.0000', '2.2855', '2.2855', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119756, '2022-09-24', 1760, 113052, 6797, NULL, '1.0000', '-0.1939', '-0.1939', '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 (119757, '2022-09-24', 1342, 113053, 6797, 62151, '1.0000', '7.1610', '7.1610', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119758, '2022-09-24', 9089, 113054, 6797, 63454, '1.0000', '-48.2505', '-48.2505', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119759, '2022-09-24', 8979, 113055, 6797, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119760, '2022-09-24', 2285, 113056, 6797, NULL, '1.0000', '-159.5389', '-159.5389', '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 (119761, '2022-09-24', 2285, 113057, 6797, NULL, '1.0000', '-159.5389', '-159.5389', '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 (119762, '2022-09-24', 1783, 113058, 6797, 63417, '3.0000', '17.5778', '17.5778', '13.5000', '13.5000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119763, '2022-09-24', 2567, 113059, 6797, 63563, '1.0000', '39.4929', '39.4929', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119764, '2022-09-24', 2029, 113060, 6797, 49682, '1.0000', '13.2500', '13.2500', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119765, '2022-09-24', 2565, 113061, 6798, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119766, '2022-09-24', 3000, 113062, 6798, 23112, '1.0000', '6.0000', '6.0000', '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 (119767, '2022-09-24', 1863, 113063, 6798, 62841, '3.0000', '1.5054', '1.5054', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119768, '2022-09-24', 8068, 113064, 6798, NULL, '1.0000', '8.7900', '8.7900', '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 (119769, '2022-09-24', 9748, 113065, 6798, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119770, '2022-09-24', 2071, 113066, 6798, 63477, '3.0000', '4.8000', '4.8000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119771, '2022-09-24', 9482, 113067, 6798, 63458, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119772, '2022-09-24', 2916, 113068, 6798, NULL, '1.0000', '-7436.2444', '-7436.2444', '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 (119773, '2022-09-24', 1689, 113069, 6798, 62414, '1.0000', '16.0080', '16.0080', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119774, '2022-09-24', 1602, 113070, 6798, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '22.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119775, '2022-09-24', 2061, 113071, 6798, NULL, '1.0000', '-13.2193', '-13.2193', '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 (119776, '2022-09-24', 8485, 113072, 6798, NULL, '1.0000', '7.0400', '7.0400', '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 (119777, '2022-09-24', 9822, 113073, 6798, NULL, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119778, '2022-09-24', 9999, 113074, 6798, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119779, '2022-09-24', 2284, 113075, 6799, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119780, '2022-09-24', 1871, 113076, 6799, NULL, '1.0000', '1810532.8489', '1810532.8489', '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 (119781, '2022-09-24', 2295, 113077, 6799, 62440, '2.0000', '1.6485', '1.6485', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119782, '2022-09-24', 8677, 113078, 6799, NULL, '2.0000', '1026.1382', '1026.1382', '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 (119783, '2022-09-24', 1871, 113079, 6799, NULL, '6.0000', '1810532.8489', '1810532.8489', '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 (119784, '2022-09-24', 2381, 113080, 6800, 58123, '1.0000', '14.3540', '14.3540', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119785, '2022-09-24', 9736, 113081, 6800, 62089, '1.0000', '5.2083', '5.2083', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119786, '2022-09-24', 2068, 113082, 6801, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119787, '2022-09-24', 1383, 113083, 6801, 62845, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119788, '2022-09-24', 2110, 113084, 6801, 49614, '1.0000', '35.0000', '35.0000', '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 (119789, '2022-09-24', 8596, 113085, 6802, NULL, '1.0000', '71.0634', '71.0634', '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 (119790, '2022-09-24', 8476, 113086, 6802, NULL, '2.0000', '23.0000', '23.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 (119791, '2022-09-24', 7518, 113087, 6802, 63652, '1.0000', '9.6084', '9.6084', '14.5000', '14.5000', '29.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119792, '2022-09-24', 7859, 113088, 6802, 63611, '1.0000', '14.2172', '14.2172', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119793, '2022-09-24', 8149, 113089, 6802, 42409, '1.0000', '5.3000', '5.3000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119794, '2022-09-24', 7632, 113090, 6802, 60139, '1.0000', '12.1047', '12.1047', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119795, '2022-09-24', 7334, 113091, 6802, 63595, '1.0000', '9.7940', '9.7940', '16.5000', '16.5000', '11.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119796, '2022-09-24', 7825, 113092, 6802, 62296, '1.0000', '17.9473', '17.9473', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119797, '2022-09-24', 7787, 113093, 6802, 62335, '1.0000', '20.6816', '20.6816', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119798, '2022-09-24', 10016, 113094, 6802, 61930, '1.0000', '10.2000', '10.2000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119799, '2022-09-24', 8017, 113095, 6802, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119800, '2022-09-24', 9791, 113096, 6802, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '89.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119801, '2022-09-24', 7316, 113097, 6802, 63642, '10.0000', '0.9504', '0.9504', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119802, '2022-09-24', 7385, 113098, 6802, 63621, '7.0000', '5.4637', '5.4637', '4.5000', '4.5000', '53.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119803, '2022-09-24', 8915, 113099, 6802, 57519, '1.0000', '8.7010', '8.7010', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119804, '2022-09-24', 1754, 113100, 6802, 62560, '1.0000', '7.5000', '7.5000', '32.0000', '32.0000', '3.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119805, '2022-09-24', 8032, 113101, 6802, 61893, '1.0000', '6.9554', '6.9554', '9.5000', '9.5000', '22.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119806, '2022-09-24', 7715, 113102, 6802, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119807, '2022-09-24', 7999, 113103, 6802, 61941, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119808, '2022-09-24', 9272, 113104, 6802, NULL, '1.0000', '3.1206', '3.1206', '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 (119809, '2022-09-24', 1904, 113105, 6802, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119810, '2022-09-24', 7317, 113106, 6802, 61837, '1.0000', '15.7878', '15.7878', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119811, '2022-09-24', 7411, 113107, 6802, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119812, '2022-09-24', 9958, 113108, 6802, 57653, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119813, '2022-09-24', 2656, 113109, 6802, NULL, '2.0000', '1.7540', '1.7540', '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 (119814, '2022-09-24', 7753, 113110, 6802, 63623, '1.0000', '3.7087', '3.7087', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119815, '2022-09-24', 7670, 113111, 6802, 51839, '1.0000', '20.1688', '20.1688', '26.5000', '26.5000', '0.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119816, '2022-09-24', 1731, 113112, 6802, 45835, '1.0000', '19.6600', '19.6600', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 335);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119817, '2022-09-24', 7514, 113113, 6802, 63688, '1.0000', '-26806.4604', '-26806.4604', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119818, '2022-09-24', 7749, 113114, 6802, 57620, '1.0000', '19.8511', '19.8511', '26.5000', '26.5000', '4.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119819, '2022-09-24', 1947, 113115, 6802, 43122, '1.0000', '-122941.3106', '-122941.3106', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119820, '2022-09-24', 9751, 113116, 6802, 60568, '1.0000', '1.2432', '1.2432', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119821, '2022-09-24', 7672, 113117, 6802, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119822, '2022-09-24', 2287, 113118, 6802, 61863, '3.0000', '3.1700', '3.1700', '4.5000', '4.5000', '43.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119823, '2022-09-24', 9747, 113119, 6802, 60779, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119824, '2022-09-24', 2315, 113120, 6802, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119825, '2022-09-24', 2656, 113121, 6802, NULL, '2.0000', '1.7540', '1.7540', '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 (119826, '2022-09-24', 7334, 113122, 6802, 63595, '3.0000', '9.7940', '9.7940', '16.5000', '16.5000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119827, '2022-09-24', 9984, 113123, 6802, 62333, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119828, '2022-09-24', 9692, 113124, 6802, 51054, '2.0000', '-20.7921', '-20.7921', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 419);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119829, '2022-09-24', 1450, 113125, 6803, NULL, '5.0000', '0.8483', '0.8483', '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 (119830, '2022-09-24', 2169, 113126, 6803, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '84.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119831, '2022-09-24', 8844, 113127, 6803, NULL, '1.0000', '6.8542', '6.8542', '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 (119832, '2022-09-24', 9999, 113128, 6803, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119833, '2022-09-24', 1631, 113129, 6804, 3275, '2.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 (119834, '2022-09-24', 1631, 113129, 6804, 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 (119835, '2022-09-24', 2891, 113130, 6804, 62221, '1.0000', '9.3077', '9.3077', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119836, '2022-09-24', 1863, 113131, 6804, 62253, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119837, '2022-09-24', 2384, 113132, 6804, 62762, '20.0000', '0.4679', '0.4679', '0.8000', '0.8000', '77.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119838, '2022-09-24', 10038, 113133, 6804, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119839, '2022-09-24', 1608, 113134, 6804, 56947, '1.0000', '4.2552', '4.2552', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119840, '2022-09-24', 1427, 113135, 6804, 62776, '1.0000', '14.6874', '14.6874', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119841, '2022-09-24', 8337, 113136, 6804, NULL, '1.0000', '17.8000', '17.8000', '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 (119842, '2022-09-24', 2821, 113137, 6804, 62815, '2.0000', '3.5118', '3.5118', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119843, '2022-09-24', 2642, 113138, 6804, 60910, '1.0000', '10.3548', '10.3548', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119844, '2022-09-24', 2821, 113139, 6804, 62815, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119845, '2022-09-24', 1825, 113140, 6804, 63145, '1.0000', '5.0731', '5.0731', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119846, '2022-09-24', 1602, 113141, 6804, 62256, '2.0000', '7.3836', '7.3836', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119847, '2022-09-24', 1874, 113142, 6804, NULL, '1.0000', '10.3500', '10.3500', '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 (119848, '2022-09-24', 10045, 113143, 6804, 63412, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119849, '2022-09-24', 9815, 113144, 6804, 55826, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '14.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119850, '2022-09-24', 2315, 113145, 6804, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119851, '2022-09-24', 9167, 113146, 6804, NULL, '1.0000', '16.1000', '16.1000', '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 (119852, '2022-09-24', 10025, 113147, 6804, NULL, '1.0000', '20.0000', '20.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119853, '2022-09-24', 1440, 113148, 6804, 62265, '1.0000', '10.3334', '10.3334', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119854, '2022-09-24', 2259, 113149, 6804, 62199, '1.0000', '22.6776', '22.6776', '34.0000', '34.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119855, '2022-09-24', 1519, 113150, 6804, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119856, '2022-09-24', 1812, 113151, 6804, 63373, '1.0000', '8.9018', '8.9018', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119857, '2022-09-24', 10045, 113152, 6804, 63412, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119858, '2022-09-24', 1863, 113153, 6804, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119859, '2022-09-24', 1935, 113154, 6804, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119860, '2022-09-24', 2573, 113155, 6804, 54992, '1.0000', '9.3000', '9.3000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 465);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119861, '2022-09-24', 2079, 113156, 6805, 60472, '1.0000', '1.9612', '1.9612', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119862, '2022-09-24', 7899, 113157, 6805, 60820, '1.0000', '3.4598', '3.4598', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119863, '2022-09-24', 1520, 113158, 6805, NULL, '1.0000', '1.4700', '1.4700', '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 (119864, '2022-09-24', 2486, 113159, 6805, 62531, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119865, '2022-09-24', 8918, 113160, 6805, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119866, '2022-09-24', 9734, 113161, 6805, 61746, '3.0000', '0.3316', '0.3316', '0.7000', '0.7000', '181.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119867, '2022-09-24', 7999, 113162, 6805, 61941, '1.0000', '1.7500', '1.7500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119868, '2022-09-24', 7382, 113163, 6805, 61844, '1.0000', '8.7055', '8.7055', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119869, '2022-09-24', 7612, 113164, 6805, NULL, '1.0000', '2.3846', '2.3846', '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 (119870, '2022-09-24', 10019, 113165, 6805, 61957, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119871, '2022-09-24', 9911, 113166, 6805, 56054, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119872, '2022-09-24', 7880, 113167, 6805, NULL, '1.0000', '1.0000', '1.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 (119873, '2022-09-24', 7524, 113168, 6805, 63655, '2.0000', '5.2385', '5.2385', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119874, '2022-09-24', 7457, 113169, 6805, 62562, '1.0000', '5.0562', '5.0562', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119875, '2022-09-24', 2315, 113170, 6805, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119876, '2022-09-24', 7379, 113171, 6805, 60431, '1.0000', '8.9427', '8.9427', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119877, '2022-09-24', 7778, 113172, 6805, NULL, '1.0000', '12.0532', '12.0532', '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 (119878, '2022-09-24', 7411, 113173, 6805, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119879, '2022-09-24', 7744, 113174, 6805, 62565, '1.0000', '2.9983', '2.9983', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119880, '2022-09-24', 8395, 113175, 6805, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119881, '2022-09-24', 8063, 113176, 6805, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '69.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119882, '2022-09-24', 9747, 113177, 6805, 60779, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119883, '2022-09-24', 8017, 113178, 6805, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119884, '2022-09-24', 2648, 113179, 6805, NULL, '1.0000', '3.5337', '3.5337', '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 (119885, '2022-09-24', 8194, 113180, 6805, 61909, '1.0000', '6.9436', '6.9436', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119886, '2022-09-24', 7674, 113181, 6805, 61832, '2.0000', '46.3674', '46.3674', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119887, '2022-09-24', 8202, 113182, 6805, 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 (119888, '2022-09-24', 8714, 113183, 6805, 63687, '1.0000', '5.6076', '5.6076', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119889, '2022-09-24', 2102, 113184, 6805, NULL, '1.0000', '1.5667', '1.5667', '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 (119890, '2022-09-24', 9943, 113185, 6805, 60116, '1.0000', '9.8930', '9.8930', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119891, '2022-09-24', 7825, 113186, 6805, 62296, '1.0000', '17.9473', '17.9473', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119892, '2022-09-24', 7548, 113187, 6805, NULL, '2.0000', '3.9186', '3.9186', '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 (119893, '2022-09-24', 9823, 113188, 6805, 60807, '1.0000', '13.2500', '13.2500', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119894, '2022-09-24', 1841, 113189, 6806, 61751, '8.0000', '0.1461', '0.1461', '0.5000', '0.5000', '47.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119895, '2022-09-24', 2104, 113190, 6806, NULL, '2.0000', '0.2000', '0.2000', '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 (119896, '2022-09-24', 7411, 113191, 6806, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119897, '2022-09-24', 7778, 113192, 6806, NULL, '1.0000', '12.0532', '12.0532', '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 (119898, '2022-09-24', 7917, 113193, 6806, 61747, '2.0000', '2.5067', '2.5067', '0.7000', '0.7000', '54.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119899, '2022-09-24', 1520, 113194, 6806, NULL, '1.0000', '1.4700', '1.4700', '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 (119900, '2022-09-24', 2315, 113195, 6806, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119901, '2022-09-24', 2891, 113196, 6806, 61740, '1.0000', '9.2658', '9.2658', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119902, '2022-09-24', 8046, 113197, 6806, NULL, '2.0000', '707.9780', '707.9780', '28.0000', '28.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 (119903, '2022-09-24', 7459, 113198, 6806, 60478, '10.0000', '8.0994', '8.0994', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119904, '2022-09-24', 2289, 113199, 6806, NULL, '6.0000', '4.0652', '4.0652', '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 (119905, '2022-09-24', 9721, 113200, 6806, 63590, '2.0000', '11.7000', '11.7000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119906, '2022-09-24', 9894, 113201, 6806, 61804, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119907, '2022-09-24', 7509, 113202, 6806, 63639, '3.0000', '8.7368', '8.7368', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119908, '2022-09-24', 8200, 113203, 6806, 60445, '1.0000', '8.7785', '8.7785', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119909, '2022-09-24', 7411, 113204, 6806, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '50.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119910, '2022-09-24', 9401, 113205, 6806, NULL, '1.0000', '-0.4067', '-0.4067', '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 (119911, '2022-09-24', 7327, 113206, 6806, 56001, '4.0000', '12.7616', '12.7616', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119912, '2022-09-24', 1837, 113207, 6806, NULL, '2.0000', '0.5600', '0.5600', '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 (119913, '2022-09-24', 9245, 113208, 6806, 63646, '1.0000', '6.8790', '6.8790', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119914, '2022-09-24', 9274, 113209, 6806, 63663, '1.0000', '5.6017', '5.6017', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119915, '2022-09-24', 1520, 113210, 6806, NULL, '1.0000', '1.4700', '1.4700', '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 (119916, '2022-09-24', 9751, 113211, 6806, 60568, '1.0000', '1.2432', '1.2432', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 523);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119917, '2022-09-24', 9823, 113212, 6806, 60807, '2.0000', '13.2500', '13.2500', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119918, '2022-09-24', 7859, 113213, 6806, 63611, '1.0000', '14.2172', '14.2172', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119919, '2022-09-24', 7591, 113214, 6806, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119920, '2022-09-24', 8923, 113215, 6806, NULL, '1.0000', '7.2500', '7.2500', '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 (119921, '2022-09-24', 9984, 113216, 6806, 62333, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119922, '2022-09-24', 7743, 113217, 6806, NULL, '1.0000', '2491602.9694', '2491602.9694', '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 (119923, '2022-09-24', 9272, 113218, 6806, NULL, '1.0000', '3.1206', '3.1206', '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 (119924, '2022-09-24', 9740, 113219, 6806, 59087, '1.0000', '0.6631', '0.6631', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119925, '2022-09-24', 8097, 113220, 6807, 61845, '3.0000', '14.9186', '14.9186', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119926, '2022-09-24', 8677, 113221, 6807, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119927, '2022-09-24', 7382, 113222, 6807, 61844, '1.0000', '8.7055', '8.7055', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119928, '2022-09-24', 8032, 113223, 6807, 61893, '1.0000', '6.9554', '6.9554', '9.5000', '9.5000', '21.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119929, '2022-09-24', 10003, 113224, 6807, 61764, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119930, '2022-09-24', 7444, 113225, 6807, NULL, '1.0000', '4.5100', '4.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 (119931, '2022-09-24', 1501, 113226, 6807, 63620, '1.0000', '3.2422', '3.2422', '5.5000', '5.5000', '18.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119932, '2022-09-24', 7482, 113227, 6807, 63619, '1.0000', '4.8961', '4.8961', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119933, '2022-09-24', 10018, 113228, 6807, 61953, '1.0000', '0.8500', '0.8500', '1.2000', '1.2000', '39.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119934, '2022-09-24', 10019, 113229, 6807, 61957, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119935, '2022-09-24', 8017, 113230, 6808, 62109, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119936, '2022-09-24', 2315, 113231, 6808, NULL, '1.0000', '0.7700', '0.7700', '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 (119937, '2022-09-24', 2964, 113232, 6808, NULL, '1.0000', '282096.6379', '282096.6379', '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 (119938, '2022-09-24', 2964, 113233, 6808, NULL, '1.0000', '282096.6379', '282096.6379', '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 (119939, '2022-09-24', 1518, 113234, 6808, 49331, '1.0000', '6.9300', '6.9300', '15.0000', '15.0000', '17.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119940, '2022-09-24', 1335, 113235, 6808, 62831, '2.0000', '1.2635', '1.2635', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119941, '2022-09-24', 2379, 113236, 6808, NULL, '1.0000', '-154.5325', '-154.5325', '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 (119942, '2022-09-24', 2693, 113237, 6808, 57798, '1.0000', '23.3886', '23.3886', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119943, '2022-09-24', 7379, 113238, 6808, NULL, '1.0000', '12.5100', '12.5100', '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 (119944, '2022-09-24', 2965, 113239, 6808, NULL, '1.0000', '-9.3438', '-9.3438', '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 (119945, '2022-09-24', 1688, 113240, 6808, 62867, '1.0000', '23.7000', '23.7000', '31.5000', '31.5000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119946, '2022-09-24', 1805, 113241, 6808, NULL, '1.0000', '80.7776', '80.7776', '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 (119947, '2022-09-24', 1410, 113242, 6808, NULL, '1.0000', '298.0003', '298.0003', '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 (119948, '2022-09-24', 2315, 113243, 6808, 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 (119949, '2022-09-24', 2169, 113244, 6808, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119950, '2022-09-24', 7318, 113245, 6808, NULL, '1.0000', '12.1931', '12.1931', '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 (119951, '2022-09-24', 1446, 113246, 6808, NULL, '1.0000', '5.3416', '5.3416', '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 (119952, '2022-09-24', 1689, 113247, 6808, 62414, '1.0000', '16.0080', '16.0080', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119953, '2022-09-24', 9999, 113248, 6808, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119954, '2022-09-24', 2381, 113249, 6808, 58123, '1.0000', '14.3540', '14.3540', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119955, '2022-09-24', 1837, 113250, 6808, 63427, '3.0000', '1.6080', '1.6080', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119956, '2022-09-24', 1306, 113251, 6808, 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 (119957, '2022-09-24', 2643, 113252, 6808, 63446, '1.0000', '1.1168', '1.1168', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119958, '2022-09-24', 7411, 113253, 6808, NULL, '1.0000', '1.2819', '1.2819', '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 (119959, '2022-09-24', 9867, 113254, 6808, 60220, '1.0000', '10.2176', '10.2176', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119960, '2022-09-24', 9734, 113255, 6808, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '151.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119961, '2022-09-24', 2445, 113256, 6808, NULL, '5.0000', '3.1134', '3.1134', '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 (119962, '2022-09-24', 1525, 113257, 6808, 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 (119963, '2022-09-24', 1690, 113258, 6808, 62087, '1.0000', '8.6637', '8.6637', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119964, '2022-09-24', 2935, 113259, 6808, NULL, '1.0000', '-2.6500', '-2.6500', '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 (119965, '2022-09-24', 2491, 113260, 6808, NULL, '1.0000', '166.6000', '166.6000', '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 (119966, '2022-09-24', 1704, 113261, 6808, 63457, '1.0000', '32.8000', '32.8000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119967, '2022-09-24', 8677, 113262, 6808, NULL, '1.0000', '1026.1382', '1026.1382', '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 (119968, '2022-09-24', 1781, 113263, 6808, 62072, '1.0000', '5.8957', '5.8957', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119969, '2022-09-24', 2167, 113264, 6808, NULL, '1.0000', '-1.6257', '-1.6257', '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 (119970, '2022-09-24', 2287, 113265, 6808, 57710, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119971, '2022-09-24', 9996, 113266, 6808, 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 (119972, '2022-09-24', 1855, 113267, 6808, 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 (119973, '2022-09-24', 1841, 113268, 6808, NULL, '2.0000', '0.7630', '0.7630', '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 (119974, '2022-09-24', 8183, 113269, 6808, NULL, '1.0000', '5849.4008', '5849.4008', '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 (119975, '2022-09-24', 9842, 113270, 6808, 51251, '1.0000', '5.6200', '5.6200', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119976, '2022-09-24', 7771, 113271, 6808, NULL, '1.0000', '7.0000', '7.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 (119977, '2022-09-24', 7785, 113272, 6808, 58235, '1.0000', '3.9000', '3.9000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119978, '2022-09-24', 1396, 113273, 6808, 62396, '1.0000', '2.5750', '2.5750', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119979, '2022-09-24', 7411, 113274, 6808, NULL, '1.0000', '1.2819', '1.2819', '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 (119980, '2022-09-24', 9529, 113275, 6808, NULL, '1.0000', '16.9600', '16.9600', '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 (119981, '2022-09-24', 8638, 113276, 6808, NULL, '2.0000', '0.5254', '0.5254', '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 (119982, '2022-09-24', 2008, 113277, 6808, 39215, '1.0000', '8.6160', '8.6160', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119983, '2022-09-24', 1487, 113278, 6808, NULL, '1.0000', '1350.3996', '1350.3996', '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 (119984, '2022-09-24', 1704, 113279, 6808, 63457, '1.0000', '32.8000', '32.8000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119985, '2022-09-24', 2273, 113280, 6808, 60335, '1.0000', '3.0605', '3.0605', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119986, '2022-09-24', 2109, 113281, 6808, NULL, '2.0000', '1.4840', '1.4840', '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 (119987, '2022-09-24', 2283, 113282, 6808, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119988, '2022-09-24', 1499, 113283, 6808, 62833, '2.0000', '0.5150', '0.5150', '0.7000', '0.7000', '46.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119989, '2022-09-24', 2642, 113284, 6808, 63780, '1.0000', '8.7425', '8.7425', '18.5000', '18.5000', '9.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119990, '2022-09-24', 1337, 113285, 6808, 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 (119991, '2022-09-24', 1358, 113286, 6808, 62090, '1.0000', '18.6100', '18.6100', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119992, '2022-09-24', 9798, 113287, 6808, NULL, '1.0000', '13.9000', '13.9000', '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 (119993, '2022-09-24', 1767, 113288, 6808, 61569, '1.0000', '5.7685', '5.7685', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119994, '2022-09-24', 9827, 113289, 6808, NULL, '1.0000', '16.6600', '16.6600', '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 (119995, '2022-09-24', 7954, 113290, 6808, 62424, '4.0000', '1.6365', '1.6365', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119996, '2022-09-24', 9458, 113291, 6808, 31078, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119997, '2022-09-24', 1700, 113292, 6808, NULL, '1.0000', '-25.2500', '-25.2500', '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 (119998, '2022-09-24', 3060, 113293, 6808, 62114, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119999, '2022-09-24', 1342, 113294, 6808, 62151, '1.0000', '7.1610', '7.1610', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120000, '2022-09-24', 7926, 113295, 6808, NULL, '1.0000', '4.2867', '4.2867', '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 (120001, '2022-09-24', 2237, 113296, 6808, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120002, '2022-09-24', 2169, 113297, 6808, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120003, '2022-09-24', 1971, 113298, 6808, 61468, '1.0000', '-71.1128', '-71.1128', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120004, '2022-09-24', 9848, 113299, 6808, 60301, '2.0000', '2.8000', '2.8000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120005, '2022-09-24', 7832, 113300, 6808, NULL, '1.0000', '11.0000', '11.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 (120006, '2022-09-24', 2315, 113301, 6808, NULL, '2.0000', '0.7700', '0.7700', '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 (120007, '2022-09-24', 3044, 113302, 6808, 62830, '12.0000', '0.4000', '0.4000', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120008, '2022-09-24', 2237, 113303, 6808, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120009, '2022-09-24', 1837, 113304, 6808, 63427, '4.0000', '1.6080', '1.6080', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120010, '2022-09-24', 1812, 113305, 6808, 62817, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120011, '2022-09-24', 10038, 113306, 6808, 62839, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120012, '2022-09-24', 1383, 113307, 6808, 62134, '1.0000', '5.9545', '5.9545', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120013, '2022-09-24', 2068, 113308, 6808, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120014, '2022-09-24', 9856, 113309, 6808, NULL, '1.0000', '-4.4000', '-4.4000', '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 (120015, '2022-09-24', 2085, 113310, 6808, 60337, '6.0000', '1.4119', '1.4119', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120016, '2022-09-24', 2085, 113310, 6808, NULL, '4.0000', '1.4119', '1.4119', '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 (120017, '2022-09-24', 2266, 113311, 6808, 51212, '1.0000', '7.5934', '7.5934', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120018, '2022-09-24', 8384, 113312, 6808, 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 (120019, '2022-09-24', 9804, 113313, 6808, 60223, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120020, '2022-09-24', 9734, 113314, 6808, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '148.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120021, '2022-09-24', 2565, 113315, 6808, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120022, '2022-09-24', 1427, 113316, 6808, NULL, '1.0000', '20.4375', '20.4375', '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 (120023, '2022-09-24', 3058, 113317, 6808, NULL, '2.0000', '8.2853', '8.2853', '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 (120024, '2022-09-24', 1326, 113318, 6808, NULL, '1.0000', '4.3669', '4.3669', '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 (120025, '2022-09-24', 1922, 113319, 6808, 60300, '1.0000', '-11.5000', '-11.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120026, '2022-09-24', 9482, 113320, 6808, 63458, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120027, '2022-09-24', 1674, 113321, 6808, 62110, '1.0000', '5.0303', '5.0303', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120028, '2022-09-24', 1590, 113322, 6808, 63437, '2.0000', '2.4692', '2.4692', '4.0000', '4.0000', '45.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120029, '2022-09-24', 2607, 113323, 6808, NULL, '20.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-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 (120030, '2022-09-24', 2262, 113324, 6808, 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 (120031, '2022-09-24', 2384, 113325, 6808, NULL, '2.0000', '-5.5392', '-5.5392', '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 (120032, '2022-09-24', 2381, 113326, 6808, 58123, '1.0000', '14.3540', '14.3540', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120033, '2022-09-24', 2250, 113327, 6808, 61562, '1.0000', '9.1988', '9.1988', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120034, '2022-09-24', 7411, 113328, 6808, NULL, '2.0000', '1.2819', '1.2819', '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 (120035, '2022-09-24', 2565, 113329, 6808, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120036, '2022-09-25', 1787, 113330, 6809, 61552, '2.0000', '0.5000', '0.5000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120037, '2022-09-25', 9565, 113331, 6809, NULL, '1.0000', '4.5000', '4.5000', '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 (120038, '2022-09-25', 1342, 113332, 6809, 62151, '1.0000', '7.1610', '7.1610', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120039, '2022-09-25', 1863, 113333, 6809, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120040, '2022-09-25', 2169, 113334, 6809, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '81.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120041, '2022-09-25', 2315, 113335, 6809, NULL, '2.0000', '0.7700', '0.7700', '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 (120042, '2022-09-25', 9683, 113336, 6809, 63449, '1.0000', '1.7434', '1.7434', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120043, '2022-09-25', 2089, 113337, 6809, 62456, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120044, '2022-09-25', 1761, 113338, 6809, 62436, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120045, '2022-09-25', 1761, 113338, 6809, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120046, '2022-09-25', 9979, 113339, 6809, NULL, '1.0000', '15.5300', '15.5300', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120047, '2022-09-25', 2994, 113340, 6809, 62366, '1.0000', '9.0785', '9.0785', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120048, '2022-09-25', 7869, 113341, 6809, NULL, '1.0000', '4.2900', '4.2900', '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 (120049, '2022-09-25', 2612, 113342, 6809, 61558, '1.0000', '9.3800', '9.3800', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120050, '2022-09-25', 7608, 113343, 6809, NULL, '1.0000', '6.9800', '6.9800', '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 (120051, '2022-09-25', 1702, 113344, 6809, NULL, '1.0000', '-34.8999', '-34.8999', '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 (120052, '2022-09-25', 2565, 113345, 6809, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120053, '2022-09-25', 1772, 113346, 6809, 60328, '1.0000', '5.9758', '5.9758', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120054, '2022-09-25', 1772, 113346, 6809, 58175, '1.0000', '5.9758', '5.9758', '12.0000', '12.0000', '13.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120055, '2022-09-25', 2384, 113347, 6809, NULL, '6.0000', '-5.5392', '-5.5392', '0.8000', '0.8000', '-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 (120056, '2022-09-25', 2169, 113348, 6809, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '81.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120057, '2022-09-25', 1863, 113349, 6809, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120058, '2022-09-25', 2565, 113350, 6809, 63479, '2.0000', '0.9118', '0.9118', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120059, '2022-09-25', 3060, 113351, 6809, 62114, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120060, '2022-09-25', 1554, 113352, 6809, 62453, '1.0000', '3.1639', '3.1639', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120061, '2022-09-25', 9734, 113353, 6809, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '145.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120062, '2022-09-25', 2109, 113354, 6809, NULL, '1.0000', '1.4840', '1.4840', '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 (120063, '2022-09-25', 1374, 113355, 6810, 55602, '2.0000', '72.2850', '72.2850', '39.0000', '39.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120064, '2022-09-25', 2283, 113356, 6811, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120065, '2022-09-25', 2293, 113357, 6811, NULL, '3.0000', '1.1118', '1.1118', '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 (120066, '2022-09-25', 2327, 113358, 6811, 39828, '2.0000', '3.8350', '3.8350', '6.0000', '6.0000', '32.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120067, '2022-09-25', 1665, 113359, 6811, 61557, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120068, '2022-09-25', 1788, 113360, 6811, 19841, '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 (120069, '2022-09-25', 1409, 113361, 6811, 63418, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120070, '2022-09-25', 1863, 113362, 6811, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120071, '2022-09-25', 1602, 113363, 6811, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '21.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120072, '2022-09-25', 2410, 113364, 6812, 60269, '1.0000', '4.9430', '4.9430', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120073, '2022-09-25', 1616, 113365, 6812, 60339, '2.0000', '0.1071', '0.1071', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120074, '2022-09-25', 1342, 113366, 6812, 62151, '1.0000', '7.1610', '7.1610', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120075, '2022-09-25', 1383, 113367, 6812, NULL, '1.0000', '5.9545', '5.9545', '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 (120076, '2022-09-25', 1912, 113368, 6812, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120077, '2022-09-25', 7584, 113369, 6813, NULL, '1.0000', '3.1378', '3.1378', '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 (120078, '2022-09-25', 1310, 113370, 6813, 59901, '5.0000', '0.4100', '0.4100', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120079, '2022-09-25', 2105, 113371, 6813, 54575, '2.0000', '2.4149', '2.4149', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120080, '2022-09-25', 9842, 113372, 6813, 51251, '1.0000', '5.6200', '5.6200', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120081, '2022-09-25', 7771, 113373, 6813, NULL, '1.0000', '7.0000', '7.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 (120082, '2022-09-25', 1501, 113374, 6813, NULL, '1.0000', '-0.6640', '-0.6640', '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 (120083, '2022-09-25', 1410, 113375, 6813, NULL, '1.0000', '298.0003', '298.0003', '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 (120084, '2022-09-25', 8878, 113376, 6814, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120085, '2022-09-25', 7959, 113377, 6814, NULL, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120086, '2022-09-25', 2315, 113378, 6814, 61885, '3.0000', '0.7648', '0.7648', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120087, '2022-09-25', 8753, 113379, 6814, 61883, '1.0000', '4.0821', '4.0821', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120088, '2022-09-25', 7917, 113380, 6814, 61747, '3.0000', '2.5067', '2.5067', '0.7000', '0.7000', '51.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120089, '2022-09-25', 1837, 113381, 6814, NULL, '2.0000', '0.5600', '0.5600', '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 (120090, '2022-09-25', 2487, 113382, 6814, 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 (120091, '2022-09-25', 7612, 113383, 6814, NULL, '2.0000', '2.3846', '2.3846', '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 (120092, '2022-09-25', 7872, 113384, 6814, 62345, '2.0000', '2.5000', '2.5000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120093, '2022-09-25', 10019, 113385, 6814, 61957, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120094, '2022-09-25', 7382, 113386, 6814, 61844, '2.0000', '8.7055', '8.7055', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120095, '2022-09-25', 7880, 113387, 6814, NULL, '1.0000', '1.0000', '1.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 (120096, '2022-09-25', 7630, 113388, 6814, 59310, '2.0000', '4.5400', '4.5400', '4.5000', '4.5000', '29.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120097, '2022-09-25', 2289, 113389, 6814, NULL, '2.0000', '4.0652', '4.0652', '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 (120098, '2022-09-25', 1947, 113390, 6814, 43122, '1.0000', '-122941.3106', '-122941.3106', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120099, '2022-09-25', 7514, 113391, 6814, 63688, '1.0000', '-26806.4604', '-26806.4604', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120100, '2022-09-25', 7385, 113392, 6814, 63621, '7.0000', '5.4637', '5.4637', '4.5000', '4.5000', '46.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120101, '2022-09-25', 7705, 113393, 6814, NULL, '1.0000', '23.1081', '23.1081', '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 (120102, '2022-09-25', 7666, 113394, 6814, 62332, '1.0000', '6.1134', '6.1134', '6.5000', '6.5000', '13.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120103, '2022-09-25', 7921, 113395, 6814, NULL, '1.0000', '0.3000', '0.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 (120104, '2022-09-25', 9729, 113396, 6814, 60467, '4.0000', '0.6200', '0.6200', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120105, '2022-09-25', 9747, 113397, 6814, 60779, '3.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120106, '2022-09-25', 9866, 113398, 6814, 52455, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120107, '2022-09-25', 8765, 113399, 6814, 62516, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120108, '2022-09-25', 7730, 113400, 6814, 62568, '3.0000', '0.1050', '0.1050', '0.2000', '0.2000', '81.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120109, '2022-09-25', 8039, 113401, 6814, 63675, '1.0000', '15.0440', '15.0440', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120110, '2022-09-25', 7518, 113402, 6814, 63652, '1.0000', '9.6084', '9.6084', '14.5000', '14.5000', '28.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120111, '2022-09-25', 7611, 113403, 6814, 63631, '1.0000', '11.9535', '11.9535', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120112, '2022-09-25', 7952, 113404, 6814, 62310, '1.0000', '4.8479', '4.8479', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120113, '2022-09-25', 7684, 113405, 6814, NULL, '4.0000', '9.0000', '9.0000', '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 (120114, '2022-09-25', 2297, 113406, 6814, NULL, '1.0000', '7.9071', '7.9071', '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 (120115, '2022-09-25', 3016, 113407, 6814, 46652, '1.0000', '14.3456', '14.3456', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120116, '2022-09-25', 1340, 113408, 6814, 57181, '1.0000', '3.3640', '3.3640', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120117, '2022-09-25', 9747, 113409, 6814, 60779, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120118, '2022-09-25', 7917, 113410, 6814, 61747, '2.0000', '2.5067', '2.5067', '0.7000', '0.7000', '52.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120119, '2022-09-25', 9734, 113411, 6814, 61746, '1.0000', '0.3316', '0.3316', '0.7000', '0.7000', '180.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120120, '2022-09-25', 7482, 113412, 6814, 63619, '1.0000', '4.8961', '4.8961', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120121, '2022-09-25', 8677, 113413, 6814, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120122, '2022-09-25', 1580, 113414, 6815, 62190, '10.0000', '1.4680', '1.4680', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120123, '2022-09-25', 1557, 113415, 6815, NULL, '1.0000', '8.2500', '8.2500', '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 (120124, '2022-09-25', 2730, 113416, 6815, 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 (120125, '2022-09-25', 2100, 113417, 6816, NULL, '1.0000', '0.4608', '0.4608', '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 (120126, '2022-09-25', 7608, 113418, 6816, NULL, '1.0000', '6.9800', '6.9800', '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 (120127, '2022-09-25', 9902, 113419, 6816, 62143, '1.0000', '9.0074', '9.0074', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120128, '2022-09-25', 8420, 113420, 6817, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '14.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120129, '2022-09-25', 8746, 113421, 6818, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '20.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120130, '2022-09-25', 1935, 113422, 6819, 61805, '5.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '84.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120131, '2022-09-25', 7346, 113423, 6819, NULL, '1.0000', '103.7200', '103.7200', '121.0000', '121.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120132, '2022-09-25', 8449, 113424, 6819, 59316, '1.0000', '14.9000', '14.9000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120133, '2022-09-25', 7591, 113425, 6819, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120134, '2022-09-25', 7787, 113426, 6819, NULL, '1.0000', '20.6816', '20.6816', '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 (120135, '2022-09-25', 7354, 113427, 6819, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120136, '2022-09-25', 9424, 113428, 6819, 57392, '1.0000', '-37.5013', '-37.5013', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120137, '2022-09-25', 7952, 113429, 6819, 62310, '1.0000', '4.8479', '4.8479', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120138, '2022-09-25', 8482, 113430, 6819, 63904, '1.0000', '21.1453', '21.1453', '24.0000', '24.0000', '11.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120139, '2022-09-25', 7459, 113431, 6819, 60478, '20.0000', '8.0994', '8.0994', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120140, '2022-09-25', 7780, 113432, 6819, 63912, '1.0000', '15.9431', '15.9431', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120141, '2022-09-25', 7886, 113433, 6819, 63876, '2.0000', '4.9536', '4.9536', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120142, '2022-09-25', 1812, 113434, 6820, 62817, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120143, '2022-09-25', 1310, 113435, 6820, 57744, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120144, '2022-09-25', 2242, 113436, 6820, 56409, '1.0000', '1.2664', '1.2664', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120145, '2022-09-25', 2242, 113436, 6820, 48481, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120146, '2022-09-25', 1499, 113437, 6820, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '45.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120147, '2022-09-25', 9927, 113438, 6820, 63474, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120148, '2022-09-25', 2169, 113439, 6820, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '79.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120149, '2022-09-25', 2088, 113440, 6820, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120150, '2022-09-25', 7398, 113441, 6820, NULL, '1.0000', '143.5000', '143.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 (120151, '2022-09-25', 2169, 113442, 6820, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '79.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120152, '2022-09-25', 1863, 113443, 6820, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120153, '2022-09-25', 1409, 113444, 6820, 63418, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120154, '2022-09-25', 2315, 113445, 6820, NULL, '2.0000', '0.7700', '0.7700', '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 (120155, '2022-09-25', 2821, 113446, 6820, NULL, '1.0000', '-4.2032', '-4.2032', '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 (120156, '2022-09-25', 1863, 113447, 6820, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120157, '2022-09-25', 1805, 113448, 6820, NULL, '1.0000', '80.7776', '80.7776', '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 (120158, '2022-09-25', 1863, 113449, 6820, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120159, '2022-09-25', 2004, 113450, 6820, 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 (120160, '2022-09-25', 8444, 113451, 6820, 62848, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120161, '2022-09-25', 9469, 113452, 6820, NULL, '1.0000', '5.5270', '5.5270', '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 (120162, '2022-09-25', 2558, 113453, 6820, NULL, '1.0000', '6.0000', '6.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 (120163, '2022-09-25', 2284, 113454, 6820, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120164, '2022-09-25', 2109, 113455, 6820, NULL, '1.0000', '1.4840', '1.4840', '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 (120165, '2022-09-25', 1409, 113456, 6820, 63418, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120166, '2022-09-25', 9734, 113457, 6820, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '142.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120167, '2022-09-25', 1946, 113458, 6820, NULL, '1.0000', '-12.3249', '-12.3249', '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 (120168, '2022-09-25', 8979, 113459, 6820, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120169, '2022-09-25', 9999, 113460, 6820, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120170, '2022-09-25', 9740, 113461, 6820, 62840, '2.0000', '0.6695', '0.6695', '2.0000', '2.0000', '77.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120171, '2022-09-25', 2263, 113462, 6820, 62876, '2.0000', '11.4942', '11.4942', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120172, '2022-09-25', 1637, 113463, 6820, NULL, '1.0000', '-19.6372', '-19.6372', '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 (120173, '2022-09-25', 2948, 113464, 6820, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '73.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120174, '2022-09-25', 1310, 113465, 6820, 57744, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '10.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120175, '2022-09-25', 8835, 113466, 6820, 63769, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120176, '2022-09-25', 9732, 113467, 6820, 59896, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120177, '2022-09-25', 2283, 113468, 6820, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120178, '2022-09-25', 2169, 113469, 6820, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '79.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120179, '2022-09-25', 1335, 113470, 6821, 12031, '-42.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 (120180, '2022-09-25', 1335, 113470, 6821, NULL, '44.0000', '0.8500', '0.8500', '2.0000', '2.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120181, '2022-09-25', 8186, 113471, 6821, NULL, '2.0000', '1.0800', '1.0800', '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 (120182, '2022-09-25', 7730, 113472, 6821, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (120183, '2022-09-25', 7373, 113473, 6821, NULL, '1.0000', '17.0000', '17.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 (120184, '2022-09-25', 7482, 113474, 6821, NULL, '1.0000', '3.0500', '3.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 (120185, '2022-09-25', 9984, 113475, 6821, 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 (120186, '2022-09-25', 9744, 113476, 6821, NULL, '1.0000', '8.6000', '8.6000', '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 (120187, '2022-09-25', 1840, 113477, 6821, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (120188, '2022-09-25', 1841, 113478, 6821, NULL, '2.0000', '142.5780', '142.5780', '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 (120189, '2022-09-25', 8767, 113479, 6821, NULL, '1.0000', '6.6900', '6.6900', '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 (120190, '2022-09-25', 9089, 113480, 6821, NULL, '2.0000', '3.8000', '3.8000', '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 (120191, '2022-09-25', 7496, 113481, 6821, NULL, '1.0000', '0.9600', '0.9600', '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 (120192, '2022-09-25', 9791, 113482, 6821, 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 (120193, '2022-09-25', 7385, 113483, 6821, NULL, '5.0000', '2.0000', '2.0000', '4.5000', '4.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 (120194, '2022-09-25', 7639, 113484, 6821, 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 (120195, '2022-09-25', 8032, 113485, 6821, NULL, '1.0000', '6.4400', '6.4400', '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 (120196, '2022-09-25', 9272, 113486, 6821, NULL, '4.0000', '3.1000', '3.1000', '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 (120197, '2022-09-25', 2248, 113487, 6821, 2785, '-20.0000', '2.5000', '2.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 (120198, '2022-09-25', 2248, 113487, 6821, NULL, '21.0000', '2.5000', '2.5000', '6.0000', '6.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120199, '2022-09-25', 1935, 113488, 6821, 5586, '-211.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 (120200, '2022-09-25', 1935, 113488, 6821, NULL, '212.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-212.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120201, '2022-09-25', 8032, 113489, 6821, NULL, '2.0000', '6.4400', '6.4400', '9.5000', '9.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 (120202, '2022-09-25', 7715, 113490, 6821, NULL, '1.0000', '1.8900', '1.8900', '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 (120203, '2022-09-25', 7666, 113491, 6821, NULL, '2.0000', '3.6000', '3.6000', '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 (120204, '2022-09-25', 1765, 113492, 6821, 3175, '-27.0000', '90.0000', '90.0000', '9.5000', '9.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 (120205, '2022-09-25', 1765, 113492, 6821, NULL, '28.0000', '90.0000', '90.0000', '9.5000', '9.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 (120206, '2022-09-25', 1335, 113493, 6821, 12031, '-42.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 (120207, '2022-09-25', 1335, 113493, 6821, NULL, '45.0000', '0.8500', '0.8500', '2.0000', '2.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 (120208, '2022-09-25', 8878, 113494, 6821, NULL, '2.0000', '6.6700', '6.6700', '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 (120209, '2022-09-25', 1688, 113495, 6821, 4896, '-18.0000', '18.5000', '18.5000', '31.5000', '31.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 (120210, '2022-09-25', 1688, 113495, 6821, NULL, '19.0000', '18.5000', '18.5000', '31.5000', '31.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 (120211, '2022-09-25', 7672, 113496, 6821, NULL, '1.0000', '1.0200', '1.0200', '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 (120212, '2022-09-25', 9747, 113497, 6821, NULL, '2.0000', '0.6500', '0.6500', '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 (120213, '2022-09-25', 8243, 113498, 6821, NULL, '2.0000', '1.1400', '1.1400', '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 (120214, '2022-09-25', 8359, 113499, 6821, 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 (120215, '2022-09-25', 8677, 113500, 6821, NULL, '2.0000', '1.2800', '1.2800', '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 (120216, '2022-09-25', 9204, 113501, 6821, NULL, '1.0000', '8.1600', '8.1600', '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 (120217, '2022-09-25', 8744, 113502, 6821, NULL, '1.0000', '3.6600', '3.6600', '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 (120218, '2022-09-25', 7609, 113503, 6821, NULL, '1.0000', '4.3300', '4.3300', '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 (120219, '2022-09-25', 7675, 113504, 6821, NULL, '1.0000', '11.4300', '11.4300', '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 (120220, '2022-09-25', 7482, 113505, 6821, NULL, '1.0000', '3.0500', '3.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 (120221, '2022-09-25', 8216, 113506, 6821, NULL, '1.0000', '20.7000', '20.7000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120222, '2022-09-25', 8677, 113507, 6821, NULL, '3.0000', '1.2800', '1.2800', '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 (120223, '2022-09-25', 1754, 113508, 6821, 2171, '-3.0000', '13.4800', '13.4800', '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 (120224, '2022-09-25', 1754, 113508, 6821, NULL, '4.0000', '13.4800', '13.4800', '32.0000', '32.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 (120225, '2022-09-25', 7744, 113509, 6821, NULL, '1.0000', '2.7000', '2.7000', '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 (120226, '2022-09-25', 7954, 113510, 6821, NULL, '2.0000', '3.0000', '3.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 (120227, '2022-09-25', 7762, 113511, 6821, NULL, '1.0000', '1.5000', '1.5000', '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 (120228, '2022-09-25', 8689, 113512, 6821, 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 (120229, '2022-09-25', 7524, 113513, 6821, NULL, '1.0000', '11.9500', '11.9500', '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 (120230, '2022-09-25', 7318, 113514, 6821, NULL, '1.0000', '13.4400', '13.4400', '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 (120231, '2022-09-25', 7707, 113515, 6821, NULL, '1.0000', '7.0000', '7.0000', '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 (120232, '2022-09-25', 2315, 113516, 6821, 2735, '-684.0000', '0.3300', '0.3300', '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 (120233, '2022-09-25', 2315, 113516, 6821, NULL, '685.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-685.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120234, '2022-09-25', 8408, 113517, 6821, 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 (120235, '2022-09-25', 7379, 113518, 6821, NULL, '1.0000', '12.5100', '12.5100', '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 (120236, '2022-09-25', 1884, 113519, 6821, 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 (120237, '2022-09-25', 8146, 113520, 6821, 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 (120238, '2022-09-25', 1371, 113521, 6822, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120239, '2022-09-25', 1432, 113522, 6822, 62775, '1.0000', '11.9326', '11.9326', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120240, '2022-09-25', 1409, 113523, 6822, 62201, '1.0000', '13.1005', '13.1005', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120241, '2022-09-25', 7353, 113524, 6822, NULL, '2.0000', '0.1900', '0.1900', '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 (120242, '2022-09-25', 2315, 113525, 6822, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120243, '2022-09-25', 8208, 113526, 6822, NULL, '2.0000', '33.0000', '33.0000', '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 (120244, '2022-09-25', 2289, 113527, 6822, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '65.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120245, '2022-09-25', 1841, 113528, 6822, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120246, '2022-09-25', 2451, 113529, 6822, 50892, '1.0000', '10.5136', '10.5136', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 420);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120247, '2022-09-25', 1812, 113530, 6822, 63373, '1.0000', '8.9018', '8.9018', '14.5000', '14.5000', '6.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120248, '2022-09-25', 1383, 113531, 6822, 63405, '1.0000', '5.7792', '5.7792', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120249, '2022-09-25', 7411, 113532, 6822, NULL, '1.0000', '1.5882', '1.5882', '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 (120250, '2022-09-25', 7574, 113533, 6822, NULL, '1.0000', '8.2900', '8.2900', '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 (120251, '2022-09-25', 2916, 113534, 6822, 63365, '1.0000', '15.1697', '15.1697', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120252, '2022-09-25', 2821, 113535, 6822, 62815, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120253, '2022-09-25', 1432, 113536, 6822, 62775, '1.0000', '11.9326', '11.9326', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120254, '2022-09-25', 1754, 113537, 6822, 62239, '1.0000', '27.5713', '27.5713', '32.0000', '32.0000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120255, '2022-09-25', 2277, 113538, 6822, 63403, '3.0000', '0.4620', '0.4620', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120256, '2022-09-25', 2858, 113539, 6822, 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 (120257, '2022-09-25', 1602, 113540, 6822, 62256, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120258, '2022-09-25', 1338, 113541, 6822, 62719, '1.0000', '3.0866', '3.0866', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120259, '2022-09-25', 1504, 113542, 6822, 63133, '10.0000', '2.3115', '2.3115', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120260, '2022-09-25', 9311, 113543, 6822, 40379, '3.0000', '6.6000', '6.6000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120261, '2022-09-25', 8743, 113544, 6822, 60518, '1.0000', '12.9961', '12.9961', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120262, '2022-09-25', 2416, 113545, 6822, 63813, '1.0000', '1.3530', '1.3530', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120263, '2022-09-25', 8773, 113546, 6822, NULL, '1.0000', '-92.4961', '-92.4961', '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 (120264, '2022-09-25', 2259, 113547, 6822, 62199, '1.0000', '22.6776', '22.6776', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120265, '2022-09-25', 7744, 113548, 6822, NULL, '2.0000', '2.9400', '2.9400', '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 (120266, '2022-09-25', 7713, 113549, 6822, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (120267, '2022-09-25', 1812, 113550, 6822, 63373, '1.0000', '8.9018', '8.9018', '14.5000', '14.5000', '6.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120268, '2022-09-25', 1670, 113551, 6822, 62226, '2.0000', '37.8807', '37.8807', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120269, '2022-09-25', 2655, 113552, 6822, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120270, '2022-09-25', 1310, 113553, 6822, 61642, '5.0000', '0.4067', '0.4067', '0.6000', '0.6000', '12.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120271, '2022-09-25', 7411, 113554, 6822, NULL, '2.0000', '1.5882', '1.5882', '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 (120272, '2022-09-25', 2068, 113555, 6822, 62744, '1.0000', '13.4054', '13.4054', '20.5000', '20.5000', '6.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120273, '2022-09-25', 1383, 113556, 6822, 63405, '1.0000', '5.7792', '5.7792', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120274, '2022-09-25', 2655, 113557, 6822, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120275, '2022-09-25', 2858, 113558, 6822, NULL, '2.0000', '1.0000', '1.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 (120276, '2022-09-25', 1498, 113559, 6822, 52247, '1.0000', '0.3808', '0.3808', '0.7000', '0.7000', '16.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120277, '2022-09-25', 9979, 113560, 6822, 63377, '1.0000', '15.8638', '15.8638', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120278, '2022-09-25', 2849, 113561, 6822, 17083, '2.0000', '5.8500', '5.8500', '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 (120279, '2022-09-25', 7385, 113562, 6823, NULL, '2.0000', '2.0000', '2.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 (120280, '2022-09-25', 7316, 113563, 6823, NULL, '5.0000', '9.5500', '9.5500', '1.5000', '1.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 (120281, '2022-09-25', 9856, 113564, 6823, NULL, '1.0000', '1.6000', '1.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 (120282, '2022-09-25', 8449, 113565, 6823, NULL, '1.0000', '11.9000', '11.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 (120283, '2022-09-25', 9088, 113566, 6823, NULL, '1.0000', '15.4000', '15.4000', '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 (120284, '2022-09-25', 7382, 113567, 6823, NULL, '1.0000', '7.4500', '7.4500', '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 (120285, '2022-09-25', 7411, 113568, 6823, NULL, '2.0000', '1.3500', '1.3500', '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 (120286, '2022-09-25', 8243, 113569, 6823, NULL, '1.0000', '1.1400', '1.1400', '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 (120287, '2022-09-25', 1425, 113570, 6824, 62266, '1.0000', '6.9402', '6.9402', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120288, '2022-09-25', 1690, 113571, 6824, 62766, '1.0000', '7.3939', '7.3939', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120289, '2022-09-25', 7639, 113572, 6824, 61288, '1.0000', '5.8250', '5.8250', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120290, '2022-09-25', 1916, 113573, 6824, 58812, '1.0000', '9.5467', '9.5467', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120291, '2022-09-25', 1863, 113574, 6824, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120292, '2022-09-25', 2284, 113575, 6824, 3124, '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 (120293, '2022-09-25', 9950, 113576, 6824, 58663, '1.0000', '54.0000', '54.0000', '71.0000', '71.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120294, '2022-09-25', 2135, 113577, 6824, NULL, '1.0000', '2.2504', '2.2504', '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 (120295, '2022-09-25', 9747, 113578, 6824, 61623, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120296, '2022-09-25', 1383, 113579, 6824, 63405, '1.0000', '5.7792', '5.7792', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120297, '2022-09-25', 2916, 113580, 6824, 63365, '1.0000', '15.1697', '15.1697', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120298, '2022-09-25', 2068, 113581, 6824, 62744, '1.0000', '13.4054', '13.4054', '20.5000', '20.5000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120299, '2022-09-25', 1501, 113582, 6824, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120300, '2022-09-25', 1863, 113583, 6824, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120301, '2022-09-25', 7385, 113584, 6824, 57945, '7.0000', '2.6553', '2.6553', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120302, '2022-09-25', 7385, 113584, 6824, 55490, '3.0000', '2.6553', '2.6553', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120303, '2022-09-25', 2061, 113585, 6824, 63379, '1.0000', '12.9386', '12.9386', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120304, '2022-09-25', 2850, 113586, 6824, 61696, '2.0000', '7.4451', '7.4451', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120305, '2022-09-25', 2643, 113587, 6824, 63814, '1.0000', '1.0660', '1.0660', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120306, '2022-09-25', 9747, 113588, 6824, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120307, '2022-09-25', 7457, 113589, 6824, NULL, '1.0000', '2.3500', '2.3500', '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 (120308, '2022-09-25', 2100, 113590, 6824, 58620, '1.0000', '1.7687', '1.7687', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120309, '2022-09-25', 8482, 113591, 6824, NULL, '1.0000', '18.0000', '18.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 (120310, '2022-09-25', 2315, 113592, 6824, 62801, '5.0000', '0.6397', '0.6397', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120311, '2022-09-25', 1665, 113593, 6824, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120312, '2022-09-25', 1371, 113594, 6824, 61610, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120313, '2022-09-25', 1857, 113595, 6824, 59992, '1.0000', '-4.6298', '-4.6298', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120314, '2022-09-25', 1839, 113596, 6824, 62742, '1.0000', '8.0341', '8.0341', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120315, '2022-09-25', 1314, 113597, 6824, 62730, '2.0000', '1.5333', '1.5333', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120316, '2022-09-25', 1863, 113598, 6824, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120317, '2022-09-25', 8758, 113599, 6824, 60514, '1.0000', '10.7015', '10.7015', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120318, '2022-09-25', 2135, 113600, 6824, NULL, '2.0000', '2.2504', '2.2504', '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 (120319, '2022-09-25', 2893, 113601, 6824, 62224, '1.0000', '6.8008', '6.8008', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120320, '2022-09-25', 1856, 113602, 6824, 62252, '1.0000', '5.3927', '5.3927', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120321, '2022-09-25', 2068, 113603, 6824, 62744, '1.0000', '13.4054', '13.4054', '20.5000', '20.5000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120322, '2022-09-25', 1602, 113604, 6824, 62203, '2.0000', '7.3836', '7.3836', '11.5000', '11.5000', '38.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120323, '2022-09-25', 1687, 113605, 6824, 61651, '1.0000', '15.0466', '15.0466', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120324, '2022-09-25', 1863, 113606, 6824, 62253, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120325, '2022-09-25', 7482, 113607, 6824, NULL, '1.0000', '3.0500', '3.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 (120326, '2022-09-25', 2293, 113608, 6824, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120327, '2022-09-25', 1863, 113609, 6824, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120328, '2022-09-25', 1574, 113610, 6824, 45115, '1.0000', '39.2960', '39.2960', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120329, '2022-09-25', 2506, 113611, 6824, 60090, '1.0000', '4.3139', '4.3139', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120330, '2022-09-25', 1863, 113612, 6824, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120331, '2022-09-25', 1498, 113613, 6824, 52247, '1.0000', '0.3808', '0.3808', '0.7000', '0.7000', '15.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120332, '2022-09-25', 1602, 113614, 6824, 62203, '1.0000', '7.3836', '7.3836', '11.5000', '11.5000', '39.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120333, '2022-09-25', 1807, 113615, 6824, 63391, '4.0000', '-1.5061', '-1.5061', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120334, '2022-09-25', 2342, 113616, 6824, 60051, '2.0000', '2.2694', '2.2694', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120335, '2022-09-25', 9821, 113617, 6824, 63392, '1.0000', '1.5013', '1.5013', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120336, '2022-09-25', 2655, 113618, 6824, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120337, '2022-09-25', 2858, 113619, 6824, NULL, '2.0000', '1.0000', '1.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 (120338, '2022-09-25', 3059, 113620, 6825, 59839, '1.0000', '1.1792', '1.1792', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120339, '2022-09-25', 9725, 113621, 6825, 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 (120340, '2022-09-25', 7459, 113622, 6825, NULL, '5.0000', '-17.6445', '-17.6445', '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 (120341, '2022-09-25', 2893, 113623, 6825, NULL, '1.0000', '9.1280', '9.1280', '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 (120342, '2022-09-25', 1863, 113624, 6825, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120343, '2022-09-25', 1310, 113625, 6825, 57744, '8.0000', '0.4100', '0.4100', '0.6000', '0.6000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120344, '2022-09-25', 1310, 113625, 6825, 57059, '6.0000', '0.4100', '0.4100', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120345, '2022-09-25', 2259, 113626, 6825, 62448, '1.0000', '25.7632', '25.7632', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120346, '2022-09-25', 2821, 113627, 6825, NULL, '1.0000', '-4.2032', '-4.2032', '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 (120347, '2022-09-25', 9734, 113628, 6825, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '139.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120348, '2022-09-25', 1812, 113629, 6825, 62817, '2.0000', '8.2971', '8.2971', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120349, '2022-09-25', 7398, 113630, 6825, NULL, '1.0000', '143.5000', '143.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 (120350, '2022-09-25', 9729, 113631, 6825, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120351, '2022-09-25', 2109, 113632, 6825, NULL, '2.0000', '1.4840', '1.4840', '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 (120352, '2022-09-25', 2169, 113633, 6825, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120353, '2022-09-25', 2670, 113634, 6825, NULL, '2.0000', '0.3200', '0.3200', '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 (120354, '2022-09-25', 2109, 113635, 6825, NULL, '1.0000', '1.4840', '1.4840', '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 (120355, '2022-09-25', 1652, 113636, 6825, 62092, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120356, '2022-09-25', 1807, 113637, 6825, 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 (120357, '2022-09-25', 2302, 113638, 6825, 62819, '2.0000', '3.0692', '3.0692', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120358, '2022-09-25', 2516, 113639, 6825, 61466, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120359, '2022-09-25', 9482, 113640, 6825, 63458, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120360, '2022-09-26', 8165, 113641, 6826, 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 (120361, '2022-09-26', 1946, 113642, 6826, NULL, '1.0000', '-12.3249', '-12.3249', '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 (120362, '2022-09-26', 2821, 113643, 6826, NULL, '1.0000', '-4.2032', '-4.2032', '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 (120363, '2022-09-26', 9856, 113644, 6826, NULL, '1.0000', '-4.4000', '-4.4000', '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 (120364, '2022-09-26', 2948, 113645, 6826, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '72.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120365, '2022-09-26', 2302, 113646, 6826, 62819, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120366, '2022-09-26', 1837, 113647, 6826, 63427, '2.0000', '1.6080', '1.6080', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120367, '2022-09-26', 7403, 113648, 6826, 55724, '1.0000', '1.0100', '1.0100', '1.3000', '1.3000', '46.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120368, '2022-09-26', 1812, 113649, 6826, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '18.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120369, '2022-09-26', 1425, 113650, 6826, NULL, '1.0000', '10.4986', '10.4986', '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 (120370, '2022-09-26', 2315, 113651, 6826, NULL, '1.0000', '0.7700', '0.7700', '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 (120371, '2022-09-26', 1580, 113652, 6826, 62190, '3.0000', '1.4680', '1.4680', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120372, '2022-09-26', 1620, 113653, 6826, 62873, '1.0000', '2.3984', '2.3984', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120373, '2022-09-26', 1771, 113654, 6826, 62823, '1.0000', '7.3777', '7.3777', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120374, '2022-09-26', 2109, 113655, 6826, NULL, '2.0000', '1.4840', '1.4840', '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 (120375, '2022-09-26', 1760, 113656, 6826, NULL, '3.0000', '-0.1939', '-0.1939', '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 (120376, '2022-09-26', 9824, 113657, 6826, NULL, '1.0000', '1.3000', '1.3000', '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 (120377, '2022-09-26', 1863, 113658, 6826, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120378, '2022-09-26', 8607, 113659, 6826, 58070, '1.0000', '1.0085', '1.0085', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120379, '2022-09-26', 7877, 113660, 6826, NULL, '1.0000', '5.1600', '5.1600', '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 (120380, '2022-09-26', 2109, 113661, 6826, NULL, '2.0000', '1.4840', '1.4840', '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 (120381, '2022-09-26', 2238, 113662, 6826, 55895, '1.0000', '55.5946', '55.5946', '73.0000', '73.0000', '0.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120382, '2022-09-26', 8767, 113663, 6826, 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 (120383, '2022-09-26', 1863, 113664, 6826, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120384, '2022-09-26', 2864, 113665, 6826, NULL, '5.0000', '3.3622', '3.3622', '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 (120385, '2022-09-26', 8979, 113666, 6826, 63478, '2.0000', '0.9698', '0.9698', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120386, '2022-09-26', 8979, 113667, 6826, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120387, '2022-09-26', 1310, 113668, 6826, 57059, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '8.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120388, '2022-09-26', 7749, 113669, 6826, NULL, '1.0000', '20.0200', '20.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 (120389, '2022-09-26', 1308, 113670, 6826, 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 (120390, '2022-09-26', 2646, 113671, 6826, 61476, '1.0000', '9.0000', '9.0000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120391, '2022-09-26', 2366, 113672, 6826, NULL, '1.0000', '-122.9116', '-122.9116', '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 (120392, '2022-09-26', 1528, 113673, 6826, NULL, '3.0000', '5.9193', '5.9193', '8.5000', '8.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 (120393, '2022-09-26', 9979, 113674, 6826, NULL, '1.0000', '15.5300', '15.5300', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120394, '2022-09-26', 2921, 113675, 6826, 62125, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120395, '2022-09-26', 2332, 113676, 6826, NULL, '1.0000', '7.8000', '7.8000', '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 (120396, '2022-09-26', 1946, 113677, 6826, NULL, '1.0000', '-12.3249', '-12.3249', '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 (120397, '2022-09-26', 9496, 113678, 6826, NULL, '1.0000', '-5.5750', '-5.5750', '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 (120398, '2022-09-26', 1410, 113679, 6826, NULL, '1.0000', '298.0003', '298.0003', '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 (120399, '2022-09-26', 9734, 113680, 6826, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '137.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120400, '2022-09-26', 1837, 113681, 6826, 63427, '1.0000', '1.6080', '1.6080', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120401, '2022-09-26', 10036, 113682, 6826, NULL, '1.0000', '19.0000', '19.0000', '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 (120402, '2022-09-26', 9740, 113683, 6826, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120403, '2022-09-26', 1425, 113684, 6827, 62266, '1.0000', '6.9402', '6.9402', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120404, '2022-09-26', 8079, 113685, 6827, 62756, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120405, '2022-09-26', 1628, 113686, 6827, 58779, '1.0000', '6.4766', '6.4766', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120406, '2022-09-26', 2916, 113687, 6827, 63365, '1.0000', '15.1697', '15.1697', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120407, '2022-09-26', 1310, 113688, 6827, 61642, '10.0000', '0.4067', '0.4067', '0.6000', '0.6000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120408, '2022-09-26', 1578, 113689, 6827, 62241, '1.0000', '2.2213', '2.2213', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120409, '2022-09-26', 1650, 113690, 6827, 63402, '1.0000', '15.9667', '15.9667', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120410, '2022-09-26', 1383, 113691, 6827, 63405, '1.0000', '5.7792', '5.7792', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120411, '2022-09-26', 2618, 113692, 6827, 48779, '1.0000', '2.8873', '2.8873', '6.0000', '6.0000', '32.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120412, '2022-09-26', 2362, 113693, 6827, 60046, '1.0000', '79.1132', '79.1132', '179.0000', '179.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120413, '2022-09-26', 9957, 113694, 6827, 63376, '2.0000', '8.8000', '8.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120414, '2022-09-26', 10038, 113695, 6827, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120415, '2022-09-26', 1425, 113696, 6827, 62266, '1.0000', '6.9402', '6.9402', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120416, '2022-09-26', 7674, 113697, 6828, NULL, '1.0000', '1.3000', '1.3000', '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 (120417, '2022-09-26', 8186, 113698, 6828, NULL, '3.0000', '1.0800', '1.0800', '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 (120418, '2022-09-26', 7903, 113699, 6828, NULL, '1.0000', '13.0000', '13.0000', '18.4800', '18.4800', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120419, '2022-09-26', 7833, 113700, 6828, 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 (120420, '2022-09-26', 7917, 113701, 6828, NULL, '1.0000', '5.0000', '5.0000', '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 (120421, '2022-09-26', 9788, 113702, 6828, NULL, '4.0000', '1.3000', '1.3000', '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 (120422, '2022-09-26', 8063, 113703, 6828, NULL, '1.0000', '1.6000', '1.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 (120423, '2022-09-26', 8189, 113704, 6828, NULL, '1.0000', '42.0000', '42.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120424, '2022-09-26', 7554, 113705, 6828, NULL, '10.0000', '2.1000', '2.1000', '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 (120425, '2022-09-26', 9417, 113706, 6828, NULL, '1.0000', '4.0000', '4.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 (120426, '2022-09-26', 9088, 113707, 6828, NULL, '1.0000', '15.4000', '15.4000', '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 (120427, '2022-09-26', 8482, 113708, 6828, NULL, '1.0000', '2.9500', '2.9500', '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 (120428, '2022-09-26', 7657, 113709, 6828, NULL, '1.0000', '11.3200', '11.3200', '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 (120429, '2022-09-26', 8810, 113710, 6828, NULL, '1.0000', '1.6000', '1.6000', '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 (120430, '2022-09-26', 9865, 113711, 6828, NULL, '1.0000', '7.9500', '7.9500', '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 (120431, '2022-09-26', 8878, 113712, 6828, NULL, '1.0000', '6.6700', '6.6700', '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 (120432, '2022-09-26', 7316, 113713, 6828, NULL, '5.0000', '9.5500', '9.5500', '1.5000', '1.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 (120433, '2022-09-26', 2105, 113714, 6828, NULL, '1.0000', '1.3500', '1.3500', '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 (120434, '2022-09-26', 8596, 113715, 6828, 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 (120435, '2022-09-26', 7456, 113716, 6828, NULL, '1.0000', '34.7000', '34.7000', '62.5000', '62.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120436, '2022-09-26', 2487, 113717, 6828, NULL, '1.0000', '23.7500', '23.7500', '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 (120437, '2022-09-26', 7947, 113718, 6828, NULL, '1.0000', '14.4400', '14.4400', '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 (120438, '2022-09-26', 7672, 113719, 6828, NULL, '1.0000', '1.0200', '1.0200', '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 (120439, '2022-09-26', 8065, 113720, 6828, NULL, '1.0000', '32.0000', '32.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 (120440, '2022-09-26', 7990, 113721, 6828, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120441, '2022-09-26', 1647, 113722, 6828, 3218, '-27.0000', '4.7200', '4.7200', '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 (120442, '2022-09-26', 1647, 113722, 6828, NULL, '28.0000', '4.7200', '4.7200', '10.0000', '10.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 (120443, '2022-09-26', 7967, 113723, 6828, NULL, '1.0000', '7.0000', '7.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 (120444, '2022-09-26', 7385, 113724, 6828, NULL, '3.0000', '2.0000', '2.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 (120445, '2022-09-26', 2506, 113725, 6828, 16244, '-47.0000', '3.4900', '3.4900', '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 (120446, '2022-09-26', 2506, 113725, 6828, NULL, '48.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120447, '2022-09-26', 9984, 113726, 6828, 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 (120448, '2022-09-26', 8017, 113727, 6828, NULL, '3.0000', '40.0000', '40.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 (120449, '2022-09-26', 8135, 113728, 6828, NULL, '1.0000', '5.4500', '5.4500', '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 (120450, '2022-09-26', 9190, 113729, 6828, NULL, '1.0000', '7.6000', '7.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 (120451, '2022-09-26', 9988, 113730, 6828, 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 (120452, '2022-09-26', 7799, 113731, 6828, NULL, '1.0000', '6.4000', '6.4000', '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 (120453, '2022-09-26', 7333, 113732, 6828, NULL, '5.0000', '13.5000', '13.5000', '5.5000', '5.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 (120454, '2022-09-26', 7708, 113733, 6828, NULL, '1.0000', '7.8000', '7.8000', '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 (120455, '2022-09-26', 7547, 113734, 6828, NULL, '1.0000', '0.0000', '0.0000', '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 (120456, '2022-09-26', 7490, 113735, 6828, NULL, '5.0000', '0.2300', '0.2300', '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 (120457, '2022-09-26', 1827, 113736, 6828, NULL, '4.0000', '0.2000', '0.2000', '0.4000', '0.4000', '-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 (120458, '2022-09-26', 7444, 113737, 6828, 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 (120459, '2022-09-26', 2506, 113738, 6828, 16244, '-47.0000', '3.4900', '3.4900', '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 (120460, '2022-09-26', 2506, 113738, 6828, NULL, '48.0000', '3.4900', '3.4900', '6.5000', '6.5000', '-48.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120461, '2022-09-26', 7473, 113739, 6828, NULL, '4.0000', '0.5300', '0.5300', '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 (120462, '2022-09-26', 8744, 113740, 6828, NULL, '1.0000', '3.6600', '3.6600', '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 (120463, '2022-09-26', 7613, 113741, 6828, NULL, '2.0000', '12.0000', '12.0000', '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 (120464, '2022-09-26', 7952, 113742, 6828, 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 (120465, '2022-09-26', 7411, 113743, 6828, NULL, '1.0000', '1.3500', '1.3500', '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 (120466, '2022-09-26', 8596, 113744, 6828, 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 (120467, '2022-09-26', 8718, 113745, 6828, NULL, '1.0000', '11.2000', '11.2000', '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 (120468, '2022-09-26', 7459, 113746, 6828, NULL, '1.0000', '2.3500', '2.3500', '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 (120469, '2022-09-26', 7558, 113747, 6828, NULL, '1.0000', '1.9700', '1.9700', '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 (120470, '2022-09-26', 8395, 113748, 6828, NULL, '1.0000', '0.9700', '0.9700', '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 (120471, '2022-09-26', 3044, 113749, 6828, NULL, '1.0000', '0.4000', '0.4000', '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 (120472, '2022-09-26', 9834, 113750, 6828, NULL, '1.0000', '1.4500', '1.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 (120473, '2022-09-26', 1310, 113751, 6828, NULL, '2.0000', '0.3700', '0.3700', '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 (120474, '2022-09-26', 7780, 113752, 6828, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120475, '2022-09-26', 7666, 113753, 6828, NULL, '1.0000', '3.6000', '3.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 (120476, '2022-09-26', 8020, 113754, 6828, NULL, '1.0000', '11.9000', '11.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 (120477, '2022-09-26', 8011, 113755, 6828, 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 (120478, '2022-09-26', 7762, 113756, 6828, NULL, '1.0000', '1.5000', '1.5000', '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 (120479, '2022-09-26', 7411, 113757, 6828, NULL, '1.0000', '1.3500', '1.3500', '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 (120480, '2022-09-26', 8017, 113758, 6828, NULL, '1.0000', '40.0000', '40.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 (120481, '2022-09-26', 7432, 113759, 6828, NULL, '1.0000', '14.7000', '14.7000', '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 (120482, '2022-09-26', 7616, 113760, 6828, NULL, '1.0000', '21.5000', '21.5000', '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 (120483, '2022-09-26', 7400, 113761, 6828, NULL, '1.0000', '18.5000', '18.5000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120484, '2022-09-26', 8597, 113762, 6828, NULL, '1.0000', '59.0000', '59.0000', '79.5000', '79.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120485, '2022-09-26', 7750, 113763, 6828, NULL, '1.0000', '33.9800', '33.9800', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120486, '2022-09-26', 7496, 113764, 6828, NULL, '2.0000', '0.9600', '0.9600', '8.5000', '8.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 (120487, '2022-09-26', 7318, 113765, 6828, NULL, '1.0000', '13.4400', '13.4400', '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 (120488, '2022-09-26', 7708, 113766, 6828, NULL, '1.0000', '7.8000', '7.8000', '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 (120489, '2022-09-26', 9609, 113767, 6828, NULL, '1.0000', '6.4000', '6.4000', '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 (120490, '2022-09-26', 8878, 113768, 6828, NULL, '1.0000', '6.6700', '6.6700', '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 (120491, '2022-09-26', 8550, 113769, 6828, NULL, '1.0000', '15.3000', '15.3000', '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 (120492, '2022-09-26', 7509, 113770, 6828, NULL, '1.0000', '6.5000', '6.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 (120493, '2022-09-26', 2295, 113771, 6828, 2954, '-80.0000', '0.9600', '0.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 (120494, '2022-09-26', 2295, 113771, 6828, NULL, '83.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-83.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120495, '2022-09-26', 8101, 113772, 6828, NULL, '3.0000', '1.9700', '1.9700', '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 (120496, '2022-09-26', 8638, 113773, 6828, NULL, '1.0000', '0.5100', '0.5100', '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 (120497, '2022-09-26', 7819, 113774, 6828, NULL, '1.0000', '9.5000', '9.5000', '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 (120498, '2022-09-26', 7917, 113775, 6828, NULL, '1.0000', '5.0000', '5.0000', '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 (120499, '2022-09-26', 8032, 113776, 6828, NULL, '1.0000', '6.4400', '6.4400', '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 (120500, '2022-09-26', 7411, 113777, 6828, NULL, '1.0000', '1.3500', '1.3500', '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 (120501, '2022-09-26', 7629, 113778, 6828, NULL, '2.0000', '186.8000', '186.8000', '246.5000', '246.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 (120502, '2022-09-26', 7411, 113779, 6828, NULL, '1.0000', '1.3500', '1.3500', '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 (120503, '2022-09-26', 2674, 113780, 6829, 33810, '10.0000', '4.9600', '4.9600', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120504, '2022-09-26', 7641, 113781, 6829, NULL, '1.0000', '1.9000', '1.9000', '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 (120505, '2022-09-26', 7952, 113782, 6829, 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 (120506, '2022-09-26', 7411, 113783, 6829, NULL, '1.0000', '1.3500', '1.3500', '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 (120507, '2022-09-26', 1846, 113784, 6829, 12032, '-33.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 (120508, '2022-09-26', 1846, 113784, 6829, NULL, '34.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (120509, '2022-09-26', 7674, 113785, 6829, NULL, '1.0000', '1.3000', '1.3000', '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 (120510, '2022-09-26', 7877, 113786, 6829, NULL, '1.0000', '4.4000', '4.4000', '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 (120547, '2022-09-27', 7482, 113823, 6831, 63869, '1.0000', '4.8628', '4.8628', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120548, '2022-09-27', 7781, 113824, 6831, NULL, '3.0000', '9.6314', '9.6314', '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 (120549, '2022-09-27', 8101, 113825, 6831, 61865, '3.0000', '2.5225', '2.5225', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120550, '2022-09-27', 8677, 113826, 6831, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120551, '2022-09-27', 7409, 113827, 6831, 55111, '2.0000', '5.0453', '5.0453', '19.0000', '19.0000', '6.0000', 1, 0, NULL, 472);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120552, '2022-09-27', 7984, 113828, 6831, NULL, '1.0000', '32.8375', '32.8375', '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 (120553, '2022-09-27', 7385, 113829, 6831, 63871, '1.0000', '5.4978', '5.4978', '4.5000', '4.5000', '45.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120554, '2022-09-27', 7558, 113830, 6831, 63891, '1.0000', '3.3637', '3.3637', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120555, '2022-09-27', 7411, 113831, 6831, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120556, '2022-09-27', 7444, 113832, 6831, NULL, '1.0000', '4.5100', '4.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 (120557, '2022-09-27', 7674, 113833, 6831, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '34.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120558, '2022-09-27', 8967, 113834, 6831, 62340, '1.0000', '59.8000', '59.8000', '79.0000', '79.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120559, '2022-09-27', 3085, 113835, 6831, NULL, '1.0000', '57.0000', '57.0000', '75.0000', '75.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120560, '2022-09-27', 8063, 113836, 6831, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '68.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120561, '2022-09-27', 9791, 113837, 6831, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '88.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120562, '2022-09-27', 7334, 113838, 6831, 63845, '3.0000', '9.7325', '9.7325', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120563, '2022-09-27', 9740, 113839, 6831, 59087, '2.0000', '0.6631', '0.6631', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120564, '2022-09-27', 2289, 113840, 6831, NULL, '4.0000', '4.0652', '4.0652', '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 (120565, '2022-09-27', 1557, 113841, 6831, 63894, '1.0000', '8.1273', '8.1273', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120566, '2022-09-27', 8085, 113842, 6831, NULL, '1.0000', '-30.0931', '-30.0931', '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 (120567, '2022-09-27', 8186, 113843, 6831, 61866, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120568, '2022-09-27', 7518, 113844, 6831, 63902, '1.0000', '9.5531', '9.5531', '14.5000', '14.5000', '27.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120569, '2022-09-27', 7429, 113845, 6831, NULL, '1.0000', '3.8156', '3.8156', '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 (120570, '2022-09-27', 7781, 113846, 6831, NULL, '3.0000', '9.6314', '9.6314', '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 (120571, '2022-09-27', 8063, 113847, 6831, 46909, '1.0000', '-468.9173', '-468.9173', '7.0000', '7.0000', '68.0000', 1, 0, NULL, 336);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120572, '2022-09-27', 2602, 113848, 6831, 54442, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120573, '2022-09-27', 7396, 113849, 6831, 62346, '1.0000', '15.0592', '15.0592', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120574, '2022-09-27', 2331, 113850, 6832, 53222, '1.0000', '12.7075', '12.7075', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120575, '2022-09-27', 2555, 113851, 6832, NULL, '2.0000', '4.2000', '4.2000', '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 (120576, '2022-09-27', 1479, 113852, 6832, 59903, '1.0000', '50.0000', '50.0000', '68.0000', '68.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120577, '2022-09-27', 2566, 113853, 6832, 58053, '1.0000', '20.0000', '20.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120578, '2022-09-27', 2287, 113854, 6832, 57710, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120579, '2022-09-27', 9734, 113855, 6832, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '135.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120580, '2022-09-27', 3020, 113856, 6832, 60239, '1.0000', '11.9900', '11.9900', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120581, '2022-09-27', 2038, 113857, 6832, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120582, '2022-09-27', 2565, 113858, 6832, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120583, '2022-09-27', 9729, 113859, 6832, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120584, '2022-09-27', 2068, 113860, 6832, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120585, '2022-09-27', 1337, 113861, 6832, 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 (120586, '2022-09-27', 1430, 113862, 6832, 62399, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120587, '2022-09-27', 1388, 113863, 6832, 61565, '1.0000', '7.4975', '7.4975', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120588, '2022-09-27', 7926, 113864, 6832, NULL, '1.0000', '4.2867', '4.2867', '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 (120589, '2022-09-27', 2169, 113865, 6832, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120590, '2022-09-27', 2070, 113866, 6832, 62158, '1.0000', '2.6913', '2.6913', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120591, '2022-09-27', 2435, 113867, 6832, 61472, '1.0000', '9.2616', '9.2616', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120592, '2022-09-27', 1690, 113868, 6832, 60355, '1.0000', '8.6637', '8.6637', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120593, '2022-09-27', 8677, 113869, 6832, NULL, '2.0000', '1026.1382', '1026.1382', '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 (120594, '2022-09-27', 7785, 113870, 6832, 58235, '1.0000', '3.9000', '3.9000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120595, '2022-09-27', 3013, 113871, 6832, 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 (120596, '2022-09-27', 2565, 113872, 6832, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120597, '2022-09-27', 1950, 113873, 6832, 58156, '1.0000', '6.3376', '6.3376', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120598, '2022-09-27', 1455, 113874, 6832, 60340, '10.0000', '0.0795', '0.0795', '0.8000', '0.8000', '34.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120599, '2022-09-27', 9672, 113875, 6832, NULL, '1.0000', '2.0500', '2.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 (120600, '2022-09-27', 2315, 113876, 6832, NULL, '1.0000', '0.7700', '0.7700', '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 (120601, '2022-09-27', 9878, 113877, 6832, NULL, '1.0000', '9.6000', '9.6000', '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 (120602, '2022-09-27', 10038, 113878, 6832, 62839, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120603, '2022-09-27', 2379, 113879, 6832, NULL, '1.0000', '-154.5325', '-154.5325', '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 (120604, '2022-09-27', 2020, 113880, 6832, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (120605, '2022-09-27', 1504, 113881, 6832, 63459, '10.0000', '2.0557', '2.0557', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120606, '2022-09-27', 2250, 113882, 6832, 60309, '1.0000', '9.1988', '9.1988', '12.5000', '12.5000', '6.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120607, '2022-09-27', 2015, 113883, 6832, 63797, '1.0000', '6.3148', '6.3148', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120608, '2022-09-27', 1337, 113884, 6832, 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 (120609, '2022-09-27', 2293, 113885, 6832, NULL, '3.0000', '1.1118', '1.1118', '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 (120610, '2022-09-27', 8208, 113886, 6832, NULL, '2.0000', '63.9119', '63.9119', '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 (120611, '2022-09-27', 2088, 113887, 6832, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120612, '2022-09-27', 2753, 113888, 6832, 53665, '1.0000', '4.8632', '4.8632', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120613, '2022-09-27', 1874, 113889, 6832, NULL, '1.0000', '-24.5000', '-24.5000', '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 (120614, '2022-09-27', 2315, 113890, 6832, NULL, '1.0000', '0.7700', '0.7700', '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 (120615, '2022-09-27', 1337, 113891, 6832, 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 (120616, '2022-09-27', 2315, 113892, 6832, NULL, '1.0000', '0.7700', '0.7700', '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 (120617, '2022-09-27', 9458, 113893, 6832, 31078, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120618, '2022-09-27', 7411, 113894, 6832, NULL, '1.0000', '1.2819', '1.2819', '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 (120619, '2022-09-27', 2237, 113895, 6833, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120620, '2022-09-27', 2858, 113896, 6833, 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 (120621, '2022-09-27', 2277, 113897, 6833, 63403, '2.0000', '0.4620', '0.4620', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120622, '2022-09-27', 2296, 113898, 6833, 61650, '1.0000', '13.7602', '13.7602', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120623, '2022-09-27', 2545, 113899, 6833, 61664, '1.0000', '7.9431', '7.9431', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120624, '2022-09-27', 1331, 113900, 6833, 62736, '2.0000', '5.9950', '5.9950', '9.5000', '9.5000', '10.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120625, '2022-09-27', 2317, 113901, 6833, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120626, '2022-09-27', 9537, 113902, 6833, 55812, '1.0000', '36.0000', '36.0000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120627, '2022-09-27', 1342, 113903, 6833, 63366, '1.0000', '9.1316', '9.1316', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120628, '2022-09-27', 1501, 113904, 6833, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '18.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120629, '2022-09-27', 2315, 113905, 6833, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120630, '2022-09-27', 7385, 113906, 6833, 55490, '1.0000', '2.6553', '2.6553', '4.5000', '4.5000', '41.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120631, '2022-09-27', 1912, 113907, 6833, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120632, '2022-09-27', 2331, 113908, 6833, 62234, '1.0000', '13.8390', '13.8390', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120633, '2022-09-27', 1478, 113909, 6833, 60043, '1.0000', '38.2121', '38.2121', '34.0000', '34.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120634, '2022-09-27', 9024, 113910, 6833, 58810, '1.0000', '7.4400', '7.4400', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120635, '2022-09-27', 1493, 113911, 6833, 60066, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120636, '2022-09-27', 1578, 113912, 6833, 62241, '1.0000', '2.2213', '2.2213', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120637, '2022-09-27', 2277, 113913, 6833, 63403, '3.0000', '0.4620', '0.4620', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120638, '2022-09-27', 2459, 113914, 6833, 24004, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.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 (120639, '2022-09-27', 1839, 113915, 6833, 62742, '1.0000', '8.0341', '8.0341', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120640, '2022-09-27', 2762, 113916, 6833, 62767, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120641, '2022-09-27', 8933, 113917, 6833, 60917, '1.0000', '9.1447', '9.1447', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120642, '2022-09-27', 10037, 113918, 6833, 63371, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120643, '2022-09-27', 7376, 113919, 6833, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120644, '2022-09-27', 2656, 113920, 6833, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120645, '2022-09-27', 2548, 113921, 6833, 62246, '1.0000', '9.0738', '9.0738', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120646, '2022-09-27', 7608, 113922, 6833, NULL, '1.0000', '6.9800', '6.9800', '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 (120647, '2022-09-27', 1306, 113923, 6833, 62244, '1.0000', '2.0485', '2.0485', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120648, '2022-09-27', 9822, 113924, 6833, 62781, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120649, '2022-09-27', 1724, 113925, 6833, 6806, '1.0000', '90.0000', '90.0000', '187.0000', '187.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120650, '2022-09-27', 2237, 113926, 6834, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120651, '2022-09-27', 2858, 113927, 6834, 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 (120652, '2022-09-27', 2277, 113928, 6834, 63403, '2.0000', '0.4620', '0.4620', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120653, '2022-09-27', 2296, 113929, 6834, 58655, '1.0000', '13.7602', '13.7602', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120654, '2022-09-27', 2545, 113930, 6834, 61664, '1.0000', '7.9431', '7.9431', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120655, '2022-09-27', 1331, 113931, 6834, 62736, '2.0000', '5.9950', '5.9950', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120656, '2022-09-27', 2317, 113932, 6834, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120657, '2022-09-27', 9537, 113933, 6834, 40159, '1.0000', '36.0000', '36.0000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120658, '2022-09-27', 1342, 113934, 6834, 63366, '1.0000', '9.1316', '9.1316', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120659, '2022-09-27', 1501, 113935, 6834, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120660, '2022-09-27', 2315, 113936, 6834, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120661, '2022-09-27', 7385, 113937, 6834, 55490, '1.0000', '2.6553', '2.6553', '4.5000', '4.5000', '40.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120662, '2022-09-27', 1912, 113938, 6834, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120663, '2022-09-27', 2331, 113939, 6834, 62234, '1.0000', '13.8390', '13.8390', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120664, '2022-09-27', 1478, 113940, 6834, 60043, '1.0000', '38.2121', '38.2121', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120665, '2022-09-27', 9024, 113941, 6834, 58810, '1.0000', '7.4400', '7.4400', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120666, '2022-09-27', 1493, 113942, 6834, 52228, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120667, '2022-09-27', 1578, 113943, 6834, 62241, '1.0000', '2.2213', '2.2213', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120668, '2022-09-27', 2277, 113944, 6834, 63403, '3.0000', '0.4620', '0.4620', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120669, '2022-09-27', 2459, 113945, 6834, 23598, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.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 (120670, '2022-09-27', 1839, 113946, 6834, 62742, '1.0000', '8.0341', '8.0341', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120671, '2022-09-27', 2762, 113947, 6834, 62767, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120672, '2022-09-27', 8933, 113948, 6834, 60917, '1.0000', '9.1447', '9.1447', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120673, '2022-09-27', 10037, 113949, 6834, 63371, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120674, '2022-09-27', 7376, 113950, 6834, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120675, '2022-09-27', 2656, 113951, 6834, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120676, '2022-09-27', 2548, 113952, 6834, 56960, '1.0000', '9.0738', '9.0738', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120677, '2022-09-27', 7608, 113953, 6834, NULL, '1.0000', '6.9800', '6.9800', '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 (120678, '2022-09-27', 1306, 113954, 6834, 62244, '1.0000', '2.0485', '2.0485', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120679, '2022-09-27', 9822, 113955, 6834, 62781, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120680, '2022-09-27', 1724, 113956, 6834, NULL, '1.0000', '90.0000', '90.0000', '187.0000', '187.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120681, '2022-09-27', 9747, 113957, 6835, 60779, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120682, '2022-09-27', 7411, 113958, 6835, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120683, '2022-09-27', 7579, 113959, 6835, NULL, '2.0000', '15.0000', '15.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 (120684, '2022-09-27', 1501, 113960, 6835, 63870, '1.0000', '3.1917', '3.1917', '5.5000', '5.5000', '17.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120685, '2022-09-27', 7385, 113961, 6835, 63871, '10.0000', '5.4978', '5.4978', '4.5000', '4.5000', '35.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120686, '2022-09-27', 2169, 113962, 6836, 62844, '2.0000', '1.8223', '1.8223', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120687, '2022-09-27', 2444, 113963, 6836, 63776, '1.0000', '12.4109', '12.4109', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120688, '2022-09-27', 1410, 113964, 6836, NULL, '1.0000', '298.0003', '298.0003', '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 (120689, '2022-09-27', 1863, 113965, 6836, 62841, '2.0000', '1.5054', '1.5054', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120690, '2022-09-27', 7390, 113966, 6836, NULL, '1.0000', '-18.9300', '-18.9300', '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 (120691, '2022-09-27', 9740, 113967, 6836, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '75.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120692, '2022-09-27', 7741, 113968, 6836, NULL, '1.0000', '-174.4114', '-174.4114', '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 (120693, '2022-09-27', 9734, 113969, 6836, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '134.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120694, '2022-09-27', 2754, 113970, 6836, NULL, '4.0000', '0.0800', '0.0800', '0.2000', '0.2000', '-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 (120695, '2022-09-27', 2237, 113971, 6836, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120696, '2022-09-27', 1383, 113972, 6836, NULL, '1.0000', '5.9545', '5.9545', '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 (120697, '2022-09-27', 1922, 113973, 6836, 60300, '1.0000', '-11.5000', '-11.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120698, '2022-09-27', 2293, 113974, 6836, NULL, '3.0000', '1.1118', '1.1118', '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 (120699, '2022-09-27', 9736, 113975, 6836, NULL, '1.0000', '5.2083', '5.2083', '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 (120700, '2022-09-27', 8017, 113976, 6836, 62109, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120701, '2022-09-27', 2495, 113977, 6836, NULL, '1.0000', '8.6100', '8.6100', '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 (120702, '2022-09-27', 9885, 113978, 6836, 63465, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120703, '2022-09-27', 2948, 113979, 6836, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '71.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120704, '2022-09-27', 1665, 113980, 6836, 61557, '4.0000', '1.5573', '1.5573', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120705, '2022-09-27', 2302, 113981, 6836, 62819, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120706, '2022-09-27', 2061, 113982, 6836, NULL, '1.0000', '-13.2193', '-13.2193', '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 (120707, '2022-09-27', 9947, 113983, 6836, 62113, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120708, '2022-09-27', 2656, 113984, 6836, 63805, '1.0000', '1.9862', '1.9862', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120709, '2022-09-27', 3061, 113985, 6836, 62118, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120710, '2022-09-27', 1772, 113986, 6836, 58175, '1.0000', '5.9758', '5.9758', '12.0000', '12.0000', '12.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120711, '2022-09-27', 1501, 113987, 6836, NULL, '1.0000', '-0.6640', '-0.6640', '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 (120712, '2022-09-27', 7954, 113988, 6836, 62424, '1.0000', '1.6365', '1.6365', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120713, '2022-09-27', 2169, 113989, 6836, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120714, '2022-09-27', 9815, 113990, 6836, 62097, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '44.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120715, '2022-09-27', 2315, 113991, 6836, NULL, '2.0000', '0.7700', '0.7700', '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 (120716, '2022-09-27', 1855, 113992, 6836, 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 (120717, '2022-09-27', 2656, 113993, 6836, 63805, '1.0000', '1.9862', '1.9862', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120718, '2022-09-27', 9695, 113994, 6836, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120719, '2022-09-27', 2668, 113995, 6836, 60283, '1.0000', '10.6725', '10.6725', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120720, '2022-09-27', 9922, 113996, 6836, 58232, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120721, '2022-09-27', 1855, 113997, 6836, 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 (120722, '2022-09-27', 2004, 113998, 6836, 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 (120723, '2022-09-27', 2327, 113999, 6836, 39828, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120724, '2022-09-27', 9695, 114000, 6836, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120725, '2022-09-27', 2656, 114001, 6836, 63805, '1.0000', '1.9862', '1.9862', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120726, '2022-09-27', 9744, 114002, 6836, 52159, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120727, '2022-09-27', 2324, 114003, 6836, 63786, '1.0000', '20.0000', '20.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120728, '2022-09-27', 1999, 114004, 6836, 61257, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120729, '2022-09-27', 8165, 114005, 6837, 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 (120730, '2022-09-27', 9740, 114006, 6837, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120731, '2022-09-27', 1744, 114007, 6837, NULL, '1.0000', '208.2584', '208.2584', '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 (120732, '2022-09-27', 8482, 114008, 6837, 62827, '1.0000', '21.0100', '21.0100', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120733, '2022-09-27', 1772, 114009, 6837, 58175, '1.0000', '5.9758', '5.9758', '12.0000', '12.0000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120734, '2022-09-27', 2302, 114010, 6837, 63424, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120735, '2022-09-27', 8444, 114011, 6837, 62848, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120736, '2022-09-27', 1532, 114012, 6837, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120737, '2022-09-27', 10023, 114013, 6837, 62159, '1.0000', '1.9500', '1.9500', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120738, '2022-09-27', 9748, 114014, 6837, 47090, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 340);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120739, '2022-09-27', 1431, 114015, 6837, NULL, '1.0000', '39.8000', '39.8000', '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 (120740, '2022-09-27', 8979, 114016, 6837, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120741, '2022-09-27', 2169, 114017, 6837, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120742, '2022-09-27', 2275, 114018, 6837, NULL, '1.0000', '-26.2984', '-26.2984', '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 (120743, '2022-09-27', 9814, 114019, 6837, 50254, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120744, '2022-09-27', 2315, 114020, 6837, NULL, '2.0000', '0.7700', '0.7700', '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 (120745, '2022-09-27', 1761, 114021, 6837, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120746, '2022-09-27', 1528, 114022, 6837, NULL, '1.0000', '5.9193', '5.9193', '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 (120747, '2022-09-27', 2288, 114023, 6837, 62170, '1.0000', '11.5100', '11.5100', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120748, '2022-09-27', 2491, 114024, 6837, NULL, '1.0000', '166.6000', '166.6000', '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 (120749, '2022-09-27', 9736, 114025, 6837, NULL, '1.0000', '5.2083', '5.2083', '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 (120750, '2022-09-27', 1715, 114026, 6837, 63466, '1.0000', '7.8053', '7.8053', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120751, '2022-09-27', 8772, 114027, 6837, 63442, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120752, '2022-09-27', 1602, 114028, 6837, 62877, '2.0000', '7.8679', '7.8679', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120753, '2022-09-27', 9856, 114029, 6837, NULL, '1.0000', '-4.4000', '-4.4000', '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 (120754, '2022-09-27', 1863, 114030, 6837, 62841, '1.0000', '1.5054', '1.5054', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120755, '2022-09-27', 2263, 114031, 6837, 62876, '1.0000', '11.4942', '11.4942', '8.0000', '8.0000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120756, '2022-09-27', 1767, 114032, 6837, 13767, '1.0000', '5.7685', '5.7685', '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 (120757, '2022-09-27', 1771, 114033, 6837, 62823, '1.0000', '7.3777', '7.3777', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120758, '2022-09-27', 2315, 114034, 6837, NULL, '4.0000', '0.7700', '0.7700', '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 (120759, '2022-09-27', 8017, 114035, 6837, 62109, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120760, '2022-09-27', 2754, 114036, 6837, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (120761, '2022-09-26', 1671, 114037, 6830, 62225, '1.0000', '50.6370', '50.6370', '82.0000', '82.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120762, '2022-09-26', 2546, 114038, 6830, 49062, '1.0000', '12.3150', '12.3150', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120763, '2022-09-26', 1602, 114039, 6830, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120764, '2022-09-26', 2169, 114040, 6830, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120765, '2022-09-26', 2260, 114041, 6830, 62198, '2.0000', '4.8731', '4.8731', '7.0000', '7.0000', '21.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120766, '2022-09-26', 9788, 114042, 6830, 63953, '4.0000', '1.8869', '1.8869', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120767, '2022-09-26', 9821, 114043, 6830, 56978, '1.0000', '1.5013', '1.5013', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120768, '2022-09-26', 9775, 114044, 6830, 61699, '1.0000', '10.4000', '10.4000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120769, '2022-09-26', 1825, 114045, 6830, 63145, '1.0000', '5.0731', '5.0731', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120770, '2022-09-26', 2354, 114046, 6830, 62755, '1.0000', '5.6092', '5.6092', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120771, '2022-09-26', 9945, 114047, 6830, 63400, '1.0000', '13.5880', '13.5880', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120772, '2022-09-26', 8482, 114048, 6830, 63968, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120773, '2022-09-26', 1665, 114049, 6830, 62206, '2.0000', '1.3202', '1.3202', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120774, '2022-09-26', 2858, 114050, 6830, 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 (120775, '2022-09-26', 2315, 114051, 6830, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120776, '2022-09-26', 2342, 114052, 6830, 60051, '1.0000', '2.2694', '2.2694', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120777, '2022-09-26', 1666, 114053, 6830, 62216, '1.0000', '24.1019', '24.1019', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120778, '2022-09-26', 1935, 114054, 6830, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120779, '2022-09-26', 1831, 114055, 6830, 63827, '1.0000', '6.7067', '6.7067', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120780, '2022-09-26', 8638, 114056, 6830, 61638, '2.0000', '0.5064', '0.5064', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120781, '2022-09-26', 9788, 114057, 6830, 63953, '4.0000', '1.8869', '1.8869', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120782, '2022-09-26', 2352, 114058, 6830, 63957, '3.0000', '79.4905', '79.4905', '4.5000', '4.5000', '57.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120783, '2022-09-26', 2850, 114059, 6830, 61696, '2.0000', '7.4451', '7.4451', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120784, '2022-09-26', 2643, 114060, 6830, 63814, '1.0000', '1.0660', '1.0660', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120785, '2022-09-26', 9999, 114061, 6830, 60929, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120786, '2022-09-26', 2302, 114062, 6830, 63952, '1.0000', '5.4560', '5.4560', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120787, '2022-09-26', 1488, 114063, 6830, 63962, '1.0000', '7.5041', '7.5041', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120788, '2022-09-26', 7385, 114064, 6830, 55490, '2.0000', '2.6553', '2.6553', '4.5000', '4.5000', '40.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120789, '2022-09-26', 8337, 114065, 6830, NULL, '1.0000', '17.8000', '17.8000', '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 (120790, '2022-09-26', 9940, 114066, 6830, 63135, '1.0000', '8.5758', '8.5758', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120791, '2022-09-26', 1935, 114067, 6830, 63142, '2.0000', '1.1937', '1.1937', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120792, '2022-09-26', 2259, 114068, 6830, 62199, '1.0000', '22.6776', '22.6776', '34.0000', '34.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120793, '2022-09-26', 1665, 114069, 6830, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120794, '2022-09-26', 2858, 114070, 6830, 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 (120795, '2022-09-26', 1812, 114071, 6830, 63951, '1.0000', '9.0027', '9.0027', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120796, '2022-09-26', 1602, 114072, 6830, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120797, '2022-09-27', 2384, 114073, 6838, NULL, '1.0000', '-312.4992', '-312.4992', '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 (120798, '2022-09-27', 1779, 114074, 6838, 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 (120799, '2022-09-27', 2341, 114075, 6838, NULL, '1.0000', '5.4350', '5.4350', '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 (120800, '2022-09-27', 2102, 114076, 6838, NULL, '1.0000', '-20.1000', '-20.1000', '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 (120801, '2022-09-27', 1578, 114077, 6838, 64021, '1.0000', '3.2335', '3.2335', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120802, '2022-09-27', 1863, 114078, 6838, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '124.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120803, '2022-09-27', 2068, 114079, 6838, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120804, '2022-09-27', 9750, 114080, 6838, NULL, '1.0000', '2.3934', '2.3934', '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 (120805, '2022-09-27', 2054, 114081, 6838, 49628, '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 (120806, '2022-09-27', 2033, 114082, 6838, 57128, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120807, '2022-09-27', 7608, 114083, 6838, NULL, '1.0000', '6.9800', '6.9800', '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 (120808, '2022-09-27', 2054, 114084, 6838, 49628, '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 (120809, '2022-09-27', 1488, 114085, 6838, 62081, '1.0000', '4.2964', '4.2964', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120810, '2022-09-27', 1427, 114086, 6838, NULL, '1.0000', '20.4375', '20.4375', '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 (120811, '2022-09-27', 2410, 114087, 6838, 55535, '1.0000', '4.9430', '4.9430', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120812, '2022-09-27', 1864, 114088, 6838, 60356, '1.0000', '9.1500', '9.1500', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120813, '2022-09-27', 2315, 114089, 6838, NULL, '2.0000', '0.7700', '0.7700', '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 (120814, '2022-09-27', 2948, 114090, 6838, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '70.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120815, '2022-09-27', 1590, 114091, 6838, 63437, '1.0000', '2.4692', '2.4692', '4.0000', '4.0000', '44.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120816, '2022-09-27', 2315, 114092, 6838, NULL, '2.0000', '0.7700', '0.7700', '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 (120817, '2022-09-27', 2948, 114093, 6838, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '70.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120818, '2022-09-27', 2959, 114094, 6838, 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 (120819, '2022-09-27', 2275, 114095, 6838, NULL, '1.0000', '-26.2984', '-26.2984', '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 (120820, '2022-09-27', 2289, 114096, 6838, NULL, '1.0000', '0.7150', '0.7150', '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 (120821, '2022-09-27', 9740, 114097, 6838, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120822, '2022-09-27', 1665, 114098, 6838, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120823, '2022-09-27', 1410, 114099, 6838, NULL, '1.0000', '474.8205', '474.8205', '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 (120824, '2022-09-27', 2302, 114100, 6838, 63424, '2.0000', '3.0692', '3.0692', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120825, '2022-09-27', 2908, 114101, 6838, 55931, '1.0000', '0.3518', '0.3518', '0.5000', '0.5000', '33.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120826, '2022-09-27', 2315, 114102, 6838, NULL, '1.0000', '0.7700', '0.7700', '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 (120827, '2022-09-27', 1501, 114103, 6838, NULL, '1.0000', '-2.2016', '-2.2016', '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 (120828, '2022-09-27', 2521, 114104, 6838, 59701, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120829, '2022-09-27', 1339, 114105, 6838, 64013, '1.0000', '2.4387', '2.4387', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120830, '2022-09-27', 1812, 114106, 6838, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '17.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120831, '2022-09-27', 2287, 114107, 6838, 57710, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120832, '2022-09-27', 1455, 114108, 6839, 60340, '2.0000', '0.0795', '0.0795', '0.8000', '0.8000', '32.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120833, '2022-09-27', 2543, 114109, 6839, 60263, '1.0000', '3.3251', '3.3251', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120834, '2022-09-27', 1711, 114110, 6839, 62855, '1.0000', '11.0087', '11.0087', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120835, '2022-09-27', 1342, 114111, 6839, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '19.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120836, '2022-09-27', 2283, 114112, 6839, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120837, '2022-09-27', 9734, 114113, 6839, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '132.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120838, '2022-09-27', 1425, 114114, 6839, NULL, '1.0000', '10.4986', '10.4986', '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 (120839, '2022-09-27', 1715, 114115, 6839, 63466, '1.0000', '7.8053', '7.8053', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120840, '2022-09-27', 1946, 114116, 6839, NULL, '1.0000', '-16.6692', '-16.6692', '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 (120841, '2022-09-27', 1846, 114117, 6840, 12032, '-34.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 (120842, '2022-09-27', 1846, 114117, 6840, NULL, '35.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120843, '2022-09-27', 7592, 114118, 6840, NULL, '1.0000', '6.8000', '6.8000', '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 (120844, '2022-09-27', 2920, 114119, 6840, 18777, '-7.0000', '22.0000', '22.0000', '21.5000', '21.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 (120845, '2022-09-27', 2920, 114119, 6840, NULL, '9.0000', '22.0000', '22.0000', '21.5000', '21.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 (120846, '2022-09-27', 7780, 114120, 6840, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120847, '2022-09-27', 7672, 114121, 6840, NULL, '1.0000', '1.0200', '1.0200', '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 (120848, '2022-09-27', 8974, 114122, 6840, NULL, '1.0000', '5.4000', '5.4000', '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 (120849, '2022-09-27', 7859, 114123, 6840, NULL, '1.0000', '12.6300', '12.6300', '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 (120850, '2022-09-27', 8714, 114124, 6840, NULL, '1.0000', '5.2100', '5.2100', '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 (120851, '2022-09-27', 7708, 114125, 6840, NULL, '2.0000', '7.8000', '7.8000', '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 (120852, '2022-09-27', 7762, 114126, 6840, NULL, '1.0000', '1.5000', '1.5000', '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 (120853, '2022-09-27', 2315, 114127, 6840, 2735, '-685.0000', '0.3300', '0.3300', '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 (120854, '2022-09-27', 2315, 114127, 6840, NULL, '687.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-687.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120855, '2022-09-27', 7640, 114128, 6840, 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 (120856, '2022-09-27', 2652, 114129, 6840, 11135, '-3.0000', '12.5000', '12.5000', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120857, '2022-09-27', 2652, 114129, 6840, NULL, '4.0000', '12.5000', '12.5000', '14.0000', '14.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 (120858, '2022-09-27', 9274, 114130, 6840, NULL, '2.0000', '3.6000', '3.6000', '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 (120859, '2022-09-27', 2315, 114131, 6840, 2735, '-685.0000', '0.3300', '0.3300', '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 (120860, '2022-09-27', 2315, 114131, 6840, NULL, '689.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-689.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120861, '2022-09-27', 7611, 114132, 6840, NULL, '1.0000', '4.4000', '4.4000', '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 (120862, '2022-09-27', 8325, 114133, 6840, 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 (120863, '2022-09-27', 7774, 114134, 6840, NULL, '1.0000', '3.3000', '3.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 (120864, '2022-09-27', 2105, 114135, 6840, NULL, '1.0000', '1.3500', '1.3500', '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 (120865, '2022-09-27', 9956, 114136, 6840, NULL, '1.0000', '15.5000', '15.5000', '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 (120866, '2022-09-27', 8077, 114137, 6840, NULL, '1.0000', '3.6000', '3.6000', '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 (120867, '2022-09-27', 7872, 114138, 6840, 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 (120868, '2022-09-27', 8430, 114139, 6840, NULL, '1.0000', '32.0800', '32.0800', '46.6000', '46.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 (120869, '2022-09-27', 8032, 114140, 6840, NULL, '1.0000', '6.4400', '6.4400', '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 (120870, '2022-09-27', 7457, 114141, 6840, NULL, '2.0000', '6.0000', '6.0000', '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 (120871, '2022-09-27', 9729, 114142, 6840, NULL, '1.0000', '0.6200', '0.6200', '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 (120872, '2022-09-27', 7708, 114143, 6840, NULL, '1.0000', '7.8000', '7.8000', '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 (120873, '2022-09-27', 9736, 114144, 6840, NULL, '1.0000', '3.9100', '3.9100', '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 (120874, '2022-09-27', 1501, 114145, 6840, NULL, '1.0000', '2.0500', '2.0500', '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 (120875, '2022-09-27', 7664, 114146, 6840, NULL, '1.0000', '6.9400', '6.9400', '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 (120876, '2022-09-27', 7709, 114147, 6840, 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 (120877, '2022-09-27', 7518, 114148, 6840, NULL, '1.0000', '7.8200', '7.8200', '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 (120878, '2022-09-27', 8074, 114149, 6840, NULL, '1.0000', '25.3504', '25.3504', '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 (120879, '2022-09-27', 9098, 114150, 6840, NULL, '3.0000', '26.0000', '26.0000', '34.5000', '34.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 (120880, '2022-09-27', 8772, 114151, 6840, 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 (120881, '2022-09-27', 7385, 114152, 6840, NULL, '5.0000', '2.0000', '2.0000', '4.5000', '4.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 (120882, '2022-09-27', 7675, 114153, 6840, NULL, '1.0000', '11.4300', '11.4300', '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 (120883, '2022-09-27', 9751, 114154, 6840, 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 (120884, '2022-09-27', 7444, 114155, 6840, 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 (120885, '2022-09-27', 8243, 114156, 6840, NULL, '2.0000', '1.1400', '1.1400', '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 (120886, '2022-09-27', 7674, 114157, 6840, NULL, '1.0000', '1.3000', '1.3000', '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 (120887, '2022-09-27', 7917, 114158, 6840, NULL, '12.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (120888, '2022-09-27', 8359, 114159, 6840, 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 (120889, '2022-09-27', 7609, 114160, 6840, NULL, '1.0000', '4.3300', '4.3300', '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 (120890, '2022-09-27', 7715, 114161, 6840, NULL, '1.0000', '1.8900', '1.8900', '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 (120891, '2022-09-27', 9953, 114162, 6840, NULL, '1.0000', '8.9000', '8.9000', '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 (120892, '2022-09-27', 7317, 114163, 6840, NULL, '1.0000', '19.5500', '19.5500', '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 (120893, '2022-09-27', 1501, 114164, 6840, NULL, '1.0000', '2.0500', '2.0500', '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 (120894, '2022-09-27', 7504, 114165, 6840, NULL, '1.0000', '1.2400', '1.2400', '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 (120895, '2022-09-27', 9090, 114166, 6840, NULL, '1.0000', '14.0000', '14.0000', '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 (120896, '2022-09-27', 1585, 114167, 6840, 7602, '-14.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 (120897, '2022-09-27', 1585, 114167, 6840, NULL, '15.0000', '13.0000', '13.0000', '17.5000', '17.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 (120898, '2022-09-27', 8666, 114168, 6840, NULL, '1.0000', '0.4600', '0.4600', '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 (120899, '2022-09-27', 1557, 114169, 6840, 1628, '-21.0000', '7.9500', '7.9500', '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 (120900, '2022-09-27', 1557, 114169, 6840, NULL, '22.0000', '7.9500', '7.9500', '11.0000', '11.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120901, '2022-09-27', 8740, 114170, 6841, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120902, '2022-09-27', 1863, 114171, 6841, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '123.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120903, '2022-09-27', 1771, 114172, 6841, 64017, '1.0000', '7.7052', '7.7052', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120904, '2022-09-27', 9734, 114173, 6841, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '130.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120905, '2022-09-27', 1837, 114174, 6841, 63427, '2.0000', '1.6080', '1.6080', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120906, '2022-09-27', 1812, 114175, 6842, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '16.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120907, '2022-09-27', 2948, 114176, 6842, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '68.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120908, '2022-09-27', 9695, 114177, 6843, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120909, '2022-09-27', 2169, 114178, 6843, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120910, '2022-09-27', 1620, 114179, 6843, 62873, '1.0000', '2.3984', '2.3984', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120911, '2022-09-27', 9729, 114180, 6844, NULL, '1.0000', '0.6200', '0.6200', '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 (120912, '2022-09-27', 9695, 114181, 6844, NULL, '1.0000', '4.5000', '4.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 (120913, '2022-09-27', 9751, 114182, 6844, 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 (120914, '2022-09-27', 7385, 114183, 6844, NULL, '2.0000', '2.0000', '2.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 (120915, '2022-09-27', 7409, 114184, 6844, NULL, '2.0000', '4.3300', '4.3300', '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 (120916, '2022-09-27', 2061, 114185, 6844, 2164, '-16.0000', '10.9800', '10.9800', '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 (120917, '2022-09-27', 2061, 114185, 6844, NULL, '17.0000', '10.9800', '10.9800', '17.5000', '17.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 (120918, '2022-09-27', 8243, 114186, 6844, NULL, '1.0000', '1.1400', '1.1400', '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 (120919, '2022-09-27', 8765, 114187, 6844, NULL, '1.0000', '5.0000', '5.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 (120920, '2022-09-27', 9456, 114188, 6844, NULL, '1.0000', '3.3200', '3.3200', '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 (120921, '2022-09-27', 7672, 114189, 6844, NULL, '1.0000', '1.0200', '1.0200', '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 (120922, '2022-09-27', 8714, 114190, 6844, NULL, '1.0000', '5.2100', '5.2100', '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 (120923, '2022-09-27', 8689, 114191, 6844, 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 (120924, '2022-09-27', 1884, 114192, 6844, 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 (120925, '2022-09-27', 2642, 114193, 6845, 60910, '1.0000', '10.3548', '10.3548', '18.5000', '18.5000', '6.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120926, '2022-09-27', 1863, 114194, 6845, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120927, '2022-09-27', 8079, 114195, 6845, 62756, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120928, '2022-09-27', 2994, 114196, 6845, 62768, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120929, '2022-09-27', 1812, 114197, 6845, 63951, '1.0000', '9.0027', '9.0027', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120930, '2022-09-27', 7339, 114198, 6845, 56741, '10.0000', '-3.8719', '-3.8719', '0.9000', '0.9000', '59.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120931, '2022-09-27', 2486, 114199, 6845, 21821, '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 (120932, '2022-09-27', 2477, 114200, 6845, 5190, '1.0000', '8.0000', '8.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 (120933, '2022-09-27', 2169, 114201, 6845, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120934, '2022-09-27', 8638, 114202, 6845, 61638, '1.0000', '0.5064', '0.5064', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120935, '2022-09-27', 1912, 114203, 6845, 56898, '1.0000', '0.6773', '0.6773', '1.0000', '1.0000', '61.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120936, '2022-09-27', 7604, 114204, 6845, NULL, '1.0000', '4.3900', '4.3900', '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 (120937, '2022-09-27', 2277, 114205, 6845, 63403, '1.0000', '0.4620', '0.4620', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120938, '2022-09-27', 7411, 114206, 6845, NULL, '1.0000', '1.5882', '1.5882', '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 (120939, '2022-09-27', 7999, 114207, 6845, 63397, '1.0000', '-1.6754', '-1.6754', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120940, '2022-09-27', 7744, 114208, 6845, NULL, '1.0000', '2.9400', '2.9400', '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 (120941, '2022-09-27', 2352, 114209, 6845, 63957, '4.0000', '79.4905', '79.4905', '4.5000', '4.5000', '53.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120942, '2022-09-27', 2260, 114210, 6845, 62198, '2.0000', '4.8731', '4.8731', '7.0000', '7.0000', '19.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120943, '2022-09-27', 1908, 114211, 6845, 5510, '1.0000', '1.7500', '1.7500', '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 (120944, '2022-09-27', 2068, 114212, 6845, 63959, '1.0000', '13.7933', '13.7933', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120945, '2022-09-27', 1863, 114213, 6845, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120946, '2022-09-27', 2315, 114214, 6845, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120947, '2022-09-27', 7744, 114215, 6845, NULL, '1.0000', '2.9400', '2.9400', '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 (120948, '2022-09-27', 2289, 114216, 6845, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '63.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120949, '2022-09-27', 1841, 114217, 6845, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120950, '2022-09-27', 1840, 114218, 6845, 62749, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '97.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120951, '2022-09-27', 2251, 114219, 6845, 62728, '4.0000', '13.1955', '13.1955', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120952, '2022-09-27', 2285, 114220, 6845, 63374, '1.0000', '43.4765', '43.4765', '80.0000', '80.0000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120953, '2022-09-27', 1650, 114221, 6845, 63402, '1.0000', '15.9667', '15.9667', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120954, '2022-09-27', 9734, 114222, 6846, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '127.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120955, '2022-09-27', 2327, 114223, 6847, 39828, '1.0000', '3.8350', '3.8350', '6.0000', '6.0000', '30.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120956, '2022-09-27', 2655, 114224, 6847, 63804, '2.0000', '-873.2032', '-873.2032', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120957, '2022-09-27', 8881, 114225, 6848, NULL, '5.0000', '2.5000', '2.5000', '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 (120958, '2022-09-28', 1845, 114226, 6849, NULL, '1.0000', '53.9580', '53.9580', '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 (120959, '2022-09-28', 9979, 114227, 6849, NULL, '1.0000', '15.5300', '15.5300', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120960, '2022-09-28', 2384, 114228, 6849, NULL, '3.0000', '-312.4992', '-312.4992', '0.8000', '0.8000', '-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 (120961, '2022-09-28', 9814, 114229, 6849, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120962, '2022-09-28', 2004, 114230, 6849, 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 (120963, '2022-09-28', 1425, 114231, 6849, NULL, '2.0000', '10.4986', '10.4986', '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 (120964, '2022-09-28', 2109, 114232, 6849, NULL, '1.0000', '1.4840', '1.4840', '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 (120965, '2022-09-28', 7886, 114233, 6849, NULL, '1.0000', '14.5000', '14.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 (120966, '2022-09-28', 1499, 114234, 6849, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '44.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120967, '2022-09-28', 1760, 114235, 6849, NULL, '1.0000', '-0.1939', '-0.1939', '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 (120968, '2022-09-28', 1590, 114236, 6849, 63437, '2.0000', '2.4692', '2.4692', '4.0000', '4.0000', '42.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120969, '2022-09-28', 2068, 114237, 6849, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120970, '2022-09-28', 8979, 114238, 6849, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120971, '2022-09-28', 9821, 114239, 6849, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120972, '2022-09-28', 1863, 114240, 6849, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120973, '2022-09-28', 8773, 114241, 6849, 63451, '1.0000', '3.9349', '3.9349', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120974, '2022-09-28', 1845, 114242, 6850, NULL, '1.0000', '53.9580', '53.9580', '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 (120975, '2022-09-28', 9979, 114243, 6850, NULL, '1.0000', '15.5300', '15.5300', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120976, '2022-09-28', 2384, 114244, 6850, NULL, '3.0000', '-312.4992', '-312.4992', '0.8000', '0.8000', '-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 (120977, '2022-09-28', 9814, 114245, 6850, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120978, '2022-09-28', 2004, 114246, 6850, 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 (120979, '2022-09-28', 1425, 114247, 6850, NULL, '2.0000', '10.4986', '10.4986', '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 (120980, '2022-09-28', 2109, 114248, 6850, NULL, '1.0000', '1.4840', '1.4840', '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 (120981, '2022-09-28', 7886, 114249, 6850, NULL, '1.0000', '14.5000', '14.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 (120982, '2022-09-28', 1499, 114250, 6850, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '43.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120983, '2022-09-28', 1760, 114251, 6850, NULL, '1.0000', '-0.1939', '-0.1939', '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 (120984, '2022-09-28', 1590, 114252, 6850, 63437, '2.0000', '2.4692', '2.4692', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120985, '2022-09-28', 2068, 114253, 6850, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120986, '2022-09-28', 8979, 114254, 6850, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '40.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120987, '2022-09-28', 9821, 114255, 6850, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120988, '2022-09-28', 1863, 114256, 6850, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '119.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120989, '2022-09-28', 8773, 114257, 6850, 63451, '1.0000', '3.9349', '3.9349', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120990, '2022-09-28', 1386, 114258, 6850, 62404, '1.0000', '4.7366', '4.7366', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120991, '2022-09-28', 1602, 114259, 6850, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120992, '2022-09-28', 1863, 114260, 6850, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '120.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120993, '2022-09-28', 1620, 114261, 6850, 62873, '1.0000', '2.3984', '2.3984', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120994, '2022-09-28', 1955, 114262, 6850, 51501, '10.0000', '2.6400', '2.6400', '2.2000', '2.2000', '4.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120995, '2022-09-28', 2169, 114263, 6851, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120996, '2022-09-28', 1382, 114264, 6851, 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 (120997, '2022-09-28', 7608, 114265, 6852, NULL, '1.0000', '6.9800', '6.9800', '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 (120998, '2022-09-28', 1846, 114266, 6853, 60782, '1.0000', '13.0954', '13.0954', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120999, '2022-09-28', 7400, 114267, 6853, 60483, '1.0000', '19.9013', '19.9013', '31.5000', '31.5000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121000, '2022-09-28', 2061, 114268, 6853, 59322, '1.0000', '12.7640', '12.7640', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121001, '2022-09-28', 8233, 114269, 6853, 53621, '2.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121002, '2022-09-28', 2457, 114270, 6853, NULL, '1.0000', '22.2500', '22.2500', '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 (121003, '2022-09-28', 2321, 114271, 6853, 57427, '1.0000', '7.5000', '7.5000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121004, '2022-09-28', 7641, 114272, 6853, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '33.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121005, '2022-09-28', 7412, 114273, 6853, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121006, '2022-09-28', 8878, 114274, 6853, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121007, '2022-09-28', 7730, 114275, 6853, 62568, '8.0000', '0.1050', '0.1050', '0.2000', '0.2000', '73.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121008, '2022-09-28', 9894, 114276, 6853, 61804, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121009, '2022-09-28', 1947, 114277, 6853, 43122, '1.0000', '-122941.3106', '-122941.3106', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121010, '2022-09-28', 7819, 114278, 6853, 63914, '1.0000', '12.8990', '12.8990', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121011, '2022-09-28', 1330, 114279, 6853, 60473, '1.0000', '304.4706', '304.4706', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121012, '2022-09-28', 8074, 114280, 6853, 63930, '1.0000', '25.5912', '25.5912', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121013, '2022-09-28', 7514, 114281, 6853, 63938, '2.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121014, '2022-09-28', 10030, 114282, 6853, 63916, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121015, '2022-09-28', 8979, 114283, 6854, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121016, '2022-09-28', 9885, 114284, 6855, 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 (121017, '2022-09-28', 8677, 114285, 6855, NULL, '2.0000', '1.2800', '1.2800', '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 (121018, '2022-09-28', 1942, 114286, 6855, 5593, '-5.0000', '19.0000', '19.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 (121019, '2022-09-28', 1942, 114286, 6855, NULL, '6.0000', '19.0000', '19.0000', '28.0000', '28.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 (121020, '2022-09-28', 1754, 114287, 6855, 2171, '-4.0000', '13.4800', '13.4800', '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 (121021, '2022-09-28', 1754, 114287, 6855, NULL, '5.0000', '13.4800', '13.4800', '32.0000', '32.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 (121022, '2022-09-28', 2618, 114288, 6855, 9836, '-31.0000', '4.1000', '4.1000', '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 (121023, '2022-09-28', 2618, 114288, 6855, NULL, '32.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121024, '2022-09-28', 1450, 114289, 6855, 5570, '-64.0000', '61.1074', '61.1074', '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 (121025, '2022-09-28', 1450, 114289, 6855, NULL, '66.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-66.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121026, '2022-09-28', 2315, 114290, 6855, 2735, '-691.0000', '0.3300', '0.3300', '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 (121027, '2022-09-28', 2315, 114290, 6855, NULL, '692.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-692.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121028, '2022-09-28', 7496, 114291, 6855, NULL, '1.0000', '0.9600', '0.9600', '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 (121029, '2022-09-28', 1935, 114292, 6855, 5586, '-212.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 (121030, '2022-09-28', 1935, 114292, 6855, NULL, '213.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-213.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121031, '2022-09-28', 2656, 114293, 6855, NULL, '1.0000', '1.5000', '1.5000', '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 (121032, '2022-09-28', 2860, 114294, 6855, 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 (121033, '2022-09-28', 1620, 114295, 6855, 8955, '-92.0000', '408.8259', '408.8259', '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 (121034, '2022-09-28', 1620, 114295, 6855, NULL, '96.0000', '408.8259', '408.8259', '3.5000', '3.5000', '-96.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121035, '2022-09-28', 7353, 114296, 6855, NULL, '2.0000', '0.1900', '0.1900', '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 (121036, '2022-09-28', 1825, 114297, 6855, 11265, '-14.0000', '4.8000', '4.8000', '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 (121037, '2022-09-28', 1825, 114297, 6855, NULL, '15.0000', '4.8000', '4.8000', '10.0000', '10.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 (121038, '2022-09-28', 1832, 114298, 6855, 22282, '1.0000', '59.9000', '59.9000', '79.0000', '79.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 (121039, '2022-09-28', 7736, 114299, 6856, 60481, '1.0000', '25.2865', '25.2865', '27.0000', '27.0000', '5.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121040, '2022-09-28', 9283, 114300, 6856, NULL, '1.0000', '2.5000', '2.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 (121041, '2022-09-28', 7514, 114301, 6856, 63938, '2.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121042, '2022-09-28', 2643, 114302, 6856, 57522, '1.0000', '-0.1768', '-0.1768', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121043, '2022-09-28', 8773, 114303, 6857, 63451, '1.0000', '3.9349', '3.9349', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121044, '2022-09-28', 7376, 114304, 6858, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121045, '2022-09-28', 1501, 114305, 6858, NULL, '1.0000', '2.0500', '2.0500', '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 (121046, '2022-09-28', 3001, 114306, 6858, NULL, '6.0000', '1.5000', '1.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 (121047, '2022-09-28', 7852, 114307, 6858, NULL, '1.0000', '15.0000', '15.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 (121048, '2022-09-28', 2105, 114308, 6858, NULL, '2.0000', '1.3500', '1.3500', '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 (121049, '2022-09-28', 9788, 114309, 6858, NULL, '4.0000', '1.3000', '1.3000', '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 (121050, '2022-09-28', 9202, 114310, 6858, NULL, '2.0000', '3.5000', '3.5000', '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 (121051, '2022-09-28', 7675, 114311, 6858, NULL, '1.0000', '11.4300', '11.4300', '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 (121052, '2022-09-28', 7385, 114312, 6858, NULL, '2.0000', '2.0000', '2.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 (121053, '2022-09-28', 7886, 114313, 6858, NULL, '1.0000', '4.5000', '4.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 (121054, '2022-09-28', 2287, 114314, 6858, 2947, '-61.0000', '1.8000', '1.8000', '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 (121055, '2022-09-28', 2287, 114314, 6858, NULL, '65.0000', '1.8000', '1.8000', '4.5000', '4.5000', '-65.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121056, '2022-09-28', 7316, 114315, 6858, NULL, '10.0000', '9.5500', '9.5500', '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 (121057, '2022-09-28', 8135, 114316, 6858, NULL, '1.0000', '5.4500', '5.4500', '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 (121058, '2022-09-28', 9735, 114317, 6858, 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 (121059, '2022-09-28', 7642, 114318, 6858, NULL, '1.0000', '5.9200', '5.9200', '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 (121060, '2022-09-28', 7522, 114319, 6858, NULL, '1.0000', '9.7000', '9.7000', '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 (121061, '2022-09-28', 8324, 114320, 6858, NULL, '1.0000', '3.0000', '3.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 (121062, '2022-09-28', 7833, 114321, 6858, 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 (121063, '2022-09-28', 7954, 114322, 6858, NULL, '2.0000', '3.0000', '3.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 (121064, '2022-09-28', 8915, 114323, 6858, 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 (121065, '2022-09-28', 8889, 114324, 6858, NULL, '1.0000', '39.0000', '39.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 (121066, '2022-09-28', 7473, 114325, 6858, NULL, '1.0000', '0.5300', '0.5300', '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 (121067, '2022-09-28', 8172, 114326, 6858, NULL, '1.0000', '40.7000', '40.7000', '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 (121068, '2022-09-28', 7483, 114327, 6858, 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 (121069, '2022-09-28', 8753, 114328, 6858, 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 (121070, '2022-09-28', 1647, 114329, 6858, 3218, '-28.0000', '4.7200', '4.7200', '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 (121071, '2022-09-28', 1647, 114329, 6858, NULL, '29.0000', '4.7200', '4.7200', '10.0000', '10.0000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121072, '2022-09-28', 7609, 114330, 6858, NULL, '1.0000', '4.3300', '4.3300', '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 (121073, '2022-09-28', 10018, 114331, 6858, NULL, '1.0000', '0.8500', '0.8500', '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 (121074, '2022-09-28', 7674, 114332, 6858, NULL, '1.0000', '1.3000', '1.3000', '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 (121075, '2022-09-28', 7672, 114333, 6858, NULL, '1.0000', '1.0200', '1.0200', '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 (121076, '2022-09-28', 9272, 114334, 6858, NULL, '1.0000', '3.1000', '3.1000', '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 (121077, '2022-09-28', 9819, 114335, 6858, NULL, '1.0000', '3.6300', '3.6300', '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 (121078, '2022-09-28', 8208, 114336, 6858, NULL, '4.0000', '33.0000', '33.0000', '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 (121079, '2022-09-28', 8200, 114337, 6858, NULL, '1.0000', '6.2600', '6.2600', '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 (121080, '2022-09-28', 7743, 114338, 6858, NULL, '1.0000', '1.3100', '1.3100', '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 (121081, '2022-09-28', 1501, 114339, 6858, NULL, '1.0000', '2.0500', '2.0500', '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 (121082, '2022-09-28', 7431, 114340, 6858, NULL, '1.0000', '18.0000', '18.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 (121083, '2022-09-28', 7774, 114341, 6858, NULL, '1.0000', '3.3000', '3.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 (121084, '2022-09-28', 7514, 114342, 6858, NULL, '1.0000', '2.2500', '2.2500', '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 (121085, '2022-09-28', 7703, 114343, 6858, NULL, '1.0000', '22.9900', '22.9900', '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 (121086, '2022-09-28', 7799, 114344, 6858, NULL, '1.0000', '6.4000', '6.4000', '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 (121087, '2022-09-28', 8649, 114345, 6859, NULL, '1.0000', '20.9000', '20.9000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121088, '2022-09-28', 7872, 114346, 6860, 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 (121089, '2022-09-28', 8077, 114347, 6860, NULL, '1.0000', '3.6000', '3.6000', '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 (121090, '2022-09-28', 2105, 114348, 6860, NULL, '1.0000', '1.3500', '1.3500', '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 (121091, '2022-09-28', 9535, 114349, 6860, NULL, '1.0000', '3.4000', '3.4000', '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 (121092, '2022-09-28', 7786, 114350, 6860, NULL, '1.0000', '6.7700', '6.7700', '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 (121093, '2022-09-28', 2959, 114351, 6861, 35930, '1.0000', '4.6271', '4.6271', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121094, '2022-09-28', 2352, 114352, 6861, 63957, '1.0000', '79.4905', '79.4905', '4.5000', '4.5000', '52.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121095, '2022-09-28', 2237, 114353, 6861, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121096, '2022-09-28', 2277, 114354, 6861, 63403, '1.0000', '0.4620', '0.4620', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121097, '2022-09-28', 7639, 114355, 6861, NULL, '1.0000', '5.8250', '5.8250', '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 (121098, '2022-09-28', 1863, 114356, 6861, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121099, '2022-09-28', 2384, 114357, 6861, 62762, '4.0000', '0.4679', '0.4679', '0.8000', '0.8000', '73.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121100, '2022-09-28', 1772, 114358, 6861, 63369, '1.0000', '6.0812', '6.0812', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121101, '2022-09-28', 1411, 114359, 6861, 61606, '1.0000', '25.9672', '25.9672', '35.0000', '35.0000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121102, '2022-09-28', 2342, 114360, 6861, 60051, '2.0000', '2.2694', '2.2694', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121103, '2022-09-28', 1501, 114361, 6861, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '16.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121104, '2022-09-28', 7744, 114362, 6861, NULL, '1.0000', '2.9400', '2.9400', '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 (121105, '2022-09-28', 9648, 114363, 6861, 47957, '1.0000', '15.8313', '15.8313', '21.5000', '21.5000', '7.0000', 1, 0, NULL, 353);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121106, '2022-09-28', 8881, 114364, 6861, 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 (121107, '2022-09-28', 2656, 114365, 6861, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121108, '2022-09-28', 2270, 114366, 6861, 62269, '1.0000', '4.1408', '4.1408', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121109, '2022-09-28', 3033, 114367, 6861, 23995, '1.0000', '22.0000', '22.0000', '30.0000', '30.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 (121110, '2022-09-28', 2277, 114368, 6861, 63403, '2.0000', '0.4620', '0.4620', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121111, '2022-09-28', 1602, 114369, 6861, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '7.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121112, '2022-09-28', 8638, 114370, 6861, 61638, '1.0000', '0.5064', '0.5064', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121113, '2022-09-28', 2036, 114371, 6861, 63828, '1.0000', '10.5335', '10.5335', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121114, '2022-09-28', 2858, 114372, 6861, 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 (121115, '2022-09-28', 7877, 114373, 6861, NULL, '1.0000', '5.4000', '5.4000', '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 (121116, '2022-09-28', 2036, 114374, 6861, 63828, '2.0000', '10.5335', '10.5335', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121117, '2022-09-28', 2435, 114375, 6861, NULL, '1.0000', '10.0500', '10.0500', '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 (121118, '2022-09-28', 1888, 114376, 6861, 62740, '1.0000', '17.9375', '17.9375', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121119, '2022-09-28', 1754, 114377, 6861, 62239, '1.0000', '27.5713', '27.5713', '32.0000', '32.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121120, '2022-09-28', 1695, 114378, 6861, 63357, '1.0000', '24.5674', '24.5674', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121121, '2022-09-28', 1839, 114379, 6862, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (121122, '2022-09-28', 2354, 114380, 6862, NULL, '1.0000', '74.8792', '74.8792', '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 (121123, '2022-09-28', 1863, 114381, 6862, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '117.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121124, '2022-09-28', 1519, 114382, 6862, 59880, '1.0000', '3.9861', '3.9861', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121125, '2022-09-28', 2405, 114383, 6862, 37770, '3.0000', '1.2000', '1.2000', '1.8000', '1.8000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121126, '2022-09-28', 2948, 114384, 6862, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '67.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121127, '2022-09-28', 1855, 114385, 6862, NULL, '1.0000', '1.3493', '1.3493', '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 (121128, '2022-09-28', 2948, 114386, 6862, 62432, '4.0000', '1.1550', '1.1550', '3.5000', '3.5000', '64.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121129, '2022-09-28', 9862, 114387, 6862, 52197, '2.0000', '16.5000', '16.5000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121130, '2022-09-28', 7318, 114388, 6862, 64032, '1.0000', '14.1535', '14.1535', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121131, '2022-09-28', 9735, 114389, 6862, 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 (121132, '2022-09-28', 2656, 114390, 6862, 63805, '2.0000', '1.9862', '1.9862', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121133, '2022-09-28', 7398, 114391, 6862, NULL, '1.0000', '143.5000', '143.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 (121134, '2022-09-28', 8677, 114392, 6862, NULL, '2.0000', '1026.1382', '1026.1382', '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 (121135, '2022-09-28', 2295, 114393, 6862, 64001, '3.0000', '1.6538', '1.6538', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121136, '2022-09-28', 2617, 114394, 6862, NULL, '3.0000', '-5.4200', '-5.4200', '8.5000', '8.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 (121137, '2022-09-28', 2298, 114395, 6862, 61555, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121138, '2022-09-28', 2302, 114396, 6862, 63424, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121139, '2022-09-28', 8775, 114397, 6862, 61490, '1.0000', '2.3129', '2.3129', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121140, '2022-09-28', 2302, 114398, 6862, 63424, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121141, '2022-09-28', 1744, 114399, 6862, NULL, '1.0000', '208.2584', '208.2584', '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 (121142, '2022-09-28', 9482, 114400, 6862, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '249.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121143, '2022-09-28', 2283, 114401, 6862, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121144, '2022-09-28', 8425, 114402, 6862, NULL, '2.0000', '9.0000', '9.0000', '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 (121145, '2022-09-28', 7412, 114403, 6862, NULL, '1.0000', '8.3200', '8.3200', '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 (121146, '2022-09-28', 2169, 114404, 6862, 62844, '2.0000', '1.8223', '1.8223', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121147, '2022-09-28', 1837, 114405, 6862, 63427, '2.0000', '1.6080', '1.6080', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121148, '2022-09-28', 9942, 114406, 6862, NULL, '1.0000', '13.1000', '13.1000', '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 (121149, '2022-09-28', 7744, 114407, 6862, NULL, '1.0000', '2.5833', '2.5833', '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 (121150, '2022-09-28', 9482, 114408, 6862, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '249.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121151, '2022-09-28', 2682, 114409, 6862, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '10.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121152, '2022-09-28', 8979, 114410, 6862, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121153, '2022-09-28', 1311, 114411, 6862, NULL, '4.0000', '0.3700', '0.3700', '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 (121154, '2022-09-28', 1905, 114412, 6862, 62444, '3.0000', '0.5198', '0.5198', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121155, '2022-09-28', 1787, 114413, 6862, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121156, '2022-09-28', 2273, 114414, 6862, 64064, '1.0000', '3.0704', '3.0704', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121157, '2022-09-28', 9734, 114415, 6862, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '125.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121158, '2022-09-28', 9999, 114416, 6863, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121159, '2022-09-28', 2948, 114417, 6863, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '62.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121160, '2022-09-28', 9727, 114418, 6863, NULL, '1.0000', '6.7000', '6.7000', '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 (121161, '2022-09-28', 8208, 114419, 6863, NULL, '2.0000', '63.9119', '63.9119', '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 (121162, '2022-09-28', 2315, 114420, 6863, NULL, '2.0000', '0.7700', '0.7700', '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 (121163, '2022-09-28', 2169, 114421, 6863, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121164, '2022-09-28', 1910, 114422, 6863, NULL, '1.0000', '0.5756', '0.5756', '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 (121165, '2022-09-28', 1499, 114423, 6863, 62833, '4.0000', '0.5150', '0.5150', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121166, '2022-09-28', 9734, 114424, 6863, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '122.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121167, '2022-09-28', 2649, 114425, 6863, 62167, '1.0000', '99.3000', '99.3000', '131.0000', '131.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121168, '2022-09-28', 2491, 114426, 6863, 63984, '1.0000', '-193.4000', '-193.4000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121169, '2022-09-28', 2288, 114427, 6863, 62170, '1.0000', '11.5100', '11.5100', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121170, '2022-09-28', 2506, 114428, 6863, NULL, '1.0000', '-21.5754', '-21.5754', '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 (121171, '2022-09-28', 2506, 114429, 6863, NULL, '1.0000', '-21.5754', '-21.5754', '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 (121172, '2022-09-28', 2656, 114430, 6863, 63805, '1.0000', '1.9862', '1.9862', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121173, '2022-09-28', 2970, 114431, 6863, 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 (121174, '2022-09-28', 1855, 114432, 6863, NULL, '1.0000', '1.3493', '1.3493', '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 (121175, '2022-09-28', 2169, 114433, 6863, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121176, '2022-09-28', 9734, 114434, 6863, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '124.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121177, '2022-09-28', 2167, 114435, 6863, NULL, '1.0000', '-10.2844', '-10.2844', '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 (121178, '2022-09-29', 7453, 114436, 6864, 61868, '1.0000', '21.6500', '21.6500', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121179, '2022-09-29', 7762, 114437, 6864, 63885, '1.0000', '1.4064', '1.4064', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121180, '2022-09-29', 7641, 114438, 6864, 62312, '1.0000', '7.7059', '7.7059', '11.5000', '11.5000', '32.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121181, '2022-09-29', 7790, 114439, 6864, NULL, '4.0000', '-7.6667', '-7.6667', '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 (121182, '2022-09-29', 8277, 114440, 6864, 56147, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121183, '2022-09-29', 7753, 114441, 6864, 63873, '1.0000', '3.6939', '3.6939', '5.5000', '5.5000', '18.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121184, '2022-09-29', 9946, 114442, 6864, NULL, '1.0000', '13.6000', '13.6000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121185, '2022-09-29', 9190, 114443, 6864, 61759, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121186, '2022-09-29', 1916, 114444, 6864, 61903, '1.0000', '10.5682', '10.5682', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121187, '2022-09-29', 9747, 114445, 6864, 60779, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121188, '2022-09-29', 7380, 114446, 6864, 62514, '2.0000', '12.5004', '12.5004', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121189, '2022-09-29', 8548, 114447, 6864, NULL, '1.0000', '6.3499', '6.3499', '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 (121190, '2022-09-29', 7852, 114448, 6864, 61879, '1.0000', '24.7508', '24.7508', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121191, '2022-09-29', 7518, 114449, 6864, 63902, '1.0000', '9.5531', '9.5531', '14.5000', '14.5000', '26.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121192, '2022-09-29', 2287, 114450, 6864, 61863, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '39.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121193, '2022-09-29', 9291, 114451, 6864, 59160, '1.0000', '13.8444', '13.8444', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121194, '2022-09-29', 1837, 114452, 6865, 63427, '2.0000', '1.6080', '1.6080', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121195, '2022-09-29', 2379, 114453, 6865, NULL, '1.0000', '-154.5325', '-154.5325', '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 (121196, '2022-09-29', 1787, 114454, 6865, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121197, '2022-09-29', 1382, 114455, 6865, 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 (121198, '2022-09-29', 1342, 114456, 6865, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '18.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121199, '2022-09-29', 1837, 114457, 6865, 63427, '2.0000', '1.6080', '1.6080', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121200, '2022-09-29', 9770, 114458, 6865, 62093, '1.0000', '2.6571', '2.6571', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121201, '2022-09-29', 2295, 114459, 6865, 64001, '3.0000', '1.6538', '1.6538', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121202, '2022-09-29', 1310, 114460, 6865, 64020, '1.0000', '0.4288', '0.4288', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121203, '2022-09-29', 2061, 114461, 6865, NULL, '3.0000', '-39.6386', '-39.6386', '17.5000', '17.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 (121204, '2022-09-29', 2642, 114462, 6865, 63780, '1.0000', '8.7425', '8.7425', '18.5000', '18.5000', '8.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121205, '2022-09-29', 2020, 114463, 6865, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (121206, '2022-09-29', 2295, 114464, 6865, 64001, '3.0000', '1.6538', '1.6538', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121207, '2022-09-29', 2293, 114465, 6865, NULL, '3.0000', '1.1118', '1.1118', '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 (121208, '2022-09-29', 2010, 114466, 6865, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121209, '2022-09-29', 2416, 114467, 6865, 63803, '1.0000', '1.3811', '1.3811', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121210, '2022-09-29', 9914, 114468, 6865, 64029, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121211, '2022-09-29', 2895, 114469, 6865, NULL, '1.0000', '11.6000', '11.6000', '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 (121212, '2022-09-29', 2730, 114470, 6865, 63990, '1.0000', '2.2167', '2.2167', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121213, '2022-09-29', 9783, 114471, 6865, 64035, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121214, '2022-09-29', 2943, 114472, 6865, 61548, '1.0000', '3.8850', '3.8850', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121215, '2022-09-29', 3028, 114473, 6865, 63771, '1.0000', '0.7380', '0.7380', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121216, '2022-09-29', 2475, 114474, 6865, 63777, '1.0000', '9.5648', '9.5648', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121217, '2022-09-29', 9734, 114475, 6865, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '117.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121218, '2022-09-29', 1863, 114476, 6865, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121219, '2022-09-29', 8746, 114477, 6865, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121220, '2022-09-29', 8979, 114478, 6865, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121221, '2022-09-29', 2088, 114479, 6865, 62096, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121222, '2022-09-29', 1602, 114480, 6865, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121223, '2022-09-29', 8362, 114481, 6865, NULL, '10.0000', '4.1000', '4.1000', '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 (121224, '2022-09-29', 2169, 114482, 6865, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121225, '2022-09-29', 1804, 114483, 6865, NULL, '1.0000', '19.8100', '19.8100', '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 (121226, '2022-09-29', 9727, 114484, 6865, NULL, '1.0000', '6.7000', '6.7000', '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 (121227, '2022-09-29', 2169, 114485, 6865, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121228, '2022-09-29', 2315, 114486, 6865, NULL, '1.0000', '0.7700', '0.7700', '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 (121229, '2022-09-29', 7333, 114487, 6865, NULL, '1.0000', '13.5000', '13.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 (121230, '2022-09-29', 9539, 114488, 6865, 62391, '1.0000', '27.9000', '27.9000', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121231, '2022-09-29', 2252, 114489, 6865, 62865, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121232, '2022-09-29', 7926, 114490, 6865, 63992, '1.0000', '6.8265', '6.8265', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121233, '2022-09-29', 2893, 114491, 6865, NULL, '2.0000', '9.1280', '9.1280', '9.5000', '9.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 (121234, '2022-09-29', 1888, 114492, 6865, 62160, '1.0000', '19.1575', '19.1575', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121235, '2022-09-29', 1871, 114493, 6865, 64009, '8.0000', '-20821086.1374', '-20821086.1374', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121236, '2022-09-29', 1871, 114493, 6865, NULL, '2.0000', '-20821086.1374', '-20821086.1374', '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 (121237, '2022-09-29', 2767, 114494, 6865, 48890, '1.0000', '35.5000', '35.5000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121238, '2022-09-29', 1863, 114495, 6865, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121239, '2022-09-29', 2416, 114496, 6865, 63803, '1.0000', '1.3811', '1.3811', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121240, '2022-09-29', 8955, 114497, 6865, 59652, '1.0000', '18.0000', '18.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121241, '2022-09-29', 9999, 114498, 6865, 63443, '3.0000', '3.1000', '3.1000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121242, '2022-09-29', 8933, 114499, 6865, 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 (121243, '2022-09-29', 9213, 114500, 6865, 63455, '1.0000', '-5584.3740', '-5584.3740', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121244, '2022-09-29', 2948, 114501, 6865, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '61.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121245, '2022-09-29', 1602, 114502, 6865, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121246, '2022-09-29', 1628, 114503, 6865, 64005, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121247, '2022-09-29', 1358, 114504, 6865, 62090, '1.0000', '18.6100', '18.6100', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121248, '2022-09-29', 2303, 114505, 6865, NULL, '1.0000', '27.4455', '27.4455', '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 (121249, '2022-09-29', 2460, 114506, 6865, 63434, '1.0000', '34.0667', '34.0667', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121250, '2022-09-29', 9898, 114507, 6865, NULL, '10.0000', '3.0000', '3.0000', '4.0000', '4.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 (121251, '2022-09-29', 8677, 114508, 6865, NULL, '2.0000', '1026.1382', '1026.1382', '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 (121252, '2022-09-29', 9734, 114509, 6865, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '117.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121253, '2022-09-29', 2109, 114510, 6865, NULL, '3.0000', '1.4840', '1.4840', '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 (121254, '2022-09-29', 1812, 114511, 6865, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '15.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121255, '2022-09-29', 9777, 114512, 6865, NULL, '1.0000', '22.9900', '22.9900', '30.2300', '30.2300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121256, '2022-09-29', 2638, 114513, 6865, 60342, '1.0000', '24.5000', '24.5000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121257, '2022-09-29', 1711, 114514, 6865, 62855, '1.0000', '11.0087', '11.0087', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121258, '2022-09-29', 3033, 114515, 6866, NULL, '2.0000', '22.0000', '22.0000', '30.0000', '30.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 (121259, '2022-09-29', 1383, 114516, 6866, 63405, '1.0000', '5.7792', '5.7792', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121260, '2022-09-29', 2169, 114517, 6866, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121261, '2022-09-29', 3057, 114518, 6866, 54621, '1.0000', '3.2824', '3.2824', '4.5000', '4.5000', '26.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121262, '2022-09-29', 8482, 114519, 6866, 63968, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121263, '2022-09-29', 2891, 114520, 6866, 62221, '1.0000', '9.3077', '9.3077', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121264, '2022-09-29', 2061, 114521, 6866, 62734, '1.0000', '12.9386', '12.9386', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121265, '2022-09-29', 2858, 114522, 6866, 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 (121266, '2022-09-29', 1580, 114523, 6866, 61669, '2.0000', '1.3143', '1.3143', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121267, '2022-09-29', 2656, 114524, 6866, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121268, '2022-09-29', 2169, 114525, 6866, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121269, '2022-09-29', 2758, 114526, 6866, 49542, '1.0000', '1.2400', '1.2400', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121270, '2022-09-29', 10044, 114527, 6866, 63388, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121271, '2022-09-29', 1851, 114528, 6866, 61594, '1.0000', '13.6743', '13.6743', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121272, '2022-09-29', 2252, 114529, 6866, 62220, '1.0000', '12.9605', '12.9605', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121273, '2022-09-29', 1837, 114530, 6866, 62213, '4.0000', '0.6220', '0.6220', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121274, '2022-09-29', 1715, 114531, 6866, 63408, '1.0000', '7.4885', '7.4885', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121275, '2022-09-29', 7385, 114532, 6866, 55490, '2.0000', '2.6553', '2.6553', '4.5000', '4.5000', '38.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121276, '2022-09-29', 2906, 114533, 6866, 18670, '2.0000', '2.6000', '2.6000', '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 (121277, '2022-09-29', 1519, 114534, 6866, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121278, '2022-09-29', 2379, 114535, 6866, 63969, '1.0000', '2.1297', '2.1297', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121279, '2022-09-29', 8202, 114536, 6866, NULL, '1.0000', '1.6600', '1.6600', '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 (121280, '2022-09-29', 1383, 114537, 6866, 63405, '1.0000', '5.7792', '5.7792', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121281, '2022-09-29', 2255, 114538, 6866, 61634, '1.0000', '22.3464', '22.3464', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121282, '2022-09-29', 8482, 114539, 6866, 63968, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121283, '2022-09-29', 2302, 114540, 6866, 63952, '1.0000', '5.4560', '5.4560', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121284, '2022-09-29', 2004, 114541, 6866, 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 (121285, '2022-09-29', 2384, 114542, 6866, 62762, '2.0000', '0.4679', '0.4679', '0.8000', '0.8000', '71.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121286, '2022-09-29', 8878, 114543, 6867, 61810, '2.0000', '0.3106', '0.3106', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121287, '2022-09-29', 9024, 114544, 6867, 57463, '1.0000', '6.1800', '6.1800', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121288, '2022-09-29', 7664, 114545, 6867, 60488, '1.0000', '9.0194', '9.0194', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121289, '2022-09-29', 7787, 114546, 6867, NULL, '1.0000', '20.6816', '20.6816', '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 (121290, '2022-09-29', 7411, 114547, 6867, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121291, '2022-09-29', 7715, 114548, 6867, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121292, '2022-09-29', 7411, 114549, 6868, NULL, '2.0000', '1.3500', '1.3500', '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 (121293, '2022-09-29', 7925, 114550, 6868, NULL, '1.0000', '8.3000', '8.3000', '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 (121294, '2022-09-29', 9272, 114551, 6868, NULL, '1.0000', '3.1000', '3.1000', '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 (121295, '2022-09-29', 8186, 114552, 6868, NULL, '3.0000', '1.0800', '1.0800', '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 (121296, '2022-09-29', 7524, 114553, 6868, NULL, '1.0000', '11.9500', '11.9500', '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 (121297, '2022-09-29', 7832, 114554, 6868, NULL, '1.0000', '10.0000', '10.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 (121298, '2022-09-29', 7623, 114555, 6868, NULL, '1.0000', '47.0000', '47.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 (121299, '2022-09-29', 7317, 114556, 6868, NULL, '1.0000', '19.5500', '19.5500', '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 (121300, '2022-09-29', 9092, 114557, 6868, NULL, '10.0000', '5.2900', '5.2900', '0.5000', '0.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 (121301, '2022-09-29', 7996, 114558, 6868, NULL, '1.0000', '47.0000', '47.0000', '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 (121302, '2022-09-29', 7324, 114559, 6868, NULL, '1.0000', '4.0000', '4.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 (121303, '2022-09-29', 7411, 114560, 6868, NULL, '2.0000', '1.3500', '1.3500', '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 (121304, '2022-09-29', 1420, 114561, 6868, NULL, '1.0000', '1.2000', '1.2000', '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 (121305, '2022-09-29', 7741, 114562, 6868, NULL, '1.0000', '1.2000', '1.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 (121306, '2022-09-29', 1532, 114563, 6868, 20609, '3.0000', '0.8000', '0.8000', '2.0000', '2.0000', '31.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 (121307, '2022-09-29', 2287, 114564, 6868, 2947, '-65.0000', '1.8000', '1.8000', '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 (121308, '2022-09-29', 2287, 114564, 6868, NULL, '69.0000', '1.8000', '1.8000', '4.5000', '4.5000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121309, '2022-09-29', 7354, 114565, 6868, NULL, '2.0000', '0.3700', '0.3700', '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 (121310, '2022-09-29', 7411, 114566, 6868, NULL, '2.0000', '1.3500', '1.3500', '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 (121311, '2022-09-29', 8712, 114567, 6868, NULL, '1.0000', '7.0400', '7.0400', '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 (121312, '2022-09-29', 7707, 114568, 6868, NULL, '1.0000', '7.0000', '7.0000', '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 (121313, '2022-09-29', 1935, 114569, 6868, 5586, '-213.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 (121314, '2022-09-29', 1935, 114569, 6868, NULL, '214.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-214.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121315, '2022-09-29', 7473, 114570, 6868, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121316, '2022-09-29', 7444, 114571, 6868, 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 (121317, '2022-09-29', 8810, 114572, 6868, NULL, '1.0000', '1.6000', '1.6000', '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 (121318, '2022-09-29', 1841, 114573, 6868, NULL, '1.0000', '142.5780', '142.5780', '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 (121319, '2022-09-29', 2315, 114574, 6868, 2735, '-692.0000', '0.3300', '0.3300', '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 (121320, '2022-09-29', 2315, 114574, 6868, NULL, '693.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-693.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121321, '2022-09-29', 7915, 114575, 6868, NULL, '1.0000', '2.8000', '2.8000', '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 (121322, '2022-09-29', 8878, 114576, 6868, NULL, '2.0000', '6.6700', '6.6700', '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 (121323, '2022-09-29', 8186, 114577, 6868, NULL, '3.0000', '1.0800', '1.0800', '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 (121324, '2022-09-29', 7781, 114578, 6868, NULL, '6.0000', '4.2500', '4.2500', '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 (121325, '2022-09-29', 7753, 114579, 6868, NULL, '1.0000', '3.4000', '3.4000', '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 (121326, '2022-09-29', 8077, 114580, 6868, NULL, '1.0000', '3.6000', '3.6000', '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 (121327, '2022-09-29', 7385, 114581, 6868, NULL, '7.0000', '2.0000', '2.0000', '4.5000', '4.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 (121328, '2022-09-29', 9751, 114582, 6868, 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 (121329, '2022-09-29', 7819, 114583, 6868, NULL, '1.0000', '9.5000', '9.5000', '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 (121330, '2022-09-29', 8061, 114584, 6868, 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 (121331, '2022-09-29', 7460, 114585, 6868, NULL, '3.0000', '2.5000', '2.5000', '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 (121332, '2022-09-29', 8924, 114586, 6868, NULL, '1.0000', '4.5000', '4.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 (121333, '2022-09-29', 1904, 114587, 6868, 5442, '-109.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 (121334, '2022-09-29', 1904, 114587, 6868, NULL, '111.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-111.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121335, '2022-09-29', 8243, 114588, 6868, NULL, '2.0000', '1.1400', '1.1400', '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 (121336, '2022-09-29', 7674, 114589, 6868, NULL, '1.0000', '1.3000', '1.3000', '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 (121337, '2022-09-29', 7411, 114590, 6868, NULL, '1.0000', '1.3500', '1.3500', '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 (121338, '2022-09-29', 7636, 114591, 6868, NULL, '2.0000', '2.5000', '2.5000', '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 (121339, '2022-09-29', 7317, 114592, 6868, NULL, '1.0000', '19.5500', '19.5500', '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 (121340, '2022-09-29', 8482, 114593, 6868, NULL, '1.0000', '2.9500', '2.9500', '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 (121341, '2022-09-29', 8063, 114594, 6868, NULL, '2.0000', '1.6000', '1.6000', '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 (121342, '2022-09-29', 7730, 114595, 6868, NULL, '18.0000', '0.1000', '0.1000', '0.2000', '0.2000', '-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 (121343, '2022-09-29', 8878, 114596, 6868, NULL, '1.0000', '6.6700', '6.6700', '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 (121344, '2022-09-29', 2242, 114597, 6868, 3059, '-115.0000', '0.4800', '0.4800', '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 (121345, '2022-09-29', 2242, 114597, 6868, NULL, '118.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-118.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121346, '2022-09-29', 9092, 114598, 6868, NULL, '2.0000', '5.2900', '5.2900', '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 (121347, '2022-09-29', 7674, 114599, 6868, NULL, '1.0000', '1.3000', '1.3000', '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 (121348, '2022-09-29', 8362, 114600, 6868, NULL, '3.0000', '0.6000', '0.6000', '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 (121349, '2022-09-29', 7544, 114601, 6868, NULL, '3.0000', '9.4300', '9.4300', '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 (121350, '2022-09-29', 7524, 114602, 6868, NULL, '1.0000', '11.9500', '11.9500', '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 (121351, '2022-09-29', 8766, 114603, 6868, NULL, '1.0000', '5.8000', '5.8000', '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 (121352, '2022-09-29', 8046, 114604, 6868, NULL, '1.0000', '1.5000', '1.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 (121353, '2022-09-29', 7954, 114605, 6869, 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 (121354, '2022-09-29', 8384, 114606, 6870, 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 (121355, '2022-09-29', 8714, 114607, 6870, NULL, '1.0000', '5.2100', '5.2100', '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 (121356, '2022-09-29', 1602, 114608, 6870, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121357, '2022-09-29', 2315, 114609, 6870, NULL, '1.0000', '0.7700', '0.7700', '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 (121358, '2022-09-29', 1968, 114610, 6870, NULL, '1.0000', '55.1600', '55.1600', '103.3600', '103.3600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121359, '2022-09-29', 8878, 114611, 6870, 64000, '1.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121360, '2022-09-29', 2816, 114612, 6870, NULL, '8.0000', '0.8000', '0.8000', '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 (121361, '2022-09-29', 1812, 114613, 6870, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '14.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121362, '2022-09-29', 1499, 114614, 6870, 62833, '13.0000', '0.5150', '0.5150', '0.7000', '0.7000', '26.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121363, '2022-09-29', 1874, 114615, 6870, NULL, '1.0000', '-24.5000', '-24.5000', '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 (121364, '2022-09-29', 9917, 114616, 6870, 62372, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121365, '2022-09-29', 1905, 114617, 6870, 62444, '3.0000', '0.5198', '0.5198', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121366, '2022-09-29', 2964, 114618, 6870, NULL, '1.0000', '282096.6379', '282096.6379', '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 (121367, '2022-09-29', 8878, 114619, 6870, 64000, '1.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121368, '2022-09-29', 2169, 114620, 6870, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121369, '2022-09-29', 2315, 114621, 6870, NULL, '2.0000', '0.7700', '0.7700', '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 (121370, '2022-09-29', 8333, 114622, 6870, NULL, '1.0000', '3.6300', '3.6300', '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 (121371, '2022-09-29', 1411, 114623, 6870, 62192, '1.0000', '25.9995', '25.9995', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121372, '2022-09-29', 1783, 114624, 6870, 63417, '3.0000', '17.5778', '17.5778', '16.5000', '16.5000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121373, '2022-09-29', 2068, 114625, 6870, NULL, '1.0000', '14.1745', '14.1745', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121374, '2022-09-29', 1637, 114626, 6870, 64074, '1.0000', '23.4218', '23.4218', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121375, '2022-09-29', 2273, 114627, 6870, 64064, '1.0000', '3.0704', '3.0704', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121376, '2022-09-29', 1831, 114628, 6870, 63801, '1.0000', '9.7857', '9.7857', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121377, '2022-09-29', 2135, 114629, 6870, NULL, '1.0000', '-0.2588', '-0.2588', '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 (121378, '2022-09-29', 1427, 114630, 6870, NULL, '1.0000', '20.4375', '20.4375', '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 (121379, '2022-09-29', 1410, 114631, 6870, NULL, '1.0000', '474.8205', '474.8205', '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 (121380, '2022-09-29', 1760, 114632, 6870, NULL, '3.0000', '-0.1939', '-0.1939', '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 (121381, '2022-09-29', 1965, 114633, 6870, 60345, '1.0000', '13.8600', '13.8600', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121382, '2022-09-29', 1905, 114634, 6870, 62444, '5.0000', '0.5198', '0.5198', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121383, '2022-09-29', 7411, 114635, 6870, NULL, '1.0000', '1.2819', '1.2819', '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 (121384, '2022-09-29', 1529, 114636, 6870, 62426, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121385, '2022-09-29', 2169, 114637, 6870, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121386, '2022-09-29', 10037, 114638, 6870, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121387, '2022-09-29', 7411, 114639, 6870, NULL, '1.0000', '1.2819', '1.2819', '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 (121388, '2022-09-29', 2109, 114640, 6870, NULL, '1.0000', '1.4840', '1.4840', '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 (121389, '2022-09-29', 9482, 114641, 6870, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '247.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121390, '2022-09-29', 8596, 114642, 6870, NULL, '1.0000', '17.0000', '17.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 (121391, '2022-09-29', 8482, 114643, 6870, 64048, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121392, '2022-09-29', 2169, 114644, 6870, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121393, '2022-09-29', 7411, 114645, 6870, NULL, '1.0000', '1.2819', '1.2819', '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 (121394, '2022-09-29', 1368, 114646, 6870, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121395, '2022-09-29', 9219, 114647, 6870, 62077, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121396, '2022-09-29', 1590, 114648, 6870, 63437, '2.0000', '2.4692', '2.4692', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121397, '2022-09-29', 1912, 114649, 6870, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121398, '2022-09-29', 2109, 114650, 6870, NULL, '1.0000', '1.4840', '1.4840', '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 (121399, '2022-09-29', 9219, 114651, 6870, 62077, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121400, '2022-09-29', 9213, 114652, 6870, 63455, '1.0000', '-5584.3740', '-5584.3740', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121401, '2022-09-29', 2283, 114653, 6870, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121402, '2022-09-29', 2809, 114654, 6870, 40114, '1.0000', '28.0000', '28.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121403, '2022-09-29', 1425, 114655, 6870, NULL, '1.0000', '10.4986', '10.4986', '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 (121404, '2022-09-29', 9734, 114656, 6870, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '112.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121405, '2022-09-29', 7524, 114657, 6870, NULL, '1.0000', '11.9500', '11.9500', '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 (121406, '2022-09-29', 8677, 114658, 6870, NULL, '2.0000', '1026.1382', '1026.1382', '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 (121407, '2022-09-29', 1519, 114659, 6870, NULL, '2.0000', '3.9861', '3.9861', '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 (121408, '2022-09-29', 1398, 114660, 6870, 62145, '1.0000', '13.0286', '13.0286', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121409, '2022-09-29', 9815, 114661, 6870, 62097, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '43.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121410, '2022-09-29', 9683, 114662, 6870, 63449, '1.0000', '1.7434', '1.7434', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121411, '2022-09-29', 1905, 114663, 6870, 62444, '2.0000', '0.5198', '0.5198', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121412, '2022-09-29', 2109, 114664, 6870, NULL, '1.0000', '1.4840', '1.4840', '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 (121413, '2022-09-29', 1501, 114665, 6870, NULL, '1.0000', '-2.2016', '-2.2016', '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 (121414, '2022-09-29', 1665, 114666, 6870, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121415, '2022-09-29', 7857, 114667, 6870, NULL, '1.0000', '15.1300', '15.1300', '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 (121416, '2022-09-29', 9275, 114668, 6870, NULL, '1.0000', '6.3000', '6.3000', '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 (121417, '2022-09-29', 1912, 114669, 6870, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121418, '2022-09-29', 1785, 114670, 6870, 63430, '1.0000', '17.1478', '17.1478', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121419, '2022-09-29', 2036, 114671, 6870, 63795, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121420, '2022-09-29', 8743, 114672, 6870, 61267, '1.0000', '15.8400', '15.8400', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121421, '2022-09-29', 1871, 114673, 6870, NULL, '2.0000', '-20821086.1374', '-20821086.1374', '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 (121422, '2022-09-29', 2682, 114674, 6870, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121423, '2022-09-29', 10037, 114675, 6870, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121424, '2022-09-29', 1856, 114676, 6870, NULL, '1.0000', '155.0099', '155.0099', '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 (121425, '2022-09-29', 1646, 114677, 6871, 62802, '1.0000', '5.6857', '5.6857', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121426, '2022-09-29', 1383, 114678, 6871, 63405, '1.0000', '5.7792', '5.7792', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121427, '2022-09-29', 9740, 114679, 6871, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121428, '2022-09-29', 8077, 114680, 6871, 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 (121429, '2022-09-29', 9808, 114681, 6871, 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 (121430, '2022-09-29', 1432, 114682, 6871, 62775, '1.0000', '11.9326', '11.9326', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121431, '2022-09-29', 1427, 114683, 6871, 62776, '1.0000', '14.6874', '14.6874', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121432, '2022-09-29', 2459, 114684, 6871, 4831, '2.0000', '-0.0719', '-0.0719', '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 (121433, '2022-09-29', 1689, 114685, 6871, 63961, '1.0000', '14.6124', '14.6124', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121434, '2022-09-29', 7318, 114686, 6871, 63363, '1.0000', '11.5648', '11.5648', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121435, '2022-09-29', 7713, 114687, 6871, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (121436, '2022-09-29', 8444, 114688, 6871, 58612, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121437, '2022-09-29', 8638, 114689, 6871, 61638, '1.0000', '0.5064', '0.5064', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121438, '2022-09-29', 3016, 114690, 6871, 58589, '1.0000', '14.7950', '14.7950', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121439, '2022-09-29', 2916, 114691, 6871, 63960, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121440, '2022-09-29', 2479, 114692, 6871, 5192, '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 (121441, '2022-09-29', 2486, 114693, 6871, 21821, '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 (121442, '2022-09-29', 7886, 114694, 6871, NULL, '1.0000', '4.5000', '4.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 (121443, '2022-09-29', 1863, 114695, 6871, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121444, '2022-09-29', 1839, 114696, 6871, 62742, '1.0000', '8.0341', '8.0341', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121445, '2022-09-29', 7587, 114697, 6871, 63390, '1.0000', '7.4672', '7.4672', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121446, '2022-09-29', 2506, 114698, 6871, 60090, '1.0000', '4.3139', '4.3139', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121447, '2022-09-29', 1518, 114699, 6871, 61644, '1.0000', '29.9024', '29.9024', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121448, '2022-09-29', 1935, 114700, 6871, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121449, '2022-09-29', 2656, 114701, 6871, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121450, '2022-09-29', 7744, 114702, 6871, NULL, '1.0000', '2.9400', '2.9400', '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 (121451, '2022-09-29', 2260, 114703, 6871, 62198, '1.0000', '4.8731', '4.8731', '7.0000', '7.0000', '18.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121452, '2022-09-29', 9695, 114704, 6871, 63134, '1.0000', '5.8148', '5.8148', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121453, '2022-09-29', 2604, 114705, 6871, 40184, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121454, '2022-09-29', 2604, 114705, 6871, 24001, '2.0000', '90.0000', '90.0000', '110.0000', '110.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 (121455, '2022-09-29', 7385, 114706, 6871, 55490, '20.0000', '2.6553', '2.6553', '4.5000', '4.5000', '18.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121456, '2022-09-29', 9940, 114707, 6871, 63135, '1.0000', '8.5758', '8.5758', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121457, '2022-09-29', 2643, 114708, 6871, 63814, '2.0000', '1.0660', '1.0660', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121458, '2022-09-29', 2169, 114709, 6871, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121459, '2022-09-29', 8746, 114710, 6871, 58001, '2.0000', '65.4820', '65.4820', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121460, '2022-09-29', 1602, 114711, 6871, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121461, '2022-09-29', 2908, 114712, 6871, 62769, '10.0000', '0.2920', '0.2920', '0.5000', '0.5000', '23.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121462, '2022-09-29', 7639, 114713, 6871, NULL, '1.0000', '5.8250', '5.8250', '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 (121463, '2022-09-29', 1501, 114714, 6871, 62726, '2.0000', '60.5957', '60.5957', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121464, '2022-09-29', 2916, 114715, 6871, 63960, '2.0000', '15.2920', '15.2920', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121465, '2022-09-29', 2417, 114716, 6871, 58548, '6.0000', '15.8267', '15.8267', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121466, '2022-09-29', 7318, 114717, 6871, 63363, '2.0000', '11.5648', '11.5648', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121467, '2022-09-30', 2335, 114718, 6872, 62156, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121468, '2022-09-30', 1912, 114719, 6872, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121469, '2022-09-30', 2293, 114720, 6872, NULL, '3.0000', '1.1118', '1.1118', '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 (121470, '2022-09-30', 2109, 114721, 6872, NULL, '3.0000', '1.4840', '1.4840', '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 (121471, '2022-09-30', 9848, 114722, 6872, 58262, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121472, '2022-09-30', 1339, 114723, 6872, 64013, '1.0000', '2.4387', '2.4387', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121473, '2022-09-30', 2964, 114724, 6872, NULL, '1.0000', '282096.6379', '282096.6379', '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 (121474, '2022-09-30', 2379, 114725, 6872, NULL, '1.0000', '-154.5325', '-154.5325', '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 (121475, '2022-09-30', 1837, 114726, 6872, 63427, '1.0000', '1.6080', '1.6080', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121476, '2022-09-30', 9911, 114727, 6872, 55596, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121477, '2022-09-30', 2096, 114728, 6872, 58242, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121478, '2022-09-30', 7379, 114729, 6872, NULL, '1.0000', '12.5100', '12.5100', '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 (121479, '2022-09-30', 9775, 114730, 6872, NULL, '1.0000', '10.5927', '10.5927', '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 (121480, '2022-09-30', 9914, 114731, 6872, 64029, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121481, '2022-09-30', 2948, 114732, 6872, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '60.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121482, '2022-09-30', 9729, 114733, 6872, 62094, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121483, '2022-09-30', 8740, 114734, 6872, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121484, '2022-09-30', 9740, 114735, 6873, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121485, '2022-09-30', 1501, 114736, 6873, NULL, '1.0000', '-2.2016', '-2.2016', '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 (121486, '2022-09-30', 9927, 114737, 6873, 63474, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121487, '2022-09-30', 2237, 114738, 6874, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121488, '2022-09-30', 2068, 114739, 6874, NULL, '2.0000', '14.1745', '14.1745', '20.5000', '20.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 (121489, '2022-09-30', 2640, 114740, 6875, NULL, '1.0000', '7.0400', '7.0400', '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 (121490, '2022-09-30', 7316, 114741, 6876, 63993, '7.0000', '1.0371', '1.0371', '1.5000', '1.5000', '53.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121491, '2022-09-30', 1562, 114742, 6877, 64070, '1.0000', '11.4122', '11.4122', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121492, '2022-09-30', 1490, 114743, 6877, 19837, '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 (121493, '2022-09-30', 7348, 114744, 6878, 56003, '1.0000', '29.0648', '29.0648', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121494, '2022-09-30', 8413, 114745, 6878, 63868, '1.0000', '82.5000', '82.5000', '120.0000', '120.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121495, '2022-09-30', 9862, 114746, 6878, 52457, '1.0000', '16.5000', '16.5000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121496, '2022-09-30', 1947, 114747, 6878, 43122, '1.0000', '-122941.3106', '-122941.3106', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121497, '2022-09-30', 8712, 114748, 6878, NULL, '1.0000', '6.5750', '6.5750', '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 (121498, '2022-09-30', 9461, 114749, 6878, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121499, '2022-09-30', 8925, 114750, 6878, 59122, '1.0000', '3.5315', '3.5315', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121500, '2022-09-30', 7522, 114751, 6878, 60158, '1.0000', '-40.9136', '-40.9136', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121501, '2022-09-30', 2868, 114752, 6878, 56525, '1.0000', '7.8610', '7.8610', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121502, '2022-09-30', 7781, 114753, 6878, NULL, '2.0000', '9.6314', '9.6314', '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 (121503, '2022-09-30', 2284, 114754, 6878, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121504, '2022-09-30', 8061, 114755, 6878, 64101, '1.0000', '15.8686', '15.8686', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121505, '2022-09-30', 7980, 114756, 6878, NULL, '10.0000', '21379.0542', '21379.0542', '0.9000', '0.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 (121506, '2022-09-30', 9714, 114757, 6878, NULL, '2.0000', '28.1333', '28.1333', '39.0000', '39.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 (121507, '2022-09-30', 2638, 114758, 6878, NULL, '1.0000', '21.3800', '21.3800', '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 (121508, '2022-09-30', 1486, 114759, 6878, 48059, '1.0000', '17.2810', '17.2810', '22.5000', '22.5000', '0.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121509, '2022-09-30', 7822, 114760, 6878, 62297, '2.0000', '13.5985', '13.5985', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121510, '2022-09-30', 7877, 114761, 6878, NULL, '1.0000', '9.0538', '9.0538', '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 (121511, '2022-09-30', 8136, 114762, 6878, NULL, '1.0000', '-4.7978', '-4.7978', '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 (121512, '2022-09-30', 8457, 114763, 6878, NULL, '1.0000', '-8.0516', '-8.0516', '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 (121513, '2022-09-30', 7668, 114764, 6878, 63935, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121514, '2022-09-30', 8744, 114765, 6878, 62529, '1.0000', '4.1148', '4.1148', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121515, '2022-09-30', 1330, 114766, 6878, 60473, '1.0000', '304.4706', '304.4706', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121516, '2022-09-30', 2656, 114767, 6878, 64105, '1.0000', '1.7467', '1.7467', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121517, '2022-09-30', 7473, 114768, 6878, 61833, '1.0000', '0.5360', '0.5360', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121518, '2022-09-30', 8308, 114769, 6878, NULL, '1.0000', '933.9524', '933.9524', '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 (121519, '2022-09-30', 8011, 114770, 6878, 63850, '2.0000', '7.4721', '7.4721', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121520, '2022-09-30', 7890, 114771, 6878, 60396, '2.0000', '20.9275', '20.9275', '23.5000', '23.5000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121521, '2022-09-30', 2315, 114772, 6878, 61885, '3.0000', '0.7648', '0.7648', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121522, '2022-09-30', 7386, 114773, 6878, NULL, '1.0000', '-2.1000', '-2.1000', '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 (121523, '2022-09-30', 9399, 114774, 6878, NULL, '1.0000', '0.9803', '0.9803', '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 (121524, '2022-09-30', 7524, 114775, 6878, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121525, '2022-09-30', 1904, 114776, 6878, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121526, '2022-09-30', 8714, 114777, 6878, 63937, '1.0000', '5.5215', '5.5215', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121527, '2022-09-30', 7611, 114778, 6878, 63881, '1.0000', '12.2736', '12.2736', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121528, '2022-09-30', 7777, 114779, 6878, NULL, '1.0000', '-12.0600', '-12.0600', '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 (121529, '2022-09-30', 7518, 114780, 6878, 63902, '1.0000', '9.5531', '9.5531', '14.5000', '14.5000', '25.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121530, '2022-09-30', 7457, 114781, 6878, 62562, '3.0000', '5.0562', '5.0562', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121531, '2022-09-30', 8061, 114782, 6878, 64101, '1.0000', '15.8686', '15.8686', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121532, '2022-09-30', 9329, 114783, 6878, 64157, '1.0000', '-2672.8041', '-2672.8041', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121533, '2022-09-30', 8032, 114784, 6878, 61893, '1.0000', '6.9554', '6.9554', '9.5000', '9.5000', '20.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121534, '2022-09-30', 1342, 114785, 6879, 63366, '1.0000', '9.1316', '9.1316', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121535, '2022-09-30', 2289, 114786, 6879, 62763, '3.0000', '0.2648', '0.2648', '0.5000', '0.5000', '60.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121536, '2022-09-30', 1863, 114787, 6879, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121537, '2022-09-30', 1665, 114788, 6879, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121538, '2022-09-30', 1602, 114789, 6879, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121539, '2022-09-30', 2169, 114790, 6879, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121540, '2022-09-30', 2357, 114791, 6879, 58841, '1.0000', '4.3250', '4.3250', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121541, '2022-09-30', 2315, 114792, 6879, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121542, '2022-09-30', 1554, 114793, 6879, 56983, '1.0000', '3.1933', '3.1933', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121543, '2022-09-30', 1787, 114794, 6879, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '88.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121544, '2022-09-30', 8101, 114795, 6880, NULL, '3.0000', '1.9700', '1.9700', '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 (121545, '2022-09-30', 7334, 114796, 6880, NULL, '1.0000', '8.2300', '8.2300', '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 (121546, '2022-09-30', 9388, 114797, 6880, 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 (121547, '2022-09-30', 7411, 114798, 6880, NULL, '2.0000', '1.3500', '1.3500', '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 (121548, '2022-09-30', 8406, 114799, 6880, NULL, '1.0000', '6.7300', '6.7300', '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 (121549, '2022-09-30', 8482, 114800, 6880, NULL, '1.0000', '2.9500', '2.9500', '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 (121550, '2022-09-30', 7666, 114801, 6880, NULL, '1.0000', '3.6000', '3.6000', '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 (121551, '2022-09-30', 7317, 114802, 6880, NULL, '1.0000', '19.5500', '19.5500', '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 (121552, '2022-09-30', 7682, 114803, 6880, NULL, '1.0000', '7.7000', '7.7000', '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 (121553, '2022-09-30', 1501, 114804, 6880, NULL, '1.0000', '2.0500', '2.0500', '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 (121554, '2022-09-30', 8831, 114805, 6880, 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 (121555, '2022-09-30', 7444, 114806, 6880, NULL, '2.0000', '3.5100', '3.5100', '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 (121556, '2022-09-30', 7518, 114807, 6880, NULL, '1.0000', '7.8200', '7.8200', '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 (121557, '2022-09-30', 8208, 114808, 6880, NULL, '2.0000', '33.0000', '33.0000', '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 (121558, '2022-09-30', 8918, 114809, 6880, NULL, '1.0000', '1.0400', '1.0400', '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 (121559, '2022-09-30', 7674, 114810, 6880, NULL, '2.0000', '1.3000', '1.3000', '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 (121560, '2022-09-30', 7917, 114811, 6880, NULL, '2.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121561, '2022-09-30', 7981, 114812, 6880, NULL, '10.0000', '6.0000', '6.0000', '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 (121562, '2022-09-30', 7708, 114813, 6880, NULL, '1.0000', '7.8000', '7.8000', '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 (121563, '2022-09-30', 7910, 114814, 6880, NULL, '3.0000', '6.0000', '6.0000', '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 (121564, '2022-09-30', 9320, 114815, 6880, NULL, '1.0000', '8.9800', '8.9800', '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 (121565, '2022-09-30', 7380, 114816, 6880, NULL, '1.0000', '8.0000', '8.0000', '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 (121566, '2022-09-30', 2069, 114817, 6880, 5571, '-24.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121567, '2022-09-30', 2069, 114817, 6880, NULL, '25.0000', '2.0400', '2.0400', '14.0000', '14.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 (121568, '2022-09-30', 2315, 114818, 6880, 2735, '-693.0000', '0.3300', '0.3300', '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 (121569, '2022-09-30', 2315, 114818, 6880, NULL, '698.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-698.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121570, '2022-09-30', 7591, 114819, 6880, NULL, '1.0000', '2.7500', '2.7500', '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 (121571, '2022-09-30', 9810, 114820, 6880, NULL, '1.0000', '9.8000', '9.8000', '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 (121572, '2022-09-30', 1935, 114821, 6880, 5586, '-214.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 (121573, '2022-09-30', 1935, 114821, 6880, NULL, '215.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-215.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121574, '2022-09-30', 7411, 114822, 6880, NULL, '1.0000', '1.3500', '1.3500', '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 (121575, '2022-09-30', 7712, 114823, 6880, NULL, '1.0000', '26.0000', '26.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 (121576, '2022-09-30', 9984, 114824, 6880, 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 (121577, '2022-09-30', 8046, 114825, 6880, NULL, '1.0000', '1.5000', '1.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 (121578, '2022-09-30', 7730, 114826, 6880, NULL, '10.0000', '0.1000', '0.1000', '0.2000', '0.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 (121579, '2022-09-30', 7459, 114827, 6880, NULL, '5.0000', '2.3500', '2.3500', '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 (121580, '2022-09-30', 8482, 114828, 6880, NULL, '1.0000', '2.9500', '2.9500', '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 (121581, '2022-09-30', 7674, 114829, 6880, NULL, '1.0000', '1.3000', '1.3000', '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 (121582, '2022-09-30', 7518, 114830, 6880, NULL, '1.0000', '7.8200', '7.8200', '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 (121583, '2022-09-30', 2295, 114831, 6881, 2954, '-83.0000', '0.9600', '0.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 (121584, '2022-09-30', 2295, 114831, 6881, NULL, '89.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-89.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121585, '2022-09-30', 9856, 114832, 6881, NULL, '1.0000', '1.6000', '1.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 (121586, '2022-09-30', 1760, 114833, 6881, 3170, '-4.0000', '111.8384', '111.8384', '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 (121587, '2022-09-30', 1760, 114833, 6881, NULL, '5.0000', '111.8384', '111.8384', '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 (121588, '2022-09-30', 8417, 114834, 6881, 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 (121589, '2022-09-30', 8184, 114835, 6882, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (121590, '2022-09-30', 2293, 114836, 6882, NULL, '3.0000', '1.1118', '1.1118', '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 (121591, '2022-09-30', 8677, 114837, 6882, NULL, '2.0000', '1026.1382', '1026.1382', '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 (121592, '2022-09-30', 2247, 114838, 6882, 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 (121593, '2022-09-30', 1912, 114839, 6882, 62852, '2.0000', '0.6540', '0.6540', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121594, '2022-09-30', 7709, 114840, 6882, 51700, '2.0000', '3.6111', '3.6111', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121595, '2022-09-30', 7411, 114841, 6882, NULL, '2.0000', '1.2819', '1.2819', '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 (121596, '2022-09-30', 2413, 114842, 6882, NULL, '1.0000', '1.0500', '1.0500', '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 (121597, '2022-09-30', 8384, 114843, 6882, 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 (121598, '2022-09-30', 8184, 114844, 6882, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (121599, '2022-09-30', 9943, 114845, 6882, NULL, '1.0000', '16.8000', '16.8000', '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 (121600, '2022-09-30', 2491, 114846, 6882, 63984, '1.0000', '-193.4000', '-193.4000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121601, '2022-09-30', 9496, 114847, 6882, NULL, '1.0000', '-5.5750', '-5.5750', '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 (121602, '2022-09-30', 2169, 114848, 6882, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121603, '2022-09-30', 2102, 114849, 6882, NULL, '1.0000', '-20.1000', '-20.1000', '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 (121604, '2022-09-30', 2410, 114850, 6882, 55535, '1.0000', '4.9430', '4.9430', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121605, '2022-09-30', 1446, 114851, 6882, NULL, '1.0000', '6.6040', '6.6040', '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 (121606, '2022-09-30', 1857, 114852, 6882, 59835, '1.0000', '73.1000', '73.1000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121607, '2022-09-30', 2054, 114853, 6882, 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 (121608, '2022-09-30', 1602, 114854, 6882, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121609, '2022-09-30', 8384, 114855, 6882, 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 (121610, '2022-09-30', 9734, 114856, 6882, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '109.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121611, '2022-09-30', 2642, 114857, 6882, 63780, '1.0000', '8.7425', '8.7425', '18.5000', '18.5000', '7.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121612, '2022-09-30', 1841, 114858, 6882, NULL, '2.0000', '0.7630', '0.7630', '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 (121613, '2022-09-30', 2289, 114859, 6882, NULL, '1.0000', '0.7150', '0.7150', '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 (121614, '2022-09-30', 1840, 114860, 6882, NULL, '1.0000', '0.2400', '0.2400', '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 (121615, '2022-09-30', 2444, 114861, 6882, 63776, '1.0000', '12.4109', '12.4109', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121616, '2022-09-30', 2088, 114862, 6882, 51347, '2.0000', '2.5728', '2.5728', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121617, '2022-09-30', 9470, 114863, 6882, NULL, '1.0000', '6.1468', '6.1468', '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 (121618, '2022-09-30', 2352, 114864, 6882, NULL, '5.0000', '313.7364', '313.7364', '4.5000', '4.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 (121619, '2022-09-30', 9734, 114865, 6882, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '111.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121620, '2022-09-30', 2643, 114866, 6882, 63446, '1.0000', '1.1168', '1.1168', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121621, '2022-09-30', 1429, 114867, 6882, 48928, '1.0000', '13.1270', '13.1270', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121622, '2022-09-30', 2959, 114868, 6882, 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 (121623, '2022-09-30', 2260, 114869, 6882, 62140, '1.0000', '5.0048', '5.0048', '7.0000', '7.0000', '13.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121624, '2022-09-30', 9729, 114870, 6882, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121625, '2022-09-30', 2038, 114871, 6882, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121626, '2022-09-30', 1855, 114872, 6882, NULL, '1.0000', '1.3493', '1.3493', '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 (121627, '2022-09-30', 2916, 114873, 6882, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (121628, '2022-09-30', 2260, 114874, 6882, 62140, '4.0000', '5.0048', '5.0048', '7.0000', '7.0000', '10.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121629, '2022-09-30', 2293, 114875, 6882, NULL, '3.0000', '1.1118', '1.1118', '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 (121630, '2022-09-30', 1528, 114876, 6882, NULL, '1.0000', '5.9193', '5.9193', '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 (121631, '2022-09-30', 1761, 114877, 6882, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121632, '2022-09-30', 8740, 114878, 6882, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121633, '2022-09-30', 2643, 114879, 6882, 63446, '1.0000', '1.1168', '1.1168', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121634, '2022-09-30', 2167, 114880, 6882, NULL, '1.0000', '-10.2844', '-10.2844', '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 (121635, '2022-09-30', 9482, 114881, 6882, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '246.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121636, '2022-09-30', 9457, 114882, 6882, NULL, '1.0000', '2.9800', '2.9800', '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 (121637, '2022-09-30', 2821, 114883, 6882, NULL, '1.0000', '-8.7105', '-8.7105', '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 (121638, '2022-09-30', 9961, 114884, 6882, 63772, '1.0000', '22.9824', '22.9824', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121639, '2022-09-30', 2315, 114885, 6882, NULL, '1.0000', '0.7700', '0.7700', '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 (121640, '2022-09-30', 2169, 114886, 6882, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121641, '2022-09-30', 2354, 114887, 6882, NULL, '1.0000', '74.8792', '74.8792', '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 (121642, '2022-09-30', 2167, 114888, 6882, NULL, '1.0000', '-10.2844', '-10.2844', '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 (121643, '2022-09-30', 1519, 114889, 6882, NULL, '1.0000', '3.9861', '3.9861', '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 (121644, '2022-09-30', 9482, 114890, 6882, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '246.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121645, '2022-09-30', 2655, 114891, 6883, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121646, '2022-09-30', 1528, 114892, 6883, 60059, '5.0000', '33.2874', '33.2874', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121647, '2022-09-30', 2455, 114893, 6883, 60002, '1.0000', '7.3019', '7.3019', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121648, '2022-09-30', 2503, 114894, 6883, 61296, '1.0000', '33.1971', '33.1971', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121649, '2022-09-30', 9411, 114895, 6883, NULL, '1.0000', '6.8700', '6.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 (121650, '2022-09-30', 7639, 114896, 6883, NULL, '1.0000', '5.8250', '5.8250', '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 (121651, '2022-09-30', 1811, 114897, 6883, 63372, '1.0000', '-112.2073', '-112.2073', '30.0000', '30.0000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121652, '2022-09-30', 1446, 114898, 6883, 46043, '1.0000', '4.4636', '4.4636', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 338);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121653, '2022-09-30', 8881, 114899, 6883, 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 (121654, '2022-09-30', 2614, 114900, 6883, 56977, '1.0000', '53.7114', '53.7114', '38.5000', '38.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121655, '2022-09-30', 1670, 114901, 6883, 62226, '1.0000', '37.8807', '37.8807', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121656, '2022-09-30', 1602, 114902, 6883, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121657, '2022-09-30', 7999, 114903, 6883, 63397, '1.0000', '-1.6754', '-1.6754', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121658, '2022-09-30', 2352, 114904, 6883, 63957, '3.0000', '79.4905', '79.4905', '4.5000', '4.5000', '49.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121659, '2022-09-30', 8773, 114905, 6883, NULL, '1.0000', '-92.4961', '-92.4961', '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 (121660, '2022-09-30', 7333, 114906, 6883, NULL, '2.0000', '3.8000', '3.8000', '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 (121661, '2022-09-30', 2428, 114907, 6883, 58541, '1.0000', '7.3188', '7.3188', '22.0800', '22.0800', '2.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121662, '2022-09-30', 9961, 114908, 6883, 58543, '1.0000', '18.5000', '18.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 503);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121663, '2022-09-30', 7524, 114909, 6883, NULL, '1.0000', '11.9500', '11.9500', '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 (121664, '2022-09-30', 2297, 114910, 6883, 62770, '1.0000', '8.9722', '8.9722', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121665, '2022-09-30', 1337, 114911, 6883, 34683, '1.0000', '2.2526', '2.2526', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121666, '2022-09-30', 2503, 114912, 6883, 61296, '1.0000', '33.1971', '33.1971', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121667, '2022-09-30', 2916, 114913, 6883, 63960, '2.0000', '15.2920', '15.2920', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121668, '2022-09-30', 2655, 114914, 6883, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121669, '2022-10-01', 1839, 114915, 6884, 62742, '1.0000', '8.0341', '8.0341', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121670, '2022-10-01', 1863, 114916, 6884, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121671, '2022-10-01', 7922, 114917, 6884, 54656, '1.0000', '4.2000', '4.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121672, '2022-10-01', 9891, 114918, 6884, 58790, '1.0000', '17.4000', '17.4000', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121673, '2022-10-01', 1760, 114919, 6884, 58781, '2.0000', '0.8900', '0.8900', '1.0000', '1.0000', '64.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121674, '2022-10-01', 2821, 114920, 6884, 62815, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121675, '2022-10-01', 1662, 114921, 6884, 62759, '1.0000', '52.2605', '52.2605', '86.0000', '86.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121676, '2022-10-01', 2296, 114922, 6884, 58655, '2.0000', '13.7602', '13.7602', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121677, '2022-10-01', 2545, 114923, 6884, 61664, '3.0000', '7.9431', '7.9431', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121678, '2022-10-01', 2169, 114924, 6884, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121679, '2022-10-01', 2547, 114925, 6884, 58800, '1.0000', '10.6134', '10.6134', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121680, '2022-10-01', 2521, 114926, 6884, 40375, '1.0000', '28.9585', '28.9585', '16.0000', '16.0000', '11.0000', 1, 0, NULL, 267);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121681, '2022-10-01', 2655, 114927, 6884, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121682, '2022-10-01', 1999, 114928, 6884, 60531, '1.0000', '7.5395', '7.5395', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121683, '2022-10-01', 9743, 114929, 6884, 55477, '1.0000', '12.3429', '12.3429', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121684, '2022-10-01', 8260, 114930, 6884, NULL, '1.0000', '12.0000', '12.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 (121685, '2022-10-01', 2559, 114931, 6884, 58809, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121686, '2022-10-01', 7608, 114932, 6884, NULL, '1.0000', '6.9800', '6.9800', '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 (121687, '2022-10-01', 9711, 114933, 6884, 59627, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 515);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121688, '2022-10-01', 8746, 114934, 6884, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121689, '2022-10-01', 9740, 114935, 6884, 56933, '1.0000', '0.6636', '0.6636', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121690, '2022-10-01', 1874, 114936, 6884, NULL, '1.0000', '10.3500', '10.3500', '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 (121691, '2022-10-01', 1912, 114937, 6884, 56898, '2.0000', '0.6773', '0.6773', '1.0000', '1.0000', '59.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121692, '2022-10-01', 1602, 114938, 6884, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121693, '2022-10-01', 2656, 114939, 6884, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121694, '2022-10-01', 1904, 114940, 6885, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121695, '2022-10-01', 7959, 114941, 6885, NULL, '2.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121696, '2022-10-01', 2315, 114942, 6885, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121697, '2022-10-01', 8596, 114943, 6885, NULL, '1.0000', '71.0634', '71.0634', '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 (121698, '2022-10-01', 7412, 114944, 6885, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121699, '2022-10-01', 7482, 114945, 6885, 63869, '1.0000', '4.8628', '4.8628', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121700, '2022-10-01', 8187, 114946, 6885, 61864, '4.0000', '-28.2100', '-28.2100', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121701, '2022-10-01', 7780, 114947, 6885, 63912, '1.0000', '15.9431', '15.9431', '20.5000', '20.5000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121702, '2022-10-01', 7444, 114948, 6885, 64173, '1.0000', '4.1571', '4.1571', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121703, '2022-10-01', 9747, 114949, 6885, 64178, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121704, '2022-10-01', 2100, 114950, 6885, 63909, '1.0000', '2.5550', '2.5550', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121705, '2022-10-01', 8766, 114951, 6885, NULL, '1.0000', '5.8000', '5.8000', '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 (121706, '2022-10-01', 9177, 114952, 6885, 61839, '10.0000', '5.6559', '5.6559', '1.2000', '1.2000', '55.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121707, '2022-10-01', 7380, 114953, 6885, 62514, '1.0000', '12.5004', '12.5004', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121708, '2022-10-01', 7490, 114954, 6885, 60806, '2.0000', '2.2232', '2.2232', '0.5000', '0.5000', '128.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121709, '2022-10-01', 7639, 114955, 6885, 61814, '1.0000', '7.0556', '7.0556', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121710, '2022-10-01', 7412, 114956, 6885, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121711, '2022-10-01', 8097, 114957, 6885, 61845, '3.0000', '14.9186', '14.9186', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121712, '2022-10-01', 8677, 114958, 6885, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121713, '2022-10-01', 8969, 114959, 6885, NULL, '1.0000', '2.0000', '2.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 (121714, '2022-10-01', 7425, 114960, 6885, 53524, '1.0000', '53.0446', '53.0446', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121715, '2022-10-01', 8596, 114961, 6885, NULL, '1.0000', '71.0634', '71.0634', '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 (121716, '2022-10-01', 7967, 114962, 6885, 63898, '1.0000', '7.3483', '7.3483', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121717, '2022-10-01', 9942, 114963, 6885, 64197, '1.0000', '10.5955', '10.5955', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121718, '2022-10-01', 9983, 114964, 6885, 61818, '1.0000', '5.4000', '5.4000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121719, '2022-10-01', 9791, 114965, 6885, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '87.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121720, '2022-10-01', 8203, 114966, 6885, 57407, '7.0000', '2.0908', '2.0908', '0.7000', '0.7000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121721, '2022-10-01', 8061, 114967, 6885, 64101, '1.0000', '15.8686', '15.8686', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121722, '2022-10-01', 8596, 114968, 6885, NULL, '2.0000', '71.0634', '71.0634', '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 (121723, '2022-10-01', 7824, 114969, 6885, 63915, '1.0000', '7.7000', '7.7000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121724, '2022-10-01', 7756, 114970, 6885, 64213, '1.0000', '34.9637', '34.9637', '53.5000', '53.5000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121725, '2022-10-01', 7639, 114971, 6885, 61814, '1.0000', '7.0556', '7.0556', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121726, '2022-10-01', 7719, 114972, 6885, 60808, '1.0000', '8.1122', '8.1122', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121727, '2022-10-01', 1975, 114973, 6885, 57529, '1.0000', '12.5020', '12.5020', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 496);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121728, '2022-10-01', 9092, 114974, 6885, 64099, '1.0000', '0.3187', '0.3187', '0.5000', '0.5000', '299.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121729, '2022-10-01', 7674, 114975, 6885, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121730, '2022-10-01', 9933, 114976, 6885, 56715, '1.0000', '16.9000', '16.9000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121731, '2022-10-01', 7411, 114977, 6885, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121732, '2022-10-01', 7917, 114978, 6885, 61747, '8.0000', '2.5067', '2.5067', '0.7000', '0.7000', '41.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121733, '2022-10-01', 7411, 114979, 6885, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121734, '2022-10-01', 7639, 114980, 6885, 61814, '1.0000', '7.0556', '7.0556', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121735, '2022-10-01', 7672, 114981, 6885, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121736, '2022-10-01', 1904, 114982, 6885, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121737, '2022-10-01', 1947, 114983, 6885, 43122, '1.0000', '-122941.3106', '-122941.3106', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121738, '2022-10-01', 2100, 114984, 6885, 63909, '1.0000', '2.5550', '2.5550', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121739, '2022-10-01', 1855, 114985, 6885, 61776, '1.0000', '1.4852', '1.4852', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121740, '2022-10-01', 2315, 114986, 6885, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121741, '2022-10-01', 10018, 114987, 6885, 61953, '1.0000', '0.8500', '0.8500', '1.2000', '1.2000', '38.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121742, '2022-10-01', 1935, 114988, 6885, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '83.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121743, '2022-10-01', 2315, 114989, 6885, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121744, '2022-10-01', 7781, 114990, 6885, NULL, '3.0000', '9.6314', '9.6314', '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 (121745, '2022-10-01', 7444, 114991, 6885, 64173, '3.0000', '4.1571', '4.1571', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121746, '2022-10-01', 9092, 114992, 6886, 64099, '5.0000', '0.3187', '0.3187', '0.5000', '0.5000', '294.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121747, '2022-10-01', 7482, 114993, 6886, 63869, '1.0000', '4.8628', '4.8628', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121748, '2022-10-01', 9854, 114994, 6886, 51840, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121749, '2022-10-01', 2315, 114995, 6886, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121750, '2022-10-01', 2102, 114996, 6886, NULL, '1.0000', '1.5667', '1.5667', '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 (121751, '2022-10-01', 2284, 114997, 6886, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121752, '2022-10-01', 7807, 114998, 6886, 57411, '3.0000', '-61.8000', '-61.8000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121753, '2022-10-01', 1837, 114999, 6886, NULL, '1.0000', '0.5600', '0.5600', '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 (121754, '2022-10-01', 7350, 115000, 6886, 62349, '1.0000', '30.7450', '30.7450', '44.0000', '44.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121755, '2022-10-01', 7464, 115001, 6886, 57440, '1.0000', '29.9600', '29.9600', '39.5000', '39.5000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121756, '2022-10-01', 1935, 115002, 6886, 61805, '2.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '81.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121757, '2022-10-01', 9274, 115003, 6886, 63913, '1.0000', '5.5787', '5.5787', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121758, '2022-10-01', 2315, 115004, 6886, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121759, '2022-10-01', 9956, 115005, 6886, 61943, '1.0000', '15.8214', '15.8214', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121760, '2022-10-01', 7411, 115006, 6886, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121761, '2022-10-01', 7518, 115007, 6886, 63902, '2.0000', '9.5531', '9.5531', '14.5000', '14.5000', '23.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121762, '2022-10-01', 7457, 115008, 6886, 62562, '1.0000', '5.0562', '5.0562', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121763, '2022-10-01', 8840, 115009, 6886, 57605, '3.0000', '11.9167', '11.9167', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121764, '2022-10-01', 7558, 115010, 6886, 63891, '7.0000', '3.3637', '3.3637', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121765, '2022-10-01', 7558, 115010, 6886, NULL, '31.0000', '3.3637', '3.3637', '4.5000', '4.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 (121766, '2022-10-01', 2287, 115011, 6886, 61863, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '35.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121767, '2022-10-01', 9413, 115012, 6886, 61705, '1.0000', '9.2095', '9.2095', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121768, '2022-10-01', 7444, 115013, 6886, 64173, '1.0000', '4.1571', '4.1571', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121769, '2022-10-01', 7674, 115014, 6886, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121770, '2022-10-01', 2289, 115015, 6886, NULL, '3.0000', '4.0652', '4.0652', '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 (121771, '2022-10-01', 1841, 115016, 6886, 61751, '3.0000', '0.1461', '0.1461', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121772, '2022-10-01', 7544, 115017, 6886, NULL, '3.0000', '9.4300', '9.4300', '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 (121773, '2022-10-01', 9207, 115018, 6886, 57205, '1.0000', '2.3364', '2.3364', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121774, '2022-10-01', 7412, 115019, 6886, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121775, '2022-10-01', 7518, 115020, 6887, 63902, '1.0000', '9.5531', '9.5531', '14.5000', '14.5000', '22.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121776, '2022-10-01', 7362, 115021, 6887, 53618, '1.0000', '4.2661', '4.2661', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121777, '2022-10-01', 9885, 115022, 6887, 61862, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121778, '2022-10-01', 2061, 115023, 6887, 59322, '1.0000', '12.7640', '12.7640', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121779, '2022-10-01', 2063, 115024, 6887, 52439, '1.0000', '10.6325', '10.6325', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121780, '2022-10-01', 8879, 115025, 6887, 62304, '1.0000', '20.9867', '20.9867', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121781, '2022-10-01', 1541, 115026, 6887, NULL, '1.0000', '15.1124', '15.1124', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121782, '2022-10-01', 7612, 115027, 6887, NULL, '1.0000', '2.3846', '2.3846', '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 (121783, '2022-10-01', 7524, 115028, 6887, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121784, '2022-10-01', 7524, 115029, 6887, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121785, '2022-10-01', 7411, 115030, 6887, 62316, '1.0000', '1.4683', '1.4683', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121786, '2022-10-01', 7541, 115031, 6887, 48271, '1.0000', '0.8652', '0.8652', '0.7000', '0.7000', '2.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121787, '2022-10-01', 9402, 115032, 6887, NULL, '1.0000', '3.5000', '3.5000', '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 (121788, '2022-10-01', 7674, 115033, 6887, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121789, '2022-10-01', 9092, 115034, 6887, 64099, '1.0000', '0.3187', '0.3187', '0.5000', '0.5000', '293.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121790, '2022-10-01', 1592, 115035, 6888, 63468, '1.0000', '42.3123', '42.3123', '65.0000', '65.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121791, '2022-10-01', 1658, 115036, 6888, NULL, '1.0000', '45.3715', '45.3715', '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 (121792, '2022-10-01', 1557, 115037, 6888, 63995, '1.0000', '8.2500', '8.2500', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121793, '2022-10-01', 9732, 115038, 6888, 64066, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121794, '2022-10-01', 7926, 115039, 6888, NULL, '1.0000', '6.8265', '6.8265', '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 (121795, '2022-10-01', 1921, 115040, 6888, 62157, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121796, '2022-10-01', 1851, 115041, 6888, 64063, '1.0000', '14.1705', '14.1705', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121797, '2022-10-01', 8900, 115042, 6888, NULL, '5.0000', '16.4000', '16.4000', '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 (121798, '2022-10-01', 2237, 115043, 6888, 62851, '2.0000', '1.2800', '1.2800', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121799, '2022-10-01', 7411, 115044, 6888, NULL, '1.0000', '1.2819', '1.2819', '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 (121800, '2022-10-01', 1936, 115045, 6888, 62856, '1.0000', '6.7875', '6.7875', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121801, '2022-10-01', 2435, 115046, 6888, 61472, '1.0000', '9.2616', '9.2616', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121802, '2022-10-01', 1760, 115047, 6888, NULL, '1.0000', '-0.1939', '-0.1939', '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 (121803, '2022-10-01', 1602, 115048, 6888, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121804, '2022-10-01', 1528, 115049, 6888, NULL, '4.0000', '5.9193', '5.9193', '8.5000', '8.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 (121805, '2022-10-01', 1785, 115050, 6888, 63430, '1.0000', '17.1478', '17.1478', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121806, '2022-10-01', 1504, 115051, 6888, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '90.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121807, '2022-10-01', 8878, 115052, 6888, 64000, '2.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121808, '2022-10-01', 1839, 115053, 6888, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (121809, '2022-10-01', 2381, 115054, 6888, 64045, '1.0000', '14.4907', '14.4907', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121810, '2022-10-01', 1715, 115055, 6888, 63466, '1.0000', '7.8053', '7.8053', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121811, '2022-10-01', 2250, 115056, 6888, 63996, '1.0000', '9.5131', '9.5131', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121812, '2022-10-01', 2491, 115057, 6888, NULL, '1.0000', '-193.4000', '-193.4000', '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 (121813, '2022-10-01', 1670, 115058, 6888, NULL, '1.0000', '-35.9534', '-35.9534', '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 (121814, '2022-10-01', 2105, 115059, 6888, 54575, '3.0000', '2.4149', '2.4149', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121815, '2022-10-01', 9822, 115060, 6888, NULL, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121816, '2022-10-01', 1851, 115061, 6888, 64063, '1.0000', '14.1705', '14.1705', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121817, '2022-10-01', 9482, 115062, 6888, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '244.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121818, '2022-10-01', 9734, 115063, 6888, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '106.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121819, '2022-10-01', 2095, 115064, 6888, NULL, '1.0000', '-116.5000', '-116.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 (121820, '2022-10-01', 1857, 115065, 6888, 59835, '1.0000', '73.1000', '73.1000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121821, '2022-10-01', 2656, 115066, 6888, 63805, '2.0000', '1.9862', '1.9862', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121822, '2022-10-01', 2061, 115067, 6888, NULL, '1.0000', '-39.6386', '-39.6386', '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 (121823, '2022-10-01', 9762, 115068, 6888, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '21.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121824, '2022-10-01', 8079, 115069, 6888, NULL, '1.0000', '16.6100', '16.6100', '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 (121825, '2022-10-01', 7411, 115070, 6888, NULL, '2.0000', '1.2819', '1.2819', '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 (121826, '2022-10-01', 9740, 115071, 6888, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121827, '2022-10-01', 2109, 115072, 6888, NULL, '1.0000', '1.4840', '1.4840', '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 (121828, '2022-10-01', 2315, 115073, 6888, NULL, '1.0000', '0.7700', '0.7700', '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 (121829, '2022-10-01', 9734, 115074, 6888, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '107.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121830, '2022-10-01', 8384, 115075, 6888, 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 (121831, '2022-10-01', 2169, 115076, 6888, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121832, '2022-10-01', 9089, 115077, 6888, 63454, '2.0000', '-48.2505', '-48.2505', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121833, '2022-10-01', 7665, 115078, 6888, NULL, '1.0000', '7.9000', '7.9000', '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 (121834, '2022-10-01', 2089, 115079, 6888, 64076, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121835, '2022-10-01', 1446, 115080, 6888, NULL, '1.0000', '6.6040', '6.6040', '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 (121836, '2022-10-01', 1734, 115081, 6888, 45191, '1.0000', '14.9800', '14.9800', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121837, '2022-10-01', 7621, 115082, 6888, NULL, '1.0000', '3.1000', '3.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 (121838, '2022-10-01', 7318, 115083, 6888, 64032, '1.0000', '14.1535', '14.1535', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121839, '2022-10-01', 1306, 115084, 6888, 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 (121840, '2022-10-01', 1501, 115085, 6888, NULL, '1.0000', '-2.2016', '-2.2016', '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 (121841, '2022-10-01', 1910, 115086, 6888, NULL, '1.0000', '0.5756', '0.5756', '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 (121842, '2022-10-01', 9695, 115087, 6888, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121843, '2022-10-01', 1647, 115088, 6888, NULL, '1.0000', '-100.4231', '-100.4231', '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 (121844, '2022-10-01', 8384, 115089, 6888, 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 (121845, '2022-10-01', 1310, 115090, 6888, 64020, '2.0000', '0.4288', '0.4288', '0.6000', '0.6000', '47.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121846, '2022-10-01', 9482, 115091, 6888, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '244.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121847, '2022-10-01', 7744, 115092, 6888, NULL, '2.0000', '2.5833', '2.5833', '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 (121848, '2022-10-01', 9740, 115093, 6888, 62840, '2.0000', '0.6695', '0.6695', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121849, '2022-10-01', 2651, 115094, 6888, NULL, '1.0000', '11.9313', '11.9313', '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 (121850, '2022-10-01', 3058, 115095, 6888, NULL, '1.0000', '8.2853', '8.2853', '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 (121851, '2022-10-01', 2821, 115096, 6888, NULL, '1.0000', '-8.7105', '-8.7105', '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 (121852, '2022-10-01', 1822, 115097, 6888, 59618, '2.0000', '2.8001', '2.8001', '4.5000', '4.5000', '20.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121853, '2022-10-01', 1667, 115098, 6888, 62361, '1.0000', '9.3728', '9.3728', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121854, '2022-10-01', 8772, 115099, 6888, 63442, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121855, '2022-10-01', 9695, 115100, 6888, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121856, '2022-10-01', 8384, 115101, 6888, 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 (121857, '2022-10-01', 9482, 115102, 6888, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '244.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121858, '2022-10-01', 1333, 115103, 6889, 33203, '1.0000', '0.2530', '0.2530', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 241);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121859, '2022-10-01', 1837, 115104, 6889, 62213, '3.0000', '0.6220', '0.6220', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121860, '2022-10-01', 1337, 115105, 6889, 23592, '1.0000', '2.2526', '2.2526', '3.5000', '3.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 (121861, '2022-10-01', 7722, 115106, 6889, 55005, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121862, '2022-10-01', 1785, 115107, 6889, 62741, '1.0000', '16.7789', '16.7789', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121863, '2022-10-01', 1863, 115108, 6889, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121864, '2022-10-01', 2655, 115109, 6889, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121865, '2022-10-01', 9915, 115110, 6889, 60028, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121866, '2022-10-01', 1411, 115111, 6889, 61606, '1.0000', '25.9672', '25.9672', '35.0000', '35.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121867, '2022-10-01', 7637, 115112, 6889, 63358, '1.0000', '13.2116', '13.2116', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121868, '2022-10-01', 1374, 115113, 6889, 34413, '1.0000', '95.6984', '95.6984', '39.0000', '39.0000', '4.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121869, '2022-10-01', 2302, 115114, 6889, 63952, '1.0000', '5.4560', '5.4560', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121870, '2022-10-01', 1863, 115115, 6889, 62253, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121871, '2022-10-01', 2858, 115116, 6889, 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 (121872, '2022-10-01', 9724, 115117, 6889, 62786, '1.0000', '22.7118', '22.7118', '38.0000', '38.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121873, '2022-10-01', 2237, 115118, 6889, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121874, '2022-10-01', 2302, 115119, 6889, 63952, '4.0000', '5.4560', '5.4560', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121875, '2022-10-01', 1602, 115120, 6889, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121876, '2022-10-01', 1763, 115121, 6889, 60050, '1.0000', '5.0170', '5.0170', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121877, '2022-10-01', 7714, 115122, 6889, NULL, '2.0000', '0.4200', '0.4200', '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 (121878, '2022-10-01', 2352, 115123, 6889, 63957, '2.0000', '79.4905', '79.4905', '4.5000', '4.5000', '47.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121879, '2022-10-01', 7672, 115124, 6889, 59981, '1.0000', '1.3852', '1.3852', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121880, '2022-10-01', 1855, 115125, 6889, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121881, '2022-10-01', 9568, 115126, 6889, 63389, '1.0000', '55.7860', '55.7860', '94.0000', '94.0000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121882, '2022-10-01', 2698, 115127, 6889, 63401, '1.0000', '37.8192', '37.8192', '62.0000', '62.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121883, '2022-10-01', 2352, 115128, 6889, 63957, '5.0000', '79.4905', '79.4905', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121884, '2022-10-01', 2916, 115129, 6889, 63960, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121885, '2022-10-01', 1621, 115130, 6889, 62723, '1.0000', '30.5334', '30.5334', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121886, '2022-10-01', 2821, 115131, 6889, 62815, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121887, '2022-10-01', 1665, 115132, 6889, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121888, '2022-10-01', 9943, 115133, 6889, 60007, '1.0000', '11.3313', '11.3313', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121889, '2022-10-01', 2068, 115134, 6889, 63959, '1.0000', '13.7933', '13.7933', '20.5000', '20.5000', '8.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121890, '2022-10-01', 2109, 115135, 6889, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121891, '2022-10-01', 2236, 115136, 6889, 59990, '2.0000', '6.1815', '6.1815', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121892, '2022-10-01', 7564, 115137, 6889, NULL, '1.0000', '0.6400', '0.6400', '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 (121893, '2022-10-01', 1519, 115138, 6889, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121894, '2022-10-01', 1961, 115139, 6889, 60026, '1.0000', '20.4212', '20.4212', '35.0000', '35.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121895, '2022-10-01', 1715, 115140, 6889, 63408, '2.0000', '7.4885', '7.4885', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121896, '2022-10-01', 2252, 115141, 6889, 62220, '1.0000', '12.9605', '12.9605', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121897, '2022-10-01', 2004, 115142, 6889, NULL, '2.0000', '1.5000', '1.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 (121898, '2022-10-02', 9942, 115143, 6890, NULL, '1.0000', '13.1000', '13.1000', '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 (121899, '2022-10-02', 8165, 115144, 6890, 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 (121900, '2022-10-02', 9731, 115145, 6890, 64065, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121901, '2022-10-02', 2642, 115146, 6890, 63780, '1.0000', '8.7425', '8.7425', '18.5000', '18.5000', '6.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121902, '2022-10-02', 8746, 115147, 6890, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121903, '2022-10-02', 9734, 115148, 6890, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '102.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121904, '2022-10-02', 2020, 115149, 6890, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (121905, '2022-10-02', 9012, 115150, 6890, NULL, '2.0000', '24.0000', '24.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 (121906, '2022-10-02', 2088, 115151, 6890, 51347, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121907, '2022-10-02', 9762, 115152, 6890, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121908, '2022-10-02', 9089, 115153, 6890, 63454, '1.0000', '-48.2505', '-48.2505', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121909, '2022-10-02', 9996, 115154, 6890, 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 (121910, '2022-10-02', 8769, 115155, 6890, 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 (121911, '2022-10-02', 8079, 115156, 6890, NULL, '1.0000', '16.6100', '16.6100', '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 (121912, '2022-10-02', 1812, 115157, 6890, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '13.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121913, '2022-10-02', 1767, 115158, 6890, 64069, '1.0000', '6.3800', '6.3800', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121914, '2022-10-02', 1432, 115159, 6890, 62381, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121915, '2022-10-02', 7954, 115160, 6890, 62424, '1.0000', '1.6365', '1.6365', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121916, '2022-10-02', 1450, 115161, 6890, NULL, '2.0000', '0.8483', '0.8483', '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 (121917, '2022-10-02', 1812, 115162, 6890, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '13.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121918, '2022-10-02', 9740, 115163, 6890, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '68.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121919, '2022-10-02', 2302, 115164, 6890, 63424, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121920, '2022-10-02', 2821, 115165, 6890, NULL, '1.0000', '-8.7105', '-8.7105', '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 (121921, '2022-10-02', 1863, 115166, 6890, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121922, '2022-10-02', 1699, 115167, 6890, NULL, '1.0000', '-5.0000', '-5.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 (121923, '2022-10-02', 9468, 115168, 6890, NULL, '1.0000', '22.0000', '22.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 (121924, '2022-10-02', 2088, 115169, 6890, 51347, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121925, '2022-10-02', 2302, 115170, 6891, 63424, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121926, '2022-10-02', 2109, 115171, 6891, NULL, '1.0000', '1.4840', '1.4840', '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 (121927, '2022-10-02', 9922, 115172, 6891, 58232, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121928, '2022-10-02', 1807, 115173, 6891, NULL, '3.0000', '1.8000', '1.8000', '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 (121929, '2022-10-02', 8746, 115174, 6891, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121930, '2022-10-02', 2287, 115175, 6891, 57710, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121931, '2022-10-02', 2298, 115176, 6891, 61555, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121932, '2022-10-02', 9995, 115177, 6891, 62382, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121933, '2022-10-02', 1825, 115178, 6891, 62441, '1.0000', '7.4000', '7.4000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121934, '2022-10-02', 1787, 115179, 6891, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121935, '2022-10-02', 2057, 115180, 6891, 61497, '1.0000', '1.6496', '1.6496', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121936, '2022-10-02', 1863, 115181, 6891, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '113.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121937, '2022-10-02', 8444, 115182, 6891, 62848, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121938, '2022-10-02', 9463, 115183, 6891, NULL, '1.0000', '287.4328', '287.4328', '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 (121939, '2022-10-02', 9496, 115184, 6891, NULL, '1.0000', '-5.5750', '-5.5750', '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 (121940, '2022-10-02', 9841, 115185, 6891, 55549, '1.0000', '5.1900', '5.1900', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121941, '2022-10-02', 2109, 115186, 6891, NULL, '1.0000', '1.4840', '1.4840', '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 (121942, '2022-10-02', 9953, 115187, 6891, 63473, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121943, '2022-10-02', 7741, 115188, 6891, NULL, '1.0000', '-174.4114', '-174.4114', '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 (121944, '2022-10-02', 2169, 115189, 6891, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121945, '2022-10-02', 2275, 115190, 6891, NULL, '2.0000', '-26.2984', '-26.2984', '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 (121946, '2022-10-02', 2285, 115191, 6891, NULL, '1.0000', '-244.2769', '-244.2769', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121947, '2022-10-02', 1432, 115192, 6891, 62381, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121948, '2022-10-02', 2916, 115193, 6891, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (121949, '2022-10-02', 2965, 115194, 6892, NULL, '1.0000', '-9.3438', '-9.3438', '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 (121950, '2022-10-02', 1761, 115195, 6892, 60290, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121951, '2022-10-02', 1871, 115196, 6892, NULL, '10.0000', '-20821086.1374', '-20821086.1374', '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 (121952, '2022-10-02', 8844, 115197, 6892, NULL, '1.0000', '6.8542', '6.8542', '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 (121953, '2022-10-02', 2169, 115198, 6892, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121954, '2022-10-02', 9740, 115199, 6892, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '67.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121955, '2022-10-02', 7741, 115200, 6892, NULL, '1.0000', '-174.4114', '-174.4114', '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 (121956, '2022-10-02', 2167, 115201, 6892, NULL, '1.0000', '-10.2844', '-10.2844', '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 (121957, '2022-10-02', 2916, 115202, 6892, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (121958, '2022-10-02', 1529, 115203, 6892, 62135, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121959, '2022-10-02', 2821, 115204, 6892, NULL, '1.0000', '-8.7105', '-8.7105', '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 (121960, '2022-10-02', 8979, 115205, 6892, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121961, '2022-10-02', 2821, 115206, 6892, NULL, '1.0000', '-8.7105', '-8.7105', '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 (121962, '2022-10-02', 9821, 115207, 6893, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121963, '2022-10-02', 2948, 115208, 6893, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '59.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121964, '2022-10-02', 2260, 115209, 6893, 62140, '1.0000', '5.0048', '5.0048', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121965, '2022-10-02', 8773, 115210, 6893, 63451, '1.0000', '3.9349', '3.9349', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121966, '2022-10-02', 2169, 115211, 6893, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '54.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121967, '2022-10-02', 2169, 115212, 6894, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121968, '2022-10-02', 1839, 115213, 6894, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (121969, '2022-10-02', 7608, 115214, 6894, NULL, '1.0000', '6.9800', '6.9800', '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 (121970, '2022-10-02', 1532, 115215, 6894, 62437, '1.0000', '1.5092', '1.5092', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121971, '2022-10-02', 2237, 115216, 6894, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121972, '2022-10-02', 9482, 115217, 6894, 64050, '2.0000', '1.2046', '1.2046', '2.0000', '2.0000', '240.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121973, '2022-10-02', 9734, 115218, 6895, 62184, '9.0000', '0.4628', '0.4628', '0.7000', '0.7000', '93.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121974, '2022-10-02', 2670, 115219, 6895, NULL, '2.0000', '0.3200', '0.3200', '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 (121975, '2022-10-02', 1310, 115220, 6895, 64020, '5.0000', '0.4288', '0.4288', '0.6000', '0.6000', '42.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121976, '2022-10-02', 1837, 115221, 6895, 58241, '4.0000', '1.6080', '1.6080', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121977, '2022-10-02', 1863, 115222, 6895, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '112.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121978, '2022-10-02', 7385, 115223, 6896, NULL, '5.0000', '2.0000', '2.0000', '4.5000', '4.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 (121979, '2022-10-02', 7917, 115224, 6896, NULL, '10.0000', '5.0000', '5.0000', '0.7000', '0.7000', '-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 (121980, '2022-10-02', 8208, 115225, 6896, NULL, '6.0000', '33.0000', '33.0000', '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 (121981, '2022-10-02', 7473, 115226, 6896, NULL, '1.0000', '0.5300', '0.5300', '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 (121982, '2022-10-02', 9751, 115227, 6896, 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 (121983, '2022-10-02', 7641, 115228, 6896, NULL, '1.0000', '1.9000', '1.9000', '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 (121984, '2022-10-02', 2602, 115229, 6896, 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 (121985, '2022-10-02', 8878, 115230, 6896, NULL, '1.0000', '6.6700', '6.6700', '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 (121986, '2022-10-02', 7672, 115231, 6896, NULL, '1.0000', '1.0200', '1.0200', '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 (121987, '2022-10-02', 7411, 115232, 6896, NULL, '1.0000', '1.3500', '1.3500', '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 (121988, '2022-10-02', 7769, 115233, 6896, 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 (121989, '2022-10-02', 7482, 115234, 6896, NULL, '1.0000', '3.0500', '3.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 (121990, '2022-10-02', 2761, 115235, 6896, NULL, '1.0000', '6.0000', '6.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 (121991, '2022-10-02', 7560, 115236, 6896, NULL, '1.0000', '33.0200', '33.0200', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121992, '2022-10-02', 8254, 115237, 6896, NULL, '1.0000', '25.9000', '25.9000', '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 (121993, '2022-10-02', 8677, 115238, 6896, NULL, '2.0000', '1.2800', '1.2800', '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 (121994, '2022-10-02', 7412, 115239, 6896, NULL, '1.0000', '1.5200', '1.5200', '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 (121995, '2022-10-02', 7704, 115240, 6896, NULL, '1.0000', '0.4900', '0.4900', '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 (121996, '2022-10-02', 7967, 115241, 6896, NULL, '1.0000', '7.0000', '7.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 (121997, '2022-10-02', 7741, 115242, 6896, NULL, '1.0000', '1.2000', '1.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 (121998, '2022-10-02', 7588, 115243, 6896, NULL, '1.0000', '6.9000', '6.9000', '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 (121999, '2022-10-02', 7473, 115244, 6896, NULL, '1.0000', '0.5300', '0.5300', '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 (122000, '2022-10-02', 7411, 115245, 6896, NULL, '1.0000', '1.3500', '1.3500', '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 (122001, '2022-10-02', 7799, 115246, 6896, NULL, '1.0000', '6.4000', '6.4000', '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 (122002, '2022-10-02', 7317, 115247, 6896, NULL, '1.0000', '19.5500', '19.5500', '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 (122003, '2022-10-02', 7641, 115248, 6896, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (122004, '2022-10-02', 8527, 115249, 6896, NULL, '2.0000', '5.5000', '5.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 (122005, '2022-10-02', 7926, 115250, 6896, 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 (122006, '2022-10-02', 2473, 115251, 6896, NULL, '1.0000', '12.0000', '12.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 (122007, '2022-10-02', 8878, 115252, 6896, NULL, '2.0000', '6.6700', '6.6700', '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 (122008, '2022-10-02', 7556, 115253, 6896, 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 (122009, '2022-10-02', 8186, 115254, 6896, NULL, '3.0000', '1.0800', '1.0800', '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 (122010, '2022-10-02', 7750, 115255, 6896, NULL, '1.0000', '33.9800', '33.9800', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122011, '2022-10-02', 7523, 115256, 6896, NULL, '1.0000', '9.7500', '9.7500', '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 (122012, '2022-10-02', 7317, 115257, 6896, NULL, '1.0000', '19.5500', '19.5500', '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 (122013, '2022-10-02', 8878, 115258, 6896, NULL, '1.0000', '6.6700', '6.6700', '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 (122014, '2022-10-02', 7674, 115259, 6896, NULL, '2.0000', '1.3000', '1.3000', '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 (122015, '2022-10-02', 8205, 115260, 6896, NULL, '1.0000', '2.9500', '2.9500', '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 (122016, '2022-10-02', 1501, 115261, 6896, NULL, '1.0000', '2.0500', '2.0500', '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 (122017, '2022-10-02', 7959, 115262, 6896, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122018, '2022-10-02', 10015, 115263, 6896, NULL, '1.0000', '2.8000', '2.8000', '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 (122019, '2022-10-02', 1809, 115264, 6897, 61547, '1.0000', '11.0494', '11.0494', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122020, '2022-10-02', 2656, 115265, 6897, 63805, '1.0000', '1.9862', '1.9862', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122021, '2022-10-02', 2169, 115266, 6897, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '52.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122022, '2022-10-02', 7382, 115267, 6898, NULL, '1.0000', '7.4500', '7.4500', '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 (122023, '2022-10-02', 2655, 115268, 6898, 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 (122024, '2022-10-02', 8254, 115269, 6898, NULL, '1.0000', '25.9000', '25.9000', '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 (122025, '2022-10-02', 2602, 115270, 6898, 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 (122026, '2022-10-02', 8744, 115271, 6899, 62529, '1.0000', '4.1148', '4.1148', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122027, '2022-10-02', 9286, 115272, 6899, 40393, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122028, '2022-10-02', 8965, 115273, 6899, NULL, '1.0000', '-263.2470', '-263.2470', '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 (122029, '2022-10-02', 8756, 115274, 6899, 64102, '1.0000', '8.4902', '8.4902', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122030, '2022-10-02', 9092, 115275, 6899, 64099, '7.0000', '0.3187', '0.3187', '0.5000', '0.5000', '286.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122031, '2022-10-02', 2315, 115276, 6899, 61885, '3.0000', '0.7648', '0.7648', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122032, '2022-10-02', 7653, 115277, 6899, 60811, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122033, '2022-10-02', 9855, 115278, 6899, 59367, '1.0000', '28.8082', '28.8082', '51.5000', '51.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122034, '2022-10-02', 7411, 115279, 6899, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122035, '2022-10-02', 7674, 115280, 6899, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122036, '2022-10-02', 7509, 115281, 6899, 63889, '1.0000', '8.7232', '8.7232', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122037, '2022-10-02', 9272, 115282, 6899, NULL, '1.0000', '3.1206', '3.1206', '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 (122038, '2022-10-02', 7917, 115283, 6899, 61747, '2.0000', '2.5067', '2.5067', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122039, '2022-10-02', 7762, 115284, 6899, 63885, '1.0000', '1.4064', '1.4064', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122040, '2022-10-02', 9819, 115285, 6899, 61922, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122041, '2022-10-02', 7781, 115286, 6899, NULL, '6.0000', '9.6314', '9.6314', '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 (122042, '2022-10-02', 7411, 115287, 6899, 62316, '4.0000', '1.4683', '1.4683', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122043, '2022-10-02', 2289, 115288, 6899, NULL, '4.0000', '4.0652', '4.0652', '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 (122044, '2022-10-02', 8685, 115289, 6899, NULL, '1.0000', '32.0000', '32.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 (122045, '2022-10-02', 7548, 115290, 6899, NULL, '1.0000', '3.9186', '3.9186', '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 (122046, '2022-10-02', 1501, 115291, 6899, 63870, '3.0000', '3.1917', '3.1917', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122047, '2022-10-02', 7518, 115292, 6899, 63902, '1.0000', '9.5531', '9.5531', '14.5000', '14.5000', '21.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122048, '2022-10-02', 7509, 115293, 6899, 63889, '1.0000', '8.7232', '8.7232', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122049, '2022-10-02', 2656, 115294, 6899, 64105, '1.0000', '1.7467', '1.7467', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122050, '2022-10-02', 7952, 115295, 6899, 62310, '1.0000', '4.8479', '4.8479', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122051, '2022-10-02', 7444, 115296, 6899, 64173, '1.0000', '4.1571', '4.1571', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122052, '2022-10-02', 7490, 115297, 6899, 60806, '10.0000', '2.2232', '2.2232', '0.5000', '0.5000', '118.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122053, '2022-10-02', 8677, 115298, 6899, 61769, '1.0000', '1.9747', '1.9747', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122054, '2022-10-02', 7709, 115299, 6899, 63844, '1.0000', '-29491.3893', '-29491.3893', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122055, '2022-10-02', 7672, 115300, 6899, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122056, '2022-10-02', 7666, 115301, 6899, 64217, '1.0000', '6.0636', '6.0636', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122057, '2022-10-02', 9456, 115302, 6899, 61948, '1.0000', '3.4963', '3.4963', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122058, '2022-10-02', 7672, 115303, 6899, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122059, '2022-10-02', 7524, 115304, 6899, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122060, '2022-10-02', 2284, 115305, 6899, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122061, '2022-10-02', 2486, 115306, 6899, 62531, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122062, '2022-10-02', 8194, 115307, 6899, 61909, '1.0000', '6.9436', '6.9436', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122063, '2022-10-02', 8485, 115308, 6900, NULL, '1.0000', '6.0600', '6.0600', '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 (122064, '2022-10-02', 7612, 115309, 6900, NULL, '1.0000', '2.3846', '2.3846', '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 (122065, '2022-10-02', 1722, 115310, 6900, 60171, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122066, '2022-10-02', 7872, 115311, 6900, 62345, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122067, '2022-10-02', 7524, 115312, 6900, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122068, '2022-10-02', 7674, 115313, 6900, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122069, '2022-10-02', 7886, 115314, 6900, 63876, '1.0000', '4.9536', '4.9536', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122070, '2022-10-02', 9747, 115315, 6900, 64178, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122071, '2022-10-02', 7857, 115316, 6900, 62289, '1.0000', '18.6903', '18.6903', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122072, '2022-10-02', 8878, 115317, 6900, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122073, '2022-10-02', 2656, 115318, 6900, 64105, '1.0000', '1.7467', '1.7467', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122074, '2022-10-02', 7590, 115319, 6900, NULL, '1.0000', '6.0509', '6.0509', '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 (122075, '2022-10-02', 7781, 115320, 6900, NULL, '3.0000', '9.6314', '9.6314', '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 (122076, '2022-10-02', 9399, 115321, 6900, NULL, '1.0000', '0.9803', '0.9803', '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 (122077, '2022-10-02', 2315, 115322, 6900, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122078, '2022-10-02', 8308, 115323, 6900, NULL, '1.0000', '-1652.5820', '-1652.5820', '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 (122079, '2022-10-02', 8011, 115324, 6900, 63850, '1.0000', '7.4721', '7.4721', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122080, '2022-10-02', 8878, 115325, 6900, 61810, '1.0000', '0.3106', '0.3106', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122081, '2022-10-02', 9740, 115326, 6900, 59087, '2.0000', '0.6631', '0.6631', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122082, '2022-10-02', 1904, 115327, 6900, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '95.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122083, '2022-10-02', 8482, 115328, 6900, 63904, '1.0000', '21.1453', '21.1453', '24.0000', '24.0000', '10.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122084, '2022-10-02', 1754, 115329, 6900, 62560, '1.0000', '7.5000', '7.5000', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122085, '2022-10-02', 8879, 115330, 6900, 62304, '1.0000', '20.9867', '20.9867', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122086, '2022-10-02', 7464, 115331, 6900, 57440, '1.0000', '29.9600', '29.9600', '39.5000', '39.5000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122087, '2022-10-02', 7588, 115332, 6900, 63880, '1.0000', '8.3906', '8.3906', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122088, '2022-10-02', 7756, 115333, 6900, 64213, '1.0000', '34.9637', '34.9637', '53.5000', '53.5000', '2.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122089, '2022-10-02', 8878, 115334, 6900, 61810, '2.0000', '0.3106', '0.3106', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122090, '2022-10-02', 8132, 115335, 6900, 56600, '1.0000', '13.0514', '13.0514', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122091, '2022-10-02', 7753, 115336, 6900, 64176, '1.0000', '3.7217', '3.7217', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122092, '2022-10-02', 2315, 115337, 6900, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122093, '2022-10-02', 7853, 115338, 6900, 63932, '1.0000', '1298.1225', '1298.1225', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122094, '2022-10-02', 7886, 115339, 6900, 63876, '1.0000', '4.9536', '4.9536', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122095, '2022-10-02', 8596, 115340, 6900, NULL, '1.0000', '71.0634', '71.0634', '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 (122096, '2022-10-02', 1947, 115341, 6901, NULL, '1.0000', '-122941.3106', '-122941.3106', '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 (122097, '2022-10-02', 1432, 115342, 6902, 62381, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122098, '2022-10-02', 2169, 115343, 6902, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122099, '2022-10-02', 9177, 115344, 6902, 62836, '10.0000', '0.8708', '0.8708', '1.2000', '1.2000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122100, '2022-10-02', 10021, 115345, 6902, 62154, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122101, '2022-10-02', 1839, 115346, 6902, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (122102, '2022-10-02', 2315, 115347, 6902, NULL, '1.0000', '0.7700', '0.7700', '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 (122103, '2022-10-02', 1602, 115348, 6902, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122104, '2022-10-02', 2948, 115349, 6902, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '57.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122105, '2022-10-02', 8677, 115350, 6902, NULL, '2.0000', '1026.1382', '1026.1382', '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 (122106, '2022-10-02', 1839, 115351, 6902, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (122107, '2022-10-02', 2100, 115352, 6902, NULL, '1.0000', '-4.4545', '-4.4545', '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 (122108, '2022-10-02', 9946, 115353, 6902, NULL, '1.0000', '15.1000', '15.1000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122109, '2022-10-02', 1501, 115354, 6902, NULL, '1.0000', '-2.2016', '-2.2016', '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 (122110, '2022-10-02', 1342, 115355, 6902, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '17.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122111, '2022-10-02', 7584, 115356, 6902, NULL, '1.0000', '3.1378', '3.1378', '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 (122112, '2022-10-02', 9626, 115357, 6902, 61502, '1.0000', '8.3900', '8.3900', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122113, '2022-10-02', 1981, 115358, 6902, 63790, '1.0000', '13.5000', '13.5000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122114, '2022-10-02', 2020, 115359, 6902, NULL, '1.0000', '-5194.2000', '-5194.2000', '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 (122115, '2022-10-02', 1310, 115360, 6902, 64020, '2.0000', '0.4288', '0.4288', '0.6000', '0.6000', '40.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122116, '2022-10-02', 9430, 115361, 6902, 51650, '1.0000', '40.9000', '40.9000', '54.0000', '54.0000', '1.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122117, '2022-10-02', 8482, 115362, 6902, 64048, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122118, '2022-10-02', 2656, 115363, 6902, 63805, '2.0000', '1.9862', '1.9862', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122119, '2022-10-02', 9729, 115364, 6902, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122120, '2022-10-02', 9734, 115365, 6902, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '90.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122121, '2022-10-02', 1863, 115366, 6902, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '111.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122122, '2022-10-02', 9482, 115367, 6902, 64050, '2.0000', '1.2046', '1.2046', '2.0000', '2.0000', '238.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122123, '2022-10-02', 1499, 115368, 6902, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '25.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122124, '2022-10-02', 1863, 115369, 6902, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '111.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122125, '2022-10-02', 2167, 115370, 6902, NULL, '1.0000', '-10.2844', '-10.2844', '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 (122126, '2022-10-02', 2226, 115371, 6902, 59682, '1.0000', '6.6234', '6.6234', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122127, '2022-10-02', 1831, 115372, 6902, 63801, '1.0000', '9.7857', '9.7857', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122128, '2022-10-02', 8773, 115373, 6902, 63451, '1.0000', '3.9349', '3.9349', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122129, '2022-10-02', 2237, 115374, 6902, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122130, '2022-10-02', 1602, 115375, 6902, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122131, '2022-10-02', 9788, 115376, 6902, 51672, '2.0000', '1.5347', '1.5347', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122132, '2022-10-02', 1628, 115377, 6902, 64005, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122133, '2022-10-02', 2344, 115378, 6902, 64008, '1.0000', '20.0000', '20.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122134, '2022-10-02', 1755, 115379, 6902, 62165, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122135, '2022-10-02', 9734, 115380, 6902, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '92.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122136, '2022-10-02', 2607, 115381, 6902, 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 (122137, '2022-10-02', 1755, 115382, 6902, 62165, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122138, '2022-10-02', 2655, 115383, 6902, NULL, '1.0000', '-873.2032', '-873.2032', '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 (122139, '2022-10-02', 1602, 115384, 6902, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122140, '2022-10-02', 2682, 115385, 6902, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122141, '2022-10-02', 2283, 115386, 6902, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122142, '2022-10-02', 1863, 115387, 6902, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '111.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122143, '2022-10-02', 8979, 115388, 6902, 63478, '2.0000', '0.9698', '0.9698', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122144, '2022-10-02', 2169, 115389, 6902, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122145, '2022-10-02', 2315, 115390, 6902, NULL, '2.0000', '0.7700', '0.7700', '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 (122146, '2022-10-02', 2237, 115391, 6902, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122147, '2022-10-02', 2521, 115392, 6902, 57138, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122148, '2022-10-02', 2521, 115392, 6902, 44152, '1.0000', '12.3653', '12.3653', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122149, '2022-10-02', 3058, 115393, 6902, NULL, '2.0000', '8.2853', '8.2853', '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 (122150, '2022-10-02', 1609, 115394, 6902, NULL, '1.0000', '33.7500', '33.7500', '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 (122151, '2022-10-02', 9089, 115395, 6902, 63454, '1.0000', '-48.2505', '-48.2505', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122152, '2022-10-02', 2263, 115396, 6902, 62876, '1.0000', '11.4942', '11.4942', '8.0000', '8.0000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122153, '2022-10-02', 2522, 115397, 6902, 59700, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122154, '2022-10-02', 1667, 115398, 6902, 62361, '4.0000', '9.3728', '9.3728', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122155, '2022-10-02', 2259, 115399, 6902, 62448, '1.0000', '25.7632', '25.7632', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122156, '2022-10-02', 2655, 115400, 6902, NULL, '1.0000', '-873.2032', '-873.2032', '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 (122157, '2022-10-02', 8011, 115401, 6902, NULL, '1.0000', '0.9500', '0.9500', '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 (122158, '2022-10-02', 2916, 115402, 6902, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (122159, '2022-10-02', 2088, 115403, 6902, 51199, '1.0000', '2.5728', '2.5728', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122160, '2022-10-02', 9740, 115404, 6902, 62840, '2.0000', '0.6695', '0.6695', '2.0000', '2.0000', '65.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122161, '2022-10-02', 9695, 115405, 6902, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122162, '2022-10-02', 1863, 115406, 6902, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122163, '2022-10-02', 1578, 115407, 6902, 64021, '1.0000', '3.2335', '3.2335', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122164, '2022-10-02', 2169, 115408, 6902, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122165, '2022-10-02', 2656, 115409, 6902, 63805, '1.0000', '1.9862', '1.9862', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122166, '2022-10-02', 2169, 115410, 6902, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '51.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122167, '2022-10-02', 2572, 115411, 6902, 48986, '2.0000', '22.0000', '22.0000', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122168, '2022-10-02', 10042, 115412, 6902, 63472, '4.0000', '3.1700', '3.1700', '4.0000', '4.0000', '92.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122169, '2022-10-02', 1863, 115413, 6902, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122170, '2022-10-02', 8746, 115414, 6902, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122171, '2022-10-02', 8979, 115415, 6902, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122172, '2022-10-02', 1668, 115416, 6902, 64053, '1.0000', '19.2677', '19.2677', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122173, '2022-10-02', 8638, 115417, 6902, NULL, '1.0000', '0.6101', '0.6101', '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 (122174, '2022-10-02', 7746, 115418, 6902, NULL, '1.0000', '2.8600', '2.8600', '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 (122175, '2022-10-02', 1339, 115419, 6902, 64013, '3.0000', '2.4387', '2.4387', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122176, '2022-10-02', 1867, 115420, 6902, 62866, '1.0000', '11.2423', '11.2423', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122177, '2022-10-02', 7483, 115421, 6902, 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 (122178, '2022-10-02', 1787, 115422, 6902, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122179, '2022-10-02', 9514, 115423, 6903, 57107, '1.0000', '25.0000', '25.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122180, '2022-10-02', 9734, 115424, 6903, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '88.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122181, '2022-10-02', 2109, 115425, 6903, NULL, '2.0000', '1.4840', '1.4840', '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 (122182, '2022-10-02', 8979, 115426, 6903, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122183, '2022-10-02', 9699, 115427, 6904, 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 (122184, '2022-10-02', 1395, 115428, 6904, 62259, '1.0000', '8.7000', '8.7000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122185, '2022-10-02', 2693, 115429, 6904, 62794, '1.0000', '24.4733', '24.4733', '32.5000', '32.5000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122186, '2022-10-02', 2460, 115430, 6904, 62780, '1.0000', '34.3364', '34.3364', '45.0000', '45.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122187, '2022-10-02', 7459, 115431, 6904, NULL, '1.0000', '4.5753', '4.5753', '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 (122188, '2022-10-02', 2187, 115432, 6904, 39193, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122189, '2022-10-02', 10045, 115433, 6904, 63412, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122190, '2022-10-02', 2315, 115434, 6904, 62801, '4.0000', '0.6397', '0.6397', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122191, '2022-10-02', 1688, 115435, 6904, 62785, '1.0000', '20.6009', '20.6009', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122192, '2022-10-02', 2237, 115436, 6904, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122193, '2022-10-02', 1519, 115437, 6904, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122194, '2022-10-02', 2906, 115438, 6904, 18670, '1.0000', '2.6000', '2.6000', '4.0000', '4.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 (122195, '2022-10-02', 8548, 115439, 6904, NULL, '1.0000', '12.0000', '12.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 (122196, '2022-10-02', 2302, 115440, 6904, 63952, '1.0000', '5.4560', '5.4560', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122197, '2022-10-02', 8407, 115441, 6904, NULL, '1.0000', '1.0700', '1.0700', '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 (122198, '2022-10-02', 1841, 115442, 6904, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '94.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122199, '2022-10-02', 8133, 115443, 6904, 62251, '1.0000', '10.3333', '10.3333', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122200, '2022-10-02', 2315, 115444, 6904, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122201, '2022-10-02', 9762, 115445, 6904, 63404, '1.0000', '2.4753', '2.4753', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122202, '2022-10-02', 2706, 115446, 6904, 58821, '1.0000', '10.1288', '10.1288', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122203, '2022-10-02', 7482, 115447, 6904, NULL, '1.0000', '3.0500', '3.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 (122204, '2022-10-02', 1809, 115448, 6904, 62803, '1.0000', '10.9433', '10.9433', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122205, '2022-10-02', 7411, 115449, 6904, NULL, '1.0000', '1.5882', '1.5882', '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 (122206, '2022-10-02', 9743, 115450, 6904, 55477, '1.0000', '12.3429', '12.3429', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122207, '2022-10-02', 9747, 115451, 6904, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122208, '2022-10-02', 8746, 115452, 6904, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122209, '2022-10-02', 2821, 115453, 6904, 62729, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122210, '2022-10-02', 2169, 115454, 6904, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122211, '2022-10-02', 1665, 115455, 6904, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122212, '2022-10-02', 10003, 115456, 6904, 63364, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122213, '2022-10-02', 7642, 115457, 6904, 54649, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122214, '2022-10-02', 2758, 115458, 6904, 49542, '1.0000', '1.2400', '1.2400', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122215, '2022-10-02', 7849, 115459, 6904, NULL, '1.0000', '19.0000', '19.0000', '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 (122216, '2022-10-02', 1519, 115460, 6904, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122217, '2022-10-02', 2315, 115461, 6904, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122218, '2022-10-02', 8763, 115462, 6904, 60521, '1.0000', '5.4000', '5.4000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122219, '2022-10-02', 2302, 115463, 6904, 63952, '1.0000', '5.4560', '5.4560', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122220, '2022-10-02', 1504, 115464, 6904, 63133, '10.0000', '2.3115', '2.3115', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122221, '2022-10-02', 1695, 115465, 6904, 63357, '1.0000', '24.5674', '24.5674', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122222, '2022-10-02', 1382, 115466, 6904, 52095, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122223, '2022-10-02', 7411, 115467, 6904, NULL, '2.0000', '1.5882', '1.5882', '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 (122224, '2022-10-02', 1395, 115468, 6904, 62259, '1.0000', '8.7000', '8.7000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122225, '2022-10-02', 2395, 115469, 6904, 62790, '1.0000', '27.5000', '27.5000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122226, '2022-10-02', 2935, 115470, 6904, 60062, '1.0000', '13.5880', '13.5880', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122227, '2022-10-02', 9747, 115471, 6904, 61623, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122228, '2022-10-02', 2858, 115472, 6904, 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 (122229, '2022-10-02', 2655, 115473, 6904, 63815, '1.0000', '7.2912', '7.2912', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122230, '2022-10-02', 9958, 115474, 6904, 63398, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122231, '2022-10-03', 9953, 115475, 6905, 63473, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122232, '2022-10-03', 2109, 115476, 6905, NULL, '2.0000', '1.4840', '1.4840', '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 (122233, '2022-10-03', 9992, 115477, 6905, 62385, '1.0000', '27.6000', '27.6000', '37.0000', '37.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122234, '2022-10-03', 2105, 115478, 6905, 54575, '1.0000', '2.4149', '2.4149', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122235, '2022-10-03', 1672, 115479, 6905, NULL, '10.0000', '3.3468', '3.3468', '5.5000', '5.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 (122236, '2022-10-03', 1953, 115480, 6905, 58130, '1.0000', '2.6515', '2.6515', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122237, '2022-10-03', 2167, 115481, 6905, NULL, '1.0000', '-10.2844', '-10.2844', '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 (122238, '2022-10-03', 9762, 115482, 6905, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122239, '2022-10-03', 2295, 115483, 6905, 64001, '1.0000', '1.6538', '1.6538', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122240, '2022-10-03', 2295, 115483, 6905, 62440, '1.0000', '1.6538', '1.6538', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122241, '2022-10-03', 2098, 115484, 6905, 62450, '1.0000', '1.4000', '1.4000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122242, '2022-10-03', 7741, 115485, 6905, NULL, '1.0000', '-174.4114', '-174.4114', '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 (122243, '2022-10-03', 2295, 115486, 6905, 64001, '1.0000', '1.6538', '1.6538', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122244, '2022-10-03', 2295, 115486, 6905, 62440, '1.0000', '1.6538', '1.6538', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122245, '2022-10-03', 2109, 115487, 6905, NULL, '1.0000', '1.4840', '1.4840', '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 (122246, '2022-10-03', 2315, 115488, 6905, NULL, '2.0000', '0.7700', '0.7700', '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 (122247, '2022-10-03', 9815, 115489, 6905, 62097, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '42.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122248, '2022-10-03', 9762, 115490, 6905, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122249, '2022-10-03', 9815, 115491, 6905, 62097, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '42.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122250, '2022-10-03', 3060, 115492, 6905, 62114, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122251, '2022-10-03', 8011, 115493, 6905, NULL, '1.0000', '0.9500', '0.9500', '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 (122252, '2022-10-03', 1308, 115494, 6905, 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 (122253, '2022-10-03', 1874, 115495, 6905, NULL, '1.0000', '-24.5000', '-24.5000', '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 (122254, '2022-10-03', 2315, 115496, 6905, NULL, '1.0000', '0.7700', '0.7700', '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 (122255, '2022-10-03', 2169, 115497, 6905, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122256, '2022-10-03', 2655, 115498, 6905, NULL, '1.0000', '-873.2032', '-873.2032', '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 (122257, '2022-10-03', 2342, 115499, 6905, 58159, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122258, '2022-10-03', 1863, 115500, 6905, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '103.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122259, '2022-10-03', 1863, 115501, 6905, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '103.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122260, '2022-10-03', 1863, 115502, 6905, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '103.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122261, '2022-10-03', 9921, 115503, 6905, 63475, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122262, '2022-10-03', 8638, 115504, 6905, NULL, '2.0000', '0.6101', '0.6101', '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 (122263, '2022-10-03', 2506, 115505, 6905, NULL, '1.0000', '-21.5754', '-21.5754', '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 (122264, '2022-10-03', 2948, 115506, 6905, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '56.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122265, '2022-10-03', 9726, 115507, 6905, 62100, '1.0000', '5.2010', '5.2010', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122266, '2022-10-03', 9734, 115508, 6905, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '85.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122267, '2022-10-03', 2109, 115509, 6905, NULL, '2.0000', '1.4840', '1.4840', '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 (122268, '2022-10-03', 1831, 115510, 6905, 63801, '1.0000', '9.7857', '9.7857', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122269, '2022-10-03', 1562, 115511, 6905, 64070, '1.0000', '11.4122', '11.4122', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122270, '2022-10-03', 8772, 115512, 6905, 63442, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122271, '2022-10-03', 9472, 115513, 6905, 61265, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122272, '2022-10-03', 1999, 115514, 6905, 59704, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122273, '2022-10-03', 2169, 115515, 6905, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122274, '2022-10-03', 2315, 115516, 6905, NULL, '2.0000', '0.7700', '0.7700', '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 (122275, '2022-10-03', 2315, 115517, 6905, NULL, '1.0000', '0.7700', '0.7700', '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 (122276, '2022-10-03', 2506, 115518, 6905, NULL, '1.0000', '-21.5754', '-21.5754', '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 (122277, '2022-10-03', 8638, 115519, 6905, NULL, '1.0000', '0.6101', '0.6101', '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 (122278, '2022-10-03', 1674, 115520, 6905, 62110, '2.0000', '5.0303', '5.0303', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122279, '2022-10-03', 2858, 115521, 6906, 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 (122280, '2022-10-03', 2289, 115522, 6906, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '58.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122281, '2022-10-03', 7482, 115523, 6906, NULL, '1.0000', '3.0500', '3.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 (122282, '2022-10-03', 2353, 115524, 6906, NULL, '1.0000', '4.4500', '4.4500', '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 (122283, '2022-10-03', 2906, 115525, 6906, 18670, '1.0000', '2.6000', '2.6000', '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 (122284, '2022-10-03', 1347, 115526, 6906, 62725, '3.0000', '2.7178', '2.7178', '6.0000', '6.0000', '39.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122285, '2022-10-03', 2379, 115527, 6906, 63969, '1.0000', '2.1297', '2.1297', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122286, '2022-10-03', 2228, 115528, 6906, 63807, '1.0000', '29.8977', '29.8977', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122287, '2022-10-03', 2642, 115529, 6906, 60910, '1.0000', '10.3548', '10.3548', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122288, '2022-10-03', 1888, 115530, 6906, 62740, '1.0000', '17.9375', '17.9375', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122289, '2022-10-03', 1863, 115531, 6906, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122290, '2022-10-03', 2821, 115532, 6906, 62729, '1.0000', '3.5118', '3.5118', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122291, '2022-10-03', 1493, 115533, 6906, 52228, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122292, '2022-10-03', 2163, 115534, 6906, 62798, '3.0000', '25.6288', '25.6288', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122293, '2022-10-03', 2259, 115535, 6906, 62199, '1.0000', '22.6776', '22.6776', '34.0000', '34.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122294, '2022-10-03', 2069, 115536, 6906, 63382, '1.0000', '6.2231', '6.2231', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122295, '2022-10-03', 1863, 115537, 6906, 62253, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122296, '2022-10-03', 1863, 115537, 6906, 62240, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '123.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122297, '2022-10-03', 2643, 115538, 6906, 63814, '1.0000', '1.0660', '1.0660', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122298, '2022-10-03', 1398, 115539, 6907, 62145, '1.0000', '13.0286', '13.0286', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122299, '2022-10-03', 2342, 115540, 6907, 58159, '3.0000', '2.3666', '2.3666', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122300, '2022-10-03', 2342, 115540, 6907, 52181, '2.0000', '2.3666', '2.3666', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122301, '2022-10-03', 9695, 115541, 6907, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122302, '2022-10-03', 2413, 115542, 6907, NULL, '3.0000', '1.0500', '1.0500', '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 (122303, '2022-10-03', 3060, 115543, 6907, 62114, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122304, '2022-10-03', 2167, 115544, 6907, NULL, '1.0000', '-10.2844', '-10.2844', '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 (122305, '2022-10-03', 8761, 115545, 6907, NULL, '2.0000', '-14.6320', '-14.6320', '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 (122306, '2022-10-03', 1863, 115546, 6907, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '98.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122307, '2022-10-03', 9089, 115547, 6907, 63454, '1.0000', '-48.2505', '-48.2505', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122308, '2022-10-03', 7318, 115548, 6907, 64032, '1.0000', '14.1535', '14.1535', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122309, '2022-10-03', 2864, 115549, 6907, NULL, '5.0000', '3.3622', '3.3622', '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 (122310, '2022-10-03', 1857, 115550, 6907, NULL, '1.0000', '73.1000', '73.1000', '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 (122311, '2022-10-03', 2031, 115551, 6907, 63800, '1.0000', '5.2744', '5.2744', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122312, '2022-10-03', 2959, 115552, 6907, 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 (122313, '2022-10-03', 2315, 115553, 6907, NULL, '1.0000', '0.7700', '0.7700', '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 (122314, '2022-10-03', 9736, 115554, 6907, NULL, '1.0000', '5.2083', '5.2083', '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 (122315, '2022-10-03', 2416, 115555, 6907, 63803, '2.0000', '1.3811', '1.3811', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122316, '2022-10-03', 7713, 115556, 6908, NULL, '4.0000', '0.3800', '0.3800', '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 (122317, '2022-10-03', 7963, 115557, 6908, NULL, '1.0000', '14.7000', '14.7000', '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 (122318, '2022-10-03', 7632, 115558, 6908, NULL, '1.0000', '9.0000', '9.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 (122319, '2022-10-03', 7707, 115559, 6908, NULL, '1.0000', '7.0000', '7.0000', '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 (122320, '2022-10-03', 8769, 115560, 6908, NULL, '2.0000', '6.6000', '6.6000', '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 (122321, '2022-10-03', 9089, 115561, 6908, NULL, '2.0000', '3.8000', '3.8000', '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 (122322, '2022-10-03', 7872, 115562, 6908, 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 (122323, '2022-10-03', 8077, 115563, 6908, NULL, '1.0000', '3.6000', '3.6000', '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 (122324, '2022-10-03', 2105, 115564, 6908, NULL, '1.0000', '1.3500', '1.3500', '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 (122325, '2022-10-03', 8677, 115565, 6908, NULL, '3.0000', '1.2800', '1.2800', '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 (122326, '2022-10-03', 8097, 115566, 6908, NULL, '2.0000', '3.4000', '3.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 (122327, '2022-10-03', 7834, 115567, 6908, NULL, '1.0000', '13.0000', '13.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 (122328, '2022-10-03', 7673, 115568, 6908, NULL, '1.0000', '16.8000', '16.8000', '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 (122329, '2022-10-03', 8072, 115569, 6908, NULL, '7.0000', '6.6000', '6.6000', '8.7000', '8.7000', '-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 (122330, '2022-10-03', 7554, 115570, 6908, NULL, '10.0000', '2.1000', '2.1000', '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 (122331, '2022-10-03', 7778, 115571, 6908, NULL, '1.0000', '9.0000', '9.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 (122332, '2022-10-03', 2100, 115572, 6908, 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 (122333, '2022-10-03', 7708, 115573, 6908, NULL, '1.0000', '7.8000', '7.8000', '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 (122334, '2022-10-03', 7641, 115574, 6908, NULL, '1.0000', '1.9000', '1.9000', '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 (122335, '2022-10-03', 2656, 115575, 6908, NULL, '1.0000', '1.5000', '1.5000', '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 (122336, '2022-10-03', 7514, 115576, 6908, NULL, '3.0000', '2.2500', '2.2500', '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 (122337, '2022-10-03', 7411, 115577, 6908, NULL, '1.0000', '1.3500', '1.3500', '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 (122338, '2022-10-03', 8746, 115578, 6908, NULL, '1.0000', '3.1500', '3.1500', '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 (122339, '2022-10-03', 3013, 115579, 6908, NULL, '2.0000', '8.0000', '8.0000', '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 (122340, '2022-10-03', 7774, 115580, 6908, NULL, '1.0000', '3.3000', '3.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 (122341, '2022-10-03', 7638, 115581, 6908, NULL, '1.0000', '12.0000', '12.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 (122342, '2022-10-03', 7872, 115582, 6908, 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 (122343, '2022-10-03', 9199, 115583, 6908, NULL, '1.0000', '19.0000', '19.0000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122344, '2022-10-03', 2105, 115584, 6908, NULL, '1.0000', '1.3500', '1.3500', '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 (122345, '2022-10-03', 1805, 115585, 6908, NULL, '1.0000', '195.3170', '195.3170', '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 (122346, '2022-10-03', 7915, 115586, 6908, NULL, '1.0000', '2.8000', '2.8000', '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 (122347, '2022-10-03', 8878, 115587, 6908, NULL, '2.0000', '6.6700', '6.6700', '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 (122348, '2022-10-03', 7459, 115588, 6908, NULL, '2.0000', '2.3500', '2.3500', '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 (122349, '2022-10-03', 7514, 115589, 6908, NULL, '1.0000', '2.2500', '2.2500', '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 (122350, '2022-10-03', 1921, 115590, 6908, 6873, '1.0000', '13.0375', '13.0375', '3.0000', '3.0000', '6.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 (122351, '2022-10-03', 7703, 115591, 6908, NULL, '1.0000', '22.9900', '22.9900', '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 (122352, '2022-10-03', 7952, 115592, 6908, 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 (122353, '2022-10-03', 7473, 115593, 6908, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (122354, '2022-10-03', 7868, 115594, 6908, NULL, '3.0000', '28.7600', '28.7600', '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 (122355, '2022-10-03', 7557, 115595, 6908, NULL, '10.0000', '0.5000', '0.5000', '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 (122356, '2022-10-03', 8680, 115596, 6908, NULL, '1.0000', '2.0000', '2.0000', '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 (122357, '2022-10-03', 7715, 115597, 6908, NULL, '1.0000', '1.8900', '1.8900', '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 (122358, '2022-10-03', 2061, 115598, 6908, 2164, '-17.0000', '10.9800', '10.9800', '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 (122359, '2022-10-03', 2061, 115598, 6908, NULL, '18.0000', '10.9800', '10.9800', '17.5000', '17.5000', '-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 (122360, '2022-10-03', 8352, 115599, 6908, 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 (122361, '2022-10-03', 8407, 115600, 6908, NULL, '1.0000', '1.0700', '1.0700', '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 (122362, '2022-10-03', 8878, 115601, 6908, NULL, '1.0000', '6.6700', '6.6700', '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 (122363, '2022-10-03', 8153, 115602, 6908, NULL, '1.0000', '0.3200', '0.3200', '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 (122364, '2022-10-03', 7641, 115603, 6908, NULL, '1.0000', '1.9000', '1.9000', '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 (122365, '2022-10-03', 7316, 115604, 6908, NULL, '10.0000', '9.5500', '9.5500', '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 (122366, '2022-10-03', 8124, 115605, 6908, 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 (122367, '2022-10-03', 7756, 115606, 6908, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122368, '2022-10-03', 10018, 115607, 6908, NULL, '1.0000', '0.8500', '0.8500', '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 (122369, '2022-10-03', 2295, 115608, 6909, 62440, '2.0000', '1.6538', '1.6538', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122370, '2022-10-03', 8746, 115609, 6909, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122371, '2022-10-03', 2544, 115610, 6909, 62420, '1.0000', '11.5000', '11.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122372, '2022-10-03', 2061, 115611, 6910, NULL, '1.0000', '-39.6386', '-39.6386', '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 (122373, '2022-10-03', 9734, 115612, 6910, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '83.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122374, '2022-10-03', 1578, 115613, 6910, 64021, '1.0000', '3.2335', '3.2335', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122375, '2022-10-03', 1554, 115614, 6910, 62453, '1.0000', '3.1639', '3.1639', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122376, '2022-10-03', 9996, 115615, 6910, 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 (122377, '2022-10-03', 2057, 115616, 6910, 61497, '2.0000', '1.6496', '1.6496', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122378, '2022-10-03', 2950, 115617, 6910, 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 (122379, '2022-10-03', 2302, 115618, 6910, 63424, '1.0000', '3.0692', '3.0692', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122380, '2022-10-03', 8714, 115619, 6910, NULL, '1.0000', '5.2100', '5.2100', '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 (122381, '2022-10-03', 1557, 115620, 6910, NULL, '1.0000', '8.2500', '8.2500', '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 (122382, '2022-10-03', 9729, 115621, 6910, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122383, '2022-10-03', 1612, 115622, 6910, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122384, '2022-10-03', 2287, 115623, 6910, 57710, '1.0000', '2.3233', '2.3233', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122385, '2022-10-03', 2287, 115623, 6910, 48629, '3.0000', '2.3233', '2.3233', '4.5000', '4.5000', '31.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122386, '2022-10-03', 8149, 115624, 6910, NULL, '1.0000', '7.1834', '7.1834', '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 (122387, '2022-10-03', 9815, 115625, 6910, 62097, '3.0000', '0.9000', '0.9000', '1.2000', '1.2000', '38.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122388, '2022-10-03', 2854, 115626, 6910, 64051, '1.0000', '2.0667', '2.0667', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122389, '2022-10-03', 1532, 115627, 6910, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122390, '2022-10-03', 2088, 115628, 6911, NULL, '2.0000', '2.5728', '2.5728', '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 (122391, '2022-10-03', 1715, 115629, 6911, 63466, '1.0000', '7.8053', '7.8053', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122392, '2022-10-03', 2522, 115630, 6911, 57139, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122393, '2022-10-03', 2169, 115631, 6911, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122394, '2022-10-03', 2295, 115632, 6911, 62440, '3.0000', '1.6538', '1.6538', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122395, '2022-10-03', 1863, 115633, 6911, 64030, '3.0000', '1.5107', '1.5107', '2.5000', '2.5000', '95.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122396, '2022-10-03', 9748, 115634, 6911, 64012, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122397, '2022-10-03', 1647, 115635, 6911, NULL, '1.0000', '-100.4231', '-100.4231', '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 (122398, '2022-10-03', 1528, 115636, 6911, NULL, '2.0000', '5.9193', '5.9193', '8.5000', '8.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 (122399, '2022-10-03', 8362, 115637, 6911, NULL, '2.0000', '4.1000', '4.1000', '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 (122400, '2022-10-03', 1812, 115638, 6911, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122401, '2022-10-03', 1700, 115639, 6911, NULL, '1.0000', '-25.2500', '-25.2500', '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 (122402, '2022-10-03', 1925, 115640, 6911, 61553, '1.0000', '1.9127', '1.9127', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122403, '2022-10-03', 1529, 115641, 6911, 62135, '1.0000', '4.8886', '4.8886', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122404, '2022-10-03', 1871, 115642, 6911, NULL, '10.0000', '-20821086.1374', '-20821086.1374', '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 (122405, '2022-10-03', 7658, 115643, 6911, NULL, '5.0000', '10.1500', '10.1500', '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 (122406, '2022-10-03', 2916, 115644, 6911, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (122407, '2022-10-03', 1807, 115645, 6911, NULL, '1.0000', '1.8000', '1.8000', '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 (122408, '2022-10-03', 2059, 115646, 6911, 61500, '1.0000', '10.8085', '10.8085', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122409, '2022-10-03', 2682, 115647, 6911, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122410, '2022-10-03', 1863, 115648, 6911, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122411, '2022-10-03', 9734, 115649, 6911, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '80.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122412, '2022-10-03', 2416, 115650, 6911, 63803, '1.0000', '1.3811', '1.3811', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122413, '2022-10-03', 9788, 115651, 6911, 51672, '4.0000', '1.5347', '1.5347', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122414, '2022-10-03', 9740, 115652, 6911, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '64.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122415, '2022-10-03', 1950, 115653, 6911, 58156, '1.0000', '6.3376', '6.3376', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122416, '2022-10-03', 1628, 115654, 6911, 64005, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122417, '2022-10-03', 1874, 115655, 6911, NULL, '1.0000', '-24.5000', '-24.5000', '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 (122418, '2022-10-03', 2560, 115656, 6911, NULL, '1.0000', '17.0000', '17.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 (122419, '2022-10-03', 2262, 115657, 6911, 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 (122420, '2022-10-03', 1602, 115658, 6911, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122421, '2022-10-03', 2656, 115659, 6911, 63805, '1.0000', '1.9862', '1.9862', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122422, '2022-10-03', 2405, 115660, 6911, 37770, '2.0000', '1.2000', '1.2000', '1.8000', '1.8000', '0.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122423, '2022-10-03', 2405, 115660, 6911, 23111, '1.0000', '1.2000', '1.2000', '1.8000', '1.8000', '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 (122424, '2022-10-03', 2167, 115661, 6911, NULL, '1.0000', '-10.2844', '-10.2844', '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 (122425, '2022-10-03', 7954, 115662, 6911, 62424, '1.0000', '1.6365', '1.6365', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122426, '2022-10-03', 9885, 115663, 6911, 63465, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122427, '2022-10-03', 1409, 115664, 6911, 64028, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122428, '2022-10-03', 9856, 115665, 6911, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122429, '2022-10-03', 2270, 115666, 6911, 61546, '1.0000', '5.1971', '5.1971', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122430, '2022-10-03', 9695, 115667, 6911, 63787, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122431, '2022-10-03', 9089, 115668, 6911, 63454, '1.0000', '-48.2505', '-48.2505', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122432, '2022-10-03', 1905, 115669, 6911, 62444, '1.0000', '0.5198', '0.5198', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122433, '2022-10-03', 1383, 115670, 6911, 63988, '1.0000', '5.3864', '5.3864', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122434, '2022-10-03', 1407, 115671, 6911, 37813, '1.0000', '19.0167', '19.0167', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122435, '2022-10-03', 9695, 115672, 6911, 63787, '2.0000', '5.5992', '5.5992', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122436, '2022-10-03', 8420, 115673, 6912, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '13.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122437, '2022-10-03', 1501, 115674, 6912, NULL, '1.0000', '-2.2016', '-2.2016', '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 (122438, '2022-10-03', 1521, 115675, 6912, 62849, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122439, '2022-10-03', 3028, 115676, 6912, 63771, '1.0000', '0.7380', '0.7380', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122440, '2022-10-03', 8775, 115677, 6912, 61490, '1.0000', '2.3129', '2.3129', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122441, '2022-10-03', 2237, 115678, 6912, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122442, '2022-10-03', 1805, 115679, 6912, NULL, '1.0000', '153.7552', '153.7552', '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 (122443, '2022-10-03', 9810, 115680, 6913, NULL, '1.0000', '9.8000', '9.8000', '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 (122444, '2022-10-03', 8350, 115681, 6913, NULL, '3.0000', '12.0000', '12.0000', '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 (122445, '2022-10-03', 1368, 115682, 6913, 18648, '-2.0000', '-55.5295', '-55.5295', '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 (122446, '2022-10-03', 1368, 115682, 6913, NULL, '3.0000', '-55.5295', '-55.5295', '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 (122447, '2022-10-03', 2169, 115683, 6913, 10737, '-234.0000', '3.8397', '3.8397', '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 (122448, '2022-10-03', 2169, 115683, 6913, NULL, '235.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-235.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122449, '2022-10-03', 9637, 115684, 6913, NULL, '1.0000', '36.5000', '36.5000', '54.0000', '54.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122450, '2022-10-03', 9736, 115685, 6913, NULL, '1.0000', '3.9100', '3.9100', '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 (122451, '2022-10-03', 1639, 115686, 6913, 3212, '-1.0000', '6.6300', '6.6300', '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 (122452, '2022-10-03', 1639, 115686, 6913, NULL, '4.0000', '6.6300', '6.6300', '11.0000', '11.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 (122453, '2022-10-03', 1715, 115687, 6913, 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 (122454, '2022-10-03', 9943, 115688, 6913, NULL, '1.0000', '10.5500', '10.5500', '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 (122455, '2022-10-03', 2864, 115689, 6913, 17587, '-46.0000', '1.5198', '1.5198', '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 (122456, '2022-10-03', 2864, 115689, 6913, NULL, '49.0000', '1.5198', '1.5198', '3.0000', '3.0000', '-49.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122457, '2022-10-03', 2278, 115690, 6913, NULL, '1.0000', '14.9900', '14.9900', '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 (122458, '2022-10-03', 9747, 115691, 6913, NULL, '2.0000', '0.6500', '0.6500', '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 (122459, '2022-10-03', 1532, 115692, 6913, 20609, '2.0000', '0.8000', '0.8000', '2.0000', '2.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 (122460, '2022-10-03', 2293, 115693, 6913, 22262, '2.0000', '1.4400', '1.4400', '1.5000', '1.5000', '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 (122461, '2022-10-03', 2242, 115694, 6913, 3059, '-118.0000', '0.4800', '0.4800', '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 (122462, '2022-10-03', 2242, 115694, 6913, NULL, '120.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-120.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122463, '2022-10-03', 1839, 115695, 6913, 8734, '-46.0000', '6.1500', '6.1500', '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 (122464, '2022-10-03', 1839, 115695, 6913, NULL, '47.0000', '6.1500', '6.1500', '12.0000', '12.0000', '-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 (122465, '2022-10-03', 8444, 115696, 6913, 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 (122466, '2022-10-03', 2486, 115697, 6913, NULL, '12.0000', '4.0000', '4.0000', '5.0000', '5.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 (122467, '2022-10-03', 1342, 115698, 6913, 11264, '-32.0000', '6.8074', '6.8074', '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 (122468, '2022-10-03', 1342, 115698, 6913, NULL, '33.0000', '6.8074', '6.8074', '11.0000', '11.0000', '-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 (122469, '2022-10-03', 2315, 115699, 6913, 2735, '-698.0000', '0.3300', '0.3300', '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 (122470, '2022-10-03', 2315, 115699, 6913, NULL, '700.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-700.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122471, '2022-10-03', 9741, 115700, 6913, NULL, '1.0000', '7.6000', '7.6000', '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 (122472, '2022-10-03', 9942, 115701, 6913, NULL, '1.0000', '9.1000', '9.1000', '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 (122473, '2022-10-03', 9840, 115702, 6913, 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 (122474, '2022-10-03', 1314, 115703, 6913, 2710, '-11.0000', '1.2000', '1.2000', '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 (122475, '2022-10-03', 1314, 115703, 6913, NULL, '12.0000', '1.2000', '1.2000', '3.5000', '3.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 (122476, '2022-10-03', 2285, 115704, 6913, 2945, '-58.0000', '35.8000', '35.8000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122477, '2022-10-03', 2285, 115704, 6913, NULL, '59.0000', '35.8000', '35.8000', '80.0000', '80.0000', '-59.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122478, '2022-10-03', 2937, 115705, 6913, 19979, '-2.0000', '5.3700', '5.3700', '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 (122479, '2022-10-03', 2937, 115705, 6913, NULL, '3.0000', '5.3700', '5.3700', '7.0000', '7.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 (122480, '2022-10-03', 2263, 115706, 6913, 2799, '-7.0000', '6.5600', '6.5600', '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 (122481, '2022-10-03', 2263, 115706, 6913, NULL, '8.0000', '6.5600', '6.5600', '8.0000', '8.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 (122482, '2022-10-03', 1790, 115707, 6913, 4908, '-3.0000', '16.9500', '16.9500', '31.0000', '31.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122483, '2022-10-03', 1790, 115707, 6913, NULL, '4.0000', '16.9500', '16.9500', '31.0000', '31.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 (122484, '2022-10-03', 2337, 115708, 6913, 3840, '-1.0000', '51.0000', '51.0000', '79.0000', '79.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122485, '2022-10-03', 2337, 115708, 6913, NULL, '2.0000', '51.0000', '51.0000', '79.0000', '79.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 (122486, '2022-10-03', 2460, 115709, 6913, 12921, '-9.0000', '32.7700', '32.7700', '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 (122487, '2022-10-03', 2460, 115709, 6913, NULL, '10.0000', '32.7700', '32.7700', '45.0000', '45.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 (122488, '2022-10-03', 2327, 115710, 6913, 5083, '-50.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 (122489, '2022-10-03', 2327, 115710, 6913, NULL, '51.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-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 (122490, '2022-10-03', 1665, 115711, 6913, 3235, '-163.0000', '1.3000', '1.3000', '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 (122491, '2022-10-03', 1665, 115711, 6913, NULL, '164.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-164.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122492, '2022-10-03', 1425, 115712, 6913, NULL, '1.0000', '6.4405', '6.4405', '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 (122493, '2022-10-03', 2169, 115713, 6913, 10737, '-234.0000', '3.8397', '3.8397', '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 (122494, '2022-10-03', 2169, 115713, 6913, NULL, '235.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-235.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122495, '2022-10-03', 2858, 115714, 6913, 17772, '-134.0000', '1.0000', '1.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 (122496, '2022-10-03', 2858, 115714, 6913, NULL, '136.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-136.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122497, '2022-10-03', 7524, 115715, 6913, NULL, '1.0000', '11.9500', '11.9500', '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 (122498, '2022-10-03', 2937, 115716, 6913, 19979, '-2.0000', '5.3700', '5.3700', '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 (122499, '2022-10-03', 2937, 115716, 6913, NULL, '3.0000', '5.3700', '5.3700', '7.0000', '7.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 (122500, '2022-10-03', 2169, 115717, 6913, 10737, '-234.0000', '3.8397', '3.8397', '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 (122501, '2022-10-03', 2169, 115717, 6913, NULL, '235.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-235.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122502, '2022-10-03', 1425, 115718, 6913, NULL, '1.0000', '6.4405', '6.4405', '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 (122503, '2022-10-03', 2643, 115719, 6913, NULL, '1.0000', '0.8700', '0.8700', '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 (122504, '2022-10-03', 1702, 115720, 6913, 4499, '-18.0000', '14.9700', '14.9700', '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 (122505, '2022-10-03', 1702, 115720, 6913, NULL, '19.0000', '14.9700', '14.9700', '25.0000', '25.0000', '-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 (122506, '2022-10-03', 8877, 115721, 6913, NULL, '1.0000', '15.0000', '15.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 (122507, '2022-10-03', 1935, 115722, 6913, 5586, '-215.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 (122508, '2022-10-03', 1935, 115722, 6913, NULL, '216.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-216.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122509, '2022-10-03', 1557, 115723, 6914, 1628, '-22.0000', '7.9500', '7.9500', '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 (122510, '2022-10-03', 1557, 115723, 6914, NULL, '23.0000', '7.9500', '7.9500', '11.0000', '11.0000', '-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 (122511, '2022-10-03', 9160, 115724, 6914, NULL, '1.0000', '15.0000', '15.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 (122512, '2022-10-03', 8243, 115725, 6914, NULL, '1.0000', '1.1400', '1.1400', '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 (122513, '2022-10-03', 8017, 115726, 6914, NULL, '7.0000', '40.0000', '40.0000', '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 (122514, '2022-10-03', 7587, 115727, 6914, NULL, '1.0000', '6.4400', '6.4400', '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 (122515, '2022-10-03', 9329, 115728, 6914, NULL, '1.0000', '6.7000', '6.7000', '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 (122516, '2022-10-03', 9721, 115729, 6914, NULL, '2.0000', '11.7000', '11.7000', '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 (122517, '2022-10-03', 7715, 115730, 6914, NULL, '1.0000', '1.8900', '1.8900', '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 (122518, '2022-10-03', 8657, 115731, 6914, NULL, '1.0000', '6.3900', '6.3900', '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 (122519, '2022-10-03', 2656, 115732, 6914, NULL, '3.0000', '1.5000', '1.5000', '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 (122520, '2022-10-03', 8299, 115733, 6914, NULL, '3.0000', '8.3000', '8.3000', '120.0000', '120.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 (122521, '2022-10-03', 7518, 115734, 6914, NULL, '1.0000', '7.8200', '7.8200', '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 (122522, '2022-10-03', 2315, 115735, 6914, 2735, '-700.0000', '0.3300', '0.3300', '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 (122523, '2022-10-03', 2315, 115735, 6914, NULL, '701.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-701.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122524, '2022-10-03', 7959, 115736, 6914, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122525, '2022-10-03', 7704, 115737, 6914, NULL, '1.0000', '0.4900', '0.4900', '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 (122526, '2022-10-03', 1867, 115738, 6914, NULL, '1.0000', '1.0500', '1.0500', '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 (122527, '2022-10-03', 1644, 115739, 6914, 3216, '-12.0000', '33.8200', '33.8200', '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 (122528, '2022-10-03', 1644, 115739, 6914, NULL, '13.0000', '33.8200', '33.8200', '53.0000', '53.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 (122529, '2022-10-03', 7411, 115740, 6914, NULL, '1.0000', '1.3500', '1.3500', '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 (122530, '2022-10-03', 9202, 115741, 6914, NULL, '1.0000', '3.5000', '3.5000', '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 (122531, '2022-10-03', 7674, 115742, 6914, NULL, '1.0000', '1.3000', '1.3000', '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 (122532, '2022-10-03', 8020, 115743, 6914, NULL, '1.0000', '11.9000', '11.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 (122533, '2022-10-03', 8011, 115744, 6914, 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 (122534, '2022-10-03', 7853, 115745, 6914, NULL, '1.0000', '13.0000', '13.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 (122535, '2022-10-03', 10003, 115746, 6914, NULL, '1.0000', '6.3000', '6.3000', '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 (122536, '2022-10-03', 7411, 115747, 6914, NULL, '1.0000', '1.3500', '1.3500', '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 (122537, '2022-10-03', 8017, 115748, 6914, NULL, '1.0000', '40.0000', '40.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 (122538, '2022-10-03', 7514, 115749, 6914, NULL, '1.0000', '2.2500', '2.2500', '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 (122539, '2022-10-03', 8203, 115750, 6914, NULL, '8.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (122540, '2022-10-03', 8006, 115751, 6914, NULL, '1.0000', '30.0000', '30.0000', '63.0000', '63.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122541, '2022-10-03', 7482, 115752, 6914, NULL, '1.0000', '3.0500', '3.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 (122542, '2022-10-03', 2655, 115753, 6914, 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 (122543, '2022-10-03', 8482, 115754, 6914, NULL, '1.0000', '2.9500', '2.9500', '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 (122544, '2022-10-03', 1935, 115755, 6914, 5586, '-216.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 (122545, '2022-10-03', 1935, 115755, 6914, NULL, '217.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-217.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122546, '2022-10-03', 9098, 115756, 6914, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122547, '2022-10-03', 7777, 115757, 6914, NULL, '1.0000', '9.5000', '9.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 (122548, '2022-10-03', 8478, 115758, 6914, NULL, '1.0000', '23.0000', '23.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 (122549, '2022-10-03', 1420, 115759, 6914, NULL, '2.0000', '1.2000', '1.2000', '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 (122550, '2022-10-03', 1978, 115760, 6914, 6345, '-4.0000', '6.5000', '6.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 (122551, '2022-10-03', 1978, 115760, 6914, NULL, '5.0000', '6.5000', '6.5000', '15.0000', '15.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 (122552, '2022-10-03', 8490, 115761, 6914, NULL, '1.0000', '27.3000', '27.3000', '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 (122553, '2022-10-03', 8918, 115762, 6914, NULL, '2.0000', '1.0400', '1.0400', '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 (122554, '2022-10-03', 7473, 115763, 6914, NULL, '1.0000', '0.5300', '0.5300', '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 (122555, '2022-10-03', 7703, 115764, 6914, NULL, '1.0000', '22.9900', '22.9900', '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 (122556, '2022-10-03', 9024, 115765, 6914, NULL, '1.0000', '7.4400', '7.4400', '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 (122557, '2022-10-03', 7954, 115766, 6914, NULL, '2.0000', '3.0000', '3.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 (122558, '2022-10-03', 7524, 115767, 6914, NULL, '1.0000', '11.9500', '11.9500', '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 (122559, '2022-10-03', 7730, 115768, 6914, NULL, '6.0000', '0.1000', '0.1000', '0.2000', '0.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 (122560, '2022-10-03', 2289, 115769, 6914, 2949, '-284.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 (122561, '2022-10-03', 2289, 115769, 6914, NULL, '286.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-286.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122562, '2022-10-03', 9791, 115770, 6914, NULL, '2.0000', '0.9000', '0.9000', '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 (122563, '2022-10-03', 8172, 115771, 6914, NULL, '1.0000', '40.7000', '40.7000', '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 (122564, '2022-10-03', 7473, 115772, 6914, NULL, '1.0000', '0.5300', '0.5300', '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 (122565, '2022-10-03', 2251, 115773, 6914, 2788, '-39.0000', '10.9700', '10.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 (122566, '2022-10-03', 2251, 115773, 6914, NULL, '40.0000', '10.9700', '10.9700', '20.0000', '20.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 (122567, '2022-10-03', 7707, 115774, 6914, NULL, '1.0000', '7.0000', '7.0000', '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 (122568, '2022-10-03', 7991, 115775, 6914, NULL, '1.0000', '26.5700', '26.5700', '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 (122569, '2022-10-03', 7651, 115776, 6914, NULL, '1.0000', '2.6700', '2.6700', '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 (122570, '2022-10-03', 8052, 115777, 6914, NULL, '1.0000', '29.0000', '29.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 (122571, '2022-10-03', 7518, 115778, 6914, NULL, '1.0000', '7.8200', '7.8200', '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 (122572, '2022-10-03', 7583, 115779, 6914, NULL, '1.0000', '4.0000', '4.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 (122573, '2022-10-03', 7928, 115780, 6914, NULL, '1.0000', '1.2000', '1.2000', '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 (122574, '2022-10-03', 8203, 115781, 6914, 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 (122575, '2022-10-03', 7704, 115782, 6914, NULL, '2.0000', '0.4900', '0.4900', '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 (122576, '2022-10-03', 1339, 115783, 6915, 64013, '1.0000', '2.4387', '2.4387', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122577, '2022-10-03', 9482, 115784, 6915, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '237.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122578, '2022-10-03', 2295, 115785, 6915, 62440, '3.0000', '1.6538', '1.6538', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122579, '2022-10-03', 2283, 115786, 6915, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122580, '2022-10-03', 1855, 115787, 6915, NULL, '1.0000', '1.3493', '1.3493', '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 (122581, '2022-10-03', 1425, 115788, 6915, NULL, '1.0000', '10.4986', '10.4986', '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 (122582, '2022-10-03', 2948, 115789, 6915, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '55.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122583, '2022-10-03', 9821, 115790, 6915, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122584, '2022-10-03', 9814, 115791, 6915, 50254, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122585, '2022-10-03', 2016, 115792, 6915, 63796, '1.0000', '10.6874', '10.6874', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122586, '2022-10-03', 1488, 115793, 6915, 62081, '1.0000', '4.2964', '4.2964', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122587, '2022-10-03', 1974, 115794, 6915, 63788, '1.0000', '17.6778', '17.6778', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122588, '2022-10-03', 1592, 115795, 6915, 63468, '1.0000', '42.3123', '42.3123', '65.0000', '65.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122589, '2022-10-03', 9815, 115796, 6915, 62097, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '36.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122590, '2022-10-03', 2169, 115797, 6915, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122591, '2022-10-03', 2244, 115798, 6916, NULL, '1.0000', '7.3600', '7.3600', '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 (122592, '2022-10-03', 7380, 115799, 6916, NULL, '1.0000', '8.0000', '8.0000', '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 (122593, '2022-10-03', 8756, 115800, 6916, NULL, '1.0000', '7.5000', '7.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 (122594, '2022-10-03', 7630, 115801, 6916, NULL, '1.0000', '10.0000', '10.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 (122595, '2022-10-03', 2655, 115802, 6916, 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 (122596, '2022-10-03', 1908, 115803, 6916, 5444, '-58.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 (122597, '2022-10-03', 1908, 115803, 6916, NULL, '60.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122598, '2022-10-03', 7641, 115804, 6916, NULL, '1.0000', '1.9000', '1.9000', '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 (122599, '2022-10-03', 9737, 115805, 6916, NULL, '1.0000', '7.3000', '7.3000', '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 (122600, '2022-10-03', 2259, 115806, 6917, 2795, '-9.0000', '19.9405', '19.9405', '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 (122601, '2022-10-03', 2259, 115806, 6917, NULL, '10.0000', '19.9405', '19.9405', '34.0000', '34.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 (122602, '2022-10-03', 2237, 115807, 6917, 2781, '-90.0000', '1.0600', '1.0600', '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 (122603, '2022-10-03', 2237, 115807, 6917, NULL, '91.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-91.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122604, '2022-10-03', 2858, 115808, 6917, 17772, '-136.0000', '1.0000', '1.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 (122605, '2022-10-03', 2858, 115808, 6917, NULL, '137.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-137.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122606, '2022-10-03', 1645, 115809, 6917, 3217, '-10.0000', '4.7200', '4.7200', '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 (122607, '2022-10-03', 1645, 115809, 6917, NULL, '11.0000', '4.7200', '4.7200', '8.5000', '8.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 (122608, '2022-10-03', 9866, 115810, 6917, NULL, '1.0000', '9.5500', '9.5500', '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 (122609, '2022-10-03', 2068, 115811, 6917, 5568, '-34.0000', '13.1000', '13.1000', '20.5000', '20.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 (122610, '2022-10-03', 2068, 115811, 6917, NULL, '35.0000', '13.1000', '13.1000', '20.5000', '20.5000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122611, '2022-10-03', 2342, 115812, 6917, 3845, '-129.0000', '1.8600', '1.8600', '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 (122612, '2022-10-03', 2342, 115812, 6917, NULL, '134.0000', '1.8600', '1.8600', '3.5000', '3.5000', '-134.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122613, '2022-10-03', 10038, 115813, 6917, NULL, '2.0000', '2.9700', '2.9700', '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 (122614, '2022-10-03', 1665, 115814, 6917, 3235, '-164.0000', '1.3000', '1.3000', '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 (122615, '2022-10-03', 1665, 115814, 6917, NULL, '165.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-165.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122616, '2022-10-03', 2602, 115815, 6917, NULL, '2.0000', '4.0000', '4.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 (122617, '2022-10-03', 8677, 115816, 6917, NULL, '2.0000', '1.2800', '1.2800', '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 (122618, '2022-10-03', 7411, 115817, 6917, NULL, '1.0000', '1.3500', '1.3500', '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 (122619, '2022-10-03', 1765, 115818, 6917, 3175, '-28.0000', '90.0000', '90.0000', '9.5000', '9.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 (122620, '2022-10-03', 1765, 115818, 6917, NULL, '29.0000', '90.0000', '90.0000', '9.5000', '9.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122621, '2022-10-03', 2821, 115819, 6917, 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 (122622, '2022-10-03', 9999, 115820, 6917, NULL, '1.0000', '3.1000', '3.1000', '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 (122623, '2022-10-04', 1432, 115821, 6918, 62381, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122624, '2022-10-04', 1488, 115822, 6918, 61577, '1.0000', '4.2964', '4.2964', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122625, '2022-10-04', 2287, 115823, 6918, 48629, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122626, '2022-10-04', 7411, 115824, 6918, NULL, '1.0000', '1.2819', '1.2819', '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 (122627, '2022-10-04', 1703, 115825, 6918, 62857, '1.0000', '11.2175', '11.2175', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122628, '2022-10-04', 2088, 115826, 6918, NULL, '1.0000', '2.5728', '2.5728', '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 (122629, '2022-10-04', 8638, 115827, 6918, NULL, '2.0000', '0.6101', '0.6101', '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 (122630, '2022-10-04', 1807, 115828, 6918, NULL, '11.0000', '1.8000', '1.8000', '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 (122631, '2022-10-04', 8384, 115829, 6918, 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 (122632, '2022-10-04', 8384, 115830, 6918, 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 (122633, '2022-10-04', 1519, 115831, 6918, NULL, '1.0000', '3.9861', '3.9861', '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 (122634, '2022-10-04', 2073, 115832, 6918, 55667, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122635, '2022-10-04', 1668, 115833, 6918, 64053, '1.0000', '19.2677', '19.2677', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122636, '2022-10-04', 1654, 115834, 6918, NULL, '1.0000', '9.2613', '9.2613', '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 (122637, '2022-10-04', 9827, 115835, 6918, NULL, '1.0000', '16.6600', '16.6600', '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 (122638, '2022-10-04', 9740, 115836, 6918, 62840, '2.0000', '0.6695', '0.6695', '2.0000', '2.0000', '62.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122639, '2022-10-04', 1812, 115837, 6918, 63423, '1.0000', '8.2971', '8.2971', '14.5000', '14.5000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122640, '2022-10-04', 8638, 115838, 6918, NULL, '1.0000', '0.6101', '0.6101', '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 (122641, '2022-10-04', 2965, 115839, 6918, NULL, '2.0000', '-9.3438', '-9.3438', '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 (122642, '2022-10-04', 1602, 115840, 6918, 62877, '1.0000', '7.8679', '7.8679', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122643, '2022-10-04', 2643, 115841, 6918, 63446, '1.0000', '1.1168', '1.1168', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122644, '2022-10-04', 1700, 115842, 6918, NULL, '1.0000', '-25.2500', '-25.2500', '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 (122645, '2022-10-04', 9824, 115843, 6918, NULL, '1.0000', '1.3000', '1.3000', '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 (122646, '2022-10-04', 2061, 115844, 6918, NULL, '1.0000', '-39.6386', '-39.6386', '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 (122647, '2022-10-04', 2169, 115845, 6918, 62844, '1.0000', '1.8223', '1.8223', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122648, '2022-10-04', 9863, 115846, 6918, 55580, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122649, '2022-10-04', 1703, 115847, 6918, 62857, '1.0000', '11.2175', '11.2175', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122650, '2022-10-04', 9815, 115848, 6918, 62097, '1.0000', '0.9000', '0.9000', '1.2000', '1.2000', '35.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122651, '2022-10-04', 1910, 115849, 6918, NULL, '2.0000', '0.5756', '0.5756', '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 (122652, '2022-10-04', 1905, 115850, 6918, 62444, '1.0000', '0.5198', '0.5198', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122653, '2022-10-04', 7318, 115851, 6918, 64032, '1.0000', '14.1535', '14.1535', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122654, '2022-10-04', 1306, 115852, 6918, 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 (122655, '2022-10-04', 8490, 115853, 6918, 64058, '1.0000', '27.3000', '27.3000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122656, '2022-10-04', 9151, 115854, 6918, 62169, '1.0000', '11.0800', '11.0800', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122657, '2022-10-04', 2059, 115855, 6918, 61500, '1.0000', '10.8085', '10.8085', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122658, '2022-10-04', 2565, 115856, 6918, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122659, '2022-10-04', 2416, 115857, 6918, 63803, '2.0000', '1.3811', '1.3811', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122660, '2022-10-04', 1432, 115858, 6918, 62381, '1.0000', '12.9373', '12.9373', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122661, '2022-10-04', 7379, 115859, 6918, NULL, '1.0000', '12.5100', '12.5100', '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 (122662, '2022-10-04', 1455, 115860, 6918, 60340, '10.0000', '0.0795', '0.0795', '0.8000', '0.8000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122663, '2022-10-04', 1696, 115861, 6918, 34611, '1.0000', '10.2000', '10.2000', '13.5000', '13.5000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122664, '2022-10-04', 9740, 115862, 6918, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '63.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122665, '2022-10-04', 9734, 115863, 6918, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '77.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122666, '2022-10-04', 2237, 115864, 6918, 62851, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122667, '2022-10-04', 7666, 115865, 6919, NULL, '1.0000', '3.6000', '3.6000', '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 (122668, '2022-10-04', 7675, 115866, 6919, NULL, '1.0000', '11.4300', '11.4300', '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 (122669, '2022-10-04', 7674, 115867, 6919, NULL, '1.0000', '1.3000', '1.3000', '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 (122670, '2022-10-04', 9751, 115868, 6919, 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 (122671, '2022-10-04', 7552, 115869, 6919, NULL, '1.0000', '4.7500', '4.7500', '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 (122672, '2022-10-04', 8408, 115870, 6919, 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 (122673, '2022-10-04', 7743, 115871, 6919, NULL, '1.0000', '1.3100', '1.3100', '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 (122674, '2022-10-04', 8596, 115872, 6919, 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 (122675, '2022-10-04', 2315, 115873, 6919, 2735, '-701.0000', '0.3300', '0.3300', '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 (122676, '2022-10-04', 2315, 115873, 6919, NULL, '704.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-704.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122677, '2022-10-04', 8053, 115874, 6919, NULL, '4.0000', '0.8000', '0.8000', '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 (122678, '2022-10-04', 7672, 115875, 6919, NULL, '2.0000', '1.0200', '1.0200', '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 (122679, '2022-10-04', 7411, 115876, 6919, NULL, '1.0000', '1.3500', '1.3500', '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 (122680, '2022-10-04', 7730, 115877, 6919, NULL, '10.0000', '0.1000', '0.1000', '0.2000', '0.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 (122681, '2022-10-04', 7664, 115878, 6919, NULL, '1.0000', '6.9400', '6.9400', '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 (122682, '2022-10-04', 8336, 115879, 6919, NULL, '2.0000', '3.4000', '3.4000', '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 (122683, '2022-10-04', 7411, 115880, 6919, NULL, '2.0000', '1.3500', '1.3500', '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 (122684, '2022-10-04', 7591, 115881, 6919, NULL, '1.0000', '2.7500', '2.7500', '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 (122685, '2022-10-04', 7779, 115882, 6919, NULL, '1.0000', '9.5000', '9.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 (122686, '2022-10-04', 7707, 115883, 6919, NULL, '1.0000', '7.0000', '7.0000', '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 (122687, '2022-10-04', 2315, 115884, 6919, 2735, '-701.0000', '0.3300', '0.3300', '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 (122688, '2022-10-04', 2315, 115884, 6919, NULL, '702.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-702.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122689, '2022-10-04', 9089, 115885, 6919, NULL, '1.0000', '3.8000', '3.8000', '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 (122690, '2022-10-04', 1501, 115886, 6919, NULL, '1.0000', '2.0500', '2.0500', '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 (122691, '2022-10-04', 7587, 115887, 6919, NULL, '1.0000', '6.4400', '6.4400', '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 (122692, '2022-10-04', 8308, 115888, 6919, NULL, '1.0000', '2.0800', '2.0800', '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 (122693, '2022-10-04', 7744, 115889, 6919, NULL, '1.0000', '2.7000', '2.7000', '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 (122694, '2022-10-04', 7411, 115890, 6919, NULL, '1.0000', '1.3500', '1.3500', '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 (122695, '2022-10-04', 8097, 115891, 6919, NULL, '4.0000', '3.4000', '3.4000', '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 (122696, '2022-10-04', 7531, 115892, 6919, NULL, '1.0000', '3.1900', '3.1900', '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 (122697, '2022-10-04', 7317, 115893, 6919, NULL, '1.0000', '19.5500', '19.5500', '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 (122698, '2022-10-04', 7657, 115894, 6919, NULL, '1.0000', '11.3200', '11.3200', '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 (122699, '2022-10-04', 9791, 115895, 6919, 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 (122700, '2022-10-04', 9747, 115896, 6919, NULL, '2.0000', '0.6500', '0.6500', '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 (122701, '2022-10-04', 7639, 115897, 6919, 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 (122702, '2022-10-04', 7954, 115898, 6919, 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 (122703, '2022-10-04', 7781, 115899, 6919, NULL, '3.0000', '4.2500', '4.2500', '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 (122704, '2022-10-04', 9235, 115900, 6919, NULL, '2.0000', '2.5000', '2.5000', '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 (122705, '2022-10-04', 9729, 115901, 6919, NULL, '2.0000', '0.6200', '0.6200', '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 (122706, '2022-10-04', 8053, 115902, 6919, NULL, '3.0000', '0.8000', '0.8000', '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 (122707, '2022-10-04', 7547, 115903, 6920, NULL, '4.0000', '0.0000', '0.0000', '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 (122708, '2022-10-04', 1722, 115904, 6920, 6618, '-1.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 (122709, '2022-10-04', 1722, 115904, 6920, 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 (122710, '2022-10-04', 7473, 115905, 6920, NULL, '5.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-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 (122711, '2022-10-04', 2858, 115906, 6921, NULL, '2.0000', '1.0000', '1.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 (122712, '2022-10-04', 2262, 115907, 6921, 62196, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122713, '2022-10-04', 2289, 115908, 6921, 62763, '4.0000', '0.2648', '0.2648', '0.5000', '0.5000', '54.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122714, '2022-10-04', 1645, 115909, 6921, 54640, '1.0000', '5.5494', '5.5494', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122715, '2022-10-04', 7587, 115910, 6921, 63390, '1.0000', '7.4672', '7.4672', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122716, '2022-10-04', 2236, 115911, 6921, 64315, '1.0000', '6.2606', '6.2606', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122717, '2022-10-04', 1321, 115912, 6921, 64328, '1.0000', '10.6085', '10.6085', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122718, '2022-10-04', 1863, 115913, 6921, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122719, '2022-10-04', 1329, 115914, 6921, 62737, '2.0000', '10.7067', '10.7067', '17.0000', '17.0000', '10.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122720, '2022-10-04', 2169, 115915, 6921, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122721, '2022-10-04', 8746, 115916, 6921, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122722, '2022-10-04', 1311, 115917, 6921, NULL, '2.0000', '0.3700', '0.3700', '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 (122723, '2022-10-04', 1432, 115918, 6921, 62775, '1.0000', '11.9326', '11.9326', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122724, '2022-10-04', 8165, 115919, 6921, 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 (122725, '2022-10-04', 2354, 115920, 6921, 62755, '1.0000', '5.6092', '5.6092', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122726, '2022-10-04', 8444, 115921, 6921, 58612, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122727, '2022-10-04', 1863, 115922, 6921, 62240, '2.0000', '1.4316', '1.4316', '2.5000', '2.5000', '120.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122728, '2022-10-04', 1590, 115923, 6922, 63437, '2.0000', '2.4692', '2.4692', '4.0000', '4.0000', '36.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122729, '2022-10-04', 2169, 115924, 6922, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122730, '2022-10-04', 2287, 115925, 6922, 48629, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '23.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122731, '2022-10-04', 1519, 115926, 6922, 64336, '1.0000', '4.0093', '4.0093', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122732, '2022-10-04', 2105, 115927, 6922, 64348, '1.0000', '2.8965', '2.8965', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122733, '2022-10-04', 9999, 115928, 6922, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122734, '2022-10-04', 1342, 115929, 6922, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '16.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122735, '2022-10-04', 1771, 115930, 6922, 64017, '1.0000', '7.7052', '7.7052', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122736, '2022-10-04', 2108, 115931, 6922, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122737, '2022-10-04', 9927, 115932, 6922, 63474, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122738, '2022-10-04', 8744, 115933, 6922, 63450, '1.0000', '2.7786', '2.7786', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122739, '2022-10-04', 9734, 115934, 6922, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '74.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122740, '2022-10-04', 2302, 115935, 6922, 64363, '1.0000', '3.9506', '3.9506', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122741, '2022-10-04', 2068, 115936, 6922, NULL, '1.0000', '13.8346', '13.8346', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122742, '2022-10-04', 2169, 115937, 6922, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122743, '2022-10-04', 3058, 115938, 6922, NULL, '1.0000', '8.2853', '8.2853', '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 (122744, '2022-10-04', 8638, 115939, 6922, NULL, '1.0000', '0.6101', '0.6101', '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 (122745, '2022-10-04', 2754, 115940, 6922, NULL, '4.0000', '0.0800', '0.0800', '0.2000', '0.2000', '-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 (122746, '2022-10-04', 1590, 115941, 6922, 63437, '3.0000', '2.4692', '2.4692', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122747, '2022-10-04', 1912, 115942, 6922, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122748, '2022-10-04', 8208, 115943, 6922, NULL, '4.0000', '63.9119', '63.9119', '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 (122749, '2022-10-04', 1905, 115944, 6922, 62444, '2.0000', '0.5198', '0.5198', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122750, '2022-10-04', 7741, 115945, 6922, NULL, '1.0000', '-174.4114', '-174.4114', '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 (122751, '2022-10-04', 2262, 115946, 6922, 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 (122752, '2022-10-04', 2071, 115947, 6922, 63477, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122753, '2022-10-04', 9909, 115948, 6922, 64068, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122754, '2022-10-04', 1326, 115949, 6922, NULL, '1.0000', '4.3669', '4.3669', '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 (122755, '2022-10-04', 1807, 115950, 6922, 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 (122756, '2022-10-04', 9734, 115951, 6922, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '75.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122757, '2022-10-04', 7816, 115952, 6922, NULL, '1.0000', '10.8300', '10.8300', '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 (122758, '2022-10-04', 1488, 115953, 6923, 61577, '1.0000', '4.2964', '4.2964', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122759, '2022-10-04', 1863, 115954, 6923, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '92.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122760, '2022-10-04', 1841, 115955, 6923, NULL, '2.0000', '0.7630', '0.7630', '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 (122761, '2022-10-04', 7741, 115956, 6923, NULL, '1.0000', '-174.4114', '-174.4114', '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 (122762, '2022-10-04', 9815, 115957, 6923, 62097, '2.0000', '0.9000', '0.9000', '1.2000', '1.2000', '33.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122763, '2022-10-04', 2169, 115958, 6923, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122764, '2022-10-04', 8203, 115959, 6924, NULL, '2.0000', '9.8000', '9.8000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122765, '2022-10-04', 1529, 115960, 6924, 64353, '1.0000', '5.2750', '5.2750', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122766, '2022-10-04', 9100, 115961, 6924, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122767, '2022-10-04', 1425, 115962, 6924, NULL, '1.0000', '10.4986', '10.4986', '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 (122768, '2022-10-04', 2275, 115963, 6924, NULL, '1.0000', '-26.2984', '-26.2984', '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 (122769, '2022-10-04', 1839, 115964, 6924, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (122770, '2022-10-04', 7644, 115965, 6925, 57422, '3.0000', '4.1645', '4.1645', '10.0000', '10.0000', '42.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122771, '2022-10-04', 9942, 115966, 6925, 64258, '1.0000', '8.9119', '8.9119', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122772, '2022-10-04', 7558, 115967, 6925, NULL, '9.0000', '3.3637', '3.3637', '4.5000', '4.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 (122773, '2022-10-04', 8359, 115968, 6925, 63890, '2.0000', '168.8524', '168.8524', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122774, '2022-10-04', 9856, 115969, 6925, 61955, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122775, '2022-10-04', 7756, 115970, 6925, 64274, '1.0000', '33.1850', '33.1850', '53.5000', '53.5000', '1.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122776, '2022-10-04', 7685, 115971, 6925, NULL, '2.0000', '31.2000', '31.2000', '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 (122777, '2022-10-04', 8482, 115972, 6925, 63904, '1.0000', '21.1453', '21.1453', '24.0000', '24.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122778, '2022-10-04', 7867, 115973, 6925, NULL, '2.0000', '2.3130', '2.3130', '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 (122779, '2022-10-04', 1557, 115974, 6925, 63894, '1.0000', '8.1273', '8.1273', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122780, '2022-10-04', 9092, 115975, 6925, 64099, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '284.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122781, '2022-10-04', 9822, 115976, 6925, 50998, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122782, '2022-10-04', 7411, 115977, 6925, 62316, '2.0000', '1.4683', '1.4683', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122783, '2022-10-04', 8622, 115978, 6925, 60140, '1.0000', '-10.3674', '-10.3674', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122784, '2022-10-04', 1947, 115979, 6925, NULL, '1.0000', '-122941.3106', '-122941.3106', '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 (122785, '2022-10-04', 8011, 115980, 6925, 63850, '1.0000', '7.4721', '7.4721', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122786, '2022-10-04', 7913, 115981, 6925, NULL, '1.0000', '0.4833', '0.4833', '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 (122787, '2022-10-04', 8680, 115982, 6925, 64259, '1.0000', '12.5398', '12.5398', '16.5000', '16.5000', '16.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122788, '2022-10-04', 7641, 115983, 6925, 64271, '3.0000', '7.7960', '7.7960', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122789, '2022-10-04', 7472, 115984, 6925, 63901, '1.0000', '6.5164', '6.5164', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122790, '2022-10-04', 8308, 115985, 6925, NULL, '1.0000', '7059.9548', '7059.9548', '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 (122791, '2022-10-04', 8032, 115986, 6925, 61893, '1.0000', '6.9554', '6.9554', '9.5000', '9.5000', '19.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122792, '2022-10-04', 9092, 115987, 6925, 64099, '4.0000', '0.3187', '0.3187', '0.5000', '0.5000', '282.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122793, '2022-10-04', 7828, 115988, 6925, 43531, '1.0000', '8.6250', '8.6250', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122794, '2022-10-04', 7385, 115989, 6925, 63871, '5.0000', '5.4978', '5.4978', '4.5000', '4.5000', '30.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122795, '2022-10-04', 2061, 115990, 6925, 59322, '1.0000', '12.7640', '12.7640', '17.5000', '17.5000', '0.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122796, '2022-10-04', 7753, 115991, 6925, 64237, '1.0000', '3.7188', '3.7188', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122797, '2022-10-04', 2284, 115992, 6925, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122798, '2022-10-04', 7514, 115993, 6925, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122799, '2022-10-04', 8077, 115994, 6925, 62341, '1.0000', '6.2521', '6.2521', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122800, '2022-10-04', 7803, 115995, 6925, NULL, '1.0000', '1.8200', '1.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 (122801, '2022-10-04', 1339, 115996, 6925, 64248, '1.0000', '2.8762', '2.8762', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122802, '2022-10-04', 2315, 115997, 6925, 61885, '2.0000', '0.7648', '0.7648', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122803, '2022-10-04', 8596, 115998, 6925, NULL, '1.0000', '71.0634', '71.0634', '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 (122804, '2022-10-04', 2284, 115999, 6925, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122805, '2022-10-04', 8135, 116000, 6925, 63866, '1.0000', '4.1634', '4.1634', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122806, '2022-10-04', 7651, 116001, 6925, 62284, '1.0000', '3.1373', '3.1373', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122807, '2022-10-04', 9385, 116002, 6925, 46172, '1.0000', '-19.9812', '-19.9812', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122808, '2022-10-04', 8596, 116003, 6925, NULL, '1.0000', '71.0634', '71.0634', '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 (122809, '2022-10-04', 7725, 116004, 6925, 64087, '1.0000', '25.5358', '25.5358', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122810, '2022-10-04', 7457, 116005, 6925, 61924, '1.0000', '5.0562', '5.0562', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122811, '2022-10-04', 8657, 116006, 6925, 63936, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122812, '2022-10-04', 9695, 116007, 6926, 63787, '2.0000', '5.5992', '5.5992', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122813, '2022-10-04', 2565, 116008, 6926, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122814, '2022-10-04', 9729, 116009, 6926, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122815, '2022-10-04', 1612, 116010, 6926, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122816, '2022-10-04', 2260, 116011, 6926, 64362, '1.0000', '5.3723', '5.3723', '8.0000', '8.0000', '19.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122817, '2022-10-04', 1521, 116012, 6926, 62849, '2.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122818, '2022-10-04', 2293, 116013, 6926, NULL, '3.0000', '1.1118', '1.1118', '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 (122819, '2022-10-04', 2315, 116014, 6926, NULL, '1.0000', '0.7700', '0.7700', '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 (122820, '2022-10-04', 2068, 116015, 6926, NULL, '1.0000', '13.8346', '13.8346', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122821, '2022-10-04', 1602, 116016, 6926, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122822, '2022-10-04', 10034, 116017, 6926, NULL, '3.0000', '20.0000', '20.0000', '26.0000', '26.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 (122823, '2022-10-04', 2627, 116018, 6926, 63431, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122824, '2022-10-04', 8186, 116019, 6927, 61866, '3.0000', '1.5581', '1.5581', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122825, '2022-10-04', 7799, 116020, 6927, NULL, '1.0000', '-5.3093', '-5.3093', '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 (122826, '2022-10-04', 9729, 116021, 6927, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122827, '2022-10-04', 9272, 116022, 6927, NULL, '1.0000', '3.1206', '3.1206', '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 (122828, '2022-10-04', 7444, 116023, 6927, 64234, '1.0000', '3.9075', '3.9075', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122829, '2022-10-04', 7377, 116024, 6927, 43088, '2.0000', '5.9667', '5.9667', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122830, '2022-10-04', 7377, 116024, 6927, 43140, '26.0000', '5.9667', '5.9667', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122831, '2022-10-04', 7709, 116025, 6927, 63844, '2.0000', '-29491.3893', '-29491.3893', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122832, '2022-10-04', 7928, 116026, 6927, 61913, '1.0000', '22.6376', '22.6376', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122833, '2022-10-04', 2315, 116027, 6927, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122834, '2022-10-04', 8924, 116028, 6927, 64261, '1.0000', '6.7845', '6.7845', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122835, '2022-10-04', 8924, 116028, 6927, 62322, '2.0000', '6.7845', '6.7845', '10.5000', '10.5000', '21.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122836, '2022-10-04', 7611, 116029, 6927, 63881, '1.0000', '12.2736', '12.2736', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122837, '2022-10-04', 9463, 116030, 6927, 61916, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122838, '2022-10-04', 7524, 116031, 6927, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122839, '2022-10-04', 7675, 116032, 6927, NULL, '2.0000', '1.1222', '1.1222', '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 (122840, '2022-10-04', 2242, 116033, 6927, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '87.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122841, '2022-10-04', 7524, 116034, 6927, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122842, '2022-10-04', 8840, 116035, 6927, NULL, '2.0000', '11.9167', '11.9167', '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 (122843, '2022-10-04', 1771, 116036, 6928, 64017, '1.0000', '7.7052', '7.7052', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122844, '2022-10-04', 1863, 116037, 6928, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '91.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122845, '2022-10-04', 2921, 116038, 6928, 62125, '1.0000', '5.2300', '5.2300', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122846, '2022-10-04', 2057, 116039, 6928, 61497, '1.0000', '1.6496', '1.6496', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122847, '2022-10-04', 1367, 116040, 6928, 63460, '1.0000', '50.5374', '50.5374', '110.0000', '110.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122848, '2022-10-04', 7318, 116041, 6928, NULL, '1.0000', '14.1535', '14.1535', '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 (122849, '2022-10-04', 2851, 116042, 6928, 56427, '1.0000', '59.0000', '59.0000', '78.0000', '78.0000', '1.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122850, '2022-10-04', 9729, 116043, 6928, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122851, '2022-10-04', 2302, 116044, 6928, 64363, '1.0000', '3.9506', '3.9506', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122852, '2022-10-04', 2260, 116045, 6929, 62198, '2.0000', '4.8731', '4.8731', '8.0000', '8.0000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122853, '2022-10-04', 2352, 116046, 6929, 64299, '10.0000', '58.6246', '58.6246', '4.5000', '4.5000', '50.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122854, '2022-10-04', 2281, 116047, 6929, 58765, '10.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122855, '2022-10-04', 2038, 116048, 6929, 63823, '1.0000', '15.2469', '15.2469', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122856, '2022-10-04', 9695, 116049, 6929, 63134, '1.0000', '5.8148', '5.8148', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122857, '2022-10-04', 2131, 116050, 6929, 56352, '1.0000', '12.7932', '12.7932', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 487);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122858, '2022-10-04', 1450, 116051, 6929, NULL, '10.0000', '0.8255', '0.8255', '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 (122859, '2022-10-04', 2167, 116052, 6929, 62792, '1.0000', '2.6902', '2.6902', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122860, '2022-10-04', 2643, 116053, 6929, 63814, '1.0000', '1.0660', '1.0660', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122861, '2022-10-04', 1736, 116054, 6929, 60060, '2.0000', '35.8601', '35.8601', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122862, '2022-10-04', 8649, 116055, 6929, NULL, '2.0000', '29.4000', '29.4000', '30.5000', '30.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 (122863, '2022-10-04', 2821, 116056, 6929, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122864, '2022-10-04', 10003, 116057, 6929, 63364, '2.0000', '3.8000', '3.8000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122865, '2022-10-04', 7819, 116058, 6929, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122866, '2022-10-04', 1904, 116059, 6929, 59962, '3.0000', '19.3805', '19.3805', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122867, '2022-10-04', 2289, 116060, 6929, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '52.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122868, '2022-10-04', 9814, 116061, 6929, 55830, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122869, '2022-10-04', 7411, 116062, 6929, NULL, '5.0000', '1.5882', '1.5882', '2.5000', '2.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 (122870, '2022-10-04', 2821, 116063, 6929, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122871, '2022-10-04', 2089, 116064, 6929, 58586, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122872, '2022-10-04', 2607, 116065, 6929, 9786, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122873, '2022-10-04', 1454, 116066, 6929, 58786, '1.0000', '10.6467', '10.6467', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122874, '2022-10-04', 2656, 116067, 6929, 63816, '3.0000', '1.6094', '1.6094', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122875, '2022-10-04', 1650, 116068, 6929, 62804, '1.0000', '15.9667', '15.9667', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122876, '2022-10-04', 7383, 116069, 6929, NULL, '1.0000', '1.9700', '1.9700', '130.0000', '130.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122877, '2022-10-04', 1425, 116070, 6929, 63971, '1.0000', '7.0936', '7.0936', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122878, '2022-10-04', 9330, 116071, 6929, 55818, '1.0000', '8.6000', '8.6000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122879, '2022-10-04', 7518, 116072, 6929, 56943, '1.0000', '26.2300', '26.2300', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122880, '2022-10-04', 1585, 116073, 6929, 50004, '1.0000', '9.9800', '9.9800', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122881, '2022-10-04', 1602, 116074, 6929, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122882, '2022-10-04', 8627, 116075, 6929, NULL, '1.0000', '6.7500', '6.7500', '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 (122883, '2022-10-04', 7380, 116076, 6929, NULL, '1.0000', '5.6200', '5.6200', '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 (122884, '2022-10-04', 1585, 116077, 6929, 50004, '1.0000', '9.9800', '9.9800', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122885, '2022-10-04', 7753, 116078, 6929, NULL, '1.0000', '-5.4600', '-5.4600', '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 (122886, '2022-10-04', 1347, 116079, 6929, 62725, '3.0000', '2.7178', '2.7178', '6.0000', '6.0000', '36.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122887, '2022-10-04', 7756, 116080, 6929, NULL, '1.0000', '26.9296', '26.9296', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122888, '2022-10-04', 1602, 116081, 6929, 63955, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122889, '2022-10-04', 2050, 116082, 6929, 40299, '1.0000', '6.7500', '6.7500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122890, '2022-10-05', 8482, 116083, 6930, 64061, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122891, '2022-10-05', 2824, 116084, 6930, 58056, '1.0000', '23.0000', '23.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122892, '2022-10-05', 2646, 116085, 6930, 61476, '2.0000', '9.0000', '9.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122893, '2022-10-05', 2558, 116086, 6930, NULL, '2.0000', '6.0000', '6.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 (122894, '2022-10-05', 2565, 116087, 6930, 63479, '1.0000', '0.9118', '0.9118', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122895, '2022-10-05', 2071, 116088, 6930, 63477, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122896, '2022-10-05', 2347, 116089, 6930, 58200, '1.0000', '6.0750', '6.0750', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122897, '2022-10-05', 10037, 116090, 6930, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122898, '2022-10-05', 9734, 116091, 6930, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '70.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122899, '2022-10-05', 1871, 116092, 6930, NULL, '15.0000', '-20821086.1374', '-20821086.1374', '4.5000', '4.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 (122900, '2022-10-05', 9885, 116093, 6930, 63465, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122901, '2022-10-05', 1922, 116094, 6930, 60300, '1.0000', '-11.5000', '-11.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122902, '2022-10-05', 1342, 116095, 6930, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '15.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122903, '2022-10-05', 2965, 116096, 6930, NULL, '2.0000', '-9.3438', '-9.3438', '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 (122904, '2022-10-05', 9927, 116097, 6930, 60359, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122905, '2022-10-05', 2916, 116098, 6930, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (122906, '2022-10-05', 9729, 116099, 6930, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122907, '2022-10-05', 9902, 116100, 6930, 63991, '1.0000', '8.7884', '8.7884', '12.0000', '12.0000', '14.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122908, '2022-10-05', 1521, 116101, 6930, 62849, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122909, '2022-10-05', 1546, 116102, 6931, 48166, '4.0000', '51.6105', '51.6105', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122910, '2022-10-05', 8740, 116103, 6931, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122911, '2022-10-05', 2444, 116104, 6931, 63776, '1.0000', '12.4109', '12.4109', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122912, '2022-10-05', 2548, 116105, 6931, 55634, '1.0000', '7.6792', '7.6792', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122913, '2022-10-05', 7584, 116106, 6931, NULL, '1.0000', '3.1378', '3.1378', '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 (122914, '2022-10-05', 2384, 116107, 6931, NULL, '1.0000', '-312.4992', '-312.4992', '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 (122915, '2022-10-05', 2315, 116108, 6931, NULL, '2.0000', '0.7700', '0.7700', '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 (122916, '2022-10-05', 3060, 116109, 6931, 62114, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122917, '2022-10-05', 2100, 116110, 6931, NULL, '1.0000', '-4.4545', '-4.4545', '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 (122918, '2022-10-05', 9729, 116111, 6931, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122919, '2022-10-05', 1863, 116112, 6931, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '90.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122920, '2022-10-05', 2037, 116113, 6931, 22540, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '1.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 (122921, '2022-10-05', 9942, 116114, 6932, 64341, '1.0000', '12.6556', '12.6556', '18.0000', '18.0000', '17.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122922, '2022-10-05', 9842, 116115, 6932, 64036, '1.0000', '7.3129', '7.3129', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122923, '2022-10-05', 2011, 116116, 6932, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122924, '2022-10-05', 10004, 116117, 6932, 62129, '10.0000', '2.5100', '2.5100', '3.0000', '3.0000', '124.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122925, '2022-10-05', 8420, 116118, 6932, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '12.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122926, '2022-10-05', 7576, 116119, 6932, NULL, '1.0000', '6.9100', '6.9100', '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 (122927, '2022-10-05', 9819, 116120, 6932, 62425, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122928, '2022-10-05', 1771, 116121, 6932, 64017, '1.0000', '7.7052', '7.7052', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122929, '2022-10-05', 8660, 116122, 6933, 43231, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122930, '2022-10-05', 2435, 116123, 6933, 61472, '1.0000', '9.2616', '9.2616', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122931, '2022-10-05', 1499, 116124, 6933, 62833, '3.0000', '0.5150', '0.5150', '0.7000', '0.7000', '22.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122932, '2022-10-05', 9695, 116125, 6933, 63415, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122933, '2022-10-05', 3079, 116126, 6934, 25164, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.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 (122934, '2022-10-05', 8482, 116127, 6934, 64061, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122935, '2022-10-05', 9788, 116128, 6935, 51672, '1.0000', '1.5347', '1.5347', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122936, '2022-10-05', 1863, 116129, 6935, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '89.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122937, '2022-10-05', 2169, 116130, 6935, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '56.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122938, '2022-10-05', 1666, 116131, 6935, 64060, '1.0000', '3.0815', '3.0815', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122939, '2022-10-05', 1450, 116132, 6935, NULL, '5.0000', '0.8483', '0.8483', '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 (122940, '2022-10-05', 7380, 116133, 6936, NULL, '1.0000', '5.6200', '5.6200', '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 (122941, '2022-10-05', 2296, 116134, 6936, 58655, '1.0000', '13.7602', '13.7602', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122942, '2022-10-05', 2296, 116134, 6936, 56966, '1.0000', '13.7602', '13.7602', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122943, '2022-10-05', 2275, 116135, 6936, 32825, '2.0000', '1.0900', '1.0900', '2.5000', '2.5000', '85.0000', 1, 0, NULL, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122944, '2022-10-05', 7999, 116136, 6936, 63397, '1.0000', '-1.6754', '-1.6754', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122945, '2022-10-05', 10003, 116137, 6936, 62255, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122946, '2022-10-05', 2228, 116138, 6936, 63807, '1.0000', '29.8977', '29.8977', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122947, '2022-10-05', 1935, 116139, 6936, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122948, '2022-10-05', 1763, 116140, 6936, 60050, '1.0000', '5.0170', '5.0170', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122949, '2022-10-05', 1488, 116141, 6936, 63962, '1.0000', '7.5041', '7.5041', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122950, '2022-10-05', 9680, 116142, 6936, 63978, '1.0000', '51.0000', '51.0000', '58.0000', '58.0000', '0.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122951, '2022-10-05', 2169, 116143, 6936, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122952, '2022-10-05', 7787, 116144, 6937, NULL, '1.0000', '10.9000', '10.9000', '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 (122953, '2022-10-05', 8101, 116145, 6937, NULL, '2.0000', '1.9700', '1.9700', '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 (122954, '2022-10-05', 7781, 116146, 6937, NULL, '3.0000', '4.2500', '4.2500', '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 (122955, '2022-10-05', 7674, 116147, 6937, NULL, '1.0000', '1.3000', '1.3000', '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 (122956, '2022-10-05', 3074, 116148, 6937, 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 (122957, '2022-10-05', 9499, 116149, 6937, NULL, '1.0000', '22.0000', '22.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 (122958, '2022-10-05', 9160, 116150, 6937, NULL, '1.0000', '15.0000', '15.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 (122959, '2022-10-05', 9399, 116151, 6937, NULL, '1.0000', '0.9800', '0.9800', '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 (122960, '2022-10-05', 7989, 116152, 6937, NULL, '2.0000', '37.8200', '37.8200', '60.0000', '60.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 (122961, '2022-10-05', 7657, 116153, 6937, NULL, '1.0000', '11.3200', '11.3200', '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 (122962, '2022-10-05', 7675, 116154, 6937, NULL, '1.0000', '11.4300', '11.4300', '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 (122963, '2022-10-05', 7879, 116155, 6937, NULL, '1.0000', '1.9800', '1.9800', '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 (122964, '2022-10-05', 7411, 116156, 6937, NULL, '1.0000', '1.3500', '1.3500', '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 (122965, '2022-10-05', 7478, 116157, 6937, NULL, '1.0000', '4.0000', '4.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 (122966, '2022-10-05', 7991, 116158, 6938, NULL, '1.0000', '34.0000', '34.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 (122967, '2022-10-05', 7857, 116159, 6938, 62289, '1.0000', '18.6903', '18.6903', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122968, '2022-10-05', 8814, 116160, 6938, 57568, '10.0000', '-4.3750', '-4.3750', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122969, '2022-10-05', 7460, 116161, 6938, NULL, '3.0000', '294.7000', '294.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 (122970, '2022-10-05', 7490, 116162, 6938, 60806, '10.0000', '2.2232', '2.2232', '0.5000', '0.5000', '108.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122971, '2022-10-05', 7672, 116163, 6938, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122972, '2022-10-05', 8359, 116164, 6938, 63890, '2.0000', '168.8524', '168.8524', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122973, '2022-10-05', 1935, 116165, 6938, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '80.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122974, '2022-10-05', 8924, 116166, 6938, 62322, '1.0000', '6.7845', '6.7845', '10.5000', '10.5000', '20.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122975, '2022-10-05', 9092, 116167, 6938, 64099, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '278.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122976, '2022-10-05', 8649, 116168, 6938, 61789, '1.0000', '20.7066', '20.7066', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122977, '2022-10-05', 8925, 116169, 6938, 59122, '1.0000', '3.5315', '3.5315', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122978, '2022-10-05', 9092, 116170, 6938, 64099, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '278.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122979, '2022-10-05', 7684, 116171, 6938, NULL, '2.0000', '9.0000', '9.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 (122980, '2022-10-05', 1339, 116172, 6938, 64248, '1.0000', '2.8762', '2.8762', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122981, '2022-10-05', 8077, 116173, 6938, 62341, '1.0000', '6.2521', '6.2521', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122982, '2022-10-05', 7650, 116174, 6938, 62283, '1.0000', '4.6533', '4.6533', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122983, '2022-10-05', 7518, 116175, 6938, 63902, '1.0000', '9.5531', '9.5531', '14.5000', '14.5000', '20.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122984, '2022-10-05', 8677, 116176, 6938, 61769, '2.0000', '1.9747', '1.9747', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122985, '2022-10-05', 7708, 116177, 6938, 62286, '1.0000', '8.5118', '8.5118', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122986, '2022-10-05', 8425, 116178, 6938, 64113, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122987, '2022-10-05', 8359, 116179, 6938, 63890, '1.0000', '168.8524', '168.8524', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122988, '2022-10-05', 7593, 116180, 6938, 63927, '1.0000', '3.1830', '3.1830', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122989, '2022-10-05', 7847, 116181, 6938, 64111, '1.0000', '7.7086', '7.7086', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122990, '2022-10-05', 2648, 116182, 6938, NULL, '1.0000', '3.5337', '3.5337', '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 (122991, '2022-10-05', 8767, 116183, 6938, 62526, '1.0000', '4.7726', '4.7726', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122992, '2022-10-05', 8769, 116184, 6938, 62527, '1.0000', '6.5726', '6.5726', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122993, '2022-10-05', 7685, 116185, 6938, NULL, '2.0000', '31.2000', '31.2000', '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 (122994, '2022-10-05', 1339, 116186, 6938, 64248, '1.0000', '2.8762', '2.8762', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122995, '2022-10-05', 7590, 116187, 6938, NULL, '1.0000', '6.0509', '6.0509', '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 (122996, '2022-10-05', 7808, 116188, 6938, 60192, '1.0000', '8.3340', '8.3340', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 516);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122997, '2022-10-05', 9913, 116189, 6938, 56048, '1.0000', '13.2000', '13.2000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122998, '2022-10-05', 7509, 116190, 6938, 63889, '1.0000', '8.7232', '8.7232', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122999, '2022-10-05', 1760, 116191, 6938, 57610, '1.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '57.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123000, '2022-10-05', 9503, 116192, 6938, 61743, '1.0000', '1.2679', '1.2679', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123001, '2022-10-05', 7862, 116193, 6938, NULL, '1.0000', '496.0500', '496.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 (123002, '2022-10-05', 1807, 116194, 6938, NULL, '5.0000', '-34.8462', '-34.8462', '2.5000', '2.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 (123003, '2022-10-05', 9723, 116195, 6938, 51777, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123004, '2022-10-05', 8482, 116196, 6938, 63904, '1.0000', '21.1453', '21.1453', '24.0000', '24.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123005, '2022-10-05', 8756, 116197, 6938, 64102, '1.0000', '8.4902', '8.4902', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123006, '2022-10-05', 8482, 116198, 6938, 63904, '1.0000', '21.1453', '21.1453', '24.0000', '24.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123007, '2022-10-05', 9016, 116199, 6938, NULL, '1.0000', '-8.3000', '-8.3000', '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 (123008, '2022-10-05', 8062, 116200, 6938, NULL, '4.0000', '4.8200', '4.8200', '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 (123009, '2022-10-05', 7591, 116201, 6938, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123010, '2022-10-05', 7444, 116202, 6938, NULL, '1.0000', '3.9075', '3.9075', '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 (123011, '2022-10-05', 8308, 116203, 6938, NULL, '1.0000', '7059.9548', '7059.9548', '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 (123012, '2022-10-05', 7316, 116204, 6938, 63892, '14.0000', '0.9438', '0.9438', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123013, '2022-10-05', 7518, 116205, 6939, 63902, '3.0000', '9.5531', '9.5531', '14.5000', '14.5000', '17.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123014, '2022-10-05', 7666, 116206, 6939, 64278, '1.0000', '6.0708', '6.0708', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123015, '2022-10-05', 7672, 116207, 6939, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123016, '2022-10-05', 8467, 116208, 6939, 61939, '1.0000', '65.6339', '65.6339', '87.0000', '87.0000', '2.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123017, '2022-10-05', 7825, 116209, 6939, 62296, '1.0000', '17.9473', '17.9473', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123018, '2022-10-05', 8254, 116210, 6939, 62330, '1.0000', '30.2813', '30.2813', '43.5000', '43.5000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123019, '2022-10-05', 2100, 116211, 6939, 63909, '2.0000', '2.5550', '2.5550', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123020, '2022-10-05', 7472, 116212, 6939, 63901, '1.0000', '6.5164', '6.5164', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123021, '2022-10-05', 1557, 116213, 6939, 63894, '1.0000', '8.1273', '8.1273', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123022, '2022-10-05', 9271, 116214, 6939, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123023, '2022-10-05', 7912, 116215, 6939, 61729, '1.0000', '12.5176', '12.5176', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123024, '2022-10-05', 7335, 116216, 6939, NULL, '1.0000', '16.9000', '16.9000', '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 (123025, '2022-10-05', 9863, 116217, 6939, 56014, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123026, '2022-10-05', 1644, 116218, 6939, 61872, '1.0000', '39.2690', '39.2690', '53.0000', '53.0000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123027, '2022-10-05', 7490, 116219, 6939, 60806, '2.0000', '2.2232', '2.2232', '0.5000', '0.5000', '106.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123028, '2022-10-05', 9791, 116220, 6940, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '86.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123029, '2022-10-05', 7324, 116221, 6940, 62344, '1.0000', '6.3200', '6.3200', '8.5000', '8.5000', '22.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123030, '2022-10-05', 8063, 116222, 6940, 64260, '1.0000', '-401.5402', '-401.5402', '7.0000', '7.0000', '49.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123031, '2022-10-05', 8216, 116223, 6940, 56061, '1.0000', '23.8333', '23.8333', '27.5000', '27.5000', '2.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123032, '2022-10-05', 7641, 116224, 6940, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123033, '2022-10-05', 7327, 116225, 6940, 56001, '4.0000', '12.7616', '12.7616', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123034, '2022-10-05', 7518, 116226, 6940, 63902, '1.0000', '9.5531', '9.5531', '14.5000', '14.5000', '16.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123035, '2022-10-05', 7348, 116227, 6940, 56003, '1.0000', '29.0648', '29.0648', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123036, '2022-10-05', 8831, 116228, 6940, 53615, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123037, '2022-10-05', 8994, 116229, 6940, 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 (123038, '2022-10-05', 9690, 116230, 6940, 63933, '1.0000', '25.9500', '25.9500', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123039, '2022-10-05', 2320, 116231, 6941, 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 (123040, '2022-10-05', 1531, 116232, 6941, 22267, '3.0000', '0.9600', '0.9600', '2.0000', '2.0000', '33.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 (123041, '2022-10-05', 7376, 116233, 6941, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123042, '2022-10-05', 1874, 116234, 6941, 670, '1.0000', '90.0000', '90.0000', '13.0000', '13.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 (123043, '2022-10-05', 1604, 116235, 6941, 6525, '-6.0000', '34.1212', '34.1212', '50.5000', '50.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 (123044, '2022-10-05', 1604, 116235, 6941, NULL, '8.0000', '34.1212', '34.1212', '50.5000', '50.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 (123045, '2022-10-05', 1504, 116236, 6941, NULL, '10.0000', '1.5000', '1.5000', '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 (123046, '2022-10-05', 1690, 116237, 6941, NULL, '1.0000', '7.1466', '7.1466', '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 (123047, '2022-10-05', 1649, 116238, 6941, 3220, '-5.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 (123048, '2022-10-05', 1649, 116238, 6941, NULL, '6.0000', '11.1900', '11.1900', '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 (123049, '2022-10-05', 8638, 116239, 6941, NULL, '1.0000', '0.5100', '0.5100', '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 (123050, '2022-10-05', 10038, 116240, 6941, NULL, '3.0000', '2.9700', '2.9700', '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 (123051, '2022-10-05', 7802, 116241, 6941, NULL, '2.0000', '0.9200', '0.9200', '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 (123052, '2022-10-05', 2315, 116242, 6941, 2735, '-705.0000', '0.3300', '0.3300', '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 (123053, '2022-10-05', 2315, 116242, 6941, NULL, '708.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-708.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123054, '2022-10-05', 1905, 116243, 6941, 5443, '-16.0000', '0.4000', '0.4000', '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 (123055, '2022-10-05', 1905, 116243, 6941, NULL, '19.0000', '0.4000', '0.4000', '1.0000', '1.0000', '-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 (123056, '2022-10-05', 2379, 116244, 6941, 4032, '-78.0000', '1.5900', '1.5900', '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 (123057, '2022-10-05', 2379, 116244, 6941, NULL, '80.0000', '1.5900', '1.5900', '4.5000', '4.5000', '-80.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123058, '2022-10-05', 1674, 116245, 6941, NULL, '2.0000', '3.6000', '3.6000', '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 (123059, '2022-10-05', 1310, 116246, 6941, NULL, '4.0000', '0.3700', '0.3700', '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 (123060, '2022-10-05', 1840, 116247, 6941, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (123061, '2022-10-05', 2643, 116248, 6941, NULL, '1.0000', '0.8700', '0.8700', '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 (123062, '2022-10-05', 1410, 116249, 6941, NULL, '1.0000', '2.2000', '2.2000', '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 (123063, '2022-10-05', 1831, 116250, 6941, NULL, '1.0000', '8.4400', '8.4400', '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 (123064, '2022-10-05', 1525, 116251, 6941, 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 (123065, '2022-10-05', 1816, 116252, 6941, 22478, '-9.0000', '18.2300', '18.2300', '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 (123066, '2022-10-05', 1816, 116252, 6941, NULL, '10.0000', '18.2300', '18.2300', '33.0000', '33.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 (123067, '2022-10-05', 9724, 116253, 6941, NULL, '1.0000', '20.3000', '20.3000', '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 (123068, '2022-10-05', 2858, 116254, 6941, 17772, '-137.0000', '1.0000', '1.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 (123069, '2022-10-05', 2858, 116254, 6941, NULL, '138.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-138.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123070, '2022-10-05', 2004, 116255, 6941, 6822, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '31.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 (123071, '2022-10-05', 2244, 116256, 6941, NULL, '1.0000', '7.3600', '7.3600', '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 (123072, '2022-10-05', 1874, 116257, 6941, 670, '1.0000', '90.0000', '90.0000', '13.0000', '13.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 (123073, '2022-10-05', 1551, 116258, 6941, 22276, '1.0000', '14.7700', '14.7700', '20.0000', '20.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 (123074, '2022-10-05', 2761, 116259, 6941, NULL, '1.0000', '6.0000', '6.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 (123075, '2022-10-05', 1504, 116260, 6941, NULL, '10.0000', '1.5000', '1.5000', '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 (123076, '2022-10-05', 2656, 116261, 6941, NULL, '1.0000', '1.5000', '1.5000', '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 (123077, '2022-10-05', 2169, 116262, 6941, 10737, '-237.0000', '3.8397', '3.8397', '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 (123078, '2022-10-05', 2169, 116262, 6941, NULL, '238.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-238.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123079, '2022-10-05', 7411, 116263, 6941, NULL, '1.0000', '1.3500', '1.3500', '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 (123080, '2022-10-05', 2289, 116264, 6941, 2949, '-286.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 (123081, '2022-10-05', 2289, 116264, 6941, NULL, '288.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-288.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123082, '2022-10-05', 1840, 116265, 6941, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (123083, '2022-10-05', 1841, 116266, 6941, NULL, '2.0000', '142.5780', '142.5780', '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 (123084, '2022-10-05', 2169, 116267, 6941, 10737, '-237.0000', '3.8397', '3.8397', '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 (123085, '2022-10-05', 2169, 116267, 6941, NULL, '238.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-238.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123086, '2022-10-05', 2655, 116268, 6941, 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 (123087, '2022-10-05', 10038, 116269, 6941, NULL, '2.0000', '2.9700', '2.9700', '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 (123088, '2022-10-05', 1812, 116270, 6941, 8224, '-125.0000', '7.8900', '7.8900', '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 (123089, '2022-10-05', 1812, 116270, 6941, NULL, '126.0000', '7.8900', '7.8900', '14.5000', '14.5000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123090, '2022-10-05', 1387, 116271, 6941, NULL, '1.0000', '10.5068', '10.5068', '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 (123091, '2022-10-05', 2109, 116272, 6941, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '50.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 (123092, '2022-10-05', 1942, 116273, 6941, 5593, '-6.0000', '19.0000', '19.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 (123093, '2022-10-05', 1942, 116273, 6941, NULL, '7.0000', '19.0000', '19.0000', '28.0000', '28.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 (123094, '2022-10-05', 9695, 116274, 6941, NULL, '1.0000', '4.5000', '4.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 (123095, '2022-10-05', 1371, 116275, 6941, 10169, '-17.0000', '5.5000', '5.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 (123096, '2022-10-05', 1371, 116275, 6941, NULL, '18.0000', '5.5000', '5.5000', '10.0000', '10.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 (123097, '2022-10-05', 2109, 116276, 6941, 1053, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '50.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 (123098, '2022-10-05', 1501, 116277, 6941, NULL, '1.0000', '2.0500', '2.0500', '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 (123099, '2022-10-05', 2187, 116278, 6941, 7755, '-4.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 (123100, '2022-10-05', 2187, 116278, 6941, NULL, '5.0000', '7.5000', '7.5000', '15.0000', '15.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 (123101, '2022-10-05', 8208, 116279, 6941, NULL, '2.0000', '33.0000', '33.0000', '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 (123102, '2022-10-05', 10038, 116280, 6941, NULL, '2.0000', '2.9700', '2.9700', '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 (123103, '2022-10-05', 1580, 116281, 6941, 7598, '-65.0000', '0.9900', '0.9900', '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 (123104, '2022-10-05', 1580, 116281, 6941, NULL, '68.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123105, '2022-10-05', 2293, 116282, 6941, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.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 (123106, '2022-10-05', 7411, 116283, 6941, NULL, '2.0000', '1.3500', '1.3500', '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 (123107, '2022-10-05', 9729, 116284, 6941, NULL, '1.0000', '0.6200', '0.6200', '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 (123108, '2022-10-05', 9699, 116285, 6941, 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 (123109, '2022-10-06', 8616, 116286, 6942, NULL, '1.0000', '23.0000', '23.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 (123110, '2022-10-06', 9751, 116287, 6942, 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 (123111, '2022-10-06', 7324, 116288, 6942, NULL, '3.0000', '4.0000', '4.0000', '8.5000', '8.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 (123112, '2022-10-06', 9204, 116289, 6942, NULL, '1.0000', '8.1600', '8.1600', '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 (123113, '2022-10-06', 2656, 116290, 6942, NULL, '2.0000', '1.5000', '1.5000', '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 (123114, '2022-10-06', 7709, 116291, 6942, NULL, '2.0000', '3.5000', '3.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 (123115, '2022-10-06', 1644, 116292, 6942, 3216, '-13.0000', '33.8200', '33.8200', '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 (123116, '2022-10-06', 1644, 116292, 6942, NULL, '14.0000', '33.8200', '33.8200', '53.0000', '53.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 (123117, '2022-10-06', 7853, 116293, 6942, NULL, '1.0000', '13.0000', '13.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 (123118, '2022-10-06', 8011, 116294, 6942, 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 (123119, '2022-10-06', 8097, 116295, 6942, NULL, '2.0000', '3.4000', '3.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 (123120, '2022-10-06', 8677, 116296, 6942, NULL, '2.0000', '1.2800', '1.2800', '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 (123121, '2022-10-06', 7412, 116297, 6942, NULL, '1.0000', '1.5200', '1.5200', '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 (123122, '2022-10-06', 7709, 116298, 6942, NULL, '2.0000', '3.5000', '3.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 (123123, '2022-10-06', 8300, 116299, 6942, NULL, '1.0000', '7.4300', '7.4300', '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 (123124, '2022-10-06', 8072, 116300, 6942, NULL, '8.0000', '6.6000', '6.6000', '8.7000', '8.7000', '-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 (123125, '2022-10-06', 8395, 116301, 6942, NULL, '1.0000', '0.9700', '0.9700', '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 (123126, '2022-10-06', 7552, 116302, 6942, NULL, '1.0000', '4.7500', '4.7500', '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 (123127, '2022-10-06', 9856, 116303, 6942, NULL, '1.0000', '1.6000', '1.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 (123128, '2022-10-06', 2769, 116304, 6942, NULL, '4.0000', '1.5200', '1.5200', '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 (123129, '2022-10-06', 7641, 116305, 6942, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (123130, '2022-10-06', 8039, 116306, 6942, NULL, '1.0000', '14.7500', '14.7500', '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 (123131, '2022-10-06', 7327, 116307, 6942, NULL, '1.0000', '1.0100', '1.0100', '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 (123132, '2022-10-06', 9819, 116308, 6942, NULL, '1.0000', '3.6300', '3.6300', '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 (123133, '2022-10-06', 2315, 116309, 6943, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123134, '2022-10-06', 1841, 116310, 6943, 62748, '8.0000', '0.3143', '0.3143', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123135, '2022-10-06', 1840, 116311, 6943, 62749, '8.0000', '0.2400', '0.2400', '0.5000', '0.5000', '89.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123136, '2022-10-06', 2289, 116312, 6943, 62763, '8.0000', '0.2648', '0.2648', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123137, '2022-10-06', 2109, 116313, 6943, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123138, '2022-10-06', 2730, 116314, 6943, 21547, '2.0000', '1.2000', '1.2000', '2.5000', '2.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 (123139, '2022-10-06', 1912, 116315, 6943, 64302, '2.0000', '0.6912', '0.6912', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123140, '2022-10-06', 1425, 116316, 6943, 63971, '1.0000', '7.0936', '7.0936', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123141, '2022-10-06', 1394, 116317, 6943, 63970, '1.0000', '9.0926', '9.0926', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123142, '2022-10-06', 2506, 116318, 6943, 60090, '1.0000', '4.3139', '4.3139', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123143, '2022-10-06', 9940, 116319, 6943, 63135, '2.0000', '8.5758', '8.5758', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123144, '2022-10-06', 2762, 116320, 6943, 64298, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123145, '2022-10-06', 1863, 116321, 6943, 62240, '10.0000', '1.4316', '1.4316', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123146, '2022-10-06', 7608, 116322, 6943, NULL, '1.0000', '6.9800', '6.9800', '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 (123147, '2022-10-06', 1608, 116323, 6943, 56947, '1.0000', '4.2552', '4.2552', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123148, '2022-10-06', 9736, 116324, 6944, 61906, '1.0000', '4.7288', '4.7288', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123149, '2022-10-06', 7318, 116325, 6944, 61714, '1.0000', '12.7113', '12.7113', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123150, '2022-10-06', 7460, 116326, 6944, NULL, '4.0000', '294.7000', '294.7000', '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 (123151, '2022-10-06', 1827, 116327, 6944, 57572, '3.0000', '0.3194', '0.3194', '0.4000', '0.4000', '64.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123152, '2022-10-06', 9755, 116328, 6944, 61974, '1.0000', '16.5000', '16.5000', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123153, '2022-10-06', 2102, 116329, 6944, NULL, '1.0000', '1.5667', '1.5667', '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 (123154, '2022-10-06', 7743, 116330, 6944, NULL, '3.0000', '2491602.9694', '2491602.9694', '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 (123155, '2022-10-06', 7385, 116331, 6944, 63871, '3.0000', '5.4978', '5.4978', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123156, '2022-10-06', 8739, 116332, 6944, 61970, '1.0000', '17.9896', '17.9896', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123157, '2022-10-06', 2315, 116333, 6944, 61885, '10.0000', '0.7648', '0.7648', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123158, '2022-10-06', 1501, 116334, 6944, 63870, '1.0000', '3.1917', '3.1917', '5.5000', '5.5000', '13.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123159, '2022-10-06', 8849, 116335, 6944, NULL, '1.0000', '1.0700', '1.0700', '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 (123160, '2022-10-06', 2295, 116336, 6944, NULL, '3.0000', '-7.8337', '-7.8337', '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 (123161, '2022-10-06', 2315, 116337, 6944, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123162, '2022-10-06', 9847, 116338, 6944, 60165, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123163, '2022-10-06', 8243, 116339, 6944, 61802, '2.0000', '1.1400', '1.1400', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123164, '2022-10-06', 9286, 116340, 6944, 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 (123165, '2022-10-06', 7709, 116341, 6944, 63844, '2.0000', '-29491.3893', '-29491.3893', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123166, '2022-10-06', 9862, 116342, 6944, 52457, '1.0000', '16.5000', '16.5000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123167, '2022-10-06', 1501, 116343, 6944, 63870, '1.0000', '3.1917', '3.1917', '5.5000', '5.5000', '13.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123168, '2022-10-06', 7672, 116344, 6944, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123169, '2022-10-06', 7548, 116345, 6944, NULL, '1.0000', '3.9186', '3.9186', '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 (123170, '2022-10-06', 7522, 116346, 6944, 60158, '1.0000', '-40.9136', '-40.9136', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123171, '2022-10-06', 7473, 116347, 6944, 61833, '5.0000', '0.5360', '0.5360', '0.7000', '0.7000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123172, '2022-10-06', 8596, 116348, 6944, NULL, '1.0000', '71.0634', '71.0634', '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 (123173, '2022-10-06', 7472, 116349, 6944, 63901, '1.0000', '6.5164', '6.5164', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123174, '2022-10-06', 2316, 116350, 6944, 49405, '1.0000', '51.0000', '51.0000', '70.0000', '70.0000', '2.0000', 1, 0, NULL, 372);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123175, '2022-10-06', 8136, 116351, 6944, NULL, '1.0000', '-4.7978', '-4.7978', '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 (123176, '2022-10-06', 8135, 116352, 6944, 63866, '1.0000', '4.1634', '4.1634', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123177, '2022-10-06', 7674, 116353, 6944, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123178, '2022-10-06', 9092, 116354, 6944, 64099, '4.0000', '0.3187', '0.3187', '0.5000', '0.5000', '272.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123179, '2022-10-06', 9714, 116355, 6944, NULL, '1.0000', '28.1333', '28.1333', '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 (123180, '2022-10-06', 7348, 116356, 6944, 56003, '1.0000', '29.0648', '29.0648', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123181, '2022-10-06', 9202, 116357, 6944, NULL, '2.0000', '2.1700', '2.1700', '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 (123182, '2022-10-06', 7630, 116358, 6944, 59310, '2.0000', '4.5400', '4.5400', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123183, '2022-10-06', 9286, 116359, 6944, 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 (123184, '2022-10-06', 9847, 116360, 6944, 60165, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123185, '2022-10-06', 8136, 116361, 6944, NULL, '1.0000', '-4.7978', '-4.7978', '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 (123186, '2022-10-06', 7457, 116362, 6944, 61924, '1.0000', '5.0562', '5.0562', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123187, '2022-10-06', 7993, 116363, 6944, 60432, '1.0000', '57.5511', '57.5511', '73.0000', '73.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123188, '2022-10-06', 2891, 116364, 6944, 61740, '1.0000', '9.2658', '9.2658', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123189, '2022-10-06', 8039, 116365, 6944, 63925, '1.0000', '15.1250', '15.1250', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123190, '2022-10-06', 8363, 116366, 6944, NULL, '1.0000', '38.0000', '38.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 (123191, '2022-10-06', 8053, 116367, 6944, 61715, '4.0000', '1.4542', '1.4542', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123192, '2022-10-06', 9471, 116368, 6945, 62528, '1.0000', '15.3333', '15.3333', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123193, '2022-10-06', 9214, 116369, 6945, 62515, '1.0000', '8.2466', '8.2466', '24.0000', '24.0000', '5.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123194, '2022-10-06', 7518, 116370, 6945, 63902, '3.0000', '9.5531', '9.5531', '14.5000', '14.5000', '13.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123195, '2022-10-06', 7457, 116371, 6945, 61924, '1.0000', '5.0562', '5.0562', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123196, '2022-10-06', 7457, 116371, 6945, 60437, '1.0000', '5.0562', '5.0562', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123197, '2022-10-06', 9971, 116372, 6945, NULL, '2.0000', '5.8300', '5.8300', '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 (123198, '2022-10-06', 9791, 116373, 6945, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '85.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123199, '2022-10-06', 8172, 116374, 6945, NULL, '1.0000', '40.7000', '40.7000', '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 (123200, '2022-10-06', 8539, 116375, 6945, 64270, '2.0000', '1.8089', '1.8089', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123201, '2022-10-06', 7564, 116376, 6945, 59164, '1.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123202, '2022-10-06', 8889, 116377, 6945, 64096, '1.0000', '41.5193', '41.5193', '55.0000', '55.0000', '2.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123203, '2022-10-06', 8254, 116378, 6945, 62330, '1.0000', '30.2813', '30.2813', '43.5000', '43.5000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123204, '2022-10-06', 7591, 116379, 6945, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123205, '2022-10-06', 7708, 116380, 6945, 62286, '1.0000', '8.5118', '8.5118', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123206, '2022-10-06', 8810, 116381, 6945, 64238, '1.0000', '5.5070', '5.5070', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123207, '2022-10-06', 1760, 116382, 6945, 57610, '2.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '55.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123208, '2022-10-06', 2315, 116383, 6945, 61885, '1.0000', '0.7648', '0.7648', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123209, '2022-10-06', 7459, 116384, 6946, 64242, '20.0000', '8.8882', '8.8882', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123210, '2022-10-06', 8482, 116385, 6946, 63904, '1.0000', '21.1453', '21.1453', '24.0000', '24.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123211, '2022-10-06', 7524, 116386, 6946, 63905, '1.0000', '5.2049', '5.2049', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123212, '2022-10-06', 9399, 116387, 6946, NULL, '1.0000', '0.9803', '0.9803', '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 (123213, '2022-10-06', 7689, 116388, 6946, 60800, '1.0000', '9.1000', '9.1000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123214, '2022-10-06', 2352, 116389, 6947, 64299, '2.0000', '58.6246', '58.6246', '4.5000', '4.5000', '48.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123215, '2022-10-06', 2169, 116390, 6947, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123216, '2022-10-06', 1672, 116391, 6947, 62197, '10.0000', '10.9849', '10.9849', '5.5000', '5.5000', '40.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123217, '2022-10-06', 1347, 116392, 6947, 62725, '3.0000', '2.7178', '2.7178', '6.0000', '6.0000', '33.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123218, '2022-10-06', 2384, 116393, 6947, 62762, '3.0000', '0.4679', '0.4679', '0.8000', '0.8000', '68.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123219, '2022-10-06', 1342, 116394, 6947, 63366, '1.0000', '9.1316', '9.1316', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123220, '2022-10-06', 7524, 116395, 6947, NULL, '1.0000', '11.9500', '11.9500', '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 (123221, '2022-10-06', 7674, 116396, 6947, 62745, '1.0000', '1.4606', '1.4606', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123222, '2022-10-06', 7518, 116397, 6947, NULL, '3.0000', '26.2300', '26.2300', '14.5000', '14.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 (123223, '2022-10-06', 1639, 116398, 6947, NULL, '1.0000', '7.3300', '7.3300', '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 (123224, '2022-10-06', 2379, 116399, 6947, 63969, '1.0000', '2.1297', '2.1297', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123225, '2022-10-06', 1668, 116400, 6947, 58585, '1.0000', '31.4191', '31.4191', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123226, '2022-10-06', 7736, 116401, 6947, NULL, '1.0000', '21.8625', '21.8625', '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 (123227, '2022-10-06', 1308, 116402, 6947, 42946, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123228, '2022-10-06', 2858, 116403, 6947, 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 (123229, '2022-10-06', 9468, 116404, 6947, 58006, '1.0000', '-7.0000', '-7.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123230, '2022-10-06', 7799, 116405, 6947, NULL, '1.0000', '2.0000', '2.0000', '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 (123231, '2022-10-06', 1504, 116406, 6947, 63133, '9.0000', '2.3115', '2.3115', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123232, '2022-10-06', 3033, 116407, 6947, 64311, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123233, '2022-10-06', 1382, 116408, 6947, 52095, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123234, '2022-10-06', 7753, 116409, 6947, NULL, '1.0000', '-5.4600', '-5.4600', '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 (123235, '2022-10-06', 1904, 116410, 6947, 59962, '2.0000', '19.3805', '19.3805', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123236, '2022-10-06', 2379, 116411, 6947, 63969, '1.0000', '2.1297', '2.1297', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123237, '2022-10-06', 1580, 116412, 6947, 61669, '2.0000', '1.3143', '1.3143', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123238, '2022-10-06', 7744, 116413, 6947, NULL, '1.0000', '2.9400', '2.9400', '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 (123239, '2022-10-06', 7819, 116414, 6947, 55761, '1.0000', '12.0769', '12.0769', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123240, '2022-10-06', 2858, 116415, 6947, 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 (123241, '2022-10-06', 1647, 116416, 6947, 59985, '1.0000', '5.8258', '5.8258', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123242, '2022-10-06', 2381, 116417, 6947, 60042, '1.0000', '11.6923', '11.6923', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123243, '2022-10-06', 1863, 116418, 6947, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123244, '2022-10-06', 9695, 116419, 6947, 63134, '1.0000', '5.8148', '5.8148', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123245, '2022-10-06', 8079, 116420, 6947, 62756, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123246, '2022-10-06', 7756, 116421, 6947, NULL, '1.0000', '26.9296', '26.9296', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123247, '2022-10-06', 1689, 116422, 6947, 63961, '1.0000', '14.6124', '14.6124', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123248, '2022-10-06', 7353, 116423, 6947, NULL, '2.0000', '0.1900', '0.1900', '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 (123249, '2022-10-06', 8203, 116424, 6947, NULL, '2.0000', '0.5000', '0.5000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123250, '2022-10-06', 2416, 116425, 6947, 63813, '1.0000', '1.3530', '1.3530', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123251, '2022-10-06', 9747, 116426, 6947, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123252, '2022-10-06', 1620, 116427, 6947, 62795, '2.0000', '2.3564', '2.3564', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123253, '2022-10-06', 2167, 116428, 6947, 62792, '1.0000', '2.6902', '2.6902', '4.0000', '4.0000', '38.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123254, '2022-10-06', 2656, 116429, 6947, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123255, '2022-10-06', 9531, 116430, 6947, 35931, '1.0000', '8.5000', '8.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123256, '2022-10-06', 1409, 116431, 6947, 64293, '1.0000', '13.1044', '13.1044', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123257, '2022-10-06', 2656, 116432, 6947, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123258, '2022-10-06', 7744, 116433, 6947, NULL, '1.0000', '2.9400', '2.9400', '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 (123259, '2022-10-06', 2238, 116434, 6947, 63967, '4.0000', '50.7716', '50.7716', '73.0000', '73.0000', '0.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123260, '2022-10-06', 9204, 116435, 6947, NULL, '1.0000', '8.1600', '8.1600', '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 (123261, '2022-10-06', 1308, 116436, 6947, 42946, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123262, '2022-10-06', 1665, 116437, 6947, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123263, '2022-10-07', 7661, 116438, 6948, NULL, '1.0000', '7.2000', '7.2000', '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 (123264, '2022-10-07', 1498, 116439, 6948, 19685, '-59.0000', '0.3300', '0.3300', '0.7000', '0.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 (123265, '2022-10-07', 1498, 116439, 6948, NULL, '61.0000', '0.3300', '0.3300', '0.7000', '0.7000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123266, '2022-10-07', 9092, 116440, 6948, NULL, '1.0000', '5.2900', '5.2900', '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 (123267, '2022-10-07', 9503, 116441, 6948, NULL, '1.0000', '20.6000', '20.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 (123268, '2022-10-07', 7396, 116442, 6948, NULL, '1.0000', '6.0000', '6.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 (123269, '2022-10-07', 8566, 116443, 6948, NULL, '1.0000', '11.0000', '11.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 (123270, '2022-10-07', 2225, 116444, 6948, 1700, '-11.0000', '14.0000', '14.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 (123271, '2022-10-07', 2225, 116444, 6948, NULL, '12.0000', '14.0000', '14.0000', '25.0000', '25.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 (123272, '2022-10-07', 8727, 116445, 6948, NULL, '1.0000', '13.1300', '13.1300', '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 (123273, '2022-10-07', 9469, 116446, 6948, NULL, '1.0000', '2.3000', '2.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 (123274, '2022-10-07', 9089, 116447, 6948, NULL, '1.0000', '3.8000', '3.8000', '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 (123275, '2022-10-07', 8915, 116448, 6948, 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 (123276, '2022-10-07', 7715, 116449, 6948, NULL, '1.0000', '1.8900', '1.8900', '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 (123277, '2022-10-07', 8677, 116450, 6948, NULL, '3.0000', '1.2800', '1.2800', '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 (123278, '2022-10-07', 9985, 116451, 6948, NULL, '1.0000', '5.8000', '5.8000', '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 (123279, '2022-10-07', 7482, 116452, 6948, NULL, '1.0000', '3.0500', '3.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 (123280, '2022-10-07', 1904, 116453, 6948, 5442, '-111.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 (123281, '2022-10-07', 1904, 116453, 6948, NULL, '112.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-112.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123282, '2022-10-07', 2295, 116454, 6948, 2954, '-89.0000', '0.9600', '0.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 (123283, '2022-10-07', 2295, 116454, 6948, NULL, '92.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123284, '2022-10-07', 7781, 116455, 6948, NULL, '3.0000', '4.2500', '4.2500', '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 (123285, '2022-10-07', 2242, 116456, 6948, 3059, '-120.0000', '0.4800', '0.4800', '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 (123286, '2022-10-07', 2242, 116456, 6948, NULL, '123.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-123.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123287, '2022-10-07', 1841, 116457, 6948, NULL, '4.0000', '142.5780', '142.5780', '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 (123288, '2022-10-07', 1840, 116458, 6948, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (123289, '2022-10-07', 2289, 116459, 6948, 2949, '-288.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 (123290, '2022-10-07', 2289, 116459, 6948, NULL, '292.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-292.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123291, '2022-10-07', 7363, 116460, 6948, NULL, '1.0000', '9.0000', '9.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 (123292, '2022-10-07', 8279, 116461, 6948, NULL, '1.0000', '6.0000', '6.0000', '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 (123293, '2022-10-07', 8769, 116462, 6948, NULL, '2.0000', '6.6000', '6.6000', '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 (123294, '2022-10-07', 8745, 116463, 6948, NULL, '1.0000', '8.0000', '8.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 (123295, '2022-10-07', 8934, 116464, 6948, 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 (123296, '2022-10-07', 8979, 116465, 6948, 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 (123297, '2022-10-07', 7720, 116466, 6948, NULL, '2.0000', '4.5000', '4.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 (123298, '2022-10-07', 9178, 116467, 6948, NULL, '1.0000', '4.0000', '4.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 (123299, '2022-10-07', 8371, 116468, 6948, NULL, '1.0000', '5.0000', '5.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 (123300, '2022-10-07', 7697, 116469, 6948, 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 (123301, '2022-10-07', 7765, 116470, 6948, NULL, '2.0000', '16.0000', '16.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 (123302, '2022-10-07', 7967, 116471, 6948, NULL, '1.0000', '7.0000', '7.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 (123303, '2022-10-07', 7518, 116472, 6948, NULL, '1.0000', '7.8200', '7.8200', '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 (123304, '2022-10-07', 7587, 116473, 6948, NULL, '1.0000', '6.4400', '6.4400', '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 (123305, '2022-10-07', 1809, 116474, 6949, 62803, '2.0000', '10.9433', '10.9433', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123306, '2022-10-07', 2916, 116475, 6949, 63960, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123307, '2022-10-07', 8065, 116476, 6949, NULL, '1.0000', '-88.3120', '-88.3120', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123308, '2022-10-07', 9671, 116477, 6949, 42217, '1.0000', '10.9300', '10.9300', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123309, '2022-10-07', 1812, 116478, 6949, 63951, '1.0000', '9.0027', '9.0027', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123310, '2022-10-07', 7385, 116479, 6949, 55490, '10.0000', '2.6553', '2.6553', '4.5000', '4.5000', '8.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123311, '2022-10-07', 2738, 116480, 6949, 64322, '2.0000', '9.1758', '9.1758', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123312, '2022-10-07', 1501, 116481, 6949, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '13.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123313, '2022-10-07', 1371, 116482, 6949, 41971, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123314, '2022-10-07', 2004, 116483, 6949, 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 (123315, '2022-10-07', 7639, 116484, 6949, NULL, '1.0000', '5.8250', '5.8250', '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 (123316, '2022-10-07', 2416, 116485, 6949, 63813, '1.0000', '1.3530', '1.3530', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123317, '2022-10-07', 9822, 116486, 6949, 55489, '1.0000', '23.8000', '23.8000', '31.5000', '31.5000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123318, '2022-10-07', 1765, 116487, 6949, 62771, '1.0000', '6.6554', '6.6554', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123319, '2022-10-07', 7709, 116488, 6950, NULL, '2.0000', '3.5000', '3.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 (123320, '2022-10-07', 7636, 116489, 6950, NULL, '4.0000', '2.5000', '2.5000', '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 (123321, '2022-10-07', 7339, 116490, 6951, 56741, '10.0000', '-3.8719', '-3.8719', '0.9000', '0.9000', '49.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123322, '2022-10-07', 9856, 116491, 6952, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123323, '2022-10-07', 2965, 116492, 6952, NULL, '1.0000', '-9.3438', '-9.3438', '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 (123324, '2022-10-07', 1837, 116493, 6952, 58241, '1.0000', '1.6080', '1.6080', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123325, '2022-10-07', 1602, 116494, 6952, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123326, '2022-10-07', 1839, 116495, 6952, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (123327, '2022-10-07', 1602, 116496, 6952, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123328, '2022-10-07', 1867, 116497, 6952, 64357, '2.0000', '11.5326', '11.5326', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123329, '2022-10-07', 2105, 116498, 6952, 64348, '2.0000', '2.8965', '2.8965', '4.5000', '4.5000', '17.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123330, '2022-10-07', 2250, 116499, 6952, 64347, '1.0000', '9.7061', '9.7061', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123331, '2022-10-07', 2270, 116500, 6952, 61546, '1.0000', '5.1971', '5.1971', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123332, '2022-10-07', 7777, 116501, 6952, NULL, '1.0000', '9.5000', '9.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 (123333, '2022-10-07', 9734, 116502, 6952, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '67.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123334, '2022-10-07', 8155, 116503, 6952, NULL, '5.0000', '65.0000', '65.0000', '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 (123335, '2022-10-07', 2307, 116504, 6952, 60244, '1.0000', '224.4900', '224.4900', '247.0000', '247.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123336, '2022-10-07', 7496, 116505, 6952, 64056, '1.0000', '4.6129', '4.6129', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123337, '2022-10-07', 9848, 116506, 6952, 58262, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123338, '2022-10-07', 1825, 116507, 6952, 64360, '1.0000', '8.6857', '8.6857', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123339, '2022-10-07', 9942, 116508, 6952, 64341, '1.0000', '12.6556', '12.6556', '18.0000', '18.0000', '16.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123340, '2022-10-07', 10003, 116509, 6952, 64055, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123341, '2022-10-07', 9736, 116510, 6952, NULL, '1.0000', '5.2083', '5.2083', '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 (123342, '2022-10-07', 1519, 116511, 6952, 64336, '1.0000', '4.0093', '4.0093', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123343, '2022-10-07', 1612, 116512, 6952, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123344, '2022-10-07', 1450, 116513, 6952, NULL, '3.0000', '0.8483', '0.8483', '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 (123345, '2022-10-07', 8746, 116514, 6952, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123346, '2022-10-07', 2169, 116515, 6952, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123347, '2022-10-07', 8711, 116516, 6952, NULL, '1.0000', '5.1000', '5.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 (123348, '2022-10-07', 1342, 116517, 6952, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '14.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123349, '2022-10-07', 1590, 116518, 6952, 63437, '2.0000', '2.4692', '2.4692', '4.0000', '4.0000', '31.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123350, '2022-10-07', 9840, 116519, 6952, 62133, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123351, '2022-10-07', 1628, 116520, 6952, 64005, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123352, '2022-10-07', 8740, 116521, 6952, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123353, '2022-10-07', 9986, 116522, 6952, 62388, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123354, '2022-10-07', 1720, 116523, 6952, NULL, '7.0000', '0.5800', '0.5800', '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 (123355, '2022-10-07', 1314, 116524, 6952, 53233, '1.0000', '1.5721', '1.5721', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123356, '2022-10-07', 1314, 116525, 6952, 53233, '2.0000', '1.5721', '1.5721', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123357, '2022-10-07', 2413, 116526, 6952, NULL, '2.0000', '1.0500', '1.0500', '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 (123358, '2022-10-07', 7411, 116527, 6952, NULL, '1.0000', '1.2819', '1.2819', '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 (123359, '2022-10-07', 2315, 116528, 6952, 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 (123360, '2022-10-07', 2821, 116529, 6952, NULL, '1.0000', '-8.7105', '-8.7105', '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 (123361, '2022-10-07', 1935, 116530, 6952, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123362, '2022-10-07', 9734, 116531, 6952, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '68.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123363, '2022-10-07', 9997, 116532, 6952, 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 (123364, '2022-10-07', 2035, 116533, 6952, 59676, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123365, '2022-10-07', 1976, 116534, 6952, NULL, '1.0000', '7.4074', '7.4074', '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 (123366, '2022-10-07', 2169, 116535, 6952, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '55.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123367, '2022-10-07', 8141, 116536, 6952, NULL, '1.0000', '3.0000', '3.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 (123368, '2022-10-07', 1855, 116537, 6952, NULL, '2.0000', '1.3131', '1.3131', '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 (123369, '2022-10-07', 2376, 116538, 6952, 48940, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123370, '2022-10-07', 7746, 116539, 6952, NULL, '1.0000', '2.8600', '2.8600', '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 (123371, '2022-10-07', 9909, 116540, 6952, 64068, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123372, '2022-10-07', 2293, 116541, 6952, NULL, '3.0000', '1.1118', '1.1118', '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 (123373, '2022-10-07', 2440, 116542, 6952, 63775, '1.0000', '7.0302', '7.0302', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123374, '2022-10-07', 8835, 116543, 6952, 63769, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123375, '2022-10-07', 7787, 116544, 6953, 64235, '1.0000', '18.5243', '18.5243', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123376, '2022-10-07', 7514, 116545, 6953, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '42.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123377, '2022-10-07', 7509, 116546, 6953, 63889, '1.0000', '8.7232', '8.7232', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123378, '2022-10-07', 7591, 116547, 6953, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123379, '2022-10-07', 7685, 116548, 6953, NULL, '1.0000', '31.2000', '31.2000', '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 (123380, '2022-10-07', 1339, 116549, 6953, 64248, '1.0000', '2.8762', '2.8762', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123381, '2022-10-07', 7709, 116550, 6953, 63844, '2.0000', '-29491.3893', '-29491.3893', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123382, '2022-10-07', 9092, 116551, 6953, 64099, '1.0000', '0.3187', '0.3187', '0.5000', '0.5000', '271.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123383, '2022-10-07', 8061, 116552, 6953, 64101, '1.0000', '15.8686', '15.8686', '10.5000', '10.5000', '16.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123384, '2022-10-07', 9892, 116553, 6953, 62564, '2.0000', '13.2500', '13.2500', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123385, '2022-10-07', 7674, 116554, 6953, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123386, '2022-10-07', 7672, 116555, 6953, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123387, '2022-10-07', 7318, 116556, 6953, 61714, '1.0000', '12.7113', '12.7113', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123388, '2022-10-07', 9534, 116557, 6953, 60409, '1.0000', '19.8900', '19.8900', '26.5000', '26.5000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123389, '2022-10-07', 1644, 116558, 6953, 61872, '1.0000', '39.2690', '39.2690', '53.0000', '53.0000', '3.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123390, '2022-10-07', 7859, 116559, 6953, 64406, '1.0000', '14.5981', '14.5981', '21.5000', '21.5000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123391, '2022-10-07', 9190, 116560, 6953, 61759, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123392, '2022-10-07', 10003, 116561, 6953, 64381, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123393, '2022-10-07', 7526, 116562, 6953, 61850, '1.0000', '-174.2425', '-174.2425', '21.5000', '21.5000', '0.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123394, '2022-10-07', 7921, 116563, 6953, NULL, '2.0000', '0.3000', '0.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 (123395, '2022-10-07', 7612, 116564, 6953, NULL, '2.0000', '2.3846', '2.3846', '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 (123396, '2022-10-07', 2255, 116565, 6953, NULL, '1.0000', '46.3922', '46.3922', '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 (123397, '2022-10-07', 7339, 116566, 6953, 56611, '10.0000', '-85.2778', '-85.2778', '0.9000', '0.9000', '60.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123398, '2022-10-07', 7382, 116567, 6953, 64382, '1.0000', '8.9452', '8.9452', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123399, '2022-10-07', 7411, 116568, 6953, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123400, '2022-10-07', 7638, 116569, 6953, 61741, '1.0000', '9.8651', '9.8651', '22.5000', '22.5000', '10.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123401, '2022-10-07', 2140, 116570, 6953, 46629, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123402, '2022-10-07', 7591, 116571, 6953, 60795, '1.0000', '-17.1345', '-17.1345', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123403, '2022-10-07', 7657, 116572, 6953, 63874, '1.0000', '14.8211', '14.8211', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123404, '2022-10-07', 7411, 116573, 6954, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123405, '2022-10-07', 9092, 116574, 6954, 64099, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '269.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123406, '2022-10-07', 2506, 116575, 6954, 61907, '1.0000', '4.6900', '4.6900', '8.0000', '8.0000', '11.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123407, '2022-10-07', 7820, 116576, 6954, 62299, '1.0000', '17.4262', '17.4262', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123408, '2022-10-07', 8017, 116577, 6954, 59111, '6.0000', '0.6000', '0.6000', '1.0000', '1.0000', '60.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123409, '2022-10-07', 1557, 116578, 6954, 63894, '1.0000', '8.1273', '8.1273', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123410, '2022-10-07', 7588, 116579, 6954, 63880, '1.0000', '8.3906', '8.3906', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123411, '2022-10-07', 9092, 116580, 6954, 64099, '5.0000', '0.3187', '0.3187', '0.5000', '0.5000', '266.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123412, '2022-10-07', 7859, 116581, 6954, 64406, '1.0000', '14.5981', '14.5981', '21.5000', '21.5000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123413, '2022-10-07', 8825, 116582, 6954, 61861, '1.0000', '15.0000', '15.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123414, '2022-10-07', 7412, 116583, 6954, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123415, '2022-10-07', 8949, 116584, 6954, 64088, '1.0000', '7.5301', '7.5301', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123416, '2022-10-07', 2642, 116585, 6954, NULL, '1.0000', '-15.5450', '-15.5450', '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 (123417, '2022-10-07', 9092, 116586, 6954, 64099, '2.0000', '0.3187', '0.3187', '0.5000', '0.5000', '269.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123418, '2022-10-07', 2427, 116587, 6954, 57576, '1.0000', '6.8000', '6.8000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123419, '2022-10-07', 2858, 116588, 6955, NULL, '2.0000', '1.0000', '1.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 (123420, '2022-10-07', 7339, 116589, 6955, 56741, '10.0000', '-3.8719', '-3.8719', '0.9000', '0.9000', '39.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123421, '2022-10-07', 1935, 116590, 6955, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123422, '2022-10-07', 7999, 116591, 6955, 63397, '1.0000', '-1.6754', '-1.6754', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123423, '2022-10-07', 1961, 116592, 6955, 60069, '1.0000', '20.4212', '20.4212', '35.0000', '35.0000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123424, '2022-10-07', 7383, 116593, 6955, NULL, '1.0000', '1.9700', '1.9700', '130.0000', '130.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123425, '2022-10-07', 1650, 116594, 6955, 62804, '1.0000', '15.9667', '15.9667', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123426, '2022-10-07', 1863, 116595, 6955, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123427, '2022-10-07', 7412, 116596, 6955, NULL, '1.0000', '1.5200', '1.5200', '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 (123428, '2022-10-07', 1863, 116597, 6955, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123429, '2022-10-07', 2656, 116598, 6955, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123430, '2022-10-07', 2015, 116599, 6955, 63825, '1.0000', '9.1875', '9.1875', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123431, '2022-10-07', 2004, 116600, 6955, 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 (123432, '2022-10-07', 1665, 116601, 6955, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123433, '2022-10-07', 2416, 116602, 6955, 63813, '1.0000', '1.3530', '1.3530', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123434, '2022-10-07', 1339, 116603, 6955, 62720, '1.0000', '2.0694', '2.0694', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123435, '2022-10-07', 1620, 116604, 6955, 62795, '8.0000', '2.3564', '2.3564', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123436, '2022-10-07', 1812, 116605, 6955, 63951, '1.0000', '9.0027', '9.0027', '14.5000', '14.5000', '6.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123437, '2022-10-07', 8482, 116606, 6955, 63968, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123438, '2022-10-07', 1912, 116607, 6955, 64302, '1.0000', '0.6912', '0.6912', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123439, '2022-10-07', 1425, 116608, 6955, 63971, '1.0000', '7.0936', '7.0936', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123440, '2022-10-07', 1863, 116609, 6955, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123441, '2022-10-07', 2858, 116610, 6955, 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 (123442, '2022-10-07', 2821, 116611, 6955, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123443, '2022-10-07', 2352, 116612, 6955, 64299, '2.0000', '58.6246', '58.6246', '4.5000', '4.5000', '46.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123444, '2022-10-07', 1409, 116613, 6955, 64293, '1.0000', '13.1044', '13.1044', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123445, '2022-10-07', 9996, 116614, 6955, 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 (123446, '2022-10-07', 9471, 116615, 6955, 60509, '1.0000', '15.0800', '15.0800', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123447, '2022-10-07', 1912, 116616, 6955, 64302, '2.0000', '0.6912', '0.6912', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123448, '2022-10-07', 1783, 116617, 6955, 63956, '1.0000', '4.1997', '4.1997', '16.5000', '16.5000', '8.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123449, '2022-10-07', 1639, 116618, 6955, NULL, '1.0000', '7.3300', '7.3300', '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 (123450, '2022-10-07', 2320, 116619, 6955, 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 (123451, '2022-10-07', 7802, 116620, 6956, NULL, '3.0000', '1.1497', '1.1497', '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 (123452, '2022-10-07', 2821, 116621, 6956, NULL, '1.0000', '-8.7105', '-8.7105', '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 (123453, '2022-10-07', 9856, 116622, 6956, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123454, '2022-10-07', 2163, 116623, 6956, 64073, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123455, '2022-10-07', 1688, 116624, 6956, 62867, '1.0000', '23.7000', '23.7000', '31.5000', '31.5000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123456, '2022-10-07', 9740, 116625, 6956, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '60.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123457, '2022-10-07', 1557, 116626, 6956, NULL, '1.0000', '8.2500', '8.2500', '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 (123458, '2022-10-07', 7411, 116627, 6956, NULL, '4.0000', '1.2819', '1.2819', '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 (123459, '2022-10-07', 1499, 116628, 6956, 62833, '2.0000', '0.5150', '0.5150', '0.7000', '0.7000', '20.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123460, '2022-10-07', 1715, 116629, 6956, 63466, '1.0000', '7.8053', '7.8053', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123461, '2022-10-07', 1945, 116630, 6956, NULL, '1.0000', '9.9667', '9.9667', '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 (123462, '2022-10-07', 8165, 116631, 6956, 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 (123463, '2022-10-07', 2921, 116632, 6956, NULL, '1.0000', '5.2300', '5.2300', '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 (123464, '2022-10-07', 1668, 116633, 6956, 64053, '1.0000', '19.2677', '19.2677', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123465, '2022-10-07', 1888, 116634, 6956, 64334, '1.0000', '21.1831', '21.1831', '36.0000', '36.0000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123466, '2022-10-07', 1874, 116635, 6956, NULL, '1.0000', '-24.5000', '-24.5000', '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 (123467, '2022-10-07', 1912, 116636, 6956, 62852, '3.0000', '0.6540', '0.6540', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123468, '2022-10-07', 7756, 116637, 6956, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123469, '2022-10-07', 1783, 116638, 6956, 63417, '3.0000', '17.5778', '17.5778', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123470, '2022-10-07', 2256, 116639, 6956, NULL, '1.0000', '16.6000', '16.6000', '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 (123471, '2022-10-07', 7411, 116640, 6956, NULL, '3.0000', '1.2819', '1.2819', '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 (123472, '2022-10-07', 9748, 116641, 6956, 64012, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123473, '2022-10-07', 1837, 116642, 6956, 58241, '1.0000', '1.6080', '1.6080', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123474, '2022-10-07', 2169, 116643, 6956, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123475, '2022-10-07', 9791, 116644, 6956, 62105, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123476, '2022-10-07', 2823, 116645, 6956, NULL, '1.0000', '-56.9700', '-56.9700', '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 (123477, '2022-10-07', 8183, 116646, 6956, NULL, '1.0000', '5849.4008', '5849.4008', '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 (123478, '2022-10-07', 2105, 116647, 6956, 64348, '1.0000', '2.8965', '2.8965', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123479, '2022-10-07', 2270, 116648, 6956, 57702, '1.0000', '5.1971', '5.1971', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123480, '2022-10-07', 2361, 116649, 6956, 42543, '1.0000', '0.4744', '0.4744', '0.6000', '0.6000', '9.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123481, '2022-10-07', 10004, 116650, 6956, 62129, '5.0000', '2.5100', '2.5100', '3.0000', '3.0000', '119.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123482, '2022-10-07', 7954, 116651, 6956, 62424, '4.0000', '1.6365', '1.6365', '4.0000', '4.0000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123483, '2022-10-07', 1822, 116652, 6956, 59618, '20.0000', '2.8001', '2.8001', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123484, '2022-10-07', 7411, 116653, 6956, NULL, '1.0000', '1.2819', '1.2819', '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 (123485, '2022-10-07', 2315, 116654, 6956, NULL, '2.0000', '0.7700', '0.7700', '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 (123486, '2022-10-07', 2730, 116655, 6956, 63990, '1.0000', '2.2167', '2.2167', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123487, '2022-10-07', 2544, 116656, 6956, 62420, '1.0000', '11.5000', '11.5000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123488, '2022-10-07', 8877, 116657, 6956, 62455, '1.0000', '8.0250', '8.0250', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123489, '2022-10-07', 7741, 116658, 6956, NULL, '1.0000', '-174.4114', '-174.4114', '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 (123490, '2022-10-07', 2169, 116659, 6956, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123491, '2022-10-07', 7802, 116660, 6956, NULL, '3.0000', '1.1497', '1.1497', '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 (123492, '2022-10-07', 2242, 116661, 6956, 48481, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123493, '2022-10-07', 1668, 116662, 6956, 64053, '1.0000', '19.2677', '19.2677', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123494, '2022-10-07', 9245, 116663, 6956, NULL, '1.0000', '15.1700', '15.1700', '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 (123495, '2022-10-07', 1812, 116664, 6956, 64343, '1.0000', '8.8177', '8.8177', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123496, '2022-10-07', 7411, 116665, 6956, NULL, '1.0000', '1.2819', '1.2819', '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 (123497, '2022-10-07', 2092, 116666, 6956, 60224, '1.0000', '4.9288', '4.9288', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123498, '2022-10-07', 1493, 116667, 6956, NULL, '1.0000', '-38.6246', '-38.6246', '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 (123499, '2022-10-07', 2315, 116668, 6956, NULL, '1.0000', '0.7700', '0.7700', '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 (123500, '2022-10-07', 1905, 116669, 6956, 62444, '2.0000', '0.5198', '0.5198', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123501, '2022-10-07', 2547, 116670, 6956, NULL, '1.0000', '10.2000', '10.2000', '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 (123502, '2022-10-07', 2169, 116671, 6956, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123503, '2022-10-07', 2366, 116672, 6956, NULL, '1.0000', '-122.9116', '-122.9116', '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 (123504, '2022-10-07', 1519, 116673, 6956, 64336, '1.0000', '4.0093', '4.0093', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123505, '2022-10-07', 1912, 116674, 6956, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123506, '2022-10-07', 1812, 116675, 6956, 64343, '1.0000', '8.8177', '8.8177', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123507, '2022-10-07', 8638, 116676, 6956, NULL, '1.0000', '0.6101', '0.6101', '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 (123508, '2022-10-07', 1602, 116677, 6956, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123509, '2022-10-07', 2169, 116678, 6956, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '53.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123510, '2022-10-07', 2765, 116679, 6956, NULL, '1.0000', '-3.5000', '-3.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 (123511, '2022-10-07', 1519, 116680, 6956, 64336, '1.0000', '4.0093', '4.0093', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123512, '2022-10-07', 1431, 116681, 6956, NULL, '1.0000', '39.8000', '39.8000', '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 (123513, '2022-10-07', 2315, 116682, 6956, NULL, '1.0000', '0.7700', '0.7700', '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 (123514, '2022-10-07', 1665, 116683, 6956, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123515, '2022-10-07', 2643, 116684, 6956, 63446, '1.0000', '1.1168', '1.1168', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123516, '2022-10-07', 8745, 116685, 6956, 61488, '1.0000', '14.0504', '14.0504', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123517, '2022-10-07', 10023, 116686, 6956, 62159, '1.0000', '1.9500', '1.9500', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123518, '2022-10-07', 1450, 116687, 6956, NULL, '10.0000', '0.8483', '0.8483', '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 (123519, '2022-10-07', 2232, 116688, 6956, 62174, '2.0000', '34.6848', '34.6848', '77.0000', '77.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123520, '2022-10-07', 2730, 116689, 6956, 63990, '5.0000', '2.2167', '2.2167', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123521, '2022-10-07', 8482, 116690, 6956, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '23.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123522, '2022-10-07', 7411, 116691, 6956, NULL, '3.0000', '1.2819', '1.2819', '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 (123523, '2022-10-07', 9482, 116692, 6956, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '236.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123524, '2022-10-07', 2167, 116693, 6956, NULL, '1.0000', '-10.2844', '-10.2844', '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 (123525, '2022-10-07', 1435, 116694, 6956, 62146, '1.0000', '23.1000', '23.1000', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123526, '2022-10-07', 9695, 116695, 6956, 63415, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123527, '2022-10-07', 2070, 116696, 6956, 62158, '1.0000', '2.6913', '2.6913', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123528, '2022-10-07', 2384, 116697, 6956, NULL, '2.0000', '-312.4992', '-312.4992', '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 (123529, '2022-10-08', 1863, 116698, 6957, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123530, '2022-10-08', 2167, 116699, 6957, NULL, '1.0000', '-10.2844', '-10.2844', '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 (123531, '2022-10-08', 9740, 116700, 6957, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '59.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123532, '2022-10-08', 2169, 116701, 6957, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '49.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123533, '2022-10-08', 10022, 116702, 6957, 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 (123534, '2022-10-08', 1409, 116703, 6957, 64333, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123535, '2022-10-08', 2366, 116704, 6957, NULL, '2.0000', '-122.9116', '-122.9116', '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 (123536, '2022-10-08', 2287, 116705, 6957, 48629, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123537, '2022-10-08', 9695, 116706, 6957, 63415, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123538, '2022-10-08', 9469, 116707, 6957, NULL, '1.0000', '5.5270', '5.5270', '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 (123539, '2022-10-08', 1513, 116708, 6957, 48583, '1.0000', '14.1672', '14.1672', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123540, '2022-10-08', 9878, 116709, 6957, NULL, '1.0000', '9.6000', '9.6000', '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 (123541, '2022-10-08', 1946, 116710, 6957, NULL, '1.0000', '-16.6692', '-16.6692', '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 (123542, '2022-10-08', 9735, 116711, 6957, 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 (123543, '2022-10-08', 8455, 116712, 6957, NULL, '1.0000', '4.5000', '4.5000', '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 (123544, '2022-10-08', 2762, 116713, 6957, NULL, '1.0000', '7.1000', '7.1000', '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 (123545, '2022-10-08', 8065, 116714, 6957, NULL, '1.0000', '32.0000', '32.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123546, '2022-10-08', 1871, 116715, 6957, NULL, '1.0000', '-20821086.1374', '-20821086.1374', '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 (123547, '2022-10-08', 8595, 116716, 6957, NULL, '1.0000', '-6.6886', '-6.6886', '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 (123548, '2022-10-08', 8482, 116717, 6957, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '22.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123549, '2022-10-08', 1863, 116718, 6957, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '88.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123550, '2022-10-08', 9729, 116719, 6958, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123551, '2022-10-08', 1665, 116720, 6958, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123552, '2022-10-08', 2315, 116721, 6958, NULL, '1.0000', '0.7700', '0.7700', '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 (123553, '2022-10-08', 2169, 116722, 6958, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123554, '2022-10-08', 8979, 116723, 6958, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '31.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123555, '2022-10-08', 1980, 116724, 6958, 61470, '1.0000', '6.4102', '6.4102', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123556, '2022-10-08', 2035, 116725, 6958, 59676, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123557, '2022-10-08', 8746, 116726, 6959, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123558, '2022-10-08', 1602, 116727, 6959, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123559, '2022-10-08', 10003, 116728, 6959, 64055, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123560, '2022-10-08', 2167, 116729, 6960, 62792, '1.0000', '2.6902', '2.6902', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123561, '2022-10-08', 2169, 116730, 6960, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123562, '2022-10-08', 2167, 116731, 6960, 62792, '1.0000', '2.6902', '2.6902', '4.0000', '4.0000', '37.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123563, '2022-10-08', 1863, 116732, 6960, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '104.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123564, '2022-10-08', 1658, 116733, 6960, 49458, '1.0000', '29.3337', '29.3337', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123565, '2022-10-08', 2758, 116734, 6960, 49542, '1.0000', '1.2400', '1.2400', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123566, '2022-10-08', 1841, 116735, 6960, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '84.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123567, '2022-10-08', 1935, 116736, 6960, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123568, '2022-10-08', 1374, 116737, 6960, 34413, '1.0000', '95.6984', '95.6984', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123569, '2022-10-08', 2643, 116738, 6960, 63814, '2.0000', '1.0660', '1.0660', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123570, '2022-10-08', 1532, 116739, 6960, 60037, '1.0000', '22.8160', '22.8160', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123571, '2022-10-08', 1863, 116740, 6960, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '104.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123572, '2022-10-08', 2602, 116741, 6960, 54368, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123573, '2022-10-08', 9999, 116742, 6960, 60929, '2.0000', '3.1000', '3.1000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123574, '2022-10-08', 7509, 116743, 6961, 61880, '2.0000', '8.7232', '8.7232', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123575, '2022-10-08', 9471, 116744, 6961, 62528, '1.0000', '15.3333', '15.3333', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123576, '2022-10-08', 7514, 116745, 6961, 63938, '2.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123577, '2022-10-08', 7641, 116746, 6961, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123578, '2022-10-08', 8657, 116747, 6961, 63936, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123579, '2022-10-08', 7781, 116748, 6961, NULL, '3.0000', '15.5167', '15.5167', '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 (123580, '2022-10-08', 8596, 116749, 6961, NULL, '1.0000', '71.0634', '71.0634', '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 (123581, '2022-10-08', 7641, 116750, 6961, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123582, '2022-10-08', 9098, 116751, 6961, 62343, '2.0000', '26.0000', '26.0000', '34.5000', '34.5000', '5.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123583, '2022-10-08', 8746, 116752, 6961, 62518, '1.0000', '3.7068', '3.7068', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123584, '2022-10-08', 9401, 116753, 6961, NULL, '1.0000', '-0.4067', '-0.4067', '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 (123585, '2022-10-08', 7639, 116754, 6961, 61814, '1.0000', '7.0556', '7.0556', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123586, '2022-10-08', 7753, 116755, 6961, 64237, '2.0000', '3.7188', '3.7188', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123587, '2022-10-08', 7672, 116756, 6961, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123588, '2022-10-08', 7708, 116757, 6961, 62286, '1.0000', '8.5118', '8.5118', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123589, '2022-10-08', 9204, 116758, 6961, 60135, '2.0000', '6.0556', '6.0556', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123590, '2022-10-08', 1904, 116759, 6961, 61745, '2.0000', '157.5719', '157.5719', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123591, '2022-10-08', 9734, 116760, 6961, 61746, '6.0000', '0.3316', '0.3316', '0.7000', '0.7000', '174.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123592, '2022-10-08', 7912, 116761, 6961, 61729, '2.0000', '12.5176', '12.5176', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123593, '2022-10-08', 7708, 116762, 6961, 62286, '1.0000', '8.5118', '8.5118', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123594, '2022-10-08', 9024, 116763, 6961, 57463, '1.0000', '6.1800', '6.1800', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123595, '2022-10-08', 9895, 116764, 6961, 54443, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '38.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123596, '2022-10-08', 7967, 116765, 6961, 63898, '1.0000', '7.3483', '7.3483', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123597, '2022-10-08', 2284, 116766, 6961, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123598, '2022-10-08', 7674, 116767, 6961, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123599, '2022-10-08', 9747, 116768, 6961, 64239, '4.0000', '0.6500', '0.6500', '1.0000', '1.0000', '52.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123600, '2022-10-08', 8017, 116769, 6961, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '58.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123601, '2022-10-08', 9286, 116770, 6961, 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 (123602, '2022-10-08', 2486, 116771, 6961, 62531, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123603, '2022-10-08', 9826, 116772, 6961, 60821, '1.0000', '14.3927', '14.3927', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123604, '2022-10-08', 7640, 116773, 6961, 62314, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123605, '2022-10-08', 2315, 116774, 6961, 64405, '1.0000', '0.7662', '0.7662', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123606, '2022-10-08', 7730, 116775, 6961, 64095, '6.0000', '0.1254', '0.1254', '0.2000', '0.2000', '99.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123607, '2022-10-08', 8020, 116776, 6961, 64375, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123608, '2022-10-08', 9158, 116777, 6961, 61724, '1.0000', '-1.5564', '-1.5564', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123609, '2022-10-08', 9770, 116778, 6961, 64283, '1.0000', '2.5569', '2.5569', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123610, '2022-10-08', 7354, 116779, 6961, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123611, '2022-10-08', 9092, 116780, 6961, 64099, '6.0000', '0.3187', '0.3187', '0.5000', '0.5000', '256.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123612, '2022-10-08', 7777, 116781, 6961, NULL, '1.0000', '-12.0600', '-12.0600', '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 (123613, '2022-10-08', 7930, 116782, 6961, 64379, '4.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123614, '2022-10-08', 9503, 116783, 6961, 61743, '1.0000', '1.2679', '1.2679', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123615, '2022-10-08', 1760, 116784, 6961, 57610, '1.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '54.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123616, '2022-10-08', 7355, 116785, 6961, NULL, '2.0000', '-3.6691', '-3.6691', '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 (123617, '2022-10-08', 7473, 116786, 6961, 61833, '5.0000', '0.5360', '0.5360', '0.7000', '0.7000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123618, '2022-10-08', 9791, 116787, 6961, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '84.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123619, '2022-10-08', 1760, 116788, 6961, 57610, '2.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123620, '2022-10-08', 1914, 116789, 6961, 59325, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123621, '2022-10-08', 7886, 116790, 6961, 63876, '1.0000', '4.9536', '4.9536', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123622, '2022-10-08', 7376, 116791, 6961, 57405, '1.0000', '-177.0400', '-177.0400', '18.7500', '18.7500', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123623, '2022-10-08', 9724, 116792, 6961, 63918, '1.0000', '22.5363', '22.5363', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123624, '2022-10-08', 8470, 116793, 6961, 61736, '1.0000', '58.1000', '58.1000', '77.0000', '77.0000', '1.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123625, '2022-10-08', 1845, 116794, 6961, 63860, '2.0000', '23.2466', '23.2466', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123626, '2022-10-08', 2486, 116795, 6961, 62531, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123627, '2022-10-08', 2242, 116796, 6961, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '84.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123628, '2022-10-08', 2295, 116797, 6961, NULL, '3.0000', '-7.8337', '-7.8337', '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 (123629, '2022-10-08', 7781, 116798, 6961, NULL, '3.0000', '15.5167', '15.5167', '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 (123630, '2022-10-08', 7762, 116799, 6961, 63885, '1.0000', '1.4064', '1.4064', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123631, '2022-10-08', 2104, 116800, 6961, NULL, '1.0000', '0.2000', '0.2000', '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 (123632, '2022-10-08', 1841, 116801, 6961, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123633, '2022-10-08', 8186, 116802, 6961, 61866, '3.0000', '1.5581', '1.5581', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123634, '2022-10-08', 7781, 116803, 6961, NULL, '3.0000', '15.5167', '15.5167', '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 (123635, '2022-10-08', 9814, 116804, 6961, 56194, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123636, '2022-10-08', 9736, 116805, 6961, 61906, '1.0000', '4.7288', '4.7288', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123637, '2022-10-08', 9856, 116806, 6961, 64396, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123638, '2022-10-08', 7708, 116807, 6961, 62286, '1.0000', '8.5118', '8.5118', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123639, '2022-10-08', 8065, 116808, 6961, NULL, '1.0000', '-252.4654', '-252.4654', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123640, '2022-10-08', 7444, 116809, 6961, 64372, '1.0000', '3.9103', '3.9103', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123641, '2022-10-08', 9266, 116810, 6961, NULL, '1.0000', '-4.1667', '-4.1667', '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 (123642, '2022-10-08', 7530, 116811, 6961, 64397, '1.0000', '7.7711', '7.7711', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123643, '2022-10-08', 7590, 116812, 6961, NULL, '1.0000', '6.0509', '6.0509', '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 (123644, '2022-10-08', 2100, 116813, 6961, 63909, '1.0000', '2.5550', '2.5550', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123645, '2022-10-08', 7708, 116814, 6961, 62286, '1.0000', '8.5118', '8.5118', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123646, '2022-10-08', 8925, 116815, 6961, 59122, '1.0000', '3.5315', '3.5315', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123647, '2022-10-08', 7366, 116816, 6962, 61778, '1.0000', '7.2450', '7.2450', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123648, '2022-10-08', 8243, 116817, 6962, 61802, '1.0000', '1.1400', '1.1400', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123649, '2022-10-08', 7989, 116818, 6962, NULL, '1.0000', '86.7429', '86.7429', '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 (123650, '2022-10-08', 8180, 116819, 6962, 56056, '1.0000', '2.3032', '2.3032', '4.0000', '4.0000', '30.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123651, '2022-10-08', 8407, 116820, 6962, 48379, '2.0000', '1.6726', '1.6726', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123652, '2022-10-08', 9456, 116821, 6962, 61948, '1.0000', '3.4963', '3.4963', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123653, '2022-10-08', 7666, 116822, 6962, 64400, '1.0000', '6.0250', '6.0250', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123654, '2022-10-08', 7672, 116823, 6962, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123655, '2022-10-08', 8005, 116824, 6962, 61790, '1.0000', '57.9888', '57.9888', '76.5000', '76.5000', '0.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123656, '2022-10-08', 9788, 116825, 6962, 56595, '2.0000', '1.5400', '1.5400', '3.0000', '3.0000', '62.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123657, '2022-10-08', 7883, 116826, 6962, 62334, '1.0000', '33.8000', '33.8000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123658, '2022-10-08', 8467, 116827, 6962, 61939, '1.0000', '65.6339', '65.6339', '87.0000', '87.0000', '1.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123659, '2022-10-08', 7685, 116828, 6962, NULL, '2.0000', '31.2000', '31.2000', '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 (123660, '2022-10-08', 9825, 116829, 6962, 51007, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123661, '2022-10-08', 9160, 116830, 6962, NULL, '1.0000', '1.3097', '1.3097', '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 (123662, '2022-10-08', 7780, 116831, 6962, 63912, '1.0000', '15.9431', '15.9431', '20.5000', '20.5000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123663, '2022-10-08', 7674, 116832, 6962, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123664, '2022-10-08', 9508, 116833, 6962, 60162, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123665, '2022-10-08', 7411, 116834, 6962, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123666, '2022-10-08', 8918, 116835, 6962, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123667, '2022-10-08', 8878, 116836, 6962, 64386, '1.0000', '0.7033', '0.7033', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123668, '2022-10-08', 1935, 116837, 6962, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123669, '2022-10-08', 8186, 116838, 6962, 61866, '3.0000', '1.5581', '1.5581', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123670, '2022-10-08', 7473, 116839, 6962, 61833, '1.0000', '0.5360', '0.5360', '0.7000', '0.7000', '1.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123671, '2022-10-08', 7385, 116840, 6962, 64401, '8.0000', '5.1760', '5.1760', '4.5000', '4.5000', '72.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123672, '2022-10-08', 7318, 116841, 6962, 61714, '1.0000', '12.7113', '12.7113', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123673, '2022-10-08', 7879, 116842, 6962, 61774, '6.0000', '1.9004', '1.9004', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123674, '2022-10-08', 7927, 116843, 6962, 64275, '1.0000', '13.0326', '13.0326', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123675, '2022-10-08', 7334, 116844, 6962, 63845, '3.0000', '9.7325', '9.7325', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123676, '2022-10-08', 8878, 116845, 6962, 64386, '1.0000', '0.7033', '0.7033', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123677, '2022-10-08', 7675, 116846, 6963, NULL, '1.0000', '1.1222', '1.1222', '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 (123678, '2022-10-08', 7674, 116847, 6963, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123679, '2022-10-08', 9214, 116848, 6963, 62515, '1.0000', '8.2466', '8.2466', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123680, '2022-10-08', 7769, 116849, 6963, NULL, '1.0000', '-3.0909', '-3.0909', '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 (123681, '2022-10-08', 8154, 116850, 6963, NULL, '1.0000', '12.3000', '12.3000', '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 (123682, '2022-10-08', 7753, 116851, 6963, 64237, '1.0000', '3.7188', '3.7188', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123683, '2022-10-08', 7472, 116852, 6963, 63901, '1.0000', '6.5164', '6.5164', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123684, '2022-10-08', 2069, 116853, 6963, 61798, '1.0000', '7.9134', '7.9134', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123685, '2022-10-08', 1501, 116854, 6963, 63870, '1.0000', '3.1917', '3.1917', '5.5000', '5.5000', '11.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123686, '2022-10-08', 9856, 116855, 6963, 64396, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123687, '2022-10-08', 9291, 116856, 6963, 59160, '1.0000', '13.8444', '13.8444', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123688, '2022-10-08', 2342, 116857, 6964, 60051, '4.0000', '2.2694', '2.2694', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123689, '2022-10-08', 1504, 116858, 6964, 63133, '1.0000', '2.3115', '2.3115', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123690, '2022-10-08', 1504, 116858, 6964, 56247, '1.0000', '2.3115', '2.3115', '3.0000', '3.0000', '69.0000', 1, 0, NULL, 485);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123691, '2022-10-08', 2850, 116859, 6964, 61696, '1.0000', '7.4451', '7.4451', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123692, '2022-10-08', 2416, 116860, 6964, 63813, '1.0000', '1.3530', '1.3530', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123693, '2022-10-08', 7930, 116861, 6964, NULL, '1.0000', '1.3000', '1.3000', '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 (123694, '2022-10-08', 2109, 116862, 6964, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123695, '2022-10-08', 7741, 116863, 6964, 58791, '1.0000', '3.4144', '3.4144', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123696, '2022-10-08', 1840, 116864, 6964, 62749, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '87.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123697, '2022-10-08', 1841, 116865, 6964, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123698, '2022-10-08', 2289, 116866, 6964, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '42.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123699, '2022-10-08', 8482, 116867, 6964, NULL, '1.0000', '18.0000', '18.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 (123700, '2022-10-08', 7753, 116868, 6964, NULL, '1.0000', '-5.4600', '-5.4600', '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 (123701, '2022-10-08', 7750, 116869, 6964, NULL, '1.0000', '34.9000', '34.9000', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123702, '2022-10-08', 1772, 116870, 6964, 63369, '1.0000', '6.0812', '6.0812', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123703, '2022-10-08', 1592, 116871, 6964, 63362, '1.0000', '38.8059', '38.8059', '65.0000', '65.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123704, '2022-10-08', 1817, 116872, 6964, 44568, '1.0000', '8.2470', '8.2470', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123705, '2022-10-08', 7746, 116873, 6964, NULL, '7.0000', '2.8600', '2.8600', '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 (123706, '2022-10-08', 9213, 116874, 6964, 60918, '1.0000', '6.8830', '6.8830', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123707, '2022-10-08', 7382, 116875, 6964, 63399, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123708, '2022-10-08', 2327, 116876, 6964, 64308, '1.0000', '3.6450', '3.6450', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123709, '2022-10-08', 7411, 116877, 6964, NULL, '1.0000', '1.5882', '1.5882', '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 (123710, '2022-10-08', 8065, 116878, 6964, NULL, '1.0000', '-88.3120', '-88.3120', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123711, '2022-10-08', 1665, 116879, 6964, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123712, '2022-10-08', 2338, 116880, 6964, 3893, '3.0000', '9.6300', '9.6300', '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 (123713, '2022-10-08', 2020, 116881, 6964, 62236, '1.0000', '7.0334', '7.0334', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123714, '2022-10-08', 2916, 116882, 6964, 63960, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123715, '2022-10-08', 2821, 116883, 6964, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123716, '2022-10-08', 7917, 116884, 6964, NULL, '10.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (123717, '2022-10-08', 2004, 116885, 6964, 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 (123718, '2022-10-08', 2239, 116886, 6964, 58623, '2.0000', '37.9600', '37.9600', '49.5000', '49.5000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123719, '2022-10-08', 1665, 116887, 6965, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123720, '2022-10-08', 9729, 116888, 6965, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123721, '2022-10-08', 9986, 116889, 6965, 62388, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123722, '2022-10-08', 2169, 116890, 6965, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123723, '2022-10-08', 2821, 116891, 6965, NULL, '1.0000', '-8.7105', '-8.7105', '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 (123724, '2022-10-08', 1321, 116892, 6965, NULL, '1.0000', '4.0234', '4.0234', '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 (123725, '2022-10-08', 2236, 116893, 6965, 64003, '1.0000', '7.3620', '7.3620', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123726, '2022-10-08', 7411, 116894, 6965, NULL, '1.0000', '1.2819', '1.2819', '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 (123727, '2022-10-08', 9762, 116895, 6965, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123728, '2022-10-08', 1665, 116896, 6965, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123729, '2022-10-08', 1602, 116897, 6965, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123730, '2022-10-08', 9942, 116898, 6965, 64341, '1.0000', '12.6556', '12.6556', '18.0000', '18.0000', '15.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123731, '2022-10-08', 2260, 116899, 6965, 64362, '4.0000', '5.3723', '5.3723', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123732, '2022-10-08', 7802, 116900, 6965, NULL, '3.0000', '1.1497', '1.1497', '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 (123733, '2022-10-08', 2293, 116901, 6965, NULL, '3.0000', '1.1118', '1.1118', '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 (123734, '2022-10-08', 8079, 116902, 6965, NULL, '1.0000', '16.6100', '16.6100', '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 (123735, '2022-10-08', 9824, 116903, 6965, NULL, '1.0000', '1.3000', '1.3000', '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 (123736, '2022-10-08', 10037, 116904, 6965, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123737, '2022-10-08', 2994, 116905, 6965, 62366, '1.0000', '9.0785', '9.0785', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123738, '2022-10-08', 2169, 116906, 6965, 64332, '1.0000', '1.8363', '1.8363', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123739, '2022-10-08', 8763, 116907, 6965, NULL, '2.0000', '-2.5592', '-2.5592', '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 (123740, '2022-10-08', 1602, 116908, 6965, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123741, '2022-10-08', 1837, 116909, 6965, 58241, '2.0000', '1.6080', '1.6080', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123742, '2022-10-08', 1637, 116910, 6965, 64074, '1.0000', '23.4218', '23.4218', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123743, '2022-10-08', 8744, 116911, 6965, 64420, '1.0000', '2.9320', '2.9320', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123744, '2022-10-08', 7411, 116912, 6965, NULL, '1.0000', '1.2819', '1.2819', '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 (123745, '2022-10-08', 2351, 116913, 6965, 57123, '1.0000', '18.3300', '18.3300', '24.5000', '24.5000', '0.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123746, '2022-10-08', 1398, 116914, 6965, 62145, '1.0000', '13.0286', '13.0286', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123747, '2022-10-08', 9496, 116915, 6965, NULL, '1.0000', '-5.5750', '-5.5750', '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 (123748, '2022-10-08', 1771, 116916, 6965, 64017, '1.0000', '7.7052', '7.7052', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123749, '2022-10-08', 9740, 116917, 6965, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123750, '2022-10-08', 8878, 116918, 6965, 64000, '1.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123751, '2022-10-08', 2302, 116919, 6965, 64363, '1.0000', '3.9506', '3.9506', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123752, '2022-10-08', 1772, 116920, 6965, 64349, '1.0000', '7.0067', '7.0067', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123753, '2022-10-08', 10019, 116921, 6965, 64359, '1.0000', '2.8900', '2.8900', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123754, '2022-10-08', 7785, 116922, 6965, 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 (123755, '2022-10-08', 7886, 116923, 6965, NULL, '1.0000', '14.5000', '14.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 (123756, '2022-10-08', 1665, 116924, 6965, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123757, '2022-10-08', 8740, 116925, 6965, 63480, '2.0000', '2.0585', '2.0585', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123758, '2022-10-08', 1499, 116926, 6965, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '19.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123759, '2022-10-08', 9482, 116927, 6965, 64050, '2.0000', '1.2046', '1.2046', '2.0000', '2.0000', '234.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123760, '2022-10-08', 2643, 116928, 6965, 64418, '1.0000', '1.1342', '1.1342', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123761, '2022-10-08', 9737, 116929, 6965, NULL, '1.0000', '1.6000', '1.6000', '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 (123762, '2022-10-08', 2287, 116930, 6965, 48629, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123763, '2022-10-08', 1822, 116931, 6965, 56458, '20.0000', '2.8001', '2.8001', '4.5000', '4.5000', '31.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123764, '2022-10-08', 2167, 116932, 6965, NULL, '1.0000', '-10.2844', '-10.2844', '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 (123765, '2022-10-08', 2315, 116933, 6965, NULL, '1.0000', '0.7700', '0.7700', '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 (123766, '2022-10-08', 2167, 116934, 6965, NULL, '1.0000', '-10.2844', '-10.2844', '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 (123767, '2022-10-08', 8444, 116935, 6965, 62848, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123768, '2022-10-08', 9856, 116936, 6965, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123769, '2022-10-08', 9740, 116937, 6965, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '58.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123770, '2022-10-08', 1425, 116938, 6965, NULL, '1.0000', '10.4986', '10.4986', '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 (123771, '2022-10-08', 1772, 116939, 6965, 64349, '2.0000', '7.0067', '7.0067', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123772, '2022-10-08', 2302, 116940, 6965, 64363, '2.0000', '3.9506', '3.9506', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123773, '2022-10-08', 1812, 116941, 6965, 64343, '1.0000', '8.8177', '8.8177', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123774, '2022-10-08', 7954, 116942, 6965, 62424, '1.0000', '1.6365', '1.6365', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123775, '2022-10-08', 2327, 116943, 6965, 64344, '2.0000', '3.9127', '3.9127', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123776, '2022-10-08', 1410, 116944, 6965, NULL, '1.0000', '474.8205', '474.8205', '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 (123777, '2022-10-08', 9743, 116945, 6965, 62122, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123778, '2022-10-08', 8844, 116946, 6965, NULL, '1.0000', '6.8542', '6.8542', '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 (123779, '2022-10-08', 2167, 116947, 6965, NULL, '1.0000', '-10.2844', '-10.2844', '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 (123780, '2022-10-08', 2379, 116948, 6965, NULL, '1.0000', '-154.5325', '-154.5325', '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 (123781, '2022-10-08', 1905, 116949, 6965, 62444, '1.0000', '0.5198', '0.5198', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123782, '2022-10-08', 1519, 116950, 6965, 64336, '1.0000', '4.0093', '4.0093', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123783, '2022-10-08', 1812, 116951, 6965, 64343, '1.0000', '8.8177', '8.8177', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123784, '2022-10-08', 8133, 116952, 6965, NULL, '1.0000', '-53034.0892', '-53034.0892', '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 (123785, '2022-10-08', 9482, 116953, 6965, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '235.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123786, '2022-10-08', 1935, 116954, 6965, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123787, '2022-10-08', 9089, 116955, 6965, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123788, '2022-10-08', 1759, 116956, 6965, 23110, '1.0000', '11.5000', '11.5000', '18.0000', '18.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 (123789, '2022-10-08', 9030, 116957, 6965, 64059, '1.0000', '12.9000', '12.9000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123790, '2022-10-08', 7725, 116958, 6966, 58064, '1.0000', '11.1700', '11.1700', '15.0000', '15.0000', '11.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123791, '2022-10-09', 1387, 116959, 6967, 61564, '1.0000', '15.5976', '15.5976', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123792, '2022-10-09', 2011, 116960, 6967, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123793, '2022-10-09', 8744, 116961, 6967, 64420, '1.0000', '2.9320', '2.9320', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123794, '2022-10-09', 1501, 116962, 6967, NULL, '1.0000', '-2.2016', '-2.2016', '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 (123795, '2022-10-09', 1326, 116963, 6967, NULL, '1.0000', '4.3669', '4.3669', '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 (123796, '2022-10-09', 9729, 116964, 6967, 62094, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123797, '2022-10-09', 2167, 116965, 6967, NULL, '1.0000', '-10.2844', '-10.2844', '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 (123798, '2022-10-09', 2656, 116966, 6967, 64416, '3.0000', '1.9078', '1.9078', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123799, '2022-10-09', 7756, 116967, 6967, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123800, '2022-10-09', 1761, 116968, 6967, 60290, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123801, '2022-10-09', 2994, 116969, 6967, 62366, '1.0000', '9.0785', '9.0785', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123802, '2022-10-09', 9577, 116970, 6967, 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 (123803, '2022-10-09', 9748, 116971, 6967, 64012, '1.0000', '2.5300', '2.5300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123804, '2022-10-09', 2316, 116972, 6967, 63770, '2.0000', '51.3977', '51.3977', '70.0000', '70.0000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123805, '2022-10-09', 1521, 116973, 6967, 62849, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123806, '2022-10-09', 1521, 116973, 6967, 63439, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123807, '2022-10-09', 10022, 116974, 6967, 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 (123808, '2022-10-09', 2086, 116975, 6967, NULL, '1.0000', '4.3200', '4.3200', '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 (123809, '2022-10-09', 1787, 116976, 6967, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123810, '2022-10-09', 1837, 116977, 6967, 58241, '1.0000', '1.6080', '1.6080', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123811, '2022-10-09', 1306, 116978, 6967, 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 (123812, '2022-10-09', 2088, 116979, 6967, 64355, '1.0000', '2.8974', '2.8974', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123813, '2022-10-09', 1856, 116980, 6967, NULL, '1.0000', '155.0099', '155.0099', '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 (123814, '2022-10-09', 1609, 116981, 6968, NULL, '1.0000', '33.7500', '33.7500', '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 (123815, '2022-10-09', 9885, 116982, 6968, 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 (123816, '2022-10-09', 2854, 116983, 6968, 64051, '1.0000', '2.0667', '2.0667', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123817, '2022-10-09', 2655, 116984, 6968, 64415, '1.0000', '105.9115', '105.9115', '11.0000', '11.0000', '17.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123818, '2022-10-09', 2656, 116985, 6968, 64416, '1.0000', '1.9078', '1.9078', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123819, '2022-10-09', 1342, 116986, 6968, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '13.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123820, '2022-10-09', 2682, 116987, 6968, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123821, '2022-10-09', 9821, 116988, 6968, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123822, '2022-10-09', 2068, 116989, 6968, NULL, '1.0000', '13.8346', '13.8346', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123823, '2022-10-09', 1771, 116990, 6969, 64017, '1.0000', '7.7052', '7.7052', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123824, '2022-10-09', 2068, 116991, 6969, NULL, '1.0000', '13.8346', '13.8346', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123825, '2022-10-09', 1831, 116992, 6969, 63801, '1.0000', '9.7857', '9.7857', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123826, '2022-10-09', 3028, 116993, 6969, 63771, '1.0000', '0.7380', '0.7380', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123827, '2022-10-09', 2083, 116994, 6970, 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 (123828, '2022-10-09', 7518, 116995, 6971, 64389, '1.0000', '9.7292', '9.7292', '14.5000', '14.5000', '19.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123829, '2022-10-09', 9271, 116996, 6971, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123830, '2022-10-09', 8308, 116997, 6971, NULL, '1.0000', '7059.9548', '7059.9548', '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 (123831, '2022-10-09', 9463, 116998, 6971, 64380, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123832, '2022-10-09', 8878, 116999, 6971, 64386, '2.0000', '0.7033', '0.7033', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123833, '2022-10-09', 9980, 117000, 6971, 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 (123834, '2022-10-09', 7612, 117001, 6971, NULL, '1.0000', '2.3846', '2.3846', '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 (123835, '2022-10-09', 7921, 117002, 6971, NULL, '1.0000', '0.3000', '0.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 (123836, '2022-10-09', 9958, 117003, 6971, 57653, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123837, '2022-10-09', 7774, 117004, 6971, 61858, '1.0000', '6.7456', '6.7456', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123838, '2022-10-09', 7674, 117005, 6971, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123839, '2022-10-09', 7641, 117006, 6971, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123840, '2022-10-09', 8596, 117007, 6971, NULL, '1.0000', '71.0634', '71.0634', '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 (123841, '2022-10-09', 7641, 117008, 6971, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '13.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123842, '2022-10-09', 8924, 117009, 6971, 62322, '1.0000', '6.7845', '6.7845', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123843, '2022-10-09', 2242, 117010, 6971, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '81.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123844, '2022-10-09', 2733, 117011, 6971, 64243, '1.0000', '-3.0000', '-3.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123845, '2022-10-09', 7482, 117012, 6971, 63869, '1.0000', '4.8628', '4.8628', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123846, '2022-10-09', 9092, 117013, 6971, 64099, '3.0000', '0.3187', '0.3187', '0.5000', '0.5000', '253.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123847, '2022-10-09', 2287, 117014, 6971, 61863, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '31.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123848, '2022-10-09', 2102, 117015, 6971, NULL, '1.0000', '1.5667', '1.5667', '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 (123849, '2022-10-09', 8097, 117016, 6971, 61845, '2.0000', '14.9186', '14.9186', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123850, '2022-10-09', 7781, 117017, 6972, NULL, '3.0000', '4.2500', '4.2500', '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 (123851, '2022-10-09', 8208, 117018, 6972, NULL, '1.0000', '33.0000', '33.0000', '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 (123852, '2022-10-09', 2655, 117019, 6972, NULL, '1.0000', '6.5000', '6.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 (123853, '2022-10-09', 7518, 117020, 6972, NULL, '2.0000', '7.8200', '7.8200', '14.5000', '14.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 (123854, '2022-10-09', 7518, 117021, 6972, NULL, '2.0000', '7.8200', '7.8200', '14.5000', '14.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 (123855, '2022-10-09', 9330, 117022, 6972, NULL, '1.0000', '8.6000', '8.6000', '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 (123856, '2022-10-09', 8482, 117023, 6972, NULL, '2.0000', '2.9500', '2.9500', '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 (123857, '2022-10-09', 7703, 117024, 6972, NULL, '1.0000', '22.9900', '22.9900', '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 (123858, '2022-10-09', 3030, 117025, 6972, 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 (123859, '2022-10-09', 9092, 117026, 6972, NULL, '6.0000', '5.2900', '5.2900', '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 (123860, '2022-10-09', 7917, 117027, 6972, NULL, '2.0000', '5.0000', '5.0000', '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 (123861, '2022-10-09', 7558, 117028, 6972, NULL, '1.0000', '1.9700', '1.9700', '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 (123862, '2022-10-09', 9445, 117029, 6972, NULL, '1.0000', '4.5000', '4.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 (123863, '2022-10-09', 7704, 117030, 6972, NULL, '2.0000', '0.4900', '0.4900', '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 (123864, '2022-10-09', 7831, 117031, 6972, NULL, '1.0000', '22.5000', '22.5000', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123865, '2022-10-09', 9576, 117032, 6972, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123866, '2022-10-09', 9671, 117033, 6972, NULL, '1.0000', '10.9300', '10.9300', '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 (123867, '2022-10-09', 7803, 117034, 6972, NULL, '1.0000', '1.8200', '1.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 (123868, '2022-10-09', 7755, 117035, 6972, NULL, '1.0000', '3.5000', '3.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 (123869, '2022-10-09', 7514, 117036, 6972, NULL, '1.0000', '2.2500', '2.2500', '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 (123870, '2022-10-09', 7730, 117037, 6972, NULL, '6.0000', '0.1000', '0.1000', '0.2000', '0.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 (123871, '2022-10-09', 1805, 117038, 6972, NULL, '1.0000', '195.3170', '195.3170', '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 (123872, '2022-10-09', 7411, 117039, 6972, NULL, '1.0000', '1.3500', '1.3500', '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 (123873, '2022-10-09', 7641, 117040, 6972, NULL, '1.0000', '1.9000', '1.9000', '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 (123874, '2022-10-09', 7444, 117041, 6972, 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 (123875, '2022-10-09', 9092, 117042, 6972, NULL, '2.0000', '5.2900', '5.2900', '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 (123876, '2022-10-09', 7354, 117043, 6972, NULL, '2.0000', '0.3700', '0.3700', '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 (123877, '2022-10-09', 9856, 117044, 6972, NULL, '1.0000', '1.6000', '1.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 (123878, '2022-10-09', 7707, 117045, 6972, NULL, '1.0000', '7.0000', '7.0000', '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 (123879, '2022-10-09', 2315, 117046, 6972, 2735, '-708.0000', '0.3300', '0.3300', '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 (123880, '2022-10-09', 2315, 117046, 6972, NULL, '710.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-710.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123881, '2022-10-09', 8596, 117047, 6972, 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 (123882, '2022-10-09', 7514, 117048, 6972, NULL, '1.0000', '2.2500', '2.2500', '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 (123883, '2022-10-09', 7472, 117049, 6972, NULL, '1.0000', '4.1000', '4.1000', '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 (123884, '2022-10-09', 8666, 117050, 6972, NULL, '1.0000', '0.4600', '0.4600', '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 (123885, '2022-10-09', 9469, 117051, 6972, NULL, '1.0000', '2.3000', '2.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 (123886, '2022-10-09', 9866, 117052, 6972, NULL, '1.0000', '9.5500', '9.5500', '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 (123887, '2022-10-09', 7707, 117053, 6972, NULL, '1.0000', '7.0000', '7.0000', '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 (123888, '2022-10-09', 7333, 117054, 6972, NULL, '1.0000', '13.5000', '13.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 (123889, '2022-10-09', 7608, 117055, 6972, NULL, '1.0000', '6.9800', '6.9800', '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 (123890, '2022-10-09', 1480, 117056, 6973, 54382, '1.0000', '30.1500', '30.1500', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123891, '2022-10-09', 8881, 117057, 6973, 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 (123892, '2022-10-09', 7334, 117058, 6973, NULL, '3.0000', '8.1600', '8.1600', '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 (123893, '2022-10-09', 7918, 117059, 6973, NULL, '1.0000', '9.2000', '9.2000', '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 (123894, '2022-10-09', 2109, 117060, 6973, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123895, '2022-10-09', 8677, 117061, 6973, 62232, '1.0000', '2.0894', '2.0894', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123896, '2022-10-09', 8482, 117062, 6973, NULL, '1.0000', '18.0000', '18.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 (123897, '2022-10-09', 9827, 117063, 6973, 61667, '1.0000', '16.6952', '16.6952', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123898, '2022-10-09', 7322, 117064, 6973, NULL, '1.0000', '4.3600', '4.3600', '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 (123899, '2022-10-09', 1425, 117065, 6973, 63971, '1.0000', '7.0936', '7.0936', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123900, '2022-10-09', 2656, 117066, 6973, 63816, '1.0000', '1.6094', '1.6094', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123901, '2022-10-09', 9747, 117067, 6973, 61623, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123902, '2022-10-09', 1602, 117068, 6973, 62203, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123903, '2022-10-09', 1551, 117069, 6973, 55797, '1.0000', '14.7700', '14.7700', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123904, '2022-10-09', 2086, 117070, 6973, 61626, '1.0000', '5.0384', '5.0384', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123905, '2022-10-09', 2110, 117071, 6973, 2630, '1.0000', '35.0000', '35.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 (123906, '2022-10-09', 2169, 117072, 6973, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123907, '2022-10-09', 1807, 117073, 6973, 63391, '5.0000', '-1.5061', '-1.5061', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123908, '2022-10-09', 7546, 117074, 6973, 46741, '1.0000', '16.3300', '16.3300', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 343);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123909, '2022-10-09', 1511, 117075, 6973, 54593, '1.0000', '42.8914', '42.8914', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 463);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123910, '2022-10-09', 8881, 117076, 6973, 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 (123911, '2022-10-09', 2277, 117077, 6973, 63403, '1.0000', '0.4620', '0.4620', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123912, '2022-10-09', 2237, 117078, 6973, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123913, '2022-10-09', 1578, 117079, 6973, 62241, '1.0000', '2.2213', '2.2213', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123914, '2022-10-09', 7411, 117080, 6973, NULL, '2.0000', '1.5882', '1.5882', '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 (123915, '2022-10-09', 1592, 117081, 6973, 63362, '1.0000', '38.8059', '38.8059', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123916, '2022-10-09', 8622, 117082, 6973, 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 (123917, '2022-10-09', 1699, 117083, 6973, 49088, '1.0000', '3.2000', '3.2000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123918, '2022-10-09', 2302, 117084, 6973, 64303, '1.0000', '5.5887', '5.5887', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123919, '2022-10-09', 2431, 117085, 6973, 5818, '2.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 (123920, '2022-10-09', 1867, 117086, 6973, NULL, '1.0000', '6.2173', '6.2173', '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 (123921, '2022-10-09', 2331, 117087, 6973, 62234, '1.0000', '13.8390', '13.8390', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123922, '2022-10-09', 7911, 117088, 6973, NULL, '1.0000', '4.3700', '4.3700', '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 (123923, '2022-10-09', 2273, 117089, 6973, 62754, '1.0000', '3.0795', '3.0795', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123924, '2022-10-09', 2118, 117090, 6973, 2564, '1.0000', '8.5000', '8.5000', '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 (123925, '2022-10-09', 2506, 117091, 6973, 60090, '1.0000', '4.3139', '4.3139', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123926, '2022-10-09', 7745, 117092, 6973, 62217, '1.0000', '8.4200', '8.4200', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123927, '2022-10-09', 2635, 117093, 6973, 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 (123928, '2022-10-09', 7353, 117094, 6973, NULL, '1.0000', '0.1900', '0.1900', '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 (123929, '2022-10-09', 7411, 117095, 6973, NULL, '1.0000', '1.5882', '1.5882', '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 (123930, '2022-10-09', 7672, 117096, 6973, 59981, '1.0000', '1.3852', '1.3852', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123931, '2022-10-09', 2109, 117097, 6973, 40229, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123932, '2022-10-09', 1646, 117098, 6973, 62802, '1.0000', '5.6857', '5.6857', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123933, '2022-10-09', 2250, 117099, 6973, 62778, '1.0000', '8.5329', '8.5329', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123934, '2022-10-09', 7745, 117100, 6973, 62217, '1.0000', '8.4200', '8.4200', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123935, '2022-10-09', 1602, 117101, 6973, 62203, '1.0000', '7.4119', '7.4119', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123936, '2022-10-09', 7743, 117102, 6973, NULL, '1.0000', '1.3100', '1.3100', '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 (123937, '2022-10-09', 2105, 117103, 6973, 63384, '1.0000', '2.1592', '2.1592', '4.5000', '4.5000', '16.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123938, '2022-10-09', 2242, 117104, 6973, 60033, '4.0000', '0.7573', '0.7573', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123939, '2022-10-09', 7756, 117105, 6974, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123940, '2022-10-09', 1650, 117106, 6974, NULL, '1.0000', '25.0124', '25.0124', '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 (123941, '2022-10-09', 9985, 117107, 6974, 60245, '1.0000', '5.8000', '5.8000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123942, '2022-10-09', 7411, 117108, 6974, NULL, '2.0000', '1.2819', '1.2819', '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 (123943, '2022-10-09', 2237, 117109, 6974, 64352, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123944, '2022-10-09', 1863, 117110, 6974, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123945, '2022-10-09', 1368, 117111, 6974, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123946, '2022-10-09', 1863, 117112, 6974, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123947, '2022-10-09', 9695, 117113, 6974, 62386, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123948, '2022-10-09', 2975, 117114, 6974, 58196, '1.0000', '8.3333', '8.3333', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123949, '2022-10-09', 2167, 117115, 6974, NULL, '1.0000', '-10.2844', '-10.2844', '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 (123950, '2022-10-09', 9089, 117116, 6974, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123951, '2022-10-09', 1755, 117117, 6974, 62165, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123952, '2022-10-09', 1674, 117118, 6974, 62110, '1.0000', '5.0303', '5.0303', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123953, '2022-10-09', 8208, 117119, 6974, NULL, '2.0000', '63.9119', '63.9119', '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 (123954, '2022-10-09', 9775, 117120, 6974, NULL, '1.0000', '10.5927', '10.5927', '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 (123955, '2022-10-09', 8638, 117121, 6974, NULL, '1.0000', '0.6101', '0.6101', '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 (123956, '2022-10-09', 3058, 117122, 6974, NULL, '1.0000', '8.2853', '8.2853', '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 (123957, '2022-10-09', 1602, 117123, 6974, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123958, '2022-10-09', 2916, 117124, 6974, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (123959, '2022-10-09', 7328, 117125, 6974, NULL, '2.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123960, '2022-10-09', 1840, 117126, 6974, NULL, '2.0000', '0.2400', '0.2400', '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 (123961, '2022-10-09', 1812, 117127, 6974, 64343, '2.0000', '8.8177', '8.8177', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123962, '2022-10-09', 1905, 117128, 6974, 62444, '2.0000', '0.5198', '0.5198', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123963, '2022-10-09', 1910, 117129, 6974, NULL, '1.0000', '0.5756', '0.5756', '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 (123964, '2022-10-09', 2250, 117130, 6974, 64347, '1.0000', '9.7061', '9.7061', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123965, '2022-10-09', 8844, 117131, 6974, NULL, '1.0000', '6.8542', '6.8542', '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 (123966, '2022-10-09', 1746, 117132, 6974, 62821, '1.0000', '5.2843', '5.2843', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123967, '2022-10-09', 7771, 117133, 6974, 63997, '1.0000', '-3.5000', '-3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123968, '2022-10-09', 2105, 117134, 6974, 64348, '1.0000', '2.8965', '2.8965', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123969, '2022-10-09', 1645, 117135, 6974, NULL, '1.0000', '13.1800', '13.1800', '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 (123970, '2022-10-09', 2295, 117136, 6974, 64361, '3.0000', '1.6767', '1.6767', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123971, '2022-10-09', 9729, 117137, 6974, 62094, '4.0000', '0.6200', '0.6200', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123972, '2022-10-09', 9496, 117138, 6974, NULL, '1.0000', '-5.5750', '-5.5750', '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 (123973, '2022-10-09', 9469, 117139, 6974, NULL, '3.0000', '5.5270', '5.5270', '7.0000', '7.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 (123974, '2022-10-09', 8763, 117140, 6974, NULL, '1.0000', '-2.5592', '-2.5592', '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 (123975, '2022-10-09', 9695, 117141, 6974, 62386, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123976, '2022-10-09', 1602, 117142, 6974, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123977, '2022-10-09', 2655, 117143, 6974, 64415, '1.0000', '105.9115', '105.9115', '11.0000', '11.0000', '16.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123978, '2022-10-09', 2965, 117144, 6974, NULL, '1.0000', '-9.3438', '-9.3438', '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 (123979, '2022-10-09', 8476, 117145, 6974, NULL, '5.0000', '23.0000', '23.0000', '0.6000', '0.6000', '-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 (123980, '2022-10-09', 1863, 117146, 6974, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '86.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123981, '2022-10-09', 2109, 117147, 6974, NULL, '1.0000', '1.4840', '1.4840', '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 (123982, '2022-10-09', 1339, 117148, 6974, 64013, '1.0000', '2.4387', '2.4387', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123983, '2022-10-09', 1665, 117149, 6974, 59912, '2.0000', '1.5573', '1.5573', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123984, '2022-10-09', 2821, 117150, 6974, NULL, '1.0000', '-8.7105', '-8.7105', '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 (123985, '2022-10-09', 8451, 117151, 6974, NULL, '1.0000', '8.5000', '8.5000', '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 (123986, '2022-10-09', 2994, 117152, 6974, 62366, '1.0000', '9.0785', '9.0785', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123987, '2022-10-09', 9791, 117153, 6974, 62105, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123988, '2022-10-09', 2259, 117154, 6974, 57778, '1.0000', '25.7632', '25.7632', '34.0000', '34.0000', '8.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123989, '2022-10-09', 1666, 117155, 6974, 64060, '1.0000', '3.0815', '3.0815', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123990, '2022-10-09', 2089, 117156, 6974, 64076, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123991, '2022-10-09', 1666, 117157, 6974, 64060, '2.0000', '3.0815', '3.0815', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123992, '2022-10-09', 1621, 117158, 6974, 62149, '1.0000', '15.6433', '15.6433', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123993, '2022-10-09', 2916, 117159, 6974, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (123994, '2022-10-09', 9750, 117160, 6974, NULL, '1.0000', '2.3934', '2.3934', '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 (123995, '2022-10-09', 1935, 117161, 6974, 58141, '2.0000', '0.6516', '0.6516', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123996, '2022-10-09', 1863, 117162, 6974, 64030, '2.0000', '1.5107', '1.5107', '2.5000', '2.5000', '85.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123997, '2022-10-09', 9734, 117163, 6974, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '64.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123998, '2022-10-10', 9740, 117164, 6975, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '56.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123999, '2022-10-10', 1637, 117165, 6975, 64074, '1.0000', '23.4218', '23.4218', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124000, '2022-10-10', 2416, 117166, 6975, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124001, '2022-10-10', 1855, 117167, 6975, NULL, '5.0000', '1.3131', '1.3131', '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 (124002, '2022-10-10', 7746, 117168, 6975, NULL, '3.0000', '2.8600', '2.8600', '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 (124003, '2022-10-10', 1841, 117169, 6975, NULL, '2.0000', '0.7630', '0.7630', '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 (124004, '2022-10-10', 1840, 117170, 6975, NULL, '2.0000', '0.2400', '0.2400', '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 (124005, '2022-10-10', 1337, 117171, 6975, 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 (124006, '2022-10-10', 7779, 117172, 6975, NULL, '1.0000', '0.6200', '0.6200', '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 (124007, '2022-10-10', 1425, 117173, 6975, NULL, '2.0000', '10.4986', '10.4986', '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 (124008, '2022-10-10', 8743, 117174, 6975, 64427, '1.0000', '19.5378', '19.5378', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124009, '2022-10-10', 8765, 117175, 6975, 64431, '1.0000', '5.8000', '5.8000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124010, '2022-10-10', 9734, 117176, 6975, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '62.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124011, '2022-10-10', 1688, 117177, 6975, 62867, '1.0000', '23.7000', '23.7000', '31.5000', '31.5000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124012, '2022-10-10', 2337, 117178, 6975, NULL, '1.0000', '33.0000', '33.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124013, '2022-10-10', 2237, 117179, 6975, 64352, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124014, '2022-10-10', 2109, 117180, 6975, NULL, '4.0000', '1.4840', '1.4840', '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 (124015, '2022-10-10', 1781, 117181, 6975, 62072, '1.0000', '5.8957', '5.8957', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124016, '2022-10-10', 1339, 117182, 6975, 64013, '1.0000', '2.4387', '2.4387', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124017, '2022-10-10', 1409, 117183, 6975, 64333, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124018, '2022-10-10', 2283, 117184, 6975, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124019, '2022-10-10', 1501, 117185, 6975, NULL, '1.0000', '-2.2016', '-2.2016', '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 (124020, '2022-10-10', 1602, 117186, 6975, 64351, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124021, '2022-10-10', 1602, 117186, 6975, 62877, '2.0000', '7.9264', '7.9264', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124022, '2022-10-10', 1519, 117187, 6975, 64336, '1.0000', '4.0093', '4.0093', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124023, '2022-10-10', 1671, 117188, 6975, 63416, '1.0000', '102.3591', '102.3591', '82.0000', '82.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124024, '2022-10-10', 7671, 117189, 6975, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124025, '2022-10-10', 1504, 117190, 6975, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '80.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124026, '2022-10-10', 1665, 117191, 6975, 59912, '1.0000', '1.5573', '1.5573', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124027, '2022-10-10', 9683, 117192, 6975, 64421, '1.0000', '2.2267', '2.2267', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124028, '2022-10-10', 2167, 117193, 6975, NULL, '1.0000', '-10.2844', '-10.2844', '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 (124029, '2022-10-10', 2262, 117194, 6975, 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 (124030, '2022-10-10', 9734, 117195, 6975, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '63.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124031, '2022-10-10', 1519, 117196, 6975, 64336, '1.0000', '4.0093', '4.0093', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124032, '2022-10-10', 1812, 117197, 6975, 64343, '1.0000', '8.8177', '8.8177', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124033, '2022-10-10', 1935, 117198, 6975, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124034, '2022-10-10', 9167, 117199, 6976, NULL, '1.0000', '16.1000', '16.1000', '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 (124035, '2022-10-10', 2506, 117200, 6976, 60090, '1.0000', '4.3139', '4.3139', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124036, '2022-10-10', 7608, 117201, 6976, NULL, '1.0000', '6.9800', '6.9800', '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 (124037, '2022-10-10', 2089, 117202, 6976, 58586, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124038, '2022-10-10', 1335, 117203, 6976, 49466, '1.0000', '0.8780', '0.8780', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 377);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124039, '2022-10-10', 7886, 117204, 6976, NULL, '2.0000', '4.5000', '4.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 (124040, '2022-10-10', 1754, 117205, 6976, 64313, '1.0000', '25.8571', '25.8571', '32.0000', '32.0000', '11.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124041, '2022-10-10', 2916, 117206, 6976, 63960, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124042, '2022-10-10', 9452, 117207, 6976, 58600, '1.0000', '53.2000', '53.2000', '66.0000', '66.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124043, '2022-10-10', 1665, 117208, 6976, 62206, '1.0000', '1.3202', '1.3202', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124044, '2022-10-10', 2643, 117209, 6976, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124045, '2022-10-10', 2167, 117210, 6976, 62792, '1.0000', '2.6902', '2.6902', '4.0000', '4.0000', '35.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124046, '2022-10-10', 1863, 117211, 6976, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124047, '2022-10-10', 8079, 117212, 6976, 62756, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124048, '2022-10-10', 1863, 117213, 6976, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124049, '2022-10-10', 9496, 117214, 6976, NULL, '1.0000', '3.8800', '3.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 (124050, '2022-10-10', 1863, 117215, 6976, 62240, '1.0000', '1.4316', '1.4316', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124051, '2022-10-10', 2324, 117216, 6976, 63809, '1.0000', '11.1763', '11.1763', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124052, '2022-10-10', 1935, 117217, 6976, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124053, '2022-10-10', 7558, 117218, 6976, 44706, '4.0000', '2.4013', '2.4013', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 318);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124054, '2022-10-10', 1760, 117219, 6976, 58781, '1.0000', '0.8900', '0.8900', '1.0000', '1.0000', '63.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124055, '2022-10-10', 10038, 117220, 6976, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124056, '2022-10-10', 9999, 117221, 6976, 60929, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124057, '2022-10-10', 1519, 117222, 6976, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124058, '2022-10-10', 1326, 117223, 6976, 58753, '1.0000', '3.6418', '3.6418', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124059, '2022-10-10', 1493, 117224, 6976, 52228, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124060, '2022-10-10', 2406, 117225, 6976, 58580, '1.0000', '21.7771', '21.7771', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124061, '2022-10-10', 9731, 117226, 6976, 55494, '2.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124062, '2022-10-10', 1410, 117227, 6976, 61607, '2.0000', '2.9736', '2.9736', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124063, '2022-10-10', 2354, 117228, 6976, 62755, '1.0000', '5.6092', '5.6092', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124064, '2022-10-10', 2302, 117229, 6976, 64303, '1.0000', '5.5887', '5.5887', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124065, '2022-10-10', 2916, 117230, 6976, 63960, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124066, '2022-10-10', 7587, 117231, 6977, NULL, '1.0000', '6.4400', '6.4400', '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 (124067, '2022-10-10', 8011, 117232, 6977, 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 (124068, '2022-10-10', 8658, 117233, 6977, NULL, '1.0000', '17.6000', '17.6000', '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 (124069, '2022-10-10', 9954, 117234, 6977, NULL, '1.0000', '8.4000', '8.4000', '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 (124070, '2022-10-10', 9329, 117235, 6977, NULL, '1.0000', '6.7000', '6.7000', '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 (124071, '2022-10-10', 7411, 117236, 6977, NULL, '4.0000', '1.3500', '1.3500', '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 (124072, '2022-10-10', 7431, 117237, 6977, NULL, '1.0000', '18.0000', '18.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 (124073, '2022-10-10', 2242, 117238, 6977, 3059, '-123.0000', '0.4800', '0.4800', '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 (124074, '2022-10-10', 2242, 117238, 6977, NULL, '126.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124075, '2022-10-10', 7483, 117239, 6977, NULL, '1.0000', '0.4200', '0.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 (124076, '2022-10-10', 7672, 117240, 6977, NULL, '2.0000', '1.0200', '1.0200', '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 (124077, '2022-10-10', 8878, 117241, 6977, NULL, '2.0000', '6.6700', '6.6700', '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 (124078, '2022-10-10', 2242, 117242, 6977, 3059, '-123.0000', '0.4800', '0.4800', '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 (124079, '2022-10-10', 2242, 117242, 6977, NULL, '126.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-126.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124080, '2022-10-10', 7324, 117243, 6977, NULL, '1.0000', '4.0000', '4.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 (124081, '2022-10-10', 7334, 117244, 6977, NULL, '1.0000', '8.2300', '8.2300', '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 (124082, '2022-10-10', 9245, 117245, 6977, NULL, '1.0000', '6.6100', '6.6100', '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 (124083, '2022-10-10', 7334, 117246, 6977, NULL, '3.0000', '8.2300', '8.2300', '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 (124084, '2022-10-10', 2283, 117247, 6977, 2943, '-38.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 (124085, '2022-10-10', 2283, 117247, 6977, NULL, '39.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124086, '2022-10-10', 7819, 117248, 6977, NULL, '1.0000', '9.5000', '9.5000', '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 (124087, '2022-10-10', 2102, 117249, 6977, 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 (124088, '2022-10-10', 7411, 117250, 6977, NULL, '1.0000', '1.3500', '1.3500', '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 (124089, '2022-10-10', 7641, 117251, 6977, NULL, '2.0000', '1.9000', '1.9000', '11.5000', '11.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 (124090, '2022-10-10', 1935, 117252, 6977, 5586, '-217.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 (124091, '2022-10-10', 1935, 117252, 6977, NULL, '218.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-218.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124092, '2022-10-10', 1846, 117253, 6977, 12032, '-35.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 (124093, '2022-10-10', 1846, 117253, 6977, NULL, '36.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-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 (124094, '2022-10-10', 7780, 117254, 6977, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124095, '2022-10-10', 8714, 117255, 6977, NULL, '1.0000', '5.2100', '5.2100', '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 (124096, '2022-10-10', 1765, 117256, 6977, 3175, '-29.0000', '90.0000', '90.0000', '9.5000', '9.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 (124097, '2022-10-10', 1765, 117256, 6977, NULL, '30.0000', '90.0000', '90.0000', '9.5000', '9.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 (124098, '2022-10-10', 8038, 117257, 6977, NULL, '2.0000', '6.5000', '6.5000', '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 (124099, '2022-10-10', 8504, 117258, 6977, NULL, '1.0000', '8.1000', '8.1000', '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 (124100, '2022-10-10', 7709, 117259, 6977, 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 (124101, '2022-10-10', 8360, 117260, 6977, NULL, '1.0000', '3.2300', '3.2300', '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 (124102, '2022-10-10', 7482, 117261, 6977, NULL, '1.0000', '3.0500', '3.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 (124103, '2022-10-10', 7715, 117262, 6977, NULL, '2.0000', '1.8900', '1.8900', '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 (124104, '2022-10-10', 8063, 117263, 6977, NULL, '2.0000', '1.6000', '1.6000', '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 (124105, '2022-10-10', 7730, 117264, 6977, NULL, '1.0000', '0.1000', '0.1000', '0.2000', '0.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 (124106, '2022-10-10', 8187, 117265, 6977, NULL, '3.0000', '14.3900', '14.3900', '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 (124107, '2022-10-10', 7675, 117266, 6977, NULL, '1.0000', '11.4300', '11.4300', '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 (124108, '2022-10-10', 8456, 117267, 6977, NULL, '1.0000', '5.5000', '5.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 (124109, '2022-10-10', 9092, 117268, 6977, NULL, '5.0000', '5.2900', '5.2900', '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 (124110, '2022-10-10', 7674, 117269, 6977, NULL, '1.0000', '1.3000', '1.3000', '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 (124111, '2022-10-10', 7672, 117270, 6977, NULL, '1.0000', '1.0200', '1.0200', '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 (124112, '2022-10-10', 7744, 117271, 6977, NULL, '2.0000', '2.7000', '2.7000', '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 (124113, '2022-10-10', 7725, 117272, 6977, NULL, '1.0000', '7.0000', '7.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 (124114, '2022-10-10', 7444, 117273, 6977, 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 (124115, '2022-10-10', 7770, 117274, 6977, NULL, '1.0000', '7.8200', '7.8200', '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 (124116, '2022-10-10', 9873, 117275, 6977, 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 (124117, '2022-10-10', 8308, 117276, 6977, NULL, '1.0000', '2.0800', '2.0800', '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 (124118, '2022-10-10', 1845, 117277, 6978, 6222, '-38.0000', '19.5000', '19.5000', '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 (124119, '2022-10-10', 1845, 117277, 6978, NULL, '39.0000', '19.5000', '19.5000', '40.0000', '40.0000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124120, '2022-10-10', 8032, 117278, 6978, NULL, '1.0000', '6.4400', '6.4400', '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 (124121, '2022-10-10', 1999, 117279, 6979, 6362, '-19.0000', '6.0000', '6.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 (124122, '2022-10-10', 1999, 117279, 6979, NULL, '20.0000', '6.0000', '6.0000', '12.0000', '12.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 (124123, '2022-10-10', 1621, 117280, 6979, 7385, '-16.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 (124124, '2022-10-10', 1621, 117280, 6979, NULL, '17.0000', '6.6000', '6.6000', '9.0000', '9.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 (124125, '2022-10-10', 1912, 117281, 6979, NULL, '2.0000', '0.3200', '0.3200', '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 (124126, '2022-10-10', 1342, 117282, 6979, 11264, '-33.0000', '6.8074', '6.8074', '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 (124127, '2022-10-10', 1342, 117282, 6979, NULL, '34.0000', '6.8074', '6.8074', '11.0000', '11.0000', '-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 (124128, '2022-10-10', 2315, 117283, 6979, 2735, '-710.0000', '0.3300', '0.3300', '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 (124129, '2022-10-10', 2315, 117283, 6979, NULL, '711.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-711.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124130, '2022-10-10', 1530, 117284, 6979, 7391, '-7.0000', '28.7012', '28.7012', '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 (124131, '2022-10-10', 1530, 117284, 6979, NULL, '9.0000', '28.7012', '28.7012', '28.0000', '28.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 (124132, '2022-10-10', 1666, 117285, 6979, 3236, '-45.0000', '2.7100', '2.7100', '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 (124133, '2022-10-10', 1666, 117285, 6979, NULL, '46.0000', '2.7100', '2.7100', '6.5000', '6.5000', '-46.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124134, '2022-10-10', 1665, 117286, 6979, 3235, '-165.0000', '1.3000', '1.3000', '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 (124135, '2022-10-10', 1665, 117286, 6979, NULL, '166.0000', '1.3000', '1.3000', '3.0000', '3.0000', '-166.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124136, '2022-10-10', 2942, 117287, 6979, 19985, '-5.0000', '0.4900', '0.4900', '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 (124137, '2022-10-10', 2942, 117287, 6979, NULL, '7.0000', '0.4900', '0.4900', '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 (124138, '2022-10-10', 2169, 117288, 6979, 10737, '-239.0000', '3.8397', '3.8397', '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 (124139, '2022-10-10', 2169, 117288, 6979, NULL, '241.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-241.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124140, '2022-10-10', 1321, 117289, 6979, NULL, '1.0000', '9.8000', '9.8000', '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 (124141, '2022-10-10', 1690, 117290, 6979, NULL, '1.0000', '7.1466', '7.1466', '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 (124142, '2022-10-10', 1942, 117291, 6979, 5593, '-7.0000', '19.0000', '19.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 (124143, '2022-10-10', 1942, 117291, 6979, NULL, '8.0000', '19.0000', '19.0000', '28.0000', '28.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 (124144, '2022-10-10', 1867, 117292, 6979, NULL, '2.0000', '1.0500', '1.0500', '18.5000', '18.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 (124145, '2022-10-10', 1580, 117293, 6979, 7598, '-68.0000', '0.9900', '0.9900', '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 (124146, '2022-10-10', 1580, 117293, 6979, NULL, '70.0000', '0.9900', '0.9900', '2.0000', '2.0000', '-70.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124147, '2022-10-10', 1855, 117294, 6979, 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 (124148, '2022-10-10', 8208, 117295, 6979, NULL, '2.0000', '33.0000', '33.0000', '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 (124149, '2022-10-10', 1646, 117296, 6979, 3239, '-26.0000', '4.5300', '4.5300', '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 (124150, '2022-10-10', 1646, 117296, 6979, NULL, '27.0000', '4.5300', '4.5300', '11.0000', '11.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 (124151, '2022-10-10', 2917, 117297, 6979, 18781, '-1.0000', '7.3500', '7.3500', '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 (124152, '2022-10-10', 2917, 117297, 6979, NULL, '2.0000', '7.3500', '7.3500', '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 (124153, '2022-10-10', 7382, 117298, 6979, NULL, '1.0000', '7.4500', '7.4500', '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 (124154, '2022-10-10', 2004, 117299, 6979, 6822, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '30.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 (124155, '2022-10-10', 2233, 117300, 6979, 2777, '-37.0000', '19.0200', '19.0200', '53.5000', '53.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 (124156, '2022-10-10', 2233, 117300, 6979, NULL, '38.0000', '19.0200', '19.0200', '53.5000', '53.5000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124157, '2022-10-10', 3005, 117301, 6979, 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 (124158, '2022-10-10', 1816, 117302, 6979, 22478, '-10.0000', '18.2300', '18.2300', '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 (124159, '2022-10-10', 1816, 117302, 6979, NULL, '11.0000', '18.2300', '18.2300', '33.0000', '33.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 (124160, '2022-10-10', 1602, 117303, 6979, 5897, '-184.0000', '6.7859', '6.7859', '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 (124161, '2022-10-10', 1602, 117303, 6979, NULL, '185.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-185.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124162, '2022-10-10', 2655, 117304, 6979, NULL, '1.0000', '6.5000', '6.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 (124163, '2022-10-10', 1425, 117305, 6979, NULL, '1.0000', '6.4405', '6.4405', '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 (124164, '2022-10-10', 2096, 117306, 6980, NULL, '1.0000', '1.5500', '1.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 (124165, '2022-10-10', 2109, 117307, 6980, NULL, '1.0000', '1.4840', '1.4840', '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 (124166, '2022-10-10', 8765, 117308, 6980, 64431, '1.0000', '5.8000', '5.8000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124167, '2022-10-10', 1839, 117309, 6980, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (124168, '2022-10-10', 8763, 117310, 6980, NULL, '1.0000', '-2.5592', '-2.5592', '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 (124169, '2022-10-10', 2167, 117311, 6980, NULL, '1.0000', '-10.2844', '-10.2844', '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 (124170, '2022-10-10', 1488, 117312, 6980, 55624, '1.0000', '4.2964', '4.2964', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124171, '2022-10-10', 1953, 117313, 6980, 58130, '1.0000', '2.6515', '2.6515', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124172, '2022-10-10', 2068, 117314, 6980, NULL, '1.0000', '13.8346', '13.8346', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124173, '2022-10-10', 1702, 117315, 6980, NULL, '1.0000', '-34.8999', '-34.8999', '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 (124174, '2022-10-10', 9695, 117316, 6980, 61496, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '55.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124175, '2022-10-10', 2089, 117317, 6980, 64076, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124176, '2022-10-10', 1761, 117318, 6980, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124177, '2022-10-10', 1602, 117319, 6980, 62877, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124178, '2022-10-10', 1493, 117320, 6980, NULL, '1.0000', '-38.6246', '-38.6246', '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 (124179, '2022-10-10', 1910, 117321, 6980, NULL, '1.0000', '0.5756', '0.5756', '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 (124180, '2022-10-10', 2379, 117322, 6980, NULL, '1.0000', '-154.5325', '-154.5325', '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 (124181, '2022-10-10', 2315, 117323, 6980, NULL, '2.0000', '0.7700', '0.7700', '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 (124182, '2022-10-10', 10037, 117324, 6980, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124183, '2022-10-10', 1953, 117325, 6980, 58130, '1.0000', '2.6515', '2.6515', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124184, '2022-10-10', 2237, 117326, 6980, 64352, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124185, '2022-10-10', 2352, 117327, 6980, NULL, '10.0000', '313.7364', '313.7364', '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 (124186, '2022-10-10', 1761, 117328, 6980, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124187, '2022-10-10', 1528, 117329, 6980, NULL, '1.0000', '5.9193', '5.9193', '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 (124188, '2022-10-10', 1699, 117330, 6980, NULL, '1.0000', '-5.0000', '-5.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 (124189, '2022-10-10', 1342, 117331, 6980, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '12.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124190, '2022-10-10', 9750, 117332, 6980, NULL, '1.0000', '2.3934', '2.3934', '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 (124191, '2022-10-10', 9089, 117333, 6980, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124192, '2022-10-10', 9695, 117334, 6980, 61496, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '55.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124193, '2022-10-10', 9590, 117335, 6980, NULL, '1.0000', '-6.6667', '-6.6667', '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 (124194, '2022-10-10', 2428, 117336, 6980, 63774, '1.0000', '17.4743', '17.4743', '22.0800', '22.0800', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124195, '2022-10-10', 1905, 117337, 6980, 62444, '1.0000', '0.5198', '0.5198', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124196, '2022-10-10', 10037, 117338, 6980, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124197, '2022-10-10', 1804, 117339, 6980, NULL, '1.0000', '19.8100', '19.8100', '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 (124198, '2022-10-10', 9463, 117340, 6980, NULL, '1.0000', '287.4328', '287.4328', '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 (124199, '2022-10-10', 2435, 117341, 6980, 61472, '1.0000', '9.2616', '9.2616', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124200, '2022-10-10', 2010, 117342, 6980, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124201, '2022-10-10', 9734, 117343, 6980, 62184, '1.0000', '0.4628', '0.4628', '0.7000', '0.7000', '60.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124202, '2022-10-10', 9089, 117344, 6980, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124203, '2022-10-10', 9885, 117345, 6980, 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 (124204, '2022-10-10', 1674, 117346, 6980, 62110, '1.0000', '5.0303', '5.0303', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124205, '2022-10-10', 9695, 117347, 6980, 61496, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '55.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124206, '2022-10-10', 2283, 117348, 6980, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124207, '2022-10-10', 9683, 117349, 6980, 64421, '1.0000', '2.2267', '2.2267', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124208, '2022-10-10', 2354, 117350, 6980, NULL, '1.0000', '74.8792', '74.8792', '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 (124209, '2022-10-10', 9424, 117351, 6980, 51684, '1.0000', '-12.4625', '-12.4625', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124210, '2022-10-10', 7880, 117352, 6980, NULL, '1.0000', '-6.4250', '-6.4250', '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 (124211, '2022-10-10', 9503, 117353, 6980, NULL, '1.0000', '240.6525', '240.6525', '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 (124212, '2022-10-10', 2293, 117354, 6980, NULL, '3.0000', '1.1118', '1.1118', '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 (124213, '2022-10-10', 1628, 117355, 6980, 64005, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124214, '2022-10-10', 1602, 117356, 6980, 62877, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124215, '2022-10-10', 2068, 117357, 6980, NULL, '1.0000', '13.8346', '13.8346', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124216, '2022-10-10', 1863, 117358, 6980, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '81.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124217, '2022-10-10', 1650, 117359, 6980, NULL, '1.0000', '25.0124', '25.0124', '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 (124218, '2022-10-10', 1844, 117360, 6980, NULL, '2.0000', '1.3981', '1.3981', '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 (124219, '2022-10-10', 2921, 117361, 6980, NULL, '1.0000', '5.2300', '5.2300', '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 (124220, '2022-10-10', 2302, 117362, 6980, 64363, '1.0000', '3.9506', '3.9506', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124221, '2022-10-10', 10037, 117363, 6980, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124222, '2022-10-10', 2994, 117364, 6980, 62366, '1.0000', '9.0785', '9.0785', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124223, '2022-10-10', 1380, 117365, 6980, 55583, '3.0000', '14.8000', '14.8000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124224, '2022-10-10', 9821, 117366, 6980, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124225, '2022-10-10', 1602, 117367, 6980, 62877, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124226, '2022-10-10', 1837, 117368, 6980, 58241, '2.0000', '1.6080', '1.6080', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124227, '2022-10-10', 3057, 117369, 6980, 51479, '1.0000', '2.8440', '2.8440', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124228, '2022-10-10', 2964, 117370, 6981, NULL, '1.0000', '564184.2758', '564184.2758', '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 (124229, '2022-10-10', 9984, 117371, 6981, 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 (124230, '2022-10-10', 2816, 117372, 6981, NULL, '3.0000', '0.8000', '0.8000', '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 (124231, '2022-10-10', 2275, 117373, 6981, NULL, '1.0000', '-26.2984', '-26.2984', '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 (124232, '2022-10-10', 8595, 117374, 6981, NULL, '1.0000', '-6.6886', '-6.6886', '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 (124233, '2022-10-10', 1419, 117375, 6981, NULL, '1.0000', '23.4480', '23.4480', '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 (124234, '2022-10-10', 2305, 117376, 6981, 53223, '1.0000', '4.0595', '4.0595', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124235, '2022-10-10', 2730, 117377, 6981, 63990, '1.0000', '2.2167', '2.2167', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124236, '2022-10-10', 2821, 117378, 6982, NULL, '1.0000', '-8.7105', '-8.7105', '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 (124237, '2022-10-10', 2315, 117379, 6982, NULL, '1.0000', '0.7700', '0.7700', '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 (124238, '2022-10-10', 1871, 117380, 6982, NULL, '6.0000', '-20821086.1374', '-20821086.1374', '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 (124239, '2022-10-10', 1925, 117381, 6982, 61553, '1.0000', '1.9127', '1.9127', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124240, '2022-10-10', 9922, 117382, 6982, 58232, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124241, '2022-10-10', 9821, 117383, 6982, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124242, '2022-10-10', 9738, 117384, 6983, 62435, '1.0000', '8.7000', '8.7000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124243, '2022-10-10', 1935, 117385, 6983, 58141, '2.0000', '0.6516', '0.6516', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124244, '2022-10-10', 9734, 117386, 6983, 62184, '2.0000', '0.4628', '0.4628', '0.7000', '0.7000', '58.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124245, '2022-10-10', 2655, 117387, 6983, 64415, '2.0000', '105.9115', '105.9115', '11.0000', '11.0000', '14.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124246, '2022-10-10', 2656, 117388, 6983, 64416, '1.0000', '1.9078', '1.9078', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124247, '2022-10-10', 2354, 117389, 6983, NULL, '1.0000', '74.8792', '74.8792', '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 (124248, '2022-10-10', 1935, 117390, 6983, 58141, '2.0000', '0.6516', '0.6516', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124249, '2022-10-10', 1825, 117391, 6983, 64360, '1.0000', '8.6857', '8.6857', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124250, '2022-10-10', 7981, 117392, 6984, NULL, '5.0000', '6.0000', '6.0000', '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 (124251, '2022-10-10', 7715, 117393, 6984, NULL, '1.0000', '1.8900', '1.8900', '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 (124252, '2022-10-10', 1841, 117394, 6984, NULL, '2.0000', '142.5780', '142.5780', '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 (124253, '2022-10-10', 2414, 117395, 6984, 4620, '-35.0000', '3.4000', '3.4000', '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 (124254, '2022-10-10', 2414, 117395, 6984, NULL, '37.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-37.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124255, '2022-10-10', 7524, 117396, 6984, NULL, '1.0000', '11.9500', '11.9500', '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 (124256, '2022-10-10', 8017, 117397, 6984, NULL, '1.0000', '40.0000', '40.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 (124257, '2022-10-10', 9729, 117398, 6984, NULL, '1.0000', '0.6200', '0.6200', '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 (124258, '2022-10-10', 9791, 117399, 6984, 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 (124259, '2022-10-10', 9092, 117400, 6984, NULL, '2.0000', '5.2900', '5.2900', '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 (124260, '2022-10-10', 10003, 117401, 6984, NULL, '1.0000', '6.3000', '6.3000', '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 (124261, '2022-10-10', 2962, 117402, 6984, 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 (124262, '2022-10-10', 1965, 117403, 6984, NULL, '1.0000', '17.2400', '17.2400', '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 (124263, '2022-10-10', 8158, 117404, 6984, NULL, '1.0000', '24.5000', '24.5000', '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 (124264, '2022-10-10', 7769, 117405, 6984, 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 (124265, '2022-10-10', 7411, 117406, 6984, NULL, '1.0000', '1.3500', '1.3500', '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 (124266, '2022-10-10', 7509, 117407, 6984, NULL, '1.0000', '6.5000', '6.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 (124267, '2022-10-10', 9826, 117408, 6984, NULL, '1.0000', '13.5000', '13.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 (124268, '2022-10-10', 8730, 117409, 6984, NULL, '1.0000', '29.0000', '29.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 (124269, '2022-10-10', 8324, 117410, 6984, NULL, '1.0000', '3.0000', '3.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 (124270, '2022-10-10', 7560, 117411, 6984, NULL, '1.0000', '33.0200', '33.0200', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124271, '2022-10-10', 2250, 117412, 6984, 2787, '-24.0000', '6.8900', '6.8900', '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 (124272, '2022-10-10', 2250, 117412, 6984, NULL, '25.0000', '6.8900', '6.8900', '14.5000', '14.5000', '-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 (124273, '2022-10-10', 9417, 117413, 6984, NULL, '1.0000', '4.0000', '4.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 (124274, '2022-10-10', 7339, 117414, 6984, NULL, '20.0000', '49.0000', '49.0000', '0.9000', '0.9000', '-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 (124275, '2022-10-10', 8395, 117415, 6984, NULL, '1.0000', '0.9700', '0.9700', '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 (124276, '2022-10-10', 9158, 117416, 6984, NULL, '1.0000', '5.8900', '5.8900', '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 (124277, '2022-10-10', 1935, 117417, 6984, 5586, '-218.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 (124278, '2022-10-10', 1935, 117417, 6984, NULL, '219.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-219.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124279, '2022-10-10', 7886, 117418, 6984, NULL, '1.0000', '4.5000', '4.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 (124280, '2022-10-10', 2602, 117419, 6984, 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 (124281, '2022-10-10', 7674, 117420, 6984, NULL, '1.0000', '1.3000', '1.3000', '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 (124282, '2022-10-10', 9001, 117421, 6984, NULL, '1.0000', '23.5000', '23.5000', '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 (124283, '2022-10-10', 1644, 117422, 6984, 3216, '-14.0000', '33.8200', '33.8200', '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 (124284, '2022-10-10', 1644, 117422, 6984, NULL, '15.0000', '33.8200', '33.8200', '53.0000', '53.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 (124285, '2022-10-10', 9873, 117423, 6984, 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 (124286, '2022-10-10', 8308, 117424, 6984, NULL, '1.0000', '2.0800', '2.0800', '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 (124287, '2022-10-10', 8878, 117425, 6984, NULL, '1.0000', '6.6700', '6.6700', '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 (124288, '2022-10-10', 2315, 117426, 6984, 2735, '-711.0000', '0.3300', '0.3300', '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 (124289, '2022-10-10', 2315, 117426, 6984, NULL, '712.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-712.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124290, '2022-10-10', 7674, 117427, 6984, NULL, '1.0000', '1.3000', '1.3000', '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 (124291, '2022-10-10', 9272, 117428, 6984, NULL, '1.0000', '3.1000', '3.1000', '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 (124292, '2022-10-10', 7952, 117429, 6984, 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 (124293, '2022-10-10', 8918, 117430, 6984, NULL, '2.0000', '1.0400', '1.0400', '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 (124294, '2022-10-10', 8032, 117431, 6984, NULL, '1.0000', '6.4400', '6.4400', '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 (124295, '2022-10-10', 9718, 117432, 6984, NULL, '1.0000', '13.3000', '13.3000', '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 (124296, '2022-10-10', 7651, 117433, 6984, NULL, '1.0000', '2.6700', '2.6700', '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 (124297, '2022-10-10', 8020, 117434, 6984, NULL, '1.0000', '11.9000', '11.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 (124298, '2022-10-10', 2100, 117435, 6984, 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 (124299, '2022-10-10', 9024, 117436, 6984, NULL, '2.0000', '7.4400', '7.4400', '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 (124300, '2022-10-10', 8336, 117437, 6984, NULL, '1.0000', '3.4000', '3.4000', '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 (124301, '2022-10-10', 2753, 117438, 6984, NULL, '1.0000', '4.8000', '4.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 (124302, '2022-10-10', 7514, 117439, 6984, NULL, '2.0000', '2.2500', '2.2500', '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 (124303, '2022-10-10', 1807, 117440, 6984, 18924, '3.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.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 (124304, '2022-10-10', 8448, 117441, 6984, NULL, '1.0000', '6.8900', '6.8900', '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 (124305, '2022-10-10', 9388, 117442, 6984, 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 (124306, '2022-10-10', 2506, 117443, 6984, 16244, '-49.0000', '3.4900', '3.4900', '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 (124307, '2022-10-10', 2506, 117443, 6984, NULL, '50.0000', '3.4900', '3.4900', '8.0000', '8.0000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124308, '2022-10-10', 9856, 117444, 6984, NULL, '1.0000', '1.6000', '1.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 (124309, '2022-10-10', 8127, 117445, 6984, NULL, '1.0000', '24.5300', '24.5300', '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 (124310, '2022-10-10', 7674, 117446, 6984, NULL, '1.0000', '1.3000', '1.3000', '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 (124311, '2022-10-10', 7787, 117447, 6984, NULL, '1.0000', '10.9000', '10.9000', '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 (124312, '2022-10-10', 7963, 117448, 6984, NULL, '1.0000', '14.7000', '14.7000', '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 (124313, '2022-10-10', 7741, 117449, 6984, NULL, '1.0000', '1.2000', '1.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 (124314, '2022-10-10', 9895, 117450, 6984, 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 (124315, '2022-10-10', 7722, 117451, 6984, NULL, '1.0000', '11.0000', '11.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 (124316, '2022-10-10', 8395, 117452, 6984, NULL, '1.0000', '0.9700', '0.9700', '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 (124317, '2022-10-10', 8756, 117453, 6984, NULL, '1.0000', '7.5000', '7.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 (124318, '2022-10-10', 8097, 117454, 6984, NULL, '4.0000', '3.4000', '3.4000', '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 (124319, '2022-10-10', 8223, 117455, 6984, NULL, '1.0000', '1.5000', '1.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 (124320, '2022-10-10', 7483, 117456, 6984, 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 (124321, '2022-10-10', 8145, 117457, 6984, NULL, '1.0000', '28.0000', '28.0000', '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 (124322, '2022-10-10', 7704, 117458, 6984, NULL, '1.0000', '0.4900', '0.4900', '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 (124323, '2022-10-10', 2769, 117459, 6984, NULL, '2.0000', '1.5200', '1.5200', '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 (124324, '2022-10-10', 7560, 117460, 6984, NULL, '1.0000', '33.0200', '33.0200', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124325, '2022-10-10', 7552, 117461, 6984, NULL, '1.0000', '4.7500', '4.7500', '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 (124326, '2022-10-10', 7651, 117462, 6984, NULL, '1.0000', '2.6700', '2.6700', '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 (124327, '2022-10-10', 2656, 117463, 6984, NULL, '1.0000', '1.5000', '1.5000', '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 (124328, '2022-10-10', 9695, 117464, 6984, NULL, '1.0000', '4.5000', '4.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 (124329, '2022-10-10', 9714, 117465, 6984, NULL, '1.0000', '25.0000', '25.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 (124330, '2022-10-10', 8878, 117466, 6984, NULL, '2.0000', '6.6700', '6.6700', '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 (124331, '2022-10-10', 2287, 117467, 6985, 48629, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124332, '2022-10-10', 2730, 117468, 6985, 63990, '1.0000', '2.2167', '2.2167', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124333, '2022-10-10', 2293, 117469, 6985, NULL, '3.0000', '1.1118', '1.1118', '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 (124334, '2022-10-10', 1912, 117470, 6985, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124335, '2022-10-10', 1863, 117471, 6986, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '80.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124336, '2022-10-10', 1935, 117472, 6986, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124337, '2022-10-10', 9482, 117473, 6986, 64050, '2.0000', '1.2046', '1.2046', '2.0000', '2.0000', '231.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124338, '2022-10-10', 2384, 117474, 6986, NULL, '2.0000', '-312.4992', '-312.4992', '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 (124339, '2022-10-10', 1665, 117475, 6986, 59912, '2.0000', '1.5573', '1.5573', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124340, '2022-10-10', 9736, 117476, 6987, NULL, '1.0000', '3.9100', '3.9100', '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 (124341, '2022-10-10', 7651, 117477, 6987, NULL, '1.0000', '2.6700', '2.6700', '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 (124342, '2022-10-10', 7704, 117478, 6987, NULL, '1.0000', '0.4900', '0.4900', '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 (124343, '2022-10-10', 2821, 117479, 6987, 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 (124344, '2022-10-10', 7606, 117480, 6987, NULL, '1.0000', '4.8600', '4.8600', '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 (124345, '2022-10-10', 8325, 117481, 6987, 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 (124346, '2022-10-10', 9712, 117482, 6987, NULL, '1.0000', '20.0000', '20.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 (124347, '2022-10-10', 9089, 117483, 6988, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124348, '2022-10-10', 9683, 117484, 6988, 64421, '1.0000', '2.2267', '2.2267', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124349, '2022-10-10', 9996, 117485, 6988, 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 (124350, '2022-10-10', 2283, 117486, 6988, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124351, '2022-10-10', 2604, 117487, 6989, 14491, '-15.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124352, '2022-10-10', 2604, 117487, 6989, NULL, '16.0000', '90.0000', '90.0000', '110.0000', '110.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 (124353, '2022-10-10', 2858, 117488, 6989, 17772, '-138.0000', '1.0000', '1.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 (124354, '2022-10-10', 2858, 117488, 6989, NULL, '140.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-140.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124355, '2022-10-10', 2302, 117489, 6989, 2963, '-68.0000', '5.2000', '5.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 (124356, '2022-10-10', 2302, 117489, 6989, NULL, '69.0000', '5.2000', '5.2000', '10.0000', '10.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124357, '2022-10-10', 9699, 117490, 6989, 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 (124358, '2022-10-10', 8773, 117491, 6989, NULL, '1.0000', '2.5000', '2.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 (124359, '2022-10-10', 2247, 117492, 6989, 2784, '-13.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 (124360, '2022-10-10', 2247, 117492, 6989, NULL, '14.0000', '2.5000', '2.5000', '3.5000', '3.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 (124361, '2022-10-10', 2293, 117493, 6989, 22262, '3.0000', '1.4400', '1.4400', '1.5000', '1.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 (124362, '2022-10-10', 2344, 117494, 6989, 3847, '-5.0000', '18.2000', '18.2000', '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 (124363, '2022-10-10', 2344, 117494, 6989, NULL, '6.0000', '18.2000', '18.2000', '27.0000', '27.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 (124364, '2022-10-10', 1519, 117495, 6989, NULL, '2.0000', '3.3500', '3.3500', '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 (124365, '2022-10-10', 2821, 117496, 6989, 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 (124366, '2022-10-10', 7999, 117497, 6989, NULL, '1.0000', '1.7500', '1.7500', '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 (124367, '2022-10-10', 2273, 117498, 6989, 2933, '-2.0000', '2.6700', '2.6700', '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 (124368, '2022-10-10', 2273, 117498, 6989, NULL, '3.0000', '2.6700', '2.6700', '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 (124369, '2022-10-10', 1904, 117499, 6989, 5442, '-112.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 (124370, '2022-10-10', 1904, 117499, 6989, NULL, '113.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-113.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124371, '2022-10-10', 2302, 117500, 6989, 2963, '-68.0000', '5.2000', '5.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 (124372, '2022-10-10', 2302, 117500, 6989, NULL, '69.0000', '5.2000', '5.2000', '10.0000', '10.0000', '-69.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124373, '2022-10-10', 1435, 117501, 6989, NULL, '1.0000', '22.5000', '22.5000', '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 (124374, '2022-10-10', 1339, 117502, 6989, 13004, '-26.0000', '1.6012', '1.6012', '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 (124375, '2022-10-10', 1339, 117502, 6989, NULL, '27.0000', '1.6012', '1.6012', '3.5000', '3.5000', '-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 (124376, '2022-10-10', 9714, 117503, 6989, NULL, '1.0000', '25.0000', '25.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 (124377, '2022-10-11', 8017, 117504, 6990, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '56.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124378, '2022-10-11', 7753, 117505, 6990, 64237, '1.0000', '3.7188', '3.7188', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124379, '2022-10-11', 9271, 117506, 6990, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124380, '2022-10-11', 7318, 117507, 6990, 61714, '1.0000', '12.7113', '12.7113', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124381, '2022-10-11', 7927, 117508, 6990, 64275, '1.0000', '13.0326', '13.0326', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124382, '2022-10-11', 9190, 117509, 6990, 61759, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124383, '2022-10-11', 7650, 117510, 6990, 62283, '1.0000', '4.6533', '4.6533', '6.5000', '6.5000', '6.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124384, '2022-10-11', 2506, 117511, 6990, 61907, '1.0000', '4.6900', '4.6900', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124385, '2022-10-11', 7657, 117512, 6990, 63874, '1.0000', '14.8211', '14.8211', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124386, '2022-10-11', 8878, 117513, 6990, 64386, '1.0000', '0.7033', '0.7033', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124387, '2022-10-11', 7509, 117514, 6990, 61880, '1.0000', '8.7232', '8.7232', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124388, '2022-10-11', 8744, 117515, 6990, 62529, '1.0000', '4.1148', '4.1148', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124389, '2022-10-11', 7692, 117516, 6990, NULL, '1.0000', '2.7000', '2.7000', '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 (124390, '2022-10-11', 7641, 117517, 6990, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124391, '2022-10-11', 7542, 117518, 6990, NULL, '1.0000', '4.7100', '4.7100', '5.0300', '5.0300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124392, '2022-10-11', 2242, 117519, 6990, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '78.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124393, '2022-10-11', 8077, 117520, 6990, 62341, '1.0000', '6.2521', '6.2521', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124394, '2022-10-11', 7641, 117521, 6990, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124395, '2022-10-11', 7444, 117522, 6990, 64372, '1.0000', '3.9103', '3.9103', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124396, '2022-10-11', 7666, 117523, 6990, 64400, '1.0000', '6.0250', '6.0250', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124397, '2022-10-11', 7672, 117524, 6990, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124398, '2022-10-11', 7674, 117525, 6990, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124399, '2022-10-11', 7672, 117526, 6990, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124400, '2022-10-11', 3001, 117527, 6990, NULL, '1.0000', '1.5000', '1.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 (124401, '2022-10-11', 9744, 117528, 6990, 59163, '2.0000', '8.6000', '8.6000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124402, '2022-10-11', 8622, 117529, 6990, 60140, '1.0000', '-10.3674', '-10.3674', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124403, '2022-10-11', 2107, 117530, 6990, NULL, '1.0000', '0.2500', '0.2500', '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 (124404, '2022-10-11', 2104, 117531, 6990, NULL, '2.0000', '0.2000', '0.2000', '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 (124405, '2022-10-11', 7674, 117532, 6990, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124406, '2022-10-11', 2284, 117533, 6990, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124407, '2022-10-11', 7354, 117534, 6990, 56647, '2.0000', '1.5641', '1.5641', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124408, '2022-10-11', 7746, 117535, 6990, 59097, '2.0000', '1.3400', '1.3400', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124409, '2022-10-11', 7672, 117536, 6990, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124410, '2022-10-11', 7382, 117537, 6990, 64382, '1.0000', '8.9452', '8.9452', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124411, '2022-10-11', 1550, 117538, 6990, 62556, '1.0000', '5.4140', '5.4140', '35.5000', '35.5000', '2.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124412, '2022-10-11', 1785, 117539, 6991, 62741, '1.0000', '16.7789', '16.7789', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124413, '2022-10-11', 2302, 117540, 6991, 64303, '1.0000', '5.5887', '5.5887', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124414, '2022-10-11', 1519, 117541, 6991, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124415, '2022-10-11', 2315, 117542, 6991, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124416, '2022-10-11', 3029, 117543, 6991, 64537, '1.0000', '7.8134', '7.8134', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124417, '2022-10-11', 1603, 117544, 6991, 64507, '1.0000', '67.6473', '67.6473', '130.5000', '130.5000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124418, '2022-10-11', 2169, 117545, 6991, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124419, '2022-10-11', 2293, 117546, 6991, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124420, '2022-10-11', 2315, 117547, 6991, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124421, '2022-10-11', 2379, 117548, 6991, 63969, '1.0000', '2.1297', '2.1297', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124422, '2022-10-11', 2020, 117549, 6991, 64542, '1.0000', '7.1533', '7.1533', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124423, '2022-10-11', 1863, 117550, 6991, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '124.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124424, '2022-10-11', 2821, 117551, 6991, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124425, '2022-10-11', 10038, 117552, 6991, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124426, '2022-10-11', 1409, 117553, 6991, 64293, '1.0000', '13.1044', '13.1044', '18.0000', '18.0000', '0.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124427, '2022-10-11', 9845, 117554, 6991, 57991, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124428, '2022-10-11', 2100, 117555, 6991, 58620, '1.0000', '1.7687', '1.7687', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124429, '2022-10-11', 2738, 117556, 6991, 64322, '1.0000', '9.1758', '9.1758', '12.5000', '12.5000', '7.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124430, '2022-10-11', 3058, 117557, 6991, 64560, '1.0000', '5.3362', '5.3362', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124431, '2022-10-11', 9732, 117558, 6991, 58774, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124432, '2022-10-11', 2545, 117559, 6992, 62082, '1.0000', '9.0358', '9.0358', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124433, '2022-10-11', 2088, 117560, 6992, 64355, '1.0000', '2.8974', '2.8974', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124434, '2022-10-11', 9734, 117561, 6992, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '55.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124435, '2022-10-11', 2109, 117562, 6992, NULL, '3.0000', '1.4840', '1.4840', '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 (124436, '2022-10-11', 2293, 117563, 6992, NULL, '3.0000', '1.1118', '1.1118', '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 (124437, '2022-10-11', 2416, 117564, 6992, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124438, '2022-10-11', 1528, 117565, 6992, NULL, '1.0000', '5.9193', '5.9193', '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 (124439, '2022-10-11', 1519, 117566, 6992, NULL, '1.0000', '4.0093', '4.0093', '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 (124440, '2022-10-11', 2545, 117567, 6992, 62082, '1.0000', '9.0358', '9.0358', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124441, '2022-10-11', 2287, 117568, 6992, 48629, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '7.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124442, '2022-10-11', 2416, 117569, 6992, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124443, '2022-10-11', 9942, 117570, 6992, 64341, '1.0000', '12.6556', '12.6556', '18.0000', '18.0000', '14.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124444, '2022-10-11', 9945, 117571, 6992, NULL, '1.0000', '12.1000', '12.1000', '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 (124445, '2022-10-11', 8165, 117572, 6992, 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 (124446, '2022-10-11', 1409, 117573, 6992, 64333, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124447, '2022-10-11', 2379, 117574, 6992, NULL, '1.0000', '-154.5325', '-154.5325', '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 (124448, '2022-10-11', 2315, 117575, 6992, NULL, '1.0000', '0.7700', '0.7700', '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 (124449, '2022-10-11', 2237, 117576, 6992, 64352, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124450, '2022-10-11', 2416, 117577, 6992, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124451, '2022-10-11', 9740, 117578, 6992, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '55.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124452, '2022-10-11', 1905, 117579, 6992, 62444, '1.0000', '0.5198', '0.5198', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124453, '2022-10-11', 2109, 117580, 6992, NULL, '1.0000', '1.4840', '1.4840', '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 (124454, '2022-10-11', 2379, 117581, 6992, NULL, '1.0000', '-154.5325', '-154.5325', '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 (124455, '2022-10-11', 1493, 117582, 6992, NULL, '1.0000', '-38.6246', '-38.6246', '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 (124456, '2022-10-11', 1871, 117583, 6992, NULL, '5.0000', '-20821086.1374', '-20821086.1374', '4.5000', '4.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 (124457, '2022-10-11', 2604, 117584, 6992, 23993, '1.0000', '90.0000', '90.0000', '110.0000', '110.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 (124458, '2022-10-11', 1411, 117585, 6992, 62192, '1.0000', '25.9995', '25.9995', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124459, '2022-10-11', 8744, 117586, 6992, 64420, '1.0000', '2.9320', '2.9320', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124460, '2022-10-11', 2315, 117587, 6992, NULL, '2.0000', '0.7700', '0.7700', '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 (124461, '2022-10-11', 8444, 117588, 6992, 62848, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124462, '2022-10-11', 9856, 117589, 6992, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124463, '2022-10-11', 2416, 117590, 6992, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124464, '2022-10-11', 1689, 117591, 6992, 62414, '1.0000', '16.0080', '16.0080', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124465, '2022-10-11', 9943, 117592, 6992, 64342, '1.0000', '13.4667', '13.4667', '19.0000', '19.0000', '14.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124466, '2022-10-11', 3029, 117593, 6992, NULL, '1.0000', '59.9505', '59.9505', '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 (124467, '2022-10-11', 1409, 117594, 6992, 64333, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124468, '2022-10-11', 2167, 117595, 6992, NULL, '1.0000', '-10.2844', '-10.2844', '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 (124469, '2022-10-11', 2864, 117596, 6992, NULL, '5.0000', '3.3622', '3.3622', '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 (124470, '2022-10-11', 2655, 117597, 6992, 64415, '1.0000', '105.9115', '105.9115', '11.0000', '11.0000', '13.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124471, '2022-10-11', 1837, 117598, 6992, 58241, '1.0000', '1.6080', '1.6080', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124472, '2022-10-11', 1388, 117599, 6992, 61565, '1.0000', '7.4975', '7.4975', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124473, '2022-10-11', 1855, 117600, 6993, NULL, '1.0000', '1.3131', '1.3131', '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 (124474, '2022-10-11', 1609, 117601, 6993, NULL, '1.0000', '33.7500', '33.7500', '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 (124475, '2022-10-11', 8746, 117602, 6993, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '12.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124476, '2022-10-11', 2305, 117603, 6993, 53223, '1.0000', '4.0595', '4.0595', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124477, '2022-10-11', 2777, 117604, 6993, 58193, '1.0000', '3.8913', '3.8913', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124478, '2022-10-11', 8878, 117605, 6993, 64000, '2.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124479, '2022-10-11', 1863, 117606, 6993, 64030, '1.0000', '1.5107', '1.5107', '2.5000', '2.5000', '79.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124480, '2022-10-11', 2352, 117607, 6993, NULL, '10.0000', '313.7364', '313.7364', '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 (124481, '2022-10-11', 9902, 117608, 6993, 63991, '1.0000', '8.7884', '8.7884', '12.0000', '12.0000', '13.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124482, '2022-10-11', 1839, 117609, 6993, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (124483, '2022-10-11', 1912, 117610, 6993, 62852, '2.0000', '0.6540', '0.6540', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124484, '2022-10-11', 2444, 117611, 6993, NULL, '1.0000', '12.4109', '12.4109', '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 (124485, '2022-10-11', 2656, 117612, 6993, 64416, '1.0000', '1.9078', '1.9078', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124486, '2022-10-11', 9089, 117613, 6993, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124487, '2022-10-11', 2416, 117614, 6993, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124488, '2022-10-11', 2269, 117615, 6993, NULL, '1.0000', '0.1934', '0.1934', '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 (124489, '2022-10-11', 2167, 117616, 6993, NULL, '1.0000', '-10.2844', '-10.2844', '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 (124490, '2022-10-11', 2315, 117617, 6993, NULL, '2.0000', '0.7700', '0.7700', '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 (124491, '2022-10-11', 1603, 117618, 6993, NULL, '1.0000', '55.1600', '55.1600', '130.5000', '130.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124492, '2022-10-11', 1812, 117619, 6993, 64343, '1.0000', '8.8177', '8.8177', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124493, '2022-10-11', 1761, 117620, 6993, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124494, '2022-10-11', 2259, 117621, 6993, 57778, '1.0000', '25.7632', '25.7632', '38.5000', '38.5000', '7.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124495, '2022-10-11', 2260, 117622, 6993, 64362, '2.0000', '5.3723', '5.3723', '8.0000', '8.0000', '13.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124496, '2022-10-11', 2302, 117623, 6993, 64363, '1.0000', '3.9506', '3.9506', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124497, '2022-10-11', 2242, 117624, 6993, 48481, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124498, '2022-10-11', 1386, 117625, 6993, 64346, '1.0000', '4.8114', '4.8114', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124499, '2022-10-11', 9551, 117626, 6993, 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 (124500, '2022-10-11', 1761, 117627, 6993, 60290, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124501, '2022-10-11', 1785, 117628, 6993, 59858, '1.0000', '17.1478', '17.1478', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124502, '2022-10-11', 2324, 117629, 6993, 63786, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124503, '2022-10-11', 7722, 117630, 6993, 59692, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124504, '2022-10-11', 8482, 117631, 6993, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '21.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124505, '2022-10-11', 8743, 117632, 6993, 64427, '1.0000', '19.5378', '19.5378', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124506, '2022-10-11', 8745, 117633, 6993, 61488, '1.0000', '14.0504', '14.0504', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124507, '2022-10-11', 9089, 117634, 6993, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124508, '2022-10-11', 3025, 117635, 6993, 58059, '1.0000', '2.4395', '2.4395', '4.5000', '4.5000', '10.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124509, '2022-10-11', 8566, 117636, 6993, 58043, '1.0000', '18.0000', '18.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124510, '2022-10-11', 2473, 117637, 6993, 59675, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124511, '2022-10-11', 1912, 117638, 6993, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124512, '2022-10-11', 1785, 117639, 6993, 59858, '1.0000', '17.1478', '17.1478', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124513, '2022-10-11', 1761, 117640, 6993, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124514, '2022-10-11', 2416, 117641, 6993, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124515, '2022-10-11', 9921, 117642, 6993, 63475, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124516, '2022-10-11', 2088, 117643, 6994, 64601, '1.0000', '2.8325', '2.8325', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124517, '2022-10-11', 9695, 117644, 6994, 61496, '1.0000', '5.5992', '5.5992', '9.0000', '9.0000', '52.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124518, '2022-10-11', 8482, 117645, 6994, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '20.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124519, '2022-10-11', 2341, 117646, 6994, NULL, '1.0000', '5.4350', '5.4350', '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 (124520, '2022-10-11', 1342, 117647, 6994, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '11.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124521, '2022-10-11', 9330, 117648, 6994, 62854, '1.0000', '11.6714', '11.6714', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124522, '2022-10-11', 2167, 117649, 6994, NULL, '1.0000', '-35.2864', '-35.2864', '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 (124523, '2022-10-11', 2248, 117650, 6994, 56451, '1.0000', '3.6964', '3.6964', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124524, '2022-10-11', 1905, 117651, 6994, NULL, '1.0000', '0.5198', '0.5198', '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 (124525, '2022-10-11', 2411, 117652, 6994, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124526, '2022-10-11', 7832, 117653, 6995, NULL, '1.0000', '11.0000', '11.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 (124527, '2022-10-11', 1690, 117654, 6995, 59872, '1.0000', '8.6637', '8.6637', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124528, '2022-10-11', 2108, 117655, 6995, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124529, '2022-10-11', 10004, 117656, 6995, 62129, '10.0000', '2.5100', '2.5100', '3.0000', '3.0000', '109.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124530, '2022-10-11', 8878, 117657, 6995, 64000, '1.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124531, '2022-10-11', 2167, 117658, 6995, NULL, '1.0000', '-35.2864', '-35.2864', '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 (124532, '2022-10-11', 1602, 117659, 6995, 62877, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124533, '2022-10-11', 2108, 117660, 6995, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124534, '2022-10-11', 3058, 117661, 6995, NULL, '1.0000', '8.2853', '8.2853', '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 (124535, '2022-10-11', 9740, 117662, 6995, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '54.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124536, '2022-10-11', 9750, 117663, 6996, NULL, '1.0000', '2.3934', '2.3934', '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 (124537, '2022-10-11', 9956, 117664, 6996, 64625, '1.0000', '17.7875', '17.7875', '24.2900', '24.2900', '5.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124538, '2022-10-11', 2293, 117665, 6996, NULL, '3.0000', '1.1118', '1.1118', '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 (124539, '2022-10-11', 2283, 117666, 6996, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124540, '2022-10-11', 7944, 117667, 6996, 64037, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124541, '2022-10-11', 1602, 117668, 6996, 62877, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124542, '2022-10-11', 2237, 117669, 6996, 64352, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124543, '2022-10-11', 2384, 117670, 6996, NULL, '2.0000', '-312.4992', '-312.4992', '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 (124544, '2022-10-11', 2916, 117671, 6996, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (124545, '2022-10-11', 1529, 117672, 6996, 64353, '1.0000', '5.2750', '5.2750', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124546, '2022-10-11', 2315, 117673, 6996, NULL, '2.0000', '0.7700', '0.7700', '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 (124547, '2022-10-11', 9089, 117674, 6996, 64419, '1.0000', '-9.8149', '-9.8149', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124548, '2022-10-11', 1831, 117675, 6997, 63801, '1.0000', '9.7857', '9.7857', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124549, '2022-10-11', 2384, 117676, 6997, NULL, '2.0000', '-312.4992', '-312.4992', '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 (124550, '2022-10-11', 8765, 117677, 6997, 64431, '1.0000', '5.8000', '5.8000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124551, '2022-10-11', 1488, 117678, 6998, 55554, '1.0000', '4.2964', '4.2964', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124552, '2022-10-11', 7587, 117679, 6999, NULL, '1.0000', '6.4400', '6.4400', '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 (124553, '2022-10-11', 7675, 117680, 6999, NULL, '2.0000', '11.4300', '11.4300', '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 (124554, '2022-10-11', 1557, 117681, 6999, 1628, '-23.0000', '7.9500', '7.9500', '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 (124555, '2022-10-11', 1557, 117681, 6999, NULL, '24.0000', '7.9500', '7.9500', '11.0000', '11.0000', '-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 (124556, '2022-10-11', 7459, 117682, 6999, NULL, '1.0000', '2.3500', '2.3500', '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 (124557, '2022-10-11', 7666, 117683, 6999, NULL, '1.0000', '3.6000', '3.6000', '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 (124558, '2022-10-11', 7825, 117684, 6999, NULL, '1.0000', '6.5000', '6.5000', '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 (124559, '2022-10-11', 9092, 117685, 6999, NULL, '2.0000', '5.2900', '5.2900', '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 (124560, '2022-10-11', 2315, 117686, 6999, 2735, '-712.0000', '0.3300', '0.3300', '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 (124561, '2022-10-11', 2315, 117686, 6999, NULL, '713.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-713.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124562, '2022-10-11', 7959, 117687, 6999, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124563, '2022-10-11', 9092, 117688, 6999, NULL, '3.0000', '5.2900', '5.2900', '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 (124564, '2022-10-11', 9983, 117689, 6999, NULL, '1.0000', '5.4000', '5.4000', '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 (124565, '2022-10-11', 8208, 117690, 6999, NULL, '2.0000', '33.0000', '33.0000', '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 (124566, '2022-10-11', 2191, 117691, 6999, 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 (124567, '2022-10-11', 7703, 117692, 6999, NULL, '1.0000', '22.9900', '22.9900', '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 (124568, '2022-10-11', 9985, 117693, 6999, NULL, '1.0000', '5.8000', '5.8000', '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 (124569, '2022-10-11', 7674, 117694, 6999, NULL, '1.0000', '1.3000', '1.3000', '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 (124570, '2022-10-11', 7761, 117695, 6999, NULL, '1.0000', '22.6200', '22.6200', '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 (124571, '2022-10-11', 7709, 117696, 6999, NULL, '2.0000', '3.5000', '3.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 (124572, '2022-10-11', 9209, 117697, 6999, NULL, '1.0000', '4.8000', '4.8000', '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 (124573, '2022-10-11', 8878, 117698, 6999, NULL, '2.0000', '6.6700', '6.6700', '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 (124574, '2022-10-11', 7637, 117699, 6999, NULL, '1.0000', '7.3300', '7.3300', '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 (124575, '2022-10-11', 7411, 117700, 6999, NULL, '2.0000', '1.3500', '1.3500', '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 (124576, '2022-10-11', 2289, 117701, 6999, 2949, '-292.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 (124577, '2022-10-11', 2289, 117701, 6999, NULL, '296.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-296.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124578, '2022-10-11', 7787, 117702, 6999, NULL, '1.0000', '10.9000', '10.9000', '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 (124579, '2022-10-11', 8061, 117703, 6999, 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 (124580, '2022-10-11', 7514, 117704, 6999, NULL, '1.0000', '2.2500', '2.2500', '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 (124581, '2022-10-11', 7762, 117705, 6999, NULL, '1.0000', '1.5000', '1.5000', '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 (124582, '2022-10-11', 8308, 117706, 6999, NULL, '1.0000', '2.0800', '2.0800', '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 (124583, '2022-10-11', 2506, 117707, 6999, 16244, '-50.0000', '3.4900', '3.4900', '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 (124584, '2022-10-11', 2506, 117707, 6999, NULL, '51.0000', '3.4900', '3.4900', '8.0000', '8.0000', '-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 (124585, '2022-10-11', 7324, 117708, 6999, NULL, '2.0000', '4.0000', '4.0000', '8.5000', '8.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 (124586, '2022-10-11', 7709, 117709, 6999, NULL, '2.0000', '3.5000', '3.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 (124587, '2022-10-11', 8470, 117710, 6999, NULL, '1.0000', '19.5000', '19.5000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124588, '2022-10-11', 9234, 117711, 6999, NULL, '1.0000', '3.0000', '3.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 (124589, '2022-10-11', 7483, 117712, 6999, 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 (124590, '2022-10-11', 9783, 117713, 6999, NULL, '1.0000', '17.6000', '17.6000', '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 (124591, '2022-10-11', 9736, 117714, 6999, NULL, '1.0000', '3.9100', '3.9100', '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 (124592, '2022-10-11', 7474, 117715, 6999, NULL, '1.0000', '67.6200', '67.6200', '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 (124593, '2022-10-11', 9566, 117716, 6999, NULL, '1.0000', '33.0000', '33.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 (124594, '2022-10-11', 7725, 117717, 6999, NULL, '2.0000', '7.0000', '7.0000', '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 (124595, '2022-10-11', 7473, 117718, 6999, NULL, '2.0000', '0.5300', '0.5300', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124596, '2022-10-11', 7967, 117719, 6999, NULL, '1.0000', '7.0000', '7.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 (124597, '2022-10-11', 9714, 117720, 6999, NULL, '1.0000', '25.0000', '25.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 (124598, '2022-10-11', 7384, 117721, 6999, NULL, '1.0000', '8.2000', '8.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 (124599, '2022-10-11', 2069, 117722, 6999, 5571, '-25.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124600, '2022-10-11', 2069, 117722, 6999, NULL, '26.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (124601, '2022-10-11', 7708, 117723, 6999, NULL, '1.0000', '7.8000', '7.8000', '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 (124602, '2022-10-11', 9399, 117724, 6999, NULL, '1.0000', '0.9800', '0.9800', '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 (124603, '2022-10-11', 7523, 117725, 6999, NULL, '1.0000', '9.7500', '9.7500', '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 (124604, '2022-10-11', 7999, 117726, 6999, NULL, '1.0000', '1.7500', '1.7500', '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 (124605, '2022-10-11', 1420, 117727, 6999, NULL, '1.0000', '1.2000', '1.2000', '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 (124606, '2022-10-11', 9971, 117728, 6999, NULL, '2.0000', '5.8300', '5.8300', '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 (124607, '2022-10-11', 1557, 117729, 6999, 1628, '-23.0000', '7.9500', '7.9500', '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 (124608, '2022-10-11', 1557, 117729, 6999, NULL, '24.0000', '7.9500', '7.9500', '11.0000', '11.0000', '-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 (124609, '2022-10-11', 7380, 117730, 6999, NULL, '1.0000', '8.0000', '8.0000', '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 (124610, '2022-10-11', 8666, 117731, 6999, NULL, '1.0000', '0.4600', '0.4600', '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 (124611, '2022-10-11', 9177, 117732, 6999, 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 (124612, '2022-10-11', 7523, 117733, 6999, NULL, '1.0000', '9.7500', '9.7500', '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 (124613, '2022-10-11', 7651, 117734, 6999, NULL, '1.0000', '2.6700', '2.6700', '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 (124614, '2022-10-11', 7707, 117735, 6999, NULL, '1.0000', '7.0000', '7.0000', '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 (124615, '2022-10-11', 9092, 117736, 6999, NULL, '10.0000', '5.2900', '5.2900', '0.5000', '0.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 (124616, '2022-10-11', 1817, 117737, 6999, 623, '1.0000', '90.0000', '90.0000', '15.0000', '15.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 (124617, '2022-10-11', 7666, 117738, 6999, NULL, '1.0000', '3.6000', '3.6000', '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 (124618, '2022-10-11', 7509, 117739, 6999, NULL, '1.0000', '6.5000', '6.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 (124619, '2022-10-11', 7809, 117740, 6999, NULL, '1.0000', '17.0000', '17.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 (124620, '2022-10-11', 2891, 117741, 6999, 18020, '-10.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 (124621, '2022-10-11', 2891, 117741, 6999, NULL, '11.0000', '9.5000', '9.5000', '12.0000', '12.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 (124622, '2022-10-11', 9092, 117742, 6999, NULL, '10.0000', '5.2900', '5.2900', '0.5000', '0.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 (124623, '2022-10-11', 7411, 117743, 6999, NULL, '1.0000', '1.3500', '1.3500', '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 (124624, '2022-10-11', 7673, 117744, 6999, NULL, '1.0000', '16.8000', '16.8000', '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 (124625, '2022-10-11', 7376, 117745, 6999, NULL, '1.0000', '141.7100', '141.7100', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124626, '2022-10-11', 2864, 117746, 7000, 59978, '10.0000', '1.4045', '1.4045', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124627, '2022-10-11', 7743, 117747, 7000, NULL, '1.0000', '1.3100', '1.3100', '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 (124628, '2022-10-11', 7608, 117748, 7000, NULL, '1.0000', '6.9800', '6.9800', '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 (124629, '2022-10-11', 2769, 117749, 7000, 64561, '2.0000', '2.2279', '2.2279', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124630, '2022-10-11', 2285, 117750, 7000, 63374, '1.0000', '43.4765', '43.4765', '80.0000', '80.0000', '8.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124631, '2022-10-11', 8461, 117751, 7000, NULL, '2.0000', '1.0400', '1.0400', '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 (124632, '2022-10-11', 9736, 117752, 7000, 64475, '1.0000', '5.3100', '5.3100', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124633, '2022-10-11', 1837, 117753, 7000, 62213, '1.0000', '0.6220', '0.6220', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124634, '2022-10-11', 1908, 117754, 7000, 5510, '1.0000', '1.7500', '1.7500', '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 (124635, '2022-10-11', 2315, 117755, 7000, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124636, '2022-10-11', 1888, 117756, 7000, 64546, '1.0000', '19.0744', '19.0744', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124637, '2022-10-11', 2607, 117757, 7000, 9786, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124638, '2022-10-11', 1935, 117758, 7000, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124639, '2022-10-11', 1620, 117759, 7000, 64516, '4.0000', '2.3720', '2.3720', '3.5000', '3.5000', '12.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124640, '2022-10-11', 7745, 117760, 7000, 64518, '1.0000', '8.6600', '8.6600', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124641, '2022-10-11', 9895, 117761, 7000, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '20.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124642, '2022-10-11', 2167, 117762, 7000, 64543, '1.0000', '2.7995', '2.7995', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124643, '2022-10-11', 7322, 117763, 7000, 64494, '1.0000', '27.6400', '27.6400', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124644, '2022-10-11', 2476, 117764, 7000, 5189, '2.0000', '10.0000', '10.0000', '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 (124645, '2022-10-11', 8482, 117765, 7000, 64536, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124646, '2022-10-11', 2637, 117766, 7000, 61611, '1.0000', '10.0000', '10.0000', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124647, '2022-10-11', 1554, 117767, 7000, 56983, '1.0000', '3.1933', '3.1933', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124648, '2022-10-11', 9845, 117768, 7000, 57991, '1.0000', '5.7000', '5.7000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124649, '2022-10-11', 7368, 117769, 7000, NULL, '1.0000', '14.7500', '14.7500', '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 (124650, '2022-10-11', 2381, 117770, 7000, 64512, '1.0000', '11.9649', '11.9649', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124651, '2022-10-11', 1347, 117771, 7000, 62725, '3.0000', '2.7178', '2.7178', '6.0000', '6.0000', '30.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124652, '2022-10-11', 2763, 117772, 7000, 15805, '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 (124653, '2022-10-11', 2481, 117773, 7000, 5193, '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 (124654, '2022-10-11', 2477, 117774, 7000, 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 (124655, '2022-10-11', 9940, 117775, 7000, 63135, '1.0000', '8.5758', '8.5758', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124656, '2022-10-11', 1863, 117776, 7000, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '123.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124657, '2022-10-11', 2354, 117777, 7000, 62755, '1.0000', '5.6092', '5.6092', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124658, '2022-10-11', 3029, 117778, 7000, 64537, '1.0000', '7.8134', '7.8134', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124659, '2022-10-11', 1840, 117779, 7000, 62749, '4.0000', '0.2400', '0.2400', '0.5000', '0.5000', '83.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124660, '2022-10-11', 1841, 117780, 7000, 62748, '4.0000', '0.3143', '0.3143', '0.5000', '0.5000', '78.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124661, '2022-10-11', 2289, 117781, 7000, 62763, '4.0000', '0.2648', '0.2648', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124662, '2022-10-11', 1912, 117782, 7000, 64479, '2.0000', '0.7008', '0.7008', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124663, '2022-10-11', 9747, 117783, 7000, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124664, '2022-10-11', 8079, 117784, 7000, 64478, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124665, '2022-10-11', 8490, 117785, 7000, 62747, '1.0000', '28.3000', '28.3000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124666, '2022-10-11', 9942, 117786, 7000, 64309, '1.0000', '11.6714', '11.6714', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124667, '2022-10-11', 1665, 117787, 7000, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '143.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124668, '2022-10-11', 2655, 117788, 7000, 63815, '1.0000', '7.2912', '7.2912', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124669, '2022-10-11', 2366, 117789, 7000, 64559, '2.0000', '3.7639', '3.7639', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124670, '2022-10-12', 2015, 117790, 7001, 63797, '1.0000', '6.3148', '6.3148', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124671, '2022-10-12', 2088, 117791, 7001, 64601, '1.0000', '2.8325', '2.8325', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124672, '2022-10-12', 1874, 117792, 7001, NULL, '1.0000', '-24.5000', '-24.5000', '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 (124673, '2022-10-12', 8677, 117793, 7001, NULL, '2.0000', '1026.1382', '1026.1382', '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 (124674, '2022-10-12', 8878, 117794, 7001, 64000, '1.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124675, '2022-10-12', 1839, 117795, 7001, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (124676, '2022-10-12', 1410, 117796, 7001, NULL, '1.0000', '2046.5555', '2046.5555', '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 (124677, '2022-10-12', 2821, 117797, 7001, NULL, '1.0000', '-40.2618', '-40.2618', '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 (124678, '2022-10-12', 2315, 117798, 7001, NULL, '1.0000', '0.7700', '0.7700', '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 (124679, '2022-10-12', 9734, 117799, 7001, 62184, '3.0000', '0.4628', '0.4628', '0.7000', '0.7000', '52.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124680, '2022-10-12', 2643, 117800, 7001, 64418, '1.0000', '1.1342', '1.1342', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124681, '2022-10-12', 2167, 117801, 7001, NULL, '1.0000', '-35.2864', '-35.2864', '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 (124682, '2022-10-12', 1368, 117802, 7001, 62147, '1.0000', '6.2126', '6.2126', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124683, '2022-10-12', 7790, 117803, 7001, NULL, '1.0000', '17.0000', '17.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 (124684, '2022-10-12', 8740, 117804, 7001, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124685, '2022-10-12', 3058, 117805, 7001, NULL, '1.0000', '8.2853', '8.2853', '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 (124686, '2022-10-12', 9729, 117806, 7001, 62094, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124687, '2022-10-12', 8177, 117807, 7001, NULL, '1.0000', '13.1120', '13.1120', '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 (124688, '2022-10-12', 1326, 117808, 7001, NULL, '2.0000', '4.3669', '4.3669', '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 (124689, '2022-10-12', 2643, 117809, 7001, 64418, '1.0000', '1.1342', '1.1342', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124690, '2022-10-12', 1863, 117810, 7001, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '124.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124691, '2022-10-12', 2777, 117811, 7001, 58193, '1.0000', '3.8913', '3.8913', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124692, '2022-10-12', 1580, 117812, 7001, 64582, '3.0000', '1.4688', '1.4688', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124693, '2022-10-12', 9791, 117813, 7001, 64592, '1.0000', '0.9575', '0.9575', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124694, '2022-10-12', 8763, 117814, 7001, NULL, '1.0000', '-2.5592', '-2.5592', '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 (124695, '2022-10-12', 1666, 117815, 7001, 64060, '1.0000', '3.0815', '3.0815', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124696, '2022-10-12', 1620, 117816, 7001, 62829, '1.0000', '2.3984', '2.3984', '3.5000', '3.5000', '11.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124697, '2022-10-12', 2305, 117817, 7001, 53223, '1.0000', '4.0595', '4.0595', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124698, '2022-10-12', 2315, 117818, 7001, NULL, '1.0000', '0.7700', '0.7700', '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 (124699, '2022-10-12', 8548, 117819, 7002, NULL, '1.0000', '6.3499', '6.3499', '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 (124700, '2022-10-12', 7589, 117820, 7002, 46257, '1.0000', '1.9144', '1.9144', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124701, '2022-10-12', 2102, 117821, 7002, NULL, '1.0000', '1.5667', '1.5667', '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 (124702, '2022-10-12', 2506, 117822, 7002, 61907, '1.0000', '4.6900', '4.6900', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124703, '2022-10-12', 1935, 117823, 7002, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '78.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124704, '2022-10-12', 7473, 117824, 7002, 61833, '1.0000', '0.5360', '0.5360', '0.7000', '0.7000', '0.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124705, '2022-10-12', 7473, 117824, 7002, 61771, '6.0000', '0.5360', '0.5360', '0.7000', '0.7000', '61.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124706, '2022-10-12', 2602, 117825, 7002, 54442, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124707, '2022-10-12', 7557, 117826, 7002, NULL, '10.0000', '0.0714', '0.0714', '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 (124708, '2022-10-12', 7490, 117827, 7002, 60806, '20.0000', '2.2232', '2.2232', '0.5000', '0.5000', '86.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124709, '2022-10-12', 7826, 117828, 7002, 51295, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 424);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124710, '2022-10-12', 2098, 117829, 7002, 60496, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124711, '2022-10-12', 1588, 117830, 7002, NULL, '1.0000', '8.5000', '8.5000', '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 (124712, '2022-10-12', 7347, 117831, 7002, 60387, '1.0000', '21.9000', '21.9000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124713, '2022-10-12', 7380, 117832, 7002, 64287, '1.0000', '12.5001', '12.5001', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124714, '2022-10-12', 7967, 117833, 7002, 63898, '1.0000', '7.3483', '7.3483', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124715, '2022-10-12', 2242, 117834, 7002, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '75.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124716, '2022-10-12', 9204, 117835, 7002, 60135, '1.0000', '6.0556', '6.0556', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124717, '2022-10-12', 8482, 117836, 7002, 64387, '1.0000', '19.9221', '19.9221', '24.0000', '24.0000', '6.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124718, '2022-10-12', 8053, 117837, 7002, 61715, '2.0000', '1.4542', '1.4542', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124719, '2022-10-12', 9469, 117838, 7002, 62525, '2.0000', '3.3470', '3.3470', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124720, '2022-10-12', 7641, 117839, 7002, 64271, '1.0000', '7.7960', '7.7960', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124721, '2022-10-12', 8135, 117840, 7002, 63866, '1.0000', '4.1634', '4.1634', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124722, '2022-10-12', 7967, 117841, 7002, 63898, '1.0000', '7.3483', '7.3483', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124723, '2022-10-12', 1863, 117842, 7003, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '123.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124724, '2022-10-12', 1935, 117843, 7003, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124725, '2022-10-12', 1612, 117844, 7004, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124726, '2022-10-12', 9871, 117845, 7004, 64422, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124727, '2022-10-12', 9940, 117846, 7005, 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 (124728, '2022-10-12', 1665, 117847, 7006, 59912, '1.0000', '1.5573', '1.5573', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124729, '2022-10-12', 7736, 117848, 7007, 64402, '1.0000', '25.8669', '25.8669', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124730, '2022-10-12', 8814, 117849, 7007, 57568, '10.0000', '-4.3750', '-4.3750', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 499);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124731, '2022-10-12', 7324, 117850, 7007, 62344, '1.0000', '6.3200', '6.3200', '8.5000', '8.5000', '21.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124732, '2022-10-12', 8183, 117851, 7007, 61852, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124733, '2022-10-12', 7547, 117852, 7007, NULL, '2.0000', '-0.3235', '-0.3235', '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 (124734, '2022-10-12', 8878, 117853, 7007, 64386, '2.0000', '0.7033', '0.7033', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124735, '2022-10-12', 1935, 117854, 7007, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '77.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124736, '2022-10-12', 7527, 117855, 7007, 46177, '1.0000', '0.8900', '0.8900', '2.0000', '2.0000', '79.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124737, '2022-10-12', 7382, 117856, 7007, 64382, '1.0000', '8.9452', '8.9452', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124738, '2022-10-12', 2284, 117857, 7007, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124739, '2022-10-12', 9894, 117858, 7007, 61804, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124740, '2022-10-12', 7560, 117859, 7008, NULL, '1.0000', '33.0200', '33.0200', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124741, '2022-10-12', 8482, 117860, 7008, NULL, '1.0000', '2.9500', '2.9500', '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 (124742, '2022-10-12', 7787, 117861, 7008, NULL, '1.0000', '10.9000', '10.9000', '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 (124743, '2022-10-12', 7509, 117862, 7008, NULL, '1.0000', '6.5000', '6.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 (124744, '2022-10-12', 7587, 117863, 7008, NULL, '1.0000', '6.4400', '6.4400', '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 (124745, '2022-10-12', 2289, 117864, 7008, 2949, '-296.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 (124746, '2022-10-12', 2289, 117864, 7008, NULL, '300.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-300.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124747, '2022-10-12', 7933, 117865, 7008, NULL, '1.0000', '0.4400', '0.4400', '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 (124748, '2022-10-12', 7514, 117866, 7008, NULL, '1.0000', '2.2500', '2.2500', '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 (124749, '2022-10-12', 7641, 117867, 7008, NULL, '1.0000', '1.9000', '1.9000', '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 (124750, '2022-10-12', 7514, 117868, 7008, NULL, '1.0000', '2.2500', '2.2500', '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 (124751, '2022-10-12', 9098, 117869, 7008, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124752, '2022-10-12', 7674, 117870, 7008, NULL, '1.0000', '1.3000', '1.3000', '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 (124753, '2022-10-12', 8566, 117871, 7008, NULL, '1.0000', '11.0000', '11.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 (124754, '2022-10-12', 7630, 117872, 7008, NULL, '2.0000', '10.0000', '10.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 (124755, '2022-10-12', 7317, 117873, 7008, NULL, '1.0000', '19.5500', '19.5500', '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 (124756, '2022-10-12', 7411, 117874, 7008, NULL, '4.0000', '1.3500', '1.3500', '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 (124757, '2022-10-12', 9534, 117875, 7008, NULL, '1.0000', '19.8900', '19.8900', '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 (124758, '2022-10-12', 9979, 117876, 7008, NULL, '1.0000', '13.9000', '13.9000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124759, '2022-10-12', 7579, 117877, 7008, NULL, '2.0000', '15.0000', '15.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 (124760, '2022-10-12', 7753, 117878, 7008, NULL, '1.0000', '3.4000', '3.4000', '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 (124761, '2022-10-12', 9274, 117879, 7008, NULL, '1.0000', '3.6000', '3.6000', '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 (124762, '2022-10-12', 2315, 117880, 7008, 2735, '-713.0000', '0.3300', '0.3300', '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 (124763, '2022-10-12', 2315, 117880, 7008, NULL, '715.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-715.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124764, '2022-10-12', 1935, 117881, 7008, 5586, '-219.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 (124765, '2022-10-12', 1935, 117881, 7008, NULL, '220.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-220.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124766, '2022-10-12', 7514, 117882, 7008, NULL, '1.0000', '2.2500', '2.2500', '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 (124767, '2022-10-12', 7712, 117883, 7008, NULL, '1.0000', '26.0000', '26.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 (124768, '2022-10-12', 7917, 117884, 7008, NULL, '2.0000', '5.0000', '5.0000', '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 (124769, '2022-10-12', 7641, 117885, 7008, NULL, '1.0000', '1.9000', '1.9000', '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 (124770, '2022-10-12', 7514, 117886, 7008, NULL, '1.0000', '2.2500', '2.2500', '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 (124771, '2022-10-12', 7591, 117887, 7008, NULL, '1.0000', '2.7500', '2.7500', '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 (124772, '2022-10-12', 7673, 117888, 7008, NULL, '1.0000', '16.8000', '16.8000', '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 (124773, '2022-10-12', 9814, 117889, 7008, 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 (124774, '2022-10-12', 7317, 117890, 7008, NULL, '1.0000', '19.5500', '19.5500', '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 (124775, '2022-10-12', 8878, 117891, 7008, NULL, '2.0000', '6.6700', '6.6700', '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 (124776, '2022-10-12', 9724, 117892, 7008, NULL, '1.0000', '20.3000', '20.3000', '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 (124777, '2022-10-12', 7668, 117893, 7008, NULL, '1.0000', '11.0000', '11.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 (124778, '2022-10-12', 8308, 117894, 7008, NULL, '1.0000', '2.0800', '2.0800', '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 (124779, '2022-10-12', 8020, 117895, 7008, NULL, '1.0000', '11.9000', '11.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 (124780, '2022-10-12', 8596, 117896, 7008, 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 (124781, '2022-10-12', 7930, 117897, 7008, NULL, '1.0000', '1.3000', '1.3000', '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 (124782, '2022-10-12', 7339, 117898, 7008, NULL, '10.0000', '49.0000', '49.0000', '0.9000', '0.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 (124783, '2022-10-12', 8666, 117899, 7008, NULL, '1.0000', '0.4600', '0.4600', '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 (124784, '2022-10-12', 7641, 117900, 7008, NULL, '1.0000', '1.9000', '1.9000', '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 (124785, '2022-10-12', 9145, 117901, 7008, NULL, '1.0000', '6.8900', '6.8900', '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 (124786, '2022-10-12', 2233, 117902, 7008, 2777, '-38.0000', '19.0200', '19.0200', '53.5000', '53.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 (124787, '2022-10-12', 2233, 117902, 7008, NULL, '39.0000', '19.0200', '19.0200', '53.5000', '53.5000', '-39.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124788, '2022-10-12', 8482, 117903, 7008, NULL, '1.0000', '2.9500', '2.9500', '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 (124789, '2022-10-12', 8674, 117904, 7008, NULL, '1.0000', '28.8900', '28.8900', '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 (124790, '2022-10-12', 1874, 117905, 7008, 670, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '0.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 (124791, '2022-10-12', 7411, 117906, 7008, NULL, '1.0000', '1.3500', '1.3500', '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 (124792, '2022-10-12', 7524, 117907, 7008, NULL, '1.0000', '11.9500', '11.9500', '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 (124793, '2022-10-12', 7657, 117908, 7008, NULL, '1.0000', '11.3200', '11.3200', '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 (124794, '2022-10-12', 7787, 117909, 7008, NULL, '1.0000', '10.9000', '10.9000', '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 (124795, '2022-10-12', 2069, 117910, 7008, 5571, '-26.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124796, '2022-10-12', 2069, 117910, 7008, NULL, '27.0000', '2.0400', '2.0400', '14.0000', '14.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 (124797, '2022-10-12', 7674, 117911, 7008, NULL, '1.0000', '1.3000', '1.3000', '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 (124798, '2022-10-12', 8302, 117912, 7008, 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 (124799, '2022-10-12', 7704, 117913, 7009, NULL, '1.0000', '0.4900', '0.4900', '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 (124800, '2022-10-12', 7780, 117914, 7009, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124801, '2022-10-12', 7666, 117915, 7009, NULL, '1.0000', '3.6000', '3.6000', '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 (124802, '2022-10-12', 8052, 117916, 7010, NULL, '1.0000', '29.0000', '29.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 (124803, '2022-10-12', 1912, 117917, 7011, 62852, '2.0000', '0.6540', '0.6540', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124804, '2022-10-12', 9986, 117918, 7011, 62388, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124805, '2022-10-12', 2289, 117919, 7011, NULL, '2.0000', '0.7150', '0.7150', '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 (124806, '2022-10-12', 2670, 117920, 7011, 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 (124807, '2022-10-12', 9734, 117921, 7011, 62184, '4.0000', '0.4628', '0.4628', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124808, '2022-10-12', 9496, 117922, 7011, NULL, '2.0000', '-5.5750', '-5.5750', '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 (124809, '2022-10-12', 1863, 117923, 7011, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124810, '2022-10-12', 8444, 117924, 7011, 62848, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124811, '2022-10-12', 3058, 117925, 7011, NULL, '1.0000', '8.2853', '8.2853', '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 (124812, '2022-10-12', 1755, 117926, 7011, 62165, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124813, '2022-10-12', 1621, 117927, 7011, 62149, '1.0000', '15.6433', '15.6433', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124814, '2022-10-12', 1602, 117928, 7011, 62877, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124815, '2022-10-12', 1689, 117929, 7011, 62414, '1.0000', '16.0080', '16.0080', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124816, '2022-10-12', 2340, 117930, 7011, 62406, '1.0000', '6.8200', '6.8200', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124817, '2022-10-12', 2283, 117931, 7011, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124818, '2022-10-12', 9503, 117932, 7011, NULL, '1.0000', '240.6525', '240.6525', '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 (124819, '2022-10-12', 1409, 117933, 7011, 64333, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124820, '2022-10-12', 9732, 117934, 7011, 64066, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124821, '2022-10-12', 1501, 117935, 7011, NULL, '2.0000', '-2.2016', '-2.2016', '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 (124822, '2022-10-12', 2167, 117936, 7011, NULL, '1.0000', '-35.2864', '-35.2864', '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 (124823, '2022-10-12', 2916, 117937, 7011, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (124824, '2022-10-12', 2284, 117938, 7011, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124825, '2022-10-12', 7671, 117939, 7011, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124826, '2022-10-12', 1671, 117940, 7011, 63416, '1.0000', '102.3591', '102.3591', '82.0000', '82.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124827, '2022-10-12', 1674, 117941, 7011, 64602, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '19.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124828, '2022-10-12', 9827, 117942, 7011, NULL, '1.0000', '16.6600', '16.6600', '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 (124829, '2022-10-12', 2823, 117943, 7011, NULL, '1.0000', '-56.9700', '-56.9700', '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 (124830, '2022-10-12', 2460, 117944, 7011, 62095, '1.0000', '34.0667', '34.0667', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124831, '2022-10-12', 1301, 117945, 7011, NULL, '1.0000', '1.6800', '1.6800', '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 (124832, '2022-10-12', 1912, 117946, 7011, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124833, '2022-10-12', 9729, 117947, 7011, 62094, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124834, '2022-10-12', 8208, 117948, 7011, NULL, '2.0000', '63.9119', '63.9119', '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 (124835, '2022-10-12', 9743, 117949, 7011, 62122, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124836, '2022-10-12', 1863, 117950, 7011, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124837, '2022-10-12', 1621, 117951, 7011, 62149, '1.0000', '15.6433', '15.6433', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124838, '2022-10-12', 2315, 117952, 7011, NULL, '2.0000', '0.7700', '0.7700', '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 (124839, '2022-10-12', 1912, 117953, 7011, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124840, '2022-10-12', 1493, 117954, 7011, 64609, '1.0000', '38.1107', '38.1107', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124841, '2022-10-12', 2411, 117955, 7011, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124842, '2022-10-12', 2108, 117956, 7011, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124843, '2022-10-12', 2283, 117957, 7011, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124844, '2022-10-12', 9482, 117958, 7011, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '230.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124845, '2022-10-12', 1912, 117959, 7011, 62852, '1.0000', '0.6540', '0.6540', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124846, '2022-10-12', 1504, 117960, 7011, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '70.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124847, '2022-10-12', 1812, 117961, 7011, 64583, '1.0000', '9.4894', '9.4894', '14.5000', '14.5000', '19.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124848, '2022-10-12', 1613, 117962, 7011, 53215, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124849, '2022-10-12', 2655, 117963, 7011, 64415, '1.0000', '105.9115', '105.9115', '11.0000', '11.0000', '12.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124850, '2022-10-12', 1863, 117964, 7011, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124851, '2022-10-12', 7944, 117965, 7011, 64037, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124852, '2022-10-12', 8771, 117966, 7011, 64426, '1.0000', '7.0066', '7.0066', '8.5000', '8.5000', '11.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124853, '2022-10-12', 2068, 117967, 7011, NULL, '1.0000', '13.8346', '13.8346', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124854, '2022-10-12', 2284, 117968, 7011, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124855, '2022-10-12', 1590, 117969, 7011, 63437, '3.0000', '2.4692', '2.4692', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124856, '2022-10-12', 2821, 117970, 7011, NULL, '1.0000', '-40.2618', '-40.2618', '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 (124857, '2022-10-12', 2354, 117971, 7011, NULL, '1.0000', '74.8792', '74.8792', '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 (124858, '2022-10-12', 9740, 117972, 7011, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124859, '2022-10-12', 9942, 117973, 7011, 64341, '1.0000', '12.6556', '12.6556', '18.0000', '18.0000', '13.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124860, '2022-10-12', 9775, 117974, 7011, 64590, '1.0000', '10.3037', '10.3037', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124861, '2022-10-12', 9735, 117975, 7011, 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 (124862, '2022-10-12', 2167, 117976, 7011, NULL, '1.0000', '-35.2864', '-35.2864', '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 (124863, '2022-10-12', 2384, 117977, 7011, NULL, '5.0000', '-312.4992', '-312.4992', '0.8000', '0.8000', '-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 (124864, '2022-10-12', 1863, 117978, 7011, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124865, '2022-10-12', 8746, 117979, 7011, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124866, '2022-10-12', 2029, 117980, 7011, 63798, '1.0000', '13.5000', '13.5000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124867, '2022-10-12', 1592, 117981, 7011, 64620, '1.0000', '43.2145', '43.2145', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124868, '2022-10-12', 9695, 117982, 7011, 61496, '2.0000', '5.5992', '5.5992', '9.0000', '9.0000', '50.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124869, '2022-10-12', 9683, 117983, 7011, 64421, '1.0000', '2.2267', '2.2267', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124870, '2022-10-12', 9487, 117984, 7011, 49918, '1.0000', '23.0000', '23.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 (124871, '2022-10-12', 8771, 117985, 7011, 64426, '1.0000', '7.0066', '7.0066', '8.5000', '8.5000', '11.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124872, '2022-10-12', 2302, 117986, 7011, 64584, '1.0000', '4.6073', '4.6073', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124873, '2022-10-12', 2169, 117987, 7012, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124874, '2022-10-12', 7886, 117988, 7012, NULL, '1.0000', '4.5000', '4.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 (124875, '2022-10-12', 2604, 117989, 7012, 18405, '1.0000', '90.0000', '90.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124876, '2022-10-12', 1690, 117990, 7012, 62766, '1.0000', '7.3939', '7.3939', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124877, '2022-10-12', 2915, 117991, 7012, 61684, '1.0000', '17.6012', '17.6012', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124878, '2022-10-12', 1754, 117992, 7012, 64313, '1.0000', '25.8571', '25.8571', '32.0000', '32.0000', '10.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124879, '2022-10-12', 2908, 117993, 7012, 62769, '2.0000', '0.2920', '0.2920', '0.5000', '0.5000', '21.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124880, '2022-10-12', 1494, 117994, 7012, 34684, '1.0000', '9.2896', '9.2896', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 242);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124881, '2022-10-12', 2643, 117995, 7012, 63814, '2.0000', '1.0660', '1.0660', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124882, '2022-10-12', 1904, 117996, 7012, 64501, '2.0000', '15.2048', '15.2048', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124883, '2022-10-12', 1592, 117997, 7012, 62811, '1.0000', '38.8059', '38.8059', '65.0000', '65.0000', '2.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124884, '2022-10-12', 1888, 117998, 7012, 64546, '1.0000', '19.0744', '19.0744', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124885, '2022-10-12', 1311, 117999, 7012, NULL, '5.0000', '0.3700', '0.3700', '0.6000', '0.6000', '-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 (124886, '2022-10-12', 1602, 118000, 7012, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124887, '2022-10-12', 1904, 118001, 7012, 64501, '3.0000', '15.2048', '15.2048', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124888, '2022-10-12', 7756, 118002, 7012, NULL, '1.0000', '26.9296', '26.9296', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124889, '2022-10-12', 7687, 118003, 7012, 44771, '1.0000', '39.5800', '39.5800', '65.0000', '65.0000', '5.0000', 1, 0, NULL, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124890, '2022-10-12', 7318, 118004, 7012, 63363, '1.0000', '11.5648', '11.5648', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124891, '2022-10-12', 7411, 118005, 7012, NULL, '1.0000', '1.5882', '1.5882', '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 (124892, '2022-10-12', 9846, 118006, 7012, 64327, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124893, '2022-10-12', 9940, 118007, 7012, 63135, '1.0000', '8.5758', '8.5758', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124894, '2022-10-12', 2964, 118008, 7012, 60920, '1.0000', '6.4630', '6.4630', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124895, '2022-10-12', 8482, 118009, 7012, 64536, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '8.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124896, '2022-10-12', 1602, 118010, 7012, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124897, '2022-10-12', 2016, 118011, 7012, 63826, '1.0000', '10.0889', '10.0889', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124898, '2022-10-12', 9829, 118012, 7012, 54336, '1.0000', '6.6000', '6.6000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124899, '2022-10-12', 2821, 118013, 7012, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124900, '2022-10-12', 7798, 118014, 7012, NULL, '1.0000', '22.9100', '22.9100', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124901, '2022-10-12', 7745, 118015, 7012, 64518, '1.0000', '8.6600', '8.6600', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124902, '2022-10-12', 9940, 118016, 7012, 63135, '1.0000', '8.5758', '8.5758', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124903, '2022-10-12', 7457, 118017, 7012, NULL, '1.0000', '2.3500', '2.3500', '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 (124904, '2022-10-12', 1863, 118018, 7012, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '122.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124905, '2022-10-12', 8881, 118019, 7012, 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 (124906, '2022-10-12', 7753, 118020, 7012, 64548, '1.0000', '10.3067', '10.3067', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124907, '2022-10-12', 1501, 118021, 7012, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '12.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124908, '2022-10-12', 2299, 118022, 7012, 52254, '1.0000', '3.0771', '3.0771', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124909, '2022-10-12', 7411, 118023, 7012, NULL, '1.0000', '1.5882', '1.5882', '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 (124910, '2022-10-12', 7380, 118024, 7012, NULL, '1.0000', '5.6200', '5.6200', '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 (124911, '2022-10-12', 2916, 118025, 7012, 63365, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124912, '2022-10-12', 2643, 118026, 7012, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124913, '2022-10-12', 9750, 118027, 7012, 62791, '1.0000', '3.5706', '3.5706', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124914, '2022-10-12', 2167, 118028, 7012, 64543, '1.0000', '2.7995', '2.7995', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124915, '2022-10-12', 2821, 118029, 7012, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124916, '2022-10-12', 7753, 118030, 7012, 64548, '1.0000', '10.3067', '10.3067', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124917, '2022-10-12', 7722, 118031, 7012, 55005, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 470);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124918, '2022-10-13', 8878, 118032, 7013, 64386, '2.0000', '0.7033', '0.7033', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124919, '2022-10-13', 7642, 118033, 7013, 62313, '1.0000', '5.9824', '5.9824', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124920, '2022-10-13', 7412, 118034, 7013, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124921, '2022-10-13', 7558, 118035, 7013, NULL, '2.0000', '3.3637', '3.3637', '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 (124922, '2022-10-13', 8924, 118036, 7013, 62322, '2.0000', '6.7845', '6.7845', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124923, '2022-10-13', 7639, 118037, 7013, 61814, '1.0000', '7.0556', '7.0556', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124924, '2022-10-13', 7611, 118038, 7013, 63881, '2.0000', '12.2736', '12.2736', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124925, '2022-10-13', 8753, 118039, 7013, 61883, '1.0000', '4.0821', '4.0821', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124926, '2022-10-13', 8308, 118040, 7013, NULL, '1.0000', '42345.7288', '42345.7288', '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 (124927, '2022-10-13', 9463, 118041, 7013, 64380, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124928, '2022-10-13', 9271, 118042, 7013, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124929, '2022-10-13', 7980, 118043, 7013, NULL, '5.0000', '21379.0542', '21379.0542', '0.9000', '0.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 (124930, '2022-10-13', 7807, 118044, 7013, 57411, '2.0000', '-61.8000', '-61.8000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124931, '2022-10-13', 7730, 118045, 7013, 64095, '3.0000', '0.1254', '0.1254', '0.2000', '0.2000', '96.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124932, '2022-10-13', 2315, 118046, 7013, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124933, '2022-10-13', 7431, 118047, 7013, 61854, '1.0000', '-12.4376', '-12.4376', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124934, '2022-10-13', 8101, 118048, 7013, 64377, '3.0000', '2.6234', '2.6234', '4.0000', '4.0000', '47.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124935, '2022-10-13', 7672, 118049, 7013, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124936, '2022-10-13', 8739, 118050, 7013, 61970, '1.0000', '17.9896', '17.9896', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 534);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124937, '2022-10-13', 2251, 118051, 7013, 63852, '1.0000', '13.1375', '13.1375', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124938, '2022-10-13', 7991, 118052, 7013, NULL, '1.0000', '34.0000', '34.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 (124939, '2022-10-13', 2287, 118053, 7013, 61863, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124940, '2022-10-13', 7917, 118054, 7013, 64393, '1.0000', '1.4670', '1.4670', '0.8000', '0.8000', '99.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124941, '2022-10-13', 2287, 118055, 7013, 61863, '4.0000', '3.1700', '3.1700', '4.5000', '4.5000', '27.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124942, '2022-10-13', 7564, 118056, 7013, 59164, '3.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124943, '2022-10-13', 1935, 118057, 7013, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '76.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124944, '2022-10-13', 7490, 118058, 7013, 60806, '4.0000', '2.2232', '2.2232', '0.5000', '0.5000', '82.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124945, '2022-10-13', 9286, 118059, 7013, 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 (124946, '2022-10-13', 2761, 118060, 7013, 61954, '1.0000', '10.6154', '10.6154', '16.0000', '16.0000', '8.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124947, '2022-10-13', 8615, 118061, 7013, 62505, '1.0000', '7.6237', '7.6237', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124948, '2022-10-13', 7881, 118062, 7013, 64634, '1.0000', '-2.8229', '-2.8229', '4.5000', '4.5000', '19.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124949, '2022-10-13', 7509, 118063, 7013, 64649, '1.0000', '8.8787', '8.8787', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124950, '2022-10-13', 9300, 118064, 7013, NULL, '1.0000', '3.0968', '3.0968', '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 (124951, '2022-10-13', 8878, 118065, 7013, 64386, '2.0000', '0.7033', '0.7033', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124952, '2022-10-13', 7459, 118066, 7013, 64242, '3.0000', '8.8882', '8.8882', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124953, '2022-10-13', 8277, 118067, 7013, 56147, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124954, '2022-10-13', 8062, 118068, 7013, NULL, '4.0000', '4.8200', '4.8200', '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 (124955, '2022-10-13', 8539, 118069, 7013, 64270, '2.0000', '1.8089', '1.8089', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124956, '2022-10-13', 2169, 118070, 7014, 62805, '2.0000', '1.4878', '1.4878', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124957, '2022-10-13', 2020, 118071, 7014, 64542, '1.0000', '7.1533', '7.1533', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124958, '2022-10-13', 2068, 118072, 7014, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124959, '2022-10-13', 7385, 118073, 7014, 55490, '5.0000', '2.6553', '2.6553', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124960, '2022-10-13', 2073, 118074, 7014, 62229, '2.0000', '2.3675', '2.3675', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124961, '2022-10-13', 1863, 118075, 7014, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '121.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124962, '2022-10-13', 1694, 118076, 7014, 55777, '1.0000', '7.2150', '7.2150', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124963, '2022-10-13', 1837, 118077, 7014, 62213, '1.0000', '0.6220', '0.6220', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124964, '2022-10-13', 1349, 118078, 7014, 64476, '1.0000', '36.7282', '36.7282', '61.0000', '61.0000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124965, '2022-10-13', 2643, 118079, 7014, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124966, '2022-10-13', 1863, 118080, 7014, 64555, '2.0000', '1.4448', '1.4448', '2.5000', '2.5000', '120.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124967, '2022-10-13', 9424, 118081, 7014, 62753, '1.0000', '4.8863', '4.8863', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124968, '2022-10-13', 1935, 118082, 7014, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124969, '2022-10-13', 2414, 118083, 7014, NULL, '2.0000', '6.3400', '6.3400', '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 (124970, '2022-10-13', 1303, 118084, 7014, 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 (124971, '2022-10-13', 1303, 118084, 7014, 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 (124972, '2022-10-13', 1303, 118084, 7014, 2657, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '49.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 (124973, '2022-10-13', 9330, 118085, 7014, 64541, '1.0000', '13.5167', '13.5167', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124974, '2022-10-13', 1783, 118086, 7014, 63956, '3.0000', '4.1997', '4.1997', '16.5000', '16.5000', '5.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124975, '2022-10-13', 1863, 118087, 7014, 64555, '2.0000', '1.4448', '1.4448', '2.5000', '2.5000', '120.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124976, '2022-10-13', 1519, 118088, 7014, 63409, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124977, '2022-10-13', 2858, 118089, 7014, 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 (124978, '2022-10-13', 9937, 118090, 7014, 56846, '1.0000', '40.0000', '40.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 492);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124979, '2022-10-13', 1524, 118091, 7014, 63407, '1.0000', '4.1496', '4.1496', '6.0000', '6.0000', '49.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124980, '2022-10-13', 2858, 118092, 7014, 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 (124981, '2022-10-13', 9695, 118093, 7015, 61496, '2.0000', '5.5992', '5.5992', '9.0000', '9.0000', '48.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124982, '2022-10-13', 1666, 118094, 7015, 64060, '1.0000', '3.0815', '3.0815', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124983, '2022-10-13', 2262, 118095, 7015, 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 (124984, '2022-10-13', 2545, 118096, 7015, 61556, '1.0000', '9.0358', '9.0358', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124985, '2022-10-13', 2506, 118097, 7015, NULL, '1.0000', '-21.5754', '-21.5754', '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 (124986, '2022-10-13', 8308, 118098, 7015, NULL, '1.0000', '17.1500', '17.1500', '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 (124987, '2022-10-13', 9943, 118099, 7015, 64342, '1.0000', '13.4667', '13.4667', '19.0000', '19.0000', '13.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124988, '2022-10-13', 9775, 118100, 7015, 64590, '1.0000', '10.3037', '10.3037', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124989, '2022-10-13', 2864, 118101, 7015, NULL, '5.0000', '3.3622', '3.3622', '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 (124990, '2022-10-13', 1394, 118102, 7015, 60293, '2.0000', '12.8535', '12.8535', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124991, '2022-10-13', 1602, 118103, 7015, 62357, '1.0000', '7.9264', '7.9264', '11.5000', '11.5000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124992, '2022-10-13', 8638, 118104, 7015, NULL, '1.0000', '0.6101', '0.6101', '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 (124993, '2022-10-13', 2109, 118105, 7015, NULL, '1.0000', '1.4840', '1.4840', '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 (124994, '2022-10-13', 1668, 118106, 7015, 64053, '1.0000', '19.2677', '19.2677', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124995, '2022-10-13', 2284, 118107, 7015, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124996, '2022-10-13', 2242, 118108, 7015, 48481, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124997, '2022-10-13', 1837, 118109, 7015, 57779, '1.0000', '1.6080', '1.6080', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124998, '2022-10-13', 2379, 118110, 7015, NULL, '1.0000', '-154.5325', '-154.5325', '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 (124999, '2022-10-13', 1787, 118111, 7015, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125000, '2022-10-13', 2416, 118112, 7015, 64417, '1.0000', '1.4106', '1.4106', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125001, '2022-10-13', 2315, 118113, 7015, NULL, '1.0000', '0.7700', '0.7700', '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 (125002, '2022-10-13', 2416, 118114, 7015, 64417, '2.0000', '1.4106', '1.4106', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125003, '2022-10-13', 2411, 118115, 7015, 56382, '1.0000', '1.6667', '1.6667', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125004, '2022-10-13', 1386, 118116, 7015, 64346, '1.0000', '4.8114', '4.8114', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125005, '2022-10-13', 7886, 118117, 7015, NULL, '1.0000', '14.5000', '14.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 (125006, '2022-10-13', 9913, 118118, 7015, NULL, '1.0000', '13.2000', '13.2000', '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 (125007, '2022-10-13', 1867, 118119, 7015, 64357, '1.0000', '11.5326', '11.5326', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125008, '2022-10-13', 2270, 118120, 7015, 57702, '1.0000', '5.1971', '5.1971', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125009, '2022-10-13', 9848, 118121, 7015, 64617, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125010, '2022-10-13', 2088, 118122, 7015, 64601, '1.0000', '2.8325', '2.8325', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125011, '2022-10-13', 8638, 118123, 7015, NULL, '2.0000', '0.6101', '0.6101', '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 (125012, '2022-10-13', 2821, 118124, 7015, NULL, '1.0000', '-40.2618', '-40.2618', '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 (125013, '2022-10-13', 2351, 118125, 7016, 3854, '-7.0000', '17.7000', '17.7000', '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 (125014, '2022-10-13', 2351, 118125, 7016, NULL, '8.0000', '17.7000', '17.7000', '24.5000', '24.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 (125015, '2022-10-13', 7612, 118126, 7016, NULL, '1.0000', '1.7300', '1.7300', '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 (125016, '2022-10-13', 9695, 118127, 7016, NULL, '1.0000', '4.5000', '4.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 (125017, '2022-10-13', 7912, 118128, 7016, NULL, '2.0000', '10.7800', '10.7800', '14.5000', '14.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 (125018, '2022-10-13', 8288, 118129, 7016, NULL, '5.0000', '1.1600', '1.1600', '1.8000', '1.8000', '-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 (125019, '2022-10-13', 7560, 118130, 7016, NULL, '1.0000', '33.0200', '33.0200', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125020, '2022-10-13', 7911, 118131, 7016, NULL, '1.0000', '4.3700', '4.3700', '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 (125021, '2022-10-13', 1855, 118132, 7016, 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 (125022, '2022-10-13', 7770, 118133, 7016, NULL, '1.0000', '7.8200', '7.8200', '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 (125023, '2022-10-13', 7514, 118134, 7016, NULL, '1.0000', '2.2500', '2.2500', '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 (125024, '2022-10-13', 2009, 118135, 7016, 5298, '-1.0000', '17.0000', '17.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 (125025, '2022-10-13', 2009, 118135, 7016, NULL, '2.0000', '17.0000', '17.0000', '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 (125026, '2022-10-13', 9850, 118136, 7016, NULL, '1.0000', '17.6000', '17.6000', '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 (125027, '2022-10-13', 7961, 118137, 7016, NULL, '1.0000', '10.5600', '10.5600', '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 (125028, '2022-10-13', 8203, 118138, 7016, NULL, '3.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-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 (125029, '2022-10-13', 1760, 118139, 7016, 3170, '-5.0000', '111.8384', '111.8384', '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 (125030, '2022-10-13', 1760, 118139, 7016, NULL, '8.0000', '111.8384', '111.8384', '1.0000', '1.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 (125031, '2022-10-13', 7556, 118140, 7016, 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 (125032, '2022-10-13', 7666, 118141, 7016, NULL, '1.0000', '3.6000', '3.6000', '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 (125033, '2022-10-13', 3001, 118142, 7016, NULL, '5.0000', '1.5000', '1.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 (125034, '2022-10-13', 1935, 118143, 7016, 5586, '-220.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 (125035, '2022-10-13', 1935, 118143, 7016, NULL, '221.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-221.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125036, '2022-10-13', 7666, 118144, 7016, NULL, '1.0000', '3.6000', '3.6000', '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 (125037, '2022-10-13', 8915, 118145, 7016, 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 (125038, '2022-10-13', 8208, 118146, 7016, NULL, '2.0000', '33.0000', '33.0000', '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 (125039, '2022-10-13', 8744, 118147, 7016, NULL, '1.0000', '3.6600', '3.6600', '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 (125040, '2022-10-13', 7472, 118148, 7016, NULL, '1.0000', '4.1000', '4.1000', '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 (125041, '2022-10-13', 9873, 118149, 7016, 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 (125042, '2022-10-13', 8393, 118150, 7016, 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 (125043, '2022-10-13', 7930, 118151, 7016, NULL, '2.0000', '1.3000', '1.3000', '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 (125044, '2022-10-13', 7570, 118152, 7016, NULL, '1.0000', '10.0000', '10.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 (125045, '2022-10-13', 9272, 118153, 7016, NULL, '1.0000', '3.1000', '3.1000', '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 (125046, '2022-10-13', 7641, 118154, 7016, NULL, '1.0000', '1.9000', '1.9000', '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 (125047, '2022-10-13', 7473, 118155, 7016, NULL, '4.0000', '0.5300', '0.5300', '0.8000', '0.8000', '-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 (125048, '2022-10-13', 7524, 118156, 7016, NULL, '1.0000', '11.9500', '11.9500', '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 (125049, '2022-10-13', 9729, 118157, 7016, NULL, '1.0000', '0.6200', '0.6200', '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 (125050, '2022-10-13', 9007, 118158, 7016, NULL, '1.0000', '22.2000', '22.2000', '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 (125051, '2022-10-13', 9695, 118159, 7016, NULL, '1.0000', '4.5000', '4.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 (125052, '2022-10-13', 2255, 118160, 7016, 2792, '-9.0000', '17.4900', '17.4900', '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 (125053, '2022-10-13', 2255, 118160, 7016, NULL, '10.0000', '17.4900', '17.4900', '32.5000', '32.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 (125054, '2022-10-13', 9734, 118161, 7016, NULL, '1.0000', '0.3200', '0.3200', '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 (125055, '2022-10-13', 7611, 118162, 7016, NULL, '1.0000', '4.4000', '4.4000', '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 (125056, '2022-10-13', 7853, 118163, 7016, NULL, '1.0000', '13.0000', '13.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 (125057, '2022-10-13', 7514, 118164, 7016, NULL, '2.0000', '2.2500', '2.2500', '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 (125058, '2022-10-13', 9734, 118165, 7016, NULL, '2.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125059, '2022-10-13', 7822, 118166, 7016, NULL, '1.0000', '8.0000', '8.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 (125060, '2022-10-13', 7591, 118167, 7016, NULL, '1.0000', '2.7500', '2.7500', '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 (125061, '2022-10-13', 7411, 118168, 7016, NULL, '1.0000', '1.3500', '1.3500', '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 (125062, '2022-10-13', 7334, 118169, 7016, NULL, '1.0000', '8.2300', '8.2300', '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 (125063, '2022-10-13', 7524, 118170, 7016, NULL, '4.0000', '11.9500', '11.9500', '10.0000', '10.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 (125064, '2022-10-13', 10018, 118171, 7016, NULL, '1.0000', '0.8500', '0.8500', '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 (125065, '2022-10-13', 7666, 118172, 7016, NULL, '1.0000', '3.6000', '3.6000', '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 (125066, '2022-10-13', 9920, 118173, 7016, NULL, '1.0000', '3.3000', '3.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 (125067, '2022-10-13', 7382, 118174, 7016, NULL, '2.0000', '7.4500', '7.4500', '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 (125068, '2022-10-13', 8243, 118175, 7016, NULL, '5.0000', '1.1400', '1.1400', '1.5000', '1.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 (125069, '2022-10-13', 2289, 118176, 7016, 2949, '-300.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 (125070, '2022-10-13', 2289, 118176, 7016, NULL, '302.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-302.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125071, '2022-10-13', 1840, 118177, 7016, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (125072, '2022-10-13', 7514, 118178, 7016, NULL, '1.0000', '2.2500', '2.2500', '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 (125073, '2022-10-13', 7672, 118179, 7016, NULL, '1.0000', '1.0200', '1.0200', '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 (125074, '2022-10-13', 9456, 118180, 7016, NULL, '1.0000', '3.3200', '3.3200', '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 (125075, '2022-10-13', 7666, 118181, 7016, NULL, '1.0000', '3.6000', '3.6000', '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 (125076, '2022-10-13', 7730, 118182, 7016, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (125077, '2022-10-13', 1935, 118183, 7017, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125078, '2022-10-13', 2169, 118184, 7017, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125079, '2022-10-13', 1663, 118185, 7017, 61659, '1.0000', '96.4068', '96.4068', '143.0000', '143.0000', '1.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125080, '2022-10-13', 9695, 118186, 7017, 63134, '1.0000', '5.8148', '5.8148', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125081, '2022-10-13', 9967, 118187, 7017, 59051, '1.0000', '6.6000', '6.6000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125082, '2022-10-13', 2580, 118188, 7017, 59042, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125083, '2022-10-13', 1688, 118189, 7017, 64498, '1.0000', '20.7356', '20.7356', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125084, '2022-10-13', 1687, 118190, 7017, 59951, '1.0000', '15.0466', '15.0466', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125085, '2022-10-13', 7802, 118191, 7017, NULL, '1.0000', '1.3468', '1.3468', '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 (125086, '2022-10-13', 1670, 118192, 7017, 62226, '1.0000', '37.8807', '37.8807', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125087, '2022-10-13', 2105, 118193, 7017, 63384, '1.0000', '2.1592', '2.1592', '4.5000', '4.5000', '15.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125088, '2022-10-13', 1863, 118194, 7017, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125089, '2022-10-13', 2263, 118195, 7017, 62799, '1.0000', '5.4801', '5.4801', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125090, '2022-10-13', 1884, 118196, 7017, 40864, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125091, '2022-10-13', 3009, 118197, 7017, 44553, '3.0000', '46.3296', '46.3296', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 307);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125092, '2022-10-13', 2315, 118198, 7017, 62801, '3.0000', '0.6397', '0.6397', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125093, '2022-10-13', 1884, 118199, 7017, 40864, '1.0000', '5.6713', '5.6713', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125094, '2022-10-13', 2567, 118200, 7017, 60524, '1.0000', '-54.1906', '-54.1906', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125095, '2022-10-13', 2283, 118201, 7017, 56961, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125096, '2022-10-13', 1863, 118202, 7017, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125097, '2022-10-13', 7518, 118203, 7017, NULL, '1.0000', '26.2300', '26.2300', '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 (125098, '2022-10-13', 2858, 118204, 7017, 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 (125099, '2022-10-13', 1311, 118205, 7017, NULL, '1.0000', '0.3700', '0.3700', '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 (125100, '2022-10-13', 1837, 118206, 7017, 62213, '2.0000', '0.6220', '0.6220', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125101, '2022-10-13', 7651, 118207, 7017, NULL, '1.0000', '3.1000', '3.1000', '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 (125102, '2022-10-13', 7459, 118208, 7017, NULL, '10.0000', '4.5753', '4.5753', '4.0000', '4.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 (125103, '2022-10-13', 9736, 118209, 7017, 64475, '1.0000', '5.3100', '5.3100', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125104, '2022-10-13', 9846, 118210, 7017, 64327, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125105, '2022-10-13', 1347, 118211, 7017, 62725, '2.0000', '2.7178', '2.7178', '6.0000', '6.0000', '28.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125106, '2022-10-13', 1665, 118212, 7017, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '142.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125107, '2022-10-13', 2293, 118213, 7017, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125108, '2022-10-13', 1837, 118214, 7017, 62213, '2.0000', '0.6220', '0.6220', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125109, '2022-10-13', 2858, 118215, 7017, 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 (125110, '2022-10-13', 2320, 118216, 7017, 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 (125111, '2022-10-13', 2068, 118217, 7017, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '8.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125112, '2022-10-13', 3059, 118218, 7017, 64558, '2.0000', '0.6375', '0.6375', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125113, '2022-10-13', 3044, 118219, 7017, NULL, '1.0000', '0.4000', '0.4000', '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 (125114, '2022-10-13', 7917, 118220, 7017, NULL, '2.0000', '5.0000', '5.0000', '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 (125115, '2022-10-13', 2237, 118221, 7017, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125116, '2022-10-13', 1863, 118222, 7017, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '116.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125117, '2022-10-13', 8482, 118223, 7018, 64536, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '7.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125118, '2022-10-13', 2738, 118224, 7018, 64322, '2.0000', '9.1758', '9.1758', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125119, '2022-10-13', 2643, 118225, 7018, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125120, '2022-10-14', 1950, 118226, 7019, 58156, '1.0000', '6.3376', '6.3376', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125121, '2022-10-14', 1946, 118227, 7019, NULL, '1.0000', '-16.6692', '-16.6692', '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 (125122, '2022-10-14', 1314, 118228, 7019, 48145, '1.0000', '1.5721', '1.5721', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 347);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125123, '2022-10-14', 3058, 118229, 7019, NULL, '1.0000', '8.2853', '8.2853', '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 (125124, '2022-10-14', 1863, 118230, 7019, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125125, '2022-10-14', 9995, 118231, 7019, 62382, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125126, '2022-10-14', 1787, 118232, 7019, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125127, '2022-10-14', 1866, 118233, 7019, 62374, '1.0000', '6.3250', '6.3250', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125128, '2022-10-14', 9775, 118234, 7019, 64590, '1.0000', '10.3037', '10.3037', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125129, '2022-10-14', 3029, 118235, 7019, NULL, '1.0000', '59.9505', '59.9505', '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 (125130, '2022-10-14', 1425, 118236, 7019, NULL, '1.0000', '10.4939', '10.4939', '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 (125131, '2022-10-14', 2105, 118237, 7019, 64732, '2.0000', '2.6449', '2.6449', '4.5000', '4.5000', '13.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125132, '2022-10-14', 9842, 118238, 7019, 64036, '1.0000', '7.3129', '7.3129', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125133, '2022-10-14', 1935, 118239, 7019, 58141, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125134, '2022-10-14', 1765, 118240, 7019, 51334, '1.0000', '5.4760', '5.4760', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 426);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125135, '2022-10-14', 9856, 118241, 7019, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125136, '2022-10-14', 2296, 118242, 7019, 55720, '1.0000', '16.0300', '16.0300', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125137, '2022-10-14', 2256, 118243, 7019, NULL, '1.0000', '16.6000', '16.6000', '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 (125138, '2022-10-14', 1863, 118244, 7019, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125139, '2022-10-14', 1425, 118245, 7019, NULL, '1.0000', '10.4939', '10.4939', '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 (125140, '2022-10-14', 8835, 118246, 7019, 63769, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125141, '2022-10-14', 8835, 118247, 7019, 63769, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125142, '2022-10-14', 1982, 118248, 7019, 63791, '1.0000', '0.4765', '0.4765', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125143, '2022-10-14', 2965, 118249, 7019, NULL, '1.0000', '-9.3438', '-9.3438', '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 (125144, '2022-10-14', 1863, 118250, 7019, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '114.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125145, '2022-10-14', 1504, 118251, 7019, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '60.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125146, '2022-10-14', 2315, 118252, 7019, 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 (125147, '2022-10-14', 2088, 118253, 7019, 64601, '1.0000', '2.9062', '2.9062', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125148, '2022-10-14', 9219, 118254, 7019, 64734, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125149, '2022-10-14', 7852, 118255, 7019, 39761, '1.0000', '15.0000', '15.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125150, '2022-10-14', 1804, 118256, 7019, 64616, '1.0000', '1.2933', '1.2933', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125151, '2022-10-14', 7496, 118257, 7019, 64056, '1.0000', '4.6129', '4.6129', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125152, '2022-10-14', 9729, 118258, 7019, 62094, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125153, '2022-10-14', 9729, 118258, 7019, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125154, '2022-10-14', 2295, 118259, 7019, 64572, '3.0000', '1.6935', '1.6935', '2.5000', '2.5000', '57.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125155, '2022-10-14', 1432, 118260, 7019, 64719, '1.0000', '12.9932', '12.9932', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125156, '2022-10-14', 7865, 118261, 7019, NULL, '1.0000', '1.6300', '1.6300', '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 (125157, '2022-10-14', 2445, 118262, 7019, NULL, '3.0000', '3.1134', '3.1134', '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 (125158, '2022-10-14', 1386, 118263, 7019, 64730, '1.0000', '4.8042', '4.8042', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125159, '2022-10-14', 2025, 118264, 7019, 59671, '1.0000', '4.9242', '4.9242', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125160, '2022-10-14', 8638, 118265, 7019, NULL, '1.0000', '0.6101', '0.6101', '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 (125161, '2022-10-14', 8444, 118266, 7019, 62848, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125162, '2022-10-14', 1488, 118267, 7019, 55554, '1.0000', '4.2964', '4.2964', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125163, '2022-10-14', 9856, 118268, 7019, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125164, '2022-10-14', 1519, 118269, 7019, NULL, '1.0000', '3.9996', '3.9996', '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 (125165, '2022-10-14', 1839, 118270, 7019, NULL, '1.0000', '-1616320.3365', '-1616320.3365', '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 (125166, '2022-10-14', 1812, 118271, 7019, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '18.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125167, '2022-10-14', 9791, 118272, 7019, 64592, '4.0000', '0.9575', '0.9575', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125168, '2022-10-14', 2167, 118273, 7019, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125169, '2022-10-14', 1386, 118274, 7019, 64730, '1.0000', '4.8042', '4.8042', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125170, '2022-10-14', 9695, 118275, 7019, 64768, '1.0000', '5.7018', '5.7018', '9.0000', '9.0000', '29.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125171, '2022-10-14', 1602, 118276, 7019, 62357, '1.0000', '7.9190', '7.9190', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125172, '2022-10-14', 1674, 118277, 7019, 64602, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '18.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125173, '2022-10-14', 9750, 118278, 7019, NULL, '1.0000', '2.3934', '2.3934', '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 (125174, '2022-10-14', 1612, 118279, 7019, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125175, '2022-10-14', 1612, 118280, 7019, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125176, '2022-10-14', 2302, 118281, 7019, 64584, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125177, '2022-10-14', 2167, 118282, 7019, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125178, '2022-10-14', 2414, 118283, 7019, NULL, '2.0000', '-1.2752', '-1.2752', '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 (125179, '2022-10-14', 9219, 118284, 7019, 64734, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125180, '2022-10-14', 1425, 118285, 7020, NULL, '1.0000', '10.4939', '10.4939', '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 (125181, '2022-10-14', 9750, 118286, 7020, NULL, '1.0000', '2.3934', '2.3934', '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 (125182, '2022-10-14', 2315, 118287, 7020, NULL, '1.0000', '0.7700', '0.7700', '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 (125183, '2022-10-14', 9089, 118288, 7020, 64754, '1.0000', '-20.2735', '-20.2735', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125184, '2022-10-14', 1999, 118289, 7020, 59704, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125185, '2022-10-14', 2010, 118290, 7020, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125186, '2022-10-14', 8744, 118291, 7020, 64755, '1.0000', '2.9091', '2.9091', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125187, '2022-10-14', 2656, 118292, 7020, 64751, '1.0000', '1.9693', '1.9693', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125188, '2022-10-14', 2706, 118293, 7020, 64722, '1.0000', '10.2168', '10.2168', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125189, '2022-10-14', 1337, 118294, 7020, NULL, '1.0000', '2.2000', '2.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 (125190, '2022-10-14', 2642, 118295, 7020, 63780, '1.0000', '8.7425', '8.7425', '18.5000', '18.5000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125191, '2022-10-14', 2366, 118296, 7020, NULL, '2.0000', '-122.9116', '-122.9116', '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 (125192, '2022-10-14', 1874, 118297, 7020, NULL, '1.0000', '-24.5000', '-24.5000', '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 (125193, '2022-10-14', 2335, 118298, 7020, NULL, '1.0000', '18.9000', '18.9000', '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 (125194, '2022-10-14', 9219, 118299, 7020, 64734, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125195, '2022-10-14', 1950, 118300, 7020, NULL, '1.0000', '6.3376', '6.3376', '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 (125196, '2022-10-14', 2083, 118301, 7020, NULL, '4.0000', '0.5800', '0.5800', '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 (125197, '2022-10-14', 9729, 118302, 7020, 57675, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125198, '2022-10-14', 9729, 118302, 7020, NULL, '1.0000', '0.6200', '0.6200', '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 (125199, '2022-10-14', 1602, 118303, 7020, 62357, '1.0000', '7.9190', '7.9190', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125200, '2022-10-14', 1863, 118304, 7020, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '111.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125201, '2022-10-14', 2167, 118305, 7020, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125202, '2022-10-14', 1499, 118306, 7020, 62833, '2.0000', '0.5150', '0.5150', '0.7000', '0.7000', '17.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125203, '2022-10-14', 8638, 118307, 7020, NULL, '2.0000', '0.6101', '0.6101', '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 (125204, '2022-10-14', 1935, 118308, 7020, 57809, '1.0000', '0.6516', '0.6516', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125205, '2022-10-14', 1761, 118309, 7020, 60290, '2.0000', '2.2066', '2.2066', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125206, '2022-10-14', 2275, 118310, 7020, NULL, '1.0000', '-26.2984', '-26.2984', '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 (125207, '2022-10-14', 2305, 118311, 7020, 53223, '1.0000', '4.0595', '4.0595', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125208, '2022-10-14', 2285, 118312, 7020, NULL, '1.0000', '-358.6732', '-358.6732', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125209, '2022-10-14', 9729, 118313, 7020, 57675, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125210, '2022-10-14', 8969, 118314, 7020, 39814, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '57.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125211, '2022-10-14', 8165, 118315, 7020, 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 (125212, '2022-10-14', 2354, 118316, 7020, NULL, '1.0000', '74.8792', '74.8792', '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 (125213, '2022-10-14', 8237, 118317, 7021, NULL, '1.0000', '8.5000', '8.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 (125214, '2022-10-14', 1501, 118318, 7021, 63870, '2.0000', '3.1917', '3.1917', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125215, '2022-10-14', 9202, 118319, 7021, NULL, '1.0000', '2.1700', '2.1700', '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 (125216, '2022-10-14', 9720, 118320, 7021, 59121, '1.0000', '10.6000', '10.6000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125217, '2022-10-14', 7482, 118321, 7021, 63869, '1.0000', '4.8628', '4.8628', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125218, '2022-10-14', 8097, 118322, 7021, 61845, '1.0000', '14.9186', '14.9186', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125219, '2022-10-14', 9856, 118323, 7021, 64396, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125220, '2022-10-14', 7514, 118324, 7021, 63938, '2.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125221, '2022-10-14', 7412, 118325, 7021, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125222, '2022-10-14', 7385, 118326, 7021, 64401, '10.0000', '5.1760', '5.1760', '4.5000', '4.5000', '62.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125223, '2022-10-14', 7589, 118327, 7021, 46257, '1.0000', '1.9144', '1.9144', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125224, '2022-10-14', 8866, 118328, 7021, 61723, '1.0000', '3.6189', '3.6189', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125225, '2022-10-14', 8449, 118329, 7021, 64663, '1.0000', '16.6714', '16.6714', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125226, '2022-10-14', 8840, 118330, 7021, 64684, '1.0000', '13.6555', '13.6555', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125227, '2022-10-14', 7473, 118331, 7021, 64657, '3.0000', '0.5521', '0.5521', '0.8000', '0.8000', '122.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125228, '2022-10-14', 7509, 118332, 7021, 64649, '1.0000', '8.8787', '8.8787', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125229, '2022-10-14', 7558, 118333, 7021, NULL, '2.0000', '3.3637', '3.3637', '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 (125230, '2022-10-14', 7459, 118334, 7021, 64242, '2.0000', '8.8882', '8.8882', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125231, '2022-10-14', 7756, 118335, 7021, 64403, '1.0000', '35.3195', '35.3195', '53.5000', '53.5000', '2.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125232, '2022-10-14', 8138, 118336, 7021, 48394, '1.0000', '24.5625', '24.5625', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125233, '2022-10-14', 2545, 118337, 7021, 48058, '1.0000', '8.5306', '8.5306', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125234, '2022-10-14', 2295, 118338, 7021, NULL, '3.0000', '-7.8337', '-7.8337', '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 (125235, '2022-10-14', 7548, 118339, 7021, NULL, '3.0000', '3.9186', '3.9186', '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 (125236, '2022-10-14', 7509, 118340, 7021, 64649, '1.0000', '8.8787', '8.8787', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125237, '2022-10-14', 7514, 118341, 7021, 63938, '2.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125238, '2022-10-14', 7672, 118342, 7021, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125239, '2022-10-14', 7674, 118343, 7021, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125240, '2022-10-14', 1855, 118344, 7021, 61776, '1.0000', '1.4852', '1.4852', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125241, '2022-10-14', 8666, 118345, 7021, 64104, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125242, '2022-10-14', 9985, 118346, 7021, 64280, '1.0000', '6.9000', '6.9000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125243, '2022-10-14', 7753, 118347, 7021, 64237, '1.0000', '3.7188', '3.7188', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125244, '2022-10-14', 7558, 118348, 7021, NULL, '6.0000', '3.3637', '3.3637', '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 (125245, '2022-10-14', 7317, 118349, 7021, 64236, '1.0000', '15.9122', '15.9122', '23.0000', '23.0000', '9.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125246, '2022-10-14', 9980, 118350, 7021, 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 (125247, '2022-10-14', 7514, 118351, 7021, 63938, '2.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '38.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125248, '2022-10-14', 9791, 118352, 7022, 64592, '1.0000', '0.9575', '0.9575', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125249, '2022-10-14', 3028, 118353, 7022, 63771, '1.0000', '0.7380', '0.7380', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125250, '2022-10-14', 1863, 118354, 7022, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125251, '2022-10-14', 1912, 118355, 7022, 62852, '2.0000', '0.6540', '0.6540', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125252, '2022-10-14', 2105, 118356, 7022, 64732, '4.0000', '2.6449', '2.6449', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125253, '2022-10-14', 1580, 118357, 7022, 64582, '6.0000', '1.4688', '1.4688', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125254, '2022-10-14', 2242, 118358, 7022, 48481, '6.0000', '1.2664', '1.2664', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125255, '2022-10-14', 2940, 118359, 7022, 62115, '1.0000', '10.3800', '10.3800', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125256, '2022-10-14', 9840, 118360, 7022, 64598, '4.0000', '1.5000', '1.5000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125257, '2022-10-14', 9741, 118361, 7022, NULL, '1.0000', '7.8500', '7.8500', '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 (125258, '2022-10-14', 2730, 118362, 7022, 63990, '4.0000', '2.2167', '2.2167', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125259, '2022-10-14', 1382, 118363, 7022, 64723, '1.0000', '4.1875', '4.1875', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125260, '2022-10-14', 9482, 118364, 7022, 64050, '3.0000', '1.2046', '1.2046', '2.0000', '2.0000', '227.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125261, '2022-10-14', 7328, 118365, 7023, NULL, '4.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (125262, '2022-10-14', 2964, 118366, 7024, NULL, '1.0000', '8015303.8947', '8015303.8947', '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 (125263, '2022-10-14', 7741, 118367, 7025, NULL, '1.0000', '-174.4114', '-174.4114', '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 (125264, '2022-10-14', 7411, 118368, 7026, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125265, '2022-10-14', 7959, 118369, 7026, NULL, '3.0000', '-15.6222', '-15.6222', '0.7000', '0.7000', '-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 (125266, '2022-10-14', 7642, 118370, 7026, 62313, '1.0000', '5.9824', '5.9824', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125267, '2022-10-14', 7967, 118371, 7026, 63898, '1.0000', '7.3483', '7.3483', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125268, '2022-10-14', 7411, 118372, 7026, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125269, '2022-10-14', 8979, 118373, 7026, 64408, '1.0000', '0.9426', '0.9426', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125270, '2022-10-14', 7473, 118374, 7026, 64657, '1.0000', '0.5521', '0.5521', '0.8000', '0.8000', '121.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125271, '2022-10-14', 7824, 118375, 7026, 64675, '1.0000', '7.7000', '7.7000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125272, '2022-10-14', 2315, 118376, 7026, 64405, '1.0000', '0.7662', '0.7662', '1.0000', '1.0000', '96.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125273, '2022-10-14', 1574, 118377, 7026, 46692, '1.0000', '1.5554', '1.5554', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 339);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125274, '2022-10-14', 7530, 118378, 7026, 64397, '1.0000', '7.7711', '7.7711', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125275, '2022-10-14', 7672, 118379, 7026, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125276, '2022-10-14', 9092, 118380, 7026, 64099, '1.0000', '0.3187', '0.3187', '0.5000', '0.5000', '252.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125277, '2022-10-14', 7526, 118381, 7026, NULL, '1.0000', '-174.2425', '-174.2425', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125278, '2022-10-14', 7585, 118382, 7026, 60502, '2.0000', '3.6407', '3.6407', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125279, '2022-10-14', 9942, 118383, 7026, 64258, '2.0000', '8.9119', '8.9119', '18.0000', '18.0000', '6.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125280, '2022-10-14', 1982, 118384, 7026, NULL, '1.0000', '-0.7500', '-0.7500', '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 (125281, '2022-10-14', 2482, 118385, 7027, 5194, '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 (125282, '2022-10-14', 2602, 118386, 7027, 54368, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125283, '2022-10-14', 2296, 118387, 7027, 64524, '2.0000', '15.2744', '15.2744', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125284, '2022-10-14', 1501, 118388, 7027, 62726, '2.0000', '60.5957', '60.5957', '5.5000', '5.5000', '10.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125285, '2022-10-14', 7886, 118389, 7027, NULL, '1.0000', '4.5000', '4.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 (125286, '2022-10-14', 9915, 118390, 7027, 60028, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125287, '2022-10-14', 2169, 118391, 7027, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125288, '2022-10-14', 9747, 118392, 7027, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125289, '2022-10-14', 2068, 118393, 7027, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '7.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125290, '2022-10-14', 8878, 118394, 7027, 58808, '2.0000', '1.2006', '1.2006', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125291, '2022-10-14', 7983, 118395, 7028, NULL, '1.0000', '5.9000', '5.9000', '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 (125292, '2022-10-14', 8539, 118396, 7028, NULL, '1.0000', '31.8000', '31.8000', '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 (125293, '2022-10-14', 7333, 118397, 7028, NULL, '2.0000', '13.5000', '13.5000', '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 (125294, '2022-10-14', 1989, 118398, 7028, 6352, '-2.0000', '5.1429', '5.1429', '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 (125295, '2022-10-14', 1989, 118398, 7028, NULL, '3.0000', '5.1429', '5.1429', '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 (125296, '2022-10-14', 7524, 118399, 7028, NULL, '2.0000', '11.9500', '11.9500', '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 (125297, '2022-10-14', 7457, 118400, 7028, NULL, '1.0000', '6.0000', '6.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 (125298, '2022-10-14', 7457, 118401, 7028, NULL, '1.0000', '6.0000', '6.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 (125299, '2022-10-14', 9092, 118402, 7028, NULL, '4.0000', '5.2900', '5.2900', '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 (125300, '2022-10-14', 9974, 118403, 7028, 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 (125301, '2022-10-14', 7715, 118404, 7028, NULL, '2.0000', '1.8900', '1.8900', '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 (125302, '2022-10-14', 9984, 118405, 7028, 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 (125303, '2022-10-14', 2650, 118406, 7028, 12033, '-7.0000', '7.3200', '7.3200', '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 (125304, '2022-10-14', 2650, 118406, 7028, NULL, '8.0000', '7.3200', '7.3200', '12.5000', '12.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 (125305, '2022-10-14', 1501, 118407, 7028, NULL, '1.0000', '2.0500', '2.0500', '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 (125306, '2022-10-14', 8548, 118408, 7028, NULL, '1.0000', '12.0000', '12.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 (125307, '2022-10-14', 7411, 118409, 7028, NULL, '1.0000', '1.3500', '1.3500', '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 (125308, '2022-10-14', 9788, 118410, 7028, NULL, '4.0000', '1.3000', '1.3000', '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 (125309, '2022-10-14', 2965, 118411, 7028, 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 (125310, '2022-10-14', 7822, 118412, 7028, NULL, '1.0000', '8.0000', '8.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 (125311, '2022-10-14', 7672, 118413, 7028, NULL, '1.0000', '1.0200', '1.0200', '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 (125312, '2022-10-14', 7554, 118414, 7028, 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 (125313, '2022-10-14', 9092, 118415, 7028, NULL, '19.0000', '5.2900', '5.2900', '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 (125314, '2022-10-14', 7674, 118416, 7028, NULL, '1.0000', '1.3000', '1.3000', '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 (125315, '2022-10-14', 7745, 118417, 7028, NULL, '1.0000', '6.7000', '6.7000', '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 (125316, '2022-10-14', 7509, 118418, 7028, NULL, '1.0000', '6.5000', '6.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 (125317, '2022-10-14', 7786, 118419, 7028, NULL, '1.0000', '6.7700', '6.7700', '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 (125318, '2022-10-14', 9178, 118420, 7028, NULL, '1.0000', '4.0000', '4.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 (125319, '2022-10-14', 7411, 118421, 7028, NULL, '2.0000', '1.3500', '1.3500', '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 (125320, '2022-10-14', 8810, 118422, 7028, NULL, '1.0000', '1.6000', '1.6000', '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 (125321, '2022-10-14', 7954, 118423, 7028, 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 (125322, '2022-10-14', 7708, 118424, 7028, NULL, '1.0000', '7.8000', '7.8000', '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 (125323, '2022-10-14', 2251, 118425, 7028, 2788, '-40.0000', '10.9700', '10.9700', '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 (125324, '2022-10-14', 2251, 118425, 7028, NULL, '41.0000', '10.9700', '10.9700', '22.0000', '22.0000', '-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 (125325, '2022-10-14', 2486, 118426, 7028, NULL, '4.0000', '4.0000', '4.0000', '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 (125326, '2022-10-14', 9836, 118427, 7028, NULL, '1.0000', '25.0000', '25.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 (125327, '2022-10-14', 9893, 118428, 7028, NULL, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125328, '2022-10-14', 8359, 118429, 7028, NULL, '1.0000', '13.0000', '13.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125329, '2022-10-14', 7666, 118430, 7028, NULL, '1.0000', '3.6000', '3.6000', '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 (125330, '2022-10-14', 7514, 118431, 7028, NULL, '2.0000', '2.2500', '2.2500', '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 (125331, '2022-10-14', 7753, 118432, 7028, NULL, '1.0000', '3.4000', '3.4000', '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 (125332, '2022-10-14', 1647, 118433, 7028, 3218, '-29.0000', '4.7200', '4.7200', '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 (125333, '2022-10-14', 1647, 118433, 7028, NULL, '30.0000', '4.7200', '4.7200', '10.0000', '10.0000', '-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 (125334, '2022-10-14', 9695, 118434, 7028, NULL, '2.0000', '4.5000', '4.5000', '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 (125335, '2022-10-14', 7641, 118435, 7028, NULL, '1.0000', '1.9000', '1.9000', '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 (125336, '2022-10-14', 7712, 118436, 7028, NULL, '1.0000', '26.0000', '26.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 (125337, '2022-10-14', 7518, 118437, 7029, NULL, '1.0000', '7.8200', '7.8200', '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 (125338, '2022-10-14', 7641, 118438, 7030, NULL, '1.0000', '1.9000', '1.9000', '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 (125339, '2022-10-14', 2315, 118439, 7030, 2735, '-715.0000', '0.3300', '0.3300', '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 (125340, '2022-10-14', 2315, 118439, 7030, NULL, '716.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-716.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125341, '2022-10-14', 7743, 118440, 7030, NULL, '1.0000', '1.3100', '1.3100', '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 (125342, '2022-10-14', 8979, 118441, 7030, NULL, '6.0000', '1.0000', '1.0000', '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 (125343, '2022-10-14', 7514, 118442, 7030, NULL, '1.0000', '2.2500', '2.2500', '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 (125344, '2022-10-14', 7859, 118443, 7030, NULL, '1.0000', '12.6300', '12.6300', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125345, '2022-10-14', 9821, 118444, 7030, NULL, '1.0000', '1.4500', '1.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 (125346, '2022-10-14', 1841, 118445, 7030, NULL, '2.0000', '142.5780', '142.5780', '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 (125347, '2022-10-14', 1840, 118446, 7030, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (125348, '2022-10-14', 2381, 118447, 7031, 64840, '1.0000', '14.5327', '14.5327', '19.5000', '19.5000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125349, '2022-10-14', 2085, 118448, 7031, NULL, '10.0000', '1.4119', '1.4119', '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 (125350, '2022-10-14', 2315, 118449, 7031, NULL, '1.0000', '0.7700', '0.7700', '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 (125351, '2022-10-14', 9791, 118450, 7031, 64592, '1.0000', '0.9575', '0.9575', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125352, '2022-10-14', 2266, 118451, 7031, 51212, '1.0000', '7.5934', '7.5934', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 425);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125353, '2022-10-14', 2105, 118452, 7031, 64858, '2.0000', '2.9790', '2.9790', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125354, '2022-10-14', 2068, 118453, 7031, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125355, '2022-10-14', 2284, 118454, 7031, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125356, '2022-10-14', 7741, 118455, 7031, NULL, '1.0000', '-174.4114', '-174.4114', '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 (125357, '2022-10-14', 1935, 118456, 7031, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125358, '2022-10-14', 1367, 118457, 7031, 64867, '1.0000', '52.0805', '52.0805', '107.0000', '107.0000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125359, '2022-10-14', 1521, 118458, 7031, 63439, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125360, '2022-10-14', 7741, 118459, 7031, NULL, '1.0000', '-174.4114', '-174.4114', '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 (125361, '2022-10-14', 1912, 118460, 7031, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125362, '2022-10-14', 1571, 118461, 7031, NULL, '1.0000', '563.9583', '563.9583', '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 (125363, '2022-10-14', 8677, 118462, 7031, NULL, '2.0000', '1026.1382', '1026.1382', '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 (125364, '2022-10-14', 1761, 118463, 7031, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125365, '2022-10-14', 2315, 118464, 7031, NULL, '1.0000', '0.7700', '0.7700', '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 (125366, '2022-10-14', 2994, 118465, 7031, 64871, '1.0000', '7.5978', '7.5978', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125367, '2022-10-14', 1816, 118466, 7031, 58143, '1.0000', '22.2575', '22.2575', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125368, '2022-10-14', 1592, 118467, 7031, 63468, '1.0000', '43.2145', '43.2145', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125369, '2022-10-14', 2293, 118468, 7031, NULL, '3.0000', '1.1118', '1.1118', '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 (125370, '2022-10-14', 8017, 118469, 7031, 64594, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125371, '2022-10-14', 2916, 118470, 7031, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (125372, '2022-10-14', 1529, 118471, 7031, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125373, '2022-10-14', 1812, 118472, 7031, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '17.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125374, '2022-10-14', 1339, 118473, 7031, 64013, '1.0000', '2.4387', '2.4387', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125375, '2022-10-14', 9741, 118474, 7031, NULL, '1.0000', '7.8500', '7.8500', '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 (125376, '2022-10-14', 9695, 118475, 7031, 64768, '1.0000', '5.7018', '5.7018', '9.0000', '9.0000', '28.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125377, '2022-10-14', 9763, 118476, 7031, 64600, '2.0000', '2.8399', '2.8399', '4.0000', '4.0000', '18.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125378, '2022-10-14', 1812, 118477, 7031, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '17.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125379, '2022-10-14', 1771, 118478, 7031, 64017, '1.0000', '7.7052', '7.7052', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125380, '2022-10-14', 9734, 118479, 7031, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '99.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125381, '2022-10-14', 1812, 118480, 7031, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '17.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125382, '2022-10-14', 2655, 118481, 7031, 64750, '1.0000', '38.9798', '38.9798', '11.0000', '11.0000', '11.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125383, '2022-10-14', 1519, 118482, 7031, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125384, '2022-10-14', 1839, 118483, 7031, NULL, '1.0000', '-4848982.4095', '-4848982.4095', '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 (125385, '2022-10-14', 7411, 118484, 7031, NULL, '2.0000', '1.2819', '1.2819', '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 (125386, '2022-10-14', 2167, 118485, 7031, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125387, '2022-10-14', 1559, 118486, 7031, 53218, '1.0000', '31.0635', '31.0635', '41.0000', '41.0000', '2.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125388, '2022-10-14', 2068, 118487, 7031, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125389, '2022-10-14', 1504, 118488, 7031, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125390, '2022-10-14', 2643, 118489, 7031, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125391, '2022-10-14', 9831, 118490, 7031, 61498, '1.0000', '-1.0075', '-1.0075', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125392, '2022-10-14', 1501, 118491, 7031, NULL, '1.0000', '-2.2016', '-2.2016', '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 (125393, '2022-10-14', 1783, 118492, 7031, 64610, '3.0000', '15.2889', '15.2889', '16.5000', '16.5000', '15.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125394, '2022-10-14', 9762, 118493, 7031, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125395, '2022-10-14', 2821, 118494, 7031, NULL, '1.0000', '-40.2618', '-40.2618', '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 (125396, '2022-10-14', 7802, 118495, 7031, NULL, '3.0000', '1.1497', '1.1497', '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 (125397, '2022-10-14', 7411, 118496, 7031, NULL, '1.0000', '1.2819', '1.2819', '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 (125398, '2022-10-14', 1501, 118497, 7031, NULL, '1.0000', '-2.2016', '-2.2016', '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 (125399, '2022-10-14', 2233, 118498, 7031, 64569, '1.0000', '28.5305', '28.5305', '53.5000', '53.5000', '9.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125400, '2022-10-14', 1921, 118499, 7031, 62157, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125401, '2022-10-14', 2038, 118500, 7031, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125402, '2022-10-14', 2297, 118501, 7031, NULL, '1.0000', '10.2971', '10.2971', '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 (125403, '2022-10-14', 1866, 118502, 7031, 62374, '1.0000', '6.3250', '6.3250', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125404, '2022-10-14', 2088, 118503, 7031, 64601, '1.0000', '2.9062', '2.9062', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125405, '2022-10-14', 1427, 118504, 7031, 64803, '1.0000', '11.7750', '11.7750', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125406, '2022-10-14', 2445, 118505, 7031, NULL, '5.0000', '3.1134', '3.1134', '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 (125407, '2022-10-14', 2284, 118506, 7031, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125408, '2022-10-14', 2315, 118507, 7031, NULL, '2.0000', '0.7700', '0.7700', '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 (125409, '2022-10-14', 2821, 118508, 7031, NULL, '1.0000', '-40.2618', '-40.2618', '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 (125410, '2022-10-14', 8384, 118509, 7031, NULL, '2.0000', '2.5000', '2.5000', '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 (125411, '2022-10-14', 1787, 118510, 7031, 61552, '2.0000', '0.5000', '0.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125412, '2022-10-14', 9921, 118511, 7031, 60358, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125413, '2022-10-14', 8009, 118512, 7032, NULL, '8.0000', '5.0000', '5.0000', '10.5000', '10.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 (125414, '2022-10-14', 2366, 118513, 7032, 64559, '2.0000', '3.7639', '3.7639', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125415, '2022-10-14', 2277, 118514, 7032, 63403, '3.0000', '0.4620', '0.4620', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125416, '2022-10-14', 7612, 118515, 7032, NULL, '3.0000', '46.0000', '46.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 (125417, '2022-10-14', 1837, 118516, 7032, 62213, '3.0000', '0.6220', '0.6220', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125418, '2022-10-14', 2020, 118517, 7032, 64542, '1.0000', '7.1533', '7.1533', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125419, '2022-10-14', 2169, 118518, 7032, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '30.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125420, '2022-10-14', 7753, 118519, 7032, 64548, '1.0000', '10.3067', '10.3067', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125421, '2022-10-14', 1837, 118520, 7032, 62213, '2.0000', '0.6220', '0.6220', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125422, '2022-10-14', 1904, 118521, 7032, 64501, '1.0000', '15.2048', '15.2048', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125423, '2022-10-14', 2821, 118522, 7032, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125424, '2022-10-14', 1935, 118523, 7032, 63142, '2.0000', '1.1937', '1.1937', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125425, '2022-10-14', 2738, 118524, 7032, 64322, '1.0000', '9.1758', '9.1758', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125426, '2022-10-14', 8878, 118525, 7032, 58808, '1.0000', '1.2006', '1.2006', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125427, '2022-10-14', 1501, 118526, 7032, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125428, '2022-10-14', 2259, 118527, 7032, 64517, '1.0000', '23.1754', '23.1754', '38.5000', '38.5000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125429, '2022-10-14', 1602, 118528, 7032, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125430, '2022-10-14', 1935, 118529, 7032, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125431, '2022-10-14', 7585, 118530, 7032, NULL, '1.0000', '4.2400', '4.2400', '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 (125432, '2022-10-14', 2154, 118531, 7032, 62761, '1.0000', '12.8397', '12.8397', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125433, '2022-10-14', 2668, 118532, 7032, 62732, '1.0000', '11.5998', '11.5998', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125434, '2022-10-14', 2315, 118533, 7032, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125435, '2022-10-14', 7741, 118534, 7032, 58791, '1.0000', '3.4144', '3.4144', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125436, '2022-10-14', 8482, 118535, 7032, 64536, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '6.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125437, '2022-10-14', 2068, 118536, 7032, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '6.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125438, '2022-10-14', 7753, 118537, 7032, 64548, '1.0000', '10.3067', '10.3067', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125439, '2022-10-14', 2289, 118538, 7032, 62763, '4.0000', '0.2648', '0.2648', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125440, '2022-10-14', 1812, 118539, 7032, 64509, '1.0000', '9.0957', '9.0957', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125441, '2022-10-14', 2302, 118540, 7032, 64303, '1.0000', '5.5887', '5.5887', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125442, '2022-10-14', 2263, 118541, 7032, 62799, '1.0000', '5.4801', '5.4801', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125443, '2022-10-14', 1863, 118542, 7032, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '113.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125444, '2022-10-14', 1493, 118543, 7032, 52228, '1.0000', '1.6990', '1.6990', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125445, '2022-10-14', 2237, 118544, 7032, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125446, '2022-10-14', 2260, 118545, 7032, 62198, '7.0000', '4.8731', '4.8731', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125447, '2022-10-14', 1504, 118546, 7032, 64485, '10.0000', '2.2894', '2.2894', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125448, '2022-10-14', 2069, 118547, 7032, 63382, '1.0000', '6.2231', '6.2231', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125449, '2022-10-14', 7411, 118548, 7032, NULL, '6.0000', '1.5882', '1.5882', '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 (125450, '2022-10-14', 2858, 118549, 7032, 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 (125451, '2022-10-14', 2229, 118550, 7032, 60527, '1.0000', '27.7682', '27.7682', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125452, '2022-10-15', 2948, 118551, 7033, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '54.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125453, '2022-10-15', 10021, 118552, 7033, 62154, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125454, '2022-10-15', 1839, 118553, 7033, NULL, '1.0000', '-4848982.4095', '-4848982.4095', '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 (125455, '2022-10-15', 7944, 118554, 7033, 64037, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125456, '2022-10-15', 9740, 118555, 7033, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125457, '2022-10-15', 8763, 118556, 7033, NULL, '1.0000', '6.2377', '6.2377', '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 (125458, '2022-10-15', 1837, 118557, 7033, 64827, '1.0000', '1.0120', '1.0120', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125459, '2022-10-15', 2416, 118558, 7033, 64752, '2.0000', '1.4027', '1.4027', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125460, '2022-10-15', 1912, 118559, 7033, 64802, '4.0000', '0.7413', '0.7413', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125461, '2022-10-15', 2335, 118560, 7033, NULL, '1.0000', '18.9000', '18.9000', '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 (125462, '2022-10-15', 9731, 118561, 7033, 64065, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125463, '2022-10-15', 2354, 118562, 7033, NULL, '1.0000', '210.8376', '210.8376', '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 (125464, '2022-10-15', 1340, 118563, 7033, NULL, '1.0000', '5.5200', '5.5200', '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 (125465, '2022-10-15', 7756, 118564, 7033, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125466, '2022-10-15', 2252, 118565, 7033, 62865, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125467, '2022-10-15', 1628, 118566, 7034, 61561, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125468, '2022-10-15', 9783, 118567, 7034, 64035, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125469, '2022-10-15', 9463, 118568, 7034, NULL, '1.0000', '996.0148', '996.0148', '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 (125470, '2022-10-15', 8878, 118569, 7035, 64000, '2.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125471, '2022-10-15', 2167, 118570, 7035, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125472, '2022-10-15', 2259, 118571, 7035, 64576, '1.0000', '26.9697', '26.9697', '38.5000', '38.5000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125473, '2022-10-15', 7411, 118572, 7035, NULL, '2.0000', '1.2819', '1.2819', '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 (125474, '2022-10-15', 8043, 118573, 7035, NULL, '10.0000', '27.9800', '27.9800', '0.6000', '0.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 (125475, '2022-10-15', 9196, 118574, 7036, NULL, '1.0000', '0.7000', '0.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 (125476, '2022-10-15', 1765, 118575, 7036, 62771, '1.0000', '6.6554', '6.6554', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125477, '2022-10-15', 1329, 118576, 7036, 62737, '3.0000', '10.7067', '10.7067', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125478, '2022-10-15', 2315, 118577, 7036, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125479, '2022-10-15', 2307, 118578, 7036, 63380, '1.0000', '185.8479', '185.8479', '247.0000', '247.0000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125480, '2022-10-15', 2640, 118579, 7036, 29800, '1.0000', '7.0400', '7.0400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125481, '2022-10-15', 1602, 118580, 7036, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125482, '2022-10-15', 2169, 118581, 7036, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125483, '2022-10-15', 2643, 118582, 7036, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125484, '2022-10-15', 2506, 118583, 7036, 64474, '1.0000', '4.6714', '4.6714', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125485, '2022-10-15', 2761, 118584, 7036, 63394, '1.0000', '6.4347', '6.4347', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125486, '2022-10-15', 9950, 118585, 7036, 58663, '1.0000', '54.0000', '54.0000', '71.0000', '71.0000', '0.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125487, '2022-10-15', 1807, 118586, 7036, 63391, '2.0000', '-1.5061', '-1.5061', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125488, '2022-10-15', 9747, 118587, 7036, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125489, '2022-10-15', 2109, 118588, 7036, 40229, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125490, '2022-10-15', 1805, 118589, 7036, 58776, '1.0000', '5.7294', '5.7294', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125491, '2022-10-15', 2633, 118590, 7036, 62716, '1.0000', '3.8269', '3.8269', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125492, '2022-10-15', 1765, 118591, 7036, 62771, '1.0000', '6.6554', '6.6554', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125493, '2022-10-15', 1807, 118592, 7036, 63391, '2.0000', '-1.5061', '-1.5061', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125494, '2022-10-15', 7339, 118593, 7037, 56611, '10.0000', '-85.2778', '-85.2778', '0.9000', '0.9000', '50.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125495, '2022-10-15', 8186, 118594, 7037, 61866, '3.0000', '1.5581', '1.5581', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125496, '2022-10-15', 7412, 118595, 7037, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125497, '2022-10-15', 9775, 118596, 7037, 56158, '1.0000', '10.4000', '10.4000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125498, '2022-10-15', 7799, 118597, 7037, NULL, '1.0000', '-5.3093', '-5.3093', '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 (125499, '2022-10-15', 9980, 118598, 7037, 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 (125500, '2022-10-15', 8077, 118599, 7037, 64676, '1.0000', '6.5684', '6.5684', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125501, '2022-10-15', 7382, 118600, 7037, 64382, '1.0000', '8.9452', '8.9452', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125502, '2022-10-15', 7612, 118601, 7037, NULL, '1.0000', '2.3846', '2.3846', '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 (125503, '2022-10-15', 9854, 118602, 7037, 51840, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 428);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125504, '2022-10-15', 7589, 118603, 7037, 46257, '1.0000', '1.9144', '1.9144', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125505, '2022-10-15', 8866, 118604, 7037, 61723, '1.0000', '3.6189', '3.6189', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125506, '2022-10-15', 8638, 118605, 7037, 50385, '2.0000', '0.5000', '0.5000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125507, '2022-10-15', 7412, 118606, 7037, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125508, '2022-10-15', 7756, 118607, 7037, 64403, '1.0000', '35.3195', '35.3195', '53.5000', '53.5000', '1.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125509, '2022-10-15', 7385, 118608, 7037, 64401, '1.0000', '5.1760', '5.1760', '4.5000', '4.5000', '61.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125510, '2022-10-15', 8979, 118609, 7037, 64408, '1.0000', '0.9426', '0.9426', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125511, '2022-10-15', 2094, 118610, 7037, 30224, '1.0000', '2.9000', '2.9000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125512, '2022-10-15', 7715, 118611, 7037, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125513, '2022-10-15', 7444, 118612, 7037, 64639, '1.0000', '3.9101', '3.9101', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125514, '2022-10-15', 9274, 118613, 7037, 63913, '1.0000', '5.5787', '5.5787', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125515, '2022-10-15', 7473, 118614, 7037, 64657, '4.0000', '0.5521', '0.5521', '0.8000', '0.8000', '117.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125516, '2022-10-15', 7709, 118615, 7037, 63844, '2.0000', '-29491.3893', '-29491.3893', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125517, '2022-10-15', 7373, 118616, 7037, 53522, '1.0000', '2.1526', '2.1526', '22.5000', '22.5000', '7.0000', 1, 0, NULL, 446);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125518, '2022-10-15', 7518, 118617, 7037, 64651, '1.0000', '9.9222', '9.9222', '14.5000', '14.5000', '29.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125519, '2022-10-15', 7709, 118618, 7037, 63844, '2.0000', '-29491.3893', '-29491.3893', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125520, '2022-10-15', 8017, 118619, 7037, 59111, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '53.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125521, '2022-10-15', 7317, 118620, 7037, 64236, '1.0000', '15.9122', '15.9122', '23.0000', '23.0000', '8.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125522, '2022-10-15', 8466, 118621, 7037, NULL, '30.0000', '-24.7500', '-24.7500', '4.0000', '4.0000', '-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 (125523, '2022-10-15', 9747, 118622, 7037, 64239, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125524, '2022-10-15', 8918, 118623, 7037, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125525, '2022-10-15', 7665, 118624, 7037, 56567, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 489);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125526, '2022-10-15', 8965, 118625, 7037, NULL, '1.0000', '-263.2470', '-263.2470', '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 (125527, '2022-10-15', 2506, 118626, 7037, 61907, '1.0000', '4.6900', '4.6900', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125528, '2022-10-15', 2284, 118627, 7037, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125529, '2022-10-15', 7514, 118628, 7037, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125530, '2022-10-15', 7780, 118629, 7037, 63912, '1.0000', '15.9431', '15.9431', '20.5000', '20.5000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125531, '2022-10-15', 7335, 118630, 7037, NULL, '1.0000', '16.9000', '16.9000', '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 (125532, '2022-10-15', 7708, 118631, 7037, 64655, '1.0000', '8.9409', '8.9409', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125533, '2022-10-15', 8548, 118632, 7037, NULL, '1.0000', '6.3499', '6.3499', '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 (125534, '2022-10-15', 7787, 118633, 7037, 64641, '1.0000', '18.7927', '18.7927', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125535, '2022-10-15', 9747, 118634, 7037, 64239, '5.0000', '0.6500', '0.6500', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125536, '2022-10-15', 2486, 118635, 7037, 62531, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125537, '2022-10-15', 7860, 118636, 7037, 62540, '1.0000', '24.1600', '24.1600', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125538, '2022-10-15', 8596, 118637, 7037, NULL, '1.0000', '71.0634', '71.0634', '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 (125539, '2022-10-15', 7518, 118638, 7037, 64651, '2.0000', '9.9222', '9.9222', '14.5000', '14.5000', '28.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125540, '2022-10-15', 9979, 118639, 7037, 59406, '1.0000', '13.9000', '13.9000', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125541, '2022-10-15', 7778, 118640, 7037, 64249, '1.0000', '12.9619', '12.9619', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125542, '2022-10-15', 7889, 118641, 7037, NULL, '1.0000', '-8.6571', '-8.6571', '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 (125543, '2022-10-15', 7715, 118642, 7037, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125544, '2022-10-15', 7852, 118643, 7037, 64648, '1.0000', '19.5002', '19.5002', '24.0000', '24.0000', '6.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125545, '2022-10-15', 7853, 118644, 7037, 63932, '1.0000', '1298.1225', '1298.1225', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125546, '2022-10-15', 9873, 118645, 7037, 64384, '1.0000', '8.9167', '8.9167', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125547, '2022-10-15', 7770, 118646, 7037, 63862, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125548, '2022-10-15', 8619, 118647, 7037, NULL, '1.0000', '17.3900', '17.3900', '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 (125549, '2022-10-15', 7544, 118648, 7037, NULL, '3.0000', '9.4300', '9.4300', '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 (125550, '2022-10-15', 7981, 118649, 7037, 62318, '4.0000', '1.0378', '1.0378', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125551, '2022-10-15', 7382, 118650, 7037, 64382, '2.0000', '8.9452', '8.9452', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125552, '2022-10-15', 7473, 118651, 7037, 64657, '2.0000', '0.5521', '0.5521', '0.8000', '0.8000', '119.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125553, '2022-10-15', 9202, 118652, 7037, NULL, '1.0000', '2.1700', '2.1700', '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 (125554, '2022-10-15', 7411, 118653, 7037, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '69.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125555, '2022-10-15', 9098, 118654, 7037, 62343, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125556, '2022-10-15', 1841, 118655, 7037, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125557, '2022-10-15', 2315, 118656, 7037, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '94.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125558, '2022-10-15', 7704, 118657, 7037, NULL, '1.0000', '-1.5625', '-1.5625', '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 (125559, '2022-10-15', 9729, 118658, 7037, 60467, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125560, '2022-10-15', 1855, 118659, 7037, 61776, '1.0000', '1.4852', '1.4852', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125561, '2022-10-15', 8878, 118660, 7037, 64386, '1.0000', '0.7033', '0.7033', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125562, '2022-10-15', 1339, 118661, 7037, 64248, '1.0000', '2.8762', '2.8762', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125563, '2022-10-15', 8596, 118662, 7037, NULL, '1.0000', '71.0634', '71.0634', '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 (125564, '2022-10-15', 7822, 118663, 7038, 62297, '1.0000', '13.5985', '13.5985', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125565, '2022-10-15', 7666, 118664, 7038, 64681, '1.0000', '5.9885', '5.9885', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125566, '2022-10-15', 8710, 118665, 7038, 59120, '1.0000', '10.9000', '10.9000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125567, '2022-10-15', 7780, 118666, 7038, 63912, '1.0000', '15.9431', '15.9431', '20.5000', '20.5000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125568, '2022-10-15', 7411, 118667, 7038, 64385, '2.0000', '1.4956', '1.4956', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125569, '2022-10-15', 7709, 118668, 7038, 63844, '1.0000', '-29491.3893', '-29491.3893', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125570, '2022-10-15', 7672, 118669, 7038, 62287, '1.0000', '1.8417', '1.8417', '2.5000', '2.5000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125571, '2022-10-15', 7666, 118670, 7038, 64681, '1.0000', '5.9885', '5.9885', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125572, '2022-10-15', 1329, 118671, 7038, 225, '1.0000', '90.0000', '90.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 7);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125573, '2022-10-15', 7815, 118672, 7038, 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 (125574, '2022-10-15', 1339, 118673, 7038, 64248, '1.0000', '2.8762', '2.8762', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125575, '2022-10-15', 7612, 118674, 7038, NULL, '1.0000', '2.3846', '2.3846', '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 (125576, '2022-10-15', 8077, 118675, 7038, 64676, '1.0000', '6.5684', '6.5684', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125577, '2022-10-15', 7774, 118676, 7038, 64647, '1.0000', '6.4838', '6.4838', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125578, '2022-10-15', 8878, 118677, 7038, 64386, '1.0000', '0.7033', '0.7033', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125579, '2022-10-15', 7316, 118678, 7038, 64646, '10.0000', '0.9808', '0.9808', '1.5000', '1.5000', '90.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125580, '2022-10-15', 7376, 118679, 7038, 57405, '1.0000', '-177.0400', '-177.0400', '18.7500', '18.7500', '1.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125581, '2022-10-15', 2315, 118680, 7038, 64405, '1.0000', '0.7662', '0.7662', '1.0000', '1.0000', '93.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125582, '2022-10-15', 7333, 118681, 7038, 61921, '5.0000', '13.3704', '13.3704', '5.5000', '5.5000', '26.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125583, '2022-10-15', 7411, 118682, 7038, 64385, '2.0000', '1.4956', '1.4956', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125584, '2022-10-15', 1935, 118683, 7038, 61805, '2.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '74.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125585, '2022-10-15', 9207, 118684, 7038, 57205, '2.0000', '2.3364', '2.3364', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125586, '2022-10-15', 9734, 118685, 7038, 61746, '10.0000', '0.3316', '0.3316', '0.7000', '0.7000', '164.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125587, '2022-10-15', 7784, 118686, 7038, 63931, '4.0000', '5.5320', '5.5320', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125588, '2022-10-15', 9001, 118687, 7039, 63929, '1.0000', '30.1930', '30.1930', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125589, '2022-10-15', 7744, 118688, 7039, 64240, '1.0000', '3.1470', '3.1470', '5.5000', '5.5000', '14.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125590, '2022-10-15', 1904, 118689, 7039, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125591, '2022-10-15', 7518, 118690, 7039, 64893, '1.0000', '9.8940', '9.8940', '14.5000', '14.5000', '26.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125592, '2022-10-15', 8744, 118691, 7039, 62529, '1.0000', '4.1148', '4.1148', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125593, '2022-10-15', 2252, 118692, 7040, 63467, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125594, '2022-10-15', 2916, 118693, 7040, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (125595, '2022-10-15', 1592, 118694, 7040, 59604, '1.0000', '43.2145', '43.2145', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125596, '2022-10-15', 2473, 118695, 7040, 59675, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125597, '2022-10-15', 1529, 118696, 7040, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125598, '2022-10-15', 9470, 118697, 7040, NULL, '1.0000', '6.1468', '6.1468', '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 (125599, '2022-10-15', 9871, 118698, 7040, 64757, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125600, '2022-10-15', 9945, 118699, 7040, NULL, '1.0000', '12.1000', '12.1000', '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 (125601, '2022-10-15', 7472, 118700, 7040, NULL, '1.0000', '-623.6000', '-623.6000', '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 (125602, '2022-10-15', 2637, 118701, 7040, 62166, '1.0000', '22.0000', '22.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125603, '2022-10-15', 2823, 118702, 7040, 64799, '1.0000', '41.7600', '41.7600', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125604, '2022-10-15', 1935, 118703, 7040, 64832, '5.0000', '0.9044', '0.9044', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125605, '2022-10-15', 1715, 118704, 7040, 63466, '1.0000', '7.8053', '7.8053', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125606, '2022-10-15', 2821, 118705, 7040, NULL, '1.0000', '-40.2618', '-40.2618', '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 (125607, '2022-10-15', 2277, 118706, 7040, 62419, '1.0000', '0.5402', '0.5402', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125608, '2022-10-15', 9734, 118707, 7040, 64835, '2.0000', '0.4609', '0.4609', '0.7000', '0.7000', '97.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125609, '2022-10-15', 2376, 118708, 7040, 48940, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125610, '2022-10-15', 2327, 118709, 7040, 64728, '1.0000', '3.8977', '3.8977', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125611, '2022-10-15', 7593, 118710, 7040, NULL, '1.0000', '0.8000', '0.8000', '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 (125612, '2022-10-15', 7922, 118711, 7040, 60268, '1.0000', '4.2426', '4.2426', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125613, '2022-10-15', 1871, 118712, 7040, NULL, '10.0000', '-20821086.1374', '-20821086.1374', '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 (125614, '2022-10-15', 1975, 118713, 7040, 63789, '1.0000', '13.3572', '13.3572', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125615, '2022-10-15', 7725, 118714, 7040, 58064, '1.0000', '11.1700', '11.1700', '15.0000', '15.0000', '10.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125616, '2022-10-15', 3009, 118715, 7040, 23170, '1.0000', '22.0000', '22.0000', '18.0000', '18.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 (125617, '2022-10-15', 7322, 118716, 7040, NULL, '1.0000', '15.0000', '15.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 (125618, '2022-10-15', 9695, 118717, 7040, 64768, '1.0000', '5.7018', '5.7018', '9.0000', '9.0000', '27.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125619, '2022-10-15', 2315, 118718, 7040, 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 (125620, '2022-10-15', 2937, 118719, 7040, 64849, '1.0000', '6.2804', '6.2804', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125621, '2022-10-15', 1645, 118720, 7040, NULL, '1.0000', '13.1800', '13.1800', '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 (125622, '2022-10-15', 1912, 118721, 7040, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125623, '2022-10-15', 2169, 118722, 7040, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125624, '2022-10-15', 1521, 118723, 7040, 63439, '2.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125625, '2022-10-15', 2287, 118724, 7040, 48629, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '3.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125626, '2022-10-15', 10049, 118725, 7040, 64453, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 560);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125627, '2022-10-15', 2169, 118726, 7040, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125628, '2022-10-15', 8384, 118727, 7040, 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 (125629, '2022-10-15', 2169, 118728, 7040, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125630, '2022-10-15', 3016, 118729, 7040, 55552, '1.0000', '13.9139', '13.9139', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125631, '2022-10-15', 1888, 118730, 7040, 64718, '1.0000', '20.7394', '20.7394', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125632, '2022-10-15', 1935, 118731, 7040, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125633, '2022-10-15', 1761, 118732, 7040, 60290, '1.0000', '2.2066', '2.2066', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125634, '2022-10-15', 1578, 118733, 7040, 64021, '1.0000', '3.2335', '3.2335', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125635, '2022-10-15', 8017, 118734, 7040, 64594, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125636, '2022-10-15', 2656, 118735, 7040, 64751, '1.0000', '1.9693', '1.9693', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125637, '2022-10-15', 9842, 118736, 7040, 64036, '2.0000', '7.3129', '7.3129', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125638, '2022-10-15', 2105, 118737, 7040, 64858, '2.0000', '2.9790', '2.9790', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125639, '2022-10-15', 2270, 118738, 7040, 64789, '1.0000', '5.0657', '5.0657', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125640, '2022-10-15', 1532, 118739, 7040, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125641, '2022-10-15', 1840, 118740, 7040, NULL, '1.0000', '0.2400', '0.2400', '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 (125642, '2022-10-15', 9734, 118741, 7040, 64835, '7.0000', '0.4609', '0.4609', '0.7000', '0.7000', '92.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125643, '2022-10-15', 8740, 118742, 7040, 63480, '2.0000', '2.0585', '2.0585', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125644, '2022-10-15', 1326, 118743, 7040, NULL, '1.0000', '1.7014', '1.7014', '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 (125645, '2022-10-15', 9917, 118744, 7040, 62372, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125646, '2022-10-15', 2167, 118745, 7040, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125647, '2022-10-15', 9740, 118746, 7040, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '51.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125648, '2022-10-15', 8595, 118747, 7040, NULL, '1.0000', '-26.0029', '-26.0029', '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 (125649, '2022-10-15', 9496, 118748, 7040, NULL, '1.0000', '-5.5750', '-5.5750', '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 (125650, '2022-10-15', 2004, 118749, 7040, 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 (125651, '2022-10-15', 2169, 118750, 7040, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125652, '2022-10-15', 8017, 118751, 7040, 64594, '5.0000', '0.6000', '0.6000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125653, '2022-10-15', 8743, 118752, 7040, 64762, '1.0000', '15.0678', '15.0678', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125654, '2022-10-15', 8746, 118753, 7041, 58001, '1.0000', '65.4820', '65.4820', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125655, '2022-10-15', 7385, 118754, 7041, 55490, '2.0000', '2.6553', '2.6553', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125656, '2022-10-15', 3000, 118755, 7041, 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 (125657, '2022-10-15', 2927, 118756, 7041, 19030, '1.0000', '14.7000', '14.7000', '40.0000', '40.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 (125658, '2022-10-15', 9788, 118757, 7041, 63953, '1.0000', '1.8869', '1.8869', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125659, '2022-10-15', 2169, 118758, 7041, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125660, '2022-10-15', 7753, 118759, 7041, 64548, '1.0000', '10.3067', '10.3067', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125661, '2022-10-15', 7802, 118760, 7041, NULL, '1.0000', '1.3468', '1.3468', '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 (125662, '2022-10-15', 2858, 118761, 7041, 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 (125663, '2022-10-15', 2302, 118762, 7041, 64303, '2.0000', '5.5887', '5.5887', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125664, '2022-10-15', 7457, 118763, 7041, NULL, '1.0000', '2.3500', '2.3500', '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 (125665, '2022-10-15', 2680, 118764, 7041, 58823, '1.0000', '14.5933', '14.5933', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125666, '2022-10-15', 2237, 118765, 7041, 62746, '2.0000', '1.3254', '1.3254', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125667, '2022-10-15', 9469, 118766, 7041, 60511, '1.0000', '3.9250', '3.9250', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125668, '2022-10-15', 7608, 118767, 7041, NULL, '1.0000', '6.9800', '6.9800', '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 (125669, '2022-10-15', 8528, 118768, 7041, NULL, '1.0000', '16.4000', '16.4000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125670, '2022-10-15', 2169, 118769, 7041, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125671, '2022-10-15', 7684, 118770, 7041, NULL, '1.0000', '9.0000', '9.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 (125672, '2022-10-15', 2293, 118771, 7041, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125673, '2022-10-15', 7802, 118772, 7041, NULL, '1.0000', '1.3468', '1.3468', '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 (125674, '2022-10-15', 2366, 118773, 7041, 63360, '2.0000', '3.7639', '3.7639', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125675, '2022-10-15', 7411, 118774, 7041, NULL, '2.0000', '1.5882', '1.5882', '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 (125676, '2022-10-15', 2821, 118775, 7041, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125677, '2022-10-15', 1337, 118776, 7041, 23592, '1.0000', '2.2526', '2.2526', '4.0000', '4.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 (125678, '2022-10-15', 2262, 118777, 7041, 62196, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125679, '2022-10-15', 1759, 118778, 7041, 63979, '1.0000', '15.6238', '15.6238', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125680, '2022-10-15', 7411, 118779, 7041, NULL, '4.0000', '1.5882', '1.5882', '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 (125681, '2022-10-15', 1935, 118780, 7041, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125682, '2022-10-15', 9821, 118781, 7041, 56978, '1.0000', '1.5013', '1.5013', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125683, '2022-10-15', 2821, 118782, 7041, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125684, '2022-10-15', 1665, 118783, 7041, 64549, '2.0000', '1.3232', '1.3232', '2.0000', '2.0000', '140.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125685, '2022-10-15', 8933, 118784, 7041, 60917, '1.0000', '9.1447', '9.1447', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125686, '2022-10-15', 1807, 118785, 7041, 63391, '7.0000', '-1.5061', '-1.5061', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125687, '2022-10-15', 1807, 118785, 7041, NULL, '3.0000', '-1.5061', '-1.5061', '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 (125688, '2022-10-15', 7917, 118786, 7041, NULL, '10.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (125689, '2022-10-15', 2643, 118787, 7041, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125690, '2022-10-16', 2384, 118788, 7042, NULL, '1.0000', '-312.4992', '-312.4992', '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 (125691, '2022-10-16', 9856, 118789, 7042, 64041, '1.0000', '12.8500', '12.8500', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125692, '2022-10-16', 7608, 118790, 7042, NULL, '1.0000', '6.9800', '6.9800', '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 (125693, '2022-10-16', 2169, 118791, 7042, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125694, '2022-10-16', 1700, 118792, 7042, NULL, '1.0000', '-25.2500', '-25.2500', '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 (125695, '2022-10-16', 1812, 118793, 7042, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '14.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125696, '2022-10-16', 1382, 118794, 7042, 64723, '1.0000', '4.1875', '4.1875', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125697, '2022-10-16', 2315, 118795, 7042, NULL, '1.0000', '0.7700', '0.7700', '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 (125698, '2022-10-16', 2354, 118796, 7042, NULL, '1.0000', '210.8376', '210.8376', '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 (125699, '2022-10-16', 1825, 118797, 7042, 64744, '1.0000', '8.9429', '8.9429', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125700, '2022-10-16', 1674, 118798, 7042, 64602, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '17.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125701, '2022-10-16', 7953, 118799, 7042, NULL, '1.0000', '-0.5345', '-0.5345', '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 (125702, '2022-10-16', 2068, 118800, 7042, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125703, '2022-10-16', 1912, 118801, 7042, 64802, '2.0000', '0.7413', '0.7413', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125704, '2022-10-16', 2287, 118802, 7042, 48629, '3.0000', '2.3233', '2.3233', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 358);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125705, '2022-10-16', 2287, 118802, 7042, 29630, '1.0000', '2.3233', '2.3233', '4.5000', '4.5000', '59.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125706, '2022-10-16', 2242, 118803, 7042, 48481, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125707, '2022-10-16', 2384, 118804, 7042, NULL, '2.0000', '-312.4992', '-312.4992', '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 (125708, '2022-10-16', 1839, 118805, 7042, NULL, '1.0000', '-4848982.4095', '-4848982.4095', '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 (125709, '2022-10-16', 1425, 118806, 7043, NULL, '1.0000', '10.4939', '10.4939', '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 (125710, '2022-10-16', 9814, 118807, 7043, 50254, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125711, '2022-10-16', 8844, 118808, 7043, NULL, '1.0000', '10.5826', '10.5826', '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 (125712, '2022-10-16', 8746, 118809, 7044, NULL, '1.0000', '3.1500', '3.1500', '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 (125713, '2022-10-16', 7558, 118810, 7044, NULL, '10.0000', '1.9700', '1.9700', '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 (125714, '2022-10-16', 7730, 118811, 7044, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (125715, '2022-10-16', 7629, 118812, 7044, NULL, '1.0000', '186.8000', '186.8000', '247.0000', '247.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125716, '2022-10-16', 7881, 118813, 7044, NULL, '1.0000', '2.3000', '2.3000', '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 (125717, '2022-10-16', 7514, 118814, 7044, NULL, '1.0000', '2.2500', '2.2500', '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 (125718, '2022-10-16', 8979, 118815, 7044, NULL, '4.0000', '1.0000', '1.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 (125719, '2022-10-16', 7385, 118816, 7044, NULL, '6.0000', '2.0000', '2.0000', '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 (125720, '2022-10-16', 2223, 118817, 7044, 1698, '-2.0000', '14.0000', '14.0000', '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 (125721, '2022-10-16', 2223, 118817, 7044, NULL, '3.0000', '14.0000', '14.0000', '22.0000', '22.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 (125722, '2022-10-16', 7558, 118818, 7044, NULL, '1.0000', '1.9700', '1.9700', '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 (125723, '2022-10-16', 2289, 118819, 7044, 2949, '-302.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 (125724, '2022-10-16', 2289, 118819, 7044, NULL, '306.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-306.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125725, '2022-10-16', 7348, 118820, 7044, NULL, '1.0000', '25.3000', '25.3000', '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 (125726, '2022-10-16', 7707, 118821, 7044, NULL, '1.0000', '7.0000', '7.0000', '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 (125727, '2022-10-16', 7963, 118822, 7044, NULL, '1.0000', '14.7000', '14.7000', '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 (125728, '2022-10-16', 9160, 118823, 7044, NULL, '1.0000', '15.0000', '15.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 (125729, '2022-10-16', 7674, 118824, 7044, NULL, '1.0000', '1.3000', '1.3000', '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 (125730, '2022-10-16', 7787, 118825, 7044, NULL, '1.0000', '10.9000', '10.9000', '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 (125731, '2022-10-16', 7334, 118826, 7044, NULL, '3.0000', '8.2300', '8.2300', '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 (125732, '2022-10-16', 8081, 118827, 7044, NULL, '7.0000', '0.6500', '0.6500', '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 (125733, '2022-10-16', 1337, 118828, 7044, 10809, '-34.0000', '2.0000', '2.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 (125734, '2022-10-16', 1337, 118828, 7044, NULL, '35.0000', '2.0000', '2.0000', '4.0000', '4.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125735, '2022-10-16', 1331, 118829, 7044, NULL, '1.0000', '4.2000', '4.2000', '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 (125736, '2022-10-16', 7416, 118830, 7044, NULL, '1.0000', '18.2100', '18.2100', '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 (125737, '2022-10-16', 2315, 118831, 7044, 2735, '-716.0000', '0.3300', '0.3300', '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 (125738, '2022-10-16', 2315, 118831, 7044, NULL, '718.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-718.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125739, '2022-10-16', 7518, 118832, 7044, NULL, '1.0000', '7.8200', '7.8200', '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 (125740, '2022-10-16', 1841, 118833, 7044, NULL, '2.0000', '142.5780', '142.5780', '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 (125741, '2022-10-16', 8208, 118834, 7044, NULL, '2.0000', '33.0000', '33.0000', '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 (125742, '2022-10-16', 7672, 118835, 7044, NULL, '2.0000', '1.0200', '1.0200', '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 (125743, '2022-10-16', 7674, 118836, 7044, NULL, '1.0000', '1.3000', '1.3000', '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 (125744, '2022-10-16', 9092, 118837, 7044, NULL, '5.0000', '5.2900', '5.2900', '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 (125745, '2022-10-16', 7411, 118838, 7045, NULL, '1.0000', '1.3500', '1.3500', '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 (125746, '2022-10-16', 2920, 118839, 7045, 18777, '-9.0000', '22.0000', '22.0000', '21.5000', '21.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 (125747, '2022-10-16', 2920, 118839, 7045, NULL, '10.0000', '22.0000', '22.0000', '21.5000', '21.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 (125748, '2022-10-16', 7333, 118840, 7045, NULL, '2.0000', '13.5000', '13.5000', '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 (125749, '2022-10-16', 7743, 118841, 7046, NULL, '1.0000', '2491602.9694', '2491602.9694', '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 (125750, '2022-10-16', 1339, 118842, 7046, 64248, '1.0000', '2.8762', '2.8762', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125751, '2022-10-16', 1845, 118843, 7046, 63860, '1.0000', '23.2466', '23.2466', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125752, '2022-10-16', 7518, 118844, 7046, 64893, '1.0000', '9.8940', '9.8940', '14.5000', '14.5000', '25.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125753, '2022-10-16', 7708, 118845, 7046, 64897, '1.0000', '8.8676', '8.8676', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125754, '2022-10-16', 7666, 118846, 7046, 64923, '1.0000', '5.9924', '5.9924', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125755, '2022-10-16', 9734, 118847, 7046, 61746, '2.0000', '0.3316', '0.3316', '0.7000', '0.7000', '162.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125756, '2022-10-16', 7590, 118848, 7046, NULL, '1.0000', '9.7741', '9.7741', '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 (125757, '2022-10-16', 9985, 118849, 7046, 64280, '1.0000', '6.9000', '6.9000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125758, '2022-10-16', 8657, 118850, 7046, 64916, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125759, '2022-10-16', 7514, 118851, 7046, 63938, '2.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125760, '2022-10-16', 9160, 118852, 7046, NULL, '1.0000', '1.3097', '1.3097', '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 (125761, '2022-10-16', 8127, 118853, 7046, NULL, '1.0000', '24.5300', '24.5300', '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 (125762, '2022-10-16', 2242, 118854, 7046, 60415, '3.0000', '0.7520', '0.7520', '1.5000', '1.5000', '72.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125763, '2022-10-16', 7412, 118855, 7046, 63922, '1.0000', '2.1853', '2.1853', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125764, '2022-10-16', 9272, 118856, 7046, NULL, '1.0000', '3.1206', '3.1206', '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 (125765, '2022-10-16', 7930, 118857, 7046, 64379, '2.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125766, '2022-10-16', 9399, 118858, 7046, 64374, '1.0000', '0.9758', '0.9758', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125767, '2022-10-16', 7557, 118859, 7046, NULL, '20.0000', '0.0714', '0.0714', '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 (125768, '2022-10-16', 7547, 118860, 7046, NULL, '4.0000', '-0.3235', '-0.3235', '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 (125769, '2022-10-16', 8395, 118861, 7046, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125770, '2022-10-16', 7518, 118862, 7046, 64893, '1.0000', '9.8940', '9.8940', '14.5000', '14.5000', '25.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125771, '2022-10-16', 7400, 118863, 7046, 64941, '1.0000', '24.0258', '24.0258', '39.5000', '39.5000', '4.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125772, '2022-10-16', 7625, 118864, 7046, 48261, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '4.0000', 1, 0, NULL, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125773, '2022-10-16', 10018, 118865, 7046, 61953, '1.0000', '0.8500', '0.8500', '1.2000', '1.2000', '37.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125774, '2022-10-16', 8506, 118866, 7046, NULL, '1.0000', '35.4000', '35.4000', '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 (125775, '2022-10-16', 7411, 118867, 7046, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125776, '2022-10-16', 9417, 118868, 7046, 31914, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125777, '2022-10-16', 7736, 118869, 7046, 64402, '1.0000', '25.8669', '25.8669', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125778, '2022-10-16', 2891, 118870, 7046, 61740, '1.0000', '9.2658', '9.2658', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125779, '2022-10-16', 9783, 118871, 7046, 60781, '1.0000', '19.5206', '19.5206', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125780, '2022-10-16', 8308, 118872, 7046, NULL, '1.0000', '-4184.9622', '-4184.9622', '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 (125781, '2022-10-16', 9721, 118873, 7046, 63840, '1.0000', '11.7000', '11.7000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125782, '2022-10-16', 9271, 118874, 7046, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125783, '2022-10-16', 7609, 118875, 7047, 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 (125784, '2022-10-16', 2062, 118876, 7047, 61753, '1.0000', '9.4565', '9.4565', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125785, '2022-10-16', 1837, 118877, 7047, NULL, '2.0000', '0.5600', '0.5600', '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 (125786, '2022-10-16', 1501, 118878, 7047, 63870, '1.0000', '3.1917', '3.1917', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125787, '2022-10-16', 7562, 118879, 7047, 62320, '1.0000', '6.8921', '6.8921', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125788, '2022-10-16', 8020, 118880, 7047, 64375, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125789, '2022-10-16', 7831, 118881, 7047, 64892, '1.0000', '25.4667', '25.4667', '34.5000', '34.5000', '0.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125790, '2022-10-16', 2506, 118882, 7047, 61907, '1.0000', '4.6900', '4.6900', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125791, '2022-10-16', 7444, 118883, 7047, 64881, '1.0000', '3.9103', '3.9103', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125792, '2022-10-16', 2284, 118884, 7047, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125793, '2022-10-16', 8878, 118885, 7047, 64386, '2.0000', '0.7033', '0.7033', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125794, '2022-10-16', 9092, 118886, 7047, 64935, '10.0000', '0.4265', '0.4265', '1.0000', '1.0000', '180.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125795, '2022-10-16', 8457, 118887, 7047, NULL, '1.0000', '-8.0516', '-8.0516', '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 (125796, '2022-10-16', 7925, 118888, 7047, 61900, '1.0000', '9.9000', '9.9000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125797, '2022-10-16', 2482, 118889, 7047, 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 (125798, '2022-10-16', 8135, 118890, 7047, 63866, '1.0000', '4.1634', '4.1634', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125799, '2022-10-16', 9945, 118891, 7047, 59194, '1.0000', '12.1000', '12.1000', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125800, '2022-10-16', 8186, 118892, 7047, 61866, '3.0000', '1.5581', '1.5581', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125801, '2022-10-16', 8457, 118893, 7047, NULL, '1.0000', '-8.0516', '-8.0516', '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 (125802, '2022-10-16', 7736, 118894, 7047, 64402, '1.0000', '25.8669', '25.8669', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125803, '2022-10-16', 1783, 118895, 7048, 63956, '2.0000', '4.1997', '4.1997', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125804, '2022-10-16', 7411, 118896, 7048, NULL, '6.0000', '1.5882', '1.5882', '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 (125805, '2022-10-16', 9747, 118897, 7048, 64514, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125806, '2022-10-16', 2277, 118898, 7048, 63403, '2.0000', '0.4620', '0.4620', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125807, '2022-10-16', 8387, 118899, 7048, 63950, '1.0000', '32.7500', '32.7500', '45.5000', '45.5000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125808, '2022-10-16', 1602, 118900, 7048, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125809, '2022-10-16', 1339, 118901, 7048, 64982, '1.0000', '2.1195', '2.1195', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125810, '2022-10-16', 2394, 118902, 7048, 64773, '1.0000', '4.4867', '4.4867', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125811, '2022-10-16', 2315, 118903, 7048, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '11.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125812, '2022-10-16', 9999, 118904, 7048, 60929, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125813, '2022-10-16', 9469, 118905, 7048, 60511, '1.0000', '3.9250', '3.9250', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125814, '2022-10-16', 2821, 118906, 7048, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125815, '2022-10-16', 2327, 118907, 7048, 64308, '1.0000', '3.6450', '3.6450', '6.0000', '6.0000', '18.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125816, '2022-10-16', 2352, 118908, 7048, 64299, '2.0000', '58.6246', '58.6246', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125817, '2022-10-16', 1665, 118909, 7048, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '139.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125818, '2022-10-16', 1695, 118910, 7048, 64954, '1.0000', '24.8574', '24.8574', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125819, '2022-10-16', 8133, 118911, 7048, 62251, '1.0000', '10.3333', '10.3333', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125820, '2022-10-16', 2169, 118912, 7048, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125821, '2022-10-16', 1665, 118913, 7048, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '139.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125822, '2022-10-16', 1813, 118914, 7048, 64972, '1.0000', '37.6753', '37.6753', '62.5000', '62.5000', '3.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125823, '2022-10-16', 9940, 118915, 7048, 64781, '1.0000', '9.5168', '9.5168', '13.0000', '13.0000', '36.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125824, '2022-10-16', 2317, 118916, 7048, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125825, '2022-10-16', 1602, 118917, 7048, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125826, '2022-10-16', 1501, 118918, 7048, 62726, '1.0000', '60.5957', '60.5957', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125827, '2022-10-16', 1904, 118919, 7048, 64501, '1.0000', '15.2048', '15.2048', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125828, '2022-10-16', 2331, 118920, 7048, 62234, '1.0000', '13.8390', '13.8390', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125829, '2022-10-16', 1935, 118921, 7048, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125830, '2022-10-16', 1347, 118922, 7048, 62725, '1.0000', '2.7178', '2.7178', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125831, '2022-10-16', 1386, 118923, 7048, 64530, '1.0000', '133.9744', '133.9744', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125832, '2022-10-16', 1621, 118924, 7048, 64545, '1.0000', '26.8680', '26.8680', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125833, '2022-10-16', 1602, 118925, 7048, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125834, '2022-10-16', 1888, 118926, 7048, 64546, '1.0000', '19.0744', '19.0744', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125835, '2022-10-16', 2682, 118927, 7048, 62218, '1.0000', '16.5000', '16.5000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125836, '2022-10-16', 1646, 118928, 7048, 64522, '1.0000', '5.8533', '5.8533', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125837, '2022-10-16', 1585, 118929, 7048, 64499, '1.0000', '10.2212', '10.2212', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125838, '2022-10-16', 1450, 118930, 7048, NULL, '10.0000', '0.8255', '0.8255', '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 (125839, '2022-10-16', 1904, 118931, 7048, 64501, '1.0000', '15.2048', '15.2048', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125840, '2022-10-16', 1935, 118932, 7048, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125841, '2022-10-16', 2443, 118933, 7048, 59052, '1.0000', '6.4000', '6.4000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125842, '2022-10-16', 7744, 118934, 7048, NULL, '1.0000', '2.9400', '2.9400', '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 (125843, '2022-10-16', 9695, 118935, 7048, 63134, '1.0000', '5.8148', '5.8148', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125844, '2022-10-16', 1602, 118936, 7048, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125845, '2022-10-16', 2643, 118937, 7048, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125846, '2022-10-16', 8482, 118938, 7049, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '19.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125847, '2022-10-16', 2821, 118939, 7049, NULL, '1.0000', '-40.2618', '-40.2618', '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 (125848, '2022-10-16', 1763, 118940, 7049, NULL, '1.0000', '4.6631', '4.6631', '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 (125849, '2022-10-16', 2102, 118941, 7049, NULL, '1.0000', '-20.1000', '-20.1000', '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 (125850, '2022-10-16', 2167, 118942, 7049, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125851, '2022-10-16', 1863, 118943, 7049, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125852, '2022-10-16', 1382, 118944, 7049, 64723, '1.0000', '4.1875', '4.1875', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125853, '2022-10-16', 2384, 118945, 7049, NULL, '2.0000', '-312.4992', '-312.4992', '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 (125854, '2022-10-16', 2283, 118946, 7049, 62846, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125855, '2022-10-16', 1621, 118947, 7049, 64850, '1.0000', '13.6096', '13.6096', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125856, '2022-10-16', 10006, 118948, 7049, 62362, '1.0000', '12.9800', '12.9800', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125857, '2022-10-16', 7953, 118949, 7049, NULL, '1.0000', '-0.5345', '-0.5345', '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 (125858, '2022-10-16', 2302, 118950, 7049, 64584, '2.0000', '4.4951', '4.4951', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125859, '2022-10-16', 1871, 118951, 7049, NULL, '15.0000', '-20821086.1374', '-20821086.1374', '4.5000', '4.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 (125860, '2022-10-16', 7604, 118952, 7049, NULL, '1.0000', '4.3900', '4.3900', '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 (125861, '2022-10-16', 1367, 118953, 7049, 64867, '1.0000', '52.0805', '52.0805', '107.0000', '107.0000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125862, '2022-10-16', 2740, 118954, 7049, 60236, '1.0000', '11.2413', '11.2413', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125863, '2022-10-16', 10038, 118955, 7049, 62839, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125864, '2022-10-16', 2656, 118956, 7049, 64751, '3.0000', '1.9693', '1.9693', '3.0000', '3.0000', '29.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125865, '2022-10-16', 9590, 118957, 7049, NULL, '1.0000', '5.7994', '5.7994', '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 (125866, '2022-10-16', 10022, 118958, 7049, 64794, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125867, '2022-10-16', 1912, 118959, 7049, 64802, '2.0000', '0.7413', '0.7413', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125868, '2022-10-16', 2916, 118960, 7049, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (125869, '2022-10-16', 1637, 118961, 7049, 64074, '1.0000', '23.4218', '23.4218', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125870, '2022-10-16', 2289, 118962, 7049, NULL, '1.0000', '0.7150', '0.7150', '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 (125871, '2022-10-16', 1840, 118963, 7049, NULL, '1.0000', '0.2400', '0.2400', '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 (125872, '2022-10-16', 1935, 118964, 7049, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125873, '2022-10-16', 8482, 118965, 7049, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '19.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125874, '2022-10-16', 2302, 118966, 7049, 64584, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125875, '2022-10-16', 1772, 118967, 7049, 64733, '1.0000', '6.9767', '6.9767', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125876, '2022-10-16', 2948, 118968, 7049, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '53.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125877, '2022-10-16', 2643, 118969, 7049, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125878, '2022-10-16', 2656, 118970, 7049, 64751, '1.0000', '1.9693', '1.9693', '3.0000', '3.0000', '31.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125879, '2022-10-16', 2242, 118971, 7049, 48481, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125880, '2022-10-16', 2011, 118972, 7049, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '5.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125881, '2022-10-16', 9012, 118973, 7049, NULL, '1.0000', '24.0000', '24.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 (125882, '2022-10-16', 1340, 118974, 7049, NULL, '1.0000', '5.5200', '5.5200', '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 (125883, '2022-10-16', 1863, 118975, 7049, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125884, '2022-10-16', 9469, 118976, 7049, NULL, '2.0000', '5.5270', '5.5270', '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 (125885, '2022-10-16', 9885, 118977, 7049, 64865, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125886, '2022-10-16', 2656, 118978, 7049, 64751, '2.0000', '1.9693', '1.9693', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125887, '2022-10-16', 10010, 118979, 7049, 61586, '1.0000', '0.8400', '0.8400', '1.1100', '1.1100', '94.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125888, '2022-10-16', 2169, 118980, 7049, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125889, '2022-10-16', 8065, 118981, 7049, NULL, '1.0000', '32.0000', '32.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125890, '2022-10-16', 8482, 118982, 7049, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '19.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125891, '2022-10-16', 2242, 118983, 7049, 48481, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125892, '2022-10-16', 7671, 118984, 7049, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125893, '2022-10-16', 1812, 118985, 7049, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '13.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125894, '2022-10-16', 2289, 118986, 7049, NULL, '2.0000', '0.7150', '0.7150', '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 (125895, '2022-10-16', 1840, 118987, 7049, NULL, '2.0000', '0.2400', '0.2400', '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 (125896, '2022-10-16', 9734, 118988, 7049, 64835, '2.0000', '0.4609', '0.4609', '0.7000', '0.7000', '88.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125897, '2022-10-16', 1499, 118989, 7049, 62833, '2.0000', '0.5150', '0.5150', '0.7000', '0.7000', '15.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125898, '2022-10-16', 7981, 118990, 7049, NULL, '10.0000', '6.0000', '6.0000', '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 (125899, '2022-10-16', 8638, 118991, 7049, NULL, '2.0000', '0.6101', '0.6101', '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 (125900, '2022-10-16', 7593, 118992, 7049, NULL, '1.0000', '0.8000', '0.8000', '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 (125901, '2022-10-16', 9985, 118993, 7049, 64814, '1.0000', '6.5857', '6.5857', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125902, '2022-10-16', 9863, 118994, 7049, 52187, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 436);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125903, '2022-10-16', 2260, 118995, 7049, 64746, '1.0000', '5.2018', '5.2018', '8.0000', '8.0000', '12.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125904, '2022-10-16', 7715, 118996, 7049, NULL, '1.0000', '1.8900', '1.8900', '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 (125905, '2022-10-16', 9482, 118997, 7049, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '226.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125906, '2022-10-16', 9482, 118998, 7049, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '226.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125907, '2022-10-16', 1657, 118999, 7049, 19371, '2.0000', '90.0000', '90.0000', '0.6000', '0.6000', '172.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125908, '2022-10-16', 2607, 119000, 7049, NULL, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125909, '2022-10-16', 2169, 119001, 7049, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125910, '2022-10-16', 3002, 119002, 7049, 64848, '1.0000', '7.0000', '7.0000', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125911, '2022-10-16', 1946, 119003, 7049, NULL, '1.0000', '-24.7189', '-24.7189', '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 (125912, '2022-10-16', 2108, 119004, 7049, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125913, '2022-10-16', 7822, 119005, 7049, NULL, '1.0000', '8.0000', '8.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 (125914, '2022-10-16', 1755, 119006, 7049, NULL, '1.0000', '8.6000', '8.6000', '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 (125915, '2022-10-16', 1863, 119007, 7049, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '108.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125916, '2022-10-16', 1807, 119008, 7049, 64813, '4.0000', '1.8000', '1.8000', '2.5000', '2.5000', '33.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125917, '2022-10-16', 2223, 119009, 7049, NULL, '1.0000', '-2.3706', '-2.3706', '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 (125918, '2022-10-16', 9695, 119010, 7049, 64768, '2.0000', '5.7018', '5.7018', '9.0000', '9.0000', '25.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125919, '2022-10-16', 9662, 119011, 7049, 42080, '1.0000', '25.2200', '25.2200', '33.5000', '33.5000', '1.0000', 1, 0, NULL, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125920, '2022-10-16', 1337, 119012, 7049, NULL, '1.0000', '2.2000', '2.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 (125921, '2022-10-16', 9089, 119013, 7049, 64754, '2.0000', '-20.2735', '-20.2735', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125922, '2022-10-16', 2169, 119014, 7049, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125923, '2022-10-16', 2167, 119015, 7049, NULL, '1.0000', '-35.2864', '-35.2864', '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 (125924, '2022-10-16', 7671, 119016, 7049, 51511, '2.0000', '-12.1000', '-12.1000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 427);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125925, '2022-10-16', 2642, 119017, 7049, 63780, '1.0000', '8.7425', '8.7425', '18.5000', '18.5000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125926, '2022-10-16', 2223, 119018, 7049, NULL, '1.0000', '-2.3706', '-2.3706', '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 (125927, '2022-10-17', 1941, 119019, 7050, 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 (125928, '2022-10-17', 2283, 119020, 7050, 60312, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125929, '2022-10-17', 1602, 119021, 7050, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '39.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125930, '2022-10-17', 1804, 119022, 7050, 64616, '1.0000', '1.2933', '1.2933', '11.5000', '11.5000', '1.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125931, '2022-10-17', 1935, 119023, 7050, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125932, '2022-10-17', 1446, 119024, 7050, NULL, '1.0000', '6.6040', '6.6040', '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 (125933, '2022-10-17', 2937, 119025, 7050, 64849, '1.0000', '6.2804', '6.2804', '9.5000', '9.5000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125934, '2022-10-17', 1640, 119026, 7050, NULL, '1.0000', '0.9277', '0.9277', '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 (125935, '2022-10-17', 9942, 119027, 7050, 64725, '1.0000', '12.7325', '12.7325', '18.0000', '18.0000', '12.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125936, '2022-10-17', 10023, 119028, 7050, 62159, '1.0000', '1.9500', '1.9500', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125937, '2022-10-17', 2293, 119029, 7050, NULL, '3.0000', '1.1118', '1.1118', '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 (125938, '2022-10-17', 2384, 119030, 7050, NULL, '5.0000', '-312.4992', '-312.4992', '0.8000', '0.8000', '-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 (125939, '2022-10-17', 2948, 119031, 7050, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '51.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125940, '2022-10-17', 1690, 119032, 7050, 59872, '1.0000', '8.6637', '8.6637', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125941, '2022-10-17', 7592, 119033, 7050, NULL, '1.0000', '8.6500', '8.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 (125942, '2022-10-17', 7756, 119034, 7050, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125943, '2022-10-17', 1637, 119035, 7050, 64074, '1.0000', '23.4218', '23.4218', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125944, '2022-10-17', 2643, 119036, 7050, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125945, '2022-10-17', 1935, 119037, 7050, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125946, '2022-10-17', 2821, 119038, 7050, NULL, '1.0000', '-40.2618', '-40.2618', '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 (125947, '2022-10-17', 7411, 119039, 7050, NULL, '2.0000', '1.2819', '1.2819', '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 (125948, '2022-10-17', 9734, 119040, 7050, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '87.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125949, '2022-10-17', 2295, 119041, 7050, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125950, '2022-10-17', 2169, 119042, 7050, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125951, '2022-10-17', 2068, 119043, 7050, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125952, '2022-10-17', 2315, 119044, 7050, NULL, '1.0000', '0.7700', '0.7700', '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 (125953, '2022-10-17', 2356, 119045, 7050, NULL, '1.0000', '38.9800', '38.9800', '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 (125954, '2022-10-17', 1409, 119046, 7050, 64717, '1.0000', '13.2000', '13.2000', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125955, '2022-10-17', 1602, 119047, 7050, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '39.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125956, '2022-10-17', 2416, 119048, 7050, 64752, '1.0000', '1.4027', '1.4027', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125957, '2022-10-17', 1342, 119049, 7050, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '10.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125958, '2022-10-17', 9791, 119050, 7050, 64592, '1.0000', '0.9575', '0.9575', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125959, '2022-10-17', 1519, 119051, 7050, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125960, '2022-10-17', 8449, 119052, 7050, 55953, '1.0000', '13.9000', '13.9000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 483);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125961, '2022-10-17', 3029, 119053, 7050, 64854, '1.0000', '-21.9670', '-21.9670', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125962, '2022-10-17', 1446, 119054, 7050, NULL, '1.0000', '6.6040', '6.6040', '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 (125963, '2022-10-17', 2548, 119055, 7050, 55634, '1.0000', '7.6792', '7.6792', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125964, '2022-10-17', 10022, 119056, 7050, 64794, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125965, '2022-10-17', 1330, 119057, 7050, NULL, '1.0000', '2.8000', '2.8000', '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 (125966, '2022-10-17', 8170, 119058, 7050, 64599, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125967, '2022-10-17', 8170, 119059, 7050, 64599, '2.0000', '5.7500', '5.7500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125968, '2022-10-17', 2038, 119060, 7050, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125969, '2022-10-17', 2169, 119061, 7050, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125970, '2022-10-17', 2655, 119062, 7050, 64750, '1.0000', '38.9798', '38.9798', '11.0000', '11.0000', '10.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125971, '2022-10-17', 7584, 119063, 7050, NULL, '1.0000', '3.1378', '3.1378', '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 (125972, '2022-10-17', 2287, 119064, 7050, 29630, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '55.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125973, '2022-10-17', 2228, 119065, 7051, 63807, '1.0000', '29.8977', '29.8977', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125974, '2022-10-17', 1519, 119066, 7051, 63146, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125975, '2022-10-17', 10038, 119067, 7051, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125976, '2022-10-17', 9747, 119068, 7051, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125977, '2022-10-17', 1665, 119069, 7051, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '137.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125978, '2022-10-17', 1863, 119070, 7051, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '112.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125979, '2022-10-17', 9940, 119071, 7051, 64781, '1.0000', '9.5168', '9.5168', '13.0000', '13.0000', '35.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125980, '2022-10-17', 7608, 119072, 7051, NULL, '1.0000', '6.9800', '6.9800', '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 (125981, '2022-10-17', 9896, 119073, 7051, 54367, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125982, '2022-10-17', 1965, 119074, 7051, 61687, '1.0000', '15.4000', '15.4000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125983, '2022-10-17', 1703, 119075, 7051, 58840, '1.0000', '8.9424', '8.9424', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125984, '2022-10-17', 1602, 119076, 7051, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '11.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125985, '2022-10-17', 2545, 119077, 7051, 64526, '1.0000', '8.3716', '8.3716', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125986, '2022-10-17', 8482, 119078, 7052, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '16.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125987, '2022-10-17', 1340, 119079, 7052, NULL, '1.0000', '5.5200', '5.5200', '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 (125988, '2022-10-17', 1965, 119080, 7052, NULL, '1.0000', '13.8600', '13.8600', '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 (125989, '2022-10-17', 7953, 119081, 7052, NULL, '1.0000', '-0.5345', '-0.5345', '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 (125990, '2022-10-17', 9922, 119082, 7052, 64588, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125991, '2022-10-17', 2854, 119083, 7052, 64051, '1.0000', '2.0667', '2.0667', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125992, '2022-10-17', 2380, 119084, 7052, 55590, '1.0000', '47.0967', '47.0967', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125993, '2022-10-17', 1450, 119085, 7052, NULL, '5.0000', '0.8483', '0.8483', '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 (125994, '2022-10-17', 1338, 119086, 7053, 61580, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125995, '2022-10-17', 8444, 119087, 7053, 62848, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125996, '2022-10-17', 2169, 119088, 7053, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125997, '2022-10-17', 10037, 119089, 7053, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125998, '2022-10-17', 2068, 119090, 7053, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125999, '2022-10-17', 9750, 119091, 7053, NULL, '1.0000', '2.3934', '2.3934', '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 (126000, '2022-10-17', 3044, 119092, 7053, 62830, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126001, '2022-10-17', 2169, 119093, 7053, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126002, '2022-10-17', 1602, 119094, 7053, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '37.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126003, '2022-10-17', 1499, 119095, 7053, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126004, '2022-10-17', 1935, 119096, 7053, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126005, '2022-10-17', 2337, 119097, 7053, NULL, '1.0000', '33.0000', '33.0000', '79.0000', '79.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126006, '2022-10-17', 2242, 119098, 7053, 48481, '3.0000', '1.2664', '1.2664', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126007, '2022-10-17', 2445, 119099, 7053, NULL, '5.0000', '3.1134', '3.1134', '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 (126008, '2022-10-17', 2169, 119100, 7053, 64716, '4.0000', '1.8316', '1.8316', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126009, '2022-10-17', 2038, 119101, 7053, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126010, '2022-10-17', 2643, 119102, 7053, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126011, '2022-10-17', 2293, 119103, 7053, NULL, '3.0000', '1.1118', '1.1118', '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 (126012, '2022-10-17', 2366, 119104, 7053, NULL, '2.0000', '-154.5270', '-154.5270', '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 (126013, '2022-10-17', 1621, 119105, 7054, 64850, '1.0000', '13.6096', '13.6096', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126014, '2022-10-17', 1863, 119106, 7054, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '104.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126015, '2022-10-17', 1845, 119107, 7054, 64790, '1.0000', '-17.9160', '-17.9160', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126016, '2022-10-17', 1409, 119108, 7054, 64717, '1.0000', '13.2000', '13.2000', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126017, '2022-10-17', 8065, 119109, 7054, NULL, '1.0000', '32.0000', '32.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126018, '2022-10-17', 1519, 119110, 7054, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126019, '2022-10-17', 2821, 119111, 7054, NULL, '1.0000', '-40.2618', '-40.2618', '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 (126020, '2022-10-17', 9734, 119112, 7054, 64835, '2.0000', '0.4609', '0.4609', '0.7000', '0.7000', '85.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126021, '2022-10-17', 2981, 119113, 7054, 22541, '1.0000', '28.0000', '28.0000', '34.0000', '34.0000', '7.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 (126022, '2022-10-17', 1935, 119114, 7054, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126023, '2022-10-17', 1338, 119115, 7054, 61580, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126024, '2022-10-17', 2163, 119116, 7055, 64073, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126025, '2022-10-17', 9814, 119117, 7055, 50254, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 412);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126026, '2022-10-17', 1383, 119118, 7055, 63988, '1.0000', '5.3864', '5.3864', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126027, '2022-10-17', 2315, 119119, 7055, NULL, '2.0000', '0.7700', '0.7700', '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 (126028, '2022-10-17', 9089, 119120, 7055, 64754, '1.0000', '-20.2735', '-20.2735', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126029, '2022-10-17', 1863, 119121, 7055, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126030, '2022-10-17', 1332, 119122, 7056, 14392, '-3.0000', '7.5000', '7.5000', '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 (126031, '2022-10-17', 1332, 119122, 7056, NULL, '4.0000', '7.5000', '7.5000', '13.0000', '13.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 (126032, '2022-10-17', 7531, 119123, 7057, 39811, '1.0000', '2.9968', '2.9968', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126033, '2022-10-17', 2100, 119124, 7057, NULL, '1.0000', '-4.4545', '-4.4545', '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 (126034, '2022-10-17', 2096, 119125, 7057, 64821, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126035, '2022-10-17', 2410, 119126, 7057, 64819, '1.0000', '5.4713', '5.4713', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126036, '2022-10-17', 1446, 119127, 7057, NULL, '1.0000', '6.6040', '6.6040', '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 (126037, '2022-10-17', 1935, 119128, 7057, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '41.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126038, '2022-10-17', 1646, 119129, 7057, 64863, '1.0000', '6.6727', '6.6727', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126039, '2022-10-17', 2821, 119130, 7057, NULL, '1.0000', '-40.2618', '-40.2618', '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 (126040, '2022-10-17', 1504, 119131, 7057, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126041, '2022-10-17', 7756, 119132, 7057, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126042, '2022-10-17', 1863, 119133, 7057, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '100.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126043, '2022-10-17', 9736, 119134, 7057, 64825, '1.0000', '6.8611', '6.8611', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126044, '2022-10-17', 8420, 119135, 7058, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '11.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126045, '2022-10-17', 8969, 119136, 7058, 39814, '1.0000', '2.5503', '2.5503', '8.0000', '8.0000', '56.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126046, '2022-10-17', 1440, 119137, 7058, 62401, '1.0000', '12.1795', '12.1795', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126047, '2022-10-17', 2366, 119138, 7058, NULL, '2.0000', '-154.5270', '-154.5270', '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 (126048, '2022-10-17', 8203, 119139, 7058, NULL, '2.0000', '9.8000', '9.8000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126049, '2022-10-17', 9249, 119140, 7058, NULL, '13.0000', '6.4900', '6.4900', '7.2000', '7.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 (126050, '2022-10-17', 9848, 119141, 7058, 64617, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126051, '2022-10-17', 1504, 119142, 7058, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126052, '2022-10-17', 1666, 119143, 7059, 3236, '-46.0000', '2.7100', '2.7100', '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 (126053, '2022-10-17', 1666, 119143, 7059, NULL, '47.0000', '2.7100', '2.7100', '6.5000', '6.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 (126054, '2022-10-17', 1772, 119144, 7059, 4893, '-18.0000', '6.0500', '6.0500', '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 (126055, '2022-10-17', 1772, 119144, 7059, NULL, '19.0000', '6.0500', '6.0500', '12.0000', '12.0000', '-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 (126056, '2022-10-17', 2068, 119145, 7059, 5568, '-35.0000', '13.1000', '13.1000', '20.5000', '20.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 (126057, '2022-10-17', 2068, 119145, 7059, NULL, '36.0000', '13.1000', '13.1000', '20.5000', '20.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 (126058, '2022-10-17', 2247, 119146, 7059, 2784, '-14.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 (126059, '2022-10-17', 2247, 119146, 7059, NULL, '15.0000', '2.5000', '2.5000', '3.5000', '3.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 (126060, '2022-10-17', 1812, 119147, 7059, 8224, '-126.0000', '7.8900', '7.8900', '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 (126061, '2022-10-17', 1812, 119147, 7059, NULL, '127.0000', '7.8900', '7.8900', '14.5000', '14.5000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126062, '2022-10-17', 1493, 119148, 7059, 9747, '-26.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 (126063, '2022-10-17', 1493, 119148, 7059, NULL, '27.0000', '1.5425', '1.5425', '3.0000', '3.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 (126064, '2022-10-17', 1765, 119149, 7059, 3175, '-30.0000', '90.0000', '90.0000', '9.5000', '9.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 (126065, '2022-10-17', 1765, 119149, 7059, NULL, '31.0000', '90.0000', '90.0000', '9.5000', '9.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 (126066, '2022-10-17', 2016, 119150, 7059, 6372, '-1.0000', '8.0000', '8.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 (126067, '2022-10-17', 2016, 119150, 7059, NULL, '2.0000', '8.0000', '8.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 (126068, '2022-10-17', 1519, 119151, 7059, NULL, '1.0000', '3.3500', '3.3500', '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 (126069, '2022-10-17', 1807, 119152, 7059, 18924, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '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 (126070, '2022-10-17', 1488, 119153, 7059, 20659, '1.0000', '3.9200', '3.9200', '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 (126071, '2022-10-17', 2068, 119154, 7059, 5568, '-35.0000', '13.1000', '13.1000', '20.5000', '20.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 (126072, '2022-10-17', 2068, 119154, 7059, NULL, '36.0000', '13.1000', '13.1000', '20.5000', '20.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 (126073, '2022-10-17', 2821, 119155, 7059, 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 (126074, '2022-10-17', 2169, 119156, 7059, 10737, '-241.0000', '3.8397', '3.8397', '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 (126075, '2022-10-17', 2169, 119156, 7059, NULL, '242.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-242.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126076, '2022-10-17', 1501, 119157, 7059, NULL, '1.0000', '2.0500', '2.0500', '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 (126077, '2022-10-17', 1779, 119158, 7059, 4898, '-23.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 (126078, '2022-10-17', 1779, 119158, 7059, NULL, '25.0000', '90.0000', '90.0000', '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 (126079, '2022-10-17', 2167, 119159, 7059, 17165, '-63.0000', '2.2000', '2.2000', '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 (126080, '2022-10-17', 2167, 119159, 7059, NULL, '64.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126081, '2022-10-17', 1410, 119160, 7059, NULL, '1.0000', '2.2000', '2.2000', '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 (126082, '2022-10-17', 2167, 119161, 7059, 17165, '-63.0000', '2.2000', '2.2000', '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 (126083, '2022-10-17', 2167, 119161, 7059, NULL, '64.0000', '2.2000', '2.2000', '4.0000', '4.0000', '-64.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126084, '2022-10-17', 8444, 119162, 7059, NULL, '1.0000', '1.6000', '1.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 (126085, '2022-10-17', 1904, 119163, 7059, 5442, '-113.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 (126086, '2022-10-17', 1904, 119163, 7059, NULL, '115.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-115.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126087, '2022-10-17', 7802, 119164, 7059, NULL, '3.0000', '0.9200', '0.9200', '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 (126088, '2022-10-17', 2379, 119165, 7059, 4032, '-80.0000', '1.5900', '1.5900', '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 (126089, '2022-10-17', 2379, 119165, 7059, NULL, '81.0000', '1.5900', '1.5900', '4.5000', '4.5000', '-81.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126090, '2022-10-17', 1837, 119166, 7059, 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 (126091, '2022-10-17', 2020, 119167, 7059, 10164, '-30.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 (126092, '2022-10-17', 2020, 119167, 7059, NULL, '31.0000', '7.5000', '7.5000', '11.0000', '11.0000', '-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 (126093, '2022-10-17', 1306, 119168, 7059, 5581, '-12.0000', '22.5969', '22.5969', '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 (126094, '2022-10-17', 1306, 119168, 7059, NULL, '17.0000', '22.5969', '22.5969', '3.0000', '3.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 (126095, '2022-10-17', 2285, 119169, 7059, 2945, '-59.0000', '35.8000', '35.8000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126096, '2022-10-17', 2285, 119169, 7059, NULL, '60.0000', '35.8000', '35.8000', '80.0000', '80.0000', '-60.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126097, '2022-10-17', 1837, 119170, 7059, 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 (126098, '2022-10-17', 2073, 119171, 7059, 22247, '1.0000', '2.3000', '2.3000', '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 (126099, '2022-10-17', 2964, 119172, 7059, NULL, '1.0000', '6.6000', '6.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 (126100, '2022-10-17', 2152, 119173, 7059, 22284, '1.0000', '10.8300', '10.8300', '22.0000', '22.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 (126101, '2022-10-17', 2887, 119174, 7059, NULL, '1.0000', '10.5000', '10.5000', '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 (126102, '2022-10-17', 1904, 119175, 7059, 5442, '-113.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 (126103, '2022-10-17', 1904, 119175, 7059, NULL, '114.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-114.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126104, '2022-10-17', 1674, 119176, 7059, NULL, '1.0000', '3.6000', '3.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 (126105, '2022-10-17', 1942, 119177, 7059, 5593, '-8.0000', '19.0000', '19.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 (126106, '2022-10-17', 1942, 119177, 7059, NULL, '9.0000', '19.0000', '19.0000', '30.5000', '30.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 (126107, '2022-10-17', 2169, 119178, 7059, 10737, '-241.0000', '3.8397', '3.8397', '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 (126108, '2022-10-17', 2169, 119178, 7059, NULL, '242.0000', '3.8397', '3.8397', '2.5000', '2.5000', '-242.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126109, '2022-10-17', 2858, 119179, 7059, 17772, '-140.0000', '1.0000', '1.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 (126110, '2022-10-17', 2858, 119179, 7059, NULL, '141.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-141.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126111, '2022-10-17', 1841, 119180, 7059, NULL, '2.0000', '142.5780', '142.5780', '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 (126112, '2022-10-17', 1840, 119181, 7059, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (126113, '2022-10-17', 1758, 119182, 7059, 3168, '-1.0000', '45.3800', '45.3800', '62.5000', '62.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 (126114, '2022-10-17', 1758, 119182, 7059, NULL, '2.0000', '45.3800', '45.3800', '62.5000', '62.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 (126115, '2022-10-17', 1812, 119183, 7059, 8224, '-126.0000', '7.8900', '7.8900', '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 (126116, '2022-10-17', 1812, 119183, 7059, NULL, '127.0000', '7.8900', '7.8900', '14.5000', '14.5000', '-127.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126117, '2022-10-17', 9775, 119184, 7059, NULL, '1.0000', '7.9000', '7.9000', '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 (126118, '2022-10-17', 9943, 119185, 7059, NULL, '1.0000', '10.5500', '10.5500', '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 (126119, '2022-10-17', 2506, 119186, 7059, 16244, '-51.0000', '3.4900', '3.4900', '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 (126120, '2022-10-17', 2506, 119186, 7059, NULL, '52.0000', '3.4900', '3.4900', '8.0000', '8.0000', '-52.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126121, '2022-10-17', 9834, 119187, 7059, NULL, '1.0000', '1.4500', '1.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 (126122, '2022-10-17', 2089, 119188, 7059, 10811, '-9.0000', '6.6500', '6.6500', '9.5000', '9.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 (126123, '2022-10-17', 2089, 119188, 7059, NULL, '10.0000', '6.6500', '6.6500', '9.5000', '9.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 (126124, '2022-10-17', 1743, 119189, 7060, NULL, '1.0000', '3.5650', '3.5650', '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 (126125, '2022-10-17', 1338, 119190, 7060, 58153, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126126, '2022-10-17', 2295, 119191, 7060, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126127, '2022-10-17', 2242, 119192, 7060, 48481, '2.0000', '1.2664', '1.2664', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126128, '2022-10-17', 2242, 119192, 7060, NULL, '1.0000', '1.2664', '1.2664', '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 (126129, '2022-10-17', 8413, 119193, 7060, 64568, '1.0000', '1282.3529', '1282.3529', '120.0000', '120.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126130, '2022-10-17', 1863, 119194, 7060, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126131, '2022-10-17', 1935, 119195, 7060, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126132, '2022-10-17', 2656, 119196, 7060, 64751, '1.0000', '1.9693', '1.9693', '3.0000', '3.0000', '25.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126133, '2022-10-17', 1386, 119197, 7060, 64730, '1.0000', '4.8042', '4.8042', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126134, '2022-10-17', 9511, 119198, 7060, 58267, '1.0000', '8.7280', '8.7280', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126135, '2022-10-17', 1419, 119199, 7060, NULL, '1.0000', '23.4480', '23.4480', '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 (126136, '2022-10-17', 8740, 119200, 7060, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126137, '2022-10-17', 8413, 119201, 7060, 64568, '1.0000', '1282.3529', '1282.3529', '120.0000', '120.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126138, '2022-10-17', 1812, 119202, 7060, 64583, '3.0000', '9.4505', '9.4505', '14.5000', '14.5000', '10.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126139, '2022-10-17', 2169, 119203, 7060, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126140, '2022-10-17', 2643, 119204, 7060, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126141, '2022-10-17', 9821, 119205, 7060, 62142, '1.0000', '1.6500', '1.6500', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126142, '2022-10-17', 8420, 119206, 7060, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '10.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126143, '2022-10-17', 1369, 119207, 7060, 64580, '1.0000', '8.6557', '8.6557', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126144, '2022-10-17', 1450, 119208, 7060, NULL, '10.0000', '0.8483', '0.8483', '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 (126145, '2022-10-17', 1321, 119209, 7060, NULL, '1.0000', '4.0234', '4.0234', '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 (126146, '2022-10-17', 10052, 119210, 7060, 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 (126147, '2022-10-17', 2038, 119211, 7060, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126148, '2022-10-17', 8566, 119212, 7060, 58043, '1.0000', '18.0000', '18.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126149, '2022-10-17', 9695, 119213, 7060, 64768, '1.0000', '5.7018', '5.7018', '9.0000', '9.0000', '24.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126150, '2022-10-17', 2428, 119214, 7060, 63774, '1.0000', '17.4743', '17.4743', '22.0800', '22.0800', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126151, '2022-10-17', 7704, 119215, 7060, NULL, '2.0000', '0.4900', '0.4900', '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 (126152, '2022-10-17', 2948, 119216, 7060, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '50.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126153, '2022-10-17', 1493, 119217, 7061, 64609, '1.0000', '38.1107', '38.1107', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126154, '2022-10-17', 1905, 119218, 7061, NULL, '1.0000', '0.5198', '0.5198', '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 (126155, '2022-10-17', 1999, 119219, 7061, 59704, '1.0000', '1.3828', '1.3828', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126156, '2022-10-17', 9871, 119220, 7061, 64757, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126157, '2022-10-17', 2295, 119221, 7061, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126158, '2022-10-17', 1863, 119222, 7061, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '98.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126159, '2022-10-17', 9984, 119223, 7062, 64784, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126160, '2022-10-17', 9424, 119224, 7062, 64861, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126161, '2022-10-17', 9943, 119225, 7062, 64726, '1.0000', '14.9097', '14.9097', '19.0000', '19.0000', '12.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126162, '2022-10-17', 1863, 119226, 7062, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '97.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126163, '2022-10-17', 1519, 119227, 7062, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126164, '2022-10-17', 1410, 119228, 7062, NULL, '1.0000', '2046.5555', '2046.5555', '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 (126165, '2022-10-17', 1501, 119229, 7062, NULL, '1.0000', '-2.2016', '-2.2016', '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 (126166, '2022-10-17', 9788, 119230, 7062, 64791, '1.0000', '1.8451', '1.8451', '2.5000', '2.5000', '79.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126167, '2022-10-17', 2256, 119231, 7063, 2793, '-11.0000', '12.7400', '12.7400', '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 (126168, '2022-10-17', 2256, 119231, 7063, NULL, '12.0000', '12.7400', '12.7400', '24.0000', '24.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 (126169, '2022-10-17', 8101, 119232, 7063, NULL, '2.0000', '1.9700', '1.9700', '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 (126170, '2022-10-17', 7781, 119233, 7063, NULL, '2.0000', '4.2500', '4.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 (126171, '2022-10-17', 9388, 119234, 7063, 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 (126172, '2022-10-17', 7630, 119235, 7063, NULL, '2.0000', '10.0000', '10.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 (126173, '2022-10-17', 7514, 119236, 7063, NULL, '1.0000', '2.2500', '2.2500', '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 (126174, '2022-10-17', 7611, 119237, 7063, NULL, '2.0000', '4.4000', '4.4000', '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 (126175, '2022-10-17', 9445, 119238, 7063, NULL, '1.0000', '4.5000', '4.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 (126176, '2022-10-17', 8596, 119239, 7063, 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 (126177, '2022-10-17', 9092, 119240, 7063, NULL, '1.0000', '5.2900', '5.2900', '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 (126178, '2022-10-17', 7526, 119241, 7063, NULL, '1.0000', '14.0000', '14.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126179, '2022-10-17', 2295, 119242, 7063, 2954, '-92.0000', '0.9600', '0.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 (126180, '2022-10-17', 2295, 119242, 7063, NULL, '93.0000', '0.9600', '0.9600', '2.5000', '2.5000', '-93.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126181, '2022-10-17', 8203, 119243, 7063, 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 (126182, '2022-10-17', 7799, 119244, 7063, NULL, '1.0000', '6.4000', '6.4000', '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 (126183, '2022-10-17', 7547, 119245, 7063, NULL, '2.0000', '0.0000', '0.0000', '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 (126184, '2022-10-17', 7533, 119246, 7063, NULL, '1.0000', '4.4000', '4.4000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126185, '2022-10-17', 7886, 119247, 7063, NULL, '2.0000', '4.5000', '4.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 (126186, '2022-10-17', 8359, 119248, 7063, NULL, '2.0000', '13.0000', '13.0000', '20.5000', '20.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 (126187, '2022-10-17', 7530, 119249, 7063, NULL, '1.0000', '7.7000', '7.7000', '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 (126188, '2022-10-17', 1840, 119250, 7063, NULL, '3.0000', '-138499292.4246', '-138499292.4246', '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 (126189, '2022-10-17', 7819, 119251, 7063, NULL, '1.0000', '9.5000', '9.5000', '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 (126190, '2022-10-17', 7509, 119252, 7063, NULL, '1.0000', '6.5000', '6.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 (126191, '2022-10-17', 7558, 119253, 7063, NULL, '5.0000', '1.9700', '1.9700', '4.5000', '4.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 (126192, '2022-10-17', 9503, 119254, 7063, NULL, '1.0000', '20.6000', '20.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 (126193, '2022-10-17', 1760, 119255, 7063, 3170, '-8.0000', '111.8384', '111.8384', '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 (126194, '2022-10-17', 1760, 119255, 7063, NULL, '9.0000', '111.8384', '111.8384', '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 (126195, '2022-10-17', 1310, 119256, 7063, NULL, '2.0000', '0.3700', '0.3700', '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 (126196, '2022-10-17', 2315, 119257, 7063, 2735, '-718.0000', '0.3300', '0.3300', '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 (126197, '2022-10-17', 2315, 119257, 7063, NULL, '719.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-719.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126198, '2022-10-17', 8744, 119258, 7063, NULL, '1.0000', '3.6600', '3.6600', '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 (126199, '2022-10-17', 2887, 119259, 7063, NULL, '1.0000', '10.5000', '10.5000', '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 (126200, '2022-10-17', 1337, 119260, 7063, 10809, '-35.0000', '2.0000', '2.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 (126201, '2022-10-17', 1337, 119260, 7063, NULL, '36.0000', '2.0000', '2.0000', '4.0000', '4.0000', '-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 (126202, '2022-10-17', 7514, 119261, 7063, NULL, '1.0000', '2.2500', '2.2500', '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 (126203, '2022-10-17', 7524, 119262, 7063, NULL, '1.0000', '11.9500', '11.9500', '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 (126204, '2022-10-17', 7412, 119263, 7063, NULL, '1.0000', '1.5200', '1.5200', '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 (126205, '2022-10-17', 7713, 119264, 7063, NULL, '6.0000', '0.3800', '0.3800', '0.6000', '0.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 (126206, '2022-10-17', 7762, 119265, 7063, NULL, '1.0000', '1.5000', '1.5000', '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 (126207, '2022-10-17', 7672, 119266, 7063, NULL, '1.0000', '1.0200', '1.0200', '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 (126208, '2022-10-17', 8680, 119267, 7063, NULL, '1.0000', '2.0000', '2.0000', '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 (126209, '2022-10-17', 8203, 119268, 7063, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126210, '2022-10-17', 9214, 119269, 7063, NULL, '1.0000', '9.6000', '9.6000', '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 (126211, '2022-10-17', 7514, 119270, 7063, NULL, '2.0000', '2.2500', '2.2500', '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 (126212, '2022-10-17', 7514, 119271, 7063, NULL, '1.0000', '2.2500', '2.2500', '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 (126213, '2022-10-17', 7444, 119272, 7063, 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 (126214, '2022-10-17', 8878, 119273, 7063, NULL, '2.0000', '6.6700', '6.6700', '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 (126215, '2022-10-17', 7769, 119274, 7063, 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 (126216, '2022-10-17', 8539, 119275, 7063, NULL, '2.0000', '31.8000', '31.8000', '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 (126217, '2022-10-17', 8359, 119276, 7063, NULL, '1.0000', '13.0000', '13.0000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126218, '2022-10-17', 2251, 119277, 7063, 2788, '-41.0000', '10.9700', '10.9700', '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 (126219, '2022-10-17', 2251, 119277, 7063, NULL, '42.0000', '10.9700', '10.9700', '22.0000', '22.0000', '-42.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126220, '2022-10-17', 9388, 119278, 7063, 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 (126221, '2022-10-17', 9108, 119279, 7063, NULL, '1.0000', '3.4000', '3.4000', '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 (126222, '2022-10-17', 7815, 119280, 7063, NULL, '1.0000', '13.0000', '13.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 (126223, '2022-10-17', 7464, 119281, 7063, NULL, '1.0000', '21.9000', '21.9000', '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 (126224, '2022-10-17', 7787, 119282, 7063, NULL, '1.0000', '10.9000', '10.9000', '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 (126225, '2022-10-17', 7411, 119283, 7063, NULL, '1.0000', '1.3500', '1.3500', '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 (126226, '2022-10-17', 8548, 119284, 7063, NULL, '1.0000', '12.0000', '12.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 (126227, '2022-10-17', 7482, 119285, 7063, NULL, '1.0000', '3.0500', '3.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 (126228, '2022-10-17', 1337, 119286, 7063, 10809, '-35.0000', '2.0000', '2.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 (126229, '2022-10-17', 1337, 119286, 7063, NULL, '36.0000', '2.0000', '2.0000', '4.0000', '4.0000', '-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 (126230, '2022-10-17', 7509, 119287, 7063, NULL, '1.0000', '6.5000', '6.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 (126231, '2022-10-17', 1916, 119288, 7063, 5445, '-13.0000', '8.2300', '8.2300', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126232, '2022-10-17', 1916, 119288, 7063, NULL, '14.0000', '8.2300', '8.2300', '14.0000', '14.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 (126233, '2022-10-17', 9092, 119289, 7063, NULL, '2.0000', '5.2900', '5.2900', '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 (126234, '2022-10-17', 8412, 119290, 7063, NULL, '2.0000', '15.0000', '15.0000', '55.5000', '55.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 (126235, '2022-10-17', 7959, 119291, 7063, NULL, '1.0000', '9.6000', '9.6000', '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 (126236, '2022-10-17', 7523, 119292, 7063, NULL, '1.0000', '9.7500', '9.7500', '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 (126237, '2022-10-17', 9092, 119293, 7063, NULL, '2.0000', '5.2900', '5.2900', '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 (126238, '2022-10-17', 1807, 119294, 7063, 18924, '3.0000', '1.8000', '1.8000', '2.5000', '2.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 (126239, '2022-10-17', 7316, 119295, 7063, NULL, '5.0000', '9.5500', '9.5500', '1.5000', '1.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 (126240, '2022-10-17', 1975, 119296, 7063, 6342, '-1.0000', '9.5000', '9.5000', '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 (126241, '2022-10-17', 1975, 119296, 7063, NULL, '2.0000', '9.5000', '9.5000', '18.5000', '18.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 (126242, '2022-10-17', 1420, 119297, 7063, NULL, '1.0000', '1.2000', '1.2000', '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 (126243, '2022-10-17', 2069, 119298, 7063, 5571, '-27.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126244, '2022-10-17', 2069, 119298, 7063, NULL, '28.0000', '2.0400', '2.0400', '14.0000', '14.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 (126245, '2022-10-17', 8677, 119299, 7063, NULL, '3.0000', '1.2800', '1.2800', '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 (126246, '2022-10-17', 1501, 119300, 7063, NULL, '1.0000', '2.0500', '2.0500', '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 (126247, '2022-10-17', 7411, 119301, 7063, NULL, '1.0000', '1.3500', '1.3500', '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 (126248, '2022-10-17', 7514, 119302, 7063, NULL, '1.0000', '2.2500', '2.2500', '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 (126249, '2022-10-17', 8482, 119303, 7063, NULL, '1.0000', '2.9500', '2.9500', '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 (126250, '2022-10-17', 9755, 119304, 7063, NULL, '1.0000', '17.0000', '17.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 (126251, '2022-10-17', 9576, 119305, 7063, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126252, '2022-10-17', 1420, 119306, 7063, NULL, '1.0000', '1.2000', '1.2000', '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 (126253, '2022-10-17', 7444, 119307, 7063, 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 (126254, '2022-10-17', 9734, 119308, 7063, NULL, '3.0000', '0.3200', '0.3200', '0.7000', '0.7000', '-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 (126255, '2022-10-17', 7641, 119309, 7063, NULL, '1.0000', '1.9000', '1.9000', '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 (126256, '2022-10-17', 9791, 119310, 7063, 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 (126257, '2022-10-17', 7522, 119311, 7063, NULL, '1.0000', '9.7000', '9.7000', '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 (126258, '2022-10-17', 8308, 119312, 7063, NULL, '1.0000', '2.0800', '2.0800', '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 (126259, '2022-10-17', 7333, 119313, 7063, NULL, '4.0000', '13.5000', '13.5000', '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 (126260, '2022-10-17', 7743, 119314, 7063, NULL, '2.0000', '1.3100', '1.3100', '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 (126261, '2022-10-17', 7674, 119315, 7063, NULL, '1.0000', '1.3000', '1.3000', '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 (126262, '2022-10-17', 1550, 119316, 7063, NULL, '1.0000', '13.9000', '13.9000', '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 (126263, '2022-10-17', 9633, 119317, 7063, NULL, '1.0000', '8.4100', '8.4100', '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 (126264, '2022-10-17', 1646, 119318, 7064, 64863, '1.0000', '6.6727', '6.6727', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126265, '2022-10-17', 2169, 119319, 7064, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126266, '2022-10-17', 1863, 119320, 7064, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '96.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126267, '2022-10-17', 2275, 119321, 7064, NULL, '1.0000', '-26.2984', '-26.2984', '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 (126268, '2022-10-17', 2315, 119322, 7065, NULL, '1.0000', '0.7700', '0.7700', '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 (126269, '2022-10-17', 2275, 119323, 7065, NULL, '1.0000', '-26.2984', '-26.2984', '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 (126270, '2022-10-17', 1935, 119324, 7065, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126271, '2022-10-17', 1602, 119325, 7066, 5897, '-185.0000', '6.7859', '6.7859', '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 (126272, '2022-10-17', 1602, 119325, 7066, NULL, '186.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-186.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126273, '2022-10-17', 1425, 119326, 7067, NULL, '1.0000', '6.4405', '6.4405', '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 (126274, '2022-10-17', 7741, 119327, 7067, NULL, '1.0000', '1.2000', '1.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 (126275, '2022-10-17', 7713, 119328, 7068, NULL, '10.0000', '0.3800', '0.3800', '0.6000', '0.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 (126276, '2022-10-17', 9751, 119329, 7068, NULL, '1.0000', '1.0000', '1.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 (126277, '2022-10-17', 8039, 119330, 7068, NULL, '1.0000', '14.7500', '14.7500', '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 (126278, '2022-10-17', 7715, 119331, 7068, NULL, '1.0000', '1.8900', '1.8900', '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 (126279, '2022-10-17', 9724, 119332, 7068, NULL, '1.0000', '20.3000', '20.3000', '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 (126280, '2022-10-17', 7318, 119333, 7068, NULL, '1.0000', '13.4400', '13.4400', '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 (126281, '2022-10-17', 2656, 119334, 7068, NULL, '2.0000', '1.5000', '1.5000', '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 (126282, '2022-10-17', 7560, 119335, 7068, NULL, '1.0000', '33.0200', '33.0200', '65.5000', '65.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126283, '2022-10-17', 8482, 119336, 7068, NULL, '1.0000', '2.9500', '2.9500', '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 (126284, '2022-10-17', 7886, 119337, 7068, NULL, '2.0000', '4.5000', '4.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 (126285, '2022-10-17', 8566, 119338, 7068, NULL, '2.0000', '11.0000', '11.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 (126286, '2022-10-17', 8765, 119339, 7069, 64766, '1.0000', '4.0080', '4.0080', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126287, '2022-10-17', 2656, 119340, 7069, 64751, '1.0000', '1.9693', '1.9693', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126288, '2022-10-17', 9927, 119341, 7069, 60359, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126289, '2022-10-17', 1612, 119342, 7069, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126290, '2022-10-17', 1382, 119343, 7070, 64723, '1.0000', '4.1875', '4.1875', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126291, '2022-10-17', 9896, 119344, 7071, 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 (126292, '2022-10-17', 2486, 119345, 7071, NULL, '2.0000', '4.0000', '4.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 (126293, '2022-10-18', 1602, 119346, 7072, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126294, '2022-10-18', 1905, 119347, 7072, NULL, '1.0000', '0.5198', '0.5198', '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 (126295, '2022-10-18', 1529, 119348, 7072, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126296, '2022-10-18', 2288, 119349, 7072, 64846, '1.0000', '10.8843', '10.8843', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126297, '2022-10-18', 1602, 119350, 7072, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126298, '2022-10-18', 2167, 119351, 7072, NULL, '1.0000', '-35.2864', '-35.2864', '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 (126299, '2022-10-18', 1840, 119352, 7072, NULL, '10.0000', '0.2400', '0.2400', '0.5000', '0.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 (126300, '2022-10-18', 1612, 119353, 7072, NULL, '1.0000', '1.6000', '1.6000', '2.6400', '2.6400', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126301, '2022-10-18', 2379, 119354, 7072, NULL, '2.0000', '-154.5325', '-154.5325', '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 (126302, '2022-10-18', 1504, 119355, 7072, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126303, '2022-10-18', 1349, 119356, 7072, 56375, '1.0000', '42.3933', '42.3933', '61.0000', '61.0000', '0.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126304, '2022-10-18', 9740, 119357, 7072, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126305, '2022-10-18', 10001, 119358, 7072, NULL, '1.0000', '56.0000', '56.0000', '72.5000', '72.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126306, '2022-10-18', 2440, 119359, 7072, 63775, '1.0000', '7.0302', '7.0302', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126307, '2022-10-18', 8767, 119360, 7072, 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 (126308, '2022-10-18', 2693, 119361, 7072, 64842, '1.0000', '24.3443', '24.3443', '33.5000', '33.5000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126309, '2022-10-18', 2288, 119362, 7072, 64846, '1.0000', '10.8843', '10.8843', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126310, '2022-10-18', 9913, 119363, 7072, NULL, '1.0000', '13.2000', '13.2000', '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 (126311, '2022-10-18', 9791, 119364, 7072, 64592, '1.0000', '0.9575', '0.9575', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126312, '2022-10-18', 2109, 119365, 7072, 64808, '1.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126313, '2022-10-18', 8384, 119366, 7072, 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 (126314, '2022-10-18', 2169, 119367, 7072, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126315, '2022-10-18', 9734, 119368, 7072, 64835, '3.0000', '0.4609', '0.4609', '0.7000', '0.7000', '82.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126316, '2022-10-18', 8775, 119369, 7072, 64764, '1.0000', '2.7261', '2.7261', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126317, '2022-10-18', 1912, 119370, 7072, 64802, '2.0000', '0.7413', '0.7413', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126318, '2022-10-18', 1787, 119371, 7072, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126319, '2022-10-18', 2381, 119372, 7072, 64840, '1.0000', '14.5327', '14.5327', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126320, '2022-10-18', 2916, 119373, 7072, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (126321, '2022-10-18', 2643, 119374, 7072, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126322, '2022-10-18', 1871, 119375, 7072, NULL, '5.0000', '-20821086.1374', '-20821086.1374', '4.5000', '4.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 (126323, '2022-10-18', 1910, 119376, 7072, NULL, '1.0000', '0.5756', '0.5756', '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 (126324, '2022-10-18', 2169, 119377, 7072, 64716, '2.0000', '1.8316', '1.8316', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126325, '2022-10-18', 8384, 119378, 7072, 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 (126326, '2022-10-18', 1904, 119379, 7072, 62413, '4.0000', '1.1631', '1.1631', '1.0000', '1.0000', '15.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126327, '2022-10-18', 2109, 119380, 7072, 64808, '1.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126328, '2022-10-18', 2643, 119381, 7072, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126329, '2022-10-18', 9590, 119382, 7072, NULL, '1.0000', '5.7994', '5.7994', '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 (126330, '2022-10-18', 1590, 119383, 7072, 64809, '3.0000', '2.5018', '2.5018', '4.0000', '4.0000', '47.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126331, '2022-10-18', 9734, 119384, 7072, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '84.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126332, '2022-10-18', 2643, 119385, 7072, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126333, '2022-10-18', 1602, 119386, 7072, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126334, '2022-10-18', 2506, 119387, 7072, NULL, '1.0000', '-29.1041', '-29.1041', '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 (126335, '2022-10-18', 2315, 119388, 7072, NULL, '1.0000', '0.7700', '0.7700', '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 (126336, '2022-10-18', 9946, 119389, 7073, 63378, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126337, '2022-10-18', 9999, 119390, 7073, 60929, '2.0000', '3.1000', '3.1000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126338, '2022-10-18', 1863, 119391, 7073, 64555, '2.0000', '1.4448', '1.4448', '2.5000', '2.5000', '110.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126339, '2022-10-18', 2169, 119392, 7073, 62805, '2.0000', '1.4878', '1.4878', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126340, '2022-10-18', 9788, 119393, 7073, 63953, '4.0000', '1.8869', '1.8869', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126341, '2022-10-18', 1519, 119394, 7073, 63146, '1.0000', '3.5545', '3.5545', '5.5000', '5.5000', '18.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126342, '2022-10-18', 1867, 119395, 7073, NULL, '1.0000', '6.2173', '6.2173', '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 (126343, '2022-10-18', 9747, 119396, 7073, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126344, '2022-10-18', 2734, 119397, 7073, 62735, '2.0000', '5.0714', '5.0714', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126345, '2022-10-18', 2270, 119398, 7073, 62269, '2.0000', '4.1408', '4.1408', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126346, '2022-10-18', 10038, 119399, 7073, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126347, '2022-10-18', 2293, 119400, 7073, 50920, '2.0000', '0.8705', '0.8705', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126348, '2022-10-18', 2384, 119401, 7073, 64562, '1.0000', '0.4889', '0.4889', '0.8000', '0.8000', '99.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126349, '2022-10-18', 9942, 119402, 7073, 64309, '1.0000', '11.6714', '11.6714', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126350, '2022-10-18', 2482, 119403, 7073, 5194, '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 (126351, '2022-10-18', 1374, 119404, 7073, 64540, '1.0000', '62.6642', '62.6642', '39.0000', '39.0000', '5.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126352, '2022-10-18', 1383, 119405, 7073, 63405, '1.0000', '5.7792', '5.7792', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126353, '2022-10-18', 9741, 119406, 7073, 64318, '1.0000', '7.7543', '7.7543', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126354, '2022-10-18', 2098, 119407, 7073, 61598, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126355, '2022-10-18', 1347, 119408, 7073, 62725, '1.0000', '2.7178', '2.7178', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126356, '2022-10-18', 1772, 119409, 7073, 63369, '1.0000', '6.0812', '6.0812', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126357, '2022-10-18', 2858, 119410, 7073, 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 (126358, '2022-10-18', 7715, 119411, 7073, 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 (126359, '2022-10-18', 1432, 119412, 7073, 64547, '1.0000', '12.0750', '12.0750', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126360, '2022-10-18', 7715, 119413, 7073, 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 (126361, '2022-10-18', 1839, 119414, 7073, 64967, '1.0000', '8.2138', '8.2138', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126362, '2022-10-18', 1406, 119415, 7073, 64776, '1.0000', '18.8933', '18.8933', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126363, '2022-10-18', 7674, 119416, 7074, NULL, '1.0000', '1.3000', '1.3000', '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 (126364, '2022-10-18', 8615, 119417, 7074, NULL, '2.0000', '4.5000', '4.5000', '9.5000', '9.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 (126365, '2022-10-18', 8756, 119418, 7074, NULL, '1.0000', '7.5000', '7.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 (126366, '2022-10-18', 2821, 119419, 7074, 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 (126367, '2022-10-18', 7354, 119420, 7074, NULL, '2.0000', '0.3700', '0.3700', '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 (126368, '2022-10-18', 7666, 119421, 7074, NULL, '1.0000', '3.6000', '3.6000', '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 (126369, '2022-10-18', 7411, 119422, 7074, NULL, '1.0000', '1.3500', '1.3500', '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 (126370, '2022-10-18', 8810, 119423, 7074, NULL, '1.0000', '1.6000', '1.6000', '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 (126371, '2022-10-18', 7881, 119424, 7074, NULL, '1.0000', '2.3000', '2.3000', '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 (126372, '2022-10-18', 9995, 119425, 7074, NULL, '1.0000', '8.2000', '8.2000', '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 (126373, '2022-10-18', 2315, 119426, 7074, 2735, '-719.0000', '0.3300', '0.3300', '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 (126374, '2022-10-18', 2315, 119426, 7074, NULL, '723.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-723.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126375, '2022-10-18', 7641, 119427, 7074, NULL, '1.0000', '1.9000', '1.9000', '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 (126376, '2022-10-18', 7708, 119428, 7074, NULL, '1.0000', '7.8000', '7.8000', '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 (126377, '2022-10-18', 9980, 119429, 7074, 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 (126378, '2022-10-18', 7494, 119430, 7074, NULL, '3.0000', '51.0000', '51.0000', '76.0000', '76.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 (126379, '2022-10-18', 7638, 119431, 7074, NULL, '1.0000', '12.0000', '12.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 (126380, '2022-10-18', 8949, 119432, 7074, 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 (126381, '2022-10-18', 7762, 119433, 7074, NULL, '2.0000', '1.5000', '1.5000', '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 (126382, '2022-10-18', 7780, 119434, 7074, NULL, '1.0000', '11.6000', '11.6000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126383, '2022-10-18', 7666, 119435, 7074, NULL, '1.0000', '3.6000', '3.6000', '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 (126384, '2022-10-18', 9747, 119436, 7074, NULL, '2.0000', '0.6500', '0.6500', '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 (126385, '2022-10-18', 8810, 119437, 7074, NULL, '1.0000', '1.6000', '1.6000', '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 (126386, '2022-10-18', 7473, 119438, 7074, NULL, '5.0000', '0.5300', '0.5300', '0.8000', '0.8000', '-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 (126387, '2022-10-18', 7514, 119439, 7074, NULL, '2.0000', '2.2500', '2.2500', '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 (126388, '2022-10-18', 7518, 119440, 7074, NULL, '1.0000', '7.8200', '7.8200', '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 (126389, '2022-10-18', 9980, 119441, 7074, 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 (126390, '2022-10-18', 8017, 119442, 7074, NULL, '1.0000', '40.0000', '40.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 (126391, '2022-10-18', 1935, 119443, 7074, 5586, '-221.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 (126392, '2022-10-18', 1935, 119443, 7074, NULL, '223.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-223.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126393, '2022-10-18', 7880, 119444, 7074, NULL, '1.0000', '2.6500', '2.6500', '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 (126394, '2022-10-18', 2656, 119445, 7075, NULL, '1.0000', '1.5000', '1.5000', '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 (126395, '2022-10-18', 1532, 119446, 7076, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126396, '2022-10-18', 7357, 119447, 7076, NULL, '1.0000', '12.2000', '12.2000', '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 (126397, '2022-10-18', 2169, 119448, 7076, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126398, '2022-10-18', 1812, 119449, 7076, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126399, '2022-10-18', 1912, 119450, 7076, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126400, '2022-10-18', 1904, 119451, 7076, 62413, '2.0000', '1.1631', '1.1631', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126401, '2022-10-18', 8878, 119452, 7076, 64000, '1.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126402, '2022-10-18', 2284, 119453, 7076, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126403, '2022-10-18', 2285, 119454, 7076, NULL, '1.0000', '-358.6732', '-358.6732', '80.0000', '80.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126404, '2022-10-18', 2656, 119455, 7076, 64751, '2.0000', '1.9693', '1.9693', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126405, '2022-10-18', 1369, 119456, 7076, 64580, '1.0000', '8.6557', '8.6557', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126406, '2022-10-18', 1435, 119457, 7076, 62146, '1.0000', '23.1000', '23.1000', '37.0000', '37.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126407, '2022-10-18', 7867, 119458, 7076, NULL, '2.0000', '2.7700', '2.7700', '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 (126408, '2022-10-18', 2762, 119459, 7076, 64856, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126409, '2022-10-18', 9927, 119460, 7076, 60359, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126410, '2022-10-18', 7608, 119461, 7076, NULL, '1.0000', '6.9800', '6.9800', '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 (126411, '2022-10-18', 2937, 119462, 7076, 64849, '1.0000', '6.2804', '6.2804', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126412, '2022-10-18', 1804, 119463, 7076, 64616, '1.0000', '1.2933', '1.2933', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126413, '2022-10-18', 2821, 119464, 7076, NULL, '2.0000', '-40.2618', '-40.2618', '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 (126414, '2022-10-18', 2548, 119465, 7076, 51644, '1.0000', '7.6792', '7.6792', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 429);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126415, '2022-10-18', 1825, 119466, 7076, 64744, '1.0000', '8.9429', '8.9429', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126416, '2022-10-18', 2169, 119467, 7076, 64716, '2.0000', '1.8316', '1.8316', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126417, '2022-10-18', 1383, 119468, 7076, 63988, '1.0000', '5.3864', '5.3864', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126418, '2022-10-18', 1602, 119469, 7076, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '33.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126419, '2022-10-18', 9671, 119470, 7076, 64571, '1.0000', '32.0000', '32.0000', '42.5000', '42.5000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126420, '2022-10-18', 1585, 119471, 7076, 64872, '1.0000', '10.2667', '10.2667', '15.0000', '15.0000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126421, '2022-10-18', 8079, 119472, 7076, NULL, '1.0000', '17.4827', '17.4827', '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 (126422, '2022-10-18', 2656, 119473, 7076, 64751, '1.0000', '1.9693', '1.9693', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126423, '2022-10-18', 2643, 119474, 7076, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126424, '2022-10-18', 1863, 119475, 7076, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '95.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126425, '2022-10-18', 2275, 119476, 7076, NULL, '1.0000', '-26.2984', '-26.2984', '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 (126426, '2022-10-18', 1520, 119477, 7076, 64608, '1.0000', '1.7942', '1.7942', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126427, '2022-10-18', 2339, 119478, 7076, 62421, '1.0000', '13.2000', '13.2000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126428, '2022-10-18', 2167, 119479, 7076, NULL, '1.0000', '-35.2864', '-35.2864', '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 (126429, '2022-10-18', 1776, 119480, 7076, NULL, '2.0000', '90.0000', '90.0000', '6.2000', '6.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 (126430, '2022-10-18', 2649, 119481, 7076, 62167, '1.0000', '99.3000', '99.3000', '131.0000', '131.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126431, '2022-10-18', 9729, 119482, 7077, 64805, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126432, '2022-10-18', 2384, 119483, 7077, NULL, '2.0000', '-312.4992', '-312.4992', '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 (126433, '2022-10-18', 2730, 119484, 7077, 63990, '2.0000', '2.2167', '2.2167', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126434, '2022-10-18', 1863, 119485, 7077, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '93.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126435, '2022-10-18', 1878, 119486, 7077, NULL, '2.0000', '0.2800', '0.2800', '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 (126436, '2022-10-18', 1812, 119487, 7077, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126437, '2022-10-18', 1628, 119488, 7077, 59606, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126438, '2022-10-18', 1394, 119489, 7077, 60293, '1.0000', '12.8535', '12.8535', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126439, '2022-10-18', 9482, 119490, 7077, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '224.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126440, '2022-10-18', 9744, 119491, 7077, 52159, '1.0000', '8.6000', '8.6000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126441, '2022-10-18', 2823, 119492, 7077, 64799, '1.0000', '41.7600', '41.7600', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126442, '2022-10-18', 1338, 119493, 7077, 58153, '1.0000', '5.2560', '5.2560', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126443, '2022-10-18', 2287, 119494, 7077, 29630, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '51.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126444, '2022-10-18', 2293, 119495, 7077, NULL, '3.0000', '1.1118', '1.1118', '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 (126445, '2022-10-18', 2823, 119496, 7077, 64799, '1.0000', '41.7600', '41.7600', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126446, '2022-10-18', 1529, 119497, 7078, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126447, '2022-10-18', 1912, 119498, 7078, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126448, '2022-10-18', 2302, 119499, 7078, 64584, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126449, '2022-10-18', 1910, 119500, 7078, NULL, '1.0000', '0.5756', '0.5756', '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 (126450, '2022-10-18', 2384, 119501, 7078, NULL, '2.0000', '-312.4992', '-312.4992', '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 (126451, '2022-10-18', 2275, 119502, 7078, NULL, '1.0000', '-26.2984', '-26.2984', '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 (126452, '2022-10-18', 9735, 119503, 7078, 64836, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126453, '2022-10-18', 2315, 119504, 7078, NULL, '1.0000', '0.7700', '0.7700', '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 (126454, '2022-10-18', 1501, 119505, 7078, NULL, '1.0000', '-2.2016', '-2.2016', '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 (126455, '2022-10-18', 2315, 119506, 7078, NULL, '1.0000', '0.7700', '0.7700', '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 (126456, '2022-10-18', 2441, 119507, 7078, 61256, '1.0000', '12.9756', '12.9756', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 522);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126457, '2022-10-18', 1863, 119508, 7078, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '92.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126458, '2022-10-18', 2643, 119509, 7078, 64753, '1.0000', '1.1301', '1.1301', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126459, '2022-10-18', 2384, 119510, 7078, NULL, '2.0000', '-312.4992', '-312.4992', '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 (126460, '2022-10-18', 7867, 119511, 7078, NULL, '1.0000', '2.7700', '2.7700', '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 (126461, '2022-10-18', 2948, 119512, 7078, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126462, '2022-10-18', 1704, 119513, 7078, NULL, '1.0000', '32.8000', '32.8000', '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 (126463, '2022-10-18', 2088, 119514, 7079, 64601, '1.0000', '2.9062', '2.9062', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126464, '2022-10-18', 1585, 119515, 7079, 64872, '1.0000', '10.2667', '10.2667', '15.0000', '15.0000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126465, '2022-10-18', 2169, 119516, 7079, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126466, '2022-10-18', 2315, 119517, 7080, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126467, '2022-10-18', 2284, 119518, 7080, 61775, '1.0000', '1.5305', '1.5305', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126468, '2022-10-18', 8085, 119519, 7080, NULL, '2.0000', '-30.0931', '-30.0931', '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 (126469, '2022-10-18', 7967, 119520, 7080, 63898, '1.0000', '7.3483', '7.3483', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126470, '2022-10-18', 7411, 119521, 7080, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126471, '2022-10-18', 9274, 119522, 7080, 63913, '1.0000', '5.5787', '5.5787', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126472, '2022-10-18', 7411, 119523, 7080, 64385, '2.0000', '1.4956', '1.4956', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126473, '2022-10-18', 7402, 119524, 7080, 61925, '1.0000', '18.9416', '18.9416', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126474, '2022-10-18', 7593, 119525, 7080, 63927, '1.0000', '3.1830', '3.1830', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126475, '2022-10-18', 8765, 119526, 7080, 62516, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126476, '2022-10-18', 8714, 119527, 7080, 63937, '1.0000', '5.5215', '5.5215', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126477, '2022-10-18', 9329, 119528, 7080, 64948, '1.0000', '-2610.4501', '-2610.4501', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126478, '2022-10-18', 9092, 119529, 7080, 64935, '3.0000', '0.4265', '0.4265', '1.0000', '1.0000', '177.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126479, '2022-10-18', 7592, 119530, 7080, 59395, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126480, '2022-10-18', 7411, 119531, 7080, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126481, '2022-10-18', 9028, 119532, 7080, NULL, '1.0000', '5.6880', '5.6880', '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 (126482, '2022-10-18', 9880, 119533, 7080, 60163, '1.0000', '4.8799', '4.8799', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126483, '2022-10-18', 10027, 119534, 7080, 62555, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 542);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126484, '2022-10-18', 7674, 119535, 7080, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126485, '2022-10-18', 9734, 119536, 7080, 61746, '1.0000', '0.3316', '0.3316', '0.7000', '0.7000', '161.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126486, '2022-10-18', 7460, 119537, 7080, 64885, '3.0000', '86.2357', '86.2357', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126487, '2022-10-18', 9956, 119538, 7080, 64404, '1.0000', '16.9935', '16.9935', '24.2900', '24.2900', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126488, '2022-10-18', 2544, 119539, 7080, NULL, '1.0000', '6.8800', '6.8800', '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 (126489, '2022-10-18', 1541, 119540, 7080, NULL, '1.0000', '15.1124', '15.1124', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126490, '2022-10-18', 8077, 119541, 7080, 64918, '1.0000', '6.7350', '6.7350', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126491, '2022-10-18', 9980, 119542, 7080, 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 (126492, '2022-10-18', 2270, 119543, 7080, NULL, '1.0000', '2.5000', '2.5000', '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 (126493, '2022-10-18', 7612, 119544, 7080, NULL, '1.0000', '2.3846', '2.3846', '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 (126494, '2022-10-18', 9952, 119545, 7080, 57647, '1.0000', '9.2600', '9.2600', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126495, '2022-10-18', 7886, 119546, 7080, 63876, '1.0000', '4.9536', '4.9536', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126496, '2022-10-18', 7713, 119547, 7080, 50666, '4.0000', '0.3910', '0.3910', '0.6000', '0.6000', '69.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126497, '2022-10-18', 8359, 119548, 7080, 64373, '1.0000', '153.7587', '153.7587', '20.5000', '20.5000', '5.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126498, '2022-10-18', 9272, 119549, 7080, NULL, '1.0000', '3.1206', '3.1206', '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 (126499, '2022-10-18', 7457, 119550, 7080, 64894, '1.0000', '5.5337', '5.5337', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126500, '2022-10-18', 9741, 119551, 7080, 64909, '1.0000', '7.7626', '7.7626', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126501, '2022-10-18', 8596, 119552, 7080, NULL, '2.0000', '71.0634', '71.0634', '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 (126502, '2022-10-18', 1935, 119553, 7080, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '73.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126503, '2022-10-18', 2315, 119554, 7080, 64405, '1.0000', '0.7662', '0.7662', '1.0000', '1.0000', '92.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126504, '2022-10-18', 8444, 119555, 7080, 55973, '1.0000', '-37.8763', '-37.8763', '3.5000', '3.5000', '84.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126505, '2022-10-18', 7674, 119556, 7080, 61832, '1.0000', '46.3674', '46.3674', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126506, '2022-10-18', 7317, 119557, 7080, 64236, '1.0000', '15.9122', '15.9122', '23.0000', '23.0000', '7.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126507, '2022-10-18', 2656, 119558, 7080, 64105, '1.0000', '1.7467', '1.7467', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126508, '2022-10-18', 7819, 119559, 7080, 63914, '1.0000', '12.8990', '12.8990', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126509, '2022-10-18', 9729, 119560, 7080, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126510, '2022-10-18', 9092, 119561, 7080, 64935, '1.0000', '0.4265', '0.4265', '1.0000', '1.0000', '179.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126511, '2022-10-18', 7730, 119562, 7080, 64095, '5.0000', '0.1254', '0.1254', '0.2000', '0.2000', '91.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126512, '2022-10-18', 7456, 119563, 7080, 64241, '1.0000', '40.0888', '40.0888', '62.5000', '62.5000', '1.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126513, '2022-10-18', 7316, 119564, 7080, 64888, '10.0000', '0.9705', '0.9705', '1.5000', '1.5000', '80.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126514, '2022-10-18', 9456, 119565, 7080, 61948, '1.0000', '3.4963', '3.4963', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126515, '2022-10-18', 8730, 119566, 7080, 64093, '1.0000', '30.5000', '30.5000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126516, '2022-10-18', 7317, 119567, 7080, 64236, '2.0000', '15.9122', '15.9122', '23.0000', '23.0000', '6.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126517, '2022-10-18', 7385, 119568, 7080, 64401, '5.0000', '5.1760', '5.1760', '4.5000', '4.5000', '56.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126518, '2022-10-18', 9399, 119569, 7080, 64374, '1.0000', '0.9758', '0.9758', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126519, '2022-10-18', 8135, 119570, 7080, 63866, '1.0000', '4.1634', '4.1634', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126520, '2022-10-18', 8203, 119571, 7080, 57407, '3.0000', '2.0908', '2.0908', '0.7000', '0.7000', '2.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126521, '2022-10-18', 2965, 119572, 7080, 62517, '1.0000', '3.0721', '3.0721', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126522, '2022-10-18', 1409, 119573, 7080, 46202, '1.0000', '13.5961', '13.5961', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126523, '2022-10-18', 8134, 119574, 7080, 63864, '1.0000', '5.0564', '5.0564', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126524, '2022-10-18', 7593, 119575, 7080, 63927, '1.0000', '3.1830', '3.1830', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126525, '2022-10-18', 2315, 119576, 7080, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126526, '2022-10-18', 9750, 119577, 7081, NULL, '1.0000', '2.3934', '2.3934', '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 (126527, '2022-10-18', 2287, 119578, 7081, 29630, '4.0000', '2.3233', '2.3233', '4.5000', '4.5000', '47.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126528, '2022-10-18', 8482, 119579, 7081, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '15.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126529, '2022-10-18', 2948, 119580, 7081, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '48.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126530, '2022-10-18', 1711, 119581, 7081, 62855, '1.0000', '11.0087', '11.0087', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126531, '2022-10-18', 2242, 119582, 7081, NULL, '3.0000', '1.2664', '1.2664', '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 (126532, '2022-10-18', 9953, 119583, 7082, 64793, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126533, '2022-10-18', 8482, 119584, 7082, 64077, '1.0000', '18.0579', '18.0579', '24.0000', '24.0000', '14.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126534, '2022-10-18', 2616, 119585, 7082, 59597, '6.0000', '3.3750', '3.3750', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126535, '2022-10-18', 2384, 119586, 7082, NULL, '2.0000', '-312.4992', '-312.4992', '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 (126536, '2022-10-18', 8017, 119587, 7082, 64594, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126537, '2022-10-18', 9856, 119588, 7083, NULL, '1.0000', '12.8500', '12.8500', '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 (126538, '2022-10-18', 2948, 119589, 7083, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '47.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126539, '2022-10-18', 2275, 119590, 7083, NULL, '2.0000', '-26.2984', '-26.2984', '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 (126540, '2022-10-18', 9092, 119591, 7084, 64935, '1.0000', '0.4265', '0.4265', '1.0000', '1.0000', '175.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126541, '2022-10-18', 8269, 119592, 7084, NULL, '1.0000', '24.0600', '24.0600', '50.5000', '50.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126542, '2022-10-18', 7703, 119593, 7084, NULL, '2.0000', '-4961.0093', '-4961.0093', '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 (126543, '2022-10-18', 9734, 119594, 7084, 61746, '3.0000', '0.3316', '0.3316', '0.7000', '0.7000', '158.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126544, '2022-10-18', 9783, 119595, 7084, 60781, '1.0000', '19.5206', '19.5206', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126545, '2022-10-18', 2945, 119596, 7084, 54509, '1.0000', '9.4166', '9.4166', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 460);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126546, '2022-10-18', 8059, 119597, 7084, 60809, '1.0000', '8.7000', '8.7000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126547, '2022-10-18', 7640, 119598, 7084, 62314, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126548, '2022-10-18', 7961, 119599, 7084, 59393, '1.0000', '13.2000', '13.2000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126549, '2022-10-18', 2165, 119600, 7084, NULL, '1.0000', '18.0000', '18.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 (126550, '2022-10-18', 9177, 119601, 7084, 61839, '10.0000', '5.6559', '5.6559', '1.2000', '1.2000', '45.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126551, '2022-10-18', 7990, 119602, 7084, 59414, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126552, '2022-10-18', 2289, 119603, 7084, NULL, '4.0000', '4.0652', '4.0652', '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 (126553, '2022-10-18', 1722, 119604, 7084, 60171, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126554, '2022-10-18', 7889, 119605, 7084, NULL, '1.0000', '-8.6571', '-8.6571', '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 (126555, '2022-10-18', 7981, 119606, 7085, 62318, '10.0000', '1.0378', '1.0378', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126556, '2022-10-18', 2016, 119607, 7086, 63826, '1.0000', '10.0889', '10.0889', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126557, '2022-10-18', 10038, 119608, 7086, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '21.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126558, '2022-10-18', 1863, 119609, 7086, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126559, '2022-10-18', 9895, 119610, 7086, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126560, '2022-10-18', 2821, 119611, 7086, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126561, '2022-10-18', 7608, 119612, 7086, NULL, '1.0000', '6.9800', '6.9800', '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 (126562, '2022-10-18', 1961, 119613, 7086, 60069, '1.0000', '20.4212', '20.4212', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126563, '2022-10-18', 1689, 119614, 7086, 63961, '1.0000', '14.6124', '14.6124', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126564, '2022-10-18', 1935, 119615, 7086, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126565, '2022-10-18', 2238, 119616, 7086, 55772, '1.0000', '50.7716', '50.7716', '73.0000', '73.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126566, '2022-10-18', 1371, 119617, 7086, 41971, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126567, '2022-10-18', 2643, 119618, 7086, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126568, '2022-10-18', 7917, 119619, 7086, NULL, '20.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (126569, '2022-10-18', 7585, 119620, 7086, NULL, '1.0000', '4.2400', '4.2400', '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 (126570, '2022-10-18', 9917, 119621, 7086, NULL, '1.0000', '1.2300', '1.2300', '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 (126571, '2022-10-18', 7753, 119622, 7086, 64548, '1.0000', '10.3067', '10.3067', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126572, '2022-10-18', 7758, 119623, 7086, NULL, '1.0000', '10.8500', '10.8500', '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 (126573, '2022-10-18', 2965, 119624, 7086, 60919, '1.0000', '5.1669', '5.1669', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126574, '2022-10-18', 1841, 119625, 7086, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '76.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126575, '2022-10-18', 1840, 119626, 7086, 62749, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '81.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126576, '2022-10-18', 7411, 119627, 7086, NULL, '2.0000', '1.5882', '1.5882', '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 (126577, '2022-10-18', 9813, 119628, 7086, NULL, '2.0000', '1.4900', '1.4900', '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 (126578, '2022-10-18', 2643, 119629, 7086, 63814, '1.0000', '1.0660', '1.0660', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126579, '2022-10-18', 2858, 119630, 7086, 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 (126580, '2022-10-18', 2068, 119631, 7086, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '5.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126581, '2022-10-18', 1863, 119632, 7086, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '109.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126582, '2022-10-18', 9750, 119633, 7086, 62791, '1.0000', '3.5706', '3.5706', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126583, '2022-10-18', 2544, 119634, 7086, 11020, '1.0000', '6.8800', '6.8800', '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 (126584, '2022-10-18', 8482, 119635, 7086, 64536, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '5.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126585, '2022-10-18', 1602, 119636, 7086, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '10.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126586, '2022-10-18', 2850, 119637, 7086, 61696, '1.0000', '7.4451', '7.4451', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126587, '2022-10-18', 1855, 119638, 7086, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126588, '2022-10-18', 1580, 119639, 7086, 61669, '5.0000', '1.3143', '1.3143', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126589, '2022-10-18', 9747, 119640, 7086, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126590, '2022-10-18', 2262, 119641, 7086, 62196, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126591, '2022-10-18', 1789, 119642, 7086, 4928, '1.0000', '90.0000', '90.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 (126592, '2022-10-18', 7368, 119643, 7086, NULL, '1.0000', '14.7500', '14.7500', '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 (126593, '2022-10-18', 1935, 119644, 7086, 63142, '1.0000', '1.1937', '1.1937', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 543);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126594, '2022-10-18', 1839, 119645, 7086, 64967, '1.0000', '8.2138', '8.2138', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126595, '2022-10-18', 2250, 119646, 7086, 64533, '1.0000', '8.7271', '8.7271', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126596, '2022-10-19', 1743, 119647, 7087, NULL, '1.0000', '3.5650', '3.5650', '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 (126597, '2022-10-19', 2100, 119648, 7087, NULL, '1.0000', '-4.4545', '-4.4545', '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 (126598, '2022-10-19', 1314, 119649, 7087, 64810, '1.0000', '2.2349', '2.2349', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126599, '2022-10-19', 2762, 119650, 7087, 64856, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126600, '2022-10-19', 9734, 119651, 7087, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '80.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126601, '2022-10-19', 2104, 119652, 7087, NULL, '2.0000', '0.2000', '0.2000', '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 (126602, '2022-10-19', 7412, 119653, 7087, NULL, '1.0000', '8.3200', '8.3200', '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 (126603, '2022-10-19', 2754, 119654, 7087, NULL, '1.0000', '0.0800', '0.0800', '0.2000', '0.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 (126604, '2022-10-19', 1837, 119655, 7087, 64827, '1.0000', '1.0120', '1.0120', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126605, '2022-10-19', 9695, 119656, 7087, 64768, '1.0000', '5.7018', '5.7018', '9.0000', '9.0000', '23.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126606, '2022-10-19', 9984, 119657, 7087, 64784, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126607, '2022-10-19', 1863, 119658, 7087, 64589, '9.0000', '1.5148', '1.5148', '2.5000', '2.5000', '83.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126608, '2022-10-19', 2302, 119659, 7087, 64584, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126609, '2022-10-19', 2275, 119660, 7087, NULL, '2.0000', '-26.2984', '-26.2984', '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 (126610, '2022-10-19', 9590, 119661, 7087, NULL, '1.0000', '5.7994', '5.7994', '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 (126611, '2022-10-19', 8740, 119662, 7087, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126612, '2022-10-19', 9783, 119663, 7087, 64035, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126613, '2022-10-19', 9734, 119664, 7087, 64835, '10.0000', '0.4609', '0.4609', '0.7000', '0.7000', '71.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126614, '2022-10-19', 8740, 119665, 7087, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126615, '2022-10-19', 9942, 119666, 7087, 64725, '1.0000', '12.7325', '12.7325', '18.0000', '18.0000', '11.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126616, '2022-10-19', 9734, 119667, 7087, 64835, '3.0000', '0.4609', '0.4609', '0.7000', '0.7000', '78.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126617, '2022-10-19', 2102, 119668, 7087, NULL, '1.0000', '-20.1000', '-20.1000', '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 (126618, '2022-10-19', 1446, 119669, 7087, NULL, '1.0000', '6.6040', '6.6040', '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 (126619, '2022-10-19', 1446, 119670, 7087, NULL, '1.0000', '6.6040', '6.6040', '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 (126620, '2022-10-19', 7586, 119671, 7087, NULL, '1.0000', '-3.1500', '-3.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 (126621, '2022-10-19', 2287, 119672, 7087, 29630, '2.0000', '2.3233', '2.3233', '4.5000', '4.5000', '45.0000', 1, 0, NULL, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126622, '2022-10-19', 7558, 119673, 7088, NULL, '20.0000', '1.9700', '1.9700', '4.5000', '4.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 (126623, '2022-10-19', 8979, 119674, 7089, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126624, '2022-10-19', 8133, 119675, 7089, NULL, '1.0000', '-229850.3865', '-229850.3865', '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 (126625, '2022-10-19', 9503, 119676, 7089, NULL, '1.0000', '240.6525', '240.6525', '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 (126626, '2022-10-19', 8979, 119677, 7089, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126627, '2022-10-19', 1863, 119678, 7089, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126628, '2022-10-19', 2656, 119679, 7089, 64751, '1.0000', '1.9693', '1.9693', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126629, '2022-10-19', 1337, 119680, 7089, NULL, '1.0000', '2.2000', '2.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 (126630, '2022-10-19', 1493, 119681, 7089, 64609, '1.0000', '38.1107', '38.1107', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126631, '2022-10-19', 1688, 119682, 7089, 62867, '1.0000', '23.7000', '23.7000', '31.5000', '31.5000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126632, '2022-10-19', 9856, 119683, 7089, NULL, '1.0000', '12.8500', '12.8500', '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 (126633, '2022-10-19', 8979, 119684, 7089, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '30.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126634, '2022-10-19', 1863, 119685, 7089, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '82.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126635, '2022-10-19', 9844, 119686, 7089, NULL, '2.0000', '2.5000', '2.5000', '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 (126636, '2022-10-19', 1671, 119687, 7089, 63416, '1.0000', '102.3591', '102.3591', '82.0000', '82.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126637, '2022-10-19', 8878, 119688, 7089, 64000, '2.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126638, '2022-10-19', 2816, 119689, 7089, NULL, '3.0000', '0.8000', '0.8000', '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 (126639, '2022-10-19', 2109, 119690, 7089, 64808, '1.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126640, '2022-10-19', 1837, 119691, 7089, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126641, '2022-10-19', 8979, 119692, 7090, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126642, '2022-10-19', 8017, 119693, 7090, 64594, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126643, '2022-10-19', 1639, 119694, 7090, 64054, '1.0000', '7.6530', '7.6530', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126644, '2022-10-19', 1837, 119695, 7090, 64827, '3.0000', '1.0120', '1.0120', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126645, '2022-10-19', 9734, 119696, 7090, 64835, '3.0000', '0.4609', '0.4609', '0.7000', '0.7000', '64.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126646, '2022-10-19', 10023, 119697, 7090, 62159, '1.0000', '1.9500', '1.9500', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126647, '2022-10-19', 9100, 119698, 7091, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126648, '2022-10-19', 7641, 119699, 7091, NULL, '1.0000', '1.9000', '1.9000', '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 (126649, '2022-10-19', 7490, 119700, 7091, NULL, '20.0000', '0.2300', '0.2300', '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 (126650, '2022-10-19', 1837, 119701, 7091, 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 (126651, '2022-10-19', 8878, 119702, 7091, NULL, '1.0000', '6.6700', '6.6700', '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 (126652, '2022-10-19', 7859, 119703, 7091, NULL, '1.0000', '12.6300', '12.6300', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126653, '2022-10-19', 8482, 119704, 7091, NULL, '2.0000', '2.9500', '2.9500', '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 (126654, '2022-10-19', 1337, 119705, 7091, 10809, '-37.0000', '2.0000', '2.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 (126655, '2022-10-19', 1337, 119705, 7091, NULL, '38.0000', '2.0000', '2.0000', '4.0000', '4.0000', '-38.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126656, '2022-10-19', 7317, 119706, 7091, NULL, '1.0000', '19.5500', '19.5500', '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 (126657, '2022-10-19', 2329, 119707, 7091, NULL, '5.0000', '30.1300', '30.1300', '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 (126658, '2022-10-19', 7431, 119708, 7091, NULL, '1.0000', '18.0000', '18.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 (126659, '2022-10-19', 2105, 119709, 7091, NULL, '1.0000', '1.3500', '1.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 (126660, '2022-10-19', 7411, 119710, 7091, NULL, '1.0000', '1.3500', '1.3500', '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 (126661, '2022-10-19', 8067, 119711, 7091, NULL, '1.0000', '4.6900', '4.6900', '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 (126662, '2022-10-19', 7606, 119712, 7091, NULL, '1.0000', '4.8600', '4.8600', '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 (126663, '2022-10-19', 1914, 119713, 7091, 5476, '3.0000', '4.9000', '4.9000', '8.0000', '8.0000', '0.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 (126664, '2022-10-19', 7779, 119714, 7091, NULL, '1.0000', '9.5000', '9.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 (126665, '2022-10-19', 1841, 119715, 7091, NULL, '2.0000', '142.5780', '142.5780', '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 (126666, '2022-10-19', 1840, 119716, 7091, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (126667, '2022-10-19', 7587, 119717, 7091, NULL, '1.0000', '6.4400', '6.4400', '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 (126668, '2022-10-19', 7318, 119718, 7091, NULL, '1.0000', '13.4400', '13.4400', '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 (126669, '2022-10-19', 8878, 119719, 7091, NULL, '1.0000', '6.6700', '6.6700', '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 (126670, '2022-10-19', 2315, 119720, 7091, 2735, '-723.0000', '0.3300', '0.3300', '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 (126671, '2022-10-19', 2315, 119720, 7091, NULL, '726.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-726.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126672, '2022-10-19', 7674, 119721, 7091, NULL, '1.0000', '1.3000', '1.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 (126673, '2022-10-19', 1935, 119722, 7091, 5586, '-223.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 (126674, '2022-10-19', 1935, 119722, 7091, NULL, '224.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-224.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126675, '2022-10-19', 7317, 119723, 7091, NULL, '1.0000', '19.5500', '19.5500', '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 (126676, '2022-10-19', 1845, 119724, 7091, 6222, '-39.0000', '19.5000', '19.5000', '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 (126677, '2022-10-19', 1845, 119724, 7091, NULL, '40.0000', '19.5000', '19.5000', '40.0000', '40.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 (126678, '2022-10-19', 8878, 119725, 7091, NULL, '1.0000', '6.6700', '6.6700', '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 (126679, '2022-10-19', 7703, 119726, 7091, NULL, '2.0000', '22.9900', '22.9900', '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 (126680, '2022-10-19', 7709, 119727, 7091, NULL, '2.0000', '3.5000', '3.5000', '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 (126681, '2022-10-19', 7433, 119728, 7091, 33802, '12.0000', '4.6000', '4.6000', '6.5000', '6.5000', '16.0000', 1, 0, NULL, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126682, '2022-10-19', 2948, 119729, 7092, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126683, '2022-10-19', 2730, 119730, 7092, 63990, '1.0000', '2.2167', '2.2167', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126684, '2022-10-19', 10037, 119731, 7092, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126685, '2022-10-19', 2948, 119732, 7092, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '46.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126686, '2022-10-19', 2237, 119733, 7092, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126687, '2022-10-19', 8765, 119734, 7093, 64766, '1.0000', '4.0080', '4.0080', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126688, '2022-10-19', 8979, 119735, 7093, 63478, '1.0000', '0.9698', '0.9698', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126689, '2022-10-19', 7921, 119736, 7094, NULL, '1.0000', '0.3000', '0.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 (126690, '2022-10-19', 2734, 119737, 7094, 19311, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '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 (126691, '2022-10-19', 2063, 119738, 7094, 2169, '-5.0000', '1.9900', '1.9900', '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 (126692, '2022-10-19', 2063, 119738, 7094, NULL, '6.0000', '1.9900', '1.9900', '5.5000', '5.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 (126693, '2022-10-19', 7803, 119739, 7094, NULL, '1.0000', '1.8200', '1.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 (126694, '2022-10-19', 7819, 119740, 7094, NULL, '1.0000', '9.5000', '9.5000', '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 (126695, '2022-10-19', 7431, 119741, 7094, NULL, '1.0000', '18.0000', '18.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 (126696, '2022-10-19', 7317, 119742, 7094, NULL, '1.0000', '19.5500', '19.5500', '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 (126697, '2022-10-19', 7666, 119743, 7094, NULL, '1.0000', '3.6000', '3.6000', '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 (126698, '2022-10-19', 2285, 119744, 7095, 2945, '-60.0000', '35.8000', '35.8000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126699, '2022-10-19', 2285, 119744, 7095, NULL, '61.0000', '35.8000', '35.8000', '80.0000', '80.0000', '-61.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126700, '2022-10-19', 2315, 119745, 7095, 2735, '-726.0000', '0.3300', '0.3300', '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 (126701, '2022-10-19', 2315, 119745, 7095, NULL, '729.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-729.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126702, '2022-10-19', 9740, 119746, 7095, NULL, '1.0000', '0.6600', '0.6600', '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 (126703, '2022-10-19', 9747, 119747, 7095, NULL, '4.0000', '0.6500', '0.6500', '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 (126704, '2022-10-19', 7411, 119748, 7095, NULL, '2.0000', '1.3500', '1.3500', '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 (126705, '2022-10-19', 2237, 119749, 7095, 2781, '-91.0000', '1.0600', '1.0600', '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 (126706, '2022-10-19', 2237, 119749, 7095, NULL, '92.0000', '1.0600', '1.0600', '2.5000', '2.5000', '-92.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126707, '2022-10-19', 2506, 119750, 7095, 16244, '-52.0000', '3.4900', '3.4900', '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 (126708, '2022-10-19', 2506, 119750, 7095, NULL, '53.0000', '3.4900', '3.4900', '8.0000', '8.0000', '-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 (126709, '2022-10-19', 7474, 119751, 7095, NULL, '1.0000', '67.6200', '67.6200', '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 (126710, '2022-10-19', 1912, 119752, 7095, 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 (126711, '2022-10-19', 9167, 119753, 7095, NULL, '1.0000', '13.3000', '13.3000', '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 (126712, '2022-10-19', 9213, 119754, 7095, NULL, '1.0000', '5.4000', '5.4000', '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 (126713, '2022-10-19', 2296, 119755, 7095, 2955, '-7.0000', '13.2900', '13.2900', '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 (126714, '2022-10-19', 2296, 119755, 7095, NULL, '9.0000', '13.2900', '13.2900', '24.0000', '24.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 (126715, '2022-10-19', 1432, 119756, 7095, NULL, '2.0000', '8.1574', '8.1574', '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 (126716, '2022-10-19', 7411, 119757, 7095, NULL, '1.0000', '1.3500', '1.3500', '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 (126717, '2022-10-19', 1935, 119758, 7095, 5586, '-224.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 (126718, '2022-10-19', 1935, 119758, 7095, NULL, '225.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-225.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126719, '2022-10-19', 1383, 119759, 7095, NULL, '1.0000', '47.4000', '47.4000', '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 (126720, '2022-10-19', 7411, 119760, 7095, NULL, '4.0000', '1.3500', '1.3500', '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 (126721, '2022-10-19', 2392, 119761, 7095, 4199, '-1.0000', '3.7000', '3.7000', '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 (126722, '2022-10-19', 2392, 119761, 7095, NULL, '2.0000', '3.7000', '3.7000', '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 (126723, '2022-10-19', 2379, 119762, 7095, 4032, '-81.0000', '1.5900', '1.5900', '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 (126724, '2022-10-19', 2379, 119762, 7095, NULL, '82.0000', '1.5900', '1.5900', '4.5000', '4.5000', '-82.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126725, '2022-10-19', 1519, 119763, 7095, NULL, '1.0000', '3.3500', '3.3500', '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 (126726, '2022-10-19', 1450, 119764, 7095, 5570, '-66.0000', '61.1074', '61.1074', '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 (126727, '2022-10-19', 1450, 119764, 7095, NULL, '76.0000', '61.1074', '61.1074', '1.2000', '1.2000', '-76.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126728, '2022-10-19', 7593, 119765, 7095, NULL, '1.0000', '2.4500', '2.4500', '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 (126729, '2022-10-19', 9458, 119766, 7096, 48030, '1.0000', '1.8000', '1.8000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 346);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126730, '2022-10-19', 9980, 119767, 7096, NULL, '2.0000', '4.6000', '4.6000', '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 (126731, '2022-10-19', 9982, 119768, 7096, 61822, '2.0000', '11.0000', '11.0000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126732, '2022-10-19', 9913, 119769, 7096, 64927, '1.0000', '13.6400', '13.6400', '19.0000', '19.0000', '1.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126733, '2022-10-19', 2289, 119770, 7096, NULL, '2.0000', '4.0652', '4.0652', '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 (126734, '2022-10-19', 1841, 119771, 7096, 61751, '1.0000', '0.1461', '0.1461', '0.5000', '0.5000', '39.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126735, '2022-10-19', 1855, 119772, 7096, 61776, '1.0000', '1.4852', '1.4852', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126736, '2022-10-19', 8417, 119773, 7096, 61952, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126737, '2022-10-19', 8657, 119774, 7096, 64916, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126738, '2022-10-19', 7777, 119775, 7096, NULL, '1.0000', '-12.0600', '-12.0600', '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 (126739, '2022-10-19', 8269, 119776, 7096, NULL, '1.0000', '24.0600', '24.0600', '50.5000', '50.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126740, '2022-10-19', 8878, 119777, 7096, 64386, '2.0000', '0.7033', '0.7033', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126741, '2022-10-19', 8949, 119778, 7096, 64088, '1.0000', '7.5301', '7.5301', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126742, '2022-10-19', 9984, 119779, 7096, 64282, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126743, '2022-10-19', 2289, 119780, 7096, NULL, '3.0000', '4.0652', '4.0652', '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 (126744, '2022-10-19', 7784, 119781, 7096, 63931, '1.0000', '5.5320', '5.5320', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126745, '2022-10-19', 8127, 119782, 7096, NULL, '1.0000', '24.5300', '24.5300', '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 (126746, '2022-10-19', 2289, 119783, 7096, NULL, '4.0000', '4.0652', '4.0652', '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 (126747, '2022-10-19', 10018, 119784, 7096, 61953, '1.0000', '0.8500', '0.8500', '1.2000', '1.2000', '36.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126748, '2022-10-19', 9092, 119785, 7096, 64935, '1.0000', '0.4265', '0.4265', '1.0000', '1.0000', '174.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126749, '2022-10-19', 9865, 119786, 7096, 61728, '1.0000', '8.0234', '8.0234', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126750, '2022-10-19', 8666, 119787, 7096, 64104, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126751, '2022-10-19', 7657, 119788, 7096, 63874, '1.0000', '14.8211', '14.8211', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126752, '2022-10-19', 7889, 119789, 7096, NULL, '2.0000', '-8.6571', '-8.6571', '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 (126753, '2022-10-19', 7473, 119790, 7096, 64899, '10.0000', '0.5464', '0.5464', '0.8000', '0.8000', '105.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126754, '2022-10-19', 8269, 119791, 7096, NULL, '1.0000', '24.0600', '24.0600', '50.5000', '50.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126755, '2022-10-19', 3076, 119792, 7096, 53616, '1.0000', '5.2000', '5.2000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 447);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126756, '2022-10-19', 8456, 119793, 7096, 61937, '1.0000', '8.6291', '8.6291', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126757, '2022-10-19', 7753, 119794, 7096, 65014, '1.0000', '3.7461', '3.7461', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126758, '2022-10-19', 2656, 119795, 7096, 64105, '2.0000', '1.7467', '1.7467', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126759, '2022-10-19', 8539, 119796, 7096, 64270, '2.0000', '1.8089', '1.8089', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126760, '2022-10-19', 7547, 119797, 7096, NULL, '4.0000', '-0.3235', '-0.3235', '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 (126761, '2022-10-19', 9209, 119798, 7096, 64254, '1.0000', '4.8983', '4.8983', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126762, '2022-10-19', 1532, 119799, 7097, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126763, '2022-10-19', 8979, 119800, 7097, 65045, '1.0000', '0.9763', '0.9763', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126764, '2022-10-19', 1910, 119801, 7097, NULL, '1.0000', '0.5756', '0.5756', '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 (126765, '2022-10-19', 2315, 119802, 7097, NULL, '1.0000', '0.7700', '0.7700', '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 (126766, '2022-10-19', 9995, 119803, 7097, 62382, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126767, '2022-10-19', 1787, 119804, 7097, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126768, '2022-10-19', 1837, 119805, 7097, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126769, '2022-10-19', 1711, 119806, 7097, 59608, '1.0000', '11.0087', '11.0087', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126770, '2022-10-19', 2948, 119807, 7097, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '43.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126771, '2022-10-19', 2169, 119808, 7097, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126772, '2022-10-19', 1602, 119809, 7097, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '32.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126773, '2022-10-19', 2169, 119810, 7097, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126774, '2022-10-19', 2259, 119811, 7097, 64576, '1.0000', '26.9697', '26.9697', '38.5000', '38.5000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126775, '2022-10-19', 8079, 119812, 7097, NULL, '1.0000', '17.4827', '17.4827', '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 (126776, '2022-10-19', 1342, 119813, 7097, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126777, '2022-10-19', 1839, 119814, 7097, NULL, '1.0000', '-4848982.4095', '-4848982.4095', '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 (126778, '2022-10-19', 2656, 119815, 7097, 65026, '2.0000', '2.0366', '2.0366', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126779, '2022-10-19', 8740, 119816, 7097, 63480, '1.0000', '2.0585', '2.0585', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126780, '2022-10-19', 9311, 119817, 7097, NULL, '1.0000', '9.8625', '9.8625', '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 (126781, '2022-10-19', 8208, 119818, 7097, NULL, '2.0000', '63.9119', '63.9119', '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 (126782, '2022-10-19', 2169, 119819, 7097, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126783, '2022-10-19', 2740, 119820, 7097, 60236, '1.0000', '11.2413', '11.2413', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126784, '2022-10-19', 2293, 119821, 7097, NULL, '3.0000', '1.1118', '1.1118', '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 (126785, '2022-10-19', 2315, 119822, 7097, NULL, '1.0000', '0.7700', '0.7700', '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 (126786, '2022-10-19', 1501, 119823, 7097, NULL, '1.0000', '-2.2016', '-2.2016', '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 (126787, '2022-10-19', 1812, 119824, 7097, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126788, '2022-10-19', 2302, 119825, 7097, 64584, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126789, '2022-10-19', 1666, 119826, 7097, 64787, '1.0000', '3.2073', '3.2073', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126790, '2022-10-19', 1935, 119827, 7097, 64832, '2.0000', '0.9044', '0.9044', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126791, '2022-10-19', 2242, 119828, 7097, NULL, '3.0000', '1.2664', '1.2664', '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 (126792, '2022-10-19', 1812, 119829, 7097, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126793, '2022-10-19', 2948, 119830, 7097, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '44.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126794, '2022-10-19', 8595, 119831, 7097, NULL, '1.0000', '-26.0029', '-26.0029', '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 (126795, '2022-10-19', 2284, 119832, 7097, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126796, '2022-10-19', 2259, 119833, 7097, 64576, '1.0000', '26.9697', '26.9697', '38.5000', '38.5000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126797, '2022-10-19', 1772, 119834, 7097, 64733, '1.0000', '6.9767', '6.9767', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126798, '2022-10-19', 1314, 119835, 7097, 64810, '1.0000', '2.2349', '2.2349', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126799, '2022-10-19', 7520, 119836, 7097, NULL, '1.0000', '9.6000', '9.6000', '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 (126800, '2022-10-19', 9695, 119837, 7097, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126801, '2022-10-19', 9945, 119838, 7097, NULL, '1.0000', '12.1000', '12.1000', '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 (126802, '2022-10-19', 2637, 119839, 7097, 62166, '1.0000', '22.0000', '22.0000', '18.5000', '18.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126803, '2022-10-19', 2169, 119840, 7097, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126804, '2022-10-19', 1637, 119841, 7097, 64074, '1.0000', '23.4218', '23.4218', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126805, '2022-10-19', 1532, 119842, 7097, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126806, '2022-10-19', 9878, 119843, 7097, NULL, '1.0000', '9.6000', '9.6000', '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 (126807, '2022-10-19', 3029, 119844, 7097, 64854, '1.0000', '-21.9670', '-21.9670', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126808, '2022-10-19', 1446, 119845, 7097, NULL, '1.0000', '6.6040', '6.6040', '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 (126809, '2022-10-19', 8235, 119846, 7097, NULL, '1.0000', '7.0000', '7.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 (126810, '2022-10-19', 9741, 119847, 7097, NULL, '1.0000', '7.8500', '7.8500', '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 (126811, '2022-10-19', 8717, 119848, 7097, NULL, '1.0000', '4.7000', '4.7000', '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 (126812, '2022-10-19', 7453, 119849, 7097, NULL, '1.0000', '21.6500', '21.6500', '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 (126813, '2022-10-19', 7454, 119850, 7097, NULL, '1.0000', '57.7600', '57.7600', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126814, '2022-10-19', 2284, 119851, 7097, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126815, '2022-10-19', 8979, 119852, 7097, 65045, '2.0000', '0.9763', '0.9763', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126816, '2022-10-19', 1440, 119853, 7097, 62401, '1.0000', '12.1795', '12.1795', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126817, '2022-10-19', 8170, 119854, 7097, 64599, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126818, '2022-10-19', 10038, 119855, 7097, 62839, '2.0000', '2.9700', '2.9700', '4.0000', '4.0000', '10.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126819, '2022-10-19', 2379, 119856, 7097, NULL, '1.0000', '-154.5325', '-154.5325', '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 (126820, '2022-10-19', 2315, 119857, 7097, NULL, '1.0000', '0.7700', '0.7700', '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 (126821, '2022-10-19', 2169, 119858, 7097, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126822, '2022-10-19', 7784, 119859, 7098, 63931, '1.0000', '5.5320', '5.5320', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126823, '2022-10-19', 7954, 119860, 7098, NULL, '2.0000', '-133727.7176', '-133727.7176', '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 (126824, '2022-10-19', 7641, 119861, 7098, 65017, '1.0000', '7.8988', '7.8988', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126825, '2022-10-19', 7444, 119862, 7098, 65003, '1.0000', '3.9102', '3.9102', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126826, '2022-10-19', 8127, 119863, 7098, NULL, '1.0000', '24.5300', '24.5300', '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 (126827, '2022-10-19', 2069, 119864, 7098, 61798, '2.0000', '7.9134', '7.9134', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126828, '2022-10-19', 7473, 119865, 7098, 64899, '2.0000', '0.5464', '0.5464', '0.8000', '0.8000', '103.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126829, '2022-10-19', 7382, 119866, 7098, 61844, '2.0000', '8.9452', '8.9452', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126830, '2022-10-19', 7918, 119867, 7098, 64933, '1.0000', '7.7144', '7.7144', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126831, '2022-10-19', 9272, 119868, 7098, NULL, '1.0000', '3.1206', '3.1206', '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 (126832, '2022-10-19', 7780, 119869, 7098, 63912, '1.0000', '15.9431', '15.9431', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126833, '2022-10-19', 9729, 119870, 7098, 60467, '2.0000', '0.6200', '0.6200', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126834, '2022-10-19', 9734, 119871, 7098, 61746, '1.0000', '0.3316', '0.3316', '0.7000', '0.7000', '157.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126835, '2022-10-19', 7385, 119872, 7098, 65021, '1.0000', '4.9834', '4.9834', '4.5000', '4.5000', '59.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126836, '2022-10-19', 7715, 119873, 7098, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126837, '2022-10-19', 8878, 119874, 7098, 64386, '2.0000', '0.7033', '0.7033', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126838, '2022-10-19', 8395, 119875, 7098, 57204, '1.0000', '0.6130', '0.6130', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 494);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126839, '2022-10-19', 2795, 119876, 7098, NULL, '1.0000', '35.5800', '35.5800', '70.0000', '70.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126840, '2022-10-19', 7523, 119877, 7098, 63859, '1.0000', '12.0963', '12.0963', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126841, '2022-10-19', 9971, 119878, 7098, NULL, '1.0000', '5.8300', '5.8300', '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 (126842, '2022-10-19', 7630, 119879, 7098, 59310, '1.0000', '4.5400', '4.5400', '4.5000', '4.5000', '26.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126843, '2022-10-19', 7518, 119880, 7098, 65012, '1.0000', '9.9967', '9.9967', '14.5000', '14.5000', '19.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126844, '2022-10-19', 1904, 119881, 7099, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '91.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126845, '2022-10-19', 7736, 119882, 7099, 65008, '1.0000', '26.1127', '26.1127', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126846, '2022-10-19', 9202, 119883, 7099, NULL, '1.0000', '2.1700', '2.1700', '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 (126847, '2022-10-19', 7482, 119884, 7099, 63869, '1.0000', '4.8628', '4.8628', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126848, '2022-10-19', 9695, 119885, 7100, 63134, '1.0000', '5.8148', '5.8148', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 547);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126849, '2022-10-19', 1602, 119886, 7100, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126850, '2022-10-19', 8881, 119887, 7100, 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 (126851, '2022-10-19', 2277, 119888, 7100, 63403, '2.0000', '0.4620', '0.4620', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126852, '2022-10-19', 2169, 119889, 7100, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126853, '2022-10-19', 7530, 119890, 7100, 58640, '1.0000', '7.7000', '7.7000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126854, '2022-10-19', 1585, 119891, 7100, 64499, '1.0000', '10.2212', '10.2212', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126855, '2022-10-19', 1857, 119892, 7100, 55779, '1.0000', '-4.6298', '-4.6298', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126856, '2022-10-19', 2352, 119893, 7100, 64299, '2.0000', '58.6246', '58.6246', '4.5000', '4.5000', '42.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126857, '2022-10-19', 2315, 119894, 7100, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126858, '2022-10-19', 7741, 119895, 7100, 58791, '1.0000', '3.4144', '3.4144', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126859, '2022-10-19', 2355, 119896, 7100, 55885, '1.0000', '94.0200', '94.0200', '124.0000', '124.0000', '0.0000', 1, 0, NULL, 482);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126860, '2022-10-19', 2270, 119897, 7100, 62269, '1.0000', '4.1408', '4.1408', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126861, '2022-10-19', 2239, 119898, 7100, 3068, '2.0000', '37.9600', '37.9600', '49.5000', '49.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 (126862, '2022-10-19', 1667, 119899, 7100, 61689, '1.0000', '18.3282', '18.3282', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126863, '2022-10-19', 9275, 119900, 7100, 61624, '1.0000', '2.7780', '2.7780', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126864, '2022-10-19', 1812, 119901, 7100, 64964, '1.0000', '9.1804', '9.1804', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126865, '2022-10-19', 1574, 119902, 7100, 45115, '7.0000', '39.2960', '39.2960', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126866, '2022-10-19', 7411, 119903, 7100, NULL, '1.0000', '1.5882', '1.5882', '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 (126867, '2022-10-19', 2769, 119904, 7100, 64561, '3.0000', '2.2279', '2.2279', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126868, '2022-10-19', 2413, 119905, 7100, 54395, '1.0000', '1.1122', '1.1122', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126869, '2022-10-19', 1326, 119906, 7100, 64539, '1.0000', '3.9153', '3.9153', '6.5000', '6.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126870, '2022-10-19', 9813, 119907, 7100, NULL, '2.0000', '1.4900', '1.4900', '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 (126871, '2022-10-19', 2858, 119908, 7100, 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 (126872, '2022-10-19', 7825, 119909, 7100, NULL, '1.0000', '6.5000', '6.5000', '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 (126873, '2022-10-19', 2277, 119910, 7100, 63403, '2.0000', '0.4620', '0.4620', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126874, '2022-10-19', 2277, 119910, 7100, 56888, '1.0000', '0.4620', '0.4620', '1.5000', '1.5000', '100.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126875, '2022-10-19', 2315, 119911, 7100, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126876, '2022-10-19', 7756, 119912, 7100, NULL, '1.0000', '26.9296', '26.9296', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126877, '2022-10-19', 1310, 119913, 7100, 63975, '1.0000', '0.4152', '0.4152', '0.6000', '0.6000', '49.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126878, '2022-10-19', 1841, 119914, 7100, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '74.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126879, '2022-10-19', 2169, 119915, 7100, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126880, '2022-10-19', 2010, 119916, 7100, 65051, '4.0000', '1.3726', '1.3726', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126881, '2022-10-19', 1812, 119917, 7100, 64964, '1.0000', '9.1804', '9.1804', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126882, '2022-10-19', 1674, 119918, 7100, 62227, '2.0000', '7.7066', '7.7066', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126883, '2022-10-19', 2302, 119919, 7100, 64965, '1.0000', '5.7084', '5.7084', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126884, '2022-10-19', 9821, 119920, 7100, 56978, '1.0000', '1.5013', '1.5013', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126885, '2022-10-19', 1406, 119921, 7100, 64776, '1.0000', '18.8933', '18.8933', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126886, '2022-10-19', 1382, 119922, 7101, 64723, '1.0000', '4.1875', '4.1875', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126887, '2022-10-19', 9762, 119923, 7101, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126888, '2022-10-19', 1839, 119924, 7101, NULL, '1.0000', '-4848982.4095', '-4848982.4095', '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 (126889, '2022-10-19', 8765, 119925, 7101, 65041, '1.0000', '-3.1699', '-3.1699', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126890, '2022-10-19', 10006, 119926, 7101, 62362, '1.0000', '12.9800', '12.9800', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126891, '2022-10-19', 9695, 119927, 7101, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '21.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126892, '2022-10-20', 8127, 119928, 7102, NULL, '1.0000', '24.5300', '24.5300', '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 (126893, '2022-10-20', 8918, 119929, 7102, NULL, '1.0000', '1.0400', '1.0400', '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 (126894, '2022-10-20', 7730, 119930, 7102, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (126895, '2022-10-20', 8979, 119931, 7102, NULL, '3.0000', '1.0000', '1.0000', '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 (126896, '2022-10-20', 9942, 119932, 7102, NULL, '1.0000', '9.1000', '9.1000', '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 (126897, '2022-10-20', 9329, 119933, 7102, NULL, '1.0000', '6.7000', '6.7000', '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 (126898, '2022-10-20', 7806, 119934, 7102, NULL, '1.0000', '1.8000', '1.8000', '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 (126899, '2022-10-20', 8456, 119935, 7102, NULL, '1.0000', '5.5000', '5.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 (126900, '2022-10-20', 2315, 119936, 7102, 2735, '-729.0000', '0.3300', '0.3300', '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 (126901, '2022-10-20', 2315, 119936, 7102, NULL, '731.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-731.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126902, '2022-10-20', 7781, 119937, 7102, NULL, '3.0000', '4.2500', '4.2500', '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 (126903, '2022-10-20', 7558, 119938, 7102, NULL, '4.0000', '1.9700', '1.9700', '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 (126904, '2022-10-20', 7382, 119939, 7102, NULL, '1.0000', '7.4500', '7.4500', '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 (126905, '2022-10-20', 9202, 119940, 7102, NULL, '1.0000', '3.5000', '3.5000', '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 (126906, '2022-10-20', 9245, 119941, 7102, NULL, '1.0000', '6.6100', '6.6100', '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 (126907, '2022-10-20', 2415, 119942, 7102, 4656, '-20.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 (126908, '2022-10-20', 2415, 119942, 7102, NULL, '21.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126909, '2022-10-20', 8548, 119943, 7102, NULL, '1.0000', '12.0000', '12.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 (126910, '2022-10-20', 7530, 119944, 7102, NULL, '1.0000', '7.7000', '7.7000', '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 (126911, '2022-10-20', 7673, 119945, 7102, NULL, '1.0000', '16.8000', '16.8000', '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 (126912, '2022-10-20', 1501, 119946, 7103, NULL, '1.0000', '-2.2016', '-2.2016', '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 (126913, '2022-10-20', 8775, 119947, 7103, 65039, '1.0000', '2.3254', '2.3254', '7.5000', '7.5000', '10.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126914, '2022-10-20', 9943, 119948, 7103, 64726, '1.0000', '14.9097', '14.9097', '19.0000', '19.0000', '11.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126915, '2022-10-20', 1787, 119949, 7103, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126916, '2022-10-20', 1837, 119950, 7103, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126917, '2022-10-20', 2379, 119951, 7103, NULL, '1.0000', '-154.5325', '-154.5325', '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 (126918, '2022-10-20', 2068, 119952, 7103, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126919, '2022-10-20', 2379, 119953, 7103, NULL, '1.0000', '-154.5325', '-154.5325', '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 (126920, '2022-10-20', 1787, 119954, 7103, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126921, '2022-10-20', 1837, 119955, 7103, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126922, '2022-10-20', 10023, 119956, 7103, 62159, '1.0000', '1.9500', '1.9500', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126923, '2022-10-20', 2108, 119957, 7103, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126924, '2022-10-20', 2730, 119958, 7103, 63990, '2.0000', '2.2167', '2.2167', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126925, '2022-10-20', 2109, 119959, 7103, 64808, '1.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126926, '2022-10-20', 1520, 119960, 7103, 64608, '1.0000', '1.7942', '1.7942', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126927, '2022-10-20', 9763, 119961, 7103, 64600, '3.0000', '2.8399', '2.8399', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126928, '2022-10-20', 7807, 119962, 7103, NULL, '2.0000', '2.1600', '2.1600', '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 (126929, '2022-10-20', 1837, 119963, 7103, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126930, '2022-10-20', 1787, 119964, 7103, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126931, '2022-10-20', 1912, 119965, 7103, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126932, '2022-10-20', 9775, 119966, 7103, 64859, '2.0000', '10.3840', '10.3840', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126933, '2022-10-20', 3029, 119967, 7103, 64854, '1.0000', '-21.9670', '-21.9670', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126934, '2022-10-20', 9856, 119968, 7103, NULL, '1.0000', '12.8500', '12.8500', '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 (126935, '2022-10-20', 1425, 119969, 7103, NULL, '1.0000', '10.4939', '10.4939', '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 (126936, '2022-10-20', 1767, 119970, 7103, 64069, '1.0000', '6.3800', '6.3800', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126937, '2022-10-20', 1810, 119971, 7103, NULL, '1.0000', '32.9337', '32.9337', '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 (126938, '2022-10-20', 1863, 119972, 7103, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '79.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126939, '2022-10-20', 1504, 119973, 7103, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126940, '2022-10-20', 2948, 119974, 7103, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126941, '2022-10-20', 2109, 119975, 7103, 64808, '2.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126942, '2022-10-20', 2916, 119976, 7103, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (126943, '2022-10-20', 2315, 119977, 7103, NULL, '1.0000', '0.7700', '0.7700', '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 (126944, '2022-10-20', 1425, 119978, 7103, NULL, '1.0000', '10.4939', '10.4939', '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 (126945, '2022-10-20', 1763, 119979, 7103, NULL, '1.0000', '4.6631', '4.6631', '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 (126946, '2022-10-20', 9734, 119980, 7103, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '63.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126947, '2022-10-20', 9775, 119981, 7103, 64859, '1.0000', '10.3840', '10.3840', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126948, '2022-10-20', 1382, 119982, 7103, 64723, '1.0000', '4.1875', '4.1875', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126949, '2022-10-20', 8810, 119983, 7103, NULL, '1.0000', '1.9200', '1.9200', '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 (126950, '2022-10-20', 10003, 119984, 7103, 64055, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126951, '2022-10-20', 9791, 119985, 7103, 64592, '2.0000', '0.9575', '0.9575', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126952, '2022-10-20', 2948, 119986, 7103, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '40.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126953, '2022-10-20', 2948, 119987, 7103, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '41.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126954, '2022-10-20', 2169, 119988, 7103, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '15.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126955, '2022-10-20', 9734, 119989, 7103, 64835, '3.0000', '0.4609', '0.4609', '0.7000', '0.7000', '61.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126956, '2022-10-20', 2964, 119990, 7103, NULL, '1.0000', '18320683.0450', '18320683.0450', '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 (126957, '2022-10-20', 9762, 119991, 7103, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126958, '2022-10-20', 2109, 119992, 7103, 64808, '1.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126959, '2022-10-20', 2250, 119993, 7103, 64731, '1.0000', '9.6811', '9.6811', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126960, '2022-10-20', 8979, 119994, 7103, 65045, '2.0000', '0.9763', '0.9763', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126961, '2022-10-20', 2656, 119995, 7103, 65026, '2.0000', '2.0366', '2.0366', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126962, '2022-10-20', 2277, 119996, 7103, 62419, '2.0000', '0.5402', '0.5402', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126963, '2022-10-20', 2167, 119997, 7103, NULL, '1.0000', '-35.2864', '-35.2864', '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 (126964, '2022-10-20', 2237, 119998, 7103, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126965, '2022-10-20', 2293, 119999, 7103, NULL, '3.0000', '1.1118', '1.1118', '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 (126966, '2022-10-20', 9751, 120000, 7103, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126967, '2022-10-20', 2247, 120001, 7103, 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 (126968, '2022-10-20', 9695, 120002, 7103, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '20.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126969, '2022-10-20', 1602, 120003, 7103, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '31.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126970, '2022-10-20', 2252, 120004, 7104, 64306, '1.0000', '13.7854', '13.7854', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126971, '2022-10-20', 2169, 120005, 7104, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126972, '2022-10-20', 2352, 120006, 7104, 64299, '1.0000', '58.6246', '58.6246', '4.5000', '4.5000', '41.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126973, '2022-10-20', 1840, 120007, 7104, 62749, '6.0000', '0.2400', '0.2400', '0.5000', '0.5000', '75.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126974, '2022-10-20', 7328, 120008, 7104, NULL, '6.0000', '11.8200', '11.8200', '0.4000', '0.4000', '-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 (126975, '2022-10-20', 2965, 120009, 7104, 60919, '1.0000', '5.1669', '5.1669', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126976, '2022-10-20', 7685, 120010, 7104, NULL, '2.0000', '31.2000', '31.2000', '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 (126977, '2022-10-20', 2255, 120011, 7104, 64970, '1.0000', '24.1278', '24.1278', '35.5000', '35.5000', '3.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126978, '2022-10-20', 2169, 120012, 7104, 62805, '1.0000', '1.4878', '1.4878', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126979, '2022-10-20', 1916, 120013, 7104, 58812, '1.0000', '9.5467', '9.5467', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126980, '2022-10-20', 1863, 120014, 7104, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '107.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126981, '2022-10-20', 2821, 120015, 7104, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126982, '2022-10-20', 1855, 120016, 7104, 53886, '1.0000', '1.4608', '1.4608', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126983, '2022-10-20', 1329, 120017, 7104, 62737, '1.0000', '10.7067', '10.7067', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126984, '2022-10-20', 7590, 120018, 7104, 63974, '1.0000', '2.8253', '2.8253', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126985, '2022-10-20', 10038, 120019, 7104, 63383, '1.0000', '2.9700', '2.9700', '4.0000', '4.0000', '20.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126986, '2022-10-20', 7460, 120020, 7105, 64885, '2.0000', '86.2357', '86.2357', '4.0000', '4.0000', '15.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126987, '2022-10-20', 7779, 120021, 7105, 62294, '2.0000', '10.2632', '10.2632', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126988, '2022-10-20', 7708, 120022, 7105, 64897, '1.0000', '8.8676', '8.8676', '14.0000', '14.0000', '7.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126989, '2022-10-20', 8918, 120023, 7105, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126990, '2022-10-20', 2256, 120024, 7105, 47953, '1.0000', '14.5250', '14.5250', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126991, '2022-10-20', 7531, 120025, 7105, NULL, '1.0000', '5.5400', '5.5400', '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 (126992, '2022-10-20', 7472, 120026, 7105, 63901, '1.0000', '6.5164', '6.5164', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126993, '2022-10-20', 7753, 120027, 7105, 65156, '1.0000', '3.7412', '3.7412', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126994, '2022-10-20', 7673, 120028, 7105, 64945, '1.0000', '20.8093', '20.8093', '38.0000', '38.0000', '4.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126995, '2022-10-20', 8500, 120029, 7105, NULL, '1.0000', '22.4500', '22.4500', '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 (126996, '2022-10-20', 9814, 120030, 7105, 56194, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126997, '2022-10-20', 8482, 120031, 7105, 65176, '1.0000', '19.5058', '19.5058', '24.5000', '24.5000', '11.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126998, '2022-10-20', 9092, 120032, 7105, 64935, '1.0000', '0.4265', '0.4265', '1.0000', '1.0000', '173.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126999, '2022-10-20', 7886, 120033, 7105, 63876, '1.0000', '4.9536', '4.9536', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127000, '2022-10-20', 2015, 120034, 7105, NULL, '1.0000', '5.0000', '5.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 (127001, '2022-10-20', 7833, 120035, 7105, 64268, '1.0000', '17.3160', '17.3160', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127002, '2022-10-20', 7400, 120036, 7105, 64941, '1.0000', '24.0258', '24.0258', '39.5000', '39.5000', '3.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127003, '2022-10-20', 7753, 120037, 7105, 65156, '2.0000', '3.7412', '3.7412', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127004, '2022-10-20', 7967, 120038, 7105, 65142, '1.0000', '7.4695', '7.4695', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127005, '2022-10-20', 8127, 120039, 7105, NULL, '1.0000', '24.5300', '24.5300', '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 (127006, '2022-10-20', 7316, 120040, 7105, 64888, '3.0000', '0.9705', '0.9705', '1.5000', '1.5000', '77.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127007, '2022-10-20', 8359, 120041, 7105, 65148, '1.0000', '144.6407', '144.6407', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127008, '2022-10-20', 9272, 120042, 7105, NULL, '1.0000', '3.1206', '3.1206', '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 (127009, '2022-10-20', 7930, 120043, 7105, 64379, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127010, '2022-10-20', 7457, 120044, 7105, 64894, '1.0000', '5.5337', '5.5337', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127011, '2022-10-20', 7641, 120045, 7105, 65159, '1.0000', '7.8719', '7.8719', '11.5000', '11.5000', '18.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127012, '2022-10-20', 7589, 120046, 7105, 46257, '1.0000', '1.9144', '1.9144', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127013, '2022-10-20', 9824, 120047, 7105, 51002, '4.0000', '1.3000', '1.3000', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 417);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127014, '2022-10-20', 7446, 120048, 7105, 59147, '1.0000', '1.6896', '1.6896', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127015, '2022-10-20', 9803, 120049, 7105, 50387, '1.0000', '4.5500', '4.5500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 410);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127016, '2022-10-20', 7931, 120050, 7105, NULL, '1.0000', '-127.8750', '-127.8750', '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 (127017, '2022-10-20', 1855, 120051, 7105, 61776, '1.0000', '1.4852', '1.4852', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127018, '2022-10-20', 8154, 120052, 7105, NULL, '2.0000', '12.3000', '12.3000', '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 (127019, '2022-10-20', 8666, 120053, 7105, 64104, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '17.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127020, '2022-10-20', 1916, 120054, 7105, 61903, '1.0000', '10.5682', '10.5682', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127021, '2022-10-20', 1760, 120055, 7105, 57610, '1.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127022, '2022-10-20', 9856, 120056, 7105, 64396, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127023, '2022-10-20', 8325, 120057, 7105, 64098, '1.0000', '2.3230', '2.3230', '4.5000', '4.5000', '11.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127024, '2022-10-20', 8596, 120058, 7105, NULL, '1.0000', '71.0634', '71.0634', '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 (127025, '2022-10-20', 2315, 120059, 7105, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '86.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127026, '2022-10-20', 9274, 120060, 7105, 63913, '1.0000', '5.5787', '5.5787', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127027, '2022-10-20', 7411, 120061, 7105, 64385, '1.0000', '1.4956', '1.4956', '2.5000', '2.5000', '59.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127028, '2022-10-20', 7954, 120062, 7105, NULL, '2.0000', '-133727.7176', '-133727.7176', '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 (127029, '2022-10-20', 1585, 120063, 7106, 64872, '1.0000', '10.2667', '10.2667', '15.0000', '15.0000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127030, '2022-10-20', 9945, 120064, 7106, NULL, '1.0000', '12.1000', '12.1000', '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 (127031, '2022-10-20', 3029, 120065, 7106, 64854, '1.0000', '-21.9670', '-21.9670', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127032, '2022-10-20', 2656, 120066, 7106, 65026, '2.0000', '2.0366', '2.0366', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127033, '2022-10-20', 2108, 120067, 7106, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127034, '2022-10-20', 1950, 120068, 7106, 64798, '1.0000', '3.7725', '3.7725', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127035, '2022-10-20', 1520, 120069, 7106, 64608, '1.0000', '1.7942', '1.7942', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127036, '2022-10-20', 3058, 120070, 7106, NULL, '1.0000', '8.2853', '8.2853', '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 (127037, '2022-10-20', 1935, 120071, 7106, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127038, '2022-10-20', 1856, 120072, 7106, NULL, '1.0000', '177.3144', '177.3144', '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 (127039, '2022-10-20', 1910, 120073, 7106, NULL, '1.0000', '0.5756', '0.5756', '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 (127040, '2022-10-20', 1427, 120074, 7106, 64803, '1.0000', '11.7750', '11.7750', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127041, '2022-10-20', 1409, 120075, 7106, 64717, '1.0000', '13.2000', '13.2000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127042, '2022-10-20', 2366, 120076, 7106, NULL, '2.0000', '-154.5270', '-154.5270', '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 (127043, '2022-10-20', 2284, 120077, 7106, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127044, '2022-10-20', 9740, 120078, 7106, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127045, '2022-10-20', 2169, 120079, 7106, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127046, '2022-10-20', 1602, 120080, 7106, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '30.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127047, '2022-10-20', 2277, 120081, 7106, 62419, '3.0000', '0.5402', '0.5402', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127048, '2022-10-20', 1529, 120082, 7106, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127049, '2022-10-20', 2169, 120083, 7106, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127050, '2022-10-20', 2277, 120084, 7106, 62419, '3.0000', '0.5402', '0.5402', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127051, '2022-10-20', 2315, 120085, 7106, NULL, '1.0000', '0.7700', '0.7700', '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 (127052, '2022-10-20', 10004, 120086, 7106, 62129, '6.0000', '2.5100', '2.5100', '3.0000', '3.0000', '103.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127053, '2022-10-20', 2823, 120087, 7106, 64799, '1.0000', '41.7600', '41.7600', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127054, '2022-10-20', 9695, 120088, 7106, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '19.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127055, '2022-10-20', 8017, 120089, 7106, 64594, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127056, '2022-10-20', 1761, 120090, 7106, 65135, '1.0000', '2.1863', '2.1863', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127057, '2022-10-20', 8963, 120091, 7106, 64715, '1.0000', '15.5668', '15.5668', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127058, '2022-10-20', 8878, 120092, 7106, 64000, '1.0000', '-14.0332', '-14.0332', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127059, '2022-10-20', 1425, 120093, 7106, NULL, '1.0000', '10.4939', '10.4939', '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 (127060, '2022-10-20', 2284, 120094, 7106, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127061, '2022-10-20', 2169, 120095, 7106, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127062, '2022-10-20', 8086, 120096, 7106, NULL, '1.0000', '9.3000', '9.3000', '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 (127063, '2022-10-20', 10052, 120097, 7106, 65131, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '3.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127064, '2022-10-20', 9695, 120098, 7106, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '19.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127065, '2022-10-20', 1645, 120099, 7106, NULL, '1.0000', '13.1800', '13.1800', '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 (127066, '2022-10-20', 1935, 120100, 7106, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127067, '2022-10-20', 8979, 120101, 7106, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127068, '2022-10-20', 1667, 120102, 7106, 65133, '1.0000', '9.7806', '9.7806', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127069, '2022-10-20', 2327, 120103, 7106, 64728, '1.0000', '3.8977', '3.8977', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127070, '2022-10-20', 10037, 120104, 7106, 62820, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127071, '2022-10-20', 1347, 120105, 7106, 63433, '3.0000', '4.0959', '4.0959', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127072, '2022-10-20', 1872, 120106, 7106, 59884, '1.0000', '11.2454', '11.2454', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127073, '2022-10-20', 1837, 120107, 7106, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127074, '2022-10-20', 8979, 120108, 7106, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '42.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127075, '2022-10-20', 1501, 120109, 7106, NULL, '1.0000', '-2.2016', '-2.2016', '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 (127076, '2022-10-20', 2263, 120110, 7106, 62876, '1.0000', '11.4942', '11.4942', '8.0000', '8.0000', '15.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127077, '2022-10-20', 1388, 120111, 7106, 64619, '1.0000', '7.5988', '7.5988', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127078, '2022-10-20', 1888, 120112, 7106, 64718, '1.0000', '20.7394', '20.7394', '36.0000', '36.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127079, '2022-10-20', 2242, 120113, 7106, NULL, '3.0000', '1.2664', '1.2664', '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 (127080, '2022-10-20', 2315, 120114, 7106, NULL, '1.0000', '0.7700', '0.7700', '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 (127081, '2022-10-20', 2169, 120115, 7106, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127082, '2022-10-20', 2344, 120116, 7106, 65130, '1.0000', '20.0000', '20.0000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127083, '2022-10-20', 1519, 120117, 7106, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127084, '2022-10-20', 1501, 120118, 7106, NULL, '1.0000', '-2.2016', '-2.2016', '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 (127085, '2022-10-20', 2169, 120119, 7106, 64716, '1.0000', '1.8316', '1.8316', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127086, '2022-10-20', 2237, 120120, 7106, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '27.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127087, '2022-10-20', 2964, 120121, 7106, NULL, '1.0000', '18320683.0450', '18320683.0450', '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 (127088, '2022-10-20', 2416, 120122, 7106, 65027, '1.0000', '1.3985', '1.3985', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127089, '2022-10-20', 9482, 120123, 7106, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '223.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127090, '2022-10-20', 1519, 120124, 7107, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127091, '2022-10-20', 1908, 120125, 7107, NULL, '1.0000', '0.9032', '0.9032', '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 (127092, '2022-10-20', 10023, 120126, 7107, 62159, '1.0000', '1.9500', '1.9500', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127093, '2022-10-20', 9942, 120127, 7107, 64725, '1.0000', '12.7325', '12.7325', '18.0000', '18.0000', '10.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127094, '2022-10-20', 7514, 120128, 7108, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '30.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127095, '2022-10-20', 2277, 120129, 7108, 48385, '1.0000', '0.7800', '0.7800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127096, '2022-10-20', 8401, 120130, 7108, 59130, '1.0000', '8.6488', '8.6488', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127097, '2022-10-20', 8077, 120131, 7108, 64918, '1.0000', '6.7350', '6.7350', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127098, '2022-10-20', 9980, 120132, 7108, 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 (127099, '2022-10-20', 9956, 120133, 7108, 64404, '1.0000', '16.9935', '16.9935', '24.2900', '24.2900', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127100, '2022-10-20', 7880, 120134, 7108, 65211, '1.0000', '5.8332', '5.8332', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127101, '2022-10-20', 2270, 120135, 7108, NULL, '1.0000', '2.5000', '2.5000', '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 (127102, '2022-10-20', 2105, 120136, 7108, 65206, '1.0000', '2.7782', '2.7782', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127103, '2022-10-20', 7753, 120137, 7108, 65200, '1.0000', '3.7385', '3.7385', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127104, '2022-10-20', 2315, 120138, 7108, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '84.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127105, '2022-10-20', 9092, 120139, 7108, 64935, '3.0000', '0.4265', '0.4265', '1.0000', '1.0000', '170.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127106, '2022-10-20', 8878, 120140, 7108, 64386, '1.0000', '0.7033', '0.7033', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127107, '2022-10-20', 1905, 120141, 7109, NULL, '1.0000', '0.5198', '0.5198', '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 (127108, '2022-10-20', 1368, 120142, 7109, 64869, '1.0000', '6.3956', '6.3956', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127109, '2022-10-20', 1521, 120143, 7109, 63439, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127110, '2022-10-20', 1501, 120144, 7109, NULL, '1.0000', '-2.2016', '-2.2016', '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 (127111, '2022-10-20', 1680, 120145, 7110, 62750, '1.0000', '5.6046', '5.6046', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127112, '2022-10-20', 2413, 120146, 7110, 54395, '3.0000', '1.1122', '1.1122', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 458);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127113, '2022-10-20', 2237, 120147, 7110, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127114, '2022-10-20', 7411, 120148, 7110, NULL, '1.0000', '1.5882', '1.5882', '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 (127115, '2022-10-20', 2858, 120149, 7110, 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 (127116, '2022-10-20', 7380, 120150, 7110, NULL, '1.0000', '5.6200', '5.6200', '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 (127117, '2022-10-20', 8616, 120151, 7110, NULL, '1.0000', '23.0000', '23.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 (127118, '2022-10-20', 2068, 120152, 7110, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127119, '2022-10-20', 2167, 120153, 7110, 64543, '1.0000', '2.7995', '2.7995', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127120, '2022-10-20', 2643, 120154, 7110, 65054, '1.0000', '1.0597', '1.0597', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127121, '2022-10-20', 2248, 120155, 7110, 62270, '1.0000', '3.3270', '3.3270', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127122, '2022-10-20', 1602, 120156, 7110, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127123, '2022-10-20', 8038, 120157, 7110, NULL, '1.0000', '6.7000', '6.7000', '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 (127124, '2022-10-20', 1371, 120158, 7110, 41971, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127125, '2022-10-20', 8065, 120159, 7110, NULL, '1.0000', '-88.3120', '-88.3120', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127126, '2022-10-20', 8482, 120160, 7110, 64536, '1.0000', '18.0000', '18.0000', '24.5000', '24.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127127, '2022-10-20', 1812, 120161, 7110, 64964, '1.0000', '9.1804', '9.1804', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127128, '2022-10-20', 9915, 120162, 7110, 60028, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127129, '2022-10-20', 9098, 120163, 7110, NULL, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127130, '2022-10-20', 9747, 120164, 7110, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127131, '2022-10-20', 1667, 120165, 7110, 61689, '3.0000', '18.3282', '18.3282', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127132, '2022-10-20', 7745, 120166, 7110, 64518, '1.0000', '8.6600', '8.6600', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127133, '2022-10-20', 2237, 120167, 7110, 62746, '1.0000', '1.3254', '1.3254', '2.5000', '2.5000', '16.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127134, '2022-10-20', 1311, 120168, 7110, NULL, '2.0000', '0.3700', '0.3700', '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 (127135, '2022-10-20', 2315, 120169, 7110, 62801, '2.0000', '0.6397', '0.6397', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127136, '2022-10-20', 1621, 120170, 7110, 64545, '1.0000', '26.8680', '26.8680', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127137, '2022-10-20', 1602, 120171, 7110, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '8.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127138, '2022-10-20', 1406, 120172, 7110, 64776, '1.0000', '18.8933', '18.8933', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127139, '2022-10-20', 1916, 120173, 7110, 5511, '1.0000', '9.5467', '9.5467', '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 (127140, '2022-10-20', 1308, 120174, 7110, 42946, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127141, '2022-10-20', 2352, 120175, 7110, 64299, '17.0000', '58.6246', '58.6246', '4.5000', '4.5000', '24.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127142, '2022-10-20', 2315, 120176, 7110, 62801, '5.0000', '0.6397', '0.6397', '1.0000', '1.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127143, '2022-10-20', 2769, 120177, 7110, 64561, '2.0000', '2.2279', '2.2279', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127144, '2022-10-20', 8203, 120178, 7110, NULL, '2.0000', '0.5000', '0.5000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127145, '2022-10-20', 9750, 120179, 7110, 62791, '1.0000', '3.5706', '3.5706', '7.5000', '7.5000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127146, '2022-10-20', 7750, 120180, 7110, NULL, '1.0000', '34.9000', '34.9000', '61.0000', '61.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127147, '2022-10-20', 7741, 120181, 7110, 56896, '1.0000', '3.4144', '3.4144', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127148, '2022-10-20', 9821, 120182, 7110, 56978, '1.0000', '1.5013', '1.5013', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127149, '2022-10-20', 1331, 120183, 7110, 62736, '1.0000', '5.9950', '5.9950', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127150, '2022-10-20', 1783, 120184, 7110, 63956, '1.0000', '4.1997', '4.1997', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127151, '2022-10-20', 1503, 120185, 7111, 1506, '1.0000', '90.0000', '90.0000', '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 (127152, '2022-10-20', 7917, 120186, 7111, NULL, '3.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (127153, '2022-10-21', 8490, 120187, 7112, NULL, '1.0000', '27.3000', '27.3000', '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 (127154, '2022-10-21', 8079, 120188, 7112, NULL, '1.0000', '17.4827', '17.4827', '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 (127155, '2022-10-21', 2293, 120189, 7112, NULL, '3.0000', '1.1118', '1.1118', '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 (127156, '2022-10-21', 2109, 120190, 7112, 64808, '3.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127157, '2022-10-21', 1488, 120191, 7112, 65123, '1.0000', '4.9927', '4.9927', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127158, '2022-10-21', 2169, 120192, 7112, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127159, '2022-10-21', 1935, 120193, 7112, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '34.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127160, '2022-10-21', 7411, 120194, 7112, NULL, '1.0000', '1.2819', '1.2819', '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 (127161, '2022-10-21', 1335, 120195, 7112, 62831, '1.0000', '1.2635', '1.2635', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127162, '2022-10-21', 9815, 120196, 7112, 64804, '2.0000', '0.9733', '0.9733', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127163, '2022-10-21', 7741, 120197, 7112, NULL, '1.0000', '-174.4114', '-174.4114', '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 (127164, '2022-10-21', 1532, 120198, 7112, 62437, '3.0000', '1.5092', '1.5092', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127165, '2022-10-21', 1368, 120199, 7112, 64869, '1.0000', '6.3956', '6.3956', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127166, '2022-10-21', 7411, 120200, 7112, NULL, '1.0000', '1.2819', '1.2819', '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 (127167, '2022-10-21', 9840, 120201, 7112, 64598, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127168, '2022-10-21', 9565, 120202, 7112, NULL, '1.0000', '4.5000', '4.5000', '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 (127169, '2022-10-21', 2416, 120203, 7112, 65027, '1.0000', '1.3985', '1.3985', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127170, '2022-10-21', 1646, 120204, 7112, 64863, '1.0000', '6.6727', '6.6727', '13.0000', '13.0000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127171, '2022-10-21', 1881, 120205, 7112, 34572, '1.0000', '105.8000', '105.8000', '141.0000', '141.0000', '0.0000', 1, 0, NULL, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127172, '2022-10-21', 2582, 120206, 7112, NULL, '1.0000', '20.5000', '20.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 (127173, '2022-10-21', 1812, 120207, 7112, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '5.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127174, '2022-10-21', 8979, 120208, 7112, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127175, '2022-10-21', 1340, 120209, 7112, NULL, '1.0000', '8.7200', '8.7200', '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 (127176, '2022-10-21', 1499, 120210, 7112, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '13.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127177, '2022-10-21', 2269, 120211, 7112, NULL, '1.0000', '0.1934', '0.1934', '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 (127178, '2022-10-21', 1592, 120212, 7112, 54875, '1.0000', '43.2145', '43.2145', '65.0000', '65.0000', '0.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127179, '2022-10-21', 8535, 120213, 7112, NULL, '1.0000', '32.5000', '32.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 (127180, '2022-10-21', 1602, 120214, 7112, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '29.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127181, '2022-10-21', 1912, 120215, 7113, 64802, '3.0000', '0.7413', '0.7413', '1.0000', '1.0000', '32.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127182, '2022-10-21', 1499, 120216, 7113, 62833, '1.0000', '0.5150', '0.5150', '0.7000', '0.7000', '12.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127183, '2022-10-21', 9775, 120217, 7114, 64859, '1.0000', '10.3840', '10.3840', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127184, '2022-10-21', 9496, 120218, 7114, NULL, '1.0000', '-5.5750', '-5.5750', '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 (127185, '2022-10-21', 9985, 120219, 7114, 64814, '1.0000', '6.5857', '6.5857', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127186, '2022-10-21', 1501, 120220, 7114, NULL, '1.0000', '-2.2016', '-2.2016', '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 (127187, '2022-10-21', 8979, 120221, 7115, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '39.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127188, '2022-10-21', 1825, 120222, 7116, 64744, '1.0000', '8.9429', '8.9429', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127189, '2022-10-21', 10022, 120223, 7116, 64794, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127190, '2022-10-21', 9736, 120224, 7116, 64825, '1.0000', '6.8611', '6.8611', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127191, '2022-10-21', 2228, 120225, 7117, 65047, '1.0000', '29.4243', '29.4243', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127192, '2022-10-21', 9999, 120226, 7117, 60929, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127193, '2022-10-21', 1837, 120227, 7117, 62213, '3.0000', '0.6220', '0.6220', '1.0000', '1.0000', '24.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127194, '2022-10-21', 2384, 120228, 7117, 64562, '2.0000', '0.4889', '0.4889', '0.8000', '0.8000', '97.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127195, '2022-10-21', 1482, 120229, 7117, 62727, '1.0000', '36.0194', '36.0194', '41.5000', '41.5000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127196, '2022-10-21', 2384, 120230, 7117, 64562, '1.0000', '0.4889', '0.4889', '0.8000', '0.8000', '98.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127197, '2022-10-21', 1602, 120231, 7117, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127198, '2022-10-21', 1426, 120232, 7117, 61629, '1.0000', '35.9547', '35.9547', '47.5000', '47.5000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127199, '2022-10-21', 2477, 120233, 7117, 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 (127200, '2022-10-21', 8900, 120234, 7117, NULL, '15.0000', '16.4000', '16.4000', '3.0000', '3.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 (127201, '2022-10-21', 1875, 120235, 7117, 64484, '3.0000', '54.2871', '54.2871', '6.0000', '6.0000', '37.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127202, '2022-10-21', 1532, 120236, 7117, 60037, '2.0000', '22.8160', '22.8160', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127203, '2022-10-21', 1411, 120237, 7117, 61606, '1.0000', '25.9672', '25.9672', '35.0000', '35.0000', '3.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127204, '2022-10-21', 1715, 120238, 7117, 65284, '1.0000', '8.0782', '8.0782', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127205, '2022-10-21', 1602, 120239, 7117, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '6.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127206, '2022-10-21', 1863, 120240, 7117, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '106.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127207, '2022-10-21', 2293, 120241, 7117, 50920, '2.0000', '0.8705', '0.8705', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127208, '2022-10-21', 1409, 120242, 7117, 64958, '1.0000', '13.2766', '13.2766', '20.5000', '20.5000', '5.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127209, '2022-10-21', 2656, 120243, 7117, 65056, '1.0000', '1.6007', '1.6007', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127210, '2022-10-21', 8187, 120244, 7118, NULL, '2.0000', '14.3900', '14.3900', '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 (127211, '2022-10-21', 8596, 120245, 7118, 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 (127212, '2022-10-21', 8318, 120246, 7118, NULL, '1.0000', '5.5000', '5.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 (127213, '2022-10-21', 7925, 120247, 7118, NULL, '1.0000', '8.3000', '8.3000', '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 (127214, '2022-10-21', 1329, 120248, 7118, NULL, '1.0000', '8.5000', '8.5000', '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 (127215, '2022-10-21', 1332, 120249, 7118, 14392, '-4.0000', '7.5000', '7.5000', '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 (127216, '2022-10-21', 1332, 120249, 7118, NULL, '5.0000', '7.5000', '7.5000', '13.0000', '13.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 (127217, '2022-10-21', 7781, 120250, 7118, NULL, '3.0000', '4.2500', '4.2500', '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 (127218, '2022-10-21', 7672, 120251, 7118, NULL, '1.0000', '1.0200', '1.0200', '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 (127219, '2022-10-21', 1837, 120252, 7118, 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 (127220, '2022-10-21', 2965, 120253, 7118, 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 (127221, '2022-10-21', 2315, 120254, 7118, 2735, '-731.0000', '0.3300', '0.3300', '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 (127222, '2022-10-21', 2315, 120254, 7118, NULL, '734.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-734.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127223, '2022-10-21', 8918, 120255, 7118, NULL, '1.0000', '1.0400', '1.0400', '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 (127224, '2022-10-21', 2315, 120256, 7118, 2735, '-731.0000', '0.3300', '0.3300', '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 (127225, '2022-10-21', 2315, 120256, 7118, NULL, '733.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-733.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127226, '2022-10-21', 10018, 120257, 7118, NULL, '1.0000', '0.8500', '0.8500', '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 (127227, '2022-10-21', 1921, 120258, 7118, 6873, '1.0000', '13.0375', '13.0375', '5.0000', '5.0000', '5.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 (127228, '2022-10-21', 9751, 120259, 7118, NULL, '3.0000', '1.0000', '1.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 (127229, '2022-10-21', 9092, 120260, 7118, NULL, '3.0000', '5.2900', '5.2900', '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 (127230, '2022-10-21', 8482, 120261, 7118, NULL, '1.0000', '2.9500', '2.9500', '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 (127231, '2022-10-21', 2068, 120262, 7119, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127232, '2022-10-21', 1529, 120263, 7119, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127233, '2022-10-21', 1936, 120264, 7119, 62856, '1.0000', '6.7875', '6.7875', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127234, '2022-10-21', 9750, 120265, 7119, NULL, '1.0000', '2.3934', '2.3934', '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 (127235, '2022-10-21', 9866, 120266, 7119, 64811, '1.0000', '9.5500', '9.5500', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127236, '2022-10-21', 1425, 120267, 7119, NULL, '1.0000', '10.4939', '10.4939', '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 (127237, '2022-10-21', 9788, 120268, 7119, 64791, '1.0000', '1.8451', '1.8451', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127238, '2022-10-21', 8079, 120269, 7119, NULL, '1.0000', '17.4827', '17.4827', '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 (127239, '2022-10-21', 2674, 120270, 7119, 62422, '1.0000', '13.5967', '13.5967', '6.0000', '6.0000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127240, '2022-10-21', 2020, 120271, 7119, 65124, '1.0000', '105361.0491', '105361.0491', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127241, '2022-10-21', 2020, 120271, 7119, NULL, '1.0000', '105361.0491', '105361.0491', '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 (127242, '2022-10-21', 1831, 120272, 7119, 49898, '1.0000', '9.7857', '9.7857', '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 (127243, '2022-10-21', 9695, 120273, 7119, 65043, '2.0000', '5.6903', '5.6903', '9.0000', '9.0000', '16.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127244, '2022-10-21', 8881, 120274, 7119, 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 (127245, '2022-10-21', 8979, 120275, 7119, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127246, '2022-10-21', 9751, 120276, 7119, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127247, '2022-10-21', 2353, 120277, 7119, NULL, '1.0000', '-23.9980', '-23.9980', '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 (127248, '2022-10-21', 9819, 120278, 7119, 62425, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '20.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127249, '2022-10-21', 9736, 120279, 7120, 64825, '1.0000', '6.8611', '6.8611', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127250, '2022-10-21', 1592, 120280, 7120, 54962, '1.0000', '43.2145', '43.2145', '65.0000', '65.0000', '3.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127251, '2022-10-21', 1616, 120281, 7120, 60339, '10.0000', '0.1071', '0.1071', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127252, '2022-10-21', 1950, 120282, 7120, 64798, '1.0000', '3.7725', '3.7725', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127253, '2022-10-21', 7592, 120283, 7120, NULL, '1.0000', '8.6500', '8.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 (127254, '2022-10-21', 1863, 120284, 7120, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '78.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127255, '2022-10-21', 9632, 120285, 7120, NULL, '1.0000', '37.3700', '37.3700', '49.5000', '49.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127256, '2022-10-21', 2305, 120286, 7120, 53223, '1.0000', '4.0595', '4.0595', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 445);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127257, '2022-10-21', 1621, 120287, 7120, 64850, '1.0000', '13.6096', '13.6096', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127258, '2022-10-21', 9503, 120288, 7120, NULL, '1.0000', '240.6525', '240.6525', '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 (127259, '2022-10-21', 1912, 120289, 7120, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127260, '2022-10-21', 2163, 120290, 7120, 64073, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127261, '2022-10-21', 2260, 120291, 7120, 64746, '2.0000', '5.2018', '5.2018', '8.0000', '8.0000', '10.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127262, '2022-10-21', 9751, 120292, 7120, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '45.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127263, '2022-10-21', 1667, 120293, 7120, 65133, '2.0000', '9.7806', '9.7806', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127264, '2022-10-21', 1425, 120294, 7120, NULL, '1.0000', '10.4939', '10.4939', '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 (127265, '2022-10-21', 2384, 120295, 7120, NULL, '2.0000', '-312.4992', '-312.4992', '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 (127266, '2022-10-21', 1669, 120296, 7120, NULL, '7.0000', '7.1844', '7.1844', '14.0000', '14.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 (127267, '2022-10-21', 8065, 120297, 7120, NULL, '1.0000', '32.0000', '32.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127268, '2022-10-21', 1871, 120298, 7120, NULL, '10.0000', '-20821086.1374', '-20821086.1374', '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 (127269, '2022-10-21', 1342, 120299, 7120, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127270, '2022-10-21', 1885, 120300, 7120, 59621, '2.0000', '6.9875', '6.9875', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127271, '2022-10-21', 9671, 120301, 7121, 64571, '1.0000', '32.0000', '32.0000', '42.5000', '42.5000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127272, '2022-10-21', 8881, 120302, 7121, 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 (127273, '2022-10-21', 2366, 120303, 7121, NULL, '2.0000', '-154.5270', '-154.5270', '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 (127274, '2022-10-21', 1571, 120304, 7121, NULL, '2.0000', '563.9583', '563.9583', '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 (127275, '2022-10-21', 3025, 120305, 7121, 58059, '1.0000', '2.4395', '2.4395', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127276, '2022-10-21', 2010, 120306, 7121, 58061, '1.0000', '1.1210', '1.1210', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127277, '2022-10-21', 1761, 120307, 7121, 65135, '1.0000', '2.1863', '2.1863', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127278, '2022-10-21', 2149, 120308, 7121, 64573, '1.0000', '15.2250', '15.2250', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127279, '2022-10-21', 9736, 120309, 7121, 64825, '1.0000', '6.8611', '6.8611', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127280, '2022-10-21', 7756, 120310, 7122, 64403, '1.0000', '35.3195', '35.3195', '53.5000', '53.5000', '0.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127281, '2022-10-21', 7316, 120311, 7122, 64888, '10.0000', '0.9705', '0.9705', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127282, '2022-10-21', 8677, 120312, 7122, 65256, '2.0000', '1.9486', '1.9486', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127283, '2022-10-21', 1904, 120313, 7122, 61745, '2.0000', '157.5719', '157.5719', '1.0000', '1.0000', '89.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127284, '2022-10-21', 1760, 120314, 7122, 57610, '2.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127285, '2022-10-21', 7856, 120315, 7122, NULL, '1.0000', '6.4000', '6.4000', '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 (127286, '2022-10-21', 9092, 120316, 7122, 64935, '2.0000', '0.4265', '0.4265', '1.0000', '1.0000', '168.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127287, '2022-10-21', 2315, 120317, 7122, 64405, '3.0000', '0.7662', '0.7662', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127288, '2022-10-21', 7518, 120318, 7122, 65242, '1.0000', '9.9576', '9.9576', '14.5000', '14.5000', '18.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127289, '2022-10-21', 7457, 120319, 7122, 64894, '1.0000', '5.5337', '5.5337', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127290, '2022-10-21', 7558, 120320, 7122, 65265, '5.0000', '3.3300', '3.3300', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127291, '2022-10-21', 7514, 120321, 7122, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127292, '2022-10-21', 7719, 120322, 7122, 60808, '1.0000', '8.1122', '8.1122', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127293, '2022-10-21', 7459, 120323, 7122, 65253, '10.0000', '20.2476', '20.2476', '5.0000', '5.0000', '50.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127294, '2022-10-21', 9983, 120324, 7122, 61818, '1.0000', '5.4000', '5.4000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127295, '2022-10-21', 1841, 120325, 7122, 61751, '2.0000', '0.1461', '0.1461', '0.5000', '0.5000', '37.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127296, '2022-10-21', 7460, 120326, 7122, 64885, '4.0000', '86.2357', '86.2357', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127297, '2022-10-21', 7730, 120327, 7122, 64095, '5.0000', '0.1254', '0.1254', '0.2000', '0.2000', '86.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127298, '2022-10-21', 9895, 120328, 7122, 54443, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '37.0000', 1, 0, NULL, 459);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127299, '2022-10-21', 2486, 120329, 7122, 62531, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127300, '2022-10-21', 8017, 120330, 7122, 59111, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '51.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127301, '2022-10-21', 9092, 120331, 7122, 64935, '5.0000', '0.4265', '0.4265', '1.0000', '1.0000', '165.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127302, '2022-10-21', 9463, 120332, 7122, 64380, '2.0000', '4.0000', '4.0000', '5.5000', '5.5000', '6.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127303, '2022-10-21', 7959, 120333, 7122, NULL, '1.0000', '-15.6222', '-15.6222', '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 (127304, '2022-10-21', 7868, 120334, 7122, NULL, '1.0000', '28.7600', '28.7600', '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 (127305, '2022-10-21', 1760, 120335, 7122, 57610, '2.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127306, '2022-10-21', 7547, 120336, 7122, NULL, '4.0000', '-0.3235', '-0.3235', '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 (127307, '2022-10-21', 7316, 120337, 7122, 64888, '10.0000', '0.9705', '0.9705', '1.5000', '1.5000', '67.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127308, '2022-10-21', 7707, 120338, 7122, 63849, '1.0000', '7.1500', '7.1500', '9.5000', '9.5000', '7.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127309, '2022-10-21', 9814, 120339, 7122, 56194, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 484);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127310, '2022-10-21', 2315, 120340, 7122, 64405, '3.0000', '0.7662', '0.7662', '1.0000', '1.0000', '81.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127311, '2022-10-21', 7317, 120341, 7122, 64236, '1.0000', '15.9122', '15.9122', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127312, '2022-10-21', 9413, 120342, 7122, 61705, '1.0000', '9.2095', '9.2095', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127313, '2022-10-21', 8127, 120343, 7122, NULL, '1.0000', '24.5300', '24.5300', '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 (127314, '2022-10-21', 7674, 120344, 7122, 65234, '1.0000', '43.5348', '43.5348', '3.0000', '3.0000', '59.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127315, '2022-10-21', 7889, 120345, 7122, NULL, '1.0000', '-8.6571', '-8.6571', '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 (127316, '2022-10-21', 3001, 120346, 7122, NULL, '2.0000', '1.5000', '1.5000', '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 (127317, '2022-10-21', 1339, 120347, 7122, 65262, '1.0000', '4.6972', '4.6972', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127318, '2022-10-21', 7680, 120348, 7122, 57641, '2.0000', '166.6472', '166.6472', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127319, '2022-10-21', 9914, 120349, 7122, 57462, '1.0000', '46.9900', '46.9900', '62.0000', '62.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127320, '2022-10-21', 7454, 120350, 7122, 56677, '1.0000', '57.7600', '57.7600', '77.0000', '77.0000', '1.0000', 1, 0, NULL, 490);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127321, '2022-10-21', 9202, 120351, 7122, NULL, '1.0000', '2.1700', '2.1700', '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 (127322, '2022-10-21', 2277, 120352, 7123, NULL, '2.0000', '0.5402', '0.5402', '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 (127323, '2022-10-21', 2948, 120353, 7123, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '36.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127324, '2022-10-21', 9463, 120354, 7123, NULL, '2.0000', '996.0148', '996.0148', '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 (127325, '2022-10-21', 1488, 120355, 7123, 65123, '1.0000', '4.9927', '4.9927', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127326, '2022-10-21', 2821, 120356, 7123, NULL, '1.0000', '-40.2618', '-40.2618', '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 (127327, '2022-10-21', 8183, 120357, 7123, NULL, '1.0000', '5849.4008', '5849.4008', '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 (127328, '2022-10-21', 2916, 120358, 7123, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (127329, '2022-10-21', 1529, 120359, 7123, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127330, '2022-10-21', 8482, 120360, 7123, 64077, '1.0000', '18.0579', '18.0579', '24.5000', '24.5000', '13.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127331, '2022-10-21', 1711, 120361, 7123, 59608, '1.0000', '11.0087', '11.0087', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127332, '2022-10-21', 2169, 120362, 7123, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127333, '2022-10-21', 9995, 120363, 7123, 62382, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127334, '2022-10-21', 2169, 120364, 7123, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127335, '2022-10-21', 1398, 120365, 7123, 64595, '1.0000', '14.1238', '14.1238', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127336, '2022-10-21', 9999, 120366, 7123, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127337, '2022-10-21', 9695, 120367, 7123, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '15.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127338, '2022-10-21', 2916, 120368, 7124, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (127339, '2022-10-21', 9788, 120369, 7124, 64791, '1.0000', '1.8451', '1.8451', '2.5000', '2.5000', '77.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127340, '2022-10-21', 2029, 120370, 7124, 63798, '1.0000', '13.5000', '13.5000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127341, '2022-10-21', 2295, 120371, 7124, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127342, '2022-10-21', 2293, 120372, 7124, NULL, '5.0000', '1.1118', '1.1118', '1.5000', '1.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 (127343, '2022-10-21', 8979, 120373, 7124, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127344, '2022-10-21', 7954, 120374, 7124, 62424, '1.0000', '1.6365', '1.6365', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127345, '2022-10-21', 2821, 120375, 7124, NULL, '1.0000', '-40.2618', '-40.2618', '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 (127346, '2022-10-21', 2167, 120376, 7124, NULL, '1.0000', '-35.2864', '-35.2864', '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 (127347, '2022-10-21', 2169, 120377, 7124, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127348, '2022-10-21', 9791, 120378, 7124, 64592, '2.0000', '0.9575', '0.9575', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127349, '2022-10-21', 2777, 120379, 7124, 64868, '1.0000', '3.9835', '3.9835', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127350, '2022-10-21', 9953, 120380, 7125, 64793, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127351, '2022-10-21', 1863, 120381, 7125, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '77.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127352, '2022-10-21', 2384, 120382, 7125, NULL, '2.0000', '-312.4992', '-312.4992', '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 (127353, '2022-10-21', 8444, 120383, 7125, 62848, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127354, '2022-10-21', 2284, 120384, 7125, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127355, '2022-10-21', 2237, 120385, 7125, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127356, '2022-10-21', 9683, 120386, 7125, 65031, '1.0000', '1.9393', '1.9393', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127357, '2022-10-21', 1807, 120387, 7125, 64813, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '31.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127358, '2022-10-21', 1754, 120388, 7126, NULL, '1.0000', '90.0000', '90.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 (127359, '2022-10-21', 8979, 120389, 7126, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127360, '2022-10-21', 1912, 120390, 7126, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127361, '2022-10-21', 1310, 120391, 7126, 64020, '2.0000', '0.4288', '0.4288', '0.6000', '0.6000', '38.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127362, '2022-10-21', 9783, 120392, 7126, 64035, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127363, '2022-10-21', 1807, 120393, 7126, 64813, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127364, '2022-10-21', 10053, 120394, 7127, 65126, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127365, '2022-10-21', 7592, 120395, 7127, NULL, '2.0000', '8.6500', '8.6500', '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 (127366, '2022-10-21', 2289, 120396, 7127, NULL, '4.0000', '0.7150', '0.7150', '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 (127367, '2022-10-21', 9740, 120397, 7127, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127368, '2022-10-21', 1748, 120398, 7127, NULL, '2.0000', '0.3200', '0.3200', '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 (127369, '2022-10-21', 7954, 120399, 7128, NULL, '2.0000', '-133727.7176', '-133727.7176', '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 (127370, '2022-10-21', 7666, 120400, 7128, 65258, '1.0000', '5.9706', '5.9706', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127371, '2022-10-21', 8200, 120401, 7128, 64944, '1.0000', '9.7411', '9.7411', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127372, '2022-10-21', 8074, 120402, 7128, 62331, '1.0000', '25.5912', '25.5912', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127373, '2022-10-21', 7411, 120403, 7128, 65343, '2.0000', '1.5890', '1.5890', '3.0000', '3.0000', '73.0000', 1, 0, NULL, 572);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127374, '2022-10-21', 8746, 120404, 7128, 62518, '2.0000', '3.7068', '3.7068', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127375, '2022-10-21', 9974, 120405, 7128, 59420, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '7.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127376, '2022-10-21', 2063, 120406, 7128, 52439, '1.0000', '10.6325', '10.6325', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127377, '2022-10-21', 9956, 120407, 7128, 64404, '1.0000', '16.9935', '16.9935', '24.2900', '24.2900', '2.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127378, '2022-10-21', 9098, 120408, 7128, 62343, '1.0000', '26.0000', '26.0000', '34.5000', '34.5000', '3.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127379, '2022-10-21', 2656, 120409, 7128, 64105, '3.0000', '1.7467', '1.7467', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127380, '2022-10-21', 8288, 120410, 7128, NULL, '3.0000', '1.1434', '1.1434', '1.8000', '1.8000', '-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 (127381, '2022-10-21', 8878, 120411, 7128, 64386, '1.0000', '0.7033', '0.7033', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127382, '2022-10-21', 8765, 120412, 7128, 62516, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127383, '2022-10-21', 1935, 120413, 7128, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '72.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127384, '2022-10-21', 7411, 120414, 7128, 65343, '1.0000', '1.5890', '1.5890', '3.0000', '3.0000', '74.0000', 1, 0, NULL, 572);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127385, '2022-10-21', 7379, 120415, 7128, 64946, '1.0000', '9.0856', '9.0856', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127386, '2022-10-21', 7322, 120416, 7128, 57387, '1.0000', '6.4028', '6.4028', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127387, '2022-10-21', 2315, 120417, 7128, 64405, '5.0000', '0.7662', '0.7662', '1.0000', '1.0000', '73.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127388, '2022-10-21', 9734, 120418, 7129, 64835, '4.0000', '0.4609', '0.4609', '0.7000', '0.7000', '56.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127389, '2022-10-21', 8767, 120419, 7129, 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 (127390, '2022-10-21', 8771, 120420, 7129, 65036, '1.0000', '7.0796', '7.0796', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127391, '2022-10-21', 1837, 120421, 7129, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127392, '2022-10-21', 1306, 120422, 7129, 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 (127393, '2022-10-21', 7756, 120423, 7130, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127394, '2022-10-21', 1743, 120424, 7130, NULL, '1.0000', '3.5650', '3.5650', '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 (127395, '2022-10-21', 8979, 120425, 7130, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '35.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127396, '2022-10-21', 2169, 120426, 7130, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127397, '2022-10-21', 9740, 120427, 7130, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '47.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127398, '2022-10-21', 3033, 120428, 7131, 65285, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127399, '2022-10-21', 7608, 120429, 7131, NULL, '1.0000', '6.9800', '6.9800', '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 (127400, '2022-10-21', 2315, 120430, 7131, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127401, '2022-10-21', 2315, 120430, 7131, 60074, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127402, '2022-10-21', 1667, 120431, 7131, 65286, '1.0000', '17.5659', '17.5659', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127403, '2022-10-21', 1602, 120432, 7131, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127404, '2022-10-21', 2327, 120433, 7131, 64308, '2.0000', '3.6450', '3.6450', '6.0000', '6.0000', '16.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127405, '2022-10-21', 1425, 120434, 7131, 64963, '1.0000', '7.3728', '7.3728', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127406, '2022-10-21', 1736, 120435, 7131, 60060, '1.0000', '35.8601', '35.8601', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127407, '2022-10-21', 1787, 120436, 7131, 52255, '1.0000', '0.5595', '0.5595', '2.0000', '2.0000', '87.0000', 1, 0, NULL, 438);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127408, '2022-10-21', 8482, 120437, 7131, 65331, '1.0000', '18.3750', '18.3750', '24.5000', '24.5000', '11.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127409, '2022-10-21', 9958, 120438, 7131, 63398, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127410, '2022-10-21', 9840, 120439, 7131, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127411, '2022-10-21', 1746, 120440, 7131, NULL, '1.0000', '5.4625', '5.4625', '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 (127412, '2022-10-21', 1863, 120441, 7131, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '105.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127413, '2022-10-21', 1935, 120442, 7131, 65304, '1.0000', '1.1572', '1.1572', '2.0000', '2.0000', '53.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127414, '2022-10-21', 9750, 120443, 7131, 62791, '1.0000', '3.5706', '3.5706', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127415, '2022-10-21', 1812, 120444, 7131, 64964, '3.0000', '9.1804', '9.1804', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127416, '2022-10-21', 2655, 120445, 7131, 65055, '1.0000', '7.2241', '7.2241', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127417, '2022-10-21', 2656, 120446, 7131, 65056, '1.0000', '1.6007', '1.6007', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127418, '2022-10-21', 1783, 120447, 7131, 65292, '3.0000', '5.5021', '5.5021', '17.5000', '17.5000', '12.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127419, '2022-10-21', 2315, 120448, 7131, 62801, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127420, '2022-10-21', 2302, 120449, 7131, 64965, '1.0000', '5.7084', '5.7084', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127421, '2022-10-21', 2656, 120450, 7131, 65056, '1.0000', '1.6007', '1.6007', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127422, '2022-10-21', 7787, 120451, 7131, NULL, '1.0000', '10.9000', '10.9000', '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 (127423, '2022-10-21', 2363, 120452, 7131, 58755, '1.0000', '7.9124', '7.9124', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127424, '2022-10-21', 7411, 120453, 7131, NULL, '1.0000', '1.5882', '1.5882', '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 (127425, '2022-10-21', 1843, 120454, 7131, 49134, '1.0000', '4.6200', '4.6200', '9.5000', '9.5000', '37.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127426, '2022-10-21', 2643, 120455, 7131, 65054, '1.0000', '1.0597', '1.0597', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127427, '2022-10-21', 7802, 120456, 7131, NULL, '1.0000', '1.3468', '1.3468', '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 (127428, '2022-10-21', 1337, 120457, 7131, 23592, '1.0000', '2.2526', '2.2526', '4.0000', '4.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 (127429, '2022-10-21', 1863, 120458, 7131, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '105.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127430, '2022-10-21', 2289, 120459, 7131, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '32.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127431, '2022-10-21', 7483, 120460, 7131, NULL, '2.0000', '0.7400', '0.7400', '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 (127432, '2022-10-21', 1690, 120461, 7131, 64968, '1.0000', '8.0628', '8.0628', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127433, '2022-10-22', 1342, 120462, 7132, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127434, '2022-10-22', 9840, 120463, 7132, 64598, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127435, '2022-10-22', 2169, 120464, 7132, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127436, '2022-10-22', 1529, 120465, 7132, 64737, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127437, '2022-10-22', 1612, 120466, 7132, NULL, '1.0000', '1.6000', '1.6000', '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 (127438, '2022-10-22', 9947, 120467, 7132, 62113, '1.0000', '8.5000', '8.5000', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127439, '2022-10-22', 2083, 120468, 7132, 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 (127440, '2022-10-22', 2315, 120469, 7132, NULL, '2.0000', '0.7700', '0.7700', '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 (127441, '2022-10-22', 1612, 120470, 7132, NULL, '1.0000', '1.6000', '1.6000', '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 (127442, '2022-10-22', 1812, 120471, 7132, 64583, '2.0000', '9.4505', '9.4505', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127443, '2022-10-22', 2384, 120472, 7132, NULL, '3.0000', '-312.4992', '-312.4992', '0.8000', '0.8000', '-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 (127444, '2022-10-22', 10004, 120473, 7132, 62129, '10.0000', '2.5100', '2.5100', '3.0000', '3.0000', '93.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127445, '2022-10-22', 9671, 120474, 7132, 64571, '1.0000', '32.0000', '32.0000', '42.5000', '42.5000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127446, '2022-10-22', 2994, 120475, 7133, 64871, '1.0000', '7.5978', '7.5978', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127447, '2022-10-22', 1888, 120476, 7133, 64718, '1.0000', '20.7394', '20.7394', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127448, '2022-10-22', 2994, 120477, 7133, 64871, '1.0000', '7.5978', '7.5978', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127449, '2022-10-22', 8420, 120478, 7133, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '9.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127450, '2022-10-22', 9921, 120479, 7133, 60358, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127451, '2022-10-22', 1529, 120480, 7133, 62135, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127452, '2022-10-22', 2237, 120481, 7133, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127453, '2022-10-22', 2295, 120482, 7133, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127454, '2022-10-22', 7672, 120483, 7133, 39816, '1.0000', '1.0200', '1.0200', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127455, '2022-10-22', 9791, 120484, 7133, 64592, '1.0000', '0.9575', '0.9575', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127456, '2022-10-22', 2315, 120485, 7133, NULL, '1.0000', '0.7700', '0.7700', '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 (127457, '2022-10-22', 1501, 120486, 7133, NULL, '1.0000', '-2.2016', '-2.2016', '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 (127458, '2022-10-22', 2386, 120487, 7133, 56437, '1.0000', '2.8183', '2.8183', '4.5000', '4.5000', '6.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127459, '2022-10-22', 9902, 120488, 7133, 63991, '2.0000', '8.7884', '8.7884', '12.0000', '12.0000', '11.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127460, '2022-10-22', 3028, 120489, 7133, 63771, '1.0000', '0.7380', '0.7380', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127461, '2022-10-22', 1935, 120490, 7133, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '33.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127462, '2022-10-22', 1841, 120491, 7133, NULL, '5.0000', '0.7630', '0.7630', '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 (127463, '2022-10-22', 8208, 120492, 7133, NULL, '5.0000', '63.9119', '63.9119', '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 (127464, '2022-10-22', 8746, 120493, 7133, 63444, '1.0000', '3.4596', '3.4596', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127465, '2022-10-22', 1602, 120494, 7133, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '28.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127466, '2022-10-22', 2379, 120495, 7133, NULL, '1.0000', '-154.5325', '-154.5325', '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 (127467, '2022-10-22', 1871, 120496, 7133, NULL, '14.0000', '-20821086.1374', '-20821086.1374', '4.5000', '4.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 (127468, '2022-10-22', 3044, 120497, 7133, 62830, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127469, '2022-10-22', 9751, 120498, 7133, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127470, '2022-10-22', 8979, 120499, 7133, 65045, '4.0000', '0.9763', '0.9763', '2.0000', '2.0000', '31.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127471, '2022-10-22', 9089, 120500, 7133, 63454, '2.0000', '11.7616', '11.7616', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127472, '2022-10-22', 9089, 120501, 7133, 63454, '1.0000', '11.7616', '11.7616', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127473, '2022-10-22', 8740, 120502, 7133, 63480, '2.0000', '2.0585', '2.0585', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127474, '2022-10-22', 1612, 120503, 7133, NULL, '1.0000', '1.6000', '1.6000', '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 (127475, '2022-10-22', 9729, 120504, 7133, 64805, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127476, '2022-10-22', 9030, 120505, 7133, NULL, '1.0000', '12.9000', '12.9000', '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 (127477, '2022-10-22', 1841, 120506, 7133, NULL, '2.0000', '0.7630', '0.7630', '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 (127478, '2022-10-22', 1711, 120507, 7133, 53679, '1.0000', '11.0087', '11.0087', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127479, '2022-10-22', 1410, 120508, 7133, NULL, '1.0000', '2046.5555', '2046.5555', '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 (127480, '2022-10-22', 1342, 120509, 7134, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127481, '2022-10-22', 8881, 120510, 7134, 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 (127482, '2022-10-22', 1759, 120511, 7135, 63979, '1.0000', '15.6238', '15.6238', '18.0000', '18.0000', '3.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127483, '2022-10-22', 8740, 120512, 7135, 60522, '1.0000', '2.0000', '2.0000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127484, '2022-10-22', 8900, 120513, 7135, NULL, '10.0000', '16.4000', '16.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 (127485, '2022-10-22', 2414, 120514, 7135, NULL, '2.0000', '6.3400', '6.3400', '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 (127486, '2022-10-22', 7799, 120515, 7135, NULL, '1.0000', '2.0000', '2.0000', '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 (127487, '2022-10-22', 9846, 120516, 7135, 64327, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127488, '2022-10-22', 1763, 120517, 7135, 60050, '1.0000', '5.0170', '5.0170', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127489, '2022-10-22', 8482, 120518, 7135, 65331, '1.0000', '18.3750', '18.3750', '24.5000', '24.5000', '10.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127490, '2022-10-22', 2169, 120519, 7135, 65305, '1.0000', '1.5623', '1.5623', '3.0000', '3.0000', '59.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127491, '2022-10-22', 2491, 120520, 7135, 64538, '1.0000', '14.7171', '14.7171', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127492, '2022-10-22', 9943, 120521, 7135, 64310, '1.0000', '13.1867', '13.1867', '19.0000', '19.0000', '4.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127493, '2022-10-22', 2273, 120522, 7135, 64962, '1.0000', '3.0909', '3.0909', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127494, '2022-10-22', 2315, 120523, 7135, 60074, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127495, '2022-10-22', 2762, 120524, 7135, 64298, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127496, '2022-10-22', 9942, 120525, 7135, 65288, '1.0000', '12.0571', '12.0571', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127497, '2022-10-22', 2864, 120526, 7135, 59978, '2.0000', '1.4045', '1.4045', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127498, '2022-10-22', 7400, 120527, 7136, 64941, '1.0000', '24.0258', '24.0258', '39.5000', '39.5000', '2.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127499, '2022-10-22', 9219, 120528, 7136, 60173, '2.0000', '-5.1627', '-5.1627', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127500, '2022-10-22', 1935, 120529, 7136, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127501, '2022-10-22', 8086, 120530, 7136, NULL, '1.0000', '9.3820', '9.3820', '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 (127502, '2022-10-22', 8924, 120531, 7136, 62322, '1.0000', '6.7845', '6.7845', '10.5000', '10.5000', '16.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127503, '2022-10-22', 8889, 120532, 7136, 64096, '1.0000', '41.5193', '41.5193', '55.0000', '55.0000', '1.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127504, '2022-10-22', 1935, 120533, 7136, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127505, '2022-10-22', 7917, 120534, 7136, 64393, '2.0000', '1.4670', '1.4670', '0.8000', '0.8000', '97.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127506, '2022-10-22', 7880, 120535, 7136, 65255, '1.0000', '1.6504', '1.6504', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127507, '2022-10-22', 1501, 120536, 7136, 65254, '1.0000', '3.2302', '3.2302', '5.5000', '5.5000', '19.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127508, '2022-10-22', 7385, 120537, 7136, 65251, '2.0000', '5.0577', '5.0577', '4.5000', '4.5000', '57.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127509, '2022-10-22', 9747, 120538, 7136, 64239, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127510, '2022-10-22', 8254, 120539, 7136, 64938, '1.0000', '32.7032', '32.7032', '51.5000', '51.5000', '4.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127511, '2022-10-22', 9791, 120540, 7136, 50485, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '83.0000', 1, 0, NULL, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127512, '2022-10-22', 7780, 120541, 7136, 63912, '1.0000', '15.9431', '15.9431', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127513, '2022-10-22', 7612, 120542, 7136, NULL, '1.0000', '2.3846', '2.3846', '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 (127514, '2022-10-22', 7715, 120543, 7136, 59337, '1.0000', '4.0417', '4.0417', '6.0000', '6.0000', '15.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127515, '2022-10-22', 1332, 120544, 7136, 52470, '1.0000', '-73.0510', '-73.0510', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 433);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127516, '2022-10-22', 2315, 120545, 7136, 64405, '1.0000', '0.7662', '0.7662', '1.0000', '1.0000', '72.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127517, '2022-10-22', 7959, 120546, 7136, NULL, '1.0000', '-15.6222', '-15.6222', '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 (127518, '2022-10-22', 9092, 120547, 7136, 64935, '2.0000', '0.4265', '0.4265', '1.0000', '1.0000', '161.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127519, '2022-10-22', 7883, 120548, 7136, 62334, '1.0000', '33.8000', '33.8000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127520, '2022-10-22', 8032, 120549, 7136, 61893, '1.0000', '6.9554', '6.9554', '9.5000', '9.5000', '18.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127521, '2022-10-22', 8457, 120550, 7136, NULL, '1.0000', '-8.0516', '-8.0516', '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 (127522, '2022-10-22', 7457, 120551, 7136, 64894, '1.0000', '5.5337', '5.5337', '12.0000', '12.0000', '6.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127523, '2022-10-22', 1804, 120552, 7136, 63865, '1.0000', '6.1343', '6.1343', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127524, '2022-10-22', 7708, 120553, 7136, 64897, '1.0000', '8.8676', '8.8676', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127525, '2022-10-22', 8927, 120554, 7136, NULL, '4.0000', '36.0000', '36.0000', '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 (127526, '2022-10-22', 1760, 120555, 7136, 57610, '3.0000', '21614.2907', '21614.2907', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127527, '2022-10-22', 9503, 120556, 7136, 61743, '1.0000', '1.2679', '1.2679', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127528, '2022-10-22', 8645, 120557, 7136, 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 (127529, '2022-10-22', 7781, 120558, 7136, NULL, '3.0000', '15.5167', '15.5167', '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 (127530, '2022-10-22', 7473, 120559, 7136, 64899, '5.0000', '0.5464', '0.5464', '0.8000', '0.8000', '98.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127531, '2022-10-22', 9092, 120560, 7136, 64935, '2.0000', '0.4265', '0.4265', '1.0000', '1.0000', '161.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127532, '2022-10-22', 7589, 120561, 7136, 46257, '1.0000', '1.9144', '1.9144', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127533, '2022-10-22', 7446, 120562, 7136, 59147, '1.0000', '1.6896', '1.6896', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127534, '2022-10-22', 2256, 120563, 7136, 47953, '1.0000', '14.5250', '14.5250', '24.0000', '24.0000', '1.0000', 1, 0, NULL, 352);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127535, '2022-10-22', 7438, 120564, 7136, 65268, '1.0000', '18.9695', '18.9695', '71.0000', '71.0000', '2.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127536, '2022-10-22', 7317, 120565, 7136, 64236, '1.0000', '15.9122', '15.9122', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127537, '2022-10-22', 10003, 120566, 7136, 64381, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127538, '2022-10-22', 7639, 120567, 7136, 61814, '1.0000', '7.0556', '7.0556', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127539, '2022-10-22', 7385, 120568, 7136, 65251, '1.0000', '5.0577', '5.0577', '4.5000', '4.5000', '58.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127540, '2022-10-22', 7514, 120569, 7136, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127541, '2022-10-22', 7334, 120570, 7136, 64952, '1.0000', '10.2321', '10.2321', '17.5000', '17.5000', '11.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127542, '2022-10-22', 7630, 120571, 7136, 59310, '4.0000', '4.5400', '4.5400', '4.5000', '4.5000', '22.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127543, '2022-10-22', 8135, 120572, 7136, 63866, '1.0000', '4.1634', '4.1634', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127544, '2022-10-22', 9463, 120573, 7136, 64380, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127545, '2022-10-22', 7558, 120574, 7136, 65265, '1.0000', '3.3300', '3.3300', '4.5000', '4.5000', '4.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127546, '2022-10-22', 7703, 120575, 7136, NULL, '1.0000', '-4961.0093', '-4961.0093', '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 (127547, '2022-10-22', 7459, 120576, 7136, 65253, '1.0000', '20.2476', '20.2476', '5.0000', '5.0000', '49.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127548, '2022-10-22', 2289, 120577, 7136, NULL, '1.0000', '4.0652', '4.0652', '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 (127549, '2022-10-22', 7473, 120578, 7136, 64899, '4.0000', '0.5464', '0.5464', '0.8000', '0.8000', '99.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127550, '2022-10-22', 9202, 120579, 7136, NULL, '1.0000', '2.1700', '2.1700', '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 (127551, '2022-10-22', 7376, 120580, 7136, 57405, '1.0000', '-177.0400', '-177.0400', '18.7500', '18.7500', '0.0000', 1, 0, NULL, 497);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127552, '2022-10-22', 7661, 120581, 7136, 63882, '1.0000', '9.8168', '9.8168', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127553, '2022-10-22', 7518, 120582, 7136, 65242, '1.0000', '9.9576', '9.9576', '14.5000', '14.5000', '17.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127554, '2022-10-22', 1321, 120583, 7136, NULL, '1.0000', '9.8000', '9.8000', '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 (127555, '2022-10-22', 10003, 120584, 7136, 64381, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127556, '2022-10-22', 7770, 120585, 7137, 63862, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127557, '2022-10-22', 8918, 120586, 7137, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127558, '2022-10-22', 9329, 120587, 7137, 64948, '1.0000', '-2610.4501', '-2610.4501', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127559, '2022-10-22', 9942, 120588, 7137, 64258, '1.0000', '8.9119', '8.9119', '18.0000', '18.0000', '5.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127560, '2022-10-22', 7641, 120589, 7137, 65247, '1.0000', '7.8434', '7.8434', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127561, '2022-10-22', 7547, 120590, 7137, NULL, '4.0000', '-0.3235', '-0.3235', '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 (127562, '2022-10-22', 9695, 120591, 7137, 62530, '1.0000', '5.9282', '5.9282', '9.0000', '9.0000', '10.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127563, '2022-10-22', 8105, 120592, 7137, 63846, '2.0000', '5.5400', '5.5400', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127564, '2022-10-22', 7709, 120593, 7137, 65344, '1.0000', '-15445.5182', '-15445.5182', '6.5000', '6.5000', '9.0000', 1, 0, NULL, 572);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127565, '2022-10-22', 7708, 120594, 7137, 64897, '1.0000', '8.8676', '8.8676', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127566, '2022-10-22', 9445, 120595, 7137, 63900, '1.0000', '15.0083', '15.0083', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127567, '2022-10-22', 2351, 120596, 7137, 61859, '1.0000', '18.1659', '18.1659', '24.5000', '24.5000', '4.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127568, '2022-10-22', 7524, 120597, 7137, 65243, '2.0000', '5.7520', '5.7520', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127569, '2022-10-22', 7560, 120598, 7137, 65345, '1.0000', '45.5314', '45.5314', '74.5000', '74.5000', '4.0000', 1, 0, NULL, 572);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127570, '2022-10-22', 8407, 120599, 7137, 48379, '1.0000', '1.6726', '1.6726', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 321);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127571, '2022-10-22', 9202, 120600, 7137, NULL, '1.0000', '2.1700', '2.1700', '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 (127572, '2022-10-22', 9863, 120601, 7137, 56014, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 474);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127573, '2022-10-22', 8712, 120602, 7137, 64908, '1.0000', '6.8664', '6.8664', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127574, '2022-10-22', 8482, 120603, 7137, 65264, '1.0000', '20.0094', '20.0094', '24.5000', '24.5000', '10.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127575, '2022-10-22', 7954, 120604, 7137, NULL, '4.0000', '-133727.7176', '-133727.7176', '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 (127576, '2022-10-22', 7514, 120605, 7137, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127577, '2022-10-22', 7917, 120606, 7137, 64393, '1.0000', '1.4670', '1.4670', '0.8000', '0.8000', '96.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127578, '2022-10-22', 7636, 120607, 7137, 57623, '2.0000', '1.3285', '1.3285', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127579, '2022-10-22', 7316, 120608, 7137, 64888, '10.0000', '0.9705', '0.9705', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127580, '2022-10-22', 7509, 120609, 7137, 65240, '1.0000', '8.9741', '8.9741', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127581, '2022-10-22', 7781, 120610, 7137, NULL, '1.0000', '15.5167', '15.5167', '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 (127582, '2022-10-22', 7713, 120611, 7138, 50666, '1.0000', '0.3910', '0.3910', '0.6000', '0.6000', '68.0000', 1, 0, NULL, 415);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127583, '2022-10-22', 9092, 120612, 7138, 64935, '3.0000', '0.4265', '0.4265', '1.0000', '1.0000', '156.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127584, '2022-10-22', 1602, 120613, 7139, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127585, '2022-10-22', 1425, 120614, 7139, 64963, '1.0000', '7.3728', '7.3728', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127586, '2022-10-22', 2655, 120615, 7139, 63147, '1.0000', '7.2241', '7.2241', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 540);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127587, '2022-10-22', 2863, 120616, 7139, 17483, '1.0000', '0.2000', '0.2000', '0.3000', '0.3000', '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 (127588, '2022-10-22', 8065, 120617, 7139, NULL, '2.0000', '-88.3120', '-88.3120', '77.0000', '77.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 (127589, '2022-10-22', 8482, 120618, 7139, 65331, '1.0000', '18.3750', '18.3750', '24.5000', '24.5000', '9.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127590, '2022-10-22', 2070, 120619, 7139, 65325, '1.0000', '2.5445', '2.5445', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127591, '2022-10-22', 7524, 120620, 7139, NULL, '3.0000', '11.9500', '11.9500', '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 (127592, '2022-10-22', 2327, 120621, 7139, 64308, '2.0000', '3.6450', '3.6450', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127593, '2022-10-22', 7639, 120622, 7139, NULL, '1.0000', '5.8250', '5.8250', '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 (127594, '2022-10-22', 7917, 120623, 7139, NULL, '3.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (127595, '2022-10-22', 8444, 120624, 7139, 64544, '1.0000', '2.1250', '2.1250', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127596, '2022-10-22', 1383, 120625, 7139, 65290, '1.0000', '5.8471', '5.8471', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127597, '2022-10-22', 7672, 120626, 7139, 59981, '1.0000', '1.3852', '1.3852', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127598, '2022-10-22', 7798, 120627, 7139, NULL, '1.0000', '22.9100', '22.9100', '30.5000', '30.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127599, '2022-10-22', 2411, 120628, 7139, 65293, '1.0000', '2.0406', '2.0406', '4.0000', '4.0000', '29.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127600, '2022-10-22', 1715, 120629, 7139, 65284, '1.0000', '8.0782', '8.0782', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127601, '2022-10-22', 9827, 120630, 7139, 61667, '1.0000', '16.6952', '16.6952', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127602, '2022-10-22', 2656, 120631, 7139, 65056, '1.0000', '1.6007', '1.6007', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127603, '2022-10-22', 1840, 120632, 7139, 62749, '3.0000', '0.2400', '0.2400', '0.5000', '0.5000', '72.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127604, '2022-10-22', 1841, 120633, 7139, 62748, '3.0000', '0.3143', '0.3143', '0.5000', '0.5000', '71.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127605, '2022-10-22', 2289, 120634, 7139, 62763, '3.0000', '0.2648', '0.2648', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127606, '2022-10-22', 1935, 120635, 7139, 65304, '1.0000', '1.1572', '1.1572', '2.0000', '2.0000', '52.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127607, '2022-10-22', 7333, 120636, 7139, NULL, '1.0000', '3.8000', '3.8000', '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 (127608, '2022-10-22', 2858, 120637, 7139, NULL, '2.0000', '1.0000', '1.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 (127609, '2022-10-22', 1912, 120638, 7139, 64479, '2.0000', '0.7008', '0.7008', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127610, '2022-10-22', 2169, 120639, 7139, 65305, '1.0000', '1.5623', '1.5623', '3.0000', '3.0000', '58.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127611, '2022-10-22', 1863, 120640, 7139, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '103.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127612, '2022-10-22', 7753, 120641, 7139, NULL, '1.0000', '10.3067', '10.3067', '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 (127613, '2022-10-22', 1904, 120642, 7139, 65289, '1.0000', '10.4131', '10.4131', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127614, '2022-10-22', 1665, 120643, 7139, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '136.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127615, '2022-10-22', 1371, 120644, 7139, 41971, '1.0000', '1689.4066', '1689.4066', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127616, '2022-10-22', 9763, 120645, 7140, 64600, '2.0000', '2.8399', '2.8399', '4.0000', '4.0000', '13.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127617, '2022-10-22', 2163, 120646, 7140, 64073, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127618, '2022-10-22', 2327, 120647, 7140, 64728, '1.0000', '3.8977', '3.8977', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127619, '2022-10-22', 2416, 120648, 7140, 65027, '2.0000', '1.3985', '1.3985', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127620, '2022-10-22', 3044, 120649, 7140, 62830, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127621, '2022-10-22', 2100, 120650, 7140, NULL, '1.0000', '-4.4545', '-4.4545', '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 (127622, '2022-10-22', 1871, 120651, 7140, NULL, '2.0000', '-20821086.1374', '-20821086.1374', '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 (127623, '2022-10-22', 8444, 120652, 7140, 62848, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127624, '2022-10-22', 1609, 120653, 7140, 64579, '1.0000', '-1.7500', '-1.7500', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127625, '2022-10-22', 2315, 120654, 7140, NULL, '1.0000', '0.7700', '0.7700', '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 (127626, '2022-10-22', 9734, 120655, 7140, 64835, '3.0000', '0.4609', '0.4609', '0.7000', '0.7000', '53.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127627, '2022-10-22', 2506, 120656, 7140, NULL, '1.0000', '-29.1041', '-29.1041', '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 (127628, '2022-10-22', 7744, 120657, 7140, NULL, '3.0000', '2.5833', '2.5833', '5.5000', '5.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 (127629, '2022-10-22', 9750, 120658, 7140, NULL, '1.0000', '2.3934', '2.3934', '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 (127630, '2022-10-22', 9695, 120659, 7140, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '14.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127631, '2022-10-22', 1338, 120660, 7140, 65120, '1.0000', '6.3360', '6.3360', '9.5000', '9.5000', '9.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127632, '2022-10-22', 8384, 120661, 7140, 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 (127633, '2022-10-22', 1812, 120662, 7140, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127634, '2022-10-22', 1779, 120663, 7140, 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 (127635, '2022-10-22', 2362, 120664, 7140, 18935, '1.0000', '84.7015', '84.7015', '179.0000', '179.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 (127636, '2022-10-22', 9905, 120665, 7140, NULL, '1.0000', '17.0000', '17.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 (127637, '2022-10-22', 1871, 120666, 7140, NULL, '10.0000', '-20821086.1374', '-20821086.1374', '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 (127638, '2022-10-22', 8743, 120667, 7140, 65037, '1.0000', '26.3414', '26.3414', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127639, '2022-10-22', 1410, 120668, 7140, NULL, '1.0000', '2046.5555', '2046.5555', '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 (127640, '2022-10-22', 9734, 120669, 7140, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '55.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127641, '2022-10-22', 10004, 120670, 7140, 62129, '20.0000', '2.5100', '2.5100', '3.0000', '3.0000', '73.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127642, '2022-10-22', 2324, 120671, 7140, 63786, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127643, '2022-10-22', 2384, 120672, 7140, NULL, '1.0000', '-312.4992', '-312.4992', '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 (127644, '2022-10-22', 9871, 120673, 7140, 65032, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127645, '2022-10-22', 9695, 120674, 7140, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '14.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127646, '2022-10-22', 2384, 120675, 7140, NULL, '3.0000', '-312.4992', '-312.4992', '0.8000', '0.8000', '-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 (127647, '2022-10-22', 9734, 120676, 7140, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '55.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127648, '2022-10-22', 9699, 120677, 7140, 44151, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127649, '2022-10-22', 8934, 120678, 7140, 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 (127650, '2022-10-22', 2250, 120679, 7140, 64731, '1.0000', '9.6811', '9.6811', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127651, '2022-10-22', 1446, 120680, 7140, NULL, '1.0000', '6.6040', '6.6040', '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 (127652, '2022-10-22', 2095, 120681, 7140, NULL, '1.0000', '-116.5000', '-116.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 (127653, '2022-10-22', 8184, 120682, 7140, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (127654, '2022-10-22', 2105, 120683, 7140, 64858, '2.0000', '2.9790', '2.9790', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127655, '2022-10-22', 1945, 120684, 7140, 64587, '1.0000', '13.0067', '13.0067', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127656, '2022-10-22', 10054, 120685, 7140, 65127, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127657, '2022-10-22', 7802, 120686, 7140, NULL, '3.0000', '1.1497', '1.1497', '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 (127658, '2022-10-22', 2242, 120687, 7140, NULL, '3.0000', '1.2664', '1.2664', '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 (127659, '2022-10-22', 1666, 120688, 7140, 64787, '1.0000', '3.2073', '3.2073', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127660, '2022-10-22', 9578, 120689, 7140, 53955, '1.0000', '8.0000', '8.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127661, '2022-10-22', 10006, 120690, 7140, NULL, '1.0000', '12.9800', '12.9800', '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 (127662, '2022-10-22', 8979, 120691, 7140, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127663, '2022-10-22', 9735, 120692, 7140, 64836, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127664, '2022-10-22', 2237, 120693, 7140, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '24.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127665, '2022-10-22', 2916, 120694, 7140, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (127666, '2022-10-22', 9741, 120695, 7140, NULL, '1.0000', '7.8500', '7.8500', '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 (127667, '2022-10-22', 2169, 120696, 7140, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127668, '2022-10-22', 1504, 120697, 7140, 63998, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127669, '2022-10-22', 1855, 120698, 7140, NULL, '1.0000', '1.3076', '1.3076', '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 (127670, '2022-10-22', 2315, 120699, 7140, NULL, '1.0000', '0.7700', '0.7700', '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 (127671, '2022-10-22', 1667, 120700, 7140, 65133, '1.0000', '9.7806', '9.7806', '14.5000', '14.5000', '6.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127672, '2022-10-22', 2096, 120701, 7140, 64821, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127673, '2022-10-22', 1652, 120702, 7140, 64853, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127674, '2022-10-22', 8866, 120703, 7140, NULL, '1.0000', '0.4300', '0.4300', '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 (127675, '2022-10-22', 1922, 120704, 7140, 60300, '1.0000', '-11.5000', '-11.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127676, '2022-10-22', 1812, 120705, 7140, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127677, '2022-10-22', 9999, 120706, 7140, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127678, '2022-10-22', 8963, 120707, 7140, 64715, '1.0000', '15.5668', '15.5668', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127679, '2022-10-22', 1761, 120708, 7140, 65135, '1.0000', '2.1863', '2.1863', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127680, '2022-10-22', 2604, 120709, 7140, 23993, '1.0000', '90.0000', '90.0000', '110.0000', '110.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 (127681, '2022-10-22', 9819, 120710, 7140, 62425, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127682, '2022-10-22', 9482, 120711, 7140, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '222.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127683, '2022-10-22', 7926, 120712, 7140, NULL, '1.0000', '6.8265', '6.8265', '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 (127684, '2022-10-22', 8482, 120713, 7140, 64077, '1.0000', '18.0579', '18.0579', '24.5000', '24.5000', '12.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127685, '2022-10-22', 7802, 120714, 7140, NULL, '3.0000', '1.1497', '1.1497', '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 (127686, '2022-10-22', 1935, 120715, 7140, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127687, '2022-10-22', 9788, 120716, 7140, 64791, '1.0000', '1.8451', '1.8451', '2.5000', '2.5000', '76.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127688, '2022-10-22', 2250, 120717, 7140, 64731, '1.0000', '9.6811', '9.6811', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127689, '2022-10-22', 9671, 120718, 7140, 64571, '1.0000', '32.0000', '32.0000', '42.5000', '42.5000', '1.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127690, '2022-10-22', 1763, 120719, 7140, NULL, '1.0000', '4.6631', '4.6631', '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 (127691, '2022-10-22', 9750, 120720, 7140, NULL, '1.0000', '2.3934', '2.3934', '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 (127692, '2022-10-22', 8746, 120721, 7140, 63444, '2.0000', '3.4596', '3.4596', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127693, '2022-10-22', 9999, 120722, 7140, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127694, '2022-10-22', 2964, 120723, 7140, NULL, '1.0000', '18320683.0450', '18320683.0450', '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 (127695, '2022-10-22', 1904, 120724, 7140, 62413, '1.0000', '1.1631', '1.1631', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127696, '2022-10-22', 2260, 120725, 7140, 64746, '1.0000', '5.2018', '5.2018', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127697, '2022-10-22', 9762, 120726, 7140, 62148, '1.0000', '2.4669', '2.4669', '3.5000', '3.5000', '13.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127698, '2022-10-22', 7411, 120727, 7140, NULL, '1.0000', '1.2819', '1.2819', '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 (127699, '2022-10-22', 1639, 120728, 7140, 64054, '1.0000', '7.6530', '7.6530', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127700, '2022-10-22', 9791, 120729, 7140, 64592, '2.0000', '0.9575', '0.9575', '1.5000', '1.5000', '34.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127701, '2022-10-22', 2038, 120730, 7140, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127702, '2022-10-22', 2516, 120731, 7140, 61466, '1.0000', '13.0000', '13.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 525);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127703, '2022-10-22', 1935, 120732, 7140, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '32.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127704, '2022-10-22', 2088, 120733, 7140, 64601, '1.0000', '2.9062', '2.9062', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127705, '2022-10-23', 7737, 120734, 7141, NULL, '1.0000', '3.0000', '3.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 (127706, '2022-10-23', 8979, 120735, 7141, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127707, '2022-10-23', 9683, 120736, 7141, 65031, '1.0000', '1.9393', '1.9393', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127708, '2022-10-23', 9740, 120737, 7141, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127709, '2022-10-23', 2821, 120738, 7141, NULL, '1.0000', '-40.2618', '-40.2618', '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 (127710, '2022-10-23', 3016, 120739, 7141, 65136, '1.0000', '14.6113', '14.6113', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127711, '2022-10-23', 1874, 120740, 7141, NULL, '1.0000', '-24.5000', '-24.5000', '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 (127712, '2022-10-23', 8065, 120741, 7141, NULL, '1.0000', '32.0000', '32.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127713, '2022-10-23', 8482, 120742, 7141, 64077, '1.0000', '18.0579', '18.0579', '24.5000', '24.5000', '11.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127714, '2022-10-23', 2854, 120743, 7141, NULL, '1.0000', '2.0667', '2.0667', '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 (127715, '2022-10-23', 8086, 120744, 7141, NULL, '1.0000', '9.3000', '9.3000', '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 (127716, '2022-10-23', 1809, 120745, 7141, 61547, '1.0000', '11.0494', '11.0494', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127717, '2022-10-23', 1529, 120746, 7141, 62135, '1.0000', '5.1123', '5.1123', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127718, '2022-10-23', 2916, 120747, 7141, NULL, '1.0000', '-37250.0220', '-37250.0220', '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 (127719, '2022-10-23', 1368, 120748, 7141, 64869, '1.0000', '6.3956', '6.3956', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127720, '2022-10-23', 2289, 120749, 7141, NULL, '6.0000', '0.7150', '0.7150', '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 (127721, '2022-10-23', 9956, 120750, 7141, 64625, '1.0000', '17.7875', '17.7875', '24.2900', '24.2900', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127722, '2022-10-23', 2270, 120751, 7141, 64789, '1.0000', '5.0657', '5.0657', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127723, '2022-10-23', 1855, 120752, 7141, NULL, '1.0000', '1.3076', '1.3076', '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 (127724, '2022-10-23', 1935, 120753, 7141, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127725, '2022-10-23', 9740, 120754, 7141, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '46.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127726, '2022-10-23', 2315, 120755, 7141, NULL, '2.0000', '0.7700', '0.7700', '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 (127727, '2022-10-23', 9775, 120756, 7141, 64859, '1.0000', '10.3840', '10.3840', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127728, '2022-10-23', 1688, 120757, 7141, 62073, '1.0000', '23.7000', '23.7000', '39.5000', '39.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127729, '2022-10-23', 7741, 120758, 7141, NULL, '1.0000', '-174.4114', '-174.4114', '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 (127730, '2022-10-23', 8622, 120759, 7141, NULL, '1.0000', '1.4900', '1.4900', '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 (127731, '2022-10-23', 9578, 120760, 7141, 53955, '1.0000', '8.0000', '8.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 453);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127732, '2022-10-23', 9482, 120761, 7141, 64050, '2.0000', '1.2046', '1.2046', '2.0000', '2.0000', '220.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127733, '2022-10-23', 9775, 120762, 7142, 64590, '1.0000', '10.3840', '10.3840', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127734, '2022-10-23', 10021, 120763, 7142, 62154, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127735, '2022-10-23', 10053, 120764, 7142, 65126, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127736, '2022-10-23', 3001, 120765, 7142, 37759, '2.0000', '2.5621', '2.5621', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127737, '2022-10-23', 1935, 120766, 7142, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127738, '2022-10-23', 1812, 120767, 7143, 64583, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127739, '2022-10-23', 1602, 120768, 7143, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '27.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127740, '2022-10-23', 1855, 120769, 7144, NULL, '2.0000', '1.3076', '1.3076', '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 (127741, '2022-10-23', 1386, 120770, 7144, 62404, '1.0000', '4.8042', '4.8042', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127742, '2022-10-23', 9788, 120771, 7144, 64791, '1.0000', '1.8451', '1.8451', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127743, '2022-10-23', 9999, 120772, 7145, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127744, '2022-10-23', 7589, 120773, 7146, 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 (127745, '2022-10-23', 9329, 120774, 7146, NULL, '1.0000', '6.7000', '6.7000', '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 (127746, '2022-10-23', 8866, 120775, 7146, NULL, '1.0000', '0.4300', '0.4300', '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 (127747, '2022-10-23', 9092, 120776, 7146, NULL, '1.0000', '5.2900', '5.2900', '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 (127748, '2022-10-23', 9399, 120777, 7146, NULL, '1.0000', '0.9800', '0.9800', '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 (127749, '2022-10-23', 7558, 120778, 7146, NULL, '10.0000', '1.9700', '1.9700', '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 (127750, '2022-10-23', 8288, 120779, 7146, NULL, '2.0000', '1.1600', '1.1600', '1.8000', '1.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 (127751, '2022-10-23', 7762, 120780, 7146, NULL, '1.0000', '1.5000', '1.5000', '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 (127752, '2022-10-23', 7412, 120781, 7146, NULL, '1.0000', '1.5200', '1.5200', '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 (127753, '2022-10-23', 8102, 120782, 7146, NULL, '1.0000', '27.0000', '27.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 (127754, '2022-10-23', 7819, 120783, 7146, NULL, '1.0000', '9.5000', '9.5000', '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 (127755, '2022-10-23', 7959, 120784, 7146, NULL, '1.0000', '9.6000', '9.6000', '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 (127756, '2022-10-23', 9092, 120785, 7146, NULL, '9.0000', '5.2900', '5.2900', '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 (127757, '2022-10-23', 7719, 120786, 7146, NULL, '1.0000', '6.0000', '6.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 (127758, '2022-10-23', 7743, 120787, 7146, NULL, '2.0000', '1.3100', '1.3100', '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 (127759, '2022-10-23', 2315, 120788, 7146, 2735, '-736.0000', '0.3300', '0.3300', '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 (127760, '2022-10-23', 2315, 120788, 7146, NULL, '738.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-738.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127761, '2022-10-23', 7609, 120789, 7146, NULL, '1.0000', '4.3300', '4.3300', '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 (127762, '2022-10-23', 9599, 120790, 7146, NULL, '1.0000', '2.7300', '2.7300', '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 (127763, '2022-10-23', 7382, 120791, 7146, NULL, '1.0000', '7.4500', '7.4500', '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 (127764, '2022-10-23', 2069, 120792, 7146, 5571, '-28.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127765, '2022-10-23', 2069, 120792, 7146, NULL, '30.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (127766, '2022-10-23', 7725, 120793, 7146, NULL, '1.0000', '7.0000', '7.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 (127767, '2022-10-23', 8345, 120794, 7146, NULL, '1.0000', '5.9000', '5.9000', '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 (127768, '2022-10-23', 7917, 120795, 7146, NULL, '10.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (127769, '2022-10-23', 7518, 120796, 7146, NULL, '1.0000', '7.8200', '7.8200', '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 (127770, '2022-10-23', 1339, 120797, 7146, 13004, '-27.0000', '1.6012', '1.6012', '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 (127771, '2022-10-23', 1339, 120797, 7146, NULL, '28.0000', '1.6012', '1.6012', '3.5000', '3.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 (127772, '2022-10-23', 8965, 120798, 7146, NULL, '1.0000', '7.2000', '7.2000', '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 (127773, '2022-10-23', 2298, 120799, 7146, 2957, '-7.0000', '6.0000', '6.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 (127774, '2022-10-23', 2298, 120799, 7146, NULL, '8.0000', '6.0000', '6.0000', '12.0000', '12.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 (127775, '2022-10-23', 7579, 120800, 7146, NULL, '1.0000', '15.0000', '15.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 (127776, '2022-10-23', 1947, 120801, 7146, 1037, '1.0000', '0.1809', '0.1809', '7.0000', '7.0000', '47.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 (127777, '2022-10-23', 8202, 120802, 7146, NULL, '2.0000', '1.6600', '1.6600', '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 (127778, '2022-10-23', 9761, 120803, 7146, 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 (127779, '2022-10-23', 9092, 120804, 7146, NULL, '5.0000', '5.2900', '5.2900', '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 (127780, '2022-10-23', 8081, 120805, 7146, NULL, '4.0000', '0.6500', '0.6500', '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 (127781, '2022-10-23', 7984, 120806, 7146, NULL, '1.0000', '16.9000', '16.9000', '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 (127782, '2022-10-23', 7778, 120807, 7146, NULL, '1.0000', '9.0000', '9.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 (127783, '2022-10-23', 7514, 120808, 7146, NULL, '1.0000', '2.2500', '2.2500', '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 (127784, '2022-10-23', 7824, 120809, 7146, 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 (127785, '2022-10-23', 7666, 120810, 7146, NULL, '1.0000', '3.6000', '3.6000', '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 (127786, '2022-10-23', 8677, 120811, 7147, NULL, '3.0000', '1.2800', '1.2800', '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 (127787, '2022-10-23', 7518, 120812, 7147, NULL, '1.0000', '7.8200', '7.8200', '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 (127788, '2022-10-23', 7412, 120813, 7147, NULL, '1.0000', '1.5200', '1.5200', '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 (127789, '2022-10-23', 8097, 120814, 7147, NULL, '4.0000', '3.4000', '3.4000', '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 (127790, '2022-10-23', 7713, 120815, 7147, NULL, '5.0000', '0.3800', '0.3800', '0.6000', '0.6000', '-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 (127791, '2022-10-23', 2962, 120816, 7147, 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 (127792, '2022-10-23', 7672, 120817, 7147, NULL, '1.0000', '1.0200', '1.0200', '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 (127793, '2022-10-23', 2662, 120818, 7147, 12036, '-17.0000', '4.5000', '4.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 (127794, '2022-10-23', 2662, 120818, 7147, NULL, '18.0000', '4.5000', '4.5000', '7.0000', '7.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 (127795, '2022-10-23', 9399, 120819, 7147, NULL, '1.0000', '0.9800', '0.9800', '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 (127796, '2022-10-23', 7412, 120820, 7147, NULL, '1.0000', '1.5200', '1.5200', '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 (127797, '2022-10-23', 9803, 120821, 7147, NULL, '1.0000', '4.5500', '4.5500', '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 (127798, '2022-10-23', 2315, 120822, 7147, 2735, '-738.0000', '0.3300', '0.3300', '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 (127799, '2022-10-23', 2315, 120822, 7147, NULL, '740.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-740.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127800, '2022-10-23', 9791, 120823, 7147, 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 (127801, '2022-10-23', 7482, 120824, 7147, NULL, '1.0000', '3.0500', '3.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 (127802, '2022-10-23', 7657, 120825, 7147, NULL, '1.0000', '11.3200', '11.3200', '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 (127803, '2022-10-23', 10052, 120826, 7147, 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 (127804, '2022-10-23', 3076, 120827, 7147, NULL, '1.0000', '5.0000', '5.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 (127805, '2022-10-23', 9586, 120828, 7147, 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 (127806, '2022-10-23', 7864, 120829, 7147, NULL, '1.0000', '19.5100', '19.5100', '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 (127807, '2022-10-23', 2251, 120830, 7147, 2788, '-42.0000', '10.9700', '10.9700', '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 (127808, '2022-10-23', 2251, 120830, 7147, NULL, '43.0000', '10.9700', '10.9700', '22.0000', '22.0000', '-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 (127809, '2022-10-23', 7799, 120831, 7147, NULL, '1.0000', '6.4000', '6.4000', '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 (127810, '2022-10-23', 7514, 120832, 7147, NULL, '1.0000', '2.2500', '2.2500', '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 (127811, '2022-10-23', 1501, 120833, 7147, NULL, '1.0000', '2.0500', '2.0500', '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 (127812, '2022-10-23', 2100, 120834, 7147, 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 (127813, '2022-10-23', 7609, 120835, 7147, NULL, '1.0000', '4.3300', '4.3300', '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 (127814, '2022-10-23', 8720, 120836, 7147, NULL, '1.0000', '7.8900', '7.8900', '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 (127815, '2022-10-23', 9399, 120837, 7147, NULL, '1.0000', '0.9800', '0.9800', '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 (127816, '2022-10-23', 7490, 120838, 7147, 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 (127817, '2022-10-23', 8756, 120839, 7147, NULL, '1.0000', '7.5000', '7.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 (127818, '2022-10-23', 7704, 120840, 7147, NULL, '1.0000', '0.4900', '0.4900', '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 (127819, '2022-10-23', 7524, 120841, 7147, NULL, '1.0000', '11.9500', '11.9500', '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 (127820, '2022-10-23', 8925, 120842, 7147, NULL, '1.0000', '2.4000', '2.4000', '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 (127821, '2022-10-23', 9088, 120843, 7147, NULL, '1.0000', '15.4000', '15.4000', '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 (127822, '2022-10-23', 8810, 120844, 7147, NULL, '1.0000', '1.6000', '1.6000', '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 (127823, '2022-10-23', 2289, 120845, 7147, 2949, '-306.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 (127824, '2022-10-23', 2289, 120845, 7147, NULL, '310.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-310.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127825, '2022-10-23', 1841, 120846, 7147, NULL, '2.0000', '142.5780', '142.5780', '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 (127826, '2022-10-23', 1840, 120847, 7147, NULL, '4.0000', '-138499292.4246', '-138499292.4246', '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 (127827, '2022-10-23', 8402, 120848, 7147, NULL, '1.0000', '43.0500', '43.0500', '56.8300', '56.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 (127828, '2022-10-23', 2069, 120849, 7147, 5571, '-30.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127829, '2022-10-23', 2069, 120849, 7147, NULL, '31.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (127830, '2022-10-23', 10053, 120850, 7147, 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 (127831, '2022-10-23', 7411, 120851, 7147, 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 (127832, '2022-10-23', 9671, 120852, 7147, NULL, '1.0000', '10.9300', '10.9300', '42.5000', '42.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127833, '2022-10-23', 8020, 120853, 7147, NULL, '1.0000', '11.9000', '11.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 (127834, '2022-10-23', 9329, 120854, 7147, NULL, '1.0000', '6.7000', '6.7000', '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 (127835, '2022-10-23', 7678, 120855, 7147, NULL, '1.0000', '5.1400', '5.1400', '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 (127836, '2022-10-23', 9090, 120856, 7147, NULL, '1.0000', '14.0000', '14.0000', '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 (127837, '2022-10-23', 7800, 120857, 7147, NULL, '1.0000', '4.0000', '4.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 (127838, '2022-10-23', 9219, 120858, 7147, NULL, '1.0000', '6.3000', '6.3000', '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 (127839, '2022-10-23', 7822, 120859, 7147, NULL, '1.0000', '8.0000', '8.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 (127840, '2022-10-23', 1743, 120860, 7147, 2162, '-4.0000', '3.9800', '3.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 (127841, '2022-10-23', 1743, 120860, 7147, NULL, '5.0000', '3.9800', '3.9800', '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 (127842, '2022-10-23', 9842, 120861, 7148, 64036, '1.0000', '7.3129', '7.3129', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127843, '2022-10-23', 1837, 120862, 7148, 64827, '5.0000', '1.0120', '1.0120', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127844, '2022-10-23', 9565, 120863, 7148, NULL, '1.0000', '4.5000', '4.5000', '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 (127845, '2022-10-23', 7368, 120864, 7148, 50521, '1.0000', '14.7500', '14.7500', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 413);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127846, '2022-10-23', 1519, 120865, 7148, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127847, '2022-10-23', 1700, 120866, 7148, NULL, '1.0000', '-25.2500', '-25.2500', '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 (127848, '2022-10-23', 9750, 120867, 7148, NULL, '1.0000', '2.3934', '2.3934', '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 (127849, '2022-10-23', 2068, 120868, 7148, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127850, '2022-10-23', 7926, 120869, 7148, NULL, '1.0000', '6.8265', '6.8265', '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 (127851, '2022-10-23', 1751, 120870, 7148, NULL, '1.0000', '5.6063', '5.6063', '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 (127852, '2022-10-23', 8444, 120871, 7148, 59865, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '32.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127853, '2022-10-23', 1488, 120872, 7148, 65123, '1.0000', '4.9927', '4.9927', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127854, '2022-10-23', 3058, 120873, 7148, NULL, '1.0000', '8.2853', '8.2853', '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 (127855, '2022-10-23', 2682, 120874, 7148, 62068, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127856, '2022-10-23', 8482, 120875, 7148, 64077, '1.0000', '18.0579', '18.0579', '24.5000', '24.5000', '10.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127857, '2022-10-23', 2821, 120876, 7148, NULL, '1.0000', '-40.2618', '-40.2618', '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 (127858, '2022-10-23', 1368, 120877, 7148, 64869, '1.0000', '6.3956', '6.3956', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127859, '2022-10-23', 7457, 120878, 7148, NULL, '1.0000', '2.3500', '2.3500', '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 (127860, '2022-10-23', 2642, 120879, 7148, 63780, '1.0000', '8.7425', '8.7425', '18.5000', '18.5000', '3.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127861, '2022-10-23', 2327, 120880, 7148, 64728, '2.0000', '3.8977', '3.8977', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127862, '2022-10-23', 2354, 120881, 7148, NULL, '1.0000', '210.8376', '210.8376', '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 (127863, '2022-10-23', 7743, 120882, 7148, NULL, '2.0000', '7.3900', '7.3900', '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 (127864, '2022-10-23', 9734, 120883, 7148, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '50.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127865, '2022-10-23', 7743, 120884, 7148, NULL, '2.0000', '7.3900', '7.3900', '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 (127866, '2022-10-23', 2384, 120885, 7148, NULL, '6.0000', '-312.4992', '-312.4992', '0.8000', '0.8000', '-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 (127867, '2022-10-23', 1640, 120886, 7148, NULL, '1.0000', '0.9277', '0.9277', '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 (127868, '2022-10-23', 1519, 120887, 7148, 64800, '1.0000', '4.0002', '4.0002', '5.5000', '5.5000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127869, '2022-10-23', 9844, 120888, 7148, NULL, '2.0000', '2.5000', '2.5000', '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 (127870, '2022-10-23', 1699, 120889, 7148, NULL, '1.0000', '-5.0000', '-5.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 (127871, '2022-10-23', 2948, 120890, 7148, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '35.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127872, '2022-10-23', 9445, 120891, 7148, 62412, '1.0000', '7.6750', '7.6750', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127873, '2022-10-23', 9999, 120892, 7148, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127874, '2022-10-23', 1339, 120893, 7148, 65118, '1.0000', '2.4796', '2.4796', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127875, '2022-10-23', 7741, 120894, 7148, NULL, '1.0000', '-174.4114', '-174.4114', '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 (127876, '2022-10-23', 1602, 120895, 7148, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '26.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127877, '2022-10-23', 2169, 120896, 7148, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127878, '2022-10-23', 9943, 120897, 7148, 64726, '1.0000', '14.9097', '14.9097', '19.0000', '19.0000', '10.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127879, '2022-10-23', 9775, 120898, 7148, NULL, '1.0000', '10.3840', '10.3840', '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 (127880, '2022-10-23', 1446, 120899, 7148, NULL, '1.0000', '6.6040', '6.6040', '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 (127881, '2022-10-23', 9579, 120900, 7148, 54579, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127882, '2022-10-23', 2109, 120901, 7148, 64808, '1.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127883, '2022-10-23', 9734, 120902, 7148, 64835, '1.0000', '0.4609', '0.4609', '0.7000', '0.7000', '50.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127884, '2022-10-23', 1837, 120903, 7148, 64827, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127885, '2022-10-23', 9565, 120904, 7148, NULL, '1.0000', '4.5000', '4.5000', '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 (127886, '2022-10-23', 2068, 120905, 7148, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127887, '2022-10-23', 2315, 120906, 7148, NULL, '1.0000', '0.7700', '0.7700', '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 (127888, '2022-10-23', 3058, 120907, 7148, NULL, '1.0000', '8.2853', '8.2853', '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 (127889, '2022-10-23', 1640, 120908, 7148, NULL, '1.0000', '0.9277', '0.9277', '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 (127890, '2022-10-23', 8158, 120909, 7148, NULL, '1.0000', '22.0000', '22.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 (127891, '2022-10-23', 7953, 120910, 7148, NULL, '1.0000', '-0.5345', '-0.5345', '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 (127892, '2022-10-23', 2950, 120911, 7148, 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 (127893, '2022-10-23', 2950, 120912, 7148, NULL, '3.0000', '1.4000', '1.4000', '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 (127894, '2022-10-23', 2293, 120913, 7148, NULL, '3.0000', '1.1118', '1.1118', '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 (127895, '2022-10-23', 1602, 120914, 7148, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '26.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127896, '2022-10-23', 9469, 120915, 7148, NULL, '1.0000', '5.5270', '5.5270', '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 (127897, '2022-10-23', 1863, 120916, 7148, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '75.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127898, '2022-10-23', 9482, 120917, 7148, 64050, '2.0000', '1.2046', '1.2046', '2.0000', '2.0000', '218.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127899, '2022-10-23', 8208, 120918, 7148, NULL, '2.0000', '63.9119', '63.9119', '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 (127900, '2022-10-23', 1401, 120919, 7148, 64451, '1.0000', '3.6250', '3.6250', '5.5000', '5.5000', '5.0000', 1, 0, NULL, 560);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127901, '2022-10-23', 2950, 120920, 7148, NULL, '3.0000', '1.4000', '1.4000', '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 (127902, '2022-10-23', 2295, 120921, 7148, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '32.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127903, '2022-10-23', 2293, 120922, 7148, NULL, '3.0000', '1.1118', '1.1118', '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 (127904, '2022-10-23', 9873, 120923, 7148, 58271, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127905, '2022-10-23', 1946, 120924, 7148, NULL, '1.0000', '-24.7189', '-24.7189', '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 (127906, '2022-10-23', 9737, 120925, 7148, NULL, '1.0000', '1.6000', '1.6000', '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 (127907, '2022-10-23', 7779, 120926, 7148, NULL, '1.0000', '0.6200', '0.6200', '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 (127908, '2022-10-23', 9878, 120927, 7148, NULL, '1.0000', '9.6000', '9.6000', '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 (127909, '2022-10-23', 9770, 120928, 7148, 62093, '1.0000', '2.6571', '2.6571', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127910, '2022-10-23', 2506, 120929, 7148, NULL, '1.0000', '-29.1041', '-29.1041', '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 (127911, '2022-10-23', 8775, 120930, 7148, 65039, '1.0000', '2.3254', '2.3254', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127912, '2022-10-23', 8979, 120931, 7148, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127913, '2022-10-23', 2015, 120932, 7148, 63797, '1.0000', '6.3148', '6.3148', '14.5000', '14.5000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127914, '2022-10-23', 2260, 120933, 7148, 64746, '1.0000', '5.2018', '5.2018', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127915, '2022-10-23', 1450, 120934, 7149, NULL, '5.0000', '0.8255', '0.8255', '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 (127916, '2022-10-23', 1383, 120935, 7149, 65290, '1.0000', '5.8471', '5.8471', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127917, '2022-10-23', 2920, 120936, 7149, 58844, '1.0000', '13.0000', '13.0000', '21.5000', '21.5000', '9.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127918, '2022-10-23', 9736, 120937, 7149, 64475, '1.0000', '5.3100', '5.3100', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127919, '2022-10-23', 7917, 120938, 7149, NULL, '5.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (127920, '2022-10-23', 1602, 120939, 7149, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127921, '2022-10-23', 2858, 120940, 7149, 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 (127922, '2022-10-23', 9747, 120941, 7149, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127923, '2022-10-23', 8097, 120942, 7149, NULL, '2.0000', '7.6800', '7.6800', '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 (127924, '2022-10-23', 7412, 120943, 7149, NULL, '1.0000', '1.5200', '1.5200', '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 (127925, '2022-10-23', 2850, 120944, 7149, 61696, '2.0000', '7.4451', '7.4451', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127926, '2022-10-23', 2315, 120945, 7149, 60074, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127927, '2022-10-23', 2327, 120946, 7149, 64308, '1.0000', '3.6450', '3.6450', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127928, '2022-10-23', 1961, 120947, 7149, 60069, '1.0000', '20.4212', '20.4212', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127929, '2022-10-23', 9943, 120948, 7149, 64310, '1.0000', '13.1867', '13.1867', '19.0000', '19.0000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127930, '2022-10-23', 2506, 120949, 7149, 65303, '1.0000', '4.8727', '4.8727', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127931, '2022-10-23', 2068, 120950, 7149, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127932, '2022-10-23', 1519, 120951, 7149, 65291, '1.0000', '3.5946', '3.5946', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127933, '2022-10-23', 1602, 120952, 7149, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127934, '2022-10-23', 2037, 120953, 7149, 59055, '1.0000', '13.3137', '13.3137', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127935, '2022-10-23', 2302, 120954, 7149, 64965, '1.0000', '5.7084', '5.7084', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127936, '2022-10-23', 2302, 120955, 7149, 64965, '1.0000', '5.7084', '5.7084', '10.0000', '10.0000', '7.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127937, '2022-10-23', 2354, 120956, 7149, 62755, '1.0000', '5.6092', '5.6092', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127938, '2022-10-23', 9747, 120957, 7149, 64514, '1.0000', '0.6500', '0.6500', '1.0000', '1.0000', '20.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127939, '2022-10-23', 3044, 120958, 7149, 64957, '4.0000', '0.4000', '0.4000', '1.0000', '1.0000', '44.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127940, '2022-10-23', 1760, 120959, 7149, 58781, '1.0000', '0.8900', '0.8900', '1.0000', '1.0000', '62.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127941, '2022-10-23', 7672, 120960, 7149, 59981, '1.0000', '1.3852', '1.3852', '2.5000', '2.5000', '18.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127942, '2022-10-23', 1904, 120961, 7149, 65289, '2.0000', '10.4131', '10.4131', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127943, '2022-10-23', 7933, 120962, 7149, NULL, '1.0000', '0.4400', '0.4400', '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 (127944, '2022-10-23', 1863, 120963, 7149, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '102.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127945, '2022-10-23', 2237, 120964, 7149, 65316, '1.0000', '1.3171', '1.3171', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127946, '2022-10-23', 2169, 120965, 7149, 65305, '1.0000', '1.5623', '1.5623', '3.0000', '3.0000', '57.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127947, '2022-10-23', 2858, 120966, 7149, 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 (127948, '2022-10-23', 1308, 120967, 7149, 42946, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127949, '2022-10-24', 8539, 120968, 7150, NULL, '2.0000', '31.8000', '31.8000', '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 (127950, '2022-10-24', 7954, 120969, 7150, 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 (127951, '2022-10-24', 7473, 120970, 7150, NULL, '5.0000', '0.5300', '0.5300', '0.8000', '0.8000', '-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 (127952, '2022-10-24', 7708, 120971, 7150, NULL, '1.0000', '7.8000', '7.8000', '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 (127953, '2022-10-24', 7608, 120972, 7150, NULL, '1.0000', '6.9800', '6.9800', '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 (127954, '2022-10-24', 2612, 120973, 7150, 9748, '-8.0000', '7.1600', '7.1600', '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 (127955, '2022-10-24', 2612, 120973, 7150, NULL, '9.0000', '7.1600', '7.1600', '11.5000', '11.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 (127956, '2022-10-24', 7674, 120974, 7150, NULL, '1.0000', '1.3000', '1.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 (127957, '2022-10-24', 1501, 120975, 7150, NULL, '1.0000', '2.0500', '2.0500', '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 (127958, '2022-10-24', 8657, 120976, 7150, NULL, '1.0000', '6.3900', '6.3900', '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 (127959, '2022-10-24', 9266, 120977, 7150, NULL, '1.0000', '4.1000', '4.1000', '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 (127960, '2022-10-24', 2522, 120978, 7150, 6036, '-2.0000', '6.2000', '6.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 (127961, '2022-10-24', 2522, 120978, 7150, NULL, '3.0000', '6.2000', '6.2000', '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 (127962, '2022-10-24', 7657, 120979, 7150, NULL, '1.0000', '11.3200', '11.3200', '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 (127963, '2022-10-24', 2289, 120980, 7150, 2949, '-310.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 (127964, '2022-10-24', 2289, 120980, 7150, NULL, '312.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-312.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127965, '2022-10-24', 7715, 120981, 7150, NULL, '2.0000', '1.8900', '1.8900', '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 (127966, '2022-10-24', 8680, 120982, 7150, NULL, '2.0000', '2.0000', '2.0000', '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 (127967, '2022-10-24', 2069, 120983, 7150, 5571, '-31.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127968, '2022-10-24', 2069, 120983, 7150, NULL, '32.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127969, '2022-10-24', 7415, 120984, 7150, NULL, '2.0000', '5.9100', '5.9100', '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 (127970, '2022-10-24', 7412, 120985, 7150, NULL, '1.0000', '1.5200', '1.5200', '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 (127971, '2022-10-24', 7483, 120986, 7150, 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 (127972, '2022-10-24', 9695, 120987, 7150, NULL, '1.0000', '4.5000', '4.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 (127973, '2022-10-24', 7730, 120988, 7150, NULL, '2.0000', '0.1000', '0.1000', '0.2000', '0.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 (127974, '2022-10-24', 8254, 120989, 7150, NULL, '1.0000', '25.9000', '25.9000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127975, '2022-10-24', 9388, 120990, 7150, 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 (127976, '2022-10-24', 7984, 120991, 7150, NULL, '1.0000', '16.9000', '16.9000', '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 (127977, '2022-10-24', 8677, 120992, 7150, NULL, '2.0000', '1.2800', '1.2800', '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 (127978, '2022-10-24', 7674, 120993, 7150, NULL, '1.0000', '1.3000', '1.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 (127979, '2022-10-24', 7411, 120994, 7150, 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 (127980, '2022-10-24', 9791, 120995, 7150, NULL, '2.0000', '0.9000', '0.9000', '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 (127981, '2022-10-24', 7847, 120996, 7150, NULL, '1.0000', '6.5000', '6.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 (127982, '2022-10-24', 1310, 120997, 7150, NULL, '2.0000', '0.3700', '0.3700', '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 (127983, '2022-10-24', 9913, 120998, 7150, NULL, '1.0000', '13.2000', '13.2000', '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 (127984, '2022-10-24', 8032, 120999, 7150, NULL, '1.0000', '6.4400', '6.4400', '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 (127985, '2022-10-24', 9747, 121000, 7150, NULL, '1.0000', '0.6500', '0.6500', '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 (127986, '2022-10-24', 9743, 121001, 7151, 65418, '1.0000', '15.2000', '15.2000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127987, '2022-10-24', 9999, 121002, 7151, 63443, '1.0000', '3.1000', '3.1000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127988, '2022-10-24', 8208, 121003, 7151, NULL, '2.0000', '63.9119', '63.9119', '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 (127989, '2022-10-24', 2262, 121004, 7151, 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 (127990, '2022-10-24', 1904, 121005, 7151, 62413, '2.0000', '1.1631', '1.1631', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127991, '2022-10-24', 3058, 121006, 7151, NULL, '1.0000', '8.2853', '8.2853', '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 (127992, '2022-10-24', 9844, 121007, 7151, NULL, '2.0000', '2.5000', '2.5000', '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 (127993, '2022-10-24', 8813, 121008, 7151, 62863, '1.0000', '5.9000', '5.9000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127994, '2022-10-24', 1308, 121009, 7151, 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 (127995, '2022-10-24', 8482, 121010, 7151, 64077, '1.0000', '18.0579', '18.0579', '24.5000', '24.5000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127996, '2022-10-24', 1874, 121011, 7151, NULL, '1.0000', '-24.5000', '-24.5000', '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 (127997, '2022-10-24', 10030, 121012, 7151, 64749, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127998, '2022-10-24', 2259, 121013, 7151, 65389, '1.0000', '29.8311', '29.8311', '38.5000', '38.5000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127999, '2022-10-24', 9791, 121014, 7151, 64592, '2.0000', '0.9575', '0.9575', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128000, '2022-10-24', 2237, 121015, 7151, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128001, '2022-10-24', 8017, 121016, 7151, 64594, '2.0000', '0.6000', '0.6000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128002, '2022-10-24', 3059, 121017, 7151, 59839, '5.0000', '1.1792', '1.1792', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128003, '2022-10-24', 1521, 121018, 7151, 63439, '2.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128004, '2022-10-24', 8744, 121019, 7151, 65030, '1.0000', '2.8972', '2.8972', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128005, '2022-10-24', 2361, 121020, 7151, 42543, '6.0000', '0.4744', '0.4744', '0.6000', '0.6000', '3.0000', 1, 0, NULL, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128006, '2022-10-24', 9734, 121021, 7151, 65428, '3.0000', '0.4603', '0.4603', '0.7000', '0.7000', '197.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128007, '2022-10-24', 9734, 121022, 7151, 65428, '1.0000', '0.4603', '0.4603', '0.7000', '0.7000', '199.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128008, '2022-10-24', 1819, 121023, 7151, 64838, '1.0000', '8.0382', '8.0382', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128009, '2022-10-24', 2762, 121024, 7151, 65454, '1.0000', '12.3000', '12.3000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128010, '2022-10-24', 1628, 121025, 7151, 59606, '1.0000', '7.1000', '7.1000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 514);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128011, '2022-10-24', 2105, 121026, 7151, 64858, '4.0000', '2.9790', '2.9790', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128012, '2022-10-24', 9751, 121027, 7151, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128013, '2022-10-24', 8979, 121028, 7151, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '27.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128014, '2022-10-24', 7807, 121029, 7151, NULL, '5.0000', '2.1600', '2.1600', '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 (128015, '2022-10-24', 8746, 121030, 7151, 63444, '2.0000', '3.4596', '3.4596', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128016, '2022-10-24', 2964, 121031, 7151, NULL, '1.0000', '18320683.0450', '18320683.0450', '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 (128017, '2022-10-24', 8482, 121032, 7151, 64077, '1.0000', '18.0579', '18.0579', '24.5000', '24.5000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128018, '2022-10-24', 8065, 121033, 7151, NULL, '1.0000', '32.0000', '32.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128019, '2022-10-24', 1368, 121034, 7151, 64869, '1.0000', '6.3956', '6.3956', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128020, '2022-10-24', 9578, 121035, 7151, 53632, '1.0000', '8.0000', '8.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128021, '2022-10-24', 1871, 121036, 7151, NULL, '10.0000', '-20821086.1374', '-20821086.1374', '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 (128022, '2022-10-24', 10003, 121037, 7151, 64055, '1.0000', '3.8000', '3.8000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128023, '2022-10-24', 1671, 121038, 7151, 63416, '1.0000', '102.3591', '102.3591', '82.0000', '82.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128024, '2022-10-24', 2656, 121039, 7151, 65026, '1.0000', '2.0366', '2.0366', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128025, '2022-10-24', 2418, 121040, 7151, 56857, '1.0000', '9.2668', '9.2668', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 471);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128026, '2022-10-24', 1602, 121041, 7151, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '24.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128027, '2022-10-24', 2315, 121042, 7151, 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 (128028, '2022-10-24', 8933, 121043, 7151, 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 (128029, '2022-10-24', 1520, 121044, 7151, 64608, '1.0000', '1.7942', '1.7942', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128030, '2022-10-24', 2850, 121045, 7152, 61696, '2.0000', '7.4451', '7.4451', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128031, '2022-10-24', 1904, 121046, 7152, 65289, '1.0000', '10.4131', '10.4131', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128032, '2022-10-24', 1863, 121047, 7152, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '101.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128033, '2022-10-24', 1342, 121048, 7152, 64550, '1.0000', '9.0157', '9.0157', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128034, '2022-10-24', 2296, 121049, 7152, 65329, '2.0000', '16.1829', '16.1829', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128035, '2022-10-24', 2545, 121050, 7152, 65330, '1.0000', '8.6521', '8.6521', '12.5000', '12.5000', '5.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128036, '2022-10-24', 8528, 121051, 7152, NULL, '1.0000', '16.4000', '16.4000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128037, '2022-10-24', 1874, 121052, 7152, 64483, '1.0000', '9.5000', '9.5000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128038, '2022-10-24', 2656, 121053, 7152, 65056, '2.0000', '1.6007', '1.6007', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128039, '2022-10-24', 1425, 121054, 7152, 64963, '1.0000', '7.3728', '7.3728', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128040, '2022-10-24', 1665, 121055, 7152, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '135.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128041, '2022-10-24', 2277, 121056, 7152, 56888, '1.0000', '0.4620', '0.4620', '1.5000', '1.5000', '97.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128042, '2022-10-24', 2237, 121057, 7152, 65316, '1.0000', '1.3171', '1.3171', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128043, '2022-10-24', 2169, 121058, 7152, 65305, '3.0000', '1.5623', '1.5623', '3.0000', '3.0000', '54.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128044, '2022-10-24', 1602, 121059, 7152, 64529, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '0.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128045, '2022-10-24', 1602, 121059, 7152, 64515, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '39.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128046, '2022-10-24', 2633, 121060, 7152, 62716, '1.0000', '3.8269', '3.8269', '6.5000', '6.5000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128047, '2022-10-24', 7886, 121061, 7152, NULL, '1.0000', '4.5000', '4.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 (128048, '2022-10-24', 1867, 121062, 7152, NULL, '1.0000', '6.2173', '6.2173', '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 (128049, '2022-10-24', 10044, 121063, 7152, 63388, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128050, '2022-10-24', 2169, 121064, 7152, 65305, '2.0000', '1.5623', '1.5623', '3.0000', '3.0000', '55.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128051, '2022-10-24', 9204, 121065, 7152, NULL, '2.0000', '8.1600', '8.1600', '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 (128052, '2022-10-24', 9815, 121066, 7152, 55826, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '12.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128053, '2022-10-24', 2237, 121067, 7152, 65316, '1.0000', '1.3171', '1.3171', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128054, '2022-10-24', 1410, 121068, 7152, 61607, '1.0000', '2.9736', '2.9736', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128055, '2022-10-24', 2858, 121069, 7152, NULL, '2.0000', '1.0000', '1.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 (128056, '2022-10-24', 7954, 121070, 7152, 63954, '3.0000', '-14.6166', '-14.6166', '4.0000', '4.0000', '17.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128057, '2022-10-24', 3017, 121071, 7152, 59986, '1.0000', '3.9652', '3.9652', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128058, '2022-10-24', 2289, 121072, 7152, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128059, '2022-10-24', 1840, 121073, 7152, 62749, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '70.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128060, '2022-10-24', 1841, 121074, 7152, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '69.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128061, '2022-10-24', 8208, 121075, 7152, NULL, '2.0000', '33.0000', '33.0000', '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 (128062, '2022-10-24', 9814, 121076, 7152, 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 (128063, '2022-10-24', 1667, 121077, 7152, 65286, '1.0000', '17.5659', '17.5659', '14.5000', '14.5000', '6.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128064, '2022-10-24', 1590, 121078, 7152, 62797, '1.0000', '2.5119', '2.5119', '4.0000', '4.0000', '49.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128065, '2022-10-24', 1572, 121079, 7152, 58815, '3.0000', '1.9861', '1.9861', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128066, '2022-10-24', 1488, 121080, 7153, 65123, '1.0000', '4.9927', '4.9927', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128067, '2022-10-24', 2315, 121081, 7153, NULL, '1.0000', '0.7700', '0.7700', '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 (128068, '2022-10-24', 7953, 121082, 7153, NULL, '1.0000', '-0.5345', '-0.5345', '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 (128069, '2022-10-24', 7509, 121083, 7154, NULL, '1.0000', '6.5000', '6.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 (128070, '2022-10-24', 1646, 121084, 7155, 64863, '1.0000', '6.6727', '6.6727', '13.0000', '13.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128071, '2022-10-24', 2237, 121085, 7155, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '22.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128072, '2022-10-24', 1837, 121086, 7155, 64845, '1.0000', '1.0120', '1.0120', '1.0000', '1.0000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128073, '2022-10-24', 9695, 121087, 7155, 65043, '1.0000', '5.6903', '5.6903', '9.0000', '9.0000', '12.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128074, '2022-10-24', 8979, 121088, 7155, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128075, '2022-10-24', 2948, 121089, 7155, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '34.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128076, '2022-10-24', 2315, 121090, 7155, NULL, '1.0000', '0.7700', '0.7700', '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 (128077, '2022-10-24', 2068, 121091, 7155, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128078, '2022-10-24', 2169, 121092, 7155, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128079, '2022-10-24', 1455, 121093, 7155, 60340, '4.0000', '0.0795', '0.0795', '0.8000', '0.8000', '18.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128080, '2022-10-24', 2231, 121094, 7155, NULL, '1.0000', '643.2875', '643.2875', '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 (128081, '2022-10-24', 2226, 121095, 7155, 59682, '1.0000', '6.6234', '6.6234', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128082, '2022-10-24', 1455, 121096, 7155, 60340, '10.0000', '0.0795', '0.0795', '0.8000', '0.8000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128083, '2022-10-24', 2948, 121097, 7155, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '33.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128084, '2022-10-24', 9751, 121098, 7155, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128085, '2022-10-24', 2443, 121099, 7155, 54833, '1.0000', '3.1936', '3.1936', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128086, '2022-10-24', 2038, 121100, 7155, 63793, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128087, '2022-10-24', 9634, 121101, 7155, NULL, '2.0000', '0.7698', '0.7698', '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 (128088, '2022-10-24', 1722, 121102, 7155, NULL, '1.0000', '4.3150', '4.3150', '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 (128089, '2022-10-24', 8432, 121103, 7156, 65381, '1.0000', '39.7000', '39.7000', '52.5000', '52.5000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128090, '2022-10-24', 1863, 121104, 7156, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128091, '2022-10-24', 2275, 121105, 7156, NULL, '1.0000', '-26.2984', '-26.2984', '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 (128092, '2022-10-24', 9734, 121106, 7156, 65428, '3.0000', '0.4603', '0.4603', '0.7000', '0.7000', '193.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128093, '2022-10-24', 2169, 121107, 7156, 64716, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128094, '2022-10-24', 2100, 121108, 7156, NULL, '1.0000', '-4.4545', '-4.4545', '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 (128095, '2022-10-24', 8208, 121109, 7156, NULL, '1.0000', '63.9119', '63.9119', '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 (128096, '2022-10-24', 7472, 121110, 7156, NULL, '1.0000', '-623.6000', '-623.6000', '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 (128097, '2022-10-24', 1314, 121111, 7156, 64810, '1.0000', '2.2349', '2.2349', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128098, '2022-10-24', 7744, 121112, 7156, NULL, '1.0000', '2.5833', '2.5833', '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 (128099, '2022-10-24', 2656, 121113, 7157, 65026, '1.0000', '2.0366', '2.0366', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128100, '2022-10-24', 1602, 121114, 7157, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128101, '2022-10-24', 1529, 121115, 7157, 65417, '1.0000', '5.4216', '5.4216', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128102, '2022-10-24', 2169, 121116, 7157, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128103, '2022-10-24', 8208, 121117, 7157, NULL, '2.0000', '63.9119', '63.9119', '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 (128104, '2022-10-24', 1863, 121118, 7157, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128105, '2022-10-24', 2854, 121119, 7157, NULL, '1.0000', '2.0667', '2.0667', '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 (128106, '2022-10-24', 1610, 121120, 7157, 64851, '1.0000', '13.5086', '13.5086', '24.0000', '24.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128107, '2022-10-24', 7608, 121121, 7157, NULL, '1.0000', '6.9800', '6.9800', '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 (128108, '2022-10-24', 2169, 121122, 7157, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '42.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128109, '2022-10-24', 1871, 121123, 7157, NULL, '10.0000', '-20821086.1374', '-20821086.1374', '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 (128110, '2022-10-24', 1602, 121124, 7157, 64829, '2.0000', '8.1020', '8.1020', '11.5000', '11.5000', '22.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128111, '2022-10-24', 1945, 121125, 7157, 64587, '1.0000', '13.0067', '13.0067', '16.5000', '16.5000', '3.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128112, '2022-10-24', 9770, 121126, 7157, 62093, '1.0000', '2.6571', '2.6571', '5.5000', '5.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128113, '2022-10-24', 9736, 121127, 7157, 64825, '1.0000', '6.8611', '6.8611', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128114, '2022-10-24', 1787, 121128, 7157, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128115, '2022-10-24', 2381, 121129, 7157, 64840, '1.0000', '14.5327', '14.5327', '19.5000', '19.5000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128116, '2022-10-24', 2656, 121130, 7157, 65026, '3.0000', '2.0366', '2.0366', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128117, '2022-10-24', 2777, 121131, 7157, 65407, '1.0000', '4.0533', '4.0533', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128118, '2022-10-24', 7745, 121132, 7157, NULL, '1.0000', '6.7000', '6.7000', '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 (128119, '2022-10-24', 2038, 121133, 7158, 58044, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '4.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128120, '2022-10-24', 1935, 121134, 7158, 64832, '3.0000', '0.9044', '0.9044', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128121, '2022-10-24', 2384, 121135, 7158, NULL, '1.0000', '-312.4992', '-312.4992', '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 (128122, '2022-10-24', 1908, 121136, 7158, NULL, '2.0000', '0.9032', '0.9032', '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 (128123, '2022-10-24', 1863, 121137, 7158, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '72.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128124, '2022-10-24', 1427, 121138, 7158, 64803, '1.0000', '11.7750', '11.7750', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128125, '2022-10-24', 7443, 121139, 7158, NULL, '1.0000', '6.8600', '6.8600', '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 (128126, '2022-10-24', 2266, 121140, 7158, 65375, '1.0000', '9.6967', '9.6967', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128127, '2022-10-24', 1306, 121141, 7158, NULL, '3.0000', '2.1000', '2.1000', '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 (128128, '2022-10-24', 2381, 121142, 7158, 64840, '1.0000', '14.5327', '14.5327', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128129, '2022-10-24', 9735, 121143, 7158, 64836, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128130, '2022-10-24', 9151, 121144, 7158, 62169, '1.0000', '11.0800', '11.0800', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128131, '2022-10-24', 9736, 121145, 7158, 64825, '1.0000', '6.8611', '6.8611', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128132, '2022-10-24', 1787, 121146, 7158, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128133, '2022-10-24', 2251, 121147, 7159, 2788, '-43.0000', '10.9700', '10.9700', '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 (128134, '2022-10-24', 2251, 121147, 7159, NULL, '44.0000', '10.9700', '10.9700', '22.0000', '22.0000', '-44.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128135, '2022-10-24', 8085, 121148, 7159, NULL, '3.0000', '1.1700', '1.1700', '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 (128136, '2022-10-24', 2242, 121149, 7159, 3059, '-129.0000', '0.4800', '0.4800', '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 (128137, '2022-10-24', 2242, 121149, 7159, NULL, '132.0000', '0.4800', '0.4800', '1.5000', '1.5000', '-132.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128138, '2022-10-24', 7730, 121150, 7159, NULL, '5.0000', '0.1000', '0.1000', '0.2000', '0.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 (128139, '2022-10-24', 2250, 121151, 7159, 2787, '-25.0000', '6.8900', '6.8900', '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 (128140, '2022-10-24', 2250, 121151, 7159, NULL, '26.0000', '6.8900', '6.8900', '14.5000', '14.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 (128141, '2022-10-24', 1765, 121152, 7159, 3175, '-31.0000', '90.0000', '90.0000', '9.5000', '9.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 (128142, '2022-10-24', 1765, 121152, 7159, NULL, '32.0000', '90.0000', '90.0000', '9.5000', '9.5000', '-32.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128143, '2022-10-24', 9456, 121153, 7159, NULL, '1.0000', '3.3200', '3.3200', '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 (128144, '2022-10-24', 7666, 121154, 7159, NULL, '1.0000', '3.6000', '3.6000', '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 (128145, '2022-10-24', 7672, 121155, 7159, NULL, '1.0000', '1.0200', '1.0200', '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 (128146, '2022-10-24', 7674, 121156, 7159, NULL, '1.0000', '1.3000', '1.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 (128147, '2022-10-24', 9958, 121157, 7159, NULL, '1.0000', '7.8000', '7.8000', '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 (128148, '2022-10-24', 7664, 121158, 7159, NULL, '1.0000', '6.9400', '6.9400', '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 (128149, '2022-10-24', 7524, 121159, 7159, NULL, '1.0000', '11.9500', '11.9500', '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 (128150, '2022-10-24', 7473, 121160, 7159, NULL, '2.0000', '0.5300', '0.5300', '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 (128151, '2022-10-24', 7514, 121161, 7159, NULL, '2.0000', '2.2500', '2.2500', '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 (128152, '2022-10-24', 1935, 121162, 7159, 5586, '-225.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 (128153, '2022-10-24', 1935, 121162, 7159, NULL, '226.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-226.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128154, '2022-10-24', 8825, 121163, 7159, NULL, '1.0000', '15.0000', '15.0000', '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 (128155, '2022-10-24', 7770, 121164, 7159, NULL, '1.0000', '7.8200', '7.8200', '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 (128156, '2022-10-24', 9329, 121165, 7159, NULL, '1.0000', '6.7000', '6.7000', '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 (128157, '2022-10-24', 7457, 121166, 7159, NULL, '1.0000', '6.0000', '6.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 (128158, '2022-10-24', 8979, 121167, 7159, 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 (128159, '2022-10-24', 7411, 121168, 7159, 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 (128160, '2022-10-24', 9821, 121169, 7159, NULL, '1.0000', '1.4500', '1.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 (128161, '2022-10-24', 7560, 121170, 7159, NULL, '1.0000', '33.0200', '33.0200', '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 (128162, '2022-10-24', 8254, 121171, 7159, NULL, '1.0000', '25.9000', '25.9000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128163, '2022-10-24', 1321, 121172, 7159, NULL, '1.0000', '9.8000', '9.8000', '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 (128164, '2022-10-24', 7641, 121173, 7159, NULL, '1.0000', '1.9000', '1.9000', '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 (128165, '2022-10-24', 1688, 121174, 7159, 4896, '-19.0000', '18.5000', '18.5000', '39.5000', '39.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 (128166, '2022-10-24', 1688, 121174, 7159, NULL, '20.0000', '18.5000', '18.5000', '39.5000', '39.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 (128167, '2022-10-24', 7514, 121175, 7159, NULL, '1.0000', '2.2500', '2.2500', '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 (128168, '2022-10-24', 7852, 121176, 7159, NULL, '1.0000', '15.0000', '15.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 (128169, '2022-10-24', 9209, 121177, 7159, NULL, '1.0000', '4.8000', '4.8000', '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 (128170, '2022-10-24', 7518, 121178, 7159, NULL, '1.0000', '7.8200', '7.8200', '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 (128171, '2022-10-24', 7641, 121179, 7159, NULL, '1.0000', '1.9000', '1.9000', '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 (128172, '2022-10-24', 7526, 121180, 7159, NULL, '1.0000', '14.0000', '14.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128173, '2022-10-24', 7853, 121181, 7159, NULL, '1.0000', '13.0000', '13.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 (128174, '2022-10-24', 10018, 121182, 7159, NULL, '1.0000', '0.8500', '0.8500', '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 (128175, '2022-10-24', 9633, 121183, 7159, NULL, '2.0000', '8.4100', '8.4100', '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 (128176, '2022-10-24', 7478, 121184, 7159, NULL, '1.0000', '4.0000', '4.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 (128177, '2022-10-24', 9714, 121185, 7159, NULL, '1.0000', '25.0000', '25.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 (128178, '2022-10-24', 7514, 121186, 7159, NULL, '1.0000', '2.2500', '2.2500', '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 (128179, '2022-10-24', 2948, 121187, 7160, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128180, '2022-10-24', 2655, 121188, 7160, 65495, '1.0000', '4.7730', '4.7730', '11.0000', '11.0000', '39.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128181, '2022-10-24', 8979, 121189, 7160, 65045, '3.0000', '0.9763', '0.9763', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128182, '2022-10-24', 8771, 121190, 7160, 65036, '1.0000', '7.0796', '7.0796', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128183, '2022-10-24', 7704, 121191, 7161, NULL, '3.0000', '0.4900', '0.4900', '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 (128184, '2022-10-24', 1513, 121192, 7161, 64597, '1.0000', '15.7448', '15.7448', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128185, '2022-10-24', 2288, 121193, 7161, 64846, '1.0000', '10.8843', '10.8843', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128186, '2022-10-24', 8771, 121194, 7161, 65036, '2.0000', '7.0796', '7.0796', '8.5000', '8.5000', '6.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128187, '2022-10-24', 2366, 121195, 7162, NULL, '1.0000', '-154.5270', '-154.5270', '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 (128188, '2022-10-24', 1837, 121196, 7162, 64845, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '21.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128189, '2022-10-24', 2379, 121197, 7163, NULL, '1.0000', '-154.5325', '-154.5325', '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 (128190, '2022-10-24', 2272, 121198, 7163, 65387, '1.0000', '14.3111', '14.3111', '13.5000', '13.5000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128191, '2022-10-24', 7708, 121199, 7164, NULL, '1.0000', '7.8000', '7.8000', '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 (128192, '2022-10-24', 2821, 121200, 7164, 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 (128193, '2022-10-24', 7889, 121201, 7164, 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 (128194, '2022-10-24', 8918, 121202, 7164, NULL, '1.0000', '1.0400', '1.0400', '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 (128195, '2022-10-24', 7411, 121203, 7164, 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 (128196, '2022-10-24', 2277, 121204, 7164, 2937, '-82.0000', '0.7800', '0.7800', '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 (128197, '2022-10-24', 2277, 121204, 7164, NULL, '84.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-84.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128198, '2022-10-24', 8136, 121205, 7164, NULL, '1.0000', '5.7700', '5.7700', '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 (128199, '2022-10-24', 7641, 121206, 7164, NULL, '1.0000', '1.9000', '1.9000', '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 (128200, '2022-10-24', 8979, 121207, 7164, 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 (128201, '2022-10-24', 1602, 121208, 7165, 5897, '-186.0000', '6.7859', '6.7859', '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 (128202, '2022-10-24', 1602, 121208, 7165, NULL, '187.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-187.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128203, '2022-10-24', 9966, 121209, 7165, 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 (128204, '2022-10-24', 1342, 121210, 7165, 11264, '-34.0000', '6.8074', '6.8074', '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 (128205, '2022-10-24', 1342, 121210, 7165, NULL, '35.0000', '6.8074', '6.8074', '11.0000', '11.0000', '-35.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128206, '2022-10-24', 1755, 121211, 7165, 3165, '-6.0000', '5.5900', '5.5900', '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 (128207, '2022-10-24', 1755, 121211, 7165, NULL, '7.0000', '5.5900', '5.5900', '11.5000', '11.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 (128208, '2022-10-24', 7411, 121212, 7165, 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 (128209, '2022-10-24', 1386, 121213, 7165, NULL, '1.0000', '4.5000', '4.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 (128210, '2022-10-24', 9736, 121214, 7165, NULL, '1.0000', '3.9100', '3.9100', '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 (128211, '2022-10-24', 3017, 121215, 7165, NULL, '1.0000', '3.9000', '3.9000', '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 (128212, '2022-10-24', 9724, 121216, 7165, NULL, '1.0000', '20.3000', '20.3000', '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 (128213, '2022-10-24', 7350, 121217, 7165, NULL, '1.0000', '30.4000', '30.4000', '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 (128214, '2022-10-24', 2858, 121218, 7165, 17772, '-141.0000', '1.0000', '1.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 (128215, '2022-10-24', 2858, 121218, 7165, NULL, '143.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-143.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128216, '2022-10-24', 1435, 121219, 7165, NULL, '1.0000', '22.5000', '22.5000', '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 (128217, '2022-10-24', 1602, 121220, 7165, 5897, '-186.0000', '6.7859', '6.7859', '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 (128218, '2022-10-24', 1602, 121220, 7165, NULL, '187.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-187.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128219, '2022-10-24', 1612, 121221, 7165, 8732, '-16.0000', '1.6000', '1.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 (128220, '2022-10-24', 1612, 121221, 7165, NULL, '17.0000', '1.6000', '1.6000', '4.0000', '4.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 (128221, '2022-10-24', 9842, 121222, 7165, NULL, '1.0000', '5.6200', '5.6200', '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 (128222, '2022-10-24', 1905, 121223, 7165, 5443, '-19.0000', '0.4000', '0.4000', '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 (128223, '2022-10-24', 1905, 121223, 7165, NULL, '20.0000', '0.4000', '0.4000', '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 (128224, '2022-10-24', 1347, 121224, 7165, 243, '3.0000', '3.4000', '3.4000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128225, '2022-10-24', 7756, 121225, 7165, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128226, '2022-10-24', 2022, 121226, 7165, 4200, '-4.0000', '3.5000', '3.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 (128227, '2022-10-24', 2022, 121226, 7165, NULL, '5.0000', '3.5000', '3.5000', '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 (128228, '2022-10-24', 2379, 121227, 7165, 4032, '-82.0000', '1.5900', '1.5900', '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 (128229, '2022-10-24', 2379, 121227, 7165, NULL, '85.0000', '1.5900', '1.5900', '4.5000', '4.5000', '-85.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128230, '2022-10-24', 2643, 121228, 7165, NULL, '1.0000', '0.8700', '0.8700', '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 (128231, '2022-10-24', 1921, 121229, 7165, 6873, '1.0000', '13.0375', '13.0375', '5.0000', '5.0000', '4.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 (128232, '2022-10-24', 1904, 121230, 7165, 5442, '-116.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 (128233, '2022-10-24', 1904, 121230, 7165, NULL, '117.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-117.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128234, '2022-10-24', 1935, 121231, 7165, 5586, '-226.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 (128235, '2022-10-24', 1935, 121231, 7165, NULL, '227.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-227.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128236, '2022-10-24', 9729, 121232, 7165, NULL, '1.0000', '0.6200', '0.6200', '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 (128237, '2022-10-24', 2379, 121233, 7165, 4032, '-82.0000', '1.5900', '1.5900', '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 (128238, '2022-10-24', 2379, 121233, 7165, NULL, '86.0000', '1.5900', '1.5900', '4.5000', '4.5000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128239, '2022-10-24', 2229, 121234, 7165, 1704, '-7.0000', '24.5000', '24.5000', '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 (128240, '2022-10-24', 2229, 121234, 7165, NULL, '8.0000', '24.5000', '24.5000', '38.0000', '38.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 (128241, '2022-10-24', 2545, 121235, 7165, 6306, '-12.0000', '5.8819', '5.8819', '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 (128242, '2022-10-24', 2545, 121235, 7165, NULL, '13.0000', '5.8819', '5.8819', '12.5000', '12.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 (128243, '2022-10-24', 9219, 121236, 7165, NULL, '1.0000', '6.3000', '6.3000', '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 (128244, '2022-10-24', 1736, 121237, 7165, 7382, '-17.0000', '-6.2282', '-6.2282', '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 (128245, '2022-10-24', 1736, 121237, 7165, NULL, '19.0000', '-6.2282', '-6.2282', '50.0000', '50.0000', '-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 (128246, '2022-10-24', 2277, 121238, 7165, 2937, '-84.0000', '0.7800', '0.7800', '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 (128247, '2022-10-24', 2277, 121238, 7165, NULL, '86.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128248, '2022-10-24', 1371, 121239, 7165, 10169, '-18.0000', '5.5000', '5.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 (128249, '2022-10-24', 1371, 121239, 7165, NULL, '19.0000', '5.5000', '5.5000', '10.0000', '10.0000', '-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 (128250, '2022-10-24', 2656, 121240, 7165, NULL, '2.0000', '1.5000', '1.5000', '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 (128251, '2022-10-24', 3058, 121241, 7165, NULL, '2.0000', '4.3000', '4.3000', '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 (128252, '2022-10-24', 2656, 121242, 7165, NULL, '1.0000', '1.5000', '1.5000', '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 (128253, '2022-10-24', 9578, 121243, 7165, NULL, '1.0000', '8.0000', '8.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 (128254, '2022-10-24', 9946, 121244, 7165, NULL, '1.0000', '13.6000', '13.6000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128255, '2022-10-24', 1695, 121245, 7165, 12925, '-21.0000', '15.5000', '15.5000', '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 (128256, '2022-10-24', 1695, 121245, 7165, NULL, '22.0000', '15.5000', '15.5000', '38.0000', '38.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128257, '2022-10-24', 2643, 121246, 7165, NULL, '1.0000', '0.8700', '0.8700', '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 (128258, '2022-10-24', 8740, 121247, 7165, 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 (128259, '2022-10-24', 1602, 121248, 7165, 5897, '-186.0000', '6.7859', '6.7859', '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 (128260, '2022-10-24', 1602, 121248, 7165, NULL, '187.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-187.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128261, '2022-10-24', 2283, 121249, 7165, 2943, '-39.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 (128262, '2022-10-24', 2283, 121249, 7165, NULL, '40.0000', '1.4300', '1.4300', '2.0000', '2.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 (128263, '2022-10-24', 1585, 121250, 7165, 7602, '-15.0000', '13.0000', '13.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 (128264, '2022-10-24', 1585, 121250, 7165, NULL, '16.0000', '13.0000', '13.0000', '15.0000', '15.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 (128265, '2022-10-24', 2277, 121251, 7165, 2937, '-84.0000', '0.7800', '0.7800', '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 (128266, '2022-10-24', 2277, 121251, 7165, NULL, '86.0000', '0.7800', '0.7800', '1.5000', '1.5000', '-86.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128267, '2022-10-24', 3019, 121252, 7165, NULL, '1.0000', '7.8000', '7.8000', '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 (128268, '2022-10-24', 1698, 121253, 7165, NULL, '1.0000', '7.9800', '7.9800', '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 (128269, '2022-10-24', 2129, 121254, 7165, 5447, '-1.0000', '6.4100', '6.4100', '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 (128270, '2022-10-24', 2129, 121254, 7165, NULL, '2.0000', '6.4100', '6.4100', '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 (128271, '2022-10-24', 10005, 121255, 7165, NULL, '1.0000', '6.8000', '6.8000', '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 (128272, '2022-10-24', 2858, 121256, 7165, 17772, '-141.0000', '1.0000', '1.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 (128273, '2022-10-24', 2858, 121256, 7165, NULL, '142.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-142.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128274, '2022-10-24', 8759, 121257, 7165, NULL, '1.0000', '6.5000', '6.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 (128275, '2022-10-24', 1602, 121258, 7165, 5897, '-186.0000', '6.7859', '6.7859', '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 (128276, '2022-10-24', 1602, 121258, 7165, NULL, '187.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-187.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128277, '2022-10-24', 7411, 121259, 7165, 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 (128278, '2022-10-24', 1871, 121260, 7165, 8223, '-300.0000', '24.5246', '24.5246', '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 (128279, '2022-10-24', 1871, 121260, 7165, NULL, '305.0000', '24.5246', '24.5246', '4.5000', '4.5000', '-305.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128280, '2022-10-24', 2416, 121261, 7165, 4745, '-49.0000', '1.2000', '1.2000', '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 (128281, '2022-10-24', 2416, 121261, 7165, NULL, '50.0000', '1.2000', '1.2000', '2.5000', '2.5000', '-50.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128282, '2022-10-24', 9999, 121262, 7165, NULL, '1.0000', '3.1000', '3.1000', '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 (128283, '2022-10-25', 9747, 121263, 7166, 64239, '2.0000', '0.6500', '0.6500', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128284, '2022-10-25', 9695, 121264, 7166, 62530, '1.0000', '5.9282', '5.9282', '9.0000', '9.0000', '9.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128285, '2022-10-25', 7385, 121265, 7166, 65251, '2.0000', '5.0577', '5.0577', '4.5000', '4.5000', '54.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128286, '2022-10-25', 7917, 121266, 7166, 64393, '5.0000', '1.4670', '1.4670', '0.8000', '0.8000', '91.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128287, '2022-10-25', 7641, 121267, 7166, 65247, '2.0000', '7.8434', '7.8434', '11.5000', '11.5000', '15.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128288, '2022-10-25', 8359, 121268, 7166, 65236, '1.0000', '146.2328', '146.2328', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128289, '2022-10-25', 2104, 121269, 7166, NULL, '4.0000', '0.2000', '0.2000', '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 (128290, '2022-10-25', 7672, 121270, 7166, 65266, '1.0000', '3.1382', '3.1382', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128291, '2022-10-25', 9461, 121271, 7166, 46265, '1.0000', '2.9703', '2.9703', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128292, '2022-10-25', 8186, 121272, 7166, 61866, '3.0000', '1.5581', '1.5581', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 531);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128293, '2022-10-25', 7753, 121273, 7166, 65244, '2.0000', '3.7357', '3.7357', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128294, '2022-10-25', 7330, 121274, 7166, 60792, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 524);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128295, '2022-10-25', 7385, 121275, 7166, 65251, '12.0000', '5.0577', '5.0577', '4.5000', '4.5000', '44.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128296, '2022-10-25', 2251, 121276, 7166, 63852, '1.0000', '13.1375', '13.1375', '22.0000', '22.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128297, '2022-10-25', 7980, 121277, 7166, NULL, '10.0000', '21379.0542', '21379.0542', '0.9000', '0.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 (128298, '2022-10-25', 7444, 121278, 7166, 65233, '1.0000', '3.9102', '3.9102', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128299, '2022-10-25', 8359, 121279, 7166, 65236, '1.0000', '146.2328', '146.2328', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128300, '2022-10-25', 7385, 121280, 7166, 65251, '6.0000', '5.0577', '5.0577', '4.5000', '4.5000', '50.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128301, '2022-10-25', 8979, 121281, 7166, 64408, '1.0000', '0.9426', '0.9426', '2.0000', '2.0000', '45.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128302, '2022-10-25', 2295, 121282, 7166, NULL, '1.0000', '-7.8337', '-7.8337', '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 (128303, '2022-10-25', 9942, 121283, 7166, 64258, '1.0000', '8.9119', '8.9119', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128304, '2022-10-25', 9953, 121284, 7166, 62326, '1.0000', '8.9000', '8.9000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128305, '2022-10-25', 8149, 121285, 7166, 42409, '1.0000', '5.3000', '5.3000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128306, '2022-10-25', 2289, 121286, 7166, NULL, '12.0000', '4.0652', '4.0652', '0.5000', '0.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 (128307, '2022-10-25', 7556, 121287, 7166, 63878, '1.0000', '22.5112', '22.5112', '33.0000', '33.0000', '3.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128308, '2022-10-25', 7736, 121288, 7166, 65238, '1.0000', '25.9362', '25.9362', '36.0000', '36.0000', '1.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128309, '2022-10-25', 8039, 121289, 7166, 65336, '1.0000', '17.2222', '17.2222', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 572);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128310, '2022-10-25', 2315, 121290, 7166, 64405, '4.0000', '0.7662', '0.7662', '1.0000', '1.0000', '68.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128311, '2022-10-25', 7385, 121291, 7166, 65251, '2.0000', '5.0577', '5.0577', '4.5000', '4.5000', '54.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128312, '2022-10-25', 2102, 121292, 7166, NULL, '1.0000', '1.5667', '1.5667', '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 (128313, '2022-10-25', 9092, 121293, 7166, 64935, '1.0000', '0.4265', '0.4265', '1.0000', '1.0000', '155.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128314, '2022-10-25', 8666, 121294, 7166, 64104, '1.0000', '0.4600', '0.4600', '1.0000', '1.0000', '16.0000', 1, 0, NULL, 554);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128315, '2022-10-25', 9190, 121295, 7166, 61759, '1.0000', '7.6000', '7.6000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128316, '2022-10-25', 2506, 121296, 7166, 61907, '1.0000', '4.6900', '4.6900', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128317, '2022-10-25', 7509, 121297, 7166, 65240, '1.0000', '8.9741', '8.9741', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128318, '2022-10-25', 8918, 121298, 7166, 62303, '1.0000', '1.8469', '1.8469', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128319, '2022-10-25', 7819, 121299, 7166, 65241, '1.0000', '12.9059', '12.9059', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128320, '2022-10-25', 2636, 121300, 7166, NULL, '1.0000', '7.5000', '7.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 (128321, '2022-10-25', 8657, 121301, 7166, 63936, '1.0000', '9.5800', '9.5800', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128322, '2022-10-25', 7514, 121302, 7166, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '26.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128323, '2022-10-25', 9913, 121303, 7166, 64927, '1.0000', '13.6400', '13.6400', '19.0000', '19.0000', '0.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128324, '2022-10-25', 1904, 121304, 7166, 61745, '1.0000', '157.5719', '157.5719', '1.0000', '1.0000', '88.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128325, '2022-10-25', 10006, 121305, 7167, NULL, '1.0000', '12.9800', '12.9800', '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 (128326, '2022-10-25', 1342, 121306, 7167, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128327, '2022-10-25', 1908, 121307, 7167, NULL, '1.0000', '0.9032', '0.9032', '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 (128328, '2022-10-25', 2607, 121308, 7167, 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 (128329, '2022-10-25', 1519, 121309, 7167, 65416, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128330, '2022-10-25', 8208, 121310, 7167, NULL, '2.0000', '63.9119', '63.9119', '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 (128331, '2022-10-25', 2104, 121311, 7167, NULL, '2.0000', '0.2000', '0.2000', '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 (128332, '2022-10-25', 1837, 121312, 7167, 64845, '2.0000', '1.0120', '1.0120', '1.0000', '1.0000', '19.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128333, '2022-10-25', 1822, 121313, 7167, 56458, '1.0000', '2.8001', '2.8001', '4.5000', '4.5000', '30.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128334, '2022-10-25', 9751, 121314, 7167, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128335, '2022-10-25', 2612, 121315, 7167, NULL, '3.0000', '9.3800', '9.3800', '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 (128336, '2022-10-25', 8384, 121316, 7167, 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 (128337, '2022-10-25', 9729, 121317, 7167, 64805, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128338, '2022-10-25', 2169, 121318, 7167, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '40.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128339, '2022-10-25', 8184, 121319, 7167, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (128340, '2022-10-25', 1504, 121320, 7167, 63459, '10.0000', '2.1097', '2.1097', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128341, '2022-10-25', 2285, 121321, 7167, NULL, '1.0000', '-623.4690', '-623.4690', '86.0000', '86.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128342, '2022-10-25', 1501, 121322, 7167, NULL, '2.0000', '-2.2016', '-2.2016', '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 (128343, '2022-10-25', 1904, 121323, 7167, 62413, '1.0000', '1.1631', '1.1631', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128344, '2022-10-25', 2273, 121324, 7167, 65445, '1.0000', '3.0767', '3.0767', '4.0000', '4.0000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128345, '2022-10-25', 1602, 121325, 7167, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '20.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128346, '2022-10-25', 8979, 121326, 7167, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128347, '2022-10-25', 2272, 121327, 7167, 65387, '1.0000', '14.3111', '14.3111', '13.5000', '13.5000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128348, '2022-10-25', 1621, 121328, 7167, 64850, '1.0000', '13.6096', '13.6096', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128349, '2022-10-25', 2037, 121329, 7167, 22540, '1.0000', '-31.4720', '-31.4720', '22.0000', '22.0000', '0.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 (128350, '2022-10-25', 3058, 121330, 7167, NULL, '1.0000', '8.2853', '8.2853', '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 (128351, '2022-10-25', 9482, 121331, 7167, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '217.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128352, '2022-10-25', 9579, 121332, 7167, 54579, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 462);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128353, '2022-10-25', 2315, 121333, 7167, NULL, '2.0000', '0.7700', '0.7700', '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 (128354, '2022-10-25', 7411, 121334, 7167, NULL, '1.0000', '1.2819', '1.2819', '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 (128355, '2022-10-25', 9846, 121335, 7168, 64327, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128356, '2022-10-25', 1837, 121336, 7168, 62213, '2.0000', '0.6220', '0.6220', '1.0000', '1.0000', '22.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128357, '2022-10-25', 1347, 121337, 7168, 62725, '1.0000', '2.7178', '2.7178', '6.0000', '6.0000', '25.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128358, '2022-10-25', 1868, 121338, 7168, 53259, '1.0000', '4.1530', '4.1530', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128359, '2022-10-25', 8740, 121339, 7168, 65490, '1.0000', '2.1176', '2.1176', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128360, '2022-10-25', 2293, 121340, 7168, 50920, '1.0000', '0.8705', '0.8705', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128361, '2022-10-25', 2109, 121341, 7168, 65301, '1.0000', '0.2827', '0.2827', '1.5000', '1.5000', '59.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128362, '2022-10-25', 1810, 121342, 7168, 61631, '1.0000', '11.4000', '11.4000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128363, '2022-10-25', 8889, 121343, 7168, 31725, '1.0000', '34.0000', '34.0000', '55.0000', '55.0000', '0.0000', 1, 0, NULL, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128364, '2022-10-25', 2858, 121344, 7168, 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 (128365, '2022-10-25', 2320, 121345, 7168, 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 (128366, '2022-10-25', 2662, 121346, 7168, 46617, '1.0000', '4.6731', '4.6731', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 341);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128367, '2022-10-25', 2315, 121347, 7168, 60074, '5.0000', '0.6397', '0.6397', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128368, '2022-10-25', 8181, 121348, 7168, NULL, '2.0000', '4.5000', '4.5000', '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 (128369, '2022-10-25', 8763, 121349, 7168, 60521, '2.0000', '5.4000', '5.4000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 521);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128370, '2022-10-25', 1665, 121350, 7168, 64549, '1.0000', '1.3232', '1.3232', '2.0000', '2.0000', '134.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128371, '2022-10-25', 9729, 121351, 7168, 63393, '1.0000', '0.6200', '0.6200', '1.0000', '1.0000', '49.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128372, '2022-10-25', 1602, 121352, 7168, 64515, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '38.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128373, '2022-10-25', 8979, 121353, 7168, 65073, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128374, '2022-10-25', 1702, 121354, 7169, NULL, '1.0000', '-142.4997', '-142.4997', '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 (128375, '2022-10-25', 7318, 121355, 7169, 65450, '1.0000', '17.5693', '17.5693', '22.5000', '22.5000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128376, '2022-10-25', 2269, 121356, 7169, NULL, '1.0000', '0.1934', '0.1934', '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 (128377, '2022-10-25', 2297, 121357, 7169, NULL, '1.0000', '10.2971', '10.2971', '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 (128378, '2022-10-25', 2295, 121358, 7169, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '29.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128379, '2022-10-25', 1337, 121359, 7169, NULL, '1.0000', '2.2000', '2.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 (128380, '2022-10-25', 1339, 121360, 7169, 65118, '1.0000', '2.4796', '2.4796', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128381, '2022-10-25', 7745, 121361, 7169, NULL, '1.0000', '6.7000', '6.7000', '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 (128382, '2022-10-25', 2948, 121362, 7169, 62432, '2.0000', '1.1550', '1.1550', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128383, '2022-10-25', 1863, 121363, 7169, 64589, '2.0000', '1.5148', '1.5148', '2.5000', '2.5000', '70.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128384, '2022-10-25', 7684, 121364, 7169, NULL, '1.0000', '9.0000', '9.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 (128385, '2022-10-25', 8026, 121365, 7169, NULL, '2.0000', '16.5000', '16.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 (128386, '2022-10-25', 1585, 121366, 7169, 64872, '1.0000', '10.2667', '10.2667', '15.0000', '15.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128387, '2022-10-25', 10022, 121367, 7169, 64794, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128388, '2022-10-25', 2293, 121368, 7169, NULL, '3.0000', '1.1118', '1.1118', '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 (128389, '2022-10-25', 9740, 121369, 7169, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128390, '2022-10-25', 1704, 121370, 7169, 65128, '1.0000', '40.2400', '40.2400', '51.5000', '51.5000', '4.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128391, '2022-10-25', 2088, 121371, 7169, 64601, '1.0000', '2.9062', '2.9062', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128392, '2022-10-25', 2167, 121372, 7169, NULL, '1.0000', '-35.2864', '-35.2864', '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 (128393, '2022-10-25', 9874, 121373, 7169, NULL, '1.0000', '25.0000', '25.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 (128394, '2022-10-25', 2418, 121374, 7169, 54823, '1.0000', '9.2668', '9.2668', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128395, '2022-10-25', 9167, 121375, 7169, NULL, '1.0000', '50.0000', '50.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 (128396, '2022-10-25', 1863, 121376, 7169, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '71.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128397, '2022-10-25', 8844, 121377, 7169, NULL, '1.0000', '10.5826', '10.5826', '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 (128398, '2022-10-25', 1501, 121378, 7169, NULL, '1.0000', '-2.2016', '-2.2016', '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 (128399, '2022-10-25', 2544, 121379, 7169, NULL, '1.0000', '11.5000', '11.5000', '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 (128400, '2022-10-25', 2105, 121380, 7170, 64858, '8.0000', '2.9790', '2.9790', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128401, '2022-10-25', 1339, 121381, 7170, 65118, '1.0000', '2.4796', '2.4796', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128402, '2022-10-25', 9734, 121382, 7170, 65428, '2.0000', '0.4603', '0.4603', '0.7000', '0.7000', '191.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128403, '2022-10-25', 9565, 121383, 7170, NULL, '1.0000', '9.5000', '9.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 (128404, '2022-10-25', 9634, 121384, 7170, NULL, '2.0000', '0.7698', '0.7698', '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 (128405, '2022-10-25', 2655, 121385, 7170, 65495, '1.0000', '4.7730', '4.7730', '11.0000', '11.0000', '38.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128406, '2022-10-25', 2656, 121386, 7170, 65510, '2.0000', '1.9684', '1.9684', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128407, '2022-10-25', 9634, 121387, 7170, NULL, '2.0000', '0.7698', '0.7698', '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 (128408, '2022-10-25', 1601, 121388, 7170, 64792, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128409, '2022-10-25', 1772, 121389, 7170, 64049, '1.0000', '6.9767', '6.9767', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128410, '2022-10-25', 7558, 121390, 7171, NULL, '20.0000', '1.9700', '1.9700', '4.5000', '4.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 (128411, '2022-10-25', 1409, 121391, 7172, 64717, '1.0000', '13.2000', '13.2000', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128412, '2022-10-25', 2025, 121392, 7172, 59671, '1.0000', '4.9242', '4.9242', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128413, '2022-10-25', 7722, 121393, 7172, 59692, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128414, '2022-10-25', 2167, 121394, 7172, NULL, '1.0000', '-35.2864', '-35.2864', '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 (128415, '2022-10-25', 9827, 121395, 7172, NULL, '1.0000', '16.6600', '16.6600', '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 (128416, '2022-10-25', 1524, 121396, 7172, 62433, '1.0000', '4.3324', '4.3324', '6.0000', '6.0000', '48.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128417, '2022-10-25', 1863, 121397, 7172, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '68.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128418, '2022-10-25', 8149, 121398, 7172, 65125, '1.0000', '10.6583', '10.6583', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128419, '2022-10-25', 1640, 121399, 7172, NULL, '1.0000', '0.9277', '0.9277', '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 (128420, '2022-10-25', 1772, 121400, 7172, 64049, '1.0000', '6.9767', '6.9767', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128421, '2022-10-25', 9936, 121401, 7172, 59693, '1.0000', '45.0000', '45.0000', '55.0000', '55.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128422, '2022-10-25', 1888, 121402, 7173, 65376, '1.0000', '22.0435', '22.0435', '36.0000', '36.0000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128423, '2022-10-25', 2315, 121403, 7173, NULL, '2.0000', '0.7700', '0.7700', '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 (128424, '2022-10-25', 2384, 121404, 7173, NULL, '2.0000', '-312.4992', '-312.4992', '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 (128425, '2022-10-25', 1650, 121405, 7173, 64623, '1.0000', '8.9876', '8.9876', '22.5000', '22.5000', '1.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128426, '2022-10-25', 1910, 121406, 7173, NULL, '1.0000', '0.5756', '0.5756', '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 (128427, '2022-10-25', 2937, 121407, 7173, 64849, '1.0000', '6.2804', '6.2804', '9.5000', '9.5000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128428, '2022-10-25', 1946, 121408, 7173, NULL, '1.0000', '-24.7189', '-24.7189', '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 (128429, '2022-10-25', 10058, 121409, 7173, 65367, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128430, '2022-10-25', 2169, 121410, 7173, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '39.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128431, '2022-10-25', 2069, 121411, 7174, 5571, '-32.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128432, '2022-10-25', 2069, 121411, 7174, NULL, '33.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (128433, '2022-10-25', 8677, 121412, 7174, NULL, '2.0000', '1.2800', '1.2800', '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 (128434, '2022-10-25', 2315, 121413, 7174, 2735, '-740.0000', '0.3300', '0.3300', '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 (128435, '2022-10-25', 2315, 121413, 7174, NULL, '742.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-742.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128436, '2022-10-25', 1612, 121414, 7174, 8732, '-17.0000', '1.6000', '1.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 (128437, '2022-10-25', 1612, 121414, 7174, NULL, '18.0000', '1.6000', '1.6000', '4.0000', '4.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 (128438, '2022-10-25', 7473, 121415, 7174, NULL, '1.0000', '0.5300', '0.5300', '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 (128439, '2022-10-25', 7959, 121416, 7174, NULL, '1.0000', '9.6000', '9.6000', '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 (128440, '2022-10-25', 9092, 121417, 7174, NULL, '4.0000', '5.2900', '5.2900', '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 (128441, '2022-10-25', 7781, 121418, 7174, NULL, '3.0000', '4.2500', '4.2500', '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 (128442, '2022-10-25', 7708, 121419, 7174, NULL, '1.0000', '7.8000', '7.8000', '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 (128443, '2022-10-25', 1339, 121420, 7174, 13004, '-28.0000', '1.6012', '1.6012', '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 (128444, '2022-10-25', 1339, 121420, 7174, NULL, '29.0000', '1.6012', '1.6012', '3.5000', '3.5000', '-29.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128445, '2022-10-25', 8596, 121421, 7174, 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 (128446, '2022-10-25', 7781, 121422, 7174, NULL, '4.0000', '4.2500', '4.2500', '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 (128447, '2022-10-25', 2315, 121423, 7174, 2735, '-740.0000', '0.3300', '0.3300', '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 (128448, '2022-10-25', 2315, 121423, 7174, NULL, '741.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-741.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128449, '2022-10-25', 9092, 121424, 7174, NULL, '1.0000', '5.2900', '5.2900', '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 (128450, '2022-10-25', 7459, 121425, 7174, NULL, '2.0000', '2.3500', '2.3500', '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 (128451, '2022-10-25', 7473, 121426, 7174, NULL, '4.0000', '0.5300', '0.5300', '0.8000', '0.8000', '-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 (128452, '2022-10-25', 7703, 121427, 7174, NULL, '1.0000', '22.9900', '22.9900', '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 (128453, '2022-10-25', 8889, 121428, 7174, NULL, '1.0000', '39.0000', '39.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 (128454, '2022-10-25', 9671, 121429, 7174, NULL, '1.0000', '10.9300', '10.9300', '42.5000', '42.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128455, '2022-10-25', 9209, 121430, 7174, NULL, '1.0000', '4.8000', '4.8000', '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 (128456, '2022-10-25', 8743, 121431, 7174, NULL, '1.0000', '10.0000', '10.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 (128457, '2022-10-25', 7853, 121432, 7174, NULL, '2.0000', '13.0000', '13.0000', '30.0000', '30.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 (128458, '2022-10-25', 2227, 121433, 7174, 1702, '-8.0000', '14.0000', '14.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 (128459, '2022-10-25', 2227, 121433, 7174, NULL, '11.0000', '14.0000', '14.0000', '28.0000', '28.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 (128460, '2022-10-25', 8772, 121434, 7174, 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 (128461, '2022-10-25', 8982, 121435, 7174, NULL, '1.0000', '10.0000', '10.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 (128462, '2022-10-25', 8745, 121436, 7174, NULL, '2.0000', '8.0000', '8.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 (128463, '2022-10-25', 7380, 121437, 7174, NULL, '1.0000', '8.0000', '8.0000', '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 (128464, '2022-10-25', 8047, 121438, 7174, NULL, '1.0000', '9.2000', '9.2000', '41.5000', '41.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128465, '2022-10-25', 7512, 121439, 7174, NULL, '3.0000', '1.0000', '1.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 (128466, '2022-10-25', 8124, 121440, 7174, NULL, '2.0000', '19.0000', '19.0000', '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 (128467, '2022-10-25', 8744, 121441, 7174, NULL, '2.0000', '3.6600', '3.6600', '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 (128468, '2022-10-25', 9092, 121442, 7174, NULL, '1.0000', '5.2900', '5.2900', '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 (128469, '2022-10-25', 7514, 121443, 7174, NULL, '1.0000', '2.2500', '2.2500', '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 (128470, '2022-10-25', 2975, 121444, 7174, 22363, '1.0000', '6.0000', '6.0000', '10.5000', '10.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 (128471, '2022-10-25', 7316, 121445, 7174, NULL, '1.0000', '9.5500', '9.5500', '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 (128472, '2022-10-25', 7438, 121446, 7174, NULL, '1.0000', '28.6900', '28.6900', '71.0000', '71.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128473, '2022-10-25', 7356, 121447, 7174, NULL, '1.0000', '10.9000', '10.9000', '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 (128474, '2022-10-25', 7316, 121448, 7174, NULL, '10.0000', '9.5500', '9.5500', '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 (128475, '2022-10-25', 7888, 121449, 7174, NULL, '1.0000', '14.0000', '14.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 (128476, '2022-10-25', 1841, 121450, 7174, NULL, '2.0000', '142.5780', '142.5780', '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 (128477, '2022-10-25', 1840, 121451, 7174, NULL, '2.0000', '-138499292.4246', '-138499292.4246', '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 (128478, '2022-10-25', 2315, 121452, 7174, 2735, '-740.0000', '0.3300', '0.3300', '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 (128479, '2022-10-25', 2315, 121452, 7174, NULL, '742.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-742.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128480, '2022-10-25', 2242, 121453, 7175, NULL, '3.0000', '1.2664', '1.2664', '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 (128481, '2022-10-25', 2295, 121454, 7175, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128482, '2022-10-25', 2109, 121455, 7175, 64808, '1.0000', '-3.8860', '-3.8860', '1.5000', '1.5000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128483, '2022-10-25', 1401, 121456, 7175, 64451, '1.0000', '3.6250', '3.6250', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 560);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128484, '2022-10-25', 2169, 121457, 7176, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128485, '2022-10-25', 9399, 121458, 7176, 34949, '2.0000', '0.9800', '0.9800', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128486, '2022-10-25', 1863, 121459, 7176, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '67.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128487, '2022-10-25', 2494, 121460, 7177, NULL, '1.0000', '32.7000', '32.7000', '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 (128488, '2022-10-25', 1863, 121461, 7177, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '66.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128489, '2022-10-25', 7744, 121462, 7177, NULL, '1.0000', '2.5833', '2.5833', '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 (128490, '2022-10-25', 1904, 121463, 7177, 62413, '1.0000', '1.1631', '1.1631', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128491, '2022-10-25', 7524, 121464, 7178, NULL, '1.0000', '11.9500', '11.9500', '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 (128492, '2022-10-25', 7630, 121465, 7178, NULL, '1.0000', '10.0000', '10.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 (128493, '2022-10-25', 1935, 121466, 7178, 5586, '-227.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 (128494, '2022-10-25', 1935, 121466, 7178, NULL, '228.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-228.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128495, '2022-10-25', 3044, 121467, 7178, NULL, '1.0000', '0.4000', '0.4000', '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 (128496, '2022-10-25', 7411, 121468, 7179, NULL, '1.0000', '1.5882', '1.5882', '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 (128497, '2022-10-25', 1715, 121469, 7179, 65284, '1.0000', '8.0782', '8.0782', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128498, '2022-10-25', 1425, 121470, 7179, 64963, '1.0000', '7.3728', '7.3728', '14.0000', '14.0000', '0.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128499, '2022-10-25', 1478, 121471, 7179, 60043, '1.0000', '38.2121', '38.2121', '36.5000', '36.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128500, '2022-10-25', 1478, 121471, 7179, 52251, '1.0000', '38.2121', '38.2121', '36.5000', '36.5000', '1.0000', 1, 0, NULL, 437);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128501, '2022-10-25', 9840, 121472, 7179, 53708, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 450);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128502, '2022-10-25', 8482, 121473, 7179, 65331, '1.0000', '18.3750', '18.3750', '24.5000', '24.5000', '8.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128503, '2022-10-25', 1690, 121474, 7179, 64968, '1.0000', '8.0628', '8.0628', '16.0000', '16.0000', '3.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128504, '2022-10-25', 9940, 121475, 7179, 64781, '1.0000', '9.5168', '9.5168', '13.0000', '13.0000', '34.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128505, '2022-10-25', 2384, 121476, 7179, 64562, '1.0000', '0.4889', '0.4889', '0.8000', '0.8000', '95.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128506, '2022-10-25', 2730, 121477, 7179, 21547, '2.0000', '1.2000', '1.2000', '2.5000', '2.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 (128507, '2022-10-25', 2317, 121478, 7179, 59039, '2.0000', '15.0685', '15.0685', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128508, '2022-10-25', 2655, 121479, 7179, 65491, '6.0000', '7.6552', '7.6552', '11.0000', '11.0000', '34.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128509, '2022-10-25', 1602, 121480, 7179, 64515, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '37.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128510, '2022-10-25', 9831, 121481, 7179, 65493, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '23.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128511, '2022-10-25', 2769, 121482, 7179, 64561, '2.0000', '2.2279', '2.2279', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128512, '2022-10-25', 7385, 121483, 7179, 55490, '1.0000', '2.6553', '2.6553', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 477);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128513, '2022-10-25', 7385, 121483, 7179, 54646, '1.0000', '2.6553', '2.6553', '4.5000', '4.5000', '25.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128514, '2022-10-25', 2858, 121484, 7179, 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 (128515, '2022-10-25', 9671, 121485, 7179, 65287, '1.0000', '28.9900', '28.9900', '42.5000', '42.5000', '3.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128516, '2022-10-25', 2302, 121486, 7179, 64965, '1.0000', '5.7084', '5.7084', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128517, '2022-10-25', 2486, 121487, 7179, 21821, '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 (128518, '2022-10-25', 7642, 121488, 7179, 54649, '1.0000', '5.9867', '5.9867', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 464);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128519, '2022-10-25', 2656, 121489, 7179, 65492, '2.0000', '1.6315', '1.6315', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128520, '2022-10-26', 1501, 121490, 7180, NULL, '1.0000', '-2.2016', '-2.2016', '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 (128521, '2022-10-26', 2169, 121491, 7180, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '37.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128522, '2022-10-26', 2384, 121492, 7180, NULL, '1.0000', '-312.4992', '-312.4992', '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 (128523, '2022-10-26', 9751, 121493, 7180, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '40.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128524, '2022-10-26', 1844, 121494, 7180, NULL, '2.0000', '1.3981', '1.3981', '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 (128525, '2022-10-26', 9735, 121495, 7180, 64836, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128526, '2022-10-26', 2379, 121496, 7180, NULL, '1.0000', '-154.5325', '-154.5325', '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 (128527, '2022-10-26', 7379, 121497, 7180, NULL, '1.0000', '12.5100', '12.5100', '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 (128528, '2022-10-26', 2315, 121498, 7180, NULL, '1.0000', '0.7700', '0.7700', '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 (128529, '2022-10-26', 9740, 121499, 7180, 62840, '1.0000', '0.6695', '0.6695', '2.0000', '2.0000', '43.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128530, '2022-10-26', 9921, 121500, 7180, 60358, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128531, '2022-10-26', 2381, 121501, 7180, 64840, '1.0000', '14.5327', '14.5327', '19.5000', '19.5000', '0.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128532, '2022-10-26', 9735, 121502, 7180, 64836, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128533, '2022-10-26', 1912, 121503, 7180, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128534, '2022-10-26', 2287, 121504, 7180, 65377, '4.0000', '2.7689', '2.7689', '4.5000', '4.5000', '46.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128535, '2022-10-26', 8149, 121505, 7180, 65125, '1.0000', '10.6583', '10.6583', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128536, '2022-10-26', 7429, 121506, 7180, NULL, '1.0000', '55.5000', '55.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 (128537, '2022-10-26', 1554, 121507, 7180, 64605, '1.0000', '3.1897', '3.1897', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128538, '2022-10-26', 8455, 121508, 7180, NULL, '1.0000', '4.5000', '4.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 (128539, '2022-10-26', 1446, 121509, 7180, NULL, '1.0000', '6.6040', '6.6040', '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 (128540, '2022-10-26', 1921, 121510, 7180, 62157, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128541, '2022-10-26', 1908, 121511, 7180, NULL, '1.0000', '0.9032', '0.9032', '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 (128542, '2022-10-26', 2777, 121512, 7181, 65407, '1.0000', '4.0533', '4.0533', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128543, '2022-10-26', 2167, 121513, 7181, NULL, '1.0000', '-35.2864', '-35.2864', '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 (128544, '2022-10-26', 9590, 121514, 7181, NULL, '1.0000', '5.8001', '5.8001', '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 (128545, '2022-10-26', 1521, 121515, 7181, 63439, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128546, '2022-10-26', 9729, 121516, 7181, 64805, '4.0000', '0.6200', '0.6200', '1.0000', '1.0000', '39.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128547, '2022-10-26', 8170, 121517, 7181, 64599, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128548, '2022-10-26', 8444, 121518, 7181, 59865, '1.0000', '1.6000', '1.6000', '3.5000', '3.5000', '31.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128549, '2022-10-26', 8420, 121519, 7181, 48491, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '8.0000', 1, 0, NULL, 357);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128550, '2022-10-26', 2948, 121520, 7182, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128551, '2022-10-26', 2287, 121521, 7182, 65377, '4.0000', '2.7689', '2.7689', '4.5000', '4.5000', '42.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128552, '2022-10-26', 2068, 121522, 7182, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128553, '2022-10-26', 9840, 121523, 7182, 64598, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128554, '2022-10-26', 2948, 121524, 7182, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '28.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128555, '2022-10-26', 8775, 121525, 7183, 65039, '1.0000', '2.3254', '2.3254', '9.0000', '9.0000', '8.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128556, '2022-10-26', 1935, 121526, 7183, 64832, '2.0000', '0.9044', '0.9044', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128557, '2022-10-26', 1863, 121527, 7183, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '65.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128558, '2022-10-26', 9734, 121528, 7183, 65428, '2.0000', '0.4603', '0.4603', '0.7000', '0.7000', '189.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128559, '2022-10-26', 1382, 121529, 7183, 65415, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128560, '2022-10-26', 1313, 121530, 7183, 65459, '1.0000', '0.9218', '0.9218', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128561, '2022-10-26', 9788, 121531, 7184, 64791, '1.0000', '1.8451', '1.8451', '2.5000', '2.5000', '74.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128562, '2022-10-26', 7743, 121532, 7184, NULL, '1.0000', '7.3900', '7.3900', '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 (128563, '2022-10-26', 9819, 121533, 7184, 62425, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128564, '2022-10-26', 1432, 121534, 7184, 64719, '2.0000', '12.9932', '12.9932', '18.0000', '18.0000', '7.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128565, '2022-10-26', 1863, 121535, 7184, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '64.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128566, '2022-10-26', 1935, 121536, 7184, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128567, '2022-10-26', 1331, 121537, 7185, NULL, '1.0000', '4.2000', '4.2000', '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 (128568, '2022-10-26', 8063, 121538, 7186, 64260, '1.0000', '-401.5402', '-401.5402', '7.0000', '7.0000', '48.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128569, '2022-10-26', 7921, 121539, 7186, NULL, '1.0000', '0.3000', '0.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 (128570, '2022-10-26', 8308, 121540, 7186, NULL, '1.0000', '-4184.9622', '-4184.9622', '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 (128571, '2022-10-26', 9463, 121541, 7186, 64380, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128572, '2022-10-26', 9271, 121542, 7186, 62324, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128573, '2022-10-26', 8359, 121543, 7186, 65236, '1.0000', '146.2328', '146.2328', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128574, '2022-10-26', 8539, 121544, 7186, 64270, '2.0000', '1.8089', '1.8089', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 555);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128575, '2022-10-26', 7641, 121545, 7186, 65247, '1.0000', '7.8434', '7.8434', '11.5000', '11.5000', '14.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128576, '2022-10-26', 7333, 121546, 7186, 61921, '2.0000', '13.3704', '13.3704', '5.5000', '5.5000', '24.0000', 1, 0, NULL, 532);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128577, '2022-10-26', 7784, 121547, 7186, 63931, '2.0000', '5.5320', '5.5320', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128578, '2022-10-26', 8200, 121548, 7186, 64944, '1.0000', '9.7411', '9.7411', '14.5000', '14.5000', '8.0000', 1, 0, NULL, 566);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128579, '2022-10-26', 7779, 121549, 7186, 62294, '1.0000', '10.2632', '10.2632', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 537);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128580, '2022-10-26', 7824, 121550, 7186, 64917, '2.0000', '7.7000', '7.7000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128581, '2022-10-26', 2102, 121551, 7186, NULL, '1.0000', '1.5667', '1.5667', '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 (128582, '2022-10-26', 3074, 121552, 7186, 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 (128583, '2022-10-26', 8925, 121553, 7186, 64930, '1.0000', '3.7863', '3.7863', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128584, '2022-10-26', 2427, 121554, 7186, NULL, '1.0000', '6.8000', '6.8000', '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 (128585, '2022-10-26', 8979, 121555, 7186, 64408, '1.0000', '0.9426', '0.9426', '2.0000', '2.0000', '44.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128586, '2022-10-26', 7608, 121556, 7186, 63853, '1.0000', '9.6578', '9.6578', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128587, '2022-10-26', 7514, 121557, 7186, 63938, '1.0000', '-33950.6776', '-33950.6776', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 549);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128588, '2022-10-26', 7781, 121558, 7186, NULL, '3.0000', '15.5167', '15.5167', '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 (128589, '2022-10-26', 7382, 121559, 7186, 65269, '1.0000', '8.9896', '8.9896', '13.0000', '13.0000', '9.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128590, '2022-10-26', 7416, 121560, 7186, NULL, '1.0000', '52.1300', '52.1300', '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 (128591, '2022-10-26', 7674, 121561, 7186, 65234, '1.0000', '43.5348', '43.5348', '3.0000', '3.0000', '58.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128592, '2022-10-26', 7473, 121562, 7186, 64899, '2.0000', '0.5464', '0.5464', '0.8000', '0.8000', '92.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128593, '2022-10-26', 9092, 121563, 7186, 64935, '1.0000', '0.4265', '0.4265', '1.0000', '1.0000', '154.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128594, '2022-10-26', 2102, 121564, 7186, NULL, '1.0000', '1.5667', '1.5667', '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 (128595, '2022-10-26', 2317, 121565, 7186, 58109, '1.0000', '15.5909', '15.5909', '20.0000', '20.0000', '10.0000', 1, 0, NULL, 506);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128596, '2022-10-26', 7933, 121566, 7186, NULL, '2.0000', '1.0292', '1.0292', '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 (128597, '2022-10-26', 7585, 121567, 7186, 60502, '1.0000', '3.6407', '3.6407', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 520);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128598, '2022-10-26', 7585, 121567, 7186, NULL, '1.0000', '3.6407', '3.6407', '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 (128599, '2022-10-26', 8120, 121568, 7186, NULL, '2.0000', '33.0000', '33.0000', '51.5000', '51.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 (128600, '2022-10-26', 1602, 121569, 7187, 5897, '-190.0000', '6.7859', '6.7859', '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 (128601, '2022-10-26', 1602, 121569, 7187, NULL, '191.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-191.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128602, '2022-10-26', 1329, 121570, 7187, NULL, '4.0000', '8.5000', '8.5000', '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 (128603, '2022-10-26', 2296, 121571, 7187, 2955, '-9.0000', '13.2900', '13.2900', '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 (128604, '2022-10-26', 2296, 121571, 7187, NULL, '12.0000', '13.2900', '13.2900', '24.0000', '24.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 (128605, '2022-10-26', 2838, 121572, 7187, 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 (128606, '2022-10-26', 2638, 121573, 7187, 20672, '1.0000', '19.6200', '19.6200', '46.0000', '46.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 (128607, '2022-10-26', 1744, 121574, 7187, 2163, '-8.0000', '26.5281', '26.5281', '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 (128608, '2022-10-26', 1744, 121574, 7187, NULL, '9.0000', '26.5281', '26.5281', '51.5000', '51.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 (128609, '2022-10-26', 1602, 121575, 7187, 5897, '-190.0000', '6.7859', '6.7859', '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 (128610, '2022-10-26', 1602, 121575, 7187, NULL, '191.0000', '6.7859', '6.7859', '11.5000', '11.5000', '-191.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128611, '2022-10-26', 2381, 121576, 7187, 11263, '-9.0000', '12.1900', '12.1900', '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 (128612, '2022-10-26', 2381, 121576, 7187, NULL, '10.0000', '12.1900', '12.1900', '19.5000', '19.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 (128613, '2022-10-26', 9496, 121577, 7187, NULL, '1.0000', '3.8800', '3.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 (128614, '2022-10-26', 2273, 121578, 7187, 2933, '-3.0000', '2.6700', '2.6700', '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 (128615, '2022-10-26', 2273, 121578, 7187, NULL, '4.0000', '2.6700', '2.6700', '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 (128616, '2022-10-26', 2656, 121579, 7187, NULL, '1.0000', '1.5000', '1.5000', '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 (128617, '2022-10-26', 2355, 121580, 7187, 3857, '1.0000', '5.3300', '5.3300', '124.0000', '124.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 (128618, '2022-10-26', 9744, 121581, 7187, NULL, '1.0000', '8.6000', '8.6000', '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 (128619, '2022-10-26', 1519, 121582, 7187, NULL, '1.0000', '3.3500', '3.3500', '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 (128620, '2022-10-26', 3044, 121583, 7187, 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 (128621, '2022-10-26', 7609, 121584, 7187, NULL, '1.0000', '4.3300', '4.3300', '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 (128622, '2022-10-26', 1667, 121585, 7187, 9745, '-67.0000', '5.9400', '5.9400', '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 (128623, '2022-10-26', 1667, 121585, 7187, NULL, '68.0000', '5.9400', '5.9400', '14.5000', '14.5000', '-68.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128624, '2022-10-26', 1347, 121586, 7187, 243, '3.0000', '3.4000', '3.4000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128625, '2022-10-26', 9842, 121587, 7187, NULL, '1.0000', '5.6200', '5.6200', '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 (128626, '2022-10-26', 1837, 121588, 7187, 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 (128627, '2022-10-26', 9724, 121589, 7187, NULL, '1.0000', '20.3000', '20.3000', '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 (128628, '2022-10-26', 2089, 121590, 7187, 10811, '-10.0000', '6.6500', '6.6500', '9.5000', '9.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 (128629, '2022-10-26', 2089, 121590, 7187, NULL, '11.0000', '6.6500', '6.6500', '9.5000', '9.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 (128630, '2022-10-26', 1812, 121591, 7187, 8224, '-128.0000', '7.8900', '7.8900', '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 (128631, '2022-10-26', 1812, 121591, 7187, NULL, '131.0000', '7.8900', '7.8900', '14.5000', '14.5000', '-131.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128632, '2022-10-26', 1781, 121592, 7187, 4899, '-4.0000', '4.1000', '4.1000', '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 (128633, '2022-10-26', 1781, 121592, 7187, NULL, '5.0000', '4.1000', '4.1000', '9.0000', '9.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 (128634, '2022-10-26', 2344, 121593, 7187, 3847, '-6.0000', '18.2000', '18.2000', '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 (128635, '2022-10-26', 2344, 121593, 7187, NULL, '7.0000', '18.2000', '18.2000', '27.0000', '27.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 (128636, '2022-10-26', 2302, 121594, 7187, 2963, '-70.0000', '5.2000', '5.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 (128637, '2022-10-26', 2302, 121594, 7187, NULL, '71.0000', '5.2000', '5.2000', '10.0000', '10.0000', '-71.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128638, '2022-10-26', 1519, 121595, 7187, NULL, '1.0000', '3.3500', '3.3500', '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 (128639, '2022-10-26', 2916, 121596, 7187, NULL, '1.0000', '15.0000', '15.0000', '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 (128640, '2022-10-26', 1688, 121597, 7187, 4896, '-20.0000', '18.5000', '18.5000', '39.5000', '39.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 (128641, '2022-10-26', 1688, 121597, 7187, NULL, '21.0000', '18.5000', '18.5000', '39.5000', '39.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128642, '2022-10-26', 1371, 121598, 7187, 10169, '-19.0000', '5.5000', '5.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 (128643, '2022-10-26', 1371, 121598, 7187, NULL, '20.0000', '5.5000', '5.5000', '10.0000', '10.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 (128644, '2022-10-26', 1493, 121599, 7187, 9747, '-27.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 (128645, '2022-10-26', 1493, 121599, 7187, NULL, '28.0000', '1.5425', '1.5425', '3.0000', '3.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 (128646, '2022-10-26', 2352, 121600, 7187, 3855, '-225.0000', '20.0000', '20.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 (128647, '2022-10-26', 2352, 121600, 7187, NULL, '227.0000', '20.0000', '20.0000', '4.5000', '4.5000', '-227.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128648, '2022-10-26', 9979, 121601, 7187, NULL, '1.0000', '13.9000', '13.9000', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128649, '2022-10-26', 2655, 121602, 7187, NULL, '1.0000', '6.5000', '6.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 (128650, '2022-10-26', 2948, 121603, 7188, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '26.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128651, '2022-10-26', 2068, 121604, 7188, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128652, '2022-10-26', 8482, 121605, 7188, 64077, '1.0000', '18.0579', '18.0579', '24.5000', '24.5000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128653, '2022-10-26', 9482, 121606, 7188, 64050, '1.0000', '1.2046', '1.2046', '2.0000', '2.0000', '216.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128654, '2022-10-26', 2521, 121607, 7188, 65668, '1.0000', '12.0812', '12.0812', '22.0000', '22.0000', '5.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128655, '2022-10-26', 1602, 121608, 7188, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128656, '2022-10-26', 2089, 121609, 7188, 64615, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '5.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128657, '2022-10-26', 1530, 121610, 7188, NULL, '1.0000', '90.0000', '90.0000', '27.5000', '27.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128658, '2022-10-26', 8979, 121611, 7188, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128659, '2022-10-26', 1602, 121612, 7188, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '19.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128660, '2022-10-26', 2169, 121613, 7188, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128661, '2022-10-26', 1851, 121614, 7188, 64063, '1.0000', '14.1705', '14.1705', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128662, '2022-10-26', 1857, 121615, 7188, NULL, '1.0000', '73.1000', '73.1000', '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 (128663, '2022-10-26', 8596, 121616, 7189, 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 (128664, '2022-10-26', 1804, 121617, 7189, 4916, '-25.0000', '4.2500', '4.2500', '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 (128665, '2022-10-26', 1804, 121617, 7189, NULL, '26.0000', '4.2500', '4.2500', '11.5000', '11.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 (128666, '2022-10-26', 7708, 121618, 7189, NULL, '1.0000', '7.8000', '7.8000', '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 (128667, '2022-10-26', 7756, 121619, 7189, NULL, '1.0000', '2.5000', '2.5000', '53.5000', '53.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128668, '2022-10-26', 7316, 121620, 7189, NULL, '10.0000', '9.5500', '9.5500', '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 (128669, '2022-10-26', 7831, 121621, 7189, NULL, '1.0000', '22.5000', '22.5000', '34.5000', '34.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128670, '2022-10-26', 2251, 121622, 7189, 2788, '-44.0000', '10.9700', '10.9700', '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 (128671, '2022-10-26', 2251, 121622, 7189, NULL, '45.0000', '10.9700', '10.9700', '22.0000', '22.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 (128672, '2022-10-26', 7725, 121623, 7189, NULL, '1.0000', '7.0000', '7.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 (128673, '2022-10-26', 9275, 121624, 7189, NULL, '1.0000', '6.3000', '6.3000', '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 (128674, '2022-10-26', 10070, 121625, 7189, 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 (128675, '2022-10-26', 10029, 121626, 7189, NULL, '1.0000', '1.8500', '1.8500', '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 (128676, '2022-10-26', 8135, 121627, 7189, NULL, '1.0000', '5.4500', '5.4500', '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 (128677, '2022-10-26', 7390, 121628, 7189, NULL, '1.0000', '6.9800', '6.9800', '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 (128678, '2022-10-26', 7411, 121629, 7189, 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 (128679, '2022-10-26', 7524, 121630, 7189, NULL, '1.0000', '11.9500', '11.9500', '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 (128680, '2022-10-26', 8924, 121631, 7189, NULL, '3.0000', '4.5000', '4.5000', '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 (128681, '2022-10-26', 8638, 121632, 7189, NULL, '1.0000', '0.5100', '0.5100', '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 (128682, '2022-10-26', 9761, 121633, 7189, 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 (128683, '2022-10-26', 2289, 121634, 7189, 2949, '-312.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 (128684, '2022-10-26', 2289, 121634, 7189, NULL, '315.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-315.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128685, '2022-10-26', 1841, 121635, 7189, NULL, '1.0000', '142.5780', '142.5780', '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 (128686, '2022-10-26', 9800, 121636, 7189, NULL, '1.0000', '14.0000', '14.0000', '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 (128687, '2022-10-26', 7713, 121637, 7189, NULL, '2.0000', '0.3800', '0.3800', '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 (128688, '2022-10-26', 9729, 121638, 7189, NULL, '2.0000', '0.6200', '0.6200', '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 (128689, '2022-10-26', 7947, 121639, 7189, NULL, '1.0000', '14.4400', '14.4400', '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 (128690, '2022-10-26', 9747, 121640, 7189, NULL, '2.0000', '0.6500', '0.6500', '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 (128691, '2022-10-26', 1904, 121641, 7189, 5442, '-117.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 (128692, '2022-10-26', 1904, 121641, 7189, NULL, '118.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-118.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128693, '2022-10-26', 9984, 121642, 7189, 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 (128694, '2022-10-26', 9821, 121643, 7189, NULL, '1.0000', '1.4500', '1.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 (128695, '2022-10-26', 7715, 121644, 7189, NULL, '1.0000', '1.8900', '1.8900', '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 (128696, '2022-10-26', 8101, 121645, 7189, NULL, '1.0000', '1.9700', '1.9700', '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 (128697, '2022-10-26', 7630, 121646, 7189, NULL, '4.0000', '10.0000', '10.0000', '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 (128698, '2022-10-26', 7514, 121647, 7189, NULL, '1.0000', '2.2500', '2.2500', '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 (128699, '2022-10-26', 9445, 121648, 7189, NULL, '1.0000', '4.5000', '4.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 (128700, '2022-10-26', 9092, 121649, 7189, NULL, '2.0000', '5.2900', '5.2900', '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 (128701, '2022-10-26', 8979, 121650, 7189, 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 (128702, '2022-10-26', 9275, 121651, 7189, NULL, '1.0000', '6.3000', '6.3000', '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 (128703, '2022-10-26', 7524, 121652, 7189, NULL, '1.0000', '11.9500', '11.9500', '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 (128704, '2022-10-26', 9834, 121653, 7189, NULL, '1.0000', '1.4500', '1.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 (128705, '2022-10-26', 7736, 121654, 7189, NULL, '1.0000', '16.2000', '16.2000', '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 (128706, '2022-10-26', 9736, 121655, 7189, NULL, '1.0000', '3.9100', '3.9100', '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 (128707, '2022-10-26', 7730, 121656, 7189, NULL, '3.0000', '0.1000', '0.1000', '0.2000', '0.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 (128708, '2022-10-26', 2100, 121657, 7189, 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 (128709, '2022-10-26', 2284, 121658, 7189, 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 (128710, '2022-10-26', 7674, 121659, 7189, NULL, '1.0000', '1.3000', '1.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 (128711, '2022-10-26', 8721, 121660, 7189, NULL, '1.0000', '23.0000', '23.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 (128712, '2022-10-26', 7641, 121661, 7189, NULL, '1.0000', '1.9000', '1.9000', '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 (128713, '2022-10-26', 7674, 121662, 7189, NULL, '2.0000', '1.3000', '1.3000', '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 (128714, '2022-10-26', 7974, 121663, 7189, NULL, '1.0000', '28.0000', '28.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 (128715, '2022-10-26', 7736, 121664, 7189, NULL, '1.0000', '16.2000', '16.2000', '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 (128716, '2022-10-26', 1841, 121665, 7189, NULL, '2.0000', '142.5780', '142.5780', '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 (128717, '2022-10-26', 8208, 121666, 7189, NULL, '2.0000', '33.0000', '33.0000', '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 (128718, '2022-10-26', 2315, 121667, 7189, 2735, '-745.0000', '0.3300', '0.3300', '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 (128719, '2022-10-26', 2315, 121667, 7189, NULL, '746.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-746.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128720, '2022-10-26', 7952, 121668, 7189, 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 (128721, '2022-10-26', 7641, 121669, 7189, NULL, '1.0000', '1.9000', '1.9000', '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 (128722, '2022-10-26', 3006, 121670, 7189, NULL, '1.0000', '8.0000', '8.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 (128723, '2022-10-26', 8925, 121671, 7190, NULL, '1.0000', '2.4000', '2.4000', '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 (128724, '2022-10-26', 8664, 121672, 7190, NULL, '1.0000', '0.3500', '0.3500', '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 (128725, '2022-10-26', 9836, 121673, 7190, NULL, '1.0000', '25.0000', '25.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 (128726, '2022-10-26', 7556, 121674, 7190, 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 (128727, '2022-10-26', 8200, 121675, 7190, NULL, '1.0000', '6.2600', '6.2600', '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 (128728, '2022-10-26', 7457, 121676, 7190, NULL, '1.0000', '6.0000', '6.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 (128729, '2022-10-26', 2506, 121677, 7190, 16244, '-53.0000', '3.4900', '3.4900', '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 (128730, '2022-10-26', 2506, 121677, 7190, NULL, '54.0000', '3.4900', '3.4900', '8.0000', '8.0000', '-54.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128731, '2022-10-26', 7531, 121678, 7190, NULL, '1.0000', '3.1900', '3.1900', '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 (128732, '2022-10-26', 7318, 121679, 7190, NULL, '1.0000', '13.4400', '13.4400', '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 (128733, '2022-10-26', 9092, 121680, 7190, NULL, '1.0000', '5.2900', '5.2900', '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 (128734, '2022-10-26', 7598, 121681, 7190, NULL, '2.0000', '1.2800', '1.2800', '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 (128735, '2022-10-26', 7798, 121682, 7190, NULL, '2.0000', '14.9000', '14.9000', '30.5000', '30.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 (128736, '2022-10-26', 9576, 121683, 7190, NULL, '1.0000', '16.0000', '16.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128737, '2022-10-26', 9755, 121684, 7190, NULL, '1.0000', '17.0000', '17.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 (128738, '2022-10-26', 7518, 121685, 7190, NULL, '1.0000', '7.8200', '7.8200', '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 (128739, '2022-10-26', 2486, 121686, 7190, 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 (128740, '2022-10-26', 7889, 121687, 7190, 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 (128741, '2022-10-26', 7333, 121688, 7191, NULL, '2.0000', '13.5000', '13.5000', '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 (128742, '2022-10-26', 8200, 121689, 7191, NULL, '2.0000', '6.2600', '6.2600', '14.5000', '14.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 (128743, '2022-10-26', 2858, 121690, 7192, 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 (128744, '2022-10-26', 9671, 121691, 7192, 65287, '1.0000', '28.9900', '28.9900', '42.5000', '42.5000', '2.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128745, '2022-10-26', 1470, 121692, 7192, 65279, '1.0000', '14.2125', '14.2125', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128746, '2022-10-26', 2491, 121693, 7192, 64538, '1.0000', '14.7171', '14.7171', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128747, '2022-10-26', 1675, 121694, 7192, 56735, '1.0000', '32.6108', '32.6108', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 491);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128748, '2022-10-26', 8767, 121695, 7192, 58005, '1.0000', '8.6300', '8.6300', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 504);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128749, '2022-10-26', 1450, 121696, 7192, NULL, '10.0000', '0.8255', '0.8255', '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 (128750, '2022-10-26', 1935, 121697, 7192, 65304, '2.0000', '1.1572', '1.1572', '2.0000', '2.0000', '50.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128751, '2022-10-26', 2352, 121698, 7192, 64299, '3.0000', '58.6246', '58.6246', '4.5000', '4.5000', '21.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128752, '2022-10-26', 2317, 121699, 7192, 59039, '1.0000', '15.0685', '15.0685', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 505);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128753, '2022-10-26', 9831, 121700, 7192, 65493, '8.0000', '2.3000', '2.3000', '3.5000', '3.5000', '15.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128754, '2022-10-26', 7917, 121701, 7192, NULL, '10.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (128755, '2022-10-26', 2167, 121702, 7192, 64543, '1.0000', '2.7995', '2.7995', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128756, '2022-10-26', 2618, 121703, 7192, 48779, '1.0000', '2.8873', '2.8873', '6.0000', '6.0000', '31.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128757, '2022-10-26', 7411, 121704, 7192, NULL, '1.0000', '1.5882', '1.5882', '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 (128758, '2022-10-26', 2821, 121705, 7192, 64304, '1.0000', '3.5663', '3.5663', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128759, '2022-10-26', 1763, 121706, 7192, 60050, '1.0000', '5.0170', '5.0170', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128760, '2022-10-26', 7924, 121707, 7192, NULL, '1.0000', '4.7100', '4.7100', '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 (128761, '2022-10-26', 9736, 121708, 7192, 64475, '1.0000', '5.3100', '5.3100', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128762, '2022-10-26', 3044, 121709, 7192, 64957, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '42.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128763, '2022-10-26', 2655, 121710, 7192, 65491, '1.0000', '7.6552', '7.6552', '11.0000', '11.0000', '33.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128764, '2022-10-26', 2656, 121711, 7192, 65492, '1.0000', '1.6315', '1.6315', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128765, '2022-10-26', 2068, 121712, 7192, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128766, '2022-10-26', 9750, 121713, 7192, 62791, '1.0000', '3.5706', '3.5706', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128767, '2022-10-26', 1525, 121714, 7192, NULL, '10.0000', '90.0000', '90.0000', '6.5000', '6.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 (128768, '2022-10-26', 7411, 121715, 7192, NULL, '1.0000', '1.5882', '1.5882', '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 (128769, '2022-10-26', 2252, 121716, 7192, 64306, '1.0000', '13.7854', '13.7854', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128770, '2022-10-26', 2916, 121717, 7192, 63365, '1.0000', '15.2920', '15.2920', '23.0000', '23.0000', '5.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128771, '2022-10-26', 2858, 121718, 7192, 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 (128772, '2022-10-26', 1981, 121719, 7192, 65071, '1.0000', '8.2382', '8.2382', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128773, '2022-10-26', 2293, 121720, 7192, 50920, '3.0000', '0.8705', '0.8705', '1.5000', '1.5000', '14.0000', 1, 0, NULL, 421);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128774, '2022-10-26', 7917, 121721, 7192, NULL, '15.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (128775, '2022-10-26', 2167, 121722, 7192, 64543, '1.0000', '2.7995', '2.7995', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128776, '2022-10-26', 9750, 121723, 7192, 62791, '1.0000', '3.5706', '3.5706', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128777, '2022-10-26', 1812, 121724, 7192, 64964, '1.0000', '9.1804', '9.1804', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128778, '2022-10-26', 2858, 121725, 7192, 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 (128779, '2022-10-26', 1772, 121726, 7192, 63369, '1.0000', '6.0812', '6.0812', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 548);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128780, '2022-10-26', 1863, 121727, 7192, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '100.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128781, '2022-10-26', 1306, 121728, 7192, 62244, '3.0000', '2.0485', '2.0485', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128782, '2022-10-26', 7333, 121729, 7192, NULL, '1.0000', '3.8000', '3.8000', '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 (128783, '2022-10-26', 1585, 121730, 7192, 65307, '1.0000', '10.3659', '10.3659', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128784, '2022-10-26', 7613, 121731, 7192, 61694, '3.0000', '12.0000', '12.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 529);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128785, '2022-10-26', 1308, 121732, 7192, 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 (128786, '2022-10-27', 2169, 121733, 7193, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128787, '2022-10-27', 1532, 121734, 7193, 65408, '3.0000', '1.6508', '1.6508', '2.5000', '2.5000', '47.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128788, '2022-10-27', 1904, 121735, 7193, 62413, '1.0000', '1.1631', '1.1631', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128789, '2022-10-27', 8065, 121736, 7193, NULL, '1.0000', '32.0000', '32.0000', '77.0000', '77.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128790, '2022-10-27', 1843, 121737, 7193, 62826, '14.0000', '6.8747', '6.8747', '9.5000', '9.5000', '14.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128791, '2022-10-27', 2352, 121738, 7193, NULL, '20.0000', '556.2414', '556.2414', '4.5000', '4.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 (128792, '2022-10-27', 8763, 121739, 7193, NULL, '1.0000', '11.7000', '11.7000', '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 (128793, '2022-10-27', 9089, 121740, 7193, 65645, '1.0000', '470.6662', '470.6662', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128794, '2022-10-27', 9831, 121741, 7193, 65641, '4.0000', '-0.8883', '-0.8883', '3.5000', '3.5000', '20.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128795, '2022-10-27', 1756, 121742, 7193, NULL, '2.0000', '4.9900', '4.9900', '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 (128796, '2022-10-27', 2237, 121743, 7193, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '21.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128797, '2022-10-27', 1410, 121744, 7193, 65409, '1.0000', '-4764.2962', '-4764.2962', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128798, '2022-10-27', 8763, 121745, 7193, NULL, '1.0000', '11.7000', '11.7000', '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 (128799, '2022-10-27', 7749, 121746, 7193, NULL, '1.0000', '20.0200', '20.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 (128800, '2022-10-27', 1310, 121747, 7193, 64020, '4.0000', '0.4288', '0.4288', '0.6000', '0.6000', '34.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128801, '2022-10-27', 1519, 121748, 7193, 65416, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128802, '2022-10-27', 1763, 121749, 7193, 65412, '1.0000', '13.3476', '13.3476', '8.5000', '8.5000', '0.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128803, '2022-10-27', 9750, 121750, 7193, NULL, '1.0000', '2.3934', '2.3934', '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 (128804, '2022-10-27', 1602, 121751, 7193, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '17.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128805, '2022-10-27', 7743, 121752, 7193, NULL, '1.0000', '7.3900', '7.3900', '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 (128806, '2022-10-27', 8878, 121753, 7193, 64000, '2.0000', '-14.0332', '-14.0332', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128807, '2022-10-27', 1925, 121754, 7193, NULL, '3.0000', '1.9127', '1.9127', '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 (128808, '2022-10-27', 7741, 121755, 7193, NULL, '1.0000', '-174.4114', '-174.4114', '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 (128809, '2022-10-27', 8208, 121756, 7193, NULL, '2.0000', '63.9119', '63.9119', '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 (128810, '2022-10-27', 2295, 121757, 7193, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128811, '2022-10-27', 2327, 121758, 7193, 65448, '1.0000', '4.2182', '4.2182', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128812, '2022-10-27', 8165, 121759, 7193, 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 (128813, '2022-10-27', 2169, 121760, 7193, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128814, '2022-10-27', 9763, 121761, 7193, 64600, '2.0000', '2.8399', '2.8399', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128815, '2022-10-27', 2315, 121762, 7193, NULL, '2.0000', '0.7700', '0.7700', '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 (128816, '2022-10-27', 1863, 121763, 7193, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '63.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128817, '2022-10-27', 9565, 121764, 7193, NULL, '1.0000', '7.1769', '7.1769', '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 (128818, '2022-10-27', 2754, 121765, 7193, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (128819, '2022-10-27', 1425, 121766, 7193, NULL, '1.0000', '10.4939', '10.4939', '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 (128820, '2022-10-27', 9819, 121767, 7193, 62425, '1.0000', '3.6300', '3.6300', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128821, '2022-10-27', 1521, 121768, 7193, 63439, '1.0000', '19107.3067', '19107.3067', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128822, '2022-10-27', 10062, 121769, 7193, 65397, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128823, '2022-10-27', 2068, 121770, 7193, NULL, '2.0000', '13.2664', '13.2664', '20.5000', '20.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 (128824, '2022-10-27', 1529, 121771, 7193, 65417, '1.0000', '5.4216', '5.4216', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128825, '2022-10-27', 9734, 121772, 7193, 65428, '3.0000', '0.4603', '0.4603', '0.7000', '0.7000', '186.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128826, '2022-10-27', 2020, 121773, 7193, NULL, '1.0000', '105361.0491', '105361.0491', '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 (128827, '2022-10-27', 2242, 121774, 7193, NULL, '3.0000', '1.2664', '1.2664', '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 (128828, '2022-10-27', 1306, 121775, 7193, 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 (128829, '2022-10-27', 1935, 121776, 7193, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128830, '2022-10-27', 1519, 121777, 7193, 65416, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128831, '2022-10-27', 1382, 121778, 7193, 65415, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128832, '2022-10-27', 7926, 121779, 7193, NULL, '1.0000', '6.8265', '6.8265', '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 (128833, '2022-10-27', 1666, 121780, 7193, 64787, '1.0000', '3.2073', '3.2073', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128834, '2022-10-27', 1812, 121781, 7193, 64727, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128835, '2022-10-27', 1387, 121782, 7193, 64591, '1.0000', '15.3984', '15.3984', '22.0000', '22.0000', '2.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128836, '2022-10-27', 2295, 121783, 7193, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128837, '2022-10-27', 2384, 121784, 7193, NULL, '2.0000', '-312.4992', '-312.4992', '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 (128838, '2022-10-27', 2242, 121785, 7193, NULL, '3.0000', '1.2664', '1.2664', '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 (128839, '2022-10-27', 1699, 121786, 7193, NULL, '1.0000', '-5.0000', '-5.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 (128840, '2022-10-27', 2169, 121787, 7193, 62844, '2.0000', '1.8316', '1.8316', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128841, '2022-10-27', 2224, 121788, 7193, 59683, '1.0000', '19.0247', '19.0247', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128842, '2022-10-27', 2642, 121789, 7193, 65659, '1.0000', '9.8787', '9.8787', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128843, '2022-10-27', 2068, 121790, 7193, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128844, '2022-10-27', 1529, 121791, 7193, 65417, '1.0000', '5.4216', '5.4216', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128845, '2022-10-27', 1785, 121792, 7193, 64870, '1.0000', '21.3165', '21.3165', '35.0000', '35.0000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128846, '2022-10-27', 2284, 121793, 7193, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128847, '2022-10-27', 9827, 121794, 7193, NULL, '1.0000', '16.6600', '16.6600', '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 (128848, '2022-10-27', 2224, 121795, 7193, 59683, '1.0000', '19.0247', '19.0247', '24.0000', '24.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128849, '2022-10-27', 8771, 121796, 7193, 65036, '2.0000', '7.0796', '7.0796', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128850, '2022-10-27', 9751, 121797, 7193, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128851, '2022-10-27', 1501, 121798, 7193, NULL, '1.0000', '-2.2016', '-2.2016', '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 (128852, '2022-10-27', 2656, 121799, 7193, 65655, '1.0000', '2.0291', '2.0291', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128853, '2022-10-27', 1310, 121800, 7193, 64020, '25.0000', '0.4288', '0.4288', '0.6000', '0.6000', '13.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128854, '2022-10-27', 1942, 121801, 7193, 55714, '1.0000', '20.0151', '20.0151', '30.5000', '30.5000', '1.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128855, '2022-10-27', 8184, 121802, 7193, NULL, '10.0000', '2.9883', '2.9883', '4.0000', '4.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 (128856, '2022-10-27', 8482, 121803, 7193, 64077, '1.0000', '18.0579', '18.0579', '29.5000', '29.5000', '6.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128857, '2022-10-27', 2545, 121804, 7193, 61556, '1.0000', '9.0358', '9.0358', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128858, '2022-10-27', 2100, 121805, 7193, NULL, '1.0000', '-4.4545', '-4.4545', '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 (128859, '2022-10-27', 2948, 121806, 7193, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '25.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128860, '2022-10-27', 8017, 121807, 7193, 64594, '3.0000', '0.6000', '0.6000', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128861, '2022-10-27', 2656, 121808, 7193, 65655, '1.0000', '2.0291', '2.0291', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128862, '2022-10-27', 7743, 121809, 7193, NULL, '2.0000', '7.3900', '7.3900', '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 (128863, '2022-10-27', 3058, 121810, 7193, NULL, '1.0000', '8.2853', '8.2853', '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 (128864, '2022-10-27', 1410, 121811, 7193, 65409, '1.0000', '-4764.2962', '-4764.2962', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128865, '2022-10-27', 2384, 121812, 7193, NULL, '1.0000', '-312.4992', '-312.4992', '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 (128866, '2022-10-27', 9840, 121813, 7193, 64598, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128867, '2022-10-27', 2302, 121814, 7193, 64584, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128868, '2022-10-27', 7749, 121815, 7193, NULL, '1.0000', '20.0200', '20.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 (128869, '2022-10-27', 1812, 121816, 7193, 64727, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128870, '2022-10-27', 1425, 121817, 7193, NULL, '1.0000', '10.4939', '10.4939', '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 (128871, '2022-10-27', 1781, 121818, 7193, 64824, '1.0000', '6.4826', '6.4826', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128872, '2022-10-27', 1667, 121819, 7193, 65133, '2.0000', '9.7806', '9.7806', '14.5000', '14.5000', '4.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128873, '2022-10-27', 8743, 121820, 7193, 65037, '1.0000', '26.3414', '26.3414', '25.0000', '25.0000', '3.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128874, '2022-10-27', 1488, 121821, 7193, 65123, '1.0000', '4.9927', '4.9927', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128875, '2022-10-27', 7743, 121822, 7193, NULL, '3.0000', '7.3900', '7.3900', '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 (128876, '2022-10-27', 2025, 121823, 7193, 65676, '1.0000', '4.9318', '4.9318', '14.0000', '14.0000', '11.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128877, '2022-10-27', 7749, 121824, 7194, 57620, '1.0000', '19.8511', '19.8511', '26.5000', '26.5000', '3.0000', 1, 0, NULL, 500);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128878, '2022-10-27', 1837, 121825, 7194, NULL, '2.0000', '0.5600', '0.5600', '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 (128879, '2022-10-27', 8596, 121826, 7194, NULL, '1.0000', '71.0634', '71.0634', '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 (128880, '2022-10-27', 7819, 121827, 7194, 65241, '1.0000', '12.9059', '12.9059', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128881, '2022-10-27', 8288, 121828, 7194, NULL, '3.0000', '1.1434', '1.1434', '1.8000', '1.8000', '-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 (128882, '2022-10-27', 9204, 121829, 7194, 60135, '1.0000', '6.0556', '6.0556', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 513);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128883, '2022-10-27', 8482, 121830, 7194, 65805, '1.0000', '20.5483', '20.5483', '29.5000', '29.5000', '11.0000', 1, 0, NULL, 576);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128884, '2022-10-27', 7444, 121831, 7194, 65770, '1.0000', '3.9101', '3.9101', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 576);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128885, '2022-10-27', 9412, 121832, 7194, NULL, '1.0000', '25.0000', '25.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 (128886, '2022-10-27', 8017, 121833, 7194, 59111, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '50.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128887, '2022-10-27', 2920, 121834, 7194, 64394, '2.0000', '14.8008', '14.8008', '21.5000', '21.5000', '2.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128888, '2022-10-27', 8965, 121835, 7194, NULL, '1.0000', '-263.2470', '-263.2470', '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 (128889, '2022-10-27', 7675, 121836, 7194, 64884, '1.0000', '2.2264', '2.2264', '4.0000', '4.0000', '39.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128890, '2022-10-27', 7376, 121837, 7194, NULL, '1.0000', '-177.0400', '-177.0400', '18.7500', '18.7500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128891, '2022-10-27', 2965, 121838, 7194, 62517, '1.0000', '3.0721', '3.0721', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128892, '2022-10-27', 8744, 121839, 7194, 62529, '1.0000', '4.1148', '4.1148', '6.5000', '6.5000', '7.0000', 1, 0, NULL, 541);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128893, '2022-10-27', 7952, 121840, 7194, 64886, '1.0000', '4.5320', '4.5320', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128894, '2022-10-27', 8417, 121841, 7194, 61952, '2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 533);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128895, '2022-10-27', 7822, 121842, 7194, 65232, '1.0000', '13.6151', '13.6151', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128896, '2022-10-27', 2994, 121843, 7194, 61731, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128897, '2022-10-27', 8376, 121844, 7194, NULL, '1.0000', '9.0000', '9.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 (128898, '2022-10-27', 7674, 121845, 7194, 65234, '1.0000', '43.5348', '43.5348', '3.0000', '3.0000', '57.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128899, '2022-10-27', 7781, 121846, 7194, NULL, '3.0000', '15.5167', '15.5167', '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 (128900, '2022-10-27', 8878, 121847, 7194, 65793, '1.0000', '1.0609', '1.0609', '3.0000', '3.0000', '49.0000', 1, 0, NULL, 576);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128901, '2022-10-27', 1916, 121848, 7195, 65278, '1.0000', '10.1486', '10.1486', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128902, '2022-10-27', 2109, 121849, 7195, 65301, '2.0000', '0.2827', '0.2827', '1.5000', '1.5000', '57.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128903, '2022-10-27', 9741, 121850, 7195, 64318, '1.0000', '7.7543', '7.7543', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128904, '2022-10-27', 1571, 121851, 7195, 48748, '1.0000', '56.1423', '56.1423', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128905, '2022-10-27', 1855, 121852, 7195, 53886, '1.0000', '1.4608', '1.4608', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128906, '2022-10-27', 8740, 121853, 7195, 65490, '1.0000', '2.1176', '2.1176', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128907, '2022-10-27', 8482, 121854, 7195, 65331, '1.0000', '18.3750', '18.3750', '29.5000', '29.5000', '7.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128908, '2022-10-27', 1863, 121855, 7195, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '99.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128909, '2022-10-27', 2297, 121856, 7195, 64525, '1.0000', '9.1254', '9.1254', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128910, '2022-10-27', 2738, 121857, 7195, 64322, '1.0000', '9.1758', '9.1758', '12.5000', '12.5000', '3.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128911, '2022-10-27', 3064, 121858, 7195, NULL, '6.0000', '2.0000', '2.0000', '3.0000', '3.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 (128912, '2022-10-27', 1843, 121859, 7195, 49134, '14.0000', '4.6200', '4.6200', '9.5000', '9.5000', '23.0000', 1, 0, NULL, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128913, '2022-10-27', 9895, 121860, 7195, 54369, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 442);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128914, '2022-10-27', 2480, 121861, 7195, 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 (128915, '2022-10-27', 1311, 121862, 7195, NULL, '3.0000', '0.3700', '0.3700', '0.6000', '0.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 (128916, '2022-10-27', 8979, 121863, 7195, 65073, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128917, '2022-10-27', 8208, 121864, 7195, NULL, '4.0000', '33.0000', '33.0000', '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 (128918, '2022-10-27', 1840, 121865, 7195, 62749, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '68.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128919, '2022-10-27', 1841, 121866, 7195, 62748, '2.0000', '0.3143', '0.3143', '0.5000', '0.5000', '67.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128920, '2022-10-27', 2289, 121867, 7195, 62763, '2.0000', '0.2648', '0.2648', '0.5000', '0.5000', '25.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128921, '2022-10-27', 2089, 121868, 7195, 64491, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128922, '2022-10-27', 3058, 121869, 7195, 64560, '1.0000', '5.3362', '5.3362', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128923, '2022-10-27', 10005, 121870, 7195, 62782, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128924, '2022-10-27', 7353, 121871, 7195, NULL, '2.0000', '0.1900', '0.1900', '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 (128925, '2022-10-27', 1435, 121872, 7195, 64771, '1.0000', '22.7501', '22.7501', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128926, '2022-10-27', 1812, 121873, 7195, 64964, '1.0000', '9.1804', '9.1804', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128927, '2022-10-27', 2295, 121874, 7196, 64806, '3.0000', '1.7148', '1.7148', '2.5000', '2.5000', '17.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128928, '2022-10-27', 10022, 121875, 7196, 64794, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128929, '2022-10-27', 7665, 121876, 7196, NULL, '1.0000', '7.9000', '7.9000', '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 (128930, '2022-10-27', 2302, 121877, 7196, 64584, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128931, '2022-10-27', 2037, 121878, 7196, NULL, '1.0000', '-31.4720', '-31.4720', '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 (128932, '2022-10-27', 2475, 121879, 7196, 63777, '1.0000', '9.5648', '9.5648', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128933, '2022-10-27', 1688, 121880, 7196, 62073, '1.0000', '23.7000', '23.7000', '39.5000', '39.5000', '1.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128934, '2022-10-27', 9840, 121881, 7196, 64598, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128935, '2022-10-27', 2167, 121882, 7196, NULL, '1.0000', '-35.2864', '-35.2864', '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 (128936, '2022-10-27', 2315, 121883, 7196, NULL, '1.0000', '0.7700', '0.7700', '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 (128937, '2022-10-27', 1382, 121884, 7196, 65415, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128938, '2022-10-27', 1845, 121885, 7196, NULL, '1.0000', '-17.9160', '-17.9160', '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 (128939, '2022-10-27', 2089, 121886, 7196, 64615, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128940, '2022-10-27', 2379, 121887, 7196, NULL, '1.0000', '-154.5325', '-154.5325', '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 (128941, '2022-10-27', 1787, 121888, 7196, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128942, '2022-10-27', 1621, 121889, 7196, 64850, '1.0000', '13.6096', '13.6096', '9.0000', '9.0000', '7.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128943, '2022-10-27', 1409, 121890, 7196, 64717, '1.0000', '13.2000', '13.2000', '20.5000', '20.5000', '0.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128944, '2022-10-27', 2754, 121891, 7196, NULL, '2.0000', '0.0800', '0.0800', '0.2000', '0.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 (128945, '2022-10-27', 9831, 121892, 7196, 65641, '1.0000', '-0.8883', '-0.8883', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128946, '2022-10-27', 9942, 121893, 7196, 64725, '1.0000', '12.7325', '12.7325', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128947, '2022-10-27', 2506, 121894, 7196, NULL, '1.0000', '-29.1041', '-29.1041', '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 (128948, '2022-10-27', 1596, 121895, 7196, NULL, '1.0000', '2.0328', '2.0328', '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 (128949, '2022-10-27', 7318, 121896, 7196, 65450, '1.0000', '17.5693', '17.5693', '22.5000', '22.5000', '3.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128950, '2022-10-27', 2656, 121897, 7196, 65655, '1.0000', '2.0291', '2.0291', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128951, '2022-10-27', 2038, 121898, 7196, 58044, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '3.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128952, '2022-10-27', 9182, 121899, 7196, 63802, '1.0000', '8.5000', '8.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128953, '2022-10-27', 2037, 121900, 7196, NULL, '1.0000', '-31.4720', '-31.4720', '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 (128954, '2022-10-27', 8763, 121901, 7196, NULL, '1.0000', '11.7000', '11.7000', '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 (128955, '2022-10-27', 1950, 121902, 7196, 65388, '1.0000', '4.1013', '4.1013', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128956, '2022-10-27', 1910, 121903, 7196, NULL, '2.0000', '0.5756', '0.5756', '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 (128957, '2022-10-27', 1406, 121904, 7196, 64446, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 560);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128958, '2022-10-27', 7944, 121905, 7196, 64037, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '13.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128959, '2022-10-27', 1935, 121906, 7196, 64832, '1.0000', '0.9044', '0.9044', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128960, '2022-10-27', 1905, 121907, 7196, NULL, '3.0000', '0.5198', '0.5198', '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 (128961, '2022-10-27', 2441, 121908, 7196, 59698, '1.0000', '12.9756', '12.9756', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128962, '2022-10-27', 9590, 121909, 7196, NULL, '1.0000', '5.8001', '5.8001', '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 (128963, '2022-10-27', 2948, 121910, 7196, 62432, '1.0000', '1.1550', '1.1550', '3.5000', '3.5000', '24.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128964, '2022-10-27', 1529, 121911, 7196, 65417, '1.0000', '5.4216', '5.4216', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128965, '2022-10-27', 2167, 121912, 7196, NULL, '1.0000', '-35.2864', '-35.2864', '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 (128966, '2022-10-27', 1699, 121913, 7196, NULL, '1.0000', '-5.0000', '-5.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 (128967, '2022-10-27', 7584, 121914, 7196, NULL, '1.0000', '3.1378', '3.1378', '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 (128968, '2022-10-27', 7459, 121915, 7197, NULL, '1.0000', '2.3500', '2.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 (128969, '2022-10-27', 7411, 121916, 7197, 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 (128970, '2022-10-27', 7899, 121917, 7197, NULL, '1.0000', '3.3000', '3.3000', '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 (128971, '2022-10-27', 8714, 121918, 7197, NULL, '1.0000', '5.2100', '5.2100', '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 (128972, '2022-10-27', 7524, 121919, 7197, NULL, '2.0000', '11.9500', '11.9500', '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 (128973, '2022-10-27', 2069, 121920, 7197, 5571, '-33.0000', '2.0400', '2.0400', '14.0000', '14.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128974, '2022-10-27', 2069, 121920, 7197, NULL, '34.0000', '2.0400', '2.0400', '14.0000', '14.0000', '-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 (128975, '2022-10-27', 7712, 121921, 7197, NULL, '1.0000', '26.0000', '26.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128976, '2022-10-27', 2545, 121922, 7197, 6306, '-13.0000', '5.8819', '5.8819', '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 (128977, '2022-10-27', 2545, 121922, 7197, NULL, '14.0000', '5.8819', '5.8819', '12.5000', '12.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 (128978, '2022-10-27', 7672, 121923, 7197, NULL, '2.0000', '1.0200', '1.0200', '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 (128979, '2022-10-27', 8596, 121924, 7197, 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 (128980, '2022-10-27', 7672, 121925, 7197, NULL, '1.0000', '1.0200', '1.0200', '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 (128981, '2022-10-27', 7442, 121926, 7197, 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 (128982, '2022-10-27', 7514, 121927, 7197, NULL, '1.0000', '2.2500', '2.2500', '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 (128983, '2022-10-27', 7917, 121928, 7197, NULL, '2.0000', '5.0000', '5.0000', '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 (128984, '2022-10-27', 7713, 121929, 7197, NULL, '4.0000', '0.3800', '0.3800', '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 (128985, '2022-10-27', 7865, 121930, 7197, NULL, '1.0000', '1.6300', '1.6300', '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 (128986, '2022-10-27', 7967, 121931, 7197, NULL, '1.0000', '7.0000', '7.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 (128987, '2022-10-27', 1307, 121932, 7197, 1014, '1.0000', '110.4141', '110.4141', '4.0000', '4.0000', '14.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 (128988, '2022-10-27', 7609, 121933, 7197, NULL, '1.0000', '4.3300', '4.3300', '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 (128989, '2022-10-27', 7514, 121934, 7197, NULL, '1.0000', '2.2500', '2.2500', '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 (128990, '2022-10-27', 7324, 121935, 7197, NULL, '3.0000', '4.0000', '4.0000', '8.5000', '8.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 (128991, '2022-10-27', 2289, 121936, 7197, 2949, '-315.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 (128992, '2022-10-27', 2289, 121936, 7197, NULL, '316.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-316.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128993, '2022-10-27', 9984, 121937, 7197, 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 (128994, '2022-10-27', 8203, 121938, 7197, NULL, '2.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128995, '2022-10-27', 7411, 121939, 7197, 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 (128996, '2022-10-27', 7864, 121940, 7197, NULL, '2.0000', '19.5100', '19.5100', '40.0000', '40.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 (128997, '2022-10-27', 8810, 121941, 7197, NULL, '1.0000', '1.6000', '1.6000', '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 (128998, '2022-10-27', 2506, 121942, 7197, 16244, '-54.0000', '3.4900', '3.4900', '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 (128999, '2022-10-27', 2506, 121942, 7197, NULL, '55.0000', '3.4900', '3.4900', '8.0000', '8.0000', '-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 (129000, '2022-10-27', 9821, 121943, 7197, NULL, '1.0000', '1.4500', '1.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 (129001, '2022-10-27', 7514, 121944, 7197, NULL, '1.0000', '2.2500', '2.2500', '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 (129002, '2022-10-27', 7641, 121945, 7197, NULL, '1.0000', '1.9000', '1.9000', '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 (129003, '2022-10-27', 8913, 121946, 7197, NULL, '1.0000', '15.1700', '15.1700', '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 (129004, '2022-10-27', 8622, 121947, 7197, 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 (129005, '2022-10-27', 8407, 121948, 7197, NULL, '1.0000', '1.0700', '1.0700', '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 (129006, '2022-10-27', 1841, 121949, 7197, NULL, '2.0000', '142.5780', '142.5780', '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 (129007, '2022-10-27', 7713, 121950, 7197, NULL, '1.0000', '0.3800', '0.3800', '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 (129008, '2022-10-27', 2854, 121951, 7197, NULL, '1.0000', '8.9500', '8.9500', '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 (129009, '2022-10-27', 8274, 121952, 7198, NULL, '1.0000', '8.4300', '8.4300', '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 (129010, '2022-10-27', 7441, 121953, 7198, NULL, '1.0000', '0.2300', '0.2300', '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 (129011, '2022-10-27', 8566, 121954, 7198, NULL, '1.0000', '11.0000', '11.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 (129012, '2022-10-27', 1371, 121955, 7199, 17072, '1.0000', '1689.4066', '1689.4066', '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 (129013, '2022-10-27', 9846, 121956, 7199, 64327, '1.0000', '7.3000', '7.3000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129014, '2022-10-27', 7741, 121957, 7199, 56896, '1.0000', '3.4144', '3.4144', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129015, '2022-10-27', 9695, 121958, 7199, 65482, '1.0000', '5.8532', '5.8532', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129016, '2022-10-27', 2655, 121959, 7199, 65491, '1.0000', '7.6552', '7.6552', '11.0000', '11.0000', '32.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129017, '2022-10-27', 1807, 121960, 7199, 65322, '2.0000', '2.1673', '2.1673', '2.5000', '2.5000', '25.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129018, '2022-10-27', 2858, 121961, 7199, 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 (129019, '2022-10-27', 1812, 121962, 7199, 65906, '1.0000', '9.2604', '9.2604', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 578);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129020, '2022-10-27', 1855, 121963, 7199, 53886, '1.0000', '1.4608', '1.4608', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129021, '2022-10-27', 1855, 121964, 7199, 53886, '1.0000', '1.4608', '1.4608', '3.0000', '3.0000', '2.0000', 1, 0, NULL, 452);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129022, '2022-10-27', 1818, 121965, 7199, 65282, '1.0000', '22.5103', '22.5103', '36.5000', '36.5000', '3.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129023, '2022-10-27', 2617, 121966, 7199, 59945, '2.0000', '6.1455', '6.1455', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129024, '2022-10-27', 9915, 121967, 7199, 60028, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129025, '2022-10-27', 2656, 121968, 7199, 65492, '1.0000', '1.6315', '1.6315', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129026, '2022-10-27', 1840, 121969, 7199, 62749, '2.0000', '0.2400', '0.2400', '0.5000', '0.5000', '66.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129027, '2022-10-27', 1841, 121970, 7199, 62748, '1.0000', '0.3143', '0.3143', '0.5000', '0.5000', '66.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129028, '2022-10-27', 2809, 121971, 7199, 55456, '1.0000', '28.0000', '28.0000', '35.0000', '35.0000', '8.0000', 1, 0, NULL, 476);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129029, '2022-10-27', 2543, 121972, 7199, 58796, '1.0000', '2.2750', '2.2750', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129030, '2022-10-27', 10005, 121973, 7199, 62782, '1.0000', '6.8000', '6.8000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129031, '2022-10-27', 3019, 121974, 7199, 55831, '1.0000', '11.3964', '11.3964', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 480);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129032, '2022-10-27', 1602, 121975, 7199, 64515, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129033, '2022-10-27', 2379, 121976, 7199, 65320, '1.0000', '2.2057', '2.2057', '4.5000', '4.5000', '9.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129034, '2022-10-27', 8979, 121977, 7199, 65073, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129035, '2022-10-27', 2656, 121978, 7199, 65492, '1.0000', '1.6315', '1.6315', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129036, '2022-10-27', 9750, 121979, 7199, 65924, '1.0000', '3.7986', '3.7986', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 578);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129037, '2022-10-27', 1921, 121980, 7199, 65324, '1.0000', '2.3095', '2.3095', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129038, '2022-10-27', 2302, 121981, 7199, 65907, '1.0000', '5.8159', '5.8159', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 578);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129039, '2022-10-27', 1668, 121982, 7199, 58585, '1.0000', '31.4191', '31.4191', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129040, '2022-10-27', 2607, 121983, 7199, 9786, '2.0000', '1.4000', '1.4000', '1.7000', '1.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 (129041, '2022-10-27', 9831, 121984, 7199, 65493, '1.0000', '2.3000', '2.3000', '3.5000', '3.5000', '14.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129042, '2022-10-27', 1715, 121985, 7199, 65284, '1.0000', '8.0782', '8.0782', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129043, '2022-10-27', 1646, 121986, 7199, 65306, '1.0000', '6.2560', '6.2560', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129044, '2022-10-27', 3029, 121987, 7199, 64537, '1.0000', '7.8134', '7.8134', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129045, '2022-10-27', 1446, 121988, 7199, 64314, '1.0000', '4.3372', '4.3372', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 556);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129046, '2022-10-27', 1602, 121989, 7199, 64515, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '36.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129047, '2022-10-27', 2656, 121990, 7199, 65492, '2.0000', '1.6315', '1.6315', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129048, '2022-10-27', 8184, 121991, 7199, 52082, '14.0000', '2.6350', '2.6350', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 434);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129049, '2022-10-27', 7713, 121992, 7199, NULL, '2.0000', '0.3800', '0.3800', '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 (129050, '2022-10-27', 8387, 121993, 7199, 63950, '1.0000', '32.7500', '32.7500', '45.5000', '45.5000', '1.0000', 1, 0, NULL, 552);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129051, '2022-10-27', 1812, 121994, 7200, 63423, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129052, '2022-10-27', 1767, 121995, 7200, 64069, '1.0000', '6.3800', '6.3800', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129053, '2022-10-27', 2020, 121996, 7200, NULL, '1.0000', '105361.0491', '105361.0491', '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 (129054, '2022-10-27', 2293, 121997, 7200, NULL, '3.0000', '1.1118', '1.1118', '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 (129055, '2022-10-27', 1339, 121998, 7200, 65118, '1.0000', '2.4796', '2.4796', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129056, '2022-10-27', 1690, 121999, 7200, 59872, '1.0000', '8.6637', '8.6637', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 517);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129057, '2022-10-27', 2109, 122000, 7200, NULL, '2.0000', '-3.8860', '-3.8860', '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 (129058, '2022-10-27', 2169, 122001, 7200, 62844, '2.0000', '1.8316', '1.8316', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129059, '2022-10-27', 1863, 122002, 7200, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '62.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129060, '2022-10-27', 7564, 122003, 7200, NULL, '1.0000', '0.6400', '0.6400', '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 (129061, '2022-10-27', 9728, 122004, 7200, NULL, '1.0000', '5.4000', '5.4000', '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 (129062, '2022-10-27', 9819, 122005, 7200, 62425, '2.0000', '3.6300', '3.6300', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129063, '2022-10-27', 1592, 122006, 7200, 54962, '1.0000', '43.2145', '43.2145', '65.0000', '65.0000', '2.0000', 1, 0, NULL, 469);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129064, '2022-10-27', 8878, 122007, 7200, 64000, '1.0000', '-14.0332', '-14.0332', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129065, '2022-10-27', 7411, 122008, 7200, NULL, '1.0000', '1.2819', '1.2819', '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 (129066, '2022-10-27', 1612, 122009, 7200, NULL, '1.0000', '1.6000', '1.6000', '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 (129067, '2022-10-27', 9995, 122010, 7200, 62382, '1.0000', '8.2000', '8.2000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129068, '2022-10-27', 2086, 122011, 7200, 64815, '1.0000', '6.9533', '6.9533', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129069, '2022-10-27', 1529, 122012, 7200, 65417, '1.0000', '5.4216', '5.4216', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129070, '2022-10-27', 1855, 122013, 7200, NULL, '1.0000', '0.9708', '0.9708', '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 (129071, '2022-10-27', 2167, 122014, 7200, NULL, '1.0000', '-35.2864', '-35.2864', '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 (129072, '2022-10-27', 2108, 122015, 7200, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129073, '2022-10-27', 8017, 122016, 7200, 64594, '1.0000', '0.6000', '0.6000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129074, '2022-10-27', 1910, 122017, 7200, NULL, '1.0000', '0.5756', '0.5756', '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 (129075, '2022-10-27', 1912, 122018, 7200, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129076, '2022-10-27', 2169, 122019, 7200, 62844, '2.0000', '1.8316', '1.8316', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129077, '2022-10-27', 2025, 122020, 7200, 65676, '2.0000', '4.9318', '4.9318', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129078, '2022-10-27', 1688, 122021, 7200, 62073, '1.0000', '23.7000', '23.7000', '39.5000', '39.5000', '0.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129079, '2022-10-27', 1871, 122022, 7200, NULL, '21.0000', '-20821086.1374', '-20821086.1374', '4.5000', '4.5000', '-21.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129080, '2022-10-27', 8595, 122023, 7200, NULL, '1.0000', '-26.0029', '-26.0029', '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 (129081, '2022-10-27', 1704, 122024, 7200, 65128, '1.0000', '40.2400', '40.2400', '51.5000', '51.5000', '3.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129082, '2022-10-27', 10052, 122025, 7200, 65131, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129083, '2022-10-27', 1532, 122026, 7200, 65408, '3.0000', '1.6508', '1.6508', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129084, '2022-10-27', 9734, 122027, 7200, 65428, '2.0000', '0.4603', '0.4603', '0.7000', '0.7000', '184.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129085, '2022-10-27', 1602, 122028, 7200, 64829, '1.0000', '8.1020', '8.1020', '11.5000', '11.5000', '16.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129086, '2022-10-27', 7411, 122029, 7200, NULL, '1.0000', '1.2819', '1.2819', '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 (129087, '2022-10-27', 2545, 122030, 7200, 61556, '1.0000', '9.0358', '9.0358', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129088, '2022-10-27', 1386, 122031, 7200, 62404, '1.0000', '4.8042', '4.8042', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129089, '2022-10-27', 9864, 122032, 7200, 55579, '1.0000', '1.6000', '1.6000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, 478);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129090, '2022-10-27', 9902, 122033, 7200, 63991, '2.0000', '8.7884', '8.7884', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129091, '2022-10-27', 1310, 122034, 7200, 64020, '4.0000', '0.4288', '0.4288', '0.6000', '0.6000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129092, '2022-10-27', 1667, 122035, 7200, 65133, '1.0000', '9.7806', '9.7806', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129093, '2022-10-27', 9578, 122036, 7200, 53632, '1.0000', '8.0000', '8.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129094, '2022-10-27', 2821, 122037, 7200, NULL, '1.0000', '-40.2618', '-40.2618', '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 (129095, '2022-10-27', 9831, 122038, 7200, 65641, '1.0000', '-0.8883', '-0.8883', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129096, '2022-10-27', 2315, 122039, 7200, NULL, '2.0000', '0.7700', '0.7700', '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 (129097, '2022-10-27', 1912, 122040, 7200, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129098, '2022-10-27', 2384, 122041, 7200, NULL, '2.0000', '-312.4992', '-312.4992', '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 (129099, '2022-10-27', 2604, 122042, 7200, 65401, '1.0000', '85.0000', '85.0000', '120.0000', '120.0000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129100, '2022-10-27', 1845, 122043, 7200, NULL, '1.0000', '-17.9160', '-17.9160', '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 (129101, '2022-10-27', 7926, 122044, 7200, NULL, '1.0000', '6.8265', '6.8265', '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 (129102, '2022-10-27', 2381, 122045, 7200, 64045, '1.0000', '14.5327', '14.5327', '19.5000', '19.5000', '3.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129103, '2022-10-27', 7318, 122046, 7200, 65450, '1.0000', '17.5693', '17.5693', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129104, '2022-10-27', 7802, 122047, 7200, NULL, '6.0000', '1.1497', '1.1497', '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 (129105, '2022-10-27', 1812, 122048, 7200, 63423, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '9.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129106, '2022-10-27', 2302, 122049, 7200, 64747, '1.0000', '4.4951', '4.4951', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129107, '2022-10-27', 1935, 122050, 7200, 64832, '2.0000', '0.9044', '0.9044', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129108, '2022-10-27', 7411, 122051, 7200, NULL, '25.0000', '1.2819', '1.2819', '3.0000', '3.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 (129109, '2022-10-27', 9740, 122052, 7200, 62840, '5.0000', '0.6695', '0.6695', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129110, '2022-10-27', 2167, 122053, 7200, NULL, '1.0000', '-35.2864', '-35.2864', '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 (129111, '2022-10-27', 1788, 122054, 7200, 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 (129112, '2022-10-27', 9734, 122055, 7200, 65428, '6.0000', '0.4603', '0.4603', '0.7000', '0.7000', '180.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129113, '2022-10-27', 2233, 122056, 7200, 65404, '1.0000', '29.2661', '29.2661', '53.5000', '53.5000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129114, '2022-10-27', 9695, 122057, 7200, 65642, '1.0000', '5.7329', '5.7329', '9.0000', '9.0000', '23.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129115, '2022-10-27', 2086, 122058, 7200, 64815, '1.0000', '6.9533', '6.9533', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129116, '2022-10-27', 1306, 122059, 7200, 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 (129117, '2022-10-27', 1639, 122060, 7200, 64054, '1.0000', '7.6530', '7.6530', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129118, '2022-10-27', 1715, 122061, 7200, 65421, '1.0000', '8.7468', '8.7468', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129119, '2022-10-27', 1787, 122062, 7200, 61552, '1.0000', '0.5000', '0.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 530);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129120, '2022-10-27', 2386, 122063, 7200, 56437, '1.0000', '2.8183', '2.8183', '4.5000', '4.5000', '5.0000', 1, 0, NULL, 488);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129121, '2022-10-27', 1695, 122064, 7200, 65426, '1.0000', '25.6333', '25.6333', '38.0000', '38.0000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129122, '2022-10-27', 8482, 122065, 7200, 64077, '1.0000', '18.0579', '18.0579', '29.5000', '29.5000', '5.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129123, '2022-10-27', 1349, 122066, 7200, 52172, '1.0000', '42.3933', '42.3933', '61.0000', '61.0000', '0.0000', 1, 0, NULL, 435);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129124, '2022-10-27', 8133, 122067, 7200, NULL, '1.0000', '-229850.3865', '-229850.3865', '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 (129125, '2022-10-27', 9496, 122068, 7200, NULL, '1.0000', '-5.5750', '-5.5750', '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 (129126, '2022-10-27', 1501, 122069, 7200, NULL, '1.0000', '-2.2016', '-2.2016', '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 (129127, '2022-10-27', 2237, 122070, 7200, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '20.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129128, '2022-10-27', 7411, 122071, 7200, NULL, '1.0000', '1.2819', '1.2819', '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 (129129, '2022-10-27', 2543, 122072, 7200, 60263, '1.0000', '3.3251', '3.3251', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 519);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129130, '2022-10-28', 1874, 122073, 7201, NULL, '1.0000', '-24.5000', '-24.5000', '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 (129131, '2022-10-28', 1912, 122074, 7201, 64802, '1.0000', '0.7413', '0.7413', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129132, '2022-10-28', 9751, 122075, 7201, 65044, '2.0000', '1.7134', '1.7134', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129133, '2022-10-28', 9503, 122076, 7201, NULL, '1.0000', '240.6525', '240.6525', '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 (129134, '2022-10-28', 8765, 122077, 7201, 65651, '1.0000', '-13.9848', '-13.9848', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129135, '2022-10-28', 8746, 122078, 7201, 65644, '1.0000', '3.5357', '3.5357', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129136, '2022-10-28', 2038, 122079, 7201, 58044, '1.0000', '15.4660', '15.4660', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 502);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129137, '2022-10-28', 9030, 122080, 7201, NULL, '1.0000', '12.9000', '12.9000', '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 (129138, '2022-10-28', 9631, 122081, 7201, 65396, '1.0000', '9.0714', '9.0714', '13.0000', '13.0000', '4.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129139, '2022-10-28', 1825, 122082, 7201, 62441, '1.0000', '8.9429', '8.9429', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129140, '2022-10-28', 7472, 122083, 7201, NULL, '1.0000', '-623.6000', '-623.6000', '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 (129141, '2022-10-28', 1743, 122084, 7201, NULL, '1.0000', '3.5650', '3.5650', '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 (129142, '2022-10-28', 2260, 122085, 7201, 64746, '4.0000', '5.2018', '5.2018', '9.5000', '9.5000', '4.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129143, '2022-10-28', 2327, 122086, 7201, 65448, '1.0000', '4.2182', '4.2182', '7.5000', '7.5000', '8.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129144, '2022-10-28', 1744, 122087, 7201, NULL, '1.0000', '353.3370', '353.3370', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129145, '2022-10-28', 8446, 122088, 7201, NULL, '1.0000', '6.3000', '6.3000', '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 (129146, '2022-10-28', 1450, 122089, 7201, NULL, '5.0000', '0.8483', '0.8483', '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 (129147, '2022-10-28', 9902, 122090, 7201, 63991, '1.0000', '8.7884', '8.7884', '12.0000', '12.0000', '8.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129148, '2022-10-28', 1322, 122091, 7201, 65424, '1.0000', '17.6000', '17.6000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129149, '2022-10-28', 2020, 122092, 7201, NULL, '1.0000', '105361.0491', '105361.0491', '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 (129150, '2022-10-28', 2277, 122093, 7202, NULL, '2.0000', '0.5402', '0.5402', '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 (129151, '2022-10-28', 1621, 122094, 7202, 64850, '1.0000', '13.6096', '13.6096', '9.0000', '9.0000', '6.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129152, '2022-10-28', 2068, 122095, 7202, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129153, '2022-10-28', 1863, 122096, 7202, 64589, '1.0000', '1.5148', '1.5148', '2.5000', '2.5000', '61.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129154, '2022-10-28', 9831, 122097, 7202, 65641, '1.0000', '-0.8883', '-0.8883', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129155, '2022-10-28', 2108, 122098, 7202, 62842, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129156, '2022-10-28', 9840, 122099, 7202, 64598, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 563);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129157, '2022-10-28', 7704, 122100, 7202, NULL, '1.0000', '0.4900', '0.4900', '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 (129158, '2022-10-28', 9671, 122101, 7202, 65406, '1.0000', '32.0000', '32.0000', '42.5000', '42.5000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129159, '2022-10-28', 9921, 122102, 7203, 58205, '1.0000', '6.6500', '6.6500', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 507);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129160, '2022-10-28', 2068, 122103, 7203, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129161, '2022-10-28', 10004, 122104, 7203, 62129, '6.0000', '2.5100', '2.5100', '3.0000', '3.0000', '67.0000', 1, 0, NULL, 536);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129162, '2022-10-28', 2167, 122105, 7203, NULL, '1.0000', '-35.2864', '-35.2864', '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 (129163, '2022-10-28', 1910, 122106, 7203, NULL, '1.0000', '0.5756', '0.5756', '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 (129164, '2022-10-28', 1942, 122107, 7204, 55714, '1.0000', '20.0151', '20.0151', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 479);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129165, '2022-10-28', 9692, 122108, 7204, 49343, '3.0000', '5.3000', '5.3000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129166, '2022-10-28', 2491, 122109, 7204, 65447, '1.0000', '-15.8000', '-15.8000', '30.0000', '30.0000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129167, '2022-10-28', 2522, 122110, 7204, 65669, '1.0000', '7.5809', '7.5809', '16.0000', '16.0000', '5.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129168, '2022-10-28', 9751, 122111, 7205, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '36.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129169, '2022-10-28', 7457, 122112, 7206, 65857, '1.0000', '5.7728', '5.7728', '12.0000', '12.0000', '9.0000', 1, 0, NULL, 577);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129170, '2022-10-28', 8020, 122113, 7206, 65237, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129171, '2022-10-28', 7405, 122114, 7206, 59400, '1.0000', '5.0200', '5.0200', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 512);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129172, '2022-10-28', 9275, 122115, 7206, NULL, '1.0000', '8.8157', '8.8157', '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 (129173, '2022-10-28', 8721, 122116, 7206, 65800, '1.0000', '25.9833', '25.9833', '36.5000', '36.5000', '5.0000', 1, 0, NULL, 576);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129174, '2022-10-28', 2315, 122117, 7206, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129175, '2022-10-28', 7564, 122118, 7206, 59164, '3.0000', '-360020.5719', '-360020.5719', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 509);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129176, '2022-10-28', 9413, 122119, 7206, 61705, '1.0000', '9.2095', '9.2095', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129177, '2022-10-28', 2315, 122120, 7206, 64405, '2.0000', '0.7662', '0.7662', '1.0000', '1.0000', '66.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129178, '2022-10-28', 7514, 122121, 7206, 65868, '1.0000', '-21468.2594', '-21468.2594', '3.5000', '3.5000', '49.0000', 1, 0, NULL, 577);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129179, '2022-10-28', 7526, 122122, 7206, NULL, '2.0000', '-174.2425', '-174.2425', '21.5000', '21.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 (129180, '2022-10-28', 9329, 122123, 7206, 65780, '2.0000', '-2200.8797', '-2200.8797', '14.5000', '14.5000', '3.0000', 1, 0, NULL, 576);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129181, '2022-10-28', 7672, 122124, 7206, 65266, '1.0000', '3.1382', '3.1382', '2.5000', '2.5000', '28.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129182, '2022-10-28', 8969, 122125, 7206, NULL, '2.0000', '2.0000', '2.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 (129183, '2022-10-28', 7591, 122126, 7206, 64929, '1.0000', '-10.4230', '-10.4230', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 564);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129184, '2022-10-28', 7674, 122127, 7206, 65234, '1.0000', '43.5348', '43.5348', '3.0000', '3.0000', '56.0000', 1, 0, NULL, 568);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129185, '2022-10-28', 9751, 122128, 7206, 64409, '1.0000', '1.4421', '1.4421', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 558);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129186, '2022-10-28', 2104, 122129, 7206, NULL, '2.0000', '0.2000', '0.2000', '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 (129187, '2022-10-28', 7864, 122130, 7206, 65687, '3.0000', '23.8440', '23.8440', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 572);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129188, '2022-10-28', 1935, 122131, 7206, 61805, '1.0000', '-0.3665', '-0.3665', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 528);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129189, '2022-10-28', 7703, 122132, 7206, NULL, '3.0000', '-4961.0093', '-4961.0093', '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 (129190, '2022-10-28', 8079, 122133, 7207, 65319, '1.0000', '14.2100', '14.2100', '19.0000', '19.0000', '2.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129191, '2022-10-28', 1863, 122134, 7207, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '98.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129192, '2022-10-28', 7472, 122135, 7207, 58777, '1.0000', '8.0600', '8.0600', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129193, '2022-10-28', 9735, 122136, 7207, 53251, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 443);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129194, '2022-10-28', 9714, 122137, 7207, 62268, '1.0000', '26.7000', '26.7000', '39.0000', '39.0000', '1.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129195, '2022-10-28', 8889, 122138, 7207, NULL, '1.0000', '34.0000', '34.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 (129196, '2022-10-28', 9940, 122139, 7207, 64781, '1.0000', '9.5168', '9.5168', '13.0000', '13.0000', '33.0000', 1, 0, NULL, 561);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129197, '2022-10-28', 1871, 122140, 7207, 59999, '2.0000', '4.6908', '4.6908', '4.5000', '4.5000', '0.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129198, '2022-10-28', 1871, 122140, 7207, 58764, '2.0000', '4.6908', '4.6908', '4.5000', '4.5000', '58.0000', 1, 0, NULL, 511);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129199, '2022-10-28', 2151, 122141, 7207, 64532, '1.0000', '103.1000', '103.1000', '36.5000', '36.5000', '3.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129200, '2022-10-28', 8740, 122142, 7207, 65490, '1.0000', '2.1176', '2.1176', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129201, '2022-10-28', 9695, 122143, 7207, 65482, '1.0000', '5.8532', '5.8532', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129202, '2022-10-28', 2315, 122144, 7207, 60074, '1.0000', '0.6397', '0.6397', '1.0000', '1.0000', '13.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129203, '2022-10-28', 2656, 122145, 7207, 65492, '1.0000', '1.6315', '1.6315', '3.0000', '3.0000', '12.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129204, '2022-10-28', 1863, 122146, 7207, 64555, '1.0000', '1.4448', '1.4448', '2.5000', '2.5000', '98.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129205, '2022-10-28', 9751, 122147, 7208, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129206, '2022-10-28', 9734, 122148, 7208, 65428, '3.0000', '0.4603', '0.4603', '0.7000', '0.7000', '175.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129207, '2022-10-28', 9683, 122149, 7208, 65031, '1.0000', '1.9393', '1.9393', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129208, '2022-10-28', 8979, 122150, 7208, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129209, '2022-10-28', 2284, 122151, 7208, 62847, '1.0000', '1.4530', '1.4530', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129210, '2022-10-28', 2161, 122152, 7208, 65673, '1.0000', '-36.5558', '-36.5558', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129211, '2022-10-28', 2109, 122153, 7208, NULL, '1.0000', '-3.8860', '-3.8860', '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 (129212, '2022-10-28', 2169, 122154, 7208, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129213, '2022-10-28', 2169, 122155, 7208, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129214, '2022-10-28', 9902, 122156, 7208, 63991, '1.0000', '8.7884', '8.7884', '12.0000', '12.0000', '7.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129215, '2022-10-28', 8384, 122157, 7208, 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 (129216, '2022-10-28', 2169, 122158, 7208, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129217, '2022-10-28', 1646, 122159, 7208, 64863, '1.0000', '6.6727', '6.6727', '13.0000', '13.0000', '5.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129218, '2022-10-28', 1620, 122160, 7208, 62829, '10.0000', '2.3984', '2.3984', '4.5000', '4.5000', '1.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129219, '2022-10-28', 2655, 122161, 7208, 65640, '1.0000', '-362.2084', '-362.2084', '11.0000', '11.0000', '37.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129220, '2022-10-28', 9788, 122162, 7208, 64791, '1.0000', '1.8451', '1.8451', '2.5000', '2.5000', '73.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129221, '2022-10-28', 9729, 122163, 7208, 64805, '3.0000', '0.6200', '0.6200', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129222, '2022-10-28', 2068, 122164, 7208, NULL, '1.0000', '13.2664', '13.2664', '20.5000', '20.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129223, '2022-10-28', 1841, 122165, 7208, NULL, '2.0000', '0.7630', '0.7630', '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 (129224, '2022-10-28', 2169, 122166, 7208, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '27.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129225, '2022-10-28', 2260, 122167, 7208, 64746, '1.0000', '5.2018', '5.2018', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129226, '2022-10-28', 1342, 122168, 7208, 64034, '1.0000', '7.9337', '7.9337', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129227, '2022-10-28', 2730, 122169, 7208, 63990, '1.0000', '2.2167', '2.2167', '2.5000', '2.5000', '11.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129228, '2022-10-28', 1756, 122170, 7208, NULL, '2.0000', '4.9900', '4.9900', '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 (129229, '2022-10-28', 1874, 122171, 7208, NULL, '1.0000', '-24.5000', '-24.5000', '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 (129230, '2022-10-28', 9751, 122172, 7208, 65044, '1.0000', '1.7134', '1.7134', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129231, '2022-10-28', 7411, 122173, 7208, NULL, '2.0000', '1.2819', '1.2819', '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 (129232, '2022-10-28', 2503, 122174, 7208, 65379, '1.0000', '18.1136', '18.1136', '29.0000', '29.0000', '5.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129233, '2022-10-28', 2131, 122175, 7208, 59685, '1.0000', '12.6477', '12.6477', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 508);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129234, '2022-10-28', 3024, 122176, 7208, 63778, '1.0000', '6.7632', '6.7632', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129235, '2022-10-28', 2011, 122177, 7208, 57152, '1.0000', '0.6620', '0.6620', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 495);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129236, '2022-10-28', 8979, 122178, 7208, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129237, '2022-10-28', 2020, 122179, 7208, NULL, '1.0000', '105361.0491', '105361.0491', '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 (129238, '2022-10-28', 1339, 122180, 7208, 65118, '1.0000', '2.4796', '2.4796', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 569);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129239, '2022-10-28', 1337, 122181, 7208, NULL, '1.0000', '2.2000', '2.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 (129240, '2022-10-28', 2297, 122182, 7208, NULL, '1.0000', '10.2971', '10.2971', '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 (129241, '2022-10-28', 7802, 122183, 7208, NULL, '3.0000', '1.1497', '1.1497', '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 (129242, '2022-10-28', 9579, 122184, 7208, 53633, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 449);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129243, '2022-10-28', 1975, 122185, 7208, 63789, '1.0000', '13.3572', '13.3572', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 550);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129244, '2022-10-28', 2260, 122186, 7208, 64746, '1.0000', '5.2018', '5.2018', '9.5000', '9.5000', '3.0000', 1, 0, NULL, 557);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129245, '2022-10-28', 1855, 122187, 7208, NULL, '1.0000', '0.9708', '0.9708', '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 (129246, '2022-10-28', 2443, 122188, 7208, 54833, '1.0000', '3.1936', '3.1936', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 468);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129247, '2022-10-28', 8979, 122189, 7208, 65045, '1.0000', '0.9763', '0.9763', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129248, '2022-10-28', 8744, 122190, 7208, 65030, '1.0000', '2.8972', '2.8972', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 559);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129249, '2022-10-28', 8746, 122191, 7208, 65644, '1.0000', '3.5357', '3.5357', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129250, '2022-10-28', 9831, 122192, 7208, 65641, '1.0000', '-0.8883', '-0.8883', '3.5000', '3.5000', '16.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129251, '2022-10-28', 2237, 122193, 7208, 64796, '1.0000', '1.2800', '1.2800', '2.5000', '2.5000', '19.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129252, '2022-10-28', 1590, 122194, 7208, 64809, '3.0000', '2.5018', '2.5018', '4.0000', '4.0000', '44.0000', 1, 0, NULL, 565);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129253, '2022-10-28', 7712, 122195, 7209, NULL, '1.0000', '26.0000', '26.0000', '51.5000', '51.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129254, '2022-10-28', 7356, 122196, 7209, NULL, '1.0000', '10.9000', '10.9000', '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 (129255, '2022-10-28', 2079, 122197, 7209, 228, '1.0000', '2.3000', '2.3000', '4.0000', '4.0000', '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 (129256, '2022-10-28', 7412, 122198, 7209, NULL, '1.0000', '1.5200', '1.5200', '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 (129257, '2022-10-28', 7736, 122199, 7209, NULL, '1.0000', '16.2000', '16.2000', '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 (129258, '2022-10-28', 7899, 122200, 7209, NULL, '2.0000', '3.3000', '3.3000', '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 (129259, '2022-10-28', 1420, 122201, 7209, NULL, '1.0000', '1.2000', '1.2000', '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 (129260, '2022-10-28', 9499, 122202, 7209, NULL, '1.0000', '22.0000', '22.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 (129261, '2022-10-28', 8759, 122203, 7209, NULL, '1.0000', '6.5000', '6.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 (129262, '2022-10-28', 1841, 122204, 7209, NULL, '2.0000', '142.5780', '142.5780', '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 (129263, '2022-10-28', 8208, 122205, 7209, NULL, '2.0000', '33.0000', '33.0000', '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 (129264, '2022-10-28', 7459, 122206, 7209, NULL, '2.0000', '2.3500', '2.3500', '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 (129265, '2022-10-28', 1501, 122207, 7209, NULL, '1.0000', '2.0500', '2.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 (129266, '2022-10-28', 8308, 122208, 7209, NULL, '1.0000', '2.0800', '2.0800', '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 (129267, '2022-10-28', 9469, 122209, 7209, NULL, '2.0000', '2.3000', '2.3000', '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 (129268, '2022-10-28', 7609, 122210, 7209, NULL, '1.0000', '4.3300', '4.3300', '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 (129269, '2022-10-28', 2289, 122211, 7209, 2949, '-316.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 (129270, '2022-10-28', 2289, 122211, 7209, NULL, '318.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-318.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129271, '2022-10-28', 1841, 122212, 7209, NULL, '1.0000', '142.5780', '142.5780', '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 (129272, '2022-10-28', 1840, 122213, 7209, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '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 (129273, '2022-10-28', 7585, 122214, 7209, NULL, '1.0000', '3.9600', '3.9600', '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 (129274, '2022-10-28', 7666, 122215, 7209, NULL, '1.0000', '3.6000', '3.6000', '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 (129275, '2022-10-28', 7781, 122216, 7209, NULL, '1.0000', '4.2500', '4.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 (129276, '2022-10-28', 9274, 122217, 7209, NULL, '1.0000', '3.6000', '3.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 (129277, '2022-10-28', 7411, 122218, 7209, 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 (129278, '2022-10-28', 7444, 122219, 7209, 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 (129279, '2022-10-28', 2315, 122220, 7209, 2735, '-746.0000', '0.3300', '0.3300', '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 (129280, '2022-10-28', 2315, 122220, 7209, NULL, '747.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-747.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129281, '2022-10-28', 7959, 122221, 7209, NULL, '2.0000', '9.6000', '9.6000', '0.7000', '0.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129282, '2022-10-28', 7473, 122222, 7209, NULL, '1.0000', '0.5300', '0.5300', '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 (129283, '2022-10-28', 9092, 122223, 7209, NULL, '3.0000', '5.2900', '5.2900', '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 (129284, '2022-10-28', 9272, 122224, 7209, NULL, '1.0000', '3.1000', '3.1000', '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 (129285, '2022-10-28', 2248, 122225, 7209, 2785, '-21.0000', '2.5000', '2.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 (129286, '2022-10-28', 2248, 122225, 7209, NULL, '22.0000', '2.5000', '2.5000', '6.0000', '6.0000', '-22.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129287, '2022-10-28', 8407, 122226, 7209, NULL, '2.0000', '1.0700', '1.0700', '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 (129288, '2022-10-28', 7636, 122227, 7209, NULL, '2.0000', '2.5000', '2.5000', '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 (129289, '2022-10-28', 8362, 122228, 7209, NULL, '2.0000', '0.6000', '0.6000', '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 (129290, '2022-10-28', 7666, 122229, 7209, NULL, '1.0000', '3.6000', '3.6000', '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 (129291, '2022-10-28', 9177, 122230, 7209, 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 (129292, '2022-10-28', 1501, 122231, 7209, NULL, '1.0000', '2.0500', '2.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 (129293, '2022-10-28', 9391, 122232, 7209, 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 (129294, '2022-10-28', 8566, 122233, 7209, NULL, '1.0000', '11.0000', '11.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 (129295, '2022-10-28', 2440, 122234, 7209, 5309, '-8.0000', '5.3000', '5.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 (129296, '2022-10-28', 2440, 122234, 7209, NULL, '9.0000', '5.3000', '5.3000', '12.0000', '12.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 (129297, '2022-10-28', 7672, 122235, 7209, NULL, '1.0000', '1.0200', '1.0200', '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 (129298, '2022-10-28', 7385, 122236, 7209, NULL, '1.0000', '2.0000', '2.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 (129299, '2022-10-28', 8596, 122237, 7209, 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 (129300, '2022-10-28', 1311, 122238, 7209, 5437, '-43.0000', '79.3908', '79.3908', '0.6000', '0.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 (129301, '2022-10-28', 1311, 122238, 7209, NULL, '47.0000', '79.3908', '79.3908', '0.6000', '0.6000', '-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 (129302, '2022-10-28', 7954, 122239, 7209, NULL, '2.0000', '3.0000', '3.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 (129303, '2022-10-28', 2315, 122240, 7209, 2735, '-746.0000', '0.3300', '0.3300', '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 (129304, '2022-10-28', 2315, 122240, 7209, NULL, '747.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-747.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129305, '2022-10-28', 7411, 122241, 7209, 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 (129306, '2022-10-28', 7444, 122242, 7209, 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 (129307, '2022-10-28', 7672, 122243, 7209, NULL, '1.0000', '1.0200', '1.0200', '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 (129308, '2022-10-28', 7598, 122244, 7209, NULL, '2.0000', '1.2800', '1.2800', '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 (129309, '2022-10-28', 7674, 122245, 7209, NULL, '1.0000', '1.3000', '1.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 (129310, '2022-10-28', 8345, 122246, 7209, NULL, '1.0000', '5.9000', '5.9000', '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 (129311, '2022-10-28', 7825, 122247, 7209, NULL, '1.0000', '6.5000', '6.5000', '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 (129312, '2022-10-28', 8918, 122248, 7209, NULL, '1.0000', '1.0400', '1.0400', '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 (129313, '2022-10-28', 3009, 122249, 7209, NULL, '1.0000', '22.0000', '22.0000', '21.5000', '21.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129314, '2022-10-28', 10053, 122250, 7209, 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 (129315, '2022-10-28', 7411, 122251, 7209, 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 (129316, '2022-10-28', 2169, 122252, 7210, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129317, '2022-10-28', 1409, 122253, 7210, 64028, '1.0000', '13.2000', '13.2000', '20.5000', '20.5000', '4.0000', 1, 0, NULL, 553);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129318, '2022-10-28', 2384, 122254, 7210, NULL, '2.0000', '-312.4992', '-312.4992', '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 (129319, '2022-10-28', 2169, 122255, 7210, 62844, '1.0000', '1.8316', '1.8316', '3.0000', '3.0000', '23.0000', 1, 0, NULL, 546);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129320, '2022-10-28', 1550, 122256, 7210, 57797, '1.0000', '19.4890', '19.4890', '35.5000', '35.5000', '0.0000', 1, 0, NULL, 501);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129321, '2022-10-28', 1669, 122257, 7210, NULL, '7.0000', '7.1844', '7.1844', '14.0000', '14.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 (129322, '2022-10-28', 8184, 122258, 7210, NULL, '1.0000', '2.9883', '2.9883', '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 (129323, '2022-10-28', 7926, 122259, 7210, NULL, '1.0000', '6.8265', '6.8265', '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 (129324, '2022-10-28', 9695, 122260, 7210, 65642, '1.0000', '5.7329', '5.7329', '10.0000', '10.0000', '22.0000', 1, 0, NULL, 574);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129325, '2022-10-28', 1386, 122261, 7210, 62404, '1.0000', '4.8042', '4.8042', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 538);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129326, '2022-10-28', 9089, 122262, 7211, 65487, '1.0000', '5.9981', '5.9981', '9.0000', '9.0000', '11.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129327, '2022-10-28', 1383, 122263, 7211, 65290, '1.0000', '5.8471', '5.8471', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129328, '2022-10-28', 2607, 122264, 7211, NULL, '2.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129329, '2022-10-28', 2917, 122265, 7211, 64492, '1.0000', '8.4375', '8.4375', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129330, '2022-10-28', 2169, 122266, 7211, 65305, '1.0000', '1.5623', '1.5623', '3.0000', '3.0000', '51.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129331, '2022-10-28', 1690, 122267, 7211, 64968, '1.0000', '8.0628', '8.0628', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129332, '2022-10-28', 2263, 122268, 7211, 62799, '1.0000', '5.4801', '5.4801', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 545);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129333, '2022-10-28', 1904, 122269, 7211, 65289, '1.0000', '10.4131', '10.4131', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129334, '2022-10-28', 1602, 122270, 7211, 64515, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '34.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129335, '2022-10-28', 1646, 122271, 7211, 65306, '1.0000', '6.2560', '6.2560', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129336, '2022-10-28', 2169, 122272, 7211, 65305, '1.0000', '1.5623', '1.5623', '3.0000', '3.0000', '51.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129337, '2022-10-28', 1341, 122273, 7211, 64985, '1.0000', '23.9167', '23.9167', '34.5000', '34.5000', '4.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129338, '2022-10-28', 7585, 122274, 7211, NULL, '1.0000', '4.2400', '4.2400', '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 (129339, '2022-10-28', 3044, 122275, 7211, 64957, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129340, '2022-10-28', 2255, 122276, 7211, 64970, '1.0000', '24.1278', '24.1278', '35.5000', '35.5000', '2.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129341, '2022-10-28', 1671, 122277, 7211, 62225, '1.0000', '50.6370', '50.6370', '82.0000', '82.0000', '3.0000', 1, 0, NULL, 535);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129342, '2022-10-28', 7917, 122278, 7211, NULL, '5.0000', '5.0000', '5.0000', '0.8000', '0.8000', '-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 (129343, '2022-10-28', 2277, 122279, 7211, 56888, '1.0000', '0.4620', '0.4620', '1.5000', '1.5000', '96.0000', 1, 0, NULL, 493);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129344, '2022-10-28', 2237, 122280, 7211, 65316, '1.0000', '1.3171', '1.3171', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129345, '2022-10-28', 1935, 122281, 7211, 65304, '1.0000', '1.1572', '1.1572', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129346, '2022-10-28', 1665, 122282, 7211, 64549, '1.0000', '1.3232', '1.3232', '3.0000', '3.0000', '133.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129347, '2022-10-28', 8482, 122283, 7211, 65331, '1.0000', '18.3750', '18.3750', '29.5000', '29.5000', '6.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129348, '2022-10-28', 2068, 122284, 7211, 64477, '1.0000', '14.0686', '14.0686', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129349, '2022-10-28', 1935, 122285, 7211, 65304, '1.0000', '1.1572', '1.1572', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 570);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129350, '2022-10-28', 7744, 122286, 7211, NULL, '1.0000', '2.9400', '2.9400', '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 (129351, '2022-10-28', 2315, 122287, 7212, 2735, '-748.0000', '0.3300', '0.3300', '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 (129352, '2022-10-28', 2315, 122287, 7212, NULL, '751.0000', '0.3300', '0.3300', '1.0000', '1.0000', '-751.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129353, '2022-10-28', 10062, 122288, 7212, NULL, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129354, '2022-10-28', 1812, 122289, 7213, 63423, '1.0000', '9.4505', '9.4505', '14.5000', '14.5000', '7.0000', 1, 0, NULL, 544);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129355, '2022-10-28', 2604, 122290, 7213, 65401, '1.0000', '85.0000', '85.0000', '120.0000', '120.0000', '3.0000', 1, 0, NULL, 573);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129356, '2022-10-28', 8444, 122291, 7214, 64544, '1.0000', '2.1250', '2.1250', '3.5000', '3.5000', '18.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129357, '2022-10-28', 2167, 122292, 7214, 64543, '1.0000', '2.7995', '2.7995', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129358, '2022-10-28', 8979, 122293, 7214, 65073, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129359, '2022-10-28', 8740, 122294, 7214, 65490, '1.0000', '2.1176', '2.1176', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129360, '2022-10-28', 2642, 122295, 7214, 60910, '1.0000', '10.3548', '10.3548', '25.0000', '25.0000', '4.0000', 1, 0, NULL, 526);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129361, '2022-10-28', 7411, 122296, 7214, NULL, '1.0000', '1.5882', '1.5882', '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 (129362, '2022-10-28', 1665, 122297, 7214, 64549, '2.0000', '1.3232', '1.3232', '3.0000', '3.0000', '131.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129363, '2022-10-29', 1602, 122298, 7215, 64515, '1.0000', '7.5640', '7.5640', '11.5000', '11.5000', '33.0000', 1, 0, NULL, 562);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129364, '2022-10-29', 10002, 122299, 7215, 61299, '1.0000', '22.0000', '22.0000', '30.0000', '30.0000', '17.0000', 1, 0, NULL, 527);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129365, '2022-10-29', 1488, 122300, 7215, 65917, '1.0000', '7.1509', '7.1509', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 578);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129366, '2022-10-29', 1943, 122301, 7215, 49240, '1.0000', '4.8068', '4.8068', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129367, '2022-10-29', 2858, 122302, 7215, NULL, '2.0000', '1.0000', '1.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 (129368, '2022-10-29', 9751, 122303, 7215, 65072, '1.0000', '1.8533', '1.8533', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 551);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129369, '2022-10-29', 2086, 122304, 7215, 64981, '1.0000', '5.5769', '5.5769', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 567);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129370, '2022-10-29', 8740, 122305, 7215, 65490, '1.0000', '2.1176', '2.1176', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 575);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129371, '2022-10-29', 10048, 122306, 7215, NULL, '1.0000', '48.0000', '48.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 (129372, '2022-10-29', 1892, 122307, 7215, 58588, '1.0000', '0.5200', '0.5200', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 510);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129373, '2022-10-29', 2916, 122308, 7215, 65888, '1.0000', '15.8230', '15.8230', '32.0000', '32.0000', '9.0000', 1, 0, NULL, 578);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129374, '2022-10-29', 2307, 122309, 7215, 60045, '1.0000', '185.8479', '185.8479', '247.0000', '247.0000', '1.0000', 1, 0, NULL, 518);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129375, '2022-10-29', 8482, 122310, 7215, 65331, '1.0000', '18.3750', '18.3750', '29.5000', '29.5000', '5.0000', 1, 0, NULL, 571);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129376, '2022-10-29', 2650, 122311, 7215, NULL, '1.0000', '7.3200', '7.3200', '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 (129377, '2022-10-29', 2821, 122312, 7215, 65886, '1.0000', '3.5905', '3.5905', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 578);


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

INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (835, '197.159.139.219', 'stellappiah', 1667027402);
INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (836, '197.159.139.219', 'appiah', 1667055069);
INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (837, '154.160.3.176', 'appiah', 1667055155);
INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (838, '154.160.2.124', 'admin', 1667062956);


#
# 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=4745 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');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (451, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3088\",\"code\":\"1234\",\"name\":\"test001\",\"unit\":\"1\",\"cost\":\"0.8800\",\"price\":\"62.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"CF1\",\"cf2\":\"CF2\",\"cf3\":\"CF3\",\"cf4\":\"CF4\",\"cf5\":\"CF5\",\"cf6\":\"CF6\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"test001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (452, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3089\",\"code\":\"1235\",\"name\":\"LONART FORTE TABS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1235\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-forte-tabs1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (453, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3090\",\"code\":\"1236\",\"name\":\"LOFNAC SUPP 100MG\",\"unit\":\"1\",\"cost\":\"9.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1236\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-supp-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (454, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3091\",\"code\":\"1237\",\"name\":\"LONART DS TABS\",\"unit\":\"1\",\"cost\":\"19.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1237\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-ds-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (455, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3092\",\"code\":\"1238\",\"name\":\"LONART SUSP\",\"unit\":\"1\",\"cost\":\"13.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1238\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (456, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3093\",\"code\":\"1239\",\"name\":\"MENTAT TABS\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1239\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentat-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (457, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3094\",\"code\":\"1240\",\"name\":\"LOSAR-DENK 100\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losar-denk-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (458, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3095\",\"code\":\"1241\",\"name\":\"METROLEX-F TABS\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1241\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metrolex-f-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (459, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3096\",\"code\":\"1242\",\"name\":\"LUEX ADULT DRY\",\"unit\":\"1\",\"cost\":\"4.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1242\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (460, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3097\",\"code\":\"1243\",\"name\":\"LUEX CHILD DRY\",\"unit\":\"1\",\"cost\":\"6.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1243\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (461, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3098\",\"code\":\"1244\",\"name\":\"METFORMIN DENK 500MG\",\"unit\":\"1\",\"cost\":\"55.7000\",\"price\":\"74.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"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\":\"metformin-denk-500mg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (462, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3099\",\"code\":\"1245\",\"name\":\"LYRICA 150MG\",\"unit\":\"1\",\"cost\":\"23.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1245\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (463, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3100\",\"code\":\"1246\",\"name\":\"M2 TONE\",\"unit\":\"1\",\"cost\":\"0.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1246\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"m2-tone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (464, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3101\",\"code\":\"1247\",\"name\":\"motilium\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1247\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"motilium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (465, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3102\",\"code\":\"1248\",\"name\":\"MULTIVITE\",\"unit\":\"1\",\"cost\":\"11.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1248\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"multivite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (466, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3103\",\"code\":\"1249\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"19.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1249\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (467, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3104\",\"code\":\"1250\",\"name\":\"MYCOLEX CREAM\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1250\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (468, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3105\",\"code\":\"1251\",\"name\":\"NATRILIX SR 1.5MG\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1251\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"natrilix-sr-15mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (469, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3106\",\"code\":\"1252\",\"name\":\"MYCROGYNON Fe\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1252\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycrogynon-fe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (470, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3107\",\"code\":\"1253\",\"name\":\"MR Q\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1253\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mr-q\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (471, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3108\",\"code\":\"1254\",\"name\":\"NIFECARD XL 30\",\"unit\":\"1\",\"cost\":\"21.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifecard-xl-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (472, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3109\",\"code\":\"1255\",\"name\":\"NEO HYCOLEX5ML\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1255\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-hycolex5ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (473, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3110\",\"code\":\"1256\",\"name\":\"NCP200ML\",\"unit\":\"1\",\"cost\":\"23.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ncp200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (474, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3111\",\"code\":\"1257\",\"name\":\"NERVE AND BONE\",\"unit\":\"1\",\"cost\":\"0.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1257\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-and-bone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (475, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3112\",\"code\":\"1258\",\"name\":\"NIZORAL CREAM\",\"unit\":\"1\",\"cost\":\"6.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1258\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (476, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3113\",\"code\":\"1259\",\"name\":\"NO SPA40MG\",\"unit\":\"1\",\"cost\":\"49.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1259\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"no-spa40mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (477, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3114\",\"code\":\"1260\",\"name\":\"OROLEX100MG\",\"unit\":\"1\",\"cost\":\"13.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1260\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orolex100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (478, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3115\",\"code\":\"1261\",\"name\":\"POLYGYNAX\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1261\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polygynax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (479, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3116\",\"code\":\"1262\",\"name\":\"AMOKSIKLAV228\",\"unit\":\"1\",\"cost\":\"1.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1262\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (480, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3117\",\"code\":\"1263\",\"name\":\"AMOXYCILLIN SUSP MG\",\"unit\":\"1\",\"cost\":\"47.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1263\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-susp-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (481, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3118\",\"code\":\"1264\",\"name\":\"PARA DENK250 SUPPO\",\"unit\":\"1\",\"cost\":\"94.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1264\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-denk250-suppo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (482, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3119\",\"code\":\"1265\",\"name\":\"PREGNACARE CONCEPTION\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-conception\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (483, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3120\",\"code\":\"1266\",\"name\":\"PREGNACARE PLUS\",\"unit\":\"1\",\"cost\":\"11.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1266\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (484, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3121\",\"code\":\"1267\",\"name\":\"PILEX OINT\",\"unit\":\"1\",\"cost\":\"14.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1267\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilex-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (485, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3122\",\"code\":\"1268\",\"name\":\"ALPHA GARLIC CAPS\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1268\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-garlic-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (486, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3123\",\"code\":\"1269\",\"name\":\"ACTINAC TAB\",\"unit\":\"1\",\"cost\":\"94.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1269\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actinac-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (487, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3124\",\"code\":\"1270\",\"name\":\"PERFECTIL\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1270\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (488, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3125\",\"code\":\"1271\",\"name\":\"AMARYL4MG\",\"unit\":\"1\",\"cost\":\"0.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amaryl4mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (489, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3126\",\"code\":\"1272\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"0.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1272\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anafranil25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (490, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3127\",\"code\":\"1273\",\"name\":\"APC 4S\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1273\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apc-4s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (491, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3128\",\"code\":\"1274\",\"name\":\"ALUMINIUM HYDROXIDE\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1274\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aluminium-hydroxide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (492, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3129\",\"code\":\"1275\",\"name\":\"BIOFERON SRP\",\"unit\":\"1\",\"cost\":\"11.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1275\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bioferon-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (493, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3130\",\"code\":\"1276\",\"name\":\"BIOFGERON CAPS\",\"unit\":\"1\",\"cost\":\"10.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1276\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"biofgeron-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (494, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3131\",\"code\":\"1277\",\"name\":\"BONISAN\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1277\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonisan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (495, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3132\",\"code\":\"1278\",\"name\":\"BELLS CHILDREN,S COUGH\",\"unit\":\"1\",\"cost\":\"18.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-childrens-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (496, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3133\",\"code\":\"1279\",\"name\":\"BORGES125\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (497, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3134\",\"code\":\"1280\",\"name\":\"BORGES250ML\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (498, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3135\",\"code\":\"1281\",\"name\":\"CAMEL500\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (499, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3136\",\"code\":\"1282\",\"name\":\"CAMEL 250ML\",\"unit\":\"1\",\"cost\":\"2.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1282\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (500, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3137\",\"code\":\"1283\",\"name\":\"CAMEL 125ML\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (501, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3138\",\"code\":\"1284\",\"name\":\"ANUSOL SUPPOS\",\"unit\":\"1\",\"cost\":\"5.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1284\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-suppos\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (502, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3139\",\"code\":\"1285\",\"name\":\"BIG BEN\",\"unit\":\"1\",\"cost\":\"9.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1285\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"big-ben\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (503, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3140\",\"code\":\"1286\",\"name\":\"ATORVASTATIN10MG\",\"unit\":\"1\",\"cost\":\"14.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atorvastatin10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (504, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3141\",\"code\":\"1287\",\"name\":\"ATORVASTATIN20MG\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1287\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atorvastatin20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (505, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3142\",\"code\":\"1288\",\"name\":\"BONAPLEX250MLS\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonaplex250mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (506, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3143\",\"code\":\"1289\",\"name\":\"BONGELA CHILD\",\"unit\":\"1\",\"cost\":\"32.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (507, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3144\",\"code\":\"1290\",\"name\":\"BELLS BABY COUGH\",\"unit\":\"1\",\"cost\":\"27.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1290\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-baby-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (508, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3145\",\"code\":\"1291\",\"name\":\"BONGELA ADULT\",\"unit\":\"1\",\"cost\":\"23.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1291\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (509, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3146\",\"code\":\"1292\",\"name\":\"BETALOC50MG\",\"unit\":\"1\",\"cost\":\"22.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"betaloc50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (510, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3147\",\"code\":\"1293\",\"name\":\"CATAFLAM 50MG\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cataflam-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (511, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3148\",\"code\":\"1294\",\"name\":\"AXACEF 250\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1294\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (512, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3149\",\"code\":\"1295\",\"name\":\"AXACEF 500\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1295\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (513, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3150\",\"code\":\"1296\",\"name\":\"VIT B DENK\",\"unit\":\"1\",\"cost\":\"141.7100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1296\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b-denk1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (514, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3151\",\"code\":\"1297\",\"name\":\"ATACAND16MG\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1297\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atacand16mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (515, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3152\",\"code\":\"1298\",\"name\":\"ATACAND PLUS 16\\/12.5MG\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1298\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atacand-plus-16125mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (516, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3153\",\"code\":\"1299\",\"name\":\"TEETHING MIXTURE ERNEST\",\"unit\":\"1\",\"cost\":\"12.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1299\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teething-mixture-ernest\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (517, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3154\",\"code\":\"1300\",\"name\":\"SURFAZ-SN TRIPLE  ACTION CREAM\",\"unit\":\"1\",\"cost\":\"5.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"surfaz-sn-triple-action-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (518, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3155\",\"code\":\"1301\",\"name\":\"TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329\",\"unit\":\"1\",\"cost\":\"55.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1301\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tooth-ache-solution-ayton329\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (519, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3156\",\"code\":\"1302\",\"name\":\"AZIROCIN CAPS USP 250 MG\",\"unit\":\"1\",\"cost\":\"7.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azirocin-caps-usp-250-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (520, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3157\",\"code\":\"1303\",\"name\":\"AUGMENTIN  625 MG\",\"unit\":\"1\",\"cost\":\"1.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-625-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (521, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3158\",\"code\":\"1304\",\"name\":\"AZIRON AZITHROMYCYCIN TAB USP 500 MG\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1304\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aziron-azithromycycin-tab-usp-500-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (522, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3159\",\"code\":\"1305\",\"name\":\"TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1305\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50mg-tramadol-hydrochloride-krka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (523, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3160\",\"code\":\"1306\",\"name\":\"CORORANGE HAEMATINIC CAPS SOFTGELS\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1306\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-haematinic-caps-softgels\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (524, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3161\",\"code\":\"1307\",\"name\":\"CATAFLAM 50MG DICLOFENAC. KAL ANTI-INALGESIC\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cataflam-50mg-diclofenac-kal-anti-inalgesic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (525, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3162\",\"code\":\"1308\",\"name\":\"AMOXYCILLIN SUSP ORAL BP 125\\/5ml\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1308\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-susp-oral-bp-1255ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (526, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3163\",\"code\":\"1309\",\"name\":\"CO-DIOVAN 80\\/12.5MG\",\"unit\":\"1\",\"cost\":\"14.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1309\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-diovan-80125mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (527, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3164\",\"code\":\"1310\",\"name\":\"STOPKOF COUGH SYRUP ADULT FORMULA\",\"unit\":\"1\",\"cost\":\"18.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1310\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-cough-syrup-adult-formula\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (528, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3165\",\"code\":\"1311\",\"name\":\"AMOKSIKLAV  228.5 ML ORAL SUSP\",\"unit\":\"1\",\"cost\":\"335.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1311\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-2285-ml-oral-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (529, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3166\",\"code\":\"1312\",\"name\":\"CLOTRI-DENK 100 VAGINAL TABS\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1312\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100-vaginal-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (530, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3167\",\"code\":\"1313\",\"name\":\"SARETTO TABS 15MG\",\"unit\":\"1\",\"cost\":\"9.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saretto-tabs-15mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (531, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3168\",\"code\":\"1314\",\"name\":\"ZINTAB 10ML\",\"unit\":\"1\",\"cost\":\"12.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1314\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-10ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (532, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3169\",\"code\":\"1315\",\"name\":\"TRIX ORIS S\\/S\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1315\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trix-oris-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (533, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3170\",\"code\":\"1316\",\"name\":\"ZINCOFER LIQUIED HAEMATINIC 200ML\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1316\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincofer-liquied-haematinic-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (534, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3171\",\"code\":\"1317\",\"name\":\"ZITHROMAX  SUSP\",\"unit\":\"1\",\"cost\":\"7.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1317\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zithromax-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (535, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3172\",\"code\":\"1318\",\"name\":\"WORMPLEX 400 SUSP. 20ML\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1318\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormplex-400-susp-20ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (536, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3173\",\"code\":\"1319\",\"name\":\"SE\'CLEAR EYE\\/EAR DROP\",\"unit\":\"1\",\"cost\":\"57.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1319\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eyeear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (537, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3174\",\"code\":\"1320\",\"name\":\"ZINCOVIT TAB\",\"unit\":\"1\",\"cost\":\"14.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (538, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3175\",\"code\":\"1321\",\"name\":\"WELLBABY MULTI-VIT LIQ\",\"unit\":\"1\",\"cost\":\"23.0900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1321\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellbaby-multi-vit-liq\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (539, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3176\",\"code\":\"1322\",\"name\":\"VERMOX SUSP\",\"unit\":\"1\",\"cost\":\"116.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vermox-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (540, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3177\",\"code\":\"1323\",\"name\":\"MOTILIUM 10 MG 30 TABS ORAL JANSSEN\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1323\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"motilium-10-mg-30-tabs-oral-janssen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (541, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3178\",\"code\":\"1324\",\"name\":\"TAVANIC 500MG LEVAFLAUZACIN sanofi\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tavanic-500mg-levaflauzacin-sanofi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (542, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3179\",\"code\":\"1325\",\"name\":\"bisoprolol fumarate 2.5mg tabs sandox\",\"unit\":\"1\",\"cost\":\"4.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1325\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bisoprolol-fumarate-25mg-tabs-sandox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (543, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3180\",\"code\":\"1326\",\"name\":\"POLYFER SYR FORTE  50ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-syr-forte-50ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (544, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3181\",\"code\":\"1327\",\"name\":\"SULFUR OINTMENT DANEX\",\"unit\":\"1\",\"cost\":\"7.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sulfur-ointment-danex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (545, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3182\",\"code\":\"1328\",\"name\":\"TAGERA FORTE\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tagera-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (546, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3183\",\"code\":\"1329\",\"name\":\"PRIMOLUT N\",\"unit\":\"1\",\"cost\":\"1.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1329\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (547, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3184\",\"code\":\"1330\",\"name\":\"PARABRU\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1330\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"parabru\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (548, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3185\",\"code\":\"1331\",\"name\":\"CITRO C\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"citro-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (549, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3186\",\"code\":\"1332\",\"name\":\"COLODIUM\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1332\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colodium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (550, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3187\",\"code\":\"1333\",\"name\":\"COLESTOP10MG\",\"unit\":\"1\",\"cost\":\"5.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1333\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colestop10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (551, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3188\",\"code\":\"1334\",\"name\":\"CONGESTYL SRP\",\"unit\":\"1\",\"cost\":\"18.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"congestyl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (552, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3189\",\"code\":\"1335\",\"name\":\"CONGESTYL TAB\",\"unit\":\"1\",\"cost\":\"5.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1335\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"congestyl-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:27:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (553, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3190\",\"code\":\"1336\",\"name\":\"CLOTRI DENK CREAM\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1336\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (554, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3191\",\"code\":\"1337\",\"name\":\"DALACIN 300MG ORIGINAL\",\"unit\":\"1\",\"cost\":\"25.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1337\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dalacin-300mg-original\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (555, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3192\",\"code\":\"1338\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1338\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anafranil25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (556, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3193\",\"code\":\"1339\",\"name\":\"DEEP HEAT SPRAY 150ML\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1339\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (557, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3194\",\"code\":\"1340\",\"name\":\"DEEP FREEZE SPRAY 150ML\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1340\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (558, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3195\",\"code\":\"1341\",\"name\":\"TENOX5MG\",\"unit\":\"1\",\"cost\":\"12.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1341\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tenox5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (559, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3196\",\"code\":\"1342\",\"name\":\"CIPRINOL 500\",\"unit\":\"1\",\"cost\":\"4.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (560, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3197\",\"code\":\"1343\",\"name\":\"COOL EYES\",\"unit\":\"1\",\"cost\":\"7.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1343\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cool-eyes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (561, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3198\",\"code\":\"1344\",\"name\":\"CLOSE UP140G\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1344\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"close-up140g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (562, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3199\",\"code\":\"1345\",\"name\":\"CORORANGE SRP\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (563, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3200\",\"code\":\"1346\",\"name\":\"COTTON WOOL200G\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wool200g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (564, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3201\",\"code\":\"1347\",\"name\":\"AZOMAX 500\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1347\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azomax-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (565, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3202\",\"code\":\"1348\",\"name\":\"TADOL 100\",\"unit\":\"1\",\"cost\":\"49.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1348\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (566, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3203\",\"code\":\"1349\",\"name\":\"VAGINAX CREAM\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1349\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaginax-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (567, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3204\",\"code\":\"1350\",\"name\":\"ZINNAT 250 TAB\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1350\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (568, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3205\",\"code\":\"1351\",\"name\":\"CIPROLEX TZ\",\"unit\":\"1\",\"cost\":\"4.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1351\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (569, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3206\",\"code\":\"1352\",\"name\":\"VITAFORCE\",\"unit\":\"1\",\"cost\":\"3.2300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1352\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitaforce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (570, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3207\",\"code\":\"1353\",\"name\":\"ZESTRIL 20MG\",\"unit\":\"1\",\"cost\":\"6.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1353\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zestril-20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (571, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3208\",\"code\":\"1354\",\"name\":\"ZESTRIL 10MG\",\"unit\":\"1\",\"cost\":\"2.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1354\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zestril-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (572, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3209\",\"code\":\"1355\",\"name\":\"CRESTOR 20\",\"unit\":\"1\",\"cost\":\"4.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1355\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (573, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3210\",\"code\":\"1356\",\"name\":\"NEUROBION\",\"unit\":\"1\",\"cost\":\"28.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1356\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neurobion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (574, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3211\",\"code\":\"1357\",\"name\":\"CO APPROVEL 150\\/12.5\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1357\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-approvel-150125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (575, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3212\",\"code\":\"1358\",\"name\":\"OSTEOCARE ORG TAB\",\"unit\":\"1\",\"cost\":\"23.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1358\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-org-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (576, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3213\",\"code\":\"1359\",\"name\":\"TOBRADEX EYE DROP\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1359\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tobradex-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (577, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3214\",\"code\":\"1360\",\"name\":\"ZINACEF 750\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1360\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinacef-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (578, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3215\",\"code\":\"1361\",\"name\":\"ANGEL CREAM\",\"unit\":\"1\",\"cost\":\"0.2300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1361\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (579, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3216\",\"code\":\"1362\",\"name\":\"CASTOR OIL\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1362\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castor-oil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (580, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3217\",\"code\":\"1363\",\"name\":\"ZINTAB 20MG 1000S\",\"unit\":\"1\",\"cost\":\"6.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1363\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-20mg-1000s1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (581, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3218\",\"code\":\"1364\",\"name\":\"COLDRELIEF CAPS\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1364\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coldrelief-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (582, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3219\",\"code\":\"1365\",\"name\":\"CIROTAMIN SRP\",\"unit\":\"1\",\"cost\":\"1.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1365\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cirotamin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (583, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3220\",\"code\":\"1366\",\"name\":\"TETRA OINT\",\"unit\":\"1\",\"cost\":\"1.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1366\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tetra-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (584, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3221\",\"code\":\"1367\",\"name\":\"STREPSILS ORG\",\"unit\":\"1\",\"cost\":\"19.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1367\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (585, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3222\",\"code\":\"1368\",\"name\":\"STREPTOL54\\/6\",\"unit\":\"1\",\"cost\":\"15.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1368\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol546\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (586, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3223\",\"code\":\"1369\",\"name\":\"VENTOLIN EVOHALER\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1369\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-evohaler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (587, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3224\",\"code\":\"1370\",\"name\":\"V-FIRM\",\"unit\":\"1\",\"cost\":\"5.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1370\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-firm1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (588, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3225\",\"code\":\"1371\",\"name\":\"WARFARIN 5MG\",\"unit\":\"1\",\"cost\":\"20.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1371\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (589, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3226\",\"code\":\"1372\",\"name\":\"WARFARIN 1MG\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1372\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-1mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (590, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3227\",\"code\":\"1373\",\"name\":\"TRES ORIX 250ML\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1373\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (591, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3228\",\"code\":\"1374\",\"name\":\"WELLMAN CAPS\",\"unit\":\"1\",\"cost\":\"26.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1374\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (592, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3229\",\"code\":\"1375\",\"name\":\"WELLWOMAN CAPS\",\"unit\":\"1\",\"cost\":\"5.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1375\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (593, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3230\",\"code\":\"1376\",\"name\":\"VENTOLIN INHALER\",\"unit\":\"1\",\"cost\":\"1.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1376\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-inhaler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (594, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3231\",\"code\":\"1377\",\"name\":\"WORMPLEX SUSP\",\"unit\":\"1\",\"cost\":\"2.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1377\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormplex-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (595, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3232\",\"code\":\"1378\",\"name\":\"VOLLTFAST 50MG\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"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\":\"volltfast-50mg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (596, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3233\",\"code\":\"1379\",\"name\":\"TOTHEMA\",\"unit\":\"1\",\"cost\":\"40.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1379\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tothema\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (597, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3234\",\"code\":\"1380\",\"name\":\"GVITHER INJ\",\"unit\":\"1\",\"cost\":\"51.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1380\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gvither-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (598, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3235\",\"code\":\"1381\",\"name\":\"PROVIRON\",\"unit\":\"1\",\"cost\":\"86.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1381\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proviron\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (599, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3236\",\"code\":\"1382\",\"name\":\"PROSTACARE\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1382\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostacare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (600, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3237\",\"code\":\"1383\",\"name\":\"ROCEPHINE INJ 2G\",\"unit\":\"1\",\"cost\":\"20.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1383\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rocephine-inj-2g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (601, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3238\",\"code\":\"1384\",\"name\":\"RHINATHIOL ADULT BLUE\",\"unit\":\"1\",\"cost\":\"2.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1384\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-blue\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (602, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3239\",\"code\":\"1385\",\"name\":\"RHINATHIOL INFANT PINK\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1385\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-infant-pink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (603, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3240\",\"code\":\"1386\",\"name\":\"PROXIMEXA CAPS 250\",\"unit\":\"1\",\"cost\":\"1.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1386\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (604, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3241\",\"code\":\"1387\",\"name\":\"LIPTON GREEN TEA\",\"unit\":\"1\",\"cost\":\"16.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1387\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipton-green-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (605, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3242\",\"code\":\"1388\",\"name\":\"LIGABA 75\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1388\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ligaba-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (606, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3243\",\"code\":\"1389\",\"name\":\"LEXSPORIN OINT\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1389\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexsporin-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (607, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3244\",\"code\":\"1390\",\"name\":\"LEXOTANIL 1.5MG\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1390\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexotanil-15mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (608, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3245\",\"code\":\"1391\",\"name\":\"LAMISIL TAB\",\"unit\":\"1\",\"cost\":\"0.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1391\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamisil-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (609, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3246\",\"code\":\"1392\",\"name\":\"SAMALIN JUNIOR\\/NON DROWSY\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1392\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-juniornon-drowsy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (610, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3247\",\"code\":\"1393\",\"name\":\"RAPINOL\",\"unit\":\"1\",\"cost\":\"9.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1393\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rapinol1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (611, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3248\",\"code\":\"1394\",\"name\":\"KOFOF BABY\",\"unit\":\"1\",\"cost\":\"67.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1394\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofof-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (612, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3249\",\"code\":\"1395\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1395\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (613, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3250\",\"code\":\"1396\",\"name\":\"TRITACE 2.5MG\",\"unit\":\"1\",\"cost\":\"4.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1396\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tritace-25mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (614, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3251\",\"code\":\"1397\",\"name\":\"PREDNISOLONE 5MG\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1397\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prednisolone-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (615, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3252\",\"code\":\"1398\",\"name\":\"NIFE DENK 20\",\"unit\":\"1\",\"cost\":\"29.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1398\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nife-denk-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (616, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3253\",\"code\":\"1399\",\"name\":\"ORELOX 100TAB\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1399\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-100tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (617, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3254\",\"code\":\"1400\",\"name\":\"OSTEOCARE SRP ORG\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1400\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (618, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3255\",\"code\":\"1401\",\"name\":\"PARA SRP M\\/G\",\"unit\":\"1\",\"cost\":\"0.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1401\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (619, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3256\",\"code\":\"1402\",\"name\":\"MAXMOX 500\",\"unit\":\"1\",\"cost\":\"10.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1402\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maxmox-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (620, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3257\",\"code\":\"1403\",\"name\":\"ORS\",\"unit\":\"1\",\"cost\":\"0.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1403\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ors\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (621, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3258\",\"code\":\"1404\",\"name\":\"PARA INFUSION\",\"unit\":\"1\",\"cost\":\"54.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1404\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-infusion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (622, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3259\",\"code\":\"1405\",\"name\":\"PARA TAB\",\"unit\":\"1\",\"cost\":\"19.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1405\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (623, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3260\",\"code\":\"1406\",\"name\":\"ROCEPHINE INJ 1G\",\"unit\":\"1\",\"cost\":\"9.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1406\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rocephine-inj-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (624, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3261\",\"code\":\"1407\",\"name\":\"CLAVULIN TAB\",\"unit\":\"1\",\"cost\":\"2.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1407\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clavulin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (625, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3262\",\"code\":\"1408\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"0.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1408\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint-15g1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (626, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3263\",\"code\":\"1409\",\"name\":\"AMPICLOX SUSP\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1409\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampiclox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (627, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3264\",\"code\":\"1410\",\"name\":\"SYRINGE 5CC\",\"unit\":\"1\",\"cost\":\"9.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1410\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"syringe-5cc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (628, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3265\",\"code\":\"1411\",\"name\":\"ASCORYL SRP\",\"unit\":\"1\",\"cost\":\"21.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1411\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascoryl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (629, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3266\",\"code\":\"1412\",\"name\":\"ZOXON 1000MG\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1412\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zoxon-1000mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (630, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3267\",\"code\":\"1413\",\"name\":\"ASOMEX 2.5MG\",\"unit\":\"1\",\"cost\":\"4.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1413\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asomex-25mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (631, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3268\",\"code\":\"1414\",\"name\":\"NORVASC 5MG\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1414\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"norvasc-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (632, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3269\",\"code\":\"1415\",\"name\":\"KOFFEX JUNIOR\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1415\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koffex-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (633, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3270\",\"code\":\"1416\",\"name\":\"NORMAL SALINE\",\"unit\":\"1\",\"cost\":\"0.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1416\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"normal-saline\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (634, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3271\",\"code\":\"1417\",\"name\":\"LIV 52 SRP\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1417\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liv-52-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (635, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3272\",\"code\":\"1418\",\"name\":\"CO-TRIMOXAXOLE TAB\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1418\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-trimoxaxole-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (636, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3273\",\"code\":\"1419\",\"name\":\"RONAXICAM\",\"unit\":\"1\",\"cost\":\"7.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1419\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronaxicam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (637, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3274\",\"code\":\"1420\",\"name\":\"GLYCERINE S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1420\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glycerine-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (638, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3275\",\"code\":\"1421\",\"name\":\"PROPRANOLOL 40MG 28,S\",\"unit\":\"1\",\"cost\":\"3.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1421\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"propranolol-40mg-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (639, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3276\",\"code\":\"1422\",\"name\":\"PROXEED WOMEN\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1422\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proxeed-women\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (640, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3277\",\"code\":\"1423\",\"name\":\"LIPITOR 10MG\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1423\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-10mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (641, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3278\",\"code\":\"1424\",\"name\":\"CHLO EAR DROP\",\"unit\":\"1\",\"cost\":\"1.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1424\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlo-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (642, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3279\",\"code\":\"1425\",\"name\":\"SE,CLEAR EYE\\/ EAR DROP\",\"unit\":\"1\",\"cost\":\"0.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1425\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (643, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3280\",\"code\":\"1426\",\"name\":\"SUPER APETI TAB\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1426\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"super-apeti-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (644, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3281\",\"code\":\"1427\",\"name\":\"METRONIDAZOLE 200 TAB\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1427\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metronidazole-200-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (645, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3282\",\"code\":\"1428\",\"name\":\"VASELINE LOTION\",\"unit\":\"1\",\"cost\":\"8.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1428\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaseline-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (646, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3283\",\"code\":\"1429\",\"name\":\"ROOTER\",\"unit\":\"1\",\"cost\":\"4.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1429\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (647, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3284\",\"code\":\"1430\",\"name\":\"SUNLIGHT LIQUID750ML\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1430\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sunlight-liquid750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (648, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3285\",\"code\":\"1431\",\"name\":\"LUX SHAKE ME SOAP\",\"unit\":\"1\",\"cost\":\"13.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1431\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lux-shake-me-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (649, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3286\",\"code\":\"1432\",\"name\":\"LIFEBOUY SOAP\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1432\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lifebouy-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (650, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3287\",\"code\":\"1433\",\"name\":\"TAMSULOSIN 400\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1433\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (651, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3288\",\"code\":\"1434\",\"name\":\"PREGNANCY TEST KIT\",\"unit\":\"1\",\"cost\":\"7.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1434\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregnancy-test-kit1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (652, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3289\",\"code\":\"1435\",\"name\":\"NEXIUM SACHET 10MG\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1435\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-sachet-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (653, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3290\",\"code\":\"1436\",\"name\":\"BECOATIN TAB\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1436\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"becoatin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (654, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3291\",\"code\":\"1437\",\"name\":\"SPIRIT EAR DROP\",\"unit\":\"1\",\"cost\":\"15.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1437\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (655, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3292\",\"code\":\"1438\",\"name\":\"VERMOX TAB\",\"unit\":\"1\",\"cost\":\"5.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1438\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vermox-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (656, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3293\",\"code\":\"1439\",\"name\":\"BELLS TEETHING MIX\",\"unit\":\"1\",\"cost\":\"0.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1439\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-teething-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (657, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3294\",\"code\":\"1440\",\"name\":\"SULPHUR OINT\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1440\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (658, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3295\",\"code\":\"1441\",\"name\":\"BELLS TEETHING MIX\",\"unit\":\"1\",\"cost\":\"8.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1441\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-teething-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (659, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3296\",\"code\":\"1442\",\"name\":\"VISCOF D\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1442\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viscof-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (660, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3297\",\"code\":\"1443\",\"name\":\"VISCOF S\",\"unit\":\"1\",\"cost\":\"1.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1443\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viscof-s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (661, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3298\",\"code\":\"1444\",\"name\":\"WORMPLEX TAB\",\"unit\":\"1\",\"cost\":\"11.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1444\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormplex-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (662, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3299\",\"code\":\"1445\",\"name\":\"ZESTRIL 5MG\",\"unit\":\"1\",\"cost\":\"0.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1445\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zestril-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (663, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3300\",\"code\":\"1446\",\"name\":\"ZINCOVIT SRP\",\"unit\":\"1\",\"cost\":\"0.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1446\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (664, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3301\",\"code\":\"1447\",\"name\":\"ZINTAB 20\",\"unit\":\"1\",\"cost\":\"1.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1447\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (665, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3302\",\"code\":\"1448\",\"name\":\"ZINTAB 10\",\"unit\":\"1\",\"cost\":\"5.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1448\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (666, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3303\",\"code\":\"1449\",\"name\":\"STREPTOL25\\/6\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1449\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (667, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3304\",\"code\":\"1450\",\"name\":\"POLYFER SRP 150ML\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1450\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-srp-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (668, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3305\",\"code\":\"1451\",\"name\":\"METRONIDAZOLE LETAP\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1451\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metronidazole-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (669, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3306\",\"code\":\"1452\",\"name\":\"AMOKSIKLAV 457 SUSP\",\"unit\":\"1\",\"cost\":\"9.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1452\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-457-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (670, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3307\",\"code\":\"1453\",\"name\":\"NEOHYCOLEX 10ML\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1453\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neohycolex-10ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (671, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3308\",\"code\":\"1454\",\"name\":\"CONGESTYL SRP\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1454\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"congestyl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (672, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3309\",\"code\":\"1455\",\"name\":\"SAMAILN ADULT\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1455\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samailn-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (673, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3310\",\"code\":\"1456\",\"name\":\"LIPITOR 20\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (674, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3311\",\"code\":\"1457\",\"name\":\"COLGATE SMILE BABY\",\"unit\":\"1\",\"cost\":\"70.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1457\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-smile-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (675, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3312\",\"code\":\"1458\",\"name\":\"ATACAND 8MG\",\"unit\":\"1\",\"cost\":\"18.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1458\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atacand-8mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (676, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3313\",\"code\":\"1459\",\"name\":\"PERFECTYL PLUS\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1459\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"perfectyl-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (677, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3314\",\"code\":\"1460\",\"name\":\"NIZORAL SHAMPOO\",\"unit\":\"1\",\"cost\":\"3.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1460\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-shampoo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (678, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3315\",\"code\":\"1461\",\"name\":\"metformin 500mg\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1461\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (679, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3316\",\"code\":\"1462\",\"name\":\"SEPTRI N SUSP\",\"unit\":\"1\",\"cost\":\"0.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1462\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"septri-n-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (680, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3317\",\"code\":\"1463\",\"name\":\"CO DIOVAN 160\\/12.5\",\"unit\":\"1\",\"cost\":\"18.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1463\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-diovan-160125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (681, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3318\",\"code\":\"1464\",\"name\":\"B COMPLEX TAB LOCAL\",\"unit\":\"1\",\"cost\":\"9.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1464\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"b-complex-tab-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (682, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3319\",\"code\":\"1465\",\"name\":\"BORGES 250ML\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1465\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (683, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3320\",\"code\":\"1466\",\"name\":\"VENTOLIN NEBULES\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1466\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-nebules\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (684, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3321\",\"code\":\"1467\",\"name\":\"SYRINGE 10MLS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1467\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"syringe-10mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (685, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3322\",\"code\":\"1468\",\"name\":\"SENACO\",\"unit\":\"1\",\"cost\":\"0.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1468\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"senaco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (686, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3323\",\"code\":\"1469\",\"name\":\"P- ALAXIN SUSP\",\"unit\":\"1\",\"cost\":\"2.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1469\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"p-alaxin-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (687, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3324\",\"code\":\"1470\",\"name\":\"ACTIVATED CHARCOAL\",\"unit\":\"1\",\"cost\":\"4.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1470\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"activated-charcoal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (688, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3325\",\"code\":\"1471\",\"name\":\"CARBAMAZIPINE\",\"unit\":\"1\",\"cost\":\"1.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1471\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbamazipine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (689, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3326\",\"code\":\"1472\",\"name\":\"LOFNAC GEL\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1472\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (690, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3327\",\"code\":\"1473\",\"name\":\"LOFNAC -P\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1473\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (691, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3328\",\"code\":\"1474\",\"name\":\"NAKLOFEN DUO\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1474\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (692, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3329\",\"code\":\"1475\",\"name\":\"OLFEN GEL20GM\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1475\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olfen-gel20gm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (693, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3330\",\"code\":\"1476\",\"name\":\"OLFEN GEL 50GM\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1476\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olfen-gel-50gm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (694, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3331\",\"code\":\"1477\",\"name\":\"DICLO INJ\",\"unit\":\"1\",\"cost\":\"6.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1477\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (695, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3332\",\"code\":\"1478\",\"name\":\"DORETA\",\"unit\":\"1\",\"cost\":\"33.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1478\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"doreta\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (696, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3333\",\"code\":\"1479\",\"name\":\"NEXIUM 40 14S\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1479\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-40-14s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (697, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3334\",\"code\":\"1480\",\"name\":\"FEROGLOBIN SRP\",\"unit\":\"1\",\"cost\":\"4.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1480\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (698, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3335\",\"code\":\"1481\",\"name\":\"HYDROCORT CREAM\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1481\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrocort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (699, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3336\",\"code\":\"1482\",\"name\":\"IBEX\",\"unit\":\"1\",\"cost\":\"0.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1482\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (700, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3337\",\"code\":\"1483\",\"name\":\"KOFOL LOZ\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1483\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofol-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (701, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3338\",\"code\":\"1484\",\"name\":\"KWIK ACTION\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1484\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kwik-action1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (702, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3339\",\"code\":\"1485\",\"name\":\"LADINAS\",\"unit\":\"1\",\"cost\":\"0.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1485\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ladinas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (703, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3340\",\"code\":\"1486\",\"name\":\"LEMPSIP\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1486\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lempsip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (704, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3341\",\"code\":\"1487\",\"name\":\"HONSTAN\",\"unit\":\"1\",\"cost\":\"32.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1487\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honstan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (705, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3342\",\"code\":\"1488\",\"name\":\"MINAVITA\",\"unit\":\"1\",\"cost\":\"6.0600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1488\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"minavita\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (706, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3343\",\"code\":\"1489\",\"name\":\"NAPROXEN EC\",\"unit\":\"1\",\"cost\":\"1.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1489\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"naproxen-ec\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (707, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3344\",\"code\":\"1490\",\"name\":\"NAPROX ECL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1490\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (708, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3345\",\"code\":\"1491\",\"name\":\"NUCLEO CMP\",\"unit\":\"1\",\"cost\":\"39.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1491\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nucleo-cmp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (709, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3346\",\"code\":\"1492\",\"name\":\"O- YES FEMININE WASH\",\"unit\":\"1\",\"cost\":\"8.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1492\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"o-yes-feminine-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (710, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3347\",\"code\":\"1493\",\"name\":\"FELDENE 20MG\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1493\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feldene-20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (711, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3348\",\"code\":\"1494\",\"name\":\"PMF VASELINE\",\"unit\":\"1\",\"cost\":\"1.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1494\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pmf-vaseline\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (712, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3349\",\"code\":\"1495\",\"name\":\"CALAMINE OINT\",\"unit\":\"1\",\"cost\":\"28.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1495\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (713, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3350\",\"code\":\"1496\",\"name\":\"SOLUBLE ASP\",\"unit\":\"1\",\"cost\":\"6.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1496\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-asp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (714, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3351\",\"code\":\"1497\",\"name\":\"SUDOCREAM125\",\"unit\":\"1\",\"cost\":\"0.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1497\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudocream125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (715, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3352\",\"code\":\"1498\",\"name\":\"WELWOMAN DRINK\",\"unit\":\"1\",\"cost\":\"25.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1498\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welwoman-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (716, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3353\",\"code\":\"1499\",\"name\":\"GAUZE 7.5cm\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1499\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gauze-75cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (717, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3354\",\"code\":\"1500\",\"name\":\"BENILIN PAED\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1500\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-paed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (718, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3355\",\"code\":\"1501\",\"name\":\"COTTON BALLS\",\"unit\":\"1\",\"cost\":\"1.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1501\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-balls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (719, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3356\",\"code\":\"1502\",\"name\":\"DAN RUBB\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1502\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dan-rubb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (720, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3357\",\"code\":\"1503\",\"name\":\"DICLOLEX TAB\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1503\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (721, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3358\",\"code\":\"1504\",\"name\":\"EPIDERM 15G\",\"unit\":\"1\",\"cost\":\"3.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1504\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-15g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (722, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3359\",\"code\":\"1505\",\"name\":\"EPIDERM 30G\",\"unit\":\"1\",\"cost\":\"6.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1505\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (723, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3360\",\"code\":\"1506\",\"name\":\"EMGIFLOX SUSP\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1506\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"emgiflox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (724, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3361\",\"code\":\"1507\",\"name\":\"FLEMEX JNR\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1507\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flemex-jnr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (725, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3362\",\"code\":\"1508\",\"name\":\"FUNBACT\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1508\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"funbact\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (726, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3363\",\"code\":\"1509\",\"name\":\"GENTA-K\",\"unit\":\"1\",\"cost\":\"1.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1509\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"genta-k\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (727, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3364\",\"code\":\"1510\",\"name\":\"METHYLATED SPIRIT S\\/S\",\"unit\":\"1\",\"cost\":\"4.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1510\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (728, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3365\",\"code\":\"1511\",\"name\":\"GYPRONE TAB\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1511\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (729, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3366\",\"code\":\"1512\",\"name\":\"HAEMOGLOBIN M\\/G\",\"unit\":\"1\",\"cost\":\"8.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1512\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (730, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3367\",\"code\":\"1513\",\"name\":\"HAEMOGLOBIN LETAP\",\"unit\":\"1\",\"cost\":\"2.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1513\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (731, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3368\",\"code\":\"1514\",\"name\":\"HYDROCORT CREAM\",\"unit\":\"1\",\"cost\":\"10.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1514\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrocort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (732, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3369\",\"code\":\"1515\",\"name\":\"IBUCAP SHALINA B\\/S\",\"unit\":\"1\",\"cost\":\"26.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap-shalina-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (733, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3370\",\"code\":\"1516\",\"name\":\"IMODIUM\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1516\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imodium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (734, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3371\",\"code\":\"1517\",\"name\":\"SPORANOX\",\"unit\":\"1\",\"cost\":\"4.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1517\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (735, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3372\",\"code\":\"1518\",\"name\":\"KAMAGRA 100\",\"unit\":\"1\",\"cost\":\"1.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1518\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamagra-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (736, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3373\",\"code\":\"1519\",\"name\":\"METASOL SOAP\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1519\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metasol-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (737, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3374\",\"code\":\"1520\",\"name\":\"NAT-B\",\"unit\":\"1\",\"cost\":\"1.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1520\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nat-b\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (738, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3375\",\"code\":\"1521\",\"name\":\"PREGASAFE 75\",\"unit\":\"1\",\"cost\":\"4.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1521\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (739, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3376\",\"code\":\"1522\",\"name\":\"DANEGAN SRP\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1522\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"danegan-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (740, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3377\",\"code\":\"1523\",\"name\":\"SEDALYN SRP PAED\",\"unit\":\"1\",\"cost\":\"1.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1523\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sedalyn-srp-paed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (741, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3378\",\"code\":\"1524\",\"name\":\"PLASTER 5CM\",\"unit\":\"1\",\"cost\":\"4.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1524\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-5cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (742, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3379\",\"code\":\"1525\",\"name\":\"AJANTA STAMINA\",\"unit\":\"1\",\"cost\":\"7.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1525\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ajanta-stamina\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (743, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3380\",\"code\":\"1526\",\"name\":\"PERMOXL SRP\",\"unit\":\"1\",\"cost\":\"6.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1526\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"permoxl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (744, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3381\",\"code\":\"1527\",\"name\":\"AQUEOS CREAM\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1527\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqueos-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (745, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3382\",\"code\":\"1528\",\"name\":\"AUNTY MARY\",\"unit\":\"1\",\"cost\":\"29.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1528\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aunty-mary\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (746, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3383\",\"code\":\"1529\",\"name\":\"CETAPOL SRP\",\"unit\":\"1\",\"cost\":\"4.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1529\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (747, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3384\",\"code\":\"1530\",\"name\":\"CIPRODENK\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1530\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprodenk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (748, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3385\",\"code\":\"1531\",\"name\":\"DERMIRON PLUS\",\"unit\":\"1\",\"cost\":\"21.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1531\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (749, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3386\",\"code\":\"1532\",\"name\":\"DOXYCYCLINE\",\"unit\":\"1\",\"cost\":\"46.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1532\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"doxycycline\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (750, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3387\",\"code\":\"1533\",\"name\":\"FEMFRESH\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1533\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"femfresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (751, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3388\",\"code\":\"1534\",\"name\":\"IDEOS\",\"unit\":\"1\",\"cost\":\"4.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1534\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ideos1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (752, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3389\",\"code\":\"1535\",\"name\":\"COTTON BUD\",\"unit\":\"1\",\"cost\":\"4.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1535\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:28:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (753, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3390\",\"code\":\"1536\",\"name\":\"KETAZOLE CREAM\",\"unit\":\"1\",\"cost\":\"21.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1536\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ketazole-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (754, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3391\",\"code\":\"1537\",\"name\":\"KETAZOLE TAB\",\"unit\":\"1\",\"cost\":\"34.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1537\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ketazole-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (755, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3392\",\"code\":\"1538\",\"name\":\"KY JELLY50G\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1538\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ky-jelly50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (756, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3393\",\"code\":\"1539\",\"name\":\"KY JELLY 75G\",\"unit\":\"1\",\"cost\":\"4.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1539\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ky-jelly-75g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (757, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3394\",\"code\":\"1540\",\"name\":\"LA WASH\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1540\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"la-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (758, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3395\",\"code\":\"1541\",\"name\":\"METAGYL SRP\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metagyl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (759, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3396\",\"code\":\"1542\",\"name\":\"NIFEDENK 10\",\"unit\":\"1\",\"cost\":\"17.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1542\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifedenk-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (760, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3397\",\"code\":\"1543\",\"name\":\"NIGHT NURSE CAPS\",\"unit\":\"1\",\"cost\":\"0.5200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1543\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"night-nurse-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (761, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3398\",\"code\":\"1544\",\"name\":\"TAMPAX\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1544\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tampax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (762, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3399\",\"code\":\"1545\",\"name\":\"VALUPAC VIT C500S\",\"unit\":\"1\",\"cost\":\"40.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1545\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"valupac-vit-c500s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (763, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3400\",\"code\":\"1546\",\"name\":\"VITA POWER SRP\",\"unit\":\"1\",\"cost\":\"3.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1546\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vita-power-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (764, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3401\",\"code\":\"1547\",\"name\":\"BENILIN FOR FLU\",\"unit\":\"1\",\"cost\":\"143.5700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1547\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-for-flu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (765, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3402\",\"code\":\"1548\",\"name\":\"ANUSOL SUPP\",\"unit\":\"1\",\"cost\":\"2.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1548\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (766, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3403\",\"code\":\"1549\",\"name\":\"ZITHROMAX CAPS\",\"unit\":\"1\",\"cost\":\"68.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1549\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zithromax-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (767, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3404\",\"code\":\"1550\",\"name\":\"DULCOLAX SUPP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1550\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dulcolax-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (768, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3405\",\"code\":\"1551\",\"name\":\"ZINNAT SUSP100ML\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1551\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (769, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3406\",\"code\":\"1552\",\"name\":\"CIPROLEX TAB\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1552\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (770, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3407\",\"code\":\"1553\",\"name\":\"CIPAC EYE DROP\",\"unit\":\"1\",\"cost\":\"12.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1553\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (771, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3408\",\"code\":\"1554\",\"name\":\"CIPROLEX EYE DROP\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1554\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (772, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3409\",\"code\":\"1555\",\"name\":\"DECATYLINE LOZ\",\"unit\":\"1\",\"cost\":\"6.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1555\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"decatyline-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (773, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3410\",\"code\":\"1556\",\"name\":\"DIABETMINE\",\"unit\":\"1\",\"cost\":\"11.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1556\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diabetmine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (774, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3411\",\"code\":\"1557\",\"name\":\"MAJOR EPHEDRINE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1557\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"major-ephedrine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (775, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3412\",\"code\":\"1558\",\"name\":\"FLUCONA DENK\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1558\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucona-denk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (776, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3413\",\"code\":\"1559\",\"name\":\"JET 2\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1559\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (777, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3414\",\"code\":\"1560\",\"name\":\"LENOR\",\"unit\":\"1\",\"cost\":\"5.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1560\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lenor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (778, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3415\",\"code\":\"1561\",\"name\":\"LYDIA\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1561\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (779, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3416\",\"code\":\"1562\",\"name\":\"LEVON 2\",\"unit\":\"1\",\"cost\":\"2.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1562\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"levon-21\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (780, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3417\",\"code\":\"1563\",\"name\":\"METRO SUSP LETAP #MGP\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1563\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-susp-letap-mgp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (781, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3418\",\"code\":\"1564\",\"name\":\"CYTOTEC\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1564\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cytotec\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (782, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3419\",\"code\":\"1565\",\"name\":\"PILEX TAB\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1565\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilex-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (783, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3420\",\"code\":\"1566\",\"name\":\"SE,CLEAR\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1566\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (784, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3421\",\"code\":\"1567\",\"name\":\"SEFLOX EYE DROP\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1567\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (785, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3422\",\"code\":\"1568\",\"name\":\"BX SRP100ML\",\"unit\":\"1\",\"cost\":\"2.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1568\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bx-srp100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (786, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3423\",\"code\":\"1569\",\"name\":\"BX SRP 200\",\"unit\":\"1\",\"cost\":\"2.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1569\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bx-srp-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (787, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3424\",\"code\":\"1570\",\"name\":\"HISTAZINE SRP\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1570\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"histazine-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (788, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3425\",\"code\":\"1571\",\"name\":\"RHIZINE SRP\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1571\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhizine-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (789, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3426\",\"code\":\"1572\",\"name\":\"PIRITON TAB\",\"unit\":\"1\",\"cost\":\"40.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1572\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (790, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3427\",\"code\":\"1573\",\"name\":\"PRETTY LADY LINER\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1573\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pretty-lady-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (791, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3428\",\"code\":\"1574\",\"name\":\"AUGMENTIN SRP 457\",\"unit\":\"1\",\"cost\":\"5.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1574\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (792, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3429\",\"code\":\"1575\",\"name\":\"DEXEL 2MG\",\"unit\":\"1\",\"cost\":\"10.3700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1575\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexel-2mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (793, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3430\",\"code\":\"1576\",\"name\":\"DICLO DENK 50\",\"unit\":\"1\",\"cost\":\"1.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1576\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (794, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3431\",\"code\":\"1577\",\"name\":\"DICLO DENK 100 TAB\",\"unit\":\"1\",\"cost\":\"5.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1577\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-100-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (795, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3432\",\"code\":\"1578\",\"name\":\"DICLO DENK SUPP\",\"unit\":\"1\",\"cost\":\"10.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1578\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (796, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3433\",\"code\":\"1579\",\"name\":\"DREZ OINT 10MG\",\"unit\":\"1\",\"cost\":\"5.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1579\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-oint-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (797, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3434\",\"code\":\"1580\",\"name\":\"DREZ OINT 30MG\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1580\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-oint-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (798, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3435\",\"code\":\"1581\",\"name\":\"DREZ POWDER\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1581\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (799, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3436\",\"code\":\"1582\",\"name\":\"DNS\",\"unit\":\"1\",\"cost\":\"6.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1582\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dns\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (800, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3437\",\"code\":\"1583\",\"name\":\"DREZ SOLTN 30ML\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1583\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-soltn-30ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (801, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3438\",\"code\":\"1584\",\"name\":\"DUROL ADULT\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1584\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (802, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3439\",\"code\":\"1585\",\"name\":\"DUROL JUNR\",\"unit\":\"1\",\"cost\":\"5.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1585\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-junr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (803, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3440\",\"code\":\"1586\",\"name\":\"DYMOL TAB\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1586\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (804, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3441\",\"code\":\"1587\",\"name\":\"MYCOVIN 500\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1587\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (805, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3442\",\"code\":\"1588\",\"name\":\"KIDICARE SRP\",\"unit\":\"1\",\"cost\":\"19.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1588\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidicare-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (806, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3443\",\"code\":\"1589\",\"name\":\"MENTODEX SRP S\\/S\",\"unit\":\"1\",\"cost\":\"1.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1589\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentodex-srp-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (807, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3444\",\"code\":\"1590\",\"name\":\"DAKTARIN CREAM\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1590\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daktarin-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (808, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3445\",\"code\":\"1591\",\"name\":\"PARA UK\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1591\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (809, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3446\",\"code\":\"1592\",\"name\":\"EFPAC TAB\",\"unit\":\"1\",\"cost\":\"1.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1592\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"efpac-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (810, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3447\",\"code\":\"1593\",\"name\":\"APETAMIN SRP\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1593\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apetamin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (811, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3448\",\"code\":\"1594\",\"name\":\"GEBEDOL\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1594\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (812, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3449\",\"code\":\"1595\",\"name\":\"GEBEDOL EXTRA\",\"unit\":\"1\",\"cost\":\"11.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1595\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (813, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3450\",\"code\":\"1596\",\"name\":\"LISTRINE 250\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1596\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listrine-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (814, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3451\",\"code\":\"1597\",\"name\":\"LISTRINE SMART\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1597\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listrine-smart\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (815, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3452\",\"code\":\"1598\",\"name\":\"CETAPOL PM\",\"unit\":\"1\",\"cost\":\"21.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1598\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (816, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3453\",\"code\":\"1599\",\"name\":\"VALUPAk VIT C 1000\",\"unit\":\"1\",\"cost\":\"5.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1599\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (817, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3454\",\"code\":\"1600\",\"name\":\"FLAGENTYL\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1600\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagentyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (818, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3455\",\"code\":\"1601\",\"name\":\"DICLO DENK 50\",\"unit\":\"1\",\"cost\":\"9.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1601\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (819, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3456\",\"code\":\"1602\",\"name\":\"FLEMEX ADULT\",\"unit\":\"1\",\"cost\":\"0.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1602\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flemex-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (820, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3457\",\"code\":\"1603\",\"name\":\"BELLS CALAMINE\",\"unit\":\"1\",\"cost\":\"1.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1603\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-calamine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (821, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3458\",\"code\":\"1604\",\"name\":\"GAUZE 10CM\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1604\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gauze-10cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (822, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3459\",\"code\":\"1605\",\"name\":\"GAUZE  15CM\",\"unit\":\"1\",\"cost\":\"31.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1605\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gauze-15cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (823, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3460\",\"code\":\"1606\",\"name\":\"PLASTER 10CM\",\"unit\":\"1\",\"cost\":\"19.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1606\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-10cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (824, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3461\",\"code\":\"1607\",\"name\":\"CALPOL 6+\",\"unit\":\"1\",\"cost\":\"7.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1607\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (825, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3462\",\"code\":\"1608\",\"name\":\"FOLIGROW CAPS\",\"unit\":\"1\",\"cost\":\"13.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1608\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foligrow-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (826, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3463\",\"code\":\"1609\",\"name\":\"KAMACLOX\",\"unit\":\"1\",\"cost\":\"12.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1609\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamaclox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (827, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3464\",\"code\":\"1610\",\"name\":\"PREGASAFE 75\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1610\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (828, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3465\",\"code\":\"1611\",\"name\":\"IMODIUM\",\"unit\":\"1\",\"cost\":\"4.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1611\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imodium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (829, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3466\",\"code\":\"1612\",\"name\":\"DANRUBB\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1612\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"danrubb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (830, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3467\",\"code\":\"1613\",\"name\":\"SEDALIN JNR\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1613\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sedalin-jnr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (831, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3468\",\"code\":\"1614\",\"name\":\"PENICILLIN INJ\",\"unit\":\"1\",\"cost\":\"4.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1614\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penicillin-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (832, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3469\",\"code\":\"1615\",\"name\":\"SEFLOX\",\"unit\":\"1\",\"cost\":\"3.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1615\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (833, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3470\",\"code\":\"1616\",\"name\":\"MYCOVIN 500\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1616\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (834, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3471\",\"code\":\"1617\",\"name\":\"LADINAS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1617\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ladinas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (835, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3472\",\"code\":\"1618\",\"name\":\"HONSTAN\",\"unit\":\"1\",\"cost\":\"4.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1618\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honstan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (836, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3473\",\"code\":\"1619\",\"name\":\"COLGATE HERB\",\"unit\":\"1\",\"cost\":\"6.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1619\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-herb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (837, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3474\",\"code\":\"1620\",\"name\":\"SULFER OINT\",\"unit\":\"1\",\"cost\":\"3.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1620\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sulfer-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (838, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3475\",\"code\":\"1621\",\"name\":\"WELMAN DRINK\",\"unit\":\"1\",\"cost\":\"0.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1621\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welman-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (839, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3476\",\"code\":\"1622\",\"name\":\"MERCY CREAM\",\"unit\":\"1\",\"cost\":\"0.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1622\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mercy-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (840, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3477\",\"code\":\"1623\",\"name\":\"BRUFEN 400\",\"unit\":\"1\",\"cost\":\"22.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1623\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brufen-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (841, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3478\",\"code\":\"1624\",\"name\":\"RHIZON TAB\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1624\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhizon-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (842, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3479\",\"code\":\"1625\",\"name\":\"POSTINOR\",\"unit\":\"1\",\"cost\":\"5.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1625\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (843, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3480\",\"code\":\"1626\",\"name\":\"GENECURE 442\",\"unit\":\"1\",\"cost\":\"6.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1626\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"genecure-442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (844, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3481\",\"code\":\"1627\",\"name\":\"EFPAC JUNIOR\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1627\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"efpac-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (845, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3482\",\"code\":\"1628\",\"name\":\"TEEDAR\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1628\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (846, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3483\",\"code\":\"1629\",\"name\":\"4.85AMLODIPINE TEVA 10\",\"unit\":\"1\",\"cost\":\"35.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1629\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"485amlodipine-teva-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (847, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3484\",\"code\":\"1630\",\"name\":\"AMOKSIKLAV1G\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1630\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (848, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3485\",\"code\":\"1631\",\"name\":\"COARTEM 80\\/480\",\"unit\":\"1\",\"cost\":\"0.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1631\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coartem-80480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (849, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3486\",\"code\":\"1632\",\"name\":\"CYPRODINE CAPS\",\"unit\":\"1\",\"cost\":\"0.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1632\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (850, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3487\",\"code\":\"1633\",\"name\":\"MARTINS PLAIN\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1633\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plain\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (851, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3488\",\"code\":\"1634\",\"name\":\"MARTINS ORANGE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1634\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (852, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3489\",\"code\":\"1635\",\"name\":\"MALARIA TEST KIT\",\"unit\":\"1\",\"cost\":\"1.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1635\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-test-kit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (853, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3490\",\"code\":\"1636\",\"name\":\"MALARIA CHECK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1636\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-check\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (854, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3491\",\"code\":\"1637\",\"name\":\"STREPTOL 12S\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1637\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol-12s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (855, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3492\",\"code\":\"1638\",\"name\":\"COTTON PIECES\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1638\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pieces\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (856, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3493\",\"code\":\"1639\",\"name\":\"YAZZ PAD\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1639\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yazz-pad1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (857, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3494\",\"code\":\"1640\",\"name\":\"YAZZ LINER\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1640\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yazz-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (858, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3495\",\"code\":\"1641\",\"name\":\"ALWAYS MAXI\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1641\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-maxi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (859, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3496\",\"code\":\"1642\",\"name\":\"ALWAYS DOUBLE\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1642\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-double\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (860, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3497\",\"code\":\"1643\",\"name\":\"ALWAYS SINGLE\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1643\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-single\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (861, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3498\",\"code\":\"1644\",\"name\":\"FAYTEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1644\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"faytex1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (862, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3499\",\"code\":\"1645\",\"name\":\"SOFTCARE WIPES\",\"unit\":\"1\",\"cost\":\"1.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1645\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softcare-wipes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (863, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3500\",\"code\":\"1646\",\"name\":\"FRESS\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1646\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fress\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (864, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3501\",\"code\":\"1647\",\"name\":\"HANKERCHIEF\",\"unit\":\"1\",\"cost\":\"0.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1647\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hankerchief\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (865, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3502\",\"code\":\"1648\",\"name\":\"MENTOS GUM ICE\",\"unit\":\"1\",\"cost\":\"0.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1648\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-gum-ice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (866, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3503\",\"code\":\"1649\",\"name\":\"MENTOS GUM\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1649\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-gum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (867, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3504\",\"code\":\"1650\",\"name\":\"MENTOS FRESH ACTION\",\"unit\":\"1\",\"cost\":\"45.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1650\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-fresh-action\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (868, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3505\",\"code\":\"1651\",\"name\":\"RUBBING ALC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1651\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-alc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (869, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3506\",\"code\":\"1652\",\"name\":\"PEPTO BISMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (870, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3507\",\"code\":\"1653\",\"name\":\"PEPSODENT S\\/S\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1653\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (871, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3508\",\"code\":\"1654\",\"name\":\"SCISSORS\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1654\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"scissors\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (872, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3509\",\"code\":\"1655\",\"name\":\"IMMUNACE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1655\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (873, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3510\",\"code\":\"1656\",\"name\":\"NUGEL -O\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1656\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-o\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (874, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3511\",\"code\":\"1657\",\"name\":\"CREEP BANDAGE15CM\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1657\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-bandage15cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (875, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3512\",\"code\":\"1658\",\"name\":\"CREEP BANDAGE 10CM\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1658\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-bandage-10cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (876, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3513\",\"code\":\"1659\",\"name\":\"CREEP BANDAGE 7.5CM\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1659\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-bandage-75cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (877, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3514\",\"code\":\"1660\",\"name\":\"GLYCERINE B\\/S\",\"unit\":\"1\",\"cost\":\"3.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1660\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glycerine-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (878, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3515\",\"code\":\"1661\",\"name\":\"DYNEWELL SRP\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1661\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (879, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3516\",\"code\":\"1662\",\"name\":\"ENTRAMOL\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1662\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (880, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3517\",\"code\":\"1663\",\"name\":\"KISS\",\"unit\":\"1\",\"cost\":\"7.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1663\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kiss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (881, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3518\",\"code\":\"1664\",\"name\":\"FIESTA CONCOM\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1664\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fiesta-concom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (882, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3519\",\"code\":\"1665\",\"name\":\"DUREX COND\",\"unit\":\"1\",\"cost\":\"7.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1665\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durex-cond\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (883, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3520\",\"code\":\"1666\",\"name\":\"MALAFAN\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1666\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malafan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (884, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3521\",\"code\":\"1667\",\"name\":\"FOLIC ACID 28S\",\"unit\":\"1\",\"cost\":\"17.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1667\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (885, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3522\",\"code\":\"1668\",\"name\":\"VIROL\",\"unit\":\"1\",\"cost\":\"33.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1668\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"virol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (886, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3523\",\"code\":\"1669\",\"name\":\"FOLIGROW SRP\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1669\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foligrow-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (887, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3524\",\"code\":\"1670\",\"name\":\"CALPOL 2+\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1670\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (888, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3525\",\"code\":\"1671\",\"name\":\"SPIRIT B\\/S\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1671\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (889, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3526\",\"code\":\"1672\",\"name\":\"HYDROGEN LOCAL\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1672\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrogen-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (890, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3527\",\"code\":\"1673\",\"name\":\"ZULU\",\"unit\":\"1\",\"cost\":\"3.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1673\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (891, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3528\",\"code\":\"1674\",\"name\":\"CHOCHO ABS\",\"unit\":\"1\",\"cost\":\"19.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1674\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocho-abs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (892, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3529\",\"code\":\"1675\",\"name\":\"CHOCHO CREAM\",\"unit\":\"1\",\"cost\":\"82.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1675\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocho-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (893, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3530\",\"code\":\"1676\",\"name\":\"AMOKSIKLAV 625\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1676\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-625\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (894, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3531\",\"code\":\"1677\",\"name\":\"ZINNAT 500\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1677\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (895, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3532\",\"code\":\"1678\",\"name\":\"MMT\",\"unit\":\"1\",\"cost\":\"10.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1678\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mmt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (896, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3533\",\"code\":\"1679\",\"name\":\"VIT E-SOVIT\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1679\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-sovit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (897, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3534\",\"code\":\"1680\",\"name\":\"ACIRCLOVIR 400MG TAB\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1680\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acirclovir-400mg-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (898, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3535\",\"code\":\"1681\",\"name\":\"TEARS NATURAL\",\"unit\":\"1\",\"cost\":\"2.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1681\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (899, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3536\",\"code\":\"1682\",\"name\":\"GV PAINT\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1682\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-paint1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (900, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3537\",\"code\":\"1683\",\"name\":\"FUMET\",\"unit\":\"1\",\"cost\":\"1.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1683\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fumet\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (901, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3538\",\"code\":\"1684\",\"name\":\"SILVERZINE\",\"unit\":\"1\",\"cost\":\"12.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1684\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"silverzine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (902, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3539\",\"code\":\"1685\",\"name\":\"MYCOVIN 125\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1685\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (903, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3540\",\"code\":\"1686\",\"name\":\"ACTIFED SRP\",\"unit\":\"1\",\"cost\":\"11.1900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1686\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actifed-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (904, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3541\",\"code\":\"1687\",\"name\":\"APDYL H B\\/S\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1687\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (905, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3542\",\"code\":\"1688\",\"name\":\"ZUBES EXP\",\"unit\":\"1\",\"cost\":\"7.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1688\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-exp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (906, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3543\",\"code\":\"1689\",\"name\":\"LETALIN\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1689\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letalin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (907, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3544\",\"code\":\"1690\",\"name\":\"LUEX BABY COUGH\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1690\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cough1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (908, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3545\",\"code\":\"1691\",\"name\":\"GV FLUC CAPS\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1691\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-fluc-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (909, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3546\",\"code\":\"1692\",\"name\":\"XIN A\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1692\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xin-a\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (910, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3547\",\"code\":\"1693\",\"name\":\"DYTEX EYE\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1693\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dytex-eye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (911, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3548\",\"code\":\"1694\",\"name\":\"MIST POT SIT\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1694\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mist-pot-sit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (912, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3549\",\"code\":\"1695\",\"name\":\"EXPECT SED\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1695\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"expect-sed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (913, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3550\",\"code\":\"1696\",\"name\":\"PENICILLIN OINT\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1696\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penicillin-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (914, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3551\",\"code\":\"1697\",\"name\":\"GRISON\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1697\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"grison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (915, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3552\",\"code\":\"1698\",\"name\":\"BECOATIN SRP\",\"unit\":\"1\",\"cost\":\"13.0100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1698\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"becoatin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (916, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3553\",\"code\":\"1699\",\"name\":\"LUFART SUSP\",\"unit\":\"1\",\"cost\":\"0.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1699\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (917, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3554\",\"code\":\"1700\",\"name\":\"LUFART TAB\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1700\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (918, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3555\",\"code\":\"1701\",\"name\":\"PENICILLIN TAB\",\"unit\":\"1\",\"cost\":\"4.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1701\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penicillin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (919, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3556\",\"code\":\"1702\",\"name\":\"PANADOL PLAIN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1702\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panadol-plain\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (920, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3557\",\"code\":\"1703\",\"name\":\"KAMAGRA50\",\"unit\":\"1\",\"cost\":\"3.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1703\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamagra50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (921, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3558\",\"code\":\"1704\",\"name\":\"DRAGON CAPS\",\"unit\":\"1\",\"cost\":\"7.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1704\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dragon-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (922, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3559\",\"code\":\"1705\",\"name\":\"GOGYNAX\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1705\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gogynax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (923, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3560\",\"code\":\"1706\",\"name\":\"CANDID V6\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1706\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (924, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3561\",\"code\":\"1707\",\"name\":\"FLUREST\",\"unit\":\"1\",\"cost\":\"3.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1707\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flurest\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (925, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3562\",\"code\":\"1708\",\"name\":\"HUICHUM CAPS\",\"unit\":\"1\",\"cost\":\"2.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1708\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huichum-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (926, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3563\",\"code\":\"1709\",\"name\":\"KIDIVITE S\\/S\",\"unit\":\"1\",\"cost\":\"1.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1709\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidivite-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (927, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3564\",\"code\":\"1710\",\"name\":\"COMMIT 50\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1710\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"commit-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (928, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3565\",\"code\":\"1711\",\"name\":\"MALIN TAB\",\"unit\":\"1\",\"cost\":\"11.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1711\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (929, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3566\",\"code\":\"1712\",\"name\":\"CARVADILOL TEVA\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1712\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carvadilol-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (930, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3567\",\"code\":\"1713\",\"name\":\"NIFECARD 60\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1713\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifecard-60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (931, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3568\",\"code\":\"1714\",\"name\":\"LISINOPRIL 10\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1714\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (932, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3569\",\"code\":\"1715\",\"name\":\"DIGOXIN 125\",\"unit\":\"1\",\"cost\":\"20.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1715\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (933, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3570\",\"code\":\"1716\",\"name\":\"FUROSEMIDE 20 CRESCENT\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1716\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20-crescent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (934, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3571\",\"code\":\"1717\",\"name\":\"LIQUIFRUITA S\\/S\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1717\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liquifruita-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (935, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3572\",\"code\":\"1718\",\"name\":\"STARWIN B\\/S\",\"unit\":\"1\",\"cost\":\"4.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1718\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (936, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3573\",\"code\":\"1719\",\"name\":\"STARWIN S\\/S\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1719\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (937, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3574\",\"code\":\"1720\",\"name\":\"CLOMID 50\",\"unit\":\"1\",\"cost\":\"0.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1720\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (938, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3575\",\"code\":\"1721\",\"name\":\"AMOXYCLIN 500 BLISS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1721\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxyclin-500-bliss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (939, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3576\",\"code\":\"1722\",\"name\":\"~AMOXICILIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"0.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1722\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxicilin-250-bliss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (940, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3577\",\"code\":\"1723\",\"name\":\"SECURE\",\"unit\":\"1\",\"cost\":\"1.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1723\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"secure\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (941, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3578\",\"code\":\"1724\",\"name\":\"AMOXYCILLIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1724\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-250-bliss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (942, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3579\",\"code\":\"1725\",\"name\":\"FLUCOX CAPS 250\",\"unit\":\"1\",\"cost\":\"2.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1725\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucox-caps-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (943, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3580\",\"code\":\"1726\",\"name\":\"DOMI 10\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1726\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (944, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3581\",\"code\":\"1727\",\"name\":\"DOMI 30\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1727\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (945, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3582\",\"code\":\"1728\",\"name\":\"MIGHTY P B\\/S\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1728\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (946, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3583\",\"code\":\"1729\",\"name\":\"MIGHTY P S\'S\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1729\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (947, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3584\",\"code\":\"1730\",\"name\":\"KINGDOM G BITS\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1730\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-g-bits\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (948, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3585\",\"code\":\"1731\",\"name\":\"VEINE CAPS\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1731\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"veine-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (949, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3586\",\"code\":\"1732\",\"name\":\"TODAY MAN\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1732\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"today-man\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (950, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3587\",\"code\":\"1733\",\"name\":\"YAFO MAN\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1733\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (951, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3588\",\"code\":\"1734\",\"name\":\"GIVERS P CAPS\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1734\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (952, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3589\",\"code\":\"1735\",\"name\":\"GIVERS KOO CAPS\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1735\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (953, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3590\",\"code\":\"1736\",\"name\":\"SIBIWOMAN\",\"unit\":\"1\",\"cost\":\"10.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1736\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sibiwoman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (954, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3591\",\"code\":\"1737\",\"name\":\"ADOM W,G CAPS\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1737\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wg-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (955, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3592\",\"code\":\"1738\",\"name\":\"ADOM W,G SRP\",\"unit\":\"1\",\"cost\":\"15.5200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1738\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wg-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (956, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3593\",\"code\":\"1739\",\"name\":\"TAABEA MIX\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1739\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (957, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3594\",\"code\":\"1740\",\"name\":\"ROOTER TYTONIC\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1740\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tytonic1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (958, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3595\",\"code\":\"1741\",\"name\":\"TIME HERBAL\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1741\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (959, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3596\",\"code\":\"1742\",\"name\":\"AGBEVE TONIC\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1742\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (960, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3597\",\"code\":\"1743\",\"name\":\"AGBEVE FEVER\",\"unit\":\"1\",\"cost\":\"11.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1743\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-fever\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (961, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3598\",\"code\":\"1744\",\"name\":\"ADOM KOO SRP\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1744\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-koo-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (962, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3599\",\"code\":\"1745\",\"name\":\"ADOM KOO CAPS\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1745\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-koo-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (963, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3600\",\"code\":\"1746\",\"name\":\"MADAM CATHERINE\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1746\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-catherine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (964, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3601\",\"code\":\"1747\",\"name\":\"ALAFIA BITS\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1747\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alafia-bits\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (965, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3602\",\"code\":\"1748\",\"name\":\"TOP FEVER\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1748\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (966, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3603\",\"code\":\"1749\",\"name\":\"TOP TONIC\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1749\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tonic1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (967, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3604\",\"code\":\"1750\",\"name\":\"ANGEL CREAM\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1750\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (968, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3605\",\"code\":\"1751\",\"name\":\"TINATET VENECARE\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1751\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinatet-venecare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (969, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3606\",\"code\":\"1752\",\"name\":\"VICTORY G MIX\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-g-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (970, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3607\",\"code\":\"1753\",\"name\":\"PROSTAFIT\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1753\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostafit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (971, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3608\",\"code\":\"1754\",\"name\":\"SOLAK MIX\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1754\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (972, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3609\",\"code\":\"1755\",\"name\":\"ZIPMAN CAPS\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1755\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zipman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (973, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3610\",\"code\":\"1756\",\"name\":\"PROSTACURE TEA\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1756\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (974, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3611\",\"code\":\"1757\",\"name\":\"TINATET 230 CAPS\",\"unit\":\"1\",\"cost\":\"14.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1757\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinatet-230-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (975, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3612\",\"code\":\"1758\",\"name\":\"AKANAYO KOO BITS\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1758\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"akanayo-koo-bits\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (976, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3613\",\"code\":\"1759\",\"name\":\"DETOL 250 ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1759\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-250-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (977, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3614\",\"code\":\"1760\",\"name\":\"PEPSODENT BRUSH\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1760\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (978, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3615\",\"code\":\"1761\",\"name\":\"POWERZONE B\'S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1761\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"powerzone-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (979, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3616\",\"code\":\"1762\",\"name\":\"POWERZONE S\'S\",\"unit\":\"1\",\"cost\":\"25.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1762\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"powerzone-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (980, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3617\",\"code\":\"1763\",\"name\":\"CERELAC\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1763\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cerelac\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (981, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3618\",\"code\":\"1764\",\"name\":\"LACTULOSE\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1764\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lactulose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (982, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3619\",\"code\":\"1765\",\"name\":\"MOLFIX\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1765\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"molfix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (983, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3620\",\"code\":\"1766\",\"name\":\"COLESTOP 10\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1766\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colestop-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (984, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3621\",\"code\":\"1767\",\"name\":\"COLGATE TRIP ACTN\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1767\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-trip-actn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (985, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3622\",\"code\":\"1768\",\"name\":\"EASYLIFE VIT C\",\"unit\":\"1\",\"cost\":\"1.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1768\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"easylife-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (986, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3623\",\"code\":\"1769\",\"name\":\"HEAVEN SPRAY\",\"unit\":\"1\",\"cost\":\"0.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1769\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"heaven-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (987, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3624\",\"code\":\"1770\",\"name\":\"ORANGE T.ROLL\",\"unit\":\"1\",\"cost\":\"15.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1770\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orange-troll\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (988, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3625\",\"code\":\"1771\",\"name\":\"TANGO T.ROLL\",\"unit\":\"1\",\"cost\":\"12.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1771\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tango-troll\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (989, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3626\",\"code\":\"1772\",\"name\":\"MYCOLEX 3 CREAM\",\"unit\":\"1\",\"cost\":\"6.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1772\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (990, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3627\",\"code\":\"1773\",\"name\":\"BELLS VIT C\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1773\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (991, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3628\",\"code\":\"1774\",\"name\":\"ZINCOVIT DROP\",\"unit\":\"1\",\"cost\":\"28.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1774\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (992, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3629\",\"code\":\"1775\",\"name\":\"SPERMAN\",\"unit\":\"1\",\"cost\":\"13.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1775\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sperman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (993, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3630\",\"code\":\"1776\",\"name\":\"BONGELA CHILD\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1776\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (994, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3631\",\"code\":\"1777\",\"name\":\"NUGEL\",\"unit\":\"1\",\"cost\":\"12.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1777\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (995, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3632\",\"code\":\"1778\",\"name\":\"GASTRACID\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1778\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (996, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3633\",\"code\":\"1779\",\"name\":\"KOFLET\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1779\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (997, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3634\",\"code\":\"1780\",\"name\":\"BEEHIVE\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1780\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (998, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3635\",\"code\":\"1781\",\"name\":\"NS\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1781\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ns\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (999, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3636\",\"code\":\"1782\",\"name\":\"GLUCOSE\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1782\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1000, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3637\",\"code\":\"1783\",\"name\":\"EYECOPEN\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1783\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eyecopen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1001, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3638\",\"code\":\"1784\",\"name\":\"FEROGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1784\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1002, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3639\",\"code\":\"1785\",\"name\":\"GO COUGH\",\"unit\":\"1\",\"cost\":\"1.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1785\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1003, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3640\",\"code\":\"1786\",\"name\":\"BCO STRONG6-23\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1786\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bco-strong6-23\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1004, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3641\",\"code\":\"1787\",\"name\":\"AMPICLOX CAPS\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1787\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampiclox-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1005, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3642\",\"code\":\"1788\",\"name\":\"BCO INJ\",\"unit\":\"1\",\"cost\":\"28.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1788\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bco-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1006, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3643\",\"code\":\"1789\",\"name\":\"CORRORANGE DROP\",\"unit\":\"1\",\"cost\":\"4.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1789\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"corrorange-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1007, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3644\",\"code\":\"1790\",\"name\":\"CA-C SANDOX\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1790\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sandox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1008, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3645\",\"code\":\"1791\",\"name\":\"NEXIUM 20\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1791\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1009, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3646\",\"code\":\"1792\",\"name\":\"STAGYL\",\"unit\":\"1\",\"cost\":\"48.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1792\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stagyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1010, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3647\",\"code\":\"1793\",\"name\":\"PEPSODENT B\\/S\",\"unit\":\"1\",\"cost\":\"52.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1793\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1011, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3648\",\"code\":\"1794\",\"name\":\"ABIDEC\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1794\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1012, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3649\",\"code\":\"1795\",\"name\":\"LAMISIL CREAM\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1795\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamisil-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1013, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3650\",\"code\":\"1796\",\"name\":\"COMBANTRIN\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1796\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"combantrin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1014, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3651\",\"code\":\"1797\",\"name\":\"POLYFER CAPS\",\"unit\":\"1\",\"cost\":\"1.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1797\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1015, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3652\",\"code\":\"1798\",\"name\":\"LYRICA 25\",\"unit\":\"1\",\"cost\":\"2.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1798\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1016, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3653\",\"code\":\"1799\",\"name\":\"PARA DENK 125\",\"unit\":\"1\",\"cost\":\"1.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1799\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1017, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3654\",\"code\":\"1800\",\"name\":\"VAGINAX PESS\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1800\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaginax-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1018, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3655\",\"code\":\"1801\",\"name\":\"FENBASE\",\"unit\":\"1\",\"cost\":\"32.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1801\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1019, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3656\",\"code\":\"1802\",\"name\":\"OMEPRAZOLE\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1802\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprazole\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1020, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3657\",\"code\":\"1803\",\"name\":\"EVECARE\",\"unit\":\"1\",\"cost\":\"82.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1803\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"evecare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1021, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3658\",\"code\":\"1804\",\"name\":\"KOFEX ADULT\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1804\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofex-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1022, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3659\",\"code\":\"1805\",\"name\":\"DIFLUCAN\",\"unit\":\"1\",\"cost\":\"17.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1805\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1023, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3660\",\"code\":\"1806\",\"name\":\"ABONIKI\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1806\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aboniki\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1024, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3661\",\"code\":\"1807\",\"name\":\"LIVING BIT CAPS\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1807\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bit-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1025, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3662\",\"code\":\"1808\",\"name\":\"LIVING BIT SRP\",\"unit\":\"1\",\"cost\":\"17.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1808\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bit-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1026, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3663\",\"code\":\"1809\",\"name\":\"NAZOR\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1809\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nazor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1027, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3664\",\"code\":\"1810\",\"name\":\"TINATETT MALAKARE\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1810\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1028, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3665\",\"code\":\"1811\",\"name\":\"TRENDOUS CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1811\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trendous-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1029, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3666\",\"code\":\"1812\",\"name\":\"VICTAGO\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1812\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1030, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3667\",\"code\":\"1813\",\"name\":\"ADUTWUMWAA BIT\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1813\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adutwumwaa-bit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1031, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3668\",\"code\":\"1814\",\"name\":\"BOAFO OINT\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1814\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"boafo-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1032, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3669\",\"code\":\"1815\",\"name\":\"BRIGHFORD\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1815\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brighford\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1033, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3670\",\"code\":\"1816\",\"name\":\"DIAGELLATES LARGE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1816\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagellates-large\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1034, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3671\",\"code\":\"1817\",\"name\":\"DIAGELATE MED\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1817\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagelate-med\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1035, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3672\",\"code\":\"1818\",\"name\":\"DIAGELATE SMALL\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1818\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagelate-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1036, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3673\",\"code\":\"1819\",\"name\":\"EKURO BEWU\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1819\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bewu1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1037, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3674\",\"code\":\"1820\",\"name\":\"ERNEST OINT\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1820\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1038, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3675\",\"code\":\"1821\",\"name\":\"FINE SOAP\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1821\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fine-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1039, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3676\",\"code\":\"1822\",\"name\":\"FINE CREAM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1822\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fine-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1040, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3677\",\"code\":\"1823\",\"name\":\"FRANKO HERBAL\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1823\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"franko-herbal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1041, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3678\",\"code\":\"1824\",\"name\":\"KINGDOM GENSENG CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1824\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-genseng-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1042, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3679\",\"code\":\"1825\",\"name\":\"MAME DAGOMBA\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1825\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mame-dagomba\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1043, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3680\",\"code\":\"1826\",\"name\":\"MASADA\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1826\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"masada\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1044, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3681\",\"code\":\"1827\",\"name\":\"NANA ADJEI\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1827\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nana-adjei\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1045, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3682\",\"code\":\"1828\",\"name\":\"PA-KUM\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1828\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pa-kum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1046, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3683\",\"code\":\"1829\",\"name\":\"SIBIMAN\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1829\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sibiman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1047, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3684\",\"code\":\"1830\",\"name\":\"ULCERPLEX\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1830\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ulcerplex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1048, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3685\",\"code\":\"1831\",\"name\":\"BASECOLD SRP\",\"unit\":\"1\",\"cost\":\"4.3700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1831\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basecold-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1049, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3686\",\"code\":\"1832\",\"name\":\"FLUXAMOX SRP\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1832\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluxamox-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1050, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3687\",\"code\":\"1833\",\"name\":\"FLUXAMOX CAPS\",\"unit\":\"1\",\"cost\":\"2.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1833\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluxamox-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1051, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3688\",\"code\":\"1834\",\"name\":\"ZUDREX SRP\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1834\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zudrex-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1052, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3689\",\"code\":\"1835\",\"name\":\"ZUDREX TAB\",\"unit\":\"1\",\"cost\":\"0.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1835\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zudrex-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:30:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1053, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3690\",\"code\":\"1836\",\"name\":\"MENTODEX B\\/S\",\"unit\":\"1\",\"cost\":\"8.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1836\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentodex-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1054, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3691\",\"code\":\"1837\",\"name\":\"NO 10\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1837\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"no-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1055, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3692\",\"code\":\"1838\",\"name\":\"ZUBES CHILD\",\"unit\":\"1\",\"cost\":\"1.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1838\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1056, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3693\",\"code\":\"1839\",\"name\":\"SAMLIN NON D\",\"unit\":\"1\",\"cost\":\"4.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1839\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samlin-non-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1057, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3694\",\"code\":\"1840\",\"name\":\"MACRAFOLIN SRP\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1840\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"macrafolin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1058, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3695\",\"code\":\"1841\",\"name\":\"SHALCIP\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1841\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalcip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1059, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3696\",\"code\":\"1842\",\"name\":\"BABY COU LINC\",\"unit\":\"1\",\"cost\":\"6.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1842\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baby-cou-linc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1060, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3697\",\"code\":\"1843\",\"name\":\"FERROUS SULF\",\"unit\":\"1\",\"cost\":\"6.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1843\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulf\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1061, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3698\",\"code\":\"1844\",\"name\":\"MALR 2 SRP\",\"unit\":\"1\",\"cost\":\"4.7100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1844\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malr-2-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1062, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3699\",\"code\":\"1845\",\"name\":\"NEXCOFER B\\/S\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1845\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexcofer-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1063, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3700\",\"code\":\"1846\",\"name\":\"PARA UK 16S\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1846\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-uk-16s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1064, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3701\",\"code\":\"1847\",\"name\":\"ENACEF SYRUP 125\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1847\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syrup-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1065, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3702\",\"code\":\"1848\",\"name\":\"BENDRO 5MG\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1848\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1066, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3703\",\"code\":\"1849\",\"name\":\"ETISALA SRP\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1849\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"etisala-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1067, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3704\",\"code\":\"1850\",\"name\":\"WORMBASE SUSP\",\"unit\":\"1\",\"cost\":\"1.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1850\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1068, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3705\",\"code\":\"1851\",\"name\":\"BADRUF CREAM\",\"unit\":\"1\",\"cost\":\"0.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1851\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1069, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3706\",\"code\":\"1852\",\"name\":\"BASEFENAC FORT\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1852\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basefenac-fort\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1070, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3707\",\"code\":\"1853\",\"name\":\"WORMBASE TAB\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1853\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1071, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3708\",\"code\":\"1854\",\"name\":\"ARTIBASE SUSP\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1854\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1072, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3709\",\"code\":\"1855\",\"name\":\"BASEKOF\",\"unit\":\"1\",\"cost\":\"0.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1855\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1073, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3710\",\"code\":\"1856\",\"name\":\"VITA P CAPS\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1856\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vita-p-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1074, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3711\",\"code\":\"1857\",\"name\":\"BASEDIUM CAPS\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1857\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basedium-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1075, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3712\",\"code\":\"1858\",\"name\":\"ETISALA CAPS\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1858\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"etisala-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1076, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3713\",\"code\":\"1859\",\"name\":\"ARTIBASE SRP\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1859\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1077, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3714\",\"code\":\"1860\",\"name\":\"ARTIBASE DS\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1860\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1078, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3715\",\"code\":\"1861\",\"name\":\"BE- MAN CD\",\"unit\":\"1\",\"cost\":\"0.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1861\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"be-man-cd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1079, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3716\",\"code\":\"1862\",\"name\":\"PROXEED PLUS\",\"unit\":\"1\",\"cost\":\"1.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1862\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proxeed-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1080, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3717\",\"code\":\"1863\",\"name\":\"BASEFENAC-P\",\"unit\":\"1\",\"cost\":\"0.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1863\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basefenac-p\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1081, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3718\",\"code\":\"1864\",\"name\":\"DIPEX TAB\",\"unit\":\"1\",\"cost\":\"1.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dipex-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1082, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3719\",\"code\":\"1865\",\"name\":\"BASEBRU TAB\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1865\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basebru-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1083, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3720\",\"code\":\"1866\",\"name\":\"BASECOLD\",\"unit\":\"1\",\"cost\":\"0.5200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1866\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basecold\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1084, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3721\",\"code\":\"1867\",\"name\":\"BISACODYL\",\"unit\":\"1\",\"cost\":\"14.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1867\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bisacodyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1085, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3722\",\"code\":\"1868\",\"name\":\"ESKAZIPAM\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1868\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eskazipam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1086, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3723\",\"code\":\"1869\",\"name\":\"FUROSEMIDE 20 RXPHAMA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1869\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20-rxphama\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1087, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3724\",\"code\":\"1870\",\"name\":\"KIDS BRUSH\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1870\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1088, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3725\",\"code\":\"1871\",\"name\":\"STREPTOL\",\"unit\":\"1\",\"cost\":\"14.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1871\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1089, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3726\",\"code\":\"1872\",\"name\":\"JOY OINT\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1872\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1090, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3727\",\"code\":\"1873\",\"name\":\"SAVLON 250\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1873\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1091, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3728\",\"code\":\"1874\",\"name\":\"BASEBOOM JELLY\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1874\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baseboom-jelly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1092, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3729\",\"code\":\"1875\",\"name\":\"KOJACK PASTE\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1875\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kojack-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1093, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3730\",\"code\":\"1876\",\"name\":\"KOJA CHARC\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1876\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koja-charc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1094, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3731\",\"code\":\"1877\",\"name\":\"DICLO -DENK 50\",\"unit\":\"1\",\"cost\":\"0.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1877\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1095, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3732\",\"code\":\"1878\",\"name\":\"ROBB JAR\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1878\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"robb-jar1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1096, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3733\",\"code\":\"1879\",\"name\":\"PAIN OFF\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1879\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1097, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3734\",\"code\":\"1880\",\"name\":\"OLANZIPNE\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1880\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olanzipne\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1098, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3735\",\"code\":\"1881\",\"name\":\"JARIFAN 2 SRP\",\"unit\":\"1\",\"cost\":\"14.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1881\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1099, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3736\",\"code\":\"1882\",\"name\":\"ARABA BAZEEN\",\"unit\":\"1\",\"cost\":\"65.0100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1882\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"araba-bazeen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1100, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3737\",\"code\":\"1883\",\"name\":\"HEPTO PEP\",\"unit\":\"1\",\"cost\":\"4.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1883\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hepto-pep\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1101, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3738\",\"code\":\"1884\",\"name\":\"APPLE CIDER B\\/S\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1884\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cider-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1102, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3739\",\"code\":\"1885\",\"name\":\"EXFORGE 10\\/160\",\"unit\":\"1\",\"cost\":\"5.6100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1885\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exforge-10160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1103, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3740\",\"code\":\"1886\",\"name\":\"EXFORGE 5\\/160\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1886\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exforge-5160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1104, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3741\",\"code\":\"1887\",\"name\":\"DIPHEX SRP\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1887\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diphex-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1105, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3742\",\"code\":\"1888\",\"name\":\"ZEMAN\",\"unit\":\"1\",\"cost\":\"2.4100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1888\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zeman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1106, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3743\",\"code\":\"1889\",\"name\":\"SIRDALUD 2MG\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1889\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-2mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1107, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3744\",\"code\":\"1890\",\"name\":\"SIRDALUD 4MG\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1890\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-4mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1108, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3745\",\"code\":\"1891\",\"name\":\"ZINCOLAC\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1891\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincolac\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1109, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3746\",\"code\":\"1892\",\"name\":\"OSONS GRIPE\",\"unit\":\"1\",\"cost\":\"23.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1892\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osons-gripe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1110, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3747\",\"code\":\"1893\",\"name\":\"VITAGLOBIN\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1893\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitaglobin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1111, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3748\",\"code\":\"1894\",\"name\":\"EVECARE SRP\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1894\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"evecare-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1112, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3749\",\"code\":\"1895\",\"name\":\"EPICROM\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1895\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epicrom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1113, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3750\",\"code\":\"1896\",\"name\":\"CROMAX\",\"unit\":\"1\",\"cost\":\"20.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1896\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cromax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1114, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3751\",\"code\":\"1897\",\"name\":\"DALACIN C 150MG\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1897\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dalacin-c-150mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1115, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3752\",\"code\":\"1898\",\"name\":\"NURIFER CAPS\",\"unit\":\"1\",\"cost\":\"0.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1898\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nurifer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1116, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3753\",\"code\":\"1899\",\"name\":\"AERIUS TAB\",\"unit\":\"1\",\"cost\":\"0.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1899\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aerius-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1117, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3754\",\"code\":\"1900\",\"name\":\"GACET 125\",\"unit\":\"1\",\"cost\":\"17.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1900\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1118, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3755\",\"code\":\"1901\",\"name\":\"GACET 250\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1901\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1119, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3756\",\"code\":\"1902\",\"name\":\"FLOXAPEN\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1902\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"floxapen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1120, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3757\",\"code\":\"1903\",\"name\":\"ASTHALEX\",\"unit\":\"1\",\"cost\":\"42.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1903\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asthalex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1121, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3758\",\"code\":\"1904\",\"name\":\"DEXATROL DROP\",\"unit\":\"1\",\"cost\":\"16.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1904\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1122, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3759\",\"code\":\"1905\",\"name\":\"OPTREX EYE WASH\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1905\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1123, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3760\",\"code\":\"1906\",\"name\":\"MAXISPORON\",\"unit\":\"1\",\"cost\":\"52.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1906\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maxisporon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1124, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3761\",\"code\":\"1907\",\"name\":\"E-NAT E\",\"unit\":\"1\",\"cost\":\"37.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1907\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"e-nat-e\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1125, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3762\",\"code\":\"1908\",\"name\":\"WELLOMAN 70+\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1908\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welloman-70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1126, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3763\",\"code\":\"1909\",\"name\":\"WELLWOMAN PLUS\",\"unit\":\"1\",\"cost\":\"26.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1909\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1127, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3764\",\"code\":\"1910\",\"name\":\"COX B\",\"unit\":\"1\",\"cost\":\"15.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1910\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cox-b\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1128, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3765\",\"code\":\"1911\",\"name\":\"S\\/SEAS SRP\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1911\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1129, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3766\",\"code\":\"1912\",\"name\":\"ASTIMIN\",\"unit\":\"1\",\"cost\":\"8.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1912\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"astimin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1130, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3767\",\"code\":\"1913\",\"name\":\"PERFECTIL PLATINUM\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1913\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-platinum1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1131, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3768\",\"code\":\"1914\",\"name\":\"RELCER GEL\",\"unit\":\"1\",\"cost\":\"47.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1914\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"relcer-gel1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1132, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3769\",\"code\":\"1915\",\"name\":\"ABIDEC SRP\",\"unit\":\"1\",\"cost\":\"40.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1915\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1133, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3770\",\"code\":\"1916\",\"name\":\"WELLBABY DROP\",\"unit\":\"1\",\"cost\":\"33.0100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1916\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellbaby-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1134, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3771\",\"code\":\"1917\",\"name\":\"INFACOL\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1917\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"infacol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1135, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3772\",\"code\":\"1918\",\"name\":\"PEVISON\",\"unit\":\"1\",\"cost\":\"6.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1918\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pevison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1136, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3773\",\"code\":\"1919\",\"name\":\"ROBB INH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1919\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"robb-inh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1137, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3774\",\"code\":\"1920\",\"name\":\"ZENTEL TAB\",\"unit\":\"1\",\"cost\":\"25.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1920\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zentel-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1138, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3775\",\"code\":\"1921\",\"name\":\"APFLU\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apflu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1139, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3776\",\"code\":\"1922\",\"name\":\"BENILIN CHESTY\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1922\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-chesty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1140, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3777\",\"code\":\"1923\",\"name\":\"TYLENOL\",\"unit\":\"1\",\"cost\":\"53.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1923\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1141, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3778\",\"code\":\"1924\",\"name\":\"ADVIL\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1924\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1142, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3779\",\"code\":\"1925\",\"name\":\"ADDYZOA\",\"unit\":\"1\",\"cost\":\"17.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1925\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1143, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3780\",\"code\":\"1926\",\"name\":\"CLARITHROMYCIN\",\"unit\":\"1\",\"cost\":\"7.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1926\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clarithromycin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1144, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3781\",\"code\":\"1927\",\"name\":\"TIGER SPRAY\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1927\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-spray1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1145, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3782\",\"code\":\"1928\",\"name\":\"TIGER CAPS\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1146, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3783\",\"code\":\"1929\",\"name\":\"CYCLOGEST 200\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1929\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1147, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3784\",\"code\":\"1930\",\"name\":\"FEGLO B\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1930\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feglo-b\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1148, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3785\",\"code\":\"1931\",\"name\":\"SALO COLD SRP\",\"unit\":\"1\",\"cost\":\"0.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1931\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salo-cold-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1149, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3786\",\"code\":\"1932\",\"name\":\"PHLEBODIA\",\"unit\":\"1\",\"cost\":\"0.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1932\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"phlebodia\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1150, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3787\",\"code\":\"1933\",\"name\":\"PINPAC EXTRA\",\"unit\":\"1\",\"cost\":\"3.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1933\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pinpac-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1151, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3788\",\"code\":\"1934\",\"name\":\"OXAFEN\",\"unit\":\"1\",\"cost\":\"40.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1934\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oxafen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1152, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3789\",\"code\":\"1935\",\"name\":\"ZIRTEK TAB\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1935\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zirtek-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1153, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3790\",\"code\":\"1936\",\"name\":\"ZIRTEK SLN\",\"unit\":\"1\",\"cost\":\"9.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1936\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zirtek-sln\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1154, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3791\",\"code\":\"1937\",\"name\":\"SALOCOLD TAB\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1937\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salocold-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1155, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3792\",\"code\":\"1938\",\"name\":\"ACEOUS CREAM\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aceous-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1156, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3793\",\"code\":\"1939\",\"name\":\"APPLE CID S\\/S\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1939\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cid-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1157, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3794\",\"code\":\"1940\",\"name\":\"MUCOLEX J\",\"unit\":\"1\",\"cost\":\"51.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1940\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mucolex-j\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1158, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3795\",\"code\":\"1941\",\"name\":\"MUCOLEX ADULT\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1941\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mucolex-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1159, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3796\",\"code\":\"1942\",\"name\":\"NIGHT NURSE SRP\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1942\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"night-nurse-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1160, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3797\",\"code\":\"1943\",\"name\":\"DEEP HEAT 35\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1943\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-35\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1161, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3798\",\"code\":\"1944\",\"name\":\"DEEP HEAT 67\",\"unit\":\"1\",\"cost\":\"10.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1944\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-67\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1162, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3799\",\"code\":\"1945\",\"name\":\"COATERM12S\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1945\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coaterm12s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1163, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3800\",\"code\":\"1946\",\"name\":\"COATERM 6S\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1946\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coaterm-6s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1164, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3801\",\"code\":\"1947\",\"name\":\"CANDIBIOTIC EAR\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1947\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"candibiotic-ear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1165, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3802\",\"code\":\"1948\",\"name\":\"GINSOMIN EVE\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1948\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginsomin-eve1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1166, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3803\",\"code\":\"1949\",\"name\":\"GINSOMIN CAPS\",\"unit\":\"1\",\"cost\":\"32.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1949\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginsomin-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1167, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3804\",\"code\":\"1950\",\"name\":\"LIVOLIN\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1950\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"livolin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1168, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3805\",\"code\":\"1951\",\"name\":\"GYNO DAK PESS\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1951\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gyno-dak-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1169, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3806\",\"code\":\"1952\",\"name\":\"FISHERMAN\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1952\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fisherman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1170, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3807\",\"code\":\"1953\",\"name\":\"OMEPRZOLE NIMEP\",\"unit\":\"1\",\"cost\":\"27.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1953\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprzole-nimep\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1171, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3808\",\"code\":\"1954\",\"name\":\"FLUCOR  NIGHT\",\"unit\":\"1\",\"cost\":\"4.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1954\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucor-night1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1172, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3809\",\"code\":\"1955\",\"name\":\"TIXILIX\",\"unit\":\"1\",\"cost\":\"1.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1955\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tixilix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1173, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3810\",\"code\":\"1956\",\"name\":\"ENVICO\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1956\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"envico\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1174, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3811\",\"code\":\"1957\",\"name\":\"EZIPEN\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1957\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1175, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3812\",\"code\":\"1958\",\"name\":\"BENDRO 2.5\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1958\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1176, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3813\",\"code\":\"1959\",\"name\":\"ACIDOM\",\"unit\":\"1\",\"cost\":\"34.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1959\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acidom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1177, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3814\",\"code\":\"1960\",\"name\":\"ACTIFED TAB\",\"unit\":\"1\",\"cost\":\"4.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1960\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actifed-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1178, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3815\",\"code\":\"1961\",\"name\":\"BENILIN ORG\",\"unit\":\"1\",\"cost\":\"0.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1961\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1179, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3816\",\"code\":\"1962\",\"name\":\"BELA COUGH\",\"unit\":\"1\",\"cost\":\"33.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1962\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bela-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1180, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3817\",\"code\":\"1963\",\"name\":\"ASMANOL\",\"unit\":\"1\",\"cost\":\"27.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1963\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asmanol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1181, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3818\",\"code\":\"1964\",\"name\":\"BENILIN INFANT\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1964\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1182, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3819\",\"code\":\"1965\",\"name\":\"GAVISCON\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1965\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gaviscon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1183, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3820\",\"code\":\"1966\",\"name\":\"TRANEXAMIC ACID\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1966\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tranexamic-acid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1184, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3821\",\"code\":\"1967\",\"name\":\"DEEP FREEZE OINT\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1967\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1185, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3822\",\"code\":\"1968\",\"name\":\"DIABETONE\",\"unit\":\"1\",\"cost\":\"15.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1968\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diabetone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1186, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3823\",\"code\":\"1969\",\"name\":\"ATERSUNATE INJ      30MG\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1969\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atersunate-inj-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1187, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3824\",\"code\":\"1970\",\"name\":\"ARTESUNATE INJ 60\",\"unit\":\"1\",\"cost\":\"28.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1970\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artesunate-inj-60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1188, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3825\",\"code\":\"1971\",\"name\":\"ARTESUNATE INJ 120MG\",\"unit\":\"1\",\"cost\":\"0.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1971\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artesunate-inj-120mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1189, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3826\",\"code\":\"1972\",\"name\":\"GALVUS MET 50\\/1000MG\",\"unit\":\"1\",\"cost\":\"0.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1972\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-501000mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1190, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3827\",\"code\":\"1973\",\"name\":\"MAGACID TAB\",\"unit\":\"1\",\"cost\":\"2.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1973\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1191, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3828\",\"code\":\"1974\",\"name\":\"ASMANOL\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1974\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asmanol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1192, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3829\",\"code\":\"1975\",\"name\":\"M;B TAB\",\"unit\":\"1\",\"cost\":\"10.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1975\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mb-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1193, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3830\",\"code\":\"1976\",\"name\":\"OPTIMOL EYE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1976\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1194, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3831\",\"code\":\"1977\",\"name\":\"DEXORANGE SRP\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1977\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexorange-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1195, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3832\",\"code\":\"1978\",\"name\":\"ASPIRIN DISP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1978\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspirin-disp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1196, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3833\",\"code\":\"1979\",\"name\":\"PROPER PAD\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1979\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proper-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1197, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3834\",\"code\":\"1980\",\"name\":\"AQUEOS  BIG\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1980\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqueos-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1198, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3835\",\"code\":\"1981\",\"name\":\"CHOCOLATE\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1981\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1199, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3836\",\"code\":\"1982\",\"name\":\"SELECT STRIPS\",\"unit\":\"1\",\"cost\":\"4.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1982\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"select-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1200, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3837\",\"code\":\"1983\",\"name\":\"GLUCOSE CHECK\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1983\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucose-check\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1201, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3838\",\"code\":\"1984\",\"name\":\"EXETER PARA SRP\",\"unit\":\"1\",\"cost\":\"48.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1984\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exeter-para-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1202, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3839\",\"code\":\"1985\",\"name\":\"AMOKSIKLAV 1G\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1985\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1203, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3840\",\"code\":\"1986\",\"name\":\"AVAMYS\",\"unit\":\"1\",\"cost\":\"5.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1986\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"avamys\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1204, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3841\",\"code\":\"1987\",\"name\":\"HYDROGEN ECL\",\"unit\":\"1\",\"cost\":\"29.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1987\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrogen-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1205, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3842\",\"code\":\"1988\",\"name\":\"METOCLOPRAMIDE\",\"unit\":\"1\",\"cost\":\"8.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1988\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metoclopramide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1206, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3843\",\"code\":\"1989\",\"name\":\"FLAGYL ORG SUSP\",\"unit\":\"1\",\"cost\":\"7.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1989\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagyl-org-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1207, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3844\",\"code\":\"1990\",\"name\":\"LG GLIZONE 15MG\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1990\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lg-glizone-15mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1208, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3845\",\"code\":\"1991\",\"name\":\"AMOXIL SUSP UK\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1991\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-susp-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1209, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3846\",\"code\":\"1992\",\"name\":\"LYRICA 75\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1992\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1210, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3847\",\"code\":\"1993\",\"name\":\"BRUFEN SRP\",\"unit\":\"1\",\"cost\":\"9.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1993\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brufen-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1211, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3848\",\"code\":\"1994\",\"name\":\"DRAGON SPRAY\",\"unit\":\"1\",\"cost\":\"3.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1994\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dragon-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1212, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3849\",\"code\":\"1995\",\"name\":\"KIDICS SRP\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1995\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidics-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1213, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3850\",\"code\":\"1996\",\"name\":\"INOPRIL\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1996\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"inopril\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1214, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3851\",\"code\":\"1997\",\"name\":\"MYCOSTAT\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1997\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycostat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1215, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3852\",\"code\":\"1998\",\"name\":\"A-L FORTE\",\"unit\":\"1\",\"cost\":\"0.4100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1998\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"a-l-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1216, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3853\",\"code\":\"1999\",\"name\":\"SCHIMETER SUSP\",\"unit\":\"1\",\"cost\":\"0.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1999\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"schimeter-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1217, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3854\",\"code\":\"2000\",\"name\":\"BENDRO 5 LOCAL\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-5-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1218, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3855\",\"code\":\"2001\",\"name\":\"BENDRO 2.5 LOCAL\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-25-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1219, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3856\",\"code\":\"2002\",\"name\":\"GLUCOSE INFUSION\",\"unit\":\"1\",\"cost\":\"11.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2002\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucose-infusion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1220, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3857\",\"code\":\"2003\",\"name\":\"LACTOGEN 1@2\",\"unit\":\"1\",\"cost\":\"0.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2003\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lactogen-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1221, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3858\",\"code\":\"2004\",\"name\":\"METROLEX F SUSP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2004\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metrolex-f-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1222, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3859\",\"code\":\"2005\",\"name\":\"TETRA CAPS\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tetra-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1223, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3860\",\"code\":\"2006\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2006\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1224, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3861\",\"code\":\"2007\",\"name\":\"SAVLON 250\",\"unit\":\"1\",\"cost\":\"20.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1225, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3862\",\"code\":\"2008\",\"name\":\"MENSTRUAL CYC\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2008\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menstrual-cyc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1226, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3863\",\"code\":\"2009\",\"name\":\"MENTAT SRP\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentat-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1227, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3864\",\"code\":\"2010\",\"name\":\"NURIFER SRP\",\"unit\":\"1\",\"cost\":\"8.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2010\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nurifer-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1228, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3865\",\"code\":\"2011\",\"name\":\"INFA-V PESS\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2011\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pess1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1229, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3866\",\"code\":\"2012\",\"name\":\"LOSATAN 50 EXETER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losatan-50-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1230, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3867\",\"code\":\"2013\",\"name\":\"TIMOL EYE\",\"unit\":\"1\",\"cost\":\"8.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2013\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"timol-eye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1231, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3868\",\"code\":\"2014\",\"name\":\"OVACARE\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2014\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1232, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3869\",\"code\":\"2015\",\"name\":\"OSTEOCALIN\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osteocalin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1233, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3870\",\"code\":\"2016\",\"name\":\"NEUROZAN\",\"unit\":\"1\",\"cost\":\"15.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2016\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neurozan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1234, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3871\",\"code\":\"2017\",\"name\":\"ENTEROGEMINA\",\"unit\":\"1\",\"cost\":\"7.6800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2017\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enterogemina\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1235, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3872\",\"code\":\"2018\",\"name\":\"PROMAN\",\"unit\":\"1\",\"cost\":\"52.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2018\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1236, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3873\",\"code\":\"2019\",\"name\":\"VISCOF\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2019\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viscof\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1237, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3874\",\"code\":\"2020\",\"name\":\"CIALIS\",\"unit\":\"1\",\"cost\":\"26.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2020\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cialis\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1238, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3875\",\"code\":\"2021\",\"name\":\"CHLO CAPS\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2021\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlo-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1239, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3876\",\"code\":\"2022\",\"name\":\"NEOVITA CAPS\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2022\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neovita-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1240, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3877\",\"code\":\"2023\",\"name\":\"LYNUS OINT\",\"unit\":\"1\",\"cost\":\"3.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2023\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lynus-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1241, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3878\",\"code\":\"2024\",\"name\":\"GILOBA\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2024\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"giloba\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1242, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3879\",\"code\":\"2025\",\"name\":\"LISINOPRIL 5 TEVA\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2025\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-5-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1243, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3880\",\"code\":\"2026\",\"name\":\"CRESTOR 10\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2026\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1244, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3881\",\"code\":\"2027\",\"name\":\"DIGOXIN 125\",\"unit\":\"1\",\"cost\":\"2.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2027\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1245, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3882\",\"code\":\"2028\",\"name\":\"DIGOXIN 250\",\"unit\":\"1\",\"cost\":\"84.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2028\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1246, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3883\",\"code\":\"2029\",\"name\":\"FLAGL SRP M*G\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2029\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagl-srp-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1247, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3884\",\"code\":\"2030\",\"name\":\"ORELOX SUSP\",\"unit\":\"1\",\"cost\":\"17.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1248, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3885\",\"code\":\"2031\",\"name\":\"STOMOCAIN\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2031\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stomocain\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1249, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3886\",\"code\":\"2032\",\"name\":\"LIMZER\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2032\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"limzer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1250, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3887\",\"code\":\"2033\",\"name\":\"CEBROTONIN\",\"unit\":\"1\",\"cost\":\"29.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2033\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cebrotonin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1251, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3888\",\"code\":\"2034\",\"name\":\"JUNIOR BRUFN SRP\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"junior-brufn-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1252, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3889\",\"code\":\"2035\",\"name\":\"MAALOX PLUS\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2035\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1253, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3890\",\"code\":\"2036\",\"name\":\"SWEETEX\",\"unit\":\"1\",\"cost\":\"57.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2036\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweetex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1254, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3891\",\"code\":\"2037\",\"name\":\"CANDEREL\",\"unit\":\"1\",\"cost\":\"1.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2037\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"canderel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1255, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3892\",\"code\":\"2038\",\"name\":\"SERETIDE 50\\/100\",\"unit\":\"1\",\"cost\":\"31.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2038\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"seretide-50100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1256, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3893\",\"code\":\"2039\",\"name\":\"LETAMOL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2039\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letamol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1257, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3894\",\"code\":\"2040\",\"name\":\"CARDIOACE\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2040\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1258, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3895\",\"code\":\"2041\",\"name\":\"OSTECARE PLUS\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2041\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ostecare-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1259, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3896\",\"code\":\"2042\",\"name\":\"XYLO ACINO INFANT\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2042\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xylo-acino-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1260, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3897\",\"code\":\"2043\",\"name\":\"BACTIGEL\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2043\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bactigel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1261, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3898\",\"code\":\"2044\",\"name\":\"SASSO SPRAY\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2044\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sasso-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1262, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3899\",\"code\":\"2045\",\"name\":\"MOSQUITOE REPP\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2045\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mosquitoe-repp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1263, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3900\",\"code\":\"2046\",\"name\":\"SANITIZER B\\/S\",\"unit\":\"1\",\"cost\":\"7.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2046\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1264, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3901\",\"code\":\"2047\",\"name\":\"ESSENTIAL EMBR\",\"unit\":\"1\",\"cost\":\"24.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2047\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essential-embr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1265, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3902\",\"code\":\"2048\",\"name\":\"OSTECARE LOCAL TAB\",\"unit\":\"1\",\"cost\":\"35.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2048\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ostecare-local-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1266, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3903\",\"code\":\"2049\",\"name\":\"SILVERDERMA\",\"unit\":\"1\",\"cost\":\"29.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2049\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"silverderma\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1267, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3904\",\"code\":\"2050\",\"name\":\"PROXIMEXA SUSP\",\"unit\":\"1\",\"cost\":\"8.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2050\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1268, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3905\",\"code\":\"2051\",\"name\":\"PEPTO S\\/S\",\"unit\":\"1\",\"cost\":\"6.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1269, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3906\",\"code\":\"2052\",\"name\":\"DUROL 300ML\",\"unit\":\"1\",\"cost\":\"4.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2052\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1270, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3907\",\"code\":\"2053\",\"name\":\"MALAR 2 FORTE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2053\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malar-2-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1271, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3908\",\"code\":\"2054\",\"name\":\"AMCOF ADULT\",\"unit\":\"1\",\"cost\":\"5.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2054\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amcof-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1272, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3909\",\"code\":\"2055\",\"name\":\"AMCOF BABY\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2055\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amcof-baby1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1273, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3910\",\"code\":\"2056\",\"name\":\"AMCOF JUNIOR\",\"unit\":\"1\",\"cost\":\"29.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2056\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amcof-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1274, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3911\",\"code\":\"2057\",\"name\":\"GYNO MYCOLEX PESS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2057\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gyno-mycolex-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1275, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3912\",\"code\":\"2058\",\"name\":\"ANUSOL OINT\",\"unit\":\"1\",\"cost\":\"9.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2058\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1276, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3913\",\"code\":\"2059\",\"name\":\"FATWIKEKE\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2059\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fatwikeke\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1277, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3914\",\"code\":\"2060\",\"name\":\"DERMACOT CREM\",\"unit\":\"1\",\"cost\":\"6.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2060\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dermacot-crem\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1278, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3915\",\"code\":\"2061\",\"name\":\"COTTON 100\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2061\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1279, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3916\",\"code\":\"2062\",\"name\":\"DICLOLEX CREAM\",\"unit\":\"1\",\"cost\":\"84.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2062\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1280, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3917\",\"code\":\"2063\",\"name\":\"CAMPHOR\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2063\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camphor1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1281, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3918\",\"code\":\"2064\",\"name\":\"ZINNAT SUSP 100MLS\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2064\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1282, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3919\",\"code\":\"2065\",\"name\":\"CALAMINE OINT\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2065\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1283, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3920\",\"code\":\"2066\",\"name\":\"HAEMOGLOBIN ARTN\",\"unit\":\"1\",\"cost\":\"34.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2066\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-artn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1284, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3921\",\"code\":\"2067\",\"name\":\"MINAMINO\",\"unit\":\"1\",\"cost\":\"4.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2067\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"minamino\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1285, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3922\",\"code\":\"2068\",\"name\":\"MAALOX  PLUS\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2068\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1286, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3923\",\"code\":\"2069\",\"name\":\"DITHRANOL\",\"unit\":\"1\",\"cost\":\"38.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2069\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dithranol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1287, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3924\",\"code\":\"2070\",\"name\":\"WHITEFEILD\",\"unit\":\"1\",\"cost\":\"27.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2070\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"whitefeild\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1288, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3925\",\"code\":\"2071\",\"name\":\"AUGMENTIN 1G\",\"unit\":\"1\",\"cost\":\"1.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2071\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-1g1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1289, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3926\",\"code\":\"2072\",\"name\":\"AUGMENTIN 228\",\"unit\":\"1\",\"cost\":\"0.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2072\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1290, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3927\",\"code\":\"2073\",\"name\":\"ALKA SELTZER\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2073\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alka-seltzer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1291, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3928\",\"code\":\"2074\",\"name\":\"PIRITON LOCAL\",\"unit\":\"1\",\"cost\":\"12.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2074\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1292, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3929\",\"code\":\"2075\",\"name\":\"SALBUTAMOL TAB\",\"unit\":\"1\",\"cost\":\"65.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2075\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salbutamol-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1293, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3930\",\"code\":\"2076\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"25.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2076\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1294, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3931\",\"code\":\"2077\",\"name\":\"BACTROBAN\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2077\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bactroban\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1295, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3932\",\"code\":\"2078\",\"name\":\"SUPIROCIN\",\"unit\":\"1\",\"cost\":\"18.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2078\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"supirocin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1296, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3933\",\"code\":\"2079\",\"name\":\"BUSYLIFESTYLE\",\"unit\":\"1\",\"cost\":\"19.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2079\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"busylifestyle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1297, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3934\",\"code\":\"2080\",\"name\":\"GLUCOSAMINE\",\"unit\":\"1\",\"cost\":\"3.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2080\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucosamine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1298, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3935\",\"code\":\"2081\",\"name\":\"PROWOMAN\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2081\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prowoman1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1299, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3936\",\"code\":\"2082\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"16.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2082\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1300, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3937\",\"code\":\"2083\",\"name\":\"OTRIVIN ADULT\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2083\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"otrivin-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1301, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3938\",\"code\":\"2084\",\"name\":\"OTRIVIN CHILD\",\"unit\":\"1\",\"cost\":\"3.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2084\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"otrivin-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1302, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3939\",\"code\":\"2085\",\"name\":\"CARBOZAP JUNIOR\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2085\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbozap-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1303, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3940\",\"code\":\"2086\",\"name\":\"PROCOLD\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2086\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"procold\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1304, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3941\",\"code\":\"2087\",\"name\":\"ENACIN 300\",\"unit\":\"1\",\"cost\":\"16.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2087\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enacin-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1305, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3942\",\"code\":\"2088\",\"name\":\"ZINCOFER CAPS\",\"unit\":\"1\",\"cost\":\"5.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2088\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincofer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1306, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3943\",\"code\":\"2089\",\"name\":\"HILADY\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2089\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hilady\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1307, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3944\",\"code\":\"2090\",\"name\":\"LEOPARD OINT\",\"unit\":\"1\",\"cost\":\"1.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2090\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leopard-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1308, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3945\",\"code\":\"2091\",\"name\":\"ODYMIN\",\"unit\":\"1\",\"cost\":\"3.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2091\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"odymin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1309, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3946\",\"code\":\"2092\",\"name\":\"GEBEDOL FORTE\",\"unit\":\"1\",\"cost\":\"40.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2092\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1310, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3947\",\"code\":\"2093\",\"name\":\"MEDSOMOX SUSP\",\"unit\":\"1\",\"cost\":\"4.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2093\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medsomox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1311, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3948\",\"code\":\"2094\",\"name\":\"CRESTOR 5\",\"unit\":\"1\",\"cost\":\"1.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2094\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-5\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1312, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3949\",\"code\":\"2095\",\"name\":\"SUNLIGHT S\\/S\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2095\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sunlight-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1313, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3950\",\"code\":\"2096\",\"name\":\"MEDISOFT\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2096\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medisoft\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1314, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3951\",\"code\":\"2097\",\"name\":\"LUCOZADE B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2097\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucozade-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1315, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3952\",\"code\":\"2098\",\"name\":\"MALIN ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2098\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1316, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3953\",\"code\":\"2099\",\"name\":\"SORE DRESING\",\"unit\":\"1\",\"cost\":\"0.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2099\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sore-dresing\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1317, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3954\",\"code\":\"2100\",\"name\":\"SELECT STRIPS\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2100\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"select-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1318, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3955\",\"code\":\"2101\",\"name\":\"FOLIC ACID LOCAL\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2101\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1319, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3956\",\"code\":\"2102\",\"name\":\"KAMAGRA JELLY\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2102\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamagra-jelly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1320, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3957\",\"code\":\"2103\",\"name\":\"SHALCIP TZ\",\"unit\":\"1\",\"cost\":\"81.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2103\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalcip-tz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1321, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3958\",\"code\":\"2104\",\"name\":\"ENACEF 500\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2104\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1322, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3959\",\"code\":\"2105\",\"name\":\"PREGNCARE BRESTF\",\"unit\":\"1\",\"cost\":\"0.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2105\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregncare-brestf\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1323, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3960\",\"code\":\"2106\",\"name\":\"AMPICILIN CAPS\",\"unit\":\"1\",\"cost\":\"1.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2106\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampicilin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1324, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3961\",\"code\":\"2107\",\"name\":\"CLOXACILLIN CAPS\",\"unit\":\"1\",\"cost\":\"14.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2107\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cloxacillin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1325, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3962\",\"code\":\"2108\",\"name\":\"VOLTIC M\\/S\",\"unit\":\"1\",\"cost\":\"13.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2108\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1326, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3963\",\"code\":\"2109\",\"name\":\"METFOMIN DENK 1000\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2109\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metfomin-denk-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1327, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3964\",\"code\":\"2110\",\"name\":\"LEXPORIN POWDER\",\"unit\":\"1\",\"cost\":\"11.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2110\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexporin-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1328, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3965\",\"code\":\"2111\",\"name\":\"PROCOMIL SPRAY\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2111\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1329, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3966\",\"code\":\"2112\",\"name\":\"PROCMIL TAB\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2112\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"procmil-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1330, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3967\",\"code\":\"2113\",\"name\":\"STOPKOF CHILD\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2113\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1331, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3968\",\"code\":\"2114\",\"name\":\"MALIN JUNIOR\",\"unit\":\"1\",\"cost\":\"31.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2114\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1332, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3969\",\"code\":\"2115\",\"name\":\"FLAGYL ORG SRP\",\"unit\":\"1\",\"cost\":\"62.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2115\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagyl-org-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1333, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3970\",\"code\":\"2116\",\"name\":\"VISIONACE\",\"unit\":\"1\",\"cost\":\"53.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2116\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1334, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3971\",\"code\":\"2117\",\"name\":\"WELLMAN CONCEPTION\",\"unit\":\"1\",\"cost\":\"7.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2117\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellman-conception\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1335, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3972\",\"code\":\"2118\",\"name\":\"CELEBREX\",\"unit\":\"1\",\"cost\":\"6.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2118\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"celebrex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1336, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3973\",\"code\":\"2119\",\"name\":\"OMEGA OIL\",\"unit\":\"1\",\"cost\":\"10.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2119\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1337, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3974\",\"code\":\"2120\",\"name\":\"ROUGH RIDER\",\"unit\":\"1\",\"cost\":\"8.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2120\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rough-rider\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1338, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3975\",\"code\":\"2121\",\"name\":\"GV FLUC SUSP\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2121\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-fluc-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1339, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3976\",\"code\":\"2122\",\"name\":\"GYPRONE SRP\",\"unit\":\"1\",\"cost\":\"1.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2122\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1340, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3977\",\"code\":\"2123\",\"name\":\"INDOCID\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2123\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"indocid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1341, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3978\",\"code\":\"2124\",\"name\":\"OSONS COD LIVER\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2124\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osons-cod-liver\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1342, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3979\",\"code\":\"2125\",\"name\":\"SUPER APETI SRP\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2125\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"super-apeti-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1343, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3980\",\"code\":\"2126\",\"name\":\"APDYL -H COUGH S\'S\",\"unit\":\"1\",\"cost\":\"0.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2126\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1344, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3981\",\"code\":\"2127\",\"name\":\"PAINGAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2127\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paingay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1345, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3982\",\"code\":\"2128\",\"name\":\"DYNEWELL TAB\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2128\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1346, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3983\",\"code\":\"2129\",\"name\":\"PLASTER STRIP\",\"unit\":\"1\",\"cost\":\"59.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2129\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-strip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1347, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3984\",\"code\":\"2130\",\"name\":\"COLESTOP 20\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2130\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colestop-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1348, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3985\",\"code\":\"2131\",\"name\":\"LIPITOR 40\",\"unit\":\"1\",\"cost\":\"0.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2131\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-40\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1349, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3986\",\"code\":\"2132\",\"name\":\"OSTEOCARE SRP LOCAL\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2132\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1350, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3987\",\"code\":\"2133\",\"name\":\"PLASTER STRIP\",\"unit\":\"1\",\"cost\":\"23.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2133\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-strip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1351, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3988\",\"code\":\"2134\",\"name\":\"MMT\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2134\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mmt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1352, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3989\",\"code\":\"2135\",\"name\":\"FFLUCLOX 500\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2135\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ffluclox-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1353, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3990\",\"code\":\"2136\",\"name\":\"MAXITROL\",\"unit\":\"1\",\"cost\":\"11.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2136\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1354, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3991\",\"code\":\"2137\",\"name\":\"CUSIMOLOL\",\"unit\":\"1\",\"cost\":\"9.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cusimolol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1355, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3992\",\"code\":\"2138\",\"name\":\"BRO-ZEDEX\",\"unit\":\"1\",\"cost\":\"8.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2138\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bro-zedex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1356, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3993\",\"code\":\"2139\",\"name\":\"P-ALAXIN TAB\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2139\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"p-alaxin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1357, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3994\",\"code\":\"2140\",\"name\":\"FUROSEMIDE CRESCENT 20\",\"unit\":\"1\",\"cost\":\"32.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2140\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-crescent-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1358, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3995\",\"code\":\"2141\",\"name\":\"CARVEDILOL 6.25 EXETER\",\"unit\":\"1\",\"cost\":\"3.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2141\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carvedilol-625-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1359, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3996\",\"code\":\"2142\",\"name\":\"BIO OIL\",\"unit\":\"1\",\"cost\":\"18.0600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2142\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bio-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1360, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3997\",\"code\":\"2143\",\"name\":\"METRO -Z\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2143\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-z\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1361, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3998\",\"code\":\"2144\",\"name\":\"PARLODEL\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2144\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1362, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3999\",\"code\":\"2145\",\"name\":\"BELLS OLIVE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2145\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-olive\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1363, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4000\",\"code\":\"2146\",\"name\":\"ESSENTIAL M\\/S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2146\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essential-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1364, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4001\",\"code\":\"2147\",\"name\":\"LIPITON YELLOW\",\"unit\":\"1\",\"cost\":\"0.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2147\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipiton-yellow\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1365, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4002\",\"code\":\"2148\",\"name\":\"RAID\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2148\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"raid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1366, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4003\",\"code\":\"2149\",\"name\":\"FLORA TISSUE\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2149\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flora-tissue\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1367, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4004\",\"code\":\"2150\",\"name\":\"SAVLON 500ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2150\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1368, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4005\",\"code\":\"2151\",\"name\":\"ORAL B PASTE\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2151\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1369, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4006\",\"code\":\"2152\",\"name\":\"SULFER 18 POWD\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2152\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sulfer-18-powd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1370, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4007\",\"code\":\"2153\",\"name\":\"SIVODERM POWD\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2153\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-powd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1371, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4008\",\"code\":\"2154\",\"name\":\"JRA M\\/S\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2154\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1372, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4009\",\"code\":\"2155\",\"name\":\"JRA S\\/S\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2155\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1373, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4010\",\"code\":\"2156\",\"name\":\"EVERSHEEN CREAM\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2156\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1374, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4011\",\"code\":\"2157\",\"name\":\"QUEEN ELIZ CREAM M\\/S\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2157\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-eliz-cream-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1375, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4012\",\"code\":\"2158\",\"name\":\"QUEEN CREAM S\\/S\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2158\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-cream-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1376, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4013\",\"code\":\"2159\",\"name\":\"QUEEN LOTIN M\\/S\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2159\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotin-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1377, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4014\",\"code\":\"2160\",\"name\":\"QUEEN LOTION M\\/S\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2160\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotion-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1378, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4015\",\"code\":\"2161\",\"name\":\"QUEEN LOTION S\\/S\",\"unit\":\"1\",\"cost\":\"0.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2161\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotion-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1379, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4016\",\"code\":\"2162\",\"name\":\"E PANOL\",\"unit\":\"1\",\"cost\":\"0.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2162\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"e-panol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1380, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4017\",\"code\":\"2163\",\"name\":\"ZUBES TAB\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2163\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1381, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4018\",\"code\":\"2164\",\"name\":\"MENTOS TAB\",\"unit\":\"1\",\"cost\":\"37.4100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2164\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1382, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4019\",\"code\":\"2165\",\"name\":\"CHEWETTE\",\"unit\":\"1\",\"cost\":\"2.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2165\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chewette\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1383, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4020\",\"code\":\"2166\",\"name\":\"INFACOL 55ML\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"infacol-55ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1384, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4021\",\"code\":\"2167\",\"name\":\"TYLENOL EXTRA\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2167\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol-extra1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1385, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4022\",\"code\":\"2168\",\"name\":\"JS SANITIZER\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2168\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1386, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4023\",\"code\":\"2169\",\"name\":\"SANITIZER BS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2169\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1387, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4024\",\"code\":\"2170\",\"name\":\"SANITIZER\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2170\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1388, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4025\",\"code\":\"2171\",\"name\":\"SIVODERM SANITIZER\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2171\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1389, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4026\",\"code\":\"2172\",\"name\":\"KLEANZ SS\",\"unit\":\"1\",\"cost\":\"27.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2172\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleanz-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1390, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4027\",\"code\":\"2173\",\"name\":\"CAREX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2173\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1391, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4028\",\"code\":\"2174\",\"name\":\"CYPRODINE SRP\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2174\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1392, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4029\",\"code\":\"2175\",\"name\":\"SHOE POLISH\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2175\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shoe-polish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1393, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4030\",\"code\":\"2176\",\"name\":\"RAZOR MEN\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2176\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"razor-men\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1394, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4031\",\"code\":\"2177\",\"name\":\"RAZOR M&W\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2177\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"razor-mw\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1395, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4032\",\"code\":\"2178\",\"name\":\"RAZ MW S\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2178\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"raz-mw-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1396, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4033\",\"code\":\"2179\",\"name\":\"FACIAL ORGANIC COTTON\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2179\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"facial-organic-cotton\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1397, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4034\",\"code\":\"2180\",\"name\":\"ZIGZAG COTTON\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2180\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zigzag-cotton\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1398, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4035\",\"code\":\"2181\",\"name\":\"STOPCOUGH COD\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2181\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopcough-cod\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1399, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4036\",\"code\":\"2182\",\"name\":\"FACIAL SQUEEZE\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"facial-squeeze\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1400, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4037\",\"code\":\"2183\",\"name\":\"CLAVU-DOR 1000\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2183\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clavu-dor-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1401, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4038\",\"code\":\"2184\",\"name\":\"CLAVU-DOR 625\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2184\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clavu-dor-625\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1402, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4039\",\"code\":\"2185\",\"name\":\"MOSQUITOE BANGLES\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2185\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mosquitoe-bangles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1403, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4040\",\"code\":\"2186\",\"name\":\"GUCIFER 750\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2186\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gucifer-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1404, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4041\",\"code\":\"2187\",\"name\":\"ZOATERM DS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2187\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zoaterm-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1405, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4042\",\"code\":\"2188\",\"name\":\"ZOATERM FORTE\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2188\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zoaterm-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1406, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4043\",\"code\":\"2189\",\"name\":\"DUO COTECSON\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2189\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"duo-cotecson\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1407, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4044\",\"code\":\"2190\",\"name\":\"COTTON BUD\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2190\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1408, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4045\",\"code\":\"2191\",\"name\":\"INTERLECTOL\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2191\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"interlectol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1409, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4046\",\"code\":\"2192\",\"name\":\"FACIAL MASK\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2192\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"facial-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1410, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4047\",\"code\":\"2193\",\"name\":\"LOSACAR 100\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2193\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losacar-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1411, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4048\",\"code\":\"2194\",\"name\":\"DINAC 75\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2194\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dinac-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1412, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4049\",\"code\":\"2195\",\"name\":\"CLARITROMYCIN  500\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2195\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"claritromycin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1413, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4050\",\"code\":\"2196\",\"name\":\"AZILEX 250\",\"unit\":\"1\",\"cost\":\"4.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2196\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1414, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4051\",\"code\":\"2197\",\"name\":\"ATENOLOL 50\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2197\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atenolol-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1415, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4052\",\"code\":\"2198\",\"name\":\"ATENOLOL 100\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2198\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atenolol-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1416, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4053\",\"code\":\"2199\",\"name\":\"POWER HOUSE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2199\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"power-house\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1417, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4054\",\"code\":\"2200\",\"name\":\"JS S\\/S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2200\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1418, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4055\",\"code\":\"2201\",\"name\":\"JS B\\/S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2201\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1419, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4056\",\"code\":\"2202\",\"name\":\"FREE STEP\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2202\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"free-step\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1420, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4057\",\"code\":\"2203\",\"name\":\"LOVILEA\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2203\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lovilea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1421, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4058\",\"code\":\"2204\",\"name\":\"JS B\\/S\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2204\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1422, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4059\",\"code\":\"2205\",\"name\":\"KLEANZ 100ML\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2205\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleanz-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1423, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4060\",\"code\":\"2206\",\"name\":\"CAREX S\\/S\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2206\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carex-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1424, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4061\",\"code\":\"2207\",\"name\":\"DAS VIT C\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2207\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"das-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1425, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4062\",\"code\":\"2208\",\"name\":\"GLOVES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2208\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gloves\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1426, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4063\",\"code\":\"2209\",\"name\":\"HAND CREAM\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2209\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hand-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1427, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4064\",\"code\":\"2210\",\"name\":\"SANITIZER BB\\/S\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2210\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1428, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4065\",\"code\":\"2211\",\"name\":\"COTTON 100G\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2211\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1429, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4066\",\"code\":\"2212\",\"name\":\"BELLS OLIVE B\\/S\",\"unit\":\"1\",\"cost\":\"18.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2212\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-olive-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1430, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4067\",\"code\":\"2213\",\"name\":\"DEXATROL OINT\",\"unit\":\"1\",\"cost\":\"24.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2213\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1431, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4068\",\"code\":\"2214\",\"name\":\"MENOPACE\",\"unit\":\"1\",\"cost\":\"1.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2214\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menopace\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1432, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4069\",\"code\":\"2215\",\"name\":\"FLOTAC 75\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2215\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flotac-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1433, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4070\",\"code\":\"2216\",\"name\":\"OMEPRAZOLE HYCID\",\"unit\":\"1\",\"cost\":\"11.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2216\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprazole-hycid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1434, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4071\",\"code\":\"2217\",\"name\":\"SALICYLIC ACID\",\"unit\":\"1\",\"cost\":\"73.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2217\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salicylic-acid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1435, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4072\",\"code\":\"2218\",\"name\":\"ITCHTAMOL\",\"unit\":\"1\",\"cost\":\"7.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2218\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"itchtamol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1436, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4073\",\"code\":\"2219\",\"name\":\"NORVASC 10\",\"unit\":\"1\",\"cost\":\"10.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2219\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"norvasc-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1437, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4074\",\"code\":\"2220\",\"name\":\"CANDIDERM CREAM\",\"unit\":\"1\",\"cost\":\"7.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2220\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1438, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4075\",\"code\":\"2221\",\"name\":\"ADUTWUMUA CAPS\",\"unit\":\"1\",\"cost\":\"4.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2221\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adutwumua-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1439, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4076\",\"code\":\"2222\",\"name\":\"LIVERPLEX -B ADULT\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2222\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1440, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4077\",\"code\":\"2223\",\"name\":\"FUROSEMIDE 40 TEVA\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2223\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-40-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1441, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4078\",\"code\":\"2224\",\"name\":\"POLYFER 200ML\",\"unit\":\"1\",\"cost\":\"8.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2224\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1442, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4079\",\"code\":\"2225\",\"name\":\"CABOZAP ADULT\",\"unit\":\"1\",\"cost\":\"3.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2225\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cabozap-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1443, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4080\",\"code\":\"2226\",\"name\":\"CANDID V-3\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2226\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-v-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1444, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4081\",\"code\":\"2227\",\"name\":\"ABC VIT C SRP\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2227\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abc-vit-c-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1445, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4082\",\"code\":\"2228\",\"name\":\"ASCORBIN SRP\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2228\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascorbin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1446, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4083\",\"code\":\"2229\",\"name\":\"PREMECO CAPS\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2229\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"premeco-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1447, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4084\",\"code\":\"2230\",\"name\":\"STRONG BCO\",\"unit\":\"1\",\"cost\":\"22.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2230\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"strong-bco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1448, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4085\",\"code\":\"2231\",\"name\":\"SILVERBIRD\",\"unit\":\"1\",\"cost\":\"12.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2231\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"silverbird\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1449, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4086\",\"code\":\"2232\",\"name\":\"HOT WAT BOT COVERED\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2232\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wat-bot-covered\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1450, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4087\",\"code\":\"2233\",\"name\":\"HOT WAT BOT\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2233\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wat-bot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1451, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4088\",\"code\":\"2234\",\"name\":\"OMEGA-H3 CAPS\",\"unit\":\"1\",\"cost\":\"7.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2234\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-h3-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1452, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4089\",\"code\":\"2235\",\"name\":\"DREZ SOLN 100ML\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2235\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-soln-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1453, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4090\",\"code\":\"2236\",\"name\":\"AMITRIPTLINE 25MG\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2236\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amitriptline-25mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1454, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4091\",\"code\":\"2237\",\"name\":\"SOLUBLE VIT C\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2237\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1455, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4092\",\"code\":\"2238\",\"name\":\"YAZZ BRUSH\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2238\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yazz-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1456, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4093\",\"code\":\"2239\",\"name\":\"DETTOL SOAP\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2239\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dettol-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1457, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4094\",\"code\":\"2240\",\"name\":\"CAMEL SOAP\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1458, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4095\",\"code\":\"2241\",\"name\":\"SHOWER ROLL ON\",\"unit\":\"1\",\"cost\":\"4.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2241\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shower-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1459, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4096\",\"code\":\"2242\",\"name\":\"SURE ROLL ON\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2242\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sure-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1460, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4097\",\"code\":\"2243\",\"name\":\"AMLODIPINE 10 TEVA\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2243\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlodipine-10-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1461, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4098\",\"code\":\"2244\",\"name\":\"COLGATE BRUSH DOUBLE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2244\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-brush-double\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1462, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4099\",\"code\":\"2245\",\"name\":\"COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"7.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2245\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1463, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4100\",\"code\":\"2246\",\"name\":\"PEPSODENT 123\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2246\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-123\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1464, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4101\",\"code\":\"2247\",\"name\":\"AMOXIL 500\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2247\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1465, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4102\",\"code\":\"2248\",\"name\":\"GOFEX\",\"unit\":\"1\",\"cost\":\"32.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2248\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gofex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1466, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4103\",\"code\":\"2249\",\"name\":\"OLFEN-100 CAPS\",\"unit\":\"1\",\"cost\":\"27.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2249\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olfen-100-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1467, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4104\",\"code\":\"2250\",\"name\":\"TENTEX ROYAL\",\"unit\":\"1\",\"cost\":\"43.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2250\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tentex-royal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1468, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4105\",\"code\":\"2251\",\"name\":\"CONFIDO\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2251\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"confido\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1469, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4106\",\"code\":\"2252\",\"name\":\"CORSODYL B\\/B 500ML\",\"unit\":\"1\",\"cost\":\"31.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2252\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"corsodyl-bb-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1470, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4107\",\"code\":\"2253\",\"name\":\"GUDAPET CAPS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2253\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1471, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4108\",\"code\":\"2254\",\"name\":\"LARIAM\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lariam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1472, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4109\",\"code\":\"2255\",\"name\":\"RUBBING ALC S\\/S\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2255\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-alc-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1473, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4110\",\"code\":\"2256\",\"name\":\"AMLODIPINE 5MG TEVA\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlodipine-5mg-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1474, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4111\",\"code\":\"2257\",\"name\":\"PANADOL ADVANCE\",\"unit\":\"1\",\"cost\":\"20.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2257\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panadol-advance\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1475, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4112\",\"code\":\"2258\",\"name\":\"DF118\",\"unit\":\"1\",\"cost\":\"1.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2258\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"df118\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1476, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4113\",\"code\":\"2259\",\"name\":\"SUDOCREAM 60G\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2259\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudocream-60g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1477, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4114\",\"code\":\"2260\",\"name\":\"ROBAXIN-750\",\"unit\":\"1\",\"cost\":\"23.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2260\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"robaxin-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1478, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4115\",\"code\":\"2261\",\"name\":\"APTIZOOM\",\"unit\":\"1\",\"cost\":\"43.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2261\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aptizoom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1479, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4116\",\"code\":\"2262\",\"name\":\"DARKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"8.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2262\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"darktacort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1480, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4117\",\"code\":\"2263\",\"name\":\"CLARYTIN SRP\",\"unit\":\"1\",\"cost\":\"5.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2263\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clarytin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1481, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4118\",\"code\":\"2264\",\"name\":\"LOSAR DENK 50\",\"unit\":\"1\",\"cost\":\"18.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2264\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losar-denk-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1482, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4119\",\"code\":\"2265\",\"name\":\"NEXCOFER CAPS\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexcofer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1483, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4120\",\"code\":\"2266\",\"name\":\"WELLKID TAB\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2266\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellkid-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1484, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4121\",\"code\":\"2267\",\"name\":\"NIVEA FAIRNESS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2267\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-fairness\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1485, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4122\",\"code\":\"2268\",\"name\":\"NIVEA\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2268\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1486, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4123\",\"code\":\"2269\",\"name\":\"NIVEA CLEANSER\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2269\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-cleanser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1487, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4124\",\"code\":\"2270\",\"name\":\"NIVEA ROLL ON\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2270\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1488, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4125\",\"code\":\"2271\",\"name\":\"AFTER SHAVE\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"after-shave\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1489, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4126\",\"code\":\"2272\",\"name\":\"NIVEA SPRAY\",\"unit\":\"1\",\"cost\":\"4.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2272\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1490, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4127\",\"code\":\"2273\",\"name\":\"NIVEA INVISIBLE ROLL ON\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2273\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-invisible-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1491, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4128\",\"code\":\"2274\",\"name\":\"GLUCORANGE\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2274\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucorange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1492, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4129\",\"code\":\"2275\",\"name\":\"SELEVITE\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2275\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1493, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4130\",\"code\":\"2276\",\"name\":\"NIVEA SHOWER GEL B\\/S\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2276\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-shower-gel-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1494, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4131\",\"code\":\"2277\",\"name\":\"NIVEA SHOWER S\\/S\",\"unit\":\"1\",\"cost\":\"13.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2277\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-shower-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1495, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4132\",\"code\":\"2278\",\"name\":\"IVY,S SANITIZER\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ivys-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1496, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4133\",\"code\":\"2279\",\"name\":\"IMBOOST\",\"unit\":\"1\",\"cost\":\"6.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imboost1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1497, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4134\",\"code\":\"2280\",\"name\":\"LEENA CAPS\",\"unit\":\"1\",\"cost\":\"0.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leena-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1498, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4135\",\"code\":\"2281\",\"name\":\"LEENA SRP\",\"unit\":\"1\",\"cost\":\"4.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leena-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1499, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4136\",\"code\":\"2282\",\"name\":\"GLIBENIL TAB\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2282\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glibenil-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1500, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4137\",\"code\":\"2283\",\"name\":\"BUSCOLEX\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"buscolex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1501, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4138\",\"code\":\"2284\",\"name\":\"NEXIUM 40 28S\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2284\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-40-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1502, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4139\",\"code\":\"2285\",\"name\":\"DETOL 750MLS\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2285\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-750mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1503, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4140\",\"code\":\"2286\",\"name\":\"DETOL 500ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1504, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4141\",\"code\":\"2287\",\"name\":\"DETOL 165ML\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2287\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-165ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1505, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4142\",\"code\":\"2288\",\"name\":\"DETOL 7MLS\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-7mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1506, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4143\",\"code\":\"2289\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1507, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4144\",\"code\":\"2290\",\"name\":\"SAVLON 750ML\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2290\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1508, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4145\",\"code\":\"2291\",\"name\":\"PREETY LADY PAD\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2291\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"preety-lady-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1509, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4146\",\"code\":\"2292\",\"name\":\"TENDRINA LOTN B\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-lotn-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1510, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4147\",\"code\":\"2293\",\"name\":\"TENDRINA LTN S\\/S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-ltn-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1511, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4148\",\"code\":\"2294\",\"name\":\"TENDRINA CREAM\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2294\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1512, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4149\",\"code\":\"2295\",\"name\":\"TENDRINA CREAMS\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2295\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-creamss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1513, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4150\",\"code\":\"2296\",\"name\":\"QUEEN ELIZ BBS\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2296\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-eliz-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1514, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4151\",\"code\":\"2297\",\"name\":\"EVERSHEEN LTIN BS\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2297\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-ltin-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1515, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4152\",\"code\":\"2298\",\"name\":\"EVERSHEEN LTN MS\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2298\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-ltn-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1516, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4153\",\"code\":\"2299\",\"name\":\"EVERSHEEN LTN SS\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2299\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-ltn-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1517, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4154\",\"code\":\"2300\",\"name\":\"DAPREX CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daprex-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1518, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4155\",\"code\":\"2301\",\"name\":\"RUBBIN ALC 500ML\",\"unit\":\"1\",\"cost\":\"12.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2301\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rubbin-alc-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1519, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4156\",\"code\":\"2302\",\"name\":\"MAGNESIUM TAB\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magnesium-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1520, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4157\",\"code\":\"2303\",\"name\":\"EFFV MULTIVITAMIN\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"effv-multivitamin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1521, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4158\",\"code\":\"2304\",\"name\":\"P TEST KIT\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2304\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"p-test-kit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1522, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4159\",\"code\":\"2305\",\"name\":\"AIDKIT\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2305\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aidkit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1523, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4160\",\"code\":\"2306\",\"name\":\"G-ABZOLE\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2306\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"g-abzole\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1524, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4161\",\"code\":\"2307\",\"name\":\"HONEY 500ML\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1525, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4162\",\"code\":\"2308\",\"name\":\"HONEY 250\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2308\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1526, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4163\",\"code\":\"2309\",\"name\":\"DENTAL FLOSS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2309\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dental-floss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1527, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4164\",\"code\":\"2310\",\"name\":\"GINGER POWDER\",\"unit\":\"1\",\"cost\":\"8.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2310\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginger-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1528, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4165\",\"code\":\"2311\",\"name\":\"MOODS COND\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2311\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"moods-cond\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1529, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4166\",\"code\":\"2312\",\"name\":\"PRAZIQUANTEL\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2312\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"praziquantel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1530, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4167\",\"code\":\"2313\",\"name\":\"FACE MASK\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1531, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4168\",\"code\":\"2314\",\"name\":\"DUROL 300ML\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2314\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1532, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4169\",\"code\":\"2315\",\"name\":\"DIAZEPAM 10MG\",\"unit\":\"1\",\"cost\":\"0.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2315\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diazepam-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1533, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4170\",\"code\":\"2316\",\"name\":\"NIVEA FAIRNESS\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2316\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-fairness\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1534, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4171\",\"code\":\"2317\",\"name\":\"IBUCAP\",\"unit\":\"1\",\"cost\":\"44.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2317\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1535, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4172\",\"code\":\"2318\",\"name\":\"LUCAZADE CAN\",\"unit\":\"1\",\"cost\":\"35.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2318\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucazade-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1536, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4173\",\"code\":\"2319\",\"name\":\"CARDIOACE PLUS\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2319\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1537, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4174\",\"code\":\"2320\",\"name\":\"HERBAL SLIMMING TEA\",\"unit\":\"1\",\"cost\":\"43.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-slimming-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1538, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4175\",\"code\":\"2321\",\"name\":\"CITY TONIC\",\"unit\":\"1\",\"cost\":\"23.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2321\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"city-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1539, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4176\",\"code\":\"2322\",\"name\":\"VIT B1\",\"unit\":\"1\",\"cost\":\"28.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1540, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4177\",\"code\":\"2323\",\"name\":\"VIT B6\",\"unit\":\"1\",\"cost\":\"74.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2323\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1541, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4178\",\"code\":\"2324\",\"name\":\"SAMOCID\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samocid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1542, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4179\",\"code\":\"2325\",\"name\":\"NEO MEDROL\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2325\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-medrol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1543, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4180\",\"code\":\"2326\",\"name\":\"LIQUID PARRAFIN\",\"unit\":\"1\",\"cost\":\"9.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liquid-parrafin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1544, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4181\",\"code\":\"2327\",\"name\":\"CYFEN TAB\",\"unit\":\"1\",\"cost\":\"2.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cyfen-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1545, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4182\",\"code\":\"2328\",\"name\":\"CYFEN SRP\",\"unit\":\"1\",\"cost\":\"43.5700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cyfen-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1546, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4183\",\"code\":\"2329\",\"name\":\"C-PHENAMIN SRP\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2329\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"c-phenamin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1547, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4184\",\"code\":\"2330\",\"name\":\"OMEGAH H3 LIQUID\",\"unit\":\"1\",\"cost\":\"42.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2330\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omegah-h3-liquid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1548, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4185\",\"code\":\"2331\",\"name\":\"LUEX ADULT CHESTY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult-chesty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1549, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4186\",\"code\":\"2332\",\"name\":\"VISIONACE PLUS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2332\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1550, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4187\",\"code\":\"2333\",\"name\":\"COAFS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2333\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coafs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1551, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4188\",\"code\":\"2334\",\"name\":\"ALPHA VIT C\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1552, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4189\",\"code\":\"2335\",\"name\":\"CHOCOLATE M\\/S\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2335\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1553, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4190\",\"code\":\"2336\",\"name\":\"ENTRAMOL PLUS\",\"unit\":\"1\",\"cost\":\"43.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2336\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1554, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4191\",\"code\":\"2337\",\"name\":\"COMBACT-N\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2337\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"combact-n\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1555, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4192\",\"code\":\"2338\",\"name\":\"LACTULOSE 500ML\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2338\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lactulose-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1556, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4193\",\"code\":\"2339\",\"name\":\"JAGUAR CREAM\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2339\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jaguar-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1557, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4194\",\"code\":\"2340\",\"name\":\"BIOVID FORTE\",\"unit\":\"1\",\"cost\":\"34.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2340\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"biovid-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1558, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4195\",\"code\":\"2341\",\"name\":\"DR CHRIS OMEGA\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2341\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dr-chris-omega\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1559, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4196\",\"code\":\"2342\",\"name\":\"TCP\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1560, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4197\",\"code\":\"2343\",\"name\":\"VALUPAC BCO\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2343\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"valupac-bco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1561, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4198\",\"code\":\"2344\",\"name\":\"HAIRFOLLIC\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2344\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hairfollic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1562, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4199\",\"code\":\"2345\",\"name\":\"COLGATE CHARC\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-charc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1563, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4200\",\"code\":\"2346\",\"name\":\"ASCOBIN TAB\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascobin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1564, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4201\",\"code\":\"2347\",\"name\":\"PROSTAT 60\",\"unit\":\"1\",\"cost\":\"6.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2347\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-601\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1565, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4202\",\"code\":\"2348\",\"name\":\"PROSLUV CAPS\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2348\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1566, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4203\",\"code\":\"2349\",\"name\":\"GASTRONE SUSP\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2349\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastrone-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1567, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4204\",\"code\":\"2350\",\"name\":\"ALKA SRP\",\"unit\":\"1\",\"cost\":\"44.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2350\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alka-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1568, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4205\",\"code\":\"2351\",\"name\":\"ALLOPURINOL 300\",\"unit\":\"1\",\"cost\":\"29.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2351\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"allopurinol-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1569, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4206\",\"code\":\"2352\",\"name\":\"NYSTATIN ORAL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2352\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nystatin-oral\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1570, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4207\",\"code\":\"2353\",\"name\":\"LIV 52 TAB\",\"unit\":\"1\",\"cost\":\"10.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2353\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liv-52-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1571, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4208\",\"code\":\"2354\",\"name\":\"VITAFOL\",\"unit\":\"1\",\"cost\":\"27.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2354\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1572, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4209\",\"code\":\"2355\",\"name\":\"CARVEDILOL 12.5 EXETER\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2355\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carvedilol-125-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1573, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4210\",\"code\":\"2356\",\"name\":\"OLIGOCARE\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2356\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oligocare1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1574, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4211\",\"code\":\"2357\",\"name\":\"SWEET PAMPERS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2357\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweet-pampers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1575, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4212\",\"code\":\"2358\",\"name\":\"ROMA SPRAY\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2358\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"roma-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1576, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4213\",\"code\":\"2359\",\"name\":\"OUTSPRAY\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2359\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"outspray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1577, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4214\",\"code\":\"2360\",\"name\":\"~COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2360\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1578, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4215\",\"code\":\"2361\",\"name\":\"TISSUE B\\\\S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2361\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tissue-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1579, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4216\",\"code\":\"2362\",\"name\":\"SMILE BABY\",\"unit\":\"1\",\"cost\":\"2.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2362\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smile-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1580, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4217\",\"code\":\"2363\",\"name\":\"HYDROCT CRAEM L\\\\S\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2363\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydroct-craem-ls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1581, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4218\",\"code\":\"2364\",\"name\":\"GEBEDOL PLUS\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2364\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1582, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4219\",\"code\":\"2365\",\"name\":\"ROOTER LIFE\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2365\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-life1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1583, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4220\",\"code\":\"2366\",\"name\":\"FEROVITA SRP\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2366\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferovita-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1584, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4221\",\"code\":\"2367\",\"name\":\"SICKAZINK\",\"unit\":\"1\",\"cost\":\"11.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2367\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sickazink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1585, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4222\",\"code\":\"2368\",\"name\":\"ABYVITA SRP\",\"unit\":\"1\",\"cost\":\"6.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2368\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abyvita-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1586, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4223\",\"code\":\"2369\",\"name\":\"FEROLLEX SRP\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2369\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferollex-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1587, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4224\",\"code\":\"2370\",\"name\":\"OROFER\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2370\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orofer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1588, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4225\",\"code\":\"2371\",\"name\":\"KLIRE ANTACID\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2371\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"klire-antacid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1589, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4226\",\"code\":\"2372\",\"name\":\"HEPTOLIFE\",\"unit\":\"1\",\"cost\":\"4.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2372\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"heptolife\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1590, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4227\",\"code\":\"2373\",\"name\":\"MV PRO\",\"unit\":\"1\",\"cost\":\"5.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2373\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mv-pro\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1591, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4228\",\"code\":\"2374\",\"name\":\"SHALATERM TAB\",\"unit\":\"1\",\"cost\":\"5.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2374\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalaterm-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1592, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4229\",\"code\":\"2375\",\"name\":\"SHALATERM SUSP\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2375\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalaterm-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1593, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4230\",\"code\":\"2376\",\"name\":\"CARTEF DS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2376\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1594, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4231\",\"code\":\"2377\",\"name\":\"CARTEF SUSP\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2377\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1595, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4232\",\"code\":\"2378\",\"name\":\"INTAVITA\",\"unit\":\"1\",\"cost\":\"0.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2378\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"intavita\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1596, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4233\",\"code\":\"2379\",\"name\":\"ESKADOL\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2379\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eskadol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1597, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4234\",\"code\":\"2380\",\"name\":\"RONADOL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2380\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronadol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1598, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4235\",\"code\":\"2381\",\"name\":\"DUROMINE\",\"unit\":\"1\",\"cost\":\"1.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2381\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"duromine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1599, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4236\",\"code\":\"2382\",\"name\":\"GARLIC PEARLS OSONS\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2382\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"garlic-pearls-osons\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1600, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4237\",\"code\":\"2383\",\"name\":\"DICLONOVA PLUS\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2383\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclonova-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1601, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4238\",\"code\":\"2384\",\"name\":\"BELLS HYDROGEN\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2384\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-hydrogen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1602, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4239\",\"code\":\"2385\",\"name\":\"MYCOLEX POWDER\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2385\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-powder1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1603, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4240\",\"code\":\"2386\",\"name\":\"CELGIVITY\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2386\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"celgivity\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1604, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4241\",\"code\":\"2387\",\"name\":\"FEROGLOBIN PLUS\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2387\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1605, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4242\",\"code\":\"2388\",\"name\":\"VIREST CREAM\",\"unit\":\"1\",\"cost\":\"52.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2388\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"virest-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1606, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4243\",\"code\":\"2389\",\"name\":\"LIPSORE CREAM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2389\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipsore-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1607, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4244\",\"code\":\"2390\",\"name\":\"WELLMAN 70\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2390\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellman-70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1608, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4245\",\"code\":\"2391\",\"name\":\"MAGIC SHAVIN POWDER\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2391\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-shavin-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1609, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4246\",\"code\":\"2392\",\"name\":\"MAGIC SHAVING CREAM\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2392\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-shaving-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1610, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4247\",\"code\":\"2393\",\"name\":\"NILOL TAB\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2393\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nilol-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1611, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4248\",\"code\":\"2394\",\"name\":\"VASELINE CREAM\",\"unit\":\"1\",\"cost\":\"0.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2394\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaseline-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1612, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4249\",\"code\":\"2395\",\"name\":\"GIVING SET\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2395\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"giving-set\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1613, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4250\",\"code\":\"2396\",\"name\":\"FASTMELT\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2396\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fastmelt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1614, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4251\",\"code\":\"2397\",\"name\":\"AMOXIL SUSP UKK\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2397\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-susp-ukk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1615, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4252\",\"code\":\"2398\",\"name\":\"JRA B\'S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2398\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1616, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4253\",\"code\":\"2399\",\"name\":\"NIVEA SPRAY INVISIBLE\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2399\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-spray-invisible\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1617, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4254\",\"code\":\"2400\",\"name\":\"ZIPFERON SRP\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2400\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zipferon-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1618, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4255\",\"code\":\"2401\",\"name\":\"PIRITON ORG SRP\",\"unit\":\"1\",\"cost\":\"31.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2401\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-org-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1619, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4256\",\"code\":\"2402\",\"name\":\"BEST VIT C 1000\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2402\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"best-vit-c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1620, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4257\",\"code\":\"2403\",\"name\":\"WOODWOARDS\",\"unit\":\"1\",\"cost\":\"8.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2403\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"woodwoards\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1621, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4258\",\"code\":\"2404\",\"name\":\"FERTILO FORT\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2404\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fertilo-fort\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1622, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4259\",\"code\":\"2405\",\"name\":\"CEFIXIME TAB\",\"unit\":\"1\",\"cost\":\"7.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2405\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefixime-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1623, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4260\",\"code\":\"2406\",\"name\":\"VIT E 400 VALUPAK\",\"unit\":\"1\",\"cost\":\"9.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2406\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-400-valupak\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1624, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4261\",\"code\":\"2407\",\"name\":\"FOLIC 30S VAL\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2407\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30s-val\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1625, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4262\",\"code\":\"2408\",\"name\":\"FOLIC ACID 90S VALPK\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2408\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-90s-valpk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1626, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4263\",\"code\":\"2409\",\"name\":\"EVENING PRIMROSE\",\"unit\":\"1\",\"cost\":\"30.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2409\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"evening-primrose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1627, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4264\",\"code\":\"2410\",\"name\":\"NUROFEN SRP\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2410\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nurofen-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1628, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4265\",\"code\":\"2411\",\"name\":\"SUDAFED TAB\",\"unit\":\"1\",\"cost\":\"66.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2411\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudafed-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1629, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4266\",\"code\":\"2412\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"35.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2412\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bumper-cd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1630, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4267\",\"code\":\"2413\",\"name\":\"ORELOX SUSP\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2413\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1631, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4268\",\"code\":\"2414\",\"name\":\"OPTREX EYE DROP\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2414\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1632, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4269\",\"code\":\"2415\",\"name\":\"RAMIPRIL CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2415\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ramipril-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1633, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4270\",\"code\":\"2416\",\"name\":\"TINY VITE DROP\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2416\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1634, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4271\",\"code\":\"2417\",\"name\":\"ZENTEL SUSP\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2417\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zentel-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1635, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4272\",\"code\":\"2418\",\"name\":\"DIPROSIN\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2418\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diprosin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1636, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4273\",\"code\":\"2419\",\"name\":\"BECHAMS ALL IN ONE\",\"unit\":\"1\",\"cost\":\"55.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2419\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bechams-all-in-one\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1637, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4274\",\"code\":\"2420\",\"name\":\"JARIFAN CAPS\",\"unit\":\"1\",\"cost\":\"22.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2420\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1638, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4275\",\"code\":\"2421\",\"name\":\"WELLWOMAN 50 PLUS\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2421\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1639, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4276\",\"code\":\"2422\",\"name\":\"PEPTO BISMOL S\\/S\",\"unit\":\"1\",\"cost\":\"5.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2422\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1640, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4277\",\"code\":\"2423\",\"name\":\"SPANISH FLY\",\"unit\":\"1\",\"cost\":\"1.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2423\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spanish-fly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1641, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4278\",\"code\":\"2424\",\"name\":\"LISINOPRIL 20 TEVA\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2424\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-20-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1642, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4279\",\"code\":\"2425\",\"name\":\"MEBENDA\",\"unit\":\"1\",\"cost\":\"66.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2425\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mebenda\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1643, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4280\",\"code\":\"2426\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"35.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2426\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bumper-cd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1644, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4281\",\"code\":\"2427\",\"name\":\"ORELOX SUSP\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2427\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1645, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4282\",\"code\":\"2428\",\"name\":\"OPTREX EYE DROP\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2428\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1646, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4283\",\"code\":\"2429\",\"name\":\"PIKOVIT SRP\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2429\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pikovit-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1647, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4284\",\"code\":\"2430\",\"name\":\"SPANISH FLY\",\"unit\":\"1\",\"cost\":\"1.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2430\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spanish-fly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1648, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4285\",\"code\":\"2431\",\"name\":\"LOSATARN TEVA 50\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2431\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losatarn-teva-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1649, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4286\",\"code\":\"2432\",\"name\":\"AVOMINE TAB\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2432\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"avomine-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1650, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4287\",\"code\":\"2433\",\"name\":\"DIGOXIN 125 ALMUS\",\"unit\":\"1\",\"cost\":\"1.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2433\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-125-almus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1651, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4288\",\"code\":\"2434\",\"name\":\"MEDICAL ICE COOL\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2434\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medical-ice-cool\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1652, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4289\",\"code\":\"2435\",\"name\":\"IBUCAP SHALINA S\\/S\",\"unit\":\"1\",\"cost\":\"28.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2435\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap-shalina-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1653, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4290\",\"code\":\"2436\",\"name\":\"ALDOMET 250\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2436\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aldomet-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1654, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4291\",\"code\":\"2437\",\"name\":\"AZOMAX SUSP\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2437\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azomax-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1655, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4292\",\"code\":\"2438\",\"name\":\"FOLIC ACID CRESCENT 28S\",\"unit\":\"1\",\"cost\":\"17.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2438\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-crescent-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1656, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4293\",\"code\":\"2439\",\"name\":\"DAFLON 500\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2439\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1657, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4294\",\"code\":\"2440\",\"name\":\"SALBUTAMOL CFC INH\",\"unit\":\"1\",\"cost\":\"7.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2440\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salbutamol-cfc-inh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1658, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4295\",\"code\":\"2441\",\"name\":\"AMLO-DENK 5MG\",\"unit\":\"1\",\"cost\":\"56.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2441\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlo-denk-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1659, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4296\",\"code\":\"2442\",\"name\":\"AMLO DENK 10MG\",\"unit\":\"1\",\"cost\":\"4.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2442\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlo-denk-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1660, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4297\",\"code\":\"2443\",\"name\":\"DAYNURSE LIQUID\",\"unit\":\"1\",\"cost\":\"48.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2443\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daynurse-liquid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1661, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4298\",\"code\":\"2444\",\"name\":\"PENFLOX SUSP\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2444\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penflox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1662, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4299\",\"code\":\"2445\",\"name\":\"JOINTCARE S\\/SEAS\",\"unit\":\"1\",\"cost\":\"18.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2445\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jointcare-sseas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1663, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4300\",\"code\":\"2446\",\"name\":\"HEALTHY WOMAN CAPS\",\"unit\":\"1\",\"cost\":\"52.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2446\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthy-woman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1664, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4301\",\"code\":\"2447\",\"name\":\"HEALTHYLINK HAIR,NAILS\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2447\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthylink-hairnails\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1665, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4302\",\"code\":\"2448\",\"name\":\"S SEAS COD LIV 60S\",\"unit\":\"1\",\"cost\":\"16.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2448\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"s-seas-cod-liv-60s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1666, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4303\",\"code\":\"2449\",\"name\":\"LORATIDINE 10 TEVA\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2449\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"loratidine-10-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1667, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4304\",\"code\":\"2450\",\"name\":\"ADOM P-AWAY CAPS\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2450\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-away-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1668, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4305\",\"code\":\"2451\",\"name\":\"MASTER TEA\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2451\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"master-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1669, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4306\",\"code\":\"2452\",\"name\":\"NONI JUICE\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2452\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noni-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1670, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4307\",\"code\":\"2453\",\"name\":\"PILIEF OINT\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2453\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilief-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1671, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4308\",\"code\":\"2454\",\"name\":\"PILIEF TAB\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2454\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilief-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1672, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4309\",\"code\":\"2455\",\"name\":\"SABROSSO 100 ML\",\"unit\":\"1\",\"cost\":\"32.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2455\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sabrosso-100-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1673, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4310\",\"code\":\"2456\",\"name\":\"SABROSO 250ML\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sabroso-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1674, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4311\",\"code\":\"2457\",\"name\":\"SABROSO 500ML\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2457\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sabroso-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1675, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4312\",\"code\":\"2458\",\"name\":\"X-DRIVE CAPS\",\"unit\":\"1\",\"cost\":\"2.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2458\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1676, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4313\",\"code\":\"2459\",\"name\":\"ASMADRIN\",\"unit\":\"1\",\"cost\":\"31.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2459\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asmadrin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1677, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4314\",\"code\":\"2460\",\"name\":\"H-AID VIT E 1000IU\",\"unit\":\"1\",\"cost\":\"35.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2460\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h-aid-vit-e-1000iu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1678, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4315\",\"code\":\"2461\",\"name\":\"H-AID VIT A 5000IU\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2461\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h-aid-vit-a-5000iu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1679, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4316\",\"code\":\"2462\",\"name\":\"H-AID VIT B12\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2462\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h-aid-vit-b12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1680, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4317\",\"code\":\"2463\",\"name\":\"BLUE AID COTTON 50G\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2463\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-aid-cotton-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1681, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4318\",\"code\":\"2464\",\"name\":\"BLUE AID VASLINE GAUZE\",\"unit\":\"1\",\"cost\":\"2.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2464\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-aid-vasline-gauze\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1682, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4319\",\"code\":\"2465\",\"name\":\"EPIDERM LOTION\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2465\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1683, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4320\",\"code\":\"2466\",\"name\":\"BETASOL LOTION\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2466\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"betasol-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1684, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4321\",\"code\":\"2467\",\"name\":\"ODDYMIN CAPS\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2467\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oddymin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1685, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4322\",\"code\":\"2468\",\"name\":\"MARK -2 INH\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2468\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-inh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1686, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4323\",\"code\":\"2469\",\"name\":\"SEBAMED SOAP 150G\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2469\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-soap-150g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1687, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4324\",\"code\":\"2470\",\"name\":\"SEBAMED SOAP 100G\",\"unit\":\"1\",\"cost\":\"36.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2470\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-soap-100g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1688, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4325\",\"code\":\"2471\",\"name\":\"SEBAMED BABY LOTION\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2471\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-baby-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1689, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4326\",\"code\":\"2472\",\"name\":\"SEBAMED AA Q10 LOTION\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2472\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-aa-q10-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1690, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4327\",\"code\":\"2473\",\"name\":\"SEBAMED B MILK\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2473\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-b-milk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1691, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4328\",\"code\":\"2474\",\"name\":\"SEBAMED SU C 50+\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2474\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-su-c-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1692, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4329\",\"code\":\"2475\",\"name\":\"SEBAMED UR LO 10\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2475\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-ur-lo-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1693, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4330\",\"code\":\"2476\",\"name\":\"MADAR LIQD\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2476\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"madar-liqd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1694, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4331\",\"code\":\"2477\",\"name\":\"SOFTCARE DIAPER\",\"unit\":\"1\",\"cost\":\"54.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2477\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softcare-diaper\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1695, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4332\",\"code\":\"2478\",\"name\":\"CARBIROID\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2478\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbiroid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1696, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4333\",\"code\":\"2479\",\"name\":\"ROCEPHIN INJ 1G\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2479\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rocephin-inj-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1697, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4334\",\"code\":\"2480\",\"name\":\"AFROSTAR\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2480\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"afrostar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1698, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4335\",\"code\":\"2481\",\"name\":\"MISS PLUM\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2481\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"miss-plum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1699, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4336\",\"code\":\"2482\",\"name\":\"ACNE CLEAR\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2482\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acne-clear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1700, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4337\",\"code\":\"2483\",\"name\":\"ANACONDA\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2483\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anaconda\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1701, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4338\",\"code\":\"2484\",\"name\":\"PERFECT WHITEGEL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2484\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"perfect-whitegel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1702, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4339\",\"code\":\"2485\",\"name\":\"HAPPY FAMILY GEL\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2485\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"happy-family-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1703, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4340\",\"code\":\"2486\",\"name\":\"SURE SPAY\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2486\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sure-spay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1704, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4341\",\"code\":\"2487\",\"name\":\"STYLING GEL M\\/S\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2487\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"styling-gel-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1705, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4342\",\"code\":\"2488\",\"name\":\"STYLING GEL S\\/S\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2488\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"styling-gel-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1706, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4343\",\"code\":\"2489\",\"name\":\"VIP SPRAY\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2489\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vip-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1707, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4344\",\"code\":\"2490\",\"name\":\"JRA LOTION\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2490\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1708, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4345\",\"code\":\"2491\",\"name\":\"MARQUISE BLUE S\\/S\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2491\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"marquise-blue-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1709, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4346\",\"code\":\"2492\",\"name\":\"INCIDENCE SPRAY S\\/S\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2492\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"incidence-spray-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1710, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4347\",\"code\":\"2493\",\"name\":\"DAGMAR SPRAY S\\/S\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2493\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dagmar-spray-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1711, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4348\",\"code\":\"2494\",\"name\":\"CHAIRMAN S\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2494\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chairman-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1712, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4349\",\"code\":\"2495\",\"name\":\"CLINIC CLEAR LOTION\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2495\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clinic-clear-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1713, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4350\",\"code\":\"2496\",\"name\":\"JRA SHOWER GEL\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2496\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-shower-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1714, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4351\",\"code\":\"2497\",\"name\":\"CHAMBERS 2000\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2497\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chambers-2000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1715, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4352\",\"code\":\"2498\",\"name\":\"COLOUR ME\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2498\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colour-me\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1716, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4353\",\"code\":\"2499\",\"name\":\"BIOSKIN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2499\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bioskin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1717, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4354\",\"code\":\"2500\",\"name\":\"PARADISE POWDER\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2500\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paradise-powder1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1718, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4355\",\"code\":\"2501\",\"name\":\"SIVODERM CREAM\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2501\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1719, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4356\",\"code\":\"2502\",\"name\":\"PALMAS LOTION\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2502\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"palmas-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1720, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4357\",\"code\":\"2503\",\"name\":\"SNOWFIRE\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2503\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"snowfire\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1721, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4358\",\"code\":\"2504\",\"name\":\"ACTIVATOR S\\/S\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2504\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"activator-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1722, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4359\",\"code\":\"2505\",\"name\":\"KURL OUT\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2505\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kurl-out\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1723, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4360\",\"code\":\"2506\",\"name\":\"AFRICAN CLASS\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2506\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"african-class\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1724, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4361\",\"code\":\"2507\",\"name\":\"KLEEN CLEANSER\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2507\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleen-cleanser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1725, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4362\",\"code\":\"2508\",\"name\":\"SPORTING CREAM\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2508\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sporting-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1726, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4363\",\"code\":\"2509\",\"name\":\"TOP COUNTRY L\\/S\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2509\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-country-ls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1727, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4364\",\"code\":\"2510\",\"name\":\"TOP COUNT M\\/S\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2510\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-count-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1728, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4365\",\"code\":\"2511\",\"name\":\"TOP COUNT S\\/S\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2511\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-count-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1729, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4366\",\"code\":\"2512\",\"name\":\"BB CLEAR\",\"unit\":\"1\",\"cost\":\"1.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2512\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bb-clear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1730, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4367\",\"code\":\"2513\",\"name\":\"CHOCOLT VERY S\\/S\",\"unit\":\"1\",\"cost\":\"3.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2513\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolt-very-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1731, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4368\",\"code\":\"2514\",\"name\":\"CHOCOLATE UK\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2514\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1732, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4369\",\"code\":\"2515\",\"name\":\"PAINGAY GEL\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paingay-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1733, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4370\",\"code\":\"2516\",\"name\":\"POSTINOR LOCAL\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2516\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1734, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4371\",\"code\":\"2517\",\"name\":\"WELLWOMAN MAX\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2517\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-max1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1735, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4372\",\"code\":\"2518\",\"name\":\"EASYLIFE\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2518\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"easylife\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1736, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4373\",\"code\":\"2519\",\"name\":\"TEETHING MIX\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2519\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teething-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1737, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4374\",\"code\":\"2520\",\"name\":\"CARBOZAB\",\"unit\":\"1\",\"cost\":\"0.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2520\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbozab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1738, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4375\",\"code\":\"2521\",\"name\":\"PAD PANTY\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2521\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-panty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1739, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4376\",\"code\":\"2522\",\"name\":\"BREAST PAD\",\"unit\":\"1\",\"cost\":\"27.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2522\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"breast-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1740, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4377\",\"code\":\"2523\",\"name\":\"COTTON 500G\",\"unit\":\"1\",\"cost\":\"7.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2523\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1741, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4378\",\"code\":\"2524\",\"name\":\"KY 50G\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2524\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ky-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1742, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4379\",\"code\":\"2525\",\"name\":\"ACILOVIR 200MG TAB\",\"unit\":\"1\",\"cost\":\"0.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2525\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acilovir-200mg-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1743, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4380\",\"code\":\"2526\",\"name\":\"VENA S\\/S PK\",\"unit\":\"1\",\"cost\":\"0.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2526\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vena-ss-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1744, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4381\",\"code\":\"2527\",\"name\":\"VERNA M\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2527\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"verna-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1745, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4382\",\"code\":\"2528\",\"name\":\"VOLTIC S\\/S PK\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2528\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ss-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1746, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4383\",\"code\":\"2529\",\"name\":\"VOLTIC M\\/S PK\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2529\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ms-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1747, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4384\",\"code\":\"2530\",\"name\":\"BELAQUA M\\/S PK\",\"unit\":\"1\",\"cost\":\"8.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2530\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"belaqua-ms-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1748, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4385\",\"code\":\"2531\",\"name\":\"BELAQUA S\\/S PK\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2531\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"belaqua-ss-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1749, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4386\",\"code\":\"2532\",\"name\":\"CANDID M PAINT\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2532\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-m-paint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1750, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4387\",\"code\":\"2533\",\"name\":\"THERMOSOL BRUSH\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2533\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thermosol-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1751, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4388\",\"code\":\"2534\",\"name\":\"ZINVITE CAPS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2534\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinvite-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1752, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4389\",\"code\":\"2535\",\"name\":\"MOVATE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2535\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"movate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:33:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1753, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4390\",\"code\":\"2536\",\"name\":\"LISTERINE B\\/S\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2536\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listerine-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1754, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4391\",\"code\":\"2537\",\"name\":\"COTTON BUD B\\/S\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2537\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1755, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4392\",\"code\":\"2538\",\"name\":\"COTTON BUD S\\/S\",\"unit\":\"1\",\"cost\":\"18.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2538\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud-ss1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1756, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4393\",\"code\":\"2539\",\"name\":\"TAABEA CAPS\",\"unit\":\"1\",\"cost\":\"17.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2539\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1757, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4394\",\"code\":\"2540\",\"name\":\"HEALTHY MAN\",\"unit\":\"1\",\"cost\":\"1.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2540\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthy-man\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1758, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4395\",\"code\":\"2541\",\"name\":\"KINGDOM GARLI CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-garli-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1759, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4396\",\"code\":\"2542\",\"name\":\"DEXONE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2542\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1760, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4397\",\"code\":\"2543\",\"name\":\"FRELET 75\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2543\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frelet-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1761, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4398\",\"code\":\"2544\",\"name\":\"ALOPURINOL 100\",\"unit\":\"1\",\"cost\":\"7.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2544\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alopurinol-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1762, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4399\",\"code\":\"2545\",\"name\":\"HYPONIC\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2545\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hyponic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1763, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4400\",\"code\":\"2546\",\"name\":\"PONSTAN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2546\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ponstan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1764, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4401\",\"code\":\"2547\",\"name\":\"GLUCONAF D\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2547\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gluconaf-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1765, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4402\",\"code\":\"2548\",\"name\":\"ALLOPURINOL 100\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2548\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"allopurinol-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1766, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4403\",\"code\":\"2549\",\"name\":\"MENTOS COUGH\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2549\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1767, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4404\",\"code\":\"2550\",\"name\":\"ZINC OXIDE PLAST\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2550\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plast\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1768, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4405\",\"code\":\"2551\",\"name\":\"KIDS COLGATE PASTE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2551\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-colgate-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1769, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4406\",\"code\":\"2552\",\"name\":\"PERFECT CLEAR\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2552\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"perfect-clear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1770, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4407\",\"code\":\"2553\",\"name\":\"CUSSONS POWD B\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2553\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-powd-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1771, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4408\",\"code\":\"2554\",\"name\":\"CUSSONS POWD S\\/S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2554\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-powd-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1772, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4409\",\"code\":\"2555\",\"name\":\"JOHNSONS LOTION\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2555\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"johnsons-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1773, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4410\",\"code\":\"2556\",\"name\":\"JOHNSONS OIL\",\"unit\":\"1\",\"cost\":\"0.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2556\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"johnsons-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1774, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4411\",\"code\":\"2557\",\"name\":\"ASHTON TEETN POWD\",\"unit\":\"1\",\"cost\":\"40.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2557\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ashton-teetn-powd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1775, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4412\",\"code\":\"2558\",\"name\":\"HISTAZINE TAB\",\"unit\":\"1\",\"cost\":\"2.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2558\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"histazine-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1776, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4413\",\"code\":\"2559\",\"name\":\"PROGENOVA\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2559\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"progenova\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1777, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4414\",\"code\":\"2560\",\"name\":\"ENAMYCIN TAB\",\"unit\":\"1\",\"cost\":\"35.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2560\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enamycin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1778, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4415\",\"code\":\"2561\",\"name\":\"ADUTWUMWAA MALA MIX\",\"unit\":\"1\",\"cost\":\"11.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2561\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adutwumwaa-mala-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1779, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4416\",\"code\":\"2562\",\"name\":\"VITAMIN B12\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2562\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamin-b12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1780, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4417\",\"code\":\"2563\",\"name\":\"CYCLOGEST 400\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2563\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1781, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4418\",\"code\":\"2564\",\"name\":\"DAKTARIN ORAL GEL\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2564\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daktarin-oral-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1782, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4419\",\"code\":\"2565\",\"name\":\"COTTON 25G\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2565\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-25g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1783, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4420\",\"code\":\"2566\",\"name\":\"ADULT DIAPER\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2566\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adult-diaper\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1784, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4421\",\"code\":\"2567\",\"name\":\"NAIL CUTTER\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2567\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nail-cutter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1785, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4422\",\"code\":\"2568\",\"name\":\"TINATTET EYE\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2568\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinattet-eye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1786, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4423\",\"code\":\"2569\",\"name\":\"TOMAC MIX\",\"unit\":\"1\",\"cost\":\"29.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2569\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tomac-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1787, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4424\",\"code\":\"2570\",\"name\":\"VENE CAPS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2570\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vene-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1788, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4425\",\"code\":\"2571\",\"name\":\"PROVERA\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2571\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"provera\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1789, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4426\",\"code\":\"2572\",\"name\":\"JOY SOAP\",\"unit\":\"1\",\"cost\":\"2.0600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2572\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1790, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4427\",\"code\":\"2573\",\"name\":\"LIPSORE\",\"unit\":\"1\",\"cost\":\"14.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2573\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipsore\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1791, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4428\",\"code\":\"2574\",\"name\":\"RONVIT FORTE\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2574\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronvit-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1792, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4429\",\"code\":\"2575\",\"name\":\"TRUMAN CAPS\",\"unit\":\"1\",\"cost\":\"6.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2575\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1793, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4430\",\"code\":\"2576\",\"name\":\"DRAGON LOZ\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2576\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dragon-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1794, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4431\",\"code\":\"2577\",\"name\":\"KIDIVITE 200ML\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2577\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidivite-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1795, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4432\",\"code\":\"2578\",\"name\":\"FLUCOR DAY\",\"unit\":\"1\",\"cost\":\"17.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2578\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucor-day1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1796, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4433\",\"code\":\"2579\",\"name\":\"KIDIMIN\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2579\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidimin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1797, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4434\",\"code\":\"2580\",\"name\":\"NCP 100ML\",\"unit\":\"1\",\"cost\":\"17.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2580\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ncp-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1798, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4435\",\"code\":\"2581\",\"name\":\"SKYBRU\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2581\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"skybru\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1799, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4436\",\"code\":\"2582\",\"name\":\"WELLTEEN HIM\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2582\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellteen-him\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1800, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4437\",\"code\":\"2583\",\"name\":\"COTTON BUD BBS\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2583\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1801, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4438\",\"code\":\"2584\",\"name\":\"LUCKY V CARE\",\"unit\":\"1\",\"cost\":\"0.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2584\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-care1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1802, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4439\",\"code\":\"2585\",\"name\":\"HAPPIMAN CAPS\",\"unit\":\"1\",\"cost\":\"6.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2585\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"happiman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1803, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4440\",\"code\":\"2586\",\"name\":\"BANANA GUM\",\"unit\":\"1\",\"cost\":\"0.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2586\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"banana-gum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1804, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4441\",\"code\":\"2587\",\"name\":\"POFAKOF ADULT\",\"unit\":\"1\",\"cost\":\"30.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2587\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pofakof-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1805, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4442\",\"code\":\"2588\",\"name\":\"WORMZAP TAB\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2588\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormzap-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1806, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4443\",\"code\":\"2589\",\"name\":\"ATWOOD BITTERS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2589\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atwood-bitters\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1807, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4444\",\"code\":\"2590\",\"name\":\"ANGEL SANITIZER\",\"unit\":\"1\",\"cost\":\"1.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2590\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1808, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4445\",\"code\":\"2591\",\"name\":\"FUROSEMIDE 40 ALMUS\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2591\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-40-almus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1809, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4446\",\"code\":\"2592\",\"name\":\"PINEK-20\",\"unit\":\"1\",\"cost\":\"5.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2592\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1810, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4447\",\"code\":\"2593\",\"name\":\"FLAREX\",\"unit\":\"1\",\"cost\":\"37.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2593\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1811, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4448\",\"code\":\"2594\",\"name\":\"POFAKOF JUNIOR\",\"unit\":\"1\",\"cost\":\"28.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2594\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pofakof-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1812, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4449\",\"code\":\"2595\",\"name\":\"ADVIL PM\",\"unit\":\"1\",\"cost\":\"1.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2595\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1813, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4450\",\"code\":\"2596\",\"name\":\"MINADEX\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2596\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"minadex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1814, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4451\",\"code\":\"2597\",\"name\":\"METAGYL TAB 400MG\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2597\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metagyl-tab-400mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1815, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4452\",\"code\":\"2598\",\"name\":\"MENOPACE ORG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2598\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menopace-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1816, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4453\",\"code\":\"2599\",\"name\":\"HAEMOGLOBIN TEST\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2599\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1817, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4454\",\"code\":\"2600\",\"name\":\"TYPHOID TEST\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2600\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"typhoid-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1818, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4455\",\"code\":\"2601\",\"name\":\"CHOLESTEROL TEST\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2601\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cholesterol-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1819, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4456\",\"code\":\"2602\",\"name\":\"PREGNANCY TEST\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2602\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregnancy-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1820, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4457\",\"code\":\"2603\",\"name\":\"PROSTATE TEST\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2603\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostate-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1821, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4458\",\"code\":\"2604\",\"name\":\"FACE SHIELD\",\"unit\":\"1\",\"cost\":\"7.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2604\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-shield\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1822, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4459\",\"code\":\"2605\",\"name\":\"HEPATITIS B TEST\",\"unit\":\"1\",\"cost\":\"32.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2605\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hepatitis-b-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1823, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4460\",\"code\":\"2606\",\"name\":\"LG GLIZONE 30\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2606\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lg-glizone-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1824, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4461\",\"code\":\"2607\",\"name\":\"AVACARE VIT C\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2607\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"avacare-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1825, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4462\",\"code\":\"2608\",\"name\":\"WEIGHT\",\"unit\":\"1\",\"cost\":\"10.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2608\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"weight\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1826, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4463\",\"code\":\"2609\",\"name\":\"LYDIA DAILY PILLS\",\"unit\":\"1\",\"cost\":\"16.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2609\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-daily-pills\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1827, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4464\",\"code\":\"2610\",\"name\":\"SENAFEN\",\"unit\":\"1\",\"cost\":\"92.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2610\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"senafen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1828, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4465\",\"code\":\"2611\",\"name\":\"IMMUNE VIT C 1000\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2611\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"immune-vit-c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1829, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4466\",\"code\":\"2612\",\"name\":\"CIPROBAY\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2612\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprobay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1830, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4467\",\"code\":\"2613\",\"name\":\"ADVIL COMBO\",\"unit\":\"1\",\"cost\":\"13.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2613\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-combo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1831, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4468\",\"code\":\"2614\",\"name\":\"MONIFLU\",\"unit\":\"1\",\"cost\":\"38.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2614\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"moniflu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1832, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4469\",\"code\":\"2615\",\"name\":\"APPLE CID BORGES 355ML\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2615\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cid-borges-355ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1833, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4470\",\"code\":\"2616\",\"name\":\"VINEGAR 500ML\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2616\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vinegar-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1834, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4471\",\"code\":\"2617\",\"name\":\"Ca-C 1000\",\"unit\":\"1\",\"cost\":\"0.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2617\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1835, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4472\",\"code\":\"2618\",\"name\":\"GERMANY VIT C\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2618\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"germany-vit-c1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1836, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4473\",\"code\":\"2619\",\"name\":\"PANACIN\",\"unit\":\"1\",\"cost\":\"6.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2619\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panacin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1837, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4474\",\"code\":\"2620\",\"name\":\"KRIS\",\"unit\":\"1\",\"cost\":\"1.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2620\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kris\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1838, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4475\",\"code\":\"2621\",\"name\":\"MAYFAIR SRP\",\"unit\":\"1\",\"cost\":\"5.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2621\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mayfair-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1839, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4476\",\"code\":\"2622\",\"name\":\"DICLOKIN\",\"unit\":\"1\",\"cost\":\"3.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2622\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclokin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1840, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4477\",\"code\":\"2623\",\"name\":\"HAEMATOVITE SRP\",\"unit\":\"1\",\"cost\":\"2.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2623\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"haematovite-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1841, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4478\",\"code\":\"2624\",\"name\":\"ASPANOL BAB\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2624\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspanol-bab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1842, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4479\",\"code\":\"2625\",\"name\":\"WORBEN SRP\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2625\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"worben-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1843, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4480\",\"code\":\"2626\",\"name\":\"BCOMPLEX  SRP KINAPHARMA\",\"unit\":\"1\",\"cost\":\"4.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2626\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bcomplex-srp-kinapharma\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1844, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4481\",\"code\":\"2627\",\"name\":\"TASTYMOL INFANT\",\"unit\":\"1\",\"cost\":\"0.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2627\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tastymol-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1845, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4482\",\"code\":\"2628\",\"name\":\"ASPANOL PLUS\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2628\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspanol-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1846, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4483\",\"code\":\"2629\",\"name\":\"ASCOVITE VIT C 500\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2629\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascovite-vit-c-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1847, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4484\",\"code\":\"2630\",\"name\":\"ANCIGEL O\",\"unit\":\"1\",\"cost\":\"7.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2630\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-o\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1848, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4485\",\"code\":\"2631\",\"name\":\"JEDITONE SRP\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2631\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jeditone-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1849, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4486\",\"code\":\"2632\",\"name\":\"GUDAPET SRP\",\"unit\":\"1\",\"cost\":\"4.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2632\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1850, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4487\",\"code\":\"2633\",\"name\":\"X,FLUX SRP\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2633\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xflux-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1851, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4488\",\"code\":\"2634\",\"name\":\"COLDRILIEF SRP\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2634\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coldrilief-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1852, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4489\",\"code\":\"2635\",\"name\":\"ENTRAMOL EXTRA\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2635\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1853, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4490\",\"code\":\"2636\",\"name\":\"ENTRACIN 300\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2636\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"entracin-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1854, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4491\",\"code\":\"2637\",\"name\":\"BLOPEN GEL\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2637\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blopen-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1855, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4492\",\"code\":\"2638\",\"name\":\"GACET 1G\",\"unit\":\"1\",\"cost\":\"7.6800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2638\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1856, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4493\",\"code\":\"2639\",\"name\":\"X,FERON CAPS\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2639\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xferon-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1857, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4494\",\"code\":\"2640\",\"name\":\"ZINVITE SRP\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2640\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinvite-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1858, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4495\",\"code\":\"2641\",\"name\":\"IMPRESSER CAPS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2641\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1859, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4496\",\"code\":\"2642\",\"name\":\"VOLTAREEN 100\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2642\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltareen-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1860, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4497\",\"code\":\"2643\",\"name\":\"COTTON 50G\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2643\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1861, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4498\",\"code\":\"2644\",\"name\":\"ELEMENT SPRAY\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2644\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"element-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1862, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4499\",\"code\":\"2645\",\"name\":\"LAS VEGAS SPRAY\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2645\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"las-vegas-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1863, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4500\",\"code\":\"2646\",\"name\":\"CLASS SPRAY\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2646\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"class-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1864, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4501\",\"code\":\"2647\",\"name\":\"CAPRICE SPRAY\",\"unit\":\"1\",\"cost\":\"13.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2647\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"caprice-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1865, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4502\",\"code\":\"2648\",\"name\":\"LEMSIP MAX\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2648\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-max\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1866, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4503\",\"code\":\"2649\",\"name\":\"SENSODYNE PASTE\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2649\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sensodyne-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1867, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4504\",\"code\":\"2650\",\"name\":\"LONGRICH PASTE\",\"unit\":\"1\",\"cost\":\"5.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2650\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"longrich-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1868, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4505\",\"code\":\"2651\",\"name\":\"NEOCORT EYE DROP\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2651\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1869, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4506\",\"code\":\"2652\",\"name\":\"PROTONIC\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"protonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1870, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4507\",\"code\":\"2653\",\"name\":\"QUEEN ELI B\\/S\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2653\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-eli-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1871, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4508\",\"code\":\"2654\",\"name\":\"PEPSODENT COMPLETE\",\"unit\":\"1\",\"cost\":\"15.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2654\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-complete\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1872, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4509\",\"code\":\"2655\",\"name\":\"LUMETHER  ADULT\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2655\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lumether-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1873, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4510\",\"code\":\"2656\",\"name\":\"LEVOTHYROXINE 100MG\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2656\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1874, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4511\",\"code\":\"2657\",\"name\":\"MIST POT SIT DARL\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2657\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mist-pot-sit-darl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1875, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4512\",\"code\":\"2658\",\"name\":\"ARTHROTEC 75\",\"unit\":\"1\",\"cost\":\"1.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2658\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arthrotec-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1876, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4513\",\"code\":\"2659\",\"name\":\"SPANISH GARLIC\",\"unit\":\"1\",\"cost\":\"4.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2659\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spanish-garlic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1877, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4514\",\"code\":\"2660\",\"name\":\"BELL ACTIVE\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2660\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bell-active\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1878, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4515\",\"code\":\"2661\",\"name\":\"WHEAT DRINK\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2661\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wheat-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1879, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4516\",\"code\":\"2662\",\"name\":\"FANMAX\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2662\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fanmax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1880, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4517\",\"code\":\"2663\",\"name\":\"CERES DRINK\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2663\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceres-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1881, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4518\",\"code\":\"2664\",\"name\":\"CANNED MALT\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2664\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"canned-malt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1882, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4519\",\"code\":\"2665\",\"name\":\"DON SIMON\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2665\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-simon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1883, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4520\",\"code\":\"2666\",\"name\":\"CAN COKE\\/FANTA\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2666\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"can-cokefanta\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1884, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4521\",\"code\":\"2667\",\"name\":\"BIO OIL B\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2667\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bio-oil-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1885, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4522\",\"code\":\"2668\",\"name\":\"BIO OIL S\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2668\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bio-oil-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1886, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4523\",\"code\":\"2669\",\"name\":\"VASELINE CREAM B\\/S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2669\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaseline-cream-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1887, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4524\",\"code\":\"2670\",\"name\":\"PEPSODENT CHARCOAL\",\"unit\":\"1\",\"cost\":\"2.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2670\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-charcoal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1888, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4525\",\"code\":\"2671\",\"name\":\"FOREVER EASY\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2671\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"forever-easy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1889, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4526\",\"code\":\"2672\",\"name\":\"PINEK 30\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2672\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1890, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4527\",\"code\":\"2673\",\"name\":\"GANA BALM\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2673\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gana-balm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1891, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4528\",\"code\":\"2674\",\"name\":\"BASEVIT DROP\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2674\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basevit-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1892, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4529\",\"code\":\"2675\",\"name\":\"ADAM,S SECRET\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2675\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adams-secret\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1893, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4530\",\"code\":\"2676\",\"name\":\"CHOCOLATE DARK B\\/S\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2676\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate-dark-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1894, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4531\",\"code\":\"2677\",\"name\":\"ZEEGHOUT\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2677\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zeeghout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1895, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4532\",\"code\":\"2678\",\"name\":\"PURE HEAVEN\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2678\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pure-heaven\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1896, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4533\",\"code\":\"2679\",\"name\":\"FRUTELLI\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2679\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frutelli\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1897, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4534\",\"code\":\"2680\",\"name\":\"VITNUT DRINK\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2680\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitnut-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1898, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4535\",\"code\":\"2681\",\"name\":\"VITRAC\",\"unit\":\"1\",\"cost\":\"5.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2681\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitrac\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1899, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4536\",\"code\":\"2682\",\"name\":\"JUVER JUICE\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2682\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"juver-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1900, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4537\",\"code\":\"2683\",\"name\":\"VODY\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2683\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vody\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1901, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4538\",\"code\":\"2684\",\"name\":\"LION CLUB ENERGY\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2684\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lion-club-energy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1902, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4539\",\"code\":\"2685\",\"name\":\"ADONKO ENERGY\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2685\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adonko-energy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1903, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4540\",\"code\":\"2686\",\"name\":\"FINEST B-12\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2686\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"finest-b-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1904, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4541\",\"code\":\"2687\",\"name\":\"KISS DRINK\",\"unit\":\"1\",\"cost\":\"6.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2687\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kiss-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1905, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4542\",\"code\":\"2688\",\"name\":\"HENEKEIN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2688\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"henekein\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1906, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4543\",\"code\":\"2689\",\"name\":\"HUNTERS\",\"unit\":\"1\",\"cost\":\"4.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2689\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hunters\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1907, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4544\",\"code\":\"2690\",\"name\":\"DON SANGRIA\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2690\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-sangria\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1908, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4545\",\"code\":\"2691\",\"name\":\"DON SIMON S\\/S\",\"unit\":\"1\",\"cost\":\"2.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2691\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-simon-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1909, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4546\",\"code\":\"2692\",\"name\":\"HOLLANDIA\",\"unit\":\"1\",\"cost\":\"2.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2692\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hollandia\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1910, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4547\",\"code\":\"2693\",\"name\":\"MALTA GUINESS\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2693\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malta-guiness\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1911, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4548\",\"code\":\"2694\",\"name\":\"VOLTIC B\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2694\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1912, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4549\",\"code\":\"2695\",\"name\":\"VITRAC S\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2695\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitrac-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1913, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4550\",\"code\":\"2696\",\"name\":\"FRAG HAND SOAP\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2696\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frag-hand-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1914, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4551\",\"code\":\"2697\",\"name\":\"DIAL BATHING GEL\",\"unit\":\"1\",\"cost\":\"5.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2697\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dial-bathing-gel1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1915, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4552\",\"code\":\"2698\",\"name\":\"PSYLLIUM HUSK\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2698\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"psyllium-husk1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1916, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4553\",\"code\":\"2699\",\"name\":\"VIT C*ZINC SRP\",\"unit\":\"1\",\"cost\":\"7.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2699\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-czinc-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1917, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4554\",\"code\":\"2700\",\"name\":\"IMPRESSER OIL\",\"unit\":\"1\",\"cost\":\"25.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2700\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1918, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4555\",\"code\":\"2701\",\"name\":\"OSON,S GARLIC PEARLS\",\"unit\":\"1\",\"cost\":\"45.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2701\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osons-garlic-pearls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1919, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4556\",\"code\":\"2702\",\"name\":\"BENILIN DRY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2702\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1920, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4557\",\"code\":\"2703\",\"name\":\"SUDOCREAM 250\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2703\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudocream-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1921, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4558\",\"code\":\"2704\",\"name\":\"PSYLLIUM HUSK\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2704\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"psyllium-husk1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1922, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4559\",\"code\":\"2705\",\"name\":\"WASHCLOTH WIPE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2705\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"washcloth-wipe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1923, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4560\",\"code\":\"2706\",\"name\":\"HONEST WIPE\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2706\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honest-wipe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1924, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4561\",\"code\":\"2707\",\"name\":\"BABY GANICS WIPES\",\"unit\":\"1\",\"cost\":\"5.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2707\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baby-ganics-wipes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1925, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4562\",\"code\":\"2708\",\"name\":\"MOUTHWASH\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2708\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mouthwash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1926, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4563\",\"code\":\"2709\",\"name\":\"ABC *ZINC SRP\",\"unit\":\"1\",\"cost\":\"2.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2709\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abc-zinc-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1927, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4564\",\"code\":\"2710\",\"name\":\"FANMAX S\\/S\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2710\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fanmax-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1928, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4565\",\"code\":\"2711\",\"name\":\"ALVARO\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2711\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alvaro\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1929, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4566\",\"code\":\"2712\",\"name\":\"KRIS DRINK\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2712\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kris-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1930, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4567\",\"code\":\"2713\",\"name\":\"ORAL B BRUSH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2713\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1931, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4568\",\"code\":\"2714\",\"name\":\"DG BATHING GEL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2714\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dg-bathing-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1932, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4569\",\"code\":\"2715\",\"name\":\"WHITE RAIN BATH\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2715\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"white-rain-bath\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1933, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4570\",\"code\":\"2716\",\"name\":\"SUNSHINE BATH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2716\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sunshine-bath\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1934, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4571\",\"code\":\"2717\",\"name\":\"PJ MASK\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2717\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pj-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1935, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4572\",\"code\":\"2718\",\"name\":\"NIVEA CARE *SPARKLE\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2718\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-care-sparkle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1936, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4573\",\"code\":\"2719\",\"name\":\"BONDI SANDS LOTION\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2719\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bondi-sands-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1937, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4574\",\"code\":\"2720\",\"name\":\"BABY LOTION\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2720\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baby-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1938, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4575\",\"code\":\"2721\",\"name\":\"KERATIN CONDITIONER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2721\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"keratin-conditioner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1939, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4576\",\"code\":\"2722\",\"name\":\"HUGGIES WIPE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2722\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huggies-wipe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1940, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4577\",\"code\":\"2723\",\"name\":\"FEEDING BOT\",\"unit\":\"1\",\"cost\":\"350.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2723\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feeding-bot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1941, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4578\",\"code\":\"2724\",\"name\":\"DELIVERY MAT\",\"unit\":\"1\",\"cost\":\"75.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2724\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"delivery-mat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1942, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4579\",\"code\":\"2725\",\"name\":\"BP MONITOR\",\"unit\":\"1\",\"cost\":\"3.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2725\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bp-monitor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1943, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4580\",\"code\":\"2726\",\"name\":\"BREAST PUMP\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2726\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"breast-pump\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1944, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4581\",\"code\":\"2727\",\"name\":\"STOPKOF EXP JNR\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2727\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-exp-jnr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1945, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4582\",\"code\":\"2728\",\"name\":\"STOPKOF EXP ADULT\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2728\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-exp-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1946, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4583\",\"code\":\"2729\",\"name\":\"EASY ON\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2729\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1947, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4584\",\"code\":\"2730\",\"name\":\"SAMALIN LOZ\",\"unit\":\"1\",\"cost\":\"80.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2730\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1948, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4585\",\"code\":\"2731\",\"name\":\"KLIRE ANTACID S\\/S\",\"unit\":\"1\",\"cost\":\"11.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2731\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"klire-antacid-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1949, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4586\",\"code\":\"2732\",\"name\":\"ON CALL PLUS\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2732\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"on-call-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1950, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4587\",\"code\":\"2733\",\"name\":\"FERROUS SULPHATE\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2733\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulphate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1951, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4588\",\"code\":\"2734\",\"name\":\"GENTA INJ\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2734\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"genta-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1952, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4589\",\"code\":\"2735\",\"name\":\"VENTOLIN SRP\",\"unit\":\"1\",\"cost\":\"15.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2735\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1953, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4590\",\"code\":\"2736\",\"name\":\"VITALIA S\\/S\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2736\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitalia-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1954, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4591\",\"code\":\"2737\",\"name\":\"LIVOPAT\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2737\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"livopat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1955, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4592\",\"code\":\"2738\",\"name\":\"DASTY DEGRESSER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2738\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dasty-degresser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1956, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4593\",\"code\":\"2739\",\"name\":\"FEEDING BOT BIG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2739\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feeding-bot-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1957, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4594\",\"code\":\"2740\",\"name\":\"FEDING M\\/S\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2740\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feding-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1958, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4595\",\"code\":\"2741\",\"name\":\"FEEDING S\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2741\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feeding-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1959, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4596\",\"code\":\"2742\",\"name\":\"GLASS FEEDING B\\/S\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2742\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glass-feeding-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1960, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4597\",\"code\":\"2743\",\"name\":\"GLASS S\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2743\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glass-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1961, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4598\",\"code\":\"2744\",\"name\":\"NIPPLE\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2744\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nipple\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1962, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4599\",\"code\":\"2745\",\"name\":\"AZILEX SUSP\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2745\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1963, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4600\",\"code\":\"2746\",\"name\":\"GBEDEMA GARLIC\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2746\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gbedema-garlic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1964, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4601\",\"code\":\"2747\",\"name\":\"AZITEX CAPS\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2747\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azitex-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1965, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4602\",\"code\":\"2748\",\"name\":\"GLUCOLIFE C\",\"unit\":\"1\",\"cost\":\"8.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2748\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucolife-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1966, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4603\",\"code\":\"2749\",\"name\":\"ON CALL STRIPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2749\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"on-call-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1967, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4604\",\"code\":\"2750\",\"name\":\"VIT E 200\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2750\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1968, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4605\",\"code\":\"2751\",\"name\":\"CUSSON,S OIL B\\/S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2751\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-oil-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1969, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4606\",\"code\":\"2752\",\"name\":\"CUSSON,S OIL S\\/S\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-oil-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1970, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4607\",\"code\":\"2753\",\"name\":\"LUX SOAP\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2753\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lux-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1971, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4608\",\"code\":\"2754\",\"name\":\"AIRFRESHER\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2754\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"airfresher\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1972, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4609\",\"code\":\"2755\",\"name\":\"GEISHA SOAP\",\"unit\":\"1\",\"cost\":\"5.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2755\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"geisha-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1973, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4610\",\"code\":\"2756\",\"name\":\"WOODS\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2756\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"woods\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1974, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4611\",\"code\":\"2757\",\"name\":\"ZYMAX TAB\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2757\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1975, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4612\",\"code\":\"2758\",\"name\":\"QUEEN LOTION BBS\",\"unit\":\"1\",\"cost\":\"7.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2758\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotion-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1976, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4613\",\"code\":\"2759\",\"name\":\"EPSON SALT\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2759\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epson-salt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1977, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4614\",\"code\":\"2760\",\"name\":\"TEGRETOL 200\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2760\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1978, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4615\",\"code\":\"2761\",\"name\":\"SALINE NASAL\",\"unit\":\"1\",\"cost\":\"36.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2761\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1979, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4616\",\"code\":\"2762\",\"name\":\"3CP\",\"unit\":\"1\",\"cost\":\"4.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2762\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3cp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1980, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4617\",\"code\":\"2763\",\"name\":\"GALVUS 50MG\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2763\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1981, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4618\",\"code\":\"2764\",\"name\":\"FEROFIX\",\"unit\":\"1\",\"cost\":\"35.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2764\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferofix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1982, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4619\",\"code\":\"2765\",\"name\":\"CALAMINE LOTION LOCAL\",\"unit\":\"1\",\"cost\":\"40.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2765\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-lotion-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1983, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4620\",\"code\":\"2766\",\"name\":\"PEPTO BIS 240ML\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2766\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bis-240ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1984, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4621\",\"code\":\"2767\",\"name\":\"DUREX PLAY GEL\",\"unit\":\"1\",\"cost\":\"1.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2767\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durex-play-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1985, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4622\",\"code\":\"2768\",\"name\":\"EXFORGE 5\\/160\\/12.5\",\"unit\":\"1\",\"cost\":\"5.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2768\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exforge-5160125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1986, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4623\",\"code\":\"2769\",\"name\":\"LOFNAC 100MG\",\"unit\":\"1\",\"cost\":\"1.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2769\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1987, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4624\",\"code\":\"2770\",\"name\":\"STIMUROL SYR\",\"unit\":\"1\",\"cost\":\"0.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2770\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stimurol-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1988, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4625\",\"code\":\"2771\",\"name\":\"CHLODIAZEPOX\",\"unit\":\"1\",\"cost\":\"16.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2771\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlodiazepox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1989, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4626\",\"code\":\"2772\",\"name\":\"O-FORMIN 500\",\"unit\":\"1\",\"cost\":\"15.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2772\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"o-formin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1990, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4627\",\"code\":\"2773\",\"name\":\"REDIN  PLUS CAPS\",\"unit\":\"1\",\"cost\":\"21.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2773\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"redin-plus-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1991, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4628\",\"code\":\"2774\",\"name\":\"REDIN LIQ\",\"unit\":\"1\",\"cost\":\"73.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2774\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"redin-liq\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1992, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4629\",\"code\":\"2775\",\"name\":\"BETOPTIC EYE DROP\",\"unit\":\"1\",\"cost\":\"55.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2775\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"betoptic-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1993, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4630\",\"code\":\"2776\",\"name\":\"PROSTAN EYE DROP\",\"unit\":\"1\",\"cost\":\"3.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2776\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostan-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1994, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4631\",\"code\":\"2777\",\"name\":\"DALACIN SRP\",\"unit\":\"1\",\"cost\":\"21.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2777\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dalacin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1995, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4632\",\"code\":\"2778\",\"name\":\"KEPTRILS LOZ\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2778\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"keptrils-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1996, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4633\",\"code\":\"2779\",\"name\":\"EUTYMOL PASTE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2779\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eutymol-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1997, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4634\",\"code\":\"2780\",\"name\":\"DIGESTIVE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2780\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digestive\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1998, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4635\",\"code\":\"2781\",\"name\":\"RICH TEA\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2781\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rich-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1999, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4636\",\"code\":\"2782\",\"name\":\"JACOB,S\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2782\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jacobs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2000, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4637\",\"code\":\"2783\",\"name\":\"ROMA CREAM CRACKERS\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2783\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"roma-cream-crackers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2001, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4638\",\"code\":\"2784\",\"name\":\"ADOM  OINT\",\"unit\":\"1\",\"cost\":\"1.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2784\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2002, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4639\",\"code\":\"2785\",\"name\":\"KWAE FRESH\",\"unit\":\"1\",\"cost\":\"38.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2785\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kwae-fresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2003, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4640\",\"code\":\"2786\",\"name\":\"CHLOR EYE OINT\",\"unit\":\"1\",\"cost\":\"0.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2786\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlor-eye-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2004, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4641\",\"code\":\"2787\",\"name\":\"LEVOFLOXACIN 500\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2787\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"levofloxacin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2005, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4642\",\"code\":\"2788\",\"name\":\"ACTILIFE CAPS\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2788\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actilife-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2006, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4643\",\"code\":\"2789\",\"name\":\"FERTILO FORTE CAPS\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2789\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fertilo-forte-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2007, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4644\",\"code\":\"2790\",\"name\":\"WELLTEEN HER\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2790\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellteen-her\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2008, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4645\",\"code\":\"2791\",\"name\":\"ALWAYS MAXI DOUBLE\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2791\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-maxi-double\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2009, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4646\",\"code\":\"2792\",\"name\":\"LISINOPRIL 10 CRESCENT\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2792\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-10-crescent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2010, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4647\",\"code\":\"2793\",\"name\":\"MENTHODEX LOZ\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2793\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menthodex-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2011, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4648\",\"code\":\"2794\",\"name\":\"ARTHROSAMINE\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2794\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arthrosamine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2012, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4649\",\"code\":\"2795\",\"name\":\"CILOXAN EYE DROP\",\"unit\":\"1\",\"cost\":\"5.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2795\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciloxan-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2013, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4650\",\"code\":\"2796\",\"name\":\"AMOXIL SUSP LUEX\",\"unit\":\"1\",\"cost\":\"0.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2796\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-susp-luex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2014, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4651\",\"code\":\"2797\",\"name\":\"NEXCOFER 125ML\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2797\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexcofer-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2015, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4652\",\"code\":\"2798\",\"name\":\"PARA EXETER TAB\",\"unit\":\"1\",\"cost\":\"6.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2798\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-exeter-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2016, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4653\",\"code\":\"2799\",\"name\":\"INFA V OINT\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2799\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2017, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4654\",\"code\":\"2800\",\"name\":\"CLARITINE TAB\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2800\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"claritine-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2018, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4655\",\"code\":\"2801\",\"name\":\"HOLANDIAS S\\/S\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2801\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"holandias-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2019, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4656\",\"code\":\"2802\",\"name\":\"KIDS BRUSH COLG\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2802\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-brush-colg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2020, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4657\",\"code\":\"2803\",\"name\":\"FLUCLOX 250 ESKAY\",\"unit\":\"1\",\"cost\":\"56.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2803\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluclox-250-eskay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2021, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4658\",\"code\":\"2804\",\"name\":\"GLASS CLEANER\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2804\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glass-cleaner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2022, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4659\",\"code\":\"2805\",\"name\":\"ZINNAT SUSP 50 ML\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2805\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2023, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4660\",\"code\":\"2806\",\"name\":\"SMIRNOFF\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2806\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smirnoff\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2024, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4661\",\"code\":\"2807\",\"name\":\"EDA BOKOO\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2807\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eda-bokoo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2025, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4662\",\"code\":\"2808\",\"name\":\"NIDO TIN\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2808\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nido-tin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2026, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4663\",\"code\":\"2809\",\"name\":\"NAN 1@2\",\"unit\":\"1\",\"cost\":\"43.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2809\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nan-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2027, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4664\",\"code\":\"2810\",\"name\":\"NAN COMFORT 1@2\",\"unit\":\"1\",\"cost\":\"3.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2810\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nan-comfort-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2028, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4665\",\"code\":\"2811\",\"name\":\"SMA 1@2\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2811\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sma-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2029, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4666\",\"code\":\"2812\",\"name\":\"MILO DRINK\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2812\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milo-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2030, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4667\",\"code\":\"2813\",\"name\":\"MILO TIN\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2813\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milo-tin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2031, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4668\",\"code\":\"2814\",\"name\":\"NESCAFE 200G\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2814\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nescafe-200g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2032, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4669\",\"code\":\"2815\",\"name\":\"NESCAFE 50G\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2815\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nescafe-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2033, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4670\",\"code\":\"2816\",\"name\":\"REXONA SOAP\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2816\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rexona-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2034, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4671\",\"code\":\"2817\",\"name\":\"SIVODERM LOTION\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2817\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2035, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4672\",\"code\":\"2818\",\"name\":\"XYLO ACINO ADULT\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2818\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xylo-acino-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2036, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4673\",\"code\":\"2819\",\"name\":\"DIAMICROM 60MG\",\"unit\":\"1\",\"cost\":\"200.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2819\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diamicrom-60mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2037, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4674\",\"code\":\"2820\",\"name\":\"CAFEGORT\",\"unit\":\"1\",\"cost\":\"16.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2820\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cafegort\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2038, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4675\",\"code\":\"2821\",\"name\":\"XARELTO 10MG\",\"unit\":\"1\",\"cost\":\"4.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2821\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xarelto-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2039, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4676\",\"code\":\"2822\",\"name\":\"GLUCOPHAGE\",\"unit\":\"1\",\"cost\":\"2.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2822\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucophage\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2040, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4677\",\"code\":\"2823\",\"name\":\"MALIN BABY\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2823\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2041, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4678\",\"code\":\"2824\",\"name\":\"MALIN TAB\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2824\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2042, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4679\",\"code\":\"2825\",\"name\":\"SKIN ESSENTIALS\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2825\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"skin-essentials\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2043, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4680\",\"code\":\"2826\",\"name\":\"FLORA TISSUE B\\/S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2826\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flora-tissue-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2044, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4681\",\"code\":\"2827\",\"name\":\"WAIST BELT\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2827\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"waist-belt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2045, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4682\",\"code\":\"2828\",\"name\":\"AMOKSIKLAV INJ\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2828\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2046, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4683\",\"code\":\"2829\",\"name\":\"CRYSTALINE PENICILLIN\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2829\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crystaline-penicillin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2047, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4684\",\"code\":\"2830\",\"name\":\"HYDROCORT INJ\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2830\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrocort-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2048, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4685\",\"code\":\"2831\",\"name\":\"NOSPA INJ\",\"unit\":\"1\",\"cost\":\"21.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2831\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nospa-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2049, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4686\",\"code\":\"2832\",\"name\":\"BEDMAT\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2832\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bedmat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2050, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4687\",\"code\":\"2833\",\"name\":\"LAVET\",\"unit\":\"1\",\"cost\":\"5.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2833\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lavet1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2051, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4688\",\"code\":\"2834\",\"name\":\"CIPROCIR EYE DROP\",\"unit\":\"1\",\"cost\":\"10.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2834\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprocir-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2052, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4689\",\"code\":\"2835\",\"name\":\"LUCOZADE 380\",\"unit\":\"1\",\"cost\":\"29.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2835\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucozade-380\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2053, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4690\",\"code\":\"2836\",\"name\":\"ANTACID MIX\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2836\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"antacid-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2054, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4691\",\"code\":\"2837\",\"name\":\"EVANOVA\",\"unit\":\"1\",\"cost\":\"4.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2837\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2055, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4692\",\"code\":\"2838\",\"name\":\"APC 10*10\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2838\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apc-1010\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2056, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4693\",\"code\":\"2839\",\"name\":\"MIST MAG DARL\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2839\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mist-mag-darl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2057, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4694\",\"code\":\"2840\",\"name\":\"ANTACID BELLS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2840\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"antacid-bells\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2058, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4695\",\"code\":\"2841\",\"name\":\"AMOS VITAL VITC\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2841\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amos-vital-vitc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2059, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4696\",\"code\":\"2842\",\"name\":\"PROLIFE VITC\",\"unit\":\"1\",\"cost\":\"4.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2842\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prolife-vitc1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2060, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4697\",\"code\":\"2843\",\"name\":\"BG GLUTAMIN PLUS\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2843\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bg-glutamin-plus1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2061, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4698\",\"code\":\"2844\",\"name\":\"MYCOVIN 500\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2844\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2062, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4699\",\"code\":\"2845\",\"name\":\"MMT\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2845\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mmt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2063, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4700\",\"code\":\"2846\",\"name\":\"SEFLOX EAR\\/EYE\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2846\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eareye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2064, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4701\",\"code\":\"2847\",\"name\":\"SELECT\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2847\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"select\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2065, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4702\",\"code\":\"2848\",\"name\":\"apple cider natural\",\"unit\":\"1\",\"cost\":\"25.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2848\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cider-natural\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2066, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4703\",\"code\":\"2849\",\"name\":\"DYKLO SPRAY DICLO\",\"unit\":\"1\",\"cost\":\"77.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2849\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dyklo-spray-diclo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2067, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4704\",\"code\":\"2850\",\"name\":\"SPIRONOLACTONE 100mg\",\"unit\":\"1\",\"cost\":\"47.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2850\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spironolactone-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2068, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4705\",\"code\":\"2851\",\"name\":\"VIAGRA IOOMG\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2851\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viagra-ioomg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2069, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4706\",\"code\":\"2852\",\"name\":\"VIAGRA 50MG\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2852\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viagra-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2070, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4707\",\"code\":\"2853\",\"name\":\"RED BULL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2853\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-bull\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2071, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4708\",\"code\":\"2854\",\"name\":\"BLUE JEANS DRINKS\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2854\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-jeans-drinks\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2072, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4709\",\"code\":\"2855\",\"name\":\"DON GRACIA\",\"unit\":\"1\",\"cost\":\"0.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2855\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-gracia\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2073, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4710\",\"code\":\"2856\",\"name\":\"VITRAC PACK DRINK\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2856\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitrac-pack-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2074, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4711\",\"code\":\"2857\",\"name\":\"ASPIRIN LOCAL\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2857\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspirin-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2075, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4712\",\"code\":\"2858\",\"name\":\"LOCID\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2858\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"locid1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2076, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4713\",\"code\":\"2859\",\"name\":\"PARAZONE\",\"unit\":\"1\",\"cost\":\"0.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2859\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"parazone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2077, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4714\",\"code\":\"2860\",\"name\":\"NIFECARD 30\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2860\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifecard-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2078, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4715\",\"code\":\"2861\",\"name\":\"ALEVE PAIN KILLER\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2861\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aleve-pain-killer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2079, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4716\",\"code\":\"2862\",\"name\":\"COCODAMOL\",\"unit\":\"1\",\"cost\":\"38.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2862\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cocodamol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2080, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4717\",\"code\":\"2863\",\"name\":\"CALAMINE LTN BELLS\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2863\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-ltn-bells\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2081, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4718\",\"code\":\"2864\",\"name\":\"VITANE SRP\",\"unit\":\"1\",\"cost\":\"10.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2082, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4719\",\"code\":\"2865\",\"name\":\"ZURION\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2865\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zurion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2083, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4720\",\"code\":\"2866\",\"name\":\"SPIRONOLAC ECL\",\"unit\":\"1\",\"cost\":\"13.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2866\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spironolac-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2084, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4721\",\"code\":\"2867\",\"name\":\"TOM BROWN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2867\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-brown\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2085, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4722\",\"code\":\"2868\",\"name\":\"ASTYFER\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2868\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"astyfer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2086, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4723\",\"code\":\"2869\",\"name\":\"SOFTCARE PAD\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2869\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softcare-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2087, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4724\",\"code\":\"2870\",\"name\":\"EVERSHEEN CREAM SMALL\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2870\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-cream-small1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2088, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4725\",\"code\":\"2871\",\"name\":\"LEMONVATE\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2871\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lemonvate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2089, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4726\",\"code\":\"2872\",\"name\":\"IMPERIAL LATHER\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2872\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imperial-lather\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2090, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4727\",\"code\":\"2873\",\"name\":\"ORO INSECTICIDE\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2873\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oro-insecticide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2091, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4728\",\"code\":\"2874\",\"name\":\"SPRAY STARCH\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2874\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spray-starch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2092, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4729\",\"code\":\"2875\",\"name\":\"OCEAN SPRAY BOTTLE\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2875\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ocean-spray-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2093, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4730\",\"code\":\"2876\",\"name\":\"OCEAN SPRAY CAN\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2876\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ocean-spray-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2094, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4731\",\"code\":\"2877\",\"name\":\"ALOE VERA DRINK\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2877\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aloe-vera-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2095, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4732\",\"code\":\"2878\",\"name\":\"JUVER S\\/S BOTTLE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2878\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"juver-ss-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2096, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4733\",\"code\":\"2879\",\"name\":\"AFRO MOSES\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2879\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-moses1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2097, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4734\",\"code\":\"2880\",\"name\":\"PROSTACURE X\",\"unit\":\"1\",\"cost\":\"3.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2880\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-x1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2098, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4735\",\"code\":\"2881\",\"name\":\"PROXIMERA 500G\",\"unit\":\"1\",\"cost\":\"7.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2881\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proximera-500g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2099, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4736\",\"code\":\"2882\",\"name\":\"GASTRON SUSP 100ML\",\"unit\":\"1\",\"cost\":\"0.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2882\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastron-susp-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2100, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4737\",\"code\":\"2883\",\"name\":\"GASTRONE PLUS\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2883\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastrone-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2101, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4738\",\"code\":\"2884\",\"name\":\"TOFFEES\",\"unit\":\"1\",\"cost\":\"7.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2884\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"toffees\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2102, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4739\",\"code\":\"2885\",\"name\":\"METHYLATED SP B\\/S\",\"unit\":\"1\",\"cost\":\"52.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2885\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sp-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2103, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4740\",\"code\":\"2886\",\"name\":\"MAGACID SUSP\",\"unit\":\"1\",\"cost\":\"46.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2886\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2104, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4741\",\"code\":\"2887\",\"name\":\"S\\/SEAS JOINT SUPPLEX\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2887\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-joint-supplex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2105, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4742\",\"code\":\"2888\",\"name\":\"S\\/SEAS C.L.O CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2888\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2106, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4743\",\"code\":\"2889\",\"name\":\"REDSUN\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2889\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"redsun\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2107, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4744\",\"code\":\"2890\",\"name\":\"NIBIMA\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2890\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nibima\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2108, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4745\",\"code\":\"2891\",\"name\":\"VITAGO B\\/S\",\"unit\":\"1\",\"cost\":\"1.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2891\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitago-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2109, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4746\",\"code\":\"2892\",\"name\":\"MALABASE\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2892\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malabase\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2110, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4747\",\"code\":\"2893\",\"name\":\"BASECHLOR\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2893\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2111, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4748\",\"code\":\"2894\",\"name\":\"QUININE SRP\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2894\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"quinine-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2112, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4749\",\"code\":\"2895\",\"name\":\"CYPONE SRP\",\"unit\":\"1\",\"cost\":\"2.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2895\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cypone-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2113, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4750\",\"code\":\"2896\",\"name\":\"ESSENTIALBB\\/S\",\"unit\":\"1\",\"cost\":\"1.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2896\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essentialbbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2114, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4751\",\"code\":\"2897\",\"name\":\"FLU-CLO SUSP(LETAP)\",\"unit\":\"1\",\"cost\":\"0.5700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2897\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flu-clo-suspletap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2115, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4752\",\"code\":\"2898\",\"name\":\"CONTRA-72\",\"unit\":\"1\",\"cost\":\"0.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2898\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"contra-72\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2116, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4753\",\"code\":\"2899\",\"name\":\"SLIMFIT S\\/S\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2899\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"slimfit-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2117, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4754\",\"code\":\"2900\",\"name\":\"SLIMFIT M\\/S\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2900\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"slimfit-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2118, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4755\",\"code\":\"2901\",\"name\":\"CAMISA\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2901\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camisa\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2119, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4756\",\"code\":\"2902\",\"name\":\"CRANBERRY\",\"unit\":\"1\",\"cost\":\"0.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2902\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cranberry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2120, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4757\",\"code\":\"2903\",\"name\":\"KIWI DRINK\",\"unit\":\"1\",\"cost\":\"0.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2903\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kiwi-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2121, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4758\",\"code\":\"2904\",\"name\":\"VERNA S\\/S\",\"unit\":\"1\",\"cost\":\"304.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2904\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"verna-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2122, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4759\",\"code\":\"2905\",\"name\":\"COLDAFLU\",\"unit\":\"1\",\"cost\":\"33.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2905\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coldaflu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2123, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4760\",\"code\":\"2906\",\"name\":\"XARELTO 20\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2906\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xarelto-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2124, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4761\",\"code\":\"2907\",\"name\":\"MIXTARD\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2907\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixtard\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2125, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4762\",\"code\":\"2908\",\"name\":\"CREEP BAND 8\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2908\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-band-8\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2126, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4763\",\"code\":\"2909\",\"name\":\"CREEP BAND 6\",\"unit\":\"1\",\"cost\":\"0.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2909\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-band-6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2127, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4764\",\"code\":\"2910\",\"name\":\"CENTRUM 30S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2910\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"centrum-30s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2128, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4765\",\"code\":\"2911\",\"name\":\"SYRYNGE 2MLS\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2911\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"syrynge-2mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2129, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4766\",\"code\":\"2912\",\"name\":\"HONEY S\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2912\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2130, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4767\",\"code\":\"2913\",\"name\":\"HONEY B\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2913\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2131, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4768\",\"code\":\"2914\",\"name\":\"CUSSON BABY LOTION\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2914\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cusson-baby-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2132, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4769\",\"code\":\"2915\",\"name\":\"PLASTER 6INC\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2915\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-6inc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2133, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4770\",\"code\":\"2916\",\"name\":\"PLASTER M\\/S\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2916\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2134, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4771\",\"code\":\"2917\",\"name\":\"PLASTER B\\/S\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2917\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2135, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4772\",\"code\":\"2918\",\"name\":\"PLSTER S\\/S\",\"unit\":\"1\",\"cost\":\"0.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2918\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plster-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2136, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4773\",\"code\":\"2919\",\"name\":\"PLASTER VS\\/S\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2919\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-vss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2137, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4774\",\"code\":\"2920\",\"name\":\"INSULIN SYRNG\",\"unit\":\"1\",\"cost\":\"14.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2920\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"insulin-syrng\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2138, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4775\",\"code\":\"2921\",\"name\":\"IMAX DELAY SPRAY\",\"unit\":\"1\",\"cost\":\"4.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imax-delay-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2139, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4776\",\"code\":\"2922\",\"name\":\"CLARITHROMYCIN TAB 500MG (B-CLAR)\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2922\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clarithromycin-tab-500mg-b-clar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2140, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4777\",\"code\":\"2923\",\"name\":\"CARTEF TAB 24\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2923\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-24\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2141, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4778\",\"code\":\"2924\",\"name\":\"HUGGIES WIPE BIG\",\"unit\":\"1\",\"cost\":\"22.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2924\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huggies-wipe-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2142, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4779\",\"code\":\"2925\",\"name\":\"TCP SOAP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2925\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp-soap1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2143, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4780\",\"code\":\"2926\",\"name\":\"VENTOLIN SRP ORG\",\"unit\":\"1\",\"cost\":\"43.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2926\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-srp-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2144, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4781\",\"code\":\"2927\",\"name\":\"LUCKY BITTERS\",\"unit\":\"1\",\"cost\":\"22.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2927\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bitters\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2145, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4782\",\"code\":\"2928\",\"name\":\"TCP 2OOML\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp-2ooml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2146, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4783\",\"code\":\"2929\",\"name\":\"VENTOLIN ORIG SYRP\",\"unit\":\"1\",\"cost\":\"6.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2929\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-orig-syrp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2147, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4784\",\"code\":\"2930\",\"name\":\"CHOCHO SOAP\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2930\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocho-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2148, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4785\",\"code\":\"2931\",\"name\":\"CERES CAN\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2931\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceres-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2149, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4786\",\"code\":\"2932\",\"name\":\"VIP BRUSH\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2932\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vip-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2150, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4787\",\"code\":\"2933\",\"name\":\"SMOKERS BRUSH\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2933\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smokers-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2151, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4788\",\"code\":\"2934\",\"name\":\"SASSO SPRAY BIG\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2934\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sasso-spray-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2152, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4789\",\"code\":\"2935\",\"name\":\"SENSODYNE PASTE SMALL\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2935\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sensodyne-paste-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:35:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2153, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4790\",\"code\":\"2936\",\"name\":\"VALUPAK VIT E 400\",\"unit\":\"1\",\"cost\":\"2.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2936\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-e-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2154, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4791\",\"code\":\"2937\",\"name\":\"X,FERON SRP\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2937\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xferon-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2155, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4792\",\"code\":\"2938\",\"name\":\"STOPKOF COLD *CATTARRH TAB\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-cold-cattarrh-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2156, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4793\",\"code\":\"2939\",\"name\":\"OVULATION TEST KIT\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2939\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ovulation-test-kit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2157, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4794\",\"code\":\"2940\",\"name\":\"AMMENS POWER\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2940\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ammens-power\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2158, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4795\",\"code\":\"2941\",\"name\":\"UNIDUS LONG LOVE CONDOM\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2941\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"unidus-long-love-condom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2159, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4796\",\"code\":\"2942\",\"name\":\"MEDICATED SOAP\",\"unit\":\"1\",\"cost\":\"6.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2942\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2160, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4797\",\"code\":\"2943\",\"name\":\"COAL TAR BAR SOAP\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2943\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coal-tar-bar-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2161, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4798\",\"code\":\"2944\",\"name\":\"KALAMINA LOTION\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2944\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kalamina-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2162, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4799\",\"code\":\"2945\",\"name\":\"MAGDOX ANTACID SUSP\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2945\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magdox-antacid-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2163, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4800\",\"code\":\"2946\",\"name\":\"DIGITAL THERMOMETOR\",\"unit\":\"1\",\"cost\":\"2.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2946\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digital-thermometor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2164, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4801\",\"code\":\"2947\",\"name\":\"MENTHYLATED SPIRIT VERY BIG\",\"unit\":\"1\",\"cost\":\"29.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2947\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menthylated-spirit-very-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2165, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4802\",\"code\":\"2948\",\"name\":\"PROMETHAZINE SRUP\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2948\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"promethazine-srup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2166, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4803\",\"code\":\"2949\",\"name\":\"ENAPHOX SUSP\",\"unit\":\"1\",\"cost\":\"0.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2949\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enaphox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2167, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4804\",\"code\":\"2950\",\"name\":\"EPICIPRIN\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2950\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epiciprin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2168, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4805\",\"code\":\"2951\",\"name\":\"POTASSIUM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2951\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"potassium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2169, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4806\",\"code\":\"2952\",\"name\":\"PEOBIOTICS 20 STRAINS\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2952\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"peobiotics-20-strains\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2170, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4807\",\"code\":\"2953\",\"name\":\"THERMOMETER ANUS\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2953\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thermometer-anus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2171, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4808\",\"code\":\"2954\",\"name\":\"PROBIOTICS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2954\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"probiotics\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2172, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4809\",\"code\":\"2955\",\"name\":\"VISION\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2955\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vision\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2173, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4810\",\"code\":\"2956\",\"name\":\"NASAL SPRAY\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2956\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nasal-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2174, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4811\",\"code\":\"2957\",\"name\":\"CHOLINE BITARTRATE\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2957\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"choline-bitartrate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2175, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4812\",\"code\":\"2958\",\"name\":\"ESSENTIAL EMZYMES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2958\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essential-emzymes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2176, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4813\",\"code\":\"2959\",\"name\":\"HIGH ABSORPTION COQ10\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2959\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-absorption-coq10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2177, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4814\",\"code\":\"2960\",\"name\":\"FLAXSEED OIL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2960\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flaxseed-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2178, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4815\",\"code\":\"2961\",\"name\":\"KETO FAST\\/BURN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2961\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"keto-fastburn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2179, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4816\",\"code\":\"2962\",\"name\":\"LITTLE REMEDIES GRIPE WATER\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2962\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"little-remedies-gripe-water\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2180, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4817\",\"code\":\"2963\",\"name\":\"EQUATE STOMACH RELIEF\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2963\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"equate-stomach-relief\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2181, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4818\",\"code\":\"2964\",\"name\":\"CULTURE PROBIOTIC BABY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2964\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"culture-probiotic-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2182, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4819\",\"code\":\"2965\",\"name\":\"NEUTROPHIL PLUS\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2965\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neutrophil-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2183, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4820\",\"code\":\"2966\",\"name\":\"CEYLON CINNAMON\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2966\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceylon-cinnamon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2184, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4821\",\"code\":\"2967\",\"name\":\"MAGNESIUM\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2967\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magnesium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2185, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4822\",\"code\":\"2968\",\"name\":\"D-MANNOSE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2968\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"d-mannose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2186, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4823\",\"code\":\"2969\",\"name\":\"HYALURONIC\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2969\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hyaluronic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2187, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4824\",\"code\":\"2970\",\"name\":\"OMEGA 3\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2970\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2188, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4825\",\"code\":\"2971\",\"name\":\"TART CHERRY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2971\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tart-cherry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2189, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4826\",\"code\":\"2972\",\"name\":\"NATURES BOUTY D3\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2972\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"natures-bouty-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2190, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4827\",\"code\":\"2973\",\"name\":\"TUMERIC CURCUMIN\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2973\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tumeric-curcumin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2191, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4828\",\"code\":\"2974\",\"name\":\"FORTIFY WOMENS  PROBIOTIC\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2974\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fortify-womens-probiotic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2192, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4829\",\"code\":\"2975\",\"name\":\"ALIVE ONCE DAILY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2975\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alive-once-daily\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2193, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4830\",\"code\":\"2976\",\"name\":\"REMFRESH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2976\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"remfresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2194, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4831\",\"code\":\"2977\",\"name\":\"VITAMIN CODE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2977\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamin-code\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2195, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4832\",\"code\":\"2978\",\"name\":\"FATHER JOHNSON\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2978\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"father-johnson\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2196, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4833\",\"code\":\"2979\",\"name\":\"DR TOBIA OMAGA 3\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2979\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dr-tobia-omaga-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2197, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4834\",\"code\":\"2980\",\"name\":\"VIRGIN COCONUT OIL\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2980\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"virgin-coconut-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2198, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4835\",\"code\":\"2981\",\"name\":\"MULTI MINERALS\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2981\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"multi-minerals\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2199, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4836\",\"code\":\"2982\",\"name\":\"C-1000\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2982\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2200, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4837\",\"code\":\"2983\",\"name\":\"GABA 500MG\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2983\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gaba-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2201, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4838\",\"code\":\"2984\",\"name\":\"NAC N -ACETYL\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2984\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nac-n-acetyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2202, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4839\",\"code\":\"2985\",\"name\":\"DGL\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2985\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dgl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2203, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4840\",\"code\":\"2986\",\"name\":\"PROSTATE FORMULA\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2986\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostate-formula\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2204, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4841\",\"code\":\"2987\",\"name\":\"ALPHA LIPOID\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2987\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-lipoid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2205, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4842\",\"code\":\"2988\",\"name\":\"CITRACAL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2988\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"citracal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2206, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4843\",\"code\":\"2989\",\"name\":\"BEANO ULTRA 800\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2989\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beano-ultra-800\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2207, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4844\",\"code\":\"2990\",\"name\":\"PEDIA LAX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2990\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pedia-lax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2208, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4845\",\"code\":\"2991\",\"name\":\"NATURE MADE COQ10\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2991\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nature-made-coq10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2209, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4846\",\"code\":\"2992\",\"name\":\"TAN OPTIMIZER\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2992\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tan-optimizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2210, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4847\",\"code\":\"2993\",\"name\":\"MUCINEX FAST MAX\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2993\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mucinex-fast-max\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2211, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4848\",\"code\":\"2994\",\"name\":\"PURE ZINC 30\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2994\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pure-zinc-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2212, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4849\",\"code\":\"2995\",\"name\":\"PRESER VISION\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2995\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"preser-vision\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2213, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4850\",\"code\":\"2996\",\"name\":\"MELATOMIN\",\"unit\":\"1\",\"cost\":\"52.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2996\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"melatomin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2214, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4851\",\"code\":\"2997\",\"name\":\"5HTP\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2997\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5htp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2215, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4852\",\"code\":\"2998\",\"name\":\"ONE A DAY MEN 50+\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2998\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-men-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2216, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4853\",\"code\":\"2999\",\"name\":\"PEEKAPOO PAD LINER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2999\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"peekapoo-pad-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2217, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4854\",\"code\":\"3000\",\"name\":\"GOODNITE\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"goodnite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2218, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4855\",\"code\":\"3001\",\"name\":\"PAMPERS SPLASHES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pampers-splashes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2219, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4856\",\"code\":\"3002\",\"name\":\"CUTTIES ESSENTIALS\",\"unit\":\"1\",\"cost\":\"9.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3002\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cutties-essentials\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2220, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4857\",\"code\":\"3003\",\"name\":\"HUGGIES LITTLE\",\"unit\":\"1\",\"cost\":\"4.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3003\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huggies-little\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2221, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4858\",\"code\":\"3004\",\"name\":\"APPLE JUICE\",\"unit\":\"1\",\"cost\":\"0.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3004\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2222, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4859\",\"code\":\"3005\",\"name\":\"MANDANOL NASAL DROP\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mandanol-nasal-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2223, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4860\",\"code\":\"3006\",\"name\":\"DICLOFENAC SUPP\",\"unit\":\"1\",\"cost\":\"14.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3006\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclofenac-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2224, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4861\",\"code\":\"3007\",\"name\":\"TYLENOL PM 50\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol-pm-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2225, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4862\",\"code\":\"3008\",\"name\":\"ZUBES EXTRA STRONG\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3008\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-extra-strong\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2226, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4863\",\"code\":\"3009\",\"name\":\"VITAMILK  BOTTLE\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamilk-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2227, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4864\",\"code\":\"3010\",\"name\":\"VITAMILK\",\"unit\":\"1\",\"cost\":\"0.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3010\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamilk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2228, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4865\",\"code\":\"3011\",\"name\":\"AMON CHOCOLATE\",\"unit\":\"1\",\"cost\":\"6.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3011\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amon-chocolate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2229, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4866\",\"code\":\"3012\",\"name\":\"VINKA CHOCOLATE\",\"unit\":\"1\",\"cost\":\"5.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vinka-chocolate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2230, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4867\",\"code\":\"3013\",\"name\":\"SNICKERS\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3013\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"snickers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2231, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4868\",\"code\":\"3014\",\"name\":\"BOUNTY\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3014\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2232, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4869\",\"code\":\"3015\",\"name\":\"MALTESERS\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maltesers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2233, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4870\",\"code\":\"3016\",\"name\":\"SHORT BREAD\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3016\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"short-bread\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2234, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4871\",\"code\":\"3017\",\"name\":\"CD CAPS\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3017\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cd-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2235, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4872\",\"code\":\"3018\",\"name\":\"JOY VIKIL\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3018\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vikil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2236, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4873\",\"code\":\"3019\",\"name\":\"LIQUID SOAP\",\"unit\":\"1\",\"cost\":\"10.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3019\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liquid-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2237, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4874\",\"code\":\"3020\",\"name\":\"~JOY VIKEL\",\"unit\":\"1\",\"cost\":\"0.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3020\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vikel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2238, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4875\",\"code\":\"3021\",\"name\":\"ACNEL GEL 20MG\",\"unit\":\"1\",\"cost\":\"32.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3021\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2239, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4876\",\"code\":\"3022\",\"name\":\"FAMACOLD\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3022\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2240, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4877\",\"code\":\"3023\",\"name\":\"JOINTFLEX PLUS TABS\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3023\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jointflex-plus-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2241, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4878\",\"code\":\"3024\",\"name\":\"FLOOR CLEANER\",\"unit\":\"1\",\"cost\":\"14.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3024\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"floor-cleaner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2242, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4879\",\"code\":\"3025\",\"name\":\"GASTRONE TAB\",\"unit\":\"1\",\"cost\":\"0.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3025\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastrone-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2243, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4880\",\"code\":\"3026\",\"name\":\"LISINOPRIL 20 CREASENT\",\"unit\":\"1\",\"cost\":\"5.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3026\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-20-creasent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2244, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4881\",\"code\":\"3027\",\"name\":\"GLIBENCLAMIDE\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3027\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glibenclamide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2245, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4882\",\"code\":\"3028\",\"name\":\"CABOZAP JUNIOR\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3028\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cabozap-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2246, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4883\",\"code\":\"3029\",\"name\":\"EMGIBRUFEN\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3029\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"emgibrufen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2247, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4884\",\"code\":\"3030\",\"name\":\"CHLORAMPHENICOL\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chloramphenicol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2248, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4885\",\"code\":\"3031\",\"name\":\"SUAVE ESSENTIAL BIG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3031\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"suave-essential-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2249, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4886\",\"code\":\"3032\",\"name\":\"TINATETT BATHING FRESH\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3032\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bathing-fresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2250, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4887\",\"code\":\"3033\",\"name\":\"SUAVE ESSENTIALS SMALL\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3033\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"suave-essentials-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2251, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4888\",\"code\":\"3034\",\"name\":\"FOAMING BATH\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foaming-bath\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2252, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4889\",\"code\":\"3035\",\"name\":\"DACILIN 300MG\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3035\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dacilin-300mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2253, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4890\",\"code\":\"3036\",\"name\":\"PALMAS COCO BUTTER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3036\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"palmas-coco-butter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2254, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4891\",\"code\":\"3037\",\"name\":\"CORSODYL BIG  300ML\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3037\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"corsodyl-big-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2255, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4892\",\"code\":\"3038\",\"name\":\"MOSQUITO NET\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3038\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mosquito-net\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2256, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4893\",\"code\":\"3039\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3039\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-face-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2257, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4894\",\"code\":\"3040\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3040\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-face-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2258, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4895\",\"code\":\"3041\",\"name\":\"GBEDEMA BIG MAN\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3041\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gbedema-big-man\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2259, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4896\",\"code\":\"3042\",\"name\":\"ULTIMATE OMEGA D3\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3042\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ultimate-omega-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2260, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4897\",\"code\":\"3043\",\"name\":\"HEMP OIL CAPSULES\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3043\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hemp-oil-capsules\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2261, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4898\",\"code\":\"3044\",\"name\":\"~MAGNESIUM\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3044\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magnesium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2262, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4899\",\"code\":\"3045\",\"name\":\"COLOSTRUM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3045\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colostrum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2263, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4900\",\"code\":\"3046\",\"name\":\"MOVE FREE JOINT S\\/S\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3046\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"move-free-joint-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2264, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4901\",\"code\":\"3047\",\"name\":\"TUMERIC 538\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3047\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tumeric-538\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2265, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4902\",\"code\":\"3048\",\"name\":\"BONE STRENTH\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3048\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bone-strenth\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2266, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4903\",\"code\":\"3049\",\"name\":\"FISH OIL\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3049\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2267, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4904\",\"code\":\"3050\",\"name\":\"L-LYSINE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3050\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"l-lysine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2268, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4905\",\"code\":\"3051\",\"name\":\"DEEP IMMUNE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-immune\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2269, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4906\",\"code\":\"3052\",\"name\":\"SIMILASAN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3052\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"similasan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2270, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4907\",\"code\":\"3053\",\"name\":\"MG 217\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3053\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mg-217\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2271, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4908\",\"code\":\"3054\",\"name\":\"BONINE\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3054\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2272, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4909\",\"code\":\"3055\",\"name\":\"ELTA MD\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3055\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"elta-md\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2273, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4910\",\"code\":\"3056\",\"name\":\"OCUVITE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3056\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ocuvite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2274, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4911\",\"code\":\"3057\",\"name\":\"OSTEO-BI FLEX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3057\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osteo-bi-flex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2275, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4912\",\"code\":\"3058\",\"name\":\"MEGA RED\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3058\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mega-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2276, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4913\",\"code\":\"3059\",\"name\":\"SAMBUCUS\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3059\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sambucus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2277, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4914\",\"code\":\"3060\",\"name\":\"MOVE FREE B\\/S\",\"unit\":\"1\",\"cost\":\"6.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3060\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"move-free-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2278, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4915\",\"code\":\"3061\",\"name\":\"VIT D3\",\"unit\":\"1\",\"cost\":\"9.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3061\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2279, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4916\",\"code\":\"3062\",\"name\":\"VIGONX\",\"unit\":\"1\",\"cost\":\"7.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3062\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vigonx\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2280, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4917\",\"code\":\"3063\",\"name\":\"CEFUNATE SUSP\",\"unit\":\"1\",\"cost\":\"6.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3063\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefunate-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2281, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4918\",\"code\":\"3064\",\"name\":\"KINAMYCIN 300\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3064\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kinamycin-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2282, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4919\",\"code\":\"3065\",\"name\":\"FINE LIFE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3065\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fine-life-blood-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2283, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4920\",\"code\":\"3066\",\"name\":\"PANADOL ADVANCE 32\'S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3066\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panadol-advance-32s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2284, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4921\",\"code\":\"3067\",\"name\":\"ARTESUNATE 30\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3067\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artesunate-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2285, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4922\",\"code\":\"3068\",\"name\":\"DIHYDROCODEINE 30MG\",\"unit\":\"1\",\"cost\":\"20.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3068\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dihydrocodeine-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2286, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4923\",\"code\":\"3069\",\"name\":\"HAND SANITIZER COCO\",\"unit\":\"1\",\"cost\":\"8.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3069\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hand-sanitizer-coco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2287, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4924\",\"code\":\"3070\",\"name\":\"MYCOCORT CREAM\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3070\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycocort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2288, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4925\",\"code\":\"3071\",\"name\":\"KEFROX SUSP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3071\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kefrox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2289, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4926\",\"code\":\"3072\",\"name\":\"KLEANZ SANITISER BIG\",\"unit\":\"1\",\"cost\":\"10.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3072\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleanz-sanitiser-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2290, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4927\",\"code\":\"3073\",\"name\":\"HANDS SANITISER COCO BIG\",\"unit\":\"1\",\"cost\":\"1.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3073\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hands-sanitiser-coco-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2291, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4928\",\"code\":\"3074\",\"name\":\"ZYMAX 500\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3074\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2292, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4929\",\"code\":\"3075\",\"name\":\"OMEPRAZOLE  20\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3075\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprazole-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2293, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4930\",\"code\":\"3076\",\"name\":\"AIRFRESHNER HANGING\",\"unit\":\"1\",\"cost\":\"5.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3076\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"airfreshner-hanging\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2294, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4931\",\"code\":\"3077\",\"name\":\"LEVOTHROXINE 50MG\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3077\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"levothroxine-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2295, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4932\",\"code\":\"3078\",\"name\":\"METRO Z SUSP\",\"unit\":\"1\",\"cost\":\"3.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3078\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-z-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2296, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4933\",\"code\":\"3079\",\"name\":\"FRUSEMIDE TAB 40MG BRISTOL\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3079\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frusemide-tab-40mg-bristol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2297, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4934\",\"code\":\"3080\",\"name\":\"LUEX NASALINHALER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3080\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-nasalinhaler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2298, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4935\",\"code\":\"3081\",\"name\":\"SANITAZER BIG\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3081\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitazer-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2299, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4936\",\"code\":\"3082\",\"name\":\"SANITIZER MEDIUM\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3082\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-medium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2300, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4937\",\"code\":\"3083\",\"name\":\"EASY CHECK\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3083\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-check\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2301, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4938\",\"code\":\"3084\",\"name\":\"HEMP OIL\",\"unit\":\"1\",\"cost\":\"6.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3084\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hemp-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2302, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4939\",\"code\":\"3085\",\"name\":\"OLANZEPINE TAB 10MG\",\"unit\":\"1\",\"cost\":\"11.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3085\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olanzepine-tab-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2303, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4940\",\"code\":\"3086\",\"name\":\"NESTERIX FORTE SYR\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3086\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nesterix-forte-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2304, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4941\",\"code\":\"3087\",\"name\":\"NORMO TEARS EYE DROP\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3087\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"normo-tears-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2305, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4942\",\"code\":\"3088\",\"name\":\"FACE MASK SHIELD\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3088\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-mask-shield\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2306, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4943\",\"code\":\"3089\",\"name\":\"SMARTYS KIDS GUMMY\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3089\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smartys-kids-gummy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2307, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4944\",\"code\":\"3090\",\"name\":\"HERB BERRY DROPS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3090\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"herb-berry-drops\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2308, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4945\",\"code\":\"3091\",\"name\":\"MCT OIL\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3091\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mct-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2309, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4946\",\"code\":\"3092\",\"name\":\"DIHYDROMYRICETIN 300MG\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3092\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dihydromyricetin-300mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2310, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4947\",\"code\":\"3093\",\"name\":\"AZO BLADDER CONTROL\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3093\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azo-bladder-control\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2311, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4948\",\"code\":\"3094\",\"name\":\"GEN M SUSP\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3094\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2312, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4949\",\"code\":\"3095\",\"name\":\"GEN M TABS 80\\/480\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3095\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tabs-80480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2313, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4950\",\"code\":\"3096\",\"name\":\"TOBREX EYE DROP\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3096\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tobrex-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2314, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4951\",\"code\":\"3097\",\"name\":\"DICNAC 100MG SUPP\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3097\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dicnac-100mg-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2315, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4952\",\"code\":\"3098\",\"name\":\"PROPA LINER\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3098\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"propa-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2316, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4953\",\"code\":\"3099\",\"name\":\"ANTI BACTERIAL WIPES\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3099\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anti-bacterial-wipes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2317, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4954\",\"code\":\"3100\",\"name\":\"NATURE WAY HAIR&SKIN\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3100\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nature-way-hairskin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2318, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4955\",\"code\":\"3101\",\"name\":\"MiraLAX\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3101\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"miralax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2319, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4956\",\"code\":\"3102\",\"name\":\"BIC RAZOR\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3102\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bic-razor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2320, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4957\",\"code\":\"3103\",\"name\":\"ZYMAX SUSP\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3103\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2321, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4958\",\"code\":\"3104\",\"name\":\"EAR SWAB\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3104\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ear-swab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2322, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4959\",\"code\":\"3105\",\"name\":\"FEMCARE\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3105\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"femcare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2323, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4960\",\"code\":\"3106\",\"name\":\"THERMOSOL SMART\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3106\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thermosol-smart\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2324, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4961\",\"code\":\"3107\",\"name\":\"EPICROM 2%\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3107\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epicrom-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2325, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4962\",\"code\":\"3108\",\"name\":\"FACE MASK K95\",\"unit\":\"1\",\"cost\":\"4.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3108\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-mask-k95\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2326, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4963\",\"code\":\"3109\",\"name\":\"FUROSEMIDE BRISTOL 40MG\",\"unit\":\"1\",\"cost\":\"0.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3109\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bristol-40mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2327, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4964\",\"code\":\"3110\",\"name\":\"ASCOVIT CEE SYR\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3110\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascovit-cee-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2328, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4965\",\"code\":\"3111\",\"name\":\"METOCHLOPRAMIDE 10MG\",\"unit\":\"1\",\"cost\":\"6.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3111\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metochlopramide-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2329, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4966\",\"code\":\"3112\",\"name\":\"LUBRIMAX JELLY 70 GM\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3112\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lubrimax-jelly-70-gm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2330, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4967\",\"code\":\"3113\",\"name\":\"AZIRON 500MG TABS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3113\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aziron-500mg-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2331, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4968\",\"code\":\"3114\",\"name\":\"BRENEX SYR\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3114\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2332, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4969\",\"code\":\"3115\",\"name\":\"GILLETTE BLUE\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3115\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gillette-blue\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2333, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4970\",\"code\":\"3116\",\"name\":\"SOBOLO DRINK\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3116\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sobolo-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2334, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4971\",\"code\":\"3117\",\"name\":\"AMPICLOX ECL\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3117\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampiclox-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2335, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4972\",\"code\":\"3118\",\"name\":\"AMOXYCILLIN CAPS\\/ BLISS 250\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3118\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-caps-bliss-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2336, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4973\",\"code\":\"3119\",\"name\":\"KLOVIRAL PESS\",\"unit\":\"1\",\"cost\":\"5.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3119\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kloviral-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2337, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4974\",\"code\":\"3120\",\"name\":\"LOFNAC BALM HERBAL\",\"unit\":\"1\",\"cost\":\"1.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3120\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-balm-herbal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2338, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4975\",\"code\":\"3121\",\"name\":\"LIVERPLEX INFANT\",\"unit\":\"1\",\"cost\":\"5.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3121\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2339, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4976\",\"code\":\"3122\",\"name\":\"OMECET CAPS\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3122\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omecet-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2340, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4977\",\"code\":\"3123\",\"name\":\"METHYLATED SPIRIT BB\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3123\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2341, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4978\",\"code\":\"3124\",\"name\":\"NESBEN TAB 200MG\",\"unit\":\"1\",\"cost\":\"8.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3124\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nesben-tab-200mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2342, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4979\",\"code\":\"3125\",\"name\":\"FUROSAMIDE TABS 40 ECL\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3125\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"furosamide-tabs-40-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2343, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4980\",\"code\":\"3126\",\"name\":\"FRESH BREATH SPY\",\"unit\":\"1\",\"cost\":\"15.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3126\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fresh-breath-spy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2344, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4981\",\"code\":\"3127\",\"name\":\"FERROUS SULPHATE STRIPS\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3127\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulphate-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2345, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4982\",\"code\":\"3128\",\"name\":\"VIT C CHEAWABLE\",\"unit\":\"1\",\"cost\":\"46.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3128\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-c-cheawable\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2346, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4983\",\"code\":\"3129\",\"name\":\"CETRIZAN 10MG\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3129\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cetrizan-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2347, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4984\",\"code\":\"3130\",\"name\":\"PREGNACIN PLUS\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3130\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregnacin-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2348, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4985\",\"code\":\"3131\",\"name\":\"FRUSEMIDE TAB 40MG UK\",\"unit\":\"1\",\"cost\":\"5.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3131\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frusemide-tab-40mg-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2349, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4986\",\"code\":\"3132\",\"name\":\"METHLATED SPIRIT BB\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3132\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"methlated-spirit-bb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2350, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4987\",\"code\":\"3133\",\"name\":\"ROX DRINKS\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3133\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rox-drinks\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2351, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4988\",\"code\":\"3134\",\"name\":\"WELCHS DRINK\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3134\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welchs-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2352, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4989\",\"code\":\"3135\",\"name\":\"WELCHS TOFFEE\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3135\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welchs-toffee1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2353, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4990\",\"code\":\"3136\",\"name\":\"ORAL B PASTE MEDIUM\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3136\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-paste-medium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2354, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4991\",\"code\":\"3137\",\"name\":\"ORAL B PASTE SMALL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-paste-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2355, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4992\",\"code\":\"3138\",\"name\":\"ARTIBASE FORTE 80\\/480 16\",\"unit\":\"1\",\"cost\":\"20.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3138\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-80480-16\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2356, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4993\",\"code\":\"3139\",\"name\":\"FOLIC ACID TAB 5MG ACCORD\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3139\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-5mg-accord\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2357, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4994\",\"code\":\"3140\",\"name\":\"8 HOUR FEVER MIX\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3140\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mix1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2358, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4995\",\"code\":\"3141\",\"name\":\"FAMACOLD SYR\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3141\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syr1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2359, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4996\",\"code\":\"3142\",\"name\":\"PARALEX BABY\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3142\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-baby1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2360, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4997\",\"code\":\"3143\",\"name\":\"JAGUAR BALM 80ML\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3143\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jaguar-balm-80ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2361, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4998\",\"code\":\"3144\",\"name\":\"JAGUAR BALM 125\",\"unit\":\"1\",\"cost\":\"10.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3144\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jaguar-balm-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2362, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4999\",\"code\":\"3145\",\"name\":\"ALPHA FOLIC ACID\",\"unit\":\"1\",\"cost\":\"5.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3145\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-acid1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2363, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5000\",\"code\":\"3146\",\"name\":\"ZOFIORA 120ML\",\"unit\":\"1\",\"cost\":\"6.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3146\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zofiora-120ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2364, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5001\",\"code\":\"3147\",\"name\":\"AQUQ FRESH HERBAL\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3147\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aquq-fresh-herbal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2365, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5002\",\"code\":\"3148\",\"name\":\"AQUA  FRESH MINT\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3148\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqua-fresh-mint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2366, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5003\",\"code\":\"3149\",\"name\":\"AQUA FRESH MILD&MINTY6\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3149\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqua-fresh-mildminty6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2367, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5004\",\"code\":\"3150\",\"name\":\"LISINOVA 5MG\",\"unit\":\"1\",\"cost\":\"10.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3150\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2368, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5005\",\"code\":\"3151\",\"name\":\"LEXOFEN SUSP 150ML\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3151\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2369, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5006\",\"code\":\"3152\",\"name\":\"LEXOFEN SUSP 100ML\",\"unit\":\"1\",\"cost\":\"39.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3152\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2370, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5007\",\"code\":\"3153\",\"name\":\"BLUE SPOT EYEDROP\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3153\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-spot-eyedrop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2371, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5008\",\"code\":\"3154\",\"name\":\"OPTREX REFRESHING\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3154\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2372, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5009\",\"code\":\"3155\",\"name\":\"AMUZU GARLIC\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3155\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-garlic1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2373, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5010\",\"code\":\"3156\",\"name\":\"SANITESER SMALL\",\"unit\":\"1\",\"cost\":\"11.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3156\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saniteser-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2374, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5011\",\"code\":\"3157\",\"name\":\"SANITESER VERY SMALL\",\"unit\":\"1\",\"cost\":\"24.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3157\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saniteser-very-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2375, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5012\",\"code\":\"3158\",\"name\":\"COD LIVER OIL B\\/N\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3158\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cod-liver-oil-bn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2376, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5013\",\"code\":\"3159\",\"name\":\"CLOPIDOGREL 75MG\",\"unit\":\"1\",\"cost\":\"44.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3159\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clopidogrel-75mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2377, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5014\",\"code\":\"3160\",\"name\":\"PROMAN DRINK\",\"unit\":\"1\",\"cost\":\"25.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3160\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2378, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5015\",\"code\":\"3161\",\"name\":\"BRAINWESE OMEGA 3  150ML\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3161\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brainwese-omega-3-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2379, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5016\",\"code\":\"3162\",\"name\":\"MEDGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"1.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3162\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medglobin-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2380, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5017\",\"code\":\"3163\",\"name\":\"MEDGLOBIN SYR\",\"unit\":\"1\",\"cost\":\"6.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3163\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medglobin-syr1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2381, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5018\",\"code\":\"3164\",\"name\":\"MAALOX SUSP SACHETS 20\",\"unit\":\"1\",\"cost\":\"3.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3164\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-susp-sachets-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2382, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5019\",\"code\":\"3165\",\"name\":\"POLYGEL SUSP 200ML\",\"unit\":\"1\",\"cost\":\"15.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3165\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polygel-susp-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2383, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5020\",\"code\":\"3166\",\"name\":\"PRONALIN ADULT\",\"unit\":\"1\",\"cost\":\"16.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pronalin-adult1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2384, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5021\",\"code\":\"3167\",\"name\":\"STRETCH GO\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3167\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stretch-go1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2385, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5022\",\"code\":\"3168\",\"name\":\"VALUPAK VIT C 500MG CHEWABLE\",\"unit\":\"1\",\"cost\":\"19.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3168\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c-500mg-chewable\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2386, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5023\",\"code\":\"3169\",\"name\":\"RENERVE PLUS CAPS\",\"unit\":\"1\",\"cost\":\"6.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3169\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"renerve-plus-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2387, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5024\",\"code\":\"3170\",\"name\":\"SALAMOL CFC INHALER\",\"unit\":\"1\",\"cost\":\"9.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3170\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salamol-cfc-inhaler1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2388, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5025\",\"code\":\"3171\",\"name\":\"METRO 400MG TABS EXETER\",\"unit\":\"1\",\"cost\":\"37.3700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3171\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-400mg-tabs-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2389, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5026\",\"code\":\"3172\",\"name\":\"KLINDA 300\",\"unit\":\"1\",\"cost\":\"11.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3172\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"klinda-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2390, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5027\",\"code\":\"3173\",\"name\":\"MILK OF MAGNESIUM PHILIPS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3173\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-magnesium-philips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2391, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5028\",\"code\":\"3174\",\"name\":\"PROCOLD  SYR 60ML\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3174\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"procold-syr-60ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2392, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5029\",\"code\":\"3175\",\"name\":\"EYECARE DRY\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3175\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eyecare-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2393, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5030\",\"code\":\"3176\",\"name\":\"BETA POLLEN PLUS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3176\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beta-pollen-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2394, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5031\",\"code\":\"3177\",\"name\":\"RENEWLIFE 30\\/90S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3177\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"renewlife-3090s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2395, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5032\",\"code\":\"3178\",\"name\":\"ACTIVE B12 FOLATE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3178\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"active-b12-folate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2396, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5033\",\"code\":\"3179\",\"name\":\"COQ-ZYME\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3179\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coq-zyme\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2397, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5034\",\"code\":\"3180\",\"name\":\"QUADRALEAN\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3180\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"quadralean\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2398, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5035\",\"code\":\"3181\",\"name\":\"GINGER ROOT 550MG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3181\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginger-root-550mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2399, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5036\",\"code\":\"3182\",\"name\":\"HAIR & SKIN CAPS\",\"unit\":\"1\",\"cost\":\"2.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hair-skin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2400, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5037\",\"code\":\"3183\",\"name\":\"DIYHDROMRICETIN\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3183\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diyhdromricetin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2401, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5038\",\"code\":\"3184\",\"name\":\"CALCIUM B12 SYRUP\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3184\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calcium-b12-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2402, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5039\",\"code\":\"3185\",\"name\":\"COUGH & COLD CHILD CARE\",\"unit\":\"1\",\"cost\":\"1.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3185\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cough-cold-child-care\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2403, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5040\",\"code\":\"3186\",\"name\":\"FOLIRON TONIC 200ML\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3186\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foliron-tonic-200ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2404, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5041\",\"code\":\"3187\",\"name\":\"LETAVIT SYRUP\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3187\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letavit-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2405, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5042\",\"code\":\"3188\",\"name\":\"MILK OF MAGNESIA LETAP\",\"unit\":\"1\",\"cost\":\"1.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3188\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2406, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5043\",\"code\":\"3189\",\"name\":\"LETARON SYRUP\",\"unit\":\"1\",\"cost\":\"1.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3189\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letaron-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2407, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5044\",\"code\":\"3190\",\"name\":\"AMOXYCILLIN SYRUP LETAP\",\"unit\":\"1\",\"cost\":\"0.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3190\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-syrup-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2408, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5045\",\"code\":\"3191\",\"name\":\"LETAFEN SUSPENSION\",\"unit\":\"1\",\"cost\":\"0.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3191\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letafen-suspension\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2409, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5046\",\"code\":\"3192\",\"name\":\"LETAMOX TABLET 500MG\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3192\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letamox-tablet-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2410, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5047\",\"code\":\"3193\",\"name\":\"XPEL SUSP DEWORMER\",\"unit\":\"1\",\"cost\":\"0.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3193\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xpel-susp-dewormer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2411, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5048\",\"code\":\"3194\",\"name\":\"ARFAN 20\\/120MG\",\"unit\":\"1\",\"cost\":\"0.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3194\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arfan-20120mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2412, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5049\",\"code\":\"3195\",\"name\":\"ASCORBIN TAB\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3195\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascorbin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2413, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5050\",\"code\":\"3196\",\"name\":\"FUROSEMIDE TAB LETAP\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3196\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2414, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5051\",\"code\":\"3197\",\"name\":\"AZIS TAB 500MG\",\"unit\":\"1\",\"cost\":\"68.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3197\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2415, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5052\",\"code\":\"3198\",\"name\":\"SALINE NASAL LOCAL\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3198\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2416, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5053\",\"code\":\"3199\",\"name\":\"PLENDIL 10MG\",\"unit\":\"1\",\"cost\":\"2.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3199\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plendil-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2417, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5054\",\"code\":\"3200\",\"name\":\"ENAMYCIN SUSP ECL\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3200\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enamycin-susp-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2418, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5055\",\"code\":\"3201\",\"name\":\"LILY  ROSS BRUSH\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3201\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lily-ross-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2419, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5056\",\"code\":\"3202\",\"name\":\"CLINIC CLEAR LOTION SMALL\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3202\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clinic-clear-lotion-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2420, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5057\",\"code\":\"3203\",\"name\":\"BIOSKIN MEDIUM\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3203\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bioskin-medium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2421, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5058\",\"code\":\"3204\",\"name\":\"DAY BY DAY POWDER\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3204\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"day-by-day-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2422, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5059\",\"code\":\"3205\",\"name\":\"STYLING GEL BROKLYN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3205\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"styling-gel-broklyn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2423, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5060\",\"code\":\"3206\",\"name\":\"HERBAL ESSENTIAL OIL 30ML\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3206\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essential-oil-30ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2424, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5061\",\"code\":\"3207\",\"name\":\"HERBAL ESSENTIALS OIL 40ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3207\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essentials-oil-40ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2425, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5062\",\"code\":\"3208\",\"name\":\"HERBAL ESSENTIALS OIL 60ML\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3208\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essentials-oil-60ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2426, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5063\",\"code\":\"3209\",\"name\":\"HERBAL ESSENTIAL OIL 10ML\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3209\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essential-oil-10ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2427, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5064\",\"code\":\"3210\",\"name\":\"LUBRIMAX JELLY 50G\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3210\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lubrimax-jelly-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2428, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5065\",\"code\":\"3211\",\"name\":\"FIESTA LUBRICANT GEL SMALL\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3211\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fiesta-lubricant-gel-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2429, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5066\",\"code\":\"3212\",\"name\":\"TYLENOL PM 24\'S\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3212\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol-pm-24s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2430, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5067\",\"code\":\"3213\",\"name\":\"GACET 500MG\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3213\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2431, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5068\",\"code\":\"3214\",\"name\":\"mercy soap\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3214\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mercy-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2432, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5069\",\"code\":\"3215\",\"name\":\"TCP 50ML\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3215\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp-50ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2433, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5070\",\"code\":\"3216\",\"name\":\"ANTREMOL D\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3216\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"antremol-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2434, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5071\",\"code\":\"3217\",\"name\":\"ENTRAMOL D\",\"unit\":\"1\",\"cost\":\"2.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3217\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2435, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5072\",\"code\":\"3218\",\"name\":\"GIVERS HERBAL MIXTURE BIG\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3218\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-herbal-mixture-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2436, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5073\",\"code\":\"3219\",\"name\":\"FLUCONAT 150\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3219\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluconat-150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2437, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5074\",\"code\":\"3220\",\"name\":\"LONART TAB\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3220\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2438, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5075\",\"code\":\"3221\",\"name\":\"SOFT&GENTLE LOTION\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3221\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softgentle-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2439, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5076\",\"code\":\"3222\",\"name\":\"RIGHT GUARD LOTION\",\"unit\":\"1\",\"cost\":\"2.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3222\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"right-guard-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2440, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5077\",\"code\":\"3223\",\"name\":\"ZULU EXTRA\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3223\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-extra1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2441, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5078\",\"code\":\"3224\",\"name\":\"BORIC ACID EAR DROP\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3224\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"boric-acid-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2442, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5079\",\"code\":\"3225\",\"name\":\"YAAKSON MIXTURE\",\"unit\":\"1\",\"cost\":\"0.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3225\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yaakson-mixture\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2443, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5080\",\"code\":\"3226\",\"name\":\"DUO COTTON PADS\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3226\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"duo-cotton-pads\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2444, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5081\",\"code\":\"3227\",\"name\":\"YOVANNY COUGH LOZENGES\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3227\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yovanny-cough-lozenges\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2445, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5082\",\"code\":\"3228\",\"name\":\"ABYVITA CAPS\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3228\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abyvita-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2446, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5083\",\"code\":\"3229\",\"name\":\"CIPRO TAB OSONS\",\"unit\":\"1\",\"cost\":\"6.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3229\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cipro-tab-osons\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2447, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5084\",\"code\":\"3230\",\"name\":\"BROWN SUGAR\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3230\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brown-sugar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2448, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5085\",\"code\":\"3231\",\"name\":\"SAVANNA DRINK\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3231\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savanna-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2449, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5086\",\"code\":\"3232\",\"name\":\"JUVER PAPER DRINK\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3232\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"juver-paper-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2450, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5087\",\"code\":\"3233\",\"name\":\"SUN EXOTIC DRINK\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3233\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sun-exotic-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2451, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5088\",\"code\":\"3234\",\"name\":\"RUBICON DRINK\",\"unit\":\"1\",\"cost\":\"10.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3234\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rubicon-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2452, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5089\",\"code\":\"3235\",\"name\":\"ADIDAS SPRAY\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3235\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adidas-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2453, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5090\",\"code\":\"3236\",\"name\":\"LOSARTAN POTASSIUM 100MG TEVA\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3236\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100mg-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2454, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5091\",\"code\":\"3237\",\"name\":\"ADOM NATURAL MAN MIXTURE\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3237\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-natural-man-mixture1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2455, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5092\",\"code\":\"3238\",\"name\":\"GIANT EAGLE MOUTH WASH\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3238\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"giant-eagle-mouth-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2456, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5093\",\"code\":\"3239\",\"name\":\"PAMPERS S\\/S\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3239\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pampers-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2457, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5094\",\"code\":\"3240\",\"name\":\"HONEYKOF HERBAL COUGH SYRUP\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honeykof-herbal-cough-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2458, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5095\",\"code\":\"3241\",\"name\":\"~\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3241\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2459, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5096\",\"code\":\"3242\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3242\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2460, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5097\",\"code\":\"3243\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3243\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2461, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5098\",\"code\":\"3244\",\"name\":\"ADUSA MIXTURE\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3244\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adusa-mixture\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2462, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5099\",\"code\":\"3245\",\"name\":\"LAWSON HERBAL MIXTURE\",\"unit\":\"1\",\"cost\":\"92.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lawson-herbal-mixture\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2463, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5100\",\"code\":\"3246\",\"name\":\"DELAY MAN CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3246\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"delay-man-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2464, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5101\",\"code\":\"3247\",\"name\":\"MALARONE PAED TABS\",\"unit\":\"1\",\"cost\":\"5.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3247\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malarone-paed-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2465, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5102\",\"code\":\"3248\",\"name\":\"BELLS OLIVE OIL ORIGNAL\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3248\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-olive-oil-orignal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2466, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5103\",\"code\":\"3249\",\"name\":\"ASCORYL PLUS SYRUP\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3249\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascoryl-plus-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2467, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5104\",\"code\":\"3250\",\"name\":\"APETATRUST\",\"unit\":\"1\",\"cost\":\"11.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3250\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apetatrust\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2468, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5105\",\"code\":\"3251\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3251\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2469, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5106\",\"code\":\"3252\",\"name\":\"ARZIGLOBIN SYRUP\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3252\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arziglobin-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2470, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5107\",\"code\":\"3253\",\"name\":\"COVONIA DRY TICKLY 150ML\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3253\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"covonia-dry-tickly-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2471, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5108\",\"code\":\"3254\",\"name\":\"GALFER SYRUP 300ML\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"galfer-syrup-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2472, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5109\",\"code\":\"3255\",\"name\":\"IROVIT DROP\",\"unit\":\"1\",\"cost\":\"0.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3255\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"irovit-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2473, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5110\",\"code\":\"3256\",\"name\":\"WIDALUM SUSP\",\"unit\":\"1\",\"cost\":\"14.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"widalum-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2474, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5111\",\"code\":\"3257\",\"name\":\"ANDREWS LIVER SALTS\",\"unit\":\"1\",\"cost\":\"5.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3257\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andrews-liver-salts\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2475, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5112\",\"code\":\"3258\",\"name\":\"RESCOFER SYRUP\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3258\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rescofer-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2476, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5113\",\"code\":\"3259\",\"name\":\"LIVERTONE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"89.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3259\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"livertone-blood-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2477, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5114\",\"code\":\"3260\",\"name\":\"ARTETAB SUSP\",\"unit\":\"1\",\"cost\":\"26.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3260\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artetab-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2478, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5115\",\"code\":\"3261\",\"name\":\"COQ 10 WINMILL\",\"unit\":\"1\",\"cost\":\"31.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3261\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coq-10-winmill\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2479, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5116\",\"code\":\"3262\",\"name\":\"FISH OIL GOOD NEIGH. PHARM\",\"unit\":\"1\",\"cost\":\"52.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3262\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-good-neigh-pharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2480, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5117\",\"code\":\"3263\",\"name\":\"VIT A GOOD NEIGH.PHARM\",\"unit\":\"1\",\"cost\":\"91.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-a-good-neighpharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2481, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5118\",\"code\":\"3264\",\"name\":\"ONE A DAY WOMEN TAB\",\"unit\":\"1\",\"cost\":\"17.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3264\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-women-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2482, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5119\",\"code\":\"3265\",\"name\":\"PURE MARK VEGAN PRO\",\"unit\":\"1\",\"cost\":\"53.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pure-mark-vegan-pro\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2483, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5120\",\"code\":\"3266\",\"name\":\"VIT A  MAJOR\",\"unit\":\"1\",\"cost\":\"41.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3266\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-a-major\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2484, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5121\",\"code\":\"3267\",\"name\":\"MULTIVITANIM GUMMIES\",\"unit\":\"1\",\"cost\":\"40.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3267\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"multivitanim-gummies\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2485, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5122\",\"code\":\"3268\",\"name\":\"BCOMPLEX  NAT BOUNTY\",\"unit\":\"1\",\"cost\":\"16.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3268\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bcomplex-nat-bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2486, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5123\",\"code\":\"3269\",\"name\":\"FISH OIL SUNDOWN\",\"unit\":\"1\",\"cost\":\"33.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3269\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-sundown1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2487, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5124\",\"code\":\"3270\",\"name\":\"FOLIC ACID SUNDOWN\",\"unit\":\"1\",\"cost\":\"52.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3270\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sundown\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2488, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5125\",\"code\":\"3271\",\"name\":\"ECHINACEA  COMPLEX GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"39.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"echinacea-complex-good-neigh-pharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2489, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5126\",\"code\":\"3272\",\"name\":\"ONE A DAY MEN\",\"unit\":\"1\",\"cost\":\"41.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3272\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-men\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2490, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5127\",\"code\":\"3273\",\"name\":\"VALERIAN ROOT NAT BOUNTY\",\"unit\":\"1\",\"cost\":\"38.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3273\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"valerian-root-nat-bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2491, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5128\",\"code\":\"3274\",\"name\":\"VIT B12  NAT BOUNTY\",\"unit\":\"1\",\"cost\":\"17.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3274\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b12-nat-bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2492, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5129\",\"code\":\"3275\",\"name\":\"VIT K2 MASON\",\"unit\":\"1\",\"cost\":\"35.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3275\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-k2-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2493, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5130\",\"code\":\"3276\",\"name\":\"CALCIUM 600 + D3\",\"unit\":\"1\",\"cost\":\"30.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3276\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calcium-600-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2494, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5131\",\"code\":\"3277\",\"name\":\"COD LIVER OIL MASON\",\"unit\":\"1\",\"cost\":\"27.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3277\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cod-liver-oil-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2495, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5132\",\"code\":\"3278\",\"name\":\"HEALTHY EYE GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"28.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthy-eye-good-neigh-pharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2496, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5133\",\"code\":\"3279\",\"name\":\"MELATONIN SUNDOWN\",\"unit\":\"1\",\"cost\":\"45.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"melatonin-sundown1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2497, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5134\",\"code\":\"3280\",\"name\":\"MENTHOLATUM NIGHT RUB\",\"unit\":\"1\",\"cost\":\"65.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentholatum-night-rub\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2498, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5135\",\"code\":\"3281\",\"name\":\"SAW PALMETTO CAP\",\"unit\":\"1\",\"cost\":\"52.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saw-palmetto-cap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2499, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5136\",\"code\":\"3282\",\"name\":\"SCANDISHAKE POWER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3282\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"scandishake-power\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2500, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5137\",\"code\":\"3283\",\"name\":\"VIT E OIL\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-oil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2501, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5138\",\"code\":\"3284\",\"name\":\"FISH OIL MAJOR\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3284\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-major1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2502, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5139\",\"code\":\"3285\",\"name\":\"BLACK SOAP BIG\",\"unit\":\"1\",\"cost\":\"17.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3285\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-soap-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2503, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5140\",\"code\":\"3286\",\"name\":\"BLACK SOAP SMALL\",\"unit\":\"1\",\"cost\":\"17.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-soap-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2504, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5141\",\"code\":\"3287\",\"name\":\"D ARTEPP TAB 60\\/480MG\",\"unit\":\"1\",\"cost\":\"32.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3287\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"d-artepp-tab-60480mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2505, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5142\",\"code\":\"3288\",\"name\":\"MEDULAC SUPP 250MLS\",\"unit\":\"1\",\"cost\":\"9.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medulac-supp-250mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2506, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5143\",\"code\":\"3289\",\"name\":\"GAVISCON DOUBLE ACTION\",\"unit\":\"1\",\"cost\":\"51.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gaviscon-double-action\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2507, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5144\",\"code\":\"3290\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"70.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3290\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint-15g1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2508, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5145\",\"code\":\"3291\",\"name\":\"ALPHA LIPOIC  MASON\",\"unit\":\"1\",\"cost\":\"14.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3291\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-lipoic-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2509, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5146\",\"code\":\"3292\",\"name\":\"CHOLESOFF NATURE MADE\",\"unit\":\"1\",\"cost\":\"42.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cholesoff-nature-made\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2510, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5147\",\"code\":\"3293\",\"name\":\"FEROSUL MAJOR\",\"unit\":\"1\",\"cost\":\"46.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferosul-major\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2511, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5148\",\"code\":\"3294\",\"name\":\"FISH OIL 100MG MAJOR\",\"unit\":\"1\",\"cost\":\"37.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3294\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-100mg-major\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2512, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5149\",\"code\":\"3295\",\"name\":\"GINGKO BILOBA EXTRACT\",\"unit\":\"1\",\"cost\":\"38.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3295\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gingko-biloba-extract\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2513, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5150\",\"code\":\"3296\",\"name\":\"MELATONIN  GOOD NEIGHBOUR PHRM\",\"unit\":\"1\",\"cost\":\"61.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3296\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"melatonin-good-neighbour-phrm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2514, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5151\",\"code\":\"3297\",\"name\":\"LUTEIN SOFTGEL MASON\",\"unit\":\"1\",\"cost\":\"62.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3297\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lutein-softgel-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2515, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5152\",\"code\":\"3298\",\"name\":\"OMEGA 3 1000 EPA\",\"unit\":\"1\",\"cost\":\"24.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3298\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-3-1000-epa\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2516, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5153\",\"code\":\"3299\",\"name\":\"ONE A DAY MEN 50+ 65CT\",\"unit\":\"1\",\"cost\":\"9.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3299\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-men-50-65ct\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2517, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5154\",\"code\":\"3300\",\"name\":\"MUPIROCIN OINT\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2518, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5155\",\"code\":\"3301\",\"name\":\"LORSATAN 100MG EXETER\",\"unit\":\"1\",\"cost\":\"5.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3301\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lorsatan-100mg-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2519, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5156\",\"code\":\"3302\",\"name\":\"BELLA AQUA WATER M\\/S\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bella-aqua-water-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2520, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5157\",\"code\":\"3303\",\"name\":\"CEFTRIA DOR 1000\",\"unit\":\"1\",\"cost\":\"7.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceftria-dor-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2521, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5158\",\"code\":\"3304\",\"name\":\"CEFURO DOR 750\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3304\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefuro-dor-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2522, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5159\",\"code\":\"3305\",\"name\":\"LUEX CHILD CHESTY\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3305\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-chesty1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2523, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5160\",\"code\":\"3306\",\"name\":\"CREST CHARCOAL TOOTHPASTE\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3306\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crest-charcoal-toothpaste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2524, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5161\",\"code\":\"3307\",\"name\":\"LISTERINE MOUNTH WASH 1L\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listerine-mounth-wash-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2525, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5162\",\"code\":\"3308\",\"name\":\"FLUXACIN CAPS 500MG\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3308\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluxacin-caps-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2526, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5163\",\"code\":\"3309\",\"name\":\"FERROUS SULPHATE 200MG\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3309\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulphate-200mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2527, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5164\",\"code\":\"3310\",\"name\":\"DICLONOVA 100MG\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3310\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclonova-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2528, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5165\",\"code\":\"3311\",\"name\":\"HERBAL TEA\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3311\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2529, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5166\",\"code\":\"3312\",\"name\":\"SWEET ALMOND\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3312\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweet-almond\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2530, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5167\",\"code\":\"3313\",\"name\":\"CLOVES\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cloves\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2531, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5168\",\"code\":\"3314\",\"name\":\"CHIA SEED\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3314\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chia-seed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2532, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5169\",\"code\":\"3315\",\"name\":\"GLODEN RAISON\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3315\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gloden-raison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2533, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5170\",\"code\":\"3316\",\"name\":\"BULLET ENERGY DRINK\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3316\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bullet-energy-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2534, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5171\",\"code\":\"3317\",\"name\":\"GOLDEN RAISON\",\"unit\":\"1\",\"cost\":\"0.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3317\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"golden-raison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2535, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5172\",\"code\":\"3318\",\"name\":\"MARIE PANTY LINER\",\"unit\":\"1\",\"cost\":\"4.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3318\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"marie-panty-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2536, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5173\",\"code\":\"3319\",\"name\":\"LETACAM (PIROXICAM)\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3319\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letacam-piroxicam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2537, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5174\",\"code\":\"3320\",\"name\":\"LETAVIN TAB 500MG\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letavin-tab-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2538, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5175\",\"code\":\"3321\",\"name\":\"KOFOF ADULT SYRUP\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3321\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofof-adult-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2539, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5176\",\"code\":\"3322\",\"name\":\"METFORMIN 500MG OA&J\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500mg-oaj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2540, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5177\",\"code\":\"3323\",\"name\":\"CEFUROXINE 750 INJ\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3323\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefuroxine-750-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2541, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5178\",\"code\":\"3324\",\"name\":\"CEFTRIAZONE 1G INJ\",\"unit\":\"1\",\"cost\":\"27.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceftriazone-1g-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2542, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5179\",\"code\":\"3325\",\"name\":\"ENTRAMOL SINGLES\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3325\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-singles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2543, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5180\",\"code\":\"3326\",\"name\":\"S\\/S SEAS C.L.O 30\'S\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ss-seas-clo-30s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2544, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5181\",\"code\":\"3327\",\"name\":\"LUMETHER SUSP\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lumether-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2545, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5182\",\"code\":\"3328\",\"name\":\"ADOM MALAKARE\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-malakare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2546, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5183\",\"code\":\"3329\",\"name\":\"SNICKERS S\\/S\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3329\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"snickers-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2547, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5184\",\"code\":\"3330\",\"name\":\"SKITTLES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3330\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"skittles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2548, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5185\",\"code\":\"3331\",\"name\":\"JOHNSON BABY OIL S\\/S\",\"unit\":\"1\",\"cost\":\"6.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"johnson-baby-oil-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2549, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5186\",\"code\":\"3332\",\"name\":\"ALMOND SEED\",\"unit\":\"1\",\"cost\":\"33.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3332\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"almond-seed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2550, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5187\",\"code\":\"3333\",\"name\":\"MALAR 2 DS\",\"unit\":\"1\",\"cost\":\"12.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3333\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malar-2-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2551, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5188\",\"code\":\"3334\",\"name\":\"PROMAN 50+\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2552, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5189\",\"code\":\"3335\",\"name\":\"HYDROCORTISONE CREAM\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3335\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:37:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2553, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5190\",\"code\":\"3336\",\"name\":\"WELCH DRINK SMALL\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3336\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welch-drink-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2554, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5191\",\"code\":\"3337\",\"name\":\"DORCO RAZOR\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3337\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dorco-razor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2555, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5192\",\"code\":\"3338\",\"name\":\"ALVITE CAPS\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3338\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alvite-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2556, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5193\",\"code\":\"3339\",\"name\":\"MENTOS CHN\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3339\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-chn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2557, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5194\",\"code\":\"3340\",\"name\":\"SEPTILIN\",\"unit\":\"1\",\"cost\":\"5.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3340\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"septilin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2558, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5195\",\"code\":\"3341\",\"name\":\"TRO XIME CEFUROXINE 750\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3341\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tro-xime-cefuroxine-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2559, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5196\",\"code\":\"3342\",\"name\":\"ECL ANTACID\",\"unit\":\"1\",\"cost\":\"4.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ecl-antacid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2560, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5197\",\"code\":\"3343\",\"name\":\"KOFFEX C\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3343\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koffex-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2561, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5198\",\"code\":\"3344\",\"name\":\"RONFIT SYRUP\",\"unit\":\"1\",\"cost\":\"68.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3344\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2562, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5199\",\"code\":\"3345\",\"name\":\"FLUCORON 200MG\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucoron-200mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2563, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5200\",\"code\":\"3346\",\"name\":\"BEAUTEX\",\"unit\":\"1\",\"cost\":\"88.0000\",\"price\":\"88.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beautex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2564, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3086\",\"code\":\"5010058089785\",\"name\":\"PREGNACARE 19S\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"16.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"CF1\",\"cf2\":\"CF2\",\"cf3\":\"CF3\",\"cf4\":\"CF4\",\"cf5\":\"CF5\",\"cf6\":\"CF6\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"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-19s\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2565, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3087\",\"code\":\"8906009234915\",\"name\":\"LONART FORTE TABS\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"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\":\"lonart-forte-tabs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 05:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2566, 'Purchase is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"201\",\"reference_no\":\"lak-001\",\"date\":\"2021-08-21 11:06:00\",\"supplier_id\":\"2\",\"supplier\":\"Supplier Company Name\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"82641.5900\",\"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\":\"82641.5900\",\"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\":\"27465\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5201\",\"product_code\":\"1234\",\"product_name\":\"PREGNACARE 19S\",\"option_id\":null,\"net_unit_cost\":\"0.8800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.8800\",\"real_unit_cost\":\"0.8800\",\"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\":\"0.8800\"},{\"id\":\"27466\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5202\",\"product_code\":\"1235\",\"product_name\":\"LONART FORTE TABS\",\"option_id\":null,\"net_unit_cost\":\"15.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\":\"45.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\"},{\"id\":\"27467\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5203\",\"product_code\":\"1236\",\"product_name\":\"LOFNAC SUPP 100MG\",\"option_id\":null,\"net_unit_cost\":\"9.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.5500\",\"real_unit_cost\":\"9.5500\",\"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\":\"9.5500\"},{\"id\":\"27468\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5204\",\"product_code\":\"1237\",\"product_name\":\"LONART DS TABS\",\"option_id\":null,\"net_unit_cost\":\"19.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.1000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.5500\",\"real_unit_cost\":\"19.5500\",\"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\":\"19.5500\"},{\"id\":\"27469\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5205\",\"product_code\":\"1238\",\"product_name\":\"LONART SUSP\",\"option_id\":null,\"net_unit_cost\":\"13.4400\",\"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\":\"40.3200\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.4400\",\"real_unit_cost\":\"13.4400\",\"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\":\"13.4400\"},{\"id\":\"27470\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5206\",\"product_code\":\"1239\",\"product_name\":\"MENTAT TABS\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27471\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5207\",\"product_code\":\"1240\",\"product_name\":\"LOSAR-DENK 100\",\"option_id\":null,\"net_unit_cost\":\"7.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9500\",\"real_unit_cost\":\"7.9500\",\"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\":\"7.9500\"},{\"id\":\"27472\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5208\",\"product_code\":\"1241\",\"product_name\":\"METROLEX-F TABS\",\"option_id\":null,\"net_unit_cost\":\"7.9500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.9500\",\"real_unit_cost\":\"7.9500\",\"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\":\"7.9500\"},{\"id\":\"27473\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5209\",\"product_code\":\"1242\",\"product_name\":\"LUEX ADULT DRY\",\"option_id\":null,\"net_unit_cost\":\"4.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.6400\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3600\",\"real_unit_cost\":\"4.3600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3600\"},{\"id\":\"27474\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5210\",\"product_code\":\"1243\",\"product_name\":\"LUEX CHILD DRY\",\"option_id\":null,\"net_unit_cost\":\"6.7800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.7800\",\"real_unit_cost\":\"6.7800\",\"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\":\"6.7800\"},{\"id\":\"27475\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5211\",\"product_code\":\"1244\",\"product_name\":\"METFORMIN DENK 500MG\",\"option_id\":null,\"net_unit_cost\":\"55.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"222.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"55.7000\",\"real_unit_cost\":\"55.7000\",\"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\":\"55.7000\"},{\"id\":\"27476\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5212\",\"product_code\":\"1245\",\"product_name\":\"LYRICA 150MG\",\"option_id\":null,\"net_unit_cost\":\"23.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"23.9000\",\"real_unit_cost\":\"23.9000\",\"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\":\"23.9000\"},{\"id\":\"27477\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5213\",\"product_code\":\"1246\",\"product_name\":\"M2 TONE\",\"option_id\":null,\"net_unit_cost\":\"0.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"107.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0500\",\"quantity_balance\":\"107.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1500\",\"real_unit_cost\":\"0.1500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"107.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.1500\"},{\"id\":\"27478\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5214\",\"product_code\":\"1247\",\"product_name\":\"motilium\",\"option_id\":null,\"net_unit_cost\":\"6.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8000\",\"real_unit_cost\":\"6.8000\",\"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\":\"6.8000\"},{\"id\":\"27479\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5215\",\"product_code\":\"1248\",\"product_name\":\"MULTIVITE\",\"option_id\":null,\"net_unit_cost\":\"11.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"59.1000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.8200\",\"real_unit_cost\":\"11.8200\",\"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\":\"11.8200\"},{\"id\":\"27480\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5216\",\"product_code\":\"1249\",\"product_name\":\"MAGACID PLUS\",\"option_id\":null,\"net_unit_cost\":\"19.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"115.8000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.3000\",\"real_unit_cost\":\"19.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\":\"19.3000\"},{\"id\":\"27481\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5217\",\"product_code\":\"1250\",\"product_name\":\"MYCOLEX CREAM\",\"option_id\":null,\"net_unit_cost\":\"3.0500\",\"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\":\"9.1500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.0500\",\"real_unit_cost\":\"3.0500\",\"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\":\"3.0500\"},{\"id\":\"27482\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5218\",\"product_code\":\"1251\",\"product_name\":\"NATRILIX SR 1.5MG\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"38.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"152.0000\",\"quantity_balance\":\"38.0000\",\"date\":\"2021-08-21\",\"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\":\"38.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27483\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5219\",\"product_code\":\"1252\",\"product_name\":\"MYCROGYNON Fe\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"135.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27484\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5220\",\"product_code\":\"1253\",\"product_name\":\"MR Q\",\"option_id\":null,\"net_unit_cost\":\"13.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"81.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.5000\"},{\"id\":\"27485\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5221\",\"product_code\":\"1254\",\"product_name\":\"NIFECARD XL 30\",\"option_id\":null,\"net_unit_cost\":\"21.6300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"21.6300\",\"real_unit_cost\":\"21.6300\",\"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\":\"21.6300\"},{\"id\":\"27486\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5222\",\"product_code\":\"1255\",\"product_name\":\"NEO HYCOLEX5ML\",\"option_id\":null,\"net_unit_cost\":\"10.4000\",\"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\":\"31.2000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.4000\",\"real_unit_cost\":\"10.4000\",\"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\":\"10.4000\"},{\"id\":\"27487\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5223\",\"product_code\":\"1256\",\"product_name\":\"NCP200ML\",\"option_id\":null,\"net_unit_cost\":\"23.4800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"23.4800\",\"real_unit_cost\":\"23.4800\",\"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\":\"23.4800\"},{\"id\":\"27488\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5224\",\"product_code\":\"1257\",\"product_name\":\"NERVE AND BONE\",\"option_id\":null,\"net_unit_cost\":\"0.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.8000\",\"quantity_balance\":\"32.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6500\",\"real_unit_cost\":\"0.6500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"32.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6500\"},{\"id\":\"27489\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5225\",\"product_code\":\"1258\",\"product_name\":\"NIZORAL CREAM\",\"option_id\":null,\"net_unit_cost\":\"6.0700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.0700\",\"real_unit_cost\":\"6.0700\",\"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\":\"6.0700\"},{\"id\":\"27490\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5226\",\"product_code\":\"1259\",\"product_name\":\"NO SPA40MG\",\"option_id\":null,\"net_unit_cost\":\"49.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"49.0000\",\"real_unit_cost\":\"49.0000\",\"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\":\"49.0000\"},{\"id\":\"27491\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5227\",\"product_code\":\"1260\",\"product_name\":\"OROLEX100MG\",\"option_id\":null,\"net_unit_cost\":\"13.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"13.6000\",\"real_unit_cost\":\"13.6000\",\"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\":\"13.6000\"},{\"id\":\"27492\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5228\",\"product_code\":\"1261\",\"product_name\":\"POLYGYNAX\",\"option_id\":null,\"net_unit_cost\":\"3.0500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.0500\",\"real_unit_cost\":\"3.0500\",\"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\":\"3.0500\"},{\"id\":\"27493\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5229\",\"product_code\":\"1262\",\"product_name\":\"AMOKSIKLAV228\",\"option_id\":null,\"net_unit_cost\":\"1.5400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"81.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"124.7400\",\"quantity_balance\":\"81.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5400\",\"real_unit_cost\":\"1.5400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"81.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5400\"},{\"id\":\"27494\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5230\",\"product_code\":\"1263\",\"product_name\":\"AMOXYCILLIN SUSP MG\",\"option_id\":null,\"net_unit_cost\":\"47.1000\",\"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.3000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"47.1000\",\"real_unit_cost\":\"47.1000\",\"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.1000\"},{\"id\":\"27495\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5231\",\"product_code\":\"1264\",\"product_name\":\"PARA DENK250 SUPPO\",\"option_id\":null,\"net_unit_cost\":\"94.2800\",\"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\":\"282.8400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"94.2800\",\"real_unit_cost\":\"94.2800\",\"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\":\"94.2800\"},{\"id\":\"27496\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5232\",\"product_code\":\"1265\",\"product_name\":\"PREGNACARE CONCEPTION\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"27497\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5233\",\"product_code\":\"1266\",\"product_name\":\"PREGNACARE PLUS\",\"option_id\":null,\"net_unit_cost\":\"11.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"11.5500\",\"real_unit_cost\":\"11.5500\",\"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\":\"11.5500\"},{\"id\":\"27498\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5234\",\"product_code\":\"1267\",\"product_name\":\"PILEX OINT\",\"option_id\":null,\"net_unit_cost\":\"14.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"14.5500\",\"real_unit_cost\":\"14.5500\",\"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\":\"14.5500\"},{\"id\":\"27499\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5235\",\"product_code\":\"1268\",\"product_name\":\"ALPHA GARLIC CAPS\",\"option_id\":null,\"net_unit_cost\":\"25.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"101.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.3000\",\"real_unit_cost\":\"25.3000\",\"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\":\"25.3000\"},{\"id\":\"27500\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5236\",\"product_code\":\"1269\",\"product_name\":\"ACTINAC TAB\",\"option_id\":null,\"net_unit_cost\":\"94.5600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"1512.9600\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"94.5600\",\"real_unit_cost\":\"94.5600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"94.5600\"},{\"id\":\"27501\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5237\",\"product_code\":\"1270\",\"product_name\":\"PERFECTIL\",\"option_id\":null,\"net_unit_cost\":\"1.2500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.2500\",\"real_unit_cost\":\"1.2500\",\"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\":\"1.2500\"},{\"id\":\"27502\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5238\",\"product_code\":\"1271\",\"product_name\":\"AMARYL4MG\",\"option_id\":null,\"net_unit_cost\":\"0.2600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.2600\",\"real_unit_cost\":\"0.2600\",\"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\":\"0.2600\"},{\"id\":\"27503\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5239\",\"product_code\":\"1272\",\"product_name\":\"ANAFRANIL25\",\"option_id\":null,\"net_unit_cost\":\"0.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"38.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.0200\",\"quantity_balance\":\"38.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2900\",\"real_unit_cost\":\"0.2900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"38.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2900\"},{\"id\":\"27504\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5240\",\"product_code\":\"1273\",\"product_name\":\"APC 4S\",\"option_id\":null,\"net_unit_cost\":\"18.5000\",\"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\":\"55.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"18.5000\"},{\"id\":\"27505\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5241\",\"product_code\":\"1274\",\"product_name\":\"ALUMINIUM HYDROXIDE\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"27506\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5242\",\"product_code\":\"1275\",\"product_name\":\"BIOFERON SRP\",\"option_id\":null,\"net_unit_cost\":\"11.6400\",\"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\":\"34.9200\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.6400\",\"real_unit_cost\":\"11.6400\",\"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\":\"11.6400\"},{\"id\":\"27507\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5243\",\"product_code\":\"1276\",\"product_name\":\"BIOFGERON CAPS\",\"option_id\":null,\"net_unit_cost\":\"10.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.9000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.9000\",\"real_unit_cost\":\"10.9000\",\"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\":\"10.9000\"},{\"id\":\"27508\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5244\",\"product_code\":\"1277\",\"product_name\":\"BONISAN\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"27509\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5245\",\"product_code\":\"1278\",\"product_name\":\"BELLS CHILDREN,S COUGH\",\"option_id\":null,\"net_unit_cost\":\"18.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"18.8000\",\"real_unit_cost\":\"18.8000\",\"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\":\"18.8000\"},{\"id\":\"27510\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5246\",\"product_code\":\"1279\",\"product_name\":\"BORGES125\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"27511\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5247\",\"product_code\":\"1280\",\"product_name\":\"BORGES250ML\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"27512\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5248\",\"product_code\":\"1281\",\"product_name\":\"CAMEL500\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"quantity_received\":null,\"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\":\"7.0000\"},{\"id\":\"27513\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5249\",\"product_code\":\"1282\",\"product_name\":\"CAMEL 250ML\",\"option_id\":null,\"net_unit_cost\":\"2.8300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"67.9200\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.8300\",\"real_unit_cost\":\"2.8300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.8300\"},{\"id\":\"27514\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5250\",\"product_code\":\"1283\",\"product_name\":\"CAMEL 125ML\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.0000\",\"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\":\"26.0000\"},{\"id\":\"27515\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5251\",\"product_code\":\"1284\",\"product_name\":\"ANUSOL SUPPOS\",\"option_id\":null,\"net_unit_cost\":\"5.5300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.5300\",\"real_unit_cost\":\"5.5300\",\"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\":\"5.5300\"},{\"id\":\"27516\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5252\",\"product_code\":\"1285\",\"product_name\":\"BIG BEN\",\"option_id\":null,\"net_unit_cost\":\"9.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.3000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.6500\",\"real_unit_cost\":\"9.6500\",\"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\":\"9.6500\"},{\"id\":\"27517\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5253\",\"product_code\":\"1286\",\"product_name\":\"ATORVASTATIN10MG\",\"option_id\":null,\"net_unit_cost\":\"14.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.9500\",\"real_unit_cost\":\"14.9500\",\"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\":\"14.9500\"},{\"id\":\"27518\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5254\",\"product_code\":\"1287\",\"product_name\":\"ATORVASTATIN20MG\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.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\":\"35.0000\"},{\"id\":\"27519\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5255\",\"product_code\":\"1288\",\"product_name\":\"BONAPLEX250MLS\",\"option_id\":null,\"net_unit_cost\":\"11.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"57.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.4000\",\"real_unit_cost\":\"11.4000\",\"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\":\"11.4000\"},{\"id\":\"27520\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5256\",\"product_code\":\"1289\",\"product_name\":\"BONGELA CHILD\",\"option_id\":null,\"net_unit_cost\":\"32.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"64.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"32.4000\",\"real_unit_cost\":\"32.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\":\"32.4000\"},{\"id\":\"27521\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5257\",\"product_code\":\"1290\",\"product_name\":\"BELLS BABY COUGH\",\"option_id\":null,\"net_unit_cost\":\"27.6000\",\"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\":\"82.8000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.6000\",\"real_unit_cost\":\"27.6000\",\"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\":\"27.6000\"},{\"id\":\"27522\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5258\",\"product_code\":\"1291\",\"product_name\":\"BONGELA ADULT\",\"option_id\":null,\"net_unit_cost\":\"23.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"119.9500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"23.9900\",\"real_unit_cost\":\"23.9900\",\"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\":\"23.9900\"},{\"id\":\"27523\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5259\",\"product_code\":\"1292\",\"product_name\":\"BETALOC50MG\",\"option_id\":null,\"net_unit_cost\":\"22.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"22.3000\",\"real_unit_cost\":\"22.3000\",\"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\":\"22.3000\"},{\"id\":\"27524\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5260\",\"product_code\":\"1293\",\"product_name\":\"CATAFLAM 50MG\",\"option_id\":null,\"net_unit_cost\":\"3.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"109.2000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9000\",\"real_unit_cost\":\"3.9000\",\"quantity_received\":null,\"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\":\"3.9000\"},{\"id\":\"27525\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5261\",\"product_code\":\"1294\",\"product_name\":\"AXACEF 250\",\"option_id\":null,\"net_unit_cost\":\"9.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"107.8000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8000\",\"real_unit_cost\":\"9.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.8000\"},{\"id\":\"27526\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5262\",\"product_code\":\"1295\",\"product_name\":\"AXACEF 500\",\"option_id\":null,\"net_unit_cost\":\"5.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"142.8000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.1000\",\"real_unit_cost\":\"5.1000\",\"quantity_received\":null,\"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\":\"5.1000\"},{\"id\":\"27527\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5263\",\"product_code\":\"1296\",\"product_name\":\"VIT B DENK\",\"option_id\":null,\"net_unit_cost\":\"141.7100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"141.7100\",\"real_unit_cost\":\"141.7100\",\"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\":\"141.7100\"},{\"id\":\"27528\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5264\",\"product_code\":\"1297\",\"product_name\":\"ATACAND16MG\",\"option_id\":null,\"net_unit_cost\":\"5.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-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"27529\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5265\",\"product_code\":\"1298\",\"product_name\":\"ATACAND PLUS 16\\/12.5MG\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"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\":\"25.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"8.5000\"},{\"id\":\"27530\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5266\",\"product_code\":\"1299\",\"product_name\":\"TEETHING MIXTURE ERNEST\",\"option_id\":null,\"net_unit_cost\":\"12.5100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.5100\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.5100\",\"real_unit_cost\":\"12.5100\",\"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\":\"12.5100\"},{\"id\":\"27531\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5267\",\"product_code\":\"1300\",\"product_name\":\"SURFAZ-SN TRIPLE  ACTION CREAM\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.6200\",\"real_unit_cost\":\"5.6200\",\"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\":\"5.6200\"},{\"id\":\"27532\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5268\",\"product_code\":\"1301\",\"product_name\":\"TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329\",\"option_id\":null,\"net_unit_cost\":\"55.2100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"331.2600\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"55.2100\",\"real_unit_cost\":\"55.2100\",\"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\":\"55.2100\"},{\"id\":\"27533\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5269\",\"product_code\":\"1302\",\"product_name\":\"AZIROCIN CAPS USP 250 MG\",\"option_id\":null,\"net_unit_cost\":\"7.4500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"81.9500\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.4500\",\"real_unit_cost\":\"7.4500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.4500\"},{\"id\":\"27534\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5270\",\"product_code\":\"1303\",\"product_name\":\"AUGMENTIN  625 MG\",\"option_id\":null,\"net_unit_cost\":\"1.9700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"59.1000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9700\",\"real_unit_cost\":\"1.9700\",\"quantity_received\":null,\"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\":\"1.9700\"},{\"id\":\"27535\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5271\",\"product_code\":\"1304\",\"product_name\":\"AZIRON AZITHROMYCYCIN TAB USP 500 MG\",\"option_id\":null,\"net_unit_cost\":\"8.2000\",\"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\":\"24.6000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.2000\",\"real_unit_cost\":\"8.2000\",\"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\":\"8.2000\"},{\"id\":\"27536\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5272\",\"product_code\":\"1305\",\"product_name\":\"TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"27537\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5273\",\"product_code\":\"1306\",\"product_name\":\"CORORANGE HAEMATINIC CAPS SOFTGELS\",\"option_id\":null,\"net_unit_cost\":\"3.0500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.0500\",\"real_unit_cost\":\"3.0500\",\"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\":\"3.0500\"},{\"id\":\"27538\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5274\",\"product_code\":\"1307\",\"product_name\":\"CATAFLAM 50MG DICLOFENAC. KAL ANTI-INALGESIC\",\"option_id\":null,\"net_unit_cost\":\"2.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.6000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"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\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.7000\"},{\"id\":\"27539\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5275\",\"product_code\":\"1308\",\"product_name\":\"AMOXYCILLIN SUSP ORAL BP 125\\/5ml\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27540\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5276\",\"product_code\":\"1309\",\"product_name\":\"CO-DIOVAN 80\\/12.5MG\",\"option_id\":null,\"net_unit_cost\":\"14.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"14.3000\",\"real_unit_cost\":\"14.3000\",\"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\":\"14.3000\"},{\"id\":\"27541\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5277\",\"product_code\":\"1310\",\"product_name\":\"STOPKOF COUGH SYRUP ADULT FORMULA\",\"option_id\":null,\"net_unit_cost\":\"18.2100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.8400\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.2100\",\"real_unit_cost\":\"18.2100\",\"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\":\"18.2100\"},{\"id\":\"27542\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5278\",\"product_code\":\"1311\",\"product_name\":\"AMOKSIKLAV  228.5 ML ORAL SUSP\",\"option_id\":null,\"net_unit_cost\":\"335.0300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"335.0300\",\"real_unit_cost\":\"335.0300\",\"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\":\"335.0300\"},{\"id\":\"27543\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5279\",\"product_code\":\"1312\",\"product_name\":\"CLOTRI-DENK 100 VAGINAL TABS\",\"option_id\":null,\"net_unit_cost\":\"0.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5000\",\"real_unit_cost\":\"0.5000\",\"quantity_received\":null,\"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\":\"0.5000\"},{\"id\":\"27544\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5280\",\"product_code\":\"1313\",\"product_name\":\"SARETTO TABS 15MG\",\"option_id\":null,\"net_unit_cost\":\"9.5100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.5100\",\"real_unit_cost\":\"9.5100\",\"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\":\"9.5100\"},{\"id\":\"27545\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5281\",\"product_code\":\"1314\",\"product_name\":\"ZINTAB 10ML\",\"option_id\":null,\"net_unit_cost\":\"12.7400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"63.7000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.7400\",\"real_unit_cost\":\"12.7400\",\"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\":\"12.7400\"},{\"id\":\"27546\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5282\",\"product_code\":\"1315\",\"product_name\":\"TRIX ORIS S\\/S\",\"option_id\":null,\"net_unit_cost\":\"72.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"144.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"72.0000\",\"real_unit_cost\":\"72.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\":\"72.0000\"},{\"id\":\"27547\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5283\",\"product_code\":\"1316\",\"product_name\":\"ZINCOFER LIQUIED HAEMATINIC 200ML\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":null,\"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\":\"6.0000\"},{\"id\":\"27548\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5284\",\"product_code\":\"1317\",\"product_name\":\"ZITHROMAX  SUSP\",\"option_id\":null,\"net_unit_cost\":\"7.9700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.9400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9700\",\"real_unit_cost\":\"7.9700\",\"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\":\"7.9700\"},{\"id\":\"27549\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5285\",\"product_code\":\"1318\",\"product_name\":\"WORMPLEX 400 SUSP. 20ML\",\"option_id\":null,\"net_unit_cost\":\"18.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"111.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"18.5000\"},{\"id\":\"27550\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5286\",\"product_code\":\"1319\",\"product_name\":\"SE\'CLEAR EYE\\/EAR DROP\",\"option_id\":null,\"net_unit_cost\":\"57.0500\",\"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\":\"171.1500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"57.0500\",\"real_unit_cost\":\"57.0500\",\"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\":\"57.0500\"},{\"id\":\"27551\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5287\",\"product_code\":\"1320\",\"product_name\":\"ZINCOVIT TAB\",\"option_id\":null,\"net_unit_cost\":\"14.5300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.0600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.5300\",\"real_unit_cost\":\"14.5300\",\"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\":\"14.5300\"},{\"id\":\"27552\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5288\",\"product_code\":\"1321\",\"product_name\":\"WELLBABY MULTI-VIT LIQ\",\"option_id\":null,\"net_unit_cost\":\"23.0900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"23.0900\",\"real_unit_cost\":\"23.0900\",\"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\":\"23.0900\"},{\"id\":\"27553\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5289\",\"product_code\":\"1322\",\"product_name\":\"VERMOX SUSP\",\"option_id\":null,\"net_unit_cost\":\"116.3300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"232.6600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"116.3300\",\"real_unit_cost\":\"116.3300\",\"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\":\"116.3300\"},{\"id\":\"27554\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5290\",\"product_code\":\"1323\",\"product_name\":\"MOTILIUM 10 MG 30 TABS ORAL JANSSEN\",\"option_id\":null,\"net_unit_cost\":\"8.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.2000\",\"real_unit_cost\":\"8.2000\",\"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\":\"8.2000\"},{\"id\":\"27555\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5291\",\"product_code\":\"1324\",\"product_name\":\"TAVANIC 500MG LEVAFLAUZACIN sanofi\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"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\":\"2.0000\"},{\"id\":\"27556\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5292\",\"product_code\":\"1325\",\"product_name\":\"bisoprolol fumarate 2.5mg tabs sandox\",\"option_id\":null,\"net_unit_cost\":\"4.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.4000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.5500\",\"real_unit_cost\":\"4.5500\",\"quantity_received\":null,\"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.5500\"},{\"id\":\"27557\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5293\",\"product_code\":\"1326\",\"product_name\":\"POLYFER SYR FORTE  50ML\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"27558\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5294\",\"product_code\":\"1327\",\"product_name\":\"SULFUR OINTMENT DANEX\",\"option_id\":null,\"net_unit_cost\":\"7.7300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.7300\",\"real_unit_cost\":\"7.7300\",\"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\":\"7.7300\"},{\"id\":\"27559\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5295\",\"product_code\":\"1328\",\"product_name\":\"TAGERA FORTE\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"27560\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5296\",\"product_code\":\"1329\",\"product_name\":\"PRIMOLUT N\",\"option_id\":null,\"net_unit_cost\":\"1.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"53.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"69.9600\",\"quantity_balance\":\"53.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3200\",\"real_unit_cost\":\"1.3200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"53.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.3200\"},{\"id\":\"27561\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5297\",\"product_code\":\"1330\",\"product_name\":\"PARABRU\",\"option_id\":null,\"net_unit_cost\":\"1.8000\",\"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\":\"5.4000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8000\",\"real_unit_cost\":\"1.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\":\"1.8000\"},{\"id\":\"27562\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5298\",\"product_code\":\"1331\",\"product_name\":\"CITRO C\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"27563\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5299\",\"product_code\":\"1332\",\"product_name\":\"COLODIUM\",\"option_id\":null,\"net_unit_cost\":\"9.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"27564\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5300\",\"product_code\":\"1333\",\"product_name\":\"COLESTOP10MG\",\"option_id\":null,\"net_unit_cost\":\"5.4200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.6800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4200\",\"real_unit_cost\":\"5.4200\",\"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\":\"5.4200\"},{\"id\":\"27565\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5301\",\"product_code\":\"1334\",\"product_name\":\"CONGESTYL SRP\",\"option_id\":null,\"net_unit_cost\":\"18.2100\",\"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\":\"54.6300\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.2100\",\"real_unit_cost\":\"18.2100\",\"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\":\"18.2100\"},{\"id\":\"27566\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5302\",\"product_code\":\"1335\",\"product_name\":\"CONGESTYL TAB\",\"option_id\":null,\"net_unit_cost\":\"5.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"76.8300\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9100\",\"real_unit_cost\":\"5.9100\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.9100\"},{\"id\":\"27567\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5303\",\"product_code\":\"1336\",\"product_name\":\"CLOTRI DENK CREAM\",\"option_id\":null,\"net_unit_cost\":\"1.2500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.2500\",\"real_unit_cost\":\"1.2500\",\"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\":\"1.2500\"},{\"id\":\"27568\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5304\",\"product_code\":\"1337\",\"product_name\":\"DALACIN 300MG ORIGINAL\",\"option_id\":null,\"net_unit_cost\":\"25.5400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"25.5400\",\"real_unit_cost\":\"25.5400\",\"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\":\"25.5400\"},{\"id\":\"27569\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5305\",\"product_code\":\"1338\",\"product_name\":\"ANAFRANIL25\",\"option_id\":null,\"net_unit_cost\":\"25.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"25.3000\",\"real_unit_cost\":\"25.3000\",\"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\":\"25.3000\"},{\"id\":\"27570\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5306\",\"product_code\":\"1339\",\"product_name\":\"DEEP HEAT SPRAY 150ML\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"27571\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5307\",\"product_code\":\"1340\",\"product_name\":\"DEEP FREEZE SPRAY 150ML\",\"option_id\":null,\"net_unit_cost\":\"42.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"84.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"42.0000\",\"real_unit_cost\":\"42.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\":\"42.0000\"},{\"id\":\"27572\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5308\",\"product_code\":\"1341\",\"product_name\":\"TENOX5MG\",\"option_id\":null,\"net_unit_cost\":\"12.0200\",\"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\":\"36.0600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0200\",\"real_unit_cost\":\"12.0200\",\"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\":\"12.0200\"},{\"id\":\"27573\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5309\",\"product_code\":\"1342\",\"product_name\":\"CIPRINOL 500\",\"option_id\":null,\"net_unit_cost\":\"4.4700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.4700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4700\",\"real_unit_cost\":\"4.4700\",\"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\":\"4.4700\"},{\"id\":\"27574\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5310\",\"product_code\":\"1343\",\"product_name\":\"COOL EYES\",\"option_id\":null,\"net_unit_cost\":\"7.3200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.3200\",\"real_unit_cost\":\"7.3200\",\"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\":\"7.3200\"},{\"id\":\"27575\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5311\",\"product_code\":\"1344\",\"product_name\":\"CLOSE UP140G\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"27576\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5312\",\"product_code\":\"1345\",\"product_name\":\"CORORANGE SRP\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"125.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"27577\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5313\",\"product_code\":\"1346\",\"product_name\":\"COTTON WOOL200G\",\"option_id\":null,\"net_unit_cost\":\"2.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"96.2000\",\"quantity_balance\":\"37.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.6000\",\"real_unit_cost\":\"2.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"37.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.6000\"},{\"id\":\"27578\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5314\",\"product_code\":\"1347\",\"product_name\":\"AZOMAX 500\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"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\":\"3.4000\"},{\"id\":\"27579\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5315\",\"product_code\":\"1348\",\"product_name\":\"TADOL 100\",\"option_id\":null,\"net_unit_cost\":\"49.2100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"246.0500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"49.2100\",\"real_unit_cost\":\"49.2100\",\"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\":\"49.2100\"},{\"id\":\"27580\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5316\",\"product_code\":\"1349\",\"product_name\":\"VAGINAX CREAM\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"144.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.0000\",\"quantity_received\":null,\"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\":\"18.0000\"},{\"id\":\"27581\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5317\",\"product_code\":\"1350\",\"product_name\":\"ZINNAT 250 TAB\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"27582\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5318\",\"product_code\":\"1351\",\"product_name\":\"CIPROLEX TZ\",\"option_id\":null,\"net_unit_cost\":\"4.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"74.4000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6500\",\"real_unit_cost\":\"4.6500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.6500\"},{\"id\":\"27583\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5319\",\"product_code\":\"1352\",\"product_name\":\"VITAFORCE\",\"option_id\":null,\"net_unit_cost\":\"3.2300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"56.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"180.8800\",\"quantity_balance\":\"56.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.2300\",\"real_unit_cost\":\"3.2300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"56.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.2300\"},{\"id\":\"27584\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5320\",\"product_code\":\"1353\",\"product_name\":\"ZESTRIL 20MG\",\"option_id\":null,\"net_unit_cost\":\"6.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"86.8000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.2000\",\"real_unit_cost\":\"6.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.2000\"},{\"id\":\"27585\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5321\",\"product_code\":\"1354\",\"product_name\":\"ZESTRIL 10MG\",\"option_id\":null,\"net_unit_cost\":\"2.4300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.4300\",\"real_unit_cost\":\"2.4300\",\"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\":\"2.4300\"},{\"id\":\"27586\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5322\",\"product_code\":\"1355\",\"product_name\":\"CRESTOR 20\",\"option_id\":null,\"net_unit_cost\":\"4.0200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.0200\",\"real_unit_cost\":\"4.0200\",\"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\":\"4.0200\"},{\"id\":\"27587\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5323\",\"product_code\":\"1356\",\"product_name\":\"NEUROBION\",\"option_id\":null,\"net_unit_cost\":\"28.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"28.5500\",\"real_unit_cost\":\"28.5500\",\"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\":\"28.5500\"},{\"id\":\"27588\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5324\",\"product_code\":\"1357\",\"product_name\":\"CO APPROVEL 150\\/12.5\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"27589\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5325\",\"product_code\":\"1358\",\"product_name\":\"OSTEOCARE ORG TAB\",\"option_id\":null,\"net_unit_cost\":\"23.8500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"47.7000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"23.8500\",\"real_unit_cost\":\"23.8500\",\"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\":\"23.8500\"},{\"id\":\"27590\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5326\",\"product_code\":\"1359\",\"product_name\":\"TOBRADEX EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.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\":\"2.0000\"},{\"id\":\"27591\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5327\",\"product_code\":\"1360\",\"product_name\":\"ZINACEF 750\",\"option_id\":null,\"net_unit_cost\":\"9.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.6000\",\"real_unit_cost\":\"9.6000\",\"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\":\"9.6000\"},{\"id\":\"27592\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5328\",\"product_code\":\"1361\",\"product_name\":\"ANGEL CREAM\",\"option_id\":null,\"net_unit_cost\":\"0.2300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.2300\",\"real_unit_cost\":\"0.2300\",\"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\":\"0.2300\"},{\"id\":\"27593\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5329\",\"product_code\":\"1362\",\"product_name\":\"CASTOR OIL\",\"option_id\":null,\"net_unit_cost\":\"2.9500\",\"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\":\"8.8500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9500\",\"real_unit_cost\":\"2.9500\",\"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\":\"2.9500\"},{\"id\":\"27594\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5330\",\"product_code\":\"1363\",\"product_name\":\"ZINTAB 20MG 1000S\",\"option_id\":null,\"net_unit_cost\":\"6.8600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.8600\",\"real_unit_cost\":\"6.8600\",\"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\":\"6.8600\"},{\"id\":\"27595\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5331\",\"product_code\":\"1364\",\"product_name\":\"COLDRELIEF CAPS\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.5000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5000\"},{\"id\":\"27596\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5332\",\"product_code\":\"1365\",\"product_name\":\"CIROTAMIN SRP\",\"option_id\":null,\"net_unit_cost\":\"1.3800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"95.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"131.1000\",\"quantity_balance\":\"95.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3800\",\"real_unit_cost\":\"1.3800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"95.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.3800\"},{\"id\":\"27597\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5333\",\"product_code\":\"1366\",\"product_name\":\"TETRA OINT\",\"option_id\":null,\"net_unit_cost\":\"1.3100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"58.9500\",\"quantity_balance\":\"45.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3100\",\"real_unit_cost\":\"1.3100\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"45.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.3100\"},{\"id\":\"27598\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5334\",\"product_code\":\"1367\",\"product_name\":\"STREPSILS ORG\",\"option_id\":null,\"net_unit_cost\":\"19.1100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"19.1100\",\"real_unit_cost\":\"19.1100\",\"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\":\"19.1100\"},{\"id\":\"27599\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5335\",\"product_code\":\"1368\",\"product_name\":\"STREPTOL54\\/6\",\"option_id\":null,\"net_unit_cost\":\"15.8500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.7000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.8500\",\"real_unit_cost\":\"15.8500\",\"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\":\"15.8500\"},{\"id\":\"27600\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5336\",\"product_code\":\"1369\",\"product_name\":\"VENTOLIN EVOHALER\",\"option_id\":null,\"net_unit_cost\":\"9.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8000\",\"real_unit_cost\":\"9.8000\",\"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\":\"9.8000\"},{\"id\":\"27601\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5337\",\"product_code\":\"1370\",\"product_name\":\"V-FIRM\",\"option_id\":null,\"net_unit_cost\":\"5.5300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.5300\",\"real_unit_cost\":\"5.5300\",\"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\":\"5.5300\"},{\"id\":\"27602\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5338\",\"product_code\":\"1371\",\"product_name\":\"WARFARIN 5MG\",\"option_id\":null,\"net_unit_cost\":\"20.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"160.8000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.1000\",\"real_unit_cost\":\"20.1000\",\"quantity_received\":null,\"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\":\"20.1000\"},{\"id\":\"27603\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5339\",\"product_code\":\"1372\",\"product_name\":\"WARFARIN 1MG\",\"option_id\":null,\"net_unit_cost\":\"27.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"27.0000\",\"real_unit_cost\":\"27.0000\",\"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\":\"27.0000\"},{\"id\":\"27604\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5340\",\"product_code\":\"1373\",\"product_name\":\"TRES ORIX 250ML\",\"option_id\":null,\"net_unit_cost\":\"28.5000\",\"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\":\"85.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.5000\",\"real_unit_cost\":\"28.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\":\"28.5000\"},{\"id\":\"27605\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5341\",\"product_code\":\"1374\",\"product_name\":\"WELLMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"26.2200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.2200\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.2200\",\"real_unit_cost\":\"26.2200\",\"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\":\"26.2200\"},{\"id\":\"27606\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5342\",\"product_code\":\"1375\",\"product_name\":\"WELLWOMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"5.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.4500\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.3500\",\"real_unit_cost\":\"5.3500\",\"quantity_received\":null,\"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\":\"5.3500\"},{\"id\":\"27607\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5343\",\"product_code\":\"1376\",\"product_name\":\"VENTOLIN INHALER\",\"option_id\":null,\"net_unit_cost\":\"1.3800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.3800\",\"real_unit_cost\":\"1.3800\",\"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\":\"1.3800\"},{\"id\":\"27608\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5344\",\"product_code\":\"1377\",\"product_name\":\"WORMPLEX SUSP\",\"option_id\":null,\"net_unit_cost\":\"2.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"188.0000\",\"quantity_balance\":\"80.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.3500\",\"real_unit_cost\":\"2.3500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"80.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.3500\"},{\"id\":\"27609\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5345\",\"product_code\":\"1378\",\"product_name\":\"VOLLTFAST 50MG\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"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\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27610\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5346\",\"product_code\":\"1379\",\"product_name\":\"TOTHEMA\",\"option_id\":null,\"net_unit_cost\":\"40.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"161.4000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.3500\",\"real_unit_cost\":\"40.3500\",\"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\":\"40.3500\"},{\"id\":\"27611\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5347\",\"product_code\":\"1380\",\"product_name\":\"GVITHER INJ\",\"option_id\":null,\"net_unit_cost\":\"51.2000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"51.2000\",\"real_unit_cost\":\"51.2000\",\"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\":\"51.2000\"},{\"id\":\"27612\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5348\",\"product_code\":\"1381\",\"product_name\":\"PROVIRON\",\"option_id\":null,\"net_unit_cost\":\"86.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"86.0000\",\"real_unit_cost\":\"86.0000\",\"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\":\"86.0000\"},{\"id\":\"27613\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5349\",\"product_code\":\"1382\",\"product_name\":\"PROSTACARE\",\"option_id\":null,\"net_unit_cost\":\"23.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"115.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"23.0000\",\"real_unit_cost\":\"23.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\":\"23.0000\"},{\"id\":\"27614\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5350\",\"product_code\":\"1383\",\"product_name\":\"ROCEPHINE INJ 2G\",\"option_id\":null,\"net_unit_cost\":\"20.2400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"20.2400\",\"real_unit_cost\":\"20.2400\",\"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\":\"20.2400\"},{\"id\":\"27615\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5351\",\"product_code\":\"1384\",\"product_name\":\"RHINATHIOL ADULT BLUE\",\"option_id\":null,\"net_unit_cost\":\"2.2800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.8000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.2800\",\"real_unit_cost\":\"2.2800\",\"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\":\"2.2800\"},{\"id\":\"27616\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5352\",\"product_code\":\"1385\",\"product_name\":\"RHINATHIOL INFANT PINK\",\"option_id\":null,\"net_unit_cost\":\"3.8500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.8500\",\"real_unit_cost\":\"3.8500\",\"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\":\"3.8500\"},{\"id\":\"27617\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5353\",\"product_code\":\"1386\",\"product_name\":\"PROXIMEXA CAPS 250\",\"option_id\":null,\"net_unit_cost\":\"1.5100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.5100\",\"real_unit_cost\":\"1.5100\",\"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\":\"1.5100\"},{\"id\":\"27618\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5354\",\"product_code\":\"1387\",\"product_name\":\"LIPTON GREEN TEA\",\"option_id\":null,\"net_unit_cost\":\"16.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"16.5500\",\"real_unit_cost\":\"16.5500\",\"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\":\"16.5500\"},{\"id\":\"27619\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5355\",\"product_code\":\"1388\",\"product_name\":\"LIGABA 75\",\"option_id\":null,\"net_unit_cost\":\"11.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"69.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.5000\"},{\"id\":\"27620\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5356\",\"product_code\":\"1389\",\"product_name\":\"LEXSPORIN OINT\",\"option_id\":null,\"net_unit_cost\":\"10.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"10.8000\",\"real_unit_cost\":\"10.8000\",\"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.8000\"},{\"id\":\"27621\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5357\",\"product_code\":\"1390\",\"product_name\":\"LEXOTANIL 1.5MG\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"27622\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5358\",\"product_code\":\"1391\",\"product_name\":\"LAMISIL TAB\",\"option_id\":null,\"net_unit_cost\":\"0.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"135.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"58.0500\",\"quantity_balance\":\"135.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4300\",\"real_unit_cost\":\"0.4300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"135.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4300\"},{\"id\":\"27623\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5359\",\"product_code\":\"1392\",\"product_name\":\"SAMALIN JUNIOR\\/NON DROWSY\",\"option_id\":null,\"net_unit_cost\":\"4.1000\",\"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\":\"12.3000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.1000\",\"real_unit_cost\":\"4.1000\",\"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\":\"4.1000\"},{\"id\":\"27624\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5360\",\"product_code\":\"1393\",\"product_name\":\"RAPINOL\",\"option_id\":null,\"net_unit_cost\":\"9.2200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.1000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.2200\",\"real_unit_cost\":\"9.2200\",\"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\":\"9.2200\"},{\"id\":\"27625\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5361\",\"product_code\":\"1394\",\"product_name\":\"KOFOF BABY\",\"option_id\":null,\"net_unit_cost\":\"67.6200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"67.6200\",\"real_unit_cost\":\"67.6200\",\"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\":\"67.6200\"},{\"id\":\"27626\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5362\",\"product_code\":\"1395\",\"product_name\":\"MAGACID PLUS\",\"option_id\":null,\"net_unit_cost\":\"0.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.9000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3000\",\"real_unit_cost\":\"0.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3000\"},{\"id\":\"27627\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5363\",\"product_code\":\"1396\",\"product_name\":\"TRITACE 2.5MG\",\"option_id\":null,\"net_unit_cost\":\"4.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.4400\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4300\",\"real_unit_cost\":\"4.4300\",\"quantity_received\":null,\"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.4300\"},{\"id\":\"27628\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5364\",\"product_code\":\"1397\",\"product_name\":\"PREDNISOLONE 5MG\",\"option_id\":null,\"net_unit_cost\":\"60.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"60.0000\",\"real_unit_cost\":\"60.0000\",\"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\":\"60.0000\"},{\"id\":\"27629\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5365\",\"product_code\":\"1398\",\"product_name\":\"NIFE DENK 20\",\"option_id\":null,\"net_unit_cost\":\"29.8100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"119.2400\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.8100\",\"real_unit_cost\":\"29.8100\",\"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\":\"29.8100\"},{\"id\":\"27630\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5366\",\"product_code\":\"1399\",\"product_name\":\"ORELOX 100TAB\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27631\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5367\",\"product_code\":\"1400\",\"product_name\":\"OSTEOCARE SRP ORG\",\"option_id\":null,\"net_unit_cost\":\"3.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.1000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1000\",\"real_unit_cost\":\"3.1000\",\"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\":\"3.1000\"},{\"id\":\"27632\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5368\",\"product_code\":\"1401\",\"product_name\":\"PARA SRP M\\/G\",\"option_id\":null,\"net_unit_cost\":\"0.4800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"85.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.8000\",\"quantity_balance\":\"85.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4800\",\"real_unit_cost\":\"0.4800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"85.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4800\"},{\"id\":\"27633\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5369\",\"product_code\":\"1402\",\"product_name\":\"MAXMOX 500\",\"option_id\":null,\"net_unit_cost\":\"10.3000\",\"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\":\"30.9000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.3000\",\"real_unit_cost\":\"10.3000\",\"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\":\"10.3000\"},{\"id\":\"27634\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5370\",\"product_code\":\"1403\",\"product_name\":\"ORS\",\"option_id\":null,\"net_unit_cost\":\"0.4200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"168.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.5600\",\"quantity_balance\":\"168.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4200\",\"real_unit_cost\":\"0.4200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"168.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4200\"},{\"id\":\"27635\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5371\",\"product_code\":\"1404\",\"product_name\":\"PARA INFUSION\",\"option_id\":null,\"net_unit_cost\":\"54.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"54.0000\",\"real_unit_cost\":\"54.0000\",\"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\":\"54.0000\"},{\"id\":\"27636\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5372\",\"product_code\":\"1405\",\"product_name\":\"PARA TAB\",\"option_id\":null,\"net_unit_cost\":\"19.3500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"19.3500\",\"real_unit_cost\":\"19.3500\",\"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\":\"19.3500\"},{\"id\":\"27637\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5373\",\"product_code\":\"1406\",\"product_name\":\"ROCEPHINE INJ 1G\",\"option_id\":null,\"net_unit_cost\":\"9.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.3000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.3000\",\"real_unit_cost\":\"9.3000\",\"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\":\"9.3000\"},{\"id\":\"27638\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5374\",\"product_code\":\"1407\",\"product_name\":\"CLAVULIN TAB\",\"option_id\":null,\"net_unit_cost\":\"2.3400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.3600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.3400\",\"real_unit_cost\":\"2.3400\",\"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\":\"2.3400\"},{\"id\":\"27639\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5375\",\"product_code\":\"1408\",\"product_name\":\"DEEP HEAT OINT 15G\",\"option_id\":null,\"net_unit_cost\":\"0.1800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.4200\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1800\",\"real_unit_cost\":\"0.1800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.1800\"},{\"id\":\"27640\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5376\",\"product_code\":\"1409\",\"product_name\":\"AMPICLOX SUSP\",\"option_id\":null,\"net_unit_cost\":\"4.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.9000\",\"real_unit_cost\":\"4.9000\",\"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\":\"4.9000\"},{\"id\":\"27641\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5377\",\"product_code\":\"1410\",\"product_name\":\"SYRINGE 5CC\",\"option_id\":null,\"net_unit_cost\":\"9.7600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.7600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.7600\",\"real_unit_cost\":\"9.7600\",\"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\":\"9.7600\"},{\"id\":\"27642\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5378\",\"product_code\":\"1411\",\"product_name\":\"ASCORYL SRP\",\"option_id\":null,\"net_unit_cost\":\"21.8300\",\"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\":\"65.4900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"21.8300\",\"real_unit_cost\":\"21.8300\",\"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\":\"21.8300\"},{\"id\":\"27643\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5379\",\"product_code\":\"1412\",\"product_name\":\"ZOXON 1000MG\",\"option_id\":null,\"net_unit_cost\":\"4.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"52.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"244.4000\",\"quantity_balance\":\"52.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.7000\",\"real_unit_cost\":\"4.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"52.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.7000\"},{\"id\":\"27644\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5380\",\"product_code\":\"1413\",\"product_name\":\"ASOMEX 2.5MG\",\"option_id\":null,\"net_unit_cost\":\"4.0500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.0500\",\"real_unit_cost\":\"4.0500\",\"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\":\"4.0500\"},{\"id\":\"27645\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5381\",\"product_code\":\"1414\",\"product_name\":\"NORVASC 5MG\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\"},{\"id\":\"27646\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5382\",\"product_code\":\"1415\",\"product_name\":\"KOFFEX JUNIOR\",\"option_id\":null,\"net_unit_cost\":\"17.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"17.8000\",\"real_unit_cost\":\"17.8000\",\"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\":\"17.8000\"},{\"id\":\"27647\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5383\",\"product_code\":\"1416\",\"product_name\":\"NORMAL SALINE\",\"option_id\":null,\"net_unit_cost\":\"0.9600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"67.2000\",\"quantity_balance\":\"70.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9600\",\"real_unit_cost\":\"0.9600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"70.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.9600\"},{\"id\":\"27648\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5384\",\"product_code\":\"1417\",\"product_name\":\"LIV 52 SRP\",\"option_id\":null,\"net_unit_cost\":\"0.7500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.7500\",\"real_unit_cost\":\"0.7500\",\"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\":\"0.7500\"},{\"id\":\"27649\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5385\",\"product_code\":\"1418\",\"product_name\":\"CO-TRIMOXAXOLE TAB\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":null,\"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\":\"3.5000\"},{\"id\":\"27650\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5386\",\"product_code\":\"1419\",\"product_name\":\"RONAXICAM\",\"option_id\":null,\"net_unit_cost\":\"7.0400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.0400\",\"real_unit_cost\":\"7.0400\",\"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\":\"7.0400\"},{\"id\":\"27651\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5387\",\"product_code\":\"1420\",\"product_name\":\"GLYCERINE S\\/S\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"27652\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5388\",\"product_code\":\"1421\",\"product_name\":\"PROPRANOLOL 40MG 28,S\",\"option_id\":null,\"net_unit_cost\":\"3.5400\",\"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\":\"10.6200\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5400\",\"real_unit_cost\":\"3.5400\",\"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\":\"3.5400\"},{\"id\":\"27653\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5389\",\"product_code\":\"1422\",\"product_name\":\"PROXEED WOMEN\",\"option_id\":null,\"net_unit_cost\":\"1.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.2000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.4000\",\"real_unit_cost\":\"1.4000\",\"quantity_received\":null,\"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.4000\"},{\"id\":\"27654\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5390\",\"product_code\":\"1423\",\"product_name\":\"LIPITOR 10MG\",\"option_id\":null,\"net_unit_cost\":\"7.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9000\",\"real_unit_cost\":\"7.9000\",\"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\":\"7.9000\"},{\"id\":\"27655\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5391\",\"product_code\":\"1424\",\"product_name\":\"CHLO EAR DROP\",\"option_id\":null,\"net_unit_cost\":\"1.2400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.2400\",\"real_unit_cost\":\"1.2400\",\"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\":\"1.2400\"},{\"id\":\"27656\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5392\",\"product_code\":\"1425\",\"product_name\":\"SE,CLEAR EYE\\/ EAR DROP\",\"option_id\":null,\"net_unit_cost\":\"0.2700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"54.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.5800\",\"quantity_balance\":\"54.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2700\",\"real_unit_cost\":\"0.2700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"54.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2700\"},{\"id\":\"27657\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5393\",\"product_code\":\"1426\",\"product_name\":\"SUPER APETI TAB\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"27658\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5394\",\"product_code\":\"1427\",\"product_name\":\"METRONIDAZOLE 200 TAB\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"45.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"27659\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5395\",\"product_code\":\"1428\",\"product_name\":\"VASELINE LOTION\",\"option_id\":null,\"net_unit_cost\":\"8.5100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.5100\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.5100\",\"real_unit_cost\":\"8.5100\",\"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\":\"8.5100\"},{\"id\":\"27660\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5396\",\"product_code\":\"1429\",\"product_name\":\"ROOTER\",\"option_id\":null,\"net_unit_cost\":\"4.0500\",\"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\":\"12.1500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.0500\",\"real_unit_cost\":\"4.0500\",\"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\":\"4.0500\"},{\"id\":\"27661\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5397\",\"product_code\":\"1430\",\"product_name\":\"SUNLIGHT LIQUID750ML\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"27662\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5398\",\"product_code\":\"1431\",\"product_name\":\"LUX SHAKE ME SOAP\",\"option_id\":null,\"net_unit_cost\":\"13.5800\",\"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\":\"40.7400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.5800\",\"real_unit_cost\":\"13.5800\",\"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\":\"13.5800\"},{\"id\":\"27663\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5399\",\"product_code\":\"1432\",\"product_name\":\"LIFEBOUY SOAP\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.0000\",\"quantity_balance\":\"70.0000\",\"date\":\"2021-08-21\",\"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\":\"70.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"27664\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5400\",\"product_code\":\"1433\",\"product_name\":\"TAMSULOSIN 400\",\"option_id\":null,\"net_unit_cost\":\"7.1000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.1000\",\"real_unit_cost\":\"7.1000\",\"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\":\"7.1000\"},{\"id\":\"27665\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5401\",\"product_code\":\"1434\",\"product_name\":\"PREGNANCY TEST KIT\",\"option_id\":null,\"net_unit_cost\":\"7.8800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.8800\",\"real_unit_cost\":\"7.8800\",\"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\":\"7.8800\"},{\"id\":\"27666\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5402\",\"product_code\":\"1435\",\"product_name\":\"NEXIUM SACHET 10MG\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.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\":\"3.5000\"},{\"id\":\"27667\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5403\",\"product_code\":\"1436\",\"product_name\":\"BECOATIN TAB\",\"option_id\":null,\"net_unit_cost\":\"7.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"159.6000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9800\",\"real_unit_cost\":\"7.9800\",\"quantity_received\":null,\"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\":\"7.9800\"},{\"id\":\"27668\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5404\",\"product_code\":\"1437\",\"product_name\":\"SPIRIT EAR DROP\",\"option_id\":null,\"net_unit_cost\":\"15.0500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.0500\",\"real_unit_cost\":\"15.0500\",\"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\":\"15.0500\"},{\"id\":\"27669\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5405\",\"product_code\":\"1438\",\"product_name\":\"VERMOX TAB\",\"option_id\":null,\"net_unit_cost\":\"5.1300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.0400\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.1300\",\"real_unit_cost\":\"5.1300\",\"quantity_received\":null,\"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\":\"5.1300\"},{\"id\":\"27670\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5406\",\"product_code\":\"1439\",\"product_name\":\"BELLS TEETHING MIX\",\"option_id\":null,\"net_unit_cost\":\"0.8800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"59.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.9200\",\"quantity_balance\":\"59.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8800\",\"real_unit_cost\":\"0.8800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"59.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8800\"},{\"id\":\"27671\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5407\",\"product_code\":\"1440\",\"product_name\":\"SULPHUR OINT\",\"option_id\":null,\"net_unit_cost\":\"9.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.6000\",\"real_unit_cost\":\"9.6000\",\"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\":\"9.6000\"},{\"id\":\"27672\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5408\",\"product_code\":\"1441\",\"product_name\":\"BELLS TEETHING MIX\",\"option_id\":null,\"net_unit_cost\":\"8.7600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.5200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.7600\",\"real_unit_cost\":\"8.7600\",\"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\":\"8.7600\"},{\"id\":\"27673\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5409\",\"product_code\":\"1442\",\"product_name\":\"VISCOF D\",\"option_id\":null,\"net_unit_cost\":\"5.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"166.4000\",\"quantity_balance\":\"32.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2000\",\"real_unit_cost\":\"5.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"32.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.2000\"},{\"id\":\"27674\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5410\",\"product_code\":\"1443\",\"product_name\":\"VISCOF S\",\"option_id\":null,\"net_unit_cost\":\"1.8300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"84.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"153.7200\",\"quantity_balance\":\"84.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8300\",\"real_unit_cost\":\"1.8300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"84.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8300\"},{\"id\":\"27675\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5411\",\"product_code\":\"1444\",\"product_name\":\"WORMPLEX TAB\",\"option_id\":null,\"net_unit_cost\":\"11.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"83.6500\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9500\",\"real_unit_cost\":\"11.9500\",\"quantity_received\":null,\"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\":\"11.9500\"},{\"id\":\"27676\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5412\",\"product_code\":\"1445\",\"product_name\":\"ZESTRIL 5MG\",\"option_id\":null,\"net_unit_cost\":\"0.4600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.4600\",\"real_unit_cost\":\"0.4600\",\"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\":\"0.4600\"},{\"id\":\"27677\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5413\",\"product_code\":\"1446\",\"product_name\":\"ZINCOVIT SRP\",\"option_id\":null,\"net_unit_cost\":\"0.2400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.8000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2400\",\"real_unit_cost\":\"0.2400\",\"quantity_received\":null,\"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\":\"0.2400\"},{\"id\":\"27678\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5414\",\"product_code\":\"1447\",\"product_name\":\"ZINTAB 20\",\"option_id\":null,\"net_unit_cost\":\"1.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-7.5600\",\"quantity_balance\":\"-4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8900\",\"real_unit_cost\":\"1.8900\",\"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\":\"1.8900\"},{\"id\":\"27679\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5415\",\"product_code\":\"1448\",\"product_name\":\"ZINTAB 10\",\"option_id\":null,\"net_unit_cost\":\"5.7200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.8800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.7200\",\"real_unit_cost\":\"5.7200\",\"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\":\"5.7200\"},{\"id\":\"27680\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5416\",\"product_code\":\"1449\",\"product_name\":\"STREPTOL25\\/6\",\"option_id\":null,\"net_unit_cost\":\"0.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"54.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.2000\",\"quantity_balance\":\"54.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3000\",\"real_unit_cost\":\"0.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"54.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3000\"},{\"id\":\"27681\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5417\",\"product_code\":\"1450\",\"product_name\":\"POLYFER SRP 150ML\",\"option_id\":null,\"net_unit_cost\":\"17.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"17.8000\",\"real_unit_cost\":\"17.8000\",\"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\":\"17.8000\"},{\"id\":\"27682\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5418\",\"product_code\":\"1451\",\"product_name\":\"METRONIDAZOLE LETAP\",\"option_id\":null,\"net_unit_cost\":\"16.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-21\",\"status\":\"received\",\"unit_cost\":\"16.5000\",\"real_unit_cost\":\"16.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\":\"16.5000\"},{\"id\":\"27683\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5419\",\"product_code\":\"1452\",\"product_name\":\"AMOKSIKLAV 457 SUSP\",\"option_id\":null,\"net_unit_cost\":\"9.0500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.0500\",\"real_unit_cost\":\"9.0500\",\"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\":\"9.0500\"},{\"id\":\"27684\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5420\",\"product_code\":\"1453\",\"product_name\":\"NEOHYCOLEX 10ML\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"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\":\"4.4000\"},{\"id\":\"27685\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5421\",\"product_code\":\"1454\",\"product_name\":\"CONGESTYL SRP\",\"option_id\":null,\"net_unit_cost\":\"5.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"179.4000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9800\",\"real_unit_cost\":\"5.9800\",\"quantity_received\":null,\"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\":\"5.9800\"},{\"id\":\"27686\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5422\",\"product_code\":\"1455\",\"product_name\":\"SAMAILN ADULT\",\"option_id\":null,\"net_unit_cost\":\"33.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"297.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.0000\",\"real_unit_cost\":\"33.0000\",\"quantity_received\":null,\"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\":\"33.0000\"},{\"id\":\"27687\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5423\",\"product_code\":\"1456\",\"product_name\":\"LIPITOR 20\",\"option_id\":null,\"net_unit_cost\":\"3.8500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.8500\",\"real_unit_cost\":\"3.8500\",\"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\":\"3.8500\"},{\"id\":\"27688\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5424\",\"product_code\":\"1457\",\"product_name\":\"COLGATE SMILE BABY\",\"option_id\":null,\"net_unit_cost\":\"70.6000\",\"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\":\"211.8000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"70.6000\",\"real_unit_cost\":\"70.6000\",\"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\":\"70.6000\"},{\"id\":\"27689\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5425\",\"product_code\":\"1458\",\"product_name\":\"ATACAND 8MG\",\"option_id\":null,\"net_unit_cost\":\"18.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"18.4000\",\"real_unit_cost\":\"18.4000\",\"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\":\"18.4000\"},{\"id\":\"27690\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5426\",\"product_code\":\"1459\",\"product_name\":\"PERFECTYL PLUS\",\"option_id\":null,\"net_unit_cost\":\"4.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"190.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"817.0000\",\"quantity_balance\":\"190.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3000\",\"real_unit_cost\":\"4.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"190.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3000\"},{\"id\":\"27691\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5427\",\"product_code\":\"1460\",\"product_name\":\"NIZORAL SHAMPOO\",\"option_id\":null,\"net_unit_cost\":\"3.5900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.3600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5900\",\"real_unit_cost\":\"3.5900\",\"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\":\"3.5900\"},{\"id\":\"27692\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5428\",\"product_code\":\"1461\",\"product_name\":\"metformin 500mg\",\"option_id\":null,\"net_unit_cost\":\"3.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"92.4000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.3000\",\"quantity_received\":null,\"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\":\"3.3000\"},{\"id\":\"27693\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5429\",\"product_code\":\"1462\",\"product_name\":\"SEPTRI N SUSP\",\"option_id\":null,\"net_unit_cost\":\"0.2100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"49.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.2900\",\"quantity_balance\":\"49.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2100\",\"real_unit_cost\":\"0.2100\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"49.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2100\"},{\"id\":\"27694\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5430\",\"product_code\":\"1463\",\"product_name\":\"CO DIOVAN 160\\/12.5\",\"option_id\":null,\"net_unit_cost\":\"18.0500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"18.0500\",\"real_unit_cost\":\"18.0500\",\"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\":\"18.0500\"},{\"id\":\"27695\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5431\",\"product_code\":\"1464\",\"product_name\":\"B COMPLEX TAB LOCAL\",\"option_id\":null,\"net_unit_cost\":\"9.4300\",\"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\":\"28.2900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.4300\",\"real_unit_cost\":\"9.4300\",\"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\":\"9.4300\"},{\"id\":\"27696\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5432\",\"product_code\":\"1465\",\"product_name\":\"BORGES 250ML\",\"option_id\":null,\"net_unit_cost\":\"0.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"175.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.0000\",\"quantity_balance\":\"175.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3200\",\"real_unit_cost\":\"0.3200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"175.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3200\"},{\"id\":\"27697\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5433\",\"product_code\":\"1466\",\"product_name\":\"VENTOLIN NEBULES\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"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\":\"2.5000\"},{\"id\":\"27698\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5434\",\"product_code\":\"1467\",\"product_name\":\"SYRINGE 10MLS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"27699\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5435\",\"product_code\":\"1468\",\"product_name\":\"SENACO\",\"option_id\":null,\"net_unit_cost\":\"0.3400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.3400\",\"real_unit_cost\":\"0.3400\",\"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\":\"0.3400\"},{\"id\":\"27700\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5436\",\"product_code\":\"1469\",\"product_name\":\"P- ALAXIN SUSP\",\"option_id\":null,\"net_unit_cost\":\"2.7800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.3600\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.7800\",\"real_unit_cost\":\"2.7800\",\"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\":\"2.7800\"},{\"id\":\"27701\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5437\",\"product_code\":\"1470\",\"product_name\":\"ACTIVATED CHARCOAL\",\"option_id\":null,\"net_unit_cost\":\"4.7300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.7300\",\"real_unit_cost\":\"4.7300\",\"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\":\"4.7300\"},{\"id\":\"27702\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5438\",\"product_code\":\"1471\",\"product_name\":\"CARBAMAZIPINE\",\"option_id\":null,\"net_unit_cost\":\"1.2700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.6700\",\"quantity_balance\":\"21.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.2700\",\"real_unit_cost\":\"1.2700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2700\"},{\"id\":\"27703\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5439\",\"product_code\":\"1472\",\"product_name\":\"LOFNAC GEL\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"56.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"84.0000\",\"quantity_balance\":\"56.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"56.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5000\"},{\"id\":\"27704\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5440\",\"product_code\":\"1473\",\"product_name\":\"LOFNAC -P\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"27705\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5441\",\"product_code\":\"1474\",\"product_name\":\"NAKLOFEN DUO\",\"option_id\":null,\"net_unit_cost\":\"16.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\":\"48.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"16.0000\"},{\"id\":\"27706\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5442\",\"product_code\":\"1475\",\"product_name\":\"OLFEN GEL20GM\",\"option_id\":null,\"net_unit_cost\":\"0.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.5000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5000\",\"real_unit_cost\":\"0.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.5000\"},{\"id\":\"27707\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5443\",\"product_code\":\"1476\",\"product_name\":\"OLFEN GEL 50GM\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.0000\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.0000\"},{\"id\":\"27708\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5444\",\"product_code\":\"1477\",\"product_name\":\"DICLO INJ\",\"option_id\":null,\"net_unit_cost\":\"6.4400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.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.6800\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.4400\",\"real_unit_cost\":\"6.4400\",\"quantity_received\":null,\"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\":\"6.4400\"},{\"id\":\"27709\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5445\",\"product_code\":\"1478\",\"product_name\":\"DORETA\",\"option_id\":null,\"net_unit_cost\":\"33.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"231.1400\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.0200\",\"real_unit_cost\":\"33.0200\",\"quantity_received\":null,\"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\":\"33.0200\"},{\"id\":\"27710\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5446\",\"product_code\":\"1479\",\"product_name\":\"NEXIUM 40 14S\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"27711\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5447\",\"product_code\":\"1480\",\"product_name\":\"FEROGLOBIN SRP\",\"option_id\":null,\"net_unit_cost\":\"4.4500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.7000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4500\",\"real_unit_cost\":\"4.4500\",\"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\":\"4.4500\"},{\"id\":\"27712\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5448\",\"product_code\":\"1481\",\"product_name\":\"HYDROCORT CREAM\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27713\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5449\",\"product_code\":\"1482\",\"product_name\":\"IBEX\",\"option_id\":null,\"net_unit_cost\":\"0.4800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.4400\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4800\",\"real_unit_cost\":\"0.4800\",\"quantity_received\":null,\"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.4800\"},{\"id\":\"27714\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5450\",\"product_code\":\"1483\",\"product_name\":\"KOFOL LOZ\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"211.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"844.0000\",\"quantity_balance\":\"211.0000\",\"date\":\"2021-08-21\",\"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\":\"211.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27715\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5451\",\"product_code\":\"1484\",\"product_name\":\"KWIK ACTION\",\"option_id\":null,\"net_unit_cost\":\"6.4000\",\"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\":\"19.2000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.4000\",\"real_unit_cost\":\"6.4000\",\"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\":\"6.4000\"},{\"id\":\"27716\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5452\",\"product_code\":\"1485\",\"product_name\":\"LADINAS\",\"option_id\":null,\"net_unit_cost\":\"0.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"105.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"105.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2000\",\"real_unit_cost\":\"0.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"105.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2000\"},{\"id\":\"27717\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5453\",\"product_code\":\"1486\",\"product_name\":\"LEMPSIP\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.0000\",\"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\":\"26.0000\"},{\"id\":\"27718\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5454\",\"product_code\":\"1487\",\"product_name\":\"HONSTAN\",\"option_id\":null,\"net_unit_cost\":\"32.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"64.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"32.4000\",\"real_unit_cost\":\"32.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\":\"32.4000\"},{\"id\":\"27719\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5455\",\"product_code\":\"1488\",\"product_name\":\"MINAVITA\",\"option_id\":null,\"net_unit_cost\":\"6.0600\",\"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\":\"18.1800\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0600\",\"real_unit_cost\":\"6.0600\",\"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\":\"6.0600\"},{\"id\":\"27720\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5456\",\"product_code\":\"1489\",\"product_name\":\"NAPROXEN EC\",\"option_id\":null,\"net_unit_cost\":\"1.7300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.0600\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.7300\",\"real_unit_cost\":\"1.7300\",\"quantity_received\":null,\"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\":\"1.7300\"},{\"id\":\"27721\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5457\",\"product_code\":\"1490\",\"product_name\":\"NAPROX ECL\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"27722\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5458\",\"product_code\":\"1491\",\"product_name\":\"NUCLEO CMP\",\"option_id\":null,\"net_unit_cost\":\"39.0300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"39.0300\",\"real_unit_cost\":\"39.0300\",\"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\":\"39.0300\"},{\"id\":\"27723\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5459\",\"product_code\":\"1492\",\"product_name\":\"O- YES FEMININE WASH\",\"option_id\":null,\"net_unit_cost\":\"8.6300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.6300\",\"real_unit_cost\":\"8.6300\",\"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\":\"8.6300\"},{\"id\":\"27724\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5460\",\"product_code\":\"1493\",\"product_name\":\"FELDENE 20MG\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"27725\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5461\",\"product_code\":\"1494\",\"product_name\":\"PMF VASELINE\",\"option_id\":null,\"net_unit_cost\":\"1.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"61.2500\",\"quantity_balance\":\"35.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.7500\",\"real_unit_cost\":\"1.7500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.7500\"},{\"id\":\"27726\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5462\",\"product_code\":\"1495\",\"product_name\":\"CALAMINE OINT\",\"option_id\":null,\"net_unit_cost\":\"28.3200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"28.3200\",\"real_unit_cost\":\"28.3200\",\"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\":\"28.3200\"},{\"id\":\"27727\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5463\",\"product_code\":\"1496\",\"product_name\":\"SOLUBLE ASP\",\"option_id\":null,\"net_unit_cost\":\"6.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.4600\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9100\",\"real_unit_cost\":\"6.9100\",\"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\":\"6.9100\"},{\"id\":\"27728\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5464\",\"product_code\":\"1497\",\"product_name\":\"SUDOCREAM125\",\"option_id\":null,\"net_unit_cost\":\"0.5900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.9000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5900\",\"real_unit_cost\":\"0.5900\",\"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\":\"0.5900\"},{\"id\":\"27729\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5465\",\"product_code\":\"1498\",\"product_name\":\"WELWOMAN DRINK\",\"option_id\":null,\"net_unit_cost\":\"25.5900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"25.5900\",\"real_unit_cost\":\"25.5900\",\"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\":\"25.5900\"},{\"id\":\"27730\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5466\",\"product_code\":\"1499\",\"product_name\":\"GAUZE 7.5cm\",\"option_id\":null,\"net_unit_cost\":\"15.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\":\"45.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\"},{\"id\":\"27731\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5467\",\"product_code\":\"1500\",\"product_name\":\"BENILIN PAED\",\"option_id\":null,\"net_unit_cost\":\"5.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.3000\"},{\"id\":\"27732\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5468\",\"product_code\":\"1501\",\"product_name\":\"COTTON BALLS\",\"option_id\":null,\"net_unit_cost\":\"1.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.4000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3000\",\"real_unit_cost\":\"1.3000\",\"quantity_received\":null,\"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.3000\"},{\"id\":\"27733\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5469\",\"product_code\":\"1502\",\"product_name\":\"DAN RUBB\",\"option_id\":null,\"net_unit_cost\":\"2.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.8000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4000\",\"real_unit_cost\":\"2.4000\",\"quantity_received\":null,\"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\":\"2.4000\"},{\"id\":\"27734\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5470\",\"product_code\":\"1503\",\"product_name\":\"DICLOLEX TAB\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27735\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5471\",\"product_code\":\"1504\",\"product_name\":\"EPIDERM 15G\",\"option_id\":null,\"net_unit_cost\":\"3.8100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.8100\",\"real_unit_cost\":\"3.8100\",\"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\":\"3.8100\"},{\"id\":\"27736\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5472\",\"product_code\":\"1505\",\"product_name\":\"EPIDERM 30G\",\"option_id\":null,\"net_unit_cost\":\"6.2000\",\"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\":\"18.6000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.2000\",\"real_unit_cost\":\"6.2000\",\"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\":\"6.2000\"},{\"id\":\"27737\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5473\",\"product_code\":\"1506\",\"product_name\":\"EMGIFLOX SUSP\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"105.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.0000\"},{\"id\":\"27738\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5474\",\"product_code\":\"1507\",\"product_name\":\"FLEMEX JNR\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.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\":\"1.5000\"},{\"id\":\"27739\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5475\",\"product_code\":\"1508\",\"product_name\":\"FUNBACT\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5000\"},{\"id\":\"27740\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5476\",\"product_code\":\"1509\",\"product_name\":\"GENTA-K\",\"option_id\":null,\"net_unit_cost\":\"1.7700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.5500\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.7700\",\"real_unit_cost\":\"1.7700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.7700\"},{\"id\":\"27741\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5477\",\"product_code\":\"1510\",\"product_name\":\"METHYLATED SPIRIT S\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.7200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3600\",\"real_unit_cost\":\"4.3600\",\"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\":\"4.3600\"},{\"id\":\"27742\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5478\",\"product_code\":\"1511\",\"product_name\":\"GYPRONE TAB\",\"option_id\":null,\"net_unit_cost\":\"2.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.5000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.7500\",\"real_unit_cost\":\"2.7500\",\"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\":\"2.7500\"},{\"id\":\"27743\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5479\",\"product_code\":\"1512\",\"product_name\":\"HAEMOGLOBIN M\\/G\",\"option_id\":null,\"net_unit_cost\":\"8.6500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.6500\",\"real_unit_cost\":\"8.6500\",\"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\":\"8.6500\"},{\"id\":\"27744\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5480\",\"product_code\":\"1513\",\"product_name\":\"HAEMOGLOBIN LETAP\",\"option_id\":null,\"net_unit_cost\":\"2.4500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4500\",\"real_unit_cost\":\"2.4500\",\"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\":\"2.4500\"},{\"id\":\"27745\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5481\",\"product_code\":\"1514\",\"product_name\":\"HYDROCORT CREAM\",\"option_id\":null,\"net_unit_cost\":\"10.1600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.6400\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.1600\",\"real_unit_cost\":\"10.1600\",\"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\":\"10.1600\"},{\"id\":\"27746\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5482\",\"product_code\":\"1515\",\"product_name\":\"IBUCAP SHALINA B\\/S\",\"option_id\":null,\"net_unit_cost\":\"26.9200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"215.3600\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.9200\",\"real_unit_cost\":\"26.9200\",\"quantity_received\":null,\"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\":\"26.9200\"},{\"id\":\"27747\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5483\",\"product_code\":\"1516\",\"product_name\":\"IMODIUM\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"130.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"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\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"27748\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5484\",\"product_code\":\"1517\",\"product_name\":\"SPORANOX\",\"option_id\":null,\"net_unit_cost\":\"4.2800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.1200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2800\",\"real_unit_cost\":\"4.2800\",\"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\":\"4.2800\"},{\"id\":\"27749\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5485\",\"product_code\":\"1518\",\"product_name\":\"KAMAGRA 100\",\"option_id\":null,\"net_unit_cost\":\"1.2800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"89.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"113.9200\",\"quantity_balance\":\"89.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.2800\",\"real_unit_cost\":\"1.2800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"89.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2800\"},{\"id\":\"27750\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5486\",\"product_code\":\"1519\",\"product_name\":\"METASOL SOAP\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"198.0000\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-21\",\"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\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"27751\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5487\",\"product_code\":\"1520\",\"product_name\":\"NAT-B\",\"option_id\":null,\"net_unit_cost\":\"1.8600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.3000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8600\",\"real_unit_cost\":\"1.8600\",\"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\":\"1.8600\"},{\"id\":\"27752\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5488\",\"product_code\":\"1521\",\"product_name\":\"PREGASAFE 75\",\"option_id\":null,\"net_unit_cost\":\"4.1300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.7800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.1300\",\"real_unit_cost\":\"4.1300\",\"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\":\"4.1300\"},{\"id\":\"27753\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5489\",\"product_code\":\"1522\",\"product_name\":\"DANEGAN SRP\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":null,\"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\":\"3.5000\"},{\"id\":\"27754\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5490\",\"product_code\":\"1523\",\"product_name\":\"SEDALYN SRP PAED\",\"option_id\":null,\"net_unit_cost\":\"1.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"148.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"170.2000\",\"quantity_balance\":\"148.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.1500\",\"real_unit_cost\":\"1.1500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"148.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.1500\"},{\"id\":\"27755\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5491\",\"product_code\":\"1524\",\"product_name\":\"PLASTER 5CM\",\"option_id\":null,\"net_unit_cost\":\"4.3900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.3900\",\"real_unit_cost\":\"4.3900\",\"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\":\"4.3900\"},{\"id\":\"27756\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5492\",\"product_code\":\"1525\",\"product_name\":\"AJANTA STAMINA\",\"option_id\":null,\"net_unit_cost\":\"7.1800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.1800\",\"real_unit_cost\":\"7.1800\",\"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\":\"7.1800\"},{\"id\":\"27757\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5493\",\"product_code\":\"1526\",\"product_name\":\"PERMOXL SRP\",\"option_id\":null,\"net_unit_cost\":\"6.7900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.9500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.7900\",\"real_unit_cost\":\"6.7900\",\"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\":\"6.7900\"},{\"id\":\"27758\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5494\",\"product_code\":\"1527\",\"product_name\":\"AQUEOS CREAM\",\"option_id\":null,\"net_unit_cost\":\"3.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"58.5000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9000\",\"real_unit_cost\":\"3.9000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.9000\"},{\"id\":\"27759\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5495\",\"product_code\":\"1528\",\"product_name\":\"AUNTY MARY\",\"option_id\":null,\"net_unit_cost\":\"29.1400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"145.7000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.1400\",\"real_unit_cost\":\"29.1400\",\"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\":\"29.1400\"},{\"id\":\"27760\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5496\",\"product_code\":\"1529\",\"product_name\":\"CETAPOL SRP\",\"option_id\":null,\"net_unit_cost\":\"4.3300\",\"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\":\"12.9900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3300\",\"real_unit_cost\":\"4.3300\",\"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\":\"4.3300\"},{\"id\":\"27761\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5497\",\"product_code\":\"1530\",\"product_name\":\"CIPRODENK\",\"option_id\":null,\"net_unit_cost\":\"1.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"74.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"92.5000\",\"quantity_balance\":\"74.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.2500\",\"real_unit_cost\":\"1.2500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"74.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2500\"},{\"id\":\"27762\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5498\",\"product_code\":\"1531\",\"product_name\":\"DERMIRON PLUS\",\"option_id\":null,\"net_unit_cost\":\"21.6700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"21.6700\",\"real_unit_cost\":\"21.6700\",\"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\":\"21.6700\"},{\"id\":\"27763\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5499\",\"product_code\":\"1532\",\"product_name\":\"DOXYCYCLINE\",\"option_id\":null,\"net_unit_cost\":\"46.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"46.0000\",\"real_unit_cost\":\"46.0000\",\"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\":\"46.0000\"},{\"id\":\"27764\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5500\",\"product_code\":\"1533\",\"product_name\":\"FEMFRESH\",\"option_id\":null,\"net_unit_cost\":\"6.8000\",\"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\":\"20.4000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8000\",\"real_unit_cost\":\"6.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\":\"6.8000\"},{\"id\":\"27765\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5501\",\"product_code\":\"1534\",\"product_name\":\"IDEOS\",\"option_id\":null,\"net_unit_cost\":\"4.9200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.2800\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9200\",\"real_unit_cost\":\"4.9200\",\"quantity_received\":null,\"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\":\"4.9200\"},{\"id\":\"27766\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5502\",\"product_code\":\"1535\",\"product_name\":\"COTTON BUD\",\"option_id\":null,\"net_unit_cost\":\"4.3900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.3900\",\"real_unit_cost\":\"4.3900\",\"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\":\"4.3900\"},{\"id\":\"27767\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5503\",\"product_code\":\"1536\",\"product_name\":\"KETAZOLE CREAM\",\"option_id\":null,\"net_unit_cost\":\"21.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-21\",\"status\":\"received\",\"unit_cost\":\"21.5000\",\"real_unit_cost\":\"21.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\":\"21.5000\"},{\"id\":\"27768\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5504\",\"product_code\":\"1537\",\"product_name\":\"KETAZOLE TAB\",\"option_id\":null,\"net_unit_cost\":\"34.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"69.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"34.8000\",\"real_unit_cost\":\"34.8000\",\"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\":\"34.8000\"},{\"id\":\"27769\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5505\",\"product_code\":\"1538\",\"product_name\":\"KY JELLY50G\",\"option_id\":null,\"net_unit_cost\":\"9.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"27770\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5506\",\"product_code\":\"1539\",\"product_name\":\"KY JELLY 75G\",\"option_id\":null,\"net_unit_cost\":\"4.3900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.3900\",\"real_unit_cost\":\"4.3900\",\"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\":\"4.3900\"},{\"id\":\"27771\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5507\",\"product_code\":\"1540\",\"product_name\":\"LA WASH\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27772\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5508\",\"product_code\":\"1541\",\"product_name\":\"METAGYL SRP\",\"option_id\":null,\"net_unit_cost\":\"3.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-55.8000\",\"quantity_balance\":\"-18.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1000\",\"real_unit_cost\":\"3.1000\",\"quantity_received\":null,\"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\":\"3.1000\"},{\"id\":\"27773\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5509\",\"product_code\":\"1542\",\"product_name\":\"NIFEDENK 10\",\"option_id\":null,\"net_unit_cost\":\"17.8100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"17.8100\",\"real_unit_cost\":\"17.8100\",\"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\":\"17.8100\"},{\"id\":\"27774\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5510\",\"product_code\":\"1543\",\"product_name\":\"NIGHT NURSE CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.5200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.5200\",\"real_unit_cost\":\"0.5200\",\"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\":\"0.5200\"},{\"id\":\"27775\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5511\",\"product_code\":\"1544\",\"product_name\":\"TAMPAX\",\"option_id\":null,\"net_unit_cost\":\"7.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.3000\",\"real_unit_cost\":\"7.3000\",\"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\":\"7.3000\"},{\"id\":\"27776\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5512\",\"product_code\":\"1545\",\"product_name\":\"VALUPAC VIT C500S\",\"option_id\":null,\"net_unit_cost\":\"40.8900\",\"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\":\"122.6700\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.8900\",\"real_unit_cost\":\"40.8900\",\"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\":\"40.8900\"},{\"id\":\"27777\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5513\",\"product_code\":\"1546\",\"product_name\":\"VITA POWER SRP\",\"option_id\":null,\"net_unit_cost\":\"3.3900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"105.0900\",\"quantity_balance\":\"31.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.3900\",\"real_unit_cost\":\"3.3900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"31.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.3900\"},{\"id\":\"27778\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5514\",\"product_code\":\"1547\",\"product_name\":\"BENILIN FOR FLU\",\"option_id\":null,\"net_unit_cost\":\"143.5700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"574.2800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"143.5700\",\"real_unit_cost\":\"143.5700\",\"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\":\"143.5700\"},{\"id\":\"27779\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5515\",\"product_code\":\"1548\",\"product_name\":\"ANUSOL SUPP\",\"option_id\":null,\"net_unit_cost\":\"2.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-11.6400\",\"quantity_balance\":\"-4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9100\",\"real_unit_cost\":\"2.9100\",\"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\":\"2.9100\"},{\"id\":\"27780\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5516\",\"product_code\":\"1549\",\"product_name\":\"ZITHROMAX CAPS\",\"option_id\":null,\"net_unit_cost\":\"68.8500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"137.7000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"68.8500\",\"real_unit_cost\":\"68.8500\",\"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\":\"68.8500\"},{\"id\":\"27781\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5517\",\"product_code\":\"1550\",\"product_name\":\"DULCOLAX SUPP\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"27782\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5518\",\"product_code\":\"1551\",\"product_name\":\"ZINNAT SUSP100ML\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"27783\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5519\",\"product_code\":\"1552\",\"product_name\":\"CIPROLEX TAB\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"63.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27784\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5520\",\"product_code\":\"1553\",\"product_name\":\"CIPAC EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"12.8700\",\"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\":\"38.6100\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.8700\",\"real_unit_cost\":\"12.8700\",\"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\":\"12.8700\"},{\"id\":\"27785\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5521\",\"product_code\":\"1554\",\"product_name\":\"CIPROLEX EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"1.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.2000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8000\",\"real_unit_cost\":\"1.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8000\"},{\"id\":\"27786\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5522\",\"product_code\":\"1555\",\"product_name\":\"DECATYLINE LOZ\",\"option_id\":null,\"net_unit_cost\":\"6.6300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.5200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.6300\",\"real_unit_cost\":\"6.6300\",\"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\":\"6.6300\"},{\"id\":\"27787\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5523\",\"product_code\":\"1556\",\"product_name\":\"DIABETMINE\",\"option_id\":null,\"net_unit_cost\":\"11.8700\",\"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\":\"-35.6100\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.8700\",\"real_unit_cost\":\"11.8700\",\"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\":\"11.8700\"},{\"id\":\"27788\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5524\",\"product_code\":\"1557\",\"product_name\":\"MAJOR EPHEDRINE\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.0000\"},{\"id\":\"27789\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5525\",\"product_code\":\"1558\",\"product_name\":\"FLUCONA DENK\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.5000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"27790\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5526\",\"product_code\":\"1559\",\"product_name\":\"JET 2\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"370.5000\",\"quantity_balance\":\"57.0000\",\"date\":\"2021-08-21\",\"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\":\"57.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"27791\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5527\",\"product_code\":\"1560\",\"product_name\":\"LENOR\",\"option_id\":null,\"net_unit_cost\":\"5.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"123.6900\",\"quantity_balance\":\"21.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.8900\",\"real_unit_cost\":\"5.8900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.8900\"},{\"id\":\"27792\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5528\",\"product_code\":\"1561\",\"product_name\":\"LYDIA\",\"option_id\":null,\"net_unit_cost\":\"1.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.8000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9000\",\"real_unit_cost\":\"1.9000\",\"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\":\"1.9000\"},{\"id\":\"27793\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5529\",\"product_code\":\"1562\",\"product_name\":\"LEVON 2\",\"option_id\":null,\"net_unit_cost\":\"2.6900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.9000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.6900\",\"real_unit_cost\":\"2.6900\",\"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\":\"2.6900\"},{\"id\":\"27794\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5530\",\"product_code\":\"1563\",\"product_name\":\"METRO SUSP LETAP #MGP\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"24.0000\",\"real_unit_cost\":\"24.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\":\"24.0000\"},{\"id\":\"27795\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5531\",\"product_code\":\"1564\",\"product_name\":\"CYTOTEC\",\"option_id\":null,\"net_unit_cost\":\"7.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-7.9500\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9500\",\"real_unit_cost\":\"7.9500\",\"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\":\"7.9500\"},{\"id\":\"27796\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5532\",\"product_code\":\"1565\",\"product_name\":\"PILEX TAB\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"27797\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5533\",\"product_code\":\"1566\",\"product_name\":\"SE,CLEAR\",\"option_id\":null,\"net_unit_cost\":\"4.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.9500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9500\",\"real_unit_cost\":\"4.9500\",\"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\":\"4.9500\"},{\"id\":\"27798\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5534\",\"product_code\":\"1567\",\"product_name\":\"SEFLOX EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"7.1000\",\"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\":\"21.3000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.1000\",\"real_unit_cost\":\"7.1000\",\"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\":\"7.1000\"},{\"id\":\"27799\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5535\",\"product_code\":\"1568\",\"product_name\":\"BX SRP100ML\",\"option_id\":null,\"net_unit_cost\":\"2.6900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.6900\",\"real_unit_cost\":\"2.6900\",\"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\":\"2.6900\"},{\"id\":\"27800\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5536\",\"product_code\":\"1569\",\"product_name\":\"BX SRP 200\",\"option_id\":null,\"net_unit_cost\":\"2.6700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.3500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.6700\",\"real_unit_cost\":\"2.6700\",\"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\":\"2.6700\"},{\"id\":\"27801\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5537\",\"product_code\":\"1570\",\"product_name\":\"HISTAZINE SRP\",\"option_id\":null,\"net_unit_cost\":\"0.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"114.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"101.4600\",\"quantity_balance\":\"114.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8900\",\"real_unit_cost\":\"0.8900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"114.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8900\"},{\"id\":\"27802\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5538\",\"product_code\":\"1571\",\"product_name\":\"RHIZINE SRP\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-30.0000\",\"quantity_balance\":\"-6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"27803\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5539\",\"product_code\":\"1572\",\"product_name\":\"PIRITON TAB\",\"option_id\":null,\"net_unit_cost\":\"40.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"40.3000\",\"real_unit_cost\":\"40.3000\",\"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\":\"40.3000\"},{\"id\":\"27804\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5540\",\"product_code\":\"1573\",\"product_name\":\"PRETTY LADY LINER\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"125.0000\",\"quantity_balance\":\"25.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.0000\"},{\"id\":\"27805\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5541\",\"product_code\":\"1574\",\"product_name\":\"AUGMENTIN SRP 457\",\"option_id\":null,\"net_unit_cost\":\"5.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9500\",\"real_unit_cost\":\"5.9500\",\"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\":\"5.9500\"},{\"id\":\"27806\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5542\",\"product_code\":\"1575\",\"product_name\":\"DEXEL 2MG\",\"option_id\":null,\"net_unit_cost\":\"10.3700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"10.3700\",\"real_unit_cost\":\"10.3700\",\"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.3700\"},{\"id\":\"27807\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5543\",\"product_code\":\"1576\",\"product_name\":\"DICLO DENK 50\",\"option_id\":null,\"net_unit_cost\":\"1.8600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"106.0200\",\"quantity_balance\":\"57.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8600\",\"real_unit_cost\":\"1.8600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"57.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8600\"},{\"id\":\"27808\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5544\",\"product_code\":\"1577\",\"product_name\":\"DICLO DENK 100 TAB\",\"option_id\":null,\"net_unit_cost\":\"5.4700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.8800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4700\",\"real_unit_cost\":\"5.4700\",\"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\":\"5.4700\"},{\"id\":\"27809\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5545\",\"product_code\":\"1578\",\"product_name\":\"DICLO DENK SUPP\",\"option_id\":null,\"net_unit_cost\":\"10.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.1500\",\"real_unit_cost\":\"10.1500\",\"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\":\"10.1500\"},{\"id\":\"27810\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5546\",\"product_code\":\"1579\",\"product_name\":\"DREZ OINT 10MG\",\"option_id\":null,\"net_unit_cost\":\"5.9700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.9400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9700\",\"real_unit_cost\":\"5.9700\",\"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\":\"5.9700\"},{\"id\":\"27811\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5547\",\"product_code\":\"1580\",\"product_name\":\"DREZ OINT 30MG\",\"option_id\":null,\"net_unit_cost\":\"3.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6000\",\"real_unit_cost\":\"3.6000\",\"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\":\"3.6000\"},{\"id\":\"27812\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5548\",\"product_code\":\"1581\",\"product_name\":\"DREZ POWDER\",\"option_id\":null,\"net_unit_cost\":\"7.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.2000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.2000\",\"real_unit_cost\":\"7.2000\",\"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\":\"7.2000\"},{\"id\":\"27813\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5549\",\"product_code\":\"1582\",\"product_name\":\"DNS\",\"option_id\":null,\"net_unit_cost\":\"6.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.7200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3600\",\"real_unit_cost\":\"6.3600\",\"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\":\"6.3600\"},{\"id\":\"27814\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5550\",\"product_code\":\"1583\",\"product_name\":\"DREZ SOLTN 30ML\",\"option_id\":null,\"net_unit_cost\":\"5.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.7000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.7000\",\"real_unit_cost\":\"5.7000\",\"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\":\"5.7000\"},{\"id\":\"27815\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5551\",\"product_code\":\"1584\",\"product_name\":\"DUROL ADULT\",\"option_id\":null,\"net_unit_cost\":\"3.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"61.2000\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6000\",\"real_unit_cost\":\"3.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.6000\"},{\"id\":\"27816\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5552\",\"product_code\":\"1585\",\"product_name\":\"DUROL JUNR\",\"option_id\":null,\"net_unit_cost\":\"5.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-62.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-319.3000\",\"quantity_balance\":\"-62.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.1500\",\"real_unit_cost\":\"5.1500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"-62.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.1500\"},{\"id\":\"27817\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5553\",\"product_code\":\"1586\",\"product_name\":\"DYMOL TAB\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"27818\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5554\",\"product_code\":\"1587\",\"product_name\":\"MYCOVIN 500\",\"option_id\":null,\"net_unit_cost\":\"11.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"57.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.5000\"},{\"id\":\"27819\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5555\",\"product_code\":\"1588\",\"product_name\":\"KIDICARE SRP\",\"option_id\":null,\"net_unit_cost\":\"19.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.6600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.6600\",\"real_unit_cost\":\"19.6600\",\"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\":\"19.6600\"},{\"id\":\"27820\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5556\",\"product_code\":\"1589\",\"product_name\":\"MENTODEX SRP S\\/S\",\"option_id\":null,\"net_unit_cost\":\"1.9600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.2800\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9600\",\"real_unit_cost\":\"1.9600\",\"quantity_received\":null,\"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\":\"1.9600\"},{\"id\":\"27821\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5557\",\"product_code\":\"1590\",\"product_name\":\"DAKTARIN CREAM\",\"option_id\":null,\"net_unit_cost\":\"1.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"86.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"120.4000\",\"quantity_balance\":\"86.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.4000\",\"real_unit_cost\":\"1.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"86.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.4000\"},{\"id\":\"27822\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5558\",\"product_code\":\"1591\",\"product_name\":\"PARA UK\",\"option_id\":null,\"net_unit_cost\":\"15.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"77.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.5000\",\"real_unit_cost\":\"15.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\":\"15.5000\"},{\"id\":\"27823\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5559\",\"product_code\":\"1592\",\"product_name\":\"EFPAC TAB\",\"option_id\":null,\"net_unit_cost\":\"1.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"73.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"74.4600\",\"quantity_balance\":\"73.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.0200\",\"real_unit_cost\":\"1.0200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"73.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0200\"},{\"id\":\"27824\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5560\",\"product_code\":\"1593\",\"product_name\":\"APETAMIN SRP\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"79.2000\",\"quantity_balance\":\"36.0000\",\"date\":\"2021-08-21\",\"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\":\"36.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.2000\"},{\"id\":\"27825\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5561\",\"product_code\":\"1594\",\"product_name\":\"GEBEDOL\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"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\":\"43.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.5000\"},{\"id\":\"27826\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5562\",\"product_code\":\"1595\",\"product_name\":\"GEBEDOL EXTRA\",\"option_id\":null,\"net_unit_cost\":\"11.4300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"11.4300\",\"real_unit_cost\":\"11.4300\",\"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\":\"11.4300\"},{\"id\":\"27827\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5563\",\"product_code\":\"1596\",\"product_name\":\"LISTRINE 250\",\"option_id\":null,\"net_unit_cost\":\"5.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.8000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2000\",\"real_unit_cost\":\"5.2000\",\"quantity_received\":null,\"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\":\"5.2000\"},{\"id\":\"27828\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5564\",\"product_code\":\"1597\",\"product_name\":\"LISTRINE SMART\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"29.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"638.0000\",\"quantity_balance\":\"29.0000\",\"date\":\"2021-08-21\",\"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\":\"29.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"27829\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5565\",\"product_code\":\"1598\",\"product_name\":\"CETAPOL PM\",\"option_id\":null,\"net_unit_cost\":\"21.1800\",\"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\":\"63.5400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"21.1800\",\"real_unit_cost\":\"21.1800\",\"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\":\"21.1800\"},{\"id\":\"27830\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5566\",\"product_code\":\"1599\",\"product_name\":\"VALUPAk VIT C 1000\",\"option_id\":null,\"net_unit_cost\":\"5.5600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-44.4800\",\"quantity_balance\":\"-8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5600\",\"real_unit_cost\":\"5.5600\",\"quantity_received\":null,\"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\":\"5.5600\"},{\"id\":\"27831\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5567\",\"product_code\":\"1600\",\"product_name\":\"FLAGENTYL\",\"option_id\":null,\"net_unit_cost\":\"7.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.8000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.4000\",\"real_unit_cost\":\"7.4000\",\"quantity_received\":null,\"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\":\"7.4000\"},{\"id\":\"27832\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5568\",\"product_code\":\"1601\",\"product_name\":\"DICLO DENK 50\",\"option_id\":null,\"net_unit_cost\":\"9.7000\",\"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\":\"29.1000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.7000\",\"real_unit_cost\":\"9.7000\",\"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\":\"9.7000\"},{\"id\":\"27833\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5569\",\"product_code\":\"1602\",\"product_name\":\"FLEMEX ADULT\",\"option_id\":null,\"net_unit_cost\":\"0.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.8600\",\"quantity_balance\":\"21.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6600\",\"real_unit_cost\":\"0.6600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6600\"},{\"id\":\"27834\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5570\",\"product_code\":\"1603\",\"product_name\":\"BELLS CALAMINE\",\"option_id\":null,\"net_unit_cost\":\"1.8400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"58.8800\",\"quantity_balance\":\"32.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8400\",\"real_unit_cost\":\"1.8400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"32.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8400\"},{\"id\":\"27835\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5571\",\"product_code\":\"1604\",\"product_name\":\"GAUZE 10CM\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27836\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5572\",\"product_code\":\"1605\",\"product_name\":\"GAUZE  15CM\",\"option_id\":null,\"net_unit_cost\":\"31.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.2000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"31.2000\",\"real_unit_cost\":\"31.2000\",\"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\":\"31.2000\"},{\"id\":\"27837\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5573\",\"product_code\":\"1606\",\"product_name\":\"PLASTER 10CM\",\"option_id\":null,\"net_unit_cost\":\"19.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.3000\",\"real_unit_cost\":\"19.3000\",\"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\":\"19.3000\"},{\"id\":\"27838\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5574\",\"product_code\":\"1607\",\"product_name\":\"CALPOL 6+\",\"option_id\":null,\"net_unit_cost\":\"7.5500\",\"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\":\"22.6500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.5500\",\"real_unit_cost\":\"7.5500\",\"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\":\"7.5500\"},{\"id\":\"27839\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5575\",\"product_code\":\"1608\",\"product_name\":\"FOLIGROW CAPS\",\"option_id\":null,\"net_unit_cost\":\"13.3400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.3400\",\"real_unit_cost\":\"13.3400\",\"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\":\"13.3400\"},{\"id\":\"27840\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5576\",\"product_code\":\"1609\",\"product_name\":\"KAMACLOX\",\"option_id\":null,\"net_unit_cost\":\"12.0700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.1400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0700\",\"real_unit_cost\":\"12.0700\",\"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\":\"12.0700\"},{\"id\":\"27841\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5577\",\"product_code\":\"1610\",\"product_name\":\"PREGASAFE 75\",\"option_id\":null,\"net_unit_cost\":\"5.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.3000\"},{\"id\":\"27842\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5578\",\"product_code\":\"1611\",\"product_name\":\"IMODIUM\",\"option_id\":null,\"net_unit_cost\":\"4.1300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.2600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.1300\",\"real_unit_cost\":\"4.1300\",\"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\":\"4.1300\"},{\"id\":\"27843\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5579\",\"product_code\":\"1612\",\"product_name\":\"DANRUBB\",\"option_id\":null,\"net_unit_cost\":\"2.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"29.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"78.3000\",\"quantity_balance\":\"29.0000\",\"date\":\"2021-08-21\",\"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\":\"29.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.7000\"},{\"id\":\"27844\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5580\",\"product_code\":\"1613\",\"product_name\":\"SEDALIN JNR\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-72.0000\",\"quantity_balance\":\"-12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"27845\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5581\",\"product_code\":\"1614\",\"product_name\":\"PENICILLIN INJ\",\"option_id\":null,\"net_unit_cost\":\"4.7900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-9.5800\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.7900\",\"real_unit_cost\":\"4.7900\",\"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\":\"4.7900\"},{\"id\":\"27846\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5582\",\"product_code\":\"1615\",\"product_name\":\"SEFLOX\",\"option_id\":null,\"net_unit_cost\":\"3.9400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.4000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9400\",\"real_unit_cost\":\"3.9400\",\"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\":\"3.9400\"},{\"id\":\"27847\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5583\",\"product_code\":\"1616\",\"product_name\":\"MYCOVIN 500\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.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\":\"2.0000\"},{\"id\":\"27848\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5584\",\"product_code\":\"1617\",\"product_name\":\"LADINAS\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"27849\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5585\",\"product_code\":\"1618\",\"product_name\":\"HONSTAN\",\"option_id\":null,\"net_unit_cost\":\"4.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-4.5500\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.5500\",\"real_unit_cost\":\"4.5500\",\"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\":\"4.5500\"},{\"id\":\"27850\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5586\",\"product_code\":\"1619\",\"product_name\":\"COLGATE HERB\",\"option_id\":null,\"net_unit_cost\":\"6.8800\",\"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\":\"20.6400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8800\",\"real_unit_cost\":\"6.8800\",\"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\":\"6.8800\"},{\"id\":\"27851\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5587\",\"product_code\":\"1620\",\"product_name\":\"SULFER OINT\",\"option_id\":null,\"net_unit_cost\":\"3.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.8000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.7000\",\"real_unit_cost\":\"3.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.7000\"},{\"id\":\"27852\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5588\",\"product_code\":\"1621\",\"product_name\":\"WELMAN DRINK\",\"option_id\":null,\"net_unit_cost\":\"0.6300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.3000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6300\",\"real_unit_cost\":\"0.6300\",\"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\":\"0.6300\"},{\"id\":\"27853\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5589\",\"product_code\":\"1622\",\"product_name\":\"MERCY CREAM\",\"option_id\":null,\"net_unit_cost\":\"0.4600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"66.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.3600\",\"quantity_balance\":\"66.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4600\",\"real_unit_cost\":\"0.4600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"66.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4600\"},{\"id\":\"27854\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5590\",\"product_code\":\"1623\",\"product_name\":\"BRUFEN 400\",\"option_id\":null,\"net_unit_cost\":\"22.9900\",\"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\":\"68.9700\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"22.9900\",\"real_unit_cost\":\"22.9900\",\"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\":\"22.9900\"},{\"id\":\"27855\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5591\",\"product_code\":\"1624\",\"product_name\":\"RHIZON TAB\",\"option_id\":null,\"net_unit_cost\":\"8.7000\",\"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\":\"26.1000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.7000\",\"real_unit_cost\":\"8.7000\",\"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\":\"8.7000\"},{\"id\":\"27856\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5592\",\"product_code\":\"1625\",\"product_name\":\"POSTINOR\",\"option_id\":null,\"net_unit_cost\":\"5.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.9400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9900\",\"real_unit_cost\":\"5.9900\",\"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\":\"5.9900\"},{\"id\":\"27857\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5593\",\"product_code\":\"1626\",\"product_name\":\"GENECURE 442\",\"option_id\":null,\"net_unit_cost\":\"6.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.2500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.2500\",\"real_unit_cost\":\"6.2500\",\"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\":\"6.2500\"},{\"id\":\"27858\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5594\",\"product_code\":\"1627\",\"product_name\":\"EFPAC JUNIOR\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"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\":\"7.0000\"},{\"id\":\"27859\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5595\",\"product_code\":\"1628\",\"product_name\":\"TEEDAR\",\"option_id\":null,\"net_unit_cost\":\"13.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"165.6000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.8000\",\"real_unit_cost\":\"13.8000\",\"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\":\"13.8000\"},{\"id\":\"27860\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5596\",\"product_code\":\"1629\",\"product_name\":\"4.85AMLODIPINE TEVA 10\",\"option_id\":null,\"net_unit_cost\":\"35.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"429.6000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"35.8000\",\"real_unit_cost\":\"35.8000\",\"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\":\"35.8000\"},{\"id\":\"27861\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5597\",\"product_code\":\"1630\",\"product_name\":\"AMOKSIKLAV1G\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"156.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.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\":\"26.0000\"},{\"id\":\"27862\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5598\",\"product_code\":\"1631\",\"product_name\":\"COARTEM 80\\/480\",\"option_id\":null,\"net_unit_cost\":\"0.3900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"106.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.3400\",\"quantity_balance\":\"106.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3900\",\"real_unit_cost\":\"0.3900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"106.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3900\"},{\"id\":\"27863\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5599\",\"product_code\":\"1632\",\"product_name\":\"CYPRODINE CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.3300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.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.3300\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3300\",\"real_unit_cost\":\"0.3300\",\"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\":\"0.3300\"},{\"id\":\"27864\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5600\",\"product_code\":\"1633\",\"product_name\":\"MARTINS PLAIN\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"123.2000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"quantity_received\":null,\"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\":\"4.4000\"},{\"id\":\"27865\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5601\",\"product_code\":\"1634\",\"product_name\":\"MARTINS ORANGE\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"45.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"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\":\"5.0000\"},{\"id\":\"27866\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5602\",\"product_code\":\"1635\",\"product_name\":\"MALARIA TEST KIT\",\"option_id\":null,\"net_unit_cost\":\"1.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.7800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8900\",\"real_unit_cost\":\"1.8900\",\"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\":\"1.8900\"},{\"id\":\"27867\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5603\",\"product_code\":\"1636\",\"product_name\":\"MALARIA CHECK\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.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\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\"},{\"id\":\"27868\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5604\",\"product_code\":\"1637\",\"product_name\":\"STREPTOL 12S\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"96.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.0000\"},{\"id\":\"27869\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5605\",\"product_code\":\"1638\",\"product_name\":\"COTTON PIECES\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27870\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5606\",\"product_code\":\"1639\",\"product_name\":\"YAZZ PAD\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"27871\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5607\",\"product_code\":\"1640\",\"product_name\":\"YAZZ LINER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"27872\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5608\",\"product_code\":\"1641\",\"product_name\":\"ALWAYS MAXI\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"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\":\"5.5000\"},{\"id\":\"27873\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5609\",\"product_code\":\"1642\",\"product_name\":\"ALWAYS DOUBLE\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"27874\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5610\",\"product_code\":\"1643\",\"product_name\":\"ALWAYS SINGLE\",\"option_id\":null,\"net_unit_cost\":\"6.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\":\"18.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"27875\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5611\",\"product_code\":\"1644\",\"product_name\":\"FAYTEX\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"27876\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5612\",\"product_code\":\"1645\",\"product_name\":\"SOFTCARE WIPES\",\"option_id\":null,\"net_unit_cost\":\"1.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.2400\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6600\",\"real_unit_cost\":\"1.6600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.6600\"},{\"id\":\"27877\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5613\",\"product_code\":\"1646\",\"product_name\":\"FRESS\",\"option_id\":null,\"net_unit_cost\":\"2.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.4000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.1000\",\"real_unit_cost\":\"2.1000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.1000\"},{\"id\":\"27878\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5614\",\"product_code\":\"1647\",\"product_name\":\"HANKERCHIEF\",\"option_id\":null,\"net_unit_cost\":\"0.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.4000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9000\",\"real_unit_cost\":\"0.9000\",\"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\":\"0.9000\"},{\"id\":\"27879\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5615\",\"product_code\":\"1648\",\"product_name\":\"MENTOS GUM ICE\",\"option_id\":null,\"net_unit_cost\":\"0.1300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.8000\",\"quantity_balance\":\"60.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1300\",\"real_unit_cost\":\"0.1300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.1300\"},{\"id\":\"27880\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5616\",\"product_code\":\"1649\",\"product_name\":\"MENTOS GUM\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"52.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"27881\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5617\",\"product_code\":\"1650\",\"product_name\":\"MENTOS FRESH ACTION\",\"option_id\":null,\"net_unit_cost\":\"45.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-21\",\"status\":\"received\",\"unit_cost\":\"45.5000\",\"real_unit_cost\":\"45.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\":\"45.5000\"},{\"id\":\"27882\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5618\",\"product_code\":\"1651\",\"product_name\":\"RUBBING ALC\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"27883\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5619\",\"product_code\":\"1652\",\"product_name\":\"PEPTO BISMOL\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.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\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\"},{\"id\":\"27884\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5620\",\"product_code\":\"1653\",\"product_name\":\"PEPSODENT S\\/S\",\"option_id\":null,\"net_unit_cost\":\"25.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"103.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.8000\",\"real_unit_cost\":\"25.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\":\"25.8000\"},{\"id\":\"27885\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5621\",\"product_code\":\"1654\",\"product_name\":\"SCISSORS\",\"option_id\":null,\"net_unit_cost\":\"15.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"158.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.8000\",\"real_unit_cost\":\"15.8000\",\"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\":\"15.8000\"},{\"id\":\"27886\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5622\",\"product_code\":\"1655\",\"product_name\":\"IMMUNACE\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"27887\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5623\",\"product_code\":\"1656\",\"product_name\":\"NUGEL -O\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27888\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5624\",\"product_code\":\"1657\",\"product_name\":\"CREEP BANDAGE15CM\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27889\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5625\",\"product_code\":\"1658\",\"product_name\":\"CREEP BANDAGE 10CM\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"27890\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5626\",\"product_code\":\"1659\",\"product_name\":\"CREEP BANDAGE 7.5CM\",\"option_id\":null,\"net_unit_cost\":\"2.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.2500\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.7500\",\"real_unit_cost\":\"2.7500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.7500\"},{\"id\":\"27891\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5627\",\"product_code\":\"1660\",\"product_name\":\"GLYCERINE B\\/S\",\"option_id\":null,\"net_unit_cost\":\"3.9500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.9500\",\"real_unit_cost\":\"3.9500\",\"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\":\"3.9500\"},{\"id\":\"27892\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5628\",\"product_code\":\"1661\",\"product_name\":\"DYNEWELL SRP\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.4000\",\"quantity_balance\":\"27.0000\",\"date\":\"2021-08-21\",\"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\":\"27.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2000\"},{\"id\":\"27893\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5629\",\"product_code\":\"1662\",\"product_name\":\"ENTRAMOL\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-5.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"27894\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5630\",\"product_code\":\"1663\",\"product_name\":\"KISS\",\"option_id\":null,\"net_unit_cost\":\"7.3900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.3900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.3900\",\"real_unit_cost\":\"7.3900\",\"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\":\"7.3900\"},{\"id\":\"27895\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5631\",\"product_code\":\"1664\",\"product_name\":\"FIESTA CONCOM\",\"option_id\":null,\"net_unit_cost\":\"1.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.9000\",\"real_unit_cost\":\"1.9000\",\"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\":\"1.9000\"},{\"id\":\"27896\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5632\",\"product_code\":\"1665\",\"product_name\":\"DUREX COND\",\"option_id\":null,\"net_unit_cost\":\"7.2500\",\"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\":\"21.7500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.2500\",\"real_unit_cost\":\"7.2500\",\"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\":\"7.2500\"},{\"id\":\"27897\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5633\",\"product_code\":\"1666\",\"product_name\":\"MALAFAN\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"27898\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5634\",\"product_code\":\"1667\",\"product_name\":\"FOLIC ACID 28S\",\"option_id\":null,\"net_unit_cost\":\"17.9300\",\"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\":\"53.7900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.9300\",\"real_unit_cost\":\"17.9300\",\"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\":\"17.9300\"},{\"id\":\"27899\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5635\",\"product_code\":\"1668\",\"product_name\":\"VIROL\",\"option_id\":null,\"net_unit_cost\":\"33.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.9800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.9800\",\"real_unit_cost\":\"33.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\":\"33.9800\"},{\"id\":\"27900\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5636\",\"product_code\":\"1669\",\"product_name\":\"FOLIGROW SRP\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27901\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5637\",\"product_code\":\"1670\",\"product_name\":\"CALPOL 2+\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27902\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5638\",\"product_code\":\"1671\",\"product_name\":\"SPIRIT B\\/S\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"61.2000\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"quantity_received\":null,\"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\":\"3.4000\"},{\"id\":\"27903\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5639\",\"product_code\":\"1672\",\"product_name\":\"HYDROGEN LOCAL\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27904\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5640\",\"product_code\":\"1673\",\"product_name\":\"ZULU\",\"option_id\":null,\"net_unit_cost\":\"3.1400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.8400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1400\",\"real_unit_cost\":\"3.1400\",\"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\":\"3.1400\"},{\"id\":\"27905\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5641\",\"product_code\":\"1674\",\"product_name\":\"CHOCHO ABS\",\"option_id\":null,\"net_unit_cost\":\"19.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"95.1000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.0200\",\"real_unit_cost\":\"19.0200\",\"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\":\"19.0200\"},{\"id\":\"27906\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5642\",\"product_code\":\"1675\",\"product_name\":\"CHOCHO CREAM\",\"option_id\":null,\"net_unit_cost\":\"82.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"82.0200\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"82.0200\",\"real_unit_cost\":\"82.0200\",\"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\":\"82.0200\"},{\"id\":\"27907\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5643\",\"product_code\":\"1676\",\"product_name\":\"AMOKSIKLAV 625\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"62.5000\",\"quantity_balance\":\"25.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5000\"},{\"id\":\"27908\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5644\",\"product_code\":\"1677\",\"product_name\":\"ZINNAT 500\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":null,\"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\":\"6.0000\"},{\"id\":\"27909\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5645\",\"product_code\":\"1678\",\"product_name\":\"MMT\",\"option_id\":null,\"net_unit_cost\":\"10.8500\",\"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\":\"32.5500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.8500\",\"real_unit_cost\":\"10.8500\",\"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\":\"10.8500\"},{\"id\":\"27910\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5646\",\"product_code\":\"1679\",\"product_name\":\"VIT E-SOVIT\",\"option_id\":null,\"net_unit_cost\":\"19.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.5000\",\"real_unit_cost\":\"19.5000\",\"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\":\"19.5000\"},{\"id\":\"27911\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5647\",\"product_code\":\"1680\",\"product_name\":\"ACIRCLOVIR 400MG TAB\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.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\":\"1.5000\"},{\"id\":\"27912\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5648\",\"product_code\":\"1681\",\"product_name\":\"TEARS NATURAL\",\"option_id\":null,\"net_unit_cost\":\"2.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.6400\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.6600\",\"real_unit_cost\":\"2.6600\",\"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\":\"2.6600\"},{\"id\":\"27913\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5649\",\"product_code\":\"1682\",\"product_name\":\"GV PAINT\",\"option_id\":null,\"net_unit_cost\":\"5.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.4000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.1000\",\"real_unit_cost\":\"5.1000\",\"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\":\"5.1000\"},{\"id\":\"27914\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5650\",\"product_code\":\"1683\",\"product_name\":\"FUMET\",\"option_id\":null,\"net_unit_cost\":\"1.1300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"97.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"109.6100\",\"quantity_balance\":\"97.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.1300\",\"real_unit_cost\":\"1.1300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"97.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.1300\"},{\"id\":\"27915\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5651\",\"product_code\":\"1684\",\"product_name\":\"SILVERZINE\",\"option_id\":null,\"net_unit_cost\":\"12.0300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0300\",\"real_unit_cost\":\"12.0300\",\"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\":\"12.0300\"},{\"id\":\"27916\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5652\",\"product_code\":\"1685\",\"product_name\":\"MYCOVIN 125\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"27917\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5653\",\"product_code\":\"1686\",\"product_name\":\"ACTIFED SRP\",\"option_id\":null,\"net_unit_cost\":\"11.1900\",\"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\":\"33.5700\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.1900\",\"real_unit_cost\":\"11.1900\",\"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\":\"11.1900\"},{\"id\":\"27918\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5654\",\"product_code\":\"1687\",\"product_name\":\"APDYL H B\\/S\",\"option_id\":null,\"net_unit_cost\":\"1.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.8000\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.4000\",\"real_unit_cost\":\"1.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.4000\"},{\"id\":\"27919\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5655\",\"product_code\":\"1688\",\"product_name\":\"ZUBES EXP\",\"option_id\":null,\"net_unit_cost\":\"7.7800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.7800\",\"real_unit_cost\":\"7.7800\",\"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\":\"7.7800\"},{\"id\":\"27920\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5656\",\"product_code\":\"1689\",\"product_name\":\"LETALIN\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"27921\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5657\",\"product_code\":\"1690\",\"product_name\":\"LUEX BABY COUGH\",\"option_id\":null,\"net_unit_cost\":\"33.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"33.0000\",\"real_unit_cost\":\"33.0000\",\"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\":\"33.0000\"},{\"id\":\"27922\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5658\",\"product_code\":\"1691\",\"product_name\":\"GV FLUC CAPS\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"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\":\"7.0000\"},{\"id\":\"27923\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5659\",\"product_code\":\"1692\",\"product_name\":\"XIN A\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.5000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5000\"},{\"id\":\"27924\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5660\",\"product_code\":\"1693\",\"product_name\":\"DYTEX EYE\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"27925\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5661\",\"product_code\":\"1694\",\"product_name\":\"MIST POT SIT\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":null,\"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\":\"3.5000\"},{\"id\":\"27926\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5662\",\"product_code\":\"1695\",\"product_name\":\"EXPECT SED\",\"option_id\":null,\"net_unit_cost\":\"7.9800\",\"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\":\"23.9400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9800\",\"real_unit_cost\":\"7.9800\",\"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\":\"7.9800\"},{\"id\":\"27927\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5663\",\"product_code\":\"1696\",\"product_name\":\"PENICILLIN OINT\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"64.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"27928\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5664\",\"product_code\":\"1697\",\"product_name\":\"GRISON\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"95.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"27929\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5665\",\"product_code\":\"1698\",\"product_name\":\"BECOATIN SRP\",\"option_id\":null,\"net_unit_cost\":\"13.0100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"312.2400\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.0100\",\"real_unit_cost\":\"13.0100\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0100\"},{\"id\":\"27930\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5666\",\"product_code\":\"1699\",\"product_name\":\"LUFART SUSP\",\"option_id\":null,\"net_unit_cost\":\"0.6200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"230.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"142.6000\",\"quantity_balance\":\"230.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6200\",\"real_unit_cost\":\"0.6200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"230.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6200\"},{\"id\":\"27931\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5667\",\"product_code\":\"1700\",\"product_name\":\"LUFART TAB\",\"option_id\":null,\"net_unit_cost\":\"2.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"34.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.4000\",\"quantity_balance\":\"34.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.6000\",\"real_unit_cost\":\"2.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"34.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.6000\"},{\"id\":\"27932\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5668\",\"product_code\":\"1701\",\"product_name\":\"PENICILLIN TAB\",\"option_id\":null,\"net_unit_cost\":\"4.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"119.0000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2500\",\"real_unit_cost\":\"4.2500\",\"quantity_received\":null,\"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\":\"4.2500\"},{\"id\":\"27933\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5669\",\"product_code\":\"1702\",\"product_name\":\"PANADOL PLAIN\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"95.0000\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.0000\"},{\"id\":\"27934\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5670\",\"product_code\":\"1703\",\"product_name\":\"KAMAGRA50\",\"option_id\":null,\"net_unit_cost\":\"3.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.6500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6500\",\"real_unit_cost\":\"3.6500\",\"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\":\"3.6500\"},{\"id\":\"27935\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5671\",\"product_code\":\"1704\",\"product_name\":\"DRAGON CAPS\",\"option_id\":null,\"net_unit_cost\":\"7.4600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.3000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.4600\",\"real_unit_cost\":\"7.4600\",\"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\":\"7.4600\"},{\"id\":\"27936\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5672\",\"product_code\":\"1705\",\"product_name\":\"GOGYNAX\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"47.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"27937\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5673\",\"product_code\":\"1706\",\"product_name\":\"CANDID V6\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"110.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"27938\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5674\",\"product_code\":\"1707\",\"product_name\":\"FLUREST\",\"option_id\":null,\"net_unit_cost\":\"3.9600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.9600\",\"real_unit_cost\":\"3.9600\",\"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\":\"3.9600\"},{\"id\":\"27939\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5675\",\"product_code\":\"1708\",\"product_name\":\"HUICHUM CAPS\",\"option_id\":null,\"net_unit_cost\":\"2.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.5000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.2500\",\"real_unit_cost\":\"2.2500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.2500\"},{\"id\":\"27940\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5676\",\"product_code\":\"1709\",\"product_name\":\"KIDIVITE S\\/S\",\"option_id\":null,\"net_unit_cost\":\"1.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.2500\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.7500\",\"real_unit_cost\":\"1.7500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.7500\"},{\"id\":\"27941\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5677\",\"product_code\":\"1710\",\"product_name\":\"COMMIT 50\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.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\":\"17.0000\"},{\"id\":\"27942\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5678\",\"product_code\":\"1711\",\"product_name\":\"MALIN TAB\",\"option_id\":null,\"net_unit_cost\":\"11.5600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.1200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.5600\",\"real_unit_cost\":\"11.5600\",\"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\":\"11.5600\"},{\"id\":\"27943\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5679\",\"product_code\":\"1712\",\"product_name\":\"CARVADILOL TEVA\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"27944\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5680\",\"product_code\":\"1713\",\"product_name\":\"NIFECARD 60\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"27945\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5681\",\"product_code\":\"1714\",\"product_name\":\"LISINOPRIL 10\",\"option_id\":null,\"net_unit_cost\":\"9.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"98.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8000\",\"real_unit_cost\":\"9.8000\",\"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\":\"9.8000\"},{\"id\":\"27946\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5682\",\"product_code\":\"1715\",\"product_name\":\"DIGOXIN 125\",\"option_id\":null,\"net_unit_cost\":\"20.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"83.9200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.9800\",\"real_unit_cost\":\"20.9800\",\"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\":\"20.9800\"},{\"id\":\"27947\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5683\",\"product_code\":\"1716\",\"product_name\":\"FUROSEMIDE 20 CRESCENT\",\"option_id\":null,\"net_unit_cost\":\"13.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.5000\"},{\"id\":\"27948\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5684\",\"product_code\":\"1717\",\"product_name\":\"LIQUIFRUITA S\\/S\",\"option_id\":null,\"net_unit_cost\":\"6.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3000\",\"real_unit_cost\":\"6.3000\",\"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\":\"6.3000\"},{\"id\":\"27949\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5685\",\"product_code\":\"1718\",\"product_name\":\"STARWIN B\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.6200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"92.4000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6200\",\"real_unit_cost\":\"4.6200\",\"quantity_received\":null,\"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\":\"4.6200\"},{\"id\":\"27950\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5686\",\"product_code\":\"1719\",\"product_name\":\"STARWIN S\\/S\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"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\":\"2.0000\"},{\"id\":\"27951\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5687\",\"product_code\":\"1720\",\"product_name\":\"CLOMID 50\",\"option_id\":null,\"net_unit_cost\":\"0.9200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-7.3600\",\"quantity_balance\":\"-8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9200\",\"real_unit_cost\":\"0.9200\",\"quantity_received\":null,\"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\":\"0.9200\"},{\"id\":\"27952\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5688\",\"product_code\":\"1721\",\"product_name\":\"AMOXYCLIN 500 BLISS\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"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\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27953\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5689\",\"product_code\":\"1722\",\"product_name\":\"~AMOXICILIN 250 BLISS\",\"option_id\":null,\"net_unit_cost\":\"0.9200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.2000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9200\",\"real_unit_cost\":\"0.9200\",\"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\":\"0.9200\"},{\"id\":\"27954\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5690\",\"product_code\":\"1723\",\"product_name\":\"SECURE\",\"option_id\":null,\"net_unit_cost\":\"1.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"47.3200\",\"quantity_balance\":\"26.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8200\",\"real_unit_cost\":\"1.8200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8200\"},{\"id\":\"27955\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5691\",\"product_code\":\"1724\",\"product_name\":\"AMOXYCILLIN 250 BLISS\",\"option_id\":null,\"net_unit_cost\":\"1.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"61.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"109.8000\",\"quantity_balance\":\"61.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8000\",\"real_unit_cost\":\"1.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"61.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8000\"},{\"id\":\"27956\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5692\",\"product_code\":\"1725\",\"product_name\":\"FLUCOX CAPS 250\",\"option_id\":null,\"net_unit_cost\":\"2.1800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"174.4000\",\"quantity_balance\":\"80.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.1800\",\"real_unit_cost\":\"2.1800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"80.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.1800\"},{\"id\":\"27957\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5693\",\"product_code\":\"1726\",\"product_name\":\"DOMI 10\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"27958\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5694\",\"product_code\":\"1727\",\"product_name\":\"DOMI 30\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"96.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"quantity_received\":null,\"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\":\"12.0000\"},{\"id\":\"27959\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5695\",\"product_code\":\"1728\",\"product_name\":\"MIGHTY P B\\/S\",\"option_id\":null,\"net_unit_cost\":\"13.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.9000\",\"real_unit_cost\":\"13.9000\",\"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\":\"13.9000\"},{\"id\":\"27960\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5696\",\"product_code\":\"1729\",\"product_name\":\"MIGHTY P S\'S\",\"option_id\":null,\"net_unit_cost\":\"13.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.5000\"},{\"id\":\"27961\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5697\",\"product_code\":\"1730\",\"product_name\":\"KINGDOM G BITS\",\"option_id\":null,\"net_unit_cost\":\"13.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.5000\"},{\"id\":\"27962\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5698\",\"product_code\":\"1731\",\"product_name\":\"VEINE CAPS\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"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\":\"37.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"27963\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5699\",\"product_code\":\"1732\",\"product_name\":\"TODAY MAN\",\"option_id\":null,\"net_unit_cost\":\"16.8000\",\"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\":\"50.4000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.8000\"},{\"id\":\"27964\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5700\",\"product_code\":\"1733\",\"product_name\":\"YAFO MAN\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.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\":\"17.0000\"},{\"id\":\"27965\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5701\",\"product_code\":\"1734\",\"product_name\":\"GIVERS P CAPS\",\"option_id\":null,\"net_unit_cost\":\"13.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\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"27966\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5702\",\"product_code\":\"1735\",\"product_name\":\"GIVERS KOO CAPS\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"27967\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5703\",\"product_code\":\"1736\",\"product_name\":\"SIBIWOMAN\",\"option_id\":null,\"net_unit_cost\":\"10.8300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.8100\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.8300\",\"real_unit_cost\":\"10.8300\",\"quantity_received\":null,\"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\":\"10.8300\"},{\"id\":\"27968\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5704\",\"product_code\":\"1737\",\"product_name\":\"ADOM W,G CAPS\",\"option_id\":null,\"net_unit_cost\":\"9.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"78.4000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8000\",\"real_unit_cost\":\"9.8000\",\"quantity_received\":null,\"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\":\"9.8000\"},{\"id\":\"27969\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5705\",\"product_code\":\"1738\",\"product_name\":\"ADOM W,G SRP\",\"option_id\":null,\"net_unit_cost\":\"15.5200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"139.6800\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.5200\",\"real_unit_cost\":\"15.5200\",\"quantity_received\":null,\"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\":\"15.5200\"},{\"id\":\"27970\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5706\",\"product_code\":\"1739\",\"product_name\":\"TAABEA MIX\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"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\":\"28.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.5000\"},{\"id\":\"27971\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5707\",\"product_code\":\"1740\",\"product_name\":\"ROOTER TYTONIC\",\"option_id\":null,\"net_unit_cost\":\"8.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"92.4000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.4000\",\"real_unit_cost\":\"8.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.4000\"},{\"id\":\"27972\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5708\",\"product_code\":\"1741\",\"product_name\":\"TIME HERBAL\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"27973\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5709\",\"product_code\":\"1742\",\"product_name\":\"AGBEVE TONIC\",\"option_id\":null,\"net_unit_cost\":\"5.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.8000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.6000\",\"real_unit_cost\":\"5.6000\",\"quantity_received\":null,\"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\":\"5.6000\"},{\"id\":\"27974\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5710\",\"product_code\":\"1743\",\"product_name\":\"AGBEVE FEVER\",\"option_id\":null,\"net_unit_cost\":\"11.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.3000\"},{\"id\":\"27975\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5711\",\"product_code\":\"1744\",\"product_name\":\"ADOM KOO SRP\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"27976\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5712\",\"product_code\":\"1745\",\"product_name\":\"ADOM KOO CAPS\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"6.5000\"},{\"id\":\"27977\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5713\",\"product_code\":\"1746\",\"product_name\":\"MADAM CATHERINE\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"27978\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5714\",\"product_code\":\"1747\",\"product_name\":\"ALAFIA BITS\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"27979\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5715\",\"product_code\":\"1748\",\"product_name\":\"TOP FEVER\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27980\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5716\",\"product_code\":\"1749\",\"product_name\":\"TOP TONIC\",\"option_id\":null,\"net_unit_cost\":\"18.5000\",\"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\":\"55.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"18.5000\"},{\"id\":\"27981\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5717\",\"product_code\":\"1750\",\"product_name\":\"ANGEL CREAM\",\"option_id\":null,\"net_unit_cost\":\"10.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\":\"30.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\"},{\"id\":\"27982\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5718\",\"product_code\":\"1751\",\"product_name\":\"TINATET VENECARE\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"95.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"27983\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5719\",\"product_code\":\"1752\",\"product_name\":\"VICTORY G MIX\",\"option_id\":null,\"net_unit_cost\":\"13.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.5000\"},{\"id\":\"27984\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5720\",\"product_code\":\"1753\",\"product_name\":\"PROSTAFIT\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"27985\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5721\",\"product_code\":\"1754\",\"product_name\":\"SOLAK MIX\",\"option_id\":null,\"net_unit_cost\":\"21.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"21.0000\"},{\"id\":\"27986\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5722\",\"product_code\":\"1755\",\"product_name\":\"ZIPMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"27.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.0000\",\"real_unit_cost\":\"27.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\":\"27.0000\"},{\"id\":\"27987\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5723\",\"product_code\":\"1756\",\"product_name\":\"PROSTACURE TEA\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27988\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5724\",\"product_code\":\"1757\",\"product_name\":\"TINATET 230 CAPS\",\"option_id\":null,\"net_unit_cost\":\"14.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.2000\",\"real_unit_cost\":\"14.2000\",\"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\":\"14.2000\"},{\"id\":\"27989\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5725\",\"product_code\":\"1758\",\"product_name\":\"AKANAYO KOO BITS\",\"option_id\":null,\"net_unit_cost\":\"1.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.2500\",\"real_unit_cost\":\"1.2500\",\"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\":\"1.2500\"},{\"id\":\"27990\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5726\",\"product_code\":\"1759\",\"product_name\":\"DETOL 250 ML\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"27991\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5727\",\"product_code\":\"1760\",\"product_name\":\"PEPSODENT BRUSH\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27992\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5728\",\"product_code\":\"1761\",\"product_name\":\"POWERZONE B\'S\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"168.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"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\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"27993\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5729\",\"product_code\":\"1762\",\"product_name\":\"POWERZONE S\'S\",\"option_id\":null,\"net_unit_cost\":\"25.4800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.4800\",\"real_unit_cost\":\"25.4800\",\"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\":\"25.4800\"},{\"id\":\"27994\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5730\",\"product_code\":\"1763\",\"product_name\":\"CERELAC\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"27995\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5731\",\"product_code\":\"1764\",\"product_name\":\"LACTULOSE\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"25.0000\"},{\"id\":\"27996\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5732\",\"product_code\":\"1765\",\"product_name\":\"MOLFIX\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.8000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"quantity_received\":null,\"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.6000\"},{\"id\":\"27997\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5733\",\"product_code\":\"1766\",\"product_name\":\"COLESTOP 10\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"165.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"27998\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5734\",\"product_code\":\"1767\",\"product_name\":\"COLGATE TRIP ACTN\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"27999\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5735\",\"product_code\":\"1768\",\"product_name\":\"EASYLIFE VIT C\",\"option_id\":null,\"net_unit_cost\":\"1.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.7500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3500\",\"real_unit_cost\":\"1.3500\",\"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\":\"1.3500\"},{\"id\":\"28000\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5736\",\"product_code\":\"1769\",\"product_name\":\"HEAVEN SPRAY\",\"option_id\":null,\"net_unit_cost\":\"0.9700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"75.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.7500\",\"quantity_balance\":\"75.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9700\",\"real_unit_cost\":\"0.9700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"75.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.9700\"},{\"id\":\"28001\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5737\",\"product_code\":\"1770\",\"product_name\":\"ORANGE T.ROLL\",\"option_id\":null,\"net_unit_cost\":\"15.0500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-15.0500\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.0500\",\"real_unit_cost\":\"15.0500\",\"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\":\"15.0500\"},{\"id\":\"28002\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5738\",\"product_code\":\"1771\",\"product_name\":\"TANGO T.ROLL\",\"option_id\":null,\"net_unit_cost\":\"12.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.7000\",\"real_unit_cost\":\"12.7000\",\"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\":\"12.7000\"},{\"id\":\"28003\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5739\",\"product_code\":\"1772\",\"product_name\":\"MYCOLEX 3 CREAM\",\"option_id\":null,\"net_unit_cost\":\"6.1100\",\"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\":\"18.3300\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.1100\",\"real_unit_cost\":\"6.1100\",\"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\":\"6.1100\"},{\"id\":\"28004\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5740\",\"product_code\":\"1773\",\"product_name\":\"BELLS VIT C\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.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\":\"35.0000\"},{\"id\":\"28005\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5741\",\"product_code\":\"1774\",\"product_name\":\"ZINCOVIT DROP\",\"option_id\":null,\"net_unit_cost\":\"28.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.5800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.5800\",\"real_unit_cost\":\"28.5800\",\"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\":\"28.5800\"},{\"id\":\"28006\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5742\",\"product_code\":\"1775\",\"product_name\":\"SPERMAN\",\"option_id\":null,\"net_unit_cost\":\"13.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"83.3400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.8900\",\"real_unit_cost\":\"13.8900\",\"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\":\"13.8900\"},{\"id\":\"28007\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5743\",\"product_code\":\"1776\",\"product_name\":\"BONGELA CHILD\",\"option_id\":null,\"net_unit_cost\":\"6.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.4000\",\"real_unit_cost\":\"6.4000\",\"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\":\"6.4000\"},{\"id\":\"28008\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5744\",\"product_code\":\"1777\",\"product_name\":\"NUGEL\",\"option_id\":null,\"net_unit_cost\":\"12.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"61.4500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.2900\",\"real_unit_cost\":\"12.2900\",\"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\":\"12.2900\"},{\"id\":\"28009\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5745\",\"product_code\":\"1778\",\"product_name\":\"GASTRACID\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"100.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28010\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5746\",\"product_code\":\"1779\",\"product_name\":\"KOFLET\",\"option_id\":null,\"net_unit_cost\":\"3.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.6000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6000\",\"real_unit_cost\":\"3.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.6000\"},{\"id\":\"28011\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5747\",\"product_code\":\"1780\",\"product_name\":\"BEEHIVE\",\"option_id\":null,\"net_unit_cost\":\"3.8500\",\"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\":\"11.5500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.8500\",\"real_unit_cost\":\"3.8500\",\"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\":\"3.8500\"},{\"id\":\"28012\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5748\",\"product_code\":\"1781\",\"product_name\":\"NS\",\"option_id\":null,\"net_unit_cost\":\"5.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-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28013\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5749\",\"product_code\":\"1782\",\"product_name\":\"GLUCOSE\",\"option_id\":null,\"net_unit_cost\":\"17.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"142.4000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.8000\",\"real_unit_cost\":\"17.8000\",\"quantity_received\":null,\"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\":\"17.8000\"},{\"id\":\"28014\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5750\",\"product_code\":\"1783\",\"product_name\":\"EYECOPEN\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28015\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5751\",\"product_code\":\"1784\",\"product_name\":\"FEROGLOBIN CAPS\",\"option_id\":null,\"net_unit_cost\":\"2.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-2.9000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9000\",\"real_unit_cost\":\"2.9000\",\"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\":\"2.9000\"},{\"id\":\"28016\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5752\",\"product_code\":\"1785\",\"product_name\":\"GO COUGH\",\"option_id\":null,\"net_unit_cost\":\"1.6300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.8200\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6300\",\"real_unit_cost\":\"1.6300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.6300\"},{\"id\":\"28017\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5753\",\"product_code\":\"1786\",\"product_name\":\"BCO STRONG6-23\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"47.5000\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5000\"},{\"id\":\"28018\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5754\",\"product_code\":\"1787\",\"product_name\":\"AMPICLOX CAPS\",\"option_id\":null,\"net_unit_cost\":\"4.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.7000\",\"real_unit_cost\":\"4.7000\",\"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\":\"4.7000\"},{\"id\":\"28019\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5755\",\"product_code\":\"1788\",\"product_name\":\"BCO INJ\",\"option_id\":null,\"net_unit_cost\":\"28.7600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.7600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.7600\",\"real_unit_cost\":\"28.7600\",\"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\":\"28.7600\"},{\"id\":\"28020\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5756\",\"product_code\":\"1789\",\"product_name\":\"CORRORANGE DROP\",\"option_id\":null,\"net_unit_cost\":\"4.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"85.8000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2900\",\"real_unit_cost\":\"4.2900\",\"quantity_received\":null,\"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\":\"4.2900\"},{\"id\":\"28021\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5757\",\"product_code\":\"1790\",\"product_name\":\"CA-C SANDOX\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":null,\"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\":\"2.5000\"},{\"id\":\"28022\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5758\",\"product_code\":\"1791\",\"product_name\":\"NEXIUM 20\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"28023\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5759\",\"product_code\":\"1792\",\"product_name\":\"STAGYL\",\"option_id\":null,\"net_unit_cost\":\"48.7600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"97.5200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"48.7600\",\"real_unit_cost\":\"48.7600\",\"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\":\"48.7600\"},{\"id\":\"28024\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5760\",\"product_code\":\"1793\",\"product_name\":\"PEPSODENT B\\/S\",\"option_id\":null,\"net_unit_cost\":\"52.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"211.9600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.9900\",\"real_unit_cost\":\"52.9900\",\"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\":\"52.9900\"},{\"id\":\"28025\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5761\",\"product_code\":\"1794\",\"product_name\":\"ABIDEC\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"28026\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5762\",\"product_code\":\"1795\",\"product_name\":\"LAMISIL CREAM\",\"option_id\":null,\"net_unit_cost\":\"4.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.8000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3000\",\"real_unit_cost\":\"4.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\":\"4.3000\"},{\"id\":\"28027\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5763\",\"product_code\":\"1796\",\"product_name\":\"COMBANTRIN\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"112.0000\",\"quantity_balance\":\"32.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"32.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.5000\"},{\"id\":\"28028\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5764\",\"product_code\":\"1797\",\"product_name\":\"POLYFER CAPS\",\"option_id\":null,\"net_unit_cost\":\"1.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"55.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"74.8000\",\"quantity_balance\":\"55.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3600\",\"real_unit_cost\":\"1.3600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"55.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.3600\"},{\"id\":\"28029\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5765\",\"product_code\":\"1798\",\"product_name\":\"LYRICA 25\",\"option_id\":null,\"net_unit_cost\":\"2.4500\",\"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\":\"7.3500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4500\",\"real_unit_cost\":\"2.4500\",\"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\":\"2.4500\"},{\"id\":\"28030\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5766\",\"product_code\":\"1799\",\"product_name\":\"PARA DENK 125\",\"option_id\":null,\"net_unit_cost\":\"1.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"55.4400\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9800\",\"real_unit_cost\":\"1.9800\",\"quantity_received\":null,\"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\":\"1.9800\"},{\"id\":\"28031\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5767\",\"product_code\":\"1800\",\"product_name\":\"VAGINAX PESS\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"26.0000\",\"date\":\"2021-08-21\",\"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\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"28032\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5768\",\"product_code\":\"1801\",\"product_name\":\"FENBASE\",\"option_id\":null,\"net_unit_cost\":\"32.7700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"131.0800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"32.7700\",\"real_unit_cost\":\"32.7700\",\"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\":\"32.7700\"},{\"id\":\"28033\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5769\",\"product_code\":\"1802\",\"product_name\":\"OMEPRAZOLE\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.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\":\"4.2000\"},{\"id\":\"28034\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5770\",\"product_code\":\"1803\",\"product_name\":\"EVECARE\",\"option_id\":null,\"net_unit_cost\":\"82.8700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"82.8700\",\"real_unit_cost\":\"82.8700\",\"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\":\"82.8700\"},{\"id\":\"28035\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5771\",\"product_code\":\"1804\",\"product_name\":\"KOFEX ADULT\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.6000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.2000\"},{\"id\":\"28036\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5772\",\"product_code\":\"1805\",\"product_name\":\"DIFLUCAN\",\"option_id\":null,\"net_unit_cost\":\"17.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"71.5600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.8900\",\"real_unit_cost\":\"17.8900\",\"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\":\"17.8900\"},{\"id\":\"28037\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5773\",\"product_code\":\"1806\",\"product_name\":\"ABONIKI\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.5000\"},{\"id\":\"28038\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5774\",\"product_code\":\"1807\",\"product_name\":\"LIVING BIT CAPS\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"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\":\"3.6000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2000\"},{\"id\":\"28039\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5775\",\"product_code\":\"1808\",\"product_name\":\"LIVING BIT SRP\",\"option_id\":null,\"net_unit_cost\":\"17.7800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"142.2400\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.7800\",\"real_unit_cost\":\"17.7800\",\"quantity_received\":null,\"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\":\"17.7800\"},{\"id\":\"28040\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5776\",\"product_code\":\"1809\",\"product_name\":\"NAZOR\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28041\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5777\",\"product_code\":\"1810\",\"product_name\":\"TINATETT MALAKARE\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"28042\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5778\",\"product_code\":\"1811\",\"product_name\":\"TRENDOUS CAPS\",\"option_id\":null,\"net_unit_cost\":\"8.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\":\"24.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28043\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5779\",\"product_code\":\"1812\",\"product_name\":\"VICTAGO\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.2000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.2000\"},{\"id\":\"28044\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5780\",\"product_code\":\"1813\",\"product_name\":\"ADUTWUMWAA BIT\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28045\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5781\",\"product_code\":\"1814\",\"product_name\":\"BOAFO OINT\",\"option_id\":null,\"net_unit_cost\":\"22.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\":\"66.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"22.0000\"},{\"id\":\"28046\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5782\",\"product_code\":\"1815\",\"product_name\":\"BRIGHFORD\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28047\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5783\",\"product_code\":\"1816\",\"product_name\":\"DIAGELLATES LARGE\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"28048\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5784\",\"product_code\":\"1817\",\"product_name\":\"DIAGELATE MED\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28049\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5785\",\"product_code\":\"1818\",\"product_name\":\"DIAGELATE SMALL\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.2000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.2000\"},{\"id\":\"28050\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5786\",\"product_code\":\"1819\",\"product_name\":\"EKURO BEWU\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28051\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5787\",\"product_code\":\"1820\",\"product_name\":\"ERNEST OINT\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28052\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5788\",\"product_code\":\"1821\",\"product_name\":\"FINE SOAP\",\"option_id\":null,\"net_unit_cost\":\"14.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.5000\"},{\"id\":\"28053\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5789\",\"product_code\":\"1822\",\"product_name\":\"FINE CREAM\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28054\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5790\",\"product_code\":\"1823\",\"product_name\":\"FRANKO HERBAL\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.2000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.2000\"},{\"id\":\"28055\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5791\",\"product_code\":\"1824\",\"product_name\":\"KINGDOM GENSENG CAPS\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28056\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5792\",\"product_code\":\"1825\",\"product_name\":\"MAME DAGOMBA\",\"option_id\":null,\"net_unit_cost\":\"0.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"38.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.6000\",\"quantity_balance\":\"38.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7000\",\"real_unit_cost\":\"0.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"38.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.7000\"},{\"id\":\"28057\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5793\",\"product_code\":\"1826\",\"product_name\":\"MASADA\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28058\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5794\",\"product_code\":\"1827\",\"product_name\":\"NANA ADJEI\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28059\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5795\",\"product_code\":\"1828\",\"product_name\":\"PA-KUM\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"quantity_received\":null,\"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\":\"5.5000\"},{\"id\":\"28060\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5796\",\"product_code\":\"1829\",\"product_name\":\"SIBIMAN\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28061\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5797\",\"product_code\":\"1830\",\"product_name\":\"ULCERPLEX\",\"option_id\":null,\"net_unit_cost\":\"7.9800\",\"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\":\"23.9400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9800\",\"real_unit_cost\":\"7.9800\",\"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\":\"7.9800\"},{\"id\":\"28062\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5798\",\"product_code\":\"1831\",\"product_name\":\"BASECOLD SRP\",\"option_id\":null,\"net_unit_cost\":\"4.3700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"100.5100\",\"quantity_balance\":\"23.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3700\",\"real_unit_cost\":\"4.3700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3700\"},{\"id\":\"28063\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5799\",\"product_code\":\"1832\",\"product_name\":\"FLUXAMOX SRP\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28064\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5800\",\"product_code\":\"1833\",\"product_name\":\"FLUXAMOX CAPS\",\"option_id\":null,\"net_unit_cost\":\"2.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"93.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"237.1500\",\"quantity_balance\":\"93.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5500\",\"real_unit_cost\":\"2.5500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"93.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5500\"},{\"id\":\"28065\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5801\",\"product_code\":\"1834\",\"product_name\":\"ZUDREX SRP\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"19.0000\"},{\"id\":\"28066\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5802\",\"product_code\":\"1835\",\"product_name\":\"ZUDREX TAB\",\"option_id\":null,\"net_unit_cost\":\"0.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"251.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"100.4000\",\"quantity_balance\":\"251.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4000\",\"real_unit_cost\":\"0.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"251.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4000\"},{\"id\":\"28067\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5803\",\"product_code\":\"1836\",\"product_name\":\"MENTODEX B\\/S\",\"option_id\":null,\"net_unit_cost\":\"8.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.9900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.9900\",\"real_unit_cost\":\"8.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\":\"8.9900\"},{\"id\":\"28068\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5804\",\"product_code\":\"1837\",\"product_name\":\"NO 10\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28069\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5805\",\"product_code\":\"1838\",\"product_name\":\"ZUBES CHILD\",\"option_id\":null,\"net_unit_cost\":\"1.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.9000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6500\",\"real_unit_cost\":\"1.6500\",\"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\":\"1.6500\"},{\"id\":\"28070\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5806\",\"product_code\":\"1839\",\"product_name\":\"SAMLIN NON D\",\"option_id\":null,\"net_unit_cost\":\"4.0300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.0300\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.0300\",\"real_unit_cost\":\"4.0300\",\"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\":\"4.0300\"},{\"id\":\"28071\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5807\",\"product_code\":\"1840\",\"product_name\":\"MACRAFOLIN SRP\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28072\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5808\",\"product_code\":\"1841\",\"product_name\":\"SHALCIP\",\"option_id\":null,\"net_unit_cost\":\"0.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.3000\",\"real_unit_cost\":\"0.3000\",\"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\":\"0.3000\"},{\"id\":\"28073\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5809\",\"product_code\":\"1842\",\"product_name\":\"BABY COU LINC\",\"option_id\":null,\"net_unit_cost\":\"6.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9800\",\"real_unit_cost\":\"6.9800\",\"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\":\"6.9800\"},{\"id\":\"28074\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5810\",\"product_code\":\"1843\",\"product_name\":\"FERROUS SULF\",\"option_id\":null,\"net_unit_cost\":\"6.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"55.8400\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9800\",\"real_unit_cost\":\"6.9800\",\"quantity_received\":null,\"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.9800\"},{\"id\":\"28075\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5811\",\"product_code\":\"1844\",\"product_name\":\"MALR 2 SRP\",\"option_id\":null,\"net_unit_cost\":\"4.7100\",\"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\":\"14.1300\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.7100\",\"real_unit_cost\":\"4.7100\",\"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\":\"4.7100\"},{\"id\":\"28076\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5812\",\"product_code\":\"1845\",\"product_name\":\"NEXCOFER B\\/S\",\"option_id\":null,\"net_unit_cost\":\"11.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.8000\",\"real_unit_cost\":\"11.8000\",\"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\":\"11.8000\"},{\"id\":\"28077\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5813\",\"product_code\":\"1846\",\"product_name\":\"PARA UK 16S\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28078\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5814\",\"product_code\":\"1847\",\"product_name\":\"ENACEF SYRUP 125\",\"option_id\":null,\"net_unit_cost\":\"6.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8000\",\"real_unit_cost\":\"6.8000\",\"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\":\"6.8000\"},{\"id\":\"28079\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5815\",\"product_code\":\"1848\",\"product_name\":\"BENDRO 5MG\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2000\"},{\"id\":\"28080\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5816\",\"product_code\":\"1849\",\"product_name\":\"ETISALA SRP\",\"option_id\":null,\"net_unit_cost\":\"3.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.6000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6000\",\"real_unit_cost\":\"3.6000\",\"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\":\"3.6000\"},{\"id\":\"28081\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5817\",\"product_code\":\"1850\",\"product_name\":\"WORMBASE SUSP\",\"option_id\":null,\"net_unit_cost\":\"1.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.1000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3000\",\"real_unit_cost\":\"1.3000\",\"quantity_received\":null,\"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\":\"1.3000\"},{\"id\":\"28082\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5818\",\"product_code\":\"1851\",\"product_name\":\"BADRUF CREAM\",\"option_id\":null,\"net_unit_cost\":\"0.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.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.2500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2500\",\"real_unit_cost\":\"0.2500\",\"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\":\"0.2500\"},{\"id\":\"28083\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5819\",\"product_code\":\"1852\",\"product_name\":\"BASEFENAC FORT\",\"option_id\":null,\"net_unit_cost\":\"3.3000\",\"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\":\"-9.9000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.3000\",\"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\":\"3.3000\"},{\"id\":\"28084\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5820\",\"product_code\":\"1853\",\"product_name\":\"WORMBASE TAB\",\"option_id\":null,\"net_unit_cost\":\"5.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-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28085\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5821\",\"product_code\":\"1854\",\"product_name\":\"ARTIBASE SUSP\",\"option_id\":null,\"net_unit_cost\":\"4.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.7000\",\"real_unit_cost\":\"4.7000\",\"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\":\"4.7000\"},{\"id\":\"28086\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5822\",\"product_code\":\"1855\",\"product_name\":\"BASEKOF\",\"option_id\":null,\"net_unit_cost\":\"0.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.5500\",\"real_unit_cost\":\"0.5500\",\"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\":\"0.5500\"},{\"id\":\"28087\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5823\",\"product_code\":\"1856\",\"product_name\":\"VITA P CAPS\",\"option_id\":null,\"net_unit_cost\":\"2.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.4000\",\"real_unit_cost\":\"2.4000\",\"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\":\"2.4000\"},{\"id\":\"28088\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5824\",\"product_code\":\"1857\",\"product_name\":\"BASEDIUM CAPS\",\"option_id\":null,\"net_unit_cost\":\"3.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.9000\",\"real_unit_cost\":\"3.9000\",\"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\":\"3.9000\"},{\"id\":\"28089\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5825\",\"product_code\":\"1858\",\"product_name\":\"ETISALA CAPS\",\"option_id\":null,\"net_unit_cost\":\"3.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.3000\",\"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\":\"3.3000\"},{\"id\":\"28090\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5826\",\"product_code\":\"1859\",\"product_name\":\"ARTIBASE SRP\",\"option_id\":null,\"net_unit_cost\":\"0.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.8000\",\"real_unit_cost\":\"0.8000\",\"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\":\"0.8000\"},{\"id\":\"28091\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5827\",\"product_code\":\"1860\",\"product_name\":\"ARTIBASE DS\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"quantity_received\":null,\"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\":\"2.0000\"},{\"id\":\"28092\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5828\",\"product_code\":\"1861\",\"product_name\":\"BE- MAN CD\",\"option_id\":null,\"net_unit_cost\":\"0.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6500\",\"real_unit_cost\":\"0.6500\",\"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\":\"0.6500\"},{\"id\":\"28093\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5829\",\"product_code\":\"1862\",\"product_name\":\"PROXEED PLUS\",\"option_id\":null,\"net_unit_cost\":\"1.1500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.1500\",\"real_unit_cost\":\"1.1500\",\"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\":\"1.1500\"},{\"id\":\"28094\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5830\",\"product_code\":\"1863\",\"product_name\":\"BASEFENAC-P\",\"option_id\":null,\"net_unit_cost\":\"0.9300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.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.9300\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9300\",\"real_unit_cost\":\"0.9300\",\"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\":\"0.9300\"},{\"id\":\"28095\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5831\",\"product_code\":\"1864\",\"product_name\":\"DIPEX TAB\",\"option_id\":null,\"net_unit_cost\":\"1.2800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.8800\",\"quantity_balance\":\"21.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.2800\",\"real_unit_cost\":\"1.2800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2800\"},{\"id\":\"28096\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5832\",\"product_code\":\"1865\",\"product_name\":\"BASEBRU TAB\",\"option_id\":null,\"net_unit_cost\":\"0.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"85.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.2000\",\"quantity_balance\":\"85.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3200\",\"real_unit_cost\":\"0.3200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"85.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3200\"},{\"id\":\"28097\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5833\",\"product_code\":\"1866\",\"product_name\":\"BASECOLD\",\"option_id\":null,\"net_unit_cost\":\"0.5200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.5200\",\"quantity_balance\":\"26.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5200\",\"real_unit_cost\":\"0.5200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.5200\"},{\"id\":\"28098\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5834\",\"product_code\":\"1867\",\"product_name\":\"BISACODYL\",\"option_id\":null,\"net_unit_cost\":\"14.4400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"14.4400\",\"real_unit_cost\":\"14.4400\",\"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\":\"14.4400\"},{\"id\":\"28099\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5835\",\"product_code\":\"1868\",\"product_name\":\"ESKAZIPAM\",\"option_id\":null,\"net_unit_cost\":\"2.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.9000\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.1000\",\"real_unit_cost\":\"2.1000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.1000\"},{\"id\":\"28100\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5836\",\"product_code\":\"1869\",\"product_name\":\"FUROSEMIDE 20 RXPHAMA\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-89.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\":\"-89.0000\",\"date\":\"2021-08-21\",\"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\":\"-89.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"28101\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5837\",\"product_code\":\"1870\",\"product_name\":\"KIDS BRUSH\",\"option_id\":null,\"net_unit_cost\":\"2.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"52.8000\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4000\",\"real_unit_cost\":\"2.4000\",\"quantity_received\":null,\"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\":\"2.4000\"},{\"id\":\"28102\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5838\",\"product_code\":\"1871\",\"product_name\":\"STREPTOL\",\"option_id\":null,\"net_unit_cost\":\"14.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"14.6000\",\"real_unit_cost\":\"14.6000\",\"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\":\"14.6000\"},{\"id\":\"28103\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5839\",\"product_code\":\"1872\",\"product_name\":\"JOY OINT\",\"option_id\":null,\"net_unit_cost\":\"1.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.6000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.4000\",\"real_unit_cost\":\"1.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.4000\"},{\"id\":\"28104\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5840\",\"product_code\":\"1873\",\"product_name\":\"SAVLON 250\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-6.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"28105\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5841\",\"product_code\":\"1874\",\"product_name\":\"BASEBOOM JELLY\",\"option_id\":null,\"net_unit_cost\":\"21.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\":\"-63.0000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"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\":\"-3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"21.0000\"},{\"id\":\"28106\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5842\",\"product_code\":\"1875\",\"product_name\":\"KOJACK PASTE\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-82.5000\",\"quantity_balance\":\"-15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"-15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.5000\"},{\"id\":\"28107\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5843\",\"product_code\":\"1876\",\"product_name\":\"KOJA CHARC\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28108\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5844\",\"product_code\":\"1877\",\"product_name\":\"DICLO -DENK 50\",\"option_id\":null,\"net_unit_cost\":\"0.3400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.4200\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3400\",\"real_unit_cost\":\"0.3400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3400\"},{\"id\":\"28109\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5845\",\"product_code\":\"1878\",\"product_name\":\"ROBB JAR\",\"option_id\":null,\"net_unit_cost\":\"13.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\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"28110\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5846\",\"product_code\":\"1879\",\"product_name\":\"PAIN OFF\",\"option_id\":null,\"net_unit_cost\":\"9.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.6000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.6000\",\"real_unit_cost\":\"9.6000\",\"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\":\"9.6000\"},{\"id\":\"28111\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5847\",\"product_code\":\"1880\",\"product_name\":\"OLANZIPNE\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.0000\",\"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\":\"18.0000\"},{\"id\":\"28112\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5848\",\"product_code\":\"1881\",\"product_name\":\"JARIFAN 2 SRP\",\"option_id\":null,\"net_unit_cost\":\"14.7800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.5600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.7800\",\"real_unit_cost\":\"14.7800\",\"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\":\"14.7800\"},{\"id\":\"28113\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5849\",\"product_code\":\"1882\",\"product_name\":\"ARABA BAZEEN\",\"option_id\":null,\"net_unit_cost\":\"65.0100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"65.0100\",\"real_unit_cost\":\"65.0100\",\"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\":\"65.0100\"},{\"id\":\"28114\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5850\",\"product_code\":\"1883\",\"product_name\":\"HEPTO PEP\",\"option_id\":null,\"net_unit_cost\":\"4.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.2500\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2500\",\"real_unit_cost\":\"4.2500\",\"quantity_received\":null,\"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\":\"4.2500\"},{\"id\":\"28115\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5851\",\"product_code\":\"1884\",\"product_name\":\"APPLE CIDER B\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"46.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"197.8000\",\"quantity_balance\":\"46.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3000\",\"real_unit_cost\":\"4.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"46.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3000\"},{\"id\":\"28116\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5852\",\"product_code\":\"1885\",\"product_name\":\"EXFORGE 10\\/160\",\"option_id\":null,\"net_unit_cost\":\"5.6100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.4900\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.6100\",\"real_unit_cost\":\"5.6100\",\"quantity_received\":null,\"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\":\"5.6100\"},{\"id\":\"28117\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5853\",\"product_code\":\"1886\",\"product_name\":\"EXFORGE 5\\/160\",\"option_id\":null,\"net_unit_cost\":\"1.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.0000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.7000\",\"real_unit_cost\":\"1.7000\",\"quantity_received\":null,\"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\":\"1.7000\"},{\"id\":\"28118\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5854\",\"product_code\":\"1887\",\"product_name\":\"DIPHEX SRP\",\"option_id\":null,\"net_unit_cost\":\"0.8900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.8900\",\"real_unit_cost\":\"0.8900\",\"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\":\"0.8900\"},{\"id\":\"28119\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5855\",\"product_code\":\"1888\",\"product_name\":\"ZEMAN\",\"option_id\":null,\"net_unit_cost\":\"2.4100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"55.4300\",\"quantity_balance\":\"23.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4100\",\"real_unit_cost\":\"2.4100\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.4100\"},{\"id\":\"28120\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5856\",\"product_code\":\"1889\",\"product_name\":\"SIRDALUD 2MG\",\"option_id\":null,\"net_unit_cost\":\"24.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"24.0000\",\"real_unit_cost\":\"24.0000\",\"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\":\"24.0000\"},{\"id\":\"28121\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5857\",\"product_code\":\"1890\",\"product_name\":\"SIRDALUD 4MG\",\"option_id\":null,\"net_unit_cost\":\"5.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-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28122\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5858\",\"product_code\":\"1891\",\"product_name\":\"ZINCOLAC\",\"option_id\":null,\"net_unit_cost\":\"42.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"84.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"42.0000\",\"real_unit_cost\":\"42.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\":\"42.0000\"},{\"id\":\"28123\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5859\",\"product_code\":\"1892\",\"product_name\":\"OSONS GRIPE\",\"option_id\":null,\"net_unit_cost\":\"23.9600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"23.9600\",\"real_unit_cost\":\"23.9600\",\"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\":\"23.9600\"},{\"id\":\"28124\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5860\",\"product_code\":\"1893\",\"product_name\":\"VITAGLOBIN\",\"option_id\":null,\"net_unit_cost\":\"15.9500\",\"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\":\"47.8500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.9500\",\"real_unit_cost\":\"15.9500\",\"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\":\"15.9500\"},{\"id\":\"28125\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5861\",\"product_code\":\"1894\",\"product_name\":\"EVECARE SRP\",\"option_id\":null,\"net_unit_cost\":\"16.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\":\"48.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"16.0000\"},{\"id\":\"28126\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5862\",\"product_code\":\"1895\",\"product_name\":\"EPICROM\",\"option_id\":null,\"net_unit_cost\":\"21.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"21.7000\",\"real_unit_cost\":\"21.7000\",\"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\":\"21.7000\"},{\"id\":\"28127\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5863\",\"product_code\":\"1896\",\"product_name\":\"CROMAX\",\"option_id\":null,\"net_unit_cost\":\"20.6900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.3800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.6900\",\"real_unit_cost\":\"20.6900\",\"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\":\"20.6900\"},{\"id\":\"28128\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5864\",\"product_code\":\"1897\",\"product_name\":\"DALACIN C 150MG\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"58.5000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28129\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5865\",\"product_code\":\"1898\",\"product_name\":\"NURIFER CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.5100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.4000\",\"quantity_balance\":\"40.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5100\",\"real_unit_cost\":\"0.5100\",\"quantity_received\":null,\"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.5100\"},{\"id\":\"28130\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5866\",\"product_code\":\"1899\",\"product_name\":\"AERIUS TAB\",\"option_id\":null,\"net_unit_cost\":\"0.6400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"63.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.3200\",\"quantity_balance\":\"63.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6400\",\"real_unit_cost\":\"0.6400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"63.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6400\"},{\"id\":\"28131\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5867\",\"product_code\":\"1900\",\"product_name\":\"GACET 125\",\"option_id\":null,\"net_unit_cost\":\"17.4500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"17.4500\",\"real_unit_cost\":\"17.4500\",\"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\":\"17.4500\"},{\"id\":\"28132\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5868\",\"product_code\":\"1901\",\"product_name\":\"GACET 250\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"28133\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5869\",\"product_code\":\"1902\",\"product_name\":\"FLOXAPEN\",\"option_id\":null,\"net_unit_cost\":\"11.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"47.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9000\",\"real_unit_cost\":\"11.9000\",\"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\":\"11.9000\"},{\"id\":\"28134\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5870\",\"product_code\":\"1903\",\"product_name\":\"ASTHALEX\",\"option_id\":null,\"net_unit_cost\":\"42.5100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"85.0200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"42.5100\",\"real_unit_cost\":\"42.5100\",\"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\":\"42.5100\"},{\"id\":\"28135\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5871\",\"product_code\":\"1904\",\"product_name\":\"DEXATROL DROP\",\"option_id\":null,\"net_unit_cost\":\"16.4500\",\"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\":\"49.3500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"16.4500\",\"real_unit_cost\":\"16.4500\",\"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\":\"16.4500\"},{\"id\":\"28136\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5872\",\"product_code\":\"1905\",\"product_name\":\"OPTREX EYE WASH\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"87.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"28137\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5873\",\"product_code\":\"1906\",\"product_name\":\"MAXISPORON\",\"option_id\":null,\"net_unit_cost\":\"52.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"105.1000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.5500\",\"real_unit_cost\":\"52.5500\",\"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\":\"52.5500\"},{\"id\":\"28138\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5874\",\"product_code\":\"1907\",\"product_name\":\"E-NAT E\",\"option_id\":null,\"net_unit_cost\":\"37.9400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"37.9400\",\"real_unit_cost\":\"37.9400\",\"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\":\"37.9400\"},{\"id\":\"28139\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5875\",\"product_code\":\"1908\",\"product_name\":\"WELLOMAN 70+\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"28140\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5876\",\"product_code\":\"1909\",\"product_name\":\"WELLWOMAN PLUS\",\"option_id\":null,\"net_unit_cost\":\"26.9800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"26.9800\",\"real_unit_cost\":\"26.9800\",\"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\":\"26.9800\"},{\"id\":\"28141\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5877\",\"product_code\":\"1910\",\"product_name\":\"COX B\",\"option_id\":null,\"net_unit_cost\":\"15.4600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.9200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.4600\",\"real_unit_cost\":\"15.4600\",\"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\":\"15.4600\"},{\"id\":\"28142\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5878\",\"product_code\":\"1911\",\"product_name\":\"S\\/SEAS SRP\",\"option_id\":null,\"net_unit_cost\":\"39.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"39.0000\",\"real_unit_cost\":\"39.0000\",\"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\":\"39.0000\"},{\"id\":\"28143\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5879\",\"product_code\":\"1912\",\"product_name\":\"ASTIMIN\",\"option_id\":null,\"net_unit_cost\":\"8.8700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.4800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.8700\",\"real_unit_cost\":\"8.8700\",\"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\":\"8.8700\"},{\"id\":\"28144\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5880\",\"product_code\":\"1913\",\"product_name\":\"PERFECTIL PLATINUM\",\"option_id\":null,\"net_unit_cost\":\"41.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"41.0000\",\"real_unit_cost\":\"41.0000\",\"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\":\"41.0000\"},{\"id\":\"28145\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5881\",\"product_code\":\"1914\",\"product_name\":\"RELCER GEL\",\"option_id\":null,\"net_unit_cost\":\"47.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"95.1600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"47.5800\",\"real_unit_cost\":\"47.5800\",\"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\":\"47.5800\"},{\"id\":\"28146\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5882\",\"product_code\":\"1915\",\"product_name\":\"ABIDEC SRP\",\"option_id\":null,\"net_unit_cost\":\"40.2000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"40.2000\",\"real_unit_cost\":\"40.2000\",\"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\":\"40.2000\"},{\"id\":\"28147\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5883\",\"product_code\":\"1916\",\"product_name\":\"WELLBABY DROP\",\"option_id\":null,\"net_unit_cost\":\"33.0100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"165.0500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.0100\",\"real_unit_cost\":\"33.0100\",\"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\":\"33.0100\"},{\"id\":\"28148\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5884\",\"product_code\":\"1917\",\"product_name\":\"INFACOL\",\"option_id\":null,\"net_unit_cost\":\"1.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-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.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\":\"1.5000\"},{\"id\":\"28149\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5885\",\"product_code\":\"1918\",\"product_name\":\"PEVISON\",\"option_id\":null,\"net_unit_cost\":\"6.3300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.6200\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3300\",\"real_unit_cost\":\"6.3300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.3300\"},{\"id\":\"28150\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5886\",\"product_code\":\"1919\",\"product_name\":\"ROBB INH\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28151\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5887\",\"product_code\":\"1920\",\"product_name\":\"ZENTEL TAB\",\"option_id\":null,\"net_unit_cost\":\"25.8200\",\"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\":\"77.4600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.8200\",\"real_unit_cost\":\"25.8200\",\"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\":\"25.8200\"},{\"id\":\"28152\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5888\",\"product_code\":\"1921\",\"product_name\":\"APFLU\",\"option_id\":null,\"net_unit_cost\":\"36.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-180.0000\",\"quantity_balance\":\"-5.0000\",\"date\":\"2021-08-21\",\"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\":\"-5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"36.0000\"},{\"id\":\"28153\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5889\",\"product_code\":\"1922\",\"product_name\":\"BENILIN CHESTY\",\"option_id\":null,\"net_unit_cost\":\"33.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"33.0000\",\"real_unit_cost\":\"33.0000\",\"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\":\"33.0000\"},{\"id\":\"28154\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5890\",\"product_code\":\"1923\",\"product_name\":\"TYLENOL\",\"option_id\":null,\"net_unit_cost\":\"53.1600\",\"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\":\"159.4800\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"53.1600\",\"real_unit_cost\":\"53.1600\",\"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\":\"53.1600\"},{\"id\":\"28155\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5891\",\"product_code\":\"1924\",\"product_name\":\"ADVIL\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"28156\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5892\",\"product_code\":\"1925\",\"product_name\":\"ADDYZOA\",\"option_id\":null,\"net_unit_cost\":\"17.7200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.8800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.7200\",\"real_unit_cost\":\"17.7200\",\"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\":\"17.7200\"},{\"id\":\"28157\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5893\",\"product_code\":\"1926\",\"product_name\":\"CLARITHROMYCIN\",\"option_id\":null,\"net_unit_cost\":\"7.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.2000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.3500\",\"real_unit_cost\":\"7.3500\",\"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\":\"7.3500\"},{\"id\":\"28158\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5894\",\"product_code\":\"1927\",\"product_name\":\"TIGER SPRAY\",\"option_id\":null,\"net_unit_cost\":\"8.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"123.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.2000\",\"real_unit_cost\":\"8.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.2000\"},{\"id\":\"28159\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5895\",\"product_code\":\"1928\",\"product_name\":\"TIGER CAPS\",\"option_id\":null,\"net_unit_cost\":\"5.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8000\",\"real_unit_cost\":\"5.8000\",\"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\":\"5.8000\"},{\"id\":\"28160\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5896\",\"product_code\":\"1929\",\"product_name\":\"CYCLOGEST 200\",\"option_id\":null,\"net_unit_cost\":\"5.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\":\"15.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28161\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5897\",\"product_code\":\"1930\",\"product_name\":\"FEGLO B\",\"option_id\":null,\"net_unit_cost\":\"3.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.2000\"},{\"id\":\"28162\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5898\",\"product_code\":\"1931\",\"product_name\":\"SALO COLD SRP\",\"option_id\":null,\"net_unit_cost\":\"0.9500\",\"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\":\"2.8500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9500\",\"real_unit_cost\":\"0.9500\",\"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\":\"0.9500\"},{\"id\":\"28163\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5899\",\"product_code\":\"1932\",\"product_name\":\"PHLEBODIA\",\"option_id\":null,\"net_unit_cost\":\"0.8400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8400\",\"real_unit_cost\":\"0.8400\",\"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\":\"0.8400\"},{\"id\":\"28164\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5900\",\"product_code\":\"1933\",\"product_name\":\"PINPAC EXTRA\",\"option_id\":null,\"net_unit_cost\":\"3.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-7.3000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6500\",\"real_unit_cost\":\"3.6500\",\"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\":\"3.6500\"},{\"id\":\"28165\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5901\",\"product_code\":\"1934\",\"product_name\":\"OXAFEN\",\"option_id\":null,\"net_unit_cost\":\"40.9700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.9700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.9700\",\"real_unit_cost\":\"40.9700\",\"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\":\"40.9700\"},{\"id\":\"28166\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5902\",\"product_code\":\"1935\",\"product_name\":\"ZIRTEK TAB\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"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\":\"6.0000\"},{\"id\":\"28167\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5903\",\"product_code\":\"1936\",\"product_name\":\"ZIRTEK SLN\",\"option_id\":null,\"net_unit_cost\":\"9.1700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.1700\",\"real_unit_cost\":\"9.1700\",\"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\":\"9.1700\"},{\"id\":\"28168\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5904\",\"product_code\":\"1937\",\"product_name\":\"SALOCOLD TAB\",\"option_id\":null,\"net_unit_cost\":\"40.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.0000\",\"real_unit_cost\":\"40.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\":\"40.0000\"},{\"id\":\"28169\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5905\",\"product_code\":\"1938\",\"product_name\":\"ACEOUS CREAM\",\"option_id\":null,\"net_unit_cost\":\"11.9000\",\"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\":\"35.7000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9000\",\"real_unit_cost\":\"11.9000\",\"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\":\"11.9000\"},{\"id\":\"28170\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5906\",\"product_code\":\"1939\",\"product_name\":\"APPLE CID S\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"28171\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5907\",\"product_code\":\"1940\",\"product_name\":\"MUCOLEX J\",\"option_id\":null,\"net_unit_cost\":\"51.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.6000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"51.6000\",\"real_unit_cost\":\"51.6000\",\"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\":\"51.6000\"},{\"id\":\"28172\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5908\",\"product_code\":\"1941\",\"product_name\":\"MUCOLEX ADULT\",\"option_id\":null,\"net_unit_cost\":\"13.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\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"28173\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5909\",\"product_code\":\"1942\",\"product_name\":\"NIGHT NURSE SRP\",\"option_id\":null,\"net_unit_cost\":\"17.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.5000\",\"real_unit_cost\":\"17.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\":\"17.5000\"},{\"id\":\"28174\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5910\",\"product_code\":\"1943\",\"product_name\":\"DEEP HEAT 35\",\"option_id\":null,\"net_unit_cost\":\"20.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.5000\",\"real_unit_cost\":\"20.5000\",\"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\":\"20.5000\"},{\"id\":\"28175\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5911\",\"product_code\":\"1944\",\"product_name\":\"DEEP HEAT 67\",\"option_id\":null,\"net_unit_cost\":\"10.3800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.5200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.3800\",\"real_unit_cost\":\"10.3800\",\"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\":\"10.3800\"},{\"id\":\"28176\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5912\",\"product_code\":\"1945\",\"product_name\":\"COATERM12S\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"28177\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5913\",\"product_code\":\"1946\",\"product_name\":\"COATERM 6S\",\"option_id\":null,\"net_unit_cost\":\"16.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-21\",\"status\":\"received\",\"unit_cost\":\"16.5000\",\"real_unit_cost\":\"16.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\":\"16.5000\"},{\"id\":\"28178\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5914\",\"product_code\":\"1947\",\"product_name\":\"CANDIBIOTIC EAR\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28179\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5915\",\"product_code\":\"1948\",\"product_name\":\"GINSOMIN EVE\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28180\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5916\",\"product_code\":\"1949\",\"product_name\":\"GINSOMIN CAPS\",\"option_id\":null,\"net_unit_cost\":\"32.6600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"32.6600\",\"real_unit_cost\":\"32.6600\",\"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\":\"32.6600\"},{\"id\":\"28181\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5917\",\"product_code\":\"1950\",\"product_name\":\"LIVOLIN\",\"option_id\":null,\"net_unit_cost\":\"5.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.7500\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.7500\",\"real_unit_cost\":\"5.7500\",\"quantity_received\":null,\"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\":\"5.7500\"},{\"id\":\"28182\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5918\",\"product_code\":\"1951\",\"product_name\":\"GYNO DAK PESS\",\"option_id\":null,\"net_unit_cost\":\"1.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8000\",\"real_unit_cost\":\"1.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\":\"1.8000\"},{\"id\":\"28183\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5919\",\"product_code\":\"1952\",\"product_name\":\"FISHERMAN\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28184\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5920\",\"product_code\":\"1953\",\"product_name\":\"OMEPRZOLE NIMEP\",\"option_id\":null,\"net_unit_cost\":\"27.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"27.7000\",\"real_unit_cost\":\"27.7000\",\"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\":\"27.7000\"},{\"id\":\"28185\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5921\",\"product_code\":\"1954\",\"product_name\":\"FLUCOR  NIGHT\",\"option_id\":null,\"net_unit_cost\":\"4.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.8900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8900\",\"real_unit_cost\":\"4.8900\",\"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\":\"4.8900\"},{\"id\":\"28186\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5922\",\"product_code\":\"1955\",\"product_name\":\"TIXILIX\",\"option_id\":null,\"net_unit_cost\":\"1.4500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.4500\",\"real_unit_cost\":\"1.4500\",\"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\":\"1.4500\"},{\"id\":\"28187\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5923\",\"product_code\":\"1956\",\"product_name\":\"ENVICO\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"4.5000\"},{\"id\":\"28188\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5924\",\"product_code\":\"1957\",\"product_name\":\"EZIPEN\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"65.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"28189\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5925\",\"product_code\":\"1958\",\"product_name\":\"BENDRO 2.5\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28190\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5926\",\"product_code\":\"1959\",\"product_name\":\"ACIDOM\",\"option_id\":null,\"net_unit_cost\":\"34.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"69.3200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"34.6600\",\"real_unit_cost\":\"34.6600\",\"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\":\"34.6600\"},{\"id\":\"28191\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5927\",\"product_code\":\"1960\",\"product_name\":\"ACTIFED TAB\",\"option_id\":null,\"net_unit_cost\":\"4.9200\",\"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\":\"14.7600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9200\",\"real_unit_cost\":\"4.9200\",\"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\":\"4.9200\"},{\"id\":\"28192\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5928\",\"product_code\":\"1961\",\"product_name\":\"BENILIN ORG\",\"option_id\":null,\"net_unit_cost\":\"0.4700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.3900\",\"quantity_balance\":\"37.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4700\",\"real_unit_cost\":\"0.4700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"37.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4700\"},{\"id\":\"28193\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5929\",\"product_code\":\"1962\",\"product_name\":\"BELA COUGH\",\"option_id\":null,\"net_unit_cost\":\"33.8200\",\"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\":\"101.4600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.8200\",\"real_unit_cost\":\"33.8200\",\"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\":\"33.8200\"},{\"id\":\"28194\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5930\",\"product_code\":\"1963\",\"product_name\":\"ASMANOL\",\"option_id\":null,\"net_unit_cost\":\"27.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"55.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.9800\",\"real_unit_cost\":\"27.9800\",\"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\":\"27.9800\"},{\"id\":\"28195\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5931\",\"product_code\":\"1964\",\"product_name\":\"BENILIN INFANT\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"60.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5000\"},{\"id\":\"28196\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5932\",\"product_code\":\"1965\",\"product_name\":\"GAVISCON\",\"option_id\":null,\"net_unit_cost\":\"16.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"16.5000\",\"real_unit_cost\":\"16.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\":\"16.5000\"},{\"id\":\"28197\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5933\",\"product_code\":\"1966\",\"product_name\":\"TRANEXAMIC ACID\",\"option_id\":null,\"net_unit_cost\":\"39.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"39.0000\",\"real_unit_cost\":\"39.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\":\"39.0000\"},{\"id\":\"28198\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5934\",\"product_code\":\"1967\",\"product_name\":\"DEEP FREEZE OINT\",\"option_id\":null,\"net_unit_cost\":\"9.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.2000\",\"real_unit_cost\":\"9.2000\",\"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\":\"9.2000\"},{\"id\":\"28199\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5935\",\"product_code\":\"1968\",\"product_name\":\"DIABETONE\",\"option_id\":null,\"net_unit_cost\":\"15.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"15.3000\",\"real_unit_cost\":\"15.3000\",\"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\":\"15.3000\"},{\"id\":\"28200\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5936\",\"product_code\":\"1969\",\"product_name\":\"ATERSUNATE INJ      30MG\",\"option_id\":null,\"net_unit_cost\":\"18.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"18.5000\"},{\"id\":\"28201\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5937\",\"product_code\":\"1970\",\"product_name\":\"ARTESUNATE INJ 60\",\"option_id\":null,\"net_unit_cost\":\"28.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"170.5800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.4300\",\"real_unit_cost\":\"28.4300\",\"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\":\"28.4300\"},{\"id\":\"28202\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5938\",\"product_code\":\"1971\",\"product_name\":\"ARTESUNATE INJ 120MG\",\"option_id\":null,\"net_unit_cost\":\"0.6900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.7300\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6900\",\"real_unit_cost\":\"0.6900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6900\"},{\"id\":\"28203\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5939\",\"product_code\":\"1972\",\"product_name\":\"GALVUS MET 50\\/1000MG\",\"option_id\":null,\"net_unit_cost\":\"0.4700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"68.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.9600\",\"quantity_balance\":\"68.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4700\",\"real_unit_cost\":\"0.4700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"68.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4700\"},{\"id\":\"28204\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5940\",\"product_code\":\"1973\",\"product_name\":\"MAGACID TAB\",\"option_id\":null,\"net_unit_cost\":\"2.9600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"46.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"136.1600\",\"quantity_balance\":\"46.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9600\",\"real_unit_cost\":\"2.9600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"46.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.9600\"},{\"id\":\"28205\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5941\",\"product_code\":\"1974\",\"product_name\":\"ASMANOL\",\"option_id\":null,\"net_unit_cost\":\"16.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\":\"48.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"16.0000\"},{\"id\":\"28206\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5942\",\"product_code\":\"1975\",\"product_name\":\"M;B TAB\",\"option_id\":null,\"net_unit_cost\":\"10.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.1600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.2900\",\"real_unit_cost\":\"10.2900\",\"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\":\"10.2900\"},{\"id\":\"28207\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5943\",\"product_code\":\"1976\",\"product_name\":\"OPTIMOL EYE\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-15.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\":\"-15.0000\",\"date\":\"2021-08-21\",\"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\":\"-15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"28208\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5944\",\"product_code\":\"1977\",\"product_name\":\"DEXORANGE SRP\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"78.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.0000\"},{\"id\":\"28209\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5945\",\"product_code\":\"1978\",\"product_name\":\"ASPIRIN DISP\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28210\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5946\",\"product_code\":\"1979\",\"product_name\":\"PROPER PAD\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28211\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5947\",\"product_code\":\"1980\",\"product_name\":\"AQUEOS  BIG\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-52.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-114.4000\",\"quantity_balance\":\"-52.0000\",\"date\":\"2021-08-21\",\"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\":\"-52.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.2000\"},{\"id\":\"28212\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5948\",\"product_code\":\"1981\",\"product_name\":\"CHOCOLATE\",\"option_id\":null,\"net_unit_cost\":\"1.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.4000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6000\",\"real_unit_cost\":\"1.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.6000\"},{\"id\":\"28213\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5949\",\"product_code\":\"1982\",\"product_name\":\"SELECT STRIPS\",\"option_id\":null,\"net_unit_cost\":\"4.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.8200\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8200\",\"real_unit_cost\":\"4.8200\",\"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\":\"4.8200\"},{\"id\":\"28214\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5950\",\"product_code\":\"1983\",\"product_name\":\"GLUCOSE CHECK\",\"option_id\":null,\"net_unit_cost\":\"28.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"171.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.5000\",\"real_unit_cost\":\"28.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\":\"28.5000\"},{\"id\":\"28215\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5951\",\"product_code\":\"1984\",\"product_name\":\"EXETER PARA SRP\",\"option_id\":null,\"net_unit_cost\":\"48.9000\",\"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\":\"146.7000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"48.9000\",\"real_unit_cost\":\"48.9000\",\"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\":\"48.9000\"},{\"id\":\"28216\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5952\",\"product_code\":\"1985\",\"product_name\":\"AMOKSIKLAV 1G\",\"option_id\":null,\"net_unit_cost\":\"4.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.9800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9800\",\"real_unit_cost\":\"4.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\":\"4.9800\"},{\"id\":\"28217\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5953\",\"product_code\":\"1986\",\"product_name\":\"AVAMYS\",\"option_id\":null,\"net_unit_cost\":\"5.8100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8100\",\"real_unit_cost\":\"5.8100\",\"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\":\"5.8100\"},{\"id\":\"28218\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5954\",\"product_code\":\"1987\",\"product_name\":\"HYDROGEN ECL\",\"option_id\":null,\"net_unit_cost\":\"29.1700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.1700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.1700\",\"real_unit_cost\":\"29.1700\",\"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\":\"29.1700\"},{\"id\":\"28219\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5955\",\"product_code\":\"1988\",\"product_name\":\"METOCLOPRAMIDE\",\"option_id\":null,\"net_unit_cost\":\"8.7900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"52.7400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.7900\",\"real_unit_cost\":\"8.7900\",\"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\":\"8.7900\"},{\"id\":\"28220\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5956\",\"product_code\":\"1989\",\"product_name\":\"FLAGYL ORG SUSP\",\"option_id\":null,\"net_unit_cost\":\"7.7400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.7400\",\"real_unit_cost\":\"7.7400\",\"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\":\"7.7400\"},{\"id\":\"28221\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5957\",\"product_code\":\"1990\",\"product_name\":\"LG GLIZONE 15MG\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"34.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"221.0000\",\"quantity_balance\":\"34.0000\",\"date\":\"2021-08-21\",\"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\":\"34.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28222\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5958\",\"product_code\":\"1991\",\"product_name\":\"AMOXIL SUSP UK\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"28223\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5959\",\"product_code\":\"1992\",\"product_name\":\"LYRICA 75\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28224\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5960\",\"product_code\":\"1993\",\"product_name\":\"BRUFEN SRP\",\"option_id\":null,\"net_unit_cost\":\"9.5500\",\"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\":\"28.6500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.5500\",\"real_unit_cost\":\"9.5500\",\"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\":\"9.5500\"},{\"id\":\"28225\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5961\",\"product_code\":\"1994\",\"product_name\":\"DRAGON SPRAY\",\"option_id\":null,\"net_unit_cost\":\"3.2800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.2000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.2800\",\"real_unit_cost\":\"3.2800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.2800\"},{\"id\":\"28226\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5962\",\"product_code\":\"1995\",\"product_name\":\"KIDICS SRP\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28227\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5963\",\"product_code\":\"1996\",\"product_name\":\"INOPRIL\",\"option_id\":null,\"net_unit_cost\":\"6.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28228\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5964\",\"product_code\":\"1997\",\"product_name\":\"MYCOSTAT\",\"option_id\":null,\"net_unit_cost\":\"11.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.5000\"},{\"id\":\"28229\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5965\",\"product_code\":\"1998\",\"product_name\":\"A-L FORTE\",\"option_id\":null,\"net_unit_cost\":\"0.4100\",\"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\":\"1.2300\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4100\",\"real_unit_cost\":\"0.4100\",\"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\":\"0.4100\"},{\"id\":\"28230\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5966\",\"product_code\":\"1999\",\"product_name\":\"SCHIMETER SUSP\",\"option_id\":null,\"net_unit_cost\":\"0.2900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.2900\",\"real_unit_cost\":\"0.2900\",\"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\":\"0.2900\"},{\"id\":\"28231\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5967\",\"product_code\":\"2000\",\"product_name\":\"BENDRO 5 LOCAL\",\"option_id\":null,\"net_unit_cost\":\"2.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.9000\",\"real_unit_cost\":\"2.9000\",\"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\":\"2.9000\"},{\"id\":\"28232\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5968\",\"product_code\":\"2001\",\"product_name\":\"BENDRO 2.5 LOCAL\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"125.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"28233\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5969\",\"product_code\":\"2002\",\"product_name\":\"GLUCOSE INFUSION\",\"option_id\":null,\"net_unit_cost\":\"11.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"59.7500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9500\",\"real_unit_cost\":\"11.9500\",\"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\":\"11.9500\"},{\"id\":\"28234\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5970\",\"product_code\":\"2003\",\"product_name\":\"LACTOGEN 1@2\",\"option_id\":null,\"net_unit_cost\":\"0.7700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"43.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.1100\",\"quantity_balance\":\"43.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7700\",\"real_unit_cost\":\"0.7700\",\"quantity_received\":null,\"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\":\"0.7700\"},{\"id\":\"28235\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5971\",\"product_code\":\"2004\",\"product_name\":\"METROLEX F SUSP\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\"},{\"id\":\"28236\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5972\",\"product_code\":\"2005\",\"product_name\":\"TETRA CAPS\",\"option_id\":null,\"net_unit_cost\":\"14.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\":\"-42.0000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"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\":\"-3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"28237\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5973\",\"product_code\":\"2006\",\"product_name\":\"SAVLON 125\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28238\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5974\",\"product_code\":\"2007\",\"product_name\":\"SAVLON 250\",\"option_id\":null,\"net_unit_cost\":\"20.2600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"101.3000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.2600\",\"real_unit_cost\":\"20.2600\",\"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\":\"20.2600\"},{\"id\":\"28239\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5975\",\"product_code\":\"2008\",\"product_name\":\"MENSTRUAL CYC\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28240\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5976\",\"product_code\":\"2009\",\"product_name\":\"MENTAT SRP\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"152.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"28241\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5977\",\"product_code\":\"2010\",\"product_name\":\"NURIFER SRP\",\"option_id\":null,\"net_unit_cost\":\"8.8800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.8800\",\"real_unit_cost\":\"8.8800\",\"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\":\"8.8800\"},{\"id\":\"28242\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5978\",\"product_code\":\"2011\",\"product_name\":\"INFA-V PESS\",\"option_id\":null,\"net_unit_cost\":\"7.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.7000\",\"real_unit_cost\":\"7.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\":\"7.7000\"},{\"id\":\"28243\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5979\",\"product_code\":\"2012\",\"product_name\":\"LOSATAN 50 EXETER\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"76.0000\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"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\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28244\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5980\",\"product_code\":\"2013\",\"product_name\":\"TIMOL EYE\",\"option_id\":null,\"net_unit_cost\":\"8.7800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.7800\",\"real_unit_cost\":\"8.7800\",\"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\":\"8.7800\"},{\"id\":\"28245\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5981\",\"product_code\":\"2014\",\"product_name\":\"OVACARE\",\"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-21\",\"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\":\"28246\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5982\",\"product_code\":\"2015\",\"product_name\":\"OSTEOCALIN\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"46.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"156.4000\",\"quantity_balance\":\"46.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"46.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.4000\"},{\"id\":\"28247\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5983\",\"product_code\":\"2016\",\"product_name\":\"NEUROZAN\",\"option_id\":null,\"net_unit_cost\":\"15.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.9900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.9900\",\"real_unit_cost\":\"15.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\":\"15.9900\"},{\"id\":\"28248\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5984\",\"product_code\":\"2017\",\"product_name\":\"ENTEROGEMINA\",\"option_id\":null,\"net_unit_cost\":\"7.6800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.0800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.6800\",\"real_unit_cost\":\"7.6800\",\"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\":\"7.6800\"},{\"id\":\"28249\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5985\",\"product_code\":\"2018\",\"product_name\":\"PROMAN\",\"option_id\":null,\"net_unit_cost\":\"52.2000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"52.2000\",\"real_unit_cost\":\"52.2000\",\"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\":\"52.2000\"},{\"id\":\"28250\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5986\",\"product_code\":\"2019\",\"product_name\":\"VISCOF\",\"option_id\":null,\"net_unit_cost\":\"1.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"112.0000\",\"quantity_balance\":\"70.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6000\",\"real_unit_cost\":\"1.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"70.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.6000\"},{\"id\":\"28251\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5987\",\"product_code\":\"2020\",\"product_name\":\"CIALIS\",\"option_id\":null,\"net_unit_cost\":\"26.9500\",\"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\":\"80.8500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.9500\",\"real_unit_cost\":\"26.9500\",\"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\":\"26.9500\"},{\"id\":\"28252\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5988\",\"product_code\":\"2021\",\"product_name\":\"CHLO CAPS\",\"option_id\":null,\"net_unit_cost\":\"21.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"21.7000\",\"real_unit_cost\":\"21.7000\",\"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\":\"21.7000\"},{\"id\":\"28253\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5989\",\"product_code\":\"2022\",\"product_name\":\"NEOVITA CAPS\",\"option_id\":null,\"net_unit_cost\":\"1.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.7000\",\"real_unit_cost\":\"1.7000\",\"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\":\"1.7000\"},{\"id\":\"28254\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5990\",\"product_code\":\"2023\",\"product_name\":\"LYNUS OINT\",\"option_id\":null,\"net_unit_cost\":\"3.4800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4800\",\"real_unit_cost\":\"3.4800\",\"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\":\"3.4800\"},{\"id\":\"28255\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5991\",\"product_code\":\"2024\",\"product_name\":\"GILOBA\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"84.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"252.0000\",\"quantity_balance\":\"84.0000\",\"date\":\"2021-08-21\",\"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\":\"84.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28256\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5992\",\"product_code\":\"2025\",\"product_name\":\"LISINOPRIL 5 TEVA\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"28257\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5993\",\"product_code\":\"2026\",\"product_name\":\"CRESTOR 10\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"85.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.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\":\"17.0000\"},{\"id\":\"28258\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5994\",\"product_code\":\"2027\",\"product_name\":\"DIGOXIN 125\",\"option_id\":null,\"net_unit_cost\":\"2.9700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.9700\",\"real_unit_cost\":\"2.9700\",\"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\":\"2.9700\"},{\"id\":\"28259\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5995\",\"product_code\":\"2028\",\"product_name\":\"DIGOXIN 250\",\"option_id\":null,\"net_unit_cost\":\"84.9400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"84.9400\",\"real_unit_cost\":\"84.9400\",\"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\":\"84.9400\"},{\"id\":\"28260\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5996\",\"product_code\":\"2029\",\"product_name\":\"FLAGL SRP M*G\",\"option_id\":null,\"net_unit_cost\":\"14.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.9000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.9000\",\"real_unit_cost\":\"14.9000\",\"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\":\"14.9000\"},{\"id\":\"28261\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5997\",\"product_code\":\"2030\",\"product_name\":\"ORELOX SUSP\",\"option_id\":null,\"net_unit_cost\":\"17.8300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"17.8300\",\"real_unit_cost\":\"17.8300\",\"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\":\"17.8300\"},{\"id\":\"28262\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5998\",\"product_code\":\"2031\",\"product_name\":\"STOMOCAIN\",\"option_id\":null,\"net_unit_cost\":\"2.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"108.0000\",\"quantity_balance\":\"45.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4000\",\"real_unit_cost\":\"2.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"45.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.4000\"},{\"id\":\"28263\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"5999\",\"product_code\":\"2032\",\"product_name\":\"LIMZER\",\"option_id\":null,\"net_unit_cost\":\"10.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.5000\"},{\"id\":\"28264\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6000\",\"product_code\":\"2033\",\"product_name\":\"CEBROTONIN\",\"option_id\":null,\"net_unit_cost\":\"29.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-21\",\"status\":\"received\",\"unit_cost\":\"29.5000\",\"real_unit_cost\":\"29.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\":\"29.5000\"},{\"id\":\"28265\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6001\",\"product_code\":\"2034\",\"product_name\":\"JUNIOR BRUFN SRP\",\"option_id\":null,\"net_unit_cost\":\"17.8000\",\"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\":\"53.4000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.8000\",\"real_unit_cost\":\"17.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\":\"17.8000\"},{\"id\":\"28266\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6002\",\"product_code\":\"2035\",\"product_name\":\"MAALOX PLUS\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28267\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6003\",\"product_code\":\"2036\",\"product_name\":\"SWEETEX\",\"option_id\":null,\"net_unit_cost\":\"57.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"57.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"57.5000\",\"real_unit_cost\":\"57.5000\",\"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\":\"57.5000\"},{\"id\":\"28268\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6004\",\"product_code\":\"2037\",\"product_name\":\"CANDEREL\",\"option_id\":null,\"net_unit_cost\":\"1.5100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.1000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5100\",\"real_unit_cost\":\"1.5100\",\"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\":\"1.5100\"},{\"id\":\"28269\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6005\",\"product_code\":\"2038\",\"product_name\":\"SERETIDE 50\\/100\",\"option_id\":null,\"net_unit_cost\":\"31.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"125.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"31.4000\",\"real_unit_cost\":\"31.4000\",\"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\":\"31.4000\"},{\"id\":\"28270\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6006\",\"product_code\":\"2039\",\"product_name\":\"LETAMOL\",\"option_id\":null,\"net_unit_cost\":\"90.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"180.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"90.0000\",\"real_unit_cost\":\"90.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\":\"90.0000\"},{\"id\":\"28271\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6007\",\"product_code\":\"2040\",\"product_name\":\"CARDIOACE\",\"option_id\":null,\"net_unit_cost\":\"33.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"33.0000\",\"real_unit_cost\":\"33.0000\",\"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\":\"33.0000\"},{\"id\":\"28272\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6008\",\"product_code\":\"2041\",\"product_name\":\"OSTECARE PLUS\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"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\":\"2.0000\"},{\"id\":\"28273\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6009\",\"product_code\":\"2042\",\"product_name\":\"XYLO ACINO INFANT\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"28274\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6010\",\"product_code\":\"2043\",\"product_name\":\"BACTIGEL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28275\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6011\",\"product_code\":\"2044\",\"product_name\":\"SASSO SPRAY\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28276\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6012\",\"product_code\":\"2045\",\"product_name\":\"MOSQUITOE REPP\",\"option_id\":null,\"net_unit_cost\":\"0.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8000\",\"real_unit_cost\":\"0.8000\",\"quantity_received\":null,\"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.8000\"},{\"id\":\"28277\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6013\",\"product_code\":\"2046\",\"product_name\":\"SANITIZER B\\/S\",\"option_id\":null,\"net_unit_cost\":\"7.8800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.8800\",\"real_unit_cost\":\"7.8800\",\"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\":\"7.8800\"},{\"id\":\"28278\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6014\",\"product_code\":\"2047\",\"product_name\":\"ESSENTIAL EMBR\",\"option_id\":null,\"net_unit_cost\":\"24.5300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.0600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"24.5300\",\"real_unit_cost\":\"24.5300\",\"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\":\"24.5300\"},{\"id\":\"28279\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6015\",\"product_code\":\"2048\",\"product_name\":\"OSTECARE LOCAL TAB\",\"option_id\":null,\"net_unit_cost\":\"35.9200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.9200\",\"real_unit_cost\":\"35.9200\",\"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\":\"35.9200\"},{\"id\":\"28280\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6016\",\"product_code\":\"2049\",\"product_name\":\"SILVERDERMA\",\"option_id\":null,\"net_unit_cost\":\"29.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-58.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.0000\",\"real_unit_cost\":\"29.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\":\"29.0000\"},{\"id\":\"28281\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6017\",\"product_code\":\"2050\",\"product_name\":\"PROXIMEXA SUSP\",\"option_id\":null,\"net_unit_cost\":\"8.4500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.4500\",\"real_unit_cost\":\"8.4500\",\"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\":\"8.4500\"},{\"id\":\"28282\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6018\",\"product_code\":\"2051\",\"product_name\":\"PEPTO S\\/S\",\"option_id\":null,\"net_unit_cost\":\"6.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.8800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9800\",\"real_unit_cost\":\"6.9800\",\"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\":\"6.9800\"},{\"id\":\"28283\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6019\",\"product_code\":\"2052\",\"product_name\":\"DUROL 300ML\",\"option_id\":null,\"net_unit_cost\":\"4.7200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.6000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.7200\",\"real_unit_cost\":\"4.7200\",\"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\":\"4.7200\"},{\"id\":\"28284\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6020\",\"product_code\":\"2053\",\"product_name\":\"MALAR 2 FORTE\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"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\":\"5.0000\"},{\"id\":\"28285\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6021\",\"product_code\":\"2054\",\"product_name\":\"AMCOF ADULT\",\"option_id\":null,\"net_unit_cost\":\"5.2600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.3000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2600\",\"real_unit_cost\":\"5.2600\",\"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\":\"5.2600\"},{\"id\":\"28286\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6022\",\"product_code\":\"2055\",\"product_name\":\"AMCOF BABY\",\"option_id\":null,\"net_unit_cost\":\"13.9000\",\"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\":\"41.7000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.9000\",\"real_unit_cost\":\"13.9000\",\"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\":\"13.9000\"},{\"id\":\"28287\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6023\",\"product_code\":\"2056\",\"product_name\":\"AMCOF JUNIOR\",\"option_id\":null,\"net_unit_cost\":\"29.3500\",\"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\":\"88.0500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.3500\",\"real_unit_cost\":\"29.3500\",\"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\":\"29.3500\"},{\"id\":\"28288\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6024\",\"product_code\":\"2057\",\"product_name\":\"GYNO MYCOLEX PESS\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28289\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6025\",\"product_code\":\"2058\",\"product_name\":\"ANUSOL OINT\",\"option_id\":null,\"net_unit_cost\":\"9.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.7500\",\"real_unit_cost\":\"9.7500\",\"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\":\"9.7500\"},{\"id\":\"28290\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6026\",\"product_code\":\"2059\",\"product_name\":\"FATWIKEKE\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28291\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6027\",\"product_code\":\"2060\",\"product_name\":\"DERMACOT CREM\",\"option_id\":null,\"net_unit_cost\":\"6.0500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.0500\",\"real_unit_cost\":\"6.0500\",\"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\":\"6.0500\"},{\"id\":\"28292\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6028\",\"product_code\":\"2061\",\"product_name\":\"COTTON 100\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28293\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6029\",\"product_code\":\"2062\",\"product_name\":\"DICLOLEX CREAM\",\"option_id\":null,\"net_unit_cost\":\"84.7900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"84.7900\",\"real_unit_cost\":\"84.7900\",\"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\":\"84.7900\"},{\"id\":\"28294\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6030\",\"product_code\":\"2063\",\"product_name\":\"CAMPHOR\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28295\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6031\",\"product_code\":\"2064\",\"product_name\":\"ZINNAT SUSP 100MLS\",\"option_id\":null,\"net_unit_cost\":\"3.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.8000\",\"real_unit_cost\":\"3.8000\",\"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\":\"3.8000\"},{\"id\":\"28296\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6032\",\"product_code\":\"2065\",\"product_name\":\"CALAMINE OINT\",\"option_id\":null,\"net_unit_cost\":\"28.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.0000\",\"real_unit_cost\":\"28.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\":\"28.0000\"},{\"id\":\"28297\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6033\",\"product_code\":\"2066\",\"product_name\":\"HAEMOGLOBIN ARTN\",\"option_id\":null,\"net_unit_cost\":\"34.0200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"34.0200\",\"real_unit_cost\":\"34.0200\",\"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\":\"34.0200\"},{\"id\":\"28298\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6034\",\"product_code\":\"2067\",\"product_name\":\"MINAMINO\",\"option_id\":null,\"net_unit_cost\":\"4.5100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.5100\",\"real_unit_cost\":\"4.5100\",\"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\":\"4.5100\"},{\"id\":\"28299\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6035\",\"product_code\":\"2068\",\"product_name\":\"MAALOX  PLUS\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"4.5000\"},{\"id\":\"28300\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6036\",\"product_code\":\"2069\",\"product_name\":\"DITHRANOL\",\"option_id\":null,\"net_unit_cost\":\"38.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"425.1500\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"38.6500\",\"real_unit_cost\":\"38.6500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"38.6500\"},{\"id\":\"28301\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6037\",\"product_code\":\"2070\",\"product_name\":\"WHITEFEILD\",\"option_id\":null,\"net_unit_cost\":\"27.9400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"139.7000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.9400\",\"real_unit_cost\":\"27.9400\",\"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\":\"27.9400\"},{\"id\":\"28302\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6038\",\"product_code\":\"2071\",\"product_name\":\"AUGMENTIN 1G\",\"option_id\":null,\"net_unit_cost\":\"1.9300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.9300\",\"real_unit_cost\":\"1.9300\",\"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\":\"1.9300\"},{\"id\":\"28303\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6039\",\"product_code\":\"2072\",\"product_name\":\"AUGMENTIN 228\",\"option_id\":null,\"net_unit_cost\":\"0.1400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"118.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.5200\",\"quantity_balance\":\"118.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1400\",\"real_unit_cost\":\"0.1400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"118.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.1400\"},{\"id\":\"28304\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6040\",\"product_code\":\"2073\",\"product_name\":\"ALKA SELTZER\",\"option_id\":null,\"net_unit_cost\":\"0.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"61.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.5200\",\"quantity_balance\":\"61.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3200\",\"real_unit_cost\":\"0.3200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"61.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3200\"},{\"id\":\"28305\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6041\",\"product_code\":\"2074\",\"product_name\":\"PIRITON LOCAL\",\"option_id\":null,\"net_unit_cost\":\"12.3000\",\"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\":\"-36.9000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.3000\",\"real_unit_cost\":\"12.3000\",\"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\":\"12.3000\"},{\"id\":\"28306\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6042\",\"product_code\":\"2075\",\"product_name\":\"SALBUTAMOL TAB\",\"option_id\":null,\"net_unit_cost\":\"65.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"65.0000\",\"real_unit_cost\":\"65.0000\",\"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\":\"65.0000\"},{\"id\":\"28307\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6043\",\"product_code\":\"2076\",\"product_name\":\"\",\"option_id\":null,\"net_unit_cost\":\"25.3100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.3100\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.3100\",\"real_unit_cost\":\"25.3100\",\"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\":\"25.3100\"},{\"id\":\"28308\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6044\",\"product_code\":\"2077\",\"product_name\":\"BACTROBAN\",\"option_id\":null,\"net_unit_cost\":\"17.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.8000\",\"real_unit_cost\":\"17.8000\",\"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\":\"17.8000\"},{\"id\":\"28309\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6045\",\"product_code\":\"2078\",\"product_name\":\"SUPIROCIN\",\"option_id\":null,\"net_unit_cost\":\"18.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.7000\",\"real_unit_cost\":\"18.7000\",\"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\":\"18.7000\"},{\"id\":\"28310\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6046\",\"product_code\":\"2079\",\"product_name\":\"BUSYLIFESTYLE\",\"option_id\":null,\"net_unit_cost\":\"19.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.2000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.2000\",\"real_unit_cost\":\"19.2000\",\"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\":\"19.2000\"},{\"id\":\"28311\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6047\",\"product_code\":\"2080\",\"product_name\":\"GLUCOSAMINE\",\"option_id\":null,\"net_unit_cost\":\"3.3900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.3900\",\"real_unit_cost\":\"3.3900\",\"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\":\"3.3900\"},{\"id\":\"28312\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6048\",\"product_code\":\"2081\",\"product_name\":\"PROWOMAN\",\"option_id\":null,\"net_unit_cost\":\"20.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.5000\",\"real_unit_cost\":\"20.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\":\"20.5000\"},{\"id\":\"28313\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6049\",\"product_code\":\"2082\",\"product_name\":\"\",\"option_id\":null,\"net_unit_cost\":\"16.3900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.3900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"16.3900\",\"real_unit_cost\":\"16.3900\",\"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\":\"16.3900\"},{\"id\":\"28314\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6050\",\"product_code\":\"2083\",\"product_name\":\"OTRIVIN ADULT\",\"option_id\":null,\"net_unit_cost\":\"4.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9000\",\"real_unit_cost\":\"4.9000\",\"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\":\"4.9000\"},{\"id\":\"28315\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6051\",\"product_code\":\"2084\",\"product_name\":\"OTRIVIN CHILD\",\"option_id\":null,\"net_unit_cost\":\"3.1200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"43.6800\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1200\",\"real_unit_cost\":\"3.1200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.1200\"},{\"id\":\"28316\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6052\",\"product_code\":\"2085\",\"product_name\":\"CARBOZAP JUNIOR\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28317\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6053\",\"product_code\":\"2086\",\"product_name\":\"PROCOLD\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"119.6000\",\"quantity_balance\":\"26.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.6000\"},{\"id\":\"28318\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6054\",\"product_code\":\"2087\",\"product_name\":\"ENACIN 300\",\"option_id\":null,\"net_unit_cost\":\"16.2000\",\"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\":\"48.6000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"16.2000\",\"real_unit_cost\":\"16.2000\",\"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\":\"16.2000\"},{\"id\":\"28319\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6055\",\"product_code\":\"2088\",\"product_name\":\"ZINCOFER CAPS\",\"option_id\":null,\"net_unit_cost\":\"5.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2500\",\"real_unit_cost\":\"5.2500\",\"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\":\"5.2500\"},{\"id\":\"28320\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6056\",\"product_code\":\"2089\",\"product_name\":\"HILADY\",\"option_id\":null,\"net_unit_cost\":\"7.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9800\",\"real_unit_cost\":\"7.9800\",\"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\":\"7.9800\"},{\"id\":\"28321\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6057\",\"product_code\":\"2090\",\"product_name\":\"LEOPARD OINT\",\"option_id\":null,\"net_unit_cost\":\"1.4600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.7400\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.4600\",\"real_unit_cost\":\"1.4600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.4600\"},{\"id\":\"28322\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6058\",\"product_code\":\"2091\",\"product_name\":\"ODYMIN\",\"option_id\":null,\"net_unit_cost\":\"3.9900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.9900\",\"real_unit_cost\":\"3.9900\",\"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\":\"3.9900\"},{\"id\":\"28323\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6059\",\"product_code\":\"2092\",\"product_name\":\"GEBEDOL FORTE\",\"option_id\":null,\"net_unit_cost\":\"40.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-40.7000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.7000\",\"real_unit_cost\":\"40.7000\",\"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\":\"40.7000\"},{\"id\":\"28324\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6060\",\"product_code\":\"2093\",\"product_name\":\"MEDSOMOX SUSP\",\"option_id\":null,\"net_unit_cost\":\"4.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.4500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8900\",\"real_unit_cost\":\"4.8900\",\"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\":\"4.8900\"},{\"id\":\"28325\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6061\",\"product_code\":\"2094\",\"product_name\":\"CRESTOR 5\",\"option_id\":null,\"net_unit_cost\":\"1.9400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"1.9400\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9400\",\"real_unit_cost\":\"1.9400\",\"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\":\"1.9400\"},{\"id\":\"28326\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6062\",\"product_code\":\"2095\",\"product_name\":\"SUNLIGHT S\\/S\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"12.5000\"},{\"id\":\"28327\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6063\",\"product_code\":\"2096\",\"product_name\":\"MEDISOFT\",\"option_id\":null,\"net_unit_cost\":\"5.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4000\",\"real_unit_cost\":\"5.4000\",\"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\":\"5.4000\"},{\"id\":\"28328\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6064\",\"product_code\":\"2097\",\"product_name\":\"LUCOZADE B\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\"},{\"id\":\"28329\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6065\",\"product_code\":\"2098\",\"product_name\":\"MALIN ADULT\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.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\":\"-1.0000\",\"date\":\"2021-08-21\",\"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\":\"-1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"28330\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6066\",\"product_code\":\"2099\",\"product_name\":\"SORE DRESING\",\"option_id\":null,\"net_unit_cost\":\"0.2200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"83.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.2600\",\"quantity_balance\":\"83.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2200\",\"real_unit_cost\":\"0.2200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"83.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2200\"},{\"id\":\"28331\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6067\",\"product_code\":\"2100\",\"product_name\":\"SELECT STRIPS\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"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\":\"4.4000\"},{\"id\":\"28332\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6068\",\"product_code\":\"2101\",\"product_name\":\"FOLIC ACID LOCAL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28333\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6069\",\"product_code\":\"2102\",\"product_name\":\"KAMAGRA JELLY\",\"option_id\":null,\"net_unit_cost\":\"2.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"62.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"148.8000\",\"quantity_balance\":\"62.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4000\",\"real_unit_cost\":\"2.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"62.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.4000\"},{\"id\":\"28334\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6070\",\"product_code\":\"2103\",\"product_name\":\"SHALCIP TZ\",\"option_id\":null,\"net_unit_cost\":\"81.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"81.9100\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"81.9100\",\"real_unit_cost\":\"81.9100\",\"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\":\"81.9100\"},{\"id\":\"28335\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6071\",\"product_code\":\"2104\",\"product_name\":\"ENACEF 500\",\"option_id\":null,\"net_unit_cost\":\"0.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"112.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"89.6000\",\"quantity_balance\":\"112.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8000\",\"real_unit_cost\":\"0.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"112.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8000\"},{\"id\":\"28336\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6072\",\"product_code\":\"2105\",\"product_name\":\"PREGNCARE BRESTF\",\"option_id\":null,\"net_unit_cost\":\"0.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"43.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.1300\",\"quantity_balance\":\"43.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9100\",\"real_unit_cost\":\"0.9100\",\"quantity_received\":null,\"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\":\"0.9100\"},{\"id\":\"28337\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6073\",\"product_code\":\"2106\",\"product_name\":\"AMPICILIN CAPS\",\"option_id\":null,\"net_unit_cost\":\"1.0800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.7200\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.0800\",\"real_unit_cost\":\"1.0800\",\"quantity_received\":null,\"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\":\"1.0800\"},{\"id\":\"28338\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6074\",\"product_code\":\"2107\",\"product_name\":\"CLOXACILLIN CAPS\",\"option_id\":null,\"net_unit_cost\":\"14.3900\",\"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\":\"43.1700\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.3900\",\"real_unit_cost\":\"14.3900\",\"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\":\"14.3900\"},{\"id\":\"28339\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6075\",\"product_code\":\"2108\",\"product_name\":\"VOLTIC M\\/S\",\"option_id\":null,\"net_unit_cost\":\"13.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.9500\",\"real_unit_cost\":\"13.9500\",\"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\":\"13.9500\"},{\"id\":\"28340\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6076\",\"product_code\":\"2109\",\"product_name\":\"METFOMIN DENK 1000\",\"option_id\":null,\"net_unit_cost\":\"42.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"42.0000\",\"real_unit_cost\":\"42.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\":\"42.0000\"},{\"id\":\"28341\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6077\",\"product_code\":\"2110\",\"product_name\":\"LEXPORIN POWDER\",\"option_id\":null,\"net_unit_cost\":\"11.0500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"99.4500\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.0500\",\"real_unit_cost\":\"11.0500\",\"quantity_received\":null,\"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\":\"11.0500\"},{\"id\":\"28342\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6078\",\"product_code\":\"2111\",\"product_name\":\"PROCOMIL SPRAY\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28343\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6079\",\"product_code\":\"2112\",\"product_name\":\"PROCMIL TAB\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28344\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6080\",\"product_code\":\"2113\",\"product_name\":\"STOPKOF CHILD\",\"option_id\":null,\"net_unit_cost\":\"25.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-25.8000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.8000\",\"real_unit_cost\":\"25.8000\",\"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\":\"25.8000\"},{\"id\":\"28345\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6081\",\"product_code\":\"2114\",\"product_name\":\"MALIN JUNIOR\",\"option_id\":null,\"net_unit_cost\":\"31.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"127.2800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"31.8200\",\"real_unit_cost\":\"31.8200\",\"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\":\"31.8200\"},{\"id\":\"28346\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6082\",\"product_code\":\"2115\",\"product_name\":\"FLAGYL ORG SRP\",\"option_id\":null,\"net_unit_cost\":\"62.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"62.2000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"62.2000\",\"real_unit_cost\":\"62.2000\",\"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\":\"62.2000\"},{\"id\":\"28347\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6083\",\"product_code\":\"2116\",\"product_name\":\"VISIONACE\",\"option_id\":null,\"net_unit_cost\":\"53.3100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"53.3100\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"53.3100\",\"real_unit_cost\":\"53.3100\",\"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\":\"53.3100\"},{\"id\":\"28348\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6084\",\"product_code\":\"2117\",\"product_name\":\"WELLMAN CONCEPTION\",\"option_id\":null,\"net_unit_cost\":\"7.2700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.5400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.2700\",\"real_unit_cost\":\"7.2700\",\"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\":\"7.2700\"},{\"id\":\"28349\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6085\",\"product_code\":\"2118\",\"product_name\":\"CELEBREX\",\"option_id\":null,\"net_unit_cost\":\"6.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"81.7700\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.2900\",\"real_unit_cost\":\"6.2900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.2900\"},{\"id\":\"28350\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6086\",\"product_code\":\"2119\",\"product_name\":\"OMEGA OIL\",\"option_id\":null,\"net_unit_cost\":\"10.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"10.5500\",\"real_unit_cost\":\"10.5500\",\"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.5500\"},{\"id\":\"28351\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6087\",\"product_code\":\"2120\",\"product_name\":\"ROUGH RIDER\",\"option_id\":null,\"net_unit_cost\":\"8.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.3000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.5500\",\"real_unit_cost\":\"8.5500\",\"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\":\"8.5500\"},{\"id\":\"28352\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6088\",\"product_code\":\"2121\",\"product_name\":\"GV FLUC SUSP\",\"option_id\":null,\"net_unit_cost\":\"0.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"46.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.7200\",\"quantity_balance\":\"46.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3200\",\"real_unit_cost\":\"0.3200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"46.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3200\"},{\"id\":\"28353\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6089\",\"product_code\":\"2122\",\"product_name\":\"GYPRONE SRP\",\"option_id\":null,\"net_unit_cost\":\"1.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.8800\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6600\",\"real_unit_cost\":\"1.6600\",\"quantity_received\":null,\"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\":\"1.6600\"},{\"id\":\"28354\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6090\",\"product_code\":\"2123\",\"product_name\":\"INDOCID\",\"option_id\":null,\"net_unit_cost\":\"9.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8000\",\"real_unit_cost\":\"9.8000\",\"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\":\"9.8000\"},{\"id\":\"28355\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6091\",\"product_code\":\"2124\",\"product_name\":\"OSONS COD LIVER\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\"},{\"id\":\"28356\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6092\",\"product_code\":\"2125\",\"product_name\":\"SUPER APETI SRP\",\"option_id\":null,\"net_unit_cost\":\"2.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.9500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9500\",\"real_unit_cost\":\"2.9500\",\"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\":\"2.9500\"},{\"id\":\"28357\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6093\",\"product_code\":\"2126\",\"product_name\":\"APDYL -H COUGH S\'S\",\"option_id\":null,\"net_unit_cost\":\"0.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"78.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.6000\",\"quantity_balance\":\"78.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2000\",\"real_unit_cost\":\"0.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"78.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2000\"},{\"id\":\"28358\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6094\",\"product_code\":\"2127\",\"product_name\":\"PAINGAY\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-65.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\":\"-65.0000\",\"date\":\"2021-08-21\",\"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\":\"-65.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"28359\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6095\",\"product_code\":\"2128\",\"product_name\":\"DYNEWELL TAB\",\"option_id\":null,\"net_unit_cost\":\"33.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"264.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.0000\",\"real_unit_cost\":\"33.0000\",\"quantity_received\":null,\"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\":\"33.0000\"},{\"id\":\"28360\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6096\",\"product_code\":\"2129\",\"product_name\":\"PLASTER STRIP\",\"option_id\":null,\"net_unit_cost\":\"59.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"119.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"59.6000\",\"real_unit_cost\":\"59.6000\",\"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\":\"59.6000\"},{\"id\":\"28361\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6097\",\"product_code\":\"2130\",\"product_name\":\"COLESTOP 20\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28362\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6098\",\"product_code\":\"2131\",\"product_name\":\"LIPITOR 40\",\"option_id\":null,\"net_unit_cost\":\"0.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"51.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.6500\",\"quantity_balance\":\"51.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1500\",\"real_unit_cost\":\"0.1500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"51.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.1500\"},{\"id\":\"28363\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6099\",\"product_code\":\"2132\",\"product_name\":\"OSTEOCARE SRP LOCAL\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-16.0000\",\"quantity_balance\":\"-8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"quantity_received\":null,\"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\":\"2.0000\"},{\"id\":\"28364\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6100\",\"product_code\":\"2133\",\"product_name\":\"PLASTER STRIP\",\"option_id\":null,\"net_unit_cost\":\"23.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"23.7000\",\"real_unit_cost\":\"23.7000\",\"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\":\"23.7000\"},{\"id\":\"28365\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6101\",\"product_code\":\"2134\",\"product_name\":\"MMT\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"28366\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6102\",\"product_code\":\"2135\",\"product_name\":\"FFLUCLOX 500\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\"},{\"id\":\"28367\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6103\",\"product_code\":\"2136\",\"product_name\":\"MAXITROL\",\"option_id\":null,\"net_unit_cost\":\"11.6500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"11.6500\",\"real_unit_cost\":\"11.6500\",\"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\":\"11.6500\"},{\"id\":\"28368\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6104\",\"product_code\":\"2137\",\"product_name\":\"CUSIMOLOL\",\"option_id\":null,\"net_unit_cost\":\"9.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.7000\",\"real_unit_cost\":\"9.7000\",\"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\":\"9.7000\"},{\"id\":\"28369\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6105\",\"product_code\":\"2138\",\"product_name\":\"BRO-ZEDEX\",\"option_id\":null,\"net_unit_cost\":\"8.6200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.6200\",\"real_unit_cost\":\"8.6200\",\"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\":\"8.6200\"},{\"id\":\"28370\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6106\",\"product_code\":\"2139\",\"product_name\":\"P-ALAXIN TAB\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"137.5000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"28371\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6107\",\"product_code\":\"2140\",\"product_name\":\"FUROSEMIDE CRESCENT 20\",\"option_id\":null,\"net_unit_cost\":\"32.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.7000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"32.7000\",\"real_unit_cost\":\"32.7000\",\"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\":\"32.7000\"},{\"id\":\"28372\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6108\",\"product_code\":\"2141\",\"product_name\":\"CARVEDILOL 6.25 EXETER\",\"option_id\":null,\"net_unit_cost\":\"3.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.9200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9800\",\"real_unit_cost\":\"3.9800\",\"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\":\"3.9800\"},{\"id\":\"28373\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6109\",\"product_code\":\"2142\",\"product_name\":\"BIO OIL\",\"option_id\":null,\"net_unit_cost\":\"18.0600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.3000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0600\",\"real_unit_cost\":\"18.0600\",\"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\":\"18.0600\"},{\"id\":\"28374\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6110\",\"product_code\":\"2143\",\"product_name\":\"METRO -Z\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"1.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"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\":\"1.5000\"},{\"id\":\"28375\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6111\",\"product_code\":\"2144\",\"product_name\":\"PARLODEL\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.5000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5000\"},{\"id\":\"28376\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6112\",\"product_code\":\"2145\",\"product_name\":\"BELLS OLIVE\",\"option_id\":null,\"net_unit_cost\":\"7.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\":\"21.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"28377\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6113\",\"product_code\":\"2146\",\"product_name\":\"ESSENTIAL M\\/S\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"14.0000\"},{\"id\":\"28378\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6114\",\"product_code\":\"2147\",\"product_name\":\"LIPITON YELLOW\",\"option_id\":null,\"net_unit_cost\":\"0.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.4000\",\"quantity_balance\":\"26.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4000\",\"real_unit_cost\":\"0.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4000\"},{\"id\":\"28379\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6115\",\"product_code\":\"2148\",\"product_name\":\"RAID\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"100.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"28380\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6116\",\"product_code\":\"2149\",\"product_name\":\"FLORA TISSUE\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28381\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6117\",\"product_code\":\"2150\",\"product_name\":\"SAVLON 500ML\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-5.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28382\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6118\",\"product_code\":\"2151\",\"product_name\":\"ORAL B PASTE\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-22.5000\",\"quantity_balance\":\"-5.0000\",\"date\":\"2021-08-21\",\"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\":\"-5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28383\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6119\",\"product_code\":\"2152\",\"product_name\":\"SULFER 18 POWD\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-22.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\"},{\"id\":\"28384\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6120\",\"product_code\":\"2153\",\"product_name\":\"SIVODERM POWD\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28385\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6121\",\"product_code\":\"2154\",\"product_name\":\"JRA M\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28386\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6122\",\"product_code\":\"2155\",\"product_name\":\"JRA S\\/S\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"28387\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6123\",\"product_code\":\"2156\",\"product_name\":\"EVERSHEEN CREAM\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-8.5000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"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\":\"-1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28388\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6124\",\"product_code\":\"2157\",\"product_name\":\"QUEEN ELIZ CREAM M\\/S\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28389\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6125\",\"product_code\":\"2158\",\"product_name\":\"QUEEN CREAM S\\/S\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"28390\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6126\",\"product_code\":\"2159\",\"product_name\":\"QUEEN LOTIN M\\/S\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28391\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6127\",\"product_code\":\"2160\",\"product_name\":\"QUEEN LOTION M\\/S\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.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\":\"3.5000\"},{\"id\":\"28392\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6128\",\"product_code\":\"2161\",\"product_name\":\"QUEEN LOTION S\\/S\",\"option_id\":null,\"net_unit_cost\":\"0.7600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"54.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.0400\",\"quantity_balance\":\"54.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7600\",\"real_unit_cost\":\"0.7600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"54.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.7600\"},{\"id\":\"28393\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6129\",\"product_code\":\"2162\",\"product_name\":\"E PANOL\",\"option_id\":null,\"net_unit_cost\":\"0.4900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"98.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0200\",\"quantity_balance\":\"98.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4900\",\"real_unit_cost\":\"0.4900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"98.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4900\"},{\"id\":\"28394\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6130\",\"product_code\":\"2163\",\"product_name\":\"ZUBES TAB\",\"option_id\":null,\"net_unit_cost\":\"1.1400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.1400\",\"real_unit_cost\":\"1.1400\",\"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\":\"1.1400\"},{\"id\":\"28395\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6131\",\"product_code\":\"2164\",\"product_name\":\"MENTOS TAB\",\"option_id\":null,\"net_unit_cost\":\"37.4100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"74.8200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"37.4100\",\"real_unit_cost\":\"37.4100\",\"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\":\"37.4100\"},{\"id\":\"28396\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6132\",\"product_code\":\"2165\",\"product_name\":\"CHEWETTE\",\"option_id\":null,\"net_unit_cost\":\"2.9600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.3200\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9600\",\"real_unit_cost\":\"2.9600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.9600\"},{\"id\":\"28397\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6133\",\"product_code\":\"2166\",\"product_name\":\"INFACOL 55ML\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"77.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"539.0000\",\"quantity_balance\":\"77.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"77.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.0000\"},{\"id\":\"28398\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6134\",\"product_code\":\"2167\",\"product_name\":\"TYLENOL EXTRA\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28399\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6135\",\"product_code\":\"2168\",\"product_name\":\"JS SANITIZER\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"105.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.0000\"},{\"id\":\"28400\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6136\",\"product_code\":\"2169\",\"product_name\":\"SANITIZER BS\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28401\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6137\",\"product_code\":\"2170\",\"product_name\":\"SANITIZER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28402\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6138\",\"product_code\":\"2171\",\"product_name\":\"SIVODERM SANITIZER\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28403\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6139\",\"product_code\":\"2172\",\"product_name\":\"KLEANZ SS\",\"option_id\":null,\"net_unit_cost\":\"27.9300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.9300\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.9300\",\"real_unit_cost\":\"27.9300\",\"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\":\"27.9300\"},{\"id\":\"28404\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6140\",\"product_code\":\"2173\",\"product_name\":\"CAREX\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28405\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6141\",\"product_code\":\"2174\",\"product_name\":\"CYPRODINE SRP\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28406\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6142\",\"product_code\":\"2175\",\"product_name\":\"SHOE POLISH\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"28407\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6143\",\"product_code\":\"2176\",\"product_name\":\"RAZOR MEN\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"140.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":null,\"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\":\"28408\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6144\",\"product_code\":\"2177\",\"product_name\":\"RAZOR M&W\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28409\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6145\",\"product_code\":\"2178\",\"product_name\":\"RAZ MW S\\/S\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28410\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6146\",\"product_code\":\"2179\",\"product_name\":\"FACIAL ORGANIC COTTON\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.0000\",\"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\":\"35.0000\"},{\"id\":\"28411\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6147\",\"product_code\":\"2180\",\"product_name\":\"ZIGZAG COTTON\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28412\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6148\",\"product_code\":\"2181\",\"product_name\":\"STOPCOUGH COD\",\"option_id\":null,\"net_unit_cost\":\"23.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\":\"69.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"23.0000\",\"real_unit_cost\":\"23.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\":\"23.0000\"},{\"id\":\"28413\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6149\",\"product_code\":\"2182\",\"product_name\":\"FACIAL SQUEEZE\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.0000\",\"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\":\"17.0000\"},{\"id\":\"28414\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6150\",\"product_code\":\"2183\",\"product_name\":\"CLAVU-DOR 1000\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28415\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6151\",\"product_code\":\"2184\",\"product_name\":\"CLAVU-DOR 625\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28416\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6152\",\"product_code\":\"2185\",\"product_name\":\"MOSQUITOE BANGLES\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-20.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"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\":\"-2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28417\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6153\",\"product_code\":\"2186\",\"product_name\":\"GUCIFER 750\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28418\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6154\",\"product_code\":\"2187\",\"product_name\":\"ZOATERM DS\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"200.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28419\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6155\",\"product_code\":\"2188\",\"product_name\":\"ZOATERM FORTE\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28420\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6156\",\"product_code\":\"2189\",\"product_name\":\"DUO COTECSON\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28421\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6157\",\"product_code\":\"2190\",\"product_name\":\"COTTON BUD\",\"option_id\":null,\"net_unit_cost\":\"0.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"101.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.5000\",\"quantity_balance\":\"101.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5000\",\"real_unit_cost\":\"0.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"101.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.5000\"},{\"id\":\"28422\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6158\",\"product_code\":\"2191\",\"product_name\":\"INTERLECTOL\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"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\":\"5.0000\"},{\"id\":\"28423\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6159\",\"product_code\":\"2192\",\"product_name\":\"FACIAL MASK\",\"option_id\":null,\"net_unit_cost\":\"4.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"103.2000\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3000\",\"real_unit_cost\":\"4.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3000\"},{\"id\":\"28424\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6160\",\"product_code\":\"2193\",\"product_name\":\"LOSACAR 100\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"28425\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6161\",\"product_code\":\"2194\",\"product_name\":\"DINAC 75\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28426\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6162\",\"product_code\":\"2195\",\"product_name\":\"CLARITROMYCIN  500\",\"option_id\":null,\"net_unit_cost\":\"6.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.4000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.4000\",\"real_unit_cost\":\"6.4000\",\"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\":\"6.4000\"},{\"id\":\"28427\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6163\",\"product_code\":\"2196\",\"product_name\":\"AZILEX 250\",\"option_id\":null,\"net_unit_cost\":\"4.7300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.3800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.7300\",\"real_unit_cost\":\"4.7300\",\"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\":\"4.7300\"},{\"id\":\"28428\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6164\",\"product_code\":\"2197\",\"product_name\":\"ATENOLOL 50\",\"option_id\":null,\"net_unit_cost\":\"5.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\":\"15.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28429\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6165\",\"product_code\":\"2198\",\"product_name\":\"ATENOLOL 100\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"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\":\"7.0000\"},{\"id\":\"28430\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6166\",\"product_code\":\"2199\",\"product_name\":\"POWER HOUSE\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-350.0000\",\"quantity_balance\":\"-50.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"quantity_received\":null,\"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\":\"7.0000\"},{\"id\":\"28431\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6167\",\"product_code\":\"2200\",\"product_name\":\"JS S\\/S\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28432\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6168\",\"product_code\":\"2201\",\"product_name\":\"JS B\\/S\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28433\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6169\",\"product_code\":\"2202\",\"product_name\":\"FREE STEP\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28434\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6170\",\"product_code\":\"2203\",\"product_name\":\"LOVILEA\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"28435\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6171\",\"product_code\":\"2204\",\"product_name\":\"JS B\\/S\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-20.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28436\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6172\",\"product_code\":\"2205\",\"product_name\":\"KLEANZ 100ML\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28437\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6173\",\"product_code\":\"2206\",\"product_name\":\"CAREX S\\/S\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"254.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"304.8000\",\"quantity_balance\":\"254.0000\",\"date\":\"2021-08-21\",\"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\":\"254.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2000\"},{\"id\":\"28438\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6174\",\"product_code\":\"2207\",\"product_name\":\"DAS VIT C\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28439\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6175\",\"product_code\":\"2208\",\"product_name\":\"GLOVES\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28440\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6176\",\"product_code\":\"2209\",\"product_name\":\"HAND CREAM\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"71.4000\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.2000\"},{\"id\":\"28441\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6177\",\"product_code\":\"2210\",\"product_name\":\"SANITIZER BB\\/S\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"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\":\"2.5000\"},{\"id\":\"28442\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6178\",\"product_code\":\"2211\",\"product_name\":\"COTTON 100G\",\"option_id\":null,\"net_unit_cost\":\"11.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"59.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9000\",\"real_unit_cost\":\"11.9000\",\"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\":\"11.9000\"},{\"id\":\"28443\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6179\",\"product_code\":\"2212\",\"product_name\":\"BELLS OLIVE B\\/S\",\"option_id\":null,\"net_unit_cost\":\"18.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.1600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.5800\",\"real_unit_cost\":\"18.5800\",\"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\":\"18.5800\"},{\"id\":\"28444\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6180\",\"product_code\":\"2213\",\"product_name\":\"DEXATROL OINT\",\"option_id\":null,\"net_unit_cost\":\"24.7500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"24.7500\",\"real_unit_cost\":\"24.7500\",\"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\":\"24.7500\"},{\"id\":\"28445\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6181\",\"product_code\":\"2214\",\"product_name\":\"MENOPACE\",\"option_id\":null,\"net_unit_cost\":\"1.5300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.9500\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5300\",\"real_unit_cost\":\"1.5300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5300\"},{\"id\":\"28446\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6182\",\"product_code\":\"2215\",\"product_name\":\"FLOTAC 75\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"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\":\"16.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28447\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6183\",\"product_code\":\"2216\",\"product_name\":\"OMEPRAZOLE HYCID\",\"option_id\":null,\"net_unit_cost\":\"11.7600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"129.3600\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.7600\",\"real_unit_cost\":\"11.7600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.7600\"},{\"id\":\"28448\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6184\",\"product_code\":\"2217\",\"product_name\":\"SALICYLIC ACID\",\"option_id\":null,\"net_unit_cost\":\"73.3000\",\"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\":\"219.9000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"73.3000\",\"real_unit_cost\":\"73.3000\",\"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\":\"73.3000\"},{\"id\":\"28449\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6185\",\"product_code\":\"2218\",\"product_name\":\"ITCHTAMOL\",\"option_id\":null,\"net_unit_cost\":\"7.8400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"94.0800\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.8400\",\"real_unit_cost\":\"7.8400\",\"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\":\"7.8400\"},{\"id\":\"28450\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6186\",\"product_code\":\"2219\",\"product_name\":\"NORVASC 10\",\"option_id\":null,\"net_unit_cost\":\"10.7000\",\"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\":\"32.1000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.7000\",\"real_unit_cost\":\"10.7000\",\"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\":\"10.7000\"},{\"id\":\"28451\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6187\",\"product_code\":\"2220\",\"product_name\":\"CANDIDERM CREAM\",\"option_id\":null,\"net_unit_cost\":\"7.4300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.4300\",\"real_unit_cost\":\"7.4300\",\"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\":\"7.4300\"},{\"id\":\"28452\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6188\",\"product_code\":\"2221\",\"product_name\":\"ADUTWUMUA CAPS\",\"option_id\":null,\"net_unit_cost\":\"4.5300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-4.5300\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.5300\",\"real_unit_cost\":\"4.5300\",\"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\":\"4.5300\"},{\"id\":\"28453\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6189\",\"product_code\":\"2222\",\"product_name\":\"LIVERPLEX -B ADULT\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28454\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6190\",\"product_code\":\"2223\",\"product_name\":\"FUROSEMIDE 40 TEVA\",\"option_id\":null,\"net_unit_cost\":\"4.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8000\",\"real_unit_cost\":\"4.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\":\"4.8000\"},{\"id\":\"28455\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6191\",\"product_code\":\"2224\",\"product_name\":\"POLYFER 200ML\",\"option_id\":null,\"net_unit_cost\":\"8.2400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.2000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.2400\",\"real_unit_cost\":\"8.2400\",\"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\":\"8.2400\"},{\"id\":\"28456\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6192\",\"product_code\":\"2225\",\"product_name\":\"CABOZAP ADULT\",\"option_id\":null,\"net_unit_cost\":\"3.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.9900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9900\",\"real_unit_cost\":\"3.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\":\"3.9900\"},{\"id\":\"28457\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6193\",\"product_code\":\"2226\",\"product_name\":\"CANDID V-3\",\"option_id\":null,\"net_unit_cost\":\"1.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.6000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6000\",\"real_unit_cost\":\"1.6000\",\"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\":\"1.6000\"},{\"id\":\"28458\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6194\",\"product_code\":\"2227\",\"product_name\":\"ABC VIT C SRP\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"58.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.5000\"},{\"id\":\"28459\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6195\",\"product_code\":\"2228\",\"product_name\":\"ASCORBIN SRP\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"28460\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6196\",\"product_code\":\"2229\",\"product_name\":\"PREMECO CAPS\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"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\":\"43.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.5000\"},{\"id\":\"28461\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6197\",\"product_code\":\"2230\",\"product_name\":\"STRONG BCO\",\"option_id\":null,\"net_unit_cost\":\"22.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"157.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"22.5000\",\"real_unit_cost\":\"22.5000\",\"quantity_received\":null,\"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\":\"22.5000\"},{\"id\":\"28462\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6198\",\"product_code\":\"2231\",\"product_name\":\"SILVERBIRD\",\"option_id\":null,\"net_unit_cost\":\"12.5900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.5900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.5900\",\"real_unit_cost\":\"12.5900\",\"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\":\"12.5900\"},{\"id\":\"28463\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6199\",\"product_code\":\"2232\",\"product_name\":\"HOT WAT BOT COVERED\",\"option_id\":null,\"net_unit_cost\":\"10.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"61.2000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.2000\",\"real_unit_cost\":\"10.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\":\"10.2000\"},{\"id\":\"28464\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6200\",\"product_code\":\"2233\",\"product_name\":\"HOT WAT BOT\",\"option_id\":null,\"net_unit_cost\":\"13.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.2000\",\"real_unit_cost\":\"13.2000\",\"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\":\"13.2000\"},{\"id\":\"28465\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6201\",\"product_code\":\"2234\",\"product_name\":\"OMEGA-H3 CAPS\",\"option_id\":null,\"net_unit_cost\":\"7.5900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.5900\",\"real_unit_cost\":\"7.5900\",\"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\":\"7.5900\"},{\"id\":\"28466\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6202\",\"product_code\":\"2235\",\"product_name\":\"DREZ SOLN 100ML\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.0000\",\"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\":\"17.0000\"},{\"id\":\"28467\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6203\",\"product_code\":\"2236\",\"product_name\":\"AMITRIPTLINE 25MG\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-4.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.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\":\"2.0000\"},{\"id\":\"28468\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6204\",\"product_code\":\"2237\",\"product_name\":\"SOLUBLE VIT C\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"quantity_received\":null,\"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\":\"5.5000\"},{\"id\":\"28469\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6205\",\"product_code\":\"2238\",\"product_name\":\"YAZZ BRUSH\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"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\":\"5.5000\"},{\"id\":\"28470\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6206\",\"product_code\":\"2239\",\"product_name\":\"DETTOL SOAP\",\"option_id\":null,\"net_unit_cost\":\"5.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\":\"15.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28471\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6207\",\"product_code\":\"2240\",\"product_name\":\"CAMEL SOAP\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"78.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.0000\"},{\"id\":\"28472\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6208\",\"product_code\":\"2241\",\"product_name\":\"SHOWER ROLL ON\",\"option_id\":null,\"net_unit_cost\":\"4.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"44.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"176.8800\",\"quantity_balance\":\"44.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.0200\",\"real_unit_cost\":\"4.0200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"44.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0200\"},{\"id\":\"28473\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6209\",\"product_code\":\"2242\",\"product_name\":\"SURE ROLL ON\",\"option_id\":null,\"net_unit_cost\":\"3.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"3.2000\"},{\"id\":\"28474\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6210\",\"product_code\":\"2243\",\"product_name\":\"AMLODIPINE 10 TEVA\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28475\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6211\",\"product_code\":\"2244\",\"product_name\":\"COLGATE BRUSH DOUBLE\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-5.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28476\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6212\",\"product_code\":\"2245\",\"product_name\":\"COLGATE BRUSH\",\"option_id\":null,\"net_unit_cost\":\"7.7700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.7700\",\"real_unit_cost\":\"7.7700\",\"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\":\"7.7700\"},{\"id\":\"28477\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6213\",\"product_code\":\"2246\",\"product_name\":\"PEPSODENT 123\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28478\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6214\",\"product_code\":\"2247\",\"product_name\":\"AMOXIL 500\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"28479\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6215\",\"product_code\":\"2248\",\"product_name\":\"GOFEX\",\"option_id\":null,\"net_unit_cost\":\"32.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"64.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"32.2000\",\"real_unit_cost\":\"32.2000\",\"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\":\"32.2000\"},{\"id\":\"28480\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6216\",\"product_code\":\"2249\",\"product_name\":\"OLFEN-100 CAPS\",\"option_id\":null,\"net_unit_cost\":\"27.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"55.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.6000\",\"real_unit_cost\":\"27.6000\",\"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\":\"27.6000\"},{\"id\":\"28481\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6217\",\"product_code\":\"2250\",\"product_name\":\"TENTEX ROYAL\",\"option_id\":null,\"net_unit_cost\":\"43.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"43.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"43.0000\",\"real_unit_cost\":\"43.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\":\"43.0000\"},{\"id\":\"28482\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6218\",\"product_code\":\"2251\",\"product_name\":\"CONFIDO\",\"option_id\":null,\"net_unit_cost\":\"5.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-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28483\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6219\",\"product_code\":\"2252\",\"product_name\":\"CORSODYL B\\/B 500ML\",\"option_id\":null,\"net_unit_cost\":\"31.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"62.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"31.2000\",\"real_unit_cost\":\"31.2000\",\"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\":\"31.2000\"},{\"id\":\"28484\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6220\",\"product_code\":\"2253\",\"product_name\":\"GUDAPET CAPS\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28485\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6221\",\"product_code\":\"2254\",\"product_name\":\"LARIAM\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"78.2000\",\"quantity_balance\":\"23.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.4000\"},{\"id\":\"28486\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6222\",\"product_code\":\"2255\",\"product_name\":\"RUBBING ALC S\\/S\",\"option_id\":null,\"net_unit_cost\":\"21.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"151.9000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"21.7000\",\"real_unit_cost\":\"21.7000\",\"quantity_received\":null,\"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\":\"21.7000\"},{\"id\":\"28487\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6223\",\"product_code\":\"2256\",\"product_name\":\"AMLODIPINE 5MG TEVA\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"68.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"quantity_received\":null,\"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\":\"3.4000\"},{\"id\":\"28488\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6224\",\"product_code\":\"2257\",\"product_name\":\"PANADOL ADVANCE\",\"option_id\":null,\"net_unit_cost\":\"20.5900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.5900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.5900\",\"real_unit_cost\":\"20.5900\",\"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\":\"20.5900\"},{\"id\":\"28489\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6225\",\"product_code\":\"2258\",\"product_name\":\"DF118\",\"option_id\":null,\"net_unit_cost\":\"1.8300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"141.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"258.0300\",\"quantity_balance\":\"141.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8300\",\"real_unit_cost\":\"1.8300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"141.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8300\"},{\"id\":\"28490\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6226\",\"product_code\":\"2259\",\"product_name\":\"SUDOCREAM 60G\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.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\":\"26.0000\"},{\"id\":\"28491\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6227\",\"product_code\":\"2260\",\"product_name\":\"ROBAXIN-750\",\"option_id\":null,\"net_unit_cost\":\"23.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"95.6400\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"23.9100\",\"real_unit_cost\":\"23.9100\",\"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\":\"23.9100\"},{\"id\":\"28492\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6228\",\"product_code\":\"2261\",\"product_name\":\"APTIZOOM\",\"option_id\":null,\"net_unit_cost\":\"43.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"86.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"43.0000\",\"real_unit_cost\":\"43.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\":\"43.0000\"},{\"id\":\"28493\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6229\",\"product_code\":\"2262\",\"product_name\":\"DARKTACORT CREAM\",\"option_id\":null,\"net_unit_cost\":\"8.1100\",\"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\":\"24.3300\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.1100\",\"real_unit_cost\":\"8.1100\",\"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\":\"8.1100\"},{\"id\":\"28494\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6230\",\"product_code\":\"2263\",\"product_name\":\"CLARYTIN SRP\",\"option_id\":null,\"net_unit_cost\":\"5.5100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.5100\",\"real_unit_cost\":\"5.5100\",\"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\":\"5.5100\"},{\"id\":\"28495\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6231\",\"product_code\":\"2264\",\"product_name\":\"LOSAR DENK 50\",\"option_id\":null,\"net_unit_cost\":\"18.3800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.7600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.3800\",\"real_unit_cost\":\"18.3800\",\"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\":\"18.3800\"},{\"id\":\"28496\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6232\",\"product_code\":\"2265\",\"product_name\":\"NEXCOFER CAPS\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"132.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"28497\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6233\",\"product_code\":\"2266\",\"product_name\":\"WELLKID TAB\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"198.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"18.0000\"},{\"id\":\"28498\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6234\",\"product_code\":\"2267\",\"product_name\":\"NIVEA FAIRNESS\",\"option_id\":null,\"net_unit_cost\":\"15.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\":\"45.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\"},{\"id\":\"28499\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6235\",\"product_code\":\"2268\",\"product_name\":\"NIVEA\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"136.0000\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"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\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28500\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6236\",\"product_code\":\"2269\",\"product_name\":\"NIVEA CLEANSER\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.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\":\"17.0000\"},{\"id\":\"28501\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6237\",\"product_code\":\"2270\",\"product_name\":\"NIVEA ROLL ON\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"29.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"348.0000\",\"quantity_balance\":\"29.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"29.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.0000\"},{\"id\":\"28502\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6238\",\"product_code\":\"2271\",\"product_name\":\"AFTER SHAVE\",\"option_id\":null,\"net_unit_cost\":\"8.4000\",\"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\":\"25.2000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.4000\",\"real_unit_cost\":\"8.4000\",\"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\":\"8.4000\"},{\"id\":\"28503\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6239\",\"product_code\":\"2272\",\"product_name\":\"NIVEA SPRAY\",\"option_id\":null,\"net_unit_cost\":\"4.0700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.0700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.0700\",\"real_unit_cost\":\"4.0700\",\"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\":\"4.0700\"},{\"id\":\"28504\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6240\",\"product_code\":\"2273\",\"product_name\":\"NIVEA INVISIBLE ROLL ON\",\"option_id\":null,\"net_unit_cost\":\"20.5000\",\"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\":\"61.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.5000\",\"real_unit_cost\":\"20.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\":\"20.5000\"},{\"id\":\"28505\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6241\",\"product_code\":\"2274\",\"product_name\":\"GLUCORANGE\",\"option_id\":null,\"net_unit_cost\":\"23.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"23.0000\",\"real_unit_cost\":\"23.0000\",\"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\":\"23.0000\"},{\"id\":\"28506\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6242\",\"product_code\":\"2275\",\"product_name\":\"SELEVITE\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"28507\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6243\",\"product_code\":\"2276\",\"product_name\":\"NIVEA SHOWER GEL B\\/S\",\"option_id\":null,\"net_unit_cost\":\"11.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.5000\"},{\"id\":\"28508\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6244\",\"product_code\":\"2277\",\"product_name\":\"NIVEA SHOWER S\\/S\",\"option_id\":null,\"net_unit_cost\":\"13.2700\",\"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\":\"39.8100\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.2700\",\"real_unit_cost\":\"13.2700\",\"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\":\"13.2700\"},{\"id\":\"28509\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6245\",\"product_code\":\"2278\",\"product_name\":\"IVY,S SANITIZER\",\"option_id\":null,\"net_unit_cost\":\"3.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.4000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1500\",\"real_unit_cost\":\"3.1500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.1500\"},{\"id\":\"28510\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6246\",\"product_code\":\"2279\",\"product_name\":\"IMBOOST\",\"option_id\":null,\"net_unit_cost\":\"6.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9500\",\"real_unit_cost\":\"6.9500\",\"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\":\"6.9500\"},{\"id\":\"28511\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6247\",\"product_code\":\"2280\",\"product_name\":\"LEENA CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.5000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5500\",\"real_unit_cost\":\"0.5500\",\"quantity_received\":null,\"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\":\"0.5500\"},{\"id\":\"28512\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6248\",\"product_code\":\"2281\",\"product_name\":\"LEENA SRP\",\"option_id\":null,\"net_unit_cost\":\"4.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"48.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"219.8400\",\"quantity_balance\":\"48.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.5800\",\"real_unit_cost\":\"4.5800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"48.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5800\"},{\"id\":\"28513\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6249\",\"product_code\":\"2282\",\"product_name\":\"GLIBENIL TAB\",\"option_id\":null,\"net_unit_cost\":\"4.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.4000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.1000\",\"real_unit_cost\":\"4.1000\",\"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\":\"4.1000\"},{\"id\":\"28514\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6250\",\"product_code\":\"2283\",\"product_name\":\"BUSCOLEX\",\"option_id\":null,\"net_unit_cost\":\"38.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"38.0000\",\"real_unit_cost\":\"38.0000\",\"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\":\"38.0000\"},{\"id\":\"28515\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6251\",\"product_code\":\"2284\",\"product_name\":\"NEXIUM 40 28S\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"28516\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6252\",\"product_code\":\"2285\",\"product_name\":\"DETOL 750MLS\",\"option_id\":null,\"net_unit_cost\":\"9.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-9.2000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.2000\",\"real_unit_cost\":\"9.2000\",\"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\":\"9.2000\"},{\"id\":\"28517\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6253\",\"product_code\":\"2286\",\"product_name\":\"DETOL 500ML\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28518\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6254\",\"product_code\":\"2287\",\"product_name\":\"DETOL 165ML\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"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\":\"28.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.5000\"},{\"id\":\"28519\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6255\",\"product_code\":\"2288\",\"product_name\":\"DETOL 7MLS\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.0000\",\"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\":\"35.0000\"},{\"id\":\"28520\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6256\",\"product_code\":\"2289\",\"product_name\":\"SAVLON 125\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28521\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6257\",\"product_code\":\"2290\",\"product_name\":\"SAVLON 750ML\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28522\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6258\",\"product_code\":\"2291\",\"product_name\":\"PREETY LADY PAD\",\"option_id\":null,\"net_unit_cost\":\"5.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\":\"15.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28523\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6259\",\"product_code\":\"2292\",\"product_name\":\"TENDRINA LOTN B\\/S\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28524\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6260\",\"product_code\":\"2293\",\"product_name\":\"TENDRINA LTN S\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-9.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"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\":\"-2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28525\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6261\",\"product_code\":\"2294\",\"product_name\":\"TENDRINA CREAM\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28526\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6262\",\"product_code\":\"2295\",\"product_name\":\"TENDRINA CREAMS\\/S\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28527\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6263\",\"product_code\":\"2296\",\"product_name\":\"QUEEN ELIZ BBS\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"45.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"28528\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6264\",\"product_code\":\"2297\",\"product_name\":\"EVERSHEEN LTIN BS\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"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\":\"16.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28529\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6265\",\"product_code\":\"2298\",\"product_name\":\"EVERSHEEN LTN MS\",\"option_id\":null,\"net_unit_cost\":\"0.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"43.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.1000\",\"quantity_balance\":\"43.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7000\",\"real_unit_cost\":\"0.7000\",\"quantity_received\":null,\"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\":\"0.7000\"},{\"id\":\"28530\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6266\",\"product_code\":\"2299\",\"product_name\":\"EVERSHEEN LTN SS\",\"option_id\":null,\"net_unit_cost\":\"13.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-13.9000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.9000\",\"real_unit_cost\":\"13.9000\",\"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\":\"13.9000\"},{\"id\":\"28531\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6267\",\"product_code\":\"2300\",\"product_name\":\"DAPREX CAPS\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28532\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6268\",\"product_code\":\"2301\",\"product_name\":\"RUBBIN ALC 500ML\",\"option_id\":null,\"net_unit_cost\":\"12.7400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.7400\",\"real_unit_cost\":\"12.7400\",\"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\":\"12.7400\"},{\"id\":\"28533\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6269\",\"product_code\":\"2302\",\"product_name\":\"MAGNESIUM TAB\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-78.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-117.0000\",\"quantity_balance\":\"-78.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"-78.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5000\"},{\"id\":\"28534\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6270\",\"product_code\":\"2303\",\"product_name\":\"EFFV MULTIVITAMIN\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28535\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6271\",\"product_code\":\"2304\",\"product_name\":\"P TEST KIT\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28536\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6272\",\"product_code\":\"2305\",\"product_name\":\"AIDKIT\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.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\":\"26.0000\"},{\"id\":\"28537\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6273\",\"product_code\":\"2306\",\"product_name\":\"G-ABZOLE\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"28538\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6274\",\"product_code\":\"2307\",\"product_name\":\"HONEY 500ML\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28539\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6275\",\"product_code\":\"2308\",\"product_name\":\"HONEY 250\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28540\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6276\",\"product_code\":\"2309\",\"product_name\":\"DENTAL FLOSS\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28541\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6277\",\"product_code\":\"2310\",\"product_name\":\"GINGER POWDER\",\"option_id\":null,\"net_unit_cost\":\"8.8700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.7000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.8700\",\"real_unit_cost\":\"8.8700\",\"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\":\"8.8700\"},{\"id\":\"28542\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6278\",\"product_code\":\"2311\",\"product_name\":\"MOODS COND\",\"option_id\":null,\"net_unit_cost\":\"0.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"58.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.8000\",\"quantity_balance\":\"58.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6000\",\"real_unit_cost\":\"0.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"58.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6000\"},{\"id\":\"28543\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6279\",\"product_code\":\"2312\",\"product_name\":\"PRAZIQUANTEL\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"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\":\"-25.5000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"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\":\"8.5000\"},{\"id\":\"28544\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6280\",\"product_code\":\"2313\",\"product_name\":\"FACE MASK\",\"option_id\":null,\"net_unit_cost\":\"0.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.9000\",\"quantity_balance\":\"27.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7000\",\"real_unit_cost\":\"0.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"27.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.7000\"},{\"id\":\"28545\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6281\",\"product_code\":\"2314\",\"product_name\":\"DUROL 300ML\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"198.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"28546\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6282\",\"product_code\":\"2315\",\"product_name\":\"DIAZEPAM 10MG\",\"option_id\":null,\"net_unit_cost\":\"0.9700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-1.9400\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9700\",\"real_unit_cost\":\"0.9700\",\"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\":\"0.9700\"},{\"id\":\"28547\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6283\",\"product_code\":\"2316\",\"product_name\":\"NIVEA FAIRNESS\",\"option_id\":null,\"net_unit_cost\":\"4.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.8000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3000\",\"real_unit_cost\":\"4.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\":\"4.3000\"},{\"id\":\"28548\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6284\",\"product_code\":\"2317\",\"product_name\":\"IBUCAP\",\"option_id\":null,\"net_unit_cost\":\"44.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-21\",\"status\":\"received\",\"unit_cost\":\"44.5000\",\"real_unit_cost\":\"44.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\":\"44.5000\"},{\"id\":\"28549\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6285\",\"product_code\":\"2318\",\"product_name\":\"LUCAZADE CAN\",\"option_id\":null,\"net_unit_cost\":\"35.1800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.1800\",\"real_unit_cost\":\"35.1800\",\"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\":\"35.1800\"},{\"id\":\"28550\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6286\",\"product_code\":\"2319\",\"product_name\":\"CARDIOACE PLUS\",\"option_id\":null,\"net_unit_cost\":\"7.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"47.8800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9800\",\"real_unit_cost\":\"7.9800\",\"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\":\"7.9800\"},{\"id\":\"28551\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6287\",\"product_code\":\"2320\",\"product_name\":\"HERBAL SLIMMING TEA\",\"option_id\":null,\"net_unit_cost\":\"43.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"43.9000\",\"real_unit_cost\":\"43.9000\",\"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\":\"43.9000\"},{\"id\":\"28552\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6288\",\"product_code\":\"2321\",\"product_name\":\"CITY TONIC\",\"option_id\":null,\"net_unit_cost\":\"23.1600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.3200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"23.1600\",\"real_unit_cost\":\"23.1600\",\"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\":\"23.1600\"},{\"id\":\"28553\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6289\",\"product_code\":\"2322\",\"product_name\":\"VIT B1\",\"option_id\":null,\"net_unit_cost\":\"28.1700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"28.1700\",\"real_unit_cost\":\"28.1700\",\"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\":\"28.1700\"},{\"id\":\"28554\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6290\",\"product_code\":\"2323\",\"product_name\":\"VIT B6\",\"option_id\":null,\"net_unit_cost\":\"74.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"74.0000\",\"real_unit_cost\":\"74.0000\",\"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\":\"74.0000\"},{\"id\":\"28555\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6291\",\"product_code\":\"2324\",\"product_name\":\"SAMOCID\",\"option_id\":null,\"net_unit_cost\":\"8.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.8000\",\"real_unit_cost\":\"8.8000\",\"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\":\"8.8000\"},{\"id\":\"28556\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6292\",\"product_code\":\"2325\",\"product_name\":\"NEO MEDROL\",\"option_id\":null,\"net_unit_cost\":\"1.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\":\"3.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"28557\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6293\",\"product_code\":\"2326\",\"product_name\":\"LIQUID PARRAFIN\",\"option_id\":null,\"net_unit_cost\":\"9.3800\",\"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\":\"28.1400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.3800\",\"real_unit_cost\":\"9.3800\",\"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\":\"9.3800\"},{\"id\":\"28558\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6294\",\"product_code\":\"2327\",\"product_name\":\"CYFEN TAB\",\"option_id\":null,\"net_unit_cost\":\"2.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.9800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9800\",\"real_unit_cost\":\"2.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\":\"2.9800\"},{\"id\":\"28559\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6295\",\"product_code\":\"2328\",\"product_name\":\"CYFEN SRP\",\"option_id\":null,\"net_unit_cost\":\"43.5700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"87.1400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"43.5700\",\"real_unit_cost\":\"43.5700\",\"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\":\"43.5700\"},{\"id\":\"28560\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6296\",\"product_code\":\"2329\",\"product_name\":\"C-PHENAMIN SRP\",\"option_id\":null,\"net_unit_cost\":\"7.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9000\",\"real_unit_cost\":\"7.9000\",\"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\":\"7.9000\"},{\"id\":\"28561\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6297\",\"product_code\":\"2330\",\"product_name\":\"OMEGAH H3 LIQUID\",\"option_id\":null,\"net_unit_cost\":\"42.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"84.8600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"42.4300\",\"real_unit_cost\":\"42.4300\",\"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\":\"42.4300\"},{\"id\":\"28562\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6298\",\"product_code\":\"2331\",\"product_name\":\"LUEX ADULT CHESTY\",\"option_id\":null,\"net_unit_cost\":\"90.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"180.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"90.0000\",\"real_unit_cost\":\"90.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\":\"90.0000\"},{\"id\":\"28563\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6299\",\"product_code\":\"2332\",\"product_name\":\"VISIONACE PLUS\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28564\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6300\",\"product_code\":\"2333\",\"product_name\":\"COAFS\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"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\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28565\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6301\",\"product_code\":\"2334\",\"product_name\":\"ALPHA VIT C\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"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\":\"13.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28566\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6302\",\"product_code\":\"2335\",\"product_name\":\"CHOCOLATE M\\/S\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.5000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"quantity_received\":null,\"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\":\"5.5000\"},{\"id\":\"28567\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6303\",\"product_code\":\"2336\",\"product_name\":\"ENTRAMOL PLUS\",\"option_id\":null,\"net_unit_cost\":\"43.8600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"87.7200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"43.8600\",\"real_unit_cost\":\"43.8600\",\"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\":\"43.8600\"},{\"id\":\"28568\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6304\",\"product_code\":\"2337\",\"product_name\":\"COMBACT-N\",\"option_id\":null,\"net_unit_cost\":\"5.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8000\",\"real_unit_cost\":\"5.8000\",\"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\":\"5.8000\"},{\"id\":\"28569\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6305\",\"product_code\":\"2338\",\"product_name\":\"LACTULOSE 500ML\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28570\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6306\",\"product_code\":\"2339\",\"product_name\":\"JAGUAR CREAM\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28571\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6307\",\"product_code\":\"2340\",\"product_name\":\"BIOVID FORTE\",\"option_id\":null,\"net_unit_cost\":\"34.8900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"34.8900\",\"real_unit_cost\":\"34.8900\",\"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\":\"34.8900\"},{\"id\":\"28572\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6308\",\"product_code\":\"2341\",\"product_name\":\"DR CHRIS OMEGA\",\"option_id\":null,\"net_unit_cost\":\"7.1000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.1000\",\"real_unit_cost\":\"7.1000\",\"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\":\"7.1000\"},{\"id\":\"28573\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6309\",\"product_code\":\"2342\",\"product_name\":\"TCP\",\"option_id\":null,\"net_unit_cost\":\"41.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"41.0000\",\"real_unit_cost\":\"41.0000\",\"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\":\"41.0000\"},{\"id\":\"28574\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6310\",\"product_code\":\"2343\",\"product_name\":\"VALUPAC BCO\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28575\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6311\",\"product_code\":\"2344\",\"product_name\":\"HAIRFOLLIC\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"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\":\"2.0000\"},{\"id\":\"28576\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6312\",\"product_code\":\"2345\",\"product_name\":\"COLGATE CHARC\",\"option_id\":null,\"net_unit_cost\":\"30.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\":\"90.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"30.0000\"},{\"id\":\"28577\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6313\",\"product_code\":\"2346\",\"product_name\":\"ASCOBIN TAB\",\"option_id\":null,\"net_unit_cost\":\"19.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.8000\"},{\"id\":\"28578\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6314\",\"product_code\":\"2347\",\"product_name\":\"PROSTAT 60\",\"option_id\":null,\"net_unit_cost\":\"6.5300\",\"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\":\"19.5900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.5300\",\"real_unit_cost\":\"6.5300\",\"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\":\"6.5300\"},{\"id\":\"28579\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6315\",\"product_code\":\"2348\",\"product_name\":\"PROSLUV CAPS\",\"option_id\":null,\"net_unit_cost\":\"27.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\":\"81.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.0000\",\"real_unit_cost\":\"27.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\":\"27.0000\"},{\"id\":\"28580\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6316\",\"product_code\":\"2349\",\"product_name\":\"GASTRONE SUSP\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"28581\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6317\",\"product_code\":\"2350\",\"product_name\":\"ALKA SRP\",\"option_id\":null,\"net_unit_cost\":\"44.1700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"44.1700\",\"real_unit_cost\":\"44.1700\",\"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\":\"44.1700\"},{\"id\":\"28582\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6318\",\"product_code\":\"2351\",\"product_name\":\"ALLOPURINOL 300\",\"option_id\":null,\"net_unit_cost\":\"29.3500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"29.3500\",\"real_unit_cost\":\"29.3500\",\"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\":\"29.3500\"},{\"id\":\"28583\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6319\",\"product_code\":\"2352\",\"product_name\":\"NYSTATIN ORAL\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28584\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6320\",\"product_code\":\"2353\",\"product_name\":\"LIV 52 TAB\",\"option_id\":null,\"net_unit_cost\":\"10.2700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"82.1600\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.2700\",\"real_unit_cost\":\"10.2700\",\"quantity_received\":null,\"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\":\"10.2700\"},{\"id\":\"28585\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6321\",\"product_code\":\"2354\",\"product_name\":\"VITAFOL\",\"option_id\":null,\"net_unit_cost\":\"27.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"27.4000\",\"real_unit_cost\":\"27.4000\",\"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\":\"27.4000\"},{\"id\":\"28586\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6322\",\"product_code\":\"2355\",\"product_name\":\"CARVEDILOL 12.5 EXETER\",\"option_id\":null,\"net_unit_cost\":\"5.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.7000\",\"real_unit_cost\":\"5.7000\",\"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\":\"5.7000\"},{\"id\":\"28587\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6323\",\"product_code\":\"2356\",\"product_name\":\"OLIGOCARE\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"28588\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6324\",\"product_code\":\"2357\",\"product_name\":\"SWEET PAMPERS\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28589\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6325\",\"product_code\":\"2358\",\"product_name\":\"ROMA SPRAY\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-3.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.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\":\"1.5000\"},{\"id\":\"28590\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6326\",\"product_code\":\"2359\",\"product_name\":\"OUTSPRAY\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"14.0000\"},{\"id\":\"28591\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6327\",\"product_code\":\"2360\",\"product_name\":\"~COLGATE BRUSH\",\"option_id\":null,\"net_unit_cost\":\"8.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-17.2000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.6000\",\"real_unit_cost\":\"8.6000\",\"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\":\"8.6000\"},{\"id\":\"28592\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6328\",\"product_code\":\"2361\",\"product_name\":\"TISSUE B\\\\S\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"28593\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6329\",\"product_code\":\"2362\",\"product_name\":\"SMILE BABY\",\"option_id\":null,\"net_unit_cost\":\"2.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.3800\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5800\",\"real_unit_cost\":\"2.5800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5800\"},{\"id\":\"28594\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6330\",\"product_code\":\"2363\",\"product_name\":\"HYDROCT CRAEM L\\\\S\",\"option_id\":null,\"net_unit_cost\":\"36.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"36.0000\"},{\"id\":\"28595\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6331\",\"product_code\":\"2364\",\"product_name\":\"GEBEDOL PLUS\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.0000\",\"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\":\"26.0000\"},{\"id\":\"28596\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6332\",\"product_code\":\"2365\",\"product_name\":\"ROOTER LIFE\",\"option_id\":null,\"net_unit_cost\":\"13.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\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"28597\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6333\",\"product_code\":\"2366\",\"product_name\":\"FEROVITA SRP\",\"option_id\":null,\"net_unit_cost\":\"6.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3000\",\"real_unit_cost\":\"6.3000\",\"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\":\"6.3000\"},{\"id\":\"28598\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6334\",\"product_code\":\"2367\",\"product_name\":\"SICKAZINK\",\"option_id\":null,\"net_unit_cost\":\"11.7200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.4400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.7200\",\"real_unit_cost\":\"11.7200\",\"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\":\"11.7200\"},{\"id\":\"28599\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6335\",\"product_code\":\"2368\",\"product_name\":\"ABYVITA SRP\",\"option_id\":null,\"net_unit_cost\":\"6.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.7800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8900\",\"real_unit_cost\":\"6.8900\",\"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\":\"6.8900\"},{\"id\":\"28600\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6336\",\"product_code\":\"2369\",\"product_name\":\"FEROLLEX SRP\",\"option_id\":null,\"net_unit_cost\":\"9.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"28601\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6337\",\"product_code\":\"2370\",\"product_name\":\"OROFER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28602\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6338\",\"product_code\":\"2371\",\"product_name\":\"KLIRE ANTACID\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28603\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6339\",\"product_code\":\"2372\",\"product_name\":\"HEPTOLIFE\",\"option_id\":null,\"net_unit_cost\":\"4.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.7500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.1500\",\"real_unit_cost\":\"4.1500\",\"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\":\"4.1500\"},{\"id\":\"28604\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6340\",\"product_code\":\"2373\",\"product_name\":\"MV PRO\",\"option_id\":null,\"net_unit_cost\":\"5.0800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.3200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0800\",\"real_unit_cost\":\"5.0800\",\"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\":\"5.0800\"},{\"id\":\"28605\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6341\",\"product_code\":\"2374\",\"product_name\":\"SHALATERM TAB\",\"option_id\":null,\"net_unit_cost\":\"5.1700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.5300\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.1700\",\"real_unit_cost\":\"5.1700\",\"quantity_received\":null,\"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\":\"5.1700\"},{\"id\":\"28606\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6342\",\"product_code\":\"2375\",\"product_name\":\"SHALATERM SUSP\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.5000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28607\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6343\",\"product_code\":\"2376\",\"product_name\":\"CARTEF DS\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28608\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6344\",\"product_code\":\"2377\",\"product_name\":\"CARTEF SUSP\",\"option_id\":null,\"net_unit_cost\":\"0.7500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.7500\",\"real_unit_cost\":\"0.7500\",\"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\":\"0.7500\"},{\"id\":\"28609\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6345\",\"product_code\":\"2378\",\"product_name\":\"INTAVITA\",\"option_id\":null,\"net_unit_cost\":\"0.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"1.8200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9100\",\"real_unit_cost\":\"0.9100\",\"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\":\"0.9100\"},{\"id\":\"28610\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6346\",\"product_code\":\"2379\",\"product_name\":\"ESKADOL\",\"option_id\":null,\"net_unit_cost\":\"9.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.6000\",\"real_unit_cost\":\"9.6000\",\"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\":\"9.6000\"},{\"id\":\"28611\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6347\",\"product_code\":\"2380\",\"product_name\":\"RONADOL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28612\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6348\",\"product_code\":\"2381\",\"product_name\":\"DUROMINE\",\"option_id\":null,\"net_unit_cost\":\"1.0400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.2000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.0400\",\"real_unit_cost\":\"1.0400\",\"quantity_received\":null,\"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\":\"1.0400\"},{\"id\":\"28613\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6349\",\"product_code\":\"2382\",\"product_name\":\"GARLIC PEARLS OSONS\",\"option_id\":null,\"net_unit_cost\":\"9.1000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.1000\",\"real_unit_cost\":\"9.1000\",\"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\":\"9.1000\"},{\"id\":\"28614\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6350\",\"product_code\":\"2383\",\"product_name\":\"DICLONOVA PLUS\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"28615\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6351\",\"product_code\":\"2384\",\"product_name\":\"BELLS HYDROGEN\",\"option_id\":null,\"net_unit_cost\":\"2.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"82.6000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9500\",\"real_unit_cost\":\"2.9500\",\"quantity_received\":null,\"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\":\"2.9500\"},{\"id\":\"28616\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6352\",\"product_code\":\"2385\",\"product_name\":\"MYCOLEX POWDER\",\"option_id\":null,\"net_unit_cost\":\"60.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"60.0000\",\"real_unit_cost\":\"60.0000\",\"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\":\"60.0000\"},{\"id\":\"28617\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6353\",\"product_code\":\"2386\",\"product_name\":\"CELGIVITY\",\"option_id\":null,\"net_unit_cost\":\"9.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8000\",\"real_unit_cost\":\"9.8000\",\"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\":\"9.8000\"},{\"id\":\"28618\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6354\",\"product_code\":\"2387\",\"product_name\":\"FEROGLOBIN PLUS\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28619\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6355\",\"product_code\":\"2388\",\"product_name\":\"VIREST CREAM\",\"option_id\":null,\"net_unit_cost\":\"52.5500\",\"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\":\"157.6500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.5500\",\"real_unit_cost\":\"52.5500\",\"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\":\"52.5500\"},{\"id\":\"28620\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6356\",\"product_code\":\"2389\",\"product_name\":\"LIPSORE CREAM\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28621\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6357\",\"product_code\":\"2390\",\"product_name\":\"WELLMAN 70\",\"option_id\":null,\"net_unit_cost\":\"19.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-21\",\"status\":\"received\",\"unit_cost\":\"19.5000\",\"real_unit_cost\":\"19.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\":\"19.5000\"},{\"id\":\"28622\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6358\",\"product_code\":\"2391\",\"product_name\":\"MAGIC SHAVIN POWDER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"28623\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6359\",\"product_code\":\"2392\",\"product_name\":\"MAGIC SHAVING CREAM\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28624\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6360\",\"product_code\":\"2393\",\"product_name\":\"NILOL TAB\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"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\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"28625\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6361\",\"product_code\":\"2394\",\"product_name\":\"VASELINE CREAM\",\"option_id\":null,\"net_unit_cost\":\"0.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.5200\",\"quantity_balance\":\"57.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3600\",\"real_unit_cost\":\"0.3600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"57.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3600\"},{\"id\":\"28626\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6362\",\"product_code\":\"2395\",\"product_name\":\"GIVING SET\",\"option_id\":null,\"net_unit_cost\":\"8.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-17.2000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.6000\",\"real_unit_cost\":\"8.6000\",\"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\":\"8.6000\"},{\"id\":\"28627\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6363\",\"product_code\":\"2396\",\"product_name\":\"FASTMELT\",\"option_id\":null,\"net_unit_cost\":\"23.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"23.0000\",\"real_unit_cost\":\"23.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\":\"23.0000\"},{\"id\":\"28628\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6364\",\"product_code\":\"2397\",\"product_name\":\"AMOXIL SUSP UKK\",\"option_id\":null,\"net_unit_cost\":\"12.2000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.2000\",\"real_unit_cost\":\"12.2000\",\"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\":\"12.2000\"},{\"id\":\"28629\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6365\",\"product_code\":\"2398\",\"product_name\":\"JRA B\'S\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28630\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6366\",\"product_code\":\"2399\",\"product_name\":\"NIVEA SPRAY INVISIBLE\",\"option_id\":null,\"net_unit_cost\":\"33.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.0000\",\"real_unit_cost\":\"33.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\":\"33.0000\"},{\"id\":\"28631\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6367\",\"product_code\":\"2400\",\"product_name\":\"ZIPFERON SRP\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"28632\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6368\",\"product_code\":\"2401\",\"product_name\":\"PIRITON ORG SRP\",\"option_id\":null,\"net_unit_cost\":\"31.0700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"621.4000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"31.0700\",\"real_unit_cost\":\"31.0700\",\"quantity_received\":null,\"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\":\"31.0700\"},{\"id\":\"28633\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6369\",\"product_code\":\"2402\",\"product_name\":\"BEST VIT C 1000\",\"option_id\":null,\"net_unit_cost\":\"2.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.5000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9500\",\"real_unit_cost\":\"2.9500\",\"quantity_received\":null,\"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\":\"2.9500\"},{\"id\":\"28634\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6370\",\"product_code\":\"2403\",\"product_name\":\"WOODWOARDS\",\"option_id\":null,\"net_unit_cost\":\"8.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.9200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.9800\",\"real_unit_cost\":\"8.9800\",\"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\":\"8.9800\"},{\"id\":\"28635\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6371\",\"product_code\":\"2404\",\"product_name\":\"FERTILO FORT\",\"option_id\":null,\"net_unit_cost\":\"19.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.5000\",\"real_unit_cost\":\"19.5000\",\"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\":\"19.5000\"},{\"id\":\"28636\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6372\",\"product_code\":\"2405\",\"product_name\":\"CEFIXIME TAB\",\"option_id\":null,\"net_unit_cost\":\"7.0400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.1600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0400\",\"real_unit_cost\":\"7.0400\",\"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\":\"7.0400\"},{\"id\":\"28637\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6373\",\"product_code\":\"2406\",\"product_name\":\"VIT E 400 VALUPAK\",\"option_id\":null,\"net_unit_cost\":\"9.8500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.8500\",\"real_unit_cost\":\"9.8500\",\"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\":\"9.8500\"},{\"id\":\"28638\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6374\",\"product_code\":\"2407\",\"product_name\":\"FOLIC 30S VAL\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"14.5000\"},{\"id\":\"28639\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6375\",\"product_code\":\"2408\",\"product_name\":\"FOLIC ACID 90S VALPK\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.0000\",\"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\":\"35.0000\"},{\"id\":\"28640\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6376\",\"product_code\":\"2409\",\"product_name\":\"EVENING PRIMROSE\",\"option_id\":null,\"net_unit_cost\":\"30.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"30.3000\",\"real_unit_cost\":\"30.3000\",\"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\":\"30.3000\"},{\"id\":\"28641\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6377\",\"product_code\":\"2410\",\"product_name\":\"NUROFEN SRP\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5000\"},{\"id\":\"28642\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6378\",\"product_code\":\"2411\",\"product_name\":\"SUDAFED TAB\",\"option_id\":null,\"net_unit_cost\":\"66.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"265.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"66.3000\",\"real_unit_cost\":\"66.3000\",\"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\":\"66.3000\"},{\"id\":\"28643\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6379\",\"product_code\":\"2412\",\"product_name\":\"BUMPER CD\",\"option_id\":null,\"net_unit_cost\":\"35.4000\",\"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\":\"106.2000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"35.4000\",\"real_unit_cost\":\"35.4000\",\"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\":\"35.4000\"},{\"id\":\"28644\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6380\",\"product_code\":\"2413\",\"product_name\":\"ORELOX SUSP\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"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\":\"6.0000\"},{\"id\":\"28645\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6381\",\"product_code\":\"2414\",\"product_name\":\"OPTREX EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"28.5000\",\"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\":\"85.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.5000\",\"real_unit_cost\":\"28.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\":\"28.5000\"},{\"id\":\"28646\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6382\",\"product_code\":\"2415\",\"product_name\":\"RAMIPRIL CAPS\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"112.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"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\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28647\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6383\",\"product_code\":\"2416\",\"product_name\":\"TINY VITE DROP\",\"option_id\":null,\"net_unit_cost\":\"2.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4000\",\"real_unit_cost\":\"2.4000\",\"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\":\"2.4000\"},{\"id\":\"28648\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6384\",\"product_code\":\"2417\",\"product_name\":\"ZENTEL SUSP\",\"option_id\":null,\"net_unit_cost\":\"28.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"28.0000\",\"real_unit_cost\":\"28.0000\",\"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\":\"28.0000\"},{\"id\":\"28649\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6385\",\"product_code\":\"2418\",\"product_name\":\"DIPROSIN\",\"option_id\":null,\"net_unit_cost\":\"10.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.4000\",\"real_unit_cost\":\"10.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\":\"10.4000\"},{\"id\":\"28650\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6386\",\"product_code\":\"2419\",\"product_name\":\"BECHAMS ALL IN ONE\",\"option_id\":null,\"net_unit_cost\":\"55.1800\",\"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\":\"165.5400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"55.1800\",\"real_unit_cost\":\"55.1800\",\"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\":\"55.1800\"},{\"id\":\"28651\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6387\",\"product_code\":\"2420\",\"product_name\":\"JARIFAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"22.4500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"22.4500\",\"real_unit_cost\":\"22.4500\",\"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\":\"22.4500\"},{\"id\":\"28652\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6388\",\"product_code\":\"2421\",\"product_name\":\"WELLWOMAN 50 PLUS\",\"option_id\":null,\"net_unit_cost\":\"47.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"188.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"47.0000\"},{\"id\":\"28653\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6389\",\"product_code\":\"2422\",\"product_name\":\"PEPTO BISMOL S\\/S\",\"option_id\":null,\"net_unit_cost\":\"5.1600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.3200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.1600\",\"real_unit_cost\":\"5.1600\",\"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\":\"5.1600\"},{\"id\":\"28654\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6390\",\"product_code\":\"2423\",\"product_name\":\"SPANISH FLY\",\"option_id\":null,\"net_unit_cost\":\"1.0700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.0700\",\"real_unit_cost\":\"1.0700\",\"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\":\"1.0700\"},{\"id\":\"28655\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6391\",\"product_code\":\"2424\",\"product_name\":\"LISINOPRIL 20 TEVA\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28656\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6392\",\"product_code\":\"2425\",\"product_name\":\"MEBENDA\",\"option_id\":null,\"net_unit_cost\":\"66.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"66.3000\",\"real_unit_cost\":\"66.3000\",\"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\":\"66.3000\"},{\"id\":\"28657\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6393\",\"product_code\":\"2426\",\"product_name\":\"BUMPER CD\",\"option_id\":null,\"net_unit_cost\":\"35.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.4000\",\"real_unit_cost\":\"35.4000\",\"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\":\"35.4000\"},{\"id\":\"28658\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6394\",\"product_code\":\"2427\",\"product_name\":\"ORELOX SUSP\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"28659\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6395\",\"product_code\":\"2428\",\"product_name\":\"OPTREX EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.0000\",\"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\":\"35.0000\"},{\"id\":\"28660\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6396\",\"product_code\":\"2429\",\"product_name\":\"PIKOVIT SRP\",\"option_id\":null,\"net_unit_cost\":\"7.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.5000\"},{\"id\":\"28661\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6397\",\"product_code\":\"2430\",\"product_name\":\"SPANISH FLY\",\"option_id\":null,\"net_unit_cost\":\"1.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9500\",\"real_unit_cost\":\"1.9500\",\"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\":\"1.9500\"},{\"id\":\"28662\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6398\",\"product_code\":\"2431\",\"product_name\":\"LOSATARN TEVA 50\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.0000\",\"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\":\"26.0000\"},{\"id\":\"28663\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6399\",\"product_code\":\"2432\",\"product_name\":\"AVOMINE TAB\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28664\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6400\",\"product_code\":\"2433\",\"product_name\":\"DIGOXIN 125 ALMUS\",\"option_id\":null,\"net_unit_cost\":\"1.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.7000\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3500\",\"real_unit_cost\":\"1.3500\",\"quantity_received\":null,\"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\":\"1.3500\"},{\"id\":\"28665\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6401\",\"product_code\":\"2434\",\"product_name\":\"MEDICAL ICE COOL\",\"option_id\":null,\"net_unit_cost\":\"4.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"96.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8000\",\"real_unit_cost\":\"4.8000\",\"quantity_received\":null,\"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\":\"4.8000\"},{\"id\":\"28666\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6402\",\"product_code\":\"2435\",\"product_name\":\"IBUCAP SHALINA S\\/S\",\"option_id\":null,\"net_unit_cost\":\"28.0200\",\"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\":\"84.0600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.0200\",\"real_unit_cost\":\"28.0200\",\"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\":\"28.0200\"},{\"id\":\"28667\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6403\",\"product_code\":\"2436\",\"product_name\":\"ALDOMET 250\",\"option_id\":null,\"net_unit_cost\":\"7.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.6000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.1000\",\"real_unit_cost\":\"7.1000\",\"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\":\"7.1000\"},{\"id\":\"28668\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6404\",\"product_code\":\"2437\",\"product_name\":\"AZOMAX SUSP\",\"option_id\":null,\"net_unit_cost\":\"2.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"140.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.8000\",\"real_unit_cost\":\"2.8000\",\"quantity_received\":null,\"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\":\"2.8000\"},{\"id\":\"28669\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6405\",\"product_code\":\"2438\",\"product_name\":\"FOLIC ACID CRESCENT 28S\",\"option_id\":null,\"net_unit_cost\":\"17.6400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.6400\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.6400\",\"real_unit_cost\":\"17.6400\",\"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\":\"17.6400\"},{\"id\":\"28670\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6406\",\"product_code\":\"2439\",\"product_name\":\"DAFLON 500\",\"option_id\":null,\"net_unit_cost\":\"4.6700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.0400\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6700\",\"real_unit_cost\":\"4.6700\",\"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\":\"4.6700\"},{\"id\":\"28671\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6407\",\"product_code\":\"2440\",\"product_name\":\"SALBUTAMOL CFC INH\",\"option_id\":null,\"net_unit_cost\":\"7.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"186.0000\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.7500\",\"real_unit_cost\":\"7.7500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.7500\"},{\"id\":\"28672\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6408\",\"product_code\":\"2441\",\"product_name\":\"AMLO-DENK 5MG\",\"option_id\":null,\"net_unit_cost\":\"56.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.7000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"56.7000\",\"real_unit_cost\":\"56.7000\",\"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\":\"56.7000\"},{\"id\":\"28673\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6409\",\"product_code\":\"2442\",\"product_name\":\"AMLO DENK 10MG\",\"option_id\":null,\"net_unit_cost\":\"4.0700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.0700\",\"real_unit_cost\":\"4.0700\",\"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\":\"4.0700\"},{\"id\":\"28674\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6410\",\"product_code\":\"2443\",\"product_name\":\"DAYNURSE LIQUID\",\"option_id\":null,\"net_unit_cost\":\"48.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"48.0000\",\"real_unit_cost\":\"48.0000\",\"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\":\"48.0000\"},{\"id\":\"28675\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6411\",\"product_code\":\"2444\",\"product_name\":\"PENFLOX SUSP\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.8000\"},{\"id\":\"28676\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6412\",\"product_code\":\"2445\",\"product_name\":\"JOINTCARE S\\/SEAS\",\"option_id\":null,\"net_unit_cost\":\"18.9500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"18.9500\",\"real_unit_cost\":\"18.9500\",\"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\":\"18.9500\"},{\"id\":\"28677\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6413\",\"product_code\":\"2446\",\"product_name\":\"HEALTHY WOMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"52.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"105.9800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.9900\",\"real_unit_cost\":\"52.9900\",\"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\":\"52.9900\"},{\"id\":\"28678\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6414\",\"product_code\":\"2447\",\"product_name\":\"HEALTHYLINK HAIR,NAILS\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"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\":\"5.5000\"},{\"id\":\"28679\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6415\",\"product_code\":\"2448\",\"product_name\":\"S SEAS COD LIV 60S\",\"option_id\":null,\"net_unit_cost\":\"16.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"65.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.4000\"},{\"id\":\"28680\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6416\",\"product_code\":\"2449\",\"product_name\":\"LORATIDINE 10 TEVA\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28681\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6417\",\"product_code\":\"2450\",\"product_name\":\"ADOM P-AWAY CAPS\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"28682\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6418\",\"product_code\":\"2451\",\"product_name\":\"MASTER TEA\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"126.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.0000\",\"quantity_received\":null,\"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\":\"18.0000\"},{\"id\":\"28683\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6419\",\"product_code\":\"2452\",\"product_name\":\"NONI JUICE\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"110.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"28684\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6420\",\"product_code\":\"2453\",\"product_name\":\"PILIEF OINT\",\"option_id\":null,\"net_unit_cost\":\"9.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.4000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.4000\",\"real_unit_cost\":\"9.4000\",\"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\":\"9.4000\"},{\"id\":\"28685\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6421\",\"product_code\":\"2454\",\"product_name\":\"PILIEF TAB\",\"option_id\":null,\"net_unit_cost\":\"18.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"18.5000\"},{\"id\":\"28686\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6422\",\"product_code\":\"2455\",\"product_name\":\"SABROSSO 100 ML\",\"option_id\":null,\"net_unit_cost\":\"32.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-21\",\"status\":\"received\",\"unit_cost\":\"32.5000\",\"real_unit_cost\":\"32.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\":\"32.5000\"},{\"id\":\"28687\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6423\",\"product_code\":\"2456\",\"product_name\":\"SABROSO 250ML\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"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\":\"37.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"28688\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6424\",\"product_code\":\"2457\",\"product_name\":\"SABROSO 500ML\",\"option_id\":null,\"net_unit_cost\":\"0.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5000\",\"real_unit_cost\":\"0.5000\",\"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\":\"0.5000\"},{\"id\":\"28689\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6425\",\"product_code\":\"2458\",\"product_name\":\"X-DRIVE CAPS\",\"option_id\":null,\"net_unit_cost\":\"2.7600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"165.6000\",\"quantity_balance\":\"60.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.7600\",\"real_unit_cost\":\"2.7600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.7600\"},{\"id\":\"28690\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6426\",\"product_code\":\"2459\",\"product_name\":\"ASMADRIN\",\"option_id\":null,\"net_unit_cost\":\"31.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"31.8000\",\"real_unit_cost\":\"31.8000\",\"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\":\"31.8000\"},{\"id\":\"28691\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6427\",\"product_code\":\"2460\",\"product_name\":\"H-AID VIT E 1000IU\",\"option_id\":null,\"net_unit_cost\":\"35.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.8000\",\"real_unit_cost\":\"35.8000\",\"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\":\"35.8000\"},{\"id\":\"28692\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6428\",\"product_code\":\"2461\",\"product_name\":\"H-AID VIT A 5000IU\",\"option_id\":null,\"net_unit_cost\":\"2.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.8000\",\"real_unit_cost\":\"2.8000\",\"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\":\"2.8000\"},{\"id\":\"28693\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6429\",\"product_code\":\"2462\",\"product_name\":\"H-AID VIT B12\",\"option_id\":null,\"net_unit_cost\":\"13.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"13.3000\",\"real_unit_cost\":\"13.3000\",\"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\":\"13.3000\"},{\"id\":\"28694\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6430\",\"product_code\":\"2463\",\"product_name\":\"BLUE AID COTTON 50G\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28695\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6431\",\"product_code\":\"2464\",\"product_name\":\"BLUE AID VASLINE GAUZE\",\"option_id\":null,\"net_unit_cost\":\"2.8300\",\"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\":\"8.4900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.8300\",\"real_unit_cost\":\"2.8300\",\"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\":\"2.8300\"},{\"id\":\"28696\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6432\",\"product_code\":\"2465\",\"product_name\":\"EPIDERM LOTION\",\"option_id\":null,\"net_unit_cost\":\"3.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"3.2000\"},{\"id\":\"28697\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6433\",\"product_code\":\"2466\",\"product_name\":\"BETASOL LOTION\",\"option_id\":null,\"net_unit_cost\":\"6.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"112.2000\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.6000\",\"real_unit_cost\":\"6.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.6000\"},{\"id\":\"28698\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6434\",\"product_code\":\"2467\",\"product_name\":\"ODDYMIN CAPS\",\"option_id\":null,\"net_unit_cost\":\"16.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-21\",\"status\":\"received\",\"unit_cost\":\"16.5000\",\"real_unit_cost\":\"16.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\":\"16.5000\"},{\"id\":\"28699\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6435\",\"product_code\":\"2468\",\"product_name\":\"MARK -2 INH\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28700\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6436\",\"product_code\":\"2469\",\"product_name\":\"SEBAMED SOAP 150G\",\"option_id\":null,\"net_unit_cost\":\"36.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"36.0000\"},{\"id\":\"28701\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6437\",\"product_code\":\"2470\",\"product_name\":\"SEBAMED SOAP 100G\",\"option_id\":null,\"net_unit_cost\":\"36.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-21\",\"status\":\"received\",\"unit_cost\":\"36.5000\",\"real_unit_cost\":\"36.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\":\"36.5000\"},{\"id\":\"28702\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6438\",\"product_code\":\"2471\",\"product_name\":\"SEBAMED BABY LOTION\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"28703\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6439\",\"product_code\":\"2472\",\"product_name\":\"SEBAMED AA Q10 LOTION\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"45.0000\",\"real_unit_cost\":\"45.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\":\"45.0000\"},{\"id\":\"28704\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6440\",\"product_code\":\"2473\",\"product_name\":\"SEBAMED B MILK\",\"option_id\":null,\"net_unit_cost\":\"36.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"36.0000\"},{\"id\":\"28705\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6441\",\"product_code\":\"2474\",\"product_name\":\"SEBAMED SU C 50+\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28706\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6442\",\"product_code\":\"2475\",\"product_name\":\"SEBAMED UR LO 10\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"100.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28707\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6443\",\"product_code\":\"2476\",\"product_name\":\"MADAR LIQD\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"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\":\"6.0000\"},{\"id\":\"28708\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6444\",\"product_code\":\"2477\",\"product_name\":\"SOFTCARE DIAPER\",\"option_id\":null,\"net_unit_cost\":\"54.3300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"54.3300\",\"real_unit_cost\":\"54.3300\",\"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\":\"54.3300\"},{\"id\":\"28709\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6445\",\"product_code\":\"2478\",\"product_name\":\"CARBIROID\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28710\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6446\",\"product_code\":\"2479\",\"product_name\":\"ROCEPHIN INJ 1G\",\"option_id\":null,\"net_unit_cost\":\"2.7500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.7500\",\"real_unit_cost\":\"2.7500\",\"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\":\"2.7500\"},{\"id\":\"28711\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6447\",\"product_code\":\"2480\",\"product_name\":\"AFROSTAR\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28712\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6448\",\"product_code\":\"2481\",\"product_name\":\"MISS PLUM\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"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\":\"28.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.5000\"},{\"id\":\"28713\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6449\",\"product_code\":\"2482\",\"product_name\":\"ACNE CLEAR\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28714\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6450\",\"product_code\":\"2483\",\"product_name\":\"ANACONDA\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"28715\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6451\",\"product_code\":\"2484\",\"product_name\":\"PERFECT WHITEGEL\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"120.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"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\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28716\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6452\",\"product_code\":\"2485\",\"product_name\":\"HAPPY FAMILY GEL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28717\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6453\",\"product_code\":\"2486\",\"product_name\":\"SURE SPAY\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28718\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6454\",\"product_code\":\"2487\",\"product_name\":\"STYLING GEL M\\/S\",\"option_id\":null,\"net_unit_cost\":\"2.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.7500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.7500\",\"real_unit_cost\":\"2.7500\",\"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\":\"2.7500\"},{\"id\":\"28719\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6455\",\"product_code\":\"2488\",\"product_name\":\"STYLING GEL S\\/S\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"28720\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6456\",\"product_code\":\"2489\",\"product_name\":\"VIP SPRAY\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"28721\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6457\",\"product_code\":\"2490\",\"product_name\":\"JRA LOTION\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"28722\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6458\",\"product_code\":\"2491\",\"product_name\":\"MARQUISE BLUE S\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"28723\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6459\",\"product_code\":\"2492\",\"product_name\":\"INCIDENCE SPRAY S\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"28724\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6460\",\"product_code\":\"2493\",\"product_name\":\"DAGMAR SPRAY S\\/S\",\"option_id\":null,\"net_unit_cost\":\"19.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\":\"57.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"28725\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6461\",\"product_code\":\"2494\",\"product_name\":\"CHAIRMAN S\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28726\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6462\",\"product_code\":\"2495\",\"product_name\":\"CLINIC CLEAR LOTION\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"28727\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6463\",\"product_code\":\"2496\",\"product_name\":\"JRA SHOWER GEL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"28728\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6464\",\"product_code\":\"2497\",\"product_name\":\"CHAMBERS 2000\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28729\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6465\",\"product_code\":\"2498\",\"product_name\":\"COLOUR ME\",\"option_id\":null,\"net_unit_cost\":\"3.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\":\"-9.0000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"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\":\"-3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28730\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6466\",\"product_code\":\"2499\",\"product_name\":\"BIOSKIN\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28731\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6467\",\"product_code\":\"2500\",\"product_name\":\"PARADISE POWDER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28732\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6468\",\"product_code\":\"2501\",\"product_name\":\"SIVODERM CREAM\",\"option_id\":null,\"net_unit_cost\":\"16.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-21\",\"status\":\"received\",\"unit_cost\":\"16.5000\",\"real_unit_cost\":\"16.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\":\"16.5000\"},{\"id\":\"28733\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6469\",\"product_code\":\"2502\",\"product_name\":\"PALMAS LOTION\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28734\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6470\",\"product_code\":\"2503\",\"product_name\":\"SNOWFIRE\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28735\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6471\",\"product_code\":\"2504\",\"product_name\":\"ACTIVATOR S\\/S\",\"option_id\":null,\"net_unit_cost\":\"6.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28736\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6472\",\"product_code\":\"2505\",\"product_name\":\"KURL OUT\",\"option_id\":null,\"net_unit_cost\":\"6.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.3000\",\"real_unit_cost\":\"6.3000\",\"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\":\"6.3000\"},{\"id\":\"28737\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6473\",\"product_code\":\"2506\",\"product_name\":\"AFRICAN CLASS\",\"option_id\":null,\"net_unit_cost\":\"13.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.5000\"},{\"id\":\"28738\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6474\",\"product_code\":\"2507\",\"product_name\":\"KLEEN CLEANSER\",\"option_id\":null,\"net_unit_cost\":\"5.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-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28739\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6475\",\"product_code\":\"2508\",\"product_name\":\"SPORTING CREAM\",\"option_id\":null,\"net_unit_cost\":\"4.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8000\",\"real_unit_cost\":\"4.8000\",\"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\":\"4.8000\"},{\"id\":\"28740\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6476\",\"product_code\":\"2509\",\"product_name\":\"TOP COUNTRY L\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.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\":\"3.5000\"},{\"id\":\"28741\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6477\",\"product_code\":\"2510\",\"product_name\":\"TOP COUNT M\\/S\",\"option_id\":null,\"net_unit_cost\":\"6.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28742\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6478\",\"product_code\":\"2511\",\"product_name\":\"TOP COUNT S\\/S\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"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\":\"1.5000\"},{\"id\":\"28743\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6479\",\"product_code\":\"2512\",\"product_name\":\"BB CLEAR\",\"option_id\":null,\"net_unit_cost\":\"1.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.2500\",\"quantity_balance\":\"35.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5500\",\"real_unit_cost\":\"1.5500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5500\"},{\"id\":\"28744\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6480\",\"product_code\":\"2513\",\"product_name\":\"CHOCOLT VERY S\\/S\",\"option_id\":null,\"net_unit_cost\":\"3.8800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.6800\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.8800\",\"real_unit_cost\":\"3.8800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.8800\"},{\"id\":\"28745\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6481\",\"product_code\":\"2514\",\"product_name\":\"CHOCOLATE UK\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"46.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"92.0000\",\"quantity_balance\":\"46.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"46.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.0000\"},{\"id\":\"28746\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6482\",\"product_code\":\"2515\",\"product_name\":\"PAINGAY GEL\",\"option_id\":null,\"net_unit_cost\":\"45.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"180.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"45.0000\",\"real_unit_cost\":\"45.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\":\"45.0000\"},{\"id\":\"28747\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6483\",\"product_code\":\"2516\",\"product_name\":\"POSTINOR LOCAL\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-34.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.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\":\"17.0000\"},{\"id\":\"28748\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6484\",\"product_code\":\"2517\",\"product_name\":\"WELLWOMAN MAX\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"28749\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6485\",\"product_code\":\"2518\",\"product_name\":\"EASYLIFE\",\"option_id\":null,\"net_unit_cost\":\"4.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8000\",\"real_unit_cost\":\"4.8000\",\"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\":\"4.8000\"},{\"id\":\"28750\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6486\",\"product_code\":\"2519\",\"product_name\":\"TEETHING MIX\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28751\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6487\",\"product_code\":\"2520\",\"product_name\":\"CARBOZAB\",\"option_id\":null,\"net_unit_cost\":\"0.6300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"66.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.5800\",\"quantity_balance\":\"66.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6300\",\"real_unit_cost\":\"0.6300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"66.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6300\"},{\"id\":\"28752\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6488\",\"product_code\":\"2521\",\"product_name\":\"PAD PANTY\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"28753\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6489\",\"product_code\":\"2522\",\"product_name\":\"BREAST PAD\",\"option_id\":null,\"net_unit_cost\":\"27.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.3000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.3000\",\"real_unit_cost\":\"27.3000\",\"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\":\"27.3000\"},{\"id\":\"28754\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6490\",\"product_code\":\"2523\",\"product_name\":\"COTTON 500G\",\"option_id\":null,\"net_unit_cost\":\"7.0300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"105.4500\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0300\",\"real_unit_cost\":\"7.0300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.0300\"},{\"id\":\"28755\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6491\",\"product_code\":\"2524\",\"product_name\":\"KY 50G\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"28756\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6492\",\"product_code\":\"2525\",\"product_name\":\"ACILOVIR 200MG TAB\",\"option_id\":null,\"net_unit_cost\":\"0.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.4200\",\"quantity_balance\":\"31.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8200\",\"real_unit_cost\":\"0.8200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"31.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8200\"},{\"id\":\"28757\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6493\",\"product_code\":\"2526\",\"product_name\":\"VENA S\\/S PK\",\"option_id\":null,\"net_unit_cost\":\"0.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.6600\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8200\",\"real_unit_cost\":\"0.8200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8200\"},{\"id\":\"28758\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6494\",\"product_code\":\"2527\",\"product_name\":\"VERNA M\\/S\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28759\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6495\",\"product_code\":\"2528\",\"product_name\":\"VOLTIC S\\/S PK\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"28760\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6496\",\"product_code\":\"2529\",\"product_name\":\"VOLTIC M\\/S PK\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"28761\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6497\",\"product_code\":\"2530\",\"product_name\":\"BELAQUA M\\/S PK\",\"option_id\":null,\"net_unit_cost\":\"8.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.4300\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.4300\",\"real_unit_cost\":\"8.4300\",\"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\":\"8.4300\"},{\"id\":\"28762\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6498\",\"product_code\":\"2531\",\"product_name\":\"BELAQUA S\\/S PK\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28763\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6499\",\"product_code\":\"2532\",\"product_name\":\"CANDID M PAINT\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28764\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6500\",\"product_code\":\"2533\",\"product_name\":\"THERMOSOL BRUSH\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28765\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6501\",\"product_code\":\"2534\",\"product_name\":\"ZINVITE CAPS\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28766\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6502\",\"product_code\":\"2535\",\"product_name\":\"MOVATE\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28767\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6503\",\"product_code\":\"2536\",\"product_name\":\"LISTERINE B\\/S\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28768\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6504\",\"product_code\":\"2537\",\"product_name\":\"COTTON BUD B\\/S\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"117.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"28769\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6505\",\"product_code\":\"2538\",\"product_name\":\"COTTON BUD S\\/S\",\"option_id\":null,\"net_unit_cost\":\"18.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.7500\",\"real_unit_cost\":\"18.7500\",\"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\":\"18.7500\"},{\"id\":\"28770\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6506\",\"product_code\":\"2539\",\"product_name\":\"TAABEA CAPS\",\"option_id\":null,\"net_unit_cost\":\"17.3900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.3400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.3900\",\"real_unit_cost\":\"17.3900\",\"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\":\"17.3900\"},{\"id\":\"28771\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6507\",\"product_code\":\"2540\",\"product_name\":\"HEALTHY MAN\",\"option_id\":null,\"net_unit_cost\":\"1.3300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.6600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.3300\",\"real_unit_cost\":\"1.3300\",\"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\":\"1.3300\"},{\"id\":\"28772\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6508\",\"product_code\":\"2541\",\"product_name\":\"KINGDOM GARLI CAPS\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28773\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6509\",\"product_code\":\"2542\",\"product_name\":\"DEXONE\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-10.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"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\":\"-1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28774\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6510\",\"product_code\":\"2543\",\"product_name\":\"FRELET 75\",\"option_id\":null,\"net_unit_cost\":\"19.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\":\"57.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"28775\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6511\",\"product_code\":\"2544\",\"product_name\":\"ALOPURINOL 100\",\"option_id\":null,\"net_unit_cost\":\"7.6400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"61.1200\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.6400\",\"real_unit_cost\":\"7.6400\",\"quantity_received\":null,\"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\":\"7.6400\"},{\"id\":\"28776\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6512\",\"product_code\":\"2545\",\"product_name\":\"HYPONIC\",\"option_id\":null,\"net_unit_cost\":\"7.1000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.1000\",\"real_unit_cost\":\"7.1000\",\"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\":\"7.1000\"},{\"id\":\"28777\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6513\",\"product_code\":\"2546\",\"product_name\":\"PONSTAN\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28778\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6514\",\"product_code\":\"2547\",\"product_name\":\"GLUCONAF D\",\"option_id\":null,\"net_unit_cost\":\"5.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2000\",\"real_unit_cost\":\"5.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\":\"5.2000\"},{\"id\":\"28779\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6515\",\"product_code\":\"2548\",\"product_name\":\"ALLOPURINOL 100\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"28780\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6516\",\"product_code\":\"2549\",\"product_name\":\"MENTOS COUGH\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28781\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6517\",\"product_code\":\"2550\",\"product_name\":\"ZINC OXIDE PLAST\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28782\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6518\",\"product_code\":\"2551\",\"product_name\":\"KIDS COLGATE PASTE\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28783\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6519\",\"product_code\":\"2552\",\"product_name\":\"PERFECT CLEAR\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28784\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6520\",\"product_code\":\"2553\",\"product_name\":\"CUSSONS POWD B\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28785\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6521\",\"product_code\":\"2554\",\"product_name\":\"CUSSONS POWD S\\/S\",\"option_id\":null,\"net_unit_cost\":\"14.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\":\"42.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"28786\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6522\",\"product_code\":\"2555\",\"product_name\":\"JOHNSONS LOTION\",\"option_id\":null,\"net_unit_cost\":\"1.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.4000\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.7000\",\"real_unit_cost\":\"1.7000\",\"quantity_received\":null,\"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\":\"1.7000\"},{\"id\":\"28787\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6523\",\"product_code\":\"2556\",\"product_name\":\"JOHNSONS OIL\",\"option_id\":null,\"net_unit_cost\":\"0.4900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.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.4900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4900\",\"real_unit_cost\":\"0.4900\",\"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\":\"0.4900\"},{\"id\":\"28788\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6524\",\"product_code\":\"2557\",\"product_name\":\"ASHTON TEETN POWD\",\"option_id\":null,\"net_unit_cost\":\"40.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"40.3000\",\"real_unit_cost\":\"40.3000\",\"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\":\"40.3000\"},{\"id\":\"28789\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6525\",\"product_code\":\"2558\",\"product_name\":\"HISTAZINE TAB\",\"option_id\":null,\"net_unit_cost\":\"2.1100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.9900\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.1100\",\"real_unit_cost\":\"2.1100\",\"quantity_received\":null,\"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.1100\"},{\"id\":\"28790\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6526\",\"product_code\":\"2559\",\"product_name\":\"PROGENOVA\",\"option_id\":null,\"net_unit_cost\":\"7.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.5000\"},{\"id\":\"28791\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6527\",\"product_code\":\"2560\",\"product_name\":\"ENAMYCIN TAB\",\"option_id\":null,\"net_unit_cost\":\"35.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"35.5000\",\"real_unit_cost\":\"35.5000\",\"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\":\"35.5000\"},{\"id\":\"28792\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6528\",\"product_code\":\"2561\",\"product_name\":\"ADUTWUMWAA MALA MIX\",\"option_id\":null,\"net_unit_cost\":\"11.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.7500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.3500\",\"real_unit_cost\":\"11.3500\",\"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\":\"11.3500\"},{\"id\":\"28793\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6529\",\"product_code\":\"2562\",\"product_name\":\"VITAMIN B12\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"28794\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6530\",\"product_code\":\"2563\",\"product_name\":\"CYCLOGEST 400\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"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\":\"2.5000\"},{\"id\":\"28795\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6531\",\"product_code\":\"2564\",\"product_name\":\"DAKTARIN ORAL GEL\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"68.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"quantity_received\":null,\"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\":\"3.4000\"},{\"id\":\"28796\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6532\",\"product_code\":\"2565\",\"product_name\":\"COTTON 25G\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"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\":\"2.5000\"},{\"id\":\"28797\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6533\",\"product_code\":\"2566\",\"product_name\":\"ADULT DIAPER\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"175.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.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\":\"35.0000\"},{\"id\":\"28798\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6534\",\"product_code\":\"2567\",\"product_name\":\"NAIL CUTTER\",\"option_id\":null,\"net_unit_cost\":\"17.5000\",\"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\":\"52.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.5000\",\"real_unit_cost\":\"17.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\":\"17.5000\"},{\"id\":\"28799\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6535\",\"product_code\":\"2568\",\"product_name\":\"TINATTET EYE\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"84.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"28800\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6536\",\"product_code\":\"2569\",\"product_name\":\"TOMAC MIX\",\"option_id\":null,\"net_unit_cost\":\"29.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.4000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.4000\",\"real_unit_cost\":\"29.4000\",\"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\":\"29.4000\"},{\"id\":\"28801\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6537\",\"product_code\":\"2570\",\"product_name\":\"VENE CAPS\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28802\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6538\",\"product_code\":\"2571\",\"product_name\":\"PROVERA\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28803\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6539\",\"product_code\":\"2572\",\"product_name\":\"JOY SOAP\",\"option_id\":null,\"net_unit_cost\":\"2.0600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0200\",\"quantity_balance\":\"17.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0600\",\"real_unit_cost\":\"2.0600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.0600\"},{\"id\":\"28804\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6540\",\"product_code\":\"2573\",\"product_name\":\"LIPSORE\",\"option_id\":null,\"net_unit_cost\":\"14.8000\",\"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\":\"44.4000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"14.8000\"},{\"id\":\"28805\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6541\",\"product_code\":\"2574\",\"product_name\":\"RONVIT FORTE\",\"option_id\":null,\"net_unit_cost\":\"5.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8000\",\"real_unit_cost\":\"5.8000\",\"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\":\"5.8000\"},{\"id\":\"28806\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6542\",\"product_code\":\"2575\",\"product_name\":\"TRUMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"6.3900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.9500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3900\",\"real_unit_cost\":\"6.3900\",\"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\":\"6.3900\"},{\"id\":\"28807\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6543\",\"product_code\":\"2576\",\"product_name\":\"DRAGON LOZ\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28808\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6544\",\"product_code\":\"2577\",\"product_name\":\"KIDIVITE 200ML\",\"option_id\":null,\"net_unit_cost\":\"7.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.6000\",\"real_unit_cost\":\"7.6000\",\"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\":\"7.6000\"},{\"id\":\"28809\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6545\",\"product_code\":\"2578\",\"product_name\":\"FLUCOR DAY\",\"option_id\":null,\"net_unit_cost\":\"17.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.1000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.1000\",\"real_unit_cost\":\"17.1000\",\"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\":\"17.1000\"},{\"id\":\"28810\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6546\",\"product_code\":\"2579\",\"product_name\":\"KIDIMIN\",\"option_id\":null,\"net_unit_cost\":\"3.8500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.8500\",\"real_unit_cost\":\"3.8500\",\"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\":\"3.8500\"},{\"id\":\"28811\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6547\",\"product_code\":\"2580\",\"product_name\":\"NCP 100ML\",\"option_id\":null,\"net_unit_cost\":\"17.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"68.4000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.1000\",\"real_unit_cost\":\"17.1000\",\"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\":\"17.1000\"},{\"id\":\"28812\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6548\",\"product_code\":\"2581\",\"product_name\":\"SKYBRU\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28813\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6549\",\"product_code\":\"2582\",\"product_name\":\"WELLTEEN HIM\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"96.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"quantity_received\":null,\"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\":\"12.0000\"},{\"id\":\"28814\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6550\",\"product_code\":\"2583\",\"product_name\":\"COTTON BUD BBS\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"66.5000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"28815\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6551\",\"product_code\":\"2584\",\"product_name\":\"LUCKY V CARE\",\"option_id\":null,\"net_unit_cost\":\"0.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.4500\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3500\",\"real_unit_cost\":\"0.3500\",\"quantity_received\":null,\"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\":\"0.3500\"},{\"id\":\"28816\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6552\",\"product_code\":\"2585\",\"product_name\":\"HAPPIMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"6.2700\",\"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\":\"18.8100\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.2700\",\"real_unit_cost\":\"6.2700\",\"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\":\"6.2700\"},{\"id\":\"28817\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6553\",\"product_code\":\"2586\",\"product_name\":\"BANANA GUM\",\"option_id\":null,\"net_unit_cost\":\"0.4600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.9800\",\"quantity_balance\":\"13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4600\",\"real_unit_cost\":\"0.4600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4600\"},{\"id\":\"28818\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6554\",\"product_code\":\"2587\",\"product_name\":\"POFAKOF ADULT\",\"option_id\":null,\"net_unit_cost\":\"30.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"123.9200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"30.9800\",\"real_unit_cost\":\"30.9800\",\"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\":\"30.9800\"},{\"id\":\"28819\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6555\",\"product_code\":\"2588\",\"product_name\":\"WORMZAP TAB\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.2000\"},{\"id\":\"28820\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6556\",\"product_code\":\"2589\",\"product_name\":\"ATWOOD BITTERS\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-30.0000\",\"quantity_balance\":\"-6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28821\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6557\",\"product_code\":\"2590\",\"product_name\":\"ANGEL SANITIZER\",\"option_id\":null,\"net_unit_cost\":\"1.1800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.9800\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.1800\",\"real_unit_cost\":\"1.1800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.1800\"},{\"id\":\"28822\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6558\",\"product_code\":\"2591\",\"product_name\":\"FUROSEMIDE 40 ALMUS\",\"option_id\":null,\"net_unit_cost\":\"16.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\":\"48.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"16.0000\"},{\"id\":\"28823\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6559\",\"product_code\":\"2592\",\"product_name\":\"PINEK-20\",\"option_id\":null,\"net_unit_cost\":\"5.4500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4500\",\"real_unit_cost\":\"5.4500\",\"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\":\"5.4500\"},{\"id\":\"28824\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6560\",\"product_code\":\"2593\",\"product_name\":\"FLAREX\",\"option_id\":null,\"net_unit_cost\":\"37.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"37.5000\",\"real_unit_cost\":\"37.5000\",\"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\":\"37.5000\"},{\"id\":\"28825\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6561\",\"product_code\":\"2594\",\"product_name\":\"POFAKOF JUNIOR\",\"option_id\":null,\"net_unit_cost\":\"28.8900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"28.8900\",\"real_unit_cost\":\"28.8900\",\"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\":\"28.8900\"},{\"id\":\"28826\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6562\",\"product_code\":\"2595\",\"product_name\":\"ADVIL PM\",\"option_id\":null,\"net_unit_cost\":\"1.1700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.7000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.1700\",\"real_unit_cost\":\"1.1700\",\"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\":\"1.1700\"},{\"id\":\"28827\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6563\",\"product_code\":\"2596\",\"product_name\":\"MINADEX\",\"option_id\":null,\"net_unit_cost\":\"34.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"34.0000\",\"real_unit_cost\":\"34.0000\",\"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\":\"34.0000\"},{\"id\":\"28828\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6564\",\"product_code\":\"2597\",\"product_name\":\"METAGYL TAB 400MG\",\"option_id\":null,\"net_unit_cost\":\"7.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"42.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"327.6000\",\"quantity_balance\":\"42.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.8000\",\"real_unit_cost\":\"7.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"42.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.8000\"},{\"id\":\"28829\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6565\",\"product_code\":\"2598\",\"product_name\":\"MENOPACE ORG\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"280.0000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"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\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28830\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6566\",\"product_code\":\"2599\",\"product_name\":\"HAEMOGLOBIN TEST\",\"option_id\":null,\"net_unit_cost\":\"28.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"112.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.0000\",\"real_unit_cost\":\"28.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\":\"28.0000\"},{\"id\":\"28831\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6567\",\"product_code\":\"2600\",\"product_name\":\"TYPHOID TEST\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"41.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"82.0000\",\"quantity_balance\":\"41.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"41.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.0000\"},{\"id\":\"28832\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6568\",\"product_code\":\"2601\",\"product_name\":\"CHOLESTEROL TEST\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"220.0000\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"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\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28833\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6569\",\"product_code\":\"2602\",\"product_name\":\"PREGNANCY TEST\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"960.0000\",\"quantity_balance\":\"32.0000\",\"date\":\"2021-08-21\",\"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\":\"32.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"28834\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6570\",\"product_code\":\"2603\",\"product_name\":\"PROSTATE TEST\",\"option_id\":null,\"net_unit_cost\":\"5.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"148.2000\",\"quantity_balance\":\"26.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.7000\",\"real_unit_cost\":\"5.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.7000\"},{\"id\":\"28835\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6571\",\"product_code\":\"2604\",\"product_name\":\"FACE SHIELD\",\"option_id\":null,\"net_unit_cost\":\"7.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.9800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.9900\"},{\"id\":\"28836\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6572\",\"product_code\":\"2605\",\"product_name\":\"HEPATITIS B TEST\",\"option_id\":null,\"net_unit_cost\":\"32.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"32.0000\",\"real_unit_cost\":\"32.0000\",\"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\":\"32.0000\"},{\"id\":\"28837\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6573\",\"product_code\":\"2606\",\"product_name\":\"LG GLIZONE 30\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-1.2000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"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\":\"-1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2000\"},{\"id\":\"28838\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6574\",\"product_code\":\"2607\",\"product_name\":\"AVACARE VIT C\",\"option_id\":null,\"net_unit_cost\":\"1.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.9000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.7000\",\"real_unit_cost\":\"1.7000\",\"quantity_received\":null,\"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\":\"1.7000\"},{\"id\":\"28839\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6575\",\"product_code\":\"2608\",\"product_name\":\"WEIGHT\",\"option_id\":null,\"net_unit_cost\":\"10.6900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.6900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.6900\",\"real_unit_cost\":\"10.6900\",\"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\":\"10.6900\"},{\"id\":\"28840\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6576\",\"product_code\":\"2609\",\"product_name\":\"LYDIA DAILY PILLS\",\"option_id\":null,\"net_unit_cost\":\"16.6700\",\"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\":\"50.0100\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"16.6700\",\"real_unit_cost\":\"16.6700\",\"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\":\"16.6700\"},{\"id\":\"28841\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6577\",\"product_code\":\"2610\",\"product_name\":\"SENAFEN\",\"option_id\":null,\"net_unit_cost\":\"92.8100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"92.8100\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"92.8100\",\"real_unit_cost\":\"92.8100\",\"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\":\"92.8100\"},{\"id\":\"28842\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6578\",\"product_code\":\"2611\",\"product_name\":\"IMMUNE VIT C 1000\",\"option_id\":null,\"net_unit_cost\":\"2.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"96.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"278.4000\",\"quantity_balance\":\"96.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9000\",\"real_unit_cost\":\"2.9000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"96.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.9000\"},{\"id\":\"28843\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6579\",\"product_code\":\"2612\",\"product_name\":\"CIPROBAY\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28844\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6580\",\"product_code\":\"2613\",\"product_name\":\"ADVIL COMBO\",\"option_id\":null,\"net_unit_cost\":\"13.9900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"13.9900\",\"real_unit_cost\":\"13.9900\",\"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\":\"13.9900\"},{\"id\":\"28845\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6581\",\"product_code\":\"2614\",\"product_name\":\"MONIFLU\",\"option_id\":null,\"net_unit_cost\":\"38.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"155.9600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"38.9900\",\"real_unit_cost\":\"38.9900\",\"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\":\"38.9900\"},{\"id\":\"28846\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6582\",\"product_code\":\"2615\",\"product_name\":\"APPLE CID BORGES 355ML\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"275.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"28847\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6583\",\"product_code\":\"2616\",\"product_name\":\"VINEGAR 500ML\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"555.0000\",\"quantity_balance\":\"37.0000\",\"date\":\"2021-08-21\",\"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\":\"37.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28848\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6584\",\"product_code\":\"2617\",\"product_name\":\"Ca-C 1000\",\"option_id\":null,\"net_unit_cost\":\"0.7700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.7800\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7700\",\"real_unit_cost\":\"0.7700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.7700\"},{\"id\":\"28849\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6585\",\"product_code\":\"2618\",\"product_name\":\"GERMANY VIT C\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.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\":\"2.0000\"},{\"id\":\"28850\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6586\",\"product_code\":\"2619\",\"product_name\":\"PANACIN\",\"option_id\":null,\"net_unit_cost\":\"6.3800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.5200\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3800\",\"real_unit_cost\":\"6.3800\",\"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\":\"6.3800\"},{\"id\":\"28851\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6587\",\"product_code\":\"2620\",\"product_name\":\"KRIS\",\"option_id\":null,\"net_unit_cost\":\"1.8100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"181.0000\",\"quantity_balance\":\"100.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8100\",\"real_unit_cost\":\"1.8100\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"100.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8100\"},{\"id\":\"28852\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6588\",\"product_code\":\"2621\",\"product_name\":\"MAYFAIR SRP\",\"option_id\":null,\"net_unit_cost\":\"5.6300\",\"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\":\"16.8900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.6300\",\"real_unit_cost\":\"5.6300\",\"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\":\"5.6300\"},{\"id\":\"28853\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6589\",\"product_code\":\"2622\",\"product_name\":\"DICLOKIN\",\"option_id\":null,\"net_unit_cost\":\"3.6700\",\"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\":\"11.0100\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6700\",\"real_unit_cost\":\"3.6700\",\"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\":\"3.6700\"},{\"id\":\"28854\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6590\",\"product_code\":\"2623\",\"product_name\":\"HAEMATOVITE SRP\",\"option_id\":null,\"net_unit_cost\":\"2.3100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.3100\",\"real_unit_cost\":\"2.3100\",\"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\":\"2.3100\"},{\"id\":\"28855\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6591\",\"product_code\":\"2624\",\"product_name\":\"ASPANOL BAB\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"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\":\"6.6000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.2000\"},{\"id\":\"28856\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6592\",\"product_code\":\"2625\",\"product_name\":\"WORBEN SRP\",\"option_id\":null,\"net_unit_cost\":\"3.8500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-3.8500\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.8500\",\"real_unit_cost\":\"3.8500\",\"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\":\"3.8500\"},{\"id\":\"28857\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6593\",\"product_code\":\"2626\",\"product_name\":\"BCOMPLEX  SRP KINAPHARMA\",\"option_id\":null,\"net_unit_cost\":\"4.1800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.1800\",\"real_unit_cost\":\"4.1800\",\"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\":\"4.1800\"},{\"id\":\"28858\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6594\",\"product_code\":\"2627\",\"product_name\":\"TASTYMOL INFANT\",\"option_id\":null,\"net_unit_cost\":\"0.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.2400\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6600\",\"real_unit_cost\":\"0.6600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6600\"},{\"id\":\"28859\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6595\",\"product_code\":\"2628\",\"product_name\":\"ASPANOL PLUS\",\"option_id\":null,\"net_unit_cost\":\"8.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.6000\",\"real_unit_cost\":\"8.6000\",\"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\":\"8.6000\"},{\"id\":\"28860\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6596\",\"product_code\":\"2629\",\"product_name\":\"ASCOVITE VIT C 500\",\"option_id\":null,\"net_unit_cost\":\"5.3000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.3000\"},{\"id\":\"28861\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6597\",\"product_code\":\"2630\",\"product_name\":\"ANCIGEL O\",\"option_id\":null,\"net_unit_cost\":\"7.1600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.6400\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.1600\",\"real_unit_cost\":\"7.1600\",\"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\":\"7.1600\"},{\"id\":\"28862\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6598\",\"product_code\":\"2631\",\"product_name\":\"JEDITONE SRP\",\"option_id\":null,\"net_unit_cost\":\"5.1000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.1000\",\"real_unit_cost\":\"5.1000\",\"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\":\"5.1000\"},{\"id\":\"28863\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6599\",\"product_code\":\"2632\",\"product_name\":\"GUDAPET SRP\",\"option_id\":null,\"net_unit_cost\":\"4.5300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.6500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.5300\",\"real_unit_cost\":\"4.5300\",\"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\":\"4.5300\"},{\"id\":\"28864\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6600\",\"product_code\":\"2633\",\"product_name\":\"X,FLUX SRP\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.8000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"quantity_received\":null,\"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\":\"4.4000\"},{\"id\":\"28865\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6601\",\"product_code\":\"2634\",\"product_name\":\"COLDRILIEF SRP\",\"option_id\":null,\"net_unit_cost\":\"8.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.7000\",\"real_unit_cost\":\"8.7000\",\"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\":\"8.7000\"},{\"id\":\"28866\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6602\",\"product_code\":\"2635\",\"product_name\":\"ENTRAMOL EXTRA\",\"option_id\":null,\"net_unit_cost\":\"3.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.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\":\"3.3000\"},{\"id\":\"28867\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6603\",\"product_code\":\"2636\",\"product_name\":\"ENTRACIN 300\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"28868\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6604\",\"product_code\":\"2637\",\"product_name\":\"BLOPEN GEL\",\"option_id\":null,\"net_unit_cost\":\"4.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.7000\",\"real_unit_cost\":\"4.7000\",\"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\":\"4.7000\"},{\"id\":\"28869\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6605\",\"product_code\":\"2638\",\"product_name\":\"GACET 1G\",\"option_id\":null,\"net_unit_cost\":\"7.6800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"46.0800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.6800\",\"real_unit_cost\":\"7.6800\",\"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\":\"7.6800\"},{\"id\":\"28870\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6606\",\"product_code\":\"2639\",\"product_name\":\"X,FERON CAPS\",\"option_id\":null,\"net_unit_cost\":\"21.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"130.2000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"21.7000\",\"real_unit_cost\":\"21.7000\",\"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\":\"21.7000\"},{\"id\":\"28871\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6607\",\"product_code\":\"2640\",\"product_name\":\"ZINVITE SRP\",\"option_id\":null,\"net_unit_cost\":\"19.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"175.5000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.5000\",\"real_unit_cost\":\"19.5000\",\"quantity_received\":null,\"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\":\"19.5000\"},{\"id\":\"28872\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6608\",\"product_code\":\"2641\",\"product_name\":\"IMPRESSER CAPS\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\"},{\"id\":\"28873\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6609\",\"product_code\":\"2642\",\"product_name\":\"VOLTAREEN 100\",\"option_id\":null,\"net_unit_cost\":\"19.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.5000\",\"real_unit_cost\":\"19.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\":\"19.5000\"},{\"id\":\"28874\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6610\",\"product_code\":\"2643\",\"product_name\":\"COTTON 50G\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-22.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"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\":\"-1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"28875\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6611\",\"product_code\":\"2644\",\"product_name\":\"ELEMENT SPRAY\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"28876\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6612\",\"product_code\":\"2645\",\"product_name\":\"LAS VEGAS SPRAY\",\"option_id\":null,\"net_unit_cost\":\"17.5000\",\"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\":\"52.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.5000\",\"real_unit_cost\":\"17.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\":\"17.5000\"},{\"id\":\"28877\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6613\",\"product_code\":\"2646\",\"product_name\":\"CLASS SPRAY\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"28878\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6614\",\"product_code\":\"2647\",\"product_name\":\"CAPRICE SPRAY\",\"option_id\":null,\"net_unit_cost\":\"13.1300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"13.1300\",\"real_unit_cost\":\"13.1300\",\"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\":\"13.1300\"},{\"id\":\"28879\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6615\",\"product_code\":\"2648\",\"product_name\":\"LEMSIP MAX\",\"option_id\":null,\"net_unit_cost\":\"25.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"25.3000\",\"real_unit_cost\":\"25.3000\",\"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\":\"25.3000\"},{\"id\":\"28880\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6616\",\"product_code\":\"2649\",\"product_name\":\"SENSODYNE PASTE\",\"option_id\":null,\"net_unit_cost\":\"22.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\":\"66.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"22.0000\"},{\"id\":\"28881\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6617\",\"product_code\":\"2650\",\"product_name\":\"LONGRICH PASTE\",\"option_id\":null,\"net_unit_cost\":\"5.7200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.7200\",\"real_unit_cost\":\"5.7200\",\"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\":\"5.7200\"},{\"id\":\"28882\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6618\",\"product_code\":\"2651\",\"product_name\":\"NEOCORT EYE DROP\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"28883\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6619\",\"product_code\":\"2652\",\"product_name\":\"PROTONIC\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"28884\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6620\",\"product_code\":\"2653\",\"product_name\":\"QUEEN ELI B\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"58.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"255.2000\",\"quantity_balance\":\"58.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"58.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.4000\"},{\"id\":\"28885\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6621\",\"product_code\":\"2654\",\"product_name\":\"PEPSODENT COMPLETE\",\"option_id\":null,\"net_unit_cost\":\"15.2900\",\"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\":\"-45.8700\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.2900\",\"real_unit_cost\":\"15.2900\",\"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\":\"15.2900\"},{\"id\":\"28886\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6622\",\"product_code\":\"2655\",\"product_name\":\"LUMETHER  ADULT\",\"option_id\":null,\"net_unit_cost\":\"5.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.6000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.6000\",\"real_unit_cost\":\"5.6000\",\"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\":\"5.6000\"},{\"id\":\"28887\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6623\",\"product_code\":\"2656\",\"product_name\":\"LEVOTHYROXINE 100MG\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"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\":\"3.4000\"},{\"id\":\"28888\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6624\",\"product_code\":\"2657\",\"product_name\":\"MIST POT SIT DARL\",\"option_id\":null,\"net_unit_cost\":\"9.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"68.6000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8000\",\"real_unit_cost\":\"9.8000\",\"quantity_received\":null,\"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\":\"9.8000\"},{\"id\":\"28889\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6625\",\"product_code\":\"2658\",\"product_name\":\"ARTHROTEC 75\",\"option_id\":null,\"net_unit_cost\":\"1.3300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.3300\",\"real_unit_cost\":\"1.3300\",\"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\":\"1.3300\"},{\"id\":\"28890\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6626\",\"product_code\":\"2659\",\"product_name\":\"SPANISH GARLIC\",\"option_id\":null,\"net_unit_cost\":\"4.3200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.3200\",\"real_unit_cost\":\"4.3200\",\"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\":\"4.3200\"},{\"id\":\"28891\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6627\",\"product_code\":\"2660\",\"product_name\":\"BELL ACTIVE\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28892\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6628\",\"product_code\":\"2661\",\"product_name\":\"WHEAT DRINK\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"28893\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6629\",\"product_code\":\"2662\",\"product_name\":\"FANMAX\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28894\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6630\",\"product_code\":\"2663\",\"product_name\":\"CERES DRINK\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28895\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6631\",\"product_code\":\"2664\",\"product_name\":\"CANNED MALT\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.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\":\"3.5000\"},{\"id\":\"28896\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6632\",\"product_code\":\"2665\",\"product_name\":\"DON SIMON\",\"option_id\":null,\"net_unit_cost\":\"38.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"38.5000\",\"real_unit_cost\":\"38.5000\",\"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\":\"38.5000\"},{\"id\":\"28897\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6633\",\"product_code\":\"2666\",\"product_name\":\"CAN COKE\\/FANTA\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.0000\"},{\"id\":\"28898\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6634\",\"product_code\":\"2667\",\"product_name\":\"BIO OIL B\\/S\",\"option_id\":null,\"net_unit_cost\":\"15.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\":\"45.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\"},{\"id\":\"28899\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6635\",\"product_code\":\"2668\",\"product_name\":\"BIO OIL S\\/S\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28900\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6636\",\"product_code\":\"2669\",\"product_name\":\"VASELINE CREAM B\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28901\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6637\",\"product_code\":\"2670\",\"product_name\":\"PEPSODENT CHARCOAL\",\"option_id\":null,\"net_unit_cost\":\"2.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.9400\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.6600\",\"real_unit_cost\":\"2.6600\",\"quantity_received\":null,\"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.6600\"},{\"id\":\"28902\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6638\",\"product_code\":\"2671\",\"product_name\":\"FOREVER EASY\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"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\":\"3.5000\"},{\"id\":\"28903\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6639\",\"product_code\":\"2672\",\"product_name\":\"PINEK 30\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.2000\",\"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\":\"4.2000\"},{\"id\":\"28904\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6640\",\"product_code\":\"2673\",\"product_name\":\"GANA BALM\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28905\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6641\",\"product_code\":\"2674\",\"product_name\":\"BASEVIT DROP\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"6.5000\"},{\"id\":\"28906\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6642\",\"product_code\":\"2675\",\"product_name\":\"ADAM,S SECRET\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28907\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6643\",\"product_code\":\"2676\",\"product_name\":\"CHOCOLATE DARK B\\/S\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"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\":\"28.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.5000\"},{\"id\":\"28908\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6644\",\"product_code\":\"2677\",\"product_name\":\"ZEEGHOUT\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"28909\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6645\",\"product_code\":\"2678\",\"product_name\":\"PURE HEAVEN\",\"option_id\":null,\"net_unit_cost\":\"3.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1000\",\"real_unit_cost\":\"3.1000\",\"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\":\"3.1000\"},{\"id\":\"28910\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6646\",\"product_code\":\"2679\",\"product_name\":\"FRUTELLI\",\"option_id\":null,\"net_unit_cost\":\"8.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.3000\",\"real_unit_cost\":\"8.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\":\"8.3000\"},{\"id\":\"28911\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6647\",\"product_code\":\"2680\",\"product_name\":\"VITNUT DRINK\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"10.5000\"},{\"id\":\"28912\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6648\",\"product_code\":\"2681\",\"product_name\":\"VITRAC\",\"option_id\":null,\"net_unit_cost\":\"5.4200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"59.6200\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4200\",\"real_unit_cost\":\"5.4200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.4200\"},{\"id\":\"28913\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6649\",\"product_code\":\"2682\",\"product_name\":\"JUVER JUICE\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-21\",\"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\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"28914\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6650\",\"product_code\":\"2683\",\"product_name\":\"VODY\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"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\":\"5.0000\"},{\"id\":\"28915\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6651\",\"product_code\":\"2684\",\"product_name\":\"LION CLUB ENERGY\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"620.0000\",\"quantity_balance\":\"31.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"31.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"20.0000\"},{\"id\":\"28916\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6652\",\"product_code\":\"2685\",\"product_name\":\"ADONKO ENERGY\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"28917\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6653\",\"product_code\":\"2686\",\"product_name\":\"FINEST B-12\",\"option_id\":null,\"net_unit_cost\":\"5.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8000\",\"real_unit_cost\":\"5.8000\",\"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\":\"5.8000\"},{\"id\":\"28918\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6654\",\"product_code\":\"2687\",\"product_name\":\"KISS DRINK\",\"option_id\":null,\"net_unit_cost\":\"6.6900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.6900\",\"real_unit_cost\":\"6.6900\",\"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\":\"6.6900\"},{\"id\":\"28919\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6655\",\"product_code\":\"2688\",\"product_name\":\"HENEKEIN\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28920\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6656\",\"product_code\":\"2689\",\"product_name\":\"HUNTERS\",\"option_id\":null,\"net_unit_cost\":\"4.1700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.1700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.1700\",\"real_unit_cost\":\"4.1700\",\"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\":\"4.1700\"},{\"id\":\"28921\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6657\",\"product_code\":\"2690\",\"product_name\":\"DON SANGRIA\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28922\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6658\",\"product_code\":\"2691\",\"product_name\":\"DON SIMON S\\/S\",\"option_id\":null,\"net_unit_cost\":\"2.9100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.8200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9100\",\"real_unit_cost\":\"2.9100\",\"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\":\"2.9100\"},{\"id\":\"28923\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6659\",\"product_code\":\"2692\",\"product_name\":\"HOLLANDIA\",\"option_id\":null,\"net_unit_cost\":\"2.0800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.1600\",\"quantity_balance\":\"27.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0800\",\"real_unit_cost\":\"2.0800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"27.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.0800\"},{\"id\":\"28924\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6660\",\"product_code\":\"2693\",\"product_name\":\"MALTA GUINESS\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"28925\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6661\",\"product_code\":\"2694\",\"product_name\":\"VOLTIC B\\/S\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28926\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6662\",\"product_code\":\"2695\",\"product_name\":\"VITRAC S\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28927\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6663\",\"product_code\":\"2696\",\"product_name\":\"FRAG HAND SOAP\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"28928\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6664\",\"product_code\":\"2697\",\"product_name\":\"DIAL BATHING GEL\",\"option_id\":null,\"net_unit_cost\":\"5.8700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8700\",\"real_unit_cost\":\"5.8700\",\"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\":\"5.8700\"},{\"id\":\"28929\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6665\",\"product_code\":\"2698\",\"product_name\":\"PSYLLIUM HUSK\",\"option_id\":null,\"net_unit_cost\":\"41.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"82.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"41.0000\",\"real_unit_cost\":\"41.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\":\"41.0000\"},{\"id\":\"28930\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6666\",\"product_code\":\"2699\",\"product_name\":\"VIT C*ZINC SRP\",\"option_id\":null,\"net_unit_cost\":\"7.0500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.0500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0500\",\"real_unit_cost\":\"7.0500\",\"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\":\"7.0500\"},{\"id\":\"28931\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6667\",\"product_code\":\"2700\",\"product_name\":\"IMPRESSER OIL\",\"option_id\":null,\"net_unit_cost\":\"25.5900\",\"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\":\"76.7700\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.5900\",\"real_unit_cost\":\"25.5900\",\"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\":\"25.5900\"},{\"id\":\"28932\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6668\",\"product_code\":\"2701\",\"product_name\":\"OSON,S GARLIC PEARLS\",\"option_id\":null,\"net_unit_cost\":\"45.8100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"45.8100\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"45.8100\",\"real_unit_cost\":\"45.8100\",\"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\":\"45.8100\"},{\"id\":\"28933\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6669\",\"product_code\":\"2702\",\"product_name\":\"BENILIN DRY\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"28934\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6670\",\"product_code\":\"2703\",\"product_name\":\"SUDOCREAM 250\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"28935\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6671\",\"product_code\":\"2704\",\"product_name\":\"PSYLLIUM HUSK\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"28936\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6672\",\"product_code\":\"2705\",\"product_name\":\"WASHCLOTH WIPE\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28937\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6673\",\"product_code\":\"2706\",\"product_name\":\"HONEST WIPE\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"28938\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6674\",\"product_code\":\"2707\",\"product_name\":\"BABY GANICS WIPES\",\"option_id\":null,\"net_unit_cost\":\"5.9300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.9300\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9300\",\"real_unit_cost\":\"5.9300\",\"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\":\"5.9300\"},{\"id\":\"28939\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6675\",\"product_code\":\"2708\",\"product_name\":\"MOUTHWASH\",\"option_id\":null,\"net_unit_cost\":\"1.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.8000\",\"real_unit_cost\":\"1.8000\",\"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\":\"1.8000\"},{\"id\":\"28940\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6676\",\"product_code\":\"2709\",\"product_name\":\"ABC *ZINC SRP\",\"option_id\":null,\"net_unit_cost\":\"2.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.2500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.2500\",\"real_unit_cost\":\"2.2500\",\"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\":\"2.2500\"},{\"id\":\"28941\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6677\",\"product_code\":\"2710\",\"product_name\":\"FANMAX S\\/S\",\"option_id\":null,\"net_unit_cost\":\"3.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.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\":\"3.3000\"},{\"id\":\"28942\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6678\",\"product_code\":\"2711\",\"product_name\":\"ALVARO\",\"option_id\":null,\"net_unit_cost\":\"2.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\":\"6.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.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\":\"2.0000\"},{\"id\":\"28943\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6679\",\"product_code\":\"2712\",\"product_name\":\"KRIS DRINK\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28944\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6680\",\"product_code\":\"2713\",\"product_name\":\"ORAL B BRUSH\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28945\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6681\",\"product_code\":\"2714\",\"product_name\":\"DG BATHING GEL\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28946\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6682\",\"product_code\":\"2715\",\"product_name\":\"WHITE RAIN BATH\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"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\":\"7.0000\"},{\"id\":\"28947\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6683\",\"product_code\":\"2716\",\"product_name\":\"SUNSHINE BATH\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28948\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6684\",\"product_code\":\"2717\",\"product_name\":\"PJ MASK\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28949\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6685\",\"product_code\":\"2718\",\"product_name\":\"NIVEA CARE *SPARKLE\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28950\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6686\",\"product_code\":\"2719\",\"product_name\":\"BONDI SANDS LOTION\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28951\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6687\",\"product_code\":\"2720\",\"product_name\":\"BABY LOTION\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28952\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6688\",\"product_code\":\"2721\",\"product_name\":\"KERATIN CONDITIONER\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"28953\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6689\",\"product_code\":\"2722\",\"product_name\":\"HUGGIES WIPE\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"250.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"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\":\"5.0000\"},{\"id\":\"28954\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6690\",\"product_code\":\"2723\",\"product_name\":\"FEEDING BOT\",\"option_id\":null,\"net_unit_cost\":\"350.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"350.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"350.0000\",\"real_unit_cost\":\"350.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\":\"350.0000\"},{\"id\":\"28955\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6691\",\"product_code\":\"2724\",\"product_name\":\"DELIVERY MAT\",\"option_id\":null,\"net_unit_cost\":\"75.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"75.0000\",\"real_unit_cost\":\"75.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\":\"75.0000\"},{\"id\":\"28956\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6692\",\"product_code\":\"2725\",\"product_name\":\"BP MONITOR\",\"option_id\":null,\"net_unit_cost\":\"3.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.8600\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9800\",\"real_unit_cost\":\"3.9800\",\"quantity_received\":null,\"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\":\"3.9800\"},{\"id\":\"28957\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6693\",\"product_code\":\"2726\",\"product_name\":\"BREAST PUMP\",\"option_id\":null,\"net_unit_cost\":\"4.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"74.7000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9800\",\"real_unit_cost\":\"4.9800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.9800\"},{\"id\":\"28958\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6694\",\"product_code\":\"2727\",\"product_name\":\"STOPKOF EXP JNR\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28959\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6695\",\"product_code\":\"2728\",\"product_name\":\"STOPKOF EXP ADULT\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.0000\"},{\"id\":\"28960\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6696\",\"product_code\":\"2729\",\"product_name\":\"EASY ON\",\"option_id\":null,\"net_unit_cost\":\"6.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.9000\",\"real_unit_cost\":\"6.9000\",\"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\":\"6.9000\"},{\"id\":\"28961\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6697\",\"product_code\":\"2730\",\"product_name\":\"SAMALIN LOZ\",\"option_id\":null,\"net_unit_cost\":\"80.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"80.0000\",\"real_unit_cost\":\"80.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\":\"80.0000\"},{\"id\":\"28962\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6698\",\"product_code\":\"2731\",\"product_name\":\"KLIRE ANTACID S\\/S\",\"option_id\":null,\"net_unit_cost\":\"11.1200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.4800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.1200\",\"real_unit_cost\":\"11.1200\",\"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\":\"11.1200\"},{\"id\":\"28963\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6699\",\"product_code\":\"2732\",\"product_name\":\"ON CALL PLUS\",\"option_id\":null,\"net_unit_cost\":\"0.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"125.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"62.5000\",\"quantity_balance\":\"125.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5000\",\"real_unit_cost\":\"0.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"125.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.5000\"},{\"id\":\"28964\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6700\",\"product_code\":\"2733\",\"product_name\":\"FERROUS SULPHATE\",\"option_id\":null,\"net_unit_cost\":\"17.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.6000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.6000\",\"real_unit_cost\":\"17.6000\",\"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\":\"17.6000\"},{\"id\":\"28965\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6701\",\"product_code\":\"2734\",\"product_name\":\"GENTA INJ\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"28966\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6702\",\"product_code\":\"2735\",\"product_name\":\"VENTOLIN SRP\",\"option_id\":null,\"net_unit_cost\":\"15.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.2000\",\"real_unit_cost\":\"15.2000\",\"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\":\"15.2000\"},{\"id\":\"28967\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6703\",\"product_code\":\"2736\",\"product_name\":\"VITALIA S\\/S\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"126.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.0000\",\"quantity_received\":null,\"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\":\"18.0000\"},{\"id\":\"28968\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6704\",\"product_code\":\"2737\",\"product_name\":\"LIVOPAT\",\"option_id\":null,\"net_unit_cost\":\"18.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\":\"54.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"28969\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6705\",\"product_code\":\"2738\",\"product_name\":\"DASTY DEGRESSER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28970\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6706\",\"product_code\":\"2739\",\"product_name\":\"FEEDING BOT BIG\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"28971\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6707\",\"product_code\":\"2740\",\"product_name\":\"FEDING M\\/S\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28972\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6708\",\"product_code\":\"2741\",\"product_name\":\"FEEDING S\\/S\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28973\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6709\",\"product_code\":\"2742\",\"product_name\":\"GLASS FEEDING B\\/S\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"28974\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6710\",\"product_code\":\"2743\",\"product_name\":\"GLASS S\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28975\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6711\",\"product_code\":\"2744\",\"product_name\":\"NIPPLE\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"28976\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6712\",\"product_code\":\"2745\",\"product_name\":\"AZILEX SUSP\",\"option_id\":null,\"net_unit_cost\":\"7.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.4000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.4000\",\"real_unit_cost\":\"7.4000\",\"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\":\"7.4000\"},{\"id\":\"28977\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6713\",\"product_code\":\"2746\",\"product_name\":\"GBEDEMA GARLIC\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-6.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"28978\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6714\",\"product_code\":\"2747\",\"product_name\":\"AZITEX CAPS\",\"option_id\":null,\"net_unit_cost\":\"1.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"95.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9000\",\"real_unit_cost\":\"1.9000\",\"quantity_received\":null,\"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\":\"1.9000\"},{\"id\":\"28979\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6715\",\"product_code\":\"2748\",\"product_name\":\"GLUCOLIFE C\",\"option_id\":null,\"net_unit_cost\":\"8.8500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.8500\",\"real_unit_cost\":\"8.8500\",\"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\":\"8.8500\"},{\"id\":\"28980\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6716\",\"product_code\":\"2749\",\"product_name\":\"ON CALL STRIPS\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"28981\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6717\",\"product_code\":\"2750\",\"product_name\":\"VIT E 200\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"28982\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6718\",\"product_code\":\"2751\",\"product_name\":\"CUSSON,S OIL B\\/S\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"28983\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6719\",\"product_code\":\"2752\",\"product_name\":\"CUSSON,S OIL S\\/S\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-8.5000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"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\":\"-1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"28984\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6720\",\"product_code\":\"2753\",\"product_name\":\"LUX SOAP\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.4000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.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\":\"4.2000\"},{\"id\":\"28985\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6721\",\"product_code\":\"2754\",\"product_name\":\"AIRFRESHER\",\"option_id\":null,\"net_unit_cost\":\"0.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.6000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6000\",\"real_unit_cost\":\"0.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6000\"},{\"id\":\"28986\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6722\",\"product_code\":\"2755\",\"product_name\":\"GEISHA SOAP\",\"option_id\":null,\"net_unit_cost\":\"5.8900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8900\",\"real_unit_cost\":\"5.8900\",\"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\":\"5.8900\"},{\"id\":\"28987\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6723\",\"product_code\":\"2756\",\"product_name\":\"WOODS\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28988\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6724\",\"product_code\":\"2757\",\"product_name\":\"ZYMAX TAB\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"28989\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6725\",\"product_code\":\"2758\",\"product_name\":\"QUEEN LOTION BBS\",\"option_id\":null,\"net_unit_cost\":\"7.4800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"52.3600\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.4800\",\"real_unit_cost\":\"7.4800\",\"quantity_received\":null,\"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\":\"7.4800\"},{\"id\":\"28990\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6726\",\"product_code\":\"2759\",\"product_name\":\"EPSON SALT\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-6.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"28991\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6727\",\"product_code\":\"2760\",\"product_name\":\"TEGRETOL 200\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"28992\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6728\",\"product_code\":\"2761\",\"product_name\":\"SALINE NASAL\",\"option_id\":null,\"net_unit_cost\":\"36.8600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"36.8600\",\"real_unit_cost\":\"36.8600\",\"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\":\"36.8600\"},{\"id\":\"28993\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6729\",\"product_code\":\"2762\",\"product_name\":\"3CP\",\"option_id\":null,\"net_unit_cost\":\"4.8500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.4000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8500\",\"real_unit_cost\":\"4.8500\",\"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\":\"4.8500\"},{\"id\":\"28994\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6730\",\"product_code\":\"2763\",\"product_name\":\"GALVUS 50MG\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"28995\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6731\",\"product_code\":\"2764\",\"product_name\":\"FEROFIX\",\"option_id\":null,\"net_unit_cost\":\"35.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-21\",\"status\":\"received\",\"unit_cost\":\"35.5000\",\"real_unit_cost\":\"35.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\":\"35.5000\"},{\"id\":\"28996\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6732\",\"product_code\":\"2765\",\"product_name\":\"CALAMINE LOTION LOCAL\",\"option_id\":null,\"net_unit_cost\":\"40.2500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"40.2500\",\"real_unit_cost\":\"40.2500\",\"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\":\"40.2500\"},{\"id\":\"28997\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6733\",\"product_code\":\"2766\",\"product_name\":\"PEPTO BIS 240ML\",\"option_id\":null,\"net_unit_cost\":\"4.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.3000\",\"quantity_balance\":\"21.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3000\",\"real_unit_cost\":\"4.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3000\"},{\"id\":\"28998\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6734\",\"product_code\":\"2767\",\"product_name\":\"DUREX PLAY GEL\",\"option_id\":null,\"net_unit_cost\":\"1.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.8900\",\"quantity_balance\":\"23.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.4300\",\"real_unit_cost\":\"1.4300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.4300\"},{\"id\":\"28999\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6735\",\"product_code\":\"2768\",\"product_name\":\"EXFORGE 5\\/160\\/12.5\",\"option_id\":null,\"net_unit_cost\":\"5.8100\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.8100\",\"real_unit_cost\":\"5.8100\",\"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\":\"5.8100\"},{\"id\":\"29000\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6736\",\"product_code\":\"2769\",\"product_name\":\"LOFNAC 100MG\",\"option_id\":null,\"net_unit_cost\":\"1.0700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.5200\",\"quantity_balance\":\"36.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.0700\",\"real_unit_cost\":\"1.0700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"36.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0700\"},{\"id\":\"29001\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6737\",\"product_code\":\"2770\",\"product_name\":\"STIMUROL SYR\",\"option_id\":null,\"net_unit_cost\":\"0.4800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.8000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4800\",\"real_unit_cost\":\"0.4800\",\"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\":\"0.4800\"},{\"id\":\"29002\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6738\",\"product_code\":\"2771\",\"product_name\":\"CHLODIAZEPOX\",\"option_id\":null,\"net_unit_cost\":\"16.6600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"16.6600\",\"real_unit_cost\":\"16.6600\",\"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\":\"16.6600\"},{\"id\":\"29003\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6739\",\"product_code\":\"2772\",\"product_name\":\"O-FORMIN 500\",\"option_id\":null,\"net_unit_cost\":\"15.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"15.6000\",\"real_unit_cost\":\"15.6000\",\"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\":\"15.6000\"},{\"id\":\"29004\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6740\",\"product_code\":\"2773\",\"product_name\":\"REDIN  PLUS CAPS\",\"option_id\":null,\"net_unit_cost\":\"21.5600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"43.1200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"21.5600\",\"real_unit_cost\":\"21.5600\",\"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\":\"21.5600\"},{\"id\":\"29005\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6741\",\"product_code\":\"2774\",\"product_name\":\"REDIN LIQ\",\"option_id\":null,\"net_unit_cost\":\"73.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"146.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"73.3000\",\"real_unit_cost\":\"73.3000\",\"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\":\"73.3000\"},{\"id\":\"29006\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6742\",\"product_code\":\"2775\",\"product_name\":\"BETOPTIC EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"55.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"55.1000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"55.1000\",\"real_unit_cost\":\"55.1000\",\"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\":\"55.1000\"},{\"id\":\"29007\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6743\",\"product_code\":\"2776\",\"product_name\":\"PROSTAN EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"3.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.1500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4300\",\"real_unit_cost\":\"3.4300\",\"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\":\"3.4300\"},{\"id\":\"29008\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6744\",\"product_code\":\"2777\",\"product_name\":\"DALACIN SRP\",\"option_id\":null,\"net_unit_cost\":\"21.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"126.6000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"21.1000\",\"real_unit_cost\":\"21.1000\",\"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\":\"21.1000\"},{\"id\":\"29009\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6745\",\"product_code\":\"2778\",\"product_name\":\"KEPTRILS LOZ\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"29010\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6746\",\"product_code\":\"2779\",\"product_name\":\"EUTYMOL PASTE\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"29011\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6747\",\"product_code\":\"2780\",\"product_name\":\"DIGESTIVE\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"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\":\"7.0000\"},{\"id\":\"29012\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6748\",\"product_code\":\"2781\",\"product_name\":\"RICH TEA\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"29013\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6749\",\"product_code\":\"2782\",\"product_name\":\"JACOB,S\",\"option_id\":null,\"net_unit_cost\":\"3.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.3000\",\"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\":\"3.3000\"},{\"id\":\"29014\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6750\",\"product_code\":\"2783\",\"product_name\":\"ROMA CREAM CRACKERS\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"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\":\"19.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"6.5000\"},{\"id\":\"29015\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6751\",\"product_code\":\"2784\",\"product_name\":\"ADOM  OINT\",\"option_id\":null,\"net_unit_cost\":\"1.9600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.9600\",\"real_unit_cost\":\"1.9600\",\"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\":\"1.9600\"},{\"id\":\"29016\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6752\",\"product_code\":\"2785\",\"product_name\":\"KWAE FRESH\",\"option_id\":null,\"net_unit_cost\":\"38.7600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"38.7600\",\"real_unit_cost\":\"38.7600\",\"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\":\"38.7600\"},{\"id\":\"29017\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6753\",\"product_code\":\"2786\",\"product_name\":\"CHLOR EYE OINT\",\"option_id\":null,\"net_unit_cost\":\"0.4300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"85.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.5500\",\"quantity_balance\":\"85.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4300\",\"real_unit_cost\":\"0.4300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"85.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4300\"},{\"id\":\"29018\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6754\",\"product_code\":\"2787\",\"product_name\":\"LEVOFLOXACIN 500\",\"option_id\":null,\"net_unit_cost\":\"33.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\":\"99.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.0000\",\"real_unit_cost\":\"33.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\":\"33.0000\"},{\"id\":\"29019\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6755\",\"product_code\":\"2788\",\"product_name\":\"ACTILIFE CAPS\",\"option_id\":null,\"net_unit_cost\":\"15.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-21\",\"status\":\"received\",\"unit_cost\":\"15.5000\",\"real_unit_cost\":\"15.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\":\"15.5000\"},{\"id\":\"29020\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6756\",\"product_code\":\"2789\",\"product_name\":\"FERTILO FORTE CAPS\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"44.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"29021\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6757\",\"product_code\":\"2790\",\"product_name\":\"WELLTEEN HER\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"121.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"29022\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6758\",\"product_code\":\"2791\",\"product_name\":\"ALWAYS MAXI DOUBLE\",\"option_id\":null,\"net_unit_cost\":\"7.1000\",\"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\":\"21.3000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.1000\",\"real_unit_cost\":\"7.1000\",\"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\":\"7.1000\"},{\"id\":\"29023\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6759\",\"product_code\":\"2792\",\"product_name\":\"LISINOPRIL 10 CRESCENT\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"29024\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6760\",\"product_code\":\"2793\",\"product_name\":\"MENTHODEX LOZ\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.5000\"},{\"id\":\"29025\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6761\",\"product_code\":\"2794\",\"product_name\":\"ARTHROSAMINE\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"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\":\"13.8000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"29026\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6762\",\"product_code\":\"2795\",\"product_name\":\"CILOXAN EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"5.5900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"78.2600\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5900\",\"real_unit_cost\":\"5.5900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.5900\"},{\"id\":\"29027\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6763\",\"product_code\":\"2796\",\"product_name\":\"AMOXIL SUSP LUEX\",\"option_id\":null,\"net_unit_cost\":\"0.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"126.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"124.7400\",\"quantity_balance\":\"126.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9900\",\"real_unit_cost\":\"0.9900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"126.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.9900\"},{\"id\":\"29028\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6764\",\"product_code\":\"2797\",\"product_name\":\"NEXCOFER 125ML\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29029\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6765\",\"product_code\":\"2798\",\"product_name\":\"PARA EXETER TAB\",\"option_id\":null,\"net_unit_cost\":\"6.6700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.6700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.6700\",\"real_unit_cost\":\"6.6700\",\"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\":\"6.6700\"},{\"id\":\"29030\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6766\",\"product_code\":\"2799\",\"product_name\":\"INFA V OINT\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29031\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6767\",\"product_code\":\"2800\",\"product_name\":\"CLARITINE TAB\",\"option_id\":null,\"net_unit_cost\":\"2.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9000\",\"real_unit_cost\":\"2.9000\",\"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\":\"2.9000\"},{\"id\":\"29032\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6768\",\"product_code\":\"2801\",\"product_name\":\"HOLANDIAS S\\/S\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"29033\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6769\",\"product_code\":\"2802\",\"product_name\":\"KIDS BRUSH COLG\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29034\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6770\",\"product_code\":\"2803\",\"product_name\":\"FLUCLOX 250 ESKAY\",\"option_id\":null,\"net_unit_cost\":\"56.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"56.5500\",\"real_unit_cost\":\"56.5500\",\"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\":\"56.5500\"},{\"id\":\"29035\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6771\",\"product_code\":\"2804\",\"product_name\":\"GLASS CLEANER\",\"option_id\":null,\"net_unit_cost\":\"3.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.6000\",\"real_unit_cost\":\"3.6000\",\"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\":\"3.6000\"},{\"id\":\"29036\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6772\",\"product_code\":\"2805\",\"product_name\":\"ZINNAT SUSP 50 ML\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29037\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6773\",\"product_code\":\"2806\",\"product_name\":\"SMIRNOFF\",\"option_id\":null,\"net_unit_cost\":\"27.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.0000\",\"real_unit_cost\":\"27.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\":\"27.0000\"},{\"id\":\"29038\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6774\",\"product_code\":\"2807\",\"product_name\":\"EDA BOKOO\",\"option_id\":null,\"net_unit_cost\":\"34.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"34.0000\",\"real_unit_cost\":\"34.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\":\"34.0000\"},{\"id\":\"29039\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6775\",\"product_code\":\"2808\",\"product_name\":\"NIDO TIN\",\"option_id\":null,\"net_unit_cost\":\"36.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"36.0000\"},{\"id\":\"29040\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6776\",\"product_code\":\"2809\",\"product_name\":\"NAN 1@2\",\"option_id\":null,\"net_unit_cost\":\"43.5000\",\"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\":\"130.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"43.5000\",\"real_unit_cost\":\"43.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\":\"43.5000\"},{\"id\":\"29041\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6777\",\"product_code\":\"2810\",\"product_name\":\"NAN COMFORT 1@2\",\"option_id\":null,\"net_unit_cost\":\"3.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.6600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.6600\",\"real_unit_cost\":\"3.6600\",\"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\":\"3.6600\"},{\"id\":\"29042\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6778\",\"product_code\":\"2811\",\"product_name\":\"SMA 1@2\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0000\"},{\"id\":\"29043\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6779\",\"product_code\":\"2812\",\"product_name\":\"MILO DRINK\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29044\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6780\",\"product_code\":\"2813\",\"product_name\":\"MILO TIN\",\"option_id\":null,\"net_unit_cost\":\"8.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\":\"24.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29045\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6781\",\"product_code\":\"2814\",\"product_name\":\"NESCAFE 200G\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.5000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29046\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6782\",\"product_code\":\"2815\",\"product_name\":\"NESCAFE 50G\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-3.5000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"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\":\"3.5000\"},{\"id\":\"29047\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6783\",\"product_code\":\"2816\",\"product_name\":\"REXONA SOAP\",\"option_id\":null,\"net_unit_cost\":\"42.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"42.0000\",\"real_unit_cost\":\"42.0000\",\"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\":\"42.0000\"},{\"id\":\"29048\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6784\",\"product_code\":\"2817\",\"product_name\":\"SIVODERM LOTION\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"100.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"29049\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6785\",\"product_code\":\"2818\",\"product_name\":\"XYLO ACINO ADULT\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29050\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6786\",\"product_code\":\"2819\",\"product_name\":\"DIAMICROM 60MG\",\"option_id\":null,\"net_unit_cost\":\"200.1000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"200.1000\",\"real_unit_cost\":\"200.1000\",\"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\":\"200.1000\"},{\"id\":\"29051\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6787\",\"product_code\":\"2820\",\"product_name\":\"CAFEGORT\",\"option_id\":null,\"net_unit_cost\":\"16.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"16.4000\"},{\"id\":\"29052\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6788\",\"product_code\":\"2821\",\"product_name\":\"XARELTO 10MG\",\"option_id\":null,\"net_unit_cost\":\"4.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.3200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6600\",\"real_unit_cost\":\"4.6600\",\"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\":\"4.6600\"},{\"id\":\"29053\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6789\",\"product_code\":\"2822\",\"product_name\":\"GLUCOPHAGE\",\"option_id\":null,\"net_unit_cost\":\"2.0800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.6400\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0800\",\"real_unit_cost\":\"2.0800\",\"quantity_received\":null,\"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\":\"2.0800\"},{\"id\":\"29054\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6790\",\"product_code\":\"2823\",\"product_name\":\"MALIN BABY\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"29055\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6791\",\"product_code\":\"2824\",\"product_name\":\"MALIN TAB\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.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\":\"2.0000\"},{\"id\":\"29056\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6792\",\"product_code\":\"2825\",\"product_name\":\"SKIN ESSENTIALS\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"29057\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6793\",\"product_code\":\"2826\",\"product_name\":\"FLORA TISSUE B\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29058\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6794\",\"product_code\":\"2827\",\"product_name\":\"WAIST BELT\",\"option_id\":null,\"net_unit_cost\":\"0.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"35.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6000\",\"real_unit_cost\":\"0.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6000\"},{\"id\":\"29059\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6795\",\"product_code\":\"2828\",\"product_name\":\"AMOKSIKLAV INJ\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"153.0000\",\"quantity_balance\":\"45.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"45.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.4000\"},{\"id\":\"29060\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6796\",\"product_code\":\"2829\",\"product_name\":\"CRYSTALINE PENICILLIN\",\"option_id\":null,\"net_unit_cost\":\"2.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.6000\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.3000\",\"real_unit_cost\":\"2.3000\",\"quantity_received\":null,\"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\":\"2.3000\"},{\"id\":\"29061\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6797\",\"product_code\":\"2830\",\"product_name\":\"HYDROCORT INJ\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"120.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":null,\"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\":\"6.0000\"},{\"id\":\"29062\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6798\",\"product_code\":\"2831\",\"product_name\":\"NOSPA INJ\",\"option_id\":null,\"net_unit_cost\":\"21.1300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.2600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"21.1300\",\"real_unit_cost\":\"21.1300\",\"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\":\"21.1300\"},{\"id\":\"29063\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6799\",\"product_code\":\"2832\",\"product_name\":\"BEDMAT\",\"option_id\":null,\"net_unit_cost\":\"2.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.1000\",\"real_unit_cost\":\"2.1000\",\"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\":\"2.1000\"},{\"id\":\"29064\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6800\",\"product_code\":\"2833\",\"product_name\":\"LAVET\",\"option_id\":null,\"net_unit_cost\":\"5.8300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.6600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.8300\",\"real_unit_cost\":\"5.8300\",\"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\":\"5.8300\"},{\"id\":\"29065\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6801\",\"product_code\":\"2834\",\"product_name\":\"CIPROCIR EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"10.0400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"10.0400\",\"real_unit_cost\":\"10.0400\",\"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.0400\"},{\"id\":\"29066\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6802\",\"product_code\":\"2835\",\"product_name\":\"LUCOZADE 380\",\"option_id\":null,\"net_unit_cost\":\"29.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"58.7000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.3500\",\"real_unit_cost\":\"29.3500\",\"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\":\"29.3500\"},{\"id\":\"29067\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6803\",\"product_code\":\"2836\",\"product_name\":\"ANTACID MIX\",\"option_id\":null,\"net_unit_cost\":\"0.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.6000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7000\",\"real_unit_cost\":\"0.7000\",\"quantity_received\":null,\"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.7000\"},{\"id\":\"29068\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6804\",\"product_code\":\"2837\",\"product_name\":\"EVANOVA\",\"option_id\":null,\"net_unit_cost\":\"4.0500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.0500\",\"real_unit_cost\":\"4.0500\",\"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\":\"4.0500\"},{\"id\":\"29069\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6805\",\"product_code\":\"2838\",\"product_name\":\"APC 10*10\",\"option_id\":null,\"net_unit_cost\":\"10.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.8000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.4000\",\"real_unit_cost\":\"10.4000\",\"quantity_received\":null,\"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\":\"10.4000\"},{\"id\":\"29070\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6806\",\"product_code\":\"2839\",\"product_name\":\"MIST MAG DARL\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"150.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29071\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6807\",\"product_code\":\"2840\",\"product_name\":\"ANTACID BELLS\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"315.0000\",\"quantity_balance\":\"21.0000\",\"date\":\"2021-08-21\",\"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\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29072\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6808\",\"product_code\":\"2841\",\"product_name\":\"AMOS VITAL VITC\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"29073\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6809\",\"product_code\":\"2842\",\"product_name\":\"PROLIFE VITC\",\"option_id\":null,\"net_unit_cost\":\"4.2700\",\"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\":\"12.8100\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.2700\",\"real_unit_cost\":\"4.2700\",\"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\":\"4.2700\"},{\"id\":\"29074\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6810\",\"product_code\":\"2843\",\"product_name\":\"BG GLUTAMIN PLUS\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.5000\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5000\"},{\"id\":\"29075\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6811\",\"product_code\":\"2844\",\"product_name\":\"MYCOVIN 500\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"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\":\"13.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29076\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6812\",\"product_code\":\"2845\",\"product_name\":\"MMT\",\"option_id\":null,\"net_unit_cost\":\"2.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"120.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4000\",\"real_unit_cost\":\"2.4000\",\"quantity_received\":null,\"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\":\"2.4000\"},{\"id\":\"29077\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6813\",\"product_code\":\"2846\",\"product_name\":\"SEFLOX EAR\\/EYE\",\"option_id\":null,\"net_unit_cost\":\"39.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"39.0000\",\"real_unit_cost\":\"39.0000\",\"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\":\"39.0000\"},{\"id\":\"29078\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6814\",\"product_code\":\"2847\",\"product_name\":\"SELECT\",\"option_id\":null,\"net_unit_cost\":\"36.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"36.0000\"},{\"id\":\"29079\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6815\",\"product_code\":\"2848\",\"product_name\":\"apple cider natural\",\"option_id\":null,\"net_unit_cost\":\"25.8300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.6600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.8300\",\"real_unit_cost\":\"25.8300\",\"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\":\"25.8300\"},{\"id\":\"29080\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6816\",\"product_code\":\"2849\",\"product_name\":\"DYKLO SPRAY DICLO\",\"option_id\":null,\"net_unit_cost\":\"77.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"386.2500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"77.2500\",\"real_unit_cost\":\"77.2500\",\"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\":\"77.2500\"},{\"id\":\"29081\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6817\",\"product_code\":\"2850\",\"product_name\":\"SPIRONOLACTONE 100mg\",\"option_id\":null,\"net_unit_cost\":\"47.7500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"47.7500\",\"real_unit_cost\":\"47.7500\",\"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\":\"47.7500\"},{\"id\":\"29082\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6818\",\"product_code\":\"2851\",\"product_name\":\"VIAGRA IOOMG\",\"option_id\":null,\"net_unit_cost\":\"6.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.4000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9000\",\"real_unit_cost\":\"6.9000\",\"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\":\"6.9000\"},{\"id\":\"29083\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6819\",\"product_code\":\"2852\",\"product_name\":\"VIAGRA 50MG\",\"option_id\":null,\"net_unit_cost\":\"7.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.3000\",\"real_unit_cost\":\"7.3000\",\"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\":\"7.3000\"},{\"id\":\"29084\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6820\",\"product_code\":\"2853\",\"product_name\":\"RED BULL\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29085\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6821\",\"product_code\":\"2854\",\"product_name\":\"BLUE JEANS DRINKS\",\"option_id\":null,\"net_unit_cost\":\"6.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"29086\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6822\",\"product_code\":\"2855\",\"product_name\":\"DON GRACIA\",\"option_id\":null,\"net_unit_cost\":\"0.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"82.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.7800\",\"quantity_balance\":\"82.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2900\",\"real_unit_cost\":\"0.2900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"82.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2900\"},{\"id\":\"29087\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6823\",\"product_code\":\"2856\",\"product_name\":\"VITRAC PACK DRINK\",\"option_id\":null,\"net_unit_cost\":\"1.1400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.9400\",\"quantity_balance\":\"21.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.1400\",\"real_unit_cost\":\"1.1400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.1400\"},{\"id\":\"29088\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6824\",\"product_code\":\"2857\",\"product_name\":\"ASPIRIN LOCAL\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-7.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.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\":\"3.5000\"},{\"id\":\"29089\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6825\",\"product_code\":\"2858\",\"product_name\":\"LOCID\",\"option_id\":null,\"net_unit_cost\":\"7.8500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"180.5500\",\"quantity_balance\":\"23.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.8500\",\"real_unit_cost\":\"7.8500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.8500\"},{\"id\":\"29090\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6826\",\"product_code\":\"2859\",\"product_name\":\"PARAZONE\",\"option_id\":null,\"net_unit_cost\":\"0.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"346.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"328.7000\",\"quantity_balance\":\"346.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9500\",\"real_unit_cost\":\"0.9500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"346.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.9500\"},{\"id\":\"29091\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6827\",\"product_code\":\"2860\",\"product_name\":\"NIFECARD 30\",\"option_id\":null,\"net_unit_cost\":\"4.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.9900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9900\",\"real_unit_cost\":\"4.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\":\"4.9900\"},{\"id\":\"29092\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6828\",\"product_code\":\"2861\",\"product_name\":\"ALEVE PAIN KILLER\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"29093\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6829\",\"product_code\":\"2862\",\"product_name\":\"COCODAMOL\",\"option_id\":null,\"net_unit_cost\":\"38.1200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"76.2400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"38.1200\",\"real_unit_cost\":\"38.1200\",\"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\":\"38.1200\"},{\"id\":\"29094\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6830\",\"product_code\":\"2863\",\"product_name\":\"CALAMINE LTN BELLS\",\"option_id\":null,\"net_unit_cost\":\"0.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"142.4000\",\"quantity_balance\":\"160.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8900\",\"real_unit_cost\":\"0.8900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"160.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8900\"},{\"id\":\"29095\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6831\",\"product_code\":\"2864\",\"product_name\":\"VITANE SRP\",\"option_id\":null,\"net_unit_cost\":\"10.6300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"10.6300\",\"real_unit_cost\":\"10.6300\",\"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.6300\"},{\"id\":\"29096\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6832\",\"product_code\":\"2865\",\"product_name\":\"ZURION\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29097\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6833\",\"product_code\":\"2866\",\"product_name\":\"SPIRONOLAC ECL\",\"option_id\":null,\"net_unit_cost\":\"13.9400\",\"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\":\"41.8200\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.9400\",\"real_unit_cost\":\"13.9400\",\"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\":\"13.9400\"},{\"id\":\"29098\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6834\",\"product_code\":\"2867\",\"product_name\":\"TOM BROWN\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":null,\"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\":\"5.0000\"},{\"id\":\"29099\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6835\",\"product_code\":\"2868\",\"product_name\":\"ASTYFER\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"29100\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6836\",\"product_code\":\"2869\",\"product_name\":\"SOFTCARE PAD\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"4.5000\"},{\"id\":\"29101\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6837\",\"product_code\":\"2870\",\"product_name\":\"EVERSHEEN CREAM SMALL\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"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\":\"16.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"29102\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6838\",\"product_code\":\"2871\",\"product_name\":\"LEMONVATE\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29103\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6839\",\"product_code\":\"2872\",\"product_name\":\"IMPERIAL LATHER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"29104\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6840\",\"product_code\":\"2873\",\"product_name\":\"ORO INSECTICIDE\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29105\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6841\",\"product_code\":\"2874\",\"product_name\":\"SPRAY STARCH\",\"option_id\":null,\"net_unit_cost\":\"4.1000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.1000\",\"real_unit_cost\":\"4.1000\",\"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\":\"4.1000\"},{\"id\":\"29106\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6842\",\"product_code\":\"2875\",\"product_name\":\"OCEAN SPRAY BOTTLE\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"29107\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6843\",\"product_code\":\"2876\",\"product_name\":\"OCEAN SPRAY CAN\",\"option_id\":null,\"net_unit_cost\":\"2.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-36.4000\",\"quantity_balance\":\"-13.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.8000\",\"real_unit_cost\":\"2.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"-13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.8000\"},{\"id\":\"29108\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6844\",\"product_code\":\"2877\",\"product_name\":\"ALOE VERA DRINK\",\"option_id\":null,\"net_unit_cost\":\"13.5000\",\"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\":\"40.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"13.5000\"},{\"id\":\"29109\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6845\",\"product_code\":\"2878\",\"product_name\":\"JUVER S\\/S BOTTLE\",\"option_id\":null,\"net_unit_cost\":\"30.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\":\"90.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"30.0000\"},{\"id\":\"29110\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6846\",\"product_code\":\"2879\",\"product_name\":\"AFRO MOSES\",\"option_id\":null,\"net_unit_cost\":\"5.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"265.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"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\":\"50.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.3000\"},{\"id\":\"29111\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6847\",\"product_code\":\"2880\",\"product_name\":\"PROSTACURE X\",\"option_id\":null,\"net_unit_cost\":\"3.5400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.5400\",\"real_unit_cost\":\"3.5400\",\"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\":\"3.5400\"},{\"id\":\"29112\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6848\",\"product_code\":\"2881\",\"product_name\":\"PROXIMERA 500G\",\"option_id\":null,\"net_unit_cost\":\"7.8600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.8600\",\"real_unit_cost\":\"7.8600\",\"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\":\"7.8600\"},{\"id\":\"29113\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6849\",\"product_code\":\"2882\",\"product_name\":\"GASTRON SUSP 100ML\",\"option_id\":null,\"net_unit_cost\":\"0.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"62.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.2000\",\"quantity_balance\":\"62.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1000\",\"real_unit_cost\":\"0.1000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"62.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.1000\"},{\"id\":\"29114\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6850\",\"product_code\":\"2883\",\"product_name\":\"GASTRONE PLUS\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.5000\"},{\"id\":\"29115\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6851\",\"product_code\":\"2884\",\"product_name\":\"TOFFEES\",\"option_id\":null,\"net_unit_cost\":\"7.3600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.3600\",\"real_unit_cost\":\"7.3600\",\"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\":\"7.3600\"},{\"id\":\"29116\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6852\",\"product_code\":\"2885\",\"product_name\":\"METHYLATED SP B\\/S\",\"option_id\":null,\"net_unit_cost\":\"52.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-52.9900\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.9900\",\"real_unit_cost\":\"52.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\":\"52.9900\"},{\"id\":\"29117\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6853\",\"product_code\":\"2886\",\"product_name\":\"MAGACID SUSP\",\"option_id\":null,\"net_unit_cost\":\"46.2600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"46.2600\",\"real_unit_cost\":\"46.2600\",\"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\":\"46.2600\"},{\"id\":\"29118\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6854\",\"product_code\":\"2887\",\"product_name\":\"S\\/SEAS JOINT SUPPLEX\",\"option_id\":null,\"net_unit_cost\":\"1.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"42.0000\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5000\",\"real_unit_cost\":\"1.5000\",\"quantity_received\":null,\"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\":\"1.5000\"},{\"id\":\"29119\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6855\",\"product_code\":\"2888\",\"product_name\":\"S\\/SEAS C.L.O CAPS\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29120\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6856\",\"product_code\":\"2889\",\"product_name\":\"REDSUN\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"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\":\"2.0000\"},{\"id\":\"29121\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6857\",\"product_code\":\"2890\",\"product_name\":\"NIBIMA\",\"option_id\":null,\"net_unit_cost\":\"1.1400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.9000\",\"quantity_balance\":\"35.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.1400\",\"real_unit_cost\":\"1.1400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.1400\"},{\"id\":\"29122\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6858\",\"product_code\":\"2891\",\"product_name\":\"VITAGO B\\/S\",\"option_id\":null,\"net_unit_cost\":\"1.4500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.4500\",\"real_unit_cost\":\"1.4500\",\"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\":\"1.4500\"},{\"id\":\"29123\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6859\",\"product_code\":\"2892\",\"product_name\":\"MALABASE\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29124\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6860\",\"product_code\":\"2893\",\"product_name\":\"BASECHLOR\",\"option_id\":null,\"net_unit_cost\":\"7.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.8000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.1000\",\"real_unit_cost\":\"7.1000\",\"quantity_received\":null,\"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\":\"7.1000\"},{\"id\":\"29125\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6861\",\"product_code\":\"2894\",\"product_name\":\"QUININE SRP\",\"option_id\":null,\"net_unit_cost\":\"5.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4000\",\"real_unit_cost\":\"5.4000\",\"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\":\"5.4000\"},{\"id\":\"29126\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6862\",\"product_code\":\"2895\",\"product_name\":\"CYPONE SRP\",\"option_id\":null,\"net_unit_cost\":\"2.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.4000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5500\",\"real_unit_cost\":\"2.5500\",\"quantity_received\":null,\"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\":\"2.5500\"},{\"id\":\"29127\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6863\",\"product_code\":\"2896\",\"product_name\":\"ESSENTIALBB\\/S\",\"option_id\":null,\"net_unit_cost\":\"1.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.5500\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.9500\",\"real_unit_cost\":\"1.9500\",\"quantity_received\":null,\"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\":\"1.9500\"},{\"id\":\"29128\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6864\",\"product_code\":\"2897\",\"product_name\":\"FLU-CLO SUSP(LETAP)\",\"option_id\":null,\"net_unit_cost\":\"0.5700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.4200\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5700\",\"real_unit_cost\":\"0.5700\",\"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\":\"0.5700\"},{\"id\":\"29129\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6865\",\"product_code\":\"2898\",\"product_name\":\"CONTRA-72\",\"option_id\":null,\"net_unit_cost\":\"0.6900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.1400\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6900\",\"real_unit_cost\":\"0.6900\",\"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\":\"0.6900\"},{\"id\":\"29130\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6866\",\"product_code\":\"2899\",\"product_name\":\"SLIMFIT S\\/S\",\"option_id\":null,\"net_unit_cost\":\"9.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"29131\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6867\",\"product_code\":\"2900\",\"product_name\":\"SLIMFIT M\\/S\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"9.5000\"},{\"id\":\"29132\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6868\",\"product_code\":\"2901\",\"product_name\":\"CAMISA\",\"option_id\":null,\"net_unit_cost\":\"7.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.5000\"},{\"id\":\"29133\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6869\",\"product_code\":\"2902\",\"product_name\":\"CRANBERRY\",\"option_id\":null,\"net_unit_cost\":\"0.5900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"33.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.4700\",\"quantity_balance\":\"33.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5900\",\"real_unit_cost\":\"0.5900\",\"quantity_received\":null,\"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.5900\"},{\"id\":\"29134\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6870\",\"product_code\":\"2903\",\"product_name\":\"KIWI DRINK\",\"option_id\":null,\"net_unit_cost\":\"0.4400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.4400\",\"real_unit_cost\":\"0.4400\",\"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\":\"0.4400\"},{\"id\":\"29135\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6871\",\"product_code\":\"2904\",\"product_name\":\"VERNA S\\/S\",\"option_id\":null,\"net_unit_cost\":\"304.7000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"304.7000\",\"real_unit_cost\":\"304.7000\",\"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\":\"304.7000\"},{\"id\":\"29136\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6872\",\"product_code\":\"2905\",\"product_name\":\"COLDAFLU\",\"option_id\":null,\"net_unit_cost\":\"33.1500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.1500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.1500\",\"real_unit_cost\":\"33.1500\",\"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\":\"33.1500\"},{\"id\":\"29137\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6873\",\"product_code\":\"2906\",\"product_name\":\"XARELTO 20\",\"option_id\":null,\"net_unit_cost\":\"7.6000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.6000\",\"real_unit_cost\":\"7.6000\",\"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\":\"7.6000\"},{\"id\":\"29138\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6874\",\"product_code\":\"2907\",\"product_name\":\"MIXTARD\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"29139\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6875\",\"product_code\":\"2908\",\"product_name\":\"CREEP BAND 8\",\"option_id\":null,\"net_unit_cost\":\"1.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.4000\",\"real_unit_cost\":\"1.4000\",\"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\":\"1.4000\"},{\"id\":\"29140\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6876\",\"product_code\":\"2909\",\"product_name\":\"CREEP BAND 6\",\"option_id\":null,\"net_unit_cost\":\"0.2200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"54.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.8800\",\"quantity_balance\":\"54.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2200\",\"real_unit_cost\":\"0.2200\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"54.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2200\"},{\"id\":\"29141\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6877\",\"product_code\":\"2910\",\"product_name\":\"CENTRUM 30S\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"70.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29142\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6878\",\"product_code\":\"2911\",\"product_name\":\"SYRYNGE 2MLS\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"29143\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6879\",\"product_code\":\"2912\",\"product_name\":\"HONEY S\\/S\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29144\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6880\",\"product_code\":\"2913\",\"product_name\":\"HONEY B\\/S\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"29145\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6881\",\"product_code\":\"2914\",\"product_name\":\"CUSSON BABY LOTION\",\"option_id\":null,\"net_unit_cost\":\"7.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\":\"21.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"29146\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6882\",\"product_code\":\"2915\",\"product_name\":\"PLASTER 6INC\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29147\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6883\",\"product_code\":\"2916\",\"product_name\":\"PLASTER M\\/S\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-5.0000\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"29148\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6884\",\"product_code\":\"2917\",\"product_name\":\"PLASTER B\\/S\",\"option_id\":null,\"net_unit_cost\":\"3.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\":\"9.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"29149\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6885\",\"product_code\":\"2918\",\"product_name\":\"PLSTER S\\/S\",\"option_id\":null,\"net_unit_cost\":\"0.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.0000\",\"quantity_balance\":\"35.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4000\",\"real_unit_cost\":\"0.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4000\"},{\"id\":\"29150\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6886\",\"product_code\":\"2919\",\"product_name\":\"PLASTER VS\\/S\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"22.0000\"},{\"id\":\"29151\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6887\",\"product_code\":\"2920\",\"product_name\":\"INSULIN SYRNG\",\"option_id\":null,\"net_unit_cost\":\"14.7800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-14.7800\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.7800\",\"real_unit_cost\":\"14.7800\",\"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\":\"14.7800\"},{\"id\":\"29152\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6888\",\"product_code\":\"2921\",\"product_name\":\"IMAX DELAY SPRAY\",\"option_id\":null,\"net_unit_cost\":\"4.3300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"47.6300\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3300\",\"real_unit_cost\":\"4.3300\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3300\"},{\"id\":\"29153\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6889\",\"product_code\":\"2922\",\"product_name\":\"CLARITHROMYCIN TAB 500MG (B-CLAR)\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-40.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29154\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6890\",\"product_code\":\"2923\",\"product_name\":\"CARTEF TAB 24\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"123.5000\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"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\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"29155\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6891\",\"product_code\":\"2924\",\"product_name\":\"HUGGIES WIPE BIG\",\"option_id\":null,\"net_unit_cost\":\"22.2000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"22.2000\",\"real_unit_cost\":\"22.2000\",\"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\":\"22.2000\"},{\"id\":\"29156\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6892\",\"product_code\":\"2925\",\"product_name\":\"TCP SOAP\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29157\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6893\",\"product_code\":\"2926\",\"product_name\":\"VENTOLIN SRP ORG\",\"option_id\":null,\"net_unit_cost\":\"43.1500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"43.1500\",\"real_unit_cost\":\"43.1500\",\"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\":\"43.1500\"},{\"id\":\"29158\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6894\",\"product_code\":\"2927\",\"product_name\":\"LUCKY BITTERS\",\"option_id\":null,\"net_unit_cost\":\"22.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"22.2000\",\"real_unit_cost\":\"22.2000\",\"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\":\"22.2000\"},{\"id\":\"29159\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6895\",\"product_code\":\"2928\",\"product_name\":\"TCP 2OOML\",\"option_id\":null,\"net_unit_cost\":\"2.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.6000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.6000\",\"real_unit_cost\":\"2.6000\",\"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\":\"2.6000\"},{\"id\":\"29160\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6896\",\"product_code\":\"2929\",\"product_name\":\"VENTOLIN ORIG SYRP\",\"option_id\":null,\"net_unit_cost\":\"6.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.2500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.2500\",\"real_unit_cost\":\"6.2500\",\"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\":\"6.2500\"},{\"id\":\"29161\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6897\",\"product_code\":\"2930\",\"product_name\":\"CHOCHO SOAP\",\"option_id\":null,\"net_unit_cost\":\"0.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.5000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7500\",\"real_unit_cost\":\"0.7500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.7500\"},{\"id\":\"29162\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6898\",\"product_code\":\"2931\",\"product_name\":\"CERES CAN\",\"option_id\":null,\"net_unit_cost\":\"0.7500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7500\",\"real_unit_cost\":\"0.7500\",\"quantity_received\":null,\"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\":\"0.7500\"},{\"id\":\"29163\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6899\",\"product_code\":\"2932\",\"product_name\":\"VIP BRUSH\",\"option_id\":null,\"net_unit_cost\":\"24.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"24.0000\",\"real_unit_cost\":\"24.0000\",\"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\":\"24.0000\"},{\"id\":\"29164\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6900\",\"product_code\":\"2933\",\"product_name\":\"SMOKERS BRUSH\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"29165\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6901\",\"product_code\":\"2934\",\"product_name\":\"SASSO SPRAY BIG\",\"option_id\":null,\"net_unit_cost\":\"19.5000\",\"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\":\"58.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.5000\",\"real_unit_cost\":\"19.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\":\"19.5000\"},{\"id\":\"29166\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6902\",\"product_code\":\"2935\",\"product_name\":\"SENSODYNE PASTE SMALL\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"29167\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6903\",\"product_code\":\"2936\",\"product_name\":\"VALUPAK VIT E 400\",\"option_id\":null,\"net_unit_cost\":\"2.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.8200\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9800\",\"real_unit_cost\":\"2.9800\",\"quantity_received\":null,\"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.9800\"},{\"id\":\"29168\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6904\",\"product_code\":\"2937\",\"product_name\":\"X,FERON SRP\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"100.0000\",\"quantity_balance\":\"25.0000\",\"date\":\"2021-08-21\",\"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\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29169\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6905\",\"product_code\":\"2938\",\"product_name\":\"STOPKOF COLD *CATTARRH TAB\",\"option_id\":null,\"net_unit_cost\":\"42.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\":\"126.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"42.0000\",\"real_unit_cost\":\"42.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\":\"42.0000\"},{\"id\":\"29170\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6906\",\"product_code\":\"2939\",\"product_name\":\"OVULATION TEST KIT\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"29171\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6907\",\"product_code\":\"2940\",\"product_name\":\"AMMENS POWER\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"196.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"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\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"29172\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6908\",\"product_code\":\"2941\",\"product_name\":\"UNIDUS LONG LOVE CONDOM\",\"option_id\":null,\"net_unit_cost\":\"7.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\":\"21.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"29173\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6909\",\"product_code\":\"2942\",\"product_name\":\"MEDICATED SOAP\",\"option_id\":null,\"net_unit_cost\":\"6.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.2900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.2900\",\"real_unit_cost\":\"6.2900\",\"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\":\"6.2900\"},{\"id\":\"29174\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6910\",\"product_code\":\"2943\",\"product_name\":\"COAL TAR BAR SOAP\",\"option_id\":null,\"net_unit_cost\":\"2.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-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"29175\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6911\",\"product_code\":\"2944\",\"product_name\":\"KALAMINA LOTION\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29176\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6912\",\"product_code\":\"2945\",\"product_name\":\"MAGDOX ANTACID SUSP\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"14.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"29177\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6913\",\"product_code\":\"2946\",\"product_name\":\"DIGITAL THERMOMETOR\",\"option_id\":null,\"net_unit_cost\":\"2.4900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.4900\",\"real_unit_cost\":\"2.4900\",\"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\":\"2.4900\"},{\"id\":\"29178\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6914\",\"product_code\":\"2947\",\"product_name\":\"MENTHYLATED SPIRIT VERY BIG\",\"option_id\":null,\"net_unit_cost\":\"29.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.8900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"29.8900\",\"real_unit_cost\":\"29.8900\",\"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\":\"29.8900\"},{\"id\":\"29179\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6915\",\"product_code\":\"2948\",\"product_name\":\"PROMETHAZINE SRUP\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29180\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6916\",\"product_code\":\"2949\",\"product_name\":\"ENAPHOX SUSP\",\"option_id\":null,\"net_unit_cost\":\"0.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1000\",\"real_unit_cost\":\"0.1000\",\"quantity_received\":null,\"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\":\"0.1000\"},{\"id\":\"29181\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6917\",\"product_code\":\"2950\",\"product_name\":\"EPICIPRIN\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29182\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6918\",\"product_code\":\"2951\",\"product_name\":\"POTASSIUM\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29183\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6919\",\"product_code\":\"2952\",\"product_name\":\"PEOBIOTICS 20 STRAINS\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29184\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6920\",\"product_code\":\"2953\",\"product_name\":\"THERMOMETER ANUS\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29185\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6921\",\"product_code\":\"2954\",\"product_name\":\"PROBIOTICS\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29186\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6922\",\"product_code\":\"2955\",\"product_name\":\"VISION\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29187\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6923\",\"product_code\":\"2956\",\"product_name\":\"NASAL SPRAY\",\"option_id\":null,\"net_unit_cost\":\"50.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"50.0000\",\"real_unit_cost\":\"50.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\":\"50.0000\"},{\"id\":\"29188\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6924\",\"product_code\":\"2957\",\"product_name\":\"CHOLINE BITARTRATE\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29189\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6925\",\"product_code\":\"2958\",\"product_name\":\"ESSENTIAL EMZYMES\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29190\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6926\",\"product_code\":\"2959\",\"product_name\":\"HIGH ABSORPTION COQ10\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29191\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6927\",\"product_code\":\"2960\",\"product_name\":\"FLAXSEED OIL\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29192\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6928\",\"product_code\":\"2961\",\"product_name\":\"KETO FAST\\/BURN\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29193\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6929\",\"product_code\":\"2962\",\"product_name\":\"LITTLE REMEDIES GRIPE WATER\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29194\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6930\",\"product_code\":\"2963\",\"product_name\":\"EQUATE STOMACH RELIEF\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29195\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6931\",\"product_code\":\"2964\",\"product_name\":\"CULTURE PROBIOTIC BABY\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29196\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6932\",\"product_code\":\"2965\",\"product_name\":\"NEUTROPHIL PLUS\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29197\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6933\",\"product_code\":\"2966\",\"product_name\":\"CEYLON CINNAMON\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29198\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6934\",\"product_code\":\"2967\",\"product_name\":\"MAGNESIUM\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29199\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6935\",\"product_code\":\"2968\",\"product_name\":\"D-MANNOSE\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29200\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6936\",\"product_code\":\"2969\",\"product_name\":\"HYALURONIC\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29201\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6937\",\"product_code\":\"2970\",\"product_name\":\"OMEGA 3\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29202\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6938\",\"product_code\":\"2971\",\"product_name\":\"TART CHERRY\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29203\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6939\",\"product_code\":\"2972\",\"product_name\":\"NATURES BOUTY D3\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29204\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6940\",\"product_code\":\"2973\",\"product_name\":\"TUMERIC CURCUMIN\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29205\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6941\",\"product_code\":\"2974\",\"product_name\":\"FORTIFY WOMENS  PROBIOTIC\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29206\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6942\",\"product_code\":\"2975\",\"product_name\":\"ALIVE ONCE DAILY\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29207\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6943\",\"product_code\":\"2976\",\"product_name\":\"REMFRESH\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29208\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6944\",\"product_code\":\"2977\",\"product_name\":\"VITAMIN CODE\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29209\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6945\",\"product_code\":\"2978\",\"product_name\":\"FATHER JOHNSON\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29210\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6946\",\"product_code\":\"2979\",\"product_name\":\"DR TOBIA OMAGA 3\",\"option_id\":null,\"net_unit_cost\":\"50.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"50.0000\",\"real_unit_cost\":\"50.0000\",\"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\":\"50.0000\"},{\"id\":\"29211\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6947\",\"product_code\":\"2980\",\"product_name\":\"VIRGIN COCONUT OIL\",\"option_id\":null,\"net_unit_cost\":\"50.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"50.0000\",\"real_unit_cost\":\"50.0000\",\"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\":\"50.0000\"},{\"id\":\"29212\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6948\",\"product_code\":\"2981\",\"product_name\":\"MULTI MINERALS\",\"option_id\":null,\"net_unit_cost\":\"40.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.0000\",\"real_unit_cost\":\"40.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\":\"40.0000\"},{\"id\":\"29213\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6949\",\"product_code\":\"2982\",\"product_name\":\"C-1000\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29214\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6950\",\"product_code\":\"2983\",\"product_name\":\"GABA 500MG\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29215\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6951\",\"product_code\":\"2984\",\"product_name\":\"NAC N -ACETYL\",\"option_id\":null,\"net_unit_cost\":\"40.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"40.0000\",\"real_unit_cost\":\"40.0000\",\"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\":\"40.0000\"},{\"id\":\"29216\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6952\",\"product_code\":\"2985\",\"product_name\":\"DGL\",\"option_id\":null,\"net_unit_cost\":\"40.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.0000\",\"real_unit_cost\":\"40.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\":\"40.0000\"},{\"id\":\"29217\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6953\",\"product_code\":\"2986\",\"product_name\":\"PROSTATE FORMULA\",\"option_id\":null,\"net_unit_cost\":\"40.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.0000\",\"real_unit_cost\":\"40.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\":\"40.0000\"},{\"id\":\"29218\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6954\",\"product_code\":\"2987\",\"product_name\":\"ALPHA LIPOID\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29219\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6955\",\"product_code\":\"2988\",\"product_name\":\"CITRACAL\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29220\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6956\",\"product_code\":\"2989\",\"product_name\":\"BEANO ULTRA 800\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29221\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6957\",\"product_code\":\"2990\",\"product_name\":\"PEDIA LAX\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29222\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6958\",\"product_code\":\"2991\",\"product_name\":\"NATURE MADE COQ10\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29223\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6959\",\"product_code\":\"2992\",\"product_name\":\"TAN OPTIMIZER\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29224\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6960\",\"product_code\":\"2993\",\"product_name\":\"MUCINEX FAST MAX\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29225\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6961\",\"product_code\":\"2994\",\"product_name\":\"PURE ZINC 30\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29226\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6962\",\"product_code\":\"2995\",\"product_name\":\"PRESER VISION\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29227\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6963\",\"product_code\":\"2996\",\"product_name\":\"MELATOMIN\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.0400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.0200\",\"real_unit_cost\":\"52.0200\",\"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\":\"52.0200\"},{\"id\":\"29228\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6964\",\"product_code\":\"2997\",\"product_name\":\"5HTP\",\"option_id\":null,\"net_unit_cost\":\"0.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8000\",\"real_unit_cost\":\"0.8000\",\"quantity_received\":null,\"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\":\"0.8000\"},{\"id\":\"29229\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6965\",\"product_code\":\"2998\",\"product_name\":\"ONE A DAY MEN 50+\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"29230\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6966\",\"product_code\":\"2999\",\"product_name\":\"PEEKAPOO PAD LINER\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29231\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6967\",\"product_code\":\"3000\",\"product_name\":\"GOODNITE\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29232\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6968\",\"product_code\":\"3001\",\"product_name\":\"PAMPERS SPLASHES\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"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\":\"20.0000\"},{\"id\":\"29233\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6969\",\"product_code\":\"3002\",\"product_name\":\"CUTTIES ESSENTIALS\",\"option_id\":null,\"net_unit_cost\":\"9.1600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.9600\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.1600\",\"real_unit_cost\":\"9.1600\",\"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\":\"9.1600\"},{\"id\":\"29234\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6970\",\"product_code\":\"3003\",\"product_name\":\"HUGGIES LITTLE\",\"option_id\":null,\"net_unit_cost\":\"4.4200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.4200\",\"real_unit_cost\":\"4.4200\",\"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\":\"4.4200\"},{\"id\":\"29235\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6971\",\"product_code\":\"3004\",\"product_name\":\"APPLE JUICE\",\"option_id\":null,\"net_unit_cost\":\"0.4500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.4500\",\"real_unit_cost\":\"0.4500\",\"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\":\"0.4500\"},{\"id\":\"29236\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6972\",\"product_code\":\"3005\",\"product_name\":\"MANDANOL NASAL DROP\",\"option_id\":null,\"net_unit_cost\":\"2.7000\",\"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\":\"8.1000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.7000\"},{\"id\":\"29237\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6973\",\"product_code\":\"3006\",\"product_name\":\"DICLOFENAC SUPP\",\"option_id\":null,\"net_unit_cost\":\"14.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.8000\"},{\"id\":\"29238\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6974\",\"product_code\":\"3007\",\"product_name\":\"TYLENOL PM 50\",\"option_id\":null,\"net_unit_cost\":\"4.3000\",\"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\":\"12.9000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3000\",\"real_unit_cost\":\"4.3000\",\"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\":\"4.3000\"},{\"id\":\"29239\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6975\",\"product_code\":\"3008\",\"product_name\":\"ZUBES EXTRA STRONG\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29240\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6976\",\"product_code\":\"3009\",\"product_name\":\"VITAMILK  BOTTLE\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29241\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6977\",\"product_code\":\"3010\",\"product_name\":\"VITAMILK\",\"option_id\":null,\"net_unit_cost\":\"0.2400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-41.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-9.8400\",\"quantity_balance\":\"-41.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2400\",\"real_unit_cost\":\"0.2400\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"-41.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2400\"},{\"id\":\"29242\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6978\",\"product_code\":\"3011\",\"product_name\":\"AMON CHOCOLATE\",\"option_id\":null,\"net_unit_cost\":\"6.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.6500\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9500\",\"real_unit_cost\":\"6.9500\",\"quantity_received\":null,\"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\":\"6.9500\"},{\"id\":\"29243\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6979\",\"product_code\":\"3012\",\"product_name\":\"VINKA CHOCOLATE\",\"option_id\":null,\"net_unit_cost\":\"5.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"116.3800\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2900\",\"real_unit_cost\":\"5.2900\",\"quantity_received\":null,\"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\":\"5.2900\"},{\"id\":\"29244\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6980\",\"product_code\":\"3013\",\"product_name\":\"SNICKERS\",\"option_id\":null,\"net_unit_cost\":\"8.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"252.0000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.4000\",\"real_unit_cost\":\"8.4000\",\"quantity_received\":null,\"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\":\"8.4000\"},{\"id\":\"29245\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6981\",\"product_code\":\"3014\",\"product_name\":\"BOUNTY\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"29246\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6982\",\"product_code\":\"3015\",\"product_name\":\"MALTESERS\",\"option_id\":null,\"net_unit_cost\":\"17.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.5000\",\"real_unit_cost\":\"17.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\":\"17.5000\"},{\"id\":\"29247\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6983\",\"product_code\":\"3016\",\"product_name\":\"SHORT BREAD\",\"option_id\":null,\"net_unit_cost\":\"26.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.0000\",\"real_unit_cost\":\"26.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\":\"26.0000\"},{\"id\":\"29248\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6984\",\"product_code\":\"3017\",\"product_name\":\"CD CAPS\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"29249\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6985\",\"product_code\":\"3018\",\"product_name\":\"JOY VIKIL\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"29250\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6986\",\"product_code\":\"3019\",\"product_name\":\"LIQUID SOAP\",\"option_id\":null,\"net_unit_cost\":\"10.3400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"51.7000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.3400\",\"real_unit_cost\":\"10.3400\",\"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\":\"10.3400\"},{\"id\":\"29251\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6987\",\"product_code\":\"3020\",\"product_name\":\"~JOY VIKEL\",\"option_id\":null,\"net_unit_cost\":\"0.4700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"1.8800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4700\",\"real_unit_cost\":\"0.4700\",\"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\":\"0.4700\"},{\"id\":\"29252\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6988\",\"product_code\":\"3021\",\"product_name\":\"ACNEL GEL 20MG\",\"option_id\":null,\"net_unit_cost\":\"32.1800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"32.1800\",\"real_unit_cost\":\"32.1800\",\"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\":\"32.1800\"},{\"id\":\"29253\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6989\",\"product_code\":\"3022\",\"product_name\":\"FAMACOLD\",\"option_id\":null,\"net_unit_cost\":\"18.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"18.0000\",\"real_unit_cost\":\"18.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\":\"18.0000\"},{\"id\":\"29254\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6990\",\"product_code\":\"3023\",\"product_name\":\"JOINTFLEX PLUS TABS\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.8000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2000\"},{\"id\":\"29255\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6991\",\"product_code\":\"3024\",\"product_name\":\"FLOOR CLEANER\",\"option_id\":null,\"net_unit_cost\":\"14.7700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"14.7700\",\"real_unit_cost\":\"14.7700\",\"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\":\"14.7700\"},{\"id\":\"29256\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6992\",\"product_code\":\"3025\",\"product_name\":\"GASTRONE TAB\",\"option_id\":null,\"net_unit_cost\":\"0.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.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.5800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5800\",\"real_unit_cost\":\"0.5800\",\"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\":\"0.5800\"},{\"id\":\"29257\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6993\",\"product_code\":\"3026\",\"product_name\":\"LISINOPRIL 20 CREASENT\",\"option_id\":null,\"net_unit_cost\":\"5.3500\",\"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\":\"16.0500\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.3500\",\"real_unit_cost\":\"5.3500\",\"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\":\"5.3500\"},{\"id\":\"29258\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6994\",\"product_code\":\"3027\",\"product_name\":\"GLIBENCLAMIDE\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"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\":\"3.4000\"},{\"id\":\"29259\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6995\",\"product_code\":\"3028\",\"product_name\":\"CABOZAP JUNIOR\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.4000\",\"quantity_balance\":\"26.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.4000\"},{\"id\":\"29260\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6996\",\"product_code\":\"3029\",\"product_name\":\"EMGIBRUFEN\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"29261\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6997\",\"product_code\":\"3030\",\"product_name\":\"CHLORAMPHENICOL\",\"option_id\":null,\"net_unit_cost\":\"7.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\":\"21.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"29262\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6998\",\"product_code\":\"3031\",\"product_name\":\"SUAVE ESSENTIAL BIG\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29263\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"6999\",\"product_code\":\"3032\",\"product_name\":\"TINATETT BATHING FRESH\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29264\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7000\",\"product_code\":\"3033\",\"product_name\":\"SUAVE ESSENTIALS SMALL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"29265\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7001\",\"product_code\":\"3034\",\"product_name\":\"FOAMING BATH\",\"option_id\":null,\"net_unit_cost\":\"28.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"28.0000\",\"real_unit_cost\":\"28.0000\",\"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\":\"28.0000\"},{\"id\":\"29266\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7002\",\"product_code\":\"3035\",\"product_name\":\"DACILIN 300MG\",\"option_id\":null,\"net_unit_cost\":\"35.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"35.0000\",\"real_unit_cost\":\"35.0000\",\"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\":\"35.0000\"},{\"id\":\"29267\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7003\",\"product_code\":\"3036\",\"product_name\":\"PALMAS COCO BUTTER\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29268\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7004\",\"product_code\":\"3037\",\"product_name\":\"CORSODYL BIG  300ML\",\"option_id\":null,\"net_unit_cost\":\"0.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.8000\",\"real_unit_cost\":\"0.8000\",\"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\":\"0.8000\"},{\"id\":\"29269\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7005\",\"product_code\":\"3038\",\"product_name\":\"MOSQUITO NET\",\"option_id\":null,\"net_unit_cost\":\"0.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"197.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"157.6000\",\"quantity_balance\":\"197.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8000\",\"real_unit_cost\":\"0.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"197.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8000\"},{\"id\":\"29270\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7006\",\"product_code\":\"3039\",\"product_name\":\"KIDS FACE MASK\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"112.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.0000\"},{\"id\":\"29271\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7007\",\"product_code\":\"3040\",\"product_name\":\"KIDS FACE MASK\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29272\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7008\",\"product_code\":\"3041\",\"product_name\":\"GBEDEMA BIG MAN\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29273\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7009\",\"product_code\":\"3042\",\"product_name\":\"ULTIMATE OMEGA D3\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29274\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7010\",\"product_code\":\"3043\",\"product_name\":\"HEMP OIL CAPSULES\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29275\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7011\",\"product_code\":\"3044\",\"product_name\":\"~MAGNESIUM\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29276\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7012\",\"product_code\":\"3045\",\"product_name\":\"COLOSTRUM\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29277\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7013\",\"product_code\":\"3046\",\"product_name\":\"MOVE FREE JOINT S\\/S\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29278\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7014\",\"product_code\":\"3047\",\"product_name\":\"TUMERIC 538\",\"option_id\":null,\"net_unit_cost\":\"60.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"60.0000\",\"real_unit_cost\":\"60.0000\",\"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\":\"60.0000\"},{\"id\":\"29279\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7015\",\"product_code\":\"3048\",\"product_name\":\"BONE STRENTH\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29280\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7016\",\"product_code\":\"3049\",\"product_name\":\"FISH OIL\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29281\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7017\",\"product_code\":\"3050\",\"product_name\":\"L-LYSINE\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29282\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7018\",\"product_code\":\"3051\",\"product_name\":\"DEEP IMMUNE\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29283\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7019\",\"product_code\":\"3052\",\"product_name\":\"SIMILASAN\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"29284\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7020\",\"product_code\":\"3053\",\"product_name\":\"MG 217\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29285\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7021\",\"product_code\":\"3054\",\"product_name\":\"BONINE\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29286\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7022\",\"product_code\":\"3055\",\"product_name\":\"ELTA MD\",\"option_id\":null,\"net_unit_cost\":\"50.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"50.0000\",\"real_unit_cost\":\"50.0000\",\"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\":\"50.0000\"},{\"id\":\"29287\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7023\",\"product_code\":\"3056\",\"product_name\":\"OCUVITE\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29288\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7024\",\"product_code\":\"3057\",\"product_name\":\"OSTEO-BI FLEX\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29289\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7025\",\"product_code\":\"3058\",\"product_name\":\"MEGA RED\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29290\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7026\",\"product_code\":\"3059\",\"product_name\":\"SAMBUCUS\",\"option_id\":null,\"net_unit_cost\":\"0.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.0000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3000\",\"real_unit_cost\":\"0.3000\",\"quantity_received\":null,\"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.3000\"},{\"id\":\"29291\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7027\",\"product_code\":\"3060\",\"product_name\":\"MOVE FREE B\\/S\",\"option_id\":null,\"net_unit_cost\":\"6.9300\",\"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\":\"20.7900\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9300\",\"real_unit_cost\":\"6.9300\",\"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\":\"6.9300\"},{\"id\":\"29292\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7028\",\"product_code\":\"3061\",\"product_name\":\"VIT D3\",\"option_id\":null,\"net_unit_cost\":\"9.5300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.5300\",\"real_unit_cost\":\"9.5300\",\"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\":\"9.5300\"},{\"id\":\"29293\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7029\",\"product_code\":\"3062\",\"product_name\":\"VIGONX\",\"option_id\":null,\"net_unit_cost\":\"7.3800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-7.3800\",\"quantity_balance\":\"-1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.3800\",\"real_unit_cost\":\"7.3800\",\"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\":\"7.3800\"},{\"id\":\"29294\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7030\",\"product_code\":\"3063\",\"product_name\":\"CEFUNATE SUSP\",\"option_id\":null,\"net_unit_cost\":\"6.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.4500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8900\",\"real_unit_cost\":\"6.8900\",\"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\":\"6.8900\"},{\"id\":\"29295\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7031\",\"product_code\":\"3064\",\"product_name\":\"KINAMYCIN 300\",\"option_id\":null,\"net_unit_cost\":\"28.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.0000\",\"real_unit_cost\":\"28.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\":\"28.0000\"},{\"id\":\"29296\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7032\",\"product_code\":\"3065\",\"product_name\":\"FINE LIFE BLOOD TONIC\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29297\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7033\",\"product_code\":\"3066\",\"product_name\":\"PANADOL ADVANCE 32\'S\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"67.5000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29298\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7034\",\"product_code\":\"3067\",\"product_name\":\"ARTESUNATE 30\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29299\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7035\",\"product_code\":\"3068\",\"product_name\":\"DIHYDROCODEINE 30MG\",\"option_id\":null,\"net_unit_cost\":\"20.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.1000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.1000\",\"real_unit_cost\":\"20.1000\",\"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\":\"20.1000\"},{\"id\":\"29300\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7036\",\"product_code\":\"3069\",\"product_name\":\"HAND SANITIZER COCO\",\"option_id\":null,\"net_unit_cost\":\"8.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.9500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"8.9500\",\"real_unit_cost\":\"8.9500\",\"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\":\"8.9500\"},{\"id\":\"29301\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7037\",\"product_code\":\"3070\",\"product_name\":\"MYCOCORT CREAM\",\"option_id\":null,\"net_unit_cost\":\"50.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"50.0000\",\"real_unit_cost\":\"50.0000\",\"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\":\"50.0000\"},{\"id\":\"29302\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7038\",\"product_code\":\"3071\",\"product_name\":\"KEFROX SUSP\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29303\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7039\",\"product_code\":\"3072\",\"product_name\":\"KLEANZ SANITISER BIG\",\"option_id\":null,\"net_unit_cost\":\"10.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.9800\",\"real_unit_cost\":\"10.9800\",\"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\":\"10.9800\"},{\"id\":\"29304\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7040\",\"product_code\":\"3073\",\"product_name\":\"HANDS SANITISER COCO BIG\",\"option_id\":null,\"net_unit_cost\":\"1.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.2500\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5500\",\"real_unit_cost\":\"1.5500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.5500\"},{\"id\":\"29305\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7041\",\"product_code\":\"3074\",\"product_name\":\"ZYMAX 500\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.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\":\"2.0000\"},{\"id\":\"29306\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7042\",\"product_code\":\"3075\",\"product_name\":\"OMEPRAZOLE  20\",\"option_id\":null,\"net_unit_cost\":\"13.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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.5000\"},{\"id\":\"29307\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7043\",\"product_code\":\"3076\",\"product_name\":\"AIRFRESHNER HANGING\",\"option_id\":null,\"net_unit_cost\":\"5.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.4500\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.8900\",\"real_unit_cost\":\"5.8900\",\"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\":\"5.8900\"},{\"id\":\"29308\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7044\",\"product_code\":\"3077\",\"product_name\":\"LEVOTHROXINE 50MG\",\"option_id\":null,\"net_unit_cost\":\"7.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\":\"21.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"29309\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7045\",\"product_code\":\"3078\",\"product_name\":\"METRO Z SUSP\",\"option_id\":null,\"net_unit_cost\":\"3.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"85.1000\",\"quantity_balance\":\"23.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.7000\",\"real_unit_cost\":\"3.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.7000\"},{\"id\":\"29310\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7046\",\"product_code\":\"3079\",\"product_name\":\"FRUSEMIDE TAB 40MG BRISTOL\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29311\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7047\",\"product_code\":\"3080\",\"product_name\":\"LUEX NASALINHALER\",\"option_id\":null,\"net_unit_cost\":\"15.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\":\"45.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\"},{\"id\":\"29312\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7048\",\"product_code\":\"3081\",\"product_name\":\"SANITAZER BIG\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"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\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29313\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7049\",\"product_code\":\"3082\",\"product_name\":\"SANITIZER MEDIUM\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"29314\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7050\",\"product_code\":\"3083\",\"product_name\":\"EASY CHECK\",\"option_id\":null,\"net_unit_cost\":\"15.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"15.8000\",\"real_unit_cost\":\"15.8000\",\"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\":\"15.8000\"},{\"id\":\"29315\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7051\",\"product_code\":\"3084\",\"product_name\":\"HEMP OIL\",\"option_id\":null,\"net_unit_cost\":\"6.8700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.4800\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8700\",\"real_unit_cost\":\"6.8700\",\"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\":\"6.8700\"},{\"id\":\"29316\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7052\",\"product_code\":\"3085\",\"product_name\":\"OLANZEPINE TAB 10MG\",\"option_id\":null,\"net_unit_cost\":\"11.9600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.9200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9600\",\"real_unit_cost\":\"11.9600\",\"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\":\"11.9600\"},{\"id\":\"29317\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7053\",\"product_code\":\"3086\",\"product_name\":\"NESTERIX FORTE SYR\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"52.5000\",\"quantity_balance\":\"15.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.5000\"},{\"id\":\"29318\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7054\",\"product_code\":\"3087\",\"product_name\":\"NORMO TEARS EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"50.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"50.0000\",\"real_unit_cost\":\"50.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\":\"50.0000\"},{\"id\":\"29319\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7055\",\"product_code\":\"3088\",\"product_name\":\"FACE MASK SHIELD\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29320\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7056\",\"product_code\":\"3089\",\"product_name\":\"SMARTYS KIDS GUMMY\",\"option_id\":null,\"net_unit_cost\":\"50.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"50.0000\",\"real_unit_cost\":\"50.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\":\"50.0000\"},{\"id\":\"29321\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7057\",\"product_code\":\"3090\",\"product_name\":\"HERB BERRY DROPS\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29322\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7058\",\"product_code\":\"3091\",\"product_name\":\"MCT OIL\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29323\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7059\",\"product_code\":\"3092\",\"product_name\":\"DIHYDROMYRICETIN 300MG\",\"option_id\":null,\"net_unit_cost\":\"15.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"77.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.5000\",\"real_unit_cost\":\"15.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\":\"15.5000\"},{\"id\":\"29324\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7060\",\"product_code\":\"3093\",\"product_name\":\"AZO BLADDER CONTROL\",\"option_id\":null,\"net_unit_cost\":\"17.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"17.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.0000\",\"real_unit_cost\":\"17.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\":\"17.0000\"},{\"id\":\"29325\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7061\",\"product_code\":\"3094\",\"product_name\":\"GEN M SUSP\",\"option_id\":null,\"net_unit_cost\":\"21.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"21.0000\"},{\"id\":\"29326\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7062\",\"product_code\":\"3095\",\"product_name\":\"GEN M TABS 80\\/480\",\"option_id\":null,\"net_unit_cost\":\"0.8900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"82.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.9800\",\"quantity_balance\":\"82.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.8900\",\"real_unit_cost\":\"0.8900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"82.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.8900\"},{\"id\":\"29327\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7063\",\"product_code\":\"3096\",\"product_name\":\"TOBREX EYE DROP\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"29328\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7064\",\"product_code\":\"3097\",\"product_name\":\"DICNAC 100MG SUPP\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"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\":\"20.0000\"},{\"id\":\"29329\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7065\",\"product_code\":\"3098\",\"product_name\":\"PROPA LINER\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29330\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7066\",\"product_code\":\"3099\",\"product_name\":\"ANTI BACTERIAL WIPES\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29331\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7067\",\"product_code\":\"3100\",\"product_name\":\"NATURE WAY HAIR&SKIN\",\"option_id\":null,\"net_unit_cost\":\"4.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8000\",\"real_unit_cost\":\"4.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\":\"4.8000\"},{\"id\":\"29332\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7068\",\"product_code\":\"3101\",\"product_name\":\"MiraLAX\",\"option_id\":null,\"net_unit_cost\":\"5.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.9800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9800\",\"real_unit_cost\":\"5.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\":\"5.9800\"},{\"id\":\"29333\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7069\",\"product_code\":\"3102\",\"product_name\":\"BIC RAZOR\",\"option_id\":null,\"net_unit_cost\":\"10.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\":\"30.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\"},{\"id\":\"29334\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7070\",\"product_code\":\"3103\",\"product_name\":\"ZYMAX SUSP\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29335\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7071\",\"product_code\":\"3104\",\"product_name\":\"EAR SWAB\",\"option_id\":null,\"net_unit_cost\":\"3.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.1000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9000\",\"real_unit_cost\":\"3.9000\",\"quantity_received\":null,\"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\":\"3.9000\"},{\"id\":\"29336\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7072\",\"product_code\":\"3105\",\"product_name\":\"FEMCARE\",\"option_id\":null,\"net_unit_cost\":\"13.9000\",\"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\":\"41.7000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.9000\",\"real_unit_cost\":\"13.9000\",\"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\":\"13.9000\"},{\"id\":\"29337\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7073\",\"product_code\":\"3106\",\"product_name\":\"THERMOSOL SMART\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"29338\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7074\",\"product_code\":\"3107\",\"product_name\":\"EPICROM 2%\",\"option_id\":null,\"net_unit_cost\":\"7.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.3000\",\"real_unit_cost\":\"7.3000\",\"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\":\"7.3000\"},{\"id\":\"29339\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7075\",\"product_code\":\"3108\",\"product_name\":\"FACE MASK K95\",\"option_id\":null,\"net_unit_cost\":\"4.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.3600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3600\",\"real_unit_cost\":\"4.3600\",\"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\":\"4.3600\"},{\"id\":\"29340\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7076\",\"product_code\":\"3109\",\"product_name\":\"FUROSEMIDE BRISTOL 40MG\",\"option_id\":null,\"net_unit_cost\":\"0.7900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"1.5800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7900\",\"real_unit_cost\":\"0.7900\",\"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\":\"0.7900\"},{\"id\":\"29341\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7077\",\"product_code\":\"3110\",\"product_name\":\"ASCOVIT CEE SYR\",\"option_id\":null,\"net_unit_cost\":\"16.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-21\",\"status\":\"received\",\"unit_cost\":\"16.5000\",\"real_unit_cost\":\"16.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\":\"16.5000\"},{\"id\":\"29342\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7078\",\"product_code\":\"3111\",\"product_name\":\"METOCHLOPRAMIDE 10MG\",\"option_id\":null,\"net_unit_cost\":\"6.6700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"126.7300\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.6700\",\"real_unit_cost\":\"6.6700\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.6700\"},{\"id\":\"29343\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7079\",\"product_code\":\"3112\",\"product_name\":\"LUBRIMAX JELLY 70 GM\",\"option_id\":null,\"net_unit_cost\":\"13.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"66.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.3000\",\"real_unit_cost\":\"13.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\":\"13.3000\"},{\"id\":\"29344\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7080\",\"product_code\":\"3113\",\"product_name\":\"AZIRON 500MG TABS\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29345\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7081\",\"product_code\":\"3114\",\"product_name\":\"BRENEX SYR\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29346\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7082\",\"product_code\":\"3115\",\"product_name\":\"GILLETTE BLUE\",\"option_id\":null,\"net_unit_cost\":\"4.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.8600\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9800\",\"real_unit_cost\":\"4.9800\",\"quantity_received\":null,\"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\":\"4.9800\"},{\"id\":\"29347\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7083\",\"product_code\":\"3116\",\"product_name\":\"SOBOLO DRINK\",\"option_id\":null,\"net_unit_cost\":\"0.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"62.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"43.4000\",\"quantity_balance\":\"62.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.7000\",\"real_unit_cost\":\"0.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"62.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.7000\"},{\"id\":\"29348\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7084\",\"product_code\":\"3117\",\"product_name\":\"AMPICLOX ECL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"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\":\"20.0000\"},{\"id\":\"29349\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7085\",\"product_code\":\"3118\",\"product_name\":\"AMOXYCILLIN CAPS\\/ BLISS 250\",\"option_id\":null,\"net_unit_cost\":\"5.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.4000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.7000\",\"real_unit_cost\":\"5.7000\",\"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\":\"5.7000\"},{\"id\":\"29350\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7086\",\"product_code\":\"3119\",\"product_name\":\"KLOVIRAL PESS\",\"option_id\":null,\"net_unit_cost\":\"5.4200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.4200\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4200\",\"real_unit_cost\":\"5.4200\",\"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\":\"5.4200\"},{\"id\":\"29351\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7087\",\"product_code\":\"3120\",\"product_name\":\"LOFNAC BALM HERBAL\",\"option_id\":null,\"net_unit_cost\":\"1.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.2000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.8200\",\"real_unit_cost\":\"1.8200\",\"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\":\"1.8200\"},{\"id\":\"29352\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7088\",\"product_code\":\"3121\",\"product_name\":\"LIVERPLEX INFANT\",\"option_id\":null,\"net_unit_cost\":\"5.3900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.3900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.3900\",\"real_unit_cost\":\"5.3900\",\"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\":\"5.3900\"},{\"id\":\"29353\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7089\",\"product_code\":\"3122\",\"product_name\":\"OMECET CAPS\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"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\":\"10.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.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\":\"3.5000\"},{\"id\":\"29354\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7090\",\"product_code\":\"3123\",\"product_name\":\"METHYLATED SPIRIT BB\",\"option_id\":null,\"net_unit_cost\":\"0.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"144.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"86.4000\",\"quantity_balance\":\"144.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6000\",\"real_unit_cost\":\"0.6000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"144.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6000\"},{\"id\":\"29355\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7091\",\"product_code\":\"3124\",\"product_name\":\"NESBEN TAB 200MG\",\"option_id\":null,\"net_unit_cost\":\"8.1600\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.1600\",\"real_unit_cost\":\"8.1600\",\"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\":\"8.1600\"},{\"id\":\"29356\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7092\",\"product_code\":\"3125\",\"product_name\":\"FUROSAMIDE TABS 40 ECL\",\"option_id\":null,\"net_unit_cost\":\"0.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"1.6000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3200\",\"real_unit_cost\":\"0.3200\",\"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\":\"0.3200\"},{\"id\":\"29357\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7093\",\"product_code\":\"3126\",\"product_name\":\"FRESH BREATH SPY\",\"option_id\":null,\"net_unit_cost\":\"15.8900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"15.8900\",\"real_unit_cost\":\"15.8900\",\"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\":\"15.8900\"},{\"id\":\"29358\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7094\",\"product_code\":\"3127\",\"product_name\":\"FERROUS SULPHATE STRIPS\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"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\":\"-13.8000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"29359\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7095\",\"product_code\":\"3128\",\"product_name\":\"VIT C CHEAWABLE\",\"option_id\":null,\"net_unit_cost\":\"46.9800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"46.9800\",\"real_unit_cost\":\"46.9800\",\"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\":\"46.9800\"},{\"id\":\"29360\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7096\",\"product_code\":\"3129\",\"product_name\":\"CETRIZAN 10MG\",\"option_id\":null,\"net_unit_cost\":\"4.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.8000\",\"real_unit_cost\":\"4.8000\",\"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\":\"4.8000\"},{\"id\":\"29361\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7097\",\"product_code\":\"3130\",\"product_name\":\"PREGNACIN PLUS\",\"option_id\":null,\"net_unit_cost\":\"5.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-10.4000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2000\",\"real_unit_cost\":\"5.2000\",\"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\":\"5.2000\"},{\"id\":\"29362\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7098\",\"product_code\":\"3131\",\"product_name\":\"FRUSEMIDE TAB 40MG UK\",\"option_id\":null,\"net_unit_cost\":\"5.8300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.6600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.8300\",\"real_unit_cost\":\"5.8300\",\"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\":\"5.8300\"},{\"id\":\"29363\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7099\",\"product_code\":\"3132\",\"product_name\":\"METHLATED SPIRIT BB\",\"option_id\":null,\"net_unit_cost\":\"9.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"64.4000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.2000\",\"real_unit_cost\":\"9.2000\",\"quantity_received\":null,\"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\":\"9.2000\"},{\"id\":\"29364\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7100\",\"product_code\":\"3133\",\"product_name\":\"ROX DRINKS\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.2000\"},{\"id\":\"29365\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7101\",\"product_code\":\"3134\",\"product_name\":\"WELCHS DRINK\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"29366\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7102\",\"product_code\":\"3135\",\"product_name\":\"WELCHS TOFFEE\",\"option_id\":null,\"net_unit_cost\":\"2.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"2.0000\",\"real_unit_cost\":\"2.0000\",\"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\":\"2.0000\"},{\"id\":\"29367\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7103\",\"product_code\":\"3136\",\"product_name\":\"ORAL B PASTE MEDIUM\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2000\",\"real_unit_cost\":\"5.2000\",\"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\":\"5.2000\"},{\"id\":\"29368\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7104\",\"product_code\":\"3137\",\"product_name\":\"ORAL B PASTE SMALL\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29369\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7105\",\"product_code\":\"3138\",\"product_name\":\"ARTIBASE FORTE 80\\/480 16\",\"option_id\":null,\"net_unit_cost\":\"20.9000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"20.9000\",\"real_unit_cost\":\"20.9000\",\"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\":\"20.9000\"},{\"id\":\"29370\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7106\",\"product_code\":\"3139\",\"product_name\":\"FOLIC ACID TAB 5MG ACCORD\",\"option_id\":null,\"net_unit_cost\":\"6.3000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.3000\",\"real_unit_cost\":\"6.3000\",\"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\":\"6.3000\"},{\"id\":\"29371\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7107\",\"product_code\":\"3140\",\"product_name\":\"8 HOUR FEVER MIX\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29372\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7108\",\"product_code\":\"3141\",\"product_name\":\"FAMACOLD SYR\",\"option_id\":null,\"net_unit_cost\":\"4.2000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.2000\",\"real_unit_cost\":\"4.2000\",\"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\":\"4.2000\"},{\"id\":\"29373\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7109\",\"product_code\":\"3142\",\"product_name\":\"PARALEX BABY\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"29374\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7110\",\"product_code\":\"3143\",\"product_name\":\"JAGUAR BALM 80ML\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"29375\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7111\",\"product_code\":\"3144\",\"product_name\":\"JAGUAR BALM 125\",\"option_id\":null,\"net_unit_cost\":\"10.8600\",\"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\":\"32.5800\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.8600\",\"real_unit_cost\":\"10.8600\",\"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\":\"10.8600\"},{\"id\":\"29376\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7112\",\"product_code\":\"3145\",\"product_name\":\"ALPHA FOLIC ACID\",\"option_id\":null,\"net_unit_cost\":\"5.3300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"5.3300\",\"real_unit_cost\":\"5.3300\",\"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\":\"5.3300\"},{\"id\":\"29377\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7113\",\"product_code\":\"3146\",\"product_name\":\"ZOFIORA 120ML\",\"option_id\":null,\"net_unit_cost\":\"6.3300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.3300\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3300\",\"real_unit_cost\":\"6.3300\",\"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\":\"6.3300\"},{\"id\":\"29378\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7114\",\"product_code\":\"3147\",\"product_name\":\"AQUQ FRESH HERBAL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"29379\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7115\",\"product_code\":\"3148\",\"product_name\":\"AQUA  FRESH MINT\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29380\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7116\",\"product_code\":\"3149\",\"product_name\":\"AQUA FRESH MILD&MINTY6\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"29381\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7117\",\"product_code\":\"3150\",\"product_name\":\"LISINOVA 5MG\",\"option_id\":null,\"net_unit_cost\":\"10.7400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.7400\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.7400\",\"real_unit_cost\":\"10.7400\",\"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\":\"10.7400\"},{\"id\":\"29382\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7118\",\"product_code\":\"3151\",\"product_name\":\"LEXOFEN SUSP 150ML\",\"option_id\":null,\"net_unit_cost\":\"40.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"40.0000\",\"real_unit_cost\":\"40.0000\",\"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\":\"40.0000\"},{\"id\":\"29383\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7119\",\"product_code\":\"3152\",\"product_name\":\"LEXOFEN SUSP 100ML\",\"option_id\":null,\"net_unit_cost\":\"39.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.9900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"39.9900\",\"real_unit_cost\":\"39.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\":\"39.9900\"},{\"id\":\"29384\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7120\",\"product_code\":\"3153\",\"product_name\":\"BLUE SPOT EYEDROP\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"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\":\"25.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"8.5000\"},{\"id\":\"29385\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7121\",\"product_code\":\"3154\",\"product_name\":\"OPTREX REFRESHING\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-15.0000\",\"quantity_balance\":\"-5.0000\",\"date\":\"2021-08-21\",\"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\":\"-5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"29386\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7122\",\"product_code\":\"3155\",\"product_name\":\"AMUZU GARLIC\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"-2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"-5.0000\",\"quantity_balance\":\"-2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"29387\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7123\",\"product_code\":\"3156\",\"product_name\":\"SANITESER SMALL\",\"option_id\":null,\"net_unit_cost\":\"11.9200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"11.9200\",\"real_unit_cost\":\"11.9200\",\"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\":\"11.9200\"},{\"id\":\"29388\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7124\",\"product_code\":\"3157\",\"product_name\":\"SANITESER VERY SMALL\",\"option_id\":null,\"net_unit_cost\":\"24.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.8200\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"24.8200\",\"real_unit_cost\":\"24.8200\",\"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\":\"24.8200\"},{\"id\":\"29389\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7125\",\"product_code\":\"3158\",\"product_name\":\"COD LIVER OIL B\\/N\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.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\":\"6.0000\"},{\"id\":\"29390\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7126\",\"product_code\":\"3159\",\"product_name\":\"CLOPIDOGREL 75MG\",\"option_id\":null,\"net_unit_cost\":\"44.5000\",\"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\":\"133.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"44.5000\",\"real_unit_cost\":\"44.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\":\"44.5000\"},{\"id\":\"29391\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7127\",\"product_code\":\"3160\",\"product_name\":\"PROMAN DRINK\",\"option_id\":null,\"net_unit_cost\":\"25.1200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"50.2400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"25.1200\",\"real_unit_cost\":\"25.1200\",\"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\":\"25.1200\"},{\"id\":\"29392\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7128\",\"product_code\":\"3161\",\"product_name\":\"BRAINWESE OMEGA 3  150ML\",\"option_id\":null,\"net_unit_cost\":\"20.5000\",\"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\":\"61.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.5000\",\"real_unit_cost\":\"20.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\":\"20.5000\"},{\"id\":\"29393\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7129\",\"product_code\":\"3162\",\"product_name\":\"MEDGLOBIN CAPS\",\"option_id\":null,\"net_unit_cost\":\"1.1200\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"1.1200\",\"real_unit_cost\":\"1.1200\",\"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\":\"1.1200\"},{\"id\":\"29394\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7130\",\"product_code\":\"3163\",\"product_name\":\"MEDGLOBIN SYR\",\"option_id\":null,\"net_unit_cost\":\"6.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.9500\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.9500\",\"real_unit_cost\":\"6.9500\",\"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\":\"6.9500\"},{\"id\":\"29395\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7131\",\"product_code\":\"3164\",\"product_name\":\"MAALOX SUSP SACHETS 20\",\"option_id\":null,\"net_unit_cost\":\"3.4300\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"3.4300\",\"real_unit_cost\":\"3.4300\",\"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\":\"3.4300\"},{\"id\":\"29396\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7132\",\"product_code\":\"3165\",\"product_name\":\"POLYGEL SUSP 200ML\",\"option_id\":null,\"net_unit_cost\":\"15.1700\",\"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\":\"45.5100\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"15.1700\",\"real_unit_cost\":\"15.1700\",\"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\":\"15.1700\"},{\"id\":\"29397\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7133\",\"product_code\":\"3166\",\"product_name\":\"PRONALIN ADULT\",\"option_id\":null,\"net_unit_cost\":\"16.8400\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"16.8400\",\"real_unit_cost\":\"16.8400\",\"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\":\"16.8400\"},{\"id\":\"29398\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7134\",\"product_code\":\"3167\",\"product_name\":\"STRETCH GO\",\"option_id\":null,\"net_unit_cost\":\"5.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-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"29399\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7135\",\"product_code\":\"3168\",\"product_name\":\"VALUPAK VIT C 500MG CHEWABLE\",\"option_id\":null,\"net_unit_cost\":\"19.6900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"19.6900\",\"real_unit_cost\":\"19.6900\",\"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\":\"19.6900\"},{\"id\":\"29400\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7136\",\"product_code\":\"3169\",\"product_name\":\"RENERVE PLUS CAPS\",\"option_id\":null,\"net_unit_cost\":\"6.4900\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"6.4900\",\"real_unit_cost\":\"6.4900\",\"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\":\"6.4900\"},{\"id\":\"29401\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7137\",\"product_code\":\"3170\",\"product_name\":\"SALAMOL CFC INHALER\",\"option_id\":null,\"net_unit_cost\":\"9.8500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"118.2000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.8500\",\"real_unit_cost\":\"9.8500\",\"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\":\"9.8500\"},{\"id\":\"29402\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7138\",\"product_code\":\"3171\",\"product_name\":\"METRO 400MG TABS EXETER\",\"option_id\":null,\"net_unit_cost\":\"37.3700\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"37.3700\",\"real_unit_cost\":\"37.3700\",\"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\":\"37.3700\"},{\"id\":\"29403\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7139\",\"product_code\":\"3172\",\"product_name\":\"KLINDA 300\",\"option_id\":null,\"net_unit_cost\":\"11.8200\",\"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\":\"35.4600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.8200\",\"real_unit_cost\":\"11.8200\",\"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\":\"11.8200\"},{\"id\":\"29404\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7140\",\"product_code\":\"3173\",\"product_name\":\"MILK OF MAGNESIUM PHILIPS\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29405\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7141\",\"product_code\":\"3174\",\"product_name\":\"PROCOLD  SYR 60ML\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29406\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7142\",\"product_code\":\"3175\",\"product_name\":\"EYECARE DRY\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"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\":\"20.0000\"},{\"id\":\"29407\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7143\",\"product_code\":\"3176\",\"product_name\":\"BETA POLLEN PLUS\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29408\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7144\",\"product_code\":\"3177\",\"product_name\":\"RENEWLIFE 30\\/90S\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"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-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29409\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7145\",\"product_code\":\"3178\",\"product_name\":\"ACTIVE B12 FOLATE\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.0000\"},{\"id\":\"29410\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7146\",\"product_code\":\"3179\",\"product_name\":\"COQ-ZYME\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29411\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7147\",\"product_code\":\"3180\",\"product_name\":\"QUADRALEAN\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29412\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7148\",\"product_code\":\"3181\",\"product_name\":\"GINGER ROOT 550MG\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29413\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7149\",\"product_code\":\"3182\",\"product_name\":\"HAIR & SKIN CAPS\",\"option_id\":null,\"net_unit_cost\":\"2.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.5000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5500\",\"real_unit_cost\":\"2.5500\",\"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\":\"2.5500\"},{\"id\":\"29414\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7150\",\"product_code\":\"3183\",\"product_name\":\"DIYHDROMRICETIN\",\"option_id\":null,\"net_unit_cost\":\"2.9000\",\"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\":\"8.7000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.9000\",\"real_unit_cost\":\"2.9000\",\"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\":\"2.9000\"},{\"id\":\"29415\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7151\",\"product_code\":\"3184\",\"product_name\":\"CALCIUM B12 SYRUP\",\"option_id\":null,\"net_unit_cost\":\"3.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.6000\",\"quantity_balance\":\"16.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1000\",\"real_unit_cost\":\"3.1000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.1000\"},{\"id\":\"29416\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7152\",\"product_code\":\"3185\",\"product_name\":\"COUGH & COLD CHILD CARE\",\"option_id\":null,\"net_unit_cost\":\"1.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.6000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.5500\",\"real_unit_cost\":\"1.5500\",\"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\":\"1.5500\"},{\"id\":\"29417\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7153\",\"product_code\":\"3186\",\"product_name\":\"FOLIRON TONIC 200ML\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"29418\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7154\",\"product_code\":\"3187\",\"product_name\":\"LETAVIT SYRUP\",\"option_id\":null,\"net_unit_cost\":\"2.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.8000\",\"real_unit_cost\":\"2.8000\",\"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\":\"2.8000\"},{\"id\":\"29419\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7155\",\"product_code\":\"3188\",\"product_name\":\"MILK OF MAGNESIA LETAP\",\"option_id\":null,\"net_unit_cost\":\"1.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.5000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6500\",\"real_unit_cost\":\"1.6500\",\"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\":\"1.6500\"},{\"id\":\"29420\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7156\",\"product_code\":\"3189\",\"product_name\":\"LETARON SYRUP\",\"option_id\":null,\"net_unit_cost\":\"1.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.3000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6500\",\"real_unit_cost\":\"1.6500\",\"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\":\"1.6500\"},{\"id\":\"29421\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7157\",\"product_code\":\"3190\",\"product_name\":\"AMOXYCILLIN SYRUP LETAP\",\"option_id\":null,\"net_unit_cost\":\"0.4500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"58.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.1000\",\"quantity_balance\":\"58.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.4500\",\"real_unit_cost\":\"0.4500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"58.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.4500\"},{\"id\":\"29422\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7158\",\"product_code\":\"3191\",\"product_name\":\"LETAFEN SUSPENSION\",\"option_id\":null,\"net_unit_cost\":\"0.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"10.8900\",\"quantity_balance\":\"11.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.9900\",\"real_unit_cost\":\"0.9900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.9900\"},{\"id\":\"29423\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7159\",\"product_code\":\"3192\",\"product_name\":\"LETAMOX TABLET 500MG\",\"option_id\":null,\"net_unit_cost\":\"3.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"43.4000\",\"quantity_balance\":\"14.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.1000\",\"real_unit_cost\":\"3.1000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.1000\"},{\"id\":\"29424\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7160\",\"product_code\":\"3193\",\"product_name\":\"XPEL SUSP DEWORMER\",\"option_id\":null,\"net_unit_cost\":\"0.3500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"84.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"29.4000\",\"quantity_balance\":\"84.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.3500\",\"real_unit_cost\":\"0.3500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"84.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.3500\"},{\"id\":\"29425\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7161\",\"product_code\":\"3194\",\"product_name\":\"ARFAN 20\\/120MG\",\"option_id\":null,\"net_unit_cost\":\"0.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"37.5000\",\"quantity_balance\":\"150.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.2500\",\"real_unit_cost\":\"0.2500\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"150.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.2500\"},{\"id\":\"29426\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7162\",\"product_code\":\"3195\",\"product_name\":\"ASCORBIN TAB\",\"option_id\":null,\"net_unit_cost\":\"6.3000\",\"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\":\"-18.9000\",\"quantity_balance\":\"-3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.3000\",\"real_unit_cost\":\"6.3000\",\"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\":\"6.3000\"},{\"id\":\"29427\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7163\",\"product_code\":\"3196\",\"product_name\":\"FUROSEMIDE TAB LETAP\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"29428\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7164\",\"product_code\":\"3197\",\"product_name\":\"AZIS TAB 500MG\",\"option_id\":null,\"net_unit_cost\":\"68.2500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"136.5000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"68.2500\",\"real_unit_cost\":\"68.2500\",\"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\":\"68.2500\"},{\"id\":\"29429\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7165\",\"product_code\":\"3198\",\"product_name\":\"SALINE NASAL LOCAL\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"29430\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7166\",\"product_code\":\"3199\",\"product_name\":\"PLENDIL 10MG\",\"option_id\":null,\"net_unit_cost\":\"2.3300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.9800\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.3300\",\"real_unit_cost\":\"2.3300\",\"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\":\"2.3300\"},{\"id\":\"29431\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7167\",\"product_code\":\"3200\",\"product_name\":\"ENAMYCIN SUSP ECL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"29432\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7168\",\"product_code\":\"3201\",\"product_name\":\"LILY  ROSS BRUSH\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"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\":\"25.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"8.5000\"},{\"id\":\"29433\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7169\",\"product_code\":\"3202\",\"product_name\":\"CLINIC CLEAR LOTION SMALL\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"29434\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7170\",\"product_code\":\"3203\",\"product_name\":\"BIOSKIN MEDIUM\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.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\":\"2.5000\"},{\"id\":\"29435\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7171\",\"product_code\":\"3204\",\"product_name\":\"DAY BY DAY POWDER\",\"option_id\":null,\"net_unit_cost\":\"7.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"187.5000\",\"quantity_balance\":\"25.0000\",\"date\":\"2021-08-21\",\"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\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.5000\"},{\"id\":\"29436\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7172\",\"product_code\":\"3205\",\"product_name\":\"STYLING GEL BROKLYN\",\"option_id\":null,\"net_unit_cost\":\"10.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\":\"30.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\"},{\"id\":\"29437\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7173\",\"product_code\":\"3206\",\"product_name\":\"HERBAL ESSENTIAL OIL 30ML\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29438\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7174\",\"product_code\":\"3207\",\"product_name\":\"HERBAL ESSENTIALS OIL 40ML\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.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\":\"5.0000\"},{\"id\":\"29439\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7175\",\"product_code\":\"3208\",\"product_name\":\"HERBAL ESSENTIALS OIL 60ML\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"29440\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7176\",\"product_code\":\"3209\",\"product_name\":\"HERBAL ESSENTIAL OIL 10ML\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"29441\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7177\",\"product_code\":\"3210\",\"product_name\":\"LUBRIMAX JELLY 50G\",\"option_id\":null,\"net_unit_cost\":\"38.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"38.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"38.5000\",\"real_unit_cost\":\"38.5000\",\"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\":\"38.5000\"},{\"id\":\"29442\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7178\",\"product_code\":\"3211\",\"product_name\":\"FIESTA LUBRICANT GEL SMALL\",\"option_id\":null,\"net_unit_cost\":\"11.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9000\",\"real_unit_cost\":\"11.9000\",\"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\":\"11.9000\"},{\"id\":\"29443\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7179\",\"product_code\":\"3212\",\"product_name\":\"TYLENOL PM 24\'S\",\"option_id\":null,\"net_unit_cost\":\"3.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.4000\",\"real_unit_cost\":\"3.4000\",\"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\":\"3.4000\"},{\"id\":\"29444\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7180\",\"product_code\":\"3213\",\"product_name\":\"GACET 500MG\",\"option_id\":null,\"net_unit_cost\":\"28.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"57.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.5000\",\"real_unit_cost\":\"28.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\":\"28.5000\"},{\"id\":\"29445\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7181\",\"product_code\":\"3214\",\"product_name\":\"mercy soap\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"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\":\"4.4000\"},{\"id\":\"29446\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7182\",\"product_code\":\"3215\",\"product_name\":\"TCP 50ML\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"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\":\"4.4000\"},{\"id\":\"29447\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7183\",\"product_code\":\"3216\",\"product_name\":\"ANTREMOL D\",\"option_id\":null,\"net_unit_cost\":\"8.8000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"8.8000\",\"real_unit_cost\":\"8.8000\",\"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\":\"8.8000\"},{\"id\":\"29448\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7184\",\"product_code\":\"3217\",\"product_name\":\"ENTRAMOL D\",\"option_id\":null,\"net_unit_cost\":\"2.4700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.2300\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.4700\",\"real_unit_cost\":\"2.4700\",\"quantity_received\":null,\"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.4700\"},{\"id\":\"29449\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7185\",\"product_code\":\"3218\",\"product_name\":\"GIVERS HERBAL MIXTURE BIG\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"85.5000\",\"quantity_balance\":\"19.0000\",\"date\":\"2021-08-21\",\"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\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29450\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7186\",\"product_code\":\"3219\",\"product_name\":\"FLUCONAT 150\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"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\":\"28.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.5000\"},{\"id\":\"29451\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7187\",\"product_code\":\"3220\",\"product_name\":\"LONART TAB\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"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\":\"12.0000\"},{\"id\":\"29452\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7188\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"88.0000\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-21\",\"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\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29453\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7189\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"25.2900\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"2.8100\",\"real_unit_cost\":\"2.8100\",\"quantity_received\":null,\"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\":\"29454\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7190\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"29455\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7191\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"29456\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7192\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"4.4800\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.1600\",\"real_unit_cost\":\"0.1600\",\"quantity_received\":null,\"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\":\"29457\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7193\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.4000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.3000\",\"quantity_received\":null,\"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\":\"29458\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7194\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.9000\",\"real_unit_cost\":\"3.9000\",\"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\":\"3.9000\"},{\"id\":\"29459\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7195\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\"},{\"id\":\"29460\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7196\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"6.6600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.6600\",\"real_unit_cost\":\"6.6600\",\"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\":\"6.6600\"},{\"id\":\"29461\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7197\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"29462\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7198\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"9.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"29463\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7199\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"29464\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7200\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"36.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"29465\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7201\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"10.2400\",\"real_unit_cost\":\"10.2400\",\"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.2400\"},{\"id\":\"29466\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7202\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"29467\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7203\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"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\":\"20.0000\"},{\"id\":\"29468\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7204\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.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\":\"12.0000\"},{\"id\":\"29469\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7205\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29470\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7206\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"29471\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7207\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"29472\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7208\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"29473\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7209\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"29474\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7210\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"34.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"29475\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7211\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"13.0000\"},{\"id\":\"29476\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7212\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"184.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"92.0000\",\"real_unit_cost\":\"92.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\":\"92.0000\"},{\"id\":\"29477\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7213\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"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\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"29478\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7214\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.9500\",\"real_unit_cost\":\"5.9500\",\"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\":\"5.9500\"},{\"id\":\"29479\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7215\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.9000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9000\",\"real_unit_cost\":\"7.9000\",\"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\":\"7.9000\"},{\"id\":\"29480\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7216\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"72.0000\",\"real_unit_cost\":\"72.0000\",\"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\":\"72.0000\"},{\"id\":\"29481\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7217\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"23.9800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"11.9900\",\"real_unit_cost\":\"11.9900\",\"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\":\"11.9900\"},{\"id\":\"29482\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7218\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"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\":\"20.0000\"},{\"id\":\"29483\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7219\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"72.0000\",\"real_unit_cost\":\"72.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\":\"72.0000\"},{\"id\":\"29484\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7220\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"24.0000\",\"real_unit_cost\":\"24.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\":\"24.0000\"},{\"id\":\"29485\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7221\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"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\":\"6.0000\"},{\"id\":\"29486\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7222\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"19.8000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.6600\",\"real_unit_cost\":\"0.6600\",\"quantity_received\":null,\"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\":\"29487\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7223\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"149.8000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.9800\",\"real_unit_cost\":\"14.9800\",\"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\":\"14.9800\"},{\"id\":\"29488\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7224\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.7200\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.7200\",\"real_unit_cost\":\"5.7200\",\"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\":\"5.7200\"},{\"id\":\"29489\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7225\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.8000\",\"real_unit_cost\":\"3.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\":\"3.8000\"},{\"id\":\"29490\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7226\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"178.0800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"89.0400\",\"real_unit_cost\":\"89.0400\",\"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\":\"89.0400\"},{\"id\":\"29491\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7227\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"52.5600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"26.2800\",\"real_unit_cost\":\"26.2800\",\"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\":\"26.2800\"},{\"id\":\"29492\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7228\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"31.3200\",\"real_unit_cost\":\"31.3200\",\"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\":\"31.3200\"},{\"id\":\"29493\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7229\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.0400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.0200\",\"real_unit_cost\":\"52.0200\",\"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\":\"52.0200\"},{\"id\":\"29494\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7230\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"91.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"91.8000\",\"real_unit_cost\":\"91.8000\",\"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\":\"91.8000\"},{\"id\":\"29495\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7231\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"71.7600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.9400\",\"real_unit_cost\":\"17.9400\",\"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\":\"17.9400\"},{\"id\":\"29496\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7232\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"53.4600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"53.4600\",\"real_unit_cost\":\"53.4600\",\"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\":\"53.4600\"},{\"id\":\"29497\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7233\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"41.0400\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"41.0400\",\"real_unit_cost\":\"41.0400\",\"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\":\"41.0400\"},{\"id\":\"29498\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7234\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"80.8800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"40.4400\",\"real_unit_cost\":\"40.4400\",\"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\":\"40.4400\"},{\"id\":\"29499\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7235\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"16.0200\",\"real_unit_cost\":\"16.0200\",\"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\":\"16.0200\"},{\"id\":\"29500\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7236\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"67.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.6000\",\"real_unit_cost\":\"33.6000\",\"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\":\"33.6000\"},{\"id\":\"29501\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7237\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.0400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.0200\",\"real_unit_cost\":\"52.0200\",\"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\":\"52.0200\"},{\"id\":\"29502\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7238\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"79.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"39.9000\",\"real_unit_cost\":\"39.9000\",\"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\":\"39.9000\"},{\"id\":\"29503\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7239\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"82.4400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"41.2200\",\"real_unit_cost\":\"41.2200\",\"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\":\"41.2200\"},{\"id\":\"29504\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7240\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"76.5600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"38.2800\",\"real_unit_cost\":\"38.2800\",\"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\":\"38.2800\"},{\"id\":\"29505\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7241\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.6400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.8200\",\"real_unit_cost\":\"17.8200\",\"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\":\"17.8200\"},{\"id\":\"29506\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7242\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"71.1600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"35.5800\",\"real_unit_cost\":\"35.5800\",\"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\":\"35.5800\"},{\"id\":\"29507\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7243\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"92.3400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"30.7800\",\"real_unit_cost\":\"30.7800\",\"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\":\"30.7800\"},{\"id\":\"29508\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7244\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"27.4800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.4800\",\"real_unit_cost\":\"27.4800\",\"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\":\"27.4800\"},{\"id\":\"29509\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7245\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"56.7600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"28.3800\",\"real_unit_cost\":\"28.3800\",\"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\":\"28.3800\"},{\"id\":\"29510\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7246\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.7200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"45.3600\",\"real_unit_cost\":\"45.3600\",\"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\":\"45.3600\"},{\"id\":\"29511\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7247\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"131.7600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"65.8800\",\"real_unit_cost\":\"65.8800\",\"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\":\"65.8800\"},{\"id\":\"29512\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7248\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"52.2000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"52.2000\",\"real_unit_cost\":\"52.2000\",\"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\":\"52.2000\"},{\"id\":\"29513\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7249\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\"},{\"id\":\"29514\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7250\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"29515\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7251\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"7.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"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\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.5000\"},{\"id\":\"29516\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7252\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.3000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.6500\",\"real_unit_cost\":\"17.6500\",\"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\":\"17.6500\"},{\"id\":\"29517\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7253\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"17.2900\",\"real_unit_cost\":\"17.2900\",\"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\":\"17.2900\"},{\"id\":\"29518\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7254\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"65.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"32.9800\",\"real_unit_cost\":\"32.9800\",\"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\":\"32.9800\"},{\"id\":\"29519\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7255\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.3000\",\"real_unit_cost\":\"9.3000\",\"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\":\"9.3000\"},{\"id\":\"29520\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7256\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"103.5600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"51.7800\",\"real_unit_cost\":\"51.7800\",\"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\":\"51.7800\"},{\"id\":\"29521\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7257\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"141.1600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"70.5800\",\"real_unit_cost\":\"70.5800\",\"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\":\"70.5800\"},{\"id\":\"29522\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7258\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"117.6000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"14.7000\",\"real_unit_cost\":\"14.7000\",\"quantity_received\":null,\"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\":\"29523\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7259\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"84.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"42.3000\",\"real_unit_cost\":\"42.3000\",\"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\":\"42.3000\"},{\"id\":\"29524\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7260\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"46.7300\",\"real_unit_cost\":\"46.7300\",\"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\":\"46.7300\"},{\"id\":\"29525\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7261\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.4800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"37.7400\",\"real_unit_cost\":\"37.7400\",\"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\":\"37.7400\"},{\"id\":\"29526\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7262\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"76.0800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"38.0400\",\"real_unit_cost\":\"38.0400\",\"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\":\"38.0400\"},{\"id\":\"29527\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7263\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"123.8400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"61.9200\",\"real_unit_cost\":\"61.9200\",\"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\":\"61.9200\"},{\"id\":\"29528\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7264\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"124.0400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"62.0200\",\"real_unit_cost\":\"62.0200\",\"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\":\"62.0200\"},{\"id\":\"29529\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7265\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"24.8000\",\"real_unit_cost\":\"24.8000\",\"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\":\"24.8000\"},{\"id\":\"29530\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7266\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.6000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"9.9200\",\"real_unit_cost\":\"9.9200\",\"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\":\"9.9200\"},{\"id\":\"29531\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7267\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"2.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"29532\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7268\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.6200\",\"real_unit_cost\":\"5.6200\",\"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\":\"5.6200\"},{\"id\":\"29533\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7269\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.2000\",\"real_unit_cost\":\"5.2000\",\"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\":\"5.2000\"},{\"id\":\"29534\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7270\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"31.7600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9400\",\"real_unit_cost\":\"7.9400\",\"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\":\"7.9400\"},{\"id\":\"29535\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7271\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"60.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.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\":\"20.0000\"},{\"id\":\"29536\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7272\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"45.0000\",\"real_unit_cost\":\"45.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\":\"45.0000\"},{\"id\":\"29537\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7273\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"89.8200\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.9900\",\"real_unit_cost\":\"4.9900\",\"quantity_received\":null,\"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\":\"29538\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7274\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"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\":\"6.0000\"},{\"id\":\"29539\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7275\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"49.0200\",\"quantity_balance\":\"43.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.1400\",\"real_unit_cost\":\"1.1400\",\"quantity_received\":null,\"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\":\"29540\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7276\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"270.0000\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-21\",\"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\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29541\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7277\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"250.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-21\",\"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\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"29542\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7278\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\"},{\"id\":\"29543\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7279\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-21\",\"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\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"29544\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7280\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29545\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7281\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"11.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.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\":\"5.5000\"},{\"id\":\"29546\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7282\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"75.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"29547\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7283\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"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\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"29548\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7284\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.4800\",\"quantity_balance\":\"33.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5600\",\"real_unit_cost\":\"0.5600\",\"quantity_received\":null,\"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\":\"29549\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7285\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.3600\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4200\",\"real_unit_cost\":\"4.4200\",\"quantity_received\":null,\"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\":\"29550\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7286\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"13.2000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"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\":\"4.4000\"},{\"id\":\"29551\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7287\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"40.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"0.5000\",\"real_unit_cost\":\"0.5000\",\"quantity_received\":null,\"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\":\"29552\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7288\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"3.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"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\":\"3.5000\"},{\"id\":\"29553\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7289\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.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\":\"3.5000\"},{\"id\":\"29554\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7290\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"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\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"29555\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7291\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"27.1000\",\"real_unit_cost\":\"27.1000\",\"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\":\"27.1000\"},{\"id\":\"29556\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7292\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"5.4000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.4000\",\"real_unit_cost\":\"5.4000\",\"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\":\"5.4000\"},{\"id\":\"29557\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7293\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"10.5000\"},{\"id\":\"29558\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7294\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"63.6000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"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\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.3000\"},{\"id\":\"29559\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7295\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"55.2000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"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\":\"4.6000\"},{\"id\":\"29560\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7296\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"22.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"11.0000\"},{\"id\":\"29561\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7297\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"140.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":null,\"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\":\"29562\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7298\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"54.9600\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"6.8700\",\"real_unit_cost\":\"6.8700\",\"quantity_received\":null,\"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\":\"29563\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7299\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"33.4700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"33.4700\",\"real_unit_cost\":\"33.4700\",\"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\":\"33.4700\"},{\"id\":\"29564\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7300\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"12.8000\",\"real_unit_cost\":\"12.8000\",\"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\":\"12.8000\"},{\"id\":\"29565\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7301\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"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\":\"5.0000\"},{\"id\":\"29566\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7302\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"32.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6000\",\"real_unit_cost\":\"1.6000\",\"quantity_received\":null,\"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\":\"29567\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7303\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"35.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.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\":\"7.0000\"},{\"id\":\"29568\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7304\",\"product_code\":\"3337\",\"product_name\":\"DORCO RAZOR\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"20.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"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\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29569\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7305\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.8000\"},{\"id\":\"29570\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7306\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"200.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-21\",\"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\":\"50.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29571\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7307\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"16.7700\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"5.5900\",\"real_unit_cost\":\"5.5900\",\"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\":\"5.5900\"},{\"id\":\"29572\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7308\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"29573\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7309\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"21.6000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3200\",\"real_unit_cost\":\"4.3200\",\"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\":\"4.3200\"},{\"id\":\"29574\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7310\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"8.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"1.6000\",\"real_unit_cost\":\"1.6000\",\"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\":\"1.6000\"},{\"id\":\"29575\",\"purchase_id\":\"201\",\"transfer_id\":null,\"product_id\":\"7311\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"68.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"68.0000\",\"real_unit_cost\":\"68.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\":\"68.0000\"}]}', '2021-08-21 07:08:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2567, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5201\",\"code\":\"1234\",\"name\":\"PREGNACARE 19S\",\"unit\":\"1\",\"cost\":\"0.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"CF1\",\"cf2\":\"CF2\",\"cf3\":\"CF3\",\"cf4\":\"CF4\",\"cf5\":\"CF5\",\"cf6\":\"CF6\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-19s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2568, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5202\",\"code\":\"1235\",\"name\":\"LONART FORTE TABS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1235\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-forte-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2569, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5203\",\"code\":\"1236\",\"name\":\"LOFNAC SUPP 100MG\",\"unit\":\"1\",\"cost\":\"9.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1236\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-supp-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2570, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5204\",\"code\":\"1237\",\"name\":\"LONART DS TABS\",\"unit\":\"1\",\"cost\":\"19.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1237\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-ds-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2571, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5205\",\"code\":\"1238\",\"name\":\"LONART SUSP\",\"unit\":\"1\",\"cost\":\"13.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1238\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2572, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5206\",\"code\":\"1239\",\"name\":\"MENTAT TABS\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1239\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentat-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2573, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5207\",\"code\":\"1240\",\"name\":\"LOSAR-DENK 100\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losar-denk-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2574, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5208\",\"code\":\"1241\",\"name\":\"METROLEX-F TABS\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1241\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metrolex-f-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2575, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5209\",\"code\":\"1242\",\"name\":\"LUEX ADULT DRY\",\"unit\":\"1\",\"cost\":\"4.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1242\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2576, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5210\",\"code\":\"1243\",\"name\":\"LUEX CHILD DRY\",\"unit\":\"1\",\"cost\":\"6.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1243\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2577, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5211\",\"code\":\"1244\",\"name\":\"METFORMIN DENK 500MG\",\"unit\":\"1\",\"cost\":\"55.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1244\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2578, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5212\",\"code\":\"1245\",\"name\":\"LYRICA 150MG\",\"unit\":\"1\",\"cost\":\"23.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1245\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2579, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5213\",\"code\":\"1246\",\"name\":\"M2 TONE\",\"unit\":\"1\",\"cost\":\"0.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1246\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"m2-tone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2580, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5214\",\"code\":\"1247\",\"name\":\"motilium\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1247\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"motilium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2581, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5215\",\"code\":\"1248\",\"name\":\"MULTIVITE\",\"unit\":\"1\",\"cost\":\"11.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1248\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"multivite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2582, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5216\",\"code\":\"1249\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"19.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1249\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2583, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5217\",\"code\":\"1250\",\"name\":\"MYCOLEX CREAM\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1250\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2584, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5218\",\"code\":\"1251\",\"name\":\"NATRILIX SR 1.5MG\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1251\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"natrilix-sr-15mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2585, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5219\",\"code\":\"1252\",\"name\":\"MYCROGYNON Fe\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1252\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycrogynon-fe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2586, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5220\",\"code\":\"1253\",\"name\":\"MR Q\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1253\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mr-q\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2587, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5221\",\"code\":\"1254\",\"name\":\"NIFECARD XL 30\",\"unit\":\"1\",\"cost\":\"21.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifecard-xl-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2588, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5222\",\"code\":\"1255\",\"name\":\"NEO HYCOLEX5ML\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1255\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-hycolex5ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2589, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5223\",\"code\":\"1256\",\"name\":\"NCP200ML\",\"unit\":\"1\",\"cost\":\"23.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ncp200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2590, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5224\",\"code\":\"1257\",\"name\":\"NERVE AND BONE\",\"unit\":\"1\",\"cost\":\"0.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1257\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-and-bone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2591, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5225\",\"code\":\"1258\",\"name\":\"NIZORAL CREAM\",\"unit\":\"1\",\"cost\":\"6.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1258\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2592, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5226\",\"code\":\"1259\",\"name\":\"NO SPA40MG\",\"unit\":\"1\",\"cost\":\"49.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1259\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"no-spa40mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2593, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5227\",\"code\":\"1260\",\"name\":\"OROLEX100MG\",\"unit\":\"1\",\"cost\":\"13.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1260\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orolex100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2594, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5228\",\"code\":\"1261\",\"name\":\"POLYGYNAX\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1261\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polygynax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2595, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5229\",\"code\":\"1262\",\"name\":\"AMOKSIKLAV228\",\"unit\":\"1\",\"cost\":\"1.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1262\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2596, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5230\",\"code\":\"1263\",\"name\":\"AMOXYCILLIN SUSP MG\",\"unit\":\"1\",\"cost\":\"47.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1263\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-susp-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2597, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5231\",\"code\":\"1264\",\"name\":\"PARA DENK250 SUPPO\",\"unit\":\"1\",\"cost\":\"94.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1264\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-denk250-suppo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2598, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5232\",\"code\":\"1265\",\"name\":\"PREGNACARE CONCEPTION\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-conception\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2599, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5233\",\"code\":\"1266\",\"name\":\"PREGNACARE PLUS\",\"unit\":\"1\",\"cost\":\"11.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1266\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2600, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5234\",\"code\":\"1267\",\"name\":\"PILEX OINT\",\"unit\":\"1\",\"cost\":\"14.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1267\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilex-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2601, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5235\",\"code\":\"1268\",\"name\":\"ALPHA GARLIC CAPS\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1268\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-garlic-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2602, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5236\",\"code\":\"1269\",\"name\":\"ACTINAC TAB\",\"unit\":\"1\",\"cost\":\"94.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1269\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actinac-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2603, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5237\",\"code\":\"1270\",\"name\":\"PERFECTIL\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1270\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2604, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5238\",\"code\":\"1271\",\"name\":\"AMARYL4MG\",\"unit\":\"1\",\"cost\":\"0.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amaryl4mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2605, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5239\",\"code\":\"1272\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"0.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1272\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anafranil25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2606, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5240\",\"code\":\"1273\",\"name\":\"APC 4S\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1273\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apc-4s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2607, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5241\",\"code\":\"1274\",\"name\":\"ALUMINIUM HYDROXIDE\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1274\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aluminium-hydroxide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2608, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5242\",\"code\":\"1275\",\"name\":\"BIOFERON SRP\",\"unit\":\"1\",\"cost\":\"11.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1275\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bioferon-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2609, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5243\",\"code\":\"1276\",\"name\":\"BIOFGERON CAPS\",\"unit\":\"1\",\"cost\":\"10.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1276\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"biofgeron-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2610, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5244\",\"code\":\"1277\",\"name\":\"BONISAN\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1277\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonisan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2611, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5245\",\"code\":\"1278\",\"name\":\"BELLS CHILDREN,S COUGH\",\"unit\":\"1\",\"cost\":\"18.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-childrens-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2612, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5246\",\"code\":\"1279\",\"name\":\"BORGES125\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2613, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5247\",\"code\":\"1280\",\"name\":\"BORGES250ML\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2614, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5248\",\"code\":\"1281\",\"name\":\"CAMEL500\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2615, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5249\",\"code\":\"1282\",\"name\":\"CAMEL 250ML\",\"unit\":\"1\",\"cost\":\"2.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1282\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2616, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5250\",\"code\":\"1283\",\"name\":\"CAMEL 125ML\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2617, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5251\",\"code\":\"1284\",\"name\":\"ANUSOL SUPPOS\",\"unit\":\"1\",\"cost\":\"5.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1284\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-suppos\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2618, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5252\",\"code\":\"1285\",\"name\":\"BIG BEN\",\"unit\":\"1\",\"cost\":\"9.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1285\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"big-ben\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2619, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5253\",\"code\":\"1286\",\"name\":\"ATORVASTATIN10MG\",\"unit\":\"1\",\"cost\":\"14.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atorvastatin10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2620, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5254\",\"code\":\"1287\",\"name\":\"ATORVASTATIN20MG\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1287\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atorvastatin20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2621, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5255\",\"code\":\"1288\",\"name\":\"BONAPLEX250MLS\",\"unit\":\"1\",\"cost\":\"11.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonaplex250mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2622, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5256\",\"code\":\"1289\",\"name\":\"BONGELA CHILD\",\"unit\":\"1\",\"cost\":\"32.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2623, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5257\",\"code\":\"1290\",\"name\":\"BELLS BABY COUGH\",\"unit\":\"1\",\"cost\":\"27.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1290\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-baby-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2624, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5258\",\"code\":\"1291\",\"name\":\"BONGELA ADULT\",\"unit\":\"1\",\"cost\":\"23.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1291\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2625, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5259\",\"code\":\"1292\",\"name\":\"BETALOC50MG\",\"unit\":\"1\",\"cost\":\"22.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"betaloc50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2626, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5260\",\"code\":\"1293\",\"name\":\"CATAFLAM 50MG\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cataflam-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2627, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5261\",\"code\":\"1294\",\"name\":\"AXACEF 250\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1294\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2628, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5262\",\"code\":\"1295\",\"name\":\"AXACEF 500\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1295\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2629, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5263\",\"code\":\"1296\",\"name\":\"VIT B DENK\",\"unit\":\"1\",\"cost\":\"141.7100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1296\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b-denk1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2630, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5264\",\"code\":\"1297\",\"name\":\"ATACAND16MG\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1297\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atacand16mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2631, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5265\",\"code\":\"1298\",\"name\":\"ATACAND PLUS 16\\/12.5MG\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1298\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atacand-plus-16125mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2632, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5266\",\"code\":\"1299\",\"name\":\"TEETHING MIXTURE ERNEST\",\"unit\":\"1\",\"cost\":\"12.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1299\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teething-mixture-ernest\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2633, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5267\",\"code\":\"1300\",\"name\":\"SURFAZ-SN TRIPLE  ACTION CREAM\",\"unit\":\"1\",\"cost\":\"5.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"surfaz-sn-triple-action-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2634, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5268\",\"code\":\"1301\",\"name\":\"TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329\",\"unit\":\"1\",\"cost\":\"55.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1301\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tooth-ache-solution-ayton329\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2635, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5269\",\"code\":\"1302\",\"name\":\"AZIROCIN CAPS USP 250 MG\",\"unit\":\"1\",\"cost\":\"7.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azirocin-caps-usp-250-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2636, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5270\",\"code\":\"1303\",\"name\":\"AUGMENTIN  625 MG\",\"unit\":\"1\",\"cost\":\"1.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-625-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2637, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5271\",\"code\":\"1304\",\"name\":\"AZIRON AZITHROMYCYCIN TAB USP 500 MG\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1304\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aziron-azithromycycin-tab-usp-500-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2638, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5272\",\"code\":\"1305\",\"name\":\"TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1305\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50mg-tramadol-hydrochloride-krka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2639, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5273\",\"code\":\"1306\",\"name\":\"CORORANGE HAEMATINIC CAPS SOFTGELS\",\"unit\":\"1\",\"cost\":\"3.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1306\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-haematinic-caps-softgels\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2640, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5274\",\"code\":\"1307\",\"name\":\"CATAFLAM 50MG DICLOFENAC. KAL ANTI-INALGESIC\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cataflam-50mg-diclofenac-kal-anti-inalgesic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2641, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5275\",\"code\":\"1308\",\"name\":\"AMOXYCILLIN SUSP ORAL BP 125\\/5ml\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1308\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-susp-oral-bp-1255ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2642, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5276\",\"code\":\"1309\",\"name\":\"CO-DIOVAN 80\\/12.5MG\",\"unit\":\"1\",\"cost\":\"14.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1309\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-diovan-80125mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2643, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5277\",\"code\":\"1310\",\"name\":\"STOPKOF COUGH SYRUP ADULT FORMULA\",\"unit\":\"1\",\"cost\":\"18.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1310\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-cough-syrup-adult-formula\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2644, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5278\",\"code\":\"1311\",\"name\":\"AMOKSIKLAV  228.5 ML ORAL SUSP\",\"unit\":\"1\",\"cost\":\"335.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1311\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-2285-ml-oral-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2645, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5279\",\"code\":\"1312\",\"name\":\"CLOTRI-DENK 100 VAGINAL TABS\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1312\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100-vaginal-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2646, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5280\",\"code\":\"1313\",\"name\":\"SARETTO TABS 15MG\",\"unit\":\"1\",\"cost\":\"9.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saretto-tabs-15mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2647, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5281\",\"code\":\"1314\",\"name\":\"ZINTAB 10ML\",\"unit\":\"1\",\"cost\":\"12.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1314\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-10ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2648, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5282\",\"code\":\"1315\",\"name\":\"TRIX ORIS S\\/S\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1315\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trix-oris-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2649, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5283\",\"code\":\"1316\",\"name\":\"ZINCOFER LIQUIED HAEMATINIC 200ML\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1316\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincofer-liquied-haematinic-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2650, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5284\",\"code\":\"1317\",\"name\":\"ZITHROMAX  SUSP\",\"unit\":\"1\",\"cost\":\"7.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1317\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zithromax-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2651, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5285\",\"code\":\"1318\",\"name\":\"WORMPLEX 400 SUSP. 20ML\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1318\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormplex-400-susp-20ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2652, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5286\",\"code\":\"1319\",\"name\":\"SE\'CLEAR EYE\\/EAR DROP\",\"unit\":\"1\",\"cost\":\"57.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1319\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eyeear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2653, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5287\",\"code\":\"1320\",\"name\":\"ZINCOVIT TAB\",\"unit\":\"1\",\"cost\":\"14.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2654, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5288\",\"code\":\"1321\",\"name\":\"WELLBABY MULTI-VIT LIQ\",\"unit\":\"1\",\"cost\":\"23.0900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1321\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellbaby-multi-vit-liq\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2655, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5289\",\"code\":\"1322\",\"name\":\"VERMOX SUSP\",\"unit\":\"1\",\"cost\":\"116.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vermox-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2656, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5290\",\"code\":\"1323\",\"name\":\"MOTILIUM 10 MG 30 TABS ORAL JANSSEN\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1323\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"motilium-10-mg-30-tabs-oral-janssen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2657, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5291\",\"code\":\"1324\",\"name\":\"TAVANIC 500MG LEVAFLAUZACIN sanofi\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tavanic-500mg-levaflauzacin-sanofi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2658, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5292\",\"code\":\"1325\",\"name\":\"bisoprolol fumarate 2.5mg tabs sandox\",\"unit\":\"1\",\"cost\":\"4.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1325\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bisoprolol-fumarate-25mg-tabs-sandox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2659, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5293\",\"code\":\"1326\",\"name\":\"POLYFER SYR FORTE  50ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-syr-forte-50ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2660, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5294\",\"code\":\"1327\",\"name\":\"SULFUR OINTMENT DANEX\",\"unit\":\"1\",\"cost\":\"7.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sulfur-ointment-danex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2661, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5295\",\"code\":\"1328\",\"name\":\"TAGERA FORTE\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tagera-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2662, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5296\",\"code\":\"1329\",\"name\":\"PRIMOLUT N\",\"unit\":\"1\",\"cost\":\"1.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1329\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2663, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5297\",\"code\":\"1330\",\"name\":\"PARABRU\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1330\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"parabru\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2664, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5298\",\"code\":\"1331\",\"name\":\"CITRO C\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"citro-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2665, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5299\",\"code\":\"1332\",\"name\":\"COLODIUM\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1332\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colodium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2666, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5300\",\"code\":\"1333\",\"name\":\"COLESTOP10MG\",\"unit\":\"1\",\"cost\":\"5.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1333\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colestop10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2667, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5301\",\"code\":\"1334\",\"name\":\"CONGESTYL SRP\",\"unit\":\"1\",\"cost\":\"18.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"congestyl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2668, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5302\",\"code\":\"1335\",\"name\":\"CONGESTYL TAB\",\"unit\":\"1\",\"cost\":\"5.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1335\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"congestyl-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2669, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5303\",\"code\":\"1336\",\"name\":\"CLOTRI DENK CREAM\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1336\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2670, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5304\",\"code\":\"1337\",\"name\":\"DALACIN 300MG ORIGINAL\",\"unit\":\"1\",\"cost\":\"25.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1337\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dalacin-300mg-original\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2671, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5305\",\"code\":\"1338\",\"name\":\"ANAFRANIL25\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1338\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anafranil25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2672, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5306\",\"code\":\"1339\",\"name\":\"DEEP HEAT SPRAY 150ML\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1339\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2673, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5307\",\"code\":\"1340\",\"name\":\"DEEP FREEZE SPRAY 150ML\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1340\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2674, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5308\",\"code\":\"1341\",\"name\":\"TENOX5MG\",\"unit\":\"1\",\"cost\":\"12.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1341\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tenox5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2675, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5309\",\"code\":\"1342\",\"name\":\"CIPRINOL 500\",\"unit\":\"1\",\"cost\":\"4.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2676, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5310\",\"code\":\"1343\",\"name\":\"COOL EYES\",\"unit\":\"1\",\"cost\":\"7.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1343\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cool-eyes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2677, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5311\",\"code\":\"1344\",\"name\":\"CLOSE UP140G\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1344\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"close-up140g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2678, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5312\",\"code\":\"1345\",\"name\":\"CORORANGE SRP\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2679, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5313\",\"code\":\"1346\",\"name\":\"COTTON WOOL200G\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wool200g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2680, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5314\",\"code\":\"1347\",\"name\":\"AZOMAX 500\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1347\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azomax-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2681, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5315\",\"code\":\"1348\",\"name\":\"TADOL 100\",\"unit\":\"1\",\"cost\":\"49.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1348\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2682, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5316\",\"code\":\"1349\",\"name\":\"VAGINAX CREAM\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1349\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaginax-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2683, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5317\",\"code\":\"1350\",\"name\":\"ZINNAT 250 TAB\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1350\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2684, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5318\",\"code\":\"1351\",\"name\":\"CIPROLEX TZ\",\"unit\":\"1\",\"cost\":\"4.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1351\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2685, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5319\",\"code\":\"1352\",\"name\":\"VITAFORCE\",\"unit\":\"1\",\"cost\":\"3.2300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1352\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitaforce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2686, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5320\",\"code\":\"1353\",\"name\":\"ZESTRIL 20MG\",\"unit\":\"1\",\"cost\":\"6.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1353\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zestril-20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2687, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5321\",\"code\":\"1354\",\"name\":\"ZESTRIL 10MG\",\"unit\":\"1\",\"cost\":\"2.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1354\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zestril-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2688, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5322\",\"code\":\"1355\",\"name\":\"CRESTOR 20\",\"unit\":\"1\",\"cost\":\"4.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1355\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2689, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5323\",\"code\":\"1356\",\"name\":\"NEUROBION\",\"unit\":\"1\",\"cost\":\"28.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1356\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neurobion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2690, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5324\",\"code\":\"1357\",\"name\":\"CO APPROVEL 150\\/12.5\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1357\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-approvel-150125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2691, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5325\",\"code\":\"1358\",\"name\":\"OSTEOCARE ORG TAB\",\"unit\":\"1\",\"cost\":\"23.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1358\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-org-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2692, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5326\",\"code\":\"1359\",\"name\":\"TOBRADEX EYE DROP\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1359\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tobradex-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2693, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5327\",\"code\":\"1360\",\"name\":\"ZINACEF 750\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1360\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinacef-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2694, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5328\",\"code\":\"1361\",\"name\":\"ANGEL CREAM\",\"unit\":\"1\",\"cost\":\"0.2300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1361\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2695, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5329\",\"code\":\"1362\",\"name\":\"CASTOR OIL\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1362\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castor-oil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2696, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5330\",\"code\":\"1363\",\"name\":\"ZINTAB 20MG 1000S\",\"unit\":\"1\",\"cost\":\"6.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1363\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-20mg-1000s1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2697, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5331\",\"code\":\"1364\",\"name\":\"COLDRELIEF CAPS\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1364\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coldrelief-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2698, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5332\",\"code\":\"1365\",\"name\":\"CIROTAMIN SRP\",\"unit\":\"1\",\"cost\":\"1.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1365\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cirotamin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2699, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5333\",\"code\":\"1366\",\"name\":\"TETRA OINT\",\"unit\":\"1\",\"cost\":\"1.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1366\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tetra-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2700, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5334\",\"code\":\"1367\",\"name\":\"STREPSILS ORG\",\"unit\":\"1\",\"cost\":\"19.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1367\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2701, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5335\",\"code\":\"1368\",\"name\":\"STREPTOL54\\/6\",\"unit\":\"1\",\"cost\":\"15.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1368\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol546\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2702, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5336\",\"code\":\"1369\",\"name\":\"VENTOLIN EVOHALER\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1369\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-evohaler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2703, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5337\",\"code\":\"1370\",\"name\":\"V-FIRM\",\"unit\":\"1\",\"cost\":\"5.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1370\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-firm1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2704, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5338\",\"code\":\"1371\",\"name\":\"WARFARIN 5MG\",\"unit\":\"1\",\"cost\":\"20.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1371\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2705, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5339\",\"code\":\"1372\",\"name\":\"WARFARIN 1MG\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1372\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-1mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2706, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5340\",\"code\":\"1373\",\"name\":\"TRES ORIX 250ML\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1373\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2707, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5341\",\"code\":\"1374\",\"name\":\"WELLMAN CAPS\",\"unit\":\"1\",\"cost\":\"26.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1374\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2708, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5342\",\"code\":\"1375\",\"name\":\"WELLWOMAN CAPS\",\"unit\":\"1\",\"cost\":\"5.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1375\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2709, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5343\",\"code\":\"1376\",\"name\":\"VENTOLIN INHALER\",\"unit\":\"1\",\"cost\":\"1.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1376\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-inhaler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2710, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5344\",\"code\":\"1377\",\"name\":\"WORMPLEX SUSP\",\"unit\":\"1\",\"cost\":\"2.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1377\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormplex-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2711, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5345\",\"code\":\"1378\",\"name\":\"VOLLTFAST 50MG\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1378\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"volltfast-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2712, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5346\",\"code\":\"1379\",\"name\":\"TOTHEMA\",\"unit\":\"1\",\"cost\":\"40.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1379\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tothema\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2713, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5347\",\"code\":\"1380\",\"name\":\"GVITHER INJ\",\"unit\":\"1\",\"cost\":\"51.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1380\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gvither-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2714, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5348\",\"code\":\"1381\",\"name\":\"PROVIRON\",\"unit\":\"1\",\"cost\":\"86.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1381\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proviron\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2715, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5349\",\"code\":\"1382\",\"name\":\"PROSTACARE\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1382\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostacare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2716, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5350\",\"code\":\"1383\",\"name\":\"ROCEPHINE INJ 2G\",\"unit\":\"1\",\"cost\":\"20.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1383\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rocephine-inj-2g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2717, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5351\",\"code\":\"1384\",\"name\":\"RHINATHIOL ADULT BLUE\",\"unit\":\"1\",\"cost\":\"2.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1384\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-blue\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2718, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5352\",\"code\":\"1385\",\"name\":\"RHINATHIOL INFANT PINK\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1385\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-infant-pink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2719, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5353\",\"code\":\"1386\",\"name\":\"PROXIMEXA CAPS 250\",\"unit\":\"1\",\"cost\":\"1.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1386\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2720, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5354\",\"code\":\"1387\",\"name\":\"LIPTON GREEN TEA\",\"unit\":\"1\",\"cost\":\"16.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1387\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipton-green-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2721, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5355\",\"code\":\"1388\",\"name\":\"LIGABA 75\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1388\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ligaba-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2722, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5356\",\"code\":\"1389\",\"name\":\"LEXSPORIN OINT\",\"unit\":\"1\",\"cost\":\"10.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1389\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexsporin-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2723, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5357\",\"code\":\"1390\",\"name\":\"LEXOTANIL 1.5MG\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1390\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexotanil-15mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2724, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5358\",\"code\":\"1391\",\"name\":\"LAMISIL TAB\",\"unit\":\"1\",\"cost\":\"0.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1391\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamisil-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2725, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5359\",\"code\":\"1392\",\"name\":\"SAMALIN JUNIOR\\/NON DROWSY\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1392\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-juniornon-drowsy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2726, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5360\",\"code\":\"1393\",\"name\":\"RAPINOL\",\"unit\":\"1\",\"cost\":\"9.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1393\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rapinol1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2727, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5361\",\"code\":\"1394\",\"name\":\"KOFOF BABY\",\"unit\":\"1\",\"cost\":\"67.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1394\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofof-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2728, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5362\",\"code\":\"1395\",\"name\":\"MAGACID PLUS\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1395\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2729, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5363\",\"code\":\"1396\",\"name\":\"TRITACE 2.5MG\",\"unit\":\"1\",\"cost\":\"4.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1396\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tritace-25mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2730, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5364\",\"code\":\"1397\",\"name\":\"PREDNISOLONE 5MG\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1397\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prednisolone-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2731, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5365\",\"code\":\"1398\",\"name\":\"NIFE DENK 20\",\"unit\":\"1\",\"cost\":\"29.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1398\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nife-denk-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2732, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5366\",\"code\":\"1399\",\"name\":\"ORELOX 100TAB\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1399\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-100tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2733, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5367\",\"code\":\"1400\",\"name\":\"OSTEOCARE SRP ORG\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1400\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2734, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5368\",\"code\":\"1401\",\"name\":\"PARA SRP M\\/G\",\"unit\":\"1\",\"cost\":\"0.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1401\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2735, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5369\",\"code\":\"1402\",\"name\":\"MAXMOX 500\",\"unit\":\"1\",\"cost\":\"10.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1402\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maxmox-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2736, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5370\",\"code\":\"1403\",\"name\":\"ORS\",\"unit\":\"1\",\"cost\":\"0.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1403\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ors\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2737, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5371\",\"code\":\"1404\",\"name\":\"PARA INFUSION\",\"unit\":\"1\",\"cost\":\"54.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1404\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-infusion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2738, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5372\",\"code\":\"1405\",\"name\":\"PARA TAB\",\"unit\":\"1\",\"cost\":\"19.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1405\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2739, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5373\",\"code\":\"1406\",\"name\":\"ROCEPHINE INJ 1G\",\"unit\":\"1\",\"cost\":\"9.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1406\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rocephine-inj-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2740, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5374\",\"code\":\"1407\",\"name\":\"CLAVULIN TAB\",\"unit\":\"1\",\"cost\":\"2.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1407\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clavulin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2741, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5375\",\"code\":\"1408\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"0.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1408\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint-15g1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2742, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5376\",\"code\":\"1409\",\"name\":\"AMPICLOX SUSP\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1409\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampiclox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2743, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5377\",\"code\":\"1410\",\"name\":\"SYRINGE 5CC\",\"unit\":\"1\",\"cost\":\"9.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1410\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"syringe-5cc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2744, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5378\",\"code\":\"1411\",\"name\":\"ASCORYL SRP\",\"unit\":\"1\",\"cost\":\"21.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1411\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascoryl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2745, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5379\",\"code\":\"1412\",\"name\":\"ZOXON 1000MG\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1412\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zoxon-1000mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2746, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5380\",\"code\":\"1413\",\"name\":\"ASOMEX 2.5MG\",\"unit\":\"1\",\"cost\":\"4.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1413\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asomex-25mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2747, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5381\",\"code\":\"1414\",\"name\":\"NORVASC 5MG\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1414\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"norvasc-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2748, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5382\",\"code\":\"1415\",\"name\":\"KOFFEX JUNIOR\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1415\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koffex-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2749, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5383\",\"code\":\"1416\",\"name\":\"NORMAL SALINE\",\"unit\":\"1\",\"cost\":\"0.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1416\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"normal-saline\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2750, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5384\",\"code\":\"1417\",\"name\":\"LIV 52 SRP\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1417\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liv-52-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2751, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5385\",\"code\":\"1418\",\"name\":\"CO-TRIMOXAXOLE TAB\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1418\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-trimoxaxole-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2752, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5386\",\"code\":\"1419\",\"name\":\"RONAXICAM\",\"unit\":\"1\",\"cost\":\"7.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1419\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronaxicam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2753, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5387\",\"code\":\"1420\",\"name\":\"GLYCERINE S\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1420\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glycerine-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2754, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5388\",\"code\":\"1421\",\"name\":\"PROPRANOLOL 40MG 28,S\",\"unit\":\"1\",\"cost\":\"3.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1421\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"propranolol-40mg-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2755, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5389\",\"code\":\"1422\",\"name\":\"PROXEED WOMEN\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1422\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proxeed-women\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2756, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5390\",\"code\":\"1423\",\"name\":\"LIPITOR 10MG\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1423\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-10mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2757, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5391\",\"code\":\"1424\",\"name\":\"CHLO EAR DROP\",\"unit\":\"1\",\"cost\":\"1.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1424\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlo-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2758, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5392\",\"code\":\"1425\",\"name\":\"SE,CLEAR EYE\\/ EAR DROP\",\"unit\":\"1\",\"cost\":\"0.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1425\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2759, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5393\",\"code\":\"1426\",\"name\":\"SUPER APETI TAB\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1426\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"super-apeti-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2760, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5394\",\"code\":\"1427\",\"name\":\"METRONIDAZOLE 200 TAB\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1427\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metronidazole-200-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2761, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5395\",\"code\":\"1428\",\"name\":\"VASELINE LOTION\",\"unit\":\"1\",\"cost\":\"8.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1428\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaseline-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2762, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5396\",\"code\":\"1429\",\"name\":\"ROOTER\",\"unit\":\"1\",\"cost\":\"4.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1429\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2763, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5397\",\"code\":\"1430\",\"name\":\"SUNLIGHT LIQUID750ML\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1430\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sunlight-liquid750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2764, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5398\",\"code\":\"1431\",\"name\":\"LUX SHAKE ME SOAP\",\"unit\":\"1\",\"cost\":\"13.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1431\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lux-shake-me-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2765, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5399\",\"code\":\"1432\",\"name\":\"LIFEBOUY SOAP\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1432\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lifebouy-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2766, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5400\",\"code\":\"1433\",\"name\":\"TAMSULOSIN 400\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1433\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:11:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2767, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5401\",\"code\":\"1434\",\"name\":\"PREGNANCY TEST KIT\",\"unit\":\"1\",\"cost\":\"7.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1434\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregnancy-test-kit1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2768, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5402\",\"code\":\"1435\",\"name\":\"NEXIUM SACHET 10MG\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1435\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-sachet-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2769, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5403\",\"code\":\"1436\",\"name\":\"BECOATIN TAB\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1436\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"becoatin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2770, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5404\",\"code\":\"1437\",\"name\":\"SPIRIT EAR DROP\",\"unit\":\"1\",\"cost\":\"15.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1437\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2771, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5405\",\"code\":\"1438\",\"name\":\"VERMOX TAB\",\"unit\":\"1\",\"cost\":\"5.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1438\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vermox-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2772, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5406\",\"code\":\"1439\",\"name\":\"BELLS TEETHING MIX\",\"unit\":\"1\",\"cost\":\"0.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1439\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-teething-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2773, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5407\",\"code\":\"1440\",\"name\":\"SULPHUR OINT\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1440\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2774, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5408\",\"code\":\"1441\",\"name\":\"BELLS TEETHING MIX\",\"unit\":\"1\",\"cost\":\"8.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1441\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-teething-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2775, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5409\",\"code\":\"1442\",\"name\":\"VISCOF D\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1442\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viscof-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2776, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5410\",\"code\":\"1443\",\"name\":\"VISCOF S\",\"unit\":\"1\",\"cost\":\"1.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1443\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viscof-s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2777, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5411\",\"code\":\"1444\",\"name\":\"WORMPLEX TAB\",\"unit\":\"1\",\"cost\":\"11.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1444\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormplex-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2778, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5412\",\"code\":\"1445\",\"name\":\"ZESTRIL 5MG\",\"unit\":\"1\",\"cost\":\"0.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1445\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zestril-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2779, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5413\",\"code\":\"1446\",\"name\":\"ZINCOVIT SRP\",\"unit\":\"1\",\"cost\":\"0.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1446\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2780, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5414\",\"code\":\"1447\",\"name\":\"ZINTAB 20\",\"unit\":\"1\",\"cost\":\"1.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1447\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2781, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5415\",\"code\":\"1448\",\"name\":\"ZINTAB 10\",\"unit\":\"1\",\"cost\":\"5.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1448\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zintab-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2782, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5416\",\"code\":\"1449\",\"name\":\"STREPTOL25\\/6\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1449\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol256\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2783, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5417\",\"code\":\"1450\",\"name\":\"POLYFER SRP 150ML\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1450\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-srp-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2784, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5418\",\"code\":\"1451\",\"name\":\"METRONIDAZOLE LETAP\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1451\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metronidazole-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2785, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5419\",\"code\":\"1452\",\"name\":\"AMOKSIKLAV 457 SUSP\",\"unit\":\"1\",\"cost\":\"9.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1452\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-457-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2786, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5420\",\"code\":\"1453\",\"name\":\"NEOHYCOLEX 10ML\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1453\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neohycolex-10ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2787, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5421\",\"code\":\"1454\",\"name\":\"CONGESTYL SRP\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1454\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"congestyl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2788, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5422\",\"code\":\"1455\",\"name\":\"SAMAILN ADULT\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1455\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samailn-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2789, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5423\",\"code\":\"1456\",\"name\":\"LIPITOR 20\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2790, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5424\",\"code\":\"1457\",\"name\":\"COLGATE SMILE BABY\",\"unit\":\"1\",\"cost\":\"70.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1457\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-smile-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2791, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5425\",\"code\":\"1458\",\"name\":\"ATACAND 8MG\",\"unit\":\"1\",\"cost\":\"18.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1458\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atacand-8mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2792, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5426\",\"code\":\"1459\",\"name\":\"PERFECTYL PLUS\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1459\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"perfectyl-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2793, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5427\",\"code\":\"1460\",\"name\":\"NIZORAL SHAMPOO\",\"unit\":\"1\",\"cost\":\"3.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1460\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-shampoo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2794, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5428\",\"code\":\"1461\",\"name\":\"metformin 500mg\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1461\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2795, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5429\",\"code\":\"1462\",\"name\":\"SEPTRI N SUSP\",\"unit\":\"1\",\"cost\":\"0.2100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1462\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"septri-n-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2796, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5430\",\"code\":\"1463\",\"name\":\"CO DIOVAN 160\\/12.5\",\"unit\":\"1\",\"cost\":\"18.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1463\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-diovan-160125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2797, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5431\",\"code\":\"1464\",\"name\":\"B COMPLEX TAB LOCAL\",\"unit\":\"1\",\"cost\":\"9.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1464\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"b-complex-tab-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2798, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5432\",\"code\":\"1465\",\"name\":\"BORGES 250ML\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1465\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2799, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5433\",\"code\":\"1466\",\"name\":\"VENTOLIN NEBULES\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1466\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-nebules\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2800, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5434\",\"code\":\"1467\",\"name\":\"SYRINGE 10MLS\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1467\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"syringe-10mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2801, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5435\",\"code\":\"1468\",\"name\":\"SENACO\",\"unit\":\"1\",\"cost\":\"0.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1468\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"senaco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2802, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5436\",\"code\":\"1469\",\"name\":\"P- ALAXIN SUSP\",\"unit\":\"1\",\"cost\":\"2.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1469\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"p-alaxin-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2803, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5437\",\"code\":\"1470\",\"name\":\"ACTIVATED CHARCOAL\",\"unit\":\"1\",\"cost\":\"4.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1470\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"activated-charcoal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2804, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5438\",\"code\":\"1471\",\"name\":\"CARBAMAZIPINE\",\"unit\":\"1\",\"cost\":\"1.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1471\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbamazipine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2805, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5439\",\"code\":\"1472\",\"name\":\"LOFNAC GEL\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1472\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2806, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5440\",\"code\":\"1473\",\"name\":\"LOFNAC -P\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1473\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2807, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5441\",\"code\":\"1474\",\"name\":\"NAKLOFEN DUO\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1474\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2808, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5442\",\"code\":\"1475\",\"name\":\"OLFEN GEL20GM\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1475\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olfen-gel20gm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2809, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5443\",\"code\":\"1476\",\"name\":\"OLFEN GEL 50GM\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1476\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olfen-gel-50gm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2810, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5444\",\"code\":\"1477\",\"name\":\"DICLO INJ\",\"unit\":\"1\",\"cost\":\"6.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1477\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2811, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5445\",\"code\":\"1478\",\"name\":\"DORETA\",\"unit\":\"1\",\"cost\":\"33.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1478\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"doreta\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2812, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5446\",\"code\":\"1479\",\"name\":\"NEXIUM 40 14S\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1479\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-40-14s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2813, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5447\",\"code\":\"1480\",\"name\":\"FEROGLOBIN SRP\",\"unit\":\"1\",\"cost\":\"4.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1480\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2814, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5448\",\"code\":\"1481\",\"name\":\"HYDROCORT CREAM\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1481\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrocort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2815, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5449\",\"code\":\"1482\",\"name\":\"IBEX\",\"unit\":\"1\",\"cost\":\"0.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1482\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2816, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5450\",\"code\":\"1483\",\"name\":\"KOFOL LOZ\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1483\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofol-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2817, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5451\",\"code\":\"1484\",\"name\":\"KWIK ACTION\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1484\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kwik-action1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2818, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5452\",\"code\":\"1485\",\"name\":\"LADINAS\",\"unit\":\"1\",\"cost\":\"0.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1485\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ladinas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2819, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5453\",\"code\":\"1486\",\"name\":\"LEMPSIP\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1486\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lempsip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2820, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5454\",\"code\":\"1487\",\"name\":\"HONSTAN\",\"unit\":\"1\",\"cost\":\"32.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1487\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honstan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2821, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5455\",\"code\":\"1488\",\"name\":\"MINAVITA\",\"unit\":\"1\",\"cost\":\"6.0600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1488\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"minavita\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2822, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5456\",\"code\":\"1489\",\"name\":\"NAPROXEN EC\",\"unit\":\"1\",\"cost\":\"1.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1489\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"naproxen-ec\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2823, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5457\",\"code\":\"1490\",\"name\":\"NAPROX ECL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1490\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2824, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5458\",\"code\":\"1491\",\"name\":\"NUCLEO CMP\",\"unit\":\"1\",\"cost\":\"39.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1491\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nucleo-cmp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2825, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5459\",\"code\":\"1492\",\"name\":\"O- YES FEMININE WASH\",\"unit\":\"1\",\"cost\":\"8.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1492\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"o-yes-feminine-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2826, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5460\",\"code\":\"1493\",\"name\":\"FELDENE 20MG\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1493\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feldene-20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2827, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5461\",\"code\":\"1494\",\"name\":\"PMF VASELINE\",\"unit\":\"1\",\"cost\":\"1.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1494\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pmf-vaseline\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2828, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5462\",\"code\":\"1495\",\"name\":\"CALAMINE OINT\",\"unit\":\"1\",\"cost\":\"28.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1495\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2829, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5463\",\"code\":\"1496\",\"name\":\"SOLUBLE ASP\",\"unit\":\"1\",\"cost\":\"6.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1496\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-asp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2830, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5464\",\"code\":\"1497\",\"name\":\"SUDOCREAM125\",\"unit\":\"1\",\"cost\":\"0.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1497\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudocream125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2831, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5465\",\"code\":\"1498\",\"name\":\"WELWOMAN DRINK\",\"unit\":\"1\",\"cost\":\"25.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1498\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welwoman-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2832, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5466\",\"code\":\"1499\",\"name\":\"GAUZE 7.5cm\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1499\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gauze-75cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2833, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5467\",\"code\":\"1500\",\"name\":\"BENILIN PAED\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1500\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-paed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2834, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5468\",\"code\":\"1501\",\"name\":\"COTTON BALLS\",\"unit\":\"1\",\"cost\":\"1.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1501\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-balls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2835, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5469\",\"code\":\"1502\",\"name\":\"DAN RUBB\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1502\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dan-rubb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2836, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5470\",\"code\":\"1503\",\"name\":\"DICLOLEX TAB\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1503\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2837, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5471\",\"code\":\"1504\",\"name\":\"EPIDERM 15G\",\"unit\":\"1\",\"cost\":\"3.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1504\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-15g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2838, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5472\",\"code\":\"1505\",\"name\":\"EPIDERM 30G\",\"unit\":\"1\",\"cost\":\"6.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1505\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2839, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5473\",\"code\":\"1506\",\"name\":\"EMGIFLOX SUSP\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1506\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"emgiflox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2840, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5474\",\"code\":\"1507\",\"name\":\"FLEMEX JNR\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1507\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flemex-jnr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2841, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5475\",\"code\":\"1508\",\"name\":\"FUNBACT\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1508\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"funbact\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2842, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5476\",\"code\":\"1509\",\"name\":\"GENTA-K\",\"unit\":\"1\",\"cost\":\"1.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1509\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"genta-k\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2843, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5477\",\"code\":\"1510\",\"name\":\"METHYLATED SPIRIT S\\/S\",\"unit\":\"1\",\"cost\":\"4.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1510\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2844, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5478\",\"code\":\"1511\",\"name\":\"GYPRONE TAB\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1511\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2845, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5479\",\"code\":\"1512\",\"name\":\"HAEMOGLOBIN M\\/G\",\"unit\":\"1\",\"cost\":\"8.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1512\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2846, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5480\",\"code\":\"1513\",\"name\":\"HAEMOGLOBIN LETAP\",\"unit\":\"1\",\"cost\":\"2.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1513\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2847, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5481\",\"code\":\"1514\",\"name\":\"HYDROCORT CREAM\",\"unit\":\"1\",\"cost\":\"10.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1514\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrocort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2848, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5482\",\"code\":\"1515\",\"name\":\"IBUCAP SHALINA B\\/S\",\"unit\":\"1\",\"cost\":\"26.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap-shalina-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2849, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5483\",\"code\":\"1516\",\"name\":\"IMODIUM\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1516\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imodium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2850, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5484\",\"code\":\"1517\",\"name\":\"SPORANOX\",\"unit\":\"1\",\"cost\":\"4.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1517\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2851, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5485\",\"code\":\"1518\",\"name\":\"KAMAGRA 100\",\"unit\":\"1\",\"cost\":\"1.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1518\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamagra-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2852, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5486\",\"code\":\"1519\",\"name\":\"METASOL SOAP\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1519\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metasol-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2853, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5487\",\"code\":\"1520\",\"name\":\"NAT-B\",\"unit\":\"1\",\"cost\":\"1.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1520\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nat-b\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2854, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5488\",\"code\":\"1521\",\"name\":\"PREGASAFE 75\",\"unit\":\"1\",\"cost\":\"4.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1521\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2855, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5489\",\"code\":\"1522\",\"name\":\"DANEGAN SRP\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1522\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"danegan-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2856, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5490\",\"code\":\"1523\",\"name\":\"SEDALYN SRP PAED\",\"unit\":\"1\",\"cost\":\"1.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1523\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sedalyn-srp-paed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2857, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5491\",\"code\":\"1524\",\"name\":\"PLASTER 5CM\",\"unit\":\"1\",\"cost\":\"4.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1524\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-5cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2858, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5492\",\"code\":\"1525\",\"name\":\"AJANTA STAMINA\",\"unit\":\"1\",\"cost\":\"7.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1525\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ajanta-stamina\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2859, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5493\",\"code\":\"1526\",\"name\":\"PERMOXL SRP\",\"unit\":\"1\",\"cost\":\"6.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1526\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"permoxl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2860, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5494\",\"code\":\"1527\",\"name\":\"AQUEOS CREAM\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1527\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqueos-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2861, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5495\",\"code\":\"1528\",\"name\":\"AUNTY MARY\",\"unit\":\"1\",\"cost\":\"29.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1528\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aunty-mary\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2862, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5496\",\"code\":\"1529\",\"name\":\"CETAPOL SRP\",\"unit\":\"1\",\"cost\":\"4.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1529\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2863, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5497\",\"code\":\"1530\",\"name\":\"CIPRODENK\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1530\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprodenk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2864, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5498\",\"code\":\"1531\",\"name\":\"DERMIRON PLUS\",\"unit\":\"1\",\"cost\":\"21.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1531\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2865, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5499\",\"code\":\"1532\",\"name\":\"DOXYCYCLINE\",\"unit\":\"1\",\"cost\":\"46.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1532\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"doxycycline\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2866, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5500\",\"code\":\"1533\",\"name\":\"FEMFRESH\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1533\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"femfresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2867, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5501\",\"code\":\"1534\",\"name\":\"IDEOS\",\"unit\":\"1\",\"cost\":\"4.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1534\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ideos1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2868, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5502\",\"code\":\"1535\",\"name\":\"COTTON BUD\",\"unit\":\"1\",\"cost\":\"4.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1535\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2869, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5503\",\"code\":\"1536\",\"name\":\"KETAZOLE CREAM\",\"unit\":\"1\",\"cost\":\"21.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1536\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ketazole-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2870, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5504\",\"code\":\"1537\",\"name\":\"KETAZOLE TAB\",\"unit\":\"1\",\"cost\":\"34.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1537\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ketazole-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2871, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5505\",\"code\":\"1538\",\"name\":\"KY JELLY50G\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1538\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ky-jelly50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2872, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5506\",\"code\":\"1539\",\"name\":\"KY JELLY 75G\",\"unit\":\"1\",\"cost\":\"4.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1539\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ky-jelly-75g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2873, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5507\",\"code\":\"1540\",\"name\":\"LA WASH\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1540\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"la-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2874, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5508\",\"code\":\"1541\",\"name\":\"METAGYL SRP\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metagyl-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2875, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5509\",\"code\":\"1542\",\"name\":\"NIFEDENK 10\",\"unit\":\"1\",\"cost\":\"17.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1542\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifedenk-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2876, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5510\",\"code\":\"1543\",\"name\":\"NIGHT NURSE CAPS\",\"unit\":\"1\",\"cost\":\"0.5200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1543\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"night-nurse-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2877, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5511\",\"code\":\"1544\",\"name\":\"TAMPAX\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1544\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tampax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2878, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5512\",\"code\":\"1545\",\"name\":\"VALUPAC VIT C500S\",\"unit\":\"1\",\"cost\":\"40.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1545\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"valupac-vit-c500s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2879, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5513\",\"code\":\"1546\",\"name\":\"VITA POWER SRP\",\"unit\":\"1\",\"cost\":\"3.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1546\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vita-power-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2880, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5514\",\"code\":\"1547\",\"name\":\"BENILIN FOR FLU\",\"unit\":\"1\",\"cost\":\"143.5700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1547\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-for-flu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2881, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5515\",\"code\":\"1548\",\"name\":\"ANUSOL SUPP\",\"unit\":\"1\",\"cost\":\"2.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1548\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2882, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5516\",\"code\":\"1549\",\"name\":\"ZITHROMAX CAPS\",\"unit\":\"1\",\"cost\":\"68.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1549\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zithromax-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2883, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5517\",\"code\":\"1550\",\"name\":\"DULCOLAX SUPP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1550\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dulcolax-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2884, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5518\",\"code\":\"1551\",\"name\":\"ZINNAT SUSP100ML\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1551\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2885, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5519\",\"code\":\"1552\",\"name\":\"CIPROLEX TAB\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1552\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2886, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5520\",\"code\":\"1553\",\"name\":\"CIPAC EYE DROP\",\"unit\":\"1\",\"cost\":\"12.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1553\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2887, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5521\",\"code\":\"1554\",\"name\":\"CIPROLEX EYE DROP\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1554\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2888, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5522\",\"code\":\"1555\",\"name\":\"DECATYLINE LOZ\",\"unit\":\"1\",\"cost\":\"6.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1555\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"decatyline-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2889, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5523\",\"code\":\"1556\",\"name\":\"DIABETMINE\",\"unit\":\"1\",\"cost\":\"11.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1556\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diabetmine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2890, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5524\",\"code\":\"1557\",\"name\":\"MAJOR EPHEDRINE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1557\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"major-ephedrine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2891, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5525\",\"code\":\"1558\",\"name\":\"FLUCONA DENK\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1558\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucona-denk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2892, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5526\",\"code\":\"1559\",\"name\":\"JET 2\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1559\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2893, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5527\",\"code\":\"1560\",\"name\":\"LENOR\",\"unit\":\"1\",\"cost\":\"5.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1560\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lenor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2894, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5528\",\"code\":\"1561\",\"name\":\"LYDIA\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1561\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2895, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5529\",\"code\":\"1562\",\"name\":\"LEVON 2\",\"unit\":\"1\",\"cost\":\"2.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1562\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"levon-21\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2896, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5530\",\"code\":\"1563\",\"name\":\"METRO SUSP LETAP #MGP\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1563\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-susp-letap-mgp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2897, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5531\",\"code\":\"1564\",\"name\":\"CYTOTEC\",\"unit\":\"1\",\"cost\":\"7.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1564\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cytotec\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2898, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5532\",\"code\":\"1565\",\"name\":\"PILEX TAB\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1565\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilex-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2899, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5533\",\"code\":\"1566\",\"name\":\"SE,CLEAR\",\"unit\":\"1\",\"cost\":\"4.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1566\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2900, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5534\",\"code\":\"1567\",\"name\":\"SEFLOX EYE DROP\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1567\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2901, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5535\",\"code\":\"1568\",\"name\":\"BX SRP100ML\",\"unit\":\"1\",\"cost\":\"2.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1568\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bx-srp100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2902, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5536\",\"code\":\"1569\",\"name\":\"BX SRP 200\",\"unit\":\"1\",\"cost\":\"2.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1569\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bx-srp-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2903, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5537\",\"code\":\"1570\",\"name\":\"HISTAZINE SRP\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1570\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"histazine-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2904, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5538\",\"code\":\"1571\",\"name\":\"RHIZINE SRP\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1571\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhizine-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2905, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5539\",\"code\":\"1572\",\"name\":\"PIRITON TAB\",\"unit\":\"1\",\"cost\":\"40.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1572\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2906, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5540\",\"code\":\"1573\",\"name\":\"PRETTY LADY LINER\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1573\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pretty-lady-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2907, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5541\",\"code\":\"1574\",\"name\":\"AUGMENTIN SRP 457\",\"unit\":\"1\",\"cost\":\"5.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1574\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-457\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2908, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5542\",\"code\":\"1575\",\"name\":\"DEXEL 2MG\",\"unit\":\"1\",\"cost\":\"10.3700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1575\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexel-2mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2909, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5543\",\"code\":\"1576\",\"name\":\"DICLO DENK 50\",\"unit\":\"1\",\"cost\":\"1.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1576\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2910, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5544\",\"code\":\"1577\",\"name\":\"DICLO DENK 100 TAB\",\"unit\":\"1\",\"cost\":\"5.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1577\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-100-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2911, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5545\",\"code\":\"1578\",\"name\":\"DICLO DENK SUPP\",\"unit\":\"1\",\"cost\":\"10.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1578\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2912, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5546\",\"code\":\"1579\",\"name\":\"DREZ OINT 10MG\",\"unit\":\"1\",\"cost\":\"5.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1579\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-oint-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2913, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5547\",\"code\":\"1580\",\"name\":\"DREZ OINT 30MG\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1580\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-oint-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2914, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5548\",\"code\":\"1581\",\"name\":\"DREZ POWDER\",\"unit\":\"1\",\"cost\":\"7.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1581\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2915, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5549\",\"code\":\"1582\",\"name\":\"DNS\",\"unit\":\"1\",\"cost\":\"6.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1582\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dns\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2916, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5550\",\"code\":\"1583\",\"name\":\"DREZ SOLTN 30ML\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1583\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-soltn-30ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2917, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5551\",\"code\":\"1584\",\"name\":\"DUROL ADULT\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1584\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2918, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5552\",\"code\":\"1585\",\"name\":\"DUROL JUNR\",\"unit\":\"1\",\"cost\":\"5.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1585\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-junr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2919, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5553\",\"code\":\"1586\",\"name\":\"DYMOL TAB\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1586\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2920, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5554\",\"code\":\"1587\",\"name\":\"MYCOVIN 500\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1587\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2921, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5555\",\"code\":\"1588\",\"name\":\"KIDICARE SRP\",\"unit\":\"1\",\"cost\":\"19.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1588\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidicare-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2922, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5556\",\"code\":\"1589\",\"name\":\"MENTODEX SRP S\\/S\",\"unit\":\"1\",\"cost\":\"1.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1589\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentodex-srp-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2923, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5557\",\"code\":\"1590\",\"name\":\"DAKTARIN CREAM\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1590\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daktarin-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2924, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5558\",\"code\":\"1591\",\"name\":\"PARA UK\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1591\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2925, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5559\",\"code\":\"1592\",\"name\":\"EFPAC TAB\",\"unit\":\"1\",\"cost\":\"1.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1592\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"efpac-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2926, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5560\",\"code\":\"1593\",\"name\":\"APETAMIN SRP\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1593\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apetamin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2927, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5561\",\"code\":\"1594\",\"name\":\"GEBEDOL\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1594\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2928, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5562\",\"code\":\"1595\",\"name\":\"GEBEDOL EXTRA\",\"unit\":\"1\",\"cost\":\"11.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1595\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2929, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5563\",\"code\":\"1596\",\"name\":\"LISTRINE 250\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1596\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listrine-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2930, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5564\",\"code\":\"1597\",\"name\":\"LISTRINE SMART\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1597\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listrine-smart\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2931, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5565\",\"code\":\"1598\",\"name\":\"CETAPOL PM\",\"unit\":\"1\",\"cost\":\"21.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1598\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2932, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5566\",\"code\":\"1599\",\"name\":\"VALUPAk VIT C 1000\",\"unit\":\"1\",\"cost\":\"5.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1599\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2933, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5567\",\"code\":\"1600\",\"name\":\"FLAGENTYL\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1600\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagentyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2934, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5568\",\"code\":\"1601\",\"name\":\"DICLO DENK 50\",\"unit\":\"1\",\"cost\":\"9.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1601\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2935, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5569\",\"code\":\"1602\",\"name\":\"FLEMEX ADULT\",\"unit\":\"1\",\"cost\":\"0.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1602\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flemex-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2936, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5570\",\"code\":\"1603\",\"name\":\"BELLS CALAMINE\",\"unit\":\"1\",\"cost\":\"1.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1603\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-calamine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2937, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5571\",\"code\":\"1604\",\"name\":\"GAUZE 10CM\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1604\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gauze-10cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2938, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5572\",\"code\":\"1605\",\"name\":\"GAUZE  15CM\",\"unit\":\"1\",\"cost\":\"31.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1605\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gauze-15cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2939, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5573\",\"code\":\"1606\",\"name\":\"PLASTER 10CM\",\"unit\":\"1\",\"cost\":\"19.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1606\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-10cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2940, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5574\",\"code\":\"1607\",\"name\":\"CALPOL 6+\",\"unit\":\"1\",\"cost\":\"7.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1607\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2941, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5575\",\"code\":\"1608\",\"name\":\"FOLIGROW CAPS\",\"unit\":\"1\",\"cost\":\"13.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1608\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foligrow-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2942, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5576\",\"code\":\"1609\",\"name\":\"KAMACLOX\",\"unit\":\"1\",\"cost\":\"12.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1609\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamaclox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2943, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5577\",\"code\":\"1610\",\"name\":\"PREGASAFE 75\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1610\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2944, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5578\",\"code\":\"1611\",\"name\":\"IMODIUM\",\"unit\":\"1\",\"cost\":\"4.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1611\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imodium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2945, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5579\",\"code\":\"1612\",\"name\":\"DANRUBB\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1612\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"danrubb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2946, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5580\",\"code\":\"1613\",\"name\":\"SEDALIN JNR\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1613\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sedalin-jnr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2947, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5581\",\"code\":\"1614\",\"name\":\"PENICILLIN INJ\",\"unit\":\"1\",\"cost\":\"4.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1614\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penicillin-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2948, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5582\",\"code\":\"1615\",\"name\":\"SEFLOX\",\"unit\":\"1\",\"cost\":\"3.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1615\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2949, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5583\",\"code\":\"1616\",\"name\":\"MYCOVIN 500\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1616\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2950, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5584\",\"code\":\"1617\",\"name\":\"LADINAS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1617\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ladinas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2951, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5585\",\"code\":\"1618\",\"name\":\"HONSTAN\",\"unit\":\"1\",\"cost\":\"4.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1618\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honstan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2952, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5586\",\"code\":\"1619\",\"name\":\"COLGATE HERB\",\"unit\":\"1\",\"cost\":\"6.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1619\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-herb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2953, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5587\",\"code\":\"1620\",\"name\":\"SULFER OINT\",\"unit\":\"1\",\"cost\":\"3.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1620\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sulfer-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2954, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5588\",\"code\":\"1621\",\"name\":\"WELMAN DRINK\",\"unit\":\"1\",\"cost\":\"0.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1621\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welman-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2955, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5589\",\"code\":\"1622\",\"name\":\"MERCY CREAM\",\"unit\":\"1\",\"cost\":\"0.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1622\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mercy-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2956, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5590\",\"code\":\"1623\",\"name\":\"BRUFEN 400\",\"unit\":\"1\",\"cost\":\"22.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1623\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brufen-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2957, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5591\",\"code\":\"1624\",\"name\":\"RHIZON TAB\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1624\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhizon-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2958, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5592\",\"code\":\"1625\",\"name\":\"POSTINOR\",\"unit\":\"1\",\"cost\":\"5.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1625\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2959, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5593\",\"code\":\"1626\",\"name\":\"GENECURE 442\",\"unit\":\"1\",\"cost\":\"6.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1626\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"genecure-442\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2960, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5594\",\"code\":\"1627\",\"name\":\"EFPAC JUNIOR\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1627\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"efpac-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2961, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5595\",\"code\":\"1628\",\"name\":\"TEEDAR\",\"unit\":\"1\",\"cost\":\"13.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1628\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2962, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5596\",\"code\":\"1629\",\"name\":\"4.85AMLODIPINE TEVA 10\",\"unit\":\"1\",\"cost\":\"35.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1629\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"485amlodipine-teva-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2963, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5597\",\"code\":\"1630\",\"name\":\"AMOKSIKLAV1G\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1630\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2964, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5598\",\"code\":\"1631\",\"name\":\"COARTEM 80\\/480\",\"unit\":\"1\",\"cost\":\"0.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1631\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coartem-80480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2965, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5599\",\"code\":\"1632\",\"name\":\"CYPRODINE CAPS\",\"unit\":\"1\",\"cost\":\"0.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1632\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2966, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5600\",\"code\":\"1633\",\"name\":\"MARTINS PLAIN\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1633\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plain\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2967, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5601\",\"code\":\"1634\",\"name\":\"MARTINS ORANGE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1634\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2968, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5602\",\"code\":\"1635\",\"name\":\"MALARIA TEST KIT\",\"unit\":\"1\",\"cost\":\"1.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1635\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-test-kit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2969, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5603\",\"code\":\"1636\",\"name\":\"MALARIA CHECK\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1636\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-check\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2970, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5604\",\"code\":\"1637\",\"name\":\"STREPTOL 12S\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1637\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol-12s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2971, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5605\",\"code\":\"1638\",\"name\":\"COTTON PIECES\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1638\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pieces\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2972, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5606\",\"code\":\"1639\",\"name\":\"YAZZ PAD\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1639\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yazz-pad1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2973, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5607\",\"code\":\"1640\",\"name\":\"YAZZ LINER\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1640\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yazz-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2974, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5608\",\"code\":\"1641\",\"name\":\"ALWAYS MAXI\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1641\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-maxi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2975, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5609\",\"code\":\"1642\",\"name\":\"ALWAYS DOUBLE\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1642\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-double\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2976, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5610\",\"code\":\"1643\",\"name\":\"ALWAYS SINGLE\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1643\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-single\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2977, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5611\",\"code\":\"1644\",\"name\":\"FAYTEX\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1644\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"faytex1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2978, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5612\",\"code\":\"1645\",\"name\":\"SOFTCARE WIPES\",\"unit\":\"1\",\"cost\":\"1.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1645\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softcare-wipes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2979, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5613\",\"code\":\"1646\",\"name\":\"FRESS\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1646\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fress\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2980, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5614\",\"code\":\"1647\",\"name\":\"HANKERCHIEF\",\"unit\":\"1\",\"cost\":\"0.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1647\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hankerchief\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2981, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5615\",\"code\":\"1648\",\"name\":\"MENTOS GUM ICE\",\"unit\":\"1\",\"cost\":\"0.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1648\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-gum-ice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2982, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5616\",\"code\":\"1649\",\"name\":\"MENTOS GUM\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1649\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-gum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2983, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5617\",\"code\":\"1650\",\"name\":\"MENTOS FRESH ACTION\",\"unit\":\"1\",\"cost\":\"45.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1650\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-fresh-action\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2984, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5618\",\"code\":\"1651\",\"name\":\"RUBBING ALC\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1651\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-alc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2985, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5619\",\"code\":\"1652\",\"name\":\"PEPTO BISMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2986, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5620\",\"code\":\"1653\",\"name\":\"PEPSODENT S\\/S\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1653\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2987, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5621\",\"code\":\"1654\",\"name\":\"SCISSORS\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1654\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"scissors\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2988, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5622\",\"code\":\"1655\",\"name\":\"IMMUNACE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1655\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2989, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5623\",\"code\":\"1656\",\"name\":\"NUGEL -O\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1656\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-o\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2990, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5624\",\"code\":\"1657\",\"name\":\"CREEP BANDAGE15CM\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1657\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-bandage15cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2991, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5625\",\"code\":\"1658\",\"name\":\"CREEP BANDAGE 10CM\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1658\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-bandage-10cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2992, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5626\",\"code\":\"1659\",\"name\":\"CREEP BANDAGE 7.5CM\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1659\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-bandage-75cm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2993, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5627\",\"code\":\"1660\",\"name\":\"GLYCERINE B\\/S\",\"unit\":\"1\",\"cost\":\"3.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1660\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glycerine-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2994, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5628\",\"code\":\"1661\",\"name\":\"DYNEWELL SRP\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1661\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2995, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5629\",\"code\":\"1662\",\"name\":\"ENTRAMOL\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1662\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2996, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5630\",\"code\":\"1663\",\"name\":\"KISS\",\"unit\":\"1\",\"cost\":\"7.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1663\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kiss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2997, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5631\",\"code\":\"1664\",\"name\":\"FIESTA CONCOM\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1664\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fiesta-concom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2998, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5632\",\"code\":\"1665\",\"name\":\"DUREX COND\",\"unit\":\"1\",\"cost\":\"7.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1665\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durex-cond\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2999, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5633\",\"code\":\"1666\",\"name\":\"MALAFAN\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1666\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malafan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3000, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5634\",\"code\":\"1667\",\"name\":\"FOLIC ACID 28S\",\"unit\":\"1\",\"cost\":\"17.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1667\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3001, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5635\",\"code\":\"1668\",\"name\":\"VIROL\",\"unit\":\"1\",\"cost\":\"33.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1668\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"virol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3002, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5636\",\"code\":\"1669\",\"name\":\"FOLIGROW SRP\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1669\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foligrow-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3003, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5637\",\"code\":\"1670\",\"name\":\"CALPOL 2+\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1670\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3004, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5638\",\"code\":\"1671\",\"name\":\"SPIRIT B\\/S\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1671\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3005, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5639\",\"code\":\"1672\",\"name\":\"HYDROGEN LOCAL\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1672\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrogen-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3006, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5640\",\"code\":\"1673\",\"name\":\"ZULU\",\"unit\":\"1\",\"cost\":\"3.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1673\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3007, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5641\",\"code\":\"1674\",\"name\":\"CHOCHO ABS\",\"unit\":\"1\",\"cost\":\"19.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1674\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocho-abs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3008, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5642\",\"code\":\"1675\",\"name\":\"CHOCHO CREAM\",\"unit\":\"1\",\"cost\":\"82.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1675\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocho-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3009, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5643\",\"code\":\"1676\",\"name\":\"AMOKSIKLAV 625\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1676\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-625\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3010, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5644\",\"code\":\"1677\",\"name\":\"ZINNAT 500\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1677\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3011, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5645\",\"code\":\"1678\",\"name\":\"MMT\",\"unit\":\"1\",\"cost\":\"10.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1678\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mmt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3012, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5646\",\"code\":\"1679\",\"name\":\"VIT E-SOVIT\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1679\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-sovit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3013, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5647\",\"code\":\"1680\",\"name\":\"ACIRCLOVIR 400MG TAB\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1680\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acirclovir-400mg-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3014, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5648\",\"code\":\"1681\",\"name\":\"TEARS NATURAL\",\"unit\":\"1\",\"cost\":\"2.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1681\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3015, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5649\",\"code\":\"1682\",\"name\":\"GV PAINT\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1682\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-paint1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3016, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5650\",\"code\":\"1683\",\"name\":\"FUMET\",\"unit\":\"1\",\"cost\":\"1.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1683\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fumet\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3017, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5651\",\"code\":\"1684\",\"name\":\"SILVERZINE\",\"unit\":\"1\",\"cost\":\"12.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1684\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"silverzine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3018, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5652\",\"code\":\"1685\",\"name\":\"MYCOVIN 125\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1685\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3019, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5653\",\"code\":\"1686\",\"name\":\"ACTIFED SRP\",\"unit\":\"1\",\"cost\":\"11.1900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1686\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actifed-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3020, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5654\",\"code\":\"1687\",\"name\":\"APDYL H B\\/S\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1687\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3021, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5655\",\"code\":\"1688\",\"name\":\"ZUBES EXP\",\"unit\":\"1\",\"cost\":\"7.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1688\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-exp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3022, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5656\",\"code\":\"1689\",\"name\":\"LETALIN\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1689\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letalin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3023, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5657\",\"code\":\"1690\",\"name\":\"LUEX BABY COUGH\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1690\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cough1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3024, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5658\",\"code\":\"1691\",\"name\":\"GV FLUC CAPS\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1691\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-fluc-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3025, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5659\",\"code\":\"1692\",\"name\":\"XIN A\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1692\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xin-a\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3026, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5660\",\"code\":\"1693\",\"name\":\"DYTEX EYE\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1693\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dytex-eye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3027, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5661\",\"code\":\"1694\",\"name\":\"MIST POT SIT\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1694\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mist-pot-sit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3028, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5662\",\"code\":\"1695\",\"name\":\"EXPECT SED\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1695\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"expect-sed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3029, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5663\",\"code\":\"1696\",\"name\":\"PENICILLIN OINT\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1696\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penicillin-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3030, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5664\",\"code\":\"1697\",\"name\":\"GRISON\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1697\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"grison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3031, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5665\",\"code\":\"1698\",\"name\":\"BECOATIN SRP\",\"unit\":\"1\",\"cost\":\"13.0100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1698\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"becoatin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3032, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5666\",\"code\":\"1699\",\"name\":\"LUFART SUSP\",\"unit\":\"1\",\"cost\":\"0.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1699\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3033, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5667\",\"code\":\"1700\",\"name\":\"LUFART TAB\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1700\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3034, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5668\",\"code\":\"1701\",\"name\":\"PENICILLIN TAB\",\"unit\":\"1\",\"cost\":\"4.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1701\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penicillin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3035, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5669\",\"code\":\"1702\",\"name\":\"PANADOL PLAIN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1702\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panadol-plain\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3036, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5670\",\"code\":\"1703\",\"name\":\"KAMAGRA50\",\"unit\":\"1\",\"cost\":\"3.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1703\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamagra50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3037, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5671\",\"code\":\"1704\",\"name\":\"DRAGON CAPS\",\"unit\":\"1\",\"cost\":\"7.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1704\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dragon-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3038, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5672\",\"code\":\"1705\",\"name\":\"GOGYNAX\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1705\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gogynax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3039, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5673\",\"code\":\"1706\",\"name\":\"CANDID V6\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1706\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3040, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5674\",\"code\":\"1707\",\"name\":\"FLUREST\",\"unit\":\"1\",\"cost\":\"3.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1707\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flurest\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3041, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5675\",\"code\":\"1708\",\"name\":\"HUICHUM CAPS\",\"unit\":\"1\",\"cost\":\"2.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1708\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huichum-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3042, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5676\",\"code\":\"1709\",\"name\":\"KIDIVITE S\\/S\",\"unit\":\"1\",\"cost\":\"1.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1709\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidivite-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3043, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5677\",\"code\":\"1710\",\"name\":\"COMMIT 50\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1710\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"commit-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3044, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5678\",\"code\":\"1711\",\"name\":\"MALIN TAB\",\"unit\":\"1\",\"cost\":\"11.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1711\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3045, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5679\",\"code\":\"1712\",\"name\":\"CARVADILOL TEVA\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1712\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carvadilol-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3046, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5680\",\"code\":\"1713\",\"name\":\"NIFECARD 60\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1713\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifecard-60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3047, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5681\",\"code\":\"1714\",\"name\":\"LISINOPRIL 10\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1714\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3048, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5682\",\"code\":\"1715\",\"name\":\"DIGOXIN 125\",\"unit\":\"1\",\"cost\":\"20.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1715\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3049, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5683\",\"code\":\"1716\",\"name\":\"FUROSEMIDE 20 CRESCENT\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1716\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20-crescent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3050, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5684\",\"code\":\"1717\",\"name\":\"LIQUIFRUITA S\\/S\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1717\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liquifruita-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3051, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5685\",\"code\":\"1718\",\"name\":\"STARWIN B\\/S\",\"unit\":\"1\",\"cost\":\"4.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1718\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3052, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5686\",\"code\":\"1719\",\"name\":\"STARWIN S\\/S\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1719\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3053, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5687\",\"code\":\"1720\",\"name\":\"CLOMID 50\",\"unit\":\"1\",\"cost\":\"0.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1720\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3054, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5688\",\"code\":\"1721\",\"name\":\"AMOXYCLIN 500 BLISS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1721\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxyclin-500-bliss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3055, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5689\",\"code\":\"1722\",\"name\":\"~AMOXICILIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"0.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1722\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxicilin-250-bliss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3056, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5690\",\"code\":\"1723\",\"name\":\"SECURE\",\"unit\":\"1\",\"cost\":\"1.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1723\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"secure\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3057, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5691\",\"code\":\"1724\",\"name\":\"AMOXYCILLIN 250 BLISS\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1724\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-250-bliss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3058, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5692\",\"code\":\"1725\",\"name\":\"FLUCOX CAPS 250\",\"unit\":\"1\",\"cost\":\"2.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1725\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucox-caps-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3059, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5693\",\"code\":\"1726\",\"name\":\"DOMI 10\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1726\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3060, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5694\",\"code\":\"1727\",\"name\":\"DOMI 30\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1727\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3061, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5695\",\"code\":\"1728\",\"name\":\"MIGHTY P B\\/S\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1728\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3062, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5696\",\"code\":\"1729\",\"name\":\"MIGHTY P S\'S\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1729\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3063, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5697\",\"code\":\"1730\",\"name\":\"KINGDOM G BITS\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1730\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-g-bits\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3064, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5698\",\"code\":\"1731\",\"name\":\"VEINE CAPS\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1731\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"veine-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3065, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5699\",\"code\":\"1732\",\"name\":\"TODAY MAN\",\"unit\":\"1\",\"cost\":\"16.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1732\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"today-man\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3066, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5700\",\"code\":\"1733\",\"name\":\"YAFO MAN\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1733\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3067, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5701\",\"code\":\"1734\",\"name\":\"GIVERS P CAPS\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1734\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3068, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5702\",\"code\":\"1735\",\"name\":\"GIVERS KOO CAPS\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1735\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3069, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5703\",\"code\":\"1736\",\"name\":\"SIBIWOMAN\",\"unit\":\"1\",\"cost\":\"10.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1736\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sibiwoman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3070, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5704\",\"code\":\"1737\",\"name\":\"ADOM W,G CAPS\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1737\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wg-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3071, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5705\",\"code\":\"1738\",\"name\":\"ADOM W,G SRP\",\"unit\":\"1\",\"cost\":\"15.5200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1738\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wg-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3072, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5706\",\"code\":\"1739\",\"name\":\"TAABEA MIX\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1739\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3073, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5707\",\"code\":\"1740\",\"name\":\"ROOTER TYTONIC\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1740\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tytonic1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3074, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5708\",\"code\":\"1741\",\"name\":\"TIME HERBAL\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1741\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3075, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5709\",\"code\":\"1742\",\"name\":\"AGBEVE TONIC\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1742\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3076, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5710\",\"code\":\"1743\",\"name\":\"AGBEVE FEVER\",\"unit\":\"1\",\"cost\":\"11.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1743\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-fever\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3077, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5711\",\"code\":\"1744\",\"name\":\"ADOM KOO SRP\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1744\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-koo-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3078, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5712\",\"code\":\"1745\",\"name\":\"ADOM KOO CAPS\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1745\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-koo-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3079, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5713\",\"code\":\"1746\",\"name\":\"MADAM CATHERINE\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1746\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-catherine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3080, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5714\",\"code\":\"1747\",\"name\":\"ALAFIA BITS\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1747\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alafia-bits\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3081, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5715\",\"code\":\"1748\",\"name\":\"TOP FEVER\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1748\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3082, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5716\",\"code\":\"1749\",\"name\":\"TOP TONIC\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1749\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tonic1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3083, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5717\",\"code\":\"1750\",\"name\":\"ANGEL CREAM\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1750\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3084, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5718\",\"code\":\"1751\",\"name\":\"TINATET VENECARE\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1751\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinatet-venecare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3085, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5719\",\"code\":\"1752\",\"name\":\"VICTORY G MIX\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-g-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3086, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5720\",\"code\":\"1753\",\"name\":\"PROSTAFIT\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1753\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostafit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3087, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5721\",\"code\":\"1754\",\"name\":\"SOLAK MIX\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1754\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3088, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5722\",\"code\":\"1755\",\"name\":\"ZIPMAN CAPS\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1755\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zipman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3089, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5723\",\"code\":\"1756\",\"name\":\"PROSTACURE TEA\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1756\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3090, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5724\",\"code\":\"1757\",\"name\":\"TINATET 230 CAPS\",\"unit\":\"1\",\"cost\":\"14.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1757\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinatet-230-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3091, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5725\",\"code\":\"1758\",\"name\":\"AKANAYO KOO BITS\",\"unit\":\"1\",\"cost\":\"1.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1758\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"akanayo-koo-bits\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3092, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5726\",\"code\":\"1759\",\"name\":\"DETOL 250 ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1759\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-250-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3093, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5727\",\"code\":\"1760\",\"name\":\"PEPSODENT BRUSH\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1760\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3094, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5728\",\"code\":\"1761\",\"name\":\"POWERZONE B\'S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1761\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"powerzone-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3095, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5729\",\"code\":\"1762\",\"name\":\"POWERZONE S\'S\",\"unit\":\"1\",\"cost\":\"25.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1762\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"powerzone-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3096, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5730\",\"code\":\"1763\",\"name\":\"CERELAC\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1763\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cerelac\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3097, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5731\",\"code\":\"1764\",\"name\":\"LACTULOSE\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1764\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lactulose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3098, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5732\",\"code\":\"1765\",\"name\":\"MOLFIX\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1765\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"molfix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3099, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5733\",\"code\":\"1766\",\"name\":\"COLESTOP 10\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1766\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colestop-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3100, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5734\",\"code\":\"1767\",\"name\":\"COLGATE TRIP ACTN\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1767\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-trip-actn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3101, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5735\",\"code\":\"1768\",\"name\":\"EASYLIFE VIT C\",\"unit\":\"1\",\"cost\":\"1.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1768\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"easylife-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3102, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5736\",\"code\":\"1769\",\"name\":\"HEAVEN SPRAY\",\"unit\":\"1\",\"cost\":\"0.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1769\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"heaven-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3103, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5737\",\"code\":\"1770\",\"name\":\"ORANGE T.ROLL\",\"unit\":\"1\",\"cost\":\"15.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1770\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orange-troll\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3104, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5738\",\"code\":\"1771\",\"name\":\"TANGO T.ROLL\",\"unit\":\"1\",\"cost\":\"12.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1771\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tango-troll\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3105, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5739\",\"code\":\"1772\",\"name\":\"MYCOLEX 3 CREAM\",\"unit\":\"1\",\"cost\":\"6.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1772\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3106, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5740\",\"code\":\"1773\",\"name\":\"BELLS VIT C\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1773\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3107, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5741\",\"code\":\"1774\",\"name\":\"ZINCOVIT DROP\",\"unit\":\"1\",\"cost\":\"28.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1774\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3108, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5742\",\"code\":\"1775\",\"name\":\"SPERMAN\",\"unit\":\"1\",\"cost\":\"13.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1775\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sperman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3109, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5743\",\"code\":\"1776\",\"name\":\"BONGELA CHILD\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1776\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-child1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3110, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5744\",\"code\":\"1777\",\"name\":\"NUGEL\",\"unit\":\"1\",\"cost\":\"12.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1777\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3111, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5745\",\"code\":\"1778\",\"name\":\"GASTRACID\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1778\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3112, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5746\",\"code\":\"1779\",\"name\":\"KOFLET\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1779\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3113, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5747\",\"code\":\"1780\",\"name\":\"BEEHIVE\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1780\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3114, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5748\",\"code\":\"1781\",\"name\":\"NS\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1781\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ns\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3115, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5749\",\"code\":\"1782\",\"name\":\"GLUCOSE\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1782\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3116, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5750\",\"code\":\"1783\",\"name\":\"EYECOPEN\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1783\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eyecopen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3117, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5751\",\"code\":\"1784\",\"name\":\"FEROGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1784\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3118, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5752\",\"code\":\"1785\",\"name\":\"GO COUGH\",\"unit\":\"1\",\"cost\":\"1.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1785\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3119, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5753\",\"code\":\"1786\",\"name\":\"BCO STRONG6-23\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1786\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bco-strong6-23\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3120, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5754\",\"code\":\"1787\",\"name\":\"AMPICLOX CAPS\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1787\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampiclox-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3121, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5755\",\"code\":\"1788\",\"name\":\"BCO INJ\",\"unit\":\"1\",\"cost\":\"28.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1788\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bco-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3122, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5756\",\"code\":\"1789\",\"name\":\"CORRORANGE DROP\",\"unit\":\"1\",\"cost\":\"4.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1789\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"corrorange-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3123, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5757\",\"code\":\"1790\",\"name\":\"CA-C SANDOX\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1790\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sandox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3124, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5758\",\"code\":\"1791\",\"name\":\"NEXIUM 20\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1791\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3125, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5759\",\"code\":\"1792\",\"name\":\"STAGYL\",\"unit\":\"1\",\"cost\":\"48.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1792\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stagyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3126, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5760\",\"code\":\"1793\",\"name\":\"PEPSODENT B\\/S\",\"unit\":\"1\",\"cost\":\"52.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1793\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3127, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5761\",\"code\":\"1794\",\"name\":\"ABIDEC\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1794\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3128, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5762\",\"code\":\"1795\",\"name\":\"LAMISIL CREAM\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1795\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamisil-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3129, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5763\",\"code\":\"1796\",\"name\":\"COMBANTRIN\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1796\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"combantrin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3130, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5764\",\"code\":\"1797\",\"name\":\"POLYFER CAPS\",\"unit\":\"1\",\"cost\":\"1.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1797\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3131, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5765\",\"code\":\"1798\",\"name\":\"LYRICA 25\",\"unit\":\"1\",\"cost\":\"2.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1798\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3132, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5766\",\"code\":\"1799\",\"name\":\"PARA DENK 125\",\"unit\":\"1\",\"cost\":\"1.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1799\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3133, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5767\",\"code\":\"1800\",\"name\":\"VAGINAX PESS\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1800\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaginax-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3134, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5768\",\"code\":\"1801\",\"name\":\"FENBASE\",\"unit\":\"1\",\"cost\":\"32.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1801\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3135, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5769\",\"code\":\"1802\",\"name\":\"OMEPRAZOLE\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1802\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprazole\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3136, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5770\",\"code\":\"1803\",\"name\":\"EVECARE\",\"unit\":\"1\",\"cost\":\"82.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1803\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"evecare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3137, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5771\",\"code\":\"1804\",\"name\":\"KOFEX ADULT\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1804\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofex-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3138, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5772\",\"code\":\"1805\",\"name\":\"DIFLUCAN\",\"unit\":\"1\",\"cost\":\"17.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1805\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3139, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5773\",\"code\":\"1806\",\"name\":\"ABONIKI\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1806\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aboniki\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3140, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5774\",\"code\":\"1807\",\"name\":\"LIVING BIT CAPS\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1807\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bit-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3141, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5775\",\"code\":\"1808\",\"name\":\"LIVING BIT SRP\",\"unit\":\"1\",\"cost\":\"17.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1808\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bit-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3142, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5776\",\"code\":\"1809\",\"name\":\"NAZOR\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1809\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nazor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3143, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5777\",\"code\":\"1810\",\"name\":\"TINATETT MALAKARE\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1810\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3144, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5778\",\"code\":\"1811\",\"name\":\"TRENDOUS CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1811\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trendous-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3145, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5779\",\"code\":\"1812\",\"name\":\"VICTAGO\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1812\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3146, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5780\",\"code\":\"1813\",\"name\":\"ADUTWUMWAA BIT\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1813\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adutwumwaa-bit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3147, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5781\",\"code\":\"1814\",\"name\":\"BOAFO OINT\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1814\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"boafo-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3148, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5782\",\"code\":\"1815\",\"name\":\"BRIGHFORD\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1815\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brighford\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3149, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5783\",\"code\":\"1816\",\"name\":\"DIAGELLATES LARGE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1816\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagellates-large\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3150, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5784\",\"code\":\"1817\",\"name\":\"DIAGELATE MED\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1817\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagelate-med\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3151, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5785\",\"code\":\"1818\",\"name\":\"DIAGELATE SMALL\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1818\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagelate-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3152, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5786\",\"code\":\"1819\",\"name\":\"EKURO BEWU\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1819\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bewu1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3153, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5787\",\"code\":\"1820\",\"name\":\"ERNEST OINT\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1820\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3154, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5788\",\"code\":\"1821\",\"name\":\"FINE SOAP\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1821\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fine-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3155, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5789\",\"code\":\"1822\",\"name\":\"FINE CREAM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1822\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fine-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3156, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5790\",\"code\":\"1823\",\"name\":\"FRANKO HERBAL\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1823\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"franko-herbal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3157, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5791\",\"code\":\"1824\",\"name\":\"KINGDOM GENSENG CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1824\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-genseng-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3158, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5792\",\"code\":\"1825\",\"name\":\"MAME DAGOMBA\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1825\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mame-dagomba\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3159, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5793\",\"code\":\"1826\",\"name\":\"MASADA\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1826\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"masada\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3160, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5794\",\"code\":\"1827\",\"name\":\"NANA ADJEI\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1827\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nana-adjei\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3161, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5795\",\"code\":\"1828\",\"name\":\"PA-KUM\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1828\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pa-kum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3162, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5796\",\"code\":\"1829\",\"name\":\"SIBIMAN\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1829\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sibiman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3163, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5797\",\"code\":\"1830\",\"name\":\"ULCERPLEX\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1830\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ulcerplex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3164, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5798\",\"code\":\"1831\",\"name\":\"BASECOLD SRP\",\"unit\":\"1\",\"cost\":\"4.3700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1831\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basecold-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3165, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5799\",\"code\":\"1832\",\"name\":\"FLUXAMOX SRP\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1832\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluxamox-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3166, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5800\",\"code\":\"1833\",\"name\":\"FLUXAMOX CAPS\",\"unit\":\"1\",\"cost\":\"2.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1833\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluxamox-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3167, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5801\",\"code\":\"1834\",\"name\":\"ZUDREX SRP\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1834\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zudrex-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3168, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5802\",\"code\":\"1835\",\"name\":\"ZUDREX TAB\",\"unit\":\"1\",\"cost\":\"0.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1835\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zudrex-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3169, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5803\",\"code\":\"1836\",\"name\":\"MENTODEX B\\/S\",\"unit\":\"1\",\"cost\":\"8.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1836\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentodex-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3170, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5804\",\"code\":\"1837\",\"name\":\"NO 10\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1837\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"no-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3171, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5805\",\"code\":\"1838\",\"name\":\"ZUBES CHILD\",\"unit\":\"1\",\"cost\":\"1.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1838\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3172, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5806\",\"code\":\"1839\",\"name\":\"SAMLIN NON D\",\"unit\":\"1\",\"cost\":\"4.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1839\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samlin-non-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3173, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5807\",\"code\":\"1840\",\"name\":\"MACRAFOLIN SRP\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1840\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"macrafolin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3174, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5808\",\"code\":\"1841\",\"name\":\"SHALCIP\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1841\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalcip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3175, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5809\",\"code\":\"1842\",\"name\":\"BABY COU LINC\",\"unit\":\"1\",\"cost\":\"6.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1842\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baby-cou-linc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3176, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5810\",\"code\":\"1843\",\"name\":\"FERROUS SULF\",\"unit\":\"1\",\"cost\":\"6.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1843\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulf\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3177, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5811\",\"code\":\"1844\",\"name\":\"MALR 2 SRP\",\"unit\":\"1\",\"cost\":\"4.7100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1844\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malr-2-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3178, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5812\",\"code\":\"1845\",\"name\":\"NEXCOFER B\\/S\",\"unit\":\"1\",\"cost\":\"11.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1845\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexcofer-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3179, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5813\",\"code\":\"1846\",\"name\":\"PARA UK 16S\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1846\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-uk-16s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3180, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5814\",\"code\":\"1847\",\"name\":\"ENACEF SYRUP 125\",\"unit\":\"1\",\"cost\":\"6.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1847\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syrup-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3181, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5815\",\"code\":\"1848\",\"name\":\"BENDRO 5MG\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1848\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3182, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5816\",\"code\":\"1849\",\"name\":\"ETISALA SRP\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1849\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"etisala-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3183, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5817\",\"code\":\"1850\",\"name\":\"WORMBASE SUSP\",\"unit\":\"1\",\"cost\":\"1.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1850\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3184, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5818\",\"code\":\"1851\",\"name\":\"BADRUF CREAM\",\"unit\":\"1\",\"cost\":\"0.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1851\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3185, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5819\",\"code\":\"1852\",\"name\":\"BASEFENAC FORT\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1852\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basefenac-fort\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3186, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5820\",\"code\":\"1853\",\"name\":\"WORMBASE TAB\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1853\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3187, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5821\",\"code\":\"1854\",\"name\":\"ARTIBASE SUSP\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1854\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3188, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5822\",\"code\":\"1855\",\"name\":\"BASEKOF\",\"unit\":\"1\",\"cost\":\"0.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1855\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3189, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5823\",\"code\":\"1856\",\"name\":\"VITA P CAPS\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1856\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vita-p-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3190, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5824\",\"code\":\"1857\",\"name\":\"BASEDIUM CAPS\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1857\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basedium-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3191, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5825\",\"code\":\"1858\",\"name\":\"ETISALA CAPS\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1858\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"etisala-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3192, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5826\",\"code\":\"1859\",\"name\":\"ARTIBASE SRP\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1859\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3193, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5827\",\"code\":\"1860\",\"name\":\"ARTIBASE DS\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1860\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3194, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5828\",\"code\":\"1861\",\"name\":\"BE- MAN CD\",\"unit\":\"1\",\"cost\":\"0.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1861\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"be-man-cd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3195, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5829\",\"code\":\"1862\",\"name\":\"PROXEED PLUS\",\"unit\":\"1\",\"cost\":\"1.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1862\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proxeed-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3196, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5830\",\"code\":\"1863\",\"name\":\"BASEFENAC-P\",\"unit\":\"1\",\"cost\":\"0.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1863\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basefenac-p\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3197, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5831\",\"code\":\"1864\",\"name\":\"DIPEX TAB\",\"unit\":\"1\",\"cost\":\"1.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dipex-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3198, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5832\",\"code\":\"1865\",\"name\":\"BASEBRU TAB\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1865\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basebru-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3199, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5833\",\"code\":\"1866\",\"name\":\"BASECOLD\",\"unit\":\"1\",\"cost\":\"0.5200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1866\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basecold\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3200, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5834\",\"code\":\"1867\",\"name\":\"BISACODYL\",\"unit\":\"1\",\"cost\":\"14.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1867\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bisacodyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3201, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5835\",\"code\":\"1868\",\"name\":\"ESKAZIPAM\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1868\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eskazipam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3202, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5836\",\"code\":\"1869\",\"name\":\"FUROSEMIDE 20 RXPHAMA\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1869\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20-rxphama\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3203, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5837\",\"code\":\"1870\",\"name\":\"KIDS BRUSH\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1870\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3204, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5838\",\"code\":\"1871\",\"name\":\"STREPTOL\",\"unit\":\"1\",\"cost\":\"14.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1871\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"streptol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3205, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5839\",\"code\":\"1872\",\"name\":\"JOY OINT\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1872\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3206, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5840\",\"code\":\"1873\",\"name\":\"SAVLON 250\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1873\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3207, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5841\",\"code\":\"1874\",\"name\":\"BASEBOOM JELLY\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1874\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baseboom-jelly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3208, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5842\",\"code\":\"1875\",\"name\":\"KOJACK PASTE\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1875\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kojack-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3209, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5843\",\"code\":\"1876\",\"name\":\"KOJA CHARC\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1876\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koja-charc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3210, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5844\",\"code\":\"1877\",\"name\":\"DICLO -DENK 50\",\"unit\":\"1\",\"cost\":\"0.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1877\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclo-denk-501\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3211, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5845\",\"code\":\"1878\",\"name\":\"ROBB JAR\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1878\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"robb-jar1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3212, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5846\",\"code\":\"1879\",\"name\":\"PAIN OFF\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1879\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3213, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5847\",\"code\":\"1880\",\"name\":\"OLANZIPNE\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1880\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olanzipne\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3214, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5848\",\"code\":\"1881\",\"name\":\"JARIFAN 2 SRP\",\"unit\":\"1\",\"cost\":\"14.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1881\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3215, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5849\",\"code\":\"1882\",\"name\":\"ARABA BAZEEN\",\"unit\":\"1\",\"cost\":\"65.0100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1882\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"araba-bazeen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3216, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5850\",\"code\":\"1883\",\"name\":\"HEPTO PEP\",\"unit\":\"1\",\"cost\":\"4.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1883\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hepto-pep\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3217, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5851\",\"code\":\"1884\",\"name\":\"APPLE CIDER B\\/S\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1884\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cider-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3218, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5852\",\"code\":\"1885\",\"name\":\"EXFORGE 10\\/160\",\"unit\":\"1\",\"cost\":\"5.6100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1885\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exforge-10160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3219, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5853\",\"code\":\"1886\",\"name\":\"EXFORGE 5\\/160\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1886\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exforge-5160\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3220, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5854\",\"code\":\"1887\",\"name\":\"DIPHEX SRP\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1887\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diphex-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3221, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5855\",\"code\":\"1888\",\"name\":\"ZEMAN\",\"unit\":\"1\",\"cost\":\"2.4100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1888\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zeman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3222, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5856\",\"code\":\"1889\",\"name\":\"SIRDALUD 2MG\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1889\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-2mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3223, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5857\",\"code\":\"1890\",\"name\":\"SIRDALUD 4MG\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1890\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-4mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3224, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5858\",\"code\":\"1891\",\"name\":\"ZINCOLAC\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1891\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincolac\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3225, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5859\",\"code\":\"1892\",\"name\":\"OSONS GRIPE\",\"unit\":\"1\",\"cost\":\"23.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1892\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osons-gripe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3226, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5860\",\"code\":\"1893\",\"name\":\"VITAGLOBIN\",\"unit\":\"1\",\"cost\":\"15.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1893\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitaglobin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3227, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5861\",\"code\":\"1894\",\"name\":\"EVECARE SRP\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1894\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"evecare-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3228, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5862\",\"code\":\"1895\",\"name\":\"EPICROM\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1895\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epicrom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3229, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5863\",\"code\":\"1896\",\"name\":\"CROMAX\",\"unit\":\"1\",\"cost\":\"20.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1896\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cromax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3230, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5864\",\"code\":\"1897\",\"name\":\"DALACIN C 150MG\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1897\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dalacin-c-150mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3231, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5865\",\"code\":\"1898\",\"name\":\"NURIFER CAPS\",\"unit\":\"1\",\"cost\":\"0.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1898\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nurifer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3232, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5866\",\"code\":\"1899\",\"name\":\"AERIUS TAB\",\"unit\":\"1\",\"cost\":\"0.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1899\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aerius-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3233, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5867\",\"code\":\"1900\",\"name\":\"GACET 125\",\"unit\":\"1\",\"cost\":\"17.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1900\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3234, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5868\",\"code\":\"1901\",\"name\":\"GACET 250\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1901\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3235, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5869\",\"code\":\"1902\",\"name\":\"FLOXAPEN\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1902\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"floxapen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3236, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5870\",\"code\":\"1903\",\"name\":\"ASTHALEX\",\"unit\":\"1\",\"cost\":\"42.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1903\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asthalex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3237, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5871\",\"code\":\"1904\",\"name\":\"DEXATROL DROP\",\"unit\":\"1\",\"cost\":\"16.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1904\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3238, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5872\",\"code\":\"1905\",\"name\":\"OPTREX EYE WASH\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1905\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3239, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5873\",\"code\":\"1906\",\"name\":\"MAXISPORON\",\"unit\":\"1\",\"cost\":\"52.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1906\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maxisporon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3240, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5874\",\"code\":\"1907\",\"name\":\"E-NAT E\",\"unit\":\"1\",\"cost\":\"37.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1907\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"e-nat-e\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3241, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5875\",\"code\":\"1908\",\"name\":\"WELLOMAN 70+\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1908\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welloman-70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3242, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5876\",\"code\":\"1909\",\"name\":\"WELLWOMAN PLUS\",\"unit\":\"1\",\"cost\":\"26.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1909\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3243, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5877\",\"code\":\"1910\",\"name\":\"COX B\",\"unit\":\"1\",\"cost\":\"15.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1910\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cox-b\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3244, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5878\",\"code\":\"1911\",\"name\":\"S\\/SEAS SRP\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1911\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3245, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5879\",\"code\":\"1912\",\"name\":\"ASTIMIN\",\"unit\":\"1\",\"cost\":\"8.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1912\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"astimin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3246, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5880\",\"code\":\"1913\",\"name\":\"PERFECTIL PLATINUM\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1913\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-platinum1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3247, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5881\",\"code\":\"1914\",\"name\":\"RELCER GEL\",\"unit\":\"1\",\"cost\":\"47.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1914\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"relcer-gel1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3248, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5882\",\"code\":\"1915\",\"name\":\"ABIDEC SRP\",\"unit\":\"1\",\"cost\":\"40.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1915\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3249, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5883\",\"code\":\"1916\",\"name\":\"WELLBABY DROP\",\"unit\":\"1\",\"cost\":\"33.0100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1916\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellbaby-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3250, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5884\",\"code\":\"1917\",\"name\":\"INFACOL\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1917\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"infacol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3251, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5885\",\"code\":\"1918\",\"name\":\"PEVISON\",\"unit\":\"1\",\"cost\":\"6.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1918\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pevison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3252, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5886\",\"code\":\"1919\",\"name\":\"ROBB INH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1919\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"robb-inh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3253, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5887\",\"code\":\"1920\",\"name\":\"ZENTEL TAB\",\"unit\":\"1\",\"cost\":\"25.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1920\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zentel-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3254, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5888\",\"code\":\"1921\",\"name\":\"APFLU\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apflu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3255, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5889\",\"code\":\"1922\",\"name\":\"BENILIN CHESTY\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1922\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-chesty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3256, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5890\",\"code\":\"1923\",\"name\":\"TYLENOL\",\"unit\":\"1\",\"cost\":\"53.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1923\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3257, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5891\",\"code\":\"1924\",\"name\":\"ADVIL\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1924\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3258, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5892\",\"code\":\"1925\",\"name\":\"ADDYZOA\",\"unit\":\"1\",\"cost\":\"17.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1925\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3259, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5893\",\"code\":\"1926\",\"name\":\"CLARITHROMYCIN\",\"unit\":\"1\",\"cost\":\"7.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1926\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clarithromycin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3260, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5894\",\"code\":\"1927\",\"name\":\"TIGER SPRAY\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1927\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-spray1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3261, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5895\",\"code\":\"1928\",\"name\":\"TIGER CAPS\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3262, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5896\",\"code\":\"1929\",\"name\":\"CYCLOGEST 200\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1929\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3263, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5897\",\"code\":\"1930\",\"name\":\"FEGLO B\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1930\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feglo-b\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3264, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5898\",\"code\":\"1931\",\"name\":\"SALO COLD SRP\",\"unit\":\"1\",\"cost\":\"0.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1931\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salo-cold-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3265, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5899\",\"code\":\"1932\",\"name\":\"PHLEBODIA\",\"unit\":\"1\",\"cost\":\"0.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1932\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"phlebodia\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3266, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5900\",\"code\":\"1933\",\"name\":\"PINPAC EXTRA\",\"unit\":\"1\",\"cost\":\"3.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1933\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pinpac-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3267, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5901\",\"code\":\"1934\",\"name\":\"OXAFEN\",\"unit\":\"1\",\"cost\":\"40.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1934\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oxafen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3268, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5902\",\"code\":\"1935\",\"name\":\"ZIRTEK TAB\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1935\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zirtek-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3269, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5903\",\"code\":\"1936\",\"name\":\"ZIRTEK SLN\",\"unit\":\"1\",\"cost\":\"9.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1936\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zirtek-sln\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3270, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5904\",\"code\":\"1937\",\"name\":\"SALOCOLD TAB\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1937\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salocold-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3271, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5905\",\"code\":\"1938\",\"name\":\"ACEOUS CREAM\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aceous-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3272, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5906\",\"code\":\"1939\",\"name\":\"APPLE CID S\\/S\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1939\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cid-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3273, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5907\",\"code\":\"1940\",\"name\":\"MUCOLEX J\",\"unit\":\"1\",\"cost\":\"51.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1940\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mucolex-j\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3274, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5908\",\"code\":\"1941\",\"name\":\"MUCOLEX ADULT\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1941\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mucolex-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3275, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5909\",\"code\":\"1942\",\"name\":\"NIGHT NURSE SRP\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1942\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"night-nurse-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3276, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5910\",\"code\":\"1943\",\"name\":\"DEEP HEAT 35\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1943\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-35\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3277, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5911\",\"code\":\"1944\",\"name\":\"DEEP HEAT 67\",\"unit\":\"1\",\"cost\":\"10.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1944\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-67\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3278, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5912\",\"code\":\"1945\",\"name\":\"COATERM12S\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1945\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coaterm12s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3279, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5913\",\"code\":\"1946\",\"name\":\"COATERM 6S\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1946\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coaterm-6s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3280, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5914\",\"code\":\"1947\",\"name\":\"CANDIBIOTIC EAR\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1947\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"candibiotic-ear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3281, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5915\",\"code\":\"1948\",\"name\":\"GINSOMIN EVE\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1948\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginsomin-eve1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3282, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5916\",\"code\":\"1949\",\"name\":\"GINSOMIN CAPS\",\"unit\":\"1\",\"cost\":\"32.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1949\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginsomin-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3283, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5917\",\"code\":\"1950\",\"name\":\"LIVOLIN\",\"unit\":\"1\",\"cost\":\"5.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1950\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"livolin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3284, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5918\",\"code\":\"1951\",\"name\":\"GYNO DAK PESS\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1951\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gyno-dak-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3285, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5919\",\"code\":\"1952\",\"name\":\"FISHERMAN\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1952\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fisherman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3286, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5920\",\"code\":\"1953\",\"name\":\"OMEPRZOLE NIMEP\",\"unit\":\"1\",\"cost\":\"27.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1953\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprzole-nimep\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3287, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5921\",\"code\":\"1954\",\"name\":\"FLUCOR  NIGHT\",\"unit\":\"1\",\"cost\":\"4.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1954\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucor-night1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3288, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5922\",\"code\":\"1955\",\"name\":\"TIXILIX\",\"unit\":\"1\",\"cost\":\"1.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1955\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tixilix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3289, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5923\",\"code\":\"1956\",\"name\":\"ENVICO\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1956\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"envico\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3290, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5924\",\"code\":\"1957\",\"name\":\"EZIPEN\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1957\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3291, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5925\",\"code\":\"1958\",\"name\":\"BENDRO 2.5\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1958\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3292, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5926\",\"code\":\"1959\",\"name\":\"ACIDOM\",\"unit\":\"1\",\"cost\":\"34.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1959\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acidom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3293, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5927\",\"code\":\"1960\",\"name\":\"ACTIFED TAB\",\"unit\":\"1\",\"cost\":\"4.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1960\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actifed-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3294, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5928\",\"code\":\"1961\",\"name\":\"BENILIN ORG\",\"unit\":\"1\",\"cost\":\"0.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1961\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3295, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5929\",\"code\":\"1962\",\"name\":\"BELA COUGH\",\"unit\":\"1\",\"cost\":\"33.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1962\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bela-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3296, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5930\",\"code\":\"1963\",\"name\":\"ASMANOL\",\"unit\":\"1\",\"cost\":\"27.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1963\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asmanol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3297, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5931\",\"code\":\"1964\",\"name\":\"BENILIN INFANT\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1964\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3298, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5932\",\"code\":\"1965\",\"name\":\"GAVISCON\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1965\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gaviscon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3299, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5933\",\"code\":\"1966\",\"name\":\"TRANEXAMIC ACID\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1966\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tranexamic-acid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3300, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5934\",\"code\":\"1967\",\"name\":\"DEEP FREEZE OINT\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1967\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3301, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5935\",\"code\":\"1968\",\"name\":\"DIABETONE\",\"unit\":\"1\",\"cost\":\"15.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1968\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diabetone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3302, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5936\",\"code\":\"1969\",\"name\":\"ATERSUNATE INJ      30MG\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1969\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atersunate-inj-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3303, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5937\",\"code\":\"1970\",\"name\":\"ARTESUNATE INJ 60\",\"unit\":\"1\",\"cost\":\"28.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1970\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artesunate-inj-60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3304, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5938\",\"code\":\"1971\",\"name\":\"ARTESUNATE INJ 120MG\",\"unit\":\"1\",\"cost\":\"0.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1971\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artesunate-inj-120mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3305, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5939\",\"code\":\"1972\",\"name\":\"GALVUS MET 50\\/1000MG\",\"unit\":\"1\",\"cost\":\"0.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1972\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-501000mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3306, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5940\",\"code\":\"1973\",\"name\":\"MAGACID TAB\",\"unit\":\"1\",\"cost\":\"2.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1973\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3307, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5941\",\"code\":\"1974\",\"name\":\"ASMANOL\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1974\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asmanol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3308, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5942\",\"code\":\"1975\",\"name\":\"M;B TAB\",\"unit\":\"1\",\"cost\":\"10.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1975\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mb-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3309, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5943\",\"code\":\"1976\",\"name\":\"OPTIMOL EYE\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1976\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3310, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5944\",\"code\":\"1977\",\"name\":\"DEXORANGE SRP\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1977\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexorange-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3311, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5945\",\"code\":\"1978\",\"name\":\"ASPIRIN DISP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1978\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspirin-disp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3312, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5946\",\"code\":\"1979\",\"name\":\"PROPER PAD\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1979\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proper-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3313, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5947\",\"code\":\"1980\",\"name\":\"AQUEOS  BIG\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1980\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqueos-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3314, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5948\",\"code\":\"1981\",\"name\":\"CHOCOLATE\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1981\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3315, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5949\",\"code\":\"1982\",\"name\":\"SELECT STRIPS\",\"unit\":\"1\",\"cost\":\"4.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1982\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"select-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3316, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5950\",\"code\":\"1983\",\"name\":\"GLUCOSE CHECK\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1983\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucose-check\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3317, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5951\",\"code\":\"1984\",\"name\":\"EXETER PARA SRP\",\"unit\":\"1\",\"cost\":\"48.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1984\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exeter-para-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3318, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5952\",\"code\":\"1985\",\"name\":\"AMOKSIKLAV 1G\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1985\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3319, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5953\",\"code\":\"1986\",\"name\":\"AVAMYS\",\"unit\":\"1\",\"cost\":\"5.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1986\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"avamys\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3320, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5954\",\"code\":\"1987\",\"name\":\"HYDROGEN ECL\",\"unit\":\"1\",\"cost\":\"29.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1987\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrogen-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3321, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5955\",\"code\":\"1988\",\"name\":\"METOCLOPRAMIDE\",\"unit\":\"1\",\"cost\":\"8.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1988\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metoclopramide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3322, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5956\",\"code\":\"1989\",\"name\":\"FLAGYL ORG SUSP\",\"unit\":\"1\",\"cost\":\"7.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1989\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagyl-org-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3323, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5957\",\"code\":\"1990\",\"name\":\"LG GLIZONE 15MG\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1990\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lg-glizone-15mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3324, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5958\",\"code\":\"1991\",\"name\":\"AMOXIL SUSP UK\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1991\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-susp-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3325, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5959\",\"code\":\"1992\",\"name\":\"LYRICA 75\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1992\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3326, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5960\",\"code\":\"1993\",\"name\":\"BRUFEN SRP\",\"unit\":\"1\",\"cost\":\"9.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1993\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brufen-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3327, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5961\",\"code\":\"1994\",\"name\":\"DRAGON SPRAY\",\"unit\":\"1\",\"cost\":\"3.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1994\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dragon-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3328, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5962\",\"code\":\"1995\",\"name\":\"KIDICS SRP\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1995\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidics-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3329, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5963\",\"code\":\"1996\",\"name\":\"INOPRIL\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1996\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"inopril\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3330, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5964\",\"code\":\"1997\",\"name\":\"MYCOSTAT\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1997\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycostat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3331, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5965\",\"code\":\"1998\",\"name\":\"A-L FORTE\",\"unit\":\"1\",\"cost\":\"0.4100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1998\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"a-l-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3332, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5966\",\"code\":\"1999\",\"name\":\"SCHIMETER SUSP\",\"unit\":\"1\",\"cost\":\"0.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1999\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"schimeter-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3333, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5967\",\"code\":\"2000\",\"name\":\"BENDRO 5 LOCAL\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-5-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3334, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5968\",\"code\":\"2001\",\"name\":\"BENDRO 2.5 LOCAL\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bendro-25-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3335, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5969\",\"code\":\"2002\",\"name\":\"GLUCOSE INFUSION\",\"unit\":\"1\",\"cost\":\"11.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2002\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucose-infusion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3336, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5970\",\"code\":\"2003\",\"name\":\"LACTOGEN 1@2\",\"unit\":\"1\",\"cost\":\"0.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2003\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lactogen-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3337, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5971\",\"code\":\"2004\",\"name\":\"METROLEX F SUSP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2004\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metrolex-f-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3338, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5972\",\"code\":\"2005\",\"name\":\"TETRA CAPS\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tetra-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3339, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5973\",\"code\":\"2006\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2006\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3340, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5974\",\"code\":\"2007\",\"name\":\"SAVLON 250\",\"unit\":\"1\",\"cost\":\"20.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3341, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5975\",\"code\":\"2008\",\"name\":\"MENSTRUAL CYC\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2008\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menstrual-cyc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3342, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5976\",\"code\":\"2009\",\"name\":\"MENTAT SRP\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentat-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3343, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5977\",\"code\":\"2010\",\"name\":\"NURIFER SRP\",\"unit\":\"1\",\"cost\":\"8.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2010\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nurifer-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3344, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5978\",\"code\":\"2011\",\"name\":\"INFA-V PESS\",\"unit\":\"1\",\"cost\":\"7.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2011\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pess1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3345, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5979\",\"code\":\"2012\",\"name\":\"LOSATAN 50 EXETER\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losatan-50-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3346, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5980\",\"code\":\"2013\",\"name\":\"TIMOL EYE\",\"unit\":\"1\",\"cost\":\"8.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2013\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"timol-eye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3347, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5981\",\"code\":\"2014\",\"name\":\"OVACARE\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2014\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3348, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5982\",\"code\":\"2015\",\"name\":\"OSTEOCALIN\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osteocalin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3349, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5983\",\"code\":\"2016\",\"name\":\"NEUROZAN\",\"unit\":\"1\",\"cost\":\"15.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2016\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neurozan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3350, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5984\",\"code\":\"2017\",\"name\":\"ENTEROGEMINA\",\"unit\":\"1\",\"cost\":\"7.6800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2017\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enterogemina\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3351, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5985\",\"code\":\"2018\",\"name\":\"PROMAN\",\"unit\":\"1\",\"cost\":\"52.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2018\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3352, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5986\",\"code\":\"2019\",\"name\":\"VISCOF\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2019\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viscof\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3353, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5987\",\"code\":\"2020\",\"name\":\"CIALIS\",\"unit\":\"1\",\"cost\":\"26.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2020\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cialis\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3354, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5988\",\"code\":\"2021\",\"name\":\"CHLO CAPS\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2021\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlo-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3355, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5989\",\"code\":\"2022\",\"name\":\"NEOVITA CAPS\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2022\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neovita-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3356, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5990\",\"code\":\"2023\",\"name\":\"LYNUS OINT\",\"unit\":\"1\",\"cost\":\"3.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2023\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lynus-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3357, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5991\",\"code\":\"2024\",\"name\":\"GILOBA\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2024\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"giloba\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3358, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5992\",\"code\":\"2025\",\"name\":\"LISINOPRIL 5 TEVA\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2025\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-5-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3359, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5993\",\"code\":\"2026\",\"name\":\"CRESTOR 10\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2026\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3360, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5994\",\"code\":\"2027\",\"name\":\"DIGOXIN 125\",\"unit\":\"1\",\"cost\":\"2.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2027\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-1251\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3361, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5995\",\"code\":\"2028\",\"name\":\"DIGOXIN 250\",\"unit\":\"1\",\"cost\":\"84.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2028\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3362, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5996\",\"code\":\"2029\",\"name\":\"FLAGL SRP M*G\",\"unit\":\"1\",\"cost\":\"14.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2029\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagl-srp-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3363, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5997\",\"code\":\"2030\",\"name\":\"ORELOX SUSP\",\"unit\":\"1\",\"cost\":\"17.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3364, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5998\",\"code\":\"2031\",\"name\":\"STOMOCAIN\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2031\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stomocain\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3365, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5999\",\"code\":\"2032\",\"name\":\"LIMZER\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2032\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"limzer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3366, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6000\",\"code\":\"2033\",\"name\":\"CEBROTONIN\",\"unit\":\"1\",\"cost\":\"29.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2033\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cebrotonin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3367, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6001\",\"code\":\"2034\",\"name\":\"JUNIOR BRUFN SRP\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"junior-brufn-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3368, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6002\",\"code\":\"2035\",\"name\":\"MAALOX PLUS\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2035\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3369, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6003\",\"code\":\"2036\",\"name\":\"SWEETEX\",\"unit\":\"1\",\"cost\":\"57.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2036\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweetex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3370, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6004\",\"code\":\"2037\",\"name\":\"CANDEREL\",\"unit\":\"1\",\"cost\":\"1.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2037\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"canderel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3371, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6005\",\"code\":\"2038\",\"name\":\"SERETIDE 50\\/100\",\"unit\":\"1\",\"cost\":\"31.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2038\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"seretide-50100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3372, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6006\",\"code\":\"2039\",\"name\":\"LETAMOL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2039\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letamol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3373, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6007\",\"code\":\"2040\",\"name\":\"CARDIOACE\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2040\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3374, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6008\",\"code\":\"2041\",\"name\":\"OSTECARE PLUS\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2041\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ostecare-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3375, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6009\",\"code\":\"2042\",\"name\":\"XYLO ACINO INFANT\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2042\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xylo-acino-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3376, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6010\",\"code\":\"2043\",\"name\":\"BACTIGEL\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2043\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bactigel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3377, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6011\",\"code\":\"2044\",\"name\":\"SASSO SPRAY\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2044\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sasso-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3378, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6012\",\"code\":\"2045\",\"name\":\"MOSQUITOE REPP\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2045\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mosquitoe-repp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3379, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6013\",\"code\":\"2046\",\"name\":\"SANITIZER B\\/S\",\"unit\":\"1\",\"cost\":\"7.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2046\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3380, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6014\",\"code\":\"2047\",\"name\":\"ESSENTIAL EMBR\",\"unit\":\"1\",\"cost\":\"24.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2047\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essential-embr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3381, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6015\",\"code\":\"2048\",\"name\":\"OSTECARE LOCAL TAB\",\"unit\":\"1\",\"cost\":\"35.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2048\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ostecare-local-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3382, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6016\",\"code\":\"2049\",\"name\":\"SILVERDERMA\",\"unit\":\"1\",\"cost\":\"29.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2049\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"silverderma\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3383, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6017\",\"code\":\"2050\",\"name\":\"PROXIMEXA SUSP\",\"unit\":\"1\",\"cost\":\"8.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2050\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3384, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6018\",\"code\":\"2051\",\"name\":\"PEPTO S\\/S\",\"unit\":\"1\",\"cost\":\"6.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3385, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6019\",\"code\":\"2052\",\"name\":\"DUROL 300ML\",\"unit\":\"1\",\"cost\":\"4.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2052\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3386, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6020\",\"code\":\"2053\",\"name\":\"MALAR 2 FORTE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2053\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malar-2-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3387, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6021\",\"code\":\"2054\",\"name\":\"AMCOF ADULT\",\"unit\":\"1\",\"cost\":\"5.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2054\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amcof-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3388, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6022\",\"code\":\"2055\",\"name\":\"AMCOF BABY\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2055\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amcof-baby1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3389, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6023\",\"code\":\"2056\",\"name\":\"AMCOF JUNIOR\",\"unit\":\"1\",\"cost\":\"29.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2056\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amcof-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3390, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6024\",\"code\":\"2057\",\"name\":\"GYNO MYCOLEX PESS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2057\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gyno-mycolex-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3391, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6025\",\"code\":\"2058\",\"name\":\"ANUSOL OINT\",\"unit\":\"1\",\"cost\":\"9.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2058\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3392, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6026\",\"code\":\"2059\",\"name\":\"FATWIKEKE\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2059\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fatwikeke\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3393, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6027\",\"code\":\"2060\",\"name\":\"DERMACOT CREM\",\"unit\":\"1\",\"cost\":\"6.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2060\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dermacot-crem\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3394, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6028\",\"code\":\"2061\",\"name\":\"COTTON 100\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2061\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3395, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6029\",\"code\":\"2062\",\"name\":\"DICLOLEX CREAM\",\"unit\":\"1\",\"cost\":\"84.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2062\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3396, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6030\",\"code\":\"2063\",\"name\":\"CAMPHOR\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2063\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camphor1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3397, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6031\",\"code\":\"2064\",\"name\":\"ZINNAT SUSP 100MLS\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2064\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3398, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6032\",\"code\":\"2065\",\"name\":\"CALAMINE OINT\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2065\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-oint1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3399, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6033\",\"code\":\"2066\",\"name\":\"HAEMOGLOBIN ARTN\",\"unit\":\"1\",\"cost\":\"34.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2066\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-artn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3400, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6034\",\"code\":\"2067\",\"name\":\"MINAMINO\",\"unit\":\"1\",\"cost\":\"4.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2067\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"minamino\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3401, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6035\",\"code\":\"2068\",\"name\":\"MAALOX  PLUS\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2068\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3402, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6036\",\"code\":\"2069\",\"name\":\"DITHRANOL\",\"unit\":\"1\",\"cost\":\"38.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2069\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dithranol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3403, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6037\",\"code\":\"2070\",\"name\":\"WHITEFEILD\",\"unit\":\"1\",\"cost\":\"27.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2070\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"whitefeild\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3404, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6038\",\"code\":\"2071\",\"name\":\"AUGMENTIN 1G\",\"unit\":\"1\",\"cost\":\"1.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2071\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-1g1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3405, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6039\",\"code\":\"2072\",\"name\":\"AUGMENTIN 228\",\"unit\":\"1\",\"cost\":\"0.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2072\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-228\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3406, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6040\",\"code\":\"2073\",\"name\":\"ALKA SELTZER\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2073\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alka-seltzer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3407, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6041\",\"code\":\"2074\",\"name\":\"PIRITON LOCAL\",\"unit\":\"1\",\"cost\":\"12.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2074\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3408, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6042\",\"code\":\"2075\",\"name\":\"SALBUTAMOL TAB\",\"unit\":\"1\",\"cost\":\"65.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2075\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salbutamol-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3409, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6043\",\"code\":\"2076\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"25.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2076\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3410, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6044\",\"code\":\"2077\",\"name\":\"BACTROBAN\",\"unit\":\"1\",\"cost\":\"17.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2077\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bactroban\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3411, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6045\",\"code\":\"2078\",\"name\":\"SUPIROCIN\",\"unit\":\"1\",\"cost\":\"18.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2078\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"supirocin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3412, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6046\",\"code\":\"2079\",\"name\":\"BUSYLIFESTYLE\",\"unit\":\"1\",\"cost\":\"19.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2079\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"busylifestyle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3413, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6047\",\"code\":\"2080\",\"name\":\"GLUCOSAMINE\",\"unit\":\"1\",\"cost\":\"3.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2080\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucosamine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3414, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6048\",\"code\":\"2081\",\"name\":\"PROWOMAN\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2081\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prowoman1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3415, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6049\",\"code\":\"2082\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"16.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2082\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3416, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6050\",\"code\":\"2083\",\"name\":\"OTRIVIN ADULT\",\"unit\":\"1\",\"cost\":\"4.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2083\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"otrivin-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3417, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6051\",\"code\":\"2084\",\"name\":\"OTRIVIN CHILD\",\"unit\":\"1\",\"cost\":\"3.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2084\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"otrivin-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3418, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6052\",\"code\":\"2085\",\"name\":\"CARBOZAP JUNIOR\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2085\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbozap-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3419, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6053\",\"code\":\"2086\",\"name\":\"PROCOLD\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2086\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"procold\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3420, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6054\",\"code\":\"2087\",\"name\":\"ENACIN 300\",\"unit\":\"1\",\"cost\":\"16.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2087\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enacin-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3421, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6055\",\"code\":\"2088\",\"name\":\"ZINCOFER CAPS\",\"unit\":\"1\",\"cost\":\"5.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2088\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincofer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3422, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6056\",\"code\":\"2089\",\"name\":\"HILADY\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2089\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hilady\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3423, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6057\",\"code\":\"2090\",\"name\":\"LEOPARD OINT\",\"unit\":\"1\",\"cost\":\"1.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2090\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leopard-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3424, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6058\",\"code\":\"2091\",\"name\":\"ODYMIN\",\"unit\":\"1\",\"cost\":\"3.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2091\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"odymin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3425, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6059\",\"code\":\"2092\",\"name\":\"GEBEDOL FORTE\",\"unit\":\"1\",\"cost\":\"40.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2092\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3426, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6060\",\"code\":\"2093\",\"name\":\"MEDSOMOX SUSP\",\"unit\":\"1\",\"cost\":\"4.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2093\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medsomox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3427, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6061\",\"code\":\"2094\",\"name\":\"CRESTOR 5\",\"unit\":\"1\",\"cost\":\"1.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2094\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-5\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3428, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6062\",\"code\":\"2095\",\"name\":\"SUNLIGHT S\\/S\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2095\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sunlight-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3429, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6063\",\"code\":\"2096\",\"name\":\"MEDISOFT\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2096\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medisoft\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3430, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6064\",\"code\":\"2097\",\"name\":\"LUCOZADE B\\/S\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2097\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucozade-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3431, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6065\",\"code\":\"2098\",\"name\":\"MALIN ADULT\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2098\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3432, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6066\",\"code\":\"2099\",\"name\":\"SORE DRESING\",\"unit\":\"1\",\"cost\":\"0.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2099\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sore-dresing\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3433, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6067\",\"code\":\"2100\",\"name\":\"SELECT STRIPS\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2100\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"select-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3434, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6068\",\"code\":\"2101\",\"name\":\"FOLIC ACID LOCAL\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2101\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3435, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6069\",\"code\":\"2102\",\"name\":\"KAMAGRA JELLY\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2102\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kamagra-jelly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3436, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6070\",\"code\":\"2103\",\"name\":\"SHALCIP TZ\",\"unit\":\"1\",\"cost\":\"81.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2103\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalcip-tz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3437, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6071\",\"code\":\"2104\",\"name\":\"ENACEF 500\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2104\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3438, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6072\",\"code\":\"2105\",\"name\":\"PREGNCARE BRESTF\",\"unit\":\"1\",\"cost\":\"0.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2105\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregncare-brestf\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3439, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6073\",\"code\":\"2106\",\"name\":\"AMPICILIN CAPS\",\"unit\":\"1\",\"cost\":\"1.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2106\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampicilin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3440, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6074\",\"code\":\"2107\",\"name\":\"CLOXACILLIN CAPS\",\"unit\":\"1\",\"cost\":\"14.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2107\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cloxacillin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3441, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6075\",\"code\":\"2108\",\"name\":\"VOLTIC M\\/S\",\"unit\":\"1\",\"cost\":\"13.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2108\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3442, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6076\",\"code\":\"2109\",\"name\":\"METFOMIN DENK 1000\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2109\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metfomin-denk-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3443, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6077\",\"code\":\"2110\",\"name\":\"LEXPORIN POWDER\",\"unit\":\"1\",\"cost\":\"11.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2110\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexporin-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3444, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6078\",\"code\":\"2111\",\"name\":\"PROCOMIL SPRAY\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2111\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3445, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6079\",\"code\":\"2112\",\"name\":\"PROCMIL TAB\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2112\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"procmil-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3446, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6080\",\"code\":\"2113\",\"name\":\"STOPKOF CHILD\",\"unit\":\"1\",\"cost\":\"25.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2113\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-child\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3447, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6081\",\"code\":\"2114\",\"name\":\"MALIN JUNIOR\",\"unit\":\"1\",\"cost\":\"31.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2114\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3448, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6082\",\"code\":\"2115\",\"name\":\"FLAGYL ORG SRP\",\"unit\":\"1\",\"cost\":\"62.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2115\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagyl-org-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3449, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6083\",\"code\":\"2116\",\"name\":\"VISIONACE\",\"unit\":\"1\",\"cost\":\"53.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2116\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3450, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6084\",\"code\":\"2117\",\"name\":\"WELLMAN CONCEPTION\",\"unit\":\"1\",\"cost\":\"7.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2117\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellman-conception\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3451, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6085\",\"code\":\"2118\",\"name\":\"CELEBREX\",\"unit\":\"1\",\"cost\":\"6.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2118\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"celebrex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3452, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6086\",\"code\":\"2119\",\"name\":\"OMEGA OIL\",\"unit\":\"1\",\"cost\":\"10.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2119\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3453, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6087\",\"code\":\"2120\",\"name\":\"ROUGH RIDER\",\"unit\":\"1\",\"cost\":\"8.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2120\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rough-rider\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3454, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6088\",\"code\":\"2121\",\"name\":\"GV FLUC SUSP\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2121\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-fluc-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3455, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6089\",\"code\":\"2122\",\"name\":\"GYPRONE SRP\",\"unit\":\"1\",\"cost\":\"1.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2122\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3456, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6090\",\"code\":\"2123\",\"name\":\"INDOCID\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2123\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"indocid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3457, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6091\",\"code\":\"2124\",\"name\":\"OSONS COD LIVER\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2124\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osons-cod-liver\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3458, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6092\",\"code\":\"2125\",\"name\":\"SUPER APETI SRP\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2125\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"super-apeti-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3459, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6093\",\"code\":\"2126\",\"name\":\"APDYL -H COUGH S\'S\",\"unit\":\"1\",\"cost\":\"0.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2126\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3460, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6094\",\"code\":\"2127\",\"name\":\"PAINGAY\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2127\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paingay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3461, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6095\",\"code\":\"2128\",\"name\":\"DYNEWELL TAB\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2128\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3462, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6096\",\"code\":\"2129\",\"name\":\"PLASTER STRIP\",\"unit\":\"1\",\"cost\":\"59.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2129\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-strip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3463, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6097\",\"code\":\"2130\",\"name\":\"COLESTOP 20\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2130\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colestop-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3464, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6098\",\"code\":\"2131\",\"name\":\"LIPITOR 40\",\"unit\":\"1\",\"cost\":\"0.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2131\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-40\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3465, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6099\",\"code\":\"2132\",\"name\":\"OSTEOCARE SRP LOCAL\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2132\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3466, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6100\",\"code\":\"2133\",\"name\":\"PLASTER STRIP\",\"unit\":\"1\",\"cost\":\"23.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2133\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-strip\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3467, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6101\",\"code\":\"2134\",\"name\":\"MMT\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2134\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mmt1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3468, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6102\",\"code\":\"2135\",\"name\":\"FFLUCLOX 500\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2135\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ffluclox-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3469, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6103\",\"code\":\"2136\",\"name\":\"MAXITROL\",\"unit\":\"1\",\"cost\":\"11.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2136\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3470, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6104\",\"code\":\"2137\",\"name\":\"CUSIMOLOL\",\"unit\":\"1\",\"cost\":\"9.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cusimolol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3471, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6105\",\"code\":\"2138\",\"name\":\"BRO-ZEDEX\",\"unit\":\"1\",\"cost\":\"8.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2138\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bro-zedex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3472, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6106\",\"code\":\"2139\",\"name\":\"P-ALAXIN TAB\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2139\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"p-alaxin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3473, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6107\",\"code\":\"2140\",\"name\":\"FUROSEMIDE CRESCENT 20\",\"unit\":\"1\",\"cost\":\"32.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2140\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-crescent-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3474, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6108\",\"code\":\"2141\",\"name\":\"CARVEDILOL 6.25 EXETER\",\"unit\":\"1\",\"cost\":\"3.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2141\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carvedilol-625-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3475, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6109\",\"code\":\"2142\",\"name\":\"BIO OIL\",\"unit\":\"1\",\"cost\":\"18.0600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2142\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bio-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3476, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6110\",\"code\":\"2143\",\"name\":\"METRO -Z\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2143\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-z\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3477, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6111\",\"code\":\"2144\",\"name\":\"PARLODEL\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2144\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3478, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6112\",\"code\":\"2145\",\"name\":\"BELLS OLIVE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2145\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-olive\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3479, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6113\",\"code\":\"2146\",\"name\":\"ESSENTIAL M\\/S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2146\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essential-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3480, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6114\",\"code\":\"2147\",\"name\":\"LIPITON YELLOW\",\"unit\":\"1\",\"cost\":\"0.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2147\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipiton-yellow\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3481, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6115\",\"code\":\"2148\",\"name\":\"RAID\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2148\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"raid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3482, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6116\",\"code\":\"2149\",\"name\":\"FLORA TISSUE\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2149\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flora-tissue\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3483, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6117\",\"code\":\"2150\",\"name\":\"SAVLON 500ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2150\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3484, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6118\",\"code\":\"2151\",\"name\":\"ORAL B PASTE\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2151\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3485, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6119\",\"code\":\"2152\",\"name\":\"SULFER 18 POWD\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2152\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sulfer-18-powd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3486, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6120\",\"code\":\"2153\",\"name\":\"SIVODERM POWD\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2153\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-powd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3487, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6121\",\"code\":\"2154\",\"name\":\"JRA M\\/S\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2154\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3488, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6122\",\"code\":\"2155\",\"name\":\"JRA S\\/S\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2155\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3489, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6123\",\"code\":\"2156\",\"name\":\"EVERSHEEN CREAM\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2156\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3490, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6124\",\"code\":\"2157\",\"name\":\"QUEEN ELIZ CREAM M\\/S\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2157\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-eliz-cream-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3491, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6125\",\"code\":\"2158\",\"name\":\"QUEEN CREAM S\\/S\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2158\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-cream-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3492, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6126\",\"code\":\"2159\",\"name\":\"QUEEN LOTIN M\\/S\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2159\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotin-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3493, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6127\",\"code\":\"2160\",\"name\":\"QUEEN LOTION M\\/S\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2160\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotion-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3494, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6128\",\"code\":\"2161\",\"name\":\"QUEEN LOTION S\\/S\",\"unit\":\"1\",\"cost\":\"0.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2161\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotion-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3495, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6129\",\"code\":\"2162\",\"name\":\"E PANOL\",\"unit\":\"1\",\"cost\":\"0.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2162\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"e-panol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3496, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6130\",\"code\":\"2163\",\"name\":\"ZUBES TAB\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2163\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3497, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6131\",\"code\":\"2164\",\"name\":\"MENTOS TAB\",\"unit\":\"1\",\"cost\":\"37.4100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2164\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3498, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6132\",\"code\":\"2165\",\"name\":\"CHEWETTE\",\"unit\":\"1\",\"cost\":\"2.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2165\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chewette\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3499, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6133\",\"code\":\"2166\",\"name\":\"INFACOL 55ML\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"infacol-55ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3500, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6134\",\"code\":\"2167\",\"name\":\"TYLENOL EXTRA\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2167\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol-extra1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3501, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6135\",\"code\":\"2168\",\"name\":\"JS SANITIZER\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2168\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3502, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6136\",\"code\":\"2169\",\"name\":\"SANITIZER BS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2169\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3503, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6137\",\"code\":\"2170\",\"name\":\"SANITIZER\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2170\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3504, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6138\",\"code\":\"2171\",\"name\":\"SIVODERM SANITIZER\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2171\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3505, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6139\",\"code\":\"2172\",\"name\":\"KLEANZ SS\",\"unit\":\"1\",\"cost\":\"27.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2172\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleanz-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3506, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6140\",\"code\":\"2173\",\"name\":\"CAREX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2173\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3507, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6141\",\"code\":\"2174\",\"name\":\"CYPRODINE SRP\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2174\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3508, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6142\",\"code\":\"2175\",\"name\":\"SHOE POLISH\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2175\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shoe-polish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3509, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6143\",\"code\":\"2176\",\"name\":\"RAZOR MEN\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2176\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"razor-men\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3510, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6144\",\"code\":\"2177\",\"name\":\"RAZOR M&W\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2177\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"razor-mw\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3511, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6145\",\"code\":\"2178\",\"name\":\"RAZ MW S\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2178\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"raz-mw-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3512, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6146\",\"code\":\"2179\",\"name\":\"FACIAL ORGANIC COTTON\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2179\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"facial-organic-cotton\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3513, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6147\",\"code\":\"2180\",\"name\":\"ZIGZAG COTTON\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2180\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zigzag-cotton\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3514, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6148\",\"code\":\"2181\",\"name\":\"STOPCOUGH COD\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2181\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopcough-cod\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3515, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6149\",\"code\":\"2182\",\"name\":\"FACIAL SQUEEZE\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"facial-squeeze\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3516, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6150\",\"code\":\"2183\",\"name\":\"CLAVU-DOR 1000\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2183\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clavu-dor-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3517, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6151\",\"code\":\"2184\",\"name\":\"CLAVU-DOR 625\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2184\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clavu-dor-625\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3518, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6152\",\"code\":\"2185\",\"name\":\"MOSQUITOE BANGLES\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2185\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mosquitoe-bangles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3519, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6153\",\"code\":\"2186\",\"name\":\"GUCIFER 750\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2186\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gucifer-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3520, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6154\",\"code\":\"2187\",\"name\":\"ZOATERM DS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2187\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zoaterm-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3521, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6155\",\"code\":\"2188\",\"name\":\"ZOATERM FORTE\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2188\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zoaterm-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3522, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6156\",\"code\":\"2189\",\"name\":\"DUO COTECSON\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2189\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"duo-cotecson\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3523, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6157\",\"code\":\"2190\",\"name\":\"COTTON BUD\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2190\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3524, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6158\",\"code\":\"2191\",\"name\":\"INTERLECTOL\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2191\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"interlectol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3525, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6159\",\"code\":\"2192\",\"name\":\"FACIAL MASK\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2192\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"facial-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3526, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6160\",\"code\":\"2193\",\"name\":\"LOSACAR 100\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2193\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losacar-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3527, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6161\",\"code\":\"2194\",\"name\":\"DINAC 75\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2194\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dinac-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3528, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6162\",\"code\":\"2195\",\"name\":\"CLARITROMYCIN  500\",\"unit\":\"1\",\"cost\":\"6.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2195\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"claritromycin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3529, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6163\",\"code\":\"2196\",\"name\":\"AZILEX 250\",\"unit\":\"1\",\"cost\":\"4.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2196\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3530, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6164\",\"code\":\"2197\",\"name\":\"ATENOLOL 50\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2197\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atenolol-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3531, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6165\",\"code\":\"2198\",\"name\":\"ATENOLOL 100\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2198\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atenolol-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3532, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6166\",\"code\":\"2199\",\"name\":\"POWER HOUSE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2199\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"power-house\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3533, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6167\",\"code\":\"2200\",\"name\":\"JS S\\/S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2200\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3534, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6168\",\"code\":\"2201\",\"name\":\"JS B\\/S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2201\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3535, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6169\",\"code\":\"2202\",\"name\":\"FREE STEP\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2202\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"free-step\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3536, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6170\",\"code\":\"2203\",\"name\":\"LOVILEA\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2203\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lovilea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3537, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6171\",\"code\":\"2204\",\"name\":\"JS B\\/S\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2204\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"js-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3538, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6172\",\"code\":\"2205\",\"name\":\"KLEANZ 100ML\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2205\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleanz-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3539, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6173\",\"code\":\"2206\",\"name\":\"CAREX S\\/S\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2206\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carex-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3540, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6174\",\"code\":\"2207\",\"name\":\"DAS VIT C\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2207\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"das-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3541, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6175\",\"code\":\"2208\",\"name\":\"GLOVES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2208\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gloves\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3542, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6176\",\"code\":\"2209\",\"name\":\"HAND CREAM\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2209\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hand-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3543, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6177\",\"code\":\"2210\",\"name\":\"SANITIZER BB\\/S\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2210\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3544, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6178\",\"code\":\"2211\",\"name\":\"COTTON 100G\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2211\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3545, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6179\",\"code\":\"2212\",\"name\":\"BELLS OLIVE B\\/S\",\"unit\":\"1\",\"cost\":\"18.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2212\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-olive-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3546, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6180\",\"code\":\"2213\",\"name\":\"DEXATROL OINT\",\"unit\":\"1\",\"cost\":\"24.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2213\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3547, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6181\",\"code\":\"2214\",\"name\":\"MENOPACE\",\"unit\":\"1\",\"cost\":\"1.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2214\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menopace\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3548, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6182\",\"code\":\"2215\",\"name\":\"FLOTAC 75\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2215\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flotac-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3549, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6183\",\"code\":\"2216\",\"name\":\"OMEPRAZOLE HYCID\",\"unit\":\"1\",\"cost\":\"11.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2216\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprazole-hycid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3550, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6184\",\"code\":\"2217\",\"name\":\"SALICYLIC ACID\",\"unit\":\"1\",\"cost\":\"73.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2217\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salicylic-acid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3551, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6185\",\"code\":\"2218\",\"name\":\"ITCHTAMOL\",\"unit\":\"1\",\"cost\":\"7.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2218\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"itchtamol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3552, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6186\",\"code\":\"2219\",\"name\":\"NORVASC 10\",\"unit\":\"1\",\"cost\":\"10.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2219\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"norvasc-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3553, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6187\",\"code\":\"2220\",\"name\":\"CANDIDERM CREAM\",\"unit\":\"1\",\"cost\":\"7.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2220\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3554, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6188\",\"code\":\"2221\",\"name\":\"ADUTWUMUA CAPS\",\"unit\":\"1\",\"cost\":\"4.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2221\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adutwumua-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3555, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6189\",\"code\":\"2222\",\"name\":\"LIVERPLEX -B ADULT\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2222\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3556, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6190\",\"code\":\"2223\",\"name\":\"FUROSEMIDE 40 TEVA\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2223\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-40-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3557, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6191\",\"code\":\"2224\",\"name\":\"POLYFER 200ML\",\"unit\":\"1\",\"cost\":\"8.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2224\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polyfer-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3558, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6192\",\"code\":\"2225\",\"name\":\"CABOZAP ADULT\",\"unit\":\"1\",\"cost\":\"3.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2225\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cabozap-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3559, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6193\",\"code\":\"2226\",\"name\":\"CANDID V-3\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2226\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-v-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3560, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6194\",\"code\":\"2227\",\"name\":\"ABC VIT C SRP\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2227\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abc-vit-c-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3561, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6195\",\"code\":\"2228\",\"name\":\"ASCORBIN SRP\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2228\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascorbin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3562, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6196\",\"code\":\"2229\",\"name\":\"PREMECO CAPS\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2229\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"premeco-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3563, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6197\",\"code\":\"2230\",\"name\":\"STRONG BCO\",\"unit\":\"1\",\"cost\":\"22.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2230\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"strong-bco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3564, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6198\",\"code\":\"2231\",\"name\":\"SILVERBIRD\",\"unit\":\"1\",\"cost\":\"12.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2231\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"silverbird\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3565, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6199\",\"code\":\"2232\",\"name\":\"HOT WAT BOT COVERED\",\"unit\":\"1\",\"cost\":\"10.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2232\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wat-bot-covered\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3566, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6200\",\"code\":\"2233\",\"name\":\"HOT WAT BOT\",\"unit\":\"1\",\"cost\":\"13.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2233\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-wat-bot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3567, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6201\",\"code\":\"2234\",\"name\":\"OMEGA-H3 CAPS\",\"unit\":\"1\",\"cost\":\"7.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2234\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-h3-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3568, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6202\",\"code\":\"2235\",\"name\":\"DREZ SOLN 100ML\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2235\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"drez-soln-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3569, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6203\",\"code\":\"2236\",\"name\":\"AMITRIPTLINE 25MG\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2236\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amitriptline-25mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3570, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6204\",\"code\":\"2237\",\"name\":\"SOLUBLE VIT C\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2237\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3571, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6205\",\"code\":\"2238\",\"name\":\"YAZZ BRUSH\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2238\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yazz-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3572, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6206\",\"code\":\"2239\",\"name\":\"DETTOL SOAP\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2239\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dettol-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3573, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6207\",\"code\":\"2240\",\"name\":\"CAMEL SOAP\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camel-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3574, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6208\",\"code\":\"2241\",\"name\":\"SHOWER ROLL ON\",\"unit\":\"1\",\"cost\":\"4.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2241\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shower-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3575, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6209\",\"code\":\"2242\",\"name\":\"SURE ROLL ON\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2242\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sure-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3576, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6210\",\"code\":\"2243\",\"name\":\"AMLODIPINE 10 TEVA\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2243\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlodipine-10-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3577, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6211\",\"code\":\"2244\",\"name\":\"COLGATE BRUSH DOUBLE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2244\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-brush-double\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3578, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6212\",\"code\":\"2245\",\"name\":\"COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"7.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2245\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3579, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6213\",\"code\":\"2246\",\"name\":\"PEPSODENT 123\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2246\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-123\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3580, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6214\",\"code\":\"2247\",\"name\":\"AMOXIL 500\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2247\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3581, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6215\",\"code\":\"2248\",\"name\":\"GOFEX\",\"unit\":\"1\",\"cost\":\"32.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2248\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gofex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3582, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6216\",\"code\":\"2249\",\"name\":\"OLFEN-100 CAPS\",\"unit\":\"1\",\"cost\":\"27.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2249\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olfen-100-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3583, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6217\",\"code\":\"2250\",\"name\":\"TENTEX ROYAL\",\"unit\":\"1\",\"cost\":\"43.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2250\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tentex-royal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3584, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6218\",\"code\":\"2251\",\"name\":\"CONFIDO\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2251\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"confido\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3585, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6219\",\"code\":\"2252\",\"name\":\"CORSODYL B\\/B 500ML\",\"unit\":\"1\",\"cost\":\"31.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2252\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"corsodyl-bb-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3586, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6220\",\"code\":\"2253\",\"name\":\"GUDAPET CAPS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2253\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3587, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6221\",\"code\":\"2254\",\"name\":\"LARIAM\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lariam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3588, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6222\",\"code\":\"2255\",\"name\":\"RUBBING ALC S\\/S\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2255\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-alc-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3589, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6223\",\"code\":\"2256\",\"name\":\"AMLODIPINE 5MG TEVA\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlodipine-5mg-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3590, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6224\",\"code\":\"2257\",\"name\":\"PANADOL ADVANCE\",\"unit\":\"1\",\"cost\":\"20.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2257\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panadol-advance\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3591, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6225\",\"code\":\"2258\",\"name\":\"DF118\",\"unit\":\"1\",\"cost\":\"1.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2258\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"df118\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3592, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6226\",\"code\":\"2259\",\"name\":\"SUDOCREAM 60G\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2259\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudocream-60g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3593, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6227\",\"code\":\"2260\",\"name\":\"ROBAXIN-750\",\"unit\":\"1\",\"cost\":\"23.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2260\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"robaxin-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3594, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6228\",\"code\":\"2261\",\"name\":\"APTIZOOM\",\"unit\":\"1\",\"cost\":\"43.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2261\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aptizoom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3595, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6229\",\"code\":\"2262\",\"name\":\"DARKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"8.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2262\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"darktacort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3596, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6230\",\"code\":\"2263\",\"name\":\"CLARYTIN SRP\",\"unit\":\"1\",\"cost\":\"5.5100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2263\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clarytin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3597, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6231\",\"code\":\"2264\",\"name\":\"LOSAR DENK 50\",\"unit\":\"1\",\"cost\":\"18.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2264\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losar-denk-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3598, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6232\",\"code\":\"2265\",\"name\":\"NEXCOFER CAPS\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexcofer-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3599, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6233\",\"code\":\"2266\",\"name\":\"WELLKID TAB\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2266\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellkid-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3600, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6234\",\"code\":\"2267\",\"name\":\"NIVEA FAIRNESS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2267\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-fairness\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3601, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6235\",\"code\":\"2268\",\"name\":\"NIVEA\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2268\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3602, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6236\",\"code\":\"2269\",\"name\":\"NIVEA CLEANSER\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2269\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-cleanser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3603, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6237\",\"code\":\"2270\",\"name\":\"NIVEA ROLL ON\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2270\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3604, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6238\",\"code\":\"2271\",\"name\":\"AFTER SHAVE\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"after-shave\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3605, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6239\",\"code\":\"2272\",\"name\":\"NIVEA SPRAY\",\"unit\":\"1\",\"cost\":\"4.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2272\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3606, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6240\",\"code\":\"2273\",\"name\":\"NIVEA INVISIBLE ROLL ON\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2273\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-invisible-roll-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3607, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6241\",\"code\":\"2274\",\"name\":\"GLUCORANGE\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2274\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucorange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3608, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6242\",\"code\":\"2275\",\"name\":\"SELEVITE\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2275\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3609, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6243\",\"code\":\"2276\",\"name\":\"NIVEA SHOWER GEL B\\/S\",\"unit\":\"1\",\"cost\":\"11.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2276\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-shower-gel-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3610, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6244\",\"code\":\"2277\",\"name\":\"NIVEA SHOWER S\\/S\",\"unit\":\"1\",\"cost\":\"13.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2277\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-shower-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3611, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6245\",\"code\":\"2278\",\"name\":\"IVY,S SANITIZER\",\"unit\":\"1\",\"cost\":\"3.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ivys-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3612, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6246\",\"code\":\"2279\",\"name\":\"IMBOOST\",\"unit\":\"1\",\"cost\":\"6.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imboost1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3613, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6247\",\"code\":\"2280\",\"name\":\"LEENA CAPS\",\"unit\":\"1\",\"cost\":\"0.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leena-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3614, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6248\",\"code\":\"2281\",\"name\":\"LEENA SRP\",\"unit\":\"1\",\"cost\":\"4.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leena-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3615, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6249\",\"code\":\"2282\",\"name\":\"GLIBENIL TAB\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2282\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glibenil-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3616, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6250\",\"code\":\"2283\",\"name\":\"BUSCOLEX\",\"unit\":\"1\",\"cost\":\"38.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"buscolex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3617, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6251\",\"code\":\"2284\",\"name\":\"NEXIUM 40 28S\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2284\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexium-40-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3618, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6252\",\"code\":\"2285\",\"name\":\"DETOL 750MLS\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2285\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-750mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3619, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6253\",\"code\":\"2286\",\"name\":\"DETOL 500ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3620, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6254\",\"code\":\"2287\",\"name\":\"DETOL 165ML\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2287\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-165ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3621, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6255\",\"code\":\"2288\",\"name\":\"DETOL 7MLS\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-7mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3622, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6256\",\"code\":\"2289\",\"name\":\"SAVLON 125\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-1251\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3623, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6257\",\"code\":\"2290\",\"name\":\"SAVLON 750ML\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2290\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3624, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6258\",\"code\":\"2291\",\"name\":\"PREETY LADY PAD\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2291\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"preety-lady-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3625, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6259\",\"code\":\"2292\",\"name\":\"TENDRINA LOTN B\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-lotn-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3626, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6260\",\"code\":\"2293\",\"name\":\"TENDRINA LTN S\\/S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-ltn-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3627, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6261\",\"code\":\"2294\",\"name\":\"TENDRINA CREAM\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2294\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3628, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6262\",\"code\":\"2295\",\"name\":\"TENDRINA CREAMS\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2295\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tendrina-creamss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3629, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6263\",\"code\":\"2296\",\"name\":\"QUEEN ELIZ BBS\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2296\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-eliz-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3630, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6264\",\"code\":\"2297\",\"name\":\"EVERSHEEN LTIN BS\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2297\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-ltin-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3631, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6265\",\"code\":\"2298\",\"name\":\"EVERSHEEN LTN MS\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2298\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-ltn-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3632, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6266\",\"code\":\"2299\",\"name\":\"EVERSHEEN LTN SS\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2299\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-ltn-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3633, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6267\",\"code\":\"2300\",\"name\":\"DAPREX CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daprex-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3634, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6268\",\"code\":\"2301\",\"name\":\"RUBBIN ALC 500ML\",\"unit\":\"1\",\"cost\":\"12.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2301\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rubbin-alc-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3635, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6269\",\"code\":\"2302\",\"name\":\"MAGNESIUM TAB\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magnesium-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3636, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6270\",\"code\":\"2303\",\"name\":\"EFFV MULTIVITAMIN\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"effv-multivitamin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3637, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6271\",\"code\":\"2304\",\"name\":\"P TEST KIT\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2304\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"p-test-kit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3638, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6272\",\"code\":\"2305\",\"name\":\"AIDKIT\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2305\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aidkit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3639, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6273\",\"code\":\"2306\",\"name\":\"G-ABZOLE\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2306\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"g-abzole\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3640, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6274\",\"code\":\"2307\",\"name\":\"HONEY 500ML\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3641, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6275\",\"code\":\"2308\",\"name\":\"HONEY 250\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2308\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3642, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6276\",\"code\":\"2309\",\"name\":\"DENTAL FLOSS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2309\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dental-floss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3643, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6277\",\"code\":\"2310\",\"name\":\"GINGER POWDER\",\"unit\":\"1\",\"cost\":\"8.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2310\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginger-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3644, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6278\",\"code\":\"2311\",\"name\":\"MOODS COND\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2311\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"moods-cond\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3645, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6279\",\"code\":\"2312\",\"name\":\"PRAZIQUANTEL\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2312\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"praziquantel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3646, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6280\",\"code\":\"2313\",\"name\":\"FACE MASK\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3647, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6281\",\"code\":\"2314\",\"name\":\"DUROL 300ML\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2314\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durol-300ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3648, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6282\",\"code\":\"2315\",\"name\":\"DIAZEPAM 10MG\",\"unit\":\"1\",\"cost\":\"0.9700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2315\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diazepam-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3649, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6283\",\"code\":\"2316\",\"name\":\"NIVEA FAIRNESS\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2316\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-fairness\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3650, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6284\",\"code\":\"2317\",\"name\":\"IBUCAP\",\"unit\":\"1\",\"cost\":\"44.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2317\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3651, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6285\",\"code\":\"2318\",\"name\":\"LUCAZADE CAN\",\"unit\":\"1\",\"cost\":\"35.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2318\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucazade-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3652, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6286\",\"code\":\"2319\",\"name\":\"CARDIOACE PLUS\",\"unit\":\"1\",\"cost\":\"7.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2319\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3653, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6287\",\"code\":\"2320\",\"name\":\"HERBAL SLIMMING TEA\",\"unit\":\"1\",\"cost\":\"43.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-slimming-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3654, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6288\",\"code\":\"2321\",\"name\":\"CITY TONIC\",\"unit\":\"1\",\"cost\":\"23.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2321\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"city-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3655, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6289\",\"code\":\"2322\",\"name\":\"VIT B1\",\"unit\":\"1\",\"cost\":\"28.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3656, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6290\",\"code\":\"2323\",\"name\":\"VIT B6\",\"unit\":\"1\",\"cost\":\"74.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2323\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3657, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6291\",\"code\":\"2324\",\"name\":\"SAMOCID\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samocid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3658, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6292\",\"code\":\"2325\",\"name\":\"NEO MEDROL\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2325\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-medrol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3659, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6293\",\"code\":\"2326\",\"name\":\"LIQUID PARRAFIN\",\"unit\":\"1\",\"cost\":\"9.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liquid-parrafin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3660, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6294\",\"code\":\"2327\",\"name\":\"CYFEN TAB\",\"unit\":\"1\",\"cost\":\"2.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cyfen-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3661, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6295\",\"code\":\"2328\",\"name\":\"CYFEN SRP\",\"unit\":\"1\",\"cost\":\"43.5700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cyfen-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3662, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6296\",\"code\":\"2329\",\"name\":\"C-PHENAMIN SRP\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2329\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"c-phenamin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3663, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6297\",\"code\":\"2330\",\"name\":\"OMEGAH H3 LIQUID\",\"unit\":\"1\",\"cost\":\"42.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2330\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omegah-h3-liquid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3664, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6298\",\"code\":\"2331\",\"name\":\"LUEX ADULT CHESTY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-adult-chesty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3665, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6299\",\"code\":\"2332\",\"name\":\"VISIONACE PLUS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2332\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3666, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6300\",\"code\":\"2333\",\"name\":\"COAFS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2333\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coafs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3667, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6301\",\"code\":\"2334\",\"name\":\"ALPHA VIT C\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3668, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6302\",\"code\":\"2335\",\"name\":\"CHOCOLATE M\\/S\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2335\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3669, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6303\",\"code\":\"2336\",\"name\":\"ENTRAMOL PLUS\",\"unit\":\"1\",\"cost\":\"43.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2336\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3670, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6304\",\"code\":\"2337\",\"name\":\"COMBACT-N\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2337\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"combact-n\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3671, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6305\",\"code\":\"2338\",\"name\":\"LACTULOSE 500ML\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2338\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lactulose-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3672, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6306\",\"code\":\"2339\",\"name\":\"JAGUAR CREAM\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2339\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jaguar-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3673, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6307\",\"code\":\"2340\",\"name\":\"BIOVID FORTE\",\"unit\":\"1\",\"cost\":\"34.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2340\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"biovid-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3674, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6308\",\"code\":\"2341\",\"name\":\"DR CHRIS OMEGA\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2341\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dr-chris-omega\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3675, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6309\",\"code\":\"2342\",\"name\":\"TCP\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3676, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6310\",\"code\":\"2343\",\"name\":\"VALUPAC BCO\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2343\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"valupac-bco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3677, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6311\",\"code\":\"2344\",\"name\":\"HAIRFOLLIC\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2344\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hairfollic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3678, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6312\",\"code\":\"2345\",\"name\":\"COLGATE CHARC\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-charc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3679, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6313\",\"code\":\"2346\",\"name\":\"ASCOBIN TAB\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascobin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3680, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6314\",\"code\":\"2347\",\"name\":\"PROSTAT 60\",\"unit\":\"1\",\"cost\":\"6.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2347\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-601\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3681, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6315\",\"code\":\"2348\",\"name\":\"PROSLUV CAPS\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2348\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3682, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6316\",\"code\":\"2349\",\"name\":\"GASTRONE SUSP\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2349\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastrone-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3683, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6317\",\"code\":\"2350\",\"name\":\"ALKA SRP\",\"unit\":\"1\",\"cost\":\"44.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2350\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alka-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3684, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6318\",\"code\":\"2351\",\"name\":\"ALLOPURINOL 300\",\"unit\":\"1\",\"cost\":\"29.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2351\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"allopurinol-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3685, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6319\",\"code\":\"2352\",\"name\":\"NYSTATIN ORAL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2352\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nystatin-oral\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3686, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6320\",\"code\":\"2353\",\"name\":\"LIV 52 TAB\",\"unit\":\"1\",\"cost\":\"10.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2353\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liv-52-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3687, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6321\",\"code\":\"2354\",\"name\":\"VITAFOL\",\"unit\":\"1\",\"cost\":\"27.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2354\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3688, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6322\",\"code\":\"2355\",\"name\":\"CARVEDILOL 12.5 EXETER\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2355\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carvedilol-125-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3689, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6323\",\"code\":\"2356\",\"name\":\"OLIGOCARE\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2356\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oligocare1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3690, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6324\",\"code\":\"2357\",\"name\":\"SWEET PAMPERS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2357\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweet-pampers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3691, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6325\",\"code\":\"2358\",\"name\":\"ROMA SPRAY\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2358\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"roma-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3692, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6326\",\"code\":\"2359\",\"name\":\"OUTSPRAY\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2359\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"outspray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3693, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6327\",\"code\":\"2360\",\"name\":\"~COLGATE BRUSH\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2360\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colgate-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3694, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6328\",\"code\":\"2361\",\"name\":\"TISSUE B\\\\S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2361\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tissue-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3695, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6329\",\"code\":\"2362\",\"name\":\"SMILE BABY\",\"unit\":\"1\",\"cost\":\"2.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2362\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smile-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3696, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6330\",\"code\":\"2363\",\"name\":\"HYDROCT CRAEM L\\\\S\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2363\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydroct-craem-ls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3697, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6331\",\"code\":\"2364\",\"name\":\"GEBEDOL PLUS\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2364\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gebedol-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3698, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6332\",\"code\":\"2365\",\"name\":\"ROOTER LIFE\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2365\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-life1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3699, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6333\",\"code\":\"2366\",\"name\":\"FEROVITA SRP\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2366\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferovita-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3700, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6334\",\"code\":\"2367\",\"name\":\"SICKAZINK\",\"unit\":\"1\",\"cost\":\"11.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2367\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sickazink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3701, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6335\",\"code\":\"2368\",\"name\":\"ABYVITA SRP\",\"unit\":\"1\",\"cost\":\"6.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2368\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abyvita-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3702, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6336\",\"code\":\"2369\",\"name\":\"FEROLLEX SRP\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2369\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferollex-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3703, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6337\",\"code\":\"2370\",\"name\":\"OROFER\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2370\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orofer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3704, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6338\",\"code\":\"2371\",\"name\":\"KLIRE ANTACID\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2371\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"klire-antacid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3705, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6339\",\"code\":\"2372\",\"name\":\"HEPTOLIFE\",\"unit\":\"1\",\"cost\":\"4.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2372\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"heptolife\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3706, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6340\",\"code\":\"2373\",\"name\":\"MV PRO\",\"unit\":\"1\",\"cost\":\"5.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2373\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mv-pro\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3707, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6341\",\"code\":\"2374\",\"name\":\"SHALATERM TAB\",\"unit\":\"1\",\"cost\":\"5.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2374\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalaterm-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3708, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6342\",\"code\":\"2375\",\"name\":\"SHALATERM SUSP\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2375\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"shalaterm-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3709, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6343\",\"code\":\"2376\",\"name\":\"CARTEF DS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2376\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3710, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6344\",\"code\":\"2377\",\"name\":\"CARTEF SUSP\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2377\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3711, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6345\",\"code\":\"2378\",\"name\":\"INTAVITA\",\"unit\":\"1\",\"cost\":\"0.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2378\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"intavita\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3712, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6346\",\"code\":\"2379\",\"name\":\"ESKADOL\",\"unit\":\"1\",\"cost\":\"9.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2379\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eskadol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3713, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6347\",\"code\":\"2380\",\"name\":\"RONADOL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2380\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronadol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3714, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6348\",\"code\":\"2381\",\"name\":\"DUROMINE\",\"unit\":\"1\",\"cost\":\"1.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2381\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"duromine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3715, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6349\",\"code\":\"2382\",\"name\":\"GARLIC PEARLS OSONS\",\"unit\":\"1\",\"cost\":\"9.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2382\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"garlic-pearls-osons\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3716, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6350\",\"code\":\"2383\",\"name\":\"DICLONOVA PLUS\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2383\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclonova-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3717, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6351\",\"code\":\"2384\",\"name\":\"BELLS HYDROGEN\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2384\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-hydrogen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3718, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6352\",\"code\":\"2385\",\"name\":\"MYCOLEX POWDER\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2385\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-powder1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3719, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6353\",\"code\":\"2386\",\"name\":\"CELGIVITY\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2386\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"celgivity\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3720, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6354\",\"code\":\"2387\",\"name\":\"FEROGLOBIN PLUS\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2387\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3721, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6355\",\"code\":\"2388\",\"name\":\"VIREST CREAM\",\"unit\":\"1\",\"cost\":\"52.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2388\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"virest-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3722, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6356\",\"code\":\"2389\",\"name\":\"LIPSORE CREAM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2389\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipsore-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3723, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6357\",\"code\":\"2390\",\"name\":\"WELLMAN 70\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2390\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellman-70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3724, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6358\",\"code\":\"2391\",\"name\":\"MAGIC SHAVIN POWDER\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2391\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-shavin-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3725, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6359\",\"code\":\"2392\",\"name\":\"MAGIC SHAVING CREAM\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2392\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-shaving-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3726, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6360\",\"code\":\"2393\",\"name\":\"NILOL TAB\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2393\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nilol-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3727, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6361\",\"code\":\"2394\",\"name\":\"VASELINE CREAM\",\"unit\":\"1\",\"cost\":\"0.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2394\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaseline-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3728, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6362\",\"code\":\"2395\",\"name\":\"GIVING SET\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2395\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"giving-set\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3729, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6363\",\"code\":\"2396\",\"name\":\"FASTMELT\",\"unit\":\"1\",\"cost\":\"23.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2396\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fastmelt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3730, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6364\",\"code\":\"2397\",\"name\":\"AMOXIL SUSP UKK\",\"unit\":\"1\",\"cost\":\"12.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2397\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-susp-ukk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3731, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6365\",\"code\":\"2398\",\"name\":\"JRA B\'S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2398\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3732, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6366\",\"code\":\"2399\",\"name\":\"NIVEA SPRAY INVISIBLE\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2399\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-spray-invisible\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3733, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6367\",\"code\":\"2400\",\"name\":\"ZIPFERON SRP\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2400\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zipferon-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3734, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6368\",\"code\":\"2401\",\"name\":\"PIRITON ORG SRP\",\"unit\":\"1\",\"cost\":\"31.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2401\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-org-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3735, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6369\",\"code\":\"2402\",\"name\":\"BEST VIT C 1000\",\"unit\":\"1\",\"cost\":\"2.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2402\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"best-vit-c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3736, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6370\",\"code\":\"2403\",\"name\":\"WOODWOARDS\",\"unit\":\"1\",\"cost\":\"8.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2403\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"woodwoards\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3737, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6371\",\"code\":\"2404\",\"name\":\"FERTILO FORT\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2404\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fertilo-fort\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3738, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6372\",\"code\":\"2405\",\"name\":\"CEFIXIME TAB\",\"unit\":\"1\",\"cost\":\"7.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2405\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefixime-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3739, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6373\",\"code\":\"2406\",\"name\":\"VIT E 400 VALUPAK\",\"unit\":\"1\",\"cost\":\"9.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2406\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-400-valupak\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3740, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6374\",\"code\":\"2407\",\"name\":\"FOLIC 30S VAL\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2407\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30s-val\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3741, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6375\",\"code\":\"2408\",\"name\":\"FOLIC ACID 90S VALPK\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2408\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-90s-valpk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3742, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6376\",\"code\":\"2409\",\"name\":\"EVENING PRIMROSE\",\"unit\":\"1\",\"cost\":\"30.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2409\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"evening-primrose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3743, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6377\",\"code\":\"2410\",\"name\":\"NUROFEN SRP\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2410\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nurofen-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3744, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6378\",\"code\":\"2411\",\"name\":\"SUDAFED TAB\",\"unit\":\"1\",\"cost\":\"66.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2411\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudafed-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3745, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6379\",\"code\":\"2412\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"35.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2412\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bumper-cd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3746, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6380\",\"code\":\"2413\",\"name\":\"ORELOX SUSP\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2413\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3747, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6381\",\"code\":\"2414\",\"name\":\"OPTREX EYE DROP\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2414\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3748, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6382\",\"code\":\"2415\",\"name\":\"RAMIPRIL CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2415\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ramipril-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3749, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6383\",\"code\":\"2416\",\"name\":\"TINY VITE DROP\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2416\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3750, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6384\",\"code\":\"2417\",\"name\":\"ZENTEL SUSP\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2417\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zentel-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3751, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6385\",\"code\":\"2418\",\"name\":\"DIPROSIN\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2418\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diprosin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3752, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6386\",\"code\":\"2419\",\"name\":\"BECHAMS ALL IN ONE\",\"unit\":\"1\",\"cost\":\"55.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2419\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bechams-all-in-one\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3753, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6387\",\"code\":\"2420\",\"name\":\"JARIFAN CAPS\",\"unit\":\"1\",\"cost\":\"22.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2420\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3754, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6388\",\"code\":\"2421\",\"name\":\"WELLWOMAN 50 PLUS\",\"unit\":\"1\",\"cost\":\"47.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2421\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3755, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6389\",\"code\":\"2422\",\"name\":\"PEPTO BISMOL S\\/S\",\"unit\":\"1\",\"cost\":\"5.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2422\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3756, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6390\",\"code\":\"2423\",\"name\":\"SPANISH FLY\",\"unit\":\"1\",\"cost\":\"1.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2423\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spanish-fly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3757, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6391\",\"code\":\"2424\",\"name\":\"LISINOPRIL 20 TEVA\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2424\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-20-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3758, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6392\",\"code\":\"2425\",\"name\":\"MEBENDA\",\"unit\":\"1\",\"cost\":\"66.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2425\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mebenda\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3759, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6393\",\"code\":\"2426\",\"name\":\"BUMPER CD\",\"unit\":\"1\",\"cost\":\"35.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2426\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bumper-cd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3760, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6394\",\"code\":\"2427\",\"name\":\"ORELOX SUSP\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2427\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orelox-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3761, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6395\",\"code\":\"2428\",\"name\":\"OPTREX EYE DROP\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2428\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3762, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6396\",\"code\":\"2429\",\"name\":\"PIKOVIT SRP\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2429\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pikovit-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3763, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6397\",\"code\":\"2430\",\"name\":\"SPANISH FLY\",\"unit\":\"1\",\"cost\":\"1.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2430\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spanish-fly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3764, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6398\",\"code\":\"2431\",\"name\":\"LOSATARN TEVA 50\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2431\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losatarn-teva-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3765, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6399\",\"code\":\"2432\",\"name\":\"AVOMINE TAB\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2432\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"avomine-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3766, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6400\",\"code\":\"2433\",\"name\":\"DIGOXIN 125 ALMUS\",\"unit\":\"1\",\"cost\":\"1.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2433\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digoxin-125-almus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3767, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6401\",\"code\":\"2434\",\"name\":\"MEDICAL ICE COOL\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2434\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medical-ice-cool\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3768, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6402\",\"code\":\"2435\",\"name\":\"IBUCAP SHALINA S\\/S\",\"unit\":\"1\",\"cost\":\"28.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2435\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap-shalina-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3769, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6403\",\"code\":\"2436\",\"name\":\"ALDOMET 250\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2436\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aldomet-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3770, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6404\",\"code\":\"2437\",\"name\":\"AZOMAX SUSP\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2437\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azomax-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3771, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6405\",\"code\":\"2438\",\"name\":\"FOLIC ACID CRESCENT 28S\",\"unit\":\"1\",\"cost\":\"17.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2438\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-crescent-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3772, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6406\",\"code\":\"2439\",\"name\":\"DAFLON 500\",\"unit\":\"1\",\"cost\":\"4.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2439\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3773, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6407\",\"code\":\"2440\",\"name\":\"SALBUTAMOL CFC INH\",\"unit\":\"1\",\"cost\":\"7.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2440\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salbutamol-cfc-inh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3774, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6408\",\"code\":\"2441\",\"name\":\"AMLO-DENK 5MG\",\"unit\":\"1\",\"cost\":\"56.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2441\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlo-denk-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3775, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6409\",\"code\":\"2442\",\"name\":\"AMLO DENK 10MG\",\"unit\":\"1\",\"cost\":\"4.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2442\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amlo-denk-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3776, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6410\",\"code\":\"2443\",\"name\":\"DAYNURSE LIQUID\",\"unit\":\"1\",\"cost\":\"48.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2443\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daynurse-liquid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3777, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6411\",\"code\":\"2444\",\"name\":\"PENFLOX SUSP\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2444\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"penflox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3778, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6412\",\"code\":\"2445\",\"name\":\"JOINTCARE S\\/SEAS\",\"unit\":\"1\",\"cost\":\"18.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2445\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jointcare-sseas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3779, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6413\",\"code\":\"2446\",\"name\":\"HEALTHY WOMAN CAPS\",\"unit\":\"1\",\"cost\":\"52.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2446\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthy-woman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3780, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6414\",\"code\":\"2447\",\"name\":\"HEALTHYLINK HAIR,NAILS\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2447\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthylink-hairnails\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3781, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6415\",\"code\":\"2448\",\"name\":\"S SEAS COD LIV 60S\",\"unit\":\"1\",\"cost\":\"16.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2448\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"s-seas-cod-liv-60s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3782, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6416\",\"code\":\"2449\",\"name\":\"LORATIDINE 10 TEVA\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2449\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"loratidine-10-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3783, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6417\",\"code\":\"2450\",\"name\":\"ADOM P-AWAY CAPS\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2450\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-p-away-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3784, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6418\",\"code\":\"2451\",\"name\":\"MASTER TEA\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2451\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"master-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3785, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6419\",\"code\":\"2452\",\"name\":\"NONI JUICE\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2452\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noni-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3786, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6420\",\"code\":\"2453\",\"name\":\"PILIEF OINT\",\"unit\":\"1\",\"cost\":\"9.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2453\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilief-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3787, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6421\",\"code\":\"2454\",\"name\":\"PILIEF TAB\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2454\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pilief-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3788, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6422\",\"code\":\"2455\",\"name\":\"SABROSSO 100 ML\",\"unit\":\"1\",\"cost\":\"32.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2455\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sabrosso-100-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3789, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6423\",\"code\":\"2456\",\"name\":\"SABROSO 250ML\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sabroso-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3790, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6424\",\"code\":\"2457\",\"name\":\"SABROSO 500ML\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2457\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sabroso-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3791, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6425\",\"code\":\"2458\",\"name\":\"X-DRIVE CAPS\",\"unit\":\"1\",\"cost\":\"2.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2458\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3792, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6426\",\"code\":\"2459\",\"name\":\"ASMADRIN\",\"unit\":\"1\",\"cost\":\"31.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2459\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"asmadrin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3793, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6427\",\"code\":\"2460\",\"name\":\"H-AID VIT E 1000IU\",\"unit\":\"1\",\"cost\":\"35.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2460\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h-aid-vit-e-1000iu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3794, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6428\",\"code\":\"2461\",\"name\":\"H-AID VIT A 5000IU\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2461\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h-aid-vit-a-5000iu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3795, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6429\",\"code\":\"2462\",\"name\":\"H-AID VIT B12\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2462\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h-aid-vit-b12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3796, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6430\",\"code\":\"2463\",\"name\":\"BLUE AID COTTON 50G\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2463\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-aid-cotton-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3797, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6431\",\"code\":\"2464\",\"name\":\"BLUE AID VASLINE GAUZE\",\"unit\":\"1\",\"cost\":\"2.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2464\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-aid-vasline-gauze\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3798, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6432\",\"code\":\"2465\",\"name\":\"EPIDERM LOTION\",\"unit\":\"1\",\"cost\":\"3.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2465\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3799, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6433\",\"code\":\"2466\",\"name\":\"BETASOL LOTION\",\"unit\":\"1\",\"cost\":\"6.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2466\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"betasol-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3800, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6434\",\"code\":\"2467\",\"name\":\"ODDYMIN CAPS\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2467\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oddymin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3801, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6435\",\"code\":\"2468\",\"name\":\"MARK -2 INH\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2468\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-inh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3802, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6436\",\"code\":\"2469\",\"name\":\"SEBAMED SOAP 150G\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2469\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-soap-150g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3803, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6437\",\"code\":\"2470\",\"name\":\"SEBAMED SOAP 100G\",\"unit\":\"1\",\"cost\":\"36.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2470\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-soap-100g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3804, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6438\",\"code\":\"2471\",\"name\":\"SEBAMED BABY LOTION\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2471\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-baby-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3805, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6439\",\"code\":\"2472\",\"name\":\"SEBAMED AA Q10 LOTION\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2472\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-aa-q10-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3806, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6440\",\"code\":\"2473\",\"name\":\"SEBAMED B MILK\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2473\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-b-milk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3807, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6441\",\"code\":\"2474\",\"name\":\"SEBAMED SU C 50+\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2474\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-su-c-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3808, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6442\",\"code\":\"2475\",\"name\":\"SEBAMED UR LO 10\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2475\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sebamed-ur-lo-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3809, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6443\",\"code\":\"2476\",\"name\":\"MADAR LIQD\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2476\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"madar-liqd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3810, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6444\",\"code\":\"2477\",\"name\":\"SOFTCARE DIAPER\",\"unit\":\"1\",\"cost\":\"54.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2477\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softcare-diaper\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3811, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6445\",\"code\":\"2478\",\"name\":\"CARBIROID\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2478\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbiroid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3812, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6446\",\"code\":\"2479\",\"name\":\"ROCEPHIN INJ 1G\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2479\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rocephin-inj-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3813, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6447\",\"code\":\"2480\",\"name\":\"AFROSTAR\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2480\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"afrostar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3814, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6448\",\"code\":\"2481\",\"name\":\"MISS PLUM\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2481\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"miss-plum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3815, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6449\",\"code\":\"2482\",\"name\":\"ACNE CLEAR\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2482\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acne-clear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3816, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6450\",\"code\":\"2483\",\"name\":\"ANACONDA\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2483\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anaconda\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3817, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6451\",\"code\":\"2484\",\"name\":\"PERFECT WHITEGEL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2484\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"perfect-whitegel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3818, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6452\",\"code\":\"2485\",\"name\":\"HAPPY FAMILY GEL\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2485\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"happy-family-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3819, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6453\",\"code\":\"2486\",\"name\":\"SURE SPAY\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2486\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sure-spay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3820, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6454\",\"code\":\"2487\",\"name\":\"STYLING GEL M\\/S\",\"unit\":\"1\",\"cost\":\"2.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2487\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"styling-gel-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3821, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6455\",\"code\":\"2488\",\"name\":\"STYLING GEL S\\/S\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2488\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"styling-gel-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3822, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6456\",\"code\":\"2489\",\"name\":\"VIP SPRAY\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2489\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vip-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3823, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6457\",\"code\":\"2490\",\"name\":\"JRA LOTION\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2490\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3824, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6458\",\"code\":\"2491\",\"name\":\"MARQUISE BLUE S\\/S\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2491\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"marquise-blue-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3825, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6459\",\"code\":\"2492\",\"name\":\"INCIDENCE SPRAY S\\/S\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2492\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"incidence-spray-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3826, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6460\",\"code\":\"2493\",\"name\":\"DAGMAR SPRAY S\\/S\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2493\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dagmar-spray-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3827, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6461\",\"code\":\"2494\",\"name\":\"CHAIRMAN S\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2494\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chairman-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3828, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6462\",\"code\":\"2495\",\"name\":\"CLINIC CLEAR LOTION\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2495\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clinic-clear-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3829, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6463\",\"code\":\"2496\",\"name\":\"JRA SHOWER GEL\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2496\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jra-shower-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3830, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6464\",\"code\":\"2497\",\"name\":\"CHAMBERS 2000\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2497\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chambers-2000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3831, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6465\",\"code\":\"2498\",\"name\":\"COLOUR ME\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2498\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colour-me\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3832, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6466\",\"code\":\"2499\",\"name\":\"BIOSKIN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2499\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bioskin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3833, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6467\",\"code\":\"2500\",\"name\":\"PARADISE POWDER\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2500\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paradise-powder1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3834, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6468\",\"code\":\"2501\",\"name\":\"SIVODERM CREAM\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2501\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3835, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6469\",\"code\":\"2502\",\"name\":\"PALMAS LOTION\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2502\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"palmas-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3836, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6470\",\"code\":\"2503\",\"name\":\"SNOWFIRE\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2503\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"snowfire\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3837, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6471\",\"code\":\"2504\",\"name\":\"ACTIVATOR S\\/S\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2504\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"activator-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3838, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6472\",\"code\":\"2505\",\"name\":\"KURL OUT\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2505\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kurl-out\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3839, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6473\",\"code\":\"2506\",\"name\":\"AFRICAN CLASS\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2506\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"african-class\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3840, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6474\",\"code\":\"2507\",\"name\":\"KLEEN CLEANSER\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2507\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleen-cleanser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3841, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6475\",\"code\":\"2508\",\"name\":\"SPORTING CREAM\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2508\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sporting-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3842, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6476\",\"code\":\"2509\",\"name\":\"TOP COUNTRY L\\/S\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2509\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-country-ls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3843, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6477\",\"code\":\"2510\",\"name\":\"TOP COUNT M\\/S\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2510\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-count-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3844, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6478\",\"code\":\"2511\",\"name\":\"TOP COUNT S\\/S\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2511\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-count-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3845, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6479\",\"code\":\"2512\",\"name\":\"BB CLEAR\",\"unit\":\"1\",\"cost\":\"1.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2512\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bb-clear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3846, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6480\",\"code\":\"2513\",\"name\":\"CHOCOLT VERY S\\/S\",\"unit\":\"1\",\"cost\":\"3.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2513\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolt-very-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3847, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6481\",\"code\":\"2514\",\"name\":\"CHOCOLATE UK\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2514\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3848, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6482\",\"code\":\"2515\",\"name\":\"PAINGAY GEL\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paingay-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3849, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6483\",\"code\":\"2516\",\"name\":\"POSTINOR LOCAL\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2516\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3850, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6484\",\"code\":\"2517\",\"name\":\"WELLWOMAN MAX\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2517\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-max1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3851, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6485\",\"code\":\"2518\",\"name\":\"EASYLIFE\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2518\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"easylife\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3852, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6486\",\"code\":\"2519\",\"name\":\"TEETHING MIX\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2519\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teething-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3853, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6487\",\"code\":\"2520\",\"name\":\"CARBOZAB\",\"unit\":\"1\",\"cost\":\"0.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2520\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carbozab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3854, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6488\",\"code\":\"2521\",\"name\":\"PAD PANTY\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2521\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-panty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3855, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6489\",\"code\":\"2522\",\"name\":\"BREAST PAD\",\"unit\":\"1\",\"cost\":\"27.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2522\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"breast-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3856, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6490\",\"code\":\"2523\",\"name\":\"COTTON 500G\",\"unit\":\"1\",\"cost\":\"7.0300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2523\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3857, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6491\",\"code\":\"2524\",\"name\":\"KY 50G\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2524\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ky-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3858, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6492\",\"code\":\"2525\",\"name\":\"ACILOVIR 200MG TAB\",\"unit\":\"1\",\"cost\":\"0.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2525\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acilovir-200mg-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3859, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6493\",\"code\":\"2526\",\"name\":\"VENA S\\/S PK\",\"unit\":\"1\",\"cost\":\"0.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2526\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vena-ss-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3860, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6494\",\"code\":\"2527\",\"name\":\"VERNA M\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2527\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"verna-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3861, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6495\",\"code\":\"2528\",\"name\":\"VOLTIC S\\/S PK\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2528\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ss-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3862, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6496\",\"code\":\"2529\",\"name\":\"VOLTIC M\\/S PK\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2529\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ms-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3863, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6497\",\"code\":\"2530\",\"name\":\"BELAQUA M\\/S PK\",\"unit\":\"1\",\"cost\":\"8.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2530\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"belaqua-ms-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3864, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6498\",\"code\":\"2531\",\"name\":\"BELAQUA S\\/S PK\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2531\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"belaqua-ss-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3865, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6499\",\"code\":\"2532\",\"name\":\"CANDID M PAINT\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2532\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-m-paint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3866, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6500\",\"code\":\"2533\",\"name\":\"THERMOSOL BRUSH\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2533\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thermosol-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3867, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6501\",\"code\":\"2534\",\"name\":\"ZINVITE CAPS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2534\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinvite-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3868, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6502\",\"code\":\"2535\",\"name\":\"MOVATE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2535\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"movate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3869, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6503\",\"code\":\"2536\",\"name\":\"LISTERINE B\\/S\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2536\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listerine-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3870, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6504\",\"code\":\"2537\",\"name\":\"COTTON BUD B\\/S\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2537\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3871, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6505\",\"code\":\"2538\",\"name\":\"COTTON BUD S\\/S\",\"unit\":\"1\",\"cost\":\"18.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2538\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud-ss1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3872, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6506\",\"code\":\"2539\",\"name\":\"TAABEA CAPS\",\"unit\":\"1\",\"cost\":\"17.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2539\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3873, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6507\",\"code\":\"2540\",\"name\":\"HEALTHY MAN\",\"unit\":\"1\",\"cost\":\"1.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2540\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthy-man\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3874, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6508\",\"code\":\"2541\",\"name\":\"KINGDOM GARLI CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-garli-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3875, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6509\",\"code\":\"2542\",\"name\":\"DEXONE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2542\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3876, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6510\",\"code\":\"2543\",\"name\":\"FRELET 75\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2543\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frelet-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3877, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6511\",\"code\":\"2544\",\"name\":\"ALOPURINOL 100\",\"unit\":\"1\",\"cost\":\"7.6400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2544\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alopurinol-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3878, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6512\",\"code\":\"2545\",\"name\":\"HYPONIC\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2545\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hyponic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3879, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6513\",\"code\":\"2546\",\"name\":\"PONSTAN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2546\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ponstan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3880, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6514\",\"code\":\"2547\",\"name\":\"GLUCONAF D\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2547\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gluconaf-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3881, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6515\",\"code\":\"2548\",\"name\":\"ALLOPURINOL 100\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2548\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"allopurinol-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3882, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6516\",\"code\":\"2549\",\"name\":\"MENTOS COUGH\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2549\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3883, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6517\",\"code\":\"2550\",\"name\":\"ZINC OXIDE PLAST\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2550\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-plast\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3884, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6518\",\"code\":\"2551\",\"name\":\"KIDS COLGATE PASTE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2551\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-colgate-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3885, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6519\",\"code\":\"2552\",\"name\":\"PERFECT CLEAR\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2552\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"perfect-clear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3886, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6520\",\"code\":\"2553\",\"name\":\"CUSSONS POWD B\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2553\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-powd-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3887, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6521\",\"code\":\"2554\",\"name\":\"CUSSONS POWD S\\/S\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2554\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-powd-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3888, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6522\",\"code\":\"2555\",\"name\":\"JOHNSONS LOTION\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2555\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"johnsons-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3889, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6523\",\"code\":\"2556\",\"name\":\"JOHNSONS OIL\",\"unit\":\"1\",\"cost\":\"0.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2556\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"johnsons-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3890, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6524\",\"code\":\"2557\",\"name\":\"ASHTON TEETN POWD\",\"unit\":\"1\",\"cost\":\"40.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2557\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ashton-teetn-powd\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3891, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6525\",\"code\":\"2558\",\"name\":\"HISTAZINE TAB\",\"unit\":\"1\",\"cost\":\"2.1100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2558\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"histazine-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3892, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6526\",\"code\":\"2559\",\"name\":\"PROGENOVA\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2559\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"progenova\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3893, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6527\",\"code\":\"2560\",\"name\":\"ENAMYCIN TAB\",\"unit\":\"1\",\"cost\":\"35.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2560\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enamycin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3894, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6528\",\"code\":\"2561\",\"name\":\"ADUTWUMWAA MALA MIX\",\"unit\":\"1\",\"cost\":\"11.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2561\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adutwumwaa-mala-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3895, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6529\",\"code\":\"2562\",\"name\":\"VITAMIN B12\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2562\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamin-b12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3896, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6530\",\"code\":\"2563\",\"name\":\"CYCLOGEST 400\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2563\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3897, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6531\",\"code\":\"2564\",\"name\":\"DAKTARIN ORAL GEL\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2564\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daktarin-oral-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3898, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6532\",\"code\":\"2565\",\"name\":\"COTTON 25G\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2565\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-25g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3899, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6533\",\"code\":\"2566\",\"name\":\"ADULT DIAPER\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2566\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adult-diaper\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3900, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6534\",\"code\":\"2567\",\"name\":\"NAIL CUTTER\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2567\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nail-cutter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3901, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6535\",\"code\":\"2568\",\"name\":\"TINATTET EYE\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2568\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinattet-eye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3902, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6536\",\"code\":\"2569\",\"name\":\"TOMAC MIX\",\"unit\":\"1\",\"cost\":\"29.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2569\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tomac-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3903, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6537\",\"code\":\"2570\",\"name\":\"VENE CAPS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2570\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vene-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3904, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6538\",\"code\":\"2571\",\"name\":\"PROVERA\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2571\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"provera\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3905, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6539\",\"code\":\"2572\",\"name\":\"JOY SOAP\",\"unit\":\"1\",\"cost\":\"2.0600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2572\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3906, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6540\",\"code\":\"2573\",\"name\":\"LIPSORE\",\"unit\":\"1\",\"cost\":\"14.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2573\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipsore\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3907, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6541\",\"code\":\"2574\",\"name\":\"RONVIT FORTE\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2574\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronvit-forte\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3908, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6542\",\"code\":\"2575\",\"name\":\"TRUMAN CAPS\",\"unit\":\"1\",\"cost\":\"6.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2575\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3909, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6543\",\"code\":\"2576\",\"name\":\"DRAGON LOZ\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2576\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dragon-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3910, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6544\",\"code\":\"2577\",\"name\":\"KIDIVITE 200ML\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2577\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidivite-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3911, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6545\",\"code\":\"2578\",\"name\":\"FLUCOR DAY\",\"unit\":\"1\",\"cost\":\"17.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2578\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucor-day1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3912, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6546\",\"code\":\"2579\",\"name\":\"KIDIMIN\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2579\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kidimin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3913, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6547\",\"code\":\"2580\",\"name\":\"NCP 100ML\",\"unit\":\"1\",\"cost\":\"17.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2580\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ncp-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3914, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6548\",\"code\":\"2581\",\"name\":\"SKYBRU\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2581\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"skybru\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3915, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6549\",\"code\":\"2582\",\"name\":\"WELLTEEN HIM\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2582\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellteen-him\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3916, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6550\",\"code\":\"2583\",\"name\":\"COTTON BUD BBS\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2583\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bud-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3917, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6551\",\"code\":\"2584\",\"name\":\"LUCKY V CARE\",\"unit\":\"1\",\"cost\":\"0.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2584\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-care1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3918, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6552\",\"code\":\"2585\",\"name\":\"HAPPIMAN CAPS\",\"unit\":\"1\",\"cost\":\"6.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2585\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"happiman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3919, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6553\",\"code\":\"2586\",\"name\":\"BANANA GUM\",\"unit\":\"1\",\"cost\":\"0.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2586\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"banana-gum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3920, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6554\",\"code\":\"2587\",\"name\":\"POFAKOF ADULT\",\"unit\":\"1\",\"cost\":\"30.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2587\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pofakof-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3921, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6555\",\"code\":\"2588\",\"name\":\"WORMZAP TAB\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2588\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormzap-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3922, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6556\",\"code\":\"2589\",\"name\":\"ATWOOD BITTERS\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2589\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"atwood-bitters\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3923, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6557\",\"code\":\"2590\",\"name\":\"ANGEL SANITIZER\",\"unit\":\"1\",\"cost\":\"1.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2590\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sanitizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3924, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6558\",\"code\":\"2591\",\"name\":\"FUROSEMIDE 40 ALMUS\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2591\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-40-almus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3925, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6559\",\"code\":\"2592\",\"name\":\"PINEK-20\",\"unit\":\"1\",\"cost\":\"5.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2592\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3926, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6560\",\"code\":\"2593\",\"name\":\"FLAREX\",\"unit\":\"1\",\"cost\":\"37.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2593\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3927, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6561\",\"code\":\"2594\",\"name\":\"POFAKOF JUNIOR\",\"unit\":\"1\",\"cost\":\"28.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2594\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pofakof-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3928, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6562\",\"code\":\"2595\",\"name\":\"ADVIL PM\",\"unit\":\"1\",\"cost\":\"1.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2595\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-pm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3929, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6563\",\"code\":\"2596\",\"name\":\"MINADEX\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2596\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"minadex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3930, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6564\",\"code\":\"2597\",\"name\":\"METAGYL TAB 400MG\",\"unit\":\"1\",\"cost\":\"7.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2597\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metagyl-tab-400mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3931, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6565\",\"code\":\"2598\",\"name\":\"MENOPACE ORG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2598\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menopace-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3932, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6566\",\"code\":\"2599\",\"name\":\"HAEMOGLOBIN TEST\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2599\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3933, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6567\",\"code\":\"2600\",\"name\":\"TYPHOID TEST\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2600\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"typhoid-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3934, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6568\",\"code\":\"2601\",\"name\":\"CHOLESTEROL TEST\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2601\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cholesterol-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3935, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6569\",\"code\":\"2602\",\"name\":\"PREGNANCY TEST\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2602\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregnancy-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3936, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6570\",\"code\":\"2603\",\"name\":\"PROSTATE TEST\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2603\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostate-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3937, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6571\",\"code\":\"2604\",\"name\":\"FACE SHIELD\",\"unit\":\"1\",\"cost\":\"7.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2604\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-shield\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3938, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6572\",\"code\":\"2605\",\"name\":\"HEPATITIS B TEST\",\"unit\":\"1\",\"cost\":\"32.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2605\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hepatitis-b-test\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3939, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6573\",\"code\":\"2606\",\"name\":\"LG GLIZONE 30\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2606\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lg-glizone-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3940, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6574\",\"code\":\"2607\",\"name\":\"AVACARE VIT C\",\"unit\":\"1\",\"cost\":\"1.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2607\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"avacare-vit-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3941, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6575\",\"code\":\"2608\",\"name\":\"WEIGHT\",\"unit\":\"1\",\"cost\":\"10.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2608\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"weight\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3942, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6576\",\"code\":\"2609\",\"name\":\"LYDIA DAILY PILLS\",\"unit\":\"1\",\"cost\":\"16.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2609\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-daily-pills\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3943, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6577\",\"code\":\"2610\",\"name\":\"SENAFEN\",\"unit\":\"1\",\"cost\":\"92.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2610\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"senafen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3944, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6578\",\"code\":\"2611\",\"name\":\"IMMUNE VIT C 1000\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2611\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"immune-vit-c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3945, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6579\",\"code\":\"2612\",\"name\":\"CIPROBAY\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2612\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprobay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3946, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6580\",\"code\":\"2613\",\"name\":\"ADVIL COMBO\",\"unit\":\"1\",\"cost\":\"13.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2613\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-combo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3947, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6581\",\"code\":\"2614\",\"name\":\"MONIFLU\",\"unit\":\"1\",\"cost\":\"38.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2614\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"moniflu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3948, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6582\",\"code\":\"2615\",\"name\":\"APPLE CID BORGES 355ML\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2615\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cid-borges-355ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3949, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6583\",\"code\":\"2616\",\"name\":\"VINEGAR 500ML\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2616\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vinegar-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3950, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6584\",\"code\":\"2617\",\"name\":\"Ca-C 1000\",\"unit\":\"1\",\"cost\":\"0.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2617\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3951, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6585\",\"code\":\"2618\",\"name\":\"GERMANY VIT C\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2618\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"germany-vit-c1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3952, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6586\",\"code\":\"2619\",\"name\":\"PANACIN\",\"unit\":\"1\",\"cost\":\"6.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2619\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panacin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3953, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6587\",\"code\":\"2620\",\"name\":\"KRIS\",\"unit\":\"1\",\"cost\":\"1.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2620\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kris\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3954, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6588\",\"code\":\"2621\",\"name\":\"MAYFAIR SRP\",\"unit\":\"1\",\"cost\":\"5.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2621\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mayfair-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3955, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6589\",\"code\":\"2622\",\"name\":\"DICLOKIN\",\"unit\":\"1\",\"cost\":\"3.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2622\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclokin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3956, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6590\",\"code\":\"2623\",\"name\":\"HAEMATOVITE SRP\",\"unit\":\"1\",\"cost\":\"2.3100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2623\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"haematovite-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3957, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6591\",\"code\":\"2624\",\"name\":\"ASPANOL BAB\",\"unit\":\"1\",\"cost\":\"2.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2624\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspanol-bab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3958, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6592\",\"code\":\"2625\",\"name\":\"WORBEN SRP\",\"unit\":\"1\",\"cost\":\"3.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2625\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"worben-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3959, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6593\",\"code\":\"2626\",\"name\":\"BCOMPLEX  SRP KINAPHARMA\",\"unit\":\"1\",\"cost\":\"4.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2626\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bcomplex-srp-kinapharma\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3960, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6594\",\"code\":\"2627\",\"name\":\"TASTYMOL INFANT\",\"unit\":\"1\",\"cost\":\"0.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2627\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tastymol-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3961, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6595\",\"code\":\"2628\",\"name\":\"ASPANOL PLUS\",\"unit\":\"1\",\"cost\":\"8.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2628\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspanol-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3962, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6596\",\"code\":\"2629\",\"name\":\"ASCOVITE VIT C 500\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2629\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascovite-vit-c-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3963, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6597\",\"code\":\"2630\",\"name\":\"ANCIGEL O\",\"unit\":\"1\",\"cost\":\"7.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2630\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-o\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3964, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6598\",\"code\":\"2631\",\"name\":\"JEDITONE SRP\",\"unit\":\"1\",\"cost\":\"5.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2631\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jeditone-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3965, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6599\",\"code\":\"2632\",\"name\":\"GUDAPET SRP\",\"unit\":\"1\",\"cost\":\"4.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2632\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3966, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6600\",\"code\":\"2633\",\"name\":\"X,FLUX SRP\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2633\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xflux-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:15:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3967, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6601\",\"code\":\"2634\",\"name\":\"COLDRILIEF SRP\",\"unit\":\"1\",\"cost\":\"8.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2634\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coldrilief-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3968, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6602\",\"code\":\"2635\",\"name\":\"ENTRAMOL EXTRA\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2635\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3969, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6603\",\"code\":\"2636\",\"name\":\"ENTRACIN 300\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2636\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"entracin-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3970, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6604\",\"code\":\"2637\",\"name\":\"BLOPEN GEL\",\"unit\":\"1\",\"cost\":\"4.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2637\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blopen-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3971, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6605\",\"code\":\"2638\",\"name\":\"GACET 1G\",\"unit\":\"1\",\"cost\":\"7.6800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2638\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3972, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6606\",\"code\":\"2639\",\"name\":\"X,FERON CAPS\",\"unit\":\"1\",\"cost\":\"21.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2639\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xferon-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3973, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6607\",\"code\":\"2640\",\"name\":\"ZINVITE SRP\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2640\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinvite-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3974, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6608\",\"code\":\"2641\",\"name\":\"IMPRESSER CAPS\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2641\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3975, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6609\",\"code\":\"2642\",\"name\":\"VOLTAREEN 100\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2642\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltareen-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3976, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6610\",\"code\":\"2643\",\"name\":\"COTTON 50G\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2643\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3977, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6611\",\"code\":\"2644\",\"name\":\"ELEMENT SPRAY\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2644\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"element-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3978, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6612\",\"code\":\"2645\",\"name\":\"LAS VEGAS SPRAY\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2645\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"las-vegas-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3979, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6613\",\"code\":\"2646\",\"name\":\"CLASS SPRAY\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2646\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"class-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3980, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6614\",\"code\":\"2647\",\"name\":\"CAPRICE SPRAY\",\"unit\":\"1\",\"cost\":\"13.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2647\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"caprice-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3981, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6615\",\"code\":\"2648\",\"name\":\"LEMSIP MAX\",\"unit\":\"1\",\"cost\":\"25.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2648\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-max\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3982, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6616\",\"code\":\"2649\",\"name\":\"SENSODYNE PASTE\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2649\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sensodyne-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3983, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6617\",\"code\":\"2650\",\"name\":\"LONGRICH PASTE\",\"unit\":\"1\",\"cost\":\"5.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2650\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"longrich-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3984, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6618\",\"code\":\"2651\",\"name\":\"NEOCORT EYE DROP\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2651\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-drop1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3985, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6619\",\"code\":\"2652\",\"name\":\"PROTONIC\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"protonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3986, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6620\",\"code\":\"2653\",\"name\":\"QUEEN ELI B\\/S\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2653\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-eli-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3987, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6621\",\"code\":\"2654\",\"name\":\"PEPSODENT COMPLETE\",\"unit\":\"1\",\"cost\":\"15.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2654\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-complete\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3988, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6622\",\"code\":\"2655\",\"name\":\"LUMETHER  ADULT\",\"unit\":\"1\",\"cost\":\"5.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2655\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lumether-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3989, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6623\",\"code\":\"2656\",\"name\":\"LEVOTHYROXINE 100MG\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2656\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3990, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6624\",\"code\":\"2657\",\"name\":\"MIST POT SIT DARL\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2657\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mist-pot-sit-darl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3991, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6625\",\"code\":\"2658\",\"name\":\"ARTHROTEC 75\",\"unit\":\"1\",\"cost\":\"1.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2658\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arthrotec-75\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3992, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6626\",\"code\":\"2659\",\"name\":\"SPANISH GARLIC\",\"unit\":\"1\",\"cost\":\"4.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2659\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spanish-garlic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3993, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6627\",\"code\":\"2660\",\"name\":\"BELL ACTIVE\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2660\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bell-active\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3994, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6628\",\"code\":\"2661\",\"name\":\"WHEAT DRINK\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2661\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wheat-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3995, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6629\",\"code\":\"2662\",\"name\":\"FANMAX\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2662\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fanmax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3996, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6630\",\"code\":\"2663\",\"name\":\"CERES DRINK\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2663\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceres-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3997, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6631\",\"code\":\"2664\",\"name\":\"CANNED MALT\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2664\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"canned-malt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3998, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6632\",\"code\":\"2665\",\"name\":\"DON SIMON\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2665\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-simon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3999, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6633\",\"code\":\"2666\",\"name\":\"CAN COKE\\/FANTA\",\"unit\":\"1\",\"cost\":\"19.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2666\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"can-cokefanta\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4000, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6634\",\"code\":\"2667\",\"name\":\"BIO OIL B\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2667\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bio-oil-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4001, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6635\",\"code\":\"2668\",\"name\":\"BIO OIL S\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2668\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bio-oil-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4002, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6636\",\"code\":\"2669\",\"name\":\"VASELINE CREAM B\\/S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2669\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vaseline-cream-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4003, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6637\",\"code\":\"2670\",\"name\":\"PEPSODENT CHARCOAL\",\"unit\":\"1\",\"cost\":\"2.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2670\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepsodent-charcoal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4004, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6638\",\"code\":\"2671\",\"name\":\"FOREVER EASY\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2671\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"forever-easy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4005, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6639\",\"code\":\"2672\",\"name\":\"PINEK 30\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2672\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4006, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6640\",\"code\":\"2673\",\"name\":\"GANA BALM\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2673\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gana-balm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4007, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6641\",\"code\":\"2674\",\"name\":\"BASEVIT DROP\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2674\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basevit-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4008, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6642\",\"code\":\"2675\",\"name\":\"ADAM,S SECRET\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2675\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adams-secret\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4009, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6643\",\"code\":\"2676\",\"name\":\"CHOCOLATE DARK B\\/S\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2676\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocolate-dark-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4010, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6644\",\"code\":\"2677\",\"name\":\"ZEEGHOUT\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2677\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zeeghout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4011, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6645\",\"code\":\"2678\",\"name\":\"PURE HEAVEN\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2678\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pure-heaven\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4012, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6646\",\"code\":\"2679\",\"name\":\"FRUTELLI\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2679\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frutelli\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4013, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6647\",\"code\":\"2680\",\"name\":\"VITNUT DRINK\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2680\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitnut-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4014, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6648\",\"code\":\"2681\",\"name\":\"VITRAC\",\"unit\":\"1\",\"cost\":\"5.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2681\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitrac\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4015, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6649\",\"code\":\"2682\",\"name\":\"JUVER JUICE\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2682\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"juver-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4016, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6650\",\"code\":\"2683\",\"name\":\"VODY\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2683\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vody\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4017, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6651\",\"code\":\"2684\",\"name\":\"LION CLUB ENERGY\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2684\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lion-club-energy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4018, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6652\",\"code\":\"2685\",\"name\":\"ADONKO ENERGY\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2685\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adonko-energy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4019, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6653\",\"code\":\"2686\",\"name\":\"FINEST B-12\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2686\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"finest-b-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4020, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6654\",\"code\":\"2687\",\"name\":\"KISS DRINK\",\"unit\":\"1\",\"cost\":\"6.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2687\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kiss-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4021, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6655\",\"code\":\"2688\",\"name\":\"HENEKEIN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2688\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"henekein\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4022, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6656\",\"code\":\"2689\",\"name\":\"HUNTERS\",\"unit\":\"1\",\"cost\":\"4.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2689\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hunters\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4023, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6657\",\"code\":\"2690\",\"name\":\"DON SANGRIA\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2690\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-sangria\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4024, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6658\",\"code\":\"2691\",\"name\":\"DON SIMON S\\/S\",\"unit\":\"1\",\"cost\":\"2.9100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2691\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-simon-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4025, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6659\",\"code\":\"2692\",\"name\":\"HOLLANDIA\",\"unit\":\"1\",\"cost\":\"2.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2692\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hollandia\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4026, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6660\",\"code\":\"2693\",\"name\":\"MALTA GUINESS\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2693\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malta-guiness\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4027, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6661\",\"code\":\"2694\",\"name\":\"VOLTIC B\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2694\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4028, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6662\",\"code\":\"2695\",\"name\":\"VITRAC S\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2695\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitrac-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4029, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6663\",\"code\":\"2696\",\"name\":\"FRAG HAND SOAP\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2696\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frag-hand-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4030, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6664\",\"code\":\"2697\",\"name\":\"DIAL BATHING GEL\",\"unit\":\"1\",\"cost\":\"5.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2697\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dial-bathing-gel1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4031, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6665\",\"code\":\"2698\",\"name\":\"PSYLLIUM HUSK\",\"unit\":\"1\",\"cost\":\"41.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2698\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"psyllium-husk1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4032, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6666\",\"code\":\"2699\",\"name\":\"VIT C*ZINC SRP\",\"unit\":\"1\",\"cost\":\"7.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2699\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-czinc-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4033, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6667\",\"code\":\"2700\",\"name\":\"IMPRESSER OIL\",\"unit\":\"1\",\"cost\":\"25.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2700\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4034, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6668\",\"code\":\"2701\",\"name\":\"OSON,S GARLIC PEARLS\",\"unit\":\"1\",\"cost\":\"45.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2701\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osons-garlic-pearls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4035, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6669\",\"code\":\"2702\",\"name\":\"BENILIN DRY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2702\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"benilin-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4036, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6670\",\"code\":\"2703\",\"name\":\"SUDOCREAM 250\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2703\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sudocream-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4037, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6671\",\"code\":\"2704\",\"name\":\"PSYLLIUM HUSK\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2704\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"psyllium-husk1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4038, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6672\",\"code\":\"2705\",\"name\":\"WASHCLOTH WIPE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2705\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"washcloth-wipe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4039, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6673\",\"code\":\"2706\",\"name\":\"HONEST WIPE\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2706\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honest-wipe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4040, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6674\",\"code\":\"2707\",\"name\":\"BABY GANICS WIPES\",\"unit\":\"1\",\"cost\":\"5.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2707\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baby-ganics-wipes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4041, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6675\",\"code\":\"2708\",\"name\":\"MOUTHWASH\",\"unit\":\"1\",\"cost\":\"1.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2708\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mouthwash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4042, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6676\",\"code\":\"2709\",\"name\":\"ABC *ZINC SRP\",\"unit\":\"1\",\"cost\":\"2.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2709\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abc-zinc-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4043, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6677\",\"code\":\"2710\",\"name\":\"FANMAX S\\/S\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2710\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fanmax-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4044, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6678\",\"code\":\"2711\",\"name\":\"ALVARO\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2711\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alvaro\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4045, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6679\",\"code\":\"2712\",\"name\":\"KRIS DRINK\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2712\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kris-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4046, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6680\",\"code\":\"2713\",\"name\":\"ORAL B BRUSH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2713\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4047, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6681\",\"code\":\"2714\",\"name\":\"DG BATHING GEL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2714\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dg-bathing-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4048, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6682\",\"code\":\"2715\",\"name\":\"WHITE RAIN BATH\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2715\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"white-rain-bath\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4049, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6683\",\"code\":\"2716\",\"name\":\"SUNSHINE BATH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2716\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sunshine-bath\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4050, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6684\",\"code\":\"2717\",\"name\":\"PJ MASK\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2717\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pj-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4051, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6685\",\"code\":\"2718\",\"name\":\"NIVEA CARE *SPARKLE\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2718\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nivea-care-sparkle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4052, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6686\",\"code\":\"2719\",\"name\":\"BONDI SANDS LOTION\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2719\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bondi-sands-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4053, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6687\",\"code\":\"2720\",\"name\":\"BABY LOTION\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2720\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baby-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4054, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6688\",\"code\":\"2721\",\"name\":\"KERATIN CONDITIONER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2721\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"keratin-conditioner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4055, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6689\",\"code\":\"2722\",\"name\":\"HUGGIES WIPE\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2722\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huggies-wipe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4056, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6690\",\"code\":\"2723\",\"name\":\"FEEDING BOT\",\"unit\":\"1\",\"cost\":\"350.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2723\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feeding-bot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4057, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6691\",\"code\":\"2724\",\"name\":\"DELIVERY MAT\",\"unit\":\"1\",\"cost\":\"75.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2724\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"delivery-mat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4058, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6692\",\"code\":\"2725\",\"name\":\"BP MONITOR\",\"unit\":\"1\",\"cost\":\"3.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2725\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bp-monitor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4059, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6693\",\"code\":\"2726\",\"name\":\"BREAST PUMP\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2726\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"breast-pump\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4060, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6694\",\"code\":\"2727\",\"name\":\"STOPKOF EXP JNR\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2727\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-exp-jnr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4061, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6695\",\"code\":\"2728\",\"name\":\"STOPKOF EXP ADULT\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2728\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-exp-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4062, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6696\",\"code\":\"2729\",\"name\":\"EASY ON\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2729\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-on\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4063, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6697\",\"code\":\"2730\",\"name\":\"SAMALIN LOZ\",\"unit\":\"1\",\"cost\":\"80.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2730\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4064, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6698\",\"code\":\"2731\",\"name\":\"KLIRE ANTACID S\\/S\",\"unit\":\"1\",\"cost\":\"11.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2731\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"klire-antacid-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4065, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6699\",\"code\":\"2732\",\"name\":\"ON CALL PLUS\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2732\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"on-call-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4066, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6700\",\"code\":\"2733\",\"name\":\"FERROUS SULPHATE\",\"unit\":\"1\",\"cost\":\"17.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2733\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulphate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4067, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6701\",\"code\":\"2734\",\"name\":\"GENTA INJ\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2734\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"genta-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4068, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6702\",\"code\":\"2735\",\"name\":\"VENTOLIN SRP\",\"unit\":\"1\",\"cost\":\"15.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2735\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4069, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6703\",\"code\":\"2736\",\"name\":\"VITALIA S\\/S\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2736\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitalia-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4070, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6704\",\"code\":\"2737\",\"name\":\"LIVOPAT\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2737\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"livopat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4071, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6705\",\"code\":\"2738\",\"name\":\"DASTY DEGRESSER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2738\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dasty-degresser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4072, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6706\",\"code\":\"2739\",\"name\":\"FEEDING BOT BIG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2739\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feeding-bot-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4073, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6707\",\"code\":\"2740\",\"name\":\"FEDING M\\/S\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2740\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feding-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4074, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6708\",\"code\":\"2741\",\"name\":\"FEEDING S\\/S\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2741\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feeding-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4075, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6709\",\"code\":\"2742\",\"name\":\"GLASS FEEDING B\\/S\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2742\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glass-feeding-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4076, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6710\",\"code\":\"2743\",\"name\":\"GLASS S\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2743\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glass-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4077, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6711\",\"code\":\"2744\",\"name\":\"NIPPLE\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2744\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nipple\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4078, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6712\",\"code\":\"2745\",\"name\":\"AZILEX SUSP\",\"unit\":\"1\",\"cost\":\"7.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2745\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4079, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6713\",\"code\":\"2746\",\"name\":\"GBEDEMA GARLIC\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2746\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gbedema-garlic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4080, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6714\",\"code\":\"2747\",\"name\":\"AZITEX CAPS\",\"unit\":\"1\",\"cost\":\"1.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2747\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azitex-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4081, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6715\",\"code\":\"2748\",\"name\":\"GLUCOLIFE C\",\"unit\":\"1\",\"cost\":\"8.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2748\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucolife-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4082, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6716\",\"code\":\"2749\",\"name\":\"ON CALL STRIPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2749\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"on-call-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4083, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6717\",\"code\":\"2750\",\"name\":\"VIT E 200\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2750\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4084, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6718\",\"code\":\"2751\",\"name\":\"CUSSON,S OIL B\\/S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2751\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-oil-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4085, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6719\",\"code\":\"2752\",\"name\":\"CUSSON,S OIL S\\/S\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cussons-oil-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4086, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6720\",\"code\":\"2753\",\"name\":\"LUX SOAP\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2753\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lux-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4087, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6721\",\"code\":\"2754\",\"name\":\"AIRFRESHER\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2754\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"airfresher\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4088, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6722\",\"code\":\"2755\",\"name\":\"GEISHA SOAP\",\"unit\":\"1\",\"cost\":\"5.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2755\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"geisha-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4089, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6723\",\"code\":\"2756\",\"name\":\"WOODS\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2756\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"woods\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4090, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6724\",\"code\":\"2757\",\"name\":\"ZYMAX TAB\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2757\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4091, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6725\",\"code\":\"2758\",\"name\":\"QUEEN LOTION BBS\",\"unit\":\"1\",\"cost\":\"7.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2758\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"queen-lotion-bbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4092, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6726\",\"code\":\"2759\",\"name\":\"EPSON SALT\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2759\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epson-salt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4093, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6727\",\"code\":\"2760\",\"name\":\"TEGRETOL 200\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2760\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4094, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6728\",\"code\":\"2761\",\"name\":\"SALINE NASAL\",\"unit\":\"1\",\"cost\":\"36.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2761\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4095, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6729\",\"code\":\"2762\",\"name\":\"3CP\",\"unit\":\"1\",\"cost\":\"4.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2762\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3cp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4096, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6730\",\"code\":\"2763\",\"name\":\"GALVUS 50MG\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2763\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4097, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6731\",\"code\":\"2764\",\"name\":\"FEROFIX\",\"unit\":\"1\",\"cost\":\"35.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2764\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferofix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4098, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6732\",\"code\":\"2765\",\"name\":\"CALAMINE LOTION LOCAL\",\"unit\":\"1\",\"cost\":\"40.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2765\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-lotion-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4099, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6733\",\"code\":\"2766\",\"name\":\"PEPTO BIS 240ML\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2766\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bis-240ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4100, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6734\",\"code\":\"2767\",\"name\":\"DUREX PLAY GEL\",\"unit\":\"1\",\"cost\":\"1.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2767\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"durex-play-gel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4101, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6735\",\"code\":\"2768\",\"name\":\"EXFORGE 5\\/160\\/12.5\",\"unit\":\"1\",\"cost\":\"5.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2768\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"exforge-5160125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4102, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6736\",\"code\":\"2769\",\"name\":\"LOFNAC 100MG\",\"unit\":\"1\",\"cost\":\"1.0700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2769\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4103, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6737\",\"code\":\"2770\",\"name\":\"STIMUROL SYR\",\"unit\":\"1\",\"cost\":\"0.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2770\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stimurol-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4104, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6738\",\"code\":\"2771\",\"name\":\"CHLODIAZEPOX\",\"unit\":\"1\",\"cost\":\"16.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2771\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlodiazepox\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4105, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6739\",\"code\":\"2772\",\"name\":\"O-FORMIN 500\",\"unit\":\"1\",\"cost\":\"15.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2772\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"o-formin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4106, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6740\",\"code\":\"2773\",\"name\":\"REDIN  PLUS CAPS\",\"unit\":\"1\",\"cost\":\"21.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2773\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"redin-plus-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4107, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6741\",\"code\":\"2774\",\"name\":\"REDIN LIQ\",\"unit\":\"1\",\"cost\":\"73.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2774\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"redin-liq\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4108, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6742\",\"code\":\"2775\",\"name\":\"BETOPTIC EYE DROP\",\"unit\":\"1\",\"cost\":\"55.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2775\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"betoptic-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4109, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6743\",\"code\":\"2776\",\"name\":\"PROSTAN EYE DROP\",\"unit\":\"1\",\"cost\":\"3.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2776\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostan-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4110, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6744\",\"code\":\"2777\",\"name\":\"DALACIN SRP\",\"unit\":\"1\",\"cost\":\"21.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2777\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dalacin-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4111, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6745\",\"code\":\"2778\",\"name\":\"KEPTRILS LOZ\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2778\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"keptrils-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4112, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6746\",\"code\":\"2779\",\"name\":\"EUTYMOL PASTE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2779\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eutymol-paste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4113, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6747\",\"code\":\"2780\",\"name\":\"DIGESTIVE\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2780\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digestive\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4114, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6748\",\"code\":\"2781\",\"name\":\"RICH TEA\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2781\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rich-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4115, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6749\",\"code\":\"2782\",\"name\":\"JACOB,S\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2782\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jacobs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4116, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6750\",\"code\":\"2783\",\"name\":\"ROMA CREAM CRACKERS\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2783\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"roma-cream-crackers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4117, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6751\",\"code\":\"2784\",\"name\":\"ADOM  OINT\",\"unit\":\"1\",\"cost\":\"1.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2784\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4118, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6752\",\"code\":\"2785\",\"name\":\"KWAE FRESH\",\"unit\":\"1\",\"cost\":\"38.7600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2785\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kwae-fresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4119, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6753\",\"code\":\"2786\",\"name\":\"CHLOR EYE OINT\",\"unit\":\"1\",\"cost\":\"0.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2786\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chlor-eye-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4120, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6754\",\"code\":\"2787\",\"name\":\"LEVOFLOXACIN 500\",\"unit\":\"1\",\"cost\":\"33.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2787\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"levofloxacin-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4121, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6755\",\"code\":\"2788\",\"name\":\"ACTILIFE CAPS\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2788\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"actilife-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4122, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6756\",\"code\":\"2789\",\"name\":\"FERTILO FORTE CAPS\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2789\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fertilo-forte-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4123, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6757\",\"code\":\"2790\",\"name\":\"WELLTEEN HER\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2790\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellteen-her\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4124, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6758\",\"code\":\"2791\",\"name\":\"ALWAYS MAXI DOUBLE\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2791\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"always-maxi-double\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4125, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6759\",\"code\":\"2792\",\"name\":\"LISINOPRIL 10 CRESCENT\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2792\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-10-crescent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4126, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6760\",\"code\":\"2793\",\"name\":\"MENTHODEX LOZ\",\"unit\":\"1\",\"cost\":\"14.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2793\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menthodex-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4127, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6761\",\"code\":\"2794\",\"name\":\"ARTHROSAMINE\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2794\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arthrosamine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4128, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6762\",\"code\":\"2795\",\"name\":\"CILOXAN EYE DROP\",\"unit\":\"1\",\"cost\":\"5.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2795\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciloxan-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4129, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6763\",\"code\":\"2796\",\"name\":\"AMOXIL SUSP LUEX\",\"unit\":\"1\",\"cost\":\"0.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2796\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxil-susp-luex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4130, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6764\",\"code\":\"2797\",\"name\":\"NEXCOFER 125ML\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2797\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nexcofer-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4131, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6765\",\"code\":\"2798\",\"name\":\"PARA EXETER TAB\",\"unit\":\"1\",\"cost\":\"6.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2798\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-exeter-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4132, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6766\",\"code\":\"2799\",\"name\":\"INFA V OINT\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2799\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4133, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6767\",\"code\":\"2800\",\"name\":\"CLARITINE TAB\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2800\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"claritine-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4134, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6768\",\"code\":\"2801\",\"name\":\"HOLANDIAS S\\/S\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2801\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"holandias-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4135, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6769\",\"code\":\"2802\",\"name\":\"KIDS BRUSH COLG\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2802\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-brush-colg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4136, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6770\",\"code\":\"2803\",\"name\":\"FLUCLOX 250 ESKAY\",\"unit\":\"1\",\"cost\":\"56.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2803\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluclox-250-eskay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4137, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6771\",\"code\":\"2804\",\"name\":\"GLASS CLEANER\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2804\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glass-cleaner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4138, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6772\",\"code\":\"2805\",\"name\":\"ZINNAT SUSP 50 ML\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2805\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4139, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6773\",\"code\":\"2806\",\"name\":\"SMIRNOFF\",\"unit\":\"1\",\"cost\":\"27.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2806\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smirnoff\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4140, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6774\",\"code\":\"2807\",\"name\":\"EDA BOKOO\",\"unit\":\"1\",\"cost\":\"34.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2807\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eda-bokoo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4141, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6775\",\"code\":\"2808\",\"name\":\"NIDO TIN\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2808\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nido-tin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4142, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6776\",\"code\":\"2809\",\"name\":\"NAN 1@2\",\"unit\":\"1\",\"cost\":\"43.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2809\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nan-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4143, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6777\",\"code\":\"2810\",\"name\":\"NAN COMFORT 1@2\",\"unit\":\"1\",\"cost\":\"3.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2810\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nan-comfort-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4144, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6778\",\"code\":\"2811\",\"name\":\"SMA 1@2\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2811\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sma-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4145, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6779\",\"code\":\"2812\",\"name\":\"MILO DRINK\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2812\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milo-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4146, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6780\",\"code\":\"2813\",\"name\":\"MILO TIN\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2813\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milo-tin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4147, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6781\",\"code\":\"2814\",\"name\":\"NESCAFE 200G\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2814\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nescafe-200g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4148, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6782\",\"code\":\"2815\",\"name\":\"NESCAFE 50G\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2815\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nescafe-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4149, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6783\",\"code\":\"2816\",\"name\":\"REXONA SOAP\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2816\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rexona-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4150, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6784\",\"code\":\"2817\",\"name\":\"SIVODERM LOTION\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2817\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sivoderm-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4151, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6785\",\"code\":\"2818\",\"name\":\"XYLO ACINO ADULT\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2818\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xylo-acino-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4152, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6786\",\"code\":\"2819\",\"name\":\"DIAMICROM 60MG\",\"unit\":\"1\",\"cost\":\"200.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2819\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diamicrom-60mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4153, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6787\",\"code\":\"2820\",\"name\":\"CAFEGORT\",\"unit\":\"1\",\"cost\":\"16.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2820\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cafegort\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4154, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6788\",\"code\":\"2821\",\"name\":\"XARELTO 10MG\",\"unit\":\"1\",\"cost\":\"4.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2821\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xarelto-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4155, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6789\",\"code\":\"2822\",\"name\":\"GLUCOPHAGE\",\"unit\":\"1\",\"cost\":\"2.0800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2822\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glucophage\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4156, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6790\",\"code\":\"2823\",\"name\":\"MALIN BABY\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2823\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4157, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6791\",\"code\":\"2824\",\"name\":\"MALIN TAB\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2824\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4158, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6792\",\"code\":\"2825\",\"name\":\"SKIN ESSENTIALS\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2825\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"skin-essentials\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4159, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6793\",\"code\":\"2826\",\"name\":\"FLORA TISSUE B\\/S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2826\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flora-tissue-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4160, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6794\",\"code\":\"2827\",\"name\":\"WAIST BELT\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2827\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"waist-belt\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4161, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6795\",\"code\":\"2828\",\"name\":\"AMOKSIKLAV INJ\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2828\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4162, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6796\",\"code\":\"2829\",\"name\":\"CRYSTALINE PENICILLIN\",\"unit\":\"1\",\"cost\":\"2.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2829\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crystaline-penicillin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4163, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6797\",\"code\":\"2830\",\"name\":\"HYDROCORT INJ\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2830\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrocort-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4164, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6798\",\"code\":\"2831\",\"name\":\"NOSPA INJ\",\"unit\":\"1\",\"cost\":\"21.1300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2831\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nospa-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4165, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6799\",\"code\":\"2832\",\"name\":\"BEDMAT\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2832\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bedmat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4166, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6800\",\"code\":\"2833\",\"name\":\"LAVET\",\"unit\":\"1\",\"cost\":\"5.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2833\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lavet1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4167, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6801\",\"code\":\"2834\",\"name\":\"CIPROCIR EYE DROP\",\"unit\":\"1\",\"cost\":\"10.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2834\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprocir-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4168, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6802\",\"code\":\"2835\",\"name\":\"LUCOZADE 380\",\"unit\":\"1\",\"cost\":\"29.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2835\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucozade-380\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4169, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6803\",\"code\":\"2836\",\"name\":\"ANTACID MIX\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2836\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"antacid-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4170, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6804\",\"code\":\"2837\",\"name\":\"EVANOVA\",\"unit\":\"1\",\"cost\":\"4.0500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2837\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4171, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6805\",\"code\":\"2838\",\"name\":\"APC 10*10\",\"unit\":\"1\",\"cost\":\"10.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2838\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apc-1010\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4172, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6806\",\"code\":\"2839\",\"name\":\"MIST MAG DARL\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2839\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mist-mag-darl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4173, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6807\",\"code\":\"2840\",\"name\":\"ANTACID BELLS\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2840\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"antacid-bells\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4174, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6808\",\"code\":\"2841\",\"name\":\"AMOS VITAL VITC\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2841\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amos-vital-vitc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4175, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6809\",\"code\":\"2842\",\"name\":\"PROLIFE VITC\",\"unit\":\"1\",\"cost\":\"4.2700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2842\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prolife-vitc1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4176, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6810\",\"code\":\"2843\",\"name\":\"BG GLUTAMIN PLUS\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2843\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bg-glutamin-plus1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4177, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6811\",\"code\":\"2844\",\"name\":\"MYCOVIN 500\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2844\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycovin-5001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4178, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6812\",\"code\":\"2845\",\"name\":\"MMT\",\"unit\":\"1\",\"cost\":\"2.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2845\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mmt1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4179, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6813\",\"code\":\"2846\",\"name\":\"SEFLOX EAR\\/EYE\",\"unit\":\"1\",\"cost\":\"39.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2846\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-eareye\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4180, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6814\",\"code\":\"2847\",\"name\":\"SELECT\",\"unit\":\"1\",\"cost\":\"36.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2847\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"select\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4181, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6815\",\"code\":\"2848\",\"name\":\"apple cider natural\",\"unit\":\"1\",\"cost\":\"25.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2848\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-cider-natural\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4182, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6816\",\"code\":\"2849\",\"name\":\"DYKLO SPRAY DICLO\",\"unit\":\"1\",\"cost\":\"77.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2849\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dyklo-spray-diclo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4183, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6817\",\"code\":\"2850\",\"name\":\"SPIRONOLACTONE 100mg\",\"unit\":\"1\",\"cost\":\"47.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2850\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spironolactone-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4184, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6818\",\"code\":\"2851\",\"name\":\"VIAGRA IOOMG\",\"unit\":\"1\",\"cost\":\"6.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2851\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viagra-ioomg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4185, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6819\",\"code\":\"2852\",\"name\":\"VIAGRA 50MG\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2852\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"viagra-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4186, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6820\",\"code\":\"2853\",\"name\":\"RED BULL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2853\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-bull\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4187, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6821\",\"code\":\"2854\",\"name\":\"BLUE JEANS DRINKS\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2854\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-jeans-drinks\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4188, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6822\",\"code\":\"2855\",\"name\":\"DON GRACIA\",\"unit\":\"1\",\"cost\":\"0.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2855\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"don-gracia\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4189, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6823\",\"code\":\"2856\",\"name\":\"VITRAC PACK DRINK\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2856\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitrac-pack-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4190, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6824\",\"code\":\"2857\",\"name\":\"ASPIRIN LOCAL\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2857\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aspirin-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4191, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6825\",\"code\":\"2858\",\"name\":\"LOCID\",\"unit\":\"1\",\"cost\":\"7.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2858\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"locid1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4192, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6826\",\"code\":\"2859\",\"name\":\"PARAZONE\",\"unit\":\"1\",\"cost\":\"0.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2859\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"parazone\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4193, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6827\",\"code\":\"2860\",\"name\":\"NIFECARD 30\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2860\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifecard-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4194, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6828\",\"code\":\"2861\",\"name\":\"ALEVE PAIN KILLER\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2861\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aleve-pain-killer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4195, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6829\",\"code\":\"2862\",\"name\":\"COCODAMOL\",\"unit\":\"1\",\"cost\":\"38.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2862\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cocodamol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4196, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6830\",\"code\":\"2863\",\"name\":\"CALAMINE LTN BELLS\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2863\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calamine-ltn-bells\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4197, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6831\",\"code\":\"2864\",\"name\":\"VITANE SRP\",\"unit\":\"1\",\"cost\":\"10.6300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4198, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6832\",\"code\":\"2865\",\"name\":\"ZURION\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2865\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zurion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4199, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6833\",\"code\":\"2866\",\"name\":\"SPIRONOLAC ECL\",\"unit\":\"1\",\"cost\":\"13.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2866\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spironolac-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4200, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6834\",\"code\":\"2867\",\"name\":\"TOM BROWN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2867\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-brown\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4201, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6835\",\"code\":\"2868\",\"name\":\"ASTYFER\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2868\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"astyfer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4202, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6836\",\"code\":\"2869\",\"name\":\"SOFTCARE PAD\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2869\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softcare-pad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4203, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6837\",\"code\":\"2870\",\"name\":\"EVERSHEEN CREAM SMALL\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2870\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eversheen-cream-small1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4204, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6838\",\"code\":\"2871\",\"name\":\"LEMONVATE\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2871\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lemonvate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4205, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6839\",\"code\":\"2872\",\"name\":\"IMPERIAL LATHER\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2872\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imperial-lather\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4206, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6840\",\"code\":\"2873\",\"name\":\"ORO INSECTICIDE\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2873\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oro-insecticide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4207, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6841\",\"code\":\"2874\",\"name\":\"SPRAY STARCH\",\"unit\":\"1\",\"cost\":\"4.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2874\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spray-starch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4208, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6842\",\"code\":\"2875\",\"name\":\"OCEAN SPRAY BOTTLE\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2875\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ocean-spray-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4209, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6843\",\"code\":\"2876\",\"name\":\"OCEAN SPRAY CAN\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2876\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ocean-spray-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4210, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6844\",\"code\":\"2877\",\"name\":\"ALOE VERA DRINK\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2877\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aloe-vera-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4211, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6845\",\"code\":\"2878\",\"name\":\"JUVER S\\/S BOTTLE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2878\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"juver-ss-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4212, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6846\",\"code\":\"2879\",\"name\":\"AFRO MOSES\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2879\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-moses1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4213, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6847\",\"code\":\"2880\",\"name\":\"PROSTACURE X\",\"unit\":\"1\",\"cost\":\"3.5400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2880\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-x1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4214, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6848\",\"code\":\"2881\",\"name\":\"PROXIMERA 500G\",\"unit\":\"1\",\"cost\":\"7.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2881\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proximera-500g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4215, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6849\",\"code\":\"2882\",\"name\":\"GASTRON SUSP 100ML\",\"unit\":\"1\",\"cost\":\"0.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2882\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastron-susp-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4216, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6850\",\"code\":\"2883\",\"name\":\"GASTRONE PLUS\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2883\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastrone-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4217, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6851\",\"code\":\"2884\",\"name\":\"TOFFEES\",\"unit\":\"1\",\"cost\":\"7.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2884\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"toffees\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4218, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6852\",\"code\":\"2885\",\"name\":\"METHYLATED SP B\\/S\",\"unit\":\"1\",\"cost\":\"52.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2885\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sp-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4219, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6853\",\"code\":\"2886\",\"name\":\"MAGACID SUSP\",\"unit\":\"1\",\"cost\":\"46.2600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2886\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4220, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6854\",\"code\":\"2887\",\"name\":\"S\\/SEAS JOINT SUPPLEX\",\"unit\":\"1\",\"cost\":\"1.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2887\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-joint-supplex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4221, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6855\",\"code\":\"2888\",\"name\":\"S\\/SEAS C.L.O CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2888\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4222, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6856\",\"code\":\"2889\",\"name\":\"REDSUN\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2889\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"redsun\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4223, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6857\",\"code\":\"2890\",\"name\":\"NIBIMA\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2890\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nibima\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4224, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6858\",\"code\":\"2891\",\"name\":\"VITAGO B\\/S\",\"unit\":\"1\",\"cost\":\"1.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2891\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitago-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4225, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6859\",\"code\":\"2892\",\"name\":\"MALABASE\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2892\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malabase\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4226, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6860\",\"code\":\"2893\",\"name\":\"BASECHLOR\",\"unit\":\"1\",\"cost\":\"7.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2893\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4227, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6861\",\"code\":\"2894\",\"name\":\"QUININE SRP\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2894\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"quinine-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4228, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6862\",\"code\":\"2895\",\"name\":\"CYPONE SRP\",\"unit\":\"1\",\"cost\":\"2.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2895\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cypone-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4229, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6863\",\"code\":\"2896\",\"name\":\"ESSENTIALBB\\/S\",\"unit\":\"1\",\"cost\":\"1.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2896\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essentialbbs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4230, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6864\",\"code\":\"2897\",\"name\":\"FLU-CLO SUSP(LETAP)\",\"unit\":\"1\",\"cost\":\"0.5700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2897\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flu-clo-suspletap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4231, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6865\",\"code\":\"2898\",\"name\":\"CONTRA-72\",\"unit\":\"1\",\"cost\":\"0.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2898\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"contra-72\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4232, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6866\",\"code\":\"2899\",\"name\":\"SLIMFIT S\\/S\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2899\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"slimfit-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4233, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6867\",\"code\":\"2900\",\"name\":\"SLIMFIT M\\/S\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2900\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"slimfit-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4234, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6868\",\"code\":\"2901\",\"name\":\"CAMISA\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2901\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"camisa\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4235, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6869\",\"code\":\"2902\",\"name\":\"CRANBERRY\",\"unit\":\"1\",\"cost\":\"0.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2902\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cranberry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4236, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6870\",\"code\":\"2903\",\"name\":\"KIWI DRINK\",\"unit\":\"1\",\"cost\":\"0.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2903\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kiwi-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4237, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6871\",\"code\":\"2904\",\"name\":\"VERNA S\\/S\",\"unit\":\"1\",\"cost\":\"304.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2904\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"verna-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4238, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6872\",\"code\":\"2905\",\"name\":\"COLDAFLU\",\"unit\":\"1\",\"cost\":\"33.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2905\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coldaflu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4239, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6873\",\"code\":\"2906\",\"name\":\"XARELTO 20\",\"unit\":\"1\",\"cost\":\"7.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2906\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xarelto-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4240, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6874\",\"code\":\"2907\",\"name\":\"MIXTARD\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2907\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixtard\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4241, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6875\",\"code\":\"2908\",\"name\":\"CREEP BAND 8\",\"unit\":\"1\",\"cost\":\"1.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2908\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-band-8\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4242, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6876\",\"code\":\"2909\",\"name\":\"CREEP BAND 6\",\"unit\":\"1\",\"cost\":\"0.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2909\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"creep-band-6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4243, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6877\",\"code\":\"2910\",\"name\":\"CENTRUM 30S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2910\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"centrum-30s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4244, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6878\",\"code\":\"2911\",\"name\":\"SYRYNGE 2MLS\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2911\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"syrynge-2mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4245, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6879\",\"code\":\"2912\",\"name\":\"HONEY S\\/S\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2912\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4246, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6880\",\"code\":\"2913\",\"name\":\"HONEY B\\/S\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2913\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honey-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4247, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6881\",\"code\":\"2914\",\"name\":\"CUSSON BABY LOTION\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2914\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cusson-baby-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4248, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6882\",\"code\":\"2915\",\"name\":\"PLASTER 6INC\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2915\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-6inc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4249, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6883\",\"code\":\"2916\",\"name\":\"PLASTER M\\/S\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2916\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4250, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6884\",\"code\":\"2917\",\"name\":\"PLASTER B\\/S\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2917\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4251, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6885\",\"code\":\"2918\",\"name\":\"PLSTER S\\/S\",\"unit\":\"1\",\"cost\":\"0.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2918\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plster-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4252, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6886\",\"code\":\"2919\",\"name\":\"PLASTER VS\\/S\",\"unit\":\"1\",\"cost\":\"22.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2919\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plaster-vss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4253, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6887\",\"code\":\"2920\",\"name\":\"INSULIN SYRNG\",\"unit\":\"1\",\"cost\":\"14.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2920\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"insulin-syrng\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4254, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6888\",\"code\":\"2921\",\"name\":\"IMAX DELAY SPRAY\",\"unit\":\"1\",\"cost\":\"4.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imax-delay-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4255, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6889\",\"code\":\"2922\",\"name\":\"CLARITHROMYCIN TAB 500MG (B-CLAR)\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2922\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clarithromycin-tab-500mg-b-clar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4256, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6890\",\"code\":\"2923\",\"name\":\"CARTEF TAB 24\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2923\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-24\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4257, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6891\",\"code\":\"2924\",\"name\":\"HUGGIES WIPE BIG\",\"unit\":\"1\",\"cost\":\"22.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2924\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huggies-wipe-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4258, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6892\",\"code\":\"2925\",\"name\":\"TCP SOAP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2925\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp-soap1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4259, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6893\",\"code\":\"2926\",\"name\":\"VENTOLIN SRP ORG\",\"unit\":\"1\",\"cost\":\"43.1500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2926\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-srp-org\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4260, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6894\",\"code\":\"2927\",\"name\":\"LUCKY BITTERS\",\"unit\":\"1\",\"cost\":\"22.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2927\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bitters\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4261, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6895\",\"code\":\"2928\",\"name\":\"TCP 2OOML\",\"unit\":\"1\",\"cost\":\"2.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp-2ooml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4262, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6896\",\"code\":\"2929\",\"name\":\"VENTOLIN ORIG SYRP\",\"unit\":\"1\",\"cost\":\"6.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2929\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ventolin-orig-syrp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4263, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6897\",\"code\":\"2930\",\"name\":\"CHOCHO SOAP\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2930\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chocho-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4264, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6898\",\"code\":\"2931\",\"name\":\"CERES CAN\",\"unit\":\"1\",\"cost\":\"0.7500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2931\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceres-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4265, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6899\",\"code\":\"2932\",\"name\":\"VIP BRUSH\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2932\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vip-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4266, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6900\",\"code\":\"2933\",\"name\":\"SMOKERS BRUSH\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2933\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smokers-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:16:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4267, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6901\",\"code\":\"2934\",\"name\":\"SASSO SPRAY BIG\",\"unit\":\"1\",\"cost\":\"19.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2934\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sasso-spray-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4268, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6902\",\"code\":\"2935\",\"name\":\"SENSODYNE PASTE SMALL\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2935\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sensodyne-paste-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4269, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6903\",\"code\":\"2936\",\"name\":\"VALUPAK VIT E 400\",\"unit\":\"1\",\"cost\":\"2.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2936\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-e-400\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4270, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6904\",\"code\":\"2937\",\"name\":\"X,FERON SRP\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2937\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xferon-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4271, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6905\",\"code\":\"2938\",\"name\":\"STOPKOF COLD *CATTARRH TAB\",\"unit\":\"1\",\"cost\":\"42.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stopkof-cold-cattarrh-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4272, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6906\",\"code\":\"2939\",\"name\":\"OVULATION TEST KIT\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2939\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ovulation-test-kit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4273, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6907\",\"code\":\"2940\",\"name\":\"AMMENS POWER\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2940\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ammens-power\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4274, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6908\",\"code\":\"2941\",\"name\":\"UNIDUS LONG LOVE CONDOM\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2941\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"unidus-long-love-condom\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4275, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6909\",\"code\":\"2942\",\"name\":\"MEDICATED SOAP\",\"unit\":\"1\",\"cost\":\"6.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2942\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4276, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6910\",\"code\":\"2943\",\"name\":\"COAL TAR BAR SOAP\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2943\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coal-tar-bar-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4277, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6911\",\"code\":\"2944\",\"name\":\"KALAMINA LOTION\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2944\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kalamina-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4278, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6912\",\"code\":\"2945\",\"name\":\"MAGDOX ANTACID SUSP\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2945\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magdox-antacid-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4279, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6913\",\"code\":\"2946\",\"name\":\"DIGITAL THERMOMETOR\",\"unit\":\"1\",\"cost\":\"2.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2946\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"digital-thermometor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4280, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6914\",\"code\":\"2947\",\"name\":\"MENTHYLATED SPIRIT VERY BIG\",\"unit\":\"1\",\"cost\":\"29.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2947\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menthylated-spirit-very-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4281, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6915\",\"code\":\"2948\",\"name\":\"PROMETHAZINE SRUP\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2948\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"promethazine-srup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4282, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6916\",\"code\":\"2949\",\"name\":\"ENAPHOX SUSP\",\"unit\":\"1\",\"cost\":\"0.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2949\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enaphox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4283, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6917\",\"code\":\"2950\",\"name\":\"EPICIPRIN\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2950\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epiciprin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4284, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6918\",\"code\":\"2951\",\"name\":\"POTASSIUM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2951\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"potassium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4285, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6919\",\"code\":\"2952\",\"name\":\"PEOBIOTICS 20 STRAINS\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2952\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"peobiotics-20-strains\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4286, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6920\",\"code\":\"2953\",\"name\":\"THERMOMETER ANUS\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2953\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thermometer-anus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4287, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6921\",\"code\":\"2954\",\"name\":\"PROBIOTICS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2954\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"probiotics\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4288, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6922\",\"code\":\"2955\",\"name\":\"VISION\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2955\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vision\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4289, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6923\",\"code\":\"2956\",\"name\":\"NASAL SPRAY\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2956\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nasal-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4290, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6924\",\"code\":\"2957\",\"name\":\"CHOLINE BITARTRATE\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2957\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"choline-bitartrate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4291, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6925\",\"code\":\"2958\",\"name\":\"ESSENTIAL EMZYMES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2958\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"essential-emzymes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4292, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6926\",\"code\":\"2959\",\"name\":\"HIGH ABSORPTION COQ10\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2959\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-absorption-coq10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4293, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6927\",\"code\":\"2960\",\"name\":\"FLAXSEED OIL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2960\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flaxseed-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4294, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6928\",\"code\":\"2961\",\"name\":\"KETO FAST\\/BURN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2961\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"keto-fastburn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4295, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6929\",\"code\":\"2962\",\"name\":\"LITTLE REMEDIES GRIPE WATER\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2962\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"little-remedies-gripe-water\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4296, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6930\",\"code\":\"2963\",\"name\":\"EQUATE STOMACH RELIEF\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2963\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"equate-stomach-relief\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4297, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6931\",\"code\":\"2964\",\"name\":\"CULTURE PROBIOTIC BABY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2964\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"culture-probiotic-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4298, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6932\",\"code\":\"2965\",\"name\":\"NEUTROPHIL PLUS\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2965\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neutrophil-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4299, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6933\",\"code\":\"2966\",\"name\":\"CEYLON CINNAMON\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2966\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceylon-cinnamon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4300, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6934\",\"code\":\"2967\",\"name\":\"MAGNESIUM\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2967\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magnesium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4301, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6935\",\"code\":\"2968\",\"name\":\"D-MANNOSE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2968\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"d-mannose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4302, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6936\",\"code\":\"2969\",\"name\":\"HYALURONIC\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2969\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hyaluronic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4303, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6937\",\"code\":\"2970\",\"name\":\"OMEGA 3\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2970\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4304, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6938\",\"code\":\"2971\",\"name\":\"TART CHERRY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2971\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tart-cherry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4305, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6939\",\"code\":\"2972\",\"name\":\"NATURES BOUTY D3\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2972\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"natures-bouty-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4306, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6940\",\"code\":\"2973\",\"name\":\"TUMERIC CURCUMIN\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2973\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tumeric-curcumin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4307, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6941\",\"code\":\"2974\",\"name\":\"FORTIFY WOMENS  PROBIOTIC\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2974\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fortify-womens-probiotic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4308, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6942\",\"code\":\"2975\",\"name\":\"ALIVE ONCE DAILY\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2975\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alive-once-daily\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4309, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6943\",\"code\":\"2976\",\"name\":\"REMFRESH\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2976\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"remfresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4310, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6944\",\"code\":\"2977\",\"name\":\"VITAMIN CODE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2977\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamin-code\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4311, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6945\",\"code\":\"2978\",\"name\":\"FATHER JOHNSON\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2978\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"father-johnson\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4312, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6946\",\"code\":\"2979\",\"name\":\"DR TOBIA OMAGA 3\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2979\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dr-tobia-omaga-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4313, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6947\",\"code\":\"2980\",\"name\":\"VIRGIN COCONUT OIL\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2980\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"virgin-coconut-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4314, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6948\",\"code\":\"2981\",\"name\":\"MULTI MINERALS\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2981\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"multi-minerals\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4315, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6949\",\"code\":\"2982\",\"name\":\"C-1000\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2982\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"c-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4316, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6950\",\"code\":\"2983\",\"name\":\"GABA 500MG\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2983\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gaba-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4317, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6951\",\"code\":\"2984\",\"name\":\"NAC N -ACETYL\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2984\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nac-n-acetyl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4318, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6952\",\"code\":\"2985\",\"name\":\"DGL\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2985\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dgl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4319, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6953\",\"code\":\"2986\",\"name\":\"PROSTATE FORMULA\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2986\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostate-formula\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4320, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6954\",\"code\":\"2987\",\"name\":\"ALPHA LIPOID\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2987\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-lipoid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4321, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6955\",\"code\":\"2988\",\"name\":\"CITRACAL\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2988\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"citracal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4322, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6956\",\"code\":\"2989\",\"name\":\"BEANO ULTRA 800\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2989\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beano-ultra-800\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4323, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6957\",\"code\":\"2990\",\"name\":\"PEDIA LAX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2990\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pedia-lax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4324, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6958\",\"code\":\"2991\",\"name\":\"NATURE MADE COQ10\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2991\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nature-made-coq10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4325, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6959\",\"code\":\"2992\",\"name\":\"TAN OPTIMIZER\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2992\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tan-optimizer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4326, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6960\",\"code\":\"2993\",\"name\":\"MUCINEX FAST MAX\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2993\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mucinex-fast-max\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4327, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6961\",\"code\":\"2994\",\"name\":\"PURE ZINC 30\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2994\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pure-zinc-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4328, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6962\",\"code\":\"2995\",\"name\":\"PRESER VISION\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2995\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"preser-vision\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4329, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6963\",\"code\":\"2996\",\"name\":\"MELATOMIN\",\"unit\":\"1\",\"cost\":\"52.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2996\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"melatomin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4330, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6964\",\"code\":\"2997\",\"name\":\"5HTP\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2997\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"5htp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4331, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6965\",\"code\":\"2998\",\"name\":\"ONE A DAY MEN 50+\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2998\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-men-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4332, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6966\",\"code\":\"2999\",\"name\":\"PEEKAPOO PAD LINER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2999\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"peekapoo-pad-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4333, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6967\",\"code\":\"3000\",\"name\":\"GOODNITE\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"goodnite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4334, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6968\",\"code\":\"3001\",\"name\":\"PAMPERS SPLASHES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pampers-splashes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4335, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6969\",\"code\":\"3002\",\"name\":\"CUTTIES ESSENTIALS\",\"unit\":\"1\",\"cost\":\"9.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3002\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cutties-essentials\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4336, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6970\",\"code\":\"3003\",\"name\":\"HUGGIES LITTLE\",\"unit\":\"1\",\"cost\":\"4.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3003\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"huggies-little\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4337, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6971\",\"code\":\"3004\",\"name\":\"APPLE JUICE\",\"unit\":\"1\",\"cost\":\"0.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3004\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4338, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6972\",\"code\":\"3005\",\"name\":\"MANDANOL NASAL DROP\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mandanol-nasal-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4339, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6973\",\"code\":\"3006\",\"name\":\"DICLOFENAC SUPP\",\"unit\":\"1\",\"cost\":\"14.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3006\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclofenac-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4340, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6974\",\"code\":\"3007\",\"name\":\"TYLENOL PM 50\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol-pm-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4341, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6975\",\"code\":\"3008\",\"name\":\"ZUBES EXTRA STRONG\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3008\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-extra-strong\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4342, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6976\",\"code\":\"3009\",\"name\":\"VITAMILK  BOTTLE\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamilk-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4343, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6977\",\"code\":\"3010\",\"name\":\"VITAMILK\",\"unit\":\"1\",\"cost\":\"0.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3010\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitamilk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4344, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6978\",\"code\":\"3011\",\"name\":\"AMON CHOCOLATE\",\"unit\":\"1\",\"cost\":\"6.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3011\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amon-chocolate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4345, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6979\",\"code\":\"3012\",\"name\":\"VINKA CHOCOLATE\",\"unit\":\"1\",\"cost\":\"5.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vinka-chocolate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4346, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6980\",\"code\":\"3013\",\"name\":\"SNICKERS\",\"unit\":\"1\",\"cost\":\"8.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3013\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"snickers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4347, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6981\",\"code\":\"3014\",\"name\":\"BOUNTY\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3014\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4348, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6982\",\"code\":\"3015\",\"name\":\"MALTESERS\",\"unit\":\"1\",\"cost\":\"17.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maltesers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4349, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6983\",\"code\":\"3016\",\"name\":\"SHORT BREAD\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3016\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"short-bread\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4350, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6984\",\"code\":\"3017\",\"name\":\"CD CAPS\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3017\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cd-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4351, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6985\",\"code\":\"3018\",\"name\":\"JOY VIKIL\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3018\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vikil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4352, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6986\",\"code\":\"3019\",\"name\":\"LIQUID SOAP\",\"unit\":\"1\",\"cost\":\"10.3400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3019\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liquid-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4353, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6987\",\"code\":\"3020\",\"name\":\"~JOY VIKEL\",\"unit\":\"1\",\"cost\":\"0.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3020\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vikel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4354, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6988\",\"code\":\"3021\",\"name\":\"ACNEL GEL 20MG\",\"unit\":\"1\",\"cost\":\"32.1800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3021\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-20mg1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4355, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6989\",\"code\":\"3022\",\"name\":\"FAMACOLD\",\"unit\":\"1\",\"cost\":\"18.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3022\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4356, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6990\",\"code\":\"3023\",\"name\":\"JOINTFLEX PLUS TABS\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3023\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jointflex-plus-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4357, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6991\",\"code\":\"3024\",\"name\":\"FLOOR CLEANER\",\"unit\":\"1\",\"cost\":\"14.7700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3024\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"floor-cleaner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4358, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6992\",\"code\":\"3025\",\"name\":\"GASTRONE TAB\",\"unit\":\"1\",\"cost\":\"0.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3025\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastrone-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4359, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6993\",\"code\":\"3026\",\"name\":\"LISINOPRIL 20 CREASENT\",\"unit\":\"1\",\"cost\":\"5.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3026\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinopril-20-creasent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4360, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6994\",\"code\":\"3027\",\"name\":\"GLIBENCLAMIDE\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3027\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glibenclamide\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4361, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6995\",\"code\":\"3028\",\"name\":\"CABOZAP JUNIOR\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3028\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cabozap-junior\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4362, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6996\",\"code\":\"3029\",\"name\":\"EMGIBRUFEN\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3029\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"emgibrufen\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4363, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6997\",\"code\":\"3030\",\"name\":\"CHLORAMPHENICOL\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chloramphenicol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4364, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6998\",\"code\":\"3031\",\"name\":\"SUAVE ESSENTIAL BIG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3031\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"suave-essential-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4365, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6999\",\"code\":\"3032\",\"name\":\"TINATETT BATHING FRESH\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3032\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bathing-fresh\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4366, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7000\",\"code\":\"3033\",\"name\":\"SUAVE ESSENTIALS SMALL\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3033\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"suave-essentials-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4367, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7001\",\"code\":\"3034\",\"name\":\"FOAMING BATH\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foaming-bath\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4368, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7002\",\"code\":\"3035\",\"name\":\"DACILIN 300MG\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3035\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dacilin-300mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4369, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7003\",\"code\":\"3036\",\"name\":\"PALMAS COCO BUTTER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3036\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"palmas-coco-butter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4370, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7004\",\"code\":\"3037\",\"name\":\"CORSODYL BIG  300ML\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3037\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"corsodyl-big-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4371, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7005\",\"code\":\"3038\",\"name\":\"MOSQUITO NET\",\"unit\":\"1\",\"cost\":\"0.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3038\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mosquito-net\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4372, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7006\",\"code\":\"3039\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"14.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3039\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-face-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4373, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7007\",\"code\":\"3040\",\"name\":\"KIDS FACE MASK\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3040\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kids-face-mask\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4374, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7008\",\"code\":\"3041\",\"name\":\"GBEDEMA BIG MAN\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3041\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gbedema-big-man\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4375, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7009\",\"code\":\"3042\",\"name\":\"ULTIMATE OMEGA D3\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3042\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ultimate-omega-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4376, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7010\",\"code\":\"3043\",\"name\":\"HEMP OIL CAPSULES\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3043\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hemp-oil-capsules\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4377, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7011\",\"code\":\"3044\",\"name\":\"~MAGNESIUM\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3044\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magnesium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4378, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7012\",\"code\":\"3045\",\"name\":\"COLOSTRUM\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3045\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"colostrum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4379, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7013\",\"code\":\"3046\",\"name\":\"MOVE FREE JOINT S\\/S\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3046\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"move-free-joint-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4380, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7014\",\"code\":\"3047\",\"name\":\"TUMERIC 538\",\"unit\":\"1\",\"cost\":\"60.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3047\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tumeric-538\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4381, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7015\",\"code\":\"3048\",\"name\":\"BONE STRENTH\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3048\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bone-strenth\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4382, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7016\",\"code\":\"3049\",\"name\":\"FISH OIL\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3049\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4383, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7017\",\"code\":\"3050\",\"name\":\"L-LYSINE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3050\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"l-lysine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4384, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7018\",\"code\":\"3051\",\"name\":\"DEEP IMMUNE\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-immune\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4385, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7019\",\"code\":\"3052\",\"name\":\"SIMILASAN\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3052\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"similasan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4386, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7020\",\"code\":\"3053\",\"name\":\"MG 217\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3053\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mg-217\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4387, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7021\",\"code\":\"3054\",\"name\":\"BONINE\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3054\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4388, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7022\",\"code\":\"3055\",\"name\":\"ELTA MD\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3055\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"elta-md\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4389, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7023\",\"code\":\"3056\",\"name\":\"OCUVITE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3056\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ocuvite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4390, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7024\",\"code\":\"3057\",\"name\":\"OSTEO-BI FLEX\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3057\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osteo-bi-flex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4391, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7025\",\"code\":\"3058\",\"name\":\"MEGA RED\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3058\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mega-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4392, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7026\",\"code\":\"3059\",\"name\":\"SAMBUCUS\",\"unit\":\"1\",\"cost\":\"0.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3059\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sambucus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4393, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7027\",\"code\":\"3060\",\"name\":\"MOVE FREE B\\/S\",\"unit\":\"1\",\"cost\":\"6.9300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3060\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"move-free-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4394, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7028\",\"code\":\"3061\",\"name\":\"VIT D3\",\"unit\":\"1\",\"cost\":\"9.5300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3061\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4395, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7029\",\"code\":\"3062\",\"name\":\"VIGONX\",\"unit\":\"1\",\"cost\":\"7.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3062\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vigonx\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4396, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7030\",\"code\":\"3063\",\"name\":\"CEFUNATE SUSP\",\"unit\":\"1\",\"cost\":\"6.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3063\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefunate-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4397, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7031\",\"code\":\"3064\",\"name\":\"KINAMYCIN 300\",\"unit\":\"1\",\"cost\":\"28.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3064\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kinamycin-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4398, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7032\",\"code\":\"3065\",\"name\":\"FINE LIFE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3065\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fine-life-blood-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4399, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7033\",\"code\":\"3066\",\"name\":\"PANADOL ADVANCE 32\'S\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3066\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panadol-advance-32s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4400, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7034\",\"code\":\"3067\",\"name\":\"ARTESUNATE 30\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3067\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artesunate-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4401, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7035\",\"code\":\"3068\",\"name\":\"DIHYDROCODEINE 30MG\",\"unit\":\"1\",\"cost\":\"20.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3068\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dihydrocodeine-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4402, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7036\",\"code\":\"3069\",\"name\":\"HAND SANITIZER COCO\",\"unit\":\"1\",\"cost\":\"8.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3069\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hand-sanitizer-coco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4403, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7037\",\"code\":\"3070\",\"name\":\"MYCOCORT CREAM\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3070\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycocort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4404, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7038\",\"code\":\"3071\",\"name\":\"KEFROX SUSP\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3071\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kefrox-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4405, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7039\",\"code\":\"3072\",\"name\":\"KLEANZ SANITISER BIG\",\"unit\":\"1\",\"cost\":\"10.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3072\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kleanz-sanitiser-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4406, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7040\",\"code\":\"3073\",\"name\":\"HANDS SANITISER COCO BIG\",\"unit\":\"1\",\"cost\":\"1.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3073\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hands-sanitiser-coco-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4407, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7041\",\"code\":\"3074\",\"name\":\"ZYMAX 500\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3074\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4408, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7042\",\"code\":\"3075\",\"name\":\"OMEPRAZOLE  20\",\"unit\":\"1\",\"cost\":\"13.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3075\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omeprazole-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4409, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7043\",\"code\":\"3076\",\"name\":\"AIRFRESHNER HANGING\",\"unit\":\"1\",\"cost\":\"5.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3076\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"airfreshner-hanging\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4410, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7044\",\"code\":\"3077\",\"name\":\"LEVOTHROXINE 50MG\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3077\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"levothroxine-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4411, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7045\",\"code\":\"3078\",\"name\":\"METRO Z SUSP\",\"unit\":\"1\",\"cost\":\"3.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3078\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-z-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4412, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7046\",\"code\":\"3079\",\"name\":\"FRUSEMIDE TAB 40MG BRISTOL\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3079\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frusemide-tab-40mg-bristol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4413, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7047\",\"code\":\"3080\",\"name\":\"LUEX NASALINHALER\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3080\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-nasalinhaler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4414, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7048\",\"code\":\"3081\",\"name\":\"SANITAZER BIG\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3081\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitazer-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4415, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7049\",\"code\":\"3082\",\"name\":\"SANITIZER MEDIUM\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3082\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sanitizer-medium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4416, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7050\",\"code\":\"3083\",\"name\":\"EASY CHECK\",\"unit\":\"1\",\"cost\":\"15.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3083\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-check\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4417, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7051\",\"code\":\"3084\",\"name\":\"HEMP OIL\",\"unit\":\"1\",\"cost\":\"6.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3084\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hemp-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4418, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7052\",\"code\":\"3085\",\"name\":\"OLANZEPINE TAB 10MG\",\"unit\":\"1\",\"cost\":\"11.9600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3085\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"olanzepine-tab-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4419, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7053\",\"code\":\"3086\",\"name\":\"NESTERIX FORTE SYR\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3086\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nesterix-forte-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4420, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7054\",\"code\":\"3087\",\"name\":\"NORMO TEARS EYE DROP\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3087\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"normo-tears-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4421, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7055\",\"code\":\"3088\",\"name\":\"FACE MASK SHIELD\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3088\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-mask-shield\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4422, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7056\",\"code\":\"3089\",\"name\":\"SMARTYS KIDS GUMMY\",\"unit\":\"1\",\"cost\":\"50.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3089\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smartys-kids-gummy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4423, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7057\",\"code\":\"3090\",\"name\":\"HERB BERRY DROPS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3090\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"herb-berry-drops\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4424, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7058\",\"code\":\"3091\",\"name\":\"MCT OIL\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3091\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mct-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4425, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7059\",\"code\":\"3092\",\"name\":\"DIHYDROMYRICETIN 300MG\",\"unit\":\"1\",\"cost\":\"15.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3092\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dihydromyricetin-300mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4426, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7060\",\"code\":\"3093\",\"name\":\"AZO BLADDER CONTROL\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3093\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azo-bladder-control\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4427, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7061\",\"code\":\"3094\",\"name\":\"GEN M SUSP\",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3094\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-susp1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4428, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7062\",\"code\":\"3095\",\"name\":\"GEN M TABS 80\\/480\",\"unit\":\"1\",\"cost\":\"0.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3095\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tabs-80480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4429, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7063\",\"code\":\"3096\",\"name\":\"TOBREX EYE DROP\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3096\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tobrex-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4430, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7064\",\"code\":\"3097\",\"name\":\"DICNAC 100MG SUPP\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3097\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dicnac-100mg-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4431, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7065\",\"code\":\"3098\",\"name\":\"PROPA LINER\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3098\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"propa-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4432, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7066\",\"code\":\"3099\",\"name\":\"ANTI BACTERIAL WIPES\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3099\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anti-bacterial-wipes\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4433, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7067\",\"code\":\"3100\",\"name\":\"NATURE WAY HAIR&SKIN\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3100\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nature-way-hairskin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4434, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7068\",\"code\":\"3101\",\"name\":\"MiraLAX\",\"unit\":\"1\",\"cost\":\"5.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3101\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"miralax\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4435, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7069\",\"code\":\"3102\",\"name\":\"BIC RAZOR\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3102\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bic-razor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4436, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7070\",\"code\":\"3103\",\"name\":\"ZYMAX SUSP\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3103\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4437, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7071\",\"code\":\"3104\",\"name\":\"EAR SWAB\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3104\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ear-swab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4438, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7072\",\"code\":\"3105\",\"name\":\"FEMCARE\",\"unit\":\"1\",\"cost\":\"13.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3105\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"femcare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4439, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7073\",\"code\":\"3106\",\"name\":\"THERMOSOL SMART\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3106\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thermosol-smart\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4440, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7074\",\"code\":\"3107\",\"name\":\"EPICROM 2%\",\"unit\":\"1\",\"cost\":\"7.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3107\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epicrom-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4441, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7075\",\"code\":\"3108\",\"name\":\"FACE MASK K95\",\"unit\":\"1\",\"cost\":\"4.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3108\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"face-mask-k95\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4442, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7076\",\"code\":\"3109\",\"name\":\"FUROSEMIDE BRISTOL 40MG\",\"unit\":\"1\",\"cost\":\"0.7900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3109\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bristol-40mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4443, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7077\",\"code\":\"3110\",\"name\":\"ASCOVIT CEE SYR\",\"unit\":\"1\",\"cost\":\"16.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3110\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascovit-cee-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4444, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7078\",\"code\":\"3111\",\"name\":\"METOCHLOPRAMIDE 10MG\",\"unit\":\"1\",\"cost\":\"6.6700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3111\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metochlopramide-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4445, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7079\",\"code\":\"3112\",\"name\":\"LUBRIMAX JELLY 70 GM\",\"unit\":\"1\",\"cost\":\"13.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3112\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lubrimax-jelly-70-gm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4446, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7080\",\"code\":\"3113\",\"name\":\"AZIRON 500MG TABS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3113\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aziron-500mg-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4447, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7081\",\"code\":\"3114\",\"name\":\"BRENEX SYR\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3114\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4448, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7082\",\"code\":\"3115\",\"name\":\"GILLETTE BLUE\",\"unit\":\"1\",\"cost\":\"4.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3115\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gillette-blue\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4449, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7083\",\"code\":\"3116\",\"name\":\"SOBOLO DRINK\",\"unit\":\"1\",\"cost\":\"0.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3116\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sobolo-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4450, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7084\",\"code\":\"3117\",\"name\":\"AMPICLOX ECL\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3117\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampiclox-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4451, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7085\",\"code\":\"3118\",\"name\":\"AMOXYCILLIN CAPS\\/ BLISS 250\",\"unit\":\"1\",\"cost\":\"5.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3118\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-caps-bliss-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4452, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7086\",\"code\":\"3119\",\"name\":\"KLOVIRAL PESS\",\"unit\":\"1\",\"cost\":\"5.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3119\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kloviral-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4453, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7087\",\"code\":\"3120\",\"name\":\"LOFNAC BALM HERBAL\",\"unit\":\"1\",\"cost\":\"1.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3120\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-balm-herbal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4454, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7088\",\"code\":\"3121\",\"name\":\"LIVERPLEX INFANT\",\"unit\":\"1\",\"cost\":\"5.3900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3121\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4455, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7089\",\"code\":\"3122\",\"name\":\"OMECET CAPS\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3122\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omecet-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4456, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7090\",\"code\":\"3123\",\"name\":\"METHYLATED SPIRIT BB\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3123\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4457, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7091\",\"code\":\"3124\",\"name\":\"NESBEN TAB 200MG\",\"unit\":\"1\",\"cost\":\"8.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3124\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nesben-tab-200mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4458, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7092\",\"code\":\"3125\",\"name\":\"FUROSAMIDE TABS 40 ECL\",\"unit\":\"1\",\"cost\":\"0.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3125\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"furosamide-tabs-40-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4459, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7093\",\"code\":\"3126\",\"name\":\"FRESH BREATH SPY\",\"unit\":\"1\",\"cost\":\"15.8900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3126\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fresh-breath-spy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4460, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7094\",\"code\":\"3127\",\"name\":\"FERROUS SULPHATE STRIPS\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3127\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulphate-strips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4461, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7095\",\"code\":\"3128\",\"name\":\"VIT C CHEAWABLE\",\"unit\":\"1\",\"cost\":\"46.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3128\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-c-cheawable\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4462, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7096\",\"code\":\"3129\",\"name\":\"CETRIZAN 10MG\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3129\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cetrizan-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4463, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7097\",\"code\":\"3130\",\"name\":\"PREGNACIN PLUS\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3130\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregnacin-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4464, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7098\",\"code\":\"3131\",\"name\":\"FRUSEMIDE TAB 40MG UK\",\"unit\":\"1\",\"cost\":\"5.8300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3131\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"frusemide-tab-40mg-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4465, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7099\",\"code\":\"3132\",\"name\":\"METHLATED SPIRIT BB\",\"unit\":\"1\",\"cost\":\"9.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3132\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"methlated-spirit-bb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4466, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7100\",\"code\":\"3133\",\"name\":\"ROX DRINKS\",\"unit\":\"1\",\"cost\":\"1.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3133\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rox-drinks\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:17:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4467, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7101\",\"code\":\"3134\",\"name\":\"WELCHS DRINK\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3134\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welchs-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4468, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7102\",\"code\":\"3135\",\"name\":\"WELCHS TOFFEE\",\"unit\":\"1\",\"cost\":\"2.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3135\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welchs-toffee1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4469, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7103\",\"code\":\"3136\",\"name\":\"ORAL B PASTE MEDIUM\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3136\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-paste-medium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4470, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7104\",\"code\":\"3137\",\"name\":\"ORAL B PASTE SMALL\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-paste-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4471, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7105\",\"code\":\"3138\",\"name\":\"ARTIBASE FORTE 80\\/480 16\",\"unit\":\"1\",\"cost\":\"20.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3138\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-80480-16\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4472, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7106\",\"code\":\"3139\",\"name\":\"FOLIC ACID TAB 5MG ACCORD\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3139\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-5mg-accord\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4473, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7107\",\"code\":\"3140\",\"name\":\"8 HOUR FEVER MIX\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3140\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-mix1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4474, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7108\",\"code\":\"3141\",\"name\":\"FAMACOLD SYR\",\"unit\":\"1\",\"cost\":\"4.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3141\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syr1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4475, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7109\",\"code\":\"3142\",\"name\":\"PARALEX BABY\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3142\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-baby1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4476, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7110\",\"code\":\"3143\",\"name\":\"JAGUAR BALM 80ML\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3143\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jaguar-balm-80ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4477, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7111\",\"code\":\"3144\",\"name\":\"JAGUAR BALM 125\",\"unit\":\"1\",\"cost\":\"10.8600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3144\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jaguar-balm-125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4478, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7112\",\"code\":\"3145\",\"name\":\"ALPHA FOLIC ACID\",\"unit\":\"1\",\"cost\":\"5.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3145\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-acid1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4479, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7113\",\"code\":\"3146\",\"name\":\"ZOFIORA 120ML\",\"unit\":\"1\",\"cost\":\"6.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3146\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zofiora-120ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4480, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7114\",\"code\":\"3147\",\"name\":\"AQUQ FRESH HERBAL\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3147\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aquq-fresh-herbal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4481, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7115\",\"code\":\"3148\",\"name\":\"AQUA  FRESH MINT\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3148\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqua-fresh-mint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4482, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7116\",\"code\":\"3149\",\"name\":\"AQUA FRESH MILD&MINTY6\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3149\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aqua-fresh-mildminty6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4483, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7117\",\"code\":\"3150\",\"name\":\"LISINOVA 5MG\",\"unit\":\"1\",\"cost\":\"10.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3150\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4484, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7118\",\"code\":\"3151\",\"name\":\"LEXOFEN SUSP 150ML\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3151\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-150ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4485, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7119\",\"code\":\"3152\",\"name\":\"LEXOFEN SUSP 100ML\",\"unit\":\"1\",\"cost\":\"39.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3152\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4486, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7120\",\"code\":\"3153\",\"name\":\"BLUE SPOT EYEDROP\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3153\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blue-spot-eyedrop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4487, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7121\",\"code\":\"3154\",\"name\":\"OPTREX REFRESHING\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3154\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4488, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7122\",\"code\":\"3155\",\"name\":\"AMUZU GARLIC\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3155\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-garlic1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4489, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7123\",\"code\":\"3156\",\"name\":\"SANITESER SMALL\",\"unit\":\"1\",\"cost\":\"11.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3156\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saniteser-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4490, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7124\",\"code\":\"3157\",\"name\":\"SANITESER VERY SMALL\",\"unit\":\"1\",\"cost\":\"24.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3157\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saniteser-very-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4491, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7125\",\"code\":\"3158\",\"name\":\"COD LIVER OIL B\\/N\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3158\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cod-liver-oil-bn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4492, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7126\",\"code\":\"3159\",\"name\":\"CLOPIDOGREL 75MG\",\"unit\":\"1\",\"cost\":\"44.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3159\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clopidogrel-75mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4493, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7127\",\"code\":\"3160\",\"name\":\"PROMAN DRINK\",\"unit\":\"1\",\"cost\":\"25.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3160\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4494, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7128\",\"code\":\"3161\",\"name\":\"BRAINWESE OMEGA 3  150ML\",\"unit\":\"1\",\"cost\":\"20.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3161\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brainwese-omega-3-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4495, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7129\",\"code\":\"3162\",\"name\":\"MEDGLOBIN CAPS\",\"unit\":\"1\",\"cost\":\"1.1200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3162\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medglobin-caps1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4496, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7130\",\"code\":\"3163\",\"name\":\"MEDGLOBIN SYR\",\"unit\":\"1\",\"cost\":\"6.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3163\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medglobin-syr1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4497, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7131\",\"code\":\"3164\",\"name\":\"MAALOX SUSP SACHETS 20\",\"unit\":\"1\",\"cost\":\"3.4300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3164\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-susp-sachets-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4498, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7132\",\"code\":\"3165\",\"name\":\"POLYGEL SUSP 200ML\",\"unit\":\"1\",\"cost\":\"15.1700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3165\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"polygel-susp-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4499, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7133\",\"code\":\"3166\",\"name\":\"PRONALIN ADULT\",\"unit\":\"1\",\"cost\":\"16.8400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pronalin-adult1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4500, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7134\",\"code\":\"3167\",\"name\":\"STRETCH GO\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3167\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stretch-go1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4501, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7135\",\"code\":\"3168\",\"name\":\"VALUPAK VIT C 500MG CHEWABLE\",\"unit\":\"1\",\"cost\":\"19.6900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3168\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-vit-c-500mg-chewable\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4502, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7136\",\"code\":\"3169\",\"name\":\"RENERVE PLUS CAPS\",\"unit\":\"1\",\"cost\":\"6.4900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3169\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"renerve-plus-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4503, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7137\",\"code\":\"3170\",\"name\":\"SALAMOL CFC INHALER\",\"unit\":\"1\",\"cost\":\"9.8500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3170\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"salamol-cfc-inhaler1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4504, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7138\",\"code\":\"3171\",\"name\":\"METRO 400MG TABS EXETER\",\"unit\":\"1\",\"cost\":\"37.3700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3171\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metro-400mg-tabs-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4505, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7139\",\"code\":\"3172\",\"name\":\"KLINDA 300\",\"unit\":\"1\",\"cost\":\"11.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3172\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"klinda-300\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4506, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7140\",\"code\":\"3173\",\"name\":\"MILK OF MAGNESIUM PHILIPS\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3173\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-magnesium-philips\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4507, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7141\",\"code\":\"3174\",\"name\":\"PROCOLD  SYR 60ML\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3174\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"procold-syr-60ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4508, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7142\",\"code\":\"3175\",\"name\":\"EYECARE DRY\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3175\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"eyecare-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4509, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7143\",\"code\":\"3176\",\"name\":\"BETA POLLEN PLUS\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3176\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beta-pollen-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4510, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7144\",\"code\":\"3177\",\"name\":\"RENEWLIFE 30\\/90S\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3177\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"renewlife-3090s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4511, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7145\",\"code\":\"3178\",\"name\":\"ACTIVE B12 FOLATE\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3178\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"active-b12-folate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4512, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7146\",\"code\":\"3179\",\"name\":\"COQ-ZYME\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3179\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coq-zyme\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4513, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7147\",\"code\":\"3180\",\"name\":\"QUADRALEAN\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3180\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"quadralean\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4514, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7148\",\"code\":\"3181\",\"name\":\"GINGER ROOT 550MG\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3181\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ginger-root-550mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4515, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7149\",\"code\":\"3182\",\"name\":\"HAIR & SKIN CAPS\",\"unit\":\"1\",\"cost\":\"2.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hair-skin-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4516, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7150\",\"code\":\"3183\",\"name\":\"DIYHDROMRICETIN\",\"unit\":\"1\",\"cost\":\"2.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3183\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diyhdromricetin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4517, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7151\",\"code\":\"3184\",\"name\":\"CALCIUM B12 SYRUP\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3184\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calcium-b12-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4518, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7152\",\"code\":\"3185\",\"name\":\"COUGH & COLD CHILD CARE\",\"unit\":\"1\",\"cost\":\"1.5500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3185\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cough-cold-child-care\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4519, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7153\",\"code\":\"3186\",\"name\":\"FOLIRON TONIC 200ML\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3186\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"foliron-tonic-200ml1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4520, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7154\",\"code\":\"3187\",\"name\":\"LETAVIT SYRUP\",\"unit\":\"1\",\"cost\":\"2.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3187\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letavit-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4521, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7155\",\"code\":\"3188\",\"name\":\"MILK OF MAGNESIA LETAP\",\"unit\":\"1\",\"cost\":\"1.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3188\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4522, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7156\",\"code\":\"3189\",\"name\":\"LETARON SYRUP\",\"unit\":\"1\",\"cost\":\"1.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3189\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letaron-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4523, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7157\",\"code\":\"3190\",\"name\":\"AMOXYCILLIN SYRUP LETAP\",\"unit\":\"1\",\"cost\":\"0.4500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3190\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxycillin-syrup-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4524, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7158\",\"code\":\"3191\",\"name\":\"LETAFEN SUSPENSION\",\"unit\":\"1\",\"cost\":\"0.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3191\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letafen-suspension\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4525, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7159\",\"code\":\"3192\",\"name\":\"LETAMOX TABLET 500MG\",\"unit\":\"1\",\"cost\":\"3.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3192\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letamox-tablet-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4526, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7160\",\"code\":\"3193\",\"name\":\"XPEL SUSP DEWORMER\",\"unit\":\"1\",\"cost\":\"0.3500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3193\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xpel-susp-dewormer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4527, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7161\",\"code\":\"3194\",\"name\":\"ARFAN 20\\/120MG\",\"unit\":\"1\",\"cost\":\"0.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3194\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arfan-20120mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4528, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7162\",\"code\":\"3195\",\"name\":\"ASCORBIN TAB\",\"unit\":\"1\",\"cost\":\"6.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3195\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascorbin-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4529, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7163\",\"code\":\"3196\",\"name\":\"FUROSEMIDE TAB LETAP\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3196\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4530, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7164\",\"code\":\"3197\",\"name\":\"AZIS TAB 500MG\",\"unit\":\"1\",\"cost\":\"68.2500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3197\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tab-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4531, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7165\",\"code\":\"3198\",\"name\":\"SALINE NASAL LOCAL\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3198\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4532, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7166\",\"code\":\"3199\",\"name\":\"PLENDIL 10MG\",\"unit\":\"1\",\"cost\":\"2.3300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3199\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"plendil-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4533, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7167\",\"code\":\"3200\",\"name\":\"ENAMYCIN SUSP ECL\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3200\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enamycin-susp-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4534, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7168\",\"code\":\"3201\",\"name\":\"LILY  ROSS BRUSH\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3201\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lily-ross-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4535, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7169\",\"code\":\"3202\",\"name\":\"CLINIC CLEAR LOTION SMALL\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3202\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clinic-clear-lotion-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4536, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7170\",\"code\":\"3203\",\"name\":\"BIOSKIN MEDIUM\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3203\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bioskin-medium\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4537, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7171\",\"code\":\"3204\",\"name\":\"DAY BY DAY POWDER\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3204\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"day-by-day-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4538, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7172\",\"code\":\"3205\",\"name\":\"STYLING GEL BROKLYN\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3205\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"styling-gel-broklyn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4539, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7173\",\"code\":\"3206\",\"name\":\"HERBAL ESSENTIAL OIL 30ML\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3206\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essential-oil-30ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4540, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7174\",\"code\":\"3207\",\"name\":\"HERBAL ESSENTIALS OIL 40ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3207\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essentials-oil-40ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4541, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7175\",\"code\":\"3208\",\"name\":\"HERBAL ESSENTIALS OIL 60ML\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3208\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essentials-oil-60ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4542, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7176\",\"code\":\"3209\",\"name\":\"HERBAL ESSENTIAL OIL 10ML\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3209\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-essential-oil-10ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4543, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7177\",\"code\":\"3210\",\"name\":\"LUBRIMAX JELLY 50G\",\"unit\":\"1\",\"cost\":\"38.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3210\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lubrimax-jelly-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4544, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7178\",\"code\":\"3211\",\"name\":\"FIESTA LUBRICANT GEL SMALL\",\"unit\":\"1\",\"cost\":\"11.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3211\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fiesta-lubricant-gel-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4545, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7179\",\"code\":\"3212\",\"name\":\"TYLENOL PM 24\'S\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3212\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tylenol-pm-24s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4546, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7180\",\"code\":\"3213\",\"name\":\"GACET 500MG\",\"unit\":\"1\",\"cost\":\"28.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3213\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4547, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7181\",\"code\":\"3214\",\"name\":\"mercy soap\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3214\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mercy-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4548, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7182\",\"code\":\"3215\",\"name\":\"TCP 50ML\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3215\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tcp-50ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4549, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7183\",\"code\":\"3216\",\"name\":\"ANTREMOL D\",\"unit\":\"1\",\"cost\":\"8.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3216\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"antremol-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4550, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7184\",\"code\":\"3217\",\"name\":\"ENTRAMOL D\",\"unit\":\"1\",\"cost\":\"2.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3217\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-d\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4551, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7185\",\"code\":\"3218\",\"name\":\"GIVERS HERBAL MIXTURE BIG\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3218\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-herbal-mixture-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4552, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7186\",\"code\":\"3219\",\"name\":\"FLUCONAT 150\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3219\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluconat-150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4553, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7187\",\"code\":\"3220\",\"name\":\"LONART TAB\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3220\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lonart-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4554, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7188\",\"code\":\"3221\",\"name\":\"SOFT&GENTLE LOTION\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3221\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"softgentle-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4555, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7189\",\"code\":\"3222\",\"name\":\"RIGHT GUARD LOTION\",\"unit\":\"1\",\"cost\":\"2.8100\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3222\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"right-guard-lotion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4556, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7190\",\"code\":\"3223\",\"name\":\"ZULU EXTRA\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3223\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-extra1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4557, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7191\",\"code\":\"3224\",\"name\":\"BORIC ACID EAR DROP\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3224\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"boric-acid-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4558, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7192\",\"code\":\"3225\",\"name\":\"YAAKSON MIXTURE\",\"unit\":\"1\",\"cost\":\"0.1600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3225\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yaakson-mixture\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4559, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7193\",\"code\":\"3226\",\"name\":\"DUO COTTON PADS\",\"unit\":\"1\",\"cost\":\"3.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3226\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"duo-cotton-pads\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4560, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7194\",\"code\":\"3227\",\"name\":\"YOVANNY COUGH LOZENGES\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3227\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yovanny-cough-lozenges\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4561, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7195\",\"code\":\"3228\",\"name\":\"ABYVITA CAPS\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3228\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abyvita-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4562, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7196\",\"code\":\"3229\",\"name\":\"CIPRO TAB OSONS\",\"unit\":\"1\",\"cost\":\"6.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3229\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cipro-tab-osons\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4563, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7197\",\"code\":\"3230\",\"name\":\"BROWN SUGAR\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3230\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brown-sugar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4564, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7198\",\"code\":\"3231\",\"name\":\"SAVANNA DRINK\",\"unit\":\"1\",\"cost\":\"9.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3231\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savanna-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4565, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7199\",\"code\":\"3232\",\"name\":\"JUVER PAPER DRINK\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3232\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"juver-paper-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4566, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7200\",\"code\":\"3233\",\"name\":\"SUN EXOTIC DRINK\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3233\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sun-exotic-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4567, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7201\",\"code\":\"3234\",\"name\":\"RUBICON DRINK\",\"unit\":\"1\",\"cost\":\"10.2400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3234\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rubicon-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4568, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7202\",\"code\":\"3235\",\"name\":\"ADIDAS SPRAY\",\"unit\":\"1\",\"cost\":\"12.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3235\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adidas-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4569, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7203\",\"code\":\"3236\",\"name\":\"LOSARTAN POTASSIUM 100MG TEVA\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3236\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-100mg-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4570, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7204\",\"code\":\"3237\",\"name\":\"ADOM NATURAL MAN MIXTURE\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3237\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-natural-man-mixture1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4571, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7205\",\"code\":\"3238\",\"name\":\"GIANT EAGLE MOUTH WASH\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3238\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"giant-eagle-mouth-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4572, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7206\",\"code\":\"3239\",\"name\":\"PAMPERS S\\/S\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3239\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pampers-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4573, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7207\",\"code\":\"3240\",\"name\":\"HONEYKOF HERBAL COUGH SYRUP\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"honeykof-herbal-cough-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4574, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7208\",\"code\":\"3241\",\"name\":\"~\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3241\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4575, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7209\",\"code\":\"3242\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3242\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4576, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7210\",\"code\":\"3243\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3243\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4577, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7211\",\"code\":\"3244\",\"name\":\"ADUSA MIXTURE\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3244\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adusa-mixture\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4578, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7212\",\"code\":\"3245\",\"name\":\"LAWSON HERBAL MIXTURE\",\"unit\":\"1\",\"cost\":\"92.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lawson-herbal-mixture\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4579, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7213\",\"code\":\"3246\",\"name\":\"DELAY MAN CAPS\",\"unit\":\"1\",\"cost\":\"8.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3246\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"delay-man-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4580, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7214\",\"code\":\"3247\",\"name\":\"MALARONE PAED TABS\",\"unit\":\"1\",\"cost\":\"5.9500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3247\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malarone-paed-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4581, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7215\",\"code\":\"3248\",\"name\":\"BELLS OLIVE OIL ORIGNAL\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3248\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bells-olive-oil-orignal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4582, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7216\",\"code\":\"3249\",\"name\":\"ASCORYL PLUS SYRUP\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3249\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ascoryl-plus-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4583, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7217\",\"code\":\"3250\",\"name\":\"APETATRUST\",\"unit\":\"1\",\"cost\":\"11.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3250\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apetatrust\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4584, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7218\",\"code\":\"3251\",\"name\":\"\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3251\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4585, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7219\",\"code\":\"3252\",\"name\":\"ARZIGLOBIN SYRUP\",\"unit\":\"1\",\"cost\":\"72.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3252\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arziglobin-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4586, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7220\",\"code\":\"3253\",\"name\":\"COVONIA DRY TICKLY 150ML\",\"unit\":\"1\",\"cost\":\"24.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3253\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"covonia-dry-tickly-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4587, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7221\",\"code\":\"3254\",\"name\":\"GALFER SYRUP 300ML\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"galfer-syrup-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4588, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7222\",\"code\":\"3255\",\"name\":\"IROVIT DROP\",\"unit\":\"1\",\"cost\":\"0.6600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3255\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"irovit-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4589, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7223\",\"code\":\"3256\",\"name\":\"WIDALUM SUSP\",\"unit\":\"1\",\"cost\":\"14.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"widalum-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4590, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7224\",\"code\":\"3257\",\"name\":\"ANDREWS LIVER SALTS\",\"unit\":\"1\",\"cost\":\"5.7200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3257\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andrews-liver-salts\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4591, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7225\",\"code\":\"3258\",\"name\":\"RESCOFER SYRUP\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3258\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rescofer-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4592, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7226\",\"code\":\"3259\",\"name\":\"LIVERTONE BLOOD TONIC\",\"unit\":\"1\",\"cost\":\"89.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3259\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"livertone-blood-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4593, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7227\",\"code\":\"3260\",\"name\":\"ARTETAB SUSP\",\"unit\":\"1\",\"cost\":\"26.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3260\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artetab-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4594, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7228\",\"code\":\"3261\",\"name\":\"COQ 10 WINMILL\",\"unit\":\"1\",\"cost\":\"31.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3261\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coq-10-winmill\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4595, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7229\",\"code\":\"3262\",\"name\":\"FISH OIL GOOD NEIGH. PHARM\",\"unit\":\"1\",\"cost\":\"52.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3262\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-good-neigh-pharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4596, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7230\",\"code\":\"3263\",\"name\":\"VIT A GOOD NEIGH.PHARM\",\"unit\":\"1\",\"cost\":\"91.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-a-good-neighpharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4597, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7231\",\"code\":\"3264\",\"name\":\"ONE A DAY WOMEN TAB\",\"unit\":\"1\",\"cost\":\"17.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3264\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-women-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4598, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7232\",\"code\":\"3265\",\"name\":\"PURE MARK VEGAN PRO\",\"unit\":\"1\",\"cost\":\"53.4600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pure-mark-vegan-pro\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4599, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7233\",\"code\":\"3266\",\"name\":\"VIT A  MAJOR\",\"unit\":\"1\",\"cost\":\"41.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3266\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-a-major\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4600, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7234\",\"code\":\"3267\",\"name\":\"MULTIVITANIM GUMMIES\",\"unit\":\"1\",\"cost\":\"40.4400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3267\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"multivitanim-gummies\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4601, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7235\",\"code\":\"3268\",\"name\":\"BCOMPLEX  NAT BOUNTY\",\"unit\":\"1\",\"cost\":\"16.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3268\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bcomplex-nat-bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4602, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7236\",\"code\":\"3269\",\"name\":\"FISH OIL SUNDOWN\",\"unit\":\"1\",\"cost\":\"33.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3269\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-sundown1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4603, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7237\",\"code\":\"3270\",\"name\":\"FOLIC ACID SUNDOWN\",\"unit\":\"1\",\"cost\":\"52.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3270\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-sundown\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4604, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7238\",\"code\":\"3271\",\"name\":\"ECHINACEA  COMPLEX GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"39.9000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"echinacea-complex-good-neigh-pharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4605, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7239\",\"code\":\"3272\",\"name\":\"ONE A DAY MEN\",\"unit\":\"1\",\"cost\":\"41.2200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3272\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-men\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4606, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7240\",\"code\":\"3273\",\"name\":\"VALERIAN ROOT NAT BOUNTY\",\"unit\":\"1\",\"cost\":\"38.2800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3273\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"valerian-root-nat-bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4607, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7241\",\"code\":\"3274\",\"name\":\"VIT B12  NAT BOUNTY\",\"unit\":\"1\",\"cost\":\"17.8200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3274\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-b12-nat-bounty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4608, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7242\",\"code\":\"3275\",\"name\":\"VIT K2 MASON\",\"unit\":\"1\",\"cost\":\"35.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3275\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-k2-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4609, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7243\",\"code\":\"3276\",\"name\":\"CALCIUM 600 + D3\",\"unit\":\"1\",\"cost\":\"30.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3276\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calcium-600-d3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4610, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7244\",\"code\":\"3277\",\"name\":\"COD LIVER OIL MASON\",\"unit\":\"1\",\"cost\":\"27.4800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3277\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cod-liver-oil-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4611, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7245\",\"code\":\"3278\",\"name\":\"HEALTHY EYE GOOD NEIGH PHARM\",\"unit\":\"1\",\"cost\":\"28.3800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"healthy-eye-good-neigh-pharm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4612, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7246\",\"code\":\"3279\",\"name\":\"MELATONIN SUNDOWN\",\"unit\":\"1\",\"cost\":\"45.3600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"melatonin-sundown1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4613, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7247\",\"code\":\"3280\",\"name\":\"MENTHOLATUM NIGHT RUB\",\"unit\":\"1\",\"cost\":\"65.8800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentholatum-night-rub\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4614, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7248\",\"code\":\"3281\",\"name\":\"SAW PALMETTO CAP\",\"unit\":\"1\",\"cost\":\"52.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saw-palmetto-cap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4615, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7249\",\"code\":\"3282\",\"name\":\"SCANDISHAKE POWER\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3282\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"scandishake-power\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4616, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7250\",\"code\":\"3283\",\"name\":\"VIT E OIL\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vit-e-oil1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4617, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7251\",\"code\":\"3284\",\"name\":\"FISH OIL MAJOR\",\"unit\":\"1\",\"cost\":\"7.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3284\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-major1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4618, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7252\",\"code\":\"3285\",\"name\":\"BLACK SOAP BIG\",\"unit\":\"1\",\"cost\":\"17.6500\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3285\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-soap-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4619, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7253\",\"code\":\"3286\",\"name\":\"BLACK SOAP SMALL\",\"unit\":\"1\",\"cost\":\"17.2900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-soap-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4620, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7254\",\"code\":\"3287\",\"name\":\"D ARTEPP TAB 60\\/480MG\",\"unit\":\"1\",\"cost\":\"32.9800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3287\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"d-artepp-tab-60480mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4621, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7255\",\"code\":\"3288\",\"name\":\"MEDULAC SUPP 250MLS\",\"unit\":\"1\",\"cost\":\"9.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medulac-supp-250mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4622, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7256\",\"code\":\"3289\",\"name\":\"GAVISCON DOUBLE ACTION\",\"unit\":\"1\",\"cost\":\"51.7800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gaviscon-double-action\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4623, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7257\",\"code\":\"3290\",\"name\":\"DEEP HEAT OINT 15G\",\"unit\":\"1\",\"cost\":\"70.5800\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3290\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint-15g1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4624, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7258\",\"code\":\"3291\",\"name\":\"ALPHA LIPOIC  MASON\",\"unit\":\"1\",\"cost\":\"14.7000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3291\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-lipoic-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4625, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7259\",\"code\":\"3292\",\"name\":\"CHOLESOFF NATURE MADE\",\"unit\":\"1\",\"cost\":\"42.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cholesoff-nature-made\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4626, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7260\",\"code\":\"3293\",\"name\":\"FEROSUL MAJOR\",\"unit\":\"1\",\"cost\":\"46.7300\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferosul-major\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4627, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7261\",\"code\":\"3294\",\"name\":\"FISH OIL 100MG MAJOR\",\"unit\":\"1\",\"cost\":\"37.7400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3294\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fish-oil-100mg-major\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4628, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7262\",\"code\":\"3295\",\"name\":\"GINGKO BILOBA EXTRACT\",\"unit\":\"1\",\"cost\":\"38.0400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3295\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gingko-biloba-extract\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4629, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7263\",\"code\":\"3296\",\"name\":\"MELATONIN  GOOD NEIGHBOUR PHRM\",\"unit\":\"1\",\"cost\":\"61.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3296\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"melatonin-good-neighbour-phrm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4630, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7264\",\"code\":\"3297\",\"name\":\"LUTEIN SOFTGEL MASON\",\"unit\":\"1\",\"cost\":\"62.0200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3297\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lutein-softgel-mason\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4631, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7265\",\"code\":\"3298\",\"name\":\"OMEGA 3 1000 EPA\",\"unit\":\"1\",\"cost\":\"24.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3298\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-3-1000-epa\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4632, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7266\",\"code\":\"3299\",\"name\":\"ONE A DAY MEN 50+ 65CT\",\"unit\":\"1\",\"cost\":\"9.9200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3299\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"one-a-day-men-50-65ct\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4633, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7267\",\"code\":\"3300\",\"name\":\"MUPIROCIN OINT\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4634, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7268\",\"code\":\"3301\",\"name\":\"LORSATAN 100MG EXETER\",\"unit\":\"1\",\"cost\":\"5.6200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3301\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lorsatan-100mg-exeter\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4635, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7269\",\"code\":\"3302\",\"name\":\"BELLA AQUA WATER M\\/S\",\"unit\":\"1\",\"cost\":\"5.2000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bella-aqua-water-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4636, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7270\",\"code\":\"3303\",\"name\":\"CEFTRIA DOR 1000\",\"unit\":\"1\",\"cost\":\"7.9400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceftria-dor-1000\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4637, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7271\",\"code\":\"3304\",\"name\":\"CEFURO DOR 750\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3304\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefuro-dor-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4638, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7272\",\"code\":\"3305\",\"name\":\"LUEX CHILD CHESTY\",\"unit\":\"1\",\"cost\":\"45.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3305\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-chesty1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4639, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7273\",\"code\":\"3306\",\"name\":\"CREST CHARCOAL TOOTHPASTE\",\"unit\":\"1\",\"cost\":\"4.9900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3306\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crest-charcoal-toothpaste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4640, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7274\",\"code\":\"3307\",\"name\":\"LISTERINE MOUNTH WASH 1L\",\"unit\":\"1\",\"cost\":\"6.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"listerine-mounth-wash-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4641, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7275\",\"code\":\"3308\",\"name\":\"FLUXACIN CAPS 500MG\",\"unit\":\"1\",\"cost\":\"1.1400\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3308\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fluxacin-caps-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4642, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7276\",\"code\":\"3309\",\"name\":\"FERROUS SULPHATE 200MG\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3309\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferrous-sulphate-200mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4643, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7277\",\"code\":\"3310\",\"name\":\"DICLONOVA 100MG\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3310\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclonova-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4644, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7278\",\"code\":\"3311\",\"name\":\"HERBAL TEA\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3311\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4645, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7279\",\"code\":\"3312\",\"name\":\"SWEET ALMOND\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3312\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweet-almond\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4646, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7280\",\"code\":\"3313\",\"name\":\"CLOVES\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cloves\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4647, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7281\",\"code\":\"3314\",\"name\":\"CHIA SEED\",\"unit\":\"1\",\"cost\":\"5.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3314\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chia-seed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4648, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7282\",\"code\":\"3315\",\"name\":\"GLODEN RAISON\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3315\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gloden-raison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4649, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7283\",\"code\":\"3316\",\"name\":\"BULLET ENERGY DRINK\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3316\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bullet-energy-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4650, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7284\",\"code\":\"3317\",\"name\":\"GOLDEN RAISON\",\"unit\":\"1\",\"cost\":\"0.5600\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3317\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"golden-raison\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4651, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7285\",\"code\":\"3318\",\"name\":\"MARIE PANTY LINER\",\"unit\":\"1\",\"cost\":\"4.4200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3318\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"marie-panty-liner\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4652, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7286\",\"code\":\"3319\",\"name\":\"LETACAM (PIROXICAM)\",\"unit\":\"1\",\"cost\":\"4.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3319\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letacam-piroxicam\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4653, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7287\",\"code\":\"3320\",\"name\":\"LETAVIN TAB 500MG\",\"unit\":\"1\",\"cost\":\"0.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letavin-tab-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4654, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7288\",\"code\":\"3321\",\"name\":\"KOFOF ADULT SYRUP\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3321\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kofof-adult-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4655, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7289\",\"code\":\"3322\",\"name\":\"METFORMIN 500MG OA&J\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500mg-oaj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4656, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7290\",\"code\":\"3323\",\"name\":\"CEFUROXINE 750 INJ\",\"unit\":\"1\",\"cost\":\"1.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3323\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cefuroxine-750-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4657, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7291\",\"code\":\"3324\",\"name\":\"CEFTRIAZONE 1G INJ\",\"unit\":\"1\",\"cost\":\"27.1000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ceftriazone-1g-inj\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4658, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7292\",\"code\":\"3325\",\"name\":\"ENTRAMOL SINGLES\",\"unit\":\"1\",\"cost\":\"5.4000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3325\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-singles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4659, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7293\",\"code\":\"3326\",\"name\":\"S\\/S SEAS C.L.O 30\'S\",\"unit\":\"1\",\"cost\":\"10.5000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ss-seas-clo-30s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4660, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7294\",\"code\":\"3327\",\"name\":\"LUMETHER SUSP\",\"unit\":\"1\",\"cost\":\"5.3000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lumether-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4661, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7295\",\"code\":\"3328\",\"name\":\"ADOM MALAKARE\",\"unit\":\"1\",\"cost\":\"4.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-malakare\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4662, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7296\",\"code\":\"3329\",\"name\":\"SNICKERS S\\/S\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3329\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"snickers-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4663, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7297\",\"code\":\"3330\",\"name\":\"SKITTLES\",\"unit\":\"1\",\"cost\":\"20.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3330\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"skittles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4664, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7298\",\"code\":\"3331\",\"name\":\"JOHNSON BABY OIL S\\/S\",\"unit\":\"1\",\"cost\":\"6.8700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"johnson-baby-oil-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4665, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7299\",\"code\":\"3332\",\"name\":\"ALMOND SEED\",\"unit\":\"1\",\"cost\":\"33.4700\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3332\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"almond-seed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4666, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7300\",\"code\":\"3333\",\"name\":\"MALAR 2 DS\",\"unit\":\"1\",\"cost\":\"12.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3333\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malar-2-ds\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4667, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7301\",\"code\":\"3334\",\"name\":\"PROMAN 50+\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4668, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7302\",\"code\":\"3335\",\"name\":\"HYDROCORTISONE CREAM\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3335\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4669, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7303\",\"code\":\"3336\",\"name\":\"WELCH DRINK SMALL\",\"unit\":\"1\",\"cost\":\"7.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3336\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"welch-drink-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4670, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7304\",\"code\":\"3337\",\"name\":\"DORCO RAZOR\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3337\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dorco-razor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4671, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7305\",\"code\":\"3338\",\"name\":\"ALVITE CAPS\",\"unit\":\"1\",\"cost\":\"19.8000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3338\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alvite-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4672, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7306\",\"code\":\"3339\",\"name\":\"MENTOS CHN\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3339\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mentos-chn\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4673, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7307\",\"code\":\"3340\",\"name\":\"SEPTILIN\",\"unit\":\"1\",\"cost\":\"5.5900\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3340\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"septilin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4674, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7308\",\"code\":\"3341\",\"name\":\"TRO XIME CEFUROXINE 750\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3341\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tro-xime-cefuroxine-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4675, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7309\",\"code\":\"3342\",\"name\":\"ECL ANTACID\",\"unit\":\"1\",\"cost\":\"4.3200\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ecl-antacid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4676, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7310\",\"code\":\"3343\",\"name\":\"KOFFEX C\",\"unit\":\"1\",\"cost\":\"1.6000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3343\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koffex-c\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4677, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7311\",\"code\":\"3344\",\"name\":\"RONFIT SYRUP\",\"unit\":\"1\",\"cost\":\"68.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3344\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4678, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7312\",\"code\":\"3345\",\"name\":\"FLUCORON 200MG\",\"unit\":\"1\",\"cost\":\"4.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flucoron-200mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4679, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7313\",\"code\":\"3346\",\"name\":\"BEAUTEX\",\"unit\":\"1\",\"cost\":\"88.0000\",\"price\":\"88.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beautex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-21 07:18:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4680, 'Purchase is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"202\",\"reference_no\":\"lake01-10\",\"date\":\"2021-08-21 11:45:00\",\"supplier_id\":\"2\",\"supplier\":\"Supplier Company Name\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"262.9600\",\"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\":\"262.9600\",\"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\":\"29576\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7314\",\"product_code\":\"1234\",\"product_name\":\"PREGNACARE 19S\",\"option_id\":null,\"net_unit_cost\":\"0.8800\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"0.8800\",\"real_unit_cost\":\"0.8800\",\"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\":\"0.8800\"},{\"id\":\"29577\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7315\",\"product_code\":\"1235\",\"product_name\":\"LONART FORTE TABS\",\"option_id\":null,\"net_unit_cost\":\"15.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\":\"45.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"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\":\"15.0000\"},{\"id\":\"29578\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7316\",\"product_code\":\"1236\",\"product_name\":\"LOFNAC SUPP 100MG\",\"option_id\":null,\"net_unit_cost\":\"9.5500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"9.5500\",\"real_unit_cost\":\"9.5500\",\"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\":\"9.5500\"},{\"id\":\"29579\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7317\",\"product_code\":\"1237\",\"product_name\":\"LONART DS TABS\",\"option_id\":null,\"net_unit_cost\":\"19.5500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"39.1000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"19.5500\",\"real_unit_cost\":\"19.5500\",\"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\":\"19.5500\"},{\"id\":\"29580\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7318\",\"product_code\":\"1238\",\"product_name\":\"LONART SUSP\",\"option_id\":null,\"net_unit_cost\":\"13.4400\",\"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\":\"40.3200\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"13.4400\",\"real_unit_cost\":\"13.4400\",\"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\":\"13.4400\"},{\"id\":\"29581\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7319\",\"product_code\":\"1239\",\"product_name\":\"MENTAT TABS\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"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\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"29582\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7320\",\"product_code\":\"1240\",\"product_name\":\"LOSAR-DENK 100\",\"option_id\":null,\"net_unit_cost\":\"7.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"15.9000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"7.9500\",\"real_unit_cost\":\"7.9500\",\"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\":\"7.9500\"},{\"id\":\"29583\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7321\",\"product_code\":\"1241\",\"product_name\":\"METROLEX-F TABS\",\"option_id\":null,\"net_unit_cost\":\"7.9500\",\"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-21\",\"status\":\"received\",\"unit_cost\":\"7.9500\",\"real_unit_cost\":\"7.9500\",\"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\":\"7.9500\"},{\"id\":\"29584\",\"purchase_id\":\"202\",\"transfer_id\":null,\"product_id\":\"7322\",\"product_code\":\"1242\",\"product_name\":\"LUEX ADULT DRY\",\"option_id\":null,\"net_unit_cost\":\"4.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"104.6400\",\"quantity_balance\":\"24.0000\",\"date\":\"2021-08-21\",\"status\":\"received\",\"unit_cost\":\"4.3600\",\"real_unit_cost\":\"4.3600\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3600\"}]}', '2021-08-21 08:52:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4681, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8891\",\"code\":\"2811\",\"name\":\"SMA 1@2\",\"unit\":\"1\",\"cost\":\"16.0000\",\"price\":\"46.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2811\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sma-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-23 18:49:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4682, 'Sale is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1171\",\"date\":\"2021-08-23 23:11:28\",\"reference_no\":\"SALE\\/POS2021\\/08\\/1120\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Commandos\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"80.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\":\"80.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"80.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\":\"1183cabceafd1b983318a53076c52c8ad3b3ce35587c5fb8bcf9f57428f6166d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"11424\",\"sale_id\":\"1171\",\"product_id\":\"2561\",\"product_code\":\"65996534\",\"product_name\":\"MAGNESUIM CAPSULES\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"80.0000\",\"unit_price\":\"80.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"real_unit_price\":\"80.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-08-23 19:14:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4683, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8837\",\"code\":\"2757\",\"name\":\"ZYMAX TAB\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"8.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2757\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-25 17:37:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4684, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8076\",\"code\":\"1996\",\"name\":\"INOPRIL\",\"unit\":\"1\",\"cost\":\"6.5000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1996\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"inopril\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-26 04:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4685, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9454\",\"code\":\"26070328\",\"name\":\"INOPRIL\",\"unit\":\"1\",\"cost\":\"3.6000\",\"price\":\"5.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"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\":\"26070328\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-26 04:56:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4686, 'Sale is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1367\",\"date\":\"2021-09-01 21:31:55\",\"reference_no\":\"SALE\\/POS2021\\/09\\/1316\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Commandos\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"424.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\":\"424.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"424.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\":\"5c370cd8424d0b2597e4b42251667cc90b81eca6962d44b49633839ad42dd2ea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"13575\",\"sale_id\":\"1367\",\"product_id\":\"1736\",\"product_code\":\"PR-449\",\"product_name\":\"GALVUS MET (50\\/1000)MG TABS 60\'\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"39.0000\",\"unit_price\":\"39.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"234.0000\",\"serial_no\":\"\",\"real_unit_price\":\"39.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.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\"},{\"id\":\"13576\",\"sale_id\":\"1367\",\"product_id\":\"2857\",\"product_code\":\"12087740\",\"product_name\":\"KAMAGRA 50\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"23.0000\",\"serial_no\":\"\",\"real_unit_price\":\"23.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\"},{\"id\":\"13577\",\"sale_id\":\"1367\",\"product_id\":\"2221\",\"product_code\":\"4022679118301\",\"product_name\":\" EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"real_unit_price\":\"25.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\"},{\"id\":\"13578\",\"sale_id\":\"1367\",\"product_id\":\"2576\",\"product_code\":\"59885419\",\"product_name\":\"DIAMICRON MR 60 MG TAB\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"71.0000\",\"unit_price\":\"71.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"142.0000\",\"serial_no\":\"\",\"real_unit_price\":\"71.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.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-09-01 17:35:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4687, 'Sale is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1359\",\"date\":\"2021-09-01 21:10:40\",\"reference_no\":\"SALE\\/POS2021\\/09\\/1308\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Commandos\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"558.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\":\"558.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"1\",\"paid\":\"558.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\":\"c1d85199e122c1a26c333a6efca5ef5f7cdc932819e8fd862eb070b0b5fc3569\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"13536\",\"sale_id\":\"1359\",\"product_id\":\"1736\",\"product_code\":\"PR-449\",\"product_name\":\"GALVUS MET (50\\/1000)MG TABS 60\'\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"38.0000\",\"unit_price\":\"38.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"228.0000\",\"serial_no\":\"\",\"real_unit_price\":\"38.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.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\"},{\"id\":\"13537\",\"sale_id\":\"1359\",\"product_id\":\"2857\",\"product_code\":\"12087740\",\"product_name\":\"KAMAGRA 50\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"92.0000\",\"serial_no\":\"\",\"real_unit_price\":\"23.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.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\"},{\"id\":\"13538\",\"sale_id\":\"1359\",\"product_id\":\"2221\",\"product_code\":\"4022679118301\",\"product_name\":\" EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"25.0000\",\"unit_price\":\"25.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"25.0000\",\"serial_no\":\"\",\"real_unit_price\":\"25.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\"},{\"id\":\"13539\",\"sale_id\":\"1359\",\"product_id\":\"2576\",\"product_code\":\"59885419\",\"product_name\":\"DIAMICRON MR 60 MG TAB\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"71.0000\",\"unit_price\":\"71.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"213.0000\",\"serial_no\":\"\",\"real_unit_price\":\"71.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.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-09-01 17:36:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4688, 'Sale is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1352\",\"date\":\"2021-09-01 17:58:26\",\"reference_no\":\"SALE\\/POS2021\\/09\\/1301\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"32\",\"biller\":\"LAKE SIDE\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"52.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\":\"52.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"52.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\":\"8e33cc42cf1c722ac524c1ea634feda5dc9a1cf16605d84011428bb98dc470fd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"13427\",\"sale_id\":\"1352\",\"product_id\":\"1631\",\"product_code\":\"8850769012651\",\"product_name\":\"ENAT 4001U CAPS\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"52.0000\",\"unit_price\":\"52.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"52.0000\",\"serial_no\":\"\",\"real_unit_price\":\"52.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-09-01 18:52:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4689, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9477\",\"code\":\"57322358\",\"name\":\"ARZIGLOBIN SYR\",\"unit\":\"1\",\"cost\":\"11.9900\",\"price\":\"16.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\":\"57322358\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-09-04 05:04:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4690, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"7595\",\"code\":\"1515\",\"name\":\"IBUCAP SHALINA B\\/S\",\"unit\":\"1\",\"cost\":\"26.9200\",\"price\":\"3.3000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap-shalina-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-09-09 16:47:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4691, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8397\",\"code\":\"2317\",\"name\":\"IBUCAP\",\"unit\":\"1\",\"cost\":\"44.5000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2317\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-09-09 16:47:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4692, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"7422\",\"code\":\"1342\",\"name\":\"CIPRINOL 500\",\"unit\":\"1\",\"cost\":\"4.4700\",\"price\":\"55.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-09-09 19:29:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4693, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8295\",\"code\":\"2215\",\"name\":\"FLOTAC 75\",\"unit\":\"1\",\"cost\":\"2.7000\",\"price\":\"3.6000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"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\":\"flotac-75\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-09-10 07:43:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4694, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8242\",\"code\":\"2162\",\"name\":\"E PANOL\",\"unit\":\"1\",\"cost\":\"3.5000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2162\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"e-panol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-06 20:29:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4695, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"7710\",\"code\":\"1630\",\"name\":\"AMOKSIKLAV1G\",\"unit\":\"1\",\"cost\":\"26.0000\",\"price\":\"19.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-34.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1630\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoksiklav1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-07 20:30:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4696, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8195\",\"code\":\"2115\",\"name\":\"FLAGYL ORG SRP\",\"unit\":\"1\",\"cost\":\"62.2000\",\"price\":\"34.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2115\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flagyl-org-srp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-07 20:44:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4697, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8115\",\"code\":\"2035\",\"name\":\"MAALOX PLUS\",\"unit\":\"1\",\"cost\":\"8.5000\",\"price\":\"38.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2035\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-09 04:06:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4698, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8148\",\"code\":\"2068\",\"name\":\"MAALOX  PLUS\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"45.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2068\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-09 04:07:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4699, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9244\",\"code\":\"3164\",\"name\":\"MAALOX SUSP SACHETS 20\",\"unit\":\"1\",\"cost\":\"3.4300\",\"price\":\"1.7000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3164\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maalox-susp-sachets-20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-09 04:08:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4700, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"7477\",\"code\":\"1397\",\"name\":\"PREDNISOLONE 5MG\",\"unit\":\"1\",\"cost\":\"0.6000\",\"price\":\"1.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-8.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1397\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prednisolone-5mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-09 05:00:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4701, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8199\",\"code\":\"2119\",\"name\":\"OMEGA OIL\",\"unit\":\"1\",\"cost\":\"10.5500\",\"price\":\"9.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2119\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-09 05:57:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4702, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9502\",\"code\":\"43630736\",\"name\":\"OPIZOLE CAP \",\"unit\":\"1\",\"cost\":\"10.0500\",\"price\":\"13.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-4.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\":\"43630736\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-10-20 07:44:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4703, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9675\",\"code\":\"01727740\",\"name\":\"FLUCOX CAPS 250MG M&G\",\"unit\":\"1\",\"cost\":\"2.2500\",\"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\":\"flucox-caps-250mg-mg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-11-24 08:33:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4704, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9676\",\"code\":\"6086075\",\"name\":\"FLUCOX CAPS 250MG M&G\",\"unit\":\"1\",\"cost\":\"2.2500\",\"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\":\"60860753\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-11-24 08:33:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4705, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9678\",\"code\":\"30653543\",\"name\":\"BELLS BABY COUGH\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"16.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\":\"30653543\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-11-25 03:39:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4706, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8502\",\"code\":\"2422\",\"name\":\"PEPTO BISMOL S\\/S\",\"unit\":\"1\",\"cost\":\"5.1600\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2422\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-04 04:06:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4707, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8846\",\"code\":\"2766\",\"name\":\"PEPTO BIS 240ML\",\"unit\":\"1\",\"cost\":\"4.3000\",\"price\":\"47.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2766\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-bis-240ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-04 04:07:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4708, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8131\",\"code\":\"2051\",\"name\":\"PEPTO S\\/S\",\"unit\":\"1\",\"cost\":\"33.6700\",\"price\":\"44.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-04 04:07:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4709, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"7732\",\"code\":\"1652\",\"name\":\"PEPTO BISMOL\",\"unit\":\"1\",\"cost\":\"0.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-04 04:08:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4710, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9426\",\"code\":\"3346\",\"name\":\"BEAUTEX\",\"unit\":\"1\",\"cost\":\"88.0000\",\"price\":\"88.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beautex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-14 08:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4711, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8870\",\"code\":\"2790\",\"name\":\"WELLTEEN HER\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2790\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellteen-her\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-14 08:59:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4712, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8142\",\"code\":\"2062\",\"name\":\"DICLOLEX CREAM\",\"unit\":\"1\",\"cost\":\"6.5100\",\"price\":\"9.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2062\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-15 11:41:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4713, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1745\",\"code\":\"PR-458\",\"name\":\"ZYMAX CAPS 500MG 3\'(AZITHROMYCIN}\",\"unit\":\"1\",\"cost\":\"10.8600\",\"price\":\"16.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\":\"zvmax-caps-500mg-3azithromycin\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-23 19:40:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4714, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9154\",\"code\":\"3074\",\"name\":\"ZYMAX 500\",\"unit\":\"1\",\"cost\":\"10.6800\",\"price\":\"16.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3074\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-500\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-23 19:40:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4715, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"9183\",\"code\":\"3103\",\"name\":\"ZYMAX SUSP\",\"unit\":\"1\",\"cost\":\"8.3000\",\"price\":\"12.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3103\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zymax-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-23 19:40:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4716, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1747\",\"code\":\"PR-460\",\"name\":\"ZYMAX SUSP.\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"12.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\":\"zvmax-susp\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-23 19:41:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4717, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"8518\",\"code\":\"2438\",\"name\":\"FOLIC ACID CRESCENT 28S\",\"unit\":\"1\",\"cost\":\"7.9000\",\"price\":\"10.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-13.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2438\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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-crescent-28s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-23 19:43:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4718, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8515\",\"code\":\"2435\",\"name\":\"IBUCAP SHALINA S\\/S\",\"unit\":\"1\",\"cost\":\"28.0200\",\"price\":\"1.8000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-28.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2435\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ibucap-shalina-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-04 04:43:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4719, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1966\",\"code\":\"9556564303336\",\"name\":\"FIESTA CONDOM DOTTED\",\"unit\":\"1\",\"cost\":\"2.7100\",\"price\":\"3.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-46.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\":\"fiesta-condom-dotted\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-04 04:47:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4720, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"7319\",\"code\":\"1239\",\"name\":\"MENTAT TABS\",\"unit\":\"1\",\"cost\":\"9.0000\",\"price\":\"12.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"1.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"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\":\"mentat-tabs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-07 03:40:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4721, 'Product is being deleted by stella (User Id: 4)', '{\"model\":false}', '2022-03-07 03:40:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4722, 'Product is being deleted by stella (User Id: 4)', '{\"model\":false}', '2022-03-07 03:40:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4723, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"9859\",\"code\":\"47499993\",\"name\":\"Osteocare  plus\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"120.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\":\"47499993\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-15 18:45:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4724, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"9860\",\"code\":\"26776930\",\"name\":\"Osteocare  plus\",\"unit\":\"1\",\"cost\":\"89.0000\",\"price\":\"120.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\":\"26776930\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-15 18:54:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4725, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8198\",\"code\":\"2118\",\"name\":\"CELEBREX\",\"unit\":\"1\",\"cost\":\"63.6900\",\"price\":\"84.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2118\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"celebrex\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-22 06:11:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4726, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8188\",\"code\":\"2108\",\"name\":\"VOLTIC M\\/S\",\"unit\":\"1\",\"cost\":\"0.9300\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-17.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2108\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ms\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-29 17:10:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4727, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8608\",\"code\":\"2528\",\"name\":\"VOLTIC S\\/S PK\",\"unit\":\"1\",\"cost\":\"0.9000\",\"price\":\"1.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-116.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2528\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"voltic-ss-pk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-29 17:10:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4728, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"7851\",\"code\":\"1771\",\"name\":\"TANGO T.ROLL\",\"unit\":\"1\",\"cost\":\"12.7000\",\"price\":\"1.2000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1771\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tango-troll\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-16 20:00:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4729, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"7850\",\"code\":\"1770\",\"name\":\"ORANGE T.ROLL\",\"unit\":\"1\",\"cost\":\"15.0500\",\"price\":\"1.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1770\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orange-troll\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-16 20:00:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4730, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"7359\",\"code\":\"1279\",\"name\":\"BORGES125\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"17.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-22.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges125\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-21 07:29:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4731, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"7545\",\"code\":\"1465\",\"name\":\"BORGES 250ML\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1465\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"borges-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-21 07:30:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4732, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"9393\",\"code\":\"3313\",\"name\":\"CLOVES\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-13.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cloves\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-23 15:24:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4733, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"9884\",\"code\":\"58671038\",\"name\":\"KEFROX 500MG TAB\",\"unit\":\"1\",\"cost\":\"30.0000\",\"price\":\"40.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\":\"58671038\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-25 21:30:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4734, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"9217\",\"code\":\"3137\",\"name\":\"ORAL B PASTE SMALL\",\"unit\":\"1\",\"cost\":\"2.5000\",\"price\":\"3.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-paste-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-29 15:15:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4735, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8793\",\"code\":\"2713\",\"name\":\"ORAL B BRUSH\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"6.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2713\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oral-b-brush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-29 15:18:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4736, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"7597\",\"code\":\"1517\",\"name\":\"SPORANOX\",\"unit\":\"1\",\"cost\":\"4.2800\",\"price\":\"35.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1517\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_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\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-11 08:10:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4737, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8087\",\"code\":\"2007\",\"name\":\"SAVLON 250\",\"unit\":\"1\",\"cost\":\"15.0000\",\"price\":\"18.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"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\":\"savlon-250\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-06-04 07:38:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4738, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8230\",\"code\":\"2150\",\"name\":\"SAVLON 500ML\",\"unit\":\"1\",\"cost\":\"25.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-6.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2150\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"savlon-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-06-04 07:39:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4739, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"7839\",\"code\":\"1759\",\"name\":\"DETOL 250 ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1759\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-250-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-06-04 07:43:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4740, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8368\",\"code\":\"2288\",\"name\":\"DETOL 7MLS\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"6.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-7mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-06-04 07:43:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4741, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8366\",\"code\":\"2286\",\"name\":\"DETOL 500ML\",\"unit\":\"1\",\"cost\":\"5.0000\",\"price\":\"32.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"detol-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-06-04 07:45:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4742, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8646\",\"code\":\"2566\",\"name\":\"ADULT DIAPER\",\"unit\":\"1\",\"cost\":\"35.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-33.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2566\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adult-diaper\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-22 16:51:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4743, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"8940\",\"code\":\"2860\",\"name\":\"NIFECARD 30\",\"unit\":\"1\",\"cost\":\"10.0700\",\"price\":\"13.5000\",\"alert_quantity\":\"20.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-29.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2860\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nifecard-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-17 04:51:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4744, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"10066\",\"code\":\"00774319\",\"name\":\"DETTOL ANTICEPTIC 500ML\",\"unit\":\"1\",\"cost\":\"40.0000\",\"price\":\"45.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\":\"00774319\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-26 08:40:10');


#
# 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, 7159, 1, 7159, 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=7160 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);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1062, '2021-08-21 15:59:46', 1113, NULL, NULL, 'IPAY2021/08/1061', NULL, 'cash', '', '', '', '', '', '', '322.1400', NULL, 8, NULL, 'received', '', '322.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1063, '2021-08-21 16:00:31', 1114, NULL, NULL, 'IPAY2021/08/1062', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (1064, '2021-08-21 17:02:57', 1115, NULL, NULL, 'IPAY2021/08/1063', NULL, 'cash', '', '', '', '', '', '', '378.0200', NULL, 11, NULL, 'received', '', '378.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 (1065, '2021-08-21 17:11:42', 1116, NULL, NULL, 'IPAY2021/08/1064', NULL, 'cash', '', '', '', '', '', '', '101.0000', NULL, 11, 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 (1066, '2021-08-21 17:22:13', 1117, NULL, NULL, 'IPAY2021/08/1065', 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 (1067, '2021-08-21 18:26:33', 1118, NULL, NULL, 'IPAY2021/08/1066', 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 (1068, '2021-08-21 19:04:49', 1119, NULL, NULL, 'IPAY2021/08/1067', NULL, 'cash', '', '', '', '', '', '', '514.5000', NULL, 6, NULL, 'received', '', '514.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1069, '2021-08-21 20:26:13', 1120, NULL, NULL, 'IPAY2021/08/1068', NULL, 'cash', '', '', '', '', '', '', '106.8200', NULL, 11, NULL, 'received', '', '106.8200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1070, '2021-08-21 20:53:02', 1121, NULL, NULL, 'IPAY2021/08/1069', 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 (1071, '2021-08-21 21:14:22', 1122, NULL, NULL, 'IPAY2021/08/1070', NULL, 'cash', '', '', '', '', '', '', '13.0200', NULL, 11, NULL, 'received', '', '13.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 (1072, '2021-08-21 21:38:44', 1123, NULL, NULL, 'IPAY2021/08/1071', 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 (1073, '2021-08-21 22:05:02', 1124, NULL, NULL, 'IPAY2021/08/1072', NULL, 'cash', '', '', '', '', '', '', '210.5000', NULL, 6, NULL, 'received', '', '210.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1074, '2021-08-21 22:08:05', 1125, NULL, NULL, 'IPAY2021/08/1073', NULL, 'cash', '', '', '', '', '', '', '43.0200', NULL, 11, NULL, 'received', '', '43.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 (1075, '2021-08-21 22:17:04', 1126, NULL, NULL, 'IPAY2021/08/1074', NULL, 'cash', '', '', '', '', '', '', '243.0200', NULL, 6, NULL, 'received', '', '243.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 (1076, '2021-08-22 14:54:11', 1128, NULL, NULL, 'IPAY2021/08/1075', NULL, 'cash', '', '', '', '', '', '', '520.0000', NULL, 18, NULL, 'received', '', '520.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1077, '2021-08-22 15:01:59', 1129, NULL, NULL, 'IPAY2021/08/1076', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 18, 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 (1078, '2021-08-22 17:25:52', 1130, NULL, NULL, 'IPAY2021/08/1077', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 18, 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 (1079, '2021-08-22 17:28:31', 1131, NULL, NULL, 'IPAY2021/08/1078', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 18, 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 (1080, '2021-08-22 18:19:36', 1132, NULL, NULL, 'IPAY2021/08/1079', NULL, 'cash', '', '', '', '', '', '', '63.4000', NULL, 18, NULL, 'received', '', '63.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 (1081, '2021-08-22 18:57:35', 1133, NULL, NULL, 'IPAY2021/08/1080', NULL, 'cash', '', '', '', '', '', '', '124.7000', NULL, 18, NULL, 'received', '', '124.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 (1082, '2021-08-22 19:15:05', 1134, NULL, NULL, 'IPAY2021/08/1081', NULL, 'cash', '', '', '', '', '', '', '463.0000', NULL, 8, NULL, 'received', '', '463.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1083, '2021-08-22 19:16:18', 1135, NULL, NULL, 'IPAY2021/08/1082', NULL, 'cash', '', '', '', '', '', '', '36.4000', NULL, 18, NULL, 'received', '', '36.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 (1084, '2021-08-22 19:34:18', 1136, NULL, NULL, 'IPAY2021/08/1083', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 18, 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 (1085, '2021-08-22 20:16:01', 1137, NULL, NULL, 'IPAY2021/08/1084', NULL, 'cash', '', '', '', '', '', '', '120.9000', NULL, 8, NULL, 'received', '', '120.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 (1086, '2021-08-22 20:39:08', 1138, NULL, NULL, 'IPAY2021/08/1085', NULL, 'cash', '', '', '', '', '', '', '152.0000', NULL, 18, 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 (1087, '2021-08-22 20:43:51', 1139, NULL, NULL, 'IPAY2021/08/1086', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 8, 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 (1088, '2021-08-22 21:16:40', 1140, NULL, NULL, 'IPAY2021/08/1087', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 18, 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 (1089, '2021-08-22 21:16:47', 1141, NULL, NULL, 'IPAY2021/08/1088', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 8, 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 (1090, '2021-08-22 21:27:37', 1142, NULL, NULL, 'IPAY2021/08/1089', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 8, 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 (1091, '2021-08-22 21:38:23', 1143, NULL, NULL, 'IPAY2021/08/1090', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 8, 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 (1092, '2021-08-22 21:38:35', 1144, NULL, NULL, 'IPAY2021/08/1091', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 18, 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 (1093, '2021-08-22 21:55:15', 1145, NULL, NULL, 'IPAY2021/08/1092', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 18, 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 (1094, '2021-08-23 00:07:18', 1146, NULL, NULL, 'IPAY2021/08/1093', NULL, 'cash', '', '', '', '', '', '', '409.0400', NULL, 3, NULL, 'received', '', '409.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 (1095, '2021-08-23 09:06:35', 1147, NULL, NULL, 'IPAY2021/08/1094', 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 (1096, '2021-08-23 13:43:03', 1148, NULL, NULL, 'IPAY2021/08/1095', NULL, 'cash', '', '', '', '', '', '', '205.5000', NULL, 8, NULL, 'received', '', '205.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1097, '2021-08-23 14:10:22', 1149, NULL, NULL, 'IPAY2021/08/1096', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 8, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1098, '2021-08-23 15:40:00', 1150, NULL, NULL, 'IPAY2021/08/1097', NULL, 'cash', '', '', '', '', '', '', '299.4900', NULL, 11, NULL, 'received', '', '299.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 (1099, '2021-08-23 15:41:54', 1151, NULL, NULL, 'IPAY2021/08/1098', NULL, 'cash', '', '', '', '', '', '', '84.2700', NULL, 11, NULL, 'received', '', '84.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 (1100, '2021-08-23 16:37:50', 1152, NULL, NULL, 'IPAY2021/08/1099', NULL, 'cash', '', '', '', '', '', '', '449.9500', NULL, 16, NULL, 'received', '', '449.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 (1101, '2021-08-23 17:45:53', 1153, NULL, NULL, 'IPAY2021/08/1100', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 11, 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 (1102, '2021-08-23 18:10:19', 1154, NULL, NULL, 'IPAY2021/08/1101', NULL, 'cash', '', '', '', '', '', '', '306.5000', NULL, 18, NULL, 'received', '', '306.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1103, '2021-08-23 18:15:07', 1155, NULL, NULL, 'IPAY2021/08/1102', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 11, 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 (1104, '2021-08-23 18:31:08', 1156, NULL, NULL, 'IPAY2021/08/1103', NULL, 'cash', '', '', '', '', '', '', '73.2000', NULL, 18, NULL, 'received', '', '73.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 (1105, '2021-08-23 18:38:09', 1157, NULL, NULL, 'IPAY2021/08/1104', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 18, 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 (1106, '2021-08-23 19:36:33', 1158, NULL, NULL, 'IPAY2021/08/1105', NULL, 'cash', '', '', '', '', '', '', '88.6000', NULL, 11, NULL, 'received', '', '88.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 (1107, '2021-08-23 19:45:17', 1159, NULL, NULL, 'IPAY2021/08/1106', NULL, 'cash', '', '', '', '', '', '', '191.6000', NULL, 18, 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 (1108, '2021-08-23 20:02:09', 1160, NULL, NULL, 'IPAY2021/08/1107', NULL, 'cash', '', '', '', '', '', '', '49.3500', NULL, 11, NULL, 'received', '', '49.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 (1109, '2021-08-23 20:40:00', 1161, NULL, NULL, 'IPAY2021/08/1108', NULL, 'cash', '', '', '', '', '', '', '263.5000', NULL, 18, 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 (1110, '2021-08-23 21:04:12', 1162, NULL, NULL, 'IPAY2021/08/1109', NULL, 'cash', '', '', '', '', '', '', '188.0000', NULL, 18, NULL, 'received', '', '188.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1111, '2021-08-23 21:06:10', 1163, NULL, NULL, 'IPAY2021/08/1110', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 18, 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 (1112, '2021-08-23 21:23:08', 1164, NULL, NULL, 'IPAY2021/08/1111', NULL, 'cash', '', '', '', '', '', '', '241.0000', NULL, 6, NULL, 'received', '', '241.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1113, '2021-08-23 21:27:58', 1165, NULL, NULL, 'IPAY2021/08/1112', NULL, 'cash', '', '', '', '', '', '', '81.5000', NULL, 6, NULL, 'received', '', '81.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1114, '2021-08-23 21:34:22', 1166, NULL, NULL, 'IPAY2021/08/1113', NULL, 'cash', '', '', '', '', '', '', '67.8500', NULL, 11, NULL, 'received', '', '67.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 (1115, '2021-08-23 21:43:20', 1167, NULL, NULL, 'IPAY2021/08/1114', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 18, 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 (1116, '2021-08-23 21:44:12', 1168, NULL, NULL, 'IPAY2021/08/1115', 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 (1117, '2021-08-23 21:49:19', 1169, NULL, NULL, 'IPAY2021/08/1116', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 11, 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 (1118, '2021-08-23 22:22:58', 1170, NULL, NULL, 'IPAY2021/08/1117', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 3, 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 (1120, '2021-08-24 13:22:11', 1172, NULL, NULL, 'IPAY2021/08/1119', NULL, 'cash', '', '', '', '', '', '', '139.5000', NULL, 7, 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 (1121, '2021-08-24 13:50:08', 1173, NULL, NULL, 'IPAY2021/08/1120', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 7, 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 (1122, '2021-08-24 14:25:01', 1174, NULL, NULL, 'IPAY2021/08/1121', NULL, 'cash', '', '', '', '', '', '', '584.4300', NULL, 16, NULL, 'received', '', '584.4300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1123, '2021-08-24 14:31:07', 1175, NULL, NULL, 'IPAY2021/08/1122', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 16, 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 (1124, '2021-08-24 15:28:58', 1176, NULL, NULL, 'IPAY2021/08/1123', 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 (1125, '2021-08-24 15:47:12', 1177, NULL, NULL, 'IPAY2021/08/1124', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 16, 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 (1126, '2021-08-24 16:16:14', 1178, NULL, NULL, 'IPAY2021/08/1125', 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 (1127, '2021-08-24 19:09:39', 1179, NULL, NULL, 'IPAY2021/08/1126', NULL, 'cash', '', '', '', '', '', '', '623.5200', NULL, 6, NULL, 'received', '', '623.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 (1128, '2021-08-24 19:23:55', 1180, NULL, NULL, 'IPAY2021/08/1127', NULL, 'cash', '', '', '', '', '', '', '215.5200', NULL, 11, NULL, 'received', '', '215.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 (1129, '2021-08-24 19:28:04', 1181, NULL, NULL, 'IPAY2021/08/1128', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 6, 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 (1130, '2021-08-24 19:30:23', 1182, NULL, NULL, 'IPAY2021/08/1129', 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 (1131, '2021-08-24 20:12:43', 1183, NULL, NULL, 'IPAY2021/08/1130', NULL, 'cash', '', '', '', '', '', '', '117.0000', NULL, 6, 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 (1132, '2021-08-24 20:50:42', 1184, NULL, NULL, 'IPAY2021/08/1131', NULL, 'cash', '', '', '', '', '', '', '153.7000', NULL, 11, NULL, 'received', '', '153.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 (1133, '2021-08-24 21:39:52', 1185, NULL, NULL, 'IPAY2021/08/1132', 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 (1134, '2021-08-24 21:45:04', 1186, NULL, NULL, 'IPAY2021/08/1133', NULL, 'cash', '', '', '', '', '', '', '877.2000', NULL, 18, NULL, 'received', '', '877.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 (1135, '2021-08-24 21:53:00', 1187, NULL, NULL, 'IPAY2021/08/1134', NULL, 'cash', '', '', '', '', '', '', '85.5000', NULL, 6, NULL, 'received', '', '85.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1136, '2021-08-24 21:58:47', 1188, NULL, NULL, 'IPAY2021/08/1135', 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 (1137, '2021-08-24 22:58:10', 1189, NULL, NULL, 'IPAY2021/08/1136', NULL, 'cash', '', '', '', '', '', '', '225.0000', NULL, 3, NULL, 'received', '', '225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1138, '2021-08-24 23:02:32', 1190, NULL, NULL, 'IPAY2021/08/1137', NULL, 'cash', '', '', '', '', '', '', '187.0000', NULL, 3, 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 (1139, '2021-08-24 23:49:17', 1191, NULL, NULL, 'IPAY2021/08/1138', NULL, 'cash', '', '', '', '', '', '', '157.0200', NULL, 3, NULL, 'received', '', '157.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 (1140, '2021-08-25 12:43:17', 1192, NULL, NULL, 'IPAY2021/08/1139', NULL, 'cash', '', '', '', '', '', '', '306.0000', NULL, 7, NULL, 'received', '', '306.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1141, '2021-08-25 13:00:06', 1193, NULL, NULL, 'IPAY2021/08/1140', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 16, 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 (1142, '2021-08-25 14:22:59', 1194, NULL, NULL, 'IPAY2021/08/1141', 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 (1143, '2021-08-25 15:10:57', 1195, NULL, NULL, 'IPAY2021/08/1142', NULL, 'cash', '', '', '', '', '', '', '299.0200', NULL, 14, NULL, 'received', '', '299.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 (1144, '2021-08-25 16:13:52', 1196, NULL, NULL, 'IPAY2021/08/1143', NULL, 'cash', '', '', '', '', '', '', '284.6100', NULL, 16, NULL, 'received', '', '284.6100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1145, '2021-08-25 16:58:00', 1197, NULL, NULL, 'IPAY2021/08/1144', NULL, 'cash', '', '', '', '', '', '', '143.0000', NULL, 18, NULL, 'received', '', '143.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1146, '2021-08-25 19:21:28', 1198, NULL, NULL, 'IPAY2021/08/1145', NULL, 'cash', '', '', '', '', '', '', '403.2000', NULL, 6, NULL, 'received', '', '403.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 (1147, '2021-08-25 21:23:13', 1199, NULL, NULL, 'IPAY2021/08/1146', NULL, 'cash', '', '', '', '', '', '', '576.6000', NULL, 11, NULL, 'received', '', '576.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 (1148, '2021-08-25 21:25:28', 1200, NULL, NULL, 'IPAY2021/08/1147', NULL, 'cash', '', '', '', '', '', '', '299.5200', NULL, 6, NULL, 'received', '', '299.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 (1149, '2021-08-25 21:27:33', 1201, NULL, NULL, 'IPAY2021/08/1148', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 11, 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 (1150, '2021-08-25 21:47:30', 1202, NULL, NULL, 'IPAY2021/08/1149', NULL, 'cash', '', '', '', '', '', '', '813.9000', NULL, 18, NULL, 'received', '', '813.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 (1151, '2021-08-25 21:55:00', 1203, NULL, NULL, 'IPAY2021/08/1150', 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 (1152, '2021-08-25 22:11:20', 1204, NULL, NULL, 'IPAY2021/08/1151', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 6, 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 (1153, '2021-08-26 08:47:06', 1205, NULL, NULL, 'IPAY2021/08/1152', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 3, 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 (1154, '2021-08-26 09:02:23', 1206, NULL, NULL, 'IPAY2021/08/1153', 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 (1155, '2021-08-26 13:22:28', 1207, NULL, NULL, 'IPAY2021/08/1154', NULL, 'cash', '', '', '', '', '', '', '144.6100', NULL, 14, NULL, 'received', '', '144.6100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1156, '2021-08-26 14:08:17', 1208, NULL, NULL, 'IPAY2021/08/1155', NULL, 'cash', '', '', '', '', '', '', '59.3000', NULL, 7, NULL, 'received', '', '59.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 (1157, '2021-08-26 14:38:12', 1209, NULL, NULL, 'IPAY2021/08/1156', 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 (1158, '2021-08-26 14:59:29', 1210, NULL, NULL, 'IPAY2021/08/1157', NULL, 'cash', '', '', '', '', '', '', '54.0200', NULL, 14, NULL, 'received', '', '54.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 (1159, '2021-08-26 15:10:26', 1211, NULL, NULL, 'IPAY2021/08/1158', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 11, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1160, '2021-08-26 15:14:40', 1212, NULL, NULL, 'IPAY2021/08/1159', NULL, 'cash', '', '', '', '', '', '', '407.6000', NULL, 16, NULL, 'received', '', '407.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 (1161, '2021-08-26 17:31:41', 1213, NULL, NULL, 'IPAY2021/08/1160', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 11, 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 (1162, '2021-08-26 18:10:11', 1214, NULL, NULL, 'IPAY2021/08/1161', NULL, 'cash', '', '', '', '', '', '', '118.0000', NULL, 18, 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 (1163, '2021-08-26 18:13:57', 1215, NULL, NULL, 'IPAY2021/08/1162', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 11, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1164, '2021-08-26 18:27:28', 1216, NULL, NULL, 'IPAY2021/08/1163', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 18, 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 (1165, '2021-08-26 18:35:47', 1217, NULL, NULL, 'IPAY2021/08/1164', 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 (1166, '2021-08-26 19:00:19', 1218, NULL, NULL, 'IPAY2021/08/1165', NULL, 'cash', '', '', '', '', '', '', '283.0000', NULL, 6, NULL, 'received', '', '283.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1167, '2021-08-26 19:03:24', 1219, NULL, NULL, 'IPAY2021/08/1166', NULL, 'cash', '', '', '', '', '', '', '84.0000', NULL, 18, 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 (1168, '2021-08-26 20:13:05', 1220, NULL, NULL, 'IPAY2021/08/1167', NULL, 'cash', '', '', '', '', '', '', '565.4000', NULL, 18, NULL, 'received', '', '565.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 (1169, '2021-08-26 20:16:32', 1221, NULL, NULL, 'IPAY2021/08/1168', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 18, 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 (1170, '2021-08-26 20:39:55', 1222, NULL, NULL, 'IPAY2021/08/1169', NULL, 'cash', '', '', '', '', '', '', '222.1400', NULL, 6, NULL, 'received', '', '222.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1171, '2021-08-26 20:42:46', 1223, NULL, NULL, 'IPAY2021/08/1170', NULL, 'cash', '', '', '', '', '', '', '116.6000', NULL, 11, NULL, 'received', '', '116.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 (1172, '2021-08-26 21:02:14', 1224, NULL, NULL, 'IPAY2021/08/1171', NULL, 'cash', '', '', '', '', '', '', '84.6000', NULL, 18, NULL, 'received', '', '84.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 (1173, '2021-08-26 21:17:16', 1225, NULL, NULL, 'IPAY2021/08/1172', 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 (1174, '2021-08-26 21:26:59', 1226, NULL, NULL, 'IPAY2021/08/1173', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 18, 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 (1175, '2021-08-26 21:37:38', 1227, NULL, NULL, 'IPAY2021/08/1174', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 18, 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 (1176, '2021-08-26 21:41:33', 1228, NULL, NULL, 'IPAY2021/08/1175', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 18, 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 (1177, '2021-08-26 21:46:07', 1229, NULL, NULL, 'IPAY2021/08/1176', NULL, 'cash', '', '', '', '', '', '', '160.1100', NULL, 6, NULL, 'received', '', '160.1100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1178, '2021-08-26 21:54:19', 1230, NULL, NULL, 'IPAY2021/08/1177', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 6, 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 (1179, '2021-08-26 21:58:31', 1231, NULL, NULL, 'IPAY2021/08/1178', NULL, 'cash', '', '', '', '', '', '', '48.0200', NULL, 6, NULL, 'received', '', '48.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 (1180, '2021-08-27 01:08:12', 1232, NULL, NULL, 'IPAY2021/08/1179', NULL, 'cash', '', '', '', '', '', '', '84.0000', NULL, 3, 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 (1181, '2021-08-27 09:39:49', 1233, NULL, NULL, 'IPAY2021/08/1180', NULL, 'cash', '', '', '', '', '', '', '131.5000', NULL, 17, NULL, 'received', '', '131.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1182, '2021-08-27 09:49:39', 1234, NULL, NULL, 'IPAY2021/08/1181', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 17, 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 (1183, '2021-08-27 12:27:25', 1235, NULL, NULL, 'IPAY2021/08/1182', NULL, 'cash', '', '', '', '', '', '', '101.1000', NULL, 17, NULL, 'received', '101', '101.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 (1184, '2021-08-27 14:46:09', 1236, NULL, NULL, 'IPAY2021/08/1183', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 15, 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 (1185, '2021-08-27 15:40:02', 1237, NULL, NULL, 'IPAY2021/08/1184', NULL, 'cash', '', '', '', '', '', '', '441.9000', NULL, 8, NULL, 'received', '', '441.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 (1186, '2021-08-27 16:14:16', 1238, NULL, NULL, 'IPAY2021/08/1185', NULL, 'cash', '', '', '', '', '', '', '218.2000', NULL, 17, NULL, 'received', '', '218.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 (1187, '2021-08-27 19:09:48', 1239, NULL, NULL, 'IPAY2021/08/1186', NULL, 'cash', '', '', '', '', '', '', '121.9000', NULL, 11, NULL, 'received', '', '121.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 (1188, '2021-08-27 19:35:10', 1240, NULL, NULL, 'IPAY2021/08/1187', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 11, 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 (1189, '2021-08-27 20:17:25', 1241, NULL, NULL, 'IPAY2021/08/1188', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 11, NULL, 'received', '', '45.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1190, '2021-08-27 20:34:48', 1242, NULL, NULL, 'IPAY2021/08/1189', NULL, 'cash', '', '', '', '', '', '', '606.9100', NULL, 16, NULL, 'received', '', '606.9100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1191, '2021-08-27 21:02:06', 1243, NULL, NULL, 'IPAY2021/08/1190', NULL, 'cash', '', '', '', '', '', '', '108.8000', NULL, 7, NULL, 'received', '', '108.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 (1192, '2021-08-27 21:02:16', 1244, NULL, NULL, 'IPAY2021/08/1191', 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 (1193, '2021-08-27 21:05:18', 1245, NULL, NULL, 'IPAY2021/08/1192', 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 (1194, '2021-08-27 21:09:58', 1246, NULL, NULL, 'IPAY2021/08/1193', NULL, 'cash', '', '', '', '', '', '', '134.3000', NULL, 16, NULL, 'received', '', '134.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 (1195, '2021-08-27 21:17:32', 1247, NULL, NULL, 'IPAY2021/08/1194', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 7, 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 (1196, '2021-08-27 21:39:32', 1248, NULL, NULL, 'IPAY2021/08/1195', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 16, 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 (1197, '2021-08-27 21:54:36', 1249, NULL, NULL, 'IPAY2021/08/1196', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 11, 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 (1198, '2021-08-28 13:34:00', 1250, NULL, NULL, 'IPAY2021/08/1197', NULL, 'cash', '', '', '', '', '', '', '396.5000', NULL, 7, 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 (1199, '2021-08-28 14:32:25', 1251, NULL, NULL, 'IPAY2021/08/1198', NULL, 'cash', '', '', '', '', '', '', '17.4000', NULL, 7, NULL, 'received', '', '17.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 (1200, '2021-08-28 15:11:27', 1252, NULL, NULL, 'IPAY2021/08/1199', NULL, 'cash', '', '', '', '', '', '', '8.9000', NULL, 7, NULL, 'received', '', '8.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 (1201, '2021-08-28 16:06:54', 1253, NULL, NULL, 'IPAY2021/08/1200', NULL, 'cash', '', '', '', '', '', '', '308.5000', NULL, 16, 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 (1202, '2021-08-28 16:12:52', 1254, NULL, NULL, 'IPAY2021/08/1201', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 16, 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 (1203, '2021-08-28 17:15:46', 1255, NULL, NULL, 'IPAY2021/08/1202', NULL, 'cash', '', '', '', '', '', '', '125.0000', NULL, 18, NULL, 'received', '', '125.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1204, '2021-08-28 18:03:37', 1256, NULL, NULL, 'IPAY2021/08/1203', NULL, 'cash', '', '', '', '', '', '', '139.7000', NULL, 18, NULL, 'received', '', '139.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 (1205, '2021-08-28 18:52:32', 1257, NULL, NULL, 'IPAY2021/08/1204', NULL, 'cash', '', '', '', '', '', '', '50.4000', NULL, 18, NULL, 'received', '', '50.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 (1206, '2021-08-28 19:06:26', 1258, NULL, NULL, 'IPAY2021/08/1205', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 18, 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 (1207, '2021-08-28 19:35:16', 1259, NULL, NULL, 'IPAY2021/08/1206', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 18, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1208, '2021-08-28 19:47:41', 1260, NULL, NULL, 'IPAY2021/08/1207', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 18, 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 (1209, '2021-08-28 19:59:14', 1261, NULL, NULL, 'IPAY2021/08/1208', NULL, 'cash', '', '', '', '', '', '', '108.0000', NULL, 18, 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 (1210, '2021-08-28 20:02:30', 1262, NULL, NULL, 'IPAY2021/08/1209', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 18, 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 (1211, '2021-08-28 20:28:34', 1263, NULL, NULL, 'IPAY2021/08/1210', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 18, 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 (1212, '2021-08-28 20:40:38', 1264, NULL, NULL, 'IPAY2021/08/1211', NULL, 'cash', '', '', '', '', '', '', '469.3200', NULL, 6, NULL, 'received', '', '469.3200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1213, '2021-08-28 20:43:26', 1265, NULL, NULL, 'IPAY2021/08/1212', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 18, 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 (1214, '2021-08-28 21:02:34', 1266, NULL, NULL, 'IPAY2021/08/1213', NULL, 'cash', '', '', '', '', '', '', '159.0000', NULL, 11, NULL, 'received', '', '159.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1215, '2021-08-28 21:20:42', 1267, NULL, NULL, 'IPAY2021/08/1214', NULL, 'cash', '', '', '', '', '', '', '345.2500', NULL, 11, NULL, 'received', '', '345.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 (1216, '2021-08-28 21:31:59', 1268, NULL, NULL, 'IPAY2021/08/1215', 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 (1217, '2021-08-28 21:43:03', 1269, NULL, NULL, 'IPAY2021/08/1216', 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 (1218, '2021-08-28 21:47:28', 1270, NULL, NULL, 'IPAY2021/08/1217', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 6, 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 (1219, '2021-08-28 22:01:30', 1271, NULL, NULL, 'IPAY2021/08/1218', NULL, 'cash', '', '', '', '', '', '', '197.0000', NULL, 18, 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 (1220, '2021-08-29 11:57:52', 1272, NULL, NULL, 'IPAY2021/08/1219', NULL, 'cash', '', '', '', '', '', '', '111.0000', NULL, 18, 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 (1221, '2021-08-29 13:49:02', 1273, NULL, NULL, 'IPAY2021/08/1220', NULL, 'cash', '', '', '', '', '', '', '136.1000', NULL, 18, NULL, 'received', '', '136.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 (1222, '2021-08-29 14:03:21', 1274, NULL, NULL, 'IPAY2021/08/1221', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 18, 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 (1223, '2021-08-29 14:44:21', 1275, NULL, NULL, 'IPAY2021/08/1222', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 18, 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 (1224, '2021-08-29 15:38:38', 1276, NULL, NULL, 'IPAY2021/08/1223', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 18, 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 (1225, '2021-08-29 16:05:26', 1277, NULL, NULL, 'IPAY2021/08/1224', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 18, 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 (1226, '2021-08-29 16:54:59', 1278, NULL, NULL, 'IPAY2021/08/1225', NULL, 'cash', '', '', '', '', '', '', '39.8000', NULL, 18, NULL, 'received', '', '39.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 (1227, '2021-08-29 18:13:52', 1279, NULL, NULL, 'IPAY2021/08/1226', NULL, 'cash', '', '', '', '', '', '', '176.7100', NULL, 14, NULL, 'received', '', '176.7100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1228, '2021-08-29 19:03:44', 1280, NULL, NULL, 'IPAY2021/08/1227', NULL, 'cash', '', '', '', '', '', '', '301.6600', NULL, 8, NULL, 'received', '', '301.6600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1229, '2021-08-29 19:30:51', 1281, NULL, NULL, 'IPAY2021/08/1228', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 8, 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 (1230, '2021-08-29 19:53:40', 1282, NULL, NULL, 'IPAY2021/08/1229', NULL, 'cash', '', '', '', '', '', '', '160.5000', NULL, 14, NULL, 'received', '', '160.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1231, '2021-08-29 20:10:56', 1283, NULL, NULL, 'IPAY2021/08/1230', NULL, 'cash', '', '', '', '', '', '', '138.0200', NULL, 8, NULL, 'received', '', '138.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 (1232, '2021-08-29 21:04:59', 1284, NULL, NULL, 'IPAY2021/08/1231', NULL, 'cash', '', '', '', '', '', '', '249.0000', NULL, 18, NULL, 'received', '', '249.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1233, '2021-08-29 21:13:15', 1285, NULL, NULL, 'IPAY2021/08/1232', NULL, 'cash', '', '', '', '', '', '', '105.4000', NULL, 18, NULL, 'received', '', '105.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 (1234, '2021-08-29 21:21:44', 1286, NULL, NULL, 'IPAY2021/08/1233', NULL, 'cash', '', '', '', '', '', '', '97.0000', NULL, 8, NULL, 'received', '', '97.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1235, '2021-08-29 21:36:26', 1287, NULL, NULL, 'IPAY2021/08/1234', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (1236, '2021-08-29 21:46:30', 1288, NULL, NULL, 'IPAY2021/08/1235', NULL, 'cash', '', '', '', '', '', '', '180.2000', NULL, 14, NULL, 'received', '', '180.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 (1237, '2021-08-29 21:48:52', 1289, NULL, NULL, 'IPAY2021/08/1236', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 14, 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 (1238, '2021-08-29 22:03:23', 1290, NULL, NULL, 'IPAY2021/08/1237', NULL, 'cash', '', '', '', '', '', '', '41.8000', NULL, 8, NULL, 'received', '', '41.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 (1239, '2021-08-30 10:54:34', 1291, NULL, NULL, 'IPAY2021/08/1238', NULL, 'cash', '', '', '', '', '', '', '338.3000', NULL, 18, NULL, 'received', '', '338.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 (1240, '2021-08-30 12:44:26', 1292, NULL, NULL, 'IPAY2021/08/1239', NULL, 'cash', '', '', '', '', '', '', '103.5000', NULL, 18, 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 (1241, '2021-08-30 13:20:41', 1293, NULL, NULL, 'IPAY2021/08/1240', NULL, 'cash', '', '', '', '', '', '', '504.7300', NULL, 7, NULL, 'received', '', '504.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 (1242, '2021-08-30 13:50:01', 1294, NULL, NULL, 'IPAY2021/08/1241', NULL, 'cash', '', '', '', '', '', '', '266.5000', NULL, 18, NULL, 'received', '', '266.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1243, '2021-08-30 13:50:27', 1295, NULL, NULL, 'IPAY2021/08/1242', NULL, 'cash', '', '', '', '', '', '', '169.1700', NULL, 14, NULL, 'received', '', '169.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 (1244, '2021-08-30 13:55:02', 1296, NULL, NULL, 'IPAY2021/08/1243', 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 (1245, '2021-08-30 14:26:39', 1297, NULL, NULL, 'IPAY2021/08/1244', 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 (1246, '2021-08-30 14:29:06', 1298, NULL, NULL, 'IPAY2021/08/1245', 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 (1247, '2021-08-30 14:41:54', 1299, NULL, NULL, 'IPAY2021/08/1246', NULL, 'cash', '', '', '', '', '', '', '93.2000', NULL, 18, NULL, 'received', '', '93.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 (1248, '2021-08-30 15:03:45', 1300, NULL, NULL, 'IPAY2021/08/1247', 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 (1249, '2021-08-30 15:04:48', 1301, NULL, NULL, 'IPAY2021/08/1248', NULL, 'cash', '', '', '', '', '', '', '95.0200', NULL, 14, NULL, 'received', '', '95.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 (1250, '2021-08-30 15:16:58', 1302, NULL, NULL, 'IPAY2021/08/1249', NULL, 'cash', '', '', '', '', '', '', '43.0000', NULL, 18, 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 (1251, '2021-08-30 15:55:24', 1303, NULL, NULL, 'IPAY2021/08/1250', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 18, 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 (1252, '2021-08-30 18:55:27', 1304, NULL, NULL, 'IPAY2021/08/1251', NULL, 'cash', '', '', '', '', '', '', '296.5300', NULL, 6, NULL, 'received', '', '296.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1253, '2021-08-30 19:50:21', 1305, NULL, NULL, 'IPAY2021/08/1252', NULL, 'cash', '', '', '', '', '', '', '596.0200', NULL, 16, NULL, 'received', '', '596.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 (1254, '2021-08-30 19:57:46', 1306, NULL, NULL, 'IPAY2021/08/1253', NULL, 'cash', '', '', '', '', '', '', '300.2400', NULL, 11, NULL, 'received', '', '300.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1255, '2021-08-30 20:40:06', 1307, NULL, NULL, 'IPAY2021/08/1254', NULL, 'cash', '', '', '', '', '', '', '60.5000', NULL, 16, NULL, 'received', '', '60.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1256, '2021-08-30 21:16:38', 1308, NULL, NULL, 'IPAY2021/08/1255', NULL, 'cash', '', '', '', '', '', '', '546.5300', NULL, 6, NULL, 'received', '', '546.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1257, '2021-08-30 21:37:14', 1309, NULL, NULL, 'IPAY2021/08/1256', 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 (1258, '2021-08-30 21:41:28', 1310, NULL, NULL, 'IPAY2021/08/1257', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 16, 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 (1259, '2021-08-30 21:52:47', 1311, NULL, NULL, 'IPAY2021/08/1258', NULL, 'cash', '', '', '', '', '', '', '112.0000', NULL, 6, NULL, 'received', '', '112.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1260, '2021-08-30 21:55:57', 1312, NULL, NULL, 'IPAY2021/08/1259', 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 (1261, '2021-08-30 22:36:53', 1313, NULL, NULL, 'IPAY2021/08/1260', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 3, 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 (1262, '2021-08-31 13:42:24', 1314, NULL, NULL, 'IPAY2021/08/1261', NULL, 'cash', '', '', '', '', '', '', '358.0100', NULL, 7, NULL, 'received', '', '358.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 (1263, '2021-08-31 15:00:59', 1315, NULL, NULL, 'IPAY2021/08/1262', NULL, 'cash', '', '', '', '', '', '', '293.0200', NULL, 14, NULL, 'received', '', '293.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 (1264, '2021-08-31 15:12:23', 1316, NULL, NULL, 'IPAY2021/08/1263', NULL, 'cash', '', '', '', '', '', '', '140.5000', NULL, 7, NULL, 'received', '', '140.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1265, '2021-08-31 17:03:22', 1317, NULL, NULL, 'IPAY2021/08/1264', NULL, 'cash', '', '', '', '', '', '', '685.0000', NULL, 16, NULL, 'received', '', '685.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1266, '2021-08-31 17:05:59', 1318, NULL, NULL, 'IPAY2021/08/1265', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 18, 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 (1267, '2021-08-31 17:14:58', 1319, NULL, NULL, 'IPAY2021/08/1266', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 18, 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 (1268, '2021-08-31 17:18:31', 1320, NULL, NULL, 'IPAY2021/08/1267', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 18, 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 (1269, '2021-08-31 17:22:40', 1321, NULL, NULL, 'IPAY2021/08/1268', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 18, 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 (1270, '2021-08-31 17:59:57', 1322, NULL, NULL, 'IPAY2021/08/1269', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 18, 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 (1271, '2021-08-31 18:08:38', 1323, NULL, NULL, 'IPAY2021/08/1270', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 18, 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 (1272, '2021-08-31 18:11:52', 1324, NULL, NULL, 'IPAY2021/08/1271', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 18, 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 (1273, '2021-08-31 18:14:14', 1325, NULL, NULL, 'IPAY2021/08/1272', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 18, 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 (1274, '2021-08-31 18:44:35', 1326, NULL, NULL, 'IPAY2021/08/1273', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 18, 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 (1275, '2021-08-31 18:46:14', 1327, NULL, NULL, 'IPAY2021/08/1274', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 18, 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 (1276, '2021-08-31 19:08:15', 1328, NULL, NULL, 'IPAY2021/08/1275', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 18, 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 (1277, '2021-08-31 19:11:09', 1329, NULL, NULL, 'IPAY2021/08/1276', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 18, 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 (1278, '2021-08-31 19:42:19', 1330, NULL, NULL, 'IPAY2021/08/1277', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 18, 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 (1279, '2021-08-31 19:43:10', 1331, NULL, NULL, 'IPAY2021/08/1278', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 18, 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 (1280, '2021-08-31 19:45:14', 1332, NULL, NULL, 'IPAY2021/08/1279', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 18, 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 (1281, '2021-08-31 20:19:04', 1333, NULL, NULL, 'IPAY2021/08/1280', NULL, 'cash', '', '', '', '', '', '', '56.8000', NULL, 18, NULL, 'received', '', '56.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 (1282, '2021-08-31 20:20:21', 1334, NULL, NULL, 'IPAY2021/08/1281', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 18, 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 (1283, '2021-08-31 20:45:29', 1335, NULL, NULL, 'IPAY2021/08/1282', NULL, 'cash', '', '', '', '', '', '', '941.6700', NULL, 11, NULL, 'received', '', '941.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 (1284, '2021-08-31 20:45:51', 1336, NULL, NULL, 'IPAY2021/08/1283', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 18, 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 (1285, '2021-08-31 21:02:44', 1337, NULL, NULL, 'IPAY2021/08/1284', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 18, 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 (1286, '2021-08-31 21:02:57', 1338, NULL, NULL, 'IPAY2021/08/1285', NULL, 'cash', '', '', '', '', '', '', '721.8500', NULL, 6, NULL, 'received', '', '721.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 (1287, '2021-08-31 21:05:50', 1339, NULL, NULL, 'IPAY2021/08/1286', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 11, 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 (1288, '2021-08-31 21:27:14', 1340, NULL, NULL, 'IPAY2021/08/1287', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 11, 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 (1289, '2021-08-31 21:47:42', 1341, NULL, NULL, 'IPAY2021/08/1288', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 18, 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 (1290, '2021-08-31 21:51:11', 1342, NULL, NULL, 'IPAY2021/08/1289', NULL, 'cash', '', '', '', '', '', '', '102.8500', NULL, 6, NULL, 'received', '', '102.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 (1291, '2021-08-31 22:00:19', 1343, NULL, NULL, 'IPAY2021/08/1290', 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 (1292, '2021-08-31 22:48:36', 1344, NULL, NULL, 'IPAY2021/08/1291', NULL, 'cash', '', '', '', '', '', '', '141.0000', NULL, 3, 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 (1293, '2021-08-31 23:00:28', 1345, NULL, NULL, 'IPAY2021/08/1292', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 3, 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 (1294, '2021-09-01 12:30:39', 1346, NULL, NULL, 'IPAY2021/09/1293', NULL, 'cash', '', '', '', '', '', '', '120.7000', NULL, 15, NULL, 'received', '', '120.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 (1295, '2021-09-01 13:51:47', 1347, NULL, NULL, 'IPAY2021/09/1294', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 18, 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 (1296, '2021-09-01 14:33:24', 1348, NULL, NULL, 'IPAY2021/09/1295', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 15, 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 (1297, '2021-09-01 14:57:15', 1349, NULL, NULL, 'IPAY2021/09/1296', NULL, 'cash', '', '', '', '', '', '', '12.4000', NULL, 18, NULL, 'received', '', '12.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 (1298, '2021-09-01 15:51:07', 1350, NULL, NULL, 'IPAY2021/09/1297', NULL, 'cash', '', '', '', '', '', '', '516.3100', NULL, 8, NULL, 'received', '', '516.3100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1299, '2021-09-01 16:03:35', 1351, NULL, NULL, 'IPAY2021/09/1298', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 18, 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 (1301, '2021-09-01 19:34:20', 1353, NULL, NULL, 'IPAY2021/09/1300', NULL, 'cash', '', '', '', '', '', '', '329.4000', NULL, 11, NULL, 'received', '', '329.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 (1302, '2021-09-01 19:56:47', 1354, NULL, NULL, 'IPAY2021/09/1301', NULL, 'cash', '', '', '', '', '', '', '535.2400', NULL, 6, NULL, 'received', '', '535.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1303, '2021-09-01 20:06:04', 1355, NULL, NULL, 'IPAY2021/09/1302', NULL, 'cash', '', '', '', '', '', '', '36.7000', NULL, 11, NULL, 'received', '', '36.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 (1304, '2021-09-01 20:45:06', 1356, NULL, NULL, 'IPAY2021/09/1303', 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 (1305, '2021-09-01 20:47:03', 1357, NULL, NULL, 'IPAY2021/09/1304', NULL, 'cash', '', '', '', '', '', '', '570.8000', NULL, 18, NULL, 'received', '', '570.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 (1306, '2021-09-01 21:06:23', 1358, NULL, NULL, 'IPAY2021/09/1305', 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 (1308, '2021-09-01 21:18:58', 1360, NULL, NULL, 'IPAY2021/09/1307', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 18, 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 (1309, '2021-09-01 21:20:14', 1361, NULL, NULL, 'IPAY2021/09/1308', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 18, 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 (1310, '2021-09-01 21:23:04', 1362, NULL, NULL, 'IPAY2021/09/1309', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 18, 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 (1311, '2021-09-01 21:25:33', 1363, NULL, NULL, 'IPAY2021/09/1310', NULL, 'cash', '', '', '', '', '', '', '267.7000', NULL, 6, NULL, 'received', '', '267.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 (1312, '2021-09-01 21:26:02', 1364, NULL, NULL, 'IPAY2021/09/1311', NULL, 'cash', '', '', '', '', '', '', '267.7000', NULL, 6, NULL, 'received', '', '267.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 (1313, '2021-09-01 21:29:10', 1365, NULL, NULL, 'IPAY2021/09/1312', 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 (1314, '2021-09-01 21:31:01', 1366, NULL, NULL, 'IPAY2021/09/1313', 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 (1316, '2021-09-01 21:47:18', 1368, NULL, NULL, 'IPAY2021/09/1315', NULL, 'cash', '', '', '', '', '', '', '10.3500', NULL, 6, NULL, 'received', '', '10.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 (1317, '2021-09-01 21:54:38', 1369, NULL, NULL, 'IPAY2021/09/1316', 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 (1318, '2021-09-02 09:37:54', 1370, NULL, NULL, 'IPAY2021/09/1317', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 18, 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 (1319, '2021-09-02 10:35:45', 1371, NULL, NULL, 'IPAY2021/09/1318', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 18, 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 (1320, '2021-09-02 13:14:19', 1372, NULL, NULL, 'IPAY2021/09/1319', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 18, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1321, '2021-09-02 13:45:53', 1373, NULL, NULL, 'IPAY2021/09/1320', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 18, 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 (1322, '2021-09-02 14:39:20', 1374, NULL, NULL, 'IPAY2021/09/1321', NULL, 'cash', '', '', '', '', '', '', '82.0200', NULL, 15, NULL, 'received', '', '82.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 (1323, '2021-09-02 15:01:48', 1375, NULL, NULL, 'IPAY2021/09/1322', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 18, 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 (1324, '2021-09-02 15:44:14', 1376, NULL, NULL, 'IPAY2021/09/1323', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 18, 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 (1325, '2021-09-02 15:49:43', 1377, NULL, NULL, 'IPAY2021/09/1324', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 18, 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 (1326, '2021-09-02 16:12:27', 1378, NULL, NULL, 'IPAY2021/09/1325', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 18, 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 (1327, '2021-09-02 16:27:37', 1379, NULL, NULL, 'IPAY2021/09/1326', NULL, 'cash', '', '', '', '', '', '', '206.5000', NULL, 8, 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 (1328, '2021-09-02 16:31:43', 1380, NULL, NULL, 'IPAY2021/09/1327', NULL, 'cash', '', '', '', '', '', '', '364.0000', NULL, 8, NULL, 'received', '', '364.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1329, '2021-09-02 19:25:40', 1381, NULL, NULL, 'IPAY2021/09/1328', NULL, 'cash', '', '', '', '', '', '', '191.1000', NULL, 11, NULL, 'received', '', '191.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 (1330, '2021-09-02 20:03:36', 1382, NULL, NULL, 'IPAY2021/09/1329', NULL, 'cash', '', '', '', '', '', '', '367.6300', NULL, 16, NULL, 'received', '', '367.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1331, '2021-09-02 20:19:15', 1383, NULL, NULL, 'IPAY2021/09/1330', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 16, 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 (1332, '2021-09-02 20:56:41', 1384, NULL, NULL, 'IPAY2021/09/1331', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 16, 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 (1333, '2021-09-02 20:56:44', 1385, NULL, NULL, 'IPAY2021/09/1332', NULL, 'cash', '', '', '', '', '', '', '326.6000', NULL, 6, NULL, 'received', '', '326.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 (1334, '2021-09-02 21:04:10', 1386, NULL, NULL, 'IPAY2021/09/1333', 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 (1335, '2021-09-02 21:34:19', 1387, NULL, NULL, 'IPAY2021/09/1334', NULL, 'cash', '', '', '', '', '', '', '45.7000', NULL, 16, 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 (1336, '2021-09-02 21:53:26', 1388, NULL, NULL, 'IPAY2021/09/1335', 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 (1337, '2021-09-03 12:29:47', 1389, NULL, NULL, 'IPAY2021/09/1336', NULL, 'cash', '', '', '', '', '', '', '250.5200', NULL, 15, NULL, 'received', '', '250.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 (1338, '2021-09-03 13:17:38', 1390, NULL, NULL, 'IPAY2021/09/1337', NULL, 'cash', '', '', '', '', '', '', '206.2000', NULL, 17, NULL, 'received', '', '206.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 (1339, '2021-09-03 14:35:15', 1391, NULL, NULL, 'IPAY2021/09/1338', NULL, 'cash', '', '', '', '', '', '', '149.3000', NULL, 17, NULL, 'received', '', '149.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 (1340, '2021-09-03 14:44:00', 1392, NULL, NULL, 'IPAY2021/09/1339', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 15, 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 (1341, '2021-09-03 15:34:04', 1393, NULL, NULL, 'IPAY2021/09/1340', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 17, 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 (1342, '2021-09-03 15:35:51', 1394, NULL, NULL, 'IPAY2021/09/1341', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 17, 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 (1343, '2021-09-03 15:41:24', 1395, NULL, NULL, 'IPAY2021/09/1342', NULL, 'cash', '', '', '', '', '', '', '147.7800', NULL, 8, NULL, 'received', '', '147.7800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1344, '2021-09-03 16:04:18', 1396, NULL, NULL, 'IPAY2021/09/1343', NULL, 'cash', '', '', '', '', '', '', '54.4000', NULL, 17, NULL, 'received', '', '54.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 (1345, '2021-09-03 16:09:39', 1397, NULL, NULL, 'IPAY2021/09/1344', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 17, 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 (1346, '2021-09-03 18:36:22', 1398, NULL, NULL, 'IPAY2021/09/1345', NULL, 'cash', '', '', '', '', '', '', '177.4000', NULL, 11, NULL, 'received', '', '177.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 (1347, '2021-09-03 18:56:13', 1399, NULL, NULL, 'IPAY2021/09/1346', NULL, 'cash', '', '', '', '', '', '', '34.5000', NULL, 16, NULL, 'received', '', '34.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1348, '2021-09-03 21:14:11', 1400, NULL, NULL, 'IPAY2021/09/1347', NULL, 'cash', '', '', '', '', '', '', '369.6000', NULL, 16, NULL, 'received', '', '369.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 (1349, '2021-09-03 21:16:49', 1401, NULL, NULL, 'IPAY2021/09/1348', NULL, 'cash', '', '', '', '', '', '', '194.9000', NULL, 11, NULL, 'received', '', '194.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 (1350, '2021-09-03 21:48:10', 1402, NULL, NULL, 'IPAY2021/09/1349', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 16, 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 (1351, '2021-09-03 21:57:35', 1403, NULL, NULL, 'IPAY2021/09/1350', NULL, 'cash', '', '', '', '', '', '', '469.0000', NULL, 6, NULL, 'received', '', '469.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1352, '2021-09-03 22:03:31', 1404, NULL, NULL, 'IPAY2021/09/1351', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 11, 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 (1353, '2021-09-04 12:39:51', 1405, NULL, NULL, 'IPAY2021/09/1352', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 8, 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 (1354, '2021-09-04 14:38:07', 1406, NULL, NULL, 'IPAY2021/09/1353', NULL, 'cash', '', '', '', '', '', '', '250.1000', NULL, 15, NULL, 'received', '', '250.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 (1355, '2021-09-04 15:28:06', 1407, NULL, NULL, 'IPAY2021/09/1354', NULL, 'cash', '', '', '', '', '', '', '262.3100', NULL, 8, NULL, 'received', '', '262.3100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1356, '2021-09-04 15:32:42', 1408, NULL, NULL, 'IPAY2021/09/1355', NULL, 'cash', '', '', '', '', '', '', '416.8100', NULL, 16, NULL, 'received', '', '416.8100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1357, '2021-09-04 16:11:45', 1409, NULL, NULL, 'IPAY2021/09/1356', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 16, 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 (1358, '2021-09-04 17:37:56', 1410, NULL, NULL, 'IPAY2021/09/1357', NULL, 'cash', '', '', '', '', '', '', '127.5000', NULL, 18, 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 (1359, '2021-09-04 19:11:03', 1411, NULL, NULL, 'IPAY2021/09/1358', NULL, 'cash', '', '', '', '', '', '', '387.5000', NULL, 18, NULL, 'received', '', '387.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1360, '2021-09-04 19:19:38', 1412, NULL, NULL, 'IPAY2021/09/1359', NULL, 'cash', '', '', '', '', '', '', '212.8500', NULL, 6, NULL, 'received', '', '212.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 (1361, '2021-09-04 19:42:46', 1413, NULL, NULL, 'IPAY2021/09/1360', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 18, 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 (1362, '2021-09-04 19:45:56', 1414, NULL, NULL, 'IPAY2021/09/1361', NULL, 'cash', '', '', '', '', '', '', '190.7000', NULL, 11, NULL, 'received', '', '190.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 (1363, '2021-09-04 19:48:16', 1415, NULL, NULL, 'IPAY2021/09/1362', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 18, 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 (1364, '2021-09-04 19:56:43', 1416, NULL, NULL, 'IPAY2021/09/1363', NULL, 'cash', '', '', '', '', '', '', '67.5000', NULL, 18, 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 (1365, '2021-09-04 20:33:27', 1417, NULL, NULL, 'IPAY2021/09/1364', NULL, 'cash', '', '', '', '', '', '', '9.1000', NULL, 18, NULL, 'received', '', '9.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 (1366, '2021-09-04 20:56:44', 1418, NULL, NULL, 'IPAY2021/09/1365', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 18, 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 (1367, '2021-09-04 21:08:38', 1419, NULL, NULL, 'IPAY2021/09/1366', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 18, 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 (1368, '2021-09-04 21:10:11', 1420, NULL, NULL, 'IPAY2021/09/1367', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 18, 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 (1369, '2021-09-04 21:11:24', 1421, NULL, NULL, 'IPAY2021/09/1368', NULL, 'cash', '', '', '', '', '', '', '247.7600', NULL, 6, NULL, 'received', '', '247.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 (1370, '2021-09-04 21:12:28', 1422, NULL, NULL, 'IPAY2021/09/1369', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 18, 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 (1371, '2021-09-04 21:12:48', 1423, NULL, NULL, 'IPAY2021/09/1370', NULL, 'cash', '', '', '', '', '', '', '247.7600', NULL, 6, NULL, 'received', '', '247.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 (1372, '2021-09-04 21:42:33', 1424, NULL, NULL, 'IPAY2021/09/1371', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 11, 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 (1373, '2021-09-04 21:54:01', 1425, NULL, NULL, 'IPAY2021/09/1372', NULL, 'cash', '', '', '', '', '', '', '95.5000', NULL, 6, 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 (1374, '2021-09-04 21:55:38', 1426, NULL, NULL, 'IPAY2021/09/1373', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 6, 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 (1375, '2021-09-04 22:00:29', 1427, NULL, NULL, 'IPAY2021/09/1374', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 6, 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 (1376, '2021-09-05 15:14:39', 1428, NULL, NULL, 'IPAY2021/09/1375', NULL, 'cash', '', '', '', '', '', '', '399.7000', NULL, 18, NULL, 'received', '', '399.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 (1377, '2021-09-05 15:22:51', 1429, NULL, NULL, 'IPAY2021/09/1376', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 18, 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 (1378, '2021-09-05 17:58:24', 1430, NULL, NULL, 'IPAY2021/09/1377', NULL, 'cash', '', '', '', '', '', '', '250.4400', NULL, 15, NULL, 'received', '', '250.4400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1379, '2021-09-05 18:55:16', 1431, NULL, NULL, 'IPAY2021/09/1378', NULL, 'cash', '', '', '', '', '', '', '122.0000', NULL, 18, 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 (1380, '2021-09-05 19:12:16', 1432, NULL, NULL, 'IPAY2021/09/1379', NULL, 'cash', '', '', '', '', '', '', '306.5000', NULL, 8, NULL, 'received', '', '306.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1381, '2021-09-05 19:21:58', 1433, NULL, NULL, 'IPAY2021/09/1380', NULL, 'cash', '', '', '', '', '', '', '50.1000', NULL, 15, NULL, 'received', '', '50.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 (1382, '2021-09-05 20:03:48', 1434, NULL, NULL, 'IPAY2021/09/1381', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 15, 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 (1383, '2021-09-05 20:30:44', 1435, NULL, NULL, 'IPAY2021/09/1382', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 15, 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 (1384, '2021-09-05 20:32:19', 1436, NULL, NULL, 'IPAY2021/09/1383', NULL, 'cash', '', '', '', '', '', '', '182.2000', NULL, 8, NULL, 'received', '', '182.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 (1385, '2021-09-05 20:43:24', 1437, NULL, NULL, 'IPAY2021/09/1384', NULL, 'cash', '', '', '', '', '', '', '43.0200', NULL, 15, NULL, 'received', '', '43.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 (1386, '2021-09-05 20:53:42', 1438, NULL, NULL, 'IPAY2021/09/1385', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 8, 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 (1387, '2021-09-05 21:10:57', 1439, NULL, NULL, 'IPAY2021/09/1386', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 8, 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 (1388, '2021-09-05 21:21:35', 1440, NULL, NULL, 'IPAY2021/09/1387', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 8, 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 (1389, '2021-09-05 21:27:39', 1441, NULL, NULL, 'IPAY2021/09/1388', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (1390, '2021-09-05 21:31:05', 1442, NULL, NULL, 'IPAY2021/09/1389', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 15, 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 (1391, '2021-09-05 21:32:19', 1443, NULL, NULL, 'IPAY2021/09/1390', NULL, 'cash', '', '', '', '', '', '', '675.4000', NULL, 18, NULL, 'received', '', '675.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 (1392, '2021-09-05 21:43:45', 1444, NULL, NULL, 'IPAY2021/09/1391', NULL, 'cash', '', '', '', '', '', '', '151.0000', NULL, 8, 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 (1393, '2021-09-06 11:38:20', 1445, NULL, NULL, 'IPAY2021/09/1392', NULL, 'cash', '', '', '', '', '', '', '172.0400', NULL, 15, NULL, 'received', '', '172.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 (1394, '2021-09-06 12:00:45', 1446, NULL, NULL, 'IPAY2021/09/1393', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 15, 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 (1395, '2021-09-06 12:58:31', 1447, NULL, NULL, 'IPAY2021/09/1394', NULL, 'cash', '', '', '', '', '', '', '128.5000', NULL, 15, NULL, 'received', '', '128.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1396, '2021-09-06 13:47:30', 1448, NULL, NULL, 'IPAY2021/09/1395', NULL, 'cash', '', '', '', '', '', '', '208.8000', NULL, 17, NULL, 'received', '', '208.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 (1397, '2021-09-06 14:05:16', 1449, NULL, NULL, 'IPAY2021/09/1396', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 15, 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 (1398, '2021-09-06 14:29:44', 1450, NULL, NULL, 'IPAY2021/09/1397', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 17, 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 (1399, '2021-09-06 14:30:27', 1451, NULL, NULL, 'IPAY2021/09/1398', NULL, 'cash', '', '', '', '', '', '', '31.3500', NULL, 15, NULL, 'received', '', '31.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 (1400, '2021-09-06 14:38:53', 1452, NULL, NULL, 'IPAY2021/09/1399', 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 (1401, '2021-09-06 15:02:51', 1453, NULL, NULL, 'IPAY2021/09/1400', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 15, 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 (1402, '2021-09-06 15:09:25', 1454, NULL, NULL, 'IPAY2021/09/1401', NULL, 'cash', '', '', '', '', '', '', '128.0000', NULL, 8, NULL, 'received', '', '128.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1403, '2021-09-06 17:13:14', 1455, NULL, NULL, 'IPAY2021/09/1402', NULL, 'cash', '', '', '', '', '', '', '243.6000', NULL, 18, NULL, 'received', '', '243.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 (1404, '2021-09-06 20:53:45', 1456, NULL, NULL, 'IPAY2021/09/1403', NULL, 'cash', '', '', '', '', '', '', '447.3000', NULL, 6, NULL, 'received', '', '447.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 (1405, '2021-09-06 21:37:59', 1457, NULL, NULL, 'IPAY2021/09/1404', NULL, 'cash', '', '', '', '', '', '', '863.0000', NULL, 18, NULL, 'received', '', '863.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1406, '2021-09-06 22:03:52', 1458, NULL, NULL, 'IPAY2021/09/1405', NULL, 'cash', '', '', '', '', '', '', '264.5000', NULL, 6, NULL, 'received', '', '264.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1407, '2021-09-07 13:11:04', 1459, NULL, NULL, 'IPAY2021/09/1406', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 15, 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 (1408, '2021-09-07 14:27:04', 1460, NULL, NULL, 'IPAY2021/09/1407', NULL, 'cash', '', '', '', '', '', '', '18.5200', NULL, 15, NULL, 'received', '', '18.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 (1409, '2021-09-07 14:52:03', 1461, NULL, NULL, 'IPAY2021/09/1408', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 15, 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 (1410, '2021-09-07 15:16:02', 1462, NULL, NULL, 'IPAY2021/09/1409', NULL, 'cash', '', '', '', '', '', '', '557.3000', NULL, 17, NULL, 'received', '', '557.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 (1411, '2021-09-07 16:05:23', 1463, NULL, NULL, 'IPAY2021/09/1410', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 17, 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 (1412, '2021-09-07 17:45:39', 1464, NULL, NULL, 'IPAY2021/09/1411', NULL, 'cash', '', '', '', '', '', '', '160.5000', NULL, 8, NULL, 'received', '', '160.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1413, '2021-09-07 19:08:13', 1465, NULL, NULL, 'IPAY2021/09/1412', NULL, 'cash', '', '', '', '', '', '', '360.9700', NULL, 11, NULL, 'received', '', '360.9700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1414, '2021-09-07 19:26:08', 1466, NULL, NULL, 'IPAY2021/09/1413', NULL, 'cash', '', '', '', '', '', '', '649.5000', NULL, 6, NULL, 'received', '', '649.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1415, '2021-09-07 20:57:25', 1467, NULL, NULL, 'IPAY2021/09/1414', NULL, 'cash', '', '', '', '', '', '', '438.4200', NULL, 6, NULL, 'received', '', '438.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 (1416, '2021-09-07 21:28:09', 1468, NULL, NULL, 'IPAY2021/09/1415', NULL, 'cash', '', '', '', '', '', '', '76.1000', NULL, 6, NULL, 'received', '', '76.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 (1417, '2021-09-07 21:38:50', 1469, NULL, NULL, 'IPAY2021/09/1416', NULL, 'cash', '', '', '', '', '', '', '924.4000', NULL, 18, NULL, 'received', '', '924.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 (1418, '2021-09-07 21:41:54', 1470, NULL, NULL, 'IPAY2021/09/1417', NULL, 'cash', '', '', '', '', '', '', '361.5000', NULL, 11, NULL, 'received', '', '361.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1419, '2021-09-07 21:44:46', 1471, NULL, NULL, 'IPAY2021/09/1418', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (1420, '2021-09-07 22:00:46', 1472, NULL, NULL, 'IPAY2021/09/1419', 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 (1421, '2021-09-08 13:46:20', 1473, NULL, NULL, 'IPAY2021/09/1420', NULL, 'cash', '', '', '', '', '', '', '90.2000', NULL, 15, NULL, 'received', '', '90.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 (1422, '2021-09-08 14:16:33', 1474, NULL, NULL, 'IPAY2021/09/1421', NULL, 'cash', '', '', '', '', '', '', '112.0000', NULL, 3, NULL, 'received', '', '112.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1423, '2021-09-08 14:21:55', 1475, NULL, NULL, 'IPAY2021/09/1422', 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 (1424, '2021-09-08 14:44:21', 1476, NULL, NULL, 'IPAY2021/09/1423', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (1425, '2021-09-08 15:00:32', 1477, NULL, NULL, 'IPAY2021/09/1424', NULL, 'cash', '', '', '', '', '', '', '478.8000', NULL, 17, 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 (1426, '2021-09-08 15:12:25', 1478, NULL, NULL, 'IPAY2021/09/1425', NULL, 'cash', '', '', '', '', '', '', '255.4000', NULL, 8, 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 (1427, '2021-09-08 15:17:17', 1479, NULL, NULL, 'IPAY2021/09/1426', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 8, 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 (1428, '2021-09-08 15:50:28', 1480, NULL, NULL, 'IPAY2021/09/1427', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 17, 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 (1429, '2021-09-08 19:27:47', 1481, NULL, NULL, 'IPAY2021/09/1428', NULL, 'cash', '', '', '', '', '', '', '322.4100', NULL, 6, NULL, 'received', '', '322.4100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1430, '2021-09-08 21:27:56', 1482, NULL, NULL, 'IPAY2021/09/1429', NULL, 'cash', '', '', '', '', '', '', '357.7000', NULL, 11, NULL, 'received', '', '357.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 (1431, '2021-09-08 21:39:26', 1483, NULL, NULL, 'IPAY2021/09/1430', NULL, 'cash', '', '', '', '', '', '', '690.3000', NULL, 18, NULL, 'received', '', '690.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 (1432, '2021-09-08 21:45:18', 1484, NULL, NULL, 'IPAY2021/09/1431', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 11, 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 (1433, '2021-09-08 21:49:30', 1485, NULL, NULL, 'IPAY2021/09/1432', NULL, 'cash', '', '', '', '', '', '', '328.2000', NULL, 18, NULL, 'received', '', '328.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 (1434, '2021-09-08 21:54:12', 1486, NULL, NULL, 'IPAY2021/09/1433', NULL, 'cash', '', '', '', '', '', '', '308.5000', NULL, 6, 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 (1435, '2021-09-08 21:56:23', 1487, NULL, NULL, 'IPAY2021/09/1434', NULL, 'cash', '', '', '', '', '', '', '4.6000', NULL, 11, NULL, 'received', '', '4.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 (1436, '2021-09-08 21:56:40', 1488, NULL, NULL, 'IPAY2021/09/1435', 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 (1437, '2021-09-08 22:07:30', 1489, NULL, NULL, 'IPAY2021/09/1436', NULL, 'cash', '', '', '', '', '', '', '64.5000', NULL, 6, 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 (1438, '2021-09-08 22:17:43', 1490, NULL, NULL, 'IPAY2021/09/1437', NULL, 'cash', '', '', '', '', '', '', '134.0000', NULL, 6, 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 (1439, '2021-09-09 12:06:02', 1491, NULL, NULL, 'IPAY2021/09/1438', NULL, 'cash', '', '', '', '', '', '', '206.9000', NULL, 15, NULL, 'received', '', '206.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 (1440, '2021-09-09 14:18:35', 1492, NULL, NULL, 'IPAY2021/09/1439', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 15, 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 (1441, '2021-09-09 14:18:57', 1493, NULL, NULL, 'IPAY2021/09/1440', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 15, 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 (1442, '2021-09-09 14:33:34', 1494, NULL, NULL, 'IPAY2021/09/1441', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (1443, '2021-09-09 14:35:39', 1495, NULL, NULL, 'IPAY2021/09/1442', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 15, 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 (1444, '2021-09-09 14:40:41', 1496, NULL, NULL, 'IPAY2021/09/1443', NULL, 'cash', '', '', '', '', '', '', '319.1000', NULL, 17, NULL, 'received', '', '319.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 (1445, '2021-09-09 14:45:45', 1497, NULL, NULL, 'IPAY2021/09/1444', NULL, 'cash', '', '', '', '', '', '', '355.9900', NULL, 8, NULL, 'received', '', '355.9900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1446, '2021-09-09 15:45:31', 1498, NULL, NULL, 'IPAY2021/09/1445', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 17, 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 (1447, '2021-09-09 17:29:59', 1499, NULL, NULL, 'IPAY2021/09/1446', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 6, 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 (1448, '2021-09-09 18:48:51', 1500, NULL, NULL, 'IPAY2021/09/1447', NULL, 'cash', '', '', '', '', '', '', '152.2000', NULL, 11, NULL, 'received', '', '152.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 (1449, '2021-09-09 19:57:55', 1501, NULL, NULL, 'IPAY2021/09/1448', 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 (1450, '2021-09-09 20:22:25', 1502, NULL, NULL, 'IPAY2021/09/1449', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (1451, '2021-09-09 20:23:28', 1503, NULL, NULL, 'IPAY2021/09/1450', 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 (1452, '2021-09-09 20:34:38', 1504, NULL, NULL, 'IPAY2021/09/1451', NULL, 'cash', '', '', '', '', '', '', '389.0000', NULL, 6, 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 (1453, '2021-09-09 20:38:45', 1505, NULL, NULL, 'IPAY2021/09/1452', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (1454, '2021-09-09 20:43:34', 1506, NULL, NULL, 'IPAY2021/09/1453', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 11, 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 (1455, '2021-09-09 20:50:23', 1507, NULL, NULL, 'IPAY2021/09/1454', NULL, 'cash', '', '', '', '', '', '', '112.5000', NULL, 11, 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 (1456, '2021-09-09 21:21:47', 1508, NULL, NULL, 'IPAY2021/09/1455', NULL, 'cash', '', '', '', '', '', '', '755.1000', NULL, 18, NULL, 'received', '', '755.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 (1457, '2021-09-09 21:27:50', 1509, NULL, NULL, 'IPAY2021/09/1456', NULL, 'cash', '', '', '', '', '', '', '31.8000', NULL, 18, 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 (1458, '2021-09-09 21:30:38', 1510, NULL, NULL, 'IPAY2021/09/1457', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 18, 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 (1459, '2021-09-09 21:51:24', 1511, NULL, NULL, 'IPAY2021/09/1458', NULL, 'other', '', '', '', '', '', '', '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 (1460, '2021-09-09 21:53:00', 1512, NULL, NULL, 'IPAY2021/09/1459', NULL, 'cash', '', '', '', '', '', '', '188.5000', NULL, 6, NULL, 'received', '', '188.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1461, '2021-09-09 22:02:13', 1513, NULL, NULL, 'IPAY2021/09/1460', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 6, 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 (1462, '2021-09-10 11:50:20', 1514, NULL, NULL, 'IPAY2021/09/1461', 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 (1463, '2021-09-10 14:55:16', 1515, NULL, NULL, 'IPAY2021/09/1462', NULL, 'cash', '', '', '', '', '', '', '192.0000', NULL, 8, NULL, 'received', '', '192.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1464, '2021-09-10 15:14:37', 1516, NULL, NULL, 'IPAY2021/09/1463', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 3, 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 (1465, '2021-09-10 15:19:41', 1517, NULL, NULL, 'IPAY2021/09/1464', NULL, 'cash', '', '', '', '', '', '', '666.5100', NULL, 17, NULL, 'received', '', '666.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 (1466, '2021-09-10 20:27:16', 1518, NULL, NULL, 'IPAY2021/09/1465', NULL, 'cash', '', '', '', '', '', '', '264.3400', NULL, 6, NULL, 'received', '', '264.3400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1467, '2021-09-10 21:18:40', 1519, NULL, NULL, 'IPAY2021/09/1466', 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 (1468, '2021-09-10 21:47:25', 1520, NULL, NULL, 'IPAY2021/09/1467', 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 (1469, '2021-09-10 21:54:59', 1521, NULL, NULL, 'IPAY2021/09/1468', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 6, 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 (1470, '2021-09-10 22:07:18', 1522, NULL, NULL, 'IPAY2021/09/1469', NULL, 'cash', '', '', '', '', '', '', '619.4000', NULL, 18, NULL, 'received', '', '619.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 (1471, '2021-09-11 15:05:30', 1523, NULL, NULL, 'IPAY2021/09/1470', NULL, 'cash', '', '', '', '', '', '', '336.6000', NULL, 4, NULL, 'received', '', '336.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 (1472, '2021-09-11 15:09:43', 1524, NULL, NULL, 'IPAY2021/09/1471', NULL, 'cash', '', '', '', '', '', '', '389.7700', NULL, 16, NULL, 'received', '', '389.7700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1473, '2021-09-11 15:51:43', 1525, NULL, NULL, 'IPAY2021/09/1472', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 16, 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 (1474, '2021-09-11 16:05:54', 1526, NULL, NULL, 'IPAY2021/09/1473', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 16, 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 (1475, '2021-09-11 21:27:59', 1527, NULL, NULL, 'IPAY2021/09/1474', NULL, 'cash', '', '', '', '', '', '', '1024.5000', NULL, 18, NULL, 'received', '', '1024.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1476, '2021-09-11 21:53:43', 1528, NULL, NULL, 'IPAY2021/09/1475', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 18, 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 (1477, '2021-09-11 21:56:32', 1529, NULL, NULL, 'IPAY2021/09/1476', NULL, 'cash', '', '', '', '', '', '', '299.8200', NULL, 6, NULL, 'received', '', '299.8200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1478, '2021-09-12 16:29:19', 1530, NULL, NULL, 'IPAY2021/09/1477', NULL, 'cash', '', '', '', '', '', '', '323.0000', NULL, 16, NULL, 'received', '', '323.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1479, '2021-09-12 19:03:47', 1531, NULL, NULL, 'IPAY2021/09/1478', NULL, 'cash', '', '', '', '', '', '', '504.2400', NULL, 15, NULL, 'received', '', '504.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1480, '2021-09-12 19:14:47', 1532, NULL, NULL, 'IPAY2021/09/1479', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 16, 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 (1481, '2021-09-12 19:38:27', 1533, NULL, NULL, 'IPAY2021/09/1480', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 15, 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 (1482, '2021-09-12 19:43:33', 1534, NULL, NULL, 'IPAY2021/09/1481', NULL, 'cash', '', '', '', '', '', '', '245.0600', NULL, 8, NULL, 'received', '', '245.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1483, '2021-09-12 20:09:49', 1535, NULL, NULL, 'IPAY2021/09/1482', NULL, 'cash', '', '', '', '', '', '', '69.0000', NULL, 15, 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 (1484, '2021-09-12 20:31:47', 1536, NULL, NULL, 'IPAY2021/09/1483', NULL, 'cash', '', '', '', '', '', '', '3.2000', NULL, 15, NULL, 'received', '', '3.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 (1485, '2021-09-12 20:33:46', 1537, NULL, NULL, 'IPAY2021/09/1484', NULL, 'cash', '', '', '', '', '', '', '315.3100', NULL, 16, NULL, 'received', '', '315.3100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1486, '2021-09-12 20:35:54', 1538, NULL, NULL, 'IPAY2021/09/1485', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 15, 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 (1487, '2021-09-12 21:11:18', 1539, NULL, NULL, 'IPAY2021/09/1486', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 16, 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 (1488, '2021-09-12 21:28:32', 1540, NULL, NULL, 'IPAY2021/09/1487', NULL, 'cash', '', '', '', '', '', '', '22.5200', NULL, 15, NULL, 'received', '', '22.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 (1489, '2021-09-12 21:36:16', 1541, NULL, NULL, 'IPAY2021/09/1488', NULL, 'cash', '', '', '', '', '', '', '159.0000', NULL, 8, NULL, 'received', '', '159.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1490, '2021-09-12 21:41:31', 1542, NULL, NULL, 'IPAY2021/09/1489', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 16, 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 (1491, '2021-09-12 21:56:47', 1543, NULL, NULL, 'IPAY2021/09/1490', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 16, 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 (1492, '2021-09-13 01:07:31', 1544, NULL, NULL, 'IPAY2021/09/1491', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 3, 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 (1493, '2021-09-13 01:08:31', 1545, NULL, NULL, 'IPAY2021/09/1492', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 3, 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 (1494, '2021-09-13 12:00:27', 1546, NULL, NULL, 'IPAY2021/09/1493', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 3, 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 (1495, '2021-09-13 14:50:16', 1547, NULL, NULL, 'IPAY2021/09/1494', NULL, 'cash', '', '', '', '', '', '', '82.6000', NULL, 15, NULL, 'received', '', '82.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 (1496, '2021-09-13 15:01:57', 1548, NULL, NULL, 'IPAY2021/09/1495', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (1497, '2021-09-13 15:15:39', 1549, NULL, NULL, 'IPAY2021/09/1496', NULL, 'cash', '', '', '', '', '', '', '204.6000', NULL, 8, NULL, 'received', '', '204.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 (1498, '2021-09-13 15:18:25', 1550, NULL, NULL, 'IPAY2021/09/1497', NULL, 'cash', '', '', '', '', '', '', '657.0000', NULL, 18, NULL, 'received', '', '657.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1499, '2021-09-13 15:45:10', 1551, NULL, NULL, 'IPAY2021/09/1498', NULL, 'cash', '', '', '', '', '', '', '7.4000', NULL, 18, NULL, 'received', '', '7.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 (1500, '2021-09-13 15:46:24', 1552, NULL, NULL, 'IPAY2021/09/1499', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 11, NULL, 'received', '', '69.0000', '4.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1501, '2021-09-13 16:04:52', 1553, NULL, NULL, 'IPAY2021/09/1500', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 18, 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 (1502, '2021-09-13 17:29:24', 1554, NULL, NULL, 'IPAY2021/09/1501', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 11, 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 (1503, '2021-09-13 19:33:51', 1555, NULL, NULL, 'IPAY2021/09/1502', NULL, 'cash', '', '', '', '', '', '', '126.5000', NULL, 11, NULL, 'received', '', '126.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1504, '2021-09-13 19:52:29', 1556, NULL, NULL, 'IPAY2021/09/1503', 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 (1505, '2021-09-13 20:14:37', 1557, NULL, NULL, 'IPAY2021/09/1504', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 11, 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 (1506, '2021-09-13 20:25:19', 1558, NULL, NULL, 'IPAY2021/09/1505', NULL, 'cash', '', '', '', '', '', '', '351.8100', NULL, 6, NULL, 'received', '', '351.8100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1507, '2021-09-13 20:54:54', 1559, NULL, NULL, 'IPAY2021/09/1506', NULL, 'cash', '', '', '', '', '', '', '236.3000', NULL, 16, NULL, 'received', '', '236.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 (1508, '2021-09-13 21:02:44', 1560, NULL, NULL, 'IPAY2021/09/1507', NULL, 'cash', '', '', '', '', '', '', '302.3300', NULL, 16, NULL, 'received', '', '302.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 (1509, '2021-09-13 21:06:49', 1561, NULL, NULL, 'IPAY2021/09/1508', 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 (1510, '2021-09-13 21:42:57', 1562, NULL, NULL, 'IPAY2021/09/1509', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 16, 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 (1511, '2021-09-13 21:51:31', 1563, NULL, NULL, 'IPAY2021/09/1510', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 11, 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 (1512, '2021-09-13 22:00:29', 1564, NULL, NULL, 'IPAY2021/09/1511', NULL, 'cash', '', '', '', '', '', '', '219.0100', NULL, 6, NULL, 'received', '', '219.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 (1513, '2021-09-14 10:58:23', 1565, NULL, NULL, 'IPAY2021/09/1512', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 8, 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 (1514, '2021-09-14 13:48:09', 1566, NULL, NULL, 'IPAY2021/09/1513', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 15, 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 (1515, '2021-09-14 14:51:09', 1567, NULL, NULL, 'IPAY2021/09/1514', NULL, 'cash', '', '', '', '', '', '', '122.0000', NULL, 15, 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 (1516, '2021-09-14 15:01:02', 1568, NULL, NULL, 'IPAY2021/09/1515', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (1517, '2021-09-14 15:03:04', 1569, NULL, NULL, 'IPAY2021/09/1516', NULL, 'cash', '', '', '', '', '', '', '2.4000', NULL, 15, NULL, 'received', '', '2.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 (1518, '2021-09-14 15:06:46', 1570, NULL, NULL, 'IPAY2021/09/1517', NULL, 'cash', '', '', '', '', '', '', '217.3000', NULL, 8, NULL, 'received', '', '217.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 (1519, '2021-09-14 16:19:23', 1571, NULL, NULL, 'IPAY2021/09/1518', NULL, 'cash', '', '', '', '', '', '', '865.6000', NULL, 18, NULL, 'received', '', '865.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 (1520, '2021-09-14 19:04:48', 1572, NULL, NULL, 'IPAY2021/09/1519', NULL, 'cash', '', '', '', '', '', '', '674.8000', NULL, 6, NULL, 'received', '', '674.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 (1521, '2021-09-14 20:16:22', 1573, NULL, NULL, 'IPAY2021/09/1520', NULL, 'cash', '', '', '', '', '', '', '455.1100', NULL, 16, NULL, 'received', '', '455.1100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1522, '2021-09-14 20:41:46', 1574, NULL, NULL, 'IPAY2021/09/1521', NULL, 'cash', '', '', '', '', '', '', '161.3200', NULL, 6, NULL, 'received', '', '161.3200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1523, '2021-09-14 21:10:11', 1575, NULL, NULL, 'IPAY2021/09/1522', NULL, 'cash', '', '', '', '', '', '', '29.8000', NULL, 3, NULL, 'received', '', '29.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 (1524, '2021-09-14 21:24:13', 1576, NULL, NULL, 'IPAY2021/09/1523', NULL, 'cash', '', '', '', '', '', '', '173.1000', NULL, 16, NULL, 'received', '', '173.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 (1525, '2021-09-14 21:40:15', 1577, NULL, NULL, 'IPAY2021/09/1524', NULL, 'cash', '', '', '', '', '', '', '57.5000', NULL, 16, NULL, 'received', '', '57.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1526, '2021-09-14 21:43:19', 1578, NULL, NULL, 'IPAY2021/09/1525', NULL, 'cash', '', '', '', '', '', '', '169.7100', NULL, 11, NULL, 'received', '', '169.7100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1527, '2021-09-14 21:45:02', 1579, NULL, NULL, 'IPAY2021/09/1526', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 16, 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 (1528, '2021-09-14 21:52:39', 1580, NULL, NULL, 'IPAY2021/09/1527', NULL, 'cash', '', '', '', '', '', '', '369.0000', NULL, 6, 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 (1529, '2021-09-14 21:57:46', 1581, NULL, NULL, 'IPAY2021/09/1528', NULL, 'cash', '', '', '', '', '', '', '391.8200', NULL, 11, NULL, 'received', '', '391.8200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1530, '2021-09-15 14:17:47', 1582, NULL, NULL, 'IPAY2021/09/1529', NULL, 'cash', '', '', '', '', '', '', '180.5000', NULL, 15, NULL, 'received', '', '180.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1531, '2021-09-15 14:27:27', 1583, NULL, NULL, 'IPAY2021/09/1530', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (1532, '2021-09-15 14:44:44', 1584, NULL, NULL, 'IPAY2021/09/1531', NULL, 'cash', '', '', '', '', '', '', '182.0000', NULL, 8, NULL, 'received', '', '182.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1533, '2021-09-15 14:47:36', 1585, NULL, NULL, 'IPAY2021/09/1532', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 8, 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 (1534, '2021-09-15 14:52:02', 1586, NULL, NULL, 'IPAY2021/09/1533', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (1535, '2021-09-15 15:44:27', 1587, NULL, NULL, 'IPAY2021/09/1534', NULL, 'cash', '', '', '', '', '', '', '278.0000', NULL, 18, NULL, 'received', '', '278.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1536, '2021-09-15 17:55:29', 1588, NULL, NULL, 'IPAY2021/09/1535', NULL, 'cash', '', '', '', '', '', '', '182.0000', NULL, 11, NULL, 'received', '', '182.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1537, '2021-09-15 18:11:13', 1589, NULL, NULL, 'IPAY2021/09/1536', NULL, 'cash', '', '', '', '', '', '', '183.5000', NULL, 6, NULL, 'received', '', '183.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1538, '2021-09-15 18:36:55', 1590, NULL, NULL, 'IPAY2021/09/1537', NULL, 'cash', '', '', '', '', '', '', '94.0000', NULL, 11, NULL, 'received', '', '100.0000', '6.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1539, '2021-09-15 18:38:54', 1591, NULL, NULL, 'IPAY2021/09/1538', NULL, 'cash', '', '', '', '', '', '', '203.6100', NULL, 16, NULL, 'received', '', '203.6100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1540, '2021-09-15 20:25:54', 1592, NULL, NULL, 'IPAY2021/09/1539', NULL, 'cash', '', '', '', '', '', '', '195.0000', NULL, 11, NULL, 'received', '', '195.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1541, '2021-09-15 20:45:42', 1593, NULL, NULL, 'IPAY2021/09/1540', NULL, 'cash', '', '', '', '', '', '', '417.2800', NULL, 16, NULL, 'received', '', '417.2800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1542, '2021-09-15 20:55:39', 1594, NULL, NULL, 'IPAY2021/09/1541', NULL, 'cash', '', '', '', '', '', '', '556.5000', NULL, 6, NULL, 'received', '', '556.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1543, '2021-09-15 20:58:45', 1595, NULL, NULL, 'IPAY2021/09/1542', NULL, 'cash', '', '', '', '', '', '', '155.0000', NULL, 6, NULL, 'received', '', '155.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1544, '2021-09-15 21:08:53', 1596, NULL, NULL, 'IPAY2021/09/1543', 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 (1545, '2021-09-15 21:41:19', 1597, NULL, NULL, 'IPAY2021/09/1544', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 16, 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 (1546, '2021-09-15 21:47:39', 1598, NULL, NULL, 'IPAY2021/09/1545', 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 (1547, '2021-09-15 21:49:35', 1599, NULL, NULL, 'IPAY2021/09/1546', NULL, 'cash', '', '', '', '', '', '', '145.0000', NULL, 6, NULL, 'received', '', '145.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1548, '2021-09-15 23:03:15', 1600, NULL, NULL, 'IPAY2021/09/1547', 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 (1549, '2021-09-15 23:05:47', 1601, NULL, NULL, 'IPAY2021/09/1548', 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 (1550, '2021-09-15 23:08:57', 1602, NULL, NULL, 'IPAY2021/09/1549', 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 (1551, '2021-09-16 16:07:05', 1603, NULL, NULL, 'IPAY2021/09/1550', NULL, 'cash', '', '', '', '', '', '', '493.7000', NULL, 18, NULL, 'received', '', '493.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 (1552, '2021-09-16 19:08:04', 1604, NULL, NULL, 'IPAY2021/09/1551', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 8, 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 (1553, '2021-09-16 20:08:47', 1605, NULL, NULL, 'IPAY2021/09/1552', NULL, 'cash', '', '', '', '', '', '', '203.6200', NULL, 11, NULL, 'received', '', '203.6200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1554, '2021-09-16 20:39:41', 1606, NULL, NULL, 'IPAY2021/09/1553', NULL, 'cash', '', '', '', '', '', '', '480.0200', NULL, 6, NULL, 'received', '', '480.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 (1555, '2021-09-16 20:41:33', 1607, NULL, NULL, 'IPAY2021/09/1554', 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 (1556, '2021-09-16 21:20:37', 1608, NULL, NULL, 'IPAY2021/09/1555', NULL, 'cash', '', '', '', '', '', '', '365.3500', NULL, 16, NULL, 'received', '', '365.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 (1557, '2021-09-16 21:39:06', 1609, NULL, NULL, 'IPAY2021/09/1556', NULL, 'cash', '', '', '', '', '', '', '353.2100', NULL, 16, NULL, 'received', '', '353.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 (1558, '2021-09-16 21:45:24', 1610, NULL, NULL, 'IPAY2021/09/1557', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 11, 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 (1559, '2021-09-16 21:58:41', 1611, NULL, NULL, 'IPAY2021/09/1558', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 11, 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 (1560, '2021-09-16 21:59:14', 1612, NULL, NULL, 'IPAY2021/09/1559', NULL, 'cash', '', '', '', '', '', '', '76.0200', NULL, 6, NULL, 'received', '', '76.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 (1561, '2021-09-16 21:59:44', 1613, NULL, NULL, 'IPAY2021/09/1560', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 6, 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 (1562, '2021-09-16 22:45:47', 1614, NULL, NULL, 'IPAY2021/09/1561', NULL, 'cash', '', '', '', '', '', '', '55.2000', NULL, 3, NULL, 'received', '', '55.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 (1563, '2021-09-16 22:49:02', 1615, NULL, NULL, 'IPAY2021/09/1562', 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 (1564, '2021-09-16 23:11:20', 1616, NULL, NULL, 'IPAY2021/09/1563', 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 (1565, '2021-09-17 00:59:22', 1617, NULL, NULL, 'IPAY2021/09/1564', 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 (1566, '2021-09-17 09:42:34', 1618, NULL, NULL, 'IPAY2021/09/1565', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 4, 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 (1567, '2021-09-17 14:48:49', 1619, NULL, NULL, 'IPAY2021/09/1566', NULL, 'cash', '', '', '', '', '', '', '191.5000', NULL, 17, 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 (1568, '2021-09-17 15:22:19', 1620, NULL, NULL, 'IPAY2021/09/1567', NULL, 'cash', '', '', '', '', '', '', '359.0000', NULL, 17, NULL, 'received', '', '359.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1569, '2021-09-17 16:53:42', 1621, NULL, NULL, 'IPAY2021/09/1568', NULL, 'cash', '', '', '', '', '', '', '96.0000', NULL, 11, NULL, 'received', '', '96.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1570, '2021-09-17 18:33:31', 1622, NULL, NULL, 'IPAY2021/09/1569', NULL, 'cash', '', '', '', '', '', '', '117.7000', NULL, 11, NULL, 'received', '', '117.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 (1571, '2021-09-17 19:47:14', 1623, NULL, NULL, 'IPAY2021/09/1570', NULL, 'cash', '', '', '', '', '', '', '49.8000', NULL, 11, NULL, 'received', '', '49.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 (1572, '2021-09-17 19:50:55', 1624, NULL, NULL, 'IPAY2021/09/1571', NULL, 'cash', '', '', '', '', '', '', '406.4200', NULL, 16, NULL, 'received', '', '406.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 (1573, '2021-09-17 20:32:03', 1625, NULL, NULL, 'IPAY2021/09/1572', NULL, 'cash', '', '', '', '', '', '', '34.5000', NULL, 11, NULL, 'received', '', '34.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1574, '2021-09-17 20:42:43', 1626, NULL, NULL, 'IPAY2021/09/1573', NULL, 'cash', '', '', '', '', '', '', '239.7000', NULL, 16, NULL, 'received', '', '239.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 (1575, '2021-09-17 21:31:43', 1627, NULL, NULL, 'IPAY2021/09/1574', NULL, 'cash', '', '', '', '', '', '', '186.5000', NULL, 16, 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 (1576, '2021-09-17 21:53:24', 1628, NULL, NULL, 'IPAY2021/09/1575', 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 (1577, '2021-09-17 23:01:17', 1629, NULL, NULL, 'IPAY2021/09/1576', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 3, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1578, '2021-09-17 23:09:47', 1630, NULL, NULL, 'IPAY2021/09/1577', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 3, 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 (1579, '2021-09-18 00:10:36', 1631, NULL, NULL, 'IPAY2021/09/1578', NULL, 'cash', '', '', '', '', '', '', '348.5000', NULL, 3, NULL, 'received', '', '348.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1580, '2021-09-18 00:36:48', 1632, NULL, NULL, 'IPAY2021/09/1579', NULL, 'cash', '', '', '', '', '', '', '447.8200', NULL, 3, NULL, 'received', '', '447.8200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1581, '2021-09-18 12:58:15', 1633, NULL, NULL, 'IPAY2021/09/1580', NULL, 'cash', '', '', '', '', '', '', '217.7100', NULL, 15, NULL, 'received', '', '217.7100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1582, '2021-09-18 13:53:55', 1634, NULL, NULL, 'IPAY2021/09/1581', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 15, 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 (1583, '2021-09-18 15:07:36', 1635, NULL, NULL, 'IPAY2021/09/1582', NULL, 'cash', '', '', '', '', '', '', '215.7000', NULL, 16, NULL, 'received', '', '215.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 (1584, '2021-09-18 15:15:48', 1636, NULL, NULL, 'IPAY2021/09/1583', NULL, 'cash', '', '', '', '', '', '', '273.5500', NULL, 16, NULL, 'received', '', '273.5500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1585, '2021-09-18 15:46:26', 1637, NULL, NULL, 'IPAY2021/09/1584', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 16, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1586, '2021-09-18 15:57:41', 1638, NULL, NULL, 'IPAY2021/09/1585', NULL, 'cash', '', '', '', '', '', '', '311.8000', NULL, 6, NULL, 'received', '', '311.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 (1587, '2021-09-18 19:41:40', 1639, NULL, NULL, 'IPAY2021/09/1586', NULL, 'cash', '', '', '', '', '', '', '348.8000', NULL, 11, NULL, 'received', '', '348.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 (1588, '2021-09-18 20:16:44', 1640, NULL, NULL, 'IPAY2021/09/1587', NULL, 'cash', '', '', '', '', '', '', '755.8200', NULL, 6, NULL, 'received', '', '755.8200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1589, '2021-09-18 20:52:02', 1641, NULL, NULL, 'IPAY2021/09/1588', NULL, 'cash', '', '', '', '', '', '', '503.3000', NULL, 18, NULL, 'received', '', '503.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 (1590, '2021-09-18 21:14:36', 1642, NULL, NULL, 'IPAY2021/09/1589', NULL, 'cash', '', '', '', '', '', '', '80.2200', NULL, 11, NULL, 'received', '', '80.2200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1591, '2021-09-18 21:30:33', 1643, NULL, NULL, 'IPAY2021/09/1590', NULL, 'cash', '', '', '', '', '', '', '174.5000', NULL, 18, 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 (1592, '2021-09-18 21:41:53', 1644, NULL, NULL, 'IPAY2021/09/1591', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 18, 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 (1593, '2021-09-18 21:45:41', 1645, NULL, NULL, 'IPAY2021/09/1592', NULL, 'cash', '', '', '', '', '', '', '54.5200', NULL, 6, NULL, 'received', '', '54.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 (1594, '2021-09-18 22:00:24', 1646, NULL, NULL, 'IPAY2021/09/1593', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 11, 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 (1595, '2021-09-19 18:34:21', 1647, NULL, NULL, 'IPAY2021/09/1594', NULL, 'cash', '', '', '', '', '', '', '259.6200', NULL, 8, NULL, 'received', '', '259.6200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1596, '2021-09-19 18:49:06', 1648, NULL, NULL, 'IPAY2021/09/1595', NULL, 'cash', '', '', '', '', '', '', '461.0700', NULL, 15, NULL, 'received', '', '461.0700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1597, '2021-09-19 20:07:00', 1649, NULL, NULL, 'IPAY2021/09/1596', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 8, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1598, '2021-09-19 20:44:03', 1650, NULL, NULL, 'IPAY2021/09/1597', NULL, 'cash', '', '', '', '', '', '', '114.0000', NULL, 15, 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 (1599, '2021-09-19 20:50:31', 1651, NULL, NULL, 'IPAY2021/09/1598', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 15, 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 (1600, '2021-09-19 20:56:55', 1652, NULL, NULL, 'IPAY2021/09/1599', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 15, 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 (1601, '2021-09-19 20:58:25', 1653, NULL, NULL, 'IPAY2021/09/1600', NULL, 'cash', '', '', '', '', '', '', '75.5000', NULL, 8, 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 (1602, '2021-09-19 21:14:44', 1654, NULL, NULL, 'IPAY2021/09/1601', NULL, 'cash', '', '', '', '', '', '', '124.5000', NULL, 15, 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 (1603, '2021-09-19 21:30:03', 1655, NULL, NULL, 'IPAY2021/09/1602', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 15, 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 (1604, '2021-09-19 21:46:02', 1656, NULL, NULL, 'IPAY2021/09/1603', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 15, 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 (1605, '2021-09-19 21:46:12', 1657, NULL, NULL, 'IPAY2021/09/1604', NULL, 'cash', '', '', '', '', '', '', '901.7000', NULL, 18, NULL, 'received', '', '901.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 (1606, '2021-09-19 21:50:14', 1658, NULL, NULL, 'IPAY2021/09/1605', NULL, 'cash', '', '', '', '', '', '', '103.0000', NULL, 8, 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 (1607, '2021-09-19 21:53:51', 1659, NULL, NULL, 'IPAY2021/09/1606', NULL, 'cash', '', '', '', '', '', '', '11.5100', NULL, 15, NULL, 'received', '', '11.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 (1608, '2021-09-19 22:01:39', 1660, NULL, NULL, 'IPAY2021/09/1607', NULL, 'cash', '', '', '', '', '', '', '91.0000', NULL, 18, NULL, 'received', '', '91.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1609, '2021-09-20 14:15:33', 1661, NULL, NULL, 'IPAY2021/09/1608', NULL, 'cash', '', '', '', '', '', '', '206.0000', NULL, 16, 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 (1610, '2021-09-20 14:26:47', 1662, NULL, NULL, 'IPAY2021/09/1609', NULL, 'cash', '', '', '', '', '', '', '412.7000', NULL, 16, NULL, 'received', '', '412.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 (1611, '2021-09-20 15:43:49', 1663, NULL, NULL, 'IPAY2021/09/1610', NULL, 'cash', '', '', '', '', '', '', '586.2000', NULL, 8, NULL, 'received', '', '586.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 (1612, '2021-09-20 15:44:57', 1664, NULL, NULL, 'IPAY2021/09/1611', NULL, 'cash', '', '', '', '', '', '', '100.5000', NULL, 16, NULL, 'received', '', '100.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1613, '2021-09-20 15:49:39', 1665, NULL, NULL, 'IPAY2021/09/1612', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 16, 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 (1614, '2021-09-20 15:56:27', 1666, NULL, NULL, 'IPAY2021/09/1613', NULL, 'cash', '', '', '', '', '', '', '224.2700', NULL, 11, NULL, 'received', '', '224.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 (1615, '2021-09-20 17:32:55', 1667, NULL, NULL, 'IPAY2021/09/1614', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 11, 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 (1616, '2021-09-20 17:33:44', 1668, NULL, NULL, 'IPAY2021/09/1615', NULL, 'cash', '', '', '', '', '', '', '241.2000', NULL, 6, NULL, 'received', '', '241.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 (1617, '2021-09-20 18:02:47', 1669, NULL, NULL, 'IPAY2021/09/1616', NULL, 'cash', '', '', '', '', '', '', '205.3000', NULL, 11, NULL, 'received', '', '205.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 (1618, '2021-09-20 18:41:31', 1670, NULL, NULL, 'IPAY2021/09/1617', NULL, 'cash', '', '', '', '', '', '', '243.5000', NULL, 11, NULL, 'received', '', '243.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1619, '2021-09-20 19:13:18', 1671, NULL, NULL, 'IPAY2021/09/1618', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 11, 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 (1620, '2021-09-20 20:06:38', 1672, NULL, NULL, 'IPAY2021/09/1619', NULL, 'cash', '', '', '', '', '', '', '357.5100', NULL, 6, NULL, 'received', '', '357.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 (1621, '2021-09-20 20:19:10', 1673, NULL, NULL, 'IPAY2021/09/1620', NULL, 'cash', '', '', '', '', '', '', '135.2700', NULL, 11, NULL, 'received', '', '135.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 (1622, '2021-09-20 21:34:15', 1674, NULL, NULL, 'IPAY2021/09/1621', NULL, 'cash', '', '', '', '', '', '', '476.4000', NULL, 18, NULL, 'received', '', '476.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 (1623, '2021-09-20 21:39:05', 1675, NULL, NULL, 'IPAY2021/09/1622', 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 (1624, '2021-09-20 21:50:59', 1676, NULL, NULL, 'IPAY2021/09/1623', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 18, 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 (1625, '2021-09-20 21:55:58', 1677, NULL, NULL, 'IPAY2021/09/1624', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 11, 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 (1626, '2021-09-20 22:01:00', 1678, NULL, NULL, 'IPAY2021/09/1625', NULL, 'cash', '', '', '', '', '', '', '74.0000', NULL, 18, NULL, 'received', '', '74.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1627, '2021-09-20 22:10:40', 1679, NULL, NULL, 'IPAY2021/09/1626', NULL, 'cash', '', '', '', '', '', '', '488.0600', NULL, 6, NULL, 'received', '', '488.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1628, '2021-09-21 12:04:40', 1680, NULL, NULL, 'IPAY2021/09/1627', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 16, 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 (1629, '2021-09-21 12:41:59', 1681, NULL, NULL, 'IPAY2021/09/1628', NULL, 'cash', '', '', '', '', '', '', '227.7900', NULL, 15, NULL, 'received', '', '227.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 (1630, '2021-09-21 14:24:16', 1682, NULL, NULL, 'IPAY2021/09/1629', NULL, 'cash', '', '', '', '', '', '', '652.8700', NULL, 8, NULL, 'received', '', '652.8700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1631, '2021-09-21 14:25:49', 1683, NULL, NULL, 'IPAY2021/09/1630', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 15, 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 (1632, '2021-09-21 14:41:47', 1684, NULL, NULL, 'IPAY2021/09/1631', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 8, 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 (1633, '2021-09-21 15:52:33', 1685, NULL, NULL, 'IPAY2021/09/1632', NULL, 'cash', '', '', '', '', '', '', '32.3000', NULL, 8, NULL, 'received', '', '32.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 (1634, '2021-09-21 16:02:35', 1686, NULL, NULL, 'IPAY2021/09/1633', NULL, 'cash', '', '', '', '', '', '', '474.5000', NULL, 16, NULL, 'received', '', '474.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1635, '2021-09-21 19:17:56', 1687, NULL, NULL, 'IPAY2021/09/1634', NULL, 'cash', '', '', '', '', '', '', '428.0200', NULL, 6, NULL, 'received', '', '428.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 (1636, '2021-09-21 19:56:20', 1688, NULL, NULL, 'IPAY2021/09/1635', NULL, 'cash', '', '', '', '', '', '', '365.6000', NULL, 11, NULL, 'received', '', '365.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 (1637, '2021-09-21 20:16:45', 1689, NULL, NULL, 'IPAY2021/09/1636', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 11, 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 (1638, '2021-09-21 20:50:23', 1690, NULL, NULL, 'IPAY2021/09/1637', NULL, 'cash', '', '', '', '', '', '', '197.5000', NULL, 6, NULL, 'received', '', '197.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1639, '2021-09-21 21:10:21', 1691, NULL, NULL, 'IPAY2021/09/1638', NULL, 'cash', '', '', '', '', '', '', '128.0000', NULL, 11, NULL, 'received', '', '128.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1640, '2021-09-21 21:46:32', 1692, NULL, NULL, 'IPAY2021/09/1639', NULL, 'cash', '', '', '', '', '', '', '697.4000', NULL, 18, NULL, 'received', '', '697.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 (1641, '2021-09-21 21:50:07', 1693, NULL, NULL, 'IPAY2021/09/1640', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 11, 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 (1642, '2021-09-21 21:52:33', 1694, NULL, NULL, 'IPAY2021/09/1641', NULL, 'cash', '', '', '', '', '', '', '74.0000', NULL, 6, NULL, 'received', '', '74.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1643, '2021-09-22 12:44:44', 1695, NULL, NULL, 'IPAY2021/09/1642', NULL, 'cash', '', '', '', '', '', '', '239.5000', NULL, 15, NULL, 'received', '', '239.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1644, '2021-09-22 13:18:57', 1696, NULL, NULL, 'IPAY2021/09/1643', NULL, 'cash', '', '', '', '', '', '', '133.0000', NULL, 15, 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 (1645, '2021-09-22 13:57:31', 1697, NULL, NULL, 'IPAY2021/09/1644', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 15, 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 (1646, '2021-09-22 14:31:36', 1698, NULL, NULL, 'IPAY2021/09/1645', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 15, 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 (1647, '2021-09-22 14:54:27', 1699, NULL, NULL, 'IPAY2021/09/1646', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 15, 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 (1648, '2021-09-22 14:55:16', 1700, NULL, NULL, 'IPAY2021/09/1647', NULL, 'cash', '', '', '', '', '', '', '209.5100', NULL, 8, NULL, 'received', '', '209.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 (1649, '2021-09-22 15:13:04', 1701, NULL, NULL, 'IPAY2021/09/1648', NULL, 'cash', '', '', '', '', '', '', '654.0000', NULL, 16, NULL, 'received', '', '654.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1650, '2021-09-22 15:14:11', 1702, NULL, NULL, 'IPAY2021/09/1649', 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 (1651, '2021-09-22 15:14:11', 1703, NULL, NULL, 'IPAY2021/09/1650', 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 (1652, '2021-09-22 15:49:41', 1704, NULL, NULL, 'IPAY2021/09/1651', NULL, 'cash', '', '', '', '', '', '', '20.1000', NULL, 16, NULL, 'received', '', '20.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 (1653, '2021-09-22 16:55:43', 1705, NULL, NULL, 'IPAY2021/09/1652', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 18, 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 (1654, '2021-09-22 18:36:53', 1706, NULL, NULL, 'IPAY2021/09/1653', NULL, 'cash', '', '', '', '', '', '', '99.0000', NULL, 11, NULL, 'received', '', '99.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1655, '2021-09-22 19:15:53', 1707, NULL, NULL, 'IPAY2021/09/1654', 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 (1656, '2021-09-22 19:36:33', 1708, NULL, NULL, 'IPAY2021/09/1655', 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 (1657, '2021-09-22 20:16:46', 1709, NULL, NULL, 'IPAY2021/09/1656', NULL, 'cash', '', '', '', '', '', '', '332.6000', NULL, 6, NULL, 'received', '', '332.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 (1658, '2021-09-22 21:00:21', 1710, NULL, NULL, 'IPAY2021/09/1657', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 11, 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 (1659, '2021-09-22 21:12:06', 1711, NULL, NULL, 'IPAY2021/09/1658', 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 (1660, '2021-09-22 21:30:16', 1712, NULL, NULL, 'IPAY2021/09/1659', 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 (1661, '2021-09-22 21:48:26', 1713, NULL, NULL, 'IPAY2021/09/1660', 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 (1662, '2021-09-22 21:57:55', 1714, NULL, NULL, 'IPAY2021/09/1661', NULL, 'cash', '', '', '', '', '', '', '588.0000', NULL, 18, NULL, 'received', '', '588.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1663, '2021-09-22 22:07:01', 1715, NULL, NULL, 'IPAY2021/09/1662', NULL, 'cash', '', '', '', '', '', '', '269.5000', NULL, 6, NULL, 'received', '', '269.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1664, '2021-09-22 22:08:52', 1716, NULL, NULL, 'IPAY2021/09/1663', NULL, 'cash', '', '', '', '', '', '', '269.5000', NULL, 6, NULL, 'received', '', '269.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1665, '2021-09-23 11:38:52', 1717, NULL, NULL, 'IPAY2021/09/1664', NULL, 'cash', '', '', '', '', '', '', '223.7000', NULL, 11, NULL, 'received', '', '223.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 (1666, '2021-09-23 14:30:58', 1718, NULL, NULL, 'IPAY2021/09/1665', NULL, 'cash', '', '', '', '', '', '', '233.2000', NULL, 8, NULL, 'received', '', '233.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 (1667, '2021-09-23 14:34:27', 1719, NULL, NULL, 'IPAY2021/09/1666', 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 (1668, '2021-09-23 15:08:28', 1720, NULL, NULL, 'IPAY2021/09/1667', NULL, 'cash', '', '', '', '', '', '', '158.0200', NULL, 8, NULL, 'received', '', '158.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 (1669, '2021-09-23 15:10:20', 1721, NULL, NULL, 'IPAY2021/09/1668', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (1670, '2021-09-23 15:21:32', 1722, NULL, NULL, 'IPAY2021/09/1669', 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 (1671, '2021-09-23 15:24:22', 1723, NULL, NULL, 'IPAY2021/09/1670', NULL, 'cash', '', '', '', '', '', '', '141.5100', NULL, 16, NULL, 'received', '', '141.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 (1672, '2021-09-23 15:49:28', 1724, NULL, NULL, 'IPAY2021/09/1671', NULL, 'cash', '', '', '', '', '', '', '14.4000', NULL, 16, NULL, 'received', '', '14.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 (1673, '2021-09-23 16:49:29', 1725, NULL, NULL, 'IPAY2021/09/1672', NULL, 'cash', '', '', '', '', '', '', '45.0300', NULL, 11, NULL, 'received', '', '45.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 (1674, '2021-09-23 18:33:05', 1726, NULL, NULL, 'IPAY2021/09/1673', NULL, 'cash', '', '', '', '', '', '', '148.0000', NULL, 6, NULL, 'received', '', '148.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1675, '2021-09-23 20:38:53', 1727, NULL, NULL, 'IPAY2021/09/1674', NULL, 'cash', '', '', '', '', '', '', '305.5200', NULL, 11, NULL, 'received', '', '305.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 (1676, '2021-09-23 21:23:43', 1728, NULL, NULL, 'IPAY2021/09/1675', NULL, 'cash', '', '', '', '', '', '', '700.5000', NULL, 6, 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 (1677, '2021-09-23 21:40:55', 1729, NULL, NULL, 'IPAY2021/09/1676', 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 (1678, '2021-09-23 21:47:04', 1730, NULL, NULL, 'IPAY2021/09/1677', NULL, 'cash', '', '', '', '', '', '', '603.7000', NULL, 18, NULL, 'received', '', '603.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 (1679, '2021-09-23 21:54:51', 1731, NULL, NULL, 'IPAY2021/09/1678', NULL, 'cash', '', '', '', '', '', '', '55.5000', NULL, 11, NULL, 'received', '', '55.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1680, '2021-09-23 21:59:14', 1732, NULL, NULL, 'IPAY2021/09/1679', NULL, 'cash', '', '', '', '', '', '', '216.0000', NULL, 18, 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 (1681, '2021-09-23 22:02:37', 1733, NULL, NULL, 'IPAY2021/09/1680', NULL, 'cash', '', '', '', '', '', '', '92.0000', NULL, 6, 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 (1682, '2021-09-24 08:56:24', 1734, NULL, NULL, 'IPAY2021/09/1681', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 17, 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 (1683, '2021-09-24 12:54:42', 1735, NULL, NULL, 'IPAY2021/09/1682', NULL, 'cash', '', '', '', '', '', '', '140.1300', NULL, 15, NULL, 'received', '', '140.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1684, '2021-09-24 13:52:16', 1736, NULL, NULL, 'IPAY2021/09/1683', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 15, 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 (1685, '2021-09-24 14:27:26', 1737, NULL, NULL, 'IPAY2021/09/1684', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 15, 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 (1686, '2021-09-24 14:57:38', 1738, NULL, NULL, 'IPAY2021/09/1685', NULL, 'cash', '', '', '', '', '', '', '193.5000', NULL, 8, NULL, 'received', '', '193.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1687, '2021-09-24 15:13:42', 1739, NULL, NULL, 'IPAY2021/09/1686', 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 (1688, '2021-09-24 15:17:36', 1740, NULL, NULL, 'IPAY2021/09/1687', NULL, 'cash', '', '', '', '', '', '', '220.5000', NULL, 15, 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 (1689, '2021-09-24 15:21:33', 1741, NULL, NULL, 'IPAY2021/09/1688', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (1690, '2021-09-24 15:24:53', 1742, NULL, NULL, 'IPAY2021/09/1689', NULL, 'cash', '', '', '', '', '', '', '418.9000', NULL, 17, NULL, 'received', '', '418.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 (1691, '2021-09-24 19:04:26', 1743, NULL, NULL, 'IPAY2021/09/1690', NULL, 'cash', '', '', '', '', '', '', '263.3000', NULL, 15, NULL, 'received', '', '263.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 (1692, '2021-09-24 20:03:43', 1744, NULL, NULL, 'IPAY2021/09/1691', NULL, 'cash', '', '', '', '', '', '', '104.0000', NULL, 15, 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 (1693, '2021-09-24 20:40:01', 1745, NULL, NULL, 'IPAY2021/09/1692', NULL, 'cash', '', '', '', '', '', '', '732.7400', NULL, 16, NULL, 'received', '', '732.7400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1694, '2021-09-24 20:41:23', 1746, NULL, NULL, 'IPAY2021/09/1693', NULL, 'cash', '', '', '', '', '', '', '778.5000', NULL, 6, NULL, 'received', '', '778.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1695, '2021-09-24 20:58:10', 1747, NULL, NULL, 'IPAY2021/09/1694', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 16, 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 (1696, '2021-09-24 21:21:36', 1748, NULL, NULL, 'IPAY2021/09/1695', NULL, 'cash', '', '', '', '', '', '', '2.3000', NULL, 15, NULL, 'received', '', '2.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 (1697, '2021-09-24 21:29:09', 1749, NULL, NULL, 'IPAY2021/09/1696', NULL, 'cash', '', '', '', '', '', '', '217.9000', NULL, 16, NULL, 'received', '', '217.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 (1698, '2021-09-24 21:40:05', 1750, NULL, NULL, 'IPAY2021/09/1697', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 15, 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 (1699, '2021-09-24 21:53:03', 1751, NULL, NULL, 'IPAY2021/09/1698', NULL, 'cash', '', '', '', '', '', '', '264.0000', NULL, 6, NULL, 'received', '', '264.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1700, '2021-09-24 21:57:51', 1752, NULL, NULL, 'IPAY2021/09/1699', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 6, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1701, '2021-09-25 09:01:16', 1753, NULL, NULL, 'IPAY2021/09/1700', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 3, 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 (1702, '2021-09-25 15:08:53', 1754, NULL, NULL, 'IPAY2021/09/1701', NULL, 'cash', '', '', '', '', '', '', '287.0000', NULL, 16, NULL, 'received', '', '287.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1703, '2021-09-25 15:10:08', 1755, NULL, NULL, 'IPAY2021/09/1702', NULL, 'cash', '', '', '', '', '', '', '141.0000', NULL, 15, 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 (1704, '2021-09-25 15:11:52', 1756, NULL, NULL, 'IPAY2021/09/1703', NULL, 'cash', '', '', '', '', '', '', '409.5000', NULL, 8, NULL, 'received', '', '409.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1705, '2021-09-25 15:41:49', 1757, NULL, NULL, 'IPAY2021/09/1704', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 16, 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 (1706, '2021-09-25 19:00:51', 1758, NULL, NULL, 'IPAY2021/09/1705', NULL, 'cash', '', '', '', '', '', '', '215.3200', NULL, 15, NULL, 'received', '', '215.3200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1707, '2021-09-25 19:47:34', 1759, NULL, NULL, 'IPAY2021/09/1706', NULL, 'cash', '', '', '', '', '', '', '69.5000', NULL, 15, NULL, 'received', '', '69.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1708, '2021-09-25 20:15:49', 1760, NULL, NULL, 'IPAY2021/09/1707', NULL, 'cash', '', '', '', '', '', '', '1348.5000', NULL, 6, NULL, 'received', '', '1348.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1709, '2021-09-25 20:16:47', 1761, NULL, NULL, 'IPAY2021/09/1708', 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 (1710, '2021-09-25 20:25:51', 1762, NULL, NULL, 'IPAY2021/09/1709', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (1711, '2021-09-25 21:10:02', 1763, NULL, NULL, 'IPAY2021/09/1710', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 15, 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 (1712, '2021-09-25 21:29:08', 1764, NULL, NULL, 'IPAY2021/09/1711', NULL, 'cash', '', '', '', '', '', '', '403.0000', NULL, 18, 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 (1713, '2021-09-25 21:47:26', 1765, NULL, NULL, 'IPAY2021/09/1712', NULL, 'cash', '', '', '', '', '', '', '203.8000', NULL, 6, NULL, 'received', '', '203.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 (1714, '2021-09-25 21:59:01', 1766, NULL, NULL, 'IPAY2021/09/1713', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 6, 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 (1715, '2021-09-26 19:05:53', 1767, NULL, NULL, 'IPAY2021/09/1714', NULL, 'cash', '', '', '', '', '', '', '219.6200', NULL, 15, NULL, 'received', '', '219.6200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1716, '2021-09-26 19:07:42', 1768, NULL, NULL, 'IPAY2021/09/1715', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 15, 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 (1717, '2021-09-26 19:34:27', 1769, NULL, NULL, 'IPAY2021/09/1716', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (1718, '2021-09-26 20:07:04', 1770, NULL, NULL, 'IPAY2021/09/1717', NULL, 'cash', '', '', '', '', '', '', '62.3000', NULL, 15, NULL, 'received', '', '62.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 (1719, '2021-09-26 20:11:46', 1771, NULL, NULL, 'IPAY2021/09/1718', NULL, 'cash', '', '', '', '', '', '', '1320.5000', NULL, 8, NULL, 'received', '', '1320.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1720, '2021-09-26 21:22:19', 1772, NULL, NULL, 'IPAY2021/09/1719', NULL, 'cash', '', '', '', '', '', '', '74.5000', NULL, 15, 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 (1721, '2021-09-26 21:32:06', 1773, NULL, NULL, 'IPAY2021/09/1720', NULL, 'cash', '', '', '', '', '', '', '1564.5000', NULL, 18, NULL, 'received', '', '1564.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1722, '2021-09-26 21:42:38', 1774, NULL, NULL, 'IPAY2021/09/1721', NULL, 'cash', '', '', '', '', '', '', '104.5000', NULL, 8, 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 (1723, '2021-09-26 21:45:20', 1775, NULL, NULL, 'IPAY2021/09/1722', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 15, 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 (1724, '2021-09-26 21:53:54', 1776, NULL, NULL, 'IPAY2021/09/1723', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 8, 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 (1725, '2021-09-27 13:16:56', 1777, NULL, NULL, 'IPAY2021/09/1724', NULL, 'cash', '', '', '', '', '', '', '175.0000', NULL, 8, NULL, 'received', '', '175.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1726, '2021-09-27 13:34:30', 1778, NULL, NULL, 'IPAY2021/09/1725', NULL, 'cash', '', '', '', '', '', '', '336.5000', NULL, 8, NULL, 'received', '', '336.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1727, '2021-09-27 13:40:05', 1779, NULL, NULL, 'IPAY2021/09/1726', NULL, 'cash', '', '', '', '', '', '', '229.0000', NULL, 15, 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 (1728, '2021-09-27 14:27:45', 1780, NULL, NULL, 'IPAY2021/09/1727', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 15, 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 (1729, '2021-09-27 15:45:11', 1781, NULL, NULL, 'IPAY2021/09/1728', NULL, 'cash', '', '', '', '', '', '', '154.3200', NULL, 8, NULL, 'received', '', '154.3200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1730, '2021-09-27 15:52:35', 1782, NULL, NULL, 'IPAY2021/09/1729', NULL, 'cash', '', '', '', '', '', '', '545.4000', NULL, 18, NULL, 'received', '', '545.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 (1731, '2021-09-27 18:41:28', 1783, NULL, NULL, 'IPAY2021/09/1730', NULL, 'cash', '', '', '', '', '', '', '342.5000', NULL, 6, NULL, 'received', '', '342.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1732, '2021-09-27 19:35:04', 1784, NULL, NULL, 'IPAY2021/09/1731', NULL, 'cash', '', '', '', '', '', '', '550.5400', NULL, 11, NULL, 'received', '', '550.5400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1733, '2021-09-27 20:44:05', 1785, NULL, NULL, 'IPAY2021/09/1732', NULL, 'cash', '', '', '', '', '', '', '232.1400', NULL, 11, NULL, 'received', '', '232.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1734, '2021-09-27 21:03:29', 1786, NULL, NULL, 'IPAY2021/09/1733', NULL, 'cash', '', '', '', '', '', '', '231.0000', NULL, 6, NULL, 'received', '', '231.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1735, '2021-09-27 21:28:03', 1787, NULL, NULL, 'IPAY2021/09/1734', NULL, 'cash', '', '', '', '', '', '', '290.1200', NULL, 16, NULL, 'received', '', '290.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 (1736, '2021-09-27 21:47:49', 1788, NULL, NULL, 'IPAY2021/09/1735', NULL, 'cash', '', '', '', '', '', '', '184.5000', NULL, 6, NULL, 'received', '', '184.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1737, '2021-09-27 21:55:36', 1789, NULL, NULL, 'IPAY2021/09/1736', 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 (1738, '2021-09-28 15:06:00', 1790, NULL, NULL, 'IPAY2021/09/1737', NULL, 'cash', '', '', '', '', '', '', '457.5100', NULL, 15, NULL, 'received', '', '457.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 (1739, '2021-09-28 15:32:02', 1791, NULL, NULL, 'IPAY2021/09/1738', NULL, 'cash', '', '', '', '', '', '', '307.0000', NULL, 8, NULL, 'received', '', '307.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1740, '2021-09-28 16:08:00', 1792, NULL, NULL, 'IPAY2021/09/1739', NULL, 'cash', '', '', '', '', '', '', '497.0000', NULL, 18, NULL, 'received', '', '497.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1741, '2021-09-28 20:09:23', 1793, NULL, NULL, 'IPAY2021/09/1740', NULL, 'cash', '', '', '', '', '', '', '862.6100', NULL, 6, NULL, 'received', '', '862.6100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1742, '2021-09-28 20:29:53', 1794, NULL, NULL, 'IPAY2021/09/1741', NULL, 'cash', '', '', '', '', '', '', '426.7100', NULL, 16, NULL, 'received', '', '426.7100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1743, '2021-09-28 21:06:57', 1795, NULL, NULL, 'IPAY2021/09/1742', NULL, 'cash', '', '', '', '', '', '', '156.7000', NULL, 11, NULL, 'received', '', '156.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 (1744, '2021-09-28 21:32:58', 1796, NULL, NULL, 'IPAY2021/09/1743', NULL, 'cash', '', '', '', '', '', '', '117.0000', NULL, 6, 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 (1745, '2021-09-28 21:38:11', 1797, NULL, NULL, 'IPAY2021/09/1744', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 16, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1746, '2021-09-28 21:51:58', 1798, NULL, NULL, 'IPAY2021/09/1745', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 6, 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 (1747, '2021-09-28 21:56:03', 1799, NULL, NULL, 'IPAY2021/09/1746', NULL, 'cash', '', '', '', '', '', '', '38.5000', NULL, 11, NULL, 'received', '', '38.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1748, '2021-09-28 22:01:14', 1800, NULL, NULL, 'IPAY2021/09/1747', 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 (1749, '2021-09-29 13:11:18', 1801, NULL, NULL, 'IPAY2021/09/1748', NULL, 'cash', '', '', '', '', '', '', '146.1300', NULL, 15, NULL, 'received', '', '146.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1750, '2021-09-29 14:33:28', 1802, NULL, NULL, 'IPAY2021/09/1749', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 15, 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 (1751, '2021-09-29 14:47:19', 1803, NULL, NULL, 'IPAY2021/09/1750', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 15, 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 (1752, '2021-09-29 15:09:42', 1804, NULL, NULL, 'IPAY2021/09/1751', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 15, 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 (1753, '2021-09-29 15:12:35', 1805, NULL, NULL, 'IPAY2021/09/1752', NULL, 'cash', '', '', '', '', '', '', '71.6000', NULL, 8, NULL, 'received', '', '71.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 (1754, '2021-09-29 16:13:26', 1806, NULL, NULL, 'IPAY2021/09/1753', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 11, 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 (1755, '2021-09-29 16:19:21', 1807, NULL, NULL, 'IPAY2021/09/1754', NULL, 'cash', '', '', '', '', '', '', '350.1000', NULL, 18, NULL, 'received', '', '350.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 (1756, '2021-09-29 18:21:42', 1808, NULL, NULL, 'IPAY2021/09/1755', NULL, 'cash', '', '', '', '', '', '', '295.2000', NULL, 16, NULL, 'received', '', '295.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 (1757, '2021-09-29 20:41:42', 1809, NULL, NULL, 'IPAY2021/09/1756', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 16, 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 (1758, '2021-09-29 21:14:03', 1810, NULL, NULL, 'IPAY2021/09/1757', NULL, 'cash', '', '', '', '', '', '', '200.0600', NULL, 16, NULL, 'received', '', '200.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1759, '2021-09-29 21:18:47', 1811, NULL, NULL, 'IPAY2021/09/1758', NULL, 'cash', '', '', '', '', '', '', '252.3000', NULL, 6, NULL, 'received', '', '252.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 (1760, '2021-09-29 21:19:00', 1812, NULL, NULL, 'IPAY2021/09/1759', NULL, 'cash', '', '', '', '', '', '', '252.3000', NULL, 6, NULL, 'received', '', '252.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 (1761, '2021-09-29 21:32:45', 1813, NULL, NULL, 'IPAY2021/09/1760', NULL, 'cash', '', '', '', '', '', '', '624.8000', NULL, 11, NULL, 'received', '', '624.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 (1762, '2021-09-29 21:43:51', 1814, NULL, NULL, 'IPAY2021/09/1761', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 16, 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 (1763, '2021-09-29 21:48:03', 1815, NULL, NULL, 'IPAY2021/09/1762', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 11, 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 (1764, '2021-09-30 12:04:49', 1816, NULL, NULL, 'IPAY2021/09/1763', NULL, 'cash', '', '', '', '', '', '', '171.5000', NULL, 15, 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 (1765, '2021-09-30 12:13:11', 1817, NULL, NULL, 'IPAY2021/09/1764', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 15, 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 (1766, '2021-09-30 13:55:03', 1818, NULL, NULL, 'IPAY2021/09/1765', NULL, 'cash', '', '', '', '', '', '', '273.5000', NULL, 8, NULL, 'received', '', '273.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1767, '2021-09-30 14:07:37', 1819, NULL, NULL, 'IPAY2021/09/1766', 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 (1768, '2021-09-30 14:11:32', 1820, NULL, NULL, 'IPAY2021/09/1767', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 8, 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 (1769, '2021-09-30 14:23:07', 1821, NULL, NULL, 'IPAY2021/09/1768', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 8, 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 (1770, '2021-09-30 14:51:40', 1822, NULL, NULL, 'IPAY2021/09/1769', 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 (1771, '2021-09-30 15:09:35', 1823, NULL, NULL, 'IPAY2021/09/1770', NULL, 'cash', '', '', '', '', '', '', '205.3000', NULL, 8, NULL, 'received', '', '205.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 (1772, '2021-09-30 16:00:22', 1824, NULL, NULL, 'IPAY2021/09/1771', NULL, 'cash', '', '', '', '', '', '', '332.8000', NULL, 18, NULL, 'received', '', '332.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 (1773, '2021-09-30 18:17:58', 1825, NULL, NULL, 'IPAY2021/09/1772', NULL, 'cash', '', '', '', '', '', '', '173.0400', NULL, 11, NULL, 'received', '', '173.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 (1774, '2021-09-30 20:27:30', 1826, NULL, NULL, 'IPAY2021/09/1773', NULL, 'cash', '', '', '', '', '', '', '510.8600', NULL, 16, NULL, 'received', '', '510.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 (1775, '2021-09-30 20:31:21', 1827, NULL, NULL, 'IPAY2021/09/1774', NULL, 'cash', '', '', '', '', '', '', '162.5000', NULL, 16, 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 (1776, '2021-09-30 20:32:18', 1828, NULL, NULL, 'IPAY2021/09/1775', NULL, 'cash', '', '', '', '', '', '', '173.0000', NULL, 11, NULL, 'received', '', '173.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1777, '2021-09-30 20:48:27', 1829, NULL, NULL, 'IPAY2021/09/1776', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 16, 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 (1778, '2021-09-30 21:00:08', 1830, NULL, NULL, 'IPAY2021/09/1777', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 16, 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 (1779, '2021-09-30 21:17:52', 1831, NULL, NULL, 'IPAY2021/09/1778', NULL, 'cash', '', '', '', '', '', '', '549.6400', NULL, 6, NULL, 'received', '', '549.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1780, '2021-09-30 21:33:04', 1832, NULL, NULL, 'IPAY2021/09/1779', NULL, 'cash', '', '', '', '', '', '', '159.9000', NULL, 6, NULL, 'received', '', '159.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 (1781, '2021-09-30 21:36:50', 1833, NULL, NULL, 'IPAY2021/09/1780', NULL, 'cash', '', '', '', '', '', '', '1.0200', NULL, 6, NULL, 'received', '', '1.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 (1782, '2021-09-30 21:52:01', 1834, NULL, NULL, 'IPAY2021/09/1781', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 11, 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 (1783, '2021-10-01 12:35:59', 1835, NULL, NULL, 'IPAY2021/10/1782', NULL, 'cash', '', '', '', '', '', '', '147.4000', NULL, 15, NULL, 'received', '', '147.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 (1784, '2021-10-01 13:16:28', 1836, NULL, NULL, 'IPAY2021/10/1783', NULL, 'cash', '', '', '', '', '', '', '407.8000', NULL, 8, NULL, 'received', '', '407.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 (1785, '2021-10-01 14:26:54', 1837, NULL, NULL, 'IPAY2021/10/1784', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (1786, '2021-10-01 14:27:38', 1838, NULL, NULL, 'IPAY2021/10/1785', NULL, 'cash', '', '', '', '', '', '', '84.8000', NULL, 8, NULL, 'received', '', '84.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 (1787, '2021-10-01 14:28:19', 1839, NULL, NULL, 'IPAY2021/10/1786', NULL, 'cash', '', '', '', '', '', '', '84.8000', NULL, 8, NULL, 'received', '', '84.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 (1788, '2021-10-01 14:43:22', 1840, NULL, NULL, 'IPAY2021/10/1787', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 8, 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 (1789, '2021-10-01 15:26:57', 1841, NULL, NULL, 'IPAY2021/10/1788', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (1790, '2021-10-01 15:59:46', 1842, NULL, NULL, 'IPAY2021/10/1789', NULL, 'cash', '', '', '', '', '', '', '375.0000', NULL, 16, NULL, 'received', '', '375.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1791, '2021-10-01 19:31:12', 1843, NULL, NULL, 'IPAY2021/10/1790', NULL, 'cash', '', '', '', '', '', '', '570.0100', NULL, 16, NULL, 'received', '', '570.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 (1792, '2021-10-01 19:32:33', 1844, NULL, NULL, 'IPAY2021/10/1791', NULL, 'cash', '', '', '', '', '', '', '433.5400', NULL, 11, NULL, 'received', '', '433.5400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1793, '2021-10-01 19:38:11', 1845, NULL, NULL, 'IPAY2021/10/1792', NULL, 'cash', '', '', '', '', '', '', '459.1200', NULL, 6, NULL, 'received', '', '459.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 (1794, '2021-10-01 19:39:39', 1846, NULL, NULL, 'IPAY2021/10/1793', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 11, 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 (1795, '2021-10-01 20:33:41', 1847, NULL, NULL, 'IPAY2021/10/1794', 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 (1796, '2021-10-01 21:10:46', 1848, NULL, NULL, 'IPAY2021/10/1795', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 11, 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 (1797, '2021-10-01 21:22:43', 1849, NULL, NULL, 'IPAY2021/10/1796', NULL, 'cash', '', '', '', '', '', '', '355.0000', NULL, 16, NULL, 'received', '', '355.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1798, '2021-10-01 21:34:35', 1850, NULL, NULL, 'IPAY2021/10/1797', NULL, 'cash', '', '', '', '', '', '', '5.0200', NULL, 11, NULL, 'received', '', '5.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 (1799, '2021-10-01 21:45:00', 1851, NULL, NULL, 'IPAY2021/10/1798', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 16, 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 (1800, '2021-10-01 21:49:42', 1852, NULL, NULL, 'IPAY2021/10/1799', 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 (1801, '2021-10-01 22:01:02', 1853, NULL, NULL, 'IPAY2021/10/1800', NULL, 'cash', '', '', '', '', '', '', '189.5200', NULL, 6, NULL, 'received', '', '189.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 (1802, '2021-10-01 22:04:52', 1854, NULL, NULL, 'IPAY2021/10/1801', NULL, 'cash', '', '', '', '', '', '', '285.0000', NULL, 6, 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 (1803, '2021-10-01 23:05:48', 1855, NULL, NULL, 'IPAY2021/10/1802', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 3, 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 (1804, '2021-10-01 23:27:39', 1856, NULL, NULL, 'IPAY2021/10/1803', 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 (1805, '2021-10-02 12:05:31', 1857, NULL, NULL, 'IPAY2021/10/1804', NULL, 'cash', '', '', '', '', '', '', '447.0000', NULL, 15, NULL, 'received', '', '447.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1806, '2021-10-02 12:34:10', 1858, NULL, NULL, 'IPAY2021/10/1805', NULL, 'cash', '', '', '', '', '', '', '24.3000', NULL, 15, NULL, 'received', '', '24.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 (1807, '2021-10-02 13:18:46', 1859, NULL, NULL, 'IPAY2021/10/1806', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 15, 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 (1808, '2021-10-02 13:46:15', 1860, NULL, NULL, 'IPAY2021/10/1807', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 15, 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 (1809, '2021-10-02 14:22:50', 1861, NULL, NULL, 'IPAY2021/10/1808', NULL, 'cash', '', '', '', '', '', '', '162.2000', NULL, 8, NULL, 'received', '', '162.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 (1810, '2021-10-02 14:37:42', 1862, NULL, NULL, 'IPAY2021/10/1809', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (1811, '2021-10-02 14:38:21', 1863, NULL, NULL, 'IPAY2021/10/1810', NULL, 'cash', '', '', '', '', '', '', '224.7800', NULL, 16, NULL, 'received', '', '224.7800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1812, '2021-10-02 15:04:31', 1864, NULL, NULL, 'IPAY2021/10/1811', NULL, 'cash', '', '', '', '', '', '', '25.8000', NULL, 8, NULL, 'received', '', '25.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 (1813, '2021-10-02 15:25:59', 1865, NULL, NULL, 'IPAY2021/10/1812', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 16, 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 (1814, '2021-10-02 15:38:30', 1866, NULL, NULL, 'IPAY2021/10/1813', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 16, 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 (1815, '2021-10-02 19:35:20', 1867, NULL, NULL, 'IPAY2021/10/1814', NULL, 'cash', '', '', '', '', '', '', '335.8400', NULL, 11, NULL, 'received', '', '335.8400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1816, '2021-10-02 19:59:57', 1868, NULL, NULL, 'IPAY2021/10/1815', NULL, 'cash', '', '', '', '', '', '', '68.1800', NULL, 11, NULL, 'received', '', '68.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 (1817, '2021-10-02 21:25:08', 1869, NULL, NULL, 'IPAY2021/10/1816', NULL, 'cash', '', '', '', '', '', '', '45.2100', NULL, 11, NULL, 'received', '', '45.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 (1818, '2021-10-02 21:25:52', 1870, NULL, NULL, 'IPAY2021/10/1817', NULL, 'cash', '', '', '', '', '', '', '927.2000', NULL, 18, NULL, 'received', '', '927.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 (1819, '2021-10-02 21:47:13', 1871, NULL, NULL, 'IPAY2021/10/1818', NULL, 'cash', '', '', '', '', '', '', '731.8000', NULL, 6, NULL, 'received', '', '731.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 (1820, '2021-10-02 21:49:58', 1872, NULL, NULL, 'IPAY2021/10/1819', NULL, 'cash', '', '', '', '', '', '', '19.2000', NULL, 11, NULL, 'received', '', '19.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 (1821, '2021-10-03 18:07:49', 1873, NULL, NULL, 'IPAY2021/10/1820', NULL, 'cash', '', '', '', '', '', '', '269.5000', NULL, 15, NULL, 'received', '', '269.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1822, '2021-10-03 19:42:06', 1874, NULL, NULL, 'IPAY2021/10/1821', NULL, 'cash', '', '', '', '', '', '', '327.8000', NULL, 15, NULL, 'received', '', '327.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 (1823, '2021-10-03 19:52:59', 1875, NULL, NULL, 'IPAY2021/10/1822', NULL, 'cash', '', '', '', '', '', '', '490.6100', NULL, 8, NULL, 'received', '', '490.6100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1824, '2021-10-03 20:06:14', 1876, NULL, NULL, 'IPAY2021/10/1823', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (1825, '2021-10-03 20:08:03', 1877, NULL, NULL, 'IPAY2021/10/1824', NULL, 'cash', '', '', '', '', '', '', '47.5200', NULL, 15, NULL, 'received', '', '47.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 (1826, '2021-10-03 20:24:43', 1878, NULL, NULL, 'IPAY2021/10/1825', NULL, 'cash', '', '', '', '', '', '', '1407.0000', NULL, 18, NULL, 'received', '', '1407.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1827, '2021-10-03 20:37:05', 1879, NULL, NULL, 'IPAY2021/10/1826', NULL, 'cash', '', '', '', '', '', '', '135.0000', NULL, 8, 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 (1828, '2021-10-03 20:57:44', 1880, NULL, NULL, 'IPAY2021/10/1827', NULL, 'cash', '', '', '', '', '', '', '105.0200', NULL, 15, NULL, 'received', '', '105.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 (1829, '2021-10-03 20:59:46', 1881, NULL, NULL, 'IPAY2021/10/1828', NULL, 'cash', '', '', '', '', '', '', '151.4000', NULL, 18, NULL, 'received', '', '151.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 (1830, '2021-10-03 21:05:03', 1882, NULL, NULL, 'IPAY2021/10/1829', NULL, 'cash', '', '', '', '', '', '', '102.1200', NULL, 8, NULL, 'received', '', '102.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 (1831, '2021-10-03 21:33:00', 1883, NULL, NULL, 'IPAY2021/10/1830', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 8, 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 (1832, '2021-10-03 21:50:12', 1884, NULL, NULL, 'IPAY2021/10/1831', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 15, 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 (1833, '2021-10-03 21:55:20', 1885, NULL, NULL, 'IPAY2021/10/1832', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 8, 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 (1834, '2021-10-03 22:43:46', 1886, NULL, NULL, 'IPAY2021/10/1833', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 3, 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 (1835, '2021-10-03 23:26:47', 1887, NULL, NULL, 'IPAY2021/10/1834', 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 (1836, '2021-10-04 13:15:46', 1888, NULL, NULL, 'IPAY2021/10/1835', NULL, 'cash', '', '', '', '', '', '', '146.1000', NULL, 15, NULL, 'received', '', '146.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 (1837, '2021-10-04 13:45:25', 1889, NULL, NULL, 'IPAY2021/10/1836', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 15, 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 (1838, '2021-10-04 14:30:51', 1890, NULL, NULL, 'IPAY2021/10/1837', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 15, 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 (1839, '2021-10-04 14:32:42', 1891, NULL, NULL, 'IPAY2021/10/1838', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (1840, '2021-10-04 14:33:00', 1892, NULL, NULL, 'IPAY2021/10/1839', NULL, 'cash', '', '', '', '', '', '', '549.9000', NULL, 8, NULL, 'received', '', '549.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 (1841, '2021-10-04 14:48:07', 1893, NULL, NULL, 'IPAY2021/10/1840', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (1842, '2021-10-04 14:49:21', 1894, NULL, NULL, 'IPAY2021/10/1841', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 8, 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 (1843, '2021-10-04 14:52:09', 1895, NULL, NULL, 'IPAY2021/10/1842', NULL, 'cash', '', '', '', '', '', '', '438.7000', NULL, 16, NULL, 'received', '', '438.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 (1844, '2021-10-04 15:21:27', 1896, NULL, NULL, 'IPAY2021/10/1843', 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 (1845, '2021-10-04 15:46:54', 1897, NULL, NULL, 'IPAY2021/10/1844', 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 (1846, '2021-10-04 16:12:52', 1898, NULL, NULL, 'IPAY2021/10/1845', 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 (1847, '2021-10-04 16:18:39', 1899, NULL, NULL, 'IPAY2021/10/1846', NULL, 'cash', '', '', '', '', '', '', '25.7000', NULL, 11, NULL, 'received', '', '25.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 (1848, '2021-10-04 16:27:17', 1900, NULL, NULL, 'IPAY2021/10/1847', 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 (1849, '2021-10-04 17:19:55', 1901, NULL, NULL, 'IPAY2021/10/1848', 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 (1850, '2021-10-04 18:40:28', 1902, NULL, NULL, 'IPAY2021/10/1849', NULL, 'cash', '', '', '', '', '', '', '194.7000', NULL, 11, NULL, 'received', '', '194.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 (1851, '2021-10-04 19:23:35', 1903, NULL, NULL, 'IPAY2021/10/1850', NULL, 'cash', '', '', '', '', '', '', '224.8000', NULL, 6, NULL, 'received', '', '224.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 (1852, '2021-10-04 19:24:14', 1904, NULL, NULL, 'IPAY2021/10/1851', 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 (1853, '2021-10-04 19:27:34', 1905, NULL, NULL, 'IPAY2021/10/1852', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 6, 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 (1854, '2021-10-04 20:04:49', 1906, NULL, NULL, 'IPAY2021/10/1853', NULL, 'cash', '', '', '', '', '', '', '194.0400', NULL, 6, NULL, 'received', '', '194.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 (1855, '2021-10-04 20:14:41', 1907, NULL, NULL, 'IPAY2021/10/1854', NULL, 'cash', '', '', '', '', '', '', '178.0000', NULL, 11, 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 (1856, '2021-10-04 20:35:21', 1908, NULL, NULL, 'IPAY2021/10/1855', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 11, 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 (1857, '2021-10-04 21:07:47', 1909, NULL, NULL, 'IPAY2021/10/1856', NULL, 'cash', '', '', '', '', '', '', '47.5200', NULL, 11, NULL, 'received', '', '47.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 (1858, '2021-10-04 21:31:52', 1910, NULL, NULL, 'IPAY2021/10/1857', NULL, 'cash', '', '', '', '', '', '', '802.3000', NULL, 18, NULL, 'received', '', '802.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 (1859, '2021-10-04 21:31:54', 1911, NULL, NULL, 'IPAY2021/10/1858', 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 (1860, '2021-10-04 21:41:42', 1912, NULL, NULL, 'IPAY2021/10/1859', NULL, 'cash', '', '', '', '', '', '', '82.0100', NULL, 6, NULL, 'received', '', '82.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 (1861, '2021-10-04 21:42:28', 1913, NULL, NULL, 'IPAY2021/10/1860', 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 (1862, '2021-10-04 21:49:48', 1914, NULL, NULL, 'IPAY2021/10/1861', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 18, 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 (1863, '2021-10-04 21:52:56', 1915, NULL, NULL, 'IPAY2021/10/1862', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 11, 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 (1864, '2021-10-05 12:43:59', 1916, NULL, NULL, 'IPAY2021/10/1863', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 16, 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 (1865, '2021-10-05 13:52:42', 1917, NULL, NULL, 'IPAY2021/10/1864', NULL, 'cash', '', '', '', '', '', '', '216.0000', NULL, 15, 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 (1866, '2021-10-05 14:01:01', 1918, NULL, NULL, 'IPAY2021/10/1865', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 15, 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 (1867, '2021-10-05 14:03:08', 1919, NULL, NULL, 'IPAY2021/10/1866', NULL, 'cash', '', '', '', '', '', '', '188.6000', NULL, 16, NULL, 'received', '', '188.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 (1868, '2021-10-05 14:03:32', 1920, NULL, NULL, 'IPAY2021/10/1867', NULL, 'cash', '', '', '', '', '', '', '590.0000', NULL, 8, NULL, 'received', '', '590.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1869, '2021-10-05 14:05:07', 1921, NULL, NULL, 'IPAY2021/10/1868', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 16, 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 (1870, '2021-10-05 14:26:02', 1922, NULL, NULL, 'IPAY2021/10/1869', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 15, 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 (1871, '2021-10-05 15:19:21', 1923, NULL, NULL, 'IPAY2021/10/1870', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 8, 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 (1872, '2021-10-05 15:33:02', 1924, NULL, NULL, 'IPAY2021/10/1871', NULL, 'cash', '', '', '', '', '', '', '76.3000', NULL, 16, NULL, 'received', '', '76.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 (1873, '2021-10-05 16:21:09', 1925, NULL, NULL, 'IPAY2021/10/1872', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 18, 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 (1874, '2021-10-05 18:21:13', 1926, NULL, NULL, 'IPAY2021/10/1873', NULL, 'cash', '', '', '', '', '', '', '179.2000', NULL, 11, NULL, 'received', '', '179.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 (1875, '2021-10-05 19:19:53', 1927, NULL, NULL, 'IPAY2021/10/1874', NULL, 'cash', '', '', '', '', '', '', '105.6000', NULL, 11, NULL, 'received', '', '105.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 (1876, '2021-10-05 20:31:35', 1928, NULL, NULL, 'IPAY2021/10/1875', NULL, 'cash', '', '', '', '', '', '', '64.5000', NULL, 11, 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 (1877, '2021-10-05 21:48:43', 1929, NULL, NULL, 'IPAY2021/10/1876', NULL, 'cash', '', '', '', '', '', '', '527.7300', NULL, 6, NULL, 'received', '', '527.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 (1878, '2021-10-05 21:50:36', 1930, NULL, NULL, 'IPAY2021/10/1877', NULL, 'cash', '', '', '', '', '', '', '713.3000', NULL, 18, NULL, 'received', '', '713.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 (1879, '2021-10-05 21:52:01', 1931, NULL, NULL, 'IPAY2021/10/1878', 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 (1880, '2021-10-05 21:55:07', 1932, NULL, NULL, 'IPAY2021/10/1879', NULL, 'cash', '', '', '', '', '', '', '265.5200', NULL, 6, NULL, 'received', '', '265.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 (1881, '2021-10-05 21:55:34', 1933, NULL, NULL, 'IPAY2021/10/1880', 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 (1882, '2021-10-05 21:57:17', 1934, NULL, NULL, 'IPAY2021/10/1881', 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 (1883, '2021-10-05 22:02:01', 1935, NULL, NULL, 'IPAY2021/10/1882', NULL, 'cash', '', '', '', '', '', '', '10.6000', NULL, 6, NULL, 'received', '', '10.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 (1884, '2021-10-06 12:14:29', 1936, NULL, NULL, 'IPAY2021/10/1883', NULL, 'cash', '', '', '', '', '', '', '247.5000', NULL, 15, NULL, 'received', '', '247.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1885, '2021-10-06 12:24:22', 1937, NULL, NULL, 'IPAY2021/10/1884', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 15, 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 (1886, '2021-10-06 14:08:32', 1938, NULL, NULL, 'IPAY2021/10/1885', NULL, 'cash', '', '', '', '', '', '', '9.0100', NULL, 15, NULL, 'received', '', '9.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 (1887, '2021-10-06 14:18:03', 1939, NULL, NULL, 'IPAY2021/10/1886', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 15, 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 (1888, '2021-10-06 14:33:18', 1940, NULL, NULL, 'IPAY2021/10/1887', NULL, 'cash', '', '', '', '', '', '', '415.3000', NULL, 8, NULL, 'received', '', '415.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 (1889, '2021-10-06 14:39:18', 1941, NULL, NULL, 'IPAY2021/10/1888', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (1890, '2021-10-06 15:20:21', 1942, NULL, NULL, 'IPAY2021/10/1889', NULL, 'cash', '', '', '', '', '', '', '316.5000', NULL, 16, NULL, 'received', '', '316.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1891, '2021-10-06 15:46:38', 1943, NULL, NULL, 'IPAY2021/10/1890', 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 (1892, '2021-10-06 15:52:40', 1944, NULL, NULL, 'IPAY2021/10/1891', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 16, 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 (1893, '2021-10-06 20:27:48', 1945, NULL, NULL, 'IPAY2021/10/1892', NULL, 'cash', '', '', '', '', '', '', '180.4000', NULL, 11, NULL, 'received', '', '180.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 (1894, '2021-10-06 20:41:18', 1946, NULL, NULL, 'IPAY2021/10/1893', NULL, 'cash', '', '', '', '', '', '', '414.5100', NULL, 6, NULL, 'received', '', '414.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 (1895, '2021-10-06 20:53:02', 1947, NULL, NULL, 'IPAY2021/10/1894', NULL, 'cash', '', '', '', '', '', '', '17.7000', NULL, 11, NULL, 'received', '', '17.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 (1896, '2021-10-06 21:41:49', 1948, NULL, NULL, 'IPAY2021/10/1895', NULL, 'cash', '', '', '', '', '', '', '897.0000', NULL, 18, NULL, 'received', '', '897.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1897, '2021-10-06 21:57:20', 1949, NULL, NULL, 'IPAY2021/10/1896', 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 (1898, '2021-10-06 22:02:46', 1950, NULL, NULL, 'IPAY2021/10/1897', NULL, 'cash', '', '', '', '', '', '', '147.8000', NULL, 6, NULL, 'received', '', '147.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 (1899, '2021-10-07 00:37:59', 1951, NULL, NULL, 'IPAY2021/10/1898', 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 (1900, '2021-10-07 14:17:50', 1952, NULL, NULL, 'IPAY2021/10/1899', NULL, 'cash', '', '', '', '', '', '', '322.7000', NULL, 19, NULL, 'received', '', '322.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 (1901, '2021-10-07 14:31:41', 1953, NULL, NULL, 'IPAY2021/10/1900', NULL, 'cash', '', '', '', '', '', '', '268.5200', NULL, 8, NULL, 'received', '', '268.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 (1902, '2021-10-07 14:38:09', 1954, NULL, NULL, 'IPAY2021/10/1901', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 8, 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 (1903, '2021-10-07 15:02:08', 1955, NULL, NULL, 'IPAY2021/10/1902', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 19, 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 (1904, '2021-10-07 16:10:11', 1956, NULL, NULL, 'IPAY2021/10/1903', NULL, 'cash', '', '', '', '', '', '', '254.4000', NULL, 17, NULL, 'received', '', '254.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 (1905, '2021-10-07 16:16:13', 1957, NULL, NULL, 'IPAY2021/10/1904', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 17, 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 (1906, '2021-10-07 17:15:43', 1958, NULL, NULL, 'IPAY2021/10/1905', NULL, 'cash', '', '', '', '', '', '', '122.4200', NULL, 11, NULL, 'received', '', '122.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 (1907, '2021-10-07 19:33:11', 1959, NULL, NULL, 'IPAY2021/10/1906', NULL, 'cash', '', '', '', '', '', '', '838.0000', NULL, 6, NULL, 'received', '', '838.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1908, '2021-10-07 19:43:48', 1960, NULL, NULL, 'IPAY2021/10/1907', NULL, 'cash', '', '', '', '', '', '', '155.6000', NULL, 11, NULL, 'received', '', '155.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 (1909, '2021-10-07 21:48:31', 1961, NULL, NULL, 'IPAY2021/10/1908', NULL, 'cash', '', '', '', '', '', '', '999.8000', NULL, 18, NULL, 'received', '', '999.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 (1910, '2021-10-07 21:50:28', 1962, NULL, NULL, 'IPAY2021/10/1909', NULL, 'cash', '', '', '', '', '', '', '94.5000', NULL, 11, NULL, 'received', '', '94.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1911, '2021-10-07 21:57:23', 1963, NULL, NULL, 'IPAY2021/10/1910', 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 (1912, '2021-10-08 13:46:59', 1964, NULL, NULL, 'IPAY2021/10/1911', NULL, 'cash', '', '', '', '', '', '', '270.5100', NULL, 15, NULL, 'received', '', '270.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 (1913, '2021-10-08 14:21:09', 1965, NULL, NULL, 'IPAY2021/10/1912', NULL, 'cash', '', '', '', '', '', '', '193.5200', NULL, 8, NULL, 'received', '', '193.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 (1914, '2021-10-08 14:42:27', 1966, NULL, NULL, 'IPAY2021/10/1913', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 15, 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 (1915, '2021-10-08 15:01:41', 1967, NULL, NULL, 'IPAY2021/10/1914', NULL, 'cash', '', '', '', '', '', '', '62.5000', NULL, 8, NULL, 'received', '', '62.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1916, '2021-10-08 15:25:43', 1968, NULL, NULL, 'IPAY2021/10/1915', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 8, 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 (1917, '2021-10-08 15:34:19', 1969, NULL, NULL, 'IPAY2021/10/1916', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (1918, '2021-10-08 16:28:15', 1970, NULL, NULL, 'IPAY2021/10/1917', 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 (1919, '2021-10-08 17:54:39', 1971, NULL, NULL, 'IPAY2021/10/1918', NULL, 'cash', '', '', '', '', '', '', '173.7000', NULL, 17, NULL, 'received', '', '173.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 (1920, '2021-10-08 17:57:47', 1972, NULL, NULL, 'IPAY2021/10/1919', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 17, 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 (1921, '2021-10-08 19:10:21', 1973, NULL, NULL, 'IPAY2021/10/1920', NULL, 'cash', '', '', '', '', '', '', '326.5300', NULL, 6, NULL, 'received', '', '326.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1922, '2021-10-08 19:14:54', 1974, NULL, NULL, 'IPAY2021/10/1921', NULL, 'cash', '', '', '', '', '', '', '263.2400', NULL, 11, NULL, 'received', '', '263.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1923, '2021-10-08 20:10:34', 1975, NULL, NULL, 'IPAY2021/10/1922', NULL, 'cash', '', '', '', '', '', '', '288.0800', NULL, 6, NULL, 'received', '', '288.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 (1924, '2021-10-08 20:51:21', 1976, NULL, NULL, 'IPAY2021/10/1923', NULL, 'cash', '', '', '', '', '', '', '847.8100', NULL, 16, NULL, 'received', '', '847.8100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1925, '2021-10-08 21:32:25', 1977, NULL, NULL, 'IPAY2021/10/1924', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 16, 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 (1926, '2021-10-08 21:38:48', 1978, NULL, NULL, 'IPAY2021/10/1925', NULL, 'cash', '', '', '', '', '', '', '153.0000', NULL, 11, NULL, 'received', '', '153.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1927, '2021-10-08 21:39:12', 1979, NULL, NULL, 'IPAY2021/10/1926', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 16, 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 (1928, '2021-10-08 21:43:05', 1980, NULL, NULL, 'IPAY2021/10/1927', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 16, 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 (1929, '2021-10-08 21:49:07', 1981, NULL, NULL, 'IPAY2021/10/1928', NULL, 'cash', '', '', '', '', '', '', '370.0100', NULL, 6, NULL, 'received', '', '370.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 (1930, '2021-10-08 22:01:09', 1982, NULL, NULL, 'IPAY2021/10/1929', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 11, 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 (1931, '2021-10-09 13:50:18', 1983, NULL, NULL, 'IPAY2021/10/1930', NULL, 'cash', '', '', '', '', '', '', '301.5200', NULL, 8, NULL, 'received', '', '301.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 (1932, '2021-10-09 13:51:18', 1984, NULL, NULL, 'IPAY2021/10/1931', NULL, 'cash', '', '', '', '', '', '', '263.0200', NULL, 15, NULL, 'received', '', '263.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 (1933, '2021-10-09 14:15:30', 1985, NULL, NULL, 'IPAY2021/10/1932', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 15, 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 (1934, '2021-10-09 14:24:49', 1986, NULL, NULL, 'IPAY2021/10/1933', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 16, 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 (1935, '2021-10-09 14:36:57', 1987, NULL, NULL, 'IPAY2021/10/1934', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 8, 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 (1936, '2021-10-09 14:39:19', 1988, NULL, NULL, 'IPAY2021/10/1935', NULL, 'cash', '', '', '', '', '', '', '282.0400', NULL, 16, NULL, 'received', '', '282.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 (1937, '2021-10-09 14:44:07', 1989, NULL, NULL, 'IPAY2021/10/1936', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 16, 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 (1938, '2021-10-09 14:45:03', 1990, NULL, NULL, 'IPAY2021/10/1937', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 16, 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 (1939, '2021-10-09 14:57:22', 1991, NULL, NULL, 'IPAY2021/10/1938', NULL, 'cash', '', '', '', '', '', '', '2.0400', NULL, 8, NULL, 'received', '', '2.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 (1940, '2021-10-09 15:33:49', 1992, NULL, NULL, 'IPAY2021/10/1939', NULL, 'cash', '', '', '', '', '', '', '91.0000', NULL, 16, NULL, 'received', '', '91.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1941, '2021-10-09 17:45:55', 1993, NULL, NULL, 'IPAY2021/10/1940', NULL, 'cash', '', '', '', '', '', '', '173.5000', NULL, 11, 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 (1942, '2021-10-09 19:41:53', 1994, NULL, NULL, 'IPAY2021/10/1941', NULL, 'cash', '', '', '', '', '', '', '141.2000', NULL, 11, NULL, 'received', '', '141.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 (1943, '2021-10-09 20:25:01', 1995, NULL, NULL, 'IPAY2021/10/1942', NULL, 'cash', '', '', '', '', '', '', '89.0000', NULL, 11, 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 (1944, '2021-10-09 21:12:57', 1996, NULL, NULL, 'IPAY2021/10/1943', NULL, 'cash', '', '', '', '', '', '', '153.1000', NULL, 6, NULL, 'received', '', '153.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 (1945, '2021-10-09 21:26:52', 1997, NULL, NULL, 'IPAY2021/10/1944', NULL, 'cash', '', '', '', '', '', '', '612.1000', NULL, 18, NULL, 'received', '', '612.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 (1946, '2021-10-09 21:41:03', 1998, NULL, NULL, 'IPAY2021/10/1945', 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 (1947, '2021-10-09 21:48:09', 1999, NULL, NULL, 'IPAY2021/10/1946', NULL, 'cash', '', '', '', '', '', '', '442.3000', NULL, 6, NULL, 'received', '', '442.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 (1948, '2021-10-09 21:53:56', 2000, NULL, NULL, 'IPAY2021/10/1947', 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 (1949, '2021-10-09 22:00:26', 2001, NULL, NULL, 'IPAY2021/10/1948', 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 (1950, '2021-10-09 22:26:07', 2002, NULL, NULL, 'IPAY2021/10/1949', NULL, 'cash', '', '', '', '', '', '', '204.0000', NULL, 3, 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 (1951, '2021-10-09 23:19:55', 2003, NULL, NULL, 'IPAY2021/10/1950', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 3, 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 (1952, '2021-10-10 19:34:42', 2004, NULL, NULL, 'IPAY2021/10/1951', NULL, 'cash', '', '', '', '', '', '', '348.1000', NULL, 8, NULL, 'received', '', '348.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 (1953, '2021-10-10 19:43:15', 2005, NULL, NULL, 'IPAY2021/10/1952', NULL, 'cash', '', '', '', '', '', '', '229.1000', NULL, 15, NULL, 'received', '', '229.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 (1954, '2021-10-10 20:39:21', 2006, NULL, NULL, 'IPAY2021/10/1953', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 8, 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 (1955, '2021-10-10 21:46:48', 2007, NULL, NULL, 'IPAY2021/10/1954', NULL, 'cash', '', '', '', '', '', '', '1177.6000', NULL, 18, NULL, 'received', '', '1177.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 (1956, '2021-10-10 21:47:35', 2008, NULL, NULL, 'IPAY2021/10/1955', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 18, 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 (1957, '2021-10-11 16:44:57', 2009, NULL, NULL, 'IPAY2021/10/1956', NULL, 'cash', '', '', '', '', '', '', '437.3000', NULL, 18, NULL, 'received', '', '437.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 (1958, '2021-10-11 18:47:04', 2010, NULL, NULL, 'IPAY2021/10/1957', NULL, 'cash', '', '', '', '', '', '', '255.0400', NULL, 8, NULL, 'received', '', '255.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 (1959, '2021-10-11 20:46:59', 2011, NULL, NULL, 'IPAY2021/10/1958', NULL, 'cash', '', '', '', '', '', '', '517.5000', NULL, 6, NULL, 'received', '', '517.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1960, '2021-10-11 21:05:55', 2012, NULL, NULL, 'IPAY2021/10/1959', NULL, 'cash', '', '', '', '', '', '', '478.0000', NULL, 16, NULL, 'received', '', '478.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1961, '2021-10-11 21:15:55', 2013, NULL, NULL, 'IPAY2021/10/1960', NULL, 'cash', '', '', '', '', '', '', '412.0000', NULL, 16, NULL, 'received', '', '412.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1962, '2021-10-11 21:20:56', 2014, NULL, NULL, 'IPAY2021/10/1961', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 11, 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 (1963, '2021-10-11 21:30:46', 2015, NULL, NULL, 'IPAY2021/10/1962', NULL, 'cash', '', '', '', '', '', '', '358.3000', NULL, 11, NULL, 'received', '', '358.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 (1964, '2021-10-11 21:50:15', 2016, NULL, NULL, 'IPAY2021/10/1963', NULL, 'cash', '', '', '', '', '', '', '74.0000', NULL, 16, NULL, 'received', '', '74.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1965, '2021-10-11 21:53:01', 2017, NULL, NULL, 'IPAY2021/10/1964', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 16, 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 (1966, '2021-10-11 21:53:42', 2018, NULL, NULL, 'IPAY2021/10/1965', NULL, 'cash', '', '', '', '', '', '', '202.5000', NULL, 6, NULL, 'received', '', '202.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1967, '2021-10-12 14:36:03', 2019, NULL, NULL, 'IPAY2021/10/1966', NULL, 'cash', '', '', '', '', '', '', '169.4000', NULL, 15, NULL, 'received', '', '169.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 (1968, '2021-10-12 14:44:30', 2020, NULL, NULL, 'IPAY2021/10/1967', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (1969, '2021-10-12 15:03:52', 2021, NULL, NULL, 'IPAY2021/10/1968', NULL, 'cash', '', '', '', '', '', '', '660.0000', NULL, 8, NULL, 'received', '', '660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1970, '2021-10-12 15:26:06', 2022, NULL, NULL, 'IPAY2021/10/1969', NULL, 'cash', '', '', '', '', '', '', '520.8000', NULL, 17, NULL, 'received', '', '520.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 (1971, '2021-10-12 15:49:12', 2023, NULL, NULL, 'IPAY2021/10/1970', NULL, 'cash', '', '', '', '', '', '', '95.5000', NULL, 17, 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 (1972, '2021-10-12 20:20:21', 2024, NULL, NULL, 'IPAY2021/10/1971', NULL, 'cash', '', '', '', '', '', '', '231.5200', NULL, 6, NULL, 'received', '', '231.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 (1973, '2021-10-12 21:05:08', 2025, NULL, NULL, 'IPAY2021/10/1972', NULL, 'cash', '', '', '', '', '', '', '89.0000', NULL, 11, 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 (1974, '2021-10-12 21:20:17', 2026, NULL, NULL, 'IPAY2021/10/1973', NULL, 'cash', '', '', '', '', '', '', '176.8200', NULL, 11, NULL, 'received', '', '176.8200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1975, '2021-10-12 21:24:26', 2027, NULL, NULL, 'IPAY2021/10/1974', NULL, 'cash', '', '', '', '', '', '', '668.3200', NULL, 16, NULL, 'received', '', '668.3200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1976, '2021-10-12 21:47:28', 2028, NULL, NULL, 'IPAY2021/10/1975', NULL, 'cash', '', '', '', '', '', '', '34.5000', NULL, 11, NULL, 'received', '', '34.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1977, '2021-10-12 21:49:41', 2029, NULL, NULL, 'IPAY2021/10/1976', NULL, 'cash', '', '', '', '', '', '', '162.0000', NULL, 6, NULL, 'received', '', '162.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1978, '2021-10-13 12:23:39', 2030, NULL, NULL, 'IPAY2021/10/1977', NULL, 'cash', '', '', '', '', '', '', '193.0000', NULL, 15, NULL, 'received', '', '193.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1979, '2021-10-13 14:18:20', 2031, NULL, NULL, 'IPAY2021/10/1978', NULL, 'cash', '', '', '', '', '', '', '53.5000', NULL, 15, NULL, 'received', '', '53.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1980, '2021-10-13 14:34:37', 2032, NULL, NULL, 'IPAY2021/10/1979', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 15, 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 (1981, '2021-10-13 14:41:30', 2033, NULL, NULL, 'IPAY2021/10/1980', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (1982, '2021-10-13 15:13:08', 2034, NULL, NULL, 'IPAY2021/10/1981', NULL, 'cash', '', '', '', '', '', '', '353.6000', NULL, 8, NULL, 'received', '', '353.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 (1983, '2021-10-13 15:23:02', 2035, NULL, NULL, 'IPAY2021/10/1982', NULL, 'cash', '', '', '', '', '', '', '129.5000', NULL, 8, 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 (1984, '2021-10-13 15:34:14', 2036, NULL, NULL, 'IPAY2021/10/1983', NULL, 'cash', '', '', '', '', '', '', '235.3000', NULL, 16, NULL, 'received', '', '235.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 (1985, '2021-10-13 16:27:41', 2037, NULL, NULL, 'IPAY2021/10/1984', NULL, 'cash', '', '', '', '', '', '', '63.0000', NULL, 16, 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 (1986, '2021-10-13 20:45:16', 2038, NULL, NULL, 'IPAY2021/10/1985', NULL, 'cash', '', '', '', '', '', '', '426.0000', NULL, 6, NULL, 'received', '', '426.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1987, '2021-10-13 20:46:24', 2039, NULL, NULL, 'IPAY2021/10/1986', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 6, 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 (1988, '2021-10-13 21:03:50', 2040, NULL, NULL, 'IPAY2021/10/1987', NULL, 'cash', '', '', '', '', '', '', '319.5700', NULL, 11, NULL, 'received', '', '319.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 (1989, '2021-10-13 21:04:00', 2041, NULL, NULL, 'IPAY2021/10/1988', NULL, 'cash', '', '', '', '', '', '', '701.5100', NULL, 16, NULL, 'received', '', '701.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 (1990, '2021-10-13 21:24:05', 2042, NULL, NULL, 'IPAY2021/10/1989', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 16, 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 (1991, '2021-10-13 21:43:42', 2043, NULL, NULL, 'IPAY2021/10/1990', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 16, 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 (1992, '2021-10-13 21:54:24', 2044, NULL, NULL, 'IPAY2021/10/1991', 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 (1993, '2021-10-13 21:56:57', 2045, NULL, NULL, 'IPAY2021/10/1992', NULL, 'cash', '', '', '', '', '', '', '250.0200', NULL, 6, NULL, 'received', '', '250.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 (1994, '2021-10-14 13:47:16', 2046, NULL, NULL, 'IPAY2021/10/1993', NULL, 'cash', '', '', '', '', '', '', '99.7000', NULL, 8, NULL, 'received', '', '99.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 (1995, '2021-10-14 13:50:50', 2047, NULL, NULL, 'IPAY2021/10/1994', NULL, 'cash', '', '', '', '', '', '', '88.5800', NULL, 15, NULL, 'received', '', '88.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 (1996, '2021-10-14 14:13:26', 2048, NULL, NULL, 'IPAY2021/10/1995', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (1997, '2021-10-14 14:16:38', 2049, NULL, NULL, 'IPAY2021/10/1996', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 15, 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 (1998, '2021-10-14 14:44:49', 2050, NULL, NULL, 'IPAY2021/10/1997', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 11, 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 (1999, '2021-10-14 14:45:40', 2051, NULL, NULL, 'IPAY2021/10/1998', 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 (2000, '2021-10-14 15:03:11', 2052, NULL, NULL, 'IPAY2021/10/1999', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (2001, '2021-10-14 15:18:48', 2053, NULL, NULL, 'IPAY2021/10/2000', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 8, 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 (2002, '2021-10-14 15:24:57', 2054, NULL, NULL, 'IPAY2021/10/2001', NULL, 'cash', '', '', '', '', '', '', '224.4000', NULL, 17, NULL, 'received', '', '224.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 (2003, '2021-10-14 15:26:39', 2055, NULL, NULL, 'IPAY2021/10/2002', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (2004, '2021-10-14 15:54:15', 2056, NULL, NULL, 'IPAY2021/10/2003', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 17, 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 (2005, '2021-10-14 19:11:12', 2057, NULL, NULL, 'IPAY2021/10/2004', NULL, 'cash', '', '', '', '', '', '', '95.0000', NULL, 11, NULL, 'received', '', '95.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2006, '2021-10-14 20:19:48', 2058, NULL, NULL, 'IPAY2021/10/2005', NULL, 'cash', '', '', '', '', '', '', '629.0100', NULL, 16, NULL, 'received', '', '629.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 (2007, '2021-10-14 20:58:52', 2059, NULL, NULL, 'IPAY2021/10/2006', NULL, 'cash', '', '', '', '', '', '', '148.6200', NULL, 11, NULL, 'received', '', '148.6200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2008, '2021-10-14 20:59:58', 2060, NULL, NULL, 'IPAY2021/10/2007', NULL, 'cash', '', '', '', '', '', '', '39.3000', NULL, 11, NULL, 'received', '', '39.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 (2009, '2021-10-14 21:12:53', 2061, NULL, NULL, 'IPAY2021/10/2008', NULL, 'cash', '', '', '', '', '', '', '342.6100', NULL, 11, NULL, 'received', '', '342.6100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2010, '2021-10-14 21:20:31', 2062, NULL, NULL, 'IPAY2021/10/2009', NULL, 'cash', '', '', '', '', '', '', '109.0100', NULL, 16, NULL, 'received', '', '109.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 (2011, '2021-10-14 21:34:55', 2063, NULL, NULL, 'IPAY2021/10/2010', NULL, 'cash', '', '', '', '', '', '', '897.2200', NULL, 6, NULL, 'received', '', '897.2200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2012, '2021-10-14 21:51:35', 2064, NULL, NULL, 'IPAY2021/10/2011', 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 (2013, '2021-10-14 21:54:18', 2065, NULL, NULL, 'IPAY2021/10/2012', NULL, 'cash', '', '', '', '', '', '', '327.5000', NULL, 16, NULL, 'received', '', '327.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2014, '2021-10-14 22:16:06', 2066, NULL, NULL, 'IPAY2021/10/2013', 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 (2015, '2021-10-15 12:18:59', 2067, NULL, NULL, 'IPAY2021/10/2014', NULL, 'cash', '', '', '', '', '', '', '354.0000', NULL, 15, NULL, 'received', '', '354.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2016, '2021-10-15 12:42:30', 2068, NULL, NULL, 'IPAY2021/10/2015', 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 (2017, '2021-10-15 13:43:54', 2069, NULL, NULL, 'IPAY2021/10/2016', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (2018, '2021-10-15 14:17:43', 2070, NULL, NULL, 'IPAY2021/10/2017', NULL, 'cash', '', '', '', '', '', '', '4.0200', NULL, 15, NULL, 'received', '', '4.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 (2019, '2021-10-15 14:31:09', 2071, NULL, NULL, 'IPAY2021/10/2018', NULL, 'cash', '', '', '', '', '', '', '140.5000', NULL, 8, NULL, 'received', '', '140.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2020, '2021-10-15 14:35:52', 2072, NULL, NULL, 'IPAY2021/10/2019', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 8, 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 (2021, '2021-10-15 14:40:33', 2073, NULL, NULL, 'IPAY2021/10/2020', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (2022, '2021-10-15 14:46:07', 2074, NULL, NULL, 'IPAY2021/10/2021', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 15, 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 (2023, '2021-10-15 14:50:56', 2075, NULL, NULL, 'IPAY2021/10/2022', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 8, 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 (2024, '2021-10-15 14:51:46', 2076, NULL, NULL, 'IPAY2021/10/2023', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 15, 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 (2025, '2021-10-15 16:14:46', 2077, NULL, NULL, 'IPAY2021/10/2024', NULL, 'cash', '', '', '', '', '', '', '417.2000', NULL, 17, NULL, 'received', '', '417.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 (2026, '2021-10-15 20:31:57', 2078, NULL, NULL, 'IPAY2021/10/2025', NULL, 'cash', '', '', '', '', '', '', '329.0100', NULL, 16, NULL, 'received', '', '329.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 (2027, '2021-10-15 21:38:51', 2079, NULL, NULL, 'IPAY2021/10/2026', NULL, 'cash', '', '', '', '', '', '', '833.4200', NULL, 6, NULL, 'received', '', '833.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 (2028, '2021-10-15 21:43:50', 2080, NULL, NULL, 'IPAY2021/10/2027', NULL, 'cash', '', '', '', '', '', '', '206.1000', NULL, 16, NULL, 'received', '', '206.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 (2029, '2021-10-15 21:47:21', 2081, NULL, NULL, 'IPAY2021/10/2028', NULL, 'cash', '', '', '', '', '', '', '648.8000', NULL, 11, NULL, 'received', '', '648.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 (2030, '2021-10-15 22:00:52', 2082, NULL, NULL, 'IPAY2021/10/2029', NULL, 'cash', '', '', '', '', '', '', '45.9000', NULL, 6, NULL, 'received', '', '45.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 (2031, '2021-10-15 22:47:26', 2083, NULL, NULL, 'IPAY2021/10/2030', 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 (2032, '2021-10-16 14:33:43', 2084, NULL, NULL, 'IPAY2021/10/2031', NULL, 'cash', '', '', '', '', '', '', '201.5000', NULL, 8, NULL, 'received', '', '201.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2033, '2021-10-16 15:01:20', 2085, NULL, NULL, 'IPAY2021/10/2032', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (2034, '2021-10-16 15:24:15', 2086, NULL, NULL, 'IPAY2021/10/2033', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 8, 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 (2035, '2021-10-16 15:51:37', 2087, NULL, NULL, 'IPAY2021/10/2034', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 8, 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 (2036, '2021-10-16 16:01:46', 2088, NULL, NULL, 'IPAY2021/10/2035', NULL, 'cash', '', '', '', '', '', '', '537.5300', NULL, 16, NULL, 'received', '', '537.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2037, '2021-10-16 17:23:03', 2089, NULL, NULL, 'IPAY2021/10/2036', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 16, 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 (2038, '2021-10-16 20:18:50', 2090, NULL, NULL, 'IPAY2021/10/2037', NULL, 'cash', '', '', '', '', '', '', '132.3000', NULL, 6, 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 (2039, '2021-10-16 20:43:48', 2091, NULL, NULL, 'IPAY2021/10/2038', NULL, 'cash', '', '', '', '', '', '', '903.9200', NULL, 16, NULL, 'received', '', '903.9200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2040, '2021-10-16 20:51:01', 2092, NULL, NULL, 'IPAY2021/10/2039', NULL, 'cash', '', '', '', '', '', '', '594.2200', NULL, 6, NULL, 'received', '', '594.2200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2041, '2021-10-16 21:01:14', 2093, NULL, NULL, 'IPAY2021/10/2040', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 16, 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 (2042, '2021-10-16 21:23:09', 2094, NULL, NULL, 'IPAY2021/10/2041', NULL, 'cash', '', '', '', '', '', '', '57.5000', NULL, 16, NULL, 'received', '', '57.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2043, '2021-10-16 21:46:26', 2095, NULL, NULL, 'IPAY2021/10/2042', NULL, 'cash', '', '', '', '', '', '', '123.0000', NULL, 6, NULL, 'received', '', '123.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2044, '2021-10-16 21:53:34', 2096, NULL, NULL, 'IPAY2021/10/2043', NULL, 'cash', '', '', '', '', '', '', '412.4000', NULL, 11, NULL, 'received', '', '412.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 (2045, '2021-10-16 22:03:23', 2097, NULL, NULL, 'IPAY2021/10/2044', 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 (2046, '2021-10-16 22:08:45', 2098, NULL, NULL, 'IPAY2021/10/2045', 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 (2047, '2021-10-17 12:46:21', 2099, NULL, NULL, 'IPAY2021/10/2046', NULL, 'cash', '', '', '', '', '', '', '224.7200', NULL, 20, NULL, 'received', '', '224.7200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2048, '2021-10-17 18:53:29', 2100, NULL, NULL, 'IPAY2021/10/2047', NULL, 'cash', '', '', '', '', '', '', '374.0600', NULL, 8, NULL, 'received', '', '374.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2049, '2021-10-17 18:58:40', 2101, NULL, NULL, 'IPAY2021/10/2048', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 8, 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 (2050, '2021-10-17 19:35:30', 2102, NULL, NULL, 'IPAY2021/10/2049', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 8, 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 (2051, '2021-10-17 20:16:01', 2103, NULL, NULL, 'IPAY2021/10/2050', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 8, 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 (2052, '2021-10-17 20:47:54', 2104, NULL, NULL, 'IPAY2021/10/2051', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (2053, '2021-10-17 21:17:28', 2105, NULL, NULL, 'IPAY2021/10/2052', NULL, 'cash', '', '', '', '', '', '', '968.1500', NULL, 17, NULL, 'received', '', '968.1500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2054, '2021-10-17 21:29:08', 2106, NULL, NULL, 'IPAY2021/10/2053', NULL, 'cash', '', '', '', '', '', '', '64.5000', NULL, 17, 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 (2055, '2021-10-17 21:31:40', 2107, NULL, NULL, 'IPAY2021/10/2054', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 17, 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 (2056, '2021-10-17 21:42:43', 2108, NULL, NULL, 'IPAY2021/10/2055', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 8, 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 (2057, '2021-10-17 21:51:33', 2109, NULL, NULL, 'IPAY2021/10/2056', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 8, 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 (2058, '2021-10-18 10:06:34', 2110, NULL, NULL, 'IPAY2021/10/2057', NULL, 'cash', '', '', '', '', '', '', '618.4500', NULL, 15, NULL, 'received', '', '618.4500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2059, '2021-10-18 13:13:53', 2111, NULL, NULL, 'IPAY2021/10/2058', NULL, 'cash', '', '', '', '', '', '', '189.0000', NULL, 15, NULL, 'received', '', '189.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2060, '2021-10-18 14:27:17', 2112, NULL, NULL, 'IPAY2021/10/2059', NULL, 'cash', '', '', '', '', '', '', '79.5000', NULL, 15, 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 (2061, '2021-10-18 14:42:07', 2113, NULL, NULL, 'IPAY2021/10/2060', NULL, 'cash', '', '', '', '', '', '', '121.0200', NULL, 8, NULL, 'received', '', '121.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 (2062, '2021-10-18 14:45:07', 2114, NULL, NULL, 'IPAY2021/10/2061', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 15, 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 (2063, '2021-10-18 14:59:30', 2115, NULL, NULL, 'IPAY2021/10/2062', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (2064, '2021-10-18 15:01:56', 2116, NULL, NULL, 'IPAY2021/10/2063', NULL, 'cash', '', '', '', '', '', '', '1.2000', NULL, 8, NULL, 'received', '', '1.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 (2065, '2021-10-18 15:15:04', 2117, NULL, NULL, 'IPAY2021/10/2064', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 8, 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 (2066, '2021-10-18 15:22:25', 2118, NULL, NULL, 'IPAY2021/10/2065', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 8, 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 (2067, '2021-10-18 16:17:06', 2119, NULL, NULL, 'IPAY2021/10/2066', NULL, 'cash', '', '', '', '', '', '', '249.4000', NULL, 17, NULL, 'received', '', '249.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 (2068, '2021-10-18 21:08:01', 2120, NULL, NULL, 'IPAY2021/10/2067', NULL, 'cash', '', '', '', '', '', '', '390.3800', NULL, 6, NULL, 'received', '', '390.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 (2069, '2021-10-18 21:26:29', 2121, NULL, NULL, 'IPAY2021/10/2068', NULL, 'cash', '', '', '', '', '', '', '724.2300', NULL, 16, NULL, 'received', '', '724.2300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2070, '2021-10-18 21:47:35', 2122, NULL, NULL, 'IPAY2021/10/2069', NULL, 'cash', '', '', '', '', '', '', '456.3200', NULL, 11, NULL, 'received', '', '456.3200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2071, '2021-10-18 21:47:39', 2123, NULL, NULL, 'IPAY2021/10/2070', NULL, 'cash', '', '', '', '', '', '', '1.5100', NULL, 16, NULL, 'received', '', '1.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 (2072, '2021-10-18 22:02:58', 2124, NULL, NULL, 'IPAY2021/10/2071', 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 (2073, '2021-10-18 23:35:44', 2125, NULL, NULL, 'IPAY2021/10/2072', 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 (2074, '2021-10-19 10:02:55', 2126, NULL, NULL, 'IPAY2021/10/2073', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 8, 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 (2075, '2021-10-19 12:09:06', 2127, NULL, NULL, 'IPAY2021/10/2074', NULL, 'cash', '', '', '', '', '', '', '316.8000', NULL, 15, NULL, 'received', '', '316.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 (2076, '2021-10-19 12:53:49', 2128, NULL, NULL, 'IPAY2021/10/2075', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (2077, '2021-10-19 14:06:48', 2129, NULL, NULL, 'IPAY2021/10/2076', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 15, 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 (2078, '2021-10-19 14:42:25', 2130, NULL, NULL, 'IPAY2021/10/2077', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 8, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2079, '2021-10-19 15:05:08', 2131, NULL, NULL, 'IPAY2021/10/2078', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 15, 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 (2080, '2021-10-19 17:02:50', 2132, NULL, NULL, 'IPAY2021/10/2079', NULL, 'cash', '', '', '', '', '', '', '815.6000', NULL, 17, NULL, 'received', '', '815.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 (2081, '2021-10-19 20:02:20', 2133, NULL, NULL, 'IPAY2021/10/2080', NULL, 'cash', '', '', '', '', '', '', '1060.5000', NULL, 6, NULL, 'received', '', '1060.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2082, '2021-10-19 20:57:43', 2134, NULL, NULL, 'IPAY2021/10/2081', 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 (2083, '2021-10-19 20:59:20', 2135, NULL, NULL, 'IPAY2021/10/2082', 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 (2084, '2021-10-19 21:03:15', 2136, NULL, NULL, 'IPAY2021/10/2083', NULL, 'cash', '', '', '', '', '', '', '700.4300', NULL, 16, NULL, 'received', '', '700.4300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2085, '2021-10-19 21:19:37', 2137, NULL, NULL, 'IPAY2021/10/2084', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 6, 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 (2086, '2021-10-19 21:25:13', 2138, NULL, NULL, 'IPAY2021/10/2085', NULL, 'cash', '', '', '', '', '', '', '525.2000', NULL, 11, NULL, 'received', '', '525.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 (2087, '2021-10-19 21:39:32', 2139, NULL, NULL, 'IPAY2021/10/2086', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 16, 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 (2088, '2021-10-19 21:47:05', 2140, NULL, NULL, 'IPAY2021/10/2087', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 6, 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 (2089, '2021-10-19 21:59:21', 2141, NULL, NULL, 'IPAY2021/10/2088', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 11, 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 (2090, '2021-10-20 00:42:53', 2142, NULL, NULL, 'IPAY2021/10/2089', NULL, 'cash', '', '', '', '', '', '', '144.0000', NULL, 3, NULL, 'received', '', '144.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2091, '2021-10-20 14:01:37', 2143, NULL, NULL, 'IPAY2021/10/2090', NULL, 'cash', '', '', '', '', '', '', '102.4000', NULL, 15, NULL, 'received', '', '102.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 (2092, '2021-10-20 14:17:26', 2144, NULL, NULL, 'IPAY2021/10/2091', NULL, 'cash', '', '', '', '', '', '', '42.8000', NULL, 15, NULL, 'received', '', '42.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 (2093, '2021-10-20 14:48:52', 2145, NULL, NULL, 'IPAY2021/10/2092', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 15, 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 (2094, '2021-10-20 15:04:15', 2146, NULL, NULL, 'IPAY2021/10/2093', NULL, 'cash', '', '', '', '', '', '', '176.5000', NULL, 8, NULL, 'received', '', '176.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2095, '2021-10-20 15:51:37', 2147, NULL, NULL, 'IPAY2021/10/2094', NULL, 'cash', '', '', '', '', '', '', '382.3000', NULL, 17, NULL, 'received', '', '382.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 (2096, '2021-10-20 21:23:48', 2148, NULL, NULL, 'IPAY2021/10/2095', NULL, 'cash', '', '', '', '', '', '', '799.3000', NULL, 6, NULL, 'received', '', '799.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 (2097, '2021-10-20 21:33:50', 2149, NULL, NULL, 'IPAY2021/10/2096', NULL, 'cash', '', '', '', '', '', '', '755.9000', NULL, 16, NULL, 'received', '', '755.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 (2098, '2021-10-20 21:34:47', 2150, NULL, NULL, 'IPAY2021/10/2097', NULL, 'cash', '', '', '', '', '', '', '570.2000', NULL, 11, NULL, 'received', '', '570.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 (2099, '2021-10-20 21:54:25', 2151, NULL, NULL, 'IPAY2021/10/2098', 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 (2100, '2021-10-20 21:57:38', 2152, NULL, NULL, 'IPAY2021/10/2099', 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 (2101, '2021-10-20 21:58:52', 2153, NULL, NULL, 'IPAY2021/10/2100', 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 (2102, '2021-10-20 22:07:59', 2154, NULL, NULL, 'IPAY2021/10/2101', 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 (2103, '2021-10-21 12:44:57', 2155, NULL, NULL, 'IPAY2021/10/2102', NULL, 'cash', '', '', '', '', '', '', '34.5000', NULL, 17, NULL, 'received', '', '34.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2104, '2021-10-21 14:48:53', 2156, NULL, NULL, 'IPAY2021/10/2103', NULL, 'cash', '', '', '', '', '', '', '269.5000', NULL, 8, NULL, 'received', '', '269.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2105, '2021-10-21 15:55:10', 2157, NULL, NULL, 'IPAY2021/10/2104', NULL, 'cash', '', '', '', '', '', '', '389.3000', NULL, 17, NULL, 'received', '', '389.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 (2106, '2021-10-21 18:42:03', 2158, NULL, NULL, 'IPAY2021/10/2105', NULL, 'cash', '', '', '', '', '', '', '233.6000', NULL, 8, NULL, 'received', '', '233.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 (2107, '2021-10-21 20:35:21', 2159, NULL, NULL, 'IPAY2021/10/2106', 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 (2108, '2021-10-21 21:11:32', 2160, NULL, NULL, 'IPAY2021/10/2107', NULL, 'cash', '', '', '', '', '', '', '201.2000', NULL, 11, NULL, 'received', '', '201.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 (2109, '2021-10-21 21:32:05', 2161, NULL, NULL, 'IPAY2021/10/2108', NULL, 'cash', '', '', '', '', '', '', '293.2000', NULL, 6, NULL, 'received', '', '293.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 (2110, '2021-10-21 21:32:05', 2162, NULL, NULL, 'IPAY2021/10/2109', NULL, 'cash', '', '', '', '', '', '', '236.3000', NULL, 11, NULL, 'received', '', '236.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 (2111, '2021-10-21 21:34:51', 2163, NULL, NULL, 'IPAY2021/10/2110', NULL, 'cash', '', '', '', '', '', '', '233.5000', NULL, 16, NULL, 'received', '', '233.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2112, '2021-10-21 21:40:50', 2164, NULL, NULL, 'IPAY2021/10/2111', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 16, 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 (2113, '2021-10-21 21:41:35', 2165, NULL, NULL, 'IPAY2021/10/2112', NULL, 'cash', '', '', '', '', '', '', '130.5000', NULL, 11, NULL, 'received', '', '130.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2114, '2021-10-22 13:28:35', 2166, NULL, NULL, 'IPAY2021/10/2113', NULL, 'cash', '', '', '', '', '', '', '216.5000', NULL, 15, NULL, 'received', '', '216.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2115, '2021-10-22 14:28:57', 2167, NULL, NULL, 'IPAY2021/10/2114', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (2116, '2021-10-22 14:37:05', 2168, NULL, NULL, 'IPAY2021/10/2115', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 15, 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 (2117, '2021-10-22 14:42:54', 2169, NULL, NULL, 'IPAY2021/10/2116', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 15, 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 (2118, '2021-10-22 14:43:08', 2170, NULL, NULL, 'IPAY2021/10/2117', NULL, 'cash', '', '', '', '', '', '', '187.3000', NULL, 8, NULL, 'received', '', '187.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 (2119, '2021-10-22 14:50:00', 2171, NULL, NULL, 'IPAY2021/10/2118', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 8, 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 (2120, '2021-10-22 16:03:09', 2172, NULL, NULL, 'IPAY2021/10/2119', NULL, 'cash', '', '', '', '', '', '', '436.4000', NULL, 17, NULL, 'received', '', '436.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 (2121, '2021-10-22 19:50:27', 2173, NULL, NULL, 'IPAY2021/10/2120', NULL, 'cash', '', '', '', '', '', '', '394.1000', NULL, 6, NULL, 'received', '', '394.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 (2122, '2021-10-22 21:16:50', 2174, NULL, NULL, 'IPAY2021/10/2121', NULL, 'cash', '', '', '', '', '', '', '231.0000', NULL, 11, NULL, 'received', '', '231.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2123, '2021-10-22 21:27:03', 2175, NULL, NULL, 'IPAY2021/10/2122', NULL, 'cash', '', '', '', '', '', '', '753.0000', NULL, 16, NULL, 'received', '', '753.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2124, '2021-10-22 21:27:42', 2176, NULL, NULL, 'IPAY2021/10/2123', NULL, 'cash', '', '', '', '', '', '', '133.2000', NULL, 11, NULL, 'received', '', '133.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 (2125, '2021-10-22 21:28:21', 2177, NULL, NULL, 'IPAY2021/10/2124', 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 (2126, '2021-10-22 21:39:13', 2178, NULL, NULL, 'IPAY2021/10/2125', NULL, 'cash', '', '', '', '', '', '', '72.9000', NULL, 11, NULL, 'received', '', '72.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 (2127, '2021-10-22 21:46:13', 2179, NULL, NULL, 'IPAY2021/10/2126', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 6, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2128, '2021-10-22 21:50:00', 2180, NULL, NULL, 'IPAY2021/10/2127', 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 (2129, '2021-10-22 21:53:48', 2181, NULL, NULL, 'IPAY2021/10/2128', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 11, 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 (2130, '2021-10-23 13:32:17', 2182, NULL, NULL, 'IPAY2021/10/2129', NULL, 'cash', '', '', '', '', '', '', '96.5000', NULL, 15, 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 (2131, '2021-10-23 14:00:48', 2183, NULL, NULL, 'IPAY2021/10/2130', NULL, 'cash', '', '', '', '', '', '', '266.4000', NULL, 8, NULL, 'received', '', '266.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 (2132, '2021-10-23 14:28:29', 2184, NULL, NULL, 'IPAY2021/10/2131', NULL, 'cash', '', '', '', '', '', '', '14.6000', NULL, 15, NULL, 'received', '', '14.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 (2133, '2021-10-23 14:53:26', 2185, NULL, NULL, 'IPAY2021/10/2132', NULL, 'cash', '', '', '', '', '', '', '37.2000', NULL, 8, NULL, 'received', '', '37.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 (2134, '2021-10-23 14:55:40', 2186, NULL, NULL, 'IPAY2021/10/2133', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 8, 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 (2135, '2021-10-23 18:39:01', 2187, NULL, NULL, 'IPAY2021/10/2134', NULL, 'cash', '', '', '', '', '', '', '369.6000', NULL, 16, NULL, 'received', '', '369.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 (2136, '2021-10-23 19:55:04', 2188, NULL, NULL, 'IPAY2021/10/2135', NULL, 'cash', '', '', '', '', '', '', '676.0000', NULL, 6, NULL, 'received', '', '676.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2137, '2021-10-23 20:41:53', 2189, NULL, NULL, 'IPAY2021/10/2136', NULL, 'cash', '', '', '', '', '', '', '463.0000', NULL, 11, NULL, 'received', '', '463.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2138, '2021-10-23 20:42:46', 2190, NULL, NULL, 'IPAY2021/10/2137', 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 (2139, '2021-10-23 20:47:45', 2191, NULL, NULL, 'IPAY2021/10/2138', NULL, 'cash', '', '', '', '', '', '', '105.0000', NULL, 6, 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 (2140, '2021-10-23 21:37:52', 2192, NULL, NULL, 'IPAY2021/10/2139', NULL, 'cash', '', '', '', '', '', '', '266.1000', NULL, 16, NULL, 'received', '', '266.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 (2141, '2021-10-23 21:54:08', 2193, NULL, NULL, 'IPAY2021/10/2140', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 11, 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 (2142, '2021-10-23 22:07:10', 2194, NULL, NULL, 'IPAY2021/10/2141', NULL, 'cash', '', '', '', '', '', '', '86.0000', NULL, 6, 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 (2143, '2021-10-24 18:30:34', 2195, NULL, NULL, 'IPAY2021/10/2142', NULL, 'cash', '', '', '', '', '', '', '452.9000', NULL, 8, NULL, 'received', '', '452.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 (2144, '2021-10-24 18:38:04', 2196, NULL, NULL, 'IPAY2021/10/2143', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (2145, '2021-10-24 18:45:06', 2197, NULL, NULL, 'IPAY2021/10/2144', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 8, 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 (2146, '2021-10-24 19:01:47', 2198, NULL, NULL, 'IPAY2021/10/2145', NULL, 'cash', '', '', '', '', '', '', '95.2000', NULL, 8, NULL, 'received', '', '95.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 (2147, '2021-10-24 19:08:42', 2199, NULL, NULL, 'IPAY2021/10/2146', NULL, 'cash', '', '', '', '', '', '', '426.7000', NULL, 15, NULL, 'received', '', '426.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 (2148, '2021-10-24 19:08:56', 2200, NULL, NULL, 'IPAY2021/10/2147', NULL, 'cash', '', '', '', '', '', '', '4.4000', NULL, 8, NULL, 'received', '', '4.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 (2149, '2021-10-24 19:15:10', 2201, NULL, NULL, 'IPAY2021/10/2148', NULL, 'cash', '', '', '', '', '', '', '4.2000', NULL, 8, NULL, 'received', '', '4.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 (2150, '2021-10-24 19:20:09', 2202, NULL, NULL, 'IPAY2021/10/2149', NULL, 'cash', '', '', '', '', '', '', '84.0000', NULL, 8, 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 (2151, '2021-10-24 19:31:13', 2203, NULL, NULL, 'IPAY2021/10/2150', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (2152, '2021-10-24 19:31:51', 2204, NULL, NULL, 'IPAY2021/10/2151', 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 (2153, '2021-10-24 19:35:13', 2205, NULL, NULL, 'IPAY2021/10/2152', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 15, 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 (2154, '2021-10-24 19:37:43', 2206, NULL, NULL, 'IPAY2021/10/2153', NULL, 'cash', '', '', '', '', '', '', '2.9000', NULL, 8, 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 (2155, '2021-10-24 20:19:22', 2207, NULL, NULL, 'IPAY2021/10/2154', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 8, 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 (2156, '2021-10-24 20:21:41', 2208, NULL, NULL, 'IPAY2021/10/2155', 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 (2157, '2021-10-24 20:30:23', 2209, NULL, NULL, 'IPAY2021/10/2156', NULL, 'cash', '', '', '', '', '', '', '122.5000', NULL, 15, NULL, 'received', '', '122.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2158, '2021-10-24 20:47:43', 2210, NULL, NULL, 'IPAY2021/10/2157', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 15, 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 (2159, '2021-10-24 20:55:20', 2211, NULL, NULL, 'IPAY2021/10/2158', NULL, 'cash', '', '', '', '', '', '', '563.1000', NULL, 17, NULL, 'received', '', '563.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 (2160, '2021-10-24 20:55:48', 2212, NULL, NULL, 'IPAY2021/10/2159', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 8, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2161, '2021-10-24 21:39:05', 2213, NULL, NULL, 'IPAY2021/10/2160', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (2162, '2021-10-24 21:41:05', 2214, NULL, NULL, 'IPAY2021/10/2161', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (2163, '2021-10-24 21:46:25', 2215, NULL, NULL, 'IPAY2021/10/2162', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 8, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2164, '2021-10-24 21:53:34', 2216, NULL, NULL, 'IPAY2021/10/2163', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 17, 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 (2165, '2021-10-24 22:13:14', 2217, NULL, NULL, 'IPAY2021/10/2164', 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 (2166, '2021-10-25 12:38:44', 2218, NULL, NULL, 'IPAY2021/10/2165', NULL, 'cash', '', '', '', '', '', '', '268.0000', NULL, 15, 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 (2167, '2021-10-25 14:36:53', 2219, NULL, NULL, 'IPAY2021/10/2166', NULL, 'cash', '', '', '', '', '', '', '72.7000', NULL, 15, NULL, 'received', '', '72.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 (2168, '2021-10-25 16:24:17', 2220, NULL, NULL, 'IPAY2021/10/2167', NULL, 'cash', '', '', '', '', '', '', '623.0000', NULL, 17, NULL, 'received', '', '623.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2169, '2021-10-25 19:36:50', 2221, NULL, NULL, 'IPAY2021/10/2168', NULL, 'cash', '', '', '', '', '', '', '540.2000', NULL, 16, NULL, 'received', '', '540.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 (2170, '2021-10-25 20:51:07', 2222, NULL, NULL, 'IPAY2021/10/2169', NULL, 'cash', '', '', '', '', '', '', '166.3000', NULL, 16, NULL, 'received', '', '166.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 (2171, '2021-10-25 21:07:31', 2223, NULL, NULL, 'IPAY2021/10/2170', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 16, 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 (2172, '2021-10-25 21:31:17', 2224, NULL, NULL, 'IPAY2021/10/2171', NULL, 'cash', '', '', '', '', '', '', '241.8000', NULL, 11, NULL, 'received', '', '241.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 (2173, '2021-10-25 21:48:14', 2225, NULL, NULL, 'IPAY2021/10/2172', 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 (2174, '2021-10-25 21:49:48', 2226, NULL, NULL, 'IPAY2021/10/2173', 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 (2175, '2021-10-25 21:54:49', 2227, NULL, NULL, 'IPAY2021/10/2174', 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 (2176, '2021-10-25 22:46:58', 2228, NULL, NULL, 'IPAY2021/10/2175', NULL, 'cash', '', '', '', '', '', '', '776.5000', NULL, 3, NULL, 'received', '', '776.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2177, '2021-10-25 23:34:32', 2229, NULL, NULL, 'IPAY2021/10/2176', NULL, 'cash', '', '', '', '', '', '', '595.5000', NULL, 3, NULL, 'received', '', '595.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2178, '2021-10-26 13:28:08', 2230, NULL, NULL, 'IPAY2021/10/2177', NULL, 'cash', '', '', '', '', '', '', '208.7000', NULL, 15, NULL, 'received', '', '208.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 (2179, '2021-10-26 13:57:27', 2231, NULL, NULL, 'IPAY2021/10/2178', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 15, 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 (2180, '2021-10-26 16:26:26', 2232, NULL, NULL, 'IPAY2021/10/2179', NULL, 'cash', '', '', '', '', '', '', '215.9000', NULL, 17, NULL, 'received', '', '215.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 (2181, '2021-10-26 20:21:50', 2233, NULL, NULL, 'IPAY2021/10/2180', NULL, 'cash', '', '', '', '', '', '', '286.5000', NULL, 11, NULL, 'received', '', '286.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2182, '2021-10-26 20:31:37', 2234, NULL, NULL, 'IPAY2021/10/2181', NULL, 'cash', '', '', '', '', '', '', '759.6000', NULL, 16, NULL, 'received', '', '759.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 (2183, '2021-10-26 20:51:05', 2235, NULL, NULL, 'IPAY2021/10/2182', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 16, 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 (2184, '2021-10-26 21:19:59', 2236, NULL, NULL, 'IPAY2021/10/2183', 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 (2185, '2021-10-26 22:09:32', 2237, NULL, NULL, 'IPAY2021/10/2184', NULL, 'cash', '', '', '', '', '', '', '163.0000', NULL, 11, NULL, 'received', '', '163.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2186, '2021-10-27 09:29:56', 2238, NULL, NULL, 'IPAY2021/10/2185', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 8, 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 (2187, '2021-10-27 10:20:03', 2239, NULL, NULL, 'IPAY2021/10/2186', NULL, 'cash', '', '', '', '', '', '', '246.7000', NULL, 8, NULL, 'received', '', '246.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 (2188, '2021-10-27 11:07:06', 2240, NULL, NULL, 'IPAY2021/10/2187', NULL, 'cash', '', '', '', '', '', '', '946.7000', NULL, 8, NULL, 'received', '', '946.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 (2189, '2021-10-27 14:17:56', 2241, NULL, NULL, 'IPAY2021/10/2188', NULL, 'cash', '', '', '', '', '', '', '110.3000', NULL, 15, NULL, 'received', '', '110.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 (2190, '2021-10-27 14:52:37', 2242, NULL, NULL, 'IPAY2021/10/2189', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 15, 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 (2191, '2021-10-27 15:04:56', 2243, NULL, NULL, 'IPAY2021/10/2190', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 8, 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 (2192, '2021-10-27 15:59:15', 2244, NULL, NULL, 'IPAY2021/10/2191', NULL, 'cash', '', '', '', '', '', '', '135.7000', NULL, 17, NULL, 'received', '', '135.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 (2193, '2021-10-27 20:25:30', 2245, NULL, NULL, 'IPAY2021/10/2192', NULL, 'cash', '', '', '', '', '', '', '504.3000', NULL, 16, NULL, 'received', '', '504.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 (2194, '2021-10-27 20:57:05', 2246, NULL, NULL, 'IPAY2021/10/2193', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 16, 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 (2195, '2021-10-27 21:13:43', 2247, NULL, NULL, 'IPAY2021/10/2194', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 11, 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 (2196, '2021-10-27 21:21:20', 2248, NULL, NULL, 'IPAY2021/10/2195', NULL, 'cash', '', '', '', '', '', '', '602.1000', NULL, 6, NULL, 'received', '', '602.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 (2197, '2021-10-27 21:23:22', 2249, NULL, NULL, 'IPAY2021/10/2196', NULL, 'cash', '', '', '', '', '', '', '251.8000', NULL, 11, NULL, 'received', '', '251.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 (2198, '2021-10-27 21:55:06', 2250, NULL, NULL, 'IPAY2021/10/2197', 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 (2199, '2021-10-27 21:56:42', 2251, NULL, NULL, 'IPAY2021/10/2198', 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 (2200, '2021-10-28 13:06:06', 2252, NULL, NULL, 'IPAY2021/10/2199', NULL, 'cash', '', '', '', '', '', '', '282.8000', NULL, 8, NULL, 'received', '', '282.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 (2201, '2021-10-28 14:54:25', 2253, NULL, NULL, 'IPAY2021/10/2200', 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 (2202, '2021-10-28 15:08:45', 2254, NULL, NULL, 'IPAY2021/10/2201', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 8, 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 (2203, '2021-10-28 15:48:24', 2255, NULL, NULL, 'IPAY2021/10/2202', NULL, 'cash', '', '', '', '', '', '', '86.7000', NULL, 8, NULL, 'received', '', '86.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 (2204, '2021-10-28 15:59:33', 2256, NULL, NULL, 'IPAY2021/10/2203', NULL, 'cash', '', '', '', '', '', '', '348.2000', NULL, 17, NULL, 'received', '', '348.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 (2205, '2021-10-28 16:00:22', 2257, NULL, NULL, 'IPAY2021/10/2204', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 8, 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 (2206, '2021-10-28 20:26:36', 2258, NULL, NULL, 'IPAY2021/10/2205', NULL, 'cash', '', '', '', '', '', '', '572.1000', NULL, 16, NULL, 'received', '', '572.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 (2207, '2021-10-28 21:00:47', 2259, NULL, NULL, 'IPAY2021/10/2206', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 16, 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 (2208, '2021-10-28 21:02:11', 2260, NULL, NULL, 'IPAY2021/10/2207', NULL, 'cash', '', '', '', '', '', '', '612.4000', NULL, 6, NULL, 'received', '', '612.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 (2209, '2021-10-28 21:59:41', 2261, NULL, NULL, 'IPAY2021/10/2208', NULL, 'cash', '', '', '', '', '', '', '401.2000', NULL, 11, NULL, 'received', '', '401.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 (2210, '2021-10-28 22:10:44', 2262, NULL, NULL, 'IPAY2021/10/2209', NULL, 'cash', '', '', '', '', '', '', '359.2000', NULL, 11, NULL, 'received', '', '359.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 (2211, '2021-10-29 14:17:37', 2263, NULL, NULL, 'IPAY2021/10/2210', NULL, 'cash', '', '', '', '', '', '', '176.6000', NULL, 15, NULL, 'received', '', '176.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 (2212, '2021-10-29 14:24:39', 2264, NULL, NULL, 'IPAY2021/10/2211', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 15, 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 (2213, '2021-10-29 15:02:28', 2265, NULL, NULL, 'IPAY2021/10/2212', NULL, 'cash', '', '', '', '', '', '', '287.3000', NULL, 8, NULL, 'received', '', '287.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 (2214, '2021-10-29 15:54:43', 2266, NULL, NULL, 'IPAY2021/10/2213', NULL, 'cash', '', '', '', '', '', '', '519.5000', NULL, 17, NULL, 'received', '', '519.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2215, '2021-10-29 20:16:14', 2267, NULL, NULL, 'IPAY2021/10/2214', NULL, 'cash', '', '', '', '', '', '', '500.6000', NULL, 16, NULL, 'received', '', '500.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 (2216, '2021-10-29 20:54:21', 2268, NULL, NULL, 'IPAY2021/10/2215', NULL, 'cash', '', '', '', '', '', '', '118.2000', NULL, 16, NULL, 'received', '', '118.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 (2217, '2021-10-29 20:57:29', 2269, NULL, NULL, 'IPAY2021/10/2216', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 16, 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 (2218, '2021-10-29 22:09:49', 2270, NULL, NULL, 'IPAY2021/10/2217', NULL, 'cash', '', '', '', '', '', '', '527.8000', NULL, 11, NULL, 'received', '', '527.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 (2219, '2021-10-29 22:55:35', 2271, NULL, NULL, 'IPAY2021/10/2218', NULL, 'cash', '', '', '', '', '', '', '112.0000', NULL, 3, NULL, 'received', '', '112.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2220, '2021-10-30 12:58:32', 2272, NULL, NULL, 'IPAY2021/10/2219', NULL, 'cash', '', '', '', '', '', '', '87.0000', NULL, 15, 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 (2221, '2021-10-30 13:32:05', 2273, NULL, NULL, 'IPAY2021/10/2220', NULL, 'cash', '', '', '', '', '', '', '52.5000', NULL, 15, 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 (2222, '2021-10-30 13:54:50', 2274, NULL, NULL, 'IPAY2021/10/2221', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (2223, '2021-10-30 14:27:52', 2275, NULL, NULL, 'IPAY2021/10/2222', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 15, 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 (2224, '2021-10-30 14:32:46', 2276, NULL, NULL, 'IPAY2021/10/2223', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 15, 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 (2225, '2021-10-30 14:38:27', 2277, NULL, NULL, 'IPAY2021/10/2224', NULL, 'cash', '', '', '', '', '', '', '395.4000', NULL, 8, NULL, 'received', '', '395.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 (2226, '2021-10-30 14:40:26', 2278, NULL, NULL, 'IPAY2021/10/2225', NULL, 'cash', '', '', '', '', '', '', '388.2000', NULL, 16, NULL, 'received', '', '388.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 (2227, '2021-10-30 15:45:02', 2279, NULL, NULL, 'IPAY2021/10/2226', NULL, 'cash', '', '', '', '', '', '', '112.0000', NULL, 16, NULL, 'received', '', '112.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2228, '2021-10-30 16:01:00', 2280, NULL, NULL, 'IPAY2021/10/2227', NULL, 'cash', '', '', '', '', '', '', '0.6000', NULL, 8, NULL, 'received', '', '0.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 (2229, '2021-10-30 20:44:25', 2281, NULL, NULL, 'IPAY2021/10/2228', NULL, 'cash', '', '', '', '', '', '', '298.4000', NULL, 6, NULL, 'received', '', '298.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 (2230, '2021-10-30 20:44:53', 2282, NULL, NULL, 'IPAY2021/10/2229', NULL, 'cash', '', '', '', '', '', '', '521.5000', NULL, 16, NULL, 'received', '', '521.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2231, '2021-10-30 20:59:24', 2283, NULL, NULL, 'IPAY2021/10/2230', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 16, 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 (2232, '2021-10-30 22:11:27', 2284, NULL, NULL, 'IPAY2021/10/2231', NULL, 'cash', '', '', '', '', '', '', '224.5000', NULL, 11, NULL, 'received', '', '224.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2233, '2021-10-30 22:15:53', 2285, NULL, NULL, 'IPAY2021/10/2232', NULL, 'cash', '', '', '', '', '', '', '150.5000', NULL, 11, NULL, 'received', '', '150.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2234, '2021-10-31 17:59:31', 2286, NULL, NULL, 'IPAY2021/10/2233', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 8, 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 (2235, '2021-10-31 18:48:49', 2287, NULL, NULL, 'IPAY2021/10/2234', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 8, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2236, '2021-10-31 19:31:05', 2288, NULL, NULL, 'IPAY2021/10/2235', NULL, 'cash', '', '', '', '', '', '', '407.5000', NULL, 15, NULL, 'received', '', '407.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2237, '2021-10-31 19:41:10', 2289, NULL, NULL, 'IPAY2021/10/2236', NULL, 'cash', '', '', '', '', '', '', '77.5000', NULL, 8, 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 (2238, '2021-10-31 19:52:26', 2290, NULL, NULL, 'IPAY2021/10/2237', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 15, 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 (2239, '2021-10-31 20:24:36', 2291, NULL, NULL, 'IPAY2021/10/2238', NULL, 'cash', '', '', '', '', '', '', '41.1000', NULL, 15, NULL, 'received', '', '41.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 (2240, '2021-10-31 20:58:45', 2292, NULL, NULL, 'IPAY2021/10/2239', NULL, 'cash', '', '', '', '', '', '', '12.2000', NULL, 15, NULL, 'received', '', '12.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 (2241, '2021-10-31 21:10:53', 2293, NULL, NULL, 'IPAY2021/10/2240', NULL, 'cash', '', '', '', '', '', '', '96.0000', NULL, 8, NULL, 'received', '', '96.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2242, '2021-10-31 21:13:23', 2294, NULL, NULL, 'IPAY2021/10/2241', NULL, 'cash', '', '', '', '', '', '', '870.3000', NULL, 17, NULL, 'received', '', '870.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 (2243, '2021-10-31 21:21:35', 2295, NULL, NULL, 'IPAY2021/10/2242', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 17, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2244, '2021-10-31 21:31:04', 2296, NULL, NULL, 'IPAY2021/10/2243', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 17, 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 (2245, '2021-10-31 21:31:37', 2297, NULL, NULL, 'IPAY2021/10/2244', 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 (2246, '2021-10-31 21:35:59', 2298, NULL, NULL, 'IPAY2021/10/2245', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 8, 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 (2247, '2021-10-31 21:39:17', 2299, NULL, NULL, 'IPAY2021/10/2246', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 15, 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 (2248, '2021-10-31 21:50:26', 2300, NULL, NULL, 'IPAY2021/10/2247', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 15, 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 (2249, '2021-11-01 14:53:25', 2301, NULL, NULL, 'IPAY2021/11/2248', NULL, 'cash', '', '', '', '', '', '', '200.5000', NULL, 15, 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 (2250, '2021-11-01 14:56:05', 2302, NULL, NULL, 'IPAY2021/11/2249', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 15, 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 (2251, '2021-11-01 14:57:54', 2303, NULL, NULL, 'IPAY2021/11/2250', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 15, 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 (2252, '2021-11-01 15:03:19', 2304, NULL, NULL, 'IPAY2021/11/2251', NULL, 'cash', '', '', '', '', '', '', '284.0000', NULL, 8, NULL, 'received', '', '284.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2253, '2021-11-01 17:02:00', 2305, NULL, NULL, 'IPAY2021/11/2252', NULL, 'cash', '', '', '', '', '', '', '460.5000', NULL, 17, 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 (2254, '2021-11-01 17:03:31', 2306, NULL, NULL, 'IPAY2021/11/2253', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 17, 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 (2255, '2021-11-01 17:50:49', 2307, NULL, NULL, 'IPAY2021/11/2254', NULL, 'cash', '', '', '', '', '', '', '145.9000', NULL, 11, NULL, 'received', '', '145.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 (2256, '2021-11-01 19:23:01', 2308, NULL, NULL, 'IPAY2021/11/2255', NULL, 'cash', '', '', '', '', '', '', '332.5000', NULL, 11, 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 (2257, '2021-11-01 19:28:30', 2309, NULL, NULL, 'IPAY2021/11/2256', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 8, 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 (2258, '2021-11-01 19:44:52', 2310, NULL, NULL, 'IPAY2021/11/2257', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 11, 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 (2259, '2021-11-01 19:52:29', 2311, NULL, NULL, 'IPAY2021/11/2258', NULL, 'cash', '', '', '', '', '', '', '428.1000', NULL, 8, NULL, 'received', '', '428.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 (2260, '2021-11-01 20:06:56', 2312, NULL, NULL, 'IPAY2021/11/2259', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 11, NULL, 'received', '', '100.0000', '71.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2261, '2021-11-01 20:33:56', 2313, NULL, NULL, 'IPAY2021/11/2260', NULL, 'cash', '', '', '', '', '', '', '112.5000', NULL, 8, 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 (2262, '2021-11-01 20:41:42', 2314, NULL, NULL, 'IPAY2021/11/2261', NULL, 'cash', '', '', '', '', '', '', '460.6000', NULL, 16, NULL, 'received', '', '460.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 (2263, '2021-11-01 20:48:59', 2315, NULL, NULL, 'IPAY2021/11/2262', NULL, 'cash', '', '', '', '', '', '', '220.5000', NULL, 11, 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 (2264, '2021-11-01 21:04:29', 2316, NULL, NULL, 'IPAY2021/11/2263', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 16, 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 (2265, '2021-11-01 21:27:45', 2317, NULL, NULL, 'IPAY2021/11/2264', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 8, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2266, '2021-11-01 21:35:20', 2318, NULL, NULL, 'IPAY2021/11/2265', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 8, 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 (2267, '2021-11-01 22:21:57', 2319, NULL, NULL, 'IPAY2021/11/2266', 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 (2268, '2021-11-02 11:52:41', 2320, NULL, NULL, 'IPAY2021/11/2267', NULL, 'cash', '', '', '', '', '', '', '111.7000', NULL, 15, NULL, 'received', '', '111.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 (2269, '2021-11-02 13:41:33', 2321, NULL, NULL, 'IPAY2021/11/2268', NULL, 'cash', '', '', '', '', '', '', '91.8000', NULL, 15, NULL, 'received', '', '91.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 (2270, '2021-11-02 14:44:26', 2322, NULL, NULL, 'IPAY2021/11/2269', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 15, 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 (2271, '2021-11-02 15:04:01', 2323, NULL, NULL, 'IPAY2021/11/2270', NULL, 'cash', '', '', '', '', '', '', '278.7000', NULL, 8, NULL, 'received', '', '278.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 (2272, '2021-11-02 15:18:59', 2324, NULL, NULL, 'IPAY2021/11/2271', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 8, 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 (2273, '2021-11-02 15:27:35', 2325, NULL, NULL, 'IPAY2021/11/2272', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 8, 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 (2274, '2021-11-02 15:36:38', 2326, NULL, NULL, 'IPAY2021/11/2273', NULL, 'cash', '', '', '', '', '', '', '71.0000', NULL, 11, 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 (2275, '2021-11-02 15:45:51', 2327, NULL, NULL, 'IPAY2021/11/2274', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 8, 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 (2276, '2021-11-02 15:54:05', 2328, NULL, NULL, 'IPAY2021/11/2275', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (2277, '2021-11-02 16:52:54', 2329, NULL, NULL, 'IPAY2021/11/2276', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 11, 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 (2278, '2021-11-02 17:07:56', 2330, NULL, NULL, 'IPAY2021/11/2277', NULL, 'cash', '', '', '', '', '', '', '321.1000', NULL, 17, NULL, 'received', '', '321.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 (2279, '2021-11-02 17:16:31', 2331, NULL, NULL, 'IPAY2021/11/2278', NULL, 'cash', '', '', '', '', '', '', '170.1000', NULL, 17, NULL, 'received', '', '170.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 (2280, '2021-11-02 19:44:43', 2332, NULL, NULL, 'IPAY2021/11/2279', NULL, 'cash', '', '', '', '', '', '', '40.4000', NULL, 8, NULL, 'received', '', '40.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 (2281, '2021-11-02 21:27:03', 2333, NULL, NULL, 'IPAY2021/11/2280', NULL, 'cash', '', '', '', '', '', '', '529.9000', NULL, 17, NULL, 'received', '', '529.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 (2282, '2021-11-02 21:47:48', 2334, NULL, NULL, 'IPAY2021/11/2281', NULL, 'cash', '', '', '', '', '', '', '379.7000', NULL, 11, NULL, 'received', '', '379.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 (2283, '2021-11-02 22:09:12', 2335, NULL, NULL, 'IPAY2021/11/2282', 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 (2284, '2021-11-03 08:58:55', 2336, NULL, NULL, 'IPAY2021/11/2283', NULL, 'cash', '', '', '', '', '', '', '741.6000', NULL, 8, NULL, 'received', '', '741.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 (2285, '2021-11-03 15:04:58', 2337, NULL, NULL, 'IPAY2021/11/2284', NULL, 'cash', '', '', '', '', '', '', '157.1000', NULL, 21, NULL, 'received', '', '157.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 (2286, '2021-11-03 15:32:43', 2338, NULL, NULL, 'IPAY2021/11/2285', NULL, 'cash', '', '', '', '', '', '', '178.1000', NULL, 11, NULL, 'received', '', '178.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 (2287, '2021-11-03 15:49:21', 2339, NULL, NULL, 'IPAY2021/11/2286', NULL, 'cash', '', '', '', '', '', '', '230.5000', NULL, 8, NULL, 'received', '', '230.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2288, '2021-11-03 16:07:22', 2340, NULL, NULL, 'IPAY2021/11/2287', NULL, 'cash', '', '', '', '', '', '', '272.4000', NULL, 16, NULL, 'received', '', '272.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 (2289, '2021-11-03 16:15:42', 2341, NULL, NULL, 'IPAY2021/11/2288', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (2290, '2021-11-03 19:02:04', 2342, NULL, NULL, 'IPAY2021/11/2289', NULL, 'cash', '', '', '', '', '', '', '359.2000', NULL, 11, NULL, 'received', '', '359.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 (2291, '2021-11-03 20:40:44', 2343, NULL, NULL, 'IPAY2021/11/2290', NULL, 'cash', '', '', '', '', '', '', '774.8000', NULL, 8, NULL, 'received', '', '774.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 (2292, '2021-11-03 21:03:26', 2344, NULL, NULL, 'IPAY2021/11/2291', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 8, 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 (2293, '2021-11-03 21:05:08', 2345, NULL, NULL, 'IPAY2021/11/2292', NULL, 'cash', '', '', '', '', '', '', '155.1000', NULL, 11, NULL, 'received', '', '155.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 (2294, '2021-11-03 21:24:11', 2346, NULL, NULL, 'IPAY2021/11/2293', NULL, 'cash', '', '', '', '', '', '', '938.9000', NULL, 16, NULL, 'received', '', '938.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 (2295, '2021-11-03 21:36:53', 2347, NULL, NULL, 'IPAY2021/11/2294', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 16, 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 (2296, '2021-11-03 21:52:35', 2348, NULL, NULL, 'IPAY2021/11/2295', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 8, 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 (2297, '2021-11-03 22:02:37', 2349, NULL, NULL, 'IPAY2021/11/2296', 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 (2298, '2021-11-04 14:45:55', 2350, NULL, NULL, 'IPAY2021/11/2297', NULL, 'cash', '', '', '', '', '', '', '422.1000', NULL, 21, NULL, 'received', '', '422.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 (2299, '2021-11-04 15:10:08', 2351, NULL, NULL, 'IPAY2021/11/2298', NULL, 'cash', '', '', '', '', '', '', '211.5000', NULL, 8, 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 (2300, '2021-11-04 15:17:25', 2352, NULL, NULL, 'IPAY2021/11/2299', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 8, 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 (2301, '2021-11-04 18:13:51', 2353, NULL, NULL, 'IPAY2021/11/2300', NULL, 'cash', '', '', '', '', '', '', '106.2000', NULL, 15, NULL, 'received', '', '106.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 (2302, '2021-11-04 19:00:23', 2354, NULL, NULL, 'IPAY2021/11/2301', NULL, 'cash', '', '', '', '', '', '', '597.6000', NULL, 16, NULL, 'received', '', '597.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 (2303, '2021-11-04 19:13:51', 2355, NULL, NULL, 'IPAY2021/11/2302', NULL, 'cash', '', '', '', '', '', '', '278.7000', NULL, 15, NULL, 'received', '', '278.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 (2304, '2021-11-04 19:31:07', 2356, NULL, NULL, 'IPAY2021/11/2303', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 15, 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 (2305, '2021-11-04 20:46:32', 2357, NULL, NULL, 'IPAY2021/11/2304', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 15, 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 (2306, '2021-11-04 21:03:32', 2358, NULL, NULL, 'IPAY2021/11/2305', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 15, 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 (2307, '2021-11-04 21:05:57', 2359, NULL, NULL, 'IPAY2021/11/2306', NULL, 'cash', '', '', '', '', '', '', '243.6000', NULL, 16, NULL, 'received', '', '243.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 (2308, '2021-11-04 21:10:37', 2360, NULL, NULL, 'IPAY2021/11/2307', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 15, 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 (2309, '2021-11-04 21:21:07', 2361, NULL, NULL, 'IPAY2021/11/2308', 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 (2310, '2021-11-05 10:46:44', 2362, NULL, NULL, 'IPAY2021/11/2309', NULL, 'cash', '', '', '', '', '', '', '826.6000', NULL, 8, NULL, 'received', '', '826.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 (2311, '2021-11-05 12:13:21', 2363, NULL, NULL, 'IPAY2021/11/2310', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 8, 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 (2312, '2021-11-05 12:27:09', 2364, NULL, NULL, 'IPAY2021/11/2311', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 8, 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 (2313, '2021-11-05 14:25:20', 2365, NULL, NULL, 'IPAY2021/11/2312', NULL, 'cash', '', '', '', '', '', '', '156.7000', NULL, 21, NULL, 'received', '', '156.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 (2314, '2021-11-05 14:29:09', 2366, NULL, NULL, 'IPAY2021/11/2313', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (2315, '2021-11-05 19:01:09', 2367, NULL, NULL, 'IPAY2021/11/2314', NULL, 'cash', '', '', '', '', '', '', '684.5000', NULL, 16, NULL, 'received', '', '684.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2316, '2021-11-05 20:18:32', 2368, NULL, NULL, 'IPAY2021/11/2315', NULL, 'cash', '', '', '', '', '', '', '455.0000', NULL, 8, NULL, 'received', '', '455.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2317, '2021-11-05 20:52:50', 2369, NULL, NULL, 'IPAY2021/11/2316', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 8, 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 (2318, '2021-11-05 21:05:11', 2370, NULL, NULL, 'IPAY2021/11/2317', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (2319, '2021-11-05 21:13:28', 2371, NULL, NULL, 'IPAY2021/11/2318', NULL, 'cash', '', '', '', '', '', '', '248.2000', NULL, 16, NULL, 'received', '', '248.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 (2320, '2021-11-05 21:14:21', 2372, NULL, NULL, 'IPAY2021/11/2319', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (2321, '2021-11-05 21:17:20', 2373, NULL, NULL, 'IPAY2021/11/2320', NULL, 'cash', '', '', '', '', '', '', '131.0000', NULL, 11, 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 (2322, '2021-11-05 21:28:12', 2374, NULL, NULL, 'IPAY2021/11/2321', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 8, 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 (2323, '2021-11-05 21:40:37', 2375, NULL, NULL, 'IPAY2021/11/2322', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 16, 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 (2324, '2021-11-05 21:48:52', 2376, NULL, NULL, 'IPAY2021/11/2323', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (2325, '2021-11-05 21:54:59', 2377, NULL, NULL, 'IPAY2021/11/2324', 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 (2326, '2021-11-05 21:59:31', 2378, NULL, NULL, 'IPAY2021/11/2325', 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 (2327, '2021-11-06 13:29:42', 2379, NULL, NULL, 'IPAY2021/11/2326', NULL, 'cash', '', '', '', '', '', '', '129.6000', NULL, 15, NULL, 'received', '', '129.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 (2328, '2021-11-06 14:03:23', 2380, NULL, NULL, 'IPAY2021/11/2327', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 15, 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 (2329, '2021-11-06 14:24:11', 2381, NULL, NULL, 'IPAY2021/11/2328', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 15, 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 (2330, '2021-11-06 14:39:45', 2382, NULL, NULL, 'IPAY2021/11/2329', NULL, 'cash', '', '', '', '', '', '', '196.3000', NULL, 16, NULL, 'received', '', '196.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 (2331, '2021-11-06 15:06:35', 2383, NULL, NULL, 'IPAY2021/11/2330', NULL, 'cash', '', '', '', '', '', '', '299.6000', NULL, 8, 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 (2332, '2021-11-06 15:21:32', 2384, NULL, NULL, 'IPAY2021/11/2331', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (2333, '2021-11-06 19:26:41', 2385, NULL, NULL, 'IPAY2021/11/2332', NULL, 'cash', '', '', '', '', '', '', '405.9000', NULL, 11, NULL, 'received', '', '405.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 (2334, '2021-11-06 20:07:29', 2386, NULL, NULL, 'IPAY2021/11/2333', NULL, 'cash', '', '', '', '', '', '', '363.2000', NULL, 16, NULL, 'received', '', '363.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 (2335, '2021-11-06 21:16:52', 2387, NULL, NULL, 'IPAY2021/11/2334', NULL, 'cash', '', '', '', '', '', '', '636.5000', NULL, 8, NULL, 'received', '', '636.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2336, '2021-11-06 21:18:14', 2388, NULL, NULL, 'IPAY2021/11/2335', 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 (2337, '2021-11-06 21:21:09', 2389, NULL, NULL, 'IPAY2021/11/2336', NULL, 'cash', '', '', '', '', '', '', '40.6000', NULL, 16, NULL, 'received', '', '40.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 (2338, '2021-11-06 21:34:30', 2390, NULL, NULL, 'IPAY2021/11/2337', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 16, 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 (2339, '2021-11-06 21:39:58', 2391, NULL, NULL, 'IPAY2021/11/2338', NULL, 'cash', '', '', '', '', '', '', '225.3000', NULL, 11, NULL, 'received', '', '225.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 (2340, '2021-11-06 21:58:07', 2392, NULL, NULL, 'IPAY2021/11/2339', NULL, 'cash', '', '', '', '', '', '', '13.3000', NULL, 11, NULL, 'received', '', '13.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 (2341, '2021-11-06 22:08:19', 2393, NULL, NULL, 'IPAY2021/11/2340', NULL, 'cash', '', '', '', '', '', '', '171.0000', NULL, 8, NULL, 'received', '', '171.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2342, '2021-11-07 17:38:29', 2394, NULL, NULL, 'IPAY2021/11/2341', NULL, 'cash', '', '', '', '', '', '', '337.5000', NULL, 7, NULL, 'received', '', '337.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2343, '2021-11-07 18:05:14', 2395, NULL, NULL, 'IPAY2021/11/2342', NULL, 'cash', '', '', '', '', '', '', '262.3000', NULL, 16, NULL, 'received', '', '262.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 (2344, '2021-11-07 20:21:02', 2396, NULL, NULL, 'IPAY2021/11/2343', NULL, 'cash', '', '', '', '', '', '', '230.1000', NULL, 16, NULL, 'received', '', '230.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 (2345, '2021-11-07 20:24:57', 2397, NULL, NULL, 'IPAY2021/11/2344', NULL, 'cash', '', '', '', '', '', '', '366.1000', NULL, 7, NULL, 'received', '', '366.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 (2346, '2021-11-07 21:18:28', 2398, NULL, NULL, 'IPAY2021/11/2345', NULL, 'cash', '', '', '', '', '', '', '135.3000', NULL, 16, NULL, 'received', '', '135.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 (2347, '2021-11-07 21:36:24', 2399, NULL, NULL, 'IPAY2021/11/2346', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 7, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2348, '2021-11-07 21:38:51', 2400, NULL, NULL, 'IPAY2021/11/2347', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 16, 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 (2349, '2021-11-07 21:43:58', 2401, NULL, NULL, 'IPAY2021/11/2348', NULL, 'cash', '', '', '', '', '', '', '837.0000', NULL, 21, NULL, 'received', '', '837.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2350, '2021-11-08 14:54:37', 2403, NULL, NULL, 'IPAY2021/11/2349', NULL, 'cash', '', '', '', '', '', '', '106.5000', NULL, 8, 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 (2351, '2021-11-08 14:56:35', 2404, NULL, NULL, 'IPAY2021/11/2350', NULL, 'cash', '', '', '', '', '', '', '173.2000', NULL, 21, NULL, 'received', '', '173.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 (2352, '2021-11-08 15:08:10', 2405, NULL, NULL, 'IPAY2021/11/2351', NULL, 'cash', '', '', '', '', '', '', '430.1000', NULL, 17, NULL, 'received', '', '430.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 (2353, '2021-11-08 19:01:04', 2406, NULL, NULL, 'IPAY2021/11/2352', NULL, 'cash', '', '', '', '', '', '', '106.4000', NULL, 8, NULL, 'received', '', '106.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 (2354, '2021-11-08 20:20:45', 2407, NULL, NULL, 'IPAY2021/11/2353', NULL, 'cash', '', '', '', '', '', '', '484.4000', NULL, 17, NULL, 'received', '', '484.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 (2355, '2021-11-08 20:29:24', 2408, NULL, NULL, 'IPAY2021/11/2354', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 17, 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 (2356, '2021-11-08 20:30:57', 2409, NULL, NULL, 'IPAY2021/11/2355', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 17, 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 (2357, '2021-11-08 21:03:22', 2410, NULL, NULL, 'IPAY2021/11/2356', NULL, 'cash', '', '', '', '', '', '', '275.7000', NULL, 8, NULL, 'received', '', '275.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 (2358, '2021-11-08 21:34:21', 2411, NULL, NULL, 'IPAY2021/11/2357', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 8, 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 (2359, '2021-11-08 21:42:26', 2412, NULL, NULL, 'IPAY2021/11/2358', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 17, 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 (2360, '2021-11-08 21:50:26', 2413, NULL, NULL, 'IPAY2021/11/2359', NULL, 'cash', '', '', '', '', '', '', '522.9000', NULL, 11, NULL, 'received', '', '522.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 (2361, '2021-11-08 21:53:36', 2414, NULL, NULL, 'IPAY2021/11/2360', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (2362, '2021-11-08 21:54:37', 2415, NULL, NULL, 'IPAY2021/11/2361', NULL, 'cash', '', '', '', '', '', '', '71.0000', NULL, 17, 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 (2363, '2021-11-08 22:07:24', 2416, NULL, NULL, 'IPAY2021/11/2362', NULL, 'cash', '', '', '', '', '', '', '10.8000', NULL, 11, NULL, 'received', '', '10.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 (2364, '2021-11-09 11:31:45', 2417, NULL, NULL, 'IPAY2021/11/2363', NULL, 'cash', '', '', '', '', '', '', '285.5000', NULL, 15, NULL, 'received', '', '285.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2365, '2021-11-09 11:41:52', 2418, NULL, NULL, 'IPAY2021/11/2364', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 15, 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 (2366, '2021-11-09 14:08:47', 2419, NULL, NULL, 'IPAY2021/11/2365', NULL, 'cash', '', '', '', '', '', '', '35.1000', NULL, 15, NULL, 'received', '', '35.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 (2367, '2021-11-09 14:46:32', 2420, NULL, NULL, 'IPAY2021/11/2366', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 15, 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 (2368, '2021-11-09 14:50:27', 2421, NULL, NULL, 'IPAY2021/11/2367', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 15, 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 (2369, '2021-11-09 15:32:56', 2422, NULL, NULL, 'IPAY2021/11/2368', NULL, 'cash', '', '', '', '', '', '', '284.5000', NULL, 8, NULL, 'received', '', '284.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2370, '2021-11-09 17:23:27', 2423, NULL, NULL, 'IPAY2021/11/2369', NULL, 'cash', '', '', '', '', '', '', '520.9000', NULL, 16, NULL, 'received', '', '520.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 (2371, '2021-11-09 20:06:31', 2424, NULL, NULL, 'IPAY2021/11/2370', NULL, 'cash', '', '', '', '', '', '', '306.6000', NULL, 11, NULL, 'received', '', '306.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 (2372, '2021-11-09 20:54:50', 2425, NULL, NULL, 'IPAY2021/11/2371', NULL, 'cash', '', '', '', '', '', '', '318.9000', NULL, 16, 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 (2373, '2021-11-09 21:22:17', 2426, NULL, NULL, 'IPAY2021/11/2372', NULL, 'cash', '', '', '', '', '', '', '69.7000', NULL, 11, NULL, 'received', '', '69.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 (2374, '2021-11-09 21:37:50', 2427, NULL, NULL, 'IPAY2021/11/2373', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 16, 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 (2375, '2021-11-09 21:55:47', 2428, NULL, NULL, 'IPAY2021/11/2374', NULL, 'cash', '', '', '', '', '', '', '107.8000', NULL, 11, NULL, 'received', '', '107.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 (2376, '2021-11-10 09:26:39', 2429, NULL, NULL, 'IPAY2021/11/2375', NULL, 'cash', '', '', '', '', '', '', '497.2000', NULL, 8, NULL, 'received', '', '497.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 (2377, '2021-11-10 09:37:36', 2430, NULL, NULL, 'IPAY2021/11/2376', NULL, 'cash', '', '', '', '', '', '', '289.4000', NULL, 8, NULL, 'received', '', '289.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 (2378, '2021-11-10 13:09:46', 2431, NULL, NULL, 'IPAY2021/11/2377', NULL, 'cash', '', '', '', '', '', '', '214.0000', NULL, 21, NULL, 'received', '', '214.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2379, '2021-11-10 14:31:11', 2432, NULL, NULL, 'IPAY2021/11/2378', NULL, 'cash', '', '', '', '', '', '', '235.8000', NULL, 21, NULL, 'received', '', '235.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 (2380, '2021-11-10 15:53:10', 2433, NULL, NULL, 'IPAY2021/11/2379', NULL, 'cash', '', '', '', '', '', '', '226.6000', NULL, 8, NULL, 'received', '', '226.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 (2381, '2021-11-10 18:54:58', 2434, NULL, NULL, 'IPAY2021/11/2380', 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 (2382, '2021-11-10 19:10:32', 2435, NULL, NULL, 'IPAY2021/11/2381', NULL, 'cash', '', '', '', '', '', '', '646.1000', NULL, 16, NULL, 'received', '', '646.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 (2383, '2021-11-10 19:17:31', 2436, NULL, NULL, 'IPAY2021/11/2382', NULL, 'cash', '', '', '', '', '', '', '239.8000', NULL, 11, NULL, 'received', '', '239.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 (2384, '2021-11-10 19:56:14', 2437, NULL, NULL, 'IPAY2021/11/2383', NULL, 'cash', '', '', '', '', '', '', '66.9000', NULL, 11, NULL, 'received', '', '66.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 (2385, '2021-11-10 20:34:26', 2438, NULL, NULL, 'IPAY2021/11/2384', NULL, 'cash', '', '', '', '', '', '', '275.5000', NULL, 8, 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 (2386, '2021-11-10 20:41:33', 2439, NULL, NULL, 'IPAY2021/11/2385', NULL, 'cash', '', '', '', '', '', '', '5.6000', NULL, 8, NULL, 'received', '', '5.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 (2387, '2021-11-10 20:57:44', 2440, NULL, NULL, 'IPAY2021/11/2386', NULL, 'cash', '', '', '', '', '', '', '276.8000', NULL, 16, NULL, 'received', '', '276.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 (2388, '2021-11-10 21:19:51', 2441, NULL, NULL, 'IPAY2021/11/2387', NULL, 'cash', '', '', '', '', '', '', '164.0000', NULL, 8, NULL, 'received', '', '164.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2389, '2021-11-10 21:41:14', 2442, NULL, NULL, 'IPAY2021/11/2388', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 16, 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 (2390, '2021-11-10 21:45:03', 2443, NULL, NULL, 'IPAY2021/11/2389', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 16, 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 (2391, '2021-11-10 21:59:24', 2444, NULL, NULL, 'IPAY2021/11/2390', NULL, 'cash', '', '', '', '', '', '', '95.2000', NULL, 11, NULL, 'received', '', '95.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 (2392, '2021-11-10 22:06:21', 2445, NULL, NULL, 'IPAY2021/11/2391', NULL, 'cash', '', '', '', '', '', '', '254.0000', NULL, 8, NULL, 'received', '', '254.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2393, '2021-11-11 15:09:45', 2446, NULL, NULL, 'IPAY2021/11/2392', NULL, 'cash', '', '', '', '', '', '', '287.8000', NULL, 21, NULL, 'received', '', '287.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 (2394, '2021-11-11 15:42:54', 2447, NULL, NULL, 'IPAY2021/11/2393', NULL, 'cash', '', '', '', '', '', '', '171.0000', NULL, 8, NULL, 'received', '', '171.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2395, '2021-11-11 18:39:38', 2448, NULL, NULL, 'IPAY2021/11/2394', NULL, 'cash', '', '', '', '', '', '', '285.9000', NULL, 15, NULL, 'received', '', '285.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 (2396, '2021-11-11 20:06:18', 2449, NULL, NULL, 'IPAY2021/11/2395', NULL, 'cash', '', '', '', '', '', '', '372.6000', NULL, 8, NULL, 'received', '', '372.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 (2397, '2021-11-11 20:26:51', 2450, NULL, NULL, 'IPAY2021/11/2396', NULL, 'cash', '', '', '', '', '', '', '204.4000', NULL, 15, NULL, 'received', '', '204.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 (2398, '2021-11-11 20:28:43', 2451, NULL, NULL, 'IPAY2021/11/2397', NULL, 'cash', '', '', '', '', '', '', '1022.7000', NULL, 16, NULL, 'received', '', '1022.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 (2399, '2021-11-11 21:07:05', 2452, NULL, NULL, 'IPAY2021/11/2398', NULL, 'cash', '', '', '', '', '', '', '55.2000', NULL, 15, NULL, 'received', '', '55.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 (2400, '2021-11-11 21:29:12', 2453, NULL, NULL, 'IPAY2021/11/2399', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 8, 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 (2401, '2021-11-11 21:32:06', 2454, NULL, NULL, 'IPAY2021/11/2400', NULL, 'cash', '', '', '', '', '', '', '56.1000', NULL, 16, NULL, 'received', '', '56.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 (2402, '2021-11-11 21:34:22', 2455, NULL, NULL, 'IPAY2021/11/2401', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 15, 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 (2403, '2021-11-11 21:36:56', 2456, NULL, NULL, 'IPAY2021/11/2402', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (2404, '2021-11-11 21:38:07', 2457, NULL, NULL, 'IPAY2021/11/2403', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 8, 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 (2405, '2021-11-11 21:40:11', 2458, NULL, NULL, 'IPAY2021/11/2404', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 8, 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 (2406, '2021-11-11 21:41:42', 2459, NULL, NULL, 'IPAY2021/11/2405', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 8, 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 (2407, '2021-11-11 21:44:07', 2460, NULL, NULL, 'IPAY2021/11/2406', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 8, 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 (2408, '2021-11-11 21:45:15', 2461, NULL, NULL, 'IPAY2021/11/2407', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (2409, '2021-11-11 21:50:16', 2462, NULL, NULL, 'IPAY2021/11/2408', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 8, 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 (2410, '2021-11-11 21:58:27', 2463, NULL, NULL, 'IPAY2021/11/2409', 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 (2411, '2021-11-12 15:00:55', 2464, NULL, NULL, 'IPAY2021/11/2410', NULL, 'cash', '', '', '', '', '', '', '144.5000', NULL, 21, NULL, 'received', '', '144.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2412, '2021-11-12 15:08:04', 2465, NULL, NULL, 'IPAY2021/11/2411', 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 (2413, '2021-11-12 15:34:51', 2466, NULL, NULL, 'IPAY2021/11/2412', 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 (2414, '2021-11-12 17:32:52', 2467, NULL, NULL, 'IPAY2021/11/2413', 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 (2415, '2021-11-12 17:55:53', 2468, NULL, NULL, 'IPAY2021/11/2414', NULL, 'cash', '', '', '', '', '', '', '479.5000', NULL, 16, NULL, 'received', '', '479.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2416, '2021-11-12 20:24:25', 2469, NULL, NULL, 'IPAY2021/11/2415', NULL, 'cash', '', '', '', '', '', '', '426.8000', NULL, 16, NULL, 'received', '', '426.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 (2417, '2021-11-12 20:30:03', 2470, NULL, NULL, 'IPAY2021/11/2416', NULL, 'cash', '', '', '', '', '', '', '118.2000', NULL, 16, NULL, 'received', '', '118.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 (2418, '2021-11-12 20:51:44', 2471, NULL, NULL, 'IPAY2021/11/2417', NULL, 'cash', '', '', '', '', '', '', '279.1000', NULL, 11, NULL, 'received', '', '279.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 (2419, '2021-11-12 21:34:42', 2472, NULL, NULL, 'IPAY2021/11/2418', NULL, 'cash', '', '', '', '', '', '', '204.0000', NULL, 16, 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 (2420, '2021-11-12 21:40:50', 2473, NULL, NULL, 'IPAY2021/11/2419', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 16, 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 (2421, '2021-11-12 22:15:12', 2474, NULL, NULL, 'IPAY2021/11/2420', NULL, 'cash', '', '', '', '', '', '', '130.1000', NULL, 11, NULL, 'received', '', '130.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 (2422, '2021-11-13 12:46:22', 2475, NULL, NULL, 'IPAY2021/11/2421', NULL, 'cash', '', '', '', '', '', '', '281.3000', NULL, 21, NULL, 'received', '', '281.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 (2423, '2021-11-13 12:52:54', 2476, NULL, NULL, 'IPAY2021/11/2422', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 21, 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 (2424, '2021-11-13 15:03:42', 2477, NULL, NULL, 'IPAY2021/11/2423', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 21, 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 (2425, '2021-11-13 15:47:38', 2478, NULL, NULL, 'IPAY2021/11/2424', NULL, 'cash', '', '', '', '', '', '', '388.0000', NULL, 8, NULL, 'received', '', '388.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2426, '2021-11-13 16:07:17', 2479, NULL, NULL, 'IPAY2021/11/2425', 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 (2427, '2021-11-13 16:29:53', 2480, NULL, NULL, 'IPAY2021/11/2426', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 11, 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 (2428, '2021-11-13 16:38:24', 2481, NULL, NULL, 'IPAY2021/11/2427', 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 (2429, '2021-11-13 16:41:05', 2482, NULL, NULL, 'IPAY2021/11/2428', 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 (2430, '2021-11-13 17:47:22', 2483, NULL, NULL, 'IPAY2021/11/2429', 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 (2431, '2021-11-13 17:55:28', 2484, NULL, NULL, 'IPAY2021/11/2430', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 11, 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 (2432, '2021-11-13 18:04:21', 2485, NULL, NULL, 'IPAY2021/11/2431', 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 (2433, '2021-11-13 18:30:31', 2486, NULL, NULL, 'IPAY2021/11/2432', NULL, 'cash', '', '', '', '', '', '', '122.0000', NULL, 11, 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 (2434, '2021-11-13 18:39:40', 2487, NULL, NULL, 'IPAY2021/11/2433', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 11, 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 (2435, '2021-11-13 19:38:11', 2488, NULL, NULL, 'IPAY2021/11/2434', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 11, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2436, '2021-11-13 19:44:31', 2489, NULL, NULL, 'IPAY2021/11/2435', 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 (2437, '2021-11-13 19:54:51', 2490, NULL, NULL, 'IPAY2021/11/2436', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 11, 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 (2438, '2021-11-13 20:33:43', 2491, NULL, NULL, 'IPAY2021/11/2437', NULL, 'cash', '', '', '', '', '', '', '604.7000', NULL, 16, NULL, 'received', '', '604.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 (2439, '2021-11-13 20:40:07', 2492, NULL, NULL, 'IPAY2021/11/2438', NULL, 'cash', '', '', '', '', '', '', '13.8000', NULL, 11, NULL, 'received', '', '13.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 (2440, '2021-11-13 20:42:13', 2493, NULL, NULL, 'IPAY2021/11/2439', NULL, 'cash', '', '', '', '', '', '', '166.8500', NULL, 16, NULL, 'received', '', '166.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 (2441, '2021-11-13 21:21:45', 2494, NULL, NULL, 'IPAY2021/11/2440', 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 (2442, '2021-11-13 21:31:40', 2495, NULL, NULL, 'IPAY2021/11/2441', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 11, 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 (2443, '2021-11-13 21:41:07', 2496, NULL, NULL, 'IPAY2021/11/2442', NULL, 'cash', '', '', '', '', '', '', '722.0000', NULL, 8, NULL, 'received', '', '722.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2444, '2021-11-13 21:41:49', 2497, NULL, NULL, 'IPAY2021/11/2443', 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 (2445, '2021-11-13 21:56:40', 2498, NULL, NULL, 'IPAY2021/11/2444', 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 (2446, '2021-11-13 21:59:24', 2499, NULL, NULL, 'IPAY2021/11/2445', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 8, 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 (2447, '2021-11-13 21:59:32', 2500, NULL, NULL, 'IPAY2021/11/2446', NULL, 'cash', '', '', '', '', '', '', '185.6000', NULL, 16, NULL, 'received', '', '185.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 (2448, '2021-11-13 22:11:35', 2501, NULL, NULL, 'IPAY2021/11/2447', NULL, 'cash', '', '', '', '', '', '', '88.0000', NULL, 8, 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 (2449, '2021-11-13 22:25:00', 2502, NULL, NULL, 'IPAY2021/11/2448', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 8, 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 (2450, '2021-11-14 20:35:48', 2503, NULL, NULL, 'IPAY2021/11/2449', NULL, 'cash', '', '', '', '', '', '', '537.0000', NULL, 8, NULL, 'received', '', '537.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2451, '2021-11-14 20:43:30', 2504, NULL, NULL, 'IPAY2021/11/2450', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (2452, '2021-11-14 20:55:12', 2505, NULL, NULL, 'IPAY2021/11/2451', NULL, 'cash', '', '', '', '', '', '', '446.8000', NULL, 21, NULL, 'received', '', '446.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 (2453, '2021-11-14 21:00:01', 2506, NULL, NULL, 'IPAY2021/11/2452', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 21, 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 (2454, '2021-11-14 21:10:06', 2507, NULL, NULL, 'IPAY2021/11/2453', NULL, 'cash', '', '', '', '', '', '', '119.0000', NULL, 8, NULL, 'received', '', '119.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2455, '2021-11-14 21:15:05', 2508, NULL, NULL, 'IPAY2021/11/2454', NULL, 'cash', '', '', '', '', '', '', '718.4000', NULL, 17, NULL, 'received', '', '718.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 (2456, '2021-11-14 21:16:00', 2509, NULL, NULL, 'IPAY2021/11/2455', NULL, 'cash', '', '', '', '', '', '', '41.7000', NULL, 21, NULL, 'received', '', '41.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 (2457, '2021-11-14 21:19:53', 2510, NULL, NULL, 'IPAY2021/11/2456', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 8, 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 (2458, '2021-11-14 21:20:07', 2511, NULL, NULL, 'IPAY2021/11/2457', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 21, 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 (2459, '2021-11-14 21:23:31', 2512, NULL, NULL, 'IPAY2021/11/2458', NULL, 'cash', '', '', '', '', '', '', '355.5000', NULL, 17, 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 (2460, '2021-11-14 21:25:19', 2513, NULL, NULL, 'IPAY2021/11/2459', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 21, 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 (2461, '2021-11-14 21:33:34', 2514, NULL, NULL, 'IPAY2021/11/2460', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 8, 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 (2462, '2021-11-14 21:38:02', 2515, NULL, NULL, 'IPAY2021/11/2461', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 21, 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 (2463, '2021-11-14 21:41:11', 2516, NULL, NULL, 'IPAY2021/11/2462', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 17, 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 (2464, '2021-11-15 15:19:43', 2517, NULL, NULL, 'IPAY2021/11/2463', NULL, 'cash', '', '', '', '', '', '', '521.6000', NULL, 21, NULL, 'received', '', '521.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 (2465, '2021-11-15 15:59:54', 2518, NULL, NULL, 'IPAY2021/11/2464', NULL, 'cash', '', '', '', '', '', '', '247.5000', NULL, 8, NULL, 'received', '', '247.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2466, '2021-11-15 17:20:42', 2519, NULL, NULL, 'IPAY2021/11/2465', NULL, 'cash', '', '', '', '', '', '', '356.8000', NULL, 17, NULL, 'received', '', '356.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 (2467, '2021-11-15 17:50:48', 2520, NULL, NULL, 'IPAY2021/11/2466', NULL, 'cash', '', '', '', '', '', '', '236.2000', NULL, 17, NULL, 'received', '', '236.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 (2468, '2021-11-15 18:32:08', 2521, NULL, NULL, 'IPAY2021/11/2467', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 17, 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 (2469, '2021-11-15 19:04:23', 2522, NULL, NULL, 'IPAY2021/11/2468', NULL, 'cash', '', '', '', '', '', '', '335.3000', NULL, 15, NULL, 'received', '', '335.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 (2470, '2021-11-15 19:41:31', 2523, NULL, NULL, 'IPAY2021/11/2469', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 15, 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 (2471, '2021-11-15 20:20:20', 2524, NULL, NULL, 'IPAY2021/11/2470', NULL, 'cash', '', '', '', '', '', '', '190.2400', NULL, 8, NULL, 'received', '', '190.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2472, '2021-11-15 20:29:14', 2525, NULL, NULL, 'IPAY2021/11/2471', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (2473, '2021-11-15 20:30:03', 2526, NULL, NULL, 'IPAY2021/11/2472', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 15, 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 (2474, '2021-11-15 20:32:26', 2527, NULL, NULL, 'IPAY2021/11/2473', NULL, 'cash', '', '', '', '', '', '', '384.8000', NULL, 17, NULL, 'received', '', '384.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 (2475, '2021-11-15 20:58:42', 2528, NULL, NULL, 'IPAY2021/11/2474', NULL, 'cash', '', '', '', '', '', '', '431.3000', NULL, 8, NULL, 'received', '', '431.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 (2476, '2021-11-15 21:00:16', 2529, NULL, NULL, 'IPAY2021/11/2475', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (2477, '2021-11-15 21:40:24', 2530, NULL, NULL, 'IPAY2021/11/2476', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 17, 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 (2478, '2021-11-15 21:42:25', 2531, NULL, NULL, 'IPAY2021/11/2477', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 15, 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 (2479, '2021-11-15 21:43:13', 2532, NULL, NULL, 'IPAY2021/11/2478', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 8, 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 (2480, '2021-11-15 21:44:49', 2533, NULL, NULL, 'IPAY2021/11/2479', 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 (2481, '2021-11-16 12:51:36', 2534, NULL, NULL, 'IPAY2021/11/2480', NULL, 'cash', '', '', '', '', '', '', '109.0000', NULL, 15, 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 (2482, '2021-11-16 13:39:29', 2535, NULL, NULL, 'IPAY2021/11/2481', NULL, 'cash', '', '', '', '', '', '', '89.8000', NULL, 15, NULL, 'received', '', '89.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 (2483, '2021-11-16 13:42:00', 2536, NULL, NULL, 'IPAY2021/11/2482', NULL, 'cash', '', '', '', '', '', '', '92.3000', NULL, 15, NULL, 'received', '', '92.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 (2484, '2021-11-16 13:44:04', 2537, NULL, NULL, 'IPAY2021/11/2483', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (2485, '2021-11-16 13:56:43', 2538, NULL, NULL, 'IPAY2021/11/2484', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (2486, '2021-11-16 14:58:15', 2539, NULL, NULL, 'IPAY2021/11/2485', NULL, 'cash', '', '', '', '', '', '', '217.0000', NULL, 8, 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 (2487, '2021-11-16 15:09:57', 2540, NULL, NULL, 'IPAY2021/11/2486', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 15, 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 (2488, '2021-11-16 15:22:50', 2541, NULL, NULL, 'IPAY2021/11/2487', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 8, 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 (2489, '2021-11-16 16:27:38', 2542, NULL, NULL, 'IPAY2021/11/2488', NULL, 'cash', '', '', '', '', '', '', '621.5000', NULL, 8, NULL, 'received', '', '621.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2490, '2021-11-16 17:57:59', 2543, NULL, NULL, 'IPAY2021/11/2489', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 8, 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 (2491, '2021-11-16 20:35:20', 2544, NULL, NULL, 'IPAY2021/11/2490', NULL, 'cash', '', '', '', '', '', '', '684.5000', NULL, 8, NULL, 'received', '', '684.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2492, '2021-11-16 20:42:26', 2545, NULL, NULL, 'IPAY2021/11/2491', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 8, 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 (2493, '2021-11-16 20:52:48', 2546, NULL, NULL, 'IPAY2021/11/2492', NULL, 'cash', '', '', '', '', '', '', '1054.6000', NULL, 16, NULL, 'received', '', '1054.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 (2494, '2021-11-16 21:08:32', 2547, NULL, NULL, 'IPAY2021/11/2493', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 8, 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 (2495, '2021-11-16 21:21:18', 2548, NULL, NULL, 'IPAY2021/11/2494', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (2496, '2021-11-16 21:40:45', 2549, NULL, NULL, 'IPAY2021/11/2495', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 16, 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 (2497, '2021-11-16 21:44:02', 2550, NULL, NULL, 'IPAY2021/11/2496', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 16, 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 (2498, '2021-11-16 21:47:36', 2551, NULL, NULL, 'IPAY2021/11/2497', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 8, 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 (2499, '2021-11-16 22:00:58', 2552, NULL, NULL, 'IPAY2021/11/2498', NULL, 'cash', '', '', '', '', '', '', '648.8000', NULL, 11, NULL, 'received', '', '648.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 (2500, '2021-11-16 23:43:32', 2553, NULL, NULL, 'IPAY2021/11/2499', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 3, 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 (2501, '2021-11-17 11:42:36', 2554, NULL, NULL, 'IPAY2021/11/2500', NULL, 'cash', '', '', '', '', '', '', '200.6000', NULL, 7, NULL, 'received', '', '200.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 (2502, '2021-11-17 13:11:39', 2555, NULL, NULL, 'IPAY2021/11/2501', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 7, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2503, '2021-11-17 14:09:20', 2556, NULL, NULL, 'IPAY2021/11/2502', NULL, 'cash', '', '', '', '', '', '', '209.2000', NULL, 21, NULL, 'received', '', '209.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 (2504, '2021-11-17 14:45:25', 2557, NULL, NULL, 'IPAY2021/11/2503', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 21, 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 (2505, '2021-11-17 14:58:55', 2558, NULL, NULL, 'IPAY2021/11/2504', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 21, 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 (2506, '2021-11-17 15:38:56', 2559, NULL, NULL, 'IPAY2021/11/2505', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 11, 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 (2507, '2021-11-17 15:43:07', 2560, NULL, NULL, 'IPAY2021/11/2506', 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 (2508, '2021-11-17 16:39:24', 2561, NULL, NULL, 'IPAY2021/11/2507', NULL, 'cash', '', '', '', '', '', '', '10.8000', NULL, 11, NULL, 'received', '', '10.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 (2509, '2021-11-17 17:30:55', 2562, NULL, NULL, 'IPAY2021/11/2508', NULL, 'cash', '', '', '', '', '', '', '26.8000', NULL, 11, NULL, 'received', '', '26.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 (2510, '2021-11-17 17:38:32', 2563, NULL, NULL, 'IPAY2021/11/2509', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 11, 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 (2511, '2021-11-17 17:57:47', 2564, NULL, NULL, 'IPAY2021/11/2510', NULL, 'cash', '', '', '', '', '', '', '68.4000', NULL, 11, NULL, 'received', '', '68.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 (2512, '2021-11-17 18:41:28', 2565, NULL, NULL, 'IPAY2021/11/2511', NULL, 'cash', '', '', '', '', '', '', '228.7000', NULL, 11, NULL, 'received', '', '228.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 (2513, '2021-11-17 19:07:33', 2566, NULL, NULL, 'IPAY2021/11/2512', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 11, 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 (2514, '2021-11-17 19:39:09', 2567, NULL, NULL, 'IPAY2021/11/2513', NULL, 'cash', '', '', '', '', '', '', '36.8000', NULL, 11, NULL, 'received', '', '36.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 (2515, '2021-11-17 20:18:24', 2568, NULL, NULL, 'IPAY2021/11/2514', NULL, 'cash', '', '', '', '', '', '', '88.0000', NULL, 11, 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 (2516, '2021-11-17 20:29:49', 2569, NULL, NULL, 'IPAY2021/11/2515', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 11, 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 (2517, '2021-11-17 21:01:40', 2570, NULL, NULL, 'IPAY2021/11/2516', NULL, 'cash', '', '', '', '', '', '', '1034.5500', NULL, 16, NULL, 'received', '', '1034.5500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2518, '2021-11-17 21:08:03', 2571, NULL, NULL, 'IPAY2021/11/2517', NULL, 'cash', '', '', '', '', '', '', '41.1800', NULL, 11, NULL, 'received', '', '41.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 (2519, '2021-11-17 21:09:48', 2572, NULL, NULL, 'IPAY2021/11/2518', 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 (2520, '2021-11-17 21:38:49', 2573, NULL, NULL, 'IPAY2021/11/2519', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 16, 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 (2521, '2021-11-17 21:39:22', 2574, NULL, NULL, 'IPAY2021/11/2520', NULL, 'cash', '', '', '', '', '', '', '40.1000', NULL, 11, NULL, 'received', '', '40.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 (2522, '2021-11-17 21:50:20', 2575, NULL, NULL, 'IPAY2021/11/2521', NULL, 'cash', '', '', '', '', '', '', '29.1000', NULL, 16, NULL, 'received', '', '29.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 (2523, '2021-11-17 21:51:40', 2576, NULL, NULL, 'IPAY2021/11/2522', NULL, 'cash', '', '', '', '', '', '', '767.0000', NULL, 22, NULL, 'received', '', '767.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2524, '2021-11-17 21:55:55', 2577, NULL, NULL, 'IPAY2021/11/2523', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 11, 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 (2525, '2021-11-18 15:30:55', 2578, NULL, NULL, 'IPAY2021/11/2524', NULL, 'cash', '', '', '', '', '', '', '333.0000', NULL, 8, NULL, 'received', '', '333.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2526, '2021-11-18 16:12:16', 2579, NULL, NULL, 'IPAY2021/11/2525', NULL, 'cash', '', '', '', '', '', '', '235.2000', NULL, 21, NULL, 'received', '', '235.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 (2527, '2021-11-18 18:42:57', 2580, NULL, NULL, 'IPAY2021/11/2526', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 21, 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 (2528, '2021-11-18 20:41:30', 2581, NULL, NULL, 'IPAY2021/11/2527', NULL, 'cash', '', '', '', '', '', '', '294.9000', NULL, 21, NULL, 'received', '', '294.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 (2529, '2021-11-18 21:08:16', 2582, NULL, NULL, 'IPAY2021/11/2528', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 8, 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 (2530, '2021-11-18 21:23:48', 2583, NULL, NULL, 'IPAY2021/11/2529', NULL, 'cash', '', '', '', '', '', '', '577.3000', NULL, 22, NULL, 'received', '', '577.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 (2531, '2021-11-18 21:27:42', 2584, NULL, NULL, 'IPAY2021/11/2530', NULL, 'cash', '', '', '', '', '', '', '53.2000', NULL, 21, NULL, 'received', '', '53.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 (2532, '2021-11-18 21:27:52', 2585, NULL, NULL, 'IPAY2021/11/2531', NULL, 'cash', '', '', '', '', '', '', '595.3000', NULL, 22, NULL, 'received', '', '595.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 (2533, '2021-11-18 21:31:51', 2586, NULL, NULL, 'IPAY2021/11/2532', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 22, 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 (2534, '2021-11-18 21:33:41', 2587, NULL, NULL, 'IPAY2021/11/2533', NULL, 'cash', '', '', '', '', '', '', '1426.9000', NULL, 16, NULL, 'received', '', '1426.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 (2535, '2021-11-18 21:39:27', 2588, NULL, NULL, 'IPAY2021/11/2534', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 22, 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 (2536, '2021-11-18 21:44:55', 2589, NULL, NULL, 'IPAY2021/11/2535', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 22, 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 (2537, '2021-11-18 21:45:01', 2590, NULL, NULL, 'IPAY2021/11/2536', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 21, 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 (2538, '2021-11-18 22:02:23', 2591, NULL, NULL, 'IPAY2021/11/2537', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 21, 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 (2539, '2021-11-18 22:09:55', 2592, NULL, NULL, 'IPAY2021/11/2538', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 21, 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 (2540, '2021-11-19 14:37:32', 2593, NULL, NULL, 'IPAY2021/11/2539', NULL, 'cash', '', '', '', '', '', '', '319.7000', NULL, 21, NULL, 'received', '', '319.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 (2541, '2021-11-19 15:03:02', 2594, NULL, NULL, 'IPAY2021/11/2540', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 21, 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 (2542, '2021-11-19 15:22:42', 2595, NULL, NULL, 'IPAY2021/11/2541', NULL, 'cash', '', '', '', '', '', '', '367.6000', NULL, 8, NULL, 'received', '', '367.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 (2543, '2021-11-19 16:30:02', 2596, NULL, NULL, 'IPAY2021/11/2542', NULL, 'cash', '', '', '', '', '', '', '55.5000', NULL, 11, NULL, 'received', '', '55.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2544, '2021-11-19 17:17:42', 2597, NULL, NULL, 'IPAY2021/11/2543', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 11, 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 (2545, '2021-11-19 18:49:58', 2598, NULL, NULL, 'IPAY2021/11/2544', NULL, 'cash', '', '', '', '', '', '', '202.8000', NULL, 11, NULL, 'received', '', '202.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 (2546, '2021-11-19 19:47:26', 2599, NULL, NULL, 'IPAY2021/11/2545', NULL, 'cash', '', '', '', '', '', '', '31.9000', NULL, 11, NULL, 'received', '', '31.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 (2547, '2021-11-19 20:08:39', 2600, NULL, NULL, 'IPAY2021/11/2546', NULL, 'cash', '', '', '', '', '', '', '55.5000', NULL, 11, NULL, 'received', '', '55.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2548, '2021-11-19 20:33:31', 2601, NULL, NULL, 'IPAY2021/11/2547', NULL, 'cash', '', '', '', '', '', '', '1084.6800', NULL, 16, NULL, 'received', '', '1084.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 (2549, '2021-11-19 21:46:08', 2602, NULL, NULL, 'IPAY2021/11/2548', NULL, 'cash', '', '', '', '', '', '', '70.9000', NULL, 16, NULL, 'received', '', '70.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 (2550, '2021-11-19 21:53:00', 2603, NULL, NULL, 'IPAY2021/11/2549', NULL, 'cash', '', '', '', '', '', '', '88.0000', NULL, 11, 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 (2551, '2021-11-20 10:50:45', 2604, NULL, NULL, 'IPAY2021/11/2550', NULL, 'cash', '', '', '', '', '', '', '86.5000', NULL, 16, 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 (2552, '2021-11-20 12:41:23', 2605, NULL, NULL, 'IPAY2021/11/2551', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 8, 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 (2553, '2021-11-20 13:50:39', 2606, NULL, NULL, 'IPAY2021/11/2552', NULL, 'cash', '', '', '', '', '', '', '308.8000', NULL, 21, NULL, 'received', '', '308.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 (2554, '2021-11-20 15:16:31', 2607, NULL, NULL, 'IPAY2021/11/2553', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 21, 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 (2555, '2021-11-20 15:22:26', 2608, NULL, NULL, 'IPAY2021/11/2554', NULL, 'cash', '', '', '', '', '', '', '242.9400', NULL, 8, NULL, 'received', '', '242.9400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2556, '2021-11-20 16:06:09', 2609, NULL, NULL, 'IPAY2021/11/2555', NULL, 'cash', '', '', '', '', '', '', '183.5000', NULL, 8, NULL, 'received', '', '183.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2557, '2021-11-20 17:12:57', 2610, NULL, NULL, 'IPAY2021/11/2556', 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 (2558, '2021-11-20 17:38:55', 2611, NULL, NULL, 'IPAY2021/11/2557', NULL, 'cash', '', '', '', '', '', '', '45.6000', NULL, 11, NULL, 'received', '', '45.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 (2559, '2021-11-20 18:35:20', 2612, NULL, NULL, 'IPAY2021/11/2558', NULL, 'cash', '', '', '', '', '', '', '598.3000', NULL, 16, NULL, 'received', '', '598.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 (2560, '2021-11-20 19:25:50', 2613, NULL, NULL, 'IPAY2021/11/2559', NULL, 'cash', '', '', '', '', '', '', '129.3000', NULL, 11, NULL, 'received', '', '129.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 (2561, '2021-11-20 19:52:36', 2614, NULL, NULL, 'IPAY2021/11/2560', NULL, 'cash', '', '', '', '', '', '', '37.7000', NULL, 11, NULL, 'received', '', '37.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 (2562, '2021-11-20 20:23:37', 2615, NULL, NULL, 'IPAY2021/11/2561', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 11, 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 (2563, '2021-11-20 20:45:50', 2616, NULL, NULL, 'IPAY2021/11/2562', NULL, 'cash', '', '', '', '', '', '', '241.2400', NULL, 22, NULL, 'received', '', '241.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2564, '2021-11-20 21:07:13', 2617, NULL, NULL, 'IPAY2021/11/2563', NULL, 'cash', '', '', '', '', '', '', '466.6000', NULL, 16, NULL, 'received', '', '466.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 (2565, '2021-11-20 21:23:04', 2618, NULL, NULL, 'IPAY2021/11/2564', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 16, 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 (2566, '2021-11-20 21:27:31', 2619, NULL, NULL, 'IPAY2021/11/2565', NULL, 'cash', '', '', '', '', '', '', '54.7000', NULL, 11, NULL, 'received', '', '54.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 (2567, '2021-11-20 21:29:04', 2620, NULL, NULL, 'IPAY2021/11/2566', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 16, 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 (2568, '2021-11-20 21:31:25', 2621, NULL, NULL, 'IPAY2021/11/2567', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 22, 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 (2569, '2021-11-20 21:48:33', 2622, NULL, NULL, 'IPAY2021/11/2568', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 22, 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 (2570, '2021-11-20 21:49:02', 2623, NULL, NULL, 'IPAY2021/11/2569', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 22, 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 (2571, '2021-11-20 21:53:30', 2624, NULL, NULL, 'IPAY2021/11/2570', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 22, 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 (2572, '2021-11-20 21:56:26', 2625, NULL, NULL, 'IPAY2021/11/2571', 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 (2573, '2021-11-21 15:17:34', 2626, NULL, NULL, 'IPAY2021/11/2572', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 11, 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 (2574, '2021-11-21 15:27:49', 2627, NULL, NULL, 'IPAY2021/11/2573', NULL, 'cash', '', '', '', '', '', '', '26.6000', NULL, 11, NULL, 'received', '', '26.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 (2575, '2021-11-21 20:54:08', 2628, NULL, NULL, 'IPAY2021/11/2574', NULL, 'cash', '', '', '', '', '', '', '560.9000', NULL, 11, NULL, 'received', '', '560.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 (2576, '2021-11-21 21:22:24', 2629, NULL, NULL, 'IPAY2021/11/2575', 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 (2577, '2021-11-21 21:31:37', 2630, NULL, NULL, 'IPAY2021/11/2576', NULL, 'cash', '', '', '', '', '', '', '378.7000', NULL, 17, NULL, 'received', '', '378.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 (2578, '2021-11-21 21:33:58', 2631, NULL, NULL, 'IPAY2021/11/2577', NULL, 'cash', '', '', '', '', '', '', '804.2000', NULL, 8, NULL, 'received', '', '804.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 (2579, '2021-11-21 21:46:22', 2632, NULL, NULL, 'IPAY2021/11/2578', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 11, 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 (2580, '2021-11-21 21:53:01', 2633, NULL, NULL, 'IPAY2021/11/2579', NULL, 'cash', '', '', '', '', '', '', '66.5000', NULL, 8, 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 (2581, '2021-11-22 14:11:50', 2634, NULL, NULL, 'IPAY2021/11/2580', 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 (2582, '2021-11-22 14:35:33', 2635, NULL, NULL, 'IPAY2021/11/2581', NULL, 'cash', '', '', '', '', '', '', '107.1000', NULL, 21, NULL, 'received', '', '107.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 (2583, '2021-11-22 15:10:57', 2636, NULL, NULL, 'IPAY2021/11/2582', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 8, 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 (2584, '2021-11-22 15:21:13', 2637, NULL, NULL, 'IPAY2021/11/2583', NULL, 'cash', '', '', '', '', '', '', '419.6000', NULL, 17, NULL, 'received', '', '419.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 (2585, '2021-11-22 16:25:23', 2638, NULL, NULL, 'IPAY2021/11/2584', NULL, 'cash', '', '', '', '', '', '', '765.1000', NULL, 22, NULL, 'received', '', '765.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 (2586, '2021-11-22 19:18:57', 2639, NULL, NULL, 'IPAY2021/11/2585', NULL, 'cash', '', '', '', '', '', '', '189.1000', NULL, 15, NULL, 'received', '', '189.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 (2587, '2021-11-22 20:15:29', 2640, NULL, NULL, 'IPAY2021/11/2586', NULL, 'cash', '', '', '', '', '', '', '43.2000', NULL, 15, NULL, 'received', '', '43.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 (2588, '2021-11-22 20:42:54', 2641, NULL, NULL, 'IPAY2021/11/2587', NULL, 'cash', '', '', '', '', '', '', '321.3000', NULL, 22, NULL, 'received', '', '321.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 (2589, '2021-11-22 20:57:49', 2642, NULL, NULL, 'IPAY2021/11/2588', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 15, 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 (2590, '2021-11-22 21:02:12', 2643, NULL, NULL, 'IPAY2021/11/2589', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 15, 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 (2591, '2021-11-22 21:26:34', 2644, NULL, NULL, 'IPAY2021/11/2590', NULL, 'cash', '', '', '', '', '', '', '133.5000', NULL, 22, 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 (2592, '2021-11-22 21:31:00', 2645, NULL, NULL, 'IPAY2021/11/2591', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 15, 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 (2593, '2021-11-22 21:33:49', 2646, NULL, NULL, 'IPAY2021/11/2592', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (2594, '2021-11-22 21:39:13', 2647, NULL, NULL, 'IPAY2021/11/2593', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 22, 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 (2595, '2021-11-22 21:41:49', 2648, NULL, NULL, 'IPAY2021/11/2594', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 15, 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 (2596, '2021-11-22 21:51:46', 2649, NULL, NULL, 'IPAY2021/11/2595', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 22, 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 (2597, '2021-11-22 22:02:15', 2650, NULL, NULL, 'IPAY2021/11/2596', NULL, 'cash', '', '', '', '', '', '', '722.9000', NULL, 17, NULL, 'received', '', '722.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 (2598, '2021-11-23 13:34:58', 2651, NULL, NULL, 'IPAY2021/11/2597', NULL, 'cash', '', '', '', '', '', '', '183.5600', NULL, 15, NULL, 'received', '', '183.5600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2599, '2021-11-23 13:39:21', 2652, NULL, NULL, 'IPAY2021/11/2598', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 15, 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 (2600, '2021-11-23 13:45:37', 2653, NULL, NULL, 'IPAY2021/11/2599', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 15, 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 (2601, '2021-11-23 14:11:46', 2654, NULL, NULL, 'IPAY2021/11/2600', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (2602, '2021-11-23 14:12:19', 2655, NULL, NULL, 'IPAY2021/11/2601', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 15, 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 (2603, '2021-11-23 14:51:33', 2656, NULL, NULL, 'IPAY2021/11/2602', NULL, 'cash', '', '', '', '', '', '', '99.4000', NULL, 8, NULL, 'received', '', '99.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 (2604, '2021-11-23 14:52:34', 2657, NULL, NULL, 'IPAY2021/11/2603', 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 (2605, '2021-11-23 15:02:23', 2658, NULL, NULL, 'IPAY2021/11/2604', NULL, 'cash', '', '', '', '', '', '', '137.5000', NULL, 8, 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 (2606, '2021-11-23 16:42:38', 2659, NULL, NULL, 'IPAY2021/11/2605', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (2607, '2021-11-23 19:37:42', 2660, NULL, NULL, 'IPAY2021/11/2606', NULL, 'cash', '', '', '', '', '', '', '1233.1000', NULL, 16, NULL, 'received', '', '1233.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 (2608, '2021-11-23 20:37:56', 2661, NULL, NULL, 'IPAY2021/11/2607', NULL, 'cash', '', '', '', '', '', '', '429.6000', NULL, 11, NULL, 'received', '', '429.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 (2609, '2021-11-23 21:34:43', 2662, NULL, NULL, 'IPAY2021/11/2608', NULL, 'cash', '', '', '', '', '', '', '388.1000', NULL, 16, NULL, 'received', '', '388.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 (2610, '2021-11-23 21:43:38', 2663, NULL, NULL, 'IPAY2021/11/2609', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 16, 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 (2611, '2021-11-23 22:08:40', 2664, NULL, NULL, 'IPAY2021/11/2610', NULL, 'cash', '', '', '', '', '', '', '1546.3000', NULL, 8, NULL, 'received', '', '1546.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 (2612, '2021-11-23 22:30:41', 2665, NULL, NULL, 'IPAY2021/11/2611', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 8, 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 (2613, '2021-11-24 06:39:33', 2666, NULL, NULL, 'IPAY2021/11/2612', 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 (2614, '2021-11-24 08:13:18', 2667, NULL, NULL, 'IPAY2021/11/2613', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 3, 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 (2615, '2021-11-24 08:18:17', 2668, NULL, NULL, 'IPAY2021/11/2614', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 3, 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 (2616, '2021-11-24 14:45:47', 2669, NULL, NULL, 'IPAY2021/11/2615', NULL, 'cash', '', '', '', '', '', '', '376.1000', NULL, 8, NULL, 'received', '', '376.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 (2617, '2021-11-24 16:14:52', 2670, NULL, NULL, 'IPAY2021/11/2616', 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 (2618, '2021-11-24 16:28:50', 2671, NULL, NULL, 'IPAY2021/11/2617', NULL, 'cash', '', '', '', '', '', '', '442.1000', NULL, 11, NULL, 'received', '', '442.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 (2619, '2021-11-24 16:30:56', 2672, NULL, NULL, 'IPAY2021/11/2618', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 11, 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 (2620, '2021-11-24 16:41:14', 2673, NULL, NULL, 'IPAY2021/11/2619', 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 (2621, '2021-11-24 16:59:17', 2674, NULL, NULL, 'IPAY2021/11/2620', 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 (2622, '2021-11-24 18:16:42', 2675, NULL, NULL, 'IPAY2021/11/2621', 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 (2623, '2021-11-24 19:19:53', 2676, NULL, NULL, 'IPAY2021/11/2622', NULL, 'cash', '', '', '', '', '', '', '270.5000', NULL, 11, NULL, 'received', '', '270.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2624, '2021-11-24 19:21:20', 2677, NULL, NULL, 'IPAY2021/11/2623', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 11, 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 (2625, '2021-11-24 19:37:49', 2678, NULL, NULL, 'IPAY2021/11/2624', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 11, 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 (2626, '2021-11-24 19:41:35', 2679, NULL, NULL, 'IPAY2021/11/2625', 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 (2627, '2021-11-24 20:14:04', 2680, NULL, NULL, 'IPAY2021/11/2626', NULL, 'cash', '', '', '', '', '', '', '887.0400', NULL, 22, NULL, 'received', '', '887.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 (2628, '2021-11-24 20:45:24', 2681, NULL, NULL, 'IPAY2021/11/2627', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 11, 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 (2629, '2021-11-24 20:55:32', 2682, NULL, NULL, 'IPAY2021/11/2628', 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 (2630, '2021-11-24 20:58:46', 2683, NULL, NULL, 'IPAY2021/11/2629', 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 (2631, '2021-11-24 21:01:28', 2684, NULL, NULL, 'IPAY2021/11/2630', 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 (2632, '2021-11-24 21:09:03', 2685, NULL, NULL, 'IPAY2021/11/2631', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 11, 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 (2633, '2021-11-24 21:09:46', 2686, NULL, NULL, 'IPAY2021/11/2632', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 11, 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 (2634, '2021-11-24 21:09:51', 2687, NULL, NULL, 'IPAY2021/11/2633', NULL, 'cash', '', '', '', '', '', '', '719.9000', NULL, 16, NULL, 'received', '', '719.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 (2635, '2021-11-24 21:25:57', 2688, NULL, NULL, 'IPAY2021/11/2634', 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 (2636, '2021-11-24 21:35:39', 2689, NULL, NULL, 'IPAY2021/11/2635', NULL, 'cash', '', '', '', '', '', '', '368.5000', NULL, 22, NULL, 'received', '', '368.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2637, '2021-11-24 21:40:53', 2690, NULL, NULL, 'IPAY2021/11/2636', 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 (2638, '2021-11-24 21:41:55', 2691, NULL, NULL, 'IPAY2021/11/2637', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 22, 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 (2639, '2021-11-24 21:42:37', 2692, NULL, NULL, 'IPAY2021/11/2638', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 16, 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 (2640, '2021-11-24 21:45:27', 2693, NULL, NULL, 'IPAY2021/11/2639', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (2641, '2021-11-24 21:50:12', 2694, NULL, NULL, 'IPAY2021/11/2640', 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 (2642, '2021-11-24 21:56:18', 2695, NULL, NULL, 'IPAY2021/11/2641', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 22, 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 (2643, '2021-11-24 21:59:21', 2696, NULL, NULL, 'IPAY2021/11/2642', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 11, 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 (2644, '2021-11-24 22:02:06', 2697, NULL, NULL, 'IPAY2021/11/2643', 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 (2645, '2021-11-24 22:07:23', 2698, NULL, NULL, 'IPAY2021/11/2644', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 22, 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 (2646, '2021-11-24 22:13:19', 2699, NULL, NULL, 'IPAY2021/11/2645', 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 (2647, '2021-11-25 08:00:00', 2700, NULL, NULL, 'IPAY2021/11/2646', 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 (2648, '2021-11-25 15:29:20', 2701, NULL, NULL, 'IPAY2021/11/2647', NULL, 'cash', '', '', '', '', '', '', '259.0000', NULL, 21, NULL, 'received', '', '259.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2649, '2021-11-25 19:29:12', 2702, NULL, NULL, 'IPAY2021/11/2648', NULL, 'cash', '', '', '', '', '', '', '229.4000', NULL, 15, NULL, 'received', '', '229.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 (2650, '2021-11-25 20:17:51', 2703, NULL, NULL, 'IPAY2021/11/2649', NULL, 'cash', '', '', '', '', '', '', '122.1000', NULL, 15, NULL, 'received', '', '122.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 (2651, '2021-11-25 20:47:16', 2704, NULL, NULL, 'IPAY2021/11/2650', NULL, 'cash', '', '', '', '', '', '', '247.8000', NULL, 8, NULL, 'received', '', '247.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 (2652, '2021-11-25 21:02:06', 2705, NULL, NULL, 'IPAY2021/11/2651', NULL, 'cash', '', '', '', '', '', '', '73.4000', NULL, 15, NULL, 'received', '', '73.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 (2653, '2021-11-25 21:05:26', 2706, NULL, NULL, 'IPAY2021/11/2652', NULL, 'cash', '', '', '', '', '', '', '545.3000', NULL, 16, NULL, 'received', '', '545.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 (2654, '2021-11-25 21:14:16', 2707, NULL, NULL, 'IPAY2021/11/2653', NULL, 'cash', '', '', '', '', '', '', '19.6000', NULL, 15, NULL, 'received', '', '19.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 (2655, '2021-11-25 21:28:48', 2708, NULL, NULL, 'IPAY2021/11/2654', NULL, 'cash', '', '', '', '', '', '', '17.8000', NULL, 15, NULL, 'received', '', '17.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 (2656, '2021-11-25 21:39:37', 2709, NULL, NULL, 'IPAY2021/11/2655', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 16, 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 (2657, '2021-11-25 21:43:30', 2710, NULL, NULL, 'IPAY2021/11/2656', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 15, 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 (2658, '2021-11-25 21:46:17', 2711, NULL, NULL, 'IPAY2021/11/2657', NULL, 'cash', '', '', '', '', '', '', '703.2000', NULL, 8, NULL, 'received', '', '703.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 (2659, '2021-11-25 21:47:20', 2712, NULL, NULL, 'IPAY2021/11/2658', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 8, 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 (2660, '2021-11-25 21:50:34', 2713, NULL, NULL, 'IPAY2021/11/2659', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (2661, '2021-11-26 12:24:30', 2714, NULL, NULL, 'IPAY2021/11/2660', NULL, 'cash', '', '', '', '', '', '', '402.6000', NULL, 7, NULL, 'received', '', '402.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 (2662, '2021-11-26 14:05:11', 2715, NULL, NULL, 'IPAY2021/11/2661', 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 (2663, '2021-11-26 14:10:08', 2716, NULL, NULL, 'IPAY2021/11/2662', 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 (2664, '2021-11-26 14:30:12', 2717, NULL, NULL, 'IPAY2021/11/2663', 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 (2665, '2021-11-26 15:20:58', 2718, NULL, NULL, 'IPAY2021/11/2664', NULL, 'cash', '', '', '', '', '', '', '179.5000', NULL, 23, 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 (2666, '2021-11-26 16:20:02', 2719, NULL, NULL, 'IPAY2021/11/2665', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 11, 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 (2667, '2021-11-26 17:55:48', 2720, NULL, NULL, 'IPAY2021/11/2666', NULL, 'cash', '', '', '', '', '', '', '76.5000', NULL, 11, NULL, 'received', '', '76.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2668, '2021-11-26 19:13:15', 2721, NULL, NULL, 'IPAY2021/11/2667', NULL, 'cash', '', '', '', '', '', '', '168.7000', NULL, 11, NULL, 'received', '', '168.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 (2669, '2021-11-26 19:24:45', 2722, NULL, NULL, 'IPAY2021/11/2668', 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 (2670, '2021-11-26 19:53:25', 2723, NULL, NULL, 'IPAY2021/11/2669', 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 (2671, '2021-11-26 20:19:57', 2724, NULL, NULL, 'IPAY2021/11/2670', 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 (2672, '2021-11-26 20:24:43', 2725, NULL, NULL, 'IPAY2021/11/2671', NULL, 'cash', '', '', '', '', '', '', '884.9800', NULL, 17, NULL, 'received', '', '884.9800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2673, '2021-11-26 20:40:16', 2726, NULL, NULL, 'IPAY2021/11/2672', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 11, 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 (2674, '2021-11-26 21:28:31', 2727, NULL, NULL, 'IPAY2021/11/2673', NULL, 'cash', '', '', '', '', '', '', '116.0000', NULL, 17, 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 (2675, '2021-11-26 21:30:01', 2728, NULL, NULL, 'IPAY2021/11/2674', 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 (2676, '2021-11-26 21:30:24', 2729, NULL, NULL, 'IPAY2021/11/2675', 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 (2677, '2021-11-26 21:39:06', 2730, NULL, NULL, 'IPAY2021/11/2676', 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 (2678, '2021-11-26 21:49:30', 2731, NULL, NULL, 'IPAY2021/11/2677', 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 (2679, '2021-11-26 21:57:57', 2732, NULL, NULL, 'IPAY2021/11/2678', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (2680, '2021-11-26 22:07:46', 2733, NULL, NULL, 'IPAY2021/11/2679', 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 (2681, '2021-11-26 22:08:10', 2734, NULL, NULL, 'IPAY2021/11/2680', NULL, 'cash', '', '', '', '', '', '', '578.6000', NULL, 7, NULL, 'received', '', '578.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 (2682, '2021-11-27 13:07:23', 2735, NULL, NULL, 'IPAY2021/11/2681', NULL, 'cash', '', '', '', '', '', '', '136.8300', NULL, 15, NULL, 'received', '', '136.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 (2683, '2021-11-27 14:05:40', 2736, NULL, NULL, 'IPAY2021/11/2682', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 15, 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 (2684, '2021-11-27 14:53:57', 2737, NULL, NULL, 'IPAY2021/11/2683', NULL, 'cash', '', '', '', '', '', '', '341.5000', NULL, 8, NULL, 'received', '', '341.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2685, '2021-11-27 15:17:02', 2738, NULL, NULL, 'IPAY2021/11/2684', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (2686, '2021-11-27 17:06:34', 2739, NULL, NULL, 'IPAY2021/11/2685', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 22, 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 (2687, '2021-11-27 17:11:47', 2740, NULL, NULL, 'IPAY2021/11/2686', NULL, 'cash', '', '', '', '', '', '', '400.7000', NULL, 11, NULL, 'received', '', '400.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 (2688, '2021-11-27 17:24:08', 2741, NULL, NULL, 'IPAY2021/11/2687', NULL, 'cash', '', '', '', '', '', '', '27.3000', NULL, 11, NULL, 'received', '', '27.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 (2689, '2021-11-27 18:34:23', 2742, NULL, NULL, 'IPAY2021/11/2688', NULL, 'cash', '', '', '', '', '', '', '132.5000', NULL, 11, NULL, 'received', '', '132.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2690, '2021-11-27 19:18:37', 2743, NULL, NULL, 'IPAY2021/11/2689', NULL, 'cash', '', '', '', '', '', '', '1393.3800', NULL, 16, NULL, 'received', '', '1393.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 (2691, '2021-11-27 19:33:00', 2744, NULL, NULL, 'IPAY2021/11/2690', NULL, 'cash', '', '', '', '', '', '', '545.5000', NULL, 22, NULL, 'received', '', '545.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2692, '2021-11-27 20:12:58', 2745, NULL, NULL, 'IPAY2021/11/2691', NULL, 'cash', '', '', '', '', '', '', '154.0000', NULL, 22, NULL, 'received', '', '154.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2693, '2021-11-27 20:29:53', 2746, NULL, NULL, 'IPAY2021/11/2692', NULL, 'cash', '', '', '', '', '', '', '124.0000', NULL, 22, 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 (2694, '2021-11-27 20:42:27', 2747, NULL, NULL, 'IPAY2021/11/2693', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 22, 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 (2695, '2021-11-27 20:49:58', 2748, NULL, NULL, 'IPAY2021/11/2694', NULL, 'cash', '', '', '', '', '', '', '339.5000', NULL, 11, NULL, 'received', '', '339.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2696, '2021-11-27 20:54:28', 2749, NULL, NULL, 'IPAY2021/11/2695', 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 (2697, '2021-11-27 20:59:08', 2750, NULL, NULL, 'IPAY2021/11/2696', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (2698, '2021-11-27 21:08:16', 2751, NULL, NULL, 'IPAY2021/11/2697', NULL, 'cash', '', '', '', '', '', '', '53.6000', NULL, 22, NULL, 'received', '', '53.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 (2699, '2021-11-27 21:22:07', 2752, NULL, NULL, 'IPAY2021/11/2698', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 22, 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 (2700, '2021-11-27 21:23:40', 2753, NULL, NULL, 'IPAY2021/11/2699', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 22, 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 (2701, '2021-11-27 21:36:51', 2754, NULL, NULL, 'IPAY2021/11/2700', NULL, 'cash', '', '', '', '', '', '', '261.4000', NULL, 16, NULL, 'received', '', '261.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 (2702, '2021-11-27 21:55:47', 2755, NULL, NULL, 'IPAY2021/11/2701', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 11, 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 (2703, '2021-11-28 19:20:11', 2756, NULL, NULL, 'IPAY2021/11/2702', NULL, 'cash', '', '', '', '', '', '', '244.5000', NULL, 15, NULL, 'received', '', '244.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2704, '2021-11-28 20:31:01', 2757, NULL, NULL, 'IPAY2021/11/2703', NULL, 'cash', '', '', '', '', '', '', '1129.2000', NULL, 17, NULL, 'received', '', '1129.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 (2705, '2021-11-28 20:41:03', 2758, NULL, NULL, 'IPAY2021/11/2704', NULL, 'cash', '', '', '', '', '', '', '60.3000', NULL, 15, NULL, 'received', '', '60.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 (2706, '2021-11-28 20:45:36', 2759, NULL, NULL, 'IPAY2021/11/2705', NULL, 'cash', '', '', '', '', '', '', '724.8000', NULL, 8, NULL, 'received', '', '724.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 (2707, '2021-11-28 20:52:41', 2760, NULL, NULL, 'IPAY2021/11/2706', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 15, 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 (2708, '2021-11-28 20:59:59', 2761, NULL, NULL, 'IPAY2021/11/2707', NULL, 'cash', '', '', '', '', '', '', '17.4000', NULL, 8, NULL, 'received', '', '17.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 (2709, '2021-11-28 21:04:16', 2762, NULL, NULL, 'IPAY2021/11/2708', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 15, 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 (2710, '2021-11-28 21:15:02', 2763, NULL, NULL, 'IPAY2021/11/2709', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 15, 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 (2711, '2021-11-28 21:23:25', 2764, NULL, NULL, 'IPAY2021/11/2710', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 8, 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 (2712, '2021-11-28 21:32:57', 2765, NULL, NULL, 'IPAY2021/11/2711', NULL, 'cash', '', '', '', '', '', '', '87.5000', NULL, 17, 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 (2713, '2021-11-28 21:37:36', 2766, NULL, NULL, 'IPAY2021/11/2712', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 15, 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 (2714, '2021-11-28 21:38:05', 2767, NULL, NULL, 'IPAY2021/11/2713', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 8, 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 (2715, '2021-11-28 21:47:15', 2768, NULL, NULL, 'IPAY2021/11/2714', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 8, 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 (2716, '2021-11-29 14:09:39', 2769, NULL, NULL, 'IPAY2021/11/2715', NULL, 'cash', '', '', '', '', '', '', '299.0000', NULL, 21, NULL, 'received', '', '299.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2717, '2021-11-29 15:14:29', 2770, NULL, NULL, 'IPAY2021/11/2716', NULL, 'cash', '', '', '', '', '', '', '117.9000', NULL, 8, NULL, 'received', '', '117.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 (2718, '2021-11-29 15:50:28', 2771, NULL, NULL, 'IPAY2021/11/2717', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 21, 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 (2719, '2021-11-29 16:10:07', 2772, NULL, NULL, 'IPAY2021/11/2718', NULL, 'cash', '', '', '', '', '', '', '673.7000', NULL, 17, NULL, 'received', '', '673.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 (2720, '2021-11-29 19:45:20', 2773, NULL, NULL, 'IPAY2021/11/2719', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 22, 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 (2721, '2021-11-29 20:02:31', 2774, NULL, NULL, 'IPAY2021/11/2720', NULL, 'cash', '', '', '', '', '', '', '421.5000', NULL, 15, NULL, 'received', '', '421.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2722, '2021-11-29 20:18:39', 2775, NULL, NULL, 'IPAY2021/11/2721', NULL, 'cash', '', '', '', '', '', '', '42.6000', NULL, 15, NULL, 'received', '', '42.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 (2723, '2021-11-29 21:04:41', 2776, NULL, NULL, 'IPAY2021/11/2722', NULL, 'cash', '', '', '', '', '', '', '243.0000', NULL, 15, NULL, 'received', '', '243.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2724, '2021-11-29 21:18:16', 2777, NULL, NULL, 'IPAY2021/11/2723', NULL, 'cash', '', '', '', '', '', '', '680.4000', NULL, 22, NULL, 'received', '', '680.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 (2725, '2021-11-29 21:18:50', 2778, NULL, NULL, 'IPAY2021/11/2724', NULL, 'cash', '', '', '', '', '', '', '627.6800', NULL, 17, NULL, 'received', '', '627.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 (2726, '2021-11-29 21:38:45', 2779, NULL, NULL, 'IPAY2021/11/2725', NULL, 'cash', '', '', '', '', '', '', '9.3000', NULL, 22, NULL, 'received', '', '9.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 (2727, '2021-11-29 21:49:17', 2780, NULL, NULL, 'IPAY2021/11/2726', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 22, 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 (2728, '2021-11-29 21:49:33', 2781, NULL, NULL, 'IPAY2021/11/2727', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 17, 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 (2729, '2021-11-29 21:53:43', 2782, NULL, NULL, 'IPAY2021/11/2728', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 22, 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 (2730, '2021-11-30 11:22:26', 2783, NULL, NULL, 'IPAY2021/11/2729', NULL, 'cash', '', '', '', '', '', '', '302.5000', NULL, 15, 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 (2731, '2021-11-30 12:44:40', 2784, NULL, NULL, 'IPAY2021/11/2730', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 15, 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 (2732, '2021-11-30 13:52:09', 2785, NULL, NULL, 'IPAY2021/11/2731', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 15, 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 (2733, '2021-11-30 14:44:55', 2786, NULL, NULL, 'IPAY2021/11/2732', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (2734, '2021-11-30 15:20:21', 2787, NULL, NULL, 'IPAY2021/11/2733', 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 (2735, '2021-11-30 16:11:29', 2788, NULL, NULL, 'IPAY2021/11/2734', NULL, 'cash', '', '', '', '', '', '', '206.5000', NULL, 8, 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 (2736, '2021-11-30 16:14:00', 2789, NULL, NULL, 'IPAY2021/11/2735', 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 (2737, '2021-11-30 16:24:00', 2790, NULL, NULL, 'IPAY2021/11/2736', NULL, 'cash', '', '', '', '', '', '', '1.8000', NULL, 11, NULL, 'received', '', '1.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 (2738, '2021-11-30 17:34:30', 2791, NULL, NULL, 'IPAY2021/11/2737', NULL, 'cash', '', '', '', '', '', '', '523.1000', NULL, 16, NULL, 'received', '', '523.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 (2739, '2021-11-30 17:46:53', 2792, NULL, NULL, 'IPAY2021/11/2738', 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 (2740, '2021-11-30 17:55:50', 2793, NULL, NULL, 'IPAY2021/11/2739', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 11, 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 (2741, '2021-11-30 18:48:37', 2794, NULL, NULL, 'IPAY2021/11/2740', NULL, 'cash', '', '', '', '', '', '', '143.6000', NULL, 11, NULL, 'received', '', '143.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 (2742, '2021-11-30 18:57:28', 2795, NULL, NULL, 'IPAY2021/11/2741', 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 (2743, '2021-11-30 18:59:59', 2796, NULL, NULL, 'IPAY2021/11/2742', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (2744, '2021-11-30 19:23:50', 2797, NULL, NULL, 'IPAY2021/11/2743', 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 (2745, '2021-11-30 19:28:04', 2798, NULL, NULL, 'IPAY2021/11/2744', 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 (2746, '2021-11-30 19:41:18', 2799, NULL, NULL, 'IPAY2021/11/2745', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 11, 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 (2747, '2021-11-30 20:24:55', 2800, NULL, NULL, 'IPAY2021/11/2746', NULL, 'cash', '', '', '', '', '', '', '303.1000', NULL, 22, NULL, 'received', '', '303.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 (2748, '2021-11-30 20:25:41', 2801, NULL, NULL, 'IPAY2021/11/2747', NULL, 'cash', '', '', '', '', '', '', '110.6000', NULL, 11, NULL, 'received', '', '110.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 (2749, '2021-11-30 20:30:17', 2802, NULL, NULL, 'IPAY2021/11/2748', NULL, 'cash', '', '', '', '', '', '', '291.0000', NULL, 22, NULL, 'received', '', '291.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2750, '2021-11-30 20:32:07', 2803, NULL, NULL, 'IPAY2021/11/2749', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (2751, '2021-11-30 20:50:12', 2804, NULL, NULL, 'IPAY2021/11/2750', 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 (2752, '2021-11-30 21:12:51', 2805, NULL, NULL, 'IPAY2021/11/2751', 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 (2753, '2021-11-30 21:22:31', 2806, NULL, NULL, 'IPAY2021/11/2752', NULL, 'cash', '', '', '', '', '', '', '675.0000', NULL, 16, NULL, 'received', '', '675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2754, '2021-11-30 21:39:25', 2807, NULL, NULL, 'IPAY2021/11/2753', NULL, 'cash', '', '', '', '', '', '', '74.5000', NULL, 22, 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 (2755, '2021-11-30 21:50:24', 2808, NULL, NULL, 'IPAY2021/11/2754', NULL, 'cash', '', '', '', '', '', '', '101.0000', NULL, 11, 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 (2756, '2021-12-01 15:04:35', 2809, NULL, NULL, 'IPAY2021/12/2755', NULL, 'cash', '', '', '', '', '', '', '239.6000', NULL, 21, NULL, 'received', '', '239.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 (2757, '2021-12-01 15:20:35', 2810, NULL, NULL, 'IPAY2021/12/2756', NULL, 'cash', '', '', '', '', '', '', '202.5000', NULL, 8, NULL, 'received', '', '202.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2758, '2021-12-01 15:21:27', 2811, NULL, NULL, 'IPAY2021/12/2757', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 8, 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 (2759, '2021-12-01 19:09:56', 2812, NULL, NULL, 'IPAY2021/12/2758', NULL, 'cash', '', '', '', '', '', '', '289.8000', NULL, 15, NULL, 'received', '', '289.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 (2760, '2021-12-01 20:07:01', 2813, NULL, NULL, 'IPAY2021/12/2759', NULL, 'cash', '', '', '', '', '', '', '1072.4000', NULL, 16, NULL, 'received', '', '1072.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 (2761, '2021-12-01 20:07:52', 2814, NULL, NULL, 'IPAY2021/12/2760', NULL, 'cash', '', '', '', '', '', '', '167.7000', NULL, 15, NULL, 'received', '', '167.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 (2762, '2021-12-01 20:26:37', 2815, NULL, NULL, 'IPAY2021/12/2761', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 15, NULL, 'received', '', '45.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2763, '2021-12-01 20:26:46', 2816, NULL, NULL, 'IPAY2021/12/2762', NULL, 'cash', '', '', '', '', '', '', '686.5000', NULL, 22, NULL, 'received', '', '686.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2764, '2021-12-01 20:32:52', 2817, NULL, NULL, 'IPAY2021/12/2763', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 15, 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 (2765, '2021-12-01 21:01:31', 2818, NULL, NULL, 'IPAY2021/12/2764', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 15, 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 (2766, '2021-12-01 21:09:31', 2819, NULL, NULL, 'IPAY2021/12/2765', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 15, 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 (2767, '2021-12-01 21:10:24', 2820, NULL, NULL, 'IPAY2021/12/2766', NULL, 'cash', '', '', '', '', '', '', '184.5000', NULL, 22, NULL, 'received', '', '184.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2768, '2021-12-01 21:12:33', 2821, NULL, NULL, 'IPAY2021/12/2767', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 16, 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 (2769, '2021-12-01 21:32:57', 2822, NULL, NULL, 'IPAY2021/12/2768', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 22, 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 (2770, '2021-12-01 21:39:51', 2823, NULL, NULL, 'IPAY2021/12/2769', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 16, 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 (2771, '2021-12-01 21:42:48', 2824, NULL, NULL, 'IPAY2021/12/2770', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 15, 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 (2772, '2021-12-01 21:43:11', 2825, NULL, NULL, 'IPAY2021/12/2771', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 16, 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 (2773, '2021-12-01 21:45:55', 2826, NULL, NULL, 'IPAY2021/12/2772', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 15, 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 (2774, '2021-12-01 21:53:15', 2827, NULL, NULL, 'IPAY2021/12/2773', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 22, 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 (2775, '2021-12-01 21:55:36', 2828, NULL, NULL, 'IPAY2021/12/2774', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 22, 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 (2776, '2021-12-01 22:01:52', 2829, NULL, NULL, 'IPAY2021/12/2775', NULL, 'cash', '', '', '', '', '', '', '17.7000', NULL, 22, NULL, 'received', '', '17.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 (2777, '2021-12-01 22:11:46', 2830, NULL, NULL, 'IPAY2021/12/2776', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 22, 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 (2778, '2021-12-01 22:18:26', 2831, NULL, NULL, 'IPAY2021/12/2777', NULL, 'cash', '', '', '', '', '', '', '60.5000', NULL, 22, NULL, 'received', '', '60.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2779, '2021-12-01 22:31:19', 2832, NULL, NULL, 'IPAY2021/12/2778', NULL, 'cash', '', '', '', '', '', '', '215.5000', NULL, 22, NULL, 'received', '', '215.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2780, '2021-12-01 22:34:13', 2833, NULL, NULL, 'IPAY2021/12/2779', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 22, 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 (2781, '2021-12-02 13:39:04', 2834, NULL, NULL, 'IPAY2021/12/2780', NULL, 'cash', '', '', '', '', '', '', '274.0000', NULL, 8, NULL, 'received', '', '274.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2782, '2021-12-02 13:43:52', 2835, NULL, NULL, 'IPAY2021/12/2781', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (2783, '2021-12-02 14:09:42', 2836, NULL, NULL, 'IPAY2021/12/2782', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 8, 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 (2784, '2021-12-02 14:27:12', 2837, NULL, NULL, 'IPAY2021/12/2783', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (2785, '2021-12-02 15:57:27', 2838, NULL, NULL, 'IPAY2021/12/2784', NULL, 'cash', '', '', '', '', '', '', '208.5000', NULL, 21, 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 (2786, '2021-12-02 20:09:15', 2839, NULL, NULL, 'IPAY2021/12/2785', NULL, 'cash', '', '', '', '', '', '', '1265.0000', NULL, 17, NULL, 'received', '', '1265.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2787, '2021-12-02 20:31:36', 2840, NULL, NULL, 'IPAY2021/12/2786', NULL, 'cash', '', '', '', '', '', '', '268.2000', NULL, 11, NULL, 'received', '', '268.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 (2788, '2021-12-02 21:03:18', 2841, NULL, NULL, 'IPAY2021/12/2787', 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 (2789, '2021-12-02 21:07:27', 2842, NULL, NULL, 'IPAY2021/12/2788', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 11, 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 (2790, '2021-12-02 21:33:07', 2843, NULL, NULL, 'IPAY2021/12/2789', NULL, 'cash', '', '', '', '', '', '', '565.8000', NULL, 22, NULL, 'received', '', '565.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 (2791, '2021-12-02 21:33:32', 2844, NULL, NULL, 'IPAY2021/12/2790', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 11, 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 (2792, '2021-12-02 21:39:13', 2845, NULL, NULL, 'IPAY2021/12/2791', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 22, 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 (2793, '2021-12-02 21:42:10', 2846, NULL, NULL, 'IPAY2021/12/2792', NULL, 'cash', '', '', '', '', '', '', '86.8000', NULL, 17, NULL, 'received', '', '86.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 (2794, '2021-12-02 21:48:07', 2847, NULL, NULL, 'IPAY2021/12/2793', NULL, 'cash', '', '', '', '', '', '', '65.8000', NULL, 17, NULL, 'received', '', '65.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 (2795, '2021-12-02 21:48:45', 2848, NULL, NULL, 'IPAY2021/12/2794', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 17, 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 (2796, '2021-12-02 21:56:07', 2849, NULL, NULL, 'IPAY2021/12/2795', NULL, 'cash', '', '', '', '', '', '', '320.0000', NULL, 22, NULL, 'received', '', '320.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2797, '2021-12-02 22:04:02', 2850, NULL, NULL, 'IPAY2021/12/2796', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 22, 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 (2798, '2021-12-02 22:09:37', 2851, NULL, NULL, 'IPAY2021/12/2797', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 22, 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 (2799, '2021-12-03 15:10:33', 2852, NULL, NULL, 'IPAY2021/12/2798', NULL, 'cash', '', '', '', '', '', '', '135.0000', NULL, 21, 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 (2800, '2021-12-03 19:14:31', 2853, NULL, NULL, 'IPAY2021/12/2799', NULL, 'cash', '', '', '', '', '', '', '222.5000', NULL, 11, NULL, 'received', '', '222.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2801, '2021-12-03 19:19:35', 2854, NULL, NULL, 'IPAY2021/12/2800', 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 (2802, '2021-12-03 19:38:20', 2855, NULL, NULL, 'IPAY2021/12/2801', NULL, 'cash', '', '', '', '', '', '', '854.7000', NULL, 16, NULL, 'received', '', '854.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 (2803, '2021-12-03 21:28:04', 2856, NULL, NULL, 'IPAY2021/12/2802', NULL, 'cash', '', '', '', '', '', '', '102.9000', NULL, 16, NULL, 'received', '', '102.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 (2804, '2021-12-03 21:37:46', 2857, NULL, NULL, 'IPAY2021/12/2803', NULL, 'cash', '', '', '', '', '', '', '249.5000', NULL, 11, NULL, 'received', '', '249.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2805, '2021-12-03 21:42:50', 2858, NULL, NULL, 'IPAY2021/12/2804', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 16, 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 (2806, '2021-12-03 21:53:34', 2859, NULL, NULL, 'IPAY2021/12/2805', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (2807, '2021-12-03 22:31:48', 2860, NULL, NULL, 'IPAY2021/12/2806', 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 (2808, '2021-12-04 11:28:00', 2861, NULL, NULL, 'IPAY2021/12/2807', NULL, 'cash', '', '', '', '', '', '', '371.5000', NULL, 8, NULL, 'received', '', '371.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2809, '2021-12-04 13:46:21', 2862, NULL, NULL, 'IPAY2021/12/2808', NULL, 'cash', '', '', '', '', '', '', '697.5700', NULL, 8, NULL, 'received', '', '697.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 (2810, '2021-12-04 13:57:46', 2863, NULL, NULL, 'IPAY2021/12/2809', NULL, 'cash', '', '', '', '', '', '', '278.5000', NULL, 8, NULL, 'received', '', '278.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2811, '2021-12-04 14:01:08', 2864, NULL, NULL, 'IPAY2021/12/2810', NULL, 'cash', '', '', '', '', '', '', '239.5000', NULL, 15, NULL, 'received', '', '239.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2812, '2021-12-04 14:34:19', 2865, NULL, NULL, 'IPAY2021/12/2811', NULL, 'cash', '', '', '', '', '', '', '43.0000', NULL, 15, 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 (2813, '2021-12-04 14:45:55', 2866, NULL, NULL, 'IPAY2021/12/2812', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 15, 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 (2814, '2021-12-04 14:54:41', 2867, NULL, NULL, 'IPAY2021/12/2813', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 15, 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 (2815, '2021-12-04 15:14:55', 2868, NULL, NULL, 'IPAY2021/12/2814', NULL, 'cash', '', '', '', '', '', '', '109.5000', NULL, 8, 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 (2816, '2021-12-04 15:21:31', 2869, NULL, NULL, 'IPAY2021/12/2815', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 8, 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 (2817, '2021-12-04 15:35:04', 2870, NULL, NULL, 'IPAY2021/12/2816', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 8, 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 (2818, '2021-12-04 15:55:59', 2871, NULL, NULL, 'IPAY2021/12/2817', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (2819, '2021-12-04 15:58:37', 2872, NULL, NULL, 'IPAY2021/12/2818', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 8, 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 (2820, '2021-12-04 18:21:27', 2873, NULL, NULL, 'IPAY2021/12/2819', NULL, 'cash', '', '', '', '', '', '', '462.1000', NULL, 16, NULL, 'received', '', '462.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 (2821, '2021-12-04 18:35:22', 2874, NULL, NULL, 'IPAY2021/12/2820', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 22, 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 (2822, '2021-12-04 19:32:18', 2875, NULL, NULL, 'IPAY2021/12/2821', NULL, 'cash', '', '', '', '', '', '', '165.7000', NULL, 11, NULL, 'received', '', '165.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 (2823, '2021-12-04 20:35:16', 2876, NULL, NULL, 'IPAY2021/12/2822', NULL, 'cash', '', '', '', '', '', '', '207.1000', NULL, 11, NULL, 'received', '', '207.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 (2824, '2021-12-04 21:06:27', 2877, NULL, NULL, 'IPAY2021/12/2823', NULL, 'cash', '', '', '', '', '', '', '783.6000', NULL, 16, NULL, 'received', '', '783.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 (2825, '2021-12-04 21:30:06', 2878, NULL, NULL, 'IPAY2021/12/2824', NULL, 'cash', '', '', '', '', '', '', '69.5000', NULL, 11, NULL, 'received', '', '69.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2826, '2021-12-04 21:41:20', 2879, NULL, NULL, 'IPAY2021/12/2825', NULL, 'cash', '', '', '', '', '', '', '29.6000', NULL, 16, NULL, 'received', '', '29.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 (2827, '2021-12-04 21:47:09', 2880, NULL, NULL, 'IPAY2021/12/2826', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 16, 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 (2828, '2021-12-04 21:56:52', 2881, NULL, NULL, 'IPAY2021/12/2827', NULL, 'cash', '', '', '', '', '', '', '577.9000', NULL, 22, NULL, 'received', '', '577.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 (2829, '2021-12-04 22:03:02', 2882, NULL, NULL, 'IPAY2021/12/2828', 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 (2830, '2021-12-05 14:45:18', 2883, NULL, NULL, 'IPAY2021/12/2829', NULL, 'cash', '', '', '', '', '', '', '239.0000', NULL, 25, 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 (2831, '2021-12-05 18:03:26', 2884, NULL, NULL, 'IPAY2021/12/2830', NULL, 'cash', '', '', '', '', '', '', '146.5000', NULL, 11, NULL, 'received', '', '146.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2832, '2021-12-05 19:01:59', 2885, NULL, NULL, 'IPAY2021/12/2831', NULL, 'cash', '', '', '', '', '', '', '93.4000', NULL, 11, NULL, 'received', '', '93.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 (2833, '2021-12-05 19:06:10', 2886, NULL, NULL, 'IPAY2021/12/2832', NULL, 'cash', '', '', '', '', '', '', '36.7000', NULL, 11, NULL, 'received', '', '36.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 (2834, '2021-12-05 19:33:46', 2887, NULL, NULL, 'IPAY2021/12/2833', NULL, 'cash', '', '', '', '', '', '', '742.0000', NULL, 16, NULL, 'received', '', '742.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2835, '2021-12-05 20:07:42', 2888, NULL, NULL, 'IPAY2021/12/2834', NULL, 'cash', '', '', '', '', '', '', '80.6000', NULL, 11, NULL, 'received', '', '80.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 (2836, '2021-12-05 20:15:20', 2889, NULL, NULL, 'IPAY2021/12/2835', NULL, 'cash', '', '', '', '', '', '', '21.1000', NULL, 11, NULL, 'received', '', '21.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 (2837, '2021-12-05 20:17:41', 2890, NULL, NULL, 'IPAY2021/12/2836', NULL, 'cash', '', '', '', '', '', '', '486.0000', NULL, 8, NULL, 'received', '', '486.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2838, '2021-12-05 20:46:07', 2891, NULL, NULL, 'IPAY2021/12/2837', NULL, 'cash', '', '', '', '', '', '', '273.5300', NULL, 16, NULL, 'received', '', '273.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2839, '2021-12-05 20:58:52', 2892, NULL, NULL, 'IPAY2021/12/2838', NULL, 'cash', '', '', '', '', '', '', '458.5000', NULL, 8, NULL, 'received', '', '458.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2840, '2021-12-05 21:36:08', 2893, NULL, NULL, 'IPAY2021/12/2839', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 16, 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 (2841, '2021-12-05 21:42:53', 2894, NULL, NULL, 'IPAY2021/12/2840', 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 (2842, '2021-12-05 21:57:49', 2895, NULL, NULL, 'IPAY2021/12/2841', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 11, 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 (2843, '2021-12-05 22:04:28', 2896, NULL, NULL, 'IPAY2021/12/2842', NULL, 'cash', '', '', '', '', '', '', '116.5000', NULL, 8, 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 (2844, '2021-12-06 14:42:46', 2897, NULL, NULL, 'IPAY2021/12/2843', NULL, 'cash', '', '', '', '', '', '', '625.5000', NULL, 21, NULL, 'received', '', '625.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2845, '2021-12-06 15:02:29', 2898, NULL, NULL, 'IPAY2021/12/2844', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 21, 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 (2846, '2021-12-06 15:13:43', 2899, NULL, NULL, 'IPAY2021/12/2845', NULL, 'cash', '', '', '', '', '', '', '354.5000', NULL, 8, NULL, 'received', '', '354.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2847, '2021-12-06 17:14:21', 2900, NULL, NULL, 'IPAY2021/12/2846', NULL, 'cash', '', '', '', '', '', '', '95.5000', NULL, 11, 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 (2848, '2021-12-06 17:59:34', 2901, NULL, NULL, 'IPAY2021/12/2847', NULL, 'cash', '', '', '', '', '', '', '116.0000', NULL, 16, 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 (2849, '2021-12-06 18:00:09', 2902, NULL, NULL, 'IPAY2021/12/2848', 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 (2850, '2021-12-06 18:04:39', 2903, NULL, NULL, 'IPAY2021/12/2849', 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 (2851, '2021-12-06 18:22:30', 2904, NULL, NULL, 'IPAY2021/12/2850', NULL, 'cash', '', '', '', '', '', '', '503.7000', NULL, 16, NULL, 'received', '', '503.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 (2852, '2021-12-06 18:37:41', 2905, NULL, NULL, 'IPAY2021/12/2851', 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 (2853, '2021-12-06 18:51:50', 2906, NULL, NULL, 'IPAY2021/12/2852', 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 (2854, '2021-12-06 19:09:18', 2907, NULL, NULL, 'IPAY2021/12/2853', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (2855, '2021-12-06 19:15:08', 2908, NULL, NULL, 'IPAY2021/12/2854', 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 (2856, '2021-12-06 19:33:56', 2909, NULL, NULL, 'IPAY2021/12/2855', 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 (2857, '2021-12-06 19:41:08', 2910, NULL, NULL, 'IPAY2021/12/2856', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (2858, '2021-12-06 19:51:13', 2911, NULL, NULL, 'IPAY2021/12/2857', 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 (2859, '2021-12-06 20:36:17', 2912, NULL, NULL, 'IPAY2021/12/2858', 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 (2860, '2021-12-06 20:37:00', 2913, NULL, NULL, 'IPAY2021/12/2859', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 11, 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 (2861, '2021-12-06 21:21:21', 2914, NULL, NULL, 'IPAY2021/12/2860', NULL, 'cash', '', '', '', '', '', '', '872.8900', NULL, 22, NULL, 'received', '', '872.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 (2862, '2021-12-06 21:22:36', 2915, NULL, NULL, 'IPAY2021/12/2861', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 22, 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 (2863, '2021-12-06 21:36:13', 2916, NULL, NULL, 'IPAY2021/12/2862', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 16, 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 (2864, '2021-12-06 21:40:55', 2917, NULL, NULL, 'IPAY2021/12/2863', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 22, 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 (2865, '2021-12-06 21:58:44', 2918, NULL, NULL, 'IPAY2021/12/2864', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 11, 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 (2866, '2021-12-06 21:59:16', 2919, NULL, NULL, 'IPAY2021/12/2865', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 22, 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 (2867, '2021-12-06 22:07:40', 2920, NULL, NULL, 'IPAY2021/12/2866', NULL, 'cash', '', '', '', '', '', '', '59.5000', NULL, 22, 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 (2868, '2021-12-07 14:14:38', 2921, NULL, NULL, 'IPAY2021/12/2867', NULL, 'cash', '', '', '', '', '', '', '89.6000', NULL, 15, NULL, 'received', '', '89.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 (2869, '2021-12-07 14:19:55', 2922, NULL, NULL, 'IPAY2021/12/2868', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 15, 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 (2870, '2021-12-07 14:49:35', 2923, NULL, NULL, 'IPAY2021/12/2869', NULL, 'cash', '', '', '', '', '', '', '295.0000', NULL, 8, NULL, 'received', '', '295.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2871, '2021-12-07 14:51:04', 2924, NULL, NULL, 'IPAY2021/12/2870', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 15, 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 (2872, '2021-12-07 15:02:28', 2925, NULL, NULL, 'IPAY2021/12/2871', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 8, 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 (2873, '2021-12-07 15:03:22', 2926, NULL, NULL, 'IPAY2021/12/2872', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 15, 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 (2874, '2021-12-07 18:40:22', 2927, NULL, NULL, 'IPAY2021/12/2873', NULL, 'cash', '', '', '', '', '', '', '374.0000', NULL, 11, NULL, 'received', '', '374.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2875, '2021-12-07 19:35:45', 2928, NULL, NULL, 'IPAY2021/12/2874', NULL, 'cash', '', '', '', '', '', '', '194.8000', NULL, 11, NULL, 'received', '', '194.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 (2876, '2021-12-07 20:07:51', 2929, NULL, NULL, 'IPAY2021/12/2875', 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 (2877, '2021-12-07 20:35:43', 2930, NULL, NULL, 'IPAY2021/12/2876', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 8, 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 (2878, '2021-12-07 21:14:04', 2931, NULL, NULL, 'IPAY2021/12/2877', NULL, 'cash', '', '', '', '', '', '', '185.6000', NULL, 11, NULL, 'received', '', '185.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 (2879, '2021-12-07 21:36:38', 2932, NULL, NULL, 'IPAY2021/12/2878', NULL, 'cash', '', '', '', '', '', '', '103.0000', NULL, 11, 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 (2880, '2021-12-07 21:43:57', 2933, NULL, NULL, 'IPAY2021/12/2879', NULL, 'cash', '', '', '', '', '', '', '740.3000', NULL, 16, NULL, 'received', '', '740.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 (2881, '2021-12-07 21:46:49', 2934, NULL, NULL, 'IPAY2021/12/2880', 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 (2882, '2021-12-07 22:03:27', 2935, NULL, NULL, 'IPAY2021/12/2881', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 11, 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 (2883, '2021-12-07 22:03:30', 2936, NULL, NULL, 'IPAY2021/12/2882', NULL, 'cash', '', '', '', '', '', '', '722.3000', NULL, 22, NULL, 'received', '', '722.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 (2884, '2021-12-07 22:16:57', 2937, NULL, NULL, 'IPAY2021/12/2883', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 22, 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 (2885, '2021-12-07 22:22:11', 2938, NULL, NULL, 'IPAY2021/12/2884', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 22, 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 (2886, '2021-12-08 01:13:36', 2939, NULL, NULL, 'IPAY2021/12/2885', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 3, 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 (2887, '2021-12-08 01:23:20', 2940, NULL, NULL, 'IPAY2021/12/2886', 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 (2888, '2021-12-08 01:24:33', 2941, NULL, NULL, 'IPAY2021/12/2887', 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 (2889, '2021-12-08 09:04:08', 2942, NULL, NULL, 'IPAY2021/12/2888', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 3, 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 (2890, '2021-12-08 14:25:46', 2943, NULL, NULL, 'IPAY2021/12/2889', NULL, 'cash', '', '', '', '', '', '', '289.6000', NULL, 21, NULL, 'received', '', '289.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 (2891, '2021-12-08 15:16:57', 2944, NULL, NULL, 'IPAY2021/12/2890', NULL, 'cash', '', '', '', '', '', '', '172.0000', NULL, 8, NULL, 'received', '', '172.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2892, '2021-12-08 15:19:58', 2945, NULL, NULL, 'IPAY2021/12/2891', NULL, 'cash', '', '', '', '', '', '', '10.4000', NULL, 21, NULL, 'received', '', '10.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 (2893, '2021-12-08 15:34:57', 2946, NULL, NULL, 'IPAY2021/12/2892', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 8, 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 (2894, '2021-12-08 15:54:40', 2947, NULL, NULL, 'IPAY2021/12/2893', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (2895, '2021-12-08 17:02:41', 2948, NULL, NULL, 'IPAY2021/12/2894', NULL, 'cash', '', '', '', '', '', '', '488.1000', NULL, 16, NULL, 'received', '', '488.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 (2896, '2021-12-08 18:41:36', 2949, NULL, NULL, 'IPAY2021/12/2895', NULL, 'cash', '', '', '', '', '', '', '197.4000', NULL, 15, NULL, 'received', '', '197.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 (2897, '2021-12-08 19:04:05', 2950, NULL, NULL, 'IPAY2021/12/2896', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 15, 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 (2898, '2021-12-08 19:34:29', 2951, NULL, NULL, 'IPAY2021/12/2897', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 15, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2899, '2021-12-08 19:43:54', 2952, NULL, NULL, 'IPAY2021/12/2898', NULL, 'cash', '', '', '', '', '', '', '77.5000', NULL, 15, 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 (2900, '2021-12-08 21:48:23', 2953, NULL, NULL, 'IPAY2021/12/2899', NULL, 'cash', '', '', '', '', '', '', '528.2000', NULL, 16, NULL, 'received', '', '528.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 (2901, '2021-12-08 21:51:17', 2954, NULL, NULL, 'IPAY2021/12/2900', NULL, 'cash', '', '', '', '', '', '', '169.0000', NULL, 15, NULL, 'received', '', '169.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2902, '2021-12-09 13:54:31', 2955, NULL, NULL, 'IPAY2021/12/2901', NULL, 'cash', '', '', '', '', '', '', '1141.0000', NULL, 22, NULL, 'received', '', '1141.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2903, '2021-12-09 14:03:06', 2956, NULL, NULL, 'IPAY2021/12/2902', NULL, 'cash', '', '', '', '', '', '', '184.0000', NULL, 21, NULL, 'received', '', '184.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2904, '2021-12-09 15:20:21', 2957, NULL, NULL, 'IPAY2021/12/2903', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 21, 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 (2905, '2021-12-09 15:24:32', 2958, NULL, NULL, 'IPAY2021/12/2904', 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 (2906, '2021-12-09 15:32:17', 2959, NULL, NULL, 'IPAY2021/12/2905', 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 (2907, '2021-12-09 16:26:45', 2960, NULL, NULL, 'IPAY2021/12/2906', NULL, 'cash', '', '', '', '', '', '', '229.0000', NULL, 8, 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 (2908, '2021-12-09 17:10:30', 2961, NULL, NULL, 'IPAY2021/12/2907', NULL, 'cash', '', '', '', '', '', '', '74.0000', NULL, 8, NULL, 'received', '', '74.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2909, '2021-12-09 21:11:13', 2962, NULL, NULL, 'IPAY2021/12/2908', NULL, 'cash', '', '', '', '', '', '', '655.7000', NULL, 16, NULL, 'received', '', '655.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 (2910, '2021-12-09 21:51:52', 2963, NULL, NULL, 'IPAY2021/12/2909', NULL, 'cash', '', '', '', '', '', '', '764.5000', NULL, 11, NULL, 'received', '', '764.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2911, '2021-12-09 21:58:33', 2964, NULL, NULL, 'IPAY2021/12/2910', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 16, 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 (2912, '2021-12-10 17:51:36', 2965, NULL, NULL, 'IPAY2021/12/2911', NULL, 'cash', '', '', '', '', '', '', '132.0000', NULL, 11, NULL, 'received', '', '132.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2913, '2021-12-10 18:53:59', 2966, NULL, NULL, 'IPAY2021/12/2912', NULL, 'cash', '', '', '', '', '', '', '128.1000', NULL, 11, NULL, 'received', '', '128.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 (2914, '2021-12-10 20:09:40', 2967, NULL, NULL, 'IPAY2021/12/2913', NULL, 'cash', '', '', '', '', '', '', '904.5000', NULL, 22, NULL, 'received', '', '904.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2915, '2021-12-10 20:21:37', 2968, NULL, NULL, 'IPAY2021/12/2914', NULL, 'cash', '', '', '', '', '', '', '132.5000', NULL, 8, NULL, 'received', '', '132.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2916, '2021-12-10 20:51:48', 2969, NULL, NULL, 'IPAY2021/12/2915', NULL, 'cash', '', '', '', '', '', '', '817.1500', NULL, 16, NULL, 'received', '', '817.1500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2917, '2021-12-10 21:48:21', 2970, NULL, NULL, 'IPAY2021/12/2916', NULL, 'cash', '', '', '', '', '', '', '217.2000', NULL, 11, NULL, 'received', '', '217.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 (2918, '2021-12-10 21:48:33', 2971, NULL, NULL, 'IPAY2021/12/2917', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 16, 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 (2919, '2021-12-10 21:50:16', 2972, NULL, NULL, 'IPAY2021/12/2918', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 16, 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 (2920, '2021-12-10 22:07:53', 2973, NULL, NULL, 'IPAY2021/12/2919', NULL, 'cash', '', '', '', '', '', '', '843.5000', NULL, 8, NULL, 'received', '', '843.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2921, '2021-12-10 22:08:54', 2974, NULL, NULL, 'IPAY2021/12/2920', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 8, 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 (2922, '2021-12-10 23:57:10', 2975, NULL, NULL, 'IPAY2021/12/2921', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 3, 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 (2923, '2021-12-11 08:08:00', 2976, NULL, NULL, 'IPAY2021/12/2922', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 21, 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 (2924, '2021-12-11 15:22:23', 2977, NULL, NULL, 'IPAY2021/12/2923', NULL, 'cash', '', '', '', '', '', '', '616.3000', NULL, 17, NULL, 'received', '', '616.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 (2925, '2021-12-11 17:41:56', 2978, NULL, NULL, 'IPAY2021/12/2924', NULL, 'cash', '', '', '', '', '', '', '230.5000', NULL, 11, NULL, 'received', '', '230.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2926, '2021-12-11 17:53:49', 2979, NULL, NULL, 'IPAY2021/12/2925', NULL, 'cash', '', '', '', '', '', '', '682.3400', NULL, 8, NULL, 'received', '', '682.3400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2927, '2021-12-11 18:23:20', 2980, NULL, NULL, 'IPAY2021/12/2926', 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 (2928, '2021-12-11 19:29:17', 2981, NULL, NULL, 'IPAY2021/12/2927', NULL, 'cash', '', '', '', '', '', '', '81.1000', NULL, 11, NULL, 'received', '', '81.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 (2929, '2021-12-11 19:39:52', 2982, NULL, NULL, 'IPAY2021/12/2928', NULL, 'cash', '', '', '', '', '', '', '29.3000', NULL, 11, NULL, 'received', '', '29.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 (2930, '2021-12-11 19:52:58', 2983, NULL, NULL, 'IPAY2021/12/2929', 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 (2931, '2021-12-11 20:26:35', 2984, NULL, NULL, 'IPAY2021/12/2930', NULL, 'cash', '', '', '', '', '', '', '27.6000', NULL, 11, NULL, 'received', '', '27.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 (2932, '2021-12-11 21:08:31', 2985, NULL, NULL, 'IPAY2021/12/2931', 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 (2933, '2021-12-11 21:14:27', 2986, NULL, NULL, 'IPAY2021/12/2932', 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 (2934, '2021-12-11 21:20:38', 2987, NULL, NULL, 'IPAY2021/12/2933', 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 (2935, '2021-12-11 21:37:12', 2988, NULL, NULL, 'IPAY2021/12/2934', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 11, 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 (2936, '2021-12-11 21:43:10', 2989, NULL, NULL, 'IPAY2021/12/2935', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 11, 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 (2937, '2021-12-11 21:55:08', 2990, NULL, NULL, 'IPAY2021/12/2936', NULL, 'cash', '', '', '', '', '', '', '940.1000', NULL, 17, NULL, 'received', '', '940.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 (2938, '2021-12-11 21:58:41', 2991, NULL, NULL, 'IPAY2021/12/2937', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 17, 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 (2939, '2021-12-11 22:00:40', 2992, NULL, NULL, 'IPAY2021/12/2938', NULL, 'cash', '', '', '', '', '', '', '852.4800', NULL, 22, NULL, 'received', '', '852.4800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2940, '2021-12-11 22:04:57', 2993, NULL, NULL, 'IPAY2021/12/2939', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (2941, '2021-12-11 22:36:21', 2994, NULL, NULL, 'IPAY2021/12/2940', NULL, 'cash', '', '', '', '', '', '', '88.5000', NULL, 22, 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 (2942, '2021-12-12 19:05:12', 2995, NULL, NULL, 'IPAY2021/12/2941', NULL, 'cash', '', '', '', '', '', '', '721.3000', NULL, 16, NULL, 'received', '', '721.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 (2943, '2021-12-12 21:35:06', 2996, NULL, NULL, 'IPAY2021/12/2942', NULL, 'cash', '', '', '', '', '', '', '357.7000', NULL, 16, NULL, 'received', '', '357.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 (2944, '2021-12-12 21:51:07', 2997, NULL, NULL, 'IPAY2021/12/2943', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 16, 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 (2945, '2021-12-12 21:54:08', 2998, NULL, NULL, 'IPAY2021/12/2944', NULL, 'cash', '', '', '', '', '', '', '690.6000', NULL, 11, NULL, 'received', '', '690.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 (2946, '2021-12-12 22:00:43', 2999, NULL, NULL, 'IPAY2021/12/2945', NULL, 'cash', '', '', '', '', '', '', '664.4000', NULL, 25, NULL, 'received', '', '664.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 (2947, '2021-12-13 13:01:11', 3000, NULL, NULL, 'IPAY2021/12/2946', NULL, 'cash', '', '', '', '', '', '', '869.0000', NULL, 17, NULL, 'received', '', '869.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2948, '2021-12-13 14:53:10', 3001, NULL, NULL, 'IPAY2021/12/2947', NULL, 'cash', '', '', '', '', '', '', '327.6000', NULL, 21, NULL, 'received', '', '327.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 (2949, '2021-12-13 15:00:00', 3002, NULL, NULL, 'IPAY2021/12/2948', NULL, 'cash', '', '', '', '', '', '', '443.6000', NULL, 8, NULL, 'received', '', '443.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 (2950, '2021-12-13 15:05:50', 3003, NULL, NULL, 'IPAY2021/12/2949', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 8, 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 (2951, '2021-12-13 17:41:36', 3004, NULL, NULL, 'IPAY2021/12/2950', NULL, 'cash', '', '', '', '', '', '', '81.7000', NULL, 11, NULL, 'received', '', '81.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 (2952, '2021-12-13 18:44:28', 3005, NULL, NULL, 'IPAY2021/12/2951', NULL, 'cash', '', '', '', '', '', '', '1147.9800', NULL, 17, NULL, 'received', '', '1147.9800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2953, '2021-12-13 19:24:19', 3006, NULL, NULL, 'IPAY2021/12/2952', NULL, 'cash', '', '', '', '', '', '', '271.1000', NULL, 11, NULL, 'received', '', '271.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 (2954, '2021-12-13 20:19:35', 3007, NULL, NULL, 'IPAY2021/12/2953', NULL, 'cash', '', '', '', '', '', '', '40.1000', NULL, 17, NULL, 'received', '', '40.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 (2955, '2021-12-13 20:39:24', 3008, NULL, NULL, 'IPAY2021/12/2954', NULL, 'cash', '', '', '', '', '', '', '77.7000', NULL, 11, NULL, 'received', '', '77.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 (2956, '2021-12-13 20:51:02', 3009, NULL, NULL, 'IPAY2021/12/2955', 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 (2957, '2021-12-13 20:59:01', 3010, NULL, NULL, 'IPAY2021/12/2956', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (2958, '2021-12-13 21:24:33', 3011, NULL, NULL, 'IPAY2021/12/2957', NULL, 'cash', '', '', '', '', '', '', '507.6000', NULL, 17, NULL, 'received', '', '507.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 (2959, '2021-12-13 21:35:32', 3012, NULL, NULL, 'IPAY2021/12/2958', 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 (2960, '2021-12-13 21:40:05', 3013, NULL, NULL, 'IPAY2021/12/2959', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 17, 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 (2961, '2021-12-13 21:48:29', 3014, NULL, NULL, 'IPAY2021/12/2960', 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 (2962, '2021-12-13 21:49:12', 3015, NULL, NULL, 'IPAY2021/12/2961', NULL, 'cash', '', '', '', '', '', '', '490.5000', NULL, 22, NULL, 'received', '', '490.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2963, '2021-12-13 21:51:16', 3016, NULL, NULL, 'IPAY2021/12/2962', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 22, 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 (2964, '2021-12-13 21:59:25', 3017, NULL, NULL, 'IPAY2021/12/2963', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 22, 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 (2965, '2021-12-14 14:14:31', 3018, NULL, NULL, 'IPAY2021/12/2964', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 23, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2966, '2021-12-14 14:57:31', 3019, NULL, NULL, 'IPAY2021/12/2965', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 23, 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 (2967, '2021-12-14 15:14:39', 3020, NULL, NULL, 'IPAY2021/12/2966', NULL, 'cash', '', '', '', '', '', '', '589.1000', NULL, 8, NULL, 'received', '', '589.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 (2968, '2021-12-14 15:24:04', 3021, NULL, NULL, 'IPAY2021/12/2967', NULL, 'cash', '', '', '', '', '', '', '55.5000', NULL, 11, NULL, 'received', '', '55.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2969, '2021-12-14 16:42:03', 3022, NULL, NULL, 'IPAY2021/12/2968', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (2970, '2021-12-14 16:51:19', 3023, NULL, NULL, 'IPAY2021/12/2969', NULL, 'cash', '', '', '', '', '', '', '95.7000', NULL, 11, NULL, 'received', '', '95.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 (2971, '2021-12-14 18:41:32', 3024, NULL, NULL, 'IPAY2021/12/2970', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 11, 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 (2972, '2021-12-14 19:42:18', 3025, NULL, NULL, 'IPAY2021/12/2971', NULL, 'cash', '', '', '', '', '', '', '34.8000', NULL, 11, NULL, 'received', '', '34.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 (2973, '2021-12-14 19:50:27', 3026, NULL, NULL, 'IPAY2021/12/2972', NULL, 'cash', '', '', '', '', '', '', '952.3000', NULL, 16, NULL, 'received', '', '952.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 (2974, '2021-12-14 21:17:04', 3027, NULL, NULL, 'IPAY2021/12/2973', NULL, 'cash', '', '', '', '', '', '', '146.1000', NULL, 11, NULL, 'received', '', '146.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 (2975, '2021-12-14 21:17:26', 3028, NULL, NULL, 'IPAY2021/12/2974', 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 (2976, '2021-12-14 21:21:06', 3029, NULL, NULL, 'IPAY2021/12/2975', NULL, 'cash', '', '', '', '', '', '', '508.0000', NULL, 16, NULL, 'received', '', '508.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2977, '2021-12-14 21:22:18', 3030, NULL, NULL, 'IPAY2021/12/2976', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 16, 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 (2978, '2021-12-14 21:22:35', 3031, NULL, NULL, 'IPAY2021/12/2977', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 11, 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 (2979, '2021-12-14 21:30:55', 3032, NULL, NULL, 'IPAY2021/12/2978', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 11, 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 (2980, '2021-12-14 21:33:25', 3033, NULL, NULL, 'IPAY2021/12/2979', NULL, 'cash', '', '', '', '', '', '', '1117.1000', NULL, 22, NULL, 'received', '', '1117.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 (2981, '2021-12-14 21:33:53', 3034, NULL, NULL, 'IPAY2021/12/2980', 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 (2982, '2021-12-14 21:34:38', 3035, NULL, NULL, 'IPAY2021/12/2981', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 22, 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 (2983, '2021-12-14 21:38:18', 3036, NULL, NULL, 'IPAY2021/12/2982', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 22, 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 (2984, '2021-12-14 21:39:48', 3037, NULL, NULL, 'IPAY2021/12/2983', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 16, 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 (2985, '2021-12-14 21:45:53', 3038, NULL, NULL, 'IPAY2021/12/2984', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 22, 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 (2986, '2021-12-14 22:01:58', 3039, NULL, NULL, 'IPAY2021/12/2985', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 22, 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 (2987, '2021-12-14 22:02:33', 3040, NULL, NULL, 'IPAY2021/12/2986', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (2988, '2021-12-14 22:03:07', 3041, NULL, NULL, 'IPAY2021/12/2987', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 11, 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 (2989, '2021-12-15 10:17:26', 3042, NULL, NULL, 'IPAY2021/12/2988', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 21, 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 (2990, '2021-12-15 14:54:13', 3043, NULL, NULL, 'IPAY2021/12/2989', NULL, 'cash', '', '', '', '', '', '', '294.0000', NULL, 8, 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 (2991, '2021-12-15 14:55:43', 3044, NULL, NULL, 'IPAY2021/12/2990', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 8, 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 (2992, '2021-12-15 15:06:43', 3045, NULL, NULL, 'IPAY2021/12/2991', NULL, 'cash', '', '', '', '', '', '', '225.5000', NULL, 21, NULL, 'received', '', '225.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2993, '2021-12-15 15:30:12', 3046, NULL, NULL, 'IPAY2021/12/2992', NULL, 'cash', '', '', '', '', '', '', '128.0000', NULL, 8, NULL, 'received', '', '128.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2994, '2021-12-15 15:34:40', 3047, NULL, NULL, 'IPAY2021/12/2993', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 11, 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 (2995, '2021-12-15 15:37:18', 3048, NULL, NULL, 'IPAY2021/12/2994', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 8, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2996, '2021-12-15 17:01:41', 3049, NULL, NULL, 'IPAY2021/12/2995', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 11, 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 (2997, '2021-12-15 18:03:18', 3050, NULL, NULL, 'IPAY2021/12/2996', NULL, 'cash', '', '', '', '', '', '', '81.5500', NULL, 16, NULL, 'received', '', '81.5500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2998, '2021-12-15 18:12:31', 3051, NULL, NULL, 'IPAY2021/12/2997', NULL, 'cash', '', '', '', '', '', '', '344.5000', NULL, 16, NULL, 'received', '', '344.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2999, '2021-12-15 18:23:57', 3052, NULL, NULL, 'IPAY2021/12/2998', NULL, 'cash', '', '', '', '', '', '', '597.7000', NULL, 16, NULL, 'received', '', '597.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 (3000, '2021-12-15 18:50:05', 3053, NULL, NULL, 'IPAY2021/12/2999', 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 (3001, '2021-12-15 19:04:44', 3054, NULL, NULL, 'IPAY2021/12/3000', NULL, 'cash', '', '', '', '', '', '', '109.2000', NULL, 11, NULL, 'received', '', '109.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 (3002, '2021-12-15 20:15:11', 3055, NULL, NULL, 'IPAY2021/12/3001', NULL, 'cash', '', '', '', '', '', '', '217.3000', NULL, 11, NULL, 'received', '', '217.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 (3003, '2021-12-15 21:05:58', 3056, NULL, NULL, 'IPAY2021/12/3002', NULL, 'cash', '', '', '', '', '', '', '364.5700', NULL, 16, NULL, 'received', '', '364.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 (3004, '2021-12-15 21:32:10', 3057, NULL, NULL, 'IPAY2021/12/3003', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 16, 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 (3005, '2021-12-15 21:36:19', 3058, NULL, NULL, 'IPAY2021/12/3004', NULL, 'cash', '', '', '', '', '', '', '81.6000', NULL, 11, NULL, 'received', '', '81.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 (3006, '2021-12-15 21:37:45', 3059, NULL, NULL, 'IPAY2021/12/3005', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 16, 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 (3007, '2021-12-15 21:46:30', 3060, NULL, NULL, 'IPAY2021/12/3006', NULL, 'cash', '', '', '', '', '', '', '842.0000', NULL, 22, NULL, 'received', '', '842.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3008, '2021-12-15 21:48:26', 3061, NULL, NULL, 'IPAY2021/12/3007', 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 (3009, '2021-12-15 21:49:56', 3062, NULL, NULL, 'IPAY2021/12/3008', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 22, 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 (3010, '2021-12-15 21:57:39', 3063, NULL, NULL, 'IPAY2021/12/3009', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 8, 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 (3011, '2021-12-15 21:59:56', 3064, NULL, NULL, 'IPAY2021/12/3010', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 11, 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 (3012, '2021-12-15 22:22:07', 3065, NULL, NULL, 'IPAY2021/12/3011', 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 (3013, '2021-12-16 07:57:45', 3066, NULL, NULL, 'IPAY2021/12/3012', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 3, 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 (3014, '2021-12-16 09:25:44', 3067, NULL, NULL, 'IPAY2021/12/3013', NULL, 'cash', '', '', '', '', '', '', '162.5000', NULL, 8, 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 (3015, '2021-12-16 09:44:36', 3068, NULL, NULL, 'IPAY2021/12/3014', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 8, 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 (3016, '2021-12-16 09:55:48', 3069, NULL, NULL, 'IPAY2021/12/3015', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 8, 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 (3017, '2021-12-16 14:12:39', 3070, NULL, NULL, 'IPAY2021/12/3016', NULL, 'cash', '', '', '', '', '', '', '136.0000', NULL, 8, NULL, 'received', '', '136.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3018, '2021-12-16 14:56:15', 3071, NULL, NULL, 'IPAY2021/12/3017', NULL, 'cash', '', '', '', '', '', '', '198.0000', NULL, 8, NULL, 'received', '', '198.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3019, '2021-12-16 15:03:59', 3072, NULL, NULL, 'IPAY2021/12/3018', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (3020, '2021-12-16 15:13:12', 3073, NULL, NULL, 'IPAY2021/12/3019', NULL, 'cash', '', '', '', '', '', '', '327.8000', NULL, 21, NULL, 'received', '', '327.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 (3021, '2021-12-16 15:13:40', 3074, NULL, NULL, 'IPAY2021/12/3020', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 8, 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 (3022, '2021-12-16 15:45:57', 3075, NULL, NULL, 'IPAY2021/12/3021', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 8, 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 (3023, '2021-12-16 17:50:36', 3076, NULL, NULL, 'IPAY2021/12/3022', NULL, 'cash', '', '', '', '', '', '', '126.6000', NULL, 11, NULL, 'received', '', '126.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 (3024, '2021-12-16 18:29:16', 3077, NULL, NULL, 'IPAY2021/12/3023', NULL, 'cash', '', '', '', '', '', '', '67.6000', NULL, 11, NULL, 'received', '', '67.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 (3025, '2021-12-16 19:31:24', 3078, NULL, NULL, 'IPAY2021/12/3024', NULL, 'cash', '', '', '', '', '', '', '666.5000', NULL, 8, NULL, 'received', '', '666.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3026, '2021-12-16 21:00:32', 3079, NULL, NULL, 'IPAY2021/12/3025', NULL, 'cash', '', '', '', '', '', '', '1551.9000', NULL, 16, NULL, 'received', '', '1551.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 (3027, '2021-12-16 21:28:29', 3080, NULL, NULL, 'IPAY2021/12/3026', NULL, 'cash', '', '', '', '', '', '', '228.9000', NULL, 11, NULL, 'received', '', '228.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 (3028, '2021-12-16 21:32:23', 3081, NULL, NULL, 'IPAY2021/12/3027', NULL, 'cash', '', '', '', '', '', '', '303.5000', NULL, 8, NULL, 'received', '', '303.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3029, '2021-12-16 21:32:55', 3082, NULL, NULL, 'IPAY2021/12/3028', NULL, 'cash', '', '', '', '', '', '', '188.0000', NULL, 16, NULL, 'received', '', '188.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3030, '2021-12-16 21:38:21', 3083, NULL, NULL, 'IPAY2021/12/3029', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (3031, '2021-12-16 21:48:43', 3084, NULL, NULL, 'IPAY2021/12/3030', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 16, 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 (3032, '2021-12-16 21:58:10', 3085, NULL, NULL, 'IPAY2021/12/3031', 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 (3033, '2021-12-16 22:00:24', 3086, NULL, NULL, 'IPAY2021/12/3032', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 16, 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 (3034, '2021-12-17 14:30:31', 3087, NULL, NULL, 'IPAY2021/12/3033', NULL, 'cash', '', '', '', '', '', '', '215.0000', NULL, 21, NULL, 'received', '', '215.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3035, '2021-12-17 14:41:12', 3088, NULL, NULL, 'IPAY2021/12/3034', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 21, 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 (3036, '2021-12-17 14:59:43', 3089, NULL, NULL, 'IPAY2021/12/3035', NULL, 'cash', '', '', '', '', '', '', '340.9000', NULL, 25, NULL, 'received', '', '340.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 (3037, '2021-12-17 15:20:49', 3090, NULL, NULL, 'IPAY2021/12/3036', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 25, 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 (3038, '2021-12-17 16:16:21', 3091, NULL, NULL, 'IPAY2021/12/3037', NULL, 'cash', '', '', '', '', '', '', '97.0000', NULL, 11, NULL, 'received', '', '97.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3039, '2021-12-17 17:32:37', 3092, NULL, NULL, 'IPAY2021/12/3038', NULL, 'cash', '', '', '', '', '', '', '359.5000', NULL, 16, 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 (3040, '2021-12-17 17:38:58', 3093, NULL, NULL, 'IPAY2021/12/3039', NULL, 'cash', '', '', '', '', '', '', '203.2000', NULL, 16, NULL, 'received', '', '203.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 (3041, '2021-12-17 17:50:19', 3094, NULL, NULL, 'IPAY2021/12/3040', NULL, 'cash', '', '', '', '', '', '', '210.2000', NULL, 16, NULL, 'received', '', '210.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 (3042, '2021-12-17 18:36:24', 3095, NULL, NULL, 'IPAY2021/12/3041', NULL, 'cash', '', '', '', '', '', '', '194.1000', NULL, 11, NULL, 'received', '', '194.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 (3043, '2021-12-17 19:33:52', 3096, NULL, NULL, 'IPAY2021/12/3042', NULL, 'cash', '', '', '', '', '', '', '117.2300', NULL, 11, NULL, 'received', '', '117.2300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3044, '2021-12-17 20:16:41', 3097, NULL, NULL, 'IPAY2021/12/3043', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 11, 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 (3045, '2021-12-17 20:22:41', 3098, NULL, NULL, 'IPAY2021/12/3044', NULL, 'cash', '', '', '', '', '', '', '87.0000', NULL, 22, 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 (3046, '2021-12-17 20:57:05', 3099, NULL, NULL, 'IPAY2021/12/3045', NULL, 'cash', '', '', '', '', '', '', '1104.0000', NULL, 22, NULL, 'received', '', '1104.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3047, '2021-12-17 21:15:06', 3100, NULL, NULL, 'IPAY2021/12/3046', NULL, 'cash', '', '', '', '', '', '', '57.5000', NULL, 11, NULL, 'received', '', '57.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3048, '2021-12-17 21:19:02', 3101, NULL, NULL, 'IPAY2021/12/3047', NULL, 'cash', '', '', '', '', '', '', '584.0000', NULL, 16, NULL, 'received', '', '584.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3049, '2021-12-17 21:29:46', 3102, NULL, NULL, 'IPAY2021/12/3048', NULL, 'cash', '', '', '', '', '', '', '112.5000', NULL, 22, 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 (3050, '2021-12-17 21:34:32', 3103, NULL, NULL, 'IPAY2021/12/3049', 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 (3051, '2021-12-17 21:42:22', 3104, NULL, NULL, 'IPAY2021/12/3050', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 16, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3052, '2021-12-17 22:04:19', 3105, NULL, NULL, 'IPAY2021/12/3051', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 22, 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 (3053, '2021-12-18 14:17:46', 3106, NULL, NULL, 'IPAY2021/12/3052', NULL, 'cash', '', '', '', '', '', '', '222.0000', NULL, 8, NULL, 'received', '', '222.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3054, '2021-12-18 14:36:14', 3107, NULL, NULL, 'IPAY2021/12/3053', NULL, 'cash', '', '', '', '', '', '', '196.3000', NULL, 21, NULL, 'received', '', '196.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 (3055, '2021-12-18 15:05:06', 3108, NULL, NULL, 'IPAY2021/12/3054', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 21, 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 (3056, '2021-12-18 15:17:06', 3109, NULL, NULL, 'IPAY2021/12/3055', NULL, 'cash', '', '', '', '', '', '', '620.3000', NULL, 8, NULL, 'received', '', '620.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 (3057, '2021-12-18 15:21:37', 3110, NULL, NULL, 'IPAY2021/12/3056', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 8, 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 (3058, '2021-12-18 19:23:49', 3111, NULL, NULL, 'IPAY2021/12/3057', NULL, 'cash', '', '', '', '', '', '', '1509.1000', NULL, 16, NULL, 'received', '', '1509.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 (3059, '2021-12-18 19:25:24', 3112, NULL, NULL, 'IPAY2021/12/3058', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 16, 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 (3060, '2021-12-18 19:47:40', 3113, NULL, NULL, 'IPAY2021/12/3059', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 16, 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 (3061, '2021-12-18 21:21:38', 3114, NULL, NULL, 'IPAY2021/12/3060', NULL, 'cash', '', '', '', '', '', '', '692.2000', NULL, 11, NULL, 'received', '', '692.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 (3062, '2021-12-18 21:27:11', 3115, NULL, NULL, 'IPAY2021/12/3061', 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 (3063, '2021-12-18 21:33:08', 3116, NULL, NULL, 'IPAY2021/12/3062', NULL, 'cash', '', '', '', '', '', '', '376.1000', NULL, 16, NULL, 'received', '', '376.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 (3064, '2021-12-18 21:37:06', 3117, NULL, NULL, 'IPAY2021/12/3063', 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 (3065, '2021-12-18 21:38:11', 3118, NULL, NULL, 'IPAY2021/12/3064', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 11, 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 (3066, '2021-12-18 21:44:03', 3119, NULL, NULL, 'IPAY2021/12/3065', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 16, 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 (3067, '2021-12-18 21:54:55', 3120, NULL, NULL, 'IPAY2021/12/3066', NULL, 'cash', '', '', '', '', '', '', '661.0900', NULL, 22, NULL, 'received', '', '661.0900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3068, '2021-12-18 22:11:03', 3121, NULL, NULL, 'IPAY2021/12/3067', NULL, 'cash', '', '', '', '', '', '', '41.5300', NULL, 11, NULL, 'received', '', '41.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3069, '2021-12-19 19:15:50', 3122, NULL, NULL, 'IPAY2021/12/3068', NULL, 'cash', '', '', '', '', '', '', '134.5000', NULL, 8, 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 (3070, '2021-12-19 19:18:10', 3123, NULL, NULL, 'IPAY2021/12/3069', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 8, 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 (3071, '2021-12-19 20:24:42', 3124, NULL, NULL, 'IPAY2021/12/3070', NULL, 'cash', '', '', '', '', '', '', '1136.4000', NULL, 17, NULL, 'received', '', '1136.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 (3072, '2021-12-19 21:12:47', 3125, NULL, NULL, 'IPAY2021/12/3071', NULL, 'cash', '', '', '', '', '', '', '1084.3000', NULL, 11, NULL, 'received', '', '1084.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 (3073, '2021-12-19 21:23:05', 3126, NULL, NULL, 'IPAY2021/12/3072', NULL, 'cash', '', '', '', '', '', '', '145.6000', NULL, 17, NULL, 'received', '', '145.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 (3074, '2021-12-19 21:25:32', 3127, NULL, NULL, 'IPAY2021/12/3073', NULL, 'cash', '', '', '', '', '', '', '1470.0000', NULL, 8, NULL, 'received', '', '1470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3075, '2021-12-19 21:33:51', 3128, NULL, NULL, 'IPAY2021/12/3074', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 8, 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 (3076, '2021-12-19 21:35:19', 3129, NULL, NULL, 'IPAY2021/12/3075', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (3077, '2021-12-19 21:37:44', 3130, NULL, NULL, 'IPAY2021/12/3076', NULL, 'cash', '', '', '', '', '', '', '42.0300', NULL, 11, NULL, 'received', '', '42.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 (3078, '2021-12-19 21:41:18', 3131, NULL, NULL, 'IPAY2021/12/3077', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 8, 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 (3079, '2021-12-19 22:00:22', 3132, NULL, NULL, 'IPAY2021/12/3078', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 8, 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 (3080, '2021-12-19 22:09:58', 3133, NULL, NULL, 'IPAY2021/12/3079', 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 (3081, '2021-12-20 08:57:22', 3134, NULL, NULL, 'IPAY2021/12/3080', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 3, 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 (3082, '2021-12-20 10:32:14', 3135, NULL, NULL, 'IPAY2021/12/3081', 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 (3083, '2021-12-20 10:38:52', 3136, NULL, NULL, 'IPAY2021/12/3082', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 17, 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 (3084, '2021-12-20 13:49:29', 3137, NULL, NULL, 'IPAY2021/12/3083', NULL, 'cash', '', '', '', '', '', '', '821.4000', NULL, 17, NULL, 'received', '', '821.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 (3085, '2021-12-20 14:27:20', 3138, NULL, NULL, 'IPAY2021/12/3084', NULL, 'cash', '', '', '', '', '', '', '706.0000', NULL, 21, NULL, 'received', '', '706.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3086, '2021-12-20 15:39:58', 3139, NULL, NULL, 'IPAY2021/12/3085', NULL, 'cash', '', '', '', '', '', '', '294.0000', NULL, 8, 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 (3087, '2021-12-20 18:16:16', 3140, NULL, NULL, 'IPAY2021/12/3086', NULL, 'cash', '', '', '', '', '', '', '419.5000', NULL, 15, NULL, 'received', '', '419.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3088, '2021-12-20 19:06:46', 3141, NULL, NULL, 'IPAY2021/12/3087', NULL, 'cash', '', '', '', '', '', '', '139.0600', NULL, 15, NULL, 'received', '', '139.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3089, '2021-12-20 19:49:03', 3142, NULL, NULL, 'IPAY2021/12/3088', NULL, 'cash', '', '', '', '', '', '', '258.9000', NULL, 15, NULL, 'received', '', '258.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 (3090, '2021-12-20 20:45:26', 3143, NULL, NULL, 'IPAY2021/12/3089', NULL, 'cash', '', '', '', '', '', '', '97.2000', NULL, 15, NULL, 'received', '', '97.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 (3091, '2021-12-20 21:07:27', 3144, NULL, NULL, 'IPAY2021/12/3090', NULL, 'cash', '', '', '', '', '', '', '13.7000', NULL, 15, NULL, 'received', '', '13.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 (3092, '2021-12-20 21:42:58', 3145, NULL, NULL, 'IPAY2021/12/3091', NULL, 'cash', '', '', '', '', '', '', '1256.0000', NULL, 22, NULL, 'received', '', '1256.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3093, '2021-12-20 21:50:48', 3146, NULL, NULL, 'IPAY2021/12/3092', NULL, 'cash', '', '', '', '', '', '', '38.5000', NULL, 22, NULL, 'received', '', '38.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3094, '2021-12-20 22:02:59', 3147, NULL, NULL, 'IPAY2021/12/3093', NULL, 'cash', '', '', '', '', '', '', '1371.3000', NULL, 17, NULL, 'received', '', '1371.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 (3095, '2021-12-20 22:04:16', 3148, NULL, NULL, 'IPAY2021/12/3094', NULL, 'cash', '', '', '', '', '', '', '177.0000', NULL, 15, NULL, 'received', '', '177.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3096, '2021-12-21 08:05:53', 3149, NULL, NULL, 'IPAY2021/12/3095', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 3, 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 (3097, '2021-12-21 12:33:54', 3150, NULL, NULL, 'IPAY2021/12/3096', NULL, 'cash', '', '', '', '', '', '', '223.7000', NULL, 15, NULL, 'received', '', '223.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 (3098, '2021-12-21 13:00:29', 3151, NULL, NULL, 'IPAY2021/12/3097', NULL, 'cash', '', '', '', '', '', '', '116.5000', NULL, 15, 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 (3099, '2021-12-21 13:20:58', 3152, NULL, NULL, 'IPAY2021/12/3098', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 15, 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 (3100, '2021-12-21 13:35:53', 3153, NULL, NULL, 'IPAY2021/12/3099', NULL, 'cash', '', '', '', '', '', '', '16.1000', NULL, 15, NULL, 'received', '', '16.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 (3101, '2021-12-21 14:25:42', 3154, NULL, NULL, 'IPAY2021/12/3100', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 15, 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 (3102, '2021-12-21 15:37:10', 3155, NULL, NULL, 'IPAY2021/12/3101', NULL, 'cash', '', '', '', '', '', '', '395.5000', NULL, 8, NULL, 'received', '', '395.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3103, '2021-12-21 15:50:40', 3156, NULL, NULL, 'IPAY2021/12/3102', 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 (3104, '2021-12-21 16:22:20', 3157, NULL, NULL, 'IPAY2021/12/3103', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 15, 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 (3105, '2021-12-21 16:45:23', 3158, NULL, NULL, 'IPAY2021/12/3104', NULL, 'cash', '', '', '', '', '', '', '821.3000', NULL, 16, NULL, 'received', '', '821.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 (3106, '2021-12-21 17:46:07', 3159, NULL, NULL, 'IPAY2021/12/3105', 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 (3107, '2021-12-21 20:10:29', 3160, NULL, NULL, 'IPAY2021/12/3106', NULL, 'cash', '', '', '', '', '', '', '794.2000', NULL, 16, NULL, 'received', '', '794.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 (3108, '2021-12-21 21:07:12', 3161, NULL, NULL, 'IPAY2021/12/3107', NULL, 'cash', '', '', '', '', '', '', '890.6000', NULL, 23, NULL, 'received', '', '890.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 (3109, '2021-12-21 21:20:11', 3162, NULL, NULL, 'IPAY2021/12/3108', NULL, 'cash', '', '', '', '', '', '', '1223.5000', NULL, 22, NULL, 'received', '', '1223.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3110, '2021-12-21 21:28:11', 3163, NULL, NULL, 'IPAY2021/12/3109', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 22, 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 (3111, '2021-12-21 21:36:19', 3164, NULL, NULL, 'IPAY2021/12/3110', NULL, 'cash', '', '', '', '', '', '', '440.4000', NULL, 16, NULL, 'received', '', '440.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 (3112, '2021-12-21 21:40:04', 3165, NULL, NULL, 'IPAY2021/12/3111', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 22, 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 (3113, '2021-12-21 21:42:51', 3166, NULL, NULL, 'IPAY2021/12/3112', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 23, 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 (3114, '2021-12-21 21:48:48', 3167, NULL, NULL, 'IPAY2021/12/3113', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 23, 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 (3115, '2021-12-21 21:49:45', 3168, NULL, NULL, 'IPAY2021/12/3114', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 22, 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 (3116, '2021-12-21 21:50:51', 3169, NULL, NULL, 'IPAY2021/12/3115', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 16, 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 (3117, '2021-12-21 22:01:16', 3170, NULL, NULL, 'IPAY2021/12/3116', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 16, 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 (3118, '2021-12-22 10:13:12', 3171, NULL, NULL, 'IPAY2021/12/3117', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 8, 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 (3119, '2021-12-22 14:20:36', 3172, NULL, NULL, 'IPAY2021/12/3118', NULL, 'cash', '', '', '', '', '', '', '362.4000', NULL, 21, NULL, 'received', '', '362.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 (3120, '2021-12-22 14:41:53', 3173, NULL, NULL, 'IPAY2021/12/3119', NULL, 'cash', '', '', '', '', '', '', '46.6000', NULL, 21, 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 (3121, '2021-12-22 15:06:56', 3174, NULL, NULL, 'IPAY2021/12/3120', NULL, 'cash', '', '', '', '', '', '', '993.0000', NULL, 8, NULL, 'received', '', '993.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3122, '2021-12-22 15:17:13', 3175, NULL, NULL, 'IPAY2021/12/3121', NULL, 'cash', '', '', '', '', '', '', '130.5000', NULL, 21, NULL, 'received', '', '130.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3123, '2021-12-22 18:09:25', 3176, NULL, NULL, 'IPAY2021/12/3122', NULL, 'cash', '', '', '', '', '', '', '860.7600', NULL, 16, NULL, 'received', '', '860.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 (3124, '2021-12-22 21:05:08', 3177, NULL, NULL, 'IPAY2021/12/3123', NULL, 'cash', '', '', '', '', '', '', '913.9000', NULL, 23, NULL, 'received', '', '913.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 (3125, '2021-12-22 21:35:55', 3178, NULL, NULL, 'IPAY2021/12/3124', NULL, 'cash', '', '', '', '', '', '', '934.8000', NULL, 16, NULL, 'received', '', '934.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 (3126, '2021-12-22 21:44:04', 3179, NULL, NULL, 'IPAY2021/12/3125', NULL, 'cash', '', '', '', '', '', '', '1212.5000', NULL, 22, NULL, 'received', '', '1212.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3127, '2021-12-22 21:48:56', 3180, NULL, NULL, 'IPAY2021/12/3126', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 22, 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 (3128, '2021-12-22 21:51:58', 3181, NULL, NULL, 'IPAY2021/12/3127', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 16, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3129, '2021-12-22 21:52:38', 3182, NULL, NULL, 'IPAY2021/12/3128', NULL, 'cash', '', '', '', '', '', '', '117.0000', NULL, 23, 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 (3130, '2021-12-23 14:52:17', 3183, NULL, NULL, 'IPAY2021/12/3129', NULL, 'cash', '', '', '', '', '', '', '507.0000', NULL, 16, NULL, 'received', '', '507.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3131, '2021-12-23 14:54:11', 3184, NULL, NULL, 'IPAY2021/12/3130', NULL, 'cash', '', '', '', '', '', '', '389.1000', NULL, 21, NULL, 'received', '', '389.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 (3132, '2021-12-23 15:06:38', 3185, NULL, NULL, 'IPAY2021/12/3131', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 21, 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 (3133, '2021-12-23 15:54:59', 3186, NULL, NULL, 'IPAY2021/12/3132', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 21, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3134, '2021-12-23 15:55:34', 3187, NULL, NULL, 'IPAY2021/12/3133', NULL, 'cash', '', '', '', '', '', '', '670.5000', NULL, 8, NULL, 'received', '', '670.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3135, '2021-12-23 16:12:39', 3188, NULL, NULL, 'IPAY2021/12/3134', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (3136, '2021-12-23 17:02:14', 3189, NULL, NULL, 'IPAY2021/12/3135', NULL, 'cash', '', '', '', '', '', '', '211.2000', NULL, 15, NULL, 'received', '', '211.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 (3137, '2021-12-23 19:37:05', 3190, NULL, NULL, 'IPAY2021/12/3136', NULL, 'cash', '', '', '', '', '', '', '445.2000', NULL, 15, NULL, 'received', '', '445.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 (3138, '2021-12-23 19:54:29', 3191, NULL, NULL, 'IPAY2021/12/3137', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 15, 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 (3139, '2021-12-23 20:50:09', 3192, NULL, NULL, 'IPAY2021/12/3138', NULL, 'cash', '', '', '', '', '', '', '1060.0000', NULL, 16, NULL, 'received', '', '1060.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3140, '2021-12-23 21:27:26', 3193, NULL, NULL, 'IPAY2021/12/3139', NULL, 'cash', '', '', '', '', '', '', '415.4000', NULL, 15, NULL, 'received', '', '415.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 (3141, '2021-12-23 21:39:38', 3194, NULL, NULL, 'IPAY2021/12/3140', NULL, 'cash', '', '', '', '', '', '', '246.0000', NULL, 16, NULL, 'received', '', '246.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3142, '2021-12-23 21:43:19', 3195, NULL, NULL, 'IPAY2021/12/3141', NULL, 'cash', '', '', '', '', '', '', '1081.5000', NULL, 22, NULL, 'received', '', '1081.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3143, '2021-12-23 21:46:22', 3196, NULL, NULL, 'IPAY2021/12/3142', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 15, 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 (3144, '2021-12-23 21:46:53', 3197, NULL, NULL, 'IPAY2021/12/3143', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 16, 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 (3145, '2021-12-23 21:49:47', 3198, NULL, NULL, 'IPAY2021/12/3144', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 15, 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 (3146, '2021-12-24 11:40:59', 3199, NULL, NULL, 'IPAY2021/12/3145', NULL, 'cash', '', '', '', '', '', '', '362.0000', NULL, 7, NULL, 'received', '', '362.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3147, '2021-12-24 12:19:14', 3200, NULL, NULL, 'IPAY2021/12/3146', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 7, 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 (3148, '2021-12-24 12:34:59', 3201, NULL, NULL, 'IPAY2021/12/3147', 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 (3149, '2021-12-24 13:08:33', 3202, NULL, NULL, 'IPAY2021/12/3148', 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 (3150, '2021-12-24 18:22:51', 3203, NULL, NULL, 'IPAY2021/12/3149', NULL, 'cash', '', '', '', '', '', '', '1267.0000', NULL, 16, NULL, 'received', '', '1267.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3151, '2021-12-24 20:51:23', 3204, NULL, NULL, 'IPAY2021/12/3150', NULL, 'cash', '', '', '', '', '', '', '999.5000', NULL, 16, NULL, 'received', '', '999.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3152, '2021-12-24 21:13:49', 3205, NULL, NULL, 'IPAY2021/12/3151', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 22, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3153, '2021-12-24 21:19:45', 3206, NULL, NULL, 'IPAY2021/12/3152', NULL, 'cash', '', '', '', '', '', '', '570.3000', NULL, 11, NULL, 'received', '', '570.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 (3154, '2021-12-24 21:39:04', 3207, NULL, NULL, 'IPAY2021/12/3153', NULL, 'cash', '', '', '', '', '', '', '118.0000', NULL, 16, 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 (3155, '2021-12-24 21:57:09', 3208, NULL, NULL, 'IPAY2021/12/3154', NULL, 'cash', '', '', '', '', '', '', '68.1000', NULL, 11, 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 (3156, '2021-12-27 11:00:37', 3209, NULL, NULL, 'IPAY2021/12/3155', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 17, 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 (3157, '2021-12-27 14:50:48', 3210, NULL, NULL, 'IPAY2021/12/3156', NULL, 'cash', '', '', '', '', '', '', '250.3000', NULL, 21, NULL, 'received', '', '250.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 (3158, '2021-12-27 15:09:35', 3211, NULL, NULL, 'IPAY2021/12/3157', NULL, 'cash', '', '', '', '', '', '', '688.7000', NULL, 17, NULL, 'received', '', '688.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 (3159, '2021-12-27 15:10:15', 3212, NULL, NULL, 'IPAY2021/12/3158', NULL, 'cash', '', '', '', '', '', '', '717.6000', NULL, 8, NULL, 'received', '', '717.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 (3160, '2021-12-27 16:58:21', 3213, NULL, NULL, 'IPAY2021/12/3159', NULL, 'cash', '', '', '', '', '', '', '199.5000', NULL, 17, 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 (3161, '2021-12-27 20:35:32', 3214, NULL, NULL, 'IPAY2021/12/3160', NULL, 'cash', '', '', '', '', '', '', '834.3000', NULL, 17, NULL, 'received', '', '834.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 (3162, '2021-12-27 21:25:13', 3215, NULL, NULL, 'IPAY2021/12/3161', NULL, 'cash', '', '', '', '', '', '', '827.0000', NULL, 11, NULL, 'received', '', '827.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3163, '2021-12-27 21:39:07', 3216, NULL, NULL, 'IPAY2021/12/3162', NULL, 'cash', '', '', '', '', '', '', '9.1000', NULL, 11, NULL, 'received', '', '9.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 (3164, '2021-12-27 21:42:57', 3217, NULL, NULL, 'IPAY2021/12/3163', NULL, 'cash', '', '', '', '', '', '', '500.2000', NULL, 17, NULL, 'received', '', '500.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 (3165, '2021-12-27 21:47:03', 3218, NULL, NULL, 'IPAY2021/12/3164', NULL, 'cash', '', '', '', '', '', '', '639.1000', NULL, 22, NULL, 'received', '', '639.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 (3166, '2021-12-27 21:48:11', 3219, NULL, NULL, 'IPAY2021/12/3165', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 22, 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 (3167, '2021-12-27 21:55:14', 3220, NULL, NULL, 'IPAY2021/12/3166', 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 (3168, '2021-12-27 22:04:15', 3221, NULL, NULL, 'IPAY2021/12/3167', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 22, 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 (3169, '2021-12-28 10:21:32', 3222, NULL, NULL, 'IPAY2021/12/3168', NULL, 'cash', '', '', '', '', '', '', '302.0000', NULL, 15, NULL, 'received', '', '302.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3170, '2021-12-28 11:47:10', 3223, NULL, NULL, 'IPAY2021/12/3169', NULL, 'cash', '', '', '', '', '', '', '159.0500', NULL, 15, NULL, 'received', '', '159.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 (3171, '2021-12-28 12:07:41', 3224, NULL, NULL, 'IPAY2021/12/3170', NULL, 'cash', '', '', '', '', '', '', '169.0500', NULL, 15, NULL, 'received', '', '169.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 (3172, '2021-12-28 12:57:40', 3225, NULL, NULL, 'IPAY2021/12/3171', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 15, 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 (3173, '2021-12-28 14:17:39', 3226, NULL, NULL, 'IPAY2021/12/3172', NULL, 'cash', '', '', '', '', '', '', '43.8000', NULL, 15, 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 (3174, '2021-12-28 14:55:18', 3227, NULL, NULL, 'IPAY2021/12/3173', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 15, 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 (3175, '2021-12-28 15:40:32', 3228, NULL, NULL, 'IPAY2021/12/3174', NULL, 'cash', '', '', '', '', '', '', '801.1000', NULL, 8, NULL, 'received', '', '801.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 (3176, '2021-12-28 16:16:11', 3229, NULL, NULL, 'IPAY2021/12/3175', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 8, 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 (3177, '2021-12-28 19:01:11', 3230, NULL, NULL, 'IPAY2021/12/3176', NULL, 'cash', '', '', '', '', '', '', '1566.5000', NULL, 16, NULL, 'received', '', '1566.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3178, '2021-12-28 19:23:56', 3231, NULL, NULL, 'IPAY2021/12/3177', NULL, 'cash', '', '', '', '', '', '', '384.6000', NULL, 11, NULL, 'received', '', '384.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 (3179, '2021-12-28 21:05:17', 3232, NULL, NULL, 'IPAY2021/12/3178', NULL, 'cash', '', '', '', '', '', '', '168.5000', NULL, 11, 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 (3180, '2021-12-28 21:21:55', 3233, NULL, NULL, 'IPAY2021/12/3179', NULL, 'cash', '', '', '', '', '', '', '551.8000', NULL, 16, NULL, 'received', '', '551.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 (3181, '2021-12-28 21:38:07', 3234, NULL, NULL, 'IPAY2021/12/3180', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 11, 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 (3182, '2021-12-28 21:43:22', 3235, NULL, NULL, 'IPAY2021/12/3181', NULL, 'cash', '', '', '', '', '', '', '1644.4000', NULL, 22, NULL, 'received', '', '1644.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 (3183, '2021-12-28 21:43:24', 3236, NULL, NULL, 'IPAY2021/12/3182', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 16, 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 (3184, '2021-12-28 21:56:09', 3237, NULL, NULL, 'IPAY2021/12/3183', NULL, 'cash', '', '', '', '', '', '', '44.8000', NULL, 22, NULL, 'received', '', '44.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 (3185, '2021-12-28 22:12:49', 3238, NULL, NULL, 'IPAY2021/12/3184', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 11, 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 (3186, '2021-12-29 14:36:49', 3239, NULL, NULL, 'IPAY2021/12/3185', NULL, 'cash', '', '', '', '', '', '', '308.5000', NULL, 21, 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 (3187, '2021-12-29 14:48:39', 3240, NULL, NULL, 'IPAY2021/12/3186', NULL, 'cash', '', '', '', '', '', '', '768.0000', NULL, 8, NULL, 'received', '', '768.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3188, '2021-12-29 14:50:55', 3241, NULL, NULL, 'IPAY2021/12/3187', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 21, 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 (3189, '2021-12-29 21:22:58', 3242, NULL, NULL, 'IPAY2021/12/3188', NULL, 'cash', '', '', '', '', '', '', '877.0000', NULL, 22, NULL, 'received', '', '877.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3190, '2021-12-29 21:28:49', 3243, NULL, NULL, 'IPAY2021/12/3189', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 22, 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 (3191, '2021-12-29 21:38:13', 3244, NULL, NULL, 'IPAY2021/12/3190', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 22, 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 (3192, '2021-12-29 21:48:07', 3245, NULL, NULL, 'IPAY2021/12/3191', NULL, 'cash', '', '', '', '', '', '', '682.6000', NULL, 11, NULL, 'received', '', '682.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 (3193, '2021-12-29 21:51:41', 3246, NULL, NULL, 'IPAY2021/12/3192', NULL, 'cash', '', '', '', '', '', '', '1773.3300', NULL, 16, NULL, 'received', '', '1773.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 (3194, '2021-12-29 21:52:44', 3247, NULL, NULL, 'IPAY2021/12/3193', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 16, 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 (3195, '2021-12-30 11:23:11', 3248, NULL, NULL, 'IPAY2021/12/3194', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 8, 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 (3196, '2021-12-30 15:23:30', 3249, NULL, NULL, 'IPAY2021/12/3195', NULL, 'cash', '', '', '', '', '', '', '797.7000', NULL, 21, NULL, 'received', '', '797.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 (3197, '2021-12-30 15:55:46', 3250, NULL, NULL, 'IPAY2021/12/3196', NULL, 'cash', '', '', '', '', '', '', '500.1400', NULL, 8, NULL, 'received', '', '500.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3198, '2021-12-30 19:20:36', 3251, NULL, NULL, 'IPAY2021/12/3197', NULL, 'cash', '', '', '', '', '', '', '197.3000', NULL, 15, NULL, 'received', '', '197.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 (3199, '2021-12-30 19:25:42', 3252, NULL, NULL, 'IPAY2021/12/3198', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (3200, '2021-12-30 20:02:45', 3253, NULL, NULL, 'IPAY2021/12/3199', NULL, 'cash', '', '', '', '', '', '', '72.5000', NULL, 15, 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 (3201, '2021-12-30 20:12:12', 3254, NULL, NULL, 'IPAY2021/12/3200', NULL, 'cash', '', '', '', '', '', '', '922.9600', NULL, 16, NULL, 'received', '', '922.9600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3202, '2021-12-30 20:31:54', 3255, NULL, NULL, 'IPAY2021/12/3201', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 15, 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 (3203, '2021-12-30 21:33:35', 3256, NULL, NULL, 'IPAY2021/12/3202', NULL, 'cash', '', '', '', '', '', '', '309.0600', NULL, 16, NULL, 'received', '', '309.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3204, '2021-12-30 21:45:11', 3257, NULL, NULL, 'IPAY2021/12/3203', NULL, 'cash', '', '', '', '', '', '', '5.6000', NULL, 16, NULL, 'received', '', '5.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 (3205, '2021-12-30 22:12:59', 3258, NULL, NULL, 'IPAY2021/12/3204', NULL, 'cash', '', '', '', '', '', '', '806.4000', NULL, 22, NULL, 'received', '', '806.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 (3206, '2021-12-30 22:16:11', 3259, NULL, NULL, 'IPAY2021/12/3205', NULL, 'cash', '', '', '', '', '', '', '62.5000', NULL, 22, NULL, 'received', '', '62.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3207, '2021-12-31 08:42:00', 3260, NULL, NULL, 'IPAY2021/12/3206', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 3, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3208, '2021-12-31 14:02:41', 3261, NULL, NULL, 'IPAY2021/12/3207', NULL, 'cash', '', '', '', '', '', '', '374.5000', NULL, 22, NULL, 'received', '', '374.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3209, '2021-12-31 14:13:11', 3262, NULL, NULL, 'IPAY2021/12/3208', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 22, 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 (3210, '2021-12-31 14:30:48', 3263, NULL, NULL, 'IPAY2021/12/3209', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (3211, '2021-12-31 15:26:51', 3264, NULL, NULL, 'IPAY2021/12/3210', NULL, 'cash', '', '', '', '', '', '', '449.7000', NULL, 21, NULL, 'received', '', '449.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 (3212, '2021-12-31 16:57:59', 3265, NULL, NULL, 'IPAY2021/12/3211', NULL, 'cash', '', '', '', '', '', '', '118.0000', NULL, 22, 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 (3213, '2021-12-31 18:04:19', 3266, NULL, NULL, 'IPAY2021/12/3212', NULL, 'cash', '', '', '', '', '', '', '209.0000', NULL, 22, 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 (3214, '2021-12-31 18:32:05', 3267, NULL, NULL, 'IPAY2021/12/3213', NULL, 'cash', '', '', '', '', '', '', '168.0000', NULL, 22, NULL, 'received', '', '168.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3215, '2021-12-31 18:52:10', 3268, NULL, NULL, 'IPAY2021/12/3214', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 22, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3216, '2021-12-31 19:22:22', 3269, NULL, NULL, 'IPAY2021/12/3215', NULL, 'cash', '', '', '', '', '', '', '1200.8800', NULL, 16, NULL, 'received', '', '1200.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 (3217, '2021-12-31 19:29:58', 3270, NULL, NULL, 'IPAY2021/12/3216', NULL, 'cash', '', '', '', '', '', '', '459.3000', NULL, 11, NULL, 'received', '', '459.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 (3218, '2021-12-31 19:55:50', 3271, NULL, NULL, 'IPAY2021/12/3217', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 22, 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 (3219, '2021-12-31 20:28:33', 3272, NULL, NULL, 'IPAY2021/12/3218', NULL, 'cash', '', '', '', '', '', '', '416.0000', NULL, 16, NULL, 'received', '', '416.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3220, '2021-12-31 21:15:29', 3273, NULL, NULL, 'IPAY2021/12/3219', NULL, 'cash', '', '', '', '', '', '', '112.0000', NULL, 22, NULL, 'received', '', '112.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3221, '2021-12-31 21:24:50', 3274, NULL, NULL, 'IPAY2021/12/3220', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 22, 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 (3222, '2021-12-31 21:26:14', 3275, NULL, NULL, 'IPAY2021/12/3221', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (3223, '2021-12-31 21:27:47', 3276, NULL, NULL, 'IPAY2021/12/3222', NULL, 'cash', '', '', '', '', '', '', '124.1000', NULL, 16, NULL, 'received', '', '124.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 (3224, '2021-12-31 21:29:40', 3277, NULL, NULL, 'IPAY2021/12/3223', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 16, 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 (3225, '2021-12-31 21:34:07', 3278, NULL, NULL, 'IPAY2021/12/3224', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 22, 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 (3226, '2021-12-31 21:36:16', 3279, NULL, NULL, 'IPAY2021/12/3225', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 16, 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 (3227, '2021-12-31 21:37:13', 3280, NULL, NULL, 'IPAY2021/12/3226', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 16, 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 (3228, '2021-12-31 21:45:55', 3281, NULL, NULL, 'IPAY2021/12/3227', NULL, 'cash', '', '', '', '', '', '', '124.9000', NULL, 11, NULL, 'received', '', '124.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 (3229, '2021-12-31 21:55:10', 3282, NULL, NULL, 'IPAY2021/12/3228', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 22, 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 (3230, '2021-12-31 22:05:25', 3283, NULL, NULL, 'IPAY2021/12/3229', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 22, 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 (3231, '2021-12-31 22:05:41', 3284, NULL, NULL, 'IPAY2021/12/3230', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 22, 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 (3232, '2022-01-03 08:10:08', 3285, NULL, NULL, 'IPAY2022/01/3231', 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 (3233, '2022-01-03 08:10:52', 3286, NULL, NULL, 'IPAY2022/01/3232', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 3, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3234, '2022-01-03 11:37:57', 3287, NULL, NULL, 'IPAY2022/01/3233', NULL, 'cash', '', '', '', '', '', '', '0.6000', NULL, 17, NULL, 'received', '', '0.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 (3235, '2022-01-03 14:55:25', 3288, NULL, NULL, 'IPAY2022/01/3234', NULL, 'cash', '', '', '', '', '', '', '310.3000', NULL, 21, NULL, 'received', '', '310.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 (3236, '2022-01-03 20:24:54', 3289, NULL, NULL, 'IPAY2022/01/3235', NULL, 'cash', '', '', '', '', '', '', '1240.8600', NULL, 17, NULL, 'received', '', '1240.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 (3237, '2022-01-03 21:50:27', 3290, NULL, NULL, 'IPAY2022/01/3236', NULL, 'cash', '', '', '', '', '', '', '438.2000', NULL, 17, NULL, 'received', '', '438.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 (3238, '2022-01-03 21:56:57', 3291, NULL, NULL, 'IPAY2022/01/3237', NULL, 'cash', '', '', '', '', '', '', '564.1000', NULL, 11, NULL, 'received', '', '564.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 (3239, '2022-01-04 13:05:07', 3292, NULL, NULL, 'IPAY2022/01/3238', NULL, 'cash', '', '', '', '', '', '', '361.6000', NULL, 15, 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 (3240, '2022-01-04 14:09:18', 3293, NULL, NULL, 'IPAY2022/01/3239', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 15, 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 (3241, '2022-01-04 14:39:58', 3294, NULL, NULL, 'IPAY2022/01/3240', NULL, 'cash', '', '', '', '', '', '', '17.8000', NULL, 15, NULL, 'received', '', '17.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 (3242, '2022-01-04 15:05:27', 3295, NULL, NULL, 'IPAY2022/01/3241', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 15, 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 (3243, '2022-01-04 15:17:10', 3296, NULL, NULL, 'IPAY2022/01/3242', NULL, 'cash', '', '', '', '', '', '', '632.3000', NULL, 8, NULL, 'received', '', '632.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 (3244, '2022-01-04 16:45:17', 3297, NULL, NULL, 'IPAY2022/01/3243', NULL, 'cash', '', '', '', '', '', '', '1075.7000', NULL, 8, NULL, 'received', '', '1075.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 (3245, '2022-01-04 17:08:11', 3298, NULL, NULL, 'IPAY2022/01/3244', NULL, 'cash', '', '', '', '', '', '', '522.8000', NULL, 8, NULL, 'received', '', '522.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 (3246, '2022-01-04 19:39:50', 3299, NULL, NULL, 'IPAY2022/01/3245', NULL, 'cash', '', '', '', '', '', '', '2175.1800', NULL, 16, NULL, 'received', '', '2175.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 (3247, '2022-01-04 20:10:34', 3300, NULL, NULL, 'IPAY2022/01/3246', NULL, 'cash', '', '', '', '', '', '', '457.2000', NULL, 11, NULL, 'received', '', '457.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 (3248, '2022-01-04 20:16:35', 3301, NULL, NULL, 'IPAY2022/01/3247', 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 (3249, '2022-01-04 20:23:08', 3302, NULL, NULL, 'IPAY2022/01/3248', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 11, 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 (3250, '2022-01-04 21:20:53', 3303, NULL, NULL, 'IPAY2022/01/3249', NULL, 'cash', '', '', '', '', '', '', '99.2000', NULL, 11, NULL, 'received', '', '99.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 (3251, '2022-01-04 21:31:55', 3304, NULL, NULL, 'IPAY2022/01/3250', NULL, 'cash', '', '', '', '', '', '', '130.3000', NULL, 16, NULL, 'received', '', '130.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 (3252, '2022-01-04 21:43:56', 3305, NULL, NULL, 'IPAY2022/01/3251', NULL, 'cash', '', '', '', '', '', '', '427.8000', NULL, 22, NULL, 'received', '', '427.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 (3253, '2022-01-04 21:46:02', 3306, NULL, NULL, 'IPAY2022/01/3252', 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 (3254, '2022-01-04 21:47:43', 3307, NULL, NULL, 'IPAY2022/01/3253', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 22, 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 (3255, '2022-01-04 21:50:47', 3308, NULL, NULL, 'IPAY2022/01/3254', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 22, 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 (3256, '2022-01-04 21:55:39', 3309, NULL, NULL, 'IPAY2022/01/3255', 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 (3257, '2022-01-04 21:56:19', 3310, NULL, NULL, 'IPAY2022/01/3256', NULL, 'cash', '', '', '', '', '', '', '84.3000', NULL, 16, NULL, 'received', '', '84.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 (3258, '2022-01-04 21:59:22', 3311, NULL, NULL, 'IPAY2022/01/3257', 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 (3259, '2022-01-04 22:05:04', 3312, NULL, NULL, 'IPAY2022/01/3258', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 16, 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 (3260, '2022-01-05 14:44:36', 3313, NULL, NULL, 'IPAY2022/01/3259', NULL, 'cash', '', '', '', '', '', '', '72.0000', NULL, 8, NULL, 'received', '', '72.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3261, '2022-01-05 14:59:04', 3314, NULL, NULL, 'IPAY2022/01/3260', NULL, 'cash', '', '', '', '', '', '', '342.5000', NULL, 8, NULL, 'received', '', '342.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3262, '2022-01-05 15:16:57', 3315, NULL, NULL, 'IPAY2022/01/3261', NULL, 'cash', '', '', '', '', '', '', '513.2000', NULL, 21, NULL, 'received', '', '513.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 (3263, '2022-01-05 15:21:50', 3316, NULL, NULL, 'IPAY2022/01/3262', NULL, 'cash', '', '', '', '', '', '', '342.5000', NULL, 8, NULL, 'received', '', '342.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3264, '2022-01-05 18:15:27', 3317, NULL, NULL, 'IPAY2022/01/3263', NULL, 'cash', '', '', '', '', '', '', '76.5000', NULL, 11, NULL, 'received', '', '76.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3265, '2022-01-05 21:14:58', 3318, NULL, NULL, 'IPAY2022/01/3264', NULL, 'cash', '', '', '', '', '', '', '455.7000', NULL, 16, NULL, 'received', '', '455.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 (3266, '2022-01-05 21:39:29', 3319, NULL, NULL, 'IPAY2022/01/3265', NULL, 'cash', '', '', '', '', '', '', '537.9400', NULL, 16, NULL, 'received', '', '537.9400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3267, '2022-01-05 21:41:57', 3320, NULL, NULL, 'IPAY2022/01/3266', NULL, 'cash', '', '', '', '', '', '', '284.9000', NULL, 22, NULL, 'received', '', '284.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 (3268, '2022-01-05 21:46:45', 3321, NULL, NULL, 'IPAY2022/01/3267', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 22, 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 (3269, '2022-01-05 21:49:14', 3322, NULL, NULL, 'IPAY2022/01/3268', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 16, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3270, '2022-01-05 21:54:42', 3323, NULL, NULL, 'IPAY2022/01/3269', NULL, 'cash', '', '', '', '', '', '', '295.5000', NULL, 22, NULL, 'received', '', '295.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3271, '2022-01-06 11:06:22', 3324, NULL, NULL, 'IPAY2022/01/3270', NULL, 'cash', '', '', '', '', '', '', '333.1000', NULL, 16, NULL, 'received', '', '333.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 (3272, '2022-01-06 13:46:04', 3325, NULL, NULL, 'IPAY2022/01/3271', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 8, 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 (3273, '2022-01-06 13:57:57', 3326, NULL, NULL, 'IPAY2022/01/3272', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 8, 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 (3274, '2022-01-06 14:13:18', 3327, NULL, NULL, 'IPAY2022/01/3273', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 8, 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 (3275, '2022-01-06 14:56:20', 3328, NULL, NULL, 'IPAY2022/01/3274', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 8, 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 (3276, '2022-01-06 15:00:57', 3329, NULL, NULL, 'IPAY2022/01/3275', NULL, 'cash', '', '', '', '', '', '', '380.3000', NULL, 21, NULL, 'received', '', '380.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 (3277, '2022-01-06 15:05:11', 3330, NULL, NULL, 'IPAY2022/01/3276', NULL, 'cash', '', '', '', '', '', '', '7.1000', NULL, 8, NULL, 'received', '', '7.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 (3278, '2022-01-06 15:09:26', 3331, NULL, NULL, 'IPAY2022/01/3277', NULL, 'cash', '', '', '', '', '', '', '380.3000', NULL, 21, NULL, 'received', '', '380.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 (3279, '2022-01-06 15:16:38', 3332, NULL, NULL, 'IPAY2022/01/3278', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 8, 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 (3280, '2022-01-06 15:17:13', 3333, NULL, NULL, 'IPAY2022/01/3279', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 8, 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 (3281, '2022-01-06 16:58:00', 3334, NULL, NULL, 'IPAY2022/01/3280', NULL, 'cash', '', '', '', '', '', '', '805.5000', NULL, 15, NULL, 'received', '', '805.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3282, '2022-01-06 17:01:17', 3335, NULL, NULL, 'IPAY2022/01/3281', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 15, 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 (3283, '2022-01-06 19:01:16', 3336, NULL, NULL, 'IPAY2022/01/3282', NULL, 'cash', '', '', '', '', '', '', '341.9000', NULL, 15, NULL, 'received', '', '341.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 (3284, '2022-01-06 19:54:36', 3337, NULL, NULL, 'IPAY2022/01/3283', NULL, 'cash', '', '', '', '', '', '', '583.1600', NULL, 16, NULL, 'received', '', '583.1600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3285, '2022-01-06 20:37:29', 3338, NULL, NULL, 'IPAY2022/01/3284', NULL, 'cash', '', '', '', '', '', '', '89.7000', NULL, 15, NULL, 'received', '', '89.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 (3286, '2022-01-06 20:42:58', 3339, NULL, NULL, 'IPAY2022/01/3285', NULL, 'cash', '', '', '', '', '', '', '462.4000', NULL, 22, NULL, 'received', '', '462.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 (3287, '2022-01-06 21:03:00', 3340, NULL, NULL, 'IPAY2022/01/3286', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 15, 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 (3288, '2022-01-06 21:10:23', 3341, NULL, NULL, 'IPAY2022/01/3287', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 15, 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 (3289, '2022-01-06 21:26:52', 3342, NULL, NULL, 'IPAY2022/01/3288', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 15, 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 (3290, '2022-01-06 21:27:06', 3343, NULL, NULL, 'IPAY2022/01/3289', NULL, 'cash', '', '', '', '', '', '', '101.0000', NULL, 16, 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 (3291, '2022-01-06 21:37:55', 3344, NULL, NULL, 'IPAY2022/01/3290', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 15, 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 (3292, '2022-01-06 21:44:43', 3345, NULL, NULL, 'IPAY2022/01/3291', NULL, 'cash', '', '', '', '', '', '', '162.0000', NULL, 22, NULL, 'received', '', '162.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3293, '2022-01-06 21:47:11', 3346, NULL, NULL, 'IPAY2022/01/3292', NULL, 'cash', '', '', '', '', '', '', '79.5000', NULL, 16, 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 (3294, '2022-01-06 21:48:06', 3347, NULL, NULL, 'IPAY2022/01/3293', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 15, 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 (3295, '2022-01-07 13:05:13', 3348, NULL, NULL, 'IPAY2022/01/3294', NULL, 'cash', '', '', '', '', '', '', '258.0000', NULL, 7, 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 (3296, '2022-01-07 13:46:14', 3349, NULL, NULL, 'IPAY2022/01/3295', 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 (3297, '2022-01-07 14:11:42', 3350, NULL, NULL, 'IPAY2022/01/3296', 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 (3298, '2022-01-07 14:18:28', 3351, NULL, NULL, 'IPAY2022/01/3297', 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 (3299, '2022-01-07 14:55:19', 3352, NULL, NULL, 'IPAY2022/01/3298', 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 (3300, '2022-01-07 15:28:30', 3353, NULL, NULL, 'IPAY2022/01/3299', NULL, 'cash', '', '', '', '', '', '', '293.8000', NULL, 21, NULL, 'received', '', '293.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 (3301, '2022-01-07 15:59:03', 3354, NULL, NULL, 'IPAY2022/01/3300', NULL, 'cash', '', '', '', '', '', '', '464.0000', NULL, 16, NULL, 'received', '', '464.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3302, '2022-01-07 17:45:53', 3355, NULL, NULL, 'IPAY2022/01/3301', NULL, 'cash', '', '', '', '', '', '', '80.8000', NULL, 11, NULL, 'received', '', '80.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 (3303, '2022-01-07 17:59:15', 3356, NULL, NULL, 'IPAY2022/01/3302', 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 (3304, '2022-01-07 19:49:17', 3357, NULL, NULL, 'IPAY2022/01/3303', NULL, 'cash', '', '', '', '', '', '', '174.5000', NULL, 11, 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 (3305, '2022-01-07 20:46:03', 3358, NULL, NULL, 'IPAY2022/01/3304', NULL, 'cash', '', '', '', '', '', '', '96.5000', NULL, 11, 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 (3306, '2022-01-07 21:43:22', 3359, NULL, NULL, 'IPAY2022/01/3305', NULL, 'cash', '', '', '', '', '', '', '500.2000', NULL, 16, NULL, 'received', '', '500.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 (3307, '2022-01-07 21:49:22', 3360, NULL, NULL, 'IPAY2022/01/3306', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 16, 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 (3308, '2022-01-07 21:49:57', 3361, NULL, NULL, 'IPAY2022/01/3307', NULL, 'cash', '', '', '', '', '', '', '422.0000', NULL, 22, NULL, 'received', '', '422.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3309, '2022-01-07 21:54:56', 3362, NULL, NULL, 'IPAY2022/01/3308', NULL, 'cash', '', '', '', '', '', '', '26.2000', NULL, 11, NULL, 'received', '', '26.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 (3310, '2022-01-07 22:00:46', 3363, NULL, NULL, 'IPAY2022/01/3309', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 22, 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 (3311, '2022-01-08 12:15:36', 3364, NULL, NULL, 'IPAY2022/01/3310', NULL, 'cash', '', '', '', '', '', '', '192.0000', NULL, 15, NULL, 'received', '', '192.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3312, '2022-01-08 13:35:32', 3365, NULL, NULL, 'IPAY2022/01/3311', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 15, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3313, '2022-01-08 14:06:18', 3366, NULL, NULL, 'IPAY2022/01/3312', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 15, 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 (3314, '2022-01-08 14:54:45', 3367, NULL, NULL, 'IPAY2022/01/3313', NULL, 'cash', '', '', '', '', '', '', '11.1000', NULL, 15, NULL, 'received', '', '11.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 (3315, '2022-01-08 14:59:52', 3368, NULL, NULL, 'IPAY2022/01/3314', NULL, 'cash', '', '', '', '', '', '', '18.6000', NULL, 15, NULL, 'received', '', '18.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 (3316, '2022-01-08 18:47:06', 3369, NULL, NULL, 'IPAY2022/01/3315', NULL, 'cash', '', '', '', '', '', '', '406.7000', NULL, 16, NULL, 'received', '', '406.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 (3317, '2022-01-08 19:34:07', 3370, NULL, NULL, 'IPAY2022/01/3316', NULL, 'cash', '', '', '', '', '', '', '361.5000', NULL, 8, NULL, 'received', '', '361.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3318, '2022-01-08 21:22:15', 3371, NULL, NULL, 'IPAY2022/01/3317', NULL, 'cash', '', '', '', '', '', '', '231.0800', NULL, 16, NULL, 'received', '', '231.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 (3319, '2022-01-08 21:26:03', 3372, NULL, NULL, 'IPAY2022/01/3318', NULL, 'cash', '', '', '', '', '', '', '342.8000', NULL, 11, NULL, 'received', '', '342.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 (3320, '2022-01-08 21:46:27', 3373, NULL, NULL, 'IPAY2022/01/3319', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 16, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3321, '2022-01-08 21:49:29', 3374, NULL, NULL, 'IPAY2022/01/3320', 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 (3322, '2022-01-08 21:49:49', 3375, NULL, NULL, 'IPAY2022/01/3321', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 16, 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 (3323, '2022-01-08 21:54:20', 3376, NULL, NULL, 'IPAY2022/01/3322', NULL, 'cash', '', '', '', '', '', '', '654.9000', NULL, 22, NULL, 'received', '', '654.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 (3324, '2022-01-09 17:29:56', 3377, NULL, NULL, 'IPAY2022/01/3323', NULL, 'cash', '', '', '', '', '', '', '109.2000', NULL, 11, NULL, 'received', '', '109.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 (3325, '2022-01-09 18:46:12', 3378, NULL, NULL, 'IPAY2022/01/3324', NULL, 'cash', '', '', '', '', '', '', '840.7800', NULL, 16, NULL, 'received', '', '840.7800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3326, '2022-01-09 20:18:15', 3379, NULL, NULL, 'IPAY2022/01/3325', NULL, 'cash', '', '', '', '', '', '', '381.8800', NULL, 11, NULL, 'received', '', '381.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 (3327, '2022-01-09 20:47:42', 3380, NULL, NULL, 'IPAY2022/01/3326', NULL, 'cash', '', '', '', '', '', '', '373.5000', NULL, 8, NULL, 'received', '', '373.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3328, '2022-01-09 21:25:11', 3381, NULL, NULL, 'IPAY2022/01/3327', NULL, 'cash', '', '', '', '', '', '', '313.2600', NULL, 16, NULL, 'received', '', '313.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 (3329, '2022-01-09 21:32:30', 3382, NULL, NULL, 'IPAY2022/01/3328', NULL, 'cash', '', '', '', '', '', '', '204.5000', NULL, 11, 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 (3330, '2022-01-09 21:41:47', 3383, NULL, NULL, 'IPAY2022/01/3329', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 11, 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 (3331, '2022-01-09 21:45:36', 3384, NULL, NULL, 'IPAY2022/01/3330', NULL, 'cash', '', '', '', '', '', '', '69.5000', NULL, 16, NULL, 'received', '', '69.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3332, '2022-01-09 21:54:01', 3385, NULL, NULL, 'IPAY2022/01/3331', 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 (3333, '2022-01-10 14:36:24', 3386, NULL, NULL, 'IPAY2022/01/3332', NULL, 'cash', '', '', '', '', '', '', '127.9000', NULL, 21, NULL, 'received', '', '127.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 (3334, '2022-01-10 14:47:51', 3387, NULL, NULL, 'IPAY2022/01/3333', NULL, 'cash', '', '', '', '', '', '', '88.5000', NULL, 8, 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 (3335, '2022-01-10 15:07:23', 3388, NULL, NULL, 'IPAY2022/01/3334', NULL, 'cash', '', '', '', '', '', '', '277.3000', NULL, 8, NULL, 'received', '', '277.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 (3336, '2022-01-10 17:52:30', 3389, NULL, NULL, 'IPAY2022/01/3335', NULL, 'cash', '', '', '', '', '', '', '817.1800', NULL, 17, NULL, 'received', '', '817.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 (3337, '2022-01-10 18:23:29', 3390, NULL, NULL, 'IPAY2022/01/3336', NULL, 'cash', '', '', '', '', '', '', '111.1000', NULL, 11, NULL, 'received', '', '111.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 (3338, '2022-01-10 19:19:10', 3391, NULL, NULL, 'IPAY2022/01/3337', NULL, 'cash', '', '', '', '', '', '', '100.1800', NULL, 11, NULL, 'received', '', '100.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 (3339, '2022-01-10 20:30:27', 3392, NULL, NULL, 'IPAY2022/01/3338', NULL, 'cash', '', '', '', '', '', '', '118.2000', NULL, 11, NULL, 'received', '', '118.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 (3340, '2022-01-10 20:54:40', 3393, NULL, NULL, 'IPAY2022/01/3339', 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 (3341, '2022-01-10 21:20:31', 3394, NULL, NULL, 'IPAY2022/01/3340', NULL, 'cash', '', '', '', '', '', '', '385.8000', NULL, 17, 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 (3342, '2022-01-10 21:28:06', 3395, NULL, NULL, 'IPAY2022/01/3341', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 17, 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 (3343, '2022-01-10 21:42:50', 3396, NULL, NULL, 'IPAY2022/01/3342', NULL, 'cash', '', '', '', '', '', '', '68.5800', NULL, 17, NULL, 'received', '', '68.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 (3344, '2022-01-10 21:43:37', 3397, NULL, NULL, 'IPAY2022/01/3343', NULL, 'cash', '', '', '', '', '', '', '175.0000', NULL, 22, NULL, 'received', '', '175.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3345, '2022-01-10 21:56:01', 3398, NULL, NULL, 'IPAY2022/01/3344', 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 (3346, '2022-01-10 22:01:06', 3399, NULL, NULL, 'IPAY2022/01/3345', NULL, 'cash', '', '', '', '', '', '', '396.0000', NULL, 22, NULL, 'received', '', '396.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3347, '2022-01-11 13:38:39', 3400, NULL, NULL, 'IPAY2022/01/3346', NULL, 'cash', '', '', '', '', '', '', '441.9000', NULL, 16, NULL, 'received', '', '441.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 (3348, '2022-01-11 13:44:42', 3401, NULL, NULL, 'IPAY2022/01/3347', NULL, 'cash', '', '', '', '', '', '', '237.5000', NULL, 8, NULL, 'received', '', '237.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3349, '2022-01-11 14:04:49', 3402, NULL, NULL, 'IPAY2022/01/3348', NULL, 'cash', '', '', '', '', '', '', '0.8000', NULL, 8, NULL, 'received', '', '0.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 (3350, '2022-01-11 14:33:14', 3403, NULL, NULL, 'IPAY2022/01/3349', NULL, 'cash', '', '', '', '', '', '', '300.5000', NULL, 21, 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 (3351, '2022-01-11 14:35:43', 3404, NULL, NULL, 'IPAY2022/01/3350', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 21, 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 (3352, '2022-01-11 14:37:31', 3405, NULL, NULL, 'IPAY2022/01/3351', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 8, 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 (3353, '2022-01-11 14:43:33', 3406, NULL, NULL, 'IPAY2022/01/3352', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 21, 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 (3354, '2022-01-11 14:48:00', 3407, NULL, NULL, 'IPAY2022/01/3353', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 21, 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 (3355, '2022-01-11 15:20:48', 3408, NULL, NULL, 'IPAY2022/01/3354', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (3356, '2022-01-11 15:26:12', 3409, NULL, NULL, 'IPAY2022/01/3355', 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 (3357, '2022-01-11 19:24:01', 3410, NULL, NULL, 'IPAY2022/01/3356', NULL, 'cash', '', '', '', '', '', '', '414.3000', NULL, 11, NULL, 'received', '', '414.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 (3358, '2022-01-11 19:34:09', 3411, NULL, NULL, 'IPAY2022/01/3357', NULL, 'cash', '', '', '', '', '', '', '756.2800', NULL, 16, NULL, 'received', '', '756.2800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3359, '2022-01-11 21:10:36', 3412, NULL, NULL, 'IPAY2022/01/3358', NULL, 'cash', '', '', '', '', '', '', '115.5000', NULL, 11, NULL, 'received', '', '115.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3360, '2022-01-11 21:23:10', 3413, NULL, NULL, 'IPAY2022/01/3359', NULL, 'cash', '', '', '', '', '', '', '475.0000', NULL, 22, NULL, 'received', '', '475.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3361, '2022-01-11 21:25:37', 3414, NULL, NULL, 'IPAY2022/01/3360', NULL, 'cash', '', '', '', '', '', '', '475.0000', NULL, 22, NULL, 'received', '', '475.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3362, '2022-01-11 21:27:11', 3415, NULL, NULL, 'IPAY2022/01/3361', NULL, 'cash', '', '', '', '', '', '', '8.4000', NULL, 22, NULL, 'received', '', '8.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 (3363, '2022-01-11 21:29:32', 3416, NULL, NULL, 'IPAY2022/01/3362', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 11, 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 (3364, '2022-01-11 21:43:10', 3417, NULL, NULL, 'IPAY2022/01/3363', NULL, 'cash', '', '', '', '', '', '', '144.8800', NULL, 16, NULL, 'received', '', '144.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 (3365, '2022-01-11 22:08:19', 3418, NULL, NULL, 'IPAY2022/01/3364', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 11, 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 (3366, '2022-01-11 22:12:44', 3419, NULL, NULL, 'IPAY2022/01/3365', 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 (3367, '2022-01-12 14:51:15', 3420, NULL, NULL, 'IPAY2022/01/3366', NULL, 'cash', '', '', '', '', '', '', '115.2000', NULL, 21, NULL, 'received', '', '115.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 (3368, '2022-01-12 15:17:35', 3421, NULL, NULL, 'IPAY2022/01/3367', NULL, 'cash', '', '', '', '', '', '', '150.5000', NULL, 8, NULL, 'received', '', '150.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3369, '2022-01-12 20:01:41', 3422, NULL, NULL, 'IPAY2022/01/3368', NULL, 'cash', '', '', '', '', '', '', '688.9400', NULL, 16, NULL, 'received', '', '688.9400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3370, '2022-01-12 21:02:17', 3423, NULL, NULL, 'IPAY2022/01/3369', NULL, 'cash', '', '', '', '', '', '', '574.8000', NULL, 11, NULL, 'received', '', '574.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 (3371, '2022-01-12 21:18:32', 3424, NULL, NULL, 'IPAY2022/01/3370', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 22, 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 (3372, '2022-01-12 21:18:41', 3425, NULL, NULL, 'IPAY2022/01/3371', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 22, 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 (3373, '2022-01-12 21:35:47', 3426, NULL, NULL, 'IPAY2022/01/3372', NULL, 'cash', '', '', '', '', '', '', '290.5000', NULL, 22, 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 (3374, '2022-01-12 21:40:21', 3427, NULL, NULL, 'IPAY2022/01/3373', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 11, 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 (3375, '2022-01-12 21:42:56', 3428, NULL, NULL, 'IPAY2022/01/3374', NULL, 'cash', '', '', '', '', '', '', '113.6000', NULL, 16, NULL, 'received', '', '113.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 (3376, '2022-01-12 21:54:19', 3429, NULL, NULL, 'IPAY2022/01/3375', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 11, 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 (3377, '2022-01-12 21:59:37', 3430, NULL, NULL, 'IPAY2022/01/3376', NULL, 'cash', '', '', '', '', '', '', '52.5000', NULL, 22, 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 (3378, '2022-01-13 13:25:41', 3431, NULL, NULL, 'IPAY2022/01/3377', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 8, 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 (3379, '2022-01-13 13:34:15', 3432, NULL, NULL, 'IPAY2022/01/3378', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 8, 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 (3380, '2022-01-13 13:36:40', 3433, NULL, NULL, 'IPAY2022/01/3379', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 8, 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 (3381, '2022-01-13 14:51:34', 3434, NULL, NULL, 'IPAY2022/01/3380', NULL, 'cash', '', '', '', '', '', '', '107.2000', NULL, 21, NULL, 'received', '', '107.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 (3382, '2022-01-13 15:32:50', 3435, NULL, NULL, 'IPAY2022/01/3381', NULL, 'cash', '', '', '', '', '', '', '12.2000', NULL, 8, NULL, 'received', '', '12.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 (3383, '2022-01-13 18:55:27', 3436, NULL, NULL, 'IPAY2022/01/3382', NULL, 'cash', '', '', '', '', '', '', '201.5000', NULL, 15, NULL, 'received', '', '201.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3384, '2022-01-13 19:47:09', 3437, NULL, NULL, 'IPAY2022/01/3383', NULL, 'cash', '', '', '', '', '', '', '85.8000', NULL, 15, NULL, 'received', '', '85.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 (3385, '2022-01-13 20:12:00', 3438, NULL, NULL, 'IPAY2022/01/3384', NULL, 'cash', '', '', '', '', '', '', '81.5000', NULL, 15, NULL, 'received', '', '81.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3386, '2022-01-13 20:25:31', 3439, NULL, NULL, 'IPAY2022/01/3385', NULL, 'cash', '', '', '', '', '', '', '392.3600', NULL, 16, NULL, 'received', '', '392.3600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3387, '2022-01-13 20:51:34', 3440, NULL, NULL, 'IPAY2022/01/3386', NULL, 'cash', '', '', '', '', '', '', '110.7000', NULL, 15, NULL, 'received', '', '110.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 (3388, '2022-01-13 21:05:39', 3441, NULL, NULL, 'IPAY2022/01/3387', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 15, 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 (3389, '2022-01-13 21:18:08', 3442, NULL, NULL, 'IPAY2022/01/3388', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 15, 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 (3390, '2022-01-13 21:29:26', 3443, NULL, NULL, 'IPAY2022/01/3389', NULL, 'cash', '', '', '', '', '', '', '4.6000', NULL, 15, NULL, 'received', '', '4.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 (3391, '2022-01-13 21:43:29', 3444, NULL, NULL, 'IPAY2022/01/3390', NULL, 'cash', '', '', '', '', '', '', '108.0000', NULL, 16, 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 (3392, '2022-01-13 21:49:26', 3445, NULL, NULL, 'IPAY2022/01/3391', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 15, 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 (3393, '2022-01-13 22:06:34', 3446, NULL, NULL, 'IPAY2022/01/3392', NULL, 'cash', '', '', '', '', '', '', '665.3200', NULL, 22, NULL, 'received', '', '665.3200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3394, '2022-01-14 11:35:14', 3447, NULL, NULL, 'IPAY2022/01/3393', NULL, 'cash', '', '', '', '', '', '', '71.5000', NULL, 7, NULL, 'received', '', '71.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3395, '2022-01-14 11:45:18', 3448, NULL, NULL, 'IPAY2022/01/3394', 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 (3396, '2022-01-14 15:05:45', 3449, NULL, NULL, 'IPAY2022/01/3395', NULL, 'cash', '', '', '', '', '', '', '209.0000', NULL, 7, 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 (3397, '2022-01-14 19:01:56', 3450, NULL, NULL, 'IPAY2022/01/3396', NULL, 'cash', '', '', '', '', '', '', '681.6800', NULL, 16, NULL, 'received', '', '681.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 (3398, '2022-01-14 20:07:06', 3451, NULL, NULL, 'IPAY2022/01/3397', NULL, 'cash', '', '', '', '', '', '', '245.6000', NULL, 11, NULL, 'received', '', '245.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 (3399, '2022-01-14 20:22:25', 3452, NULL, NULL, 'IPAY2022/01/3398', 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 (3400, '2022-01-14 21:20:08', 3453, NULL, NULL, 'IPAY2022/01/3399', NULL, 'cash', '', '', '', '', '', '', '90.8000', NULL, 11, NULL, 'received', '', '90.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 (3401, '2022-01-14 21:31:26', 3454, NULL, NULL, 'IPAY2022/01/3400', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 22, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3402, '2022-01-14 21:36:20', 3455, NULL, NULL, 'IPAY2022/01/3401', NULL, 'cash', '', '', '', '', '', '', '85.2000', NULL, 22, NULL, 'received', '', '85.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 (3403, '2022-01-14 21:40:02', 3456, NULL, NULL, 'IPAY2022/01/3402', NULL, 'cash', '', '', '', '', '', '', '85.2000', NULL, 22, NULL, 'received', '', '85.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 (3404, '2022-01-14 21:40:23', 3457, NULL, NULL, 'IPAY2022/01/3403', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 11, 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 (3405, '2022-01-14 21:42:55', 3458, NULL, NULL, 'IPAY2022/01/3404', NULL, 'cash', '', '', '', '', '', '', '252.4800', NULL, 16, NULL, 'received', '', '252.4800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3406, '2022-01-14 21:45:16', 3459, NULL, NULL, 'IPAY2022/01/3405', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 22, 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 (3407, '2022-01-15 13:07:47', 3460, NULL, NULL, 'IPAY2022/01/3406', NULL, 'cash', '', '', '', '', '', '', '126.4000', NULL, 15, NULL, 'received', '', '126.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 (3408, '2022-01-15 13:10:17', 3461, NULL, NULL, 'IPAY2022/01/3407', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 15, 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 (3409, '2022-01-15 13:46:22', 3462, NULL, NULL, 'IPAY2022/01/3408', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 8, 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 (3410, '2022-01-15 13:47:13', 3463, NULL, NULL, 'IPAY2022/01/3409', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 8, 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 (3411, '2022-01-15 14:28:30', 3464, NULL, NULL, 'IPAY2022/01/3410', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 15, 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 (3412, '2022-01-15 14:57:10', 3465, NULL, NULL, 'IPAY2022/01/3411', NULL, 'cash', '', '', '', '', '', '', '301.5000', NULL, 8, NULL, 'received', '', '301.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3413, '2022-01-15 15:06:19', 3466, NULL, NULL, 'IPAY2022/01/3412', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (3414, '2022-01-15 15:34:31', 3467, NULL, NULL, 'IPAY2022/01/3413', NULL, 'cash', '', '', '', '', '', '', '186.5000', NULL, 11, 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 (3415, '2022-01-15 15:40:08', 3468, NULL, NULL, 'IPAY2022/01/3414', 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 (3416, '2022-01-15 15:44:42', 3469, NULL, NULL, 'IPAY2022/01/3415', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 8, 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 (3417, '2022-01-15 16:22:15', 3470, NULL, NULL, 'IPAY2022/01/3416', NULL, 'cash', '', '', '', '', '', '', '26.8000', NULL, 11, NULL, 'received', '', '26.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 (3418, '2022-01-15 19:15:46', 3471, NULL, NULL, 'IPAY2022/01/3417', NULL, 'cash', '', '', '', '', '', '', '599.4800', NULL, 16, NULL, 'received', '', '599.4800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3419, '2022-01-15 21:42:28', 3472, NULL, NULL, 'IPAY2022/01/3418', NULL, 'cash', '', '', '', '', '', '', '242.0000', NULL, 16, 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 (3420, '2022-01-15 21:48:58', 3473, NULL, NULL, 'IPAY2022/01/3419', NULL, 'cash', '', '', '', '', '', '', '642.8000', NULL, 11, NULL, 'received', '', '642.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 (3421, '2022-01-16 17:19:17', 3474, NULL, NULL, 'IPAY2022/01/3420', NULL, 'cash', '', '', '', '', '', '', '201.8000', NULL, 15, NULL, 'received', '', '201.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 (3422, '2022-01-16 18:48:43', 3475, NULL, NULL, 'IPAY2022/01/3421', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 15, 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 (3423, '2022-01-16 20:17:06', 3476, NULL, NULL, 'IPAY2022/01/3422', NULL, 'cash', '', '', '', '', '', '', '136.8000', NULL, 15, NULL, 'received', '', '136.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 (3424, '2022-01-16 20:51:26', 3477, NULL, NULL, 'IPAY2022/01/3423', NULL, 'cash', '', '', '', '', '', '', '522.3600', NULL, 17, NULL, 'received', '', '522.3600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3425, '2022-01-16 21:06:57', 3478, NULL, NULL, 'IPAY2022/01/3424', NULL, 'cash', '', '', '', '', '', '', '98.1000', NULL, 15, NULL, 'received', '', '98.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 (3426, '2022-01-16 21:30:56', 3479, NULL, NULL, 'IPAY2022/01/3425', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (3427, '2022-01-16 21:34:12', 3480, NULL, NULL, 'IPAY2022/01/3426', NULL, 'cash', '', '', '', '', '', '', '62.2000', NULL, 17, NULL, 'received', '', '62.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 (3428, '2022-01-17 14:26:19', 3481, NULL, NULL, 'IPAY2022/01/3427', NULL, 'cash', '', '', '', '', '', '', '255.1000', NULL, 21, NULL, 'received', '', '255.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 (3429, '2022-01-17 14:51:00', 3482, NULL, NULL, 'IPAY2022/01/3428', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 21, 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 (3430, '2022-01-17 14:52:30', 3483, NULL, NULL, 'IPAY2022/01/3429', NULL, 'cash', '', '', '', '', '', '', '878.0000', NULL, 8, NULL, 'received', '', '878.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3431, '2022-01-17 14:55:20', 3484, NULL, NULL, 'IPAY2022/01/3430', NULL, 'cash', '', '', '', '', '', '', '878.0000', NULL, 8, NULL, 'received', '', '878.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3432, '2022-01-17 15:57:31', 3485, NULL, NULL, 'IPAY2022/01/3431', NULL, 'cash', '', '', '', '', '', '', '201.0000', NULL, 11, NULL, 'received', '', '201.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3433, '2022-01-17 16:48:33', 3486, NULL, NULL, 'IPAY2022/01/3432', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 11, 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 (3434, '2022-01-17 16:58:13', 3487, NULL, NULL, 'IPAY2022/01/3433', NULL, 'cash', '', '', '', '', '', '', '994.9600', NULL, 17, NULL, 'received', '', '994.9600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3435, '2022-01-17 17:26:09', 3488, NULL, NULL, 'IPAY2022/01/3434', NULL, 'cash', '', '', '', '', '', '', '214.0000', NULL, 8, NULL, 'received', '', '214.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3436, '2022-01-17 17:46:36', 3489, NULL, NULL, 'IPAY2022/01/3435', NULL, 'cash', '', '', '', '', '', '', '171.5000', NULL, 8, 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 (3437, '2022-01-17 20:12:53', 3490, NULL, NULL, 'IPAY2022/01/3436', NULL, 'cash', '', '', '', '', '', '', '303.4000', NULL, 11, NULL, 'received', '', '303.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 (3438, '2022-01-17 20:21:09', 3491, NULL, NULL, 'IPAY2022/01/3437', NULL, 'cash', '', '', '', '', '', '', '114.5000', NULL, 8, NULL, 'received', '', '114.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3439, '2022-01-17 20:32:50', 3492, NULL, NULL, 'IPAY2022/01/3438', NULL, 'cash', '', '', '', '', '', '', '39.3000', NULL, 11, NULL, 'received', '', '39.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 (3440, '2022-01-17 20:41:32', 3493, NULL, NULL, 'IPAY2022/01/3439', NULL, 'cash', '', '', '', '', '', '', '243.1000', NULL, 8, NULL, 'received', '', '243.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 (3441, '2022-01-17 21:20:55', 3494, NULL, NULL, 'IPAY2022/01/3440', NULL, 'cash', '', '', '', '', '', '', '712.1000', NULL, 17, NULL, 'received', '', '712.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 (3442, '2022-01-17 21:37:14', 3495, NULL, NULL, 'IPAY2022/01/3441', NULL, 'cash', '', '', '', '', '', '', '82.5000', NULL, 17, 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 (3443, '2022-01-17 21:42:10', 3496, NULL, NULL, 'IPAY2022/01/3442', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 11, 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 (3444, '2022-01-17 21:48:05', 3497, NULL, NULL, 'IPAY2022/01/3443', NULL, 'cash', '', '', '', '', '', '', '967.8000', NULL, 22, NULL, 'received', '', '967.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 (3445, '2022-01-18 11:39:53', 3498, NULL, NULL, 'IPAY2022/01/3444', NULL, 'cash', '', '', '', '', '', '', '99.6000', NULL, 15, NULL, 'received', '', '99.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 (3446, '2022-01-18 11:57:30', 3499, NULL, NULL, 'IPAY2022/01/3445', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 15, 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 (3447, '2022-01-18 12:31:21', 3500, NULL, NULL, 'IPAY2022/01/3446', NULL, 'cash', '', '', '', '', '', '', '93.8000', NULL, 15, NULL, 'received', '', '93.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 (3448, '2022-01-18 13:03:37', 3501, NULL, NULL, 'IPAY2022/01/3447', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 15, 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 (3449, '2022-01-18 14:38:42', 3502, NULL, NULL, 'IPAY2022/01/3448', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 15, 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 (3450, '2022-01-18 14:40:41', 3503, NULL, NULL, 'IPAY2022/01/3449', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 15, 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 (3451, '2022-01-18 14:49:13', 3504, NULL, NULL, 'IPAY2022/01/3450', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 15, 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 (3452, '2022-01-18 15:01:21', 3505, NULL, NULL, 'IPAY2022/01/3451', NULL, 'cash', '', '', '', '', '', '', '448.3000', NULL, 8, NULL, 'received', '', '448.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 (3453, '2022-01-18 15:02:44', 3506, NULL, NULL, 'IPAY2022/01/3452', NULL, 'cash', '', '', '', '', '', '', '2.4000', NULL, 15, NULL, 'received', '', '2.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 (3454, '2022-01-18 19:20:13', 3507, NULL, NULL, 'IPAY2022/01/3453', NULL, 'cash', '', '', '', '', '', '', '189.6800', NULL, 11, NULL, 'received', '', '189.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 (3455, '2022-01-18 20:19:08', 3508, NULL, NULL, 'IPAY2022/01/3454', NULL, 'cash', '', '', '', '', '', '', '384.0000', NULL, 16, NULL, 'received', '', '384.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3456, '2022-01-18 21:37:32', 3509, NULL, NULL, 'IPAY2022/01/3455', NULL, 'cash', '', '', '', '', '', '', '220.6800', NULL, 16, NULL, 'received', '', '220.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 (3457, '2022-01-19 18:36:59', 3510, NULL, NULL, 'IPAY2022/01/3456', NULL, 'cash', '', '', '', '', '', '', '119.6000', NULL, 11, NULL, 'received', '', '119.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 (3458, '2022-01-19 18:58:38', 3511, NULL, NULL, 'IPAY2022/01/3457', NULL, 'cash', '', '', '', '', '', '', '390.0000', NULL, 22, NULL, 'received', '', '390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3459, '2022-01-19 19:31:28', 3512, NULL, NULL, 'IPAY2022/01/3458', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 11, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3460, '2022-01-19 19:35:25', 3513, NULL, NULL, 'IPAY2022/01/3459', NULL, 'cash', '', '', '', '', '', '', '325.6000', NULL, 8, NULL, 'received', '', '325.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 (3461, '2022-01-19 19:42:54', 3514, NULL, NULL, 'IPAY2022/01/3460', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (3462, '2022-01-19 20:14:53', 3515, NULL, NULL, 'IPAY2022/01/3461', NULL, 'cash', '', '', '', '', '', '', '702.7800', NULL, 16, NULL, 'received', '', '702.7800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3463, '2022-01-19 20:17:10', 3516, NULL, NULL, 'IPAY2022/01/3462', 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 (3464, '2022-01-19 20:40:42', 3517, NULL, NULL, 'IPAY2022/01/3463', NULL, 'cash', '', '', '', '', '', '', '601.8000', NULL, 22, NULL, 'received', '', '601.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 (3465, '2022-01-19 21:23:30', 3518, NULL, NULL, 'IPAY2022/01/3464', NULL, 'cash', '', '', '', '', '', '', '156.5000', NULL, 16, 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 (3466, '2022-01-19 21:31:41', 3519, NULL, NULL, 'IPAY2022/01/3465', NULL, 'cash', '', '', '', '', '', '', '43.3000', NULL, 11, NULL, 'received', '', '43.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 (3467, '2022-01-19 21:35:02', 3520, NULL, NULL, 'IPAY2022/01/3466', NULL, 'cash', '', '', '', '', '', '', '86.5000', NULL, 22, 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 (3468, '2022-01-19 21:40:26', 3521, NULL, NULL, 'IPAY2022/01/3467', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 22, 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 (3469, '2022-01-19 21:40:38', 3522, NULL, NULL, 'IPAY2022/01/3468', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 16, 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 (3470, '2022-01-19 21:55:59', 3523, NULL, NULL, 'IPAY2022/01/3469', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (3471, '2022-01-20 14:48:04', 3524, NULL, NULL, 'IPAY2022/01/3470', NULL, 'cash', '', '', '', '', '', '', '385.2000', NULL, 21, 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 (3472, '2022-01-20 16:36:39', 3525, NULL, NULL, 'IPAY2022/01/3471', NULL, 'cash', '', '', '', '', '', '', '222.5000', NULL, 8, NULL, 'received', '', '222.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3473, '2022-01-20 18:54:07', 3526, NULL, NULL, 'IPAY2022/01/3472', NULL, 'cash', '', '', '', '', '', '', '191.4000', NULL, 15, NULL, 'received', '', '191.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 (3474, '2022-01-20 19:57:29', 3527, NULL, NULL, 'IPAY2022/01/3473', NULL, 'cash', '', '', '', '', '', '', '111.3000', NULL, 15, NULL, 'received', '', '111.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 (3475, '2022-01-20 20:17:52', 3528, NULL, NULL, 'IPAY2022/01/3474', NULL, 'cash', '', '', '', '', '', '', '719.5800', NULL, 16, NULL, 'received', '', '719.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 (3476, '2022-01-20 20:22:54', 3529, NULL, NULL, 'IPAY2022/01/3475', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 15, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3477, '2022-01-20 21:01:34', 3530, NULL, NULL, 'IPAY2022/01/3476', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 15, 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 (3478, '2022-01-20 21:24:44', 3531, NULL, NULL, 'IPAY2022/01/3477', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 15, 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 (3479, '2022-01-20 21:31:11', 3532, NULL, NULL, 'IPAY2022/01/3478', NULL, 'cash', '', '', '', '', '', '', '231.5000', NULL, 16, 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 (3480, '2022-01-20 21:40:09', 3533, NULL, NULL, 'IPAY2022/01/3479', NULL, 'cash', '', '', '', '', '', '', '440.5000', NULL, 22, NULL, 'received', '', '440.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3481, '2022-01-20 21:42:51', 3534, NULL, NULL, 'IPAY2022/01/3480', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 16, 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 (3482, '2022-01-20 21:46:08', 3535, NULL, NULL, 'IPAY2022/01/3481', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 16, 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 (3483, '2022-01-20 21:57:22', 3536, NULL, NULL, 'IPAY2022/01/3482', NULL, 'cash', '', '', '', '', '', '', '132.5000', NULL, 22, NULL, 'received', '', '132.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3484, '2022-01-21 00:43:57', 3537, NULL, NULL, 'IPAY2022/01/3483', NULL, 'cash', '', '', '', '', '', '', '76.5000', NULL, 3, NULL, 'received', '', '76.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3485, '2022-01-21 00:47:43', 3538, NULL, NULL, 'IPAY2022/01/3484', NULL, 'cash', '', '', '', '', '', '', '76.5000', NULL, 3, NULL, 'received', '', '76.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3486, '2022-01-21 00:51:03', 3539, NULL, NULL, 'IPAY2022/01/3485', 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 (3487, '2022-01-21 14:24:43', 3540, NULL, NULL, 'IPAY2022/01/3486', NULL, 'cash', '', '', '', '', '', '', '143.0000', NULL, 21, NULL, 'received', '', '143.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3488, '2022-01-21 14:27:28', 3541, NULL, NULL, 'IPAY2022/01/3487', NULL, 'cash', '', '', '', '', '', '', '10.9000', NULL, 21, NULL, 'received', '', '10.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 (3489, '2022-01-21 14:39:05', 3542, NULL, NULL, 'IPAY2022/01/3488', 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 (3490, '2022-01-21 18:51:14', 3543, NULL, NULL, 'IPAY2022/01/3489', NULL, 'cash', '', '', '', '', '', '', '633.3800', NULL, 16, NULL, 'received', '', '633.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 (3491, '2022-01-21 21:19:17', 3544, NULL, NULL, 'IPAY2022/01/3490', NULL, 'cash', '', '', '', '', '', '', '565.6000', NULL, 11, NULL, 'received', '', '565.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 (3492, '2022-01-21 21:19:44', 3545, NULL, NULL, 'IPAY2022/01/3491', NULL, 'cash', '', '', '', '', '', '', '389.5000', NULL, 16, NULL, 'received', '', '389.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3493, '2022-01-21 21:24:40', 3546, NULL, NULL, 'IPAY2022/01/3492', 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 (3494, '2022-01-21 21:29:11', 3547, NULL, NULL, 'IPAY2022/01/3493', 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 (3495, '2022-01-21 21:33:02', 3548, NULL, NULL, 'IPAY2022/01/3494', NULL, 'cash', '', '', '', '', '', '', '540.5000', NULL, 22, NULL, 'received', '', '540.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3496, '2022-01-21 21:34:30', 3549, NULL, NULL, 'IPAY2022/01/3495', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 11, 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 (3497, '2022-01-21 21:43:21', 3550, NULL, NULL, 'IPAY2022/01/3496', NULL, 'cash', '', '', '', '', '', '', '64.5000', NULL, 16, 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 (3498, '2022-01-21 21:47:01', 3551, NULL, NULL, 'IPAY2022/01/3497', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 22, 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 (3499, '2022-01-21 21:54:04', 3552, NULL, NULL, 'IPAY2022/01/3498', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 22, 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 (3500, '2022-01-21 21:55:18', 3553, NULL, NULL, 'IPAY2022/01/3499', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 22, 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 (3501, '2022-01-21 21:57:31', 3554, NULL, NULL, 'IPAY2022/01/3500', 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 (3502, '2022-01-21 21:57:31', 3555, NULL, NULL, 'IPAY2022/01/3501', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 22, 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 (3503, '2022-01-22 15:01:11', 3556, NULL, NULL, 'IPAY2022/01/3502', NULL, 'cash', '', '', '', '', '', '', '301.7000', NULL, 22, NULL, 'received', '', '301.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 (3504, '2022-01-22 15:14:51', 3557, NULL, NULL, 'IPAY2022/01/3503', NULL, 'cash', '', '', '', '', '', '', '121.3000', NULL, 21, NULL, 'received', '', '121.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 (3505, '2022-01-22 15:31:46', 3558, NULL, NULL, 'IPAY2022/01/3504', NULL, 'cash', '', '', '', '', '', '', '116.0000', NULL, 11, 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 (3506, '2022-01-22 18:09:09', 3559, NULL, NULL, 'IPAY2022/01/3505', NULL, 'cash', '', '', '', '', '', '', '359.5000', NULL, 7, 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 (3507, '2022-01-22 18:36:11', 3560, NULL, NULL, 'IPAY2022/01/3506', NULL, 'cash', '', '', '', '', '', '', '417.0800', NULL, 16, NULL, 'received', '', '417.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 (3508, '2022-01-22 19:08:10', 3561, NULL, NULL, 'IPAY2022/01/3507', NULL, 'cash', '', '', '', '', '', '', '203.1000', NULL, 7, NULL, 'received', '', '203.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 (3509, '2022-01-22 19:36:52', 3562, NULL, NULL, 'IPAY2022/01/3508', 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 (3510, '2022-01-22 19:37:22', 3563, NULL, NULL, 'IPAY2022/01/3509', NULL, 'cash', '', '', '', '', '', '', '385.1000', NULL, 11, NULL, 'received', '', '385.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 (3511, '2022-01-22 19:52:50', 3564, NULL, NULL, 'IPAY2022/01/3510', NULL, 'cash', '', '', '', '', '', '', '19.4000', NULL, 11, NULL, 'received', '', '19.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 (3512, '2022-01-22 20:00:50', 3565, NULL, NULL, 'IPAY2022/01/3511', NULL, 'cash', '', '', '', '', '', '', '82.5000', NULL, 7, 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 (3513, '2022-01-22 20:45:52', 3566, NULL, NULL, 'IPAY2022/01/3512', NULL, 'cash', '', '', '', '', '', '', '65.3000', NULL, 7, NULL, 'received', '', '65.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 (3514, '2022-01-22 21:14:38', 3567, NULL, NULL, 'IPAY2022/01/3513', NULL, 'cash', '', '', '', '', '', '', '293.3000', NULL, 16, NULL, 'received', '', '293.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 (3515, '2022-01-22 21:41:51', 3568, NULL, NULL, 'IPAY2022/01/3514', NULL, 'cash', '', '', '', '', '', '', '54.6000', NULL, 16, 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 (3516, '2022-01-22 21:43:23', 3569, NULL, NULL, 'IPAY2022/01/3515', NULL, 'cash', '', '', '', '', '', '', '1.2000', NULL, 7, NULL, 'received', '', '1.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 (3517, '2022-01-22 21:55:10', 3570, NULL, NULL, 'IPAY2022/01/3516', NULL, 'cash', '', '', '', '', '', '', '111.3800', NULL, 11, NULL, 'received', '', '111.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 (3518, '2022-01-23 18:27:55', 3571, NULL, NULL, 'IPAY2022/01/3517', NULL, 'cash', '', '', '', '', '', '', '293.7000', NULL, 11, NULL, 'received', '', '293.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 (3519, '2022-01-23 18:43:12', 3572, NULL, NULL, 'IPAY2022/01/3518', NULL, 'cash', '', '', '', '', '', '', '478.1600', NULL, 16, NULL, 'received', '', '478.1600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3520, '2022-01-23 18:53:28', 3573, NULL, NULL, 'IPAY2022/01/3519', NULL, 'cash', '', '', '', '', '', '', '39.1000', NULL, 11, NULL, 'received', '', '39.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 (3521, '2022-01-23 20:32:48', 3574, NULL, NULL, 'IPAY2022/01/3520', NULL, 'cash', '', '', '', '', '', '', '128.0000', NULL, 11, NULL, 'received', '', '128.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3522, '2022-01-23 20:41:23', 3575, NULL, NULL, 'IPAY2022/01/3521', NULL, 'cash', '', '', '', '', '', '', '365.3000', NULL, 8, NULL, 'received', '', '365.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 (3523, '2022-01-23 20:45:13', 3576, NULL, NULL, 'IPAY2022/01/3522', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 8, 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 (3524, '2022-01-23 20:49:02', 3577, NULL, NULL, 'IPAY2022/01/3523', 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 (3525, '2022-01-23 20:51:33', 3578, NULL, NULL, 'IPAY2022/01/3524', 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 (3526, '2022-01-23 21:38:33', 3579, NULL, NULL, 'IPAY2022/01/3525', NULL, 'cash', '', '', '', '', '', '', '228.5800', NULL, 16, NULL, 'received', '', '228.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 (3527, '2022-01-23 21:40:00', 3580, NULL, NULL, 'IPAY2022/01/3526', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 8, 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 (3528, '2022-01-23 21:47:54', 3581, NULL, NULL, 'IPAY2022/01/3527', NULL, 'cash', '', '', '', '', '', '', '49.2000', NULL, 11, NULL, 'received', '', '49.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 (3529, '2022-01-24 13:52:04', 3582, NULL, NULL, 'IPAY2022/01/3528', NULL, 'cash', '', '', '', '', '', '', '414.5000', NULL, 17, NULL, 'received', '', '414.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3530, '2022-01-24 14:47:25', 3583, NULL, NULL, 'IPAY2022/01/3529', NULL, 'cash', '', '', '', '', '', '', '204.4000', NULL, 21, NULL, 'received', '', '204.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 (3531, '2022-01-24 17:06:50', 3584, NULL, NULL, 'IPAY2022/01/3530', 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 (3532, '2022-01-24 17:07:49', 3585, NULL, NULL, 'IPAY2022/01/3531', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 11, 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 (3533, '2022-01-24 17:20:58', 3586, NULL, NULL, 'IPAY2022/01/3532', NULL, 'cash', '', '', '', '', '', '', '120.8000', NULL, 11, NULL, 'received', '', '120.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 (3534, '2022-01-24 18:44:17', 3587, NULL, NULL, 'IPAY2022/01/3533', NULL, 'cash', '', '', '', '', '', '', '491.3000', NULL, 8, NULL, 'received', '', '491.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 (3535, '2022-01-24 20:01:00', 3588, NULL, NULL, 'IPAY2022/01/3534', NULL, 'cash', '', '', '', '', '', '', '529.5000', NULL, 17, NULL, 'received', '', '529.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3536, '2022-01-24 20:57:39', 3589, NULL, NULL, 'IPAY2022/01/3535', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 8, 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 (3537, '2022-01-24 21:34:51', 3590, NULL, NULL, 'IPAY2022/01/3536', NULL, 'cash', '', '', '', '', '', '', '735.0000', NULL, 22, NULL, 'received', '', '735.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3538, '2022-01-24 21:44:39', 3591, NULL, NULL, 'IPAY2022/01/3537', NULL, 'cash', '', '', '', '', '', '', '143.8000', NULL, 17, NULL, 'received', '', '143.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 (3539, '2022-01-24 21:48:50', 3592, NULL, NULL, 'IPAY2022/01/3538', NULL, 'cash', '', '', '', '', '', '', '554.0000', NULL, 11, NULL, 'received', '', '554.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3540, '2022-01-24 21:56:12', 3593, NULL, NULL, 'IPAY2022/01/3539', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 11, 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 (3541, '2022-01-24 22:17:50', 3594, NULL, NULL, 'IPAY2022/01/3540', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 11, 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 (3542, '2022-01-25 15:04:06', 3595, NULL, NULL, 'IPAY2022/01/3541', NULL, 'cash', '', '', '', '', '', '', '133.8000', NULL, 8, 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 (3543, '2022-01-25 15:06:26', 3596, NULL, NULL, 'IPAY2022/01/3542', NULL, 'cash', '', '', '', '', '', '', '148.0000', NULL, 15, NULL, 'received', '', '148.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3544, '2022-01-25 20:00:35', 3597, NULL, NULL, 'IPAY2022/01/3543', NULL, 'cash', '', '', '', '', '', '', '737.7600', NULL, 16, NULL, 'received', '', '737.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 (3545, '2022-01-25 20:21:38', 3598, NULL, NULL, 'IPAY2022/01/3544', NULL, 'cash', '', '', '', '', '', '', '485.0000', NULL, 22, NULL, 'received', '', '485.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3546, '2022-01-25 20:33:28', 3599, NULL, NULL, 'IPAY2022/01/3545', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 22, 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 (3547, '2022-01-25 20:45:15', 3600, NULL, NULL, 'IPAY2022/01/3546', NULL, 'cash', '', '', '', '', '', '', '410.4000', NULL, 11, NULL, 'received', '', '410.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 (3548, '2022-01-25 20:56:42', 3601, NULL, NULL, 'IPAY2022/01/3547', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 22, 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 (3549, '2022-01-25 21:04:53', 3602, NULL, NULL, 'IPAY2022/01/3548', NULL, 'cash', '', '', '', '', '', '', '86.6000', NULL, 11, NULL, 'received', '', '86.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 (3550, '2022-01-25 21:18:46', 3603, NULL, NULL, 'IPAY2022/01/3549', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 22, 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 (3551, '2022-01-25 21:36:20', 3604, NULL, NULL, 'IPAY2022/01/3550', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 22, 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 (3552, '2022-01-25 21:37:10', 3605, NULL, NULL, 'IPAY2022/01/3551', NULL, 'cash', '', '', '', '', '', '', '102.4000', NULL, 16, NULL, 'received', '', '102.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 (3553, '2022-01-25 21:42:40', 3606, NULL, NULL, 'IPAY2022/01/3552', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 22, 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 (3554, '2022-01-25 22:08:06', 3607, NULL, NULL, 'IPAY2022/01/3553', NULL, 'cash', '', '', '', '', '', '', '87.0000', NULL, 11, 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 (3555, '2022-01-26 14:40:46', 3608, NULL, NULL, 'IPAY2022/01/3554', NULL, 'cash', '', '', '', '', '', '', '160.3000', NULL, 21, NULL, 'received', '', '160.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 (3556, '2022-01-26 14:59:59', 3609, NULL, NULL, 'IPAY2022/01/3555', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 21, 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 (3557, '2022-01-26 15:35:52', 3610, NULL, NULL, 'IPAY2022/01/3556', NULL, 'cash', '', '', '', '', '', '', '44.6000', NULL, 8, 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 (3558, '2022-01-26 16:31:23', 3611, NULL, NULL, 'IPAY2022/01/3557', NULL, 'cash', '', '', '', '', '', '', '743.6800', NULL, 16, NULL, 'received', '', '743.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 (3559, '2022-01-26 19:44:05', 3612, NULL, NULL, 'IPAY2022/01/3558', NULL, 'cash', '', '', '', '', '', '', '324.3000', NULL, 11, NULL, 'received', '', '324.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 (3560, '2022-01-26 20:01:59', 3613, NULL, NULL, 'IPAY2022/01/3559', NULL, 'cash', '', '', '', '', '', '', '29.8000', NULL, 11, NULL, 'received', '', '29.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 (3561, '2022-01-26 20:36:51', 3614, NULL, NULL, 'IPAY2022/01/3560', 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 (3562, '2022-01-26 21:07:46', 3615, NULL, NULL, 'IPAY2022/01/3561', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 11, 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 (3563, '2022-01-26 21:19:35', 3616, NULL, NULL, 'IPAY2022/01/3562', NULL, 'cash', '', '', '', '', '', '', '195.1000', NULL, 22, NULL, 'received', '', '195.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 (3564, '2022-01-26 21:19:40', 3617, NULL, NULL, 'IPAY2022/01/3563', NULL, 'cash', '', '', '', '', '', '', '447.3800', NULL, 16, NULL, 'received', '', '447.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 (3565, '2022-01-26 21:41:56', 3618, NULL, NULL, 'IPAY2022/01/3564', NULL, 'cash', '', '', '', '', '', '', '13.5800', NULL, 16, NULL, 'received', '', '13.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 (3566, '2022-01-26 21:53:18', 3619, NULL, NULL, 'IPAY2022/01/3565', 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 (3567, '2022-01-26 22:11:42', 3620, NULL, NULL, 'IPAY2022/01/3566', NULL, 'cash', '', '', '', '', '', '', '141.5000', NULL, 11, NULL, 'received', '', '141.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3568, '2022-01-27 14:50:36', 3621, NULL, NULL, 'IPAY2022/01/3567', NULL, 'cash', '', '', '', '', '', '', '191.7000', NULL, 21, NULL, 'received', '', '191.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 (3569, '2022-01-27 14:54:36', 3622, NULL, NULL, 'IPAY2022/01/3568', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 21, 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 (3570, '2022-01-27 15:52:29', 3623, NULL, NULL, 'IPAY2022/01/3569', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 8, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3571, '2022-01-27 15:56:23', 3624, NULL, NULL, 'IPAY2022/01/3570', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 8, 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 (3572, '2022-01-27 18:43:51', 3625, NULL, NULL, 'IPAY2022/01/3571', NULL, 'cash', '', '', '', '', '', '', '157.6000', NULL, 15, NULL, 'received', '', '157.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 (3573, '2022-01-27 19:03:45', 3626, NULL, NULL, 'IPAY2022/01/3572', NULL, 'cash', '', '', '', '', '', '', '68.6000', NULL, 16, NULL, 'received', '', '68.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 (3574, '2022-01-27 19:25:49', 3627, NULL, NULL, 'IPAY2022/01/3573', NULL, 'cash', '', '', '', '', '', '', '368.7600', NULL, 16, NULL, 'received', '', '368.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 (3575, '2022-01-27 19:32:55', 3628, NULL, NULL, 'IPAY2022/01/3574', NULL, 'cash', '', '', '', '', '', '', '117.8000', NULL, 15, NULL, 'received', '', '117.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 (3576, '2022-01-27 20:03:12', 3629, NULL, NULL, 'IPAY2022/01/3575', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 15, 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 (3577, '2022-01-27 20:21:15', 3630, NULL, NULL, 'IPAY2022/01/3576', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 15, 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 (3578, '2022-01-27 20:42:19', 3631, NULL, NULL, 'IPAY2022/01/3577', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 15, 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 (3579, '2022-01-27 20:50:53', 3632, NULL, NULL, 'IPAY2022/01/3578', NULL, 'cash', '', '', '', '', '', '', '324.5000', NULL, 22, NULL, 'received', '', '324.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3580, '2022-01-27 20:57:20', 3633, NULL, NULL, 'IPAY2022/01/3579', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 15, 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 (3581, '2022-01-27 21:09:27', 3634, NULL, NULL, 'IPAY2022/01/3580', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 15, 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 (3582, '2022-01-27 21:24:46', 3635, NULL, NULL, 'IPAY2022/01/3581', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 15, 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 (3583, '2022-01-27 21:25:05', 3636, NULL, NULL, 'IPAY2022/01/3582', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 22, 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 (3584, '2022-01-27 21:39:15', 3637, NULL, NULL, 'IPAY2022/01/3583', NULL, 'cash', '', '', '', '', '', '', '224.5000', NULL, 17, NULL, 'received', '', '224.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3585, '2022-01-27 21:44:27', 3638, NULL, NULL, 'IPAY2022/01/3584', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (3586, '2022-01-27 21:45:10', 3639, NULL, NULL, 'IPAY2022/01/3585', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 22, 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 (3587, '2022-01-27 21:52:08', 3640, NULL, NULL, 'IPAY2022/01/3586', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 15, 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 (3588, '2022-01-28 13:57:36', 3641, NULL, NULL, 'IPAY2022/01/3587', 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 (3589, '2022-01-28 14:39:28', 3642, NULL, NULL, 'IPAY2022/01/3588', NULL, 'cash', '', '', '', '', '', '', '214.7000', NULL, 21, NULL, 'received', '', '214.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 (3590, '2022-01-28 14:54:30', 3643, NULL, NULL, 'IPAY2022/01/3589', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 21, 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 (3591, '2022-01-28 18:26:05', 3644, NULL, NULL, 'IPAY2022/01/3590', NULL, 'cash', '', '', '', '', '', '', '480.3800', NULL, 16, NULL, 'received', '', '480.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 (3592, '2022-01-28 21:14:24', 3645, NULL, NULL, 'IPAY2022/01/3591', NULL, 'cash', '', '', '', '', '', '', '273.2000', NULL, 16, NULL, 'received', '', '273.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 (3593, '2022-01-28 21:24:14', 3646, NULL, NULL, 'IPAY2022/01/3592', NULL, 'cash', '', '', '', '', '', '', '744.1000', NULL, 11, NULL, 'received', '', '744.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 (3594, '2022-01-28 21:29:34', 3647, NULL, NULL, 'IPAY2022/01/3593', NULL, 'cash', '', '', '', '', '', '', '111.3000', NULL, 22, NULL, 'received', '', '111.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 (3595, '2022-01-28 21:41:03', 3648, NULL, NULL, 'IPAY2022/01/3594', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 16, 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 (3596, '2022-01-28 21:57:19', 3649, NULL, NULL, 'IPAY2022/01/3595', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (3597, '2022-01-29 12:14:01', 3650, NULL, NULL, 'IPAY2022/01/3596', NULL, 'cash', '', '', '', '', '', '', '115.1000', NULL, 15, NULL, 'received', '', '115.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 (3598, '2022-01-29 13:42:40', 3651, NULL, NULL, 'IPAY2022/01/3597', NULL, 'cash', '', '', '', '', '', '', '76.2000', NULL, 15, NULL, 'received', '', '76.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 (3599, '2022-01-29 14:33:12', 3652, NULL, NULL, 'IPAY2022/01/3598', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (3600, '2022-01-29 20:27:34', 3653, NULL, NULL, 'IPAY2022/01/3599', NULL, 'cash', '', '', '', '', '', '', '113.3000', NULL, 8, NULL, 'received', '', '113.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 (3601, '2022-01-29 20:52:39', 3654, NULL, NULL, 'IPAY2022/01/3600', NULL, 'cash', '', '', '', '', '', '', '738.9800', NULL, 16, NULL, 'received', '', '738.9800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3602, '2022-01-29 21:15:53', 3655, NULL, NULL, 'IPAY2022/01/3601', NULL, 'cash', '', '', '', '', '', '', '341.7000', NULL, 22, NULL, 'received', '', '341.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 (3603, '2022-01-29 21:21:30', 3656, NULL, NULL, 'IPAY2022/01/3602', NULL, 'cash', '', '', '', '', '', '', '542.1000', NULL, 11, NULL, 'received', '', '542.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 (3604, '2022-01-29 21:25:54', 3657, NULL, NULL, 'IPAY2022/01/3603', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 11, 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 (3605, '2022-01-29 21:44:02', 3658, NULL, NULL, 'IPAY2022/01/3604', 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 (3606, '2022-01-29 21:46:12', 3659, NULL, NULL, 'IPAY2022/01/3605', NULL, 'cash', '', '', '', '', '', '', '89.8000', NULL, 16, NULL, 'received', '', '89.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 (3607, '2022-01-29 21:59:46', 3660, NULL, NULL, 'IPAY2022/01/3606', 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 (3608, '2022-01-30 18:55:31', 3661, NULL, NULL, 'IPAY2022/01/3607', NULL, 'cash', '', '', '', '', '', '', '175.6000', NULL, 15, NULL, 'received', '', '175.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 (3609, '2022-01-30 18:59:38', 3662, NULL, NULL, 'IPAY2022/01/3608', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 15, 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 (3610, '2022-01-30 19:46:55', 3663, NULL, NULL, 'IPAY2022/01/3609', NULL, 'cash', '', '', '', '', '', '', '296.2000', NULL, 8, NULL, 'received', '', '296.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 (3611, '2022-01-30 20:00:05', 3664, NULL, NULL, 'IPAY2022/01/3610', NULL, 'cash', '', '', '', '', '', '', '168.6000', NULL, 15, NULL, 'received', '', '168.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 (3612, '2022-01-30 20:20:53', 3665, NULL, NULL, 'IPAY2022/01/3611', 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 (3613, '2022-01-30 20:33:26', 3666, NULL, NULL, 'IPAY2022/01/3612', NULL, 'cash', '', '', '', '', '', '', '113.1000', NULL, 8, NULL, 'received', '', '113.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 (3614, '2022-01-30 20:41:16', 3667, NULL, NULL, 'IPAY2022/01/3613', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (3615, '2022-01-30 21:00:11', 3668, NULL, NULL, 'IPAY2022/01/3614', NULL, 'cash', '', '', '', '', '', '', '38.5000', NULL, 8, NULL, 'received', '', '38.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3616, '2022-01-30 21:05:03', 3669, NULL, NULL, 'IPAY2022/01/3615', NULL, 'cash', '', '', '', '', '', '', '53.5000', NULL, 15, NULL, 'received', '', '53.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3617, '2022-01-30 21:25:54', 3670, NULL, NULL, 'IPAY2022/01/3616', NULL, 'cash', '', '', '', '', '', '', '649.3600', NULL, 17, NULL, 'received', '', '649.3600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3618, '2022-01-30 21:28:50', 3671, NULL, NULL, 'IPAY2022/01/3617', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 15, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3619, '2022-01-30 21:32:29', 3672, NULL, NULL, 'IPAY2022/01/3618', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 15, 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 (3620, '2022-01-30 21:44:38', 3673, NULL, NULL, 'IPAY2022/01/3619', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 15, 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 (3621, '2022-01-30 21:49:54', 3674, NULL, NULL, 'IPAY2022/01/3620', NULL, 'cash', '', '', '', '', '', '', '37.4000', NULL, 17, NULL, 'received', '', '37.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 (3622, '2022-01-30 21:50:20', 3675, NULL, NULL, 'IPAY2022/01/3621', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 15, 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 (3623, '2022-01-31 10:33:10', 3676, NULL, NULL, 'IPAY2022/01/3622', NULL, 'cash', '', '', '', '', '', '', '234.7400', NULL, 15, NULL, 'received', '', '234.7400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3624, '2022-01-31 12:24:44', 3677, NULL, NULL, 'IPAY2022/01/3623', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 15, 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 (3625, '2022-01-31 13:34:20', 3678, NULL, NULL, 'IPAY2022/01/3624', NULL, 'cash', '', '', '', '', '', '', '14.8000', NULL, 15, NULL, 'received', '', '14.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 (3626, '2022-01-31 14:22:16', 3679, NULL, NULL, 'IPAY2022/01/3625', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 15, 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 (3627, '2022-01-31 14:40:44', 3680, NULL, NULL, 'IPAY2022/01/3626', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 15, 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 (3628, '2022-01-31 14:52:44', 3681, NULL, NULL, 'IPAY2022/01/3627', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 15, 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 (3629, '2022-01-31 15:00:33', 3682, NULL, NULL, 'IPAY2022/01/3628', NULL, 'cash', '', '', '', '', '', '', '706.5600', NULL, 17, NULL, 'received', '', '706.5600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3630, '2022-01-31 15:02:12', 3683, NULL, NULL, 'IPAY2022/01/3629', 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 (3631, '2022-01-31 15:15:16', 3684, NULL, NULL, 'IPAY2022/01/3630', NULL, 'cash', '', '', '', '', '', '', '225.0000', NULL, 8, NULL, 'received', '', '225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3632, '2022-01-31 20:22:49', 3685, NULL, NULL, 'IPAY2022/01/3631', NULL, 'cash', '', '', '', '', '', '', '621.5000', NULL, 17, NULL, 'received', '', '621.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3633, '2022-01-31 20:45:19', 3686, NULL, NULL, 'IPAY2022/01/3632', 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 (3634, '2022-01-31 21:18:35', 3687, NULL, NULL, 'IPAY2022/01/3633', NULL, 'cash', '', '', '', '', '', '', '141.8000', NULL, 22, NULL, 'received', '', '141.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 (3635, '2022-01-31 21:40:51', 3688, NULL, NULL, 'IPAY2022/01/3634', NULL, 'cash', '', '', '', '', '', '', '761.8800', NULL, 11, NULL, 'received', '', '761.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 (3636, '2022-01-31 21:47:48', 3689, NULL, NULL, 'IPAY2022/01/3635', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 11, 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 (3637, '2022-01-31 21:55:01', 3690, NULL, NULL, 'IPAY2022/01/3636', 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 (3638, '2022-01-31 22:00:36', 3691, NULL, NULL, 'IPAY2022/01/3637', NULL, 'cash', '', '', '', '', '', '', '322.8000', NULL, 17, NULL, 'received', '', '322.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 (3639, '2022-02-01 11:06:43', 3692, NULL, NULL, 'IPAY2022/02/3638', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 17, 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 (3640, '2022-02-01 13:08:35', 3693, NULL, NULL, 'IPAY2022/02/3639', NULL, 'cash', '', '', '', '', '', '', '214.7000', NULL, 15, NULL, 'received', '', '214.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 (3641, '2022-02-01 13:21:47', 3694, NULL, NULL, 'IPAY2022/02/3640', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 15, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3642, '2022-02-01 14:46:58', 3695, NULL, NULL, 'IPAY2022/02/3641', NULL, 'cash', '', '', '', '', '', '', '585.0800', NULL, 17, NULL, 'received', '', '585.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 (3643, '2022-02-01 14:48:47', 3696, NULL, NULL, 'IPAY2022/02/3642', NULL, 'cash', '', '', '', '', '', '', '44.2000', NULL, 15, 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 (3644, '2022-02-01 14:56:05', 3697, NULL, NULL, 'IPAY2022/02/3643', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 15, 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 (3645, '2022-02-01 15:22:25', 3698, NULL, NULL, 'IPAY2022/02/3644', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 17, 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 (3646, '2022-02-01 20:48:42', 3699, NULL, NULL, 'IPAY2022/02/3645', NULL, 'cash', '', '', '', '', '', '', '400.1000', NULL, 16, NULL, 'received', '', '400.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 (3647, '2022-02-01 21:12:16', 3700, NULL, NULL, 'IPAY2022/02/3646', 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 (3648, '2022-02-01 21:22:17', 3701, NULL, NULL, 'IPAY2022/02/3647', NULL, 'cash', '', '', '', '', '', '', '155.6000', NULL, 22, NULL, 'received', '', '155.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 (3649, '2022-02-01 21:25:20', 3702, NULL, NULL, 'IPAY2022/02/3648', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 22, 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 (3650, '2022-02-01 21:33:17', 3703, NULL, NULL, 'IPAY2022/02/3649', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 22, 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 (3651, '2022-02-01 21:41:25', 3704, NULL, NULL, 'IPAY2022/02/3650', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 16, 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 (3652, '2022-02-01 21:46:44', 3705, NULL, NULL, 'IPAY2022/02/3651', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 16, 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 (3653, '2022-02-01 21:59:08', 3706, NULL, NULL, 'IPAY2022/02/3652', NULL, 'cash', '', '', '', '', '', '', '495.8000', NULL, 11, NULL, 'received', '', '495.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 (3654, '2022-02-01 22:10:13', 3707, NULL, NULL, 'IPAY2022/02/3653', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 11, 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 (3655, '2022-02-02 14:29:47', 3708, NULL, NULL, 'IPAY2022/02/3654', NULL, 'cash', '', '', '', '', '', '', '509.3000', NULL, 21, NULL, 'received', '', '509.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 (3656, '2022-02-02 14:51:05', 3709, NULL, NULL, 'IPAY2022/02/3655', NULL, 'cash', '', '', '', '', '', '', '478.5000', NULL, 16, NULL, 'received', '', '478.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3657, '2022-02-02 15:08:16', 3710, NULL, NULL, 'IPAY2022/02/3656', NULL, 'cash', '', '', '', '', '', '', '317.0000', NULL, 8, NULL, 'received', '', '317.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3658, '2022-02-02 16:06:13', 3711, NULL, NULL, 'IPAY2022/02/3657', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 16, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3659, '2022-02-02 16:31:31', 3712, NULL, NULL, 'IPAY2022/02/3658', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 22, 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 (3660, '2022-02-02 19:08:29', 3713, NULL, NULL, 'IPAY2022/02/3659', NULL, 'cash', '', '', '', '', '', '', '282.4000', NULL, 11, NULL, 'received', '', '282.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 (3661, '2022-02-02 20:58:36', 3714, NULL, NULL, 'IPAY2022/02/3660', NULL, 'cash', '', '', '', '', '', '', '413.2000', NULL, 11, NULL, 'received', '', '413.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 (3662, '2022-02-02 21:14:33', 3715, NULL, NULL, 'IPAY2022/02/3661', NULL, 'cash', '', '', '', '', '', '', '490.5000', NULL, 17, NULL, 'received', '', '490.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3663, '2022-02-02 21:21:53', 3716, NULL, NULL, 'IPAY2022/02/3662', NULL, 'cash', '', '', '', '', '', '', '162.0000', NULL, 22, NULL, 'received', '', '162.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3664, '2022-02-02 21:26:27', 3717, NULL, NULL, 'IPAY2022/02/3663', NULL, 'cash', '', '', '', '', '', '', '4.9000', NULL, 22, 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 (3665, '2022-02-02 21:45:36', 3718, NULL, NULL, 'IPAY2022/02/3664', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 22, 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 (3666, '2022-02-02 21:48:05', 3719, NULL, NULL, 'IPAY2022/02/3665', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 11, 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 (3667, '2022-02-02 21:48:59', 3720, NULL, NULL, 'IPAY2022/02/3666', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 17, 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 (3668, '2022-02-02 21:51:04', 3721, NULL, NULL, 'IPAY2022/02/3667', 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 (3669, '2022-02-02 21:53:31', 3722, NULL, NULL, 'IPAY2022/02/3668', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 22, 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 (3670, '2022-02-03 15:17:04', 3723, NULL, NULL, 'IPAY2022/02/3669', NULL, 'cash', '', '', '', '', '', '', '152.8000', NULL, 21, NULL, 'received', '', '152.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 (3671, '2022-02-03 15:32:54', 3724, NULL, NULL, 'IPAY2022/02/3670', NULL, 'cash', '', '', '', '', '', '', '542.5000', NULL, 17, NULL, 'received', '', '542.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3672, '2022-02-03 15:36:58', 3725, NULL, NULL, 'IPAY2022/02/3671', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 21, 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 (3673, '2022-02-03 17:29:49', 3726, NULL, NULL, 'IPAY2022/02/3672', NULL, 'cash', '', '', '', '', '', '', '272.4000', NULL, 15, NULL, 'received', '', '272.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 (3674, '2022-02-03 18:21:51', 3727, NULL, NULL, 'IPAY2022/02/3673', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 15, 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 (3675, '2022-02-03 19:06:53', 3728, NULL, NULL, 'IPAY2022/02/3674', NULL, 'cash', '', '', '', '', '', '', '94.5000', NULL, 15, NULL, 'received', '', '94.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3676, '2022-02-03 20:44:17', 3729, NULL, NULL, 'IPAY2022/02/3675', NULL, 'cash', '', '', '', '', '', '', '201.6000', NULL, 15, NULL, 'received', '', '201.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 (3677, '2022-02-03 20:50:08', 3730, NULL, NULL, 'IPAY2022/02/3676', NULL, 'cash', '', '', '', '', '', '', '583.5800', NULL, 16, NULL, 'received', '', '583.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 (3678, '2022-02-03 21:04:24', 3731, NULL, NULL, 'IPAY2022/02/3677', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 8, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3679, '2022-02-03 21:17:07', 3732, NULL, NULL, 'IPAY2022/02/3678', NULL, 'cash', '', '', '', '', '', '', '201.6000', NULL, 15, NULL, 'received', '', '201.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 (3680, '2022-02-03 21:21:24', 3733, NULL, NULL, 'IPAY2022/02/3679', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 15, 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 (3681, '2022-02-03 21:24:09', 3734, NULL, NULL, 'IPAY2022/02/3680', NULL, 'cash', '', '', '', '', '', '', '101.8000', NULL, 22, NULL, 'received', '', '101.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 (3682, '2022-02-03 21:29:07', 3735, NULL, NULL, 'IPAY2022/02/3681', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 15, 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 (3683, '2022-02-03 21:39:07', 3736, NULL, NULL, 'IPAY2022/02/3682', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 16, 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 (3684, '2022-02-03 21:45:05', 3737, NULL, NULL, 'IPAY2022/02/3683', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 15, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3685, '2022-02-04 12:03:29', 3738, NULL, NULL, 'IPAY2022/02/3684', NULL, 'cash', '', '', '', '', '', '', '140.5000', NULL, 7, NULL, 'received', '', '140.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3686, '2022-02-04 14:32:07', 3739, NULL, NULL, 'IPAY2022/02/3685', NULL, 'cash', '', '', '', '', '', '', '206.3000', NULL, 21, NULL, 'received', '', '206.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 (3687, '2022-02-04 14:40:45', 3740, NULL, NULL, 'IPAY2022/02/3686', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 21, 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 (3688, '2022-02-04 15:57:06', 3741, NULL, NULL, 'IPAY2022/02/3687', NULL, 'cash', '', '', '', '', '', '', '210.6000', NULL, 17, NULL, 'received', '', '210.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 (3689, '2022-02-04 20:48:55', 3742, NULL, NULL, 'IPAY2022/02/3688', NULL, 'cash', '', '', '', '', '', '', '620.5900', NULL, 16, NULL, 'received', '', '620.5900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3690, '2022-02-04 21:27:04', 3743, NULL, NULL, 'IPAY2022/02/3689', NULL, 'cash', '', '', '', '', '', '', '592.5800', NULL, 11, NULL, 'received', '', '592.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 (3691, '2022-02-04 21:43:21', 3744, NULL, NULL, 'IPAY2022/02/3690', NULL, 'cash', '', '', '', '', '', '', '87.5000', NULL, 16, 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 (3692, '2022-02-04 21:54:12', 3745, NULL, NULL, 'IPAY2022/02/3691', NULL, 'cash', '', '', '', '', '', '', '16.8000', NULL, 11, NULL, 'received', '', '16.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 (3693, '2022-02-04 22:11:53', 3746, NULL, NULL, 'IPAY2022/02/3692', NULL, 'cash', '', '', '', '', '', '', '191.1000', NULL, 22, NULL, 'received', '', '191.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 (3694, '2022-02-05 15:13:15', 3747, NULL, NULL, 'IPAY2022/02/3693', NULL, 'cash', '', '', '', '', '', '', '41.0200', NULL, 22, NULL, 'received', '', '41.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 (3695, '2022-02-05 15:22:10', 3748, NULL, NULL, 'IPAY2022/02/3694', NULL, 'cash', '', '', '', '', '', '', '141.6000', NULL, 21, NULL, 'received', '', '141.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 (3696, '2022-02-05 19:04:41', 3749, NULL, NULL, 'IPAY2022/02/3695', 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 (3697, '2022-02-05 19:31:28', 3750, NULL, NULL, 'IPAY2022/02/3696', 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 (3698, '2022-02-05 19:54:49', 3751, NULL, NULL, 'IPAY2022/02/3697', NULL, 'cash', '', '', '', '', '', '', '696.3800', NULL, 16, NULL, 'received', '', '696.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 (3699, '2022-02-05 20:50:34', 3752, NULL, NULL, 'IPAY2022/02/3698', NULL, 'cash', '', '', '', '', '', '', '622.9600', NULL, 11, NULL, 'received', '', '622.9600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3700, '2022-02-05 21:30:35', 3753, NULL, NULL, 'IPAY2022/02/3699', NULL, 'cash', '', '', '', '', '', '', '84.6000', NULL, 7, NULL, 'received', '', '84.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 (3701, '2022-02-05 21:32:27', 3754, NULL, NULL, 'IPAY2022/02/3700', 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 (3702, '2022-02-05 21:33:56', 3755, NULL, NULL, 'IPAY2022/02/3701', 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 (3703, '2022-02-05 21:36:25', 3756, NULL, NULL, 'IPAY2022/02/3702', NULL, 'cash', '', '', '', '', '', '', '231.4600', NULL, 16, NULL, 'received', '', '231.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 (3704, '2022-02-05 21:55:32', 3757, NULL, NULL, 'IPAY2022/02/3703', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 11, 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 (3705, '2022-02-06 18:21:45', 3758, NULL, NULL, 'IPAY2022/02/3704', NULL, 'cash', '', '', '', '', '', '', '493.4600', NULL, 16, NULL, 'received', '', '493.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 (3706, '2022-02-06 21:03:36', 3759, NULL, NULL, 'IPAY2022/02/3705', NULL, 'cash', '', '', '', '', '', '', '747.2200', NULL, 16, NULL, 'received', '', '747.2200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3707, '2022-02-06 21:05:00', 3760, NULL, NULL, 'IPAY2022/02/3706', NULL, 'cash', '', '', '', '', '', '', '155.2000', NULL, 8, 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 (3708, '2022-02-06 21:08:45', 3761, NULL, NULL, 'IPAY2022/02/3707', 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 (3709, '2022-02-06 21:15:06', 3762, NULL, NULL, 'IPAY2022/02/3708', NULL, 'cash', '', '', '', '', '', '', '368.0800', NULL, 11, NULL, 'received', '', '368.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 (3710, '2022-02-06 21:36:31', 3763, NULL, NULL, 'IPAY2022/02/3709', 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 (3711, '2022-02-06 21:41:05', 3764, NULL, NULL, 'IPAY2022/02/3710', NULL, 'cash', '', '', '', '', '', '', '57.9000', NULL, 16, NULL, 'received', '', '57.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 (3712, '2022-02-06 21:49:55', 3765, NULL, NULL, 'IPAY2022/02/3711', 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 (3713, '2022-02-07 14:36:36', 3766, NULL, NULL, 'IPAY2022/02/3712', NULL, 'cash', '', '', '', '', '', '', '278.3000', NULL, 21, NULL, 'received', '', '278.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 (3714, '2022-02-07 15:15:29', 3767, NULL, NULL, 'IPAY2022/02/3713', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 21, 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 (3715, '2022-02-07 15:22:27', 3768, NULL, NULL, 'IPAY2022/02/3714', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 8, 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 (3716, '2022-02-07 15:56:54', 3769, NULL, NULL, 'IPAY2022/02/3715', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 22, 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 (3717, '2022-02-07 17:15:12', 3770, NULL, NULL, 'IPAY2022/02/3716', NULL, 'cash', '', '', '', '', '', '', '830.5000', NULL, 17, NULL, 'received', '', '830.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3718, '2022-02-07 21:34:19', 3771, NULL, NULL, 'IPAY2022/02/3717', NULL, 'cash', '', '', '', '', '', '', '216.0000', NULL, 22, 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 (3719, '2022-02-07 21:35:51', 3772, NULL, NULL, 'IPAY2022/02/3718', NULL, 'cash', '', '', '', '', '', '', '740.7000', NULL, 11, NULL, 'received', '', '740.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 (3720, '2022-02-07 21:36:04', 3773, NULL, NULL, 'IPAY2022/02/3719', NULL, 'cash', '', '', '', '', '', '', '634.4800', NULL, 17, NULL, 'received', '', '634.4800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3721, '2022-02-07 21:36:50', 3774, NULL, NULL, 'IPAY2022/02/3720', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (3722, '2022-02-07 21:47:22', 3775, NULL, NULL, 'IPAY2022/02/3721', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 17, 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 (3723, '2022-02-07 21:57:58', 3776, NULL, NULL, 'IPAY2022/02/3722', 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 (3724, '2022-02-07 22:03:29', 3777, NULL, NULL, 'IPAY2022/02/3723', NULL, 'cash', '', '', '', '', '', '', '60.5000', NULL, 11, NULL, 'received', '', '60.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3725, '2022-02-08 13:32:41', 3778, NULL, NULL, 'IPAY2022/02/3724', NULL, 'cash', '', '', '', '', '', '', '221.3000', NULL, 15, NULL, 'received', '', '221.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 (3726, '2022-02-08 14:31:01', 3779, NULL, NULL, 'IPAY2022/02/3725', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (3727, '2022-02-08 14:46:21', 3780, NULL, NULL, 'IPAY2022/02/3726', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 15, 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 (3728, '2022-02-08 14:59:20', 3781, NULL, NULL, 'IPAY2022/02/3727', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 15, 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 (3729, '2022-02-08 15:18:51', 3782, NULL, NULL, 'IPAY2022/02/3728', NULL, 'cash', '', '', '', '', '', '', '88.5000', NULL, 8, 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 (3730, '2022-02-08 15:59:04', 3783, NULL, NULL, 'IPAY2022/02/3729', NULL, 'cash', '', '', '', '', '', '', '319.7000', NULL, 17, NULL, 'received', '', '319.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 (3731, '2022-02-08 21:01:24', 3784, NULL, NULL, 'IPAY2022/02/3730', NULL, 'cash', '', '', '', '', '', '', '185.0000', NULL, 22, 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 (3732, '2022-02-08 21:06:30', 3785, NULL, NULL, 'IPAY2022/02/3731', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 22, 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 (3733, '2022-02-08 21:14:07', 3786, NULL, NULL, 'IPAY2022/02/3732', NULL, 'cash', '', '', '', '', '', '', '547.1800', NULL, 16, NULL, 'received', '', '547.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 (3734, '2022-02-08 21:26:25', 3787, NULL, NULL, 'IPAY2022/02/3733', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 16, 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 (3735, '2022-02-08 21:37:48', 3788, NULL, NULL, 'IPAY2022/02/3734', NULL, 'cash', '', '', '', '', '', '', '764.0000', NULL, 11, NULL, 'received', '', '764.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3736, '2022-02-08 21:45:34', 3789, NULL, NULL, 'IPAY2022/02/3735', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 16, 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 (3737, '2022-02-08 21:56:59', 3790, NULL, NULL, 'IPAY2022/02/3736', 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 (3738, '2022-02-08 21:59:06', 3791, NULL, NULL, 'IPAY2022/02/3737', 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 (3739, '2022-02-09 11:12:28', 3792, NULL, NULL, 'IPAY2022/02/3738', NULL, 'cash', '', '', '', '', '', '', '312.6000', NULL, 27, NULL, 'received', '', '312.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 (3740, '2022-02-09 11:41:05', 3793, NULL, NULL, 'IPAY2022/02/3739', NULL, 'cash', '', '', '', '', '', '', '142.5000', NULL, 27, NULL, 'received', '', '142.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3741, '2022-02-09 12:13:28', 3794, NULL, NULL, 'IPAY2022/02/3740', NULL, 'cash', '', '', '', '', '', '', '127.0000', NULL, 27, 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 (3742, '2022-02-09 14:11:45', 3795, NULL, NULL, 'IPAY2022/02/3741', NULL, 'cash', '', '', '', '', '', '', '130.0000', NULL, 27, NULL, 'received', '', '130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3743, '2022-02-09 14:29:04', 3796, NULL, NULL, 'IPAY2022/02/3742', NULL, 'cash', '', '', '', '', '', '', '105.0000', NULL, 21, 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 (3744, '2022-02-09 14:31:08', 3797, NULL, NULL, 'IPAY2022/02/3743', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 27, 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 (3745, '2022-02-09 14:36:14', 3798, NULL, NULL, 'IPAY2022/02/3744', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 21, 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 (3746, '2022-02-09 20:33:48', 3799, NULL, NULL, 'IPAY2022/02/3745', NULL, 'cash', '', '', '', '', '', '', '40.3000', NULL, 8, NULL, 'received', '', '40.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 (3747, '2022-02-09 20:45:48', 3800, NULL, NULL, 'IPAY2022/02/3746', NULL, 'cash', '', '', '', '', '', '', '304.6000', NULL, 22, NULL, 'received', '', '304.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 (3748, '2022-02-09 20:54:06', 3801, NULL, NULL, 'IPAY2022/02/3747', NULL, 'cash', '', '', '', '', '', '', '844.5000', NULL, 16, NULL, 'received', '', '844.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3749, '2022-02-09 21:06:24', 3802, NULL, NULL, 'IPAY2022/02/3748', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 22, 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 (3750, '2022-02-09 21:11:22', 3803, NULL, NULL, 'IPAY2022/02/3749', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 22, 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 (3751, '2022-02-09 21:25:58', 3804, NULL, NULL, 'IPAY2022/02/3750', NULL, 'cash', '', '', '', '', '', '', '636.4000', NULL, 11, NULL, 'received', '', '636.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 (3752, '2022-02-09 21:37:09', 3805, NULL, NULL, 'IPAY2022/02/3751', 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 (3753, '2022-02-09 21:42:48', 3806, NULL, NULL, 'IPAY2022/02/3752', NULL, 'cash', '', '', '', '', '', '', '35.8000', NULL, 16, 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 (3754, '2022-02-09 21:51:02', 3807, NULL, NULL, 'IPAY2022/02/3753', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 11, 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 (3755, '2022-02-10 14:46:48', 3808, NULL, NULL, 'IPAY2022/02/3754', NULL, 'cash', '', '', '', '', '', '', '432.5000', NULL, 21, NULL, 'received', '', '432.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3756, '2022-02-10 15:36:59', 3809, NULL, NULL, 'IPAY2022/02/3755', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 8, 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 (3757, '2022-02-10 15:40:56', 3810, NULL, NULL, 'IPAY2022/02/3756', NULL, 'cash', '', '', '', '', '', '', '329.4000', NULL, 17, NULL, 'received', '', '329.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 (3758, '2022-02-10 17:50:44', 3811, NULL, NULL, 'IPAY2022/02/3757', NULL, 'cash', '', '', '', '', '', '', '101.0000', NULL, 8, 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 (3759, '2022-02-10 19:29:31', 3812, NULL, NULL, 'IPAY2022/02/3758', NULL, 'cash', '', '', '', '', '', '', '297.3000', NULL, 15, NULL, 'received', '', '297.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 (3760, '2022-02-10 20:17:45', 3813, NULL, NULL, 'IPAY2022/02/3759', NULL, 'cash', '', '', '', '', '', '', '543.4000', NULL, 16, NULL, 'received', '', '543.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 (3761, '2022-02-10 20:21:47', 3814, NULL, NULL, 'IPAY2022/02/3760', NULL, 'cash', '', '', '', '', '', '', '195.0000', NULL, 15, NULL, 'received', '', '195.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3762, '2022-02-10 20:40:42', 3815, NULL, NULL, 'IPAY2022/02/3761', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 15, 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 (3763, '2022-02-10 20:43:22', 3816, NULL, NULL, 'IPAY2022/02/3762', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 15, 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 (3764, '2022-02-10 21:18:33', 3817, NULL, NULL, 'IPAY2022/02/3763', NULL, 'cash', '', '', '', '', '', '', '134.0000', NULL, 15, 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 (3765, '2022-02-10 21:24:34', 3818, NULL, NULL, 'IPAY2022/02/3764', NULL, 'cash', '', '', '', '', '', '', '94.3000', NULL, 22, NULL, 'received', '', '94.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 (3766, '2022-02-10 21:30:17', 3819, NULL, NULL, 'IPAY2022/02/3765', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 15, 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 (3767, '2022-02-10 21:33:16', 3820, NULL, NULL, 'IPAY2022/02/3766', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 22, 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 (3768, '2022-02-10 21:38:27', 3821, NULL, NULL, 'IPAY2022/02/3767', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (3769, '2022-02-10 21:40:22', 3822, NULL, NULL, 'IPAY2022/02/3768', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 15, 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 (3770, '2022-02-10 21:40:42', 3823, NULL, NULL, 'IPAY2022/02/3769', NULL, 'cash', '', '', '', '', '', '', '88.3700', NULL, 16, NULL, 'received', '', '88.3700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3771, '2022-02-10 21:42:17', 3824, NULL, NULL, 'IPAY2022/02/3770', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 15, 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 (3772, '2022-02-10 21:50:14', 3825, NULL, NULL, 'IPAY2022/02/3771', NULL, 'cash', '', '', '', '', '', '', '22.9000', NULL, 15, NULL, 'received', '', '22.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 (3773, '2022-02-10 21:55:53', 3826, NULL, NULL, 'IPAY2022/02/3772', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 15, 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 (3774, '2022-02-11 12:20:36', 3827, NULL, NULL, 'IPAY2022/02/3773', NULL, 'cash', '', '', '', '', '', '', '124.2000', NULL, 7, NULL, 'received', '', '124.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 (3775, '2022-02-11 15:03:51', 3828, NULL, NULL, 'IPAY2022/02/3774', NULL, 'cash', '', '', '', '', '', '', '374.2000', NULL, 21, NULL, 'received', '', '374.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 (3776, '2022-02-11 15:09:04', 3829, NULL, NULL, 'IPAY2022/02/3775', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 7, 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 (3777, '2022-02-11 16:05:15', 3830, NULL, NULL, 'IPAY2022/02/3776', NULL, 'cash', '', '', '', '', '', '', '319.4000', NULL, 17, NULL, 'received', '', '319.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 (3778, '2022-02-11 17:45:20', 3831, NULL, NULL, 'IPAY2022/02/3777', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 4, 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 (3779, '2022-02-11 17:46:58', 3832, NULL, NULL, 'IPAY2022/02/3778', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 4, 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 (3780, '2022-02-11 18:08:47', 3833, NULL, NULL, 'IPAY2022/02/3779', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 30, 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 (3781, '2022-02-11 19:03:24', 3834, NULL, NULL, 'IPAY2022/02/3780', NULL, 'cash', '', '', '', '', '', '', '253.1000', NULL, 11, NULL, 'received', '', '253.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 (3782, '2022-02-11 20:03:31', 3835, NULL, NULL, 'IPAY2022/02/3781', NULL, 'cash', '', '', '', '', '', '', '119.3000', NULL, 11, NULL, 'received', '', '119.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 (3783, '2022-02-11 21:00:24', 3836, NULL, NULL, 'IPAY2022/02/3782', NULL, 'cash', '', '', '', '', '', '', '493.0000', NULL, 16, 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 (3784, '2022-02-11 21:32:01', 3837, NULL, NULL, 'IPAY2022/02/3783', NULL, 'cash', '', '', '', '', '', '', '131.4000', NULL, 22, NULL, 'received', '', '131.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 (3785, '2022-02-11 21:32:39', 3838, NULL, NULL, 'IPAY2022/02/3784', NULL, 'cash', '', '', '', '', '', '', '91.5000', NULL, 11, NULL, 'received', '', '91.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3786, '2022-02-11 21:41:00', 3839, NULL, NULL, 'IPAY2022/02/3785', NULL, 'cash', '', '', '', '', '', '', '242.0000', NULL, 16, 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 (3787, '2022-02-11 21:50:49', 3840, NULL, NULL, 'IPAY2022/02/3786', NULL, 'cash', '', '', '', '', '', '', '41.3000', NULL, 11, NULL, 'received', '', '41.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 (3788, '2022-02-12 09:03:35', 3841, NULL, NULL, 'IPAY2022/02/3787', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 4, 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 (3789, '2022-02-12 14:28:42', 3842, NULL, NULL, 'IPAY2022/02/3788', NULL, 'cash', '', '', '', '', '', '', '331.9000', NULL, 21, NULL, 'received', '', '331.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 (3790, '2022-02-12 14:41:06', 3843, NULL, NULL, 'IPAY2022/02/3789', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 21, 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 (3791, '2022-02-12 15:51:43', 3844, NULL, NULL, 'IPAY2022/02/3790', NULL, 'cash', '', '', '', '', '', '', '138.8000', NULL, 8, NULL, 'received', '', '138.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 (3792, '2022-02-12 15:57:01', 3845, NULL, NULL, 'IPAY2022/02/3791', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 8, 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 (3793, '2022-02-12 17:15:27', 3846, NULL, NULL, 'IPAY2022/02/3792', NULL, 'cash', '', '', '', '', '', '', '354.6000', NULL, 16, NULL, 'received', '', '354.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 (3794, '2022-02-12 19:03:38', 3847, NULL, NULL, 'IPAY2022/02/3793', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 22, 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 (3795, '2022-02-12 20:35:53', 3848, NULL, NULL, 'IPAY2022/02/3794', NULL, 'cash', '', '', '', '', '', '', '508.8900', NULL, 16, NULL, 'received', '', '508.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 (3796, '2022-02-12 21:13:27', 3849, NULL, NULL, 'IPAY2022/02/3795', NULL, 'cash', '', '', '', '', '', '', '297.0000', NULL, 22, NULL, 'received', '', '297.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3797, '2022-02-12 21:21:36', 3850, NULL, NULL, 'IPAY2022/02/3796', NULL, 'cash', '', '', '', '', '', '', '159.8000', NULL, 16, NULL, 'received', '', '159.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 (3798, '2022-02-12 21:43:01', 3851, NULL, NULL, 'IPAY2022/02/3797', NULL, 'cash', '', '', '', '', '', '', '20.1000', NULL, 16, NULL, 'received', '', '20.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 (3799, '2022-02-12 21:45:27', 3852, NULL, NULL, 'IPAY2022/02/3798', NULL, 'cash', '', '', '', '', '', '', '976.7000', NULL, 11, NULL, 'received', '', '976.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 (3800, '2022-02-12 21:53:02', 3853, NULL, NULL, 'IPAY2022/02/3799', 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 (3801, '2022-02-12 22:05:46', 3854, NULL, NULL, 'IPAY2022/02/3800', 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 (3802, '2022-02-13 18:14:54', 3855, NULL, NULL, 'IPAY2022/02/3801', NULL, 'cash', '', '', '', '', '', '', '296.5000', NULL, 15, NULL, 'received', '', '296.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3803, '2022-02-13 19:29:59', 3856, NULL, NULL, 'IPAY2022/02/3802', NULL, 'cash', '', '', '', '', '', '', '143.6000', NULL, 15, NULL, 'received', '', '143.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 (3804, '2022-02-13 19:53:05', 3857, NULL, NULL, 'IPAY2022/02/3803', NULL, 'cash', '', '', '', '', '', '', '69.5000', NULL, 15, NULL, 'received', '', '69.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3805, '2022-02-13 20:19:08', 3858, NULL, NULL, 'IPAY2022/02/3804', NULL, 'cash', '', '', '', '', '', '', '68.9000', NULL, 15, NULL, 'received', '', '68.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 (3806, '2022-02-13 20:52:40', 3859, NULL, NULL, 'IPAY2022/02/3805', NULL, 'cash', '', '', '', '', '', '', '53.5000', NULL, 15, NULL, 'received', '', '53.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3807, '2022-02-13 21:12:47', 3860, NULL, NULL, 'IPAY2022/02/3806', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 15, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3808, '2022-02-13 21:25:41', 3861, NULL, NULL, 'IPAY2022/02/3807', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (3809, '2022-02-13 21:33:28', 3862, NULL, NULL, 'IPAY2022/02/3808', NULL, 'cash', '', '', '', '', '', '', '1129.1000', NULL, 17, NULL, 'received', '', '1129.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 (3810, '2022-02-13 21:46:37', 3863, NULL, NULL, 'IPAY2022/02/3809', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 15, 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 (3811, '2022-02-13 21:47:22', 3864, NULL, NULL, 'IPAY2022/02/3810', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (3812, '2022-02-14 14:25:54', 3865, NULL, NULL, 'IPAY2022/02/3811', NULL, 'cash', '', '', '', '', '', '', '186.4000', NULL, 21, NULL, 'received', '', '186.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 (3813, '2022-02-14 15:15:44', 3866, NULL, NULL, 'IPAY2022/02/3812', NULL, 'cash', '', '', '', '', '', '', '81.5000', NULL, 21, NULL, 'received', '', '81.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3814, '2022-02-14 16:13:21', 3867, NULL, NULL, 'IPAY2022/02/3813', NULL, 'cash', '', '', '', '', '', '', '194.1000', NULL, 8, NULL, 'received', '', '194.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 (3815, '2022-02-14 16:22:49', 3868, NULL, NULL, 'IPAY2022/02/3814', NULL, 'cash', '', '', '', '', '', '', '92.5000', NULL, 8, 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 (3816, '2022-02-14 18:22:24', 3869, NULL, NULL, 'IPAY2022/02/3815', NULL, 'cash', '', '', '', '', '', '', '405.5000', NULL, 17, NULL, 'received', '', '405.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3817, '2022-02-14 21:19:40', 3870, NULL, NULL, 'IPAY2022/02/3816', NULL, 'cash', '', '', '', '', '', '', '428.9000', NULL, 11, NULL, 'received', '', '428.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 (3818, '2022-02-14 21:31:06', 3871, NULL, NULL, 'IPAY2022/02/3817', NULL, 'cash', '', '', '', '', '', '', '517.0000', NULL, 17, NULL, 'received', '', '517.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3819, '2022-02-14 21:34:56', 3872, NULL, NULL, 'IPAY2022/02/3818', NULL, 'cash', '', '', '', '', '', '', '361.9000', NULL, 22, 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 (3820, '2022-02-14 21:35:14', 3873, NULL, NULL, 'IPAY2022/02/3819', NULL, 'cash', '', '', '', '', '', '', '237.2000', NULL, 11, NULL, 'received', '', '237.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 (3821, '2022-02-14 21:41:35', 3874, NULL, NULL, 'IPAY2022/02/3820', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (3822, '2022-02-14 21:42:28', 3875, NULL, NULL, 'IPAY2022/02/3821', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 17, 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 (3823, '2022-02-14 21:56:54', 3876, NULL, NULL, 'IPAY2022/02/3822', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 11, 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 (3824, '2022-02-14 22:12:45', 3877, NULL, NULL, 'IPAY2022/02/3823', 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 (3825, '2022-02-15 14:06:47', 3878, NULL, NULL, 'IPAY2022/02/3824', NULL, 'cash', '', '', '', '', '', '', '82.2000', NULL, 15, NULL, 'received', '', '82.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 (3826, '2022-02-15 14:23:17', 3879, NULL, NULL, 'IPAY2022/02/3825', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 15, 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 (3827, '2022-02-15 14:35:48', 3880, NULL, NULL, 'IPAY2022/02/3826', 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 (3828, '2022-02-15 15:20:26', 3881, NULL, NULL, 'IPAY2022/02/3827', NULL, 'cash', '', '', '', '', '', '', '386.5000', NULL, 17, NULL, 'received', '', '386.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3829, '2022-02-15 15:40:29', 3882, NULL, NULL, 'IPAY2022/02/3828', NULL, 'cash', '', '', '', '', '', '', '249.5000', NULL, 8, NULL, 'received', '', '249.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3830, '2022-02-15 19:25:26', 3883, NULL, NULL, 'IPAY2022/02/3829', NULL, 'cash', '', '', '', '', '', '', '264.1000', NULL, 11, NULL, 'received', '', '264.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 (3831, '2022-02-15 19:30:20', 3884, NULL, NULL, 'IPAY2022/02/3830', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 16, 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 (3832, '2022-02-15 20:18:40', 3885, NULL, NULL, 'IPAY2022/02/3831', NULL, 'cash', '', '', '', '', '', '', '703.9000', NULL, 16, NULL, 'received', '', '703.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 (3833, '2022-02-15 21:05:40', 3886, NULL, NULL, 'IPAY2022/02/3832', NULL, 'cash', '', '', '', '', '', '', '245.6000', NULL, 11, NULL, 'received', '', '245.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 (3834, '2022-02-15 21:38:59', 3887, NULL, NULL, 'IPAY2022/02/3833', NULL, 'cash', '', '', '', '', '', '', '290.0300', NULL, 22, NULL, 'received', '', '290.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 (3835, '2022-02-15 21:42:02', 3888, NULL, NULL, 'IPAY2022/02/3834', NULL, 'cash', '', '', '', '', '', '', '254.0000', NULL, 16, NULL, 'received', '', '254.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3836, '2022-02-15 21:42:35', 3889, NULL, NULL, 'IPAY2022/02/3835', NULL, 'cash', '', '', '', '', '', '', '48.2000', NULL, 11, NULL, 'received', '', '48.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 (3837, '2022-02-15 21:44:21', 3890, NULL, NULL, 'IPAY2022/02/3836', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 16, 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 (3838, '2022-02-15 22:07:53', 3891, NULL, NULL, 'IPAY2022/02/3837', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 11, 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 (3839, '2022-02-16 14:52:15', 3892, NULL, NULL, 'IPAY2022/02/3838', NULL, 'cash', '', '', '', '', '', '', '178.5000', NULL, 8, NULL, 'received', '', '178.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3840, '2022-02-16 14:55:46', 3893, NULL, NULL, 'IPAY2022/02/3839', NULL, 'cash', '', '', '', '', '', '', '225.6000', NULL, 21, NULL, 'received', '', '225.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 (3841, '2022-02-16 15:00:49', 3894, NULL, NULL, 'IPAY2022/02/3840', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (3842, '2022-02-16 15:39:21', 3895, NULL, NULL, 'IPAY2022/02/3841', NULL, 'cash', '', '', '', '', '', '', '625.7000', NULL, 17, NULL, 'received', '', '625.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 (3843, '2022-02-16 17:12:18', 3896, NULL, NULL, 'IPAY2022/02/3842', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 22, 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 (3844, '2022-02-16 19:11:22', 3897, NULL, NULL, 'IPAY2022/02/3843', NULL, 'cash', '', '', '', '', '', '', '329.6000', NULL, 15, NULL, 'received', '', '329.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 (3845, '2022-02-16 19:12:54', 3898, NULL, NULL, 'IPAY2022/02/3844', NULL, 'cash', '', '', '', '', '', '', '529.6000', NULL, 16, NULL, 'received', '', '529.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 (3846, '2022-02-16 19:51:10', 3899, NULL, NULL, 'IPAY2022/02/3845', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 15, 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 (3847, '2022-02-16 20:43:12', 3900, NULL, NULL, 'IPAY2022/02/3846', NULL, 'cash', '', '', '', '', '', '', '132.4000', NULL, 15, NULL, 'received', '', '132.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 (3848, '2022-02-16 21:15:50', 3901, NULL, NULL, 'IPAY2022/02/3847', NULL, 'cash', '', '', '', '', '', '', '146.6000', NULL, 22, NULL, 'received', '', '146.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 (3849, '2022-02-16 21:15:52', 3902, NULL, NULL, 'IPAY2022/02/3848', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (3850, '2022-02-16 21:19:43', 3903, NULL, NULL, 'IPAY2022/02/3849', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 22, 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 (3851, '2022-02-16 21:28:24', 3904, NULL, NULL, 'IPAY2022/02/3850', NULL, 'cash', '', '', '', '', '', '', '173.1000', NULL, 16, NULL, 'received', '', '173.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 (3852, '2022-02-16 21:32:21', 3905, NULL, NULL, 'IPAY2022/02/3851', NULL, 'cash', '', '', '', '', '', '', '104.5000', NULL, 15, 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 (3853, '2022-02-16 21:34:47', 3906, NULL, NULL, 'IPAY2022/02/3852', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 15, 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 (3854, '2022-02-16 21:45:44', 3907, NULL, NULL, 'IPAY2022/02/3853', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 15, 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 (3855, '2022-02-17 12:48:37', 3908, NULL, NULL, 'IPAY2022/02/3854', NULL, 'cash', '', '', '', '', '', '', '36.8000', NULL, 8, NULL, 'received', '', '36.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 (3856, '2022-02-17 14:50:21', 3909, NULL, NULL, 'IPAY2022/02/3855', NULL, 'cash', '', '', '', '', '', '', '238.0000', NULL, 21, NULL, 'received', '', '238.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3857, '2022-02-17 14:53:08', 3910, NULL, NULL, 'IPAY2022/02/3856', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 17, 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 (3858, '2022-02-17 15:24:58', 3911, NULL, NULL, 'IPAY2022/02/3857', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 8, 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 (3859, '2022-02-17 18:56:28', 3912, NULL, NULL, 'IPAY2022/02/3858', NULL, 'cash', '', '', '', '', '', '', '508.1000', NULL, 11, NULL, 'received', '', '508.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 (3860, '2022-02-17 20:43:45', 3913, NULL, NULL, 'IPAY2022/02/3859', NULL, 'cash', '', '', '', '', '', '', '324.6000', NULL, 16, NULL, 'received', '', '324.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 (3861, '2022-02-17 20:57:16', 3914, NULL, NULL, 'IPAY2022/02/3860', NULL, 'cash', '', '', '', '', '', '', '119.7000', NULL, 22, NULL, 'received', '', '119.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 (3862, '2022-02-17 21:13:16', 3915, NULL, NULL, 'IPAY2022/02/3861', NULL, 'cash', '', '', '', '', '', '', '256.5000', NULL, 11, 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 (3863, '2022-02-17 21:45:56', 3916, NULL, NULL, 'IPAY2022/02/3862', NULL, 'cash', '', '', '', '', '', '', '22.3000', NULL, 11, NULL, 'received', '', '22.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 (3864, '2022-02-17 21:51:19', 3917, NULL, NULL, 'IPAY2022/02/3863', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 11, 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 (3865, '2022-02-17 21:51:45', 3918, NULL, NULL, 'IPAY2022/02/3864', NULL, 'cash', '', '', '', '', '', '', '72.5000', NULL, 16, 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 (3866, '2022-02-17 21:59:04', 3919, NULL, NULL, 'IPAY2022/02/3865', 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 (3867, '2022-02-18 13:46:30', 3920, NULL, NULL, 'IPAY2022/02/3866', NULL, 'cash', '', '', '', '', '', '', '191.0000', NULL, 7, NULL, 'received', '', '191.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3868, '2022-02-18 14:36:28', 3921, NULL, NULL, 'IPAY2022/02/3867', NULL, 'cash', '', '', '', '', '', '', '36.8000', NULL, 7, NULL, 'received', '', '36.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 (3869, '2022-02-18 14:45:59', 3922, NULL, NULL, 'IPAY2022/02/3868', NULL, 'cash', '', '', '', '', '', '', '234.2000', NULL, 21, NULL, 'received', '', '234.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 (3870, '2022-02-18 16:05:54', 3923, NULL, NULL, 'IPAY2022/02/3869', NULL, 'cash', '', '', '', '', '', '', '212.5000', NULL, 17, NULL, 'received', '', '212.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3871, '2022-02-18 18:32:32', 3924, NULL, NULL, 'IPAY2022/02/3870', NULL, 'cash', '', '', '', '', '', '', '246.6000', NULL, 11, NULL, 'received', '', '246.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 (3872, '2022-02-18 19:31:48', 3925, NULL, NULL, 'IPAY2022/02/3871', NULL, 'cash', '', '', '', '', '', '', '391.3000', NULL, 16, NULL, 'received', '', '391.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 (3873, '2022-02-18 20:51:56', 3926, NULL, NULL, 'IPAY2022/02/3872', NULL, 'cash', '', '', '', '', '', '', '410.4000', NULL, 11, NULL, 'received', '', '410.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 (3874, '2022-02-18 21:22:25', 3927, NULL, NULL, 'IPAY2022/02/3873', NULL, 'cash', '', '', '', '', '', '', '271.1000', NULL, 16, NULL, 'received', '', '271.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 (3875, '2022-02-18 21:46:18', 3928, NULL, NULL, 'IPAY2022/02/3874', NULL, 'cash', '', '', '', '', '', '', '104.7000', NULL, 22, NULL, 'received', '', '104.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 (3876, '2022-02-18 21:52:30', 3929, NULL, NULL, 'IPAY2022/02/3875', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 16, 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 (3877, '2022-02-18 21:55:42', 3930, NULL, NULL, 'IPAY2022/02/3876', 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 (3878, '2022-02-18 22:06:55', 3931, NULL, NULL, 'IPAY2022/02/3877', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 22, 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 (3879, '2022-02-19 14:26:39', 3932, NULL, NULL, 'IPAY2022/02/3878', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 15, 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 (3880, '2022-02-19 14:29:26', 3933, NULL, NULL, 'IPAY2022/02/3879', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 15, 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 (3881, '2022-02-19 14:56:00', 3934, NULL, NULL, 'IPAY2022/02/3880', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 15, 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 (3882, '2022-02-19 15:52:27', 3935, NULL, NULL, 'IPAY2022/02/3881', NULL, 'cash', '', '', '', '', '', '', '272.3000', NULL, 22, NULL, 'received', '', '272.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 (3883, '2022-02-19 20:15:18', 3936, NULL, NULL, 'IPAY2022/02/3882', NULL, 'cash', '', '', '', '', '', '', '198.5000', NULL, 8, NULL, 'received', '', '198.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3884, '2022-02-19 20:17:59', 3937, NULL, NULL, 'IPAY2022/02/3883', NULL, 'cash', '', '', '', '', '', '', '613.8000', NULL, 11, NULL, 'received', '', '613.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 (3885, '2022-02-19 20:21:56', 3938, NULL, NULL, 'IPAY2022/02/3884', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (3886, '2022-02-19 20:37:44', 3939, NULL, NULL, 'IPAY2022/02/3885', NULL, 'cash', '', '', '', '', '', '', '16.8000', NULL, 8, NULL, 'received', '', '16.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 (3887, '2022-02-19 20:39:37', 3940, NULL, NULL, 'IPAY2022/02/3886', NULL, 'cash', '', '', '', '', '', '', '1.8000', NULL, 8, NULL, 'received', '', '1.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 (3888, '2022-02-19 20:43:22', 3941, NULL, NULL, 'IPAY2022/02/3887', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 8, 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 (3889, '2022-02-19 20:45:43', 3942, NULL, NULL, 'IPAY2022/02/3888', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (3890, '2022-02-19 21:02:49', 3943, NULL, NULL, 'IPAY2022/02/3889', NULL, 'cash', '', '', '', '', '', '', '81.8000', NULL, 16, NULL, 'received', '', '81.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 (3891, '2022-02-19 21:09:19', 3944, NULL, NULL, 'IPAY2022/02/3890', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 8, 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 (3892, '2022-02-19 21:10:14', 3945, NULL, NULL, 'IPAY2022/02/3891', NULL, 'cash', '', '', '', '', '', '', '241.0000', NULL, 16, NULL, 'received', '', '241.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3893, '2022-02-19 21:22:05', 3946, NULL, NULL, 'IPAY2022/02/3892', NULL, 'cash', '', '', '', '', '', '', '522.1000', NULL, 16, NULL, 'received', '', '522.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 (3894, '2022-02-19 21:28:44', 3947, NULL, NULL, 'IPAY2022/02/3893', NULL, 'cash', '', '', '', '', '', '', '261.0000', NULL, 16, NULL, 'received', '', '261.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3895, '2022-02-19 21:36:25', 3948, NULL, NULL, 'IPAY2022/02/3894', NULL, 'cash', '', '', '', '', '', '', '102.4000', NULL, 11, NULL, 'received', '', '102.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 (3896, '2022-02-19 21:43:54', 3949, NULL, NULL, 'IPAY2022/02/3895', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 16, 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 (3897, '2022-02-19 21:59:18', 3950, NULL, NULL, 'IPAY2022/02/3896', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 11, 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 (3898, '2022-02-20 18:21:17', 3951, NULL, NULL, 'IPAY2022/02/3897', NULL, 'cash', '', '', '', '', '', '', '252.3000', NULL, 11, NULL, 'received', '', '252.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 (3899, '2022-02-20 19:58:10', 3952, NULL, NULL, 'IPAY2022/02/3898', NULL, 'cash', '', '', '', '', '', '', '84.5000', NULL, 11, 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 (3900, '2022-02-20 20:06:35', 3953, NULL, NULL, 'IPAY2022/02/3899', NULL, 'cash', '', '', '', '', '', '', '283.0000', NULL, 16, NULL, 'received', '', '283.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3901, '2022-02-20 20:23:33', 3954, NULL, NULL, 'IPAY2022/02/3900', NULL, 'cash', '', '', '', '', '', '', '269.0000', NULL, 8, NULL, 'received', '', '269.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3902, '2022-02-20 20:26:02', 3955, NULL, NULL, 'IPAY2022/02/3901', NULL, 'cash', '', '', '', '', '', '', '382.0000', NULL, 16, NULL, 'received', '', '382.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3903, '2022-02-20 21:31:10', 3956, NULL, NULL, 'IPAY2022/02/3902', NULL, 'cash', '', '', '', '', '', '', '142.9600', NULL, 16, NULL, 'received', '', '142.9600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3904, '2022-02-20 21:33:44', 3957, NULL, NULL, 'IPAY2022/02/3903', NULL, 'cash', '', '', '', '', '', '', '149.6000', NULL, 11, NULL, 'received', '', '149.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 (3905, '2022-02-20 21:39:36', 3958, NULL, NULL, 'IPAY2022/02/3904', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 16, 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 (3906, '2022-02-20 21:40:30', 3959, NULL, NULL, 'IPAY2022/02/3905', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 11, 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 (3907, '2022-02-21 14:44:26', 3960, NULL, NULL, 'IPAY2022/02/3906', NULL, 'cash', '', '', '', '', '', '', '158.7000', NULL, 21, NULL, 'received', '', '158.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 (3908, '2022-02-21 14:51:20', 3961, NULL, NULL, 'IPAY2022/02/3907', NULL, 'cash', '', '', '', '', '', '', '89.0000', NULL, 8, 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 (3909, '2022-02-21 15:02:06', 3962, NULL, NULL, 'IPAY2022/02/3908', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 21, 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 (3910, '2022-02-21 15:13:02', 3963, NULL, NULL, 'IPAY2022/02/3909', NULL, 'cash', '', '', '', '', '', '', '122.5000', NULL, 8, NULL, 'received', '', '122.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3911, '2022-02-21 19:39:22', 3964, NULL, NULL, 'IPAY2022/02/3910', NULL, 'cash', '', '', '', '', '', '', '636.3000', NULL, 17, NULL, 'received', '', '636.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 (3912, '2022-02-21 20:30:35', 3965, NULL, NULL, 'IPAY2022/02/3911', NULL, 'cash', '', '', '', '', '', '', '211.8000', NULL, 7, NULL, 'received', '', '211.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 (3913, '2022-02-21 21:10:25', 3966, NULL, NULL, 'IPAY2022/02/3912', NULL, 'cash', '', '', '', '', '', '', '367.4000', NULL, 11, NULL, 'received', '', '367.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 (3914, '2022-02-21 21:18:59', 3967, NULL, NULL, 'IPAY2022/02/3913', 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 (3915, '2022-02-21 21:40:12', 3968, NULL, NULL, 'IPAY2022/02/3914', NULL, 'cash', '', '', '', '', '', '', '316.5000', NULL, 17, NULL, 'received', '', '316.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3916, '2022-02-21 21:42:46', 3969, NULL, NULL, 'IPAY2022/02/3915', NULL, 'cash', '', '', '', '', '', '', '14.6000', NULL, 11, NULL, 'received', '', '14.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 (3917, '2022-02-21 21:45:52', 3970, NULL, NULL, 'IPAY2022/02/3916', 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 (3918, '2022-02-21 21:49:02', 3971, NULL, NULL, 'IPAY2022/02/3917', 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 (3919, '2022-02-21 21:51:32', 3972, NULL, NULL, 'IPAY2022/02/3918', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 11, 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 (3920, '2022-02-21 21:56:52', 3973, NULL, NULL, 'IPAY2022/02/3919', NULL, 'cash', '', '', '', '', '', '', '2.8000', NULL, 11, 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 (3921, '2022-02-22 12:43:52', 3974, NULL, NULL, 'IPAY2022/02/3920', NULL, 'cash', '', '', '', '', '', '', '225.5000', NULL, 15, NULL, 'received', '', '225.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3922, '2022-02-22 13:50:33', 3975, NULL, NULL, 'IPAY2022/02/3921', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 15, 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 (3923, '2022-02-22 14:34:14', 3976, NULL, NULL, 'IPAY2022/02/3922', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 15, 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 (3924, '2022-02-22 14:40:28', 3977, NULL, NULL, 'IPAY2022/02/3923', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (3925, '2022-02-22 14:57:24', 3978, NULL, NULL, 'IPAY2022/02/3924', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 15, 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 (3926, '2022-02-22 15:39:14', 3979, NULL, NULL, 'IPAY2022/02/3925', NULL, 'cash', '', '', '', '', '', '', '322.5000', NULL, 17, NULL, 'received', '', '322.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3927, '2022-02-22 20:30:14', 3980, NULL, NULL, 'IPAY2022/02/3926', NULL, 'cash', '', '', '', '', '', '', '593.2800', NULL, 11, NULL, 'received', '', '593.2800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3928, '2022-02-22 20:44:07', 3981, NULL, NULL, 'IPAY2022/02/3927', NULL, 'cash', '', '', '', '', '', '', '466.6000', NULL, 17, NULL, 'received', '', '466.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 (3929, '2022-02-22 21:45:00', 3982, NULL, NULL, 'IPAY2022/02/3928', NULL, 'cash', '', '', '', '', '', '', '69.5000', NULL, 17, NULL, 'received', '', '69.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3930, '2022-02-22 21:57:09', 3983, NULL, NULL, 'IPAY2022/02/3929', NULL, 'cash', '', '', '', '', '', '', '148.6000', NULL, 11, 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 (3931, '2022-02-23 15:06:57', 3984, NULL, NULL, 'IPAY2022/02/3930', NULL, 'cash', '', '', '', '', '', '', '501.4000', NULL, 21, NULL, 'received', '', '501.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 (3932, '2022-02-23 15:10:27', 3985, NULL, NULL, 'IPAY2022/02/3931', NULL, 'cash', '', '', '', '', '', '', '332.1000', NULL, 17, NULL, 'received', '', '332.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 (3933, '2022-02-23 15:17:18', 3986, NULL, NULL, 'IPAY2022/02/3932', NULL, 'cash', '', '', '', '', '', '', '129.9300', NULL, 8, NULL, 'received', '', '129.9300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3934, '2022-02-23 15:29:55', 3987, NULL, NULL, 'IPAY2022/02/3933', NULL, 'cash', '', '', '', '', '', '', '115.6000', NULL, 21, NULL, 'received', '', '115.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 (3935, '2022-02-23 15:35:32', 3988, NULL, NULL, 'IPAY2022/02/3934', NULL, 'cash', '', '', '', '', '', '', '130.5000', NULL, 22, NULL, 'received', '', '130.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3936, '2022-02-23 15:42:49', 3989, NULL, NULL, 'IPAY2022/02/3935', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 21, 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 (3937, '2022-02-23 15:46:14', 3990, NULL, NULL, 'IPAY2022/02/3936', NULL, 'cash', '', '', '', '', '', '', '131.2000', NULL, 8, NULL, 'received', '', '131.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 (3938, '2022-02-23 18:36:12', 3991, NULL, NULL, 'IPAY2022/02/3937', NULL, 'cash', '', '', '', '', '', '', '113.0000', NULL, 15, NULL, 'received', '', '113.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3939, '2022-02-23 19:09:31', 3992, NULL, NULL, 'IPAY2022/02/3938', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (3940, '2022-02-23 19:51:22', 3993, NULL, NULL, 'IPAY2022/02/3939', NULL, 'cash', '', '', '', '', '', '', '77.6000', NULL, 15, NULL, 'received', '', '77.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 (3941, '2022-02-23 20:22:37', 3994, NULL, NULL, 'IPAY2022/02/3940', NULL, 'cash', '', '', '', '', '', '', '109.5000', NULL, 15, 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 (3942, '2022-02-23 20:47:52', 3995, NULL, NULL, 'IPAY2022/02/3941', NULL, 'cash', '', '', '', '', '', '', '650.5000', NULL, 17, NULL, 'received', '', '650.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3943, '2022-02-23 21:08:17', 3996, NULL, NULL, 'IPAY2022/02/3942', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 15, 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 (3944, '2022-02-23 21:17:32', 3997, NULL, NULL, 'IPAY2022/02/3943', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 15, 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 (3945, '2022-02-23 21:26:49', 3998, NULL, NULL, 'IPAY2022/02/3944', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (3946, '2022-02-23 21:27:08', 3999, NULL, NULL, 'IPAY2022/02/3945', NULL, 'cash', '', '', '', '', '', '', '282.2000', NULL, 22, NULL, 'received', '', '282.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 (3947, '2022-02-23 21:36:04', 4000, NULL, NULL, 'IPAY2022/02/3946', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (3948, '2022-02-23 21:41:05', 4001, NULL, NULL, 'IPAY2022/02/3947', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 15, 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 (3949, '2022-02-23 21:54:10', 4002, NULL, NULL, 'IPAY2022/02/3948', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 17, 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 (3950, '2022-02-24 14:40:03', 4003, NULL, NULL, 'IPAY2022/02/3949', NULL, 'cash', '', '', '', '', '', '', '296.3000', NULL, 21, NULL, 'received', '', '296.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 (3951, '2022-02-24 15:12:11', 4004, NULL, NULL, 'IPAY2022/02/3950', NULL, 'cash', '', '', '', '', '', '', '514.7300', NULL, 8, NULL, 'received', '', '514.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 (3952, '2022-02-24 15:37:46', 4005, NULL, NULL, 'IPAY2022/02/3951', NULL, 'cash', '', '', '', '', '', '', '341.4000', NULL, 17, NULL, 'received', '', '341.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 (3953, '2022-02-24 15:42:53', 4006, NULL, NULL, 'IPAY2022/02/3952', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 17, 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 (3954, '2022-02-24 20:21:46', 4007, NULL, NULL, 'IPAY2022/02/3953', NULL, 'cash', '', '', '', '', '', '', '508.6000', NULL, 11, NULL, 'received', '', '508.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 (3955, '2022-02-24 20:54:47', 4008, NULL, NULL, 'IPAY2022/02/3954', NULL, 'cash', '', '', '', '', '', '', '486.6000', NULL, 16, NULL, 'received', '', '486.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 (3956, '2022-02-24 21:24:47', 4009, NULL, NULL, 'IPAY2022/02/3955', NULL, 'cash', '', '', '', '', '', '', '273.5000', NULL, 22, NULL, 'received', '', '273.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3957, '2022-02-24 21:40:42', 4010, NULL, NULL, 'IPAY2022/02/3956', NULL, 'cash', '', '', '', '', '', '', '48.3000', NULL, 16, NULL, 'received', '', '48.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 (3958, '2022-02-24 21:49:30', 4011, NULL, NULL, 'IPAY2022/02/3957', NULL, 'cash', '', '', '', '', '', '', '49.4000', NULL, 11, NULL, 'received', '', '49.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 (3959, '2022-02-24 21:55:59', 4012, NULL, NULL, 'IPAY2022/02/3958', 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 (3960, '2022-02-25 13:41:00', 4013, NULL, NULL, 'IPAY2022/02/3959', NULL, 'cash', '', '', '', '', '', '', '58.9000', NULL, 7, NULL, 'received', '', '58.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 (3961, '2022-02-25 14:19:21', 4014, NULL, NULL, 'IPAY2022/02/3960', NULL, 'cash', '', '', '', '', '', '', '428.3000', NULL, 17, NULL, 'received', '', '428.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 (3962, '2022-02-25 14:28:37', 4015, NULL, NULL, 'IPAY2022/02/3961', NULL, 'cash', '', '', '', '', '', '', '202.1000', NULL, 21, NULL, 'received', '', '202.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 (3963, '2022-02-25 15:14:07', 4016, NULL, NULL, 'IPAY2022/02/3962', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 17, 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 (3964, '2022-02-25 17:49:02', 4017, NULL, NULL, 'IPAY2022/02/3963', NULL, 'cash', '', '', '', '', '', '', '89.5000', NULL, 11, 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 (3965, '2022-02-25 17:49:49', 4018, NULL, NULL, 'IPAY2022/02/3964', 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 (3966, '2022-02-25 21:18:11', 4019, NULL, NULL, 'IPAY2022/02/3965', NULL, 'cash', '', '', '', '', '', '', '628.2000', NULL, 17, NULL, 'received', '', '628.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 (3967, '2022-02-25 21:30:44', 4020, NULL, NULL, 'IPAY2022/02/3966', NULL, 'cash', '', '', '', '', '', '', '285.7000', NULL, 22, NULL, 'received', '', '285.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 (3968, '2022-02-25 21:34:19', 4021, NULL, NULL, 'IPAY2022/02/3967', NULL, 'cash', '', '', '', '', '', '', '306.6000', NULL, 11, NULL, 'received', '', '306.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 (3969, '2022-02-25 21:42:17', 4022, NULL, NULL, 'IPAY2022/02/3968', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 17, 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 (3970, '2022-02-25 21:51:21', 4023, NULL, NULL, 'IPAY2022/02/3969', NULL, 'cash', '', '', '', '', '', '', '62.5000', NULL, 11, NULL, 'received', '', '62.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3971, '2022-02-26 13:15:02', 4024, NULL, NULL, 'IPAY2022/02/3970', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 15, 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 (3972, '2022-02-26 13:54:33', 4025, NULL, NULL, 'IPAY2022/02/3971', NULL, 'cash', '', '', '', '', '', '', '137.9000', NULL, 15, NULL, 'received', '', '137.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 (3973, '2022-02-26 14:07:54', 4026, NULL, NULL, 'IPAY2022/02/3972', NULL, 'cash', '', '', '', '', '', '', '12.2000', NULL, 15, NULL, 'received', '', '12.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 (3974, '2022-02-26 14:38:23', 4027, NULL, NULL, 'IPAY2022/02/3973', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 15, 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 (3975, '2022-02-26 14:49:19', 4028, NULL, NULL, 'IPAY2022/02/3974', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 22, 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 (3976, '2022-02-26 14:52:53', 4029, NULL, NULL, 'IPAY2022/02/3975', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 15, 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 (3977, '2022-02-26 16:28:44', 4030, NULL, NULL, 'IPAY2022/02/3976', NULL, 'cash', '', '', '', '', '', '', '358.6000', NULL, 16, NULL, 'received', '', '358.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 (3978, '2022-02-26 19:14:58', 4031, NULL, NULL, 'IPAY2022/02/3977', NULL, 'cash', '', '', '', '', '', '', '193.7000', NULL, 11, NULL, 'received', '', '193.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 (3979, '2022-02-26 21:10:28', 4032, NULL, NULL, 'IPAY2022/02/3978', NULL, 'cash', '', '', '', '', '', '', '776.5000', NULL, 16, NULL, 'received', '', '776.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3980, '2022-02-26 21:16:56', 4033, NULL, NULL, 'IPAY2022/02/3979', NULL, 'cash', '', '', '', '', '', '', '282.5000', NULL, 11, NULL, 'received', '', '282.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3981, '2022-02-26 21:48:56', 4034, NULL, NULL, 'IPAY2022/02/3980', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 16, 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 (3982, '2022-02-26 21:54:34', 4035, NULL, NULL, 'IPAY2022/02/3981', 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 (3983, '2022-02-27 14:48:44', 4036, NULL, NULL, 'IPAY2022/02/3982', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 17, 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 (3984, '2022-02-27 14:57:40', 4037, NULL, NULL, 'IPAY2022/02/3983', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 17, 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 (3985, '2022-02-27 16:46:02', 4038, NULL, NULL, 'IPAY2022/02/3984', NULL, 'cash', '', '', '', '', '', '', '221.5000', NULL, 15, NULL, 'received', '', '221.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3986, '2022-02-27 17:33:32', 4039, NULL, NULL, 'IPAY2022/02/3985', 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 (3987, '2022-02-27 18:51:45', 4040, NULL, NULL, 'IPAY2022/02/3986', NULL, 'cash', '', '', '', '', '', '', '111.0000', NULL, 15, 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 (3988, '2022-02-27 19:48:07', 4041, NULL, NULL, 'IPAY2022/02/3987', NULL, 'cash', '', '', '', '', '', '', '151.5600', NULL, 15, NULL, 'received', '', '151.5600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3989, '2022-02-27 19:57:05', 4042, NULL, NULL, 'IPAY2022/02/3988', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 15, 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 (3990, '2022-02-27 20:27:39', 4043, NULL, NULL, 'IPAY2022/02/3989', NULL, 'cash', '', '', '', '', '', '', '48.4000', NULL, 15, NULL, 'received', '', '48.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 (3991, '2022-02-27 20:41:45', 4044, NULL, NULL, 'IPAY2022/02/3990', NULL, 'cash', '', '', '', '', '', '', '808.2000', NULL, 17, NULL, 'received', '', '808.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 (3992, '2022-02-27 20:58:43', 4045, NULL, NULL, 'IPAY2022/02/3991', NULL, 'cash', '', '', '', '', '', '', '127.0000', NULL, 15, 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 (3993, '2022-02-27 21:29:29', 4046, NULL, NULL, 'IPAY2022/02/3992', NULL, 'cash', '', '', '', '', '', '', '119.5000', NULL, 15, NULL, 'received', '', '119.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3994, '2022-02-27 21:34:19', 4047, NULL, NULL, 'IPAY2022/02/3993', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 15, 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 (3995, '2022-02-27 21:36:37', 4048, NULL, NULL, 'IPAY2022/02/3994', NULL, 'cash', '', '', '', '', '', '', '76.1000', NULL, 17, NULL, 'received', '', '76.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 (3996, '2022-02-27 21:43:57', 4049, NULL, NULL, 'IPAY2022/02/3995', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 15, 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 (3997, '2022-02-28 14:41:07', 4050, NULL, NULL, 'IPAY2022/02/3996', NULL, 'cash', '', '', '', '', '', '', '151.6000', NULL, 21, 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 (3998, '2022-02-28 18:31:42', 4051, NULL, NULL, 'IPAY2022/02/3997', NULL, 'cash', '', '', '', '', '', '', '226.8000', NULL, 11, NULL, 'received', '', '226.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 (3999, '2022-02-28 20:37:04', 4052, NULL, NULL, 'IPAY2022/02/3998', NULL, 'cash', '', '', '', '', '', '', '1168.8900', NULL, 17, NULL, 'received', '', '1168.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 (4000, '2022-02-28 20:38:43', 4053, NULL, NULL, 'IPAY2022/02/3999', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 17, 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 (4001, '2022-02-28 21:31:52', 4054, NULL, NULL, 'IPAY2022/02/4000', NULL, 'cash', '', '', '', '', '', '', '412.1000', NULL, 11, NULL, 'received', '', '412.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 (4002, '2022-02-28 21:41:42', 4055, NULL, NULL, 'IPAY2022/02/4001', NULL, 'cash', '', '', '', '', '', '', '112.9000', NULL, 17, NULL, 'received', '', '112.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 (4003, '2022-02-28 21:47:34', 4056, NULL, NULL, 'IPAY2022/02/4002', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 17, 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 (4004, '2022-02-28 22:00:03', 4057, NULL, NULL, 'IPAY2022/02/4003', 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 (4005, '2022-03-01 11:07:46', 4058, NULL, NULL, 'IPAY2022/03/4004', NULL, 'cash', '', '', '', '', '', '', '295.3000', NULL, 8, NULL, 'received', '', '295.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 (4006, '2022-03-01 11:22:38', 4059, NULL, NULL, 'IPAY2022/03/4005', NULL, 'cash', '', '', '', '', '', '', '227.8000', NULL, 8, NULL, 'received', '', '227.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 (4007, '2022-03-01 11:26:47', 4060, NULL, NULL, 'IPAY2022/03/4006', NULL, 'cash', '', '', '', '', '', '', '42.7000', NULL, 8, NULL, 'received', '', '42.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 (4008, '2022-03-01 11:27:35', 4061, NULL, NULL, 'IPAY2022/03/4007', NULL, 'cash', '', '', '', '', '', '', '42.7000', NULL, 8, NULL, 'received', '', '42.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 (4009, '2022-03-01 11:33:30', 4062, NULL, NULL, 'IPAY2022/03/4008', NULL, 'cash', '', '', '', '', '', '', '49.8000', NULL, 15, NULL, 'received', '', '49.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 (4010, '2022-03-01 11:44:44', 4063, NULL, NULL, 'IPAY2022/03/4009', NULL, 'cash', '', '', '', '', '', '', '150.1000', NULL, 15, NULL, 'received', '', '150.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 (4011, '2022-03-01 12:20:08', 4064, NULL, NULL, 'IPAY2022/03/4010', NULL, 'cash', '', '', '', '', '', '', '241.6000', NULL, 8, 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 (4012, '2022-03-01 12:20:51', 4065, NULL, NULL, 'IPAY2022/03/4011', NULL, 'cash', '', '', '', '', '', '', '241.6000', NULL, 8, 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 (4013, '2022-03-01 13:32:06', 4066, NULL, NULL, 'IPAY2022/03/4012', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 15, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4014, '2022-03-01 14:46:08', 4067, NULL, NULL, 'IPAY2022/03/4013', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (4015, '2022-03-01 15:28:55', 4068, NULL, NULL, 'IPAY2022/03/4014', NULL, 'cash', '', '', '', '', '', '', '444.3000', NULL, 17, NULL, 'received', '', '444.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 (4016, '2022-03-01 21:13:29', 4069, NULL, NULL, 'IPAY2022/03/4015', NULL, 'cash', '', '', '', '', '', '', '498.9600', NULL, 11, NULL, 'received', '', '498.9600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4017, '2022-03-01 21:15:01', 4070, NULL, NULL, 'IPAY2022/03/4016', NULL, 'cash', '', '', '', '', '', '', '500.4600', NULL, 11, NULL, 'received', '', '500.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 (4018, '2022-03-01 21:22:05', 4071, NULL, NULL, 'IPAY2022/03/4017', NULL, 'cash', '', '', '', '', '', '', '583.9000', NULL, 16, NULL, 'received', '', '583.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 (4019, '2022-03-01 21:27:37', 4072, NULL, NULL, 'IPAY2022/03/4018', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 11, 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 (4020, '2022-03-01 21:45:57', 4073, NULL, NULL, 'IPAY2022/03/4019', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 16, 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 (4021, '2022-03-01 21:52:08', 4074, NULL, NULL, 'IPAY2022/03/4020', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 11, 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 (4022, '2022-03-02 14:34:29', 4075, NULL, NULL, 'IPAY2022/03/4021', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 17, 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 (4023, '2022-03-02 14:39:55', 4076, NULL, NULL, 'IPAY2022/03/4022', NULL, 'cash', '', '', '', '', '', '', '354.6000', NULL, 21, NULL, 'received', '', '354.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 (4024, '2022-03-02 15:01:28', 4077, NULL, NULL, 'IPAY2022/03/4023', NULL, 'cash', '', '', '', '', '', '', '262.2000', NULL, 17, NULL, 'received', '', '262.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 (4025, '2022-03-02 15:07:04', 4078, NULL, NULL, 'IPAY2022/03/4024', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 17, 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 (4026, '2022-03-02 18:59:02', 4079, NULL, NULL, 'IPAY2022/03/4025', NULL, 'cash', '', '', '', '', '', '', '367.7000', NULL, 15, NULL, 'received', '', '367.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 (4027, '2022-03-02 19:41:15', 4080, NULL, NULL, 'IPAY2022/03/4026', NULL, 'cash', '', '', '', '', '', '', '181.0000', NULL, 15, NULL, 'received', '', '181.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4028, '2022-03-02 19:53:58', 4081, NULL, NULL, 'IPAY2022/03/4027', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 15, 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 (4029, '2022-03-02 20:04:13', 4082, NULL, NULL, 'IPAY2022/03/4028', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 15, 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 (4030, '2022-03-02 20:29:50', 4083, NULL, NULL, 'IPAY2022/03/4029', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (4031, '2022-03-02 20:55:19', 4084, NULL, NULL, 'IPAY2022/03/4030', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 15, 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 (4032, '2022-03-02 21:15:57', 4085, NULL, NULL, 'IPAY2022/03/4031', NULL, 'cash', '', '', '', '', '', '', '4.2000', NULL, 15, NULL, 'received', '', '4.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 (4033, '2022-03-02 21:19:02', 4086, NULL, NULL, 'IPAY2022/03/4032', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 15, 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 (4034, '2022-03-02 21:19:52', 4087, NULL, NULL, 'IPAY2022/03/4033', NULL, 'cash', '', '', '', '', '', '', '693.0000', NULL, 16, NULL, 'received', '', '693.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4035, '2022-03-02 21:39:28', 4088, NULL, NULL, 'IPAY2022/03/4034', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 15, 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 (4036, '2022-03-02 21:47:05', 4089, NULL, NULL, 'IPAY2022/03/4035', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 16, 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 (4037, '2022-03-02 21:52:42', 4090, NULL, NULL, 'IPAY2022/03/4036', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 15, 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 (4038, '2022-03-02 21:59:40', 4091, NULL, NULL, 'IPAY2022/03/4037', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 15, 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 (4039, '2022-03-03 14:32:31', 4092, NULL, NULL, 'IPAY2022/03/4038', NULL, 'cash', '', '', '', '', '', '', '460.0000', NULL, 21, NULL, 'received', '', '460.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4040, '2022-03-03 15:25:58', 4093, NULL, NULL, 'IPAY2022/03/4039', NULL, 'cash', '', '', '', '', '', '', '231.0000', NULL, 17, NULL, 'received', '', '231.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4041, '2022-03-03 18:46:30', 4094, NULL, NULL, 'IPAY2022/03/4040', NULL, 'cash', '', '', '', '', '', '', '251.3000', NULL, 11, NULL, 'received', '', '251.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 (4042, '2022-03-03 20:46:20', 4095, NULL, NULL, 'IPAY2022/03/4041', 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 (4043, '2022-03-03 20:59:23', 4096, NULL, NULL, 'IPAY2022/03/4042', NULL, 'cash', '', '', '', '', '', '', '747.0000', NULL, 16, NULL, 'received', '', '747.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4044, '2022-03-03 21:45:34', 4097, NULL, NULL, 'IPAY2022/03/4043', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 16, 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 (4045, '2022-03-03 21:46:06', 4098, NULL, NULL, 'IPAY2022/03/4044', NULL, 'cash', '', '', '', '', '', '', '312.3000', NULL, 8, 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 (4046, '2022-03-03 21:46:27', 4099, NULL, NULL, 'IPAY2022/03/4045', NULL, 'cash', '', '', '', '', '', '', '263.8000', NULL, 11, NULL, 'received', '', '263.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 (4047, '2022-03-03 21:57:19', 4100, NULL, NULL, 'IPAY2022/03/4046', NULL, 'cash', '', '', '', '', '', '', '458.7000', NULL, 22, NULL, 'received', '', '458.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 (4048, '2022-03-04 08:58:26', 4101, NULL, NULL, 'IPAY2022/03/4047', NULL, 'cash', '', '', '', '', '', '', '162.9000', NULL, 4, NULL, 'received', '', '162.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 (4049, '2022-03-04 09:33:16', 4102, NULL, NULL, 'IPAY2022/03/4048', NULL, 'cash', '', '', '', '', '', '', '391.7000', NULL, 4, NULL, 'received', '', '391.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 (4050, '2022-03-04 09:41:55', 4103, NULL, NULL, 'IPAY2022/03/4049', NULL, 'cash', '', '', '', '', '', '', '209.2000', NULL, 4, NULL, 'received', '', '209.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 (4051, '2022-03-04 11:03:13', 4104, NULL, NULL, 'IPAY2022/03/4050', NULL, 'cash', '', '', '', '', '', '', '77.2000', NULL, 7, NULL, 'received', '', '77.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 (4052, '2022-03-04 11:25:25', 4105, NULL, NULL, 'IPAY2022/03/4051', 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 (4053, '2022-03-04 11:40:01', 4106, NULL, NULL, 'IPAY2022/03/4052', NULL, 'cash', '', '', '', '', '', '', '24.1000', NULL, 7, NULL, 'received', '', '24.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 (4054, '2022-03-04 13:53:28', 4107, NULL, NULL, 'IPAY2022/03/4053', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 7, 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 (4055, '2022-03-04 15:09:03', 4108, NULL, NULL, 'IPAY2022/03/4054', NULL, 'cash', '', '', '', '', '', '', '248.6000', NULL, 21, NULL, 'received', '', '248.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 (4056, '2022-03-04 15:50:08', 4109, NULL, NULL, 'IPAY2022/03/4055', NULL, 'cash', '', '', '', '', '', '', '454.7000', NULL, 17, NULL, 'received', '', '454.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 (4057, '2022-03-04 20:37:34', 4110, NULL, NULL, 'IPAY2022/03/4056', NULL, 'cash', '', '', '', '', '', '', '511.7000', NULL, 16, NULL, 'received', '', '511.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 (4058, '2022-03-04 21:42:11', 4111, NULL, NULL, 'IPAY2022/03/4057', NULL, 'cash', '', '', '', '', '', '', '138.0000', NULL, 22, 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 (4059, '2022-03-04 21:42:14', 4112, NULL, NULL, 'IPAY2022/03/4058', NULL, 'cash', '', '', '', '', '', '', '244.0000', NULL, 16, NULL, 'received', '', '244.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4060, '2022-03-04 21:43:50', 4113, NULL, NULL, 'IPAY2022/03/4059', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 16, 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 (4061, '2022-03-04 21:44:01', 4114, NULL, NULL, 'IPAY2022/03/4060', NULL, 'cash', '', '', '', '', '', '', '504.5800', NULL, 11, NULL, 'received', '', '504.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 (4062, '2022-03-04 22:13:21', 4115, NULL, NULL, 'IPAY2022/03/4061', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 11, 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 (4063, '2022-03-05 15:33:29', 4116, NULL, NULL, 'IPAY2022/03/4062', NULL, 'cash', '', '', '', '', '', '', '39.4000', NULL, 22, NULL, 'received', '', '39.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 (4064, '2022-03-05 15:44:08', 4117, NULL, NULL, 'IPAY2022/03/4063', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 22, 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 (4065, '2022-03-05 15:49:38', 4118, NULL, NULL, 'IPAY2022/03/4064', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 22, 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 (4066, '2022-03-05 20:24:56', 4119, NULL, NULL, 'IPAY2022/03/4065', NULL, 'cash', '', '', '', '', '', '', '898.5000', NULL, 16, NULL, 'received', '', '898.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4067, '2022-03-05 20:40:01', 4120, NULL, NULL, 'IPAY2022/03/4066', NULL, 'cash', '', '', '', '', '', '', '386.9000', NULL, 11, NULL, 'received', '', '386.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 (4068, '2022-03-05 21:43:15', 4121, NULL, NULL, 'IPAY2022/03/4067', NULL, 'cash', '', '', '', '', '', '', '115.4000', NULL, 16, NULL, 'received', '', '115.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 (4069, '2022-03-05 21:45:40', 4122, NULL, NULL, 'IPAY2022/03/4068', NULL, 'cash', '', '', '', '', '', '', '4.1000', NULL, 16, NULL, 'received', '', '4.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 (4070, '2022-03-05 21:53:44', 4123, NULL, NULL, 'IPAY2022/03/4069', NULL, 'cash', '', '', '', '', '', '', '228.0600', NULL, 22, NULL, 'received', '', '228.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4071, '2022-03-05 21:56:42', 4124, NULL, NULL, 'IPAY2022/03/4070', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 22, 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 (4072, '2022-03-06 19:02:07', 4125, NULL, NULL, 'IPAY2022/03/4071', NULL, 'cash', '', '', '', '', '', '', '245.2200', NULL, 11, NULL, 'received', '', '245.2200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4073, '2022-03-06 19:03:05', 4126, NULL, NULL, 'IPAY2022/03/4072', 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 (4074, '2022-03-06 19:23:40', 4127, NULL, NULL, 'IPAY2022/03/4073', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 16, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4075, '2022-03-06 19:40:03', 4128, NULL, NULL, 'IPAY2022/03/4074', NULL, 'cash', '', '', '', '', '', '', '156.2900', NULL, 11, NULL, 'received', '', '156.2900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4076, '2022-03-06 20:22:57', 4129, NULL, NULL, 'IPAY2022/03/4075', NULL, 'cash', '', '', '', '', '', '', '48.6000', NULL, 11, NULL, 'received', '', '48.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 (4077, '2022-03-06 20:28:51', 4130, NULL, NULL, 'IPAY2022/03/4076', 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 (4078, '2022-03-06 21:02:23', 4131, NULL, NULL, 'IPAY2022/03/4077', 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 (4079, '2022-03-06 21:09:31', 4132, NULL, NULL, 'IPAY2022/03/4078', NULL, 'cash', '', '', '', '', '', '', '283.8000', NULL, 16, NULL, 'received', '', '283.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 (4080, '2022-03-06 21:10:37', 4133, NULL, NULL, 'IPAY2022/03/4079', 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 (4081, '2022-03-06 21:14:55', 4134, NULL, NULL, 'IPAY2022/03/4080', 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 (4082, '2022-03-06 21:45:39', 4135, NULL, NULL, 'IPAY2022/03/4081', NULL, 'cash', '', '', '', '', '', '', '60.5000', NULL, 16, NULL, 'received', '', '60.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4083, '2022-03-06 21:57:37', 4136, NULL, NULL, 'IPAY2022/03/4082', NULL, 'cash', '', '', '', '', '', '', '198.0000', NULL, 22, NULL, 'received', '', '198.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4084, '2022-03-06 21:58:52', 4137, NULL, NULL, 'IPAY2022/03/4083', 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 (4085, '2022-03-07 14:45:28', 4138, NULL, NULL, 'IPAY2022/03/4084', NULL, 'cash', '', '', '', '', '', '', '302.1000', NULL, 21, NULL, 'received', '', '302.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 (4086, '2022-03-07 15:03:55', 4139, NULL, NULL, 'IPAY2022/03/4085', NULL, 'cash', '', '', '', '', '', '', '334.0000', NULL, 8, 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 (4087, '2022-03-07 17:55:14', 4140, NULL, NULL, 'IPAY2022/03/4086', NULL, 'cash', '', '', '', '', '', '', '371.0000', NULL, 17, NULL, 'received', '', '371.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4088, '2022-03-07 18:15:33', 4141, NULL, NULL, 'IPAY2022/03/4087', NULL, 'cash', '', '', '', '', '', '', '623.0000', NULL, 17, NULL, 'received', '', '623.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4089, '2022-03-07 20:19:56', 4142, NULL, NULL, 'IPAY2022/03/4088', NULL, 'cash', '', '', '', '', '', '', '256.6800', NULL, 7, NULL, 'received', '', '256.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 (4090, '2022-03-07 20:56:21', 4143, NULL, NULL, 'IPAY2022/03/4089', NULL, 'cash', '', '', '', '', '', '', '918.2700', NULL, 11, NULL, 'received', '', '918.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 (4091, '2022-03-07 21:25:05', 4144, NULL, NULL, 'IPAY2022/03/4090', 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 (4092, '2022-03-07 21:33:12', 4145, NULL, NULL, 'IPAY2022/03/4091', NULL, 'cash', '', '', '', '', '', '', '122.8000', NULL, 11, NULL, 'received', '', '122.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 (4093, '2022-03-07 21:42:40', 4146, NULL, NULL, 'IPAY2022/03/4092', NULL, 'cash', '', '', '', '', '', '', '133.0000', NULL, 17, 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 (4094, '2022-03-07 21:55:53', 4147, NULL, NULL, 'IPAY2022/03/4093', 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 (4095, '2022-03-07 22:01:12', 4148, NULL, NULL, 'IPAY2022/03/4094', 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 (4096, '2022-03-08 11:52:55', 4149, NULL, NULL, 'IPAY2022/03/4095', NULL, 'cash', '', '', '', '', '', '', '173.1000', NULL, 15, NULL, 'received', '', '173.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 (4097, '2022-03-08 13:09:03', 4150, NULL, NULL, 'IPAY2022/03/4096', NULL, 'cash', '', '', '', '', '', '', '42.7000', NULL, 15, NULL, 'received', '', '42.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 (4098, '2022-03-08 13:50:13', 4151, NULL, NULL, 'IPAY2022/03/4097', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 15, 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 (4099, '2022-03-08 14:18:13', 4152, NULL, NULL, 'IPAY2022/03/4098', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 15, 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 (4100, '2022-03-08 14:25:44', 4153, NULL, NULL, 'IPAY2022/03/4099', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 15, 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 (4101, '2022-03-08 14:48:23', 4154, NULL, NULL, 'IPAY2022/03/4100', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 15, 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 (4102, '2022-03-08 14:52:36', 4155, NULL, NULL, 'IPAY2022/03/4101', 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 (4103, '2022-03-08 15:27:19', 4156, NULL, NULL, 'IPAY2022/03/4102', NULL, 'cash', '', '', '', '', '', '', '360.3000', NULL, 17, NULL, 'received', '', '360.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 (4104, '2022-03-08 15:30:00', 4157, NULL, NULL, 'IPAY2022/03/4103', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 17, 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 (4105, '2022-03-08 15:39:24', 4158, NULL, NULL, 'IPAY2022/03/4104', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 8, 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 (4106, '2022-03-08 19:15:55', 4159, NULL, NULL, 'IPAY2022/03/4105', NULL, 'cash', '', '', '', '', '', '', '373.9000', NULL, 11, NULL, 'received', '', '373.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 (4107, '2022-03-08 20:02:16', 4160, NULL, NULL, 'IPAY2022/03/4106', NULL, 'cash', '', '', '', '', '', '', '419.3000', NULL, 16, NULL, 'received', '', '419.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 (4108, '2022-03-08 20:10:21', 4161, NULL, NULL, 'IPAY2022/03/4107', NULL, 'cash', '', '', '', '', '', '', '67.5000', NULL, 11, 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 (4109, '2022-03-08 21:32:56', 4162, NULL, NULL, 'IPAY2022/03/4108', NULL, 'cash', '', '', '', '', '', '', '402.6800', NULL, 11, NULL, 'received', '', '402.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 (4110, '2022-03-08 21:33:39', 4163, NULL, NULL, 'IPAY2022/03/4109', 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 (4111, '2022-03-08 21:42:54', 4164, NULL, NULL, 'IPAY2022/03/4110', NULL, 'cash', '', '', '', '', '', '', '121.5000', NULL, 16, NULL, 'received', '', '121.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4112, '2022-03-08 21:46:52', 4165, NULL, NULL, 'IPAY2022/03/4111', NULL, 'cash', '', '', '', '', '', '', '170.5000', NULL, 22, 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 (4113, '2022-03-08 21:51:56', 4166, NULL, NULL, 'IPAY2022/03/4112', 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 (4114, '2022-03-08 21:52:14', 4167, NULL, NULL, 'IPAY2022/03/4113', 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 (4115, '2022-03-09 15:07:30', 4168, NULL, NULL, 'IPAY2022/03/4114', NULL, 'cash', '', '', '', '', '', '', '138.5000', NULL, 8, NULL, 'received', '', '138.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4116, '2022-03-09 15:12:44', 4169, NULL, NULL, 'IPAY2022/03/4115', NULL, 'cash', '', '', '', '', '', '', '302.8000', NULL, 17, NULL, 'received', '', '302.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 (4117, '2022-03-09 15:15:58', 4170, NULL, NULL, 'IPAY2022/03/4116', NULL, 'cash', '', '', '', '', '', '', '259.0000', NULL, 21, NULL, 'received', '', '259.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4118, '2022-03-09 20:07:11', 4171, NULL, NULL, 'IPAY2022/03/4117', NULL, 'cash', '', '', '', '', '', '', '601.9000', NULL, 11, NULL, 'received', '', '601.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 (4119, '2022-03-09 21:04:22', 4172, NULL, NULL, 'IPAY2022/03/4118', NULL, 'cash', '', '', '', '', '', '', '433.2000', NULL, 16, NULL, 'received', '', '433.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 (4120, '2022-03-09 21:35:50', 4173, NULL, NULL, 'IPAY2022/03/4119', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 11, 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 (4121, '2022-03-09 21:40:49', 4174, NULL, NULL, 'IPAY2022/03/4120', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 16, 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 (4122, '2022-03-09 21:50:42', 4175, NULL, NULL, 'IPAY2022/03/4121', NULL, 'cash', '', '', '', '', '', '', '76.8000', NULL, 22, NULL, 'received', '', '76.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 (4123, '2022-03-09 21:54:56', 4176, NULL, NULL, 'IPAY2022/03/4122', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 11, 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 (4124, '2022-03-10 15:01:33', 4177, NULL, NULL, 'IPAY2022/03/4123', NULL, 'cash', '', '', '', '', '', '', '337.2000', NULL, 17, NULL, 'received', '', '337.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 (4125, '2022-03-10 15:04:22', 4178, NULL, NULL, 'IPAY2022/03/4124', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 21, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4126, '2022-03-10 20:17:18', 4179, NULL, NULL, 'IPAY2022/03/4125', NULL, 'cash', '', '', '', '', '', '', '103.5000', NULL, 8, 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 (4127, '2022-03-10 20:27:22', 4180, NULL, NULL, 'IPAY2022/03/4126', NULL, 'cash', '', '', '', '', '', '', '238.5700', NULL, 8, NULL, 'received', '', '238.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 (4128, '2022-03-10 20:41:05', 4181, NULL, NULL, 'IPAY2022/03/4127', NULL, 'cash', '', '', '', '', '', '', '979.3000', NULL, 17, NULL, 'received', '', '979.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 (4129, '2022-03-10 20:42:34', 4182, NULL, NULL, 'IPAY2022/03/4128', 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 (4130, '2022-03-10 20:49:38', 4183, NULL, NULL, 'IPAY2022/03/4129', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 8, 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 (4131, '2022-03-10 20:59:59', 4184, NULL, NULL, 'IPAY2022/03/4130', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (4132, '2022-03-10 21:36:58', 4185, NULL, NULL, 'IPAY2022/03/4131', NULL, 'cash', '', '', '', '', '', '', '862.4400', NULL, 11, NULL, 'received', '', '862.4400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4133, '2022-03-10 21:44:17', 4186, NULL, NULL, 'IPAY2022/03/4132', NULL, 'cash', '', '', '', '', '', '', '53.5000', NULL, 17, NULL, 'received', '', '53.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4134, '2022-03-10 22:01:35', 4187, NULL, NULL, 'IPAY2022/03/4133', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 11, 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 (4135, '2022-03-11 13:57:23', 4188, NULL, NULL, 'IPAY2022/03/4134', 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 (4136, '2022-03-11 15:00:39', 4189, NULL, NULL, 'IPAY2022/03/4135', 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 (4137, '2022-03-11 16:03:04', 4190, NULL, NULL, 'IPAY2022/03/4136', NULL, 'cash', '', '', '', '', '', '', '153.8000', NULL, 17, 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 (4138, '2022-03-11 18:07:18', 4191, NULL, NULL, 'IPAY2022/03/4137', NULL, 'cash', '', '', '', '', '', '', '122.6000', NULL, 11, NULL, 'received', '', '122.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 (4139, '2022-03-11 18:58:36', 4192, NULL, NULL, 'IPAY2022/03/4138', NULL, 'cash', '', '', '', '', '', '', '132.5000', NULL, 11, NULL, 'received', '', '132.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4140, '2022-03-11 20:47:55', 4193, NULL, NULL, 'IPAY2022/03/4139', NULL, 'cash', '', '', '', '', '', '', '79.3000', NULL, 11, NULL, 'received', '', '79.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 (4141, '2022-03-11 20:48:13', 4194, NULL, NULL, 'IPAY2022/03/4140', NULL, 'cash', '', '', '', '', '', '', '498.4000', NULL, 16, NULL, 'received', '', '498.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 (4142, '2022-03-11 21:27:04', 4195, NULL, NULL, 'IPAY2022/03/4141', NULL, 'cash', '', '', '', '', '', '', '210.5200', NULL, 8, NULL, 'received', '', '210.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 (4143, '2022-03-11 21:44:52', 4196, NULL, NULL, 'IPAY2022/03/4142', NULL, 'cash', '', '', '', '', '', '', '216.5400', NULL, 11, NULL, 'received', '', '216.5400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4144, '2022-03-11 21:45:36', 4197, NULL, NULL, 'IPAY2022/03/4143', NULL, 'cash', '', '', '', '', '', '', '107.9000', NULL, 16, NULL, 'received', '', '107.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 (4145, '2022-03-11 21:47:28', 4198, NULL, NULL, 'IPAY2022/03/4144', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (4146, '2022-03-11 21:49:28', 4199, NULL, NULL, 'IPAY2022/03/4145', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (4147, '2022-03-11 21:50:32', 4200, NULL, NULL, 'IPAY2022/03/4146', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (4148, '2022-03-11 21:50:57', 4201, NULL, NULL, 'IPAY2022/03/4147', NULL, 'cash', '', '', '', '', '', '', '257.0000', NULL, 11, NULL, 'received', '', '257.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4149, '2022-03-11 21:51:00', 4202, NULL, NULL, 'IPAY2022/03/4148', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 8, 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 (4150, '2022-03-11 22:03:02', 4203, NULL, NULL, 'IPAY2022/03/4149', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 8, 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 (4151, '2022-03-12 14:59:17', 4204, NULL, NULL, 'IPAY2022/03/4150', NULL, 'cash', '', '', '', '', '', '', '92.0000', NULL, 22, 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 (4152, '2022-03-12 15:24:05', 4205, NULL, NULL, 'IPAY2022/03/4151', NULL, 'cash', '', '', '', '', '', '', '994.0000', NULL, 21, NULL, 'received', '', '994.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4153, '2022-03-12 17:55:42', 4206, NULL, NULL, 'IPAY2022/03/4152', NULL, 'cash', '', '', '', '', '', '', '204.2000', NULL, 15, NULL, 'received', '', '204.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 (4154, '2022-03-12 19:11:27', 4207, NULL, NULL, 'IPAY2022/03/4153', NULL, 'cash', '', '', '', '', '', '', '113.0000', NULL, 15, NULL, 'received', '', '113.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4155, '2022-03-12 19:28:15', 4208, NULL, NULL, 'IPAY2022/03/4154', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 15, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4156, '2022-03-12 19:38:11', 4209, NULL, NULL, 'IPAY2022/03/4155', NULL, 'cash', '', '', '', '', '', '', '1016.8000', NULL, 16, NULL, 'received', '', '1016.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 (4157, '2022-03-12 20:09:56', 4210, NULL, NULL, 'IPAY2022/03/4156', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 8, 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 (4158, '2022-03-12 20:11:12', 4211, NULL, NULL, 'IPAY2022/03/4157', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 15, 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 (4159, '2022-03-12 20:49:15', 4212, NULL, NULL, 'IPAY2022/03/4158', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 15, 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 (4160, '2022-03-12 20:52:07', 4213, NULL, NULL, 'IPAY2022/03/4159', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 15, 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 (4161, '2022-03-12 20:57:16', 4214, NULL, NULL, 'IPAY2022/03/4160', NULL, 'cash', '', '', '', '', '', '', '448.9800', NULL, 8, NULL, 'received', '', '448.9800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4162, '2022-03-12 21:12:40', 4215, NULL, NULL, 'IPAY2022/03/4161', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 8, 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 (4163, '2022-03-12 21:14:55', 4216, NULL, NULL, 'IPAY2022/03/4162', NULL, 'cash', '', '', '', '', '', '', '246.7000', NULL, 16, NULL, 'received', '', '246.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 (4164, '2022-03-12 21:16:39', 4217, NULL, NULL, 'IPAY2022/03/4163', NULL, 'cash', '', '', '', '', '', '', '60.7200', NULL, 15, NULL, 'received', '', '60.7200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4165, '2022-03-12 21:40:24', 4218, NULL, NULL, 'IPAY2022/03/4164', NULL, 'cash', '', '', '', '', '', '', '87.5700', NULL, 15, NULL, 'received', '', '87.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 (4166, '2022-03-12 21:43:10', 4219, NULL, NULL, 'IPAY2022/03/4165', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (4167, '2022-03-12 21:43:37', 4220, NULL, NULL, 'IPAY2022/03/4166', NULL, 'cash', '', '', '', '', '', '', '62.3000', NULL, 16, NULL, 'received', '', '62.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 (4168, '2022-03-12 21:47:11', 4221, NULL, NULL, 'IPAY2022/03/4167', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 16, 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 (4169, '2022-03-12 21:47:41', 4222, NULL, NULL, 'IPAY2022/03/4168', 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 (4170, '2022-03-13 18:15:43', 4223, NULL, NULL, 'IPAY2022/03/4169', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 15, 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 (4171, '2022-03-13 18:59:07', 4224, NULL, NULL, 'IPAY2022/03/4170', NULL, 'cash', '', '', '', '', '', '', '79.7000', NULL, 15, NULL, 'received', '', '79.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 (4172, '2022-03-13 19:26:20', 4225, NULL, NULL, 'IPAY2022/03/4171', NULL, 'cash', '', '', '', '', '', '', '71.8000', NULL, 15, NULL, 'received', '', '71.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 (4173, '2022-03-13 20:18:49', 4226, NULL, NULL, 'IPAY2022/03/4172', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 15, 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 (4174, '2022-03-13 20:39:28', 4227, NULL, NULL, 'IPAY2022/03/4173', NULL, 'cash', '', '', '', '', '', '', '505.3000', NULL, 8, NULL, 'received', '', '505.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 (4175, '2022-03-13 20:47:10', 4228, NULL, NULL, 'IPAY2022/03/4174', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (4176, '2022-03-13 20:51:47', 4229, NULL, NULL, 'IPAY2022/03/4175', NULL, 'cash', '', '', '', '', '', '', '157.5000', NULL, 15, NULL, 'received', '', '157.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4177, '2022-03-13 20:54:36', 4230, NULL, NULL, 'IPAY2022/03/4176', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 8, 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 (4178, '2022-03-13 21:11:25', 4231, NULL, NULL, 'IPAY2022/03/4177', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (4179, '2022-03-13 21:12:26', 4232, NULL, NULL, 'IPAY2022/03/4178', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 15, 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 (4180, '2022-03-13 21:32:00', 4233, NULL, NULL, 'IPAY2022/03/4179', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 15, 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 (4181, '2022-03-13 21:34:41', 4234, NULL, NULL, 'IPAY2022/03/4180', NULL, 'cash', '', '', '', '', '', '', '990.9000', NULL, 17, NULL, 'received', '', '990.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 (4182, '2022-03-13 21:44:51', 4235, NULL, NULL, 'IPAY2022/03/4181', NULL, 'cash', '', '', '', '', '', '', '11.8000', NULL, 17, NULL, 'received', '', '11.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 (4183, '2022-03-13 21:54:35', 4236, NULL, NULL, 'IPAY2022/03/4182', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 8, 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 (4184, '2022-03-14 18:37:11', 4237, NULL, NULL, 'IPAY2022/03/4183', NULL, 'cash', '', '', '', '', '', '', '450.5000', NULL, 11, NULL, 'received', '', '450.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4185, '2022-03-14 19:22:55', 4238, NULL, NULL, 'IPAY2022/03/4184', NULL, 'cash', '', '', '', '', '', '', '265.2000', NULL, 11, NULL, 'received', '', '265.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 (4186, '2022-03-14 19:48:58', 4239, NULL, NULL, 'IPAY2022/03/4185', NULL, 'cash', '', '', '', '', '', '', '732.3000', NULL, 17, NULL, 'received', '', '732.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 (4187, '2022-03-14 20:43:39', 4240, NULL, NULL, 'IPAY2022/03/4186', NULL, 'cash', '', '', '', '', '', '', '376.7000', NULL, 11, NULL, 'received', '', '376.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 (4188, '2022-03-14 21:16:47', 4241, NULL, NULL, 'IPAY2022/03/4187', NULL, 'cash', '', '', '', '', '', '', '71.1600', NULL, 22, NULL, 'received', '', '71.1600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4189, '2022-03-14 21:44:24', 4242, NULL, NULL, 'IPAY2022/03/4188', NULL, 'cash', '', '', '', '', '', '', '120.9000', NULL, 17, NULL, 'received', '', '120.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 (4190, '2022-03-14 21:47:36', 4243, NULL, NULL, 'IPAY2022/03/4189', NULL, 'cash', '', '', '', '', '', '', '31.7000', NULL, 11, NULL, 'received', '', '31.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 (4191, '2022-03-14 21:58:42', 4244, NULL, NULL, 'IPAY2022/03/4190', 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 (4192, '2022-03-14 22:01:41', 4245, NULL, NULL, 'IPAY2022/03/4191', NULL, 'cash', '', '', '', '', '', '', '180.0800', NULL, 22, NULL, 'received', '', '180.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 (4193, '2022-03-15 11:54:41', 4246, NULL, NULL, 'IPAY2022/03/4192', NULL, 'cash', '', '', '', '', '', '', '175.2000', NULL, 15, NULL, 'received', '', '175.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 (4194, '2022-03-15 12:24:00', 4247, NULL, NULL, 'IPAY2022/03/4193', NULL, 'cash', '', '', '', '', '', '', '221.2000', NULL, 15, NULL, 'received', '', '221.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 (4195, '2022-03-15 13:48:49', 4248, NULL, NULL, 'IPAY2022/03/4194', NULL, 'cash', '', '', '', '', '', '', '161.5000', NULL, 15, NULL, 'received', '', '161.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4196, '2022-03-15 14:17:46', 4249, NULL, NULL, 'IPAY2022/03/4195', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 15, 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 (4197, '2022-03-15 14:29:15', 4250, NULL, NULL, 'IPAY2022/03/4196', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 15, 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 (4198, '2022-03-15 14:32:09', 4251, NULL, NULL, 'IPAY2022/03/4197', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 15, 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 (4199, '2022-03-15 14:38:25', 4252, NULL, NULL, 'IPAY2022/03/4198', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 15, 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 (4200, '2022-03-15 14:46:22', 4253, NULL, NULL, 'IPAY2022/03/4199', NULL, 'cash', '', '', '', '', '', '', '416.6000', NULL, 17, NULL, 'received', '', '416.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 (4201, '2022-03-15 14:48:02', 4254, NULL, NULL, 'IPAY2022/03/4200', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 15, 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 (4202, '2022-03-15 16:12:52', 4255, NULL, NULL, 'IPAY2022/03/4201', NULL, 'cash', '', '', '', '', '', '', '115.4000', NULL, 8, NULL, 'received', '', '115.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 (4203, '2022-03-15 18:15:53', 4256, NULL, NULL, 'IPAY2022/03/4202', NULL, 'cash', '', '', '', '', '', '', '262.2000', NULL, 11, NULL, 'received', '', '262.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 (4204, '2022-03-15 19:21:19', 4257, NULL, NULL, 'IPAY2022/03/4203', NULL, 'cash', '', '', '', '', '', '', '131.0000', NULL, 11, 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 (4205, '2022-03-15 20:49:01', 4258, NULL, NULL, 'IPAY2022/03/4204', NULL, 'cash', '', '', '', '', '', '', '735.4000', NULL, 16, NULL, 'received', '', '735.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 (4206, '2022-03-15 21:23:38', 4259, NULL, NULL, 'IPAY2022/03/4205', NULL, 'cash', '', '', '', '', '', '', '183.3000', NULL, 22, NULL, 'received', '', '183.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 (4207, '2022-03-15 21:35:38', 4260, NULL, NULL, 'IPAY2022/03/4206', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 22, 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 (4208, '2022-03-15 21:41:35', 4261, NULL, NULL, 'IPAY2022/03/4207', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 16, 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 (4209, '2022-03-15 21:46:47', 4262, NULL, NULL, 'IPAY2022/03/4208', NULL, 'cash', '', '', '', '', '', '', '370.3000', NULL, 11, NULL, 'received', '', '370.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 (4210, '2022-03-15 22:07:29', 4263, NULL, NULL, 'IPAY2022/03/4209', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (4211, '2022-03-15 22:59:48', 4264, NULL, NULL, 'IPAY2022/03/4210', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 4, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4212, '2022-03-16 14:39:19', 4265, NULL, NULL, 'IPAY2022/03/4211', NULL, 'cash', '', '', '', '', '', '', '326.0000', NULL, 21, 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 (4213, '2022-03-16 15:37:23', 4266, NULL, NULL, 'IPAY2022/03/4212', NULL, 'cash', '', '', '', '', '', '', '460.4000', NULL, 17, NULL, 'received', '', '460.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 (4214, '2022-03-16 17:45:02', 4267, NULL, NULL, 'IPAY2022/03/4213', NULL, 'cash', '', '', '', '', '', '', '224.0000', NULL, 15, 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 (4215, '2022-03-16 18:55:11', 4268, NULL, NULL, 'IPAY2022/03/4214', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 8, 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 (4216, '2022-03-16 21:09:24', 4269, NULL, NULL, 'IPAY2022/03/4215', NULL, 'cash', '', '', '', '', '', '', '560.3700', NULL, 15, NULL, 'received', '', '560.3700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4217, '2022-03-16 21:33:06', 4270, NULL, NULL, 'IPAY2022/03/4216', NULL, 'cash', '', '', '', '', '', '', '765.1000', NULL, 16, NULL, 'received', '', '765.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 (4218, '2022-03-16 21:37:15', 4271, NULL, NULL, 'IPAY2022/03/4217', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 15, 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 (4219, '2022-03-16 21:42:36', 4272, NULL, NULL, 'IPAY2022/03/4218', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 16, 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 (4220, '2022-03-16 21:42:46', 4273, NULL, NULL, 'IPAY2022/03/4219', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 15, 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 (4221, '2022-03-16 21:47:32', 4274, NULL, NULL, 'IPAY2022/03/4220', 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 (4222, '2022-03-17 14:22:25', 4275, NULL, NULL, 'IPAY2022/03/4221', NULL, 'cash', '', '', '', '', '', '', '227.0000', NULL, 21, NULL, 'received', '', '227.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4223, '2022-03-17 15:26:18', 4276, NULL, NULL, 'IPAY2022/03/4222', NULL, 'cash', '', '', '', '', '', '', '679.7000', NULL, 17, NULL, 'received', '', '679.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 (4224, '2022-03-17 18:24:39', 4277, NULL, NULL, 'IPAY2022/03/4223', NULL, 'cash', '', '', '', '', '', '', '0.8000', NULL, 16, NULL, 'received', '', '0.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 (4225, '2022-03-17 19:28:04', 4278, NULL, NULL, 'IPAY2022/03/4224', NULL, 'cash', '', '', '', '', '', '', '469.3000', NULL, 11, NULL, 'received', '', '469.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 (4226, '2022-03-17 20:05:26', 4279, NULL, NULL, 'IPAY2022/03/4225', NULL, 'cash', '', '', '', '', '', '', '231.5000', NULL, 11, 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 (4227, '2022-03-17 20:41:32', 4280, NULL, NULL, 'IPAY2022/03/4226', NULL, 'cash', '', '', '', '', '', '', '814.4000', NULL, 16, NULL, 'received', '', '814.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 (4228, '2022-03-17 21:08:25', 4281, NULL, NULL, 'IPAY2022/03/4227', NULL, 'cash', '', '', '', '', '', '', '167.2000', NULL, 11, NULL, 'received', '', '167.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 (4229, '2022-03-17 21:41:36', 4282, NULL, NULL, 'IPAY2022/03/4228', NULL, 'cash', '', '', '', '', '', '', '91.0000', NULL, 16, NULL, 'received', '', '91.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4230, '2022-03-17 21:45:59', 4283, NULL, NULL, 'IPAY2022/03/4229', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 11, 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 (4231, '2022-03-17 21:58:49', 4284, NULL, NULL, 'IPAY2022/03/4230', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 11, 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 (4232, '2022-03-18 12:53:36', 4285, NULL, NULL, 'IPAY2022/03/4231', NULL, 'cash', '', '', '', '', '', '', '150.4400', NULL, 8, NULL, 'received', '', '150.4400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4233, '2022-03-18 13:05:21', 4286, NULL, NULL, 'IPAY2022/03/4232', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 8, 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 (4234, '2022-03-18 13:15:49', 4287, NULL, NULL, 'IPAY2022/03/4233', NULL, 'cash', '', '', '', '', '', '', '209.2000', NULL, 8, NULL, 'received', '', '209.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 (4235, '2022-03-18 13:29:16', 4288, NULL, NULL, 'IPAY2022/03/4234', NULL, 'cash', '', '', '', '', '', '', '146.5000', NULL, 7, NULL, 'received', '', '146.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4236, '2022-03-18 14:44:16', 4289, NULL, NULL, 'IPAY2022/03/4235', NULL, 'cash', '', '', '', '', '', '', '257.3000', NULL, 21, NULL, 'received', '', '257.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 (4237, '2022-03-18 15:46:13', 4290, NULL, NULL, 'IPAY2022/03/4236', NULL, 'cash', '', '', '', '', '', '', '156.0000', NULL, 17, NULL, 'received', '', '156.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4238, '2022-03-18 18:00:34', 4291, NULL, NULL, 'IPAY2022/03/4237', NULL, 'cash', '', '', '', '', '', '', '141.7000', NULL, 11, NULL, 'received', '', '141.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 (4239, '2022-03-18 19:50:09', 4292, NULL, NULL, 'IPAY2022/03/4238', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 22, 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 (4240, '2022-03-18 20:10:31', 4293, NULL, NULL, 'IPAY2022/03/4239', NULL, 'cash', '', '', '', '', '', '', '344.0000', NULL, 11, 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 (4241, '2022-03-18 20:11:10', 4294, NULL, NULL, 'IPAY2022/03/4240', 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 (4242, '2022-03-18 20:44:55', 4295, NULL, NULL, 'IPAY2022/03/4241', NULL, 'cash', '', '', '', '', '', '', '87.0000', NULL, 11, 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 (4243, '2022-03-18 20:56:30', 4296, NULL, NULL, 'IPAY2022/03/4242', NULL, 'cash', '', '', '', '', '', '', '466.4000', NULL, 16, NULL, 'received', '', '466.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 (4244, '2022-03-18 21:37:36', 4297, NULL, NULL, 'IPAY2022/03/4243', 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 (4245, '2022-03-18 21:39:37', 4298, NULL, NULL, 'IPAY2022/03/4244', NULL, 'cash', '', '', '', '', '', '', '191.5000', NULL, 22, 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 (4246, '2022-03-18 21:41:59', 4299, NULL, NULL, 'IPAY2022/03/4245', NULL, 'cash', '', '', '', '', '', '', '97.9000', NULL, 16, NULL, 'received', '', '97.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 (4247, '2022-03-18 22:03:13', 4300, NULL, NULL, 'IPAY2022/03/4246', 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 (4248, '2022-03-19 12:21:13', 4301, NULL, NULL, 'IPAY2022/03/4247', NULL, 'cash', '', '', '', '', '', '', '135.0000', NULL, 15, 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 (4249, '2022-03-19 12:24:21', 4302, NULL, NULL, 'IPAY2022/03/4248', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 15, 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 (4250, '2022-03-19 14:18:09', 4303, NULL, NULL, 'IPAY2022/03/4249', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 15, 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 (4251, '2022-03-19 14:48:34', 4304, NULL, NULL, 'IPAY2022/03/4250', NULL, 'cash', '', '', '', '', '', '', '39.7000', NULL, 15, NULL, 'received', '', '39.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 (4252, '2022-03-19 15:24:07', 4305, NULL, NULL, 'IPAY2022/03/4251', NULL, 'cash', '', '', '', '', '', '', '15.8000', NULL, 22, NULL, 'received', '', '15.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 (4253, '2022-03-19 16:30:16', 4306, NULL, NULL, 'IPAY2022/03/4252', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 8, 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 (4254, '2022-03-19 18:29:35', 4307, NULL, NULL, 'IPAY2022/03/4253', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 8, 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 (4255, '2022-03-19 19:41:24', 4308, NULL, NULL, 'IPAY2022/03/4254', NULL, 'cash', '', '', '', '', '', '', '879.0000', NULL, 16, NULL, 'received', '', '879.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4256, '2022-03-19 20:39:15', 4309, NULL, NULL, 'IPAY2022/03/4255', NULL, 'cash', '', '', '', '', '', '', '210.3000', NULL, 8, NULL, 'received', '', '210.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 (4257, '2022-03-19 20:44:23', 4310, NULL, NULL, 'IPAY2022/03/4256', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 8, 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 (4258, '2022-03-19 21:19:47', 4311, NULL, NULL, 'IPAY2022/03/4257', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (4259, '2022-03-19 21:30:32', 4312, NULL, NULL, 'IPAY2022/03/4258', NULL, 'cash', '', '', '', '', '', '', '151.5000', NULL, 16, 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 (4260, '2022-03-19 21:41:34', 4313, NULL, NULL, 'IPAY2022/03/4259', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 8, 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 (4261, '2022-03-19 21:42:08', 4314, NULL, NULL, 'IPAY2022/03/4260', NULL, 'cash', '', '', '', '', '', '', '4.8000', NULL, 16, NULL, 'received', '', '4.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 (4262, '2022-03-19 21:44:15', 4315, NULL, NULL, 'IPAY2022/03/4261', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 16, NULL, 'received', '', '45.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4263, '2022-03-19 21:53:37', 4316, NULL, NULL, 'IPAY2022/03/4262', NULL, 'cash', '', '', '', '', '', '', '518.0000', NULL, 11, NULL, 'received', '', '518.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4264, '2022-03-20 18:35:13', 4317, NULL, NULL, 'IPAY2022/03/4263', NULL, 'cash', '', '', '', '', '', '', '307.1000', NULL, 11, NULL, 'received', '', '307.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 (4265, '2022-03-20 19:41:48', 4318, NULL, NULL, 'IPAY2022/03/4264', NULL, 'cash', '', '', '', '', '', '', '91.4000', NULL, 11, NULL, 'received', '', '91.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 (4266, '2022-03-20 19:56:43', 4319, NULL, NULL, 'IPAY2022/03/4265', NULL, 'cash', '', '', '', '', '', '', '62.9000', NULL, 11, NULL, 'received', '', '62.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 (4267, '2022-03-20 20:08:04', 4320, NULL, NULL, 'IPAY2022/03/4266', NULL, 'cash', '', '', '', '', '', '', '841.4000', NULL, 16, NULL, 'received', '', '841.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 (4268, '2022-03-20 20:12:32', 4321, NULL, NULL, 'IPAY2022/03/4267', NULL, 'cash', '', '', '', '', '', '', '89.5000', NULL, 11, 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 (4269, '2022-03-20 21:25:28', 4322, NULL, NULL, 'IPAY2022/03/4268', NULL, 'cash', '', '', '', '', '', '', '102.7400', NULL, 11, NULL, 'received', '', '102.7400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4270, '2022-03-20 21:26:34', 4323, NULL, NULL, 'IPAY2022/03/4269', NULL, 'cash', '', '', '', '', '', '', '325.6000', NULL, 8, NULL, 'received', '', '325.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 (4271, '2022-03-20 21:31:07', 4324, NULL, NULL, 'IPAY2022/03/4270', NULL, 'cash', '', '', '', '', '', '', '107.1000', NULL, 16, NULL, 'received', '', '107.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 (4272, '2022-03-20 21:38:41', 4325, NULL, NULL, 'IPAY2022/03/4271', NULL, 'cash', '', '', '', '', '', '', '13.3000', NULL, 11, NULL, 'received', '', '13.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 (4273, '2022-03-20 21:42:06', 4326, NULL, NULL, 'IPAY2022/03/4272', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 16, 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 (4274, '2022-03-20 21:42:59', 4327, NULL, NULL, 'IPAY2022/03/4273', 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 (4275, '2022-03-20 21:51:24', 4328, NULL, NULL, 'IPAY2022/03/4274', NULL, 'cash', '', '', '', '', '', '', '6.6000', NULL, 11, NULL, 'received', '', '6.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 (4276, '2022-03-20 21:56:08', 4329, NULL, NULL, 'IPAY2022/03/4275', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (4277, '2022-03-20 21:56:11', 4330, NULL, NULL, 'IPAY2022/03/4276', 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 (4278, '2022-03-20 22:01:34', 4331, NULL, NULL, 'IPAY2022/03/4277', NULL, 'cash', '', '', '', '', '', '', '3.7000', NULL, 11, NULL, 'received', '', '3.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 (4279, '2022-03-21 14:52:55', 4332, NULL, NULL, 'IPAY2022/03/4278', NULL, 'cash', '', '', '', '', '', '', '352.3000', NULL, 21, NULL, 'received', '', '352.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 (4280, '2022-03-21 15:19:23', 4333, NULL, NULL, 'IPAY2022/03/4279', NULL, 'cash', '', '', '', '', '', '', '77.5000', NULL, 8, 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 (4281, '2022-03-21 17:25:28', 4334, NULL, NULL, 'IPAY2022/03/4280', NULL, 'cash', '', '', '', '', '', '', '568.1000', NULL, 17, NULL, 'received', '', '568.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 (4282, '2022-03-21 19:54:50', 4335, NULL, NULL, 'IPAY2022/03/4281', NULL, 'cash', '', '', '', '', '', '', '204.7400', NULL, 7, NULL, 'received', '', '204.7400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4283, '2022-03-21 20:04:52', 4336, NULL, NULL, 'IPAY2022/03/4282', 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 (4284, '2022-03-21 21:02:38', 4337, NULL, NULL, 'IPAY2022/03/4283', NULL, 'cash', '', '', '', '', '', '', '57.5000', NULL, 7, NULL, 'received', '', '57.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4285, '2022-03-21 21:12:35', 4338, NULL, NULL, 'IPAY2022/03/4284', 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 (4286, '2022-03-21 21:15:54', 4339, NULL, NULL, 'IPAY2022/03/4285', NULL, 'cash', '', '', '', '', '', '', '3.6000', NULL, 7, NULL, 'received', '', '3.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 (4287, '2022-03-21 21:22:19', 4340, NULL, NULL, 'IPAY2022/03/4286', NULL, 'cash', '', '', '', '', '', '', '703.4000', NULL, 11, NULL, 'received', '', '703.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 (4288, '2022-03-21 21:33:11', 4341, NULL, NULL, 'IPAY2022/03/4287', 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 (4289, '2022-03-21 21:39:01', 4342, NULL, NULL, 'IPAY2022/03/4288', NULL, 'cash', '', '', '', '', '', '', '374.4900', NULL, 17, NULL, 'received', '', '374.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 (4290, '2022-03-21 21:44:07', 4343, NULL, NULL, 'IPAY2022/03/4289', 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 (4291, '2022-03-21 21:57:22', 4344, NULL, NULL, 'IPAY2022/03/4290', NULL, 'cash', '', '', '', '', '', '', '59.1000', NULL, 11, NULL, 'received', '', '59.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 (4292, '2022-03-22 15:17:10', 4345, NULL, NULL, 'IPAY2022/03/4291', NULL, 'cash', '', '', '', '', '', '', '139.6000', NULL, 11, NULL, 'received', '', '139.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 (4293, '2022-03-22 15:33:31', 4346, NULL, NULL, 'IPAY2022/03/4292', NULL, 'cash', '', '', '', '', '', '', '211.8000', NULL, 17, NULL, 'received', '', '211.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 (4294, '2022-03-22 15:46:39', 4347, NULL, NULL, 'IPAY2022/03/4293', NULL, 'cash', '', '', '', '', '', '', '245.0200', NULL, 11, NULL, 'received', '', '245.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 (4295, '2022-03-22 15:52:22', 4348, NULL, NULL, 'IPAY2022/03/4294', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 11, 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 (4296, '2022-03-22 16:01:12', 4349, NULL, NULL, 'IPAY2022/03/4295', NULL, 'cash', '', '', '', '', '', '', '185.0000', NULL, 8, 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 (4297, '2022-03-22 21:00:12', 4350, NULL, NULL, 'IPAY2022/03/4296', NULL, 'cash', '', '', '', '', '', '', '576.5000', NULL, 16, NULL, 'received', '', '576.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4298, '2022-03-22 21:03:35', 4351, NULL, NULL, 'IPAY2022/03/4297', NULL, 'cash', '', '', '', '', '', '', '805.7100', NULL, 11, NULL, 'received', '', '805.7100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4299, '2022-03-22 21:38:41', 4352, NULL, NULL, 'IPAY2022/03/4298', NULL, 'cash', '', '', '', '', '', '', '39.2000', NULL, 11, NULL, 'received', '', '39.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 (4300, '2022-03-22 21:41:43', 4353, NULL, NULL, 'IPAY2022/03/4299', NULL, 'cash', '', '', '', '', '', '', '188.0000', NULL, 22, NULL, 'received', '', '188.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4301, '2022-03-22 21:48:05', 4354, NULL, NULL, 'IPAY2022/03/4300', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 16, 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 (4302, '2022-03-22 21:50:51', 4355, NULL, NULL, 'IPAY2022/03/4301', 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 (4303, '2022-03-22 21:51:12', 4356, NULL, NULL, 'IPAY2022/03/4302', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 22, 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 (4304, '2022-03-22 22:02:17', 4357, NULL, NULL, 'IPAY2022/03/4303', 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 (4305, '2022-03-23 15:05:32', 4358, NULL, NULL, 'IPAY2022/03/4304', NULL, 'cash', '', '', '', '', '', '', '440.5000', NULL, 17, NULL, 'received', '', '440.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4306, '2022-03-23 15:05:54', 4359, NULL, NULL, 'IPAY2022/03/4305', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 8, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4307, '2022-03-23 15:07:13', 4360, NULL, NULL, 'IPAY2022/03/4306', NULL, 'cash', '', '', '', '', '', '', '289.9000', NULL, 21, NULL, 'received', '', '289.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 (4308, '2022-03-23 16:53:54', 4361, NULL, NULL, 'IPAY2022/03/4307', NULL, 'cash', '', '', '', '', '', '', '339.2400', NULL, 15, NULL, 'received', '', '339.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4309, '2022-03-23 18:09:40', 4362, NULL, NULL, 'IPAY2022/03/4308', NULL, 'cash', '', '', '', '', '', '', '153.0000', NULL, 15, NULL, 'received', '', '153.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4310, '2022-03-23 19:29:36', 4363, NULL, NULL, 'IPAY2022/03/4309', NULL, 'cash', '', '', '', '', '', '', '121.2000', NULL, 15, NULL, 'received', '', '121.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 (4311, '2022-03-23 20:26:49', 4364, NULL, NULL, 'IPAY2022/03/4310', NULL, 'cash', '', '', '', '', '', '', '131.7000', NULL, 15, NULL, 'received', '', '131.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 (4312, '2022-03-23 20:39:29', 4365, NULL, NULL, 'IPAY2022/03/4311', NULL, 'cash', '', '', '', '', '', '', '464.5000', NULL, 16, NULL, 'received', '', '464.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4313, '2022-03-23 20:56:01', 4366, NULL, NULL, 'IPAY2022/03/4312', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 15, 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 (4314, '2022-03-23 21:11:50', 4367, NULL, NULL, 'IPAY2022/03/4313', NULL, 'cash', '', '', '', '', '', '', '69.0100', NULL, 15, NULL, 'received', '', '69.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 (4315, '2022-03-23 21:26:08', 4368, NULL, NULL, 'IPAY2022/03/4314', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 15, 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 (4316, '2022-03-23 21:32:23', 4369, NULL, NULL, 'IPAY2022/03/4315', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 15, 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 (4317, '2022-03-23 21:35:29', 4370, NULL, NULL, 'IPAY2022/03/4316', NULL, 'cash', '', '', '', '', '', '', '198.1000', NULL, 22, NULL, 'received', '', '198.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 (4318, '2022-03-23 21:40:13', 4371, NULL, NULL, 'IPAY2022/03/4317', NULL, 'cash', '', '', '', '', '', '', '64.3000', NULL, 16, NULL, 'received', '', '64.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 (4319, '2022-03-24 14:24:42', 4372, NULL, NULL, 'IPAY2022/03/4318', NULL, 'cash', '', '', '', '', '', '', '421.7000', NULL, 21, NULL, 'received', '', '421.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 (4320, '2022-03-24 15:39:02', 4373, NULL, NULL, 'IPAY2022/03/4319', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 8, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4321, '2022-03-24 16:26:46', 4374, NULL, NULL, 'IPAY2022/03/4320', NULL, 'cash', '', '', '', '', '', '', '693.0000', NULL, 17, NULL, 'received', '', '693.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4322, '2022-03-24 20:24:22', 4375, NULL, NULL, 'IPAY2022/03/4321', NULL, 'cash', '', '', '', '', '', '', '426.3000', NULL, 16, NULL, 'received', '', '426.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 (4323, '2022-03-24 21:38:33', 4376, NULL, NULL, 'IPAY2022/03/4322', NULL, 'cash', '', '', '', '', '', '', '147.7000', NULL, 22, NULL, 'received', '', '147.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 (4324, '2022-03-24 21:41:58', 4377, NULL, NULL, 'IPAY2022/03/4323', NULL, 'cash', '', '', '', '', '', '', '97.0000', NULL, 16, NULL, 'received', '', '97.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4325, '2022-03-24 22:04:51', 4378, NULL, NULL, 'IPAY2022/03/4324', NULL, 'cash', '', '', '', '', '', '', '598.5000', NULL, 11, NULL, 'received', '', '598.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4326, '2022-03-24 22:21:35', 4379, NULL, NULL, 'IPAY2022/03/4325', 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 (4327, '2022-03-25 14:11:31', 4380, NULL, NULL, 'IPAY2022/03/4326', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 28, 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 (4328, '2022-03-25 14:30:54', 4381, NULL, NULL, 'IPAY2022/03/4327', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 28, 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 (4329, '2022-03-25 14:36:32', 4382, NULL, NULL, 'IPAY2022/03/4328', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 28, 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 (4330, '2022-03-25 14:44:51', 4383, NULL, NULL, 'IPAY2022/03/4329', NULL, 'cash', '', '', '', '', '', '', '542.1000', NULL, 21, NULL, 'received', '', '542.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 (4331, '2022-03-25 14:46:22', 4384, NULL, NULL, 'IPAY2022/03/4330', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 28, 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 (4332, '2022-03-25 14:53:55', 4385, NULL, NULL, 'IPAY2022/03/4331', NULL, 'cash', '', '', '', '', '', '', '154.0000', NULL, 21, NULL, 'received', '', '154.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4333, '2022-03-25 15:50:48', 4386, NULL, NULL, 'IPAY2022/03/4332', NULL, 'cash', '', '', '', '', '', '', '511.0000', NULL, 17, NULL, 'received', '', '511.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4334, '2022-03-25 17:47:06', 4387, NULL, NULL, 'IPAY2022/03/4333', NULL, 'cash', '', '', '', '', '', '', '130.7000', NULL, 11, NULL, 'received', '', '130.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 (4335, '2022-03-25 18:32:55', 4388, NULL, NULL, 'IPAY2022/03/4334', 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 (4336, '2022-03-25 19:05:26', 4389, NULL, NULL, 'IPAY2022/03/4335', NULL, 'cash', '', '', '', '', '', '', '29.8000', NULL, 11, NULL, 'received', '', '29.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 (4337, '2022-03-25 19:33:36', 4390, NULL, NULL, 'IPAY2022/03/4336', NULL, 'cash', '', '', '', '', '', '', '62.8000', NULL, 11, NULL, 'received', '', '62.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 (4338, '2022-03-25 20:46:24', 4391, NULL, NULL, 'IPAY2022/03/4337', NULL, 'cash', '', '', '', '', '', '', '75.9000', NULL, 11, NULL, 'received', '', '75.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 (4339, '2022-03-25 21:01:21', 4392, NULL, NULL, 'IPAY2022/03/4338', NULL, 'cash', '', '', '', '', '', '', '367.5000', NULL, 16, NULL, 'received', '', '367.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4340, '2022-03-25 21:10:29', 4393, NULL, NULL, 'IPAY2022/03/4339', NULL, 'cash', '', '', '', '', '', '', '195.0000', NULL, 11, NULL, 'received', '', '195.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4341, '2022-03-25 21:13:02', 4394, NULL, NULL, 'IPAY2022/03/4340', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (4342, '2022-03-25 21:25:05', 4395, NULL, NULL, 'IPAY2022/03/4341', NULL, 'cash', '', '', '', '', '', '', '115.0000', NULL, 22, NULL, 'received', '', '115.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4343, '2022-03-25 21:41:40', 4396, NULL, NULL, 'IPAY2022/03/4342', NULL, 'cash', '', '', '', '', '', '', '84.5000', NULL, 16, 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 (4344, '2022-03-25 22:01:41', 4397, NULL, NULL, 'IPAY2022/03/4343', NULL, 'cash', '', '', '', '', '', '', '120.7000', NULL, 11, NULL, 'received', '', '120.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 (4345, '2022-03-25 22:07:11', 4398, NULL, NULL, 'IPAY2022/03/4344', 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 (4346, '2022-03-25 22:08:49', 4399, NULL, NULL, 'IPAY2022/03/4345', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 11, 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 (4347, '2022-03-26 13:50:14', 4400, NULL, NULL, 'IPAY2022/03/4346', NULL, 'cash', '', '', '', '', '', '', '264.7000', NULL, 29, NULL, 'received', '', '264.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 (4348, '2022-03-26 14:21:07', 4401, NULL, NULL, 'IPAY2022/03/4347', NULL, 'cash', '', '', '', '', '', '', '243.2000', NULL, 16, NULL, 'received', '', '243.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 (4349, '2022-03-26 14:35:30', 4402, NULL, NULL, 'IPAY2022/03/4348', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 22, 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 (4350, '2022-03-26 14:47:57', 4403, NULL, NULL, 'IPAY2022/03/4349', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (4351, '2022-03-26 16:47:50', 4404, NULL, NULL, 'IPAY2022/03/4350', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 11, 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 (4352, '2022-03-26 20:57:30', 4405, NULL, NULL, 'IPAY2022/03/4351', NULL, 'cash', '', '', '', '', '', '', '158.7000', NULL, 8, NULL, 'received', '', '158.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 (4353, '2022-03-26 21:10:12', 4406, NULL, NULL, 'IPAY2022/03/4352', NULL, 'cash', '', '', '', '', '', '', '868.4000', NULL, 11, NULL, 'received', '', '868.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 (4354, '2022-03-26 21:44:46', 4407, NULL, NULL, 'IPAY2022/03/4353', NULL, 'cash', '', '', '', '', '', '', '804.8000', NULL, 17, NULL, 'received', '', '804.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 (4355, '2022-03-26 21:52:37', 4408, NULL, NULL, 'IPAY2022/03/4354', NULL, 'cash', '', '', '', '', '', '', '28.8600', NULL, 8, NULL, 'received', '', '28.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 (4356, '2022-03-26 21:55:20', 4409, NULL, NULL, 'IPAY2022/03/4355', NULL, 'cash', '', '', '', '', '', '', '162.3000', NULL, 11, NULL, 'received', '', '162.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 (4357, '2022-03-26 22:05:46', 4410, NULL, NULL, 'IPAY2022/03/4356', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 8, 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 (4358, '2022-03-26 22:17:51', 4411, NULL, NULL, 'IPAY2022/03/4357', 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 (4359, '2022-03-27 18:23:03', 4412, NULL, NULL, 'IPAY2022/03/4358', NULL, 'cash', '', '', '', '', '', '', '319.3000', NULL, 29, NULL, 'received', '', '319.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 (4360, '2022-03-27 20:13:11', 4413, NULL, NULL, 'IPAY2022/03/4359', NULL, 'cash', '', '', '', '', '', '', '217.5000', NULL, 29, NULL, 'received', '', '217.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4361, '2022-03-27 20:26:36', 4414, NULL, NULL, 'IPAY2022/03/4360', NULL, 'cash', '', '', '', '', '', '', '679.5000', NULL, 17, NULL, 'received', '', '679.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4362, '2022-03-27 21:03:41', 4415, NULL, NULL, 'IPAY2022/03/4361', NULL, 'cash', '', '', '', '', '', '', '183.1000', NULL, 29, NULL, 'received', '', '183.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 (4363, '2022-03-27 21:10:49', 4416, NULL, NULL, 'IPAY2022/03/4362', NULL, 'cash', '', '', '', '', '', '', '81.5000', NULL, 29, NULL, 'received', '', '81.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4364, '2022-03-27 21:22:09', 4417, NULL, NULL, 'IPAY2022/03/4363', NULL, 'cash', '', '', '', '', '', '', '224.1000', NULL, 22, 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 (4365, '2022-03-27 21:27:35', 4418, NULL, NULL, 'IPAY2022/03/4364', NULL, 'cash', '', '', '', '', '', '', '36.7000', NULL, 29, NULL, 'received', '', '36.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 (4366, '2022-03-27 21:36:21', 4419, NULL, NULL, 'IPAY2022/03/4365', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 29, 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 (4367, '2022-03-27 21:41:13', 4420, NULL, NULL, 'IPAY2022/03/4366', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 29, 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 (4368, '2022-03-27 21:45:13', 4421, NULL, NULL, 'IPAY2022/03/4367', NULL, 'cash', '', '', '', '', '', '', '104.0000', NULL, 17, 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 (4369, '2022-03-27 21:53:18', 4422, NULL, NULL, 'IPAY2022/03/4368', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 29, 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 (4370, '2022-03-28 14:10:52', 4423, NULL, NULL, 'IPAY2022/03/4369', NULL, 'cash', '', '', '', '', '', '', '362.7000', NULL, 21, NULL, 'received', '', '362.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 (4371, '2022-03-28 14:56:41', 4424, NULL, NULL, 'IPAY2022/03/4370', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 21, 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 (4372, '2022-03-28 20:16:14', 4425, NULL, NULL, 'IPAY2022/03/4371', NULL, 'cash', '', '', '', '', '', '', '799.6000', NULL, 11, NULL, 'received', '', '799.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 (4373, '2022-03-28 20:35:15', 4426, NULL, NULL, 'IPAY2022/03/4372', NULL, 'cash', '', '', '', '', '', '', '970.8000', NULL, 17, NULL, 'received', '', '970.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 (4374, '2022-03-28 21:08:34', 4427, NULL, NULL, 'IPAY2022/03/4373', NULL, 'cash', '', '', '', '', '', '', '48.8000', NULL, 11, NULL, 'received', '', '48.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 (4375, '2022-03-28 21:18:54', 4428, NULL, NULL, 'IPAY2022/03/4374', NULL, 'cash', '', '', '', '', '', '', '21.9000', NULL, 11, NULL, 'received', '', '21.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 (4376, '2022-03-28 21:38:25', 4429, NULL, NULL, 'IPAY2022/03/4375', 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 (4377, '2022-03-28 21:45:11', 4430, NULL, NULL, 'IPAY2022/03/4376', NULL, 'cash', '', '', '', '', '', '', '121.2000', NULL, 17, NULL, 'received', '', '121.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 (4378, '2022-03-28 21:52:20', 4431, NULL, NULL, 'IPAY2022/03/4377', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (4379, '2022-03-28 21:55:35', 4432, NULL, NULL, 'IPAY2022/03/4378', 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 (4380, '2022-03-29 10:08:06', 4433, NULL, NULL, 'IPAY2022/03/4379', NULL, 'cash', '', '', '', '', '', '', '204.5000', NULL, 29, 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 (4381, '2022-03-29 11:02:56', 4434, NULL, NULL, 'IPAY2022/03/4380', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 29, 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 (4382, '2022-03-29 11:31:19', 4435, NULL, NULL, 'IPAY2022/03/4381', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 29, 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 (4383, '2022-03-29 13:28:51', 4436, NULL, NULL, 'IPAY2022/03/4382', NULL, 'cash', '', '', '', '', '', '', '42.7000', NULL, 29, NULL, 'received', '', '42.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 (4384, '2022-03-29 13:52:16', 4437, NULL, NULL, 'IPAY2022/03/4383', NULL, 'cash', '', '', '', '', '', '', '91.2000', NULL, 29, 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 (4385, '2022-03-29 14:46:48', 4438, NULL, NULL, 'IPAY2022/03/4384', NULL, 'cash', '', '', '', '', '', '', '12.7000', NULL, 29, NULL, 'received', '', '12.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 (4386, '2022-03-29 15:08:56', 4439, NULL, NULL, 'IPAY2022/03/4385', NULL, 'cash', '', '', '', '', '', '', '213.2000', NULL, 17, NULL, 'received', '', '213.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 (4387, '2022-03-29 15:58:18', 4440, NULL, NULL, 'IPAY2022/03/4386', 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 (4388, '2022-03-29 19:40:30', 4441, NULL, NULL, 'IPAY2022/03/4387', NULL, 'cash', '', '', '', '', '', '', '150.1400', NULL, 11, NULL, 'received', '', '150.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4389, '2022-03-29 20:53:43', 4442, NULL, NULL, 'IPAY2022/03/4388', NULL, 'cash', '', '', '', '', '', '', '281.5000', NULL, 11, 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 (4390, '2022-03-29 20:56:08', 4443, NULL, NULL, 'IPAY2022/03/4389', NULL, 'cash', '', '', '', '', '', '', '224.1000', NULL, 22, 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 (4391, '2022-03-29 20:58:12', 4444, NULL, NULL, 'IPAY2022/03/4390', NULL, 'cash', '', '', '', '', '', '', '138.5000', NULL, 11, NULL, 'received', '', '138.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4392, '2022-03-29 20:58:57', 4445, NULL, NULL, 'IPAY2022/03/4391', NULL, 'cash', '', '', '', '', '', '', '87.5000', NULL, 22, 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 (4393, '2022-03-29 21:17:17', 4446, NULL, NULL, 'IPAY2022/03/4392', NULL, 'cash', '', '', '', '', '', '', '146.5000', NULL, 22, NULL, 'received', '', '146.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4394, '2022-03-29 21:17:47', 4447, NULL, NULL, 'IPAY2022/03/4393', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 11, 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 (4395, '2022-03-29 21:18:39', 4448, NULL, NULL, 'IPAY2022/03/4394', 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 (4396, '2022-03-29 21:28:23', 4449, NULL, NULL, 'IPAY2022/03/4395', NULL, 'cash', '', '', '', '', '', '', '160.5000', NULL, 8, NULL, 'received', '', '160.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4397, '2022-03-29 21:48:46', 4450, NULL, NULL, 'IPAY2022/03/4396', NULL, 'cash', '', '', '', '', '', '', '817.9000', NULL, 16, NULL, 'received', '', '817.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 (4398, '2022-03-29 21:49:28', 4451, NULL, NULL, 'IPAY2022/03/4397', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 16, 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 (4399, '2022-03-29 21:50:01', 4452, NULL, NULL, 'IPAY2022/03/4398', NULL, 'cash', '', '', '', '', '', '', '55.7000', NULL, 11, NULL, 'received', '', '55.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 (4400, '2022-03-29 22:00:46', 4453, NULL, NULL, 'IPAY2022/03/4399', NULL, 'cash', '', '', '', '', '', '', '199.4000', NULL, 22, NULL, 'received', '', '199.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 (4401, '2022-03-30 09:26:53', 4454, NULL, NULL, 'IPAY2022/03/4400', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 21, 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 (4402, '2022-03-30 14:48:46', 4455, NULL, NULL, 'IPAY2022/03/4401', NULL, 'cash', '', '', '', '', '', '', '321.6000', NULL, 21, NULL, 'received', '', '321.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 (4403, '2022-03-30 15:13:19', 4456, NULL, NULL, 'IPAY2022/03/4402', NULL, 'cash', '', '', '', '', '', '', '321.6000', NULL, 21, NULL, 'received', '', '321.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 (4404, '2022-03-30 15:24:24', 4457, NULL, NULL, 'IPAY2022/03/4403', NULL, 'cash', '', '', '', '', '', '', '298.9000', NULL, 17, NULL, 'received', '', '298.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 (4405, '2022-03-30 15:28:39', 4458, NULL, NULL, 'IPAY2022/03/4404', NULL, 'cash', '', '', '', '', '', '', '137.0000', NULL, 8, NULL, 'received', '', '137.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4406, '2022-03-30 18:54:09', 4459, NULL, NULL, 'IPAY2022/03/4405', NULL, 'cash', '', '', '', '', '', '', '254.5000', NULL, 29, NULL, 'received', '', '254.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4407, '2022-03-30 20:12:31', 4460, NULL, NULL, 'IPAY2022/03/4406', NULL, 'cash', '', '', '', '', '', '', '171.4000', NULL, 29, NULL, 'received', '', '171.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 (4408, '2022-03-30 20:34:25', 4461, NULL, NULL, 'IPAY2022/03/4407', NULL, 'cash', '', '', '', '', '', '', '129.5000', NULL, 29, 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 (4409, '2022-03-30 20:43:09', 4462, NULL, NULL, 'IPAY2022/03/4408', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 29, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4410, '2022-03-30 20:50:29', 4463, NULL, NULL, 'IPAY2022/03/4409', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 29, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4411, '2022-03-30 21:01:22', 4464, NULL, NULL, 'IPAY2022/03/4410', NULL, 'cash', '', '', '', '', '', '', '868.7000', NULL, 16, NULL, 'received', '', '868.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 (4412, '2022-03-30 21:25:02', 4465, NULL, NULL, 'IPAY2022/03/4411', NULL, 'cash', '', '', '', '', '', '', '6.7000', NULL, 29, NULL, 'received', '', '6.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 (4413, '2022-03-30 21:39:55', 4466, NULL, NULL, 'IPAY2022/03/4412', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 16, 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 (4414, '2022-03-30 21:40:33', 4467, NULL, NULL, 'IPAY2022/03/4413', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 29, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4415, '2022-03-30 21:42:22', 4468, NULL, NULL, 'IPAY2022/03/4414', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (4416, '2022-03-30 21:46:33', 4469, NULL, NULL, 'IPAY2022/03/4415', NULL, 'cash', '', '', '', '', '', '', '416.1500', NULL, 22, NULL, 'received', '', '416.1500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4417, '2022-03-30 21:59:22', 4470, NULL, NULL, 'IPAY2022/03/4416', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 22, 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 (4418, '2022-03-31 11:58:49', 4471, NULL, NULL, 'IPAY2022/03/4417', NULL, 'cash', '', '', '', '', '', '', '186.3000', NULL, 21, NULL, 'received', '', '186.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 (4419, '2022-03-31 12:26:18', 4472, NULL, NULL, 'IPAY2022/03/4418', NULL, 'cash', '', '', '', '', '', '', '213.0000', NULL, 8, NULL, 'received', '', '213.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4420, '2022-03-31 12:52:58', 4473, NULL, NULL, 'IPAY2022/03/4419', NULL, 'cash', '', '', '', '', '', '', '183.8000', NULL, 21, NULL, 'received', '', '183.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 (4421, '2022-03-31 14:38:29', 4474, NULL, NULL, 'IPAY2022/03/4420', NULL, 'cash', '', '', '', '', '', '', '194.0000', NULL, 21, 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 (4422, '2022-03-31 14:50:48', 4475, NULL, NULL, 'IPAY2022/03/4421', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 21, 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 (4423, '2022-03-31 15:15:49', 4476, NULL, NULL, 'IPAY2022/03/4422', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 8, 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 (4424, '2022-03-31 15:25:34', 4477, NULL, NULL, 'IPAY2022/03/4423', NULL, 'cash', '', '', '', '', '', '', '2.6000', NULL, 8, NULL, 'received', '', '2.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 (4425, '2022-03-31 15:26:05', 4478, NULL, NULL, 'IPAY2022/03/4424', NULL, 'cash', '', '', '', '', '', '', '342.4900', NULL, 17, NULL, 'received', '', '342.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 (4426, '2022-03-31 15:37:25', 4479, NULL, NULL, 'IPAY2022/03/4425', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 8, 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 (4427, '2022-03-31 18:06:59', 4480, NULL, NULL, 'IPAY2022/03/4426', NULL, 'cash', '', '', '', '', '', '', '143.0000', NULL, 11, NULL, 'received', '', '143.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4428, '2022-03-31 19:01:58', 4481, NULL, NULL, 'IPAY2022/03/4427', NULL, 'cash', '', '', '', '', '', '', '87.5000', NULL, 11, 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 (4429, '2022-03-31 19:18:25', 4482, NULL, NULL, 'IPAY2022/03/4428', 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 (4430, '2022-03-31 20:06:53', 4483, NULL, NULL, 'IPAY2022/03/4429', NULL, 'cash', '', '', '', '', '', '', '216.4000', NULL, 11, NULL, 'received', '', '216.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 (4431, '2022-03-31 20:20:31', 4484, NULL, NULL, 'IPAY2022/03/4430', NULL, 'cash', '', '', '', '', '', '', '467.5000', NULL, 16, NULL, 'received', '', '467.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4432, '2022-03-31 20:34:27', 4485, NULL, NULL, 'IPAY2022/03/4431', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 11, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4433, '2022-03-31 20:49:25', 4486, NULL, NULL, 'IPAY2022/03/4432', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 11, 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 (4434, '2022-03-31 21:13:08', 4487, NULL, NULL, 'IPAY2022/03/4433', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 11, 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 (4435, '2022-03-31 21:32:13', 4488, NULL, NULL, 'IPAY2022/03/4434', 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 (4436, '2022-03-31 21:37:14', 4489, NULL, NULL, 'IPAY2022/03/4435', 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 (4437, '2022-03-31 21:40:37', 4490, NULL, NULL, 'IPAY2022/03/4436', NULL, 'cash', '', '', '', '', '', '', '86.9000', NULL, 16, NULL, 'received', '', '86.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 (4438, '2022-03-31 21:51:54', 4491, NULL, NULL, 'IPAY2022/03/4437', NULL, 'cash', '', '', '', '', '', '', '366.5000', NULL, 22, NULL, 'received', '', '366.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4439, '2022-03-31 22:00:28', 4492, NULL, NULL, 'IPAY2022/03/4438', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 11, 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 (4440, '2022-04-01 13:53:22', 4493, NULL, NULL, 'IPAY2022/04/4439', NULL, 'cash', '', '', '', '', '', '', '376.3000', NULL, 21, NULL, 'received', '', '376.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 (4441, '2022-04-01 14:56:25', 4494, NULL, NULL, 'IPAY2022/04/4440', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 28, 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 (4442, '2022-04-01 15:22:59', 4495, NULL, NULL, 'IPAY2022/04/4441', NULL, 'cash', '', '', '', '', '', '', '211.0000', NULL, 17, 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 (4443, '2022-04-01 17:47:28', 4496, NULL, NULL, 'IPAY2022/04/4442', NULL, 'cash', '', '', '', '', '', '', '131.8000', NULL, 11, NULL, 'received', '', '131.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 (4444, '2022-04-01 19:05:20', 4497, NULL, NULL, 'IPAY2022/04/4443', NULL, 'cash', '', '', '', '', '', '', '103.5000', NULL, 11, 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 (4445, '2022-04-01 19:16:44', 4498, NULL, NULL, 'IPAY2022/04/4444', 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 (4446, '2022-04-01 20:09:16', 4499, NULL, NULL, 'IPAY2022/04/4445', NULL, 'cash', '', '', '', '', '', '', '202.3000', NULL, 11, NULL, 'received', '', '202.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 (4447, '2022-04-01 20:20:20', 4500, NULL, NULL, 'IPAY2022/04/4446', NULL, 'cash', '', '', '', '', '', '', '63.0000', NULL, 11, 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 (4448, '2022-04-01 20:32:58', 4501, NULL, NULL, 'IPAY2022/04/4447', NULL, 'cash', '', '', '', '', '', '', '35.3000', NULL, 11, NULL, 'received', '', '35.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 (4449, '2022-04-01 20:47:11', 4502, NULL, NULL, 'IPAY2022/04/4448', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 11, 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 (4450, '2022-04-01 21:08:26', 4503, NULL, NULL, 'IPAY2022/04/4449', NULL, 'cash', '', '', '', '', '', '', '69.5000', NULL, 11, NULL, 'received', '', '69.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4451, '2022-04-01 21:12:57', 4504, NULL, NULL, 'IPAY2022/04/4450', NULL, 'cash', '', '', '', '', '', '', '340.3000', NULL, 16, NULL, 'received', '', '340.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 (4452, '2022-04-01 21:33:34', 4505, NULL, NULL, 'IPAY2022/04/4451', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 11, 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 (4453, '2022-04-01 21:48:05', 4506, NULL, NULL, 'IPAY2022/04/4452', NULL, 'cash', '', '', '', '', '', '', '147.5000', NULL, 16, 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 (4454, '2022-04-01 22:22:34', 4507, NULL, NULL, 'IPAY2022/04/4453', NULL, 'cash', '', '', '', '', '', '', '465.9000', NULL, 8, NULL, 'received', '', '465.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 (4455, '2022-04-02 11:38:38', 4508, NULL, NULL, 'IPAY2022/04/4454', NULL, 'cash', '', '', '', '', '', '', '145.8000', NULL, 29, NULL, 'received', '', '145.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 (4456, '2022-04-02 11:52:32', 4509, NULL, NULL, 'IPAY2022/04/4455', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 29, 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 (4457, '2022-04-02 12:14:10', 4510, NULL, NULL, 'IPAY2022/04/4456', NULL, 'cash', '', '', '', '', '', '', '90.5000', NULL, 29, 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 (4458, '2022-04-02 13:47:40', 4511, NULL, NULL, 'IPAY2022/04/4457', NULL, 'cash', '', '', '', '', '', '', '57.5000', NULL, 29, NULL, 'received', '', '57.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4459, '2022-04-02 14:17:09', 4512, NULL, NULL, 'IPAY2022/04/4458', NULL, 'cash', '', '', '', '', '', '', '59.1000', NULL, 29, NULL, 'received', '', '59.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 (4460, '2022-04-02 14:32:46', 4513, NULL, NULL, 'IPAY2022/04/4459', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (4461, '2022-04-02 14:51:14', 4514, NULL, NULL, 'IPAY2022/04/4460', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 29, 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 (4462, '2022-04-02 15:02:33', 4515, NULL, NULL, 'IPAY2022/04/4461', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 29, 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 (4463, '2022-04-02 18:16:30', 4516, NULL, NULL, 'IPAY2022/04/4462', NULL, 'cash', '', '', '', '', '', '', '190.2000', NULL, 8, NULL, 'received', '', '190.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 (4464, '2022-04-02 20:00:41', 4517, NULL, NULL, 'IPAY2022/04/4463', NULL, 'cash', '', '', '', '', '', '', '641.1000', NULL, 11, NULL, 'received', '', '641.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 (4465, '2022-04-02 20:28:37', 4518, NULL, NULL, 'IPAY2022/04/4464', NULL, 'cash', '', '', '', '', '', '', '39.6000', NULL, 11, NULL, 'received', '', '39.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 (4466, '2022-04-02 20:40:12', 4519, NULL, NULL, 'IPAY2022/04/4465', NULL, 'cash', '', '', '', '', '', '', '608.5000', NULL, 16, NULL, 'received', '', '608.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4467, '2022-04-02 20:45:44', 4520, NULL, NULL, 'IPAY2022/04/4466', 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 (4468, '2022-04-02 21:11:46', 4521, NULL, NULL, 'IPAY2022/04/4467', NULL, 'cash', '', '', '', '', '', '', '147.4000', NULL, 8, NULL, 'received', '', '147.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 (4469, '2022-04-02 21:16:14', 4522, NULL, NULL, 'IPAY2022/04/4468', 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 (4470, '2022-04-02 21:22:38', 4523, NULL, NULL, 'IPAY2022/04/4469', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 8, 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 (4471, '2022-04-02 21:24:24', 4524, NULL, NULL, 'IPAY2022/04/4470', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (4472, '2022-04-02 21:25:12', 4525, NULL, NULL, 'IPAY2022/04/4471', 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 (4473, '2022-04-02 21:26:53', 4526, NULL, NULL, 'IPAY2022/04/4472', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 8, 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 (4474, '2022-04-02 21:27:26', 4527, NULL, NULL, 'IPAY2022/04/4473', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 8, 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 (4475, '2022-04-02 21:39:58', 4528, NULL, NULL, 'IPAY2022/04/4474', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 8, 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 (4476, '2022-04-02 21:41:40', 4529, NULL, NULL, 'IPAY2022/04/4475', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 16, 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 (4477, '2022-04-02 21:51:29', 4530, NULL, NULL, 'IPAY2022/04/4476', NULL, 'cash', '', '', '', '', '', '', '6.9000', NULL, 11, NULL, 'received', '', '6.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 (4478, '2022-04-03 16:57:38', 4531, NULL, NULL, 'IPAY2022/04/4477', NULL, 'cash', '', '', '', '', '', '', '91.6000', NULL, 11, NULL, 'received', '', '91.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 (4479, '2022-04-03 17:05:27', 4532, NULL, NULL, 'IPAY2022/04/4478', 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 (4480, '2022-04-03 18:08:20', 4533, NULL, NULL, 'IPAY2022/04/4479', 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 (4481, '2022-04-03 18:12:58', 4534, NULL, NULL, 'IPAY2022/04/4480', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (4482, '2022-04-03 18:54:14', 4535, NULL, NULL, 'IPAY2022/04/4481', NULL, 'cash', '', '', '', '', '', '', '295.2300', NULL, 16, NULL, 'received', '', '295.2300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4483, '2022-04-03 19:00:17', 4536, NULL, NULL, 'IPAY2022/04/4482', NULL, 'cash', '', '', '', '', '', '', '177.5000', NULL, 11, NULL, 'received', '', '177.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4484, '2022-04-03 20:06:04', 4537, NULL, NULL, 'IPAY2022/04/4483', NULL, 'cash', '', '', '', '', '', '', '152.6000', NULL, 11, NULL, 'received', '', '152.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 (4485, '2022-04-03 20:42:03', 4538, NULL, NULL, 'IPAY2022/04/4484', NULL, 'cash', '', '', '', '', '', '', '105.0000', NULL, 11, 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 (4486, '2022-04-03 20:43:23', 4539, NULL, NULL, 'IPAY2022/04/4485', NULL, 'cash', '', '', '', '', '', '', '180.5000', NULL, 8, NULL, 'received', '', '180.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4487, '2022-04-03 20:43:43', 4540, NULL, NULL, 'IPAY2022/04/4486', NULL, 'cash', '', '', '', '', '', '', '510.1000', NULL, 16, NULL, 'received', '', '510.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 (4488, '2022-04-03 20:50:05', 4541, NULL, NULL, 'IPAY2022/04/4487', 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 (4489, '2022-04-03 21:44:46', 4542, NULL, NULL, 'IPAY2022/04/4488', NULL, 'cash', '', '', '', '', '', '', '199.0000', NULL, 16, 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 (4490, '2022-04-03 21:48:55', 4543, NULL, NULL, 'IPAY2022/04/4489', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 8, 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 (4491, '2022-04-03 21:55:07', 4544, NULL, NULL, 'IPAY2022/04/4490', NULL, 'cash', '', '', '', '', '', '', '74.8000', NULL, 11, NULL, 'received', '', '74.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 (4492, '2022-04-04 14:26:02', 4545, NULL, NULL, 'IPAY2022/04/4491', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 21, 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 (4493, '2022-04-04 14:27:57', 4546, NULL, NULL, 'IPAY2022/04/4492', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 21, 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 (4494, '2022-04-04 14:57:02', 4547, NULL, NULL, 'IPAY2022/04/4493', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 21, 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 (4495, '2022-04-04 15:13:50', 4548, NULL, NULL, 'IPAY2022/04/4494', NULL, 'cash', '', '', '', '', '', '', '268.0000', NULL, 8, 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 (4496, '2022-04-04 17:55:30', 4549, NULL, NULL, 'IPAY2022/04/4495', NULL, 'cash', '', '', '', '', '', '', '253.3000', NULL, 11, NULL, 'received', '', '253.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 (4497, '2022-04-04 18:04:20', 4550, NULL, NULL, 'IPAY2022/04/4496', NULL, 'cash', '', '', '', '', '', '', '670.4000', NULL, 17, NULL, 'received', '', '670.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 (4498, '2022-04-04 18:16:16', 4551, NULL, NULL, 'IPAY2022/04/4497', NULL, 'cash', '', '', '', '', '', '', '195.0000', NULL, 28, NULL, 'received', '', '195.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4499, '2022-04-04 20:08:55', 4552, NULL, NULL, 'IPAY2022/04/4498', NULL, 'cash', '', '', '', '', '', '', '77.5800', NULL, 28, NULL, 'received', '', '77.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 (4500, '2022-04-04 20:27:08', 4553, NULL, NULL, 'IPAY2022/04/4499', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 28, 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 (4501, '2022-04-04 20:48:07', 4554, NULL, NULL, 'IPAY2022/04/4500', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 28, 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 (4502, '2022-04-04 20:55:45', 4555, NULL, NULL, 'IPAY2022/04/4501', NULL, 'cash', '', '', '', '', '', '', '441.7000', NULL, 11, NULL, 'received', '', '441.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 (4503, '2022-04-04 21:03:14', 4556, NULL, NULL, 'IPAY2022/04/4502', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 28, 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 (4504, '2022-04-04 21:23:33', 4557, NULL, NULL, 'IPAY2022/04/4503', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 11, 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 (4505, '2022-04-04 21:44:15', 4558, NULL, NULL, 'IPAY2022/04/4504', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 11, 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 (4506, '2022-04-04 21:46:06', 4560, NULL, NULL, 'IPAY2022/04/4505', 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 (4507, '2022-04-04 21:46:06', 4559, NULL, NULL, 'IPAY2022/04/4506', NULL, 'cash', '', '', '', '', '', '', '343.2000', NULL, 17, NULL, 'received', '', '343.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 (4508, '2022-04-04 21:47:41', 4561, NULL, NULL, 'IPAY2022/04/4507', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 17, 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 (4509, '2022-04-04 21:54:30', 4562, NULL, NULL, 'IPAY2022/04/4508', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (4510, '2022-04-04 21:56:09', 4563, NULL, NULL, 'IPAY2022/04/4509', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 28, 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 (4511, '2022-04-04 21:59:32', 4564, NULL, NULL, 'IPAY2022/04/4510', NULL, 'cash', '', '', '', '', '', '', '92.5000', NULL, 28, 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 (4512, '2022-04-04 22:05:14', 4565, NULL, NULL, 'IPAY2022/04/4511', 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 (4513, '2022-04-05 11:32:38', 4566, NULL, NULL, 'IPAY2022/04/4512', NULL, 'cash', '', '', '', '', '', '', '455.0000', NULL, 29, NULL, 'received', '', '455.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4514, '2022-04-05 12:10:37', 4567, NULL, NULL, 'IPAY2022/04/4513', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 29, 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 (4515, '2022-04-05 12:18:27', 4568, NULL, NULL, 'IPAY2022/04/4514', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 29, 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 (4516, '2022-04-05 12:53:07', 4569, NULL, NULL, 'IPAY2022/04/4515', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 29, 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 (4517, '2022-04-05 14:02:01', 4570, NULL, NULL, 'IPAY2022/04/4516', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 29, 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 (4518, '2022-04-05 14:42:53', 4571, NULL, NULL, 'IPAY2022/04/4517', NULL, 'cash', '', '', '', '', '', '', '163.0000', NULL, 8, NULL, 'received', '', '163.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4519, '2022-04-05 14:47:35', 4572, NULL, NULL, 'IPAY2022/04/4518', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 29, 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 (4520, '2022-04-05 15:10:33', 4573, NULL, NULL, 'IPAY2022/04/4519', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 8, 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 (4521, '2022-04-05 15:11:55', 4574, NULL, NULL, 'IPAY2022/04/4520', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (4522, '2022-04-05 15:21:17', 4575, NULL, NULL, 'IPAY2022/04/4521', NULL, 'cash', '', '', '', '', '', '', '408.6000', NULL, 17, NULL, 'received', '', '408.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 (4523, '2022-04-05 18:42:43', 4576, NULL, NULL, 'IPAY2022/04/4522', NULL, 'cash', '', '', '', '', '', '', '149.2000', NULL, 11, NULL, 'received', '', '149.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 (4524, '2022-04-05 18:45:22', 4577, NULL, NULL, 'IPAY2022/04/4523', 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 (4525, '2022-04-05 19:52:18', 4578, NULL, NULL, 'IPAY2022/04/4524', NULL, 'cash', '', '', '', '', '', '', '267.5000', NULL, 11, 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 (4526, '2022-04-05 20:27:24', 4579, NULL, NULL, 'IPAY2022/04/4525', NULL, 'cash', '', '', '', '', '', '', '45.3000', NULL, 11, NULL, 'received', '', '45.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 (4527, '2022-04-05 20:52:45', 4580, NULL, NULL, 'IPAY2022/04/4526', NULL, 'cash', '', '', '', '', '', '', '35.9000', NULL, 11, NULL, 'received', '', '35.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 (4528, '2022-04-05 21:12:21', 4581, NULL, NULL, 'IPAY2022/04/4527', NULL, 'cash', '', '', '', '', '', '', '535.4000', NULL, 16, NULL, 'received', '', '535.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 (4529, '2022-04-05 21:26:37', 4582, NULL, NULL, 'IPAY2022/04/4528', NULL, 'cash', '', '', '', '', '', '', '65.3000', NULL, 11, NULL, 'received', '', '65.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 (4530, '2022-04-05 21:45:09', 4583, NULL, NULL, 'IPAY2022/04/4529', NULL, 'cash', '', '', '', '', '', '', '111.5000', NULL, 16, 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 (4531, '2022-04-05 21:57:25', 4584, NULL, NULL, 'IPAY2022/04/4530', 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 (4532, '2022-04-05 21:58:32', 4585, NULL, NULL, 'IPAY2022/04/4531', NULL, 'cash', '', '', '', '', '', '', '160.7000', NULL, 22, NULL, 'received', '', '160.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 (4533, '2022-04-05 21:59:21', 4586, NULL, NULL, 'IPAY2022/04/4532', 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 (4534, '2022-04-06 15:31:16', 4587, NULL, NULL, 'IPAY2022/04/4533', NULL, 'cash', '', '', '', '', '', '', '292.5000', NULL, 17, NULL, 'received', '', '292.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4535, '2022-04-06 15:43:35', 4588, NULL, NULL, 'IPAY2022/04/4534', NULL, 'cash', '', '', '', '', '', '', '216.0000', NULL, 8, 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 (4536, '2022-04-06 17:49:17', 4589, NULL, NULL, 'IPAY2022/04/4535', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 21, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4537, '2022-04-06 20:38:50', 4590, NULL, NULL, 'IPAY2022/04/4536', NULL, 'cash', '', '', '', '', '', '', '513.9000', NULL, 16, NULL, 'received', '', '513.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 (4538, '2022-04-06 21:08:12', 4591, NULL, NULL, 'IPAY2022/04/4537', NULL, 'cash', '', '', '', '', '', '', '180.9000', NULL, 29, NULL, 'received', '', '180.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 (4539, '2022-04-06 21:40:07', 4592, NULL, NULL, 'IPAY2022/04/4538', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 16, 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 (4540, '2022-04-06 21:52:16', 4593, NULL, NULL, 'IPAY2022/04/4539', NULL, 'cash', '', '', '', '', '', '', '205.0000', NULL, 22, NULL, 'received', '', '205.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4541, '2022-04-07 12:25:26', 4594, NULL, NULL, 'IPAY2022/04/4540', NULL, 'cash', '', '', '', '', '', '', '497.7000', NULL, 21, NULL, 'received', '', '497.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 (4542, '2022-04-07 14:21:48', 4595, NULL, NULL, 'IPAY2022/04/4541', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 21, 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 (4543, '2022-04-07 14:35:47', 4596, NULL, NULL, 'IPAY2022/04/4542', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 21, 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 (4544, '2022-04-07 15:02:56', 4597, NULL, NULL, 'IPAY2022/04/4543', NULL, 'cash', '', '', '', '', '', '', '301.2000', NULL, 17, NULL, 'received', '', '301.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 (4545, '2022-04-07 16:15:08', 4598, NULL, NULL, 'IPAY2022/04/4544', NULL, 'cash', '', '', '', '', '', '', '259.5000', NULL, 8, NULL, 'received', '', '259.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4546, '2022-04-07 21:09:09', 4599, NULL, NULL, 'IPAY2022/04/4545', NULL, 'cash', '', '', '', '', '', '', '412.8000', NULL, 16, NULL, 'received', '', '412.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 (4547, '2022-04-07 21:32:02', 4600, NULL, NULL, 'IPAY2022/04/4546', NULL, 'cash', '', '', '', '', '', '', '110.8000', NULL, 22, NULL, 'received', '', '110.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 (4548, '2022-04-07 21:41:27', 4601, NULL, NULL, 'IPAY2022/04/4547', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 16, 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 (4549, '2022-04-07 21:42:03', 4602, NULL, NULL, 'IPAY2022/04/4548', NULL, 'cash', '', '', '', '', '', '', '666.4000', NULL, 11, NULL, 'received', '', '666.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 (4550, '2022-04-07 22:00:06', 4603, NULL, NULL, 'IPAY2022/04/4549', NULL, 'cash', '', '', '', '', '', '', '86.8600', NULL, 22, NULL, 'received', '', '86.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 (4551, '2022-04-08 13:17:59', 4604, NULL, NULL, 'IPAY2022/04/4550', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 21, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4552, '2022-04-08 14:49:16', 4605, NULL, NULL, 'IPAY2022/04/4551', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 21, 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 (4553, '2022-04-08 19:47:54', 4606, NULL, NULL, 'IPAY2022/04/4552', NULL, 'cash', '', '', '', '', '', '', '149.1000', NULL, 17, NULL, 'received', '', '149.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 (4554, '2022-04-08 21:21:20', 4607, NULL, NULL, 'IPAY2022/04/4553', NULL, 'cash', '', '', '', '', '', '', '945.2000', NULL, 16, NULL, 'received', '', '945.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 (4555, '2022-04-08 21:41:30', 4608, NULL, NULL, 'IPAY2022/04/4554', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 16, 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 (4556, '2022-04-08 21:54:49', 4609, NULL, NULL, 'IPAY2022/04/4555', NULL, 'cash', '', '', '', '', '', '', '803.0000', NULL, 11, NULL, 'received', '', '803.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4557, '2022-04-10 16:45:01', 4610, NULL, NULL, 'IPAY2022/04/4556', NULL, 'cash', '', '', '', '', '', '', '1334.2000', NULL, 17, NULL, 'received', '', '1334.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 (4558, '2022-04-10 20:07:29', 4611, NULL, NULL, 'IPAY2022/04/4557', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 22, 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 (4559, '2022-04-10 20:14:12', 4612, NULL, NULL, 'IPAY2022/04/4558', NULL, 'cash', '', '', '', '', '', '', '207.3000', NULL, 22, NULL, 'received', '', '207.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 (4560, '2022-04-10 20:17:08', 4613, NULL, NULL, 'IPAY2022/04/4559', NULL, 'cash', '', '', '', '', '', '', '555.2000', NULL, 17, NULL, 'received', '', '555.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 (4561, '2022-04-10 20:18:39', 4614, NULL, NULL, 'IPAY2022/04/4560', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 22, 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 (4562, '2022-04-10 20:35:52', 4615, NULL, NULL, 'IPAY2022/04/4561', NULL, 'cash', '', '', '', '', '', '', '256.2400', NULL, 22, NULL, 'received', '', '256.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4563, '2022-04-10 20:48:08', 4616, NULL, NULL, 'IPAY2022/04/4562', NULL, 'cash', '', '', '', '', '', '', '420.9000', NULL, 17, NULL, 'received', '', '420.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 (4564, '2022-04-10 21:06:34', 4617, NULL, NULL, 'IPAY2022/04/4563', NULL, 'cash', '', '', '', '', '', '', '314.3000', NULL, 29, NULL, 'received', '', '314.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 (4565, '2022-04-10 21:33:24', 4618, NULL, NULL, 'IPAY2022/04/4564', NULL, 'cash', '', '', '', '', '', '', '620.0000', NULL, 29, NULL, 'received', '', '620.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4566, '2022-04-10 21:42:15', 4619, NULL, NULL, 'IPAY2022/04/4565', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (4567, '2022-04-10 21:42:46', 4620, NULL, NULL, 'IPAY2022/04/4566', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 29, 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 (4568, '2022-04-10 21:43:59', 4621, NULL, NULL, 'IPAY2022/04/4567', NULL, 'cash', '', '', '', '', '', '', '17.8100', NULL, 29, NULL, 'received', '', '17.8100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4569, '2022-04-10 21:49:35', 4622, NULL, NULL, 'IPAY2022/04/4568', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 17, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4570, '2022-04-10 22:00:11', 4623, NULL, NULL, 'IPAY2022/04/4569', NULL, 'cash', '', '', '', '', '', '', '400.7400', NULL, 22, NULL, 'received', '', '400.7400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4571, '2022-04-11 13:44:09', 4624, NULL, NULL, 'IPAY2022/04/4570', NULL, 'cash', '', '', '', '', '', '', '286.9000', NULL, 21, NULL, 'received', '', '286.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 (4572, '2022-04-11 14:47:44', 4625, NULL, NULL, 'IPAY2022/04/4571', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 21, 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 (4573, '2022-04-11 14:53:44', 4626, NULL, NULL, 'IPAY2022/04/4572', NULL, 'cash', '', '', '', '', '', '', '488.5000', NULL, 8, NULL, 'received', '', '488.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4574, '2022-04-11 20:20:08', 4627, NULL, NULL, 'IPAY2022/04/4573', NULL, 'cash', '', '', '', '', '', '', '399.5000', NULL, 17, NULL, 'received', '', '399.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4575, '2022-04-11 20:33:53', 4628, NULL, NULL, 'IPAY2022/04/4574', NULL, 'cash', '', '', '', '', '', '', '392.7000', NULL, 11, NULL, 'received', '', '392.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 (4576, '2022-04-11 20:46:00', 4629, NULL, NULL, 'IPAY2022/04/4575', NULL, 'cash', '', '', '', '', '', '', '24.3000', NULL, 11, NULL, 'received', '', '24.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 (4577, '2022-04-11 21:19:03', 4630, NULL, NULL, 'IPAY2022/04/4576', NULL, 'cash', '', '', '', '', '', '', '57.3000', NULL, 11, NULL, 'received', '', '57.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 (4578, '2022-04-11 21:34:08', 4631, NULL, NULL, 'IPAY2022/04/4577', NULL, 'cash', '', '', '', '', '', '', '184.3000', NULL, 17, NULL, 'received', '', '184.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 (4579, '2022-04-11 21:35:14', 4632, NULL, NULL, 'IPAY2022/04/4578', NULL, 'cash', '', '', '', '', '', '', '242.5000', NULL, 28, NULL, 'received', '', '242.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4580, '2022-04-11 21:38:53', 4633, NULL, NULL, 'IPAY2022/04/4579', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 28, 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 (4581, '2022-04-11 21:39:48', 4634, NULL, NULL, 'IPAY2022/04/4580', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 11, 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 (4582, '2022-04-11 21:52:52', 4635, NULL, NULL, 'IPAY2022/04/4581', NULL, 'cash', '', '', '', '', '', '', '112.0000', NULL, 28, NULL, 'received', '', '112.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4583, '2022-04-11 21:54:35', 4636, NULL, NULL, 'IPAY2022/04/4582', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 11, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4584, '2022-04-11 21:55:04', 4637, NULL, NULL, 'IPAY2022/04/4583', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 28, 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 (4585, '2022-04-11 21:59:00', 4638, NULL, NULL, 'IPAY2022/04/4584', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 28, 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 (4586, '2022-04-11 22:06:30', 4639, NULL, NULL, 'IPAY2022/04/4585', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 28, 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 (4587, '2022-04-12 12:19:15', 4640, NULL, NULL, 'IPAY2022/04/4586', NULL, 'cash', '', '', '', '', '', '', '144.0000', NULL, 29, NULL, 'received', '', '144.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4588, '2022-04-12 14:14:27', 4641, NULL, NULL, 'IPAY2022/04/4587', NULL, 'cash', '', '', '', '', '', '', '146.5000', NULL, 29, NULL, 'received', '', '146.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4589, '2022-04-12 14:20:18', 4642, NULL, NULL, 'IPAY2022/04/4588', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 29, 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 (4590, '2022-04-12 14:28:38', 4643, NULL, NULL, 'IPAY2022/04/4589', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 29, 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 (4591, '2022-04-12 14:43:45', 4644, NULL, NULL, 'IPAY2022/04/4590', NULL, 'cash', '', '', '', '', '', '', '233.5000', NULL, 17, NULL, 'received', '', '233.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4592, '2022-04-12 15:21:03', 4645, NULL, NULL, 'IPAY2022/04/4591', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 17, 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 (4593, '2022-04-12 15:31:20', 4646, NULL, NULL, 'IPAY2022/04/4592', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 8, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4594, '2022-04-12 20:29:46', 4647, NULL, NULL, 'IPAY2022/04/4593', NULL, 'cash', '', '', '', '', '', '', '435.7000', NULL, 16, NULL, 'received', '', '435.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 (4595, '2022-04-12 21:24:11', 4648, NULL, NULL, 'IPAY2022/04/4594', NULL, 'cash', '', '', '', '', '', '', '157.8000', NULL, 11, NULL, 'received', '', '157.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 (4596, '2022-04-12 21:24:47', 4649, NULL, NULL, 'IPAY2022/04/4595', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 16, 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 (4597, '2022-04-12 21:25:10', 4650, NULL, NULL, 'IPAY2022/04/4596', NULL, 'cash', '', '', '', '', '', '', '301.1000', NULL, 22, NULL, 'received', '', '301.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 (4598, '2022-04-12 21:27:08', 4651, NULL, NULL, 'IPAY2022/04/4597', NULL, 'cash', '', '', '', '', '', '', '69.3000', NULL, 11, NULL, 'received', '', '69.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 (4599, '2022-04-12 21:34:50', 4652, NULL, NULL, 'IPAY2022/04/4598', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 16, 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 (4600, '2022-04-13 15:07:10', 4653, NULL, NULL, 'IPAY2022/04/4599', NULL, 'cash', '', '', '', '', '', '', '71.8000', NULL, 8, NULL, 'received', '', '71.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 (4601, '2022-04-13 15:12:35', 4654, NULL, NULL, 'IPAY2022/04/4600', NULL, 'cash', '', '', '', '', '', '', '467.0000', NULL, 17, 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 (4602, '2022-04-13 21:06:28', 4655, NULL, NULL, 'IPAY2022/04/4601', NULL, 'cash', '', '', '', '', '', '', '560.7000', NULL, 16, NULL, 'received', '', '560.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 (4603, '2022-04-13 21:43:14', 4656, NULL, NULL, 'IPAY2022/04/4602', NULL, 'cash', '', '', '', '', '', '', '65.1000', NULL, 16, NULL, 'received', '', '65.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 (4604, '2022-04-13 21:47:40', 4657, NULL, NULL, 'IPAY2022/04/4603', NULL, 'cash', '', '', '', '', '', '', '202.1000', NULL, 22, NULL, 'received', '', '202.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 (4605, '2022-04-13 22:37:11', 4658, NULL, NULL, 'IPAY2022/04/4604', NULL, 'cash', '', '', '', '', '', '', '67.5000', NULL, 4, 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 (4606, '2022-04-14 14:44:43', 4659, NULL, NULL, 'IPAY2022/04/4605', NULL, 'cash', '', '', '', '', '', '', '182.0000', NULL, 8, NULL, 'received', '', '182.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4607, '2022-04-14 14:54:58', 4660, NULL, NULL, 'IPAY2022/04/4606', NULL, 'cash', '', '', '', '', '', '', '375.9000', NULL, 17, NULL, 'received', '', '375.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 (4608, '2022-04-14 15:13:38', 4661, NULL, NULL, 'IPAY2022/04/4607', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 8, 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 (4609, '2022-04-14 20:33:21', 4662, NULL, NULL, 'IPAY2022/04/4608', NULL, 'cash', '', '', '', '', '', '', '557.5000', NULL, 11, NULL, 'received', '', '557.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4610, '2022-04-14 20:42:40', 4663, NULL, NULL, 'IPAY2022/04/4609', 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 (4611, '2022-04-14 21:11:04', 4664, NULL, NULL, 'IPAY2022/04/4610', NULL, 'cash', '', '', '', '', '', '', '342.0000', NULL, 11, NULL, 'received', '', '342.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4612, '2022-04-14 21:14:29', 4665, NULL, NULL, 'IPAY2022/04/4611', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 11, 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 (4613, '2022-04-14 21:19:49', 4666, NULL, NULL, 'IPAY2022/04/4612', NULL, 'cash', '', '', '', '', '', '', '398.5000', NULL, 16, NULL, 'received', '', '398.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4614, '2022-04-14 21:25:04', 4667, NULL, NULL, 'IPAY2022/04/4613', NULL, 'cash', '', '', '', '', '', '', '168.9000', NULL, 11, NULL, 'received', '', '168.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 (4615, '2022-04-14 21:48:52', 4668, NULL, NULL, 'IPAY2022/04/4614', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 16, 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 (4616, '2022-04-14 21:49:34', 4669, NULL, NULL, 'IPAY2022/04/4615', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 11, 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 (4617, '2022-04-14 21:51:10', 4670, NULL, NULL, 'IPAY2022/04/4616', NULL, 'cash', '', '', '', '', '', '', '372.1000', NULL, 22, NULL, 'received', '', '372.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 (4618, '2022-04-15 12:27:24', 4671, NULL, NULL, 'IPAY2022/04/4617', NULL, 'cash', '', '', '', '', '', '', '137.0000', NULL, 28, NULL, 'received', '', '137.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4619, '2022-04-15 12:39:23', 4672, NULL, NULL, 'IPAY2022/04/4618', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 28, 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 (4620, '2022-04-15 13:07:13', 4673, NULL, NULL, 'IPAY2022/04/4619', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 28, 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 (4621, '2022-04-15 13:18:20', 4674, NULL, NULL, 'IPAY2022/04/4620', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 28, 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 (4622, '2022-04-15 13:19:01', 4675, NULL, NULL, 'IPAY2022/04/4621', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 28, 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 (4623, '2022-04-15 13:47:29', 4676, NULL, NULL, 'IPAY2022/04/4622', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 28, 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 (4624, '2022-04-15 15:03:43', 4677, NULL, NULL, 'IPAY2022/04/4623', NULL, 'cash', '', '', '', '', '', '', '224.3000', NULL, 17, NULL, 'received', '', '224.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 (4625, '2022-04-15 15:04:13', 4678, NULL, NULL, 'IPAY2022/04/4624', NULL, 'cash', '', '', '', '', '', '', '4.6000', NULL, 28, NULL, 'received', '', '4.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 (4626, '2022-04-15 16:30:54', 4679, NULL, NULL, 'IPAY2022/04/4625', NULL, 'cash', '', '', '', '', '', '', '206.9000', NULL, 11, NULL, 'received', '', '206.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 (4627, '2022-04-15 19:08:35', 4680, NULL, NULL, 'IPAY2022/04/4626', NULL, 'cash', '', '', '', '', '', '', '273.0000', NULL, 11, NULL, 'received', '', '273.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4628, '2022-04-15 19:13:28', 4681, NULL, NULL, 'IPAY2022/04/4627', NULL, 'cash', '', '', '', '', '', '', '17.9000', NULL, 11, NULL, 'received', '', '17.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 (4629, '2022-04-15 21:01:23', 4682, NULL, NULL, 'IPAY2022/04/4628', NULL, 'cash', '', '', '', '', '', '', '621.7000', NULL, 16, NULL, 'received', '', '621.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 (4630, '2022-04-15 21:07:20', 4683, NULL, NULL, 'IPAY2022/04/4629', NULL, 'cash', '', '', '', '', '', '', '321.6000', NULL, 11, NULL, 'received', '', '321.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 (4631, '2022-04-15 21:26:31', 4684, NULL, NULL, 'IPAY2022/04/4630', NULL, 'cash', '', '', '', '', '', '', '97.1000', NULL, 11, NULL, 'received', '', '97.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 (4632, '2022-04-15 21:26:37', 4685, NULL, NULL, 'IPAY2022/04/4631', NULL, 'cash', '', '', '', '', '', '', '296.5000', NULL, 16, NULL, 'received', '', '296.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4633, '2022-04-15 21:36:46', 4686, NULL, NULL, 'IPAY2022/04/4632', 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 (4634, '2022-04-15 21:41:02', 4687, NULL, NULL, 'IPAY2022/04/4633', NULL, 'cash', '', '', '', '', '', '', '270.0000', NULL, 22, NULL, 'received', '', '270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4635, '2022-04-15 21:42:00', 4688, NULL, NULL, 'IPAY2022/04/4634', 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 (4636, '2022-04-15 21:46:38', 4689, NULL, NULL, 'IPAY2022/04/4635', NULL, 'cash', '', '', '', '', '', '', '138.5000', NULL, 16, NULL, 'received', '', '138.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4637, '2022-04-15 21:55:03', 4690, NULL, NULL, 'IPAY2022/04/4636', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 11, 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 (4638, '2022-04-16 15:54:17', 4691, NULL, NULL, 'IPAY2022/04/4637', NULL, 'cash', '', '', '', '', '', '', '363.9000', NULL, 11, NULL, 'received', '', '363.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 (4639, '2022-04-16 16:00:22', 4692, NULL, NULL, 'IPAY2022/04/4638', NULL, 'cash', '', '', '', '', '', '', '58.0600', NULL, 11, NULL, 'received', '', '58.0600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4640, '2022-04-16 18:49:26', 4693, NULL, NULL, 'IPAY2022/04/4639', NULL, 'cash', '', '', '', '', '', '', '165.3000', NULL, 11, NULL, 'received', '', '165.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 (4641, '2022-04-16 19:37:27', 4694, NULL, NULL, 'IPAY2022/04/4640', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 11, 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 (4642, '2022-04-16 19:51:56', 4695, NULL, NULL, 'IPAY2022/04/4641', NULL, 'cash', '', '', '', '', '', '', '514.2000', NULL, 16, NULL, 'received', '', '514.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 (4643, '2022-04-16 20:42:44', 4696, NULL, NULL, 'IPAY2022/04/4642', NULL, 'cash', '', '', '', '', '', '', '74.5000', NULL, 22, 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 (4644, '2022-04-16 21:15:37', 4697, NULL, NULL, 'IPAY2022/04/4643', NULL, 'cash', '', '', '', '', '', '', '192.1800', NULL, 11, NULL, 'received', '', '192.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 (4645, '2022-04-16 21:32:17', 4698, NULL, NULL, 'IPAY2022/04/4644', NULL, 'cash', '', '', '', '', '', '', '22.4000', NULL, 11, NULL, 'received', '', '22.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 (4646, '2022-04-16 21:41:34', 4699, NULL, NULL, 'IPAY2022/04/4645', NULL, 'cash', '', '', '', '', '', '', '198.9000', NULL, 16, NULL, 'received', '', '198.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 (4647, '2022-04-16 21:51:56', 4700, NULL, NULL, 'IPAY2022/04/4646', NULL, 'cash', '', '', '', '', '', '', '4.8000', NULL, 11, NULL, 'received', '', '4.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 (4648, '2022-04-16 22:21:04', 4701, NULL, NULL, 'IPAY2022/04/4647', NULL, 'cash', '', '', '', '', '', '', '449.5000', NULL, 8, NULL, 'received', '', '449.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4649, '2022-04-17 18:19:45', 4702, NULL, NULL, 'IPAY2022/04/4648', NULL, 'cash', '', '', '', '', '', '', '117.5000', NULL, 8, NULL, 'received', '', '117.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4650, '2022-04-17 18:32:29', 4703, NULL, NULL, 'IPAY2022/04/4649', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 8, 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 (4651, '2022-04-17 18:44:52', 4704, NULL, NULL, 'IPAY2022/04/4650', NULL, 'cash', '', '', '', '', '', '', '580.9000', NULL, 16, NULL, 'received', '', '580.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 (4652, '2022-04-17 19:48:48', 4705, NULL, NULL, 'IPAY2022/04/4651', NULL, 'cash', '', '', '', '', '', '', '463.2000', NULL, 11, NULL, 'received', '', '463.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 (4653, '2022-04-17 21:02:26', 4706, NULL, NULL, 'IPAY2022/04/4652', NULL, 'cash', '', '', '', '', '', '', '370.1000', NULL, 16, NULL, 'received', '', '370.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 (4654, '2022-04-17 21:39:48', 4707, NULL, NULL, 'IPAY2022/04/4653', NULL, 'cash', '', '', '', '', '', '', '174.0000', NULL, 22, 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 (4655, '2022-04-17 21:41:10', 4708, NULL, NULL, 'IPAY2022/04/4654', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 11, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4656, '2022-04-17 21:42:32', 4709, NULL, NULL, 'IPAY2022/04/4655', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 16, 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 (4657, '2022-04-17 21:50:46', 4710, NULL, NULL, 'IPAY2022/04/4656', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 11, 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 (4658, '2022-04-18 20:21:35', 4711, NULL, NULL, 'IPAY2022/04/4657', NULL, 'cash', '', '', '', '', '', '', '157.5000', NULL, 21, NULL, 'received', '', '157.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4659, '2022-04-18 20:29:13', 4712, NULL, NULL, 'IPAY2022/04/4658', NULL, 'cash', '', '', '', '', '', '', '96.5000', NULL, 21, 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 (4660, '2022-04-18 20:44:37', 4713, NULL, NULL, 'IPAY2022/04/4659', NULL, 'cash', '', '', '', '', '', '', '294.5000', NULL, 21, NULL, 'received', '', '294.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4661, '2022-04-18 21:35:58', 4714, NULL, NULL, 'IPAY2022/04/4660', NULL, 'cash', '', '', '', '', '', '', '185.5000', NULL, 21, NULL, 'received', '', '185.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4662, '2022-04-19 14:50:55', 4715, NULL, NULL, 'IPAY2022/04/4661', NULL, 'cash', '', '', '', '', '', '', '438.8900', NULL, 29, NULL, 'received', '', '438.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 (4663, '2022-04-19 14:51:01', 4716, NULL, NULL, 'IPAY2022/04/4662', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 8, 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 (4664, '2022-04-19 14:56:47', 4717, NULL, NULL, 'IPAY2022/04/4663', NULL, 'cash', '', '', '', '', '', '', '493.4000', NULL, 17, NULL, 'received', '', '493.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 (4665, '2022-04-19 15:07:46', 4718, NULL, NULL, 'IPAY2022/04/4664', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 17, 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 (4666, '2022-04-19 15:08:28', 4719, NULL, NULL, 'IPAY2022/04/4665', NULL, 'cash', '', '', '', '', '', '', '101.2000', NULL, 29, NULL, 'received', '', '101.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 (4667, '2022-04-19 15:12:09', 4720, NULL, NULL, 'IPAY2022/04/4666', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 29, 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 (4668, '2022-04-19 15:38:16', 4721, NULL, NULL, 'IPAY2022/04/4667', NULL, 'cash', '', '', '', '', '', '', '454.8000', NULL, 8, NULL, 'received', '', '454.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 (4669, '2022-04-19 15:47:36', 4722, NULL, NULL, 'IPAY2022/04/4668', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 8, 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 (4670, '2022-04-19 17:56:25', 4723, NULL, NULL, 'IPAY2022/04/4669', NULL, 'cash', '', '', '', '', '', '', '223.3000', NULL, 11, NULL, 'received', '', '223.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 (4671, '2022-04-19 19:45:33', 4724, NULL, NULL, 'IPAY2022/04/4670', NULL, 'cash', '', '', '', '', '', '', '253.2000', NULL, 11, NULL, 'received', '', '253.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 (4672, '2022-04-19 20:52:28', 4725, NULL, NULL, 'IPAY2022/04/4671', NULL, 'cash', '', '', '', '', '', '', '569.0000', NULL, 16, NULL, 'received', '', '569.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4673, '2022-04-19 21:18:12', 4726, NULL, NULL, 'IPAY2022/04/4672', NULL, 'cash', '', '', '', '', '', '', '158.3000', NULL, 11, NULL, 'received', '', '158.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 (4674, '2022-04-19 21:31:10', 4727, NULL, NULL, 'IPAY2022/04/4673', NULL, 'cash', '', '', '', '', '', '', '274.5000', NULL, 22, NULL, 'received', '', '274.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4675, '2022-04-19 21:42:46', 4728, NULL, NULL, 'IPAY2022/04/4674', NULL, 'cash', '', '', '', '', '', '', '134.0000', NULL, 16, 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 (4676, '2022-04-19 21:51:16', 4729, NULL, NULL, 'IPAY2022/04/4675', NULL, 'cash', '', '', '', '', '', '', '8.9000', NULL, 11, NULL, 'received', '', '8.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 (4677, '2022-04-20 12:38:40', 4730, NULL, NULL, 'IPAY2022/04/4676', NULL, 'cash', '', '', '', '', '', '', '157.6000', NULL, 21, NULL, 'received', '', '157.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 (4678, '2022-04-20 14:08:44', 4731, NULL, NULL, 'IPAY2022/04/4677', NULL, 'cash', '', '', '', '', '', '', '93.7000', NULL, 21, NULL, 'received', '', '93.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 (4679, '2022-04-20 14:36:02', 4732, NULL, NULL, 'IPAY2022/04/4678', NULL, 'cash', '', '', '', '', '', '', '150.3000', NULL, 17, NULL, 'received', '', '150.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 (4680, '2022-04-20 15:06:34', 4733, NULL, NULL, 'IPAY2022/04/4679', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 17, 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 (4681, '2022-04-20 15:07:01', 4734, NULL, NULL, 'IPAY2022/04/4680', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 22, 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 (4682, '2022-04-20 20:01:23', 4735, NULL, NULL, 'IPAY2022/04/4681', NULL, 'cash', '', '', '', '', '', '', '147.5000', NULL, 29, 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 (4683, '2022-04-20 20:21:00', 4736, NULL, NULL, 'IPAY2022/04/4682', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 29, 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 (4684, '2022-04-20 20:33:01', 4737, NULL, NULL, 'IPAY2022/04/4683', NULL, 'cash', '', '', '', '', '', '', '648.5000', NULL, 16, NULL, 'received', '', '648.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4685, '2022-04-20 21:05:49', 4738, NULL, NULL, 'IPAY2022/04/4684', NULL, 'cash', '', '', '', '', '', '', '271.6000', NULL, 8, NULL, 'received', '', '271.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 (4686, '2022-04-20 21:25:36', 4739, NULL, NULL, 'IPAY2022/04/4685', NULL, 'cash', '', '', '', '', '', '', '19.6000', NULL, 8, NULL, 'received', '', '19.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 (4687, '2022-04-20 21:28:13', 4740, NULL, NULL, 'IPAY2022/04/4686', NULL, 'cash', '', '', '', '', '', '', '41.6000', NULL, 29, NULL, 'received', '', '41.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 (4688, '2022-04-20 21:39:26', 4741, NULL, NULL, 'IPAY2022/04/4687', NULL, 'cash', '', '', '', '', '', '', '191.0000', NULL, 16, NULL, 'received', '', '191.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4689, '2022-04-20 21:44:08', 4742, NULL, NULL, 'IPAY2022/04/4688', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 29, 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 (4690, '2022-04-20 21:45:47', 4743, NULL, NULL, 'IPAY2022/04/4689', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 29, 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 (4691, '2022-04-21 13:38:47', 4744, NULL, NULL, 'IPAY2022/04/4690', NULL, 'cash', '', '', '', '', '', '', '59.5000', NULL, 21, 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 (4692, '2022-04-21 15:13:43', 4745, NULL, NULL, 'IPAY2022/04/4691', NULL, 'cash', '', '', '', '', '', '', '237.5000', NULL, 17, NULL, 'received', '', '237.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4693, '2022-04-21 15:18:52', 4746, NULL, NULL, 'IPAY2022/04/4692', NULL, 'cash', '', '', '', '', '', '', '327.1000', NULL, 21, NULL, 'received', '', '327.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 (4694, '2022-04-21 15:21:06', 4747, NULL, NULL, 'IPAY2022/04/4693', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 11, 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 (4695, '2022-04-21 18:37:31', 4748, NULL, NULL, 'IPAY2022/04/4694', NULL, 'cash', '', '', '', '', '', '', '229.6000', NULL, 11, NULL, 'received', '', '229.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 (4696, '2022-04-21 20:15:01', 4749, NULL, NULL, 'IPAY2022/04/4695', NULL, 'cash', '', '', '', '', '', '', '206.2000', NULL, 11, NULL, 'received', '', '206.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 (4697, '2022-04-21 20:16:55', 4750, NULL, NULL, 'IPAY2022/04/4696', NULL, 'cash', '', '', '', '', '', '', '882.9000', NULL, 16, NULL, 'received', '', '882.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 (4698, '2022-04-21 20:53:33', 4751, NULL, NULL, 'IPAY2022/04/4697', NULL, 'cash', '', '', '', '', '', '', '118.1000', NULL, 11, NULL, 'received', '', '118.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 (4699, '2022-04-21 21:23:11', 4752, NULL, NULL, 'IPAY2022/04/4698', NULL, 'cash', '', '', '', '', '', '', '137.7000', NULL, 22, NULL, 'received', '', '137.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 (4700, '2022-04-21 21:38:19', 4753, NULL, NULL, 'IPAY2022/04/4699', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 22, 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 (4701, '2022-04-21 21:44:50', 4754, NULL, NULL, 'IPAY2022/04/4700', NULL, 'cash', '', '', '', '', '', '', '197.8000', NULL, 16, NULL, 'received', '', '197.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 (4702, '2022-04-21 21:47:05', 4755, NULL, NULL, 'IPAY2022/04/4701', 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 (4703, '2022-04-21 21:49:26', 4756, NULL, NULL, 'IPAY2022/04/4702', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 22, 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 (4704, '2022-04-21 21:51:23', 4757, NULL, NULL, 'IPAY2022/04/4703', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 22, 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 (4705, '2022-04-22 09:04:48', 4758, NULL, NULL, 'IPAY2022/04/4704', NULL, 'cash', '', '', '', '', '', '', '143.5000', NULL, 28, NULL, 'received', '', '143.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4706, '2022-04-22 11:25:08', 4759, NULL, NULL, 'IPAY2022/04/4705', NULL, 'cash', '', '', '', '', '', '', '145.5000', NULL, 28, 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 (4707, '2022-04-22 12:12:46', 4760, NULL, NULL, 'IPAY2022/04/4706', NULL, 'cash', '', '', '', '', '', '', '95.5000', NULL, 28, 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 (4708, '2022-04-22 13:01:16', 4761, NULL, NULL, 'IPAY2022/04/4707', NULL, 'cash', '', '', '', '', '', '', '480.3000', NULL, 21, NULL, 'received', '', '480.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 (4709, '2022-04-22 13:29:20', 4762, NULL, NULL, 'IPAY2022/04/4708', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 28, 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 (4710, '2022-04-22 13:56:49', 4763, NULL, NULL, 'IPAY2022/04/4709', NULL, 'cash', '', '', '', '', '', '', '319.5000', NULL, 21, NULL, 'received', '', '319.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4711, '2022-04-22 14:12:41', 4764, NULL, NULL, 'IPAY2022/04/4710', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 28, 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 (4712, '2022-04-22 14:30:12', 4765, NULL, NULL, 'IPAY2022/04/4711', NULL, 'cash', '', '', '', '', '', '', '21.3000', NULL, 21, NULL, 'received', '', '21.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 (4713, '2022-04-22 15:24:49', 4766, NULL, NULL, 'IPAY2022/04/4712', NULL, 'cash', '', '', '', '', '', '', '408.0000', NULL, 17, 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 (4714, '2022-04-22 15:26:03', 4767, NULL, NULL, 'IPAY2022/04/4713', 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 (4715, '2022-04-22 15:36:01', 4768, NULL, NULL, 'IPAY2022/04/4714', NULL, 'cash', '', '', '', '', '', '', '128.0000', NULL, 17, NULL, 'received', '', '128.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4716, '2022-04-22 18:52:46', 4769, NULL, NULL, 'IPAY2022/04/4715', NULL, 'cash', '', '', '', '', '', '', '424.4000', NULL, 16, NULL, 'received', '', '424.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 (4717, '2022-04-22 20:28:22', 4770, NULL, NULL, 'IPAY2022/04/4716', NULL, 'cash', '', '', '', '', '', '', '463.4000', NULL, 11, NULL, 'received', '', '463.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 (4718, '2022-04-22 21:11:04', 4771, NULL, NULL, 'IPAY2022/04/4717', NULL, 'cash', '', '', '', '', '', '', '115.0000', NULL, 11, NULL, 'received', '', '115.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4719, '2022-04-22 21:43:38', 4772, NULL, NULL, 'IPAY2022/04/4718', NULL, 'cash', '', '', '', '', '', '', '273.5000', NULL, 16, NULL, 'received', '', '273.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4720, '2022-04-22 21:51:41', 4773, NULL, NULL, 'IPAY2022/04/4719', NULL, 'cash', '', '', '', '', '', '', '95.0000', NULL, 11, NULL, 'received', '', '95.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4721, '2022-04-22 21:59:52', 4774, NULL, NULL, 'IPAY2022/04/4720', NULL, 'cash', '', '', '', '', '', '', '362.2000', NULL, 22, NULL, 'received', '', '362.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 (4722, '2022-04-23 12:42:21', 4775, NULL, NULL, 'IPAY2022/04/4721', NULL, 'cash', '', '', '', '', '', '', '128.5000', NULL, 29, NULL, 'received', '', '128.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4723, '2022-04-23 13:56:10', 4776, NULL, NULL, 'IPAY2022/04/4722', NULL, 'cash', '', '', '', '', '', '', '536.5000', NULL, 16, NULL, 'received', '', '536.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4724, '2022-04-23 14:25:21', 4777, NULL, NULL, 'IPAY2022/04/4723', NULL, 'cash', '', '', '', '', '', '', '96.0000', NULL, 29, NULL, 'received', '', '96.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4725, '2022-04-23 18:05:20', 4778, NULL, NULL, 'IPAY2022/04/4724', NULL, 'cash', '', '', '', '', '', '', '173.5000', NULL, 11, 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 (4726, '2022-04-23 18:37:00', 4779, NULL, NULL, 'IPAY2022/04/4725', NULL, 'cash', '', '', '', '', '', '', '563.0300', NULL, 16, NULL, 'received', '', '563.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 (4727, '2022-04-23 19:36:32', 4780, NULL, NULL, 'IPAY2022/04/4726', NULL, 'cash', '', '', '', '', '', '', '279.5000', NULL, 11, NULL, 'received', '', '279.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4728, '2022-04-23 20:04:18', 4781, NULL, NULL, 'IPAY2022/04/4727', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 11, 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 (4729, '2022-04-23 21:16:11', 4782, NULL, NULL, 'IPAY2022/04/4728', NULL, 'cash', '', '', '', '', '', '', '292.3000', NULL, 16, NULL, 'received', '', '292.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 (4730, '2022-04-23 21:34:30', 4783, NULL, NULL, 'IPAY2022/04/4729', NULL, 'cash', '', '', '', '', '', '', '113.4000', NULL, 11, NULL, 'received', '', '113.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 (4731, '2022-04-23 21:35:11', 4784, NULL, NULL, 'IPAY2022/04/4730', NULL, 'cash', '', '', '', '', '', '', '314.1000', NULL, 22, NULL, 'received', '', '314.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 (4732, '2022-04-23 21:38:08', 4785, NULL, NULL, 'IPAY2022/04/4731', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 16, 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 (4733, '2022-04-23 21:41:44', 4786, NULL, NULL, 'IPAY2022/04/4732', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 16, 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 (4734, '2022-04-23 21:50:31', 4787, NULL, NULL, 'IPAY2022/04/4733', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 11, 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 (4735, '2022-04-23 22:05:07', 4788, NULL, NULL, 'IPAY2022/04/4734', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (4736, '2022-04-24 16:29:36', 4789, NULL, NULL, 'IPAY2022/04/4735', NULL, 'cash', '', '', '', '', '', '', '263.4000', NULL, 11, NULL, 'received', '', '263.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 (4737, '2022-04-24 16:41:12', 4790, NULL, NULL, 'IPAY2022/04/4736', NULL, 'cash', '', '', '', '', '', '', '182.1000', NULL, 16, NULL, 'received', '', '182.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 (4738, '2022-04-24 17:08:05', 4791, NULL, NULL, 'IPAY2022/04/4737', NULL, 'cash', '', '', '', '', '', '', '125.5000', NULL, 16, 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 (4739, '2022-04-24 17:09:07', 4792, NULL, NULL, 'IPAY2022/04/4738', NULL, 'cash', '', '', '', '', '', '', '159.0000', NULL, 8, NULL, 'received', '', '159.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4740, '2022-04-24 20:50:36', 4793, NULL, NULL, 'IPAY2022/04/4739', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 29, NULL, 'received', '', '45.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4741, '2022-04-24 21:10:07', 4794, NULL, NULL, 'IPAY2022/04/4740', NULL, 'cash', '', '', '', '', '', '', '866.2000', NULL, 17, NULL, 'received', '', '866.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 (4742, '2022-04-24 21:37:47', 4795, NULL, NULL, 'IPAY2022/04/4741', NULL, 'cash', '', '', '', '', '', '', '390.8000', NULL, 22, NULL, 'received', '', '390.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 (4743, '2022-04-24 21:43:23', 4796, NULL, NULL, 'IPAY2022/04/4742', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 29, 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 (4744, '2022-04-24 21:47:29', 4797, NULL, NULL, 'IPAY2022/04/4743', NULL, 'cash', '', '', '', '', '', '', '71.3000', NULL, 17, NULL, 'received', '', '71.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 (4745, '2022-04-25 14:23:10', 4798, NULL, NULL, 'IPAY2022/04/4744', NULL, 'cash', '', '', '', '', '', '', '114.5000', NULL, 21, NULL, 'received', '', '114.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4746, '2022-04-25 15:38:07', 4799, NULL, NULL, 'IPAY2022/04/4745', NULL, 'cash', '', '', '', '', '', '', '83.9000', NULL, 8, NULL, 'received', '', '83.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 (4747, '2022-04-25 18:27:45', 4800, NULL, NULL, 'IPAY2022/04/4746', NULL, 'cash', '', '', '', '', '', '', '374.9000', NULL, 11, NULL, 'received', '', '374.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 (4748, '2022-04-25 19:30:32', 4801, NULL, NULL, 'IPAY2022/04/4747', NULL, 'cash', '', '', '', '', '', '', '365.1000', NULL, 11, NULL, 'received', '', '365.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 (4749, '2022-04-25 19:35:03', 4802, NULL, NULL, 'IPAY2022/04/4748', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 11, 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 (4750, '2022-04-25 19:59:08', 4803, NULL, NULL, 'IPAY2022/04/4749', NULL, 'cash', '', '', '', '', '', '', '814.4000', NULL, 17, NULL, 'received', '', '814.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 (4751, '2022-04-25 20:41:49', 4804, NULL, NULL, 'IPAY2022/04/4750', NULL, 'cash', '', '', '', '', '', '', '338.5000', NULL, 28, NULL, 'received', '', '338.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4752, '2022-04-25 21:15:10', 4805, NULL, NULL, 'IPAY2022/04/4751', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 28, 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 (4753, '2022-04-25 21:21:50', 4806, NULL, NULL, 'IPAY2022/04/4752', NULL, 'cash', '', '', '', '', '', '', '299.2000', NULL, 11, NULL, 'received', '', '299.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 (4754, '2022-04-25 21:33:56', 4807, NULL, NULL, 'IPAY2022/04/4753', 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 (4755, '2022-04-25 21:34:04', 4808, NULL, NULL, 'IPAY2022/04/4754', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 28, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4756, '2022-04-25 21:37:15', 4809, NULL, NULL, 'IPAY2022/04/4755', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 28, 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 (4757, '2022-04-25 21:49:32', 4810, NULL, NULL, 'IPAY2022/04/4756', NULL, 'cash', '', '', '', '', '', '', '211.7300', NULL, 17, NULL, 'received', '', '211.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 (4758, '2022-04-26 10:14:03', 4811, NULL, NULL, 'IPAY2022/04/4757', NULL, 'cash', '', '', '', '', '', '', '202.2000', NULL, 29, NULL, 'received', '', '202.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 (4759, '2022-04-26 13:13:41', 4812, NULL, NULL, 'IPAY2022/04/4758', NULL, 'cash', '', '', '', '', '', '', '185.8000', NULL, 29, NULL, 'received', '', '185.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 (4760, '2022-04-26 13:21:10', 4813, NULL, NULL, 'IPAY2022/04/4759', NULL, 'cash', '', '', '', '', '', '', '34.5000', NULL, 29, NULL, 'received', '', '34.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4761, '2022-04-26 13:57:13', 4814, NULL, NULL, 'IPAY2022/04/4760', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 29, NULL, 'received', '', '45.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4762, '2022-04-26 15:25:21', 4815, NULL, NULL, 'IPAY2022/04/4761', NULL, 'cash', '', '', '', '', '', '', '186.0000', NULL, 8, NULL, 'received', '', '186.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4763, '2022-04-26 18:27:46', 4816, NULL, NULL, 'IPAY2022/04/4762', NULL, 'cash', '', '', '', '', '', '', '623.9000', NULL, 17, NULL, 'received', '', '623.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 (4764, '2022-04-26 19:09:02', 4817, NULL, NULL, 'IPAY2022/04/4763', NULL, 'cash', '', '', '', '', '', '', '395.1000', NULL, 11, NULL, 'received', '', '395.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 (4765, '2022-04-26 21:35:54', 4818, NULL, NULL, 'IPAY2022/04/4764', NULL, 'cash', '', '', '', '', '', '', '474.5000', NULL, 11, NULL, 'received', '', '474.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4766, '2022-04-26 21:52:57', 4819, NULL, NULL, 'IPAY2022/04/4765', NULL, 'cash', '', '', '', '', '', '', '85.5000', NULL, 11, NULL, 'received', '', '85.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4767, '2022-04-26 21:54:29', 4820, NULL, NULL, 'IPAY2022/04/4766', NULL, 'cash', '', '', '', '', '', '', '374.9000', NULL, 17, NULL, 'received', '', '374.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 (4768, '2022-04-26 21:55:58', 4821, NULL, NULL, 'IPAY2022/04/4767', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 17, 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 (4769, '2022-04-26 21:58:30', 4822, NULL, NULL, 'IPAY2022/04/4768', NULL, 'cash', '', '', '', '', '', '', '295.1000', NULL, 22, NULL, 'received', '', '295.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 (4770, '2022-04-26 23:00:57', 4823, NULL, NULL, 'IPAY2022/04/4769', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 4, 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 (4771, '2022-04-27 11:56:56', 4824, NULL, NULL, 'IPAY2022/04/4770', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 8, 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 (4772, '2022-04-27 14:18:02', 4825, NULL, NULL, 'IPAY2022/04/4771', NULL, 'cash', '', '', '', '', '', '', '424.7000', NULL, 21, NULL, 'received', '', '424.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 (4773, '2022-04-27 14:42:57', 4826, NULL, NULL, 'IPAY2022/04/4772', NULL, 'cash', '', '', '', '', '', '', '92.0000', NULL, 21, 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 (4774, '2022-04-27 15:05:51', 4827, NULL, NULL, 'IPAY2022/04/4773', NULL, 'cash', '', '', '', '', '', '', '612.3000', NULL, 17, NULL, 'received', '', '612.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 (4775, '2022-04-27 15:06:25', 4828, NULL, NULL, 'IPAY2022/04/4774', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 21, 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 (4776, '2022-04-27 15:25:40', 4829, NULL, NULL, 'IPAY2022/04/4775', NULL, 'cash', '', '', '', '', '', '', '197.2300', NULL, 8, NULL, 'received', '', '197.2300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4777, '2022-04-27 17:37:08', 4830, NULL, NULL, 'IPAY2022/04/4776', NULL, 'cash', '', '', '', '', '', '', '160.8000', NULL, 29, NULL, 'received', '', '160.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 (4778, '2022-04-27 19:26:30', 4831, NULL, NULL, 'IPAY2022/04/4777', NULL, 'cash', '', '', '', '', '', '', '93.7300', NULL, 29, NULL, 'received', '', '93.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 (4779, '2022-04-27 19:47:44', 4832, NULL, NULL, 'IPAY2022/04/4778', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 29, 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 (4780, '2022-04-27 20:05:01', 4833, NULL, NULL, 'IPAY2022/04/4779', NULL, 'cash', '', '', '', '', '', '', '71.5000', NULL, 29, NULL, 'received', '', '71.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4781, '2022-04-27 20:31:04', 4834, NULL, NULL, 'IPAY2022/04/4780', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 29, 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 (4782, '2022-04-27 20:35:44', 4835, NULL, NULL, 'IPAY2022/04/4781', NULL, 'cash', '', '', '', '', '', '', '514.8000', NULL, 16, NULL, 'received', '', '514.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 (4783, '2022-04-27 20:52:05', 4836, NULL, NULL, 'IPAY2022/04/4782', NULL, 'cash', '', '', '', '', '', '', '71.0000', NULL, 29, 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 (4784, '2022-04-27 21:11:32', 4837, NULL, NULL, 'IPAY2022/04/4783', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 29, 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 (4785, '2022-04-27 21:23:00', 4838, NULL, NULL, 'IPAY2022/04/4784', NULL, 'cash', '', '', '', '', '', '', '156.0000', NULL, 16, NULL, 'received', '', '156.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4786, '2022-04-27 21:36:17', 4839, NULL, NULL, 'IPAY2022/04/4785', NULL, 'cash', '', '', '', '', '', '', '34.3000', NULL, 29, 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 (4787, '2022-04-27 21:39:40', 4840, NULL, NULL, 'IPAY2022/04/4786', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 16, 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 (4788, '2022-04-27 21:48:51', 4841, NULL, NULL, 'IPAY2022/04/4787', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 29, 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 (4789, '2022-04-27 21:52:46', 4842, NULL, NULL, 'IPAY2022/04/4788', NULL, 'cash', '', '', '', '', '', '', '367.3000', NULL, 22, NULL, 'received', '', '367.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 (4790, '2022-04-28 10:09:31', 4843, NULL, NULL, 'IPAY2022/04/4789', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 8, 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 (4791, '2022-04-28 14:00:27', 4844, NULL, NULL, 'IPAY2022/04/4790', NULL, 'cash', '', '', '', '', '', '', '236.6000', NULL, 21, NULL, 'received', '', '236.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 (4792, '2022-04-28 14:52:52', 4845, NULL, NULL, 'IPAY2022/04/4791', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 21, 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 (4793, '2022-04-28 15:14:37', 4846, NULL, NULL, 'IPAY2022/04/4792', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 17, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4794, '2022-04-28 15:25:59', 4847, NULL, NULL, 'IPAY2022/04/4793', NULL, 'cash', '', '', '', '', '', '', '168.5000', NULL, 8, 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 (4795, '2022-04-28 18:40:01', 4848, NULL, NULL, 'IPAY2022/04/4794', NULL, 'cash', '', '', '', '', '', '', '338.8300', NULL, 11, NULL, 'received', '', '338.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 (4796, '2022-04-28 19:42:28', 4849, NULL, NULL, 'IPAY2022/04/4795', NULL, 'cash', '', '', '', '', '', '', '726.4000', NULL, 16, NULL, 'received', '', '726.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 (4797, '2022-04-28 21:37:17', 4850, NULL, NULL, 'IPAY2022/04/4796', NULL, 'cash', '', '', '', '', '', '', '374.8000', NULL, 11, 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 (4798, '2022-04-28 21:39:03', 4851, NULL, NULL, 'IPAY2022/04/4797', NULL, 'cash', '', '', '', '', '', '', '186.3000', NULL, 16, NULL, 'received', '', '186.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 (4799, '2022-04-28 21:45:06', 4852, NULL, NULL, 'IPAY2022/04/4798', NULL, 'cash', '', '', '', '', '', '', '490.5400', NULL, 22, NULL, 'received', '', '490.5400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4800, '2022-04-28 21:47:13', 4853, NULL, NULL, 'IPAY2022/04/4799', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 11, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4801, '2022-04-28 21:52:48', 4854, NULL, NULL, 'IPAY2022/04/4800', 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 (4802, '2022-04-29 12:57:01', 4855, NULL, NULL, 'IPAY2022/04/4801', NULL, 'cash', '', '', '', '', '', '', '247.0000', NULL, 28, NULL, 'received', '', '247.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4803, '2022-04-29 14:08:19', 4856, NULL, NULL, 'IPAY2022/04/4802', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 28, 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 (4804, '2022-04-29 14:51:06', 4857, NULL, NULL, 'IPAY2022/04/4803', NULL, 'cash', '', '', '', '', '', '', '76.5000', NULL, 28, NULL, 'received', '', '76.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4805, '2022-04-29 15:10:42', 4858, NULL, NULL, 'IPAY2022/04/4804', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 28, 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 (4806, '2022-04-29 15:17:09', 4859, NULL, NULL, 'IPAY2022/04/4805', NULL, 'cash', '', '', '', '', '', '', '176.8000', NULL, 17, NULL, 'received', '', '176.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 (4807, '2022-04-29 17:47:42', 4860, NULL, NULL, 'IPAY2022/04/4806', NULL, 'cash', '', '', '', '', '', '', '197.7000', NULL, 11, NULL, 'received', '', '197.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 (4808, '2022-04-29 17:49:08', 4861, NULL, NULL, 'IPAY2022/04/4807', 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 (4809, '2022-04-29 20:49:20', 4862, NULL, NULL, 'IPAY2022/04/4808', NULL, 'cash', '', '', '', '', '', '', '399.7000', NULL, 16, NULL, 'received', '', '399.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 (4810, '2022-04-29 20:50:51', 4863, NULL, NULL, 'IPAY2022/04/4809', NULL, 'cash', '', '', '', '', '', '', '254.1400', NULL, 11, NULL, 'received', '', '254.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4811, '2022-04-29 20:51:41', 4864, NULL, NULL, 'IPAY2022/04/4810', 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 (4812, '2022-04-29 21:16:28', 4865, NULL, NULL, 'IPAY2022/04/4811', NULL, 'cash', '', '', '', '', '', '', '56.2000', NULL, 11, NULL, 'received', '', '56.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 (4813, '2022-04-29 21:40:14', 4866, NULL, NULL, 'IPAY2022/04/4812', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 11, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4814, '2022-04-29 21:41:16', 4867, NULL, NULL, 'IPAY2022/04/4813', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 16, 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 (4815, '2022-04-29 21:49:38', 4868, NULL, NULL, 'IPAY2022/04/4814', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 11, 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 (4816, '2022-04-29 22:01:40', 4869, NULL, NULL, 'IPAY2022/04/4815', NULL, 'cash', '', '', '', '', '', '', '243.5000', NULL, 28, NULL, 'received', '', '243.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4817, '2022-04-30 10:51:58', 4870, NULL, NULL, 'IPAY2022/04/4816', NULL, 'cash', '', '', '', '', '', '', '203.9000', NULL, 29, NULL, 'received', '', '203.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 (4818, '2022-04-30 11:03:38', 4871, NULL, NULL, 'IPAY2022/04/4817', NULL, 'cash', '', '', '', '', '', '', '118.5000', NULL, 29, 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 (4819, '2022-04-30 13:25:44', 4872, NULL, NULL, 'IPAY2022/04/4818', NULL, 'cash', '', '', '', '', '', '', '424.5000', NULL, 16, NULL, 'received', '', '424.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4820, '2022-04-30 13:30:15', 4873, NULL, NULL, 'IPAY2022/04/4819', NULL, 'cash', '', '', '', '', '', '', '424.5000', NULL, 16, NULL, 'received', '', '424.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4821, '2022-04-30 14:11:38', 4874, NULL, NULL, 'IPAY2022/04/4820', NULL, 'cash', '', '', '', '', '', '', '153.8000', NULL, 29, 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 (4822, '2022-04-30 15:05:26', 4875, NULL, NULL, 'IPAY2022/04/4821', NULL, 'cash', '', '', '', '', '', '', '318.4300', NULL, 8, NULL, 'received', '', '318.4300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4823, '2022-04-30 15:20:12', 4876, NULL, NULL, 'IPAY2022/04/4822', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 8, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4824, '2022-04-30 19:01:26', 4877, NULL, NULL, 'IPAY2022/04/4823', NULL, 'cash', '', '', '', '', '', '', '591.5000', NULL, 16, NULL, 'received', '', '591.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4825, '2022-04-30 19:08:42', 4878, NULL, NULL, 'IPAY2022/04/4824', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 11, 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 (4826, '2022-04-30 19:30:04', 4879, NULL, NULL, 'IPAY2022/04/4825', NULL, 'cash', '', '', '', '', '', '', '150.6000', NULL, 11, NULL, 'received', '', '150.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 (4827, '2022-04-30 20:29:16', 4880, NULL, NULL, 'IPAY2022/04/4826', NULL, 'cash', '', '', '', '', '', '', '159.6000', NULL, 11, NULL, 'received', '', '159.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 (4828, '2022-04-30 21:29:57', 4881, NULL, NULL, 'IPAY2022/04/4827', NULL, 'cash', '', '', '', '', '', '', '112.3000', NULL, 11, NULL, 'received', '', '112.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 (4829, '2022-04-30 21:38:54', 4882, NULL, NULL, 'IPAY2022/04/4828', NULL, 'cash', '', '', '', '', '', '', '419.8800', NULL, 16, NULL, 'received', '', '419.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 (4830, '2022-04-30 21:45:39', 4883, NULL, NULL, 'IPAY2022/04/4829', NULL, 'cash', '', '', '', '', '', '', '175.5000', NULL, 22, NULL, 'received', '', '175.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4831, '2022-04-30 21:59:26', 4884, NULL, NULL, 'IPAY2022/04/4830', NULL, 'cash', '', '', '', '', '', '', '7.4000', NULL, 11, NULL, 'received', '', '7.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 (4832, '2022-05-01 15:03:21', 4885, NULL, NULL, 'IPAY2022/05/4831', NULL, 'cash', '', '', '', '', '', '', '213.7000', NULL, 29, NULL, 'received', '', '213.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 (4833, '2022-05-01 15:03:56', 4886, NULL, NULL, 'IPAY2022/05/4832', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (4834, '2022-05-01 16:21:43', 4887, NULL, NULL, 'IPAY2022/05/4833', NULL, 'cash', '', '', '', '', '', '', '150.5000', NULL, 8, NULL, 'received', '', '150.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4835, '2022-05-01 16:50:14', 4888, NULL, NULL, 'IPAY2022/05/4834', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 29, 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 (4836, '2022-05-01 16:59:35', 4889, NULL, NULL, 'IPAY2022/05/4835', NULL, 'cash', '', '', '', '', '', '', '512.3000', NULL, 17, NULL, 'received', '', '512.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 (4837, '2022-05-01 18:14:57', 4890, NULL, NULL, 'IPAY2022/05/4836', NULL, 'cash', '', '', '', '', '', '', '233.7000', NULL, 11, NULL, 'received', '', '233.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 (4838, '2022-05-01 19:12:57', 4891, NULL, NULL, 'IPAY2022/05/4837', NULL, 'cash', '', '', '', '', '', '', '16.6000', NULL, 11, NULL, 'received', '', '16.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 (4839, '2022-05-01 19:44:44', 4892, NULL, NULL, 'IPAY2022/05/4838', NULL, 'cash', '', '', '', '', '', '', '481.5000', NULL, 16, NULL, 'received', '', '481.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4840, '2022-05-01 20:27:31', 4893, NULL, NULL, 'IPAY2022/05/4839', NULL, 'cash', '', '', '', '', '', '', '293.0000', NULL, 11, NULL, 'received', '', '293.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4841, '2022-05-01 20:59:06', 4894, NULL, NULL, 'IPAY2022/05/4840', 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 (4842, '2022-05-01 21:32:09', 4895, NULL, NULL, 'IPAY2022/05/4841', NULL, 'cash', '', '', '', '', '', '', '107.3000', NULL, 22, NULL, 'received', '', '107.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 (4843, '2022-05-01 21:39:16', 4896, NULL, NULL, 'IPAY2022/05/4842', NULL, 'cash', '', '', '', '', '', '', '285.4000', NULL, 16, NULL, 'received', '', '285.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 (4844, '2022-05-01 21:58:11', 4897, NULL, NULL, 'IPAY2022/05/4843', NULL, 'cash', '', '', '', '', '', '', '20.2000', NULL, 11, NULL, 'received', '', '20.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 (4845, '2022-05-02 14:51:31', 4898, NULL, NULL, 'IPAY2022/05/4844', NULL, 'cash', '', '', '', '', '', '', '426.8000', NULL, 17, NULL, 'received', '', '426.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 (4846, '2022-05-02 18:45:47', 4899, NULL, NULL, 'IPAY2022/05/4845', NULL, 'cash', '', '', '', '', '', '', '700.6000', NULL, 11, NULL, 'received', '', '700.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 (4847, '2022-05-02 19:38:36', 4900, NULL, NULL, 'IPAY2022/05/4846', NULL, 'cash', '', '', '', '', '', '', '131.7000', NULL, 8, NULL, 'received', '', '131.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 (4848, '2022-05-02 19:47:15', 4901, NULL, NULL, 'IPAY2022/05/4847', NULL, 'cash', '', '', '', '', '', '', '413.6000', NULL, 11, NULL, 'received', '', '413.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 (4849, '2022-05-02 19:52:48', 4902, NULL, NULL, 'IPAY2022/05/4848', NULL, 'cash', '', '', '', '', '', '', '141.9000', NULL, 11, NULL, 'received', '', '141.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 (4850, '2022-05-02 20:01:22', 4903, NULL, NULL, 'IPAY2022/05/4849', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 8, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4851, '2022-05-02 20:31:09', 4904, NULL, NULL, 'IPAY2022/05/4850', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 8, 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 (4852, '2022-05-02 20:37:03', 4905, NULL, NULL, 'IPAY2022/05/4851', NULL, 'cash', '', '', '', '', '', '', '788.4000', NULL, 17, NULL, 'received', '', '788.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 (4853, '2022-05-02 20:41:25', 4906, NULL, NULL, 'IPAY2022/05/4852', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 8, 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 (4854, '2022-05-02 21:02:44', 4907, NULL, NULL, 'IPAY2022/05/4853', NULL, 'cash', '', '', '', '', '', '', '82.5000', NULL, 8, 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 (4855, '2022-05-02 21:11:41', 4908, NULL, NULL, 'IPAY2022/05/4854', NULL, 'cash', '', '', '', '', '', '', '104.2000', NULL, 11, 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 (4856, '2022-05-02 21:12:55', 4909, NULL, NULL, 'IPAY2022/05/4855', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 8, 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 (4857, '2022-05-02 21:27:47', 4910, NULL, NULL, 'IPAY2022/05/4856', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 8, 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 (4858, '2022-05-02 21:36:16', 4911, NULL, NULL, 'IPAY2022/05/4857', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 17, 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 (4859, '2022-05-02 21:38:51', 4912, NULL, NULL, 'IPAY2022/05/4858', 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 (4860, '2022-05-02 21:46:18', 4913, NULL, NULL, 'IPAY2022/05/4859', 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 (4861, '2022-05-02 21:49:07', 4914, NULL, NULL, 'IPAY2022/05/4860', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 8, 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 (4862, '2022-05-02 22:10:40', 4915, NULL, NULL, 'IPAY2022/05/4861', NULL, 'cash', '', '', '', '', '', '', '51.2000', NULL, 11, NULL, 'received', '', '51.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 (4863, '2022-05-03 10:00:03', 4916, NULL, NULL, 'IPAY2022/05/4862', NULL, 'cash', '', '', '', '', '', '', '135.5000', NULL, 29, NULL, 'received', '', '135.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4864, '2022-05-03 11:40:24', 4917, NULL, NULL, 'IPAY2022/05/4863', NULL, 'cash', '', '', '', '', '', '', '60.2000', NULL, 29, 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 (4865, '2022-05-03 13:17:52', 4918, NULL, NULL, 'IPAY2022/05/4864', NULL, 'cash', '', '', '', '', '', '', '137.0000', NULL, 29, NULL, 'received', '', '137.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4866, '2022-05-03 13:37:33', 4919, NULL, NULL, 'IPAY2022/05/4865', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 29, 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 (4867, '2022-05-03 14:14:02', 4920, NULL, NULL, 'IPAY2022/05/4866', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 29, 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 (4868, '2022-05-03 14:27:58', 4921, NULL, NULL, 'IPAY2022/05/4867', NULL, 'cash', '', '', '', '', '', '', '38.5000', NULL, 29, NULL, 'received', '', '38.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4869, '2022-05-03 14:34:38', 4922, NULL, NULL, 'IPAY2022/05/4868', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (4870, '2022-05-03 14:52:14', 4923, NULL, NULL, 'IPAY2022/05/4869', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 29, 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 (4871, '2022-05-03 14:54:51', 4924, NULL, NULL, 'IPAY2022/05/4870', NULL, 'cash', '', '', '', '', '', '', '328.2000', NULL, 17, NULL, 'received', '', '328.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 (4872, '2022-05-03 15:39:32', 4925, NULL, NULL, 'IPAY2022/05/4871', NULL, 'cash', '', '', '', '', '', '', '409.5000', NULL, 8, NULL, 'received', '', '409.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4873, '2022-05-03 17:35:18', 4926, NULL, NULL, 'IPAY2022/05/4872', NULL, 'cash', '', '', '', '', '', '', '197.0000', NULL, 11, 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 (4874, '2022-05-03 19:28:23', 4927, NULL, NULL, 'IPAY2022/05/4873', NULL, 'cash', '', '', '', '', '', '', '76.1000', NULL, 11, NULL, 'received', '', '76.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 (4875, '2022-05-03 19:28:43', 4928, NULL, NULL, 'IPAY2022/05/4874', NULL, 'cash', '', '', '', '', '', '', '74.0000', NULL, 11, NULL, 'received', '', '74.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4876, '2022-05-03 21:10:19', 4929, NULL, NULL, 'IPAY2022/05/4875', NULL, 'cash', '', '', '', '', '', '', '854.6000', NULL, 17, NULL, 'received', '', '854.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 (4877, '2022-05-03 21:23:31', 4930, NULL, NULL, 'IPAY2022/05/4876', NULL, 'cash', '', '', '', '', '', '', '703.6000', NULL, 11, NULL, 'received', '', '703.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 (4878, '2022-05-03 21:55:57', 4931, NULL, NULL, 'IPAY2022/05/4877', NULL, 'cash', '', '', '', '', '', '', '121.5000', NULL, 11, NULL, 'received', '', '121.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4879, '2022-05-03 21:56:59', 4932, NULL, NULL, 'IPAY2022/05/4878', NULL, 'cash', '', '', '', '', '', '', '390.9000', NULL, 22, NULL, 'received', '', '390.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 (4880, '2022-05-03 22:03:56', 4933, NULL, NULL, 'IPAY2022/05/4879', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 22, 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 (4881, '2022-05-03 22:08:15', 4934, NULL, NULL, 'IPAY2022/05/4880', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 11, 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 (4882, '2022-05-04 13:03:40', 4935, NULL, NULL, 'IPAY2022/05/4881', NULL, 'cash', '', '', '', '', '', '', '44.5000', NULL, 21, 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 (4883, '2022-05-04 14:56:17', 4936, NULL, NULL, 'IPAY2022/05/4882', NULL, 'cash', '', '', '', '', '', '', '495.2000', NULL, 17, NULL, 'received', '', '495.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 (4884, '2022-05-04 15:46:39', 4937, NULL, NULL, 'IPAY2022/05/4883', NULL, 'cash', '', '', '', '', '', '', '243.0000', NULL, 8, NULL, 'received', '', '243.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4885, '2022-05-04 17:46:57', 4938, NULL, NULL, 'IPAY2022/05/4884', NULL, 'cash', '', '', '', '', '', '', '95.6000', NULL, 29, NULL, 'received', '', '95.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 (4886, '2022-05-04 18:24:02', 4939, NULL, NULL, 'IPAY2022/05/4885', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 17, 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 (4887, '2022-05-04 19:58:37', 4940, NULL, NULL, 'IPAY2022/05/4886', NULL, 'cash', '', '', '', '', '', '', '301.8000', NULL, 17, NULL, 'received', '', '301.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 (4888, '2022-05-04 20:01:42', 4941, NULL, NULL, 'IPAY2022/05/4887', NULL, 'cash', '', '', '', '', '', '', '166.0000', NULL, 29, NULL, 'received', '', '166.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4889, '2022-05-04 20:13:30', 4942, NULL, NULL, 'IPAY2022/05/4888', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 29, 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 (4890, '2022-05-04 20:21:06', 4943, NULL, NULL, 'IPAY2022/05/4889', NULL, 'cash', '', '', '', '', '', '', '114.0000', NULL, 29, 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 (4891, '2022-05-04 20:36:31', 4944, NULL, NULL, 'IPAY2022/05/4890', NULL, 'cash', '', '', '', '', '', '', '54.5000', NULL, 29, 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 (4892, '2022-05-04 21:12:59', 4945, NULL, NULL, 'IPAY2022/05/4891', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 29, 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 (4893, '2022-05-04 21:23:50', 4946, NULL, NULL, 'IPAY2022/05/4892', NULL, 'cash', '', '', '', '', '', '', '14.4000', NULL, 29, NULL, 'received', '', '14.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 (4894, '2022-05-04 21:27:54', 4947, NULL, NULL, 'IPAY2022/05/4893', NULL, 'cash', '', '', '', '', '', '', '146.6000', NULL, 17, NULL, 'received', '', '146.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 (4895, '2022-05-04 21:49:25', 4948, NULL, NULL, 'IPAY2022/05/4894', NULL, 'cash', '', '', '', '', '', '', '389.5000', NULL, 22, NULL, 'received', '', '389.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4896, '2022-05-05 13:28:40', 4949, NULL, NULL, 'IPAY2022/05/4895', NULL, 'cash', '', '', '', '', '', '', '178.6000', NULL, 21, NULL, 'received', '', '178.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 (4897, '2022-05-05 14:53:04', 4950, NULL, NULL, 'IPAY2022/05/4896', NULL, 'cash', '', '', '', '', '', '', '379.5000', NULL, 17, NULL, 'received', '', '379.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4898, '2022-05-05 14:59:36', 4951, NULL, NULL, 'IPAY2022/05/4897', NULL, 'cash', '', '', '', '', '', '', '55.3000', NULL, 21, NULL, 'received', '', '55.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 (4899, '2022-05-05 15:19:25', 4952, NULL, NULL, 'IPAY2022/05/4898', NULL, 'cash', '', '', '', '', '', '', '401.5000', NULL, 8, NULL, 'received', '', '401.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4900, '2022-05-05 20:28:09', 4953, NULL, NULL, 'IPAY2022/05/4899', NULL, 'cash', '', '', '', '', '', '', '620.0000', NULL, 11, NULL, 'received', '', '620.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4901, '2022-05-05 21:07:39', 4954, NULL, NULL, 'IPAY2022/05/4900', NULL, 'cash', '', '', '', '', '', '', '635.6000', NULL, 17, NULL, 'received', '', '635.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 (4902, '2022-05-05 21:34:06', 4955, NULL, NULL, 'IPAY2022/05/4901', NULL, 'cash', '', '', '', '', '', '', '252.9000', NULL, 11, NULL, 'received', '', '252.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 (4903, '2022-05-05 21:36:36', 4956, NULL, NULL, 'IPAY2022/05/4902', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 17, 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 (4904, '2022-05-05 21:51:33', 4957, NULL, NULL, 'IPAY2022/05/4903', 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 (4905, '2022-05-05 22:01:28', 4958, NULL, NULL, 'IPAY2022/05/4904', 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 (4906, '2022-05-05 22:09:50', 4959, NULL, NULL, 'IPAY2022/05/4905', NULL, 'cash', '', '', '', '', '', '', '580.5000', NULL, 22, NULL, 'received', '', '580.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4907, '2022-05-06 10:09:21', 4960, NULL, NULL, 'IPAY2022/05/4906', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 28, 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 (4908, '2022-05-06 10:30:13', 4961, NULL, NULL, 'IPAY2022/05/4907', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 28, 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 (4909, '2022-05-06 10:44:16', 4962, NULL, NULL, 'IPAY2022/05/4908', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 28, 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 (4910, '2022-05-06 11:05:44', 4963, NULL, NULL, 'IPAY2022/05/4909', NULL, 'cash', '', '', '', '', '', '', '274.5000', NULL, 21, NULL, 'received', '', '274.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4911, '2022-05-06 11:22:32', 4964, NULL, NULL, 'IPAY2022/05/4910', NULL, 'cash', '', '', '', '', '', '', '151.5000', NULL, 28, 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 (4912, '2022-05-06 13:22:47', 4965, NULL, NULL, 'IPAY2022/05/4911', NULL, 'cash', '', '', '', '', '', '', '43.2000', NULL, 28, NULL, 'received', '', '43.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 (4913, '2022-05-06 14:38:52', 4966, NULL, NULL, 'IPAY2022/05/4912', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 28, 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 (4914, '2022-05-06 14:47:48', 4967, NULL, NULL, 'IPAY2022/05/4913', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 28, 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 (4915, '2022-05-06 14:58:14', 4968, NULL, NULL, 'IPAY2022/05/4914', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 28, 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 (4916, '2022-05-06 15:04:07', 4969, NULL, NULL, 'IPAY2022/05/4915', NULL, 'cash', '', '', '', '', '', '', '74.8000', NULL, 21, NULL, 'received', '', '74.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 (4917, '2022-05-06 15:05:36', 4970, NULL, NULL, 'IPAY2022/05/4916', NULL, 'cash', '', '', '', '', '', '', '284.5000', NULL, 17, NULL, 'received', '', '284.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4918, '2022-05-06 18:27:13', 4971, NULL, NULL, 'IPAY2022/05/4917', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 22, 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 (4919, '2022-05-06 19:28:15', 4972, NULL, NULL, 'IPAY2022/05/4918', NULL, 'cash', '', '', '', '', '', '', '552.0000', NULL, 17, NULL, 'received', '', '552.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4920, '2022-05-06 20:00:05', 4973, NULL, NULL, 'IPAY2022/05/4919', NULL, 'cash', '', '', '', '', '', '', '388.5000', NULL, 11, NULL, 'received', '', '388.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4921, '2022-05-06 20:11:30', 4974, NULL, NULL, 'IPAY2022/05/4920', 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 (4922, '2022-05-06 20:25:55', 4975, NULL, NULL, 'IPAY2022/05/4921', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 11, 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 (4923, '2022-05-06 21:02:33', 4976, NULL, NULL, 'IPAY2022/05/4922', 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 (4924, '2022-05-06 21:08:54', 4977, NULL, NULL, 'IPAY2022/05/4923', 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 (4925, '2022-05-06 21:20:09', 4978, NULL, NULL, 'IPAY2022/05/4924', NULL, 'cash', '', '', '', '', '', '', '44.5000', NULL, 11, 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 (4926, '2022-05-06 21:40:06', 4979, NULL, NULL, 'IPAY2022/05/4925', NULL, 'cash', '', '', '', '', '', '', '243.4000', NULL, 17, NULL, 'received', '', '243.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 (4927, '2022-05-06 21:44:06', 4980, NULL, NULL, 'IPAY2022/05/4926', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 17, 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 (4928, '2022-05-06 21:47:55', 4981, NULL, NULL, 'IPAY2022/05/4927', NULL, 'cash', '', '', '', '', '', '', '669.8000', NULL, 22, NULL, 'received', '', '669.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 (4929, '2022-05-06 21:52:21', 4982, NULL, NULL, 'IPAY2022/05/4928', 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 (4930, '2022-05-07 12:51:49', 4983, NULL, NULL, 'IPAY2022/05/4929', NULL, 'cash', '', '', '', '', '', '', '286.1000', NULL, 21, NULL, 'received', '', '286.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 (4931, '2022-05-07 14:37:22', 4984, NULL, NULL, 'IPAY2022/05/4930', NULL, 'cash', '', '', '', '', '', '', '135.0000', NULL, 21, 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 (4932, '2022-05-07 14:51:26', 4985, NULL, NULL, 'IPAY2022/05/4931', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 21, 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 (4933, '2022-05-07 16:27:21', 4986, NULL, NULL, 'IPAY2022/05/4932', NULL, 'cash', '', '', '', '', '', '', '399.1300', NULL, 17, NULL, 'received', '', '399.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4934, '2022-05-07 21:35:53', 4987, NULL, NULL, 'IPAY2022/05/4933', NULL, 'cash', '', '', '', '', '', '', '740.0000', NULL, 17, NULL, 'received', '', '740.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4935, '2022-05-07 22:00:19', 4988, NULL, NULL, 'IPAY2022/05/4934', NULL, 'cash', '', '', '', '', '', '', '96.8000', NULL, 17, NULL, 'received', '', '96.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 (4936, '2022-05-08 14:42:05', 4989, NULL, NULL, 'IPAY2022/05/4935', NULL, 'cash', '', '', '', '', '', '', '255.9000', NULL, 11, NULL, 'received', '', '255.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 (4937, '2022-05-08 16:25:50', 4990, NULL, NULL, 'IPAY2022/05/4936', NULL, 'cash', '', '', '', '', '', '', '72.4000', NULL, 11, NULL, 'received', '', '72.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 (4938, '2022-05-08 16:33:25', 4991, NULL, NULL, 'IPAY2022/05/4937', 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 (4939, '2022-05-08 17:05:55', 4992, NULL, NULL, 'IPAY2022/05/4938', NULL, 'cash', '', '', '', '', '', '', '381.5000', NULL, 16, NULL, 'received', '', '381.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4940, '2022-05-08 18:38:24', 4993, NULL, NULL, 'IPAY2022/05/4939', NULL, 'cash', '', '', '', '', '', '', '206.4000', NULL, 29, NULL, 'received', '', '206.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 (4941, '2022-05-08 19:33:27', 4994, NULL, NULL, 'IPAY2022/05/4940', NULL, 'cash', '', '', '', '', '', '', '256.5000', NULL, 29, 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 (4942, '2022-05-08 19:44:01', 4995, NULL, NULL, 'IPAY2022/05/4941', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (4943, '2022-05-08 20:43:38', 4996, NULL, NULL, 'IPAY2022/05/4942', NULL, 'cash', '', '', '', '', '', '', '126.9000', NULL, 29, NULL, 'received', '', '126.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 (4944, '2022-05-08 21:03:18', 4997, NULL, NULL, 'IPAY2022/05/4943', NULL, 'cash', '', '', '', '', '', '', '626.0000', NULL, 17, NULL, 'received', '', '626.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4945, '2022-05-08 21:23:58', 4998, NULL, NULL, 'IPAY2022/05/4944', NULL, 'cash', '', '', '', '', '', '', '252.7000', NULL, 22, NULL, 'received', '', '252.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 (4946, '2022-05-08 21:29:16', 4999, NULL, NULL, 'IPAY2022/05/4945', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 29, 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 (4947, '2022-05-08 21:35:08', 5000, NULL, NULL, 'IPAY2022/05/4946', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 29, 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 (4948, '2022-05-08 21:35:12', 5001, NULL, NULL, 'IPAY2022/05/4947', NULL, 'cash', '', '', '', '', '', '', '353.2300', NULL, 22, NULL, 'received', '', '353.2300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4949, '2022-05-08 21:38:05', 5002, NULL, NULL, 'IPAY2022/05/4948', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (4950, '2022-05-08 21:43:45', 5003, NULL, NULL, 'IPAY2022/05/4949', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 17, 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 (4951, '2022-05-08 21:47:36', 5004, NULL, NULL, 'IPAY2022/05/4950', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 29, 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 (4952, '2022-05-08 21:51:24', 5005, NULL, NULL, 'IPAY2022/05/4951', NULL, 'cash', '', '', '', '', '', '', '756.4000', NULL, 22, NULL, 'received', '', '756.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 (4953, '2022-05-08 21:54:42', 5006, NULL, NULL, 'IPAY2022/05/4952', NULL, 'cash', '', '', '', '', '', '', '85.5000', NULL, 22, NULL, 'received', '', '85.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4954, '2022-05-08 21:55:47', 5007, NULL, NULL, 'IPAY2022/05/4953', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 22, 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 (4955, '2022-05-09 13:21:50', 5008, NULL, NULL, 'IPAY2022/05/4954', NULL, 'cash', '', '', '', '', '', '', '362.6000', NULL, 21, NULL, 'received', '', '362.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 (4956, '2022-05-09 14:21:51', 5009, NULL, NULL, 'IPAY2022/05/4955', NULL, 'cash', '', '', '', '', '', '', '62.6000', NULL, 21, NULL, 'received', '', '62.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 (4957, '2022-05-09 14:32:19', 5010, NULL, NULL, 'IPAY2022/05/4956', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 17, 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 (4958, '2022-05-09 15:04:29', 5011, NULL, NULL, 'IPAY2022/05/4957', NULL, 'cash', '', '', '', '', '', '', '768.0000', NULL, 17, NULL, 'received', '', '768.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4959, '2022-05-09 16:37:43', 5012, NULL, NULL, 'IPAY2022/05/4958', NULL, 'cash', '', '', '', '', '', '', '457.5000', NULL, 8, NULL, 'received', '', '457.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4960, '2022-05-09 20:00:05', 5013, NULL, NULL, 'IPAY2022/05/4959', NULL, 'cash', '', '', '', '', '', '', '169.0000', NULL, 28, NULL, 'received', '', '169.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4961, '2022-05-09 20:56:40', 5014, NULL, NULL, 'IPAY2022/05/4960', NULL, 'cash', '', '', '', '', '', '', '94.0000', NULL, 28, 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 (4962, '2022-05-09 21:38:16', 5015, NULL, NULL, 'IPAY2022/05/4961', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 28, 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 (4963, '2022-05-09 21:40:04', 5016, NULL, NULL, 'IPAY2022/05/4962', NULL, 'cash', '', '', '', '', '', '', '932.0000', NULL, 17, NULL, 'received', '', '932.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4964, '2022-05-09 21:42:23', 5017, NULL, NULL, 'IPAY2022/05/4963', NULL, 'cash', '', '', '', '', '', '', '898.0000', NULL, 11, NULL, 'received', '', '898.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4965, '2022-05-09 21:57:37', 5018, NULL, NULL, 'IPAY2022/05/4964', NULL, 'cash', '', '', '', '', '', '', '96.0000', NULL, 17, NULL, 'received', '', '96.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4966, '2022-05-09 21:59:27', 5019, NULL, NULL, 'IPAY2022/05/4965', 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 (4967, '2022-05-10 12:56:31', 5020, NULL, NULL, 'IPAY2022/05/4966', NULL, 'cash', '', '', '', '', '', '', '263.2000', NULL, 29, NULL, 'received', '', '263.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 (4968, '2022-05-10 14:18:33', 5021, NULL, NULL, 'IPAY2022/05/4967', NULL, 'cash', '', '', '', '', '', '', '345.5900', NULL, 16, NULL, 'received', '', '345.5900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4969, '2022-05-10 14:20:29', 5022, NULL, NULL, 'IPAY2022/05/4968', NULL, 'cash', '', '', '', '', '', '', '579.0700', NULL, 8, NULL, 'received', '', '579.0700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4970, '2022-05-10 14:35:56', 5023, NULL, NULL, 'IPAY2022/05/4969', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 8, 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 (4971, '2022-05-10 14:36:13', 5024, NULL, NULL, 'IPAY2022/05/4970', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (4972, '2022-05-10 15:04:06', 5025, NULL, NULL, 'IPAY2022/05/4971', NULL, 'cash', '', '', '', '', '', '', '69.0000', NULL, 29, 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 (4973, '2022-05-10 15:05:07', 5026, NULL, NULL, 'IPAY2022/05/4972', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 16, 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 (4974, '2022-05-10 15:12:33', 5027, NULL, NULL, 'IPAY2022/05/4973', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 8, 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 (4975, '2022-05-10 21:24:11', 5028, NULL, NULL, 'IPAY2022/05/4974', NULL, 'cash', '', '', '', '', '', '', '394.8000', NULL, 22, NULL, 'received', '', '394.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 (4976, '2022-05-10 21:29:40', 5029, NULL, NULL, 'IPAY2022/05/4975', NULL, 'cash', '', '', '', '', '', '', '783.1900', NULL, 11, NULL, 'received', '', '783.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 (4977, '2022-05-10 21:29:52', 5030, NULL, NULL, 'IPAY2022/05/4976', NULL, 'cash', '', '', '', '', '', '', '976.3000', NULL, 17, NULL, 'received', '', '976.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 (4978, '2022-05-10 21:52:12', 5031, NULL, NULL, 'IPAY2022/05/4977', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 17, 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 (4979, '2022-05-10 21:54:22', 5032, NULL, NULL, 'IPAY2022/05/4978', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 22, 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 (4980, '2022-05-10 22:02:34', 5033, NULL, NULL, 'IPAY2022/05/4979', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 17, 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 (4981, '2022-05-10 22:04:23', 5034, NULL, NULL, 'IPAY2022/05/4980', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 11, 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 (4982, '2022-05-11 11:08:18', 5035, NULL, NULL, 'IPAY2022/05/4981', NULL, 'cash', '', '', '', '', '', '', '190.9000', NULL, 21, NULL, 'received', '', '190.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 (4983, '2022-05-11 13:12:22', 5036, NULL, NULL, 'IPAY2022/05/4982', NULL, 'cash', '', '', '', '', '', '', '106.0000', NULL, 21, NULL, 'received', '', '106.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4984, '2022-05-11 14:04:07', 5037, NULL, NULL, 'IPAY2022/05/4983', NULL, 'cash', '', '', '', '', '', '', '224.1000', NULL, 8, 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 (4985, '2022-05-11 14:16:51', 5038, NULL, NULL, 'IPAY2022/05/4984', NULL, 'cash', '', '', '', '', '', '', '325.6000', NULL, 16, NULL, 'received', '', '325.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 (4986, '2022-05-11 14:25:40', 5039, NULL, NULL, 'IPAY2022/05/4985', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 21, 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 (4987, '2022-05-11 15:14:15', 5040, NULL, NULL, 'IPAY2022/05/4986', NULL, 'cash', '', '', '', '', '', '', '100.9000', NULL, 16, NULL, 'received', '', '100.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 (4988, '2022-05-11 15:38:12', 5041, NULL, NULL, 'IPAY2022/05/4987', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 8, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4989, '2022-05-11 17:46:46', 5042, NULL, NULL, 'IPAY2022/05/4988', NULL, 'cash', '', '', '', '', '', '', '241.5000', NULL, 29, NULL, 'received', '', '241.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4990, '2022-05-11 18:49:14', 5043, NULL, NULL, 'IPAY2022/05/4989', NULL, 'cash', '', '', '', '', '', '', '138.4000', NULL, 29, NULL, 'received', '', '138.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 (4991, '2022-05-11 19:09:59', 5044, NULL, NULL, 'IPAY2022/05/4990', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 29, 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 (4992, '2022-05-11 19:53:07', 5045, NULL, NULL, 'IPAY2022/05/4991', NULL, 'cash', '', '', '', '', '', '', '109.1000', NULL, 29, NULL, 'received', '', '109.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 (4993, '2022-05-11 20:13:00', 5046, NULL, NULL, 'IPAY2022/05/4992', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 29, 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 (4994, '2022-05-11 20:33:58', 5047, NULL, NULL, 'IPAY2022/05/4993', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (4995, '2022-05-11 20:38:03', 5048, NULL, NULL, 'IPAY2022/05/4994', NULL, 'cash', '', '', '', '', '', '', '638.6000', NULL, 17, NULL, 'received', '', '638.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 (4996, '2022-05-11 20:47:17', 5049, NULL, NULL, 'IPAY2022/05/4995', NULL, 'cash', '', '', '', '', '', '', '74.5000', NULL, 29, 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 (4997, '2022-05-11 21:21:18', 5050, NULL, NULL, 'IPAY2022/05/4996', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 29, 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 (4998, '2022-05-11 21:32:25', 5051, NULL, NULL, 'IPAY2022/05/4997', NULL, 'cash', '', '', '', '', '', '', '360.7000', NULL, 22, NULL, 'received', '', '360.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 (4999, '2022-05-11 21:42:19', 5052, NULL, NULL, 'IPAY2022/05/4998', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 17, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5000, '2022-05-11 21:55:32', 5053, NULL, NULL, 'IPAY2022/05/4999', NULL, 'cash', '', '', '', '', '', '', '118.5000', NULL, 29, 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 (5001, '2022-05-11 21:57:50', 5054, NULL, NULL, 'IPAY2022/05/5000', NULL, 'cash', '', '', '', '', '', '', '123.5000', NULL, 29, 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 (5002, '2022-05-12 14:26:32', 5055, NULL, NULL, 'IPAY2022/05/5001', NULL, 'cash', '', '', '', '', '', '', '351.2000', NULL, 21, NULL, 'received', '', '351.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 (5003, '2022-05-12 14:29:44', 5056, NULL, NULL, 'IPAY2022/05/5002', NULL, 'cash', '', '', '', '', '', '', '261.0000', NULL, 16, NULL, 'received', '', '261.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5004, '2022-05-12 14:36:06', 5057, NULL, NULL, 'IPAY2022/05/5003', NULL, 'cash', '', '', '', '', '', '', '249.0000', NULL, 8, NULL, 'received', '', '249.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5005, '2022-05-12 14:57:58', 5058, NULL, NULL, 'IPAY2022/05/5004', NULL, 'cash', '', '', '', '', '', '', '54.5000', NULL, 21, 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 (5006, '2022-05-12 15:01:12', 5059, NULL, NULL, 'IPAY2022/05/5005', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 16, 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 (5007, '2022-05-12 20:46:24', 5060, NULL, NULL, 'IPAY2022/05/5006', NULL, 'cash', '', '', '', '', '', '', '855.9000', NULL, 17, NULL, 'received', '', '855.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 (5008, '2022-05-12 21:41:40', 5061, NULL, NULL, 'IPAY2022/05/5007', NULL, 'cash', '', '', '', '', '', '', '630.5000', NULL, 11, NULL, 'received', '', '630.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5009, '2022-05-12 21:43:30', 5062, NULL, NULL, 'IPAY2022/05/5008', NULL, 'cash', '', '', '', '', '', '', '33.9000', NULL, 17, NULL, 'received', '', '33.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 (5010, '2022-05-12 21:52:45', 5063, NULL, NULL, 'IPAY2022/05/5009', NULL, 'cash', '', '', '', '', '', '', '1.6000', NULL, 11, NULL, 'received', '', '1.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 (5011, '2022-05-12 21:57:06', 5064, NULL, NULL, 'IPAY2022/05/5010', NULL, 'cash', '', '', '', '', '', '', '683.3000', NULL, 22, NULL, 'received', '', '683.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 (5012, '2022-05-13 12:57:06', 5065, NULL, NULL, 'IPAY2022/05/5011', NULL, 'cash', '', '', '', '', '', '', '117.4000', NULL, 28, NULL, 'received', '', '117.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 (5013, '2022-05-13 13:27:38', 5066, NULL, NULL, 'IPAY2022/05/5012', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 28, 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 (5014, '2022-05-13 14:05:39', 5067, NULL, NULL, 'IPAY2022/05/5013', NULL, 'cash', '', '', '', '', '', '', '371.0000', NULL, 21, NULL, 'received', '', '371.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5015, '2022-05-13 14:31:58', 5068, NULL, NULL, 'IPAY2022/05/5014', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 28, 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 (5016, '2022-05-13 14:36:09', 5069, NULL, NULL, 'IPAY2022/05/5015', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 21, 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 (5017, '2022-05-13 15:18:15', 5070, NULL, NULL, 'IPAY2022/05/5016', NULL, 'cash', '', '', '', '', '', '', '340.7000', NULL, 17, NULL, 'received', '', '340.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 (5018, '2022-05-13 20:58:58', 5071, NULL, NULL, 'IPAY2022/05/5017', NULL, 'cash', '', '', '', '', '', '', '919.6000', NULL, 17, NULL, 'received', '', '919.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 (5019, '2022-05-13 21:39:33', 5072, NULL, NULL, 'IPAY2022/05/5018', NULL, 'cash', '', '', '', '', '', '', '391.0400', NULL, 22, NULL, 'received', '', '391.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 (5020, '2022-05-13 21:41:54', 5073, NULL, NULL, 'IPAY2022/05/5019', NULL, 'cash', '', '', '', '', '', '', '108.7300', NULL, 17, NULL, 'received', '', '108.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 (5021, '2022-05-13 21:47:28', 5074, NULL, NULL, 'IPAY2022/05/5020', NULL, 'cash', '', '', '', '', '', '', '665.5000', NULL, 11, NULL, 'received', '', '665.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5022, '2022-05-13 21:52:17', 5075, NULL, NULL, 'IPAY2022/05/5021', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 11, 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 (5023, '2022-05-13 21:54:46', 5076, NULL, NULL, 'IPAY2022/05/5022', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 22, 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 (5024, '2022-05-14 11:23:38', 5077, NULL, NULL, 'IPAY2022/05/5023', NULL, 'cash', '', '', '', '', '', '', '126.5000', NULL, 29, NULL, 'received', '', '126.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5025, '2022-05-14 13:26:34', 5078, NULL, NULL, 'IPAY2022/05/5024', NULL, 'cash', '', '', '', '', '', '', '303.9000', NULL, 8, NULL, 'received', '', '303.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 (5026, '2022-05-14 13:59:30', 5079, NULL, NULL, 'IPAY2022/05/5025', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 8, 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 (5027, '2022-05-14 14:02:09', 5080, NULL, NULL, 'IPAY2022/05/5026', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 29, 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 (5028, '2022-05-14 14:34:29', 5081, NULL, NULL, 'IPAY2022/05/5027', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 29, 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 (5029, '2022-05-14 14:47:55', 5082, NULL, NULL, 'IPAY2022/05/5028', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 8, 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 (5030, '2022-05-14 14:59:06', 5083, NULL, NULL, 'IPAY2022/05/5029', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 29, 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 (5031, '2022-05-14 21:00:20', 5084, NULL, NULL, 'IPAY2022/05/5030', NULL, 'cash', '', '', '', '', '', '', '762.1000', NULL, 16, NULL, 'received', '', '762.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 (5032, '2022-05-14 21:41:18', 5085, NULL, NULL, 'IPAY2022/05/5031', NULL, 'cash', '', '', '', '', '', '', '69.8000', NULL, 16, NULL, 'received', '', '69.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 (5033, '2022-05-14 22:19:28', 5086, NULL, NULL, 'IPAY2022/05/5032', NULL, 'cash', '', '', '', '', '', '', '897.3000', NULL, 22, NULL, 'received', '', '897.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 (5034, '2022-05-14 22:49:53', 5087, NULL, NULL, 'IPAY2022/05/5033', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 22, 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 (5035, '2022-05-15 17:02:02', 5088, NULL, NULL, 'IPAY2022/05/5034', NULL, 'cash', '', '', '', '', '', '', '288.2000', NULL, 17, NULL, 'received', '', '288.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 (5036, '2022-05-15 20:37:16', 5089, NULL, NULL, 'IPAY2022/05/5035', NULL, 'cash', '', '', '', '', '', '', '248.6000', NULL, 16, NULL, 'received', '', '248.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 (5037, '2022-05-15 21:24:12', 5090, NULL, NULL, 'IPAY2022/05/5036', NULL, 'cash', '', '', '', '', '', '', '253.6000', NULL, 22, NULL, 'received', '', '253.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 (5038, '2022-05-15 21:30:22', 5091, NULL, NULL, 'IPAY2022/05/5037', NULL, 'cash', '', '', '', '', '', '', '664.6000', NULL, 11, NULL, 'received', '', '664.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 (5039, '2022-05-15 21:37:56', 5092, NULL, NULL, 'IPAY2022/05/5038', NULL, 'cash', '', '', '', '', '', '', '164.1000', NULL, 11, NULL, 'received', '', '164.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 (5040, '2022-05-15 21:42:40', 5093, NULL, NULL, 'IPAY2022/05/5039', NULL, 'cash', '', '', '', '', '', '', '211.1000', NULL, 16, NULL, 'received', '', '211.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 (5041, '2022-05-15 21:55:36', 5094, NULL, NULL, 'IPAY2022/05/5040', NULL, 'cash', '', '', '', '', '', '', '844.0400', NULL, 11, NULL, 'received', '', '844.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 (5042, '2022-05-15 21:58:32', 5095, NULL, NULL, 'IPAY2022/05/5041', 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 (5043, '2022-05-15 22:01:41', 5096, NULL, NULL, 'IPAY2022/05/5042', NULL, 'cash', '', '', '', '', '', '', '277.4000', NULL, 22, NULL, 'received', '', '277.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 (5044, '2022-05-15 22:08:08', 5097, NULL, NULL, 'IPAY2022/05/5043', 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 (5045, '2022-05-16 11:38:36', 5098, NULL, NULL, 'IPAY2022/05/5044', NULL, 'cash', '', '', '', '', '', '', '157.5000', NULL, 28, NULL, 'received', '', '157.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5046, '2022-05-16 12:52:51', 5099, NULL, NULL, 'IPAY2022/05/5045', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 28, 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 (5047, '2022-05-16 13:05:59', 5100, NULL, NULL, 'IPAY2022/05/5046', NULL, 'cash', '', '', '', '', '', '', '336.2000', NULL, 21, NULL, 'received', '', '336.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 (5048, '2022-05-16 13:37:22', 5101, NULL, NULL, 'IPAY2022/05/5047', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 28, 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 (5049, '2022-05-16 14:25:31', 5102, NULL, NULL, 'IPAY2022/05/5048', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 28, 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 (5050, '2022-05-16 14:49:17', 5103, NULL, NULL, 'IPAY2022/05/5049', NULL, 'cash', '', '', '', '', '', '', '50.4000', NULL, 21, NULL, 'received', '', '50.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 (5051, '2022-05-16 15:36:46', 5104, NULL, NULL, 'IPAY2022/05/5050', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 17, 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 (5052, '2022-05-16 18:14:53', 5105, NULL, NULL, 'IPAY2022/05/5051', NULL, 'cash', '', '', '', '', '', '', '247.0000', NULL, 8, NULL, 'received', '', '247.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5053, '2022-05-16 19:01:45', 5106, NULL, NULL, 'IPAY2022/05/5052', NULL, 'cash', '', '', '', '', '', '', '680.4900', NULL, 17, NULL, 'received', '', '680.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 (5054, '2022-05-16 20:11:31', 5107, NULL, NULL, 'IPAY2022/05/5053', NULL, 'cash', '', '', '', '', '', '', '1070.5000', NULL, 11, NULL, 'received', '', '1070.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5055, '2022-05-16 21:16:28', 5108, NULL, NULL, 'IPAY2022/05/5054', NULL, 'cash', '', '', '', '', '', '', '485.8000', NULL, 17, NULL, 'received', '', '485.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 (5056, '2022-05-16 21:29:07', 5109, NULL, NULL, 'IPAY2022/05/5055', NULL, 'cash', '', '', '', '', '', '', '328.5000', NULL, 8, NULL, 'received', '', '328.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5057, '2022-05-16 21:32:31', 5110, NULL, NULL, 'IPAY2022/05/5056', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 8, 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 (5058, '2022-05-16 21:40:25', 5111, NULL, NULL, 'IPAY2022/05/5057', NULL, 'cash', '', '', '', '', '', '', '112.1000', NULL, 11, NULL, 'received', '', '112.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 (5059, '2022-05-16 21:52:08', 5112, NULL, NULL, 'IPAY2022/05/5058', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 8, 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 (5060, '2022-05-17 10:25:54', 5113, NULL, NULL, 'IPAY2022/05/5059', NULL, 'cash', '', '', '', '', '', '', '185.0000', NULL, 29, 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 (5061, '2022-05-17 11:24:06', 5114, NULL, NULL, 'IPAY2022/05/5060', NULL, 'cash', '', '', '', '', '', '', '111.7000', NULL, 29, NULL, 'received', '', '111.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 (5062, '2022-05-17 12:10:29', 5115, NULL, NULL, 'IPAY2022/05/5061', NULL, 'cash', '', '', '', '', '', '', '114.0000', NULL, 29, 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 (5063, '2022-05-17 13:23:53', 5116, NULL, NULL, 'IPAY2022/05/5062', NULL, 'cash', '', '', '', '', '', '', '49.2000', NULL, 29, NULL, 'received', '', '49.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 (5064, '2022-05-17 14:18:23', 5117, NULL, NULL, 'IPAY2022/05/5063', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (5065, '2022-05-17 15:12:24', 5118, NULL, NULL, 'IPAY2022/05/5064', NULL, 'cash', '', '', '', '', '', '', '119.3000', NULL, 17, NULL, 'received', '', '119.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 (5066, '2022-05-17 15:18:40', 5119, NULL, NULL, 'IPAY2022/05/5065', NULL, 'cash', '', '', '', '', '', '', '412.0000', NULL, 8, NULL, 'received', '', '412.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5067, '2022-05-17 20:00:12', 5120, NULL, NULL, 'IPAY2022/05/5066', NULL, 'cash', '', '', '', '', '', '', '260.3000', NULL, 16, NULL, 'received', '', '260.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 (5068, '2022-05-17 20:01:24', 5121, NULL, NULL, 'IPAY2022/05/5067', NULL, 'cash', '', '', '', '', '', '', '215.0000', NULL, 16, NULL, 'received', '', '215.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5069, '2022-05-17 20:07:56', 5122, NULL, NULL, 'IPAY2022/05/5068', NULL, 'cash', '', '', '', '', '', '', '162.2000', NULL, 16, NULL, 'received', '', '162.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 (5070, '2022-05-17 20:29:28', 5123, NULL, NULL, 'IPAY2022/05/5069', NULL, 'cash', '', '', '', '', '', '', '610.4000', NULL, 11, NULL, 'received', '', '610.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 (5071, '2022-05-17 20:42:17', 5124, NULL, NULL, 'IPAY2022/05/5070', NULL, 'cash', '', '', '', '', '', '', '105.1000', NULL, 16, NULL, 'received', '', '105.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 (5072, '2022-05-17 21:30:52', 5125, NULL, NULL, 'IPAY2022/05/5071', NULL, 'cash', '', '', '', '', '', '', '359.5000', NULL, 22, 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 (5073, '2022-05-17 21:33:06', 5126, NULL, NULL, 'IPAY2022/05/5072', 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 (5074, '2022-05-17 21:41:07', 5127, NULL, NULL, 'IPAY2022/05/5073', NULL, 'cash', '', '', '', '', '', '', '86.5000', NULL, 16, 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 (5075, '2022-05-17 21:50:33', 5128, NULL, NULL, 'IPAY2022/05/5074', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 22, 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 (5076, '2022-05-17 22:00:09', 5129, NULL, NULL, 'IPAY2022/05/5075', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 11, 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 (5077, '2022-05-18 13:58:49', 5130, NULL, NULL, 'IPAY2022/05/5076', NULL, 'cash', '', '', '', '', '', '', '329.4000', NULL, 21, NULL, 'received', '', '329.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 (5078, '2022-05-18 14:42:42', 5131, NULL, NULL, 'IPAY2022/05/5077', NULL, 'cash', '', '', '', '', '', '', '77.0000', NULL, 21, 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 (5079, '2022-05-18 14:57:18', 5132, NULL, NULL, 'IPAY2022/05/5078', NULL, 'cash', '', '', '', '', '', '', '334.7000', NULL, 17, NULL, 'received', '', '334.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 (5080, '2022-05-18 16:41:22', 5133, NULL, NULL, 'IPAY2022/05/5079', NULL, 'cash', '', '', '', '', '', '', '378.8000', NULL, 8, NULL, 'received', '', '378.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 (5081, '2022-05-18 20:26:49', 5134, NULL, NULL, 'IPAY2022/05/5080', NULL, 'cash', '', '', '', '', '', '', '683.4000', NULL, 16, NULL, 'received', '', '683.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 (5082, '2022-05-18 20:39:49', 5135, NULL, NULL, 'IPAY2022/05/5081', NULL, 'cash', '', '', '', '', '', '', '586.7000', NULL, 29, NULL, 'received', '', '586.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 (5083, '2022-05-18 20:59:26', 5136, NULL, NULL, 'IPAY2022/05/5082', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 29, 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 (5084, '2022-05-18 21:14:07', 5137, NULL, NULL, 'IPAY2022/05/5083', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 29, 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 (5085, '2022-05-18 21:20:36', 5138, NULL, NULL, 'IPAY2022/05/5084', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 29, 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 (5086, '2022-05-18 21:23:14', 5139, NULL, NULL, 'IPAY2022/05/5085', NULL, 'cash', '', '', '', '', '', '', '496.5000', NULL, 22, NULL, 'received', '', '496.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5087, '2022-05-18 21:32:18', 5140, NULL, NULL, 'IPAY2022/05/5086', NULL, 'cash', '', '', '', '', '', '', '25.3000', NULL, 29, NULL, 'received', '', '25.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 (5088, '2022-05-18 21:45:49', 5141, NULL, NULL, 'IPAY2022/05/5087', NULL, 'cash', '', '', '', '', '', '', '90.2000', NULL, 16, NULL, 'received', '', '90.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 (5089, '2022-05-18 21:48:43', 5142, NULL, NULL, 'IPAY2022/05/5088', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 22, 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 (5090, '2022-05-18 21:53:51', 5143, NULL, NULL, 'IPAY2022/05/5089', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 29, 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 (5091, '2022-05-19 13:41:27', 5144, NULL, NULL, 'IPAY2022/05/5090', NULL, 'cash', '', '', '', '', '', '', '328.9000', NULL, 21, NULL, 'received', '', '328.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 (5092, '2022-05-19 14:00:40', 5145, NULL, NULL, 'IPAY2022/05/5091', NULL, 'cash', '', '', '', '', '', '', '249.0000', NULL, 21, NULL, 'received', '', '249.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5093, '2022-05-19 14:46:17', 5146, NULL, NULL, 'IPAY2022/05/5092', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 21, 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 (5094, '2022-05-19 14:53:51', 5147, NULL, NULL, 'IPAY2022/05/5093', NULL, 'cash', '', '', '', '', '', '', '292.5000', NULL, 8, NULL, 'received', '', '292.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5095, '2022-05-19 15:03:10', 5148, NULL, NULL, 'IPAY2022/05/5094', NULL, 'cash', '', '', '', '', '', '', '333.0000', NULL, 17, NULL, 'received', '', '333.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5096, '2022-05-19 21:02:55', 5149, NULL, NULL, 'IPAY2022/05/5095', NULL, 'cash', '', '', '', '', '', '', '778.8000', NULL, 16, NULL, 'received', '', '778.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 (5097, '2022-05-19 21:30:43', 5150, NULL, NULL, 'IPAY2022/05/5096', NULL, 'cash', '', '', '', '', '', '', '445.6300', NULL, 11, NULL, 'received', '', '445.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5098, '2022-05-19 21:44:44', 5151, NULL, NULL, 'IPAY2022/05/5097', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 16, 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 (5099, '2022-05-19 21:51:23', 5152, NULL, NULL, 'IPAY2022/05/5098', NULL, 'cash', '', '', '', '', '', '', '382.7000', NULL, 22, NULL, 'received', '', '382.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 (5100, '2022-05-19 21:52:09', 5153, NULL, NULL, 'IPAY2022/05/5099', 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 (5101, '2022-05-20 10:41:49', 5154, NULL, NULL, 'IPAY2022/05/5100', NULL, 'cash', '', '', '', '', '', '', '151.5000', NULL, 28, 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 (5102, '2022-05-20 12:10:23', 5155, NULL, NULL, 'IPAY2022/05/5101', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 28, 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 (5103, '2022-05-20 14:02:18', 5156, NULL, NULL, 'IPAY2022/05/5102', NULL, 'cash', '', '', '', '', '', '', '160.5000', NULL, 21, NULL, 'received', '', '160.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5104, '2022-05-20 14:56:47', 5157, NULL, NULL, 'IPAY2022/05/5103', NULL, 'cash', '', '', '', '', '', '', '142.5000', NULL, 21, NULL, 'received', '', '142.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5105, '2022-05-20 15:06:49', 5158, NULL, NULL, 'IPAY2022/05/5104', NULL, 'cash', '', '', '', '', '', '', '552.0000', NULL, 17, NULL, 'received', '', '552.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5106, '2022-05-20 21:14:54', 5159, NULL, NULL, 'IPAY2022/05/5105', NULL, 'cash', '', '', '', '', '', '', '652.4000', NULL, 16, NULL, 'received', '', '652.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 (5107, '2022-05-20 21:19:42', 5160, NULL, NULL, 'IPAY2022/05/5106', NULL, 'cash', '', '', '', '', '', '', '797.3000', NULL, 11, NULL, 'received', '', '797.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 (5108, '2022-05-20 21:31:44', 5161, NULL, NULL, 'IPAY2022/05/5107', NULL, 'cash', '', '', '', '', '', '', '410.9000', NULL, 22, NULL, 'received', '', '410.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 (5109, '2022-05-20 21:44:43', 5162, NULL, NULL, 'IPAY2022/05/5108', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 16, 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 (5110, '2022-05-20 21:57:50', 5163, NULL, NULL, 'IPAY2022/05/5109', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 11, 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 (5111, '2022-05-20 22:00:08', 5164, NULL, NULL, 'IPAY2022/05/5110', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 22, 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 (5112, '2022-05-21 14:57:00', 5165, NULL, NULL, 'IPAY2022/05/5111', NULL, 'cash', '', '', '', '', '', '', '328.0000', NULL, 21, NULL, 'received', '', '328.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5113, '2022-05-21 15:31:25', 5166, NULL, NULL, 'IPAY2022/05/5112', NULL, 'cash', '', '', '', '', '', '', '410.1000', NULL, 16, NULL, 'received', '', '410.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 (5114, '2022-05-21 15:41:59', 5167, NULL, NULL, 'IPAY2022/05/5113', NULL, 'cash', '', '', '', '', '', '', '213.5000', NULL, 8, NULL, 'received', '', '213.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5115, '2022-05-21 22:03:16', 5168, NULL, NULL, 'IPAY2022/05/5114', NULL, 'cash', '', '', '', '', '', '', '264.8000', NULL, 16, NULL, 'received', '', '264.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 (5116, '2022-05-22 13:43:26', 5169, NULL, NULL, 'IPAY2022/05/5115', NULL, 'cash', '', '', '', '', '', '', '209.1000', NULL, 29, 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 (5117, '2022-05-22 14:45:20', 5170, NULL, NULL, 'IPAY2022/05/5116', NULL, 'cash', '', '', '', '', '', '', '391.8000', NULL, 16, NULL, 'received', '', '391.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 (5118, '2022-05-22 14:50:24', 5171, NULL, NULL, 'IPAY2022/05/5117', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 29, 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 (5119, '2022-05-22 15:34:21', 5172, NULL, NULL, 'IPAY2022/05/5118', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 29, 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 (5120, '2022-05-22 16:21:49', 5173, NULL, NULL, 'IPAY2022/05/5119', NULL, 'cash', '', '', '', '', '', '', '84.0000', NULL, 29, 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 (5121, '2022-05-22 16:25:41', 5174, NULL, NULL, 'IPAY2022/05/5120', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (5122, '2022-05-22 17:05:56', 5175, NULL, NULL, 'IPAY2022/05/5121', NULL, 'cash', '', '', '', '', '', '', '244.5000', NULL, 16, NULL, 'received', '', '244.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5123, '2022-05-22 19:36:03', 5176, NULL, NULL, 'IPAY2022/05/5122', NULL, 'cash', '', '', '', '', '', '', '321.0000', NULL, 22, NULL, 'received', '', '321.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5124, '2022-05-22 20:50:12', 5177, NULL, NULL, 'IPAY2022/05/5123', NULL, 'cash', '', '', '', '', '', '', '289.6000', NULL, 11, NULL, 'received', '', '289.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 (5125, '2022-05-22 20:57:28', 5178, NULL, NULL, 'IPAY2022/05/5124', NULL, 'cash', '', '', '', '', '', '', '193.0000', NULL, 11, NULL, 'received', '', '193.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5126, '2022-05-22 21:40:57', 5179, NULL, NULL, 'IPAY2022/05/5125', NULL, 'cash', '', '', '', '', '', '', '241.7000', NULL, 22, NULL, 'received', '', '241.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 (5127, '2022-05-22 21:44:14', 5180, NULL, NULL, 'IPAY2022/05/5126', NULL, 'cash', '', '', '', '', '', '', '835.1600', NULL, 17, NULL, 'received', '', '835.1600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5128, '2022-05-22 21:49:22', 5181, NULL, NULL, 'IPAY2022/05/5127', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 11, 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 (5129, '2022-05-22 21:55:55', 5182, NULL, NULL, 'IPAY2022/05/5128', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 11, 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 (5130, '2022-05-23 14:38:55', 5183, NULL, NULL, 'IPAY2022/05/5129', NULL, 'cash', '', '', '', '', '', '', '352.2000', NULL, 21, NULL, 'received', '', '352.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 (5131, '2022-05-23 15:34:07', 5184, NULL, NULL, 'IPAY2022/05/5130', NULL, 'cash', '', '', '', '', '', '', '358.9000', NULL, 17, NULL, 'received', '', '358.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 (5132, '2022-05-23 15:47:03', 5185, NULL, NULL, 'IPAY2022/05/5131', NULL, 'cash', '', '', '', '', '', '', '276.5000', NULL, 8, NULL, 'received', '', '276.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5133, '2022-05-23 16:21:33', 5186, NULL, NULL, 'IPAY2022/05/5132', NULL, 'cash', '', '', '', '', '', '', '219.5000', NULL, 8, NULL, 'received', '', '219.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5134, '2022-05-23 18:53:34', 5187, NULL, NULL, 'IPAY2022/05/5133', NULL, 'cash', '', '', '', '', '', '', '320.2000', NULL, 28, NULL, 'received', '', '320.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 (5135, '2022-05-23 20:10:48', 5188, NULL, NULL, 'IPAY2022/05/5134', NULL, 'cash', '', '', '', '', '', '', '124.5000', NULL, 11, 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 (5136, '2022-05-23 21:05:11', 5189, NULL, NULL, 'IPAY2022/05/5135', NULL, 'cash', '', '', '', '', '', '', '149.0000', NULL, 28, 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 (5137, '2022-05-23 21:15:03', 5190, NULL, NULL, 'IPAY2022/05/5136', NULL, 'cash', '', '', '', '', '', '', '825.0700', NULL, 11, NULL, 'received', '', '825.0700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5138, '2022-05-23 21:35:07', 5191, NULL, NULL, 'IPAY2022/05/5137', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 28, 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 (5139, '2022-05-23 21:35:52', 5192, NULL, NULL, 'IPAY2022/05/5138', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 28, 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 (5140, '2022-05-23 21:37:31', 5193, NULL, NULL, 'IPAY2022/05/5139', NULL, 'cash', '', '', '', '', '', '', '237.0000', NULL, 11, NULL, 'received', '', '237.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5141, '2022-05-23 21:40:51', 5194, NULL, NULL, 'IPAY2022/05/5140', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 28, 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 (5142, '2022-05-23 21:44:19', 5195, NULL, NULL, 'IPAY2022/05/5141', NULL, 'cash', '', '', '', '', '', '', '744.4000', NULL, 17, NULL, 'received', '', '744.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 (5143, '2022-05-23 21:52:01', 5196, NULL, NULL, 'IPAY2022/05/5142', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 11, 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 (5144, '2022-05-23 21:54:06', 5197, NULL, NULL, 'IPAY2022/05/5143', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 28, 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 (5145, '2022-05-24 12:39:29', 5198, NULL, NULL, 'IPAY2022/05/5144', NULL, 'cash', '', '', '', '', '', '', '100.6000', NULL, 29, NULL, 'received', '', '100.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 (5146, '2022-05-24 13:56:37', 5199, NULL, NULL, 'IPAY2022/05/5145', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 29, 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 (5147, '2022-05-24 13:57:33', 5200, NULL, NULL, 'IPAY2022/05/5146', NULL, 'cash', '', '', '', '', '', '', '345.9000', NULL, 16, NULL, 'received', '', '345.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 (5148, '2022-05-24 14:15:54', 5201, NULL, NULL, 'IPAY2022/05/5147', NULL, 'cash', '', '', '', '', '', '', '216.0000', NULL, 8, 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 (5149, '2022-05-24 14:32:00', 5202, NULL, NULL, 'IPAY2022/05/5148', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 29, 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 (5150, '2022-05-24 14:58:36', 5203, NULL, NULL, 'IPAY2022/05/5149', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 16, 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 (5151, '2022-05-24 15:13:31', 5204, NULL, NULL, 'IPAY2022/05/5150', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 29, 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 (5152, '2022-05-24 15:16:08', 5205, NULL, NULL, 'IPAY2022/05/5151', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 16, 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 (5153, '2022-05-24 15:19:41', 5206, NULL, NULL, 'IPAY2022/05/5152', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 16, 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 (5154, '2022-05-24 17:02:51', 5207, NULL, NULL, 'IPAY2022/05/5153', NULL, 'cash', '', '', '', '', '', '', '179.0000', NULL, 17, 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 (5155, '2022-05-24 20:46:10', 5208, NULL, NULL, 'IPAY2022/05/5154', NULL, 'cash', '', '', '', '', '', '', '711.3000', NULL, 17, NULL, 'received', '', '711.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 (5156, '2022-05-24 21:28:12', 5209, NULL, NULL, 'IPAY2022/05/5155', NULL, 'cash', '', '', '', '', '', '', '604.9000', NULL, 22, NULL, 'received', '', '604.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 (5157, '2022-05-24 21:41:39', 5210, NULL, NULL, 'IPAY2022/05/5156', NULL, 'cash', '', '', '', '', '', '', '532.8000', NULL, 11, NULL, 'received', '', '532.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 (5158, '2022-05-24 21:42:01', 5211, NULL, NULL, 'IPAY2022/05/5157', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 22, 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 (5159, '2022-05-24 21:42:34', 5212, NULL, NULL, 'IPAY2022/05/5158', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 17, 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 (5160, '2022-05-24 21:47:23', 5213, NULL, NULL, 'IPAY2022/05/5159', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 17, 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 (5161, '2022-05-25 13:58:17', 5214, NULL, NULL, 'IPAY2022/05/5160', NULL, 'cash', '', '', '', '', '', '', '656.7000', NULL, 16, NULL, 'received', '', '656.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 (5162, '2022-05-25 13:59:19', 5215, NULL, NULL, 'IPAY2022/05/5161', NULL, 'cash', '', '', '', '', '', '', '831.0000', NULL, 8, NULL, 'received', '', '831.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5163, '2022-05-25 15:09:12', 5216, NULL, NULL, 'IPAY2022/05/5162', 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 (5164, '2022-05-25 15:15:02', 5217, NULL, NULL, 'IPAY2022/05/5163', NULL, 'cash', '', '', '', '', '', '', '534.6000', NULL, 21, NULL, 'received', '', '534.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 (5165, '2022-05-25 15:29:33', 5218, NULL, NULL, 'IPAY2022/05/5164', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 16, 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 (5166, '2022-05-25 18:03:27', 5219, NULL, NULL, 'IPAY2022/05/5165', NULL, 'cash', '', '', '', '', '', '', '148.0000', NULL, 21, NULL, 'received', '', '148.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5167, '2022-05-25 20:32:02', 5220, NULL, NULL, 'IPAY2022/05/5166', NULL, 'cash', '', '', '', '', '', '', '575.8000', NULL, 17, NULL, 'received', '', '575.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 (5168, '2022-05-25 21:44:40', 5221, NULL, NULL, 'IPAY2022/05/5167', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 17, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5169, '2022-05-25 21:51:54', 5222, NULL, NULL, 'IPAY2022/05/5168', NULL, 'cash', '', '', '', '', '', '', '462.6000', NULL, 29, NULL, 'received', '', '462.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 (5170, '2022-05-26 13:40:01', 5226, NULL, NULL, 'IPAY2022/05/5169', NULL, 'cash', '', '', '', '', '', '', '105.5000', NULL, 21, NULL, 'received', '', '105.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5171, '2022-05-26 14:45:45', 5227, NULL, NULL, 'IPAY2022/05/5170', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 21, 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 (5172, '2022-05-26 15:20:43', 5228, NULL, NULL, 'IPAY2022/05/5171', NULL, 'cash', '', '', '', '', '', '', '168.0000', NULL, 16, NULL, 'received', '', '168.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5173, '2022-05-26 15:31:22', 5229, NULL, NULL, 'IPAY2022/05/5172', NULL, 'cash', '', '', '', '', '', '', '44.5000', NULL, 16, 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 (5174, '2022-05-26 16:07:31', 5230, NULL, NULL, 'IPAY2022/05/5173', NULL, 'cash', '', '', '', '', '', '', '171.0000', NULL, 8, NULL, 'received', '', '171.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5175, '2022-05-26 20:18:53', 5231, NULL, NULL, 'IPAY2022/05/5174', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 17, 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 (5176, '2022-05-26 20:19:25', 5232, NULL, NULL, 'IPAY2022/05/5175', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 17, 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 (5177, '2022-05-26 21:01:28', 5233, NULL, NULL, 'IPAY2022/05/5176', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 11, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5178, '2022-05-26 21:01:52', 5234, NULL, NULL, 'IPAY2022/05/5177', NULL, 'cash', '', '', '', '', '', '', '868.0000', NULL, 17, NULL, 'received', '', '868.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5179, '2022-05-26 21:23:54', 5235, NULL, NULL, 'IPAY2022/05/5178', NULL, 'cash', '', '', '', '', '', '', '499.0000', NULL, 8, NULL, 'received', '', '499.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5180, '2022-05-26 21:25:08', 5236, NULL, NULL, 'IPAY2022/05/5179', NULL, 'cash', '', '', '', '', '', '', '499.0000', NULL, 8, NULL, 'received', '', '499.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5181, '2022-05-26 21:42:06', 5237, NULL, NULL, 'IPAY2022/05/5180', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 17, 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 (5182, '2022-05-26 21:42:29', 5238, NULL, NULL, 'IPAY2022/05/5181', NULL, 'cash', '', '', '', '', '', '', '50.2000', NULL, 11, NULL, 'received', '', '50.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 (5183, '2022-05-26 21:51:40', 5239, NULL, NULL, 'IPAY2022/05/5182', 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 (5184, '2022-05-26 22:00:13', 5240, NULL, NULL, 'IPAY2022/05/5183', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 8, 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 (5185, '2022-05-26 22:02:00', 5241, NULL, NULL, 'IPAY2022/05/5184', NULL, 'cash', '', '', '', '', '', '', '23.6000', NULL, 11, NULL, 'received', '', '23.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 (5186, '2022-05-27 12:31:57', 5242, NULL, NULL, 'IPAY2022/05/5185', NULL, 'cash', '', '', '', '', '', '', '171.6000', NULL, 28, NULL, 'received', '', '171.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 (5187, '2022-05-27 13:28:44', 5243, NULL, NULL, 'IPAY2022/05/5186', NULL, 'cash', '', '', '', '', '', '', '188.0000', NULL, 28, NULL, 'received', '', '188.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5188, '2022-05-27 13:35:03', 5244, NULL, NULL, 'IPAY2022/05/5187', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 28, 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 (5189, '2022-05-27 13:42:21', 5245, NULL, NULL, 'IPAY2022/05/5188', NULL, 'cash', '', '', '', '', '', '', '346.8000', NULL, 21, NULL, 'received', '', '346.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 (5190, '2022-05-27 13:44:01', 5246, NULL, NULL, 'IPAY2022/05/5189', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 28, 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 (5191, '2022-05-27 14:02:49', 5247, NULL, NULL, 'IPAY2022/05/5190', NULL, 'cash', '', '', '', '', '', '', '490.6000', NULL, 16, NULL, 'received', '', '490.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 (5192, '2022-05-27 14:23:20', 5248, NULL, NULL, 'IPAY2022/05/5191', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 28, 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 (5193, '2022-05-27 14:39:26', 5249, NULL, NULL, 'IPAY2022/05/5192', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 21, 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 (5194, '2022-05-27 15:06:38', 5250, NULL, NULL, 'IPAY2022/05/5193', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 16, 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 (5195, '2022-05-27 15:47:33', 5251, NULL, NULL, 'IPAY2022/05/5194', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 11, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5196, '2022-05-27 18:57:58', 5252, NULL, NULL, 'IPAY2022/05/5195', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 17, 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 (5197, '2022-05-27 21:25:45', 5253, NULL, NULL, 'IPAY2022/05/5196', NULL, 'cash', '', '', '', '', '', '', '583.9000', NULL, 17, NULL, 'received', '', '583.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 (5198, '2022-05-27 22:10:02', 5254, NULL, NULL, 'IPAY2022/05/5197', NULL, 'cash', '', '', '', '', '', '', '925.7000', NULL, 11, NULL, 'received', '', '925.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 (5199, '2022-05-28 13:01:26', 5255, NULL, NULL, 'IPAY2022/05/5198', NULL, 'cash', '', '', '', '', '', '', '799.2000', NULL, 16, NULL, 'received', '', '799.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 (5200, '2022-05-28 14:41:08', 5256, NULL, NULL, 'IPAY2022/05/5199', NULL, 'cash', '', '', '', '', '', '', '514.2000', NULL, 21, NULL, 'received', '', '514.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 (5201, '2022-05-28 14:57:55', 5257, NULL, NULL, 'IPAY2022/05/5200', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 21, 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 (5202, '2022-05-28 16:22:40', 5258, NULL, NULL, 'IPAY2022/05/5201', NULL, 'cash', '', '', '', '', '', '', '98.5000', NULL, 11, 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 (5203, '2022-05-28 16:24:48', 5259, NULL, NULL, 'IPAY2022/05/5202', NULL, 'cash', '', '', '', '', '', '', '645.2000', NULL, 22, NULL, 'received', '', '645.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 (5204, '2022-05-28 18:04:10', 5260, NULL, NULL, 'IPAY2022/05/5203', NULL, 'cash', '', '', '', '', '', '', '537.0000', NULL, 8, NULL, 'received', '', '537.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5205, '2022-05-28 19:24:41', 5261, NULL, NULL, 'IPAY2022/05/5204', NULL, 'cash', '', '', '', '', '', '', '617.9000', NULL, 16, NULL, 'received', '', '617.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 (5206, '2022-05-28 21:12:49', 5262, NULL, NULL, 'IPAY2022/05/5205', NULL, 'cash', '', '', '', '', '', '', '379.2000', NULL, 8, NULL, 'received', '', '379.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 (5207, '2022-05-28 21:42:11', 5263, NULL, NULL, 'IPAY2022/05/5206', NULL, 'cash', '', '', '', '', '', '', '206.9000', NULL, 16, NULL, 'received', '', '206.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 (5208, '2022-05-28 21:43:09', 5264, NULL, NULL, 'IPAY2022/05/5207', NULL, 'cash', '', '', '', '', '', '', '788.9000', NULL, 11, NULL, 'received', '', '788.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 (5209, '2022-05-29 15:01:02', 5265, NULL, NULL, 'IPAY2022/05/5208', NULL, 'cash', '', '', '', '', '', '', '214.7000', NULL, 29, NULL, 'received', '', '214.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 (5210, '2022-05-29 16:21:53', 5266, NULL, NULL, 'IPAY2022/05/5209', NULL, 'cash', '', '', '', '', '', '', '103.0000', NULL, 29, 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 (5211, '2022-05-29 16:34:42', 5267, NULL, NULL, 'IPAY2022/05/5210', NULL, 'cash', '', '', '', '', '', '', '429.2000', NULL, 17, NULL, 'received', '', '429.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 (5212, '2022-05-29 16:37:00', 5268, NULL, NULL, 'IPAY2022/05/5211', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 29, 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 (5213, '2022-05-29 16:44:32', 5269, NULL, NULL, 'IPAY2022/05/5212', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 29, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5214, '2022-05-29 16:47:53', 5270, NULL, NULL, 'IPAY2022/05/5213', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 29, 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 (5215, '2022-05-29 16:54:53', 5271, NULL, NULL, 'IPAY2022/05/5214', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (5216, '2022-05-29 17:03:52', 5272, NULL, NULL, 'IPAY2022/05/5215', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 17, 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 (5217, '2022-05-29 17:04:09', 5273, NULL, NULL, 'IPAY2022/05/5216', NULL, 'cash', '', '', '', '', '', '', '102.5000', NULL, 29, NULL, 'received', '', '102.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5218, '2022-05-29 18:12:43', 5274, NULL, NULL, 'IPAY2022/05/5217', NULL, 'cash', '', '', '', '', '', '', '408.2000', NULL, 22, NULL, 'received', '', '408.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 (5219, '2022-05-29 19:31:39', 5275, NULL, NULL, 'IPAY2022/05/5218', NULL, 'cash', '', '', '', '', '', '', '583.0000', NULL, 16, NULL, 'received', '', '583.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5220, '2022-05-29 19:49:59', 5276, NULL, NULL, 'IPAY2022/05/5219', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 22, 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 (5221, '2022-05-29 21:03:41', 5277, NULL, NULL, 'IPAY2022/05/5220', NULL, 'cash', '', '', '', '', '', '', '290.9000', NULL, 16, NULL, 'received', '', '290.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 (5222, '2022-05-29 21:15:51', 5278, NULL, NULL, 'IPAY2022/05/5221', NULL, 'cash', '', '', '', '', '', '', '114.6000', NULL, 22, NULL, 'received', '', '114.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 (5223, '2022-05-29 21:23:21', 5279, NULL, NULL, 'IPAY2022/05/5222', NULL, 'cash', '', '', '', '', '', '', '726.5000', NULL, 11, NULL, 'received', '', '726.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5224, '2022-05-29 21:40:48', 5280, NULL, NULL, 'IPAY2022/05/5223', NULL, 'cash', '', '', '', '', '', '', '91.5000', NULL, 16, NULL, 'received', '', '91.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5225, '2022-05-29 21:47:08', 5281, NULL, NULL, 'IPAY2022/05/5224', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 22, 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 (5226, '2022-05-29 21:52:35', 5282, NULL, NULL, 'IPAY2022/05/5225', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (5227, '2022-05-29 21:55:33', 5283, NULL, NULL, 'IPAY2022/05/5226', 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 (5228, '2022-05-30 13:22:01', 5284, NULL, NULL, 'IPAY2022/05/5227', NULL, 'cash', '', '', '', '', '', '', '298.0000', NULL, 21, NULL, 'received', '', '298.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5229, '2022-05-30 14:43:01', 5285, NULL, NULL, 'IPAY2022/05/5228', NULL, 'cash', '', '', '', '', '', '', '243.9000', NULL, 17, NULL, 'received', '', '243.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 (5230, '2022-05-30 15:15:39', 5286, NULL, NULL, 'IPAY2022/05/5229', NULL, 'cash', '', '', '', '', '', '', '105.0000', NULL, 21, 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 (5231, '2022-05-30 16:23:00', 5287, NULL, NULL, 'IPAY2022/05/5230', NULL, 'cash', '', '', '', '', '', '', '568.8000', NULL, 8, NULL, 'received', '', '568.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 (5232, '2022-05-30 18:18:14', 5288, NULL, NULL, 'IPAY2022/05/5231', NULL, 'cash', '', '', '', '', '', '', '502.0000', NULL, 28, NULL, 'received', '', '502.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5233, '2022-05-30 19:11:37', 5289, NULL, NULL, 'IPAY2022/05/5232', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 28, 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 (5234, '2022-05-30 19:58:09', 5290, NULL, NULL, 'IPAY2022/05/5233', NULL, 'cash', '', '', '', '', '', '', '56.4000', NULL, 28, NULL, 'received', '', '56.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 (5235, '2022-05-30 20:19:07', 5291, NULL, NULL, 'IPAY2022/05/5234', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 28, 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 (5236, '2022-05-30 20:50:12', 5292, NULL, NULL, 'IPAY2022/05/5235', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 28, 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 (5237, '2022-05-30 20:58:12', 5293, NULL, NULL, 'IPAY2022/05/5236', NULL, 'cash', '', '', '', '', '', '', '1046.5000', NULL, 17, NULL, 'received', '', '1046.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5238, '2022-05-30 21:19:31', 5294, NULL, NULL, 'IPAY2022/05/5237', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 28, 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 (5239, '2022-05-30 21:31:45', 5295, NULL, NULL, 'IPAY2022/05/5238', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 28, 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 (5240, '2022-05-30 21:37:26', 5296, NULL, NULL, 'IPAY2022/05/5239', NULL, 'cash', '', '', '', '', '', '', '177.9000', NULL, 17, NULL, 'received', '', '177.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 (5241, '2022-05-30 21:37:38', 5297, NULL, NULL, 'IPAY2022/05/5240', NULL, 'cash', '', '', '', '', '', '', '89.8000', NULL, 28, NULL, 'received', '', '89.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 (5242, '2022-05-30 21:45:18', 5298, NULL, NULL, 'IPAY2022/05/5241', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 28, 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 (5243, '2022-05-30 21:47:08', 5299, NULL, NULL, 'IPAY2022/05/5242', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 28, 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 (5244, '2022-05-30 21:52:27', 5300, NULL, NULL, 'IPAY2022/05/5243', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 28, 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 (5245, '2022-05-30 21:58:30', 5301, NULL, NULL, 'IPAY2022/05/5244', NULL, 'cash', '', '', '', '', '', '', '907.0000', NULL, 11, NULL, 'received', '', '907.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5246, '2022-05-31 14:54:15', 5302, NULL, NULL, 'IPAY2022/05/5245', NULL, 'cash', '', '', '', '', '', '', '302.4000', NULL, 17, NULL, 'received', '', '302.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 (5247, '2022-05-31 15:19:12', 5303, NULL, NULL, 'IPAY2022/05/5246', NULL, 'cash', '', '', '', '', '', '', '464.2000', NULL, 29, NULL, 'received', '', '464.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 (5248, '2022-05-31 15:55:28', 5304, NULL, NULL, 'IPAY2022/05/5247', NULL, 'cash', '', '', '', '', '', '', '177.6000', NULL, 8, NULL, 'received', '', '177.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 (5249, '2022-05-31 21:17:24', 5305, NULL, NULL, 'IPAY2022/05/5248', NULL, 'cash', '', '', '', '', '', '', '632.1000', NULL, 16, NULL, 'received', '', '632.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 (5250, '2022-05-31 21:18:49', 5306, NULL, NULL, 'IPAY2022/05/5249', NULL, 'cash', '', '', '', '', '', '', '720.6000', NULL, 22, NULL, 'received', '', '720.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 (5251, '2022-05-31 21:27:04', 5307, NULL, NULL, 'IPAY2022/05/5250', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 22, 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 (5252, '2022-05-31 21:35:09', 5308, NULL, NULL, 'IPAY2022/05/5251', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 22, 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 (5253, '2022-05-31 21:47:58', 5309, NULL, NULL, 'IPAY2022/05/5252', NULL, 'cash', '', '', '', '', '', '', '121.5000', NULL, 16, NULL, 'received', '', '121.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5254, '2022-05-31 21:53:04', 5310, NULL, NULL, 'IPAY2022/05/5253', NULL, 'cash', '', '', '', '', '', '', '1244.9000', NULL, 11, NULL, 'received', '', '1244.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 (5255, '2022-06-01 13:24:43', 5311, NULL, NULL, 'IPAY2022/06/5254', NULL, 'cash', '', '', '', '', '', '', '243.1000', NULL, 21, NULL, 'received', '', '243.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 (5256, '2022-06-01 14:22:16', 5312, NULL, NULL, 'IPAY2022/06/5255', NULL, 'cash', '', '', '', '', '', '', '255.0000', NULL, 21, 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 (5257, '2022-06-01 14:43:24', 5313, NULL, NULL, 'IPAY2022/06/5256', NULL, 'cash', '', '', '', '', '', '', '347.6000', NULL, 17, NULL, 'received', '', '347.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 (5258, '2022-06-01 14:47:45', 5314, NULL, NULL, 'IPAY2022/06/5257', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 21, 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 (5259, '2022-06-01 14:58:58', 5315, NULL, NULL, 'IPAY2022/06/5258', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 17, 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 (5260, '2022-06-01 16:05:50', 5316, NULL, NULL, 'IPAY2022/06/5259', NULL, 'cash', '', '', '', '', '', '', '330.3000', NULL, 8, NULL, 'received', '', '330.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 (5261, '2022-06-01 16:25:08', 5317, NULL, NULL, 'IPAY2022/06/5260', NULL, 'cash', '', '', '', '', '', '', '255.2000', NULL, 29, NULL, 'received', '', '255.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 (5262, '2022-06-01 18:13:55', 5318, NULL, NULL, 'IPAY2022/06/5261', NULL, 'cash', '', '', '', '', '', '', '101.5000', NULL, 29, NULL, 'received', '', '101.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5263, '2022-06-01 18:26:21', 5319, NULL, NULL, 'IPAY2022/06/5262', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (5264, '2022-06-01 18:34:15', 5320, NULL, NULL, 'IPAY2022/06/5263', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 29, 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 (5265, '2022-06-01 19:31:02', 5321, NULL, NULL, 'IPAY2022/06/5264', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 29, 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 (5266, '2022-06-01 20:03:36', 5322, NULL, NULL, 'IPAY2022/06/5265', NULL, 'cash', '', '', '', '', '', '', '87.0000', NULL, 29, 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 (5267, '2022-06-01 20:31:11', 5323, NULL, NULL, 'IPAY2022/06/5266', NULL, 'cash', '', '', '', '', '', '', '127.3000', NULL, 29, NULL, 'received', '', '127.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 (5268, '2022-06-01 21:05:47', 5324, NULL, NULL, 'IPAY2022/06/5267', NULL, 'cash', '', '', '', '', '', '', '1359.2000', NULL, 17, NULL, 'received', '', '1359.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 (5269, '2022-06-01 21:08:29', 5325, NULL, NULL, 'IPAY2022/06/5268', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 29, 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 (5270, '2022-06-01 21:22:15', 5326, NULL, NULL, 'IPAY2022/06/5269', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 29, 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 (5271, '2022-06-01 21:24:58', 5327, NULL, NULL, 'IPAY2022/06/5270', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 29, 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 (5272, '2022-06-01 21:27:50', 5328, NULL, NULL, 'IPAY2022/06/5271', NULL, 'cash', '', '', '', '', '', '', '430.2000', NULL, 22, NULL, 'received', '', '430.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 (5273, '2022-06-01 21:34:02', 5329, NULL, NULL, 'IPAY2022/06/5272', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 22, 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 (5274, '2022-06-01 21:40:30', 5330, NULL, NULL, 'IPAY2022/06/5273', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 29, 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 (5275, '2022-06-01 21:42:18', 5331, NULL, NULL, 'IPAY2022/06/5274', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 22, 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 (5276, '2022-06-01 21:50:40', 5332, NULL, NULL, 'IPAY2022/06/5275', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 29, 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 (5277, '2022-06-02 13:22:16', 5333, NULL, NULL, 'IPAY2022/06/5276', NULL, 'cash', '', '', '', '', '', '', '272.7000', NULL, 21, NULL, 'received', '', '272.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 (5278, '2022-06-02 14:27:55', 5334, NULL, NULL, 'IPAY2022/06/5277', NULL, 'cash', '', '', '', '', '', '', '290.5000', NULL, 17, 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 (5279, '2022-06-02 14:49:54', 5335, NULL, NULL, 'IPAY2022/06/5278', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 21, 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 (5280, '2022-06-02 15:04:52', 5336, NULL, NULL, 'IPAY2022/06/5279', NULL, 'cash', '', '', '', '', '', '', '924.7000', NULL, 8, NULL, 'received', '', '924.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 (5281, '2022-06-02 15:09:22', 5337, NULL, NULL, 'IPAY2022/06/5280', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 8, 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 (5282, '2022-06-02 19:53:42', 5338, NULL, NULL, 'IPAY2022/06/5281', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 11, 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 (5283, '2022-06-02 20:30:40', 5339, NULL, NULL, 'IPAY2022/06/5282', NULL, 'cash', '', '', '', '', '', '', '686.1000', NULL, 16, NULL, 'received', '', '686.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 (5284, '2022-06-02 20:38:31', 5340, NULL, NULL, 'IPAY2022/06/5283', NULL, 'cash', '', '', '', '', '', '', '342.1900', NULL, 11, NULL, 'received', '', '342.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 (5285, '2022-06-02 21:01:27', 5341, NULL, NULL, 'IPAY2022/06/5284', NULL, 'cash', '', '', '', '', '', '', '472.1000', NULL, 11, NULL, 'received', '', '472.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 (5286, '2022-06-02 21:40:47', 5342, NULL, NULL, 'IPAY2022/06/5285', NULL, 'cash', '', '', '', '', '', '', '89.0000', NULL, 16, 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 (5287, '2022-06-02 21:45:17', 5343, NULL, NULL, 'IPAY2022/06/5286', NULL, 'cash', '', '', '', '', '', '', '428.5000', NULL, 22, NULL, 'received', '', '428.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5288, '2022-06-02 21:47:49', 5344, NULL, NULL, 'IPAY2022/06/5287', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 11, 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 (5289, '2022-06-02 21:52:59', 5345, NULL, NULL, 'IPAY2022/06/5288', 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 (5290, '2022-06-03 12:02:45', 5346, NULL, NULL, 'IPAY2022/06/5289', NULL, 'cash', '', '', '', '', '', '', '307.1400', NULL, 28, NULL, 'received', '', '307.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5291, '2022-06-03 13:34:32', 5347, NULL, NULL, 'IPAY2022/06/5290', NULL, 'cash', '', '', '', '', '', '', '358.2000', NULL, 21, NULL, 'received', '', '358.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 (5292, '2022-06-03 14:05:02', 5348, NULL, NULL, 'IPAY2022/06/5291', NULL, 'cash', '', '', '', '', '', '', '530.2000', NULL, 17, NULL, 'received', '', '530.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 (5293, '2022-06-03 15:09:51', 5349, NULL, NULL, 'IPAY2022/06/5292', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 17, 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 (5294, '2022-06-03 21:04:38', 5350, NULL, NULL, 'IPAY2022/06/5293', NULL, 'cash', '', '', '', '', '', '', '263.5000', NULL, 11, 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 (5295, '2022-06-03 21:47:02', 5351, NULL, NULL, 'IPAY2022/06/5294', NULL, 'cash', '', '', '', '', '', '', '662.0000', NULL, 17, NULL, 'received', '', '662.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5296, '2022-06-03 21:48:41', 5352, NULL, NULL, 'IPAY2022/06/5295', 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 (5297, '2022-06-04 10:49:34', 5353, NULL, NULL, 'IPAY2022/06/5296', NULL, 'cash', '', '', '', '', '', '', '130.0000', NULL, 29, NULL, 'received', '', '130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5298, '2022-06-04 12:45:17', 5354, NULL, NULL, 'IPAY2022/06/5297', NULL, 'cash', '', '', '', '', '', '', '96.5000', NULL, 29, 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 (5299, '2022-06-04 13:04:54', 5355, NULL, NULL, 'IPAY2022/06/5298', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 29, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5300, '2022-06-04 13:45:13', 5356, NULL, NULL, 'IPAY2022/06/5299', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 29, 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 (5301, '2022-06-04 14:18:04', 5357, NULL, NULL, 'IPAY2022/06/5300', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (5302, '2022-06-04 14:33:16', 5358, NULL, NULL, 'IPAY2022/06/5301', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 29, 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 (5303, '2022-06-04 14:42:10', 5359, NULL, NULL, 'IPAY2022/06/5302', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 29, 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 (5304, '2022-06-04 14:52:40', 5360, NULL, NULL, 'IPAY2022/06/5303', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (5305, '2022-06-04 14:58:18', 5361, NULL, NULL, 'IPAY2022/06/5304', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 29, 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 (5306, '2022-06-04 18:46:07', 5362, NULL, NULL, 'IPAY2022/06/5305', NULL, 'cash', '', '', '', '', '', '', '404.5000', NULL, 16, NULL, 'received', '', '404.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5307, '2022-06-04 18:54:45', 5363, NULL, NULL, 'IPAY2022/06/5306', NULL, 'cash', '', '', '', '', '', '', '196.4000', NULL, 16, NULL, 'received', '', '196.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 (5308, '2022-06-04 19:17:31', 5364, NULL, NULL, 'IPAY2022/06/5307', NULL, 'cash', '', '', '', '', '', '', '539.0000', NULL, 11, 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 (5309, '2022-06-04 20:36:22', 5365, NULL, NULL, 'IPAY2022/06/5308', NULL, 'cash', '', '', '', '', '', '', '213.0000', NULL, 16, NULL, 'received', '', '213.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5310, '2022-06-04 20:51:14', 5366, NULL, NULL, 'IPAY2022/06/5309', NULL, 'cash', '', '', '', '', '', '', '545.7000', NULL, 11, NULL, 'received', '', '545.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 (5311, '2022-06-04 21:32:15', 5367, NULL, NULL, 'IPAY2022/06/5310', NULL, 'cash', '', '', '', '', '', '', '195.0000', NULL, 11, NULL, 'received', '', '195.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5312, '2022-06-04 21:39:10', 5368, NULL, NULL, 'IPAY2022/06/5311', NULL, 'cash', '', '', '', '', '', '', '63.8000', NULL, 16, NULL, 'received', '', '63.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 (5313, '2022-06-04 21:47:20', 5369, NULL, NULL, 'IPAY2022/06/5312', 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 (5314, '2022-06-04 21:54:37', 5370, NULL, NULL, 'IPAY2022/06/5313', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 11, 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 (5315, '2022-06-04 22:04:18', 5371, NULL, NULL, 'IPAY2022/06/5314', 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 (5316, '2022-06-05 16:56:19', 5372, NULL, NULL, 'IPAY2022/06/5315', NULL, 'cash', '', '', '', '', '', '', '184.0000', NULL, 16, NULL, 'received', '', '184.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5317, '2022-06-05 21:18:35', 5373, NULL, NULL, 'IPAY2022/06/5316', NULL, 'cash', '', '', '', '', '', '', '478.2000', NULL, 11, NULL, 'received', '', '478.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 (5318, '2022-06-05 21:24:51', 5374, NULL, NULL, 'IPAY2022/06/5317', NULL, 'cash', '', '', '', '', '', '', '735.4000', NULL, 17, NULL, 'received', '', '735.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 (5319, '2022-06-05 21:36:25', 5375, NULL, NULL, 'IPAY2022/06/5318', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 17, 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 (5320, '2022-06-05 21:52:36', 5376, NULL, NULL, 'IPAY2022/06/5319', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 11, 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 (5321, '2022-06-06 14:32:57', 5377, NULL, NULL, 'IPAY2022/06/5320', NULL, 'cash', '', '', '', '', '', '', '463.0000', NULL, 21, NULL, 'received', '', '463.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5322, '2022-06-06 14:48:37', 5378, NULL, NULL, 'IPAY2022/06/5321', NULL, 'cash', '', '', '', '', '', '', '476.9000', NULL, 17, NULL, 'received', '', '476.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 (5323, '2022-06-06 15:13:24', 5379, NULL, NULL, 'IPAY2022/06/5322', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 21, 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 (5324, '2022-06-06 17:30:31', 5380, NULL, NULL, 'IPAY2022/06/5323', NULL, 'cash', '', '', '', '', '', '', '554.0000', NULL, 11, NULL, 'received', '', '554.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5325, '2022-06-06 18:33:25', 5381, NULL, NULL, 'IPAY2022/06/5324', NULL, 'cash', '', '', '', '', '', '', '573.5000', NULL, 17, NULL, 'received', '', '573.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5326, '2022-06-06 21:01:24', 5382, NULL, NULL, 'IPAY2022/06/5325', NULL, 'cash', '', '', '', '', '', '', '345.7000', NULL, 17, NULL, 'received', '', '345.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 (5327, '2022-06-06 21:06:22', 5383, NULL, NULL, 'IPAY2022/06/5326', NULL, 'cash', '', '', '', '', '', '', '768.1000', NULL, 11, NULL, 'received', '', '768.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 (5328, '2022-06-06 21:27:38', 5384, NULL, NULL, 'IPAY2022/06/5327', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 17, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5329, '2022-06-06 21:59:13', 5385, NULL, NULL, 'IPAY2022/06/5328', 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 (5330, '2022-06-07 10:01:34', 5386, NULL, NULL, 'IPAY2022/06/5329', NULL, 'cash', '', '', '', '', '', '', '167.6000', NULL, 29, NULL, 'received', '', '167.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 (5331, '2022-06-07 10:48:07', 5387, NULL, NULL, 'IPAY2022/06/5330', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 29, 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 (5332, '2022-06-07 11:46:56', 5388, NULL, NULL, 'IPAY2022/06/5331', NULL, 'cash', '', '', '', '', '', '', '35.2000', NULL, 29, NULL, 'received', '', '35.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 (5333, '2022-06-07 12:48:24', 5389, NULL, NULL, 'IPAY2022/06/5332', NULL, 'cash', '', '', '', '', '', '', '91.0000', NULL, 29, NULL, 'received', '', '91.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5334, '2022-06-07 13:11:27', 5390, NULL, NULL, 'IPAY2022/06/5333', NULL, 'cash', '', '', '', '', '', '', '486.5000', NULL, 16, NULL, 'received', '', '486.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5335, '2022-06-07 13:48:16', 5391, NULL, NULL, 'IPAY2022/06/5334', NULL, 'cash', '', '', '', '', '', '', '87.5000', NULL, 29, 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 (5336, '2022-06-07 14:19:06', 5392, NULL, NULL, 'IPAY2022/06/5335', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 29, 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 (5337, '2022-06-07 14:31:38', 5393, NULL, NULL, 'IPAY2022/06/5336', NULL, 'cash', '', '', '', '', '', '', '13.2000', NULL, 29, NULL, 'received', '', '13.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 (5338, '2022-06-07 15:21:06', 5394, NULL, NULL, 'IPAY2022/06/5337', NULL, 'cash', '', '', '', '', '', '', '112.1000', NULL, 16, NULL, 'received', '', '112.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 (5339, '2022-06-07 15:37:53', 5395, NULL, NULL, 'IPAY2022/06/5338', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 16, 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 (5340, '2022-06-07 21:35:07', 5396, NULL, NULL, 'IPAY2022/06/5339', NULL, 'cash', '', '', '', '', '', '', '887.6000', NULL, 17, NULL, 'received', '', '887.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 (5341, '2022-06-07 21:51:44', 5397, NULL, NULL, 'IPAY2022/06/5340', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 17, 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 (5342, '2022-06-07 22:07:23', 5398, NULL, NULL, 'IPAY2022/06/5341', NULL, 'cash', '', '', '', '', '', '', '1104.1000', NULL, 11, NULL, 'received', '', '1104.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 (5343, '2022-06-08 13:28:14', 5399, NULL, NULL, 'IPAY2022/06/5342', NULL, 'cash', '', '', '', '', '', '', '593.7000', NULL, 16, NULL, 'received', '', '593.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 (5344, '2022-06-08 14:20:42', 5400, NULL, NULL, 'IPAY2022/06/5343', NULL, 'cash', '', '', '', '', '', '', '495.2000', NULL, 21, NULL, 'received', '', '495.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 (5345, '2022-06-08 14:29:12', 5401, NULL, NULL, 'IPAY2022/06/5344', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 21, 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 (5346, '2022-06-08 14:51:09', 5402, NULL, NULL, 'IPAY2022/06/5345', NULL, 'cash', '', '', '', '', '', '', '38.5000', NULL, 21, NULL, 'received', '', '38.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5347, '2022-06-08 14:52:46', 5403, NULL, NULL, 'IPAY2022/06/5346', NULL, 'cash', '', '', '', '', '', '', '222.7000', NULL, 16, NULL, 'received', '', '222.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 (5348, '2022-06-08 17:18:14', 5404, NULL, NULL, 'IPAY2022/06/5347', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 11, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5349, '2022-06-08 20:08:44', 5405, NULL, NULL, 'IPAY2022/06/5348', NULL, 'cash', '', '', '', '', '', '', '714.8000', NULL, 17, NULL, 'received', '', '714.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 (5350, '2022-06-08 20:27:54', 5406, NULL, NULL, 'IPAY2022/06/5349', NULL, 'cash', '', '', '', '', '', '', '617.9200', NULL, 11, NULL, 'received', '', '617.9200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5351, '2022-06-08 21:19:37', 5407, NULL, NULL, 'IPAY2022/06/5350', NULL, 'cash', '', '', '', '', '', '', '124.1000', NULL, 11, NULL, 'received', '', '124.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 (5352, '2022-06-08 21:34:58', 5408, NULL, NULL, 'IPAY2022/06/5351', NULL, 'cash', '', '', '', '', '', '', '183.5000', NULL, 17, NULL, 'received', '', '183.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5353, '2022-06-08 21:55:13', 5409, NULL, NULL, 'IPAY2022/06/5352', NULL, 'cash', '', '', '', '', '', '', '24.3000', NULL, 11, NULL, 'received', '', '24.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 (5354, '2022-06-09 13:30:58', 5410, NULL, NULL, 'IPAY2022/06/5353', NULL, 'cash', '', '', '', '', '', '', '312.3000', NULL, 16, 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 (5355, '2022-06-09 13:56:03', 5411, NULL, NULL, 'IPAY2022/06/5354', NULL, 'cash', '', '', '', '', '', '', '374.0000', NULL, 21, NULL, 'received', '', '374.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5356, '2022-06-09 14:41:28', 5412, NULL, NULL, 'IPAY2022/06/5355', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 21, 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 (5357, '2022-06-09 15:05:19', 5413, NULL, NULL, 'IPAY2022/06/5356', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 16, 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 (5358, '2022-06-09 17:42:14', 5414, NULL, NULL, 'IPAY2022/06/5357', 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 (5359, '2022-06-09 21:16:30', 5415, NULL, NULL, 'IPAY2022/06/5358', NULL, 'cash', '', '', '', '', '', '', '899.9000', NULL, 17, NULL, 'received', '', '899.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 (5360, '2022-06-09 21:18:08', 5416, NULL, NULL, 'IPAY2022/06/5359', NULL, 'cash', '', '', '', '', '', '', '980.8700', NULL, 11, NULL, 'received', '', '980.8700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5361, '2022-06-09 21:29:27', 5417, NULL, NULL, 'IPAY2022/06/5360', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 17, 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 (5362, '2022-06-09 21:48:26', 5418, NULL, NULL, 'IPAY2022/06/5361', 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 (5363, '2022-06-10 14:50:20', 5419, NULL, NULL, 'IPAY2022/06/5362', NULL, 'cash', '', '', '', '', '', '', '130.5000', NULL, 21, NULL, 'received', '', '130.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5364, '2022-06-10 14:56:43', 5420, NULL, NULL, 'IPAY2022/06/5363', NULL, 'cash', '', '', '', '', '', '', '279.5000', NULL, 16, NULL, 'received', '', '279.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5365, '2022-06-10 16:08:00', 5421, NULL, NULL, 'IPAY2022/06/5364', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 16, 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 (5366, '2022-06-10 20:39:14', 5422, NULL, NULL, 'IPAY2022/06/5365', NULL, 'cash', '', '', '', '', '', '', '608.7000', NULL, 11, NULL, 'received', '', '608.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 (5367, '2022-06-10 21:29:22', 5423, NULL, NULL, 'IPAY2022/06/5366', 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 (5368, '2022-06-10 21:39:49', 5424, NULL, NULL, 'IPAY2022/06/5367', NULL, 'cash', '', '', '', '', '', '', '973.2000', NULL, 17, NULL, 'received', '', '973.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 (5369, '2022-06-10 21:51:46', 5425, NULL, NULL, 'IPAY2022/06/5368', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (5370, '2022-06-11 14:18:17', 5426, NULL, NULL, 'IPAY2022/06/5369', NULL, 'cash', '', '', '', '', '', '', '431.0000', NULL, 21, NULL, 'received', '', '431.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5371, '2022-06-11 14:37:22', 5427, NULL, NULL, 'IPAY2022/06/5370', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 21, 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 (5372, '2022-06-11 17:07:47', 5428, NULL, NULL, 'IPAY2022/06/5371', NULL, 'cash', '', '', '', '', '', '', '231.6000', NULL, 29, NULL, 'received', '', '231.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 (5373, '2022-06-11 18:06:47', 5429, NULL, NULL, 'IPAY2022/06/5372', NULL, 'cash', '', '', '', '', '', '', '101.5000', NULL, 29, NULL, 'received', '', '101.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5374, '2022-06-11 18:10:40', 5430, NULL, NULL, 'IPAY2022/06/5373', NULL, 'cash', '', '', '', '', '', '', '879.9000', NULL, 16, NULL, 'received', '', '879.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 (5375, '2022-06-11 19:14:47', 5431, NULL, NULL, 'IPAY2022/06/5374', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 29, 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 (5376, '2022-06-11 20:01:47', 5432, NULL, NULL, 'IPAY2022/06/5375', NULL, 'cash', '', '', '', '', '', '', '111.0000', NULL, 29, 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 (5377, '2022-06-11 20:35:19', 5433, NULL, NULL, 'IPAY2022/06/5376', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 29, 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 (5378, '2022-06-11 21:08:01', 5434, NULL, NULL, 'IPAY2022/06/5377', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 29, 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 (5379, '2022-06-11 21:29:11', 5435, NULL, NULL, 'IPAY2022/06/5378', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 29, 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 (5380, '2022-06-11 21:35:13', 5436, NULL, NULL, 'IPAY2022/06/5379', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 29, 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 (5381, '2022-06-11 21:37:39', 5437, NULL, NULL, 'IPAY2022/06/5380', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 29, 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 (5382, '2022-06-11 21:39:15', 5438, NULL, NULL, 'IPAY2022/06/5381', NULL, 'cash', '', '', '', '', '', '', '573.0000', NULL, 16, NULL, 'received', '', '573.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5383, '2022-06-11 21:49:51', 5439, NULL, NULL, 'IPAY2022/06/5382', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 29, 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 (5384, '2022-06-12 15:45:00', 5440, NULL, NULL, 'IPAY2022/06/5383', NULL, 'cash', '', '', '', '', '', '', '259.5000', NULL, 29, NULL, 'received', '', '259.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5385, '2022-06-12 15:45:50', 5441, NULL, NULL, 'IPAY2022/06/5384', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 29, 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 (5386, '2022-06-12 15:58:30', 5442, NULL, NULL, 'IPAY2022/06/5385', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 29, 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 (5387, '2022-06-12 16:23:49', 5443, NULL, NULL, 'IPAY2022/06/5386', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (5388, '2022-06-12 16:27:44', 5444, NULL, NULL, 'IPAY2022/06/5387', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 29, 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 (5389, '2022-06-12 17:01:45', 5445, NULL, NULL, 'IPAY2022/06/5388', NULL, 'cash', '', '', '', '', '', '', '485.3000', NULL, 17, NULL, 'received', '', '485.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 (5390, '2022-06-12 17:06:01', 5446, NULL, NULL, 'IPAY2022/06/5389', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (5391, '2022-06-12 20:46:35', 5447, NULL, NULL, 'IPAY2022/06/5390', NULL, 'cash', '', '', '', '', '', '', '492.5000', NULL, 16, NULL, 'received', '', '492.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5392, '2022-06-12 20:54:50', 5448, NULL, NULL, 'IPAY2022/06/5391', NULL, 'cash', '', '', '', '', '', '', '561.7000', NULL, 11, NULL, 'received', '', '561.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 (5393, '2022-06-12 21:43:34', 5449, NULL, NULL, 'IPAY2022/06/5392', NULL, 'cash', '', '', '', '', '', '', '67.5000', NULL, 16, 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 (5394, '2022-06-12 21:53:18', 5450, NULL, NULL, 'IPAY2022/06/5393', NULL, 'cash', '', '', '', '', '', '', '102.8000', NULL, 11, NULL, 'received', '', '102.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 (5395, '2022-06-13 14:29:01', 5451, NULL, NULL, 'IPAY2022/06/5394', NULL, 'cash', '', '', '', '', '', '', '405.2000', NULL, 21, NULL, 'received', '', '405.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 (5396, '2022-06-13 14:54:46', 5452, NULL, NULL, 'IPAY2022/06/5395', NULL, 'cash', '', '', '', '', '', '', '453.9000', NULL, 17, NULL, 'received', '', '453.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 (5397, '2022-06-13 20:43:08', 5453, NULL, NULL, 'IPAY2022/06/5396', NULL, 'cash', '', '', '', '', '', '', '699.9000', NULL, 17, NULL, 'received', '', '699.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 (5398, '2022-06-13 21:40:53', 5454, NULL, NULL, 'IPAY2022/06/5397', NULL, 'cash', '', '', '', '', '', '', '99.0000', NULL, 17, NULL, 'received', '', '99.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5399, '2022-06-13 22:24:38', 5455, NULL, NULL, 'IPAY2022/06/5398', NULL, 'cash', '', '', '', '', '', '', '1335.3000', NULL, 11, NULL, 'received', '', '1335.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 (5400, '2022-06-13 22:27:21', 5456, NULL, NULL, 'IPAY2022/06/5399', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 11, 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 (5401, '2022-06-14 11:43:27', 5457, NULL, NULL, 'IPAY2022/06/5400', NULL, 'cash', '', '', '', '', '', '', '187.5000', NULL, 29, 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 (5402, '2022-06-14 12:50:33', 5458, NULL, NULL, 'IPAY2022/06/5401', NULL, 'cash', '', '', '', '', '', '', '66.4000', NULL, 29, NULL, 'received', '', '66.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 (5403, '2022-06-14 14:08:04', 5459, NULL, NULL, 'IPAY2022/06/5402', NULL, 'cash', '', '', '', '', '', '', '311.0400', NULL, 8, NULL, 'received', '', '311.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 (5404, '2022-06-14 14:19:23', 5460, NULL, NULL, 'IPAY2022/06/5403', NULL, 'cash', '', '', '', '', '', '', '109.0000', NULL, 29, 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 (5405, '2022-06-14 14:22:34', 5461, NULL, NULL, 'IPAY2022/06/5404', NULL, 'cash', '', '', '', '', '', '', '329.3000', NULL, 8, NULL, 'received', '', '329.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 (5406, '2022-06-14 14:33:39', 5462, NULL, NULL, 'IPAY2022/06/5405', NULL, 'cash', '', '', '', '', '', '', '385.5000', NULL, 8, 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 (5407, '2022-06-14 14:37:22', 5463, NULL, NULL, 'IPAY2022/06/5406', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 29, 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 (5408, '2022-06-14 14:39:46', 5464, NULL, NULL, 'IPAY2022/06/5407', NULL, 'cash', '', '', '', '', '', '', '490.7000', NULL, 17, NULL, 'received', '', '490.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 (5409, '2022-06-14 14:43:59', 5465, NULL, NULL, 'IPAY2022/06/5408', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (5410, '2022-06-14 14:50:12', 5466, NULL, NULL, 'IPAY2022/06/5409', NULL, 'cash', '', '', '', '', '', '', '484.5000', NULL, 8, NULL, 'received', '', '484.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5411, '2022-06-14 15:07:48', 5467, NULL, NULL, 'IPAY2022/06/5410', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 17, 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 (5412, '2022-06-14 15:11:40', 5468, NULL, NULL, 'IPAY2022/06/5411', NULL, 'cash', '', '', '', '', '', '', '325.2000', NULL, 8, NULL, 'received', '', '325.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 (5413, '2022-06-14 15:43:41', 5469, NULL, NULL, 'IPAY2022/06/5412', NULL, 'cash', '', '', '', '', '', '', '447.0000', NULL, 8, NULL, 'received', '', '447.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5414, '2022-06-14 19:54:33', 5470, NULL, NULL, 'IPAY2022/06/5413', NULL, 'cash', '', '', '', '', '', '', '666.2000', NULL, 16, NULL, 'received', '', '666.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 (5415, '2022-06-14 20:57:40', 5471, NULL, NULL, 'IPAY2022/06/5414', NULL, 'cash', '', '', '', '', '', '', '630.6000', NULL, 11, NULL, 'received', '', '630.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 (5416, '2022-06-14 21:08:36', 5472, NULL, NULL, 'IPAY2022/06/5415', NULL, 'cash', '', '', '', '', '', '', '130.5000', NULL, 16, NULL, 'received', '', '130.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5417, '2022-06-14 21:43:26', 5473, NULL, NULL, 'IPAY2022/06/5416', NULL, 'cash', '', '', '', '', '', '', '151.5000', NULL, 16, 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 (5418, '2022-06-14 21:45:08', 5474, NULL, NULL, 'IPAY2022/06/5417', NULL, 'cash', '', '', '', '', '', '', '198.0000', NULL, 11, NULL, 'received', '', '198.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5419, '2022-06-15 09:18:41', 5475, NULL, NULL, 'IPAY2022/06/5418', NULL, 'cash', '', '', '', '', '', '', '246.0000', NULL, 8, NULL, 'received', '', '246.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5420, '2022-06-15 09:47:49', 5476, NULL, NULL, 'IPAY2022/06/5419', NULL, 'cash', '', '', '', '', '', '', '331.7000', NULL, 8, NULL, 'received', '', '331.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 (5421, '2022-06-15 10:01:07', 5477, NULL, NULL, 'IPAY2022/06/5420', NULL, 'cash', '', '', '', '', '', '', '415.5000', NULL, 8, NULL, 'received', '', '415.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5422, '2022-06-15 10:30:29', 5478, NULL, NULL, 'IPAY2022/06/5421', 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 (5423, '2022-06-15 10:47:38', 5479, NULL, NULL, 'IPAY2022/06/5422', NULL, 'cash', '', '', '', '', '', '', '310.0000', NULL, 8, NULL, 'received', '', '310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5424, '2022-06-15 11:06:32', 5480, NULL, NULL, 'IPAY2022/06/5423', NULL, 'cash', '', '', '', '', '', '', '461.0000', NULL, 8, NULL, 'received', '', '461.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5425, '2022-06-15 11:27:31', 5481, NULL, NULL, 'IPAY2022/06/5424', NULL, 'cash', '', '', '', '', '', '', '342.5000', NULL, 8, NULL, 'received', '', '342.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5426, '2022-06-15 12:38:36', 5482, NULL, NULL, 'IPAY2022/06/5425', NULL, 'cash', '', '', '', '', '', '', '660.2000', NULL, 8, NULL, 'received', '', '660.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 (5427, '2022-06-15 12:51:38', 5483, NULL, NULL, 'IPAY2022/06/5426', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 8, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5428, '2022-06-15 13:08:28', 5484, NULL, NULL, 'IPAY2022/06/5427', NULL, 'cash', '', '', '', '', '', '', '617.0000', NULL, 8, NULL, 'received', '', '617.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5429, '2022-06-15 13:14:48', 5485, NULL, NULL, 'IPAY2022/06/5428', NULL, 'cash', '', '', '', '', '', '', '89.8000', NULL, 8, NULL, 'received', '', '89.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 (5430, '2022-06-15 13:38:40', 5486, NULL, NULL, 'IPAY2022/06/5429', NULL, 'cash', '', '', '', '', '', '', '567.0000', NULL, 8, NULL, 'received', '', '567.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5431, '2022-06-15 13:58:37', 5487, NULL, NULL, 'IPAY2022/06/5430', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 8, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5432, '2022-06-15 14:06:51', 5488, NULL, NULL, 'IPAY2022/06/5431', NULL, 'cash', '', '', '', '', '', '', '227.7000', NULL, 8, NULL, 'received', '', '227.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 (5433, '2022-06-15 14:11:59', 5489, NULL, NULL, 'IPAY2022/06/5432', NULL, 'cash', '', '', '', '', '', '', '218.2000', NULL, 8, NULL, 'received', '', '218.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 (5434, '2022-06-15 14:18:08', 5490, NULL, NULL, 'IPAY2022/06/5433', NULL, 'cash', '', '', '', '', '', '', '204.5000', NULL, 8, 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 (5435, '2022-06-15 14:26:37', 5491, NULL, NULL, 'IPAY2022/06/5434', NULL, 'cash', '', '', '', '', '', '', '351.5000', NULL, 8, NULL, 'received', '', '351.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5436, '2022-06-15 14:38:02', 5492, NULL, NULL, 'IPAY2022/06/5435', NULL, 'cash', '', '', '', '', '', '', '402.5000', NULL, 17, NULL, 'received', '', '402.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5437, '2022-06-15 14:40:08', 5493, NULL, NULL, 'IPAY2022/06/5436', NULL, 'cash', '', '', '', '', '', '', '741.0000', NULL, 8, NULL, 'received', '', '741.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5438, '2022-06-15 14:40:24', 5494, NULL, NULL, 'IPAY2022/06/5437', NULL, 'cash', '', '', '', '', '', '', '201.5000', NULL, 21, NULL, 'received', '', '201.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5439, '2022-06-15 14:51:39', 5495, NULL, NULL, 'IPAY2022/06/5438', NULL, 'cash', '', '', '', '', '', '', '425.5000', NULL, 8, NULL, 'received', '', '425.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5440, '2022-06-15 14:58:56', 5496, NULL, NULL, 'IPAY2022/06/5439', NULL, 'cash', '', '', '', '', '', '', '305.5000', NULL, 8, NULL, 'received', '', '305.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5441, '2022-06-15 15:06:00', 5497, NULL, NULL, 'IPAY2022/06/5440', NULL, 'cash', '', '', '', '', '', '', '182.0000', NULL, 8, NULL, 'received', '', '182.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5442, '2022-06-15 15:13:06', 5498, NULL, NULL, 'IPAY2022/06/5441', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 17, 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 (5443, '2022-06-15 15:14:24', 5499, NULL, NULL, 'IPAY2022/06/5442', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 21, 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 (5444, '2022-06-15 17:37:52', 5500, NULL, NULL, 'IPAY2022/06/5443', NULL, 'cash', '', '', '', '', '', '', '236.9000', NULL, 29, NULL, 'received', '', '236.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 (5445, '2022-06-15 18:26:46', 5501, NULL, NULL, 'IPAY2022/06/5444', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 29, 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 (5446, '2022-06-15 19:41:56', 5502, NULL, NULL, 'IPAY2022/06/5445', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 29, 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 (5447, '2022-06-15 20:05:44', 5503, NULL, NULL, 'IPAY2022/06/5446', NULL, 'cash', '', '', '', '', '', '', '97.0000', NULL, 29, NULL, 'received', '', '97.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5448, '2022-06-15 20:28:59', 5504, NULL, NULL, 'IPAY2022/06/5447', NULL, 'cash', '', '', '', '', '', '', '650.6000', NULL, 16, NULL, 'received', '', '650.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 (5449, '2022-06-15 20:38:02', 5505, NULL, NULL, 'IPAY2022/06/5448', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 29, 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 (5450, '2022-06-15 21:19:58', 5506, NULL, NULL, 'IPAY2022/06/5449', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 22, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5451, '2022-06-15 21:24:03', 5507, NULL, NULL, 'IPAY2022/06/5450', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (5452, '2022-06-15 21:28:31', 5508, NULL, NULL, 'IPAY2022/06/5451', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (5453, '2022-06-15 21:42:23', 5509, NULL, NULL, 'IPAY2022/06/5452', NULL, 'cash', '', '', '', '', '', '', '168.7000', NULL, 16, NULL, 'received', '', '168.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 (5454, '2022-06-15 21:43:56', 5510, NULL, NULL, 'IPAY2022/06/5453', NULL, 'cash', '', '', '', '', '', '', '346.0000', NULL, 22, NULL, 'received', '', '346.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5455, '2022-06-15 21:44:36', 5511, NULL, NULL, 'IPAY2022/06/5454', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 22, 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 (5456, '2022-06-15 21:45:17', 5512, NULL, NULL, 'IPAY2022/06/5455', NULL, 'cash', '', '', '', '', '', '', '224.0000', NULL, 29, 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 (5457, '2022-06-16 15:21:30', 5513, NULL, NULL, 'IPAY2022/06/5456', NULL, 'cash', '', '', '', '', '', '', '290.5000', NULL, 17, 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 (5458, '2022-06-16 20:50:45', 5514, NULL, NULL, 'IPAY2022/06/5457', NULL, 'cash', '', '', '', '', '', '', '426.9000', NULL, 16, NULL, 'received', '', '426.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 (5459, '2022-06-16 21:15:06', 5515, NULL, NULL, 'IPAY2022/06/5458', NULL, 'cash', '', '', '', '', '', '', '373.6000', NULL, 11, NULL, 'received', '', '373.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 (5460, '2022-06-16 21:19:57', 5516, NULL, NULL, 'IPAY2022/06/5459', NULL, 'cash', '', '', '', '', '', '', '299.5000', NULL, 22, NULL, 'received', '', '299.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5461, '2022-06-16 21:34:13', 5517, NULL, NULL, 'IPAY2022/06/5460', NULL, 'cash', '', '', '', '', '', '', '496.7000', NULL, 22, NULL, 'received', '', '496.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 (5462, '2022-06-16 21:39:14', 5518, NULL, NULL, 'IPAY2022/06/5461', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 16, 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 (5463, '2022-06-16 21:47:59', 5519, NULL, NULL, 'IPAY2022/06/5462', NULL, 'cash', '', '', '', '', '', '', '354.5000', NULL, 22, NULL, 'received', '', '354.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5464, '2022-06-16 21:52:25', 5520, NULL, NULL, 'IPAY2022/06/5463', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 11, 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 (5465, '2022-06-17 13:06:53', 5521, NULL, NULL, 'IPAY2022/06/5464', NULL, 'cash', '', '', '', '', '', '', '105.7000', NULL, 28, NULL, 'received', '', '105.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 (5466, '2022-06-17 14:56:01', 5522, NULL, NULL, 'IPAY2022/06/5465', NULL, 'cash', '', '', '', '', '', '', '293.5000', NULL, 21, NULL, 'received', '', '293.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5467, '2022-06-17 15:05:04', 5523, NULL, NULL, 'IPAY2022/06/5466', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 28, 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 (5468, '2022-06-17 15:19:40', 5524, NULL, NULL, 'IPAY2022/06/5467', NULL, 'cash', '', '', '', '', '', '', '527.2000', NULL, 17, NULL, 'received', '', '527.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 (5469, '2022-06-17 19:11:31', 5525, NULL, NULL, 'IPAY2022/06/5468', NULL, 'cash', '', '', '', '', '', '', '613.0000', NULL, 16, NULL, 'received', '', '613.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5470, '2022-06-17 19:34:08', 5526, NULL, NULL, 'IPAY2022/06/5469', NULL, 'cash', '', '', '', '', '', '', '552.6000', NULL, 11, NULL, 'received', '', '552.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 (5471, '2022-06-17 20:53:08', 5527, NULL, NULL, 'IPAY2022/06/5470', NULL, 'cash', '', '', '', '', '', '', '339.9000', NULL, 16, NULL, 'received', '', '339.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 (5472, '2022-06-17 21:33:49', 5528, NULL, NULL, 'IPAY2022/06/5471', NULL, 'cash', '', '', '', '', '', '', '287.7000', NULL, 22, NULL, 'received', '', '287.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 (5473, '2022-06-17 21:35:28', 5529, NULL, NULL, 'IPAY2022/06/5472', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 16, 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 (5474, '2022-06-17 21:45:21', 5530, NULL, NULL, 'IPAY2022/06/5473', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 22, 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 (5475, '2022-06-17 21:54:28', 5531, NULL, NULL, 'IPAY2022/06/5474', NULL, 'cash', '', '', '', '', '', '', '146.5000', NULL, 11, NULL, 'received', '', '146.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5476, '2022-06-18 14:03:08', 5532, NULL, NULL, 'IPAY2022/06/5475', NULL, 'cash', '', '', '', '', '', '', '413.3000', NULL, 21, NULL, 'received', '', '413.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 (5477, '2022-06-18 15:10:48', 5533, NULL, NULL, 'IPAY2022/06/5476', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 21, 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 (5478, '2022-06-18 16:11:51', 5534, NULL, NULL, 'IPAY2022/06/5477', NULL, 'cash', '', '', '', '', '', '', '409.9000', NULL, 8, NULL, 'received', '', '409.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 (5479, '2022-06-18 17:14:20', 5535, NULL, NULL, 'IPAY2022/06/5478', NULL, 'cash', '', '', '', '', '', '', '829.8000', NULL, 16, NULL, 'received', '', '829.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 (5480, '2022-06-18 19:31:49', 5536, NULL, NULL, 'IPAY2022/06/5479', NULL, 'cash', '', '', '', '', '', '', '244.5000', NULL, 8, NULL, 'received', '', '244.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5481, '2022-06-18 20:22:58', 5537, NULL, NULL, 'IPAY2022/06/5480', NULL, 'cash', '', '', '', '', '', '', '852.4000', NULL, 11, NULL, 'received', '', '852.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 (5482, '2022-06-18 20:32:10', 5538, NULL, NULL, 'IPAY2022/06/5481', NULL, 'cash', '', '', '', '', '', '', '184.5000', NULL, 16, NULL, 'received', '', '184.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5483, '2022-06-18 21:38:02', 5539, NULL, NULL, 'IPAY2022/06/5482', NULL, 'cash', '', '', '', '', '', '', '63.7000', NULL, 16, NULL, 'received', '', '63.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 (5484, '2022-06-18 21:41:41', 5540, NULL, NULL, 'IPAY2022/06/5483', NULL, 'cash', '', '', '', '', '', '', '157.0000', NULL, 8, NULL, 'received', '', '157.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5485, '2022-06-18 21:45:20', 5541, NULL, NULL, 'IPAY2022/06/5484', NULL, 'cash', '', '', '', '', '', '', '87.5000', NULL, 16, 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 (5486, '2022-06-18 21:48:18', 5542, NULL, NULL, 'IPAY2022/06/5485', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 11, 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 (5487, '2022-06-19 16:05:12', 5543, NULL, NULL, 'IPAY2022/06/5486', NULL, 'cash', '', '', '', '', '', '', '257.0000', NULL, 16, NULL, 'received', '', '257.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5488, '2022-06-19 16:55:33', 5544, NULL, NULL, 'IPAY2022/06/5487', NULL, 'cash', '', '', '', '', '', '', '285.5000', NULL, 11, NULL, 'received', '', '285.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5489, '2022-06-19 17:12:38', 5545, NULL, NULL, 'IPAY2022/06/5488', NULL, 'cash', '', '', '', '', '', '', '108.5000', NULL, 16, 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 (5490, '2022-06-19 19:09:36', 5546, NULL, NULL, 'IPAY2022/06/5489', NULL, 'cash', '', '', '', '', '', '', '456.2000', NULL, 29, NULL, 'received', '', '456.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 (5491, '2022-06-19 19:37:32', 5547, NULL, NULL, 'IPAY2022/06/5490', NULL, 'cash', '', '', '', '', '', '', '138.5000', NULL, 29, NULL, 'received', '', '138.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5492, '2022-06-19 21:12:46', 5548, NULL, NULL, 'IPAY2022/06/5491', NULL, 'cash', '', '', '', '', '', '', '232.3000', NULL, 22, NULL, 'received', '', '232.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 (5493, '2022-06-19 21:45:43', 5549, NULL, NULL, 'IPAY2022/06/5492', NULL, 'cash', '', '', '', '', '', '', '552.8000', NULL, 17, NULL, 'received', '', '552.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 (5494, '2022-06-19 21:58:27', 5550, NULL, NULL, 'IPAY2022/06/5493', NULL, 'cash', '', '', '', '', '', '', '418.6000', NULL, 29, NULL, 'received', '', '418.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 (5495, '2022-06-19 21:58:59', 5551, NULL, NULL, 'IPAY2022/06/5494', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 29, 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 (5496, '2022-06-19 22:05:54', 5552, NULL, NULL, 'IPAY2022/06/5495', NULL, 'cash', '', '', '', '', '', '', '362.3000', NULL, 22, NULL, 'received', '', '362.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 (5497, '2022-06-20 14:25:33', 5553, NULL, NULL, 'IPAY2022/06/5496', NULL, 'cash', '', '', '', '', '', '', '313.2000', NULL, 21, NULL, 'received', '', '313.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 (5498, '2022-06-20 14:53:42', 5554, NULL, NULL, 'IPAY2022/06/5497', NULL, 'cash', '', '', '', '', '', '', '423.5000', NULL, 17, NULL, 'received', '', '423.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5499, '2022-06-20 15:01:42', 5555, NULL, NULL, 'IPAY2022/06/5498', NULL, 'cash', '', '', '', '', '', '', '34.5000', NULL, 21, NULL, 'received', '', '34.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5500, '2022-06-20 15:42:20', 5556, NULL, NULL, 'IPAY2022/06/5499', NULL, 'cash', '', '', '', '', '', '', '89.6000', NULL, 8, NULL, 'received', '', '89.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 (5501, '2022-06-20 18:18:11', 5557, NULL, NULL, 'IPAY2022/06/5500', 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 (5502, '2022-06-20 19:42:23', 5558, NULL, NULL, 'IPAY2022/06/5501', NULL, 'cash', '', '', '', '', '', '', '252.0000', NULL, 28, NULL, 'received', '', '252.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5503, '2022-06-20 20:01:39', 5559, NULL, NULL, 'IPAY2022/06/5502', NULL, 'cash', '', '', '', '', '', '', '470.7000', NULL, 11, NULL, 'received', '', '470.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 (5504, '2022-06-20 21:04:26', 5560, NULL, NULL, 'IPAY2022/06/5503', NULL, 'cash', '', '', '', '', '', '', '92.5000', NULL, 28, 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 (5505, '2022-06-20 21:34:20', 5561, NULL, NULL, 'IPAY2022/06/5504', NULL, 'cash', '', '', '', '', '', '', '176.9000', NULL, 11, NULL, 'received', '', '176.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 (5506, '2022-06-20 21:36:08', 5562, NULL, NULL, 'IPAY2022/06/5505', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 28, 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 (5507, '2022-06-20 21:38:24', 5563, NULL, NULL, 'IPAY2022/06/5506', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 28, 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 (5508, '2022-06-20 21:41:30', 5564, NULL, NULL, 'IPAY2022/06/5507', NULL, 'cash', '', '', '', '', '', '', '423.5000', NULL, 17, NULL, 'received', '', '423.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5509, '2022-06-20 21:44:24', 5565, NULL, NULL, 'IPAY2022/06/5508', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 28, 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 (5510, '2022-06-20 21:53:07', 5566, NULL, NULL, 'IPAY2022/06/5509', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 17, 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 (5511, '2022-06-20 22:04:33', 5567, NULL, NULL, 'IPAY2022/06/5510', NULL, 'cash', '', '', '', '', '', '', '5.4000', NULL, 11, NULL, 'received', '', '5.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 (5512, '2022-06-21 14:38:48', 5568, NULL, NULL, 'IPAY2022/06/5511', NULL, 'cash', '', '', '', '', '', '', '348.0000', NULL, 8, NULL, 'received', '', '348.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5513, '2022-06-21 14:50:54', 5569, NULL, NULL, 'IPAY2022/06/5512', NULL, 'cash', '', '', '', '', '', '', '328.5300', NULL, 16, NULL, 'received', '', '328.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5514, '2022-06-21 14:55:17', 5570, NULL, NULL, 'IPAY2022/06/5513', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 16, 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 (5515, '2022-06-21 15:01:17', 5571, NULL, NULL, 'IPAY2022/06/5514', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 8, 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 (5516, '2022-06-21 15:09:29', 5572, NULL, NULL, 'IPAY2022/06/5515', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 16, 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 (5517, '2022-06-21 15:10:23', 5573, NULL, NULL, 'IPAY2022/06/5516', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 16, 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 (5518, '2022-06-21 15:12:53', 5574, NULL, NULL, 'IPAY2022/06/5517', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 16, 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 (5519, '2022-06-21 20:28:16', 5575, NULL, NULL, 'IPAY2022/06/5518', NULL, 'cash', '', '', '', '', '', '', '505.0000', NULL, 11, NULL, 'received', '', '505.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5520, '2022-06-21 21:08:16', 5576, NULL, NULL, 'IPAY2022/06/5519', NULL, 'cash', '', '', '', '', '', '', '295.4000', NULL, 22, NULL, 'received', '', '295.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 (5521, '2022-06-21 21:22:48', 5577, NULL, NULL, 'IPAY2022/06/5520', NULL, 'cash', '', '', '', '', '', '', '116.5000', NULL, 22, 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 (5522, '2022-06-21 21:35:47', 5578, NULL, NULL, 'IPAY2022/06/5521', NULL, 'cash', '', '', '', '', '', '', '645.8000', NULL, 17, NULL, 'received', '', '645.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 (5523, '2022-06-21 21:44:15', 5579, NULL, NULL, 'IPAY2022/06/5522', 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 (5524, '2022-06-21 21:53:03', 5580, NULL, NULL, 'IPAY2022/06/5523', 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 (5525, '2022-06-22 14:16:47', 5581, NULL, NULL, 'IPAY2022/06/5524', NULL, 'cash', '', '', '', '', '', '', '201.4000', NULL, 16, NULL, 'received', '', '201.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 (5526, '2022-06-22 14:22:18', 5582, NULL, NULL, 'IPAY2022/06/5525', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 16, 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 (5527, '2022-06-22 14:41:21', 5583, NULL, NULL, 'IPAY2022/06/5526', NULL, 'cash', '', '', '', '', '', '', '304.7000', NULL, 21, NULL, 'received', '', '304.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 (5528, '2022-06-22 14:45:49', 5584, NULL, NULL, 'IPAY2022/06/5527', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 16, 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 (5529, '2022-06-22 15:02:00', 5585, NULL, NULL, 'IPAY2022/06/5528', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 21, 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 (5530, '2022-06-22 15:05:15', 5586, NULL, NULL, 'IPAY2022/06/5529', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 16, 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 (5531, '2022-06-22 15:08:33', 5587, NULL, NULL, 'IPAY2022/06/5530', NULL, 'cash', '', '', '', '', '', '', '144.5000', NULL, 8, NULL, 'received', '', '144.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5532, '2022-06-22 17:37:41', 5588, NULL, NULL, 'IPAY2022/06/5531', NULL, 'cash', '', '', '', '', '', '', '327.3600', NULL, 29, NULL, 'received', '', '327.3600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5533, '2022-06-22 19:38:11', 5589, NULL, NULL, 'IPAY2022/06/5532', NULL, 'cash', '', '', '', '', '', '', '368.5000', NULL, 29, NULL, 'received', '', '368.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5534, '2022-06-22 20:46:44', 5590, NULL, NULL, 'IPAY2022/06/5533', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 29, 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 (5535, '2022-06-22 21:32:24', 5591, NULL, NULL, 'IPAY2022/06/5534', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (5536, '2022-06-22 21:35:51', 5592, NULL, NULL, 'IPAY2022/06/5535', NULL, 'cash', '', '', '', '', '', '', '873.7000', NULL, 17, NULL, 'received', '', '873.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 (5537, '2022-06-22 21:37:13', 5593, NULL, NULL, 'IPAY2022/06/5536', NULL, 'cash', '', '', '', '', '', '', '435.4000', NULL, 22, NULL, 'received', '', '435.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 (5538, '2022-06-22 21:38:02', 5594, NULL, NULL, 'IPAY2022/06/5537', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 22, 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 (5539, '2022-06-22 21:40:11', 5595, NULL, NULL, 'IPAY2022/06/5538', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 29, 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 (5540, '2022-06-22 21:43:20', 5596, NULL, NULL, 'IPAY2022/06/5539', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (5541, '2022-06-22 21:44:17', 5597, NULL, NULL, 'IPAY2022/06/5540', NULL, 'cash', '', '', '', '', '', '', '1.8000', NULL, 29, NULL, 'received', '', '1.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 (5542, '2022-06-22 21:46:23', 5598, NULL, NULL, 'IPAY2022/06/5541', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (5543, '2022-06-23 13:26:59', 5599, NULL, NULL, 'IPAY2022/06/5542', NULL, 'cash', '', '', '', '', '', '', '391.7000', NULL, 21, NULL, 'received', '', '391.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 (5544, '2022-06-23 14:14:25', 5600, NULL, NULL, 'IPAY2022/06/5543', NULL, 'cash', '', '', '', '', '', '', '270.6000', NULL, 16, NULL, 'received', '', '270.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 (5545, '2022-06-23 14:48:17', 5601, NULL, NULL, 'IPAY2022/06/5544', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 21, 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 (5546, '2022-06-23 14:54:44', 5602, NULL, NULL, 'IPAY2022/06/5545', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 16, 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 (5547, '2022-06-23 15:27:06', 5603, NULL, NULL, 'IPAY2022/06/5546', 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 (5548, '2022-06-23 20:01:24', 5604, NULL, NULL, 'IPAY2022/06/5547', NULL, 'cash', '', '', '', '', '', '', '325.6000', NULL, 11, NULL, 'received', '', '325.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 (5549, '2022-06-23 21:41:46', 5605, NULL, NULL, 'IPAY2022/06/5548', NULL, 'cash', '', '', '', '', '', '', '338.0000', NULL, 22, NULL, 'received', '', '338.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5550, '2022-06-23 21:43:18', 5606, NULL, NULL, 'IPAY2022/06/5549', NULL, 'cash', '', '', '', '', '', '', '691.2500', NULL, 17, NULL, 'received', '', '691.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 (5551, '2022-06-23 21:49:53', 5607, NULL, NULL, 'IPAY2022/06/5550', NULL, 'cash', '', '', '', '', '', '', '143.5000', NULL, 11, NULL, 'received', '', '143.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5552, '2022-06-23 21:55:43', 5608, NULL, NULL, 'IPAY2022/06/5551', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 11, 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 (5553, '2022-06-24 12:03:56', 5609, NULL, NULL, 'IPAY2022/06/5552', NULL, 'cash', '', '', '', '', '', '', '287.5000', NULL, 28, 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 (5554, '2022-06-24 13:43:34', 5610, NULL, NULL, 'IPAY2022/06/5553', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 28, 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 (5555, '2022-06-24 14:16:10', 5611, NULL, NULL, 'IPAY2022/06/5554', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 28, 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 (5556, '2022-06-24 14:22:55', 5612, NULL, NULL, 'IPAY2022/06/5555', NULL, 'cash', '', '', '', '', '', '', '214.5000', NULL, 21, NULL, 'received', '', '214.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5557, '2022-06-24 14:24:13', 5613, NULL, NULL, 'IPAY2022/06/5556', NULL, 'cash', '', '', '', '', '', '', '170.6000', NULL, 16, NULL, 'received', '', '170.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 (5558, '2022-06-24 14:43:48', 5614, NULL, NULL, 'IPAY2022/06/5557', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 28, 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 (5559, '2022-06-24 15:01:19', 5615, NULL, NULL, 'IPAY2022/06/5558', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 16, 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 (5560, '2022-06-24 19:40:14', 5616, NULL, NULL, 'IPAY2022/06/5559', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 22, 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 (5561, '2022-06-24 21:09:24', 5617, NULL, NULL, 'IPAY2022/06/5560', NULL, 'cash', '', '', '', '', '', '', '486.0000', NULL, 22, NULL, 'received', '', '486.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5562, '2022-06-24 21:29:56', 5618, NULL, NULL, 'IPAY2022/06/5561', NULL, 'cash', '', '', '', '', '', '', '722.5000', NULL, 11, NULL, 'received', '', '722.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5563, '2022-06-24 21:31:16', 5619, NULL, NULL, 'IPAY2022/06/5562', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 22, 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 (5564, '2022-06-24 21:36:03', 5620, NULL, NULL, 'IPAY2022/06/5563', NULL, 'cash', '', '', '', '', '', '', '383.7000', NULL, 17, NULL, 'received', '', '383.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 (5565, '2022-06-25 15:52:00', 5621, NULL, NULL, 'IPAY2022/06/5564', NULL, 'cash', '', '', '', '', '', '', '379.8800', NULL, 8, NULL, 'received', '', '379.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 (5566, '2022-06-25 17:46:51', 5622, NULL, NULL, 'IPAY2022/06/5565', NULL, 'cash', '', '', '', '', '', '', '397.0000', NULL, 11, NULL, 'received', '', '397.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5567, '2022-06-25 17:55:49', 5623, NULL, NULL, 'IPAY2022/06/5566', NULL, 'cash', '', '', '', '', '', '', '330.9000', NULL, 11, NULL, 'received', '', '330.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 (5568, '2022-06-25 19:07:28', 5624, NULL, NULL, 'IPAY2022/06/5567', NULL, 'cash', '', '', '', '', '', '', '450.4000', NULL, 16, NULL, 'received', '', '450.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 (5569, '2022-06-25 20:16:11', 5625, NULL, NULL, 'IPAY2022/06/5568', NULL, 'cash', '', '', '', '', '', '', '372.2000', NULL, 11, NULL, 'received', '', '372.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 (5570, '2022-06-25 20:28:39', 5626, NULL, NULL, 'IPAY2022/06/5569', NULL, 'cash', '', '', '', '', '', '', '533.0000', NULL, 8, NULL, 'received', '', '533.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5571, '2022-06-25 20:36:21', 5627, NULL, NULL, 'IPAY2022/06/5570', 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 (5572, '2022-06-25 20:58:27', 5628, NULL, NULL, 'IPAY2022/06/5571', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 8, 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 (5573, '2022-06-25 21:04:13', 5629, NULL, NULL, 'IPAY2022/06/5572', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 8, 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 (5574, '2022-06-25 21:04:54', 5630, NULL, NULL, 'IPAY2022/06/5573', NULL, 'cash', '', '', '', '', '', '', '346.6000', NULL, 16, NULL, 'received', '', '346.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 (5575, '2022-06-25 21:16:32', 5631, NULL, NULL, 'IPAY2022/06/5574', NULL, 'cash', '', '', '', '', '', '', '88.6000', NULL, 11, NULL, 'received', '', '88.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 (5576, '2022-06-25 21:28:39', 5632, NULL, NULL, 'IPAY2022/06/5575', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 8, 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 (5577, '2022-06-25 21:38:01', 5633, NULL, NULL, 'IPAY2022/06/5576', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 16, 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 (5578, '2022-06-25 21:40:36', 5634, NULL, NULL, 'IPAY2022/06/5577', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 8, 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 (5579, '2022-06-25 21:46:08', 5635, NULL, NULL, 'IPAY2022/06/5578', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 8, 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 (5580, '2022-06-25 22:02:16', 5636, NULL, NULL, 'IPAY2022/06/5579', NULL, 'cash', '', '', '', '', '', '', '95.0000', NULL, 11, NULL, 'received', '', '95.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5581, '2022-06-26 16:29:58', 5637, NULL, NULL, 'IPAY2022/06/5580', NULL, 'cash', '', '', '', '', '', '', '454.5000', NULL, 29, NULL, 'received', '', '454.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5582, '2022-06-26 16:42:23', 5638, NULL, NULL, 'IPAY2022/06/5581', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 29, 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 (5583, '2022-06-26 16:51:43', 5639, NULL, NULL, 'IPAY2022/06/5582', NULL, 'cash', '', '', '', '', '', '', '42.1000', NULL, 29, NULL, 'received', '', '42.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 (5584, '2022-06-26 16:57:34', 5640, NULL, NULL, 'IPAY2022/06/5583', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 29, 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 (5585, '2022-06-26 17:16:27', 5641, NULL, NULL, 'IPAY2022/06/5584', NULL, 'cash', '', '', '', '', '', '', '428.1000', NULL, 17, NULL, 'received', '', '428.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 (5586, '2022-06-26 20:22:57', 5642, NULL, NULL, 'IPAY2022/06/5585', NULL, 'cash', '', '', '', '', '', '', '577.5300', NULL, 11, NULL, 'received', '', '577.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5587, '2022-06-26 20:38:44', 5643, NULL, NULL, 'IPAY2022/06/5586', NULL, 'cash', '', '', '', '', '', '', '565.0000', NULL, 16, NULL, 'received', '', '565.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5588, '2022-06-26 21:15:19', 5644, NULL, NULL, 'IPAY2022/06/5587', NULL, 'cash', '', '', '', '', '', '', '212.0000', NULL, 16, NULL, 'received', '', '212.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5589, '2022-06-26 21:22:14', 5645, NULL, NULL, 'IPAY2022/06/5588', NULL, 'cash', '', '', '', '', '', '', '156.4000', NULL, 22, NULL, 'received', '', '156.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 (5590, '2022-06-26 21:26:57', 5646, NULL, NULL, 'IPAY2022/06/5589', NULL, 'cash', '', '', '', '', '', '', '213.9000', NULL, 22, NULL, 'received', '', '213.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 (5591, '2022-06-26 21:42:20', 5647, NULL, NULL, 'IPAY2022/06/5590', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 22, 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 (5592, '2022-06-26 21:44:15', 5648, NULL, NULL, 'IPAY2022/06/5591', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 16, 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 (5593, '2022-06-26 21:52:43', 5649, NULL, NULL, 'IPAY2022/06/5592', NULL, 'cash', '', '', '', '', '', '', '164.6000', NULL, 11, NULL, 'received', '', '164.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 (5594, '2022-06-27 13:22:49', 5650, NULL, NULL, 'IPAY2022/06/5593', NULL, 'cash', '', '', '', '', '', '', '369.6000', NULL, 21, NULL, 'received', '', '369.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 (5595, '2022-06-27 14:39:02', 5651, NULL, NULL, 'IPAY2022/06/5594', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 21, 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 (5596, '2022-06-27 14:54:48', 5652, NULL, NULL, 'IPAY2022/06/5595', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 21, 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 (5597, '2022-06-27 15:06:22', 5653, NULL, NULL, 'IPAY2022/06/5596', NULL, 'cash', '', '', '', '', '', '', '384.0000', NULL, 17, NULL, 'received', '', '384.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5598, '2022-06-27 15:18:05', 5654, NULL, NULL, 'IPAY2022/06/5597', NULL, 'cash', '', '', '', '', '', '', '475.7700', NULL, 8, NULL, 'received', '', '475.7700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5599, '2022-06-27 19:14:54', 5655, NULL, NULL, 'IPAY2022/06/5598', NULL, 'cash', '', '', '', '', '', '', '450.5000', NULL, 28, NULL, 'received', '', '450.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5600, '2022-06-27 19:29:25', 5656, NULL, NULL, 'IPAY2022/06/5599', NULL, 'cash', '', '', '', '', '', '', '72.5000', NULL, 28, 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 (5601, '2022-06-27 19:52:36', 5657, NULL, NULL, 'IPAY2022/06/5600', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 28, 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 (5602, '2022-06-27 19:52:39', 5658, NULL, NULL, 'IPAY2022/06/5601', NULL, 'cash', '', '', '', '', '', '', '587.2000', NULL, 11, NULL, 'received', '', '587.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 (5603, '2022-06-27 20:37:06', 5659, NULL, NULL, 'IPAY2022/06/5602', NULL, 'cash', '', '', '', '', '', '', '146.0000', NULL, 11, NULL, 'received', '', '146.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5604, '2022-06-27 21:00:07', 5660, NULL, NULL, 'IPAY2022/06/5603', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 11, 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 (5605, '2022-06-27 21:08:22', 5661, NULL, NULL, 'IPAY2022/06/5604', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 28, 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 (5606, '2022-06-27 21:12:37', 5662, NULL, NULL, 'IPAY2022/06/5605', NULL, 'cash', '', '', '', '', '', '', '444.6000', NULL, 17, NULL, 'received', '', '444.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 (5607, '2022-06-27 21:16:04', 5663, NULL, NULL, 'IPAY2022/06/5606', NULL, 'cash', '', '', '', '', '', '', '104.5000', NULL, 17, 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 (5608, '2022-06-27 21:35:37', 5664, NULL, NULL, 'IPAY2022/06/5607', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 28, 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 (5609, '2022-06-27 21:40:25', 5665, NULL, NULL, 'IPAY2022/06/5608', NULL, 'cash', '', '', '', '', '', '', '31.7000', NULL, 28, NULL, 'received', '', '31.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 (5610, '2022-06-27 21:49:53', 5666, NULL, NULL, 'IPAY2022/06/5609', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 17, 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 (5611, '2022-06-27 22:02:20', 5667, NULL, NULL, 'IPAY2022/06/5610', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 11, 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 (5612, '2022-06-28 09:21:56', 5668, NULL, NULL, 'IPAY2022/06/5611', NULL, 'cash', '', '', '', '', '', '', '92.2000', NULL, 29, NULL, 'received', '', '92.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 (5613, '2022-06-28 10:45:23', 5669, NULL, NULL, 'IPAY2022/06/5612', NULL, 'cash', '', '', '', '', '', '', '121.5000', NULL, 29, NULL, 'received', '', '121.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5614, '2022-06-28 12:04:43', 5670, NULL, NULL, 'IPAY2022/06/5613', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 29, 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 (5615, '2022-06-28 14:06:42', 5671, NULL, NULL, 'IPAY2022/06/5614', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 29, 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 (5616, '2022-06-28 14:12:45', 5672, NULL, NULL, 'IPAY2022/06/5615', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 29, 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 (5617, '2022-06-28 14:24:03', 5673, NULL, NULL, 'IPAY2022/06/5616', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (5618, '2022-06-28 14:27:25', 5674, NULL, NULL, 'IPAY2022/06/5617', NULL, 'cash', '', '', '', '', '', '', '264.5000', NULL, 8, NULL, 'received', '', '264.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5619, '2022-06-28 14:29:24', 5675, NULL, NULL, 'IPAY2022/06/5618', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 29, 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 (5620, '2022-06-28 14:35:31', 5676, NULL, NULL, 'IPAY2022/06/5619', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 29, 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 (5621, '2022-06-28 14:47:11', 5677, NULL, NULL, 'IPAY2022/06/5620', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (5622, '2022-06-28 14:47:51', 5678, NULL, NULL, 'IPAY2022/06/5621', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 29, 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 (5623, '2022-06-28 15:08:23', 5679, NULL, NULL, 'IPAY2022/06/5622', NULL, 'cash', '', '', '', '', '', '', '406.5000', NULL, 17, NULL, 'received', '', '406.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5624, '2022-06-28 20:22:24', 5680, NULL, NULL, 'IPAY2022/06/5623', NULL, 'cash', '', '', '', '', '', '', '742.8000', NULL, 11, NULL, 'received', '', '742.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 (5625, '2022-06-28 20:54:59', 5681, NULL, NULL, 'IPAY2022/06/5624', NULL, 'cash', '', '', '', '', '', '', '769.1000', NULL, 16, NULL, 'received', '', '769.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 (5626, '2022-06-28 21:38:36', 5682, NULL, NULL, 'IPAY2022/06/5625', NULL, 'cash', '', '', '', '', '', '', '221.0000', NULL, 16, 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 (5627, '2022-06-28 21:50:47', 5683, NULL, NULL, 'IPAY2022/06/5626', NULL, 'cash', '', '', '', '', '', '', '447.6400', NULL, 22, NULL, 'received', '', '447.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5628, '2022-06-28 21:52:12', 5684, NULL, NULL, 'IPAY2022/06/5627', NULL, 'cash', '', '', '', '', '', '', '154.5000', NULL, 11, 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 (5629, '2022-06-29 14:54:18', 5685, NULL, NULL, 'IPAY2022/06/5628', NULL, 'cash', '', '', '', '', '', '', '254.4000', NULL, 17, NULL, 'received', '', '254.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 (5630, '2022-06-29 15:21:30', 5686, NULL, NULL, 'IPAY2022/06/5629', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 17, 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 (5631, '2022-06-29 15:40:41', 5687, NULL, NULL, 'IPAY2022/06/5630', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 17, 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 (5632, '2022-06-29 17:48:08', 5688, NULL, NULL, 'IPAY2022/06/5631', NULL, 'cash', '', '', '', '', '', '', '328.0000', NULL, 29, NULL, 'received', '', '328.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5633, '2022-06-29 19:09:04', 5689, NULL, NULL, 'IPAY2022/06/5632', NULL, 'cash', '', '', '', '', '', '', '141.5000', NULL, 29, NULL, 'received', '', '141.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5634, '2022-06-29 19:16:04', 5690, NULL, NULL, 'IPAY2022/06/5633', NULL, 'cash', '', '', '', '', '', '', '114.0000', NULL, 29, 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 (5635, '2022-06-29 19:39:59', 5691, NULL, NULL, 'IPAY2022/06/5634', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 29, 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 (5636, '2022-06-29 20:15:07', 5692, NULL, NULL, 'IPAY2022/06/5635', NULL, 'cash', '', '', '', '', '', '', '205.5000', NULL, 29, NULL, 'received', '', '205.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5637, '2022-06-29 20:19:59', 5693, NULL, NULL, 'IPAY2022/06/5636', NULL, 'cash', '', '', '', '', '', '', '765.4000', NULL, 16, NULL, 'received', '', '765.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 (5638, '2022-06-29 20:29:35', 5694, NULL, NULL, 'IPAY2022/06/5637', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 22, 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 (5639, '2022-06-29 20:39:47', 5695, NULL, NULL, 'IPAY2022/06/5638', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 29, 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 (5640, '2022-06-29 21:17:19', 5696, NULL, NULL, 'IPAY2022/06/5639', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 29, 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 (5641, '2022-06-29 21:26:21', 5697, NULL, NULL, 'IPAY2022/06/5640', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 16, 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 (5642, '2022-06-29 21:33:53', 5698, NULL, NULL, 'IPAY2022/06/5641', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 29, 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 (5643, '2022-06-29 21:46:50', 5699, NULL, NULL, 'IPAY2022/06/5642', NULL, 'cash', '', '', '', '', '', '', '228.7000', NULL, 22, NULL, 'received', '', '228.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 (5644, '2022-06-29 21:58:47', 5700, NULL, NULL, 'IPAY2022/06/5643', NULL, 'cash', '', '', '', '', '', '', '287.7700', NULL, 22, NULL, 'received', '', '287.7700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5645, '2022-06-30 14:24:15', 5701, NULL, NULL, 'IPAY2022/06/5644', NULL, 'cash', '', '', '', '', '', '', '256.6000', NULL, 21, NULL, 'received', '', '256.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 (5646, '2022-06-30 14:28:38', 5702, NULL, NULL, 'IPAY2022/06/5645', NULL, 'cash', '', '', '', '', '', '', '256.6000', NULL, 21, NULL, 'received', '', '256.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 (5647, '2022-06-30 14:44:17', 5703, NULL, NULL, 'IPAY2022/06/5646', NULL, 'cash', '', '', '', '', '', '', '275.8000', NULL, 17, NULL, 'received', '', '275.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 (5648, '2022-06-30 15:28:59', 5704, NULL, NULL, 'IPAY2022/06/5647', NULL, 'cash', '', '', '', '', '', '', '244.8000', NULL, 8, NULL, 'received', '', '244.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 (5649, '2022-06-30 20:29:54', 5705, NULL, NULL, 'IPAY2022/06/5648', NULL, 'cash', '', '', '', '', '', '', '511.9000', NULL, 11, NULL, 'received', '', '511.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 (5650, '2022-06-30 21:16:16', 5706, NULL, NULL, 'IPAY2022/06/5649', NULL, 'cash', '', '', '', '', '', '', '799.3000', NULL, 16, NULL, 'received', '', '799.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 (5651, '2022-06-30 21:30:45', 5707, NULL, NULL, 'IPAY2022/06/5650', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 11, 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 (5652, '2022-06-30 21:40:26', 5708, NULL, NULL, 'IPAY2022/06/5651', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 16, 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 (5653, '2022-06-30 21:42:47', 5709, NULL, NULL, 'IPAY2022/06/5652', NULL, 'cash', '', '', '', '', '', '', '211.9000', NULL, 22, NULL, 'received', '', '211.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 (5654, '2022-06-30 22:01:17', 5710, NULL, NULL, 'IPAY2022/06/5653', 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 (5655, '2022-06-30 22:02:01', 5711, NULL, NULL, 'IPAY2022/06/5654', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 22, 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 (5656, '2022-06-30 22:10:38', 5712, NULL, NULL, 'IPAY2022/06/5655', 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 (5657, '2022-07-01 13:52:26', 5713, NULL, NULL, 'IPAY2022/07/5656', NULL, 'cash', '', '', '', '', '', '', '201.7000', NULL, 21, NULL, 'received', '', '201.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 (5658, '2022-07-01 13:58:29', 5714, NULL, NULL, 'IPAY2022/07/5657', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 21, 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 (5659, '2022-07-01 13:59:07', 5715, NULL, NULL, 'IPAY2022/07/5658', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 21, 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 (5660, '2022-07-01 14:06:15', 5716, NULL, NULL, 'IPAY2022/07/5659', NULL, 'cash', '', '', '', '', '', '', '183.0000', NULL, 22, 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 (5661, '2022-07-01 14:17:46', 5717, NULL, NULL, 'IPAY2022/07/5660', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 21, 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 (5662, '2022-07-01 14:42:27', 5718, NULL, NULL, 'IPAY2022/07/5661', NULL, 'cash', '', '', '', '', '', '', '350.5000', NULL, 17, NULL, 'received', '', '350.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5663, '2022-07-01 14:51:46', 5719, NULL, NULL, 'IPAY2022/07/5662', NULL, 'cash', '', '', '', '', '', '', '54.5000', NULL, 21, 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 (5664, '2022-07-01 14:59:01', 5720, NULL, NULL, 'IPAY2022/07/5663', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 17, 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 (5665, '2022-07-01 17:23:19', 5721, NULL, NULL, 'IPAY2022/07/5664', NULL, 'cash', '', '', '', '', '', '', '201.0000', NULL, 28, NULL, 'received', '', '201.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5666, '2022-07-01 18:00:53', 5722, NULL, NULL, 'IPAY2022/07/5665', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 28, 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 (5667, '2022-07-01 19:18:01', 5723, NULL, NULL, 'IPAY2022/07/5666', NULL, 'cash', '', '', '', '', '', '', '55.5000', NULL, 28, NULL, 'received', '', '55.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5668, '2022-07-01 19:43:02', 5724, NULL, NULL, 'IPAY2022/07/5667', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 28, 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 (5669, '2022-07-01 19:44:41', 5725, NULL, NULL, 'IPAY2022/07/5668', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 28, 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 (5670, '2022-07-01 19:57:03', 5726, NULL, NULL, 'IPAY2022/07/5669', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 28, 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 (5671, '2022-07-01 20:03:20', 5727, NULL, NULL, 'IPAY2022/07/5670', NULL, 'cash', '', '', '', '', '', '', '626.4000', NULL, 11, NULL, 'received', '', '626.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 (5672, '2022-07-01 20:05:05', 5728, NULL, NULL, 'IPAY2022/07/5671', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 28, 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 (5673, '2022-07-01 20:13:07', 5729, NULL, NULL, 'IPAY2022/07/5672', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 28, 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 (5674, '2022-07-01 20:30:33', 5730, NULL, NULL, 'IPAY2022/07/5673', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 28, 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 (5675, '2022-07-01 20:38:58', 5731, NULL, NULL, 'IPAY2022/07/5674', NULL, 'cash', '', '', '', '', '', '', '530.2300', NULL, 16, NULL, 'received', '', '530.2300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5676, '2022-07-01 21:13:36', 5732, NULL, NULL, 'IPAY2022/07/5675', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 28, 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 (5677, '2022-07-01 21:20:04', 5733, NULL, NULL, 'IPAY2022/07/5676', NULL, 'cash', '', '', '', '', '', '', '193.8000', NULL, 11, NULL, 'received', '', '193.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 (5678, '2022-07-01 21:34:44', 5734, NULL, NULL, 'IPAY2022/07/5677', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 28, 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 (5679, '2022-07-01 21:42:30', 5735, NULL, NULL, 'IPAY2022/07/5678', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 16, 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 (5680, '2022-07-01 21:44:49', 5736, NULL, NULL, 'IPAY2022/07/5679', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 28, 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 (5681, '2022-07-01 21:45:41', 5737, NULL, NULL, 'IPAY2022/07/5680', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 28, 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 (5682, '2022-07-01 21:53:47', 5738, NULL, NULL, 'IPAY2022/07/5681', 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 (5683, '2022-07-02 14:26:35', 5739, NULL, NULL, 'IPAY2022/07/5682', NULL, 'cash', '', '', '', '', '', '', '355.5000', NULL, 21, 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 (5684, '2022-07-02 14:36:30', 5740, NULL, NULL, 'IPAY2022/07/5683', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 21, 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 (5685, '2022-07-02 18:19:01', 5741, NULL, NULL, 'IPAY2022/07/5684', NULL, 'cash', '', '', '', '', '', '', '644.3000', NULL, 16, NULL, 'received', '', '644.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 (5686, '2022-07-02 19:32:41', 5742, NULL, NULL, 'IPAY2022/07/5685', NULL, 'cash', '', '', '', '', '', '', '235.0000', NULL, 16, NULL, 'received', '', '235.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5687, '2022-07-02 20:55:24', 5743, NULL, NULL, 'IPAY2022/07/5686', NULL, 'cash', '', '', '', '', '', '', '215.2000', NULL, 16, NULL, 'received', '', '215.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 (5688, '2022-07-02 21:41:21', 5744, NULL, NULL, 'IPAY2022/07/5687', NULL, 'cash', '', '', '', '', '', '', '124.5000', NULL, 16, 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 (5689, '2022-07-02 21:50:09', 5745, NULL, NULL, 'IPAY2022/07/5688', NULL, 'cash', '', '', '', '', '', '', '226.4000', NULL, 8, NULL, 'received', '', '226.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 (5690, '2022-07-02 21:50:24', 5746, NULL, NULL, 'IPAY2022/07/5689', NULL, 'cash', '', '', '', '', '', '', '733.0900', NULL, 11, NULL, 'received', '', '733.0900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5691, '2022-07-02 21:55:46', 5747, NULL, NULL, 'IPAY2022/07/5690', 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 (5692, '2022-07-02 22:03:46', 5748, NULL, NULL, 'IPAY2022/07/5691', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 11, 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 (5693, '2022-07-03 16:09:23', 5749, NULL, NULL, 'IPAY2022/07/5692', NULL, 'cash', '', '', '', '', '', '', '251.2000', NULL, 16, NULL, 'received', '', '251.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 (5694, '2022-07-03 16:57:21', 5750, NULL, NULL, 'IPAY2022/07/5693', NULL, 'cash', '', '', '', '', '', '', '213.3000', NULL, 11, NULL, 'received', '', '213.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 (5695, '2022-07-03 17:21:15', 5751, NULL, NULL, 'IPAY2022/07/5694', NULL, 'cash', '', '', '', '', '', '', '48.6000', NULL, 16, NULL, 'received', '', '48.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 (5696, '2022-07-03 19:45:29', 5752, NULL, NULL, 'IPAY2022/07/5695', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 17, 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 (5697, '2022-07-03 19:59:46', 5753, NULL, NULL, 'IPAY2022/07/5696', NULL, 'cash', '', '', '', '', '', '', '417.4000', NULL, 29, NULL, 'received', '', '417.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 (5698, '2022-07-03 20:25:23', 5754, NULL, NULL, 'IPAY2022/07/5697', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 29, 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 (5699, '2022-07-03 20:43:35', 5755, NULL, NULL, 'IPAY2022/07/5698', NULL, 'cash', '', '', '', '', '', '', '769.0000', NULL, 17, NULL, 'received', '', '769.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5700, '2022-07-03 21:09:13', 5756, NULL, NULL, 'IPAY2022/07/5699', NULL, 'cash', '', '', '', '', '', '', '254.0000', NULL, 22, NULL, 'received', '', '254.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5701, '2022-07-03 21:29:12', 5757, NULL, NULL, 'IPAY2022/07/5700', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 17, 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 (5702, '2022-07-03 21:31:05', 5758, NULL, NULL, 'IPAY2022/07/5701', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 29, 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 (5703, '2022-07-03 21:55:51', 5759, NULL, NULL, 'IPAY2022/07/5702', NULL, 'cash', '', '', '', '', '', '', '268.0000', NULL, 29, 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 (5704, '2022-07-03 21:56:23', 5760, NULL, NULL, 'IPAY2022/07/5703', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (5705, '2022-07-03 21:58:28', 5761, NULL, NULL, 'IPAY2022/07/5704', NULL, 'cash', '', '', '', '', '', '', '186.0000', NULL, 22, NULL, 'received', '', '186.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5706, '2022-07-04 13:57:38', 5762, NULL, NULL, 'IPAY2022/07/5705', NULL, 'cash', '', '', '', '', '', '', '216.5000', NULL, 21, NULL, 'received', '', '216.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5707, '2022-07-04 15:03:16', 5763, NULL, NULL, 'IPAY2022/07/5706', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 21, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5708, '2022-07-04 15:51:24', 5764, NULL, NULL, 'IPAY2022/07/5707', NULL, 'cash', '', '', '', '', '', '', '212.9000', NULL, 8, NULL, 'received', '', '212.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 (5709, '2022-07-04 16:38:02', 5765, NULL, NULL, 'IPAY2022/07/5708', NULL, 'cash', '', '', '', '', '', '', '133.4000', NULL, 29, NULL, 'received', '', '133.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 (5710, '2022-07-04 18:27:35', 5766, NULL, NULL, 'IPAY2022/07/5709', NULL, 'cash', '', '', '', '', '', '', '198.0000', NULL, 29, NULL, 'received', '', '198.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5711, '2022-07-04 19:46:05', 5767, NULL, NULL, 'IPAY2022/07/5710', NULL, 'cash', '', '', '', '', '', '', '840.4500', NULL, 17, NULL, 'received', '', '840.4500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5712, '2022-07-04 20:22:13', 5768, NULL, NULL, 'IPAY2022/07/5711', NULL, 'cash', '', '', '', '', '', '', '115.0000', NULL, 29, NULL, 'received', '', '115.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5713, '2022-07-04 21:25:17', 5769, NULL, NULL, 'IPAY2022/07/5712', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 29, 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 (5714, '2022-07-04 21:35:48', 5770, NULL, NULL, 'IPAY2022/07/5713', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (5715, '2022-07-04 21:38:25', 5771, NULL, NULL, 'IPAY2022/07/5714', NULL, 'cash', '', '', '', '', '', '', '340.1000', NULL, 17, NULL, 'received', '', '340.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 (5716, '2022-07-04 21:45:20', 5772, NULL, NULL, 'IPAY2022/07/5715', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 29, 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 (5717, '2022-07-04 21:52:06', 5773, NULL, NULL, 'IPAY2022/07/5716', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 29, 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 (5718, '2022-07-04 21:57:15', 5774, NULL, NULL, 'IPAY2022/07/5717', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 8, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5719, '2022-07-05 13:31:07', 5775, NULL, NULL, 'IPAY2022/07/5718', NULL, 'cash', '', '', '', '', '', '', '275.5000', NULL, 29, 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 (5720, '2022-07-05 14:28:47', 5776, NULL, NULL, 'IPAY2022/07/5719', NULL, 'cash', '', '', '', '', '', '', '62.5000', NULL, 29, NULL, 'received', '', '62.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5721, '2022-07-05 14:49:25', 5777, NULL, NULL, 'IPAY2022/07/5720', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 29, 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 (5722, '2022-07-05 15:08:56', 5778, NULL, NULL, 'IPAY2022/07/5721', NULL, 'cash', '', '', '', '', '', '', '357.8000', NULL, 16, NULL, 'received', '', '357.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 (5723, '2022-07-05 15:57:50', 5779, NULL, NULL, 'IPAY2022/07/5722', NULL, 'cash', '', '', '', '', '', '', '294.5000', NULL, 8, NULL, 'received', '', '294.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5724, '2022-07-05 20:30:46', 5780, NULL, NULL, 'IPAY2022/07/5723', NULL, 'cash', '', '', '', '', '', '', '317.2000', NULL, 17, NULL, 'received', '', '317.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 (5725, '2022-07-05 21:35:32', 5781, NULL, NULL, 'IPAY2022/07/5724', NULL, 'cash', '', '', '', '', '', '', '113.5000', NULL, 17, 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 (5726, '2022-07-05 21:37:31', 5782, NULL, NULL, 'IPAY2022/07/5725', NULL, 'cash', '', '', '', '', '', '', '725.7000', NULL, 22, NULL, 'received', '', '725.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 (5727, '2022-07-05 21:46:26', 5783, NULL, NULL, 'IPAY2022/07/5726', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 17, 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 (5728, '2022-07-05 21:47:19', 5784, NULL, NULL, 'IPAY2022/07/5727', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 22, 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 (5729, '2022-07-05 22:16:19', 5785, NULL, NULL, 'IPAY2022/07/5728', NULL, 'cash', '', '', '', '', '', '', '899.4000', NULL, 11, NULL, 'received', '', '899.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 (5730, '2022-07-06 14:15:17', 5786, NULL, NULL, 'IPAY2022/07/5729', NULL, 'cash', '', '', '', '', '', '', '287.8000', NULL, 21, NULL, 'received', '', '287.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 (5731, '2022-07-06 14:19:47', 5787, NULL, NULL, 'IPAY2022/07/5730', NULL, 'cash', '', '', '', '', '', '', '247.9000', NULL, 16, NULL, 'received', '', '247.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 (5732, '2022-07-06 14:30:43', 5788, NULL, NULL, 'IPAY2022/07/5731', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 21, 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 (5733, '2022-07-06 15:00:12', 5789, NULL, NULL, 'IPAY2022/07/5732', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 16, 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 (5734, '2022-07-06 18:35:47', 5790, NULL, NULL, 'IPAY2022/07/5733', NULL, 'cash', '', '', '', '', '', '', '287.5000', NULL, 29, 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 (5735, '2022-07-06 19:37:47', 5791, NULL, NULL, 'IPAY2022/07/5734', NULL, 'cash', '', '', '', '', '', '', '135.7000', NULL, 29, NULL, 'received', '', '135.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 (5736, '2022-07-06 20:15:35', 5792, NULL, NULL, 'IPAY2022/07/5735', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 29, 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 (5737, '2022-07-06 20:27:11', 5793, NULL, NULL, 'IPAY2022/07/5736', NULL, 'cash', '', '', '', '', '', '', '200.8000', NULL, 17, 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 (5738, '2022-07-06 20:42:16', 5794, NULL, NULL, 'IPAY2022/07/5737', NULL, 'cash', '', '', '', '', '', '', '432.2000', NULL, 17, NULL, 'received', '', '432.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 (5739, '2022-07-06 21:06:27', 5795, NULL, NULL, 'IPAY2022/07/5738', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 29, 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 (5740, '2022-07-06 21:13:59', 5796, NULL, NULL, 'IPAY2022/07/5739', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (5741, '2022-07-06 21:17:46', 5797, NULL, NULL, 'IPAY2022/07/5740', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 29, 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 (5742, '2022-07-06 21:28:13', 5798, NULL, NULL, 'IPAY2022/07/5741', NULL, 'cash', '', '', '', '', '', '', '119.9000', NULL, 17, NULL, 'received', '', '119.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 (5743, '2022-07-06 21:33:09', 5799, NULL, NULL, 'IPAY2022/07/5742', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (5744, '2022-07-06 21:33:52', 5800, NULL, NULL, 'IPAY2022/07/5743', NULL, 'cash', '', '', '', '', '', '', '270.0000', NULL, 22, NULL, 'received', '', '270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5745, '2022-07-06 21:35:32', 5801, NULL, NULL, 'IPAY2022/07/5744', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (5746, '2022-07-06 21:41:02', 5802, NULL, NULL, 'IPAY2022/07/5745', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 29, 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 (5747, '2022-07-06 21:43:59', 5803, NULL, NULL, 'IPAY2022/07/5746', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 22, 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 (5748, '2022-07-06 21:47:04', 5804, NULL, NULL, 'IPAY2022/07/5747', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 17, 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 (5749, '2022-07-06 21:47:12', 5805, NULL, NULL, 'IPAY2022/07/5748', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 22, 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 (5750, '2022-07-06 21:48:15', 5806, NULL, NULL, 'IPAY2022/07/5749', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 29, 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 (5751, '2022-07-06 21:59:10', 5807, NULL, NULL, 'IPAY2022/07/5750', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 22, 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 (5752, '2022-07-06 22:52:33', 5808, NULL, NULL, 'IPAY2022/07/5751', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 4, 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 (5753, '2022-07-07 13:44:34', 5809, NULL, NULL, 'IPAY2022/07/5752', NULL, 'cash', '', '', '', '', '', '', '223.0000', NULL, 21, 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 (5754, '2022-07-07 14:39:57', 5810, NULL, NULL, 'IPAY2022/07/5753', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 21, 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 (5755, '2022-07-07 14:51:55', 5811, NULL, NULL, 'IPAY2022/07/5754', NULL, 'cash', '', '', '', '', '', '', '215.3000', NULL, 16, NULL, 'received', '', '215.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 (5756, '2022-07-07 21:15:21', 5812, NULL, NULL, 'IPAY2022/07/5755', NULL, 'cash', '', '', '', '', '', '', '418.9000', NULL, 17, NULL, 'received', '', '418.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 (5757, '2022-07-07 21:22:57', 5813, NULL, NULL, 'IPAY2022/07/5756', NULL, 'cash', '', '', '', '', '', '', '527.1000', NULL, 11, NULL, 'received', '', '527.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 (5758, '2022-07-07 21:30:24', 5814, NULL, NULL, 'IPAY2022/07/5757', NULL, 'cash', '', '', '', '', '', '', '54.0000', NULL, 17, 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 (5759, '2022-07-07 21:36:20', 5815, NULL, NULL, 'IPAY2022/07/5758', NULL, 'cash', '', '', '', '', '', '', '84.5000', NULL, 17, 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 (5760, '2022-07-07 21:44:49', 5816, NULL, NULL, 'IPAY2022/07/5759', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 17, 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 (5761, '2022-07-07 21:58:07', 5817, NULL, NULL, 'IPAY2022/07/5760', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 17, 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 (5762, '2022-07-07 22:00:45', 5818, NULL, NULL, 'IPAY2022/07/5761', NULL, 'cash', '', '', '', '', '', '', '404.6000', NULL, 22, NULL, 'received', '', '404.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 (5763, '2022-07-08 13:23:23', 5819, NULL, NULL, 'IPAY2022/07/5762', NULL, 'cash', '', '', '', '', '', '', '316.1000', NULL, 21, NULL, 'received', '', '316.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 (5764, '2022-07-08 13:47:32', 5820, NULL, NULL, 'IPAY2022/07/5763', NULL, 'cash', '', '', '', '', '', '', '94.5000', NULL, 28, NULL, 'received', '', '94.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5765, '2022-07-08 14:07:51', 5821, NULL, NULL, 'IPAY2022/07/5764', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 28, 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 (5766, '2022-07-08 14:32:17', 5822, NULL, NULL, 'IPAY2022/07/5765', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 21, 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 (5767, '2022-07-08 14:41:41', 5823, NULL, NULL, 'IPAY2022/07/5766', NULL, 'cash', '', '', '', '', '', '', '538.4000', NULL, 16, NULL, 'received', '', '538.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 (5768, '2022-07-08 20:54:37', 5824, NULL, NULL, 'IPAY2022/07/5767', NULL, 'cash', '', '', '', '', '', '', '420.0000', NULL, 17, NULL, 'received', '', '420.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5769, '2022-07-08 21:37:45', 5825, NULL, NULL, 'IPAY2022/07/5768', NULL, 'cash', '', '', '', '', '', '', '671.4000', NULL, 11, NULL, 'received', '', '671.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 (5770, '2022-07-08 21:45:07', 5826, NULL, NULL, 'IPAY2022/07/5769', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 17, 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 (5771, '2022-07-08 21:54:41', 5827, NULL, NULL, 'IPAY2022/07/5770', 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 (5772, '2022-07-08 22:03:29', 5828, NULL, NULL, 'IPAY2022/07/5771', NULL, 'cash', '', '', '', '', '', '', '448.6000', NULL, 22, NULL, 'received', '', '448.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 (5773, '2022-07-09 13:33:56', 5829, NULL, NULL, 'IPAY2022/07/5772', NULL, 'cash', '', '', '', '', '', '', '265.0000', NULL, 21, NULL, 'received', '', '265.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5774, '2022-07-09 14:44:54', 5830, NULL, NULL, 'IPAY2022/07/5773', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 21, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5775, '2022-07-09 14:52:23', 5831, NULL, NULL, 'IPAY2022/07/5774', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 21, 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 (5776, '2022-07-09 16:49:38', 5832, NULL, NULL, 'IPAY2022/07/5775', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 8, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5777, '2022-07-09 20:02:26', 5833, NULL, NULL, 'IPAY2022/07/5776', NULL, 'cash', '', '', '', '', '', '', '602.0000', NULL, 16, NULL, 'received', '', '602.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5778, '2022-07-09 21:13:17', 5834, NULL, NULL, 'IPAY2022/07/5777', NULL, 'cash', '', '', '', '', '', '', '438.8000', NULL, 11, NULL, 'received', '', '438.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 (5779, '2022-07-09 21:28:15', 5835, NULL, NULL, 'IPAY2022/07/5778', NULL, 'cash', '', '', '', '', '', '', '135.3000', NULL, 16, NULL, 'received', '', '135.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 (5780, '2022-07-09 21:34:11', 5836, NULL, NULL, 'IPAY2022/07/5779', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 16, 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 (5781, '2022-07-09 21:44:52', 5837, NULL, NULL, 'IPAY2022/07/5780', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 11, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5782, '2022-07-09 22:13:44', 5838, NULL, NULL, 'IPAY2022/07/5781', NULL, 'cash', '', '', '', '', '', '', '462.0000', NULL, 8, NULL, 'received', '', '462.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5783, '2022-07-10 15:37:11', 5839, NULL, NULL, 'IPAY2022/07/5782', NULL, 'cash', '', '', '', '', '', '', '206.1000', NULL, 29, NULL, 'received', '', '206.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 (5784, '2022-07-10 16:35:31', 5840, NULL, NULL, 'IPAY2022/07/5783', NULL, 'cash', '', '', '', '', '', '', '149.3600', NULL, 29, NULL, 'received', '', '149.3600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5785, '2022-07-10 16:48:27', 5841, NULL, NULL, 'IPAY2022/07/5784', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 29, 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 (5786, '2022-07-10 16:51:50', 5842, NULL, NULL, 'IPAY2022/07/5785', NULL, 'cash', '', '', '', '', '', '', '44.6200', NULL, 29, NULL, 'received', '', '44.6200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5787, '2022-07-10 17:17:42', 5843, NULL, NULL, 'IPAY2022/07/5786', NULL, 'cash', '', '', '', '', '', '', '253.0000', NULL, 17, 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 (5788, '2022-07-10 21:05:59', 5844, NULL, NULL, 'IPAY2022/07/5787', NULL, 'cash', '', '', '', '', '', '', '464.0000', NULL, 16, NULL, 'received', '', '464.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5789, '2022-07-10 21:29:58', 5845, NULL, NULL, 'IPAY2022/07/5788', NULL, 'cash', '', '', '', '', '', '', '286.5000', NULL, 22, NULL, 'received', '', '286.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5790, '2022-07-10 21:41:18', 5846, NULL, NULL, 'IPAY2022/07/5789', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 16, 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 (5791, '2022-07-10 21:42:39', 5847, NULL, NULL, 'IPAY2022/07/5790', NULL, 'cash', '', '', '', '', '', '', '755.3000', NULL, 11, NULL, 'received', '', '755.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 (5792, '2022-07-10 21:54:14', 5848, NULL, NULL, 'IPAY2022/07/5791', 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 (5793, '2022-07-10 21:56:23', 5849, NULL, NULL, 'IPAY2022/07/5792', NULL, 'cash', '', '', '', '', '', '', '554.1000', NULL, 22, NULL, 'received', '', '554.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 (5794, '2022-07-11 10:03:57', 5850, NULL, NULL, 'IPAY2022/07/5793', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 17, 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 (5795, '2022-07-11 12:28:13', 5851, NULL, NULL, 'IPAY2022/07/5794', NULL, 'cash', '', '', '', '', '', '', '253.0000', NULL, 21, 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 (5796, '2022-07-11 13:33:21', 5852, NULL, NULL, 'IPAY2022/07/5795', NULL, 'cash', '', '', '', '', '', '', '109.0000', NULL, 21, 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 (5797, '2022-07-11 14:21:34', 5853, NULL, NULL, 'IPAY2022/07/5796', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 21, 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 (5798, '2022-07-11 15:07:44', 5854, NULL, NULL, 'IPAY2022/07/5797', NULL, 'cash', '', '', '', '', '', '', '460.5000', NULL, 8, 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 (5799, '2022-07-11 17:45:58', 5855, NULL, NULL, 'IPAY2022/07/5798', NULL, 'cash', '', '', '', '', '', '', '281.5000', NULL, 28, 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 (5800, '2022-07-11 18:18:23', 5856, NULL, NULL, 'IPAY2022/07/5799', NULL, 'cash', '', '', '', '', '', '', '44.9000', NULL, 28, NULL, 'received', '', '44.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 (5801, '2022-07-11 18:29:04', 5857, NULL, NULL, 'IPAY2022/07/5800', NULL, 'cash', '', '', '', '', '', '', '43.0000', NULL, 28, 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 (5802, '2022-07-11 18:51:56', 5858, NULL, NULL, 'IPAY2022/07/5801', NULL, 'cash', '', '', '', '', '', '', '636.5000', NULL, 17, NULL, 'received', '', '636.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5803, '2022-07-11 18:52:26', 5859, NULL, NULL, 'IPAY2022/07/5802', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 28, 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 (5804, '2022-07-11 19:19:38', 5860, NULL, NULL, 'IPAY2022/07/5803', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 28, 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 (5805, '2022-07-11 19:56:51', 5861, NULL, NULL, 'IPAY2022/07/5804', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 28, 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 (5806, '2022-07-11 20:31:33', 5862, NULL, NULL, 'IPAY2022/07/5805', NULL, 'cash', '', '', '', '', '', '', '55.5000', NULL, 28, NULL, 'received', '', '55.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5807, '2022-07-11 20:49:12', 5863, NULL, NULL, 'IPAY2022/07/5806', NULL, 'cash', '', '', '', '', '', '', '189.2000', NULL, 17, NULL, 'received', '', '189.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 (5808, '2022-07-11 20:49:28', 5864, NULL, NULL, 'IPAY2022/07/5807', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 28, 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 (5809, '2022-07-11 20:51:58', 5865, NULL, NULL, 'IPAY2022/07/5808', NULL, 'cash', '', '', '', '', '', '', '701.2000', NULL, 11, NULL, 'received', '', '701.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 (5810, '2022-07-11 21:05:39', 5866, NULL, NULL, 'IPAY2022/07/5809', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 28, 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 (5811, '2022-07-11 21:22:50', 5867, NULL, NULL, 'IPAY2022/07/5810', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 28, 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 (5812, '2022-07-11 21:32:23', 5868, NULL, NULL, 'IPAY2022/07/5811', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 11, 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 (5813, '2022-07-11 21:41:46', 5869, NULL, NULL, 'IPAY2022/07/5812', NULL, 'cash', '', '', '', '', '', '', '55.5000', NULL, 17, NULL, 'received', '', '55.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5814, '2022-07-12 11:16:05', 5870, NULL, NULL, 'IPAY2022/07/5813', NULL, 'cash', '', '', '', '', '', '', '223.5000', NULL, 29, 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 (5815, '2022-07-12 13:01:06', 5871, NULL, NULL, 'IPAY2022/07/5814', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 29, 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 (5816, '2022-07-12 13:44:08', 5872, NULL, NULL, 'IPAY2022/07/5815', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 29, 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 (5817, '2022-07-12 14:36:05', 5873, NULL, NULL, 'IPAY2022/07/5816', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (5818, '2022-07-12 15:00:03', 5874, NULL, NULL, 'IPAY2022/07/5817', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 29, 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 (5819, '2022-07-12 15:18:24', 5875, NULL, NULL, 'IPAY2022/07/5818', NULL, 'cash', '', '', '', '', '', '', '284.7000', NULL, 17, NULL, 'received', '', '284.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 (5820, '2022-07-12 15:36:37', 5876, NULL, NULL, 'IPAY2022/07/5819', NULL, 'cash', '', '', '', '', '', '', '146.5000', NULL, 8, NULL, 'received', '', '146.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5821, '2022-07-12 20:05:31', 5877, NULL, NULL, 'IPAY2022/07/5820', NULL, 'cash', '', '', '', '', '', '', '625.4000', NULL, 16, NULL, 'received', '', '625.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 (5822, '2022-07-12 20:24:11', 5878, NULL, NULL, 'IPAY2022/07/5821', NULL, 'cash', '', '', '', '', '', '', '382.0000', NULL, 16, NULL, 'received', '', '382.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5823, '2022-07-12 21:09:48', 5879, NULL, NULL, 'IPAY2022/07/5822', NULL, 'cash', '', '', '', '', '', '', '744.2000', NULL, 11, NULL, 'received', '', '744.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 (5824, '2022-07-12 21:33:16', 5880, NULL, NULL, 'IPAY2022/07/5823', NULL, 'cash', '', '', '', '', '', '', '52.5000', NULL, 16, 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 (5825, '2022-07-12 21:40:52', 5881, NULL, NULL, 'IPAY2022/07/5824', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 16, 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 (5826, '2022-07-12 21:54:03', 5882, NULL, NULL, 'IPAY2022/07/5825', NULL, 'cash', '', '', '', '', '', '', '574.8000', NULL, 22, NULL, 'received', '', '574.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 (5827, '2022-07-12 22:08:17', 5883, NULL, NULL, 'IPAY2022/07/5826', NULL, 'cash', '', '', '', '', '', '', '163.0000', NULL, 11, NULL, 'received', '', '163.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5828, '2022-07-13 14:29:37', 5884, NULL, NULL, 'IPAY2022/07/5827', NULL, 'cash', '', '', '', '', '', '', '366.1000', NULL, 21, NULL, 'received', '', '366.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 (5829, '2022-07-13 14:56:10', 5885, NULL, NULL, 'IPAY2022/07/5828', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 21, 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 (5830, '2022-07-13 15:13:16', 5886, NULL, NULL, 'IPAY2022/07/5829', NULL, 'cash', '', '', '', '', '', '', '448.7000', NULL, 17, NULL, 'received', '', '448.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 (5831, '2022-07-13 15:13:19', 5887, NULL, NULL, 'IPAY2022/07/5830', NULL, 'cash', '', '', '', '', '', '', '179.5000', NULL, 21, 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 (5832, '2022-07-13 16:52:07', 5888, NULL, NULL, 'IPAY2022/07/5831', NULL, 'cash', '', '', '', '', '', '', '158.5000', NULL, 29, 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 (5833, '2022-07-13 17:03:24', 5889, NULL, NULL, 'IPAY2022/07/5832', NULL, 'cash', '', '', '', '', '', '', '412.5000', NULL, 8, NULL, 'received', '', '412.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5834, '2022-07-13 17:06:35', 5890, NULL, NULL, 'IPAY2022/07/5833', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 29, 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 (5835, '2022-07-13 18:22:13', 5891, NULL, NULL, 'IPAY2022/07/5834', NULL, 'cash', '', '', '', '', '', '', '119.3000', NULL, 29, NULL, 'received', '', '119.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 (5836, '2022-07-13 18:57:36', 5892, NULL, NULL, 'IPAY2022/07/5835', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 29, 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 (5837, '2022-07-13 19:39:43', 5893, NULL, NULL, 'IPAY2022/07/5836', NULL, 'cash', '', '', '', '', '', '', '140.2000', NULL, 29, NULL, 'received', '', '140.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 (5838, '2022-07-13 19:56:23', 5894, NULL, NULL, 'IPAY2022/07/5837', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 29, 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 (5839, '2022-07-13 20:46:09', 5895, NULL, NULL, 'IPAY2022/07/5838', NULL, 'cash', '', '', '', '', '', '', '548.5000', NULL, 16, NULL, 'received', '', '548.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5840, '2022-07-13 20:46:37', 5896, NULL, NULL, 'IPAY2022/07/5839', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 29, 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 (5841, '2022-07-13 21:22:14', 5897, NULL, NULL, 'IPAY2022/07/5840', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 29, 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 (5842, '2022-07-13 21:37:33', 5898, NULL, NULL, 'IPAY2022/07/5841', NULL, 'cash', '', '', '', '', '', '', '538.4000', NULL, 22, NULL, 'received', '', '538.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 (5843, '2022-07-13 21:41:31', 5899, NULL, NULL, 'IPAY2022/07/5842', NULL, 'cash', '', '', '', '', '', '', '92.5000', NULL, 16, 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 (5844, '2022-07-13 21:44:54', 5900, NULL, NULL, 'IPAY2022/07/5843', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 22, 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 (5845, '2022-07-13 21:48:15', 5901, NULL, NULL, 'IPAY2022/07/5844', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 22, 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 (5846, '2022-07-13 21:50:19', 5902, NULL, NULL, 'IPAY2022/07/5845', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 29, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5847, '2022-07-14 14:17:09', 5903, NULL, NULL, 'IPAY2022/07/5846', NULL, 'cash', '', '', '', '', '', '', '136.4000', NULL, 21, NULL, 'received', '', '136.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 (5848, '2022-07-14 14:51:09', 5904, NULL, NULL, 'IPAY2022/07/5847', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 21, 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 (5849, '2022-07-14 15:27:57', 5905, NULL, NULL, 'IPAY2022/07/5848', NULL, 'cash', '', '', '', '', '', '', '326.5000', NULL, 17, 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 (5850, '2022-07-14 15:56:29', 5906, NULL, NULL, 'IPAY2022/07/5849', NULL, 'cash', '', '', '', '', '', '', '1245.0000', NULL, 8, NULL, 'received', '', '1245.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5851, '2022-07-14 19:26:10', 5907, NULL, NULL, 'IPAY2022/07/5850', NULL, 'cash', '', '', '', '', '', '', '182.5000', NULL, 11, NULL, 'received', '', '182.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5852, '2022-07-14 19:50:38', 5908, NULL, NULL, 'IPAY2022/07/5851', NULL, 'cash', '', '', '', '', '', '', '594.5000', NULL, 16, NULL, 'received', '', '594.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5853, '2022-07-14 19:52:54', 5909, NULL, NULL, 'IPAY2022/07/5852', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 16, 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 (5854, '2022-07-14 20:12:03', 5910, NULL, NULL, 'IPAY2022/07/5853', NULL, 'cash', '', '', '', '', '', '', '190.7000', NULL, 11, NULL, 'received', '', '190.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 (5855, '2022-07-14 20:39:44', 5911, NULL, NULL, 'IPAY2022/07/5854', NULL, 'cash', '', '', '', '', '', '', '73.9000', NULL, 11, NULL, 'received', '', '73.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 (5856, '2022-07-14 21:41:15', 5912, NULL, NULL, 'IPAY2022/07/5855', NULL, 'cash', '', '', '', '', '', '', '193.0000', NULL, 16, NULL, 'received', '', '193.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5857, '2022-07-14 21:42:25', 5913, NULL, NULL, 'IPAY2022/07/5856', NULL, 'cash', '', '', '', '', '', '', '134.6000', NULL, 11, NULL, 'received', '', '134.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 (5858, '2022-07-14 22:02:56', 5914, NULL, NULL, 'IPAY2022/07/5857', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 11, 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 (5859, '2022-07-14 22:05:59', 5915, NULL, NULL, 'IPAY2022/07/5858', NULL, 'cash', '', '', '', '', '', '', '606.3000', NULL, 22, NULL, 'received', '', '606.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 (5860, '2022-07-15 11:51:52', 5916, NULL, NULL, 'IPAY2022/07/5859', NULL, 'cash', '', '', '', '', '', '', '111.8000', NULL, 21, NULL, 'received', '', '111.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 (5861, '2022-07-15 12:21:17', 5917, NULL, NULL, 'IPAY2022/07/5860', NULL, 'cash', '', '', '', '', '', '', '128.5000', NULL, 28, NULL, 'received', '', '128.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5862, '2022-07-15 12:38:27', 5918, NULL, NULL, 'IPAY2022/07/5861', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 28, 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 (5863, '2022-07-15 12:52:25', 5919, NULL, NULL, 'IPAY2022/07/5862', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 28, 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 (5864, '2022-07-15 14:11:54', 5920, NULL, NULL, 'IPAY2022/07/5863', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 28, 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 (5865, '2022-07-15 14:16:25', 5921, NULL, NULL, 'IPAY2022/07/5864', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 28, 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 (5866, '2022-07-15 14:18:12', 5922, NULL, NULL, 'IPAY2022/07/5865', NULL, 'cash', '', '', '', '', '', '', '82.7000', NULL, 21, NULL, 'received', '', '82.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 (5867, '2022-07-15 14:25:42', 5923, NULL, NULL, 'IPAY2022/07/5866', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 28, 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 (5868, '2022-07-15 14:31:02', 5924, NULL, NULL, 'IPAY2022/07/5867', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 21, 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 (5869, '2022-07-15 14:35:05', 5925, NULL, NULL, 'IPAY2022/07/5868', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 28, 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 (5870, '2022-07-15 14:57:53', 5926, NULL, NULL, 'IPAY2022/07/5869', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 28, 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 (5871, '2022-07-15 14:58:28', 5927, NULL, NULL, 'IPAY2022/07/5870', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 21, 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 (5872, '2022-07-15 15:08:21', 5928, NULL, NULL, 'IPAY2022/07/5871', NULL, 'cash', '', '', '', '', '', '', '338.4000', NULL, 17, NULL, 'received', '', '338.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 (5873, '2022-07-15 19:54:23', 5929, NULL, NULL, 'IPAY2022/07/5872', NULL, 'cash', '', '', '', '', '', '', '589.1400', NULL, 11, NULL, 'received', '', '589.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5874, '2022-07-15 20:06:27', 5930, NULL, NULL, 'IPAY2022/07/5873', NULL, 'cash', '', '', '', '', '', '', '505.5000', NULL, 16, NULL, 'received', '', '505.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5875, '2022-07-15 20:51:19', 5931, NULL, NULL, 'IPAY2022/07/5874', NULL, 'cash', '', '', '', '', '', '', '148.4300', NULL, 16, NULL, 'received', '', '148.4300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5876, '2022-07-15 21:18:35', 5932, NULL, NULL, 'IPAY2022/07/5875', NULL, 'cash', '', '', '', '', '', '', '258.5000', NULL, 22, NULL, 'received', '', '258.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5877, '2022-07-15 21:23:14', 5933, NULL, NULL, 'IPAY2022/07/5876', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 22, 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 (5878, '2022-07-15 21:38:19', 5934, NULL, NULL, 'IPAY2022/07/5877', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 16, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5879, '2022-07-15 21:52:22', 5935, NULL, NULL, 'IPAY2022/07/5878', NULL, 'cash', '', '', '', '', '', '', '250.8000', NULL, 11, NULL, 'received', '', '250.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 (5880, '2022-07-16 14:11:50', 5936, NULL, NULL, 'IPAY2022/07/5879', NULL, 'cash', '', '', '', '', '', '', '371.0000', NULL, 21, NULL, 'received', '', '371.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5881, '2022-07-16 14:55:55', 5937, NULL, NULL, 'IPAY2022/07/5880', NULL, 'cash', '', '', '', '', '', '', '416.7800', NULL, 8, NULL, 'received', '', '416.7800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5882, '2022-07-16 14:56:09', 5938, NULL, NULL, 'IPAY2022/07/5881', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 21, 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 (5883, '2022-07-16 15:12:31', 5939, NULL, NULL, 'IPAY2022/07/5882', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 21, 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 (5884, '2022-07-16 18:43:54', 5940, NULL, NULL, 'IPAY2022/07/5883', NULL, 'cash', '', '', '', '', '', '', '753.5300', NULL, 16, NULL, 'received', '', '753.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5885, '2022-07-16 21:29:31', 5941, NULL, NULL, 'IPAY2022/07/5884', NULL, 'cash', '', '', '', '', '', '', '342.5000', NULL, 22, NULL, 'received', '', '342.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5886, '2022-07-16 21:33:31', 5942, NULL, NULL, 'IPAY2022/07/5885', NULL, 'cash', '', '', '', '', '', '', '355.8000', NULL, 16, NULL, 'received', '', '355.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 (5887, '2022-07-16 21:40:22', 5943, NULL, NULL, 'IPAY2022/07/5886', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 16, 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 (5888, '2022-07-17 15:53:07', 5944, NULL, NULL, 'IPAY2022/07/5887', NULL, 'cash', '', '', '', '', '', '', '154.5000', NULL, 29, 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 (5889, '2022-07-17 16:00:11', 5945, NULL, NULL, 'IPAY2022/07/5888', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 29, 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 (5890, '2022-07-17 16:12:08', 5946, NULL, NULL, 'IPAY2022/07/5889', NULL, 'cash', '', '', '', '', '', '', '201.7000', NULL, 16, NULL, 'received', '', '201.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 (5891, '2022-07-17 16:16:46', 5947, NULL, NULL, 'IPAY2022/07/5890', NULL, 'cash', '', '', '', '', '', '', '97.3000', NULL, 16, NULL, 'received', '', '97.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 (5892, '2022-07-17 16:22:05', 5948, NULL, NULL, 'IPAY2022/07/5891', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 29, 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 (5893, '2022-07-17 16:42:23', 5949, NULL, NULL, 'IPAY2022/07/5892', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 29, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5894, '2022-07-17 16:51:57', 5950, NULL, NULL, 'IPAY2022/07/5893', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 29, 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 (5895, '2022-07-17 17:00:19', 5951, NULL, NULL, 'IPAY2022/07/5894', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 16, 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 (5896, '2022-07-17 20:59:48', 5952, NULL, NULL, 'IPAY2022/07/5895', NULL, 'cash', '', '', '', '', '', '', '594.8000', NULL, 11, NULL, 'received', '', '594.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 (5897, '2022-07-17 21:00:38', 5953, NULL, NULL, 'IPAY2022/07/5896', NULL, 'cash', '', '', '', '', '', '', '456.0000', NULL, 17, NULL, 'received', '', '456.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5898, '2022-07-17 21:22:13', 5954, NULL, NULL, 'IPAY2022/07/5897', NULL, 'cash', '', '', '', '', '', '', '358.4000', NULL, 22, NULL, 'received', '', '358.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 (5899, '2022-07-17 21:32:20', 5955, NULL, NULL, 'IPAY2022/07/5898', NULL, 'cash', '', '', '', '', '', '', '85.5000', NULL, 17, NULL, 'received', '', '85.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5900, '2022-07-17 21:38:55', 5956, NULL, NULL, 'IPAY2022/07/5899', NULL, 'cash', '', '', '', '', '', '', '254.0000', NULL, 22, NULL, 'received', '', '254.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5901, '2022-07-17 21:49:46', 5957, NULL, NULL, 'IPAY2022/07/5900', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 11, 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 (5902, '2022-07-18 13:35:41', 5958, NULL, NULL, 'IPAY2022/07/5901', NULL, 'cash', '', '', '', '', '', '', '126.5000', NULL, 21, NULL, 'received', '', '126.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5903, '2022-07-18 15:03:37', 5959, NULL, NULL, 'IPAY2022/07/5902', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 21, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5904, '2022-07-18 15:09:55', 5960, NULL, NULL, 'IPAY2022/07/5903', NULL, 'cash', '', '', '', '', '', '', '862.4000', NULL, 8, NULL, 'received', '', '862.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 (5905, '2022-07-18 15:22:47', 5961, NULL, NULL, 'IPAY2022/07/5904', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 8, 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 (5906, '2022-07-18 15:55:23', 5962, NULL, NULL, 'IPAY2022/07/5905', NULL, 'cash', '', '', '', '', '', '', '553.4000', NULL, 17, NULL, 'received', '', '553.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 (5907, '2022-07-18 16:37:57', 5963, NULL, NULL, 'IPAY2022/07/5906', NULL, 'cash', '', '', '', '', '', '', '44.5000', NULL, 11, 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 (5908, '2022-07-18 17:11:17', 5964, NULL, NULL, 'IPAY2022/07/5907', NULL, 'cash', '', '', '', '', '', '', '66.0000', NULL, 28, NULL, 'received', '', '66.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5909, '2022-07-18 19:38:58', 5965, NULL, NULL, 'IPAY2022/07/5908', NULL, 'cash', '', '', '', '', '', '', '395.1400', NULL, 28, NULL, 'received', '', '395.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5910, '2022-07-18 20:40:36', 5966, NULL, NULL, 'IPAY2022/07/5909', NULL, 'cash', '', '', '', '', '', '', '534.1000', NULL, 17, NULL, 'received', '', '534.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 (5911, '2022-07-18 21:03:13', 5967, NULL, NULL, 'IPAY2022/07/5910', NULL, 'cash', '', '', '', '', '', '', '103.0000', NULL, 28, 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 (5912, '2022-07-18 21:25:23', 5968, NULL, NULL, 'IPAY2022/07/5911', NULL, 'cash', '', '', '', '', '', '', '464.0000', NULL, 11, NULL, 'received', '', '464.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5913, '2022-07-18 21:44:30', 5969, NULL, NULL, 'IPAY2022/07/5912', NULL, 'cash', '', '', '', '', '', '', '150.5000', NULL, 17, NULL, 'received', '', '150.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5914, '2022-07-18 22:00:52', 5970, NULL, NULL, 'IPAY2022/07/5913', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 11, 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 (5915, '2022-07-19 11:19:50', 5971, NULL, NULL, 'IPAY2022/07/5914', NULL, 'cash', '', '', '', '', '', '', '192.7700', NULL, 29, NULL, 'received', '', '192.7700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5916, '2022-07-19 13:15:09', 5972, NULL, NULL, 'IPAY2022/07/5915', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 29, 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 (5917, '2022-07-19 14:17:33', 5973, NULL, NULL, 'IPAY2022/07/5916', NULL, 'cash', '', '', '', '', '', '', '2.7000', NULL, 29, NULL, 'received', '', '2.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 (5918, '2022-07-19 14:34:41', 5974, NULL, NULL, 'IPAY2022/07/5917', NULL, 'cash', '', '', '', '', '', '', '462.7000', NULL, 16, NULL, 'received', '', '462.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 (5919, '2022-07-19 14:53:41', 5975, NULL, NULL, 'IPAY2022/07/5918', NULL, 'cash', '', '', '', '', '', '', '194.5000', NULL, 29, NULL, 'received', '', '194.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5920, '2022-07-19 14:58:34', 5976, NULL, NULL, 'IPAY2022/07/5919', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 29, 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 (5921, '2022-07-19 15:07:21', 5977, NULL, NULL, 'IPAY2022/07/5920', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 16, 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 (5922, '2022-07-19 20:08:55', 5978, NULL, NULL, 'IPAY2022/07/5921', NULL, 'cash', '', '', '', '', '', '', '471.4000', NULL, 17, NULL, 'received', '', '471.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 (5923, '2022-07-19 21:27:30', 5979, NULL, NULL, 'IPAY2022/07/5922', NULL, 'cash', '', '', '', '', '', '', '835.0000', NULL, 11, NULL, 'received', '', '835.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5924, '2022-07-19 21:30:43', 5980, NULL, NULL, 'IPAY2022/07/5923', NULL, 'cash', '', '', '', '', '', '', '581.5000', NULL, 22, NULL, 'received', '', '581.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5925, '2022-07-19 21:45:02', 5981, NULL, NULL, 'IPAY2022/07/5924', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 17, 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 (5926, '2022-07-19 21:50:26', 5982, NULL, NULL, 'IPAY2022/07/5925', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 17, 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 (5927, '2022-07-19 21:55:53', 5983, NULL, NULL, 'IPAY2022/07/5926', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 11, 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 (5928, '2022-07-20 13:11:31', 5984, NULL, NULL, 'IPAY2022/07/5927', NULL, 'cash', '', '', '', '', '', '', '115.5000', NULL, 28, NULL, 'received', '', '115.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5929, '2022-07-20 13:28:12', 5985, NULL, NULL, 'IPAY2022/07/5928', NULL, 'cash', '', '', '', '', '', '', '43.0000', NULL, 28, 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 (5930, '2022-07-20 14:53:55', 5986, NULL, NULL, 'IPAY2022/07/5929', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 28, 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 (5931, '2022-07-20 18:51:58', 5987, NULL, NULL, 'IPAY2022/07/5930', NULL, 'cash', '', '', '', '', '', '', '431.0000', NULL, 11, NULL, 'received', '', '431.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5932, '2022-07-20 19:07:08', 5988, NULL, NULL, 'IPAY2022/07/5931', NULL, 'cash', '', '', '', '', '', '', '761.2000', NULL, 11, NULL, 'received', '', '761.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 (5933, '2022-07-20 20:48:04', 5989, NULL, NULL, 'IPAY2022/07/5932', NULL, 'cash', '', '', '', '', '', '', '409.8000', NULL, 17, 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 (5934, '2022-07-20 21:11:46', 5990, NULL, NULL, 'IPAY2022/07/5933', NULL, 'cash', '', '', '', '', '', '', '663.7000', NULL, 17, NULL, 'received', '', '663.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 (5935, '2022-07-20 21:33:49', 5991, NULL, NULL, 'IPAY2022/07/5934', NULL, 'cash', '', '', '', '', '', '', '330.7000', NULL, 22, NULL, 'received', '', '330.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 (5936, '2022-07-20 21:41:35', 5992, NULL, NULL, 'IPAY2022/07/5935', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 22, 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 (5937, '2022-07-20 21:41:57', 5993, NULL, NULL, 'IPAY2022/07/5936', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 17, 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 (5938, '2022-07-20 21:45:18', 5994, NULL, NULL, 'IPAY2022/07/5937', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 17, 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 (5939, '2022-07-20 21:52:31', 5995, NULL, NULL, 'IPAY2022/07/5938', NULL, 'cash', '', '', '', '', '', '', '227.8000', NULL, 11, NULL, 'received', '', '227.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 (5940, '2022-07-20 21:58:27', 5996, NULL, NULL, 'IPAY2022/07/5939', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 11, 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 (5941, '2022-07-21 14:01:06', 5997, NULL, NULL, 'IPAY2022/07/5940', NULL, 'cash', '', '', '', '', '', '', '443.7000', NULL, 16, NULL, 'received', '', '443.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 (5942, '2022-07-21 14:32:02', 5998, NULL, NULL, 'IPAY2022/07/5941', NULL, 'cash', '', '', '', '', '', '', '238.6000', NULL, 21, NULL, 'received', '', '238.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 (5943, '2022-07-21 14:51:18', 5999, NULL, NULL, 'IPAY2022/07/5942', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 21, 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 (5944, '2022-07-21 15:05:14', 6000, NULL, NULL, 'IPAY2022/07/5943', NULL, 'cash', '', '', '', '', '', '', '188.0000', NULL, 8, NULL, 'received', '', '188.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5945, '2022-07-21 18:33:15', 6001, NULL, NULL, 'IPAY2022/07/5944', NULL, 'cash', '', '', '', '', '', '', '168.0000', NULL, 11, NULL, 'received', '', '168.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5946, '2022-07-21 19:38:07', 6002, NULL, NULL, 'IPAY2022/07/5945', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 11, 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 (5947, '2022-07-21 20:15:12', 6003, NULL, NULL, 'IPAY2022/07/5946', NULL, 'cash', '', '', '', '', '', '', '480.5700', NULL, 11, NULL, 'received', '', '480.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 (5948, '2022-07-21 21:12:30', 6004, NULL, NULL, 'IPAY2022/07/5947', NULL, 'cash', '', '', '', '', '', '', '527.0000', NULL, 17, NULL, 'received', '', '527.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5949, '2022-07-21 21:37:26', 6005, NULL, NULL, 'IPAY2022/07/5948', NULL, 'cash', '', '', '', '', '', '', '431.1400', NULL, 22, NULL, 'received', '', '431.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5950, '2022-07-21 21:38:44', 6006, NULL, NULL, 'IPAY2022/07/5949', NULL, 'cash', '', '', '', '', '', '', '111.5000', NULL, 17, 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 (5951, '2022-07-21 21:54:48', 6007, NULL, NULL, 'IPAY2022/07/5950', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 17, 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 (5952, '2022-07-21 21:55:01', 6008, NULL, NULL, 'IPAY2022/07/5951', NULL, 'cash', '', '', '', '', '', '', '130.1000', NULL, 11, NULL, 'received', '', '130.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 (5953, '2022-07-21 22:04:40', 6009, NULL, NULL, 'IPAY2022/07/5952', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 17, 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 (5954, '2022-07-22 14:33:49', 6010, NULL, NULL, 'IPAY2022/07/5953', NULL, 'cash', '', '', '', '', '', '', '549.5000', NULL, 21, NULL, 'received', '', '549.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5955, '2022-07-22 15:53:37', 6011, NULL, NULL, 'IPAY2022/07/5954', NULL, 'cash', '', '', '', '', '', '', '331.5000', NULL, 8, NULL, 'received', '', '331.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5956, '2022-07-22 17:12:34', 6012, NULL, NULL, 'IPAY2022/07/5955', NULL, 'cash', '', '', '', '', '', '', '205.0000', NULL, 29, NULL, 'received', '', '205.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5957, '2022-07-22 17:32:14', 6013, NULL, NULL, 'IPAY2022/07/5956', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 22, 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 (5958, '2022-07-22 18:58:37', 6014, NULL, NULL, 'IPAY2022/07/5957', NULL, 'cash', '', '', '', '', '', '', '633.9000', NULL, 16, NULL, 'received', '', '633.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 (5959, '2022-07-22 19:17:50', 6015, NULL, NULL, 'IPAY2022/07/5958', NULL, 'cash', '', '', '', '', '', '', '220.5300', NULL, 29, NULL, 'received', '', '220.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5960, '2022-07-22 19:49:00', 6016, NULL, NULL, 'IPAY2022/07/5959', NULL, 'cash', '', '', '', '', '', '', '90.4000', NULL, 29, NULL, 'received', '', '90.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 (5961, '2022-07-22 20:16:24', 6017, NULL, NULL, 'IPAY2022/07/5960', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 29, 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 (5962, '2022-07-22 20:34:44', 6018, NULL, NULL, 'IPAY2022/07/5961', NULL, 'cash', '', '', '', '', '', '', '294.0000', NULL, 16, 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 (5963, '2022-07-22 20:43:18', 6019, NULL, NULL, 'IPAY2022/07/5962', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (5964, '2022-07-22 20:46:42', 6020, NULL, NULL, 'IPAY2022/07/5963', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 29, 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 (5965, '2022-07-22 21:06:20', 6021, NULL, NULL, 'IPAY2022/07/5964', NULL, 'cash', '', '', '', '', '', '', '57.5000', NULL, 29, NULL, 'received', '', '57.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5966, '2022-07-22 21:11:33', 6022, NULL, NULL, 'IPAY2022/07/5965', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 29, 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 (5967, '2022-07-22 21:19:22', 6023, NULL, NULL, 'IPAY2022/07/5966', NULL, 'cash', '', '', '', '', '', '', '5.2000', NULL, 29, NULL, 'received', '', '5.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 (5968, '2022-07-22 21:33:52', 6024, NULL, NULL, 'IPAY2022/07/5967', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 29, 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 (5969, '2022-07-22 21:36:35', 6025, NULL, NULL, 'IPAY2022/07/5968', NULL, 'cash', '', '', '', '', '', '', '476.7000', NULL, 22, NULL, 'received', '', '476.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 (5970, '2022-07-22 21:40:05', 6026, NULL, NULL, 'IPAY2022/07/5969', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 16, 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 (5971, '2022-07-22 21:45:17', 6027, NULL, NULL, 'IPAY2022/07/5970', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 29, 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 (5972, '2022-07-22 21:48:37', 6028, NULL, NULL, 'IPAY2022/07/5971', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (5973, '2022-07-23 14:20:18', 6029, NULL, NULL, 'IPAY2022/07/5972', NULL, 'cash', '', '', '', '', '', '', '337.2000', NULL, 21, NULL, 'received', '', '337.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 (5974, '2022-07-23 15:00:42', 6030, NULL, NULL, 'IPAY2022/07/5973', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 21, 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 (5975, '2022-07-23 16:10:07', 6031, NULL, NULL, 'IPAY2022/07/5974', NULL, 'cash', '', '', '', '', '', '', '231.2800', NULL, 8, NULL, 'received', '', '231.2800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5976, '2022-07-23 19:29:07', 6032, NULL, NULL, 'IPAY2022/07/5975', NULL, 'cash', '', '', '', '', '', '', '620.4000', NULL, 16, NULL, 'received', '', '620.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 (5977, '2022-07-23 20:43:12', 6033, NULL, NULL, 'IPAY2022/07/5976', NULL, 'cash', '', '', '', '', '', '', '232.5000', NULL, 16, NULL, 'received', '', '232.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5978, '2022-07-23 21:33:32', 6034, NULL, NULL, 'IPAY2022/07/5977', NULL, 'cash', '', '', '', '', '', '', '702.6000', NULL, 11, NULL, 'received', '', '702.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 (5979, '2022-07-23 21:42:35', 6035, NULL, NULL, 'IPAY2022/07/5978', NULL, 'cash', '', '', '', '', '', '', '299.0000', NULL, 8, NULL, 'received', '', '299.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5980, '2022-07-23 21:46:28', 6036, NULL, NULL, 'IPAY2022/07/5979', NULL, 'cash', '', '', '', '', '', '', '142.0000', NULL, 16, NULL, 'received', '', '142.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5981, '2022-07-23 21:52:07', 6037, NULL, NULL, 'IPAY2022/07/5980', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 11, 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 (5982, '2022-07-23 21:56:32', 6038, NULL, NULL, 'IPAY2022/07/5981', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 8, 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 (5983, '2022-07-24 15:11:32', 6039, NULL, NULL, 'IPAY2022/07/5982', NULL, 'cash', '', '', '', '', '', '', '236.4000', NULL, 29, NULL, 'received', '', '236.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 (5984, '2022-07-24 15:30:46', 6040, NULL, NULL, 'IPAY2022/07/5983', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 29, 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 (5985, '2022-07-24 16:00:55', 6041, NULL, NULL, 'IPAY2022/07/5984', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 29, 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 (5986, '2022-07-24 16:41:29', 6042, NULL, NULL, 'IPAY2022/07/5985', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (5987, '2022-07-24 16:49:13', 6043, NULL, NULL, 'IPAY2022/07/5986', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 29, 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 (5988, '2022-07-24 16:55:43', 6044, NULL, NULL, 'IPAY2022/07/5987', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 29, 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 (5989, '2022-07-24 16:59:28', 6045, NULL, NULL, 'IPAY2022/07/5988', NULL, 'cash', '', '', '', '', '', '', '410.5000', NULL, 17, NULL, 'received', '', '410.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5990, '2022-07-24 17:04:08', 6046, NULL, NULL, 'IPAY2022/07/5989', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 17, 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 (5991, '2022-07-24 20:37:02', 6047, NULL, NULL, 'IPAY2022/07/5990', NULL, 'cash', '', '', '', '', '', '', '330.7000', NULL, 11, NULL, 'received', '', '330.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 (5992, '2022-07-24 21:00:10', 6048, NULL, NULL, 'IPAY2022/07/5991', NULL, 'cash', '', '', '', '', '', '', '352.0000', NULL, 16, NULL, 'received', '', '352.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5993, '2022-07-24 21:30:01', 6049, NULL, NULL, 'IPAY2022/07/5992', NULL, 'cash', '', '', '', '', '', '', '367.7000', NULL, 22, NULL, 'received', '', '367.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 (5994, '2022-07-24 21:33:01', 6050, NULL, NULL, 'IPAY2022/07/5993', NULL, 'cash', '', '', '', '', '', '', '123.5000', NULL, 22, 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 (5995, '2022-07-24 21:44:21', 6051, NULL, NULL, 'IPAY2022/07/5994', NULL, 'cash', '', '', '', '', '', '', '71.5000', NULL, 16, NULL, 'received', '', '71.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5996, '2022-07-24 21:47:24', 6052, NULL, NULL, 'IPAY2022/07/5995', NULL, 'cash', '', '', '', '', '', '', '115.9000', NULL, 11, NULL, 'received', '', '115.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 (5997, '2022-07-25 14:21:46', 6053, NULL, NULL, 'IPAY2022/07/5996', NULL, 'cash', '', '', '', '', '', '', '119.2000', NULL, 21, NULL, 'received', '', '119.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 (5998, '2022-07-25 14:41:55', 6054, NULL, NULL, 'IPAY2022/07/5997', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 21, 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 (5999, '2022-07-25 14:42:15', 6055, NULL, NULL, 'IPAY2022/07/5998', NULL, 'cash', '', '', '', '', '', '', '621.6000', NULL, 17, NULL, 'received', '', '621.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 (6000, '2022-07-25 15:11:11', 6056, NULL, NULL, 'IPAY2022/07/5999', NULL, 'cash', '', '', '', '', '', '', '224.1000', NULL, 8, 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 (6001, '2022-07-25 19:46:13', 6057, NULL, NULL, 'IPAY2022/07/6000', NULL, 'cash', '', '', '', '', '', '', '280.7700', NULL, 28, NULL, 'received', '', '280.7700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6002, '2022-07-25 20:12:24', 6058, NULL, NULL, 'IPAY2022/07/6001', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 28, 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 (6003, '2022-07-25 20:31:28', 6059, NULL, NULL, 'IPAY2022/07/6002', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 28, 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 (6004, '2022-07-25 20:50:02', 6060, NULL, NULL, 'IPAY2022/07/6003', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 28, 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 (6005, '2022-07-25 20:56:43', 6061, NULL, NULL, 'IPAY2022/07/6004', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 28, 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 (6006, '2022-07-25 21:06:12', 6062, NULL, NULL, 'IPAY2022/07/6005', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 28, 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 (6007, '2022-07-25 21:10:44', 6063, NULL, NULL, 'IPAY2022/07/6006', NULL, 'cash', '', '', '', '', '', '', '550.9000', NULL, 11, NULL, 'received', '', '550.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 (6008, '2022-07-25 21:15:12', 6064, NULL, NULL, 'IPAY2022/07/6007', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 28, 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 (6009, '2022-07-25 21:15:20', 6065, NULL, NULL, 'IPAY2022/07/6008', NULL, 'cash', '', '', '', '', '', '', '212.9000', NULL, 17, NULL, 'received', '', '212.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 (6010, '2022-07-25 21:17:09', 6066, NULL, NULL, 'IPAY2022/07/6009', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 28, 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 (6011, '2022-07-25 21:26:45', 6067, NULL, NULL, 'IPAY2022/07/6010', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 28, 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 (6012, '2022-07-25 21:40:26', 6068, NULL, NULL, 'IPAY2022/07/6011', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 28, 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 (6013, '2022-07-25 21:43:04', 6069, NULL, NULL, 'IPAY2022/07/6012', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 28, 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 (6014, '2022-07-25 21:45:45', 6070, NULL, NULL, 'IPAY2022/07/6013', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 17, 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 (6015, '2022-07-25 21:48:20', 6071, NULL, NULL, 'IPAY2022/07/6014', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 28, 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 (6016, '2022-07-25 21:53:15', 6072, NULL, NULL, 'IPAY2022/07/6015', NULL, 'cash', '', '', '', '', '', '', '63.0000', NULL, 11, 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 (6017, '2022-07-26 11:33:35', 6073, NULL, NULL, 'IPAY2022/07/6016', NULL, 'cash', '', '', '', '', '', '', '174.7000', NULL, 29, NULL, 'received', '', '174.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 (6018, '2022-07-26 13:10:52', 6074, NULL, NULL, 'IPAY2022/07/6017', NULL, 'cash', '', '', '', '', '', '', '98.1000', NULL, 29, NULL, 'received', '', '98.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 (6019, '2022-07-26 14:43:26', 6075, NULL, NULL, 'IPAY2022/07/6018', NULL, 'cash', '', '', '', '', '', '', '387.7000', NULL, 17, NULL, 'received', '', '387.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 (6020, '2022-07-26 15:57:23', 6076, NULL, NULL, 'IPAY2022/07/6019', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 17, 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 (6021, '2022-07-26 15:58:53', 6077, NULL, NULL, 'IPAY2022/07/6020', NULL, 'cash', '', '', '', '', '', '', '71.0000', NULL, 8, 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 (6022, '2022-07-26 20:55:54', 6078, NULL, NULL, 'IPAY2022/07/6021', NULL, 'cash', '', '', '', '', '', '', '515.1000', NULL, 16, NULL, 'received', '', '515.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 (6023, '2022-07-26 21:32:27', 6079, NULL, NULL, 'IPAY2022/07/6022', NULL, 'cash', '', '', '', '', '', '', '462.4000', NULL, 22, NULL, 'received', '', '462.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 (6024, '2022-07-26 21:40:36', 6080, NULL, NULL, 'IPAY2022/07/6023', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 16, 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 (6025, '2022-07-26 21:56:54', 6081, NULL, NULL, 'IPAY2022/07/6024', NULL, 'cash', '', '', '', '', '', '', '194.6000', NULL, 11, NULL, 'received', '', '194.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 (6026, '2022-07-27 14:19:02', 6082, NULL, NULL, 'IPAY2022/07/6025', NULL, 'cash', '', '', '', '', '', '', '310.5000', NULL, 21, NULL, 'received', '', '310.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6027, '2022-07-27 14:38:35', 6083, NULL, NULL, 'IPAY2022/07/6026', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 21, 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 (6028, '2022-07-27 14:46:05', 6084, NULL, NULL, 'IPAY2022/07/6027', NULL, 'cash', '', '', '', '', '', '', '375.8000', NULL, 17, NULL, 'received', '', '375.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 (6029, '2022-07-27 15:09:11', 6085, NULL, NULL, 'IPAY2022/07/6028', NULL, 'cash', '', '', '', '', '', '', '33.6000', NULL, 17, NULL, 'received', '', '33.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 (6030, '2022-07-27 15:14:35', 6086, NULL, NULL, 'IPAY2022/07/6029', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 17, 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 (6031, '2022-07-27 15:41:21', 6087, NULL, NULL, 'IPAY2022/07/6030', NULL, 'cash', '', '', '', '', '', '', '399.4700', NULL, 8, NULL, 'received', '', '399.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 (6032, '2022-07-27 19:08:28', 6088, NULL, NULL, 'IPAY2022/07/6031', NULL, 'cash', '', '', '', '', '', '', '393.2000', NULL, 29, NULL, 'received', '', '393.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 (6033, '2022-07-27 20:10:27', 6089, NULL, NULL, 'IPAY2022/07/6032', NULL, 'cash', '', '', '', '', '', '', '112.5000', NULL, 29, 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 (6034, '2022-07-27 20:45:40', 6090, NULL, NULL, 'IPAY2022/07/6033', NULL, 'cash', '', '', '', '', '', '', '298.9000', NULL, 16, NULL, 'received', '', '298.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 (6035, '2022-07-27 20:48:04', 6091, NULL, NULL, 'IPAY2022/07/6034', NULL, 'cash', '', '', '', '', '', '', '37.9000', NULL, 29, NULL, 'received', '', '37.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 (6036, '2022-07-27 21:11:42', 6092, NULL, NULL, 'IPAY2022/07/6035', NULL, 'cash', '', '', '', '', '', '', '95.0000', NULL, 29, NULL, 'received', '', '95.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6037, '2022-07-27 21:26:40', 6093, NULL, NULL, 'IPAY2022/07/6036', NULL, 'cash', '', '', '', '', '', '', '43.0000', NULL, 29, 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 (6038, '2022-07-27 21:43:53', 6094, NULL, NULL, 'IPAY2022/07/6037', NULL, 'cash', '', '', '', '', '', '', '50.9000', NULL, 16, NULL, 'received', '', '50.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 (6039, '2022-07-27 21:44:12', 6095, NULL, NULL, 'IPAY2022/07/6038', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (6040, '2022-07-27 21:54:38', 6096, NULL, NULL, 'IPAY2022/07/6039', NULL, 'cash', '', '', '', '', '', '', '635.5400', NULL, 22, NULL, 'received', '', '635.5400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6041, '2022-07-28 09:33:16', 6097, NULL, NULL, 'IPAY2022/07/6040', NULL, 'cash', '', '', '', '', '', '', '673.6600', NULL, 21, NULL, 'received', '', '673.6600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6042, '2022-07-28 14:15:16', 6098, NULL, NULL, 'IPAY2022/07/6041', NULL, 'cash', '', '', '', '', '', '', '531.5000', NULL, 21, NULL, 'received', '', '531.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6043, '2022-07-28 14:50:35', 6099, NULL, NULL, 'IPAY2022/07/6042', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 21, 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 (6044, '2022-07-28 14:53:24', 6100, NULL, NULL, 'IPAY2022/07/6043', NULL, 'cash', '', '', '', '', '', '', '277.5000', NULL, 8, NULL, 'received', '', '277.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6045, '2022-07-28 15:34:24', 6101, NULL, NULL, 'IPAY2022/07/6044', NULL, 'cash', '', '', '', '', '', '', '271.4000', NULL, 17, NULL, 'received', '', '271.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 (6046, '2022-07-28 20:44:43', 6102, NULL, NULL, 'IPAY2022/07/6045', NULL, 'cash', '', '', '', '', '', '', '782.2000', NULL, 16, NULL, 'received', '', '782.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 (6047, '2022-07-28 21:38:10', 6103, NULL, NULL, 'IPAY2022/07/6046', NULL, 'cash', '', '', '', '', '', '', '641.6000', NULL, 11, NULL, 'received', '', '641.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 (6048, '2022-07-28 21:45:33', 6104, NULL, NULL, 'IPAY2022/07/6047', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 16, 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 (6049, '2022-07-28 21:52:29', 6105, NULL, NULL, 'IPAY2022/07/6048', NULL, 'cash', '', '', '', '', '', '', '25.2000', NULL, 11, NULL, 'received', '', '25.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 (6050, '2022-07-28 21:54:40', 6106, NULL, NULL, 'IPAY2022/07/6049', NULL, 'cash', '', '', '', '', '', '', '339.9000', NULL, 22, NULL, 'received', '', '339.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 (6051, '2022-07-29 11:41:23', 6107, NULL, NULL, 'IPAY2022/07/6050', NULL, 'cash', '', '', '', '', '', '', '83.0000', NULL, 28, 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 (6052, '2022-07-29 13:46:23', 6108, NULL, NULL, 'IPAY2022/07/6051', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 28, 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 (6053, '2022-07-29 14:07:27', 6109, NULL, NULL, 'IPAY2022/07/6052', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 28, 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 (6054, '2022-07-29 14:26:03', 6110, NULL, NULL, 'IPAY2022/07/6053', NULL, 'cash', '', '', '', '', '', '', '282.9000', NULL, 21, NULL, 'received', '', '282.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 (6055, '2022-07-29 14:47:25', 6111, NULL, NULL, 'IPAY2022/07/6054', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 28, 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 (6056, '2022-07-29 15:15:46', 6112, NULL, NULL, 'IPAY2022/07/6055', NULL, 'cash', '', '', '', '', '', '', '474.9000', NULL, 17, NULL, 'received', '', '474.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 (6057, '2022-07-29 15:16:52', 6113, NULL, NULL, 'IPAY2022/07/6056', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 17, 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 (6058, '2022-07-29 19:00:59', 6114, NULL, NULL, 'IPAY2022/07/6057', NULL, 'cash', '', '', '', '', '', '', '54.0000', NULL, 22, 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 (6059, '2022-07-29 19:16:49', 6115, NULL, NULL, 'IPAY2022/07/6058', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 11, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6060, '2022-07-29 20:53:53', 6116, NULL, NULL, 'IPAY2022/07/6059', NULL, 'cash', '', '', '', '', '', '', '622.0000', NULL, 16, NULL, 'received', '', '622.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6061, '2022-07-29 21:26:31', 6117, NULL, NULL, 'IPAY2022/07/6060', NULL, 'cash', '', '', '', '', '', '', '779.6000', NULL, 11, NULL, 'received', '', '779.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 (6062, '2022-07-29 21:31:03', 6118, NULL, NULL, 'IPAY2022/07/6061', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 16, 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 (6063, '2022-07-29 21:50:44', 6119, NULL, NULL, 'IPAY2022/07/6062', NULL, 'cash', '', '', '', '', '', '', '816.5000', NULL, 22, NULL, 'received', '', '816.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6064, '2022-07-29 21:58:18', 6120, NULL, NULL, 'IPAY2022/07/6063', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 11, 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 (6065, '2022-07-30 16:50:56', 6121, NULL, NULL, 'IPAY2022/07/6064', NULL, 'cash', '', '', '', '', '', '', '292.0000', NULL, 11, 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 (6066, '2022-07-30 16:56:18', 6122, NULL, NULL, 'IPAY2022/07/6065', NULL, 'cash', '', '', '', '', '', '', '484.7000', NULL, 8, NULL, 'received', '', '484.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 (6067, '2022-07-30 18:44:12', 6123, NULL, NULL, 'IPAY2022/07/6066', NULL, 'cash', '', '', '', '', '', '', '536.2000', NULL, 16, NULL, 'received', '', '536.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 (6068, '2022-07-30 20:06:30', 6124, NULL, NULL, 'IPAY2022/07/6067', NULL, 'cash', '', '', '', '', '', '', '481.7000', NULL, 11, NULL, 'received', '', '481.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 (6069, '2022-07-30 20:23:14', 6125, NULL, NULL, 'IPAY2022/07/6068', NULL, 'cash', '', '', '', '', '', '', '77.7000', NULL, 11, NULL, 'received', '', '77.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 (6070, '2022-07-30 20:41:41', 6126, NULL, NULL, 'IPAY2022/07/6069', NULL, 'cash', '', '', '', '', '', '', '403.5000', NULL, 16, NULL, 'received', '', '403.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6071, '2022-07-30 21:30:13', 6127, NULL, NULL, 'IPAY2022/07/6070', NULL, 'cash', '', '', '', '', '', '', '239.4000', NULL, 11, NULL, 'received', '', '239.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 (6072, '2022-07-30 21:43:25', 6128, NULL, NULL, 'IPAY2022/07/6071', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 16, 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 (6073, '2022-07-30 21:48:37', 6129, NULL, NULL, 'IPAY2022/07/6072', NULL, 'cash', '', '', '', '', '', '', '326.2000', NULL, 8, NULL, 'received', '', '326.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 (6074, '2022-07-30 22:05:43', 6130, NULL, NULL, 'IPAY2022/07/6073', NULL, 'cash', '', '', '', '', '', '', '126.0000', NULL, 11, 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 (6075, '2022-07-31 14:21:25', 6131, NULL, NULL, 'IPAY2022/07/6074', NULL, 'cash', '', '', '', '', '', '', '290.6000', NULL, 29, NULL, 'received', '', '290.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 (6076, '2022-07-31 15:35:52', 6132, NULL, NULL, 'IPAY2022/07/6075', NULL, 'cash', '', '', '', '', '', '', '93.0000', NULL, 29, 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 (6077, '2022-07-31 16:18:47', 6133, NULL, NULL, 'IPAY2022/07/6076', NULL, 'cash', '', '', '', '', '', '', '233.1000', NULL, 16, NULL, 'received', '', '233.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 (6078, '2022-07-31 16:19:07', 6134, NULL, NULL, 'IPAY2022/07/6077', NULL, 'cash', '', '', '', '', '', '', '59.1000', NULL, 29, NULL, 'received', '', '59.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 (6079, '2022-07-31 16:34:06', 6135, NULL, NULL, 'IPAY2022/07/6078', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (6080, '2022-07-31 17:09:50', 6136, NULL, NULL, 'IPAY2022/07/6079', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 16, 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 (6081, '2022-07-31 17:46:59', 6137, NULL, NULL, 'IPAY2022/07/6080', 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 (6082, '2022-07-31 20:57:45', 6138, NULL, NULL, 'IPAY2022/07/6081', NULL, 'cash', '', '', '', '', '', '', '460.0000', NULL, 11, NULL, 'received', '', '460.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6083, '2022-07-31 21:09:40', 6139, NULL, NULL, 'IPAY2022/07/6082', NULL, 'cash', '', '', '', '', '', '', '498.6000', NULL, 17, NULL, 'received', '', '498.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 (6084, '2022-07-31 21:25:25', 6140, NULL, NULL, 'IPAY2022/07/6083', NULL, 'cash', '', '', '', '', '', '', '256.0000', NULL, 22, NULL, 'received', '', '256.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6085, '2022-07-31 21:43:49', 6141, NULL, NULL, 'IPAY2022/07/6084', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 17, 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 (6086, '2022-07-31 21:56:41', 6142, NULL, NULL, 'IPAY2022/07/6085', NULL, 'cash', '', '', '', '', '', '', '54.9000', NULL, 11, NULL, 'received', '', '54.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 (6087, '2022-07-31 21:56:52', 6143, NULL, NULL, 'IPAY2022/07/6086', NULL, 'cash', '', '', '', '', '', '', '253.2000', NULL, 22, NULL, 'received', '', '253.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 (6088, '2022-08-01 13:31:35', 6144, NULL, NULL, 'IPAY2022/08/6087', NULL, 'cash', '', '', '', '', '', '', '422.0000', NULL, 21, NULL, 'received', '', '422.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6089, '2022-08-01 14:41:15', 6145, NULL, NULL, 'IPAY2022/08/6088', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 21, 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 (6090, '2022-08-01 15:23:48', 6146, NULL, NULL, 'IPAY2022/08/6089', NULL, 'cash', '', '', '', '', '', '', '252.0000', NULL, 8, NULL, 'received', '', '252.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6091, '2022-08-01 18:45:22', 6147, NULL, NULL, 'IPAY2022/08/6090', NULL, 'cash', '', '', '', '', '', '', '454.7000', NULL, 11, NULL, 'received', '', '454.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 (6092, '2022-08-01 18:46:08', 6148, NULL, NULL, 'IPAY2022/08/6091', 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 (6093, '2022-08-01 20:48:15', 6149, NULL, NULL, 'IPAY2022/08/6092', NULL, 'cash', '', '', '', '', '', '', '1384.5000', NULL, 17, NULL, 'received', '', '1384.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6094, '2022-08-01 21:27:44', 6150, NULL, NULL, 'IPAY2022/08/6093', NULL, 'cash', '', '', '', '', '', '', '121.5000', NULL, 17, NULL, 'received', '', '121.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6095, '2022-08-01 21:31:34', 6151, NULL, NULL, 'IPAY2022/08/6094', NULL, 'cash', '', '', '', '', '', '', '341.2000', NULL, 11, NULL, 'received', '', '341.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 (6096, '2022-08-01 21:54:28', 6152, NULL, NULL, 'IPAY2022/08/6095', 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 (6097, '2022-08-01 21:55:09', 6153, NULL, NULL, 'IPAY2022/08/6096', NULL, 'cash', '', '', '', '', '', '', '484.4000', NULL, 8, NULL, 'received', '', '484.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 (6098, '2022-08-02 10:35:07', 6154, NULL, NULL, 'IPAY2022/08/6097', NULL, 'cash', '', '', '', '', '', '', '176.5000', NULL, 29, NULL, 'received', '', '176.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6099, '2022-08-02 11:03:10', 6155, NULL, NULL, 'IPAY2022/08/6098', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 8, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6100, '2022-08-02 11:43:33', 6156, NULL, NULL, 'IPAY2022/08/6099', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 29, 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 (6101, '2022-08-02 12:46:00', 6157, NULL, NULL, 'IPAY2022/08/6100', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 29, 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 (6102, '2022-08-02 13:26:47', 6158, NULL, NULL, 'IPAY2022/08/6101', NULL, 'cash', '', '', '', '', '', '', '105.0000', NULL, 29, 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 (6103, '2022-08-02 15:00:06', 6159, NULL, NULL, 'IPAY2022/08/6102', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 8, 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 (6104, '2022-08-02 15:17:22', 6160, NULL, NULL, 'IPAY2022/08/6103', NULL, 'cash', '', '', '', '', '', '', '304.2000', NULL, 17, NULL, 'received', '', '304.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 (6105, '2022-08-02 18:41:09', 6161, NULL, NULL, 'IPAY2022/08/6104', NULL, 'cash', '', '', '', '', '', '', '387.9000', NULL, 16, NULL, 'received', '', '387.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 (6106, '2022-08-02 20:50:32', 6162, NULL, NULL, 'IPAY2022/08/6105', NULL, 'cash', '', '', '', '', '', '', '303.0000', NULL, 16, NULL, 'received', '', '303.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6107, '2022-08-02 21:40:25', 6163, NULL, NULL, 'IPAY2022/08/6106', NULL, 'cash', '', '', '', '', '', '', '167.5000', NULL, 16, 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 (6108, '2022-08-02 21:46:26', 6164, NULL, NULL, 'IPAY2022/08/6107', NULL, 'cash', '', '', '', '', '', '', '1049.0000', NULL, 22, NULL, 'received', '', '1049.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6109, '2022-08-03 13:50:00', 6165, NULL, NULL, 'IPAY2022/08/6108', NULL, 'cash', '', '', '', '', '', '', '258.7000', NULL, 21, NULL, 'received', '', '258.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 (6110, '2022-08-03 14:43:59', 6166, NULL, NULL, 'IPAY2022/08/6109', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 21, 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 (6111, '2022-08-03 15:42:58', 6167, NULL, NULL, 'IPAY2022/08/6110', NULL, 'cash', '', '', '', '', '', '', '364.3000', NULL, 17, NULL, 'received', '', '364.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 (6112, '2022-08-03 20:26:17', 6168, NULL, NULL, 'IPAY2022/08/6111', NULL, 'cash', '', '', '', '', '', '', '139.0000', NULL, 22, NULL, 'received', '', '139.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6113, '2022-08-03 21:14:59', 6169, NULL, NULL, 'IPAY2022/08/6112', NULL, 'cash', '', '', '', '', '', '', '668.0000', NULL, 16, NULL, 'received', '', '668.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6114, '2022-08-03 21:40:02', 6170, NULL, NULL, 'IPAY2022/08/6113', NULL, 'cash', '', '', '', '', '', '', '75.5000', NULL, 16, 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 (6115, '2022-08-03 21:52:24', 6171, NULL, NULL, 'IPAY2022/08/6114', NULL, 'cash', '', '', '', '', '', '', '794.0000', NULL, 22, NULL, 'received', '', '794.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6116, '2022-08-04 15:25:00', 6172, NULL, NULL, 'IPAY2022/08/6115', NULL, 'cash', '', '', '', '', '', '', '402.0000', NULL, 8, NULL, 'received', '', '402.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6117, '2022-08-04 15:33:43', 6173, NULL, NULL, 'IPAY2022/08/6116', 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 (6118, '2022-08-04 15:42:02', 6174, NULL, NULL, 'IPAY2022/08/6117', NULL, 'cash', '', '', '', '', '', '', '342.5000', NULL, 17, NULL, 'received', '', '342.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6119, '2022-08-04 16:59:48', 6175, NULL, NULL, 'IPAY2022/08/6118', NULL, 'cash', '', '', '', '', '', '', '56.9000', NULL, 11, NULL, 'received', '', '56.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 (6120, '2022-08-04 17:59:32', 6176, NULL, NULL, 'IPAY2022/08/6119', NULL, 'cash', '', '', '', '', '', '', '1025.4000', NULL, 11, NULL, 'received', '', '1025.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 (6121, '2022-08-04 19:18:06', 6177, NULL, NULL, 'IPAY2022/08/6120', NULL, 'cash', '', '', '', '', '', '', '1012.7000', NULL, 11, NULL, 'received', '', '1012.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 (6122, '2022-08-04 20:15:06', 6178, NULL, NULL, 'IPAY2022/08/6121', NULL, 'cash', '', '', '', '', '', '', '649.8000', NULL, 16, NULL, 'received', '', '649.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 (6123, '2022-08-04 20:53:15', 6179, NULL, NULL, 'IPAY2022/08/6122', NULL, 'cash', '', '', '', '', '', '', '412.5000', NULL, 11, NULL, 'received', '', '412.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6124, '2022-08-04 21:40:48', 6180, NULL, NULL, 'IPAY2022/08/6123', NULL, 'cash', '', '', '', '', '', '', '116.3000', NULL, 16, NULL, 'received', '', '116.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 (6125, '2022-08-04 21:51:03', 6181, NULL, NULL, 'IPAY2022/08/6124', NULL, 'cash', '', '', '', '', '', '', '424.7000', NULL, 22, NULL, 'received', '', '424.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 (6126, '2022-08-04 21:52:13', 6182, NULL, NULL, 'IPAY2022/08/6125', NULL, 'cash', '', '', '', '', '', '', '756.9000', NULL, 11, NULL, 'received', '', '756.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 (6127, '2022-08-04 21:53:04', 6183, NULL, NULL, 'IPAY2022/08/6126', 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 (6128, '2022-08-04 22:02:12', 6184, NULL, NULL, 'IPAY2022/08/6127', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 22, 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 (6129, '2022-08-04 22:09:05', 6185, NULL, NULL, 'IPAY2022/08/6128', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 22, 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 (6130, '2022-08-05 12:52:44', 6186, NULL, NULL, 'IPAY2022/08/6129', NULL, 'cash', '', '', '', '', '', '', '122.6000', NULL, 28, NULL, 'received', '', '122.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 (6131, '2022-08-05 13:49:17', 6187, NULL, NULL, 'IPAY2022/08/6130', NULL, 'cash', '', '', '', '', '', '', '54.1000', NULL, 28, NULL, 'received', '', '54.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 (6132, '2022-08-05 14:15:54', 6188, NULL, NULL, 'IPAY2022/08/6131', NULL, 'cash', '', '', '', '', '', '', '301.5000', NULL, 21, NULL, 'received', '', '301.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6133, '2022-08-05 15:18:23', 6189, NULL, NULL, 'IPAY2022/08/6132', NULL, 'cash', '', '', '', '', '', '', '33.8000', NULL, 21, NULL, 'received', '', '33.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 (6134, '2022-08-05 16:00:11', 6190, NULL, NULL, 'IPAY2022/08/6133', NULL, 'cash', '', '', '', '', '', '', '570.5000', NULL, 17, NULL, 'received', '', '570.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6135, '2022-08-05 19:44:03', 6191, NULL, NULL, 'IPAY2022/08/6134', NULL, 'cash', '', '', '', '', '', '', '387.1000', NULL, 16, NULL, 'received', '', '387.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 (6136, '2022-08-05 20:40:46', 6192, NULL, NULL, 'IPAY2022/08/6135', NULL, 'cash', '', '', '', '', '', '', '816.8000', NULL, 11, NULL, 'received', '', '816.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 (6137, '2022-08-05 21:38:02', 6193, NULL, NULL, 'IPAY2022/08/6136', NULL, 'cash', '', '', '', '', '', '', '356.3000', NULL, 16, NULL, 'received', '', '356.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 (6138, '2022-08-05 21:39:18', 6194, NULL, NULL, 'IPAY2022/08/6137', NULL, 'cash', '', '', '', '', '', '', '203.7000', NULL, 11, NULL, 'received', '', '203.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 (6139, '2022-08-05 21:53:04', 6195, NULL, NULL, 'IPAY2022/08/6138', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 11, 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 (6140, '2022-08-05 22:13:45', 6196, NULL, NULL, 'IPAY2022/08/6139', NULL, 'cash', '', '', '', '', '', '', '719.5000', NULL, 8, NULL, 'received', '', '719.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6141, '2022-08-06 10:28:58', 6197, NULL, NULL, 'IPAY2022/08/6140', NULL, 'cash', '', '', '', '', '', '', '75.5000', NULL, 29, 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 (6142, '2022-08-06 10:29:21', 6198, NULL, NULL, 'IPAY2022/08/6141', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (6143, '2022-08-06 11:30:06', 6199, NULL, NULL, 'IPAY2022/08/6142', NULL, 'cash', '', '', '', '', '', '', '221.9000', NULL, 29, NULL, 'received', '', '221.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 (6144, '2022-08-06 11:57:21', 6200, NULL, NULL, 'IPAY2022/08/6143', NULL, 'cash', '', '', '', '', '', '', '333.5000', NULL, 29, NULL, 'received', '', '333.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6145, '2022-08-06 12:52:41', 6201, NULL, NULL, 'IPAY2022/08/6144', NULL, 'cash', '', '', '', '', '', '', '231.0000', NULL, 29, NULL, 'received', '', '231.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6146, '2022-08-06 13:22:33', 6202, NULL, NULL, 'IPAY2022/08/6145', NULL, 'cash', '', '', '', '', '', '', '93.0000', NULL, 29, 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 (6147, '2022-08-06 14:00:36', 6203, NULL, NULL, 'IPAY2022/08/6146', NULL, 'cash', '', '', '', '', '', '', '121.7000', NULL, 29, NULL, 'received', '', '121.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 (6148, '2022-08-06 14:28:20', 6204, NULL, NULL, 'IPAY2022/08/6147', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (6149, '2022-08-06 14:44:40', 6205, NULL, NULL, 'IPAY2022/08/6148', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 29, 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 (6150, '2022-08-06 14:49:16', 6206, NULL, NULL, 'IPAY2022/08/6149', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 29, 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 (6151, '2022-08-06 14:56:22', 6207, NULL, NULL, 'IPAY2022/08/6150', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 29, 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 (6152, '2022-08-06 14:57:16', 6208, NULL, NULL, 'IPAY2022/08/6151', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 29, 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 (6153, '2022-08-06 18:41:12', 6209, NULL, NULL, 'IPAY2022/08/6152', NULL, 'cash', '', '', '', '', '', '', '872.3000', NULL, 16, NULL, 'received', '', '872.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 (6154, '2022-08-06 19:20:55', 6210, NULL, NULL, 'IPAY2022/08/6153', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 22, 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 (6155, '2022-08-06 20:15:11', 6211, NULL, NULL, 'IPAY2022/08/6154', NULL, 'cash', '', '', '', '', '', '', '455.9000', NULL, 16, NULL, 'received', '', '455.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 (6156, '2022-08-06 21:33:09', 6212, NULL, NULL, 'IPAY2022/08/6155', NULL, 'cash', '', '', '', '', '', '', '1023.5000', NULL, 11, NULL, 'received', '', '1023.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6157, '2022-08-06 21:33:22', 6213, NULL, NULL, 'IPAY2022/08/6156', NULL, 'cash', '', '', '', '', '', '', '185.5000', NULL, 22, NULL, 'received', '', '185.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6158, '2022-08-06 21:39:45', 6214, NULL, NULL, 'IPAY2022/08/6157', NULL, 'cash', '', '', '', '', '', '', '35.4000', NULL, 16, NULL, 'received', '', '35.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 (6159, '2022-08-06 21:56:50', 6215, NULL, NULL, 'IPAY2022/08/6158', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 22, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6160, '2022-08-07 15:55:39', 6216, NULL, NULL, 'IPAY2022/08/6159', NULL, 'cash', '', '', '', '', '', '', '309.0000', NULL, 21, NULL, 'received', '', '309.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6161, '2022-08-07 16:22:24', 6217, NULL, NULL, 'IPAY2022/08/6160', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 21, 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 (6162, '2022-08-07 16:51:03', 6218, NULL, NULL, 'IPAY2022/08/6161', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 21, 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 (6163, '2022-08-07 17:20:52', 6219, NULL, NULL, 'IPAY2022/08/6162', NULL, 'cash', '', '', '', '', '', '', '361.8000', NULL, 17, NULL, 'received', '', '361.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 (6164, '2022-08-07 17:24:04', 6220, NULL, NULL, 'IPAY2022/08/6163', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 17, 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 (6165, '2022-08-07 19:23:39', 6221, NULL, NULL, 'IPAY2022/08/6164', NULL, 'cash', '', '', '', '', '', '', '275.0000', NULL, 16, NULL, 'received', '', '275.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6166, '2022-08-07 19:52:45', 6222, NULL, NULL, 'IPAY2022/08/6165', NULL, 'cash', '', '', '', '', '', '', '171.0000', NULL, 16, NULL, 'received', '', '171.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6167, '2022-08-07 20:47:10', 6223, NULL, NULL, 'IPAY2022/08/6166', NULL, 'cash', '', '', '', '', '', '', '222.9000', NULL, 16, NULL, 'received', '', '222.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 (6168, '2022-08-07 21:42:30', 6224, NULL, NULL, 'IPAY2022/08/6167', NULL, 'cash', '', '', '', '', '', '', '202.0000', NULL, 16, NULL, 'received', '', '202.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6169, '2022-08-07 21:45:16', 6225, NULL, NULL, 'IPAY2022/08/6168', NULL, 'cash', '', '', '', '', '', '', '575.4000', NULL, 11, NULL, 'received', '', '575.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 (6170, '2022-08-07 21:52:56', 6226, NULL, NULL, 'IPAY2022/08/6169', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 11, 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 (6171, '2022-08-07 22:04:22', 6227, NULL, NULL, 'IPAY2022/08/6170', NULL, 'cash', '', '', '', '', '', '', '386.9000', NULL, 22, NULL, 'received', '', '386.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 (6172, '2022-08-08 13:20:00', 6228, NULL, NULL, 'IPAY2022/08/6171', NULL, 'cash', '', '', '', '', '', '', '546.8000', NULL, 21, NULL, 'received', '', '546.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 (6173, '2022-08-08 14:37:26', 6229, NULL, NULL, 'IPAY2022/08/6172', NULL, 'cash', '', '', '', '', '', '', '135.5000', NULL, 21, NULL, 'received', '', '135.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6174, '2022-08-08 17:50:31', 6230, NULL, NULL, 'IPAY2022/08/6173', 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 (6175, '2022-08-08 20:13:53', 6231, NULL, NULL, 'IPAY2022/08/6174', NULL, 'cash', '', '', '', '', '', '', '109.5000', NULL, 28, 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 (6176, '2022-08-08 21:04:00', 6232, NULL, NULL, 'IPAY2022/08/6175', NULL, 'cash', '', '', '', '', '', '', '826.4000', NULL, 17, NULL, 'received', '', '826.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 (6177, '2022-08-08 21:40:07', 6233, NULL, NULL, 'IPAY2022/08/6176', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 17, 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 (6178, '2022-08-08 21:49:53', 6234, NULL, NULL, 'IPAY2022/08/6177', NULL, 'cash', '', '', '', '', '', '', '757.8000', NULL, 11, NULL, 'received', '', '757.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 (6179, '2022-08-08 21:51:16', 6235, NULL, NULL, 'IPAY2022/08/6178', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 11, 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 (6180, '2022-08-09 11:02:53', 6236, NULL, NULL, 'IPAY2022/08/6179', NULL, 'cash', '', '', '', '', '', '', '361.2000', NULL, 29, NULL, 'received', '', '361.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 (6181, '2022-08-09 13:12:30', 6237, NULL, NULL, 'IPAY2022/08/6180', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 29, 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 (6182, '2022-08-09 13:15:20', 6238, NULL, NULL, 'IPAY2022/08/6181', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 29, 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 (6183, '2022-08-09 14:24:26', 6239, NULL, NULL, 'IPAY2022/08/6182', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 29, NULL, 'received', '', '45.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6184, '2022-08-09 14:38:36', 6240, NULL, NULL, 'IPAY2022/08/6183', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 29, 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 (6185, '2022-08-09 14:43:25', 6241, NULL, NULL, 'IPAY2022/08/6184', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 29, 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 (6186, '2022-08-09 14:44:04', 6242, NULL, NULL, 'IPAY2022/08/6185', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 8, 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 (6187, '2022-08-09 15:01:04', 6243, NULL, NULL, 'IPAY2022/08/6186', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 29, 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 (6188, '2022-08-09 15:16:44', 6244, NULL, NULL, 'IPAY2022/08/6187', NULL, 'cash', '', '', '', '', '', '', '482.8000', NULL, 17, NULL, 'received', '', '482.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 (6189, '2022-08-09 20:26:38', 6245, NULL, NULL, 'IPAY2022/08/6188', NULL, 'cash', '', '', '', '', '', '', '201.5000', NULL, 11, NULL, 'received', '', '201.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6190, '2022-08-09 20:27:44', 6246, NULL, NULL, 'IPAY2022/08/6189', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 11, 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 (6191, '2022-08-09 20:51:33', 6247, NULL, NULL, 'IPAY2022/08/6190', NULL, 'cash', '', '', '', '', '', '', '765.7000', NULL, 16, NULL, 'received', '', '765.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 (6192, '2022-08-09 21:39:54', 6248, NULL, NULL, 'IPAY2022/08/6191', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 16, 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 (6193, '2022-08-09 21:57:32', 6249, NULL, NULL, 'IPAY2022/08/6192', NULL, 'cash', '', '', '', '', '', '', '682.5000', NULL, 11, NULL, 'received', '', '682.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6194, '2022-08-09 21:59:30', 6250, NULL, NULL, 'IPAY2022/08/6193', NULL, 'cash', '', '', '', '', '', '', '238.6000', NULL, 22, NULL, 'received', '', '238.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 (6195, '2022-08-10 13:22:19', 6251, NULL, NULL, 'IPAY2022/08/6194', NULL, 'cash', '', '', '', '', '', '', '185.6000', NULL, 21, NULL, 'received', '', '185.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 (6196, '2022-08-10 15:04:48', 6252, NULL, NULL, 'IPAY2022/08/6195', NULL, 'cash', '', '', '', '', '', '', '383.3000', NULL, 17, NULL, 'received', '', '383.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 (6197, '2022-08-10 16:27:24', 6253, NULL, NULL, 'IPAY2022/08/6196', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 21, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6198, '2022-08-10 16:43:50', 6254, NULL, NULL, 'IPAY2022/08/6197', NULL, 'cash', '', '', '', '', '', '', '244.4000', NULL, 29, NULL, 'received', '', '244.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 (6199, '2022-08-10 18:00:49', 6255, NULL, NULL, 'IPAY2022/08/6198', NULL, 'cash', '', '', '', '', '', '', '94.4000', NULL, 29, NULL, 'received', '', '94.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 (6200, '2022-08-10 19:08:47', 6256, NULL, NULL, 'IPAY2022/08/6199', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 29, 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 (6201, '2022-08-10 19:49:31', 6257, NULL, NULL, 'IPAY2022/08/6200', NULL, 'cash', '', '', '', '', '', '', '150.5000', NULL, 29, NULL, 'received', '', '150.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6202, '2022-08-10 20:27:14', 6258, NULL, NULL, 'IPAY2022/08/6201', NULL, 'cash', '', '', '', '', '', '', '95.1000', NULL, 29, NULL, 'received', '', '95.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 (6203, '2022-08-10 20:45:33', 6259, NULL, NULL, 'IPAY2022/08/6202', NULL, 'cash', '', '', '', '', '', '', '622.0000', NULL, 16, NULL, 'received', '', '622.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6204, '2022-08-10 20:49:24', 6260, NULL, NULL, 'IPAY2022/08/6203', NULL, 'cash', '', '', '', '', '', '', '61.5000', NULL, 29, NULL, 'received', '', '61.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6205, '2022-08-10 20:59:46', 6261, NULL, NULL, 'IPAY2022/08/6204', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 29, 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 (6206, '2022-08-10 21:17:41', 6262, NULL, NULL, 'IPAY2022/08/6205', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (6207, '2022-08-10 21:24:56', 6263, NULL, NULL, 'IPAY2022/08/6206', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (6208, '2022-08-10 21:35:04', 6264, NULL, NULL, 'IPAY2022/08/6207', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 29, 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 (6209, '2022-08-10 21:40:40', 6265, NULL, NULL, 'IPAY2022/08/6208', NULL, 'cash', '', '', '', '', '', '', '96.7000', NULL, 16, NULL, 'received', '', '96.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 (6210, '2022-08-10 21:42:26', 6266, NULL, NULL, 'IPAY2022/08/6209', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 29, 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 (6211, '2022-08-10 21:53:08', 6267, NULL, NULL, 'IPAY2022/08/6210', NULL, 'cash', '', '', '', '', '', '', '336.5000', NULL, 22, NULL, 'received', '', '336.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6212, '2022-08-11 12:22:56', 6268, NULL, NULL, 'IPAY2022/08/6211', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 17, 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 (6213, '2022-08-11 13:50:07', 6269, NULL, NULL, 'IPAY2022/08/6212', NULL, 'cash', '', '', '', '', '', '', '426.3000', NULL, 21, NULL, 'received', '', '426.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 (6214, '2022-08-11 14:28:36', 6270, NULL, NULL, 'IPAY2022/08/6213', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 21, 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 (6215, '2022-08-11 15:19:27', 6271, NULL, NULL, 'IPAY2022/08/6214', NULL, 'cash', '', '', '', '', '', '', '375.0000', NULL, 17, NULL, 'received', '', '375.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6216, '2022-08-11 15:57:48', 6272, NULL, NULL, 'IPAY2022/08/6215', NULL, 'cash', '', '', '', '', '', '', '390.6000', NULL, 8, NULL, 'received', '', '390.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 (6217, '2022-08-11 20:00:56', 6273, NULL, NULL, 'IPAY2022/08/6216', NULL, 'cash', '', '', '', '', '', '', '583.2000', NULL, 16, NULL, 'received', '', '583.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 (6218, '2022-08-11 21:38:18', 6274, NULL, NULL, 'IPAY2022/08/6217', NULL, 'cash', '', '', '', '', '', '', '73.1000', NULL, 16, NULL, 'received', '', '73.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 (6219, '2022-08-11 21:49:13', 6275, NULL, NULL, 'IPAY2022/08/6218', NULL, 'cash', '', '', '', '', '', '', '388.7000', NULL, 22, NULL, 'received', '', '388.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 (6220, '2022-08-11 21:54:34', 6276, NULL, NULL, 'IPAY2022/08/6219', NULL, 'cash', '', '', '', '', '', '', '851.7000', NULL, 11, NULL, 'received', '', '851.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 (6221, '2022-08-12 09:59:56', 6277, NULL, NULL, 'IPAY2022/08/6220', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 17, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6222, '2022-08-12 12:03:56', 6278, NULL, NULL, 'IPAY2022/08/6221', NULL, 'cash', '', '', '', '', '', '', '119.0000', NULL, 28, NULL, 'received', '', '119.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6223, '2022-08-12 13:07:13', 6279, NULL, NULL, 'IPAY2022/08/6222', NULL, 'cash', '', '', '', '', '', '', '352.4000', NULL, 21, NULL, 'received', '', '352.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 (6224, '2022-08-12 13:54:37', 6280, NULL, NULL, 'IPAY2022/08/6223', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 28, 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 (6225, '2022-08-12 14:40:00', 6281, NULL, NULL, 'IPAY2022/08/6224', NULL, 'cash', '', '', '', '', '', '', '112.0000', NULL, 21, NULL, 'received', '', '112.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6226, '2022-08-12 15:10:33', 6282, NULL, NULL, 'IPAY2022/08/6225', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 21, 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 (6227, '2022-08-12 15:12:58', 6283, NULL, NULL, 'IPAY2022/08/6226', NULL, 'cash', '', '', '', '', '', '', '546.2000', NULL, 17, NULL, 'received', '', '546.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 (6228, '2022-08-12 19:40:06', 6284, NULL, NULL, 'IPAY2022/08/6227', NULL, 'cash', '', '', '', '', '', '', '389.0000', NULL, 16, 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 (6229, '2022-08-12 21:39:07', 6285, NULL, NULL, 'IPAY2022/08/6228', NULL, 'cash', '', '', '', '', '', '', '312.5000', NULL, 16, NULL, 'received', '', '312.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6230, '2022-08-12 21:48:09', 6286, NULL, NULL, 'IPAY2022/08/6229', NULL, 'cash', '', '', '', '', '', '', '1097.5000', NULL, 11, NULL, 'received', '', '1097.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6231, '2022-08-12 21:55:32', 6287, NULL, NULL, 'IPAY2022/08/6230', NULL, 'cash', '', '', '', '', '', '', '366.7000', NULL, 22, NULL, 'received', '', '366.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 (6232, '2022-08-13 13:26:26', 6288, NULL, NULL, 'IPAY2022/08/6231', NULL, 'cash', '', '', '', '', '', '', '407.3000', NULL, 21, NULL, 'received', '', '407.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 (6233, '2022-08-13 14:41:51', 6289, NULL, NULL, 'IPAY2022/08/6232', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 21, 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 (6234, '2022-08-13 15:51:42', 6290, NULL, NULL, 'IPAY2022/08/6233', NULL, 'cash', '', '', '', '', '', '', '656.0000', NULL, 8, NULL, 'received', '', '656.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6235, '2022-08-13 19:01:53', 6291, NULL, NULL, 'IPAY2022/08/6234', NULL, 'cash', '', '', '', '', '', '', '752.9000', NULL, 16, NULL, 'received', '', '752.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 (6236, '2022-08-13 20:22:45', 6292, NULL, NULL, 'IPAY2022/08/6235', NULL, 'cash', '', '', '', '', '', '', '779.1000', NULL, 11, NULL, 'received', '', '779.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 (6237, '2022-08-13 20:23:43', 6293, NULL, NULL, 'IPAY2022/08/6236', NULL, 'cash', '', '', '', '', '', '', '292.7000', NULL, 16, NULL, 'received', '', '292.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 (6238, '2022-08-13 21:22:42', 6294, NULL, NULL, 'IPAY2022/08/6237', NULL, 'cash', '', '', '', '', '', '', '331.4000', NULL, 16, NULL, 'received', '', '331.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 (6239, '2022-08-13 21:33:38', 6295, NULL, NULL, 'IPAY2022/08/6238', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 11, 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 (6240, '2022-08-13 21:44:42', 6296, NULL, NULL, 'IPAY2022/08/6239', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 16, 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 (6241, '2022-08-13 22:15:37', 6297, NULL, NULL, 'IPAY2022/08/6240', NULL, 'cash', '', '', '', '', '', '', '849.4000', NULL, 8, NULL, 'received', '', '849.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 (6242, '2022-08-14 16:59:24', 6298, NULL, NULL, 'IPAY2022/08/6241', NULL, 'cash', '', '', '', '', '', '', '373.5000', NULL, 16, NULL, 'received', '', '373.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6243, '2022-08-14 17:28:54', 6299, NULL, NULL, 'IPAY2022/08/6242', NULL, 'cash', '', '', '', '', '', '', '138.2000', NULL, 11, NULL, 'received', '', '138.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 (6244, '2022-08-14 20:29:35', 6300, NULL, NULL, 'IPAY2022/08/6243', NULL, 'cash', '', '', '', '', '', '', '429.5000', NULL, 21, NULL, 'received', '', '429.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6245, '2022-08-14 21:32:44', 6301, NULL, NULL, 'IPAY2022/08/6244', NULL, 'cash', '', '', '', '', '', '', '72.0000', NULL, 21, NULL, 'received', '', '72.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6246, '2022-08-14 21:39:19', 6302, NULL, NULL, 'IPAY2022/08/6245', NULL, 'cash', '', '', '', '', '', '', '825.1000', NULL, 17, NULL, 'received', '', '825.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 (6247, '2022-08-14 21:49:40', 6303, NULL, NULL, 'IPAY2022/08/6246', NULL, 'cash', '', '', '', '', '', '', '409.5000', NULL, 22, NULL, 'received', '', '409.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6248, '2022-08-15 13:21:33', 6304, NULL, NULL, 'IPAY2022/08/6247', NULL, 'cash', '', '', '', '', '', '', '274.1000', NULL, 21, NULL, 'received', '', '274.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 (6249, '2022-08-15 14:09:26', 6305, NULL, NULL, 'IPAY2022/08/6248', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 21, 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 (6250, '2022-08-15 15:15:15', 6306, NULL, NULL, 'IPAY2022/08/6249', NULL, 'cash', '', '', '', '', '', '', '139.5000', NULL, 21, 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 (6251, '2022-08-15 15:40:15', 6307, NULL, NULL, 'IPAY2022/08/6250', NULL, 'cash', '', '', '', '', '', '', '254.9000', NULL, 8, NULL, 'received', '', '254.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 (6252, '2022-08-15 16:40:45', 6308, NULL, NULL, 'IPAY2022/08/6251', NULL, 'cash', '', '', '', '', '', '', '197.5000', NULL, 29, NULL, 'received', '', '197.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6253, '2022-08-15 16:54:03', 6309, NULL, NULL, 'IPAY2022/08/6252', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (6254, '2022-08-15 18:06:04', 6310, NULL, NULL, 'IPAY2022/08/6253', NULL, 'cash', '', '', '', '', '', '', '99.5000', NULL, 29, NULL, 'received', '', '99.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6255, '2022-08-15 18:53:00', 6311, NULL, NULL, 'IPAY2022/08/6254', NULL, 'cash', '', '', '', '', '', '', '1150.5000', NULL, 17, NULL, 'received', '', '1150.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6256, '2022-08-15 18:55:47', 6312, NULL, NULL, 'IPAY2022/08/6255', NULL, 'cash', '', '', '', '', '', '', '97.2000', NULL, 29, NULL, 'received', '', '97.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 (6257, '2022-08-15 19:46:02', 6313, NULL, NULL, 'IPAY2022/08/6256', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 17, 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 (6258, '2022-08-15 20:44:09', 6314, NULL, NULL, 'IPAY2022/08/6257', NULL, 'cash', '', '', '', '', '', '', '96.8000', NULL, 29, NULL, 'received', '', '96.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 (6259, '2022-08-15 20:47:25', 6315, NULL, NULL, 'IPAY2022/08/6258', NULL, 'cash', '', '', '', '', '', '', '325.5000', NULL, 8, 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 (6260, '2022-08-15 21:27:46', 6316, NULL, NULL, 'IPAY2022/08/6259', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 29, 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 (6261, '2022-08-15 21:37:18', 6317, NULL, NULL, 'IPAY2022/08/6260', NULL, 'cash', '', '', '', '', '', '', '577.0000', NULL, 17, NULL, 'received', '', '577.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6262, '2022-08-15 21:38:35', 6318, NULL, NULL, 'IPAY2022/08/6261', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 8, 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 (6263, '2022-08-16 13:32:15', 6319, NULL, NULL, 'IPAY2022/08/6262', NULL, 'cash', '', '', '', '', '', '', '379.0000', NULL, 29, 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 (6264, '2022-08-16 14:01:18', 6320, NULL, NULL, 'IPAY2022/08/6263', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 29, 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 (6265, '2022-08-16 14:09:51', 6321, NULL, NULL, 'IPAY2022/08/6264', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 29, 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 (6266, '2022-08-16 14:16:01', 6322, NULL, NULL, 'IPAY2022/08/6265', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 29, 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 (6267, '2022-08-16 14:25:10', 6323, NULL, NULL, 'IPAY2022/08/6266', NULL, 'cash', '', '', '', '', '', '', '207.0000', NULL, 8, NULL, 'received', '', '207.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6268, '2022-08-16 14:26:01', 6324, NULL, NULL, 'IPAY2022/08/6267', NULL, 'cash', '', '', '', '', '', '', '675.3000', NULL, 16, NULL, 'received', '', '675.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 (6269, '2022-08-16 14:38:50', 6325, NULL, NULL, 'IPAY2022/08/6268', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 29, 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 (6270, '2022-08-16 15:21:28', 6326, NULL, NULL, 'IPAY2022/08/6269', NULL, 'cash', '', '', '', '', '', '', '302.5000', NULL, 16, 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 (6271, '2022-08-16 15:45:53', 6327, NULL, NULL, 'IPAY2022/08/6270', NULL, 'cash', '', '', '', '', '', '', '27.4000', NULL, 16, NULL, 'received', '', '27.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 (6272, '2022-08-16 18:39:00', 6328, NULL, NULL, 'IPAY2022/08/6271', NULL, 'cash', '', '', '', '', '', '', '382.8000', NULL, 21, NULL, 'received', '', '382.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 (6273, '2022-08-16 21:02:43', 6329, NULL, NULL, 'IPAY2022/08/6272', NULL, 'cash', '', '', '', '', '', '', '214.2000', NULL, 21, 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 (6274, '2022-08-16 21:18:09', 6330, NULL, NULL, 'IPAY2022/08/6273', NULL, 'cash', '', '', '', '', '', '', '387.5000', NULL, 17, NULL, 'received', '', '387.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6275, '2022-08-16 21:45:20', 6331, NULL, NULL, 'IPAY2022/08/6274', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 21, 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 (6276, '2022-08-16 21:46:29', 6332, NULL, NULL, 'IPAY2022/08/6275', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 17, 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 (6277, '2022-08-16 21:55:06', 6333, NULL, NULL, 'IPAY2022/08/6276', NULL, 'cash', '', '', '', '', '', '', '610.4000', NULL, 22, NULL, 'received', '', '610.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 (6278, '2022-08-16 22:06:34', 6334, NULL, NULL, 'IPAY2022/08/6277', NULL, 'cash', '', '', '', '', '', '', '121.6000', NULL, 21, NULL, 'received', '', '121.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 (6279, '2022-08-17 10:25:36', 6335, NULL, NULL, 'IPAY2022/08/6278', NULL, 'cash', '', '', '', '', '', '', '207.0000', NULL, 29, NULL, 'received', '', '207.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6280, '2022-08-17 13:52:36', 6336, NULL, NULL, 'IPAY2022/08/6279', NULL, 'cash', '', '', '', '', '', '', '126.5000', NULL, 29, NULL, 'received', '', '126.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6281, '2022-08-17 14:01:40', 6337, NULL, NULL, 'IPAY2022/08/6280', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 29, 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 (6282, '2022-08-17 14:16:03', 6338, NULL, NULL, 'IPAY2022/08/6281', NULL, 'cash', '', '', '', '', '', '', '346.2000', NULL, 16, NULL, 'received', '', '346.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 (6283, '2022-08-17 14:16:59', 6339, NULL, NULL, 'IPAY2022/08/6282', NULL, 'cash', '', '', '', '', '', '', '83.0000', NULL, 29, 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 (6284, '2022-08-17 14:40:44', 6340, NULL, NULL, 'IPAY2022/08/6283', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 29, 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 (6285, '2022-08-17 15:01:10', 6341, NULL, NULL, 'IPAY2022/08/6284', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 16, 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 (6286, '2022-08-17 15:06:04', 6342, NULL, NULL, 'IPAY2022/08/6285', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 8, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6287, '2022-08-17 20:14:02', 6343, NULL, NULL, 'IPAY2022/08/6286', NULL, 'cash', '', '', '', '', '', '', '597.8000', NULL, 21, NULL, 'received', '', '597.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 (6288, '2022-08-17 21:34:07', 6344, NULL, NULL, 'IPAY2022/08/6287', NULL, 'cash', '', '', '', '', '', '', '254.7000', NULL, 21, NULL, 'received', '', '254.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 (6289, '2022-08-17 21:36:45', 6345, NULL, NULL, 'IPAY2022/08/6288', NULL, 'cash', '', '', '', '', '', '', '479.9000', NULL, 22, NULL, 'received', '', '479.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 (6290, '2022-08-17 21:42:34', 6346, NULL, NULL, 'IPAY2022/08/6289', NULL, 'cash', '', '', '', '', '', '', '746.2000', NULL, 17, NULL, 'received', '', '746.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 (6291, '2022-08-17 21:50:08', 6347, NULL, NULL, 'IPAY2022/08/6290', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 22, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6292, '2022-08-17 22:00:23', 6348, NULL, NULL, 'IPAY2022/08/6291', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 21, 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 (6293, '2022-08-18 14:04:24', 6349, NULL, NULL, 'IPAY2022/08/6292', NULL, 'cash', '', '', '', '', '', '', '134.0000', NULL, 8, 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 (6294, '2022-08-18 14:14:22', 6350, NULL, NULL, 'IPAY2022/08/6293', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 8, 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 (6295, '2022-08-18 14:23:45', 6351, NULL, NULL, 'IPAY2022/08/6294', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 8, 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 (6296, '2022-08-18 14:24:19', 6352, NULL, NULL, 'IPAY2022/08/6295', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 8, 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 (6297, '2022-08-18 14:41:23', 6353, NULL, NULL, 'IPAY2022/08/6296', NULL, 'cash', '', '', '', '', '', '', '351.6000', NULL, 21, NULL, 'received', '', '351.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 (6298, '2022-08-18 18:27:30', 6354, NULL, NULL, 'IPAY2022/08/6297', NULL, 'cash', '', '', '', '', '', '', '107.5000', NULL, 29, 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 (6299, '2022-08-18 18:46:19', 6355, NULL, NULL, 'IPAY2022/08/6298', NULL, 'cash', '', '', '', '', '', '', '24.9000', NULL, 29, NULL, 'received', '', '24.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 (6300, '2022-08-18 19:16:47', 6356, NULL, NULL, 'IPAY2022/08/6299', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 29, 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 (6301, '2022-08-18 20:03:54', 6357, NULL, NULL, 'IPAY2022/08/6300', NULL, 'cash', '', '', '', '', '', '', '86.0000', NULL, 29, 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 (6302, '2022-08-18 20:30:25', 6358, NULL, NULL, 'IPAY2022/08/6301', NULL, 'cash', '', '', '', '', '', '', '995.6000', NULL, 17, NULL, 'received', '', '995.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 (6303, '2022-08-18 20:30:36', 6359, NULL, NULL, 'IPAY2022/08/6302', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 29, 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 (6304, '2022-08-18 20:48:40', 6360, NULL, NULL, 'IPAY2022/08/6303', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 29, 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 (6305, '2022-08-18 21:05:47', 6361, NULL, NULL, 'IPAY2022/08/6304', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 29, 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 (6306, '2022-08-18 21:32:59', 6362, NULL, NULL, 'IPAY2022/08/6305', NULL, 'cash', '', '', '', '', '', '', '10.7000', NULL, 29, NULL, 'received', '', '10.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 (6307, '2022-08-18 21:34:36', 6363, NULL, NULL, 'IPAY2022/08/6306', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (6308, '2022-08-18 21:41:12', 6364, NULL, NULL, 'IPAY2022/08/6307', NULL, 'cash', '', '', '', '', '', '', '205.0000', NULL, 17, NULL, 'received', '', '205.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6309, '2022-08-18 21:41:43', 6365, NULL, NULL, 'IPAY2022/08/6308', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 29, 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 (6310, '2022-08-18 21:50:49', 6366, NULL, NULL, 'IPAY2022/08/6309', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 29, 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 (6311, '2022-08-18 21:59:47', 6367, NULL, NULL, 'IPAY2022/08/6310', NULL, 'cash', '', '', '', '', '', '', '337.4000', NULL, 22, NULL, 'received', '', '337.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 (6312, '2022-08-19 12:44:38', 6368, NULL, NULL, 'IPAY2022/08/6311', NULL, 'cash', '', '', '', '', '', '', '324.7000', NULL, 21, NULL, 'received', '', '324.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 (6313, '2022-08-19 13:01:52', 6369, NULL, NULL, 'IPAY2022/08/6312', NULL, 'cash', '', '', '', '', '', '', '178.5000', NULL, 28, NULL, 'received', '', '178.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6314, '2022-08-19 14:47:20', 6370, NULL, NULL, 'IPAY2022/08/6313', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 28, 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 (6315, '2022-08-19 14:53:07', 6371, NULL, NULL, 'IPAY2022/08/6314', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 21, 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 (6316, '2022-08-19 20:21:00', 6372, NULL, NULL, 'IPAY2022/08/6315', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 17, 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 (6317, '2022-08-19 20:56:44', 6373, NULL, NULL, 'IPAY2022/08/6316', NULL, 'cash', '', '', '', '', '', '', '870.8000', NULL, 17, NULL, 'received', '', '870.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 (6318, '2022-08-19 21:43:48', 6374, NULL, NULL, 'IPAY2022/08/6317', NULL, 'cash', '', '', '', '', '', '', '314.9000', NULL, 22, NULL, 'received', '', '314.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 (6319, '2022-08-19 21:44:34', 6375, NULL, NULL, 'IPAY2022/08/6318', NULL, 'cash', '', '', '', '', '', '', '72.5000', NULL, 17, 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 (6320, '2022-08-19 21:47:57', 6376, NULL, NULL, 'IPAY2022/08/6319', NULL, 'cash', '', '', '', '', '', '', '818.5400', NULL, 11, NULL, 'received', '', '818.5400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6321, '2022-08-19 21:55:40', 6377, NULL, NULL, 'IPAY2022/08/6320', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 11, 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 (6322, '2022-08-20 12:33:42', 6378, NULL, NULL, 'IPAY2022/08/6321', NULL, 'cash', '', '', '', '', '', '', '191.8600', NULL, 8, NULL, 'received', '', '191.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 (6323, '2022-08-20 16:00:21', 6379, NULL, NULL, 'IPAY2022/08/6322', NULL, 'cash', '', '', '', '', '', '', '297.0000', NULL, 8, NULL, 'received', '', '297.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6324, '2022-08-20 16:21:23', 6380, NULL, NULL, 'IPAY2022/08/6323', NULL, 'cash', '', '', '', '', '', '', '357.2000', NULL, 21, NULL, 'received', '', '357.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 (6325, '2022-08-20 16:51:17', 6381, NULL, NULL, 'IPAY2022/08/6324', NULL, 'cash', '', '', '', '', '', '', '644.5000', NULL, 16, NULL, 'received', '', '644.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6326, '2022-08-20 20:31:58', 6382, NULL, NULL, 'IPAY2022/08/6325', NULL, 'cash', '', '', '', '', '', '', '265.5000', NULL, 16, NULL, 'received', '', '265.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6327, '2022-08-20 21:44:03', 6383, NULL, NULL, 'IPAY2022/08/6326', NULL, 'cash', '', '', '', '', '', '', '661.1000', NULL, 11, NULL, 'received', '', '661.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 (6328, '2022-08-20 21:44:29', 6384, NULL, NULL, 'IPAY2022/08/6327', NULL, 'cash', '', '', '', '', '', '', '85.7000', NULL, 16, NULL, 'received', '', '85.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 (6329, '2022-08-20 22:00:25', 6385, NULL, NULL, 'IPAY2022/08/6328', NULL, 'cash', '', '', '', '', '', '', '816.1800', NULL, 8, NULL, 'received', '', '816.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 (6330, '2022-08-21 14:00:21', 6386, NULL, NULL, 'IPAY2022/08/6329', NULL, 'cash', '', '', '', '', '', '', '199.0000', NULL, 17, 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 (6331, '2022-08-21 14:52:33', 6387, NULL, NULL, 'IPAY2022/08/6330', NULL, 'cash', '', '', '', '', '', '', '290.9000', NULL, 29, NULL, 'received', '', '290.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 (6332, '2022-08-21 16:07:38', 6388, NULL, NULL, 'IPAY2022/08/6331', NULL, 'cash', '', '', '', '', '', '', '128.5000', NULL, 29, NULL, 'received', '', '128.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6333, '2022-08-21 16:14:03', 6389, NULL, NULL, 'IPAY2022/08/6332', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 29, 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 (6334, '2022-08-21 16:51:49', 6390, NULL, NULL, 'IPAY2022/08/6333', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 29, 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 (6335, '2022-08-21 16:57:17', 6391, NULL, NULL, 'IPAY2022/08/6334', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (6336, '2022-08-21 17:01:13', 6392, NULL, NULL, 'IPAY2022/08/6335', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 29, 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 (6337, '2022-08-21 17:03:20', 6393, NULL, NULL, 'IPAY2022/08/6336', NULL, 'cash', '', '', '', '', '', '', '290.3000', NULL, 17, 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 (6338, '2022-08-21 19:52:17', 6394, NULL, NULL, 'IPAY2022/08/6337', NULL, 'cash', '', '', '', '', '', '', '544.5000', NULL, 16, NULL, 'received', '', '544.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6339, '2022-08-21 21:20:01', 6395, NULL, NULL, 'IPAY2022/08/6338', NULL, 'cash', '', '', '', '', '', '', '402.9000', NULL, 22, NULL, 'received', '', '402.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 (6340, '2022-08-21 21:20:40', 6396, NULL, NULL, 'IPAY2022/08/6339', NULL, 'cash', '', '', '', '', '', '', '130.8000', NULL, 16, NULL, 'received', '', '130.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 (6341, '2022-08-21 21:40:12', 6397, NULL, NULL, 'IPAY2022/08/6340', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 16, 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 (6342, '2022-08-21 21:52:22', 6398, NULL, NULL, 'IPAY2022/08/6341', NULL, 'cash', '', '', '', '', '', '', '571.0000', NULL, 11, NULL, 'received', '', '571.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6343, '2022-08-22 14:58:46', 6399, NULL, NULL, 'IPAY2022/08/6342', NULL, 'cash', '', '', '', '', '', '', '347.3000', NULL, 21, NULL, 'received', '', '347.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 (6344, '2022-08-22 15:58:45', 6400, NULL, NULL, 'IPAY2022/08/6343', NULL, 'cash', '', '', '', '', '', '', '217.0800', NULL, 8, NULL, 'received', '', '217.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 (6345, '2022-08-22 18:22:18', 6401, NULL, NULL, 'IPAY2022/08/6344', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 11, 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 (6346, '2022-08-22 19:12:23', 6402, NULL, NULL, 'IPAY2022/08/6345', NULL, 'cash', '', '', '', '', '', '', '131.0000', NULL, 28, 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 (6347, '2022-08-22 19:29:18', 6403, NULL, NULL, 'IPAY2022/08/6346', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 17, 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 (6348, '2022-08-22 20:08:58', 6404, NULL, NULL, 'IPAY2022/08/6347', NULL, 'cash', '', '', '', '', '', '', '122.0000', NULL, 28, 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 (6349, '2022-08-22 20:22:05', 6405, NULL, NULL, 'IPAY2022/08/6348', NULL, 'cash', '', '', '', '', '', '', '694.6000', NULL, 17, NULL, 'received', '', '694.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 (6350, '2022-08-22 20:32:38', 6406, NULL, NULL, 'IPAY2022/08/6349', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 28, 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 (6351, '2022-08-22 21:02:42', 6407, NULL, NULL, 'IPAY2022/08/6350', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 28, 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 (6352, '2022-08-22 21:25:09', 6408, NULL, NULL, 'IPAY2022/08/6351', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 28, 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 (6353, '2022-08-22 21:40:40', 6409, NULL, NULL, 'IPAY2022/08/6352', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 28, 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 (6354, '2022-08-22 21:40:52', 6410, NULL, NULL, 'IPAY2022/08/6353', NULL, 'cash', '', '', '', '', '', '', '213.5000', NULL, 17, NULL, 'received', '', '213.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6355, '2022-08-22 21:41:08', 6411, NULL, NULL, 'IPAY2022/08/6354', NULL, 'cash', '', '', '', '', '', '', '310.5000', NULL, 11, NULL, 'received', '', '310.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6356, '2022-08-22 21:42:28', 6412, NULL, NULL, 'IPAY2022/08/6355', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 17, 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 (6357, '2022-08-22 21:46:56', 6413, NULL, NULL, 'IPAY2022/08/6356', NULL, 'cash', '', '', '', '', '', '', '74.0000', NULL, 17, NULL, 'received', '', '74.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6358, '2022-08-23 13:12:36', 6414, NULL, NULL, 'IPAY2022/08/6357', NULL, 'cash', '', '', '', '', '', '', '390.5000', NULL, 29, NULL, 'received', '', '390.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6359, '2022-08-23 13:50:07', 6415, NULL, NULL, 'IPAY2022/08/6358', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 29, 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 (6360, '2022-08-23 14:04:40', 6416, NULL, NULL, 'IPAY2022/08/6359', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 29, 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 (6361, '2022-08-23 14:30:13', 6417, NULL, NULL, 'IPAY2022/08/6360', NULL, 'cash', '', '', '', '', '', '', '24.4000', NULL, 29, NULL, 'received', '', '24.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 (6362, '2022-08-23 14:53:46', 6418, NULL, NULL, 'IPAY2022/08/6361', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 29, 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 (6363, '2022-08-23 15:34:08', 6419, NULL, NULL, 'IPAY2022/08/6362', NULL, 'cash', '', '', '', '', '', '', '259.0000', NULL, 17, NULL, 'received', '', '259.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6364, '2022-08-23 15:35:26', 6420, NULL, NULL, 'IPAY2022/08/6363', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 17, 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 (6365, '2022-08-23 20:13:40', 6421, NULL, NULL, 'IPAY2022/08/6364', NULL, 'cash', '', '', '', '', '', '', '822.9000', NULL, 16, NULL, 'received', '', '822.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 (6366, '2022-08-23 21:41:06', 6422, NULL, NULL, 'IPAY2022/08/6365', NULL, 'cash', '', '', '', '', '', '', '56.5000', NULL, 16, NULL, 'received', '', '56.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6367, '2022-08-23 21:48:52', 6423, NULL, NULL, 'IPAY2022/08/6366', NULL, 'cash', '', '', '', '', '', '', '235.4000', NULL, 22, NULL, 'received', '', '235.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 (6368, '2022-08-23 21:54:08', 6424, NULL, NULL, 'IPAY2022/08/6367', NULL, 'cash', '', '', '', '', '', '', '758.5000', NULL, 11, NULL, 'received', '', '758.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6369, '2022-08-24 10:55:14', 6425, NULL, NULL, 'IPAY2022/08/6368', NULL, 'cash', '', '', '', '', '', '', '245.3000', NULL, 29, NULL, 'received', '', '245.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 (6370, '2022-08-24 11:21:59', 6426, NULL, NULL, 'IPAY2022/08/6369', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 29, 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 (6371, '2022-08-24 11:23:32', 6427, NULL, NULL, 'IPAY2022/08/6370', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (6372, '2022-08-24 11:55:53', 6428, NULL, NULL, 'IPAY2022/08/6371', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 29, 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 (6373, '2022-08-24 13:37:55', 6429, NULL, NULL, 'IPAY2022/08/6372', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 29, 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 (6374, '2022-08-24 14:10:42', 6430, NULL, NULL, 'IPAY2022/08/6373', NULL, 'cash', '', '', '', '', '', '', '62.5000', NULL, 29, NULL, 'received', '', '62.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6375, '2022-08-24 15:02:32', 6431, NULL, NULL, 'IPAY2022/08/6374', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (6376, '2022-08-24 15:20:46', 6432, NULL, NULL, 'IPAY2022/08/6375', NULL, 'cash', '', '', '', '', '', '', '276.0000', NULL, 8, 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 (6377, '2022-08-24 16:08:32', 6433, NULL, NULL, 'IPAY2022/08/6376', NULL, 'cash', '', '', '', '', '', '', '263.5000', NULL, 17, 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 (6378, '2022-08-24 20:16:23', 6434, NULL, NULL, 'IPAY2022/08/6377', NULL, 'cash', '', '', '', '', '', '', '322.9000', NULL, 16, NULL, 'received', '', '322.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 (6379, '2022-08-24 20:52:15', 6435, NULL, NULL, 'IPAY2022/08/6378', NULL, 'cash', '', '', '', '', '', '', '677.5000', NULL, 21, NULL, 'received', '', '677.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6380, '2022-08-24 21:31:57', 6436, NULL, NULL, 'IPAY2022/08/6379', NULL, 'cash', '', '', '', '', '', '', '49.6000', NULL, 21, NULL, 'received', '', '49.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 (6381, '2022-08-24 21:43:05', 6437, NULL, NULL, 'IPAY2022/08/6380', NULL, 'cash', '', '', '', '', '', '', '223.0000', NULL, 16, 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 (6382, '2022-08-24 22:04:34', 6438, NULL, NULL, 'IPAY2022/08/6381', NULL, 'cash', '', '', '', '', '', '', '439.9000', NULL, 22, NULL, 'received', '', '439.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 (6383, '2022-08-24 23:05:34', 6439, NULL, NULL, 'IPAY2022/08/6382', NULL, 'cash', '', '', '', '', '', '', '318.0000', NULL, 4, NULL, 'received', '', '318.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6384, '2022-08-25 13:24:14', 6440, NULL, NULL, 'IPAY2022/08/6383', NULL, 'cash', '', '', '', '', '', '', '576.9000', NULL, 21, NULL, 'received', '', '576.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 (6385, '2022-08-25 14:33:44', 6441, NULL, NULL, 'IPAY2022/08/6384', NULL, 'cash', '', '', '', '', '', '', '177.9000', NULL, 21, NULL, 'received', '', '177.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 (6386, '2022-08-25 14:55:55', 6442, NULL, NULL, 'IPAY2022/08/6385', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 21, 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 (6387, '2022-08-25 15:00:03', 6443, NULL, NULL, 'IPAY2022/08/6386', NULL, 'cash', '', '', '', '', '', '', '196.4000', NULL, 8, NULL, 'received', '', '196.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 (6388, '2022-08-25 16:02:50', 6444, NULL, NULL, 'IPAY2022/08/6387', NULL, 'cash', '', '', '', '', '', '', '365.9000', NULL, 17, NULL, 'received', '', '365.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 (6389, '2022-08-25 20:22:54', 6445, NULL, NULL, 'IPAY2022/08/6388', NULL, 'cash', '', '', '', '', '', '', '369.1000', NULL, 16, NULL, 'received', '', '369.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 (6390, '2022-08-25 21:40:16', 6446, NULL, NULL, 'IPAY2022/08/6389', NULL, 'cash', '', '', '', '', '', '', '91.9000', NULL, 16, NULL, 'received', '', '91.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 (6391, '2022-08-25 21:41:20', 6447, NULL, NULL, 'IPAY2022/08/6390', NULL, 'cash', '', '', '', '', '', '', '724.6400', NULL, 11, NULL, 'received', '', '724.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6392, '2022-08-25 21:48:41', 6448, NULL, NULL, 'IPAY2022/08/6391', NULL, 'cash', '', '', '', '', '', '', '372.2000', NULL, 22, NULL, 'received', '', '372.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 (6393, '2022-08-26 13:10:38', 6449, NULL, NULL, 'IPAY2022/08/6392', NULL, 'cash', '', '', '', '', '', '', '313.1000', NULL, 21, NULL, 'received', '', '313.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 (6394, '2022-08-26 14:17:29', 6450, NULL, NULL, 'IPAY2022/08/6393', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 21, 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 (6395, '2022-08-26 14:41:54', 6451, NULL, NULL, 'IPAY2022/08/6394', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 21, 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 (6396, '2022-08-26 14:53:08', 6452, NULL, NULL, 'IPAY2022/08/6395', NULL, 'cash', '', '', '', '', '', '', '141.0000', NULL, 22, 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 (6397, '2022-08-26 18:31:32', 6453, NULL, NULL, 'IPAY2022/08/6396', NULL, 'cash', '', '', '', '', '', '', '231.5000', NULL, 28, 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 (6398, '2022-08-26 18:42:08', 6454, NULL, NULL, 'IPAY2022/08/6397', NULL, 'cash', '', '', '', '', '', '', '501.5000', NULL, 17, 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 (6399, '2022-08-26 19:36:30', 6455, NULL, NULL, 'IPAY2022/08/6398', NULL, 'cash', '', '', '', '', '', '', '55.4000', NULL, 28, NULL, 'received', '', '55.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 (6400, '2022-08-26 20:27:05', 6456, NULL, NULL, 'IPAY2022/08/6399', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 28, 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 (6401, '2022-08-26 20:41:31', 6457, NULL, NULL, 'IPAY2022/08/6400', NULL, 'cash', '', '', '', '', '', '', '71.9800', NULL, 28, NULL, 'received', '', '71.9800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6402, '2022-08-26 20:48:10', 6458, NULL, NULL, 'IPAY2022/08/6401', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 28, 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 (6403, '2022-08-26 21:09:08', 6459, NULL, NULL, 'IPAY2022/08/6402', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 28, 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 (6404, '2022-08-26 21:14:24', 6460, NULL, NULL, 'IPAY2022/08/6403', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 28, 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 (6405, '2022-08-26 21:20:18', 6461, NULL, NULL, 'IPAY2022/08/6404', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 28, 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 (6406, '2022-08-26 21:32:20', 6462, NULL, NULL, 'IPAY2022/08/6405', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 28, 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 (6407, '2022-08-26 21:36:01', 6463, NULL, NULL, 'IPAY2022/08/6406', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 28, 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 (6408, '2022-08-26 21:42:08', 6464, NULL, NULL, 'IPAY2022/08/6407', NULL, 'cash', '', '', '', '', '', '', '286.4000', NULL, 16, NULL, 'received', '', '286.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 (6409, '2022-08-27 13:58:33', 6465, NULL, NULL, 'IPAY2022/08/6408', NULL, 'cash', '', '', '', '', '', '', '205.5000', NULL, 21, NULL, 'received', '', '205.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6410, '2022-08-27 14:29:19', 6466, NULL, NULL, 'IPAY2022/08/6409', NULL, 'cash', '', '', '', '', '', '', '135.0000', NULL, 8, 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 (6411, '2022-08-27 14:42:50', 6467, NULL, NULL, 'IPAY2022/08/6410', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 21, 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 (6412, '2022-08-27 15:16:57', 6468, NULL, NULL, 'IPAY2022/08/6411', NULL, 'cash', '', '', '', '', '', '', '354.5000', NULL, 8, NULL, 'received', '', '354.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6413, '2022-08-27 18:36:09', 6469, NULL, NULL, 'IPAY2022/08/6412', NULL, 'cash', '', '', '', '', '', '', '852.9000', NULL, 16, NULL, 'received', '', '852.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 (6414, '2022-08-27 19:35:18', 6470, NULL, NULL, 'IPAY2022/08/6413', NULL, 'cash', '', '', '', '', '', '', '248.5000', NULL, 8, NULL, 'received', '', '248.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6415, '2022-08-27 19:50:02', 6471, NULL, NULL, 'IPAY2022/08/6414', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 8, 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 (6416, '2022-08-27 20:33:38', 6472, NULL, NULL, 'IPAY2022/08/6415', NULL, 'cash', '', '', '', '', '', '', '718.7400', NULL, 11, NULL, 'received', '', '718.7400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6417, '2022-08-27 20:47:53', 6473, NULL, NULL, 'IPAY2022/08/6416', NULL, 'cash', '', '', '', '', '', '', '502.3000', NULL, 11, NULL, 'received', '', '502.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 (6418, '2022-08-27 20:57:58', 6474, NULL, NULL, 'IPAY2022/08/6417', NULL, 'cash', '', '', '', '', '', '', '170.5000', NULL, 16, 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 (6419, '2022-08-27 21:22:52', 6475, NULL, NULL, 'IPAY2022/08/6418', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 8, 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 (6420, '2022-08-27 21:27:32', 6476, NULL, NULL, 'IPAY2022/08/6419', 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 (6421, '2022-08-27 21:40:58', 6477, NULL, NULL, 'IPAY2022/08/6420', NULL, 'cash', '', '', '', '', '', '', '199.6000', NULL, 16, NULL, 'received', '', '199.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 (6422, '2022-08-27 21:49:49', 6478, NULL, NULL, 'IPAY2022/08/6421', NULL, 'cash', '', '', '', '', '', '', '115.5000', NULL, 11, NULL, 'received', '', '115.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6423, '2022-08-27 22:00:24', 6479, NULL, NULL, 'IPAY2022/08/6422', NULL, 'cash', '', '', '', '', '', '', '54.0000', NULL, 11, 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 (6424, '2022-08-28 15:43:29', 6480, NULL, NULL, 'IPAY2022/08/6423', NULL, 'cash', '', '', '', '', '', '', '328.6000', NULL, 21, NULL, 'received', '', '328.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 (6425, '2022-08-28 16:24:53', 6481, NULL, NULL, 'IPAY2022/08/6424', NULL, 'cash', '', '', '', '', '', '', '164.8000', NULL, 16, NULL, 'received', '', '164.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 (6426, '2022-08-28 17:06:34', 6482, NULL, NULL, 'IPAY2022/08/6425', NULL, 'cash', '', '', '', '', '', '', '171.6000', NULL, 21, NULL, 'received', '', '171.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 (6427, '2022-08-28 17:10:07', 6483, NULL, NULL, 'IPAY2022/08/6426', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 16, 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 (6428, '2022-08-28 21:18:25', 6484, NULL, NULL, 'IPAY2022/08/6427', NULL, 'cash', '', '', '', '', '', '', '404.4000', NULL, 17, NULL, 'received', '', '404.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 (6429, '2022-08-28 21:47:13', 6485, NULL, NULL, 'IPAY2022/08/6428', NULL, 'cash', '', '', '', '', '', '', '604.4000', NULL, 22, NULL, 'received', '', '604.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 (6430, '2022-08-28 21:56:40', 6486, NULL, NULL, 'IPAY2022/08/6429', NULL, 'cash', '', '', '', '', '', '', '486.7000', NULL, 11, NULL, 'received', '', '486.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 (6431, '2022-08-29 11:07:45', 6487, NULL, NULL, 'IPAY2022/08/6430', NULL, 'cash', '', '', '', '', '', '', '172.9000', NULL, 29, NULL, 'received', '', '172.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 (6432, '2022-08-29 12:25:48', 6488, NULL, NULL, 'IPAY2022/08/6431', NULL, 'cash', '', '', '', '', '', '', '159.6000', NULL, 29, NULL, 'received', '', '159.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 (6433, '2022-08-29 13:38:01', 6489, NULL, NULL, 'IPAY2022/08/6432', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (6434, '2022-08-29 13:45:16', 6490, NULL, NULL, 'IPAY2022/08/6433', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 29, 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 (6435, '2022-08-29 14:03:55', 6491, NULL, NULL, 'IPAY2022/08/6434', NULL, 'cash', '', '', '', '', '', '', '33.2000', NULL, 29, NULL, 'received', '', '33.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 (6436, '2022-08-29 14:09:25', 6492, NULL, NULL, 'IPAY2022/08/6435', NULL, 'cash', '', '', '', '', '', '', '84.2000', NULL, 29, NULL, 'received', '', '84.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 (6437, '2022-08-29 18:29:17', 6493, NULL, NULL, 'IPAY2022/08/6436', NULL, 'cash', '', '', '', '', '', '', '267.7000', NULL, 8, NULL, 'received', '', '267.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 (6438, '2022-08-29 20:54:16', 6494, NULL, NULL, 'IPAY2022/08/6437', NULL, 'cash', '', '', '', '', '', '', '557.1000', NULL, 11, NULL, 'received', '', '557.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 (6439, '2022-08-29 20:55:04', 6495, NULL, NULL, 'IPAY2022/08/6438', NULL, 'cash', '', '', '', '', '', '', '1166.7000', NULL, 17, NULL, 'received', '', '1166.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 (6440, '2022-08-29 21:17:12', 6496, NULL, NULL, 'IPAY2022/08/6439', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 11, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6441, '2022-08-29 21:40:59', 6497, NULL, NULL, 'IPAY2022/08/6440', NULL, 'cash', '', '', '', '', '', '', '91.5000', NULL, 17, NULL, 'received', '', '91.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6442, '2022-08-29 21:47:12', 6498, NULL, NULL, 'IPAY2022/08/6441', NULL, 'cash', '', '', '', '', '', '', '644.8000', NULL, 8, NULL, 'received', '', '644.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 (6443, '2022-08-29 21:54:55', 6499, NULL, NULL, 'IPAY2022/08/6442', NULL, 'cash', '', '', '', '', '', '', '105.5000', NULL, 11, NULL, 'received', '', '105.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6444, '2022-08-29 22:04:11', 6500, NULL, NULL, 'IPAY2022/08/6443', 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 (6445, '2022-08-30 10:17:18', 6501, NULL, NULL, 'IPAY2022/08/6444', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 21, 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 (6446, '2022-08-30 14:19:17', 6502, NULL, NULL, 'IPAY2022/08/6445', NULL, 'cash', '', '', '', '', '', '', '356.5000', NULL, 16, NULL, 'received', '', '356.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6447, '2022-08-30 14:29:48', 6503, NULL, NULL, 'IPAY2022/08/6446', NULL, 'cash', '', '', '', '', '', '', '604.0000', NULL, 21, NULL, 'received', '', '604.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6448, '2022-08-30 15:01:20', 6504, NULL, NULL, 'IPAY2022/08/6447', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 16, 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 (6449, '2022-08-30 15:03:31', 6505, NULL, NULL, 'IPAY2022/08/6448', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 16, 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 (6450, '2022-08-30 15:45:54', 6506, NULL, NULL, 'IPAY2022/08/6449', NULL, 'cash', '', '', '', '', '', '', '309.4000', NULL, 8, NULL, 'received', '', '309.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 (6451, '2022-08-30 18:01:04', 6507, NULL, NULL, 'IPAY2022/08/6450', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 11, 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 (6452, '2022-08-30 21:29:06', 6508, NULL, NULL, 'IPAY2022/08/6451', NULL, 'cash', '', '', '', '', '', '', '663.3000', NULL, 17, NULL, 'received', '', '663.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 (6453, '2022-08-30 21:38:19', 6509, NULL, NULL, 'IPAY2022/08/6452', NULL, 'cash', '', '', '', '', '', '', '2.4000', NULL, 17, NULL, 'received', '', '2.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 (6454, '2022-08-30 21:39:05', 6510, NULL, NULL, 'IPAY2022/08/6453', NULL, 'cash', '', '', '', '', '', '', '426.6000', NULL, 11, NULL, 'received', '', '426.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 (6455, '2022-08-30 21:47:28', 6511, NULL, NULL, 'IPAY2022/08/6454', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 17, 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 (6456, '2022-08-30 22:00:02', 6512, NULL, NULL, 'IPAY2022/08/6455', NULL, 'cash', '', '', '', '', '', '', '812.0000', NULL, 22, NULL, 'received', '', '812.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6457, '2022-08-30 22:03:14', 6513, NULL, NULL, 'IPAY2022/08/6456', NULL, 'cash', '', '', '', '', '', '', '18.9000', NULL, 11, NULL, 'received', '', '18.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 (6458, '2022-08-31 14:33:23', 6514, NULL, NULL, 'IPAY2022/08/6457', NULL, 'cash', '', '', '', '', '', '', '312.1000', NULL, 16, 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 (6459, '2022-08-31 14:50:57', 6515, NULL, NULL, 'IPAY2022/08/6458', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 16, 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 (6460, '2022-08-31 15:17:43', 6516, NULL, NULL, 'IPAY2022/08/6459', NULL, 'cash', '', '', '', '', '', '', '378.0000', NULL, 47, NULL, 'received', '', '378.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6461, '2022-08-31 15:18:01', 6517, NULL, NULL, 'IPAY2022/08/6460', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 47, 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 (6462, '2022-08-31 16:07:54', 6518, NULL, NULL, 'IPAY2022/08/6461', NULL, 'cash', '', '', '', '', '', '', '374.0000', NULL, 33, NULL, 'received', '', '374.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6463, '2022-08-31 21:05:03', 6519, NULL, NULL, 'IPAY2022/08/6462', NULL, 'cash', '', '', '', '', '', '', '1050.7000', NULL, 17, NULL, 'received', '', '1050.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 (6464, '2022-08-31 21:42:23', 6520, NULL, NULL, 'IPAY2022/08/6463', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 17, 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 (6465, '2022-08-31 21:52:04', 6521, NULL, NULL, 'IPAY2022/08/6464', NULL, 'cash', '', '', '', '', '', '', '353.5000', NULL, 22, 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 (6466, '2022-09-01 14:59:20', 6522, NULL, NULL, 'IPAY2022/09/6465', NULL, 'cash', '', '', '', '', '', '', '378.2000', NULL, 16, NULL, 'received', '', '378.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 (6467, '2022-09-01 15:10:54', 6523, NULL, NULL, 'IPAY2022/09/6466', NULL, 'cash', '', '', '', '', '', '', '198.6000', NULL, 47, NULL, 'received', '', '198.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 (6468, '2022-09-01 15:11:28', 6524, NULL, NULL, 'IPAY2022/09/6467', NULL, 'cash', '', '', '', '', '', '', '94.0000', NULL, 47, 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 (6469, '2022-09-01 15:12:23', 6525, NULL, NULL, 'IPAY2022/09/6468', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 47, 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 (6470, '2022-09-01 15:26:15', 6526, NULL, NULL, 'IPAY2022/09/6469', NULL, 'cash', '', '', '', '', '', '', '886.9300', NULL, 33, NULL, 'received', '', '886.9300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6471, '2022-09-01 16:32:57', 6527, NULL, NULL, 'IPAY2022/09/6470', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 16, 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 (6472, '2022-09-01 17:09:41', 6528, NULL, NULL, 'IPAY2022/09/6471', NULL, 'cash', '', '', '', '', '', '', '871.2200', NULL, 21, NULL, 'received', '', '871.2200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6473, '2022-09-01 20:44:48', 6529, NULL, NULL, 'IPAY2022/09/6472', NULL, 'cash', '', '', '', '', '', '', '850.3000', NULL, 21, NULL, 'received', '', '850.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 (6474, '2022-09-01 21:21:30', 6530, NULL, NULL, 'IPAY2022/09/6473', NULL, 'cash', '', '', '', '', '', '', '821.5000', NULL, 17, NULL, 'received', '', '821.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6475, '2022-09-01 21:36:10', 6531, NULL, NULL, 'IPAY2022/09/6474', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 17, 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 (6476, '2022-09-01 21:45:46', 6532, NULL, NULL, 'IPAY2022/09/6475', NULL, 'cash', '', '', '', '', '', '', '139.6000', NULL, 21, NULL, 'received', '', '139.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 (6477, '2022-09-01 22:09:23', 6533, NULL, NULL, 'IPAY2022/09/6476', NULL, 'cash', '', '', '', '', '', '', '261.0000', NULL, 22, NULL, 'received', '', '261.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6478, '2022-09-01 22:11:17', 6534, NULL, NULL, 'IPAY2022/09/6477', NULL, 'cash', '', '', '', '', '', '', '41.2000', NULL, 21, NULL, 'received', '', '41.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 (6479, '2022-09-02 14:38:59', 6535, NULL, NULL, 'IPAY2022/09/6478', NULL, 'cash', '', '', '', '', '', '', '434.7000', NULL, 16, NULL, 'received', '', '434.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 (6480, '2022-09-02 14:55:57', 6536, NULL, NULL, 'IPAY2022/09/6479', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 47, 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 (6481, '2022-09-02 21:29:49', 6537, NULL, NULL, 'IPAY2022/09/6480', NULL, 'cash', '', '', '', '', '', '', '858.9000', NULL, 17, NULL, 'received', '', '858.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 (6482, '2022-09-02 21:32:33', 6538, NULL, NULL, 'IPAY2022/09/6481', NULL, 'cash', '', '', '', '', '', '', '553.2000', NULL, 21, NULL, 'received', '', '553.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 (6483, '2022-09-02 21:38:27', 6539, NULL, NULL, 'IPAY2022/09/6482', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 17, 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 (6484, '2022-09-02 21:56:10', 6540, NULL, NULL, 'IPAY2022/09/6483', NULL, 'cash', '', '', '', '', '', '', '412.2000', NULL, 22, NULL, 'received', '', '412.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 (6485, '2022-09-02 21:57:32', 6541, NULL, NULL, 'IPAY2022/09/6484', NULL, 'cash', '', '', '', '', '', '', '73.5000', NULL, 21, NULL, 'received', '', '73.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6486, '2022-09-02 22:02:05', 6542, NULL, NULL, 'IPAY2022/09/6485', NULL, 'cash', '', '', '', '', '', '', '123.0000', NULL, 17, NULL, 'received', '', '123.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6487, '2022-09-03 14:20:20', 6543, NULL, NULL, 'IPAY2022/09/6486', NULL, 'cash', '', '', '', '', '', '', '343.6000', NULL, 16, NULL, 'received', '', '343.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 (6488, '2022-09-03 14:22:45', 6544, NULL, NULL, 'IPAY2022/09/6487', NULL, 'cash', '', '', '', '', '', '', '548.7000', NULL, 33, NULL, 'received', '', '548.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 (6489, '2022-09-03 14:39:34', 6545, NULL, NULL, 'IPAY2022/09/6488', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 33, 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 (6490, '2022-09-03 14:41:58', 6546, NULL, NULL, 'IPAY2022/09/6489', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 33, 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 (6491, '2022-09-03 15:10:11', 6547, NULL, NULL, 'IPAY2022/09/6490', NULL, 'cash', '', '', '', '', '', '', '215.5000', NULL, 47, NULL, 'received', '', '215.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6492, '2022-09-03 15:12:57', 6548, NULL, NULL, 'IPAY2022/09/6491', NULL, 'cash', '', '', '', '', '', '', '132.5000', NULL, 33, NULL, 'received', '', '132.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6493, '2022-09-03 19:08:29', 6549, NULL, NULL, 'IPAY2022/09/6492', NULL, 'cash', '', '', '', '', '', '', '313.1500', NULL, 16, NULL, 'received', '', '313.1500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6494, '2022-09-03 21:27:18', 6550, NULL, NULL, 'IPAY2022/09/6493', NULL, 'cash', '', '', '', '', '', '', '537.7000', NULL, 16, NULL, 'received', '', '537.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 (6495, '2022-09-03 21:38:16', 6551, NULL, NULL, 'IPAY2022/09/6494', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 16, 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 (6496, '2022-09-03 21:50:09', 6552, NULL, NULL, 'IPAY2022/09/6495', NULL, 'cash', '', '', '', '', '', '', '313.3000', NULL, 22, NULL, 'received', '', '313.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 (6497, '2022-09-03 21:51:06', 6553, NULL, NULL, 'IPAY2022/09/6496', NULL, 'cash', '', '', '', '', '', '', '756.6500', NULL, 33, NULL, 'received', '', '756.6500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6498, '2022-09-04 17:42:13', 6554, NULL, NULL, 'IPAY2022/09/6497', NULL, 'cash', '', '', '', '', '', '', '413.9000', NULL, 17, NULL, 'received', '', '413.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 (6499, '2022-09-04 18:45:47', 6555, NULL, NULL, 'IPAY2022/09/6498', NULL, 'cash', '', '', '', '', '', '', '314.4000', NULL, 21, NULL, 'received', '', '314.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 (6500, '2022-09-04 20:58:15', 6556, NULL, NULL, 'IPAY2022/09/6499', NULL, 'cash', '', '', '', '', '', '', '587.9000', NULL, 16, NULL, 'received', '', '587.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 (6501, '2022-09-04 21:24:01', 6557, NULL, NULL, 'IPAY2022/09/6500', NULL, 'cash', '', '', '', '', '', '', '385.7000', NULL, 21, NULL, 'received', '', '385.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 (6502, '2022-09-04 21:37:41', 6558, NULL, NULL, 'IPAY2022/09/6501', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 16, 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 (6503, '2022-09-04 21:47:35', 6559, NULL, NULL, 'IPAY2022/09/6502', NULL, 'cash', '', '', '', '', '', '', '409.4000', NULL, 22, NULL, 'received', '', '409.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 (6504, '2022-09-04 21:52:24', 6560, NULL, NULL, 'IPAY2022/09/6503', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 21, 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 (6505, '2022-09-04 22:18:58', 6561, NULL, NULL, 'IPAY2022/09/6504', NULL, 'cash', '', '', '', '', '', '', '102.1000', NULL, 22, NULL, 'received', '', '102.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 (6506, '2022-09-05 14:12:49', 6562, NULL, NULL, 'IPAY2022/09/6505', NULL, 'cash', '', '', '', '', '', '', '178.0000', NULL, 33, 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 (6507, '2022-09-05 15:30:42', 6563, NULL, NULL, 'IPAY2022/09/6506', NULL, 'cash', '', '', '', '', '', '', '257.0000', NULL, 47, NULL, 'received', '', '257.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6508, '2022-09-05 21:02:05', 6564, NULL, NULL, 'IPAY2022/09/6507', NULL, 'cash', '', '', '', '', '', '', '1301.6000', NULL, 17, NULL, 'received', '', '1301.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 (6509, '2022-09-05 21:32:45', 6565, NULL, NULL, 'IPAY2022/09/6508', NULL, 'cash', '', '', '', '', '', '', '1087.9000', NULL, 21, NULL, 'received', '', '1087.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 (6510, '2022-09-05 21:36:08', 6566, NULL, NULL, 'IPAY2022/09/6509', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 17, 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 (6511, '2022-09-05 21:56:56', 6567, NULL, NULL, 'IPAY2022/09/6510', NULL, 'cash', '', '', '', '', '', '', '635.0000', NULL, 22, NULL, 'received', '', '635.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6512, '2022-09-05 22:01:32', 6568, NULL, NULL, 'IPAY2022/09/6511', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 21, 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 (6513, '2022-09-06 14:57:43', 6569, NULL, NULL, 'IPAY2022/09/6512', NULL, 'cash', '', '', '', '', '', '', '167.4000', NULL, 47, NULL, 'received', '', '167.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 (6514, '2022-09-06 15:03:16', 6570, NULL, NULL, 'IPAY2022/09/6513', NULL, 'cash', '', '', '', '', '', '', '439.7000', NULL, 17, NULL, 'received', '', '439.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 (6515, '2022-09-06 15:09:43', 6571, NULL, NULL, 'IPAY2022/09/6514', NULL, 'cash', '', '', '', '', '', '', '472.4000', NULL, 33, NULL, 'received', '', '472.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 (6516, '2022-09-06 21:14:48', 6572, NULL, NULL, 'IPAY2022/09/6515', NULL, 'cash', '', '', '', '', '', '', '508.9000', NULL, 16, NULL, 'received', '', '508.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 (6517, '2022-09-06 21:23:10', 6573, NULL, NULL, 'IPAY2022/09/6516', NULL, 'cash', '', '', '', '', '', '', '579.9000', NULL, 21, NULL, 'received', '', '579.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 (6518, '2022-09-06 21:38:59', 6574, NULL, NULL, 'IPAY2022/09/6517', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 16, 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 (6519, '2022-09-06 21:46:34', 6575, NULL, NULL, 'IPAY2022/09/6518', NULL, 'cash', '', '', '', '', '', '', '686.9000', NULL, 22, NULL, 'received', '', '686.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 (6520, '2022-09-06 22:00:46', 6576, NULL, NULL, 'IPAY2022/09/6519', NULL, 'cash', '', '', '', '', '', '', '79.3000', NULL, 21, NULL, 'received', '', '79.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 (6521, '2022-09-07 15:15:09', 6577, NULL, NULL, 'IPAY2022/09/6520', NULL, 'cash', '', '', '', '', '', '', '452.5000', NULL, 47, NULL, 'received', '', '452.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6522, '2022-09-07 16:03:27', 6578, NULL, NULL, 'IPAY2022/09/6521', NULL, 'cash', '', '', '', '', '', '', '132.2000', NULL, 17, NULL, 'received', '', '132.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 (6523, '2022-09-07 17:14:30', 6579, NULL, NULL, 'IPAY2022/09/6522', NULL, 'cash', '', '', '', '', '', '', '379.7000', NULL, 33, NULL, 'received', '', '379.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 (6524, '2022-09-07 17:19:59', 6580, NULL, NULL, 'IPAY2022/09/6523', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 29, 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 (6525, '2022-09-07 17:55:06', 6581, NULL, NULL, 'IPAY2022/09/6524', NULL, 'cash', '', '', '', '', '', '', '188.2500', NULL, 29, NULL, 'received', '', '188.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 (6526, '2022-09-07 19:49:58', 6582, NULL, NULL, 'IPAY2022/09/6525', NULL, 'cash', '', '', '', '', '', '', '276.7000', NULL, 29, NULL, 'received', '', '276.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 (6527, '2022-09-07 20:23:23', 6583, NULL, NULL, 'IPAY2022/09/6526', NULL, 'cash', '', '', '', '', '', '', '100.5000', NULL, 29, NULL, 'received', '', '100.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6528, '2022-09-07 20:47:08', 6584, NULL, NULL, 'IPAY2022/09/6527', NULL, 'cash', '', '', '', '', '', '', '58.9000', NULL, 29, NULL, 'received', '', '58.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 (6529, '2022-09-07 21:01:32', 6585, NULL, NULL, 'IPAY2022/09/6528', NULL, 'cash', '', '', '', '', '', '', '556.2000', NULL, 16, NULL, 'received', '', '556.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 (6530, '2022-09-07 21:25:40', 6586, NULL, NULL, 'IPAY2022/09/6529', NULL, 'cash', '', '', '', '', '', '', '96.5000', NULL, 29, 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 (6531, '2022-09-07 21:37:55', 6587, NULL, NULL, 'IPAY2022/09/6530', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 16, 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 (6532, '2022-09-07 21:47:50', 6588, NULL, NULL, 'IPAY2022/09/6531', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 29, 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 (6533, '2022-09-07 22:12:11', 6589, NULL, NULL, 'IPAY2022/09/6532', NULL, 'cash', '', '', '', '', '', '', '292.4400', NULL, 22, NULL, 'received', '', '292.4400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6534, '2022-09-08 12:23:15', 6590, NULL, NULL, 'IPAY2022/09/6533', NULL, 'cash', '', '', '', '', '', '', '220.5000', NULL, 28, 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 (6535, '2022-09-08 13:11:31', 6591, NULL, NULL, 'IPAY2022/09/6534', NULL, 'cash', '', '', '', '', '', '', '62.5000', NULL, 28, NULL, 'received', '', '62.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6536, '2022-09-08 14:14:25', 6592, NULL, NULL, 'IPAY2022/09/6535', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 28, 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 (6537, '2022-09-08 14:19:25', 6593, NULL, NULL, 'IPAY2022/09/6536', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 28, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6538, '2022-09-08 14:24:45', 6594, NULL, NULL, 'IPAY2022/09/6537', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 28, 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 (6539, '2022-09-08 14:57:05', 6595, NULL, NULL, 'IPAY2022/09/6538', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 28, 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 (6540, '2022-09-08 15:07:26', 6596, NULL, NULL, 'IPAY2022/09/6539', NULL, 'cash', '', '', '', '', '', '', '529.1000', NULL, 33, NULL, 'received', '', '529.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 (6541, '2022-09-08 15:45:07', 6597, NULL, NULL, 'IPAY2022/09/6540', NULL, 'cash', '', '', '', '', '', '', '365.9000', NULL, 17, NULL, 'received', '', '365.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 (6542, '2022-09-08 20:55:57', 6598, NULL, NULL, 'IPAY2022/09/6541', NULL, 'cash', '', '', '', '', '', '', '616.4000', NULL, 16, NULL, 'received', '', '616.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 (6543, '2022-09-08 21:13:08', 6599, NULL, NULL, 'IPAY2022/09/6542', NULL, 'cash', '', '', '', '', '', '', '541.9000', NULL, 21, NULL, 'received', '', '541.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 (6544, '2022-09-08 21:43:58', 6600, NULL, NULL, 'IPAY2022/09/6543', NULL, 'cash', '', '', '', '', '', '', '421.0000', NULL, 22, NULL, 'received', '', '421.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6545, '2022-09-08 21:45:15', 6601, NULL, NULL, 'IPAY2022/09/6544', NULL, 'cash', '', '', '', '', '', '', '102.4000', NULL, 16, NULL, 'received', '', '102.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 (6546, '2022-09-08 22:06:37', 6602, NULL, NULL, 'IPAY2022/09/6545', NULL, 'cash', '', '', '', '', '', '', '171.0000', NULL, 21, NULL, 'received', '', '171.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6547, '2022-09-09 11:54:25', 6603, NULL, NULL, 'IPAY2022/09/6546', NULL, 'cash', '', '', '', '', '', '', '449.7000', NULL, 29, NULL, 'received', '', '449.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 (6548, '2022-09-09 12:21:59', 6604, NULL, NULL, 'IPAY2022/09/6547', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 29, 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 (6549, '2022-09-09 12:44:10', 6605, NULL, NULL, 'IPAY2022/09/6548', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (6550, '2022-09-09 14:05:40', 6606, NULL, NULL, 'IPAY2022/09/6549', NULL, 'cash', '', '', '', '', '', '', '17.2000', NULL, 29, NULL, 'received', '', '17.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 (6551, '2022-09-09 14:31:20', 6607, NULL, NULL, 'IPAY2022/09/6550', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 29, 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 (6552, '2022-09-09 14:44:19', 6608, NULL, NULL, 'IPAY2022/09/6551', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 29, 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 (6553, '2022-09-09 14:58:12', 6609, NULL, NULL, 'IPAY2022/09/6552', NULL, 'cash', '', '', '', '', '', '', '326.0000', NULL, 47, 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 (6554, '2022-09-09 15:19:14', 6610, NULL, NULL, 'IPAY2022/09/6553', NULL, 'cash', '', '', '', '', '', '', '388.7000', NULL, 17, NULL, 'received', '', '388.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 (6555, '2022-09-09 20:24:31', 6611, NULL, NULL, 'IPAY2022/09/6554', NULL, 'cash', '', '', '', '', '', '', '688.7000', NULL, 21, NULL, 'received', '', '688.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 (6556, '2022-09-09 21:02:36', 6612, NULL, NULL, 'IPAY2022/09/6555', NULL, 'cash', '', '', '', '', '', '', '510.0000', NULL, 16, 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 (6557, '2022-09-09 21:40:27', 6613, NULL, NULL, 'IPAY2022/09/6556', NULL, 'cash', '', '', '', '', '', '', '138.7000', NULL, 21, 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 (6558, '2022-09-09 21:48:17', 6614, NULL, NULL, 'IPAY2022/09/6557', NULL, 'cash', '', '', '', '', '', '', '307.9000', NULL, 22, NULL, 'received', '', '307.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 (6559, '2022-09-09 21:49:54', 6615, NULL, NULL, 'IPAY2022/09/6558', NULL, 'cash', '', '', '', '', '', '', '218.2000', NULL, 16, NULL, 'received', '', '218.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 (6560, '2022-09-10 14:59:11', 6616, NULL, NULL, 'IPAY2022/09/6559', NULL, 'cash', '', '', '', '', '', '', '586.6000', NULL, 21, NULL, 'received', '', '586.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 (6561, '2022-09-10 15:15:26', 6617, NULL, NULL, 'IPAY2022/09/6560', NULL, 'cash', '', '', '', '', '', '', '280.6400', NULL, 47, NULL, 'received', '', '280.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6562, '2022-09-10 17:18:58', 6618, NULL, NULL, 'IPAY2022/09/6561', NULL, 'cash', '', '', '', '', '', '', '385.0000', NULL, 16, NULL, 'received', '', '385.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6563, '2022-09-10 20:43:12', 6619, NULL, NULL, 'IPAY2022/09/6562', NULL, 'cash', '', '', '', '', '', '', '379.2000', NULL, 16, NULL, 'received', '', '379.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 (6564, '2022-09-10 21:40:37', 6620, NULL, NULL, 'IPAY2022/09/6563', NULL, 'cash', '', '', '', '', '', '', '131.0000', NULL, 16, 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 (6565, '2022-09-10 22:04:08', 6621, NULL, NULL, 'IPAY2022/09/6564', NULL, 'cash', '', '', '', '', '', '', '820.2000', NULL, 33, NULL, 'received', '', '820.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 (6566, '2022-09-10 22:09:43', 6622, NULL, NULL, 'IPAY2022/09/6565', NULL, 'cash', '', '', '', '', '', '', '447.7000', NULL, 22, NULL, 'received', '', '447.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 (6567, '2022-09-11 15:29:16', 6623, NULL, NULL, 'IPAY2022/09/6566', NULL, 'cash', '', '', '', '', '', '', '231.4000', NULL, 29, NULL, 'received', '', '231.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 (6568, '2022-09-11 16:02:55', 6624, NULL, NULL, 'IPAY2022/09/6567', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 29, 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 (6569, '2022-09-11 16:18:37', 6625, NULL, NULL, 'IPAY2022/09/6568', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 29, 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 (6570, '2022-09-11 16:25:03', 6626, NULL, NULL, 'IPAY2022/09/6569', NULL, 'cash', '', '', '', '', '', '', '271.7000', NULL, 16, NULL, 'received', '', '271.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 (6571, '2022-09-11 21:06:46', 6627, NULL, NULL, 'IPAY2022/09/6570', NULL, 'cash', '', '', '', '', '', '', '385.2000', NULL, 17, 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 (6572, '2022-09-11 21:40:37', 6628, NULL, NULL, 'IPAY2022/09/6571', NULL, 'cash', '', '', '', '', '', '', '530.2100', NULL, 21, NULL, 'received', '', '530.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 (6573, '2022-09-11 21:46:12', 6629, NULL, NULL, 'IPAY2022/09/6572', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 17, 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 (6574, '2022-09-11 21:50:53', 6630, NULL, NULL, 'IPAY2022/09/6573', NULL, 'cash', '', '', '', '', '', '', '356.2400', NULL, 22, NULL, 'received', '', '356.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6575, '2022-09-12 13:58:45', 6631, NULL, NULL, 'IPAY2022/09/6574', NULL, 'cash', '', '', '', '', '', '', '567.2000', NULL, 21, NULL, 'received', '', '567.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 (6576, '2022-09-12 15:12:00', 6632, NULL, NULL, 'IPAY2022/09/6575', NULL, 'cash', '', '', '', '', '', '', '163.5000', NULL, 47, NULL, 'received', '', '163.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6577, '2022-09-12 15:38:35', 6633, NULL, NULL, 'IPAY2022/09/6576', NULL, 'cash', '', '', '', '', '', '', '34.5000', NULL, 21, NULL, 'received', '', '34.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6578, '2022-09-12 20:19:14', 6634, NULL, NULL, 'IPAY2022/09/6577', NULL, 'cash', '', '', '', '', '', '', '427.4000', NULL, 29, NULL, 'received', '', '427.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 (6579, '2022-09-12 21:02:53', 6635, NULL, NULL, 'IPAY2022/09/6578', NULL, 'cash', '', '', '', '', '', '', '919.1000', NULL, 17, NULL, 'received', '', '919.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 (6580, '2022-09-12 21:20:47', 6636, NULL, NULL, 'IPAY2022/09/6579', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 29, 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 (6581, '2022-09-12 21:21:54', 6637, NULL, NULL, 'IPAY2022/09/6580', NULL, 'cash', '', '', '', '', '', '', '151.5000', NULL, 17, 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 (6582, '2022-09-12 21:32:28', 6638, NULL, NULL, 'IPAY2022/09/6581', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 29, 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 (6583, '2022-09-12 21:37:10', 6639, NULL, NULL, 'IPAY2022/09/6582', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (6584, '2022-09-12 21:37:42', 6640, NULL, NULL, 'IPAY2022/09/6583', NULL, 'cash', '', '', '', '', '', '', '679.0000', NULL, 8, NULL, 'received', '', '679.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6585, '2022-09-12 21:45:00', 6641, NULL, NULL, 'IPAY2022/09/6584', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 8, 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 (6586, '2022-09-12 21:45:17', 6642, NULL, NULL, 'IPAY2022/09/6585', NULL, 'cash', '', '', '', '', '', '', '139.0000', NULL, 17, NULL, 'received', '', '139.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6587, '2022-09-13 12:59:33', 6643, NULL, NULL, 'IPAY2022/09/6586', NULL, 'cash', '', '', '', '', '', '', '331.2000', NULL, 33, NULL, 'received', '', '331.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 (6588, '2022-09-13 14:32:52', 6644, NULL, NULL, 'IPAY2022/09/6587', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 33, 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 (6589, '2022-09-13 14:35:44', 6645, NULL, NULL, 'IPAY2022/09/6588', NULL, 'cash', '', '', '', '', '', '', '173.4000', NULL, 16, NULL, 'received', '', '173.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 (6590, '2022-09-13 15:12:50', 6646, NULL, NULL, 'IPAY2022/09/6589', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 33, 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 (6591, '2022-09-13 15:16:28', 6647, NULL, NULL, 'IPAY2022/09/6590', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 16, 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 (6592, '2022-09-13 15:16:29', 6648, NULL, NULL, 'IPAY2022/09/6591', NULL, 'cash', '', '', '', '', '', '', '373.9000', NULL, 47, NULL, 'received', '', '373.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 (6593, '2022-09-13 18:20:11', 6649, NULL, NULL, 'IPAY2022/09/6592', NULL, 'cash', '', '', '', '', '', '', '131.1000', NULL, 29, NULL, 'received', '', '131.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 (6594, '2022-09-13 18:31:12', 6650, NULL, NULL, 'IPAY2022/09/6593', NULL, 'cash', '', '', '', '', '', '', '148.5000', NULL, 29, 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 (6595, '2022-09-13 19:28:44', 6651, NULL, NULL, 'IPAY2022/09/6594', NULL, 'cash', '', '', '', '', '', '', '91.0000', NULL, 29, NULL, 'received', '', '91.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6596, '2022-09-13 20:00:43', 6652, NULL, NULL, 'IPAY2022/09/6595', NULL, 'cash', '', '', '', '', '', '', '90.5000', NULL, 29, 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 (6597, '2022-09-13 20:46:58', 6653, NULL, NULL, 'IPAY2022/09/6596', NULL, 'cash', '', '', '', '', '', '', '114.0000', NULL, 29, 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 (6598, '2022-09-13 20:54:34', 6654, NULL, NULL, 'IPAY2022/09/6597', NULL, 'cash', '', '', '', '', '', '', '623.1000', NULL, 17, NULL, 'received', '', '623.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 (6599, '2022-09-13 21:00:18', 6655, NULL, NULL, 'IPAY2022/09/6598', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (6600, '2022-09-13 21:28:05', 6656, NULL, NULL, 'IPAY2022/09/6599', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 29, 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 (6601, '2022-09-13 21:32:38', 6657, NULL, NULL, 'IPAY2022/09/6600', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 29, 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 (6602, '2022-09-13 21:39:57', 6658, NULL, NULL, 'IPAY2022/09/6601', NULL, 'cash', '', '', '', '', '', '', '13.6000', NULL, 17, NULL, 'received', '', '13.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 (6603, '2022-09-13 21:48:15', 6659, NULL, NULL, 'IPAY2022/09/6602', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 29, 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 (6604, '2022-09-13 21:51:46', 6660, NULL, NULL, 'IPAY2022/09/6603', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (6605, '2022-09-13 21:54:16', 6661, NULL, NULL, 'IPAY2022/09/6604', NULL, 'cash', '', '', '', '', '', '', '291.5000', NULL, 22, NULL, 'received', '', '291.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6606, '2022-09-14 10:08:05', 6662, NULL, NULL, 'IPAY2022/09/6605', NULL, 'cash', '', '', '', '', '', '', '93.0000', NULL, 8, 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 (6607, '2022-09-14 11:21:44', 6663, NULL, NULL, 'IPAY2022/09/6606', NULL, 'cash', '', '', '', '', '', '', '121.0000', NULL, 29, NULL, 'received', '', '121.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6608, '2022-09-14 12:15:49', 6664, NULL, NULL, 'IPAY2022/09/6607', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 8, 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 (6609, '2022-09-14 12:49:49', 6665, NULL, NULL, 'IPAY2022/09/6608', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 29, 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 (6610, '2022-09-14 13:23:29', 6666, NULL, NULL, 'IPAY2022/09/6609', NULL, 'cash', '', '', '', '', '', '', '58.2000', NULL, 8, NULL, 'received', '', '58.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 (6611, '2022-09-14 14:18:18', 6667, NULL, NULL, 'IPAY2022/09/6610', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 29, 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 (6612, '2022-09-14 14:26:16', 6668, NULL, NULL, 'IPAY2022/09/6611', NULL, 'cash', '', '', '', '', '', '', '414.0000', NULL, 16, NULL, 'received', '', '414.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6613, '2022-09-14 14:42:12', 6669, NULL, NULL, 'IPAY2022/09/6612', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 29, 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 (6614, '2022-09-14 14:54:18', 6670, NULL, NULL, 'IPAY2022/09/6613', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 8, 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 (6615, '2022-09-14 15:18:09', 6671, NULL, NULL, 'IPAY2022/09/6614', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 29, 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 (6616, '2022-09-14 19:53:58', 6672, NULL, NULL, 'IPAY2022/09/6615', NULL, 'cash', '', '', '', '', '', '', '810.9000', NULL, 29, NULL, 'received', '', '810.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 (6617, '2022-09-14 20:18:22', 6673, NULL, NULL, 'IPAY2022/09/6616', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 17, 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 (6618, '2022-09-14 20:33:14', 6674, NULL, NULL, 'IPAY2022/09/6617', NULL, 'cash', '', '', '', '', '', '', '371.1000', NULL, 17, NULL, 'received', '', '371.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 (6619, '2022-09-14 21:46:28', 6675, NULL, NULL, 'IPAY2022/09/6618', NULL, 'cash', '', '', '', '', '', '', '88.5000', NULL, 17, 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 (6620, '2022-09-14 21:55:56', 6676, NULL, NULL, 'IPAY2022/09/6619', NULL, 'cash', '', '', '', '', '', '', '279.5000', NULL, 22, NULL, 'received', '', '279.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6621, '2022-09-14 22:03:16', 6677, NULL, NULL, 'IPAY2022/09/6620', NULL, 'cash', '', '', '', '', '', '', '145.1000', NULL, 29, NULL, 'received', '', '145.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 (6622, '2022-09-15 13:39:26', 6678, NULL, NULL, 'IPAY2022/09/6621', NULL, 'cash', '', '', '', '', '', '', '228.9000', NULL, 16, NULL, 'received', '', '228.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 (6623, '2022-09-15 14:49:22', 6679, NULL, NULL, 'IPAY2022/09/6622', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 16, 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 (6624, '2022-09-15 15:28:16', 6680, NULL, NULL, 'IPAY2022/09/6623', NULL, 'cash', '', '', '', '', '', '', '708.2000', NULL, 33, NULL, 'received', '', '708.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 (6625, '2022-09-15 20:05:12', 6681, NULL, NULL, 'IPAY2022/09/6624', NULL, 'cash', '', '', '', '', '', '', '915.6000', NULL, 21, NULL, 'received', '', '915.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 (6626, '2022-09-15 20:42:51', 6682, NULL, NULL, 'IPAY2022/09/6625', NULL, 'cash', '', '', '', '', '', '', '762.9500', NULL, 17, NULL, 'received', '', '762.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 (6627, '2022-09-15 21:33:21', 6683, NULL, NULL, 'IPAY2022/09/6626', NULL, 'cash', '', '', '', '', '', '', '141.5000', NULL, 22, NULL, 'received', '', '141.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6628, '2022-09-15 21:53:11', 6684, NULL, NULL, 'IPAY2022/09/6627', NULL, 'cash', '', '', '', '', '', '', '305.0000', NULL, 17, NULL, 'received', '', '305.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6629, '2022-09-15 22:00:27', 6685, NULL, NULL, 'IPAY2022/09/6628', NULL, 'cash', '', '', '', '', '', '', '298.0000', NULL, 21, NULL, 'received', '', '298.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6630, '2022-09-15 22:29:55', 6686, NULL, NULL, 'IPAY2022/09/6629', NULL, 'cash', '', '', '', '', '', '', '82.5000', NULL, 22, 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 (6631, '2022-09-15 22:53:48', 6687, NULL, NULL, 'IPAY2022/09/6630', NULL, 'cash', '', '', '', '', '', '', '84.2000', NULL, 21, NULL, 'received', '', '84.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 (6632, '2022-09-16 13:24:13', 6688, NULL, NULL, 'IPAY2022/09/6631', NULL, 'cash', '', '', '', '', '', '', '480.0000', NULL, 16, NULL, 'received', '', '480.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6633, '2022-09-16 14:38:09', 6689, NULL, NULL, 'IPAY2022/09/6632', NULL, 'cash', '', '', '', '', '', '', '160.6000', NULL, 47, NULL, 'received', '', '160.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 (6634, '2022-09-16 14:50:14', 6690, NULL, NULL, 'IPAY2022/09/6633', NULL, 'cash', '', '', '', '', '', '', '643.4000', NULL, 33, NULL, 'received', '', '643.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 (6635, '2022-09-16 15:02:07', 6691, NULL, NULL, 'IPAY2022/09/6634', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 16, 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 (6636, '2022-09-16 15:10:06', 6692, NULL, NULL, 'IPAY2022/09/6635', NULL, 'cash', '', '', '', '', '', '', '116.5000', NULL, 16, 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 (6637, '2022-09-16 20:44:48', 6693, NULL, NULL, 'IPAY2022/09/6636', NULL, 'cash', '', '', '', '', '', '', '612.7000', NULL, 21, NULL, 'received', '', '612.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 (6638, '2022-09-16 21:49:48', 6694, NULL, NULL, 'IPAY2022/09/6637', NULL, 'cash', '', '', '', '', '', '', '542.6000', NULL, 17, NULL, 'received', '', '542.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 (6639, '2022-09-16 21:52:01', 6695, NULL, NULL, 'IPAY2022/09/6638', NULL, 'cash', '', '', '', '', '', '', '439.5000', NULL, 22, 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 (6640, '2022-09-16 22:08:13', 6696, NULL, NULL, 'IPAY2022/09/6639', NULL, 'cash', '', '', '', '', '', '', '275.6300', NULL, 21, NULL, 'received', '', '275.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6641, '2022-09-17 11:02:11', 6697, NULL, NULL, 'IPAY2022/09/6640', NULL, 'cash', '', '', '', '', '', '', '405.0000', NULL, 29, NULL, 'received', '', '405.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6642, '2022-09-17 13:41:56', 6698, NULL, NULL, 'IPAY2022/09/6641', NULL, 'cash', '', '', '', '', '', '', '105.5000', NULL, 29, NULL, 'received', '', '105.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6643, '2022-09-17 13:53:13', 6699, NULL, NULL, 'IPAY2022/09/6642', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 29, 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 (6644, '2022-09-17 14:29:57', 6700, NULL, NULL, 'IPAY2022/09/6643', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 29, 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 (6645, '2022-09-17 14:45:17', 6701, NULL, NULL, 'IPAY2022/09/6644', NULL, 'cash', '', '', '', '', '', '', '102.6400', NULL, 29, NULL, 'received', '', '102.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6646, '2022-09-17 14:55:35', 6702, NULL, NULL, 'IPAY2022/09/6645', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 29, 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 (6647, '2022-09-17 15:02:12', 6703, NULL, NULL, 'IPAY2022/09/6646', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (6648, '2022-09-17 16:12:18', 6704, NULL, NULL, 'IPAY2022/09/6647', NULL, 'cash', '', '', '', '', '', '', '184.6000', NULL, 47, NULL, 'received', '', '184.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 (6649, '2022-09-17 17:01:27', 6705, NULL, NULL, 'IPAY2022/09/6648', NULL, 'cash', '', '', '', '', '', '', '585.4000', NULL, 16, NULL, 'received', '', '585.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 (6650, '2022-09-17 20:18:10', 6706, NULL, NULL, 'IPAY2022/09/6649', NULL, 'cash', '', '', '', '', '', '', '413.7000', NULL, 16, NULL, 'received', '', '413.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 (6651, '2022-09-17 21:11:41', 6707, NULL, NULL, 'IPAY2022/09/6650', NULL, 'cash', '', '', '', '', '', '', '650.4000', NULL, 21, NULL, 'received', '', '650.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 (6652, '2022-09-17 21:39:34', 6708, NULL, NULL, 'IPAY2022/09/6651', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 16, 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 (6653, '2022-09-17 21:57:44', 6709, NULL, NULL, 'IPAY2022/09/6652', NULL, 'cash', '', '', '', '', '', '', '165.1000', NULL, 21, NULL, 'received', '', '165.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 (6654, '2022-09-17 22:27:54', 6710, NULL, NULL, 'IPAY2022/09/6653', NULL, 'cash', '', '', '', '', '', '', '406.9000', NULL, 22, NULL, 'received', '', '406.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 (6655, '2022-09-18 13:18:35', 6711, NULL, NULL, 'IPAY2022/09/6654', NULL, 'cash', '', '', '', '', '', '', '135.8000', NULL, 29, NULL, 'received', '', '135.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 (6656, '2022-09-18 14:48:37', 6712, NULL, NULL, 'IPAY2022/09/6655', NULL, 'cash', '', '', '', '', '', '', '116.0000', NULL, 29, 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 (6657, '2022-09-18 16:36:54', 6713, NULL, NULL, 'IPAY2022/09/6656', NULL, 'cash', '', '', '', '', '', '', '141.5000', NULL, 29, NULL, 'received', '', '141.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6658, '2022-09-18 16:53:01', 6714, NULL, NULL, 'IPAY2022/09/6657', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 29, 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 (6659, '2022-09-18 16:57:14', 6715, NULL, NULL, 'IPAY2022/09/6658', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (6660, '2022-09-18 16:59:39', 6716, NULL, NULL, 'IPAY2022/09/6659', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 29, 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 (6661, '2022-09-18 17:46:18', 6717, NULL, NULL, 'IPAY2022/09/6660', NULL, 'cash', '', '', '', '', '', '', '587.6000', NULL, 17, NULL, 'received', '', '587.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 (6662, '2022-09-18 19:10:48', 6718, NULL, NULL, 'IPAY2022/09/6661', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 16, 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 (6663, '2022-09-18 20:27:15', 6719, NULL, NULL, 'IPAY2022/09/6662', NULL, 'cash', '', '', '', '', '', '', '869.8000', NULL, 16, NULL, 'received', '', '869.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 (6664, '2022-09-18 21:33:50', 6720, NULL, NULL, 'IPAY2022/09/6663', NULL, 'cash', '', '', '', '', '', '', '582.6000', NULL, 21, NULL, 'received', '', '582.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 (6665, '2022-09-18 21:43:21', 6721, NULL, NULL, 'IPAY2022/09/6664', NULL, 'cash', '', '', '', '', '', '', '89.6000', NULL, 16, NULL, 'received', '', '89.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 (6666, '2022-09-18 21:44:17', 6722, NULL, NULL, 'IPAY2022/09/6665', NULL, 'cash', '', '', '', '', '', '', '570.0000', NULL, 22, NULL, 'received', '', '570.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6667, '2022-09-18 21:53:11', 6723, NULL, NULL, 'IPAY2022/09/6666', NULL, 'cash', '', '', '', '', '', '', '72.0000', NULL, 22, NULL, 'received', '', '72.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6668, '2022-09-18 22:02:18', 6724, NULL, NULL, 'IPAY2022/09/6667', NULL, 'cash', '', '', '', '', '', '', '45.4000', NULL, 21, NULL, 'received', '', '45.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 (6669, '2022-09-19 14:23:38', 6725, NULL, NULL, 'IPAY2022/09/6668', NULL, 'cash', '', '', '', '', '', '', '609.1000', NULL, 21, NULL, 'received', '', '609.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 (6670, '2022-09-19 14:35:13', 6726, NULL, NULL, 'IPAY2022/09/6669', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 21, 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 (6671, '2022-09-19 15:54:56', 6727, NULL, NULL, 'IPAY2022/09/6670', NULL, 'cash', '', '', '', '', '', '', '204.0000', NULL, 47, 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 (6672, '2022-09-19 17:56:10', 6728, NULL, NULL, 'IPAY2022/09/6671', NULL, 'cash', '', '', '', '', '', '', '158.7000', NULL, 29, NULL, 'received', '', '158.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 (6673, '2022-09-19 18:14:43', 6729, NULL, NULL, 'IPAY2022/09/6672', NULL, 'cash', '', '', '', '', '', '', '648.5000', NULL, 17, NULL, 'received', '', '648.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6674, '2022-09-19 18:25:19', 6730, NULL, NULL, 'IPAY2022/09/6673', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 29, 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 (6675, '2022-09-19 20:21:55', 6731, NULL, NULL, 'IPAY2022/09/6674', NULL, 'cash', '', '', '', '', '', '', '333.6000', NULL, 29, NULL, 'received', '', '333.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 (6676, '2022-09-19 20:33:10', 6732, NULL, NULL, 'IPAY2022/09/6675', NULL, 'cash', '', '', '', '', '', '', '81.5000', NULL, 29, NULL, 'received', '', '81.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6677, '2022-09-19 21:02:33', 6733, NULL, NULL, 'IPAY2022/09/6676', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 29, 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 (6678, '2022-09-19 21:30:49', 6734, NULL, NULL, 'IPAY2022/09/6677', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 29, 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 (6679, '2022-09-19 21:35:46', 6735, NULL, NULL, 'IPAY2022/09/6678', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (6680, '2022-09-19 21:37:15', 6736, NULL, NULL, 'IPAY2022/09/6679', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 29, 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 (6681, '2022-09-19 21:40:55', 6737, NULL, NULL, 'IPAY2022/09/6680', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (6682, '2022-09-19 21:41:52', 6738, NULL, NULL, 'IPAY2022/09/6681', NULL, 'cash', '', '', '', '', '', '', '660.5000', NULL, 17, NULL, 'received', '', '660.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6683, '2022-09-19 21:46:19', 6739, NULL, NULL, 'IPAY2022/09/6682', NULL, 'cash', '', '', '', '', '', '', '17.4000', NULL, 29, NULL, 'received', '', '17.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 (6684, '2022-09-19 22:01:49', 6740, NULL, NULL, 'IPAY2022/09/6683', NULL, 'cash', '', '', '', '', '', '', '1063.0000', NULL, 8, NULL, 'received', '', '1063.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6685, '2022-09-20 10:13:04', 6741, NULL, NULL, 'IPAY2022/09/6684', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 17, 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 (6686, '2022-09-20 10:50:15', 6742, NULL, NULL, 'IPAY2022/09/6685', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 17, 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 (6687, '2022-09-20 13:28:16', 6743, NULL, NULL, 'IPAY2022/09/6686', NULL, 'cash', '', '', '', '', '', '', '635.9000', NULL, 33, NULL, 'received', '', '635.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 (6688, '2022-09-20 13:46:34', 6744, NULL, NULL, 'IPAY2022/09/6687', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 33, 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 (6689, '2022-09-20 14:23:34', 6745, NULL, NULL, 'IPAY2022/09/6688', NULL, 'cash', '', '', '', '', '', '', '81.5000', NULL, 33, NULL, 'received', '', '81.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6690, '2022-09-20 14:26:12', 6746, NULL, NULL, 'IPAY2022/09/6689', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 33, 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 (6691, '2022-09-20 14:40:09', 6747, NULL, NULL, 'IPAY2022/09/6690', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 33, 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 (6692, '2022-09-20 14:58:33', 6748, NULL, NULL, 'IPAY2022/09/6691', NULL, 'cash', '', '', '', '', '', '', '221.0000', NULL, 47, 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 (6693, '2022-09-20 16:40:13', 6749, NULL, NULL, 'IPAY2022/09/6692', NULL, 'cash', '', '', '', '', '', '', '221.3000', NULL, 29, NULL, 'received', '', '221.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 (6694, '2022-09-20 18:02:40', 6750, NULL, NULL, 'IPAY2022/09/6693', NULL, 'cash', '', '', '', '', '', '', '53.5000', NULL, 29, NULL, 'received', '', '53.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6695, '2022-09-20 18:07:47', 6751, NULL, NULL, 'IPAY2022/09/6694', NULL, 'cash', '', '', '', '', '', '', '96.0000', NULL, 29, NULL, 'received', '', '96.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6696, '2022-09-20 19:01:02', 6752, NULL, NULL, 'IPAY2022/09/6695', NULL, 'cash', '', '', '', '', '', '', '218.5000', NULL, 17, 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 (6697, '2022-09-20 20:12:27', 6753, NULL, NULL, 'IPAY2022/09/6696', NULL, 'cash', '', '', '', '', '', '', '222.1000', NULL, 29, NULL, 'received', '', '222.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 (6698, '2022-09-20 20:21:56', 6754, NULL, NULL, 'IPAY2022/09/6697', NULL, 'cash', '', '', '', '', '', '', '63.0000', NULL, 29, 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 (6699, '2022-09-20 20:29:06', 6755, NULL, NULL, 'IPAY2022/09/6698', NULL, 'cash', '', '', '', '', '', '', '470.7000', NULL, 16, NULL, 'received', '', '470.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 (6700, '2022-09-20 20:42:22', 6756, NULL, NULL, 'IPAY2022/09/6699', NULL, 'cash', '', '', '', '', '', '', '53.2200', NULL, 29, NULL, 'received', '', '53.2200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6701, '2022-09-20 20:52:55', 6757, NULL, NULL, 'IPAY2022/09/6700', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 29, 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 (6702, '2022-09-20 21:14:03', 6758, NULL, NULL, 'IPAY2022/09/6701', NULL, 'cash', '', '', '', '', '', '', '109.0000', NULL, 29, 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 (6703, '2022-09-20 21:29:37', 6759, NULL, NULL, 'IPAY2022/09/6702', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 29, 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 (6704, '2022-09-20 21:41:08', 6760, NULL, NULL, 'IPAY2022/09/6703', NULL, 'cash', '', '', '', '', '', '', '97.0000', NULL, 16, NULL, 'received', '', '97.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6705, '2022-09-20 21:56:11', 6761, NULL, NULL, 'IPAY2022/09/6704', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 29, 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 (6706, '2022-09-20 21:57:21', 6762, NULL, NULL, 'IPAY2022/09/6705', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 29, 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 (6707, '2022-09-20 22:01:44', 6763, NULL, NULL, 'IPAY2022/09/6706', NULL, 'cash', '', '', '', '', '', '', '474.0000', NULL, 22, NULL, 'received', '', '474.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6708, '2022-09-21 11:03:48', 6764, NULL, NULL, 'IPAY2022/09/6707', NULL, 'cash', '', '', '', '', '', '', '186.8000', NULL, 29, NULL, 'received', '', '186.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 (6709, '2022-09-21 12:12:08', 6765, NULL, NULL, 'IPAY2022/09/6708', NULL, 'cash', '', '', '', '', '', '', '140.5000', NULL, 29, NULL, 'received', '', '140.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6710, '2022-09-21 13:08:05', 6766, NULL, NULL, 'IPAY2022/09/6709', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 29, 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 (6711, '2022-09-21 14:18:40', 6767, NULL, NULL, 'IPAY2022/09/6710', NULL, 'cash', '', '', '', '', '', '', '345.7000', NULL, 29, NULL, 'received', '', '345.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 (6712, '2022-09-21 14:27:09', 6768, NULL, NULL, 'IPAY2022/09/6711', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 29, 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 (6713, '2022-09-21 14:44:08', 6769, NULL, NULL, 'IPAY2022/09/6712', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (6714, '2022-09-21 15:04:45', 6770, NULL, NULL, 'IPAY2022/09/6713', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 29, 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 (6715, '2022-09-21 15:21:41', 6771, NULL, NULL, 'IPAY2022/09/6714', NULL, 'cash', '', '', '', '', '', '', '371.6000', NULL, 22, NULL, 'received', '', '371.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 (6716, '2022-09-21 15:25:49', 6772, NULL, NULL, 'IPAY2022/09/6715', NULL, 'cash', '', '', '', '', '', '', '635.9000', NULL, 17, NULL, 'received', '', '635.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 (6717, '2022-09-21 19:58:12', 6773, NULL, NULL, 'IPAY2022/09/6716', NULL, 'cash', '', '', '', '', '', '', '561.3000', NULL, 21, NULL, 'received', '', '561.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 (6718, '2022-09-21 20:11:44', 6774, NULL, NULL, 'IPAY2022/09/6717', NULL, 'cash', '', '', '', '', '', '', '238.2000', NULL, 16, NULL, 'received', '', '238.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 (6719, '2022-09-21 21:40:46', 6775, NULL, NULL, 'IPAY2022/09/6718', NULL, 'cash', '', '', '', '', '', '', '156.4000', NULL, 16, NULL, 'received', '', '156.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 (6720, '2022-09-21 21:47:49', 6776, NULL, NULL, 'IPAY2022/09/6719', NULL, 'cash', '', '', '', '', '', '', '442.0000', NULL, 8, 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 (6721, '2022-09-21 21:55:32', 6777, NULL, NULL, 'IPAY2022/09/6720', NULL, 'cash', '', '', '', '', '', '', '108.0000', NULL, 8, 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 (6722, '2022-09-21 21:59:10', 6778, NULL, NULL, 'IPAY2022/09/6721', NULL, 'cash', '', '', '', '', '', '', '224.9000', NULL, 21, NULL, 'received', '', '224.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 (6723, '2022-09-22 15:15:01', 6779, NULL, NULL, 'IPAY2022/09/6722', NULL, 'cash', '', '', '', '', '', '', '712.4000', NULL, 33, NULL, 'received', '', '712.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 (6724, '2022-09-22 15:22:38', 6780, NULL, NULL, 'IPAY2022/09/6723', NULL, 'cash', '', '', '', '', '', '', '316.1000', NULL, 17, NULL, 'received', '', '316.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 (6725, '2022-09-22 16:32:42', 6781, NULL, NULL, 'IPAY2022/09/6724', NULL, 'cash', '', '', '', '', '', '', '516.5000', NULL, 22, NULL, 'received', '', '516.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6726, '2022-09-22 20:05:21', 6782, NULL, NULL, 'IPAY2022/09/6725', NULL, 'cash', '', '', '', '', '', '', '668.1300', NULL, 17, NULL, 'received', '', '668.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6727, '2022-09-22 21:41:30', 6783, NULL, NULL, 'IPAY2022/09/6726', NULL, 'cash', '', '', '', '', '', '', '312.5000', NULL, 17, NULL, 'received', '', '312.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6728, '2022-09-22 21:45:08', 6784, NULL, NULL, 'IPAY2022/09/6727', NULL, 'cash', '', '', '', '', '', '', '662.9000', NULL, 47, NULL, 'received', '', '662.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 (6729, '2022-09-22 21:51:04', 6785, NULL, NULL, 'IPAY2022/09/6728', NULL, 'cash', '', '', '', '', '', '', '522.9000', NULL, 21, NULL, 'received', '', '522.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 (6730, '2022-09-23 09:22:37', 6786, NULL, NULL, 'IPAY2022/09/6729', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 17, 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 (6731, '2022-09-23 13:52:19', 6787, NULL, NULL, 'IPAY2022/09/6730', NULL, 'cash', '', '', '', '', '', '', '187.8000', NULL, 29, NULL, 'received', '', '187.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 (6732, '2022-09-23 15:14:58', 6788, NULL, NULL, 'IPAY2022/09/6731', NULL, 'cash', '', '', '', '', '', '', '179.0000', NULL, 47, 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 (6733, '2022-09-23 15:32:16', 6789, NULL, NULL, 'IPAY2022/09/6732', NULL, 'cash', '', '', '', '', '', '', '241.0000', NULL, 29, NULL, 'received', '', '241.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6734, '2022-09-23 15:41:50', 6790, NULL, NULL, 'IPAY2022/09/6733', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 29, 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 (6735, '2022-09-23 15:45:05', 6791, NULL, NULL, 'IPAY2022/09/6734', NULL, 'cash', '', '', '', '', '', '', '418.0000', NULL, 17, NULL, 'received', '', '418.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6736, '2022-09-23 20:01:12', 6792, NULL, NULL, 'IPAY2022/09/6735', NULL, 'cash', '', '', '', '', '', '', '547.1000', NULL, 16, NULL, 'received', '', '547.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 (6737, '2022-09-23 21:36:50', 6793, NULL, NULL, 'IPAY2022/09/6736', NULL, 'cash', '', '', '', '', '', '', '136.0000', NULL, 16, NULL, 'received', '', '136.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6738, '2022-09-23 22:06:21', 6794, NULL, NULL, 'IPAY2022/09/6737', NULL, 'cash', '', '', '', '', '', '', '646.1400', NULL, 22, NULL, 'received', '', '646.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6739, '2022-09-23 22:15:49', 6795, NULL, NULL, 'IPAY2022/09/6738', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 22, 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 (6740, '2022-09-23 22:20:41', 6796, NULL, NULL, 'IPAY2022/09/6739', NULL, 'cash', '', '', '', '', '', '', '871.9000', NULL, 21, NULL, 'received', '', '871.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 (6741, '2022-09-24 10:40:02', 6797, NULL, NULL, 'IPAY2022/09/6740', NULL, 'cash', '', '', '', '', '', '', '368.9000', NULL, 29, NULL, 'received', '', '368.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 (6742, '2022-09-24 12:30:42', 6798, NULL, NULL, 'IPAY2022/09/6741', NULL, 'cash', '', '', '', '', '', '', '173.5000', NULL, 29, 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 (6743, '2022-09-24 13:05:49', 6799, NULL, NULL, 'IPAY2022/09/6742', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 29, 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 (6744, '2022-09-24 13:33:32', 6800, NULL, NULL, 'IPAY2022/09/6743', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 29, 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 (6745, '2022-09-24 13:58:30', 6801, NULL, NULL, 'IPAY2022/09/6744', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 29, 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 (6746, '2022-09-24 14:18:27', 6802, NULL, NULL, 'IPAY2022/09/6745', NULL, 'cash', '', '', '', '', '', '', '499.2000', NULL, 16, NULL, 'received', '', '499.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 (6747, '2022-09-24 14:38:38', 6803, NULL, NULL, 'IPAY2022/09/6746', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 29, 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 (6748, '2022-09-24 15:26:41', 6804, NULL, NULL, 'IPAY2022/09/6747', NULL, 'cash', '', '', '', '', '', '', '375.7000', NULL, 47, NULL, 'received', '', '375.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 (6749, '2022-09-24 18:45:07', 6805, NULL, NULL, 'IPAY2022/09/6748', NULL, 'cash', '', '', '', '', '', '', '257.1000', NULL, 16, NULL, 'received', '', '257.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 (6750, '2022-09-24 20:42:26', 6806, NULL, NULL, 'IPAY2022/09/6749', NULL, 'cash', '', '', '', '', '', '', '358.9000', NULL, 16, NULL, 'received', '', '358.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 (6751, '2022-09-24 21:32:47', 6807, NULL, NULL, 'IPAY2022/09/6750', NULL, 'cash', '', '', '', '', '', '', '74.2000', NULL, 16, 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 (6752, '2022-09-24 22:21:34', 6808, NULL, NULL, 'IPAY2022/09/6751', NULL, 'cash', '', '', '', '', '', '', '1070.5000', NULL, 33, NULL, 'received', '', '1070.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6753, '2022-09-25 14:10:19', 6809, NULL, NULL, 'IPAY2022/09/6752', NULL, 'cash', '', '', '', '', '', '', '188.7000', NULL, 29, NULL, 'received', '', '188.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 (6754, '2022-09-25 14:53:56', 6810, NULL, NULL, 'IPAY2022/09/6753', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 29, 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 (6755, '2022-09-25 15:11:05', 6811, NULL, NULL, 'IPAY2022/09/6754', NULL, 'cash', '', '', '', '', '', '', '59.5000', NULL, 29, 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 (6756, '2022-09-25 15:50:03', 6812, NULL, NULL, 'IPAY2022/09/6755', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 29, 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 (6757, '2022-09-25 16:15:02', 6813, NULL, NULL, 'IPAY2022/09/6756', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 29, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6758, '2022-09-25 16:15:46', 6814, NULL, NULL, 'IPAY2022/09/6757', NULL, 'cash', '', '', '', '', '', '', '351.2000', NULL, 16, NULL, 'received', '', '351.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 (6759, '2022-09-25 16:22:27', 6815, NULL, NULL, 'IPAY2022/09/6758', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 29, 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 (6760, '2022-09-25 16:49:49', 6816, NULL, NULL, 'IPAY2022/09/6759', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 29, 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 (6761, '2022-09-25 17:01:40', 6817, NULL, NULL, 'IPAY2022/09/6760', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 29, 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 (6762, '2022-09-25 17:09:30', 6818, NULL, NULL, 'IPAY2022/09/6761', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (6763, '2022-09-25 17:16:05', 6819, NULL, NULL, 'IPAY2022/09/6762', NULL, 'cash', '', '', '', '', '', '', '333.5000', NULL, 16, NULL, 'received', '', '333.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6764, '2022-09-25 20:04:12', 6820, NULL, NULL, 'IPAY2022/09/6763', NULL, 'cash', '', '', '', '', '', '', '215.9000', NULL, 21, NULL, 'received', '', '215.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 (6765, '2022-09-25 20:27:13', 6821, NULL, NULL, 'IPAY2022/09/6764', NULL, 'cash', '', '', '', '', '', '', '493.4000', NULL, 17, NULL, 'received', '', '493.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 (6766, '2022-09-25 20:55:07', 6822, NULL, NULL, 'IPAY2022/09/6765', NULL, 'cash', '', '', '', '', '', '', '549.4000', NULL, 22, NULL, 'received', '', '549.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 (6767, '2022-09-25 21:36:20', 6823, NULL, NULL, 'IPAY2022/09/6766', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 17, 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 (6768, '2022-09-25 21:50:05', 6824, NULL, NULL, 'IPAY2022/09/6767', NULL, 'cash', '', '', '', '', '', '', '548.2000', NULL, 22, NULL, 'received', '', '548.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 (6769, '2022-09-25 21:56:14', 6825, NULL, NULL, 'IPAY2022/09/6768', NULL, 'cash', '', '', '', '', '', '', '194.5000', NULL, 21, NULL, 'received', '', '194.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6770, '2022-09-26 15:06:14', 6826, NULL, NULL, 'IPAY2022/09/6769', NULL, 'cash', '', '', '', '', '', '', '402.3000', NULL, 21, NULL, 'received', '', '402.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 (6771, '2022-09-26 15:20:49', 6827, NULL, NULL, 'IPAY2022/09/6770', NULL, 'cash', '', '', '', '', '', '', '333.5000', NULL, 47, NULL, 'received', '', '333.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6772, '2022-09-26 20:13:26', 6828, NULL, NULL, 'IPAY2022/09/6771', NULL, 'cash', '', '', '', '', '', '', '1564.9800', NULL, 17, NULL, 'received', '', '1564.9800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6773, '2022-09-26 21:40:54', 6829, NULL, NULL, 'IPAY2022/09/6772', NULL, 'cash', '', '', '', '', '', '', '107.5000', NULL, 17, 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 (6774, '2022-09-27 12:52:09', 6830, NULL, NULL, 'IPAY2022/09/6773', NULL, 'cash', '', '', '', '', '', '', '443.5000', NULL, 47, NULL, 'received', '', '443.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6775, '2022-09-27 14:31:38', 6831, NULL, NULL, 'IPAY2022/09/6774', NULL, 'cash', '', '', '', '', '', '', '400.5000', NULL, 16, NULL, 'received', '', '400.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6776, '2022-09-27 14:55:14', 6832, NULL, NULL, 'IPAY2022/09/6775', NULL, 'cash', '', '', '', '', '', '', '462.9000', NULL, 33, NULL, 'received', '', '462.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 (6777, '2022-09-27 15:02:10', 6833, NULL, NULL, 'IPAY2022/09/6776', NULL, 'cash', '', '', '', '', '', '', '551.7500', NULL, 47, NULL, 'received', '', '551.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 (6778, '2022-09-27 15:04:32', 6834, NULL, NULL, 'IPAY2022/09/6777', NULL, 'cash', '', '', '', '', '', '', '551.7500', NULL, 47, NULL, 'received', '', '551.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 (6779, '2022-09-27 15:19:39', 6835, NULL, NULL, 'IPAY2022/09/6778', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 16, 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 (6780, '2022-09-27 15:51:08', 6836, NULL, NULL, 'IPAY2022/09/6779', NULL, 'cash', '', '', '', '', '', '', '329.2000', NULL, 29, NULL, 'received', '', '329.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 (6781, '2022-09-27 18:07:52', 6837, NULL, NULL, 'IPAY2022/09/6780', NULL, 'cash', '', '', '', '', '', '', '304.4000', NULL, 29, NULL, 'received', '', '304.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 (6782, '2022-09-27 19:32:23', 6838, NULL, NULL, 'IPAY2022/09/6781', NULL, 'cash', '', '', '', '', '', '', '277.3000', NULL, 29, NULL, 'received', '', '277.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 (6783, '2022-09-27 20:19:01', 6839, NULL, NULL, 'IPAY2022/09/6782', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 29, 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 (6784, '2022-09-27 20:23:57', 6840, NULL, NULL, 'IPAY2022/09/6783', NULL, 'cash', '', '', '', '', '', '', '720.0000', NULL, 17, NULL, 'received', '', '720.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6785, '2022-09-27 21:16:25', 6841, NULL, NULL, 'IPAY2022/09/6784', NULL, 'cash', '', '', '', '', '', '', '19.4000', NULL, 29, NULL, 'received', '', '19.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 (6786, '2022-09-27 21:19:49', 6842, NULL, NULL, 'IPAY2022/09/6785', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (6787, '2022-09-27 21:33:01', 6843, NULL, NULL, 'IPAY2022/09/6786', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 29, 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 (6788, '2022-09-27 21:33:34', 6844, NULL, NULL, 'IPAY2022/09/6787', NULL, 'cash', '', '', '', '', '', '', '120.5000', NULL, 17, 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 (6789, '2022-09-27 21:51:17', 6845, NULL, NULL, 'IPAY2022/09/6788', NULL, 'cash', '', '', '', '', '', '', '354.5000', NULL, 22, NULL, 'received', '', '354.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6790, '2022-09-27 21:52:13', 6846, NULL, NULL, 'IPAY2022/09/6789', NULL, 'cash', '', '', '', '', '', '', '2.1000', NULL, 29, NULL, 'received', '', '2.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 (6791, '2022-09-27 21:55:33', 6847, NULL, NULL, 'IPAY2022/09/6790', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 29, 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 (6792, '2022-09-27 22:02:29', 6848, NULL, NULL, 'IPAY2022/09/6791', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 22, 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 (6793, '2022-09-28 12:44:38', 6849, NULL, NULL, 'IPAY2022/09/6792', NULL, 'cash', '', '', '', '', '', '', '149.6000', NULL, 29, NULL, 'received', '', '149.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 (6794, '2022-09-28 13:45:41', 6850, NULL, NULL, 'IPAY2022/09/6793', NULL, 'cash', '', '', '', '', '', '', '196.6000', NULL, 29, NULL, 'received', '', '196.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 (6795, '2022-09-28 13:57:33', 6851, NULL, NULL, 'IPAY2022/09/6794', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (6796, '2022-09-28 13:58:51', 6852, NULL, NULL, 'IPAY2022/09/6795', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 29, 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 (6797, '2022-09-28 14:06:40', 6853, NULL, NULL, 'IPAY2022/09/6796', NULL, 'cash', '', '', '', '', '', '', '229.1000', NULL, 16, NULL, 'received', '', '229.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 (6798, '2022-09-28 14:08:45', 6854, NULL, NULL, 'IPAY2022/09/6797', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 29, 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 (6799, '2022-09-28 14:55:29', 6855, NULL, NULL, 'IPAY2022/09/6798', NULL, 'cash', '', '', '', '', '', '', '242.1000', NULL, 8, NULL, 'received', '', '242.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 (6800, '2022-09-28 15:04:29', 6856, NULL, NULL, 'IPAY2022/09/6799', NULL, 'cash', '', '', '', '', '', '', '45.5000', NULL, 16, NULL, 'received', '', '45.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6801, '2022-09-28 15:12:31', 6857, NULL, NULL, 'IPAY2022/09/6800', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (6802, '2022-09-28 20:53:23', 6858, NULL, NULL, 'IPAY2022/09/6801', NULL, 'cash', '', '', '', '', '', '', '401.6500', NULL, 17, NULL, 'received', '', '401.6500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6803, '2022-09-28 21:21:04', 6859, NULL, NULL, 'IPAY2022/09/6802', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 17, 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 (6804, '2022-09-28 21:38:37', 6860, NULL, NULL, 'IPAY2022/09/6803', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 17, 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 (6805, '2022-09-28 21:46:14', 6861, NULL, NULL, 'IPAY2022/09/6804', NULL, 'cash', '', '', '', '', '', '', '339.7000', NULL, 22, NULL, 'received', '', '339.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 (6806, '2022-09-28 21:48:18', 6862, NULL, NULL, 'IPAY2022/09/6805', NULL, 'cash', '', '', '', '', '', '', '351.2000', NULL, 21, NULL, 'received', '', '351.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 (6807, '2022-09-28 21:53:53', 6863, NULL, NULL, 'IPAY2022/09/6806', NULL, 'cash', '', '', '', '', '', '', '241.6000', NULL, 21, 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 (6808, '2022-09-29 13:46:51', 6864, NULL, NULL, 'IPAY2022/09/6807', NULL, 'cash', '', '', '', '', '', '', '246.5000', NULL, 16, 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 (6809, '2022-09-29 14:59:43', 6865, NULL, NULL, 'IPAY2022/09/6808', NULL, 'cash', '', '', '', '', '', '', '878.9300', NULL, 21, NULL, 'received', '', '878.9300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6810, '2022-09-29 15:07:00', 6866, NULL, NULL, 'IPAY2022/09/6809', NULL, 'cash', '', '', '', '', '', '', '322.6000', NULL, 47, NULL, 'received', '', '322.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 (6811, '2022-09-29 15:10:53', 6867, NULL, NULL, 'IPAY2022/09/6810', NULL, 'cash', '', '', '', '', '', '', '63.0000', NULL, 16, 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 (6812, '2022-09-29 21:34:40', 6868, NULL, NULL, 'IPAY2022/09/6811', NULL, 'cash', '', '', '', '', '', '', '603.0000', NULL, 17, NULL, 'received', '', '603.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6813, '2022-09-29 21:36:04', 6869, NULL, NULL, 'IPAY2022/09/6812', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 17, 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 (6814, '2022-09-29 21:52:58', 6870, NULL, NULL, 'IPAY2022/09/6813', NULL, 'cash', '', '', '', '', '', '', '771.8600', NULL, 33, NULL, 'received', '', '771.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 (6815, '2022-09-29 21:56:56', 6871, NULL, NULL, 'IPAY2022/09/6814', NULL, 'cash', '', '', '', '', '', '', '886.0000', NULL, 22, NULL, 'received', '', '886.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6816, '2022-09-30 13:02:28', 6872, NULL, NULL, 'IPAY2022/09/6815', NULL, 'cash', '', '', '', '', '', '', '163.5000', NULL, 29, NULL, 'received', '', '163.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6817, '2022-09-30 14:15:26', 6873, NULL, NULL, 'IPAY2022/09/6816', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 29, 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 (6818, '2022-09-30 14:30:27', 6874, NULL, NULL, 'IPAY2022/09/6817', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 29, 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 (6819, '2022-09-30 14:36:05', 6875, NULL, NULL, 'IPAY2022/09/6818', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 29, 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 (6820, '2022-09-30 14:52:02', 6876, NULL, NULL, 'IPAY2022/09/6819', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 29, 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 (6821, '2022-09-30 14:59:26', 6877, NULL, NULL, 'IPAY2022/09/6820', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 29, 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 (6822, '2022-09-30 15:04:27', 6878, NULL, NULL, 'IPAY2022/09/6821', NULL, 'cash', '', '', '', '', '', '', '681.2000', NULL, 16, NULL, 'received', '', '681.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 (6823, '2022-09-30 15:29:15', 6879, NULL, NULL, 'IPAY2022/09/6822', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 47, 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 (6824, '2022-09-30 20:55:11', 6880, NULL, NULL, 'IPAY2022/09/6823', NULL, 'cash', '', '', '', '', '', '', '432.9000', NULL, 17, NULL, 'received', '', '432.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 (6825, '2022-09-30 21:39:21', 6881, NULL, NULL, 'IPAY2022/09/6824', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 17, 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 (6826, '2022-09-30 21:45:24', 6882, NULL, NULL, 'IPAY2022/09/6825', NULL, 'cash', '', '', '', '', '', '', '519.8000', NULL, 33, NULL, 'received', '', '519.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 (6827, '2022-09-30 21:52:18', 6883, NULL, NULL, 'IPAY2022/09/6826', NULL, 'cash', '', '', '', '', '', '', '427.0800', NULL, 22, NULL, 'received', '', '427.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 (6828, '2022-10-01 15:21:09', 6884, NULL, NULL, 'IPAY2022/10/6827', NULL, 'cash', '', '', '', '', '', '', '392.0000', NULL, 47, 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 (6829, '2022-10-01 18:35:39', 6885, NULL, NULL, 'IPAY2022/10/6828', NULL, 'cash', '', '', '', '', '', '', '450.1000', NULL, 16, NULL, 'received', '', '450.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 (6830, '2022-10-01 20:37:28', 6886, NULL, NULL, 'IPAY2022/10/6829', NULL, 'cash', '', '', '', '', '', '', '467.5000', NULL, 16, NULL, 'received', '', '467.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6831, '2022-10-01 21:37:10', 6887, NULL, NULL, 'IPAY2022/10/6830', NULL, 'cash', '', '', '', '', '', '', '185.4000', NULL, 16, NULL, 'received', '', '185.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 (6832, '2022-10-01 21:50:20', 6888, NULL, NULL, 'IPAY2022/10/6831', NULL, 'cash', '', '', '', '', '', '', '777.3000', NULL, 33, NULL, 'received', '', '777.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 (6833, '2022-10-01 22:04:12', 6889, NULL, NULL, 'IPAY2022/10/6832', NULL, 'cash', '', '', '', '', '', '', '661.7000', NULL, 22, NULL, 'received', '', '661.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 (6834, '2022-10-02 13:23:21', 6890, NULL, NULL, 'IPAY2022/10/6833', NULL, 'cash', '', '', '', '', '', '', '247.0000', NULL, 29, NULL, 'received', '', '247.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6835, '2022-10-02 14:29:31', 6891, NULL, NULL, 'IPAY2022/10/6834', NULL, 'cash', '', '', '', '', '', '', '258.5000', NULL, 29, NULL, 'received', '', '258.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6836, '2022-10-02 15:18:17', 6892, NULL, NULL, 'IPAY2022/10/6835', NULL, 'cash', '', '', '', '', '', '', '123.0000', NULL, 29, NULL, 'received', '', '123.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6837, '2022-10-02 15:38:02', 6893, NULL, NULL, 'IPAY2022/10/6836', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 29, 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 (6838, '2022-10-02 16:19:10', 6894, NULL, NULL, 'IPAY2022/10/6837', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 29, 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 (6839, '2022-10-02 16:37:15', 6895, NULL, NULL, 'IPAY2022/10/6838', NULL, 'cash', '', '', '', '', '', '', '17.8000', NULL, 29, NULL, 'received', '', '17.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 (6840, '2022-10-02 16:44:53', 6896, NULL, NULL, 'IPAY2022/10/6839', NULL, 'cash', '', '', '', '', '', '', '554.3000', NULL, 17, NULL, 'received', '', '554.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 (6841, '2022-10-02 17:00:09', 6897, NULL, NULL, 'IPAY2022/10/6840', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 29, 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 (6842, '2022-10-02 17:03:54', 6898, NULL, NULL, 'IPAY2022/10/6841', NULL, 'cash', '', '', '', '', '', '', '72.0000', NULL, 17, NULL, 'received', '', '72.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6843, '2022-10-02 19:33:29', 6899, NULL, NULL, 'IPAY2022/10/6842', NULL, 'cash', '', '', '', '', '', '', '299.4000', NULL, 16, NULL, 'received', '', '299.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 (6844, '2022-10-02 21:34:08', 6900, NULL, NULL, 'IPAY2022/10/6843', NULL, 'cash', '', '', '', '', '', '', '369.0000', NULL, 16, 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 (6845, '2022-10-02 21:38:47', 6901, NULL, NULL, 'IPAY2022/10/6844', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 16, 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 (6846, '2022-10-02 21:47:18', 6902, NULL, NULL, 'IPAY2022/10/6845', NULL, 'cash', '', '', '', '', '', '', '862.9000', NULL, 21, NULL, 'received', '', '862.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 (6847, '2022-10-02 21:54:23', 6903, NULL, NULL, 'IPAY2022/10/6846', NULL, 'cash', '', '', '', '', '', '', '35.2000', NULL, 21, NULL, 'received', '', '35.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 (6848, '2022-10-02 22:03:41', 6904, NULL, NULL, 'IPAY2022/10/6847', NULL, 'cash', '', '', '', '', '', '', '518.0000', NULL, 22, NULL, 'received', '', '518.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6849, '2022-10-03 14:05:45', 6905, NULL, NULL, 'IPAY2022/10/6848', NULL, 'cash', '', '', '', '', '', '', '366.5000', NULL, 21, NULL, 'received', '', '366.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6850, '2022-10-03 15:13:35', 6906, NULL, NULL, 'IPAY2022/10/6849', NULL, 'cash', '', '', '', '', '', '', '322.5000', NULL, 22, NULL, 'received', '', '322.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6851, '2022-10-03 15:23:04', 6907, NULL, NULL, 'IPAY2022/10/6850', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 21, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6852, '2022-10-03 15:37:09', 6908, NULL, NULL, 'IPAY2022/10/6851', NULL, 'cash', '', '', '', '', '', '', '651.0000', NULL, 17, NULL, 'received', '', '651.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6853, '2022-10-03 15:42:06', 6909, NULL, NULL, 'IPAY2022/10/6852', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 21, 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 (6854, '2022-10-03 17:49:14', 6910, NULL, NULL, 'IPAY2022/10/6853', NULL, 'cash', '', '', '', '', '', '', '127.6400', NULL, 29, NULL, 'received', '', '127.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6855, '2022-10-03 20:24:04', 6911, NULL, NULL, 'IPAY2022/10/6854', NULL, 'cash', '', '', '', '', '', '', '503.5000', NULL, 29, NULL, 'received', '', '503.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6856, '2022-10-03 20:38:11', 6912, NULL, NULL, 'IPAY2022/10/6855', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 29, 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 (6857, '2022-10-03 20:49:54', 6913, NULL, NULL, 'IPAY2022/10/6856', NULL, 'cash', '', '', '', '', '', '', '697.5000', NULL, 8, NULL, 'received', '', '697.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6858, '2022-10-03 20:57:03', 6914, NULL, NULL, 'IPAY2022/10/6857', NULL, 'cash', '', '', '', '', '', '', '1094.3000', NULL, 17, NULL, 'received', '', '1094.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 (6859, '2022-10-03 21:20:19', 6915, NULL, NULL, 'IPAY2022/10/6858', NULL, 'cash', '', '', '', '', '', '', '155.9000', NULL, 29, NULL, 'received', '', '155.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 (6860, '2022-10-03 21:33:04', 6916, NULL, NULL, 'IPAY2022/10/6859', NULL, 'cash', '', '', '', '', '', '', '84.5000', NULL, 17, 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 (6861, '2022-10-03 22:08:21', 6917, NULL, NULL, 'IPAY2022/10/6860', NULL, 'cash', '', '', '', '', '', '', '149.0000', NULL, 8, 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 (6862, '2022-10-04 13:31:28', 6918, NULL, NULL, 'IPAY2022/10/6861', NULL, 'cash', '', '', '', '', '', '', '467.8000', NULL, 33, NULL, 'received', '', '467.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 (6863, '2022-10-04 13:59:35', 6919, NULL, NULL, 'IPAY2022/10/6862', NULL, 'cash', '', '', '', '', '', '', '289.0000', NULL, 17, NULL, 'received', '', '289.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6864, '2022-10-04 15:03:00', 6920, NULL, NULL, 'IPAY2022/10/6863', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 17, 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 (6865, '2022-10-04 15:13:27', 6921, NULL, NULL, 'IPAY2022/10/6864', NULL, 'cash', '', '', '', '', '', '', '149.2000', NULL, 47, NULL, 'received', '', '149.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 (6866, '2022-10-04 18:43:27', 6922, NULL, NULL, 'IPAY2022/10/6865', NULL, 'cash', '', '', '', '', '', '', '202.8000', NULL, 29, NULL, 'received', '', '202.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 (6867, '2022-10-04 19:11:09', 6923, NULL, NULL, 'IPAY2022/10/6866', NULL, 'cash', '', '', '', '', '', '', '21.9000', NULL, 29, NULL, 'received', '', '21.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 (6868, '2022-10-04 19:37:02', 6924, NULL, NULL, 'IPAY2022/10/6867', NULL, 'cash', '', '', '', '', '', '', '72.4000', NULL, 29, NULL, 'received', '', '72.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 (6869, '2022-10-04 19:41:04', 6925, NULL, NULL, 'IPAY2022/10/6868', NULL, 'cash', '', '', '', '', '', '', '532.0000', NULL, 16, NULL, 'received', '', '532.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6870, '2022-10-04 20:59:48', 6926, NULL, NULL, 'IPAY2022/10/6869', NULL, 'cash', '', '', '', '', '', '', '171.1400', NULL, 29, NULL, 'received', '', '171.1400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6871, '2022-10-04 21:41:10', 6927, NULL, NULL, 'IPAY2022/10/6870', NULL, 'cash', '', '', '', '', '', '', '379.5000', NULL, 16, NULL, 'received', '', '379.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6872, '2022-10-04 21:43:32', 6928, NULL, NULL, 'IPAY2022/10/6871', NULL, 'cash', '', '', '', '', '', '', '241.0000', NULL, 29, NULL, 'received', '', '241.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6873, '2022-10-04 22:25:43', 6929, NULL, NULL, 'IPAY2022/10/6872', NULL, 'cash', '', '', '', '', '', '', '794.4000', NULL, 22, NULL, 'received', '', '794.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 (6874, '2022-10-05 09:53:08', 6930, NULL, NULL, 'IPAY2022/10/6873', NULL, 'cash', '', '', '', '', '', '', '308.4000', NULL, 29, NULL, 'received', '', '308.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 (6875, '2022-10-05 11:22:37', 6931, NULL, NULL, 'IPAY2022/10/6874', NULL, 'cash', '', '', '', '', '', '', '93.3000', NULL, 29, NULL, 'received', '', '93.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 (6876, '2022-10-05 12:20:47', 6932, NULL, NULL, 'IPAY2022/10/6875', NULL, 'cash', '', '', '', '', '', '', '93.5000', NULL, 29, NULL, 'received', '', '93.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6877, '2022-10-05 13:01:20', 6933, NULL, NULL, 'IPAY2022/10/6876', NULL, 'cash', '', '', '', '', '', '', '50.1000', NULL, 29, NULL, 'received', '', '50.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 (6878, '2022-10-05 13:44:12', 6934, NULL, NULL, 'IPAY2022/10/6877', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 29, 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 (6879, '2022-10-05 14:41:17', 6935, NULL, NULL, 'IPAY2022/10/6878', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 29, 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 (6880, '2022-10-05 15:17:14', 6936, NULL, NULL, 'IPAY2022/10/6879', NULL, 'cash', '', '', '', '', '', '', '198.0000', NULL, 22, NULL, 'received', '', '198.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6881, '2022-10-05 15:19:48', 6937, NULL, NULL, 'IPAY2022/10/6880', NULL, 'cash', '', '', '', '', '', '', '242.0000', NULL, 17, 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 (6882, '2022-10-05 20:10:18', 6938, NULL, NULL, 'IPAY2022/10/6881', NULL, 'cash', '', '', '', '', '', '', '570.5000', NULL, 16, NULL, 'received', '', '570.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6883, '2022-10-05 20:43:32', 6939, NULL, NULL, 'IPAY2022/10/6882', NULL, 'cash', '', '', '', '', '', '', '356.5000', NULL, 16, NULL, 'received', '', '356.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6884, '2022-10-05 21:34:00', 6940, NULL, NULL, 'IPAY2022/10/6883', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 17, 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 (6885, '2022-10-05 22:01:47', 6941, NULL, NULL, 'IPAY2022/10/6884', NULL, 'cash', '', '', '', '', '', '', '625.6500', NULL, 8, NULL, 'received', '', '625.6500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6886, '2022-10-06 15:16:41', 6942, NULL, NULL, 'IPAY2022/10/6885', NULL, 'cash', '', '', '', '', '', '', '371.1000', NULL, 17, NULL, 'received', '', '371.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 (6887, '2022-10-06 15:18:06', 6943, NULL, NULL, 'IPAY2022/10/6886', NULL, 'cash', '', '', '', '', '', '', '144.0000', NULL, 47, NULL, 'received', '', '144.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6888, '2022-10-06 19:54:19', 6944, NULL, NULL, 'IPAY2022/10/6887', NULL, 'cash', '', '', '', '', '', '', '589.7000', NULL, 16, NULL, 'received', '', '589.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 (6889, '2022-10-06 21:03:11', 6945, NULL, NULL, 'IPAY2022/10/6888', NULL, 'cash', '', '', '', '', '', '', '255.0000', NULL, 16, 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 (6890, '2022-10-06 21:33:56', 6946, NULL, NULL, 'IPAY2022/10/6889', NULL, 'cash', '', '', '', '', '', '', '128.0000', NULL, 16, NULL, 'received', '', '128.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6891, '2022-10-06 22:00:14', 6947, NULL, NULL, 'IPAY2022/10/6890', NULL, 'cash', '', '', '', '', '', '', '883.5000', NULL, 22, NULL, 'received', '', '883.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6892, '2022-10-07 14:55:11', 6948, NULL, NULL, 'IPAY2022/10/6891', NULL, 'cash', '', '', '', '', '', '', '350.9000', NULL, 17, NULL, 'received', '', '350.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 (6893, '2022-10-07 15:08:55', 6949, NULL, NULL, 'IPAY2022/10/6892', NULL, 'cash', '', '', '', '', '', '', '303.5000', NULL, 47, NULL, 'received', '', '303.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6894, '2022-10-07 15:11:35', 6950, NULL, NULL, 'IPAY2022/10/6893', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 17, 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 (6895, '2022-10-07 16:10:37', 6951, NULL, NULL, 'IPAY2022/10/6894', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 22, 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 (6896, '2022-10-07 19:20:39', 6952, NULL, NULL, 'IPAY2022/10/6895', NULL, 'cash', '', '', '', '', '', '', '651.2400', NULL, 33, NULL, 'received', '', '651.2400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6897, '2022-10-07 19:22:49', 6953, NULL, NULL, 'IPAY2022/10/6896', NULL, 'cash', '', '', '', '', '', '', '407.5000', NULL, 16, NULL, 'received', '', '407.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6898, '2022-10-07 21:34:59', 6954, NULL, NULL, 'IPAY2022/10/6897', NULL, 'cash', '', '', '', '', '', '', '149.0000', NULL, 16, 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 (6899, '2022-10-07 21:53:19', 6955, NULL, NULL, 'IPAY2022/10/6898', NULL, 'cash', '', '', '', '', '', '', '436.5000', NULL, 22, NULL, 'received', '', '436.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6900, '2022-10-07 22:00:39', 6956, NULL, NULL, 'IPAY2022/10/6899', NULL, 'cash', '', '', '', '', '', '', '1010.1000', NULL, 33, NULL, 'received', '', '1010.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 (6901, '2022-10-08 11:32:40', 6957, NULL, NULL, 'IPAY2022/10/6900', NULL, 'cash', '', '', '', '', '', '', '260.5000', NULL, 29, NULL, 'received', '', '260.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6902, '2022-10-08 13:35:04', 6958, NULL, NULL, 'IPAY2022/10/6901', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 29, 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 (6903, '2022-10-08 14:18:46', 6959, NULL, NULL, 'IPAY2022/10/6902', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 29, 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 (6904, '2022-10-08 15:17:17', 6960, NULL, NULL, 'IPAY2022/10/6903', NULL, 'cash', '', '', '', '', '', '', '115.5000', NULL, 47, NULL, 'received', '', '115.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6905, '2022-10-08 18:44:06', 6961, NULL, NULL, 'IPAY2022/10/6904', NULL, 'cash', '', '', '', '', '', '', '936.1500', NULL, 16, NULL, 'received', '', '936.1500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6906, '2022-10-08 20:45:22', 6962, NULL, NULL, 'IPAY2022/10/6905', NULL, 'cash', '', '', '', '', '', '', '509.7000', NULL, 16, NULL, 'received', '', '509.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 (6907, '2022-10-08 21:37:28', 6963, NULL, NULL, 'IPAY2022/10/6906', NULL, 'cash', '', '', '', '', '', '', '102.5000', NULL, 16, NULL, 'received', '', '102.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6908, '2022-10-08 21:44:11', 6964, NULL, NULL, 'IPAY2022/10/6907', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 22, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6909, '2022-10-08 21:59:44', 6965, NULL, NULL, 'IPAY2022/10/6908', NULL, 'cash', '', '', '', '', '', '', '715.2000', NULL, 33, NULL, 'received', '', '715.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 (6910, '2022-10-08 22:00:37', 6966, NULL, NULL, 'IPAY2022/10/6909', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 33, 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 (6911, '2022-10-09 15:15:44', 6967, NULL, NULL, 'IPAY2022/10/6910', NULL, 'cash', '', '', '', '', '', '', '311.8000', NULL, 29, NULL, 'received', '', '311.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 (6912, '2022-10-09 16:04:57', 6968, NULL, NULL, 'IPAY2022/10/6911', NULL, 'cash', '', '', '', '', '', '', '136.5000', NULL, 29, NULL, 'received', '', '136.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6913, '2022-10-09 16:32:07', 6969, NULL, NULL, 'IPAY2022/10/6912', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 29, 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 (6914, '2022-10-09 16:56:57', 6970, NULL, NULL, 'IPAY2022/10/6913', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 29, 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 (6915, '2022-10-09 17:11:09', 6971, NULL, NULL, 'IPAY2022/10/6914', NULL, 'cash', '', '', '', '', '', '', '174.0000', NULL, 16, 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 (6916, '2022-10-09 21:24:17', 6972, NULL, NULL, 'IPAY2022/10/6915', NULL, 'cash', '', '', '', '', '', '', '384.8000', NULL, 17, NULL, 'received', '', '384.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 (6917, '2022-10-09 21:52:38', 6973, NULL, NULL, 'IPAY2022/10/6916', NULL, 'cash', '', '', '', '', '', '', '624.6000', NULL, 22, NULL, 'received', '', '624.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 (6918, '2022-10-09 21:55:30', 6974, NULL, NULL, 'IPAY2022/10/6917', NULL, 'cash', '', '', '', '', '', '', '548.5000', NULL, 21, NULL, 'received', '', '548.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6919, '2022-10-10 14:31:14', 6975, NULL, NULL, 'IPAY2022/10/6918', NULL, 'cash', '', '', '', '', '', '', '479.1000', NULL, 21, NULL, 'received', '', '479.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 (6920, '2022-10-10 15:20:21', 6976, NULL, NULL, 'IPAY2022/10/6919', NULL, 'cash', '', '', '', '', '', '', '398.5000', NULL, 47, NULL, 'received', '', '398.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6921, '2022-10-10 15:36:30', 6977, NULL, NULL, 'IPAY2022/10/6920', NULL, 'cash', '', '', '', '', '', '', '501.2000', NULL, 17, NULL, 'received', '', '501.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 (6922, '2022-10-10 18:04:30', 6978, NULL, NULL, 'IPAY2022/10/6921', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 17, 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 (6923, '2022-10-10 19:26:35', 6979, NULL, NULL, 'IPAY2022/10/6922', NULL, 'cash', '', '', '', '', '', '', '378.5000', NULL, 8, 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 (6924, '2022-10-10 19:45:10', 6980, NULL, NULL, 'IPAY2022/10/6923', NULL, 'cash', '', '', '', '', '', '', '596.7800', NULL, 29, NULL, 'received', '', '596.7800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6925, '2022-10-10 20:16:40', 6981, NULL, NULL, 'IPAY2022/10/6924', NULL, 'cash', '', '', '', '', '', '', '67.5000', NULL, 29, 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 (6926, '2022-10-10 20:42:48', 6982, NULL, NULL, 'IPAY2022/10/6925', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 29, 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 (6927, '2022-10-10 20:58:59', 6983, NULL, NULL, 'IPAY2022/10/6926', NULL, 'cash', '', '', '', '', '', '', '67.4000', NULL, 29, NULL, 'received', '', '67.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 (6928, '2022-10-10 21:10:51', 6984, NULL, NULL, 'IPAY2022/10/6927', NULL, 'cash', '', '', '', '', '', '', '867.2000', NULL, 17, NULL, 'received', '', '867.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 (6929, '2022-10-10 21:16:58', 6985, NULL, NULL, 'IPAY2022/10/6928', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 29, 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 (6930, '2022-10-10 21:26:21', 6986, NULL, NULL, 'IPAY2022/10/6929', NULL, 'cash', '', '', '', '', '', '', '14.1000', NULL, 29, NULL, 'received', '', '14.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 (6931, '2022-10-10 21:40:46', 6987, NULL, NULL, 'IPAY2022/10/6930', NULL, 'cash', '', '', '', '', '', '', '52.5000', NULL, 17, 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 (6932, '2022-10-10 21:45:12', 6988, NULL, NULL, 'IPAY2022/10/6931', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 29, 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 (6933, '2022-10-10 21:52:25', 6989, NULL, NULL, 'IPAY2022/10/6932', NULL, 'cash', '', '', '', '', '', '', '291.0000', NULL, 8, NULL, 'received', '', '291.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6934, '2022-10-11 15:17:04', 6990, NULL, NULL, 'IPAY2022/10/6933', NULL, 'cash', '', '', '', '', '', '', '273.5300', NULL, 16, NULL, 'received', '', '273.5300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6935, '2022-10-11 15:30:26', 6991, NULL, NULL, 'IPAY2022/10/6934', NULL, 'cash', '', '', '', '', '', '', '272.5000', NULL, 47, 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 (6936, '2022-10-11 16:44:40', 6992, NULL, NULL, 'IPAY2022/10/6935', NULL, 'cash', '', '', '', '', '', '', '461.1000', NULL, 33, NULL, 'received', '', '461.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 (6937, '2022-10-11 19:03:39', 6993, NULL, NULL, 'IPAY2022/10/6936', NULL, 'cash', '', '', '', '', '', '', '650.5000', NULL, 29, NULL, 'received', '', '650.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6938, '2022-10-11 19:22:41', 6994, NULL, NULL, 'IPAY2022/10/6937', NULL, 'cash', '', '', '', '', '', '', '91.0000', NULL, 29, NULL, 'received', '', '91.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6939, '2022-10-11 20:02:43', 6995, NULL, NULL, 'IPAY2022/10/6938', NULL, 'cash', '', '', '', '', '', '', '106.5000', NULL, 29, 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 (6940, '2022-10-11 20:55:44', 6996, NULL, NULL, 'IPAY2022/10/6939', NULL, 'cash', '', '', '', '', '', '', '98.8900', NULL, 29, NULL, 'received', '', '98.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 (6941, '2022-10-11 21:12:10', 6997, NULL, NULL, 'IPAY2022/10/6940', NULL, 'cash', '', '', '', '', '', '', '25.6000', NULL, 29, NULL, 'received', '', '25.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 (6942, '2022-10-11 21:32:30', 6998, NULL, NULL, 'IPAY2022/10/6941', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (6943, '2022-10-11 21:32:35', 6999, NULL, NULL, 'IPAY2022/10/6942', NULL, 'cash', '', '', '', '', '', '', '798.6500', NULL, 17, NULL, 'received', '', '798.6500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6944, '2022-10-11 21:55:34', 7000, NULL, NULL, 'IPAY2022/10/6943', NULL, 'cash', '', '', '', '', '', '', '584.4000', NULL, 22, NULL, 'received', '', '584.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 (6945, '2022-10-12 12:50:14', 7001, NULL, NULL, 'IPAY2022/10/6944', NULL, 'cash', '', '', '', '', '', '', '179.1000', NULL, 29, NULL, 'received', '', '179.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 (6946, '2022-10-12 14:05:13', 7002, NULL, NULL, 'IPAY2022/10/6945', NULL, 'cash', '', '', '', '', '', '', '228.4000', NULL, 16, NULL, 'received', '', '228.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 (6947, '2022-10-12 14:30:22', 7003, NULL, NULL, 'IPAY2022/10/6946', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 29, 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 (6948, '2022-10-12 14:36:07', 7004, NULL, NULL, 'IPAY2022/10/6947', NULL, 'cash', '', '', '', '', '', '', '18.6400', NULL, 29, NULL, 'received', '', '18.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6949, '2022-10-12 14:51:00', 7005, NULL, NULL, 'IPAY2022/10/6948', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 8, 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 (6950, '2022-10-12 14:55:38', 7006, NULL, NULL, 'IPAY2022/10/6949', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 29, 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 (6951, '2022-10-12 15:01:02', 7007, NULL, NULL, 'IPAY2022/10/6950', NULL, 'cash', '', '', '', '', '', '', '94.5000', NULL, 16, NULL, 'received', '', '94.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6952, '2022-10-12 20:40:17', 7008, NULL, NULL, 'IPAY2022/10/6951', NULL, 'cash', '', '', '', '', '', '', '760.1000', NULL, 17, NULL, 'received', '', '760.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 (6953, '2022-10-12 21:31:39', 7009, NULL, NULL, 'IPAY2022/10/6952', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 17, 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 (6954, '2022-10-12 21:38:44', 7010, NULL, NULL, 'IPAY2022/10/6953', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 17, 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 (6955, '2022-10-12 21:47:30', 7011, NULL, NULL, 'IPAY2022/10/6954', NULL, 'cash', '', '', '', '', '', '', '755.3000', NULL, 21, NULL, 'received', '', '755.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 (6956, '2022-10-12 21:49:41', 7012, NULL, NULL, 'IPAY2022/10/6955', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 22, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6957, '2022-10-13 14:57:32', 7013, NULL, NULL, 'IPAY2022/10/6956', NULL, 'cash', '', '', '', '', '', '', '413.4000', NULL, 16, NULL, 'received', '', '413.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 (6958, '2022-10-13 15:20:01', 7014, NULL, NULL, 'IPAY2022/10/6957', NULL, 'cash', '', '', '', '', '', '', '331.5000', NULL, 47, NULL, 'received', '', '331.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6959, '2022-10-13 16:03:29', 7015, NULL, NULL, 'IPAY2022/10/6958', NULL, 'cash', '', '', '', '', '', '', '273.5000', NULL, 21, NULL, 'received', '', '273.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6960, '2022-10-13 21:25:03', 7016, NULL, NULL, 'IPAY2022/10/6959', NULL, 'cash', '', '', '', '', '', '', '651.1000', NULL, 17, NULL, 'received', '', '651.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 (6961, '2022-10-13 21:52:15', 7017, NULL, NULL, 'IPAY2022/10/6960', NULL, 'cash', '', '', '', '', '', '', '583.7000', NULL, 22, NULL, 'received', '', '583.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 (6962, '2022-10-13 21:56:42', 7018, NULL, NULL, 'IPAY2022/10/6961', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 22, 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 (6963, '2022-10-14 12:13:02', 7019, NULL, NULL, 'IPAY2022/10/6962', NULL, 'cash', '', '', '', '', '', '', '532.7800', NULL, 33, NULL, 'received', '', '532.7800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6964, '2022-10-14 12:37:38', 7020, NULL, NULL, 'IPAY2022/10/6963', NULL, 'cash', '', '', '', '', '', '', '314.4000', NULL, 29, NULL, 'received', '', '314.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 (6965, '2022-10-14 13:10:10', 7021, NULL, NULL, 'IPAY2022/10/6964', NULL, 'cash', '', '', '', '', '', '', '434.9000', NULL, 16, NULL, 'received', '', '434.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 (6966, '2022-10-14 14:15:23', 7022, NULL, NULL, 'IPAY2022/10/6965', NULL, 'cash', '', '', '', '', '', '', '101.0000', NULL, 29, 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 (6967, '2022-10-14 14:36:22', 7023, NULL, NULL, 'IPAY2022/10/6966', NULL, 'cash', '', '', '', '', '', '', '1.6000', NULL, 29, NULL, 'received', '', '1.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 (6968, '2022-10-14 14:37:40', 7024, NULL, NULL, 'IPAY2022/10/6967', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (6969, '2022-10-14 14:52:46', 7025, NULL, NULL, 'IPAY2022/10/6968', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 29, 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 (6970, '2022-10-14 15:32:59', 7026, NULL, NULL, 'IPAY2022/10/6969', NULL, 'cash', '', '', '', '', '', '', '135.4000', NULL, 16, NULL, 'received', '', '135.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 (6971, '2022-10-14 19:16:09', 7027, NULL, NULL, 'IPAY2022/10/6970', NULL, 'cash', '', '', '', '', '', '', '116.5000', NULL, 22, 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 (6972, '2022-10-14 20:59:10', 7028, NULL, NULL, 'IPAY2022/10/6971', NULL, 'cash', '', '', '', '', '', '', '549.5000', NULL, 17, NULL, 'received', '', '549.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6973, '2022-10-14 21:03:35', 7029, NULL, NULL, 'IPAY2022/10/6972', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 17, 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 (6974, '2022-10-14 21:40:04', 7030, NULL, NULL, 'IPAY2022/10/6973', NULL, 'cash', '', '', '', '', '', '', '54.5000', NULL, 17, 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 (6975, '2022-10-14 21:54:36', 7031, NULL, NULL, 'IPAY2022/10/6974', NULL, 'cash', '', '', '', '', '', '', '862.2000', NULL, 33, NULL, 'received', '', '862.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 (6976, '2022-10-14 22:02:54', 7032, NULL, NULL, 'IPAY2022/10/6975', NULL, 'cash', '', '', '', '', '', '', '514.0000', NULL, 22, NULL, 'received', '', '514.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6977, '2022-10-15 11:49:25', 7033, NULL, NULL, 'IPAY2022/10/6976', NULL, 'cash', '', '', '', '', '', '', '176.5000', NULL, 29, NULL, 'received', '', '176.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6978, '2022-10-15 13:18:33', 7034, NULL, NULL, 'IPAY2022/10/6977', NULL, 'cash', '', '', '', '', '', '', '44.5000', NULL, 29, 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 (6979, '2022-10-15 15:30:31', 7035, NULL, NULL, 'IPAY2022/10/6978', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 29, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6980, '2022-10-15 16:15:51', 7036, NULL, NULL, 'IPAY2022/10/6979', NULL, 'cash', '', '', '', '', '', '', '474.5000', NULL, 47, NULL, 'received', '', '474.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6981, '2022-10-15 19:16:42', 7037, NULL, NULL, 'IPAY2022/10/6980', NULL, 'cash', '', '', '', '', '', '', '834.3000', NULL, 16, NULL, 'received', '', '834.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 (6982, '2022-10-15 21:03:45', 7038, NULL, NULL, 'IPAY2022/10/6981', NULL, 'cash', '', '', '', '', '', '', '264.7500', NULL, 16, NULL, 'received', '', '264.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 (6983, '2022-10-15 21:36:59', 7039, NULL, NULL, 'IPAY2022/10/6982', NULL, 'cash', '', '', '', '', '', '', '67.5000', NULL, 16, 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 (6984, '2022-10-15 21:50:46', 7040, NULL, NULL, 'IPAY2022/10/6983', NULL, 'cash', '', '', '', '', '', '', '699.3000', NULL, 33, NULL, 'received', '', '699.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 (6985, '2022-10-15 22:14:34', 7041, NULL, NULL, 'IPAY2022/10/6984', NULL, 'cash', '', '', '', '', '', '', '347.0000', NULL, 22, NULL, 'received', '', '347.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6986, '2022-10-16 15:43:23', 7042, NULL, NULL, 'IPAY2022/10/6985', NULL, 'cash', '', '', '', '', '', '', '173.4000', NULL, 29, NULL, 'received', '', '173.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 (6987, '2022-10-16 16:03:01', 7043, NULL, NULL, 'IPAY2022/10/6986', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 29, 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 (6988, '2022-10-16 16:40:00', 7044, NULL, NULL, 'IPAY2022/10/6987', NULL, 'cash', '', '', '', '', '', '', '578.0000', NULL, 17, NULL, 'received', '', '578.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6989, '2022-10-16 16:57:15', 7045, NULL, NULL, 'IPAY2022/10/6988', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 17, 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 (6990, '2022-10-16 19:18:27', 7046, NULL, NULL, 'IPAY2022/10/6989', NULL, 'cash', '', '', '', '', '', '', '357.3000', NULL, 16, NULL, 'received', '', '357.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 (6991, '2022-10-16 21:40:08', 7047, NULL, NULL, 'IPAY2022/10/6990', NULL, 'cash', '', '', '', '', '', '', '235.0000', NULL, 16, NULL, 'received', '', '235.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6992, '2022-10-16 21:57:20', 7048, NULL, NULL, 'IPAY2022/10/6991', NULL, 'cash', '', '', '', '', '', '', '521.0000', NULL, 22, NULL, 'received', '', '521.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6993, '2022-10-16 22:06:20', 7049, NULL, NULL, 'IPAY2022/10/6992', NULL, 'cash', '', '', '', '', '', '', '951.6100', NULL, 21, NULL, 'received', '', '951.6100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6994, '2022-10-17 14:53:34', 7050, NULL, NULL, 'IPAY2022/10/6993', NULL, 'cash', '', '', '', '', '', '', '492.7000', NULL, 21, NULL, 'received', '', '492.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 (6995, '2022-10-17 15:28:11', 7051, NULL, NULL, 'IPAY2022/10/6994', NULL, 'cash', '', '', '', '', '', '', '161.5000', NULL, 47, NULL, 'received', '', '161.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6996, '2022-10-17 15:39:44', 7052, NULL, NULL, 'IPAY2022/10/6995', NULL, 'cash', '', '', '', '', '', '', '152.5000', NULL, 29, NULL, 'received', '', '152.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6997, '2022-10-17 17:23:18', 7053, NULL, NULL, 'IPAY2022/10/6996', NULL, 'cash', '', '', '', '', '', '', '230.2000', NULL, 29, NULL, 'received', '', '230.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 (6998, '2022-10-17 18:06:24', 7054, NULL, NULL, 'IPAY2022/10/6997', NULL, 'cash', '', '', '', '', '', '', '206.4000', NULL, 29, NULL, 'received', '', '206.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 (6999, '2022-10-17 18:36:13', 7055, NULL, NULL, 'IPAY2022/10/6998', NULL, 'cash', '', '', '', '', '', '', '66.5000', NULL, 29, 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 (7000, '2022-10-17 19:02:15', 7056, NULL, NULL, 'IPAY2022/10/6999', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 17, 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 (7001, '2022-10-17 19:02:16', 7057, NULL, NULL, 'IPAY2022/10/7000', NULL, 'cash', '', '', '', '', '', '', '145.0000', NULL, 29, NULL, 'received', '', '145.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7002, '2022-10-17 19:28:20', 7058, NULL, NULL, 'IPAY2022/10/7001', NULL, 'cash', '', '', '', '', '', '', '183.5000', NULL, 29, NULL, 'received', '', '183.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7003, '2022-10-17 20:44:35', 7059, NULL, NULL, 'IPAY2022/10/7002', NULL, 'cash', '', '', '', '', '', '', '512.5000', NULL, 8, NULL, 'received', '', '512.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7004, '2022-10-17 20:44:37', 7060, NULL, NULL, 'IPAY2022/10/7003', NULL, 'cash', '', '', '', '', '', '', '548.5800', NULL, 29, NULL, 'received', '', '548.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 (7005, '2022-10-17 20:56:20', 7061, NULL, NULL, 'IPAY2022/10/7004', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 29, 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 (7006, '2022-10-17 21:11:45', 7062, NULL, NULL, 'IPAY2022/10/7005', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 29, 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 (7007, '2022-10-17 21:17:17', 7063, NULL, NULL, 'IPAY2022/10/7006', NULL, 'cash', '', '', '', '', '', '', '998.2000', NULL, 17, NULL, 'received', '', '998.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 (7008, '2022-10-17 21:24:03', 7064, NULL, NULL, 'IPAY2022/10/7007', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 29, 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 (7009, '2022-10-17 21:37:08', 7065, NULL, NULL, 'IPAY2022/10/7008', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 29, 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 (7010, '2022-10-17 21:38:11', 7066, NULL, NULL, 'IPAY2022/10/7009', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 8, 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 (7011, '2022-10-17 21:43:22', 7067, NULL, NULL, 'IPAY2022/10/7010', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 8, 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 (7012, '2022-10-17 21:47:19', 7068, NULL, NULL, 'IPAY2022/10/7011', NULL, 'cash', '', '', '', '', '', '', '251.0000', NULL, 17, NULL, 'received', '', '251.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7013, '2022-10-17 21:47:34', 7069, NULL, NULL, 'IPAY2022/10/7012', NULL, 'cash', '', '', '', '', '', '', '23.6400', NULL, 29, NULL, 'received', '', '23.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7014, '2022-10-17 21:48:34', 7070, NULL, NULL, 'IPAY2022/10/7013', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 29, 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 (7015, '2022-10-17 21:57:50', 7071, NULL, NULL, 'IPAY2022/10/7014', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 17, 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 (7016, '2022-10-18 14:57:00', 7072, NULL, NULL, 'IPAY2022/10/7015', NULL, 'cash', '', '', '', '', '', '', '474.4400', NULL, 33, NULL, 'received', '', '474.4400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7017, '2022-10-18 15:26:06', 7073, NULL, NULL, 'IPAY2022/10/7016', NULL, 'cash', '', '', '', '', '', '', '294.3000', NULL, 47, NULL, 'received', '', '294.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 (7018, '2022-10-18 15:27:06', 7074, NULL, NULL, 'IPAY2022/10/7017', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 17, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7019, '2022-10-18 15:28:43', 7075, NULL, NULL, 'IPAY2022/10/7018', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 17, 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 (7020, '2022-10-18 18:28:53', 7076, NULL, NULL, 'IPAY2022/10/7019', NULL, 'cash', '', '', '', '', '', '', '555.4000', NULL, 29, NULL, 'received', '', '555.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 (7021, '2022-10-18 19:10:33', 7077, NULL, NULL, 'IPAY2022/10/7020', NULL, 'cash', '', '', '', '', '', '', '127.1000', NULL, 29, NULL, 'received', '', '127.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 (7022, '2022-10-18 19:59:15', 7078, NULL, NULL, 'IPAY2022/10/7021', NULL, 'cash', '', '', '', '', '', '', '107.2000', NULL, 29, NULL, 'received', '', '107.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 (7023, '2022-10-18 20:04:52', 7079, NULL, NULL, 'IPAY2022/10/7022', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 29, 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 (7024, '2022-10-18 20:09:36', 7080, NULL, NULL, 'IPAY2022/10/7023', NULL, 'cash', '', '', '', '', '', '', '622.4900', NULL, 16, NULL, 'received', '', '622.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 (7025, '2022-10-18 20:25:09', 7081, NULL, NULL, 'IPAY2022/10/7024', NULL, 'cash', '', '', '', '', '', '', '72.5000', NULL, 29, 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 (7026, '2022-10-18 20:50:51', 7082, NULL, NULL, 'IPAY2022/10/7025', NULL, 'cash', '', '', '', '', '', '', '62.6000', NULL, 29, NULL, 'received', '', '62.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 (7027, '2022-10-18 21:24:16', 7083, NULL, NULL, 'IPAY2022/10/7026', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 29, 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 (7028, '2022-10-18 21:40:16', 7084, NULL, NULL, 'IPAY2022/10/7027', NULL, 'cash', '', '', '', '', '', '', '201.1000', NULL, 16, NULL, 'received', '', '201.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 (7029, '2022-10-18 21:41:25', 7085, NULL, NULL, 'IPAY2022/10/7028', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 16, 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 (7030, '2022-10-18 22:00:27', 7086, NULL, NULL, 'IPAY2022/10/7029', NULL, 'cash', '', '', '', '', '', '', '462.5000', NULL, 22, NULL, 'received', '', '462.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7031, '2022-10-19 11:21:23', 7087, NULL, NULL, 'IPAY2022/10/7030', NULL, 'cash', '', '', '', '', '', '', '185.0000', NULL, 29, 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 (7032, '2022-10-19 11:26:08', 7088, NULL, NULL, 'IPAY2022/10/7031', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 17, 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 (7033, '2022-10-19 13:22:22', 7089, NULL, NULL, 'IPAY2022/10/7032', NULL, 'cash', '', '', '', '', '', '', '174.5000', NULL, 29, 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 (7034, '2022-10-19 13:44:11', 7090, NULL, NULL, 'IPAY2022/10/7033', NULL, 'cash', '', '', '', '', '', '', '26.6000', NULL, 29, NULL, 'received', '', '26.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 (7035, '2022-10-19 14:16:31', 7091, NULL, NULL, 'IPAY2022/10/7034', NULL, 'cash', '', '', '', '', '', '', '489.0000', NULL, 17, 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 (7036, '2022-10-19 14:37:52', 7092, NULL, NULL, 'IPAY2022/10/7035', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 29, 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 (7037, '2022-10-19 14:50:21', 7093, NULL, NULL, 'IPAY2022/10/7036', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 29, 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 (7038, '2022-10-19 14:59:39', 7094, NULL, NULL, 'IPAY2022/10/7037', NULL, 'cash', '', '', '', '', '', '', '106.5000', NULL, 17, 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 (7039, '2022-10-19 14:59:40', 7095, NULL, NULL, 'IPAY2022/10/7038', NULL, 'cash', '', '', '', '', '', '', '289.0000', NULL, 8, NULL, 'received', '', '289.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7040, '2022-10-19 19:52:58', 7096, NULL, NULL, 'IPAY2022/10/7039', NULL, 'cash', '', '', '', '', '', '', '328.9000', NULL, 16, NULL, 'received', '', '328.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 (7041, '2022-10-19 21:05:05', 7097, NULL, NULL, 'IPAY2022/10/7040', NULL, 'cash', '', '', '', '', '', '', '619.5000', NULL, 21, NULL, 'received', '', '619.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7042, '2022-10-19 21:30:38', 7098, NULL, NULL, 'IPAY2022/10/7041', NULL, 'cash', '', '', '', '', '', '', '262.0000', NULL, 16, NULL, 'received', '', '262.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7043, '2022-10-19 21:39:05', 7099, NULL, NULL, 'IPAY2022/10/7042', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 16, 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 (7044, '2022-10-19 21:48:37', 7100, NULL, NULL, 'IPAY2022/10/7043', NULL, 'cash', '', '', '', '', '', '', '556.1000', NULL, 22, NULL, 'received', '', '556.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 (7045, '2022-10-19 21:49:49', 7101, NULL, NULL, 'IPAY2022/10/7044', NULL, 'cash', '', '', '', '', '', '', '58.5000', NULL, 21, NULL, 'received', '', '58.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7046, '2022-10-20 15:07:35', 7102, NULL, NULL, 'IPAY2022/10/7045', NULL, 'cash', '', '', '', '', '', '', '171.2000', NULL, 17, NULL, 'received', '', '171.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 (7047, '2022-10-20 15:19:00', 7103, NULL, NULL, 'IPAY2022/10/7046', NULL, 'cash', '', '', '', '', '', '', '421.8000', NULL, 21, NULL, 'received', '', '421.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 (7048, '2022-10-20 16:16:21', 7104, NULL, NULL, 'IPAY2022/10/7047', NULL, 'cash', '', '', '', '', '', '', '138.9000', NULL, 47, NULL, 'received', '', '138.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 (7049, '2022-10-20 20:16:55', 7105, NULL, NULL, 'IPAY2022/10/7048', NULL, 'cash', '', '', '', '', '', '', '431.2000', NULL, 16, NULL, 'received', '', '431.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 (7050, '2022-10-20 20:36:12', 7106, NULL, NULL, 'IPAY2022/10/7049', NULL, 'cash', '', '', '', '', '', '', '529.0000', NULL, 33, NULL, 'received', '', '529.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7051, '2022-10-20 21:01:12', 7107, NULL, NULL, 'IPAY2022/10/7050', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 33, 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 (7052, '2022-10-20 21:38:07', 7108, NULL, NULL, 'IPAY2022/10/7051', NULL, 'cash', '', '', '', '', '', '', '87.2900', NULL, 16, NULL, 'received', '', '87.2900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7053, '2022-10-20 21:38:13', 7109, NULL, NULL, 'IPAY2022/10/7052', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 33, 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 (7054, '2022-10-20 21:53:13', 7110, NULL, NULL, 'IPAY2022/10/7053', NULL, 'cash', '', '', '', '', '', '', '632.1000', NULL, 22, NULL, 'received', '', '632.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 (7055, '2022-10-20 22:15:08', 7111, NULL, NULL, 'IPAY2022/10/7054', NULL, 'cash', '', '', '', '', '', '', '45.4000', NULL, 22, NULL, 'received', '', '45.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 (7056, '2022-10-21 14:22:33', 7112, NULL, NULL, 'IPAY2022/10/7055', NULL, 'cash', '', '', '', '', '', '', '421.7000', NULL, 33, NULL, 'received', '', '421.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 (7057, '2022-10-21 14:26:05', 7113, NULL, NULL, 'IPAY2022/10/7056', NULL, 'cash', '', '', '', '', '', '', '3.7000', NULL, 33, NULL, 'received', '', '3.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 (7058, '2022-10-21 14:29:36', 7114, NULL, NULL, 'IPAY2022/10/7057', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 33, 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 (7059, '2022-10-21 14:55:36', 7115, NULL, NULL, 'IPAY2022/10/7058', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 33, 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 (7060, '2022-10-21 14:59:24', 7116, NULL, NULL, 'IPAY2022/10/7059', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 33, 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 (7061, '2022-10-21 15:21:16', 7117, NULL, NULL, 'IPAY2022/10/7060', NULL, 'cash', '', '', '', '', '', '', '316.4000', NULL, 47, NULL, 'received', '', '316.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 (7062, '2022-10-21 15:26:07', 7118, NULL, NULL, 'IPAY2022/10/7061', NULL, 'cash', '', '', '', '', '', '', '122.7000', NULL, 17, NULL, 'received', '', '122.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 (7063, '2022-10-21 16:52:54', 7119, NULL, NULL, 'IPAY2022/10/7062', NULL, 'cash', '', '', '', '', '', '', '178.0000', NULL, 29, 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 (7064, '2022-10-21 18:18:20', 7120, NULL, NULL, 'IPAY2022/10/7063', NULL, 'cash', '', '', '', '', '', '', '524.6000', NULL, 29, NULL, 'received', '', '524.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 (7065, '2022-10-21 18:53:51', 7121, NULL, NULL, 'IPAY2022/10/7064', NULL, 'cash', '', '', '', '', '', '', '111.0000', NULL, 29, 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 (7066, '2022-10-21 18:59:39', 7122, NULL, NULL, 'IPAY2022/10/7065', NULL, 'cash', '', '', '', '', '', '', '597.9000', NULL, 16, NULL, 'received', '', '597.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 (7067, '2022-10-21 19:41:36', 7123, NULL, NULL, 'IPAY2022/10/7066', NULL, 'cash', '', '', '', '', '', '', '161.0000', NULL, 29, 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 (7068, '2022-10-21 20:17:44', 7124, NULL, NULL, 'IPAY2022/10/7067', NULL, 'cash', '', '', '', '', '', '', '84.5000', NULL, 29, 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 (7069, '2022-10-21 20:26:02', 7125, NULL, NULL, 'IPAY2022/10/7068', NULL, 'cash', '', '', '', '', '', '', '35.1000', NULL, 29, NULL, 'received', '', '35.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 (7070, '2022-10-21 21:04:32', 7126, NULL, NULL, 'IPAY2022/10/7069', NULL, 'cash', '', '', '', '', '', '', '70.2000', NULL, 29, NULL, 'received', '', '70.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 (7071, '2022-10-21 21:18:10', 7127, NULL, NULL, 'IPAY2022/10/7070', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 29, 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 (7072, '2022-10-21 21:30:24', 7128, NULL, NULL, 'IPAY2022/10/7071', NULL, 'cash', '', '', '', '', '', '', '235.6900', NULL, 16, NULL, 'received', '', '235.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 (7073, '2022-10-21 21:35:31', 7129, NULL, NULL, 'IPAY2022/10/7072', NULL, 'cash', '', '', '', '', '', '', '32.3000', NULL, 29, NULL, 'received', '', '32.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 (7074, '2022-10-21 21:49:39', 7130, NULL, NULL, 'IPAY2022/10/7073', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 29, 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 (7075, '2022-10-21 22:08:54', 7131, NULL, NULL, 'IPAY2022/10/7074', NULL, 'cash', '', '', '', '', '', '', '411.0000', NULL, 22, NULL, 'received', '', '411.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7076, '2022-10-22 09:54:14', 7132, NULL, NULL, 'IPAY2022/10/7075', NULL, 'cash', '', '', '', '', '', '', '151.4000', NULL, 29, NULL, 'received', '', '151.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 (7077, '2022-10-22 14:41:23', 7133, NULL, NULL, 'IPAY2022/10/7076', NULL, 'cash', '', '', '', '', '', '', '309.5000', NULL, 29, NULL, 'received', '', '309.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7078, '2022-10-22 14:51:58', 7134, NULL, NULL, 'IPAY2022/10/7077', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 29, 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 (7079, '2022-10-22 14:58:08', 7135, NULL, NULL, 'IPAY2022/10/7078', NULL, 'cash', '', '', '', '', '', '', '206.0000', NULL, 47, 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 (7080, '2022-10-22 18:55:29', 7136, NULL, NULL, 'IPAY2022/10/7079', NULL, 'cash', '', '', '', '', '', '', '681.7500', NULL, 16, NULL, 'received', '', '681.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 (7081, '2022-10-22 20:58:27', 7137, NULL, NULL, 'IPAY2022/10/7080', NULL, 'cash', '', '', '', '', '', '', '355.8000', NULL, 16, NULL, 'received', '', '355.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 (7082, '2022-10-22 21:37:48', 7138, NULL, NULL, 'IPAY2022/10/7081', NULL, 'cash', '', '', '', '', '', '', '3.6000', NULL, 16, NULL, 'received', '', '3.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 (7083, '2022-10-22 22:01:05', 7139, NULL, NULL, 'IPAY2022/10/7082', NULL, 'cash', '', '', '', '', '', '', '408.2000', NULL, 22, NULL, 'received', '', '408.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 (7084, '2022-10-22 22:08:25', 7140, NULL, NULL, 'IPAY2022/10/7083', NULL, 'cash', '', '', '', '', '', '', '1229.2000', NULL, 33, NULL, 'received', '', '1229.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 (7085, '2022-10-23 15:40:49', 7141, NULL, NULL, 'IPAY2022/10/7084', NULL, 'cash', '', '', '', '', '', '', '362.7900', NULL, 29, NULL, 'received', '', '362.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 (7086, '2022-10-23 15:49:49', 7142, NULL, NULL, 'IPAY2022/10/7085', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 29, 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 (7087, '2022-10-23 16:24:57', 7143, NULL, NULL, 'IPAY2022/10/7086', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 29, 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 (7088, '2022-10-23 16:46:44', 7144, NULL, NULL, 'IPAY2022/10/7087', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 29, 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 (7089, '2022-10-23 16:54:42', 7145, NULL, NULL, 'IPAY2022/10/7088', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 29, 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 (7090, '2022-10-23 17:26:48', 7146, NULL, NULL, 'IPAY2022/10/7089', NULL, 'cash', '', '', '', '', '', '', '401.3000', NULL, 17, NULL, 'received', '', '401.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 (7091, '2022-10-23 21:29:02', 7147, NULL, NULL, 'IPAY2022/10/7090', NULL, 'cash', '', '', '', '', '', '', '666.8300', NULL, 17, NULL, 'received', '', '666.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 (7092, '2022-10-23 22:09:51', 7148, NULL, NULL, 'IPAY2022/10/7091', NULL, 'cash', '', '', '', '', '', '', '667.7000', NULL, 21, NULL, 'received', '', '667.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 (7093, '2022-10-23 22:11:16', 7149, NULL, NULL, 'IPAY2022/10/7092', NULL, 'cash', '', '', '', '', '', '', '286.5000', NULL, 22, NULL, 'received', '', '286.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7094, '2022-10-24 14:48:23', 7150, NULL, NULL, 'IPAY2022/10/7093', NULL, 'cash', '', '', '', '', '', '', '358.6000', NULL, 17, NULL, 'received', '', '358.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 (7095, '2022-10-24 14:53:41', 7151, NULL, NULL, 'IPAY2022/10/7094', NULL, 'cash', '', '', '', '', '', '', '610.4000', NULL, 21, NULL, 'received', '', '610.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 (7096, '2022-10-24 15:30:20', 7152, NULL, NULL, 'IPAY2022/10/7095', NULL, 'cash', '', '', '', '', '', '', '344.0000', NULL, 47, 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 (7097, '2022-10-24 15:38:09', 7153, NULL, NULL, 'IPAY2022/10/7096', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 21, 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 (7098, '2022-10-24 16:46:53', 7154, NULL, NULL, 'IPAY2022/10/7097', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 17, 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 (7099, '2022-10-24 18:00:26', 7155, NULL, NULL, 'IPAY2022/10/7098', NULL, 'cash', '', '', '', '', '', '', '213.2000', NULL, 29, NULL, 'received', '', '213.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 (7100, '2022-10-24 18:46:55', 7156, NULL, NULL, 'IPAY2022/10/7099', NULL, 'cash', '', '', '', '', '', '', '91.1000', NULL, 29, NULL, 'received', '', '91.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 (7101, '2022-10-24 19:51:22', 7157, NULL, NULL, 'IPAY2022/10/7100', NULL, 'cash', '', '', '', '', '', '', '225.0000', NULL, 29, NULL, 'received', '', '225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7102, '2022-10-24 20:16:21', 7158, NULL, NULL, 'IPAY2022/10/7101', NULL, 'cash', '', '', '', '', '', '', '134.8000', NULL, 29, NULL, 'received', '', '134.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 (7103, '2022-10-24 20:23:33', 7159, NULL, NULL, 'IPAY2022/10/7102', NULL, 'cash', '', '', '', '', '', '', '581.8000', NULL, 17, NULL, 'received', '', '581.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 (7104, '2022-10-24 20:33:21', 7160, NULL, NULL, 'IPAY2022/10/7103', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 29, 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 (7105, '2022-10-24 21:12:26', 7161, NULL, NULL, 'IPAY2022/10/7104', NULL, 'cash', '', '', '', '', '', '', '59.5000', NULL, 29, 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 (7106, '2022-10-24 21:28:45', 7162, NULL, NULL, 'IPAY2022/10/7105', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 29, 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 (7107, '2022-10-24 21:36:20', 7163, NULL, NULL, 'IPAY2022/10/7106', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 29, 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 (7108, '2022-10-24 21:37:23', 7164, NULL, NULL, 'IPAY2022/10/7107', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 17, 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 (7109, '2022-10-24 22:01:25', 7165, NULL, NULL, 'IPAY2022/10/7108', NULL, 'cash', '', '', '', '', '', '', '772.5000', NULL, 8, NULL, 'received', '', '772.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7110, '2022-10-25 14:51:36', 7166, NULL, NULL, 'IPAY2022/10/7109', NULL, 'cash', '', '', '', '', '', '', '514.0000', NULL, 16, NULL, 'received', '', '514.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7111, '2022-10-25 14:52:28', 7167, NULL, NULL, 'IPAY2022/10/7110', NULL, 'cash', '', '', '', '', '', '', '359.7000', NULL, 33, NULL, 'received', '', '359.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 (7112, '2022-10-25 15:14:07', 7168, NULL, NULL, 'IPAY2022/10/7111', NULL, 'cash', '', '', '', '', '', '', '174.5000', NULL, 47, 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 (7113, '2022-10-25 17:52:38', 7169, NULL, NULL, 'IPAY2022/10/7112', NULL, 'cash', '', '', '', '', '', '', '328.0000', NULL, 29, NULL, 'received', '', '328.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7114, '2022-10-25 18:52:55', 7170, NULL, NULL, 'IPAY2022/10/7113', NULL, 'cash', '', '', '', '', '', '', '130.9000', NULL, 29, NULL, 'received', '', '130.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 (7115, '2022-10-25 19:12:41', 7171, NULL, NULL, 'IPAY2022/10/7114', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 17, 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 (7116, '2022-10-25 19:31:19', 7172, NULL, NULL, 'IPAY2022/10/7115', NULL, 'cash', '', '', '', '', '', '', '166.5000', NULL, 29, 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 (7117, '2022-10-25 20:22:20', 7173, NULL, NULL, 'IPAY2022/10/7116', NULL, 'cash', '', '', '', '', '', '', '90.6000', NULL, 29, NULL, 'received', '', '90.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 (7118, '2022-10-25 20:47:38', 7174, NULL, NULL, 'IPAY2022/10/7117', NULL, 'cash', '', '', '', '', '', '', '749.7000', NULL, 17, NULL, 'received', '', '749.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 (7119, '2022-10-25 21:00:18', 7175, NULL, NULL, 'IPAY2022/10/7118', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 29, 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 (7120, '2022-10-25 21:05:11', 7176, NULL, NULL, 'IPAY2022/10/7119', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 29, 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 (7121, '2022-10-25 21:23:21', 7177, NULL, NULL, 'IPAY2022/10/7120', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 29, 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 (7122, '2022-10-25 21:42:44', 7178, NULL, NULL, 'IPAY2022/10/7121', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 17, 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 (7123, '2022-10-25 22:15:16', 7179, NULL, NULL, 'IPAY2022/10/7122', NULL, 'cash', '', '', '', '', '', '', '376.8000', NULL, 22, NULL, 'received', '', '376.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 (7124, '2022-10-26 10:14:39', 7180, NULL, NULL, 'IPAY2022/10/7123', NULL, 'cash', '', '', '', '', '', '', '140.8000', NULL, 29, NULL, 'received', '', '140.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 (7125, '2022-10-26 12:16:26', 7181, NULL, NULL, 'IPAY2022/10/7124', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 29, 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 (7126, '2022-10-26 13:06:11', 7182, NULL, NULL, 'IPAY2022/10/7125', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 29, 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 (7127, '2022-10-26 14:09:01', 7183, NULL, NULL, 'IPAY2022/10/7126', NULL, 'cash', '', '', '', '', '', '', '26.9000', NULL, 29, NULL, 'received', '', '26.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 (7128, '2022-10-26 14:30:23', 7184, NULL, NULL, 'IPAY2022/10/7127', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 29, 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 (7129, '2022-10-26 14:47:19', 7185, NULL, NULL, 'IPAY2022/10/7128', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 29, 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 (7130, '2022-10-26 15:11:58', 7186, NULL, NULL, 'IPAY2022/10/7129', NULL, 'cash', '', '', '', '', '', '', '386.1000', NULL, 16, NULL, 'received', '', '386.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 (7131, '2022-10-26 16:56:46', 7187, NULL, NULL, 'IPAY2022/10/7130', NULL, 'cash', '', '', '', '', '', '', '795.5000', NULL, 8, NULL, 'received', '', '795.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7132, '2022-10-26 17:33:27', 7188, NULL, NULL, 'IPAY2022/10/7131', NULL, 'cash', '', '', '', '', '', '', '165.0000', NULL, 21, 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 (7133, '2022-10-26 19:45:17', 7189, NULL, NULL, 'IPAY2022/10/7132', NULL, 'cash', '', '', '', '', '', '', '572.8000', NULL, 17, NULL, 'received', '', '572.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 (7134, '2022-10-26 21:16:36', 7190, NULL, NULL, 'IPAY2022/10/7133', NULL, 'cash', '', '', '', '', '', '', '324.5000', NULL, 17, NULL, 'received', '', '324.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7135, '2022-10-26 21:38:50', 7191, NULL, NULL, 'IPAY2022/10/7134', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 17, 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 (7136, '2022-10-26 22:05:54', 7192, NULL, NULL, 'IPAY2022/10/7135', NULL, 'cash', '', '', '', '', '', '', '621.5000', NULL, 22, NULL, 'received', '', '621.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7137, '2022-10-27 13:51:34', 7193, NULL, NULL, 'IPAY2022/10/7136', NULL, 'cash', '', '', '', '', '', '', '1272.8000', NULL, 21, NULL, 'received', '', '1272.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 (7138, '2022-10-27 15:02:50', 7194, NULL, NULL, 'IPAY2022/10/7137', NULL, 'cash', '', '', '', '', '', '', '290.1500', NULL, 16, NULL, 'received', '', '290.1500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7139, '2022-10-27 15:37:01', 7195, NULL, NULL, 'IPAY2022/10/7138', NULL, 'cash', '', '', '', '', '', '', '356.0000', NULL, 47, NULL, 'received', '', '356.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7140, '2022-10-27 19:10:54', 7196, NULL, NULL, 'IPAY2022/10/7139', NULL, 'cash', '', '', '', '', '', '', '430.9000', NULL, 21, NULL, 'received', '', '430.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 (7141, '2022-10-27 20:52:54', 7197, NULL, NULL, 'IPAY2022/10/7140', NULL, 'cash', '', '', '', '', '', '', '396.5000', NULL, 17, 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 (7142, '2022-10-27 21:45:05', 7198, NULL, NULL, 'IPAY2022/10/7141', NULL, 'cash', '', '', '', '', '', '', '40.5000', NULL, 17, NULL, 'received', '', '40.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7143, '2022-10-27 21:53:38', 7199, NULL, NULL, 'IPAY2022/10/7142', NULL, 'cash', '', '', '', '', '', '', '449.6000', NULL, 22, NULL, 'received', '', '449.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 (7144, '2022-10-27 21:56:42', 7200, NULL, NULL, 'IPAY2022/10/7143', NULL, 'cash', '', '', '', '', '', '', '1215.6000', NULL, 33, NULL, 'received', '', '1215.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 (7145, '2022-10-28 10:51:09', 7201, NULL, NULL, 'IPAY2022/10/7144', NULL, 'cash', '', '', '', '', '', '', '296.5000', NULL, 29, NULL, 'received', '', '296.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7146, '2022-10-28 13:04:17', 7202, NULL, NULL, 'IPAY2022/10/7145', NULL, 'cash', '', '', '', '', '', '', '92.0000', NULL, 29, 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 (7147, '2022-10-28 14:14:06', 7203, NULL, NULL, 'IPAY2022/10/7146', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 29, 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 (7148, '2022-10-28 14:44:38', 7204, NULL, NULL, 'IPAY2022/10/7147', NULL, 'cash', '', '', '', '', '', '', '107.0000', NULL, 29, NULL, 'received', '', '107.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7149, '2022-10-28 15:01:53', 7205, NULL, NULL, 'IPAY2022/10/7148', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 29, 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 (7150, '2022-10-28 15:04:51', 7206, NULL, NULL, 'IPAY2022/10/7149', NULL, 'cash', '', '', '', '', '', '', '332.5000', NULL, 16, 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 (7151, '2022-10-28 15:23:52', 7207, NULL, NULL, 'IPAY2022/10/7150', NULL, 'cash', '', '', '', '', '', '', '221.5000', NULL, 47, NULL, 'received', '', '221.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7152, '2022-10-28 20:33:41', 7208, NULL, NULL, 'IPAY2022/10/7151', NULL, 'cash', '', '', '', '', '', '', '422.1000', NULL, 33, NULL, 'received', '', '422.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 (7153, '2022-10-28 21:02:00', 7209, NULL, NULL, 'IPAY2022/10/7152', NULL, 'cash', '', '', '', '', '', '', '505.5000', NULL, 17, NULL, 'received', '', '505.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7154, '2022-10-28 21:24:36', 7210, NULL, NULL, 'IPAY2022/10/7153', NULL, 'cash', '', '', '', '', '', '', '190.6000', NULL, 33, NULL, 'received', '', '190.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 (7155, '2022-10-28 21:49:22', 7211, NULL, NULL, 'IPAY2022/10/7154', NULL, 'cash', '', '', '', '', '', '', '317.4000', NULL, 22, NULL, 'received', '', '317.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 (7156, '2022-10-28 21:51:15', 7212, NULL, NULL, 'IPAY2022/10/7155', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 17, 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 (7157, '2022-10-28 21:52:14', 7213, NULL, NULL, 'IPAY2022/10/7156', NULL, 'cash', '', '', '', '', '', '', '134.5000', NULL, 33, 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 (7158, '2022-10-28 22:06:21', 7214, NULL, NULL, 'IPAY2022/10/7157', NULL, 'cash', '', '', '', '', '', '', '46.5000', NULL, 22, NULL, 'received', '', '46.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7159, '2022-10-29 14:58:12', 7215, NULL, NULL, 'IPAY2022/10/7158', NULL, 'cash', '', '', '', '', '', '', '467.5000', NULL, 47, NULL, 'received', '', '467.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=32 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', 'close', '83119.0600', 0, 0, '83119.0600', 0, 0, '', '2022-02-14 21:22:16', '0', 11);
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);
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 (16, '2021-08-22 14:19:22', 18, '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 (17, '2021-08-27 08:28:37', 17, '500.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 (18, '2021-10-07 09:01:29', 19, '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 (19, '2021-10-17 12:36:14', 20, '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 (20, '2021-11-03 09:46:12', 21, '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 (21, '2021-11-17 21:13:51', 22, '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 (22, '2021-11-26 15:05:17', 23, '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 (23, '2021-12-05 13:37:53', 25, '10.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 (24, '2021-12-16 08:10:45', 26, '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 (25, '2022-02-09 10:38:46', 27, '1.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 (26, '2022-02-11 18:07:32', 30, '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 (27, '2022-02-14 21:23:03', 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 (28, '2022-03-25 09:01:33', 28, '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 (29, '2022-03-26 09:41:40', 29, '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 (30, '2022-08-31 08:50:26', 47, '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 (31, '2022-08-31 15:25:40', 33, '120.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=10076 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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '356.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '107.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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.0000', '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, '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, '2.7500', '4.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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.4600', '0.7000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '399.0000', NULL, 1, '', NULL, 'code128', 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.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, '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.5800', '9.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, '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, '1.3800', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '121.0000', NULL, 1, '', NULL, 'code128', 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, '2.5000', '3.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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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.2300', '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, '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, '', '', '', '', '', '', '-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, '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, '10.4600', '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, '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, '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.9000', '6.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, '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, '5.8000', '8.0000', '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, '13.0000', '17.0000', '2.0000', '', 1, NULL, '', '', '', '', '', '', '-11.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, '4.3500', '6.0000', '3.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, '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, '7.0000', '9.5000', '2.0000', '', 1, NULL, '', '', '', '', '', '', '37.0000', NULL, 1, '', NULL, 'code128', 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, '9.8000', '13.0000', '2.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, '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.7800', '1.0000', '12.0000', '', 1, NULL, '', '', '', '', '', '', '259.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.9300', '1.5000', '12.0000', '', 1, NULL, '', '', '', '', '', '', '237.0000', NULL, 1, '', NULL, 'code128', 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, '1.3300', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '435.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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.7000', '4.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, '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, '7.2000', '9.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, '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, '2.5000', '3.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, '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, '5.2000', '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, '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, '26.0000', '34.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-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, '9.2000', '12.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, '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, '', '', '', '', '', '', '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, '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, '58.0000', '77.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, '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, '1.1700', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '201.0000', NULL, 1, '', NULL, 'code128', 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, '4.5600', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '255.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '46.3000', '61.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, '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, '29.0000', '38.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, '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, '40.9100', '54.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, '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, '22.6500', '30.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, '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, '65.8300', '87.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, '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, '15.0000', '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, '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, '50.9300', '74.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, '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, '', '', '', '', '', '', '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, '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, '4.7600', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '64.0000', NULL, 1, '', NULL, 'code128', 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, '30.6000', '40.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, '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, '21.9900', '29.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, '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, '81.4000', '107.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, '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, '6.6700', '9.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, '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, '9.5800', '13.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, '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, '8.2000', '11.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, '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, '6.6000', '10.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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-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, '29.6300', '39.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, '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, '53.5000', '71.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, '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, '52.6000', '69.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, '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, '31.1000', '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, '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, '25.3000', '33.5000', '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, '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.7000', '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, '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, '5.0000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '63.0000', NULL, 1, '', NULL, 'code128', 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, '6.0000', '8.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, '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, '22.9100', '30.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, '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, '5.5000', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '148.0000', NULL, 1, '', NULL, 'code128', 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, '15.0000', '22.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, '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, '7.7000', '10.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, '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, '', '', '', '', '', '', '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, '_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '8.0000', '11.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, '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, '13.2000', '17.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, '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, '9.5000', '13.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, '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.5000', '4.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, '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, '15.0000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '41.0000', NULL, 1, '', NULL, 'code128', 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, '25.5000', '34.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, '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, '45.0000', '60.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, '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, '4.0000', '5.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '46.0000', NULL, 1, '', NULL, 'code128', 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, '3.3000', '4.5000', '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, '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, '', '', '', '', '', '', '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, '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, '21.0000', '29.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, '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, '22.0000', '29.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, '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, '', '', '', '', '', '', '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, '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, '15.4000', '20.5000', '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, '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, '3.3000', '5.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, '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, '27.5000', '36.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '65.0000', NULL, 1, '', NULL, 'code128', 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, '17.0000', '22.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, '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, '', '', '', '', '', '', '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, '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, '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-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, '19.0000', '25.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, '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, '19.0000', '25.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, '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.5000', '11.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, '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, '20.0000', '26.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, '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.8000', '2.5000', '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, '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, '19.0000', '25.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, '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, '', '', '', '', '', '', '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, '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', '40.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, '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, '10.5000', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '64.0000', NULL, 1, '', NULL, 'code128', 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, '35.9000', '47.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, '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, '16.5000', '22.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, '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, '', '', '', '', '', '', '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, '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, '12.0000', '16.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, '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, '14.8500', '20.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, '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, '15.8000', '21.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, '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, '13.2000', '18.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '74.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '26.0000', '34.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '79.0000', NULL, 1, '', NULL, 'code128', 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, '16.0000', '21.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '46.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.9300', '1.2000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-377.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '10.9000', '14.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, '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, '0.5500', '0.8000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '157.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '84.8700', '113.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, '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, '18.0000', '24.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, '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', 'EUTHYMOL TOOTHPASTE', 1, '20.0000', '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, 'euthymol-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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '15.0000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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, '38.5700', '50.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, '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, '27.5000', '36.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, '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, '55.0000', '73.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-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, '58.9000', '78.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-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, '41.8000', '55.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, '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, '31.4000', '41.5000', '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, '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, '30.7000', '40.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, '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, '35.0000', '46.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, '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, '16.8900', '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, '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, '5.3500', '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, '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, '5.9500', '8.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, '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, '35.9400', '48.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '4.7200', '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, '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, '', '', '', '', '', '', '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, '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.0600', '15.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, '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.5200', '0.7000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '159.0000', NULL, 1, '', NULL, 'code128', 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.6000', '0.8000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '176.0000', NULL, 1, '', NULL, 'code128', 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, '3.7500', '5.0000', '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, '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, '8.1000', '11.0000', '11.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, '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, '', '', '', '', '', '', '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, '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, '2.3300', '3.0000', '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, '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, '16.9000', '22.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, '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.2000', '21.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, '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, '4.5000', '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, '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, '', '', '', '', '', '', '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, '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, '10.0000', '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, '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, '22.6200', '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, '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, '', '', '', '', '', '', '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, '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, '18.9000', '25.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, '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, '13.0900', '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, '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, '22.0000', '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, '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, '11.0000', '15.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, '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, '4.9000', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '137.0000', NULL, 1, '', NULL, 'code128', 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.8000', '2.5000', '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, '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, '4.2000', '6.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, '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', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-41.0000', NULL, 1, '', NULL, 'code128', 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.6000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '339.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '-140.0000', NULL, 1, '', NULL, 'code128', 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', '18.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, '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, '6.3200', '8.5000', '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, '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, '5.7000', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '68.0000', NULL, 1, '', NULL, 'code128', 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, '20.8000', '27.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, '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, '1.6100', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '179.0000', NULL, 1, '', NULL, 'code128', 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, '1.9000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '214.0000', NULL, 1, '', NULL, 'code128', 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, '5.8000', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '252.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '-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, '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, '2.5000', '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, '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, '5.3000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '178.0000', NULL, 1, '', NULL, 'code128', 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, '45.2400', '60.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '22.9000', '30.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, '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, '22.9000', '30.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, '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, '25.8000', '34.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, '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.0200', '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, '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, '6.7700', '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, '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.0800', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '214.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '3.5700', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '177.0000', NULL, 1, '', NULL, 'code128', 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, '14.5000', '19.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, '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, '26.9000', '35.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '10.9600', '14.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, '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, '', '', '', '', '', '', '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, '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, '29.9600', '40.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, '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, '8.2500', '11.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, '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, '30.7000', '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, '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, '', '', '', '', '', '', '-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, '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, '40.6300', '54.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, '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, '9.8000', '13.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, '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, '', '', '', '', '', '', '-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, '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, '3.1200', '4.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '159.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '49.5000', '65.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, '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, '2.5000', '3.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, '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, '2.0600', '3.0000', '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, '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, '22.9900', '32.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, '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.7000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '81.0000', NULL, 1, '', NULL, 'code128', 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, '12.6000', '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, '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, '', '', '', '', '', '', '-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, '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, '3.1000', '4.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, '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, '3.4200', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '71.0000', NULL, 1, '', NULL, 'code128', 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, '1.4700', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '214.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '-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, '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', '13.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, '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, '', '', '', '', '', '', '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, '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, '6.7500', '9.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, '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, '10.8000', '15.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, '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, '51.8500', '69.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, '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, '8.5000', '11.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, '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, '', '', '', '', '', '', '-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, '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, '2.6900', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '476.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '56.2000', '74.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '46.0000', NULL, 1, '', NULL, 'code128', 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, '11.1300', '15.0000', '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, '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, '24.1800', '32.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, '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, '3.0000', '5.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, '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, '7.3000', '10.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, '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, '', '', '', '', '', '', '-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, '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, '8.8000', '12.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, '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, '8.5000', '11.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '403.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, '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, '98.6000', '130.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, '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, '142.0500', '187.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, '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, '34.5500', '46.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, '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, '5.4800', '7.2000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '59.0000', NULL, 1, '', NULL, 'code128', 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, '5.5000', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '58.0000', NULL, 1, '', NULL, 'code128', 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, '16.0000', '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, '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, '18.0000', '24.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, '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, '3.0000', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-76.0000', NULL, 1, '', NULL, 'code128', 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.9000', '13.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, '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, '', '', '', '', '', '', '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, '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, '0.7300', '1.0000', '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, '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, '14.0000', '19.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, '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, '', '', '', '', '', '', '-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, '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, '3.3800', '4.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '304.0000', NULL, 1, '', NULL, 'code128', 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, '7.0000', '9.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '107.0000', NULL, 1, '', NULL, 'code128', 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 per strip', 1, '30.0000', '40.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, '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, '502126522', 'PERFECTIL  PLUS  SKIN', 1, '85.0000', '112.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-plus-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, '', '', '', '', '', '', '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, '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, '20.7900', '27.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, '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, '', '', '', '', '', '', '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, '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, '59.0000', '78.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, '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, '7.1000', '10.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, '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, '18.8100', '25.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, '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, '16.0000', '21.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, '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, '15.0000', '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, '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, '24.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, '13.0000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '90.0000', NULL, 1, '', NULL, 'code128', 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, '14.2100', '19.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, '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, '14.8100', '20.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, '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)/ Caps', 1, '10.9800', '14.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '278.0000', NULL, 1, '', NULL, 'code128', 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-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 (1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 1, '8.1400', '11.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, '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, '4.7000', '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, '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.6400', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '272.0000', NULL, 1, '', NULL, 'code128', 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, '41.8000', '56.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-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, '50.6000', '67.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, '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, '7.4000', '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, '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, '9.8000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '63.0000', NULL, 1, '', NULL, 'code128', 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, '7.4000', '10.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, '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.9400', '8.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, '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, '13.2000', '17.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, '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, '17.0000', '22.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, '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, '10.4800', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '75.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.2800', '11.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, '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, '40.9400', '54.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '85.0000', NULL, 1, '', NULL, 'code128', 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, '26.9000', '36.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, '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, '41.2800', '55.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, '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, '60.0000', '80.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, '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.6700', '47.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, '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, '65.0000', '86.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '74.0000', NULL, 1, '', NULL, 'code128', 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, '143.3000', '189.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, '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, '2.3000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '581.0000', NULL, 1, '', NULL, 'code128', 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, '4.0000', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '204.0000', NULL, 1, '', NULL, 'code128', 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, '10.8000', '14.5000', '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, '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, '14.9000', '20.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, '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, '10.6600', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '186.0000', NULL, 1, '', NULL, 'code128', 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, '27.0000', '36.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, '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, '62.0000', '82.0000', '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, '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, '4.1700', '5.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '127.0000', NULL, 1, '', NULL, 'code128', 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, '2.4000', '35.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, '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, '6.6000', '9.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, '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, '33.7000', '44.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, '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, '15.0000', '20.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, '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, '15.0000', '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, '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, '33.7600', '45.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, '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, '6.7000', '9.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, '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', '53.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '35.0000', '46.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, '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)/TEVA', 1, '17.0000', '23.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, 'fluconazole-denk/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 (1688, 'PR-401', 'ZINCOVIT TAB', 1, '29.8000', '39.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, '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, '21.7000', '29.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, '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, '12.2100', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '41.0000', NULL, 1, '', NULL, 'code128', 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, '13.2000', '17.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, '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.3400', '14.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, '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, '10.0000', '13.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, '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.2300', '11.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, '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, '28.7000', '38.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, '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.1100', '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, '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, '10.8000', '14.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, '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.5000', '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, '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, '4.0200', '5.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, '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, '13.0000', '17.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, '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, '15.4000', '20.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, '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, '18.9000', '25.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, '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, '11.1000', '15.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, '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, '39.0000', '51.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, '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, '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, '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, '', '', '', '', '', '', '7.5000', NULL, 1, '', NULL, 'code128', 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.5000', '27.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, '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, '', '', '', '', '', '', 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, '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, '16.6000', '22.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, '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, '12.4000', '16.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, '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, '', '', '', '', '', '', '-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, '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, '9.7000', '13.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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '3.8000', '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, '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, '', '', '', '', '', '', '-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, '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, '141.7100', '187.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, '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, '79.2000', '105.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, '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, '', '', '', '', '', '', '-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, '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.8200', '2.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, '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, '', '', '', '', '', '', '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, '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', '47.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, '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, '30.0000', '40.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, '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, '', '', '', '', '', '', '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, '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, '10.1800', '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, '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, '', '', '', '', '', '', '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, '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, '37.7200', '50.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, '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, '', '', '', '', '', '', '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, '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, '9.8000', '13.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, '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, '9.8000', '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, '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, '15.8000', '21.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, '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, '32.5000', '43.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, '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, '', '', '', '', '', '', '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, '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, '5.9800', '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, '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, '39.0000', '51.5000', '10.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, '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 (1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 1, '6.1000', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '103.0000', NULL, 1, '', NULL, 'code128', 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 (1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 1, '0.3200', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '169.0000', NULL, 1, '', NULL, 'code128', 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, '41.8000', '55.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, '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, '5.9000', '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, '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, '', '', '', '', '', '', '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, '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, '24.0000', '32.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, '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 (ADULT) 100ML', 1, '8.6000', '11.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '47.0000', '62.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, '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, '13.4000', '18.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, '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, '0.8000', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '101.0000', NULL, 1, '', NULL, 'code128', 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, '2.1700', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '98.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '5.7000', '8.5000', '10.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, '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, '', '', '', '', '', '', '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, '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, '7.2000', '9.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '74.0000', NULL, 1, '', NULL, 'code128', 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, '4.7000', '6.5000', '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, '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, '6.3800', '8.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, '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.8000', '35.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, '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, '8.0000', '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, '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, '9.0000', '12.0000', '2.0000', '', 1, NULL, '', '', '', '', '', '', '76.0000', NULL, 1, '', NULL, 'code128', 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, '55.0000', '73.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '60.5000', '80.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, '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, '6.6000', '9.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, '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, '', '', '', '', '', '', '-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, '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, '13.2300', '17.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '111.0000', NULL, 1, '', NULL, 'code128', 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, '26.1800', '35.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '43.0000', NULL, 1, '', NULL, 'code128', 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.5000', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '81.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '25.0000', '33.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '2.9000', '4.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, '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, '53.0000', '70.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '8.7000', '11.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, '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, '7.8000', '10.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, '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, '30.4400', '40.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, '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, '', '', '', '', '', '', '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, '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, '18.9000', '25.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, '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, '12.8400', '17.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, '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, '11.4000', '15.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, '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, '21.8000', '30.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, '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, '10.9000', '14.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '197.0000', NULL, 1, '', NULL, 'code128', 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, '47.2000', '62.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, '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, '', '', '', '', '', '', '-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, '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, '25.0000', '33.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, '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, '10.4600', '15.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, '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, '27.5000', '36.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, '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, '9.4000', '12.5000', '10.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, '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.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, '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, '3.7000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '648.0000', NULL, 1, '', NULL, 'code128', 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, '6.4000', '9.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, '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, '9.2000', '12.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, '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, '', '', '', '', '', '', '141.0000', NULL, 1, '', NULL, 'code128', 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.2800', '0.4000', '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, '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, '1.6000', '2.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, '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, '', '', '', '', '', '', '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, '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, '13.0000', '15.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, '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, '', '', '', '', '', '', '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, '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, '5.1600', '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, '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, '6.9600', '9.2000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.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, '', '', '', '', '', '', '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, '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, '14.5700', '19.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, '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.6600', '1.0000', '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, '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, '10.7000', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '68.0000', NULL, 1, '', NULL, 'code128', 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.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '328.0000', NULL, 1, '', NULL, 'code128', 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.4100', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '331.0000', NULL, 1, '', NULL, 'code128', 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, '7.2000', '9.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '171.0000', NULL, 1, '', NULL, 'code128', 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.6300', '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, '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, '30.0000', '40.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, '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, '17.2000', '23.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, '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.5000', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '174.0000', NULL, 1, '', NULL, 'code128', 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, '', '', '', '', '', '', '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, '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, '15.0000', '20.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, '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, '', '', '', '', '', '', '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, '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.7000', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '137.0000', NULL, 1, '', NULL, 'code128', 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, '2.2000', '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, '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, '7.8000', '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, '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, '5.5000', '7.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, '23.7800', '32.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, '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.9000', '30.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, '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, '2.0200', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1732.0000', NULL, 1, '', NULL, 'code128', 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, '9.1500', '12.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, '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, '7.0000', '9.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, '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, '14.0000', '18.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-109.0000', NULL, 1, '', NULL, 'code128', 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.3000', '6.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, '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, '3.3300', '4.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '253.0000', NULL, 1, '', NULL, 'code128', 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, '12.0000', '16.0000', '10.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, '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, '15.0000', '20.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, '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, '9.5000', '13.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, '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, '4.2900', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '244.0000', NULL, 1, '', NULL, 'code128', 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, '28.6000', '38.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, '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, '', '', '', '', '', '', '41.0000', NULL, 1, '', NULL, 'code128', 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.9000', '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, '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, '106.6000', '141.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, '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, '', '', '', '', '', '', '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, '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, '10.4000', '14.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, '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, '9.3100', '12.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, '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, '8.3000', '11.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, '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, '27.2600', '36.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.5400', '10.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-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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '6.2000', '8.0000', '10.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, '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.5900', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '265.0000', NULL, 1, '', NULL, 'code128', 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.5200', '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, '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, '', '', '', '', '', '', '-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, '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.2200', '2.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, '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.7500', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '256.0000', NULL, 1, '', NULL, 'code128', 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, '6.8000', '9.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, '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, '', '', '', '', '', '', NULL, 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, '10.6000', '14.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, '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, '', '', '', '', '', '', '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, '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, '6.0500', '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, '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, '3.3000', '5.0000', '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, '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, '4.5000', '6.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, '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, '', '', '', '', '', '', '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, '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, '2.1000', '3.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.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, '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, '', '', '', '', '', '', '-1.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, '', '', '', '', '', '', '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, '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, '1.1700', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '335.0000', NULL, 1, '', NULL, 'code128', 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, '12.6000', '17.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, '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, '4.8000', '7.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, '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, '11.0000', '15.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.7500', '3.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, '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, '30.0000', '40.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, '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, '4.8500', '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, '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, '', '', '', '', '', '', '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, '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, '12.5000', '16.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, '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, '2.8800', '5.0000', '10.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, '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, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '223.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '4.2000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '125.0000', NULL, 1, '', NULL, '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, '54.6600', '72.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, '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.7000', '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, '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.4000', '1.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, '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, '1.6700', '2.2000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, '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, '7.5000', '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, '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 0.05%', 1, '26.6200', '35.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '15.4000', '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, '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 (1967, '5023497400615', 'SALAMOL CFC INHALER', 1, '21.7800', '29.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, '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, '135.5000', '179.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, '18.0000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '18.5000', '22.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, '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, '14.5000', '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, '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, '7.5000', '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, '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, '11.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, '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, '7.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, '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, '13.5000', '16.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, '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, '8.0000', '10.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, '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, '17.5000', '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, '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, '11.0000', '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, '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, '7.0000', '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, '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, '7.5000', '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, '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, '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, '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', '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, '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, '7.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, '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, '', '', '', '', '', '', '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, '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, '6.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, '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, '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, '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, '2.5000', '3.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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-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, '', '', '', '', '', '', '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-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, '14.0000', '17.0000', '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, '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, '13.7000', '17.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, '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, '4.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '18.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '52.0000', NULL, 1, '', NULL, '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, '11.0000', '14.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, '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, '38.0000', '42.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, '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.8000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '111.0000', NULL, 1, '', NULL, '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.7500', '1.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '9.5000', '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, '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, '14.0000', '17.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '10.5000', '14.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, '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, '6.0000', '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, '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, '', '', '', '', '', '', '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, '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.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, '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, '8.0000', '14.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, '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', '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, '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, '', '', '', '', '', '', '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, '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, '24.0000', '30.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, '14.0000', '20.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, '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, '13.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, '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, '6.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, '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, '7.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, '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, '5.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, '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, '7.5000', '9.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, '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, '7.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, '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, '13.5000', '17.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, '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, '18.0000', '22.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, '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, '19.0000', '23.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, '18.0000', '23.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '11.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, '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, '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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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, '24.0000', '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, '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, '14.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, '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, '14.0000', '18.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, '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, '', '', '', '', '', '', '-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, '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.7000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '93.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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-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, '20.0000', '25.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, '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.7700', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '971.0000', NULL, 1, '', NULL, '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, '13.2000', '17.5000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-10.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, '10.9000', '15.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '19.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, '2.4900', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '73.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '70.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '15.5000', '20.5000', '3.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, '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, '10.5000', '14.0000', '5.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, '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, '3.8000', '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, '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 O-Fulvin 500mg', 1, '4.8000', '6.5000', '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, 'griseofulvin-o-fulvin-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 (2072, '41512770', 'ZINVITE CAPS', 1, '8.1200', '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, '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.5000', '3.5000', '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, '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, '', '', '', '', '', '', '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, '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, '10.8000', '14.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.9800', '4.0000', '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, 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, '11.6000', '15.5000', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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.9200', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '126.0000', NULL, 1, '', NULL, '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, '5.9000', '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, '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, '2.8000', '5.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, '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, '9.8000', '13.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, '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', '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, '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, '5.7000', '8.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, '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, '', '', '', '', '', '', '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, '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, '2.3000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '82.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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.6000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '3.4100', '5.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, '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, '', '', '', '', '', '', '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, '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, '3.0000', '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, '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, '', '', '', '', '', '', '365.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '536.0000', NULL, 1, '', NULL, '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, '3.4300', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '154.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '404.0000', NULL, 1, '', NULL, '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, '5.5000', '8.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, '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.4100', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '336.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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-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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '7.9500', '10.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, '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, '21.0000', '24.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, '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, '17.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, '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, '28.5000', '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, '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, '', '', '', '', '', '', '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, '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.2000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-179.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '-23.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, '', '', '', '', '', '', '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, '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, '74.0000', '98.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '42.0000', '55.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, '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, '15.9500', '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, '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, '27.5000', '36.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, '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, '16.5000', '22.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, '', '', '', '', '', '', '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, '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, '13.3000', '17.5000', '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, '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.5800', '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, 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, '4.0200', '5.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, '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, '', '', '', '', '', '', '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, '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, '13.0000', '17.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, '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, '', '', '', '', '', '', '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, '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, '34.0000', '45.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '3.0500', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '199.0000', NULL, 1, '', NULL, '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, '32.0000', '42.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, '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, '2.0500', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '397.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '11.8000', '16.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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-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, '', '', '', '', '', '', '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, '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, '20.0000', '25.0000', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '', '', '', '', '', '', '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, '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, '22.0000', '29.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, '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, '', '', '', '', '', '', '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, '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, '19.5000', '22.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, '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, '21.0000', '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, '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, '22.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, '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, '21.0000', '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, '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, '23.0000', '28.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, '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, '37.0000', '40.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, '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, '33.0000', '38.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, '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, '50.0000', '55.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, '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, '58.4000', '77.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '93.0000', NULL, 1, '', NULL, '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, '40.3000', '53.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '127.0000', NULL, 1, '', NULL, '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, '21.0000', '28.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, '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, '27.5000', '36.5000', '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, '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, '7.1500', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, '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.2800', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '138.0000', NULL, 1, '', NULL, '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, '73.1000', '96.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, '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, '37.5000', '49.5000', '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, '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, '40.0000', '53.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, '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.6000', '9.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, '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.9100', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '406.0000', NULL, 1, '', NULL, '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, '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, '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, '8.8000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '4.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, '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, '3.3000', '4.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, '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, '10.9800', '14.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '82.0000', NULL, 1, '', NULL, '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, '16.3700', '22.0000', '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, 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, '18.9000', '25.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, '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, '14.9000', '20.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, '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, '24.1000', '32.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, '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, '26.8000', '35.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, '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, '24.0000', '32.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, '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 PER STRIP', 1, '4.0000', '6.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, 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, '36.0000', '47.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '627.0000', NULL, 1, '', NULL, '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, '34.6000', '46.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '38.0000', NULL, 1, '', NULL, '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, '7.1300', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '122.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '5.9800', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '90.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '11.8000', '16.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, '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, '', '', '', '', '', '', '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, '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.3500', '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, '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, '8.4000', '11.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, '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, '5.0000', '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, '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, '17.6000', '23.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, '10.2000', '13.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, '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, '3.1000', '4.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, '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', '5.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, '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.8000', '2.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, '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, '', '', '', '', '', '', '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, '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.8200', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '65.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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', '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, '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.1400', '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, '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, '', '', '', '', '', '', '-45.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '54.0000', NULL, 1, '', NULL, '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.6000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '62.0000', NULL, 1, '', NULL, '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, '65.0000', '86.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, '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, '5.4000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '204.0000', NULL, 1, '', NULL, '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, '3.1700', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '119.0000', NULL, 1, '', NULL, '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, '10.7800', '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, '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.2600', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-320.0000', NULL, 1, '', NULL, '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, '9.8600', '13.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, '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, '21.0000', '28.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, '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, '', '', '', '', '', '', '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, '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.1300', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '341.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '1.7800', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '416.0000', NULL, 1, '', NULL, '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, '18.0000', '24.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, '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, '10.3000', '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, '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, '8.8000', '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, '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 30G', 1, '5.9000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-54.0000', NULL, 1, '', NULL, '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, '7.3000', '10.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, '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, '21.1700', '28.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, '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, '8.3600', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '55.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '186.8000', '247.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, '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, '', '', '', '', '', '', '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, '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, '60.3000', '80.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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '-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, '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.7700', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-260.0000', NULL, 1, '', NULL, '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, '65.0000', '70.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, '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, '17.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '78.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '-52.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-201.0000', NULL, 1, '', NULL, '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, '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, '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, '20.0000', '25.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, '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, '14.0000', '17.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, '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, '', '', '', '', '', '', '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, '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, '5.5000', '7.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, '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, '', '', '', '', '', '', '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, '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, '8.2400', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '42.0000', NULL, 1, '', NULL, '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, '18.1000', '24.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, '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, '9.2000', '12.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, '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, '30.0000', '43.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, '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, '22.5000', '29.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, '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, '20.9000', '28.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, '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.3200', '10.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, '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, '60.0000', '79.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, '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, '', '', '', '', '', '', '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, '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, '13.8000', '18.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, '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, '6.7000', '9.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, '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, '7.1800', '9.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, '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, '2.6500', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '269.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '20.0000', '27.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, '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.5000', '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, '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, '7.0000', '9.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, '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, '6.6000', '9.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, '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, '26.9800', '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, '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, '', '', '', '', '', '', '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, '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.6800', '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, '18.3300', '24.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, '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, '3.3300', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-128.0000', NULL, 1, '', NULL, '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, '6.8000', '9.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, '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, '6.9000', '9.0000', '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, '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, '94.0200', '124.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '63.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '5.3000', '7.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '1.0000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-69.0000', NULL, 1, '', NULL, '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.4800', '0.6000', '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, '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, '135.6500', '179.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '86.0000', NULL, 1, '', NULL, '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, '8.8200', '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, '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, '', '', '', '', '', '', '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, '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.9500', '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, 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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '13.0000', '17.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, '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, '', '', '', '', '', '', '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, '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.1000', '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, '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', 'PAKUM( ROCKMAN) CAPS', 1, '14.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, '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, '18.0000', '24.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '3.3000', '4.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, '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, '45.2100', '60.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, '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, '14.6000', '19.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, '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.7400', '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, '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, '', '', '', '', '', '', '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, '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.6000', '0.8000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '426.0000', NULL, 1, '', NULL, '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, '10.0000', '13.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, '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, '3.3000', '4.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, '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, '18.9000', '25.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, '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, '59.8000', '79.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, '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.1900', '4.5000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '4.2000', '6.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, '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, '5.0000', '7.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, '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.5000', '36.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, '', '', '', '', '', '', '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, '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, '13.0000', '17.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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.8000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '258.0000', NULL, 1, '', NULL, '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, '28.5400', '38.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, '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, '21.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '6.8800', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '42.0000', NULL, 1, '', NULL, '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, '3.1700', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '233.0000', NULL, 1, '', NULL, '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.7900', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '169.0000', NULL, 1, '', NULL, '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.1900', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '132.0000', NULL, 1, '', NULL, '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.0000', '5.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, '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, '', '', '', '', '', '', '-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, '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.4500', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '285.0000', NULL, 1, '', NULL, '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, '4.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, '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, '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '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, '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', '22.0800', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '81.0000', NULL, 1, '', NULL, '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, '8.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, '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, '9.1000', '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, '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, '12.0000', '18.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, '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, '170.0000', '180.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, '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, '40.0000', '45.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, '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, '', '', '', '', '', '', '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, '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, '8.5000', '12.0000', '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, '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, '8.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, '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, '6.5000', '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, '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, '8.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, '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, '17.0000', '22.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, '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 PER  ONE', 1, '4.5000', '6.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '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, '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, '', '', '', '', '', '', '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, '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, '12.5000', '16.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.1000', '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, '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, '6.8000', '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, '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, '', '', '', '', '', '', '-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, '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, '22.0000', '29.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, '14.5100', '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, '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, '', '', '', '', '', '', '-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, '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, '33.8000', '45.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, '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, '', '', '', '', '', '', '-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, '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, '47.0800', '63.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, '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, '', '', '', '', '', '', '-45.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '10.2000', '13.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, '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, '17.9000', '24.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, '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, '10.8900', '14.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, '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, '7.0400', '9.5000', '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, '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, '43.1000', '57.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, '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, '25.0000', '33.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, '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, '', '', '', '', '', '', '-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, '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, '19.0000', '22.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, '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, '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '86.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '-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, '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', '40.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, '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, '7.0000', '10.0000', '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, '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, '', '', '', '', '', '', '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, '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, '22.6000', '30.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, '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, '', '', '', '', '', '', '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, '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, '32.7000', '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, '7.9500', '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, '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, '', '', '', '', '', '', '-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, '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, '49.0000', '65.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, '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, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, '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 200ML', 1, '43.2000', '55.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, '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, '22.3000', '29.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, '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', 'MIXTARD', 1, '35.0000', '44.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, '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, '6.0300', '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, '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, '', '', '', '', '', '', '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, '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, '11.8000', '16.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '13.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, '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, '7.0000', '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, '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, '135.6500', '179.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, '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, '13.0000', '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, '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, '30.0000', '35.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, '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, '18.0000', '22.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, '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, '12.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '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, '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, '38.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, '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.8000', '14.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, '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, '3.5000', '5.0000', '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, '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, '12.0000', '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, '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, '9.4000', '12.5000', '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, '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, '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, '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, '12.8400', '17.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, '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, '8.8200', '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, '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, '', '', '', '', '', '', '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, '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, '29.6500', '39.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '1.0000', '1.5000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '9.9000', '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, '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, '22.0000', '29.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, '', '', '', '', '', '', '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, '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, '1.0000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '93.0000', NULL, 1, '', NULL, '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, '20.0000', '24.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, '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, '50.0000', '60.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, '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, '', '', '', '', '', '', '-101.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.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, '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', 'DUCOLAX TABS 5MG 20\'S', 1, '1.1300', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '152.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '65.0000', '86.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '', '', '', '', '', '', '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, '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', 'CINNAMON 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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '13.8100', '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, '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, '', '', '', '', '', '', '-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, '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.6000', '22.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, '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, '', '', '', '', '', '', '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, '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', '27.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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  S/S', 1, '4.0000', '5.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, '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.5000', '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, '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, '85.0000', '120.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, '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, '17.4000', '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, '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 SACHET', 1, '1.4000', '1.7000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-56.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '44.5000', '52.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, '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, '', '', '', '', '', '', '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, '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, '8.6400', '11.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, '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, '29.2000', '38.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, '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, '', '', '', '', '', '', 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, '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.3000', '4.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, '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, '8.7400', '12.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, '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.6000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '8.0000', '10.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, '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, '14.8500', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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, '4.7000', '6.5000', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '34.8000', '46.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, '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, '', '', '', '', '', '', '-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, '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, '18.4000', '24.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, '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, '22.3000', '25.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, '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, '1.3000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '324.0000', NULL, 1, '', NULL, '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, '45.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, '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, '27.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, '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, '12.0000', '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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '99.3000', '131.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, '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, '9.5000', '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, '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, '17.1500', '23.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, '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, '11.4000', '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, '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, '', '', '', '', '', '', '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, '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', '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, '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, '8.0000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '56.0000', NULL, 1, '', NULL, '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.7500', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '114.0000', NULL, 1, '', NULL, '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.5900', '1.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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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, '2.7000', '4.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, '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.9500', '7.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, '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, '3.0000', '3.9600', '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, '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, '', '', '', '', '', '', '-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, '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, '23.7600', '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, '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, '32.1000', '42.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, '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, '', '', '', '', '', '', 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, '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, '12.5000', '16.5000', '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, '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, '33.5000', '44.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, '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, '', '', '', '', '', '', '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, '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, '30.9800', '41.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, '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, '14.5000', '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, '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, '16.7000', '22.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, '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, '4.4800', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '183.0000', NULL, 1, '', NULL, '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.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '94.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '15.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, '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, '18.5000', '24.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, '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, '14.7000', '20.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, '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, '52.7000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.3000', '33.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, '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, '4.0000', '5.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, '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', '3.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, 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, '', '', '', '', '', '', '-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, '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, '47.0000', '62.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, '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, '4.2500', '6.0000', '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, '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, '54.2000', '72.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, '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, '35.0000', '47.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, '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, '', '', '', '', '', '', '-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, '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, '13.9200', '18.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '68.0000', 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.5000', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '15.0000', '20.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '2.7000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.8100', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '153.0000', NULL, 1, '', NULL, '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, '25.0000', '33.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, '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, '13.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, '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, '4.6000', '6.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, '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, '9.3600', '12.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, 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.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, '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, '11.9800', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '17.5000', '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, '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, '27.0000', '29.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, '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, '8.2000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '38.0000', NULL, 1, '', NULL, '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.2000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-108.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '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, '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, '1.2400', '2.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, '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, '4.3000', '6.0000', '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, '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, '', '', '', '', '', '', '-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, '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, '12.0000', '16.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, '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, '12.3000', '16.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, '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, '', '', '', '', '', '', '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, '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, '7.5000', '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, '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, '17.0000', '22.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-62.0000', NULL, 1, '', NULL, '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, '2.2200', '3.0000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '18.3900', '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, '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, '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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.7500', '19.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, '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, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '65.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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-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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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-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, '', '', '', '', '', '', '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-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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '8.2000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '91.0000', NULL, 1, '', NULL, '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, '7.4000', '9.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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.2000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '72.0000', NULL, 1, '', NULL, '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, '4.0000', '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, '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, '117.4000', '155.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, '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, '72.0700', '95.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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.9000', '1.5000', '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, '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, '', '', '', '', '', '', '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, '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, '13.2000', '17.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.9100', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '81.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '194.0000', NULL, 1, '', NULL, '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, '8.8500', '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, '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, '23.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, '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', '12.0000', '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, '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, '55.5000', '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, '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, '', '', '', '', '', '', 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-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, '24.3500', '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, '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, '25.0000', '33.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '-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, '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', ' AMERICAN WHITE VINEGAR  473ML', 1, '4.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, '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, '', '', '', '', '', '', 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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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', ' AMERICAN WHITE VINEGAR  946ML', 1, '8.0000', '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, '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, '', '', '', '', '', '', '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, '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, '14.5000', '20.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, '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, '19.0000', '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, '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, '4.0000', '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, '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  Denk  50mg', 1, '4.5500', '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, 'tramadol-denk-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 (2851, '5021265246298', 'WELLWOMAN MAX', 1, '59.0000', '78.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '6.0000', '8.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, '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, '', '', '', '', '', '', '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, '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, '7.2000', '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, '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, '5.0000', '6.6000', '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, '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, '', '', '', '', '', '', '-330.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '-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, '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, '2.1800', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '116.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '7.8000', '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, '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, '', '', '', '', '', '', '-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, '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', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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 400G POWDER ', 1, '35.0000', '46.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, '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 ( spanish green)', 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, 'olive-oil-il-spanish-green', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (spanish green)', 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, '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 (spanish green)', 1, '15.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, '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, '', '', '', '', '', '', '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, '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, '11.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.0000', '12.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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '', '', '', '', '', '', '-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, '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 NATURAL FAIRNESS 250ML S/S ', 1, '14.0000', '17.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-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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '33.2100', '44.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, '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, '20.3000', '27.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, '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', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, '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', 'MB 760 TAB', 1, '2.8000', '4.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, 'mb-760-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 (2907, '78214441', 'LUMATRONA SUSP 60ML', 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, '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.3600', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '156.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '5.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, '', '', '', '', '', '', '-2.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, '', '', '', '', '', '', '-4.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, '', '', '', '', '', '', '-2.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, '21.0000', '28.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, '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, '24.0000', '32.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '38.0000', NULL, 1, '', NULL, '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, '8.8000', '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, '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, '', '', '', '', '', '', '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, '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, '4.8000', '6.3000', '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, '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, '16.0000', '21.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, '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.9900', '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, '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, '', '', '', '', '', '', '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, '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, '14.5000', '19.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, '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, '10.0000', '13.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, '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, '5.9500', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', 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, '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', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '15.0000', '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, '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.1500', '8.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, '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, '7.2000', '9.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, '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, '', '', '', '', '', '', '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, '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, '6.2300', '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, '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, '7.7000', '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, '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, '3.8000', '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, '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.8200', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, '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, '4.0000', '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, '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, '', '', '', '', '', '', '-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, '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, '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, '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, '43.5000', '57.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, '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, '1.6000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '929.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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.7000', '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, '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.7200', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-93.0000', NULL, 1, '', NULL, '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, '4.9800', '7.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, '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, '25.0000', '33.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, '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, '', '', '', '', '', '', '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, '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, '6.5000', '9.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '8.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '', '', '', '', '', '', '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, '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, '9.0000', '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, '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, '6.5000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '4.0000', '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, '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.9800', '30.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, '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, '2.1300', '3.0000', '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, '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, '', '', '', '', '', '', '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, '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, '8.0000', '10.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, '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, '10.7000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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 EVENTONE  ', 1, '28.0000', '34.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, 'nivea-eventone', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.2000', '4.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, '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.4100', '5.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, '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, '39.3000', '52.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, '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, '', '', '', '', '', '', '83.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '4.3000', '6.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, '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.2500', '2.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, '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.8000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '68.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '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, '3.6000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '52.0000', NULL, 1, '', NULL, '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, '13.5300', '18.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, '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', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '0.9600', '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, '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, '7.8000', '10.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, '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, '', '', '', '', '', '', '-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, '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, '13.4000', '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, '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, '13.4000', '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, '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, '13.6200', '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, '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, '59.9000', '79.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, '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, '', '', '', '', '', '', '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, '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', '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, '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, '9.0000', '12.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, '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, '58.5100', '77.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, '', '', '', '', '', '', '-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, '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.9600', '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, '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, '5.0000', '7.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, '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, '', '', '', '', '', '', '-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, '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, '9.7000', '13.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, '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.9900', '16.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, '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, '', '', '', '', '', '', 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, '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.3000', '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.4600', '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, '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, '10.7000', '14.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, '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, '3.5000', '5.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, '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, '2.5000', '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, '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, '', '', '', '', '', '', '-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, '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, '4.4000', '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, '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, '10.8000', '14.5000', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '19.0000', '25.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, '11.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, '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, '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '17.0000', '22.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, '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, '17.0000', '22.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '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, '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, '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, '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, '6.3000', '8.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '6.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, '7.0000', '9.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, '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, '', '', '', '', '', '', 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, '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, '62.3000', '82.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, '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, '3.3100', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '130.0000', NULL, 1, '', NULL, '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, '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, '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.6000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '79.0000', NULL, 1, '', NULL, '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, '5.9000', '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, '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, '7.7000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '25.0000', '36.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, '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.3600', '0.5000', '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, '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, '', '', '', '', '', '', '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-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, '', '', '', '', '', '', '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, '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', '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, '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.9000', '17.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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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, '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, '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, '', '', '', '', '', '', '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, '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, '6.5000', '8.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '57.0000', '75.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, '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 (7314, '1234', 'PREGNACARE 19S', 1, '60.3000', '80.0000', '20.0000', 'no_image.png', 2, NULL, 'CF1', 'CF2', 'CF3', 'CF4', 'CF5', 'CF6', '2.0000', 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 (7315, '1235', 'LONART FORTE TABS', 1, '11.2500', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (7316, '1236', 'LOFNAC SUPP 100MG', 1, '1.0500', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '372.0000', 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, 'lofnac-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 (7317, '1237', 'LONART DS TABS', 1, '24.0000', '32.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 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-ds-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 (7318, '1238', 'LONART SUSP', 1, '17.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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-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 (7320, '1240', 'LOSAR-DENK 100', 1, '7.9500', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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, 'losar-denk-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 (7321, '1241', 'METROLEX-F TABS', 1, '13.0000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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, 'metrolex-f-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 (7322, '1242', 'LUEX ADULT DRY', 1, '16.0000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '32.0000', 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, 'luex-adult-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 (7323, '1243', 'LUEX CHILD DRY', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7324, '1244', 'METFORMIN DENK 500MG', 1, '6.3200', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-62.0000', 1, 1, NULL, NULL, '1244', NULL, NULL, 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-denk-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 (7325, '1245', 'LYRICA 150MG', 1, '23.9000', '8.8000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7326, '1246', 'M2 TONE', 1, '60.0000', '79.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7327, '1247', 'motilium', 1, '1.0100', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '16.0000', 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 (7328, '1248', 'MULTIVITE', 1, '11.8200', '0.4000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-191.0000', 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 (7329, '1249', 'MAGACID PLUS', 1, '19.3000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7330, '1250', 'MYCOLEX CREAM', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7331, '1251', 'NATRILIX SR 1.5MG', 1, '49.5000', '77.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '37.0000', 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 (7332, '1252', 'MYCROGYNON Fe', 1, '9.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 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 (7333, '1253', 'MR Q', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-106.0000', 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 (7334, '1254', 'NIFECARD XL 30', 1, '16.8000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (7335, '1255', 'NEO HYCOLEX5ML', 1, '16.9000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7336, '1256', 'NCP200ML', 1, '23.4800', '28.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7337, '1257', 'NERVE AND BONE', 1, '0.6500', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '29.0000', 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 (7338, '1258', 'NIZORAL CREAM', 1, '25.0000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7339, '1259', 'NO SPA40MG', 1, '0.8400', '1.1000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 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 (7340, '1260', 'OROLEX100MG', 1, '13.6000', '7.9000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7341, '1261', 'POLYGYNAX', 1, '40.5000', '54.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', 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, 'polygynax', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7342, '1262', 'AMOKSIKLAV228', 1, '21.0000', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '73.0000', 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 (7343, '1263', 'AMOXYCILLIN SUSP MG', 1, '47.1000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7344, '1264', 'PARA DENK250 SUPPO', 1, '2.1800', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '27.0000', 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 (7345, '1265', 'PREGNACARE CONCEPTION', 1, '60.3000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7346, '1266', 'PREGNACARE PLUS', 1, '143.3000', '189.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7347, '1267', 'PILEX OINT', 1, '21.9000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7348, '1268', 'ALPHA GARLIC CAPS', 1, '13.3000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7349, '1269', 'ACTINAC TAB', 1, '94.5600', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '16.0000', 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 (7350, '1270', 'PERFECTIL', 1, '33.1000', '44.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7351, '1271', 'AMARYL4MG', 1, '0.2600', '5.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7352, '1272', 'ANAFRANIL25', 1, '1.9800', '2.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '132.0000', 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 (7353, '1273', 'APC 4S', 1, '0.1900', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-49.0000', 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 (7354, '1274', 'ALUMINIUM HYDROXIDE', 1, '0.6700', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '14.0000', 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 (7355, '1275', 'BIOFERON SRP', 1, '24.1000', '32.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7356, '1276', 'BIOFGERON CAPS', 1, '23.5000', '31.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7357, '1277', 'BONISAN', 1, '12.2000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-38.0000', 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 (7358, '1278', 'BELLS CHILDREN,S COUGH', 1, '14.5000', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (7360, '1280', 'BORGES250ML', 1, '25.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7361, '1281', 'CAMEL500', 1, '32.0000', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7362, '1282', 'CAMEL 250ML', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '23.0000', 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 (7363, '1283', 'CAMEL 125ML', 1, '10.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7364, '1284', 'ANUSOL SUPPOS', 1, '5.5300', '3.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7365, '1285', 'BIG BEN', 1, '9.6500', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7366, '1286', 'ATORVASTATIN10MG', 1, '7.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7367, '1287', 'ATORVASTATIN20MG', 1, '12.4000', '16.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7368, '1288', 'BONAPLEX250MLS', 1, '18.9000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', 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 (7369, '1289', 'BONGELA CHILD', 1, '33.0000', '44.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7370, '1290', 'BELLS BABY COUGH', 1, '12.1100', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7371, '1291', 'BONGELA ADULT', 1, '23.9900', '45.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7372, '1292', 'BETALOC50MG', 1, '22.3000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7373, '1293', 'CATAFLAM 50MG', 1, '17.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '29.0000', 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 (7374, '1294', 'AXACEF 250', 1, '9.8000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '11.0000', 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 (7375, '1295', 'AXACEF 500', 1, '5.3000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-152.0000', 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 (7376, '1296', 'VIT B DENK', 1, '14.2100', '18.7500', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-43.0000', 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 (7377, '1297', 'ATACAND16MG', 1, '6.0000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7378, '1298', 'ATACAND PLUS 16/12.5MG', 1, '235.7300', '311.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7379, '1299', 'TEETHING MIXTURE ERNEST', 1, '9.4000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (7380, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', 1, '12.5000', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-23.0000', 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 (7381, '1301', 'TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7382, '1302', 'AZIROCIN CAPS USP 250 MG', 1, '10.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 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 (7383, '1303', 'AUGMENTIN  625 MG', 1, '98.6000', '130.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '20.0000', 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 (7384, '1304', 'AZIRON AZITHROMYCYCIN TAB USP 500 MG', 1, '8.2000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', 1, '3.3300', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '612.0000', 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 (7386, '1306', 'CORORANGE HAEMATINIC CAPS SOFTGELS', 1, '8.2000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7387, '1307', 'CATAFLAM 50MG DICLOFENAC. KAL ANTI-INALGESIC', 1, '2.7000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7388, '1308', 'AMOXYCILLIN SUSP ORAL BP 125/5ml', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7389, '1309', 'CO-DIOVAN 80/12.5MG', 1, '14.3000', '3.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', 1, '8.6000', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '11.0000', 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 (7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', 1, '15.6000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (7392, '1312', 'CLOTRI-DENK 100 VAGINAL TABS', 1, '19.5300', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '14.0000', 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 (7393, '1313', 'SARETTO TABS 15MG', 1, '9.5100', '435.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7394, '1314', 'ZINTAB 10ML', 1, '0.5000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '28.0000', 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 (7395, '1315', 'TRIX ORIS S/S', 1, '72.0000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '72.0000', 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 (7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', 1, '24.0000', '32.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (7397, '1317', 'ZITHROMAX  SUSP', 1, '99.3000', '131.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7398, '1318', 'WORMPLEX 400 SUSP. 20ML', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-49.0000', 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 (7399, '1319', 'SE\'CLEAR EYE/EAR DROP', 1, '57.0500', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7400, '1320', 'ZINCOVIT TAB', 1, '29.8000', '39.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7401, '1321', 'WELLBABY Syr', 1, '74.3000', '98.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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, 'wellbaby-multi-vit-liq', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7402, '1322', 'VERMOX SUSP', 1, '18.9000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7403, '1323', 'MOTILIUM 10 MG 30 TABS ORAL JANSSEN', 1, '1.0100', '1.3000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '48.0000', 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 (7404, '1324', 'TAVANIC 500MG LEVAFLAUZACIN sanofi', 1, '2.0000', '154.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7405, '1325', 'bisoprolol fumarate 2.5mg tabs sandox', 1, '6.9000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (7406, '1326', 'POLYFER SYR FORTE  50ML', 1, '2.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (7407, '1327', 'SULFUR OINTMENT DANEX', 1, '7.7300', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7408, '1328', 'TAGERA FORTE', 1, '5.2800', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7409, '1329', 'PRIMOLUT N', 1, '30.4000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '39.0000', 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 (7410, '1330', 'PARABRU', 1, '1.8000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7411, '1331', 'CITRO C', 1, '2.0200', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1049.0000', 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 (7412, '1332', 'COLODIUM', 1, '2.2000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-55.0000', 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 (7413, '1333', 'COLESTOP10MG', 1, '5.4200', '32.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7414, '1334', 'CONGESTYL SRP', 1, '18.2100', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7415, '1335', 'CONGESTYL TAB', 1, '10.2000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7416, '1336', 'CLOTRI DENK CREAM', 1, '25.8000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7417, '1337', 'DALACIN 300MG ORIGINAL', 1, '9.6300', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-40.0000', 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 (7418, '1338', 'ANAFRANIL25', 1, '25.3000', '1.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7419, '1339', 'DEEP HEAT SPRAY 150ML', 1, '48.0000', '64.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7420, '1340', 'DEEP FREEZE SPRAY 150ML', 1, '47.7700', '63.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7421, '1341', 'TENOX5MG', 1, '12.0200', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7423, '1343', 'COOL EYES', 1, '14.0600', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7424, '1344', 'CLOSE UP140G', 1, '7.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (7425, '1345', 'CORORANGE SRP', 1, '9.5000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (7426, '1346', 'COTTON WOOL200G', 1, '2.6000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '37.0000', 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 (7427, '1347', 'AZOMAX 500', 1, '25.0000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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, 'azomax-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 (7428, '1348', 'TADOL 100', 1, '3.1500', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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 (7429, '1349', 'VAGINAX CREAM', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7430, '1350', 'ZINNAT 250 TAB', 1, '15.0000', '64.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7431, '1351', 'CIPROLEX TZ', 1, '27.0000', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '16.0000', 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 (7432, '1352', 'VITAFORCE', 1, '18.9000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '53.0000', 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 (7433, '1353', 'ZESTRIL 20MG', 1, '4.6000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '29.0000', 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 (7434, '1354', 'ZESTRIL 10MG', 1, '2.4300', '4.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7435, '1355', 'CRESTOR 20', 1, '8.2600', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (7436, '1356', 'NEUROBION', 1, '28.5500', '3.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7437, '1357', 'CO APPROVEL 150/12.5', 1, '13.0000', '5.2000', '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 (7438, '1358', 'OSTEOCARE ORG TAB', 1, '53.5000', '71.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7439, '1359', 'TOBRADEX EYE DROP', 1, '2.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7440, '1360', 'ZINACEF 750', 1, '9.6000', '31.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7441, '1361', 'ANGEL CREAM', 1, '0.2300', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7442, '1362', 'CASTOR OIL', 1, '11.8000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7443, '1363', 'ZINTAB 20MG 1000S', 1, '6.8600', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (7444, '1364', 'COLDRELIEF CAPS', 1, '3.9100', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-16.0000', 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 (7445, '1365', 'CIROTAMIN SRP', 1, '7.9900', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '97.0000', 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 (7446, '1366', 'TETRA OINT', 1, '2.9800', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '34.0000', 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 (7447, '1367', 'STREPSILS ORG', 1, '1.8500', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-196.0000', 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 (7448, '1368', 'STREPTOL54/6', 1, '15.8500', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-57.0000', 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 (7449, '1369', 'VENTOLIN EVOHALER', 1, '9.8000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7450, '1370', 'V-FIRM', 1, '5.5300', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7451, '1371', 'WARFARIN 5MG', 1, '7.8000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (7452, '1372', 'WARFARIN 1MG', 1, '27.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7453, '1373', 'TRES ORIX 250ML', 1, '25.0000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (7454, '1374', 'WELLMAN CAPS', 1, '90.2000', '119.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7455, '1375', 'WELLWOMAN CAPS', 1, '5.3500', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (7456, '1376', 'VENTOLIN INHALER', 1, '47.2000', '62.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7457, '1377', 'WORMPLEX SUSP', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '81.0000', 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 (7458, '1378', 'VOLLTFAST 50MG', 1, '1.7700', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '57.0000', 1, 1, NULL, NULL, '1378', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'volltfast-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 (7459, '1379', 'TOTHEMA', 1, '3.7000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-551.0000', 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, 'tothema', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7460, '1380', 'GVITHER INJ', 1, '2.8500', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7461, '1381', 'PROVIRON', 1, '86.0000', '53.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7462, '1382', 'PROSTACARE', 1, '23.0000', '67.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7463, '1383', 'ROCEPHINE INJ 2G', 1, '20.2400', '112.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7464, '1384', 'RHINATHIOL ADULT BLUE', 1, '29.9600', '39.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7465, '1385', 'RHINATHIOL INFANT PINK', 1, '20.2400', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7466, '1386', 'PROXIMEXA CAPS 250', 1, '1.5100', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (7467, '1387', 'LIPTON GREEN TEA', 1, '16.5500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7468, '1388', 'LIGABA 75', 1, '11.5000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7469, '1389', 'LEXSPORIN OINT', 1, '23.0000', '30.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7470, '1390', 'LEXOTANIL 1.5MG', 1, '5.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7471, '1391', 'LAMISIL TAB', 1, '0.4300', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', 1, '10.5500', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7473, '1393', 'RAPINOL', 1, '0.5700', '0.8000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-134.0000', 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 (7474, '1394', 'KOFOF BABY', 1, '7.8000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7475, '1395', 'MAGACID PLUS', 1, '0.3000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7476, '1396', 'TRITACE 2.5MG', 1, '4.4300', '87.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7478, '1398', 'NIFE DENK 20', 1, '6.3200', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7479, '1399', 'ORELOX 100TAB', 1, '3.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7480, '1400', 'OSTEOCARE SRP ORG', 1, '3.1000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7481, '1401', 'PARA SRP M/G', 1, '0.4800', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7482, '1402', 'MAXMOX 500', 1, '5.8000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-152.0000', 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 (7483, '1403', 'ORS', 1, '0.7400', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-95.0000', 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 (7484, '1404', 'PARA INFUSION', 1, '54.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7485, '1405', 'PARA TAB', 1, '19.3500', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7486, '1406', 'ROCEPHINE INJ 1G', 1, '9.3000', '70.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7487, '1407', 'CLAVULIN TAB', 1, '2.3400', '20.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7488, '1408', 'DEEP HEAT OINT 15G', 1, '9.3000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7489, '1409', 'AMPICLOX SUSP', 1, '2.4300', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7490, '1410', 'SYRINGE 5CC', 1, '0.2500', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '128.0000', 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 (7491, '1411', 'ASCORYL SRP', 1, '7.4000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-35.0000', 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 (7492, '1412', 'ZOXON 1000MG', 1, '4.7000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7493, '1413', 'ASOMEX 2.5MG', 1, '4.0500', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7494, '1414', 'NORVASC 5MG', 1, '57.6000', '76.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7495, '1415', 'KOFFEX JUNIOR', 1, '5.3000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7496, '1416', 'NORMAL SALINE', 1, '6.3000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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 (7497, '1417', 'LIV 52 SRP', 1, '20.3000', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7498, '1418', 'CO-TRIMOXAXOLE TAB', 1, '3.5000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7499, '1419', 'RONAXICAM', 1, '7.0400', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7500, '1420', 'GLYCERINE S/S', 1, '7.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7501, '1421', 'PROPRANOLOL 40MG 28,S', 1, '3.5400', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7502, '1422', 'PROXEED WOMEN', 1, '1.4000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7503, '1423', 'LIPITOR 10MG', 1, '7.9000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7504, '1424', 'CHLO EAR DROP', 1, '1.2400', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7505, '1425', 'SE,CLEAR EYE/ EAR DROP', 1, '0.2700', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7506, '1426', 'SUPER APETI TAB', 1, '15.0000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-93.0000', 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 (7507, '1427', 'METRONIDAZOLE 200 TAB', 1, '0.8600', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-65.0000', 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 (7508, '1428', 'VASELINE LOTION', 1, '8.5100', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7509, '1429', 'ROOTER', 1, '10.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '31.0000', 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 (7510, '1430', 'SUNLIGHT LIQUID750ML', 1, '4.5000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7511, '1431', 'LUX SHAKE ME SOAP', 1, '13.5800', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7512, '1432', 'LIFEBOUY SOAP', 1, '8.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7513, '1433', 'TAMSULOSIN 400', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7514, '1434', 'PREGNANCY TEST KIT', 1, '1.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-386.0000', 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 (7515, '1435', 'NEXIUM SACHET 10MG', 1, '3.5000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7516, '1436', 'BECOATIN TAB', 1, '10.0000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7517, '1437', 'SPIRIT EAR DROP', 1, '15.0500', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7518, '1438', 'VERMOX TAB', 1, '10.9000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '24.0000', 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 (7519, '1439', 'BELLS TEETHING MIX', 1, '18.3000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7520, '1440', 'SULPHUR OINT', 1, '7.2000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7521, '1441', 'BELLS TEETHING MIX', 1, '27.5000', '36.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7522, '1442', 'VISCOF D', 1, '12.0400', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7523, '1443', 'VISCOF S', 1, '12.8400', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7524, '1444', 'WORMPLEX TAB', 1, '7.3000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-64.0000', 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 (7525, '1445', 'ZESTRIL 5MG', 1, '0.4600', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7526, '1446', 'ZINCOVIT SRP', 1, '21.7000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (7527, '1447', 'ZINTAB 20', 1, '0.8900', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '57.0000', 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 (7528, '1448', 'ZINTAB 10', 1, '5.7200', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7529, '1449', 'STREPTOL25/6', 1, '0.3000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7530, '1450', 'POLYFER SRP 150ML', 1, '12.3000', '16.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7531, '1451', 'METRONIDAZOLE LETAP', 1, '3.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7532, '1452', 'AMOKSIKLAV 457 SUSP', 1, '27.5000', '36.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-39.0000', 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 (7533, '1453', 'NEOHYCOLEX 10ML', 1, '4.4000', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-32.0000', 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 (7534, '1454', 'CONGESTYL SRP', 1, '18.4000', '24.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (7535, '1455', 'SAMAILN ADULT', 1, '7.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '18.0000', 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 (7536, '1456', 'LIPITOR 20', 1, '11.0000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-40.0000', 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 (7537, '1457', 'COLGATE SMILE BABY', 1, '70.6000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7538, '1458', 'ATACAND 8MG', 1, '18.4000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7539, '1459', 'PERFECTYL PLUS', 1, '4.3000', '93.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7540, '1460', 'NIZORAL SHAMPOO', 1, '21.9900', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7541, '1461', 'metformin 500mg', 1, '0.5000', '0.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (7542, '1462', 'SEPTRI N SUSP', 1, '3.8100', '5.0300', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7543, '1463', 'CO DIOVAN 160/12.5', 1, '18.0500', '4.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7544, '1464', 'B COMPLEX TAB LOCAL', 1, '0.2400', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-219.0000', 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 (7546, '1466', 'VENTOLIN NEBULES 2.5MG', 1, '16.3300', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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, 'ventolin-nebules', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7547, '1467', 'SYRINGE 10MLS', 1, '0.3300', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-239.0000', 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 (7548, '1468', 'SENACO', 1, '4.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-21.0000', 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, 'senaco', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7549, '1469', 'P- ALAXIN SUSP', 1, '2.7800', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7550, '1470', 'ACTIVATED CHARCOAL', 1, '4.7300', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-252.0000', 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 (7551, '1471', 'CARBAMAZIPINE', 1, '4.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7552, '1472', 'LOFNAC GEL', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (7553, '1473', 'LOFNAC -P', 1, '12.0000', '1.8000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7554, '1474', 'NAKLOFEN DUO', 1, '2.2000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-144.0000', 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 (7555, '1475', 'OLFEN GEL20GM', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (7556, '1476', 'OLFEN GEL 50GM', 1, '25.0000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7557, '1477', 'DICLO INJ', 1, '0.6800', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-188.0000', 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 (7558, '1478', 'DORETA', 1, '3.3300', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-253.0000', 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, 'doreta', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7559, '1479', 'NEXIUM 40 14S', 1, '10.6600', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7560, '1480', 'FEROGLOBIN SRP', 1, '56.2000', '74.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (7561, '1481', 'HYDROCORT CREAM', 1, '16.2000', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7562, '1482', 'IBEX', 1, '7.6300', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7563, '1483', 'KOFOL LOZ', 1, '4.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7564, '1484', 'KWIK ACTION', 1, '0.6400', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-42.0000', 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 (7565, '1485', 'LADINAS', 1, '0.2000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-34.0000', 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 (7566, '1486', 'LEMPSIP', 1, '26.0000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7567, '1487', 'HONSTAN', 1, '32.4000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7568, '1488', 'MINAVITA', 1, '6.0600', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7569, '1489', 'NAPROXEN EC', 1, '37.0000', '48.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7570, '1490', 'NAPROX ECL', 1, '7.8000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7571, '1491', 'NUCLEO CMP', 1, '2.1000', '2.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '79.0000', 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 (7572, '1492', 'O- YES FEMININE WASH', 1, '8.6300', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7573, '1493', 'FELDENE 20MG', 1, '5.5000', '52.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7574, '1494', 'PMF VASELINE', 1, '8.2900', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7575, '1495', 'CALAMINE OINT', 1, '5.9000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7576, '1496', 'SOLUBLE ASP', 1, '2.7500', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-41.0000', 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 (7577, '1497', 'SUDOCREAM125', 1, '32.0000', '42.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7578, '1498', 'WELWOMAN DRINK', 1, '11.7000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 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 (7579, '1499', 'GAUZE 7.5cm', 1, '15.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-92.0000', 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 (7580, '1500', 'BENILIN PAED', 1, '5.3000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7581, '1501', 'COTTON BALLS', 1, '1.3000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7582, '1502', 'DAN RUBB', 1, '6.1600', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7583, '1503', 'DICLOLEX TAB', 1, '1.5000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '26.0000', 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 (7584, '1504', 'EPIDERM 15G', 1, '3.6000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7585, '1505', 'EPIDERM 30G', 1, '4.2400', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-39.0000', 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 (7586, '1506', 'EMGIFLOX SUSP', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7587, '1507', 'FLEMEX JNR', 1, '7.8000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7588, '1508', 'FUNBACT', 1, '8.4000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7589, '1509', 'GENTA-K', 1, '1.9000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7590, '1510', 'METHYLATED SPIRIT S/S', 1, '2.7000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '66.0000', 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 (7591, '1511', 'GYPRONE TAB', 1, '3.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7592, '1512', 'HAEMOGLOBIN M/G', 1, '6.8000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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 (7593, '1513', 'HAEMOGLOBIN LETAP', 1, '4.1000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (7594, '1514', 'HYDROCORT CREAM', 1, '10.1600', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7596, '1516', 'IMODIUM', 1, '18.1000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7598, '1518', 'KAMAGRA 100', 1, '9.5000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7599, '1519', 'METASOL SOAP', 1, '11.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7600, '1520', 'NAT-B', 1, '1.8600', '1.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7601, '1521', 'PREGASAFE 75', 1, '13.5000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (7602, '1522', 'DANEGAN SRP', 1, '3.5000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7603, '1523', 'SEDALYN SRP PAED', 1, '1.1500', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7604, '1524', 'PLASTER 5CM', 1, '4.3900', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (7605, '1525', 'AJANTA STAMINA', 1, '7.1800', '1.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7606, '1526', 'PERMOXL SRP', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (7607, '1527', 'AQUEOS CREAM', 1, '3.9000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7608, '1528', 'AUNTY MARY', 1, '11.8000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-53.0000', 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 (7609, '1529', 'CETAPOL SRP', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-74.0000', 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 (7610, '1530', 'CIPRODENK', 1, '1.2500', '38.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7611, '1531', 'DERMIRON PLUS', 1, '4.9000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '14.0000', 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 (7612, '1532', 'DOXYCYCLINE CAPS LETAP', 1, '1.7500', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-68.0000', 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, 'doxycycline-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 (7613, '1533', 'FEMFRESH', 1, '14.8000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7614, '1534', 'IDEOS', 1, '50.4900', '67.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7615, '1535', 'COTTON BUD', 1, '4.3900', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7616, '1536', 'KETAZOLE CREAM', 1, '5.2000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7617, '1537', 'KETAZOLE TAB', 1, '34.8000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7618, '1538', 'KY JELLY50G', 1, '9.5000', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7619, '1539', 'KY JELLY 75G', 1, '36.9800', '49.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7620, '1540', 'LA WASH', 1, '9.3100', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7621, '1541', 'METAGYL SRP', 1, '5.9000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7622, '1542', 'NIFEDENK 10', 1, '3.3000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7623, '1543', 'NIGHT NURSE CAPS', 1, '47.0000', '62.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7624, '1544', 'TAMPAX', 1, '7.3000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7625, '1545', 'VALUPAC VIT C500S', 1, '17.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7626, '1546', 'VITA POWER SRP', 1, '7.6000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7627, '1547', 'BENILIN FOR FLU', 1, '143.5700', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7628, '1548', 'ANUSOL SUPP', 1, '2.0900', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-82.0000', 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 (7629, '1549', 'ZITHROMAX CAPS', 1, '186.8000', '247.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7630, '1550', 'DUCOLAX SUPP', 1, '3.3100', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-59.0000', 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, 'dulcolax-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 (7631, '1551', 'ZINNAT SUSP100ML', 1, '84.7900', '112.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7632, '1552', 'CIPROLEX TAB', 1, '14.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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, 'ciprolex-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 (7633, '1553', 'CIPAC EYE DROP', 1, '2.8700', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7634, '1554', 'CIPROLEX EYE DROP', 1, '10.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7635, '1555', 'DECATYLINE LOZ', 1, '18.5000', '24.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7636, '1556', 'DIABETMINE', 1, '2.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7637, '1557', 'MAJOR EPHEDRINE', 1, '8.1400', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7638, '1558', 'FLUCONA DENK/TEVA', 1, '17.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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, 'flucona-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 (7639, '1559', 'JET 2', 1, '7.0000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-37.0000', 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 (7640, '1560', 'LENOR', 1, '4.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7641, '1561', 'LYDIA', 1, '8.5000', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-184.0000', 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, 'lydia', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7642, '1562', 'LEVON 2', 1, '5.9800', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7643, '1563', 'METRO SUSP LETAP #MGP', 1, '2.1100', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7644, '1564', 'CYTOTEC', 1, '4.4800', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '73.0000', 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 (7645, '1565', 'PILEX TAB', 1, '23.7800', '31.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7646, '1566', 'SE,CLEAR', 1, '4.9500', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7647, '1567', 'SEFLOX EYE DROP', 1, '7.1000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7648, '1568', 'BX SRP100ML', 1, '5.4000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7649, '1569', 'BX SRP 200', 1, '7.1000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (7650, '1570', 'HISTAZINE SRP', 1, '4.7000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7651, '1571', 'RHIZINE SRP', 1, '3.1000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7652, '1572', 'PIRITON TAB', 1, '1.1700', '1.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-265.0000', 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 (7653, '1573', 'PRETTY LADY LINER', 1, '7.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7654, '1574', 'AUGMENTIN SRP 457', 1, '49.3900', '65.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7655, '1575', 'DEXEL 2MG', 1, '10.3700', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7656, '1576', 'DICLO DENK 50', 1, '1.8600', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7657, '1577', 'DICLO DENK 100 TAB', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7658, '1578', 'DICLO DENK SUPP', 1, '2.6500', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-200.0000', 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 (7659, '1579', 'DREZ OINT 10MG', 1, '8.8000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7660, '1580', 'DREZ OINT 30MG', 1, '13.3600', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7661, '1581', 'DREZ POWDER', 1, '9.4000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7662, '1582', 'DNS', 1, '6.3600', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7663, '1583', 'DREZ SOLTN 30ML', 1, '10.3000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7664, '1584', 'DUROL ADULT', 1, '9.1500', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7665, '1585', 'DUROL JUNR', 1, '7.9000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7666, '1586', 'DYMOL TAB', 1, '5.7000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-38.0000', 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 (7667, '1587', 'MYCOVIN 500', 1, '5.8400', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 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 (7668, '1588', 'KIDICARE SRP', 1, '14.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7669, '1589', 'MENTODEX SRP S/S', 1, '12.4000', '16.3700', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7670, '1590', 'DAKTARIN CREAM', 1, '19.6000', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7671, '1591', 'PARA UK', 1, '1.7000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-162.0000', 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 (7672, '1592', 'EFPAC TAB', 1, '1.3000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-44.0000', 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 (7673, '1593', 'APETAMIN SRP', 1, '28.7000', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (7674, '1594', 'GEBEDOL', 1, '2.0500', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '49.0000', 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 (7675, '1595', 'GEBEDOL EXTRA', 1, '3.1100', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7676, '1596', 'LISTRINE 250', 1, '5.2000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7677, '1597', 'LISTRINE SMART', 1, '22.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7678, '1598', 'CETAPOL PM', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7679, '1599', 'VALUPAk VIT C 1000', 1, '20.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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, 'valupak-vit-c-1000', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7680, '1600', 'FLAGENTYL', 1, '28.6000', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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, 'flagentyl', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7681, '1601', 'DICLO DENK 50', 1, '9.7000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7682, '1602', 'FLEMEX ADULT', 1, '7.7000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7683, '1603', 'BELLS CALAMINE', 1, '11.0900', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7684, '1604', 'GAUZE 10CM', 1, '9.0000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-114.0000', 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 (7685, '1605', 'GAUZE  15CM', 1, '31.2000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-92.0000', 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 (7686, '1606', 'PLASTER 10CM', 1, '19.3000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7687, '1607', 'CALPOL 6+', 1, '49.0000', '65.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7688, '1608', 'FOLIGROW CAPS', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7689, '1609', 'KAMACLOX', 1, '9.1000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7690, '1610', 'PREGASAFE 75', 1, '18.2800', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7691, '1611', 'IMODIUM', 1, '18.1000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7692, '1612', 'DANRUBB', 1, '2.7000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7693, '1613', 'SEDALIN JNR', 1, '4.0900', '5.4000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7694, '1614', 'PENICILLIN INJ', 1, '4.7900', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 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 (7695, '1615', 'SEFLOX', 1, '3.9400', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7696, '1616', 'MYCOVIN 500', 1, '2.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7697, '1617', 'LADINAS', 1, '5.3000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 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 (7698, '1618', 'HONSTAN', 1, '4.5500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7699, '1619', 'COLGATE HERB', 1, '6.5000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7700, '1620', 'SULFER OINT', 1, '3.7000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7701, '1621', 'WELMAN DRINK', 1, '0.6300', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7702, '1622', 'MERCY CREAM', 1, '4.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (7703, '1623', 'BRUFEN 400', 1, '1.5000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-129.0000', 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 (7704, '1624', 'RHIZON TAB', 1, '0.4900', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-177.0000', 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 (7705, '1625', 'POSTINOR', 1, '29.9900', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7706, '1626', 'GENECURE 442', 1, '6.2500', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7707, '1627', 'EFPAC JUNIOR', 1, '7.1500', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (7708, '1628', 'TEEDAR', 1, '10.7000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (7709, '1629', '4.85AMLODIPINE TEVA 10', 1, '4.9400', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-65.0000', 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 (7711, '1631', 'COARTEM 80/480', 1, '60.7800', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-26.0000', 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 (7712, '1632', 'CYPRODINE CAPS', 1, '39.0000', '51.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (7713, '1633', 'MARTINS PLAIN', 1, '0.3800', '0.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7714, '1634', 'MARTINS ORANGE', 1, '0.4200', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-117.0000', 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 (7715, '1635', 'MALARIA TEST KIT', 1, '6.6000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '47.0000', 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 (7716, '1636', 'MALARIA CHECK', 1, '0.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7717, '1637', 'STREPTOL 12S', 1, '6.0000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7718, '1638', 'COTTON PIECES', 1, '4.0000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7719, '1639', 'YAZZ PAD', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7720, '1640', 'YAZZ LINER', 1, '6.5000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7721, '1641', 'ALWAYS MAXI', 1, '7.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7722, '1642', 'ALWAYS DOUBLE', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (7723, '1643', 'ALWAYS SINGLE', 1, '5.5000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7724, '1644', 'FAYTEX', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7725, '1645', 'SOFTCARE WIPES', 1, '12.6700', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7726, '1646', 'FRESS', 1, '2.1000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7727, '1647', 'HANKERCHIEF', 1, '0.9000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7728, '1648', 'MENTOS GUM ICE', 1, '2.0000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '37.0000', 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 (7729, '1649', 'MENTOS GUM', 1, '13.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7730, '1650', 'MENTOS FRESH ACTION', 1, '0.1900', '0.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '128.0000', 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 (7731, '1651', 'RUBBING ALC', 1, '13.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7733, '1653', 'PEPSODENT S/S', 1, '25.8000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7734, '1654', 'SCISSORS', 1, '15.8000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7735, '1655', 'IMMUNACE', 1, '26.0000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7736, '1656', 'NUGEL -O', 1, '27.2600', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-21.0000', 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 (7737, '1657', 'CREEP BANDAGE15CM', 1, '3.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7738, '1658', 'CREEP BANDAGE 10CM', 1, '8.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7739, '1659', 'CREEP BANDAGE 7.5CM', 1, '2.7500', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7740, '1660', 'GLYCERINE B/S', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7741, '1661', 'DYNEWELL SRP', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-37.0000', 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 (7742, '1662', 'ENTRAMOL', 1, '2.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-22.0000', 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 (7743, '1663', 'KISS', 1, '2.3000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-244.0000', 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 (7744, '1664', 'FIESTA CONCOM', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-102.0000', 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 (7745, '1665', 'DUREX COND', 1, '8.9000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (7746, '1666', 'MALAFAN', 1, '1.3400', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (7747, '1667', 'FOLIC ACID 28S', 1, '17.9300', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7748, '1668', 'VIROL', 1, '9.1500', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7749, '1669', 'FOLIGROW SRP', 1, '20.0000', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (7750, '1670', 'CALPOL 2+', 1, '46.3000', '61.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7751, '1671', 'SPIRIT B/S', 1, '3.4000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7752, '1672', 'HYDROGEN LOCAL', 1, '3.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7753, '1673', 'ZULU', 1, '4.9000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '27.0000', 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 (7754, '1674', 'CHOCHO ABS', 1, '4.3000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7755, '1675', 'CHOCHO CREAM', 1, '5.5000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7756, '1676', 'AMOKSIKLAV 625', 1, '40.3000', '53.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-115.0000', 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, 'amoksiklav-625', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7757, '1677', 'ZINNAT 500', 1, '135.6500', '179.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7758, '1678', 'MMT', 1, '2.1800', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7759, '1679', 'VIT E-SOVIT', 1, '19.5000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (7760, '1680', 'ACIRCLOVIR 400MG TAB', 1, '1.5000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7761, '1681', 'TEARS NATURAL', 1, '22.6200', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7762, '1682', 'GV PAINT', 1, '2.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '11.0000', 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 (7763, '1683', 'FUMET', 1, '3.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7764, '1684', 'SILVERZINE', 1, '12.0300', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7765, '1685', 'MYCOVIN 125', 1, '16.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-130.0000', 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 (7766, '1686', 'ACTIFED SRP', 1, '11.1900', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7767, '1687', 'APDYL H B/S', 1, '1.4000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7768, '1688', 'ZUBES EXP', 1, '13.5000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7769, '1689', 'LETALIN', 1, '2.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-25.0000', 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 (7770, '1690', 'LUEX BABY COUGH', 1, '16.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7771, '1691', 'GV FLUC CAPS', 1, '3.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (7772, '1692', 'XIN A', 1, '34.6500', '46.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7773, '1693', 'DYTEX EYE', 1, '2.5000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7774, '1694', 'MIST POT SIT', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7775, '1695', 'EXPECT SED', 1, '2.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7776, '1696', 'PENICILLIN OINT', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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 (7777, '1697', 'GRISON', 1, '12.5000', '16.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-28.0000', 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 (7778, '1698', 'BECOATIN SRP', 1, '14.3000', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7779, '1699', 'LUFART SUSP', 1, '10.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-25.0000', 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 (7780, '1700', 'LUFART TAB', 1, '15.5000', '20.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-74.0000', 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 (7781, '1701', 'PENICILLIN TAB', 1, '0.9800', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-341.0000', 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 (7782, '1702', 'PANADOL PLAIN', 1, '2.6000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-64.0000', 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 (7783, '1703', 'KAMAGRA50', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7784, '1704', 'DRAGON CAPS', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-21.0000', 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 (7785, '1705', 'GOGYNAX', 1, '3.9000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7786, '1706', 'CANDID V6', 1, '6.7700', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7787, '1707', 'FLUREST', 1, '18.9000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7788, '1708', 'HUICHUM CAPS', 1, '22.0000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7789, '1709', 'KIDIVITE S/S', 1, '1.7500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7790, '1710', 'COMMIT 50', 1, '2.2000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-153.0000', 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 (7791, '1711', 'MALIN TAB', 1, '11.5600', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7792, '1712', 'CARVADILOL TEVA', 1, '5.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7793, '1713', 'NIFECARD 60', 1, '16.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7794, '1714', 'LISINOPRIL 10', 1, '16.7000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7795, '1715', 'DIGOXIN 125', 1, '20.9800', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7796, '1716', 'FUROSEMIDE 20 CRESCENT', 1, '13.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7797, '1717', 'LIQUIFRUITA S/S', 1, '6.3000', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7798, '1718', 'STARWIN B/S', 1, '22.9100', '30.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7799, '1719', 'STARWIN S/S', 1, '9.5000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-41.0000', 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 (7800, '1720', 'CLOMID 50', 1, '54.4500', '72.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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, 'clomid-50', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7801, '1721', 'AMOXYCLIN 500 BLISS', 1, '3.0000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7802, '1722', '~AMOXICILIN 250 BLISS', 1, '1.2200', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-100.0000', 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 (7803, '1723', 'SECURE', 1, '3.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-28.0000', 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 (7804, '1724', 'AMOXYCILLIN 250 BLISS', 1, '1.0200', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (7805, '1725', 'FLUCOX CAPS 250', 1, '2.1800', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (7806, '1726', 'DOMI 10', 1, '2.2600', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-67.0000', 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 (7807, '1727', 'DOMI 30', 1, '2.1600', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-39.0000', 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 (7808, '1728', 'MIGHTY P B/S', 1, '17.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7809, '1729', 'MIGHTY P S\'S', 1, '17.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7810, '1730', 'KINGDOM G BITS', 1, '14.6000', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7811, '1731', 'VEINE CAPS', 1, '12.5000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7812, '1732', 'TODAY MAN', 1, '16.8000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7813, '1733', 'YAFO MAN', 1, '17.0000', '16.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7814, '1734', 'GIVERS P CAPS', 1, '22.0000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7815, '1735', 'GIVERS KOO CAPS', 1, '22.0000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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, 'givers-koo-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 (7816, '1736', 'SIBIWOMAN', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7817, '1737', 'ADOM W,G CAPS', 1, '18.7000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7818, '1738', 'ADOM W,G SRP', 1, '15.5200', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7819, '1739', 'TAABEA MIX', 1, '20.2000', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7820, '1740', 'ROOTER TYTONIC', 1, '16.5000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7821, '1741', 'TIME HERBAL', 1, '14.5000', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7822, '1742', 'AGBEVE TONIC', 1, '13.5000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7823, '1743', 'AGBEVE FEVER', 1, '8.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7824, '1744', 'ADOM KOO SRP', 1, '7.7000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (7825, '1745', 'ADOM KOO CAPS', 1, '16.5000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-24.0000', 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 (7826, '1746', 'MADAM CATHERINE', 1, '8.0000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7827, '1747', 'ALAFIA BITS', 1, '9.5000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7828, '1748', 'TOP FEVER', 1, '10.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7829, '1749', 'TOP TONIC', 1, '18.5000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7830, '1750', 'ANGEL CREAM', 1, '10.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7831, '1751', 'TINATET VENECARE', 1, '26.0000', '34.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7832, '1752', 'VICTORY G MIX', 1, '16.0000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7833, '1753', 'PROSTAFIT', 1, '19.8000', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7834, '1754', 'SOLAK MIX', 1, '14.8500', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7835, '1755', 'ZIPMAN CAPS', 1, '15.9500', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7836, '1756', 'PROSTACURE TEA', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7837, '1757', 'TINATET 230 CAPS', 1, '14.2000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7838, '1758', 'AKANAYO KOO BITS', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7840, '1760', 'PEPSODENT BRUSH', 1, '4.0000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (7841, '1761', 'POWERZONE B\'S', 1, '14.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7842, '1762', 'POWERZONE S\'S', 1, '25.4800', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7843, '1763', 'CERELAC', 1, '8.5000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7844, '1764', 'LACTULOSE', 1, '25.0000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7845, '1765', 'MOLFIX', 1, '4.6000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7846, '1766', 'COLESTOP 10', 1, '17.4000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7847, '1767', 'COLGATE TRIP ACTN', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (7848, '1768', 'EASYLIFE VIT C', 1, '22.0000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-116.0000', 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, 'easylife-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 (7849, '1769', 'HEAVEN SPRAY', 1, '19.0000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7852, '1772', 'MYCOLEX 3 CREAM', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (7853, '1773', 'BELLS VIT C', 1, '22.7800', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7854, '1774', 'ZINCOVIT DROP', 1, '8.5600', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7855, '1775', 'SPERMAN', 1, '37.9000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7856, '1776', 'BONGELA CHILD', 1, '6.4000', '39.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7857, '1777', 'NUGEL', 1, '26.1800', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (7858, '1778', 'GASTRACID', 1, '20.0000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7859, '1779', 'KOFLET', 1, '16.0500', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (7860, '1780', 'BEEHIVE', 1, '24.1600', '32.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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, 'beehive', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7861, '1781', 'NS', 1, '5.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7862, '1782', 'GLUCOSE', 1, '6.1700', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7863, '1783', 'EYECOPEN', 1, '3.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7864, '1784', 'FEROGLOBIN CAPS', 1, '30.2500', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7865, '1785', 'GO COUGH', 1, '6.8300', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (7866, '1786', 'BCO STRONG6-23', 1, '2.5000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-21.0000', 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 (7867, '1787', 'AMPICLOX 250 CAPS', 1, '2.3600', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-44.0000', 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, 'ampiclox-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 (7868, '1788', 'BCO INJ', 1, '28.7600', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7869, '1789', 'CORRORANGE DROP', 1, '4.2900', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7870, '1790', 'CA-C SANDOX', 1, '2.5000', '37.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7871, '1791', 'NEXIUM 20', 1, '7.0900', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-81.0000', 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 (7872, '1792', 'STAGYL', 1, '2.5000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7873, '1793', 'PEPSODENT B/S', 1, '52.9900', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7874, '1794', 'ABIDEC', 1, '48.9800', '65.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7875, '1795', 'LAMISIL CREAM', 1, '56.0400', '74.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7876, '1796', 'COMBANTRIN', 1, '10.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7877, '1797', 'POLYFER CAPS', 1, '6.6000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7878, '1798', 'LYRICA 25', 1, '2.4500', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7879, '1799', 'PARA DENK 125', 1, '1.9200', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-102.0000', 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 (7880, '1800', 'VAGINAX PESS', 1, '3.7000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (7881, '1801', 'FENBASE', 1, '3.4000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-23.0000', 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 (7882, '1802', 'OMEPRAZOLE', 1, '1.8000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '18.0000', 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 (7883, '1803', 'EVECARE', 1, '33.8000', '45.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7884, '1804', 'KOFEX ADULT', 1, '4.2000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7885, '1805', 'DIFLUCAN', 1, '81.2000', '107.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7886, '1806', 'ABONIKI', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-118.0000', 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 (7887, '1807', 'LIVING BIT CAPS', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7888, '1808', 'LIVING BIT SRP', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7889, '1809', 'NAZOR', 1, '1.2000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-25.0000', 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 (7890, '1810', 'TINATETT MALAKARE', 1, '17.6000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7891, '1811', 'TRENDOUS CAPS', 1, '8.0000', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7892, '1812', 'VICTAGO', 1, '1.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-102.0000', 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 (7893, '1813', 'ADUTWUMWAA BIT', 1, '8.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7894, '1814', 'BOAFO OINT', 1, '3.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (7895, '1815', 'BRIGHFORD', 1, '13.0000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (7896, '1816', 'DIAGELLATES LARGE', 1, '34.5000', '45.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7897, '1817', 'DIAGELATE MED', 1, '19.5000', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7898, '1818', 'DIAGELATE SMALL', 1, '2.2000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7899, '1819', 'EKURO BEWU', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (7900, '1820', 'ERNEST OINT', 1, '3.4000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7901, '1821', 'FINE SOAP', 1, '14.5000', '3.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7902, '1822', 'FINE CREAM', 1, '15.0000', '3.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7903, '1823', 'FRANKO HERBAL', 1, '14.0000', '18.4800', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7904, '1824', 'KINGDOM GENSENG CAPS', 1, '8.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7905, '1825', 'MAME DAGOMBA', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-16.0000', 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 (7906, '1826', 'MASADA', 1, '9.3000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7907, '1827', 'NANA ADJEI', 1, '12.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-39.0000', 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 (7908, '1828', 'PA-KUM', 1, '5.5000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7909, '1829', 'SIBIMAN', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7910, '1830', 'ULCERPLEX', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7911, '1831', 'BASECOLD SRP', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (7912, '1832', 'FLUXAMOX SRP', 1, '10.7800', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7913, '1833', 'FLUXAMOX CAPS', 1, '4.4100', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-93.0000', 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 (7914, '1834', 'ZUDREX SRP', 1, '5.4300', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7915, '1835', 'ZUDREX TAB', 1, '2.8000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-33.0000', 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 (7916, '1836', 'MENTODEX B/S', 1, '8.9900', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7917, '1837', 'NO 10', 1, '0.5000', '0.8000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-363.0000', 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 (7918, '1838', 'ZUBES CHILD', 1, '10.8000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7919, '1839', 'SAMLIN NON D', 1, '4.0300', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7920, '1840', 'MACRAFOLIN SRP', 1, '4.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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 (7921, '1841', 'SHALCIP', 1, '4.3000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (7922, '1842', 'BABY COU LINC', 1, '5.2000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (7923, '1843', 'FERROUS SULF', 1, '6.9800', '0.4000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7924, '1844', 'MALR 2 SRP', 1, '4.7100', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7925, '1845', 'NEXCOFER B/S', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7926, '1846', 'PARA UK 16\'S', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '41.0000', 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, 'para-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 (7927, '1847', 'ENACEF SYRUP 125', 1, '14.6000', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7928, '1848', 'BENDRO 5MG', 1, '13.8000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7929, '1849', 'ETISALA SRP', 1, '7.9000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (7930, '1850', 'WORMBASE SUSP', 1, '2.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '20.0000', 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, 'wormbase-susp1', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7931, '1851', 'BADRUF CREAM', 1, '6.6000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7932, '1852', 'BASEFENAC FORT', 1, '3.3000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7933, '1853', 'WORMBASE TAB', 1, '0.5500', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-39.0000', 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 (7934, '1854', 'ARTIBASE SUSP', 1, '4.7000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7935, '1855', 'BASEKOF', 1, '0.5500', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7936, '1856', 'VITA P CAPS', 1, '2.4000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7937, '1857', 'BASEDIUM CAPS', 1, '3.9000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7938, '1858', 'ETISALA CAPS', 1, '4.4000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7939, '1859', 'ARTIBASE SRP', 1, '0.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7940, '1860', 'ARTIBASE DS', 1, '2.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7941, '1861', 'BE- MAN CD', 1, '0.6500', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7942, '1862', 'PROXEED PLUS', 1, '1.1500', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (7943, '1863', 'BASEFENAC-P', 1, '0.9300', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7944, '1864', 'DIPEX TAB', 1, '2.0100', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '26.0000', 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 (7945, '1865', 'BASEBRU TAB', 1, '0.3200', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7946, '1866', 'BASECOLD', 1, '1.1000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (7947, '1867', 'BISACODYL', 1, '14.4400', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-75.0000', 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 (7948, '1868', 'ESKAZIPAM', 1, '2.1000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (7949, '1869', 'FUROSEMIDE 20 RXPHAMA', 1, '0.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7950, '1870', 'KIDS BRUSH', 1, '2.4000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (7951, '1871', 'STREPTOL', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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, 'streptol', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7952, '1872', 'JOY OINT', 1, '3.3000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (7953, '1873', 'SAVLON 250', 1, '18.0000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-33.0000', 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, 'savlon-250', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7954, '1874', 'BASEBOOM JELLY', 1, '1.1300', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-29.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 (7955, '1875', 'KOJACK PASTE', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7956, '1876', 'KOJA CHARC', 1, '4.0000', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7957, '1877', 'DICLO -DENK 50', 1, '0.3400', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7958, '1878', 'ROBB JAR', 1, '3.7500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-26.0000', 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 (7959, '1879', 'PAIN OFF', 1, '0.5200', '0.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-58.0000', 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 (7960, '1880', 'OLANZIPNE', 1, '18.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7961, '1881', 'JARIFAN 2 SRP', 1, '13.2000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7962, '1882', 'ARABA BAZEEN', 1, '19.0000', '25.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (7963, '1883', 'HEPTO PEP', 1, '10.6000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (7964, '1884', 'APPLE CIDER B/S', 1, '65.3400', '86.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7965, '1885', 'EXFORGE 10/160', 1, '6.8100', '9.1000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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, 'exforge-10160', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7966, '1886', 'EXFORGE 5/160', 1, '4.6000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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, 'exforge-5160', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7967, '1887', 'DIPHEX SRP', 1, '8.4000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (7968, '1888', 'ZEMAN', 1, '2.4100', '2.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7969, '1889', 'SIRDALUD 2MG', 1, '2.4300', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '30.0000', 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 (7970, '1890', 'SIRDALUD 4MG', 1, '2.2000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-43.0000', 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, 'sirdalud-4mg1', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7971, '1891', 'ZINCOLAC', 1, '42.0000', '31.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7972, '1892', 'OSONS GRIPE', 1, '23.9600', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7973, '1893', 'VITAGLOBIN', 1, '41.1400', '54.5000', '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 (7974, '1894', 'EVECARE SRP', 1, '26.9000', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7975, '1895', 'EPICROM', 1, '21.7000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7976, '1896', 'CROMAX', 1, '20.6900', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7977, '1897', 'DALACIN C 150MG', 1, '4.5000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7978, '1898', 'NURIFER CAPS', 1, '0.5100', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7979, '1899', 'AERIUS TAB', 1, '0.6400', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7980, '1900', 'GACET 125', 1, '0.5500', '0.9000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-322.0000', 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 (7981, '1901', 'GACET 250', 1, '0.8000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-151.0000', 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 (7982, '1902', 'FLOXAPEN', 1, '11.9000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7983, '1903', 'ASTHALEX', 1, '5.9000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7984, '1904', 'DEXATROL DROP', 1, '18.9000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (7985, '1905', 'OPTREX EYE WASH', 1, '12.5000', '55.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7986, '1906', 'MAXISPORON', 1, '52.5500', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7987, '1907', 'E-NAT E', 1, '37.9400', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (7988, '1908', 'WELLOMAN 70+', 1, '13.0000', '70.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7989, '1909', 'WELLWOMAN PLUS', 1, '45.2100', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-17.0000', 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 (7990, '1910', 'COX B', 1, '16.0000', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7991, '1911', 'S/SEAS SRP', 1, '38.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (7992, '1912', 'ASTIMIN', 1, '8.8700', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7993, '1913', 'PERFECTIL PLATINUM', 1, '55.0000', '73.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (7994, '1914', 'RELCER GEL', 1, '8.2800', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (7995, '1915', 'ABIDEC SRP', 1, '40.2000', '64.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7996, '1916', 'WELLBABY DROP', 1, '54.9900', '73.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (7997, '1917', 'INFACOL', 1, '1.5000', '52.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (7998, '1918', 'PEVISON', 1, '6.3300', '43.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (7999, '1919', 'ROBB INH', 1, '2.2000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '23.0000', 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 (8000, '1920', 'ZENTEL TAB', 1, '10.4800', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-54.0000', 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, 'zentel-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 (8001, '1921', 'APFLU', 1, '36.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8002, '1922', 'BENILIN CHESTY', 1, '33.0000', '34.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8003, '1923', 'TYLENOL', 1, '34.8000', '46.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 (8004, '1924', 'ADVIL', 1, '25.0000', '43.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8005, '1925', 'ADDYZOA', 1, '58.0000', '76.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8006, '1926', 'CLARITHROMYCIN', 1, '47.8000', '63.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (8007, '1927', 'TIGER SPRAY', 1, '8.2000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8008, '1928', 'TIGER CAPS', 1, '5.8000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8009, '1929', 'CYCLOGEST 200', 1, '7.6700', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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 (8010, '1930', 'FEGLO B', 1, '3.2000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8011, '1931', 'SALO COLD SRP', 1, '9.7000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-28.0000', 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 (8012, '1932', 'PHLEBODIA', 1, '0.8400', '4.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8013, '1933', 'PINPAC EXTRA', 1, '3.6500', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8014, '1934', 'OXAFEN', 1, '40.9700', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8015, '1935', 'ZIRTEK TAB', 1, '3.4000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '24.0000', 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 (8016, '1936', 'ZIRTEK SLN', 1, '59.9000', '79.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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, 'zirtek-sln', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8017, '1937', 'SALOCOLD TAB', 1, '0.6000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '81.0000', 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 (8018, '1938', 'ACEOUS CREAM', 1, '11.9000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8019, '1939', 'APPLE CID S/S', 1, '11.0000', '52.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8020, '1940', 'MUCOLEX J', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8021, '1941', 'MUCOLEX ADULT', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8022, '1942', 'NIGHT NURSE SRP', 1, '57.9500', '76.4900', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8023, '1943', 'DEEP HEAT 35', 1, '20.5000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8024, '1944', 'DEEP HEAT 67', 1, '10.3800', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8025, '1945', 'COATERM12S', 1, '19.0000', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8026, '1946', 'COATERM 6S', 1, '16.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8027, '1947', 'CANDIBIOTIC EAR', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8028, '1948', 'GINSOMIN EVE', 1, '15.0000', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8029, '1949', 'GINSOMIN CAPS', 1, '32.6600', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8030, '1950', 'LIVOLIN', 1, '14.7600', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8031, '1951', 'GYNO DAK PESS', 1, '32.0000', '43.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (8032, '1952', 'FISHERMAN', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (8033, '1953', 'OMEPRZOLE NIMEP', 1, '1.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8034, '1954', 'FLUCOR  NIGHT', 1, '4.8900', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8035, '1955', 'TIXILIX', 1, '1.4500', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8036, '1956', 'ENVICO', 1, '6.7300', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8037, '1957', 'EZIPEN', 1, '2.3700', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (8038, '1958', 'BENDRO 2.5', 1, '6.7000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8039, '1959', 'ACIDOM', 1, '18.9000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (8040, '1960', 'ACTIFED TAB', 1, '14.9000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8041, '1961', 'BENILIN ORG', 1, '0.4700', '46.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (8042, '1962', 'BELA COUGH', 1, '33.8200', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8043, '1963', 'ASMANOL', 1, '27.9800', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-46.0000', 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 (8044, '1964', 'BENILIN INFANT', 1, '1.5000', '45.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (8045, '1965', 'GAVISCON', 1, '54.2000', '72.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8046, '1966', 'TRANEXAMIC ACID', 1, '16.8000', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-50.0000', 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 (8047, '1967', 'DEEP FREEZE OINT', 1, '31.4000', '41.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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, 'deep-freeze-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 (8048, '1968', 'DIABETONE', 1, '15.3000', '51.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8049, '1969', 'ATERSUNATE INJ      30MG', 1, '18.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8050, '1970', 'ARTESUNATE INJ 60', 1, '28.4300', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8051, '1971', 'ARTESUNATE INJ 120MG', 1, '0.6900', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8052, '1972', 'GALVUS MET 50/1000MG', 1, '37.7100', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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, 'galvus-met-501000mg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8053, '1973', 'MAGACID TAB', 1, '0.8500', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '45.0000', 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 (8054, '1974', 'ASMANOL', 1, '16.0000', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-24.0000', 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 (8055, '1975', 'M;B TAB', 1, '10.2900', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8056, '1976', 'OPTIMOL EYE', 1, '0.0000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8057, '1977', 'DEXORANGE SRP', 1, '6.0000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-17.0000', 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 (8058, '1978', 'ASPIRIN DISP', 1, '10.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8059, '1979', 'PROPER PAD', 1, '8.7000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8060, '1980', 'AQUEOS  BIG', 1, '2.2000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8061, '1981', 'CHOCOLATE', 1, '8.0000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8062, '1982', 'SELECT STRIPS', 1, '3.1000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-61.0000', 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 (8063, '1983', 'GLUCOSE CHECK', 1, '2.7000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '69.0000', 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 (8064, '1984', 'EXETER PARA SRP', 1, '4.9800', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (8065, '1985', 'AMOKSIKLAV 1G', 1, '58.4000', '77.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-71.0000', 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, 'amoksiklav-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 (8066, '1986', 'AVAMYS', 1, '5.8100', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8067, '1987', 'HYDROGEN ECL', 1, '6.4000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8068, '1988', 'METOCLOPRAMIDE', 1, '9.8000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 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 (8069, '1989', 'FLAGYL ORG SUSP', 1, '39.3000', '52.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8070, '1990', 'LG GLIZONE 15MG', 1, '6.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8071, '1991', 'AMOXIL SUSP UK', 1, '11.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8072, '1992', 'LYRICA 75', 1, '6.6000', '8.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-34.0000', 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 (8073, '1993', 'BRUFEN SRP', 1, '9.5500', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8074, '1994', 'DRAGON SPRAY', 1, '28.9000', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8075, '1995', 'KIDICS SRP', 1, '3.0000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8077, '1997', 'MYCOSTAT', 1, '6.6000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8078, '1998', 'A-L FORTE', 1, '0.4100', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8079, '1999', 'SCIMETHER SUSP', 1, '14.2100', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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, 'schimeter-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 (8080, '2000', 'BENDRO 5 LOCAL', 1, '2.9000', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-28.0000', 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 (8081, '2001', 'BENDRO 2.5 LOCAL', 1, '0.6500', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '36.0000', 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 (8082, '2002', 'GLUCOSE INFUSION', 1, '11.9500', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8083, '2003', 'LACTOGEN 1@2', 1, '33.0000', '37.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8084, '2004', 'METROLEX F SUSP', 1, '18.5200', '24.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-22.0000', 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 (8085, '2005', 'TETRA CAPS', 1, '1.1700', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-112.0000', 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 (8086, '2006', 'SAVLON 125', 1, '9.3000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (8088, '2008', 'MENSTRUAL CYC', 1, '10.0000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8089, '2009', 'MENTAT SRP', 1, '20.4000', '26.9300', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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, 'mentat-srp', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8090, '2010', 'NURIFER SRP', 1, '8.8800', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8091, '2011', 'INFA-V PESS', 1, '7.7000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8092, '2012', 'LOSATAN 50 EXETER', 1, '4.0000', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8093, '2013', 'TIMOL EYE', 1, '8.7800', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8094, '2014', 'OVACARE', 1, '47.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (8095, '2015', 'OSTEOCALIN', 1, '3.4000', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8096, '2016', 'NEUROZAN', 1, '15.9900', '61.5100', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8097, '2017', 'ENTEROGEMINA', 1, '4.5600', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-100.0000', 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 (8098, '2018', 'PROMAN', 1, '20.7900', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (8099, '8114019', 'VISCOF PLAIN 100ML SYRUP', 1, '11.4000', '15.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', 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, 'viscof-plain-100ml-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 (8100, '2020', 'CIALIS', 1, '26.9500', '68.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8101, '2021', 'CHLO CAPS', 1, '2.6900', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-28.0000', 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 (8102, '111111', 'NEOVITA CAPS PER STRIP', 1, '30.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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, 'neovita-caps-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8103, '2023', 'LYNUS OINT', 1, '26.9800', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8104, '2024', 'GILOBA', 1, '1.6000', '2.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-50.0000', 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 (8105, '2025', 'LISINOPRIL 5 TEVA', 1, '5.7000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8106, '2026', 'CRESTOR 10', 1, '4.7600', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-56.0000', 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 (8107, '2027', 'DIGOXIN 125', 1, '2.9700', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8108, '2028', 'DIGOXIN 250', 1, '84.9400', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8109, '2029', 'FLAGL SRP M*G', 1, '14.9000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8110, '2030', 'ORELOX SUSP', 1, '17.8300', '112.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8111, '2031', 'STOMOCAIN', 1, '2.4000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8112, '2032', 'LIMZER', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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, 'limzer', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8113, '2033', 'CEBROTONIN', 1, '2.4500', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '20.0000', 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 (8114, '2034', 'JUNIOR BRUFN SRP', 1, '17.8000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8116, '2036', 'SWEETEX', 1, '57.5000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8117, '2037', 'CANDEREL', 1, '1.5100', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8118, '2038', 'SERETIDE 50/100', 1, '31.4000', '75.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8119, '2039', 'LETAMOL', 1, '90.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 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 (8120, '2040', 'CARDIOACE', 1, '38.9600', '51.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8121, '2041', 'OSTECARE PLUS', 1, '2.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8122, '2042', 'XYLO ACINO INFANT', 1, '13.0000', '43.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8123, '2043', 'BACTIGEL', 1, '3.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (8124, '2044', 'SASSO SPRAY', 1, '23.0000', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8125, '2045', 'MOSQUITOE REPP', 1, '0.8000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8126, '2046', 'SANITIZER B/S', 1, '7.8800', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8127, '2047', 'ESSENTIAL EMBR', 1, '24.5300', '1.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-37.0000', 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 (8128, '2048', 'OSTECARE LOCAL TAB', 1, '9.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8129, '2049', 'SILVERDERMA', 1, '29.0000', '32.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8130, '2050', 'PROXIMEXA SUSP', 1, '8.4500', '47.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8132, '2052', 'DUROL 300ML', 1, '11.8000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8133, '2053', 'MALAR 2 FORTE', 1, '10.8000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (8134, '2054', 'AMCOF ADULT', 1, '7.4000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8135, '2055', 'AMCOF BABY', 1, '8.2000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (8136, '2056', 'AMCOF JUNIOR', 1, '5.7700', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (8137, '2057', 'GYNO MYCOLEX PESS', 1, '26.9000', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (8138, '2058', 'ANUSOL OINT', 1, '29.5000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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, 'anusol-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 (8139, '2059', 'FATWIKEKE', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8140, '2060', 'DERMACOT CREM', 1, '10.8000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (8141, '2061', 'COTTON 100', 1, '3.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8143, '2063', 'CAMPHOR', 1, '5.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8144, '2064', 'ZINNAT SUSP 100MLS', 1, '3.8000', '110.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8145, '2065', 'CALAMINE OINT', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8146, '2066', 'HAEMOGLOBIN ARTN', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '13.0000', 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 (8147, '2067', 'MINAMINO', 1, '32.0000', '42.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8149, '2069', 'DITHRANOL', 1, '9.5000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (8150, '2070', 'WHITEFEILD', 1, '27.9400', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8151, '2071', 'AUGMENTIN 1G', 1, '1.9300', '51.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8152, '2072', 'AUGMENTIN 228', 1, '0.1400', '39.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8153, '2073', 'ALKA SELTZER', 1, '0.3200', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-25.0000', 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 (8154, '2074', 'PIRITON LOCAL ( c pheniramine)', 1, '12.3000', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-93.0000', 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, 'piriton-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 (8155, '2075', 'SALBUTAMOL TAB', 1, '65.0000', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-76.0000', 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 (8156, '2076', '', 1, '25.3100', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8157, '2077', 'BACTROBAN', 1, '17.8000', '85.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8158, '2078', 'SUPIROCIN', 1, '24.5000', '32.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8159, '2079', 'BUSYLIFESTYLE', 1, '19.2000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8160, '2080', 'GLUCOSAMINE', 1, '3.3900', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8161, '2081', 'PROWOMAN', 1, '21.9900', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8162, '2082', '', 1, '16.3900', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8163, '2083', 'OTRIVIN ADULT', 1, '28.6000', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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, 'otrivin-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 (8164, '2084', 'OTRIVIN CHILD', 1, '26.6200', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8165, '2085', 'CARBOZAP JUNIOR', 1, '4.7000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-22.0000', 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 (8166, '2086', 'PROCOLD', 1, '4.6000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-167.0000', 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 (8167, '2087', 'ENACIN 300', 1, '9.3600', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8168, '2088', 'ZINCOFER CAPS', 1, '17.9000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (8169, '2089', 'HILADY', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8170, '2090', 'LEOPARD OINT', 1, '5.7500', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8171, '2091', 'ODYMIN', 1, '7.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (8172, '2092', 'GEBEDOL FORTE', 1, '2.8700', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-38.0000', 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 (8173, '2093', 'MEDSOMOX SUSP', 1, '4.8900', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8174, '2094', 'CRESTOR 5', 1, '1.9400', '53.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8175, '2095', 'SUNLIGHT S/S', 1, '12.5000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8176, '2096', 'MEDISOFT', 1, '5.4000', '2.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8177, '2097', 'LUCOZADE B/S', 1, '20.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8178, '2098', 'MALIN ADULT', 1, '6.1500', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8179, '2099', 'SORE DRESING', 1, '0.2200', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8180, '2100', 'SELECT STRIPS', 1, '3.1000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 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 (8181, '2101', 'FOLIC ACID LOCAL', 1, '0.2000', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '77.0000', 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 (8182, '2102', 'KAMAGRA JELLY', 1, '2.4000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8183, '2103', 'SHALCIP TZ', 1, '6.6000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8184, '2104', 'ENACEF 500', 1, '3.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-231.0000', 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 (8185, '2105', 'PREGNCARE BRESTF', 1, '0.9100', '110.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8186, '2106', 'AMPICILIN CAPS', 1, '1.5600', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-69.0000', 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 (8187, '2107', 'CLOXACILLIN CAPS', 1, '1.6100', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-97.0000', 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 (8189, '2109', 'METFOMIN DENK 1000', 1, '20.8200', '27.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8190, '2110', 'LEXPORIN POWDER', 1, '11.0500', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8191, '2111', 'PROCOMIL SPRAY', 1, '5.0000', '55.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8192, '2112', 'PROCMIL TAB', 1, '5.0000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8193, '2113', 'STOPKOF CHILD', 1, '6.9800', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8194, '2114', 'MALIN JUNIOR', 1, '7.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8196, '2116', 'VISIONACE', 1, '54.3900', '72.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8197, '2117', 'WELLMAN CONCEPTION', 1, '7.2700', '81.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8200, '2120', 'ROUGH RIDER', 1, '10.8000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (8201, '2121', 'GV FLUC SUSP', 1, '0.3200', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8202, '2122', 'GYPRONE SRP', 1, '9.9000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-17.0000', 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 (8203, '2123', 'INDOCID', 1, '0.5000', '0.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-91.0000', 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 (8204, '2124', 'OSONS COD LIVER', 1, '1.5000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-29.0000', 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 (8205, '2125', 'SUPER APETI SRP', 1, '2.9500', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-21.0000', 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 (8206, '2126', 'APDYL -H COUGH S\'S', 1, '0.2000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8207, '2127', 'PAINGAY', 1, '3.2000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-63.0000', 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 (8208, '2128', 'DYNEWELL TAB', 1, '0.4000', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-343.0000', 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 (8209, '2129', 'PLASTER STRIP', 1, '59.6000', '0.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8210, '2130', 'COLESTOP 20', 1, '8.0000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8211, '2131', 'LIPITOR 40', 1, '0.1500', '78.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8212, '2132', 'OSTEOCARE SRP LOCAL', 1, '13.4000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8213, '2133', 'PLASTER STRIP', 1, '23.7000', '0.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8214, '2134', 'MMT', 1, '16.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8215, '2135', 'FFLUCLOX 500', 1, '13.9000', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8216, '2136', 'MAXITROL', 1, '20.7000', '27.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8217, '2137', 'CUSIMOLOL', 1, '13.8100', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8218, '2138', 'BRO-ZEDEX', 1, '8.6200', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8219, '2139', 'P-ALAXIN TAB', 1, '12.5000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8220, '2140', 'FUROSEMIDE CRESCENT 20', 1, '32.7000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8221, '2141', 'CARVEDILOL 6.25 EXETER', 1, '12.6000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8222, '2142', 'BIO OIL', 1, '18.0600', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8223, '2143', 'METRO -Z', 1, '1.5000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8224, '2144', 'PARLODEL', 1, '1.5000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8225, '2145', 'BELLS OLIVE', 1, '3.0000', '5.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 (8226, '2146', 'ESSENTIAL M/S', 1, '14.0000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8227, '2147', 'LIPITON YELLOW', 1, '0.4000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8228, '2148', 'RAID', 1, '18.0000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8229, '2149', 'FLORA TISSUE', 1, '8.0000', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8231, '2151', 'ORAL B PASTE SHORT/FORIGN', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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, 'oral-b-paste-shortforign', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8232, '2152', 'SULFER 18 POWD', 1, '4.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8233, '2153', 'SIVODERM POWD', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8234, '2154', 'JRA M/S', 1, '13.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8235, '2155', 'JRA S/S', 1, '7.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8236, '2156', 'EVERSHEEN CREAM', 1, '9.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8237, '2157', 'QUEEN ELIZ CREAM M/S', 1, '8.5000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8238, '2158', 'QUEEN CREAM S/S', 1, '7.0000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8239, '2159', 'QUEEN LOTIN M/S', 1, '5.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8240, '2160', 'QUEEN LOTION M/S', 1, '3.5000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8241, '2161', 'QUEEN LOTION S/S', 1, '0.7600', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8243, '2163', 'ZUBES TAB', 1, '1.1400', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8244, '2164', 'MENTOS TAB', 1, '37.4100', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (8245, '2165', 'CHEWETTE', 1, '2.9600', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8246, '2166', 'INFACOL 55ML', 1, '49.4000', '65.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8247, '2167', 'TYLENOL EXTRA', 1, '2.9600', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-53.0000', 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 (8248, '2168', 'JS SANITIZER', 1, '7.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8249, '2169', 'SANITIZER BS', 1, '5.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8250, '2170', 'SANITIZER', 1, '5.0000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8251, '2171', 'SIVODERM SANITIZER', 1, '20.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8252, '2172', 'KLEANZ SS', 1, '27.9300', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8253, '2173', 'CAREX', 1, '10.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8254, '2174', 'CYPRODINE SRP', 1, '39.0000', '51.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8255, '2175', 'SHOE POLISH', 1, '30.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8256, '2176', 'RAZOR MEN', 1, '20.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8257, '2177', 'RAZOR M&W', 1, '12.0000', '39.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8258, '2178', 'RAZ MW S/S', 1, '15.0000', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8259, '2179', 'FACIAL ORGANIC COTTON', 1, '35.0000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8260, '2180', 'ZIGZAG COTTON', 1, '12.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8261, '2181', 'STOPCOUGH COD', 1, '23.0000', '45.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8262, '2182', 'FACIAL SQUEEZE', 1, '17.0000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8263, '2183', 'CLAVU-DOR 1000', 1, '5.0000', '31.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8264, '2184', 'CLAVU-DOR 625', 1, '25.0700', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8265, '2185', 'MOSQUITOE BANGLES', 1, '10.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8266, '2186', 'GUCIFER 750', 1, '10.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8267, '2187', 'ZOATERM DS', 1, '20.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8268, '2188', 'ZOATERM FORTE', 1, '12.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8269, '2189', 'DUO COTECSON', 1, '38.1200', '50.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8270, '2190', 'COTTON BUD', 1, '0.5000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8271, '2191', 'INTERLECTOL', 1, '5.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8272, '2192', 'FACIAL MASK', 1, '4.3000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8273, '2193', 'LOSACAR 100', 1, '30.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8274, '2194', 'DINAC 75', 1, '8.4300', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (8275, '2195', 'CLARITROMYCIN  500MG UK', 1, '30.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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, 'claritromycin-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 (8276, '2196', 'AZILEX 250', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8277, '2197', 'ATENOLOL 50', 1, '8.5000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8278, '2198', 'ATENOLOL 100', 1, '7.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8279, '2199', 'POWER HOUSE', 1, '9.5000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (8280, '2200', 'JS S/S', 1, '10.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8281, '2201', 'JS B/S', 1, '10.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8282, '2202', 'FREE STEP', 1, '12.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8283, '2203', 'LOVILEA', 1, '6.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8284, '2204', 'JS B/S', 1, '20.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8285, '2205', 'KLEANZ 100ML', 1, '5.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (8286, '2206', 'CAREX S/S', 1, '1.2000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8287, '2207', 'DAS VIT C', 1, '5.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8288, '2208', 'GLOVES', 1, '1.1600', '1.8000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-90.0000', 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 (8289, '2209', 'HAND CREAM', 1, '4.2000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8290, '2210', 'SANITIZER BB/S', 1, '2.5000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8291, '2211', 'COTTON 100G', 1, '11.9000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8292, '2212', 'BELLS OLIVE B/S', 1, '18.5800', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8293, '2213', 'DEXATROL OINT', 1, '24.7500', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8294, '2214', 'MENOPACE', 1, '1.5300', '24.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8296, '2216', 'OMEPRAZOLE HYCID', 1, '1.7000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (8297, '2217', 'SALICYLIC ACID', 1, '9.3100', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8298, '2218', 'ITCHTAMOL', 1, '7.8400', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8299, '2219', 'NORVASC 10', 1, '133.1000', '176.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 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, 'norvasc-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 (8300, '2220', 'CANDIDERM CREAM', 1, '7.4300', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-34.0000', 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 (8301, '2221', 'ADUTWUMUA CAPS', 1, '11.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8302, '2222', 'LIVERPLEX -B ADULT', 1, '5.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8303, '2223', 'FUROSEMIDE 40 TEVA', 1, '8.0000', '10.5000', '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 (8304, '2224', 'POLYFER 200ML', 1, '8.8000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '17.0000', 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 (8305, '2225', 'CABOZAP ADULT', 1, '5.1500', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8306, '2226', 'CANDID V-3', 1, '1.6000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8307, '2227', 'ABC VIT C SRP', 1, '14.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8308, '2228', 'ASCORBIN SRP', 1, '2.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-52.0000', 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 (8309, '2229', 'PREMECO CAPS', 1, '14.5000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8310, '2230', 'STRONG BCO', 1, '11.2500', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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, 'strong-bco', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8311, '2231', 'SILVERBIRD', 1, '12.5900', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8312, '2232', 'HOT WAT BOT COVERED', 1, '22.9100', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8313, '2233', 'HOT WAT BOT', 1, '14.9900', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8314, '2234', 'OMEGA H3 CAPS PER STRIPE', 1, '7.5900', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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, 'omega-h3-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 (8315, '2235', 'DREZ SOLN 100ML', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (8316, '2236', 'AMITRIPTLINE 25MG', 1, '6.8000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8317, '2237', 'SOLUBLE VIT C', 1, '15.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', 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 (8318, '2238', 'YAZZ BRUSH', 1, '2.0000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8319, '2239', 'DETTOL SOAP', 1, '5.5000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8320, '2240', 'CAMEL SOAP', 1, '6.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8321, '2241', 'SHOWER ROLL ON', 1, '4.0200', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8322, '2242', 'SURE ROLL ON', 1, '7.0000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8323, '2243', 'AMLODIPINE 10 TEVA', 1, '2.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8324, '2244', 'COLGATE BRUSH DOUBLE', 1, '6.5000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8325, '2245', 'COLGATE BRUSH', 1, '3.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8326, '2246', 'PEPSODENT 123', 1, '8.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8327, '2247', 'AMOXIL 500', 1, '25.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8328, '2248', 'GOFEX', 1, '10.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (8329, '2249', 'OLFEN-100 CAPS', 1, '27.6000', '32.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8330, '2250', 'TENTEX ROYAL', 1, '43.0000', '42.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8331, '2251', 'CONFIDO', 1, '30.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8332, '2252', 'CORSODYL B/B 500ML', 1, '31.2000', '56.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8333, '2253', 'GUDAPET CAPS', 1, '6.6000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (8334, '2254', 'LARIAM', 1, '3.4000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8335, '2255', 'RUBBING ALC S/S', 1, '6.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8336, '2256', 'AMLODIPINE 5MG TEVA', 1, '2.9000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '26.0000', 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 (8337, '2257', 'PANADOL ADVANCE', 1, '17.8000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8338, '2258', 'DF118', 1, '1.8300', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8339, '2259', 'SUDOCREAM 60G', 1, '34.8000', '46.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (8340, '2260', 'ROBAXIN-750', 1, '2.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (8341, '2261', 'APTIZOOM', 1, '32.6700', '43.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8342, '2262', 'DARKTACORT CREAM', 1, '8.1100', '32.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8343, '2263', 'CLARYTIN SRP', 1, '5.5100', '56.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8344, '2264', 'LOSAR DENK 50', 1, '18.3800', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8345, '2265', 'NEXCOFER CAPS', 1, '7.1800', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8346, '2266', 'WELLKID TAB', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8347, '2267', 'NIVEA FAIRNESS', 1, '15.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8348, '2268', 'NIVEA', 1, '8.0000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8349, '2269', 'NIVEA CLEANSER', 1, '17.0000', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8350, '2270', 'NIVEA ROLL ON', 1, '12.0000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-17.0000', 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 (8351, '2271', 'AFTER SHAVE', 1, '8.4000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8352, '2272', 'NIVEA SPRAY', 1, '12.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 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 (8353, '2273', 'NIVEA INVISIBLE ROLL ON', 1, '20.5000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8354, '2274', 'GLUCORANGE POWDER LETAP', 1, '4.7000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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, 'glucorange', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8355, '2275', 'SELEVITE', 1, '22.7700', '30.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8356, '2276', 'NIVEA SHOWER GEL B/S', 1, '11.5000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8357, '2277', 'NIVEA SHOWER S/S', 1, '13.2700', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8358, '2278', 'IVY,S SANITIZER', 1, '3.1500', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8359, '2279', 'IMBOOST', 1, '15.4000', '20.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8360, '2280', 'LEENA CAPS', 1, '4.0200', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8361, '2281', 'LEENA SRP', 1, '7.2300', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8362, '2282', 'GLIBENIL TAB', 1, '0.7900', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-89.0000', 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 (8363, '2283', 'BUSCOLEX', 1, '38.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-26.0000', 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 (8364, '2284', 'NEXIUM 40 28S', 1, '25.0000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8365, '2285', 'DETOL 750MLS', 1, '9.2000', '47.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8367, '2287', 'DETOL 165ML', 1, '9.5000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8369, '2289', 'SAVLON 125', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8370, '2290', 'SAVLON 750ML', 1, '8.5000', '42.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8371, '2291', 'PREETY LADY PAD', 1, '5.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8372, '2292', 'TENDRINA LOTN B/S', 1, '11.0000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8373, '2293', 'TENDRINA LTN S/S', 1, '4.5000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8374, '2294', 'TENDRINA CREAM', 1, '12.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8375, '2295', 'TENDRINA CREAMS/S', 1, '12.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8376, '2296', 'QUEEN ELIZ BBS', 1, '9.0000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8377, '2297', 'EVERSHEEN LTIN BS', 1, '5.5000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8378, '2298', 'EVERSHEEN LTN MS', 1, '0.7000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8379, '2299', 'EVERSHEEN LTN SS', 1, '13.9000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8380, '2300', 'DAPREX CAPS', 1, '8.0000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8381, '2301', 'RUBBIN ALC 500ML', 1, '12.7400', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8382, '2302', 'MAGNESIUM TAB', 1, '1.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8383, '2303', 'EFFV MULTIVITAMIN', 1, '8.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8384, '2304', 'P TEST KIT', 1, '2.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-37.0000', 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 (8385, '2305', 'AIDKIT', 1, '26.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8386, '2306', 'G-ABZOLE', 1, '16.0000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8387, '2307', 'HONEY GIFT OF NATURE 500ML ', 1, '35.0000', '45.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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, 'honey-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 (8388, '2308', 'HONEY 250', 1, '10.0000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8389, '2309', 'DENTAL FLOSS', 1, '5.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8390, '2310', 'GINGER POWDER', 1, '8.8700', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8391, '2311', 'MOODS COND', 1, '0.6000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8392, '2312', 'PRAZIQUANTEL', 1, '8.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8393, '2313', 'FACE MASK', 1, '0.7000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-33.0000', 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 (8394, '2314', 'DUROL 300ML', 1, '22.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8395, '2315', 'DIAZEPAM 10MG', 1, '0.6200', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (8396, '2316', 'NIVEA FAIRNESS', 1, '4.3000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8398, '2318', 'LUCAZADE CAN', 1, '35.1800', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8399, '2319', 'CARDIOACE PLUS', 1, '7.9800', '58.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8400, '2320', 'HERBAL SLIMMING TEA', 1, '43.9000', '46.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8401, '2321', 'CITY TONIC', 1, '10.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8402, '2322', 'VIT B1', 1, '43.0500', '56.8300', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8403, '2323', 'VIT B6', 1, '74.0000', '41.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8404, '2324', 'SAMOCID', 1, '36.1200', '48.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8405, '2325', 'NEO MEDROL', 1, '1.0000', '96.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8406, '2326', 'LIQUID PARRAFIN', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (8407, '2327', 'CYFEN TAB', 1, '1.0700', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '22.0000', 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 (8408, '2328', 'CYFEN SRP', 1, '10.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8409, '2329', 'C-PHENAMIN SRP', 1, '7.9000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8410, '2330', 'OMEGAH H3 LIQUID', 1, '42.4300', '57.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8411, '2331', 'LUEX ADULT CHESTY', 1, '8.8100', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8412, '2332', 'VISIONACE PLUS', 1, '15.0000', '55.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8413, '2333', 'COAFS', 1, '85.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '17.0000', 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, 'coafs', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8414, '2334', 'ALPHA VIT C', 1, '4.5000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8415, '2335', 'CHOCOLATE M/S', 1, '4.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '92.0000', 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 (8416, '2336', 'ENTRAMOL PLUS', 1, '43.8600', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8417, '2337', 'COMBACT-N', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8418, '2338', 'LACTULOSE 500ML', 1, '35.1900', '46.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8419, '2339', 'JAGUAR CREAM', 1, '12.0000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8420, '2340', 'BIOVID FORTE', 1, '10.0000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '11.0000', 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 (8421, '2341', 'DR CHRIS OMEGA', 1, '7.1000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8422, '2342', 'TCP', 1, '34.8900', '46.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8423, '2343', 'VALUPAC BCO', 1, '6.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8424, '2344', 'HAIRFOLLIC', 1, '2.0000', '54.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8425, '2345', 'COLGATE CHARC', 1, '12.5000', '16.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8426, '2346', 'ASCOBIN TAB', 1, '19.8000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8427, '2347', 'PROSTAT 60', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8428, '2348', 'PROSLUV CAPS', 1, '19.8000', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8429, '2349', 'GASTRONE SUSP', 1, '11.1800', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8430, '2350', 'ALKA SRP', 1, '35.0000', '46.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8431, '2351', 'ALLOPURINOL 300', 1, '29.3500', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8432, '2352', 'NYSTATIN ORAL', 1, '39.7000', '52.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8433, '2353', 'LIV 52 TAB', 1, '33.0000', '44.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8434, '2354', 'VITAFOL', 1, '7.6300', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8435, '2355', 'CARVEDILOL 12.5 EXETER', 1, '5.7000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8436, '2356', 'OLIGOCARE', 1, '29.7000', '39.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8437, '2357', 'SWEET PAMPERS', 1, '10.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8438, '2358', 'ROMA SPRAY', 1, '13.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8439, '2359', 'OUTSPRAY', 1, '14.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8440, '2360', '~COLGATE BRUSH', 1, '8.6000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8441, '2361', 'TISSUE B\\S', 1, '14.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8442, '2362', 'SMILE BABY', 1, '2.5800', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8443, '2363', 'HYDROCT CRAEM L\\S', 1, '36.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8444, '2364', 'GEBEDOL PLUS', 1, '2.4400', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '150.0000', 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 (8445, '2365', 'ROOTER LIFE', 1, '35.9000', '47.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8446, '2366', 'FEROVITA SRP', 1, '6.3000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8447, '2367', 'SICKAZINK', 1, '11.7200', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8448, '2368', 'ABYVITA SRP', 1, '9.9000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8449, '2369', 'FEROLLEX SRP', 1, '18.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8450, '2370', 'OROFER', 1, '8.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8451, '2371', 'KLIRE ANTACID', 1, '11.6000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8452, '2372', 'HEPTOLIFE', 1, '11.5000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8453, '2373', 'MV PRO', 1, '5.0800', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8454, '2374', 'SHALATERM TAB', 1, '4.1500', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (8455, '2375', 'SHALATERM SUSP', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8456, '2376', 'CARTEF DS', 1, '9.2000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (8457, '2377', 'CARTEF SUSP', 1, '6.2000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-21.0000', 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 (8458, '2378', 'INTAVITA', 1, '0.9100', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8459, '2379', 'ESKADOL', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (8460, '2380', 'RONADOL', 1, '8.0000', '1.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8461, '2381', 'DUROMINE', 1, '1.0400', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (8462, '2382', 'GARLIC PEARLS OSONS', 1, '7.1000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (8463, '2383', 'DICLONOVA PLUS', 1, '18.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-29.0000', 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 (8464, '2384', 'BELLS HYDROGEN', 1, '2.9500', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8465, '2385', 'MYCOLEX POWDER', 1, '60.0000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8466, '2386', 'CELGIVITY', 1, '2.8900', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-383.0000', 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 (8467, '2387', 'FEROGLOBIN PLUS', 1, '65.8000', '87.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8468, '2388', 'VIREST CREAM', 1, '10.0000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8469, '2389', 'LIPSORE CREAM', 1, '15.0000', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8470, '2390', 'WELLMAN 70', 1, '77.0000', '102.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8471, '2391', 'MAGIC SHAVIN POWDER', 1, '21.0000', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8472, '2392', 'MAGIC SHAVING CREAM', 1, '6.5000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8473, '2393', 'NILOL TAB', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8474, '2394', 'VASELINE CREAM', 1, '0.3600', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8475, '2395', 'GIVING SET', 1, '8.6000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8476, '2396', 'FASTMELT', 1, '23.0000', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-129.0000', 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 (8477, '2397', 'AMOXIL SUSP UKK', 1, '12.2000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8478, '2398', 'JRA B\'S', 1, '23.0000', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8479, '2399', 'NIVEA SPRAY INVISIBLE', 1, '33.0000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8480, '2400', 'ZIPFERON SRP', 1, '22.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8481, '2401', 'PIRITON ORG SRP', 1, '40.0000', '53.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8482, '2402', 'BEST VIT C 1000', 1, '22.3000', '29.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '59.0000', 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 (8483, '2403', 'WOODWOARDS', 1, '8.9800', '41.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8484, '2404', 'FERTILO FORT', 1, '19.5000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8485, '2405', 'CEFIXIME TAB', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-26.0000', 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 (8486, '2406', 'VIT E 400 VALUPAK', 1, '9.8500', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8487, '2407', 'FOLIC 30S VAL', 1, '14.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8488, '2408', 'FOLIC ACID 90S VALPK', 1, '35.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8489, '2409', 'EVENING PRIMROSE', 1, '21.5000', '28.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8490, '2410', 'NUROFEN SRP', 1, '27.3000', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8491, '2411', 'SUDAFED TAB', 1, '66.3000', '39.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8492, '2412', 'BUMPER CD', 1, '35.4000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8493, '2413', 'ORELOX SUSP', 1, '6.0000', '87.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8494, '2414', 'OPTREX EYE DROP', 1, '21.7900', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8495, '2415', 'RAMIPRIL CAPS', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8496, '2416', 'TINY VITE DROP', 1, '2.4000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8497, '2417', 'ZENTEL SUSP', 1, '13.8100', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8498, '2418', 'DIPROSIN', 1, '3.1500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8499, '2419', 'BECHAMS ALL IN ONE', 1, '55.1800', '37.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8500, '2420', 'JARIFAN CAPS', 1, '22.4500', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8501, '2421', 'WELLWOMAN 50 PLUS', 1, '65.0000', '87.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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, 'wellwoman-50-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 (8503, '2423', 'SPANISH FLY', 1, '1.0700', '65.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8504, '2424', 'LISINOPRIL 20MG TEVA', 1, '8.1000', '12.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-10.0000', 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, 'lisinopril-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 (8505, '2425', 'MEBENDA', 1, '66.3000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8506, '2426', 'BUMPER CD', 1, '35.4000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8507, '2427', 'ORELOX SUSP', 1, '22.0000', '87.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8508, '2428', 'OPTREX EYE DROP', 1, '35.0000', '47.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8509, '2429', 'PIKOVIT SRP', 1, '7.5000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8510, '2430', 'SPANISH FLY', 1, '1.9500', '47.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8511, '2431', 'LOSATARN TEVA 50', 1, '26.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8512, '2432', 'AVOMINE TAB', 1, '1.8000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8513, '2433', 'DIGOXIN 125 ALMUS', 1, '1.3500', '34.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8514, '2434', 'MEDICAL ICE COOL', 1, '4.8000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8516, '2436', 'ALDOMET 250', 1, '14.5000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8517, '2437', 'AZOMAX SUSP', 1, '27.5000', '36.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8519, '2439', 'DAFLON 500', 1, '3.5700', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-62.0000', 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 (8520, '2440', 'SALBUTAMOL CFC INH', 1, '18.9800', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8521, '2441', 'AMLO-DENK 5MG', 1, '56.7000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8522, '2442', 'AMLO DENK 10MG', 1, '4.0700', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8523, '2443', 'DAYNURSE LIQUID', 1, '48.0000', '75.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8524, '2444', 'PENFLOX SUSP', 1, '19.8000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8525, '2445', 'JOINTCARE S/SEAS', 1, '18.9500', '63.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8526, '2446', 'HEALTHY WOMAN CAPS', 1, '52.9900', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8527, '2447', 'HEALTHYLINK HAIR,NAILS', 1, '5.5000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8528, '2448', 'S SEAS COD LIV 60S', 1, '16.4000', '58.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8529, '2449', 'LORATIDINE 10 TEVA', 1, '0.2600', '0.4000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '59.0000', 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 (8530, '2450', 'ADOM P-AWAY CAPS', 1, '19.0000', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8531, '2451', 'MASTER TEA', 1, '18.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8532, '2452', 'NONI JUICE', 1, '22.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8533, '2453', 'PILIEF OINT', 1, '9.4000', '29.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8534, '2454', 'PILIEF TAB', 1, '38.5000', '51.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8535, '2455', 'SABROSSO 100 ML', 1, '32.5000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8536, '2456', 'SABROSO 250ML', 1, '12.5000', '24.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8537, '2457', 'SABROSO 500ML', 1, '0.5000', '43.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8538, '2458', 'X-DRIVE CAPS', 1, '2.7600', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8539, '2459', 'ASMADRIN', 1, '1.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '69.0000', 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 (8540, '2460', 'H-AID VIT E 1000IU', 1, '55.7400', '74.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8541, '2461', 'H-AID VIT A 5000IU', 1, '2.8000', '42.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8542, '2462', 'H-AID VIT B12', 1, '13.3000', '47.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8543, '2463', 'BLUE AID COTTON 50G', 1, '2.5000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8544, '2464', 'BLUE AID VASLINE GAUZE', 1, '2.8300', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8545, '2465', 'EPIDERM LOTION', 1, '3.2000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8546, '2466', 'BETASOL LOTION', 1, '6.6000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8547, '2467', 'ODDYMIN CAPS', 1, '3.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8548, '2468', 'MARK -2 INH', 1, '6.7000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-44.0000', 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 (8549, '2469', 'SEBAMED SOAP 150G', 1, '36.0000', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8550, '2470', 'SEBAMED SOAP 100G', 1, '15.3000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8551, '2471', 'SEBAMED BABY LOTION', 1, '30.0000', '48.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8552, '2472', 'SEBAMED AA Q10 LOTION', 1, '45.0000', '48.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8553, '2473', 'SEBAMED B MILK', 1, '36.0000', '39.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8554, '2474', 'SEBAMED SU C 50+', 1, '4.0000', '59.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8555, '2475', 'SEBAMED UR LO 10', 1, '10.0000', '48.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8556, '2476', 'MADAR LIQD', 1, '6.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8557, '2477', 'SOFTCARE DIAPER', 1, '15.5800', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8558, '2478', 'CARBIROID', 1, '4.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8559, '2479', 'ROCEPHIN INJ 1G', 1, '2.7500', '71.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8560, '2480', 'AFROSTAR', 1, '5.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8561, '2481', 'MISS PLUM', 1, '9.5000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8562, '2482', 'ACNE CLEAR', 1, '12.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8563, '2483', 'ANACONDA', 1, '9.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8564, '2484', 'PERFECT WHITEGEL', 1, '10.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8565, '2485', 'HAPPY FAMILY GEL', 1, '4.5000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8566, '2486', 'SURE SPRAY', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '22.0000', 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, 'sure-spay', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8567, '2487', 'STYLING GEL M/S', 1, '2.7500', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8568, '2488', 'STYLING GEL S/S', 1, '16.0000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8569, '2489', 'VIP SPRAY', 1, '4.6000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8570, '2490', 'JRA LOTION', 1, '4.6000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8571, '2491', 'MARQUISE BLUE S/S', 1, '4.6000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8572, '2492', 'INCIDENCE SPRAY S/S', 1, '4.6000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8573, '2493', 'DAGMAR SPRAY S/S', 1, '19.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8574, '2494', 'CHAIRMAN S/S', 1, '12.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8575, '2495', 'CLINIC CLEAR LOTION', 1, '9.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8576, '2496', 'JRA SHOWER GEL', 1, '13.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8577, '2497', 'CHAMBERS 2000', 1, '4.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8578, '2498', 'COLOUR ME', 1, '3.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8579, '2499', 'BIOSKIN', 1, '5.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8580, '2500', 'PARADISE POWDER', 1, '4.5000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8581, '2501', 'SIVODERM CREAM', 1, '4.5000', '6.5000', '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 (8582, '2502', 'PALMAS LOTION', 1, '5.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8583, '2503', 'SNOWFIRE', 1, '2.5000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8584, '2504', 'ACTIVATOR S/S', 1, '6.5000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8585, '2505', 'KURL OUT', 1, '6.3000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8586, '2506', 'AFRICAN CLASS', 1, '13.5000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8587, '2507', 'KLEEN CLEANSER', 1, '5.5000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8588, '2508', 'SPORTING CREAM', 1, '4.8000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8589, '2509', 'TOP COUNTRY L/S', 1, '3.5000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8590, '2510', 'TOP COUNT M/S', 1, '6.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8591, '2511', 'TOP COUNT S/S', 1, '1.5000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8592, '2512', 'BB CLEAR', 1, '1.5500', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8593, '2513', 'CHOCOLT VERY S/S', 1, '3.8800', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8594, '2514', 'CHOCOLATE UK', 1, '2.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-24.0000', 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 (8595, '2515', 'PAINGAY GEL', 1, '4.9000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8596, '2516', 'POSTINOR LOCAL', 1, '2.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-70.0000', 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 (8597, '2517', 'WELLWOMAN MAX', 1, '60.1800', '79.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8598, '2518', 'EASYLIFE', 1, '4.8000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8599, '2519', 'TEETHING MIX', 1, '8.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8600, '2520', 'CARBOZAB', 1, '4.9900', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8601, '2521', 'PAD PANTY', 1, '13.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8602, '2522', 'BREAST PAD', 1, '27.3000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8603, '2523', 'COTTON 500G', 1, '7.0300', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8604, '2524', 'KY 50G', 1, '13.0000', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8605, '2525', 'ACILOVIR 200MG TAB', 1, '0.8200', '9.3000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8606, '2526', 'VENA S/S PK', 1, '0.8200', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8607, '2527', 'VERNA M/S', 1, '1.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '11.0000', 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 (8609, '2529', 'VOLTIC M/S PK', 1, '12.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8610, '2530', 'BELAQUA M/S PK', 1, '8.4300', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8611, '2531', 'BELAQUA S/S PK', 1, '3.0000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8612, '2532', 'CANDID M PAINT', 1, '8.8000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8613, '2533', 'THERMOSOL BRUSH', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8614, '2534', 'ZINVITE CAPS', 1, '20.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8615, '2535', 'MOVATE', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8616, '2536', 'LISTERINE B/S', 1, '34.6000', '46.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8617, '2537', 'COTTON BUD B/S', 1, '9.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8618, '2538', 'COTTON BUD S/S', 1, '18.7500', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8619, '2539', 'TAABEA CAPS', 1, '11.5000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8620, '2540', 'HEALTHY MAN', 1, '1.3300', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8621, '2541', 'KINGDOM GARLI CAPS', 1, '8.0000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8622, '2542', 'DEXONE', 1, '2.1000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '13.0000', 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 (8623, '2543', 'FRELET 75', 1, '19.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8624, '2544', 'ALOPURINOL 100', 1, '7.6400', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8625, '2545', 'HYPONIC', 1, '7.1000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8626, '2546', 'PONSTAN', 1, '7.5000', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (8627, '2547', 'GLUCONAF D', 1, '6.7500', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8628, '2548', 'ALLOPURINOL 100', 1, '9.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8629, '2549', 'MENTOS COUGH', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8630, '2550', 'ZINC OXIDE PLAST', 1, '4.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8631, '2551', 'KIDS COLGATE PASTE', 1, '5.0000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8632, '2552', 'PERFECT CLEAR', 1, '5.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8633, '2553', 'CUSSONS POWD B/S', 1, '15.0000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8634, '2554', 'CUSSONS POWD S/S', 1, '14.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8635, '2555', 'JOHNSONS LOTION', 1, '1.7000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8636, '2556', 'JOHNSONS OIL', 1, '11.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8637, '2557', 'ASHTON TEETN POWD', 1, '40.3000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-52.0000', 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 (8638, '2558', 'HISTAZINE TAB', 1, '0.5000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '59.0000', 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 (8639, '2559', 'PROGENOVA', 1, '7.5000', '53.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8640, '2560', 'ENAMYCIN TAB', 1, '35.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8641, '2561', 'ADUTWUMWAA MALA MIX', 1, '8.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8642, '2562', 'VITAMIN B12', 1, '18.0000', '47.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8643, '2563', 'CYCLOGEST 400', 1, '11.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-35.0000', 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, 'cyclogest-400', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8644, '2564', 'DAKTARIN ORAL GEL', 1, '3.4000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8645, '2565', 'COTTON 25G', 1, '2.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8647, '2567', 'NAIL CUTTER', 1, '17.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8648, '2568', 'TINATTET EYE', 1, '14.0000', '46.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 (8649, '2569', 'TOMAC MIX', 1, '27.5000', '36.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8650, '2570', 'VENE CAPS', 1, '3.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8651, '2571', 'PROVERA', 1, '8.5000', '39.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8652, '2572', 'JOY SOAP', 1, '2.0600', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8653, '2573', 'LIPSORE', 1, '14.8000', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8654, '2574', 'RONVIT FORTE', 1, '5.8000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (8655, '2575', 'TRUMAN CAPS', 1, '6.3900', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8656, '2576', 'DRAGON LOZ', 1, '12.0000', '7.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8657, '2577', 'KIDIVITE 200ML', 1, '11.8000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (8658, '2578', 'FLUCOR DAY', 1, '17.6000', '23.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8659, '2579', 'KIDIMIN', 1, '8.7000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8660, '2580', 'NCP 100ML', 1, '20.2400', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8661, '2581', 'SKYBRU', 1, '5.6000', '8.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 (8662, '2582', 'WELLTEEN HIM PER STRIP', 1, '17.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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, 'wellteen-him-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8663, '2583', 'COTTON BUD BBS', 1, '9.5000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8664, '2584', 'LUCKY V CARE', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8665, '2585', 'HAPPIMAN CAPS', 1, '6.2700', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8666, '2586', 'BANANA GUM', 1, '0.4600', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-35.0000', 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 (8667, '2587', 'POFAKOF ADULT', 1, '6.2300', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8668, '2588', 'WORMZAP TAB', 1, '2.2000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (8669, '2589', 'ATWOOD BITTERS', 1, '35.8000', '47.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8670, '2590', 'ANGEL SANITIZER', 1, '1.1800', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8671, '2591', 'FUROSEMIDE 40 ALMUS', 1, '16.0000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8672, '2592', 'PINEK-20', 1, '1.2000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8673, '2593', 'FLAREX', 1, '20.0000', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8674, '2594', 'POFAKOF JUNIOR', 1, '28.8900', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8675, '2595', 'ADVIL PM', 1, '1.1700', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8676, '2596', 'MINADEX', 1, '28.8900', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8677, '2597', 'METAGYL TAB 400MG', 1, '2.0400', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-80.0000', 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 (8678, '2598', 'MENOPACE ORG', 1, '10.0000', '45.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8679, '2599', 'HAEMOGLOBIN TEST', 1, '28.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-25.0000', 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 (8680, '2600', 'TYPHOID TEST', 1, '11.0000', '16.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8681, '2601', 'CHOLESTEROL TEST', 1, '10.0000', '37.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8682, '2602', 'PREGNANCY TEST', 1, '30.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8683, '2603', 'PROSTATE TEST', 1, '5.7000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8684, '2604', 'FACE SHIELD', 1, '7.9900', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8685, '2605', 'HEPATITIS B TEST', 1, '32.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8686, '2606', 'LG GLIZONE 30', 1, '7.9900', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8687, '2607', 'AVACARE VIT C', 1, '1.7000', '37.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8688, '2608', 'WEIGHT', 1, '10.6900', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8689, '2609', 'LYDIA DAILY PILLS', 1, '2.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '41.0000', 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 (8690, '2610', 'SENAFEN', 1, '10.8000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8691, '2611', 'IMMUNE VIT C 1000', 1, '2.9000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8692, '2612', 'CIPROBAY', 1, '2.5000', '122.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8693, '2613', 'ADVIL COMBO', 1, '13.9900', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8694, '2614', 'MONIFLU', 1, '38.9900', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8695, '2615', 'APPLE CID BORGES 355ML', 1, '25.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8696, '2616', 'VINEGAR 500ML', 1, '15.0000', '51.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8697, '2617', 'Ca-C 1000', 1, '0.7700', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8698, '2618', 'GERMANY VIT C', 1, '2.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (8699, '2619', 'PANACIN', 1, '0.9000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-45.0000', 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 (8700, '2620', 'KRIS', 1, '4.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (8701, '2621', 'MAYFAIR SRP', 1, '5.6300', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8702, '2622', 'DICLOKIN', 1, '3.6700', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-78.0000', 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 (8703, '2623', 'HAEMATOVITE SRP', 1, '7.1600', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8704, '2624', 'ASPANOL BAB', 1, '4.0300', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8705, '2625', 'WORBEN SRP', 1, '3.8500', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8706, '2626', 'BCOMPLEX  SRP KINAPHARMA', 1, '3.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (8707, '2627', 'TASTYMOL INFANT', 1, '0.6600', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8708, '2628', 'ASPANOL PLUS', 1, '8.6000', '7.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 (8709, '2629', 'ASCOVITE VIT C 500', 1, '5.3000', '1.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8710, '2630', 'ANCIGEL O', 1, '10.9000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8711, '2631', 'JEDITONE SRP', 1, '12.6000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8712, '2632', 'GUDAPET SRP', 1, '7.1000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8713, '2633', 'X,FLUX SRP', 1, '4.4000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8714, '2634', 'COLDRILIEF SRP', 1, '6.9000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8715, '2635', 'ENTRAMOL EXTRA', 1, '3.3000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8716, '2636', 'ENTRACIN 300', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8717, '2637', 'BLOPEN GEL', 1, '4.7000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8718, '2638', 'GACET 1G', 1, '13.2500', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8719, '2639', 'X,FERON CAPS', 1, '21.7000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8720, '2640', 'ZINVITE SRP', 1, '7.8900', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (8721, '2641', 'IMPRESSER CAPS', 1, '27.5000', '36.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8722, '2642', 'VOLTAREEN 100', 1, '21.0000', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8723, '2643', 'COTTON 50G', 1, '22.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8724, '2644', 'ELEMENT SPRAY', 1, '11.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8725, '2645', 'LAS VEGAS SPRAY', 1, '17.5000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8726, '2646', 'CLASS SPRAY', 1, '14.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8727, '2647', 'CAPRICE SPRAY', 1, '13.1300', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8728, '2648', 'LEMSIP MAX', 1, '25.3000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8729, '2649', 'SENSODYNE PASTE', 1, '22.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8730, '2650', 'LONGRICH PASTE', 1, '30.0000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8731, '2651', 'NEOCORT EYE DROP', 1, '11.0000', '31.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8732, '2652', 'PROTONIC', 1, '7.0000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8733, '2653', 'QUEEN ELI B/S', 1, '4.4000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8734, '2654', 'PEPSODENT COMPLETE', 1, '15.2900', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8735, '2655', 'LUMETHER  ADULT', 1, '6.2000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-65.0000', 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 (8736, '2656', 'LEVOTHYROXINE 100MG', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8737, '2657', 'MIST POT SIT DARL', 1, '9.8000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8738, '2658', 'ARTHROTEC 75', 1, '4.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-20.0000', 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 (8739, '2659', 'SPANISH GARLIC', 1, '15.8000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8740, '2660', 'BELL ACTIVE', 1, '2.5000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '85.0000', 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 (8741, '2661', 'WHEAT DRINK', 1, '11.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8742, '2662', 'FANMAX', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8743, '2663', 'CERES DRINK', 1, '20.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '11.0000', 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 (8744, '2664', 'CANNED MALT', 1, '4.8500', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '143.0000', 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 (8745, '2665', 'DON SIMON', 1, '14.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8746, '2666', ' COKE/FANTA/SPRITE CAN', 1, '5.0000', '6.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '119.0000', 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, 'cokefantasprite', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8747, '2667', 'BIO OIL B/S', 1, '15.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8748, '2668', 'BIO OIL S/S', 1, '8.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8749, '2669', 'VASELINE CREAM B/S', 1, '12.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8750, '2670', 'PEPSODENT CHARCOAL', 1, '2.6600', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8751, '2671', 'FOREVER EASY', 1, '3.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8752, '2672', 'PINEK 30', 1, '4.2000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-23.0000', 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 (8753, '2673', 'GANA BALM', 1, '4.7000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8754, '2674', 'BASEVIT DROP', 1, '6.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8755, '2675', 'ADAM,S SECRET', 1, '4.0000', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8756, '2676', 'CHOCOLATE DARK B/S', 1, '8.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8757, '2677', 'ZEEGHOUT', 1, '6.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8758, '2678', 'PURE HEAVEN', 1, '13.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8759, '2679', 'FRUTELLI', 1, '11.0000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8760, '2680', 'VITNUT DRINK', 1, '10.5000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8761, '26811', 'VITRAC b/s', 1, '20.0000', '22.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', 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, 'vitrac-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 (8762, '2682', 'JUVER JUICE', 1, '4.0000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8763, '2683', 'VODY', 1, '11.7000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (8764, '2684', 'LION CLUB ENERGY', 1, '20.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8765, '2685', 'ADONKO ENERGY', 1, '6.6000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8766, '2686', 'FINEST B-12', 1, '5.8000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8767, '2687', 'KISS DRINK', 1, '10.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8768, '2688', 'HENEKEIN', 1, '10.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8769, '2689', 'HUNTERS', 1, '8.8300', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (8770, '2690', 'DON SANGRIA', 1, '13.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8771, '2691', 'DON SIMON S/S', 1, '7.0000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '19.0000', 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 (8772, '2692', 'HOLLANDIA', 1, '15.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 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 (8773, '2693', 'MALTA GUINESS', 1, '4.1000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '17.0000', 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 (8774, '2694', 'VOLTIC WATER  B/S', 1, '2.3000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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, 'voltic-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 (8775, '2695', 'VITRAC S/S', 1, '7.5000', '9.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '51.0000', 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, 'vitrac-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 (8776, '2696', 'FRAG HAND SOAP', 1, '30.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8777, '2697', 'DIAL BATHING GEL', 1, '5.8700', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8778, '2698', 'PSYLLIUM HUSK', 1, '41.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8779, '2699', 'VIT C*ZINC SRP', 1, '7.0500', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8780, '2700', 'IMPRESSER OIL', 1, '55.0000', '73.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8781, '2701', 'OSON,S GARLIC PEARLS', 1, '45.8100', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8782, '2702', 'BENILIN DRY', 1, '30.0000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8783, '2703', 'SUDOCREAM 250', 1, '45.0300', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8784, '2704', 'PSYLLIUM HUSK', 1, '9.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8785, '2705', 'WASHCLOTH WIPE', 1, '10.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8786, '2706', 'HONEST WIPE', 1, '1.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8787, '2707', 'BABY GANICS WIPES', 1, '5.9300', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8788, '2708', 'MOUTHWASH', 1, '1.8000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8789, '2709', 'ABC *ZINC SRP', 1, '4.9400', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8790, '2710', 'FANMAX S/S', 1, '3.3000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8791, '2711', 'ALVARO', 1, '2.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8792, '2712', 'KRIS DRINK', 1, '12.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8794, '2714', 'DG BATHING GEL', 1, '8.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8795, '2715', 'WHITE RAIN BATH', 1, '7.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8796, '2716', 'SUNSHINE BATH', 1, '10.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8797, '2717', 'PJ MASK', 1, '10.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8798, '2718', 'NIVEA CARE *SPARKLE', 1, '15.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8799, '2719', 'BONDI SANDS LOTION', 1, '12.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8800, '2720', 'BABY LOTION', 1, '10.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8801, '2721', 'KERATIN CONDITIONER', 1, '0.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8802, '2722', 'HUGGIES WIPE', 1, '5.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8803, '2723', 'FEEDING BOT', 1, '350.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8804, '2724', 'DELIVERY MAT', 1, '75.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (8805, '2725', 'BP MONITOR', 1, '3.9800', '300.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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, 'bp-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 (8806, '2726', 'BREAST PUMP', 1, '4.9800', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8807, '2727', 'STOPKOF EXP JNR', 1, '3.4200', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8808, '2728', 'STOPKOF EXP ADULT', 1, '2.0000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8809, '2729', 'EASY ON', 1, '15.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8810, '2730', 'SAMALIN LOZ', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-29.0000', 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 (8811, '2731', 'KLIRE ANTACID S/S', 1, '11.6000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8812, '2732', 'ON CALL PLUS', 1, '0.5000', '105.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8813, '2733', 'FERROUS SULPHATE', 1, '5.9000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8814, '2734', 'GENTA INJ', 1, '0.5000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-105.0000', 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 (8815, '2735', 'VENTOLIN SRP', 1, '15.2000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8816, '2736', 'VITALIA S/S', 1, '18.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8817, '2737', 'LIVOPAT', 1, '18.0000', '20.0640', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8818, '2738', 'DASTY DEGRESSER', 1, '15.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8819, '2739', 'FEEDING BOT BIG', 1, '10.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8820, '2740', 'FEDING M/S', 1, '20.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8821, '2741', 'FEEDING S/S', 1, '15.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8822, '2742', 'GLASS FEEDING B/S', 1, '20.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8823, '2743', 'GLASS S/S', 1, '12.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8824, '2744', 'NIPPLE', 1, '9.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8825, '2745', 'AZILEX SUSP', 1, '17.5000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8826, '2746', 'GBEDEMA GARLIC', 1, '11.0000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8827, '2747', 'AZITEX CAPS', 1, '1.9000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8828, '2748', 'GLUCOLIFE C', 1, '8.8500', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8829, '2749', 'ON CALL STRIPS', 1, '8.0000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-50.0000', 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 (8830, '2750', 'VIT E 200', 1, '5.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8831, '2751', 'CUSSON,S OIL B/S', 1, '9.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8832, '2752', 'CUSSON,S OIL S/S', 1, '8.5000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8833, '2753', 'LUX SOAP', 1, '4.2000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8834, '2754', 'AIRFRESHER', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (8835, '2755', 'GEISHA SOAP', 1, '7.0000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8836, '2756', 'WOODS', 1, '12.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (8838, '2758', 'QUEEN LOTION BBS', 1, '7.4800', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8839, '2759', 'EPSON SALT', 1, '15.0000', '20.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 (8840, '2760', 'TEGRETOL 200', 1, '12.9600', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8841, '2761', 'SALINE NASAL', 1, '36.8600', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8842, '2762', '3CP', 1, '13.6700', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8843, '2763', 'GALVUS 50MG', 1, '40.0000', '53.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8844, '2764', 'FEROFIX', 1, '4.9900', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8845, '2765', 'CALAMINE LOTION LOCAL', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8847, '2767', 'DUREX PLAY GEL', 1, '1.4300', '53.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8848, '2768', 'EXFORGE 5/160/12.5', 1, '5.8100', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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, 'exforge-5160125', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8849, '2769', 'LOFNAC 100MG', 1, '1.0700', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-29.0000', 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 (8850, '2770', 'STIMUROL SYR', 1, '0.4800', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8851, '2771', 'CHLODIAZEPOX', 1, '16.6600', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-33.0000', 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 (8852, '2772', 'O-FORMIN 500', 1, '0.6500', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8853, '2773', 'REDIN  PLUS CAPS', 1, '21.5600', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8854, '2774', 'REDIN LIQ', 1, '73.3000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8855, '2775', 'BETOPTIC EYE DROP', 1, '55.1000', '28.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8856, '2776', 'PROSTAN EYE DROP', 1, '3.4300', '96.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8857, '2777', 'DALACIN SRP', 1, '21.1000', '72.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8858, '2778', 'KEPTRILS LOZ', 1, '3.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8859, '2779', 'EUTYMOL PASTE', 1, '25.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8860, '2780', 'DIGESTIVE', 1, '7.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8861, '2781', 'RICH TEA', 1, '3.0000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8862, '2782', 'JACOB,S', 1, '3.3000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8863, '2783', 'ROMA CREAM CRACKERS', 1, '5.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8864, '2784', 'ADOM  OINT', 1, '1.9600', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8865, '2785', 'KWAE FRESH', 1, '38.7600', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8866, '2786', 'CHLOR EYE OINT', 1, '3.3000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8867, '2787', 'LEVOFLOXACIN 500', 1, '33.0000', '51.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8868, '2788', 'ACTILIFE CAPS', 1, '15.5000', '0.6000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-65.0000', 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 (8869, '2789', 'FERTILO FORTE CAPS', 1, '11.0000', '44.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8871, '2791', 'ALWAYS MAXI DOUBLE', 1, '10.0000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8872, '2792', 'LISINOPRIL 10 CRESCENT', 1, '3.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8873, '2793', 'MENTHODEX LOZ', 1, '14.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8874, '2794', 'ARTHROSAMINE', 1, '4.6000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8875, '2795', 'CILOXAN EYE DROP', 1, '5.5900', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8876, '2796', 'AMOXIL SUSP LUEX', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (8877, '2797', 'NEXCOFER BLOOD TONIC 100ML', 1, '5.7000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '14.0000', 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, 'nexcofer-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 (8878, '2798', 'PARA EXETER TAB', 1, '2.1700', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '83.0000', 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 (8879, '2799', 'INFA V OINT', 1, '22.9000', '30.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (8880, '2800', 'CLARITINE TAB', 1, '2.9000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8881, '2801', 'HOLANDIAS S/S', 1, '2.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 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 (8882, '2802', 'KIDS BRUSH COLG', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8883, '2803', 'FLUCLOX 250 ESKAY', 1, '56.5500', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-60.0000', 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 (8884, '2804', 'GLASS CLEANER', 1, '3.6000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8885, '2805', 'ZINNAT SUSP 50 ML', 1, '56.5300', '75.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8886, '2806', 'SMIRNOFF', 1, '27.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8887, '2807', 'EDA BOKOO', 1, '34.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8888, '2808', 'NIDO TIN', 1, '36.0000', '42.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8889, '2809', 'NAN 1@2', 1, '50.0000', '55.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (8890, '2810', 'NAN COMFORT 1@2', 1, '3.6600', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8892, '2812', 'MILO DRINK', 1, '30.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8893, '2813', 'MILO TIN', 1, '8.0000', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8894, '2814', 'NESCAFE 200G', 1, '4.5000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8895, '2815', 'NESCAFE 50G', 1, '3.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8896, '2816', 'REXONA SOAP', 1, '42.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8897, '2817', 'SIVODERM LOTION', 1, '25.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8898, '2818', 'XYLO ACINO ADULT', 1, '45.5400', '60.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8899, '2819', 'DIAMICROM 60MG', 1, '25.0000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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, 'diamicrom-60mg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8900, '2820', 'CAFEGORT', 1, '2.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-77.0000', 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, 'cafegort', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8901, '2821', 'XARELTO 10MG', 1, '4.6600', '265.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8902, '2822', ' METFORMIN GLUCOPHAGE 500MG', 1, '17.4000', '23.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', 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-glucophage-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 (8903, '2823', 'MALIN BABY', 1, '5.4000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8904, '2824', 'MALIN TAB', 1, '2.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8905, '2825', 'SKIN ESSENTIALS', 1, '25.0000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8906, '2826', 'FLORA TISSUE B/S', 1, '10.0000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8907, '2827', 'WAIST BELT', 1, '0.6000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8908, '2828', 'AMOKSIKLAV INJ', 1, '3.4000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8909, '2829', 'CRYSTALINE PENICILLIN', 1, '2.3000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8910, '2830', 'HYDROCORT INJ', 1, '6.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8911, '2831', 'NOSPA INJ', 1, '21.1300', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8912, '2832', 'BEDMAT', 1, '2.1000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (8913, '2833', 'LAVET', 1, '25.5000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8914, '2834', 'CIPROCIR EYE DROP', 1, '10.0400', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8915, '2835', 'LUCOZADE 380', 1, '7.9200', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (8916, '2836', 'ANTACID MIX', 1, '0.7000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8917, '2837', 'EVANOVA', 1, '4.0500', '39.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8918, '2838', 'APC 10*10', 1, '1.2200', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '44.0000', 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 (8919, '2839', 'MIST MAG DARL', 1, '15.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8920, '2840', 'ANTACID BELLS', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (8921, '2841', 'AMOS VITAL VITC', 1, '7.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8922, '2842', 'PROLIFE VITC', 1, '4.2700', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8923, '2843', 'BG GLUTAMIN PLUS', 1, '7.2500', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (8924, '2844', 'MYCOVIN 500', 1, '7.9200', '10.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8925, '2845', 'MMT', 1, '4.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (8926, '2846', 'SEFLOX EAR/EYE', 1, '39.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8927, '2847', 'SELECT', 1, '36.0000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-79.0000', 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 (8928, '2848', 'apple cider natural', 1, '25.8300', '51.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8929, '2849', 'DYKLO SPRAY DICLO', 1, '77.2500', '47.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8930, '2850', 'SPIRONOLACTONE 100mg', 1, '47.7500', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8931, '2851', 'VIAGRA IOOMG', 1, '6.9000', '105.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8932, '2852', 'VIAGRA 50MG', 1, '7.3000', '62.0750', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8933, '2853', 'RED BULL', 1, '12.5000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (8934, '2854', 'BLUE JEANS DRINKS', 1, '8.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (8935, '2855', 'DON GRACIA', 1, '0.2900', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8936, '2856', 'VITRAC PACK DRINK', 1, '1.1400', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8937, '2857', 'ASPIRIN LOCAL', 1, '3.5000', '0.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-78.0000', 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 (8938, '2858', 'LOCID', 1, '7.8500', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (8939, '2859', 'PARAZONE', 1, '0.9500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8941, '2861', 'ALEVE PAIN KILLER', 1, '12.0000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-72.0000', 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 (8942, '2862', 'COCODAMOL', 1, '4.4000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '20.0000', 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 (8943, '2863', 'CALAMINE LTN BELLS', 1, '0.8900', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8944, '2864', 'VITANE SRP', 1, '45.2400', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8945, '2865', 'ZURION', 1, '9.0000', '1.1700', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-62.0000', 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 (8946, '2866', 'SPIRONOLAC ECL', 1, '13.9400', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8947, '2867', 'TOM BROWN', 1, '5.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8948, '2868', 'ASTYFER', 1, '4.6000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (8949, '2869', 'SOFTCARE PAD', 1, '8.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (8950, '2870', 'EVERSHEEN CREAM SMALL', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8951, '2871', 'LEMONVATE', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8952, '2872', 'IMPERIAL LATHER', 1, '5.3000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8953, '2873', 'ORO INSECTICIDE', 1, '18.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8954, '2874', 'SPRAY STARCH', 1, '4.1000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8955, '2875', 'OCEAN SPRAY BOTTLE', 1, '18.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8956, '2876', 'OCEAN SPRAY CAN', 1, '2.8000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8957, '2877', 'ALOE VERA DRINK', 1, '13.5000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (8958, '2878', 'JUVER S/S BOTTLE', 1, '30.0000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8959, '2879', 'AFRO MOSES', 1, '13.5000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8960, '2880', 'PROSTACURE X', 1, '30.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (8961, '2881', 'PROXIMERA 500G', 1, '7.8600', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8962, '2882', 'GASTRON SUSP 100ML', 1, '0.1000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8963, '2883', 'GASTRONE PLUS', 1, '14.7600', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (8964, '2884', 'TOFFEES', 1, '7.3600', '0.2500', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-47.0000', 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 (8965, '2885', 'METHYLATED SP B/S', 1, '7.2000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-36.0000', 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 (8966, '2886', 'MAGACID SUSP', 1, '9.5000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8967, '2887', 'S/SEAS JOINT SUPPLEX', 1, '59.8000', '79.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8968, '2888', 'S/SEAS C.L.O CAPS', 1, '50.7000', '67.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (8969, '2889', 'REDSUN', 1, '6.0500', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (8970, '2890', 'NIBIMA', 1, '8.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (8971, '2891', 'VITAGO B/S', 1, '1.4500', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8972, '2892', 'MALABASE', 1, '4.5000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-33.0000', 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 (8973, '2893', 'BASECHLOR', 1, '7.1000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8974, '2894', 'QUININE SRP', 1, '5.4000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (8975, '2895', 'CYPONE SRP', 1, '2.5500', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8976, '2896', 'ESSENTIALBB/S', 1, '1.9500', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8977, '2897', 'FLU-CLO SUSP(LETAP)', 1, '0.5700', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8978, '2898', 'CONTRA-72', 1, '0.6900', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (8979, '2899', 'SLEMFIT S/S', 1, '1.0000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '225.0000', 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, 'slimfit-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 (8980, '2900', 'SLEMFIT M/S', 1, '1.2000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '40.0000', 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, 'slimfit-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 (8981, '2901', 'CAMISA', 1, '7.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8982, '2902', 'CRANBERRY', 1, '18.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (8983, '2903', 'KIWI DRINK', 1, '0.4400', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8984, '2904', 'VERNA S/S', 1, '0.8700', '1.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-59.0000', 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 (8985, '2905', 'COLDAFLU', 1, '33.1500', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8986, '2906', 'XARELTO 20', 1, '7.6000', '580.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8987, '2907', 'MIXTARD', 1, '35.0000', '46.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (8988, '2908', 'CREEP BAND 8', 1, '1.4000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8989, '2909', 'CREEP BAND 6', 1, '4.5000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8990, '2910', 'CENTRUM 30S', 1, '10.0000', '1.9000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8991, '2911', 'SYRYNGE 2MLS', 1, '18.0000', '0.3000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8992, '2912', 'HONEY S/S', 1, '8.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8993, '2913', 'HONEY B/S', 1, '12.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8994, '2914', 'CUSSON BABY LOTION', 1, '7.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8995, '2915', 'PLASTER 6INC', 1, '9.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8996, '2916', 'PLASTER M/S', 1, '5.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (8997, '2917', 'PLASTER B/S', 1, '3.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (8998, '2918', 'PLSTER S/S', 1, '0.4000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (8999, '2919', 'PLASTER VS/S', 1, '22.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9000, '2920', 'INSULIN SYRNG', 1, '14.7800', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-35.0000', 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 (9001, '2921', 'IMAX DELAY SPRAY', 1, '30.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (9002, '2922', 'CLARITHROMYCIN TAB 500MG (B-CLAR)', 1, '20.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9003, '2923', 'CARTEF TAB 24', 1, '6.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9004, '2924', 'HUGGIES WIPE BIG', 1, '22.2000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9005, '2925', 'TCP SOAP', 1, '10.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9006, '2926', 'VENTOLIN SRP ORG', 1, '43.1500', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9007, '2927', 'LUCKY BITTERS', 1, '19.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9008, '2928', 'TCP 2OOML', 1, '45.2700', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9009, '2929', 'VENTOLIN ORIG SYRP', 1, '6.2500', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9010, '2930', 'CHOCHO SOAP', 1, '3.5000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9011, '2931', 'CERES CAN', 1, '0.7500', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9012, '2932', 'VIP BRUSH', 1, '0.7500', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (9013, '2933', 'SMOKERS BRUSH', 1, '18.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9014, '2934', 'SASSO SPRAY BIG', 1, '19.5000', '26.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9015, '2935', 'SENSODYNE PASTE SMALL', 1, '5.5000', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9016, '2936', 'VALUPAK VIT E 400', 1, '30.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9017, '2937', 'X,FERON SRP', 1, '4.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9018, '2938', 'STOPKOF COLD *CATTARRH TAB', 1, '6.9600', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9019, '2939', 'OVULATION TEST KIT', 1, '8.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9020, '2940', 'AMMENS POWER', 1, '14.0000', '54.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9021, '2941', 'UNIDUS LONG LOVE CONDOM', 1, '6.7300', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9022, '2942', 'MEDICATED SOAP', 1, '6.2900', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9023, '2943', 'COAL TAR BAR SOAP', 1, '2.5000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9024, '2944', 'KALAMINA LOTION', 1, '7.4400', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9025, '2945', 'MAGDOX ANTACID SUSP', 1, '14.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9026, '2946', 'DIGITAL THERMOMETOR', 1, '15.0000', '19.8000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9027, '2947', 'MENTHYLATED SPIRIT VERY BIG', 1, '29.8900', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9028, '2948', 'PROMETHAZINE SRUP', 1, '3.4800', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9029, '2949', 'ENAPHOX SUSP', 1, '0.1000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9030, '2950', 'EPICIPRIN', 1, '12.9000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9031, '2951', 'POTASSIUM', 1, '15.0000', '0.3000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9032, '2952', 'PEOBIOTICS 20 STRAINS', 1, '30.0000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9033, '2953', 'THERMOMETER ANUS', 1, '30.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9034, '2954', 'PROBIOTICS', 1, '10.0000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9035, '2955', 'VISION', 1, '20.0000', '90.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9036, '2956', 'NASAL SPRAY', 1, '50.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9037, '2957', 'CHOLINE BITARTRATE', 1, '20.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9038, '2958', 'ESSENTIAL EMZYMES', 1, '20.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9039, '2959', 'HIGH ABSORPTION COQ10', 1, '20.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9040, '2960', 'FLAXSEED OIL', 1, '10.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9041, '2961', 'KETO FAST/BURN', 1, '10.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9042, '2962', 'LITTLE REMEDIES GRIPE WATER', 1, '10.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9043, '2963', 'EQUATE STOMACH RELIEF', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9044, '2964', 'CULTURE PROBIOTIC BABY', 1, '30.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9045, '2965', 'NEUTROPHIL PLUS', 1, '30.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9046, '2966', 'CEYLON CINNAMON', 1, '20.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9047, '2967', 'MAGNESIUM', 1, '30.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9048, '2968', 'D-MANNOSE', 1, '30.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9049, '2969', 'HYALURONIC', 1, '15.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9050, '2970', 'OMEGA 3', 1, '30.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9051, '2971', 'TART CHERRY', 1, '30.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9052, '2972', 'NATURES BOUTY D3', 1, '30.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9053, '2973', 'TUMERIC CURCUMIN', 1, '30.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9054, '2974', 'FORTIFY WOMENS  PROBIOTIC', 1, '15.0000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9055, '2975', 'ALIVE ONCE DAILY', 1, '30.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9056, '2976', 'REMFRESH', 1, '10.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9057, '2977', 'VITAMIN CODE', 1, '30.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9058, '2978', 'FATHER JOHNSON', 1, '30.0000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9059, '2979', 'DR TOBIA OMAGA 3', 1, '50.0000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9060, '2980', 'VIRGIN COCONUT OIL', 1, '50.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9061, '2981', 'MULTI MINERALS', 1, '40.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9062, '2982', 'C-1000', 1, '30.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9063, '2983', 'GABA 500MG', 1, '30.0000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9064, '2984', 'NAC N -ACETYL', 1, '40.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9065, '2985', 'DGL', 1, '40.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9066, '2986', 'PROSTATE FORMULA', 1, '40.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9067, '2987', 'ALPHA LIPOID', 1, '10.0000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9068, '2988', 'CITRACAL', 1, '10.0000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9069, '2989', 'BEANO ULTRA 800', 1, '20.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9070, '2990', 'PEDIA LAX', 1, '10.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9071, '2991', 'NATURE MADE COQ10', 1, '15.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9072, '2992', 'TAN OPTIMIZER', 1, '10.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9073, '2993', 'MUCINEX FAST MAX', 1, '30.0000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9074, '2994', 'PURE ZINC 30', 1, '20.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9075, '2995', 'PRESER VISION', 1, '10.0000', '90.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9076, '2996', 'MELATOMIN', 1, '52.0200', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9077, '2997', '5HTP', 1, '0.8000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9078, '2998', 'ONE A DAY MEN 50+', 1, '18.0000', '110.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9079, '2999', 'PEEKAPOO PAD LINER', 1, '15.0000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9080, '3000', 'GOODNITE', 1, '20.0000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9081, '3001', 'PAMPERS SPLASHES', 1, '20.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9082, '3002', 'CUTTIES ESSENTIALS', 1, '9.1600', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9083, '3003', 'HUGGIES LITTLE', 1, '4.4200', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9084, '3004', 'APPLE JUICE', 1, '16.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (9085, '3005', 'MANDANOL NASAL DROP', 1, '2.7000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9086, '3006', 'DICLOFENAC SUPP', 1, '14.8000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9087, '3007', 'TYLENOL PM 50', 1, '4.3000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9088, '3008', 'ZUBES EXTRA STRONG', 1, '17.0000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (9089, '3009', 'VITAMILK  BOTTLE', 1, '7.5000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '27.0000', 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 (9090, '3010', 'VITAMILK', 1, '15.0000', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9091, '3011', 'AMON CHOCOLATE', 1, '6.9500', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9092, '3012', 'VINKA CHOCOLATE', 1, '0.6800', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (9093, '3013', 'SNICKERS', 1, '8.4000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9094, '3014', 'BOUNTY', 1, '5.7000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (9095, '3015', 'MALTESERS', 1, '8.7600', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-16.0000', 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 (9096, '3016', 'SHORT BREAD', 1, '6.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9097, '3017', 'CD CAPS', 1, '22.0000', '29.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9098, '3018', 'JOY VIKIL', 1, '26.0000', '34.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-24.0000', 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 (9099, '3019', 'LIQUID SOAP', 1, '10.3400', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9100, '3020', '~JOY VIKEL', 1, '26.0000', '34.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '19.0000', 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 (9101, '3021', 'ACNEL GEL 20MG', 1, '32.1800', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9102, '3022', 'FAMACOLD', 1, '18.0000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9103, '3023', 'JOINTFLEX PLUS TABS', 1, '39.0000', '51.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9104, '3024', 'FLOOR CLEANER', 1, '14.7700', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9105, '3025', 'GASTRONE TAB', 1, '2.1600', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (9106, '3026', 'LISINOPRIL 20 CREASENT', 1, '5.3500', '19.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9107, '3027', 'GLIBENCLAMIDE', 1, '3.4000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (9108, '3028', 'CABOZAP JUNIOR', 1, '3.4000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9109, '3029', 'EMGIBRUFEN', 1, '1.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '67.0000', 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 (9110, '3030', 'CHLORAMPHENICOL', 1, '7.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9111, '3031', 'SUAVE ESSENTIAL BIG', 1, '10.0000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9112, '3032', 'TINATETT BATHING FRESH', 1, '15.0000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9113, '3033', 'SUAVE ESSENTIALS SMALL', 1, '5.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9114, '3034', 'FOAMING BATH', 1, '28.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9115, '3035', 'DACILIN 300MG', 1, '35.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9116, '3036', 'PALMAS COCO BUTTER', 1, '15.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9117, '3037', 'CORSODYL BIG  300ML', 1, '43.9200', '58.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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, 'corsodyl-big-300ml', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9118, '3038', 'MOSQUITO NET', 1, '0.8000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9119, '3039', 'KIDS FACE MASK', 1, '14.0000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9120, '3040', 'KIDS FACE MASK', 1, '20.0000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9121, '3041', 'GBEDEMA BIG MAN', 1, '30.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (9122, '3042', 'ULTIMATE OMEGA D3', 1, '30.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9123, '3043', 'HEMP OIL CAPSULES', 1, '30.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9124, '3044', '~MAGNESIUM', 1, '10.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9125, '3045', 'COLOSTRUM', 1, '15.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9126, '3046', 'MOVE FREE JOINT S/S', 1, '30.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9127, '3047', 'TUMERIC 538', 1, '60.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9128, '3048', 'BONE STRENTH', 1, '20.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9129, '3049', 'FISH OIL', 1, '15.0000', '150.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9130, '3050', 'L-LYSINE', 1, '10.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9131, '3051', 'DEEP IMMUNE', 1, '10.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9132, '3052', 'SIMILASAN', 1, '5.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9133, '3053', 'MG 217', 1, '10.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9134, '3054', 'BONINE', 1, '20.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9135, '3055', 'ELTA MD', 1, '50.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9136, '3056', 'OCUVITE', 1, '30.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9137, '3057', 'OSTEO-BI FLEX', 1, '10.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9138, '3058', 'MEGA RED', 1, '30.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9139, '3059', 'SAMBUCUS', 1, '0.3000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9140, '3060', 'MOVE FREE B/S', 1, '6.9300', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9141, '3061', 'VIT D3', 1, '9.5300', '0.4000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-30.0000', 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 (9142, '3062', 'VIGONX', 1, '11.1000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (9143, '3063', 'CEFUNATE SUSP', 1, '10.8000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9144, '3064', 'KINAMYCIN 300', 1, '28.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9145, '3065', 'FINE LIFE BLOOD TONIC', 1, '8.3000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9146, '3066', 'PANADOL ADVANCE 32\'S', 1, '4.5000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9147, '3067', 'ARTESUNATE 30', 1, '8.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9148, '3068', 'DIHYDROCODEINE 30MG', 1, '20.1000', '3.4000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-29.0000', 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 (9149, '3069', 'HAND SANITIZER COCO', 1, '8.9500', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9150, '3070', 'MYCOCORT CREAM', 1, '19.8000', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (9151, '3071', 'KEFROX SUSP', 1, '12.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (9152, '3072', 'KLEANZ SANITISER BIG', 1, '10.9800', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9153, '3073', 'HANDS SANITISER COCO BIG', 1, '1.5500', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9155, '3075', 'OMEPRAZOLE  20 NIMEP', 1, '1.8000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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, 'omeprazole-20-nimep', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9156, '3076', 'AIRFRESHNER HANGING', 1, '5.8900', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9157, '3077', 'LEVOTHROXINE 50MG', 1, '7.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9158, '3078', 'METRO Z SUSP', 1, '9.5800', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9159, '3079', 'FRUSEMIDE TAB 40MG BRISTOL', 1, '30.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9160, '3080', 'LUEX NASAL INHALER', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '22.0000', 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, 'luex-nasalinhaler', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9161, '3081', 'SANITAZER BIG', 1, '4.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9162, '3082', 'SANITIZER MEDIUM', 1, '5.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9163, '3083', 'EASY CHECK', 1, '15.8000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9164, '3084', 'HEMP OIL', 1, '6.8700', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9165, '3085', 'OLANZEPINE TAB 10MG', 1, '11.9600', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9166, '3086', 'NESTERIX FORTE SYR', 1, '3.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9167, '3087', 'NORMO TEARS EYE DROP', 1, '16.9000', '22.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9168, '3088', 'FACE MASK SHIELD', 1, '10.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9169, '3089', 'SMARTYS KIDS GUMMY', 1, '50.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9170, '3090', 'HERB BERRY DROPS', 1, '20.0000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9171, '3091', 'MCT OIL', 1, '20.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9172, '3092', 'DIHYDROMYRICETIN 300MG', 1, '15.5000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9173, '3093', 'AZO BLADDER CONTROL', 1, '17.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9174, '3094', 'GEN M SUSP', 1, '26.3000', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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, 'gen-m-susp1', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9175, '3095', 'GEN M TABS 80/480', 1, '0.8900', '20.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (9176, '3096', 'TOBREX EYE DROP', 1, '22.2900', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9177, '3097', 'DICNAC 100MG SUPP', 1, '0.8900', '1.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '154.0000', 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 (9178, '3098', 'PROPA LINER', 1, '12.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (9179, '3099', 'ANTI BACTERIAL WIPES', 1, '12.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9180, '3100', 'NATURE WAY HAIR&SKIN', 1, '4.8000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9181, '3101', 'MiraLAX', 1, '5.9800', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9182, '3102', 'BIC RAZOR', 1, '8.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9184, '3104', 'EAR SWAB', 1, '3.9000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9185, '3105', 'FEMCARE', 1, '13.9000', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9186, '3106', 'THERMOSOL SMART', 1, '3.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9187, '3107', 'EPICROM 2%', 1, '18.9000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9188, '3108', 'FACE MASK K95', 1, '4.3600', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9189, '3109', 'FUROSEMIDE BRISTOL 40MG', 1, '0.7900', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9190, '3110', 'ASCOVIT CEE SYR', 1, '7.6000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9191, '3111', 'METOCHLOPRAMIDE 10MG', 1, '16.7000', '22.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (9192, '3112', 'LUBRIMAX JELLY 70 GM', 1, '17.9100', '24.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 (9193, '3113', 'AZIRON 500MG TABS', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-28.0000', 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 (9194, '3114', 'BRENEX SYR', 1, '4.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9195, '3115', 'GILLETTE BLUE', 1, '4.9800', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9196, '3116', 'SOBOLO DRINK', 1, '0.7000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9197, '3117', 'AMPICLOX ECL', 1, '20.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9198, '3118', 'AMOXYCILLIN CAPS/ BLISS 250', 1, '5.7000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (9199, '3119', 'KLOVIRAL PESS', 1, '23.0000', '30.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9200, '3120', 'LOFNAC BALM HERBAL', 1, '1.8200', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9201, '3121', 'LIVERPLEX INFANT', 1, '5.3900', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9202, '3122', 'OMECET CAPS', 1, '2.1700', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-34.0000', 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 (9203, '3123', 'METHYLATED SPIRIT BB', 1, '0.6000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9204, '3124', 'NESBEN TAB 200MG', 1, '5.5000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-76.0000', 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 (9205, '3125', 'FUROSAMIDE TABS 40 ECL', 1, '0.3200', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9206, '3126', 'FRESH BREATH SPY', 1, '15.8900', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9207, '3127', 'FERROUS SULPHATE STRIPS', 1, '0.4800', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9208, '3128', 'VIT C CHEAWABLE', 1, '46.9800', '21.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9209, '3129', 'CETRIZAN 10MG', 1, '6.3800', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (9210, '3130', 'PREGNACIN PLUS', 1, '5.2000', '62.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9211, '3131', 'FRUSEMIDE TAB 40MG UK', 1, '5.8300', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9212, '3132', 'METHLATED SPIRIT BB', 1, '9.2000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9213, '3133', 'ROX DRINKS', 1, '7.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '32.0000', 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 (9214, '3134', 'WELCHS DRINK', 1, '20.0000', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (9215, '3135', 'WELCHS TOFFEE', 1, '1.6000', '2.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9216, '3136', 'ORAL B PASTE MEDIUM', 1, '5.2000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9218, '3138', 'ARTIBASE FORTE 80/480 16', 1, '20.9000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', 1, '8.4000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '26.0000', 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 (9220, '3140', '8 HOUR FEVER MIX', 1, '4.5000', '27.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9221, '3141', 'FAMACOLD SYR', 1, '4.2000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9222, '3142', 'PARALEX BABY', 1, '6.5000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9223, '3143', 'JAGUAR BALM 80ML', 1, '12.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9224, '3144', 'JAGUAR BALM 125', 1, '10.8600', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9225, '3145', 'ALPHA FOLIC ACID', 1, '5.3300', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9226, '3146', 'ZOFIORA 120ML', 1, '15.0000', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (9227, '3147', 'AQUQ FRESH HERBAL', 1, '9.5000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9228, '3148', 'AQUA  FRESH MINT', 1, '4.5000', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9229, '3149', 'AQUA FRESH MILD&MINTY6', 1, '11.0000', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9230, '3150', 'LISINOVA 5MG', 1, '10.7400', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9231, '3151', 'LEXOFEN SUSP 150ML', 1, '12.9000', '17.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9232, '3152', 'LEXOFEN SUSP 100ML', 1, '39.9900', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9233, '3153', 'BLUE SPOT EYEDROP', 1, '8.5000', '52.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9234, '3154', 'OPTREX REFRESHING', 1, '3.0000', '52.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9235, '3155', 'AMUZU GARLIC', 1, '2.5000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9236, '3156', 'SANITESER SMALL', 1, '11.9200', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9237, '3157', 'SANITESER VERY SMALL', 1, '24.8200', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (9238, '3158', 'COD LIVER OIL B/N', 1, '6.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9239, '3159', 'CLOPIDOGREL 75MG', 1, '25.0000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (9240, '3160', 'PROMAN DRINK', 1, '25.1200', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-17.0000', 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 (9241, '3161', 'BRAINWESE OMEGA 3  150ML', 1, '40.0000', '53.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9242, '3162', 'MEDGLOBIN CAPS', 1, '25.5000', '34.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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, 'medglobin-caps1', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9243, '3163', 'MEDGLOBIN SYR', 1, '20.5000', '27.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 (9245, '3165', 'POLYGEL SUSP 200ML', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9246, '3166', 'PRONALIN ADULT', 1, '16.8400', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9247, '3167', 'STRETCH GO', 1, '15.2500', '20.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 (9248, '3168', 'VALUPAK VIT C 500MG CHEWABLE', 1, '20.0000', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9249, '3169', 'RENERVE PLUS CAPS', 1, '6.4900', '7.2000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (9250, '3170', 'SALAMOL CFC INHALER', 1, '20.5000', '27.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9251, '3171', 'METRO 400MG TABS EXETER', 1, '6.5300', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 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 (9252, '3172', 'KLINDA 300', 1, '11.5000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9253, '3173', 'MILK OF MAGNESIUM PHILIPS', 1, '20.0000', '49.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9254, '3174', 'PROCOLD  SYR 60ML', 1, '20.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (9255, '3175', 'EYECARE DRY', 1, '20.0000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9256, '3176', 'BETA POLLEN PLUS', 1, '10.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9257, '3177', 'RENEWLIFE 30/90S', 1, '10.0000', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9258, '3178', 'ACTIVE B12 FOLATE', 1, '30.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9259, '3179', 'COQ-ZYME', 1, '10.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9260, '3180', 'QUADRALEAN', 1, '20.0000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9261, '3181', 'GINGER ROOT 550MG', 1, '10.0000', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9262, '3182', 'HAIR & SKIN CAPS', 1, '2.5500', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9263, '3183', 'DIYHDROMRICETIN', 1, '2.9000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9264, '3184', 'CALCIUM B12 SYRUP', 1, '3.1000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9265, '3185', 'COUGH & COLD CHILD CARE', 1, '1.5500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9266, '3186', 'FOLIRON TONIC 200ML', 1, '4.1000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (9267, '3187', 'LETAVIT SYRUP', 1, '2.8000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (9268, '3188', 'MILK OF MAGNESIA LETAP', 1, '1.6500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9269, '3189', 'LETARON SYRUP', 1, '3.4000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9270, '3190', 'AMOXYCILLIN SYRUP LETAP', 1, '0.4500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9271, '3191', 'LETAFEN SUSPENSION', 1, '1.9000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (9272, '3192', 'LETAMOX TABLET 500MG', 1, '3.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-176.0000', 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 (9273, '3193', 'XPEL SUSP DEWORMER', 1, '0.3500', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-17.0000', 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 (9274, '3194', 'ARFAN 20/120MG', 1, '7.3200', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-18.0000', 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 (9275, '3195', 'ASCORBIN TAB', 1, '0.4300', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-74.0000', 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 (9276, '3196', 'FUROSEMIDE TAB LETAP', 1, '3.0000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9277, '3197', 'AZIS TAB 500MG', 1, '68.2500', '8.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9278, '3198', 'SALINE NASAL LOCAL', 1, '3.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9279, '3199', 'PLENDIL 10MG', 1, '2.3300', '90.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9280, '3200', 'ENAMYCIN SUSP ECL', 1, '12.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9281, '3201', 'LILY  ROSS BRUSH', 1, '8.5000', '3.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9282, '3202', 'CLINIC CLEAR LOTION SMALL', 1, '6.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9283, '3203', 'BIOSKIN MEDIUM', 1, '2.5000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9284, '3204', 'DAY BY DAY POWDER', 1, '7.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9285, '3205', 'STYLING GEL BROKLYN', 1, '10.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9286, '3206', 'HERBAL ESSENTIAL OIL 30ML', 1, '7.5000', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (9287, '3207', 'HERBAL ESSENTIALS OIL 40ML', 1, '15.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', 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 (9288, '3208', 'HERBAL ESSENTIALS OIL 60ML', 1, '12.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9289, '3209', 'HERBAL ESSENTIAL OIL 10ML', 1, '13.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9290, '3210', 'LUBRIMAX JELLY 50G', 1, '17.4000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9291, '3211', 'FIESTA LUBRICANT GEL SMALL', 1, '15.4000', '25.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 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 (9292, '3212', 'TYLENOL PM 24\'S', 1, '3.4000', '50.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9293, '3213', 'GACET 500MG', 1, '1.3500', '1.8000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9294, '3214', 'mercy soap', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9295, '3215', 'TCP 50ML', 1, '28.5000', '38.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (9296, '3216', 'ANTREMOL D', 1, '8.8000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9297, '3217', 'ENTRAMOL D', 1, '2.4700', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9298, '3218', 'GIVERS HERBAL MIXTURE BIG', 1, '4.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9299, '3219', 'FLUCONAT 150', 1, '9.5000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (9300, '3220', 'LONART TAB', 1, '8.8000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9301, '3221', 'SOFT&GENTLE LOTION', 1, '4.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9302, '3222', 'RIGHT GUARD LOTION', 1, '2.8100', '15.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9303, '3223', 'ZULU EXTRA', 1, '5.0000', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-9.0000', 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 (9304, '3224', 'BORIC ACID EAR DROP', 1, '12.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9305, '3225', 'YAAKSON MIXTURE', 1, '0.1600', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9306, '3226', 'DUO COTTON PADS', 1, '3.3000', '15.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9307, '3227', 'YOVANNY COUGH LOZENGES', 1, '3.9000', '0.2500', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-32.0000', 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 (9308, '3228', 'ABYVITA CAPS', 1, '9.0000', '4.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (9309, '3229', 'CIPRO TAB OSONS', 1, '6.6600', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9310, '3230', 'BROWN SUGAR', 1, '6.5000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9311, '3231', 'SAVANNA DRINK', 1, '10.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9312, '3232', 'JUVER PAPER DRINK', 1, '11.0000', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9313, '3233', 'SUN EXOTIC DRINK', 1, '12.0000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9314, '3234', 'RUBICON DRINK', 1, '10.2400', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9315, '3235', 'ADIDAS SPRAY', 1, '12.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9316, '3236', 'LOSARTAN POTASSIUM 100MG TEVA', 1, '8.7300', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (9317, '3237', 'ADOM NATURAL MAN MIXTURE', 1, '12.0000', '16.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9318, '3238', 'GIANT EAGLE MOUTH WASH', 1, '9.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9319, '3239', 'PAMPERS S/S', 1, '13.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', 1, '11.8000', '16.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 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 (9321, '3241', '~', 1, '13.0000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9322, '3242', '', 1, '13.0000', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9323, '3243', '', 1, '8.5000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9324, '3244', 'ADUSA MIXTURE', 1, '14.0000', '18.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9325, '3245', 'LAWSON HERBAL MIXTURE', 1, '11.0000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9326, '3246', 'DELAY MAN CAPS', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9327, '3247', 'MALARONE PAED TABS', 1, '5.9500', '122.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9328, '3248', 'BELLS OLIVE OIL ORIGNAL', 1, '7.9000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9329, '3249', 'ASCORYL PLUS SYRUP', 1, '10.8000', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 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 (9330, '3250', 'APETATRUST', 1, '14.5000', '19.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '17.0000', 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 (9331, '3251', '', 1, '20.0000', '95.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9332, '3252', 'ARZIGLOBIN SYRUP', 1, '8.0000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9333, '3253', 'COVONIA DRY TICKLY 150ML', 1, '24.0000', '26.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9334, '3254', 'GALFER SYRUP 300ML', 1, '6.0000', '95.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9335, '3255', 'IROVIT DROP', 1, '25.0000', '33.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9336, '3256', 'WIDALUM SUSP', 1, '4.9500', '6.5000', '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 (9337, '3257', 'ANDREWS LIVER SALTS', 1, '0.7000', '1.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-55.0000', 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 (9338, '3258', 'RESCOFER SYRUP', 1, '14.9800', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9339, '3259', 'LIVERTONE BLOOD TONIC', 1, '7.2200', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9340, '3260', 'ARTETAB SUSP', 1, '26.2800', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9341, '3261', 'COQ 10 WINMILL', 1, '31.3200', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9342, '3262', 'FISH OIL GOOD NEIGH. PHARM', 1, '52.0200', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 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 (9343, '3263', 'VIT A GOOD NEIGH.PHARM', 1, '91.8000', '65.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9344, '3264', 'ONE A DAY WOMEN TAB', 1, '17.9400', '110.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9345, '3265', 'PURE MARK VEGAN PRO', 1, '53.4600', '200.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9346, '3266', 'VIT A  MAJOR', 1, '41.0400', '56.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9347, '3267', 'MULTIVITANIM GUMMIES', 1, '40.4400', '110.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9348, '3268', 'BCOMPLEX  NAT BOUNTY', 1, '16.0200', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9349, '3269', 'FISH OIL SUNDOWN', 1, '33.6000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9350, '3270', 'FOLIC ACID SUNDOWN', 1, '52.0200', '35.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9351, '3271', 'ECHINACEA  COMPLEX GOOD NEIGH PHARM', 1, '39.9000', '65.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9352, '3272', 'ONE A DAY MEN', 1, '41.2200', '110.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9353, '3273', 'VALERIAN ROOT NAT BOUNTY', 1, '38.2800', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9354, '3274', 'VIT B12  NAT BOUNTY', 1, '17.8200', '70.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9355, '3275', 'VIT K2 MASON', 1, '35.5800', '70.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9356, '3276', 'CALCIUM 600 + D3', 1, '30.7800', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9357, '3277', 'COD LIVER OIL MASON', 1, '27.4800', '70.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9358, '3278', 'HEALTHY EYE GOOD NEIGH PHARM', 1, '28.3800', '60.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9359, '3279', 'MELATONIN SUNDOWN', 1, '45.3600', '55.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9360, '3280', 'MENTHOLATUM NIGHT RUB', 1, '65.8800', '55.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9361, '3281', 'SAW PALMETTO CAP', 1, '52.2000', '90.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9362, '3282', 'SCANDISHAKE POWER', 1, '0.0000', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9363, '3283', 'VIT E OIL', 1, '8.5000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9364, '3284', 'FISH OIL MAJOR', 1, '7.5000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9365, '3285', 'BLACK SOAP BIG', 1, '17.6500', '12.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9366, '3286', 'BLACK SOAP SMALL', 1, '17.2900', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9367, '3287', 'D ARTEPP TAB 60/480MG', 1, '32.9800', '24.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9368, '3288', 'MEDULAC SUPP 250MLS', 1, '9.3000', '23.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9369, '3289', 'GAVISCON DOUBLE ACTION', 1, '51.7800', '44.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9370, '3290', 'DEEP HEAT OINT 15G', 1, '70.5800', '12.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9371, '3291', 'ALPHA LIPOIC  MASON', 1, '14.7000', '80.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9372, '3292', 'CHOLESOFF NATURE MADE', 1, '42.3000', '140.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9373, '3293', 'FEROSUL MAJOR', 1, '46.7300', '40.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (9374, '3294', 'FISH OIL 100MG MAJOR', 1, '37.7400', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9375, '3295', 'GINGKO BILOBA EXTRACT', 1, '16.3300', '21.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 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 (9376, '3296', 'MELATONIN  GOOD NEIGHBOUR PHRM', 1, '61.9200', '70.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9377, '3297', 'LUTEIN SOFTGEL MASON', 1, '62.0200', '700.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9378, '3298', 'OMEGA 3 1000 EPA', 1, '24.8000', '100.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9379, '3299', 'ONE A DAY MEN 50+ 65CT', 1, '9.9200', '120.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9380, '3300', 'MUPIROCIN OINT', 1, '22.3200', '29.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9381, '3301', 'LORSATAN 100MG EXETER', 1, '5.6200', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9382, '3302', 'BELLA AQUA WATER M/S', 1, '5.2000', '1.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-11.0000', 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 (9383, '3303', 'CEFTRIA DOR 1000', 1, '7.9400', '10.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9384, '3304', 'CEFURO DOR 750', 1, '4.9500', '7.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 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 (9385, '3305', 'LUEX CHILD CHESTY', 1, '8.7000', '11.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 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 (9386, '3306', 'CREST CHARCOAL TOOTHPASTE', 1, '4.9900', '28.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9387, '3307', 'LISTERINE MOUNTH WASH 1L', 1, '36.0000', '47.5200', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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, 'listerine-mounth-wash-1l', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9388, '3308', 'FLUXACIN CAPS 500MG', 1, '8.4000', '11.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-14.0000', 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 (9389, '3309', 'FERROUS SULPHATE 200MG', 1, '15.0000', '8.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9390, '3310', 'DICLONOVA 100MG', 1, '25.0000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-17.0000', 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 (9391, '3311', 'HERBAL TEA', 1, '14.5000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9392, '3312', 'SWEET ALMOND', 1, '10.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9394, '3314', 'CHIA SEED', 1, '9.5000', '13.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (9395, '3315', 'GLODEN RAISON', 1, '15.0000', '20.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9396, '3316', 'BULLET ENERGY DRINK', 1, '7.0800', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 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 (9397, '3317', 'GOLDEN RAISON', 1, '15.0000', '18.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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, 'golden-raison', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9398, '3318', 'MARIE PANTY LINER', 1, '4.4200', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9399, '3319', 'LETACAM (PIROXICAM)', 1, '0.9800', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-13.0000', 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 (9400, '3320', 'LETAVIN TAB 500MG', 1, '4.2000', '5.5400', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 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 (9401, '3321', 'KOFOF ADULT SYRUP', 1, '7.0000', '9.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (9402, '3322', 'METFORMIN 500MG OA&J', 1, '3.5000', '0.7000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 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 (9403, '3323', 'CEFUROXINE 750 INJ', 1, '1.0000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9404, '3324', 'CEFTRIAZONE 1G INJ', 1, '27.1000', '5.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 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 (9405, '3325', 'ENTRAMOL SINGLES', 1, '5.4000', '2.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9406, '3326', 'S/S SEAS C.L.O 30\'S', 1, '10.5000', '36.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9407, '3327', 'LUMETHER SUSP', 1, '5.4000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9408, '3328', 'ADOM MALAKARE', 1, '10.0000', '13.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 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 (9409, '3329', 'SNICKERS S/S', 1, '5.7000', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9410, '3330', 'SKITTLES', 1, '20.0000', '6.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 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 (9411, '3331', 'JOHNSON BABY OIL S/S', 1, '6.8700', '14.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-4.0000', 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 (9412, '3332', 'ALMOND SEED', 1, '25.0000', '30.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9413, '3333', 'MALAR 2 DS', 1, '10.5000', '14.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '18.0000', 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 (9414, '3334', 'PROMAN 50+', 1, '5.0000', '45.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9415, '3335', 'HYDROCORTISONE CREAM', 1, '1.6000', '17.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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 (9416, '3336', 'WELCH DRINK SMALL', 1, '4.0000', '6.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', 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 (9417, '3337', 'DORCO RAZOR', 1, '1.6000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 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, 'dorco-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 (9418, '3338', 'ALVITE CAPS', 1, '6.6000', '9.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (9419, '3339', 'MENTOS CHN', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 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 (9420, '3340', 'SEPTILIN', 1, '20.1600', '27.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 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 (9421, '3341', 'TRO XIME CEFUROXINE 750', 1, '4.0000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 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 (9422, '3342', 'ECL ANTACID', 1, '4.3200', '7.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 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 (9423, '3343', 'KOFFEX C', 1, '1.6000', '5.5000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-10.0000', 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 (9424, '34445', 'RONFIT COLD P JNR SYRUP', 1, '6.0000', '8.0000', '20.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', 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, 'ronfit-cold-p-jnr-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 (9425, '3345', 'FLUCORON 200MG', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.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 (9427, '93904562', 'BCO STRONG UK ', 1, '14.5700', '19.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, '93904562', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9428, '08479152', 'PREGNAVIT MAX', 1, '97.6500', '129.0000', '0.0000', 'no_image.png', 2, 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, '08479152', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9429, '89969191', 'PREGNAVIT PLUS', 1, '78.1200', '103.5000', '0.0000', 'no_image.png', 2, 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, '89969191', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9430, '57291940', 'BENYLIN 4 FLU 200ML B/S', 1, '40.9000', '54.0000', '0.0000', 'no_image.png', 2, 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, '57291940', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9431, '48507655', 'SANKOFA SHAPE BUILDER', 1, '30.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, 'sankofa-shape-builder', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9432, '65449909', 'SANKOFA BIG PENIS CAPS', 1, '30.0000', '45.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, '65449909', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9433, '75310930', 'SANKOFA  FRESH LADY CAPS', 1, '30.0000', '45.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, 'sankofa-fresh-lady-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 (9434, '98848032', 'SANKOFA  WEIGHT LOSS  CAPS', 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, 'sankofa-weight-loss-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 (9435, '43919263', 'SANKOFA KOOKO CAPS', 1, '30.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, '43919263', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9436, '58640555', 'AANKOFA BOBY PAINS', 1, '30.0000', '45.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, '58640555', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9437, '40927542', 'SANKOFA MARTWA', 1, '30.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, '40927542', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9438, '26736920', 'SANKOFA  BIG PENIS  MIXTURE ', 1, '30.0000', '50.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, '26736920', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9439, '73651398', 'SANKOFA  KOOKO MIXTURE ', 1, '30.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 10, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '73651398', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9440, '02877504', 'SANKOFA BODY PAINS', 1, '30.0000', '40.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, '02877504', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9441, '1808841', 'SANKOFA BODY PAINS', 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, 0, 0, 0, '18088413', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9442, '62933908', 'SANKOFA BIG PENIS  MIXTURE ', 1, '30.0000', '50.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, 'sankofa-big-penis-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 (9443, '53926880', 'SANKOFA KOOKO  MIXTURE ', 1, '30.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, 'sankofa-kooko-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 (9444, '85598566', 'EXECUTIVE TOOTHBRUSH ASHFORD', 1, '1.8000', '2.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, '85598566', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9445, '51778713', 'KOFFEX A', 1, '7.7000', '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, '51778713', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9446, '67960129', 'WARTICON CREAM 5% 3MG', 1, '253.0000', '340.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, '67960129', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9447, '48043609', 'WARTICON  SOLUTION', 1, '220.0000', '295.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, '48043609', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9448, '61769569', 'ASPANOL DRY COUGH', 1, '7.5200', '10.5000', '0.0000', 'no_image.png', 2, 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, '61769569', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9449, '31700114', 'ASPANOL PRODUCTIVE COUGH', 1, '6.5500', '9.0000', '0.0000', 'no_image.png', 2, 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, '31700114', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9450, '64195196', 'B 72', 1, '3.2000', '5.0000', '0.0000', 'no_image.png', 2, 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, '64195196', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9451, '73514651', 'CEFUNAT DRY SYRUP', 1, '10.4800', '15.0000', '0.0000', 'no_image.png', 2, 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, '73514651', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9452, '88847269', 'GLOVES PER PACK', 1, '50.0000', '66.0000', '0.0000', 'no_image.png', 2, 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, '88847269', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9453, '73814348', 'LORATADINE ( LORFAST) 10MG', 1, '11.0000', '14.5000', '0.0000', 'no_image.png', 2, 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, '73814348', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9455, '2094069', 'INOPRIL', 1, '3.2500', '5.0000', '0.0000', 'no_image.png', 2, 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, '20940693', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9456, '13527138', 'INOPRIL OM&J', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 2, 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, '13527138', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9457, '08890691', 'C PHENIRAMINE SYRUP 125ML', 1, '4.3000', '6.0000', '0.0000', 'no_image.png', 2, 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, '08890691', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9458, '31675978', 'CYPRON PLUS TABS', 1, '1.8000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '136.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cypron-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 (9459, '00349619', 'ALBEN SUSP', 1, '3.0000', '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, '00349619', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9460, '37461390', 'ZURION 30\'S S/S', 1, '55.0000', '73.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, '37461390', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9461, '53270643', 'YOVANNY INHALER', 1, '1.5000', '2.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, '53270643', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9462, '54691922', 'ADOM OINTMENT', 1, '4.3000', '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, '54691922', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', 1, '4.0000', '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, '70333103', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9464, '96877078', 'ST JOHN SANITIZER', 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, '96877078', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9465, '73023013', 'KLEANZ SANITIZER 300ML', 1, '8.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, '73023013', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9466, '80697738', 'LIQUFRUTA  GARLIC COUGH ', 1, '20.0000', '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, '80697738', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9467, '87285008', 'CREPE BANDAGE 20CM (4.5M)', 1, '8.0000', '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, '87285008', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9468, '27739747', 'PARMALAT  1KG', 1, '23.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, '27739747', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9469, '40088756', 'PANACHE', 1, '5.0000', '7.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, '40088756', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9470, '54824799', 'COKE/ FANTA/ SPRITE 1L', 1, '9.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, 'coke-fanta-sprite-1l', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9471, '85188534', 'CATUABA DRINK', 1, '16.0000', '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, 'catuaba-drink', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9472, '82987566', 'PARMALAT DRINK S/S', 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, '82987566', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9473, '84382708', 'PHLOROGLUCINOL TAB 80MG 10\'S', 1, '17.0000', '23.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, '84382708', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9474, '56251800', 'DUFENAC (DICLOFENAC 75MG 10\'S', 1, '9.8000', '13.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, 'dufenac-diclofenac-75mg-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 (9475, '95438207', 'FLORADISH SYRUP 200ML', 1, '24.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, '95438207', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9476, '01480261', 'ABSTA SYR', 1, '8.0000', '11.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, '01480261', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9478, '46003503', 'BEAUTY FORMULAS FACIAL SCRUB', 1, '9.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, '46003503', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9479, '09616382', 'JENNIFERS DISINFECTANT WIPES', 1, '3.0000', '6.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, '09616382', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', 1, '14.0000', '18.5000', '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, '17555077', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9481, '23284846', 'PALMER\'S COCOA BUTTER LOTION 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, 'palmers-cocoa-butter-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 (9482, '56424675', ' LUBRICATED  CONDOM 3 IN 1', 1, '1.3000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '508.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56424675', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9483, '23220716', 'SHEA MOISTURE BEARD CON OIL', 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, 'shea-moisture-beard-con-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 (9484, '95856271', 'SHEA MOISTURE LEAVE IN', 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, 'shea-moisture-leave-in', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9485, '91219047', 'SHEA MOISTURE  CONDITIONER', 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, '91219047', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9486, '22626316', 'PEAK MILK POWDER', 1, '23.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, '22626316', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9487, '11890727', 'OVALTINE TEA', 1, '23.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, '11890727', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9488, '87883786', 'GOOD MORNING OATS 500G', 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, 'good-morning-oats-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 (9489, '91743299', 'GOLDEN  COUNTRY BABY MILK', 1, '23.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, 'golden-country-baby-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 (9490, '04136468', 'RAID SPRAY', 1, '19.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, 'raid-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 (9491, '49125747', 'CERELAC MILLET', 1, '17.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, '49125747', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9492, '04045978', ' EASY ON SPRAY STARCH', 1, '17.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, '04045978', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9493, '92646800', 'COLORID SYR', 1, '5.2800', '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, '92646800', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9494, '47295367', 'DIAMICRON MR 30MG TAB 28', 1, '24.5000', '32.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, '47295367', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9495, '23845919', 'ENAFE 60MLN SUSP', 1, '6.0200', '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, '23845919', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9496, '70277717', 'ENAFEN SUSP 60ML', 1, '6.0200', '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, '70277717', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9497, '47344014', 'ALDOMET 500MG', 1, '23.8000', '32.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, '47344014', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9498, '35784269', 'HONEY WORLD 200ML', 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, 'honey-world-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 (9499, '12755178', 'HONEY WORLD 350ML', 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, '12755178', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9500, '04313186', 'SANKOFA BOBY PAIN OIL', 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, '04313186', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9501, '30331101', 'FINE FINE MIXTURE', 1, '14.0000', '19.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, '30331101', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9503, '35154073', 'PELADOL EXTRA TAB', 1, '2.5300', '3.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, '35154073', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9504, '35327913', 'BABYFACE CLEANSER', 1, '7.0000', '9.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, '35327913', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9505, '13744415', 'WELLMAN PLUS', 1, '107.3000', '142.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, 'wellman-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 (9506, '28501629', 'SALBUTAMOL SYRUP ', 1, '4.9800', '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, '28501629', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9507, '99862596', 'BENYLIN CHESTY COUGH', 1, '56.0000', '74.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, '99862596', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9508, '43167014', 'SIMPLE LINCTUS ADULT COUGH', 1, '6.4000', '8.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, 'simple-lintus-adult-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 (9509, '40711800', 'FOLIC ACID (P NOVA)', 1, '0.2500', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '200.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40711800', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9510, '60852266', 'QUINNE SULPHATE TAB', 1, '23.4700', '30.1000', '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, '60852266', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9511, '96030287', 'INFA V WASH', 1, '9.9000', '13.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, '96030287', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9512, '55229207', 'SUPER APETI PLUS TAB', 1, '1.3100', '2.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, '55229207', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9513, '46545234', 'GLUCO NAF C', 1, '11.6000', '15.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, '46545234', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9514, '70994315', 'SAVLON 500MG', 1, '25.0000', '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, 'savlon-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 (9515, '03442188', 'CALCI D DENK 1000/880', 1, '72.3200', '95.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, '03442188', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9516, '41938134', 'LEXOFEN PLUS TAB', 1, '6.0000', '8.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, '41938134', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9517, '80335744', 'RUBBING ALCOHOL SPRAY 750', 1, '18.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, 'rubbing-alcohol-spray-750', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9518, '29126003', 'RUBBING ALCOHOL SPRAY 500ML', 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, '29126003', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9519, '8242102', 'RUBBING ALCOHOL REFILL', 1, '12.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, '82421023', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9520, '56647278', 'ABIKRIST TOM BROWN B/S', 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, '56647278', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9521, '99617542', 'ABIKRIST TOM BROWN S/S', 1, '10.0000', '13.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, '99617542', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9522, '95577326', 'LORSATAN EXERTER 100MG', 1, '10.0000', '13.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, 'lorsatan-exerter-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 (9523, '96030760', 'LOSARTAN 100MG EXETER', 1, '10.0000', '13.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, '96030760', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9524, '24029202', 'DAY AND NIGHT NURSE CAPS', 1, '61.1000', '80.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, 'day-and-night-nurse-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 (9525, '82301277', 'STAMLO 10', 1, '29.9500', '40.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, 'stamlo-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 (9526, '42388700', 'TRAMADOL 100MG INJ', 1, '6.0000', '8.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, 'tramadol-100mg-inj', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9527, '37888912', 'DICLOFENAC SODIUM 75MG/3ML', 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, 'diclofenac-sodium-75mg3ml', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9528, '92146977', 'DETTOL ANTISEPTIC 500ML', 1, '40.0000', '45.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, '92146977', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9529, '46893863', 'BENZYL BENZOATE 25% EXETER', 1, '11.8000', '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, 'benzyl-benzoate-25-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 (9530, '28525039', 'TCP UK 50ML', 1, '28.5000', '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, '28525039', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9531, '33732023', 'KEL 360 TOOTH PASTE', 1, '8.5000', '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, '33732023', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9532, '43814251', 'KEL CHARCOAL TOOTH PASTE', 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, '43814251', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9533, '12303025', 'KEL KIDS TOOTHPASTE', 1, '8.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, '12303025', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9534, '61300947', 'KIDIVITE BABY SYRUP', 1, '19.8900', '26.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, '61300947', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9535, '52629239', 'VIGINAX CREAM', 1, '3.4000', '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, '52629239', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9536, '70263043', 'VIGINAX TAB', 1, '2.6500', '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, '70263043', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9537, '37913304', 'CALCICARE SUSP', 1, '36.0000', '48.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, '37913304', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9538, '3537912', 'CALCICARE TABS', 1, '23.0000', '31.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, '35379120', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9539, '78935091', 'LISTERINE 500ML', 1, '34.6000', '46.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, '78935091', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9540, '55057911', 'AMILOPINE 5MG TEVA', 1, '3.4000', '5.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, '55057911', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9541, '43531163', 'LEVOFLOXACIN (LEVOBACT) 500MG', 1, '42.0000', '56.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, '43531163', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9542, '12835609', 'COLGATE MAXIUM TOOTHPASTE', 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, 'colgate-maxium-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 (9543, '97891196', 'OUT MOSQUITO SPRAY', 1, '20.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, '97891196', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9544, '68006719', 'NUTRISEEDS S/S', 1, '25.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, '68006719', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9545, '95286429', 'NUTRISEEDS B/S', 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, '95286429', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9546, '25835981', 'CLOVE OIL 30ML', 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, '25835981', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9547, '95598304', 'SNAKE/ACNE CREAM', 1, '20.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, 'snakeacne-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 (9548, '10398552', 'ANTI BACTERIAL NEEMS', 1, '10.0000', '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, '10398552', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9549, '26287289', 'DIFLUCAN CAPS', 1, '82.8700', '110.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, '26287289', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9550, '71573669', 'RONVIT COLD TABS', 1, '0.7000', '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, '71573669', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9551, '02957408', 'NEEM SOAP', 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, '02957408', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9552, '19479894', 'SNAKE CREAM', 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, '19479894', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9553, '89192852', 'ACNE CREAM', 1, '20.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, 'acne-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 (9554, '40697769', 'CARROT SOAP S/S', 1, '7.0000', '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, '40697769', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9555, '63656780', 'NUTRA SLIM TEA', 1, '40.0000', '45.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, '63656780', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9556, '98215171', 'RONFIT COLD TAB', 1, '0.4500', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '52.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98215171', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9557, '86492332', 'CHILD CARE COUGH & COLD', 1, '2.9000', '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, '86492332', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9558, '16928590', 'COCONUT OIL 30ML', 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, '16928590', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9559, '44940615', 'TUMERIC POWDER S/S', 1, '12.0000', '15.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, '44940615', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9560, '123456', 'CINNAMON POWDER', 1, '15.0000', '17.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, '67412030', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9561, '27276373', 'NICHE EXTRA DARK CHOCHOLATE', 1, '6.0000', '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, '27276373', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9562, '94994180', 'NICHE DARK CHOCHOLATE', 1, '5.4000', '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, '94994180', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', 1, '5.1000', '6.5000', '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, 0, 0, 0, 'nicheconutoranmilkgingmangcoffcho', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9564, '17623777', 'Pepper powder', 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, 'pepper-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 (9565, '95802365', 'PASSION YOGHURT STRAWBERRY/VANILLA', 1, '7.0000', '9.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, '95802365', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9566, '98215947', 'NESTRIM SYR', 1, '4.9000', '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, '98215947', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9567, '91285798', 'CARBIMAZOLE TAB 5MG UK', 1, '4.2000', '6.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, 'carbimazole-tab-5mg-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 (9568, '35315099', 'DAY NURSE CAPS', 1, '71.0000', '94.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, '35315099', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9569, '14153932', 'PREGNACARE MAX', 1, '175.5000', '232.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, '14153932', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9570, '30228241', 'BENDRO 5MG (ECL)', 1, '0.5700', '1.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, '30228241', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9571, '57676808', 'HAEMOGLOBIN VIT+B12 SYR', 1, '17.1000', '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, '57676808', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9572, '88702320', 'COLGATE TOTAL PASTE', 1, '14.0000', '22.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, '88702320', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9573, '18958409', 'RONFIT COLD SRP', 1, '3.6300', '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, '18958409', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9574, '80996728', 'FIRST LADY BOBY 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, '80996728', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9575, '24432561', 'LOSARTAN TAB 50MG UK', 1, '13.5000', '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, '24432561', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9576, '42057933', 'ZAHARA HERBAL MIX', 1, '16.5000', '22.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, '42057933', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9577, '94410870', 'CETAPOL TABLET 500MG', 1, '0.3200', '0.8000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-382.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94410870', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', 1, '15.0000', '20.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, 'gracias-roasted-cashewnuts-100g', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', 1, '20.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, '39700132', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9580, '60140033', 'IRISH SPRING SOAP', 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, '60140033', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9581, '14851646', 'SECRET ROLL ON', 1, '22.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, '14851646', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9582, '72622863', 'DIAL SOAP', 1, '5.0000', '7.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, 'dial-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 (9583, '83303054', 'LEVER SOAP', 1, '8.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, 'lever-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 (9584, '00710235', 'ISANA MEN DEODORANT SPRAY', 1, '20.0000', '25.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, '00710235', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9585, '73512856', 'BIOCURA SHOWER GEL', 1, '40.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, 'biocura-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 (9586, '89215183', 'BORGES OLIVE OIL EXTRA 125MG', 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, '89215183', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9587, '22989390', 'LUCOSADE 380ML', 1, '8.2000', '10.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, '22989390', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9588, '94799417', 'LUCOSADE CAN', 1, '6.8000', '10.0000', '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, 'lucosade-can', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9589, '57734242', 'FIT TONE CONDOM', 1, '2.0000', '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, '57734242', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9590, '27729749', 'BOTTLE COKE/FANTA/SPRITE', 1, '5.8000', '7.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, '27729749', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9591, '87854230', 'PROCOLD GHANA MADE', 1, '3.0000', '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, '87854230', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9592, '11957121', 'VIVADONA CAPS 20\'S', 1, '3.2000', '2.1000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '42.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11957121', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9593, '17485838', 'PARA CAPLET 16\'S AYRTON', 1, '2.2000', '3.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, 'para-caplet-16s-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 (9594, '47137610', 'FLUCHLOXACILLIN SUSP LETAP', 1, '2.5500', '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, '47137610', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9595, '11957600', 'FIT ONE CONDOMS 3\'', 1, '3.4400', '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, '11957600', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9596, '63576220', 'NEUROPAT CAPS 30\'', 1, '31.1100', '42.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, '63576220', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9597, '04270243', 'MILTON STERILISING TAB', 1, '18.9800', '25.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, '04270243', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9598, '51188638', 'RONFIT COLD D SYRUP', 1, '6.0000', '8.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, '51188638', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9599, '42183241', 'RONFIT COLD FORTE SYRUP', 1, '2.7300', '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, '42183241', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9600, '79238024', 'ASPIRIN 75MG', 1, '1.9000', '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, '79238024', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9601, '92371341', 'LORATADINE', 1, '0.3000', '0.4000', '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, '92371341', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9602, '95323285', 'OPIZOLE CAPS 10*10', 1, '1.0500', '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, '95323285', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9603, '50089033', 'BOTTLE FANTA/COKE 0.25ML SS/S', 1, '2.9000', '3.5000', '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, '50089033', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9604, '96289181', 'DISPERSIBLE ASPIRIN', 1, '2.0000', '2.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, '96289181', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9605, '84590504', 'APTAMIL S/S CAN', 1, '50.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, '84590504', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9606, '90475554', 'DETTOL ANTISEPTIC 75ML S/S', 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, '90475554', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9607, '17054308', 'ALUSIL PLUS SUSP', 1, '1.6000', '3.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, '17054308', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9608, '07418553', 'BRUFEN SUSP (O\'NART)', 1, '3.3000', '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, '07418553', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9609, '47724870', 'MALIN BABY PLUS SYRUP', 1, '9.1000', '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, '47724870', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9610, '98671607', 'RONFIT COLD FORTE', 1, '4.3200', '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, '98671607', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9611, '60468136', 'KY JELLY (KYNECT)', 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, '60468136', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9612, '31883001', 'ADUANA GINSENG POWER S/S', 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, 'aduana-ginseng-power-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 (9613, '68933203', 'ADUANA GINSENG POWER B/S', 1, '30.0000', '45.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, 'aduana-ginseng-power-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 (9614, '52058654', 'SANKOFA BODY PAIN B/G', 1, '30.0000', '60.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, '52058654', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9615, '84222158', 'NAIR  HAIR REMOVER', 1, '17.0000', '23.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, 'nair-hair-remover', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9616, '50092869', 'SMIRMOFF ICE', 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, '50092869', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9617, '15917946', 'AMPICLOX CAPS 500', 1, '2.7700', '4.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, 'ampiclox-caps-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 (9618, '80261915', 'TIGER TABLETS', 1, '3.7500', '7.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, '80261915', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9619, '75512199', 'PARA MANDANOL 500', 1, '6.7000', '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, '75512199', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9620, '50937939', 'PROMETHAZINE TAB', 1, '0.7000', '1.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, '50937939', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9621, '20041834', 'SCOPE MOUTH WASH', 1, '1.5000', '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, '20041834', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9622, '08989624', 'ANEEZA LOTION', 1, '35.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, '08989624', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9623, '36810852', 'ANEEZA MOISTURISER LOTION', 1, '22.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, 'aneeza-moisturiser-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 (9624, '28902983', 'ANEEZA HERBAL CREAM', 1, '22.0000', '25.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, '28902983', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9625, '17202019', 'ANEEZA GOLD BEAUTY CREAM', 1, '22.0000', '25.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, '17202019', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9626, '53173114', 'SUPA RUBBING ALCHOL', 1, '9.1700', '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, '53173114', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9627, '74819267', 'ANEEZA GOLD SOAP', 1, '15.0000', '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, '74819267', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9628, '19433758', 'PRIMALAC 1&2 BABY MILK', 1, '46.1200', '55.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, 'primalac-12-baby-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 (9629, '58336463', 'ACICLOVIR TAB 200MG', 1, '3.8000', '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, '58336463', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9630, '20769595', 'ZYLORIC', 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, '20769595', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9631, '16066236', 'AYULABS GRIPE WATER', 1, '9.9000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '41.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16066236', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9632, '04696207', 'CLARITHROMYCIN 500MG (APTIL PHARM)', 1, '37.3700', '49.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, 'clarithromycin-500mg-aptil-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 (9633, '58280884', 'fluconazole 150mg (TEVA)', 1, '9.7200', '13.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, 'fluconazole-150mg-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 (9634, '38899153', 'FLUXAMOX CAPS 500MG', 1, '6.5000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-93.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '38899153', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9635, '02229088', 'GRISORAL SUSP (HOVI)', 1, '8.6800', '11.5000', '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, '02229088', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9636, '72421421', 'BENYLIN MUCUS MAX 150ML', 1, '57.0000', '75.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, '72421421', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9637, '81450031', 'BENYLIN CHILDREN NIGHT COUGH', 1, '40.6000', '54.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, '81450031', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9638, '23165357', 'BENYLIN MUCUS DECON SYR 100ML', 1, '43.7000', '58.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, '23165357', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9639, '04191658', 'BENYLIN CHILD/THROAT SYRUP 125ML UK', 1, '29.2000', '38.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, '04191658', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9640, '96659237', 'BENYLIN DRY TICKLY COUGH 150ML', 1, '55.8000', '74.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, '96659237', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9641, '23340378', 'BENYLIN CHILDREN CHESTY COUGH', 1, '40.6000', '54.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, 'benylin-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 (9642, '49714185', 'BENYLIN DRY COUGH NIGHT 150ML', 1, '51.3000', '68.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, 'benylin-dry-cough-night-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 (9643, '63516148', 'KOJACH MOUTH WASH', 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, 'kojach-mouth-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 (9644, '03818886', 'KOJACH CHARCOAL PASTE 75ML', 1, '3.6000', '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, '03818886', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9645, '86012648', 'KOJACH F PASTE', 1, '5.4000', '7.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, '86012648', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9646, '91091174', 'KOJACH FLOURIDE PASTE', 1, '2.5000', '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, '91091174', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9647, '86395069', 'KOJACH TOOTH/CHARCOAL BRUSH', 1, '1.8000', '2.5000', '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, 'kojach-toothcharcoal-brush', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9648, '71133764', 'FIESTA LUBRICANT GEL 40ML BIG', 1, '16.3300', '21.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, 'fiesta-lubricant-gel-40ml-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 (9649, '77652746', 'GEBEXIME TAB 500MG', 1, '17.3000', '23.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, '77652746', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9650, '77292553', 'NIVEA LIP BALM', 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, '77292553', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9651, '63761955', 'OMEPRAZOLE 20MG GASTRO RESISTANT', 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, 'omeprazole-20mg-gastro-resistant', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9652, '77812432', 'BLACK SEED HERBAL SOAP', 1, '7.5000', '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, '77812432', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9653, '2483721', 'PERFECTIL PLATIUM SKIN RADIANCE ULITIMATE', 1, '46.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, '24837213', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9654, '34960975', 'OMEPRAZOLE 20MG (OMIZEC) CAPS 28\'S', 1, '18.1100', '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, '34960975', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9655, '10425130', 'DALIHA SLIM TEA', 1, '38.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, 'daliha-slim-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 (9656, '03335724', 'DALIHA  TURKEYBERRY TURMERIC TEA', 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, 'daliha-turkeyberry-turmeric-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 (9657, '12923665', 'DALIHA TURKEY BERRY CINNAMON TEA', 1, '37.0000', '49.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, 'daliha-turkey-berry-cinnamon-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 (9658, '64116423', 'DALIHA IMMUNKLIN TEA', 1, '32.0000', '42.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, '64116423', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9659, '53112216', 'DALIHA BERRY GINGER TEA', 1, '28.0000', '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, '53112216', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9660, '60590171', 'DALIHA TURKEY BERRY TEA', 1, '27.0000', '36.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, 'daliha-turkey-berry-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 (9661, '79559578', 'DALIHA TURKEY BERRY JUICE', 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, '79559578', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9662, '27923036', 'CERUMOL EAR DROPS', 1, '25.2200', '33.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, '27923036', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9663, '49169056', 'AMLODIPINE 10MG (STAMLO)', 1, '18.0000', '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, '49169056', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9664, '55965831', 'PARACETAMOL SUPP 10\'S (PARAMOL)', 1, '6.5000', '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, 'paracetamol-supp-10s-paramol', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9665, '80134213', 'GAVISCON PEPPERMINT SUSP 150ML', 1, '30.7500', '37.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, 'gaviscon-peppermint-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 (9666, '25624901', 'PROSTAT 60 CAPS 30\'S', 1, '90.0000', '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, 'prostat-60-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 (9667, '25127407', 'KAYVIT VIT C', 1, '17.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, '25127407', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9668, '54007086', 'FLUCOXACILLIN 500MG', 1, '13.9000', '18.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, '54007086', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9669, '56229285', 'BENDRO 2.5 CRESCENT', 1, '4.6000', '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, '56229285', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9670, '98873444', 'CUSSIONS BABY SET', 1, '45.0000', '50.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, '98873444', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9671, '67250351', 'FLEMING 457MG SUSP', 1, '32.0000', '42.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, '67250351', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9672, '71008212', 'CHILD CARE VIT C SYRUP', 1, '2.0500', '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, '71008212', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9673, '95233554', 'VITAMIN C ZINC SYR BEL LONDON', 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, '95233554', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9674, '31168985', 'ARTEMETER INJ 80MG CIRON 2ML', 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, '31168985', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9677, '29001253', 'FLUCLOX CAPS 250MG (M&G) ', 1, '2.2500', '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, 'flucox-caps-250mg-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 (9679, '48948393', 'GLIMEPIRIDE DENK 2MG', 1, '36.2000', '48.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, '48948393', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9680, '90594456', 'BORGES GARLIC OIL 500ML', 1, '44.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, '90594456', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9681, '02449841', 'COUNTRY MILK DRINK', 1, '7.8000', '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, 'country-milk-drink', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9682, '49817336', 'KILIT MOSQUITO SPRAY', 1, '13.5000', '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, 'kilit-mosquito-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 (9683, '59942011', 'BETA MALT DRINK', 1, '4.2000', '6.0000', '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, '59942011', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9684, '12336079', 'STREPTOL THROAT LOZ 10\'S', 1, '3.0000', '4.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, 'streptol-throat-loz-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 (9685, '3434209', 'ACTIFED MULTI ACTION TABS 12\'S', 1, '46.0000', '61.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, '34342097', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9686, '65274615', 'HYDROCORTISONE CREAM (SOVEREIGN) 30G', 1, '13.4900', '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, 'hydrocortisone-cream-sovereign-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 (9687, '38560750', 'VITALIA DRINK 250ML S/S', 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, 'vitalia-drink-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 (9688, '06131493', 'JUSS DRINK 200ML S/S', 1, '3.4000', '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, '06131493', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9689, '11384296', 'AZITHROMYCIN SUSP 200MG/5ML', 1, '40.1400', '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, 'azithromycin-susp-200mg5ml', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9690, '92137089', 'VITANE DROP', 1, '25.9500', '34.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, '92137089', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9691, '09276419', 'WELLKID SYR', 1, '61.8000', '82.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, '09276419', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9692, '23051102', 'DOPATAB M250', 1, '4.7800', '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, '23051102', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9693, '66923421', 'Calcough Infant syrup', 1, '41.8000', '55.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, 'calcough-infant-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 (9694, '53696612', 'GOLD COAST COCOA', 1, '16.3000', '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, '53696612', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9695, '27387632', 'YOGOFRESH', 1, '7.5000', '10.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '353.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27387632', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9696, '32520701', 'TCP ANTISEPTIC LIQUID 100ML', 1, '34.8900', '46.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, '32520701', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9697, '32019049', 'ACICLOVIR 400MG (RANBAXY)', 1, '7.4600', '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, '32019049', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9698, '93279570', 'VITAGLOBIN MG', 1, '6.8000', '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, '93279570', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9699, '95396298', 'HOLLANDIA DRINK S/S', 1, '5.0000', '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, '95396298', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9700, '95020926', 'DETTOL ANTISEPTIC 125ML', 1, '14.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, '95020926', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9701, '27495096', 'SEBAMED FACIAL SOAP', 1, '23.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, '27495096', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9702, '02434950', 'ASTOR BISCUIT', 1, '15.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, '02434950', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9703, '40596124', 'PREMIUM BISCUIT', 1, '20.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, '40596124', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9704, '54892929', 'SELECTION BISCUIT', 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, 1, 1, 0, '54892929', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9705, '85653062', 'CHOCOMO BISCUIT', 1, '6.0000', '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, '85653062', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9706, '79543272', 'COOKIES DANE', 1, '8.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, '79543272', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9707, '97718345', 'CHOCO COOKIES', 1, '1.2000', '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, '97718345', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9708, '56114677', 'LORATADINE TAB 10MG 30\'S', 1, '5.4000', '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, '56114677', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9709, '43200173', 'OMERAZOLE 20MG TABS 28\'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, 'omerazole-20mg-tabs-28s', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9710, '06376124', 'OMEPRAZOLE 40MG CAPS 28\'S', 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, 'omeprazole-40mg-caps-28s', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9711, '79932934', 'NORMAL SALINE DROP (MANDANOL)', 1, '5.2800', '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, '79932934', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9712, '36217116', 'CREST PLUS SCOPE PASTE', 1, '20.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, '36217116', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9713, '60887627', 'LETAPLUX B SRP', 1, '1.5200', '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, 'letaplux-b-srp', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9714, '52997990', 'PROSTAJOY', 1, '29.7000', '39.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, '52997990', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9715, '79148002', 'KOFLET LOZENGES', 1, '10.4000', '14.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, 'koflet-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 (9716, '88662203', 'EMGIPROFEN  SUSP 100ML', 1, '5.3000', '7.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, 'emgiprofen-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 (9717, '59692164', 'DAWN OF LIFE  200ML', 1, '19.0000', '25.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, '59692164', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9718, '64620536', 'AMINO PEP 200ML', 1, '15.9500', '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, '64620536', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9719, '18063155', 'LOPERAMINE CAPS FALOPSTIN', 1, '0.6000', '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, '18063155', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9720, '41639032', 'ANCIGEL SUSP', 1, '14.5000', '19.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, '41639032', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9721, '99807619', 'AMUROX SUPS (CEFUROXIME AXETIL)', 1, '11.7000', '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, 'amurox-sups-cefuroxime-axetil', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9722, '09730188', 'MUCOSLY ADULT SYR 100ML', 1, '5.8000', '8.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, '09730188', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9723, '60831092', 'MUCOSLY JNR SYR 100ML', 1, '4.5000', '6.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, '60831092', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9724, '08519003', 'FEROCLEAR SYR 200ML', 1, '28.5000', '38.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, '08519003', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', 1, '5.0000', '7.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, '19485668', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9726, '79271717', 'SHALTOUX COUGH SYR 100ML', 1, '7.5000', '10.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, '79271717', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9727, '67843986', 'KIFARU TAB 100ML', 1, '6.7000', '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, '67843986', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9728, '36721830', 'KIFARU TAB 50ML', 1, '5.4000', '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, '36721830', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9729, '11889818', 'FABRIN TAB', 1, '0.6200', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '203.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11889818', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9730, '76969575', 'HAEMO FORTE SYRUP 200ML', 1, '27.8000', '37.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, '76969575', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9731, '97052947', 'CONTREG SYR 30ML', 1, '4.0000', '5.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, '97052947', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9732, '99234137', 'CONTREG TAB ', 1, '0.7000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '207.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '99234137', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9733, '63797685', 'HISTERGAN CREAM 25G', 1, '28.4000', '37.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, 'histergan-cream-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 (9734, '25981911', 'SHALTOUX LOZENGES', 1, '0.4600', '0.7000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '624.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '25981911', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9735, '62036461', 'ZINOL PARA SUSP 100ML', 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, '62036461', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9736, '20947436', 'PARAKING SYRUP 100ML', 1, '6.2000', '8.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, '20947436', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9737, '79816525', 'ZEROCID PLUS SUSP 200ML', 1, '10.0000', '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, '79816525', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9738, '37893224', 'ZEROCID SUSP 200ML', 1, '8.8000', '12.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, '37893224', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9739, '74880485', 'SAMALIN LONZENGES', 1, '2.1500', '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, '74880485', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9740, '28634519', 'ZINOL TAB PARA 500MG', 1, '0.6700', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '297.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '28634519', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9741, '02164633', 'MAGNAVIT CAPS', 1, '10.9800', '14.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, '02164633', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9742, '51812839', 'KOFOF FAMILY SYRUP150ML', 1, '4.8000', '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, '51812839', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9743, '28214116', 'KLIRE COUGH SYRUP 125ML', 1, '15.2000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '32.5000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '28214116', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', 1, '11.7000', '15.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, 'super-apeti-plus-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 (9745, '15413407', 'CAFALGIN JRN SUSP 100ML', 1, '8.6000', '11.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, '15413407', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9746, '34591406', 'EUROVIT MULTIVIT GUMMIES', 1, '13.5000', '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, 'eurovit-multivit-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 (9747, '02329475', 'VIN C 100MG', 1, '0.6500', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '323.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vin-c-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 (9748, '75883490', 'CETAPOL 500MG 20\'S TAB', 1, '2.5300', '3.5000', '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, '75883490', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9749, '22739967', 'PMF 200G DENNEX', 1, '8.2900', '11.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, '22739967', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9750, '14293840', 'KLIRE TABLET 10\'S', 1, '5.6000', '7.5000', '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, '14293840', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9751, '95396700', 'BEL AQUA MEDIUM', 1, '1.8000', '2.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, '95396700', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9752, '56612182', 'BEL AQUA SMALL', 1, '0.8700', '1.2000', '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, 'bel-aqua-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 (9753, '81638164', 'DOMINION POWDER ', 1, '52.0000', '69.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, '81638164', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9754, '16090219', 'CLOPIMOL TAB', 1, '1.8000', '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, '16090219', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9755, '11673950', 'ZAHARA CAPS', 1, '16.5000', '22.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, '11673950', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9756, '8649528', 'DOMINION POWDER', 1, '52.0000', '69.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, '86495284', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9757, '46466570', 'PROTAJOY', 1, '26.0000', '34.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, '46466570', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9758, '35077850', 'ZAMAC TAB 100MG', 1, '3.1400', '4.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, 'zamac-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 (9759, '55914769', 'CANDID V GEL 30G', 1, '19.6800', '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, '55914769', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9760, '13208200', 'RUFEDOL TAB', 1, '1.1000', '2.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, '13208200', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9761, '83249404', 'IBUCAP FORTE CAPS', 1, '2.1000', '3.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, '83249404', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9762, '05985917', 'CLEAR INHALER', 1, '2.4600', '3.5000', '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, '05985917', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9763, '27112151', 'AMCICLOX 250MG CAP LETAP', 1, '2.8000', '4.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, '27112151', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9764, '10946958', 'FEMISTAR PER STRIP', 1, '6.6000', '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, '10946958', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9765, '10611001', 'NEUROPAT CAPS PER STRIP', 1, '10.7000', '14.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, 'neuropat-caps-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9766, '62814329', 'MEDGLOBIN CAPS PER STRIP', 1, '12.7500', '17.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, '62814329', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9767, '52083429', 'BEAUTEX PER 10CAPS', 1, '10.6000', '14.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, 'beautex-per-10caps', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9768, '42324275', 'WELLTEEN HER PER STRIP', 1, '17.0000', '22.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, '42324275', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9769, '11253870', 'WELLKID CHEWABLE PER STRIP', 1, '19.8200', '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, 'wellkid-chewable-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9770, '64377760', 'PROMECINE SYRUP 125ML', 1, '4.0200', '5.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, 'promecine-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 (9771, '66803884', 'ZYMAX  250MG', 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, 'zymax-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 (9772, '72784866', 'EUROVIT MULTIVIT PER GUMM', 1, '0.7000', '1.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, '72784866', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9773, '36527078', 'SYMBICORT INHALALER', 1, '48.1000', '63.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, 'symbicort-inhalaler', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9774, '60625000', 'LUBRIMAX JELLY 85G', 1, '17.0000', '22.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, '60625000', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9775, '62426464', 'MALAR 2 SUSP', 1, '10.4000', '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, '62426464', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9776, '61266457', 'MAGNAVIT SYRUP', 1, '7.8500', '10.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, '61266457', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9777, '90211082', 'CANESTEN CREAM', 1, '22.9000', '30.2300', '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, '90211082', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9778, '06911698', 'MENSTAK TAB', 1, '2.3000', '3.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, '06911698', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9779, '73495973', 'COVONIA CHESTY', 1, '23.0000', '30.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, '73495973', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9780, '33770583', 'COVONIA CHESTY S/F 150ML', 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, 'covonia-chesty-sf-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 (9781, '99039575', 'BC 56 CREAM', 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, '99039575', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9782, '24286086', 'COVERSYL 10MG', 1, '158.0000', '208.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, 'coversyl-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 (9783, '48567173', 'NEO HYCOLEX 10ML', 1, '22.0000', '29.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, '48567173', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9784, '64812766', 'Folic Acid tab Almus 5mg', 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, '64812766', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9785, '79529364', 'Rizole Susp 100ml', 1, '3.6000', '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, 'rizole-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 (9786, '31318379', 'Bisoprolol tab 10mg', 1, '8.5000', '11.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, '31318379', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9787, '96874293', 'OLIGOCARE PER STRIP', 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, 'oligocare-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9788, '81140195', 'REDSUN PER SACHET', 1, '1.8800', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '153.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81140195', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9789, '63705779', 'SPERMAN PER TAB', 1, '0.3000', '0.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, '63705779', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9790, '99378779', 'HINDI HERBAL MIXTURE', 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, '99378779', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9791, '08517383', 'BASECOLD TAB', 1, '1.0000', '1.5000', '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, '08517383', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9792, '95723054', 'GOLDEN GARLIC PILL', 1, '19.5000', '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, 'golden-garlic-pill', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9793, '49902114', 'COVONIA NIGHT TIME 150ML', 1, '23.5000', '31.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, 'covonia-night-time-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 (9794, '04947224', 'TOBCEE TABS', 1, '1.0800', '1.5000', '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, '04947224', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9795, '41692852', 'EMIGIVIT (MULTIVITAMIN) TABLETS', 1, '0.4000', '0.5000', '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, 'emigivit-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 (9796, '90432278', 'WELCH\"S CAN', 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, '90432278', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9797, '91200097', 'RONFIT COLDEXTRA TAB', 1, '2.0000', '3.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, '91200097', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9798, '55455893', 'ENACEF 250MG', 1, '16.8000', '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, '55455893', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9799, '60752483', 'ENTERICA', 1, '8.0000', '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, '60752483', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9800, '38973491', 'GANA BALM B/S', 1, '14.0000', '19.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, '38973491', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9801, '33158817', 'LEO RUB', 1, '3.2300', '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, '33158817', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9802, '27181328', 'LISINOPRIL 5MG TAB UK', 1, '8.9100', '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, 'lisinopril-5mg-tab-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 (9803, '16043207', 'HOT NASO NASAL', 1, '4.5500', '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, '16043207', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9804, '36365929', 'COLD NASO NASAL', 1, '3.0500', '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, '36365929', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9805, '65440692', 'FERROVITA SYRUP', 1, '31.5000', '42.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, 'ferrovita-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 (9806, '15673234', 'HERBLOZ LOZENGES', 1, '1.0800', '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, '15673234', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9807, '46079779', 'EXTRAFLEX CAP', 1, '36.8000', '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, '46079779', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9808, '71846421', 'SECNIDEX 1G TAB', 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, 'secnidex-1g-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 (9809, '75832070', 'POFAKOF BABY', 1, '7.3000', '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, '75832070', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9810, '08998339', 'NEOFERON', 1, '9.8000', '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, '08998339', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9811, '32783983', 'BENYLIN 4 FLU LIQUID 100ML', 1, '22.9800', '31.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, '32783983', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9812, '44370698', 'DAY AND NIGHT NURSE PER STRIP', 1, '20.0000', '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, '44370698', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9813, '71936867', 'PIROXILEX 20MG CAP', 1, '1.4900', '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, 'piroxilex-20mg-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 (9814, '07253413', 'HEPTOLIF TABLETS', 1, '0.9000', '1.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, '07253413', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9815, '04029155', 'BLOCOLD TABLET', 1, '1.0700', '1.5000', '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, '04029155', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9816, '54889459', 'VONEERO DRINK', 1, '5.2000', '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, '54889459', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9817, '44012910', 'NESBEN SUSP', 1, '5.9800', '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, '44012910', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9818, '16067074', 'TANZOL SUSP', 1, '1.5000', '3.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, '16067074', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9819, '91890544', 'BLUMOON 100MG', 1, '3.6300', '5.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, '91890544', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9820, '82801354', 'BLUMOON 50MG', 1, '2.2000', '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, '82801354', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9821, '50696548', 'PARAFENAC', 1, '2.3000', '3.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, '50696548', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9822, '47018837', 'RENALKA', 1, '23.8000', '31.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, '47018837', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9823, '80168949', 'OSTEOCARE CHEWABLE TAB', 1, '13.2500', '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, '80168949', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9824, '52927057', 'THYMAIR LOZ', 1, '12.4300', '16.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, 'thymair-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 (9825, '21168204', 'MENSTAK', 1, '2.3000', '3.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, '21168204', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9826, '06168620', 'LAW CARE MIX', 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, '06168620', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9827, '96346762', 'SCIMETHER TABLETS', 1, '16.6600', '22.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, 'scimether-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 (9828, '00036016', 'PRINGLES CUP S/S', 1, '2.9100', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-121.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00036016', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9829, '40658408', 'Dove Roll on', 1, '11.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, 'dove-roll-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 (9830, '04822009', 'ADMIRE BISCUITS ', 1, '2.1000', '3.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, '04822009', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9831, '14060937', 'Hayhay biscuits ', 1, '2.3000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '121.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14060937', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9832, '55392512', 'BISCOVERY BISCUITS ', 1, '2.1000', '3.5000', '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, 'biscovery-biscuits', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9833, '69281403', 'PATANOL 0.1%', 1, '29.5500', '39.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, 'patanol-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 (9834, '84800080', 'OMESHAL CAPS', 1, '1.4500', '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, '84800080', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9835, '93439136', 'HONEY GINSENG', 1, '35.0000', '46.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, '93439136', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9836, '50969936', 'HONEY GINGER', 1, '35.0000', '46.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, '50969936', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9837, '00331136', 'HONEY BABY', 1, '20.0000', '26.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, '00331136', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9838, '50096747', 'HONEY  USA 400g', 1, '25.0000', '33.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, 'honey-usa-400g', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', 1, '15.0200', '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, 'diclofenac-75mg-sandoz-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 (9840, '00885109', 'LEXOCAP', 1, '1.5000', '2.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, '00885109', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9841, '1270489', 'LUMIZAP SUSP 60ML', 1, '5.1900', '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, '12704891', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9842, '38060261', 'FASIPRO TAB 10×10', 1, '7.9900', '11.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, '38060261', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9843, '65506359', 'SHAL ARTEM FORTE 80/480', 1, '6.5000', '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, '65506359', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9844, '48755687', 'AMOXYCILLIN 500MG M&G', 1, '2.5000', '3.5000', '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, '48755687', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9845, '86814231', 'METROGR-F JUNIOR SUSP', 1, '5.7000', '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, '86814231', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9846, '45939879', 'XZOLE F SUSP', 1, '7.3000', '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, '45939879', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9847, '00996864', 'GERICARE CAPS', 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, '00996864', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9848, '80594538', 'RUFENAC GEL', 1, '2.8000', '4.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, '80594538', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9849, '39512404', 'DICLOLEX POWER HEAT GEL', 1, '5.9000', '8.0000', '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, '39512404', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9850, '31114846', 'INFA V WASH 100ML', 1, '17.6000', '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, 'infa-v-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 (9851, '82959637', 'BIBINI TOMA PLUS', 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, '82959637', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9852, '82959638', 'BIBINI TOMA PLUS', 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, 0, 0, 0, '82959637', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9853, '46609912', 'CANDID  V1 PESSARY', 1, '7.2300', '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, 'candid-v1-pessary', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9854, '01673562', 'CANDID CREAM', 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, '01673562', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9855, '60871898', 'POLYGYNAX PESSARY 6\"s', 1, '48.0000', '63.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, 'polygynax-pessary-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 (9856, '53412793', 'ROXIDOL', 1, '4.5000', '6.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, 'roxidol', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9857, '65314822', 'SHAL ARTEM DISPERSIBLE', 1, '2.6000', '3.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, '65314822', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9858, '32829591', 'CYPRODEN SYR 200ML', 1, '7.7000', '10.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, '32829591', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9861, '41438752', 'OSTEOCARE PLUS', 1, '89.0000', '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, '41438752', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9862, '30903598', 'FERICON SYR 200ML', 1, '16.5000', '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, '30903598', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9863, '77851271', 'ONITA SYR 200ML', 1, '15.5000', '20.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, '77851271', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9864, '42711107', 'ONIDOLL TAB', 1, '1.6000', '2.5000', '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, 'onidoll-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 (9865, '96866713', 'MALUFAN TAB', 1, '10.0000', '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, 'malufan-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 (9866, '62669707', 'SHALTOUX HERBAL', 1, '9.5500', '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, '62669707', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9867, '87882090', 'CELEBREX PER CAPS', 1, '9.4000', '12.5000', '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, '87882090', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9868, '57259936', 'SHALTOUX COUGH LOZ', 1, '1.0000', '2.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, '57259936', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9869, '30145199', 'HERBLOZ LOZ PACK', 1, '5.8000', '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, '30145199', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9870, '87405612', 'PRINGLES MEDIUM CUP', 1, '7.0000', '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, 'pringles-medium-cup', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9871, '58458141', 'COKE BIG 1.5L', 1, '15.0000', '20.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, 'coke-big-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 (9872, '27039848', 'GEBEXIME 500MG TAB', 1, '17.3000', '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, 'gebexime-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 (9873, '27654005', 'COLDIRON SYR 125ML', 1, '9.0000', '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, '27654005', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9874, '60401735', 'HEAVEN MOSQUITO SPRAY B/S', 1, '40.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, '60401735', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9875, '27670674', 'OUT SPRAY S/S', 1, '13.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, '27670674', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9876, '80439405', 'HAEM UP SYR 200ML', 1, '18.0000', '24.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, '80439405', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9877, '49909876', 'DALIHA TURKEY BERRY MINT', 1, '33.0000', '44.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, '49909876', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9878, '15198319', 'GEBEXIME SUSP', 1, '9.6000', '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, '15198319', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9879, '59571576', 'OPTIZOLE', 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, '59571576', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9880, '56162993', 'LINCTUS JUNIOR SYR', 1, '4.9000', '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, '56162993', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9881, '67043330', 'HAPPYRONA', 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, '67043330', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9882, '37637740', 'T.ROLL PACK (PRIDE)', 1, '14.3500', '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, 'troll-pack-pride', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9883, '53146434', 'AZITHROMYCIN 500MG TEVA', 1, '19.8000', '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, 'azithromycin-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 (9885, '28207929', 'KEFROX 500MG TAB', 1, '30.0000', '40.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, 0, 0, 0, '28207929', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9886, '51921108', 'DREZ V GEL 30G', 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, '51921108', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9887, '60873036', 'DREZ V GEL 30G', 1, '17.5000', '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, 0, 0, 0, '60873036', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9888, '22005830', 'CELECOXIB 200MG EXETER', 1, '19.8000', '26.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, 'celecoxib-200mg-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 (9889, '33111267', 'MAALOX STICK PACKS 20\'S', 1, '1.7000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '43.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '33111267', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9890, '10211509', 'SEVEN SEAS JOINTCARE ACTIVE', 1, '109.9000', '145.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, '10211509', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', 1, '17.4000', '23.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, 'tobcee-forte-vitamin-c-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 (9892, '60055615', 'VAGID CL SUPPOS', 1, '14.0000', '18.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, '60055615', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9893, '09986672', 'BORGES OIL 500ML', 1, '44.0000', '58.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, '09986672', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9894, '24864084', 'HYDROGEN PEROXIDE MAL.TITI', 1, '4.5000', '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, '24864084', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9895, '41497867', 'CLOVES M/S', 1, '8.0000', '10.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, '41497867', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9896, '82312576', 'CLOVES B/S', 1, '15.0000', '20.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, '82312576', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9897, '11531163', 'GEBEXIME 500MG TAB PER STRIP', 1, '1.7300', '2.3000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '38.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11531163', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9898, '82895094', 'KEFROX 500MG TAB PER STRIP', 1, '3.0000', '4.0000', '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, '82895094', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9899, '88557858', 'IBUPROFEN SUSP', 1, '23.8000', '31.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, '88557858', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9900, '68117970', 'GRMox SUSP', 1, '3.7200', '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, '68117970', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9901, '39169008', 'ATORVASTATIN 40MG', 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, '39169008', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9902, '14298485', 'CELECOXIB 200MG OER STRIP', 1, '8.7300', '12.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, '14298485', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9903, '82655350', 'ORAL B PASTE FAMILY SIZE', 1, '18.3000', '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, 'oral-b-paste-family-size', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9904, '74752583', 'AXE DEODORANT SPRAY', 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, '74752583', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9905, '85810978', 'TAMSULOSIN 400MG CAPS TEVA', 1, '17.0000', '22.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, 'tamsulosin-400mg-caps-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 (9906, '92944648', 'EXCLOFEN EYE DROPS 1ML', 1, '5.7500', '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, '92944648', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9907, '25921411', 'SOBOLO OLUNKA', 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, 'sobolo-olunka', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9908, '45035843', 'SOBOLO CUTCUT OLUNKA', 1, '12.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, '45035843', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9909, '64471918', 'ALLACAN 10MG (CETIRIZINE)', 1, '4.7000', '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, '64471918', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9910, '79540803', 'MAN UP CAPS', 1, '130.0000', '172.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, 'man-up-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 (9911, '83156611', 'T SEC 1G TAB', 1, '2.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, 't-sec-1g-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 (9912, '45196430', 'ADOM LADY CAPS', 1, '14.4000', '19.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, '45196430', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9913, '43329922', 'ADOM LADY MIXTURE', 1, '14.3000', '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, '43329922', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9914, '45710979', 'FLEMING 1000MG TABLET', 1, '46.9900', '62.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, 'fleming-1000mg-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 (9915, '10239227', 'LUZATIL 20/120MG', 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, '10239227', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9916, '67979926', 'EXETMOMOL EYE DROP', 1, '4.8000', '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, '67979926', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9917, '20455450', 'CAFALGIN CAPLET', 1, '1.2300', '2.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, 'cafalgin-caplet', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9918, '29475936', 'AMUSU MIX', 1, '9.5000', '12.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, '29475936', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9919, '87625484', 'CHOCO CREAM B/S', 1, '9.5000', '12.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, '87625484', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9920, '93752243', 'ZIPFERON CAPS', 1, '4.9000', '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, '93752243', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9921, '29778181', 'HEMOFORCE PLUS SYR', 1, '9.3000', '12.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, 'hemoforce-plus-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 (9922, '72236986', 'BETASOL CREAM 30G', 1, '3.1500', '4.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, 'betasol-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 (9923, '84008252', 'CANDID B CREAM', 1, '8.7000', '11.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, '84008252', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9924, '37923548', 'GOGYNAX TABLET 100MG', 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, '37923548', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9925, '39839096', 'EMIGKOF S SYR', 1, '5.1000', '7.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, '39839096', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9926, '51491650', 'EMIGKOF D SYR', 1, '5.1000', '7.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, '51491650', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9927, '05772370', 'HEMOFORCE FAMILY SYR', 1, '6.6500', '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, '05772370', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9928, '22127323', 'TINATET BF BF CAPS', 1, '26.4000', '35.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, '22127323', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9929, '92964585', '3TOL ANTICEPTIC 250ML', 1, '4.5000', '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, '92964585', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9930, '60204824', '3TOL ANTICEPTIC 500ML', 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, '60204824', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9931, '34700573', 'ATENOLOL 50MG (ECL)', 1, '3.9000', '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, 'atenolol-50mg-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 (9932, '21253402', 'GLUCO-NAF PINAPPLE', 1, '11.6000', '15.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, 'gluco-naf-pinapple', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9933, '20719624', 'EPIFENAC EYE DROP 1MG/ML', 1, '18.9000', '25.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, 'epifenac-eye-drop-1mgml', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9934, '83788003', 'FEROFIX CAP', 1, '4.7000', '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, '83788003', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9935, '67891445', 'AMITRIPTYLINE 50MG', 1, '12.4200', '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, 'amitriptyline-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 (9936, '34037196', 'ADULT DIAPER PUREFIT', 1, '45.0000', '55.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, '34037196', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9937, '09558515', 'ADULT DIAPER SLEEPY', 1, '50.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, '09558515', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9938, '6455560', 'ADULT DIAPER PUREFIT', 1, '45.0000', '55.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, 'adult-diaper-purefit', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9939, '15088867', 'GIVITE TOMBROWN S/S', 1, '16.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, '15088867', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9940, '89490205', 'PATEL GINGER HONEY CHIP ', 1, '10.0000', '13.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, 'patel-ginger-honey-chip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9941, '37688522', 'HOLLANDIA M/S', 1, '7.5000', '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, '37688522', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9942, '69833688', 'SKYCLAV 228.5MG', 1, '12.7000', '18.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, 'skyclav-2285mg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9943, '21312005', 'SKYCLAV 457.5MG', 1, '14.3000', '19.0000', '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, '21312005', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9944, '63541386', 'AMIDREAM', 1, '5.0000', '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, 'amidream', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9945, '60409156', 'AZIROCIN SUSP', 1, '14.1000', '19.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, '60409156', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9946, '04292515', 'SKYCLAV  625', 1, '16.0000', '21.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, '04292515', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9947, '97967472', 'STOPKOF DRY COUGH ADULT', 1, '8.5000', '11.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, 'stopkof-dry-cough-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 (9948, '42808641', 'AMOXYCILLIN SUSP EXETER 100ML', 1, '7.8000', '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, '42808641', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9949, '52295419', 'HEALTHLINK MENOPAUSE TABLET', 1, '37.9000', '50.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, '52295419', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9950, '87916408', 'HEALTHLINK GLUCOSAMINE & CHODROITIN TABLET', 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, '87916408', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9951, '87572191', 'HEALTHLINK OMEGA 3 FISH OIL GEL', 1, '36.0000', '47.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, '87572191', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9952, '90382407', 'CARVEDI DENK 6.25MG TAB', 1, '9.2600', '12.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, 'carvedi-denk-625mg-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 (9953, '21608860', 'ARZIGLOBIN PLUS SYR', 1, '8.9000', '12.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, 'arziglobin-plus-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 (9954, '20927323', 'STOPKOF COLD AND CATARRH SYR', 1, '8.4000', '11.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, 'stopkof-cold-and-catarrh-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 (9955, '44275786', 'AYRTON MULTIVITAMIN SYR', 1, '5.8000', '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, 'ayrton-multivitamin-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 (9956, '45562069', 'SKYCEF 500MG TABLET', 1, '18.4000', '24.2900', '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, '45562069', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9957, '08199612', 'SKYCEF 250MG TABLET', 1, '8.8000', '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, 'skycef-250mg-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 (9958, '79907714', 'AZYCIN 500MG', 1, '7.9000', '10.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, '79907714', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9959, '13716082', 'LUMIZAP 80/480MG TABLET', 1, '5.8800', '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, '13716082', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9960, '23663357', 'AMOXYCILLIN 500MG M&G TABLET', 1, '3.3000', '4.5000', '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, 'amoxycillin-500mg-mg-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 (9961, '09856596', 'SASSO SPRAY S/S', 1, '23.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, '09856596', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9962, '97855165', 'SASSO COIL', 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, '97855165', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9963, '08133898', 'HEAVEN COIL', 1, '7.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, '08133898', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9964, '68332627', 'PRECIOUS HONEY 500ML', 1, '40.0000', '48.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, 'precious-honey-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 (9965, '37802713', 'PRECIOUS HONEY 250ML', 1, '23.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, '37802713', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9966, '88652515', 'STRETCHMARKS SOAP', 1, '10.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, '88652515', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9967, '56503866', 'ULTRA SLIM TEA PER PACK', 1, '6.6000', '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, '56503866', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9968, '79716492', 'HYDROCORTISONE 1%CREAM LAVINA', 1, '10.9000', '14.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, '79716492', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9969, '53979269', 'AMOXYCILLIN SUSP EXETER', 1, '7.8000', '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, 'amoxycillin-susp-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 (9970, '85007117', 'CANDID V GEL 30G', 1, '19.6800', '26.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, '85007117', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9971, '44438540', 'REFLO\'S PAD', 1, '5.8300', '8.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, '44438540', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9972, '79584555', 'ADULT DIAPER PREDO', 1, '45.0000', '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, 'adult-diaper-predo', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9973, '05115075', 'FLUCOR DAY GEL', 1, '17.6000', '23.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, 'flucor-day-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 (9974, '22017719', 'KD HONEY CAP', 1, '12.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, '22017719', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9975, '98324957', 'CLARITHROMYCIN 500MG TABLET', 1, '47.8000', '63.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-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 (9976, '94720727', 'SUDAFED MAX TABLET', 1, '39.8000', '52.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, '94720727', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9977, '94594583', 'SUDAFED SINUS TABLET', 1, '60.0000', '79.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, 'sudafed-sinus-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 (9978, '41917862', 'SUDAFED MUCUS TABLET', 1, '42.0000', '55.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, 'sudafed-mucus-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 (9979, '49967696', 'SKYCLAV 1G', 1, '15.5300', '20.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, 'skyclav-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 (9980, '96021412', 'SECNIDAZOLE 1G TAB (LAVINA)', 1, '5.2000', '6.8600', '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, '96021412', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9981, '25293625', 'GLIMEPINDE 4MG TAB 30\'S TEVA', 1, '14.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, '25293625', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9982, '50148180', 'GROFYNN TONIC', 1, '11.0000', '14.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, '50148180', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9983, '33958275', 'SALO SIMPLE LINCUS', 1, '5.4000', '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, '33958275', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9984, '07708627', 'ESKARON CAPS', 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, '07708627', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9985, '69709139', 'ESKARON SYR', 1, '6.9000', '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, 'eskaron-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 (9986, '66967968', 'CIROTAMIN CAPS', 1, '11.5000', '15.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, '66967968', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9987, '25657817', 'CLARITHROMYCIN 500MG EXETER', 1, '47.8000', '63.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, '25657817', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9988, '55139424', 'JET2 COLD CAPS', 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, 'jet2-cold-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 (9989, '43046471', 'CARVEDILOL 12.5MG TEVA', 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, '43046471', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9990, '41628691', 'AMOXICILLIN 125/5ML SUSP EXETER', 1, '7.8000', '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, '41628691', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9991, '90754836', 'BB COKTIL', 1, '4.5000', '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, 'bb-coktil', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9992, '76771843', 'FEMFRESH 250ML', 1, '37.7000', '50.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, 'femfresh-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 (9993, '26519122', 'BENYLIN CHESTY COUGH 300ML', 1, '91.2000', '121.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, '26519122', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9994, '70306758', 'GLUCO NAF PINEAPPLE', 1, '11.6000', '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, '70306758', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9995, '61273663', 'METROTRUST F', 1, '8.2000', '11.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, '46576533', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9996, '50486911', 'LUMETRUST', 1, '7.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, '50486911', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9997, '41642494', 'Metrotrust f susp', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 2, 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, 'metrotrust-f-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 (9998, '83393227', 'Carvedilol 12.5mg teva', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 2, 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, '83393227', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9999, '84888211', 'HOLLANDIA SS/S', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hollandia-sss', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10000, '61321174', 'KY GEL 82G', 1, '38.0000', '51.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, '61321174', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10001, '90592028', 'SEVEN SEA JOINTCARE ACTIVE PER STRIP', 1, '56.0000', '72.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, 'seven-sea-jointcare-active-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10002, '27749906', 'ANI\'S PRIDE BLACK SOAP', 1, '22.0000', '30.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, 'anis-pride-black-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 (10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', 1, '3.8000', '5.0000', '0.0000', 'no_image.png', 2, 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, '44582867', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10004, '14688047', 'Tramadol 100mg Retard', 1, '2.5100', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '113.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14688047', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10005, '76737689', 'FERRODEX SYR 200ML', 1, '6.8000', '9.0000', '0.0000', 'no_image.png', 2, 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, 'ferrodex-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 (10006, '51711221', 'DUREX EXTRA SAFE CONDOM', 1, '12.9800', '17.0000', '0.0000', 'no_image.png', 2, 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, '51711221', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10007, '65052097', 'BUSCOPAN ORG TABS 10MG/PER TAB', 1, '0.9700', '1.3000', '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, 'buscopan-org-tabs-10mgper-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 (10008, '76117050', 'FLUCOXACILLIN 100ML SUSP LETAP', 1, '4.0000', '6.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, '76117050', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10009, '36945410', 'PROXICAM 20MG CAPS', 1, '1.2400', '2.0000', '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, '36945410', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10010, '57422477', 'GEBEDICLO 50MG TABS', 1, '0.8400', '1.1100', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '94.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57422477', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10011, '94368885', 'HEMANI PROPOLIS OIL 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, '94368885', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10012, '73198827', 'SUDAFED BLOCK NOSE SPRAY', 1, '42.7000', '56.5000', '0.0000', 'no_image.png', 2, 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, '73198827', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10013, '88234054', 'BASECAM CAP(PIROXICAM)', 1, '1.1900', '2.0000', '0.0000', 'no_image.png', 2, 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, 'basecam-cappiroxicam', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10014, '43226305', 'LAVI-C AMOXICLAV SUSP', 1, '10.2000', '13.5000', '0.0000', 'no_image.png', 2, 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, '43226305', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10015, '06288120', 'ESKADOL NYTE', 1, '2.8000', '4.0000', '0.0000', 'no_image.png', 2, 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, '06288120', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10016, '77640597', 'LAVI SUSP 228', 1, '10.2000', '14.0000', '0.0000', 'no_image.png', 2, 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, '77640597', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10017, '67366915', 'SAMALIN ADULT(NO DROWSY) SYR', 1, '12.4000', '16.5000', '0.0000', 'no_image.png', 2, 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, '67366915', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10018, '70980658', 'ROBB OINT S/S', 1, '0.8500', '1.2000', '0.0000', 'no_image.png', 2, 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, '70980658', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10019, '67690422', 'FLUCOTRUST CAPS 150', 1, '2.8900', '4.0000', '0.0000', 'no_image.png', 2, 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, '67690422', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10020, '99115818', 'BONJELA JUNIOR GEL 15G', 1, '38.4000', '51.0000', '0.0000', 'no_image.png', 2, 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, '99115818', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10021, '84670394', 'BETASOL( EYE,EAR&NOSE)DROP', 1, '5.2000', '7.0000', '0.0000', 'no_image.png', 2, 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, '84670394', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10022, '63097002', 'MAXMOX SUSP 100ML', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 2, 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, '63097002', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10023, '64844042', 'GENDA EYE/EAR DROP', 1, '5.3200', '7.0000', '0.0000', 'no_image.png', 2, 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, 'genda-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 (10024, '46463352', 'MAIZE MIX', 1, '24.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, 'maize-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 (10025, '17647118', 'METFORMIN DENK 1000MG PER STRIP', 1, '20.0000', '27.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, 'metformin-denk-1000mg-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10026, '44369291', 'LG LOSACAR TAB 100MG', 1, '16.6000', '22.0000', '0.0000', 'no_image.png', 2, 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, '44369291', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10027, '09068658', 'FOLIRON CAPS', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 2, 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, 'foliron-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 (10028, '8906116211328', 'CARDIOFIN 20MG (NIFEDIPINE)', 1, '18.4800', '25.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, 'cardiofin-20mg-nifedipine', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10029, '890611621132', 'CARDIOFIN 20MG /STRIP (NIFEDIPINE)', 1, '1.8500', '2.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, 0, 0, 0, 'cardiofin-20mg-strip-nifedipine', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10030, '2660553', 'LOSARTAN POTASSIUM 50MG LTP', 1, '7.0000', '10.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, '26605533', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10031, '43491068', 'MENTHODEX LOZENGES TOFFEES', 1, '0.1800', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '54.0000', NULL, 1, '', NULL, 'code128', '', '', 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-toffees', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10032, '40205499', 'BEAUTEX TABLETS  / PER CAPS ', 1, '1.0000', '1.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, '40205499', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10033, '84483566', 'PERFECTTYL SKIN, HAIR & NAIL/STRIP', 1, '33.0000', '44.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, '84483566', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10034, '07331294', 'NATRILIX  1.5MG /STRIP', 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, 'natrilix-15mg-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10035, '29597601', 'PROXIMEXA 500MG /PER TAB', 1, '9.0000', '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, 'proximexa-500mg-per-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 (10036, '64250962', 'EXTRAFLEX CAP/STRIP', 1, '19.0000', '24.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, 'extraflex-capstrip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10037, '91363603', 'DEWORME TAB', 1, '2.2000', '3.0000', '0.0000', 'no_image.png', 2, 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, '91363603', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10038, '10001623', 'AMOXICILLIN 500MG LETAP', 1, '2.9700', '4.0000', '0.0000', 'no_image.png', 2, 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, 'amoxicillin-500mg-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 (10039, '00027241', 'HAEMO FORTE 100ML', 1, '11.5000', '15.0000', '0.0000', 'no_image.png', 2, 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, '00027241', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10040, '58628907', 'Fiesta condom dotted', 1, '3.0000', '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, '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 (10041, '57495123', 'Enacef(cefuroxime) 500mg tablets', 1, '30.0000', '40.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, '57495123', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10042, '45101727', 'Emgiflox 250mg Capsules', 1, '3.1700', '4.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, '45101727', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10043, '95051336', 'Menazole 500mg Ayrtons', 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, '95051336', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10044, '88406939', 'Alazole 400 tablets', 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, '88406939', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10045, '59803576', 'Starcold', 1, '1.0000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'starcold', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10046, '47358915', 'Aptamil 3 baby food', 1, '170.0000', '185.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, 'aptamil-3-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 (10047, '47042876', 'FAULTLESS SPRAY STARCH', 1, '20.0000', '25.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, '47042876', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10048, '11629408', 'JOYFIT ADULT DIAPER', 1, '48.0000', '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, '11629408', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10049, '63889223', 'CHOCHO CREAM BIG B/S', 1, '13.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, 'chocho-cream-big-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 (10050, '78737389', 'Visionace per caps/tab', 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, 'visionace-per-capstab', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10051, '46362881', 'AUGMENTIN 625 PER STRIP', 1, '36.0000', '48.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, 'augmentin-625-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10052, '612344', 'FOLIGROW PLUS TONIC', 1, '25.0000', '33.0000', '0.0000', 'no_image.png', 2, 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, '612344', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10053, '03571050', 'AMCOF CHESTY COUGH', 1, '12.0000', '16.0000', '0.0000', 'no_image.png', 2, 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, '03571050', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10054, '74925814', 'GRANDPA SYR', 1, '6.5000', '8.5000', '0.0000', 'no_image.png', 2, 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, '74925814', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10055, '88644532', 'VALUPAK GLUCOSE/CHONDRITON 400MG TAB', 1, '17.4000', '23.0000', '0.0000', 'no_image.png', 2, 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, '88644532', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10056, '77871057', 'METRONIDAZOLE  400MG(O-METRO)', 1, '1.0000', '1.5000', '0.0000', 'no_image.png', 2, 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, '77871057', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10057, '42660739', 'KELCUF ADULT SYR', 1, '6.5000', '9.0000', '0.0000', 'no_image.png', 2, 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, '42660739', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10058, '82815498', 'KELCUF JUNIOR SYR', 1, '6.5000', '9.0000', '0.0000', 'no_image.png', 2, 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, '82815498', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10059, '94503681', 'KELCUF BABY SYR', 1, '6.5000', '9.0000', '0.0000', 'no_image.png', 2, 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, '94503681', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10060, '15916976', 'GYNICARE ', 1, '52.0000', '69.0000', '0.0000', 'no_image.png', 2, 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, '15916976', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10061, '56805893', 'MIMOVITE SYR 200ML', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 2, 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, 'mimovite-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 (10062, '21137074', 'PYLIN CAPS', 1, '44.0000', '58.0000', '0.0000', 'no_image.png', 2, 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, '21137074', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10063, '86063551', 'PYLIN OINT', 1, '34.0000', '45.0000', '0.0000', 'no_image.png', 2, 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, '86063551', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10064, '35573491', 'VIT D3 HEALTHAID', 1, '60.0000', '78.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-d3-healthaid', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10065, '57222462', 'PREGNACARE CONCEPTION/ PER STRIP', 1, '34.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, 'pregnacare-conception-per-strip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10067, '82160870', 'SOFTCARE WIPES S/S', 1, '15.0000', '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, '82160870', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10068, '80761291', 'TODAY INTIMATE WASH', 1, '16.5000', '22.0000', '0.0000', 'no_image.png', 2, 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, '80761291', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10069, '94097576', 'CARDIOFIN TAB 20MG(NIFEDIPINE)', 1, '1.8500', '2.5000', '0.0000', 'no_image.png', 2, 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, '94097576', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10070, '81962669', 'BABYVITE DROP 50ML', 1, '9.5000', '12.5000', '0.0000', 'no_image.png', 2, 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, '81962669', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10071, '59445656', 'B-CLAR 250(CLARITHROMYCIN)', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 2, 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, 'b-clar-250clarithromycin', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10072, '92689899', 'GLIMER -2(GLIMEPERIDER 2MG)', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 2, 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, '92689899', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10073, '78858616', 'ASHTON AND PARSONS TEETHING', 1, '58.0000', '77.0000', '0.0000', 'no_image.png', 2, 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, 'ashton-and-parsons-teething', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10074, '62704922', 'B-CLAR 250(CLARITHROMYCIN)', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 2, 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, '62704922', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (10075, '31534760', 'B CLAR 250', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 2, 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, '31534760', NULL, '0.0000', NULL, 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=66125 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', '-1.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', '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 (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', '1.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', '88.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', '108.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', '0.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', '3.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', '0.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', '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 (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', '0.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', '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 (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', '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 (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', '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 (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', '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 (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', '20.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', '5.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', '0.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', '6.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', '3.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', '0.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', '4.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', '0.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', '4.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', '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 (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', '1.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', '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 (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', '4.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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '1.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', '0.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', '10.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', '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 (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', '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 (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', '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 (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', '0.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', '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 (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', '1.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', '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 (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', '0.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', '0.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', '0.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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '7.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', '4.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', '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 (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', '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 (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', '0.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', '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 (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', '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 (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', '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 (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', '1.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', '8.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', '82.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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (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', '0.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', '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 (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', '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 (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', '0.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', '55.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', '2.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', '39.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', '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 (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', '1.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', '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 (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', '27.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', '0.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', '14.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', '7.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', '8.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', '9.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', '57.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', '47.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', '54.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', '46.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', '5.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', '277.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', '12.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', '49.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', '0.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', '0.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', '67.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', '2.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', '2.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', '4.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', '0.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', '1.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', '0.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', '2.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', '2.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', '11.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', '0.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', '0.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', '0.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', '2.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', '-2.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', '-1.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', '-2.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', '-3.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', '-4.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', '0.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', '-2.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', '-2.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', '2.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', '0.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', '0.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', '2.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', '2.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', '2.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', '34.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', '9.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', '3.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', '0.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', '0.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', '1.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', '0.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', '0.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', '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 (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', '1.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', '1.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', '2.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', '4.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', '-16.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', '2.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', '44.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', '8.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', '16.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', '0.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', '0.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', '0.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', '1.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', '2.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', '0.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', '-18.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', '-5.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', '-4.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', '-4.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', '-25.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', '-7.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', '-8.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', '-47.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', '-104.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', '0.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', '-2.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', '0.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', '61.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', '27.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', '1.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', '2.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', '0.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', '-3.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', '-3.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', '-12.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', '-3.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', '-11.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', '-9.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', '-8.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', '-9.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', '1.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', '1.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', '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 (1981, NULL, NULL, 1441, '2150546225301', 'X DRIVE CAPS', NULL, '13.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-39.0000', '4.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', '3.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', '2.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', '4.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', '11.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', '5.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', '5.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', '8.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', '4.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', '0.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', '0.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', '-5.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', '-9.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', '-18.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', '-10.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', '-3.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', '-1.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', '-6.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', '-5.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', '0.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', '-2.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', '-13.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', '0.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', '-3.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', '-48.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', '-11.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', '-7.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', '-54.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', '-2.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', '-20.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', '-2.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', '-1.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', '-2.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', '2.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', '-17.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', '-16.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', '-43.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', '-1.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', '-4.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', '-1.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', '-2.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', '5.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', '-1.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', '-1.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', '-3.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', '-16.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', '-2.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', '1.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', '0.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', '0.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', '0.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', '2.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', '0.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', '2.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', '0.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', '1.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', '1.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', '1.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', '9.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', '10.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', '4.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', '2.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', '0.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', '0.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', '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 (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', '0.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', '0.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', '8.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', '20.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', '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 (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', '-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 (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', '0.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', '4.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', '-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 (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', '-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 (2588, NULL, NULL, 1888, '', '', 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 (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', '-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 (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', '5.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', '0.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', '10.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', '1.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', '0.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', '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 (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', '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 (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', '0.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', '4.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', '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 (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', '49.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', '0.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', '-2.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', '-12.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', '-111.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (2731, NULL, NULL, 1989, '', '', 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 (2732, NULL, NULL, 1619, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (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', '-751.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', '-2.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', '-8.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', '-39.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', '-1.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', '-23.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', '-92.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', '-15.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', '-22.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', '-26.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', '-45.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', '-25.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', '-6.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', '-3.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', '-10.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', '-12.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', '-10.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', '-27.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', '-1.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', '-11.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', '-8.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', '-3.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', '-16.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', '-1.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', '-3.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', '-7.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', '-20.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', '-21.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', '-4.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', '-18.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', '-2.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', '-88.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', '-1.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', '-28.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', '0.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', '-35.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', '-1.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', '-40.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', '-2.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', '-61.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', '-24.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', '-69.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', '-1.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', '-318.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', '-6.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', '-1.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', '-1.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', '-93.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', '-12.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', '-14.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', '-8.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', '-3.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', '-71.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', '-1.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', '-8.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', '-132.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', '-2.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', '30.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', '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 (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', '1.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', '79.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', '3.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', '0.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', '0.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', '2.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', '0.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', '0.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', '9.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', '0.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', '20.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', '0.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', '0.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', '1.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', '21.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', '0.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', '3.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', '1.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', '-7.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', '-13.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', '-6.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', '-2.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', '-6.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', '-9.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', '-16.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', '-6.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', '-32.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', '2.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', '0.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', '15.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', '1.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', '0.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', '-4.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', '-5.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', '-7.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', '-18.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', '0.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', '-4.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', '-202.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', '-4.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', '-15.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', '-11.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', '-30.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', '-6.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', '-19.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', '-68.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', '-1.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', '-2.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', '-4.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', '-7.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', '-1.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', '-3.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', '0.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', '-6.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', '-166.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', '-47.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', '-8.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', '-11.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', '-27.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', '1.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', '0.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', '1.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', '0.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', '2.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', '0.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', '0.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', '7.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', '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 (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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '2.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', '1.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', '3.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', '1.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', '7.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', '1.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', '0.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', '0.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', '1.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', '0.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', '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 (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', '1.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', '1.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', '0.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', '0.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', '0.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', '3.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', '1.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', '0.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', '0.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', '-43.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', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-16.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', '194.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', '39.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', '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 (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', '-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 (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', '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 (3493, NULL, NULL, 1976, '', '', 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 (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', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '0.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', '10.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', '-1.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', '-3.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', '-5.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', '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 (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', '-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 (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', '-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 (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', '-1.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', '-5.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', '-80.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', '-14.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', '-27.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', '-1.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', '-3.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', '-2.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', '-1.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', '-9.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', '-4.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', '-4.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', '-134.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', '-7.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', '-7.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', '-2.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', '-3.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', '-3.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', '-10.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', '-8.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', '-227.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', '-4.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', '27.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', '-5.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', '-93.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', '-6.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', '-68.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', '-15.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', '-8.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', '22.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', '0.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', '4.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', '2.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', '25.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', '1.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', '0.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', '0.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', '0.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', '0.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', '2.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', '7.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', '0.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', '-1.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', '-2.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', '-2.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', '-89.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', '-4.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', '-6.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', '-1.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', '-3.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', '-25.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', '-90.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', '-86.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', '-3.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', '-2.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', '-5.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', '-7.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', '-7.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', '-2.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', '-1.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', '-3.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', '-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 (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', '-16.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', '-4.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', '-6.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', '-1.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', '15.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', '0.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', '2.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', '14.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', '-2.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', '0.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', '0.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', '0.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', '0.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', '2.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', '2.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', '4.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', '1.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', '23.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', '3.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', '17.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', '2.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', '3.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', '2.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', '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 (4452, NULL, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '-25.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', '-8.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', '-2.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', '-5.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', '-4.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', '-19.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', '-7.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', '-4.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', '-10.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', '-15.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', '-37.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', '-5.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', '-21.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', '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 (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', '0.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', '3.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', '4.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', '-50.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', '-5.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', '-3.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', '-2.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', '1.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', '1.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', '0.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', '0.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', '0.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', '0.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', '3.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', '23.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', '0.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', '1.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', '0.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', '0.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', '0.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', '0.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', '-19.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', '-21.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', '-25.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', '-25.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', '-5.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', '-8.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', '-41.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', '-11.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', '-1.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', '-31.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', '-3.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', '-4.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', '-3.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', '-1.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', '-1.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', '-1.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', '-26.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', '1.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', '8.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', '1.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', '0.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', '2.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', '2.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', '17.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', '3.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', '7.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', '44.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', '42.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', '2.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', '2.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', '1.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', '0.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', '1.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', '0.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', '3.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', '0.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', '3.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', '0.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', '95.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', '2.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', '0.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', '0.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', '0.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', '1.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', '2.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', '2.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', '1.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', '0.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', '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 (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', '-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 (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', '-51.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', '0.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', '0.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', '5.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', '-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 (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', '10.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', '0.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', '10.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', '4.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', '1.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', '6.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', '0.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', '0.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', '11.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', '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 (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', '-1.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', '-1.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', '-1.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', '-2.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', '-4.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', '-3.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', '-3.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', '-5.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', '-7.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', '-1.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', '-9.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', '-4.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', '-11.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', '-1.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', '-11.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', '-20.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', '-2.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', '-3.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', '-1.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', '-1.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', '0.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', '0.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', '2.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', '-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 (5429, NULL, NULL, 1889, 'PR-602', 'Doxykin Cap', NULL, '1.3000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '-6.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', '-17.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', '-22.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', '-2.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', '-3.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', '-2.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', '-47.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', '-3.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', '-118.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', '-20.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', '-60.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', '-14.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', '-2.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', '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 (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', '17.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', '15.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', '-8.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', '-1.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', '0.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', '23.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', '65.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', '13.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', '12.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', '39.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', '1.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', '2.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', '0.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', '15.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', '59.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', '2.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', '3.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', '-14.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', '0.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', '-3.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', '-8.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', '-4.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', '-37.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', '-7.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', '-76.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', '-34.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', '-2.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', '-2.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', '-3.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', '-17.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', '-4.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', '-1.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', '-228.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', '-3.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', '-3.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', '-1.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', '-7.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', '-9.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', '-6.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', '4.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', '0.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', '1.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', '4.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', '3.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', '2.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', '4.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', '3.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', '9.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', '5.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', '0.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', '2.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', '25.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', '2.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', '8.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', '4.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', '30.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', '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 (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', '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 (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', '-3.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', '-6.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', '0.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', '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 (5785, NULL, NULL, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', NULL, '12.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '-33.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', '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 (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', '-2.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', '-2.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', '9.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', '3.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', '2.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', '1.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', '2.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', '0.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', '1.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', '4.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', '4.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', '0.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', '2.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', '2.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', '0.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', '2.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', '4.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', '0.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', '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 (5863, NULL, NULL, 2504, '61281286', 'MIXTARD', NULL, '35.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '-4.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', '-192.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', '0.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', '-4.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', '-3.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', '-2.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', '-3.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', '-4.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', '8.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', '14.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', '8.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', '10.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', '13.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', '14.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', '6.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', '14.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', '12.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', '24.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', '148.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', '0.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', '80.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', '-1.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', '-9.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', '-3.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', '-4.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', '-1.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', '0.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', '0.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', '4.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', '2.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', '2.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', '1.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', '-40.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', '-19.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', '-8.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', '-35.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', '2.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', '-1.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', '-3.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', '-14.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', '-9.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', '2.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', '-4.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', '-2.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', '-7.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', '-3.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', '-1.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', '-1.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', '-2.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', '-2.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', '-4.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', '-2.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', '-5.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', '-3.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', '-3.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', '-1.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', '-1.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', '-3.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', '-1.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', '-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 (6355, NULL, NULL, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', NULL, '1.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.0000', '-6.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', '-4.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', '-1.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', '-1.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', '-1.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', '-20.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', '-5.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', '-2.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', '-3.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', '-3.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', '-2.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', '-2.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', '-1.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', '-6.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', '-1.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', '-1.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', '-2.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', '-1.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', '-2.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', '-4.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', '-5.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', '-17.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', '-5.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', '-4.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', '-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 (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', '-1.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', '-1.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', '1.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', '1.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', '0.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', '3.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', '0.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', '1.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', '5.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', '0.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', '2.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', '0.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', '1.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', '0.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', '1.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', '3.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', '2.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', '5.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', '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 (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', '1.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', '2.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', '0.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', '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 (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', '2.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', '1.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', '1.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', '-12.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', '-8.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', '-1.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', '-2.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', '-2.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', '-2.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', '-4.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', '-2.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', '-20.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', '-1.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', '138.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', '19.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', '0.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', '0.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', '0.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', '0.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', '-10.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', '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 (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', '0.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', '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 (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', '11.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', '3.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', '9.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', '0.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', '3.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', '0.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', '0.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', '1.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', '2.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', '0.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', '0.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', '2.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', '0.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', '30.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', '3.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', '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 (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', '4.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', '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 (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', '0.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', '-5.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', '-2.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', '-101.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', '8.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', '3.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', '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 (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', '0.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', '0.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', '0.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', '-12.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', '-1.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', '-1.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', '-1.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', '-36.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', '-16.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', '15.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', '8.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', '2.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', '3.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', '3.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', '0.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', '2.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', '-19.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', '-37.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', '-205.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', '-17.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', '-12.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', '-3.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', '-8.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', '-9.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', '-3.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', '-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 (7457, NULL, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.2000', '0.0000', '70.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '294.0000', '-44.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', '6.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', '-7.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', '16.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', '0.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', '10.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', '3.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', '4.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', '0.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', '1.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', '1.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', '-1.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', '-55.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', '-4.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', '-26.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', '-11.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', '-70.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', '-2.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', '-50.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', '-16.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', '-2.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', '-2.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', '-1.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', '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 (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', '-5.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', '-5.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', '-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 (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', '-2.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', '-5.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', '-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 (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', '-3.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', '-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 (7864, NULL, NULL, 2181, '8964000737712', 'GREEN TEA 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 (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', '-3.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', '-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 (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', '-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 (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', '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 (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', '0.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', '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 (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', '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 (8167, NULL, 53, 2212, '8964000114018', 'BLACKSEEDS OIL 60ML', 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 (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', '-1.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', '-2.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', '-17.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', '-305.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', '-131.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', '-238.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', '-4.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', '2.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', '23.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', '-7.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', '-10.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', '-3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '-1.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', '-4.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', '-1.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', '0.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', '-1.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', '-2.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', '-19.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', '-38.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', '-2.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', '-4.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', '-20.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', '-5.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', '-10.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', '-3.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', '-18.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', '-2.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', '-47.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', '-11.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', '-10.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', '-2.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', '-3.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', '-6.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', '-96.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', '-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 (9017, NULL, NULL, 1837, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-252.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (9021, NULL, NULL, 2479, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-183.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '0.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', '1.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', '1.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', '0.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', '-1.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', '0.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', '-1.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', '-3.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', '4.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', '0.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', '1.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', '0.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', '1.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', '0.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', '0.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', '0.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', '16.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', '12.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', '2.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', '0.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', '3.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', '1.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', '23.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', '2.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', '1.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', '14.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', '7.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', '2.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', '0.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', '0.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', '0.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', '1.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', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (9486, NULL, NULL, 1310, '', '', 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 (9487, NULL, NULL, 1346, '', '', 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 (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', '5.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', '1.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', '1.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', '8.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', '17.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', '0.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', '3.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', '0.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', '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 (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', '-57.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', '-14.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', '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 (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', '-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 (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', '-7.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', '-4.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', '-20.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', '-15.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', '-9.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', '-68.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', '-8.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', '-28.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', '-9.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', '0.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', '-32.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', '2.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', '1.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', '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 (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', '-5.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', '-1.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', '3.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', '0.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', '-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 (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', '-2.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', '-7.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', '-24.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', '-31.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', '0.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', '-3.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', '-20.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', '0.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', '2.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', '0.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', '0.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', '0.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', '2.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', '0.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', '-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 (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', '0.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', '0.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', '0.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', '0.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', '-169.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-2.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', '-14.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', '0.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', '9.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', '2.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', '0.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', '-2.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', '-5.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', '-2.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', '-39.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', '-8.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', '0.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', '0.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', '0.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', '0.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', '1.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', '-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 (10445, NULL, NULL, 1550, '', '', 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 (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', '0.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', '1.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', '0.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', '19.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', '0.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', '-1.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', '-84.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (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', '-25.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', '0.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', '6.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', '1.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', '3.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', '3.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', '-243.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', '-161.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', '-38.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', '-1.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', '-11.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', '-28.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', '-5.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', '-8.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', '0.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', '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 (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', '-2.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', '0.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', '1.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', '0.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', '0.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', '13.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', '0.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', '0.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', '-4.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', '0.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', '0.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', '0.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', '0.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', '-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 (11146, NULL, NULL, 2056, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (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', '2.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', '-7.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', '-3.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', '-29.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', '15.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', '0.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', '-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 (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', '5.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', '1.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', '1.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', '-10.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', '-35.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', '-15.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', '-6.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', '-19.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', '0.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', '1.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', '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 (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', '0.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', '0.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', '-12.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', '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 (11468, NULL, NULL, 2661, '', '', 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 (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', '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 (11471, NULL, NULL, 1599, '', '', 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 (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', '-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 (11649, NULL, NULL, 1528, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-53.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (11651, NULL, NULL, 2660, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-187.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (11653, NULL, NULL, 2656, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-56.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-111.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-75.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (11657, NULL, NULL, 1968, '', '', 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 (11658, NULL, NULL, 1300, '', '', 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 (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', '-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 (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', '-6.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', '-3.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', '-4.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', '-11.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', '-3.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', '-1.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', '-2.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', '-3.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', '1.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', '0.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', '0.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', '1.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', '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 (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', '0.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', '0.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', '2.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', '1.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', '90.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', '-43.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-2.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', '-145.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', '0.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', '-47.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', '-36.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', '-8.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', '-18.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', '0.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', '0.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', '0.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', '0.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', '-334.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-3.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', '-3.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', '-1.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', '-28.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', '-9.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', '-5.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', '-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 (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', '-3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '-5.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', '-1.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', '-13.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', '0.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', '0.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', '1.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', '-17.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '-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 (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', '-10.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', '-5.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', '-5.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', '-51.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', '-2.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', '-2.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', '-2.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', '-1.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', '-1.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', '-3.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', '-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 (12657, NULL, NULL, 2484, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (12681, NULL, 81, 2695, '26196799', 'ANAFRANIL TAB', NULL, '2.0000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '39.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', '-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 (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', '1.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', '0.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', '1.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', '0.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', '0.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', '14.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', '0.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', '0.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', '0.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', '0.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', '-2.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', '4.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', '15.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', '2.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', '1.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', '3.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', '-10.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', '-6.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', '-6.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', '-22.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', '-29.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', '-20.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', '0.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', '0.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', '0.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', '-5.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', '8.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', '0.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', '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 (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', '0.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', '0.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', '0.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', '0.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', '3.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', '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 (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', '0.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', '0.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', '1.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', '0.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', '0.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', '2.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', '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 (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', '1.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', '2.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', '1.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', '0.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', '0.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', '0.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', '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 (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', '-3.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', '-7.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', '-4.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', '-1.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', '-3.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', '0.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', '0.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', '0.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', '0.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', '1.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', '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 (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', '3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '1.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', '1.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', '1.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '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 (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', '-2.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', '-6.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', '-2.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', '-20.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', '-6.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', '-6.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', '-6.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', '-1.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', '-5.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', '-12.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', '-3.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', '-16.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '-17.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', '-4.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', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (14906, NULL, NULL, 2485, '', '', 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 (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', '-20.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', '-1.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', '0.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', '0.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', '0.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', '5.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', '10.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', '2.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', '9.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', '-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 (15931, NULL, NULL, 2732, '', '', 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 (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', '-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 (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', '1.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', '1.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', '1.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', '0.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', '-1.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', '4.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', '1.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', '0.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', '-55.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', '-13.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', '-4.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', '-4.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', '-58.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', '0.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', '-2.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', '-7.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', '-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 (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', '-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 (16391, NULL, NULL, 2712, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-165.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '0.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', '-20.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', '-1.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', '-10.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', '-10.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', '-1.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', '-2.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', '1.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', '2.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', '1.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', '0.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', '0.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', '0.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', '0.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', '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 (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', '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 (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', '2.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', '0.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', '1.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', '0.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', '0.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', '22.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '0.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', '0.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', '2.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', '-6.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', '-1.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', '7.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '-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 (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', '0.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', '0.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', '1.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', '33.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', '21.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', '10.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', '0.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', '5.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', '4.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', '23.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', '0.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', '1.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', '-2.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', '-65.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', '-17.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', '-3.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', '-4.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', '-2.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', '0.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', '0.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', '4.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', '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 (17322, NULL, 103, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '136.0000', '40.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', '0.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', '0.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', '0.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', '-1.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', '-2.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', '0.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', '0.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', '0.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', '0.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', '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 (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', '0.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', '21.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', '-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 (17387, NULL, NULL, 2816, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '0.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', '0.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', '3.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', '0.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', '0.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', '0.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', '2.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', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (17469, NULL, NULL, 2486, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (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', '5.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', '99.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', '0.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', '-49.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', '-12.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', '7.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', '-6.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', '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 (17741, NULL, NULL, 1992, '', '', 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 (17742, NULL, NULL, 1871, '', '', 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 (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', '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 (17745, NULL, NULL, 1689, '', '', 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 (17746, NULL, NULL, 2828, '', '', 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 (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', '-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 (17749, NULL, NULL, 2269, '', '', 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 (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', '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 (17752, NULL, NULL, 1411, '', '', 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 (17753, NULL, NULL, 1867, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-101.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (17756, NULL, NULL, 2821, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-86.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-144.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', '-13.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', '-1.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', '0.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', '0.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', '4.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', '0.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', '0.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', '85.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', '-101.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', '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 (17831, NULL, NULL, 2829, '', '', 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 (17832, 158, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2500', '2.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '6.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', '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 (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', '1.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', '0.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', '0.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', '0.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', '0.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', '1.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', '2.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', '1.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', '3.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', '0.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', '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 (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', '0.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', '1.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', '1.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', '2.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', '0.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', '7.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', '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 (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', '1.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', '2.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', '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 (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', '0.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', '1.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', '-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 (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', '-11.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', '-11.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', '-8.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', '-8.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', '-2.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', '-3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '-10.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', '-30.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', '-1.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', '-1.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', '-1.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', '-1.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', '-3.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', '4.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', '4.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', '7.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', '2.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', '5.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', '1.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', '0.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', '-1.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', '0.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', '16.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', '0.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', '20.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', '8.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', '2.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', '13.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', '0.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', '0.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', '0.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', '0.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', '2.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', '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 (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', '0.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', '3.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', '0.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', '-2.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', '-4.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', '-13.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', '-3.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', '-1.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', '-29.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', '-3.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', '-1.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', '-1.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', '0.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', '0.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', '4.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', '0.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', '2.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', '37.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', '0.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', '0.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', '0.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', '1.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', '91.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', '10.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', '0.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', '0.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', '5.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', '0.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', '1.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', '0.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', '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 (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', '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 (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', '-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 (18711, 166, NULL, 2483, '90693662', 'THYME LEAVES', NULL, '4.0000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.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', '0.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', '5.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', '0.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', '0.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', '7.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', '-8.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', '-10.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', '-3.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', '-3.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', '-2.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', '-1.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', '-3.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', '-2.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', '0.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', '1.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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '2.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', '2.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', '0.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', '0.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', '0.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', '0.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', '3.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', '0.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', '0.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', '1.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', '0.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', '1.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', '0.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', '0.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', '1.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', '0.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', '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 (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', '0.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', '0.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', '42.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '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 (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', '0.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', '5.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', '0.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', '0.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', '0.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', '0.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', '2.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', '3.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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '96.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', '91.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', '0.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', '4.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', '0.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', '70.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', '2.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', '0.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', '1.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', '0.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', '0.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', '2.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', '37.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', '0.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', '0.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', '7.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', '9.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', '0.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', '-58.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '0.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', '0.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', '1.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', '-48.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (19014, NULL, NULL, 2105, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-82.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '2.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', '1.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', '2.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', '0.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', '1.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', '8.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', '1.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', '2.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', '1.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', '2.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', '3.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', '1.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', '1.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', '2.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', '0.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', '2.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', '1.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', '-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 (19060, NULL, NULL, 2777, '', '', 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 (19061, NULL, NULL, 2273, '', '', 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 (19062, NULL, NULL, 1649, '', '', 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 (19063, NULL, NULL, 2410, '', '', 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 (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', '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 (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', '18.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', '1.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', '2.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', '0.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', '2.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '4.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', '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 (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', '0.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', '0.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', '0.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', '3.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', '0.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', '1.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', '1.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', '0.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', '5.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', '2.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', '15.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', '0.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', '8.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', '2.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', '4.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', '0.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', '0.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', '0.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', '2.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', '0.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', '3.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', '0.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', '0.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', '2.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', '0.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', '0.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', '0.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', '0.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', '172.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', '0.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', '1.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', '1.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', '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 (19378, NULL, 89, 2497, '26571538', 'CALPOl 6+', NULL, '36.6800', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '73.3600', '0.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', '1.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', '0.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', '0.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', '0.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', '69.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', '2.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', '29.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', '0.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', '0.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', '0.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', '0.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', '0.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', '-6.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', '-4.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', '-28.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', '-61.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', '-1.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', '1.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', '0.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', '0.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', '4.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', '3.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', '4.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', '0.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', '2.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', '30.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', '0.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', '0.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', '0.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', '0.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', '1.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', '1.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', '0.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', '0.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', '3.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', '0.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', '0.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', '3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '3.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', '0.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', '0.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', '0.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', '24.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', '0.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', '1.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', '21.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '1.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', '0.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', '0.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', '0.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', '2.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', '1.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', '2.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', '-3.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', '-4.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', '-1.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', '-1.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', '-1.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', '-7.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', '-16.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', '93.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '5.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', '0.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', '0.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', '0.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', '0.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', '46.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', '0.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', '29.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', '0.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', '2.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', '1.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', '3.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', '0.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', '0.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', '0.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', '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 (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', '1.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', '0.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', '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 (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', '3.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', '0.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', '0.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', '4.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', '0.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', '0.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', '0.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', '2.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', '3.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', '0.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', '2.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', '0.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', '0.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', '-2.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', '-2.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', '-2.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', '-1.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', '-14.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', '-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 (21484, NULL, NULL, 1643, '', '', 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 (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', '1.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', '16.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', '0.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', '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 (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', '-3.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', '0.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', '0.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', '74.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', '0.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', '0.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', '1.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', '1.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', '1.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', '0.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', '0.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', '5.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', '0.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', '1.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', '0.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', '0.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', '13.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', '0.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', '14.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', '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 (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', '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 (21717, NULL, NULL, 2958, '', '', 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 (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', '1.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', '0.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', '0.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', '0.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', '0.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', '1.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', '11.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', '0.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', '0.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', '2.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', '0.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', '1.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', '0.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', '0.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', '1.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', '3.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', '0.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', '0.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', '0.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', '1.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', '0.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', '1.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', '1.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', '0.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', '9.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', '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 (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', '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 (21846, NULL, NULL, 2437, '', '', 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 (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', '-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 (21849, NULL, NULL, 2726, '', '', 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 (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', '-149.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', '-1.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', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (21973, NULL, NULL, 1856, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (21975, NULL, NULL, 2477, '', '', 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 (21976, NULL, NULL, 2763, '', '', 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 (21977, NULL, NULL, 2478, '', '', 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 (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', '-3.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', '-1.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', '-12.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', '-4.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', '-14.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', '1.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', '0.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', '0.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', '0.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', '1.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', '0.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', '4.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', '0.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', '0.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', '0.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', '3.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', '17.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', '0.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', '3.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', '12.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '7.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', '0.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', '0.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', '28.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', '28.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', '0.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', '24.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', '0.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', '0.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', '0.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', '4.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', '0.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', '0.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', '0.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', '33.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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '2.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', '0.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', '1.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', '2.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', '0.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', '2.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', '1.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', '0.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', '0.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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '4.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', '4.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', '0.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', '0.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', '2.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', '3.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', '0.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', '0.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', '0.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', '1.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', '5.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', '0.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', '2.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', '1.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', '1.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', '1.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', '3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '2.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', '2.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', '0.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', '0.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', '6.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', '-11.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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '1.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', '4.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', '9.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', '0.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', '0.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', '12.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', '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 (22408, NULL, NULL, 1881, '', '', 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 (22409, NULL, NULL, 2708, '', '', 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 (22410, NULL, NULL, 1559, '', '', 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 (22411, NULL, NULL, 1805, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (22413, NULL, NULL, 2950, '', '', 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 (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', '-11.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', '-16.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', '-20.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', '0.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', '0.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', '8.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', '0.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', '0.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', '0.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', '4.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', '2.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', '0.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', '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 (22518, 175, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.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', '0.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', '0.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', '0.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', '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 (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', '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 (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', '0.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', '0.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', '5.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', '0.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', '0.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', '7.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', '10.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', '1.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', '-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 (22545, NULL, NULL, 1581, '', '', 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 (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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '1.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', '0.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', '0.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', '0.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', '5.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', '0.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', '3.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', '0.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', '0.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', '0.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', '28.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', '0.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', '0.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', '16.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', '0.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', '0.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', '0.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', '3.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', '83.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', '0.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', '0.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', '0.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', '2.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', '0.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', '1.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', '0.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', '1.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', '0.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', '1.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', '14.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', '0.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', '1.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', '1.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', '3.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', '-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 (22660, NULL, NULL, 2986, '', '', 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 (22664, NULL, NULL, 2998, '', '', 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 (22704, NULL, NULL, 1328, '', '', 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 (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', '-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 (23106, 180, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.6000', '3.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.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', '13.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', '0.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', '0.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', '46.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', '2.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', '0.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', '47.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', '2.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', '9.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '5.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '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 (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', '0.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', '1.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', '1.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', '0.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', '1.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', '4.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', '5.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', '1.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', '0.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', '0.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', '0.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', '0.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', '6.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', '0.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', '0.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', '2.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', '0.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', '0.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', '0.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', '9.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', '0.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', '1.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', '16.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', '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 (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', '9.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', '2.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', '1.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', '0.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', '0.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', '-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 (23190, NULL, NULL, 1640, '', '', 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 (23191, NULL, NULL, 2990, '', '', 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 (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', '-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 (23194, NULL, NULL, 2916, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-108.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '1.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', '2.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', '1.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', '-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 (23220, NULL, NULL, 1382, '', '', 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 (23221, NULL, NULL, 1640, '', '', 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 (23222, NULL, NULL, 2169, '', '', 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 (23223, NULL, NULL, 2951, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-73.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-90.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (23227, NULL, NULL, 2167, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (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', '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 (23230, NULL, NULL, 2842, '', '', 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 (23231, NULL, NULL, 2102, '', '', 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 (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', '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 (23234, NULL, NULL, 2945, '', '', 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 (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', '0.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', '10.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '1.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', '4.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '2.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', '0.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', '6.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', '0.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', '0.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', '1.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', '0.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', '1.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', '1.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', '0.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', '0.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', '0.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', '0.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', '0.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', '2.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '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 (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', '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 (23708, NULL, NULL, 2073, '', '', 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 (23709, NULL, NULL, 1533, '', '', 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 (23710, NULL, NULL, 2769, '', '', 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 (23741, NULL, NULL, 1422, '', '', 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 (23742, NULL, NULL, 1404, '', '', 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 (23743, NULL, NULL, 1312, '', '', 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 (23744, NULL, NULL, 2286, '', '', 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 (23745, NULL, NULL, 2506, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23747, NULL, NULL, 1928, '', '', 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 (23748, NULL, NULL, 1760, '', '', 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 (23749, NULL, NULL, 1961, '', '', 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 (23750, NULL, NULL, 2105, '', '', 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 (23751, NULL, NULL, 2242, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23753, NULL, NULL, 2315, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-127.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (23756, NULL, NULL, 2294, '', '', 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 (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', '-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 (23759, NULL, NULL, 2351, '', '', 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 (23760, NULL, NULL, 2085, '', '', 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 (23761, NULL, NULL, 1616, '', '', 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 (23762, NULL, NULL, 1805, '', '', 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 (23763, NULL, NULL, 1654, '', '', 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 (23764, NULL, NULL, 2411, '', '', 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 (23765, NULL, NULL, 2262, '', '', 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 (23766, NULL, NULL, 2273, '', '', 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 (23767, NULL, NULL, 2546, '', '', 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 (23768, NULL, NULL, 1765, '', '', 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 (23769, NULL, NULL, 2862, '', '', 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 (23770, NULL, NULL, 2992, '', '', 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 (23771, NULL, NULL, 2283, '', '', 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 (23772, NULL, NULL, 2224, '', '', 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 (23773, NULL, NULL, 1854, '', '', 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 (23774, NULL, NULL, 2384, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-69.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23776, NULL, NULL, 2253, '', '', 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 (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', '-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 (23779, NULL, NULL, 1602, '', '', 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 (23780, NULL, NULL, 1863, '', '', 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 (23781, NULL, NULL, 2699, '', '', 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 (23782, NULL, NULL, 1950, '', '', 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 (23783, NULL, NULL, 1592, '', '', 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 (23784, NULL, NULL, 1501, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-118.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (23786, NULL, NULL, 2453, '', '', 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 (23787, NULL, NULL, 1837, '', '', 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 (23788, NULL, NULL, 1856, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (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', '-42.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23792, NULL, NULL, 2403, '', '', 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 (23793, NULL, NULL, 2334, '', '', 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 (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', '-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 (23797, NULL, NULL, 1665, '', '', 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 (23798, NULL, NULL, 1440, '', '', 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 (23799, NULL, NULL, 3018, '', '', 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 (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', '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 (23802, NULL, NULL, 2650, '', '', 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 (23803, NULL, NULL, 2730, '', '', 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 (23804, NULL, NULL, 2297, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (23805, NULL, NULL, 1975, '', '', 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 (23806, NULL, NULL, 2055, '', '', 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 (23807, NULL, NULL, 1401, '', '', 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 (23808, NULL, NULL, 1420, '', '', 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 (23809, NULL, NULL, 1314, '', '', 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 (23810, NULL, NULL, 1532, '', '', 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 (23811, NULL, NULL, 1523, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-55.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23813, NULL, NULL, 1678, '', '', 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 (23814, NULL, NULL, 2876, '', '', 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 (23815, NULL, NULL, 2415, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (23816, NULL, NULL, 1531, '', '', 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 (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', '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 (23820, NULL, NULL, 1690, '', '', 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 (23821, NULL, NULL, 1841, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-89.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (23823, NULL, NULL, 1394, '', '', 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 (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', '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 (23827, NULL, NULL, 1935, '', '', 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 (23828, NULL, NULL, 1844, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23839, NULL, NULL, 2345, '', '', 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 (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', '-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 (23842, NULL, NULL, 1864, '', '', 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 (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', '-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 (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', '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 (23847, NULL, NULL, 2244, '', '', 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 (23848, NULL, NULL, 1612, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-70.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23851, NULL, NULL, 1692, '', '', 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 (23852, NULL, NULL, 2109, '', '', 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 (23853, NULL, NULL, 1481, '', '', 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 (23854, NULL, NULL, 1807, '', '', 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 (23855, NULL, NULL, 1781, '', '', 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 (23856, NULL, NULL, 1876, '', '', 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 (23857, NULL, NULL, 3006, '', '', 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 (23858, NULL, NULL, 1672, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (23860, NULL, NULL, 1347, '', '', 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 (23861, NULL, NULL, 1700, '', '', 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 (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', '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 (23864, NULL, NULL, 2393, '', '', 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 (23865, NULL, NULL, 2347, '', '', 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 (23866, NULL, NULL, 1668, '', '', 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 (23867, NULL, NULL, 1595, '', '', 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 (23868, NULL, NULL, 3017, '', '', 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 (23869, NULL, NULL, 2321, '', '', 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 (23870, NULL, NULL, 1590, '', '', 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 (23871, NULL, NULL, 2251, '', '', 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 (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', '-47.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (23876, NULL, NULL, 2309, '', '', 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 (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', '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 (23879, NULL, NULL, 2350, '', '', 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 (23880, NULL, NULL, 1619, '', '', 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 (23881, NULL, NULL, 1662, '', '', 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 (23882, NULL, NULL, 1675, '', '', 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 (23883, NULL, NULL, 1912, '', '', 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 (23884, NULL, NULL, 2769, '', '', 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 (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', '0.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', '1.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', '4.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', '3.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', '10.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', '2.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', '0.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', '0.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', '0.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', '2.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', '3.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', '4.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', '0.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', '7.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', '0.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', '0.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', '7.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', '5.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', '0.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', '1.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', '0.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', '0.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', '0.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', '16.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', '3.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', '0.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', '0.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', '2.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', '2.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', '1.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', '0.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', '1.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', '0.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', '0.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', '0.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', '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 (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', '2.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', '0.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', '0.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', '0.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', '6.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', '0.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', '6.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', '0.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', '2.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', '2.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', '0.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', '0.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', '0.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', '0.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', '0.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', '30.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', '0.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', '0.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', '7.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', '0.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', '0.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', '48.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', '0.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', '0.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', '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 (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', '-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 (24144, NULL, NULL, 1577, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (24145, NULL, NULL, 2083, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-65.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '3.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '2.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', '0.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', '0.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', '6.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', '0.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', '0.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', '2.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', '0.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', '2.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', '0.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', '40.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', '8.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '3.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', '0.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', '0.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', '1.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', '0.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', '0.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', '4.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', '18.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', '0.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', '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 (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', '1.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', '1.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', '0.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', '0.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', '2.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', '0.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', '1.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', '-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 (24355, NULL, NULL, 2280, '', '', 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 (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', '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 (24359, NULL, NULL, 1871, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-158.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-49.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (24423, NULL, NULL, 2541, '', '', 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 (24424, NULL, NULL, 1559, '', '', 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 (24425, NULL, NULL, 2293, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-101.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (24427, NULL, NULL, 1966, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '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 (24467, NULL, NULL, 1807, '', '', 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 (24559, NULL, NULL, 1855, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-55.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (24561, NULL, NULL, 2011, '', '', 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 (24562, NULL, NULL, 2353, '', '', 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 (24563, NULL, NULL, 2673, '', '', 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 (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', '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 (24566, NULL, NULL, 2295, '', '', 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 (24567, NULL, NULL, 2772, '', '', 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 (24568, NULL, NULL, 2458, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (24569, NULL, NULL, 1306, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-57.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (24571, NULL, NULL, 1867, '', '', 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 (24572, NULL, NULL, 1673, '', '', 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 (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', '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 (24575, NULL, NULL, 2609, '', '', 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 (24576, NULL, NULL, 1601, '', '', 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 (24577, NULL, NULL, 2260, '', '', 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 (24632, NULL, NULL, 2101, '', '', 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 (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', '0.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', '0.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', '11.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', '3.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', '0.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', '4.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', '3.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', '3.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', '1.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', '2.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', '1.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', '0.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', '0.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', '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 (24907, NULL, NULL, 2489, '', '', 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 (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', '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 (24910, NULL, NULL, 2465, '', '', 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 (24911, NULL, NULL, 1313, '', '', 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 (24912, NULL, NULL, 2097, '', '', 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 (24913, NULL, NULL, 1572, '', '', 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 (24916, NULL, NULL, 1388, '', '', 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 (24917, NULL, NULL, 1410, '', '', 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 (24918, NULL, NULL, 1670, '', '', 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 (24919, NULL, NULL, 1309, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (24920, 194, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '10.0900', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2700', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '0.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', '3.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '1.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', '0.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', '16.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '149.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '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 (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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '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 (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', '0.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', '0.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', '0.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', '0.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', '0.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', '0.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', '18.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', '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 (25027, NULL, NULL, 1756, '', '', 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 (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', '3.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', '1.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', '0.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', '0.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', '1.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', '0.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', '0.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', '0.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', '5.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', '0.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', '3.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', '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 (25043, NULL, NULL, 2768, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-61.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (25045, NULL, NULL, 1708, '', '', 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 (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', '0.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', '0.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', '1.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', '0.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', '0.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', '2.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', '0.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', '2.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', '1.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', '21.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', '1.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', '0.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', '2.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', '0.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', '2.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', '0.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', '1.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', '2.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', '1.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', '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 (25193, NULL, NULL, 3085, '', '', 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 (25194, NULL, NULL, 2270, '', '', 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 (25195, NULL, NULL, 2862, '', '', 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 (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', '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 (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', '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 (27316, 198, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2000', '1.5800', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '14.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', '7.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', '2.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', '0.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', '1.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', '0.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', '0.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', '1.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', '1.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', '2.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', '1.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', '1.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', '1.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', '1.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', '2.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', '8.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');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29628, 204, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '4.2100', '6.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8400', '0.0000', '2021-08-21', 'received', '4.2100', '4.2100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.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 (29629, 204, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '76.2400', '101.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.7200', '0.0000', '2021-08-21', 'received', '76.2400', '76.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '76.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 (29630, 204, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '1.1700', '2.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '45.0000', '2021-08-21', 'received', '1.1700', '1.1700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.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 (29631, 204, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2021-08-21', '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 (29632, 204, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.0500', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '6.0000', '2021-08-21', '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 (29633, 204, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.8400', '10.3500', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.8800', '0.0000', '2021-08-21', 'received', '7.8400', '7.8400', '7.0000', NULL, NULL, 1, 'pc', '7.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 (29634, 204, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.0100', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0500', '2.0000', '2021-08-21', '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 (29635, 204, NULL, 2070, '014', 'CHLO EYE ', NULL, '2.0000', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '4.0000', '2021-08-21', '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 (29636, 204, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '33.8900', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.7800', '0.0000', '2021-08-21', '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 (29637, 204, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '37.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8600', '0.0000', '2021-08-21', '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 (29638, 204, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '10.0000', '2021-08-21', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (29639, 204, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '0.0000', '2021-08-21', '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 (29640, 204, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.8400', '10.3500', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '0.0000', '2021-08-21', '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 (29641, 204, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '6.2000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '2.0000', '2021-08-21', '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 (29642, 204, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '15.8000', '21.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2000', '0.0000', '2021-08-21', 'received', '15.8000', '15.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (29643, 204, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7700', '1.0000', '2021-08-21', '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 (29644, 204, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '5.3200', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9600', '1.0000', '2021-08-21', 'received', '5.3200', '5.3200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (29645, 204, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '48.7600', '65.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5200', '1.0000', '2021-08-21', 'received', '48.7600', '48.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '48.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 (29646, 204, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '4.8800', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.6400', '0.0000', '2021-08-21', 'received', '4.8800', '4.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (29647, 204, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9100', '0.0000', '2021-08-21', '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 (29648, 204, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.1700', '16.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6800', '0.0000', '2021-08-21', 'received', '12.1700', '12.1700', '4.0000', NULL, NULL, 1, 'pc', '4.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 (29649, 204, NULL, 2457, '33345179', 'PILIEF TABS', NULL, '22.0000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2021-08-21', '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 (29650, 204, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '1.0000', '2021-08-21', '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 (29651, 204, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9300', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.7200', '0.0000', '2021-08-21', 'received', '6.9300', '6.9300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (29787, 205, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '29.0000', '38.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '3.0000', '2021-08-21', '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 (29788, 205, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.1700', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5100', '0.0000', '2021-08-21', '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 (29789, 205, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1600', '2.0000', '2021-08-21', 'received', '4.7200', '4.7200', '3.0000', NULL, NULL, 1, 'pc', '3.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 (29790, 205, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '9.7600', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '0.0000', '2021-08-21', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (29791, 205, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.1500', '21.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.4500', '0.0000', '2021-08-21', 'received', '16.1500', '16.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (29792, 205, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.2000', '2.0000', '2021-08-21', 'received', '14.0500', '14.0500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (29793, 205, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '48.0200', '63.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0200', '0.0000', '2021-08-21', 'received', '48.0200', '48.0200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '48.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 (29794, 205, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-08-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 (29795, 205, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '23.6800', '31.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3600', '0.0000', '2021-08-21', 'received', '23.6800', '23.6800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (29796, 205, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '0.0000', '2021-08-21', '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 (29797, 205, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2021-08-21', '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 (29798, 205, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '10.0000', '2021-08-21', '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 (29799, 205, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6800', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '8.0000', '2021-08-21', 'received', '0.6800', '0.6800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (29800, 205, NULL, 2640, '08457216', 'GLUCO NAF D (DANNEX)', NULL, '7.0400', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0800', '0.0000', '2021-08-21', 'received', '7.0400', '7.0400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (29801, 205, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.6400', '44.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.2800', '1.0000', '2021-08-21', 'received', '33.6400', '33.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (29802, 205, NULL, 2467, '97164110', 'LISINOPRIL 20MG TAB UK', NULL, '19.8000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '5.0000', '2021-08-21', 'received', '19.8000', '19.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (29803, 205, NULL, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '13.6000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6000', '6.0000', '2021-08-21', 'received', '13.6000', '13.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (29804, 205, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '4.4000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2021-08-21', '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 (29805, 205, NULL, 9413, '3333', 'MALAR 2 DS', NULL, '7.9000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '9.0000', '2021-08-21', 'received', '7.9000', '7.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (29806, 205, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '14.6000', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '2.0000', '2021-08-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 (29807, 205, 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-21', '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 (29808, 205, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '27.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '0.0000', '2021-08-21', '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 (29809, 205, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '19.8200', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.1000', '2.0000', '2021-08-21', 'received', '19.8200', '19.8200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (29810, 205, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.6000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2021-08-21', 'received', '18.6000', '18.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (29811, 205, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3600', '3.0000', '2021-08-21', '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 (29812, 205, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7600', '0.0000', '2021-08-21', '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 (29813, 205, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.7000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '46.0000', '2021-08-21', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (29814, 205, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '3.0000', '2021-08-21', '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 (29815, 205, NULL, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', NULL, '9.3600', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0800', '3.0000', '2021-08-21', '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 (29816, 206, NULL, 9427, '93904562', 'BCO STRONG UK ', NULL, '14.5700', '19.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.1400', '2.0000', '2021-08-21', 'received', '14.5700', '14.5700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (29817, 206, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '38.7600', '51.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.2800', '1.0000', '2021-08-21', 'received', '38.7600', '38.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.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 (29818, 206, NULL, 7370, '1290', 'BELLS BABY COUGH', NULL, '12.1200', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.2400', '2.0000', '2021-08-21', 'received', '12.1200', '12.1200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (29819, NULL, NULL, 7675, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29820, NULL, NULL, 8074, '', '', 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 (29821, NULL, NULL, 2819, '', '', 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 (29822, NULL, NULL, 7848, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-57.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29823, NULL, NULL, 8750, '', '', 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 (29824, NULL, NULL, 9417, '', '', 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 (29825, NULL, NULL, 2877, '', '', 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 (29826, NULL, NULL, 9245, '', '', 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 (29827, NULL, NULL, 2299, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-58.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29828, NULL, NULL, 7385, '', '', 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 (29829, NULL, NULL, 8144, '', '', 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 (29830, NULL, NULL, 7816, '', '', 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 (29831, NULL, NULL, 7967, '', '', 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 (29832, NULL, NULL, 2352, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-148.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29833, NULL, NULL, 7544, '', '', 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 (29834, NULL, NULL, 8181, '', '', 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 (29835, NULL, NULL, 8417, '', '', 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 (29836, NULL, NULL, 7591, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (29837, 207, NULL, 2445, '08969985', 'ADULT DIAPER', NULL, '4.0000', '5.2800', '80.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '320.0000', '26.0000', '2021-08-21', 'received', '4.0000', '4.0000', '80.0000', NULL, NULL, 1, 'pc', '80.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 (29838, 207, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '85.0000', '112.2000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2021-08-21', 'received', '85.0000', '85.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '85.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29839, 207, NULL, 9178, '3098', 'PROPA LINER', NULL, '4.0000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '1.0000', '2021-08-21', '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 (29840, 207, NULL, 8059, '1979', 'PROPER PAD', NULL, '6.0000', '7.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-08-21', '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 (29841, 207, NULL, 8949, '2869', 'SOFTCARE PAD', NULL, '4.7500', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '6.0000', '2021-08-21', 'received', '4.7500', '4.7500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (29842, 207, NULL, 2644, '46646498', 'COMFORT SOFTNER VERY B/S', NULL, '45.0000', '55.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2021-08-21', '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 (29843, 207, NULL, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '2.0000', '2021-08-21', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (29844, 207, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.8800', '0.0000', '2021-08-21', 'received', '6.8800', '6.8800', '1.0000', NULL, NULL, 1, 'pc', '1.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 (29845, 207, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '20.0000', '2021-08-21', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (29846, 207, NULL, 2104, '44677443', 'DYNWELL TABLETS', NULL, '0.2000', '0.5000', '200.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '190.0000', '2021-08-21', 'received', '0.2000', '0.2000', '200.0000', NULL, NULL, 1, 'pc', '200.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 (29847, NULL, NULL, 7886, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-66.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29848, NULL, NULL, 8332, '', '', 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 (29849, NULL, NULL, 9202, '', '', 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 (29850, NULL, NULL, 7524, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (29851, NULL, NULL, 8984, '', '', 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 (29910, NULL, NULL, 1399, '', '', 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 (29911, NULL, NULL, 2003, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29912, NULL, NULL, 7321, '', '', 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 (29913, NULL, NULL, 8084, '', '', 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 (29914, NULL, NULL, 8097, '', '', 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 (29970, NULL, NULL, 1804, '', '', 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 (29971, 203, NULL, 7315, '1235', 'LONART FORTE TABS', NULL, '15.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2021-08-21', '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 (29972, 203, NULL, 7317, '1237', 'LONART DS TABS', NULL, '19.5500', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '0.0000', '2021-08-21', 'received', '19.5500', '19.5500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (29973, 203, NULL, 7318, '1238', 'LONART SUSP', NULL, '13.4400', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3200', '0.0000', '2021-08-21', 'received', '13.4400', '13.4400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (29974, 203, NULL, 7319, '1239', 'MENTAT TABS', NULL, '9.0000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-08-21', '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 (29975, 203, NULL, 7320, '1240', 'LOSAR-DENK 100', NULL, '7.9500', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '0.0000', '2021-08-21', 'received', '7.9500', '7.9500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (29976, 203, NULL, 7322, '1242', 'LUEX ADULT DRY', NULL, '4.3600', '12.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.6400', '23.0000', '2021-08-21', 'received', '4.3600', '4.3600', '24.0000', NULL, NULL, 1, 'pc', '24.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 (29977, 203, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '55.7000', '6.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.8000', '0.0000', '2021-08-21', 'received', '55.7000', '55.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '55.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 (29978, 203, NULL, 7327, '1247', 'motilium', NULL, '6.8000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2021-08-21', 'received', '6.8000', '6.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (29979, 203, NULL, 7328, '1248', 'MULTIVITE', NULL, '11.8200', '0.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.1000', '0.0000', '2021-08-21', 'received', '11.8200', '11.8200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (29980, 203, NULL, 7329, '1249', 'MAGACID PLUS', NULL, '19.3000', '12.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.8000', '3.0000', '2021-08-21', 'received', '19.3000', '19.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (29981, 203, NULL, 7330, '1250', 'MYCOLEX CREAM', NULL, '3.0500', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.1500', '0.0000', '2021-08-21', 'received', '3.0500', '3.0500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (29982, 203, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '4.0000', '27.0000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.0000', '34.0000', '2021-08-21', 'received', '4.0000', '4.0000', '38.0000', NULL, NULL, 1, 'pc', '38.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 (29983, 203, NULL, 7332, '1252', 'MYCROGYNON Fe', NULL, '9.0000', '4.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '15.0000', '2021-08-21', 'received', '9.0000', '9.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (29984, 203, NULL, 7333, '1253', 'MR Q', NULL, '13.5000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-08-21', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (29985, 203, NULL, 7335, '1255', 'NEO HYCOLEX5ML', NULL, '10.4000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-08-21', 'received', '10.4000', '10.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (29986, 203, NULL, 7337, '1257', 'NERVE AND BONE', NULL, '0.6500', '14.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '30.0000', '2021-08-21', 'received', '0.6500', '0.6500', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '0.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 (29987, 203, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '1.5400', '17.5000', '81.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.7400', '75.0000', '2021-08-21', 'received', '1.5400', '1.5400', '81.0000', NULL, NULL, 1, 'pc', '81.0000', NULL, NULL, NULL, NULL, '1.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 (29988, 203, NULL, 7343, '1263', 'AMOXYCILLIN SUSP MG', NULL, '47.1000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.3000', '2.0000', '2021-08-21', 'received', '47.1000', '47.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '47.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 (29989, 203, NULL, 7344, '1264', 'PARA DENK250 SUPPO', NULL, '94.2800', '2.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '282.8400', '0.0000', '2021-08-21', 'received', '94.2800', '94.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '94.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 (29990, 203, NULL, 7348, '1268', 'ALPHA GARLIC CAPS', NULL, '25.3000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '1.0000', '2021-08-21', 'received', '25.3000', '25.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '25.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 (29991, 203, NULL, 7349, '1269', 'ACTINAC TAB', NULL, '94.5600', '19.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1512.9600', '16.0000', '2021-08-21', 'received', '94.5600', '94.5600', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '94.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 (29992, 203, NULL, 7352, '1272', 'ANAFRANIL25', NULL, '0.2900', '1.9000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0200', '38.0000', '2021-08-21', 'received', '0.2900', '0.2900', '38.0000', NULL, NULL, 1, 'pc', '38.0000', NULL, NULL, NULL, NULL, '0.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 (29993, 203, NULL, 7353, '1273', 'APC 4S', NULL, '18.5000', '0.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-08-21', '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 (29994, 203, NULL, 7354, '1274', 'ALUMINIUM HYDROXIDE', NULL, '18.0000', '1.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-08-21', '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 (29995, 203, NULL, 7355, '1275', 'BIOFERON SRP', NULL, '11.6400', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9200', '0.0000', '2021-08-21', '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 (29996, 203, NULL, 7356, '1276', 'BIOFGERON CAPS', NULL, '10.9000', '24.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.9000', '0.0000', '2021-08-21', 'received', '10.9000', '10.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (29997, 203, NULL, 7357, '1277', 'BONISAN', NULL, '11.0000', '15.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-08-21', '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 (29998, 203, NULL, 7359, '1279', 'BORGES125', NULL, '20.0000', '15.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-08-21', '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 (29999, 203, NULL, 7361, '1281', 'CAMEL500', NULL, '7.0000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2021-08-21', 'received', '7.0000', '7.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30000, 203, NULL, 7362, '1282', 'CAMEL 250ML', NULL, '2.8300', '16.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9200', '24.0000', '2021-08-21', 'received', '2.8300', '2.8300', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '2.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 (30001, 203, NULL, 7365, '1285', 'BIG BEN', NULL, '9.6500', '4.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.3000', '1.0000', '2021-08-21', 'received', '9.6500', '9.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (30002, 203, NULL, 7366, '1286', 'ATORVASTATIN10MG', NULL, '14.9500', '10.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9000', '0.0000', '2021-08-21', 'received', '14.9500', '14.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (30003, 203, NULL, 7367, '1287', 'ATORVASTATIN20MG', NULL, '35.0000', '13.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-08-21', '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 (30004, 203, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '11.4000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2021-08-21', 'received', '11.4000', '11.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (30005, 203, NULL, 7369, '1289', 'BONGELA CHILD', NULL, '32.4000', '48.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '2.0000', '2021-08-21', 'received', '32.4000', '32.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (30006, 203, NULL, 7370, '1290', 'BELLS BABY COUGH', NULL, '27.6000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.8000', '0.0000', '2021-08-21', 'received', '27.6000', '27.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.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 (30007, 203, NULL, 7371, '1291', 'BONGELA ADULT', NULL, '23.9900', '45.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.9500', '4.0000', '2021-08-21', 'received', '23.9900', '23.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (30008, 203, NULL, 7373, '1293', 'CATAFLAM 50MG', NULL, '3.9000', '32.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.2000', '28.0000', '2021-08-21', 'received', '3.9000', '3.9000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (30009, 203, NULL, 7374, '1294', 'AXACEF 250', NULL, '9.8000', '29.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.8000', '11.0000', '2021-08-21', 'received', '9.8000', '9.8000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (30010, 203, NULL, 7375, '1295', 'AXACEF 500', NULL, '5.1000', '5.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.8000', '0.0000', '2021-08-21', 'received', '5.1000', '5.1000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (30011, 203, NULL, 7378, '1298', 'ATACAND PLUS 16/12.5MG', NULL, '8.5000', '197.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-08-21', '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 (30012, 203, NULL, 7379, '1299', 'TEETHING MIXTURE ERNEST', NULL, '12.5100', '7.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5100', '0.0000', '2021-08-21', 'received', '12.5100', '12.5100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.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 (30013, 203, NULL, 7381, '1301', 'TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329', NULL, '55.2100', '16.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '331.2600', '4.0000', '2021-08-21', 'received', '55.2100', '55.2100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '55.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 (30014, 203, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '7.4500', '10.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.9500', '9.0000', '2021-08-21', 'received', '7.4500', '7.4500', '11.0000', NULL, NULL, 1, 'pc', '11.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 (30015, 203, NULL, 7383, '1303', 'AUGMENTIN  625 MG', NULL, '1.9700', '73.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.1000', '26.0000', '2021-08-21', 'received', '1.9700', '1.9700', '30.0000', NULL, NULL, 1, 'pc', '30.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 (30016, 203, NULL, 7384, '1304', 'AZIRON AZITHROMYCYCIN TAB USP 500 MG', NULL, '8.2000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '3.0000', '2021-08-21', '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 (30017, 203, NULL, 2847, '13076232', 'SILVER BIRD', NULL, '13.8800', '18.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '388.6400', '25.0000', '2021-08-21', 'received', '13.8800', '13.8800', '28.0000', NULL, NULL, 1, 'pc', '28.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 (30018, 203, NULL, 7388, '1308', 'AMOXYCILLIN SUSP ORAL BP 125/5ml', NULL, '4.0000', '4.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '4.0000', '2021-08-21', '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 (30019, 203, NULL, 7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', NULL, '18.2100', '7.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.8400', '0.0000', '2021-08-21', 'received', '18.2100', '18.2100', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30020, 203, NULL, 7392, '1312', 'CLOTRI-DENK 100 VAGINAL TABS', NULL, '0.5000', '24.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '16.0000', '2021-08-21', 'received', '0.5000', '0.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (30021, 203, NULL, 7394, '1314', 'ZINTAB 10ML', NULL, '12.7400', '1.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.7000', '0.0000', '2021-08-21', 'received', '12.7400', '12.7400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30022, 203, NULL, 7395, '1315', 'TRIX ORIS S/S', NULL, '72.0000', '12.5000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5184.0000', '72.0000', '2021-08-21', 'received', '72.0000', '72.0000', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '72.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30023, 203, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '6.0000', '17.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-08-21', '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 (30024, 203, NULL, 7397, '1317', 'ZITHROMAX  SUSP', NULL, '7.9700', '97.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9400', '0.0000', '2021-08-21', 'received', '7.9700', '7.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.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 (30025, 203, NULL, 7398, '1318', 'WORMPLEX 400 SUSP. 20ML', NULL, '18.5000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.0000', '6.0000', '2021-08-21', 'received', '18.5000', '18.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (30026, 203, NULL, 7399, '1319', 'SE\'CLEAR EYE/EAR DROP', NULL, '57.0500', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.1500', '1.0000', '2021-08-21', 'received', '57.0500', '57.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '57.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 (30027, 203, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '14.5300', '24.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0600', '0.0000', '2021-08-21', 'received', '14.5300', '14.5300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30028, 203, NULL, 7402, '1322', 'VERMOX SUSP', NULL, '116.3300', '19.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.6600', '0.0000', '2021-08-21', '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 (30029, 203, NULL, 7403, '1323', 'MOTILIUM 10 MG 30 TABS ORAL JANSSEN', NULL, '8.2000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4000', '2.0000', '2021-08-21', 'received', '8.2000', '8.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30030, 203, NULL, 7405, '1325', 'bisoprolol fumarate 2.5mg tabs sandox', NULL, '4.5500', '11.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4000', '8.0000', '2021-08-21', 'received', '4.5500', '4.5500', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '4.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 (30031, 203, NULL, 7409, '1329', 'PRIMOLUT N', NULL, '1.3200', '10.0000', '53.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.9600', '26.0000', '2021-08-21', 'received', '1.3200', '1.3200', '53.0000', NULL, NULL, 1, 'pc', '53.0000', NULL, NULL, NULL, NULL, '1.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 (30032, 203, NULL, 7410, '1330', 'PARABRU', NULL, '1.8000', '1.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.4000', '3.0000', '2021-08-21', 'received', '1.8000', '1.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (30033, 203, NULL, 7413, '1333', 'COLESTOP10MG', NULL, '5.4200', '32.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6800', '4.0000', '2021-08-21', 'received', '5.4200', '5.4200', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30034, 203, NULL, 7414, '1334', 'CONGESTYL SRP', NULL, '18.2100', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6300', '3.0000', '2021-08-21', '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 (30035, 203, NULL, 7415, '1335', 'CONGESTYL TAB', NULL, '5.9100', '7.5000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.8300', '0.0000', '2021-08-21', 'received', '5.9100', '5.9100', '13.0000', NULL, NULL, 1, 'pc', '13.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 (30036, 203, NULL, 7420, '1340', 'DEEP FREEZE SPRAY 150ML', NULL, '42.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '1.0000', '2021-08-21', '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 (30037, 203, NULL, 7421, '1341', 'TENOX5MG', NULL, '12.0200', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0600', '3.0000', '2021-08-21', 'received', '12.0200', '12.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (30038, 203, NULL, 7422, '1342', 'CIPRINOL 500', NULL, '4.4700', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.4700', '1.0000', '2021-08-21', 'received', '4.4700', '4.4700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '4.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 (30039, 203, NULL, 7424, '1344', 'CLOSE UP140G', NULL, '7.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '9.0000', '2021-08-21', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (30040, 203, NULL, 7425, '1345', 'CORORANGE SRP', NULL, '25.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '5.0000', '2021-08-21', '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 (30041, 203, NULL, 7426, '1346', 'COTTON WOOL200G', NULL, '2.6000', '10.5000', '37.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.2000', '37.0000', '2021-08-21', 'received', '2.6000', '2.6000', '37.0000', NULL, NULL, 1, 'pc', '37.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 (30042, 203, NULL, 7427, '1347', 'AZOMAX 500', NULL, '3.4000', '45.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2021-08-21', '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 (30043, 203, NULL, 7428, '1348', 'TADOL 100', NULL, '49.2100', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.0500', '0.0000', '2021-08-21', 'received', '49.2100', '49.2100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30044, 203, NULL, 7428, '1348', 'TADOL 100', NULL, '49.2100', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.0500', '0.0000', '2021-08-21', 'received', '49.2100', '49.2100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30045, 203, NULL, 7429, '1349', 'VAGINAX CREAM', NULL, '18.0000', '4.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2021-08-21', 'received', '18.0000', '18.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (30046, 203, NULL, 7430, '1350', 'ZINNAT 250 TAB', NULL, '15.0000', '64.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-08-21', '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 (30047, 203, NULL, 7431, '1351', 'CIPROLEX TZ', NULL, '4.6500', '24.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '11.0000', '2021-08-21', 'received', '4.6500', '4.6500', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '4.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 (30048, 203, NULL, 7432, '1352', 'VITAFORCE', NULL, '3.2300', '20.0000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.8800', '51.0000', '2021-08-21', 'received', '3.2300', '3.2300', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '3.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 (30049, 203, NULL, 7433, '1353', 'ZESTRIL 20MG', NULL, '6.2000', '6.2000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.8000', '0.0000', '2021-08-21', 'received', '6.2000', '6.2000', '14.0000', NULL, NULL, 1, 'pc', '14.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 (30050, 203, NULL, 7437, '1357', 'CO APPROVEL 150/12.5', NULL, '13.0000', '5.2000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-08-21', '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 (30051, 203, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '28.6900', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.3800', '0.0000', '2021-08-21', '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 (30052, 203, NULL, 7439, '1359', 'TOBRADEX EYE DROP', NULL, '2.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '2.0000', '2021-08-21', '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 (30053, 203, NULL, 7440, '1360', 'ZINACEF 750', NULL, '9.6000', '31.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2021-08-21', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30054, 203, NULL, 7442, '1362', 'CASTOR OIL', NULL, '2.9500', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.8500', '0.0000', '2021-08-21', 'received', '2.9500', '2.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.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 (30055, 203, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '2.5000', '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.5000', '0.0000', '2021-08-21', '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 (30056, 203, NULL, 7445, '1365', 'CIROTAMIN SRP', NULL, '1.3800', '10.0000', '95.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.1000', '95.0000', '2021-08-21', 'received', '1.3800', '1.3800', '95.0000', NULL, NULL, 1, 'pc', '95.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 (30057, 203, NULL, 7446, '1366', 'TETRA OINT', NULL, '1.3100', '3.0000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.9500', '34.0000', '2021-08-21', 'received', '1.3100', '1.3100', '45.0000', NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, '1.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 (30058, 203, NULL, 7448, '1368', 'STREPTOL54/6', NULL, '15.8500', '2.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.7000', '0.0000', '2021-08-21', 'received', '15.8500', '15.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (30059, 203, NULL, 7449, '1369', 'VENTOLIN EVOHALER', NULL, '9.8000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8000', '1.0000', '2021-08-21', 'received', '9.8000', '9.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30060, 203, NULL, 7451, '1371', 'WARFARIN 5MG', NULL, '9.8000', '13.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '8.0000', '2021-08-21', 'received', '9.8000', '9.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (30061, 203, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '28.5000', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.5000', '0.0000', '2021-08-21', 'received', '28.5000', '28.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (30062, 203, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '26.2200', '35.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2200', '0.0000', '2021-08-21', 'received', '26.2200', '26.2200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '26.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 (30063, 203, NULL, 7455, '1375', 'WELLWOMAN CAPS', NULL, '5.3500', '38.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4500', '7.0000', '2021-08-21', 'received', '5.3500', '5.3500', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '5.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 (30064, 203, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '2.3500', '8.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.0000', '68.0000', '2021-08-21', 'received', '2.3500', '2.3500', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '2.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 (30065, 203, NULL, 7458, '1378', 'VOLLTFAST 50MG', NULL, '3.0000', '2.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2021-08-21', 'received', '3.0000', '3.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (30066, 203, NULL, 7459, '1379', 'TOTHEMA', NULL, '40.3500', '3.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '161.4000', '0.0000', '2021-08-21', 'received', '40.3500', '40.3500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '40.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 (30067, 203, NULL, 7462, '1382', 'PROSTACARE', NULL, '23.0000', '67.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '5.0000', '2021-08-21', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30068, 203, NULL, 7462, '1382', 'PROSTACARE', NULL, '23.0000', '67.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '1.0000', '2021-08-21', '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 (30145, 208, NULL, 7341, '1261', 'POLYGYNAX', NULL, '48.0200', '63.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0200', '0.0000', '2021-08-21', 'received', '48.0200', '48.0200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '48.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 (30146, 208, NULL, 7488, '1408', 'DEEP HEAT OINT 15G', NULL, '9.3000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '2.0000', '2021-08-21', 'received', '9.3000', '9.3000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30147, 208, NULL, 7419, '1339', 'DEEP HEAT SPRAY 150ML', NULL, '24.8900', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7800', '0.0000', '2021-08-21', 'received', '24.8900', '24.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.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 (30148, 208, NULL, 7428, '1348', 'TADOL 100', NULL, '2.6100', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.3000', '0.0000', '2021-08-21', 'received', '2.6100', '2.6100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (30149, 208, NULL, 8003, '1923', 'TYLENOL', NULL, '34.8000', '46.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2021-08-21', 'received', '34.8000', '34.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '34.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 (30150, 208, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '28.6900', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6900', '0.0000', '2021-08-21', 'received', '28.6900', '28.6900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30151, 208, NULL, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', NULL, '8.2000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8000', '0.0000', '2021-08-21', 'received', '8.2000', '8.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30152, 208, NULL, 8104, '2024', 'GILOBA', NULL, '1.6000', '2.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-08-21', 'received', '1.6000', '1.6000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (30153, 208, NULL, 9428, '08479152', 'PREGNAVIT MAX', NULL, '97.6500', '129.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.6500', '1.0000', '2021-08-21', 'received', '97.6500', '97.6500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '97.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 (30154, 208, NULL, 9429, '89969191', 'PREGNAVIT PLUS', NULL, '78.1200', '103.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.1200', '0.0000', '2021-08-21', 'received', '78.1200', '78.1200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '78.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 (30155, 208, NULL, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '24.0000', '2021-08-21', '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 (30156, 208, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '52.8500', '70.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8500', '1.0000', '2021-08-21', 'received', '52.8500', '52.8500', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30157, 208, NULL, 7482, '1402', 'MAXMOX 500', NULL, '3.0500', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '0.0000', '2021-08-21', '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 (30158, 208, NULL, 9098, '3018', 'JOY VIKIL', NULL, '25.0000', '34.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-08-21', 'received', '25.0000', '25.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30159, 208, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-08-21', 'received', '6.6000', '6.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30160, 208, NULL, 7412, '1332', 'COLODIUM', NULL, '1.5200', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '0.0000', '2021-08-21', '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 (30161, 208, NULL, 8064, '1984', 'EXETER PARA SRP', NULL, '4.9000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2021-08-21', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30162, 208, NULL, 7750, '1670', 'CALPOL 2+', NULL, '34.9000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.8000', '0.0000', '2021-08-21', '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 (30163, 208, NULL, 7708, '1628', 'TEEDAR', NULL, '6.1400', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.4000', '0.0000', '2021-08-21', 'received', '6.1400', '6.1400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (30164, 208, NULL, 7552, '1472', 'LOFNAC GEL', NULL, '4.0000', '5.2800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2021-08-21', '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 (30165, 208, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.8600', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '12.0000', '2021-08-21', 'received', '0.8600', '0.8600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (30166, 208, NULL, 7420, '1340', 'DEEP FREEZE SPRAY 150ML', NULL, '29.9500', '40.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9500', '0.0000', '2021-08-21', 'received', '29.9500', '29.9500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '29.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 (30167, 208, NULL, 7417, '1337', 'DALACIN 300MG ORIGINAL', NULL, '6.4100', '8.5000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.5600', '0.0000', '2021-08-21', 'received', '6.4100', '6.4100', '16.0000', NULL, NULL, 1, 'pc', '16.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 (30168, 208, NULL, 8944, '2864', 'VITANE SRP', NULL, '38.1200', '51.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.2400', '0.0000', '2021-08-21', 'received', '38.1200', '38.1200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.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 (30169, 208, NULL, 7378, '1298', 'ATACAND PLUS 16/12.5MG', NULL, '141.7100', '197.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.7100', '0.0000', '2021-08-21', 'received', '141.7100', '141.7100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '141.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 (30170, 208, NULL, 9245, '3165', 'POLYGEL SUSP 200ML', NULL, '6.6100', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0500', '0.0000', '2021-08-21', 'received', '6.6100', '6.6100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (30171, 208, NULL, 7411, '1331', 'CITRO C', NULL, '1.3500', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-08-21', 'received', '1.3500', '1.3500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (30172, 208, NULL, 8161, '2081', 'PROWOMAN', NULL, '19.1900', '25.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.3800', '0.0000', '2021-08-21', 'received', '19.1900', '19.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (30173, 208, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '25.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4900', '0.0000', '2021-08-21', '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 (30174, 208, NULL, 7491, '1411', 'ASCORYL SRP', NULL, '4.8000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-08-21', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (30175, 208, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.7700', '7.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.7700', '1.0000', '2021-08-21', 'received', '4.7700', '4.7700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30176, 208, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '4.7700', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.7700', '0.0000', '2021-08-21', 'received', '4.7700', '4.7700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30177, 208, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '5.8000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2021-08-21', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30178, 208, NULL, 8789, '2709', 'ABC *ZINC SRP', NULL, '4.9300', '6.5100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.3000', '5.0000', '2021-08-21', 'received', '4.9300', '4.9300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (30179, 208, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.1300', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.2600', '0.0000', '2021-08-21', '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 (30180, 208, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '3.0000', '2021-08-21', '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 (30181, 208, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '26.5700', '35.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1400', '0.0000', '2021-08-21', 'received', '26.5700', '26.5700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (30182, 208, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2000', '5.0000', '2021-08-21', '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 (30183, 208, NULL, 7380, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', NULL, '5.6200', '11.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.6200', '0.0000', '2021-08-21', 'received', '5.6200', '5.6200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.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 (30184, 208, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '6.2300', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6900', '0.0000', '2021-08-21', 'received', '6.2300', '6.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (30185, 208, NULL, 8418, '2338', 'LACTULOSE 500ML', NULL, '43.8200', '58.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6400', '0.0000', '2021-08-21', 'received', '43.8200', '43.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '43.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 (30186, 208, NULL, 7534, '1454', 'CONGESTYL SRP', NULL, '9.3600', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7200', '0.0000', '2021-08-21', 'received', '9.3600', '9.3600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30187, 208, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '27.2800', '36.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5600', '0.0000', '2021-08-21', 'received', '27.2800', '27.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (30188, 208, NULL, 9183, '3103', 'ZYMAX SUSP', NULL, '8.3000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.6000', '0.0000', '2021-08-21', 'received', '8.3000', '8.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (30189, 208, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.5900', '0.0000', '2021-08-21', 'received', '8.5900', '8.5900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30190, 208, NULL, 9154, '3074', 'ZYMAX 500', NULL, '10.6800', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2021-08-21', 'received', '10.6800', '10.6800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (30191, 208, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.9800', '0.0000', '2021-08-21', 'received', '10.9800', '10.9800', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30192, 208, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '11.7000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2021-08-21', '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 (30193, 208, NULL, 7867, '1787', 'AMPICLOX CAPS', NULL, '2.7700', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.7000', '0.0000', '2021-08-21', 'received', '2.7700', '2.7700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (30194, 208, NULL, 2952, '11288003', 'AMPICLOX ECL', NULL, '2.4000', '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.4000', '1.0000', '2021-08-21', 'received', '2.4000', '2.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30195, 208, NULL, 3062, '03146209', 'DIPHEX ANTITUSSIVE & EXP SYR', NULL, '6.0700', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.3500', '2.0000', '2021-08-21', 'received', '6.0700', '6.0700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30196, 208, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '1.0000', '2021-08-21', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (30197, 208, NULL, 7451, '1371', 'WARFARIN 5MG', NULL, '9.8000', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '1.0000', '2021-08-21', '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 (30198, 208, NULL, 1582, '5017007016991', 'WARFARIN TAB 5MG 28\'', NULL, '9.3600', '13.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.3600', '1.0000', '2021-08-21', '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 (30199, 208, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.7100', '30.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7100', '0.0000', '2021-08-21', 'received', '22.7100', '22.7100', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30200, 208, NULL, 9430, '57291940', 'BENYLIN 4 FLU 200ML B/S', NULL, '40.9000', '54.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.8000', '0.0000', '2021-08-21', 'received', '40.9000', '40.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.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 (30201, 208, NULL, 7606, '1526', 'PERMOXL SRP', NULL, '4.8600', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5800', '1.0000', '2021-08-21', 'received', '4.8600', '4.8600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (30202, 208, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.9800', '7.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.9800', '0.0000', '2021-08-21', 'received', '4.9800', '4.9800', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30203, 208, NULL, 7763, '1683', 'FUMET', NULL, '1.1300', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.3900', '0.0000', '2021-08-21', 'received', '1.1300', '1.1300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (30204, 208, NULL, 2941, '60137035', 'FUMET SUSPENSION', NULL, '2.6600', '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.6600', '1.0000', '2021-08-21', 'received', '2.6600', '2.6600', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30205, 208, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '2.3000', '3.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.3000', '0.0000', '2021-08-21', 'received', '2.3000', '2.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30206, 208, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '8.1600', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4800', '0.0000', '2021-08-21', 'received', '8.1600', '8.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (30207, 208, NULL, 7478, '1398', 'NIFE DENK 20', NULL, '4.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-08-21', '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 (30208, 208, NULL, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2021-08-21', '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 (30209, 208, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.0200', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2000', '10.0000', '2021-08-21', '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 (30210, 208, NULL, 8456, '2376', 'CARTEF DS', NULL, '5.5400', '7.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5400', '0.0000', '2021-08-21', 'received', '5.5400', '5.5400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.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 (30211, 208, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '24.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '0.0000', '2021-08-21', 'received', '17.7000', '17.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30212, 208, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '2.3500', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2021-08-21', 'received', '2.3500', '2.3500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (30213, 208, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0600', '2.0000', '2021-08-21', 'received', '14.5300', '14.5300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30214, 208, NULL, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '10.0000', '2021-08-21', '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 (30215, 208, NULL, 8275, '2195', 'CLARITROMYCIN  500', NULL, '29.8500', '40.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8500', '0.0000', '2021-08-21', 'received', '29.8500', '29.8500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '29.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 (30216, 208, NULL, 8842, '2762', '3CP', NULL, '13.6700', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3400', '0.0000', '2021-08-21', 'received', '13.6700', '13.6700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.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 (30217, 208, NULL, 8660, '2580', 'NCP 100ML', NULL, '20.0500', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.1000', '0.0000', '2021-08-21', 'received', '20.0500', '20.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (30218, 208, NULL, 8036, '1956', 'ENVICO', NULL, '6.5100', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5300', '0.0000', '2021-08-21', 'received', '6.5100', '6.5100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (30219, 208, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '7.0000', '2021-08-21', 'received', '1.9700', '1.9700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (30220, 208, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '1.9200', '3.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.9200', '0.0000', '2021-08-21', 'received', '1.9200', '1.9200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '1.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 (30221, 208, NULL, 2825, '09140818', 'FACE MASK PACKS', NULL, '8.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-08-21', '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 (30222, 208, NULL, 7638, '1558', 'FLUCONA DENK', NULL, '4.5000', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-08-21', '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 (30223, 208, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '1.5500', '6.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8500', '6.0000', '2021-08-21', 'received', '1.5500', '1.5500', '7.0000', NULL, NULL, 1, 'pc', '7.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 (30224, 208, NULL, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', NULL, '2.9000', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.2000', '7.0000', '2021-08-21', 'received', '2.9000', '2.9000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (30225, 208, NULL, 9265, '3185', 'COUGH & COLD CHILD CARE', NULL, '1.5500', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.4000', '3.0000', '2021-08-21', 'received', '1.5500', '1.5500', '8.0000', NULL, NULL, 1, 'pc', '8.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 (30226, NULL, NULL, 2318, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-38.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30227, NULL, NULL, 7750, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (30228, NULL, NULL, 9028, '', '', 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 (30229, NULL, NULL, 8308, '', '', 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 (30230, NULL, NULL, 1425, '', '', 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 (30231, NULL, NULL, 2662, '', '', 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 (30232, NULL, NULL, 7576, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30233, NULL, NULL, 1904, '', '', 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 (30234, NULL, NULL, 1841, '', '', 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 (30235, NULL, NULL, 2289, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-172.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30236, NULL, NULL, 8668, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30237, NULL, NULL, 2342, '', '', 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 (30238, NULL, NULL, 2242, '', '', 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 (30239, NULL, NULL, 7385, '', '', 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 (30240, NULL, NULL, 1837, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30241, NULL, NULL, 1555, '', '', 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 (30242, NULL, NULL, 2435, '', '', 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 (30243, NULL, NULL, 9397, '', '', 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 (30244, NULL, NULL, 1812, '', '', 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 (30245, NULL, NULL, 7641, '', '', 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 (30246, NULL, NULL, 8296, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30247, NULL, NULL, 8133, '', '', 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 (30248, NULL, NULL, 1863, '', '', 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 (30249, NULL, NULL, 1564, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30250, NULL, NULL, 2254, '', '', 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 (30251, NULL, NULL, 2060, '', '', 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 (30252, NULL, NULL, 1527, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30253, NULL, NULL, 2244, '', '', 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 (30254, NULL, NULL, 8097, '', '', 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 (30255, NULL, NULL, 2068, '', '', 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 (30256, NULL, NULL, 1529, '', '', 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 (30257, NULL, NULL, 8969, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-71.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30258, NULL, NULL, 8964, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-47.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30259, NULL, NULL, 9021, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30260, NULL, NULL, 2784, '', '', 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 (30261, NULL, NULL, 7598, '', '', 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 (30262, NULL, NULL, 8310, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30263, NULL, NULL, 2457, '', '', 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 (30264, NULL, NULL, 2169, '', '', 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 (30265, NULL, NULL, 9193, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30266, NULL, NULL, 8835, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30267, NULL, NULL, 2408, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30268, NULL, NULL, 7802, '', '', 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 (30269, NULL, NULL, 7781, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-166.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30270, NULL, NULL, 7703, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30271, NULL, NULL, 2108, '', '', 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 (30272, NULL, NULL, 1618, '', '', 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 (30273, NULL, NULL, 2061, '', '', 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 (30274, NULL, NULL, 7473, '', '', 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 (30275, NULL, NULL, 2025, '', '', 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 (30276, NULL, NULL, 1636, '', '', 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 (30277, NULL, NULL, 1504, '', '', 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 (30278, NULL, NULL, 7782, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-88.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30279, NULL, NULL, 2366, '', '', 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 (30280, NULL, NULL, 2555, '', '', 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 (30281, NULL, NULL, 2833, '', '', 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 (30282, NULL, NULL, 2003, '', '', 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 (30283, NULL, NULL, 8539, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-57.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30284, NULL, NULL, 7790, '', '', 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 (30285, NULL, NULL, 1499, '', '', 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 (30286, NULL, NULL, 7848, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30287, NULL, NULL, 1573, '', '', 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 (30288, NULL, NULL, 1765, '', '', 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 (30289, NULL, NULL, 1667, '', '', 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 (30290, NULL, NULL, 1602, '', '', 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 (30291, NULL, NULL, 1346, '', '', 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 (30292, NULL, NULL, 1874, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30293, NULL, NULL, 2236, '', '', 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 (30294, NULL, NULL, 1584, '', '', 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 (30295, NULL, NULL, 2713, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30296, NULL, NULL, 2062, '', '', 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 (30297, NULL, NULL, 2415, '', '', 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 (30298, NULL, NULL, 8681, '', '', 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 (30299, NULL, NULL, 8840, '', '', 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 (30300, NULL, NULL, 2302, '', '', 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 (30301, NULL, NULL, 7412, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-92.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30302, NULL, NULL, 7753, '', '', 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 (30303, NULL, NULL, 9367, '', '', 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 (30304, NULL, NULL, 7640, '', '', 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 (30305, NULL, NULL, 2276, '', '', 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 (30306, NULL, NULL, 7675, '', '', 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 (30307, NULL, NULL, 2568, '', '', 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 (30308, NULL, NULL, 7743, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-137.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30309, NULL, NULL, 1946, '', '', 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 (30310, NULL, NULL, 1697, '', '', 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 (30311, NULL, NULL, 2757, '', '', 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 (30312, NULL, NULL, 2608, '', '', 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 (30323, NULL, NULL, 1727, '', '', 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 (30324, NULL, NULL, 7394, '', '', 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 (30325, NULL, NULL, 7443, '', '', 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 (30326, NULL, NULL, 8000, '', '', 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 (30327, NULL, NULL, 8454, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (30328, NULL, NULL, 2076, '', '', 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 (30329, NULL, NULL, 7482, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-81.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30330, NULL, NULL, 8456, '', '', 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 (30331, NULL, NULL, 7913, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-52.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30332, NULL, NULL, 7459, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-293.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30333, NULL, NULL, 2272, '', '', 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 (30361, NULL, NULL, 2327, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30362, NULL, NULL, 7496, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30363, NULL, NULL, 1809, '', '', 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 (30364, NULL, NULL, 2104, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-192.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30365, NULL, NULL, 8735, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-62.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30366, NULL, NULL, 7925, '', '', 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 (30367, NULL, NULL, 1339, '', '', 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 (30368, NULL, NULL, 7752, '', '', 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 (30369, NULL, NULL, 8203, '', '', 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 (30370, NULL, NULL, 8328, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30371, NULL, NULL, 7756, '', '', 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 (30372, NULL, NULL, 8918, '', '', 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 (30373, NULL, NULL, 7780, '', '', 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 (30374, NULL, NULL, 7570, '', '', 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 (30375, NULL, NULL, 1750, '', '', 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 (30376, NULL, NULL, 8878, '', '', 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 (30377, NULL, NULL, 2318, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30378, NULL, NULL, 8457, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30379, NULL, NULL, 8094, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30380, NULL, NULL, 1457, '', '', 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 (30381, NULL, NULL, 2567, '', '', 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 (30382, NULL, NULL, 8516, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30383, NULL, NULL, 8596, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-45.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30384, NULL, NULL, 7709, '', '', 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 (30385, NULL, NULL, 1550, '', '', 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 (30386, NULL, NULL, 9167, '', '', 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 (30387, NULL, NULL, 7544, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-141.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30388, NULL, NULL, 2079, '', '', 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 (30389, NULL, NULL, 7518, '', '', 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 (30390, NULL, NULL, 9422, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30391, NULL, NULL, 9001, '', '', 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 (30392, NULL, NULL, 8413, '', '', 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 (30393, NULL, NULL, 1670, '', '', 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 (30394, NULL, NULL, 2992, '', '', 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 (30395, NULL, NULL, 8608, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30396, NULL, NULL, 7738, '', '', 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 (30397, NULL, NULL, 9424, '', '', 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 (30398, NULL, NULL, 9275, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-71.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30399, NULL, NULL, 7778, '', '', 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 (30400, NULL, NULL, 8127, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30401, NULL, NULL, 1592, '', '', 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 (30402, NULL, NULL, 1848, '', '', 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 (30403, NULL, NULL, 9403, '', '', 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 (30404, NULL, NULL, 7547, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-133.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30405, NULL, NULL, 1302, '', '', 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 (30406, NULL, NULL, 1880, '', '', 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 (30407, NULL, NULL, 7782, '', '', 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 (30408, NULL, NULL, 8247, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30409, NULL, NULL, 8501, '', '', 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 (30410, NULL, NULL, 2891, '', '', 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 (30411, NULL, NULL, 2544, '', '', 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 (30412, NULL, NULL, 1937, '', '', 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 (30413, NULL, NULL, 1880, '', '', 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 (30414, NULL, NULL, 1413, '', '', 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 (30415, NULL, NULL, 9141, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30416, NULL, NULL, 1840, '', '', 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 (30417, NULL, NULL, 2777, '', '', 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 (30418, NULL, NULL, 7765, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-64.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30419, NULL, NULL, 2109, '', '', 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 (30420, NULL, NULL, 8166, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-158.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30421, NULL, NULL, 1498, '', '', 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 (30422, NULL, NULL, 7819, '', '', 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 (30423, NULL, NULL, 1818, '', '', 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 (30424, NULL, NULL, 2220, '', '', 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 (30425, NULL, NULL, 8564, '', '', 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 (30426, NULL, NULL, 2286, '', '', 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 (30427, NULL, NULL, 7776, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30428, NULL, NULL, 7507, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-294.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30429, NULL, NULL, 7588, '', '', 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 (30430, NULL, NULL, 7831, '', '', 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 (30431, NULL, NULL, 7710, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-24.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30432, NULL, NULL, 7558, '', '', 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 (30433, NULL, NULL, 8300, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30434, NULL, NULL, 9325, '', '', 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 (30435, NULL, NULL, 9326, '', '', 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 (30436, NULL, NULL, 7651, '', '', 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 (30437, NULL, NULL, 1304, '', '', 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 (30438, NULL, NULL, 2522, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30439, NULL, NULL, 7741, '', '', 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 (30440, NULL, NULL, 7443, '', '', 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 (30441, NULL, NULL, 8361, '', '', 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 (30442, NULL, NULL, 9368, '', '', 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 (30443, NULL, NULL, 3029, '', '', 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 (30444, NULL, NULL, 7518, '', '', 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 (30445, NULL, NULL, 7819, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (30446, NULL, NULL, 2268, '', '', 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 (30447, NULL, NULL, 2765, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (30448, NULL, NULL, 9204, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-58.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30449, NULL, NULL, 1904, '', '', 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 (30450, NULL, NULL, 1810, '', '', 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 (30451, NULL, NULL, 8859, '', '', 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 (30452, NULL, NULL, 9295, '', '', 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 (30477, 211, NULL, 9431, '48507655', 'SANKOFA SHAPE BUILDER', NULL, '30.0000', '45.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-08-23', '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 (30478, 211, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-08-23', '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 (30479, 211, NULL, 9433, '75310930', 'SANKOFA  FRESH LADY CAPS', NULL, '30.0000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30480, 211, NULL, 9434, '98848032', 'SANKOFA  WEIGHT LOSS  CAPS', NULL, '30.0000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-08-23', '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 (30481, 211, NULL, 9435, '43919263', 'SANKOFA KOOKO CAPS', NULL, '30.0000', '45.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30482, 211, NULL, 9440, '02877504', 'SANKOFA BODY PAINS', NULL, '30.0000', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2021-08-23', '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 (30483, 211, NULL, 9437, '40927542', 'SANKOFA MARTWA', NULL, '30.0000', '45.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30484, 211, NULL, 9442, '62933908', 'SANKOFA BIG PENIS  MIXTURE ', NULL, '30.0000', '60.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-08-23', '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 (30485, 211, NULL, 9443, '53926880', 'SANKOFA KOOKO  MIXTURE ', NULL, '30.0000', '60.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-08-23', '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 (30486, 209, NULL, 9431, '48507655', 'SANKOFA SHAPE BUILDER', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-08-23', '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 (30487, 209, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30488, 209, NULL, 9433, '75310930', 'SANKOFA  FRESH LADY CAPS', NULL, '30.0000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30489, 209, NULL, 9434, '98848032', 'SANKOFA  WEIGHT LOSS  CAPS', NULL, '30.0000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-08-23', '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 (30490, 209, NULL, 9435, '43919263', 'SANKOFA KOOKO CAPS', NULL, '30.0000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30491, 209, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30492, 209, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30493, 209, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30494, 209, NULL, 9437, '40927542', 'SANKOFA MARTWA', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30495, 209, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30496, 209, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30497, 209, NULL, 9438, '26736920', 'SANKOFA  BIG PENIS  MIXTURE ', NULL, '30.0000', '60.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-08-23', '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 (30498, 209, NULL, 9435, '43919263', 'SANKOFA KOOKO CAPS', NULL, '30.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30499, 209, NULL, 9439, '73651398', 'SANKOFA  KOOKO MIXTURE ', NULL, '30.0000', '60.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30500, 209, NULL, 7715, '1635', 'MALARIA TEST KIT', NULL, '1.8900', '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2021-08-23', 'received', '1.8900', '1.8900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (30501, 209, NULL, 2316, '59549986', 'SMA ', NULL, '45.0000', '48.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-08-23', '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 (30502, 210, NULL, 9431, '48507655', 'SANKOFA SHAPE BUILDER', NULL, '30.0000', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2021-08-23', '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 (30503, 210, NULL, 9432, '65449909', 'SANKOFA BIG PENIS CAPS', NULL, '30.0000', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30504, 210, NULL, 9433, '75310930', 'SANKOFA  FRESH LADY CAPS', NULL, '30.0000', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30505, 210, NULL, 9434, '98848032', 'SANKOFA  WEIGHT LOSS  CAPS', NULL, '30.0000', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30506, 210, NULL, 9435, '43919263', 'SANKOFA KOOKO CAPS', NULL, '30.0000', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-23', '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 (30507, 210, NULL, 9440, '02877504', 'SANKOFA BODY PAINS', NULL, '30.0000', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2021-08-23', '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 (30508, 210, NULL, 9437, '40927542', 'SANKOFA MARTWA', NULL, '30.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30509, 210, NULL, 9442, '62933908', 'SANKOFA BIG PENIS  MIXTURE ', NULL, '30.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30510, 210, NULL, 9443, '53926880', 'SANKOFA KOOKO  MIXTURE ', NULL, '30.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-23', '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 (30511, 210, NULL, 9444, '85598566', 'EXECUTIVE TOOTHBRUSH ASHFORD', NULL, '1.8000', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '8.0000', '2021-08-23', 'received', '1.8000', '1.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (30512, NULL, NULL, 8086, '', '', 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 (30513, NULL, NULL, 8548, '', '', 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 (30514, NULL, NULL, 8965, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30515, NULL, NULL, 8689, '', '', 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 (30516, NULL, NULL, 7401, '', '', 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 (30517, NULL, NULL, 8825, '', '', 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 (30518, NULL, NULL, 7947, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30519, NULL, NULL, 7477, '', '', 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 (30520, NULL, NULL, 2648, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30521, NULL, NULL, 8882, '', '', 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 (30522, NULL, NULL, 7973, '', '', 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 (30523, NULL, NULL, 1629, '', '', 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 (30524, NULL, NULL, 7609, '', '', 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 (30525, NULL, NULL, 7711, '', '', 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 (30526, NULL, NULL, 8063, '', '', 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 (30527, NULL, NULL, 9269, '', '', 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 (30528, NULL, NULL, 8463, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30529, NULL, NULL, 8038, '', '', 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 (30530, NULL, NULL, 7334, '', '', 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 (30531, NULL, NULL, 9399, '', '', 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 (30532, NULL, NULL, 9158, '', '', 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 (30533, NULL, NULL, 7778, '', '', 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 (30534, NULL, NULL, 2753, '', '', 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 (30535, NULL, NULL, 7659, '', '', 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 (30536, NULL, NULL, 1340, '', '', 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 (30537, NULL, NULL, 7522, '', '', 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 (30538, NULL, NULL, 2440, '', '', 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 (30539, NULL, NULL, 2315, '', '', 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 (30540, NULL, NULL, 7674, '', '', 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 (30541, NULL, NULL, 7840, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30542, NULL, NULL, 9274, '', '', 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 (30543, NULL, NULL, 7881, '', '', 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 (30544, NULL, NULL, 7917, '', '', 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 (30545, NULL, NULL, 8382, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30546, NULL, NULL, 9394, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30547, NULL, NULL, 8430, '', '', 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 (30548, NULL, NULL, 7565, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30549, NULL, NULL, 9174, '', '', 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 (30550, NULL, NULL, 8452, '', '', 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 (30551, NULL, NULL, 8304, '', '', 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 (30552, NULL, NULL, 7775, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30553, NULL, NULL, 7862, '', '', 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 (30554, NULL, NULL, 2284, '', '', 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 (30555, NULL, NULL, 8466, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-234.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30556, NULL, NULL, 8677, '', '', 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 (30557, NULL, NULL, 7980, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (30558, NULL, NULL, 9345, '', '', 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 (30559, NULL, NULL, 1306, '', '', 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 (30560, NULL, NULL, 7383, '', '', 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 (30561, NULL, NULL, 8841, '', '', 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 (30562, NULL, NULL, 1691, '', '', 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 (30563, NULL, NULL, 8038, '', '', 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 (30564, NULL, NULL, 7630, '', '', 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 (30565, NULL, NULL, 1435, '', '', 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 (30566, NULL, NULL, 7606, '', '', 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 (30619, NULL, NULL, 7674, '', '', 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 (30620, NULL, NULL, 7872, '', '', 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 (30621, NULL, NULL, 9425, '', '', 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 (30622, NULL, NULL, 8140, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30623, NULL, NULL, 7612, '', '', 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 (30624, NULL, NULL, 7774, '', '', 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 (30625, NULL, NULL, 1542, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30626, NULL, NULL, 3006, '', '', 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 (30627, NULL, NULL, 2557, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30628, NULL, NULL, 8359, '', '', 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 (30629, NULL, NULL, 7610, '', '', 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 (30630, NULL, NULL, 8497, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30631, NULL, NULL, 1855, '', '', 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 (30632, NULL, NULL, 9337, '', '', 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 (30633, NULL, NULL, 2916, '', '', 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 (30634, NULL, NULL, 7913, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30635, NULL, NULL, 8813, '', '', 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 (30636, NULL, NULL, 2699, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-74.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30637, NULL, NULL, 7339, '', '', 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 (30638, NULL, NULL, 2821, '', '', 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 (30639, NULL, NULL, 7564, '', '', 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 (30640, NULL, NULL, 2906, '', '', 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 (30641, NULL, NULL, 2442, '', '', 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 (30642, NULL, NULL, 7736, '', '', 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 (30643, NULL, NULL, 8039, '', '', 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 (30644, NULL, NULL, 7874, '', '', 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 (30645, NULL, NULL, 8346, '', '', 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 (30646, NULL, NULL, 8046, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30647, NULL, NULL, 8363, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30648, NULL, NULL, 8654, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30649, NULL, NULL, 7672, '', '', 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 (30650, NULL, NULL, 7660, '', '', 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 (30651, 212, NULL, 3006, '29763683', 'OSTEOCARE TAB INDIA', NULL, '8.0000', '10.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-08-24', '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 (30652, 212, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-08-24', '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 (30653, 212, NULL, 1696, 'PR-409', 'CYFEN SYR', NULL, '10.2900', '13.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5800', '1.0000', '2021-08-24', 'received', '10.2900', '10.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.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 (30654, 212, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-08-24', '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 (30655, 212, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '11.9500', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9000', '0.0000', '2021-08-24', 'received', '11.9500', '11.9500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30656, 212, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.2000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '0.0000', '2021-08-24', '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 (30657, 212, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '0.0000', '2021-08-24', '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 (30658, 212, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5100', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2000', '0.0000', '2021-08-24', 'received', '0.5100', '0.5100', '20.0000', NULL, NULL, 1, 'pc', '20.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 (30659, 212, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-08-24', '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 (30660, 212, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '6.2000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.4000', '0.0000', '2021-08-24', 'received', '6.2000', '6.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30661, 212, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '29.9800', '40.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.9400', '2.0000', '2021-08-24', 'received', '29.9800', '29.9800', '3.0000', NULL, NULL, 1, 'pc', '3.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 (30662, 212, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0800', '3.0000', '2021-08-24', 'received', '19.0200', '19.0200', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30663, 212, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.1000', '2.0000', '2021-08-24', '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 (30664, 212, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.6900', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0700', '0.0000', '2021-08-24', '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 (30665, 212, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '2.0000', '2021-08-24', '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 (30666, 212, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.2500', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '0.0000', '2021-08-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 (30667, 212, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.2500', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2500', '0.0000', '2021-08-24', '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 (30668, 212, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6700', '0.0000', '2021-08-24', 'received', '12.8900', '12.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (30669, 212, 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-24', '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 (30670, 212, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '9.7600', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '0.0000', '2021-08-24', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (30671, 212, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9500', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '0.0000', '2021-08-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 (30672, 212, NULL, 1512, 'PR-225', 'CIPAC EYE ROP', NULL, '4.1000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2021-08-24', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30673, 212, NULL, 7633, '1553', 'CIPAC EYE DROP', NULL, '2.8700', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.8700', '0.0000', '2021-08-24', 'received', '2.8700', '2.8700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30674, 212, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1300', '1.5000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.3400', '0.0000', '2021-08-24', 'received', '1.1300', '1.1300', '18.0000', NULL, NULL, 1, 'pc', '18.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 (30675, 212, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.6000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '10.0000', '2021-08-24', 'received', '1.6000', '1.6000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (30676, 212, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '32.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2400', '0.0000', '2021-08-24', 'received', '24.6200', '24.6200', '2.0000', NULL, NULL, 1, 'pc', '2.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 (30677, 212, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2021-08-24', '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 (30678, 212, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-08-24', '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 (30679, 212, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.7800', '0.0000', '2021-08-24', '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 (30680, 212, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8900', '0.0000', '2021-08-24', '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 (30681, 212, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8000', '1.2000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '31.0000', '2021-08-24', 'received', '0.8000', '0.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (30682, 212, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7500', '0.0000', '2021-08-24', 'received', '3.3500', '3.3500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30683, 212, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-08-24', '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 (30684, 212, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2021-08-24', 'received', '5.8800', '5.8800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30685, 212, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.4000', '4.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '20.0000', '2021-08-24', 'received', '3.4000', '3.4000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (30686, 212, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2021-08-24', 'received', '0.7200', '0.7200', '60.0000', NULL, NULL, 1, 'pc', '60.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 (30687, 212, NULL, 9446, '67960129', 'WARTICON CREAM 5% 3MG', NULL, '253.0000', '340.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '253.0000', '1.0000', '2021-08-24', 'received', '253.0000', '253.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '253.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30688, 212, NULL, 9447, '48043609', 'WARTICON  SOLUTION', NULL, '220.0000', '295.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '1.0000', '2021-08-24', 'received', '220.0000', '220.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30689, 212, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-08-24', '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 (30690, 212, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '4.6000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-08-24', '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 (30691, 212, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '4.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-08-24', '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 (30692, 212, NULL, 2817, '45511010', 'ROBAXIN TAB', NULL, '1.8200', '2.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.0000', '80.0000', '2021-08-24', '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 (30693, 212, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '22.5000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-08-24', '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 (30694, 212, 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-24', '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 (30695, 212, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3000', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-08-24', 'received', '2.3000', '2.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (30696, 212, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5600', '0.0000', '2021-08-24', 'received', '7.8900', '7.8900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30697, 212, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '0.0000', '2021-08-24', '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 (30698, 212, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '3.0000', '2021-08-24', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (30699, 212, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '33.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.9900', '1.0000', '2021-08-24', '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 (30700, 212, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.3800', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1400', '0.0000', '2021-08-24', '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 (30701, 212, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.0000', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-08-24', '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 (30702, NULL, NULL, 7879, '', '', 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 (30703, NULL, NULL, 3064, '', '', 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 (30704, NULL, NULL, 2022, '', '', 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 (30705, NULL, NULL, 7579, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30706, NULL, NULL, 8594, '', '', 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 (30707, NULL, NULL, 7661, '', '', 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 (30708, NULL, NULL, 7604, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30709, NULL, NULL, 1501, '', '', 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 (30710, NULL, NULL, 7981, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-100.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30711, NULL, NULL, 2298, '', '', 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 (30712, NULL, NULL, 1483, '', '', 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 (30713, NULL, NULL, 7339, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-45.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30714, NULL, NULL, 2250, '', '', 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 (30715, NULL, NULL, 1626, '', '', 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 (30716, NULL, NULL, 9182, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30717, NULL, NULL, 8744, '', '', 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 (30718, NULL, NULL, 8657, '', '', 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 (30719, NULL, NULL, 8288, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30720, NULL, NULL, 2733, '', '', 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 (30721, NULL, NULL, 8417, '', '', 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 (30722, NULL, NULL, 7833, '', '', 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 (30723, NULL, NULL, 8043, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30724, NULL, NULL, 1947, '', '', 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 (30725, NULL, NULL, 8137, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30726, NULL, NULL, 7551, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30727, NULL, NULL, 9095, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30728, NULL, NULL, 7748, '', '', 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 (30729, NULL, NULL, 8172, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30730, NULL, NULL, 8474, '', '', 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 (30731, NULL, NULL, 8408, '', '', 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 (30732, NULL, NULL, 8921, '', '', 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 (30733, NULL, NULL, 7725, '', '', 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 (30734, NULL, NULL, 7638, '', '', 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 (30735, NULL, NULL, 8163, '', '', 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 (30736, NULL, NULL, 7359, '', '', 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 (30779, 214, NULL, 2628, '92643129', 'ADOM NATURAL MAN MIXTURE', NULL, '12.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2021-08-25', '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 (30780, 214, NULL, 8359, '2279', 'IMBOOST', NULL, '13.5000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2021-08-25', '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 (30781, 214, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-08-25', '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 (30782, 214, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-08-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 (30783, 214, NULL, 3036, '73219310', 'YAFO KOO BITTERS', NULL, '9.5000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-08-25', '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 (30810, NULL, NULL, 7353, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (30811, NULL, NULL, 7589, '', '', 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 (30812, NULL, NULL, 7744, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-56.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30813, NULL, NULL, 8497, '', '', 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 (30814, NULL, NULL, 8163, '', '', 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 (30815, NULL, NULL, 7710, '', '', 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 (30816, NULL, NULL, 2292, '', '', 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 (30817, NULL, NULL, 1328, '', '', 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 (30818, NULL, NULL, 8876, '', '', 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 (30819, NULL, NULL, 8451, '', '', 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 (30820, NULL, NULL, 2119, '', '', 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 (30821, NULL, NULL, 7756, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-72.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30822, NULL, NULL, 8205, '', '', 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 (30823, NULL, NULL, 7339, '', '', 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 (30890, NULL, NULL, 8355, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30891, NULL, NULL, 8974, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30892, NULL, NULL, 9273, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30893, NULL, NULL, 7702, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30894, NULL, NULL, 9411, '', '', 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 (30895, NULL, NULL, 7814, '', '', 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 (30896, NULL, NULL, 9320, '', '', 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 (30897, NULL, NULL, 2102, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-48.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30898, NULL, NULL, 7779, '', '', 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 (30899, NULL, NULL, 7589, '', '', 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 (30900, NULL, NULL, 9340, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (30901, NULL, NULL, 8698, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30902, NULL, NULL, 8175, '', '', 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 (30903, NULL, NULL, 8319, '', '', 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 (30904, NULL, NULL, 7728, '', '', 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 (30905, NULL, NULL, 1993, '', '', 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 (30906, NULL, NULL, 9214, '', '', 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 (30907, NULL, NULL, 8228, '', '', 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 (30908, NULL, NULL, 7859, '', '', 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 (30909, NULL, NULL, 8714, '', '', 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 (30910, NULL, NULL, 2382, '', '', 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 (30911, NULL, NULL, 8015, '', '', 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 (30912, NULL, NULL, 2227, '', '', 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 (30913, NULL, NULL, 2226, '', '', 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 (30914, NULL, NULL, 7885, '', '', 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 (30915, NULL, NULL, 2056, '', '', 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 (30916, NULL, NULL, 1935, '', '', 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 (30917, NULL, NULL, 7822, '', '', 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 (30918, NULL, NULL, 1674, '', '', 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 (30919, NULL, NULL, 2995, '', '', 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 (30920, NULL, NULL, 9456, '', '', 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 (30921, 213, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '8.2300', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6900', '0.0000', '2021-08-25', 'received', '8.2300', '8.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (30922, 213, NULL, 9448, '61769569', 'ASPANOL DRY COUGH', NULL, '7.5200', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5600', '0.0000', '2021-08-25', 'received', '7.5200', '7.5200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (30923, 213, NULL, 8704, '2624', 'ASPANOL BAB', NULL, '6.0500', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '0.0000', '2021-08-25', 'received', '6.0500', '6.0500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (30924, 213, NULL, 1918, 'PR-631', 'ASPANOL BABY', NULL, '6.0500', '8.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0500', '0.0000', '2021-08-25', 'received', '6.0500', '6.0500', '1.0000', NULL, NULL, 1, 'pc', '1.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 (30925, 213, NULL, 1917, 'PR-630', 'ASPANOL JUNIOR', NULL, '4.3600', '6.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4400', '1.0000', '2021-08-25', 'received', '4.3600', '4.3600', '4.0000', NULL, NULL, 1, 'pc', '4.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 (30926, 213, NULL, 9407, '3327', 'LUMETHER SUSP', NULL, '5.4000', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-08-25', '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 (30927, 213, NULL, 9142, '3062', 'VIGONX', NULL, '7.3800', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1400', '0.0000', '2021-08-25', 'received', '7.3800', '7.3800', '3.0000', NULL, NULL, 1, 'pc', '3.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 (30928, 213, NULL, 8708, '2628', 'ASPANOL PLUS', NULL, '8.6000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2021-08-25', '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 (30929, 213, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '6.2300', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6900', '0.0000', '2021-08-25', 'received', '6.2300', '6.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (30930, 213, NULL, 7564, '1484', 'KWIK ACTION', NULL, '0.6400', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2021-08-25', '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 (30931, 213, NULL, 7353, '1273', 'APC 4S', NULL, '0.1900', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '0.0000', '2021-08-25', 'received', '0.1900', '0.1900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (30932, 213, NULL, 9450, '64195196', 'B 72', NULL, '3.2000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '15.0000', '2021-08-25', '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 (30933, 213, NULL, 9451, '73514651', 'CEFUNAT DRY SYRUP', NULL, '10.4800', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4400', '3.0000', '2021-08-25', 'received', '10.4800', '10.4800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (30934, 213, NULL, 9098, '3018', 'JOY VIKIL', NULL, '25.0000', '34.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-08-25', '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 (30935, 213, NULL, 7638, '1558', 'FLUCONA DENK', NULL, '12.0000', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-08-25', '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 (30936, 213, NULL, 9456, '13527138', 'INOPRIL OM&J', NULL, '3.3200', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2000', '0.0000', '2021-08-25', 'received', '3.3200', '3.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (30991, 215, NULL, 3079, '27605280', 'EYECROM EYE DROPS 5ML', NULL, '9.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2021-08-25', '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 (30992, 215, NULL, 3080, '73286754', 'DEXAMYCIN DROP', NULL, '8.5000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '1.0000', '2021-08-25', '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 (30993, 215, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4000', '0.0000', '2021-08-25', 'received', '2.8000', '2.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (30994, 215, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '2.4500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2021-08-25', 'received', '2.4500', '2.4500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (30995, 215, NULL, 9265, '3185', 'COUGH & COLD CHILD CARE', NULL, '1.5500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5000', '0.0000', '2021-08-25', 'received', '1.5500', '1.5500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (30996, 215, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '58.0000', '76.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2021-08-25', 'received', '58.0000', '58.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30997, 215, NULL, 3082, '13230304', 'TIMOLOL MALEATE', NULL, '6.0000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-08-25', '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 (30998, 215, NULL, 3081, '85096507', 'TOBRACIN EYE DROPS 5ML', NULL, '9.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2021-08-25', '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 (30999, 215, NULL, 8659, '2579', 'KIDIMIN', NULL, '3.8500', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5500', '2.0000', '2021-08-25', 'received', '3.8500', '3.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (31000, 215, NULL, 8539, '2459', 'ASMADRIN', NULL, '0.5200', '0.8000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '11.0000', '2021-08-25', 'received', '0.5200', '0.5200', '75.0000', NULL, NULL, 1, 'pc', '75.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 (31001, 215, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.5200', '0.0000', '2021-08-25', 'received', '0.5200', '0.5200', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31002, 215, NULL, 8275, '2195', 'CLARITROMYCIN  500', NULL, '29.8500', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.7000', '0.0000', '2021-08-25', 'received', '29.8500', '29.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (31003, 215, NULL, 8161, '2081', 'PROWOMAN', NULL, '19.5000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-08-25', '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 (31004, 215, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '26.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4900', '0.0000', '2021-08-25', '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 (31005, 215, NULL, 7401, '1321', 'WELLBABY MULTI-VIT LIQ', NULL, '57.9000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.9000', '0.0000', '2021-08-25', 'received', '57.9000', '57.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '57.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 (31006, 215, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-08-25', '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 (31007, 215, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-08-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 (31008, 215, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '10.0000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-08-25', '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 (31009, 215, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.6000', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-08-25', 'received', '15.6000', '15.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (31010, 215, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '18.7000', '21.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7000', '0.0000', '2021-08-25', 'received', '18.7000', '18.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31011, 215, NULL, 9154, '3074', 'ZYMAX 500', NULL, '10.6800', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-08-25', 'received', '10.6800', '10.6800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (31012, 215, NULL, 7872, '1792', 'STAGYL', NULL, '2.5000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-08-25', '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 (31013, 215, NULL, 9453, '73814348', 'LORATADINE ( LORFAST) 10MG', NULL, '11.0000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-08-25', '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 (31014, 215, NULL, 8430, '2350', 'ALKA SRP', NULL, '27.0000', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-08-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 (31015, 215, NULL, 9174, '3094', 'GEN M SUSP', NULL, '15.5000', '20.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-08-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 (31016, 215, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '20.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5000', '0.0000', '2021-08-25', 'received', '15.5000', '15.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31017, 215, NULL, 7608, '1528', 'AUNTY MARY', NULL, '6.9800', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.8000', '0.0000', '2021-08-25', 'received', '6.9800', '6.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (31018, 215, NULL, 9457, '08890691', 'C PHENIRAMINE SYRUP 125ML', NULL, '2.9800', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.9400', '2.0000', '2021-08-25', 'received', '2.9800', '2.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.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 (31019, 215, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '7.2000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-08-25', '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 (31020, 215, NULL, 8098, '2018', 'PROMAN', NULL, '16.0000', '22.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '1.0000', '2021-08-25', '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 (31021, 215, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '16.7000', '22.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7000', '0.0000', '2021-08-25', 'received', '16.7000', '16.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31022, 215, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '13.0000', '17.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-08-25', '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 (31023, 215, NULL, 7895, '1815', 'BRIGHFORD', NULL, '13.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2021-08-25', '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 (31024, 215, NULL, 7961, '1881', 'JARIFAN 2 SRP', NULL, '9.5000', '13.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '0.0000', '2021-08-25', 'received', '9.5000', '9.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31025, 215, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '10.3300', '13.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.3300', '1.0000', '2021-08-25', 'received', '10.3300', '10.3300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.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 (31026, 215, NULL, 7885, '1805', 'DIFLUCAN', NULL, '82.8700', '110.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.8700', '0.0000', '2021-08-25', 'received', '82.8700', '82.8700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31027, 215, NULL, 9250, '3170', 'SALAMOL CFC INHALER', NULL, '18.9800', '28.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9600', '0.0000', '2021-08-25', 'received', '18.9800', '18.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (31028, 215, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-08-25', '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 (31029, 215, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.0000', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2021-08-25', '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 (31030, 215, NULL, 7357, '1277', 'BONISAN', NULL, '12.2000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '0.0000', '2021-08-25', '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 (31031, 215, NULL, 7527, '1447', 'ZINTAB 20', NULL, '0.8900', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '0.0000', '2021-08-25', '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 (31032, 215, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.8100', '2.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.8100', '0.0000', '2021-08-25', 'received', '0.8100', '0.8100', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31033, 215, NULL, 7761, '1681', 'TEARS NATURAL', NULL, '25.0000', '33.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2021-08-25', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31034, 215, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '25.0000', '33.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2021-08-25', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31035, 215, NULL, 8420, '2340', 'BIOVID FORTE', NULL, '10.0000', '13.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2021-08-25', '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 (31036, 215, NULL, 9103, '3023', 'JOINTFLEX PLUS TABS', NULL, '32.6700', '43.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3400', '0.0000', '2021-08-25', 'received', '32.6700', '32.6700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (31037, 215, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '43.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.1800', '1.0000', '2021-08-25', 'received', '32.1800', '32.1800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '32.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 (31077, 216, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.3000', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-08-26', 'received', '0.3000', '0.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (31078, 216, NULL, 9458, '31675978', 'CYPRON PLUS TABS', NULL, '1.9000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '23.0000', '2021-08-26', 'received', '1.9000', '1.9000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (31079, 216, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-08-26', '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 (31080, 216, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '0.0000', '2021-08-26', 'received', '2.9200', '2.9200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (31081, 216, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '6.0000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-08-26', '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 (31082, 216, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6700', '0.0000', '2021-08-26', '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 (31083, 216, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-08-26', '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 (31084, 216, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '18.7000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2021-08-26', 'received', '18.7000', '18.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (31085, 216, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-08-26', '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 (31086, 216, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '9.2800', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8400', '0.0000', '2021-08-26', 'received', '9.2800', '9.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (31087, 216, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '0.0000', '2021-08-26', '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 (31088, 216, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-08-26', '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 (31089, 216, NULL, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '73.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.1000', '0.0000', '2021-08-26', '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 (31090, 216, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8900', '0.0000', '2021-08-26', '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 (31091, 216, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1300', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '0.0000', '2021-08-26', '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 (31092, 216, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0400', '10.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.8000', '0.0000', '2021-08-26', 'received', '7.0400', '7.0400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (31093, 216, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.5000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-08-26', '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 (31094, 216, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.8000', '2.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '0.0000', '2021-08-26', 'received', '1.8000', '1.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (31095, 216, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-08-26', '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 (31096, 216, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0700', '1.0000', '2021-08-26', '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 (31097, 216, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4100', '0.6000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2000', '0.0000', '2021-08-26', 'received', '0.4100', '0.4100', '20.0000', NULL, NULL, 1, 'pc', '20.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 (31098, 216, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '7.7300', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1900', '0.0000', '2021-08-26', 'received', '7.7300', '7.7300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (31099, 216, NULL, 2748, '92354318', 'DEEP FREEZE ONIT 35G', NULL, '17.5000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-08-26', '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 (31100, 216, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '10.7500', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '0.0000', '2021-08-26', '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 (31101, 216, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '7.2000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-08-26', '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 (31102, 216, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7800', '0.0000', '2021-08-26', 'received', '16.3900', '16.3900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (31103, 216, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3800', '0.0000', '2021-08-26', '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 (31104, 216, NULL, 2999, '72534299', 'ALPHA GARLIC CAPS', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-08-26', '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 (31105, 216, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.7800', '1.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8000', '10.0000', '2021-08-26', 'received', '0.7800', '0.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (31106, 216, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.1000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '9.0000', '2021-08-26', 'received', '1.1000', '1.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (31107, 216, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.6500', '1.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '8.0000', '2021-08-26', 'received', '0.6500', '0.6500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (31108, 216, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '3.3000', '4.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2021-08-26', 'received', '3.3000', '3.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (31109, 216, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '0.0000', '2021-08-26', '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 (31110, 216, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '5.7200', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.7200', '0.0000', '2021-08-26', 'received', '5.7200', '5.7200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.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 (31111, 216, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.5000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-08-26', '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 (31112, 216, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '8.4300', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2900', '0.0000', '2021-08-26', 'received', '8.4300', '8.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (31113, 216, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.0000', '47.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-08-26', '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 (31114, 216, NULL, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '6.3600', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0800', '0.0000', '2021-08-26', '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 (31115, 216, NULL, 2136, '39315036', 'ALEVE', NULL, '0.9500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2021-08-26', 'received', '0.9500', '0.9500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (31116, NULL, NULL, 8413, '', '', 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 (31117, NULL, NULL, 7787, '', '', 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 (31118, NULL, NULL, 7899, '', '', 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 (31119, NULL, NULL, 9178, '', '', 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 (31120, NULL, NULL, 8101, '', '', 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 (31121, NULL, NULL, 8057, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31122, NULL, NULL, 8515, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31123, NULL, NULL, 7914, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31124, NULL, NULL, 8308, '', '', 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 (31125, NULL, NULL, 7632, '', '', 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 (31126, NULL, NULL, 9184, '', '', 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 (31127, NULL, NULL, 8186, '', '', 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 (31128, NULL, NULL, 2925, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31129, NULL, NULL, 7769, '', '', 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 (31130, NULL, NULL, 7641, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-138.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31131, NULL, NULL, 8456, '', '', 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 (31132, NULL, NULL, 7658, '', '', 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 (31133, NULL, NULL, 2573, '', '', 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 (31134, NULL, NULL, 7633, '', '', 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 (31135, NULL, NULL, 2379, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31136, NULL, NULL, 7564, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-59.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31137, NULL, NULL, 7592, '', '', 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 (31138, NULL, NULL, 7756, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (31139, NULL, NULL, 9084, '', '', 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 (31140, NULL, NULL, 7611, '', '', 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 (31141, NULL, NULL, 9409, '', '', 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 (31142, NULL, NULL, 2769, '', '', 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 (31143, NULL, NULL, 7675, '', '', 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 (31144, NULL, NULL, 8085, '', '', 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 (31145, NULL, NULL, 8844, '', '', 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 (31146, NULL, NULL, 1510, '', '', 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 (31147, NULL, NULL, 9237, '', '', 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 (31148, NULL, NULL, 2411, '', '', 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 (31149, NULL, NULL, 2100, '', '', 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 (31150, NULL, NULL, 8052, '', '', 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 (31151, NULL, NULL, 8566, '', '', 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 (31152, NULL, NULL, 7963, '', '', 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 (31153, NULL, NULL, 1557, '', '', 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 (31154, NULL, NULL, 7707, '', '', 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 (31155, NULL, NULL, 7743, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31156, NULL, NULL, 1771, '', '', 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 (31157, NULL, NULL, 7448, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-45.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31158, NULL, NULL, 7704, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-129.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31159, NULL, NULL, 1388, '', '', 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 (31160, NULL, NULL, 7952, '', '', 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 (31161, NULL, NULL, 1845, '', '', 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 (31162, NULL, NULL, 8276, '', '', 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 (31163, NULL, NULL, 7894, '', '', 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 (31164, NULL, NULL, 9187, '', '', 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 (31165, NULL, NULL, 8362, '', '', 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 (31166, NULL, NULL, 7814, '', '', 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 (31167, NULL, NULL, 7412, '', '', 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 (31168, NULL, NULL, 9193, '', '', 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 (31169, NULL, NULL, 1311, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-46.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31170, NULL, NULL, 2638, '', '', 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 (31171, NULL, NULL, 7524, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (31172, NULL, NULL, 7958, '', '', 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 (31173, NULL, NULL, 7447, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-181.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31174, NULL, NULL, 9191, '', '', 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 (31175, NULL, NULL, 2974, '', '', 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 (31176, NULL, NULL, 7978, '', '', 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 (31177, NULL, NULL, 7514, '', '', 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 (31178, NULL, NULL, 8242, '', '', 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 (31179, NULL, NULL, 9202, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31180, NULL, NULL, 1528, '', '', 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 (31181, NULL, NULL, 7697, '', '', 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 (31182, NULL, NULL, 2934, '', '', 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 (31183, NULL, NULL, 2990, '', '', 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 (31184, NULL, NULL, 9097, '', '', 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 (31185, NULL, NULL, 8701, '', '', 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 (31186, NULL, NULL, 7739, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31187, NULL, NULL, 7886, '', '', 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 (31188, NULL, NULL, 7759, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31189, NULL, NULL, 2959, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31190, NULL, NULL, 8324, '', '', 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 (31191, NULL, NULL, 2511, '', '', 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 (31192, NULL, NULL, 7648, '', '', 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 (31193, NULL, NULL, 1419, '', '', 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 (31194, NULL, NULL, 2101, '', '', 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 (31195, NULL, NULL, 1301, '', '', 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 (31196, NULL, NULL, 7548, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31197, NULL, NULL, 8340, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-100.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31198, NULL, NULL, 9264, '', '', 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 (31199, NULL, NULL, 7433, '', '', 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 (31200, NULL, NULL, 1772, '', '', 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 (31201, NULL, NULL, 1779, '', '', 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 (31213, NULL, NULL, 7333, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-53.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31214, NULL, NULL, 2066, '', '', 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 (31215, NULL, NULL, 8057, '', '', 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 (31216, NULL, NULL, 8307, '', '', 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 (31217, NULL, NULL, 7917, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-142.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31263, NULL, NULL, 8359, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31264, NULL, NULL, 7753, '', '', 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 (31445, NULL, NULL, 1578, '', '', 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 (31446, NULL, NULL, 1687, '', '', 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 (31568, NULL, NULL, 7967, '', '', 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 (31569, NULL, NULL, 7350, '', '', 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 (31570, NULL, NULL, 8243, '', '', 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 (31571, NULL, NULL, 7554, '', '', 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 (31572, NULL, NULL, 7591, '', '', 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 (31573, NULL, NULL, 7713, '', '', 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 (31574, NULL, NULL, 1434, '', '', 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 (31575, NULL, NULL, 8485, '', '', 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 (31576, NULL, NULL, 9001, '', '', 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 (31577, NULL, NULL, 2506, '', '', 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 (31578, NULL, NULL, 8187, '', '', 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 (31579, NULL, NULL, 7768, '', '', 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 (31580, NULL, NULL, 8557, '', '', 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 (31581, NULL, NULL, 8352, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31582, NULL, NULL, 8753, '', '', 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 (31583, NULL, NULL, 2930, '', '', 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 (31584, NULL, NULL, 8053, '', '', 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 (31585, NULL, NULL, 8000, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31586, NULL, NULL, 7909, '', '', 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 (31587, NULL, NULL, 7695, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31588, NULL, NULL, 7980, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-64.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31589, NULL, NULL, 7354, '', '', 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 (31590, NULL, NULL, 1427, '', '', 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 (31591, NULL, NULL, 1699, '', '', 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 (31592, NULL, NULL, 7719, '', '', 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 (31593, NULL, NULL, 8883, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31594, NULL, NULL, 7391, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31595, NULL, NULL, 8184, '', '', 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 (31596, NULL, NULL, 8084, '', '', 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 (31597, NULL, NULL, 7879, '', '', 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 (31598, NULL, NULL, 9007, '', '', 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 (31599, NULL, NULL, 9300, '', '', 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 (31600, NULL, NULL, 8055, '', '', 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 (31601, NULL, NULL, 8715, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31602, NULL, NULL, 8395, '', '', 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 (31603, NULL, NULL, 2656, '', '', 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 (31604, NULL, NULL, 8086, '', '', 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 (31605, NULL, NULL, 7821, '', '', 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 (31606, NULL, NULL, 8277, '', '', 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 (31607, NULL, NULL, 7929, '', '', 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 (31608, NULL, NULL, 8900, '', '', 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 (31609, NULL, NULL, 8680, '', '', 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 (31610, NULL, NULL, 7524, '', '', 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 (31611, NULL, NULL, 2444, '', '', 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 (31612, NULL, NULL, 2038, '', '', 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 (31613, NULL, NULL, 2009, '', '', 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 (31614, NULL, NULL, 7958, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31615, NULL, NULL, 9101, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31616, NULL, NULL, 9121, '', '', 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 (31617, NULL, NULL, 1665, '', '', 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 (31618, NULL, NULL, 2612, '', '', 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 (31619, NULL, NULL, 7744, '', '', 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 (31620, NULL, NULL, 7783, '', '', 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 (31621, NULL, NULL, 8054, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31622, NULL, NULL, 7755, '', '', 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 (31623, NULL, NULL, 1980, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31624, NULL, NULL, 9421, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31625, NULL, NULL, 8933, '', '', 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 (31626, NULL, NULL, 2131, '', '', 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 (31627, NULL, NULL, 8200, '', '', 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 (31628, NULL, NULL, 2965, '', '', 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 (31629, NULL, NULL, 1601, '', '', 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 (31630, NULL, NULL, 9426, '', '', 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 (31631, NULL, NULL, 9396, '', '', 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 (31639, NULL, NULL, 2794, '', '', 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 (31646, NULL, NULL, 9318, '', '', 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 (31647, NULL, NULL, 2986, '', '', 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 (31648, NULL, NULL, 1650, '', '', 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 (31649, NULL, NULL, 8242, '', '', 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 (31650, NULL, NULL, 8759, '', '', 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 (31651, NULL, NULL, 7358, '', '', 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 (31652, NULL, NULL, 8164, '', '', 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 (31653, NULL, NULL, 2225, '', '', 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 (31654, 217, NULL, 8889, '2809', 'NAN 1@2', NULL, '34.0000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2021-08-27', 'received', '34.0000', '34.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (31655, 217, NULL, 8888, '2808', 'NIDO TIN', NULL, '28.0000', '30.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '0.0000', '2021-08-27', 'received', '28.0000', '28.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (31656, 217, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-08-27', '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 (31657, 217, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.2100', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8400', '0.0000', '2021-08-27', 'received', '5.2100', '5.2100', '4.0000', NULL, NULL, 1, 'pc', '4.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 (31658, 217, NULL, 7721, '1641', 'ALWAYS MAXI', NULL, '5.5000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '4.0000', '2021-08-27', '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 (31659, 217, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '12.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-08-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 (31660, 217, NULL, 8324, '2244', 'COLGATE BRUSH DOUBLE', NULL, '3.0000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-08-27', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (31661, 217, NULL, 9216, '3136', 'ORAL B PASTE MEDIUM', NULL, '5.2000', '7.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '2.0000', '2021-08-27', 'received', '5.2000', '5.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (31662, 217, NULL, 8793, '2713', 'ORAL B BRUSH', NULL, '3.5000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-08-27', '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 (31663, 217, NULL, 7699, '1619', 'COLGATE HERB', NULL, '6.5000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2021-08-27', '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 (31664, 217, NULL, 7847, '1767', 'COLGATE TRIP ACTN', NULL, '6.5000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-08-27', '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 (31685, 221, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-08-28', '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 (31686, 221, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '16.0000', '2021-08-28', '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 (31687, 221, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '16.0000', '2021-08-28', '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 (31688, 221, NULL, 2151, '05077634', 'TOMAC MIX', NULL, '19.5000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-08-28', '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 (31689, 221, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-08-28', '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 (31690, 221, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '10.3500', '14.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2021-08-28', 'received', '10.3500', '10.3500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (31691, 221, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-08-28', '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 (31692, 221, NULL, 9465, '73023013', 'KLEANZ SANITIZER 300ML', NULL, '8.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '3.0000', '2021-08-28', '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 (31693, 221, NULL, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', NULL, '4.6000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '4.0000', '2021-08-28', '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 (31694, 221, NULL, 9464, '96877078', 'ST JOHN SANITIZER', NULL, '6.0000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-08-28', '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 (31695, NULL, NULL, 7848, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31696, NULL, NULL, 7790, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-82.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31697, NULL, NULL, 9212, '', '', 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 (31698, NULL, NULL, 1884, '', '', 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 (31699, NULL, NULL, 7642, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (31700, NULL, NULL, 8429, '', '', 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 (31701, 222, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.7900', '2.0000', '2021-08-28', '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 (31702, 222, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '49.0100', '65.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0300', '2.0000', '2021-08-28', 'received', '49.0100', '49.0100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (31703, 222, 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-28', '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 (31704, 222, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.7400', '0.0000', '2021-08-28', '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 (31705, 222, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.0400', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.2400', '4.0000', '2021-08-28', 'received', '8.0400', '8.0400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (31706, 222, 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-28', '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 (31707, 222, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5700', '0.0000', '2021-08-28', '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 (31708, 222, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '22.7400', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.4800', '0.0000', '2021-08-28', 'received', '22.7400', '22.7400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (31709, 222, 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-28', '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 (31710, 222, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '4.0000', '2021-08-28', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (31711, 222, NULL, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '2.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '35.0000', '2021-08-28', '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 (31712, 222, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '3.2000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '1.0000', '2021-08-28', '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 (31713, 222, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '10.0900', '13.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2700', '1.0000', '2021-08-28', '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 (31714, 222, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '1.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-08-28', 'received', '0.5500', '0.5500', '40.0000', NULL, NULL, 1, 'pc', '40.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 (31715, 222, NULL, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9800', '0.0000', '2021-08-28', '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 (31716, 222, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '53.3200', '71.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6400', '2.0000', '2021-08-28', 'received', '53.3200', '53.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.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 (31717, 222, NULL, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '45.3800', '55.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3800', '0.0000', '2021-08-28', 'received', '45.3800', '45.3800', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31718, 222, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '8.0000', '2021-08-28', '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 (31719, 222, NULL, 9461, '53270643', 'YOVANNY INHALER', NULL, '1.6000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '12.0000', '2021-08-28', 'received', '1.6000', '1.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (31720, 222, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '11.0000', '17.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '0.0000', '2021-08-28', '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 (31721, 222, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '4.9200', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.4000', '20.0000', '2021-08-28', 'received', '4.9200', '4.9200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (31722, 222, NULL, 7571, '1491', 'NUCLEO CMP', NULL, '2.1000', '2.7000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '30.0000', '2021-08-28', 'received', '2.1000', '2.1000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (31723, 222, NULL, 7746, '1666', 'MALAFAN', NULL, '2.8600', '4.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '0.0000', '2021-08-28', 'received', '2.8600', '2.8600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.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 (31724, 222, NULL, 2567, '83596243', 'NAN 1', NULL, '33.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-08-28', 'received', '33.0000', '33.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31725, 222, NULL, 8889, '2809', 'NAN 1@2', NULL, '34.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-08-28', 'received', '34.0000', '34.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (31726, 222, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '5.9000', '13.6000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2021-08-28', 'received', '5.9000', '5.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (31727, 222, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '43.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.3600', '2.0000', '2021-08-28', 'received', '32.1800', '32.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (31728, 222, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-08-28', '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 (31729, 222, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.3100', '3.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8600', '0.0000', '2021-08-28', 'received', '2.3100', '2.3100', '6.0000', NULL, NULL, 1, 'pc', '6.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 (31738, NULL, NULL, 2296, '', '', 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 (31739, NULL, NULL, 9463, '', '', 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 (31740, NULL, NULL, 8679, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31741, NULL, NULL, 8937, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31742, NULL, NULL, 2968, '', '', 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 (31743, NULL, NULL, 8548, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31744, NULL, NULL, 7691, '', '', 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 (31745, NULL, NULL, 9332, '', '', 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 (31746, NULL, NULL, 7737, '', '', 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 (31747, NULL, NULL, 8135, '', '', 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 (31748, NULL, NULL, 8372, '', '', 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 (31749, NULL, NULL, 8519, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31750, NULL, NULL, 1398, '', '', 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 (31751, NULL, NULL, 7506, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31752, NULL, NULL, 9154, '', '', 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 (31753, NULL, NULL, 7954, '', '', 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 (31754, NULL, NULL, 7369, '', '', 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 (31755, NULL, NULL, 1617, '', '', 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 (31756, NULL, NULL, 7707, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31757, NULL, NULL, 7749, '', '', 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 (31758, NULL, NULL, 8059, '', '', 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 (31759, NULL, NULL, 9178, '', '', 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 (31760, NULL, NULL, 3012, '', '', 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 (31761, NULL, NULL, 8074, '', '', 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 (31762, NULL, NULL, 1816, '', '', 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 (31763, NULL, NULL, 1303, '', '', 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 (31764, NULL, NULL, 1598, '', '', 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 (31765, NULL, NULL, 8596, '', '', 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 (31766, NULL, NULL, 9272, '', '', 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 (31767, NULL, NULL, 2762, '', '', 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 (31768, NULL, NULL, 2282, '', '', 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 (31769, NULL, NULL, 1713, '', '', 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 (31770, NULL, NULL, 2943, '', '', 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 (31771, NULL, NULL, 1739, '', '', 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 (31772, NULL, NULL, 1644, '', '', 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 (31773, NULL, NULL, 8445, '', '', 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 (31774, NULL, NULL, 8739, '', '', 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 (31775, NULL, NULL, 8208, '', '', 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 (31776, NULL, NULL, 8155, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31777, NULL, NULL, 7583, '', '', 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 (31778, NULL, NULL, 7370, '', '', 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 (31779, NULL, NULL, 8512, '', '', 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 (31780, NULL, NULL, 8397, '', '', 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 (31781, NULL, NULL, 8407, '', '', 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 (31782, NULL, NULL, 8242, '', '', 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 (31783, NULL, NULL, 7515, '', '', 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 (31784, NULL, NULL, 1787, '', '', 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 (31785, NULL, NULL, 2183, '', '', 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 (31786, NULL, NULL, 9330, '', '', 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 (31787, NULL, NULL, 8721, '', '', 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 (31788, NULL, NULL, 2291, '', '', 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 (31789, NULL, NULL, 1563, '', '', 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 (31790, NULL, NULL, 7483, '', '', 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 (31791, NULL, NULL, 8188, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31792, NULL, NULL, 1596, '', '', 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 (31793, NULL, NULL, 2867, '', '', 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 (31794, NULL, NULL, 2270, '', '', 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 (31795, NULL, NULL, 7721, '', '', 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 (31796, NULL, NULL, 7671, '', '', 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 (31797, NULL, NULL, 9350, '', '', 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 (31798, NULL, NULL, 9098, '', '', 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 (31799, NULL, NULL, 1856, '', '', 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 (31800, NULL, NULL, 8269, '', '', 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 (31801, NULL, NULL, 8216, '', '', 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 (31802, NULL, NULL, 3016, '', '', 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 (31803, NULL, NULL, 1806, '', '', 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 (31804, NULL, NULL, 1819, '', '', 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 (31805, NULL, NULL, 7642, '', '', 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 (31806, NULL, NULL, 8198, '', '', 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 (31807, NULL, NULL, 7889, '', '', 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 (31808, NULL, NULL, 2412, '', '', 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 (31809, NULL, NULL, 1402, '', '', 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 (31810, NULL, NULL, 7584, '', '', 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 (31811, NULL, NULL, 7500, '', '', 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 (31812, NULL, NULL, 8753, '', '', 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 (31813, NULL, NULL, 8061, '', '', 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 (31814, NULL, NULL, 2803, '', '', 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 (31815, NULL, NULL, 7911, '', '', 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 (31816, NULL, NULL, 9094, '', '', 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 (31817, NULL, NULL, 9369, '', '', 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 (31818, NULL, NULL, 8119, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31819, NULL, NULL, 2098, '', '', 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 (31820, NULL, NULL, 7712, '', '', 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 (31821, NULL, NULL, 8913, '', '', 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 (31822, NULL, NULL, 8419, '', '', 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 (31823, NULL, NULL, 8547, '', '', 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 (31824, NULL, NULL, 8613, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31825, NULL, NULL, 2610, '', '', 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 (31826, NULL, NULL, 7652, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-82.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31827, NULL, NULL, 8622, '', '', 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 (31828, NULL, NULL, 7921, '', '', 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 (31829, NULL, NULL, 7460, '', '', 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 (31830, NULL, NULL, 7490, '', '', 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 (31831, NULL, NULL, 1428, '', '', 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 (31832, NULL, NULL, 2061, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (31833, NULL, NULL, 7765, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-38.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31834, NULL, NULL, 2290, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31835, NULL, NULL, 8702, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-66.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31836, NULL, NULL, 2892, '', '', 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 (31837, NULL, NULL, 7888, '', '', 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 (31838, NULL, NULL, 8489, '', '', 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 (31839, NULL, NULL, 7637, '', '', 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 (31840, NULL, NULL, 7666, '', '', 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 (31841, NULL, NULL, 2167, '', '', 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 (31842, NULL, NULL, 7556, '', '', 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 (31843, NULL, NULL, 1550, '', '', 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 (31844, NULL, NULL, 9167, '', '', 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 (31845, NULL, NULL, 7560, '', '', 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 (31846, NULL, NULL, 7509, '', '', 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 (31847, NULL, NULL, 7851, '', '', 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 (31848, NULL, NULL, 7472, '', '', 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 (31849, NULL, NULL, 8756, '', '', 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 (31850, NULL, NULL, 7444, '', '', 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 (31851, NULL, NULL, 7363, '', '', 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 (31852, NULL, NULL, 7889, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31853, NULL, NULL, 7735, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31854, NULL, NULL, 9312, '', '', 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 (31855, NULL, NULL, 7423, '', '', 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 (31856, NULL, NULL, 8293, '', '', 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 (31857, NULL, NULL, 7777, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31858, NULL, NULL, 8626, '', '', 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 (31859, NULL, NULL, 2848, '', '', 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 (31860, NULL, NULL, 7834, '', '', 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 (31861, NULL, NULL, 7689, '', '', 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 (31862, NULL, NULL, 1928, '', '', 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 (31863, NULL, NULL, 1650, '', '', 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 (31864, NULL, NULL, 7636, '', '', 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 (31865, NULL, NULL, 9107, '', '', 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 (31866, NULL, NULL, 2287, '', '', 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 (31867, NULL, NULL, 7892, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-67.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31868, NULL, NULL, 8925, '', '', 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 (31869, NULL, NULL, 7422, '', '', 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 (31870, NULL, NULL, 2231, '', '', 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 (31871, NULL, NULL, 2916, '', '', 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 (31872, NULL, NULL, 8052, '', '', 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 (31873, NULL, NULL, 7783, '', '', 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 (31874, NULL, NULL, 2576, '', '', 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 (31875, NULL, NULL, 7741, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-42.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31876, NULL, NULL, 1338, '', '', 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 (31877, NULL, NULL, 8208, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-71.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31878, NULL, NULL, 9211, '', '', 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 (31879, NULL, NULL, 8142, '', '', 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 (31880, NULL, NULL, 7614, '', '', 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 (31881, NULL, NULL, 8093, '', '', 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 (31882, NULL, NULL, 7482, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-52.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31883, NULL, NULL, 8345, '', '', 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 (31884, NULL, NULL, 8774, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31885, NULL, NULL, 9143, '', '', 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 (31886, NULL, NULL, 2368, '', '', 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 (31887, NULL, NULL, 8516, '', '', 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 (31897, NULL, NULL, 9160, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31905, 219, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-08-28', '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 (31906, 219, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-08-28', '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 (31907, 219, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-08-28', '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 (31908, 219, NULL, 7899, '1819', 'EKURO BEWU', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-08-28', '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 (31909, 219, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '5.0000', '2021-08-28', '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 (31910, 219, NULL, 2865, '90832999', 'FINE FINE CREAM', NULL, '2.8000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-08-28', '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 (31911, 219, NULL, 2603, '17379642', 'VITAGO', NULL, '1.0000', '1.3000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '6.0000', '2021-08-28', 'received', '1.0000', '1.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (31912, 219, NULL, 9466, '80697738', 'LIQUFRUTA  GARLIC COUGH ', NULL, '20.0000', '27.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '3.0000', '2021-08-28', '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 (31913, 219, NULL, 9467, '87285008', 'CREPE BANDAGE 20CM (4.5M)', NULL, '8.0000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '8.0000', '2021-08-28', '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 (31914, 219, NULL, 9417, '3337', 'DORCO RAZOR', NULL, '1.6000', '2.1100', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '8.0000', '2021-08-28', '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 (31915, NULL, NULL, 7457, '', '', 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 (31916, NULL, NULL, 2106, '', '', 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 (31917, NULL, NULL, 2643, '', '', 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 (31918, NULL, NULL, 7649, '', '', 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 (31919, NULL, NULL, 1647, '', '', 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 (31920, NULL, NULL, 2400, '', '', 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 (31921, NULL, NULL, 1307, '', '', 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 (31922, NULL, NULL, 7756, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (31923, NULL, NULL, 9174, '', '', 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 (31924, NULL, NULL, 1631, '', '', 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 (31925, NULL, NULL, 2159, '', '', 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 (31926, NULL, NULL, 1800, '', '', 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 (31927, NULL, NULL, 9461, '', '', 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 (31928, NULL, NULL, 2020, '', '', 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 (31929, NULL, NULL, 1321, '', '', 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 (31930, NULL, NULL, 7608, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31931, NULL, NULL, 2983, '', '', 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 (31932, NULL, NULL, 8133, '', '', 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 (31933, NULL, NULL, 7913, '', '', 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 (31934, NULL, NULL, 3058, '', '', 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 (31935, 223, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2021-09-01', '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 (31936, 223, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-09-01', '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 (31937, 223, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.8200', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.2000', '0.0000', '2021-09-01', 'received', '7.8200', '7.8200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (31938, 223, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.0000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-09-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 (31939, 223, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2021-09-01', '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 (31940, NULL, NULL, 2825, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31941, NULL, NULL, 3001, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-101.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31942, NULL, NULL, 7950, '', '', 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 (31943, NULL, NULL, 2106, '', '', 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 (31944, NULL, NULL, 7377, '', '', 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 (31945, NULL, NULL, 8562, '', '', 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 (31946, NULL, NULL, 7796, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (31947, NULL, NULL, 1730, '', '', 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 (31948, NULL, NULL, 9088, '', '', 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 (31949, NULL, NULL, 2857, '', '', 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 (31950, NULL, NULL, 2576, '', '', 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 (31951, NULL, NULL, 8643, '', '', 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 (31952, NULL, NULL, 1712, '', '', 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 (31953, NULL, NULL, 2559, '', '', 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 (31954, NULL, NULL, 7558, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-104.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31955, 220, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-08-28', '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 (31956, 220, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-08-28', '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 (31957, 220, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-08-28', '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 (31958, 220, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-08-28', '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 (31959, 220, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-08-28', '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 (31960, 220, NULL, 2603, '17379642', 'VITAGO', NULL, '1.0000', '1.3000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '4.0000', '2021-08-28', 'received', '1.0000', '1.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (31961, 220, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '3.3000', '4.5000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '13.0000', '2021-08-28', 'received', '3.3000', '3.3000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (31962, 220, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '1.6500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2021-08-28', 'received', '1.6500', '1.6500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (31963, 220, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-08-28', '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 (31964, 220, NULL, 2107, '04659350', 'FUROSEMIDE TAB 40MG LETAP', NULL, '0.2500', '0.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '64.0000', '2021-08-28', 'received', '0.2500', '0.2500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (31965, 218, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.0000', '32.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.1200', '24.0000', '2021-08-27', 'received', '5.9100', '5.9100', '32.0000', NULL, NULL, 1, 'pc', '32.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 (31966, 218, NULL, 2909, '94340911', 'CLINDAMYCIN 300MG CAPS KAMA', NULL, '10.0000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '10.0000', '2021-08-27', '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 (31967, 218, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '8.7500', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.5000', '10.0000', '2021-08-27', '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 (31968, 218, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '27.2300', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '1.0000', '2021-08-27', '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 (31969, 218, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2021-08-27', '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 (31970, 218, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '21.2000', '28.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8000', '0.0000', '2021-08-27', '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 (31971, 218, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8500', '0.0000', '2021-08-27', '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 (31972, 218, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0600', '3.0000', '2021-08-27', '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 (31973, 218, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '170.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '365.6700', '1.0000', '2021-08-27', 'received', '121.8900', '121.8900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (31974, 218, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.7600', '17.0000', '2021-08-27', 'received', '2.7400', '2.7400', '24.0000', NULL, NULL, 1, 'pc', '24.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 (31975, 218, NULL, 1697, '8904023403058', 'APETI SYRUP-GEO', NULL, '9.2100', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6300', '3.0000', '2021-08-27', 'received', '9.2100', '9.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (31976, 218, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.5000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '2.0000', '2021-08-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 (31977, 218, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-08-27', '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 (31978, 218, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '15.0000', '2021-08-27', '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 (31979, 218, 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-27', '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 (31980, 218, NULL, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-08-27', '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 (31981, 218, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '5.9500', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8500', '0.0000', '2021-08-27', 'received', '5.9500', '5.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (31982, 218, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.4500', '2.0000', '2021-08-27', 'received', '13.2900', '13.2900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (31983, 218, NULL, 2662, '78880294', 'LONART TAB', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2021-08-27', '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 (31984, 218, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '75.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '41.0000', '2021-08-27', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (31985, 218, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2021-08-27', '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 (31986, 218, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '7.0500', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '0.0000', '2021-08-27', 'received', '7.0500', '7.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.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 (31987, 218, 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-27', '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 (31988, 218, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.8200', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2021-08-27', '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 (31989, 218, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '26.4500', '37.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9000', '0.0000', '2021-08-27', 'received', '26.4500', '26.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (31990, 218, 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-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 (31991, 218, 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-27', '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 (31992, 218, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0400', '10.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.8000', '9.0000', '2021-08-27', 'received', '7.0400', '7.0400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (31993, 218, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '2.0000', '2021-08-27', '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 (31994, 218, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '3.3000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-08-27', '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 (31995, 218, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '3.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '1.0000', '2021-08-27', 'received', '2.3000', '2.3000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (31996, 218, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4100', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '19.0000', '2021-08-27', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (31997, 218, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8000', '1.2000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-08-27', 'received', '0.8000', '0.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (31998, 218, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2021-08-27', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (31999, 218, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.3000', '0.0000', '2021-08-27', 'received', '2.3000', '2.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (32000, 218, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-08-27', '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 (32001, 218, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '22.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '3.0000', '2021-08-27', '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 (32002, 218, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '259.0000', '0.0000', '2021-08-27', 'received', '25.9000', '25.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (32003, 218, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-08-27', '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 (32004, 218, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '18.7200', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1600', '0.0000', '2021-08-27', '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 (32005, 218, NULL, 2267, '52018792', 'KIDICS SYRUP', NULL, '9.5000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2021-08-27', '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 (32006, 218, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '6.0000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2021-08-27', '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 (32007, 218, 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-27', '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 (32008, 218, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4500', '0.0000', '2021-08-27', 'received', '12.8900', '12.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (32009, 218, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5000', '2.0000', '2021-08-27', '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 (32010, 218, NULL, 9459, '00349619', 'ALBEN SUSP', NULL, '3.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2021-08-27', 'received', '3.0000', '3.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (32011, 218, NULL, 8466, '2386', 'CELGIVITY', NULL, '2.8900', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.8900', '1.0000', '2021-08-27', 'received', '2.8900', '2.8900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '2.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 (32012, 218, NULL, 2608, '57349245', 'CELLGEVITY', NULL, '83.3300', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3300', '1.0000', '2021-08-27', 'received', '83.3300', '83.3300', '1.0000', NULL, NULL, 1, 'pc', '1.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 (32013, 218, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-08-27', '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 (32014, 218, NULL, 7632, '1552', 'CIPROLEX TAB', NULL, '9.0000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-08-27', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (32015, 218, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '4.0000', '2021-08-27', '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 (32016, 218, NULL, 7638, '1558', 'FLUCONA DENK', NULL, '12.0000', '16.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2021-08-27', '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 (32017, 218, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-08-27', '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 (32018, 218, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5400', '1.0000', '2021-08-27', '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 (32019, 218, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '83.0000', '110.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.0000', '1.0000', '2021-08-27', 'received', '83.0000', '83.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (32020, 218, NULL, 3004, '72625723', 'CLARITHROMYCIN 500MG SANDOZ', NULL, '30.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-08-27', '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 (32021, 218, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '214.8000', '0.0000', '2021-08-27', 'received', '35.8000', '35.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (32022, 218, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '2.0000', '2021-08-27', '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 (32023, 218, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '20.5000', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '2.0000', '2021-08-27', '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 (32024, 218, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '19.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2021-08-27', '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 (32025, 218, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '77.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-08-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 (32026, 218, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '2.0000', '2021-08-27', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (32027, 218, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9800', '0.0000', '2021-08-27', '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 (32028, 218, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.8400', '2.0000', '2021-08-27', '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 (32029, 218, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '14.6400', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9200', '2.0000', '2021-08-27', 'received', '14.6400', '14.6400', '3.0000', NULL, NULL, 1, 'pc', '3.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 (32030, 218, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.7800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.8000', '3.0000', '2021-08-27', '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 (32031, 218, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '1.0000', '2021-08-27', '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 (32032, 218, NULL, 1698, 'PR-411', 'ODYMIN SYR', NULL, '8.4500', '11.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.9000', '1.0000', '2021-08-27', 'received', '8.4500', '8.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (32033, 218, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.7800', '2.0000', '2021-08-27', '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 (32034, 218, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.4000', '4.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-08-27', 'received', '3.4000', '3.4000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (32035, 218, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2021-08-27', '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 (32036, 218, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-08-27', '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 (32037, 218, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '4.0000', '2021-08-27', '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 (32038, 218, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.8000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '48.0000', '2021-08-27', '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 (32039, 218, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '58.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '1.0000', '2021-08-27', 'received', '58.0000', '58.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32040, 218, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9600', '2.0000', '2021-08-27', '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 (32041, 218, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '3.0000', '2021-08-27', '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 (32042, 218, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '32.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8600', '0.0000', '2021-08-27', '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 (32043, 218, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.9600', '1.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '15.0000', '2021-08-27', 'received', '0.9600', '0.9600', '20.0000', NULL, NULL, 1, 'pc', '20.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 (32044, 218, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.8400', '10.3500', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '0.0000', '2021-08-27', '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 (32045, 218, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.9500', '13.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8000', '0.0000', '2021-08-27', 'received', '9.9500', '9.9500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32046, 218, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '4.0000', '2021-08-27', '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 (32047, 218, NULL, 3035, '31081429', 'LAWSON HERBAL', NULL, '9.5000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2021-08-27', '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 (32048, 218, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '3.3000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2021-08-27', 'received', '3.3000', '3.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (32049, 218, NULL, 9460, '37461390', 'ZURION 30\'S S/S', NULL, '55.0000', '73.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2021-08-27', 'received', '55.0000', '55.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (32050, 218, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.1000', '2.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '60.0000', '2021-08-27', '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 (32051, 218, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.6500', '1.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '60.0000', '2021-08-27', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (32052, 218, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '12.0000', '2021-08-27', '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 (32053, 218, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '4.6000', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '6.0000', '2021-08-27', '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 (32054, 218, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '15.6000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '1.0000', '2021-08-27', 'received', '15.6000', '15.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (32055, 218, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '5.0000', '2021-08-27', '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 (32056, 218, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '18.8200', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4600', '2.0000', '2021-08-27', 'received', '18.8200', '18.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (32057, 218, NULL, 7489, '1409', 'AMPICLOX SUSP', NULL, '4.9000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '3.0000', '2021-08-27', '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 (32058, 218, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '33.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '0.0000', '2021-08-27', '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 (32059, 218, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '6.0000', '2021-08-27', '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 (32060, 218, NULL, 7639, '1559', 'JET 2', NULL, '6.5000', '8.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-08-27', '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 (32061, 218, NULL, 9461, '53270643', 'YOVANNY INHALER', NULL, '1.6000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '12.0000', '2021-08-27', 'received', '1.6000', '1.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (32062, 218, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '25.0000', '33.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-08-27', '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 (32063, 218, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '29.0000', '38.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '3.0000', '2021-08-27', '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 (32064, 218, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6700', '2.0000', '2021-08-27', 'received', '12.8900', '12.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (32065, 218, 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-27', '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 (32066, 218, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-08-27', '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 (32067, 218, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '4.0000', '2021-08-27', '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 (32068, 218, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1300', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '16.0000', '2021-08-27', '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 (32069, 218, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '0.0000', '2021-08-27', '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 (32070, 218, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '11.9500', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8500', '1.0000', '2021-08-27', '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 (32071, 218, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '6.0000', '2021-08-27', '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 (32072, 218, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '34.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2400', '2.0000', '2021-08-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 (32073, 218, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '5.0000', '2021-08-27', '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 (32074, 218, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '3.0000', '2021-08-27', '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 (32075, 218, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.1900', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3800', '2.0000', '2021-08-27', 'received', '20.1900', '20.1900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (32076, 218, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '27.2300', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '3.0000', '2021-08-27', '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 (32077, 218, NULL, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '1.0000', '2021-08-27', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (32078, 218, NULL, 9458, '31675978', 'CYPRON PLUS TABS', NULL, '1.9000', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '25.0000', '2021-08-27', 'received', '1.9000', '1.9000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (32079, 218, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-08-27', '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 (32080, 218, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-08-27', '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 (32081, 218, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '26.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-08-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 (32082, 218, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '15.8000', '21.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.6000', '0.0000', '2021-08-27', 'received', '15.8000', '15.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (32083, 218, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '3.0000', '2021-08-27', '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 (32084, 218, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '1.0000', '2021-08-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 (32085, 218, 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-27', '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 (32086, 218, NULL, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '0.7300', '1.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.1100', '4.0000', '2021-08-27', 'received', '0.7300', '0.7300', '7.0000', NULL, NULL, 1, 'pc', '7.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 (32087, 218, NULL, 1455, 'PR-168', 'Gacet125MP KIACK006', NULL, '4.0000', '7.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '58.0000', '2021-08-27', 'received', '4.0000', '4.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (32088, NULL, NULL, 8454, '', '', 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 (32089, NULL, NULL, 1910, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32090, NULL, NULL, 1756, '', '', 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 (32091, NULL, NULL, 7569, '', '', 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 (32092, NULL, NULL, 2317, '', '', 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 (32093, NULL, NULL, 8984, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-43.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32094, NULL, NULL, 8133, '', '', 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 (32095, NULL, NULL, 8500, '', '', 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 (32096, NULL, NULL, 2912, '', '', 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 (32097, NULL, NULL, 2476, '', '', 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 (32098, NULL, NULL, 9394, '', '', 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 (32099, NULL, NULL, 2482, '', '', 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 (32100, NULL, NULL, 8947, '', '', 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 (32101, NULL, NULL, 2112, '', '', 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 (32102, NULL, NULL, 2237, '', '', 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 (32103, NULL, NULL, 1439, '', '', 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 (32104, NULL, NULL, 7946, '', '', 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 (32105, NULL, NULL, 7345, '', '', 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 (32106, NULL, NULL, 1975, '', '', 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 (32107, NULL, NULL, 8075, '', '', 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 (32108, NULL, NULL, 7932, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32131, 224, NULL, 8608, '2528', 'VOLTIC S/S PK', NULL, '0.9000', '1.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-09-02', 'received', '0.9000', '0.9000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (32132, 224, NULL, 8188, '2108', 'VOLTIC M/S', NULL, '0.9000', '1.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-09-02', 'received', '0.9000', '0.9000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (32133, 224, NULL, 9084, '3004', 'APPLE JUICE', NULL, '9.1000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '0.0000', '2021-09-02', 'received', '9.1000', '9.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (32134, 224, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.5000', '23.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.4000', '10.0000', '2021-09-02', 'received', '3.8000', '3.8000', '23.0000', NULL, NULL, 1, 'pc', '23.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 (32135, 224, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.8000', '0.0000', '2021-09-02', 'received', '9.6000', '9.6000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (32136, 224, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '5.0000', '7.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-09-02', 'received', '5.0000', '5.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (32137, 224, NULL, 9213, '3133', 'ROX DRINKS', NULL, '5.4000', '8.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '5.0000', '2021-09-02', 'received', '5.4000', '5.4000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (32138, 224, NULL, 8763, '2683', 'VODY', NULL, '5.4000', '8.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2021-09-02', 'received', '5.4000', '5.4000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (32139, 224, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '6.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '1.0000', '2021-09-02', 'received', '3.8000', '3.8000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (32140, 224, NULL, 8933, '2853', 'RED BULL', NULL, '10.0000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2021-09-02', '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 (32141, 224, NULL, 8982, '2902', 'CRANBERRY', NULL, '10.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2021-09-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 (32142, 224, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.5000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-09-02', '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 (32143, 224, NULL, 8759, '2679', 'FRUTELLI', NULL, '6.3000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '0.0000', '2021-09-02', 'received', '6.3000', '6.3000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32144, 224, NULL, 8745, '2665', 'DON SIMON', NULL, '8.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2021-09-02', '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 (32145, 224, NULL, 8758, '2678', 'PURE HEAVEN', NULL, '5.8000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2021-09-02', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (32146, 224, NULL, 8767, '2687', 'KISS DRINK', NULL, '6.6900', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '0.0000', '2021-09-02', 'received', '6.6900', '6.6900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (32147, 224, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '6.6000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '1.0000', '2021-09-02', '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 (32148, 224, NULL, 8769, '2689', 'HUNTERS', NULL, '6.6000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-09-02', '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 (32149, 224, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '4.4000', '6.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '0.0000', '2021-09-02', 'received', '4.4000', '4.4000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (32150, 224, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '12.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-02', '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 (32151, 224, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '5.8000', '7.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.4000', '6.0000', '2021-09-02', 'received', '5.8000', '5.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (32152, 224, NULL, 8775, '2695', 'VITRAC S/S', NULL, '2.6000', '3.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '2.0000', '2021-09-02', 'received', '2.6000', '2.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (32153, 224, NULL, 9470, '54824799', 'COKE/ FANTA/ SPRITE 1L', NULL, '9.6000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '1.0000', '2021-09-02', '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 (32154, 224, NULL, 9471, '85188534', 'CATUABA DRINK', NULL, '14.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '1.0000', '2021-09-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 (32155, 224, NULL, 9468, '27739747', 'PAMALAT  1KG', NULL, '17.5000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '1.0000', '2021-09-02', 'received', '17.5000', '17.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32156, NULL, NULL, 9413, '', '', 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 (32157, NULL, NULL, 9012, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32158, NULL, NULL, 9325, '', '', 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 (32159, NULL, NULL, 7506, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32160, NULL, NULL, 8205, '', '', 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 (32161, NULL, NULL, 7782, '', '', 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 (32162, NULL, NULL, 9284, '', '', 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 (32163, NULL, NULL, 9177, '', '', 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 (32164, NULL, NULL, 1831, '', '', 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 (32165, NULL, NULL, 2375, '', '', 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 (32166, NULL, NULL, 2356, '', '', 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 (32167, NULL, NULL, 8878, '', '', 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 (32168, NULL, NULL, 1748, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-65.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32169, NULL, NULL, 7411, '', '', 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 (32170, NULL, NULL, 1577, '', '', 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 (32171, NULL, NULL, 1450, '', '', 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 (32172, NULL, NULL, 1849, '', '', 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 (32173, NULL, NULL, 7656, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32174, NULL, NULL, 9272, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-120.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32175, NULL, NULL, 7687, '', '', 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 (32176, NULL, NULL, 1642, '', '', 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 (32177, NULL, NULL, 9195, '', '', 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 (32178, NULL, NULL, 3074, '', '', 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 (32179, NULL, NULL, 7524, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-119.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32180, NULL, NULL, 2098, '', '', 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 (32181, NULL, NULL, 8134, '', '', 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 (32182, NULL, NULL, 9338, '', '', 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 (32183, NULL, NULL, 7380, '', '', 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 (32184, NULL, NULL, 7651, '', '', 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 (32185, NULL, NULL, 8722, '', '', 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 (32186, NULL, NULL, 2456, '', '', 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 (32187, NULL, NULL, 9469, '', '', 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 (32188, NULL, NULL, 9303, '', '', 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 (32189, NULL, NULL, 7897, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32190, NULL, NULL, 7907, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32191, NULL, NULL, 9445, '', '', 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 (32192, NULL, NULL, 7802, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-108.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32193, NULL, NULL, 7518, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (32194, NULL, NULL, 7411, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-792.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32195, NULL, NULL, 7777, '', '', 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 (32196, NULL, NULL, 1543, '', '', 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 (32197, NULL, NULL, 8566, '', '', 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 (32198, NULL, NULL, 9163, '', '', 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 (32199, NULL, NULL, 8810, '', '', 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 (32200, NULL, NULL, 7675, '', '', 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 (32201, NULL, NULL, 7606, '', '', 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 (32202, NULL, NULL, 8207, '', '', 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 (32203, NULL, NULL, 1824, '', '', 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 (32204, NULL, NULL, 7954, '', '', 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 (32205, NULL, NULL, 8351, '', '', 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 (32206, 225, NULL, 9473, '84382708', 'PHLOROGLUCINOL TAB 80MG 10\'S', NULL, '17.0000', '23.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '10.0000', '2021-09-04', '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 (32207, 225, NULL, 9474, '56251800', 'DUFENAC (DICLOFENAC 75MG 10\'S', NULL, '9.8000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-09-04', '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 (32210, 226, NULL, 9473, '84382708', 'PHLOROGLUCINOL TAB 80MG 10\'S', NULL, '17.0000', '23.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '10.0000', '2021-09-04', '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 (32211, 226, NULL, 9474, '56251800', 'DUFENAC (DICLOFENAC 75MG 10\'S', NULL, '9.8000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '2.0000', '2021-09-04', '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 (32212, 226, NULL, 9475, '95438207', 'FLORADISH SYRUP 200ML', NULL, '24.0000', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-09-04', '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 (32213, 227, NULL, 9473, '84382708', 'PHLOROGLUCINOL TAB 80MG 10\'S', NULL, '17.0000', '23.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '10.0000', '2021-09-04', '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 (32214, 227, NULL, 9474, '56251800', 'DUFENAC (DICLOFENAC 75MG 10\'S', NULL, '9.8000', '13.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-09-04', '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 (32247, 230, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2021-09-04', '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 (32248, 230, NULL, 9476, '01480261', 'ABSTA SYR', NULL, '8.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2021-09-04', '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 (32249, 230, NULL, 3020, '56022580', 'ARZIGLOBIN SYR', NULL, '11.9900', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9700', '3.0000', '2021-09-04', 'received', '11.9900', '11.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (32250, 230, NULL, 2889, '59597897', 'ADAMS SECRET CAPS', NULL, '20.0000', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-09-04', '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 (32251, 230, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '5.0000', '2021-09-04', '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 (32252, 230, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.8000', '9.0000', '2021-09-04', '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 (32253, 230, NULL, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', NULL, '13.9500', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.8500', '1.0000', '2021-09-04', 'received', '13.9500', '13.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (32254, 230, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '28.0000', '11.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '3.0000', '2021-09-04', 'received', '28.0000', '28.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32255, 230, NULL, 1755, 'PR-468', 'STOPKOF EXPT (ADULT) 100ML', NULL, '5.5900', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3600', '4.0000', '2021-09-04', '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 (32256, 230, NULL, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', NULL, '12.6000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '3.0000', '2021-09-04', 'received', '12.6000', '12.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (32257, NULL, NULL, 2618, '', '', 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 (32258, NULL, NULL, 8119, '', '', 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 (32259, NULL, NULL, 8208, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-184.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32260, NULL, NULL, 9474, '', '', 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 (32261, NULL, NULL, 8208, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-167.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32262, NULL, NULL, 3035, '', '', 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 (32263, NULL, NULL, 7411, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-621.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32264, NULL, NULL, 9444, '', '', 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 (32265, NULL, NULL, 7807, '', '', 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 (32266, NULL, NULL, 8350, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32267, NULL, NULL, 9028, '', '', 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 (32268, NULL, NULL, 7668, '', '', 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 (32269, NULL, NULL, 8637, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-48.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32270, NULL, NULL, 8653, '', '', 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 (32271, NULL, NULL, 8214, '', '', 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 (32272, NULL, NULL, 8914, '', '', 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 (32273, NULL, NULL, 7582, '', '', 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 (32274, NULL, NULL, 7931, '', '', 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 (32275, NULL, NULL, 8278, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32276, NULL, NULL, 2673, '', '', 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 (32277, NULL, NULL, 2283, '', '', 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 (32278, NULL, NULL, 8246, '', '', 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 (32279, NULL, NULL, 2991, '', '', 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 (32280, NULL, NULL, 2463, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32281, NULL, NULL, 8435, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32282, NULL, NULL, 7928, '', '', 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 (32283, NULL, NULL, 8489, '', '', 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 (32284, NULL, NULL, 1569, '', '', 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 (32285, NULL, NULL, 8361, '', '', 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 (32286, NULL, NULL, 2311, '', '', 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 (32287, NULL, NULL, 8566, '', '', 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 (32288, NULL, NULL, 8285, '', '', 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 (32289, NULL, NULL, 7441, '', '', 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 (32290, NULL, NULL, 2036, '', '', 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 (32291, NULL, NULL, 8518, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32292, NULL, NULL, 8720, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32293, NULL, NULL, 8666, '', '', 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 (32294, NULL, NULL, 2068, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (32295, NULL, NULL, 1574, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-57.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32296, NULL, NULL, 9092, '', '', 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 (32297, NULL, NULL, 8940, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32298, NULL, NULL, 7523, '', '', 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 (32299, NULL, NULL, 8506, '', '', 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 (32300, NULL, NULL, 7444, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (32301, NULL, NULL, 3015, '', '', 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 (32302, NULL, NULL, 2693, '', '', 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 (32303, NULL, NULL, 3012, '', '', 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 (32304, NULL, NULL, 8699, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32305, NULL, NULL, 9418, '', '', 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 (32306, NULL, NULL, 7994, '', '', 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 (32307, NULL, NULL, 7981, '', '', 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 (32308, NULL, NULL, 9401, '', '', 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 (32309, NULL, NULL, 7428, '', '', 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 (32310, NULL, NULL, 9274, '', '', 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 (32311, NULL, NULL, 7357, '', '', 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 (32312, NULL, NULL, 2238, '', '', 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 (32313, NULL, NULL, 7987, '', '', 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 (32314, NULL, NULL, 2275, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-49.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32315, NULL, NULL, 1703, '', '', 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 (32316, NULL, NULL, 7358, '', '', 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 (32317, NULL, NULL, 8594, '', '', 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 (32318, NULL, NULL, 9092, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-577.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32319, NULL, NULL, 8043, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32320, NULL, NULL, 8677, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-149.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32321, NULL, NULL, 7519, '', '', 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 (32322, NULL, NULL, 3041, '', '', 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 (32323, NULL, NULL, 2543, '', '', 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 (32324, NULL, NULL, 8146, '', '', 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 (32325, NULL, NULL, 1807, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32326, NULL, NULL, 7784, '', '', 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 (32327, NULL, NULL, 7954, '', '', 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 (32328, NULL, NULL, 3059, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32329, NULL, NULL, 2384, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32330, NULL, NULL, 8743, '', '', 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 (32331, NULL, NULL, 8952, '', '', 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 (32332, NULL, NULL, 8345, '', '', 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 (32333, NULL, NULL, 7806, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32334, NULL, NULL, 9393, '', '', 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 (32335, NULL, NULL, 2198, '', '', 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 (32336, NULL, NULL, 9342, '', '', 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 (32337, NULL, NULL, 2215, '', '', 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 (32338, NULL, NULL, 7905, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32339, NULL, NULL, 8067, '', '', 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 (32340, NULL, NULL, 8962, '', '', 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 (32341, NULL, NULL, 2706, '', '', 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 (32342, NULL, NULL, 1303, '', '', 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 (32343, NULL, NULL, 2944, '', '', 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 (32344, NULL, NULL, 7532, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32345, NULL, NULL, 2277, '', '', 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 (32346, NULL, NULL, 7959, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32347, NULL, NULL, 2394, '', '', 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 (32530, 228, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-09-04', '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 (32531, 228, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.2900', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9000', '0.0000', '2021-09-04', 'received', '4.2900', '4.2900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (32532, 228, NULL, 2635, '2208744', 'PLASTER ROLL S/S', NULL, '3.0000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-09-04', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (32533, 228, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '3.1500', '4.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2021-09-04', '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 (32534, 228, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.8000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '3.0000', '2021-09-04', '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 (32535, 228, NULL, 8987, '2907', 'MIXTARD', NULL, '35.0000', '46.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '4.0000', '2021-09-04', '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 (32536, 228, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-04', '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 (32537, 228, NULL, 1463, '5010123715175', 'EUTHYMOO TOOTHPASTE', NULL, '18.5000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-09-04', '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 (32538, 228, NULL, 2133, '4005900795298', 'NIVEA BOBY LOTION COCOA', NULL, '19.0000', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2021-09-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 (32539, 228, NULL, 9478, '46003503', 'BEAUTY FORMULAS FACIAL SCRUB', NULL, '9.0000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2021-09-04', '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 (32540, 228, NULL, 9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', NULL, '8.5000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '1.0000', '2021-09-04', '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 (32541, 228, NULL, 9479, '09616382', 'JENNIFERS DISINFECTANT WIPES', NULL, '3.0000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-09-04', '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 (32542, 228, NULL, 9481, '23284846', 'PALMER\'S COCOA BUTTER LOTION 500ML', NULL, '30.0000', '40.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-04', '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 (32543, 228, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '10.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-09-04', '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 (32544, 228, NULL, 2417, '89073800', 'DOVE SOAP', NULL, '3.7800', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3600', '0.0000', '2021-09-04', 'received', '3.7800', '3.7800', '12.0000', NULL, NULL, 1, 'pc', '12.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 (32545, 228, NULL, 2654, '4000388563803', 'DOVE LOTION', NULL, '15.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-04', '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 (32546, 228, NULL, 2449, '73407261', 'DETTOL SOAP SMALL', NULL, '5.0000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2021-09-04', 'received', '5.0000', '5.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32547, 228, NULL, 9482, '56424675', '3 IN 1 CONDOM', NULL, '0.5000', '1.0000', '144.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-09-04', 'received', '0.5000', '0.5000', '144.0000', NULL, NULL, 1, 'pc', '144.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 (32548, 228, NULL, 9483, '23220716', 'SHEA MOISTURE BEARD CON OIL', NULL, '5.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '1.0000', '2021-09-04', '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 (32549, 228, NULL, 9484, '95856271', 'SHEA MOISTURE LEAVE IN', NULL, '5.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '1.0000', '2021-09-04', '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 (32550, 228, NULL, 9485, '91219047', 'SHEA MOISTURE  CONDITIONER', NULL, '5.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-09-04', '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 (32551, 228, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.2000', '0.0000', '2021-09-04', 'received', '0.2600', '0.2600', '20.0000', NULL, NULL, 1, 'pc', '20.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 (32552, 228, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-09-04', '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 (32553, 228, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '8.0000', '2021-09-04', '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 (32554, 228, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-04', '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 (32555, 228, NULL, 2713, '06467625', 'MENTOS ICE GUM', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-04', '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 (32556, 228, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '7.0000', '8.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '1.0000', '2021-09-04', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (32557, 228, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '85.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1000', '10.0000', '2021-09-04', 'received', '0.2600', '0.2600', '85.0000', NULL, NULL, 1, 'pc', '85.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 (32575, 231, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2021-09-06', '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 (32576, 231, NULL, 1463, '5010123715175', 'EUTHYMOO TOOTHPASTE', NULL, '18.5000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-09-06', '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 (32577, 231, NULL, 2133, '4005900795298', 'NIVEA BOBY LOTION COCOA', NULL, '19.0000', '24.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '4.0000', '2021-09-06', '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 (32578, 231, NULL, 9478, '46003503', 'BEAUTY FORMULAS FACIAL SCRUB', NULL, '9.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '5.0000', '2021-09-06', '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 (32579, 231, NULL, 9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', NULL, '8.5000', '13.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '5.0000', '2021-09-06', '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 (32580, 231, NULL, 9479, '09616382', 'JENNIFERS DISINFECTANT WIPES', NULL, '3.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '3.0000', '2021-09-06', 'received', '3.0000', '3.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (32581, 231, NULL, 9481, '23284846', 'PALMER\'S COCOA BUTTER LOTION 500ML', NULL, '30.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '2.0000', '2021-09-06', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32582, 231, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '10.0000', '15.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-09-06', '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 (32583, 231, NULL, 2449, '73407261', 'DETTOL SOAP SMALL', NULL, '5.0000', '7.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '8.0000', '2021-09-06', 'received', '5.0000', '5.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (32584, 231, NULL, 2654, '4000388563803', 'DOVE LOTION', NULL, '15.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-09-06', '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 (32585, 231, NULL, 9482, '56424675', '3 IN 1 CONDOM', NULL, '0.5000', '1.0000', '144.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '137.0000', '2021-09-06', 'received', '0.5000', '0.5000', '144.0000', NULL, NULL, 1, 'pc', '144.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 (32586, 231, NULL, 9483, '23220716', 'SHEA MOISTURE BEARD CON OIL', NULL, '5.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-09-06', '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 (32587, 231, NULL, 9484, '95856271', 'SHEA MOISTURE LEAVE IN', NULL, '5.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-09-06', '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 (32588, 231, NULL, 9485, '91219047', 'SHEA MOISTURE  CONDITIONER', NULL, '5.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-09-06', '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 (32589, 231, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-09-06', '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 (32590, 231, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2021-09-06', '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 (32591, 231, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '18.0000', '2021-09-06', '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 (32592, 231, NULL, 2713, '06467625', 'MENTOS ICE GUM', NULL, '1.5000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-09-06', '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 (32593, 231, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '7.0000', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '8.0000', '2021-09-06', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (32594, 231, NULL, 8594, '2514', 'CHOCOLATE UK', NULL, '2.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-09-06', '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 (32595, 231, NULL, 8666, '2586', 'BANANA GUM', NULL, '0.4600', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.6000', '0.0000', '2021-09-06', 'received', '0.4600', '0.4600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (32596, 231, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '85.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1000', '47.0000', '2021-09-06', 'received', '0.2600', '0.2600', '85.0000', NULL, NULL, 1, 'pc', '85.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 (32597, NULL, NULL, 2359, '', '', 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 (32598, NULL, NULL, 2235, '', '', 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 (32599, NULL, NULL, 1545, '', '', 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 (32600, NULL, NULL, 2102, '', '', 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 (32601, NULL, NULL, 2263, '', '', 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 (32602, NULL, NULL, 8309, '', '', 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 (32603, NULL, NULL, 2757, '', '', 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 (32604, NULL, NULL, 7637, '', '', 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 (32605, NULL, NULL, 1306, '', '', 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 (32606, NULL, NULL, 1590, '', '', 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 (32607, NULL, NULL, 1630, '', '', 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 (32608, NULL, NULL, 8868, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-65.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32609, NULL, NULL, 8770, '', '', 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 (32610, NULL, NULL, 1564, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (32617, 232, NULL, 2316, '59549986', 'SMA ', NULL, '45.0000', '48.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2021-09-06', '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 (32618, 232, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '14.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-09-06', '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 (32619, 232, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2021-09-06', '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 (32620, 232, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '28.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '2.0000', '2021-09-06', '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 (32621, 232, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '88.0000', '100.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '528.0000', '3.0000', '2021-09-06', 'received', '88.0000', '88.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '88.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32622, 232, NULL, 2645, '04241482', 'COMFORT SOFTNER M/S', NULL, '21.0000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '1.0000', '2021-09-06', '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 (32623, 232, NULL, 2003, '6033000102584', 'ROBB JAR', NULL, '4.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-09-06', '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 (32624, 232, NULL, 9492, '04045978', ' EASY ON SPRAY STARCH', NULL, '15.0000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2021-09-06', '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 (32625, 232, NULL, 8809, '2729', 'EASY ON', NULL, '15.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-09-06', '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 (32626, 232, NULL, 2962, '17785722', 'MOSQUITO REPELLENT', NULL, '4.0000', '6.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '12.0000', '2021-09-06', '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 (32627, 232, NULL, 9486, '22626316', 'PEAK MILK POWDER', NULL, '23.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '1.0000', '2021-09-06', '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 (32628, 232, NULL, 9487, '11890727', 'OVALTINE TEA', NULL, '23.0000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '1.0000', '2021-09-06', '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 (32629, 232, NULL, 9491, '49125747', 'CERELAC MILLET', NULL, '14.5000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '1.0000', '2021-09-06', '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 (32630, 232, NULL, 9488, '87883786', 'GOOD MORNING OATS 500G', NULL, '9.0000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '4.0000', '2021-09-06', '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 (32631, 232, NULL, 9489, '91743299', 'GOLDEN  COUNTRY BABY MILK', NULL, '23.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '2.0000', '2021-09-06', '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 (32632, 232, NULL, 9490, '04136468', 'RAID SPRAY', NULL, '19.0000', '22.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-09-06', '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 (32633, NULL, NULL, 7690, '', '', 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 (32634, NULL, NULL, 2354, '', '', 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 (32635, NULL, NULL, 7800, '', '', 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 (32636, NULL, NULL, 2334, '', '', 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 (32637, NULL, NULL, 7590, '', '', 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 (32638, NULL, NULL, 8148, '', '', 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 (32639, NULL, NULL, 8476, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (32640, NULL, NULL, 7688, '', '', 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 (32641, NULL, NULL, 2991, '', '', 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 (32642, NULL, NULL, 8519, '', '', 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 (32643, NULL, NULL, 7364, '', '', 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 (32644, NULL, NULL, 7983, '', '', 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 (32645, NULL, NULL, 1965, '', '', 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 (32646, NULL, NULL, 8318, '', '', 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 (32647, NULL, NULL, 7922, '', '', 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 (32648, NULL, NULL, 7592, '', '', 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 (32649, NULL, NULL, 9388, '', '', 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 (32650, NULL, NULL, 9241, '', '', 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 (32651, NULL, NULL, 1481, '', '', 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 (32652, NULL, NULL, 7920, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32653, NULL, NULL, 1758, '', '', 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 (32654, NULL, NULL, 7871, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32655, NULL, NULL, 8262, '', '', 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 (32656, NULL, NULL, 2995, '', '', 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 (32657, NULL, NULL, 8774, '', '', 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 (32658, NULL, NULL, 1519, '', '', 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 (32659, NULL, NULL, 1371, '', '', 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 (32660, NULL, NULL, 2346, '', '', 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 (32661, NULL, NULL, 8171, '', '', 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 (32662, NULL, NULL, 8411, '', '', 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 (32663, NULL, NULL, 1708, '', '', 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 (32664, NULL, NULL, 1751, '', '', 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 (32665, NULL, NULL, 7531, '', '', 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 (32666, NULL, NULL, 1337, '', '', 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 (32667, NULL, NULL, 8279, '', '', 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 (32668, NULL, NULL, 9443, '', '', 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 (32669, NULL, NULL, 8622, '', '', 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 (32670, NULL, NULL, 7412, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (32671, NULL, NULL, 8288, '', '', 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 (32672, NULL, NULL, 7468, '', '', 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 (32673, NULL, NULL, 7657, '', '', 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 (32674, NULL, NULL, 7380, '', '', 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 (32675, NULL, NULL, 8745, '', '', 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 (32676, NULL, NULL, 7772, '', '', 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 (32677, NULL, NULL, 8164, '', '', 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 (32678, NULL, NULL, 2491, '', '', 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 (32679, NULL, NULL, 7825, '', '', 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 (32680, NULL, NULL, 3047, '', '', 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 (32681, NULL, NULL, 7922, '', '', 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 (32682, NULL, NULL, 7640, '', '', 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 (32683, NULL, NULL, 7519, '', '', 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 (32684, NULL, NULL, 7853, '', '', 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 (32685, NULL, NULL, 9145, '', '', 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 (32686, NULL, NULL, 7593, '', '', 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 (32687, NULL, NULL, 9261, '', '', 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 (32688, NULL, NULL, 8525, '', '', 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 (32689, NULL, NULL, 8401, '', '', 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 (32690, NULL, NULL, 8059, '', '', 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 (32691, NULL, NULL, 3018, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32692, NULL, NULL, 8204, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32693, NULL, NULL, 7575, '', '', 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 (32694, NULL, NULL, 7680, '', '', 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 (32695, NULL, NULL, 2461, '', '', 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 (32696, NULL, NULL, 7720, '', '', 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 (32697, NULL, NULL, 9098, '', '', 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 (32698, NULL, NULL, 7334, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (32699, NULL, NULL, 2512, '', '', 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 (32700, NULL, NULL, 2989, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-62.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32701, NULL, NULL, 2661, '', '', 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 (32702, NULL, NULL, 1520, '', '', 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 (32703, NULL, NULL, 9149, '', '', 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 (32704, NULL, NULL, 7673, '', '', 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 (32705, NULL, NULL, 7864, '', '', 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 (32706, NULL, NULL, 7376, '', '', 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 (32707, NULL, NULL, 8315, '', '', 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 (32708, NULL, NULL, 7657, '', '', 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 (32709, NULL, NULL, 8755, '', '', 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 (32710, NULL, NULL, 7741, '', '', 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 (32711, NULL, NULL, 2836, '', '', 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 (32712, NULL, NULL, 2870, '', '', 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 (32713, NULL, NULL, 2964, '', '', 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 (32714, NULL, NULL, 9193, '', '', 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 (32761, NULL, NULL, 8243, '', '', 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 (32762, NULL, NULL, 7758, '', '', 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 (32763, NULL, NULL, 7612, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32764, NULL, NULL, 7799, '', '', 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 (32765, NULL, NULL, 8918, '', '', 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 (32766, NULL, NULL, 2998, '', '', 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 (32812, 234, NULL, 1517, 'PR-230', 'NEOCORT EYE DROP', NULL, '22.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2021-09-08', '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 (32813, 234, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4400', '0.0000', '2021-09-08', '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 (32814, 234, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.3400', '4.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.0000', '0.0000', '2021-09-08', 'received', '3.3400', '3.3400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (32815, 234, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '6.0000', '2021-09-08', '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 (32816, 234, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2200', '11.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.3000', '1.0000', '2021-09-08', 'received', '8.2200', '8.2200', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (32817, 234, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-08', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (32818, 234, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '11.0000', '2021-09-08', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (32819, 234, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '9.6500', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.3000', '0.0000', '2021-09-08', 'received', '9.6500', '9.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (32820, 234, NULL, 1497, 'PR-210', 'JARIFAN 2 CAPS', NULL, '10.5000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '2.0000', '2021-09-08', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (32821, 234, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '19.6000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '3.0000', '2021-09-08', 'received', '19.6000', '19.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (32822, 234, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '4.1000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '9.0000', '2021-09-08', '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 (32823, 234, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '3.0000', '2021-09-08', '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 (32824, 234, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2021-09-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 (32825, 234, NULL, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', NULL, '1.0900', '1.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '85.0000', '2021-09-08', 'received', '1.0900', '1.0900', '100.0000', NULL, NULL, 1, 'pc', '100.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 (32826, 234, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.9900', '32.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.9500', '0.0000', '2021-09-08', 'received', '22.9900', '22.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (32827, 234, NULL, 3009, '25462573', 'B CO STRONG KRIKA ORIGINAL', NULL, '25.0000', '33.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '4.0000', '2021-09-08', '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 (32828, 234, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '1.3400', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '50.0000', '2021-09-08', 'received', '1.3400', '1.3400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (32829, 234, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.8400', '10.3500', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '0.0000', '2021-09-08', '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 (32830, NULL, NULL, 7809, '', '', 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 (32831, NULL, NULL, 8133, '', '', 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 (32832, NULL, NULL, 2965, '', '', 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 (32833, NULL, NULL, 7672, '', '', 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 (32834, NULL, NULL, 8810, '', '', 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 (32835, NULL, NULL, 7780, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32836, NULL, NULL, 7779, '', '', 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 (32837, NULL, NULL, 2773, '', '', 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 (32838, NULL, NULL, 9271, '', '', 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 (32839, NULL, NULL, 7532, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (32840, NULL, NULL, 7912, '', '', 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 (32841, NULL, NULL, 1364, '', '', 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 (32842, NULL, NULL, 8752, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32843, NULL, NULL, 8005, '', '', 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 (32844, NULL, NULL, 8202, '', '', 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 (32845, NULL, NULL, 8783, '', '', 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 (32846, NULL, NULL, 2962, '', '', 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 (32847, NULL, NULL, 9410, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32848, NULL, NULL, 9240, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32849, NULL, NULL, 9024, '', '', 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 (32850, NULL, NULL, 9252, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32851, NULL, NULL, 8291, '', '', 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 (32852, NULL, NULL, 7749, '', '', 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 (32853, NULL, NULL, 8769, '', '', 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 (32854, NULL, NULL, 9089, '', '', 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 (32855, NULL, NULL, 9240, '', '', 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 (32856, 233, NULL, 9476, '01480261', 'ABSTA SYR', NULL, '8.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-09-08', '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 (32857, 233, NULL, 3020, '56022580', 'ARZIGLOBIN SYR', NULL, '11.9900', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9700', '2.0000', '2021-09-08', 'received', '11.9900', '11.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (32858, 233, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-09-08', '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 (32859, 233, NULL, 2889, '59597897', 'ADAMS SECRET CAPS', NULL, '20.0000', '27.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2021-09-08', '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 (32860, 233, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.8000', '2.0000', '2021-09-08', '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 (32861, 233, NULL, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', NULL, '12.6000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '1.0000', '2021-09-08', 'received', '12.6000', '12.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (32862, 233, NULL, 2467, '97164110', 'LISINOPRIL 20MG TAB UK', NULL, '12.1000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3000', '3.0000', '2021-09-08', 'received', '12.1000', '12.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (32863, 233, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8200', '0.0000', '2021-09-08', 'received', '11.8200', '11.8200', '1.0000', NULL, NULL, 1, 'pc', '1.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 (32864, 233, NULL, 9493, '92646800', 'COLORID SYR', NULL, '5.2800', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8400', '3.0000', '2021-09-08', '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 (32865, 233, 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', '3.0000', '2021-09-08', '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 (32866, 233, NULL, 1953, '56415263', 'STAGYL TABS', NULL, '2.4900', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9400', '2.0000', '2021-09-08', 'received', '2.4900', '2.4900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (32867, 233, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.4600', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '2.0000', '2021-09-08', 'received', '5.4600', '5.4600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (32868, 233, NULL, 9494, '47295367', 'DIAMICRON MR 30MG TAB 28', NULL, '24.5000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '2.0000', '2021-09-08', '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 (32869, 233, NULL, 1459, 'PR-172', 'ZINNAT SUSP 125MG/100ML', NULL, '84.8700', '113.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8700', '0.0000', '2021-09-08', 'received', '84.8700', '84.8700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '84.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 (32870, 233, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.6000', '30.0000', '2021-09-08', 'received', '2.7400', '2.7400', '40.0000', NULL, NULL, 1, 'pc', '40.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 (32871, 233, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2800', '1.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6000', '0.0000', '2021-09-08', 'received', '1.2800', '1.2800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (32872, 233, NULL, 2915, '21109477', 'ASPIRIN CARDIO 100MG', NULL, '15.4500', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.8000', '1.0000', '2021-09-08', 'received', '15.4500', '15.4500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32873, 233, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-08', '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 (32874, 233, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '49.5000', '65.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2021-09-08', 'received', '49.5000', '49.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32875, 233, NULL, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '60.7700', '80.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.5400', '0.0000', '2021-09-08', 'received', '60.7700', '60.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.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 (32876, 233, NULL, 2679, '42097030', 'PEVISONE CREAM', NULL, '33.0100', '44.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0500', '1.0000', '2021-09-08', 'received', '33.0100', '33.0100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (32877, 233, NULL, 1514, '6221032340177', 'DEXATROL EYE OINT', NULL, '11.9600', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '2.0000', '2021-09-08', '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 (32878, 233, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '5.0000', '2021-09-08', '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 (32879, 233, NULL, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', NULL, '13.9500', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.8500', '1.0000', '2021-09-08', 'received', '13.9500', '13.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (32880, 233, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9200', '0.0000', '2021-09-08', 'received', '7.9800', '7.9800', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32881, 233, NULL, 1755, 'PR-468', 'STOPKOF EXPT (ADULT) 100ML', NULL, '5.5900', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3600', '2.0000', '2021-09-08', '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 (32882, 233, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.0000', '47.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-09-08', '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 (32883, 233, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.4600', '78.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.9200', '0.0000', '2021-09-08', '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 (32884, 233, NULL, 2641, '92213060', 'CONGESTYL SUSP', NULL, '9.3600', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0800', '3.0000', '2021-09-08', '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 (32885, 233, NULL, 8807, '2727', 'STOPKOF EXP JNR', NULL, '3.4200', '5.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6800', '4.0000', '2021-09-08', 'received', '3.4200', '3.4200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.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 (32886, 233, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '24.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '2.0000', '2021-09-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 (32887, 233, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2400', '5.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2000', '19.0000', '2021-09-08', 'received', '3.2400', '3.2400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (32888, 233, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0300', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0900', '3.0000', '2021-09-08', 'received', '5.0300', '5.0300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (32889, 233, NULL, 2488, '57207509', 'DAONIL TAB (SANOFI) ', NULL, '7.0000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-09-08', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (32895, NULL, NULL, 8308, '', '', 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 (32896, NULL, NULL, 1478, '', '', 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 (32897, NULL, NULL, 8607, '', '', 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 (32898, NULL, NULL, 2496, '', '', 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 (32899, NULL, NULL, 7852, '', '', 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 (32900, NULL, NULL, 7485, '', '', 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 (32901, NULL, NULL, 1409, '', '', 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 (32902, NULL, NULL, 7804, '', '', 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 (32903, NULL, NULL, 9156, '', '', 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 (32904, NULL, NULL, 8230, '', '', 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 (32905, NULL, NULL, 8616, '', '', 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 (32906, NULL, NULL, 2016, '', '', 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 (32907, NULL, NULL, 3037, '', '', 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 (32908, 236, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.4000', '0.0000', '2021-09-09', 'received', '2.9200', '2.9200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (32909, 236, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9500', '4.0000', '2021-09-09', 'received', '7.1900', '7.1900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (32910, 236, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '5.0000', '2021-09-09', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (32911, 236, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5200', '0.0000', '2021-09-09', '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 (32912, 236, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5500', '5.0000', '2021-09-09', '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 (32913, 236, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4500', '4.0000', '2021-09-09', 'received', '6.2900', '6.2900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (32914, 236, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.5900', '9.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.1800', '0.0000', '2021-09-09', 'received', '6.5900', '6.5900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (32915, 236, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '2.0000', '2021-09-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 (32916, 236, NULL, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', NULL, '9.3600', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7200', '2.0000', '2021-09-09', 'received', '9.3600', '9.3600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (32917, 236, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2021-09-09', '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 (32918, 236, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5800', '2.0000', '2021-09-09', '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 (32919, 236, NULL, 8462, '2382', 'GARLIC PEARLS OSONS', NULL, '7.0400', '10.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0800', '0.0000', '2021-09-09', 'received', '7.0400', '7.0400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (32920, 236, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-09-09', '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 (32921, 236, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '4.0000', '2021-09-09', '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 (32922, 236, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.8500', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '0.0000', '2021-09-09', 'received', '9.8500', '9.8500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32923, 236, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '9.8500', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '4.0000', '2021-09-09', 'received', '9.8500', '9.8500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (32924, 236, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '3.2700', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '20.0000', '2021-09-09', 'received', '3.2700', '3.2700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (32925, 236, NULL, 2149, '74837557', 'ZIPMAN CAPS', NULL, '14.5000', '19.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '4.0000', '2021-09-09', '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 (32926, 236, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2021-09-09', '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 (32927, 236, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '7.0000', '2021-09-09', 'received', '1.3000', '1.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (32928, 236, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '8.9800', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9400', '0.0000', '2021-09-09', '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 (32929, 236, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.3600', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.6000', '6.0000', '2021-09-09', 'received', '10.3600', '10.3600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (32930, 236, NULL, 2321, '80141429', 'MIST F.A.C', NULL, '2.5000', '3.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-09-09', 'received', '2.5000', '2.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (32949, NULL, NULL, 8135, '', '', 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 (32950, NULL, NULL, 7664, '', '', 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 (32951, NULL, NULL, 7391, '', '', 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 (32952, NULL, NULL, 1407, '', '', 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 (32953, NULL, NULL, 8448, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (32954, NULL, NULL, 7491, '', '', 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 (32955, NULL, NULL, 7757, '', '', 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 (32956, NULL, NULL, 9243, '', '', 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 (32957, NULL, NULL, 1690, '', '', 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 (32958, NULL, NULL, 7684, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-49.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32959, NULL, NULL, 7400, '', '', 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 (32960, NULL, NULL, 7639, '', '', 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 (32961, NULL, NULL, 7585, '', '', 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 (32962, NULL, NULL, 2975, '', '', 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 (32963, NULL, NULL, 8978, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32964, NULL, NULL, 8034, '', '', 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 (32965, NULL, NULL, 9267, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (32966, NULL, NULL, 7344, '', '', 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 (32967, NULL, NULL, 7526, '', '', 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 (32968, NULL, NULL, 2298, '', '', 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 (33000, 237, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '1.0000', '2021-09-09', '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 (33001, 237, NULL, 1613, 'PR-326', 'GYPRON SYR', NULL, '9.8500', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5500', '2.0000', '2021-09-09', '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 (33002, 237, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '19.7500', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '0.0000', '2021-09-09', 'received', '19.7500', '19.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (33003, 237, NULL, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '0.7300', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '22.0000', '2021-09-09', '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 (33004, 237, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '7.8000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2021-09-09', '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 (33005, 237, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.7600', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5200', '0.0000', '2021-09-09', 'received', '8.7600', '8.7600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (33006, 237, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5200', '0.0000', '2021-09-09', 'received', '8.7600', '8.7600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (33007, 237, NULL, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '16.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-09-09', '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 (33008, 237, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '39.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '2.0000', '2021-09-09', '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 (33009, 237, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0900', '9.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2700', '0.0000', '2021-09-09', 'received', '7.0900', '7.0900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (33010, 237, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '0.0000', '2021-09-09', '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 (33011, 237, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-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 (33012, 237, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '4.7300', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1900', '0.0000', '2021-09-09', 'received', '4.7300', '4.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (33013, 237, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0400', '10.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.6000', '16.0000', '2021-09-09', 'received', '7.0400', '7.0400', '40.0000', NULL, NULL, 1, 'pc', '40.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 (33014, 237, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '3.0000', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '13.0000', '2021-09-09', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (33015, 237, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '22.0000', '2021-09-09', 'received', '2.9200', '2.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (33016, 237, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9100', '0.0000', '2021-09-09', '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 (33017, 237, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '3.2700', '4.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '18.0000', '2021-09-09', 'received', '3.2700', '3.2700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (33018, 237, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '1.1300', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.3000', '10.0000', '2021-09-09', 'received', '1.1300', '1.1300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33019, 237, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '2.0000', '2021-09-09', 'received', '15.5000', '15.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (33020, 237, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.0400', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0800', '1.0000', '2021-09-09', 'received', '7.0400', '7.0400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (33021, 237, NULL, 8712, '2632', 'GUDAPET SRP', NULL, '7.0400', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0400', '1.0000', '2021-09-09', 'received', '7.0400', '7.0400', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33022, 237, NULL, 1696, 'PR-409', 'CYFEN SYR', NULL, '10.2900', '13.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5800', '2.0000', '2021-09-09', 'received', '10.2900', '10.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.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 (33023, 237, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.1900', '19.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7600', '4.0000', '2021-09-09', 'received', '14.1900', '14.1900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (33024, 237, 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-09-09', '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 (33025, 237, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '142.8300', '190.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '428.4900', '2.0000', '2021-09-09', 'received', '142.8300', '142.8300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '142.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 (33026, 237, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '5.0000', '2021-09-09', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33027, 237, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '38.0000', '2021-09-09', '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 (33028, 237, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1000', '7.0000', '2021-09-09', '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 (33029, 237, NULL, 2672, '46856001', 'ALDOMENT 250MGTAB 60\'S', NULL, '14.5000', '20.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '9.0000', '2021-09-09', 'received', '14.5000', '14.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (33030, 237, NULL, 8516, '2436', 'ALDOMET 250', NULL, '14.5000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '0.0000', '2021-09-09', 'received', '14.5000', '14.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33031, 237, NULL, 9497, '47344014', 'ALDOMET 500MG', NULL, '23.8000', '32.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.8000', '6.0000', '2021-09-09', 'received', '23.8000', '23.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '23.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 (33032, 237, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-09-09', '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 (33033, 237, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '6.0000', '2021-09-09', '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 (33034, 237, NULL, 2068, '79519848', 'LUFART DS', NULL, '12.1500', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.5000', '7.0000', '2021-09-09', '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 (33035, 237, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-09-09', '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 (33036, 237, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '4.0000', '2021-09-09', '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 (33037, 237, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5100', '1.0000', '2021-09-09', '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 (33038, 237, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '18.4200', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8400', '1.0000', '2021-09-09', 'received', '18.4200', '18.4200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (33039, 237, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '18.4200', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8400', '1.0000', '2021-09-09', 'received', '18.4200', '18.4200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (33040, 237, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.9500', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7500', '0.0000', '2021-09-09', '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 (33041, 237, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '14.0800', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2400', '0.0000', '2021-09-09', 'received', '14.0800', '14.0800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (33042, 237, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '518.0000', '12.0000', '2021-09-09', 'received', '25.9000', '25.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (33043, NULL, NULL, 7354, '', '', 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 (33044, NULL, NULL, 2313, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (33045, NULL, NULL, 8354, '', '', 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 (33060, 238, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '35.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-09-09', '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 (33061, 238, NULL, 8730, '2650', 'LONGRICH PASTE', NULL, '29.0000', '35.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2021-09-09', 'received', '29.0000', '29.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33062, 238, NULL, 7725, '1645', 'SOFTCARE WIPES', NULL, '7.0000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-09-09', '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 (33063, 238, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.0000', '6.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2021-09-09', '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 (33064, 238, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '4.5000', '8.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-09-09', 'received', '4.5000', '4.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (33065, 238, NULL, 1987, '6181100323665', 'SIVODERM POWDER', NULL, '5.5000', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2021-09-09', '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 (33066, 238, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '14.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2021-09-09', '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 (33067, 238, NULL, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '9.5000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '0.0000', '2021-09-09', 'received', '9.5000', '9.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33068, 238, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '9.5000', '12.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2021-09-09', '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 (33069, 238, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '5.5000', '7.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2021-09-09', '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 (33070, 238, NULL, 2516, '60491534', 'TENDRINA CREAM B/S', NULL, '9.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-09-09', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33071, 238, 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-09-09', '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 (33072, 238, NULL, 8566, '2486', 'SURE SPAY', NULL, '11.0000', '15.0000', '11.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.0000', '0.0000', '2021-09-09', 'received', '11.0000', '11.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (33073, 238, NULL, 3073, '85425535', 'CUSSIONS BABY POWDER S/S', NULL, '5.5000', '7.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '3.0000', '2021-09-09', '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 (33074, 238, NULL, 9498, '35784269', 'HONEY WORLD 200ML', NULL, '12.5000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-09-09', '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 (33075, 238, NULL, 9499, '12755178', 'HONEY WORLD 350ML', NULL, '22.0000', '29.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-09-09', '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 (33076, 235, NULL, 2539, '39255568', 'THERMOMETER DIGITAL', NULL, '15.0000', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2021-09-09', '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 (33077, 235, NULL, 9026, '2946', 'DIGITAL THERMOMETOR', NULL, '15.0000', '19.8000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2021-09-09', '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 (33078, 235, NULL, 9496, '70277717', 'ENAFEN SUSP 60ML', NULL, '3.8800', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4000', '0.0000', '2021-09-09', 'received', '3.8800', '3.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (33079, 235, NULL, 7557, '1477', 'DICLO INJ', NULL, '0.5000', '1.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-09-09', 'received', '0.5000', '0.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (33080, NULL, NULL, 9500, '', '', 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 (33081, NULL, NULL, 2818, '', '', 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 (33082, NULL, NULL, 3018, '', '', 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 (33083, NULL, NULL, 8915, '', '', 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 (33084, NULL, NULL, 7685, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (33085, NULL, NULL, 1974, '', '', 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 (33086, NULL, NULL, 8158, '', '', 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 (33087, NULL, NULL, 9313, '', '', 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 (33088, NULL, NULL, 8595, '', '', 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 (33089, NULL, NULL, 7619, '', '', 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 (33090, NULL, NULL, 8168, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (33091, NULL, NULL, 1532, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-47.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33092, NULL, NULL, 2490, '', '', 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 (33128, 239, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '5.7200', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1600', '1.0000', '2021-09-10', 'received', '5.7200', '5.7200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (33129, 239, NULL, 1697, '8904023403058', 'APETI SYRUP-GEO', NULL, '10.8000', '14.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '1.0000', '2021-09-10', 'received', '10.8000', '10.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (33130, 239, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.1300', '38.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5200', '0.0000', '2021-09-10', 'received', '28.1300', '28.1300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (33131, 239, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2000', '0.0000', '2021-09-10', '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 (33132, 239, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '19.7500', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '0.0000', '2021-09-10', 'received', '19.7500', '19.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (33133, 239, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '43.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.3600', '0.0000', '2021-09-10', 'received', '32.1800', '32.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (33134, 239, NULL, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-09-10', '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 (33135, 239, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-09-10', '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 (33136, 239, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '8.4500', '11.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.9000', '0.0000', '2021-09-10', 'received', '8.4500', '8.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (33137, 239, NULL, 8354, '2274', 'GLUCORANGE', NULL, '4.3000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9000', '2.0000', '2021-09-10', '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 (33138, 239, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '3.3000', '4.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '40.0000', '2021-09-10', 'received', '3.3000', '3.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (33139, 239, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '17.3400', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6800', '1.0000', '2021-09-10', '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 (33140, 239, NULL, 8274, '2194', 'DINAC 75', NULL, '8.4300', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2900', '3.0000', '2021-09-10', 'received', '8.4300', '8.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (33141, 239, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '0.0000', '2021-09-10', '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 (33142, 239, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2021-09-10', '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 (33143, 239, 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', '0.0000', '2021-09-10', '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 (33144, 239, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '1.0500', '1.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2500', '0.0000', '2021-09-10', 'received', '1.0500', '1.0500', '25.0000', NULL, NULL, 1, 'pc', '25.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 (33145, 239, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '3.2000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '0.0000', '2021-09-10', '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 (33146, 239, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.9000', '5.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8000', '1.0000', '2021-09-10', 'received', '3.9000', '3.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (33147, 239, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2021-09-10', '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 (33148, 239, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.7500', '0.0000', '2021-09-10', '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 (33149, 239, NULL, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-09-10', '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 (33150, 239, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.0000', '0.0000', '2021-09-10', 'received', '20.6000', '20.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33151, 239, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.3500', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '0.0000', '2021-09-10', '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 (33152, 239, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '17.9400', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '0.0000', '2021-09-10', '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 (33153, 239, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-09-10', '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 (33154, 239, 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', '0.0000', '2021-09-10', '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 (33155, 239, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2000', '3.0000', '2021-09-10', 'received', '3.4000', '3.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (33156, 239, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '25.0000', '33.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2021-09-10', '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 (33157, 239, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '39.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-09-10', '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 (33158, 239, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.6000', '0.0000', '2021-09-10', '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 (33159, 239, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-10', '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 (33160, 239, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-09-10', '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 (33161, 239, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '13.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-09-10', '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 (33162, 239, NULL, 9294, '3214', 'mercy soap', NULL, '3.4000', '4.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2000', '0.0000', '2021-09-10', 'received', '3.4000', '3.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (33163, 239, NULL, 9501, '30331101', 'FINE FINE MIXTURE', NULL, '14.0000', '19.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-09-10', '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 (33164, 239, NULL, 2661, '52395020', 'GACET 1G', NULL, '9.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-09-10', '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 (33165, 239, NULL, 1844, 'PR-557', 'LETAP AMPICLOX', NULL, '1.6300', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3000', '0.0000', '2021-09-10', 'received', '1.6300', '1.6300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33201, 241, NULL, 9460, '37461390', 'ZURION 30\'S S/S', NULL, '55.0000', '73.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-09-10', 'received', '55.0000', '55.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33202, 241, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.1000', '2.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '56.0000', '2021-09-10', '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 (33203, 241, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.6500', '1.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '55.0000', '2021-09-10', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (33204, 241, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '12.0000', '2021-09-10', '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 (33205, 241, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '4.6000', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '5.0000', '2021-09-10', '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 (33206, 241, NULL, 7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', NULL, '15.6000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '0.0000', '2021-09-10', 'received', '15.6000', '15.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (33207, 241, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '4.0000', '2021-09-10', '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 (33208, 241, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '18.8200', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4600', '2.0000', '2021-09-10', 'received', '18.8200', '18.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (33209, 241, NULL, 2952, '11288003', 'AMPICLOX ECL', NULL, '4.9800', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9400', '3.0000', '2021-09-10', '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 (33210, 241, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '33.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '0.0000', '2021-09-10', '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 (33211, 241, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '1.0000', '2021-09-10', '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 (33212, 241, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '5.5000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-09-10', '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 (33213, 241, NULL, 9461, '53270643', 'YOVANNY INHALER', NULL, '1.6000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '5.0000', '2021-09-10', 'received', '1.6000', '1.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (33214, 241, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '25.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-10', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33215, 241, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6700', '0.0000', '2021-09-10', 'received', '12.8900', '12.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (33216, 241, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '29.0000', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '3.0000', '2021-09-10', '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 (33217, 241, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3800', '2.0000', '2021-09-10', '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 (33218, 241, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-09-10', '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 (33219, 241, 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-09-10', '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 (33220, 241, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1300', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '6.0000', '2021-09-10', '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 (33221, 241, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '0.0000', '2021-09-10', '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 (33222, 241, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2021-09-10', '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 (33223, 241, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.3600', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.6000', '7.0000', '2021-09-10', 'received', '10.3600', '10.3600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (33224, 241, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '34.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2400', '2.0000', '2021-09-10', '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 (33225, 241, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2021-09-10', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33226, 241, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '0.0000', '2021-09-10', '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 (33227, 241, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.1900', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3800', '2.0000', '2021-09-10', 'received', '20.1900', '20.1900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (33228, 241, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '27.2300', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '2.0000', '2021-09-10', '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 (33229, 241, NULL, 9458, '31675978', 'CYPRON PLUS TABS', NULL, '1.9000', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '25.0000', '2021-09-10', 'received', '1.9000', '1.9000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (33230, 241, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-09-10', '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 (33231, 241, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-09-10', '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 (33232, 241, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '26.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-09-10', '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 (33233, 241, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '15.8000', '21.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.6000', '0.0000', '2021-09-10', 'received', '15.8000', '15.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (33234, 241, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '3.0000', '2021-09-10', '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 (33235, 241, 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-09-10', '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 (33236, 241, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.7000', '1.0000', '2021-09-10', '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 (33237, NULL, NULL, 2602, '', '', 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 (33238, NULL, NULL, 8437, '', '', 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 (33239, NULL, NULL, 7457, '', '', 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 (33240, NULL, NULL, 7776, '', '', 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 (33241, NULL, NULL, 9387, '', '', 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 (33242, NULL, NULL, 7464, '', '', 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 (33243, NULL, NULL, 8434, '', '', 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 (33244, NULL, NULL, 8664, '', '', 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 (33245, NULL, NULL, 8393, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33246, NULL, NULL, 8941, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-61.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33247, NULL, NULL, 1787, '', '', 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 (33248, NULL, NULL, 7820, '', '', 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 (33249, NULL, NULL, 8429, '', '', 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 (33250, NULL, NULL, 8037, '', '', 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 (33251, NULL, NULL, 7544, '', '', 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 (33252, NULL, NULL, 7900, '', '', 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 (33253, NULL, NULL, 7590, '', '', 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 (33254, NULL, NULL, 1867, '', '', 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 (33255, NULL, NULL, 9405, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (33339, 244, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2021-09-11', 'received', '2.8000', '2.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (33340, 244, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.2500', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '0.0000', '2021-09-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 (33341, 244, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '0.0000', '2021-09-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 (33342, 244, NULL, 1623, '5021265223398', 'PERFECTIL PLUS SKIN', NULL, '141.2000', '186.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '282.4000', '0.0000', '2021-09-11', 'received', '141.2000', '141.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '141.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 (33343, 244, NULL, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', NULL, '8.2000', '12.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8000', '3.0000', '2021-09-11', 'received', '8.2000', '8.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (33344, 244, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '43.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.3600', '0.0000', '2021-09-11', 'received', '32.1800', '32.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (33345, 244, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.5000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-09-11', '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 (33346, 244, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2800', '0.0000', '2021-09-11', '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 (33347, 244, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '8.6400', '11.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5600', '2.0000', '2021-09-11', 'received', '8.6400', '8.6400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.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 (33348, 244, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '6.0800', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2400', '0.0000', '2021-09-11', 'received', '6.0800', '6.0800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (33349, 244, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-09-11', '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 (33350, 244, NULL, 9503, '35154073', 'PELADOL EXTRA TAB', NULL, '2.0600', '2.7000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2000', '0.0000', '2021-09-11', 'received', '2.0600', '2.0600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (33351, 244, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2021-09-11', '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 (33352, 244, 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-09-11', '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 (33353, 244, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2021-09-11', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33354, 244, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.0100', '17.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.1000', '0.0000', '2021-09-11', 'received', '13.0100', '13.0100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33355, 244, NULL, 2955, '51481408', 'LONART TAB 24\'S', NULL, '4.8000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '10.0000', '2021-09-11', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33356, 244, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6700', '0.0000', '2021-09-11', '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 (33357, 244, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-09-11', '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 (33358, 244, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.8600', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5800', '0.0000', '2021-09-11', 'received', '7.8600', '7.8600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (33359, 244, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '3.9400', '5.2000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.2000', '0.0000', '2021-09-11', 'received', '3.9400', '3.9400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (33360, 244, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '39.6000', '52.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '0.0000', '2021-09-11', 'received', '39.6000', '39.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.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 (33361, 244, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-09-11', '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 (33362, 244, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '0.9900', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2021-09-11', '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 (33363, 244, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-09-11', '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 (33364, 244, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4600', '0.0000', '2021-09-11', '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 (33365, 244, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '0.0000', '2021-09-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 (33366, 244, NULL, 3018, '27169206', 'PARA SYR EXETER', NULL, '4.9100', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5500', '0.0000', '2021-09-11', 'received', '4.9100', '4.9100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33367, 244, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4600', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2021-09-11', 'received', '0.4600', '0.4600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (33368, 244, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1300', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '0.0000', '2021-09-11', '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 (33369, 244, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5100', '0.0000', '2021-09-11', '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 (33370, 244, NULL, 9336, '3256', 'WIDALUM SUSP', NULL, '4.9500', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '0.0000', '2021-09-11', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (33371, 244, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6100', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8300', '0.0000', '2021-09-11', 'received', '6.6100', '6.6100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (33372, 244, NULL, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', NULL, '9.3600', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0800', '1.0000', '2021-09-11', '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 (33373, 244, NULL, 2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '13.0000', '2021-09-11', '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 (33374, 244, NULL, 2004, '44696495', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 8ML', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-11', '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 (33375, 244, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9000', '0.0000', '2021-09-11', '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 (33376, 244, NULL, 2967, '73607781', 'HONEY MEADOW 250ML', NULL, '10.0000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-09-11', '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 (33377, 244, NULL, 2968, '59467858', 'HONEY MEADOW 500ML', NULL, '18.0000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '6.0000', '2021-09-11', '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 (33378, 244, NULL, 2509, '01336804', 'VENTOLIN SYRUP 100ML', NULL, '24.5800', '32.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7400', '3.0000', '2021-09-11', 'received', '24.5800', '24.5800', '3.0000', NULL, NULL, 1, 'pc', '3.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 (33386, 245, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.8400', '10.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.8000', '20.0000', '2021-09-11', 'received', '7.8400', '7.8400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (33387, 245, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2021-09-11', 'received', '7.0000', '7.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33388, 245, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '24.0000', '2021-09-11', '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 (33389, 245, NULL, 8276, '2196', 'AZILEX 250', NULL, '11.8200', '15.6000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-09-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 (33390, 245, NULL, 3075, '91908705', 'CUSSIONS BABY SOAP', NULL, '2.0000', '3.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '6.0000', '2021-09-11', '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 (33391, 245, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '8.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2021-09-11', '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 (33392, 245, NULL, 3076, '57849888', 'CUSSIONS BABY OIL S/S', NULL, '5.0000', '7.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '2.0000', '2021-09-11', '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 (33393, 245, NULL, 9504, '35327913', 'BABYFACE CLEANSER', NULL, '7.0000', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '4.0000', '2021-09-11', '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 (33394, NULL, NULL, 8193, '', '', 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 (33395, NULL, NULL, 8991, '', '', 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 (33396, NULL, NULL, 8772, '', '', 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 (33397, NULL, NULL, 7693, '', '', 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 (33398, NULL, NULL, 2224, '', '', 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 (33399, NULL, NULL, 9150, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (33400, NULL, NULL, 2950, '', '', 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 (33401, NULL, NULL, 9048, '', '', 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 (33405, NULL, NULL, 2989, '', '', 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 (33406, NULL, NULL, 8773, '', '', 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 (33407, NULL, NULL, 8498, '', '', 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 (33408, NULL, NULL, 9092, '', '', 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 (33409, NULL, NULL, 7533, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (33410, NULL, NULL, 7892, '', '', 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 (33411, NULL, NULL, 7839, '', '', 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 (33412, NULL, NULL, 8175, '', '', 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 (33514, 246, NULL, 2973, '43393257', 'ALKA SELTZER 10.S', NULL, '3.2000', '4.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '18.0000', '2021-09-11', 'received', '3.2000', '3.2000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (33515, 246, NULL, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', NULL, '49.8500', '65.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8500', '1.0000', '2021-09-11', 'received', '49.8500', '49.8500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.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 (33516, 246, NULL, 7874, '1794', 'ABIDEC', NULL, '48.9800', '65.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.9400', '0.0000', '2021-09-11', 'received', '48.9800', '48.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '48.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 (33517, 246, NULL, 9456, '13527138', 'INOPRIL OM&J', NULL, '3.3200', '5.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2021-09-11', 'received', '3.3200', '3.3200', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '3.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 (33518, 246, NULL, 7752, '1672', 'HYDROGEN LOCAL', NULL, '3.0000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-09-11', '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 (33519, 246, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-09-11', '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 (33520, 246, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.3300', '0.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '33.0000', '2021-09-11', 'received', '0.3300', '0.3300', '60.0000', NULL, NULL, 1, 'pc', '60.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 (33521, 246, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '16.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.8400', '10.0000', '2021-09-11', 'received', '11.8200', '11.8200', '12.0000', NULL, NULL, 1, 'pc', '12.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 (33522, 246, NULL, 8276, '2196', 'AZILEX 250', NULL, '11.8200', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8200', '0.0000', '2021-09-11', 'received', '11.8200', '11.8200', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33523, 246, NULL, 8844, '2764', 'FEROFIX', NULL, '4.8500', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5500', '0.0000', '2021-09-11', 'received', '4.8500', '4.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (33524, 246, NULL, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', NULL, '12.6000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '3.0000', '2021-09-11', 'received', '12.6000', '12.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (33525, 246, NULL, 7631, '1551', 'ZINNAT SUSP100ML', NULL, '84.7900', '112.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.5800', '1.0000', '2021-09-11', 'received', '84.7900', '84.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '84.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 (33526, 246, NULL, 8885, '2805', 'ZINNAT SUSP 50 ML', NULL, '56.5300', '75.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0600', '1.0000', '2021-09-11', 'received', '56.5300', '56.5300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '56.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 (33527, 246, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '2.0000', '2021-09-11', '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 (33528, 246, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '3.6000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2021-09-11', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33529, 246, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-09-11', '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 (33530, 246, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.4000', '0.0000', '2021-09-11', 'received', '4.4000', '4.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33531, 246, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '3.8100', '4.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.8100', '0.0000', '2021-09-11', 'received', '3.8100', '3.8100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.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 (33532, 246, NULL, 9505, '13744415', 'WELLMAN PLUS', NULL, '77.0000', '102.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '0.0000', '2021-09-11', 'received', '77.0000', '77.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '77.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33533, 246, NULL, 9506, '28501629', 'SALBUTAMOL SYRUP ', NULL, '4.9800', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9400', '1.0000', '2021-09-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 (33534, 246, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9400', '3.0000', '2021-09-11', 'received', '14.9800', '14.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (33535, 246, NULL, 9507, '99862596', 'BENYLIN CHESTY COUGH', NULL, '42.8000', '56.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.4000', '3.0000', '2021-09-11', 'received', '42.8000', '42.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '42.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 (33536, 246, NULL, 3020, '56022580', 'ARZIGLOBIN SYR', NULL, '11.9900', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9700', '3.0000', '2021-09-11', 'received', '11.9900', '11.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (33537, 246, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '7.8900', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4500', '5.0000', '2021-09-11', '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 (33538, 246, NULL, 8720, '2640', 'ZINVITE SRP', NULL, '7.8900', '11.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8900', '0.0000', '2021-09-11', 'received', '7.8900', '7.8900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33539, 246, NULL, 9476, '01480261', 'ABSTA SYR', NULL, '8.0000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2021-09-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 (33540, 246, NULL, 7620, '1540', 'LA WASH', NULL, '9.3100', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9300', '0.0000', '2021-09-11', 'received', '9.3100', '9.3100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (33541, 246, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-11', '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 (33554, NULL, NULL, 7321, '', '', 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 (33555, NULL, NULL, 7791, '', '', 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 (33556, NULL, NULL, 9119, '', '', 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 (33557, NULL, NULL, 2295, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-62.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33558, NULL, NULL, 7671, '', '', 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 (33559, NULL, NULL, 7359, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (33560, NULL, NULL, 8476, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33561, NULL, NULL, 9214, '', '', 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 (33562, NULL, NULL, 7335, '', '', 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 (33563, NULL, NULL, 1793, '', '', 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 (33564, NULL, NULL, 2255, '', '', 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 (33607, NULL, NULL, 8594, '', '', 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 (33608, NULL, NULL, 9461, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33609, NULL, NULL, 9469, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (33610, NULL, NULL, 8769, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33611, NULL, NULL, 3058, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33703, 247, NULL, 1353, '5060085540254', 'SELEVITE TABS', NULL, '22.6500', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.2500', '5.0000', '2021-09-11', 'received', '22.6500', '22.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (33704, 247, NULL, 8355, '2275', 'SELEVITE', NULL, '22.0000', '30.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-09-11', 'received', '22.0000', '22.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33705, 247, NULL, 1549, '610074245209', 'LAVET', NULL, '15.2000', '21.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2000', '0.0000', '2021-09-11', 'received', '15.2000', '15.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '15.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 (33706, 247, NULL, 8913, '2833', 'LAVET', NULL, '15.1700', '21.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.3400', '0.0000', '2021-09-11', 'received', '15.1700', '15.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (33707, 247, NULL, 8311, '2231', 'SILVERBIRD', NULL, '12.5900', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.1800', '2.0000', '2021-09-11', 'received', '12.5900', '12.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (33708, 247, NULL, 7360, '1280', 'BORGES250ML', NULL, '10.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-09-11', '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 (33709, 247, NULL, 8714, '2634', 'COLDRILIEF SRP', NULL, '5.2100', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.1000', '0.0000', '2021-09-11', 'received', '5.2100', '5.2100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33710, 247, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7700', '2.0000', '2021-09-11', '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 (33711, 247, NULL, 3054, '23818302', 'AZIRON 500MG TABS', NULL, '67.0000', '88.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '1.0000', '2021-09-11', 'received', '67.0000', '67.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '67.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33712, 247, NULL, 9193, '3113', 'AZIRON 500MG TABS', NULL, '6.7400', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.4000', '0.0000', '2021-09-11', 'received', '6.7400', '6.7400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (33713, 247, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '21.7700', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3100', '0.0000', '2021-09-11', 'received', '21.7700', '21.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (33714, 247, NULL, 7445, '1365', 'CIROTAMIN SRP', NULL, '7.9900', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9500', '4.0000', '2021-09-11', 'received', '7.9900', '7.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33715, 247, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '1.9000', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-09-11', '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 (33716, 247, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '1.9000', '3.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.9000', '0.0000', '2021-09-11', 'received', '1.9000', '1.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33717, 247, NULL, 8328, '2248', 'GOFEX', NULL, '8.1000', '11.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2000', '0.0000', '2021-09-11', 'received', '8.1000', '8.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (33718, 247, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '11.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8000', '1.0000', '2021-09-11', 'received', '7.8000', '7.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33719, 247, NULL, 9150, '3070', 'MYCOCORT CREAM', NULL, '19.0000', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-09-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 (33720, 247, NULL, 7370, '1290', 'BELLS BABY COUGH', NULL, '12.1100', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.4400', '0.0000', '2021-09-11', 'received', '12.1100', '12.1100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '12.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 (33721, 247, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.3000', '1.5000', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '390.0000', '0.0000', '2021-09-11', 'received', '1.3000', '1.3000', '300.0000', NULL, NULL, 1, 'pc', '300.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 (33722, 247, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.6300', '2.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.3400', '14.0000', '2021-09-11', 'received', '1.6300', '1.6300', '18.0000', NULL, NULL, 1, 'pc', '18.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 (33723, 247, NULL, 9509, '40711800', 'FOLIC ACID (P NOVA)', NULL, '0.2500', '0.5000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '200.0000', '2021-09-11', 'received', '0.2500', '0.2500', '200.0000', NULL, NULL, 1, 'pc', '200.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 (33724, 247, NULL, 9330, '3250', 'APETATRUST', NULL, '9.2100', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0500', '0.0000', '2021-09-11', 'received', '9.2100', '9.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (33725, 247, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.3000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '138.0000', '2021-09-11', 'received', '0.2400', '0.2400', '200.0000', NULL, NULL, 1, 'pc', '200.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 (33726, 247, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.2200', '0.5000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '19.0000', '2021-09-11', 'received', '0.2200', '0.2200', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.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 (33727, 247, NULL, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '1.3800', '4.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.6000', '87.0000', '2021-09-11', 'received', '1.3800', '1.3800', '120.0000', NULL, NULL, 1, 'pc', '120.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 (33728, 247, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '6.3900', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9500', '0.0000', '2021-09-11', 'received', '6.3900', '6.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (33729, 247, NULL, 1698, 'PR-411', 'ODYMIN SYR', NULL, '8.4500', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2500', '1.0000', '2021-09-11', 'received', '8.4500', '8.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (33730, 247, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '16.0000', '2021-09-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 (33731, 247, NULL, 3019, '72127749', 'HEPTOLIFE SYR 200ML', NULL, '7.8000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '4.0000', '2021-09-11', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33732, 247, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '15.5000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '0.0000', '2021-09-11', '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 (33733, 247, NULL, 8622, '2542', 'DEXONE', NULL, '1.3100', '3.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.9600', '5.0000', '2021-09-11', 'received', '1.3100', '1.3100', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '1.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 (33734, 247, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7700', '1.0000', '2021-09-11', '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 (33735, 247, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '3.9000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.7000', '3.0000', '2021-09-11', 'received', '3.9000', '3.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (33736, 247, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '4.9000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '1.0000', '2021-09-11', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33737, 247, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6600', '2.0000', '2021-09-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 (33738, 247, NULL, 8158, '2078', 'SUPIROCIN', NULL, '24.9000', '33.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2021-09-11', 'received', '24.9000', '24.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (33739, 247, NULL, 7338, '1258', 'NIZORAL CREAM', NULL, '23.1300', '31.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3900', '1.0000', '2021-09-11', '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 (33740, 247, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-09-11', '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 (33741, 247, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '7.8900', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4500', '5.0000', '2021-09-11', '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 (33742, 247, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '5.4200', '7.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.4000', '20.0000', '2021-09-11', '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 (33743, 247, NULL, 7736, '1656', 'NUGEL -O', NULL, '15.0000', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-09-11', '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 (33744, 247, NULL, 9510, '60852266', 'QUINNE SULPHATE TAB', NULL, '31.5200', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0400', '0.0000', '2021-09-11', '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 (33745, 247, NULL, 8406, '2326', 'LIQUID PARRAFIN', NULL, '6.7300', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1900', '3.0000', '2021-09-11', 'received', '6.7300', '6.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (33746, 247, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '3.2700', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '3.0000', '2021-09-11', 'received', '3.2700', '3.2700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (33747, 247, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '46.3000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.6000', '0.0000', '2021-09-11', 'received', '46.3000', '46.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.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 (33748, 247, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.6000', '41.0000', '2021-09-11', 'received', '1.8600', '1.8600', '60.0000', NULL, NULL, 1, 'pc', '60.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 (33749, 247, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.0000', '17.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '390.0000', '30.0000', '2021-09-11', 'received', '13.0000', '13.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (33750, 247, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '19.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2021-09-11', '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 (33751, 247, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5700', '3.0000', '2021-09-11', '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 (33752, 247, NULL, 7906, '1826', 'MASADA', NULL, '7.8800', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '0.0000', '2021-09-11', '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 (33753, 247, NULL, 9511, '96030287', 'INFA V WASH', NULL, '15.7600', '21.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5200', '0.0000', '2021-09-11', 'received', '15.7600', '15.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (33754, 247, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.1500', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.7500', '3.0000', '2021-09-11', 'received', '16.1500', '16.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (33755, 247, NULL, 9456, '13527138', 'INOPRIL OM&J', NULL, '3.3200', '5.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2021-09-11', 'received', '3.3200', '3.3200', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '3.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 (33756, 247, NULL, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '8.8900', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.3400', '3.0000', '2021-09-11', 'received', '8.8900', '8.8900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (33757, NULL, NULL, 8127, '', '', 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 (33758, NULL, NULL, 8972, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (33759, NULL, NULL, 8810, '', '', 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 (33760, NULL, NULL, 7762, '', '', 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 (33761, NULL, NULL, 7587, '', '', 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 (33762, NULL, NULL, 8154, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-63.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33786, 248, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-12', '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 (33787, 248, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.8200', '10.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.2000', '0.0000', '2021-09-12', 'received', '7.8200', '7.8200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33788, 248, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.0000', '13.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-09-12', '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 (33789, 248, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-09-12', '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 (33790, 248, NULL, 7814, '1734', 'GIVERS P CAPS', NULL, '18.5000', '25.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.5000', '3.0000', '2021-09-12', 'received', '18.5000', '18.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33791, 248, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '18.4200', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4200', '0.0000', '2021-09-12', 'received', '18.4200', '18.4200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '18.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 (33792, 248, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.0000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-09-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 (33793, 248, NULL, 7787, '1707', 'FLUREST', NULL, '10.9000', '13.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '0.0000', '2021-09-12', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33794, 248, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.0700', '4.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.5000', '17.0000', '2021-09-12', '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 (33795, 248, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '28.5500', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.6500', '0.0000', '2021-09-12', 'received', '28.5500', '28.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (33796, 248, 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-09-12', '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 (33797, 248, NULL, 9512, '55229207', 'SUPER APETI PLUS TAB', NULL, '1.3100', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.5000', '44.0000', '2021-09-12', 'received', '1.3100', '1.3100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (33798, 248, NULL, 9513, '46545234', 'GLUCO NAF C', NULL, '6.8300', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4900', '2.0000', '2021-09-12', 'received', '6.8300', '6.8300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (33799, 248, NULL, 2467, '97164110', 'LISINOPRIL 20MG TAB UK', NULL, '19.8000', '26.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '3.0000', '2021-09-12', 'received', '19.8000', '19.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33800, 248, NULL, 8242, '2162', 'E PANOL', NULL, '3.5000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '2.0000', '2021-09-12', '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 (33801, 248, NULL, 1724, '7321839722165', 'ATACAND PLUS TABLETS 16/12.5 28\'', NULL, '141.7100', '187.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.7100', '1.0000', '2021-09-12', 'received', '141.7100', '141.7100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '141.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 (33802, 248, NULL, 7433, '1353', 'ZESTRIL 20MG', NULL, '4.6000', '6.5000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.8000', '16.0000', '2021-09-12', 'received', '4.6000', '4.6000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (33803, 248, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '12.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2021-09-12', '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 (33804, 248, NULL, 7411, '1331', 'CITRO C', NULL, '1.3500', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-09-12', 'received', '1.3500', '1.3500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (33805, 248, NULL, 7355, '1275', 'BIOFERON SRP', NULL, '19.4600', '27.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.3000', '3.0000', '2021-09-12', 'received', '19.4600', '19.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (33806, 248, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '27.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.7000', '0.0000', '2021-09-12', '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 (33807, 248, NULL, 9339, '3259', 'LIVERTONE BLOOD TONIC', NULL, '7.2200', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6600', '3.0000', '2021-09-12', 'received', '7.2200', '7.2200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (33808, 248, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '8.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-09-12', '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 (33809, 248, NULL, 7415, '1335', 'CONGESTYL TAB', NULL, '5.9100', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5500', '0.0000', '2021-09-12', 'received', '5.9100', '5.9100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33810, 248, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '4.9600', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.6000', '0.0000', '2021-09-12', 'received', '4.9600', '4.9600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (33811, 248, NULL, 7963, '1883', 'HEPTO PEP', NULL, '14.7000', '19.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2021-09-12', 'received', '14.7000', '14.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (33812, 248, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '3.9600', '5.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2021-09-12', 'received', '3.9600', '3.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (33813, 248, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.3000', '0.0000', '2021-09-12', 'received', '3.5100', '3.5100', '30.0000', NULL, NULL, 1, 'pc', '30.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 (33814, 248, NULL, 7558, '1478', 'DORETA', NULL, '1.9700', '3.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.2000', '0.0000', '2021-09-12', 'received', '1.9700', '1.9700', '60.0000', NULL, NULL, 1, 'pc', '60.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 (33815, 248, NULL, 7401, '1321', 'WELLBABY MULTI-VIT LIQ', NULL, '57.9000', '77.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.8000', '0.0000', '2021-09-12', 'received', '57.9000', '57.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.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 (33816, 248, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '259.0000', '0.0000', '2021-09-12', 'received', '25.9000', '25.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (33817, 248, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.5000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2021-09-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 (33818, 248, 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-09-12', '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 (33819, 248, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.4000', '27.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2021-09-12', 'received', '20.4000', '20.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (33820, 248, NULL, 2934, '74475924', 'O YES FEMINNE WASH 60ML', NULL, '9.8000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '3.0000', '2021-09-12', '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 (33821, 248, NULL, 8534, '2454', 'PILIEF TAB', NULL, '22.0000', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-09-12', '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 (33822, 248, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '2.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '12.0000', '2021-09-12', '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 (33823, 248, NULL, 9028, '2948', 'PROMETHAZINE SRUP', NULL, '2.5000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '7.0000', '2021-09-12', '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 (33824, 248, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '4.1000', '6.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2021-09-12', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (33825, 248, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-09-12', '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 (33833, NULL, NULL, 7358, '', '', 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 (33847, NULL, NULL, 2646, '', '', 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 (33848, NULL, NULL, 8136, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34004, 240, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.0000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-09-10', '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 (34005, 240, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6800', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-09-10', 'received', '0.6800', '0.6800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (34006, 240, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6000', '0.0000', '2021-09-10', 'received', '1.7300', '1.7300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (34007, 240, 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-09-10', '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 (34008, 240, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-09-10', '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 (34009, 240, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '10.2900', '13.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5800', '0.0000', '2021-09-10', 'received', '10.2900', '10.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.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 (34010, 240, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6500', '0.0000', '2021-09-10', 'received', '4.5500', '4.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (34011, 240, NULL, 1697, '8904023403058', 'APETI SYRUP-GEO', NULL, '10.8000', '14.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '2.0000', '2021-09-10', 'received', '10.8000', '10.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34012, 240, NULL, 1559, 'PR-272', 'SIRDALUD 4MG', NULL, '31.5000', '42.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-09-10', '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 (34013, 240, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '21.8900', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.4500', '0.0000', '2021-09-10', 'received', '21.8900', '21.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (34014, 240, 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', '0.0000', '2021-09-10', '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 (34015, 240, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '20.5000', '27.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2021-09-10', 'received', '20.5000', '20.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34016, 240, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '0.0000', '2021-09-10', '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 (34017, 240, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '3.0000', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '6.0000', '2021-09-10', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (34018, 240, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-09-10', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (34019, 240, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '9.0000', '2021-09-10', '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 (34020, 240, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '53.3200', '71.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.3200', '0.0000', '2021-09-10', 'received', '53.3200', '53.3200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '53.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 (34021, 240, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '43.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.1800', '0.0000', '2021-09-10', 'received', '32.1800', '32.1800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '32.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 (34022, 240, NULL, 1844, 'PR-557', 'LETAP AMPICLOX', NULL, '1.6300', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3000', '0.0000', '2021-09-10', 'received', '1.6300', '1.6300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (34023, 240, NULL, 8622, '2542', 'DEXONE', NULL, '1.3100', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.9300', '0.0000', '2021-09-10', 'received', '1.3100', '1.3100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '1.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 (34024, 240, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2021-09-10', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (34025, 240, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.2200', '0.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-09-10', 'received', '0.2200', '0.2200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (34026, 240, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-09-10', '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 (34027, 240, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-09-10', '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 (34028, 240, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.6800', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0400', '0.0000', '2021-09-10', 'received', '10.6800', '10.6800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (34029, 240, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.8800', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5200', '2.0000', '2021-09-10', 'received', '4.8800', '4.8800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.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 (34030, 240, NULL, 9028, '2948', 'PROMETHAZINE SRUP', NULL, '2.5000', '3.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '1.0000', '2021-09-10', '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 (34031, 240, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.0400', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.1200', '0.0000', '2021-09-10', 'received', '8.0400', '8.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (34032, 240, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3200', '0.0000', '2021-09-10', '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 (34033, 240, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '23.6800', '31.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3600', '0.0000', '2021-09-10', 'received', '23.6800', '23.6800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (34034, 240, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.0100', '17.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.1000', '0.0000', '2021-09-10', 'received', '13.0100', '13.0100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (34035, 240, 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-09-10', '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 (34036, 240, NULL, 9413, '3333', 'MALAR 2 DS', NULL, '7.9000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '1.0000', '2021-09-10', 'received', '7.9000', '7.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (34037, 240, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2021-09-10', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (34038, 240, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '0.0000', '2021-09-10', '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 (34039, 240, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '6.0000', '2021-09-10', '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 (34040, NULL, NULL, 8654, '', '', 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 (34058, NULL, NULL, 1377, '', '', 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 (34059, NULL, NULL, 7824, '', '', 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 (34060, NULL, NULL, 7961, '', '', 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 (34061, NULL, NULL, 2618, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34062, NULL, NULL, 1888, '', '', 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 (34158, NULL, NULL, 7584, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (34159, NULL, NULL, 2371, '', '', 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 (34160, NULL, NULL, 7635, '', '', 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 (34161, NULL, NULL, 7334, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (34162, NULL, NULL, 8502, '', '', 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 (34163, NULL, NULL, 8444, '', '', 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 (34164, NULL, NULL, 7692, '', '', 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 (34165, NULL, NULL, 8341, '', '', 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 (34166, NULL, NULL, 1533, '', '', 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 (34167, NULL, NULL, 1469, '', '', 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 (34168, NULL, NULL, 8322, '', '', 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 (34169, NULL, NULL, 7880, '', '', 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 (34170, NULL, NULL, 7664, '', '', 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 (34171, NULL, NULL, 9019, '', '', 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 (34172, NULL, NULL, 8938, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34173, NULL, NULL, 7815, '', '', 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 (34174, NULL, NULL, 8535, '', '', 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 (34175, NULL, NULL, 7369, '', '', 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 (34176, NULL, NULL, 9265, '', '', 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 (34177, NULL, NULL, 8481, '', '', 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 (34178, NULL, NULL, 7713, '', '', 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 (34179, NULL, NULL, 7339, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-231.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34180, NULL, NULL, 7459, '', '', 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 (34181, NULL, NULL, 8102, '', '', 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 (34182, NULL, NULL, 9254, '', '', 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 (34183, NULL, NULL, 8975, '', '', 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 (34184, NULL, NULL, 7728, '', '', 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 (34185, NULL, NULL, 7324, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34186, NULL, NULL, 7342, '', '', 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 (34187, NULL, NULL, 8032, '', '', 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 (34188, NULL, NULL, 7678, '', '', 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 (34189, NULL, NULL, 2121, '', '', 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 (34190, NULL, NULL, 8325, '', '', 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 (34191, NULL, NULL, 2851, '', '', 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 (34192, NULL, NULL, 1989, '', '', 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 (34193, NULL, NULL, 2258, '', '', 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 (34194, NULL, NULL, 2811, '', '', 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 (34195, NULL, NULL, 1447, '', '', 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 (34196, NULL, NULL, 8759, '', '', 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 (34197, NULL, NULL, 7762, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (34198, NULL, NULL, 9207, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34199, NULL, NULL, 8340, '', '', 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 (34200, NULL, NULL, 7554, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-160.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34201, NULL, NULL, 7736, '', '', 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 (34202, NULL, NULL, 7921, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (34203, NULL, NULL, 2357, '', '', 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 (34204, NULL, NULL, 2519, '', '', 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 (34205, NULL, NULL, 7643, '', '', 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 (34206, NULL, NULL, 9084, '', '', 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 (34207, NULL, NULL, 9214, '', '', 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 (34208, NULL, NULL, 1757, '', '', 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 (34209, NULL, NULL, 3016, '', '', 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 (34210, NULL, NULL, 7638, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (34211, NULL, NULL, 9163, '', '', 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 (34212, NULL, NULL, 1489, '', '', 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 (34213, NULL, NULL, 7317, '', '', 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 (34214, NULL, NULL, 9393, '', '', 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 (34215, NULL, NULL, 2477, '', '', 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 (34216, NULL, NULL, 2876, '', '', 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 (34217, NULL, NULL, 8476, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34218, NULL, NULL, 2092, '', '', 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 (34219, NULL, NULL, 7380, '', '', 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 (34220, NULL, NULL, 9271, '', '', 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 (34221, NULL, NULL, 8614, '', '', 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 (34222, NULL, NULL, 7425, '', '', 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 (34223, NULL, NULL, 2155, '', '', 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 (34224, NULL, NULL, 9391, '', '', 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 (34225, NULL, NULL, 7558, '', '', 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 (34226, NULL, NULL, 7559, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (34227, NULL, NULL, 8765, '', '', 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 (34228, NULL, NULL, 7866, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34229, NULL, NULL, 8195, '', '', 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 (34230, NULL, NULL, 7965, '', '', 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 (34231, NULL, NULL, 9400, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34232, NULL, NULL, 2392, '', '', 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 (34233, NULL, NULL, 1763, '', '', 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 (34234, NULL, NULL, 2070, '', '', 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 (34235, NULL, NULL, 9029, '', '', 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 (34236, NULL, NULL, 9478, '', '', 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 (34237, NULL, NULL, 7473, '', '', 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 (34238, NULL, NULL, 8319, '', '', 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 (34239, NULL, NULL, 7368, '', '', 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 (34240, NULL, NULL, 1367, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34241, NULL, NULL, 8039, '', '', 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 (34242, NULL, NULL, 8166, '', '', 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 (34243, NULL, NULL, 7980, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-128.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34244, NULL, NULL, 8153, '', '', 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 (34245, NULL, NULL, 8851, '', '', 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 (34246, NULL, NULL, 8872, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34247, NULL, NULL, 7469, '', '', 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 (34248, NULL, NULL, 7394, '', '', 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 (34249, NULL, NULL, 8802, '', '', 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 (34250, NULL, NULL, 8481, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34251, NULL, NULL, 8217, '', '', 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 (34252, NULL, NULL, 9146, '', '', 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 (34253, NULL, NULL, 9291, '', '', 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 (34254, NULL, NULL, 8200, '', '', 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 (34270, NULL, NULL, 8883, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (34271, NULL, NULL, 8680, '', '', 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 (34272, NULL, NULL, 2662, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (34411, 243, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '75.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '34.0000', '2021-09-11', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (34412, 243, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2000', '2.0000', '2021-09-11', '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 (34413, 243, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '26.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.0000', '3.0000', '2021-09-11', 'received', '18.5000', '18.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (34414, 243, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.9500', '2.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2021-09-11', 'received', '2.9500', '2.9500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (34415, 243, NULL, 2457, '33345179', 'PILIEF TABS', NULL, '22.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2021-09-11', '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 (34416, 243, 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-09-11', '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 (34417, 243, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '9.2800', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8400', '1.0000', '2021-09-11', 'received', '9.2800', '9.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (34418, 243, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '22.8600', '30.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.4400', '0.0000', '2021-09-11', 'received', '22.8600', '22.8600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '22.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 (34419, 243, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-11', '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 (34420, 243, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.0000', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-09-11', '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 (34421, 243, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2021-09-11', '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 (34422, 243, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '1.1300', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '25.0000', '2021-09-11', '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 (34423, 243, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '48.0200', '63.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0400', '0.0000', '2021-09-11', 'received', '48.0200', '48.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '48.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 (34424, 243, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '87.1300', '115.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.2600', '1.0000', '2021-09-11', 'received', '87.1300', '87.1300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34425, 243, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.4900', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.9000', '10.0000', '2021-09-11', '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 (34426, 243, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '33.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.3200', '1.0000', '2021-09-11', 'received', '25.3300', '25.3300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34427, 243, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '7.0000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '6.0000', '2021-09-11', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (34428, 243, NULL, 9502, '43630736', 'OPIZOLE CAP ', NULL, '10.0500', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0500', '0.0000', '2021-09-11', 'received', '10.0500', '10.0500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.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 (34429, 243, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4000', '7.0000', '2021-09-11', 'received', '2.8000', '2.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (34430, 243, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2021-09-11', '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 (34431, 243, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '7.0000', '2021-09-11', '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 (34432, 243, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-09-11', '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 (34433, 243, NULL, 9517, '80335744', 'RUBBING ALCOHOL SPRAY 750', NULL, '18.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-09-11', 'received', '18.0000', '18.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34434, 243, NULL, 9518, '29126003', 'RUBBING ALCOHOL SPRAY 500ML', NULL, '15.0000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2021-09-11', '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 (34435, 243, NULL, 9519, '8242102', 'RUBBING ALCOHOL', NULL, '12.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2021-09-11', '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 (34475, NULL, NULL, 1908, '', '', 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 (34476, NULL, NULL, 1401, '', '', 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 (34477, NULL, NULL, 9412, '', '', 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 (34478, NULL, NULL, 8597, '', '', 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 (34479, NULL, NULL, 7477, '', '', 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 (34480, NULL, NULL, 7723, '', '', 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 (34481, NULL, NULL, 9174, '', '', 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 (34482, NULL, NULL, 2430, '', '', 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 (34483, NULL, NULL, 1819, '', '', 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 (34484, NULL, NULL, 8666, '', '', 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 (34485, NULL, NULL, 1622, '', '', 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 (34486, NULL, NULL, 8658, '', '', 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 (34487, NULL, NULL, 7722, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34488, NULL, NULL, 8312, '', '', 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 (34489, NULL, NULL, 8008, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34490, NULL, NULL, 1881, '', '', 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 (34491, 249, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2021-09-12', '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 (34492, 249, NULL, 9514, '70994315', 'SAVELON 500MG', NULL, '21.0000', '29.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '4.0000', '2021-09-12', 'received', '21.0000', '21.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34493, 249, NULL, 8422, '2342', 'TCP', NULL, '34.8900', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.7800', '0.0000', '2021-09-12', 'received', '34.8900', '34.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.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 (34494, 249, NULL, 7558, '1478', 'DORETA', NULL, '1.9700', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.8000', '0.0000', '2021-09-12', 'received', '1.9700', '1.9700', '40.0000', NULL, NULL, 1, 'pc', '40.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 (34495, 249, NULL, 8843, '2763', 'GALVUS 50MG', NULL, '40.0000', '53.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '2.0000', '2021-09-12', 'received', '40.0000', '40.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34496, 249, NULL, 1681, 'PR-394', 'GALVUS 50MG', NULL, '36.8000', '53.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8000', '1.0000', '2021-09-12', 'received', '36.8000', '36.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34497, 249, NULL, 9167, '3087', 'NORMO TEARS EYE DROP', NULL, '11.9000', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.0000', '7.0000', '2021-09-12', 'received', '11.9000', '11.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (34498, 249, NULL, 7431, '1351', 'CIPROLEX TZ', NULL, '18.0000', '24.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '4.0000', '2021-09-12', '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 (34499, 249, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '4.0000', '2021-09-12', '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 (34500, 249, NULL, 7427, '1347', 'AZOMAX 500', NULL, '25.0000', '45.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-09-12', '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 (34501, 249, NULL, 7912, '1832', 'FLUXAMOX SRP', NULL, '7.9800', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2021-09-12', '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 (34502, 249, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '28.7000', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7000', '1.0000', '2021-09-12', 'received', '28.7000', '28.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34503, 249, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '0.0000', '2021-09-12', 'received', '2.9200', '2.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (34504, 249, NULL, 9515, '03442188', 'CALCI D DENK 1000/880', NULL, '72.3200', '95.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.6400', '1.0000', '2021-09-12', 'received', '72.3200', '72.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '72.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 (34505, 249, NULL, 1364, '5021265244447', 'WELLWOMAN CAPS 70+', NULL, '27.0000', '35.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-09-12', 'received', '27.0000', '27.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34506, 249, NULL, 8037, '1957', 'EZIPEN', NULL, '1.7600', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6000', '3.0000', '2021-09-12', 'received', '1.7600', '1.7600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (34507, 249, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.3000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '10.0000', '2021-09-12', '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 (34508, 249, NULL, 2267, '52018792', 'KIDICS SYRUP', NULL, '9.5000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '5.0000', '2021-09-12', '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 (34509, 249, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.6000', '1.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.6000', '0.0000', '2021-09-12', 'received', '0.6000', '0.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34510, 249, NULL, 7477, '1397', 'PREDNISOLONE 5MG', NULL, '0.6000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-12', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (34511, 249, NULL, 8015, '1935', 'ZIRTEK TAB', NULL, '3.7000', '5.0000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '0.0000', '2021-09-12', 'received', '3.7000', '3.7000', '14.0000', NULL, NULL, 1, 'pc', '14.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 (34512, 249, NULL, 2998, '20603397', 'ZIRTEK 10MG', NULL, '3.6000', '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.6000', '1.0000', '2021-09-12', 'received', '3.6000', '3.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34513, 249, NULL, 7638, '1558', 'FLUCONA DENK', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-12', '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 (34514, 249, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.0100', '1.3000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.7200', '67.0000', '2021-09-12', 'received', '1.0100', '1.0100', '72.0000', NULL, NULL, 1, 'pc', '72.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 (34515, 249, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '0.0000', '2021-09-12', '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 (34516, 249, NULL, 2775, '40792038', 'LEXSPORIN OINTMENT', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '5.0000', '2021-09-12', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34517, 249, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '17.2400', '23.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.2000', '4.0000', '2021-09-12', 'received', '17.2400', '17.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34518, 249, NULL, 7535, '1455', 'SAMAILN ADULT', NULL, '4.6000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '5.0000', '2021-09-12', '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 (34519, 249, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '2.0000', '2021-09-12', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (34520, 249, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7100', '2.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.5000', '36.0000', '2021-09-12', '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 (34521, 249, NULL, 2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', NULL, '0.9600', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '29.0000', '2021-09-12', '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 (34522, 249, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '0.9900', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '41.0000', '2021-09-12', '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 (34523, 249, NULL, 7735, '1655', 'IMMUNACE', NULL, '26.0000', '34.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-09-12', '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 (34524, 249, NULL, 7346, '1266', 'PREGNACARE PLUS', NULL, '94.2800', '125.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.5600', '0.0000', '2021-09-12', 'received', '94.2800', '94.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '94.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 (34525, 249, NULL, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.3200', '1.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.3200', '1.0000', '2021-09-12', 'received', '0.3200', '0.3200', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34526, 249, NULL, 8309, '2229', 'PREMECO CAPS', NULL, '14.5000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2021-09-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 (34527, 249, NULL, 9243, '3163', 'MEDGLOBIN SYR', NULL, '20.5000', '27.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2021-09-12', 'received', '20.5000', '20.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34528, 249, NULL, 9242, '3162', 'MEDGLOBIN CAPS', NULL, '22.5000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-12', 'received', '22.5000', '22.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34529, 249, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '6.3000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '6.0000', '2021-09-12', 'received', '6.3000', '6.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (34530, 249, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.6000', '20.0000', '2021-09-12', '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 (34531, 249, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '7.8000', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-09-12', 'received', '7.8000', '7.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34532, 249, NULL, 7606, '1526', 'PERMOXL SRP', NULL, '4.8600', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '6.0000', '2021-09-12', 'received', '4.8600', '4.8600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (34533, 249, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '1.0000', '2021-09-12', '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 (34534, 249, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '1.6500', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2500', '0.0000', '2021-09-12', 'received', '1.6500', '1.6500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34535, 249, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '11.7000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-09-12', '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 (34536, 249, NULL, 7708, '1628', 'TEEDAR', NULL, '6.1400', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7000', '0.0000', '2021-09-12', 'received', '6.1400', '6.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (34537, 249, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '18.8200', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4600', '0.0000', '2021-09-12', 'received', '18.8200', '18.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (34538, 249, NULL, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '47.0000', '62.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2021-09-12', 'received', '47.0000', '47.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34539, 249, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-09-12', '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 (34540, 249, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.7000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-09-12', '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 (34541, 249, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '5.0000', '2021-09-12', 'received', '8.7600', '8.7600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34542, 249, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4000', '0.0000', '2021-09-12', 'received', '2.8000', '2.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (34543, 249, NULL, 9523, '96030760', 'LOSARTAN 100MG EXETER', NULL, '10.0000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-09-12', '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 (34544, NULL, NULL, 8767, '', '', 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 (34545, NULL, NULL, 7496, '', '', 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 (34546, NULL, NULL, 1476, '', '', 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 (34566, 250, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '24.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '2.0000', '2021-09-13', '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 (34567, 250, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.1400', '0.0000', '2021-09-13', 'received', '12.0700', '12.0700', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34568, 250, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.0100', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0500', '0.0000', '2021-09-13', '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 (34569, 250, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.3800', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1400', '0.0000', '2021-09-13', '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 (34570, 250, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-09-13', '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 (34571, 250, NULL, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.4900', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4500', '4.0000', '2021-09-13', '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 (34572, 250, NULL, 1881, '5021265232062', 'PREGNACARE BREAST FEEDING UK', NULL, '105.0000', '138.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2021-09-13', 'received', '105.0000', '105.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34573, 250, NULL, 2292, '8908010926148', 'PREGNA  PREMIUM', NULL, '55.0000', '73.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '1.0000', '2021-09-13', '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 (34574, 250, NULL, 1462, '8904008413690', 'OVACARE TABS', NULL, '20.0000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-09-13', '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 (34575, 250, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '26.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.9400', '0.0000', '2021-09-13', 'received', '19.4900', '19.4900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (34576, 250, NULL, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '37.2600', '49.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.7800', '0.0000', '2021-09-13', 'received', '37.2600', '37.2600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34577, 250, NULL, 8309, '2229', 'PREMECO CAPS', NULL, '14.5000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '4.0000', '2021-09-13', 'received', '14.5000', '14.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (34578, 250, NULL, 1353, '5060085540254', 'SELEVITE TABS', NULL, '22.6500', '30.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.2500', '4.0000', '2021-09-13', 'received', '22.6500', '22.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (34579, 250, NULL, 2282, '40904860', 'SOVIT VIT E CAPS', NULL, '18.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2021-09-13', '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 (34580, 250, NULL, 2509, '01336804', 'VENTOLIN SYRUP 100ML', NULL, '24.5800', '32.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7400', '0.0000', '2021-09-13', 'received', '24.5800', '24.5800', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34581, 250, NULL, 2464, '72877536', 'NEUROZAN', NULL, '54.0000', '71.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2021-09-13', '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 (34582, 250, NULL, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '20.2000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.6000', '2.0000', '2021-09-13', '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 (34583, 250, NULL, 2406, '8901138502829', 'MENTAT', NULL, '20.7000', '27.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.1000', '2.0000', '2021-09-13', '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 (34584, 250, NULL, 2349, '82507445', 'CEBROTONIN TAB', NULL, '24.1000', '32.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.6000', '6.0000', '2021-09-13', '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 (34585, 250, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.5000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-09-13', '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 (34586, 250, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.6000', '0.0000', '2021-09-13', 'received', '35.9000', '35.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34587, 250, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-09-13', '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 (34588, 250, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.1900', '28.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3800', '1.0000', '2021-09-13', 'received', '20.1900', '20.1900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34589, 250, NULL, 2265, '5014502000807', 'MINAMINO SYRUP M/S', NULL, '32.0000', '43.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '2.0000', '2021-09-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 (34590, 250, NULL, 2755, '36040795', 'VITA FORCE SYR', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2021-09-13', '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 (34591, 250, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '10.3300', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.9900', '0.0000', '2021-09-13', 'received', '10.3300', '10.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (34592, 250, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '10.2900', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8700', '0.0000', '2021-09-13', 'received', '10.2900', '10.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (34593, 250, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-09-13', '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 (34594, 250, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '5.9100', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5500', '0.0000', '2021-09-13', 'received', '5.9100', '5.9100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34595, 250, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.8600', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5800', '0.0000', '2021-09-13', 'received', '7.8600', '7.8600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34596, 250, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4600', '0.0000', '2021-09-13', '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 (34597, 250, NULL, 2129, '76264523', 'FINELIFE TONIC', NULL, '6.4100', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2300', '0.0000', '2021-09-13', 'received', '6.4100', '6.4100', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34598, 250, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2500', '0.0000', '2021-09-13', '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 (34599, 250, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '34.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2400', '2.0000', '2021-09-13', '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 (34600, 250, NULL, 2072, '41512770', 'ZINVITE CAPS', NULL, '8.1200', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.6000', '1.0000', '2021-09-13', 'received', '8.1200', '8.1200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (34601, 250, NULL, 1497, 'PR-210', 'JARIFAN 2 CAPS', NULL, '10.5000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-09-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 (34602, 250, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '4.1000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2021-09-13', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34603, 250, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '0.0000', '2021-09-13', 'received', '2.3500', '2.3500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (34604, 250, NULL, 2258, '8901138180614', 'SPEMAN TABS', NULL, '0.3500', '50.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '30.0000', '2021-09-13', 'received', '0.3500', '0.3500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (34605, 250, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '4.9200', '6.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.6000', '0.0000', '2021-09-13', 'received', '4.9200', '4.9200', '30.0000', NULL, NULL, 1, 'pc', '30.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 (34606, 250, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.6400', '44.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.9200', '1.0000', '2021-09-13', 'received', '33.6400', '33.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (34607, 250, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '49.0000', '65.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '3.0000', '2021-09-13', '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 (34608, 250, NULL, 2499, '01118964', 'PROXEED PLUS MEN', NULL, '10.6000', '14.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '318.0000', '30.0000', '2021-09-13', '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 (34609, 250, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.7800', '19.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3400', '3.0000', '2021-09-13', '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 (34610, 250, NULL, 1697, '8904023403058', 'APETI SYRUP-GEO', NULL, '10.8000', '14.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-09-13', 'received', '10.8000', '10.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34611, 250, NULL, 1696, 'PR-409', 'CYFEN SYR', NULL, '10.2900', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8700', '0.0000', '2021-09-13', 'received', '10.2900', '10.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (34612, 250, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5700', '0.0000', '2021-09-13', '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 (34613, 250, NULL, 1698, 'PR-411', 'ODYMIN SYR', NULL, '8.4500', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3500', '3.0000', '2021-09-13', 'received', '8.4500', '8.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (34614, 250, NULL, 2559, '42580620', 'ABYVITA SYRP', NULL, '6.0000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-09-13', '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 (34615, 250, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '8.0700', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.2100', '2.0000', '2021-09-13', 'received', '8.0700', '8.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (34616, 250, NULL, 7445, '1365', 'CIROTAMIN SRP', NULL, '7.9900', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9900', '0.0000', '2021-09-13', 'received', '7.9900', '7.9900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34617, 250, NULL, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-09-13', '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 (34618, 250, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '0.0000', '2021-09-13', '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 (34619, 250, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '9.2200', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6600', '0.0000', '2021-09-13', 'received', '9.2200', '9.2200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (34620, 250, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '0.0000', '2021-09-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 (34621, 250, NULL, 2757, '55918370', 'VIGORIX CAPS', NULL, '6.8000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6000', '0.0000', '2021-09-13', '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 (34622, 250, NULL, 2609, '48137025', 'ABYVITA TABS', NULL, '2.8000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4000', '0.0000', '2021-09-13', 'received', '2.8000', '2.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34623, 250, NULL, 2758, '02583050', 'CYFEN TAB', NULL, '5.4000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-09-13', '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 (34624, 250, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-09-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 (34625, 250, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '4.1000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '5.0000', '2021-09-13', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34626, 250, NULL, 1953, '56415263', 'STAGYL TABS', NULL, '2.4900', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.4500', '1.0000', '2021-09-13', 'received', '2.4900', '2.4900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34627, 250, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '7.0000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-09-13', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (34628, 250, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-09-13', '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 (34629, 250, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '29.0000', '38.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '0.0000', '2021-09-13', '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 (34630, 250, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '1.3500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-09-13', 'received', '1.3500', '1.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (34631, 250, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '0.0000', '2021-09-13', '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 (34632, 250, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '28.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3800', '0.0000', '2021-09-13', 'received', '20.6900', '20.6900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34633, 250, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-09-13', '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 (34634, 250, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5700', '0.0000', '2021-09-13', '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 (34635, 250, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '19.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2021-09-13', '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 (34636, 250, NULL, 1305, 'PR-18', 'BASEKOF SYR', NULL, '5.2000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2021-09-13', 'received', '5.2000', '5.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34637, 250, NULL, 1648, '8902404045453', 'ASTHALEX SYR 100ML', NULL, '5.6700', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0100', '1.0000', '2021-09-13', 'received', '5.6700', '5.6700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (34638, 250, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1600', '0.0000', '2021-09-13', 'received', '4.7200', '4.7200', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34639, 250, NULL, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '5.3000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '1.0000', '2021-09-13', 'received', '5.3000', '5.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34640, 250, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '8.2300', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.1500', '0.0000', '2021-09-13', 'received', '8.2300', '8.2300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (34641, 250, NULL, 9401, '3321', 'KOFOF ADULT SYRUP', NULL, '3.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.5000', '1.0000', '2021-09-13', 'received', '3.5000', '3.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34642, 250, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '5.7300', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.7300', '0.0000', '2021-09-13', 'received', '5.7300', '5.7300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.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 (34643, 250, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '3.2000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.2000', '0.0000', '2021-09-13', 'received', '3.2000', '3.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34644, 250, NULL, 9445, '51778713', 'KOFFEX A', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-09-13', '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 (34645, 250, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6500', '0.0000', '2021-09-13', 'received', '4.5500', '4.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (34646, 250, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '3.9400', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '0.0000', '2021-09-13', 'received', '3.9400', '3.9400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (34647, 250, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2021-09-13', '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 (34648, 250, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-09-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 (34649, 250, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '9.2500', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.7500', '0.0000', '2021-09-13', 'received', '9.2500', '9.2500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34650, 250, NULL, 2140, '9556100104335', 'FLUCOR NIGHT', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2021-09-13', '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 (34651, 250, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1500', '2.0000', '2021-09-13', 'received', '6.6300', '6.6300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34652, 250, NULL, 2760, '71647290', 'HAYZINE TAB', NULL, '0.7300', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.4600', '0.0000', '2021-09-13', 'received', '0.7300', '0.7300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34653, 250, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-13', '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 (34654, 250, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8500', '0.0000', '2021-09-13', 'received', '1.9700', '1.9700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34655, 250, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '1.0500', '1.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2500', '0.0000', '2021-09-13', 'received', '1.0500', '1.0500', '25.0000', NULL, NULL, 1, 'pc', '25.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 (34656, 250, NULL, 2066, '05299189', 'MENTHOX LOZENGES', NULL, '0.5100', '1.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '0.0000', '2021-09-13', '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 (34657, 250, NULL, 1917, 'PR-630', 'ASPANOL JUNIOR', NULL, '4.3600', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0800', '1.0000', '2021-09-13', 'received', '4.3600', '4.3600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34658, 250, NULL, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '1.5000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-09-13', 'received', '1.5000', '1.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34659, 250, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.9000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2021-09-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 (34660, 250, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-09-13', '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 (34661, 250, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-09-13', '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 (34662, 250, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-13', '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 (34663, 250, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-13', '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 (34664, 250, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.0100', '32.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0200', '0.0000', '2021-09-13', 'received', '24.0100', '24.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.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 (34665, 242, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '5.7100', '7.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2600', '2.0000', '2021-09-11', 'received', '5.7100', '5.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (34666, 242, NULL, 7370, '1290', 'BELLS BABY COUGH', NULL, '12.1100', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5500', '4.0000', '2021-09-11', 'received', '12.1100', '12.1100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (34667, 242, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '4.0000', '2021-09-11', '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 (34668, 242, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '7.0000', '2021-09-11', '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 (34669, 242, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-09-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 (34670, 242, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '20.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '2.0000', '2021-09-11', '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 (34671, 242, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '33.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.5500', '0.0000', '2021-09-11', 'received', '23.9100', '23.9100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34672, 242, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.8000', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '8.0000', '2021-09-11', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (34673, 242, NULL, 2777, '97856697', 'MMT SUSP', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2021-09-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 (34674, 242, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-09-11', '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 (34675, 242, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.7900', '0.0000', '2021-09-11', '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 (34676, 242, NULL, 3004, '72625723', 'CLARITHROMYCIN 500MG SANDOZ', NULL, '30.0000', '40.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '4.0000', '2021-09-11', '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 (34677, 242, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.0000', '0.0000', '2021-09-11', 'received', '20.6000', '20.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34678, 242, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '28.5500', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.6500', '0.0000', '2021-09-11', 'received', '28.5500', '28.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (34679, 242, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4700', '3.0000', '2021-09-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 (34680, 242, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '9.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '1.0000', '2021-09-11', '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 (34681, 242, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2021-09-11', '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 (34682, 242, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9300', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6500', '4.0000', '2021-09-11', 'received', '6.9300', '6.9300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34683, 242, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-09-11', '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 (34684, 242, NULL, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '4.7200', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '2.0000', '2021-09-11', '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 (34685, 242, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5200', '3.0000', '2021-09-11', 'received', '5.8800', '5.8800', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34686, 242, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.0100', '1.3000', '90.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.9000', '18.0000', '2021-09-11', 'received', '1.0100', '1.0100', '90.0000', NULL, NULL, 1, 'pc', '90.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 (34687, 242, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8800', '2.0000', '2021-09-11', 'received', '4.7200', '4.7200', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34688, 242, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '5.7300', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.9200', '2.0000', '2021-09-11', 'received', '5.7300', '5.7300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.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 (34689, 242, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0300', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0900', '1.0000', '2021-09-11', 'received', '5.0300', '5.0300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34690, 242, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6500', '0.0000', '2021-09-11', 'received', '4.5500', '4.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (34691, 242, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '3.9400', '5.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8200', '2.0000', '2021-09-11', 'received', '3.9400', '3.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (34692, 242, NULL, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.6200', '1.0000', '2021-09-11', 'received', '2.3100', '2.3100', '2.0000', NULL, NULL, 1, 'pc', '2.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 (34693, 242, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.2600', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3000', '2.0000', '2021-09-11', 'received', '6.2600', '6.2600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34694, 242, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-09-11', '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 (34695, 242, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '5.9100', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7300', '0.0000', '2021-09-11', 'received', '5.9100', '5.9100', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34696, 242, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '33.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.9900', '1.0000', '2021-09-11', '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 (34697, 242, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '10.3300', '13.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.9900', '2.0000', '2021-09-11', 'received', '10.3300', '10.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (34698, 242, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '21.8900', '29.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.5600', '4.0000', '2021-09-11', 'received', '21.8900', '21.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '21.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 (34699, 242, NULL, 9158, '3078', 'METRO Z SUSP', NULL, '5.8900', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6700', '2.0000', '2021-09-11', '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 (34700, 242, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '5.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.1000', '30.0000', '2021-09-11', '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 (34701, 242, NULL, 2991, '46377274', 'ZINTAB 10MG', NULL, '0.2500', '1.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '7.0000', '2021-09-11', 'received', '0.2500', '0.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (34702, 242, NULL, 9520, '56647278', 'ABIKRIST TOM BROWN B/S', NULL, '15.0000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '7.0000', '2021-09-11', '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 (34703, 242, NULL, 9521, '99617542', 'ABIKRIST TOM BROWN S/S', NULL, '10.0000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2021-09-11', '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 (34704, 242, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.0100', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0200', '1.0000', '2021-09-11', 'received', '24.0100', '24.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.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 (34705, NULL, NULL, 7933, '', '', 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 (34706, NULL, NULL, 1874, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (34707, NULL, NULL, 7530, '', '', 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 (34708, NULL, NULL, 8632, '', '', 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 (34709, NULL, NULL, 7749, '', '', 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 (34710, NULL, NULL, 2895, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34711, NULL, NULL, 7799, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34712, NULL, NULL, 7790, '', '', 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 (34713, NULL, NULL, 7554, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (34714, NULL, NULL, 9311, '', '', 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 (34715, NULL, NULL, 7714, '', '', 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 (34716, NULL, NULL, 9337, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-53.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34717, NULL, NULL, 2772, '', '', 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 (34718, NULL, NULL, 2726, '', '', 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 (34719, NULL, NULL, 1790, '', '', 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 (34720, NULL, NULL, 8539, '', '', 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 (34721, NULL, NULL, 9214, '', '', 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 (34722, NULL, NULL, 2327, '', '', 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 (34723, NULL, NULL, 8046, '', '', 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 (34724, NULL, NULL, 7854, '', '', 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 (34725, NULL, NULL, 1743, '', '', 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 (34726, NULL, NULL, 7317, '', '', 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 (34727, NULL, NULL, 7671, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-97.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34728, NULL, NULL, 7622, '', '', 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 (34729, NULL, NULL, 7898, '', '', 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 (34730, NULL, NULL, 2069, '', '', 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 (34731, NULL, NULL, 2726, '', '', 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 (34732, NULL, NULL, 8640, '', '', 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 (34733, NULL, NULL, 7825, '', '', 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 (34734, NULL, NULL, 7827, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34735, NULL, NULL, 1693, '', '', 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 (34736, NULL, NULL, 7803, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (34737, NULL, NULL, 8743, '', '', 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 (34738, NULL, NULL, 2962, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34739, NULL, NULL, 7786, '', '', 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 (34740, NULL, NULL, 9469, '', '', 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 (34917, 252, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.2000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-09-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 (34918, 252, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '18.9800', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.9400', '0.0000', '2021-09-19', 'received', '18.9800', '18.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (34919, 252, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '14.3000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '0.0000', '2021-09-19', 'received', '14.3000', '14.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (34920, 252, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6100', '0.0000', '2021-09-19', '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 (34921, 252, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.3600', '0.0000', '2021-09-19', '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 (34922, 252, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '4.2500', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '11.0000', '2021-09-19', 'received', '4.2500', '4.2500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (34923, 252, NULL, 1793, '8850769017380', 'LIGABA 75MG(PREGABALIN)30\'S', NULL, '15.3000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.8000', '0.0000', '2021-09-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 (34924, 252, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '3.8200', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4600', '0.0000', '2021-09-19', '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 (34925, 252, NULL, 8902, '2822', 'GLUCOPHAGE', NULL, '16.4800', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9600', '0.0000', '2021-09-19', 'received', '16.4800', '16.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (34926, 252, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '18.4200', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.1000', '0.0000', '2021-09-19', 'received', '18.4200', '18.4200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (34927, 252, NULL, 7638, '1558', 'FLUCONA DENK', NULL, '12.0000', '16.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-09-19', 'received', '12.0000', '12.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (34928, 252, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '4.1000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '3.0000', '2021-09-19', 'received', '4.1000', '4.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (34929, 252, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '6.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8000', '0.0000', '2021-09-19', 'received', '4.4500', '4.4500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34930, 252, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '0.0000', '2021-09-19', '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 (34931, 252, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-09-19', '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 (34932, 252, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '5.9100', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '0.0000', '2021-09-19', 'received', '5.9100', '5.9100', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34933, 252, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2021-09-19', '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 (34934, 252, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-09-19', '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 (34935, 252, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.6500', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '0.0000', '2021-09-19', 'received', '9.6500', '9.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (34936, 252, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5700', '0.0000', '2021-09-19', '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 (34937, 252, NULL, 1698, 'PR-411', 'ODYMIN SYR', NULL, '8.4500', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3500', '1.0000', '2021-09-19', 'received', '8.4500', '8.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (34938, 252, NULL, 2609, '48137025', 'ABYVITA TABS', NULL, '2.8000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-09-19', '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 (34939, 252, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '12.5000', '16.5000', '11.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '0.0000', '2021-09-19', 'received', '12.5000', '12.5000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (34940, 252, NULL, 1962, '5021265224128', 'VISIONANCE UK', NULL, '32.0000', '42.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '2.0000', '2021-09-19', '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 (34941, 252, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '16.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.6000', '0.0000', '2021-09-19', 'received', '11.9500', '11.9500', '8.0000', NULL, NULL, 1, 'pc', '8.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 (34942, 252, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.3200', '2.0000', '2021-09-19', 'received', '9.7600', '9.7600', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '9.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 (34943, 252, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.8000', '0.0000', '2021-09-19', '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 (34944, 252, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '14.0000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-09-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 (34945, 252, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.5000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-09-19', '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 (34946, 252, NULL, 8301, '2221', 'ADUTWUMUA CAPS', NULL, '11.0000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '1.0000', '2021-09-19', '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 (34947, 252, NULL, 1439, 'PR-152', 'VICTAGO s s', NULL, '1.0000', '1.3000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.0000', '0.0000', '2021-09-19', 'received', '1.0000', '1.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (34948, 252, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-19', '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 (34949, 252, NULL, 9399, '3319', 'LETACAM (PIROXICAM)', NULL, '0.9800', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '4.0000', '2021-09-19', 'received', '0.9800', '0.9800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (34950, 252, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '28.1700', '37.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.8500', '0.0000', '2021-09-19', 'received', '28.1700', '28.1700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (34951, 252, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '0.0000', '2021-09-19', 'received', '1.7300', '1.7300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (34952, 252, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.2000', '0.0000', '2021-09-19', 'received', '1.4000', '1.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34953, 252, NULL, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '73.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.1000', '0.0000', '2021-09-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 (34954, 252, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '142.8300', '190.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '285.6600', '0.0000', '2021-09-19', 'received', '142.8300', '142.8300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '142.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 (34955, 252, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-09-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 (34956, 252, NULL, 2636, '86196755', 'KIDIMIN SYR', NULL, '7.5000', '10.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-19', 'received', '7.5000', '7.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (34957, 252, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-09-19', '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 (34958, 252, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '0.0000', '2021-09-19', '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 (34959, 252, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-09-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 (34960, 252, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '12.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-09-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 (34961, 252, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.0800', '18.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.3200', '0.0000', '2021-09-19', 'received', '14.0800', '14.0800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (34962, 252, NULL, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.4900', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.8000', '0.0000', '2021-09-19', 'received', '7.4900', '7.4900', '20.0000', NULL, NULL, 1, 'pc', '20.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 (34963, 252, NULL, 2570, '24041017', 'GOLDY SUSP', NULL, '7.4900', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4500', '0.0000', '2021-09-19', '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 (34964, 252, 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-09-19', '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 (34965, 252, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8500', '0.0000', '2021-09-19', 'received', '4.5500', '4.5500', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '4.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 (34966, 252, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-19', '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 (34967, 252, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.0000', '0.0000', '2021-09-19', 'received', '3.3500', '3.3500', '40.0000', NULL, NULL, 1, 'pc', '40.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 (34968, 252, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-09-19', 'received', '1.1500', '1.1500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (34969, 252, NULL, 3014, '02636584', 'DAY NURSE LIQUID 240ML', NULL, '55.2200', '73.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2200', '1.0000', '2021-09-19', 'received', '55.2200', '55.2200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '55.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 (34970, 252, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.8000', '6.4000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '40.0000', '2021-09-19', 'received', '4.8000', '4.8000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (34971, 252, NULL, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '9.8000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2021-09-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 (34972, 252, NULL, 9525, '82301277', 'STAMLO 10', NULL, '32.0000', '42.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2021-09-19', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (34973, 252, NULL, 9524, '24029202', 'DAY AND NIGHT NURSE CAPS', NULL, '61.1000', '80.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.2000', '2.0000', '2021-09-19', 'received', '61.1000', '61.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '61.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 (34974, 252, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '110.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '0.0000', '2021-09-19', '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 (34975, NULL, NULL, 8517, '', '', 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 (34976, NULL, NULL, 9520, '', '', 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 (34977, NULL, NULL, 7576, '', '', 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 (34978, NULL, NULL, 8028, '', '', 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 (34979, NULL, NULL, 3004, '', '', 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 (34980, NULL, NULL, 7550, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34981, NULL, NULL, 8137, '', '', 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 (35045, NULL, NULL, 7758, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (35101, NULL, NULL, 8500, '', '', 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 (35102, NULL, NULL, 2374, '', '', 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 (35103, NULL, NULL, 8120, '', '', 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 (35104, NULL, NULL, 8263, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (35105, NULL, NULL, 8006, '', '', 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 (35171, NULL, NULL, 2047, '', '', 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 (35172, NULL, NULL, 7805, '', '', 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 (35244, NULL, NULL, 2796, '', '', 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 (35245, NULL, NULL, 9419, '', '', 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 (35246, NULL, NULL, 2470, '', '', 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 (35247, NULL, NULL, 1796, '', '', 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 (35248, NULL, NULL, 1399, '', '', 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 (35249, NULL, NULL, 9287, '', '', 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 (35250, NULL, NULL, 9311, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (35251, NULL, NULL, 7995, '', '', 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 (35252, NULL, NULL, 8518, '', '', 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 (35253, NULL, NULL, 7916, '', '', 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 (35254, NULL, NULL, 8097, '', '', 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 (35255, NULL, NULL, 7367, '', '', 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 (35256, NULL, NULL, 1520, '', '', 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 (35257, NULL, NULL, 1938, '', '', 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 (35258, NULL, NULL, 7375, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-86.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35259, NULL, NULL, 7680, '', '', 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 (35260, NULL, NULL, 7579, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-49.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35261, NULL, NULL, 8026, '', '', 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 (35262, NULL, NULL, 9019, '', '', 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 (35263, NULL, NULL, 9157, '', '', 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 (35264, NULL, NULL, 8254, '', '', 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 (35265, NULL, NULL, 7996, '', '', 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 (35266, NULL, NULL, 9092, '', '', 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 (35267, NULL, NULL, 1864, '', '', 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 (35268, NULL, NULL, 1687, '', '', 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 (35269, NULL, NULL, 7575, '', '', 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 (35270, NULL, NULL, 7860, '', '', 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 (35271, NULL, NULL, 9470, '', '', 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 (35272, NULL, NULL, 9207, '', '', 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 (35273, NULL, NULL, 9089, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-58.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35274, NULL, NULL, 1884, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (35275, NULL, NULL, 8518, '', '', 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 (35276, NULL, NULL, 7644, '', '', 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 (35277, NULL, NULL, 9498, '', '', 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 (35278, NULL, NULL, 9266, '', '', 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 (35279, NULL, NULL, 8730, '', '', 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 (35280, NULL, NULL, 9013, '', '', 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 (35281, NULL, NULL, 7857, '', '', 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 (35282, NULL, NULL, 7948, '', '', 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 (35283, NULL, NULL, 8608, '', '', 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 (35284, NULL, NULL, 7408, '', '', 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 (35285, NULL, NULL, 7639, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35286, NULL, NULL, 7398, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-47.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35287, NULL, NULL, 7527, '', '', 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 (35288, NULL, NULL, 7823, '', '', 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 (35289, NULL, NULL, 7872, '', '', 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 (35290, NULL, NULL, 8328, '', '', 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 (35291, NULL, NULL, 7911, '', '', 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 (35292, NULL, NULL, 9468, '', '', 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 (35293, NULL, NULL, 2854, '', '', 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 (35294, NULL, NULL, 1965, '', '', 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 (35295, NULL, NULL, 1854, '', '', 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 (35296, NULL, NULL, 9328, '', '', 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 (35297, NULL, NULL, 9329, '', '', 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 (35298, NULL, NULL, 8598, '', '', 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 (35299, NULL, NULL, 8718, '', '', 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 (35300, NULL, NULL, 1413, '', '', 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 (35301, NULL, NULL, 1808, '', '', 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 (35302, NULL, NULL, 8168, '', '', 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 (35303, NULL, NULL, 8060, '', '', 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 (35304, NULL, NULL, 8361, '', '', 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 (35305, NULL, NULL, 9308, '', '', 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 (35306, NULL, NULL, 7724, '', '', 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 (35307, NULL, NULL, 8845, '', '', 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 (35308, NULL, NULL, 2148, '', '', 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 (35309, NULL, NULL, 7887, '', '', 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 (35310, NULL, NULL, 1736, '', '', 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 (35311, NULL, NULL, 7727, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (35312, NULL, NULL, 2924, '', '', 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 (35313, NULL, NULL, 8743, '', '', 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 (35314, NULL, NULL, 1810, '', '', 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 (35315, NULL, NULL, 8046, '', '', 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 (35316, NULL, NULL, 8450, '', '', 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 (35317, NULL, NULL, 8074, '', '', 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 (35318, NULL, NULL, 9290, '', '', 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 (35319, NULL, NULL, 8007, '', '', 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 (35320, NULL, NULL, 2414, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35321, NULL, NULL, 2545, '', '', 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 (35322, NULL, NULL, 9010, '', '', 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 (35323, NULL, NULL, 2359, '', '', 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 (35324, NULL, NULL, 1430, '', '', 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 (35325, NULL, NULL, 7814, '', '', 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 (35326, NULL, NULL, 7635, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (35327, NULL, NULL, 9481, '', '', 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 (35328, NULL, NULL, 3066, '', '', 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 (35329, NULL, NULL, 9479, '', '', 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 (35330, NULL, NULL, 1908, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-38.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35331, NULL, NULL, 1620, '', '', 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 (35332, NULL, NULL, 3067, '', '', 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 (35333, NULL, NULL, 1656, '', '', 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 (35334, NULL, NULL, 9469, '', '', 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 (35335, NULL, NULL, 1482, '', '', 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 (35336, NULL, NULL, 9089, '', '', 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 (35337, NULL, NULL, 2651, '', '', 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 (35338, NULL, NULL, 2414, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (35339, NULL, NULL, 8746, '', '', 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 (35340, NULL, NULL, 8744, '', '', 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 (35341, NULL, NULL, 7358, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (35342, NULL, NULL, 1982, '', '', 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 (35343, NULL, NULL, 8237, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (35344, NULL, NULL, 9390, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (35345, NULL, NULL, 7750, '', '', 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 (35346, NULL, NULL, 8625, '', '', 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 (35347, NULL, NULL, 7398, '', '', 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 (35348, NULL, NULL, 7889, '', '', 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 (35349, NULL, NULL, 8745, '', '', 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 (35350, NULL, NULL, 7741, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35351, NULL, NULL, 2713, '', '', 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 (35352, NULL, NULL, 2533, '', '', 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 (35353, NULL, NULL, 7592, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (35354, NULL, NULL, 7621, '', '', 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 (35355, NULL, NULL, 7970, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-43.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35356, NULL, NULL, 7808, '', '', 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 (35357, NULL, NULL, 8083, '', '', 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 (35358, NULL, NULL, 1619, '', '', 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 (35359, NULL, NULL, 8857, '', '', 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 (35360, NULL, NULL, 9499, '', '', 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 (35361, NULL, NULL, 7608, '', '', 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 (35362, NULL, NULL, 7809, '', '', 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 (35363, NULL, NULL, 7758, '', '', 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 (35364, NULL, NULL, 2627, '', '', 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 (35365, NULL, NULL, 2470, '', '', 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 (35366, NULL, NULL, 7711, '', '', 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 (35367, NULL, NULL, 9367, '', '', 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 (35368, NULL, NULL, 7943, '', '', 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 (35377, NULL, NULL, 7860, '', '', 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 (35402, NULL, NULL, 9280, '', '', 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 (35403, NULL, NULL, 7862, '', '', 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 (35404, NULL, NULL, 8314, '', '', 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 (35804, NULL, NULL, 1625, '', '', 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 (35805, NULL, NULL, 7355, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (35806, NULL, NULL, 8657, '', '', 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 (35807, NULL, NULL, 2124, '', '', 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 (35808, NULL, NULL, 1487, '', '', 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 (35809, NULL, NULL, 7953, '', '', 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 (35810, NULL, NULL, 8608, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-53.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35811, NULL, NULL, 8407, '', '', 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 (35812, NULL, NULL, 7715, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (35813, NULL, NULL, 7522, '', '', 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 (35814, NULL, NULL, 2081, '', '', 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 (35815, NULL, NULL, 7411, '', '', 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 (35816, NULL, NULL, 2298, '', '', 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 (35817, NULL, NULL, 7748, '', '', 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 (35818, NULL, NULL, 8923, '', '', 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 (35819, NULL, NULL, 7453, '', '', 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 (35820, NULL, NULL, 8233, '', '', 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 (35821, NULL, NULL, 1318, '', '', 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 (35822, NULL, NULL, 9148, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (35923, 255, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '9.2000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '0.0000', '2021-09-24', 'received', '9.2000', '9.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (35924, 255, NULL, 8557, '2477', 'SOFTCARE DIAPER', NULL, '9.2000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2000', '1.0000', '2021-09-24', 'received', '9.2000', '9.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (35925, 255, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '7.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2021-09-24', '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 (35926, 255, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '12.0000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-09-24', '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 (35927, 255, NULL, 7722, '1642', 'ALWAYS DOUBLE', NULL, '8.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-09-24', '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 (35928, 255, NULL, 2000, '6036000087004', 'FAYTEX', NULL, '8.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2021-09-24', '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 (35929, 255, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '8.0000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '6.0000', '2021-09-24', '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 (35930, 255, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.0000', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-09-24', '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 (35931, 255, NULL, 9531, '33732023', 'KEL 360 TOOTH PASTE', NULL, '8.5000', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '2.0000', '2021-09-24', '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 (35932, 255, NULL, 9532, '43814251', 'KEL CHARCOAL TOOTH PASTE', NULL, '11.0000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2021-09-24', '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 (35933, 255, NULL, 9533, '12303025', 'KEL KIDS TOOTHPASTE', NULL, '8.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-09-24', '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 (35934, 255, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '6.6000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '2.0000', '2021-09-24', '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 (35935, 255, NULL, 8769, '2689', 'HUNTERS', NULL, '6.6000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '3.0000', '2021-09-24', '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 (35936, 255, NULL, 9469, '40088756', 'PANACHE', NULL, '2.3000', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '8.0000', '2021-09-24', '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 (35937, 255, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.0000', '13.2000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-24', '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 (35938, 255, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.5000', '4.5000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '22.0000', '2021-09-24', 'received', '3.5000', '3.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (35939, 255, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.8000', '0.0000', '2021-09-24', 'received', '3.8000', '3.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (35940, 255, NULL, 8566, '2486', 'SURE SPRAY', NULL, '11.0000', '14.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2021-09-24', '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 (35941, 255, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '85.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1000', '41.0000', '2021-09-24', 'received', '0.2600', '0.2600', '85.0000', NULL, NULL, 1, 'pc', '85.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 (35942, 255, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.4000', '8.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '6.0000', '2021-09-24', '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 (35943, 255, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '2.0000', '2021-09-24', 'received', '3.8000', '3.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (35944, 255, NULL, 9544, '68006719', 'NUTRISEEDS S/S', NULL, '25.0000', '30.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '4.0000', '2021-09-24', 'received', '25.0000', '25.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (36022, 257, NULL, 8098, '2018', 'PROMAN', NULL, '19.0000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '1.0000', '2021-09-25', '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 (36023, 257, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '23.2200', '32.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.2200', '0.0000', '2021-09-25', 'received', '23.2200', '23.2200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '23.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 (36024, 257, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3000', '2.0000', '2021-09-25', 'received', '1.6300', '1.6300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (36025, 257, NULL, 7465, '1385', 'RHINATHIOL INFANT PINK', NULL, '20.2400', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7200', '0.0000', '2021-09-25', '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 (36026, 257, NULL, 7687, '1607', 'CALPOL 6+', NULL, '34.4900', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9800', '0.0000', '2021-09-25', 'received', '34.4900', '34.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.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 (36027, 257, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '9.0000', '2021-09-25', '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 (36028, 257, NULL, 7750, '1670', 'CALPOL 2+', NULL, '34.9000', '46.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.4000', '0.0000', '2021-09-25', 'received', '34.9000', '34.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (36029, 257, NULL, 7482, '1402', 'MAXMOX 500', NULL, '3.0500', '5.0000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.2500', '0.0000', '2021-09-25', 'received', '3.0500', '3.0500', '45.0000', NULL, NULL, 1, 'pc', '45.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 (36030, 257, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '3.1000', '5.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-09-25', 'received', '3.1000', '3.1000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (36031, 257, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-25', '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 (36032, 257, NULL, 7994, '1914', 'RELCER GEL', NULL, '9.2800', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8400', '0.0000', '2021-09-25', 'received', '9.2800', '9.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (36033, 257, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '9.2800', '12.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2800', '1.0000', '2021-09-25', 'received', '9.2800', '9.2800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '9.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 (36034, 257, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2021-09-25', '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 (36035, 257, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.4500', '0.0000', '2021-09-25', 'received', '19.8900', '19.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (36036, 257, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2021-09-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 (36037, 257, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '43.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '4.0000', '2021-09-25', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (36038, 257, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '21.8900', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.6700', '3.0000', '2021-09-25', 'received', '21.8900', '21.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (36039, 257, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '3.0000', '2021-09-25', '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 (36040, 257, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '3.4000', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2021-09-25', '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 (36041, 257, NULL, 9167, '3087', 'NORMO TEARS EYE DROP', NULL, '11.9000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8000', '0.0000', '2021-09-25', 'received', '11.9000', '11.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (36042, 257, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '14.6400', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.2000', '5.0000', '2021-09-25', '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 (36043, 257, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '9.7600', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.8000', '0.0000', '2021-09-25', 'received', '9.7600', '9.7600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (36044, 257, NULL, 8216, '2136', 'MAXITROL', NULL, '16.0000', '21.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-09-25', '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 (36045, 257, NULL, 8825, '2745', 'AZILEX SUSP', NULL, '7.4000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2021-09-25', 'received', '7.4000', '7.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (36046, 257, NULL, 7592, '1512', 'HAEMOGLOBIN M/G', NULL, '4.5200', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1200', '0.0000', '2021-09-25', 'received', '4.5200', '4.5200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (36047, 257, NULL, 8086, '2006', 'SAVLON 125', NULL, '9.3000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-09-25', 'received', '9.3000', '9.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (36048, 257, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.2000', '3.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2021-09-25', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (36049, 257, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-09-25', 'received', '13.5000', '13.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (36050, 257, NULL, 9098, '3018', 'JOY VIKIL', NULL, '25.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2021-09-25', '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 (36051, 257, NULL, 7749, '1669', 'FOLIGROW SRP', NULL, '20.0200', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.1000', '0.0000', '2021-09-25', 'received', '20.0200', '20.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (36052, 257, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.1300', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6500', '1.0000', '2021-09-25', '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 (36053, 257, NULL, 9453, '73814348', 'LORATADINE ( LORFAST) 10MG', NULL, '11.0000', '14.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-09-25', '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 (36054, 257, NULL, 7394, '1314', 'ZINTAB 10ML', NULL, '0.5000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '40.0000', '2021-09-25', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (36055, 257, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.4600', '6.0000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4400', '0.0000', '2021-09-25', 'received', '4.4600', '4.4600', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '4.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 (36056, 257, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '8.1600', '11.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.4000', '0.0000', '2021-09-25', 'received', '8.1600', '8.1600', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (36057, 257, NULL, 2389, '78098233', 'ALKA SELTZER 20\'S', NULL, '3.1900', '4.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.7000', '30.0000', '2021-09-25', 'received', '3.1900', '3.1900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (36058, 257, NULL, 7558, '1478', 'DORETA', NULL, '2.2000', '3.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.0000', '0.0000', '2021-09-25', 'received', '2.2000', '2.2000', '80.0000', NULL, NULL, 1, 'pc', '80.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 (36059, 257, NULL, 2243, '84463478', 'CALAMINE LOTION', NULL, '4.0000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2021-09-25', '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 (36060, 257, NULL, 7575, '1495', 'CALAMINE OINT', NULL, '5.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-09-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 (36061, 257, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '5.0000', '2021-09-25', '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 (36062, 257, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '29.0000', '39.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2021-09-25', '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 (36063, 257, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2021-09-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 (36064, 257, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-09-25', '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 (36065, 257, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '2.0000', '2021-09-25', '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 (36066, 257, NULL, 8039, '1959', 'ACIDOM', NULL, '12.9000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2021-09-25', '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 (36067, 257, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-09-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 (36068, 257, NULL, 7784, '1704', 'DRAGON CAPS', NULL, '4.2500', '6.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-09-25', 'received', '4.2500', '4.2500', '8.0000', NULL, NULL, 1, 'pc', '8.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 (36069, 257, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-25', '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 (36070, 257, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-25', '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 (36071, 257, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2021-09-25', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (36072, 257, NULL, 7641, '1561', 'LYDIA', NULL, '6.5000', '10.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '0.0000', '2021-09-25', 'received', '6.5000', '6.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (36073, 257, NULL, 7554, '1474', 'NAKLOFEN DUO', NULL, '1.6000', '2.2000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '0.0000', '2021-09-25', 'received', '1.6000', '1.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (36074, 257, NULL, 7601, '1521', 'PREGASAFE 75', NULL, '13.5000', '18.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '202.5000', '0.0000', '2021-09-25', 'received', '13.5000', '13.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (36075, 257, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '12.5000', '16.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '1.0000', '2021-09-25', '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 (36076, 257, NULL, 3009, '25462573', 'B CO STRONG KRIKA ORIGINAL', NULL, '8.3000', '14.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '1.0000', '2021-09-25', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (36077, 257, NULL, 9337, '3257', 'ANDREWS LIVER SALTS', NULL, '0.7000', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-09-25', '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 (36078, 257, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '10.0000', '2021-09-25', '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 (36079, 257, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2021-09-25', '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 (36080, 257, NULL, 9457, '08890691', 'C PHENIRAMINE SYRUP 125ML', NULL, '2.9800', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.9400', '1.0000', '2021-09-25', 'received', '2.9800', '2.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.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 (36081, 257, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '2.7500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-09-25', 'received', '2.7500', '2.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (36082, 257, NULL, 8037, '1957', 'EZIPEN', NULL, '1.7600', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6000', '0.0000', '2021-09-25', 'received', '1.7600', '1.7600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (36083, 257, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '18.8200', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4600', '2.0000', '2021-09-25', 'received', '18.8200', '18.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (36084, 257, NULL, 9535, '52629239', 'VIGINAX CREAM', NULL, '3.4000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2000', '3.0000', '2021-09-25', 'received', '3.4000', '3.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (36085, 257, NULL, 9536, '70263043', 'VIGINAX TAB', NULL, '2.6500', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9500', '3.0000', '2021-09-25', '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 (36086, 257, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '10.0000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-09-25', '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 (36087, 257, NULL, 9325, '3245', 'LAWSON HERBAL MIXTURE', NULL, '8.8000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6000', '0.0000', '2021-09-25', 'received', '8.8000', '8.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (36088, 257, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '2.0000', '2021-09-25', '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 (36089, 257, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '5.0000', '2021-09-25', '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 (36090, 257, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '45.0000', '2021-09-25', 'received', '2.2000', '2.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (36091, 257, NULL, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.4900', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.9000', '1.0000', '2021-09-25', '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 (36092, 257, NULL, 8005, '1925', 'ADDYZOA', NULL, '49.0000', '65.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '0.0000', '2021-09-25', '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 (36093, 257, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '25.0000', '33.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-09-25', '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 (36094, 257, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '2.2500', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-25', 'received', '2.2500', '2.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (36095, 257, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '1.5800', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.6000', '0.0000', '2021-09-25', 'received', '1.5800', '1.5800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (36096, 257, NULL, 2608, '57349245', 'CELLGEVITY', NULL, '83.3300', '110.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '416.6500', '4.0000', '2021-09-25', 'received', '83.3300', '83.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (36097, 257, NULL, 8466, '2386', 'CELGIVITY', NULL, '2.8900', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.7000', '0.0000', '2021-09-25', 'received', '2.8900', '2.8900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (36122, NULL, NULL, 8744, '', '', 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 (36123, NULL, NULL, 2668, '', '', 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 (36124, NULL, NULL, 8646, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36125, NULL, NULL, 7746, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36126, NULL, NULL, 7671, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-67.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36127, NULL, NULL, 2842, '', '', 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 (36128, NULL, NULL, 2401, '', '', 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 (36129, NULL, NULL, 7781, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36130, NULL, NULL, 7708, '', '', 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 (36131, NULL, NULL, 7593, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36132, NULL, NULL, 7883, '', '', 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 (36133, NULL, NULL, 2787, '', '', 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 (36134, NULL, NULL, 1804, '', '', 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 (36135, NULL, NULL, 8645, '', '', 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 (36136, NULL, NULL, 1586, '', '', 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 (36137, NULL, NULL, 2250, '', '', 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 (36138, NULL, NULL, 8152, '', '', 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 (36139, NULL, NULL, 2643, '', '', 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 (36140, NULL, NULL, 8712, '', '', 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 (36141, NULL, NULL, 7416, '', '', 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 (36142, NULL, NULL, 7521, '', '', 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 (36143, NULL, NULL, 1759, '', '', 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 (36144, NULL, NULL, 1460, '', '', 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 (36145, NULL, NULL, 2517, '', '', 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 (36146, NULL, NULL, 8993, '', '', 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 (36147, NULL, NULL, 7546, '', '', 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 (36148, NULL, NULL, 2031, '', '', 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 (36149, NULL, NULL, 7708, '', '', 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 (36150, NULL, NULL, 7849, '', '', 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 (36151, NULL, NULL, 2392, '', '', 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 (36152, NULL, NULL, 2022, '', '', 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 (36153, NULL, NULL, 7915, '', '', 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 (36154, NULL, NULL, 9494, '', '', 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 (36155, NULL, NULL, 7342, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (36156, NULL, NULL, 8666, '', '', 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 (36157, NULL, NULL, 3047, '', '', 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 (36158, NULL, NULL, 3017, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36159, NULL, NULL, 8677, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-188.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36160, NULL, NULL, 7922, '', '', 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 (36161, NULL, NULL, 8626, '', '', 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 (36162, NULL, NULL, 7711, '', '', 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 (36163, NULL, NULL, 7748, '', '', 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 (36164, NULL, NULL, 2964, '', '', 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 (36165, NULL, NULL, 7514, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-270.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36166, NULL, NULL, 1605, '', '', 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 (36167, NULL, NULL, 8362, '', '', 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 (36168, NULL, NULL, 9492, '', '', 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 (36169, NULL, NULL, 2617, '', '', 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 (36170, NULL, NULL, 8116, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36171, NULL, NULL, 7417, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (36172, NULL, NULL, 7534, '', '', 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 (36173, NULL, NULL, 8252, '', '', 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 (36174, NULL, NULL, 2623, '', '', 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 (36175, NULL, NULL, 7404, '', '', 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 (36176, NULL, NULL, 8765, '', '', 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 (36177, NULL, NULL, 8746, '', '', 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 (36178, NULL, NULL, 7926, '', '', 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 (36179, NULL, NULL, 7894, '', '', 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 (36180, NULL, NULL, 7980, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-110.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36181, NULL, NULL, 3024, '', '', 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 (36182, NULL, NULL, 2567, '', '', 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 (36183, NULL, NULL, 8111, '', '', 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 (36184, NULL, NULL, 3059, '', '', 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 (36185, NULL, NULL, 7408, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36186, NULL, NULL, 2681, '', '', 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 (36187, NULL, NULL, 1641, '', '', 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 (36188, NULL, NULL, 8166, '', '', 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 (36189, NULL, NULL, 2335, '', '', 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 (36190, NULL, NULL, 8608, '', '', 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 (36191, NULL, NULL, 8188, '', '', 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 (36192, NULL, NULL, 9544, '', '', 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 (36193, NULL, NULL, 2059, '', '', 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 (36194, NULL, NULL, 9293, '', '', 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 (36195, NULL, NULL, 7797, '', '', 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 (36196, NULL, NULL, 9134, '', '', 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 (36197, NULL, NULL, 1728, '', '', 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 (36198, NULL, NULL, 7490, '', '', 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 (36199, NULL, NULL, 7672, '', '', 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 (36200, NULL, NULL, 2555, '', '', 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 (36201, NULL, NULL, 9084, '', '', 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 (36202, NULL, NULL, 9006, '', '', 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 (36203, NULL, NULL, 9385, '', '', 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 (36204, NULL, NULL, 8086, '', '', 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 (36205, NULL, NULL, 8941, '', '', 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 (36206, NULL, NULL, 1529, '', '', 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 (36207, NULL, NULL, 9445, '', '', 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 (36208, NULL, NULL, 2395, '', '', 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 (36209, NULL, NULL, 7637, '', '', 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 (36213, NULL, NULL, 8315, '', '', 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 (36214, NULL, NULL, 7746, '', '', 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 (36215, NULL, NULL, 9508, '', '', 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 (36216, NULL, NULL, 7386, '', '', 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 (36217, NULL, NULL, 7877, '', '', 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 (36218, NULL, NULL, 7541, '', '', 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 (36219, NULL, NULL, 8199, '', '', 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 (36220, NULL, NULL, 1840, '', '', 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 (36221, NULL, NULL, 7899, '', '', 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 (36222, NULL, NULL, 7787, '', '', 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 (36223, NULL, NULL, 7666, '', '', 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 (36224, NULL, NULL, 2288, '', '', 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 (36225, NULL, NULL, 1486, '', '', 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 (36226, NULL, NULL, 2305, '', '', 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 (36227, NULL, NULL, 2861, '', '', 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 (36228, NULL, NULL, 9518, '', '', 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 (36229, NULL, NULL, 8679, '', '', 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 (36230, NULL, NULL, 8673, '', '', 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 (36231, NULL, NULL, 7731, '', '', 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 (36232, NULL, NULL, 2367, '', '', 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 (36233, NULL, NULL, 2976, '', '', 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 (36234, NULL, NULL, 8077, '', '', 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 (36235, NULL, NULL, 8020, '', '', 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 (36236, NULL, NULL, 7328, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36237, NULL, NULL, 8186, '', '', 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 (36238, NULL, NULL, 7342, '', '', 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 (36239, NULL, NULL, 7686, '', '', 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 (36240, NULL, NULL, 1632, '', '', 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 (36241, NULL, NULL, 7702, '', '', 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 (36242, NULL, NULL, 7542, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36243, NULL, NULL, 7780, '', '', 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 (36244, NULL, NULL, 7583, '', '', 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 (36245, NULL, NULL, 8384, '', '', 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 (36246, NULL, NULL, 8027, '', '', 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 (36247, NULL, NULL, 7901, '', '', 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 (36248, NULL, NULL, 1333, '', '', 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 (36249, NULL, NULL, 8998, '', '', 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 (36250, NULL, NULL, 9519, '', '', 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 (36251, NULL, NULL, 2095, '', '', 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 (36252, NULL, NULL, 2386, '', '', 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 (36253, NULL, NULL, 8455, '', '', 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 (36254, NULL, NULL, 1976, '', '', 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 (36255, NULL, NULL, 7335, '', '', 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 (36256, NULL, NULL, 8425, '', '', 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 (36257, NULL, NULL, 8428, '', '', 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 (36258, NULL, NULL, 8672, '', '', 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 (36259, NULL, NULL, 7359, '', '', 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 (36260, NULL, NULL, 7881, '', '', 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 (36261, NULL, NULL, 2953, '', '', 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 (36262, NULL, NULL, 8933, '', '', 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 (36263, NULL, NULL, 8021, '', '', 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 (36264, NULL, NULL, 2131, '', '', 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 (36265, NULL, NULL, 7406, '', '', 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 (36266, NULL, NULL, 7588, '', '', 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 (36267, NULL, NULL, 7472, '', '', 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 (36268, NULL, NULL, 2851, '', '', 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 (36269, NULL, NULL, 1365, '', '', 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 (36270, NULL, NULL, 2955, '', '', 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 (36271, NULL, NULL, 7909, '', '', 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 (36272, NULL, NULL, 2493, '', '', 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 (36276, NULL, NULL, 2547, '', '', 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 (36277, NULL, NULL, 1544, '', '', 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 (36278, NULL, NULL, 1818, '', '', 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 (36317, NULL, NULL, 8728, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36318, NULL, NULL, 9110, '', '', 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 (36319, NULL, NULL, 7893, '', '', 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 (36320, NULL, NULL, 8773, '', '', 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 (36321, NULL, NULL, 8525, '', '', 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 (36401, NULL, NULL, 7658, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-126.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36402, NULL, NULL, 8712, '', '', 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 (36403, NULL, NULL, 1857, '', '', 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 (36404, NULL, NULL, 8202, '', '', 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 (36405, NULL, NULL, 8511, '', '', 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 (36406, NULL, NULL, 8849, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36407, NULL, NULL, 8887, '', '', 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 (36408, NULL, NULL, 8858, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36409, NULL, NULL, 9532, '', '', 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 (36410, NULL, NULL, 9311, '', '', 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 (36411, NULL, NULL, 7328, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-157.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36412, NULL, NULL, 1667, '', '', 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 (36413, NULL, NULL, 7652, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-93.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36414, NULL, NULL, 7522, '', '', 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 (36415, NULL, NULL, 8325, '', '', 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 (36416, NULL, NULL, 1604, '', '', 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 (36417, NULL, NULL, 1720, '', '', 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 (36418, NULL, NULL, 8165, '', '', 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 (36419, NULL, NULL, 9496, '', '', 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 (36420, NULL, NULL, 7412, '', '', 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 (36421, NULL, NULL, 2132, '', '', 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 (36422, NULL, NULL, 8717, '', '', 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 (36423, NULL, NULL, 1308, '', '', 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 (36424, NULL, NULL, 1390, '', '', 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 (36425, NULL, NULL, 7427, '', '', 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 (36426, NULL, NULL, 8000, '', '', 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 (36427, NULL, NULL, 8247, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (36428, NULL, NULL, 2259, '', '', 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 (36429, NULL, NULL, 1488, '', '', 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 (36430, NULL, NULL, 2332, '', '', 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 (36431, NULL, NULL, 8177, '', '', 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 (36432, NULL, NULL, 8662, '', '', 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 (36433, NULL, NULL, 2093, '', '', 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 (36434, NULL, NULL, 1455, '', '', 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 (36435, NULL, NULL, 7593, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (36436, NULL, NULL, 9482, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36437, NULL, NULL, 8745, '', '', 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 (36438, NULL, NULL, 8773, '', '', 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 (36439, NULL, NULL, 2965, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (36440, NULL, NULL, 7951, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36441, NULL, NULL, 8164, '', '', 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 (36442, NULL, NULL, 2476, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36443, NULL, NULL, 9358, '', '', 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 (36444, NULL, NULL, 7628, '', '', 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 (36445, NULL, NULL, 8138, '', '', 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 (36446, NULL, NULL, 8163, '', '', 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 (36447, NULL, NULL, 8829, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36448, NULL, NULL, 1554, '', '', 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 (36449, NULL, NULL, 7663, '', '', 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 (36450, NULL, NULL, 2381, '', '', 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 (36451, NULL, NULL, 7910, '', '', 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 (36452, NULL, NULL, 7559, '', '', 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 (36453, NULL, NULL, 2409, '', '', 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 (36454, NULL, NULL, 2967, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36455, NULL, NULL, 9310, '', '', 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 (36456, NULL, NULL, 2882, '', '', 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 (36457, NULL, NULL, 2883, '', '', 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 (36458, NULL, NULL, 8925, '', '', 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 (36459, NULL, NULL, 1755, '', '', 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 (36460, NULL, NULL, 9162, '', '', 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 (36461, NULL, NULL, 7379, '', '', 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 (36462, NULL, NULL, 8759, '', '', 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 (36463, NULL, NULL, 2912, '', '', 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 (36578, NULL, NULL, 1738, '', '', 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 (36579, NULL, NULL, 2871, '', '', 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 (36580, NULL, NULL, 7802, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-59.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36581, NULL, NULL, 7438, '', '', 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 (36582, NULL, NULL, 9335, '', '', 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 (36583, NULL, NULL, 8615, '', '', 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 (36584, NULL, NULL, 2773, '', '', 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 (36585, NULL, NULL, 1485, '', '', 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 (36586, NULL, NULL, 1571, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36587, NULL, NULL, 8207, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-38.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36588, NULL, NULL, 8020, '', '', 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 (36589, NULL, NULL, 7886, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36590, NULL, NULL, 7952, '', '', 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 (36591, NULL, NULL, 7739, '', '', 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 (36592, NULL, NULL, 7710, '', '', 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 (36593, NULL, NULL, 7482, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-66.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36594, NULL, NULL, 8638, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (36595, NULL, NULL, 2570, '', '', 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 (36596, NULL, NULL, 9556, '', '', 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 (36597, NULL, NULL, 9204, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36598, NULL, NULL, 7590, '', '', 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 (36599, NULL, NULL, 2984, '', '', 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 (36600, NULL, NULL, 1576, '', '', 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 (36601, NULL, NULL, 1827, '', '', 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 (36602, NULL, NULL, 8072, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36603, NULL, NULL, 8767, '', '', 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 (36660, 251, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '1.6500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-09-16', 'received', '1.6500', '1.6500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (36661, 251, NULL, 9269, '3189', 'LETARON SYRUP', NULL, '1.6500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-09-16', 'received', '1.6500', '1.6500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (36662, 251, NULL, 9271, '3191', 'LETAFEN SUSPENSION', NULL, '0.9900', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2021-09-16', 'received', '0.9900', '0.9900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (36663, 251, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '4.0000', '2021-09-16', '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 (36664, 251, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '2.4500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '1.0000', '2021-09-16', 'received', '2.4500', '2.4500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (36665, 251, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4000', '0.0000', '2021-09-16', 'received', '2.8000', '2.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (36666, 251, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '1.5500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '19.0000', '2021-09-16', 'received', '1.5500', '1.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (36667, 251, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '18.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-09-16', '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 (36668, 251, NULL, 2602, '86780065', 'CLOVES ', NULL, '4.0000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '17.0000', '2021-09-16', '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 (36669, 251, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.5700', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7000', '5.0000', '2021-09-16', 'received', '2.5700', '2.5700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (36670, 251, NULL, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', NULL, '5.0000', '7.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-09-16', '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 (36671, 251, NULL, 8063, '1983', 'GLUCOSE CHECK', NULL, '1.6000', '7.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-09-16', 'received', '1.6000', '1.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (36672, 251, NULL, 8325, '2245', 'COLGATE BRUSH', NULL, '2.0000', '3.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-09-16', '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 (36673, 251, NULL, 8616, '2536', 'LISTERINE B/S', NULL, '23.0000', '30.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.0000', '2.0000', '2021-09-16', 'received', '23.0000', '23.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (36674, 251, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.0000', '20.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '3.0000', '2021-09-16', 'received', '15.0000', '15.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (36675, 251, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-09-16', '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 (36676, 251, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-16', '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 (36677, 251, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-16', '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 (36678, 251, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.0100', '32.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0200', '0.0000', '2021-09-16', 'received', '24.0100', '24.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.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 (36679, 251, NULL, 9561, '27276373', 'NICHE EXTRA DARK CHOCHOLATE', NULL, '6.0000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-09-16', '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 (36680, 251, NULL, 9562, '94994180', 'NICHE DARK CHOCHOLATE', NULL, '5.4000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2000', '0.0000', '2021-09-16', 'received', '5.4000', '5.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (36681, 251, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHOLATE', NULL, '5.1000', '6.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.8000', '0.0000', '2021-09-16', 'received', '5.1000', '5.1000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (36682, NULL, NULL, 3058, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36683, NULL, NULL, 7472, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36684, NULL, NULL, 1576, '', '', 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 (36685, NULL, NULL, 1562, '', '', 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 (36686, NULL, NULL, 2398, '', '', 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 (36687, NULL, NULL, 2005, '', '', 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 (36688, NULL, NULL, 9559, '', '', 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 (36689, NULL, NULL, 9442, '', '', 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 (36690, NULL, NULL, 9432, '', '', 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 (36691, NULL, NULL, 8826, '', '', 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 (36692, NULL, NULL, 8015, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36693, NULL, NULL, 7376, '', '', 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 (36694, NULL, NULL, 2414, '', '', 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 (36695, NULL, NULL, 7585, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36696, NULL, NULL, 7659, '', '', 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 (36697, NULL, NULL, 9371, '', '', 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 (36698, NULL, NULL, 8065, '', '', 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 (36699, NULL, NULL, 1427, '', '', 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 (36700, NULL, NULL, 8903, '', '', 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 (36701, NULL, NULL, 9420, '', '', 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 (36702, NULL, NULL, 2290, '', '', 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 (36703, NULL, NULL, 8649, '', '', 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 (36704, NULL, NULL, 7684, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36705, NULL, NULL, 2252, '', '', 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 (36706, NULL, NULL, 8638, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36707, NULL, NULL, 9556, '', '', 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 (36708, NULL, NULL, 1889, '', '', 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 (36709, NULL, NULL, 7609, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36710, NULL, NULL, 7341, '', '', 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 (36711, NULL, NULL, 8181, '', '', 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 (36712, NULL, NULL, 1829, '', '', 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 (36713, NULL, NULL, 9318, '', '', 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 (36714, NULL, NULL, 2960, '', '', 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 (36715, NULL, NULL, 9488, '', '', 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 (36716, NULL, NULL, 7496, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36717, NULL, NULL, 9517, '', '', 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 (36718, NULL, NULL, 2868, '', '', 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 (36719, NULL, NULL, 8447, '', '', 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 (36750, NULL, NULL, 9554, '', '', 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 (36751, NULL, NULL, 8539, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36752, NULL, NULL, 7825, '', '', 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 (36753, NULL, NULL, 2660, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36754, NULL, NULL, 9047, '', '', 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 (36755, NULL, NULL, 8427, '', '', 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 (36756, NULL, NULL, 7991, '', '', 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 (36757, NULL, NULL, 2307, '', '', 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 (36758, NULL, NULL, 2245, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36759, NULL, NULL, 7573, '', '', 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 (36884, NULL, NULL, 7571, '', '', 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 (36885, NULL, NULL, 1914, '', '', 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 (36886, NULL, NULL, 2470, '', '', 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 (36887, NULL, NULL, 2963, '', '', 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 (36888, NULL, NULL, 8388, '', '', 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 (36889, NULL, NULL, 8669, '', '', 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 (36890, NULL, NULL, 7744, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-45.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36891, NULL, NULL, 7593, '', '', 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 (36892, NULL, NULL, 8982, '', '', 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 (36893, NULL, NULL, 9468, '', '', 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 (36894, NULL, NULL, 2650, '', '', 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 (36895, NULL, NULL, 1764, '', '', 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 (36896, NULL, NULL, 7682, '', '', 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 (36897, NULL, NULL, 2467, '', '', 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 (36898, NULL, NULL, 9557, '', '', 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 (36899, NULL, NULL, 2870, '', '', 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 (36900, NULL, NULL, 7326, '', '', 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 (36901, NULL, NULL, 1785, '', '', 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 (36902, NULL, NULL, 7728, '', '', 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 (36903, NULL, NULL, 7685, '', '', 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 (36951, NULL, NULL, 7496, '', '', 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 (36952, NULL, NULL, 7853, '', '', 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 (36953, NULL, NULL, 8203, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36954, NULL, NULL, 7370, '', '', 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 (36955, NULL, NULL, 7927, '', '', 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 (36956, NULL, NULL, 8789, '', '', 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 (36957, NULL, NULL, 2416, '', '', 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 (36958, NULL, NULL, 1541, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36959, NULL, NULL, 2249, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (36960, NULL, NULL, 2288, '', '', 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 (36961, NULL, NULL, 2965, '', '', 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 (36962, NULL, NULL, 7707, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (36963, NULL, NULL, 8933, '', '', 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 (36964, NULL, NULL, 8620, '', '', 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 (36965, NULL, NULL, 8381, '', '', 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 (36966, NULL, NULL, 7446, '', '', 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 (36967, NULL, NULL, 8866, '', '', 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 (36968, NULL, NULL, 7491, '', '', 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 (36969, NULL, NULL, 7753, '', '', 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 (36970, NULL, NULL, 9103, '', '', 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 (37365, 264, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '5.9500', '8.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '8.0000', '2021-10-08', 'received', '5.9500', '5.9500', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '5.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 (37366, 264, NULL, 8789, '2709', 'ABC *ZINC SRP', NULL, '4.9400', '7.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5200', '0.0000', '2021-10-08', 'received', '4.9400', '4.9400', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '4.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 (37367, 264, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '5.0000', '2021-10-08', 'received', '13.0000', '13.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37368, 264, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.6000', '2.0000', '2021-10-08', '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 (37369, 264, NULL, 8065, '1985', 'AMOKSIKLAV 1G', NULL, '32.0000', '42.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '0.0000', '2021-10-08', '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 (37370, 264, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.7100', '30.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.8400', '1.0000', '2021-10-08', 'received', '22.7100', '22.7100', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37371, 264, NULL, 7427, '1347', 'AZOMAX 500', NULL, '25.0000', '33.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-10-08', 'received', '25.0000', '25.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37372, 264, NULL, 9154, '3074', 'ZYMAX 500', NULL, '10.6800', '16.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.4400', '0.0000', '2021-10-08', 'received', '10.6800', '10.6800', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '10.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 (37373, 264, NULL, 7408, '1328', 'TAGERA FORTE', NULL, '5.2800', '7.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2400', '0.0000', '2021-10-08', 'received', '5.2800', '5.2800', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37374, 264, NULL, 8923, '2843', 'BG GLUTAMIN PLUS', NULL, '7.2500', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2021-10-08', 'received', '7.2500', '7.2500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37375, 264, NULL, 8341, '2261', 'APTIZOOM', NULL, '30.6900', '40.1000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.3800', '0.0000', '2021-10-08', 'received', '30.6900', '30.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (37376, 264, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '13.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.5000', '1.0000', '2021-10-08', 'received', '9.5000', '9.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (37377, 264, NULL, 8520, '2440', 'SALBUTAMOL CFC INH', NULL, '19.6900', '26.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.3800', '2.0000', '2021-10-08', 'received', '19.6900', '19.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (37378, 264, NULL, 8163, '2083', 'OTRIVIN ADULT', NULL, '22.8600', '31.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7200', '0.0000', '2021-10-08', 'received', '22.8600', '22.8600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (37379, 264, NULL, 7708, '1628', 'TEEDAR', NULL, '6.1400', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.4000', '0.0000', '2021-10-08', 'received', '6.1400', '6.1400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (37380, 264, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '10.0000', '2021-10-08', 'received', '5.2000', '5.2000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (37381, 264, NULL, 9510, '60852266', 'QUINNE SULPHATE TAB', NULL, '23.4700', '30.1000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4700', '0.0000', '2021-10-08', 'received', '23.4700', '23.4700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '23.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 (37382, 264, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '6.3000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '0.0000', '2021-10-08', 'received', '6.3000', '6.3000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37383, 264, NULL, 7623, '1543', 'NIGHT NURSE CAPS', NULL, '34.7700', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5400', '0.0000', '2021-10-08', 'received', '34.7700', '34.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.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 (37384, 264, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '53.1600', '70.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1600', '0.0000', '2021-10-08', 'received', '53.1600', '53.1600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '53.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 (37385, 264, NULL, 7482, '1402', 'MAXMOX 500', NULL, '3.2500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-10-08', 'received', '3.2500', '3.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (37386, 264, NULL, 7323, '1243', 'LUEX CHILD DRY', NULL, '7.9800', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9200', '0.0000', '2021-10-08', 'received', '7.9800', '7.9800', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37387, 264, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.0100', '17.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.1000', '7.0000', '2021-10-08', 'received', '13.0100', '13.0100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (37388, 264, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '13.5000', '18.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '4.0000', '2021-10-08', 'received', '13.5000', '13.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37389, 264, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '6.0300', '8.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.2400', '8.0000', '2021-10-08', 'received', '6.0300', '6.0300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '6.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 (37390, 264, NULL, 7648, '1568', 'BX SRP100ML', NULL, '5.4000', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-10-08', '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 (37391, 264, NULL, 7925, '1845', 'NEXCOFER B/S', NULL, '6.8000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '0.0000', '2021-10-08', 'received', '6.8000', '6.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37392, 264, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.3400', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.3600', '1.0000', '2021-10-08', 'received', '7.3400', '7.3400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.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 (37393, 264, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '145.5600', '192.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.5600', '0.0000', '2021-10-08', 'received', '145.5600', '145.5600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '145.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 (37394, 264, NULL, 8903, '2823', 'MALIN BABY', NULL, '5.3700', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4800', '1.0000', '2021-10-08', 'received', '5.3700', '5.3700', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37395, 264, NULL, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '5.8300', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.3200', '1.0000', '2021-10-08', 'received', '5.8300', '5.8300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37396, 264, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-10-08', '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 (37397, 264, NULL, 7411, '1331', 'CITRO C', NULL, '1.3500', '2.0000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.7500', '0.0000', '2021-10-08', 'received', '1.3500', '1.3500', '125.0000', NULL, NULL, 1, 'pc', '125.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 (37398, 264, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.4200', '0.6000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '47.0000', '2021-10-08', 'received', '0.4200', '0.4200', '125.0000', NULL, NULL, 1, 'pc', '125.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 (37399, 264, NULL, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '34.6600', '46.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.6400', '2.0000', '2021-10-08', 'received', '34.6600', '34.6600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '34.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 (37400, 264, NULL, 7914, '1834', 'ZUDREX SRP', NULL, '5.4300', '7.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7200', '0.0000', '2021-10-08', 'received', '5.4300', '5.4300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37401, 264, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4300', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1500', '0.0000', '2021-10-08', 'received', '5.4300', '5.4300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37402, 264, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '3.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '8.0000', '2021-10-08', 'received', '1.9700', '1.9700', '12.0000', NULL, NULL, 1, 'pc', '12.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 (37403, 264, NULL, 7632, '1552', 'CIPROLEX TAB', NULL, '9.8500', '13.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.8000', '0.0000', '2021-10-08', 'received', '9.8500', '9.8500', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37404, 264, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '4.0000', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-10-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 (37405, 264, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '0.0000', '2021-10-08', '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 (37406, 264, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '14.9000', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '1.0000', '2021-10-08', 'received', '14.9000', '14.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.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 (37407, 264, NULL, 8046, '1966', 'TRANEXAMIC ACID', NULL, '1.5000', '2.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-10-08', '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 (37408, 264, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-10-08', '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 (37409, 264, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.7600', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '0.0000', '2021-10-08', 'received', '6.7600', '6.7600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (37410, 264, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '10.9000', '14.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.9000', '0.0000', '2021-10-08', 'received', '10.9000', '10.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (37411, 264, NULL, 9570, '30228241', 'BENDRO 5MG (ECL)', NULL, '0.5700', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '50.0000', '2021-10-08', 'received', '0.5700', '0.5700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (37412, 264, NULL, 9158, '3078', 'METRO Z SUSP', NULL, '5.8900', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4500', '0.0000', '2021-10-08', 'received', '5.8900', '5.8900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37413, 264, NULL, 8084, '2004', 'METROLEX F SUSP', NULL, '11.7200', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1600', '0.0000', '2021-10-08', 'received', '11.7200', '11.7200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (37414, 264, NULL, 9193, '3113', 'AZIRON 500MG TABS', NULL, '6.8300', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.3000', '0.0000', '2021-10-08', '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 (37415, 264, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '17.9300', '24.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8600', '1.0000', '2021-10-08', 'received', '17.9300', '17.9300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.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 (37416, 264, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3200', '0.0000', '2021-10-08', '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 (37417, 264, NULL, 8142, '2062', 'DICLOLEX CREAM', NULL, '6.5100', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0400', '1.0000', '2021-10-08', 'received', '6.5100', '6.5100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (37418, 264, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '5.9900', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9600', '0.0000', '2021-10-08', 'received', '5.9900', '5.9900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.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 (37419, 264, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '37.8000', '52.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2021-10-08', 'received', '37.8000', '37.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (37420, 264, NULL, 7855, '1775', 'SPERMAN', NULL, '37.9000', '50.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9000', '1.0000', '2021-10-08', 'received', '37.9000', '37.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (37421, 264, NULL, 7800, '1720', 'CLOMID 50', NULL, '4.9000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2021-10-08', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (37422, 264, NULL, 7846, '1766', 'COLESTOP 10', NULL, '13.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-10-08', '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 (37423, 264, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '4.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-10-08', '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 (37424, 264, NULL, 2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', NULL, '29.7000', '39.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '2.0000', '2021-10-08', 'received', '29.7000', '29.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (37425, 264, NULL, 8920, '2840', 'ANTACID BELLS', NULL, '9.8500', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '0.0000', '2021-10-08', 'received', '9.8500', '9.8500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37426, 264, NULL, 7736, '1656', 'NUGEL -O', NULL, '15.0000', '21.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-10-08', '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 (37427, 264, NULL, 7857, '1777', 'NUGEL', NULL, '15.1300', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5200', '0.0000', '2021-10-08', 'received', '15.1300', '15.1300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37428, 264, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-10-08', '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 (37429, 264, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.8400', '10.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7200', '0.0000', '2021-10-08', 'received', '7.8400', '7.8400', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37430, 264, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '7.8400', '11.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7200', '0.0000', '2021-10-08', 'received', '7.8400', '7.8400', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37431, 264, NULL, 7318, '1238', 'LONART SUSP', NULL, '9.5000', '13.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-10-08', 'received', '9.5000', '9.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37432, 264, NULL, 7779, '1699', 'LUFART SUSP', NULL, '9.3500', '12.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.8000', '0.0000', '2021-10-08', 'received', '9.3500', '9.3500', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37433, 264, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '3.8200', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.1000', '2.0000', '2021-10-08', 'received', '3.8200', '3.8200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37434, 264, NULL, 9571, '57676808', 'HAEMOGLOBIN VIT+B12 SYR', NULL, '17.1000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '1.0000', '2021-10-08', 'received', '17.1000', '17.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.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 (37435, 264, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '29.0000', '39.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2021-10-08', '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 (37436, 264, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.8000', '6.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '2.0000', '2021-10-08', 'received', '4.8000', '4.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37437, 264, NULL, 7752, '1672', 'HYDROGEN LOCAL', NULL, '2.6100', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0500', '0.0000', '2021-10-08', 'received', '2.6100', '2.6100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (37438, 264, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.8200', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.2000', '0.0000', '2021-10-08', 'received', '7.8200', '7.8200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (37439, 262, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-10-06', '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 (37440, 262, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-10-06', 'received', '1.1500', '1.1500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (37441, 262, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '15.6000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2021-10-06', 'received', '15.6000', '15.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (37442, 262, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.0200', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2021-10-06', '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 (37443, 262, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-10-06', '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 (37444, 262, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.5200', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-10-06', 'received', '0.5200', '0.5200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (37445, 262, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '0.0000', '2021-10-06', '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 (37446, 262, NULL, 9572, '88702320', 'COLGATE TOTAL PASTE', NULL, '14.0000', '18.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-10-06', '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 (37475, NULL, NULL, 7954, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-158.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (37476, NULL, NULL, 8026, '', '', 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 (37477, NULL, NULL, 9550, '', '', 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 (37478, NULL, NULL, 2368, '', '', 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 (37479, NULL, NULL, 9480, '', '', 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 (37480, NULL, NULL, 7844, '', '', 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 (37481, NULL, NULL, 7474, '', '', 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 (37482, NULL, NULL, 8335, '', '', 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 (37483, NULL, NULL, 8282, '', '', 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 (37484, NULL, NULL, 1921, '', '', 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 (37485, NULL, NULL, 1326, '', '', 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 (37486, NULL, NULL, 7963, '', '', 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 (37487, NULL, NULL, 2993, '', '', 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 (37488, NULL, NULL, 1981, '', '', 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 (37489, NULL, NULL, 1696, '', '', 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 (37490, NULL, NULL, 2509, '', '', 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 (37491, NULL, NULL, 8042, '', '', 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 (37492, NULL, NULL, 2409, '', '', 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 (37493, NULL, NULL, 7318, '', '', 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 (37494, NULL, NULL, 9271, '', '', 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 (37495, NULL, NULL, 7317, '', '', 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 (37542, 263, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '4.0000', '2021-10-07', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (37543, 263, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.9500', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.5000', '0.0000', '2021-10-07', 'received', '9.9500', '9.9500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (37544, 263, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '4.0000', '2021-10-07', '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 (37545, 263, NULL, 2954, '42250057', 'BE4 BE4 INSTANT', NULL, '27.0000', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '3.0000', '2021-10-07', '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 (37546, 263, NULL, 7817, '1737', 'ADOM W,G CAPS', NULL, '9.8000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '3.0000', '2021-10-07', '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 (37547, 263, NULL, 7893, '1813', 'ADUTWUMWAA BIT', NULL, '8.0000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '2.0000', '2021-10-07', '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 (37548, 263, NULL, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '8.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '1.0000', '2021-10-07', '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 (37549, 263, NULL, 1418, 'PR-131', 'MADAM CATERINE', NULL, '8.5000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '4.0000', '2021-10-07', '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 (37550, 263, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '0.0000', '2021-10-07', '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 (37551, 263, NULL, 9278, '3198', 'SALINE NASAL LOCAL', NULL, '3.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '1.0000', '2021-10-07', '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 (37552, 263, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '3.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-10-07', '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 (37553, 263, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '5.0000', '2021-10-07', '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 (37554, 263, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '3.0000', '2021-10-07', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37555, 263, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '3.6900', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4500', '0.0000', '2021-10-07', '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 (37556, 263, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '33.0000', '44.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2021-10-07', '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 (37557, 263, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '0.0000', '2021-10-07', 'received', '2.6700', '2.6700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37558, 263, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5000', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '12.0000', '2021-10-07', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (37559, 263, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2021-10-07', '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 (37560, 263, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '68.0000', '2021-10-07', '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 (37561, 263, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '23.2200', '32.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.8800', '4.0000', '2021-10-07', 'received', '23.2200', '23.2200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '23.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 (37562, 263, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '3.0800', '4.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '49.0000', '2021-10-07', 'received', '3.0800', '3.0800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (37563, 263, NULL, 9567, '91285798', 'CARBIMAZOLE TAB 5MG UK', NULL, '4.2000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '20.0000', '2021-10-07', 'received', '4.2000', '4.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (37564, 263, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.9300', '5.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.5000', '26.0000', '2021-10-07', 'received', '3.9300', '3.9300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (37565, 263, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '4.4000', '3.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2021-10-07', '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 (37566, 263, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '16.8900', '22.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5600', '2.0000', '2021-10-07', 'received', '16.8900', '16.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (37567, 263, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '15.0000', '2021-10-07', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (37568, 263, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '53.3200', '71.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6400', '1.0000', '2021-10-07', 'received', '53.3200', '53.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.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 (37569, 263, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '1.0000', '2021-10-07', '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 (37570, 263, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '18.7200', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '1.0000', '2021-10-07', 'received', '18.7200', '18.7200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37571, 263, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2021-10-07', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (37572, 263, NULL, 2665, '94928957', 'FLEMING 625MG', NULL, '23.7600', '32.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.8000', '2.0000', '2021-10-07', 'received', '23.7600', '23.7600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37573, 263, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '33.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.7000', '2.0000', '2021-10-07', '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 (37574, 263, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '75.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '34.0000', '2021-10-07', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (37575, 263, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '1.0000', '2021-10-07', 'received', '1.1500', '1.1500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (37576, 263, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '42.0000', '56.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-10-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 (37577, 263, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.7000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '2.0000', '2021-10-07', '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 (37578, 263, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2021-10-07', '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 (37579, 263, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.6500', '2.0000', '2021-10-07', 'received', '6.3300', '6.3300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (37580, 263, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '8.2000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '5.0000', '2021-10-07', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37581, 263, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.6500', '2.2000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '0.0000', '2021-10-07', 'received', '1.6500', '1.6500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (37582, 263, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.8000', '14.0000', '2021-10-07', '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 (37583, 263, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-10-07', 'received', '10.8000', '10.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (37584, 263, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2021-10-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 (37585, 263, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '6.4000', '9.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.2000', '4.0000', '2021-10-07', 'received', '6.4000', '6.4000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (37586, 263, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '36.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '3.0000', '2021-10-07', '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 (37587, 263, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '1.0000', '2021-10-07', '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 (37588, 263, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '94.0000', '125.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.0000', '0.0000', '2021-10-07', 'received', '94.0000', '94.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '94.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (37589, 263, NULL, 9573, '18958409', 'RONFIT COLD SRP', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '3.0000', '2021-10-07', '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 (37590, NULL, NULL, 7772, '', '', 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 (37591, NULL, NULL, 2260, '', '', 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 (37592, NULL, NULL, 8763, '', '', 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 (37593, NULL, NULL, 9572, '', '', 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 (37594, NULL, NULL, 1483, '', '', 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 (37595, NULL, NULL, 8342, '', '', 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 (37596, NULL, NULL, 2255, '', '', 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 (37597, NULL, NULL, 9175, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (37598, NULL, NULL, 9282, '', '', 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 (37599, NULL, NULL, 2325, '', '', 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 (37600, NULL, NULL, 8949, '', '', 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 (37601, NULL, NULL, 9164, '', '', 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 (37602, NULL, NULL, 2004, '', '', 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 (37603, NULL, NULL, 1846, '', '', 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 (37604, NULL, NULL, 7545, '', '', 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 (37605, NULL, NULL, 2248, '', '', 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 (37606, NULL, NULL, 1440, '', '', 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 (37607, NULL, NULL, 2644, '', '', 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 (37608, NULL, NULL, 2627, '', '', 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 (37609, NULL, NULL, 9195, '', '', 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 (37610, NULL, NULL, 7376, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (37611, NULL, NULL, 8648, '', '', 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 (37612, NULL, NULL, 8679, '', '', 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 (37613, NULL, NULL, 7489, '', '', 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 (37614, NULL, NULL, 2225, '', '', 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 (37615, NULL, NULL, 8676, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (37616, NULL, NULL, 9250, '', '', 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 (37617, NULL, NULL, 8578, '', '', 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 (37618, NULL, NULL, 8699, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (37619, NULL, NULL, 8200, '', '', 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 (37751, 265, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '15.8000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '0.0000', '2021-10-09', 'received', '15.8000', '15.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37752, 265, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.0000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-10-09', '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 (37753, 265, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6100', '9.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4400', '0.0000', '2021-10-09', 'received', '6.6100', '6.6100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (37754, 265, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.2100', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.2000', '0.0000', '2021-10-09', 'received', '2.2100', '2.2100', '20.0000', NULL, NULL, 1, 'pc', '20.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 (37755, 265, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2400', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2000', '21.0000', '2021-10-09', 'received', '3.2400', '3.2400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (37756, 265, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '49.0100', '65.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0300', '0.0000', '2021-10-09', 'received', '49.0100', '49.0100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (37757, 265, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5100', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-10-09', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (37758, 265, NULL, 3059, '98695319', 'INDOMETHACIN', NULL, '0.3200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '33.0000', '2021-10-09', '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 (37759, 265, NULL, 3001, '89996055', 'COTRIM TAB LETAP', NULL, '0.5000', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '23.0000', '2021-10-09', 'received', '0.5000', '0.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (37760, 265, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '0.0000', '2021-10-09', '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 (37761, 265, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '10.0000', '2021-10-09', '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 (37762, 265, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '4.0000', '2021-10-09', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37763, 265, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-10-09', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (37764, 265, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '4.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-10-09', 'received', '3.0000', '3.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (37765, 265, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2021-10-09', '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 (37766, 265, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '32.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3200', '2.0000', '2021-10-09', '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 (37767, 265, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.8000', '0.0000', '2021-10-09', 'received', '1.4000', '1.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (37768, 265, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '1.0000', '2021-10-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 (37769, 265, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-10-09', '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 (37770, 265, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.8000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-10-09', '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 (37771, 265, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '29.1700', '38.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.3400', '0.0000', '2021-10-09', 'received', '29.1700', '29.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (37772, 265, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '0.0000', '2021-10-09', '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 (37773, 265, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '4.9200', '6.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.6000', '0.0000', '2021-10-09', 'received', '4.9200', '4.9200', '30.0000', NULL, NULL, 1, 'pc', '30.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 (37774, 265, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2021-10-09', 'received', '5.0000', '5.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37775, 265, NULL, 8274, '2194', 'DINAC 75', NULL, '8.4300', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2900', '3.0000', '2021-10-09', 'received', '8.4300', '8.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (37776, 265, NULL, 8274, '2194', 'DINAC 75', NULL, '8.4300', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2900', '3.0000', '2021-10-09', 'received', '8.4300', '8.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (37777, 265, NULL, 7576, '1496', 'SOLUBLE ASP', NULL, '6.9100', '2.5000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5600', '0.0000', '2021-10-09', 'received', '6.9100', '6.9100', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '6.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 (37778, 265, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '28.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.9000', '0.0000', '2021-10-09', 'received', '21.1800', '21.1800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37779, 265, NULL, 1497, 'PR-210', 'JARIFAN 2 CAPS', NULL, '10.5000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-10-09', '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 (37780, 265, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2021-10-09', '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 (37781, 265, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.5000', '10.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '0.0000', '2021-10-09', 'received', '6.5000', '6.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (37782, 265, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '0.0000', '2021-10-09', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (37783, 265, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-10-09', '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 (37784, 265, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2021-10-09', '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 (37785, 265, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '6.5000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '3.0000', '2021-10-09', '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 (37786, 265, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.9800', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2021-10-09', 'received', '4.9800', '4.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (37787, 265, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.8800', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4000', '0.0000', '2021-10-09', 'received', '4.8800', '4.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (37788, 265, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '11.0000', '15.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-10-09', '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 (37789, 265, NULL, 9575, '24432561', 'LOSARTAN TAB 50MG UK', NULL, '13.5000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '5.0000', '2021-10-09', '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 (37790, 265, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '4.0000', '2021-10-09', 'received', '4.2000', '4.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (37791, 265, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '16.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2800', '0.0000', '2021-10-09', 'received', '11.8200', '11.8200', '4.0000', NULL, NULL, 1, 'pc', '4.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 (37792, 265, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '0.0000', '2021-10-09', '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 (37793, 265, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.9300', '5.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.5000', '0.0000', '2021-10-09', 'received', '3.9300', '3.9300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (37794, 265, NULL, 8839, '2759', 'EPSON SALT', NULL, '15.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-10-09', '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 (37795, 265, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.0000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-10-09', '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 (37796, 265, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-10-09', '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 (37797, 265, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.7800', '0.0000', '2021-10-09', '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 (37798, 265, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-10-09', '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 (37799, 265, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-10-09', '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 (37800, 265, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '9.7600', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5200', '0.0000', '2021-10-09', 'received', '9.7600', '9.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (37801, 265, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-10-09', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (37802, 265, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6800', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-10-09', 'received', '0.6800', '0.6800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (37803, 265, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-10-09', '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 (37804, 265, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '1.9000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4000', '4.0000', '2021-10-09', 'received', '1.9000', '1.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (37805, 265, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '2.0000', '2021-10-09', '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 (37806, 265, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-10-09', '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 (37807, 265, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2021-10-09', '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 (37808, 265, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-10-09', '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 (37809, 265, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '6.0000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-10-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 (37810, 265, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-10-09', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (37811, 265, NULL, 2375, '02290774', 'PA-KUM( ROCKMAN) CAPS', NULL, '14.0000', '18.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-10-09', '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 (37812, 265, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8500', '0.0000', '2021-10-09', '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 (37813, 265, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '23.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '2.0000', '2021-10-09', '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 (37814, 265, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '5.1000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.3000', '0.0000', '2021-10-09', 'received', '5.1000', '5.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (37815, 265, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-10-09', '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 (37816, 265, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '20.0000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-10-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 (37817, NULL, NULL, 8044, '', '', 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 (37818, NULL, NULL, 7922, '', '', 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 (37819, NULL, NULL, 7866, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (37820, NULL, NULL, 7583, '', '', 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 (37821, NULL, NULL, 7739, '', '', 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 (37822, NULL, NULL, 8876, '', '', 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 (37823, NULL, NULL, 7559, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (37824, NULL, NULL, 1781, '', '', 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 (37825, NULL, NULL, 1463, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (37826, NULL, NULL, 8814, '', '', 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 (37827, NULL, NULL, 7818, '', '', 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 (37828, NULL, NULL, 2289, '', '', 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 (37829, NULL, NULL, 1987, '', '', 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 (37830, NULL, NULL, 7867, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (37831, NULL, NULL, 2297, '', '', 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 (37832, NULL, NULL, 8336, '', '', 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 (37833, NULL, NULL, 7645, '', '', 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 (37834, NULL, NULL, 9562, '', '', 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 (37842, 268, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.4600', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '14.0000', '2021-10-12', 'received', '0.4600', '0.4600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (37843, 268, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '6.8500', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5000', '0.0000', '2021-10-12', 'received', '6.8500', '6.8500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (37844, 268, NULL, 8053, '1973', 'MAGACID TAB', NULL, '0.8000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2021-10-12', '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 (37845, 268, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.4200', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-10-12', '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 (37846, 268, NULL, 7714, '1634', 'MARTINS ORANGE', NULL, '0.4200', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-10-12', '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 (37847, 268, NULL, 8918, '2838', 'APC 10*10', NULL, '1.0400', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '5.0000', '2021-10-12', 'received', '1.0400', '1.0400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (37848, 268, NULL, 9143, '3063', 'CEFUNATE SUSP', NULL, '10.8000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2021-10-12', 'received', '10.8000', '10.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (37849, 268, NULL, 7542, '1462', 'SEPTRI N SUSP', NULL, '3.8100', '5.0300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0500', '0.0000', '2021-10-12', 'received', '3.8100', '3.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (37877, NULL, NULL, 7560, '', '', 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 (37878, NULL, NULL, 1699, '', '', 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 (37879, NULL, NULL, 9547, '', '', 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 (37880, NULL, NULL, 2843, '', '', 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 (37881, NULL, NULL, 1836, '', '', 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 (37882, NULL, NULL, 9563, '', '', 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 (37883, NULL, NULL, 9475, '', '', 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 (37884, NULL, NULL, 7763, '', '', 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 (37885, NULL, NULL, 8131, '', '', 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 (37886, NULL, NULL, 8041, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (37887, NULL, NULL, 7333, '', '', 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 (37888, NULL, NULL, 9230, '', '', 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 (37889, NULL, NULL, 2264, '', '', 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 (37890, NULL, NULL, 8404, '', '', 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 (37891, NULL, NULL, 1884, '', '', 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 (37892, NULL, NULL, 2941, '', '', 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 (37893, NULL, NULL, 8982, '', '', 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 (37894, NULL, NULL, 2215, '', '', 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 (37895, NULL, NULL, 2715, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (37896, NULL, NULL, 7628, '', '', 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 (37897, NULL, NULL, 8080, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (37898, NULL, NULL, 8147, '', '', 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 (37899, NULL, NULL, 2129, '', '', 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 (37900, NULL, NULL, 9018, '', '', 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 (37901, NULL, NULL, 9461, '', '', 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 (37902, NULL, NULL, 7667, '', '', 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 (37903, NULL, NULL, 9470, '', '', 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 (37904, NULL, NULL, 7519, '', '', 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 (37956, NULL, NULL, 1514, '', '', 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 (37957, 269, NULL, 2773, '13013335', 'ADOM W&G CAPS', NULL, '13.5000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '1.0000', '2021-10-13', '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 (37958, 269, NULL, 1395, 'PR-108', 'AMUZU GARLIC', NULL, '9.5000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-10-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 (37959, 269, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '3.3000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-10-13', '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 (37960, 269, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '16.0000', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-10-13', '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 (37961, 269, NULL, 1408, '6050125568200', 'HAPIMAN CAPS', NULL, '9.5000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '1.0000', '2021-10-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 (37962, 269, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-10-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 (37963, 269, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-10-13', '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 (37964, 269, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-10-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 (37965, 269, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-10-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 (37966, 269, NULL, 2151, '05077634', 'TOMAC MIX', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '1.0000', '2021-10-13', '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 (37967, 269, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-10-13', '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 (37968, 269, NULL, 2603, '17379642', 'VITAGO', NULL, '1.0000', '1.3000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '6.0000', '2021-10-13', '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 (37969, 269, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '2.0000', '2021-10-13', '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 (37970, 269, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '0.0000', '2021-10-13', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (37971, 269, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0000', '0.0000', '2021-10-13', 'received', '2.0000', '2.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (37972, 269, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.4500', '47.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '177.2500', '0.0000', '2021-10-13', 'received', '35.4500', '35.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.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 (37973, 269, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '0.0000', '2021-10-13', '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 (37974, 269, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.9500', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8500', '1.0000', '2021-10-13', 'received', '9.9500', '9.9500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (37975, 269, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-13', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (38001, NULL, NULL, 8736, '', '', 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 (38002, NULL, NULL, 2034, '', '', 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 (38003, NULL, NULL, 1426, '', '', 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 (38004, NULL, NULL, 8686, '', '', 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 (38005, NULL, NULL, 9299, '', '', 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 (38006, NULL, NULL, 2912, '', '', 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 (38007, NULL, NULL, 2858, '', '', 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 (38008, NULL, NULL, 2614, '', '', 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 (38009, NULL, NULL, 7533, '', '', 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 (38010, NULL, NULL, 7565, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38011, NULL, NULL, 8102, '', '', 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 (38012, NULL, NULL, 8831, '', '', 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 (38013, NULL, NULL, 9167, '', '', 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 (38014, NULL, NULL, 7404, '', '', 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 (38015, NULL, NULL, 7813, '', '', 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 (38016, NULL, NULL, 7989, '', '', 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 (38017, NULL, NULL, 8065, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-49.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38018, NULL, NULL, 7859, '', '', 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 (38019, NULL, NULL, 2271, '', '', 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 (38020, NULL, NULL, 2435, '', '', 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 (38021, NULL, NULL, 2732, '', '', 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 (38022, NULL, NULL, 8022, '', '', 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 (38023, NULL, NULL, 2359, '', '', 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 (38024, NULL, NULL, 2482, '', '', 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 (38025, NULL, NULL, 2400, '', '', 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 (38026, NULL, NULL, 8621, '', '', 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 (38027, NULL, NULL, 1617, '', '', 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 (38028, NULL, NULL, 9174, '', '', 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 (38029, NULL, NULL, 7809, '', '', 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 (38030, NULL, NULL, 7523, '', '', 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 (38031, NULL, NULL, 9453, '', '', 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 (38032, NULL, NULL, 1671, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-46.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38033, NULL, NULL, 2642, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (38034, NULL, NULL, 1535, '', '', 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 (38035, NULL, NULL, 8039, '', '', 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 (38036, NULL, NULL, 1311, '', '', 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 (38037, NULL, NULL, 8771, '', '', 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 (38038, NULL, NULL, 7885, '', '', 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 (38039, NULL, NULL, 7370, '', '', 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 (38040, NULL, NULL, 7639, '', '', 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 (38041, NULL, NULL, 8746, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38042, NULL, NULL, 8299, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (38043, NULL, NULL, 2057, '', '', 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 (38044, NULL, NULL, 9304, '', '', 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 (38045, NULL, NULL, 8682, '', '', 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 (38046, NULL, NULL, 1680, '', '', 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 (38047, NULL, NULL, 1914, '', '', 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 (38048, NULL, NULL, 2015, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (38049, NULL, NULL, 8178, '', '', 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 (38050, NULL, NULL, 8016, '', '', 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 (38051, NULL, NULL, 7430, '', '', 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 (38052, NULL, NULL, 9107, '', '', 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 (38053, NULL, NULL, 9120, '', '', 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 (38054, NULL, NULL, 8298, '', '', 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 (38055, NULL, NULL, 2289, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (38056, NULL, NULL, 2571, '', '', 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 (38057, NULL, NULL, 2344, '', '', 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 (38064, 270, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '31.5000', '42.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '1.0000', '2021-10-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 (38065, 270, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-10-17', '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 (38066, 270, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-10-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 (38067, 270, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '35.4500', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.3500', '2.0000', '2021-10-17', 'received', '35.4500', '35.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (38068, 270, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-10-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 (38069, 270, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.9700', '1.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '23.0000', '2021-10-17', 'received', '0.9700', '0.9700', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (38070, 270, NULL, 9577, '94410870', 'CETAPOL TABLET 500MG', NULL, '0.3200', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '21.0000', '2021-10-17', '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 (38071, 270, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.7000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '6.0000', '2021-10-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 (38072, 270, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-10-17', '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 (38073, 270, NULL, 2846, '89375851', 'FELEDENE CAP 20MG', NULL, '39.6200', '53.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.8600', '3.0000', '2021-10-17', 'received', '39.6200', '39.6200', '3.0000', NULL, NULL, 1, 'pc', '3.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 (38074, 270, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8700', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1000', '3.0000', '2021-10-17', 'received', '1.8700', '1.8700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (38075, 270, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '8.0000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '6.0000', '2021-10-17', '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 (38076, 270, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '17.0000', '2021-10-17', '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 (38077, 270, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.6600', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6000', '8.0000', '2021-10-17', 'received', '2.6600', '2.6600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (38078, 270, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '15.0000', '2021-10-17', 'received', '1.8800', '1.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (38079, 270, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '32.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-10-17', '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 (38080, 270, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '7.2000', '9.5000', '42.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '302.4000', '7.0000', '2021-10-17', 'received', '7.2000', '7.2000', '42.0000', NULL, NULL, 1, 'pc', '42.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 (38081, 270, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '32.0000', '42.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '576.0000', '7.0000', '2021-10-17', 'received', '32.0000', '32.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (38082, 270, NULL, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '21.0000', '28.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '4.0000', '2021-10-17', 'received', '21.0000', '21.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (38083, 270, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '13.0000', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '2.0000', '2021-10-17', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (38084, 270, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '3.0000', '2021-10-17', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (38138, 271, NULL, 9462, '54691922', 'ADOM OINTMENT', NULL, '4.3000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9000', '0.0000', '2021-10-17', '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 (38139, 271, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '8.0000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-10-17', '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 (38140, 271, NULL, 7894, '1814', 'BOAFO OINT', NULL, '3.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-10-17', 'received', '3.8000', '3.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (38141, 271, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '16.0000', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2021-10-17', '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 (38142, 271, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '4.0000', '2021-10-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 (38143, 271, NULL, 7952, '1872', 'JOY OINT', NULL, '2.3000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-10-17', '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 (38144, 271, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '17.0000', '22.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-10-17', '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 (38145, 271, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-10-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 (38146, 271, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2021-10-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 (38147, 271, NULL, 7889, '1809', 'NAZOR', NULL, '1.2000', '2.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '0.0000', '2021-10-17', '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 (38148, 271, NULL, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '6.1000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '0.0000', '2021-10-17', 'received', '6.1000', '6.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (38149, 271, NULL, 8428, '2348', 'PROSLUV CAPS', NULL, '19.8000', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '1.0000', '2021-10-17', '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 (38150, 271, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-10-17', '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 (38151, 271, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.5000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2021-10-17', '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 (38152, 271, NULL, 2603, '17379642', 'VITAGO', NULL, '1.0000', '1.5000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '36.0000', '2021-10-17', 'received', '1.0000', '1.0000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (38153, 271, NULL, 2652, '49336316', 'ADOM TONIC', NULL, '10.5000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '3.0000', '2021-10-17', '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 (38154, 271, NULL, 7809, '1729', 'MIGHTY P S\'S', NULL, '13.5000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2021-10-17', '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 (38155, 271, NULL, 7834, '1754', 'SOLAK MIX', NULL, '13.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-10-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 (38156, 271, NULL, 8649, '2569', 'TOMAC MIX', NULL, '19.5000', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '1.0000', '2021-10-17', '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 (38170, NULL, NULL, 3034, '', '', 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 (38171, NULL, NULL, 8048, '', '', 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 (38172, NULL, NULL, 7926, '', '', 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 (38173, NULL, NULL, 7984, '', '', 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 (38174, NULL, NULL, 8765, '', '', 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 (38175, NULL, NULL, 8744, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38176, 273, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '3.6900', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4500', '1.0000', '2021-10-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 (38177, 273, NULL, 7962, '1882', 'ARABA BAZEEN', NULL, '22.0000', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2021-10-17', '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 (38178, 273, NULL, 7464, '1384', 'RHINATHIOL ADULT BLUE', NULL, '22.2400', '29.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.7200', '0.0000', '2021-10-17', '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 (38179, 273, NULL, 9160, '3080', 'LUEX NASAL INHALER', NULL, '3.8900', '5.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.6800', '0.0000', '2021-10-17', 'received', '3.8900', '3.8900', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (38180, 273, NULL, 7586, '1506', 'EMGIFLOX SUSP', NULL, '4.1700', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5100', '0.0000', '2021-10-17', 'received', '4.1700', '4.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (38181, 273, NULL, 7338, '1258', 'NIZORAL CREAM', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-10-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 (38182, NULL, NULL, 7679, '', '', 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 (38183, NULL, NULL, 2592, '', '', 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 (38184, NULL, NULL, 7548, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (38185, NULL, NULL, 2296, '', '', 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 (38186, NULL, NULL, 3045, '', '', 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 (38187, NULL, NULL, 2267, '', '', 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 (38188, NULL, NULL, 2221, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-43.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38189, NULL, NULL, 7703, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38190, NULL, NULL, 7453, '', '', 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 (38191, NULL, NULL, 2055, '', '', 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 (38192, NULL, NULL, 8274, '', '', 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 (38193, NULL, NULL, 2676, '', '', 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 (38194, NULL, NULL, 1677, '', '', 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 (38195, NULL, NULL, 1458, '', '', 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 (38196, NULL, NULL, 9373, '', '', 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 (38197, NULL, NULL, 8438, '', '', 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 (38198, NULL, NULL, 2274, '', '', 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 (38199, NULL, NULL, 1637, '', '', 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 (38200, NULL, NULL, 7725, '', '', 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 (38201, NULL, NULL, 9199, '', '', 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 (38395, NULL, NULL, 7799, '', '', 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 (38396, NULL, NULL, 7869, '', '', 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 (38397, NULL, NULL, 7379, '', '', 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 (38398, NULL, NULL, 2095, '', '', 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 (38399, NULL, NULL, 8756, '', '', 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 (38400, NULL, NULL, 9521, '', '', 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 (38401, NULL, NULL, 8751, '', '', 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 (38402, NULL, NULL, 2416, '', '', 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 (38403, NULL, NULL, 2350, '', '', 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 (38404, NULL, NULL, 7367, '', '', 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 (38405, NULL, NULL, 9579, '', '', 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 (38406, NULL, NULL, 1866, '', '', 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 (38407, NULL, NULL, 9204, '', '', 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 (38408, NULL, NULL, 2753, '', '', 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 (38409, NULL, NULL, 1822, '', '', 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 (38410, NULL, NULL, 7629, '', '', 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 (38411, NULL, NULL, 8517, '', '', 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 (38412, NULL, NULL, 7453, '', '', 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 (38413, NULL, NULL, 7933, '', '', 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 (38414, NULL, NULL, 8387, '', '', 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 (38415, NULL, NULL, 8852, '', '', 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 (38416, NULL, NULL, 9502, '', '', 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 (38417, NULL, NULL, 7456, '', '', 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 (38418, NULL, NULL, 7877, '', '', 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 (38419, NULL, NULL, 8807, '', '', 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 (38420, NULL, NULL, 7620, '', '', 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 (38421, NULL, NULL, 7857, '', '', 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 (38422, 272, NULL, 9496, '70277717', 'ENAFEN SUSP 60ML', NULL, '3.8800', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.8000', '0.0000', '2021-10-17', 'received', '3.8800', '3.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (38423, 272, NULL, 8277, '2197', 'ATENOLOL 50', NULL, '6.4000', '8.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4000', '0.0000', '2021-10-17', 'received', '6.4000', '6.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (38424, 272, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '6.3900', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9500', '0.0000', '2021-10-17', 'received', '6.3900', '6.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (38425, 272, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '19.0000', '2021-10-17', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (38426, 272, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '11.6900', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0700', '3.0000', '2021-10-17', 'received', '11.6900', '11.6900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (38427, 272, NULL, 7341, '1261', 'POLYGYNAX', NULL, '24.0100', '32.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0200', '1.0000', '2021-10-17', 'received', '24.0100', '24.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.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 (38428, 272, NULL, 7666, '1586', 'DYMOL TAB', NULL, '3.6000', '5.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2021-10-17', 'received', '3.6000', '3.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (38429, 272, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-10-17', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (38430, 272, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-10-17', '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 (38431, 272, NULL, 7612, '1532', 'DOXYCYCLINE', NULL, '1.7300', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.2000', '0.0000', '2021-10-17', 'received', '1.7300', '1.7300', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.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 (38432, 272, NULL, 8203, '2123', 'INDOCID', NULL, '0.4000', '0.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-10-17', '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 (38433, 272, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.5300', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.5000', '50.0000', '2021-10-17', 'received', '1.5300', '1.5300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (38434, 272, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '0.0000', '2021-10-17', 'received', '0.5300', '0.5300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (38435, 272, NULL, 7375, '1295', 'AXACEF 500', NULL, '4.6200', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '0.0000', '2021-10-17', 'received', '4.6200', '4.6200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (38436, 272, NULL, 9252, '3172', 'KLINDA 300', NULL, '9.8500', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5000', '0.0000', '2021-10-17', '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 (38437, 272, NULL, 7427, '1347', 'AZOMAX 500', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-10-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 (38438, 272, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.8000', '0.0000', '2021-10-17', '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 (38439, 272, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '14.5600', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.8000', '0.0000', '2021-10-17', 'received', '14.5600', '14.5600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (38440, 272, NULL, 7415, '1335', 'CONGESTYL TAB', NULL, '5.4200', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1000', '0.0000', '2021-10-17', '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 (38441, 272, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '26.5700', '35.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.7100', '3.0000', '2021-10-17', 'received', '26.5700', '26.5700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (38442, 272, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '46.3000', '62.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.9000', '0.0000', '2021-10-17', 'received', '46.3000', '46.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '46.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 (38443, 272, NULL, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', NULL, '1.2000', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '50.0000', '2021-10-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 (38444, 272, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '3.0000', '2021-10-17', '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 (38445, 272, NULL, 9028, '2948', 'PROMETHAZINE SRUP', NULL, '3.4800', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8800', '0.0000', '2021-10-17', 'received', '3.4800', '3.4800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (38446, 272, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.8200', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.4000', '0.0000', '2021-10-17', 'received', '7.8200', '7.8200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (38447, 272, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.6400', '22.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.4000', '0.0000', '2021-10-17', 'received', '14.6400', '14.6400', '10.0000', NULL, NULL, 1, 'pc', '10.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 (38448, 272, NULL, 7588, '1508', 'FUNBACT', NULL, '8.0400', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2021-10-17', 'received', '8.0400', '8.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (38449, 272, NULL, 2657, '29274667', 'LOPERON CAPS', NULL, '0.5900', '1.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8000', '17.0000', '2021-10-17', 'received', '0.5900', '0.5900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (38450, 272, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-10-17', '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 (38451, 272, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.4200', '0.6000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-10-17', 'received', '0.4200', '0.4200', '200.0000', NULL, NULL, 1, 'pc', '200.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 (38452, 272, NULL, 7642, '1562', 'LEVON 2', NULL, '5.9200', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2000', '0.0000', '2021-10-17', 'received', '5.9200', '5.9200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (38453, 272, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2500', '0.0000', '2021-10-17', '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 (38454, 272, NULL, 7658, '1578', 'DICLO DENK SUPP', NULL, '1.8400', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '0.0000', '2021-10-17', 'received', '1.8400', '1.8400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (38455, 272, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.8600', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2021-10-17', 'received', '0.8600', '0.8600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (38456, 272, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.2300', '0.0000', '2021-10-17', 'received', '2.2300', '2.2300', '1.0000', NULL, NULL, 1, 'pc', '1.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 (38457, 272, NULL, 7790, '1710', 'COMMIT 50', NULL, '2.2000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-10-17', '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 (38458, 272, NULL, 8316, '2236', 'AMITRIPTLINE 25MG', NULL, '7.5300', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5900', '1.0000', '2021-10-17', '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 (38459, 272, NULL, 7758, '1678', 'MMT', NULL, '2.1800', '3.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0800', '0.0000', '2021-10-17', 'received', '2.1800', '2.1800', '6.0000', NULL, NULL, 1, 'pc', '6.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 (38460, 272, NULL, 7914, '1834', 'ZUDREX SRP', NULL, '5.4300', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2900', '0.0000', '2021-10-17', '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 (38461, 272, NULL, 7946, '1866', 'BASECOLD', NULL, '3.9200', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '0.0000', '2021-10-17', 'received', '3.9200', '3.9200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (38462, 272, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8000', '1.0000', '2021-10-17', '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 (38463, 272, NULL, 8098, '2018', 'PROMAN', NULL, '17.0000', '22.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-10-17', '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 (38464, 272, NULL, 2946, '71670819', 'HEALTHLINK HAIR,NAIL&SPON TABS', NULL, '37.7900', '50.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.7900', '1.0000', '2021-10-17', 'received', '37.7900', '37.7900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (38465, 272, NULL, 2004, '44696495', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 8ML', NULL, '1.5000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '14.0000', '2021-10-17', '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 (38520, 274, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '116.3300', '155.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.3300', '0.0000', '2021-10-19', 'received', '116.3300', '116.3300', '1.0000', NULL, NULL, 1, 'pc', '1.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 (38521, 274, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.5100', '2.0000', '80.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.8000', '0.0000', '2021-10-19', 'received', '1.5100', '1.5100', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '1.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 (38522, 274, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2021-10-19', 'received', '12.5000', '12.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (38523, 274, 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-10-19', '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 (38524, 274, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '8.0000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-10-19', '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 (38525, 274, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.6500', '2.2000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '10.0000', '2021-10-19', 'received', '1.6500', '1.6500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (38526, 274, NULL, 9592, '11957121', 'VIVADONA CAPS 20\'S', NULL, '3.2000', '4.2000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-10-19', '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 (38527, 274, NULL, 2907, '78214441', 'LUMATRONA SUSP 60ML', NULL, '6.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-10-19', '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 (38528, 274, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '3.3000', '4.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-10-19', '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 (38529, 274, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '22.8000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '0.0000', '2021-10-19', 'received', '22.8000', '22.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (38530, 274, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '3.3500', '4.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7500', '3.0000', '2021-10-19', 'received', '3.3500', '3.3500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (38531, 274, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.7400', '0.0000', '2021-10-19', 'received', '5.2900', '5.2900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (38532, 274, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2021-10-19', '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 (38533, 274, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '3.4100', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4600', '3.0000', '2021-10-19', 'received', '3.4100', '3.4100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (38534, 274, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.5000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-10-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 (38535, 274, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.5000', '15.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-10-19', '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 (38536, 274, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '12.9000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2021-10-19', '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 (38537, 274, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '33.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2021-10-19', '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 (38538, 274, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '9.2800', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8400', '0.0000', '2021-10-19', 'received', '9.2800', '9.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (38539, 274, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '26.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0700', '0.0000', '2021-10-19', '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 (38540, 274, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-10-19', '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 (38541, 274, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '15.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2021-10-19', '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 (38542, 274, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2021-10-19', '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 (38543, 274, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-19', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (38544, 274, NULL, 9413, '3333', 'MALAR 2 DS', NULL, '7.9800', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2021-10-19', '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 (38545, 274, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '77.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-10-19', '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 (38546, 274, NULL, 9556, '98215171', 'RONFIT COLD TAB', NULL, '0.4500', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '38.0000', '2021-10-19', 'received', '0.4500', '0.4500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (38547, 274, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '3.0000', '2021-10-19', 'received', '2.6700', '2.6700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (38548, 274, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.8000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2021-10-19', 'received', '13.8000', '13.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (38549, 274, NULL, 2609, '48137025', 'ABYVITA TABS', NULL, '2.8000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-10-19', '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 (38550, 274, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '26.6000', '35.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.4000', '0.0000', '2021-10-19', 'received', '26.6000', '26.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '26.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 (38551, 274, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.3300', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-10-19', '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 (38552, 274, NULL, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '60.7700', '80.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7700', '1.0000', '2021-10-19', 'received', '60.7700', '60.7700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '60.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 (38553, 274, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '0.0000', '2021-10-19', '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 (38554, 274, NULL, 1938, 'PR-651', 'Hilderm Cream CH Agh020', NULL, '11.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2021-10-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 (38555, 274, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '40.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-10-19', '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 (38556, 274, NULL, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', NULL, '9.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-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 (38557, 274, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-10-19', '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 (38558, 274, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '8.0000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2021-10-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 (38559, 274, NULL, 2573, '11557669', 'MASADA', NULL, '9.3000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2021-10-19', '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 (38560, 274, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '22.5000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-10-19', '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 (38561, 274, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '0.0000', '2021-10-19', '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 (38562, 274, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-10-19', '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 (38563, 274, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-10-19', '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 (38564, 274, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2021-10-19', '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 (38565, 274, NULL, 9593, '17485838', 'PARA CAPLET 16\'S AYRTON', NULL, '2.2000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6000', '2.0000', '2021-10-19', 'received', '2.2000', '2.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (38566, 274, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '3.3000', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-10-19', '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 (38567, 274, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.0900', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5400', '0.0000', '2021-10-19', '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 (38568, 274, NULL, 9594, '47137610', 'FLUCHLOXACILLIN SUSP LETAP', NULL, '2.5500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.3000', '6.0000', '2021-10-19', 'received', '2.5500', '2.5500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (38569, NULL, NULL, 9590, '', '', 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 (38570, NULL, NULL, 9595, '', '', 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 (38571, NULL, NULL, 8075, '', '', 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 (38572, NULL, NULL, 9602, '', '', 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 (38573, NULL, NULL, 1398, '', '', 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 (38574, NULL, NULL, 2710, '', '', 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 (38575, NULL, NULL, 7981, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-112.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38576, NULL, NULL, 9105, '', '', 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 (38577, NULL, NULL, 7670, '', '', 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 (38578, NULL, NULL, 9471, '', '', 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 (38579, NULL, NULL, 2546, '', '', 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 (38580, NULL, NULL, 7550, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-53.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38581, NULL, NULL, 8181, '', '', 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 (38582, NULL, NULL, 1321, '', '', 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 (38583, NULL, NULL, 3014, '', '', 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 (38584, NULL, NULL, 7608, '', '', 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 (38585, NULL, NULL, 1790, '', '', 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 (38586, NULL, NULL, 7821, '', '', 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 (38587, NULL, NULL, 9591, '', '', 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 (38588, NULL, NULL, 1628, '', '', 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 (38589, NULL, NULL, 8276, '', '', 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 (38590, NULL, NULL, 8333, '', '', 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 (38591, NULL, NULL, 7867, '', '', 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 (38592, 275, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7600', '2.3000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2021-10-20', 'received', '1.7600', '1.7600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (38593, 275, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2021-10-20', '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 (38594, 275, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2300', '1.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '0.0000', '2021-10-20', 'received', '1.2300', '1.2300', '25.0000', NULL, NULL, 1, 'pc', '25.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 (38595, 275, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2000', '1.0000', '2021-10-20', '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 (38596, 275, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '0.0000', '2021-10-20', '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 (38597, 275, NULL, 2468, '92479608', 'ATENOLOL 100MG TABS UK', NULL, '3.5000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '6.0000', '2021-10-20', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (38598, 275, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '6.4000', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4000', '0.0000', '2021-10-20', 'received', '6.4000', '6.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (38599, NULL, NULL, 2961, '', '', 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 (38600, NULL, NULL, 9464, '', '', 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 (38601, NULL, NULL, 9556, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (38602, NULL, NULL, 1571, '', '', 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 (38603, NULL, NULL, 7608, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (38604, NULL, NULL, 9155, '', '', 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 (38605, NULL, NULL, 8293, '', '', 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 (38606, NULL, NULL, 8714, '', '', 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 (38607, NULL, NULL, 2107, '', '', 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 (38608, NULL, NULL, 2637, '', '', 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 (38609, 276, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '35.6300', '47.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.1500', '0.0000', '2021-10-22', 'received', '35.6300', '35.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.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 (38610, 276, NULL, 7321, '1241', 'METROLEX-F TABS', NULL, '9.8100', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0500', '0.0000', '2021-10-22', 'received', '9.8100', '9.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (38611, 276, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.0000', '3.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '0.0000', '2021-10-22', 'received', '2.0000', '2.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (38612, 276, NULL, 9193, '3113', 'AZIRON 500MG TABS', NULL, '6.8300', '9.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.8300', '0.0000', '2021-10-22', 'received', '6.8300', '6.8300', '1.0000', NULL, NULL, 1, 'pc', '1.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 (38613, NULL, NULL, 8101, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38614, NULL, NULL, 2511, '', '', 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 (38615, NULL, NULL, 7579, '', '', 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 (38616, NULL, NULL, 9030, '', '', 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 (38617, NULL, NULL, 2324, '', '', 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 (38618, NULL, NULL, 2943, '', '', 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 (38619, NULL, NULL, 7909, '', '', 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 (38620, NULL, NULL, 2877, '', '', 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 (38621, NULL, NULL, 1659, '', '', 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 (38622, NULL, NULL, 9590, '', '', 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 (38623, NULL, NULL, 9591, '', '', 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 (38624, NULL, NULL, 8176, '', '', 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 (38625, NULL, NULL, 2607, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (38626, NULL, NULL, 2936, '', '', 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 (38627, NULL, NULL, 3023, '', '', 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 (38628, NULL, NULL, 1460, '', '', 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 (38629, NULL, NULL, 2638, '', '', 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 (38630, NULL, NULL, 9538, '', '', 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 (38631, NULL, NULL, 7514, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-271.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38632, NULL, NULL, 1999, '', '', 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 (38633, NULL, NULL, 2975, '', '', 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 (38634, NULL, NULL, 8548, '', '', 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 (38635, NULL, NULL, 2923, '', '', 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 (38636, NULL, NULL, 9165, '', '', 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 (38637, NULL, NULL, 7888, '', '', 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 (38638, NULL, NULL, 8188, '', '', 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 (38639, NULL, NULL, 8759, '', '', 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 (38640, NULL, NULL, 9577, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-223.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38641, NULL, NULL, 7684, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (38642, NULL, NULL, 8889, '', '', 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 (38643, NULL, NULL, 9463, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (38644, NULL, NULL, 7863, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38645, NULL, NULL, 9280, '', '', 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 (38646, NULL, NULL, 1400, '', '', 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 (38647, NULL, NULL, 9578, '', '', 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 (38648, NULL, NULL, 8085, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-51.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38649, NULL, NULL, 8595, '', '', 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 (38774, NULL, NULL, 8146, '', '', 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 (38948, NULL, NULL, 8994, '', '', 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 (38949, NULL, NULL, 8087, '', '', 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 (38950, NULL, NULL, 3026, '', '', 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 (38951, NULL, NULL, 8313, '', '', 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 (38952, NULL, NULL, 9491, '', '', 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 (38953, NULL, NULL, 7737, '', '', 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 (38954, NULL, NULL, 9090, '', '', 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 (38955, NULL, NULL, 2643, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38956, NULL, NULL, 7953, '', '', 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 (39071, NULL, NULL, 7750, '', '', 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 (39072, NULL, NULL, 1311, '', '', 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 (39073, NULL, NULL, 1314, '', '', 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 (39074, NULL, NULL, 1839, '', '', 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 (39075, NULL, NULL, 7409, '', '', 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 (39076, NULL, NULL, 2869, '', '', 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 (39077, NULL, NULL, 7875, '', '', 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 (39078, NULL, NULL, 8190, '', '', 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 (39079, NULL, NULL, 3057, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39080, NULL, NULL, 7532, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (39081, NULL, NULL, 7824, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39082, NULL, NULL, 7544, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-124.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39083, NULL, NULL, 7328, '', '', 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 (39084, NULL, NULL, 8859, '', '', 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 (39085, NULL, NULL, 8496, '', '', 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 (39086, NULL, NULL, 8244, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (39087, NULL, NULL, 8766, '', '', 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 (39088, NULL, NULL, 8188, '', '', 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 (39089, NULL, NULL, 9291, '', '', 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 (39090, NULL, NULL, 7609, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (39091, NULL, NULL, 7684, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (39092, NULL, NULL, 8395, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39093, NULL, NULL, 8846, '', '', 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 (39094, NULL, NULL, 9541, '', '', 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 (39095, NULL, NULL, 9538, '', '', 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 (39096, NULL, NULL, 7391, '', '', 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 (39097, NULL, NULL, 9565, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (39098, NULL, NULL, 3051, '', '', 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 (39099, NULL, NULL, 8960, '', '', 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 (39100, NULL, NULL, 9315, '', '', 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 (39101, NULL, NULL, 8769, '', '', 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 (39102, NULL, NULL, 8650, '', '', 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 (39103, NULL, NULL, 7868, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (39104, NULL, NULL, 8033, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (39105, NULL, NULL, 2955, '', '', 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 (39106, NULL, NULL, 1588, '', '', 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 (39107, NULL, NULL, 7662, '', '', 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 (39108, NULL, NULL, 2588, '', '', 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 (39109, NULL, NULL, 7536, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39110, NULL, NULL, 8434, '', '', 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 (39111, NULL, NULL, 2025, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (39112, NULL, NULL, 7384, '', '', 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 (39113, NULL, NULL, 2864, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (39114, NULL, NULL, 7719, '', '', 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 (39115, NULL, NULL, 9084, '', '', 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 (39116, NULL, NULL, 7355, '', '', 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 (39117, NULL, NULL, 1409, '', '', 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 (39118, NULL, NULL, 9579, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (39119, NULL, NULL, 8834, '', '', 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 (39120, NULL, NULL, 8344, '', '', 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 (39121, NULL, NULL, 9544, '', '', 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 (39122, NULL, NULL, 7835, '', '', 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 (39123, NULL, NULL, 2512, '', '', 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 (39124, NULL, NULL, 8879, '', '', 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 (39125, NULL, NULL, 2241, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (39126, NULL, NULL, 1744, '', '', 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 (39127, NULL, NULL, 9541, '', '', 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 (39128, NULL, NULL, 7828, '', '', 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 (39129, NULL, NULL, 9198, '', '', 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 (39130, NULL, NULL, 8780, '', '', 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 (39131, NULL, NULL, 7698, '', '', 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 (39132, NULL, NULL, 9317, '', '', 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 (39133, NULL, NULL, 7357, '', '', 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 (39134, NULL, NULL, 8629, '', '', 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 (39135, NULL, NULL, 2588, '', '', 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 (39136, NULL, NULL, 9562, '', '', 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 (39137, NULL, NULL, 1689, '', '', 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 (39138, NULL, NULL, 2830, '', '', 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 (39139, NULL, NULL, 7803, '', '', 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 (39140, NULL, NULL, 1651, '', '', 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 (39141, NULL, NULL, 8179, '', '', 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 (39176, 261, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '18.0000', '62.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '930.0000', '27.0000', '2021-10-03', 'received', '15.0000', '15.0000', '62.0000', NULL, NULL, 1, 'pc', '62.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 (39177, 261, NULL, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', NULL, '16.0000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2021-10-03', '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 (39178, 261, NULL, 9555, '63656780', 'NUTRA SLIM TEA', NULL, '40.0000', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '1.0000', '2021-10-03', '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 (39179, 261, NULL, 9552, '19479894', 'SNAKE CREAM', NULL, '20.0000', '25.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '4.0000', '2021-10-03', '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 (39180, 261, NULL, 9547, '95598304', 'SNAKE/ACNE CREAM', NULL, '20.0000', '25.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2021-10-03', '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 (39181, 261, NULL, 2529, '83499560', 'BLACK SOAP SMALL', NULL, '7.5000', '10.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '8.0000', '2021-10-03', 'received', '7.5000', '7.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (39182, 261, NULL, 2580, '8858854600592', 'DARK SPOT REMOVER SOAP', NULL, '12.0000', '15.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '4.0000', '2021-10-03', 'received', '12.0000', '12.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (39183, 261, NULL, 2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', NULL, '10.0000', '15.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '7.0000', '2021-10-03', 'received', '10.0000', '10.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (39184, 261, NULL, 9554, '40697769', 'CARROT SOAP S/S', NULL, '7.0000', '10.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '10.0000', '2021-10-03', 'received', '7.0000', '7.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (39185, 261, NULL, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', NULL, '7.0000', '10.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '10.0000', '2021-10-03', 'received', '7.0000', '7.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (39186, 261, NULL, 9551, '02957408', 'NEEM SOAP', NULL, '10.0000', '15.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '8.0000', '2021-10-03', 'received', '10.0000', '10.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (39187, 261, NULL, 2216, '8964000734667', 'LAVENDER OIL 40ML NATURAL', NULL, '12.0000', '18.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2021-10-03', '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 (39188, 261, NULL, 2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', NULL, '12.0000', '18.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-10-03', '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 (39189, 261, NULL, 2217, '8964000734650', 'BLACKSEED OIL 40ML', NULL, '12.0000', '18.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2021-10-03', '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 (39190, 261, NULL, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', NULL, '12.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-10-03', '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 (39191, 261, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2021-10-03', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39192, 261, NULL, 9558, '16928590', 'COCONUT OIL 30ML', NULL, '7.5000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2021-10-03', 'received', '7.5000', '7.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39193, 261, NULL, 2187, '8964000577981', 'TEA TREE OIL', NULL, '7.5000', '15.0000', '13.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '9.0000', '2021-10-03', 'received', '7.5000', '7.5000', '13.0000', NULL, NULL, 1, 'pc', '13.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 (39194, 261, NULL, 2178, '8964000114308', 'CARROT OIL', NULL, '7.5000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-10-03', '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 (39195, 261, NULL, 2189, '8964000577967', 'COD LIVER OIL', NULL, '7.5000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2021-10-03', 'received', '7.5000', '7.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39196, 261, NULL, 2202, '8964000114094', 'FENNEL OIL', NULL, '7.5000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '1.0000', '2021-10-03', 'received', '7.5000', '7.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (39197, 261, NULL, 2174, '8964000114797', 'SAFFRON OIL', NULL, '7.5000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2021-10-03', '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 (39198, 261, NULL, 2203, '8964000114056', 'MUSTARD OIL', NULL, '7.5000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2021-10-03', '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 (39199, 261, NULL, 9559, '44940615', 'TUMERIC POWDER S/S', NULL, '12.0000', '15.0000', '17.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '204.0000', '17.0000', '2021-10-03', 'received', '12.0000', '12.0000', '17.0000', NULL, NULL, 1, 'pc', '17.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 (39200, 261, NULL, 9560, '67412030', 'CINNANOM POWDER', NULL, '15.0000', '17.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '11.0000', '2021-10-03', 'received', '15.0000', '15.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (39201, 261, NULL, 2485, '40177526', 'GOLDEN RAISEN', NULL, '15.0000', '18.0000', '66.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '990.0000', '62.0000', '2021-10-03', 'received', '15.0000', '15.0000', '66.0000', NULL, NULL, 1, 'pc', '66.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 (39202, 261, NULL, 9561, '27276373', 'NICHE EXTRA DARK CHOCHOLATE', NULL, '6.0000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2021-10-03', '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 (39203, 261, NULL, 9562, '94994180', 'NICHE DARK CHOCHOLATE', NULL, '5.4000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.4000', '0.0000', '2021-10-03', 'received', '5.4000', '5.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (39204, 261, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9000', '5.0000', '2021-10-03', 'received', '5.1000', '5.1000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (39205, 261, NULL, 9564, '17623777', 'Pepper powder', NULL, '10.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2021-10-03', '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 (39206, 261, NULL, 9565, '95802365', 'PASSION YOGHURT STRAWBERRY/VANILLA', NULL, '4.5000', '5.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-03', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39207, 261, NULL, 9438, '26736920', 'SANKOFA  BIG PENIS  MIXTURE ', NULL, '30.0000', '60.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '4.0000', '2021-10-03', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39208, 261, NULL, 9613, '68933203', 'ADUANA GINSENG POWER B/S', NULL, '30.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-10-03', '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 (39209, 261, NULL, 9612, '31883001', 'ADUANA GINSENG POWER S/S', NULL, '20.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-10-03', '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 (39210, 261, NULL, 9440, '02877504', 'SANKOFA BODY PAINS', NULL, '30.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-10-03', '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 (39211, 261, NULL, 9614, '52058654', 'SANKOFA BODY PAIN B/G', NULL, '30.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-10-03', '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 (39212, 266, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '12.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2021-10-12', '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 (39213, 266, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '7.0000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-10-12', '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 (39214, 266, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '16.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2021-10-12', '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 (39215, 266, NULL, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', NULL, '11.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2021-10-12', '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 (39216, 266, NULL, 8700, '2620', 'KRIS', NULL, '2.5000', '3.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-10-12', '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 (39217, 266, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '5.0000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '1.0000', '2021-10-12', '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 (39218, 266, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '9.0000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-10-12', '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 (39219, 266, NULL, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', NULL, '12.0000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-10-12', '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 (39220, 266, NULL, 2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', NULL, '15.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-10-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 (39221, 266, NULL, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '23.0000', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-10-12', '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 (39222, 266, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '6.9000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2021-10-12', 'received', '6.9000', '6.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39223, 266, NULL, 2839, '82016078', ' AMERICAN WHITE VINEGAR  473ML', NULL, '4.5000', '9.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2021-10-12', '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 (39224, 266, NULL, 2843, '36223146', ' AMERICAN WHITE VINEGAR  946ML', NULL, '8.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '1.0000', '2021-10-12', '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 (39225, 266, NULL, 9580, '60140033', 'IRISH SPRING SOAP', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2021-10-12', '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 (39226, 266, NULL, 9582, '72622863', 'DIAL SOAP', NULL, '5.0000', '7.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '7.0000', '2021-10-12', '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 (39227, 266, NULL, 9583, '83303054', 'LEVER SOAP', NULL, '8.0000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '3.0000', '2021-10-12', '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 (39228, 266, NULL, 9442, '62933908', 'SANKOFA BIG PENIS  MIXTURE ', NULL, '30.0000', '60.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '3.0000', '2021-10-12', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39229, 266, NULL, 9614, '52058654', 'SANKOFA BODY PAIN B/G', NULL, '30.0000', '60.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-10-12', '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 (39230, 266, NULL, 9612, '31883001', 'ADUANA GINSENG POWER S/S', NULL, '20.0000', '35.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2021-10-12', '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 (39292, NULL, NULL, 7928, '', '', 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 (39293, NULL, NULL, 3001, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-60.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39294, NULL, NULL, 2299, '', '', 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 (39295, NULL, NULL, 8194, '', '', 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 (39296, NULL, NULL, 1782, '', '', 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 (39297, NULL, NULL, 1459, '', '', 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 (39298, NULL, NULL, 8472, '', '', 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 (39299, NULL, NULL, 7616, '', '', 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 (39300, NULL, NULL, 8180, '', '', 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 (39301, NULL, NULL, 2380, '', '', 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 (39302, NULL, NULL, 2648, '', '', 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 (39303, NULL, NULL, 8982, '', '', 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 (39344, 259, NULL, 2485, '40177526', 'GOLDEN RAISEN', NULL, '17.0000', '18.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '20.0000', '2021-09-29', 'received', '17.0000', '17.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (39345, 259, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '22.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '7.0000', '2021-09-29', 'received', '15.0000', '15.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (39346, 259, NULL, 2203, '8964000114056', 'MUSTARD OIL', NULL, '7.5000', '15.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '15.0000', '2021-09-29', 'received', '7.5000', '7.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (39347, 259, NULL, 8472, '2392', 'MAGIC SHAVING CREAM', NULL, '24.0000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2021-09-29', '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 (39348, 259, NULL, 8472, '2392', 'MAGIC SHAVING CREAM', NULL, '6.5000', '23.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '1.0000', '2021-09-29', 'received', '6.5000', '6.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (39349, 259, NULL, 8471, '2391', 'MAGIC SHAVIN POWDER', NULL, '21.0000', '27.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-09-29', '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 (39350, 259, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '12.0000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2021-09-29', '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 (39351, 259, NULL, 2962, '17785722', 'MOSQUITO REPELLENT', NULL, '4.0000', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '6.0000', '2021-09-29', '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 (39396, 229, NULL, 2635, '2208744', 'PLASTER ROLL S/S', NULL, '3.0000', '4.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '20.0000', '2021-09-04', 'received', '3.0000', '3.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (39397, 229, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '3.1500', '4.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '7.0000', '2021-09-04', '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 (39398, 229, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '3.7000', '5.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '7.0000', '2021-09-04', '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 (39399, 229, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.8000', '7.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2021-09-04', '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 (39400, 229, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '2.3000', '3.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '1.0000', '2021-09-04', '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 (39401, 229, NULL, 9482, '56424675', ' LUBRICATED  CONDOM 3 IN 1', NULL, '0.5000', '1.0000', '144.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '144.0000', '2021-09-04', 'received', '0.5000', '0.5000', '144.0000', NULL, NULL, 1, 'pc', '144.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 (39402, 229, NULL, 9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', NULL, '8.5000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-09-04', '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 (39403, 229, NULL, 9478, '46003503', 'BEAUTY FORMULAS FACIAL SCRUB', NULL, '9.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-04', '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 (39404, 229, NULL, 9426, '3346', 'BEAUTEX', NULL, '88.0000', '88.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2021-09-04', 'received', '88.0000', '88.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '88.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39405, 229, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4000', '40.0000', '2021-09-04', 'received', '0.2600', '0.2600', '40.0000', NULL, NULL, 1, 'pc', '40.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 (39406, 229, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-09-04', '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 (39407, 229, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-04', '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 (39408, 229, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-04', '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 (39409, 229, NULL, 7728, '1648', 'MENTOS GUM ICE', NULL, '1.8000', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '4.0000', '2021-09-04', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (39410, 229, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '7.0000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-09-04', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39411, 229, NULL, 8666, '2586', 'BANANA GUM', NULL, '0.4600', '1.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.6000', '0.0000', '2021-09-04', 'received', '0.4600', '0.4600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (39412, 229, NULL, 8594, '2514', 'CHOCOLATE UK', NULL, '2.0000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-09-04', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (39413, 229, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.0000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2021-09-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 (39414, 229, NULL, 2003, '6033000102584', 'ROBB JAR', NULL, '4.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '9.0000', '2021-09-04', '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 (39415, 229, NULL, 9615, '84222158', 'NAIR  HAIR REMOVER', NULL, '17.0000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-09-04', '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 (39416, 229, NULL, 8769, '2689', 'HUNTERS', NULL, '6.6000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-09-04', '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 (39417, 229, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '6.6000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '1.0000', '2021-09-04', '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 (39418, 229, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '3.0000', '2021-09-04', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (39419, 229, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.1500', '3.5000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3000', '0.0000', '2021-09-04', 'received', '3.1500', '3.1500', '22.0000', NULL, NULL, 1, 'pc', '22.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 (39420, 229, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.0000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-04', '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 (39421, 229, NULL, 9090, '3010', 'VITAMILK', NULL, '11.0000', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-09-04', '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 (39422, 229, NULL, 9469, '40088756', 'PANACHE', NULL, '2.3000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-09-04', '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 (39423, 229, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.2000', '0.0000', '2021-09-04', 'received', '9.6000', '9.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (39424, 229, NULL, 8775, '2695', 'VITRAC S/S', NULL, '2.6000', '4.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '6.0000', '2021-09-04', 'received', '2.6000', '2.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (39425, 229, NULL, 9470, '54824799', 'COKE/ FANTA/ SPRITE 1L', NULL, '9.7700', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5400', '2.0000', '2021-09-04', 'received', '9.7700', '9.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (39426, 229, NULL, 9588, '94799417', 'LUCOSADE CAN', NULL, '4.3000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '6.0000', '2021-09-04', 'received', '4.3000', '4.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39427, 229, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '5.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-04', '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 (39428, 229, NULL, 9213, '3133', 'ROX DRINKS', NULL, '5.4000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '4.0000', '2021-09-04', '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 (39429, 229, NULL, 9532, '43814251', 'KEL CHARCOAL TOOTH PASTE', NULL, '15.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2021-09-04', '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 (39430, 229, NULL, 9531, '33732023', 'KEL 360 TOOTH PASTE', NULL, '8.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '1.0000', '2021-09-04', '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 (39431, 229, NULL, 9533, '12303025', 'KEL KIDS TOOTHPASTE', NULL, '8.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2021-09-04', '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 (39432, 229, NULL, 7725, '1645', 'SOFTCARE WIPES', NULL, '7.0000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-09-04', '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 (39433, 229, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '12.0000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2021-09-04', '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 (39434, 229, NULL, 2648, '61024738', 'COLGATE FOR KIDS', NULL, '7.0000', '8.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2021-09-04', 'received', '7.0000', '7.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (39435, 229, NULL, 8285, '2205', 'KLEANZ 100ML', NULL, '5.0000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2021-09-04', '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 (39436, 229, NULL, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', NULL, '5.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-09-04', '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 (39437, 229, NULL, 8123, '2043', 'BACTIGEL', NULL, '3.0000', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2021-09-04', '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 (39438, 229, NULL, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', NULL, '2.5000', '3.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '7.0000', '2021-09-04', 'received', '2.5000', '2.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (39439, 229, NULL, 9465, '73023013', 'KLEANZ SANITIZER 300ML', NULL, '8.5000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '1.0000', '2021-09-04', 'received', '8.5000', '8.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39440, 229, NULL, 9616, '50092869', 'SMIRMOFF ICE', NULL, '5.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2021-09-04', '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 (39441, 279, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-11-01', '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 (39527, NULL, NULL, 8034, '', '', 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 (39528, NULL, NULL, 3085, '', '', 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 (39529, 254, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '6.0300', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0900', '3.0000', '2021-09-19', 'received', '6.0300', '6.0300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (39530, 254, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.5000', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '44.0000', '2021-09-19', '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 (39531, 254, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '4.9000', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '2.0000', '2021-09-19', '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 (39532, 254, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.3500', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.7500', '3.0000', '2021-09-19', 'received', '15.3500', '15.3500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39533, 254, NULL, 8036, '1956', 'ENVICO', NULL, '6.5100', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5300', '0.0000', '2021-09-19', 'received', '6.5100', '6.5100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (39534, 254, NULL, 2140, '9556100104335', 'FLUCOR NIGHT', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2021-09-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 (39535, 254, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.5500', '44.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.1000', '2.0000', '2021-09-19', 'received', '36.5500', '36.5500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.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 (39536, 254, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.4000', '27.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6000', '3.0000', '2021-09-19', 'received', '20.4000', '20.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (39537, 254, NULL, 7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', NULL, '15.6000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '0.0000', '2021-09-19', 'received', '15.6000', '15.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (39538, 254, NULL, 8360, '2280', 'LEENA CAPS', NULL, '3.5200', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '0.0000', '2021-09-19', 'received', '3.5200', '3.5200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (39539, 254, NULL, 8448, '2368', 'ABYVITA SRP', NULL, '6.8900', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '2.0000', '2021-09-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 (39540, 254, NULL, 7350, '1270', 'PERFECTIL', NULL, '30.4000', '40.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.8000', '0.0000', '2021-09-19', 'received', '30.4000', '30.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (39541, 254, NULL, 2551, '65428666', 'OLIGOCARE', NULL, '29.6500', '39.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6500', '0.0000', '2021-09-19', 'received', '29.6500', '29.6500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '29.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 (39542, 254, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '52.8500', '70.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.7000', '1.0000', '2021-09-19', '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 (39543, 254, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '43.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.3600', '2.0000', '2021-09-19', 'received', '32.1800', '32.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (39544, 254, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '10.0000', '2021-09-19', '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 (39545, 254, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '19.7000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.1000', '1.0000', '2021-09-19', 'received', '19.7000', '19.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (39546, 254, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-09-19', '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 (39547, 254, NULL, 9528, '92146977', 'DETTOL ANTISEPTIC 500', NULL, '27.2000', '33.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6000', '2.0000', '2021-09-19', 'received', '27.2000', '27.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.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 (39548, 254, NULL, 9380, '3300', 'MUPIROCIN OINT', NULL, '22.3200', '29.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.9600', '0.0000', '2021-09-19', 'received', '22.3200', '22.3200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (39549, 254, NULL, 1741, '5017007601289', 'SUDOCREAM 125G', NULL, '28.4600', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.9200', '2.0000', '2021-09-19', 'received', '28.4600', '28.4600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (39550, 254, NULL, 2490, '8904091112500', 'CANDID MOUTH PAINT', NULL, '8.6300', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2600', '0.0000', '2021-09-19', 'received', '8.6300', '8.6300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (39551, 254, NULL, 8275, '2195', 'CLARITROMYCIN  500MG UK', NULL, '29.8500', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.5500', '0.0000', '2021-09-19', 'received', '29.8500', '29.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (39552, 254, NULL, 2624, '71356473', 'POLAR ICE', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-19', '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 (39553, 254, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.3400', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.0000', '47.0000', '2021-09-19', 'received', '3.3400', '3.3400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (39554, 254, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '2.0000', '2021-09-19', '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 (39555, 254, NULL, 3085, '86140157', 'APPLE CIDER VINEGER B/S', NULL, '57.0000', '75.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2021-09-19', '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 (39556, 254, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.9000', '3.0000', '2021-09-19', 'received', '14.9800', '14.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (39557, 254, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.2000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '5.0000', '2021-09-19', 'received', '6.2000', '6.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39558, 254, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-19', '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 (39559, 254, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '5.0000', '2021-09-19', '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 (39560, 254, NULL, 2995, '32309749', 'NAT B CAPS', NULL, '13.2500', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '0.0000', '2021-09-19', 'received', '13.2500', '13.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.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 (39561, 254, NULL, 8184, '2104', 'ENACEF 500', NULL, '2.4000', '3.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-09-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 (39562, 254, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '11.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '12.0000', '2021-09-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 (39563, 254, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.3000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '2.0000', '2021-09-19', '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 (39564, 254, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '9.9800', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9000', '0.0000', '2021-09-19', 'received', '9.9800', '9.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39565, 254, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '5.0000', '2021-09-19', '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 (39566, 254, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '5.9500', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7500', '5.0000', '2021-09-19', 'received', '5.9500', '5.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (39567, 254, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '0.0000', '2021-09-19', '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 (39568, 254, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2021-09-19', '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 (39569, 254, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.8000', '18.0000', '2021-09-19', '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 (39570, 254, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2021-09-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 (39571, 254, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.7800', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.8000', '7.0000', '2021-09-19', '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 (39572, 254, NULL, 2992, '39433029', 'PANADOL TAB PLAIN', NULL, '2.6000', '3.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '18.0000', '2021-09-19', '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 (39573, 254, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '9.2200', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4400', '2.0000', '2021-09-19', 'received', '9.2200', '9.2200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (39574, 254, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7500', '0.0000', '2021-09-19', 'received', '4.5500', '4.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (39575, 254, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '5.7300', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6500', '5.0000', '2021-09-19', 'received', '5.7300', '5.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (39576, 254, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2021-09-19', '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 (39577, 254, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '6.0000', '2021-09-19', '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 (39578, 254, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '4.8800', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4000', '4.0000', '2021-09-19', 'received', '4.8800', '4.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (39579, 254, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2021-09-19', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39580, 254, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.0400', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.4000', '10.0000', '2021-09-19', 'received', '8.0400', '8.0400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (39581, 254, NULL, 7588, '1508', 'FUNBACT', NULL, '7.0000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-09-19', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39582, 254, NULL, 9150, '3070', 'MYCOCORT CREAM', NULL, '19.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2021-09-19', '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 (39583, 254, NULL, 9530, '28525039', 'TCP UK 50ML', NULL, '28.5000', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2021-09-19', '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 (39584, 254, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2021-09-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 (39585, 254, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '19.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2021-09-19', '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 (39586, 254, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.5200', '19.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5600', '0.0000', '2021-09-19', '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 (39587, 254, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '33.1200', '44.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1200', '0.0000', '2021-09-19', 'received', '33.1200', '33.1200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '33.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 (39588, 254, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-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 (39589, 254, NULL, 2343, '67107435', 'INFACOL DROPS 50ML', NULL, '38.9900', '51.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.9800', '2.0000', '2021-09-19', 'received', '38.9900', '38.9900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (39590, 254, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '49.0100', '65.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0200', '0.0000', '2021-09-19', 'received', '49.0100', '49.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (39591, 254, NULL, 7366, '1286', 'ATORVASTATIN10MG', NULL, '6.9800', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9600', '0.0000', '2021-09-19', 'received', '6.9800', '6.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.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 (39592, 254, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '7.8400', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '0.0000', '2021-09-19', '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 (39593, 254, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.8400', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '0.0000', '2021-09-19', '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 (39594, 254, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4400', '2.0000', '2021-09-19', '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 (39595, 254, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '1.9700', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '7.0000', '2021-09-19', 'received', '1.9700', '1.9700', '20.0000', NULL, NULL, 1, 'pc', '20.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 (39596, 254, NULL, 8547, '2467', 'ODDYMIN CAPS', NULL, '3.3500', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2021-09-19', '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 (39597, 254, NULL, 9458, '31675978', 'CYPRON PLUS TABS', NULL, '1.8000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '25.0000', '2021-09-19', '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 (39598, 254, NULL, 7929, '1849', 'ETISALA SRP', NULL, '7.9000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '2.0000', '2021-09-19', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39599, 254, NULL, 7938, '1858', 'ETISALA CAPS', NULL, '2.9000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '3.0000', '2021-09-19', 'received', '2.9000', '2.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39600, 254, NULL, 8753, '2673', 'GANA BALM', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-09-19', '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 (39601, 254, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-09-19', 'received', '4.5000', '4.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (39602, 254, NULL, 7867, '1787', 'AMPICLOX 250 CAPS', NULL, '1.6300', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.9000', '0.0000', '2021-09-19', 'received', '1.6300', '1.6300', '30.0000', NULL, NULL, 1, 'pc', '30.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 (39603, 254, NULL, 9617, '15917946', 'AMPICLOX CAPS 500', NULL, '2.7700', '4.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5400', '2.0000', '2021-09-19', 'received', '2.7700', '2.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '2.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 (39604, 254, NULL, 9193, '3113', 'AZIRON 500MG TABS', NULL, '7.0000', '9.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2021-09-19', 'received', '7.0000', '7.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (39605, 254, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '18.5000', '24.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-09-19', '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 (39606, 254, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.5000', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-09-19', '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 (39607, 254, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.4000', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '12.0000', '2021-09-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 (39608, 254, NULL, 7411, '1331', 'CITRO C', NULL, '1.3500', '2.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2500', '0.0000', '2021-09-19', 'received', '1.3500', '1.3500', '75.0000', NULL, NULL, 1, 'pc', '75.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 (39609, 254, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.0200', '2.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.2000', '0.0000', '2021-09-19', 'received', '1.0200', '1.0200', '60.0000', NULL, NULL, 1, 'pc', '60.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 (39610, 254, NULL, 7641, '1561', 'LYDIA', NULL, '6.5000', '10.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-09-19', '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 (39611, 254, NULL, 7640, '1560', 'LENOR', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-19', '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 (39612, 254, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '24.0000', '2021-09-19', '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 (39613, 254, NULL, 8359, '2279', 'IMBOOST', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-09-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 (39614, 254, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.1500', '21.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.6000', '3.0000', '2021-09-19', 'received', '16.1500', '16.1500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (39615, 254, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '7.7300', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.8400', '6.0000', '2021-09-19', 'received', '7.7300', '7.7300', '8.0000', NULL, NULL, 1, 'pc', '8.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 (39616, 254, NULL, 8158, '2078', 'SUPIROCIN', NULL, '24.9000', '33.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.7000', '0.0000', '2021-09-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 (39617, 254, NULL, 8783, '2703', 'SUDOCREAM 250', NULL, '45.0300', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0600', '1.0000', '2021-09-19', 'received', '45.0300', '45.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (39618, 254, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '20.5000', '27.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2021-09-19', 'received', '20.5000', '20.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (39619, 254, NULL, 7910, '1830', 'ULCERPLEX', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '2.0000', '2021-09-19', '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 (39620, 254, NULL, 7548, '1468', 'SENACO', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-19', '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 (39621, 254, NULL, 7758, '1678', 'MMT', NULL, '2.1800', '3.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0800', '3.0000', '2021-09-19', 'received', '2.1800', '2.1800', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39622, 254, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.5000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2021-09-19', '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 (39623, 254, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '0.0000', '2021-09-19', '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 (39624, 254, NULL, 7831, '1751', 'TINATET VENECARE', NULL, '22.5000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '0.0000', '2021-09-19', 'received', '22.5000', '22.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39625, 254, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '21.7700', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8500', '0.0000', '2021-09-19', 'received', '21.7700', '21.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (39626, 254, NULL, 8359, '2279', 'IMBOOST', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-09-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 (39627, 254, NULL, 7658, '1578', 'DICLO DENK SUPP', NULL, '1.8400', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '0.0000', '2021-09-19', 'received', '1.8400', '1.8400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (39628, 254, NULL, 7881, '1801', 'FENBASE', NULL, '2.1700', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7000', '0.0000', '2021-09-19', 'received', '2.1700', '2.1700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (39629, 254, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-09-19', '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 (39630, 254, NULL, 7996, '1916', 'WELLBABY DROP', NULL, '47.0000', '63.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2021-09-19', 'received', '47.0000', '47.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39631, 254, NULL, 7704, '1624', 'RHIZON TAB', NULL, '0.4900', '1.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '0.0000', '2021-09-19', 'received', '0.4900', '0.4900', '30.0000', NULL, NULL, 1, 'pc', '30.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 (39632, 254, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '2.9000', '23.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.6000', '0.0000', '2021-09-19', 'received', '2.9000', '2.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39633, 254, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '235.0000', '0.0000', '2021-09-19', 'received', '2.3500', '2.3500', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '2.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 (39634, 254, NULL, 8164, '2084', 'OTRIVIN CHILD', NULL, '16.3900', '21.6300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '0.0000', '2021-09-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 (39635, 254, NULL, 8247, '2167', 'TYLENOL EXTRA', NULL, '2.9600', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.0000', '0.0000', '2021-09-19', 'received', '2.9600', '2.9600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (39636, 254, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '29.1700', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.5100', '0.0000', '2021-09-19', 'received', '29.1700', '29.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (39637, 254, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '49.0100', '65.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0100', '1.0000', '2021-09-19', 'received', '49.0100', '49.0100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.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 (39638, 254, NULL, 8102, '2022', 'NEOVITA CAPS', NULL, '27.0000', '36.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2021-09-19', 'received', '27.0000', '27.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39639, 254, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '35.6300', '49.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '356.3000', '0.0000', '2021-09-19', 'received', '35.6300', '35.6300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '35.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 (39640, 254, NULL, 7883, '1803', 'EVECARE', NULL, '34.0000', '44.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-09-19', 'received', '34.0000', '34.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (39641, 254, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.1900', '4.2100', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9000', '0.0000', '2021-09-19', 'received', '3.1900', '3.1900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (39642, 254, NULL, 7775, '1695', 'EXPECT SED', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-19', '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 (39643, 254, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '8.9800', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9400', '0.0000', '2021-09-19', '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 (39644, 254, NULL, 7576, '1496', 'SOLUBLE ASP', NULL, '1.6200', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-09-19', 'received', '1.6200', '1.6200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (39645, 254, NULL, 7859, '1779', 'KOFLET', NULL, '12.8900', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6700', '0.0000', '2021-09-19', 'received', '12.8900', '12.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (39646, 254, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.7600', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '2.0000', '2021-09-19', '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 (39647, 254, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '2.0000', '2021-09-19', '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 (39648, 254, NULL, 9418, '3338', 'ALVITE CAPS', NULL, '6.6000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-09-19', 'received', '6.6000', '6.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39649, 254, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9500', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '0.0000', '2021-09-19', 'received', '7.9500', '7.9500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39650, 254, NULL, 2129, '76264523', 'FINELIFE TONIC', NULL, '7.9500', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '1.0000', '2021-09-19', 'received', '7.9500', '7.9500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39651, 254, NULL, 8039, '1959', 'ACIDOM', NULL, '12.9000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '0.0000', '2021-09-19', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39652, 254, NULL, 9100, '3020', '~JOY VIKEL', NULL, '26.0000', '34.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '9.0000', '2021-09-19', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39653, NULL, NULL, 1731, '', '', 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 (39654, NULL, NULL, 7495, '', '', 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 (39655, NULL, NULL, 7324, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39656, NULL, NULL, 2599, '', '', 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 (39657, NULL, NULL, 9476, '', '', 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 (39658, NULL, NULL, 8923, '', '', 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 (39659, NULL, NULL, 9578, '', '', 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 (39660, NULL, NULL, 7483, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-148.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39661, NULL, NULL, 7390, '', '', 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 (39662, NULL, NULL, 7586, '', '', 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 (39663, NULL, NULL, 7391, '', '', 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 (39664, NULL, NULL, 9015, '', '', 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 (39665, NULL, NULL, 7720, '', '', 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 (39701, NULL, NULL, 8184, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-133.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39702, NULL, NULL, 1497, '', '', 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 (39703, NULL, NULL, 9431, '', '', 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 (39704, NULL, NULL, 9602, '', '', 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 (39757, NULL, NULL, 7601, '', '', 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 (39758, 280, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.4200', '0.6000', '200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-11-02', 'received', '0.4200', '0.4200', '200.0000', NULL, NULL, 1, 'pc', '200.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 (39759, 280, NULL, 7419, '1339', 'DEEP HEAT SPRAY 150ML', NULL, '24.8900', '33.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7800', '0.0000', '2021-11-02', 'received', '24.8900', '24.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.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 (39760, 280, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.4600', '6.0000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.8800', '0.0000', '2021-11-02', 'received', '4.4600', '4.4600', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '4.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 (39761, 280, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '15.0000', '20.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2021-11-02', '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 (39762, 280, NULL, 8140, '2060', 'DERMACOT CREM', NULL, '10.8000', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2021-11-02', '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 (39763, 280, NULL, 7588, '1508', 'FUNBACT', NULL, '7.0000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '1.0000', '2021-11-02', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39764, 280, NULL, 7380, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', NULL, '8.0000', '11.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-11-02', '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 (39765, 280, NULL, 7777, '1697', 'GRISON', NULL, '9.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2021-11-02', '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 (39766, 280, NULL, 9335, '3255', 'IROVIT DROP', NULL, '25.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2021-11-02', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (39767, 280, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '17.7700', '23.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0800', '0.0000', '2021-11-02', 'received', '17.7700', '17.7700', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '17.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 (39768, 280, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '4.2000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-11-02', '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 (39769, 280, NULL, 2990, '71484949', 'ENTRAMOL 500 TAB', NULL, '1.1200', '1.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2000', '0.0000', '2021-11-02', '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 (39770, 280, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2021-11-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 (39771, 280, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-11-02', '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 (39772, 280, NULL, 8858, '2778', 'KEPTRILS LOZ', NULL, '3.5000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '10.0000', '2021-11-02', '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 (39773, 280, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.0000', '16.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-11-02', '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 (39774, 280, NULL, 2607, '65744915', 'MAALOX SACHET', NULL, '1.4000', '1.7000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-11-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 (39775, 280, NULL, 7806, '1726', 'DOMI 10', NULL, '2.0000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '7.0000', '2021-11-02', 'received', '2.0000', '2.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (39776, 280, NULL, 7551, '1471', 'CARBAMAZIPINE', NULL, '4.0000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '20.0000', '2021-11-02', '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 (39777, 280, NULL, 8879, '2799', 'INFA V OINT', NULL, '17.0000', '22.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2021-11-02', '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 (39778, 280, NULL, 7933, '1853', 'WORMBASE TAB', NULL, '0.4400', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.4000', '0.0000', '2021-11-02', 'received', '0.4400', '0.4400', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39779, 280, NULL, 7930, '1850', 'WORMBASE SUSP', NULL, '1.3000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '8.0000', '2021-11-02', 'received', '1.3000', '1.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39780, 280, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-11-02', '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 (39781, 280, NULL, 8033, '1953', 'OMEPRZOLE NIMEP', NULL, '27.7000', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '831.0000', '17.0000', '2021-11-02', 'received', '27.7000', '27.7000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '27.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 (39782, 280, NULL, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', NULL, '10.4600', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3000', '2.0000', '2021-11-02', 'received', '10.4600', '10.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (39783, 280, NULL, 7774, '1694', 'MIST POT SIT', NULL, '3.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '4.0000', '2021-11-02', '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 (39784, 280, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '58.0000', '76.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '1.0000', '2021-11-02', 'received', '58.0000', '58.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39785, 280, NULL, 8288, '2208', 'GLOVES', NULL, '20.0000', '1.8000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1000.0000', '29.0000', '2021-11-02', 'received', '20.0000', '20.0000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (39786, 280, NULL, 8032, '1952', 'FISHERMAN', NULL, '5.7000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '10.0000', '2021-11-02', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (39787, 280, NULL, 7507, '1427', 'METRONIDAZOLE 200 TAB', NULL, '0.3300', '1.0000', '150.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '129.0000', '2021-11-02', '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 (39788, 280, NULL, 7750, '1670', 'CALPOL 2+', NULL, '34.9000', '46.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.6000', '0.0000', '2021-11-02', 'received', '34.9000', '34.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39789, 280, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.7600', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '0.0000', '2021-11-02', 'received', '8.7600', '8.7600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39790, 280, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.5000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2021-11-02', '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 (39791, 280, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '15.0000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-11-02', '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 (39792, 280, NULL, 9401, '3321', 'KOFOF ADULT SYRUP', NULL, '4.8500', '6.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4000', '1.0000', '2021-11-02', 'received', '4.8500', '4.8500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.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 (39793, 280, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '6.2000', '8.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.8000', '4.0000', '2021-11-02', 'received', '6.2000', '6.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39794, 280, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '60.0000', '79.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '2.0000', '2021-11-02', 'received', '60.0000', '60.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39795, 280, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '15.0000', '25.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-11-02', '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 (39796, 280, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7000', '3.6000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '36.0000', '2021-11-02', 'received', '2.7000', '2.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (39797, 280, NULL, 7355, '1275', 'BIOFERON SRP', NULL, '17.9400', '24.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.6400', '0.0000', '2021-11-02', 'received', '17.9400', '17.9400', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39798, 280, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '13.5000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-11-02', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39799, 280, NULL, 7961, '1881', 'JARIFAN 2 SRP', NULL, '10.5600', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.6800', '0.0000', '2021-11-02', 'received', '10.5600', '10.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (39800, 280, NULL, 2993, '86417416', 'SICAZINK TONIC 200ML', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-11-02', '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 (39801, 280, NULL, 7496, '1416', 'NORMAL SALINE', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '7.0000', '2021-11-02', '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 (39802, 280, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '3.0000', '2021-11-02', '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 (39803, 280, NULL, 7640, '1560', 'LENOR', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-11-02', '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 (39804, 280, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '6.0000', '2021-11-02', '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 (39805, 280, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-11-02', '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 (39806, 280, NULL, 8676, '2596', 'MINADEX', NULL, '28.8900', '38.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.7800', '2.0000', '2021-11-02', '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 (39807, 280, NULL, 9160, '3080', 'LUEX NASAL INHALER', NULL, '3.8900', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.7000', '30.0000', '2021-11-02', 'received', '3.8900', '3.8900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (39808, 280, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '4.0000', '2021-11-02', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39809, 280, NULL, 7787, '1707', 'FLUREST', NULL, '10.9000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '2.0000', '2021-11-02', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39810, 280, NULL, 9618, '80261915', 'TIGER TABLETS', NULL, '3.7500', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '19.0000', '2021-11-02', '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 (39811, 280, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.1900', '5.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3300', '2.0000', '2021-11-02', 'received', '3.1900', '3.1900', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '3.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 (39812, 280, NULL, 7608, '1528', 'AUNTY MARY', NULL, '6.9800', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.8000', '0.0000', '2021-11-02', 'received', '6.9800', '6.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (39813, 280, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-11-02', '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 (39814, 280, NULL, 8969, '2889', 'REDSUN', NULL, '2.0000', '2.0000', '80.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '56.0000', '2021-11-02', 'received', '2.0000', '2.0000', '80.0000', NULL, NULL, 1, 'pc', '80.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 (39815, 280, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2021-11-02', 'received', '1.4000', '1.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39816, 280, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.0200', '2.0000', '90.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.8000', '48.0000', '2021-11-02', 'received', '1.0200', '1.0200', '90.0000', NULL, NULL, 1, 'pc', '90.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 (39817, 280, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '125.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.2500', '25.0000', '2021-11-02', 'received', '0.5300', '0.5300', '125.0000', NULL, NULL, 1, 'pc', '125.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 (39818, 280, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.0000', '0.0000', '2021-11-02', 'received', '20.6000', '20.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39819, 280, NULL, 9597, '04270243', 'MILTON STERILISING TAB', NULL, '18.9800', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9600', '2.0000', '2021-11-02', 'received', '18.9800', '18.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (39820, 280, NULL, 7558, '1478', 'DORETA', NULL, '2.2000', '3.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2021-11-02', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (39821, 280, NULL, 9607, '17054308', 'ALUSIL PLUS SUSP', NULL, '1.6000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.2000', '0.0000', '2021-11-02', 'received', '1.6000', '1.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (39822, 280, NULL, 9556, '98215171', 'RONFIT COLD TAB', NULL, '0.4500', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '29.0000', '2021-11-02', 'received', '0.4500', '0.4500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (39823, 280, NULL, 9592, '11957121', 'VIVADONA CAPS 20\'S', NULL, '3.2000', '4.2000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '40.0000', '2021-11-02', '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 (39824, 280, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '10.3000', '14.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '206.0000', '15.0000', '2021-11-02', 'received', '10.3000', '10.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '10.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 (39825, 280, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.3900', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9500', '3.0000', '2021-11-02', '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 (39826, 280, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '22.0000', '2021-11-02', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (39827, 280, NULL, 9021, '2941', 'UNIDUS LONG LOVE CONDOM', NULL, '7.0000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '3.0000', '2021-11-02', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39828, 280, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '5.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.0000', '30.0000', '2021-11-02', 'received', '3.8000', '3.8000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (39829, 280, NULL, 7782, '1702', 'PANADOL PLAIN', NULL, '2.6000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '44.0000', '2021-11-02', '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 (39830, 280, NULL, 7989, '1909', 'WELLWOMAN PLUS', NULL, '26.9800', '50.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.9200', '0.0000', '2021-11-02', 'received', '26.9800', '26.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '26.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 (39831, 280, NULL, 7863, '1783', 'EYECOPEN', NULL, '3.0000', '7.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '15.0000', '2021-11-02', 'received', '3.0000', '3.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (39832, 280, NULL, 7431, '1351', 'CIPROLEX TZ', NULL, '18.0000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2021-11-02', '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 (39833, 280, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.8000', '6.4000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '26.0000', '2021-11-02', 'received', '4.8000', '4.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (39834, 280, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '2.2500', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '0.0000', '2021-11-02', 'received', '2.2500', '2.2500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (39835, 280, NULL, 8331, '2251', 'CONFIDO', NULL, '29.3500', '39.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.7000', '2.0000', '2021-11-02', 'received', '29.3500', '29.3500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (39836, 280, NULL, 7883, '1803', 'EVECARE', NULL, '34.0000', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-11-02', '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 (39837, 280, NULL, 2258, '8901138180614', 'SPEMAN TABS', NULL, '36.0000', '47.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2021-11-02', '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 (39838, 280, NULL, 7409, '1329', 'PRIMOLUT N', NULL, '4.3300', '10.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.9500', '10.0000', '2021-11-02', 'received', '4.3300', '4.3300', '15.0000', NULL, NULL, 1, 'pc', '15.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 (39839, 280, NULL, 8077, '1997', 'MYCOSTAT', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-11-02', '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 (39840, 280, NULL, 7872, '1792', 'STAGYL', NULL, '2.5000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '9.0000', '2021-11-02', '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 (39841, 280, NULL, 9250, '3170', 'SALAMOL CFC INHALER', NULL, '18.9800', '25.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.9400', '3.0000', '2021-11-02', 'received', '18.9800', '18.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (39842, 280, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.9400', '24.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7600', '0.0000', '2021-11-02', '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 (39843, 280, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '37.8000', '52.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '0.0000', '2021-11-02', 'received', '37.8000', '37.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (39844, 280, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '33.0200', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0600', '0.0000', '2021-11-02', 'received', '33.0200', '33.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (39845, 280, NULL, 9332, '3252', 'ARZIGLOBIN SYRUP', NULL, '11.9900', '16.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.9600', '3.0000', '2021-11-02', 'received', '11.9900', '11.9900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '11.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 (39846, 280, NULL, 8147, '2067', 'MINAMINO', NULL, '32.0000', '42.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '3.0000', '2021-11-02', '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 (39847, 280, NULL, 7862, '1782', 'GLUCOSE', NULL, '3.8500', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2500', '0.0000', '2021-11-02', 'received', '3.8500', '3.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (39848, 280, NULL, 2321, '80141429', 'MIST F.A.C', NULL, '3.3000', '4.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '2.0000', '2021-11-02', '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 (39849, 280, NULL, 7877, '1797', 'POLYFER CAPS', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-11-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 (39850, 280, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.7500', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '16.0000', '2021-11-02', '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 (39851, 280, NULL, 7708, '1628', 'TEEDAR', NULL, '6.1400', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7000', '0.0000', '2021-11-02', 'received', '6.1400', '6.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (39852, 280, NULL, 8164, '2084', 'OTRIVIN CHILD', NULL, '16.3900', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7800', '0.0000', '2021-11-02', 'received', '16.3900', '16.3900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (39853, 280, NULL, 2249, '22244269', 'EXPECT SEED', NULL, '3.3000', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '2.0000', '2021-11-02', 'received', '3.3000', '3.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39854, 280, NULL, 8704, '2624', 'ASPANOL BAB', NULL, '4.0300', '6.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.1200', '3.0000', '2021-11-02', 'received', '4.0300', '4.0300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.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 (39855, 280, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '9.9800', '13.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9200', '0.0000', '2021-11-02', 'received', '9.9800', '9.9800', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39856, 280, NULL, 7354, '1274', 'ALUMINIUM HYDROXIDE', NULL, '0.3700', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '44.0000', '2021-11-02', '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 (39857, NULL, NULL, 7836, '', '', 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 (39858, NULL, NULL, 8588, '', '', 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 (39859, NULL, NULL, 9234, '', '', 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 (39860, NULL, NULL, 1404, '', '', 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 (39861, NULL, NULL, 7963, '', '', 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 (39862, NULL, NULL, 1322, '', '', 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 (39863, NULL, NULL, 9175, '', '', 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 (39864, NULL, NULL, 8011, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39865, NULL, NULL, 9373, '', '', 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 (39866, 281, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-11-03', '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 (39867, 281, NULL, 2267, '52018792', 'KIDICS SYRUP', NULL, '9.5000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '2.0000', '2021-11-03', '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 (39868, 281, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-03', '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 (39869, 281, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9400', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4000', '0.0000', '2021-11-03', 'received', '0.9400', '0.9400', '60.0000', NULL, NULL, 1, 'pc', '60.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 (39870, 281, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '0.0000', '2021-11-03', 'received', '2.6700', '2.6700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (39871, 281, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.0000', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-11-03', '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 (39872, 281, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '32.0000', '2021-11-03', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (39873, 281, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '4.4000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '8.0000', '2021-11-03', '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 (39874, 281, NULL, 7620, '1540', 'LA WASH', NULL, '9.3100', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9300', '0.0000', '2021-11-03', 'received', '9.3100', '9.3100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (39875, 281, NULL, 1964, '8906011289897', 'V-FIRM', NULL, '17.0000', '23.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2021-11-03', '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 (39876, 281, NULL, 8274, '2194', 'DINAC 75', NULL, '8.4300', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2900', '3.0000', '2021-11-03', 'received', '8.4300', '8.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (39877, 281, NULL, 2973, '43393257', 'ALKA SELTZER 10.S', NULL, '2.1300', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '20.0000', '2021-11-03', 'received', '2.1300', '2.1300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (39878, 281, NULL, 8989, '2909', 'CREEP BAND 6', NULL, '4.5000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '1.0000', '2021-11-03', '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 (39879, 281, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '51.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '312.0000', '4.0000', '2021-11-03', '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 (39880, 281, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '25.8000', '35.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.8000', '0.0000', '2021-11-03', 'received', '25.8000', '25.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '25.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 (39881, 281, NULL, 2551, '65428666', 'OLIGOCARE', NULL, '29.6500', '39.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.9500', '2.0000', '2021-11-03', 'received', '29.6500', '29.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (39882, 281, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '6.0800', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2400', '0.0000', '2021-11-03', 'received', '6.0800', '6.0800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (39883, 281, NULL, 7869, '1789', 'CORRORANGE DROP', NULL, '4.2900', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8700', '0.0000', '2021-11-03', 'received', '4.2900', '4.2900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (39884, 281, NULL, 1538, 'PR-251', 'TINY VITE DROP', NULL, '31.5200', '41.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0400', '2.0000', '2021-11-03', '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 (39885, 281, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '0.0000', '2021-11-03', '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 (39886, 281, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '17.9300', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.7900', '0.0000', '2021-11-03', 'received', '17.9300', '17.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (39887, 281, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '3.3500', '4.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.4000', '4.0000', '2021-11-03', 'received', '3.3500', '3.3500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (39888, 281, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '9.2800', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8400', '0.0000', '2021-11-03', 'received', '9.2800', '9.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (39889, 281, NULL, 1656, '8902457848759', 'STOMOCAINE SUP', NULL, '14.6700', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0100', '0.0000', '2021-11-03', 'received', '14.6700', '14.6700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (39890, 281, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '10.8000', '14.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '3.0000', '2021-11-03', 'received', '10.8000', '10.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (39891, 281, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6100', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8300', '0.0000', '2021-11-03', 'received', '6.6100', '6.6100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (39892, 281, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '7.3600', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0800', '0.0000', '2021-11-03', 'received', '7.3600', '7.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (39893, 281, NULL, 2777, '97856697', 'MMT SUSP', NULL, '2.5000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '3.0000', '2021-11-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 (39894, 281, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '33.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.7000', '0.0000', '2021-11-03', '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 (39895, 281, NULL, 2306, '76223-3201-2', 'DYKLO SPRAY', NULL, '55.0000', '72.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2021-11-03', '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 (39896, 281, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '17.0000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-11-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 (39897, 281, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4800', '0.0000', '2021-11-03', '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 (39898, 281, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '12.3000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.9000', '1.0000', '2021-11-03', 'received', '12.3000', '12.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (39899, 281, NULL, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '9.3500', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0500', '0.0000', '2021-11-03', '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 (39900, 281, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '4.7300', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6500', '0.0000', '2021-11-03', 'received', '4.7300', '4.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (39901, 281, NULL, 2299, '8904107900961', 'DICLOLEX GEL', NULL, '6.0000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-11-03', '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 (39902, 281, NULL, 2949, '91005439', 'LOFNAC BALM', NULL, '5.5000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2021-11-03', '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 (39903, 281, NULL, 2765, '39680747', 'DANRUB OINT', NULL, '5.3000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '0.0000', '2021-11-03', 'received', '5.3000', '5.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (39904, 281, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-11-03', '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 (39905, 281, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '1.0000', '2021-11-03', '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 (39906, 281, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '2.6700', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '0.0000', '2021-11-03', 'received', '2.6700', '2.6700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39907, 281, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-11-03', '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 (39908, 281, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.6600', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6000', '9.0000', '2021-11-03', 'received', '2.6600', '2.6600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39909, 281, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-11-03', '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 (39910, 281, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-11-03', '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 (39911, 281, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.5000', '1.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-11-03', 'received', '0.5000', '0.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (39912, NULL, NULL, 7331, '', '', 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 (39913, NULL, NULL, 7810, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (39914, NULL, NULL, 1374, '', '', 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 (39915, NULL, NULL, 9561, '', '', 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 (39916, NULL, NULL, 2976, '', '', 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 (39917, NULL, NULL, 3019, '', '', 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 (39918, NULL, NULL, 2852, '', '', 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 (39919, NULL, NULL, 2473, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (39920, NULL, NULL, 8737, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (39921, NULL, NULL, 8275, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (39922, NULL, NULL, 7950, '', '', 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 (39923, NULL, NULL, 8169, '', '', 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 (39924, NULL, NULL, 8634, '', '', 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 (39925, NULL, NULL, 2821, '', '', 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 (39926, NULL, NULL, 8740, '', '', 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 (39927, NULL, NULL, 9414, '', '', 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 (39928, NULL, NULL, 2991, '', '', 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 (39929, NULL, NULL, 8767, '', '', 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 (39930, NULL, NULL, 1942, '', '', 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 (39931, NULL, NULL, 8196, '', '', 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 (39932, NULL, NULL, 7436, '', '', 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 (39933, NULL, NULL, 8927, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-70.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39934, NULL, NULL, 8719, '', '', 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 (39935, NULL, NULL, 2495, '', '', 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 (39936, NULL, NULL, 8921, '', '', 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 (39937, NULL, NULL, 8177, '', '', 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 (39938, NULL, NULL, 7379, '', '', 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 (39939, NULL, NULL, 7645, '', '', 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 (39940, NULL, NULL, 7438, '', '', 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 (39941, NULL, NULL, 1969, '', '', 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 (39942, NULL, NULL, 7808, '', '', 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 (39969, NULL, NULL, 9561, '', '', 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 (39970, 277, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5600', '0.0000', '2021-10-25', 'received', '1.3800', '1.3800', '12.0000', NULL, NULL, 1, 'pc', '12.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 (39971, 277, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-10-25', '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 (39972, 277, NULL, 8759, '2679', 'FRUTELLI', NULL, '6.5000', '9.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-10-25', '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 (39973, 277, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.0000', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-10-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 (39974, 277, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.1500', '3.5000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2021-10-25', 'received', '3.1500', '3.1500', '18.0000', NULL, NULL, 1, 'pc', '18.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 (39975, 277, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '0.0000', '2021-10-25', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (39976, 277, NULL, 9588, '94799417', 'LUCOSADE CAN', NULL, '4.3000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '6.0000', '2021-10-25', 'received', '4.3000', '4.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39977, 277, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '4.5000', '6.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-10-25', '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 (39978, 277, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.3000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '0.0000', '2021-10-25', 'received', '5.3000', '5.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39979, 277, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-10-25', '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 (39980, 277, NULL, 2566, '42135887', 'MILO TIN', NULL, '16.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-10-25', '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 (39981, 277, NULL, 2418, '5000204957327', 'GLADE AIR FRESHNER', NULL, '9.5000', '12.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-10-25', '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 (39982, 277, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '2.0800', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9600', '3.0000', '2021-10-25', 'received', '2.0800', '2.0800', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.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 (39983, 277, NULL, 2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', NULL, '8.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-10-25', '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 (39984, 277, NULL, 9605, '84590504', 'APTAMIL S/S CAN', NULL, '50.0000', '60.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-10-25', '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 (39985, 277, NULL, 2567, '83596243', 'NAN 1', NULL, '33.0000', '38.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '0.0000', '2021-10-25', '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 (39986, 277, NULL, 2231, '7501058633927', 'NAN 2', NULL, '33.0000', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2021-10-25', '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 (39987, 277, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-10-25', '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 (39988, 277, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2021-10-25', '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 (39989, 277, NULL, 2438, '59088740', 'NIDO +1 POWDERED MILK', NULL, '29.0000', '34.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '3.0000', '2021-10-25', '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 (39990, 277, NULL, 9588, '94799417', 'LUCOSADE CAN', NULL, '4.3000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '6.0000', '2021-10-25', 'received', '4.3000', '4.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39991, 277, NULL, 9590, '27729749', 'BOTTLE COKE/FANTA/SPRITE', NULL, '4.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0000', '0.0000', '2021-10-25', 'received', '4.0000', '4.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (39992, 277, NULL, 9603, '50089033', 'BOTTLE FANTA/COKE 0.25ML SS/S', NULL, '2.3300', '3.0000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.9400', '7.0000', '2021-10-25', 'received', '2.3300', '2.3300', '18.0000', NULL, NULL, 1, 'pc', '18.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 (39993, 277, NULL, 9470, '54824799', 'COKE/ FANTA/ SPRITE 1L', NULL, '9.7700', '12.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.9300', '0.0000', '2021-10-25', 'received', '9.7700', '9.7700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '9.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 (39994, 277, NULL, 8933, '2853', 'RED BULL', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-10-25', '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 (39995, 277, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-10-25', '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 (39996, 277, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.1500', '3.5000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2021-10-25', 'received', '3.1500', '3.1500', '18.0000', NULL, NULL, 1, 'pc', '18.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 (39997, 277, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-25', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (39998, 277, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '4.0000', '2021-10-25', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (39999, 277, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '17.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2021-10-25', '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 (40000, 277, NULL, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', NULL, '12.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-10-25', '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 (40001, 277, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2021-10-25', '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 (40002, 277, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-10-25', '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 (40003, 277, NULL, 9606, '90475554', 'DETTOL ANTISEPTIC 75ML S/S', NULL, '6.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-10-25', '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 (40004, 277, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '1.0000', '2021-10-25', '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 (40005, 277, NULL, 8607, '2527', 'VERNA M/S', NULL, '1.0000', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-10-25', 'received', '1.0000', '1.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (40006, 277, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '20.0000', '2021-10-25', '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 (40007, 277, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-10-25', '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 (40008, 277, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '12.0000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2021-10-25', '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 (40104, 256, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-09-24', '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 (40105, 256, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-09-24', '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 (40106, 256, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-09-24', '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 (40107, 256, NULL, 8566, '2486', 'SURE SPRAY', NULL, '11.0000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-09-24', '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 (40108, 256, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.8000', '0.0000', '2021-09-24', 'received', '3.8000', '3.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40109, 256, NULL, 9503, '35154073', 'PELADOL EXTRA TAB', NULL, '1.0300', '1.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6000', '0.0000', '2021-09-24', 'received', '1.0300', '1.0300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (40110, 256, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '9.2000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2000', '0.0000', '2021-09-24', 'received', '9.2000', '9.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40111, 256, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '9.2000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '0.0000', '2021-09-24', 'received', '9.2000', '9.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40112, 256, NULL, 7849, '1769', 'HEAVEN SPRAY', NULL, '14.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-09-24', '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 (40113, 256, NULL, 8438, '2358', 'ROMA SPRAY', NULL, '11.5000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '1.0000', '2021-09-24', '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 (40114, 256, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '1.0000', '2021-09-24', '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 (40115, 256, NULL, 9542, '12835609', 'COLGATE MAXIUM TOOTHPASTE', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '5.0000', '2021-09-24', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40116, 256, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '26.0000', '30.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '0.0000', '2021-09-24', 'received', '26.0000', '26.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40117, 256, NULL, 3024, '02807617', 'COLGATE CHARCOAL PASTE', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '4.0000', '2021-09-24', '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 (40118, 256, NULL, 9531, '33732023', 'KEL 360 TOOTH PASTE', NULL, '8.5000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '2.0000', '2021-09-24', '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 (40119, 256, NULL, 9532, '43814251', 'KEL CHARCOAL TOOTH PASTE', NULL, '11.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-09-24', '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 (40120, 256, NULL, 9533, '12303025', 'KEL KIDS TOOTHPASTE', NULL, '8.0000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-09-24', '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 (40121, 256, NULL, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', NULL, '20.0000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2021-09-24', '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 (40122, 256, NULL, 9543, '97891196', 'OUT MOSQUITO SPRAY', NULL, '20.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-09-24', '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 (40123, 256, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8800', '0.0000', '2021-09-24', 'received', '0.8700', '0.8700', '24.0000', NULL, NULL, 1, 'pc', '24.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 (40124, 256, NULL, 8984, '2904', 'VERNA S/S', NULL, '0.6700', '1.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0800', '0.0000', '2021-09-24', 'received', '0.6700', '0.6700', '24.0000', NULL, NULL, 1, 'pc', '24.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 (40125, 256, NULL, 9544, '68006719', 'NUTRISEEDS S/S', NULL, '25.0000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-09-24', '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 (40126, 256, NULL, 9545, '95286429', 'NUTRISEEDS B/S', NULL, '45.0000', '50.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-09-24', '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 (40127, 256, NULL, 2608, '57349245', 'CELLGEVITY', NULL, '83.3300', '120.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '499.9800', '0.0000', '2021-09-24', 'received', '83.3300', '83.3300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40128, 256, NULL, 9561, '27276373', 'NICHE EXTRA DARK CHOCHOLATE', NULL, '6.0000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-09-24', '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 (40129, 256, NULL, 9562, '94994180', 'NICHE DARK CHOCHOLATE', NULL, '5.4000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '0.0000', '2021-09-24', 'received', '5.4000', '5.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (40130, 256, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9000', '4.0000', '2021-09-24', 'received', '5.1000', '5.1000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (40131, 256, NULL, 9572, '88702320', 'COLGATE TOTAL PASTE', NULL, '14.0000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-09-24', '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 (40132, 256, NULL, 2958, '18073468', 'WELCHS TOFFEE', NULL, '1.0000', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '13.0000', '2021-09-24', 'received', '1.0000', '1.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (40133, NULL, NULL, 8298, '', '', 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 (40134, NULL, NULL, 9417, '', '', 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 (40135, NULL, NULL, 8774, '', '', 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 (40136, NULL, NULL, 7787, '', '', 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 (40137, NULL, NULL, 7731, '', '', 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 (40138, NULL, NULL, 7704, '', '', 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 (40139, NULL, NULL, 8298, '', '', 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 (40140, NULL, NULL, 8430, '', '', 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 (40141, NULL, NULL, 9187, '', '', 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 (40142, NULL, NULL, 8600, '', '', 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 (40143, NULL, NULL, 9604, '', '', 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 (40144, NULL, NULL, 1763, '', '', 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 (40145, NULL, NULL, 8401, '', '', 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 (40146, NULL, NULL, 8037, '', '', 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 (40147, NULL, NULL, 9620, '', '', 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 (40148, NULL, NULL, 9621, '', '', 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 (40149, NULL, NULL, 8321, '', '', 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 (40150, 258, NULL, 7915, '1835', 'ZUDREX TAB', NULL, '2.8000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '9.0000', '2021-09-25', '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 (40151, 258, NULL, 8703, '2623', 'HAEMATOVITE SRP', NULL, '2.3100', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.3100', '1.0000', '2021-09-25', 'received', '2.3100', '2.3100', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40152, 258, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '9.6500', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.2500', '1.0000', '2021-09-25', 'received', '9.6500', '9.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (40153, 258, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.0400', '10.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.3200', '1.0000', '2021-09-25', 'received', '8.0400', '8.0400', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '8.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 (40154, 258, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.2000', '17.0000', '2021-09-25', 'received', '3.5500', '3.5500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (40155, 258, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.3600', '14.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '207.2000', '8.0000', '2021-09-25', 'received', '10.3600', '10.3600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '10.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 (40156, 258, 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', '1.0000', '2021-09-25', '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 (40157, 258, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '58.0000', '76.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '1.0000', '2021-09-25', 'received', '58.0000', '58.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (40158, 258, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.8000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '46.0000', '2021-09-25', '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 (40159, 258, NULL, 9537, '37913304', 'CALCICARE SUSP', NULL, '36.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-09-25', '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 (40160, 258, NULL, 9538, '3537912', 'CALCICARE TABS', NULL, '23.0000', '31.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-09-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 (40161, 258, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.3000', '0.0000', '2021-09-25', '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 (40162, 258, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '16.0000', '20.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-09-25', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40163, 258, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '26.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '2.0000', '2021-09-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 (40164, 258, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2021-09-25', '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 (40165, 258, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '15.6000', '21.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '3.0000', '2021-09-25', 'received', '15.6000', '15.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (40166, 258, 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-09-25', '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 (40167, 258, NULL, 3035, '31081429', 'LAWSON HERBAL', NULL, '9.5000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '9.0000', '2021-09-25', '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 (40168, 258, NULL, 2457, '33345179', 'PILIEF TABS', NULL, '22.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2021-09-25', '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 (40169, 258, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-09-25', '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 (40170, 258, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '5.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2021-09-25', 'received', '3.8000', '3.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (40171, 258, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2021-09-25', '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 (40172, 258, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '8.0000', '2021-09-25', '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 (40173, 258, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '4.0000', '2021-09-25', '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 (40174, 258, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '18.0000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2021-09-25', '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 (40175, 258, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6600', '0.0000', '2021-09-25', 'received', '8.1100', '8.1100', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40176, 258, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '5.0000', '2021-09-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 (40177, 258, NULL, 9540, '55057911', 'AMILOPINE 5MG TEVA', NULL, '6.8000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2021-09-25', 'received', '6.8000', '6.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40178, 258, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '3.0000', '2021-09-25', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40179, 258, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.9000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '1.0000', '2021-09-25', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40180, 258, NULL, 3085, '86140157', 'APPLE CIDER VINEGER B/S', NULL, '57.0000', '75.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '285.0000', '2.0000', '2021-09-25', 'received', '57.0000', '57.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40181, 258, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '6.0000', '2021-09-25', '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 (40182, 258, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '5.0000', '2021-09-25', '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 (40183, 258, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '31.2000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '1.0000', '2021-09-25', 'received', '31.2000', '31.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40184, 258, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '110.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-09-25', '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 (40185, 258, NULL, 2608, '57349245', 'CELLGEVITY', NULL, '83.3300', '120.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '499.9800', '4.0000', '2021-09-25', 'received', '83.3300', '83.3300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40186, 258, NULL, 2701, '89135402', 'GAVISCON DOUBLE ACTION LIQ', NULL, '35.0000', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '2.0000', '2021-09-25', '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 (40187, 258, NULL, 3066, '87116727', 'TIXYLIX TODDER SYR', NULL, '25.0000', '35.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2021-09-25', '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 (40188, 258, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '83.0000', '110.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '249.0000', '3.0000', '2021-09-25', 'received', '83.0000', '83.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40189, 258, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '1.0000', '2021-09-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 (40190, 258, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '41.0000', '2021-09-25', '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 (40191, 258, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '16.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-09-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 (40192, 258, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.3400', '4.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.0000', '0.0000', '2021-09-25', 'received', '3.3400', '3.3400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (40193, 258, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.1200', '8.0000', '2021-09-25', 'received', '6.8900', '6.8900', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40194, 258, NULL, 7369, '1289', 'BONGELA CHILD', NULL, '31.1000', '42.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.2000', '1.0000', '2021-09-25', 'received', '31.1000', '31.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.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 (40195, 258, NULL, 1378, '5011417569627', 'BONJELA BABY', NULL, '31.1000', '42.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1000', '1.0000', '2021-09-25', 'received', '31.1000', '31.1000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '31.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 (40196, 258, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.4000', '35.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.6000', '0.0000', '2021-09-25', 'received', '28.4000', '28.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '28.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 (40197, 258, NULL, 2406, '8901138502829', 'MENTAT', NULL, '22.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2021-09-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 (40198, 258, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.5000', '10.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '390.0000', '23.0000', '2021-09-25', 'received', '6.5000', '6.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (40199, 258, NULL, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '16.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-09-25', '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 (40200, 258, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.0000', '47.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '185.0000', '0.0000', '2021-09-25', 'received', '37.0000', '37.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40201, 258, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.7800', '20.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '295.6000', '14.0000', '2021-09-25', 'received', '14.7800', '14.7800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (40202, 258, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2021-09-25', '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 (40203, 258, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '18.2100', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0500', '0.0000', '2021-09-25', 'received', '18.2100', '18.2100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40204, 258, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '1.0000', '2021-09-25', '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 (40205, 258, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '7.0000', '2021-09-25', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (40206, 258, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2021-09-25', '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 (40207, 258, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-09-25', '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 (40208, 258, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8700', '0.0000', '2021-09-25', '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 (40209, 258, NULL, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '9.3500', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.7500', '2.0000', '2021-09-25', 'received', '9.3500', '9.3500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40210, 258, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '4.7300', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1900', '0.0000', '2021-09-25', 'received', '4.7300', '4.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (40211, 258, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2200', '11.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.3000', '0.0000', '2021-09-25', 'received', '8.2200', '8.2200', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (40212, 258, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '11.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '6.0000', '2021-09-25', '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 (40213, 258, NULL, 2973, '43393257', 'ALKA SELTZER 10.S', NULL, '2.1300', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '20.0000', '2021-09-25', 'received', '2.1300', '2.1300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (40214, 258, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '16.0000', '2021-09-25', 'received', '2.9200', '2.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (40215, 258, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.8100', '1.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2000', '7.0000', '2021-09-25', 'received', '0.8100', '0.8100', '20.0000', NULL, NULL, 1, 'pc', '20.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 (40216, 258, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2021-09-25', '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 (40217, 258, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '18.0000', '2021-09-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 (40218, 258, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '25.0000', '2021-09-25', 'received', '1.1500', '1.1500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (40219, 258, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '3.2700', '4.5000', '36.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.7200', '32.0000', '2021-09-25', 'received', '3.2700', '3.2700', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '3.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 (40220, 258, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '3.0300', '4.0000', '56.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.6800', '0.0000', '2021-09-25', '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 (40221, 258, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.6000', '0.0000', '2021-09-25', 'received', '35.9000', '35.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40222, 258, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '34.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.6000', '0.5000', '2021-09-25', 'received', '25.1200', '25.1200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40223, 258, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-09-25', '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 (40224, 258, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '19.8200', '26.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2800', '3.0000', '2021-09-25', 'received', '19.8200', '19.8200', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40225, 258, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.8000', '6.4000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '10.0000', '2021-09-25', 'received', '4.8000', '4.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (40226, 258, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '8.0000', '11.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '6.0000', '2021-09-25', 'received', '8.0000', '8.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40227, 258, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2021-09-25', '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 (40228, 258, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '5.0000', '2021-09-25', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40229, 258, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.2500', '1.5000', '90.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '7.0000', '2021-09-25', 'received', '0.2500', '0.2500', '90.0000', NULL, NULL, 1, 'pc', '90.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 (40230, 258, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '5.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0400', '0.0000', '2021-09-25', 'received', '1.3800', '1.3800', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40287, 283, NULL, 9622, '08989624', 'ANEEZA LOTION', NULL, '35.0000', '40.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '6.0000', '2021-11-08', '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 (40288, 283, NULL, 9623, '36810852', 'ANEEZA MOISTURISER LOTION', NULL, '22.0000', '25.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '6.0000', '2021-11-08', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40289, 283, NULL, 9624, '28902983', 'ANEEZA HERBAL CREAM', NULL, '22.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '3.0000', '2021-11-08', '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 (40290, 283, NULL, 9625, '17202019', 'ANEEZA GOLD BEAUTY CREAM', NULL, '22.0000', '25.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '5.0000', '2021-11-08', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40291, 283, NULL, 9626, '53173114', 'SUPA RUBBING ALCHOL', NULL, '8.0000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-11-08', '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 (40292, 283, NULL, 9627, '74819267', 'ANEEZA GOLD SOAP', NULL, '15.0000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2021-11-08', '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 (40293, 283, NULL, 8767, '2687', 'KISS DRINK', NULL, '6.6900', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0700', '0.0000', '2021-11-08', 'received', '6.6900', '6.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (40294, 283, NULL, 8982, '2902', 'CRANBERRY', NULL, '10.0000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2021-11-08', '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 (40295, 283, NULL, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', NULL, '9.0000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-11-08', '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 (40296, 283, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '7.5000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '5.0000', '2021-11-08', '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 (40297, 283, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '10.0000', '2021-11-08', '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 (40298, 283, NULL, 2049, '6181100329162', 'BIOSKIN CREAM  MEDIUM', NULL, '11.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-11-08', '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 (40299, 283, NULL, 2050, '6181100329155', 'BIOSKIN CREAM SMALL', NULL, '6.0000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-11-08', '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 (40300, 283, NULL, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '6.0000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-11-08', '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 (40301, 283, NULL, 8587, '2507', 'KLEEN CLEANSER', NULL, '5.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5000', '1.0000', '2021-11-08', '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 (40302, 283, NULL, 8587, '2507', 'KLEEN CLEANSER', NULL, '5.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5000', '1.0000', '2021-11-08', '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 (40303, 283, NULL, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', NULL, '5.0000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2021-11-08', '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 (40304, 283, NULL, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', NULL, '2.5000', '3.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '4.0000', '2021-11-08', '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 (40305, 283, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '7.0000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '2.0000', '2021-11-08', '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 (40313, NULL, NULL, 7952, '', '', 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 (40314, NULL, NULL, 7347, '', '', 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 (40315, NULL, NULL, 2217, '', '', 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 (40316, NULL, NULL, 8027, '', '', 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 (40317, NULL, NULL, 1312, '', '', 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 (40318, NULL, NULL, 9281, '', '', 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 (40319, NULL, NULL, 8190, '', '', 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 (40320, NULL, NULL, 8736, '', '', 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 (40321, NULL, NULL, 8933, '', '', 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 (40322, NULL, NULL, 9215, '', '', 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 (40323, NULL, NULL, 8915, '', '', 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 (40324, NULL, NULL, 9329, '', '', 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 (40325, NULL, NULL, 7770, '', '', 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 (40326, NULL, NULL, 8335, '', '', 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 (40327, NULL, NULL, 3009, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (40328, NULL, NULL, 8758, '', '', 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 (40329, NULL, NULL, 1468, '', '', 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 (40330, NULL, NULL, 7510, '', '', 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 (40331, NULL, NULL, 7930, '', '', 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 (40332, NULL, NULL, 8959, '', '', 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 (40333, NULL, NULL, 1452, '', '', 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 (40334, NULL, NULL, 7465, '', '', 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 (40335, 284, NULL, 9622, '08989624', 'ANEEZA LOTION', NULL, '35.0000', '40.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '2.0000', '2021-11-08', '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 (40336, 284, NULL, 9623, '36810852', 'ANEEZA MOISTURISER LOTION', NULL, '22.0000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-11-08', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40337, 284, NULL, 9624, '28902983', 'ANEEZA HERBAL CREAM', NULL, '22.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2021-11-08', '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 (40338, 284, NULL, 9625, '17202019', 'ANEEZA GOLD BEAUTY CREAM', NULL, '22.0000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '6.0000', '2021-11-08', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40339, 284, NULL, 9627, '74819267', 'ANEEZA GOLD SOAP', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2021-11-08', '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 (40340, 284, NULL, 9626, '53173114', 'SUPA RUBBING ALCHOL', NULL, '8.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2021-11-08', '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 (40341, 284, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '7.0000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-11-08', '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 (40342, 284, NULL, 9628, '19433758', 'PRIMALAC 1&2 BABY MILK', NULL, '46.1200', '55.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '368.9600', '8.0000', '2021-11-08', 'received', '46.1200', '46.1200', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '46.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 (40343, 267, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '16.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '2.0000', '2021-10-12', '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 (40344, 267, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '12.0000', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-10-12', '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 (40345, 267, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '5.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2021-10-12', '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 (40346, 267, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '11.0000', '14.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-10-12', '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 (40347, 267, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '8.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-10-12', '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 (40348, 267, NULL, 2516, '60491534', 'TENDRINA CREAM B/S', NULL, '9.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-10-12', '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 (40349, 267, NULL, 2517, '94045463', 'TENDRINA CREAM S/S', NULL, '5.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-10-12', '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 (40350, 267, NULL, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', NULL, '4.0000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '2.0000', '2021-10-12', '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 (40351, 267, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '5.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2021-10-12', '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 (40352, 267, NULL, 9574, '80996728', 'FIRST LADY BOBY CREAM', NULL, '10.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-10-12', '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 (40353, 267, NULL, 8745, '2665', 'DON SIMON', NULL, '8.5000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2021-10-12', '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 (40354, 267, NULL, 9084, '3004', 'APPLE JUICE', NULL, '8.9000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '1.0000', '2021-10-12', 'received', '8.9000', '8.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (40355, 267, NULL, 2839, '82016078', ' AMERICAN WHITE VINEGAR  473ML', NULL, '4.5000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-10-12', '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 (40356, 267, NULL, 2843, '36223146', ' AMERICAN WHITE VINEGAR  946ML', NULL, '8.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '1.0000', '2021-10-12', '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 (40357, 267, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '38.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '3.0000', '2021-10-12', 'received', '34.0000', '34.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40358, 267, NULL, 9580, '60140033', 'IRISH SPRING SOAP', NULL, '5.0000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2021-10-12', '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 (40359, 267, NULL, 9582, '72622863', 'DIAL SOAP', NULL, '5.0000', '7.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '7.0000', '2021-10-12', '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 (40360, 267, NULL, 9583, '83303054', 'LEVER SOAP', NULL, '8.0000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '4.0000', '2021-10-12', '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 (40361, 267, NULL, 9581, '14851646', 'SECRET ROLL ON', NULL, '22.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2021-10-12', '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 (40362, 267, NULL, 9584, '00710235', 'ISANA MEN DEODORANT SPRAY', NULL, '20.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2021-10-12', '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 (40363, 267, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.2000', '10.0000', '2021-10-12', 'received', '5.1000', '5.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (40364, 267, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2021-10-12', '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 (40365, 267, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2021-10-12', '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 (40366, 267, NULL, 2567, '83596243', 'NAN 1', NULL, '33.0000', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '3.0000', '2021-10-12', '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 (40367, 267, NULL, 2231, '7501058633927', 'NAN 2', NULL, '33.0000', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2021-10-12', '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 (40368, 267, NULL, 9498, '35784269', 'HONEY WORLD 200ML', NULL, '12.5000', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-10-12', 'received', '12.5000', '12.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40369, 267, NULL, 9499, '12755178', 'HONEY WORLD 350ML', NULL, '22.0000', '29.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '4.0000', '2021-10-12', 'received', '22.0000', '22.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40370, 267, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '11.0000', '15.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2021-10-12', '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 (40371, 267, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '10.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-10-12', '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 (40372, 267, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '5.5000', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '3.0000', '2021-10-12', '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 (40373, 267, NULL, 9481, '23284846', 'PALMER\'S COCOA BUTTER LOTION 500ML', NULL, '30.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2021-10-12', '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 (40374, 267, NULL, 9478, '46003503', 'BEAUTY FORMULAS FACIAL SCRUB', NULL, '9.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-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 (40375, 267, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '12.0000', '15.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '11.0000', '2021-10-12', 'received', '12.0000', '12.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (40376, 267, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '14.6000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '6.0000', '2021-10-12', '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 (40377, 267, NULL, 9565, '95802365', 'PASSION YOGHURT STRAWBERRY/VANILLA', NULL, '4.5000', '5.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-12', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40378, 267, NULL, 8745, '2665', 'DON SIMON', NULL, '8.5000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2021-10-12', '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 (40379, 267, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '6.6000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '1.0000', '2021-10-12', '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 (40380, 267, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0500', '13.0000', '2021-10-12', 'received', '0.8700', '0.8700', '15.0000', NULL, NULL, 1, 'pc', '15.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 (40381, 267, NULL, 8188, '2108', 'VOLTIC M/S', NULL, '0.9000', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '2.0000', '2021-10-12', 'received', '0.9000', '0.9000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (40382, 267, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '17.0000', '2021-10-12', '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 (40383, 267, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '11.0000', '2021-10-12', '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 (40384, 267, NULL, 8607, '2527', 'VERNA M/S', NULL, '1.0000', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '15.0000', '2021-10-12', 'received', '1.0000', '1.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (40385, 267, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '30.0000', '2021-10-12', '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 (40386, 267, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '35.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-10-12', '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 (40387, 267, NULL, 1463, '5010123715175', 'EUTHYMOL TOOTHPASTE', NULL, '20.0000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-10-12', '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 (40388, 267, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '2.3000', '3.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '5.0000', '2021-10-12', '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 (40389, 267, NULL, 3074, '67589199', 'ORAL B TOOTH BRUSH', NULL, '2.0000', '3.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '10.0000', '2021-10-12', '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 (40390, 267, NULL, 2958, '18073468', 'WELCHS TOFFEE', NULL, '1.0000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '16.0000', '2021-10-12', 'received', '1.0000', '1.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (40391, 267, NULL, 9628, '19433758', 'PRIMALAC 1&2 BABY MILK', NULL, '46.1200', '55.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '368.9600', '5.0000', '2021-10-12', 'received', '46.1200', '46.1200', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '46.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 (40392, 260, NULL, 9287, '3207', 'HERBAL ESSENTIALS OIL 40ML', NULL, '15.0000', '18.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '8.0000', '2021-10-03', 'received', '15.0000', '15.0000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (40393, 260, NULL, 9286, '3206', 'HERBAL ESSENTIAL OIL 30ML', NULL, '7.5000', '15.0000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2021-10-03', 'received', '7.5000', '7.5000', '13.0000', NULL, NULL, 1, 'pc', '13.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 (40394, 260, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '22.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-10-03', '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 (40395, 260, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '18.0000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '28.0000', '2021-10-03', '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 (40396, 260, NULL, 9555, '63656780', 'NUTRA SLIM TEA', NULL, '40.0000', '45.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2021-10-03', 'received', '40.0000', '40.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40397, 260, NULL, 9551, '02957408', 'NEEM SOAP', NULL, '10.0000', '15.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '8.0000', '2021-10-03', '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 (40398, 260, NULL, 2580, '8858854600592', 'DARK SPOT REMOVER SOAP', NULL, '12.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2021-10-03', '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 (40399, 260, NULL, 2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', NULL, '10.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-10-03', '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 (40400, 260, NULL, 9552, '19479894', 'SNAKE CREAM', NULL, '20.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2021-10-03', '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 (40401, 260, NULL, 9547, '95598304', 'SNAKE/ACNE CREAM', NULL, '20.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2021-10-03', '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 (40402, 260, NULL, 9554, '40697769', 'CARROT SOAP S/S', NULL, '7.0000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '2.0000', '2021-10-03', 'received', '7.0000', '7.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40403, 260, NULL, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', NULL, '7.0000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-10-03', 'received', '7.0000', '7.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40404, 260, NULL, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', NULL, '16.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '3.0000', '2021-10-03', '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 (40405, 260, NULL, 2529, '83499560', 'BLACK SOAP SMALL', NULL, '7.5000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-10-03', 'received', '7.5000', '7.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40406, 260, NULL, 9559, '44940615', 'TUMERIC POWDER S/S', NULL, '12.0000', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '9.0000', '2021-10-03', '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 (40407, 260, NULL, 9560, '67412030', 'CINNANOM POWDER', NULL, '15.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2021-10-03', '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 (40408, 260, NULL, 9412, '3332', 'ALMOND SEED', NULL, '25.0000', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2021-10-03', '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 (40409, 260, NULL, 2763, '91369587', 'FLAXSEED', NULL, '7.5000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-10-03', '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 (40410, 260, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '0.0000', '2021-10-03', 'received', '3.4900', '3.4900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40411, 260, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.4900', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8000', '20.0000', '2021-10-03', 'received', '0.4900', '0.4900', '20.0000', NULL, NULL, 1, 'pc', '20.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 (40412, 260, NULL, 9399, '3319', 'LETACAM (PIROXICAM)', NULL, '0.4200', '2.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.2000', '0.0000', '2021-10-03', 'received', '0.4200', '0.4200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40413, 260, NULL, 8835, '2755', 'GEISHA SOAP', NULL, '4.5000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-10-03', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40414, 260, NULL, 2839, '82016078', ' AMERICAN WHITE VINEGAR  473ML', NULL, '4.5000', '9.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '1.0000', '2021-10-03', '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 (40415, 260, NULL, 2843, '36223146', ' AMERICAN WHITE VINEGAR  946ML', NULL, '8.0000', '14.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '1.0000', '2021-10-03', '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 (40416, 260, NULL, 9461, '53270643', 'YOVANNY INHALER', NULL, '1.5000', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '12.0000', '2021-10-03', 'received', '1.5000', '1.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (40417, 260, NULL, 7724, '1644', 'FAYTEX', NULL, '8.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-10-03', '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 (40418, 260, NULL, 8059, '1979', 'PROPER PAD', NULL, '6.0000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-10-03', '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 (40419, 260, NULL, 9178, '3098', 'PROPA LINER', NULL, '4.0000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-10-03', '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 (40420, 260, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '7.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-10-03', '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 (40421, 260, NULL, 9092, '3012', 'VINKA CHOCOLATE', NULL, '0.3200', '0.5000', '600.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.0000', '77.0000', '2021-10-03', 'received', '0.3200', '0.3200', '600.0000', NULL, NULL, 1, 'pc', '600.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 (40422, 260, NULL, 9572, '88702320', 'COLGATE TOTAL PASTE', NULL, '14.0000', '18.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-10-03', '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 (40423, 260, NULL, 2567, '83596243', 'NAN 1', NULL, '33.0000', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-10-03', 'received', '33.0000', '33.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40424, 260, NULL, 8889, '2809', 'NAN 1@2', NULL, '34.0000', '38.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '272.0000', '4.0000', '2021-10-03', 'received', '34.0000', '34.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40425, 260, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-10-03', '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 (40426, 260, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-10-03', '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 (40427, 260, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-10-03', '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 (40428, 260, NULL, 2978, '79128358', 'CERELAC TIN MILLET', NULL, '14.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-10-03', '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 (40429, 260, NULL, 8888, '2808', 'NIDO TIN', NULL, '28.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '1.0000', '2021-10-03', '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 (40430, 260, NULL, 9580, '60140033', 'IRISH SPRING SOAP', NULL, '5.0000', '7.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2021-10-03', 'received', '5.0000', '5.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40431, 260, NULL, 9581, '14851646', 'SECRET ROLL ON', NULL, '22.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2021-10-03', '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 (40432, 260, NULL, 9582, '72622863', 'DIAL SOAP', NULL, '5.0000', '7.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '8.0000', '2021-10-03', 'received', '5.0000', '5.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40433, 260, NULL, 9583, '83303054', 'LEVER SOAP', NULL, '8.0000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '4.0000', '2021-10-03', '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 (40434, 260, NULL, 9584, '00710235', 'ISANA MEN DEODORANT SPRAY', NULL, '20.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-10-03', '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 (40435, 260, NULL, 9585, '73512856', 'BIOCURA SHOWER GEL', NULL, '40.0000', '45.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '3.0000', '2021-10-03', 'received', '40.0000', '40.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40436, 260, NULL, 9586, '89215183', 'BORGES OLIVE OIL EXTRA 125MG', NULL, '14.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-10-03', '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 (40437, 260, NULL, 8871, '2791', 'ALWAYS MAXI DOUBLE', NULL, '10.0000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-10-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 (40438, 260, NULL, 8236, '2156', 'EVERSHEEN CREAM', NULL, '9.5000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2021-10-03', '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 (40439, 260, NULL, 8233, '2153', 'SIVODERM POWD', NULL, '4.5000', '7.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-10-03', 'received', '4.5000', '4.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40440, 260, NULL, 7359, '1279', 'BORGES125', NULL, '12.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-10-03', '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 (40441, 260, NULL, 7362, '1282', 'CAMEL 250ML', NULL, '12.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2021-10-03', '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 (40442, 260, NULL, 8478, '2398', 'JRA B\'S', NULL, '23.0000', '26.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '2.0000', '2021-10-03', '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 (40443, 260, NULL, 8234, '2154', 'JRA M/S', NULL, '13.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-10-03', '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 (40444, 260, NULL, 9469, '40088756', 'PANACHE', NULL, '2.3000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-10-03', '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 (40445, 260, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-10-03', '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 (40446, 260, NULL, 9084, '3004', 'APPLE JUICE', NULL, '8.9000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2021-10-03', 'received', '8.9000', '8.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (40447, 260, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2021-10-03', '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 (40448, 260, NULL, 9587, '22989390', 'LUCOSADE 380ML', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2021-10-03', '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 (40449, 260, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.4000', '0.0000', '2021-10-03', 'received', '5.1000', '5.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (40450, 260, NULL, 9442, '62933908', 'SANKOFA BIG PENIS  MIXTURE ', NULL, '30.0000', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-10-03', '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 (40451, 260, NULL, 9614, '52058654', 'SANKOFA BODY PAIN B/G', NULL, '30.0000', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-10-03', '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 (40452, 260, NULL, 9612, '31883001', 'ADUANA GINSENG POWER S/S', NULL, '20.0000', '35.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-10-03', '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 (40453, 260, NULL, 9628, '19433758', 'PRIMALAC 1&2 BABY MILK', NULL, '46.1200', '55.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '368.9600', '7.0000', '2021-10-03', 'received', '46.1200', '46.1200', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '46.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 (40454, NULL, NULL, 8165, '', '', 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 (40455, NULL, NULL, 1885, '', '', 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 (40456, NULL, NULL, 3072, '', '', 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 (40468, NULL, NULL, 1379, '', '', 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 (40469, NULL, NULL, 7630, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-59.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (40580, 253, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.2000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-09-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 (40581, 253, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '110.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '0.0000', '2021-09-19', '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 (40582, 253, NULL, 9544, '68006719', 'NUTRISEEDS S/S', NULL, '25.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2021-09-19', '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 (40583, 253, NULL, 9545, '95286429', 'NUTRISEEDS B/S', NULL, '45.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-09-19', '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 (40584, 253, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '31.5000', '42.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '2.0000', '2021-09-19', '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 (40585, 253, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4300', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1500', '5.0000', '2021-09-19', 'received', '5.4300', '5.4300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40586, 253, NULL, 1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', NULL, '33.0000', '44.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-09-19', '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 (40587, 253, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.7100', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.4200', '2.0000', '2021-09-19', '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 (40588, 253, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '40.0300', '53.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.1200', '3.0000', '2021-09-19', 'received', '40.0300', '40.0300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '40.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 (40589, 253, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '9.6000', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '4.0000', '2021-09-19', 'received', '9.6000', '9.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40590, 253, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '6.3000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.3000', '0.0000', '2021-09-19', 'received', '6.3000', '6.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40591, 253, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '6.4000', '8.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '3.0000', '2021-09-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 (40592, 253, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.7800', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7800', '1.0000', '2021-09-19', 'received', '14.7800', '14.7800', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40593, 253, NULL, 2955, '51481408', 'LONART TAB 24\'S', NULL, '4.8000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '8.0000', '2021-09-19', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40594, 253, NULL, 2976, '08146148', 'ACIC LOVIR TAB', NULL, '10.7000', '18.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.6000', '8.0000', '2021-09-19', 'received', '10.7000', '10.7000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40595, 253, NULL, 2999, '72534299', 'ALPHA GARLIC CAPS', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2021-09-19', '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 (40596, 253, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '52.8500', '70.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5500', '3.0000', '2021-09-19', 'received', '52.8500', '52.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40597, 253, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7000', '3.6000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '80.0000', '2021-09-19', 'received', '2.7000', '2.7000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (40598, 253, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '6.8500', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '1.0000', '2021-09-19', '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 (40599, 253, NULL, 2984, '72867652', 'METRO SUSP (M&G)', NULL, '3.1500', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '10.0000', '2021-09-19', 'received', '3.1500', '3.1500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40600, 253, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.2000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2021-09-19', 'received', '6.2000', '6.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40601, 253, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '39.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '3.0000', '2021-09-19', 'received', '26.0000', '26.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40602, 253, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-09-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 (40603, 253, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.8000', '6.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '12.0000', '2021-09-19', 'received', '4.8000', '4.8000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (40604, 253, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '4.0000', '2021-09-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 (40605, 253, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9800', '3.0000', '2021-09-19', '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 (40606, 253, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.9000', '0.0000', '2021-09-19', 'received', '0.9000', '0.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40607, 253, NULL, 2858, '54574718', 'PREG TEST CASSETTE', NULL, '1.0000', '5.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-09-19', 'received', '1.0000', '1.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (40608, 253, NULL, 2265, '5014502000807', 'MINAMINO SYRUP M/S', NULL, '32.0000', '43.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2021-09-19', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40609, 253, NULL, 9629, '58336463', 'ACICLOVIR TAB 200MG', NULL, '22.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-09-19', '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 (40610, 253, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.4000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '6.0000', '2021-09-19', '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 (40611, 253, 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-09-19', '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 (40612, 253, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '3.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '39.0000', '2021-09-19', 'received', '2.2000', '2.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (40613, 253, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '10.0000', '2021-09-19', '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 (40614, 253, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.2900', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4500', '2.0000', '2021-09-19', 'received', '4.2900', '4.2900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40615, 253, NULL, 2698, '01508425', 'NIGHT NURSE CAPS', NULL, '36.8600', '49.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5800', '3.0000', '2021-09-19', 'received', '36.8600', '36.8600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40616, 253, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.5200', '19.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.6000', '2.0000', '2021-09-19', 'received', '14.5200', '14.5200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40617, 253, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4500', '2.0000', '2021-09-19', 'received', '12.8900', '12.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (40618, 253, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '0.0000', '2021-09-19', 'received', '14.5000', '14.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (40619, 253, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.7500', '15.0000', '2021-09-19', 'received', '2.2300', '2.2300', '25.0000', NULL, NULL, 1, 'pc', '25.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 (40620, 253, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.3300', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '43.0000', '2021-09-19', '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 (40621, 253, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '10.0000', '2021-09-19', '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 (40622, 253, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '2.4500', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '8.0000', '2021-09-19', 'received', '2.4500', '2.4500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (40623, 253, NULL, 9630, '20769595', 'ZYLORIC', NULL, '15.0000', '20.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '4.0000', '2021-09-19', 'received', '15.0000', '15.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (40624, 253, NULL, 2865, '90832999', 'FINE FINE CREAM', NULL, '2.8000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2021-09-19', '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 (40625, 253, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '8.0000', '2021-09-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 (40626, 253, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '4.4000', '7.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '20.0000', '2021-09-19', '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 (40627, 253, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '3.0000', '2021-09-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 (40628, 253, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3000', '3.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '25.0000', '2021-09-19', '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 (40629, 253, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '12.0000', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '3.0000', '2021-09-19', '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 (40630, 253, NULL, 1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', NULL, '11.5000', '15.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '5.0000', '2021-09-19', 'received', '11.5000', '11.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40631, 253, NULL, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '20.2000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.6000', '3.0000', '2021-09-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 (40632, 253, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.2600', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.3000', '3.0000', '2021-09-19', 'received', '5.2600', '5.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (40633, 253, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '3.0000', '2021-09-19', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40634, 253, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2021-09-19', '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 (40635, 253, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.3000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '4.0000', '2021-09-19', '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 (40636, 253, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4500', '5.0000', '2021-09-19', 'received', '12.8900', '12.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (40637, 253, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '2.1900', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '7.0000', '2021-09-19', 'received', '2.1900', '2.1900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (40638, 253, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2021-09-19', '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 (40639, 253, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.5000', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-09-19', 'received', '8.5000', '8.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40640, 253, NULL, 9453, '73814348', 'LORATADINE ( LORFAST) 10MG', NULL, '11.0000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-09-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 (40641, 253, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '10.0000', '2021-09-19', '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 (40642, 253, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9500', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '5.0000', '2021-09-19', 'received', '7.9500', '7.9500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40643, 253, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '6.0000', '2021-09-19', '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 (40644, 253, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.2000', '12.0000', '2021-09-19', 'received', '1.7300', '1.7300', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.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 (40645, 253, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '4.0000', '2021-09-19', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40646, 253, NULL, 2337, '04743466', 'M2 TONE', NULL, '51.0000', '67.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-09-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 (40647, 253, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '10.7500', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2500', '1.0000', '2021-09-19', 'received', '10.7500', '10.7500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40648, 253, NULL, 2757, '55918370', 'VIGORIX CAPS', NULL, '6.8000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4000', '0.0000', '2021-09-19', 'received', '6.8000', '6.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40649, 253, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.1500', '4.0000', '2021-09-19', 'received', '13.6300', '13.6300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40650, 253, NULL, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', NULL, '13.2000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '5.0000', '2021-09-19', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40651, 253, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2021-09-19', '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 (40652, 253, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '5.0000', '2021-09-19', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40653, 253, NULL, 2299, '8904107900961', 'DICLOLEX GEL', NULL, '6.0000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-09-19', '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 (40654, 253, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-09-19', '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 (40655, 253, 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-09-19', '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 (40656, 253, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '19.5000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '3.0000', '2021-09-19', '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 (40657, 253, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '1.0000', '2021-09-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 (40747, NULL, NULL, 8804, '', '', 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 (40748, NULL, NULL, 7993, '', '', 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 (40749, NULL, NULL, 7890, '', '', 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 (40750, NULL, NULL, 8202, '', '', 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 (40751, NULL, NULL, 8059, '', '', 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 (40752, NULL, NULL, 1325, '', '', 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 (40753, NULL, NULL, 3013, '', '', 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 (40754, NULL, NULL, 8836, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (40755, NULL, NULL, 2640, '', '', 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 (40756, NULL, NULL, 1573, '', '', 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 (40757, NULL, NULL, 8866, '', '', 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 (40758, NULL, NULL, 2879, '', '', 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 (40759, NULL, NULL, 7948, '', '', 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 (40760, NULL, NULL, 7672, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-147.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (40850, 285, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '26.5700', '35.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.8500', '2.0000', '2021-11-10', 'received', '26.5700', '26.5700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '26.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 (40851, 285, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '49.0100', '65.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0300', '0.0000', '2021-11-10', 'received', '49.0100', '49.0100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (40852, 285, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3400', '1.0000', '2021-11-10', '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 (40853, 285, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '9.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '11.0000', '2021-11-10', '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 (40854, 285, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.7800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.8000', '5.0000', '2021-11-10', '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 (40855, 285, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7500', '4.0000', '2021-11-10', 'received', '4.5500', '4.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (40856, 285, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '9.0000', '2021-11-10', '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 (40857, 285, NULL, 8564, '2484', 'PERFECT WHITEGEL', NULL, '10.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '1.0000', '2021-11-10', '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 (40858, 285, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '6.4000', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '4.0000', '2021-11-10', 'received', '6.4000', '6.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40859, 285, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.0800', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.8000', '7.0000', '2021-11-10', 'received', '13.0800', '13.0800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.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 (40860, 285, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '3.0000', '2021-11-10', '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 (40861, 285, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2200', '11.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.6400', '2.0000', '2021-11-10', 'received', '8.2200', '8.2200', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '8.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 (40862, 285, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '83.0000', '110.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '249.0000', '3.0000', '2021-11-10', 'received', '83.0000', '83.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (40863, 285, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5200', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '30.0000', '2021-11-10', 'received', '1.5200', '1.5200', '50.0000', NULL, NULL, 1, 'pc', '50.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 (40864, 285, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.2600', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.3000', '0.0000', '2021-11-10', 'received', '5.2600', '5.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (40865, 285, NULL, 2618, '72760937', 'BUSCOMED TAB 10MG', NULL, '4.6000', '6.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.0000', '50.0000', '2021-11-10', 'received', '4.6000', '4.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (40866, 285, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '5.9200', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '5.0000', '2021-11-10', '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 (40867, 285, NULL, 2299, '8904107900961', 'DICLOLEX GEL', NULL, '6.5400', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '3.0000', '2021-11-10', 'received', '6.5400', '6.5400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (40868, 285, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '36.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '24.0000', '2021-11-10', 'received', '1.1500', '1.1500', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '1.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 (40869, 285, NULL, 2683, '54509632', 'ZINNAT 250 MG', NULL, '52.7000', '70.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '263.5000', '5.0000', '2021-11-10', 'received', '52.7000', '52.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '52.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 (40870, 285, NULL, 2772, '70208100', 'CAFEGOT TAB', NULL, '18.3900', '24.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '183.9000', '6.0000', '2021-11-10', 'received', '18.3900', '18.3900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '18.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 (40871, 285, NULL, 2624, '71356473', 'POLAR ICE', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2021-11-10', '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 (40872, 285, NULL, 9632, '04696207', 'CLARITHROMYCIN 500MG (APTIL PHARM)', NULL, '37.3700', '49.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8500', '5.0000', '2021-11-10', 'received', '37.3700', '37.3700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '37.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 (40873, 285, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-11-10', '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 (40874, 285, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-11-10', '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 (40875, 285, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '14.3000', '19.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '6.0000', '2021-11-10', 'received', '14.3000', '14.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (40876, 285, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '43.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.3600', '0.0000', '2021-11-10', 'received', '32.1800', '32.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (40877, 285, NULL, 9461, '53270643', 'YOVANNY INHALER', NULL, '1.5000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2021-11-10', '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 (40878, 285, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '46.0000', '60.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '2.0000', '2021-11-10', 'received', '46.0000', '46.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (40879, 285, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2021-11-10', '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 (40880, 285, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '14.5200', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.6000', '1.0000', '2021-11-10', 'received', '14.5200', '14.5200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40881, 285, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2021-11-10', '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 (40882, 285, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.3500', '2.0000', '2021-11-10', 'received', '11.8700', '11.8700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40883, 285, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '3.0000', '2021-11-10', '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 (40884, 285, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '5.9500', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7500', '4.0000', '2021-11-10', 'received', '5.9500', '5.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (40885, 285, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '10.0000', '2021-11-10', 'received', '4.2000', '4.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (40886, 285, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '1.0000', '2021-11-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 (40887, 285, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '11.6900', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.4500', '0.0000', '2021-11-10', 'received', '11.6900', '11.6900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (40888, 285, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '11.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-11-10', '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 (40889, 285, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '9.0000', '2021-11-10', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (40890, 285, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '2.0000', '2021-11-10', '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 (40891, 285, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.2100', '4.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.2500', '0.0000', '2021-11-10', 'received', '3.2100', '3.2100', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '3.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 (40892, 285, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '2.0000', '2021-11-10', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40893, 285, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '21.7700', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8500', '0.0000', '2021-11-10', 'received', '21.7700', '21.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (40894, 285, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '75.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '68.0000', '2021-11-10', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (40895, 285, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.4000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '4.0000', '2021-11-10', 'received', '20.4000', '20.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (40896, 285, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2021-11-10', '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 (40897, 285, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.8000', '4.0000', '2021-11-10', '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 (40898, 285, NULL, 2775, '40792038', 'LEXSPORIN OINTMENT', NULL, '18.9000', '25.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '3.0000', '2021-11-10', 'received', '18.9000', '18.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (40899, 285, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.3600', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8000', '3.0000', '2021-11-10', 'received', '7.3600', '7.3600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (40900, 285, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-11-10', '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 (40901, 285, NULL, 9634, '38899153', 'FLUXAMOX CAPS 500MG', NULL, '4.8000', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-11-10', '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 (40902, 285, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2021-11-10', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40903, 285, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-11-10', '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 (40904, 285, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2021-11-10', '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 (40905, 285, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '0.0000', '2021-11-10', '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 (40906, 285, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '9.0000', '2021-11-10', '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 (40907, 285, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '9.9200', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.6000', '3.0000', '2021-11-10', 'received', '9.9200', '9.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (40908, 285, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '4.0000', '2021-11-10', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (40909, 285, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '2.0000', '2021-11-10', '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 (40910, 285, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '18.0200', '24.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0800', '3.0000', '2021-11-10', 'received', '18.0200', '18.0200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.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 (40911, NULL, NULL, 3013, '', '', 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 (40912, NULL, NULL, 2030, '', '', 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 (40913, NULL, NULL, 7633, '', '', 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 (40914, NULL, NULL, 7953, '', '', 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 (40915, NULL, NULL, 8807, '', '', 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 (40916, NULL, NULL, 9007, '', '', 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 (40917, NULL, NULL, 7742, '', '', 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 (40918, NULL, NULL, 1604, '', '', 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 (40919, NULL, NULL, 8089, '', '', 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 (40920, NULL, NULL, 3005, '', '', 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 (40921, NULL, NULL, 9618, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (40922, NULL, NULL, 7555, '', '', 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 (40923, NULL, NULL, 7536, '', '', 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 (40924, NULL, NULL, 8232, '', '', 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 (40925, NULL, NULL, 8132, '', '', 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 (40983, NULL, NULL, 7490, '', '', 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 (40984, NULL, NULL, 7335, '', '', 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 (40985, NULL, NULL, 8518, '', '', 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 (40986, NULL, NULL, 8044, '', '', 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 (40987, NULL, NULL, 7634, '', '', 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 (40988, NULL, NULL, 9183, '', '', 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 (40989, NULL, NULL, 2224, '', '', 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 (40990, NULL, NULL, 7583, '', '', 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 (40991, NULL, NULL, 7911, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (40992, NULL, NULL, 2694, '', '', 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 (40993, NULL, NULL, 7344, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-43.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (40994, NULL, NULL, 1945, '', '', 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 (40995, NULL, NULL, 9438, '', '', 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 (40996, NULL, NULL, 9103, '', '', 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 (40997, NULL, NULL, 9213, '', '', 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 (40998, NULL, NULL, 1339, '', '', 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 (40999, NULL, NULL, 2579, '', '', 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 (41000, NULL, NULL, 2526, '', '', 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 (41001, NULL, NULL, 2698, '', '', 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 (41002, NULL, NULL, 8743, '', '', 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 (41003, NULL, NULL, 8809, '', '', 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 (41004, NULL, NULL, 7428, '', '', 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 (41005, NULL, NULL, 9085, '', '', 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 (41006, NULL, NULL, 8740, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41007, NULL, NULL, 9507, '', '', 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 (41008, NULL, NULL, 2363, '', '', 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 (41009, NULL, NULL, 7705, '', '', 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 (41010, NULL, NULL, 9123, '', '', 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 (41011, NULL, NULL, 7927, '', '', 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 (41012, NULL, NULL, 1369, '', '', 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 (41013, NULL, NULL, 8677, '', '', 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 (41014, NULL, NULL, 2417, '', '', 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 (41308, NULL, NULL, 2058, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (41309, NULL, NULL, 2256, '', '', 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 (41310, NULL, NULL, 8472, '', '', 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 (41311, NULL, NULL, 9412, '', '', 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 (41312, NULL, NULL, 1806, '', '', 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 (41313, NULL, NULL, 1585, '', '', 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 (41314, NULL, NULL, 7562, '', '', 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 (41315, NULL, NULL, 1628, '', '', 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 (41316, NULL, NULL, 9452, '', '', 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 (41317, NULL, NULL, 7674, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41318, NULL, NULL, 9555, '', '', 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 (41319, NULL, NULL, 7429, '', '', 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 (41320, NULL, NULL, 1310, '', '', 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 (41321, NULL, NULL, 2634, '', '', 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 (41322, NULL, NULL, 1895, '', '', 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 (41323, NULL, NULL, 2936, '', '', 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 (41324, NULL, NULL, 9533, '', '', 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 (41325, NULL, NULL, 9160, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41326, NULL, NULL, 1734, '', '', 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 (41327, NULL, NULL, 8142, '', '', 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 (41328, NULL, NULL, 9631, '', '', 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 (41329, NULL, NULL, 7316, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-158.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41330, NULL, NULL, 9213, '', '', 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 (41331, NULL, NULL, 7903, '', '', 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 (41332, NULL, NULL, 9324, '', '', 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 (41333, NULL, NULL, 8614, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (41334, NULL, NULL, 7989, '', '', 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 (41335, NULL, NULL, 7884, '', '', 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 (41336, NULL, NULL, 7353, '', '', 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 (41364, 286, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4800', '0.0000', '2021-11-15', 'received', '22.2400', '22.2400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (41365, 286, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '15.8000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '3.0000', '2021-11-15', 'received', '15.8000', '15.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (41366, 286, NULL, 2955, '51481408', 'LONART TAB 24\'S', NULL, '4.8000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '7.0000', '2021-11-15', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (41367, 286, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-11-15', '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 (41368, 286, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.7300', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1900', '0.0000', '2021-11-15', 'received', '6.7300', '6.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (41369, 286, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '49.0100', '65.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0200', '2.0000', '2021-11-15', 'received', '49.0100', '49.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (41370, 286, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-15', '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 (41371, 286, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-11-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 (41372, 286, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2021-11-15', '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 (41373, 286, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-11-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 (41374, 286, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.0500', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2021-11-15', '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 (41375, 286, NULL, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '2.6400', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '0.0000', '2021-11-15', 'received', '2.6400', '2.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (41376, 286, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0800', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.6000', '0.0000', '2021-11-15', 'received', '7.0800', '7.0800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (41377, 286, NULL, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '33.9300', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.7900', '0.0000', '2021-11-15', 'received', '33.9300', '33.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (41378, 286, NULL, 3066, '87116727', 'TIXYLIX TODDER SYR', NULL, '25.0000', '36.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-11-15', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (41379, 286, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '26.5700', '35.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1400', '0.0000', '2021-11-15', 'received', '26.5700', '26.5700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (41380, 286, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '7.3300', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9900', '1.0000', '2021-11-15', '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 (41381, 286, NULL, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.4900', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.9000', '2.0000', '2021-11-15', '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 (41382, 286, NULL, 7643, '1563', 'METRO SUSP LETAP #MGP', NULL, '2.1100', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5500', '5.0000', '2021-11-15', 'received', '2.1100', '2.1100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (41383, 286, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.0200', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2021-11-15', '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 (41384, 286, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '7.6500', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.3000', '2.0000', '2021-11-15', 'received', '7.6500', '7.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.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 (41385, 286, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7500', '0.0000', '2021-11-15', 'received', '4.5500', '4.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (41386, 286, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.5000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-11-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 (41387, 286, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '1.0000', '2021-11-15', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (41388, 286, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '0.8800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-11-15', 'received', '0.8800', '0.8800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (41389, 286, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.2000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '0.0000', '2021-11-15', '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 (41390, 286, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '35.0700', '46.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0700', '0.0000', '2021-11-15', 'received', '35.0700', '35.0700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '35.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 (41391, 286, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-11-15', '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 (41392, 286, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-11-15', 'received', '1.1500', '1.1500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (41393, 286, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2021-11-15', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (41394, 286, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9600', '0.0000', '2021-11-15', '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 (41395, 286, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.8200', '18.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6400', '0.0000', '2021-11-15', 'received', '13.8200', '13.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.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 (41396, 286, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '11.0000', '2021-11-15', '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 (41397, 286, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2021-11-15', 'received', '1.4000', '1.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (41398, 286, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-11-15', '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 (41399, 286, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '19.0700', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.1400', '0.0000', '2021-11-15', 'received', '19.0700', '19.0700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (41400, 286, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-11-15', '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 (41401, 286, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '58.0000', '77.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2021-11-15', 'received', '58.0000', '58.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41402, 286, NULL, 8333, '2253', 'GUDAPET CAPS', NULL, '5.5600', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8000', '0.0000', '2021-11-15', 'received', '5.5600', '5.5600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (41403, 286, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.8000', '0.0000', '2021-11-15', 'received', '2.9200', '2.9200', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (41404, 286, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '39.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '2.0000', '2021-11-15', '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 (41405, 286, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6700', '0.0000', '2021-11-15', 'received', '12.8900', '12.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (41406, 286, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-11-15', '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 (41407, 286, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.3300', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.3000', '0.0000', '2021-11-15', 'received', '7.3300', '7.3300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (41408, 286, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.5600', '0.7400', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2000', '0.0000', '2021-11-15', 'received', '0.5600', '0.5600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (41409, 286, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6800', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-11-15', 'received', '0.6800', '0.6800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (41410, 286, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-11-15', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (41411, 286, 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-11-15', '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 (41412, 286, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.3300', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6500', '0.0000', '2021-11-15', 'received', '5.3300', '5.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (41413, 286, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-11-15', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (41414, 286, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '4.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-11-15', '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 (41415, 286, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.3400', '4.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.2000', '6.0000', '2021-11-15', 'received', '3.3400', '3.3400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (41416, 286, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '14.6400', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9200', '3.0000', '2021-11-15', 'received', '14.6400', '14.6400', '3.0000', NULL, NULL, 1, 'pc', '3.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 (41417, 286, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2021-11-15', 'received', '2.8000', '2.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (41418, 286, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '1.6500', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2500', '0.0000', '2021-11-15', 'received', '1.6500', '1.6500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (41419, 286, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-11-15', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (41420, 286, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.8200', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4600', '0.0000', '2021-11-15', 'received', '22.8200', '22.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (41421, 286, NULL, 9643, '63516148', 'KOJACH MOUTH WASH', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2021-11-15', '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 (41422, 286, NULL, 9644, '03818886', 'KOJACH CHARCOAL PASTE 75ML', NULL, '3.6000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '1.0000', '2021-11-15', '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 (41423, 286, NULL, 9645, '86012648', 'KOJACH F PASTE', NULL, '5.4000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '4.0000', '2021-11-15', '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 (41424, 286, NULL, 9646, '91091174', 'KOJACH FLOURIDE PASTE', NULL, '2.5000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '2.0000', '2021-11-15', '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 (41425, 286, NULL, 9647, '86395069', 'KOJACH TOOTH/CHARCOAL BRUSH', NULL, '1.8000', '2.5000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '7.0000', '2021-11-15', 'received', '1.8000', '1.8000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (41426, 286, NULL, 9254, '3174', 'PROCOLD  SYR 60ML', NULL, '20.0000', '16.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '7.0000', '2021-11-15', 'received', '20.0000', '20.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (41552, NULL, NULL, 9648, '', '', 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 (41709, NULL, NULL, 2303, '', '', 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 (41710, NULL, NULL, 7336, '', '', 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 (41711, NULL, NULL, 1814, '', '', 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 (41712, NULL, NULL, 7822, '', '', 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 (41812, NULL, NULL, 7790, '', '', 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 (41813, NULL, NULL, 7438, '', '', 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 (41814, NULL, NULL, 7994, '', '', 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 (41815, NULL, NULL, 8104, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (41816, NULL, NULL, 9513, '', '', 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 (41817, NULL, NULL, 7901, '', '', 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 (41818, NULL, NULL, 7902, '', '', 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 (41819, NULL, NULL, 8886, '', '', 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 (41820, NULL, NULL, 9534, '', '', 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 (41821, NULL, NULL, 1805, '', '', 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 (41822, NULL, NULL, 7402, '', '', 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 (41823, NULL, NULL, 2176, '', '', 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 (41824, NULL, NULL, 2181, '', '', 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 (41825, NULL, NULL, 8598, '', '', 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 (41826, NULL, NULL, 8622, '', '', 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 (41827, NULL, NULL, 7759, '', '', 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 (41828, NULL, NULL, 2817, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (41829, NULL, NULL, 9402, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41830, NULL, NULL, 8205, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (41831, NULL, NULL, 9176, '', '', 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 (41832, NULL, NULL, 7839, '', '', 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 (41833, NULL, NULL, 8504, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (41834, NULL, NULL, 2797, '', '', 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 (41835, NULL, NULL, 7871, '', '', 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 (41836, NULL, NULL, 7882, '', '', 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 (41837, NULL, NULL, 2503, '', '', 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 (41838, NULL, NULL, 1941, '', '', 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 (41839, NULL, NULL, 3029, '', '', 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 (41840, NULL, NULL, 1840, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-135.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41841, NULL, NULL, 3062, '', '', 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 (41842, NULL, NULL, 7541, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (41843, NULL, NULL, 9402, '', '', 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 (41844, NULL, NULL, 7673, '', '', 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 (41845, NULL, NULL, 9649, '', '', 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 (41846, NULL, NULL, 7636, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (41847, NULL, NULL, 2774, '', '', 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 (41848, NULL, NULL, 2928, '', '', 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 (41849, NULL, NULL, 2018, '', '', 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 (41850, NULL, NULL, 7816, '', '', 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 (41851, NULL, NULL, 7856, '', '', 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 (41852, NULL, NULL, 3049, '', '', 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 (41853, NULL, NULL, 9584, '', '', 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 (41854, NULL, NULL, 8002, '', '', 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 (41855, NULL, NULL, 8044, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (41856, NULL, NULL, 8194, '', '', 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 (41857, NULL, NULL, 8634, '', '', 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 (41971, 287, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '4.5000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-11-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 (41972, 287, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '6.0000', '2021-11-15', '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 (41973, 287, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '4.0000', '2021-11-15', 'received', '11.7000', '11.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (41974, 287, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-11-15', '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 (41975, 287, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '18.0000', '23.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-11-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 (41976, 287, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '23.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-11-15', '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 (41977, 287, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '22.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '2.0000', '2021-11-15', '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 (41978, 287, NULL, 1549, '610074245209', 'LAVET', NULL, '14.5000', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '2.0000', '2021-11-15', '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 (41979, 287, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '3.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2021-11-15', '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 (41980, 287, NULL, 9160, '3080', 'LUEX NASAL INHALER', NULL, '3.8900', '5.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.7000', '21.0000', '2021-11-15', 'received', '3.8900', '3.8900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (41981, 287, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '11.5000', '15.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '1.0000', '2021-11-15', '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 (41982, 287, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '7.5900', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9500', '5.0000', '2021-11-15', '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 (41983, 287, NULL, 9636, '72421421', 'BENYLIN MUCUS MAX 150ML', NULL, '44.0000', '58.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-11-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 (41984, 287, NULL, 9637, '81450031', 'BENYLIN CHILDREN NIGHT COUGH', NULL, '36.5000', '48.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.5000', '1.0000', '2021-11-15', 'received', '36.5000', '36.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41985, 287, NULL, 9638, '23165357', 'BENYLIN MUCUS DECON SYR 100ML', NULL, '34.5000', '45.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.5000', '1.0000', '2021-11-15', 'received', '34.5000', '34.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (41986, 287, NULL, 9639, '04191658', 'BENYLIN CHILD/THROAT SYRUP 125ML UK', NULL, '28.7900', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.3700', '2.0000', '2021-11-15', 'received', '28.7900', '28.7900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (41987, 287, NULL, 9640, '96659237', 'BENYLIN DRY TICKLY COUGH 150ML', NULL, '38.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '2.0000', '2021-11-15', 'received', '38.0000', '38.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41988, 287, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '36.0800', '48.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2400', '0.0000', '2021-11-15', 'received', '36.0800', '36.0800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.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 (41989, 287, NULL, 9641, '23340378', 'BENYLIN CHILDREN CHESTY COUGH', NULL, '36.0800', '48.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2400', '1.0000', '2021-11-15', 'received', '36.0800', '36.0800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.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 (41990, 287, NULL, 7613, '1533', 'FEMFRESH', NULL, '12.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-15', '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 (41991, 287, NULL, 9642, '49714185', 'BENYLIN DRY COUGH NIGHT 150ML', NULL, '51.3000', '68.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.9000', '0.0000', '2021-11-15', 'received', '51.3000', '51.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '51.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 (41992, 287, NULL, 9643, '63516148', 'KOJACH MOUTH WASH', NULL, '7.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-11-15', '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 (41993, 287, NULL, 9644, '03818886', 'KOJACH CHARCOAL PASTE 75ML', NULL, '3.6000', '5.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '4.0000', '2021-11-15', '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 (41994, 287, NULL, 9645, '86012648', 'KOJACH F PASTE', NULL, '5.4000', '7.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '4.0000', '2021-11-15', '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 (41995, 287, NULL, 9646, '91091174', 'KOJACH FLOURIDE PASTE', NULL, '2.5000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '6.0000', '2021-11-15', '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 (41996, 287, NULL, 9647, '86395069', 'KOJACH TOOTH/CHARCOAL BRUSH', NULL, '1.8000', '2.5000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '15.0000', '2021-11-15', 'received', '1.8000', '1.8000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (41997, 287, NULL, 9254, '3174', 'PROCOLD  SYR 60ML', NULL, '20.0000', '16.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '7.0000', '2021-11-15', 'received', '20.0000', '20.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (41998, 287, NULL, 9648, '71133764', 'FIESTA LUBRICANT GEL 40ML BIG', NULL, '15.0000', '20.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2021-11-15', '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 (41999, 287, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.2000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-11-15', '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 (42000, 287, NULL, 9653, '2483721', 'PERFECTIL PLATIUM SKIN RADIANCE ULITIMATE', NULL, '46.0000', '61.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.0000', '4.0000', '2021-11-15', 'received', '46.0000', '46.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42001, NULL, NULL, 2680, '', '', 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 (42015, 289, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '29.0000', '42.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '348.0000', '0.0000', '2021-11-21', '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 (42031, NULL, NULL, 7737, '', '', 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 (42032, NULL, NULL, 8825, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (42033, NULL, NULL, 9105, '', '', 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 (42034, NULL, NULL, 7763, '', '', 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 (42058, NULL, NULL, 9655, '', '', 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 (42059, NULL, NULL, 2828, '', '', 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 (42060, NULL, NULL, 7609, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (42061, NULL, NULL, 7721, '', '', 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 (42062, NULL, NULL, 9634, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-59.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42063, NULL, NULL, 9489, '', '', 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 (42064, NULL, NULL, 2968, '', '', 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 (42065, 288, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2021-11-20', '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 (42066, 288, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '7.9800', '10.5300', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2021-11-20', '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 (42067, 288, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.2600', '16.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.7800', '0.0000', '2021-11-20', 'received', '12.2600', '12.2600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (42068, 288, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '44.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0400', '0.0000', '2021-11-20', 'received', '33.0200', '33.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (42069, 288, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '35.9400', '47.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8800', '0.0000', '2021-11-20', 'received', '35.9400', '35.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (42070, 288, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2200', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.3200', '0.0000', '2021-11-20', 'received', '8.2200', '8.2200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (42071, 288, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-11-20', 'received', '1.1500', '1.1500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (42072, 288, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.7000', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-11-20', 'received', '1.7000', '1.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (42073, 288, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '6.2000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '1.0000', '2021-11-20', 'received', '6.2000', '6.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42074, 288, NULL, 7406, '1326', 'POLYFER SYR FORTE  50ML', NULL, '2.0000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-11-20', 'received', '2.0000', '2.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42075, 288, NULL, 2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', NULL, '30.9800', '40.1000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.9600', '0.0000', '2021-11-20', 'received', '30.9800', '30.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (42076, 288, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4500', '0.0000', '2021-11-20', 'received', '6.2900', '6.2900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42077, 288, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-11-20', '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 (42078, 288, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.3000', '4.0000', '2021-11-20', '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 (42079, 288, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '7.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '324.0000', '26.0000', '2021-11-20', 'received', '5.4000', '5.4000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (42080, 288, NULL, 9662, '27923036', 'CERUMOL EAR DROPS', NULL, '25.2200', '33.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4400', '1.0000', '2021-11-20', 'received', '25.2200', '25.2200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.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 (42081, 288, NULL, 9663, '49169056', 'AMLODIPINE 10MG (STAMLO)', NULL, '18.0000', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-20', '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 (42082, 288, NULL, 9664, '55965831', 'PARACETAMOL SUPP 10\'S (PARAMOL)', NULL, '6.5000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '1.0000', '2021-11-20', '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 (42083, 288, NULL, 7571, '1491', 'NUCLEO CMP', NULL, '2.1000', '2.7000', '90.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.0000', '78.0000', '2021-11-20', 'received', '2.1000', '2.1000', '90.0000', NULL, NULL, 1, 'pc', '90.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 (42084, 288, 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', '7.0000', '2021-11-20', '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 (42085, 288, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2021-11-20', '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 (42086, 288, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.9900', '40.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9900', '0.0000', '2021-11-20', 'received', '29.9900', '29.9900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42087, 288, NULL, 1755, 'PR-468', 'STOPKOF EXPT (ADULT) 100ML', NULL, '5.9800', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9200', '0.0000', '2021-11-20', 'received', '5.9800', '5.9800', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42088, 288, NULL, 9665, '80134213', 'GAVISCON PEPPERMINT SUSP 150ML', NULL, '30.7500', '41.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '1.0000', '2021-11-20', 'received', '30.7500', '30.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (42089, 288, NULL, 8902, '2822', ' METFORMIN GLUCOPHAGE 500MG', NULL, '16.4800', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9600', '2.0000', '2021-11-20', 'received', '16.4800', '16.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (42090, 288, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-11-20', '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 (42091, 288, NULL, 9335, '3255', 'IROVIT DROP', NULL, '25.0000', '33.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-11-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 (42092, 288, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '51.8500', '69.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.7000', '0.0000', '2021-11-20', 'received', '51.8500', '51.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.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 (42093, 288, 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-11-20', '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 (42094, 288, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '7.6500', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.6500', '0.0000', '2021-11-20', 'received', '7.6500', '7.6500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '7.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 (42095, 288, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '398.7000', '18.0000', '2021-11-20', 'received', '13.2900', '13.2900', '30.0000', NULL, NULL, 1, 'pc', '30.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 (42096, 288, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.2500', '0.0000', '2021-11-20', 'received', '14.7500', '14.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (42097, 288, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9800', '0.0000', '2021-11-20', '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 (42098, 288, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '16.2300', '22.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2300', '0.0000', '2021-11-20', 'received', '16.2300', '16.2300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '16.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 (42099, 288, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '0.0000', '2021-11-20', '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 (42100, 288, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '18.0000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2021-11-20', '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 (42101, 288, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2021-11-20', '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 (42102, 288, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.4000', '0.0000', '2021-11-20', 'received', '20.6000', '20.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42103, 288, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2021-11-20', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42104, 288, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-11-20', 'received', '12.5000', '12.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42105, 288, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '17.0000', '22.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2021-11-20', '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 (42106, 288, NULL, 9654, '34960975', 'OMEPRAZOLE 20MG (OMIZEC) CAPS 28\'S', NULL, '18.1100', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.3300', '0.0000', '2021-11-20', 'received', '18.1100', '18.1100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (42131, NULL, NULL, 7459, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-254.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42132, NULL, NULL, 9291, '', '', 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 (42133, NULL, NULL, 8878, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-136.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42134, NULL, NULL, 7482, '', '', 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 (42135, NULL, NULL, 8879, '', '', 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 (42136, NULL, NULL, 1612, '', '', 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 (42137, NULL, NULL, 8997, '', '', 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 (42138, NULL, NULL, 1321, '', '', 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 (42139, NULL, NULL, 1563, '', '', 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 (42140, NULL, NULL, 2604, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (42141, NULL, NULL, 9638, '', '', 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 (42142, NULL, NULL, 7805, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (42143, NULL, NULL, 7888, '', '', 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 (42144, NULL, NULL, 7466, '', '', 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 (42145, NULL, NULL, 8344, '', '', 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 (42146, NULL, NULL, 8161, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (42147, NULL, NULL, 7375, '', '', 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 (42148, NULL, NULL, 8215, '', '', 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 (42149, NULL, NULL, 9154, '', '', 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 (42150, NULL, NULL, 9505, '', '', 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 (42151, NULL, NULL, 7716, '', '', 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 (42152, NULL, NULL, 2865, '', '', 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 (42153, NULL, NULL, 8132, '', '', 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 (42154, NULL, NULL, 7447, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-118.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42155, NULL, NULL, 8761, '', '', 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 (42156, NULL, NULL, 7717, '', '', 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 (42157, NULL, NULL, 8532, '', '', 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 (42158, NULL, NULL, 7836, '', '', 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 (42159, NULL, NULL, 7706, '', '', 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 (42160, NULL, NULL, 7504, '', '', 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 (42161, NULL, NULL, 9667, '', '', 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 (42163, NULL, NULL, 9668, '', '', 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 (42164, NULL, NULL, 9669, '', '', 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 (42201, 292, NULL, 9667, '25127407', 'KAYVIT VIT C', NULL, '17.0000', '25.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2021-11-24', '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 (42202, 292, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2021-11-24', '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 (42203, 292, NULL, 9549, '26287289', 'DIFLUCAN CAPS', NULL, '82.8700', '110.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.7400', '2.0000', '2021-11-24', '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 (42204, 292, NULL, 7774, '1694', 'MIST POT SIT', NULL, '3.3000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.3000', '1.0000', '2021-11-24', 'received', '3.3000', '3.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42205, 292, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '6.2500', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2500', '1.0000', '2021-11-24', 'received', '6.2500', '6.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (42206, 292, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '26.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0700', '0.0000', '2021-11-24', '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 (42207, 292, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-11-24', '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 (42208, 292, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '20.0500', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.2500', '4.0000', '2021-11-24', 'received', '20.0500', '20.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (42209, 292, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.9000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-11-24', '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 (42210, 292, NULL, 7619, '1539', 'KY JELLY 75G', NULL, '41.4500', '55.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.9000', '0.0000', '2021-11-24', 'received', '41.4500', '41.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (42211, 292, NULL, 9174, '3094', 'GEN M SUSP', NULL, '15.5000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '0.0000', '2021-11-24', '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 (42212, 292, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '21.7700', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8500', '0.0000', '2021-11-24', 'received', '21.7700', '21.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (42213, 292, NULL, 9476, '01480261', 'ABSTA SYR', NULL, '8.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-11-24', '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 (42214, 292, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0500', '44.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.1500', '1.0000', '2021-11-24', 'received', '33.0500', '33.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (42215, 292, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-11-24', '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 (42216, 292, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '9.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2021-11-24', '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 (42217, 292, NULL, 9671, '67250351', 'FLEMING 457MG SUSP', NULL, '10.9300', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7900', '1.0000', '2021-11-24', 'received', '10.9300', '10.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (42338, NULL, NULL, 2887, '', '', 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 (42339, NULL, NULL, 9578, '', '', 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 (42340, NULL, NULL, 9579, '', '', 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 (42341, NULL, NULL, 9242, '', '', 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 (42342, NULL, NULL, 2012, '', '', 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 (42343, NULL, NULL, 2236, '', '', 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 (42344, NULL, NULL, 7357, '', '', 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 (42345, NULL, NULL, 7601, '', '', 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 (42346, NULL, NULL, 8766, '', '', 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 (42347, NULL, NULL, 9275, '', '', 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 (42348, NULL, NULL, 8119, '', '', 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 (42349, NULL, NULL, 8535, '', '', 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 (42350, NULL, NULL, 9016, '', '', 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 (42351, NULL, NULL, 9607, '', '', 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 (42352, NULL, NULL, 8763, '', '', 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 (42353, NULL, NULL, 9471, '', '', 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 (42354, NULL, NULL, 8775, '', '', 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 (42391, 294, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9800', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.9000', '5.0000', '2021-11-24', '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 (42392, 294, NULL, 8445, '2365', 'ROOTER LIFE', NULL, '34.5000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-11-24', '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 (42393, 294, NULL, 7887, '1807', 'LIVING BIT CAPS', NULL, '18.0500', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.1500', '0.0000', '2021-11-24', '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 (42394, 294, NULL, 8316, '2236', 'AMITRIPTLINE 25MG', NULL, '6.5000', '10.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-11-24', '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 (42395, 294, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '6.9600', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.9600', '1.0000', '2021-11-24', 'received', '6.9600', '6.9600', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42396, 294, NULL, 7536, '1456', 'LIPITOR 20', NULL, '6.5000', '8.6000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.0000', '0.0000', '2021-11-24', 'received', '6.5000', '6.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (42397, 294, NULL, 8673, '2593', 'FLAREX', NULL, '18.4400', '24.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8800', '0.0000', '2021-11-24', 'received', '18.4400', '18.4400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (42398, 294, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.9000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '10.0000', '2021-11-24', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42399, 294, NULL, 9672, '71008212', 'CHILD CARE VIT C SYRUP', NULL, '2.0500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '10.0000', '2021-11-24', '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 (42400, 294, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6500', '0.0000', '2021-11-24', '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 (42401, 294, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.9000', '18.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '1.0000', '2021-11-24', '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 (42402, 294, NULL, 8361, '2281', 'LEENA SRP', NULL, '7.4500', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2500', '0.0000', '2021-11-24', '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 (42403, 294, NULL, 9674, '31168985', 'ARTEMETER INJ 80MG CIRON 2ML', NULL, '2.0000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2021-11-24', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (42404, 294, NULL, 7401, '1321', 'WELLBABY MULTI-VIT LIQ', NULL, '57.9000', '77.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '173.7000', '0.0000', '2021-11-24', 'received', '57.9000', '57.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '57.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 (42405, 294, NULL, 2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', NULL, '2.4000', '3.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '95.0000', '2021-11-24', 'received', '2.4000', '2.4000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (42406, 294, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.8000', '0.0000', '2021-11-24', '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 (42407, 294, NULL, 9088, '3008', 'ZUBES EXTRA STRONG', NULL, '12.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-11-24', '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 (42408, 294, NULL, 8858, '2778', 'KEPTRILS LOZ', NULL, '3.5000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-11-24', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42409, 294, NULL, 8149, '2069', 'DITHRANOL', NULL, '5.3000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '2.0000', '2021-11-24', '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 (42410, 294, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '1.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-11-24', 'received', '0.5500', '0.5500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (42411, 294, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '0.0000', '2021-11-24', 'received', '0.5300', '0.5300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (42412, 294, NULL, 9677, '29001253', 'FLUCLOX CAPS 250MG (M&G) ', NULL, '2.2500', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '50.0000', '2021-11-24', 'received', '2.2500', '2.2500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (42413, 294, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '5.9900', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9400', '0.0000', '2021-11-24', 'received', '5.9900', '5.9900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (42414, 294, NULL, 7708, '1628', 'TEEDAR', NULL, '6.1400', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8400', '0.0000', '2021-11-24', 'received', '6.1400', '6.1400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (42415, 294, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '1.9200', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2021-11-24', 'received', '1.9200', '1.9200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (42416, 294, NULL, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '0.4200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-11-24', '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 (42417, 294, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '2.6700', '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.6700', '1.0000', '2021-11-24', 'received', '2.6700', '2.6700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42418, 294, NULL, 7933, '1853', 'WORMBASE TAB', NULL, '0.4400', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.4000', '0.0000', '2021-11-24', 'received', '0.4400', '0.4400', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42419, 294, NULL, 9667, '25127407', 'KAYVIT VIT C', NULL, '17.0000', '25.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '1.0000', '2021-11-24', 'received', '17.0000', '17.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (42420, 294, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2021-11-24', 'received', '1.4000', '1.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42421, 294, NULL, 7358, '1278', 'BELLS CHILDREN,S COUGH', NULL, '11.0000', '15.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-11-24', '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 (42422, 294, NULL, 8401, '2321', 'CITY TONIC', NULL, '8.0500', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2500', '0.0000', '2021-11-24', 'received', '8.0500', '8.0500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42423, 294, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '9.0000', '12.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '6.0000', '2021-11-24', 'received', '9.0000', '9.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (42424, 294, NULL, 7465, '1385', 'RHINATHIOL INFANT PINK', NULL, '20.2400', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '0.0000', '2021-11-24', 'received', '20.2400', '20.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42425, 294, NULL, 8178, '2098', 'MALIN ADULT', NULL, '5.4000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-11-24', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42426, 294, NULL, 7576, '1496', 'SOLUBLE ASP', NULL, '1.2400', '2.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2021-11-24', 'received', '1.2400', '1.2400', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.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 (42427, 294, NULL, 7370, '1290', 'BELLS BABY COUGH', NULL, '12.1100', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.6600', '0.0000', '2021-11-24', 'received', '12.1100', '12.1100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.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 (42428, NULL, NULL, 1954, '', '', 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 (42429, NULL, NULL, 1645, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (42430, NULL, NULL, 1845, '', '', 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 (42431, NULL, NULL, 8735, '', '', 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 (42432, NULL, NULL, 2850, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (42433, NULL, NULL, 8029, '', '', 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 (42434, NULL, NULL, 1340, '', '', 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 (42435, NULL, NULL, 9407, '', '', 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 (42436, NULL, NULL, 7832, '', '', 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 (42437, NULL, NULL, 7571, '', '', 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 (42438, NULL, NULL, 2651, '', '', 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 (42439, NULL, NULL, 7454, '', '', 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 (42440, NULL, NULL, 9667, '', '', 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 (42448, NULL, NULL, 2920, '', '', 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 (42449, NULL, NULL, 9634, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42450, NULL, NULL, 9529, '', '', 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 (42451, NULL, NULL, 7768, '', '', 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 (42452, NULL, NULL, 8345, '', '', 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 (42453, NULL, NULL, 7992, '', '', 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 (42454, NULL, NULL, 1591, '', '', 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 (42455, NULL, NULL, 8220, '', '', 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 (42456, NULL, NULL, 8517, '', '', 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 (42457, NULL, NULL, 1337, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-63.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42458, NULL, NULL, 2889, '', '', 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 (42459, NULL, NULL, 7736, '', '', 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 (42460, NULL, NULL, 3001, '', '', 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 (42461, NULL, NULL, 7663, '', '', 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 (42462, NULL, NULL, 7473, '', '', 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 (42463, NULL, NULL, 1605, '', '', 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 (42464, NULL, NULL, 8065, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (42465, NULL, NULL, 7573, '', '', 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 (42466, NULL, NULL, 7935, '', '', 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 (42467, NULL, NULL, 7918, '', '', 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 (42468, NULL, NULL, 8652, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (42469, NULL, NULL, 7643, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (42470, NULL, NULL, 9613, '', '', 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 (42471, NULL, NULL, 7915, '', '', 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 (42472, NULL, NULL, 7743, '', '', 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 (42473, NULL, NULL, 7642, '', '', 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 (42474, NULL, NULL, 2413, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42475, NULL, NULL, 1541, '', '', 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 (42476, NULL, NULL, 2815, '', '', 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 (42477, NULL, NULL, 9158, '', '', 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 (42478, NULL, NULL, 8453, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (42479, NULL, NULL, 8529, '', '', 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 (42480, NULL, NULL, 8187, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-65.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42481, NULL, NULL, 7402, '', '', 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 (42482, NULL, NULL, 8604, '', '', 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 (42483, NULL, NULL, 1482, '', '', 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 (42484, NULL, NULL, 2279, '', '', 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 (42485, NULL, NULL, 9247, '', '', 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 (42486, NULL, NULL, 7953, '', '', 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 (42487, NULL, NULL, 2231, '', '', 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 (42488, NULL, NULL, 2458, '', '', 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 (42489, NULL, NULL, 1439, '', '', 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 (42490, NULL, NULL, 2025, '', '', 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 (42491, NULL, NULL, 9471, '', '', 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 (42492, NULL, NULL, 2100, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42493, NULL, NULL, 8935, '', '', 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 (42533, 296, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '4.4000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-11-29', '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 (42534, 296, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '6.5500', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6500', '2.0000', '2021-11-29', 'received', '6.5500', '6.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (42535, 296, NULL, 2519, '61714252', 'COLESTOP 20MG', NULL, '13.7000', '18.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.3000', '5.0000', '2021-11-29', 'received', '13.7000', '13.7000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '13.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 (42536, 296, NULL, 8775, '2695', 'VITRAC S/S', NULL, '3.3000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.3000', '0.0000', '2021-11-29', 'received', '3.3000', '3.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42537, 296, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-11-29', '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 (42538, 296, NULL, 7725, '1645', 'SOFTCARE WIPES', NULL, '9.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-11-29', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42539, 296, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9900', '0.0000', '2021-11-29', 'received', '21.9900', '21.9900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42540, 296, NULL, 7540, '1460', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9900', '1.0000', '2021-11-29', 'received', '21.9900', '21.9900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42541, 296, NULL, 1820, '8901040306010', 'TIMOL 0.5% (SANOFI)', NULL, '8.3700', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.1100', '1.0000', '2021-11-29', 'received', '8.3700', '8.3700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (42542, 296, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '11.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-11-29', '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 (42543, 296, NULL, 2361, '93787462', 'ASMANOL TABS 200', NULL, '0.4800', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2021-11-29', '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 (42544, 296, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2021-11-29', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (42545, 296, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.4000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-11-29', 'received', '1.4000', '1.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42546, 296, NULL, 9679, '48948393', 'GLIMEPIRIDE DENK 2MG', NULL, '36.2000', '48.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2000', '0.0000', '2021-11-29', 'received', '36.2000', '36.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '36.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 (42547, 296, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.5000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-11-29', '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 (42548, 296, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2021-11-29', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42549, 296, NULL, 7788, '1708', 'HUICHUM CAPS', NULL, '21.0000', '28.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '1.0000', '2021-11-29', 'received', '21.0000', '21.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42550, 296, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-11-29', '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 (42551, 296, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-11-29', '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 (42552, 296, NULL, 1696, 'PR-409', 'CYFEN SYR', NULL, '10.2900', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8700', '0.0000', '2021-11-29', 'received', '10.2900', '10.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (42553, 296, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.0400', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '0.0000', '2021-11-29', 'received', '7.0400', '7.0400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42554, 296, NULL, 2208, '8964000114049', 'CASTOR OIL', NULL, '8.9000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '2.0000', '2021-11-29', 'received', '8.9000', '8.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (42555, 296, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '12.5000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-11-29', '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 (42556, 296, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '9.9000', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2021-11-29', 'received', '9.9000', '9.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (42557, 296, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.9500', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8500', '0.0000', '2021-11-29', 'received', '9.9500', '9.9500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42558, 296, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-11-29', '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 (42559, 296, NULL, 7626, '1546', 'VITA POWER SRP', NULL, '7.6000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2000', '0.0000', '2021-11-29', 'received', '7.6000', '7.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (42560, 296, 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-11-29', '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 (42561, 296, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.1500', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '0.0000', '2021-11-29', 'received', '4.1500', '4.1500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42562, 296, NULL, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.7000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2021-11-29', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42563, 296, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.2700', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.2700', '0.0000', '2021-11-29', 'received', '0.2700', '0.2700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42564, 296, NULL, 7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', NULL, '15.6000', '21.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '0.0000', '2021-11-29', 'received', '15.6000', '15.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (42565, 296, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.6000', '6.0700', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-11-29', '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 (42566, 296, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0800', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.8000', '0.0000', '2021-11-29', 'received', '7.0800', '7.0800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42567, 296, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.9900', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9700', '0.0000', '2021-11-29', 'received', '22.9900', '22.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (42568, 296, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '3.0000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-11-29', 'received', '3.0000', '3.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42569, 296, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.3000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-11-29', 'received', '0.2400', '0.2400', '50.0000', NULL, NULL, 1, 'pc', '50.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 (42570, 296, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.6000', '0.0000', '2021-11-29', 'received', '1.4000', '1.4000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42571, 296, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '7.8500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2021-11-29', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42572, 296, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.0000', '8.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-11-29', '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 (42573, 296, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.4000', '14.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2021-11-29', 'received', '10.4000', '10.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.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 (42574, 296, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4000', '0.0000', '2021-11-29', 'received', '2.8000', '2.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42575, 296, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-11-29', '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 (42576, 296, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-11-29', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42577, 296, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-11-29', '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 (42578, NULL, NULL, 7415, '', '', 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 (42579, NULL, NULL, 8752, '', '', 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 (42580, NULL, NULL, 2442, '', '', 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 (42581, NULL, NULL, 1762, '', '', 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 (42582, NULL, NULL, 7443, '', '', 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 (42583, NULL, NULL, 7390, '', '', 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 (42584, NULL, NULL, 8859, '', '', 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 (42585, NULL, NULL, 2554, '', '', 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 (42586, NULL, NULL, 9563, '', '', 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 (42616, 293, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '4.4000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '2.0000', '2021-11-24', '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 (42617, 293, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '5.0000', '2021-11-24', '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 (42618, 293, NULL, 8759, '2679', 'FRUTELLI', NULL, '6.5000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-11-24', '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 (42619, 293, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.1500', '3.9600', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2021-11-24', '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 (42620, 293, NULL, 8758, '2678', 'PURE HEAVEN', NULL, '5.8000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2021-11-24', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42621, 293, NULL, 1987, '6181100323665', 'SIVODERM POWDER', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-11-24', '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 (42622, 293, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '11.0000', '14.5200', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2021-11-24', '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 (42623, 293, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '4.5000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-11-24', '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 (42624, 293, NULL, 1991, '6181100234244', 'PARADISE POWDER', NULL, '6.0000', '7.9200', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-11-24', '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 (42625, 293, NULL, 9670, '98873444', 'CUSSIONS BABY SET', NULL, '45.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-11-24', '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 (42626, 293, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '90.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '6.0000', '2021-11-24', 'received', '0.2600', '0.2600', '90.0000', NULL, NULL, 1, 'pc', '90.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 (42627, 293, NULL, 9561, '27276373', 'NICHE EXTRA DARK CHOCHOLATE', NULL, '6.0000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2021-11-24', '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 (42628, 293, NULL, 9562, '94994180', 'NICHE DARK CHOCHOLATE', NULL, '5.4000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '0.0000', '2021-11-24', 'received', '5.4000', '5.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (42629, 293, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '3.0000', '2021-11-24', 'received', '5.1000', '5.1000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (42630, 293, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2021-11-24', '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 (42631, 293, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-11-24', '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 (42632, 295, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-11-26', '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 (42633, 295, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '14.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-11-26', '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 (42634, 295, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-11-26', '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 (42635, 295, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '16.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '1.0000', '2021-11-26', '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 (42636, 295, NULL, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '15.0000', '17.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-11-26', '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 (42637, 295, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '38.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '204.0000', '1.0000', '2021-11-26', 'received', '34.0000', '34.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42638, 295, NULL, 2231, '7501058633927', 'NAN 2', NULL, '34.0000', '38.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '204.0000', '0.0000', '2021-11-26', 'received', '34.0000', '34.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42639, 295, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2021-11-26', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42640, 295, NULL, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '17.5000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-11-26', 'received', '17.5000', '17.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42641, 295, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '12.0000', '15.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2021-11-26', '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 (42642, 295, NULL, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', NULL, '12.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-26', '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 (42643, 295, 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-11-26', '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 (42644, 295, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '5.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-11-26', '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 (42645, 295, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-11-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 (42646, 295, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-11-26', '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 (42647, 295, NULL, 8438, '2358', 'ROMA SPRAY', NULL, '13.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-11-26', '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 (42648, 295, NULL, 9468, '27739747', 'PARMALAT  1KG', NULL, '20.0000', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-11-26', '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 (42649, 295, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '5.0000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-11-26', 'received', '5.0000', '5.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42650, 295, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2021-11-26', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42651, 295, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '3.9600', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-26', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (42652, 295, NULL, 8743, '2663', 'CERES DRINK', NULL, '11.0000', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-11-26', '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 (42653, 295, NULL, 8745, '2665', 'DON SIMON', NULL, '9.0000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-11-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 (42654, 295, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-11-26', '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 (42655, 295, NULL, 8982, '2902', 'CRANBERRY', NULL, '11.0000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-11-26', '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 (42656, 295, NULL, 8761, '2681', 'VITRAC', NULL, '12.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-11-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 (42657, 295, NULL, 8775, '2695', 'VITRAC S/S', NULL, '2.6000', '4.5000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '10.0000', '2021-11-26', 'received', '2.6000', '2.6000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (42658, 295, NULL, 9561, '27276373', 'NICHE EXTRA DARK CHOCHOLATE', NULL, '6.0000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-11-26', '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 (42659, 295, NULL, 9562, '94994180', 'NICHE DARK CHOCHOLATE', NULL, '5.4000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '0.0000', '2021-11-26', 'received', '5.4000', '5.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (42660, 295, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '2.0000', '2021-11-26', 'received', '5.1000', '5.1000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (42661, 295, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-11-26', '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 (42662, 295, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-11-26', '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 (42663, 290, NULL, 9655, '10425130', 'DALIHA SLIM TEA', NULL, '37.0000', '48.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.0000', '0.0000', '2021-11-21', 'received', '37.0000', '37.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42664, 290, NULL, 9657, '12923665', 'DALIHA TURKEY BERRY CINNAMON TEA', NULL, '37.0000', '48.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2021-11-21', '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 (42665, 290, NULL, 9656, '03335724', 'DALIHA  TURKEYBERRY TURMERIC TEA', NULL, '33.0000', '43.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-11-21', '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 (42666, 290, NULL, 9658, '64116423', 'DALIHA IMMUNKLIN TEA', NULL, '32.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-11-21', '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 (42667, 290, NULL, 9659, '53112216', 'DALIHA BERRY GINGER TEA', NULL, '28.0000', '37.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '2.0000', '2021-11-21', '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 (42668, 290, NULL, 9660, '60590171', 'DALIHA TURKEY BERRY TEA', NULL, '27.0000', '36.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2021-11-21', '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 (42669, 290, NULL, 9661, '79559578', 'DALIHA TURKEY BERRY JUICE', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2021-11-21', '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 (42670, 290, NULL, 9562, '94994180', 'NICHE DARK CHOCHOLATE', NULL, '5.4000', '7.5000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '4.0000', '2021-11-21', 'received', '5.4000', '5.4000', '14.0000', NULL, NULL, 1, 'pc', '14.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 (42671, 290, NULL, 9561, '27276373', 'NICHE EXTRA DARK CHOCHOLATE', NULL, '6.0000', '7.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2021-11-21', '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 (42672, 290, NULL, 9563, '96503101', 'NICHE/CONUT/ORAN/MILK/GING/MANG/COFF/CHO', NULL, '5.1000', '6.5000', '49.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '249.9000', '19.0000', '2021-11-21', 'received', '5.1000', '5.1000', '49.0000', NULL, NULL, 1, 'pc', '49.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 (42673, 290, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-11-21', '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 (42674, 290, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-11-21', 'received', '15.0000', '15.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (42759, NULL, NULL, 7683, '', '', 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 (42760, 297, NULL, 8889, '2809', 'NAN 1@2', NULL, '34.0000', '38.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '238.0000', '3.0000', '2021-11-30', 'received', '34.0000', '34.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (42761, 297, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-11-30', '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 (42762, 297, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-11-30', '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 (42763, 297, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-11-30', '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 (42764, 297, NULL, 8888, '2808', 'NIDO TIN', NULL, '28.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-11-30', '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 (42765, 297, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-11-30', '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 (42766, 297, NULL, 8769, '2689', 'HUNTERS', NULL, '6.6000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-11-30', '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 (42767, 297, NULL, 8775, '2695', 'VITRAC S/S', NULL, '2.6000', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '6.0000', '2021-11-30', 'received', '2.6000', '2.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42768, 297, NULL, 8950, '2870', 'EVERSHEEN CREAM SMALL', NULL, '5.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2021-11-30', '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 (42769, 297, NULL, 8982, '2902', 'CRANBERRY', NULL, '11.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-11-30', '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 (42770, 297, NULL, 8373, '2293', 'TENDRINA LTN S/S', NULL, '4.5000', '6.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '3.0000', '2021-11-30', '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 (42771, 297, NULL, 8372, '2292', 'TENDRINA LOTN B/S', NULL, '9.5000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-11-30', '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 (42772, 297, NULL, 7500, '1420', 'GLYCERINE S/S', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-11-30', '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 (42773, 297, NULL, 2429, '5011309302417', 'ZEFLORA DISINFECTANT', NULL, '10.7000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4000', '2.0000', '2021-11-30', 'received', '10.7000', '10.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (42774, 297, NULL, 8566, '2486', 'SURE SPRAY', NULL, '11.0000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-11-30', '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 (42775, 297, NULL, 8615, '2535', 'MOVATE', NULL, '4.5000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-11-30', '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 (42776, 297, NULL, 8581, '2501', 'SIVODERM CREAM', NULL, '4.5000', '6.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-11-30', '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 (42777, 297, NULL, 8232, '2152', 'SULFER 18 POWD', NULL, '4.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0000', '0.0000', '2021-11-30', 'received', '4.0000', '4.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42778, 297, NULL, 3077, '79135161', 'JOHNSON BABY POWDER S/S', NULL, '11.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2021-11-30', '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 (42779, 297, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '4.5000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2021-11-30', '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 (42780, 297, NULL, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '5.0000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2021-11-30', '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 (42781, 297, NULL, 8279, '2199', 'POWER HOUSE', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-11-30', '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 (42782, 297, NULL, 8352, '2272', 'NIVEA SPRAY', NULL, '12.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-30', '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 (42783, 297, NULL, 8566, '2486', 'SURE SPRAY', NULL, '10.0000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-11-30', '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 (42784, 297, NULL, 8086, '2006', 'SAVLON 125', NULL, '9.3000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2021-11-30', '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 (42785, 297, NULL, 8087, '2007', 'SAVLON 250', NULL, '15.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-11-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 (42786, 297, NULL, 9680, '90594456', 'BORGES GARLIC OIL 500ML', NULL, '37.0000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2021-11-30', '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 (42787, 297, NULL, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', NULL, '13.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2021-11-30', '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 (42788, 297, NULL, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '7.5000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-11-30', '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 (42789, 297, NULL, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', NULL, '4.0000', '6.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '3.0000', '2021-11-30', '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 (42790, 297, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '5.0000', '8.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-11-30', '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 (42791, 297, NULL, 8636, '2556', 'JOHNSONS OIL', NULL, '11.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2021-11-30', '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 (42792, 297, NULL, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', NULL, '12.0000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-11-30', '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 (42793, 297, NULL, 7359, '1279', 'BORGES125', NULL, '12.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-30', '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 (42794, 297, NULL, 8225, '2145', 'BELLS OLIVE', NULL, '3.0000', '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '0.0000', '2021-11-30', '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 (42795, 297, NULL, 9328, '3248', 'BELLS OLIVE OIL ORIGNAL', NULL, '7.9000', '11.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9000', '0.0000', '2021-11-30', 'received', '7.9000', '7.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42796, 298, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-11-30', '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 (42797, 298, NULL, 9158, '3078', 'METRO Z SUSP', NULL, '5.8900', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.8900', '0.0000', '2021-11-30', 'received', '5.8900', '5.8900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (42798, 298, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.2000', '3.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-11-30', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (42799, 298, NULL, 2641, '92213060', 'CONGESTYL SUSP', NULL, '10.0000', '13.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2021-11-30', '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 (42800, 298, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.0000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-11-30', '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 (42801, 298, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.6000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '2.0000', '2021-11-30', 'received', '5.6000', '5.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42802, 298, NULL, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-11-30', '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 (42803, 298, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '7.3600', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0800', '0.0000', '2021-11-30', 'received', '7.3600', '7.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (42804, 298, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '12.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-11-30', '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 (42805, 298, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '8.4300', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2900', '0.0000', '2021-11-30', 'received', '8.4300', '8.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (42806, 298, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-11-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 (42807, 298, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9400', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2000', '0.0000', '2021-11-30', 'received', '0.9400', '0.9400', '30.0000', NULL, NULL, 1, 'pc', '30.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 (42808, 298, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '19.8200', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6400', '0.0000', '2021-11-30', 'received', '19.8200', '19.8200', '2.0000', NULL, NULL, 1, 'pc', '2.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 (42809, 298, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2021-11-30', '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 (42810, 298, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.0000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-11-30', '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 (42811, 298, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '1.9700', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '0.0000', '2021-11-30', 'received', '1.9700', '1.9700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42812, 298, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-11-30', '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 (42813, 298, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '22.0000', '29.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2021-11-30', 'received', '22.0000', '22.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42814, 298, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.3100', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5500', '0.0000', '2021-11-30', '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 (42815, 298, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2000', '0.0000', '2021-11-30', 'received', '3.4000', '3.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42816, 298, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-11-30', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (42817, 298, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '0.0000', '2021-11-30', '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 (42818, 298, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6000', '0.0000', '2021-11-30', 'received', '1.7300', '1.7300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (42819, 298, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2021-11-30', 'received', '1.1500', '1.1500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.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 (42820, 298, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '26.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0700', '0.0000', '2021-11-30', '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 (42821, 298, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.9000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '0.0000', '2021-11-30', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42822, 298, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.9600', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2021-11-30', '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 (42823, 298, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8700', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.8700', '0.0000', '2021-11-30', 'received', '1.8700', '1.8700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '1.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 (42824, 298, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '9.2800', '12.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5600', '0.0000', '2021-11-30', 'received', '9.2800', '9.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (42825, 298, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-11-30', '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 (42826, 298, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.7400', '0.0000', '2021-11-30', '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 (42827, 298, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.8200', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2021-11-30', '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 (42828, 298, NULL, 9592, '11957121', 'VIVADONA CAPS 20\'S', NULL, '3.2000', '4.2000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '20.0000', '2021-11-30', '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 (42829, 298, NULL, 1507, '002', 'SEFLOX EYE/EAR DROP', NULL, '5.5100', '7.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0400', '0.0000', '2021-11-30', 'received', '5.5100', '5.5100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.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 (42830, 298, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-11-30', '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 (42831, 298, NULL, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', NULL, '8.0000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2021-11-30', '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 (42832, 298, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7300', '0.0000', '2021-11-30', '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 (42833, 298, NULL, 7918, '1838', 'ZUBES CHILD', NULL, '9.2000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-11-30', 'received', '9.2000', '9.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42834, 298, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.9400', '0.0000', '2021-11-30', '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 (42835, 298, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.8500', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '0.0000', '2021-11-30', '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 (42836, 298, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.3300', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-11-30', '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 (42837, 298, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '3.7600', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2800', '1.0000', '2021-11-30', 'received', '3.7600', '3.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (42838, 298, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '11.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '0.0000', '2021-11-30', '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 (42839, 298, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '11.3000', '15.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0000', '0.0000', '2021-11-30', 'received', '11.3000', '11.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42840, 298, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '20.5000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '0.0000', '2021-11-30', '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 (42841, 298, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.5600', '0.7000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2000', '0.0000', '2021-11-30', 'received', '0.5600', '0.5600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (42842, 298, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6800', '10.0000', '2021-11-30', 'received', '2.2300', '2.2300', '16.0000', NULL, NULL, 1, 'pc', '16.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 (42843, 298, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.1000', '0.0000', '2021-11-30', '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 (42844, 298, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-11-30', '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 (42845, 298, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-11-30', '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 (42846, 298, NULL, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '9.8000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2021-11-30', '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 (42847, 298, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '22.5000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-11-30', '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 (42848, 298, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2021-11-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 (42849, 298, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-11-30', '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 (42850, NULL, NULL, 9453, '', '', 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 (42851, NULL, NULL, 8475, '', '', 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 (42852, NULL, NULL, 2776, '', '', 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 (42853, NULL, NULL, 9361, '', '', 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 (42854, NULL, NULL, 9416, '', '', 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 (42855, NULL, NULL, 3023, '', '', 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 (42856, NULL, NULL, 7385, '', '', 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 (42857, NULL, NULL, 1506, '', '', 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 (42858, NULL, NULL, 9063, '', '', 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 (42859, NULL, NULL, 2561, '', '', 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 (42922, 301, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '5.0000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2021-12-01', '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 (42923, 301, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2021-12-01', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (42924, 301, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.4000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '5.0000', '2021-12-01', '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 (42925, 301, NULL, 9213, '3133', 'ROX DRINKS', NULL, '5.4000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '1.0000', '2021-12-01', '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 (42926, 301, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '1.0000', '2021-12-01', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (42927, 301, NULL, 8775, '2695', 'VITRAC S/S', NULL, '2.6000', '4.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '5.0000', '2021-12-01', 'received', '2.6000', '2.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (42928, 301, NULL, 8761, '2681', 'VITRAC', NULL, '12.0000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2021-12-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 (42929, 301, NULL, 8935, '2855', 'DON GRACIA', NULL, '12.0000', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-12-01', '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 (42930, 301, NULL, 9470, '54824799', 'COKE/ FANTA/ SPRITE 1L', NULL, '9.7700', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5400', '1.0000', '2021-12-01', 'received', '9.7700', '9.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (42931, 301, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-12-01', '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 (42932, 301, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '4.4000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '5.0000', '2021-12-01', '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 (42933, 301, NULL, 8767, '2687', 'KISS DRINK', NULL, '6.6900', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.1400', '3.0000', '2021-12-01', 'received', '6.6900', '6.6900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (42934, 301, NULL, 9084, '3004', 'APPLE JUICE', NULL, '8.9000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '3.0000', '2021-12-01', 'received', '8.9000', '8.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (42935, 301, NULL, 9469, '40088756', 'PANACHE', NULL, '2.3000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2021-12-01', 'received', '2.3000', '2.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42936, 301, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '9.0000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-12-01', '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 (42937, 301, NULL, 7719, '1639', 'YAZZ PAD', NULL, '6.0000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-12-01', '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 (42938, 301, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '12.0000', '2021-12-01', '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 (42939, 301, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2021-12-01', '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 (42940, 301, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '7.5000', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2021-12-01', '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 (42941, 302, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2021-12-01', 'received', '3.9000', '3.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (42942, 302, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '2.0000', '2021-12-01', '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 (42943, 302, NULL, 7669, '1589', 'MENTODEX SRP S/S', NULL, '12.4000', '16.3700', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '5.0000', '2021-12-01', 'received', '12.4000', '12.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42944, 302, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '32.0000', '2021-12-01', '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 (42945, 302, NULL, 3019, '72127749', 'HEPTOLIFE SYR 200ML', NULL, '15.4000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '5.0000', '2021-12-01', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (42946, 302, NULL, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', NULL, '8.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-12-01', '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 (42947, 302, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '6.0000', '2021-12-01', '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 (42948, 302, NULL, 1969, '8906016833507', 'CARTEF TAB 24   20/120', NULL, '4.3300', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.3000', '10.0000', '2021-12-01', '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 (42949, 302, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9800', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.9000', '5.0000', '2021-12-01', '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 (42950, 302, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.0500', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2500', '1.0000', '2021-12-01', '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 (42951, 302, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '13.2000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '4.0000', '2021-12-01', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42952, 302, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '53.3200', '71.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6400', '2.0000', '2021-12-01', 'received', '53.3200', '53.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.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 (42953, 302, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '13.0000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2021-12-01', '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 (42954, 302, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-12-01', '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 (42955, 302, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-12-01', '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 (42956, 302, NULL, 2607, '65744915', 'MAALOX SACHET', NULL, '1.4000', '1.7000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-12-01', 'received', '1.4000', '1.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (42957, 302, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.8000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '36.0000', '2021-12-01', '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 (42958, 302, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.8500', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2500', '1.0000', '2021-12-01', 'received', '6.8500', '6.8500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42959, 302, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2021-12-01', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42960, 302, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '6.2600', '8.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.2000', '16.0000', '2021-12-01', 'received', '6.2600', '6.2600', '20.0000', NULL, NULL, 1, 'pc', '20.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 (42961, 302, NULL, 2695, '26196799', 'ANAFRANIL TAB', NULL, '2.0000', '3.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '14.0000', '2021-12-01', '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 (42962, 302, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2021-12-01', '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 (42963, 302, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '28.0000', '37.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-12-01', '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 (42964, 302, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0800', '10.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '283.2000', '37.0000', '2021-12-01', 'received', '7.0800', '7.0800', '40.0000', NULL, NULL, 1, 'pc', '40.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 (42965, 302, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.3500', '5.0000', '2021-12-01', 'received', '11.8700', '11.8700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42966, 302, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.6500', '2.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-12-01', 'received', '1.6500', '1.6500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (42967, 302, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '10.0000', '2021-12-01', 'received', '1.1500', '1.1500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (42968, 302, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.0000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '14.0000', '2021-12-01', '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 (42969, 302, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '16.7000', '22.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.8000', '4.0000', '2021-12-01', '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 (42970, 302, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '4.0000', '2021-12-01', '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 (42971, 302, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '4.0000', '2021-12-01', '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 (42972, 302, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '10.0000', '2021-12-01', '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 (42973, 302, NULL, 2452, '56056492', 'FINE FINE SOAP', NULL, '2.5000', '4.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '5.0000', '2021-12-01', '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 (42974, 302, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-12-01', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (42975, 302, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.5500', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7500', '1.0000', '2021-12-01', 'received', '4.5500', '4.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (42976, 302, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '3.0000', '2021-12-01', '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 (42977, 302, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '18.8100', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0500', '4.0000', '2021-12-01', 'received', '18.8100', '18.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (42978, 302, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '1.0000', '2021-12-01', '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 (42979, 302, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.6000', '12.0000', '2021-12-01', 'received', '7.9800', '7.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (42980, 302, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.7800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.8000', '0.0000', '2021-12-01', '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 (42981, 302, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '3.0000', '2021-12-01', '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 (42982, 302, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '35.0700', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.2100', '1.0000', '2021-12-01', 'received', '35.0700', '35.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (42983, 302, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '31.2000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '0.0000', '2021-12-01', 'received', '31.2000', '31.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (42984, 302, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '4.0000', '2021-12-01', '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 (42985, 302, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2021-12-01', '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 (43027, 304, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '12.0000', '2021-12-01', '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 (43028, 304, NULL, 7637, '1557', 'MAJOR EPHEDRINE', NULL, '7.3300', '9.6800', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6500', '2.0000', '2021-12-01', 'received', '7.3300', '7.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43029, 304, NULL, 7344, '1264', 'PARA DENK250 SUPPO', NULL, '1.3500', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '49.0000', '2021-12-01', 'received', '1.3500', '1.3500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (43030, 304, NULL, 8336, '2256', 'AMLODIPINE 5MG TEVA', NULL, '3.4000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '20.0000', '2021-12-01', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43031, 304, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0500', '44.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.1500', '3.0000', '2021-12-01', 'received', '33.0500', '33.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (43032, 304, NULL, 7649, '1569', 'BX SRP 200', NULL, '2.6700', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '5.0000', '2021-12-01', 'received', '2.6700', '2.6700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43033, 304, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '116.3300', '155.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.6600', '2.0000', '2021-12-01', '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 (43034, 304, NULL, 9666, '25624901', 'PROSTAT 60 CAPS 30\'S', NULL, '90.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '2.0000', '2021-12-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 (43035, 304, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0800', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.6000', '0.0000', '2021-12-01', 'received', '7.0800', '7.0800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43036, 304, NULL, 8340, '2260', 'ROBAXIN-750', NULL, '2.0000', '3.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '100.0000', '2021-12-01', 'received', '2.0000', '2.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (43037, 304, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.3300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.3000', '1.0000', '2021-12-01', 'received', '7.3300', '7.3300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (43038, 304, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '9.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '7.0000', '2021-12-01', '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 (43039, 304, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9800', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.9400', '3.0000', '2021-12-01', 'received', '25.9800', '25.9800', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43040, 304, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.4300', '2.0000', '80.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.4000', '62.0000', '2021-12-01', 'received', '1.4300', '1.4300', '80.0000', NULL, NULL, 1, 'pc', '80.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 (43041, 304, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '18.2500', '24.0900', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.7500', '1.0000', '2021-12-01', 'received', '18.2500', '18.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (43042, 304, NULL, 2748, '92354318', 'DEEP FREEZE ONIT 35G', NULL, '17.5000', '23.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '3.0000', '2021-12-01', '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 (43043, 304, NULL, 2915, '21109477', 'ASPIRIN CARDIO 100MG', NULL, '16.4000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '2.0000', '2021-12-01', 'received', '16.4000', '16.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43044, 304, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '18.0000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-12-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 (43045, 304, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0200', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0600', '0.0000', '2021-12-01', 'received', '20.0200', '20.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (43046, 304, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '19.3000', '25.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.5000', '4.0000', '2021-12-01', 'received', '19.3000', '19.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43047, 304, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '4.0000', '2021-12-01', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43048, 304, NULL, 2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', NULL, '30.9800', '41.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.9000', '4.0000', '2021-12-01', 'received', '30.9800', '30.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '30.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 (43049, 304, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '0.0000', '2021-12-01', 'received', '37.2000', '37.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '37.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 (43050, 304, NULL, 1477, 'PR-190', 'CORSODY 300ML (ALCOHOL FREE)', NULL, '38.5700', '50.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.7100', '2.0000', '2021-12-01', 'received', '38.5700', '38.5700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.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 (43051, 282, NULL, 7469, '1389', 'LEXSPORIN OINT', NULL, '18.8000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2021-11-06', 'received', '18.8000', '18.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43052, 282, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '3.0000', '4.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-11-06', '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 (43053, 282, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.4000', '5.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '11.0000', '2021-11-06', 'received', '3.4000', '3.4000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (43054, 282, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '2.1900', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '3.0000', '2021-11-06', 'received', '2.1900', '2.1900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (43055, 282, NULL, 7743, '1663', 'KISS', NULL, '1.3100', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4400', '0.0000', '2021-11-06', 'received', '1.3100', '1.3100', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (43056, 282, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-11-06', '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 (43057, 282, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '6.2600', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.6000', '0.0000', '2021-11-06', 'received', '6.2600', '6.2600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (43058, 282, NULL, 9290, '3210', 'LUBRIMAX JELLY 50G', NULL, '15.2700', '20.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8100', '0.0000', '2021-11-06', 'received', '15.2700', '15.2700', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43059, 282, NULL, 9192, '3112', 'LUBRIMAX JELLY 70 GM', NULL, '17.9100', '24.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8200', '0.0000', '2021-11-06', 'received', '17.9100', '17.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.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 (43060, 282, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '16.0000', '2021-11-06', 'received', '4.2000', '4.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43061, 282, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '8.0000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '1.0000', '2021-11-06', '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 (43062, 282, NULL, 2992, '39433029', 'PANADOL TAB PLAIN', NULL, '2.6000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '34.0000', '2021-11-06', '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 (43063, 282, NULL, 2986, '39982987', 'PANACIN TAB', NULL, '0.7700', '1.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.4000', '20.0000', '2021-11-06', 'received', '0.7700', '0.7700', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43064, 282, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.9900', '30.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.9900', '0.0000', '2021-11-06', 'received', '22.9900', '22.9900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '22.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 (43065, 282, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '34.8300', '46.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.1500', '5.0000', '2021-11-06', 'received', '34.8300', '34.8300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '34.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 (43066, 282, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '4.3000', '6.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.0000', '30.0000', '2021-11-06', 'received', '4.3000', '4.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (43067, 282, NULL, 3054, '23818302', 'AZIRON 500MG TABS', NULL, '7.0000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '10.0000', '2021-11-06', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (43068, 282, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '7.0000', '2021-11-06', '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 (43069, 282, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '15.8000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.8000', '5.0000', '2021-11-06', 'received', '15.8000', '15.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (43070, 282, NULL, 7750, '1670', 'CALPOL 2+', NULL, '34.9000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.7000', '0.0000', '2021-11-06', '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 (43071, 282, NULL, 7491, '1411', 'ASCORYL SRP', NULL, '4.8000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-11-06', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (43072, 282, NULL, 2462, '03669885', 'WELLBABY DROP', NULL, '47.0800', '63.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0800', '1.0000', '2021-11-06', 'received', '47.0800', '47.0800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '47.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 (43073, 282, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '5.0000', '2021-11-06', '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 (43074, 282, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '6.0000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '6.0000', '2021-11-06', '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 (43075, 282, NULL, 7678, '1598', 'CETAPOL PM', NULL, '5.1400', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7000', '0.0000', '2021-11-06', 'received', '5.1400', '5.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (43076, 282, NULL, 7749, '1669', 'FOLIGROW SRP', NULL, '20.0200', '26.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0800', '0.0000', '2021-11-06', 'received', '20.0200', '20.0200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (43077, 282, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-11-06', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43078, 282, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '2.4500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '15.0000', '2021-11-06', 'received', '2.4500', '2.4500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (43079, 282, NULL, 9098, '3018', 'JOY VIKIL', NULL, '25.0000', '34.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '0.0000', '2021-11-06', '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 (43080, 282, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.0000', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-11-06', '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 (43081, 282, NULL, 8309, '2229', 'PREMECO CAPS', NULL, '14.5000', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '0.0000', '2021-11-06', 'received', '14.5000', '14.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (43082, 282, NULL, 8942, '2862', 'COCODAMOL', NULL, '4.4000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '11.0000', '2021-11-06', '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 (43083, 282, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '3.0000', '2021-11-06', '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 (43084, 282, NULL, 9620, '50937939', 'PROMETHAZINE TAB', NULL, '0.7000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '19.0000', '2021-11-06', '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 (43085, 282, NULL, 8512, '2432', 'AVOMINE TAB', NULL, '1.8000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-11-06', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43086, 282, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '3.4000', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2021-11-06', '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 (43087, 282, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '0.0000', '2021-11-06', 'received', '3.4000', '3.4000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (43088, 282, NULL, 7377, '1297', 'ATACAND16MG', NULL, '5.5000', '6.6000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '0.0000', '2021-11-06', 'received', '5.5000', '5.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (43089, 282, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.0000', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '46.0000', '2021-11-06', '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 (43090, 282, NULL, 7748, '1668', 'VIROL', NULL, '6.1700', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8500', '0.0000', '2021-11-06', 'received', '6.1700', '6.1700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (43091, 282, NULL, 8404, '2324', 'SAMOCID', NULL, '36.1200', '48.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.3600', '3.0000', '2021-11-06', 'received', '36.1200', '36.1200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.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 (43092, 282, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '5.2300', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1500', '0.0000', '2021-11-06', 'received', '5.2300', '5.2300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43093, 282, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '34.5500', '48.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.7500', '0.0000', '2021-11-06', 'received', '34.5500', '34.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '34.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 (43094, 282, NULL, 7465, '1385', 'RHINATHIOL INFANT PINK', NULL, '20.2400', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '0.0000', '2021-11-06', 'received', '20.2400', '20.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43095, 282, NULL, 7350, '1270', 'PERFECTIL', NULL, '30.4000', '40.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.6000', '0.0000', '2021-11-06', 'received', '30.4000', '30.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.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 (43096, 282, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-11-06', '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 (43097, 282, NULL, 7519, '1439', 'BELLS TEETHING MIX', NULL, '14.5200', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.6000', '0.0000', '2021-11-06', 'received', '14.5200', '14.5200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43098, 282, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4300', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1500', '2.0000', '2021-11-06', 'received', '5.4300', '5.4300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43099, 282, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '1.0000', '2021-11-06', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (43100, 282, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '4.8800', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4000', '3.0000', '2021-11-06', 'received', '4.8800', '4.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (43101, 282, NULL, 8131, '2051', 'PEPTO S/S', NULL, '33.6700', '44.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.0100', '0.0000', '2021-11-06', 'received', '33.6700', '33.6700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (43102, 282, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '7.6500', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2500', '5.0000', '2021-11-06', 'received', '7.6500', '7.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (43103, 282, NULL, 7758, '1678', 'MMT', NULL, '2.1800', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.8000', '3.0000', '2021-11-06', '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 (43104, 282, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.1300', '7.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.2500', '0.0000', '2021-11-06', 'received', '5.1300', '5.1300', '25.0000', NULL, NULL, 1, 'pc', '25.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 (43105, 282, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-11-06', '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 (43106, 282, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '19.5100', '26.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0600', '0.0000', '2021-11-06', 'received', '19.5100', '19.5100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '19.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 (43107, 282, NULL, 9457, '08890691', 'C PHENIRAMINE SYRUP 125ML', NULL, '2.9800', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '1.0000', '2021-11-06', 'received', '2.9800', '2.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (43108, 282, NULL, 7637, '1557', 'MAJOR EPHEDRINE', NULL, '7.3300', '9.6800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6500', '0.0000', '2021-11-06', 'received', '7.3300', '7.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43109, 282, NULL, 1937, 'PR-650', 'Kofof child exp 1070D02', NULL, '4.1200', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6000', '4.0000', '2021-11-06', 'received', '4.1200', '4.1200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43110, 282, NULL, 8134, '2054', 'AMCOF ADULT', NULL, '5.2600', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.3000', '0.0000', '2021-11-06', 'received', '5.2600', '5.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (43111, 282, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '11.7000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-11-06', '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 (43112, 282, NULL, 7352, '1272', 'ANAFRANIL25', NULL, '1.3800', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '36.0000', '2021-11-06', 'received', '1.3800', '1.3800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (43113, 282, NULL, 7606, '1526', 'PERMOXL SRP', NULL, '4.8600', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '0.0000', '2021-11-06', 'received', '4.8600', '4.8600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (43114, 282, NULL, 7664, '1584', 'DUROL ADULT', NULL, '6.7800', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '0.0000', '2021-11-06', 'received', '6.7800', '6.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (43115, 282, NULL, 7360, '1280', 'BORGES250ML', NULL, '18.8900', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4500', '1.0000', '2021-11-06', 'received', '18.8900', '18.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (43116, 282, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '36.1800', '48.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.9000', '0.0000', '2021-11-06', 'received', '36.1800', '36.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.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 (43117, 282, NULL, 2468, '92479608', 'ATENOLOL 100MG TABS UK', NULL, '7.0400', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '5.0000', '2021-11-06', 'received', '7.0400', '7.0400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43118, 282, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.2600', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.3000', '5.0000', '2021-11-06', 'received', '12.2600', '12.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (43119, 282, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '4.0000', '2021-11-06', '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 (43120, 282, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.0000', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-11-06', '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 (43121, 282, NULL, 8942, '2862', 'COCODAMOL', NULL, '4.4000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '20.0000', '2021-11-06', '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 (43122, 282, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-11-06', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43123, 282, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '2.4500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '20.0000', '2021-11-06', 'received', '2.4500', '2.4500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (43124, 282, NULL, 9098, '3018', 'JOY VIKIL', NULL, '25.0000', '34.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '0.0000', '2021-11-06', '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 (43125, 282, NULL, 9635, '02229088', 'GRISORAL SUSP (HOVI)', NULL, '8.6800', '11.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.8000', '8.0000', '2021-11-06', 'received', '8.6800', '8.6800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (43126, 282, NULL, 9643, '63516148', 'KOJACH MOUTH WASH', NULL, '7.0000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-11-06', '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 (43127, 282, NULL, 9644, '03818886', 'KOJACH CHARCOAL PASTE 75ML', NULL, '3.6000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '3.0000', '2021-11-06', '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 (43128, 282, NULL, 9645, '86012648', 'KOJACH F PASTE', NULL, '5.4000', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '6.0000', '2021-11-06', '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 (43129, 282, NULL, 9646, '91091174', 'KOJACH FLOURIDE PASTE', NULL, '2.5000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '4.0000', '2021-11-06', '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 (43130, 282, NULL, 9647, '86395069', 'KOJACH TOOTH/CHARCOAL BRUSH', NULL, '1.8000', '2.5000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '14.0000', '2021-11-06', 'received', '1.8000', '1.8000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (43131, 282, NULL, 9254, '3174', 'PROCOLD  SYR 60ML', NULL, '20.0000', '16.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2021-11-06', 'received', '20.0000', '20.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (43132, 282, NULL, 9650, '77292553', 'NIVEA LIP BALM', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2021-11-06', '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 (43133, 282, NULL, 9652, '77812432', 'BLACK SEED HERBAL SOAP', NULL, '7.5000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-11-06', 'received', '7.5000', '7.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (43134, 282, NULL, 9652, '77812432', 'BLACK SEED HERBAL SOAP', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-11-06', '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 (43135, 282, NULL, 9620, '50937939', 'PROMETHAZINE TAB', NULL, '0.7000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '50.0000', '2021-11-06', '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 (43136, 282, NULL, 8512, '2432', 'AVOMINE TAB', NULL, '1.8000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '7.0000', '2021-11-06', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43137, 282, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '3.4000', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2021-11-06', '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 (43138, 282, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '1.0000', '2021-11-06', 'received', '3.4000', '3.4000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (43139, 282, NULL, 1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', NULL, '79.2000', '105.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '1.0000', '2021-11-06', 'received', '79.2000', '79.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '79.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 (43140, 282, NULL, 7377, '1297', 'ATACAND16MG', NULL, '6.0000', '7.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '2.0000', '2021-11-06', 'received', '6.0000', '6.0000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (43141, 282, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '30.0000', '2021-11-06', '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 (43142, 282, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.8500', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2500', '5.0000', '2021-11-06', 'received', '6.8500', '6.8500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43143, 282, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '36.1200', '48.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.3600', '3.0000', '2021-11-06', 'received', '36.1200', '36.1200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.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 (43144, 282, NULL, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '5.3000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '4.0000', '2021-11-06', '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 (43145, 282, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '36.0800', '48.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.4000', '4.0000', '2021-11-06', 'received', '36.0800', '36.0800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.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 (43146, 282, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '5.0000', '2021-11-06', 'received', '20.2400', '20.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43147, 282, NULL, 7350, '1270', 'PERFECTIL', NULL, '30.4000', '40.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.6000', '4.0000', '2021-11-06', 'received', '30.4000', '30.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.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 (43148, 282, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '5.0000', '2021-11-06', '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 (43149, 282, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '21.0000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '4.0000', '2021-11-06', 'received', '21.0000', '21.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43150, 282, NULL, 7519, '1439', 'BELLS TEETHING MIX', NULL, '14.5200', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.6000', '0.0000', '2021-11-06', 'received', '14.5200', '14.5200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43151, 282, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4300', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1500', '5.0000', '2021-11-06', 'received', '5.4300', '5.4300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43152, 282, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.8500', '5.0000', '2021-11-06', 'received', '14.9700', '14.9700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43153, 282, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '4.8800', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4000', '5.0000', '2021-11-06', 'received', '4.8800', '4.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (43154, 282, NULL, 8131, '2051', 'PEPTO S/S', NULL, '33.6700', '44.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.0100', '2.0000', '2021-11-06', 'received', '33.6700', '33.6700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (43155, 282, NULL, 8429, '2349', 'GASTRONE SUSP', NULL, '7.6500', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2500', '0.0000', '2021-11-06', 'received', '7.6500', '7.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (43156, 282, NULL, 7758, '1678', 'MMT', NULL, '2.1800', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.8000', '10.0000', '2021-11-06', '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 (43157, 282, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.1300', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.6000', '0.0000', '2021-11-06', 'received', '5.1300', '5.1300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43158, 282, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-11-06', '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 (43159, 282, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '19.5100', '26.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0600', '0.0000', '2021-11-06', 'received', '19.5100', '19.5100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '19.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 (43160, 282, NULL, 9457, '08890691', 'C PHENIRAMINE SYRUP 125ML', NULL, '2.9800', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '5.0000', '2021-11-06', 'received', '2.9800', '2.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (43161, 282, NULL, 7637, '1557', 'MAJOR EPHEDRINE', NULL, '7.3300', '9.6800', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6500', '1.0000', '2021-11-06', 'received', '7.3300', '7.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43162, 282, NULL, 1937, 'PR-650', 'Kofof child exp 1070D02', NULL, '4.1200', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6000', '5.0000', '2021-11-06', 'received', '4.1200', '4.1200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43163, 282, NULL, 8134, '2054', 'AMCOF ADULT', NULL, '5.2600', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.3000', '0.0000', '2021-11-06', 'received', '5.2600', '5.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (43164, 282, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '11.7000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '3.0000', '2021-11-06', '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 (43165, 282, NULL, 7352, '1272', 'ANAFRANIL25', NULL, '1.3800', '2.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '40.0000', '2021-11-06', 'received', '1.3800', '1.3800', '40.0000', NULL, NULL, 1, 'pc', '40.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 (43166, 282, NULL, 7606, '1526', 'PERMOXL SRP', NULL, '4.8600', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '10.0000', '2021-11-06', 'received', '4.8600', '4.8600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (43167, 282, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '4.0000', '2021-11-06', '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 (43168, 282, NULL, 7360, '1280', 'BORGES250ML', NULL, '18.8900', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4500', '5.0000', '2021-11-06', 'received', '18.8900', '18.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (43169, 282, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0500', '44.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.2500', '5.0000', '2021-11-06', 'received', '33.0500', '33.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (43170, 282, NULL, 2468, '92479608', 'ATENOLOL 100MG TABS UK', NULL, '7.0400', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '5.0000', '2021-11-06', 'received', '7.0400', '7.0400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43171, 282, NULL, 9635, '02229088', 'GRISORAL SUSP (HOVI)', NULL, '8.6800', '11.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.8000', '10.0000', '2021-11-06', 'received', '8.6800', '8.6800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (43172, 282, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.2600', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.3000', '5.0000', '2021-11-06', 'received', '12.2600', '12.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (43173, 282, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '4.0000', '2021-11-06', '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 (43174, 282, NULL, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '22.5000', '29.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '3.0000', '2021-11-06', '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 (43224, 278, NULL, 3054, '23818302', 'AZIRON 500MG TABS', NULL, '7.0000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-10-25', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (43225, 278, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '114.0900', '150.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0900', '0.0000', '2021-10-25', 'received', '114.0900', '114.0900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '114.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 (43226, 278, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.5000', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-10-25', 'received', '0.5000', '0.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43227, 278, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '4.1000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2021-10-25', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43228, 278, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '58.0000', '77.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2021-10-25', 'received', '58.0000', '58.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43229, 278, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '5.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9200', '0.0000', '2021-10-25', '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 (43230, 278, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '2.0000', '2021-10-25', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43231, 278, NULL, 8660, '2580', 'NCP 100ML', NULL, '20.2400', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7200', '1.0000', '2021-10-25', '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 (43232, 278, NULL, 2993, '86417416', 'SICAZINK TONIC 200ML', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-10-25', '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 (43233, 278, NULL, 9607, '17054308', 'ALUSIL PLUS SUSP', NULL, '1.6000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.8000', '3.0000', '2021-10-25', 'received', '1.6000', '1.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43234, 278, NULL, 7626, '1546', 'VITA POWER SRP', NULL, '7.6000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-10-25', 'received', '7.6000', '7.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43235, 278, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '7.3000', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '0.0000', '2021-10-25', 'received', '7.3000', '7.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43236, 278, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '18.8200', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4600', '0.0000', '2021-10-25', 'received', '18.8200', '18.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (43237, 278, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '1.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2021-10-25', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (43238, 278, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8800', '0.0000', '2021-10-25', 'received', '14.9700', '14.9700', '4.0000', NULL, NULL, 1, 'pc', '4.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 (43239, 278, NULL, 2081, '81372758', 'LUEX BABY CHESTY COUGH', NULL, '7.9000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '0.0000', '2021-10-25', '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 (43240, 278, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '16.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2021-10-25', '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 (43241, 278, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '3.0000', '2021-10-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 (43242, 278, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '7.3600', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0800', '0.0000', '2021-10-25', 'received', '7.3600', '7.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (43243, 278, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.6000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2021-10-25', 'received', '18.6000', '18.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (43244, 278, NULL, 2662, '78880294', 'LONART TAB', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-10-25', '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 (43245, 278, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.5000', '27.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2021-10-25', 'received', '20.5000', '20.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (43246, 278, NULL, 9608, '07418553', 'BRUFEN SUSP (O\'NART)', NULL, '3.3000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-10-25', '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 (43247, 278, NULL, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', NULL, '13.2000', '17.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '2.0000', '2021-10-25', '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 (43248, 278, NULL, 9400, '3320', 'LETAVIN TAB 500MG', NULL, '4.2000', '5.5400', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '19.0000', '2021-10-25', 'received', '4.2000', '4.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43249, 278, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-10-25', '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 (43250, 278, NULL, 9609, '47724870', 'MALIN BABY PLUS SYRUP', NULL, '6.4000', '8.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6000', '0.0000', '2021-10-25', 'received', '6.4000', '6.4000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (43251, 278, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-10-25', '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 (43252, 278, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4600', '0.7000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-10-25', 'received', '0.4600', '0.4600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (43253, 278, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.2000', '0.0000', '2021-10-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 (43254, 278, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '0.0000', '2021-10-25', '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 (43255, 278, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-10-25', '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 (43256, 278, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.8000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2021-10-25', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43257, 278, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4000', '0.0000', '2021-10-25', 'received', '1.4000', '1.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (43258, 278, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.2000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '0.0000', '2021-10-25', '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 (43259, 278, NULL, 9611, '60468136', 'KY JELLY (KYNECT)', NULL, '30.0000', '40.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-10-25', '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 (43260, 278, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0500', '44.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.1500', '0.0000', '2021-10-25', 'received', '33.0500', '33.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (43261, 278, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.9700', '1.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.8000', '0.0000', '2021-10-25', 'received', '0.9700', '0.9700', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '0.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 (43262, 278, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-10-25', '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 (43263, 278, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '0.0000', '2021-10-25', 'received', '3.5500', '3.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43264, 278, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-10-25', '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 (43265, 278, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5200', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '0.0000', '2021-10-25', '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 (43266, 278, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.6500', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.2500', '0.0000', '2021-10-25', 'received', '9.6500', '9.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (43267, 278, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.9000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '0.0000', '2021-10-25', '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 (43268, 278, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '3.0000', '2021-10-25', '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 (43269, 278, NULL, 1512, 'PR-225', 'CIPAC EYE ROP', NULL, '4.1000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '2.0000', '2021-10-25', '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 (43270, 278, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '7.0000', '2021-10-25', '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 (43271, 278, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-10-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 (43272, 278, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '3.8000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4000', '0.0000', '2021-10-25', 'received', '3.8000', '3.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43273, 278, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '7.0500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.1500', '0.0000', '2021-10-25', 'received', '7.0500', '7.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (43274, 278, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4400', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '19.0000', '2021-10-25', '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 (43275, 278, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.2000', '0.0000', '2021-10-25', 'received', '22.1000', '22.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (43276, 278, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '18.7200', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4400', '0.0000', '2021-10-25', '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 (43277, 278, NULL, 2953, '85315538', 'CLOPIDOGREL 75MG  FRELET', NULL, '8.0000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-10-25', '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 (43278, 278, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-10-25', '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 (43279, 278, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '2.3000', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2021-10-25', 'received', '2.3000', '2.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (43280, 278, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-10-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 (43281, 278, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1500', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-10-25', 'received', '1.1500', '1.1500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (43282, 278, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.2000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-10-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 (43283, 278, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '23.0000', '2021-10-25', '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 (43284, 278, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '1.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7500', '0.0000', '2021-10-25', '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 (43285, 278, NULL, 2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', NULL, '1.4000', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2021-10-25', 'received', '1.4000', '1.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43286, 278, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9500', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '0.0000', '2021-10-25', '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 (43287, 278, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '0.0000', '2021-10-25', 'received', '2.9200', '2.9200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (43288, 278, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '53.3200', '71.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6400', '0.0000', '2021-10-25', 'received', '53.3200', '53.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.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 (43289, 278, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.3000', '0.0000', '2021-10-25', 'received', '2.3000', '2.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (43290, NULL, NULL, 8061, '', '', 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 (43291, NULL, NULL, 1580, '', '', 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 (43292, NULL, NULL, 9644, '', '', 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 (43293, NULL, NULL, 1692, '', '', 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 (43294, NULL, NULL, 2859, '', '', 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 (43295, NULL, NULL, 8368, '', '', 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 (43296, NULL, NULL, 8967, '', '', 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 (43297, NULL, NULL, 9226, '', '', 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 (43298, NULL, NULL, 7456, '', '', 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 (43299, NULL, NULL, 2269, '', '', 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 (43300, NULL, NULL, 7738, '', '', 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 (43301, NULL, NULL, 8150, '', '', 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 (43302, NULL, NULL, 9602, '', '', 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 (43303, NULL, NULL, 9573, '', '', 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 (43304, NULL, NULL, 9577, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-180.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43305, NULL, NULL, 1672, '', '', 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 (43306, NULL, NULL, 2351, '', '', 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 (43307, NULL, NULL, 9242, '', '', 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 (43308, NULL, NULL, 1634, '', '', 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 (43309, NULL, NULL, 8440, '', '', 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 (43310, NULL, NULL, 8923, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (43311, NULL, NULL, 9684, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (43312, NULL, NULL, 8360, '', '', 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 (43313, NULL, NULL, 2713, '', '', 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 (43314, NULL, NULL, 2964, '', '', 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 (43315, NULL, NULL, 8645, '', '', 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 (43316, NULL, NULL, 8740, '', '', 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 (43317, NULL, NULL, 8449, '', '', 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 (43318, NULL, NULL, 1817, '', '', 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 (43319, NULL, NULL, 9362, '', '', 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 (43320, NULL, NULL, 7767, '', '', 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 (43321, NULL, NULL, 8721, '', '', 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 (43322, NULL, NULL, 2959, '', '', 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 (43323, NULL, NULL, 3081, '', '', 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 (43324, NULL, NULL, 1868, '', '', 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 (43325, NULL, NULL, 9459, '', '', 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 (43326, NULL, NULL, 7318, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (43327, NULL, NULL, 9416, '', '', 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 (43403, NULL, NULL, 9423, '', '', 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 (43404, NULL, NULL, 8011, '', '', 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 (43405, NULL, NULL, 2153, '', '', 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 (43429, 306, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '2.4500', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.2500', '0.0000', '2021-12-04', 'received', '2.4500', '2.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (43430, 306, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.4000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '5.0000', '2021-12-04', '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 (43431, 306, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '57.4000', '75.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.4000', '1.0000', '2021-12-04', 'received', '57.4000', '57.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '57.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 (43432, 306, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '2.0000', '2021-12-04', '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 (43433, 306, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '9.0000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-12-04', '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 (43434, 306, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '10.0000', '2021-12-04', '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 (43435, 306, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-12-04', '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 (43436, 306, NULL, 9689, '11384296', 'AZITHROMYCIN SUSP 200MG/5ML', NULL, '40.1400', '53.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.4200', '1.0000', '2021-12-04', 'received', '40.1400', '40.1400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (43437, 306, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '5.0000', '2021-12-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 (43438, 306, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.0500', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2500', '5.0000', '2021-12-04', '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 (43439, 306, NULL, 8036, '1956', 'ENVICO', NULL, '6.5100', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5500', '0.0000', '2021-12-04', 'received', '6.5100', '6.5100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (43440, 306, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.9000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '5.0000', '2021-12-04', 'received', '3.9000', '3.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43441, 306, NULL, 7678, '1598', 'CETAPOL PM', NULL, '5.1400', '7.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.1400', '0.0000', '2021-12-04', 'received', '5.1400', '5.1400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.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 (43442, 306, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '5.2000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-12-04', '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 (43443, 306, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '0.0000', '2021-12-04', '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 (43444, 306, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.9000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '5.0000', '2021-12-04', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43445, 306, NULL, 2663, '58928731', 'QUINNE MALERIA SYRUP', NULL, '3.0000', '3.9600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '5.0000', '2021-12-04', '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 (43446, 306, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.4300', '2.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '39.0000', '2021-12-04', 'received', '1.4300', '1.4300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (43447, 306, NULL, 7667, '1587', 'MYCOVIN 500', NULL, '5.8400', '9.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '15.0000', '2021-12-04', 'received', '5.8400', '5.8400', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '5.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 (43448, 306, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2021-12-04', '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 (43449, 306, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '21.7700', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8500', '0.0000', '2021-12-04', 'received', '21.7700', '21.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (43450, 306, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.4000', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.2000', '0.0000', '2021-12-04', 'received', '20.4000', '20.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (43451, 306, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2021-12-04', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (43452, 306, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.4200', '33.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.8400', '0.0000', '2021-12-04', 'received', '25.4200', '25.4200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.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 (43453, 306, NULL, 9691, '09276419', 'WELLKID SYR', NULL, '57.5200', '76.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0400', '1.0000', '2021-12-04', 'received', '57.5200', '57.5200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.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 (43454, NULL, NULL, 7506, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (43455, NULL, NULL, 2428, '', '', 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 (43456, NULL, NULL, 1706, '', '', 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 (43457, NULL, NULL, 3022, '', '', 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 (43458, NULL, NULL, 7699, '', '', 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 (43459, NULL, NULL, 7815, '', '', 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 (43460, NULL, NULL, 9689, '', '', 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 (43461, NULL, NULL, 8124, '', '', 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 (43462, NULL, NULL, 2004, '', '', 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 (43463, NULL, NULL, 8619, '', '', 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 (43464, NULL, NULL, 7478, '', '', 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 (43465, NULL, NULL, 9686, '', '', 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 (43466, NULL, NULL, 8775, '', '', 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 (43467, NULL, NULL, 1598, '', '', 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 (43468, NULL, NULL, 2922, '', '', 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 (43469, NULL, NULL, 9000, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (43470, NULL, NULL, 9639, '', '', 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 (43471, NULL, NULL, 7744, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (43472, NULL, NULL, 8198, '', '', 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 (43473, NULL, NULL, 7376, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43474, NULL, NULL, 2762, '', '', 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 (43475, NULL, NULL, 7715, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-65.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43476, NULL, NULL, 9672, '', '', 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 (43477, NULL, NULL, 1835, '', '', 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 (43478, NULL, NULL, 1319, '', '', 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 (43479, NULL, NULL, 1747, '', '', 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 (43480, NULL, NULL, 7586, '', '', 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 (43481, NULL, NULL, 2645, '', '', 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 (43482, NULL, NULL, 8105, '', '', 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 (43483, NULL, NULL, 1882, '', '', 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 (43484, NULL, NULL, 7769, '', '', 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 (43485, NULL, NULL, 8924, '', '', 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 (43486, NULL, NULL, 1713, '', '', 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 (43487, NULL, NULL, 1706, '', '', 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 (43488, NULL, NULL, 7337, '', '', 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 (43489, NULL, NULL, 7933, '', '', 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 (43490, NULL, NULL, 7848, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (43491, NULL, NULL, 9207, '', '', 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 (43492, NULL, NULL, 8634, '', '', 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 (43493, NULL, NULL, 1696, '', '', 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 (43494, NULL, NULL, 9688, '', '', 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 (43495, NULL, NULL, 2495, '', '', 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 (43496, NULL, NULL, 7931, '', '', 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 (43497, NULL, NULL, 8328, '', '', 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 (43498, NULL, NULL, 8659, '', '', 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 (43499, NULL, NULL, 7984, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (43500, NULL, NULL, 7993, '', '', 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 (43501, NULL, NULL, 8951, '', '', 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 (43502, NULL, NULL, 7417, '', '', 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 (43503, NULL, NULL, 7754, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (43504, NULL, NULL, 1502, '', '', 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 (43505, NULL, NULL, 8277, '', '', 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 (43506, NULL, NULL, 2806, '', '', 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 (43507, NULL, NULL, 8919, '', '', 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 (43508, NULL, NULL, 7802, '', '', 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 (43509, NULL, NULL, 1747, '', '', 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 (43510, 303, NULL, 2652, '49336316', 'ADOM TONIC', NULL, '10.5000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '1.0000', '2021-12-01', '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 (43511, 303, NULL, 9324, '3244', 'ADUSA MIXTURE', NULL, '13.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2021-12-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 (43512, 303, NULL, 8959, '2879', 'AFRO MOSES', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '2.0000', '2021-12-01', '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 (43513, 303, NULL, 7823, '1743', 'AGBEVE FEVER', NULL, '8.0000', '11.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-12-01', '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 (43514, 303, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '8.0000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-12-01', '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 (43515, 303, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '9.5000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '2.0000', '2021-12-01', '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 (43516, 303, NULL, 7899, '1819', 'EKURO BEWU', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-12-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 (43517, 303, NULL, 9501, '30331101', 'FINE FINE MIXTURE', NULL, '14.0000', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-12-01', '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 (43518, 303, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '10.3500', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0500', '2.0000', '2021-12-01', '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 (43519, 303, NULL, 7814, '1734', 'GIVERS P CAPS', NULL, '18.5000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.5000', '0.0000', '2021-12-01', 'received', '18.5000', '18.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43520, 303, NULL, 8359, '2279', 'IMBOOST', NULL, '13.5000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-12-01', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (43521, 303, NULL, 9098, '3018', 'JOY VIKIL', NULL, '25.0000', '34.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '0.0000', '2021-12-01', '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 (43522, 303, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '17.0000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '1.0000', '2021-12-01', '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 (43523, 303, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2021-12-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 (43524, 303, NULL, 7826, '1746', 'MADAM CATHERINE', NULL, '8.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2021-12-01', '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 (43525, 303, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '28.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-12-01', '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 (43526, 303, NULL, 7509, '1429', 'ROOTER', NULL, '6.6000', '9.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '0.0000', '2021-12-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 (43527, 303, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '6.0000', '2021-12-01', '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 (43528, 303, NULL, 7834, '1754', 'SOLAK MIX', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-12-01', '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 (43529, 303, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.5000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-12-01', '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 (43530, 303, NULL, 2148, '01503409', 'TINATET HAYAN CAPS', NULL, '39.5000', '52.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.5000', '2.0000', '2021-12-01', 'received', '39.5000', '39.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '39.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43531, 303, NULL, 7828, '1748', 'TOP FEVER', NULL, '10.5000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-12-01', '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 (43532, 303, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '10.0000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-12-01', '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 (43533, 303, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-12-01', '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 (43534, 303, NULL, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '73.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.1000', '1.0000', '2021-12-01', '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 (43535, 303, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-12-01', '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 (43536, 303, NULL, 9241, '3161', 'BRAINWESE OMEGA 3  150ML', NULL, '40.0000', '53.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-12-01', '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 (43537, 303, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '13.1000', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2000', '2.0000', '2021-12-01', 'received', '13.1000', '13.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (43538, 303, NULL, 9638, '23165357', 'BENYLIN MUCUS DECON SYR 100ML', NULL, '34.5000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-12-01', '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 (43539, 303, NULL, 9642, '49714185', 'BENYLIN DRY COUGH NIGHT 150ML', NULL, '51.3000', '68.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.6000', '0.0000', '2021-12-01', 'received', '51.3000', '51.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.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 (43540, 303, NULL, 9639, '04191658', 'BENYLIN CHILD/THROAT SYRUP 125ML UK', NULL, '28.7900', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5800', '0.0000', '2021-12-01', 'received', '28.7900', '28.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (43541, 303, NULL, 9640, '96659237', 'BENYLIN DRY TICKLY COUGH 150ML', NULL, '38.0000', '50.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-12-01', 'received', '38.0000', '38.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43542, 303, NULL, 7455, '1375', 'WELLWOMAN CAPS', NULL, '5.3500', '38.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4000', '3.0000', '2021-12-01', 'received', '5.3500', '5.3500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.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 (43543, 303, NULL, 3062, '03146209', 'DIPHEX ANTITUSSIVE & EXP SYR', NULL, '6.0700', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2100', '0.0000', '2021-12-01', 'received', '6.0700', '6.0700', '3.0000', NULL, NULL, 1, 'pc', '3.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 (43544, 303, NULL, 9637, '81450031', 'BENYLIN CHILDREN NIGHT COUGH', NULL, '36.5000', '48.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.5000', '0.0000', '2021-12-01', 'received', '36.5000', '36.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43545, 303, NULL, 1514, '6221032340177', 'DEXATROL EYE OINT', NULL, '13.0900', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2700', '3.0000', '2021-12-01', 'received', '13.0900', '13.0900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (43546, 303, NULL, 8277, '2197', 'ATENOLOL 50', NULL, '6.5700', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8500', '0.0000', '2021-12-01', 'received', '6.5700', '6.5700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (43547, 303, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9500', '5.0000', '2021-12-01', 'received', '8.5900', '8.5900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43548, 303, NULL, 7787, '1707', 'FLUREST', NULL, '10.9000', '13.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '0.0000', '2021-12-01', 'received', '10.9000', '10.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (43549, 303, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.7600', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5600', '0.0000', '2021-12-01', 'received', '6.7600', '6.7600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (43550, 303, NULL, 8627, '2547', 'GLUCONAF D', NULL, '6.7500', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2500', '3.0000', '2021-12-01', 'received', '6.7500', '6.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (43551, 303, NULL, 9692, '23051102', 'DOPATAB M250', NULL, '10.4500', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7000', '0.0000', '2021-12-01', 'received', '10.4500', '10.4500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (43552, 291, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '15.0000', '2021-11-21', '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 (43553, 291, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '7.3300', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6500', '0.0000', '2021-11-21', 'received', '7.3300', '7.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43554, 291, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '34.0000', '2021-11-21', '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 (43555, 291, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '4.2700', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.2700', '0.0000', '2021-11-21', 'received', '4.2700', '4.2700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '4.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 (43556, 291, NULL, 8336, '2256', 'AMLODIPINE 5MG TEVA', NULL, '3.4000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.4000', '1.0000', '2021-11-21', '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 (43557, 291, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '44.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0600', '3.0000', '2021-11-21', 'received', '33.0200', '33.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (43558, 291, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '2.0000', '2021-11-21', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43559, 291, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '116.3300', '155.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.6600', '2.0000', '2021-11-21', '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 (43560, 291, NULL, 9666, '25624901', 'PROSTAT 60 CAPS 30\'S', NULL, '90.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '2.0000', '2021-11-21', '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 (43561, 291, NULL, 9693, '66923421', 'Calcough Infant syrup', NULL, '37.0000', '49.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.0000', '2.0000', '2021-11-21', '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 (43562, NULL, NULL, 8155, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43563, NULL, NULL, 2360, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-92.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43564, NULL, NULL, 8170, '', '', 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 (43565, NULL, NULL, 8665, '', '', 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 (43566, NULL, NULL, 9673, '', '', 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 (43567, NULL, NULL, 7635, '', '', 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 (43568, NULL, NULL, 8467, '', '', 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 (43569, NULL, NULL, 2935, '', '', 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 (43600, NULL, NULL, 7824, '', '', 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 (43601, NULL, NULL, 8737, '', '', 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 (43602, NULL, NULL, 2254, '', '', 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 (43603, NULL, NULL, 9640, '', '', 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 (43604, NULL, NULL, 2219, '', '', 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 (43605, NULL, NULL, 1400, '', '', 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 (43606, NULL, NULL, 8106, '', '', 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 (43607, NULL, NULL, 7557, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-66.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43614, NULL, NULL, 7749, '', '', 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 (43615, NULL, NULL, 8736, '', '', 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 (43616, NULL, NULL, 1382, '', '', 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 (43627, NULL, NULL, 7447, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-97.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43628, NULL, NULL, 7385, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-281.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43643, NULL, NULL, 2418, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (43644, NULL, NULL, 8970, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (43645, NULL, NULL, 8808, '', '', 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 (43646, NULL, NULL, 8151, '', '', 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 (43647, NULL, NULL, 7415, '', '', 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 (43648, NULL, NULL, 9510, '', '', 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 (43649, NULL, NULL, 8846, '', '', 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 (43650, NULL, NULL, 8904, '', '', 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 (43651, NULL, NULL, 8963, '', '', 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 (43652, NULL, NULL, 1647, '', '', 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 (43653, NULL, NULL, 2031, '', '', 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 (43654, NULL, NULL, 7447, '', '', 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 (43655, NULL, NULL, 7532, '', '', 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 (43656, NULL, NULL, 8084, '', '', 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 (43672, NULL, NULL, 9697, '', '', 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 (43673, NULL, NULL, 7926, '', '', 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 (43721, NULL, NULL, 1606, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (43722, NULL, NULL, 8177, '', '', 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 (43723, NULL, NULL, 8903, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (43724, NULL, NULL, 9438, '', '', 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 (43725, NULL, NULL, 8087, '', '', 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 (43726, NULL, NULL, 7417, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-56.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43727, NULL, NULL, 1943, '', '', 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 (43908, NULL, NULL, 2857, '', '', 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 (43909, NULL, NULL, 8738, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (43910, NULL, NULL, 8063, '', '', 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 (43911, NULL, NULL, 1508, '', '', 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 (43912, NULL, NULL, 7918, '', '', 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 (43913, NULL, NULL, 7534, '', '', 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 (43914, NULL, NULL, 8945, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-52.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43915, NULL, NULL, 7896, '', '', 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 (43916, NULL, NULL, 7714, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-89.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43917, NULL, NULL, 1333, '', '', 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 (43918, NULL, NULL, 7414, '', '', 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 (43919, NULL, NULL, 8638, '', '', 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 (43920, NULL, NULL, 7328, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43921, NULL, NULL, 7514, '', '', 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 (43922, NULL, NULL, 8259, '', '', 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 (43923, NULL, NULL, 7641, '', '', 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 (43924, NULL, NULL, 9399, '', '', 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 (43925, NULL, NULL, 8221, '', '', 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 (43926, NULL, NULL, 8703, '', '', 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 (43927, NULL, NULL, 7550, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-100.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43928, NULL, NULL, 7616, '', '', 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 (43929, NULL, NULL, 7427, '', '', 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 (43930, NULL, NULL, 8938, '', '', 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 (43931, NULL, NULL, 7550, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (43932, NULL, NULL, 8362, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-64.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43933, NULL, NULL, 1916, '', '', 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 (43934, NULL, NULL, 2394, '', '', 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 (43935, NULL, NULL, 1377, '', '', 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 (43936, NULL, NULL, 7857, '', '', 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 (43937, 300, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.2000', '0.0000', '2021-12-01', 'received', '9.6000', '9.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (43938, 300, NULL, 8769, '2689', 'HUNTERS', NULL, '6.6000', '8.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '0.0000', '2021-12-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 (43939, 300, NULL, 8763, '2683', 'VODY', NULL, '5.4000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-12-01', '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 (43940, 300, NULL, 8775, '2695', 'VITRAC S/S', NULL, '2.6000', '4.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '3.0000', '2021-12-01', 'received', '2.6000', '2.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (43941, 300, NULL, 8761, '2681', 'VITRAC', NULL, '12.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2021-12-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 (43942, 300, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '2.0000', '2021-12-01', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (43943, 300, NULL, 1583, '5060806420179', 'PROWOMAN DRINK 250ML', NULL, '5.8900', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.3400', '1.0000', '2021-12-01', 'received', '5.8900', '5.8900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (43944, 300, NULL, 8745, '2665', 'DON SIMON', NULL, '9.0000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-12-01', '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 (43945, 300, NULL, 9681, '02449841', 'COUNTRY MILK DRINK', NULL, '7.8000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-12-01', 'received', '7.8000', '7.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (43946, 300, NULL, 8935, '2855', 'DON GRACIA', NULL, '0.2900', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.5800', '0.0000', '2021-12-01', 'received', '0.2900', '0.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '0.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 (43947, 300, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '7.5000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-12-01', '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 (43948, 300, NULL, 8415, '2335', 'CHOCOLATE M/S', NULL, '5.5000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '20.0000', '2021-12-01', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (43949, 300, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-12-01', '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 (43950, 300, NULL, 9469, '40088756', 'PANACHE', NULL, '2.3000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2021-12-01', 'received', '2.3000', '2.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43951, 300, NULL, 7719, '1639', 'YAZZ PAD', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-12-01', '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 (43952, 300, NULL, 7849, '1769', 'HEAVEN SPRAY', NULL, '14.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-12-01', '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 (43953, 300, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-12-01', '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 (43954, 300, NULL, 8425, '2345', 'COLGATE CHARC', NULL, '10.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-12-01', '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 (43955, 300, NULL, 8438, '2358', 'ROMA SPRAY', NULL, '13.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-12-01', '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 (43956, 300, NULL, 8228, '2148', 'RAID', NULL, '15.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-12-01', '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 (43957, 300, NULL, 8834, '2754', 'AIRFRESHER', NULL, '10.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2021-12-01', '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 (43958, 300, NULL, 7728, '1648', 'MENTOS GUM ICE', NULL, '1.8000', '2.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '12.0000', '2021-12-01', 'received', '1.8000', '1.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (43959, 300, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '16.0000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2021-12-01', '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 (43960, 300, NULL, 8324, '2244', 'COLGATE BRUSH DOUBLE', NULL, '3.0000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-12-01', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (43961, 300, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-12-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 (43962, 300, NULL, 9682, '49817336', 'KILIT MOSQUITO SPRAY', NULL, '13.5000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '1.0000', '2021-12-01', '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 (43963, 300, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '10.0000', '2021-12-01', '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 (43964, 300, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '1.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '8.0000', '2021-12-01', '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 (43965, 300, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '0.8100', '1.5000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9600', '16.0000', '2021-12-01', 'received', '0.8100', '0.8100', '16.0000', NULL, NULL, 1, 'pc', '16.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 (43966, 300, NULL, 9694, '53696612', 'GOLD COAST COCOA', NULL, '16.3000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.5000', '0.0000', '2021-12-01', 'received', '16.3000', '16.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (43967, 300, NULL, 2839, '82016078', ' AMERICAN WHITE VINEGAR  473ML', NULL, '4.5000', '9.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '1.0000', '2021-12-01', '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 (43968, 300, NULL, 2841, '48020241', 'AMERICAN APPLE CIDER VINEGAR 473ML', NULL, '11.0000', '17.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '1.0000', '2021-12-01', '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 (43969, 300, NULL, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', NULL, '44.5000', '52.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2021-12-01', 'received', '44.5000', '44.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '44.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43985, 299, NULL, 9603, '50089033', 'BOTTLE FANTA/COKE 0.25ML SS/S', NULL, '2.3300', '3.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9600', '4.0000', '2021-12-01', '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 (43986, 299, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2021-12-01', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (43987, 299, NULL, 8982, '2902', 'CRANBERRY', NULL, '11.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-12-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 (43988, 299, NULL, 8775, '2695', 'VITRAC S/S', NULL, '3.3300', '4.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.9200', '0.0000', '2021-12-01', 'received', '3.3300', '3.3300', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '3.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 (43989, 299, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '4.4000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-12-01', '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 (43990, 299, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-12-01', '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 (43991, 299, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2021-12-01', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (43992, 299, NULL, 8745, '2665', 'DON SIMON', NULL, '9.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-12-01', '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 (43993, 299, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '4.0000', '2021-12-01', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (43994, 299, NULL, 8763, '2683', 'VODY', NULL, '5.4000', '8.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2021-12-01', '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 (43995, 299, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-12-01', '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 (43996, 299, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '7.5000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2021-12-01', '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 (43997, 299, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-12-01', '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 (43998, 299, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '5.0000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-12-01', '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 (43999, 299, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '3.1000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '6.0000', '2021-12-01', 'received', '3.1000', '3.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44000, 299, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '21.0000', '2021-12-01', '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 (44001, 299, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2021-12-01', '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 (44002, 299, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '0.8100', '1.5000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9600', '16.0000', '2021-12-01', 'received', '0.8100', '0.8100', '16.0000', NULL, NULL, 1, 'pc', '16.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 (44003, 299, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '1.8000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-12-01', 'received', '1.8000', '1.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44004, 299, NULL, 2839, '82016078', ' AMERICAN WHITE VINEGAR  473ML', NULL, '4.5000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2021-12-01', '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 (44005, 299, NULL, 2841, '48020241', 'AMERICAN APPLE CIDER VINEGAR 473ML', NULL, '11.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '1.0000', '2021-12-01', '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 (44006, 299, NULL, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', NULL, '44.5000', '52.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2021-12-01', 'received', '44.5000', '44.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '44.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44007, NULL, NULL, 8011, '', '', 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 (44008, NULL, NULL, 7880, '', '', 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 (44009, NULL, NULL, 7429, '', '', 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 (44010, NULL, NULL, 1764, '', '', 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 (44011, NULL, NULL, 7990, '', '', 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 (44012, NULL, NULL, 7794, '', '', 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 (44013, NULL, NULL, 9522, '', '', 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 (44014, NULL, NULL, 7601, '', '', 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 (44015, NULL, NULL, 7512, '', '', 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 (44016, NULL, NULL, 8124, '', '', 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 (44017, NULL, NULL, 7581, '', '', 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 (44018, NULL, NULL, 1945, '', '', 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 (44019, NULL, NULL, 7678, '', '', 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 (44020, NULL, NULL, 8737, '', '', 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 (44021, NULL, NULL, 8948, '', '', 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 (44022, NULL, NULL, 9698, '', '', 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 (44023, NULL, NULL, 2927, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (44024, NULL, NULL, 7715, '', '', 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 (44025, NULL, NULL, 9339, '', '', 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 (44026, NULL, NULL, 7418, '', '', 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 (44027, NULL, NULL, 1757, '', '', 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 (44028, NULL, NULL, 2067, '', '', 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 (44029, NULL, NULL, 1415, '', '', 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 (44030, 305, NULL, 9687, '38560750', 'VITALIA DRINK 250ML S/S', NULL, '5.0000', '7.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '12.0000', '2021-12-04', '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 (44031, 305, NULL, 9688, '06131493', 'JUSS DRINK 200ML S/S', NULL, '3.4000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '7.0000', '2021-12-04', '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 (44032, 305, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '4.0000', '2021-12-04', 'received', '3.8000', '3.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44033, 305, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.5900', '0.0000', '2021-12-04', 'received', '8.5900', '8.5900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44034, 305, NULL, 1747, 'PR-460', 'ZYMAX SUSP.', NULL, '9.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-12-04', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44035, 305, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.4000', '8.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.6000', '9.0000', '2021-12-04', 'received', '5.4000', '5.4000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (44036, 305, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9200', '0.0000', '2021-12-04', 'received', '3.6600', '3.6600', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (44037, 305, NULL, 8982, '2902', 'CRANBERRY', NULL, '11.0000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '4.0000', '2021-12-04', '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 (44038, 305, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '8.0000', '2021-12-04', '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 (44039, 305, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '13.0000', '2021-12-04', '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 (44040, 305, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '10.0000', '2021-12-04', '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 (44041, 305, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '0.8100', '1.5000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9600', '16.0000', '2021-12-04', 'received', '0.8100', '0.8100', '16.0000', NULL, NULL, 1, 'pc', '16.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 (44042, 305, NULL, 2839, '82016078', ' AMERICAN WHITE VINEGAR  473ML', NULL, '4.5000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2021-12-04', '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 (44043, 305, NULL, 2841, '48020241', 'AMERICAN APPLE CIDER VINEGAR 473ML', NULL, '11.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '1.0000', '2021-12-04', '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 (44044, 305, NULL, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', NULL, '44.5000', '52.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '1.0000', '2021-12-04', 'received', '44.5000', '44.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '44.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44045, 305, NULL, 9517, '80335744', 'RUBBING ALCOHOL SPRAY 750', NULL, '18.0000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2021-12-04', '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 (44046, 308, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '6.8500', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5000', '6.0000', '2021-12-15', 'received', '6.8500', '6.8500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44047, 308, NULL, 9407, '3327', 'LUMETHER SUSP', NULL, '5.4000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-12-15', '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 (44048, 308, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '8.2300', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.1500', '0.0000', '2021-12-15', 'received', '8.2300', '8.2300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (44049, 308, NULL, 9448, '61769569', 'ASPANOL DRY COUGH', NULL, '7.5200', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0800', '0.0000', '2021-12-15', 'received', '7.5200', '7.5200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.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 (44050, 308, NULL, 7642, '1562', 'LEVON 2', NULL, '5.9200', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2000', '0.0000', '2021-12-15', 'received', '5.9200', '5.9200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44051, 308, NULL, 7641, '1561', 'LYDIA', NULL, '7.0800', '10.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.6000', '0.0000', '2021-12-15', 'received', '7.0800', '7.0800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (44052, NULL, NULL, 2773, '', '', 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 (44053, NULL, NULL, 1854, '', '', 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 (44054, NULL, NULL, 7321, '', '', 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 (44055, NULL, NULL, 9154, '', '', 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 (44056, 309, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '118.6900', '157.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.6900', '1.0000', '2021-12-15', 'received', '118.6900', '118.6900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '118.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 (44057, 309, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-12-15', '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 (44058, 309, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.3300', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '0.0000', '2021-12-15', 'received', '7.3300', '7.3300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44059, 309, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6400', '0.0000', '2021-12-15', '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 (44060, 309, NULL, 7925, '1845', 'NEXCOFER B/S', NULL, '6.8000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.8000', '0.0000', '2021-12-15', 'received', '6.8000', '6.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44061, 309, NULL, 8877, '2797', 'NEXCOFER 125ML', NULL, '15.0000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2021-12-15', '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 (44062, 309, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '35.0700', '46.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.1400', '0.0000', '2021-12-15', 'received', '35.0700', '35.0700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (44063, 309, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '12.0000', '15.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-12-15', '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 (44064, 309, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '3.0000', '2021-12-15', '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 (44065, 309, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.3500', '2.0000', '2021-12-15', 'received', '11.8700', '11.8700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44066, 309, NULL, 9251, '3171', 'METRO 400MG TABS EXETER', NULL, '6.5300', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6500', '5.0000', '2021-12-15', 'received', '6.5300', '6.5300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (44067, 309, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-12-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 (44068, 309, NULL, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '47.0000', '2021-12-15', '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 (44069, NULL, NULL, 2873, '', '', 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 (44070, NULL, NULL, 2911, '', '', 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 (44071, NULL, NULL, 8013, '', '', 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 (44072, NULL, NULL, 8254, '', '', 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 (44073, NULL, NULL, 2228, '', '', 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 (44074, NULL, NULL, 7458, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44075, NULL, NULL, 2749, '', '', 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 (44076, NULL, NULL, 1857, '', '', 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 (44077, NULL, NULL, 9671, '', '', 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 (44078, NULL, NULL, 9638, '', '', 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 (44079, NULL, NULL, 9490, '', '', 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 (44080, NULL, NULL, 7866, '', '', 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 (44081, NULL, NULL, 8231, '', '', 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 (44082, NULL, NULL, 8113, '', '', 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 (44083, NULL, NULL, 8674, '', '', 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 (44084, NULL, NULL, 7629, '', '', 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 (44085, NULL, NULL, 7892, '', '', 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 (44086, NULL, NULL, 7716, '', '', 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 (44087, NULL, NULL, 8918, '', '', 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 (44088, NULL, NULL, 1739, '', '', 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 (44089, NULL, NULL, 8106, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44090, NULL, NULL, 8333, '', '', 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 (44091, NULL, NULL, 7442, '', '', 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 (44092, NULL, NULL, 7520, '', '', 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 (44093, NULL, NULL, 7759, '', '', 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 (44094, NULL, NULL, 3059, '', '', 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 (44095, NULL, NULL, 7500, '', '', 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 (44096, NULL, NULL, 7817, '', '', 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 (44097, NULL, NULL, 7798, '', '', 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 (44098, NULL, NULL, 8228, '', '', 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 (44099, NULL, NULL, 7825, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (44100, NULL, NULL, 8594, '', '', 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 (44101, NULL, NULL, 7456, '', '', 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 (44141, 311, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2021-12-19', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44142, 311, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '8.0000', '2021-12-19', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44143, 311, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '3.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-12-19', '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 (44144, 311, NULL, 8745, '2665', 'DON SIMON', NULL, '9.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-12-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 (44145, 311, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '5.0000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-12-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 (44146, 311, NULL, 9603, '50089033', 'BOTTLE FANTA/COKE 0.25ML SS/S', NULL, '2.3300', '3.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9600', '7.0000', '2021-12-19', '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 (44147, 311, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '6.6000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-12-19', '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 (44148, 311, NULL, 8763, '2683', 'VODY', NULL, '5.4000', '8.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2021-12-19', '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 (44149, 311, NULL, 7728, '1648', 'MENTOS GUM ICE', NULL, '1.8000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-12-19', 'received', '1.8000', '1.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44150, 311, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '5.0000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-12-19', '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 (44151, 311, NULL, 9699, '95396298', 'HOLLANDIA DRINK S/S', NULL, '5.0000', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-12-19', '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 (44152, 311, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '12.0000', '15.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2021-12-19', 'received', '12.0000', '12.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44153, 311, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '17.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-12-19', '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 (44154, 311, NULL, 9700, '95020926', 'DETTOL ANTISEPTIC 125ML', NULL, '8.5000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '1.0000', '2021-12-19', '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 (44155, 311, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.4500', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '2.0000', '2021-12-19', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44156, 311, NULL, 2011, '6948031103014', 'VIP TOOTHBRUSH', NULL, '0.5300', '1.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.3600', '8.0000', '2021-12-19', '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 (44157, 311, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '3.5000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-12-19', '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 (44158, 311, NULL, 3026, '94515456', 'YAZZ TOOTH BRUSH', NULL, '2.5000', '3.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '7.0000', '2021-12-19', 'received', '2.5000', '2.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44159, 311, NULL, 2161, '58683972', 'GLYCERINE B/S', NULL, '9.5000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '1.0000', '2021-12-19', '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 (44160, 311, NULL, 7500, '1420', 'GLYCERINE S/S', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-12-19', '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 (44161, 311, NULL, 2019, '6001159111641', 'BIO OIL SMALL60ML', NULL, '10.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-12-19', '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 (44162, 311, NULL, 2018, '6001159111351', 'BIO OIL MEDIUM 125ML', NULL, '18.0000', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-12-19', '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 (44163, 311, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '14.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-12-19', '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 (44164, 311, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2021-12-19', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44165, 311, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '14.6000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '3.0000', '2021-12-19', '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 (44166, 311, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '12.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-12-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 (44167, 311, NULL, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', NULL, '12.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-12-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 (44168, 311, NULL, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-12-19', '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 (44169, 311, NULL, 8749, '2669', 'VASELINE CREAM B/S', NULL, '12.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2021-12-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 (44221, 313, NULL, 9324, '3244', 'ADUSA MIXTURE', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '2.0000', '2021-12-19', '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 (44222, 313, NULL, 3040, '41228459', 'ADUSA HERBAL CAPS', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2021-12-19', '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 (44223, 313, NULL, 7509, '1429', 'ROOTER', NULL, '6.2500', '9.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-12-19', 'received', '6.2500', '6.2500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.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 (44224, 313, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-12-19', '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 (44225, 313, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.5000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2021-12-19', '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 (44226, 313, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-12-19', '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 (44227, 313, NULL, 7816, '1736', 'SIBIWOMAN', NULL, '12.5000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-12-19', '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 (44228, 313, NULL, 9097, '3017', 'CD CAPS', NULL, '22.0000', '29.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-12-19', '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 (44229, 313, NULL, 9010, '2930', 'CHOCHO SOAP', NULL, '3.5000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2021-12-19', '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 (44230, 313, NULL, 7755, '1675', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-12-19', '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 (44231, 313, NULL, 2603, '17379642', 'VITAGO', NULL, '1.0000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '19.0000', '2021-12-19', '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 (44232, 313, NULL, 8753, '2673', 'GANA BALM', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-12-19', '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 (44233, 313, NULL, 8359, '2279', 'IMBOOST', NULL, '13.5000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2021-12-19', '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 (44234, 313, NULL, 7762, '1682', 'GV PAINT', NULL, '1.8000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-12-19', '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 (44235, 313, NULL, 8550, '2470', 'SEBAMED SOAP 100G', NULL, '15.3000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9000', '2.0000', '2021-12-19', 'received', '15.3000', '15.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (44236, 313, NULL, 9701, '27495096', 'SEBAMED FACIAL SOAP', NULL, '23.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '2.0000', '2021-12-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 (44237, 313, NULL, 2499, '01118964', 'PROXEED PLUS MEN', NULL, '10.6000', '14.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '318.0000', '30.0000', '2021-12-19', '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 (44238, 313, NULL, 2498, '86757348', 'PROXEED WOMEN', NULL, '9.6000', '12.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '30.0000', '2021-12-19', 'received', '9.6000', '9.6000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (44239, NULL, NULL, 9629, '', '', 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 (44240, NULL, NULL, 8307, '', '', 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 (44241, NULL, NULL, 9166, '', '', 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 (44242, NULL, NULL, 7764, '', '', 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 (44243, NULL, NULL, 8667, '', '', 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 (44244, NULL, NULL, 7318, '', '', 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 (44245, NULL, NULL, 1816, '', '', 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 (44246, NULL, NULL, 2451, '', '', 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 (44247, NULL, NULL, 2717, '', '', 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 (44248, NULL, NULL, 1751, '', '', 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 (44249, NULL, NULL, 7400, '', '', 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 (44250, NULL, NULL, 7834, '', '', 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 (44251, NULL, NULL, 8957, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (44252, NULL, NULL, 9470, '', '', 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 (44334, NULL, NULL, 2637, '', '', 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 (44335, NULL, NULL, 1944, '', '', 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 (44336, NULL, NULL, 3071, '', '', 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 (44337, NULL, NULL, 8984, '', '', 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 (44338, NULL, NULL, 2307, '', '', 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 (44339, NULL, NULL, 8711, '', '', 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 (44340, NULL, NULL, 9695, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-97.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44341, NULL, NULL, 8817, '', '', 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 (44342, NULL, NULL, 7752, '', '', 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 (44343, NULL, NULL, 2592, '', '', 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 (44344, NULL, NULL, 8878, '', '', 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 (44345, NULL, NULL, 7613, '', '', 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 (44346, NULL, NULL, 8888, '', '', 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 (44347, NULL, NULL, 7401, '', '', 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 (44348, NULL, NULL, 7942, '', '', 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 (44349, NULL, NULL, 8047, '', '', 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 (44350, NULL, NULL, 7495, '', '', 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 (44351, NULL, NULL, 2906, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-38.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44352, 315, NULL, 2108, '85249693', 'ARFAN 20/120MG', NULL, '3.7500', '5.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.2500', '13.0000', '2021-12-21', 'received', '3.7500', '3.7500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (44353, 315, NULL, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '5.8300', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.3200', '1.0000', '2021-12-21', 'received', '5.8300', '5.8300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (44354, 315, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '7.3300', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6500', '4.0000', '2021-12-21', 'received', '7.3300', '7.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44355, 315, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.9000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '5.0000', '2021-12-21', 'received', '3.9000', '3.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44356, 315, NULL, 7608, '1528', 'AUNTY MARY', NULL, '6.9800', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '0.0000', '2021-12-21', 'received', '6.9800', '6.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (44357, 315, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.8400', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '0.0000', '2021-12-21', '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 (44358, 315, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-12-21', '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 (44359, 315, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5000', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '16.0000', '2021-12-21', '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 (44360, 315, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.6000', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-12-21', '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 (44361, 315, NULL, 9527, '37888912', 'DICLOFENAC SODIUM 75MG/3ML', NULL, '5.0000', '7.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '1.0000', '2021-12-21', '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 (44362, 315, NULL, 7460, '1380', 'GVITHER INJ', NULL, '2.5000', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-12-21', '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 (44363, 315, NULL, 7557, '1477', 'DICLO INJ', NULL, '0.5000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-12-21', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (44408, NULL, NULL, 3004, '', '', 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 (44409, NULL, NULL, 8761, '', '', 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 (44410, NULL, NULL, 8821, '', '', 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 (44411, NULL, NULL, 9320, '', '', 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 (44412, NULL, NULL, 9642, '', '', 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 (44413, NULL, NULL, 1967, '', '', 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 (44414, NULL, NULL, 9012, '', '', 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 (44415, NULL, NULL, 7688, '', '', 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 (44416, NULL, NULL, 1825, '', '', 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 (44417, NULL, NULL, 9275, '', '', 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 (44418, NULL, NULL, 8485, '', '', 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 (44419, NULL, NULL, 7448, '', '', 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 (44420, NULL, NULL, 9320, '', '', 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 (44421, NULL, NULL, 7316, '', '', 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 (44422, NULL, NULL, 2366, '', '', 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 (44423, NULL, NULL, 2281, '', '', 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 (44424, NULL, NULL, 8106, '', '', 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 (44425, 316, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '161.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '243.7800', '0.0000', '2021-12-22', 'received', '121.8900', '121.8900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (44426, 316, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.2000', '6.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '0.0000', '2021-12-22', '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 (44427, 316, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.7200', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-12-22', 'received', '0.7200', '0.7200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (44428, 316, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '0.0000', '2021-12-22', '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 (44429, 316, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '46.0000', '60.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.0000', '4.0000', '2021-12-22', 'received', '46.0000', '46.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (44430, 316, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.4000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '0.0000', '2021-12-22', 'received', '16.4000', '16.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44431, 317, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '236.0000', '20.0000', '2021-12-22', 'received', '11.8000', '11.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (44432, 317, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '744.0000', '20.0000', '2021-12-22', 'received', '37.2000', '37.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '37.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 (44433, 317, NULL, 7787, '1707', 'FLUREST', NULL, '10.9000', '13.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.9000', '0.0000', '2021-12-22', 'received', '10.9000', '10.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44434, 317, NULL, 9556, '98215171', 'RONFIT COLD TAB', NULL, '0.4500', '1.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-12-22', 'received', '0.4500', '0.4500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (44435, 317, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '23.2200', '32.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.2200', '0.0000', '2021-12-22', 'received', '23.2200', '23.2200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '23.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 (44436, 314, NULL, 9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', NULL, '8.5000', '13.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '5.0000', '2021-12-20', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44437, 314, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '11.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-12-20', '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 (44438, 314, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '85.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1000', '40.0000', '2021-12-20', 'received', '0.2600', '0.2600', '85.0000', NULL, NULL, 1, 'pc', '85.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 (44439, 314, NULL, 9096, '3016', 'SHORT BREAD', NULL, '6.0000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-12-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 (44440, 314, NULL, 2713, '06467625', 'MENTOS ICE GUM', NULL, '1.5000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-12-20', '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 (44441, 314, NULL, 8863, '2783', 'ROMA CREAM CRACKERS', NULL, '5.0000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2021-12-20', '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 (44442, 314, NULL, 9702, '02434950', 'ASTOR BISCUIT', NULL, '15.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-12-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 (44443, 314, NULL, 9703, '40596124', 'PREMIUM BISCUIT', NULL, '20.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-12-20', '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 (44444, 314, NULL, 9704, '54892929', 'SELECTION BISCUIT', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-12-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 (44445, 314, NULL, 9705, '85653062', 'CHOCOMO BISCUIT', NULL, '6.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-12-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 (44446, 314, NULL, 9706, '79543272', 'COOKIES DANE', NULL, '8.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-12-20', '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 (44447, 314, NULL, 9707, '97718345', 'CHOCO COOKIES', NULL, '1.2000', '2.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.2000', '1.0000', '2021-12-20', 'received', '1.2000', '1.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44448, 314, NULL, 2504, '61281286', 'MIXTARD', NULL, '35.0000', '44.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '1.0000', '2021-12-20', '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 (44449, 314, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-12-20', '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 (44450, 314, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '12.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2021-12-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 (44451, 314, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2021-12-20', 'received', '0.5500', '0.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (44452, 314, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6400', '0.0000', '2021-12-20', '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 (44453, 314, NULL, 8184, '2104', 'ENACEF 500', NULL, '2.4000', '3.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-12-20', '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 (44454, 314, NULL, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '2.7000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-12-20', '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 (44455, 314, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '16.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-12-20', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44456, 314, NULL, 9708, '56114677', 'LORATADINE TAB 10MG 30\'S', NULL, '5.4000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '2.0000', '2021-12-20', 'received', '5.4000', '5.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (44457, 314, NULL, 9709, '43200173', 'OMERAZOLE 20MG TABS 28\'S', NULL, '6.0000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2021-12-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 (44458, 314, NULL, 9710, '06376124', 'OMEPRAZOLE 40MG CAPS 28\'S', NULL, '10.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-12-20', '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 (44459, 314, NULL, 9711, '79932934', 'NORMAL SALINE DROP (MANDANOL)', NULL, '5.2800', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '2.0000', '2021-12-20', '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 (44460, 314, NULL, 9572, '88702320', 'COLGATE TOTAL PASTE', NULL, '14.0000', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-12-20', '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 (44461, 314, NULL, 9712, '36217116', 'CREST PLUS SCOPE PASTE', NULL, '20.0000', '22.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '4.0000', '2021-12-20', '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 (44462, 312, NULL, 2962, '17785722', 'MOSQUITO REPELLENT', NULL, '4.0000', '6.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-12-19', '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 (44463, 312, NULL, 8322, '2242', 'SURE ROLL ON', NULL, '7.0000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-12-19', '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 (44464, 312, NULL, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', NULL, '4.8000', '8.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '1.0000', '2021-12-19', '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 (44465, 312, NULL, 8730, '2650', 'LONGRICH PASTE', NULL, '29.0000', '35.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2021-12-19', 'received', '29.0000', '29.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (44466, 312, NULL, 8952, '2872', 'IMPERIAL LATHER', NULL, '5.3000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '0.0000', '2021-12-19', 'received', '5.3000', '5.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44467, 312, NULL, 9572, '88702320', 'COLGATE TOTAL PASTE', NULL, '14.0000', '22.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '5.0000', '2021-12-19', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44468, 312, NULL, 7722, '1642', 'ALWAYS DOUBLE', NULL, '8.0000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2021-12-19', '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 (44469, 312, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '12.0000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-12-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 (44470, 312, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-12-19', '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 (44471, 312, NULL, 8557, '2477', 'SOFTCARE DIAPER', NULL, '10.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-12-19', '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 (44472, 312, NULL, 8953, '2873', 'ORO INSECTICIDE', NULL, '18.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2021-12-19', '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 (44473, 312, NULL, 7964, '1884', 'APPLE CIDER B/S', NULL, '55.0000', '75.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '3.0000', '2021-12-19', 'received', '55.0000', '55.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (44474, 312, NULL, 7721, '1641', 'ALWAYS MAXI', NULL, '5.5000', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2021-12-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 (44475, 312, NULL, 9217, '3137', 'ORAL B PASTE SMALL', NULL, '2.5000', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '4.0000', '2021-12-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 (44476, 312, NULL, 7728, '1648', 'MENTOS GUM ICE', NULL, '1.8000', '2.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '20.0000', '2021-12-19', 'received', '1.8000', '1.8000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (44477, 312, NULL, 9587, '22989390', 'LUCOSADE 380ML', NULL, '5.5000', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2021-12-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 (44478, 312, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '0.0000', '2021-12-19', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (44479, 312, NULL, 9179, '3099', 'ANTI BACTERIAL WIPES', NULL, '12.0000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-12-19', '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 (44480, 312, NULL, 8566, '2486', 'SURE SPRAY', NULL, '10.0000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-12-19', '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 (44481, 312, NULL, 8232, '2152', 'SULFER 18 POWD', NULL, '4.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2021-12-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 (44482, 312, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-12-19', 'received', '8.0000', '8.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (44483, 312, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2021-12-19', 'received', '15.0000', '15.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (44484, 312, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '12.0000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2021-12-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 (44485, 312, NULL, 9712, '36217116', 'CREST PLUS SCOPE PASTE', NULL, '20.0000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '4.0000', '2021-12-19', '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 (44486, 312, NULL, 9572, '88702320', 'COLGATE TOTAL PASTE', NULL, '14.0000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2021-12-19', '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 (44487, 310, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2021-12-19', '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 (44488, 310, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '1.0000', '2021-12-19', '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 (44489, 310, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-12-19', '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 (44490, 310, NULL, 2231, '7501058633927', 'NAN 2', NULL, '34.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '2.0000', '2021-12-19', '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 (44491, 310, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '88.0000', '100.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '528.0000', '0.0000', '2021-12-19', 'received', '88.0000', '88.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '88.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44492, 310, NULL, 8124, '2044', 'SASSO SPRAY', NULL, '18.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-12-19', 'received', '18.0000', '18.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44493, 310, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '5.0000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2021-12-19', '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 (44494, 310, NULL, 3070, '37547840', 'LOCUZADE BOTTLE B/S', NULL, '12.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '1.0000', '2021-12-19', '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 (44495, 310, NULL, 9587, '22989390', 'LUCOSADE 380ML', NULL, '5.5000', '7.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '7.0000', '2021-12-19', 'received', '5.5000', '5.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (44496, 310, NULL, 9084, '3004', 'APPLE JUICE', NULL, '8.9000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2021-12-19', 'received', '8.9000', '8.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (44497, 310, NULL, 8769, '2689', 'HUNTERS', NULL, '6.6000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '6.0000', '2021-12-19', '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 (44498, 310, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.4000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-12-19', '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 (44499, 310, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-12-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 (44500, 310, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-12-19', '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 (44501, 310, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-12-19', '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 (44502, 310, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '3.0000', '2021-12-19', '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 (44503, 310, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '4.6000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '1.0000', '2021-12-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 (44504, 310, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '7.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2021-12-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 (44505, 310, NULL, 2504, '61281286', 'MIXTARD', NULL, '35.0000', '44.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '3.0000', '2021-12-19', '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 (44506, 310, NULL, 9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', NULL, '8.5000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '2.0000', '2021-12-19', '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 (44507, 310, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '11.0000', '15.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '2.0000', '2021-12-19', 'received', '11.0000', '11.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (44508, 310, NULL, 2558, '12419923', 'OVULATION TEST KIT', NULL, '6.0000', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2021-12-19', '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 (44509, 310, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '12.0000', '16.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-12-19', '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 (44510, 310, NULL, 9712, '36217116', 'CREST PLUS SCOPE PASTE', NULL, '20.0000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '4.0000', '2021-12-19', '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 (44511, 310, NULL, 9572, '88702320', 'COLGATE TOTAL PASTE', NULL, '14.0000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2021-12-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 (44512, NULL, NULL, 9512, '', '', 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 (44513, NULL, NULL, 7728, '', '', 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 (44514, NULL, NULL, 9017, '', '', 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 (44515, NULL, NULL, 7905, '', '', 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 (44516, NULL, NULL, 2023, '', '', 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 (44517, NULL, NULL, 8873, '', '', 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 (44518, NULL, NULL, 8749, '', '', 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 (44519, NULL, NULL, 8920, '', '', 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 (44520, NULL, NULL, 7454, '', '', 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 (44521, NULL, NULL, 8335, '', '', 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 (44522, NULL, NULL, 8135, '', '', 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 (44523, NULL, NULL, 2907, '', '', 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 (44524, NULL, NULL, 8915, '', '', 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 (44525, NULL, NULL, 7679, '', '', 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 (44526, 307, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '5.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '1.0000', '2021-12-10', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44527, 307, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '1.0000', '2021-12-10', 'received', '3.9000', '3.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44528, 307, NULL, 9538, '3537912', 'CALCICARE TABS', NULL, '23.0000', '31.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '2.0000', '2021-12-10', '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 (44529, 307, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.1500', '0.0000', '2021-12-10', 'received', '27.2300', '27.2300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44530, 307, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '6.8500', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2500', '4.0000', '2021-12-10', 'received', '6.8500', '6.8500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44531, 307, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '161.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '609.4500', '4.0000', '2021-12-10', 'received', '121.8900', '121.8900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44532, 307, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.3500', '4.0000', '2021-12-10', 'received', '11.8700', '11.8700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44533, 307, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '9.2200', '12.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4400', '0.0000', '2021-12-10', 'received', '9.2200', '9.2200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (44534, 307, NULL, 2502, '14251017', 'TCP ANTISEPTIC LIQUID 200ML', NULL, '43.2000', '55.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '1.0000', '2021-12-10', '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 (44535, 307, NULL, 9008, '2928', 'TCP 2OOML', NULL, '43.0000', '55.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '1.0000', '2021-12-10', 'received', '43.0000', '43.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44536, 307, NULL, 9696, '32520701', 'TCP ANTISEPTIC LIQUID 100ML', NULL, '34.8900', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.6700', '3.0000', '2021-12-10', 'received', '34.8900', '34.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.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 (44537, 307, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '10.0000', '2021-12-10', '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 (44538, 307, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '7.0000', '2021-12-10', '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 (44539, 307, NULL, 2856, '42113882', 'KAMAGRA 100MG', NULL, '7.2000', '10.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4000', '6.0000', '2021-12-10', 'received', '7.2000', '7.2000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44540, 307, NULL, 9697, '32019049', 'ACICLOVIR 400MG (RANBAXY)', NULL, '13.0000', '17.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '8.0000', '2021-12-10', 'received', '13.0000', '13.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44541, 307, NULL, 2857, '12087740', 'KAMAGRA 50', NULL, '5.0000', '6.6000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '8.0000', '2021-12-10', '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 (44542, 307, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '18.0000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-12-10', '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 (44543, 307, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '20.0000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-12-10', '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 (44544, 307, 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-12-10', '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 (44545, 307, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '18.0000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2021-12-10', '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 (44546, 307, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '2.0000', '2021-12-10', '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 (44547, 307, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2021-12-10', '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 (44548, 307, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '6.0000', '2021-12-10', '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 (44549, 307, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '4.0000', '2021-12-10', '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 (44550, 307, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '259.0000', '10.0000', '2021-12-10', 'received', '25.9000', '25.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44551, 307, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.5000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '1.0000', '2021-12-10', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44552, 307, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '13.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2021-12-10', '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 (44553, 307, NULL, 3009, '25462573', 'B CO STRONG KRIKA ORIGINAL', NULL, '8.3000', '14.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.7000', '5.0000', '2021-12-10', 'received', '8.3000', '8.3000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '8.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 (44554, 307, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.8000', '6.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '24.0000', '2021-12-10', 'received', '4.8000', '4.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (44555, 307, NULL, 9638, '23165357', 'BENYLIN MUCUS DECON SYR 100ML', NULL, '34.5000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.5000', '3.0000', '2021-12-10', 'received', '34.5000', '34.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (44556, 307, NULL, 2698, '01508425', 'NIGHT NURSE CAPS', NULL, '36.8600', '49.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.3000', '1.0000', '2021-12-10', 'received', '36.8600', '36.8600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44557, 307, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '52.9800', '70.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.9000', '3.0000', '2021-12-10', 'received', '52.9800', '52.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '52.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 (44558, 307, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '44.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.1000', '1.0000', '2021-12-10', 'received', '33.0200', '33.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (44559, 307, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '14.5600', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.8000', '0.0000', '2021-12-10', 'received', '14.5600', '14.5600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (44560, 307, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.9000', '30.0000', '2021-12-10', '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 (44561, 307, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4000', '2.0000', '2021-12-10', 'received', '2.0800', '2.0800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (44562, 307, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.5000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-12-10', '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 (44563, 307, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '8.5000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '5.0000', '2021-12-10', '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 (44564, 307, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.7500', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.7500', '1.0000', '2021-12-10', 'received', '3.7500', '3.7500', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44565, 307, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '9.0000', '2021-12-10', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44566, 307, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '4.7000', '6.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '10.0000', '2021-12-10', 'received', '4.7000', '4.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (44567, 307, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.6000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '3.0000', '2021-12-10', 'received', '18.6000', '18.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44568, 307, NULL, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', NULL, '10.4600', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3000', '4.0000', '2021-12-10', 'received', '10.4600', '10.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (44569, 307, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '1.0000', '2021-12-10', '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 (44570, 307, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.8000', '6.4000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.0000', '10.0000', '2021-12-10', 'received', '4.8000', '4.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (44571, 307, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '0.0000', '2021-12-10', '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 (44572, 307, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '21.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '0.0000', '2021-12-10', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (44573, 307, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.7000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '3.0000', '2021-12-10', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44574, 307, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-12-10', '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 (44575, 307, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '23.0000', '30.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '0.0000', '2021-12-10', 'received', '23.0000', '23.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (44576, 307, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '16.8900', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.4500', '3.0000', '2021-12-10', 'received', '16.8900', '16.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (44577, 307, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.9000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5000', '3.0000', '2021-12-10', '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 (44578, 307, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.1500', '21.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.4500', '1.0000', '2021-12-10', 'received', '16.1500', '16.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (44579, 307, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.2200', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '52.0000', '2021-12-10', 'received', '0.2200', '0.2200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (44580, 307, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '0.0000', '2021-12-10', 'received', '0.9000', '0.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44581, 307, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '10.0000', '2021-12-10', '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 (44582, 307, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9300', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6500', '0.0000', '2021-12-10', 'received', '6.9300', '6.9300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44583, 307, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '5.0000', '2021-12-10', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44584, 307, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2021-12-10', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (44585, 307, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '4.8500', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5500', '1.0000', '2021-12-10', 'received', '4.8500', '4.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (44586, 307, NULL, 9453, '73814348', 'LORATADINE ( LORFAST) 10MG', NULL, '11.0000', '14.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-12-10', '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 (44587, 307, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.9900', '30.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.9500', '0.0000', '2021-12-10', 'received', '22.9900', '22.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (44588, 307, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-12-10', '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 (44589, 307, NULL, 2717, '31018284', 'ZIIPMAN', NULL, '14.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-12-10', '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 (44590, 307, NULL, 2375, '02290774', 'PAKUM( ROCKMAN) CAPS', NULL, '14.0000', '18.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-12-10', '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 (44591, 307, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2021-12-10', '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 (44592, 307, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '1.0000', '2021-12-10', '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 (44593, 307, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '3.2000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '10.0000', '2021-12-10', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44594, 307, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.5000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2021-12-10', '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 (44595, 307, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '2.2000', '3.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '55.0000', '2021-12-10', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (44596, 307, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '32.0000', '42.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2021-12-10', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (44597, 307, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.4000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '2.0000', '2021-12-10', 'received', '16.4000', '16.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44598, 307, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.0000', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-12-10', '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 (44599, 307, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '11.6900', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.9000', '0.0000', '2021-12-10', 'received', '11.6900', '11.6900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44600, 307, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '6.5000', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '10.0000', '2021-12-10', '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 (44601, 307, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.2000', '3.0000', '2021-12-10', '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 (44602, 307, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '19.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2000', '0.0000', '2021-12-10', 'received', '14.8000', '14.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (44603, 307, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.4500', '3.0000', '2021-12-10', 'received', '13.2900', '13.2900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44604, 307, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '42.0000', '56.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '2.0000', '2021-12-10', 'received', '42.0000', '42.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (44605, 307, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-12-10', '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 (44606, 307, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '2.0000', '2021-12-10', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44607, 307, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.6500', '0.0000', '2021-12-10', 'received', '14.5300', '14.5300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44608, 307, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3000', '4.0000', '2021-12-10', 'received', '1.6300', '1.6300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44609, 307, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '8.0000', '2021-12-10', '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 (44610, 307, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.2900', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9000', '6.0000', '2021-12-10', 'received', '4.2900', '4.2900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44611, 307, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.6000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-12-10', '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 (44612, 307, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '35.0700', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.2100', '3.0000', '2021-12-10', 'received', '35.0700', '35.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (44613, 307, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.3300', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6500', '4.0000', '2021-12-10', 'received', '5.3300', '5.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44614, 307, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.0300', '2.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '50.0000', '2021-12-10', 'received', '2.0300', '2.0300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (44615, 307, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.8300', '8.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.9600', '5.0000', '2021-12-10', 'received', '5.8300', '5.8300', '12.0000', NULL, NULL, 1, 'pc', '12.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 (44616, 307, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.4000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '5.0000', '2021-12-10', 'received', '20.4000', '20.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (44617, 307, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.0500', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '48.0000', '2021-12-10', '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 (44618, 307, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-12-10', '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 (44619, 307, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.7500', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.7500', '0.0000', '2021-12-10', 'received', '8.7500', '8.7500', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44620, 307, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.9000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2021-12-10', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44621, 307, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9400', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.4000', '0.0000', '2021-12-10', 'received', '0.9400', '0.9400', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44622, 307, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-12-10', '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 (44623, 307, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-12-10', '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 (44624, 307, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '1.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2021-12-10', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (44625, 307, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '23.0000', '2021-12-10', '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 (44626, 307, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.5000', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '9.0000', '2021-12-10', '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 (44627, 307, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '9.6500', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '0.0000', '2021-12-10', 'received', '9.6500', '9.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (44628, 307, NULL, 2519, '61714252', 'COLESTOP 20MG', NULL, '13.0000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.0000', '2021-12-10', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (44629, 307, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '3.0000', '2021-12-10', '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 (44630, 307, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '744.0000', '15.0000', '2021-12-10', 'received', '37.2000', '37.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '37.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 (44631, 307, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '161.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '243.7800', '2.0000', '2021-12-10', 'received', '121.8900', '121.8900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (44632, 307, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '4.4000', '7.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '25.0000', '2021-12-10', 'received', '4.4000', '4.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (44633, 307, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.2000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-12-10', '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 (44634, 307, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '5.0000', '2021-12-10', '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 (44635, 307, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '10.0000', '2021-12-10', '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 (44636, 307, NULL, 7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', NULL, '15.6000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-12-10', 'received', '15.6000', '15.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (44637, 307, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '21.7700', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8500', '0.0000', '2021-12-10', 'received', '21.7700', '21.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (44638, 307, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2021-12-10', '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 (44639, 307, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '3.0000', '2021-12-10', '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 (44640, 307, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '4.0000', '2021-12-10', '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 (44641, 307, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-12-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 (44642, 307, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '10.0000', '2021-12-10', '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 (44643, 307, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.3300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.3000', '10.0000', '2021-12-10', 'received', '7.3300', '7.3300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44644, 307, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '92.0000', '2021-12-10', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (44645, NULL, NULL, 8023, '', '', 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 (44646, NULL, NULL, 1771, '', '', 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 (44647, NULL, NULL, 9532, '', '', 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 (44648, NULL, NULL, 8064, '', '', 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 (44649, NULL, NULL, 7431, '', '', 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 (44650, NULL, NULL, 2148, '', '', 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 (44651, NULL, NULL, 2408, '', '', 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 (44652, NULL, NULL, 1903, '', '', 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 (44653, NULL, NULL, 7419, '', '', 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 (44654, NULL, NULL, 9294, '', '', 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 (44655, NULL, NULL, 7508, '', '', 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 (44656, NULL, NULL, 1367, '', '', 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 (44657, NULL, NULL, 7586, '', '', 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 (44658, NULL, NULL, 1995, '', '', 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 (44659, NULL, NULL, 8926, '', '', 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 (44660, NULL, NULL, 2321, '', '', 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 (44661, NULL, NULL, 7798, '', '', 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 (44662, NULL, NULL, 7701, '', '', 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 (44663, NULL, NULL, 8418, '', '', 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 (44664, NULL, NULL, 9449, '', '', 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 (44665, NULL, NULL, 9344, '', '', 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 (44666, NULL, NULL, 2484, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (44667, NULL, NULL, 1411, '', '', 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 (44668, NULL, NULL, 1375, '', '', 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 (44669, NULL, NULL, 9601, '', '', 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 (44670, NULL, NULL, 1912, '', '', 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 (44671, NULL, NULL, 7647, '', '', 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 (44672, NULL, NULL, 1715, '', '', 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 (44673, NULL, NULL, 8622, '', '', 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 (44674, NULL, NULL, 9177, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-149.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44675, NULL, NULL, 8062, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (44676, NULL, NULL, 2863, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-100.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44677, NULL, NULL, 1987, '', '', 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 (44678, NULL, NULL, 7527, '', '', 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 (44679, NULL, NULL, 2176, '', '', 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 (44680, NULL, NULL, 2921, '', '', 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 (44681, NULL, NULL, 1747, '', '', 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 (44682, NULL, NULL, 2475, '', '', 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 (44683, NULL, NULL, 1484, '', '', 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 (44684, NULL, NULL, 8132, '', '', 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 (44685, NULL, NULL, 8177, '', '', 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 (44686, NULL, NULL, 7623, '', '', 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 (44687, NULL, NULL, 7768, '', '', 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 (44688, NULL, NULL, 1686, '', '', 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 (44689, 318, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.0000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2021-12-28', '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 (44690, 318, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2021-12-28', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44691, 318, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '25.0000', '2021-12-28', 'received', '1.3600', '1.3600', '25.0000', NULL, NULL, 1, 'pc', '25.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 (44692, 318, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.5900', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9000', '10.0000', '2021-12-28', 'received', '3.5900', '3.5900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (44693, 318, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '33.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2021-12-28', '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 (44694, 318, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2021-12-28', '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 (44695, 318, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.5000', '79.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.0000', '2.0000', '2021-12-28', 'received', '59.5000', '59.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44696, 318, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.6000', '16.0000', '2021-12-28', '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 (44697, 318, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-12-28', '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 (44698, 318, NULL, 1954, '87246804', 'COLDRID TAB', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-12-28', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44699, 318, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2021-12-28', '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 (44700, 318, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '8.0000', '2021-12-28', '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 (44701, 318, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '85.7700', '113.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.5400', '0.0000', '2021-12-28', 'received', '85.7700', '85.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '85.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 (44702, 318, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.5000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5600', '16.0000', '2021-12-28', 'received', '5.9100', '5.9100', '16.0000', NULL, NULL, 1, 'pc', '16.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 (44703, 318, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.8000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '0.0000', '2021-12-28', '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 (44704, 318, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '25.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-12-28', '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 (44705, 318, NULL, 8520, '2440', 'SALBUTAMOL CFC INH', NULL, '18.9800', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9600', '2.0000', '2021-12-28', 'received', '18.9800', '18.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (44706, 318, NULL, 7558, '1478', 'DORETA', NULL, '2.2000', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '7.0000', '2021-12-28', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (44707, 318, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '9.2000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '3.0000', '2021-12-28', '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 (44708, 318, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.5400', '47.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0800', '0.0000', '2021-12-28', 'received', '35.5400', '35.5400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (44709, 318, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '9.0000', '12.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2021-12-28', '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 (44710, 318, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '9.2000', '12.1400', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '5.0000', '2021-12-28', 'received', '9.2000', '9.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44711, 318, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-12-28', '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 (44712, 318, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '6.0000', '2021-12-28', '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 (44713, 318, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '2.0000', '2021-12-28', '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 (44714, 318, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '7.0000', '2021-12-28', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (44715, 318, NULL, 1910, 'PR-623', 'Apc 10 x 10', NULL, '1.1600', '1.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.2000', '0.0000', '2021-12-28', 'received', '1.1600', '1.1600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (44716, 318, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '29.0000', '2021-12-28', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (44717, 318, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '7.2000', '9.5000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '201.6000', '0.0000', '2021-12-28', 'received', '7.2000', '7.2000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (44718, 318, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '51.0000', '69.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-12-28', 'received', '51.0000', '51.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (44719, 318, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2021-12-28', '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 (44720, 318, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '4.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '2.0000', '2021-12-28', '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 (44721, 318, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '30.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2021-12-28', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44722, 318, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '4.3300', '6.0000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.9700', '8.0000', '2021-12-28', 'received', '4.3300', '4.3300', '9.0000', NULL, NULL, 1, 'pc', '9.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 (44723, 318, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '10.0000', '2021-12-28', 'received', '2.3500', '2.3500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (44724, 318, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8000', '7.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '25.0000', '2021-12-28', 'received', '3.8000', '3.8000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (44725, 318, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.6700', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6700', '1.0000', '2021-12-28', 'received', '32.6700', '32.6700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '32.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 (44726, 318, NULL, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '60.7700', '80.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7700', '1.0000', '2021-12-28', 'received', '60.7700', '60.7700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '60.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 (44727, 318, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '13.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2021-12-28', '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 (44728, 318, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '3.0000', '2021-12-28', '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 (44729, 318, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '11.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-12-28', '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 (44730, 318, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '7.0000', '2021-12-28', '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 (44731, 318, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-12-28', '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 (44732, 318, NULL, 1696, 'PR-409', 'CYFEN SYR', NULL, '10.5000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '1.0000', '2021-12-28', '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 (44733, 319, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.3000', '37.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.9000', '0.0000', '2021-12-28', 'received', '28.3000', '28.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (44734, 319, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.6700', '47.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3400', '2.0000', '2021-12-28', 'received', '32.6700', '32.6700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.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 (44735, 319, NULL, 7621, '1541', 'METAGYL SRP', NULL, '4.3900', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9500', '0.0000', '2021-12-28', '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 (44736, 319, NULL, 2984, '72867652', 'METRO SUSP (M&G)', NULL, '3.4100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.1000', '9.0000', '2021-12-28', 'received', '3.4100', '3.4100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (44737, 319, NULL, 7973, '1893', 'VITAGLOBIN', NULL, '41.1400', '54.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.2800', '0.0000', '2021-12-28', 'received', '41.1400', '41.1400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (44738, 319, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '12.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '20.0000', '2021-12-28', '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 (44739, 319, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '58.0000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '1.0000', '2021-12-28', 'received', '58.0000', '58.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44740, 319, NULL, 1769, '6001135508526', 'BENYLIN PAED. SYRUP 1 00ML', NULL, '26.8000', '35.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.2000', '0.0000', '2021-12-28', 'received', '26.8000', '26.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '26.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 (44741, 319, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.7600', '12.0000', '2021-12-28', 'received', '8.2300', '8.2300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '8.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 (44742, 319, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3500', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '18.0000', '2021-12-28', 'received', '4.3500', '4.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (44743, 319, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.8000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '9.0000', '2021-12-28', 'received', '6.8000', '6.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44744, 319, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.4000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '5.0000', '2021-12-28', 'received', '16.4000', '16.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44745, 319, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '10.0000', '2021-12-28', '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 (44746, 319, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '9.9000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '6.0000', '2021-12-28', 'received', '9.9000', '9.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44747, 319, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '6.3600', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.6000', '0.0000', '2021-12-28', 'received', '6.3600', '6.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44748, 319, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.0000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2021-12-28', '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 (44749, 319, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '6.0000', '2021-12-28', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44750, 319, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '8.0000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '10.0000', '2021-12-28', '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 (44751, 319, NULL, 7558, '1478', 'DORETA', NULL, '2.2000', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-12-28', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (44752, 319, NULL, 8198, '2118', 'CELEBREX', NULL, '53.3100', '71.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.9300', '0.0000', '2021-12-28', 'received', '53.3100', '53.3100', '3.0000', NULL, NULL, 1, 'pc', '3.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 (44753, 319, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1500', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '4.0000', '2021-12-28', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (44754, 319, NULL, 8333, '2253', 'GUDAPET CAPS', NULL, '6.7300', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6500', '2.0000', '2021-12-28', 'received', '6.7300', '6.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (44755, 319, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '34.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '10.0000', '2021-12-28', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44756, 319, NULL, 9540, '55057911', 'AMILOPINE 5MG TEVA', NULL, '3.4000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '20.0000', '2021-12-28', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (44757, 319, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '23.0000', '2021-12-28', 'received', '1.1000', '1.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (44758, 319, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.8000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '3.0000', '2021-12-28', '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 (44759, 319, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.6000', '27.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.8000', '2.0000', '2021-12-28', '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 (44760, 319, NULL, 7750, '1670', 'CALPOL 2+', NULL, '33.9800', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.9400', '0.0000', '2021-12-28', 'received', '33.9800', '33.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (44761, NULL, NULL, 3038, '', '', 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 (44762, NULL, NULL, 9551, '', '', 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 (44763, NULL, NULL, 3059, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (44764, 320, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.9400', '5.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5200', '2.0000', '2021-12-28', 'received', '3.9400', '3.9400', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '3.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 (44765, 320, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8700', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4000', '16.0000', '2021-12-28', 'received', '1.8700', '1.8700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (44766, 320, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.1400', '5.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.0000', '32.0000', '2021-12-28', 'received', '3.1400', '3.1400', '50.0000', NULL, NULL, 1, 'pc', '50.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 (44767, 320, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.8400', '4.0000', '150.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '426.0000', '108.0000', '2021-12-28', 'received', '2.8400', '2.8400', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '2.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 (44768, 320, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '7.9000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '0.0000', '2021-12-28', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44769, 320, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.4000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2021-12-28', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (44770, 320, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '14.7500', '19.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '3.0000', '2021-12-28', 'received', '14.7500', '14.7500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (44771, 320, NULL, 7687, '1607', 'CALPOL 6+', NULL, '39.5800', '52.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '237.4800', '5.0000', '2021-12-28', 'received', '39.5800', '39.5800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '39.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 (44772, 320, NULL, 2624, '71356473', 'POLAR ICE', NULL, '14.8500', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.2500', '3.0000', '2021-12-28', 'received', '14.8500', '14.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (44773, 320, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.4500', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '0.0000', '2021-12-28', 'received', '5.4500', '5.4500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (44774, 320, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.0200', '37.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.1000', '1.0000', '2021-12-28', 'received', '28.0200', '28.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.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 (44775, 320, NULL, 7447, '1367', 'STREPSILS ORG', NULL, '0.9000', '2.0000', '120.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '80.0000', '2021-12-28', '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 (44776, 320, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.8100', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0500', '3.0000', '2021-12-28', 'received', '3.8100', '3.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (44777, 320, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '32.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '3.0000', '2021-12-28', '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 (44778, 320, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.6700', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3400', '2.0000', '2021-12-28', 'received', '23.6700', '23.6700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (44779, 320, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.7600', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2800', '2.0000', '2021-12-28', 'received', '19.7600', '19.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (44780, 320, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.2600', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.3000', '5.0000', '2021-12-28', 'received', '14.2600', '14.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (44781, 320, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '38.0000', '2021-12-28', '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 (44782, 320, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '12.0200', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.1000', '4.0000', '2021-12-28', 'received', '12.0200', '12.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (44783, 320, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '53.3500', '71.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0500', '2.0000', '2021-12-28', 'received', '53.3500', '53.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '53.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 (44784, 320, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '8.8900', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4500', '3.0000', '2021-12-28', 'received', '8.8900', '8.8900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (44785, 320, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8800', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '4.0000', '2021-12-28', 'received', '11.8800', '11.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (44786, 320, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '6.5800', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9000', '5.0000', '2021-12-28', 'received', '6.5800', '6.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (44787, 320, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '17.0000', '2021-12-28', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (44788, 320, NULL, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '33.7600', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2800', '0.0000', '2021-12-28', 'received', '33.7600', '33.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (44789, 320, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '3.2200', '4.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.1600', '0.0000', '2021-12-28', 'received', '3.2200', '3.2200', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.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 (44790, 320, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '0.0000', '2021-12-28', 'received', '2.7200', '2.7200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (44791, 320, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '75.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '73.0000', '2021-12-28', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (44792, 320, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.2000', '25.0000', '2021-12-28', 'received', '7.0300', '7.0300', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '7.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 (44793, 320, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2000', '5.0000', '2021-12-28', 'received', '15.0400', '15.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (44794, 320, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.9600', '2.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '13.0000', '2021-12-28', 'received', '1.9600', '1.9600', '15.0000', NULL, NULL, 1, 'pc', '15.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 (44795, 320, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2021-12-28', '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 (44796, 320, NULL, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', NULL, '21.5800', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.1600', '2.0000', '2021-12-28', 'received', '21.5800', '21.5800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (44797, 320, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '0.8300', '2.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '99.0000', '2021-12-28', 'received', '0.8300', '0.8300', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (44798, NULL, NULL, 7906, '', '', 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 (44799, NULL, NULL, 9356, '', '', 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 (44800, NULL, NULL, 1555, '', '', 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 (44801, NULL, NULL, 2560, '', '', 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 (44802, NULL, NULL, 8833, '', '', 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 (44803, NULL, NULL, 9508, '', '', 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 (44804, NULL, NULL, 7427, '', '', 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 (44805, NULL, NULL, 8876, '', '', 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 (44806, NULL, NULL, 8532, '', '', 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 (44807, NULL, NULL, 9642, '', '', 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 (44808, NULL, NULL, 8052, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (44809, NULL, NULL, 2311, '', '', 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 (44810, NULL, NULL, 9713, '', '', 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 (44811, NULL, NULL, 7535, '', '', 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 (44812, NULL, NULL, 1944, '', '', 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 (44813, NULL, NULL, 9626, '', '', 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 (44814, NULL, NULL, 2860, '', '', 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 (44815, NULL, NULL, 7536, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-42.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44960, NULL, NULL, 9512, '', '', 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 (44961, NULL, NULL, 8750, '', '', 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 (44962, NULL, NULL, 8679, '', '', 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 (44963, NULL, NULL, 3056, '', '', 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 (44964, NULL, NULL, 2570, '', '', 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 (44965, NULL, NULL, 7614, '', '', 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 (44966, NULL, NULL, 9697, '', '', 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 (44967, NULL, NULL, 7975, '', '', 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 (44968, NULL, NULL, 8498, '', '', 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 (44969, NULL, NULL, 8224, '', '', 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 (44970, NULL, NULL, 2491, '', '', 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 (44971, NULL, NULL, 9693, '', '', 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 (44972, NULL, NULL, 7770, '', '', 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 (44973, NULL, NULL, 1875, '', '', 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 (44974, NULL, NULL, 1420, '', '', 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 (44975, NULL, NULL, 7464, '', '', 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 (44976, NULL, NULL, 9273, '', '', 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 (44977, NULL, NULL, 8805, '', '', 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 (44978, NULL, NULL, 8872, '', '', 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 (45041, NULL, NULL, 7360, '', '', 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 (45042, NULL, NULL, 7706, '', '', 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 (45043, NULL, NULL, 8065, '', '', 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 (45044, NULL, NULL, 9406, '', '', 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 (45045, NULL, NULL, 8339, '', '', 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 (45046, NULL, NULL, 2001, '', '', 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 (45047, NULL, NULL, 7884, '', '', 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 (45048, NULL, NULL, 8729, '', '', 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 (45049, NULL, NULL, 1446, '', '', 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 (45050, NULL, NULL, 8277, '', '', 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 (45051, NULL, NULL, 7478, '', '', 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 (45052, NULL, NULL, 8393, '', '', 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 (45053, NULL, NULL, 9714, '', '', 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 (45054, NULL, NULL, 9714, '', '', 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 (45055, NULL, NULL, 8944, '', '', 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 (45056, NULL, NULL, 1387, '', '', 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 (45057, NULL, NULL, 1331, '', '', 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 (45058, NULL, NULL, 1843, '', '', 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 (45059, NULL, NULL, 8064, '', '', 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 (45060, NULL, NULL, 7729, '', '', 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 (45061, NULL, NULL, 1688, '', '', 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 (45062, NULL, NULL, 7694, '', '', 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 (45063, NULL, NULL, 2332, '', '', 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 (45064, NULL, NULL, 8145, '', '', 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 (45065, NULL, NULL, 3085, '', '', 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 (45066, NULL, NULL, 8913, '', '', 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 (45067, NULL, NULL, 9663, '', '', 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 (45068, 324, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '5.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-01-04', 'received', '3.8000', '3.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (45069, 324, NULL, 9508, '43167014', 'SIMPLE LINTUS ADULT COUGH', NULL, '3.4500', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2500', '3.0000', '2022-01-04', 'received', '3.4500', '3.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (45070, 324, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.1000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '2.0000', '2022-01-04', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (45071, 324, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.5700', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.8500', '4.0000', '2022-01-04', 'received', '8.5700', '8.5700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (45072, 324, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.7000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.7000', '1.0000', '2022-01-04', 'received', '1.7000', '1.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (45073, 324, NULL, 2060, '54947392', 'PARACETAMOL TAB LOCAL', NULL, '0.5600', '0.8000', '300.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '247.0000', '2022-01-04', 'received', '0.5600', '0.5600', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '0.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 (45074, 324, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '27.7000', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.1000', '2.0000', '2022-01-04', 'received', '27.7000', '27.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.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 (45075, 324, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '7.0000', '2022-01-04', '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 (45076, 324, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '372.0000', '9.0000', '2022-01-04', 'received', '37.2000', '37.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '37.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 (45077, 324, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '3.0000', '2022-01-04', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (45078, 324, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '2.0000', '2022-01-04', '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 (45079, 324, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.5000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '5.0000', '2022-01-04', '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 (45080, 324, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '4.4000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-01-04', '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 (45081, 324, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '5.0000', '2022-01-04', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45082, 324, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '7.0000', '2022-01-04', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (45083, 324, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '1.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '2.0000', '2022-01-04', '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 (45084, 324, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '21.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '5.0000', '2022-01-04', 'received', '16.1000', '16.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45085, 324, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '21.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-01-04', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45086, 324, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '85.7700', '113.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '428.8500', '3.0000', '2022-01-04', 'received', '85.7700', '85.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '85.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 (45087, 324, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.8500', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2500', '4.0000', '2022-01-04', 'received', '6.8500', '6.8500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45088, 324, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '8.2000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '4.0000', '2022-01-04', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45089, 324, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '21.0000', '2022-01-04', '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 (45090, 324, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '17.0000', '2022-01-04', 'received', '2.3500', '2.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (45091, 324, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.4600', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '35.0000', '2022-01-04', 'received', '0.4600', '0.4600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (45092, 324, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-01-04', '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 (45093, 324, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4200', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '39.0000', '2022-01-04', '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 (45094, 324, NULL, 1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', NULL, '29.0000', '38.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '1.0000', '2022-01-04', 'received', '29.0000', '29.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (45095, 324, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '40.0300', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0300', '1.0000', '2022-01-04', 'received', '40.0300', '40.0300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '40.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 (45100, 325, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '5.0000', '2022-01-04', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45101, 325, NULL, 8648, '2568', 'TINATTET EYE', NULL, '14.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-01-04', '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 (45102, 325, NULL, 8648, '2568', 'TINATTET EYE', NULL, '14.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-01-04', '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 (45103, 325, NULL, 2954, '42250057', 'BE4 BE4 INSTANT', NULL, '27.0000', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '5.0000', '2022-01-04', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45104, 325, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-01-04', '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 (45105, 325, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '2.4500', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.2500', '1.0000', '2022-01-04', 'received', '2.4500', '2.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (45106, 325, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9500', '5.0000', '2022-01-04', 'received', '5.5900', '5.5900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45107, 325, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '15.4000', '20.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '3.0000', '2022-01-04', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (45108, 325, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.4000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '2.0000', '2022-01-04', 'received', '16.4000', '16.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45109, 325, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '48.0000', '64.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '3.0000', '2022-01-04', 'received', '48.0000', '48.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45110, 325, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '36.0000', '2022-01-04', 'received', '2.9200', '2.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (45111, 325, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2022-01-04', '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 (45112, 325, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '77.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-01-04', '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 (45113, 325, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-04', '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 (45114, 325, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-04', '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 (45115, 325, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.7000', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '25.0000', '2022-01-04', 'received', '1.7000', '1.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45116, 325, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.4000', '4.0000', '2022-01-04', 'received', '14.2800', '14.2800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45117, 325, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '2.0000', '2022-01-04', '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 (45118, 325, 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', '14.0000', '2022-01-04', '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 (45119, 325, NULL, 1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', NULL, '12.0000', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '7.0000', '2022-01-04', '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 (45120, 325, NULL, 1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', NULL, '29.0000', '38.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '2.0000', '2022-01-04', '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 (45121, 325, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.3500', '5.0000', '2022-01-04', 'received', '12.0700', '12.0700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45122, 325, NULL, 2695, '26196799', 'ANAFRANIL TAB', NULL, '2.0000', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '42.0000', '2022-01-04', '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 (45123, 325, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.8000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-01-04', '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 (45124, 325, NULL, 7447, '1367', 'STREPSILS ORG', NULL, '1.3000', '2.0000', '120.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '120.0000', '2022-01-04', 'received', '1.3000', '1.3000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (45125, 325, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.9800', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '3.0000', '2022-01-04', 'received', '6.9800', '6.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (45126, 325, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.1000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '9.0000', '2022-01-04', 'received', '1.1000', '1.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45127, 325, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '2.0000', '2022-01-04', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45128, 325, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '3.0000', '2022-01-04', '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 (45129, 325, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '8.7500', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.5000', '8.0000', '2022-01-04', '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 (45130, 325, NULL, 8418, '2338', 'LACTULOSE 500ML', NULL, '35.1900', '46.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.5700', '3.0000', '2022-01-04', 'received', '35.1900', '35.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (45131, 325, NULL, 2847, '13076232', 'SILVER BIRD', NULL, '14.5000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '2.0000', '2022-01-04', '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 (45132, 325, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '14.0000', '2022-01-04', '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 (45133, 325, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '19.0000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '5.0000', '2022-01-04', '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 (45134, 325, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '60.0000', '2022-01-04', 'received', '2.3500', '2.3500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (45135, 325, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '19.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '2.0000', '2022-01-04', 'received', '14.8000', '14.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45136, 325, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '125.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '69.0000', '2022-01-04', 'received', '1.3600', '1.3600', '125.0000', NULL, NULL, 1, 'pc', '125.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 (45137, 325, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2022-01-04', '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 (45138, 325, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.6500', '2.2000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '0.0000', '2022-01-04', 'received', '1.6500', '1.6500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (45139, 325, NULL, 9399, '3319', 'LETACAM (PIROXICAM)', NULL, '0.9800', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '16.0000', '2022-01-04', '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 (45140, 325, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '8.1000', '11.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2000', '1.0000', '2022-01-04', 'received', '8.1000', '8.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (45141, 325, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '9.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-01-04', '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 (45142, 323, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2021-12-31', '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 (45143, 323, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.6000', '7.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4000', '4.0000', '2021-12-31', 'received', '5.6000', '5.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45144, 323, NULL, 3023, '83478580', 'MALIN JUNIOR', NULL, '5.4600', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3800', '2.0000', '2021-12-31', 'received', '5.4600', '5.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (45145, 323, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4900', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4700', '1.0000', '2021-12-31', 'received', '5.4900', '5.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (45146, 323, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.9800', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '0.0000', '2021-12-31', 'received', '6.9800', '6.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (45147, 323, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '34.0000', '48.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-12-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 (45148, 323, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '5.2000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2021-12-31', '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 (45149, 323, NULL, 2267, '52018792', 'KIDICS SYRUP', NULL, '9.5000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '2.0000', '2021-12-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 (45150, 323, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.9800', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '2.0000', '2021-12-31', '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 (45151, 323, NULL, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', NULL, '10.4600', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3800', '3.0000', '2021-12-31', 'received', '10.4600', '10.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (45152, 323, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2021-12-31', '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 (45153, 323, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '27.0000', '42.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-12-31', '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 (45154, 323, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '11.8700', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.3500', '0.0000', '2021-12-31', 'received', '11.8700', '11.8700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45155, 323, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9400', '0.0000', '2021-12-31', '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 (45156, 323, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '21.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '1.0000', '2021-12-31', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45157, 323, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2021-12-31', '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 (45158, 323, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.6600', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.9800', '0.0000', '2021-12-31', 'received', '7.6600', '7.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (45159, 323, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.0000', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-12-31', '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 (45160, 323, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.7800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '47.0000', '2021-12-31', 'received', '0.7800', '0.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45161, 323, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '8.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-12-31', '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 (45162, 323, NULL, 7930, '1850', 'WORMBASE SUSP', NULL, '1.3000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '19.0000', '2021-12-31', 'received', '1.3000', '1.3000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (45163, 323, NULL, 8039, '1959', 'ACIDOM', NULL, '12.9000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2021-12-31', 'received', '12.9000', '12.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (45164, 323, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '0.0000', '2021-12-31', 'received', '1.8500', '1.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.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 (45165, 323, NULL, 8457, '2377', 'CARTEF SUSP', NULL, '4.5000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2021-12-31', '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 (45166, 323, NULL, 8454, '2374', 'SHALATERM TAB', NULL, '4.1500', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2021-12-31', 'received', '4.1500', '4.1500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (45167, 323, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '1.0000', '2021-12-31', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45168, 323, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '3.0000', '2021-12-31', '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 (45169, 323, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.5000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-12-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 (45170, 323, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-12-31', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45171, 323, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-12-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 (45172, 323, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.0000', '47.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-12-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 (45173, 323, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '0.0000', '2021-12-31', '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 (45174, 323, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.4000', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-12-31', 'received', '0.4000', '0.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (45175, 323, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '0.0000', '2021-12-31', '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 (45176, 323, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2021-12-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 (45177, 323, NULL, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '30.0000', '43.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-12-31', '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 (45178, 323, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2300', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7600', '7.0000', '2021-12-31', 'received', '4.2300', '4.2300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (45179, 323, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '8.4600', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3800', '0.0000', '2021-12-31', 'received', '8.4600', '8.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (45180, 323, NULL, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '5.2300', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.9200', '2.0000', '2021-12-31', 'received', '5.2300', '5.2300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45181, 323, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '6.2000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '3.0000', '2021-12-31', '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 (45182, 323, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-12-31', '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 (45183, 323, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '12.0000', '19.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-12-31', '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 (45184, 323, NULL, 7666, '1586', 'DYMOL TAB', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-12-31', '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 (45185, 323, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-12-31', '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 (45186, 323, NULL, 8481, '2401', 'PIRITON ORG SRP', NULL, '33.0000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-12-31', '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 (45187, 323, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '5.7200', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '2.0000', '2021-12-31', 'received', '5.7200', '5.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (45188, 323, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-12-31', '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 (45189, 323, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.6000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-12-31', '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 (45190, 323, NULL, 2282, '40904860', 'SOVIT VIT E CAPS', NULL, '18.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-12-31', '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 (45191, 323, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9200', '1.0000', '2021-12-31', 'received', '14.9800', '14.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (45192, 323, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.6500', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '2.0000', '2021-12-31', 'received', '9.6500', '9.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (45193, 323, NULL, 7961, '1881', 'JARIFAN 2 SRP', NULL, '10.5600', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.6800', '1.0000', '2021-12-31', 'received', '10.5600', '10.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (45194, 323, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2021-12-31', '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 (45195, 323, NULL, 7411, '1331', 'CITRO C', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-12-31', '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 (45196, 323, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-12-31', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45197, 323, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.5000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '3.0000', '2021-12-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 (45198, 323, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '0.0000', '2021-12-31', '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 (45199, 323, NULL, 8341, '2261', 'APTIZOOM', NULL, '32.0000', '42.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-12-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 (45200, 323, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0200', '5.0000', '2021-12-31', '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 (45201, 323, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2021-12-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 (45202, 323, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-12-31', 'received', '10.5000', '10.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45203, 323, NULL, 7708, '1628', 'TEEDAR', NULL, '6.5000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-12-31', '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 (45204, 323, NULL, 9718, '64620536', 'AMINO PEP 200ML', NULL, '13.3000', '17.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '2.0000', '2021-12-31', '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 (45205, 323, NULL, 9717, '59692164', 'DAWN OF LIFE  200ML', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '1.0000', '2021-12-31', '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 (45206, NULL, NULL, 1384, '', '', 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 (45207, NULL, NULL, 8466, '', '', 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 (45208, NULL, NULL, 2472, '', '', 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 (45209, NULL, NULL, 7375, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45210, NULL, NULL, 9458, '', '', 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 (45211, NULL, NULL, 3025, '', '', 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 (45212, NULL, NULL, 9715, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (45213, NULL, NULL, 2097, '', '', 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 (45214, NULL, NULL, 8931, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (45215, NULL, NULL, 9292, '', '', 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 (45216, NULL, NULL, 7638, '', '', 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 (45217, NULL, NULL, 9715, '', '', 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 (45218, NULL, NULL, 2678, '', '', 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 (45219, NULL, NULL, 7707, '', '', 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 (45220, NULL, NULL, 8711, '', '', 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 (45221, NULL, NULL, 1760, '', '', 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 (45222, NULL, NULL, 1351, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (45223, NULL, NULL, 2750, '', '', 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 (45264, 328, NULL, 8759, '2679', 'FRUTELLI', NULL, '9.0000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-01-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 (45265, 328, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '3.1000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '4.0000', '2022-01-05', 'received', '3.1000', '3.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (45266, 328, NULL, 9469, '40088756', 'PANACHE', NULL, '3.1000', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-01-05', 'received', '3.1000', '3.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45267, 328, NULL, 8767, '2687', 'KISS DRINK', NULL, '7.1000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2022-01-05', 'received', '7.1000', '7.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45268, 328, NULL, 8744, '2664', 'CANNED MALT', NULL, '3.6600', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '4.0000', '2022-01-05', 'received', '3.6600', '3.6600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (45269, 328, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '12.9000', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.4000', '0.0000', '2022-01-05', 'received', '12.9000', '12.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45270, 328, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '4.8300', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9800', '0.0000', '2022-01-05', 'received', '4.8300', '4.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (45271, 328, NULL, 8188, '2108', 'VOLTIC M/S', NULL, '0.9300', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9500', '4.0000', '2022-01-05', 'received', '0.9300', '0.9300', '15.0000', NULL, NULL, 1, 'pc', '15.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 (45272, 328, NULL, 8774, '2694', 'VOLTIC B/S', NULL, '2.3000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2022-01-05', 'received', '2.3000', '2.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45273, 328, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0500', '4.0000', '2022-01-05', 'received', '0.8700', '0.8700', '15.0000', NULL, NULL, 1, 'pc', '15.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 (45274, 328, NULL, 8745, '2665', 'DON SIMON', NULL, '9.0000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-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 (45275, 328, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '5.0000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-01-05', 'received', '5.0000', '5.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45276, 328, NULL, 8743, '2663', 'CERES DRINK', NULL, '11.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-01-05', '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 (45277, 328, NULL, 8982, '2902', 'CRANBERRY', NULL, '11.0000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-01-05', '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 (45278, 328, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-05', '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 (45279, 328, NULL, 8933, '2853', 'RED BULL', NULL, '8.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-05', '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 (45280, 328, NULL, 9213, '3133', 'ROX DRINKS', NULL, '5.6000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2022-01-05', 'received', '5.6000', '5.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45281, 328, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-01-05', 'received', '3.0000', '3.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (45282, 328, NULL, 8761, '2681', 'VITRAC', NULL, '12.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-05', '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 (45283, 328, NULL, 9699, '95396298', 'HOLLANDIA DRINK S/S', NULL, '5.0000', '6.5000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-01-05', '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 (45284, 328, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '38.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '1.0000', '2022-01-05', 'received', '34.0000', '34.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45285, 328, NULL, 2231, '7501058633927', 'NAN 2', NULL, '34.0000', '38.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '0.0000', '2022-01-05', 'received', '34.0000', '34.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45286, 328, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '5.0000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-01-05', '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 (45287, 328, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.1600', '4.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9200', '0.0000', '2022-01-05', 'received', '3.1600', '3.1600', '12.0000', NULL, NULL, 1, 'pc', '12.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 (45288, 329, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '15.0000', '25.0000', '22.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '0.0000', '2022-01-05', 'received', '15.0000', '15.0000', '22.0000', NULL, NULL, 1, 'pc', '22.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 (45289, 329, NULL, 7415, '1335', 'CONGESTYL TAB', NULL, '6.0000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-01-05', '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 (45290, 329, NULL, 9097, '3017', 'CD CAPS', NULL, '22.0000', '29.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-01-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 (45291, 329, NULL, 7817, '1737', 'ADOM W,G CAPS', NULL, '14.0000', '18.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-01-05', '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 (45292, 329, NULL, 7369, '1289', 'BONGELA CHILD', NULL, '33.0000', '44.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-01-05', '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 (45293, 329, NULL, 8520, '2440', 'SALBUTAMOL CFC INH', NULL, '18.9800', '28.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9600', '2.0000', '2022-01-05', 'received', '18.9800', '18.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (45294, 329, NULL, 7778, '1698', 'BECOATIN SRP', NULL, '9.0000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-05', '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 (45295, 329, NULL, 9293, '3213', 'GACET 500MG', NULL, '1.3500', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '8.0000', '2022-01-05', 'received', '1.3500', '1.3500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45296, 329, NULL, 7658, '1578', 'DICLO DENK SUPP', NULL, '2.0200', '2.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.0000', '0.0000', '2022-01-05', 'received', '2.0200', '2.0200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (45297, 329, NULL, 7981, '1901', 'GACET 250', NULL, '0.6400', '1.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2022-01-05', 'received', '0.6400', '0.6400', '60.0000', NULL, NULL, 1, 'pc', '60.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 (45298, 329, NULL, 7980, '1900', 'GACET 125', NULL, '0.5000', '0.7000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-05', 'received', '0.5000', '0.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (45299, 329, NULL, 7344, '1264', 'PARA DENK250 SUPPO', NULL, '1.5400', '2.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '0.0000', '2022-01-05', 'received', '1.5400', '1.5400', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (45300, 329, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '1.9000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '60.0000', '2022-01-05', 'received', '1.4000', '1.4000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (45301, 329, NULL, 7697, '1617', 'LADINAS', NULL, '4.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-05', '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 (45302, 329, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '2.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-01-05', 'received', '1.3000', '1.3000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (45303, 329, NULL, 8328, '2248', 'GOFEX', NULL, '8.1000', '11.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2000', '0.0000', '2022-01-05', 'received', '8.1000', '8.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (45304, 329, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '29.1700', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.3400', '1.0000', '2022-01-05', 'received', '29.1700', '29.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (45305, 329, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '6.3600', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.6000', '0.0000', '2022-01-05', 'received', '6.3600', '6.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45306, 329, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.7000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '3.0000', '2022-01-05', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45307, 329, NULL, 8305, '2225', 'CABOZAP ADULT', NULL, '5.1500', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7500', '5.0000', '2022-01-05', 'received', '5.1500', '5.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (45308, 329, NULL, 8194, '2114', 'MALIN JUNIOR', NULL, '5.4600', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '3.0000', '2022-01-05', 'received', '5.4600', '5.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (45309, 329, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-01-05', 'received', '14.8000', '14.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45310, 329, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '9.2000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '3.0000', '2022-01-05', 'received', '9.2000', '9.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45311, 329, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-05', '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 (45312, 329, NULL, 7583, '1503', 'DICLOLEX TAB', NULL, '0.7500', '0.9900', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '28.0000', '2022-01-05', 'received', '0.7500', '0.7500', '40.0000', NULL, NULL, 1, 'pc', '40.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 (45313, 329, NULL, 7335, '1255', 'NEO HYCOLEX5ML', NULL, '13.5000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-01-05', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45314, 329, NULL, 7671, '1591', 'PARA UK', NULL, '1.7000', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-01-05', 'received', '1.7000', '1.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (45315, 329, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '5.0000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-05', '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 (45316, 329, NULL, 8039, '1959', 'ACIDOM', NULL, '12.9000', '17.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.4000', '0.0000', '2022-01-05', 'received', '12.9000', '12.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45317, 329, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.0000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-01-05', '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 (45318, 329, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '12.8300', '18.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.4700', '0.0000', '2022-01-05', 'received', '12.8300', '12.8300', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '12.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 (45319, 329, NULL, 7800, '1720', 'CLOMID 50', NULL, '4.9000', '7.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '0.0000', '2022-01-05', 'received', '4.9000', '4.9000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (45320, 329, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.4000', '37.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.4000', '0.0000', '2022-01-05', 'received', '28.4000', '28.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '28.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 (45321, 329, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.8000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2022-01-05', 'received', '5.8000', '5.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45322, 329, NULL, 7386, '1306', 'CORORANGE HAEMATINIC CAPS SOFTGELS', NULL, '8.2000', '11.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2000', '0.0000', '2022-01-05', 'received', '8.2000', '8.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (45323, 329, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '18.5000', '24.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.5000', '0.0000', '2022-01-05', 'received', '18.5000', '18.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45324, 329, NULL, 1895, 'PR-608', 'Mayfer Sup', NULL, '7.5400', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.6200', '0.0000', '2022-01-05', '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 (45325, 329, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.7500', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.7500', '0.0000', '2022-01-05', 'received', '8.7500', '8.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45326, 329, NULL, 7375, '1295', 'AXACEF 500', NULL, '3.9300', '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.5000', '0.0000', '2022-01-05', 'received', '3.9300', '3.9300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (45327, 329, NULL, 7757, '1677', 'ZINNAT 500', NULL, '88.3300', '117.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.6600', '0.0000', '2022-01-05', 'received', '88.3300', '88.3300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '88.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 (45328, 329, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.8000', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '5.0000', '2022-01-05', 'received', '15.8000', '15.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45329, 329, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '43.0000', '57.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '258.0000', '0.0000', '2022-01-05', 'received', '43.0000', '43.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45330, 329, NULL, 8106, '2026', 'CRESTOR 10', NULL, '3.2500', '4.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0000', '12.0000', '2022-01-05', 'received', '3.2500', '3.2500', '28.0000', NULL, NULL, 1, 'pc', '28.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 (45331, 329, NULL, 8277, '2197', 'ATENOLOL 50', NULL, '8.5000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-01-05', '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 (45332, 329, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '11.0000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-01-05', '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 (45333, 329, NULL, 7965, '1885', 'EXFORGE 10/160', NULL, '5.6100', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.0800', '0.0000', '2022-01-05', 'received', '5.6100', '5.6100', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '5.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 (45334, 329, NULL, 7433, '1353', 'ZESTRIL 20MG', NULL, '4.6000', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.8000', '0.0000', '2022-01-05', 'received', '4.6000', '4.6000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (45335, 329, NULL, 7482, '1402', 'MAXMOX 500', NULL, '3.2500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-05', 'received', '3.2500', '3.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (45336, 329, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '6.0000', '8.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-01-05', '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 (45337, 329, NULL, 7853, '1773', 'BELLS VIT C', NULL, '13.0000', '17.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-01-05', '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 (45338, 329, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '44.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0600', '3.0000', '2022-01-05', 'received', '33.0200', '33.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (45339, 329, NULL, 7715, '1635', 'MALARIA TEST KIT', NULL, '3.8000', '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.0000', '24.0000', '2022-01-05', 'received', '3.8000', '3.8000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45340, 329, NULL, 7804, '1724', 'AMOXYCILLIN 250 BLISS', NULL, '1.0200', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '46.0000', '2022-01-05', 'received', '1.0200', '1.0200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (45341, 329, NULL, 7442, '1362', 'CASTOR OIL', NULL, '10.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-01-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 (45342, 329, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-01-05', '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 (45343, 329, NULL, 7465, '1385', 'RHINATHIOL INFANT PINK', NULL, '20.2400', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '3.0000', '2022-01-05', 'received', '20.2400', '20.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45344, 329, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '0.0000', '2022-01-05', '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 (45345, 329, NULL, 8445, '2365', 'ROOTER LIFE', NULL, '35.0000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '1.0000', '2022-01-05', '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 (45346, 329, NULL, 7833, '1753', 'PROSTAFIT', NULL, '18.0000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-05', '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 (45347, 329, NULL, 7551, '1471', 'CARBAMAZIPINE', NULL, '4.0000', '5.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-01-05', '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 (45399, NULL, NULL, 7362, '', '', 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 (45400, NULL, NULL, 7638, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (45401, NULL, NULL, 3054, '', '', 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 (45402, NULL, NULL, 1762, '', '', 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 (45403, NULL, NULL, 7830, '', '', 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 (45404, NULL, NULL, 8731, '', '', 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 (45405, NULL, NULL, 1510, '', '', 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 (45406, NULL, NULL, 7928, '', '', 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 (45407, NULL, NULL, 8469, '', '', 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 (45426, NULL, NULL, 1350, '', '', 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 (45427, NULL, NULL, 2427, '', '', 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 (45428, 331, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-01-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 (45429, 331, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7200', '0.0000', '2022-01-05', '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 (45430, 331, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.3600', '2.0000', '2022-01-05', '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 (45431, 331, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8000', '0.0000', '2022-01-05', 'received', '1.8800', '1.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (45432, 331, NULL, 7370, '1290', 'BELLS BABY COUGH', NULL, '12.1100', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3300', '2.0000', '2022-01-05', 'received', '12.1100', '12.1100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (45433, 331, NULL, 2570, '24041017', 'GOLDY SUSP', NULL, '7.4900', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4500', '4.0000', '2022-01-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 (45434, 331, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '7.0500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.1500', '1.0000', '2022-01-05', 'received', '7.0500', '7.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (45435, 331, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.6500', '13.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.3000', '1.0000', '2022-01-05', 'received', '9.6500', '9.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (45436, 331, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '9.2200', '12.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4400', '0.0000', '2022-01-05', 'received', '9.2200', '9.2200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (45437, 331, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '12.0200', '17.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0400', '2.0000', '2022-01-05', 'received', '12.0200', '12.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (45438, 331, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-05', '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 (45439, 331, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '18.2100', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4200', '0.0000', '2022-01-05', '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 (45440, 331, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2022-01-05', '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 (45441, 331, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.8000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2022-01-05', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45442, 331, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '8.4300', '11.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.7200', '0.0000', '2022-01-05', 'received', '8.4300', '8.4300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.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 (45443, 331, NULL, 1305, 'PR-18', 'BASEKOF SYR', NULL, '5.2000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '4.0000', '2022-01-05', 'received', '5.2000', '5.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45444, 331, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '27.7000', '37.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.1000', '1.0000', '2022-01-05', 'received', '27.7000', '27.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.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 (45445, 331, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.0000', '14.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2022-01-05', '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 (45446, 331, NULL, 9719, '18063155', 'LOPERAMINE CAPS FALOPSTIN', NULL, '0.6000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '10.0000', '2022-01-05', 'received', '0.6000', '0.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45447, 331, NULL, 2574, '24484092', 'DUCOLAX TABS 5MG 20\'S', NULL, '1.1300', '1.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2000', '40.0000', '2022-01-05', 'received', '1.1300', '1.1300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (45448, NULL, NULL, 1846, '', '', 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 (45449, NULL, NULL, 8247, '', '', 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 (45450, NULL, NULL, 1510, '', '', 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 (45451, NULL, NULL, 2651, '', '', 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 (45452, NULL, NULL, 9109, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45453, NULL, NULL, 8528, '', '', 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 (45454, NULL, NULL, 2274, '', '', 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 (45455, NULL, NULL, 8229, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (45456, NULL, NULL, 2982, '', '', 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 (45457, NULL, NULL, 9715, '', '', 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 (45458, NULL, NULL, 9608, '', '', 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 (45575, 330, NULL, 7509, '1429', 'ROOTER', NULL, '6.4000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-01-05', 'received', '6.4000', '6.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45576, 330, NULL, 7675, '1595', 'GEBEDOL EXTRA', NULL, '2.4000', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-01-05', '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 (45577, 330, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-01-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 (45578, 330, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '0.0000', '2022-01-05', 'received', '0.5300', '0.5300', '100.0000', NULL, NULL, 1, 'pc', '100.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 (45579, 330, NULL, 8918, '2838', 'APC 10*10', NULL, '1.0400', '1.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '6.0000', '2022-01-05', 'received', '1.0400', '1.0400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (45580, 330, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.4500', '0.6000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.7500', '59.0000', '2022-01-05', 'received', '0.4500', '0.4500', '75.0000', NULL, NULL, 1, 'pc', '75.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 (45581, 330, NULL, 7736, '1656', 'NUGEL -O', NULL, '16.7000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '0.0000', '2022-01-05', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45582, 330, NULL, 9245, '3165', 'POLYGEL SUSP 200ML', NULL, '6.6100', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0500', '4.0000', '2022-01-05', 'received', '6.6100', '6.6100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (45583, 330, NULL, 7798, '1718', 'STARWIN B/S', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '0.0000', '2022-01-05', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (45584, 330, NULL, 8925, '2845', 'MMT', NULL, '2.4000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-01-05', '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 (45585, 330, NULL, 7859, '1779', 'KOFLET', NULL, '12.8900', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4500', '0.0000', '2022-01-05', 'received', '12.8900', '12.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (45586, 330, NULL, 9445, '51778713', 'KOFFEX A', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-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 (45587, 330, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '4.6000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '3.0000', '2022-01-05', '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 (45588, 330, NULL, 9508, '43167014', 'SIMPLE LINTUS ADULT COUGH', NULL, '3.4500', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2500', '0.0000', '2022-01-05', 'received', '3.4500', '3.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (45589, 330, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '9.7000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.5000', '2.0000', '2022-01-05', 'received', '9.7000', '9.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (45590, 330, NULL, 8084, '2004', 'METROLEX F SUSP', NULL, '12.7000', '17.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7000', '0.0000', '2022-01-05', 'received', '12.7000', '12.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (45591, 330, NULL, 7748, '1668', 'VIROL', NULL, '6.8500', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '0.0000', '2022-01-05', '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 (45592, 330, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '10.0000', '2022-01-05', 'received', '1.9700', '1.9700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45593, 330, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8000', '1.0000', '2022-01-05', 'received', '9.4000', '9.4000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '9.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 (45594, 330, NULL, 7708, '1628', 'TEEDAR', NULL, '6.6600', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.3000', '0.0000', '2022-01-05', 'received', '6.6600', '6.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (45595, 330, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '291.6000', '0.0000', '2022-01-05', 'received', '14.5800', '14.5800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (45596, 330, NULL, 7780, '1700', 'LUFART TAB', NULL, '11.6000', '18.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.0000', '0.0000', '2022-01-05', 'received', '11.6000', '11.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (45597, 330, NULL, 8712, '2632', 'GUDAPET SRP', NULL, '7.0400', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.1200', '0.0000', '2022-01-05', '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 (45598, 330, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '28.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.9500', '0.0000', '2022-01-05', 'received', '21.6500', '21.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (45599, 330, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '1.8400', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '8.0000', '2022-01-05', 'received', '1.8400', '1.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (45600, 330, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '7.0000', '2022-01-05', '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 (45601, 330, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '1.9000', '2.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '4.0000', '2022-01-05', 'received', '1.9000', '1.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (45602, 330, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.9000', '6.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '4.0000', '2022-01-05', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (45603, 330, NULL, 7526, '1446', 'ZINCOVIT SRP', NULL, '14.0000', '18.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-01-05', '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 (45604, 330, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '0.0000', '2022-01-05', 'received', '2.7200', '2.7200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45605, 330, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '4.4000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-01-05', '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 (45606, 330, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2022-01-05', 'received', '0.7000', '0.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (45607, 330, NULL, 8454, '2374', 'SHALATERM TAB', NULL, '4.1500', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '0.0000', '2022-01-05', 'received', '4.1500', '4.1500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45620, 327, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.4000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2022-01-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 (45621, 327, NULL, 1583, '5060806420179', 'PROWOMAN DRINK 250ML', NULL, '5.8900', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.3400', '0.0000', '2022-01-05', 'received', '5.8900', '5.8900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45622, 327, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '9.6000', '13.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2022-01-05', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45623, 327, NULL, 8761, '2681', 'VITRAC', NULL, '12.0000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-01-05', '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 (45624, 327, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2022-01-05', '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 (45625, 327, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2022-01-05', '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 (45626, 327, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-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 (45627, 327, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-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 (45628, 327, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '38.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '3.0000', '2022-01-05', 'received', '34.0000', '34.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45629, 327, NULL, 2231, '7501058633927', 'NAN 2', NULL, '34.0000', '38.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '2.0000', '2022-01-05', 'received', '34.0000', '34.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45630, 327, NULL, 2566, '42135887', 'MILO TIN', NULL, '18.0000', '21.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-01-05', '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 (45631, 327, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '5.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2022-01-05', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45632, 334, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '1.0000', '2022-01-07', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (45633, 334, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '4.6000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '1.0000', '2022-01-07', '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 (45634, 334, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '19.0000', '2022-01-07', '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 (45635, 334, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '10.0000', '2022-01-07', '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 (45636, 334, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.4000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '6.0000', '2022-01-07', '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 (45637, 334, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '18.8100', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4300', '0.0000', '2022-01-07', 'received', '18.8100', '18.8100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (45638, 334, NULL, 9722, '09730188', 'MUCOSLY ADULT SYR 100ML', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-01-07', '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 (45639, 334, NULL, 9723, '60831092', 'MUCOSLY JNR SYR 100ML', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-01-07', '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 (45640, 334, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '5.0000', '2022-01-07', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (45641, 334, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-07', '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 (45642, 334, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-07', '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 (45643, 334, NULL, 9719, '18063155', 'LOPERAMINE CAPS FALOPSTIN', NULL, '0.6000', '1.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '10.0000', '2022-01-07', 'received', '0.6000', '0.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45644, 334, NULL, 2574, '24484092', 'DUCOLAX TABS 5MG 20\'S', NULL, '1.1300', '1.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2000', '16.0000', '2022-01-07', 'received', '1.1300', '1.1300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (45762, NULL, NULL, 9145, '', '', 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 (45763, NULL, NULL, 2341, '', '', 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 (45764, NULL, NULL, 9372, '', '', 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 (45765, NULL, NULL, 7751, '', '', 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 (45766, NULL, NULL, 8465, '', '', 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 (45767, 335, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '9.2000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '4.0000', '2022-01-07', 'received', '9.2000', '9.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45768, 335, NULL, 7770, '1690', 'LUEX BABY COUGH', NULL, '7.8200', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4600', '0.0000', '2022-01-07', '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 (45769, 335, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.9800', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.6000', '0.0000', '2022-01-07', 'received', '7.9800', '7.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (45770, 335, NULL, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '1.3800', '4.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '80.0000', '2022-01-07', '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 (45771, 335, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '3.8000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-01-07', '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 (45772, 335, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.0000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '1.0000', '2022-01-07', '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 (45773, 335, NULL, 9187, '3107', 'EPICROM 2%', NULL, '14.7400', '19.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4800', '0.0000', '2022-01-07', '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 (45774, 335, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '23.7600', '31.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5200', '1.0000', '2022-01-07', 'received', '23.7600', '23.7600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (45775, 335, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '16.0000', '21.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '1.0000', '2022-01-07', '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 (45776, 335, NULL, 7780, '1700', 'LUFART TAB', NULL, '11.6000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-01-07', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45777, 335, NULL, 9028, '2948', 'PROMETHAZINE SRUP', NULL, '3.4800', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8800', '0.0000', '2022-01-07', 'received', '3.4800', '3.4800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (45778, 335, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '3.6000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-01-07', '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 (45779, 335, NULL, 8454, '2374', 'SHALATERM TAB', NULL, '4.1500', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '0.0000', '2022-01-07', 'received', '4.1500', '4.1500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45780, 335, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-01-07', '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 (45781, 335, NULL, 8974, '2894', 'QUININE SRP', NULL, '5.4000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2000', '0.0000', '2022-01-07', 'received', '5.4000', '5.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45782, 335, NULL, 7633, '1553', 'CIPAC EYE DROP', NULL, '2.8700', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7000', '0.0000', '2022-01-07', 'received', '2.8700', '2.8700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45783, 335, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.0100', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0500', '3.0000', '2022-01-07', '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 (45784, 335, NULL, 8866, '2786', 'CHLOR EYE OINT', NULL, '0.4300', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.1500', '0.0000', '2022-01-07', 'received', '0.4300', '0.4300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '0.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 (45785, 335, NULL, 9167, '3087', 'NORMO TEARS EYE DROP', NULL, '12.0200', '17.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0200', '0.0000', '2022-01-07', 'received', '12.0200', '12.0200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.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 (45786, 335, NULL, 7335, '1255', 'NEO HYCOLEX5ML', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2022-01-07', '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 (45787, 335, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '9.7600', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '0.0000', '2022-01-07', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (45788, 335, NULL, 7632, '1552', 'CIPROLEX TAB', NULL, '11.0000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-01-07', '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 (45789, 335, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.8900', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.3400', '0.0000', '2022-01-07', 'received', '3.8900', '3.8900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (45790, 335, NULL, 8858, '2778', 'KEPTRILS LOZ', NULL, '3.5000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-01-07', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45791, 335, NULL, 7671, '1591', 'PARA UK', NULL, '1.7000', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-01-07', 'received', '1.7000', '1.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45792, 335, NULL, 1535, 'PR-248', 'PINEK XL 30MG TAB', NULL, '2.5000', '5.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '9.0000', '2022-01-07', 'received', '2.5000', '2.5000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (45793, 335, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '14.0000', '18.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-01-07', '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 (45794, 335, NULL, 2467, '97164110', 'LISINOPRIL 20MG TAB UK', NULL, '10.8900', '14.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3400', '0.0000', '2022-01-07', 'received', '10.8900', '10.8900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45795, 335, NULL, 8105, '2025', 'LISINOPRIL 5 TEVA', NULL, '10.8900', '14.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8900', '0.0000', '2022-01-07', 'received', '10.8900', '10.8900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (45796, 335, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '4.0000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-01-07', '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 (45797, 335, NULL, 7494, '1414', 'NORVASC 5MG', NULL, '51.0000', '67.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.0000', '2.0000', '2022-01-07', '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 (45798, 335, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '7.5200', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '0.0000', '2022-01-07', 'received', '7.5200', '7.5200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (45799, 335, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6700', '0.0000', '2022-01-07', 'received', '19.8900', '19.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (45800, 335, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '9.9800', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9600', '0.0000', '2022-01-07', 'received', '9.9800', '9.9800', '2.0000', NULL, NULL, 1, 'pc', '2.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 (45801, 335, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '6.7000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2022-01-07', '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 (45802, 335, NULL, 8849, '2769', 'LOFNAC 100MG', NULL, '1.0700', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4000', '0.0000', '2022-01-07', 'received', '1.0700', '1.0700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (45803, 335, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2022-01-07', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45804, 335, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2022-01-07', '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 (45805, 335, NULL, 7689, '1609', 'KAMACLOX', NULL, '9.1000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '0.0000', '2022-01-07', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (45806, 335, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4000', '0.0000', '2022-01-07', 'received', '6.8800', '6.8800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45807, 335, NULL, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-01-07', '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 (45808, 335, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.7600', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-01-07', 'received', '6.7600', '6.7600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (45809, 335, NULL, 7367, '1287', 'ATORVASTATIN20MG', NULL, '9.1700', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8500', '0.0000', '2022-01-07', 'received', '9.1700', '9.1700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45810, 335, NULL, 7366, '1286', 'ATORVASTATIN10MG', NULL, '7.6500', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2500', '2.0000', '2022-01-07', 'received', '7.6500', '7.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (45811, 335, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.0000', '3.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '17.0000', '2022-01-07', 'received', '2.0000', '2.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (45812, 335, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '8.0000', '2022-01-07', '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 (45813, 335, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '7.3000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '3.0000', '2022-01-07', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45814, 335, NULL, 2776, '30424583', 'LEXSPORIN POWDER', NULL, '14.7500', '19.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-01-07', 'received', '14.7500', '14.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (45815, 335, NULL, 7569, '1489', 'NAPROXEN EC', NULL, '37.0000', '48.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '370.0000', '8.0000', '2022-01-07', '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 (45816, 335, NULL, 7757, '1677', 'ZINNAT 500', NULL, '82.4400', '110.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.4400', '0.0000', '2022-01-07', 'received', '82.4400', '82.4400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '82.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 (45817, 335, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '10.0000', '2022-01-07', 'received', '2.9200', '2.9200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (45818, 335, NULL, 7885, '1805', 'DIFLUCAN', NULL, '82.8700', '110.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.7400', '0.0000', '2022-01-07', '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 (45819, 335, NULL, 7800, '1720', 'CLOMID 50', NULL, '4.9000', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-01-07', '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 (45820, 335, NULL, 7383, '1303', 'AUGMENTIN  625 MG', NULL, '58.8600', '78.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.5800', '0.0000', '2022-01-07', 'received', '58.8600', '58.8600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '58.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 (45821, 335, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '41.5800', '55.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5800', '0.0000', '2022-01-07', 'received', '41.5800', '41.5800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '41.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 (45822, 335, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '19.5100', '26.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0400', '2.0000', '2022-01-07', 'received', '19.5100', '19.5100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.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 (45823, 335, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.8000', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.4000', '28.0000', '2022-01-07', 'received', '4.8000', '4.8000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (45824, 335, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '7.2000', '9.5000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.8000', '14.0000', '2022-01-07', 'received', '7.2000', '7.2000', '14.0000', NULL, NULL, 1, 'pc', '14.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 (45825, 335, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.8000', '21.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.8000', '6.0000', '2022-01-07', 'received', '15.8000', '15.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45826, 335, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-01-07', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (45827, 335, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '35.6300', '49.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '249.4100', '0.0000', '2022-01-07', 'received', '35.6300', '35.6300', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '35.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 (45828, 335, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '28.6900', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0700', '0.0000', '2022-01-07', 'received', '28.6900', '28.6900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45829, 335, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '4.3300', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9800', '0.0000', '2022-01-07', 'received', '4.3300', '4.3300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (45830, 335, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.6000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-01-07', '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 (45831, 335, NULL, 7523, '1443', 'VISCOF S', NULL, '9.7500', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-01-07', 'received', '9.7500', '9.7500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (45832, 335, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '18.5100', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5300', '0.0000', '2022-01-07', 'received', '18.5100', '18.5100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (45833, 335, NULL, 8198, '2118', 'CELEBREX', NULL, '54.4400', '72.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8800', '0.0000', '2022-01-07', 'received', '54.4400', '54.4400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.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 (45834, 335, NULL, 7488, '1408', 'DEEP HEAT OINT 15G', NULL, '9.3000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '2.0000', '2022-01-07', 'received', '9.3000', '9.3000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (45835, 335, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.7600', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2800', '1.0000', '2022-01-07', 'received', '19.7600', '19.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (45836, 335, NULL, 7965, '1885', 'EXFORGE 10/160', NULL, '5.6100', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.0800', '0.0000', '2022-01-07', 'received', '5.6100', '5.6100', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '5.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 (45837, 335, NULL, 7966, '1886', 'EXFORGE 5/160', NULL, '4.6000', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.8000', '28.0000', '2022-01-07', 'received', '4.6000', '4.6000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (45838, 335, NULL, 2329, '93880955', 'EXFORGE HCT 5/160/12.5MG', NULL, '4.6000', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.8000', '12.0000', '2022-01-07', 'received', '4.6000', '4.6000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (45839, 335, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.7000', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7000', '0.0000', '2022-01-07', 'received', '28.7000', '28.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (45840, 335, NULL, 7347, '1267', 'PILEX OINT', NULL, '22.9400', '30.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8800', '0.0000', '2022-01-07', 'received', '22.9400', '22.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (45841, 335, NULL, 8084, '2004', 'METROLEX F SUSP', NULL, '12.7000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5000', '0.0000', '2022-01-07', 'received', '12.7000', '12.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45842, 335, NULL, 7912, '1832', 'FLUXAMOX SRP', NULL, '7.9000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '0.0000', '2022-01-07', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45843, 335, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '28.0700', '37.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1400', '2.0000', '2022-01-07', 'received', '28.0700', '28.0700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (45844, 335, NULL, 7859, '1779', 'KOFLET', NULL, '12.9400', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.8200', '0.0000', '2022-01-07', 'received', '12.9400', '12.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (45845, 335, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '28.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '0.0000', '2022-01-07', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (45846, 335, NULL, 7963, '1883', 'HEPTO PEP', NULL, '15.2500', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.2500', '0.0000', '2022-01-07', 'received', '15.2500', '15.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (45847, 335, NULL, 9154, '3074', 'ZYMAX 500', NULL, '10.6800', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2022-01-07', 'received', '10.6800', '10.6800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (45848, 335, NULL, 8203, '2123', 'INDOCID', NULL, '0.4000', '0.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-01-07', '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 (45849, 335, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.5200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '21.0000', '2022-01-07', '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 (45850, 335, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2300', '1.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4400', '0.0000', '2022-01-07', 'received', '1.2300', '1.2300', '28.0000', NULL, NULL, 1, 'pc', '28.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 (45851, 335, NULL, 7588, '1508', 'FUNBACT', NULL, '7.0000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-07', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45852, 335, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '21.0000', '2022-01-07', 'received', '3.4000', '3.4000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (45853, 335, NULL, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '40.2000', '53.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '201.0000', '3.0000', '2022-01-07', 'received', '40.2000', '40.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '40.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 (45854, 335, NULL, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '2.7000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2022-01-07', '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 (45855, 335, NULL, 8215, '2135', 'FFLUCLOX 500', NULL, '19.6900', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0700', '0.0000', '2022-01-07', 'received', '19.6900', '19.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (45856, 335, NULL, 7353, '1273', 'APC 4S', NULL, '0.1900', '0.6000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '23.0000', '2022-01-07', 'received', '0.1900', '0.1900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (45857, 335, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.5000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '1.0000', '2022-01-07', '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 (45858, 335, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.0800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2022-01-07', 'received', '2.0800', '2.0800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (45859, 335, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.6000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '1.0000', '2022-01-07', 'received', '18.6000', '18.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45860, 335, NULL, 8085, '2005', 'TETRA CAPS', NULL, '0.6000', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-07', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45861, 335, NULL, 2470, '63996135', 'VENTOLIN NEBULES 5MG', NULL, '25.0000', '33.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2022-01-07', 'received', '25.0000', '25.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (45862, 335, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.8400', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '0.0000', '2022-01-07', '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 (45863, 335, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2500', '0.0000', '2022-01-07', '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 (45864, 335, NULL, 8780, '2700', 'IMPRESSER OIL', NULL, '46.0000', '61.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-01-07', 'received', '46.0000', '46.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (45865, 335, NULL, 8028, '1948', 'GINSOMIN EVE', NULL, '15.0000', '21.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2022-01-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 (45866, 335, NULL, 9631, '16066236', 'AYULAD GRIPE WATER', NULL, '7.0000', '9.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '7.0000', '2022-01-07', 'received', '7.0000', '7.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (45867, NULL, NULL, 8408, '', '', 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 (45868, NULL, NULL, 7991, '', '', 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 (45869, NULL, NULL, 8793, '', '', 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 (45870, NULL, NULL, 7630, '', '', 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 (45871, NULL, NULL, 1361, '', '', 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 (45872, NULL, NULL, 1878, '', '', 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 (45873, NULL, NULL, 9401, '', '', 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 (45874, NULL, NULL, 2990, '', '', 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 (45875, NULL, NULL, 9734, '', '', 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 (45876, NULL, NULL, 1630, '', '', 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 (45877, NULL, NULL, 2377, '', '', 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 (45878, NULL, NULL, 8206, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (45879, NULL, NULL, 1581, '', '', 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 (45880, NULL, NULL, 7917, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-212.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45881, NULL, NULL, 7459, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-85.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45882, NULL, NULL, 9734, '', '', 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 (45883, NULL, NULL, 8079, '', '', 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 (45884, NULL, NULL, 2027, '', '', 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 (45885, NULL, NULL, 2452, '', '', 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 (45886, NULL, NULL, 9741, '', '', 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 (45887, NULL, NULL, 9750, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (45888, NULL, NULL, 9743, '', '', 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 (45889, NULL, NULL, 8360, '', '', 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 (45890, NULL, NULL, 9748, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45891, NULL, NULL, 9747, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-155.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45892, NULL, NULL, 8169, '', '', 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 (45893, NULL, NULL, 9740, '', '', 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 (45894, NULL, NULL, 9159, '', '', 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 (45895, NULL, NULL, 9747, '', '', 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 (45896, NULL, NULL, 1967, '', '', 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 (45897, NULL, NULL, 9750, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-94.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45898, NULL, NULL, 9740, '', '', 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 (45899, NULL, NULL, 2761, '', '', 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 (45900, NULL, NULL, 8534, '', '', 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 (45901, NULL, NULL, 9750, '', '', 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 (45902, NULL, NULL, 8485, '', '', 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 (45903, NULL, NULL, 9603, '', '', 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 (45904, NULL, NULL, 9746, '', '', 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 (45905, NULL, NULL, 9745, '', '', 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 (45947, NULL, NULL, 9744, '', '', 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 (45948, NULL, NULL, 7596, '', '', 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 (45949, NULL, NULL, 7742, '', '', 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 (45950, 337, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '5.0000', '2022-01-11', '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 (45951, 337, NULL, 2148, '01503409', 'TINATET HAYAN CAPS', NULL, '42.0000', '55.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2022-01-11', '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 (45952, 337, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2022-01-11', '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 (45953, 337, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.5000', '48.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '283.6800', '48.0000', '2022-01-11', '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 (45954, 337, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '36.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.6400', '36.0000', '2022-01-11', 'received', '2.7400', '2.7400', '36.0000', NULL, NULL, 1, 'pc', '36.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 (45955, 337, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '10.0000', '2022-01-11', 'received', '12.5000', '12.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45956, 337, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '1.0000', '2022-01-11', '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 (45957, 337, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7300', '3.0000', '2022-01-11', '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 (45958, 337, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '40.9100', '54.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.7300', '3.0000', '2022-01-11', 'received', '40.9100', '40.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (45959, 337, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '20.0000', '2022-01-11', 'received', '1.8800', '1.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (45960, 337, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9400', '1.5000', '120.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.8000', '0.0000', '2022-01-11', 'received', '0.9400', '0.9400', '120.0000', NULL, NULL, 1, 'pc', '120.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 (45961, 337, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '84.2800', '125.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.5600', '2.0000', '2022-01-11', 'received', '84.2800', '84.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '84.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 (45962, 337, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '51.0000', '69.0000', '69.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3519.0000', '69.0000', '2022-01-11', 'received', '51.0000', '51.0000', '69.0000', NULL, NULL, 1, 'pc', '69.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 (45963, 337, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '47.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.1000', '5.0000', '2022-01-11', 'received', '33.0200', '33.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (45964, 337, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.7000', '10.0000', '2022-01-11', 'received', '12.9700', '12.9700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '12.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 (45965, 337, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '10.0000', '2022-01-11', '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 (45966, 337, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '10.0000', '2022-01-11', '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 (45967, 337, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '7.2000', '9.5000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '504.0000', '70.0000', '2022-01-11', 'received', '7.2000', '7.2000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (45968, 337, NULL, 7619, '1539', 'KY JELLY 75G', NULL, '36.9800', '49.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.9000', '5.0000', '2022-01-11', 'received', '36.9800', '36.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.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 (45969, 337, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '4.8000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '2.0000', '2022-01-11', 'received', '4.8000', '4.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (45970, 337, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '9.9800', '13.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9600', '2.0000', '2022-01-11', 'received', '9.9800', '9.9800', '2.0000', NULL, NULL, 1, 'pc', '2.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 (45971, 337, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '2.0000', '2022-01-11', '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 (45972, 337, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '24.0000', '2022-01-11', 'received', '0.7000', '0.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (45973, 337, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.7000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '10.0000', '2022-01-11', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (45974, 337, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '50.0000', '2022-01-11', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (45975, 337, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.8000', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '3.0000', '2022-01-11', 'received', '33.8000', '33.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (45976, 337, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '10.0000', '2022-01-11', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45977, 337, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.5000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.0000', '10.0000', '2022-01-11', 'received', '14.5000', '14.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45978, 337, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '24.0000', '2022-01-11', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (45979, 337, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '5.0000', '2022-01-11', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (45980, 337, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-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 (45981, 337, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-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 (45982, 337, NULL, 9722, '09730188', 'MUCOSLY ADULT SYR 100ML', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-01-11', '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 (45983, 337, NULL, 9723, '60831092', 'MUCOSLY JNR SYR 100ML', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-01-11', '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 (45984, 337, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.8000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '10.0000', '2022-01-11', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45985, 337, NULL, 9720, '41639032', 'ANCIGEL SUSP', NULL, '10.6000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '3.0000', '2022-01-11', 'received', '10.6000', '10.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45986, 337, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '10.0000', '2022-01-11', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45987, 337, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '95.0000', '2022-01-11', '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 (45988, 337, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-01-11', '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 (45989, 337, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '3.9100', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5500', '5.0000', '2022-01-11', 'received', '3.9100', '3.9100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (45990, 337, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '5.9000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '3.0000', '2022-01-11', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45991, 337, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '7.3000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '3.0000', '2022-01-11', 'received', '7.3000', '7.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (45992, 337, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '30.0000', '2022-01-11', '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 (45993, 337, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-01-11', '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 (45994, 337, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '10.0000', '2022-01-11', 'received', '1.9700', '1.9700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (45995, 337, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '10.0000', '2022-01-11', 'received', '9.4000', '9.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (45996, 337, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6600', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '50.0000', '2022-01-11', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (45997, 337, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '10.0000', '2022-01-11', '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 (45998, 337, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.6000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '5.0000', '2022-01-11', 'received', '7.6000', '7.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (45999, 337, NULL, 9742, '51812839', 'KOFOF FAMILY SYRUP150ML', NULL, '4.8000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2022-01-11', '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 (46000, 337, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '9.6000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2022-01-11', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46001, 337, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '11.7000', '15.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '5.0000', '2022-01-11', '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 (46002, 337, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-01-11', '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 (46003, 337, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '5.0000', '2022-01-11', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46004, 337, NULL, 9745, '15413407', 'CAFALGIN JRN SUSP 100ML', NULL, '7.2000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-01-11', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46005, 337, NULL, 9746, '34591406', 'EUROVIT MULTIVIT GUMMIES', NULL, '13.5000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '1.0000', '2022-01-11', '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 (46006, 337, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '10.0000', '2022-01-11', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (46007, 337, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '50.0000', '2022-01-11', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (46008, 337, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '60.0000', '2022-01-11', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (46009, 337, NULL, 2990, '71484949', 'ENTRAMOL 500 TAB', NULL, '3.7300', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.3000', '7.0000', '2022-01-11', 'received', '3.7300', '3.7300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (46010, 337, NULL, 9749, '22739967', 'PMF 200G DENNEX', NULL, '8.2900', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1600', '4.0000', '2022-01-11', 'received', '8.2900', '8.2900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46011, 337, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '3.3000', '4.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '49.0000', '2022-01-11', 'received', '3.3000', '3.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (46012, 337, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '5.0000', '2022-01-11', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46013, 326, NULL, 9178, '3098', 'PROPA LINER', NULL, '4.5000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-01-05', '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 (46014, 326, NULL, 3071, '14199456', 'LUCOSADE BOTTLE B/S', NULL, '12.9000', '17.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.4000', '5.0000', '2022-01-05', 'received', '12.9000', '12.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (46015, 326, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '4.4000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-01-05', '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 (46016, 326, NULL, 7719, '1639', 'YAZZ PAD', NULL, '6.0000', '8.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-01-05', 'received', '6.0000', '6.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (46017, 326, NULL, 7720, '1640', 'YAZZ LINER', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-01-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 (46018, 326, NULL, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', NULL, '44.5000', '52.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '133.5000', '2.0000', '2022-01-05', 'received', '44.5000', '44.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '44.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46019, 326, NULL, 8774, '2694', 'VOLTIC B/S', NULL, '2.3000', '4.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2022-01-05', 'received', '2.3000', '2.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (46020, 326, NULL, 9498, '35784269', 'HONEY WORLD 200ML', NULL, '12.5000', '17.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-01-05', '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 (46021, 326, NULL, 9499, '12755178', 'HONEY WORLD 350ML', NULL, '22.0000', '29.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-01-05', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (46022, 338, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2022-01-11', '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 (46023, 338, NULL, 2148, '01503409', 'TINATET HAYAN CAPS', NULL, '42.0000', '55.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2022-01-11', '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 (46024, 338, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '3.0000', '2022-01-11', '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 (46025, 338, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.8000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '10.0000', '2022-01-11', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46026, 338, NULL, 9720, '41639032', 'ANCIGEL SUSP', NULL, '10.6000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '2.0000', '2022-01-11', 'received', '10.6000', '10.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46027, 338, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '8.0000', '2022-01-11', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46028, 338, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '63.0000', '2022-01-11', '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 (46029, 338, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-11', '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 (46030, 338, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '3.9100', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5500', '3.0000', '2022-01-11', 'received', '3.9100', '3.9100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (46031, 338, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '7.3000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '3.0000', '2022-01-11', 'received', '7.3000', '7.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46032, 338, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '5.9000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '2.0000', '2022-01-11', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46033, 338, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '28.0000', '2022-01-11', '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 (46034, 338, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-01-11', '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 (46035, 338, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '9.0000', '2022-01-11', 'received', '1.9700', '1.9700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46036, 338, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2022-01-11', 'received', '9.4000', '9.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (46037, 338, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6600', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '37.0000', '2022-01-11', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (46038, 338, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-01-11', '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 (46039, 338, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.6000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '4.0000', '2022-01-11', 'received', '7.6000', '7.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46040, 338, NULL, 9742, '51812839', 'KOFOF FAMILY SYRUP150ML', NULL, '4.8000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.0000', '2022-01-11', '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 (46041, 338, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '11.7000', '15.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-01-11', '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 (46042, 338, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '9.6000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-01-11', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46043, 338, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-01-11', '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 (46044, 338, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '3.0000', '2022-01-11', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46045, 338, NULL, 9745, '15413407', 'CAFALGIN JRN SUSP 100ML', NULL, '7.2000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-01-11', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46046, 338, NULL, 9746, '34591406', 'EUROVIT MULTIVIT GUMMIES', NULL, '13.5000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '1.0000', '2022-01-11', '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 (46047, 338, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '7.0000', '2022-01-11', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (46048, 338, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '3.0000', '2022-01-11', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (46049, 338, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '46.0000', '2022-01-11', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (46050, 338, NULL, 2990, '71484949', 'ENTRAMOL 500 TAB', NULL, '3.7300', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.3000', '4.0000', '2022-01-11', 'received', '3.7300', '3.7300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (46051, 338, NULL, 9749, '22739967', 'PMF 200G DENNEX', NULL, '8.2900', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1600', '4.0000', '2022-01-11', 'received', '8.2900', '8.2900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46052, 338, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '3.3000', '4.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '26.0000', '2022-01-11', 'received', '3.3000', '3.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (46053, 338, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '3.0000', '2022-01-11', 'received', '10.9000', '10.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46054, 338, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.5000', '48.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '283.6800', '48.0000', '2022-01-11', '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 (46055, 338, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '36.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.6400', '30.0000', '2022-01-11', 'received', '2.7400', '2.7400', '36.0000', NULL, NULL, 1, 'pc', '36.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 (46056, 338, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '10.0000', '2022-01-11', 'received', '12.5000', '12.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46057, 338, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '1.0000', '2022-01-11', '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 (46058, 338, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7300', '3.0000', '2022-01-11', '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 (46059, 338, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '40.9100', '54.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.7300', '3.0000', '2022-01-11', 'received', '40.9100', '40.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (46060, 338, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '15.0000', '2022-01-11', 'received', '1.8800', '1.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (46061, 338, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9400', '1.5000', '120.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.8000', '5.0000', '2022-01-11', 'received', '0.9400', '0.9400', '120.0000', NULL, NULL, 1, 'pc', '120.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 (46062, 338, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '84.2800', '125.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.5600', '1.0000', '2022-01-11', 'received', '84.2800', '84.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '84.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 (46063, 338, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '51.0000', '69.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '2.0000', '2022-01-11', '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 (46064, 338, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '47.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.1000', '5.0000', '2022-01-11', 'received', '33.0200', '33.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (46065, 338, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.7000', '10.0000', '2022-01-11', 'received', '12.9700', '12.9700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '12.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 (46066, 338, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '8.0000', '2022-01-11', '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 (46067, 338, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '7.0000', '2022-01-11', '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 (46068, 338, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '7.2000', '9.5000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '504.0000', '59.0000', '2022-01-11', 'received', '7.2000', '7.2000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (46069, 338, NULL, 7619, '1539', 'KY JELLY 75G', NULL, '36.9800', '49.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.9000', '5.0000', '2022-01-11', 'received', '36.9800', '36.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.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 (46070, 338, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '4.8000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '1.0000', '2022-01-11', 'received', '4.8000', '4.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (46071, 338, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '9.9800', '13.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9600', '1.0000', '2022-01-11', 'received', '9.9800', '9.9800', '2.0000', NULL, NULL, 1, 'pc', '2.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 (46072, 338, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '2.0000', '2022-01-11', '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 (46073, 338, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '10.0000', '2022-01-11', 'received', '0.7000', '0.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (46074, 338, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.7000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '6.0000', '2022-01-11', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (46075, 338, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '37.0000', '2022-01-11', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (46076, 338, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.8000', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '2.0000', '2022-01-11', 'received', '33.8000', '33.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (46077, 338, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '10.0000', '2022-01-11', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46078, 338, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.5000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.0000', '10.0000', '2022-01-11', 'received', '14.5000', '14.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46079, 338, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '21.0000', '2022-01-11', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (46080, 338, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '2.0000', '2022-01-11', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (46081, 338, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-01-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 (46082, 338, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2022-01-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 (46083, 338, NULL, 9722, '09730188', 'MUCOSLY ADULT SYR 100ML', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '4.0000', '2022-01-11', '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 (46084, 338, NULL, 9723, '60831092', 'MUCOSLY JNR SYR 100ML', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-01-11', '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 (46150, 332, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '86.0000', '2022-01-07', '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 (46151, 332, NULL, 9722, '09730188', 'MUCOSLY ADULT SYR 100ML', NULL, '5.2000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '3.0000', '2022-01-07', '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 (46152, 332, NULL, 9723, '60831092', 'MUCOSLY JNR SYR 100ML', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-01-07', '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 (46153, 332, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '0.0000', '2022-01-07', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (46154, 332, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-07', '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 (46155, 332, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-07', '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 (46156, 332, NULL, 9537, '37913304', 'CALCICARE SUSP', NULL, '36.0000', '48.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '3.0000', '2022-01-07', '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 (46157, 332, NULL, 7482, '1402', 'MAXMOX 500', NULL, '3.2500', '5.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-01-07', 'received', '3.2500', '3.2500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (46158, 332, NULL, 7432, '1352', 'VITAFORCE', NULL, '3.2300', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4600', '1.0000', '2022-01-07', 'received', '3.2300', '3.2300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '3.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 (46159, 332, NULL, 9727, '67843986', 'KIFARU TAB 100ML', NULL, '6.7000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '5.0000', '2022-01-07', '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 (46160, 332, NULL, 9728, '36721830', 'KIFARU TAB 50ML', NULL, '5.4000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '10.0000', '2022-01-07', '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 (46161, 332, NULL, 7877, '1797', 'POLYFER CAPS', NULL, '4.4000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-01-07', '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 (46162, 332, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '5.7200', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-01-07', 'received', '5.7200', '5.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (46163, 332, NULL, 8304, '2224', 'POLYFER 200ML', NULL, '6.0000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-07', '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 (46164, 332, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.3400', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.7000', '4.0000', '2022-01-07', 'received', '7.3400', '7.3400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (46165, 332, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '3.8200', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.1000', '0.0000', '2022-01-07', 'received', '3.8200', '3.8200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46166, 332, NULL, 7456, '1376', 'VENTOLIN INHALER', NULL, '25.0000', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-07', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46167, 332, NULL, 7649, '1569', 'BX SRP 200', NULL, '2.6700', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '2.0000', '2022-01-07', 'received', '2.6700', '2.6700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46168, 332, NULL, 8452, '2372', 'HEPTOLIFE', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-07', '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 (46169, 332, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2022-01-07', '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 (46170, 332, NULL, 8300, '2220', 'CANDIDERM CREAM', NULL, '7.4300', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.1500', '0.0000', '2022-01-07', 'received', '7.4300', '7.4300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (46171, 332, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-01-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 (46172, 332, NULL, 9385, '3305', 'LUEX CHILD CHESTY', NULL, '8.7000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '3.0000', '2022-01-07', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46173, 332, NULL, 7411, '1331', 'CITRO C', NULL, '1.3600', '2.0000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2022-01-07', 'received', '1.3600', '1.3600', '125.0000', NULL, NULL, 1, 'pc', '125.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 (46174, 332, NULL, 7355, '1275', 'BIOFERON SRP', NULL, '17.9400', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '0.0000', '2022-01-07', '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 (46175, 332, NULL, 7799, '1719', 'STARWIN S/S', NULL, '6.4000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-01-07', 'received', '6.4000', '6.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46176, 332, NULL, 8626, '2546', 'PONSTAN', NULL, '7.5000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-01-07', '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 (46177, 332, NULL, 7527, '1447', 'ZINTAB 20', NULL, '0.8900', '2.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '79.0000', '2022-01-07', 'received', '0.8900', '0.8900', '100.0000', NULL, NULL, 1, 'pc', '100.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 (46178, 332, NULL, 8456, '2376', 'CARTEF DS', NULL, '5.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-01-07', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46179, 332, NULL, 8457, '2377', 'CARTEF SUSP', NULL, '4.9000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2022-01-07', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46180, 332, NULL, 9698, '93279570', 'VITAGLOBIN MG', NULL, '7.7000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '7.0000', '2022-01-07', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46181, 332, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '17.0000', '2022-01-07', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (46182, 332, NULL, 9730, '76969575', 'HAEMO FORTE SYRUP 200ML', NULL, '18.2000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0000', '2.0000', '2022-01-07', 'received', '18.2000', '18.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46183, 332, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-01-07', '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 (46184, 332, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '22.0000', '2022-01-07', '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 (46185, 332, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '6.7000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '0.0000', '2022-01-07', '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 (46186, 332, NULL, 7491, '1411', 'ASCORYL SRP', NULL, '5.6000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-01-07', 'received', '5.6000', '5.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46187, 332, NULL, 7497, '1417', 'LIV 52 SRP', NULL, '20.3000', '27.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.6000', '2.0000', '2022-01-07', 'received', '20.3000', '20.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (46188, 332, NULL, 9733, '63797685', 'HISTERGAN CREAM 25G', NULL, '28.4000', '37.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.0000', '5.0000', '2022-01-07', 'received', '28.4000', '28.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.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 (46189, 332, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '11.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '4.0000', '2022-01-07', '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 (46190, 332, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '5.4000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-01-07', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46191, 332, NULL, 8844, '2764', 'FEROFIX', NULL, '4.9900', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9500', '0.0000', '2022-01-07', 'received', '4.9900', '4.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46192, 332, NULL, 7922, '1842', 'BABY COU LINC', NULL, '3.1700', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8500', '0.0000', '2022-01-07', 'received', '3.1700', '3.1700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (46193, 332, NULL, 8165, '2085', 'CARBOZAP JUNIOR', NULL, '4.7000', '6.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '0.0000', '2022-01-07', '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 (46194, 332, NULL, 9718, '64620536', 'AMINO PEP 200ML', NULL, '14.3000', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9000', '3.0000', '2022-01-07', '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 (46195, 332, NULL, 7689, '1609', 'KAMACLOX', NULL, '9.1000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '0.0000', '2022-01-07', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (46196, 332, NULL, 7752, '1672', 'HYDROGEN LOCAL', NULL, '2.6100', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0500', '0.0000', '2022-01-07', 'received', '2.6100', '2.6100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (46197, 332, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.9800', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.6000', '0.0000', '2022-01-07', 'received', '7.9800', '7.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46198, 332, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.8000', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.4000', '25.0000', '2022-01-07', 'received', '4.8000', '4.8000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (46199, 332, NULL, 7705, '1625', 'POSTINOR', NULL, '22.9900', '32.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9700', '0.0000', '2022-01-07', 'received', '22.9900', '22.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (46200, 332, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '8.2300', '11.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0700', '0.0000', '2022-01-07', 'received', '8.2300', '8.2300', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '8.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 (46201, 332, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '2.7500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-01-07', 'received', '2.7500', '2.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46202, 332, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-01-07', '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 (46203, 332, NULL, 9100, '3020', '~JOY VIKEL', NULL, '26.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '5.0000', '2022-01-07', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46204, 332, NULL, 7831, '1751', 'TINATET VENECARE', NULL, '22.5000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-07', 'received', '22.5000', '22.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (46205, 332, NULL, 7895, '1815', 'BRIGHFORD', NULL, '13.0000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-01-07', '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 (46206, 332, NULL, 7888, '1808', 'LIVING BIT SRP', NULL, '14.0000', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-01-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 (46207, 332, NULL, 7906, '1826', 'MASADA', NULL, '9.3000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2022-01-07', '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 (46208, 332, NULL, 7392, '1312', 'CLOTRI-DENK 100 VAGINAL TABS', NULL, '18.2100', '24.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4200', '1.0000', '2022-01-07', '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 (46209, 332, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '17.0000', '22.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-01-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 (46210, 332, NULL, 7419, '1339', 'DEEP HEAT SPRAY 150ML', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-01-07', '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 (46211, 332, NULL, 8721, '2641', 'IMPRESSER CAPS', NULL, '23.0000', '30.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '0.0000', '2022-01-07', 'received', '23.0000', '23.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46212, 332, NULL, 8780, '2700', 'IMPRESSER OIL', NULL, '46.0000', '61.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-01-07', 'received', '46.0000', '46.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46213, 332, NULL, 8429, '2349', 'GASTRONE SUSP', NULL, '9.3000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2022-01-07', '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 (46214, 332, NULL, 8418, '2338', 'LACTULOSE 500ML', NULL, '35.1900', '46.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.3800', '0.0000', '2022-01-07', 'received', '35.1900', '35.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (46215, 332, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-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 (46216, 332, NULL, 8040, '1960', 'ACTIFED TAB', NULL, '10.6400', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.2000', '0.0000', '2022-01-07', 'received', '10.6400', '10.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (46217, 332, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '8.8900', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6700', '0.0000', '2022-01-07', '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 (46218, 332, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.9800', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9400', '2.0000', '2022-01-07', 'received', '22.9800', '22.9800', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46219, 332, NULL, 7322, '1242', 'LUEX ADULT DRY', NULL, '7.9000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '2.0000', '2022-01-07', '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 (46220, 332, NULL, 9640, '96659237', 'BENYLIN DRY TICKLY COUGH 150ML', NULL, '40.5000', '53.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '1.0000', '2022-01-07', 'received', '40.5000', '40.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46221, 332, NULL, 8134, '2054', 'AMCOF ADULT', NULL, '5.2600', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5600', '0.0000', '2022-01-07', 'received', '5.2600', '5.2600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (46222, 332, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '1.0000', '2022-01-07', 'received', '14.8000', '14.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46223, 332, NULL, 1755, 'PR-468', 'STOPKOF EXPT (ADULT) 100ML', NULL, '5.9800', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9000', '0.0000', '2022-01-07', 'received', '5.9800', '5.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46224, 332, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '8.8500', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.2500', '1.0000', '2022-01-07', 'received', '8.8500', '8.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (46225, 332, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '5.9000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '1.0000', '2022-01-07', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46226, 332, NULL, 3022, '51946298', 'SEDALYN ADULT', NULL, '4.3000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '1.0000', '2022-01-07', '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 (46227, 332, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '3.6000', '5.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-01-07', 'received', '3.6000', '3.6000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (46228, 332, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '15.0000', '25.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-01-07', '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 (46229, 332, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-01-07', '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 (46230, 332, NULL, 8481, '2401', 'PIRITON ORG SRP', NULL, '33.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-01-07', 'received', '33.0000', '33.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46231, 332, NULL, 8015, '1935', 'ZIRTEK TAB', NULL, '2.9000', '5.0000', '42.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.8000', '10.0000', '2022-01-07', 'received', '2.9000', '2.9000', '42.0000', NULL, NULL, 1, 'pc', '42.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 (46232, 332, NULL, 9028, '2948', 'PROMETHAZINE SRUP', NULL, '3.4800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2022-01-07', 'received', '3.4800', '3.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (46233, 332, NULL, 8164, '2084', 'OTRIVIN CHILD', NULL, '16.3900', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '0.0000', '2022-01-07', '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 (46234, 332, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2022-01-07', '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 (46235, 332, NULL, 7853, '1773', 'BELLS VIT C', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-07', '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 (46236, 332, NULL, 7478, '1398', 'NIFE DENK 20', NULL, '4.0000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-01-07', '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 (46237, 332, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '11.9800', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9000', '2.0000', '2022-01-07', 'received', '11.9800', '11.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (46238, 332, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.5000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-07', '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 (46239, 332, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.4800', '0.0000', '2022-01-07', 'received', '2.0800', '2.0800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.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 (46240, 332, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.8900', '8.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2300', '3.0000', '2022-01-07', 'received', '5.8900', '5.8900', '7.0000', NULL, NULL, 1, 'pc', '7.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 (46241, 332, NULL, 9158, '3078', 'METRO Z SUSP', NULL, '5.8900', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6700', '0.0000', '2022-01-07', '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 (46242, 332, NULL, 7417, '1337', 'DALACIN 300MG ORIGINAL', NULL, '6.0000', '8.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-01-07', 'received', '6.0000', '6.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (46243, 332, NULL, 9541, '43531163', 'LEVOFLOXACIN (LEVOBACT) 500MG', NULL, '42.0000', '56.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '2.0000', '2022-01-07', 'received', '42.0000', '42.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46244, 332, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '22.1000', '29.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '0.0000', '2022-01-07', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46245, 332, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '5.0000', '2022-01-07', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46246, 332, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2022-01-07', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (46247, 332, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '33.0200', '44.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.1000', '0.0000', '2022-01-07', 'received', '33.0200', '33.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (46248, 332, NULL, 9193, '3113', 'AZIRON 500MG TABS', NULL, '7.0000', '9.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-01-07', 'received', '7.0000', '7.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46249, 332, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.8900', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4500', '0.0000', '2022-01-07', 'received', '3.8900', '3.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (46250, 332, NULL, 8064, '1984', 'EXETER PARA SRP', NULL, '4.9800', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '1.0000', '2022-01-07', 'received', '4.9800', '4.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46251, 332, NULL, 7671, '1591', 'PARA UK', NULL, '1.7000', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-01-07', 'received', '1.7000', '1.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (46252, 332, NULL, 9413, '3333', 'MALAR 2 DS', NULL, '9.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '1.0000', '2022-01-07', '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 (46253, 332, NULL, 9300, '3220', 'LONART TAB', NULL, '4.9000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2022-01-07', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46254, 332, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '7.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-01-07', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (46255, 332, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '12.8000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6000', '0.0000', '2022-01-07', 'received', '12.8000', '12.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (46256, 332, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.4000', '0.0000', '2022-01-07', 'received', '2.9200', '2.9200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (46257, 332, NULL, 7589, '1509', 'GENTA-K', NULL, '1.9000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-01-07', 'received', '1.9000', '1.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46258, 332, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.8400', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '0.0000', '2022-01-07', '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 (46259, 332, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-07', '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 (46260, 332, NULL, 7632, '1552', 'CIPROLEX TAB', NULL, '11.0000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '3.0000', '2022-01-07', '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 (46261, 332, NULL, 8006, '1926', 'CLARITHROMYCIN', NULL, '30.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-07', '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 (46262, 332, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-07', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (46263, 332, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '6.2600', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3000', '0.0000', '2022-01-07', 'received', '6.2600', '6.2600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46264, 332, NULL, 7999, '1919', 'ROBB INH', NULL, '1.7500', '3.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '17.0000', '2022-01-07', 'received', '1.7500', '1.7500', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (46265, 332, NULL, 9461, '53270643', 'YOVANNY INHALER', NULL, '1.5000', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-01-07', 'received', '1.5000', '1.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (46266, 332, NULL, 2849, '81057936', 'DIPROSON LOTION', NULL, '4.0000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '11.0000', '2022-01-07', '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 (46267, 332, NULL, 9742, '51812839', 'KOFOF FAMILY SYRUP150ML', NULL, '4.8000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-01-07', '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 (46353, NULL, NULL, 8322, '', '', 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 (46354, NULL, NULL, 7907, '', '', 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 (46355, NULL, NULL, 7865, '', '', 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 (46356, NULL, NULL, 2748, '', '', 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 (46357, NULL, NULL, 7610, '', '', 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 (46358, NULL, NULL, 9337, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46359, NULL, NULL, 9745, '', '', 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 (46360, NULL, NULL, 9681, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (46361, NULL, NULL, 1851, '', '', 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 (46362, NULL, NULL, 2858, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-185.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46363, NULL, NULL, 2655, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46364, NULL, NULL, 1468, '', '', 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 (46365, NULL, NULL, 8596, '', '', 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 (46562, 341, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.8000', '5.0000', '2022-01-13', 'received', '9.7600', '9.7600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (46563, 341, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '8.1000', '11.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '13.0000', '2022-01-13', 'received', '8.1000', '8.1000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (46564, 341, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-13', '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 (46565, 341, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-01-13', '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 (46566, 341, NULL, 2641, '92213060', 'CONGESTYL SUSP', NULL, '10.0000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2022-01-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 (46567, 341, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '28.0000', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2022-01-13', '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 (46568, 341, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '18.2500', '24.0900', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.2500', '6.0000', '2022-01-13', 'received', '18.2500', '18.2500', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '18.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 (46569, 341, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4500', '5.0000', '2022-01-13', 'received', '5.2900', '5.2900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (46570, 341, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '19.0000', '2022-01-13', '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 (46571, 341, NULL, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '73.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.3000', '2.0000', '2022-01-13', 'received', '55.1000', '55.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46572, 341, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.7500', '5.0000', '2022-01-13', '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 (46573, 341, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '5.0000', '2022-01-13', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46574, 341, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '60.0000', '2022-01-13', 'received', '2.3500', '2.3500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (46575, 341, NULL, 2337, '04743466', 'M2 TONE', NULL, '54.0000', '71.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '5.0000', '2022-01-13', 'received', '54.0000', '54.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46576, 341, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '52.0000', '69.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '2.0000', '2022-01-13', 'received', '52.0000', '52.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46577, 341, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.8000', '6.5000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '336.0000', '70.0000', '2022-01-13', 'received', '4.8000', '4.8000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (46578, 341, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '4.0000', '2022-01-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 (46579, 341, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '34.0000', '48.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '4.0000', '2022-01-13', 'received', '34.0000', '34.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46580, 341, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.9500', '5.0000', '2022-01-13', 'received', '16.3900', '16.3900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46581, 341, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.7500', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.7500', '0.0000', '2022-01-13', 'received', '6.7500', '6.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (46582, 341, NULL, 2903, '64476421', 'LIV 52 TABS', NULL, '33.0000', '44.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '3.0000', '2022-01-13', '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 (46583, 341, NULL, 2904, '85860104', 'LIV 52 SYRUP', NULL, '21.0000', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '2.0000', '2022-01-13', '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 (46584, 341, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '5.0000', '2022-01-13', '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 (46585, 341, NULL, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '47.0000', '62.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-13', 'received', '47.0000', '47.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46586, 341, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '84.2800', '125.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.2800', '0.0000', '2022-01-13', 'received', '84.2800', '84.2800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '84.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 (46587, 341, NULL, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '59.0300', '78.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0300', '0.0000', '2022-01-13', 'received', '59.0300', '59.0300', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46588, 341, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '35.2600', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5200', '1.0000', '2022-01-13', 'received', '35.2600', '35.2600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (46589, 341, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '3.0000', '2022-01-13', '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 (46590, 341, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '3.2200', '4.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.1600', '0.0000', '2022-01-13', 'received', '3.2200', '3.2200', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.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 (46591, 341, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '10.0000', '2022-01-13', '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 (46592, 341, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.0200', '37.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.1000', '4.0000', '2022-01-13', 'received', '28.0200', '28.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.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 (46593, 341, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.0500', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2022-01-13', 'received', '1.0500', '1.0500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46594, 341, NULL, 9167, '3087', 'NORMO TEARS EYE DROP', NULL, '13.3000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2022-01-13', '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 (46595, 341, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.4500', '15.0000', '2022-01-13', 'received', '8.2300', '8.2300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (46596, 341, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.6500', '2.2000', '200.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '107.0000', '2022-01-13', 'received', '1.6500', '1.6500', '200.0000', NULL, NULL, 1, 'pc', '200.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 (46597, 341, NULL, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '30.0000', '43.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-01-13', '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 (46598, 341, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2022-01-13', '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 (46599, 341, 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', '40.0000', '2022-01-13', '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 (46600, 341, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '5.0000', '2022-01-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 (46601, 341, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-13', '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 (46602, 341, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '4.0000', '2022-01-13', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46603, 341, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.7000', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8000', '2.0000', '2022-01-13', 'received', '4.7000', '4.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46604, 341, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '5.0000', '2022-01-13', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (46605, 341, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '8.0000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2022-01-13', '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 (46606, 341, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-01-13', '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 (46607, 341, NULL, 7381, '1301', 'TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2022-01-13', '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 (46608, 341, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.6000', '20.0000', '2022-01-13', 'received', '7.0300', '7.0300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (46609, 341, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.5000', '79.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.5000', '3.0000', '2022-01-13', 'received', '59.5000', '59.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '59.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46610, 341, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '2.0000', '2022-01-13', '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 (46611, 341, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '32.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-01-13', '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 (46612, 341, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '372.0000', '10.0000', '2022-01-13', 'received', '37.2000', '37.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '37.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 (46613, 341, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '12.1000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5000', '5.0000', '2022-01-13', 'received', '12.1000', '12.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (46614, 341, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '20.7800', '27.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.9000', '4.0000', '2022-01-13', 'received', '20.7800', '20.7800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46615, 341, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '27.0000', '35.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '5.0000', '2022-01-13', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46616, 341, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '10.0000', '2022-01-13', '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 (46617, 341, NULL, 2662, '78880294', 'LONART TAB', NULL, '4.9500', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '7.0000', '2022-01-13', 'received', '4.9500', '4.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (46618, 341, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '3.0000', '2022-01-13', '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 (46619, 341, NULL, 2907, '78214441', 'LUMATRONA SUSP 60ML', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-01-13', '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 (46620, 341, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9400', '1.5000', '150.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '150.0000', '2022-01-13', 'received', '0.9400', '0.9400', '150.0000', NULL, NULL, 1, 'pc', '150.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 (46621, 341, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '25.0000', '2022-01-13', '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 (46622, 341, NULL, 7915, '1835', 'ZUDREX TAB', NULL, '2.8000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2022-01-13', '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 (46623, 341, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '20.0000', '2022-01-13', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46624, 341, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '6.0000', '2022-01-13', '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 (46625, 341, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7000', '3.6000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '10.0000', '2022-01-13', 'received', '2.7000', '2.7000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (46626, 339, NULL, 8858, '2778', 'KEPTRILS LOZ', NULL, '3.5000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-01-11', '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 (46627, 339, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '10.3400', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0200', '3.0000', '2022-01-11', 'received', '10.3400', '10.3400', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46628, 339, NULL, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.9900', '4.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '9.0000', '2022-01-11', 'received', '2.9900', '2.9900', '18.0000', NULL, NULL, 1, 'pc', '18.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 (46629, 339, NULL, 2140, '9556100104335', 'FLUCOR NIGHT', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-01-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 (46630, 339, NULL, 8072, '1992', 'LYRICA 75', NULL, '6.6000', '8.7000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.8000', '0.0000', '2022-01-11', 'received', '6.6000', '6.6000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (46631, 339, NULL, 9154, '3074', 'ZYMAX 500', NULL, '10.6800', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2022-01-11', 'received', '10.6800', '10.6800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (46632, 339, NULL, 7428, '1348', 'TADOL 100', NULL, '2.6100', '4.0000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '391.5000', '22.0000', '2022-01-11', 'received', '2.6100', '2.6100', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '2.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 (46633, 339, NULL, 2828, '81305537', 'D Artepp Tap 60/480mg', NULL, '24.3500', '32.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0500', '2.0000', '2022-01-11', 'received', '24.3500', '24.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.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 (46634, 339, NULL, 9668, '54007086', 'FLUCOXACILLIN 500MG', NULL, '20.0000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2022-01-11', '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 (46635, 339, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.5800', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8000', '10.0000', '2022-01-11', 'received', '6.5800', '6.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (46636, 339, NULL, 8825, '2745', 'AZILEX SUSP', NULL, '11.8800', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6400', '0.0000', '2022-01-11', 'received', '11.8800', '11.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (46637, 339, NULL, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '33.7600', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5200', '2.0000', '2022-01-11', 'received', '33.7600', '33.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (46638, 339, NULL, 8436, '2356', 'OLIGOCARE', NULL, '29.7000', '39.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '2.0000', '2022-01-11', 'received', '29.7000', '29.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (46639, 339, NULL, 7964, '1884', 'APPLE CIDER B/S', NULL, '65.3400', '86.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.6800', '2.0000', '2022-01-11', 'received', '65.3400', '65.3400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '65.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 (46640, 339, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.7500', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-01-11', 'received', '3.7500', '3.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46641, 339, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.8000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '5.0000', '2022-01-11', 'received', '9.8000', '9.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46642, 339, NULL, 8339, '2259', 'SUDOCREAM 60G', NULL, '26.0000', '27.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '1.0000', '2022-01-11', '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 (46643, 339, NULL, 8276, '2196', 'AZILEX 250', NULL, '12.0000', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-01-11', '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 (46644, 339, NULL, 7427, '1347', 'AZOMAX 500', NULL, '25.0000', '33.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-01-11', 'received', '25.0000', '25.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46645, 339, NULL, 7784, '1704', 'DRAGON CAPS', NULL, '4.2500', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-01-11', 'received', '4.2500', '4.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46646, 339, NULL, 7411, '1331', 'CITRO C', NULL, '1.3600', '2.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '0.0000', '2022-01-11', 'received', '1.3600', '1.3600', '100.0000', NULL, NULL, 1, 'pc', '100.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 (46647, 339, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '11.0700', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.7000', '0.0000', '2022-01-11', 'received', '11.0700', '11.0700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '11.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 (46648, 339, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2022-01-11', '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 (46649, 339, NULL, 8913, '2833', 'LAVET', NULL, '15.1700', '21.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.3400', '1.0000', '2022-01-11', 'received', '15.1700', '15.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (46650, 339, NULL, 7429, '1349', 'VAGINAX CREAM', NULL, '3.2700', '4.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6200', '0.0000', '2022-01-11', 'received', '3.2700', '3.2700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (46651, 339, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.3600', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '2.0000', '2022-01-11', 'received', '6.3600', '6.3600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46652, 339, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.9500', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.7500', '2.0000', '2022-01-11', 'received', '14.9500', '14.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (46653, 339, NULL, 7642, '1562', 'LEVON 2', NULL, '5.9200', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2000', '0.0000', '2022-01-11', 'received', '5.9200', '5.9200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46654, 339, NULL, 7640, '1560', 'LENOR', NULL, '4.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-01-11', '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 (46655, 339, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.2000', '38.0000', '2022-01-11', 'received', '7.0300', '7.0300', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '7.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 (46656, 339, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '6.2600', '8.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.9000', '0.0000', '2022-01-11', 'received', '6.2600', '6.2600', '15.0000', NULL, NULL, 1, 'pc', '15.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 (46657, 339, NULL, 9021, '2941', 'UNIDUS LONG LOVE CONDOM', NULL, '7.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-11', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46658, 339, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '0.0000', '2022-01-11', '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 (46659, 339, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.8600', '10.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '235.8000', '0.0000', '2022-01-11', 'received', '7.8600', '7.8600', '30.0000', NULL, NULL, 1, 'pc', '30.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 (46660, 339, NULL, 7402, '1322', 'VERMOX SUSP', NULL, '14.3800', '19.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.1400', '0.0000', '2022-01-11', 'received', '14.3800', '14.3800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (46661, 339, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.1300', '7.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '256.5000', '0.0000', '2022-01-11', 'received', '5.1300', '5.1300', '50.0000', NULL, NULL, 1, 'pc', '50.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 (46662, 339, NULL, 7779, '1699', 'LUFART SUSP', NULL, '9.4100', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.1000', '0.0000', '2022-01-11', 'received', '9.4100', '9.4100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (46663, 339, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '35.6300', '49.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '213.7800', '0.0000', '2022-01-11', 'received', '35.6300', '35.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '35.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 (46664, 339, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.8500', '22.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '297.0000', '0.0000', '2022-01-11', 'received', '14.8500', '14.8500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (46665, 339, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-01-11', '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 (46666, 339, NULL, 8079, '1999', 'SCHIMETER SUSP', NULL, '14.3600', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '3.0000', '2022-01-11', 'received', '14.3600', '14.3600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (46667, 339, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '18.8100', '25.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2400', '2.0000', '2022-01-11', 'received', '18.8100', '18.8100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.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 (46668, 339, NULL, 7652, '1572', 'PIRITON TAB', NULL, '0.9800', '1.3000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-01-11', '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 (46669, 339, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2500', '0.0000', '2022-01-11', '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 (46670, 339, NULL, 8170, '2090', 'LEOPARD OINT', NULL, '5.9400', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7000', '0.0000', '2022-01-11', '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 (46671, 339, NULL, 8142, '2062', 'DICLOLEX CREAM', NULL, '6.5100', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5300', '3.0000', '2022-01-11', 'received', '6.5100', '6.5100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (46672, 339, NULL, 7552, '1472', 'LOFNAC GEL', NULL, '4.7500', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7500', '2.0000', '2022-01-11', 'received', '4.7500', '4.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46673, 339, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '4.2400', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.4400', '0.0000', '2022-01-11', '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 (46674, 339, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '22.1000', '29.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.4000', '0.0000', '2022-01-11', 'received', '22.1000', '22.1000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46675, 339, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.4500', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '0.0000', '2022-01-11', 'received', '5.4500', '5.4500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (46676, 339, NULL, 7687, '1607', 'CALPOL 6+', NULL, '39.5800', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.1600', '0.0000', '2022-01-11', 'received', '39.5800', '39.5800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.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 (46677, 339, NULL, 8134, '2054', 'AMCOF ADULT', NULL, '5.2600', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5600', '0.0000', '2022-01-11', 'received', '5.2600', '5.2600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (46678, 339, NULL, 7523, '1443', 'VISCOF S', NULL, '9.7500', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.7500', '0.0000', '2022-01-11', '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 (46679, 339, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '5.2300', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1500', '0.0000', '2022-01-11', 'received', '5.2300', '5.2300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46680, 339, NULL, 7860, '1780', 'BEEHIVE', NULL, '20.7900', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5800', '0.0000', '2022-01-11', 'received', '20.7900', '20.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (46681, 339, NULL, 8411, '2331', 'LUEX ADULT CHESTY', NULL, '8.8100', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6200', '0.0000', '2022-01-11', 'received', '8.8100', '8.8100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (46682, 339, NULL, 7519, '1439', 'BELLS TEETHING MIX', NULL, '14.5200', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.6000', '0.0000', '2022-01-11', 'received', '14.5200', '14.5200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46683, 339, NULL, 7379, '1299', 'TEETHING MIXTURE ERNEST', NULL, '5.4400', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '0.0000', '2022-01-11', 'received', '5.4400', '5.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (46684, 339, NULL, 7774, '1694', 'MIST POT SIT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-01-11', '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 (46685, 339, NULL, 7911, '1831', 'BASECOLD SRP', NULL, '4.3700', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.7000', '0.0000', '2022-01-11', 'received', '4.3700', '4.3700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (46686, 339, NULL, 8714, '2634', 'COLDRILIEF SRP', NULL, '5.2100', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.1000', '0.0000', '2022-01-11', 'received', '5.2100', '5.2100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46687, 339, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '5.0000', '2022-01-11', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46688, 339, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.8900', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.9000', '0.0000', '2022-01-11', 'received', '3.8900', '3.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (46689, 339, NULL, 3018, '27169206', 'PARA SYR EXETER', NULL, '4.9100', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5500', '0.0000', '2022-01-11', 'received', '4.9100', '4.9100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46690, 339, NULL, 1648, '8902404045453', 'ASTHALEX SYR 100ML', NULL, '5.9400', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8200', '3.0000', '2022-01-11', 'received', '5.9400', '5.9400', '3.0000', NULL, NULL, 1, 'pc', '3.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 (46691, 339, NULL, 7339, '1259', 'NO SPA40MG', NULL, '0.6600', '0.9000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-01-11', 'received', '0.6600', '0.6600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (46692, 339, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.7000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '29.0000', '2022-01-11', 'received', '1.7000', '1.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (46693, 339, NULL, 8163, '2083', 'OTRIVIN ADULT', NULL, '22.8600', '31.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8600', '0.0000', '2022-01-11', 'received', '22.8600', '22.8600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '22.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 (46694, 339, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '0.0000', '2022-01-11', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (46695, 339, NULL, 8539, '2459', 'ASMADRIN', NULL, '0.5200', '0.8000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '25.0000', '2022-01-11', 'received', '0.5200', '0.5200', '75.0000', NULL, NULL, 1, 'pc', '75.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 (46696, 339, NULL, 8275, '2195', 'CLARITROMYCIN  500MG UK', NULL, '29.8500', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.7000', '0.0000', '2022-01-11', 'received', '29.8500', '29.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (46697, 339, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '5.0000', '2022-01-11', 'received', '16.1000', '16.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46698, 339, NULL, 9271, '3191', 'LETAFEN SUSPENSION', NULL, '0.9900', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2022-01-11', 'received', '0.9900', '0.9900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46699, 339, NULL, 9247, '3167', 'STRETCH GO', NULL, '15.2500', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '0.0000', '2022-01-11', 'received', '15.2500', '15.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (46700, 339, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '18.5100', '27.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.0600', '2.0000', '2022-01-11', 'received', '18.5100', '18.5100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.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 (46701, 339, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.7900', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.7400', '0.0000', '2022-01-11', 'received', '10.7900', '10.7900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (46702, 342, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '8.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.6000', '19.0000', '2022-01-13', 'received', '4.9800', '4.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46703, 342, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2022-01-13', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46704, 342, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2300', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7600', '10.0000', '2022-01-13', 'received', '4.2300', '4.2300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (46705, 342, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '9.0000', '2022-01-13', '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 (46706, 342, NULL, 2594, '8850769010831', 'ZEMAN CAPS', NULL, '16.6000', '22.0000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.4000', '9.0000', '2022-01-13', 'received', '16.6000', '16.6000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '16.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 (46707, 342, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '7.0000', '2022-01-13', '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 (46708, 342, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '16.0000', '2022-01-13', 'received', '1.7300', '1.7300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (46709, 342, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '10.0000', '2022-01-13', '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 (46710, 342, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '190.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '487.5600', '1.0000', '2022-01-13', 'received', '121.8900', '121.8900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46711, 343, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '20.0500', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.2500', '4.0000', '2022-01-13', 'received', '20.0500', '20.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (46712, 343, NULL, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '10.4600', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3000', '2.0000', '2022-01-13', 'received', '10.4600', '10.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (46713, 343, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.5000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.5000', '5.0000', '2022-01-13', 'received', '20.5000', '20.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46714, 343, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-01-13', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46715, 343, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '15.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-01-13', '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 (46716, 343, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8500', '5.0000', '2022-01-13', 'received', '12.9700', '12.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (46717, 343, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '0.0000', '2022-01-13', 'received', '2.9200', '2.9200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (46718, 343, NULL, 9460, '37461390', 'ZURION 30\'S S/S', NULL, '55.0000', '73.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '2.0000', '2022-01-13', '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 (46719, 343, NULL, 7586, '1506', 'EMGIFLOX SUSP', NULL, '3.9600', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '10.0000', '2022-01-13', 'received', '3.9600', '3.9600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (46720, 343, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '21.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '2.0000', '2022-01-13', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46721, 343, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '21.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '5.0000', '2022-01-13', 'received', '16.1000', '16.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46722, 343, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '12.9000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '4.0000', '2022-01-13', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46723, 343, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.8000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '8.0000', '2022-01-13', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46724, 343, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '372.0000', '10.0000', '2022-01-13', 'received', '37.2000', '37.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '37.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 (46725, 343, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '6.0000', '2022-01-13', '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 (46726, 343, NULL, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '60.7700', '80.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.3100', '1.0000', '2022-01-13', 'received', '60.7700', '60.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '60.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 (46727, 343, NULL, 2777, '97856697', 'MMT SUSP', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '7.0000', '2022-01-13', '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 (46728, 343, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-01-13', '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 (46729, 343, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2000', '3.0000', '2022-01-13', 'received', '14.8000', '14.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46730, 343, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.9500', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7500', '5.0000', '2022-01-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 (46731, 343, NULL, 2816, '72412730', 'MOTILUM TAB', NULL, '0.9000', '1.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '60.0000', '2022-01-13', 'received', '0.9000', '0.9000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (46732, 343, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '3.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '12.0000', '2022-01-13', 'received', '2.3000', '2.3000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (46733, 343, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '47.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.1000', '2.0000', '2022-01-13', 'received', '33.0200', '33.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (46734, 343, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2000', '3.0000', '2022-01-13', 'received', '15.0400', '15.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (46735, 343, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '9.2200', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6600', '2.0000', '2022-01-13', 'received', '9.2200', '9.2200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (46736, 343, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '26.0000', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2022-01-13', '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 (46737, 343, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '7.0000', '2022-01-13', '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 (46738, 343, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '10.0000', '2022-01-13', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (46739, 343, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '9.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '8.0000', '2022-01-13', '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 (46740, 343, NULL, 7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', NULL, '15.6000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '0.0000', '2022-01-13', 'received', '15.6000', '15.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (46741, 343, NULL, 7546, '1466', 'VENTOLIN NEBULES 2.5MG', NULL, '16.3300', '22.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3200', '3.0000', '2022-01-13', 'received', '16.3300', '16.3300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (46742, 343, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.8600', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.3000', '5.0000', '2022-01-13', 'received', '7.8600', '7.8600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46743, 343, NULL, 2683, '54509632', 'ZINNAT 250 MG', NULL, '52.7000', '70.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.1000', '1.0000', '2022-01-13', 'received', '52.7000', '52.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '52.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 (46744, 343, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.5000', '79.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '238.0000', '4.0000', '2022-01-13', 'received', '59.5000', '59.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '59.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46745, 343, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.4500', '2.0000', '2022-01-13', 'received', '8.2300', '8.2300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (46746, 343, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.0200', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.4000', '13.0000', '2022-01-13', 'received', '4.0200', '4.0200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46747, 343, NULL, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.0000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2022-01-13', '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 (46748, 343, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '5.0000', '2022-01-13', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46749, 343, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.7000', '3.0000', '2022-01-13', '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 (46750, 343, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-13', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (46751, 343, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '7.0000', '2022-01-13', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46752, 343, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '0.0000', '2022-01-13', '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 (46753, 343, NULL, 7339, '1259', 'NO SPA40MG', NULL, '0.6600', '0.9000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '60.0000', '2022-01-13', 'received', '0.6600', '0.6600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (46754, 343, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.3500', '3.0000', '2022-01-13', 'received', '12.0700', '12.0700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46755, 343, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '3.0000', '2022-01-13', '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 (46756, 343, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.9500', '5.0000', '2022-01-13', 'received', '16.3900', '16.3900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46757, 343, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.9900', '32.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.9500', '2.0000', '2022-01-13', 'received', '22.9900', '22.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (46758, 343, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.6000', '0.0000', '2022-01-13', 'received', '7.0300', '7.0300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (46759, 343, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '28.0000', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '3.0000', '2022-01-13', '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 (46760, 343, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.5000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '3.0000', '2022-01-13', '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 (46761, 343, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-01-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 (46762, 343, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '1.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '6.0000', '2022-01-13', '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 (46763, 343, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2022-01-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 (46764, 343, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.3100', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '10.0000', '2022-01-13', 'received', '2.3100', '2.3100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46765, 343, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '7.0000', '2022-01-13', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46766, 343, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '5.0000', '2022-01-13', '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 (46767, 343, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '4.0000', '2022-01-13', '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 (46768, 343, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-01-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 (46769, 343, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.5500', '3.0000', '2022-01-13', 'received', '23.9100', '23.9100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46770, 343, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-01-13', '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 (46771, 343, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.4500', '4.0000', '2022-01-13', 'received', '13.2900', '13.2900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46772, 343, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9400', '1.5000', '150.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '123.0000', '2022-01-13', 'received', '0.9400', '0.9400', '150.0000', NULL, NULL, 1, 'pc', '150.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 (46773, 343, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5000', '2.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '31.0000', '2022-01-13', '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 (46774, 343, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4400', '0.0000', '2022-01-13', '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 (46775, 343, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '4.0000', '2022-01-13', '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 (46776, 343, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2022-01-13', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46777, 343, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '3.2000', '5.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '40.0000', '2022-01-13', '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 (46778, 343, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '53.3200', '71.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6400', '2.0000', '2022-01-13', 'received', '53.3200', '53.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.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 (46779, 343, NULL, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '21.0000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-01-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 (46780, 343, NULL, 1593, 'PR-306', 'LYRICA 75MG', NULL, '6.6000', '8.7000', '56.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '369.6000', '53.0000', '2022-01-13', 'received', '6.6000', '6.6000', '56.0000', NULL, NULL, 1, 'pc', '56.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 (46781, 343, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '34.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.9900', '3.0000', '2022-01-13', '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 (46782, 343, NULL, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', NULL, '8.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-13', '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 (46783, 343, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2022-01-13', '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 (46784, 343, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '8.0000', '2022-01-13', '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 (46885, NULL, NULL, 7849, '', '', 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 (46886, NULL, NULL, 9557, '', '', 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 (46887, NULL, NULL, 1358, '', '', 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 (46891, 336, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-11', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (46892, 336, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-11', '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 (46893, 336, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '13.0000', '17.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-11', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (46894, 336, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2022-01-11', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (46895, 336, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '8.0000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-11', '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 (46896, 336, NULL, 8641, '2561', 'ADUTWUMWAA MALA MIX', NULL, '8.0000', '11.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '2.0000', '2022-01-11', '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 (46897, 336, NULL, 7910, '1830', 'ULCERPLEX', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-01-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 (46898, 336, NULL, 8198, '2118', 'CELEBREX', NULL, '64.3300', '85.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.9900', '0.0000', '2022-01-11', 'received', '64.3300', '64.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '64.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 (46899, 336, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '8.2300', '11.0000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.8300', '13.0000', '2022-01-11', 'received', '8.2300', '8.2300', '21.0000', NULL, NULL, 1, 'pc', '21.0000', NULL, NULL, NULL, NULL, '8.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 (46900, 336, NULL, 7619, '1539', 'KY JELLY 75G', NULL, '36.9800', '49.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.9400', '0.0000', '2022-01-11', 'received', '36.9800', '36.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.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 (46901, 336, NULL, 7965, '1885', 'EXFORGE 10/160', NULL, '5.6100', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.0800', '0.0000', '2022-01-11', 'received', '5.6100', '5.6100', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '5.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 (46902, 336, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '16.4000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '0.0000', '2022-01-11', 'received', '16.4000', '16.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46903, 336, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '0.0000', '2022-01-11', '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 (46904, 336, NULL, 7635, '1555', 'DECATYLINE LOZ', NULL, '12.5000', '16.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '1.0000', '2022-01-11', 'received', '12.5000', '12.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (46905, 336, NULL, 8673, '2593', 'FLAREX', NULL, '15.3700', '24.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7400', '0.0000', '2022-01-11', 'received', '15.3700', '15.3700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (46906, 336, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-01-11', '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 (46907, 336, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '19.0000', '2022-01-11', '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 (46908, 336, NULL, 9745, '15413407', 'CAFALGIN JRN SUSP 100ML', NULL, '7.2000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-01-11', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46909, 336, NULL, 8063, '1983', 'GLUCOSE CHECK', NULL, '1.6000', '7.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '67.0000', '2022-01-11', 'received', '1.6000', '1.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (46910, 336, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '55.0000', '2022-01-11', 'received', '0.3200', '0.3200', '150.0000', NULL, NULL, 1, 'pc', '150.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 (46911, 336, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '3.0000', '2022-01-11', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46912, 336, NULL, 9745, '15413407', 'CAFALGIN JRN SUSP 100ML', NULL, '7.2000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-01-11', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46913, 336, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '11.7000', '15.5000', '15.5000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '181.3500', '13.5000', '2022-01-11', 'received', '11.7000', '11.7000', '15.5000', NULL, NULL, 1, 'pc', '15.5000', 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 (46914, 336, NULL, 8451, '2371', 'KLIRE ANTACID', NULL, '9.6000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-01-11', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46915, 336, NULL, 7548, '1468', 'SENACO', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-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 (46916, 336, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2022-01-11', '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 (46917, 336, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-01-11', '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 (46918, 336, NULL, 9746, '34591406', 'EUROVIT MULTIVIT GUMMIES', NULL, '13.5000', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2022-01-11', '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 (46919, 336, NULL, 7787, '1707', 'FLUREST', NULL, '11.8000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2022-01-11', '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 (46920, 336, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.6000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '3.0000', '2022-01-11', 'received', '7.6000', '7.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46921, 336, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6600', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '11.0000', '2022-01-11', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (46922, 336, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6000', '11.0000', '2022-01-11', 'received', '2.5300', '2.5300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (46923, 336, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '27.0000', '2022-01-11', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (46924, 336, NULL, 7708, '1628', 'TEEDAR', NULL, '7.8000', '10.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '0.0000', '2022-01-11', 'received', '7.8000', '7.8000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (46925, 336, NULL, 7785, '1705', 'GOGYNAX', NULL, '3.9000', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '10.0000', '2022-01-11', 'received', '3.9000', '3.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (46926, 336, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '4.2700', '6.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8900', '0.0000', '2022-01-11', 'received', '4.2700', '4.2700', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '4.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 (46927, 336, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '3.9100', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '4.0000', '2022-01-11', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (46928, 336, NULL, 9399, '3319', 'LETACAM (PIROXICAM)', NULL, '0.9800', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-01-11', '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 (46929, 336, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-01-11', '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 (46930, 336, NULL, 7574, '1494', 'PMF VASELINE', NULL, '8.2900', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1600', '4.0000', '2022-01-11', 'received', '8.2900', '8.2900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (46931, 336, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '3.3000', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '42.0000', '2022-01-11', 'received', '3.3000', '3.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (46932, 336, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '17.0000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '2.0000', '2022-01-11', '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 (46933, 336, NULL, 9757, '46466570', 'PROTAJOY', NULL, '26.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '5.0000', '2022-01-11', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46934, 336, NULL, 9753, '81638164', 'DOMINION POWDER ', NULL, '52.0000', '69.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '1.0000', '2022-01-11', 'received', '52.0000', '52.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46935, 336, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.5000', '5.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '12.0000', '2022-01-11', 'received', '2.5000', '2.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (46936, 336, NULL, 9758, '35077850', 'ZAMAC TAB 100MG', NULL, '3.1400', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '1.0000', '2022-01-11', '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 (46937, 336, NULL, 9759, '55914769', 'CANDID V GEL 30G', NULL, '19.6800', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.4000', '4.0000', '2022-01-11', 'received', '19.6800', '19.6800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (46938, 336, NULL, 9760, '13208200', 'RUFEDOL TAB', NULL, '1.1000', '2.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6000', '1.0000', '2022-01-11', 'received', '1.1000', '1.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (46939, 336, NULL, 9761, '83249404', 'IBUCAP FORTE CAPS', NULL, '2.1000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '10.0000', '2022-01-11', 'received', '2.1000', '2.1000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (46940, 336, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '98.5600', '130.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5600', '0.0000', '2022-01-11', '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 (46941, 336, NULL, 7546, '1466', 'VENTOLIN NEBULES 2.5MG', NULL, '16.3300', '22.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3200', '1.0000', '2022-01-11', 'received', '16.3300', '16.3300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (46942, 336, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.8500', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.8500', '0.0000', '2022-01-11', 'received', '14.8500', '14.8500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.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 (46943, 336, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.3000', '2.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.3000', '0.0000', '2022-01-11', 'received', '1.3000', '1.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46944, 336, NULL, 7509, '1429', 'ROOTER', NULL, '6.4000', '10.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4000', '0.0000', '2022-01-11', 'received', '6.4000', '6.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46945, 336, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.4200', '0.8000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.4200', '0.0000', '2022-01-11', 'received', '0.4200', '0.4200', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46946, NULL, NULL, 7626, '', '', 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 (46947, NULL, NULL, 9751, '', '', 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 (46948, NULL, NULL, 7485, '', '', 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 (46949, 345, NULL, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', NULL, '16.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2022-01-13', '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 (46950, 345, NULL, 8387, '2307', 'HONEY 500ML', NULL, '26.0000', '34.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '1.0000', '2022-01-13', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (46951, 345, NULL, 9409, '3329', 'SNICKERS S/S', NULL, '5.7000', '7.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '11.0000', '2022-01-13', 'received', '5.7000', '5.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.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 (46952, 345, NULL, 9094, '3014', 'BOUNTY', NULL, '5.7000', '7.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '6.0000', '2022-01-13', 'received', '5.7000', '5.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.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 (46953, 345, NULL, 9095, '3015', 'MALTESERS', NULL, '8.7600', '12.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.1200', '3.0000', '2022-01-13', 'received', '8.7600', '8.7600', '12.0000', NULL, NULL, 1, 'pc', '12.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 (46954, 345, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '110.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '0.0000', '2022-01-13', '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 (46955, 345, NULL, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '0.7300', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.7300', '0.0000', '2022-01-13', 'received', '0.7300', '0.7300', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46956, 345, NULL, 2991, '46377274', 'ZINTAB 10MG', NULL, '0.2500', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.2500', '1.0000', '2022-01-13', 'received', '0.2500', '0.2500', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46957, 345, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.5000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.5000', '1.0000', '2022-01-13', 'received', '0.5000', '0.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (46958, 345, NULL, 1991, '6181100234244', 'PARADISE POWDER', NULL, '6.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-01-13', '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 (46959, 345, NULL, 2717, '31018284', 'ZIIPMAN', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-01-13', '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 (46960, 344, NULL, 9409, '3329', 'SNICKERS S/S', NULL, '5.7000', '7.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '0.0000', '2022-01-13', 'received', '5.7000', '5.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.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 (46961, 344, NULL, 9094, '3014', 'BOUNTY', NULL, '5.7000', '7.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '0.0000', '2022-01-13', 'received', '5.7000', '5.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.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 (46962, 344, NULL, 9095, '3015', 'MALTESERS', NULL, '8.7600', '12.0000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.8800', '0.0000', '2022-01-13', 'received', '8.7600', '8.7600', '13.0000', NULL, NULL, 1, 'pc', '13.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 (46963, 344, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '110.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2022-01-13', '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 (47050, NULL, NULL, 9117, '', '', 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 (47051, NULL, NULL, 2528, '', '', 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 (47052, NULL, NULL, 7451, '', '', 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 (47053, 340, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-11', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (47054, 340, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '4.6000', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2022-01-11', '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 (47055, 340, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '7.0000', '2022-01-11', '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 (47056, 340, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-01-11', '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 (47057, 340, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.4000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '3.0000', '2022-01-11', '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 (47058, 340, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '18.8100', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4300', '1.0000', '2022-01-11', 'received', '18.8100', '18.8100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (47059, 340, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.7000', '0.0000', '2022-01-11', '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 (47060, 340, NULL, 9723, '60831092', 'MUCOSLY JNR SYR 100ML', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-11', '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 (47061, 340, NULL, 9722, '09730188', 'MUCOSLY ADULT SYR 100ML', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-01-11', '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 (47062, 340, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '0.0000', '2022-01-11', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (47063, 340, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-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 (47064, 340, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-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 (47065, 340, NULL, 7482, '1402', 'MAXMOX 500', NULL, '3.2500', '5.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-11', 'received', '3.2500', '3.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (47066, 340, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '13.5000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-01-11', '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 (47067, 340, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4500', '0.0000', '2022-01-11', 'received', '7.1500', '7.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (47068, 340, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.6100', '6.5000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2700', '0.0000', '2022-01-11', 'received', '4.6100', '4.6100', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '4.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 (47069, 340, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '2.1900', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.9500', '0.0000', '2022-01-11', 'received', '2.1900', '2.1900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (47070, 340, NULL, 7802, '1722', '~AMOXICILIN 250 BLISS', NULL, '0.9200', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-01-11', 'received', '0.9200', '0.9200', '50.0000', NULL, NULL, 1, 'pc', '50.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 (47071, 340, NULL, 9727, '67843986', 'KIFARU TAB 100ML', NULL, '6.7000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2022-01-11', '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 (47072, 340, NULL, 9728, '36721830', 'KIFARU TAB 50ML', NULL, '5.4000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-01-11', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47073, 340, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-11', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (47074, 340, NULL, 2986, '39982987', 'PANACIN TAB', NULL, '0.7700', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.4000', '5.0000', '2022-01-11', 'received', '0.7700', '0.7700', '20.0000', NULL, NULL, 1, 'pc', '20.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 (47075, 340, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.7000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-11', 'received', '2.7000', '2.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (47076, 340, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6600', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '27.0000', '2022-01-11', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (47077, 340, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '3.0000', '2022-01-11', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (47078, 340, NULL, 9730, '76969575', 'HAEMO FORTE SYRUP 200ML', NULL, '18.2000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0000', '2.0000', '2022-01-11', 'received', '18.2000', '18.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47079, 340, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-01-11', '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 (47080, 340, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-01-11', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (47081, 340, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-11', '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 (47082, 340, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-01-11', '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 (47083, 340, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-01-11', '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 (47084, 340, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '34.0000', '2022-01-11', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (47085, 340, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-01-11', '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 (47086, 340, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.5800', '9.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.3200', '0.0000', '2022-01-11', 'received', '6.5800', '6.5800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (47087, 340, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '13.5000', '18.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-01-11', '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 (47088, 340, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-11', '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 (47089, 340, NULL, 7922, '1842', 'BABY COU LINC', NULL, '3.1700', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8500', '2.0000', '2022-01-11', 'received', '3.1700', '3.1700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (47090, 340, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6000', '3.0000', '2022-01-11', 'received', '2.5300', '2.5300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (47091, 340, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '5.0000', '2022-01-11', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (47092, 340, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '0.0000', '2022-01-11', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47093, 340, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '3.9100', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5500', '0.0000', '2022-01-11', 'received', '3.9100', '3.9100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (47094, 340, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '11.7000', '15.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-01-11', '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 (47095, 340, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '9.6000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-01-11', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47096, 340, NULL, 9742, '51812839', 'KOFOF FAMILY SYRUP150ML', NULL, '4.8000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2022-01-11', '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 (47097, 340, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '4.0000', '2022-01-11', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47098, 340, NULL, 9749, '22739967', 'PMF 200G DENNEX', NULL, '8.2900', '11.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1600', '3.0000', '2022-01-11', 'received', '8.2900', '8.2900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (47099, 340, NULL, 9746, '34591406', 'EUROVIT MULTIVIT GUMMIES', NULL, '13.5000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '1.0000', '2022-01-11', '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 (47100, 340, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4000', '0.0000', '2022-01-11', 'received', '2.0800', '2.0800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (47101, 340, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.6000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-01-11', 'received', '7.6000', '7.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47102, 340, NULL, 9745, '15413407', 'CAFALGIN JRN SUSP 100ML', NULL, '7.2000', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-01-11', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47103, 340, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2300', '1.5000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4400', '0.0000', '2022-01-11', 'received', '1.2300', '1.2300', '28.0000', NULL, NULL, 1, 'pc', '28.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 (47104, 340, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2022-01-11', '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 (47105, 340, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9800', '0.0000', '2022-01-11', 'received', '6.3300', '6.3300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (47106, 340, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '0.0000', '2022-01-11', 'received', '2.9200', '2.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (47107, 340, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.2500', '0.0000', '2022-01-11', 'received', '3.5500', '3.5500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (47108, 340, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.0300', '2.6000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.9000', '30.0000', '2022-01-11', 'received', '2.0300', '2.0300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (47109, 340, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.7600', '24.0000', '2022-01-11', 'received', '2.7400', '2.7400', '24.0000', NULL, NULL, 1, 'pc', '24.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 (47110, 340, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.5000', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-01-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 (47111, 340, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '27.0000', '35.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-01-11', 'received', '27.0000', '27.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (47112, 340, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.0000', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-01-11', '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 (47113, 340, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8000', '0.0000', '2022-01-11', 'received', '1.8800', '1.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (47114, 340, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '9.9700', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8500', '0.0000', '2022-01-11', 'received', '9.9700', '9.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (47115, 340, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '8.5000', '11.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.5000', '1.0000', '2022-01-11', '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 (47116, 340, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-11', '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 (47117, 340, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.5600', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5600', '0.0000', '2022-01-11', 'received', '14.5600', '14.5600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.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 (47118, 340, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.7600', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2800', '3.0000', '2022-01-11', 'received', '19.7600', '19.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (47119, 340, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '2.9800', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '0.0000', '2022-01-11', 'received', '2.9800', '2.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (47120, 340, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.4100', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2300', '3.0000', '2022-01-11', 'received', '9.4100', '9.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (47121, 340, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.6000', '0.0000', '2022-01-11', 'received', '7.0300', '7.0300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (47122, 340, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '1.0000', '2022-01-11', 'received', '12.5000', '12.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47123, 340, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '10.0000', '2022-01-11', '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 (47124, 340, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.9800', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '2.0000', '2022-01-11', 'received', '6.9800', '6.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (47125, 340, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '7.9800', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '2.0000', '2022-01-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 (47126, 340, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '9.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '1.0000', '2022-01-11', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (47127, 340, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2022-01-11', 'received', '7.4000', '7.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47128, 340, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '5.0000', '2022-01-11', '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 (47129, 340, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '4.0000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-01-11', '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 (47130, 340, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '10.5000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-01-11', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47131, 340, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2022-01-11', '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 (47132, 340, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-01-11', '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 (47133, 340, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-11', '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 (47134, 340, NULL, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '8.0000', '11.0000', '11.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '10.0000', '2022-01-11', 'received', '8.0000', '8.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (47135, 340, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.5000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '3.0000', '2022-01-11', '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 (47136, 340, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '20.0000', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2022-01-11', '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 (47137, 340, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2022-01-11', '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 (47138, 340, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '110.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-01-11', '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 (47139, 340, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.5600', '0.8000', '200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '0.0000', '2022-01-11', 'received', '0.5600', '0.5600', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.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 (47140, 333, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '20.0000', '2022-01-07', 'received', '1.1000', '1.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (47141, 333, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '5.0000', '2022-01-07', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (47142, 333, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-07', '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 (47143, 333, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-07', '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 (47144, 333, NULL, 9722, '09730188', 'MUCOSLY ADULT SYR 100ML', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-01-07', '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 (47145, 333, NULL, 9723, '60831092', 'MUCOSLY JNR SYR 100ML', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-01-07', '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 (47146, 333, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '21.0000', '2022-01-07', 'received', '0.7000', '0.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (47147, 333, NULL, 8456, '2376', 'CARTEF DS', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '9.0000', '2022-01-07', '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 (47148, 333, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '50.0000', '2022-01-07', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (47149, 333, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '35.4500', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.3500', '3.0000', '2022-01-07', 'received', '35.4500', '35.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (47150, 333, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '9.0000', '2022-01-07', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47151, 333, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '10.0000', '2022-01-07', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47152, 333, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '19.0000', '2022-01-07', '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 (47153, 333, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.1000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '7.0000', '2022-01-07', '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 (47154, NULL, NULL, 7531, '', '', 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 (47155, NULL, NULL, 1959, '', '', 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 (47156, NULL, NULL, 9106, '', '', 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 (47157, NULL, NULL, 1809, '', '', 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 (47158, NULL, NULL, 7961, '', '', 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 (47638, NULL, NULL, 3048, '', '', 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 (47811, NULL, NULL, 9409, '', '', 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 (47830, 348, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.0000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '2.0000', '2022-01-15', '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 (47831, 348, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7000', '5.0000', '2022-01-15', 'received', '6.9400', '6.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (47832, 348, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '9.3100', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5500', '4.0000', '2022-01-15', 'received', '9.3100', '9.3100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (47833, 348, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '3.2000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '7.0000', '2022-01-15', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47834, 348, NULL, 1937, 'PR-650', 'Kofof child exp 1070D02', NULL, '4.8000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2022-01-15', '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 (47835, 348, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-01-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 (47836, 348, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '24.0000', '2022-01-15', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (47837, 348, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.1000', '3.0000', '2022-01-15', 'received', '16.7000', '16.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47838, 348, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '10.0000', '2022-01-15', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47839, 348, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '15.7300', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.1900', '3.0000', '2022-01-15', 'received', '15.7300', '15.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (47840, 348, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.5800', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7400', '2.0000', '2022-01-15', 'received', '6.5800', '6.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (47841, 348, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-01-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 (47842, 348, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '6.0000', '2022-01-15', '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 (47843, 348, NULL, 3019, '72127749', 'HEPTOLIFE SYR 200ML', NULL, '9.7000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.1000', '3.0000', '2022-01-15', 'received', '9.7000', '9.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (47844, 348, NULL, 2299, '8904107900961', 'DICLOLEX GEL 30G', NULL, '5.9000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '3.0000', '2022-01-15', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47845, 348, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '3.0000', '2022-01-15', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47846, 348, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.8000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '2.0000', '2022-01-15', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47847, 348, NULL, 1808, '8906045432597', 'VITAFORCE SYRUP', NULL, '14.7000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '2.0000', '2022-01-15', 'received', '14.7000', '14.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (47848, 348, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.2000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6000', '2.0000', '2022-01-15', 'received', '2.2000', '2.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47849, NULL, NULL, 8683, '', '', 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 (47850, NULL, NULL, 8536, '', '', 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 (47851, NULL, NULL, 9758, '', '', 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 (47852, NULL, NULL, 9211, '', '', 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 (47853, NULL, NULL, 1782, '', '', 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 (47854, 349, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-01-16', '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 (47855, 349, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-16', '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 (47856, 350, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-01-16', '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 (47857, 350, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-16', '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 (47858, 351, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-16', '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 (47859, NULL, NULL, 2136, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47860, NULL, NULL, 1479, '', '', 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 (47861, NULL, NULL, 8941, '', '', 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 (47862, NULL, NULL, 7674, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-320.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47863, NULL, NULL, 7731, '', '', 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 (47864, NULL, NULL, 9731, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (47865, NULL, NULL, 7457, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-52.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47866, NULL, NULL, 7743, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (47867, NULL, NULL, 9274, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-58.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47868, NULL, NULL, 7781, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-238.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47869, NULL, NULL, 8234, '', '', 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 (47870, NULL, NULL, 8680, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (47871, NULL, NULL, 8699, '', '', 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 (47872, NULL, NULL, 9734, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-308.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47873, NULL, NULL, 7428, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-96.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47874, NULL, NULL, 9272, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-46.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47875, NULL, NULL, 2962, '', '', 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 (47876, NULL, NULL, 7526, '', '', 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 (47877, NULL, NULL, 7523, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (47878, NULL, NULL, 7805, '', '', 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 (47879, NULL, NULL, 8721, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47880, NULL, NULL, 9245, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (47881, NULL, NULL, 8033, '', '', 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 (47882, NULL, NULL, 7917, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-193.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47883, NULL, NULL, 8810, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (47884, NULL, NULL, 9254, '', '', 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 (47885, NULL, NULL, 7853, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47886, NULL, NULL, 8722, '', '', 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 (47887, NULL, NULL, 7348, '', '', 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 (47888, NULL, NULL, 8945, '', '', 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 (47889, NULL, NULL, 7729, '', '', 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 (47890, NULL, NULL, 9407, '', '', 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 (47891, NULL, NULL, 8046, '', '', 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 (47892, NULL, NULL, 9758, '', '', 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 (47893, NULL, NULL, 9732, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-58.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47894, NULL, NULL, 8417, '', '', 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 (47895, NULL, NULL, 8444, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (47896, NULL, NULL, 9094, '', '', 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 (47897, NULL, NULL, 9095, '', '', 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 (47898, NULL, NULL, 8037, '', '', 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 (47899, NULL, NULL, 8304, '', '', 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 (47900, NULL, NULL, 7892, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47901, 352, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '9.7600', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5600', '1.0000', '2022-01-17', 'received', '9.7600', '9.7600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (47902, 352, NULL, 1507, '002', 'SEFLOX EYE/EAR DROP', NULL, '4.5000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-01-17', '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 (47903, 352, NULL, 7984, '1904', 'DEXATROL DROP', NULL, '11.9000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7000', '0.0000', '2022-01-17', 'received', '11.9000', '11.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47904, 352, NULL, 8673, '2593', 'FLAREX', NULL, '20.0000', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-17', '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 (47905, 352, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '8.8900', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6700', '0.0000', '2022-01-17', '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 (47906, 352, NULL, 8047, '1967', 'DEEP FREEZE OINT', NULL, '27.5000', '36.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-01-17', 'received', '27.5000', '27.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47907, 352, NULL, 7556, '1476', 'OLFEN GEL 50GM', NULL, '18.0000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-01-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 (47908, 352, NULL, 7420, '1340', 'DEEP FREEZE SPRAY 150ML', NULL, '29.9500', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9000', '2.0000', '2022-01-17', 'received', '29.9500', '29.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (47909, 352, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.0000', '2.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '24.0000', '2022-01-17', '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 (47910, 352, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '29.1700', '38.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.3400', '0.0000', '2022-01-17', 'received', '29.1700', '29.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (47911, 352, NULL, 7925, '1845', 'NEXCOFER B/S', NULL, '8.3000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '0.0000', '2022-01-17', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (47912, 352, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '60.0000', '79.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-01-17', 'received', '60.0000', '60.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47913, 352, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '19.5100', '26.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0600', '4.0000', '2022-01-17', 'received', '19.5100', '19.5100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '19.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 (47914, 352, NULL, 8703, '2623', 'HAEMATOVITE SRP', NULL, '7.1600', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6400', '2.0000', '2022-01-17', '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 (47915, 352, NULL, 7591, '1511', 'GYPRONE TAB', NULL, '2.7500', '2.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7500', '0.0000', '2022-01-17', 'received', '2.7500', '2.7500', '25.0000', NULL, NULL, 1, 'pc', '25.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 (47916, 352, NULL, 8039, '1959', 'ACIDOM', NULL, '12.9000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '0.0000', '2022-01-17', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47917, 352, NULL, 8296, '2216', 'OMEPRAZOLE HYCID', NULL, '1.7000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2022-01-17', '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 (47918, 352, NULL, 8275, '2195', 'CLARITROMYCIN  500MG UK', NULL, '30.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-17', '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 (47919, 352, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '52.8000', '70.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.6000', '0.0000', '2022-01-17', 'received', '52.8000', '52.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.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 (47920, 352, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '20.0000', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '1.0000', '2022-01-17', '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 (47921, 352, NULL, 8077, '1997', 'MYCOSTAT', NULL, '3.6000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-01-17', '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 (47922, 352, NULL, 7963, '1883', 'HEPTO PEP', NULL, '15.4000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-01-17', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (47923, 352, NULL, 8196, '2116', 'VISIONACE', NULL, '32.0000', '42.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '0.0000', '2022-01-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 (47924, 352, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-01-17', '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 (47925, 352, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2022-01-17', '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 (47926, 352, NULL, 7401, '1321', 'WELLBABY MULTI-VIT LIQ', NULL, '57.9000', '77.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '173.7000', '0.0000', '2022-01-17', 'received', '57.9000', '57.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '57.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 (47927, 352, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '9.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-01-17', '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 (47928, 352, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '9.0000', '2022-01-17', '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 (47929, 352, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-01-17', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47930, 352, NULL, 8067, '1987', 'HYDROGEN ECL', NULL, '4.6900', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4500', '0.0000', '2022-01-17', '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 (47931, 352, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '4.2400', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '0.0000', '2022-01-17', 'received', '4.2400', '4.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47932, 352, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.0000', '20.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2022-01-17', '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 (47933, 352, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '4.0000', '2022-01-17', '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 (47934, 352, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '1.0000', '2022-01-17', '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 (47935, 352, NULL, 2925, '77810587', 'WHITFIELD OINTMENT', NULL, '5.9500', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7500', '0.0000', '2022-01-17', 'received', '5.9500', '5.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (47936, 352, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '1.0000', '2022-01-17', '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 (47937, 352, NULL, 7807, '1727', 'DOMI 30', NULL, '2.1600', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2022-01-17', 'received', '2.1600', '2.1600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (47938, 352, NULL, 7339, '1259', 'NO SPA40MG', NULL, '0.6600', '0.9000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-01-17', 'received', '0.6600', '0.6600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (47939, 352, NULL, 9008, '2928', 'TCP 2OOML', NULL, '45.2700', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.5400', '1.0000', '2022-01-17', 'received', '45.2700', '45.2700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (47940, 352, NULL, 9295, '3215', 'TCP 50ML', NULL, '28.5000', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-01-17', '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 (47941, 352, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.0000', '11.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-01-17', '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 (47942, 352, NULL, 9199, '3119', 'KLOVIRAL PESS', NULL, '19.0000', '26.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '5.0000', '2022-01-17', '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 (47943, 352, NULL, 9100, '3020', '~JOY VIKEL', NULL, '26.0000', '34.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '10.0000', '2022-01-17', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47944, 352, NULL, 8721, '2641', 'IMPRESSER CAPS', NULL, '23.0000', '30.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.0000', '0.0000', '2022-01-17', 'received', '23.0000', '23.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (47945, 352, NULL, 7658, '1578', 'DICLO DENK SUPP', NULL, '2.0200', '2.8000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.2000', '0.0000', '2022-01-17', 'received', '2.0200', '2.0200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (47946, 352, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '8.4300', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2900', '0.0000', '2022-01-17', 'received', '8.4300', '8.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (47947, 352, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.3000', '2.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-01-17', 'received', '1.3000', '1.3000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (47948, 352, NULL, 8699, '2619', 'PANACIN', NULL, '0.9000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-17', 'received', '0.9000', '0.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (47949, 352, NULL, 7881, '1801', 'FENBASE', NULL, '2.3000', '3.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-01-17', 'received', '2.3000', '2.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (47950, 352, NULL, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '2.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '7.0000', '2022-01-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 (47951, 352, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-17', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (47952, 352, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.5600', '0.8000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '0.0000', '2022-01-17', 'received', '0.5600', '0.5600', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.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 (47953, 352, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '14.6500', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.2500', '1.0000', '2022-01-17', 'received', '14.6500', '14.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (47954, 352, NULL, 8669, '2589', 'ATWOOD BITTERS', NULL, '35.8000', '47.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.6000', '0.0000', '2022-01-17', '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 (47955, 353, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.0200', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.4000', '9.0000', '2022-01-17', 'received', '4.0200', '4.0200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (47956, 353, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6500', '4.0000', '2022-01-17', '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 (47957, 353, NULL, 9648, '71133764', 'FIESTA LUBRICANT GEL 40ML BIG', NULL, '16.3300', '21.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '163.3000', '7.0000', '2022-01-17', 'received', '16.3300', '16.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (47958, 353, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '3.8000', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '20.0000', '2022-01-17', 'received', '3.8000', '3.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (47959, 353, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '12.8000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '2.0000', '2022-01-17', 'received', '12.8000', '12.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (47960, 353, NULL, 8518, '2438', 'FOLIC ACID CRESCENT 28S', NULL, '7.1400', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7000', '2.0000', '2022-01-17', 'received', '7.1400', '7.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (47961, 353, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '118.0600', '157.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '354.1800', '3.0000', '2022-01-17', 'received', '118.0600', '118.0600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '118.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 (47962, 354, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '28.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.9000', '3.0000', '2022-01-17', 'received', '21.1800', '21.1800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47963, 354, NULL, 3011, '26812806', 'ARTHROTEC TABS 75MG 20\'S', NULL, '3.7800', '5.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.8000', '56.0000', '2022-01-17', 'received', '3.7800', '3.7800', '60.0000', NULL, NULL, 1, 'pc', '60.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 (47964, 354, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '15.6000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.0000', '2022-01-17', 'received', '15.6000', '15.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (47965, 354, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '29.1400', '38.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.4200', '3.0000', '2022-01-17', 'received', '29.1400', '29.1400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (47966, 354, NULL, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', NULL, '65.0000', '86.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-17', '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 (47967, 354, NULL, 2665, '94928957', 'FLEMING 625MG', NULL, '23.7600', '33.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5200', '2.0000', '2022-01-17', 'received', '23.7600', '23.7600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (47968, 354, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.8000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2022-01-17', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (47969, 354, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '2.0000', '2022-01-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 (47970, 354, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '3.0000', '2022-01-17', '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 (47971, 354, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '5.0000', '2022-01-17', '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 (47972, 354, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.4000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '5.0000', '2022-01-17', 'received', '12.4000', '12.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47973, 354, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '2.0000', '2022-01-17', '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 (47974, 354, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.9500', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7500', '4.0000', '2022-01-17', '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 (47975, 354, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-17', '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 (47976, 354, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '7.0000', '2022-01-17', '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 (47977, 354, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '5.0000', '2022-01-17', 'received', '3.9000', '3.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47978, 354, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3000', '10.0000', '2022-01-17', 'received', '1.6300', '1.6300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47979, 354, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '1.8400', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '0.0000', '2022-01-17', 'received', '1.8400', '1.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (47980, 354, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '12.0000', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '9.0000', '2022-01-17', '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 (47981, 354, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-01-17', '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 (47982, 354, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '3.0000', '2022-01-17', 'received', '37.2000', '37.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '37.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 (47983, 354, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '28.0000', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '3.0000', '2022-01-17', '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 (47984, 354, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '5.0000', '2022-01-17', '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 (47985, 354, NULL, 2627, '47630599', 'ATORVASTATIN 10MG', NULL, '10.5000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '3.0000', '2022-01-17', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47986, 354, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.0000', '17.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '390.0000', '30.0000', '2022-01-17', 'received', '13.0000', '13.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (47987, 354, NULL, 9280, '3200', 'ENAMYCIN SUSP ECL', NULL, '12.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-01-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 (47988, 354, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.0200', '37.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.1000', '0.0000', '2022-01-17', 'received', '28.0200', '28.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.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 (47989, 354, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.6000', '25.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '2.0000', '2022-01-17', 'received', '18.6000', '18.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (47990, 354, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.3100', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '10.0000', '2022-01-17', 'received', '2.3100', '2.3100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (47991, 354, NULL, 8013, '1933', 'PINPAC EXTRA', NULL, '3.6500', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '5.0000', '2022-01-17', 'received', '3.6500', '3.6500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (47992, 354, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '18.8100', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0500', '4.0000', '2022-01-17', 'received', '18.8100', '18.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (47993, 354, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS 0.05%', NULL, '16.3900', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.9500', '4.0000', '2022-01-17', 'received', '16.3900', '16.3900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47994, 354, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '3.0000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2022-01-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 (47995, 354, NULL, 3047, '01534299', 'AVAMYS NASAL SPRAY 7.5MCG', NULL, '52.0200', '69.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0400', '1.0000', '2022-01-17', 'received', '52.0200', '52.0200', '2.0000', NULL, NULL, 1, 'pc', '2.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 (47996, 354, NULL, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', NULL, '13.9500', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.7500', '5.0000', '2022-01-17', 'received', '13.9500', '13.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (47997, 354, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '8.2000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '4.0000', '2022-01-17', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (47998, 354, NULL, 1954, '87246804', 'COLDRID TAB', NULL, '3.4000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '9.0000', '2022-01-17', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (47999, 354, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.0000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-01-17', '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 (48000, 354, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '118.0600', '157.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '236.1200', '1.0000', '2022-01-17', 'received', '118.0600', '118.0600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '118.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 (48001, 355, NULL, 7509, '1429', 'ROOTER', NULL, '6.4000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-01-17', 'received', '6.4000', '6.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48002, 355, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.3000', '2.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-01-17', 'received', '1.3000', '1.3000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48003, 355, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-17', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (48004, 355, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.5600', '0.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-01-17', 'received', '0.5600', '0.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (48005, 355, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '13.5000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '1.0000', '2022-01-17', '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 (48006, 355, NULL, 7762, '1682', 'GV PAINT', NULL, '1.5000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-01-17', '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 (48007, 355, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.2200', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '6.0000', '2022-01-17', 'received', '0.2200', '0.2200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (48008, 355, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '73.0000', '2022-01-17', '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 (48009, 355, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2022-01-17', 'received', '0.2600', '0.2600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (48010, 355, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '4.2400', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '0.0000', '2022-01-17', 'received', '4.2400', '4.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48011, NULL, NULL, 9772, '', '', 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 (48012, 346, NULL, 9609, '47724870', 'MALIN BABY PLUS SYRUP', NULL, '6.4000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '6.0000', '2022-01-13', '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 (48013, 346, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '20.0000', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-01-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 (48014, 346, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9400', '3.0000', '2022-01-13', 'received', '14.9800', '14.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (48015, 346, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.4300', '2.0000', '72.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.9600', '72.0000', '2022-01-13', 'received', '1.4300', '1.4300', '72.0000', NULL, NULL, 1, 'pc', '72.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 (48016, 346, NULL, 9508, '43167014', 'SIMPLE LINTUS ADULT COUGH', NULL, '3.6000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '0.0000', '2022-01-13', 'received', '3.6000', '3.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48017, 346, NULL, 2993, '86417416', 'SICAZINK TONIC 200ML', NULL, '13.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-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 (48018, 346, NULL, 8204, '2124', 'OSONS COD LIVER', NULL, '16.6000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2000', '0.0000', '2022-01-13', 'received', '16.6000', '16.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (48019, 346, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '4.3300', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9800', '6.0000', '2022-01-13', 'received', '4.3300', '4.3300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48020, 346, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.3800', '6.0000', '2022-01-13', 'received', '8.2300', '8.2300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (48021, 346, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.6000', '19.0000', '2022-01-13', 'received', '7.0300', '7.0300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (48022, 346, NULL, 2299, '8904107900961', 'DICLOLEX GEL 30G', NULL, '6.5400', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '1.0000', '2022-01-13', 'received', '6.5400', '6.5400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (48023, 346, NULL, 7575, '1495', 'CALAMINE OINT', NULL, '5.8000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '3.0000', '2022-01-13', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48024, 346, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '9.2200', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4400', '1.0000', '2022-01-13', 'received', '9.2200', '9.2200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (48025, 346, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '40.0000', '2022-01-13', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (48026, 346, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '5.2000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-01-13', '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 (48027, 346, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '6.0000', '2022-01-13', '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 (48028, 346, NULL, 2765, '39680747', 'DANRUB OINT', NULL, '5.9500', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8500', '3.0000', '2022-01-13', 'received', '5.9500', '5.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (48029, 346, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.8000', '20.0000', '2022-01-13', '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 (48030, 346, NULL, 9458, '31675978', 'CYPRON PLUS TABS', NULL, '1.8000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '16.0000', '2022-01-13', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48031, 346, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '70.5200', '93.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0400', '1.0000', '2022-01-13', 'received', '70.5200', '70.5200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '70.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 (48032, 346, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.0000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-01-13', '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 (48033, 346, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '5.0000', '2022-01-13', '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 (48034, 346, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '6.4000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '10.0000', '2022-01-13', 'received', '6.4000', '6.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48035, 346, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.4000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2022-01-13', 'received', '12.4000', '12.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48036, 346, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-01-13', '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 (48037, 346, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '5.0000', '2022-01-13', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48038, 346, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '5.0000', '2022-01-13', '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 (48039, 346, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '10.0000', '2022-01-13', '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 (48040, 346, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '27.0000', '35.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-13', '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 (48041, 346, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '4.6000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '6.0000', '2022-01-13', '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 (48042, 346, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS 0.05%', NULL, '16.3900', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '3.0000', '2022-01-13', '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 (48043, 346, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '6.0000', '2022-01-13', '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 (48044, 346, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-01-13', '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 (48045, 346, NULL, 8298, '2218', 'ITCHTAMOL', NULL, '7.8400', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5200', '2.0000', '2022-01-13', '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 (48046, 346, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.6000', '3.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2022-01-13', 'received', '2.6000', '2.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48047, 346, NULL, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '6.3600', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0800', '3.0000', '2022-01-13', '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 (48048, 346, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9000', '3.0000', '2022-01-13', '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 (48049, 346, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-01-13', '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 (48050, 346, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '12.1000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.2000', '2.0000', '2022-01-13', 'received', '12.1000', '12.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (48051, 346, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9300', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.7900', '3.0000', '2022-01-13', '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 (48052, 346, NULL, 9713, '60887627', 'LETAPLUX B SRP', NULL, '1.5200', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.6000', '5.0000', '2022-01-13', 'received', '1.5200', '1.5200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48053, 346, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '4.2400', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '0.0000', '2022-01-13', 'received', '4.2400', '4.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48054, 346, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '4.9500', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '5.0000', '2022-01-13', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48055, 346, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2022-01-13', '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 (48056, 346, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '3.0000', '2022-01-13', 'received', '4.4000', '4.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48057, 346, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.3600', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0800', '0.0000', '2022-01-13', '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 (48058, 346, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '7.3000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '1.0000', '2022-01-13', 'received', '7.3000', '7.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48059, 346, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '16.8900', '22.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6700', '0.0000', '2022-01-13', 'received', '16.8900', '16.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (48060, 346, NULL, 1764, 'PR-477', 'METHYLATED  SPIRIT  125ML', NULL, '4.3900', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9000', '6.0000', '2022-01-13', 'received', '4.3900', '4.3900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48061, 346, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '1.0000', '2022-01-13', '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 (48062, 346, NULL, 7752, '1672', 'HYDROGEN LOCAL', NULL, '3.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-01-13', '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 (48063, 346, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '3.0000', '2022-01-13', '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 (48064, 346, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '8.2000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '0.0000', '2022-01-13', '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 (48065, 346, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '53.3200', '71.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6400', '2.0000', '2022-01-13', 'received', '53.3200', '53.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.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 (48066, 346, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '5.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '12.0000', '2022-01-13', '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 (48067, 346, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '14.3000', '19.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '2.0000', '2022-01-13', '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 (48068, 346, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7700', '3.0000', '2022-01-13', '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 (48069, 346, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '2.0000', '2022-01-13', '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 (48070, 346, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '33.9800', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9600', '2.0000', '2022-01-13', 'received', '33.9800', '33.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (48071, 346, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1600', '3.0000', '2022-01-13', 'received', '4.7200', '4.7200', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48072, 346, NULL, 9594, '47137610', 'FLUCHLOXACILLIN SUSP LETAP', NULL, '2.5500', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '5.0000', '2022-01-13', 'received', '2.5500', '2.5500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48073, 346, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7600', '2.3000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.7600', '0.0000', '2022-01-13', 'received', '1.7600', '1.7600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '1.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 (48074, 346, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.9500', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '0.0000', '2022-01-13', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48075, 346, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2000', '0.0000', '2022-01-13', 'received', '20.6000', '20.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48076, 346, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '32.0000', '42.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.0000', '2.0000', '2022-01-13', 'received', '32.0000', '32.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48077, 346, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.9900', '32.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9700', '2.0000', '2022-01-13', 'received', '22.9900', '22.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (48078, 346, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2022-01-13', '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 (48079, 346, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2022-01-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 (48080, 346, NULL, 9556, '98215171', 'RONFIT COLD TAB', NULL, '0.4500', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-13', 'received', '0.4500', '0.4500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48081, 346, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '4.8500', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5500', '3.0000', '2022-01-13', 'received', '4.8500', '4.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (48082, 346, NULL, 2662, '78880294', 'LONART TAB', NULL, '4.9500', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '5.0000', '2022-01-13', 'received', '4.9500', '4.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (48083, 346, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '5.0000', '2022-01-13', 'received', '1.8500', '1.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.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 (48084, 346, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '4.2400', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7200', '2.0000', '2022-01-13', 'received', '4.2400', '4.2400', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48085, 346, NULL, 1535, 'PR-248', 'PINEK XL 30MG TAB', NULL, '2.5000', '5.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '1.0000', '2022-01-13', 'received', '2.5000', '2.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48086, 346, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.1000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.6000', '6.0000', '2022-01-13', '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 (48087, 346, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '3.3000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-01-13', '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 (48088, 346, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.0000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-01-13', '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 (48089, 346, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.2000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.2000', '0.0000', '2022-01-13', 'received', '4.2000', '4.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48090, 346, NULL, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '6.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2022-01-13', '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 (48091, 346, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.8000', '0.0000', '2022-01-13', 'received', '0.8000', '0.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48092, 346, NULL, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', NULL, '0.3100', '1.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.3100', '0.0000', '2022-01-13', 'received', '0.3100', '0.3100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '0.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 (48093, 346, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.9800', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.8800', '6.0000', '2022-01-13', 'received', '6.9800', '6.9800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (48094, 346, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '12.0000', '2022-01-13', '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 (48095, 346, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '4.0000', '2022-01-13', '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 (48096, 346, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '5.0000', '2022-01-13', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48097, 346, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '3.0000', '2022-01-13', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48098, 346, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '47.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0600', '3.0000', '2022-01-13', 'received', '33.0200', '33.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (48099, 346, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-01-13', '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 (48100, 346, NULL, 2847, '13076232', 'SILVER BIRD', NULL, '14.5000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '1.0000', '2022-01-13', '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 (48101, 346, NULL, 2060, '54947392', 'PARACETAMOL TAB LOCAL', NULL, '0.5600', '0.8000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '61.0000', '2022-01-13', 'received', '0.5600', '0.5600', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.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 (48102, 346, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.5600', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6800', '1.0000', '2022-01-13', 'received', '14.5600', '14.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (48103, 346, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '9.6500', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '3.0000', '2022-01-13', 'received', '9.6500', '9.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (48104, 346, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '5.3500', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0500', '3.0000', '2022-01-13', 'received', '5.3500', '5.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (48105, 346, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '1.8400', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '7.0000', '2022-01-13', 'received', '1.8400', '1.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (48106, 346, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '10.0000', '2022-01-13', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48107, 346, NULL, 9145, '3065', 'FINE LIFE BLOOD TONIC', NULL, '6.8900', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6700', '0.0000', '2022-01-13', '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 (48108, 346, NULL, 8354, '2274', 'GLUCORANGE POWDER LETAP', NULL, '4.7000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '3.0000', '2022-01-13', '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 (48109, 346, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2022-01-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 (48110, 346, NULL, 7612, '1532', 'DOXYCYCLINE CAPS LETAP', NULL, '1.7300', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6000', '0.0000', '2022-01-13', 'received', '1.7300', '1.7300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (48111, 346, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '4.2700', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '0.0000', '2022-01-13', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48112, 346, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.1000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '10.0000', '2022-01-13', '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 (48113, 346, NULL, 8354, '2274', 'GLUCORANGE POWDER LETAP', NULL, '4.7000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '3.0000', '2022-01-13', '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 (48114, 346, NULL, 9777, '90211082', 'CANESTEN CREAM', NULL, '22.9900', '30.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.9600', '4.0000', '2022-01-13', 'received', '22.9900', '22.9900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '22.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 (48115, 346, NULL, 9778, '06911698', 'MENSTAK TAB', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '10.0000', '2022-01-13', '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 (48116, 346, NULL, 9779, '73495973', 'COVONIA CHESTY', NULL, '23.0000', '30.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '1.0000', '2022-01-13', '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 (48117, 346, NULL, 9780, '33770583', 'COVONIA CHESTY S/F 150ML', NULL, '27.0000', '36.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-01-13', '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 (48118, 346, NULL, 2906, '74619015', 'MB 760 TAB', NULL, '2.6000', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '14.0000', '2022-01-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 (48119, 346, NULL, 9781, '99039575', 'BC 56 CREAM', NULL, '35.0000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '2.0000', '2022-01-13', '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 (48120, 346, NULL, 9782, '24286086', 'COVERSYL 10MG', NULL, '158.0000', '208.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '316.0000', '2.0000', '2022-01-13', 'received', '158.0000', '158.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '158.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48121, 356, NULL, 8596, '2516', 'POSTINOR LOCAL', NULL, '2.5000', '5.0000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.0000', '67.0000', '2022-01-17', 'received', '2.5000', '2.5000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (48122, NULL, NULL, 1623, '', '', 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 (48123, 347, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-15', '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 (48124, 347, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.6000', '7.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4000', '3.0000', '2022-01-15', 'received', '5.6000', '5.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48125, 347, NULL, 3023, '83478580', 'MALIN JUNIOR', NULL, '5.4600', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3800', '3.0000', '2022-01-15', 'received', '5.4600', '5.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (48126, 347, NULL, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '40.2000', '53.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.4000', '2.0000', '2022-01-15', 'received', '40.2000', '40.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.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 (48127, 347, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4900', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4700', '3.0000', '2022-01-15', 'received', '5.4900', '5.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (48128, 347, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.9800', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '0.0000', '2022-01-15', 'received', '6.9800', '6.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (48129, 347, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '5.2000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-01-15', '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 (48130, 347, NULL, 2267, '52018792', 'KIDICS SYRUP', NULL, '9.5000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-01-15', '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 (48131, 347, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.9800', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '0.0000', '2022-01-15', '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 (48132, 347, NULL, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '10.4600', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3800', '0.0000', '2022-01-15', 'received', '10.4600', '10.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (48133, 347, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '155.0000', '206.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '1.0000', '2022-01-15', 'received', '155.0000', '155.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '155.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48134, 347, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0000', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2022-01-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 (48135, 347, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '27.0000', '42.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-15', '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 (48136, 347, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8500', '0.0000', '2022-01-15', 'received', '12.9700', '12.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (48137, 347, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-01-15', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48138, 347, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9400', '0.0000', '2022-01-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 (48139, 347, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '1.0000', '2022-01-15', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48140, 347, 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', '2022-01-15', '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 (48141, 347, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.6600', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.9800', '0.0000', '2022-01-15', 'received', '7.6600', '7.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (48142, 347, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.0000', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-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 (48143, 347, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.7800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '50.0000', '2022-01-15', 'received', '0.7800', '0.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48144, 347, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-15', '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 (48145, 347, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-01-15', '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 (48146, 347, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5800', '0.0000', '2022-01-15', '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 (48147, 347, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '0.0000', '2022-01-15', 'received', '1.8500', '1.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.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 (48148, 347, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.4000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-01-15', '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 (48149, 347, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-01-15', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48150, 347, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2022-01-15', '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 (48151, 347, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.5000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-01-15', '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 (48152, 347, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-15', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48153, 347, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '4.0000', '2022-01-15', '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 (48154, 347, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.0000', '47.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-15', '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 (48155, 347, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '0.0000', '2022-01-15', '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 (48156, 347, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '0.0000', '2022-01-15', '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 (48157, 347, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.8900', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4500', '0.0000', '2022-01-15', 'received', '3.8900', '3.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (48158, 347, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2022-01-15', '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 (48159, 347, NULL, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '30.0000', '43.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-01-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 (48160, 347, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2300', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7600', '7.0000', '2022-01-15', 'received', '4.2300', '4.2300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (48161, 347, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '5.2300', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.9200', '1.0000', '2022-01-15', 'received', '5.2300', '5.2300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48162, 347, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '6.2000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '0.0000', '2022-01-15', '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 (48163, 347, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-01-15', '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 (48164, 347, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.9500', '19.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.8500', '1.0000', '2022-01-15', 'received', '14.9500', '14.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (48165, 347, NULL, 9686, '65274615', 'HYDROCORTISONE CREAM (SOVEREIGN) 30G', NULL, '13.4900', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.4700', '3.0000', '2022-01-15', 'received', '13.4900', '13.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (48166, 347, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.7600', '12.0000', '2022-01-15', 'received', '2.7400', '2.7400', '24.0000', NULL, NULL, 1, 'pc', '24.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 (48167, 347, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '6.0000', '2022-01-15', '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 (48168, 347, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-01-15', '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 (48169, 347, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '33.0000', '44.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-01-15', '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 (48170, 347, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '5.7200', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-01-15', 'received', '5.7200', '5.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (48171, 347, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-01-15', '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 (48172, 347, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.9500', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '0.0000', '2022-01-15', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48173, 347, NULL, 2282, '40904860', 'SOVIT VIT E CAPS', NULL, '18.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-01-15', '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 (48174, 347, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9200', '0.0000', '2022-01-15', 'received', '14.9800', '14.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (48175, 347, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.4100', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2300', '3.0000', '2022-01-15', 'received', '9.4100', '9.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (48176, 347, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '10.3300', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.9900', '1.0000', '2022-01-15', 'received', '10.3300', '10.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (48177, 347, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.0000', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '5.0000', '2022-01-15', '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 (48178, 347, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '0.9900', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '2.0000', '2022-01-15', '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 (48179, 347, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '1.3500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-01-15', 'received', '1.3500', '1.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48180, 347, NULL, 7411, '1331', 'CITRO C', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-01-15', '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 (48181, 347, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '11.0000', '2022-01-15', '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 (48182, 347, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.5000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '2.0000', '2022-01-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 (48183, 347, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '0.0000', '2022-01-15', '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 (48184, 347, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '32.0000', '42.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-01-15', '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 (48185, 347, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0200', '6.0000', '2022-01-15', '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 (48186, 347, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2022-01-15', '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 (48187, 347, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2022-01-15', 'received', '10.5000', '10.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48188, 347, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.8000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-15', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48189, 347, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2022-01-15', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48190, 347, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-01-15', 'received', '1.1000', '1.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (48191, 347, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-01-15', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48192, 347, NULL, 2941, '60137035', 'FUMET SUSPENSION', NULL, '2.6600', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3000', '0.0000', '2022-01-15', '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 (48193, 347, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-01-15', '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 (48194, 347, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '2.0000', '2022-01-15', '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 (48195, 347, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '22.1000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.3000', '0.0000', '2022-01-15', 'received', '22.1000', '22.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48196, 347, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.9500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '3.0000', '2022-01-15', '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 (48197, 347, NULL, 2990, '71484949', 'ENTRAMOL 500 TAB', NULL, '3.7300', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.7300', '0.0000', '2022-01-15', 'received', '3.7300', '3.7300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.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 (48198, 347, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '6.6000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2022-01-15', '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 (48199, 347, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.2000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.2000', '0.0000', '2022-01-15', '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 (48200, 347, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-15', '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 (48201, 347, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '0.0000', '2022-01-15', 'received', '37.2000', '37.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '37.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 (48202, 347, NULL, 8454, '2374', 'SHALATERM TAB', NULL, '4.1500', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-01-15', 'received', '4.1500', '4.1500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48203, 347, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.4000', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2022-01-15', 'received', '0.4000', '0.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (48204, 347, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '8.4600', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3800', '1.0000', '2022-01-15', 'received', '8.4600', '8.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (48205, 347, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-01-15', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48206, 347, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6000', '0.0000', '2022-01-15', 'received', '1.7300', '1.7300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (48207, 347, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.7000', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-15', 'received', '1.7000', '1.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (48208, 347, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '5.3500', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7500', '0.0000', '2022-01-15', 'received', '5.3500', '5.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (48209, 347, NULL, 7882, '1802', 'OMEPRAZOLE', NULL, '1.8000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '18.0000', '2022-01-15', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48210, 347, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '24.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2022-01-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 (48211, 347, NULL, 2766, '95455611', 'LUBRIMAX JELLY 70G', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-15', '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 (48212, NULL, NULL, 7685, '', '', 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 (48213, NULL, NULL, 9723, '', '', 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 (48214, NULL, NULL, 2970, '', '', 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 (48215, NULL, NULL, 9636, '', '', 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 (48216, NULL, NULL, 7711, '', '', 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 (48217, NULL, NULL, 7473, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-385.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48218, NULL, NULL, 8064, '', '', 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 (48219, NULL, NULL, 7778, '', '', 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 (48220, NULL, NULL, 7651, '', '', 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 (48221, NULL, NULL, 7822, '', '', 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 (48222, NULL, NULL, 8200, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48223, NULL, NULL, 8308, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (48224, NULL, NULL, 7489, '', '', 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 (48225, NULL, NULL, 7769, '', '', 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 (48226, NULL, NULL, 7678, '', '', 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 (48227, NULL, NULL, 9668, '', '', 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 (48228, NULL, NULL, 8000, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48229, NULL, NULL, 7774, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48230, NULL, NULL, 7872, '', '', 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 (48231, NULL, NULL, 9498, '', '', 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 (48232, NULL, NULL, 9691, '', '', 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 (48233, NULL, NULL, 7705, '', '', 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 (48234, NULL, NULL, 7921, '', '', 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 (48235, NULL, NULL, 7612, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48236, NULL, NULL, 7324, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-66.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48237, NULL, NULL, 2761, '', '', 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 (48238, NULL, NULL, 7317, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-86.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48239, NULL, NULL, 8698, '', '', 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 (48240, NULL, NULL, 7334, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-72.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48241, NULL, NULL, 7719, '', '', 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 (48242, NULL, NULL, 7703, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-75.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48243, NULL, NULL, 7927, '', '', 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 (48244, NULL, NULL, 7946, '', '', 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 (48245, NULL, NULL, 8488, '', '', 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 (48246, NULL, NULL, 9013, '', '', 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 (48247, NULL, NULL, 9012, '', '', 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 (48248, NULL, NULL, 8616, '', '', 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 (48249, 322, NULL, 8005, '1925', 'ADDYZOA', NULL, '52.0000', '68.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '0.0000', '2021-12-29', 'received', '52.0000', '52.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48250, 322, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '90.0000', '206.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '1.0000', '2021-12-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 (48251, 322, NULL, 7990, '1910', 'COX B', NULL, '13.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-12-29', '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 (48252, 322, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2021-12-29', '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 (48253, 322, NULL, 7705, '1625', 'POSTINOR', NULL, '22.9900', '32.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.9500', '0.0000', '2021-12-29', 'received', '22.9900', '22.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (48254, 322, NULL, 7946, '1866', 'BASECOLD', NULL, '1.1000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '13.0000', '2021-12-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 (48255, 322, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.7000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '2.0000', '2021-12-29', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48256, 322, NULL, 9335, '3255', 'IROVIT DROP', NULL, '25.0000', '33.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-12-29', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48257, 322, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '9.9800', '13.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9800', '0.0000', '2021-12-29', 'received', '9.9800', '9.9800', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48258, 322, NULL, 7973, '1893', 'VITAGLOBIN', NULL, '41.1400', '54.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.2800', '0.0000', '2021-12-29', 'received', '41.1400', '41.1400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (48259, 322, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '12.8000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6000', '0.0000', '2021-12-29', 'received', '12.8000', '12.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (48260, 322, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '7.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-12-29', '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 (48261, 322, NULL, 7625, '1545', 'VALUPAC VIT C500S', NULL, '17.0000', '22.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '4.0000', '2021-12-29', '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 (48262, 322, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6700', '0.0000', '2021-12-29', 'received', '19.8900', '19.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (48263, 322, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '26.0000', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-12-29', '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 (48264, 322, NULL, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '41.2800', '55.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5600', '1.0000', '2021-12-29', 'received', '41.2800', '41.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (48265, 322, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '15.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-12-29', '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 (48266, 322, NULL, 9505, '13744415', 'WELLMAN PLUS', NULL, '77.0000', '102.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '0.0000', '2021-12-29', 'received', '77.0000', '77.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '77.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48267, 322, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '35.2600', '93.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0400', '3.0000', '2021-12-29', 'received', '35.2600', '35.2600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '35.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 (48268, 322, NULL, 8780, '2700', 'IMPRESSER OIL', NULL, '46.0000', '61.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-12-29', 'received', '46.0000', '46.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48269, 322, NULL, 7326, '1246', 'M2 TONE', NULL, '54.0000', '74.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-12-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 (48270, 322, NULL, 8457, '2377', 'CARTEF SUSP', NULL, '4.5000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-12-29', '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 (48271, 322, NULL, 7541, '1461', 'metformin 500mg', NULL, '0.5000', '0.7000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '2.0000', '2021-12-29', 'received', '0.5000', '0.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48272, 322, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.9800', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.6000', '0.0000', '2021-12-29', 'received', '7.9800', '7.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48273, 322, NULL, 7456, '1376', 'VENTOLIN INHALER', NULL, '25.0000', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-12-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 (48274, 322, NULL, 7885, '1805', 'DIFLUCAN', NULL, '82.8700', '110.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.6100', '0.0000', '2021-12-29', 'received', '82.8700', '82.8700', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48275, 322, NULL, 7748, '1668', 'VIROL', NULL, '6.8500', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7000', '0.0000', '2021-12-29', 'received', '6.8500', '6.8500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48276, 322, NULL, 9338, '3258', 'RESCOFER SYRUP', NULL, '14.9800', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9600', '0.0000', '2021-12-29', 'received', '14.9800', '14.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (48277, 322, NULL, 2847, '13076232', 'SILVER BIRD', NULL, '14.5000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '2.0000', '2021-12-29', '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 (48278, 322, NULL, 7702, '1622', 'MERCY CREAM', NULL, '4.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-12-29', '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 (48279, 322, NULL, 7359, '1279', 'BORGES125', NULL, '11.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-12-29', '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 (48280, 322, NULL, 7886, '1806', 'ABONIKI', NULL, '4.2000', '6.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.8000', '0.0000', '2021-12-29', 'received', '4.2000', '4.2000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (48281, 322, NULL, 7952, '1872', 'JOY OINT', NULL, '2.3000', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2021-12-29', 'received', '2.3000', '2.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48282, 322, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '1.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2021-12-29', '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 (48283, 322, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2021-12-29', '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 (48284, 322, NULL, 7736, '1656', 'NUGEL -O', NULL, '16.2000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-12-29', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48285, 322, NULL, 8072, '1992', 'LYRICA 75', NULL, '6.6000', '8.7000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.8000', '0.0000', '2021-12-29', 'received', '6.6000', '6.6000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (48286, 322, NULL, 7375, '1295', 'AXACEF 500', NULL, '3.9300', '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.5000', '0.0000', '2021-12-29', 'received', '3.9300', '3.9300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (48287, 322, NULL, 9193, '3113', 'AZIRON 500MG TABS', NULL, '7.0000', '9.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2021-12-29', 'received', '7.0000', '7.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48288, 322, NULL, 8276, '2196', 'AZILEX 250', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-12-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 (48289, 322, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '24.0000', '33.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '4.0000', '2021-12-29', 'received', '24.0000', '24.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48290, 322, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '46.0000', '2021-12-29', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48291, 322, NULL, 7490, '1410', 'SYRINGE 5CC', NULL, '0.2300', '0.4000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '37.0000', '2021-12-29', 'received', '0.2300', '0.2300', '100.0000', NULL, NULL, 1, 'pc', '100.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 (48292, 322, NULL, 9243, '3163', 'MEDGLOBIN SYR', NULL, '20.5000', '27.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '0.0000', '2021-12-29', '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 (48293, 322, NULL, 9242, '3162', 'MEDGLOBIN CAPS', NULL, '25.5000', '34.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-12-29', 'received', '25.5000', '25.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48294, 322, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '11.9800', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9400', '2.0000', '2021-12-29', 'received', '11.9800', '11.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (48295, 322, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '6.0000', '2021-12-29', '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 (48296, 322, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '58.0000', '77.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '1.0000', '2021-12-29', 'received', '58.0000', '58.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48297, 322, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '6.3600', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.1600', '0.0000', '2021-12-29', 'received', '6.3600', '6.3600', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48298, 322, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.1200', '32.0000', '2021-12-29', 'received', '5.9100', '5.9100', '32.0000', NULL, NULL, 1, 'pc', '32.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 (48299, 322, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.3400', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.0000', '50.0000', '2021-12-29', 'received', '3.3400', '3.3400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (48300, 322, NULL, 7409, '1329', 'PRIMOLUT N', NULL, '4.3300', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9900', '0.0000', '2021-12-29', 'received', '4.3300', '4.3300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48301, 322, NULL, 9337, '3257', 'ANDREWS LIVER SALTS', NULL, '0.7000', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '4.0000', '2021-12-29', '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 (48302, 322, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.0000', '11.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-12-29', '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 (48303, 322, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.0000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-12-29', '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 (48304, 322, NULL, 7715, '1635', 'MALARIA TEST KIT', NULL, '3.9000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-12-29', 'received', '3.9000', '3.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48305, 322, NULL, 7628, '1548', 'ANUSOL SUPP', NULL, '2.2900', '4.5000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.9200', '0.0000', '2021-12-29', 'received', '2.2900', '2.2900', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '2.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 (48306, 322, NULL, 7853, '1773', 'BELLS VIT C', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-12-29', '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 (48307, 322, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-12-29', '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 (48308, 322, NULL, 8067, '1987', 'HYDROGEN ECL', NULL, '4.6900', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4500', '0.0000', '2021-12-29', '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 (48309, 322, NULL, 8449, '2369', 'FEROLLEX SRP', NULL, '11.9000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7000', '0.0000', '2021-12-29', 'received', '11.9000', '11.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48310, 322, NULL, 7666, '1586', 'DYMOL TAB', NULL, '3.6000', '5.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2021-12-29', 'received', '3.6000', '3.6000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48311, 322, NULL, 9098, '3018', 'JOY VIKIL', NULL, '26.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-12-29', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48312, 321, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-12-29', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48313, 321, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '14.3200', '22.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.9200', '0.0000', '2021-12-29', 'received', '14.3200', '14.3200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.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 (48314, 321, NULL, 7821, '1741', 'TIME HERBAL', NULL, '9.4500', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2500', '0.0000', '2021-12-29', 'received', '9.4500', '9.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (48315, 321, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '20.0000', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-12-29', '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 (48316, 321, NULL, 7887, '1807', 'LIVING BIT CAPS', NULL, '18.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-12-29', '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 (48317, 321, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-12-29', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48318, 321, NULL, 8288, '2208', 'GLOVES', NULL, '1.1600', '1.8000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2021-12-29', 'received', '1.1600', '1.1600', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '1.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 (48319, 321, NULL, 2457, '33345179', 'PILIEF TABS', NULL, '22.0000', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-12-29', '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 (48320, 321, NULL, 2999, '72534299', 'ALPHA GARLIC CAPS', NULL, '13.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2021-12-29', '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 (48321, 321, NULL, 1797, '8850769011388', 'PROSTACARE CAPS 30S', NULL, '53.0000', '70.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.0000', '3.0000', '2021-12-29', 'received', '53.0000', '53.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '53.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48322, 321, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '13.0000', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '1.0000', '2021-12-29', '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 (48323, 321, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-12-29', '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 (48324, 321, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-12-29', '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 (48325, 321, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '114.0900', '150.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0900', '0.0000', '2021-12-29', 'received', '114.0900', '114.0900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '114.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 (48326, 321, NULL, 9535, '52629239', 'VIGINAX CREAM', NULL, '3.4000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '5.0000', '2021-12-29', '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 (48327, 321, NULL, 9109, '3029', 'EMGIBRUFEN', NULL, '1.0000', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '100.0000', '2021-12-29', 'received', '1.0000', '1.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (48328, 321, NULL, 8020, '1940', 'MUCOLEX J', NULL, '11.9000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7000', '0.0000', '2021-12-29', 'received', '11.9000', '11.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48329, 321, NULL, 3022, '51946298', 'SEDALYN ADULT', NULL, '4.3000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '0.0000', '2021-12-29', '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 (48330, 321, NULL, 7693, '1613', 'SEDALIN JNR', NULL, '4.2000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '3.0000', '2021-12-29', '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 (48331, 321, NULL, 8456, '2376', 'CARTEF DS', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-12-29', '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 (48332, 321, NULL, 8686, '2606', 'LG GLIZONE 30', NULL, '7.9900', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9500', '0.0000', '2021-12-29', 'received', '7.9900', '7.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48333, 321, NULL, 7411, '1331', 'CITRO C', NULL, '1.3600', '2.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-12-29', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (48334, 321, NULL, 7762, '1682', 'GV PAINT', NULL, '1.5000', '3.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-12-29', '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 (48335, 321, NULL, 8417, '2337', 'COMBACT-N', NULL, '5.5000', '7.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-12-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 (48336, 321, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.2000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '5.0000', '2021-12-29', '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 (48337, 321, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '0.0000', '2021-12-29', '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 (48338, 321, NULL, 8672, '2592', 'PINEK-20', NULL, '1.2000', '1.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-12-29', '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 (48339, 321, NULL, 7731, '1651', 'RUBBING ALC', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-12-29', '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 (48340, 321, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '8.2300', '11.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.4500', '0.0000', '2021-12-29', 'received', '8.2300', '8.2300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (48341, 321, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.7200', '1.0000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '194.0000', '2021-12-29', 'received', '0.7200', '0.7200', '200.0000', NULL, NULL, 1, 'pc', '200.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 (48342, 321, NULL, 9541, '43531163', 'LEVOFLOXACIN (LEVOBACT) 500MG', NULL, '42.0000', '56.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '0.0000', '2021-12-29', 'received', '42.0000', '42.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48343, 321, NULL, 7423, '1343', 'COOL EYES', NULL, '13.2000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-12-29', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48344, 321, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2021-12-29', '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 (48345, 321, NULL, 8098, '2018', 'PROMAN', NULL, '31.9700', '42.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9700', '0.0000', '2021-12-29', 'received', '31.9700', '31.9700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '31.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 (48346, 321, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '26.6600', '35.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.3200', '0.0000', '2021-12-29', 'received', '26.6600', '26.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (48347, 321, NULL, 2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', NULL, '1.7000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '3.0000', '2021-12-29', '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 (48348, 321, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.0000', '21.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '2.0000', '2021-12-29', '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 (48349, 321, NULL, 8027, '1947', 'CANDIBIOTIC EAR', NULL, '19.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-12-29', '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 (48350, 321, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.9800', '10.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '239.4000', '0.0000', '2021-12-29', 'received', '7.9800', '7.9800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (48351, 321, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-12-29', '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 (48352, 321, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-12-29', '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 (48353, 321, NULL, 3014, '02636584', 'DAY NURSE LIQUID 240ML', NULL, '58.5100', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5100', '0.0000', '2021-12-29', 'received', '58.5100', '58.5100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '58.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 (48354, 321, NULL, 8022, '1942', 'NIGHT NURSE SRP', NULL, '57.9500', '76.4900', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.9500', '0.0000', '2021-12-29', 'received', '57.9500', '57.9500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '57.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 (48355, 321, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '0.0000', '2021-12-29', 'received', '3.4900', '3.4900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48356, 321, NULL, 7651, '1571', 'RHIZINE SRP', NULL, '2.6700', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '0.0000', '2021-12-29', 'received', '2.6700', '2.6700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48357, 321, NULL, 8481, '2401', 'PIRITON ORG SRP', NULL, '33.0000', '45.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-12-29', 'received', '33.0000', '33.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48358, 321, NULL, 8276, '2196', 'AZILEX 250', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-12-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 (48359, 321, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '9.0000', '2021-12-29', '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 (48360, 321, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '3.0000', '2021-12-29', '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 (48361, 321, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.6000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-12-29', '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 (48362, 321, NULL, 8312, '2232', 'HOT WAT BOT COVERED', NULL, '22.9100', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.5500', '1.0000', '2021-12-29', 'received', '22.9100', '22.9100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (48363, 321, NULL, 8313, '2233', 'HOT WAT BOT', NULL, '14.9900', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9700', '2.0000', '2021-12-29', 'received', '14.9900', '14.9900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48364, 321, NULL, 8317, '2237', 'SOLUBLE VIT C', NULL, '15.0000', '25.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '12.0000', '2021-12-29', '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 (48365, 321, NULL, 7903, '1823', 'FRANKO HERBAL', NULL, '13.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '2.0000', '2021-12-29', '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 (48366, 321, NULL, 7885, '1805', 'DIFLUCAN', NULL, '82.8700', '110.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.7400', '0.0000', '2021-12-29', '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 (48367, 321, NULL, 7378, '1298', 'ATACAND PLUS 16/12.5MG', NULL, '148.9000', '197.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.9000', '0.0000', '2021-12-29', 'received', '148.9000', '148.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '148.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 (48368, 321, NULL, 7641, '1561', 'LYDIA', NULL, '6.5000', '8.5800', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '0.0000', '2021-12-29', 'received', '6.5000', '6.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (48369, 321, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.0000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-12-29', '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 (48370, 321, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.9800', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2021-12-29', 'received', '4.9800', '4.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48371, 321, NULL, 7586, '1506', 'EMGIFLOX SUSP', NULL, '3.9600', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2021-12-29', 'received', '3.9600', '3.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (48372, 321, NULL, 1844, 'PR-557', 'LETAP AMPICLOX', NULL, '1.6300', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6000', '20.0000', '2021-12-29', 'received', '1.6300', '1.6300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48373, 321, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2900', '5.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8000', '19.0000', '2021-12-29', 'received', '3.2900', '3.2900', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48374, 321, NULL, 7489, '1409', 'AMPICLOX SUSP', NULL, '2.4300', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.1500', '2.0000', '2021-12-29', 'received', '2.4300', '2.4300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (48375, 321, NULL, 9243, '3163', 'MEDGLOBIN SYR', NULL, '20.5000', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '0.0000', '2021-12-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 (48376, 321, NULL, 7680, '1600', 'FLAGENTYL', NULL, '21.1800', '28.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5400', '0.0000', '2021-12-29', '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 (48377, 321, NULL, 9375, '3295', 'GINGKO BILOBA EXTRACT', NULL, '16.3300', '21.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.9800', '6.0000', '2021-12-29', 'received', '16.3300', '16.3300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (48378, 321, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '24.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-12-29', '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 (48379, 321, NULL, 8407, '2327', 'CYFEN TAB', NULL, '1.0700', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.5000', '37.0000', '2021-12-29', 'received', '1.0700', '1.0700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (48380, 321, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '2.3000', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2021-12-29', 'received', '2.3000', '2.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48381, 321, NULL, 8408, '2328', 'CYFEN SRP', NULL, '10.5000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2021-12-29', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48382, 321, NULL, 9337, '3257', 'ANDREWS LIVER SALTS', NULL, '0.7000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '17.0000', '2021-12-29', '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 (48383, 321, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-12-29', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48384, 321, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '1.6000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-12-29', '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 (48385, 321, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.7800', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '23.0000', '2021-12-29', 'received', '0.7800', '0.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48386, 321, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '6.6000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2021-12-29', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48387, 321, NULL, 8722, '2642', 'VOLTAREEN 100', NULL, '21.0000', '28.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '0.0000', '2021-12-29', 'received', '21.0000', '21.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48388, 321, NULL, 8721, '2641', 'IMPRESSER CAPS', NULL, '22.0000', '30.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-12-29', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48389, 321, NULL, 7554, '1474', 'NAKLOFEN DUO', NULL, '1.6500', '2.2000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '0.0000', '2021-12-29', 'received', '1.6500', '1.6500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (48390, 321, NULL, 8194, '2114', 'MALIN JUNIOR', NULL, '5.4600', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7600', '0.0000', '2021-12-29', 'received', '5.4600', '5.4600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (48391, 321, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '26.0000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-12-29', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48392, 321, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '26.0000', '34.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-12-29', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48393, 321, NULL, 8433, '2353', 'LIV 52 TAB', NULL, '33.0000', '44.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-12-29', '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 (48394, 321, NULL, 8138, '2058', 'ANUSOL OINT', NULL, '29.5000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.5000', '0.0000', '2021-12-29', '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 (48415, NULL, NULL, 9714, '', '', 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 (48456, 357, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.9400', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '0.0000', '2022-01-18', 'received', '3.9400', '3.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (48457, 357, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.8400', '4.0000', '90.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '255.6000', '0.0000', '2022-01-18', 'received', '2.8400', '2.8400', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '2.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 (48458, 357, NULL, 3018, '27169206', 'PARA SYR EXETER', NULL, '4.9100', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5500', '0.0000', '2022-01-18', 'received', '4.9100', '4.9100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48459, 357, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '4.9000', '6.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '3.0000', '2022-01-18', '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 (48460, 357, NULL, 7866, '1786', 'BCO STRONG6-23', NULL, '2.5000', '4.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2022-01-18', '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 (48461, 357, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.0100', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0500', '0.0000', '2022-01-18', '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 (48462, 357, NULL, 2945, '07580425', 'CIPROLEX EYE OINTMENT', NULL, '9.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-01-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 (48463, 357, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '9.8800', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6400', '3.0000', '2022-01-18', 'received', '9.8800', '9.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (48464, 357, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '28.0700', '37.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1400', '0.0000', '2022-01-18', 'received', '28.0700', '28.0700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (48465, 357, NULL, 2488, '57207509', 'DAONIL TAB (SANOFI) ', NULL, '7.0000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '10.0000', '2022-01-18', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48466, 357, NULL, 9718, '64620536', 'AMINO PEP 200ML', NULL, '14.3000', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9000', '1.0000', '2022-01-18', '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 (48467, 357, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.9000', '0.0000', '2022-01-18', 'received', '20.3000', '20.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (48468, 357, NULL, 1710, 'PR-423', 'PRONALIN ADULT', NULL, '3.4300', '4.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2900', '0.0000', '2022-01-18', '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 (48469, 357, NULL, 8529, '2449', 'LORATIDINE 10 TEVA', NULL, '0.2600', '0.4000', '90.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '89.0000', '2022-01-18', 'received', '0.2600', '0.2600', '90.0000', NULL, NULL, 1, 'pc', '90.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 (48470, 357, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '4.4100', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2300', '0.0000', '2022-01-18', 'received', '4.4100', '4.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (48471, 357, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-01-18', '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 (48472, 357, NULL, 2495, '19113194', 'CANDID V3', NULL, '8.6100', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8300', '0.0000', '2022-01-18', '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 (48473, 357, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '14.7500', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-01-18', 'received', '14.7500', '14.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (48474, 357, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-01-18', '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 (48475, 357, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5100', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.3000', '0.0000', '2022-01-18', 'received', '0.5100', '0.5100', '30.0000', NULL, NULL, 1, 'pc', '30.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 (48476, 357, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.1400', '5.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.0000', '0.0000', '2022-01-18', 'received', '3.1400', '3.1400', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48477, 357, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '3.0000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-01-18', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48478, 357, NULL, 8736, '2656', 'LEVOTHYROXINE 100MG', NULL, '3.4000', '21.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2022-01-18', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48479, 357, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '60.0000', '2022-01-18', 'received', '0.9000', '0.9000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (48480, 357, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.5200', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-01-18', 'received', '0.5200', '0.5200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (48481, 357, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '1.0900', '1.5000', '56.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0400', '0.0000', '2022-01-18', 'received', '1.0900', '1.0900', '56.0000', NULL, NULL, 1, 'pc', '56.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 (48482, 357, NULL, 9595, '11957600', 'FIT ONE CONDOMS 3\'', NULL, '3.4400', '4.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7600', '0.0000', '2022-01-18', 'received', '3.4400', '3.4400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.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 (48483, 357, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-01-18', '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 (48484, 357, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-01-18', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48485, 357, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '0.0000', '2022-01-18', '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 (48486, 357, NULL, 7352, '1272', 'ANAFRANIL25', NULL, '1.9800', '2.6000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '28.0000', '2022-01-18', 'received', '1.9800', '1.9800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (48487, 357, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.8000', '15.0000', '2022-01-18', 'received', '6.2900', '6.2900', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48488, 357, NULL, 1755, 'PR-468', 'STOPKOF EXPT (ADULT) 100ML', NULL, '5.9800', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9000', '0.0000', '2022-01-18', 'received', '5.9800', '5.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48489, 357, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.9500', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '0.0000', '2022-01-18', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48490, 357, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-01-18', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48491, 357, NULL, 8420, '2340', 'BIOVID FORTE', NULL, '10.0000', '13.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '8.0000', '2022-01-18', '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 (48492, 357, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '4.2700', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.7000', '0.0000', '2022-01-18', 'received', '4.2700', '4.2700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (48493, 357, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.2000', '8.0000', '2022-01-18', 'received', '7.0300', '7.0300', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '7.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 (48494, 357, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '47.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.1000', '0.0000', '2022-01-18', 'received', '33.0200', '33.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (48495, 357, NULL, 1908, 'PR-621', 'Magacid tablet', NULL, '0.7000', '1.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2022-01-18', 'received', '0.7000', '0.7000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (48496, 357, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-01-18', '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 (48497, 357, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-01-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 (48498, 357, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2900', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9000', '10.0000', '2022-01-18', '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 (48499, 357, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.9500', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8500', '2.0000', '2022-01-18', 'received', '9.9500', '9.9500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48500, 357, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.8000', '0.0000', '2022-01-18', 'received', '1.7300', '1.7300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (48501, 357, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '22.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2022-01-18', 'received', '16.2000', '16.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48502, 357, NULL, 3054, '23818302', 'AZIRON 500MG TABS', NULL, '7.0000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-18', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48503, 357, NULL, 9251, '3171', 'METRO 400MG TABS EXETER', NULL, '6.5300', '9.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1200', '4.0000', '2022-01-18', 'received', '6.5300', '6.5300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (48504, 357, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.8000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-18', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48505, 357, NULL, 7626, '1546', 'VITA POWER SRP', NULL, '7.6000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2000', '0.0000', '2022-01-18', 'received', '7.6000', '7.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48506, 357, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.8000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.6000', '0.0000', '2022-01-18', 'received', '5.8000', '5.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48507, 357, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.0000', '14.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '8.0000', '2022-01-18', 'received', '11.0000', '11.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48508, 357, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9800', '0.0000', '2022-01-18', '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 (48509, 357, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-01-18', '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 (48510, 357, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.3600', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0800', '0.0000', '2022-01-18', '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 (48511, 357, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4800', '0.0000', '2022-01-18', 'received', '11.8700', '11.8700', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48512, 357, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '18.0200', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0400', '0.0000', '2022-01-18', 'received', '18.0200', '18.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (48513, 357, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '45.0000', '2022-01-18', 'received', '1.1000', '1.1000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (48514, 357, NULL, 9631, '16066236', 'AYULABS GRIPE WATER', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-01-18', '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 (48582, 358, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-01-18', '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 (48583, 358, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '12.0200', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.1000', '4.0000', '2022-01-18', 'received', '12.0200', '12.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (48584, 358, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '51.8500', '69.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.7000', '0.0000', '2022-01-18', 'received', '51.8500', '51.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.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 (48585, 358, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.2000', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '2.0000', '2022-01-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 (48586, 358, NULL, 9717, '59692164', 'DAWN OF LIFE  200ML', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2022-01-18', '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 (48587, 358, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-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 (48588, 358, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5000', '0.0000', '2022-01-18', 'received', '2.3500', '2.3500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (48589, 358, NULL, 8132, '2052', 'DUROL 300ML', NULL, '4.7200', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1600', '0.0000', '2022-01-18', 'received', '4.7200', '4.7200', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48590, 358, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.7000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-01-18', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48591, 358, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2022-01-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 (48592, 358, NULL, 9445, '51778713', 'KOFFEX A', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-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 (48593, 358, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.4000', '4.0000', '2022-01-18', 'received', '22.1000', '22.1000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48594, 358, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-18', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (48595, 358, NULL, 7411, '1331', 'CITRO C', NULL, '1.3600', '2.0000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-01-18', 'received', '1.3600', '1.3600', '75.0000', NULL, NULL, 1, 'pc', '75.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 (48596, 358, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '33.0000', '2022-01-18', 'received', '1.1000', '1.1000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (48597, 358, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4000', '0.0000', '2022-01-18', 'received', '2.7200', '2.7200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48598, 358, NULL, 9021, '2941', 'UNIDUS LONG LOVE CONDOM', NULL, '7.0000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '10.0000', '2022-01-18', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48599, 358, NULL, 8969, '2889', 'REDSUN', NULL, '6.0500', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2500', '0.0000', '2022-01-18', '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 (48600, 358, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '0.0000', '2022-01-18', 'received', '1.4300', '1.4300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (48601, 358, NULL, 2953, '85315538', 'CLOPIDOGREL 75MG  FRELET', NULL, '24.0000', '32.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-01-18', 'received', '24.0000', '24.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48602, 358, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '14.0000', '18.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-01-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 (48603, 358, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-01-18', '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 (48604, 358, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '1.0000', '2022-01-18', '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 (48605, 358, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.8200', '0.0000', '2022-01-18', 'received', '12.9700', '12.9700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.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 (48606, 358, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '19.3000', '25.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6000', '0.0000', '2022-01-18', 'received', '19.3000', '19.3000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48607, 358, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0200', '27.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0400', '0.0000', '2022-01-18', 'received', '20.0200', '20.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (48608, 358, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7600', '0.0000', '2022-01-18', '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 (48609, 358, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-01-18', '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 (48610, 358, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '0.0000', '2022-01-18', 'received', '3.4900', '3.4900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48611, 358, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '5.0000', '2022-01-18', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48612, 358, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '46.0000', '2022-01-18', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48613, 358, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-01-18', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48614, 358, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '26.0000', '34.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '1.0000', '2022-01-18', '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 (48615, 358, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4600', '0.0000', '2022-01-18', 'received', '27.2300', '27.2300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48616, 358, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '18.8200', '20.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2800', '0.0000', '2022-01-18', 'received', '18.8200', '18.8200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.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 (48617, 358, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4900', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4700', '1.0000', '2022-01-18', 'received', '5.4900', '5.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (48618, 358, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.9500', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7500', '3.0000', '2022-01-18', '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 (48619, 358, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '9.9700', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8500', '0.0000', '2022-01-18', 'received', '9.9700', '9.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (48620, 358, NULL, 1699, 'PR-412', 'LEENA CAPS', NULL, '3.2000', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-01-18', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48621, 358, NULL, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2022-01-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 (48622, 358, NULL, 8171, '2091', 'ODYMIN', NULL, '3.9900', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '7.0000', '2022-01-18', 'received', '3.9900', '3.9900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48623, 358, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0800', '0.0000', '2022-01-18', 'received', '15.0400', '15.0400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (48624, 358, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '2.7500', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-01-18', 'received', '2.7500', '2.7500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48625, 358, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.6700', '47.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6700', '0.0000', '2022-01-18', 'received', '32.6700', '32.6700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '32.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 (48626, 358, NULL, 2775, '40792038', 'LEXSPORIN OINTMENT', NULL, '18.9000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-01-18', 'received', '18.9000', '18.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48627, 358, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8400', '8.0000', '2022-01-18', '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 (48628, 358, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.7000', '3.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-01-18', 'received', '2.7000', '2.7000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (48629, 358, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '2.3000', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2022-01-18', 'received', '2.3000', '2.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48630, 358, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.3000', '0.0000', '2022-01-18', 'received', '2.3000', '2.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48631, 358, NULL, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '9.3500', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0500', '0.0000', '2022-01-18', '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 (48632, 358, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.4800', '0.0000', '2022-01-18', 'received', '20.2400', '20.2400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48633, 358, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.0000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-01-18', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48634, 358, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2022-01-18', '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 (48635, 358, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.9000', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-01-18', 'received', '1.9000', '1.9000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (48636, 358, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2022-01-18', '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 (48637, 358, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '0.0000', '2022-01-18', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (48638, 358, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-01-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 (48639, 358, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '3.0000', '2022-01-18', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48640, 358, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '25.0000', '2022-01-18', 'received', '0.9000', '0.9000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (48641, 358, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '10.0000', '2022-01-18', 'received', '3.8000', '3.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48642, 358, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2900', '5.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8000', '17.0000', '2022-01-18', 'received', '3.2900', '3.2900', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48643, 358, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.5000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-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 (48644, 358, NULL, 9525, '82301277', 'STAMLO 10', NULL, '36.0000', '48.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-01-18', '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 (48645, 358, NULL, 9508, '43167014', 'SIMPLE LINTUS ADULT COUGH', NULL, '3.6000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '0.0000', '2022-01-18', '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 (48646, 358, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '16.2100', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2600', '0.0000', '2022-01-18', 'received', '16.2100', '16.2100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (48647, 358, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-01-18', '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 (48648, 358, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.7000', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-18', 'received', '1.7000', '1.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (48649, 359, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7600', '2.3000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-01-18', 'received', '1.7600', '1.7600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (48650, 359, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2022-01-18', '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 (48651, 359, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2300', '1.5000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4400', '0.0000', '2022-01-18', 'received', '1.2300', '1.2300', '28.0000', NULL, NULL, 1, 'pc', '28.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 (48652, 359, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '9.6000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-01-18', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48653, 359, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '12.0000', '2022-01-18', '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 (48654, 359, NULL, 2468, '92479608', 'ATENOLOL 100MG TABS UK', NULL, '7.0400', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.1200', '3.0000', '2022-01-18', '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 (48655, 359, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '8.5000', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '1.0000', '2022-01-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 (48656, 359, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '21.0000', '2022-01-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 (48657, 359, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.4000', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2022-01-18', 'received', '0.4000', '0.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (48658, 359, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2022-01-18', 'received', '0.7000', '0.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (48659, 359, NULL, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '4.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.9300', '0.0000', '2022-01-18', '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 (48660, 359, NULL, 8518, '2438', 'FOLIC ACID CRESCENT 28S', NULL, '7.1400', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7000', '0.0000', '2022-01-18', 'received', '7.1400', '7.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (48661, 359, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '5.0000', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-01-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 (48662, 359, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '15.7300', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4600', '1.0000', '2022-01-18', 'received', '15.7300', '15.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (48663, 359, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-18', 'received', '2.9200', '2.9200', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '2.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 (48664, 359, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '6.5800', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7400', '1.0000', '2022-01-18', 'received', '6.5800', '6.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (48665, 359, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.5600', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6800', '0.0000', '2022-01-18', 'received', '14.5600', '14.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (48666, 359, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '9.8800', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7600', '0.0000', '2022-01-18', 'received', '9.8800', '9.8800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (48667, 359, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2022-01-18', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48668, 359, NULL, 9461, '53270643', 'YOVANNY INHALER', NULL, '1.5000', '2.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-18', '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 (48669, 359, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-18', '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 (48670, 359, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '15.0000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-01-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 (48671, 359, NULL, 7679, '1599', 'VALUPAk VIT C 1000', NULL, '20.0000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2022-01-18', '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 (48672, 359, NULL, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '21.0000', '28.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-01-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 (48673, 359, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '5.2000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-01-18', '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 (48674, 359, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-01-18', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48675, 359, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-01-18', 'received', '1.3000', '1.3000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48676, 359, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.9500', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2022-01-18', 'received', '4.9500', '4.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (48677, 359, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-18', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48678, 359, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.1000', '0.0000', '2022-01-18', 'received', '1.8500', '1.8500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '1.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 (48679, 359, NULL, 1485, '008', 'NIZORAL CREAM', NULL, '24.1800', '32.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.1800', '0.0000', '2022-01-18', 'received', '24.1800', '24.1800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '24.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 (48680, 359, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.9500', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8500', '0.0000', '2022-01-18', 'received', '9.9500', '9.9500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48681, 359, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '9.9700', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9100', '0.0000', '2022-01-18', 'received', '9.9700', '9.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (48682, 359, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '0.0000', '2022-01-18', '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 (48683, 359, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-18', 'received', '2.3500', '2.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (48684, 359, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-18', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48685, 359, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9400', '1.0000', '2022-01-18', 'received', '12.9700', '12.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (48686, 359, NULL, 2559, '42580620', 'ABYVITA SYRP', NULL, '8.2000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '5.0000', '2022-01-18', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48687, 359, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.2000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-01-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 (48688, 359, NULL, 1954, '87246804', 'COLDRID TAB', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '9.0000', '2022-01-18', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48689, 359, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-01-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 (48690, 359, NULL, 1619, 'PR-332', 'KLINDA300MG', NULL, '9.8500', '13.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5000', '0.0000', '2022-01-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 (48691, 359, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.8600', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.3000', '0.0000', '2022-01-18', 'received', '7.8600', '7.8600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48692, 359, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '20.0500', '27.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.1000', '0.0000', '2022-01-18', 'received', '20.0500', '20.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (48693, 359, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '0.0000', '2022-01-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 (48694, 359, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.9500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '2.0000', '2022-01-18', '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 (48695, 359, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.5000', '32.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.1200', '32.0000', '2022-01-18', 'received', '5.9100', '5.9100', '32.0000', NULL, NULL, 1, 'pc', '32.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 (48696, 359, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '5.2000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '1.0000', '2022-01-18', '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 (48697, 359, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8100', '0.0000', '2022-01-18', 'received', '4.2700', '4.2700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (48698, 359, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4700', '0.0000', '2022-01-18', '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 (48699, 359, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-01-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 (48700, 359, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-01-18', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48701, 359, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '2.0000', '2022-01-18', 'received', '7.8200', '7.8200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48702, 359, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7300', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '0.0000', '2022-01-18', 'received', '1.7300', '1.7300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (48703, 359, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.4100', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2300', '0.0000', '2022-01-18', 'received', '9.4100', '9.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (48704, 359, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3000', '19.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-01-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 (48705, 359, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-01-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 (48706, 359, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '7.0500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.1500', '3.0000', '2022-01-18', 'received', '7.0500', '7.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (48707, 359, 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', '0.0000', '2022-01-18', '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 (48708, 359, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '4.8000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '1.0000', '2022-01-18', 'received', '4.8000', '4.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48709, 359, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '0.0000', '2022-01-18', '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 (48710, 359, NULL, 9602, '95323285', 'OPIZOLE CAPS 10*10', NULL, '1.0500', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '8.0000', '2022-01-18', 'received', '1.0500', '1.0500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48711, 359, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4500', '0.0000', '2022-01-18', 'received', '7.1500', '7.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (48712, 359, NULL, 8333, '2253', 'GUDAPET CAPS', NULL, '6.7300', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1900', '0.0000', '2022-01-18', 'received', '6.7300', '6.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (48713, 359, NULL, 7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', NULL, '5.8300', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4900', '0.0000', '2022-01-18', '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 (48714, 359, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-01-18', 'received', '3.8000', '3.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48715, 359, NULL, 9592, '11957121', 'VIVADONA CAPS 20\'S', NULL, '3.2000', '4.2000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '2.0000', '2022-01-18', '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 (48716, 359, NULL, 9595, '11957600', 'FIT ONE CONDOMS 3\'', NULL, '3.4400', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4000', '1.0000', '2022-01-18', 'received', '3.4400', '3.4400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (48717, 359, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-01-18', '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 (48718, 359, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-01-18', 'received', '0.9000', '0.9000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (48719, 359, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '28.0000', '2022-01-18', '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 (48720, 359, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.2000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-01-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 (48721, 359, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.7000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '19.0000', '2022-01-18', 'received', '2.7000', '2.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48722, 359, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-18', '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 (48723, 359, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.0500', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2022-01-18', 'received', '1.0500', '1.0500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48724, 359, NULL, 2853, '18546021', 'LACTULOSE SYR 250ML (MEDULAC)', NULL, '18.5900', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.1800', '2.0000', '2022-01-18', 'received', '18.5900', '18.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (48725, 359, NULL, 9596, '63576220', 'NEUROPAT CAPS 30\'', NULL, '31.1100', '42.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.2200', '2.0000', '2022-01-18', 'received', '31.1100', '31.1100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.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 (48726, 359, NULL, 9597, '04270243', 'MILTON STERILISING TAB', NULL, '18.9800', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9600', '1.0000', '2022-01-18', 'received', '18.9800', '18.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (48727, 359, NULL, 2551, '65428666', 'OLIGOCARE', NULL, '29.6500', '39.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.3000', '2.0000', '2022-01-18', 'received', '29.6500', '29.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (48728, 359, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '51.0000', '69.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-18', 'received', '51.0000', '51.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48729, 359, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2022-01-18', 'received', '10.5000', '10.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48730, 359, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '4.2400', '6.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4800', '0.0000', '2022-01-18', 'received', '4.2400', '4.2400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48731, 359, NULL, 9573, '18958409', 'RONFIT COLD SRP', NULL, '3.0000', '4.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-01-18', '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 (48732, 359, NULL, 8127, '2047', 'ESSENTIAL EMBR', NULL, '24.5300', '1.2000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '613.2500', '14.0000', '2022-01-18', 'received', '24.5300', '24.5300', '25.0000', NULL, NULL, 1, 'pc', '25.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 (48733, 360, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.0000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-01-18', '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 (48734, 360, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '60.0000', '2022-01-18', 'received', '2.3500', '2.3500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (48735, 360, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '20.0000', '2022-01-18', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48736, 360, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '10.8900', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4500', '5.0000', '2022-01-18', 'received', '10.8900', '10.8900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48737, 360, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3000', '10.0000', '2022-01-18', 'received', '1.6300', '1.6300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48738, 360, NULL, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '9.0000', '2022-01-18', '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 (48739, 360, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '5.0000', '2022-01-18', '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 (48740, 360, NULL, 1755, 'PR-468', 'STOPKOF EXPT (ADULT) 100ML', NULL, '5.9800', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9600', '0.0000', '2022-01-18', 'received', '5.9800', '5.9800', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48741, 360, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2022-01-18', '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 (48742, 360, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5100', '1.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4000', '39.0000', '2022-01-18', 'received', '0.5100', '0.5100', '40.0000', NULL, NULL, 1, 'pc', '40.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 (48743, 360, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.8000', '4.0000', '2022-01-18', 'received', '6.7000', '6.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48744, 360, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '27.0000', '35.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '3.0000', '2022-01-18', '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 (48745, 360, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '12.7700', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.8500', '5.0000', '2022-01-18', 'received', '12.7700', '12.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (48746, 360, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.9800', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '4.0000', '2022-01-18', 'received', '4.9800', '4.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48747, 360, NULL, 7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', NULL, '15.6000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2022-01-18', 'received', '15.6000', '15.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (48748, 360, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '1.9700', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '9.0000', '2022-01-18', 'received', '1.9700', '1.9700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48749, 360, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.2600', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5200', '2.0000', '2022-01-18', 'received', '14.2600', '14.2600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (48750, 360, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.8000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-18', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48751, 360, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-01-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 (48752, 360, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4600', '2.0000', '2022-01-18', 'received', '27.2300', '27.2300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48753, 360, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '26.0000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '1.0000', '2022-01-18', '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 (48754, 360, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.4000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '1.0000', '2022-01-18', '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 (48755, 360, NULL, 9512, '55229207', 'SUPER APETI PLUS TAB', NULL, '1.3100', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.5000', '47.0000', '2022-01-18', 'received', '1.3100', '1.3100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (48756, 360, NULL, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '59.0300', '78.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0600', '0.0000', '2022-01-18', '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 (48757, 360, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '6.0000', '2022-01-18', '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 (48758, 360, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '4.3000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '7.0000', '2022-01-18', '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 (48759, 360, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-01-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 (48760, 360, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '18.8100', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6200', '0.0000', '2022-01-18', 'received', '18.8100', '18.8100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (48761, 360, NULL, 2991, '46377274', 'ZINTAB 10MG', NULL, '0.2500', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '19.0000', '2022-01-18', 'received', '0.2500', '0.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48762, 360, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '10.0000', '2022-01-18', '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 (48763, 360, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2300', '1.5000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4400', '12.0000', '2022-01-18', 'received', '1.2300', '1.2300', '28.0000', NULL, NULL, 1, 'pc', '28.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 (48764, 360, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-01-18', '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 (48765, 360, NULL, 7880, '1800', 'VAGINAX PESS', NULL, '2.6500', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9500', '3.0000', '2022-01-18', '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 (48766, 360, NULL, 7429, '1349', 'VAGINAX CREAM', NULL, '3.2700', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8100', '3.0000', '2022-01-18', 'received', '3.2700', '3.2700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (48767, 360, NULL, 1699, 'PR-412', 'LEENA CAPS', NULL, '3.2000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '6.0000', '2022-01-18', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48768, 360, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6400', '1.0000', '2022-01-18', 'received', '7.8200', '7.8200', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48769, 360, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7700', '3.0000', '2022-01-18', '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 (48770, 360, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.0000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-01-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 (48771, 360, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '1.0000', '2022-01-18', '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 (48772, 360, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-01-18', '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 (48773, 360, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2900', '5.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8000', '19.0000', '2022-01-18', 'received', '3.2900', '3.2900', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48774, 360, NULL, 7411, '1331', 'CITRO C', NULL, '1.3600', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-01-18', '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 (48775, 360, NULL, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', NULL, '0.9200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '41.0000', '2022-01-18', 'received', '0.9200', '0.9200', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48776, 360, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.2700', '0.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.7500', '17.0000', '2022-01-18', 'received', '0.2700', '0.2700', '25.0000', NULL, NULL, 1, 'pc', '25.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 (48777, 360, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.3600', '9.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0800', '0.0000', '2022-01-18', '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 (48778, 360, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.5000', '11.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '2.0000', '2022-01-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 (48779, 360, NULL, 2618, '72760937', 'BUSCOMED TAB 10MG', NULL, '4.6000', '6.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.0000', '31.0000', '2022-01-18', 'received', '4.6000', '4.6000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (48780, 360, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '4.3600', '3.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5200', '4.0000', '2022-01-18', 'received', '4.3600', '4.3600', '7.0000', NULL, NULL, 1, 'pc', '7.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 (48781, 360, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '23.0000', '2022-01-18', 'received', '1.1000', '1.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (48782, 360, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '50.0000', '2022-01-18', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (48783, 360, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-18', 'received', '2.3500', '2.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (48784, 360, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '14.4100', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2300', '2.0000', '2022-01-18', 'received', '14.4100', '14.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (48785, 360, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '3.0000', '2022-01-18', '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 (48786, 360, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4500', '5.0000', '2022-01-18', 'received', '5.2900', '5.2900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (48787, 360, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '19.0000', '2022-01-18', 'received', '3.5500', '3.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48788, 360, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.8900', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.7800', '2.0000', '2022-01-18', 'received', '5.8900', '5.8900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (48789, 360, NULL, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '10.4600', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3800', '2.0000', '2022-01-18', 'received', '10.4600', '10.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (48790, 360, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '10.0000', '2022-01-18', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48791, 360, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '9.0000', '2022-01-18', '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 (48792, 360, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '8.0000', '2022-01-18', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (48793, 360, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.9500', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '5.0000', '2022-01-18', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48794, 360, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.8300', '8.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.9600', '10.0000', '2022-01-18', 'received', '5.8300', '5.8300', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48795, 360, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6800', '16.0000', '2022-01-18', 'received', '2.2300', '2.2300', '16.0000', NULL, NULL, 1, 'pc', '16.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 (48796, 360, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8500', '2.0000', '2022-01-18', 'received', '12.9700', '12.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (48797, 360, NULL, 9631, '16066236', 'AYULABS GRIPE WATER', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '5.0000', '2022-01-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 (48798, NULL, NULL, 2448, '', '', 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 (48799, 361, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '0.0000', '2022-01-18', '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 (48800, 361, NULL, 7750, '1670', 'CALPOL 2+', NULL, '33.9800', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.9400', '0.0000', '2022-01-18', 'received', '33.9800', '33.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (48801, 361, NULL, 8163, '2083', 'OTRIVIN ADULT', NULL, '22.8600', '31.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8600', '0.0000', '2022-01-18', 'received', '22.8600', '22.8600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '22.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 (48802, 361, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '4.4000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2022-01-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 (48803, 361, NULL, 7911, '1831', 'BASECOLD SRP', NULL, '4.3700', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.8500', '0.0000', '2022-01-18', 'received', '4.3700', '4.3700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (48804, 361, NULL, 7414, '1334', 'CONGESTYL SRP', NULL, '18.2100', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0500', '3.0000', '2022-01-18', 'received', '18.2100', '18.2100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48805, 361, NULL, 7415, '1335', 'CONGESTYL TAB', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-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 (48806, 361, NULL, 7857, '1777', 'NUGEL', NULL, '15.1300', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3900', '0.0000', '2022-01-18', '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 (48807, 361, NULL, 7433, '1353', 'ZESTRIL 20MG', NULL, '4.6000', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.8000', '13.0000', '2022-01-18', 'received', '4.6000', '4.6000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (48808, 361, NULL, 9154, '3074', 'ZYMAX 500', NULL, '10.6800', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3600', '0.0000', '2022-01-18', 'received', '10.6800', '10.6800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.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 (48809, 361, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '4.1000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.3000', '2.0000', '2022-01-18', 'received', '4.1000', '4.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48810, 361, NULL, 7432, '1352', 'VITAFORCE', NULL, '3.2300', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4600', '1.0000', '2022-01-18', 'received', '3.2300', '3.2300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '3.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 (48811, 361, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.7800', '2.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.3600', '12.0000', '2022-01-18', 'received', '0.7800', '0.7800', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48812, 361, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.6500', '1.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8000', '11.0000', '2022-01-18', 'received', '0.6500', '0.6500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.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 (48813, 361, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.0000', '2.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '12.0000', '2022-01-18', '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 (48814, 361, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '34.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.1200', '1.0000', '2022-01-18', 'received', '25.1200', '25.1200', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48815, 361, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '12.8000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2022-01-18', 'received', '12.8000', '12.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (48816, 361, NULL, 9191, '3111', 'METOCHLOPRAMIDE 10MG', NULL, '0.9000', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '10.0000', '2022-01-18', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48817, 361, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-01-18', '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 (48818, 361, NULL, 8926, '2846', 'SEFLOX EAR/EYE', NULL, '39.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.0000', '2.0000', '2022-01-18', 'received', '39.0000', '39.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48819, 361, NULL, 7763, '1683', 'FUMET', NULL, '1.1300', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.3900', '0.0000', '2022-01-18', 'received', '1.1300', '1.1300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48820, 361, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.1900', '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.1900', '0.0000', '2022-01-18', 'received', '3.1900', '3.1900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.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 (48821, 361, NULL, 7643, '1563', 'METRO SUSP LETAP #MGP', NULL, '2.1100', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4400', '0.0000', '2022-01-18', 'received', '2.1100', '2.1100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '2.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 (48822, 361, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '26.0000', '39.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-01-18', 'received', '26.0000', '26.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48823, 361, NULL, 7974, '1894', 'EVECARE SRP', NULL, '28.0000', '37.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '1.0000', '2022-01-18', '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 (48824, 361, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-01-18', '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 (48825, 361, NULL, 8826, '2746', 'GBEDEMA GARLIC', NULL, '11.0000', '14.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-01-18', '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 (48826, 361, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-01-18', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48827, 361, NULL, 7509, '1429', 'ROOTER', NULL, '6.4000', '10.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.8000', '0.0000', '2022-01-18', 'received', '6.4000', '6.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (48828, 361, NULL, 7680, '1600', 'FLAGENTYL', NULL, '21.1800', '28.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.3600', '0.0000', '2022-01-18', '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 (48829, 361, NULL, 7885, '1805', 'DIFLUCAN', NULL, '82.8700', '110.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.8700', '0.0000', '2022-01-18', 'received', '82.8700', '82.8700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48830, 361, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '30.0000', '2022-01-18', 'received', '2.9200', '2.9200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (48831, 361, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '15.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-01-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 (48832, 361, NULL, 9505, '13744415', 'WELLMAN PLUS', NULL, '77.0000', '102.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-01-18', 'received', '77.0000', '77.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '77.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48833, 361, NULL, 8161, '2081', 'PROWOMAN', NULL, '19.5000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-18', '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 (48834, 361, NULL, 7636, '1556', 'DIABETMINE', NULL, '11.8700', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '237.4000', '0.0000', '2022-01-18', 'received', '11.8700', '11.8700', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48835, 361, NULL, 7675, '1595', 'GEBEDOL EXTRA', NULL, '2.4000', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-01-18', '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 (48836, 361, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.0000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-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 (48837, 361, NULL, 9511, '96030287', 'INFA V WASH', NULL, '9.0000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-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 (48838, 361, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '19.5000', '26.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-18', '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 (48839, 361, NULL, 7419, '1339', 'DEEP HEAT SPRAY 150ML', NULL, '25.0000', '33.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-18', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48840, 361, NULL, 7420, '1340', 'DEEP FREEZE SPRAY 150ML', NULL, '29.9500', '40.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9500', '1.0000', '2022-01-18', 'received', '29.9500', '29.9500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '29.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 (48841, 361, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '5.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-01-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 (48842, 361, NULL, 7930, '1850', 'WORMBASE SUSP', NULL, '1.3000', '3.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8000', '0.0000', '2022-01-18', 'received', '1.3000', '1.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48843, 361, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.4500', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '0.0000', '2022-01-18', 'received', '5.4500', '5.4500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (48844, 361, NULL, 7900, '1820', 'ERNEST OINT', NULL, '2.5000', '3.2000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2022-01-18', '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 (48845, 361, NULL, 8328, '2248', 'GOFEX', NULL, '8.1000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '0.0000', '2022-01-18', 'received', '8.1000', '8.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48846, 361, NULL, 7879, '1799', 'PARA DENK 125', NULL, '1.9800', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2022-01-18', 'received', '1.9800', '1.9800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48847, 361, NULL, 8900, '2820', 'CAFEGORT', NULL, '2.0000', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '7.0000', '2022-01-18', '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 (48848, 361, NULL, 7779, '1699', 'LUFART SUSP', NULL, '9.5000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-01-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 (48849, 361, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '35.6300', '49.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.1500', '0.0000', '2022-01-18', 'received', '35.6300', '35.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.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 (48850, 361, NULL, 7447, '1367', 'STREPSILS ORG', NULL, '1.3000', '2.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6000', '0.0000', '2022-01-18', 'received', '1.3000', '1.3000', '32.0000', NULL, NULL, 1, 'pc', '32.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 (48851, 361, NULL, 9445, '51778713', 'KOFFEX A', NULL, '4.5000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-01-18', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (48852, 361, NULL, 7806, '1726', 'DOMI 10', NULL, '2.0000', '3.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-18', 'received', '2.0000', '2.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (48853, 361, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9800', '0.0000', '2022-01-18', 'received', '14.9800', '14.9800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.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 (48854, 361, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.7900', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.3700', '0.0000', '2022-01-18', 'received', '10.7900', '10.7900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (48855, 361, NULL, 8473, '2393', 'NILOL TAB', NULL, '7.0000', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2022-01-18', '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 (48856, 361, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.8000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '1.0000', '2022-01-18', '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 (48857, 361, NULL, 9103, '3023', 'JOINTFLEX PLUS TABS', NULL, '32.6700', '44.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6700', '0.0000', '2022-01-18', 'received', '32.6700', '32.6700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '32.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 (48858, 361, NULL, 8738, '2658', 'ARTHROTEC 75', NULL, '4.0000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-01-18', '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 (48859, 361, NULL, 1364, '5021265244447', 'WELLWOMAN CAPS 70+', NULL, '27.0000', '35.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-01-18', 'received', '27.0000', '27.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48860, 361, NULL, 8903, '2823', 'MALIN BABY', NULL, '5.3700', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.1100', '3.0000', '2022-01-18', '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 (48861, 361, NULL, 9300, '3220', 'LONART TAB', NULL, '4.9000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-01-18', '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 (48862, 361, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '15.0000', '25.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-01-18', '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 (48863, 361, NULL, 7671, '1591', 'PARA UK', NULL, '1.7000', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-01-18', 'received', '1.7000', '1.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48864, 361, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2022-01-18', '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 (48865, 362, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-19', '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 (48866, 362, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-01-19', '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 (48867, 362, NULL, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '2.0000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2022-01-19', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48868, 362, NULL, 2766, '95455611', 'LUBRIMAX JELLY 70G', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-19', '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 (48869, 362, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-01-19', '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 (48870, 362, NULL, 1507, '002', 'SEFLOX EYE/EAR DROP', NULL, '4.5000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '4.0000', '2022-01-19', '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 (48871, 362, NULL, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '22.5000', '29.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '2.0000', '2022-01-19', '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 (48872, 362, NULL, 1512, 'PR-225', 'CIPAC EYE ROP', NULL, '4.1000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-01-19', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48873, 362, NULL, 1516, '9588800180593', 'OPTIMOL EYE DROP', NULL, '15.7600', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2800', '2.0000', '2022-01-19', 'received', '15.7600', '15.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (48874, 362, NULL, 2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', NULL, '1.7000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2022-01-19', '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 (48875, 362, NULL, 2951, '98935572', 'LETAMOL TAB', NULL, '0.3700', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-01-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 (48876, 362, NULL, 7564, '1484', 'KWIK ACTION', NULL, '0.6400', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-01-19', '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 (48877, 362, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4200', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '10.0000', '2022-01-19', '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 (48878, 362, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.9600', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '0.0000', '2022-01-19', 'received', '1.9600', '1.9600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48879, 362, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-01-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 (48880, 362, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.7000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '16.0000', '2022-01-19', 'received', '2.7000', '2.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48881, 362, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-19', '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 (48882, 362, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-01-19', '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 (48883, 362, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-19', '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 (48884, 362, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-19', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (48885, 362, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-01-19', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48886, 362, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-19', '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 (48887, 362, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '0.0000', '2022-01-19', '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 (48888, 362, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '0.0000', '2022-01-19', '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 (48889, 362, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '10.0000', '2022-01-19', '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 (48890, 362, NULL, 2767, '22329866', 'ADVIL TAB 24\'S', NULL, '35.5000', '47.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '1.0000', '2022-01-19', '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 (48891, 362, NULL, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '4.2000', '5.6000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '30.0000', '2022-01-19', '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 (48892, 362, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '6.9600', '10.0000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '194.8800', '28.0000', '2022-01-19', '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 (48893, 362, NULL, 1615, '5000456022811', 'CRESTOR 20MG', NULL, '5.3000', '7.0000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.4000', '0.0000', '2022-01-19', 'received', '5.3000', '5.3000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (48894, 362, NULL, 1959, '5000456022798', 'CRESTOR 10MG', NULL, '3.0300', '4.0000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8400', '14.0000', '2022-01-19', '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 (48895, 362, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '3.2200', '4.0000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.1600', '28.0000', '2022-01-19', 'received', '3.2200', '3.2200', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.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 (48896, 362, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-19', '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 (48897, 362, NULL, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9700', '3.0000', '2022-01-19', '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 (48898, 362, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.5200', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '15.0000', '2022-01-19', '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 (48899, 362, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '1.0900', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '0.0000', '2022-01-19', 'received', '1.0900', '1.0900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48900, 362, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7600', '2.3000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '11.0000', '2022-01-19', 'received', '1.7600', '1.7600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (48901, 362, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.0500', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '16.0000', '2022-01-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 (48902, 362, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.7200', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-01-19', 'received', '0.7200', '0.7200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (48903, 362, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2900', '5.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8000', '0.0000', '2022-01-19', 'received', '3.2900', '3.2900', '20.0000', NULL, NULL, 1, 'pc', '20.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 (48904, 362, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.7800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '24.0000', '2022-01-19', 'received', '0.7800', '0.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48905, 362, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.0500', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '50.0000', '2022-01-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 (48906, 362, NULL, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', NULL, '0.9600', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '30.0000', '2022-01-19', '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 (48907, 362, NULL, 2309, '23002945', 'Permoxyl caps 500mg', NULL, '1.9900', '2.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.5000', '31.0000', '2022-01-19', 'received', '1.9900', '1.9900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (48908, 362, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.8600', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5800', '0.0000', '2022-01-19', 'received', '7.8600', '7.8600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (48909, 362, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.5000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2022-01-19', '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 (48910, 362, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.5000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '283.6800', '11.0000', '2022-01-19', '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 (48911, 362, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '118.0600', '157.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0600', '1.0000', '2022-01-19', 'received', '118.0600', '118.0600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '118.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 (48912, 362, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '0.0000', '2022-01-19', '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 (48913, 362, NULL, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '8.3000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '3.0000', '2022-01-19', 'received', '8.3000', '8.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (48914, 362, NULL, 2909, '94340911', 'CLINDAMYCIN 300MG CAPS KAMA', NULL, '10.0000', '13.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '10.0000', '2022-01-19', '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 (48915, 362, NULL, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', NULL, '14.7700', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3100', '0.0000', '2022-01-19', '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 (48916, 362, NULL, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '13.6000', '18.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4000', '3.0000', '2022-01-19', '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 (48917, 362, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '11.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4400', '0.0000', '2022-01-19', '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 (48918, 362, NULL, 2953, '85315538', 'CLOPIDOGREL 75MG  FRELET', NULL, '24.0000', '32.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-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 (48919, 362, NULL, 9239, '3159', 'CLOPIDOGREL 75MG', NULL, '44.5000', '32.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '2.0000', '2022-01-19', 'received', '44.5000', '44.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '44.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48920, 362, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2022-01-19', '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 (48921, 362, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '14.0000', '18.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-19', '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 (48922, 362, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '14.0800', '18.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.1600', '1.0000', '2022-01-19', 'received', '14.0800', '14.0800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (48923, 362, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '16.0000', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-19', '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 (48924, 362, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '1.0000', '2022-01-19', '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 (48925, 362, NULL, 2377, '96827889', 'ROCK GENECURE', NULL, '11.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2022-01-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 (48926, 362, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-01-19', '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 (48927, 362, NULL, 2371, '83539675', 'FRESH LADY CAPS', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-01-19', '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 (48928, 362, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.5000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '1.0000', '2022-01-19', '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 (48929, 362, NULL, 2149, '74837557', 'ZIPMAN CAPS', NULL, '14.5000', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '3.0000', '2022-01-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 (48930, 362, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '18.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-19', '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 (48931, 362, NULL, 2954, '42250057', 'BE4 BE4 INSTANT', NULL, '27.0000', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-01-19', '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 (48932, 362, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-19', '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 (48933, 362, NULL, 1442, '005', 'YAFO MAN CAPS', NULL, '13.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '1.0000', '2022-01-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 (48934, 362, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '1.0000', '2022-01-19', '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 (48935, 362, NULL, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', NULL, '16.4000', '22.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8000', '0.0000', '2022-01-19', '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 (48936, 362, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-01-19', '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 (48937, 362, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '18.0000', '23.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-19', 'received', '18.0000', '18.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48938, 362, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-19', '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 (48939, 362, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '40.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-01-19', '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 (48940, 362, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '18.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-19', '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 (48941, 362, NULL, 2378, '08590643', 'VENE CAPS', NULL, '18.0000', '23.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-19', 'received', '18.0000', '18.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48942, 362, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '20.0000', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2022-01-19', '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 (48943, 362, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '17.0000', '22.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '1.0000', '2022-01-19', '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 (48944, 362, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-01-19', '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 (48945, 362, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '1.0000', '2022-01-19', '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 (48946, 362, NULL, 2453, '3410766', 'MONA SOAP', NULL, '2.7000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '3.0000', '2022-01-19', '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 (48947, 362, NULL, 2653, '35881608', 'MONA KRIM', NULL, '2.7000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '5.0000', '2022-01-19', '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 (48948, 362, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-19', '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 (48949, 362, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '4.0000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-01-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 (48950, 362, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2022-01-19', '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 (48951, 362, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2022-01-19', '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 (48952, 362, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '3.0000', '2022-01-19', '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 (48953, 362, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '11.0000', '2022-01-19', '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 (48954, 362, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.3100', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '0.0000', '2022-01-19', 'received', '2.3100', '2.3100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (48955, 362, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '2.0000', '2022-01-19', '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 (48956, 362, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.2000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '2.0000', '2022-01-19', '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 (48957, 362, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-01-19', '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 (48958, 362, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-01-19', '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 (48959, 362, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-01-19', '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 (48960, 362, NULL, 1944, 'PR-657', 'Combact N E002d016', NULL, '5.0000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2022-01-19', '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 (48961, 362, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-19', '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 (48962, 362, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-01-19', '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 (48963, 362, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '36.1200', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.3600', '2.0000', '2022-01-19', 'received', '36.1200', '36.1200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.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 (48964, 362, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '16.8900', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6700', '0.0000', '2022-01-19', 'received', '16.8900', '16.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (48965, 362, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '0.0000', '2022-01-19', '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 (48966, 362, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.7600', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2800', '0.0000', '2022-01-19', 'received', '19.7600', '19.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (48967, 362, NULL, 2347, '27404535', 'SALICYLIC ACID OINT', NULL, '5.2000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '3.0000', '2022-01-19', '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 (48968, 362, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '5.1300', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6500', '0.0000', '2022-01-19', '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 (48969, 362, NULL, 2770, '61335227', 'SUDO CREAM 400G', NULL, '53.4000', '70.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.2000', '3.0000', '2022-01-19', '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 (48970, 362, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '20.5000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '1.0000', '2022-01-19', '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 (48971, 362, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '2.8000', '3.6000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '30.0000', '2022-01-19', '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 (48972, 362, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.0000', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-01-19', '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 (48973, 362, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.5000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '1.0000', '2022-01-19', '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 (48974, 362, NULL, 2771, '85140722', 'SYRINGE & NEEDLES 10ML', NULL, '0.6400', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '100.0000', '2022-01-19', 'received', '0.6400', '0.6400', '100.0000', NULL, NULL, 1, 'pc', '100.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 (48975, 362, NULL, 2575, '87228427', 'CANDEREL TABS', NULL, '12.8500', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5500', '3.0000', '2022-01-19', '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 (48976, 362, NULL, 2772, '70208100', 'CAFEGOT TAB', NULL, '18.3900', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.1700', '0.0000', '2022-01-19', 'received', '18.3900', '18.3900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (48977, 362, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '33.1200', '44.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.2400', '1.0000', '2022-01-19', 'received', '33.1200', '33.1200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (48978, 362, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-01-19', '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 (48979, 362, NULL, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2022-01-19', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (48980, 362, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.5000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-01-19', '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 (48981, 362, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '8.0000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-01-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 (48982, 362, NULL, 2573, '11557669', 'MASADA', NULL, '9.3000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2022-01-19', '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 (48983, 362, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-01-19', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (48984, 362, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2022-01-19', '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 (48985, 362, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-19', '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 (48986, 362, NULL, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-01-19', '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 (48987, 362, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-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 (48988, 362, NULL, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', NULL, '9.0000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-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 (48989, 362, NULL, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '9.8000', '14.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '0.0000', '2022-01-19', '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 (48990, 362, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '9.9000', '13.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-01-19', 'received', '9.9000', '9.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (48991, 362, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-01-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 (48992, 362, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.0000', '47.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-01-19', '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 (48993, 362, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.0000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2022-01-19', '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 (48994, 362, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '13.0000', '17.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '1.0000', '2022-01-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 (48995, 362, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-19', '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 (48996, 362, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '14.0000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-01-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 (48997, 362, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '19.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-01-19', '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 (48998, 362, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.5000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '3.0000', '2022-01-19', '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 (48999, NULL, NULL, 2635, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (49000, NULL, NULL, 8965, '', '', 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 (49001, NULL, NULL, 8111, '', '', 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 (49002, NULL, NULL, 8780, '', '', 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 (49003, NULL, NULL, 1380, '', '', 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 (49004, NULL, NULL, 3005, '', '', 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 (49005, NULL, NULL, 9749, '', '', 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 (49006, NULL, NULL, 9716, '', '', 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 (49007, NULL, NULL, 9751, '', '', 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 (49008, NULL, NULL, 9756, '', '', 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 (49009, 363, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-01-19', '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 (49010, 363, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.6000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '3.0000', '2022-01-19', 'received', '5.6000', '5.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49011, 363, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '34.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-01-19', 'received', '34.0000', '34.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (49012, 363, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.5400', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6200', '3.0000', '2022-01-19', 'received', '35.5400', '35.5400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (49013, 363, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '4.0000', '2022-01-19', 'received', '8.8000', '8.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49014, 363, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '9.4100', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8200', '1.0000', '2022-01-19', 'received', '9.4100', '9.4100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (49015, 363, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '29.0000', '38.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '3.0000', '2022-01-19', '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 (49016, 363, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '2.0000', '2022-01-19', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (49017, 363, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8800', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6400', '1.0000', '2022-01-19', 'received', '11.8800', '11.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (49018, 363, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '16.2300', '22.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4600', '0.0000', '2022-01-19', 'received', '16.2300', '16.2300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (49019, 363, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '5.3000', '7.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '0.0000', '2022-01-19', 'received', '5.3000', '5.3000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (49020, 363, NULL, 1527, '8904159609416', 'PREGASAFE 75MG TAB', NULL, '13.2300', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.3800', '6.0000', '2022-01-19', '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 (49021, 363, NULL, 9291, '3211', 'FIESTA LUBRICANT GEL SMALL', NULL, '14.8500', '20.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.1000', '2.0000', '2022-01-19', 'received', '14.8500', '14.8500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.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 (49022, 363, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '10.0000', '2022-01-19', '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 (49023, 363, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '6.8500', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '0.0000', '2022-01-19', '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 (49024, 363, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '15.7300', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.1900', '3.0000', '2022-01-19', 'received', '15.7300', '15.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (49025, 363, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '1.0000', '2022-01-19', 'received', '2.6700', '2.6700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49026, 363, NULL, 3066, '87116727', 'TIXYLIX TODDER SYR', NULL, '25.0000', '36.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2022-01-19', '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 (49027, 363, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '33.9800', '46.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9600', '1.0000', '2022-01-19', 'received', '33.9800', '33.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (49028, 363, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '7.0000', '2022-01-19', 'received', '12.5000', '12.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49029, 363, NULL, 2735, '67749877', 'SWEETEX TABS 300\'S', NULL, '13.7800', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5600', '2.0000', '2022-01-19', 'received', '13.7800', '13.7800', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49030, 363, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.0000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '5.0000', '2022-01-19', '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 (49031, 363, NULL, 2489, '83942978', 'ACICLOVIR CREAM 10G', NULL, '63.0300', '83.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0600', '1.0000', '2022-01-19', 'received', '63.0300', '63.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '63.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 (49032, 363, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '5.0000', '2022-01-19', 'received', '20.2400', '20.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49033, 363, NULL, 2574, '24484092', 'DUCOLAX TABS 5MG 20\'S', NULL, '1.1300', '1.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.8000', '44.0000', '2022-01-19', 'received', '1.1300', '1.1300', '60.0000', NULL, NULL, 1, 'pc', '60.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 (49034, 363, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.3400', '4.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.0000', '0.0000', '2022-01-19', 'received', '3.3400', '3.3400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (49035, 363, NULL, 1747, 'PR-460', 'ZYMAX SUSP.', NULL, '9.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-01-19', '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 (49036, 363, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '4.0000', '2022-01-19', '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 (49037, 363, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-01-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 (49038, 363, NULL, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '4.0000', '2022-01-19', '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 (49039, 363, NULL, 9693, '66923421', 'Calcough Infant syrup', NULL, '37.0000', '49.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '2.0000', '2022-01-19', '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 (49040, 363, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.6000', '2.0000', '2022-01-19', 'received', '11.1200', '11.1200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49041, 363, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '26.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.9600', '1.0000', '2022-01-19', '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 (49042, 363, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4500', '2.0000', '2022-01-19', 'received', '5.2900', '5.2900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (49043, 363, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '10.0000', '2022-01-19', '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 (49044, 363, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '15.6000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.0000', '2022-01-19', 'received', '15.6000', '15.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (49045, 363, NULL, 7875, '1795', 'LAMISIL CREAM', NULL, '56.0400', '74.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0800', '2.0000', '2022-01-19', 'received', '56.0400', '56.0400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '56.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 (49046, 363, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '1.3500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '20.0000', '2022-01-19', 'received', '1.3500', '1.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (49047, 363, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '33.0000', '44.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '2.0000', '2022-01-19', 'received', '33.0000', '33.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49048, 363, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '3.0000', '2022-01-19', 'received', '8.7600', '8.7600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49049, 363, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4500', '5.0000', '2022-01-19', 'received', '12.8900', '12.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (49050, 363, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2022-01-19', '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 (49051, 363, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '21.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '2.0000', '2022-01-19', 'received', '16.1000', '16.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49052, 363, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0800', '4.0000', '2022-01-19', 'received', '4.2700', '4.2700', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.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 (49053, 363, NULL, 1549, '610074245209', 'LAVET', NULL, '14.5000', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-01-19', '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 (49054, 363, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '22.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '1.0000', '2022-01-19', '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 (49055, 363, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '49.0000', '2022-01-19', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (49056, 363, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '5.0000', '2022-01-19', '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 (49057, 363, NULL, 9714, '52997990', 'PROSTAJOY', NULL, '25.0000', '33.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '2.0000', '2022-01-19', 'received', '25.0000', '25.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49058, 363, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '25.0000', '33.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-01-19', '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 (49059, 363, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '9.7600', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.8000', '1.0000', '2022-01-19', 'received', '9.7600', '9.7600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (49060, 363, NULL, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.9800', '3.0000', '2022-01-19', '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 (49061, 363, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '15.6600', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.9800', '3.0000', '2022-01-19', '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 (49062, 363, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '11.0000', '16.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-01-19', '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 (49063, 363, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '11.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '1.0000', '2022-01-19', 'received', '7.8000', '7.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49064, 363, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '7.5900', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7700', '3.0000', '2022-01-19', '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 (49065, 363, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '83.0000', '110.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.0000', '1.0000', '2022-01-19', 'received', '83.0000', '83.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49066, 363, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '3.2700', '4.5000', '36.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.7200', '30.0000', '2022-01-19', 'received', '3.2700', '3.2700', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '3.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 (49067, 363, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9300', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.7900', '3.0000', '2022-01-19', '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 (49068, 363, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '98.5600', '130.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.1200', '2.0000', '2022-01-19', 'received', '98.5600', '98.5600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49069, 363, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '8.0000', '2022-01-19', '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 (49070, 363, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.5000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '2.0000', '2022-01-19', '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 (49071, 363, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '14.7500', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '4.0000', '2022-01-19', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (49072, 363, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '9.0400', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2000', '1.0000', '2022-01-19', 'received', '9.0400', '9.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (49073, 363, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2022-01-19', 'received', '7.0000', '7.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (49074, 363, NULL, 7772, '1692', 'XIN A', NULL, '34.6500', '46.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '173.2500', '1.0000', '2022-01-19', 'received', '34.6500', '34.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '34.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 (49075, 363, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '29.1400', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.5600', '3.0000', '2022-01-19', 'received', '29.1400', '29.1400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '29.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 (49076, 363, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '8.2000', '14.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4000', '1.0000', '2022-01-19', 'received', '8.2000', '8.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49077, 363, NULL, 2678, '32692312', 'NAPROSYN EC 500MG UK', NULL, '37.0000', '48.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '740.0000', '19.0000', '2022-01-19', 'received', '37.0000', '37.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (49078, 363, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.0000', '3.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '36.0000', '2022-01-19', 'received', '2.0000', '2.0000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (49079, 363, NULL, 8622, '2542', 'DEXONE', NULL, '1.4000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.0000', '0.0000', '2022-01-19', 'received', '1.4000', '1.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49080, 363, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '16.0000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '4.0000', '2022-01-19', '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 (49081, 363, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '9.9800', '13.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '3.0000', '2022-01-19', '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 (49082, 363, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '9.8800', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6400', '2.0000', '2022-01-19', 'received', '9.8800', '9.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (49083, 363, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4700', '3.0000', '2022-01-19', '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 (49084, 363, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '4.0000', '2022-01-19', '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 (49085, 363, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.7000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '0.0000', '2022-01-19', '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 (49086, 363, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9000', '1.0000', '2022-01-19', 'received', '7.9000', '7.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (49087, 363, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.2600', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.7800', '3.0000', '2022-01-19', 'received', '14.2600', '14.2600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (49088, 363, NULL, 1699, 'PR-412', 'LEENA CAPS', NULL, '3.2000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '4.0000', '2022-01-19', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49089, 363, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.9800', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '3.0000', '2022-01-19', '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 (49090, 363, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.5000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '3.0000', '2022-01-19', '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 (49091, 363, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '20.8800', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7600', '0.0000', '2022-01-19', 'received', '20.8800', '20.8800', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49092, 363, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.7000', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '15.0000', '2022-01-19', 'received', '2.7000', '2.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (49093, 363, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.2000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-01-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 (49094, 363, NULL, 1745, 'PR-458', 'ZYMAX CAPS 500MG 3\'(AZITHROMYCIN}', NULL, '10.8600', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5800', '3.0000', '2022-01-19', 'received', '10.8600', '10.8600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (49095, 363, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8800', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7600', '2.0000', '2022-01-19', 'received', '11.8800', '11.8800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.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 (49096, 363, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7700', '3.0000', '2022-01-19', '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 (49097, 363, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '7.3000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '2.0000', '2022-01-19', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49098, 363, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '27.0000', '42.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '2.0000', '2022-01-19', '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 (49099, 363, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.2000', '40.0000', '2022-01-19', 'received', '2.2300', '2.2300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (49100, 363, NULL, 9438, '26736920', 'SANKOFA  BIG PENIS  MIXTURE ', NULL, '30.0000', '50.0000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-19', 'received', '30.0000', '30.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49101, 363, NULL, 9442, '62933908', 'SANKOFA BIG PENIS  MIXTURE ', NULL, '30.0000', '50.0000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-19', 'received', '30.0000', '30.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49102, 363, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '5.4200', '7.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.2000', '0.0000', '2022-01-19', '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 (49103, 363, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '1.0000', '2022-01-19', 'received', '4.4000', '4.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49104, 363, NULL, 7671, '1591', 'PARA UK', NULL, '1.7000', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-19', 'received', '1.7000', '1.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (49105, 363, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.0000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '19.0000', '2022-01-19', '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 (49106, 363, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.7600', '27.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5200', '1.0000', '2022-01-19', 'received', '19.7600', '19.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (49107, 363, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '12.7700', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.3100', '3.0000', '2022-01-19', 'received', '12.7700', '12.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (49108, 363, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2300', '1.5000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4400', '14.0000', '2022-01-19', 'received', '1.2300', '1.2300', '28.0000', NULL, NULL, 1, 'pc', '28.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 (49109, 363, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '9.0000', '2022-01-19', '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 (49110, 363, NULL, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.9300', '3.0000', '2022-01-19', '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 (49111, 363, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '4.4100', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0500', '4.0000', '2022-01-19', 'received', '4.4100', '4.4100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (49112, 363, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '1.0900', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '30.0000', '2022-01-19', 'received', '1.0900', '1.0900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (49113, 363, NULL, 2992, '39433029', 'PANADOL TAB PLAIN', NULL, '2.6000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '3.0000', '2022-01-19', '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 (49114, 363, NULL, 9631, '16066236', 'AYULABS GRIPE WATER', NULL, '7.0000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '8.0000', '2022-01-19', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49115, NULL, NULL, 8216, '', '', 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 (49116, NULL, NULL, 8190, '', '', 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 (49117, 364, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '5.0000', '2022-01-20', '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 (49118, 364, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.2600', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.7800', '0.0000', '2022-01-20', 'received', '14.2600', '14.2600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (49119, 364, NULL, 1508, '7612797504857', 'FLAREX 0.1% EYE DROP', NULL, '20.6800', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.4000', '3.0000', '2022-01-20', 'received', '20.6800', '20.6800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49120, 364, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '19.0000', '2022-01-20', '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 (49121, 364, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '4.0000', '2022-01-20', '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 (49122, 364, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-01-20', '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 (49123, 364, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '5.0000', '2022-01-20', '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 (49124, 364, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.8500', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2500', '0.0000', '2022-01-20', 'received', '6.8500', '6.8500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49125, 364, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '60.0000', '2022-01-20', 'received', '2.3500', '2.3500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (49126, 364, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '5.0000', '2022-01-20', '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 (49127, 364, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '77.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '0.0000', '2022-01-20', 'received', '57.0000', '57.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49128, 364, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.8000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '26.0000', '2022-01-20', '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 (49129, 364, NULL, 9538, '3537912', 'CALCICARE TABS', NULL, '23.0000', '31.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '1.0000', '2022-01-20', '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 (49130, 364, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '3.0000', '2022-01-20', '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 (49131, 364, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.0300', '2.6000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.9000', '10.0000', '2022-01-20', 'received', '2.0300', '2.0300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (49132, 364, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '23.0000', '2022-01-20', '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 (49133, 364, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '9.0000', '2022-01-20', '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 (49134, 364, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.8000', '6.5000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '336.0000', '23.0000', '2022-01-20', 'received', '4.8000', '4.8000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (49135, 364, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.3300', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6500', '4.0000', '2022-01-20', 'received', '5.3300', '5.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49136, 364, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8500', '0.0000', '2022-01-20', 'received', '12.9700', '12.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (49137, 364, NULL, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', NULL, '0.3200', '0.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '40.0000', '2022-01-20', '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 (49138, 364, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-01-20', '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 (49139, 364, NULL, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '6.3000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '3.0000', '2022-01-20', 'received', '6.3000', '6.3000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49140, 364, NULL, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '33.7600', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5200', '1.0000', '2022-01-20', 'received', '33.7600', '33.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (49141, 364, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '4.6000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '2.0000', '2022-01-20', '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 (49142, 364, NULL, 7922, '1842', 'BABY COU LINC', NULL, '3.1700', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5100', '0.0000', '2022-01-20', 'received', '3.1700', '3.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (49143, 364, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '44.0000', '2022-01-20', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (49144, 364, NULL, 7738, '1658', 'CREEP BANDAGE 10CM', NULL, '8.0000', '5.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '9.0000', '2022-01-20', 'received', '8.0000', '8.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (49145, 364, NULL, 7739, '1659', 'CREEP BANDAGE 7.5CM', NULL, '2.7500', '4.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '7.0000', '2022-01-20', 'received', '2.7500', '2.7500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (49146, 364, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.4000', '37.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.6000', '2.0000', '2022-01-20', 'received', '28.4000', '28.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '28.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 (49147, 364, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '8.4600', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3800', '3.0000', '2022-01-20', 'received', '8.4600', '8.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (49148, 364, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '4.0000', '2022-01-20', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (49149, 364, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '7.0000', '2022-01-20', '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 (49150, 364, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '33.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.7000', '2.0000', '2022-01-20', '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 (49151, 364, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.9900', '40.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.9700', '3.0000', '2022-01-20', 'received', '29.9900', '29.9900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49152, 364, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '42.0000', '56.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '3.0000', '2022-01-20', 'received', '42.0000', '42.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49153, 364, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.2900', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4500', '5.0000', '2022-01-20', 'received', '4.2900', '4.2900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49154, 364, NULL, 1348, '8901077166144', 'APDYL-H COUGH SYRUP 200ML', NULL, '15.5000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '3.0000', '2022-01-20', '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 (49155, 364, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '3.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '30.0000', '2022-01-20', '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 (49156, 364, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-01-20', '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 (49157, 364, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '5.0000', '2022-01-20', '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 (49158, 364, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8500', '0.0000', '2022-01-20', 'received', '1.9700', '1.9700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49159, 364, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS per strip', NULL, '33.0000', '43.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '3.0000', '2022-01-20', '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 (49160, 364, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.3600', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '3.0000', '2022-01-20', 'received', '6.3600', '6.3600', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49161, 364, NULL, 1462, '8904008413690', 'OVACARE TABS', NULL, '20.0000', '27.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-20', '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 (49162, 364, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '2.0000', '2022-01-20', '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 (49163, 364, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '9.0000', '2022-01-20', '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 (49164, 364, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.5000', '23.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '3.0000', '2022-01-20', '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 (49165, 364, NULL, 2954, '42250057', 'BE4 BE4 INSTANT', NULL, '27.0000', '36.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '4.0000', '2022-01-20', 'received', '27.0000', '27.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49166, 364, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '9.0000', '2022-01-20', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49167, 364, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-01-20', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49168, 364, 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', '3.0000', '2022-01-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 (49169, 364, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '5.0000', '2022-01-20', '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 (49170, 365, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '1970-01-01', '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 (49171, 365, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5000', '30.0000', '1970-01-01', 'received', '2.3500', '2.3500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (49172, 365, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '18.0000', '1970-01-01', 'received', '1.3000', '1.3000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (49173, 365, NULL, 7613, '1533', 'FEMFRESH', NULL, '12.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '1970-01-01', '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 (49174, 365, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '30.0000', '1970-01-01', 'received', '0.9000', '0.9000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (49175, 365, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '28.0700', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.2100', '3.0000', '1970-01-01', 'received', '28.0700', '28.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (49176, 365, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '5.0000', '1970-01-01', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49177, 365, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '5.0000', '1970-01-01', 'received', '37.2000', '37.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '37.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 (49178, 365, NULL, 2657, '29274667', 'LOPERON CAPS', NULL, '0.5900', '1.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8000', '12.0000', '1970-01-01', 'received', '0.5900', '0.5900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (49179, 365, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '9.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '1970-01-01', '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 (49180, 365, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '1970-01-01', '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 (49181, 365, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '12.5000', '16.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '1970-01-01', '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 (49182, 365, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.8000', '6.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '30.0000', '1970-01-01', 'received', '4.8000', '4.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (49183, 365, NULL, 2140, '9556100104335', 'FLUCOR NIGHT', NULL, '12.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '1970-01-01', '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 (49184, 365, NULL, 2698, '01508425', 'NIGHT NURSE CAPS', NULL, '36.8600', '49.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5800', '3.0000', '1970-01-01', 'received', '36.8600', '36.8600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49185, 365, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '55.6500', '73.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.9500', '3.0000', '1970-01-01', 'received', '55.6500', '55.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '55.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 (49186, 365, NULL, 9689, '11384296', 'AZITHROMYCIN SUSP 200MG/5ML', NULL, '40.1400', '53.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.4200', '1.0000', '1970-01-01', 'received', '40.1400', '40.1400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (49187, 365, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0600', '3.0000', '1970-01-01', 'received', '33.0200', '33.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (49188, 365, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '87.0000', '115.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '2.0000', '1970-01-01', '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 (49189, 365, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4000', '5.0000', '1970-01-01', 'received', '2.0800', '2.0800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (49190, 365, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.9000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '5.0000', '1970-01-01', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49191, 365, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '60.0000', '1970-01-01', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (49192, 365, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.2900', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9000', '10.0000', '1970-01-01', '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 (49193, 365, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '4.7000', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '20.0000', '1970-01-01', 'received', '4.7000', '4.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (49194, 365, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.6000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '5.0000', '1970-01-01', 'received', '18.6000', '18.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49195, 365, NULL, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '10.4600', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3000', '5.0000', '1970-01-01', 'received', '10.4600', '10.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (49196, 365, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '26.0000', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '1970-01-01', '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 (49197, 365, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '20.0000', '26.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '1970-01-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 (49198, 365, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '52.8000', '70.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.6000', '2.0000', '1970-01-01', 'received', '52.8000', '52.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.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 (49199, 365, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '3.0000', '1970-01-01', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49200, 365, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '23.0000', '30.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '4.0000', '1970-01-01', 'received', '23.0000', '23.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49201, 365, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '16.8900', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.4500', '5.0000', '1970-01-01', 'received', '16.8900', '16.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (49202, 365, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '5.0000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '1970-01-01', '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 (49203, 365, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '13.4400', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3200', '3.0000', '1970-01-01', 'received', '13.4400', '13.4400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (49204, 365, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '14.6500', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9500', '3.0000', '1970-01-01', 'received', '14.6500', '14.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (49205, 365, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7700', '2.0000', '1970-01-01', '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 (49206, 365, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.0000', '20.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '1970-01-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 (49207, 365, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.0200', '6.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.1600', '8.0000', '1970-01-01', 'received', '4.0200', '4.0200', '8.0000', NULL, NULL, 1, 'pc', '8.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 (49208, 365, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.3000', '3.0000', '1970-01-01', 'received', '22.1000', '22.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49209, 365, NULL, 1954, '87246804', 'COLDRID TAB', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '10.0000', '1970-01-01', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49210, 365, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '35.4500', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.9000', '2.0000', '1970-01-01', 'received', '35.4500', '35.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (49211, 365, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '2.0000', '1970-01-01', '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 (49212, 365, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '24.0000', '1970-01-01', 'received', '1.1000', '1.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (49213, 365, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '1970-01-01', '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 (49214, 365, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '1970-01-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 (49215, 365, NULL, 9508, '43167014', 'SIMPLE LINTUS ADULT COUGH', NULL, '3.6000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.2000', '2.0000', '1970-01-01', '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 (49216, 365, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '6.0000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '1970-01-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 (49217, 365, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '52.0000', '69.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '1.0000', '1970-01-01', 'received', '52.0000', '52.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49218, 365, NULL, 9631, '16066236', 'AYULABS GRIPE WATER', NULL, '7.0000', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '2.0000', '1970-01-01', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49219, 366, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '5.0000', '2022-01-20', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49220, 366, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '64.0600', '84.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '320.3000', '3.0000', '2022-01-20', 'received', '64.0600', '64.0600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '64.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 (49221, 366, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '98.5600', '130.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.1200', '2.0000', '2022-01-20', 'received', '98.5600', '98.5600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49222, 366, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2022-01-20', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (49223, 366, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '4.8500', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.2500', '0.0000', '2022-01-20', 'received', '4.8500', '4.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (49224, 366, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-01-20', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49225, 366, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '2.7500', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-01-20', 'received', '2.7500', '2.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49226, 366, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-01-20', '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 (49227, 366, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '24.0000', '2022-01-20', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (49228, 366, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.0000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '1.0000', '2022-01-20', '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 (49229, 366, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '3.0000', '2022-01-20', '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 (49230, 366, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '1.0000', '2022-01-20', '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 (49231, 366, NULL, 9753, '81638164', 'DOMINION POWDER ', NULL, '52.0000', '69.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '1.0000', '2022-01-20', 'received', '52.0000', '52.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49232, 366, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.3000', '3.0000', '2022-01-20', 'received', '1.6300', '1.6300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49233, 366, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '4.3600', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6000', '10.0000', '2022-01-20', 'received', '4.3600', '4.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49234, 366, NULL, 8706, '2626', 'BCOMPLEX  SRP KINAPHARMA', NULL, '3.8000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '4.0000', '2022-01-20', '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 (49235, 366, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.9000', '48.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '2.0000', '2022-01-20', '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 (49236, 366, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.0000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '2.0000', '2022-01-20', '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 (49237, 366, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7000', '4.0000', '2022-01-20', 'received', '6.9400', '6.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (49238, 366, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-01-20', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49239, 366, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '2.7500', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-01-20', 'received', '2.7500', '2.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49240, 366, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '4.8500', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.2500', '4.0000', '2022-01-20', 'received', '4.8500', '4.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (49241, 366, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '5.0000', '2022-01-20', '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 (49242, 366, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '10.0000', '2022-01-20', 'received', '1.1000', '1.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (49243, 366, NULL, 7736, '1656', 'NUGEL -O', NULL, '16.2000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '0.0000', '2022-01-20', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49244, 366, NULL, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.9300', '2.0000', '2022-01-20', '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 (49245, 366, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2022-01-20', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49246, 366, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '15.7300', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.1900', '3.0000', '2022-01-20', 'received', '15.7300', '15.7300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (49247, 366, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '6.5800', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7400', '3.0000', '2022-01-20', 'received', '6.5800', '6.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (49248, 366, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2022-01-20', '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 (49249, 366, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '5.0000', '2022-01-20', '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 (49250, 366, NULL, 3019, '72127749', 'HEPTOLIFE SYR 200ML', NULL, '9.7000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.1000', '3.0000', '2022-01-20', 'received', '9.7000', '9.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (49251, 366, NULL, 2299, '8904107900961', 'DICLOLEX GEL 30G', NULL, '6.5400', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6200', '3.0000', '2022-01-20', 'received', '6.5400', '6.5400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (49252, 366, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.8000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2022-01-20', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49253, 366, NULL, 1808, '8906045432597', 'VITAFORCE SYRUP', NULL, '14.7000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '1.0000', '2022-01-20', 'received', '14.7000', '14.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49254, 367, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0300', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.6000', '0.0000', '2022-01-20', 'received', '7.0300', '7.0300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (49255, 367, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.5600', '0.8000', '300.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-01-20', 'received', '0.5600', '0.5600', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '0.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 (49256, 367, NULL, 8706, '2626', 'BCOMPLEX  SRP KINAPHARMA', NULL, '3.8000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2022-01-20', '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 (49257, 367, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-01-20', 'received', '3.8000', '3.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (49258, 367, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '0.0000', '2022-01-20', 'received', '7.4000', '7.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (49259, 367, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7000', '2.0000', '54.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-01-20', 'received', '0.7000', '0.7000', '54.0000', NULL, NULL, 1, 'pc', '54.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 (49260, 367, NULL, 9754, '16090219', 'CLOPIMOL TAB', NULL, '1.8000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-01-20', '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 (49261, 367, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-20', '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 (49262, 367, NULL, 9753, '81638164', 'DOMINION POWDER ', NULL, '52.0000', '69.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-01-20', 'received', '52.0000', '52.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49263, 367, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2022-01-20', 'received', '7.4000', '7.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49264, 367, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '0.0000', '2022-01-20', 'received', '1.3000', '1.3000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (49265, 368, NULL, 7641, '1561', 'LYDIA', NULL, '6.5000', '8.5800', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '0.0000', '2022-01-20', 'received', '6.5000', '6.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (49266, 368, NULL, 8706, '2626', 'BCOMPLEX  SRP KINAPHARMA', NULL, '3.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '3.0000', '2022-01-20', '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 (49267, 368, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.3000', '2.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '13.0000', '2022-01-20', 'received', '1.3000', '1.3000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (49268, NULL, NULL, 9738, '', '', 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 (49269, NULL, NULL, 9766, '', '', 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 (49270, NULL, NULL, 7955, '', '', 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 (49271, NULL, NULL, 8125, '', '', 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 (49272, NULL, NULL, 9022, '', '', 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 (49273, NULL, NULL, 8937, '', '', 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 (49274, NULL, NULL, 9772, '', '', 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 (49275, NULL, NULL, 8616, '', '', 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 (49276, NULL, NULL, 9766, '', '', 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 (49277, 369, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-21', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (49278, 369, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '7.2000', '9.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '2.0000', '2022-01-21', 'received', '7.2000', '7.2000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (49279, 369, NULL, 8518, '2438', 'FOLIC ACID CRESCENT 28S', NULL, '7.9000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '0.0000', '2022-01-21', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49280, 369, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.9000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-21', 'received', '3.9000', '3.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49281, 369, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.2600', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.3000', '0.0000', '2022-01-21', 'received', '14.2600', '14.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (49282, 369, NULL, 7379, '1299', 'TEETHING MIXTURE ERNEST', NULL, '7.8000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-21', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49283, 369, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.9800', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.6000', '0.0000', '2022-01-21', 'received', '7.9800', '7.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (49284, 369, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '47.0000', '2022-01-21', 'received', '1.1000', '1.1000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (49285, 369, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.2500', '95.0000', '2022-01-21', 'received', '0.4100', '0.4100', '125.0000', NULL, NULL, 1, 'pc', '125.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 (49286, 369, NULL, 7750, '1670', 'CALPOL 2+', NULL, '33.9800', '46.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.9000', '0.0000', '2022-01-21', 'received', '33.9800', '33.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (49287, 369, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '6.0000', '2022-01-21', '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 (49288, 369, NULL, 8944, '2864', 'VITANE SRP', NULL, '45.2400', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.4800', '2.0000', '2022-01-21', 'received', '45.2400', '45.2400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (49289, 369, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-01-21', '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 (49290, 369, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.2500', '0.0000', '2022-01-21', 'received', '14.7500', '14.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (49291, 369, NULL, 9420, '3340', 'SEPTILIN', NULL, '20.1600', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.4800', '0.0000', '2022-01-21', 'received', '20.1600', '20.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (49292, 369, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '26.0000', '35.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-01-21', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49293, 370, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-21', '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 (49294, 370, NULL, 7815, '1735', 'GIVERS KOO CAPS', NULL, '21.0000', '28.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-01-21', 'received', '21.0000', '21.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49295, 370, NULL, 8970, '2890', 'NIBIMA', NULL, '8.0000', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-01-21', '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 (49296, 370, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-21', '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 (49297, 370, NULL, 7952, '1872', 'JOY OINT', NULL, '3.5000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-01-21', '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 (49298, 370, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '8.0000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-01-21', '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 (49299, 370, NULL, 7814, '1734', 'GIVERS P CAPS', NULL, '21.0000', '28.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-01-21', 'received', '21.0000', '21.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49300, 370, NULL, 9753, '81638164', 'DOMINION POWDER ', NULL, '52.0000', '69.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '1.0000', '2022-01-21', 'received', '52.0000', '52.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49301, 370, NULL, 9326, '3246', 'DELAY MAN CAPS', NULL, '14.0000', '18.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-01-21', '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 (49302, NULL, NULL, 7723, '', '', 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 (49303, 371, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '190.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '365.6700', '0.0000', '2022-01-21', 'received', '121.8900', '121.8900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49304, 371, NULL, 2953, '85315538', 'CLOPIDOGREL 75MG  FRELET', NULL, '8.0000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-21', '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 (49305, 371, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2300', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.6000', '0.0000', '2022-01-21', 'received', '4.2300', '4.2300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (49306, 371, NULL, 9773, '36527078', 'SYMBICORT INHALALER', NULL, '48.1000', '63.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.2000', '0.0000', '2022-01-21', 'received', '48.1000', '48.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '48.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 (49307, 371, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '51.0000', '67.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2022-01-21', '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 (49308, 371, NULL, 9176, '3096', 'TOBREX EYE DROP', NULL, '22.2900', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.8700', '1.0000', '2022-01-21', 'received', '22.2900', '22.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (49309, 371, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.0000', '30.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '1.0000', '2022-01-21', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49310, 371, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '12.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-21', '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 (49311, 371, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '7.0000', '9.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-01-21', '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 (49312, 371, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '41.0000', '54.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.0000', '1.0000', '2022-01-21', 'received', '41.0000', '41.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '41.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49313, 371, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-21', '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 (49314, 371, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '0.0000', '2022-01-21', 'received', '2.3500', '2.3500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.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 (49315, 371, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9000', '0.0000', '2022-01-21', '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 (49316, 371, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.3000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6000', '0.0000', '2022-01-21', '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 (49317, 371, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '25.0000', '33.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-01-21', '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 (49318, 371, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '58.0000', '77.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '2.0000', '2022-01-21', 'received', '58.0000', '58.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49319, 371, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '0.0000', '2022-01-21', 'received', '1.8800', '1.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (49320, 371, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.9000', '7.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.3000', '0.0000', '2022-01-21', 'received', '4.9000', '4.9000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (49321, 371, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '7.3200', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.3200', '0.0000', '2022-01-21', '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 (49322, 371, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '11.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2022-01-21', '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 (49323, 371, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.7500', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2022-01-21', 'received', '8.7500', '8.7500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49324, 371, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.0000', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-01-21', '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 (49325, 371, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '46.0000', '61.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '1.0000', '2022-01-21', 'received', '46.0000', '46.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49326, 371, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '23.0000', '30.5000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '207.0000', '5.0000', '2022-01-21', 'received', '23.0000', '23.0000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (49327, 371, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '118.0600', '157.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0600', '1.0000', '2022-01-21', 'received', '118.0600', '118.0600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '118.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 (49328, 371, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '28.0700', '37.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0700', '0.0000', '2022-01-21', 'received', '28.0700', '28.0700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '28.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 (49329, 371, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.7600', '0.0000', '2022-01-21', 'received', '2.7400', '2.7400', '24.0000', NULL, NULL, 1, 'pc', '24.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 (49330, 371, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.0300', '2.7000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.9000', '5.0000', '2022-01-21', 'received', '2.0300', '2.0300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (49331, 371, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9300', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.6000', '17.0000', '2022-01-21', 'received', '6.9300', '6.9300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (49332, 371, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2022-01-21', '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 (49333, 371, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9800', '0.0000', '2022-01-21', 'received', '6.3300', '6.3300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (49334, 371, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '32.0000', '42.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '5.0000', '2022-01-21', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49335, 371, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.9000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '9.0000', '2022-01-21', 'received', '3.9000', '3.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49336, 371, NULL, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', NULL, '1.5000', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '30.0000', '2022-01-21', '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 (49337, 371, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-01-21', '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 (49338, 371, NULL, 2594, '8850769010831', 'ZEMAN CAPS', NULL, '16.6000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.6000', '6.0000', '2022-01-21', 'received', '16.6000', '16.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (49339, 371, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '1.0000', '2022-01-21', '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 (49340, 371, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.9200', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '0.0000', '2022-01-21', 'received', '2.9200', '2.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (49341, 371, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.9900', '40.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9900', '0.0000', '2022-01-21', 'received', '29.9900', '29.9900', '1.0000', NULL, NULL, 1, 'pc', '1.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 (49342, 371, NULL, 8969, '2889', 'REDSUN', NULL, '6.0500', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2500', '0.0000', '2022-01-21', '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 (49343, 371, NULL, 9692, '23051102', 'DOPATAB M250', NULL, '5.3000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '3.0000', '2022-01-21', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49344, 371, NULL, 2557, '86393917', 'METOCLOPRAMIDE', NULL, '0.5700', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '49.0000', '2022-01-21', 'received', '0.5700', '0.5700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (49345, 371, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '20.0500', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.2000', '0.0000', '2022-01-21', 'received', '20.0500', '20.0500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (49346, 371, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.4000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '0.0000', '2022-01-21', 'received', '16.4000', '16.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49347, 371, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4200', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2022-01-21', '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 (49348, 371, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8000', '0.0000', '2022-01-21', 'received', '1.3000', '1.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (49349, 371, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-01-21', '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 (49350, 371, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '8.1000', '11.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '291.6000', '12.0000', '2022-01-21', 'received', '8.1000', '8.1000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (49351, 371, NULL, 3054, '23818302', 'AZIRON 500MG TABS', NULL, '7.0000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '7.0000', '2022-01-21', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49352, 371, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '20.0000', '26.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-01-21', '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 (49353, 371, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '11.8700', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.2200', '4.0000', '2022-01-21', 'received', '11.8700', '11.8700', '6.0000', NULL, NULL, 1, 'pc', '6.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 (49354, 371, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-01-21', '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 (49355, 371, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.6000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-01-21', '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 (49356, 371, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '15.6000', '21.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.2000', '4.0000', '2022-01-21', 'received', '15.6000', '15.6000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '15.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 (49357, 371, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.1000', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '4.0000', '2022-01-21', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49358, 371, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '0.0000', '2022-01-21', '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 (49359, 371, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '0.0000', '2022-01-21', '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 (49360, 371, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-21', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (49361, 371, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-21', '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 (49362, 371, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.2700', '0.5000', '70.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '7.0000', '2022-01-21', 'received', '0.2700', '0.2700', '70.0000', NULL, NULL, 1, 'pc', '70.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 (49363, 371, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2022-01-21', '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 (49364, 371, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '0.0000', '2022-01-21', '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 (49365, 371, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-01-21', 'received', '1.1000', '1.1000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (49366, 371, NULL, 8033, '1953', 'OMEPRZOLE NIMEP', NULL, '1.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-01-21', '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 (49367, 371, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '12.9000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2022-01-21', '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 (49368, 371, NULL, 2777, '97856697', 'MMT SUSP', NULL, '2.8000', '4.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2000', '3.0000', '2022-01-21', '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 (49369, 371, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.2000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-01-21', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49370, 371, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '21.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.3000', '1.0000', '2022-01-21', 'received', '16.1000', '16.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49371, 371, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '9.2000', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '3.0000', '2022-01-21', 'received', '9.2000', '9.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49372, 371, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-21', '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 (49373, 371, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '15.5000', '20.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-01-21', 'received', '15.5000', '15.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49374, 371, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '10.2000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-01-21', 'received', '10.2000', '10.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49375, 371, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '10.2000', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '0.0000', '2022-01-21', 'received', '10.2000', '10.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49376, NULL, NULL, 7800, '', '', 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 (49377, NULL, NULL, 8301, '', '', 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 (49378, NULL, NULL, 2311, '', '', 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 (49379, NULL, NULL, 8384, '', '', 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 (49380, NULL, NULL, 2243, '', '', 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 (49381, NULL, NULL, 9100, '', '', 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 (49382, NULL, NULL, 7420, '', '', 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 (49383, NULL, NULL, 7646, '', '', 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 (49384, NULL, NULL, 2449, '', '', 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 (49385, NULL, NULL, 7603, '', '', 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 (49386, NULL, NULL, 8223, '', '', 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 (49387, NULL, NULL, 7692, '', '', 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 (49388, NULL, NULL, 2704, '', '', 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 (49389, NULL, NULL, 2163, '', '', 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 (49390, NULL, NULL, 9762, '', '', 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 (49391, NULL, NULL, 8469, '', '', 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 (49392, NULL, NULL, 1697, '', '', 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 (49393, NULL, NULL, 9079, '', '', 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 (49394, NULL, NULL, 7467, '', '', 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 (49395, NULL, NULL, 7739, '', '', 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 (49396, NULL, NULL, 8169, '', '', 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 (49397, NULL, NULL, 9628, '', '', 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 (49398, NULL, NULL, 2661, '', '', 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 (49399, NULL, NULL, 7619, '', '', 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 (49400, NULL, NULL, 9722, '', '', 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 (49401, NULL, NULL, 9309, '', '', 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 (49402, 372, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '16.0000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '3.0000', '2022-01-24', '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 (49403, 372, NULL, 8889, '2809', 'NAN 1@2', NULL, '37.0000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '185.0000', '3.0000', '2022-01-24', 'received', '37.0000', '37.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49404, 372, NULL, 8083, '2003', 'LACTOGEN 1@2', NULL, '26.0000', '29.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '2.0000', '2022-01-24', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49405, 372, NULL, 2316, '59549986', 'SMA ', NULL, '51.0000', '53.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.0000', '2.0000', '2022-01-24', '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 (49406, 373, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '16.0000', '19.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '6.0000', '2022-01-24', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (49407, 373, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '16.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-01-24', '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 (49408, 373, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '16.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-24', '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 (49409, 373, NULL, 2231, '7501058633927', 'NAN 2', NULL, '37.0000', '39.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '296.0000', '7.0000', '2022-01-24', 'received', '37.0000', '37.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (49410, 373, NULL, 2316, '59549986', 'SMA ', NULL, '51.0000', '53.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.0000', '0.0000', '2022-01-24', '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 (49411, 373, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '26.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '1.0000', '2022-01-24', '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 (49412, 373, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '26.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-01-24', '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 (49413, NULL, NULL, 9557, '', '', 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 (49414, 374, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '16.0000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '4.0000', '2022-01-24', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (49415, 374, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '16.0000', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-24', '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 (49416, 374, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '16.0000', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-24', '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 (49417, 374, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '26.0000', '29.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '0.0000', '2022-01-24', 'received', '26.0000', '26.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49418, 374, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '26.0000', '29.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '0.0000', '2022-01-24', 'received', '26.0000', '26.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49419, 374, NULL, 2231, '7501058633927', 'NAN 2', NULL, '37.0000', '39.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-01-24', '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 (49420, 374, NULL, 2316, '59549986', 'SMA ', NULL, '51.0000', '53.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '306.0000', '0.0000', '2022-01-24', 'received', '51.0000', '51.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (49421, NULL, NULL, 8940, '', '', 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 (49422, NULL, NULL, 7952, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (49423, NULL, NULL, 7699, '', '', 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 (49424, NULL, NULL, 9098, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49425, NULL, NULL, 7857, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49426, NULL, NULL, 8296, '', '', 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 (49427, NULL, NULL, 8596, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-83.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49428, NULL, NULL, 8900, '', '', 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 (49429, NULL, NULL, 8657, '', '', 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 (49430, NULL, NULL, 2431, '', '', 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 (49431, NULL, NULL, 9382, '', '', 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 (49432, 375, NULL, 2648, '61024738', 'COLGATE FOR KIDS', NULL, '5.0000', '8.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-26', '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 (49433, 375, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '4.0000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2022-01-26', '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 (49434, 375, NULL, 8915, '2835', 'LUCOZADE 380', NULL, '6.5000', '8.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-01-26', '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 (49435, 375, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-01-26', '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 (49436, 375, NULL, 8228, '2148', 'RAID', NULL, '14.0000', '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-01-26', '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 (49437, 375, NULL, 8061, '1981', 'CHOCOLATE', NULL, '6.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-26', '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 (49438, 375, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-26', '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 (49439, 375, NULL, 7588, '1508', 'FUNBACT', NULL, '7.0000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-26', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49440, 375, NULL, 7359, '1279', 'BORGES125', NULL, '13.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-26', '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 (49441, 375, NULL, 2001, '012', 'BELLS OLIVE OIL  70ML LOCAL', NULL, '3.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-01-26', '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 (49442, 375, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '10.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-01-26', '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 (49443, 375, NULL, 7722, '1642', 'ALWAYS DOUBLE', NULL, '11.0000', '14.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-01-26', '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 (49444, 375, NULL, 7723, '1643', 'ALWAYS SINGLE', NULL, '5.5000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-01-26', '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 (49445, 375, NULL, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '16.0000', '19.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-26', 'received', '16.0000', '16.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49446, 375, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '16.0000', '19.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-26', 'received', '16.0000', '16.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49447, 376, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-01-26', '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 (49448, 376, NULL, 7703, '1623', 'BRUFEN 400', NULL, '0.6500', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-26', 'received', '0.6500', '0.6500', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (49449, 376, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-01-26', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49450, 376, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '4.6000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '3.0000', '2022-01-26', '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 (49451, 376, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-01-26', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49452, 376, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-01-26', '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 (49453, 376, NULL, 9758, '35077850', 'ZAMAC TAB 100MG', NULL, '3.1400', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.8000', '3.0000', '2022-01-26', 'received', '3.1400', '3.1400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (49454, 377, 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', '12.0000', '2022-01-26', '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 (49455, 377, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '78.0000', '2022-01-26', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (49456, 377, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9000', '34.1900', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '5.0000', '2022-01-26', '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 (49457, 377, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.6300', '42.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '177.7800', '5.0000', '2022-01-26', 'received', '29.6300', '29.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '29.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 (49458, 377, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '26.9000', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.5000', '3.0000', '2022-01-26', 'received', '26.9000', '26.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '26.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 (49459, 377, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '6.8500', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2500', '0.0000', '2022-01-26', 'received', '6.8500', '6.8500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49460, 377, NULL, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '18.6000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '2.0000', '2022-01-26', 'received', '18.6000', '18.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49461, 377, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '5.0000', '2022-01-26', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49462, 377, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '33.9800', '46.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.9200', '4.0000', '2022-01-26', 'received', '33.9800', '33.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.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 (49463, 377, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.4000', '7.0000', '2022-01-26', 'received', '5.8000', '5.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (49464, 377, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '3.9500', '5.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '4.0000', '2022-01-26', 'received', '3.9500', '3.9500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (49465, 377, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '2.8000', '4.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '10.0000', '2022-01-26', '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 (49466, 377, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.4000', '2.0000', '36.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '30.0000', '2022-01-26', 'received', '1.4000', '1.4000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (49467, 377, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '17.6000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '1.0000', '2022-01-26', 'received', '17.6000', '17.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.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 (49468, 377, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '2.0000', '3.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '11.0000', '2022-01-26', '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 (49469, 377, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.1700', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '45.0000', '2022-01-26', 'received', '1.1700', '1.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (49470, 378, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '13.0000', '17.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2022-01-26', '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 (49471, 378, NULL, 3035, '31081429', 'LAWSON HERBAL', NULL, '9.5000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '2.0000', '2022-01-26', '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 (49472, 378, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-01-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 (49473, 378, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.0000', '13.0000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-26', 'received', '9.0000', '9.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49474, 378, NULL, 8619, '2539', 'TAABEA CAPS', NULL, '11.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '1.0000', '2022-01-26', '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 (49475, 378, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.5000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '10.0000', '2022-01-26', '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 (49476, 378, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-01-26', '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 (49477, 378, NULL, 9714, '52997990', 'PROSTAJOY', NULL, '26.0000', '34.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '1.0000', '2022-01-26', '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 (49478, 379, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-01-26', '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 (49479, 379, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '5.0000', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-01-26', '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 (49480, 379, NULL, 8759, '2679', 'FRUTELLI', NULL, '9.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2022-01-26', 'received', '9.0000', '9.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (49481, 379, NULL, 8759, '2679', 'FRUTELLI', NULL, '7.5000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-01-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 (49482, 379, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.5000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-01-26', '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 (49483, 379, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '4.0000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2022-01-26', '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 (49484, 379, NULL, 8933, '2853', 'RED BULL', NULL, '8.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-01-26', '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 (49485, 379, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '10.0000', '2022-01-26', '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 (49486, 379, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '5.0000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-01-26', '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 (49487, 379, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '13.5000', '17.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2022-01-26', '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 (49488, 379, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '6.5000', '8.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-01-26', '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 (49489, 379, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.2000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '0.0000', '2022-01-26', '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 (49490, 379, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '13.0000', '2022-01-26', 'received', '1.2000', '1.2000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (49491, 379, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '26.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '2.0000', '2022-01-26', '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 (49492, 379, NULL, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '21.0000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-01-26', '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 (49493, 379, NULL, 9583, '83303054', 'LEVER SOAP', NULL, '8.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '1.0000', '2022-01-26', '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 (49494, 379, NULL, 2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', NULL, '7.0000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2022-01-26', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49495, 379, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '8.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-01-26', '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 (49496, 379, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-01-26', '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 (49497, 379, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2022-01-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 (49498, 379, NULL, 9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', NULL, '9.0000', '13.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '4.0000', '2022-01-26', '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 (49499, NULL, NULL, 7589, '', '', 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 (49500, NULL, NULL, 8367, '', '', 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 (49501, NULL, NULL, 7647, '', '', 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 (49502, NULL, NULL, 1433, '', '', 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 (49503, NULL, NULL, 7396, '', '', 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 (49504, NULL, NULL, 8685, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (49505, 380, NULL, 9629, '58336463', 'ACICLOVIR TAB 200MG', NULL, '7.0000', '9.3000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-27', 'received', '7.0000', '7.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49506, 380, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.8000', '12.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-27', 'received', '5.8000', '5.8000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49507, 380, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '7.7000', '10.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-01-27', 'received', '7.7000', '7.7000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49508, NULL, NULL, 9736, '', '', 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 (49509, 381, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-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 (49510, 381, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-01-27', '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 (49511, 381, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '13.0000', '17.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-01-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 (49512, 381, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '21.0000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2022-01-27', '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 (49513, 381, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '13.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-01-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 (49514, 382, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '3.8200', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.1000', '0.0000', '2022-01-27', 'received', '3.8200', '3.8200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49515, 382, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '5.4500', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2500', '0.0000', '2022-01-27', 'received', '5.4500', '5.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (49516, NULL, NULL, 7604, '', '', 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 (49517, NULL, NULL, 7823, '', '', 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 (49518, NULL, NULL, 9629, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (49519, NULL, NULL, 7382, '', '', 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 (49520, NULL, NULL, 7435, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (49521, 383, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2022-01-28', '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 (49522, 383, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-01-28', '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 (49523, 384, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.5000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '6.0000', '2022-01-28', '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 (49524, 384, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.4000', '3.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '38.0000', '2022-01-28', '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 (49525, 384, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '2.0600', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.5000', '11.0000', '2022-01-28', 'received', '2.0600', '2.0600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.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 (49526, 384, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '9.3100', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5500', '0.0000', '2022-01-28', 'received', '9.3100', '9.3100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (49527, 384, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '16.0000', '2022-01-28', '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 (49528, 384, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '6.0000', '2022-01-28', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49529, 384, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.8000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-01-28', '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 (49530, 385, NULL, 9458, '31675978', 'CYPRON PLUS TABS', NULL, '1.8000', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '25.0000', '2022-01-28', '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 (49531, 385, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '48.0000', '2022-01-28', '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 (49532, 385, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.7200', '1.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '100.0000', '2022-01-28', 'received', '0.7200', '0.7200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (49533, 385, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.5600', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2400', '4.0000', '2022-01-28', 'received', '14.5600', '14.5600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (49534, 385, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '3.0000', '2022-01-28', '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 (49535, 385, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2300', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7600', '12.0000', '2022-01-28', 'received', '4.2300', '4.2300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (49536, 385, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '11.0000', '14.5200', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '5.0000', '2022-01-28', '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 (49537, 385, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '3.0000', '2022-01-28', '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 (49538, 385, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '4.0000', '2022-01-28', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49539, 385, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-01-28', 'received', '3.9000', '3.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49540, 385, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '20.0000', '26.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-01-28', '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 (49541, 385, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.4000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '0.0000', '2022-01-28', '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 (49542, 385, NULL, 2758, '02583050', 'CYFEN TAB', NULL, '1.2400', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '41.0000', '2022-01-28', 'received', '1.2400', '1.2400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (49543, 385, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '10.2000', '13.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '1.0000', '2022-01-28', 'received', '10.2000', '10.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49544, 385, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '10.2000', '13.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4000', '1.0000', '2022-01-28', 'received', '10.2000', '10.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49545, 385, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-01-28', '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 (49546, 385, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.8000', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-01-28', '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 (49547, 385, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.5000', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-01-28', '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 (49548, 385, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9400', '3.0000', '2022-01-28', 'received', '14.9800', '14.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (49549, 385, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.0000', '20.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-01-28', '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 (49550, 385, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '6.0000', '2022-01-28', '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 (49551, 385, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0400', '2.0000', '2022-01-28', 'received', '9.7600', '9.7600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.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 (49552, 385, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '14.6500', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9500', '1.0000', '2022-01-28', 'received', '14.6500', '14.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (49553, 385, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '11.3000', '15.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0000', '5.0000', '2022-01-28', 'received', '11.3000', '11.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49554, 385, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '33.9800', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.9400', '2.0000', '2022-01-28', 'received', '33.9800', '33.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (49555, 385, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '13.5000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '3.0000', '2022-01-28', '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 (49556, 385, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2022-01-28', '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 (49557, 385, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '9.0000', '2022-01-28', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49558, 385, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.8200', '2.4000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.2000', '40.0000', '2022-01-28', 'received', '1.8200', '1.8200', '60.0000', NULL, NULL, 1, 'pc', '60.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 (49559, 385, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6800', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '48.0000', '2022-01-28', 'received', '0.6800', '0.6800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (49560, 385, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.9900', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9700', '3.0000', '2022-01-28', 'received', '22.9900', '22.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (49561, 385, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '1.0000', '2022-01-28', 'received', '10.8000', '10.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (49562, 385, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-01-28', '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 (49563, 386, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '15.0000', '25.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '0.0000', '2022-01-28', '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 (49564, NULL, NULL, 1593, '', '', 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 (49565, NULL, NULL, 2038, '', '', 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 (49590, NULL, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '0.0000', '15.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2022-01-29', '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 (49591, NULL, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', 1, '0', NULL, NULL, NULL, '12.0000', '0.0000', '2022-01-29', '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 (49592, NULL, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '0.0000', '6.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '27.0000', '0.0000', '2022-01-29', '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 (49593, NULL, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '0.0000', '6.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2022-01-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 (49594, NULL, NULL, 2110, '6932757117080', 'MOTHER THOUCH DIAPER', NULL, '35.0000', '0.0000', '3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '105.0000', '0.0000', '2022-01-29', '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 (49595, NULL, NULL, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '23.0000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '23.0000', '0.0000', '2022-01-29', 'received', '23.0000', '23.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 (49596, NULL, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '0.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2022-01-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 (49597, NULL, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '5.0000', '0.0000', '2022-01-29', '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 (49598, NULL, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '11.0000', '0.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '22.0000', '0.0000', '2022-01-29', '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 (49599, NULL, NULL, 2685, '011111014237', 'DOVE BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '70.0000', '0.0000', '2022-01-29', 'received', '35.0000', '35.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 (49600, NULL, NULL, 2684, '037000685685', 'OLAY BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '70.0000', '0.0000', '2022-01-29', 'received', '35.0000', '35.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 (49601, NULL, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '14.0000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '14.0000', '0.0000', '2022-01-29', 'received', '14.0000', '14.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 (49602, NULL, 123, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '6.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '0.0000', '2022-01-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 (49603, NULL, 123, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '14.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '0.0000', '2022-01-29', '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 (49604, NULL, 123, 2000, '6036000087004', 'FAYTEX', NULL, '8.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '8.0000', '0.0000', '2022-01-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 (49605, NULL, 123, 1987, '6181100323665', 'SIVODERM POWDER', NULL, '5.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2022-01-29', '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 (49606, NULL, 123, 1989, '6181100321821', 'SULFUR 18', NULL, '4.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '1.0000', '2022-01-29', '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 (49607, NULL, 123, 2684, '037000685685', 'OLAY BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '70.0000', '1.0000', '2022-01-29', '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 (49608, NULL, 123, 2685, '011111014237', 'DOVE BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '70.0000', '0.0000', '2022-01-29', '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 (49609, NULL, 123, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '11.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '0.0000', '2022-01-29', '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 (49610, NULL, 123, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.0000', '0.0000', '2022-01-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 (49611, NULL, 123, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '2.0000', '2022-01-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 (49612, NULL, 123, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '23.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '0.0000', '2022-01-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 (49613, NULL, 123, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '11.0000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '0.0000', '2022-01-29', 'received', '11.0000', '11.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 (49614, NULL, 123, 2110, '6932757117080', 'MOTHER THOUCH DIAPER', NULL, '35.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '0.0000', '2022-01-29', '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 (49615, NULL, 123, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2022-01-29', '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 (49616, NULL, 123, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '0.0000', '2022-01-29', 'received', '3.0000', '3.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 (49617, NULL, 123, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '0.0000', '2022-01-29', '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 (49618, NULL, 123, 1583, '5060806420179', 'PROWOMAN DRINK 250ML', NULL, '5.8900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '11.7800', '1.0000', '2022-01-29', 'received', '5.8900', '5.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 (49619, NULL, 123, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.4000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.8000', '1.0000', '2022-01-29', 'received', '5.4000', '5.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 (49620, NULL, 123, 9416, '3336', 'WELCH DRINK SMALL', NULL, '4.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '2.0000', '2022-01-29', '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 (49621, NULL, 123, 9084, '3004', 'APPLE JUICE', NULL, '8.9000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '35.6000', '0.0000', '2022-01-29', 'received', '8.9000', '8.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 (49622, NULL, 123, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '5.0000', '2022-01-29', '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 (49623, NULL, 123, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '0.0000', '15.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '13.0000', '2022-01-29', '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 (49624, NULL, 123, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '0.0000', '15.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.0500', '2.0000', '2022-01-29', 'received', '0.8700', '0.8700', 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 (49625, NULL, 123, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '0.0000', '8.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '0.0000', '2022-01-29', 'received', '6.0000', '6.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 (49626, NULL, 123, 2648, '61024738', 'COLGATE FOR KIDS', NULL, '5.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2022-01-29', '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 (49627, NULL, 123, 2053, '6181100284225', 'CLINIC CLEAR BOBY LOTION 500ML', NULL, '19.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '2.0000', '2022-01-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 (49628, NULL, 123, 2054, '6181100284218', 'CLINIC CLEAR BOBY LOTION 250ML', NULL, '12.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2022-01-29', '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 (49629, NULL, 123, 2118, '11415402', 'AVEENO WIPES', NULL, '8.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '0.0000', '2022-01-29', '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 (49630, NULL, 123, 2968, '59467858', 'HONEY MEADOW 500ML', NULL, '18.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '2.0000', '2022-01-29', '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 (49631, NULL, 123, 2967, '73607781', 'HONEY MEADOW 250ML', NULL, '10.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '2.0000', '2022-01-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 (49632, NULL, 123, 2965, '86540789', 'LUCOZADE CAN', NULL, '5.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2022-01-29', '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 (49633, NULL, 124, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '11.8700', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '35.6100', '0.0000', '2022-01-29', '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 (49634, NULL, 124, 2014, '08906045943697', 'ACNE CLEAR GEL', NULL, '5.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2022-01-29', '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 (49635, NULL, 124, 2495, '19113194', 'CANDID V3', NULL, '8.6100', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '25.8300', '0.0000', '2022-01-29', '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 (49636, NULL, 124, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.6000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '0.0000', '2022-01-29', 'received', '18.6000', '18.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 (49637, NULL, 124, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '6.1000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '24.4000', '0.0000', '2022-01-29', 'received', '6.1000', '6.1000', 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 (49638, NULL, 124, 8517, '2437', 'AZOMAX SUSP', NULL, '28.0200', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '84.0600', '0.0000', '2022-01-29', 'received', '28.0200', '28.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 (49639, NULL, 124, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.1800', '0.0000', '2022-01-29', 'received', '8.5900', '8.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 (49640, NULL, 124, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.9400', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '11.8200', '0.0000', '2022-01-29', 'received', '3.9400', '3.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 (49641, NULL, 124, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '2.3000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.9000', '0.0000', '2022-01-29', 'received', '2.3000', '2.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 (49642, NULL, 124, 1490, '8903996006013', 'ACNEL GEL 20MG', NULL, '10.3400', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '31.0200', '0.0000', '2022-01-29', 'received', '10.3400', '10.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 (49643, NULL, 124, 7344, '1264', 'PARA DENK250 SUPPO', NULL, '1.5400', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '1.5400', '0.0000', '2022-01-29', 'received', '1.5400', '1.5400', 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 (49644, NULL, 124, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.5000', '0.0000', '2022-01-29', '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 (49645, NULL, 124, 3053, '83466743', 'IBUPROFEN DENK 600MG TAB', NULL, '1.4600', '0.0000', '20.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.2000', '6.0000', '2022-01-29', 'received', '1.4600', '1.4600', 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 (49646, NULL, 124, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.5000', '0.0000', '2022-01-29', 'received', '1.3000', '1.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 (49647, NULL, 124, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.8400', '0.0000', '20.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '56.8000', '0.0000', '2022-01-29', 'received', '2.8400', '2.8400', 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 (49648, NULL, NULL, 9546, '', '', 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 (49649, NULL, NULL, 9399, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (49650, NULL, NULL, 8816, '', '', 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 (49651, NULL, NULL, 2695, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-57.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49652, NULL, NULL, 7520, '', '', 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 (49653, NULL, NULL, 8149, '', '', 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 (49654, NULL, NULL, 8355, '', '', 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 (49655, NULL, NULL, 1969, '', '', 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 (49656, NULL, NULL, 1956, '', '', 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 (49657, NULL, NULL, 2223, '', '', 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 (49658, NULL, NULL, 9775, '', '', 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 (49659, NULL, NULL, 8556, '', '', 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 (49660, NULL, NULL, 2640, '', '', 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 (49661, NULL, NULL, 7947, '', '', 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 (49662, 387, NULL, 9784, '64812766', 'Folic Acid tab Almus 5mg', NULL, '8.0000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '6.0000', '2022-01-31', 'received', '8.0000', '8.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (49663, 387, NULL, 9786, '31318379', 'Bisoprolol tab 10mg', NULL, '8.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '1.0000', '2022-01-31', '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 (49664, 387, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '2.0000', '2022-01-31', '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 (49665, NULL, NULL, 2257, '', '', 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 (49666, NULL, NULL, 2337, '', '', 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 (49667, 388, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2022-01-31', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (49668, 389, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-31', 'received', '2.3500', '2.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (49669, 390, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-01-31', 'received', '2.3500', '2.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (49670, 391, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-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 (49671, NULL, NULL, 8183, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49672, 392, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-01-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 (49673, 392, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-01-31', '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 (49674, 392, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-01-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 (49675, 392, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '4.0000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-01-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 (49676, 392, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '10.5000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-01-31', '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 (49677, 392, NULL, 8745, '2665', 'DON SIMON', NULL, '9.5000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-01-31', '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 (49678, 392, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.5000', '14.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-01-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 (49679, 392, NULL, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', NULL, '6.5000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-01-31', '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 (49680, 392, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '7.0000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-01-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 (49681, 392, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2022-01-31', '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 (49682, 392, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-01-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 (49683, 392, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '1.0000', '2022-01-31', '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 (49684, 392, NULL, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '15.0000', '19.8000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-01-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 (49685, NULL, NULL, 7835, '', '', 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 (49686, NULL, NULL, 7614, '', '', 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 (49687, NULL, NULL, 1494, '', '', 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 (49688, NULL, NULL, 8117, '', '', 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 (49689, NULL, NULL, 7350, '', '', 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 (49690, NULL, NULL, 7419, '', '', 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 (49691, NULL, NULL, 3046, '', '', 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 (49692, NULL, NULL, 8714, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49693, NULL, NULL, 7852, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49694, NULL, NULL, 7465, '', '', 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 (49695, NULL, NULL, 8077, '', '', 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 (49696, NULL, NULL, 8120, '', '', 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 (49697, NULL, NULL, 7560, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49698, 393, NULL, 8902, '2822', ' METFORMIN GLUCOPHAGE 500MG', NULL, '16.4800', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4800', '0.0000', '2022-02-01', 'received', '16.4800', '16.4800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '16.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 (49699, NULL, NULL, 8902, '', '', 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 (49700, NULL, NULL, 1796, '', '', 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 (49701, NULL, NULL, 1901, '', '', 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 (49702, NULL, NULL, 9653, '', '', 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 (49703, NULL, NULL, 1332, '', '', 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 (49704, NULL, NULL, 9789, '', '', 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 (49705, NULL, NULL, 9485, '', '', 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 (49706, NULL, NULL, 8942, '', '', 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 (49707, NULL, NULL, 7740, '', '', 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 (49708, NULL, NULL, 7513, '', '', 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 (49709, NULL, 125, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.8000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '9.6000', '0.0000', '2022-02-01', 'received', '4.8000', '4.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 (49710, NULL, NULL, 7924, '', '', 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 (49711, NULL, NULL, 2857, '', '', 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 (49712, NULL, NULL, 9788, '', '', 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 (49713, NULL, NULL, 7612, '', '', 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 (49714, 394, NULL, 9628, '19433758', 'PRIMALAC 1&2 BABY MILK', NULL, '46.1200', '55.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.6000', '2.0000', '2022-02-01', 'received', '46.1200', '46.1200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '46.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 (49715, 395, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.7800', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2022-02-02', 'received', '1.7800', '1.7800', '60.0000', NULL, NULL, 1, 'pc', '60.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 (49716, 395, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.4000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '33.0000', '2022-02-02', '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 (49717, 395, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-02-02', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (49718, 395, NULL, 2070, '014', 'CHLO EYE ', NULL, '2.3000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '5.0000', '2022-02-02', '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 (49719, NULL, NULL, 1678, '', '', 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 (49720, NULL, NULL, 1910, '', '', 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 (49721, NULL, NULL, 3035, '', '', 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 (49722, NULL, NULL, 8607, '', '', 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 (49723, NULL, NULL, 7740, '', '', 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 (49724, NULL, NULL, 7865, '', '', 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 (49725, NULL, NULL, 8609, '', '', 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 (49726, NULL, NULL, 7343, '', '', 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 (49727, NULL, NULL, 2427, '', '', 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 (49772, NULL, NULL, 2734, '', '', 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 (49773, NULL, NULL, 9240, '', '', 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 (49774, NULL, NULL, 2611, '', '', 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 (49775, NULL, NULL, 7397, '', '', 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 (49776, NULL, NULL, 8309, '', '', 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 (49777, NULL, NULL, 8395, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49778, NULL, NULL, 7570, '', '', 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 (49779, NULL, NULL, 7547, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-106.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49780, NULL, NULL, 7911, '', '', 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 (49781, NULL, NULL, 7879, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49782, NULL, NULL, 7890, '', '', 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 (49783, NULL, NULL, 7877, '', '', 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 (49784, NULL, NULL, 7708, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-64.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49785, NULL, NULL, 8324, '', '', 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 (49786, NULL, NULL, 7918, '', '', 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 (49787, NULL, NULL, 8844, '', '', 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 (49788, NULL, NULL, 8915, '', '', 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 (49789, NULL, NULL, 7657, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-43.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49790, NULL, NULL, 8164, '', '', 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 (49791, NULL, NULL, 9100, '', '', 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 (49792, NULL, NULL, 7658, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-139.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49793, NULL, NULL, 1849, '', '', 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 (49794, NULL, NULL, 7720, '', '', 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 (49795, NULL, NULL, 7409, '', '', 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 (49796, NULL, NULL, 9286, '', '', 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 (49797, NULL, NULL, 1978, '', '', 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 (49798, NULL, NULL, 7704, '', '', 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 (49799, NULL, NULL, 7915, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49800, NULL, NULL, 8235, '', '', 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 (49801, NULL, NULL, 9117, '', '', 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 (49802, NULL, NULL, 1603, '', '', 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 (49803, NULL, NULL, 1408, '', '', 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 (49804, NULL, NULL, 8298, '', '', 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 (49805, NULL, NULL, 9609, '', '', 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 (49806, NULL, NULL, 2089, '', '', 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 (49807, NULL, NULL, 2034, '', '', 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 (49808, NULL, NULL, 7742, '', '', 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 (49809, NULL, NULL, 2439, '', '', 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 (49810, 397, NULL, 8064, '1984', 'EXETER PARA SRP', NULL, '4.9000', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '4.0000', '2022-02-04', 'received', '4.9000', '4.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49811, 397, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-04', 'received', '2.3000', '2.3000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49812, 397, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-04', 'received', '1.3000', '1.3000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (49813, 397, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '7.0000', '2022-02-04', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49814, 397, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '17.6000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '4.0000', '2022-02-04', 'received', '17.6000', '17.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (49815, 397, NULL, 8085, '2005', 'TETRA CAPS', NULL, '1.1700', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-02-04', 'received', '1.1700', '1.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (49816, 397, NULL, 7802, '1722', '~AMOXICILIN 250 BLISS', NULL, '1.2700', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5000', '23.0000', '2022-02-04', 'received', '1.2700', '1.2700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (49817, 397, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '3.0000', '2022-02-04', '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 (49818, 397, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '0.0000', '2022-02-04', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (49819, 397, NULL, 7675, '1595', 'GEBEDOL EXTRA', NULL, '2.4000', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-02-04', '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 (49820, 397, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.4000', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '11.0000', '2022-02-04', '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 (49821, 397, NULL, 7708, '1628', 'TEEDAR', NULL, '7.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-02-04', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (49822, 397, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '0.0000', '2022-02-04', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (49823, 397, NULL, 7876, '1796', 'COMBANTRIN', NULL, '10.0000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2022-02-04', '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 (49824, NULL, NULL, 7628, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-55.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49825, NULL, NULL, 8054, '', '', 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 (49826, NULL, NULL, 7591, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49827, NULL, NULL, 8187, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49828, NULL, NULL, 7531, '', '', 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 (49829, NULL, NULL, 9413, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (49830, NULL, NULL, 7506, '', '', 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 (49831, NULL, NULL, 2024, '', '', 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 (49832, NULL, NULL, 8704, '', '', 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 (49833, NULL, NULL, 8609, '', '', 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 (49834, NULL, NULL, 2496, '', '', 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 (49835, NULL, NULL, 7390, '', '', 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 (49836, NULL, NULL, 9711, '', '', 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 (49837, NULL, NULL, 8702, '', '', 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 (49838, NULL, NULL, 1534, '', '', 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 (49839, NULL, NULL, 1980, '', '', 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 (49840, NULL, NULL, 9202, '', '', 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 (49841, NULL, NULL, 9409, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (49847, 398, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.4000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-02-06', '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 (49848, 398, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '21.0000', '2022-02-06', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (49849, 398, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '57.0000', '2022-02-06', 'received', '1.0800', '1.0800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.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 (49861, NULL, 126, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '0.0000', '2022-02-06', '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 (49862, NULL, 126, 1449, 'PR-162', 'Wormee 4 tab wr036', NULL, '0.6600', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.6000', '9.0000', '2022-02-06', 'received', '0.6600', '0.6600', 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 (49863, NULL, 126, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '1.9000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '7.6000', '0.0000', '2022-02-06', 'received', '1.9000', '1.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 (49864, NULL, 126, 1337, 'PR-50', 'SPIRIT', NULL, '1.5000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '0.0000', '2022-02-06', '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 (49865, NULL, 126, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '150.0000', '0.0000', '2022-02-06', '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 (49866, NULL, 126, 7381, '1301', 'TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329', NULL, '15.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '0.0000', '2022-02-06', '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 (49867, NULL, 126, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.1000', '0.0000', '2022-02-06', 'received', '2.3500', '2.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 (49868, NULL, 126, 9566, '98215947', 'NESTRIM SYR', NULL, '3.6900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '7.3800', '1.0000', '2022-02-06', 'received', '3.6900', '3.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 (49869, NULL, 126, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '30.0800', '0.0000', '2022-02-06', 'received', '15.0400', '15.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 (49870, NULL, 126, 8775, '2695', 'VITRAC S/S', NULL, '3.3300', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.3200', '0.0000', '2022-02-06', 'received', '3.3300', '3.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 (49871, NULL, 126, 8745, '2665', 'DON SIMON', NULL, '9.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '19.0000', '0.0000', '2022-02-06', '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 (49872, 399, NULL, 7544, '1464', 'B COMPLEX TAB LOCAL', NULL, '0.2400', '0.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '60.0000', '2022-02-06', '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 (49873, 399, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '70.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2022-02-06', 'received', '0.2600', '0.2600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (49874, 399, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-02-06', 'received', '14.7500', '14.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (49875, 399, NULL, 7649, '1569', 'BX SRP 200', NULL, '7.1000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2000', '2.0000', '2022-02-06', 'received', '7.1000', '7.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (49876, 399, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.3600', '9.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.4400', '0.0000', '2022-02-06', 'received', '6.3600', '6.3600', '4.0000', NULL, NULL, 1, 'pc', '4.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 (49877, 399, NULL, 9795, '41692852', 'EMIGIVIT (MULTIVITAMIN) TABLETS', NULL, '0.4000', '0.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '100.0000', '2022-02-06', '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 (49878, 399, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4900', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.4900', '1.0000', '2022-02-06', 'received', '5.4900', '5.4900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.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 (49879, 399, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '4.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-02-06', '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 (49880, 399, NULL, 9796, '90432278', 'WELCH\"S CAN', NULL, '5.0000', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2022-02-06', '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 (49881, NULL, NULL, 7971, '', '', 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 (49882, NULL, NULL, 8965, '', '', 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 (49883, NULL, 127, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '6.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '0.0000', '2022-02-06', '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 (49884, NULL, 127, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '28.2000', '0.0000', '2022-02-06', 'received', '9.4000', '9.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 (49885, NULL, 127, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.5800', '0.0000', '2022-02-06', 'received', '5.2900', '5.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 (49886, NULL, 127, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '7.8000', '0.0000', '2022-02-06', 'received', '3.9000', '3.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 (49887, NULL, 127, 2777, '97856697', 'MMT SUSP', NULL, '2.8000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.6000', '0.0000', '2022-02-06', 'received', '2.8000', '2.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 (49888, NULL, 127, 1549, '610074245209', 'LAVET', NULL, '14.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.0000', '2.0000', '2022-02-06', '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 (49889, NULL, 127, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '23.5000', '0.0000', '2022-02-06', 'received', '2.3500', '2.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 (49890, NULL, 127, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.2400', '0.0000', '2022-02-06', 'received', '11.1200', '11.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 (49891, NULL, 127, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '9.2000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '18.4000', '2.0000', '2022-02-06', '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 (49892, NULL, 127, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '33.7600', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '33.7600', '0.0000', '2022-02-06', 'received', '33.7600', '33.7600', 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 (49893, NULL, 127, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.7500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.2500', '0.0000', '2022-02-06', 'received', '6.7500', '6.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 (49894, NULL, 127, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.1000', '0.0000', '2022-02-06', '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 (49895, NULL, 127, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '31.9200', '0.0000', '2022-02-06', '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 (49896, NULL, 127, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '0.0000', '2022-02-06', '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 (49897, NULL, 127, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2022-02-06', '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 (49898, NULL, 127, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2022-02-06', '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 (49899, NULL, 127, 1370, 'PR-83', 'LIVERPLEX-B ADULT SYR', NULL, '7.4500', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.9000', '2.0000', '2022-02-06', 'received', '7.4500', '7.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 (49900, NULL, 127, 2545, '82780299', 'DREZ POWDER 10G', NULL, '7.3000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.9000', '0.0000', '2022-02-06', 'received', '7.3000', '7.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 (49901, NULL, 127, 9095, '3015', 'MALTESERS', NULL, '8.7600', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '43.8000', '1.0000', '2022-02-06', 'received', '8.7600', '8.7600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49902, NULL, 127, 2346, '68048014', 'CALAMINE OINT', NULL, '5.8000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.4000', '0.0000', '2022-02-06', 'received', '5.8000', '5.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 (49903, NULL, 127, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.8000', '0.0000', '40.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '17.0000', '2022-02-06', 'received', '1.8000', '1.8000', 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 (49904, NULL, 127, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.5000', '0.0000', '14.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '63.0000', '0.0000', '2022-02-06', 'received', '4.5000', '4.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 (49905, NULL, 127, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', NULL, '5.2000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.6000', '0.0000', '2022-02-06', '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 (49906, NULL, 127, 2517, '94045463', 'TENDRINA CREAM S/S', NULL, '5.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '0.0000', '2022-02-06', '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 (49907, NULL, 127, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '5.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '2.0000', '2022-02-06', '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 (49908, NULL, 127, 9574, '80996728', 'FIRST LADY BOBY CREAM', NULL, '10.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '0.0000', '2022-02-06', '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 (49909, NULL, 127, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '88.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '88.0000', '0.0000', '2022-02-06', 'received', '88.0000', '88.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 (49910, NULL, 127, 2424, '72870535', 'DEVA SOFTNER', NULL, '12.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2022-02-06', '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 (49911, NULL, 127, 2963, '58830438', 'COMFORT SOFTNER S/S', NULL, '13.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '1.0000', '2022-02-06', '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 (49912, NULL, 127, 3077, '79135161', 'JOHNSON BABY POWDER S/S', NULL, '11.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '0.0000', '2022-02-06', '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 (49913, NULL, 127, 2045, '6181100532166', 'DAY BY DAY POWDER 500 G', NULL, '6.5000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.5000', '0.0000', '2022-02-06', 'received', '6.5000', '6.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 (49914, NULL, 127, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '11.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '0.0000', '2022-02-06', '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 (49915, NULL, 127, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '28.5000', '1.0000', '2022-02-06', '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 (49916, NULL, 127, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '4.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '8.0000', '0.0000', '2022-02-06', '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 (49917, NULL, 127, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.5000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '0.0000', '2022-02-06', '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 (49918, NULL, 127, 9487, '11890727', 'OVALTINE TEA', NULL, '23.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '0.0000', '2022-02-06', '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 (49919, NULL, 127, 1988, '6182000127728', 'PHARMADERM', NULL, '5.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '0.0000', '2022-02-06', '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 (49920, NULL, 127, 2532, '8906081290236', ' GLAM&GLORY', NULL, '8.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '1.0000', '2022-02-06', '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 (49921, NULL, 127, 2534, '754604502834', 'NEEM FACIAL PRODUCT', NULL, '25.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '2.0000', '2022-02-06', '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 (49922, NULL, 127, 2578, '00665739', 'PALM OLIVE 250ML SMALL', NULL, '10.0000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '2.0000', '2022-02-06', '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 (49923, NULL, 127, 2969, '6009826820414', 'TETMOSOL BABY SOFT SOAP', NULL, '5.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '5.0000', '2022-02-06', '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 (49924, NULL, 127, 2099, '36936180', 'LETARON SYRUP 200ML', NULL, '2.8000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.6000', '1.0000', '2022-02-06', 'received', '2.8000', '2.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 (49925, NULL, 127, 2690, '834576006223', 'DERMASIL BODY WASH SHOWER GEL', NULL, '17.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '1.0000', '2022-02-06', 'received', '17.0000', '17.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 (49926, NULL, NULL, 9778, '', '', 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 (49927, NULL, NULL, 2978, '', '', 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 (49928, NULL, NULL, 7885, '', '', 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 (49929, NULL, NULL, 7883, '', '', 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 (49930, NULL, NULL, 7552, '', '', 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 (49931, NULL, NULL, 7738, '', '', 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 (49932, NULL, NULL, 8882, '', '', 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 (49933, NULL, NULL, 8276, '', '', 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 (49934, NULL, NULL, 8352, '', '', 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 (49935, NULL, NULL, 9785, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49936, NULL, NULL, 8475, '', '', 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 (49937, NULL, NULL, 7557, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-122.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49938, NULL, NULL, 2590, '', '', 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 (49939, NULL, NULL, 9776, '', '', 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 (49940, NULL, NULL, 7832, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49941, NULL, NULL, 7736, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49942, NULL, NULL, 7782, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49943, NULL, NULL, 8186, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-66.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49944, NULL, NULL, 8172, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49945, NULL, NULL, 8989, '', '', 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 (49946, NULL, NULL, 8372, '', '', 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 (49947, NULL, NULL, 9393, '', '', 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 (49948, NULL, NULL, 9560, '', '', 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 (49949, NULL, NULL, 9775, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (49950, NULL, NULL, 7930, '', '', 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 (49951, NULL, NULL, 7344, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49952, NULL, NULL, 9721, '', '', 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 (49953, NULL, NULL, 2784, '', '', 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 (49954, NULL, NULL, 7641, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-168.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49955, NULL, NULL, 7907, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49956, NULL, NULL, 7331, '', '', 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 (49957, NULL, NULL, 7702, '', '', 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 (49958, NULL, NULL, 7765, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49959, NULL, NULL, 7780, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-60.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49960, NULL, NULL, 7999, '', '', 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 (49961, NULL, NULL, 7689, '', '', 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 (49962, NULL, NULL, 8069, '', '', 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 (49963, NULL, NULL, 8456, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49964, NULL, NULL, 8702, '', '', 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 (49965, NULL, NULL, 7564, '', '', 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 (49966, NULL, NULL, 7933, '', '', 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 (49967, NULL, NULL, 9793, '', '', 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 (49968, NULL, NULL, 7565, '', '', 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 (49969, NULL, NULL, 7666, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-108.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49990, 402, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.8000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '20.0000', '2022-02-08', '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 (49991, 402, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2022-02-08', '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 (49992, 402, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-02-08', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (49993, 402, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '5.0000', '2022-02-08', '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 (49994, 402, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4500', '4.0000', '2022-02-08', 'received', '5.2900', '5.2900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (49995, 402, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '3.0000', '2022-02-08', '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 (49996, 402, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '6.5000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '3.0000', '2022-02-08', '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 (49997, 402, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.6000', '23.2300', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '1.0000', '2022-02-08', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (49998, 402, NULL, 9799, '60752483', 'ENTERICA', NULL, '8.0000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2022-02-08', '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 (49999, 403, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-02-08', '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 (50000, 403, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.3300', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '9.0000', '2022-02-08', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (50001, 403, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '7.3000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '4.0000', '2022-02-08', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50002, 403, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '4.0000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2022-02-08', '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 (50003, 403, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '9.0000', '2022-02-08', '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 (50004, 403, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '9.5000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '3.0000', '2022-02-08', '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 (50005, 403, NULL, 7918, '1838', 'ZUBES CHILD', NULL, '9.2000', '12.5000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-08', 'received', '9.2000', '9.2000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (50006, 403, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '3.0000', '2022-02-08', '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 (50007, 403, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.0000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-02-08', '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 (50008, 403, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2022-02-08', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (50009, NULL, NULL, 2919, '', '', 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 (50010, NULL, NULL, 8422, '', '', 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 (50011, NULL, NULL, 1928, '', '', 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 (50012, NULL, NULL, 8063, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50013, NULL, NULL, 7495, '', '', 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 (50014, NULL, NULL, 7799, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50015, NULL, NULL, 8359, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-52.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50016, NULL, NULL, 9797, '', '', 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 (50017, NULL, NULL, 7906, '', '', 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 (50018, NULL, NULL, 8127, '', '', 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 (50019, NULL, NULL, 9473, '', '', 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 (50020, NULL, NULL, 7330, '', '', 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 (50021, NULL, NULL, 8686, '', '', 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 (50022, NULL, NULL, 9794, '', '', 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 (50023, NULL, NULL, 7893, '', '', 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 (50024, NULL, NULL, 1480, '', '', 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 (50025, NULL, NULL, 1559, '', '', 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 (50026, NULL, NULL, 2262, '', '', 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 (50027, NULL, NULL, 2136, '', '', 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 (50028, NULL, NULL, 1828, '', '', 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 (50029, NULL, NULL, 1748, '', '', 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 (50030, NULL, NULL, 1561, '', '', 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 (50031, NULL, NULL, 2376, '', '', 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 (50032, NULL, NULL, 1701, '', '', 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 (50033, NULL, NULL, 2864, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (50034, NULL, NULL, 2073, '', '', 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 (50035, 404, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '16.8000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-02-09', 'received', '16.8000', '16.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50036, 404, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2800', '1.0000', '2022-02-09', 'received', '8.6400', '8.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (50037, 404, NULL, 7571, '1491', 'NUCLEO CMP', NULL, '2.1000', '2.7000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.1000', '1.0000', '2022-02-09', 'received', '2.1000', '2.1000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (50038, 404, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.8500', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '1.0000', '2022-02-09', 'received', '14.8500', '14.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (50039, 404, NULL, 7412, '1332', 'COLODIUM', NULL, '1.5200', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '0.0000', '2022-02-09', '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 (50040, 404, NULL, 7608, '1528', 'AUNTY MARY', NULL, '7.7000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-02-09', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50041, 404, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '22.0000', '2022-02-09', 'received', '1.4300', '1.4300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (50042, 404, NULL, 7641, '1561', 'LYDIA', NULL, '6.9100', '10.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '276.4000', '0.0000', '2022-02-09', 'received', '6.9100', '6.9100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '6.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 (50043, 404, NULL, 7664, '1584', 'DUROL ADULT', NULL, '6.9400', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7000', '0.0000', '2022-02-09', 'received', '6.9400', '6.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (50044, 404, NULL, 7535, '1455', 'SAMAILN ADULT', NULL, '4.9000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '6.0000', '2022-02-09', '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 (50045, 404, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '5.8000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2022-02-09', 'received', '5.8000', '5.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50046, 404, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-02-09', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50047, 404, NULL, 7509, '1429', 'ROOTER', NULL, '7.4000', '10.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '0.0000', '2022-02-09', 'received', '7.4000', '7.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (50048, 404, NULL, 7749, '1669', 'FOLIGROW SRP', NULL, '19.6200', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.1000', '1.0000', '2022-02-09', 'received', '19.6200', '19.6200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50049, 404, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '25.9000', '36.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '1.0000', '2022-02-09', '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 (50050, 404, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.2000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.0000', '4.0000', '2022-02-09', 'received', '20.2000', '20.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50051, 404, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-02-09', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50052, 404, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '31.5000', '43.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.5000', '5.0000', '2022-02-09', 'received', '31.5000', '31.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50053, 404, NULL, 7774, '1694', 'MIST POT SIT', NULL, '1.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-02-09', '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 (50054, 404, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '1.7300', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.6500', '5.0000', '2022-02-09', 'received', '1.7300', '1.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.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 (50055, 404, NULL, 8345, '2265', 'NEXCOFER CAPS', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-02-09', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50056, 404, NULL, 8449, '2369', 'FEROLLEX SRP', NULL, '11.9000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7000', '0.0000', '2022-02-09', 'received', '11.9000', '11.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50057, 404, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2022-02-09', '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 (50058, 404, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '7.8000', '10.3000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-02-09', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50059, 404, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.8000', '14.2600', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-02-09', '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 (50060, 404, NULL, 9098, '3018', 'JOY VIKIL', NULL, '26.0000', '34.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '0.0000', '2022-02-09', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50061, NULL, NULL, 9770, '', '', 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 (50062, NULL, NULL, 9721, '', '', 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 (50063, NULL, NULL, 8966, '', '', 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 (50064, NULL, NULL, 8888, '', '', 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 (50065, NULL, NULL, 8102, '', '', 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 (50066, NULL, NULL, 9167, '', '', 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 (50069, NULL, NULL, 8455, '', '', 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 (50070, 405, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '35.9400', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.8200', '0.0000', '2022-02-10', 'received', '35.9400', '35.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (50071, 405, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '16.0200', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0600', '1.0000', '2022-02-10', 'received', '16.0200', '16.0200', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50072, 405, NULL, 9802, '27181328', 'LISINOPRIL 5MG TAB UK', NULL, '8.9100', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7300', '2.0000', '2022-02-10', 'received', '8.9100', '8.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (50073, 405, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.2000', '0.0000', '2022-02-10', 'received', '3.5500', '3.5500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (50074, 405, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '5.1800', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0800', '0.0000', '2022-02-10', 'received', '5.1800', '5.1800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (50075, 405, NULL, 2385, '52921', 'BECOATIN TABS', NULL, '8.9100', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5500', '0.0000', '2022-02-10', 'received', '8.9100', '8.9100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (50076, 405, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '21.7800', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3400', '0.0000', '2022-02-10', 'received', '21.7800', '21.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (50077, 405, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '3.1200', '4.0000', '150.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '468.0000', '0.0000', '2022-02-10', 'received', '3.1200', '3.1200', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '3.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 (50078, 405, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-02-10', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50079, 405, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6800', '1.0000', '2022-02-10', 'received', '2.2300', '2.2300', '16.0000', NULL, NULL, 1, 'pc', '16.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 (50080, 405, NULL, 2992, '39433029', 'PANADOL TAB PLAIN', NULL, '2.8000', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '6.0000', '2022-02-10', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50081, 405, NULL, 9021, '2941', 'UNIDUS LONG LOVE CONDOM', NULL, '6.7300', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3800', '1.0000', '2022-02-10', 'received', '6.7300', '6.7300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (50082, 405, 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', '0.0000', '2022-02-10', '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 (50083, 405, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '4.7500', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.7500', '0.0000', '2022-02-10', 'received', '4.7500', '4.7500', '1.0000', NULL, NULL, 1, 'pc', '1.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 (50084, 405, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '6.4400', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4400', '0.0000', '2022-02-10', 'received', '6.4400', '6.4400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '6.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 (50085, 405, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.8500', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.8500', '0.0000', '2022-02-10', 'received', '3.8500', '3.8500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.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 (50086, 405, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '90.0000', '206.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '1.0000', '2022-02-10', '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 (50087, 405, NULL, 7993, '1913', 'PERFECTIL PLATINUM', NULL, '41.0000', '51.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-02-10', 'received', '41.0000', '41.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '41.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50088, 405, NULL, 9653, '2483721', 'PERFECTIL PLATIUM SKIN RADIANCE ULITIMATE', NULL, '46.0000', '60.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-02-10', 'received', '46.0000', '46.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (50089, 406, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.5500', '19.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.7500', '2.0000', '2022-02-10', 'received', '13.5500', '13.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (50090, 406, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '6.7500', '9.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '22.0000', '2022-02-10', 'received', '6.7500', '6.7500', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '6.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 (50102, 407, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-02-10', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50103, 407, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '5.0000', '2022-02-10', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (50104, 407, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-02-10', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (50105, 407, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.5000', '6.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '9.0000', '2022-02-10', '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 (50106, 407, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '2.2000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-02-10', '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 (50107, 407, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2022-02-10', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50108, 407, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-02-10', '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 (50109, 407, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.0000', '31.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-02-10', '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 (50110, 407, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-02-10', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50111, 407, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '5.0000', '2022-02-10', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50112, 407, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-02-10', '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 (50113, 407, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.9000', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2022-02-10', '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 (50114, 408, NULL, 7885, '1805', 'DIFLUCAN', NULL, '82.8700', '110.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.6100', '0.0000', '2022-02-11', 'received', '82.8700', '82.8700', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50115, 408, NULL, 7736, '1656', 'NUGEL -O', NULL, '16.7000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.2000', '0.0000', '2022-02-11', '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 (50116, 408, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '3.0000', '2022-02-11', '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 (50117, 408, NULL, 9801, '33158817', 'LEO RUB', NULL, '3.2300', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.3800', '4.0000', '2022-02-11', 'received', '3.2300', '3.2300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (50118, 408, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '8.2300', '11.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.4500', '10.0000', '2022-02-11', 'received', '8.2300', '8.2300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (50119, 409, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0700', '1.0000', '2022-02-11', 'received', '8.2300', '8.2300', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '8.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 (50120, 409, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2022-02-11', '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 (50121, 409, NULL, 9806, '15673234', 'HERBLOZ LOZENGES', NULL, '1.0800', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '13.0000', '2022-02-11', 'received', '1.0800', '1.0800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (50122, 409, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '10.0000', '2022-02-11', 'received', '0.6500', '0.6500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.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 (50123, 409, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '0.0000', '2022-02-11', 'received', '7.4000', '7.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (50159, NULL, NULL, 9420, '', '', 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 (50160, NULL, NULL, 7896, '', '', 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 (50161, NULL, NULL, 8153, '', '', 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 (50162, NULL, NULL, 8079, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50163, NULL, NULL, 2402, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (50164, NULL, NULL, 1761, '', '', 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 (50165, NULL, NULL, 9811, '', '', 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 (50225, 412, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '110.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-02-12', '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 (50226, 412, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-02-12', '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 (50227, 412, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-02-12', '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 (50228, 412, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8000', '5.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '24.0000', '2022-02-12', 'received', '3.8000', '3.8000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (50229, 412, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.0200', '47.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0400', '0.0000', '2022-02-12', 'received', '33.0200', '33.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (50230, 412, NULL, 9717, '59692164', 'DAWN OF LIFE  200ML', NULL, '19.0000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-02-12', '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 (50231, 412, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.0000', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-02-12', '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 (50232, 412, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-02-12', '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 (50233, 412, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '4.0000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-02-12', '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 (50234, 412, NULL, 3023, '83478580', 'MALIN JUNIOR', NULL, '5.4600', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7600', '1.0000', '2022-02-12', 'received', '5.4600', '5.4600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (50235, 412, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '4.4100', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2300', '0.0000', '2022-02-12', 'received', '4.4100', '4.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (50236, 412, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '10.2000', '13.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2022-02-12', 'received', '10.2000', '10.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (50237, 412, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.4000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '25.0000', '2022-02-12', '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 (50238, 412, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '11.7000', '15.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-02-12', '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 (50239, 412, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '0.0000', '2022-02-12', 'received', '7.4000', '7.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (50240, 412, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6200', '3.0000', '2022-02-12', 'received', '4.2700', '4.2700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (50241, 412, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.2000', '3.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-02-12', 'received', '2.2000', '2.2000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (50242, 412, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-02-12', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (50243, 412, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4200', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-02-12', '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 (50244, 412, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3200', '3.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.2000', '28.0000', '2022-02-12', 'received', '2.3200', '2.3200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (50245, 412, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.3000', '0.0000', '2022-02-12', 'received', '16.1000', '16.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50246, 412, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.8000', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-02-12', '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 (50247, 412, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '12.0000', '16.0000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-02-12', 'received', '12.0000', '12.0000', '14.0000', NULL, NULL, 1, 'pc', '14.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 (50248, 412, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4500', '0.0000', '2022-02-12', 'received', '5.2900', '5.2900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (50249, 412, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2022-02-12', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (50250, 412, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '31.5000', '43.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '2.0000', '2022-02-12', '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 (50251, 412, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '7.8000', '11.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '2.0000', '2022-02-12', 'received', '7.8000', '7.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (50252, 412, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.8000', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '0.0000', '2022-02-12', '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 (50253, 412, NULL, 9813, '71936867', 'PIROXILEX 20MG CAP', NULL, '1.4900', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8000', '9.0000', '2022-02-12', 'received', '1.4900', '1.4900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (50254, 412, NULL, 9814, '07253413', 'HEPTOLIF TABLETS', NULL, '0.9000', '1.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '32.0000', '2022-02-12', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (50255, 412, NULL, 9815, '04029155', 'BLOCOLD TABLET', NULL, '0.9000', '1.2000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-02-12', 'received', '0.9000', '0.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50256, 412, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-02-12', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50270, NULL, NULL, 8731, '', '', 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 (50271, NULL, NULL, 9812, '', '', 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 (50272, NULL, NULL, 2624, '', '', 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 (50273, NULL, NULL, 8530, '', '', 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 (50274, NULL, NULL, 2098, '', '', 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 (50275, NULL, NULL, 7330, '', '', 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 (50276, NULL, NULL, 2135, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50277, NULL, NULL, 1450, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-189.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50278, NULL, NULL, 8809, '', '', 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 (50279, NULL, NULL, 9422, '', '', 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 (50280, NULL, NULL, 7430, '', '', 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 (50281, NULL, NULL, 8692, '', '', 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 (50282, NULL, NULL, 2039, '', '', 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 (50283, NULL, NULL, 2273, '', '', 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 (50284, NULL, NULL, 9796, '', '', 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 (50285, NULL, NULL, 8849, '', '', 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 (50286, 400, NULL, 7989, '1909', 'WELLWOMAN PLUS', NULL, '37.8200', '50.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.2800', '0.0000', '2022-02-08', 'received', '37.8200', '37.8200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '37.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 (50287, 400, NULL, 8430, '2350', 'ALKA SRP', NULL, '32.0800', '42.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.4000', '0.0000', '2022-02-08', 'received', '32.0800', '32.0800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '32.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 (50288, 400, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '25.7400', '35.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.2200', '0.0000', '2022-02-08', 'received', '25.7400', '25.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.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 (50289, 400, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.2700', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.3500', '3.0000', '2022-02-08', 'received', '12.2700', '12.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (50290, 400, NULL, 7958, '1878', 'ROBB JAR', NULL, '3.7500', '5.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-02-08', '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 (50291, 400, NULL, 9798, '55455893', 'ENACEF 250MG', NULL, '13.9000', '18.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.4000', '5.0000', '2022-02-08', 'received', '13.9000', '13.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50292, 400, NULL, 9797, '91200097', 'RONFIT COLDEXTRA TAB', NULL, '2.0000', '3.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '44.0000', '2022-02-08', 'received', '2.0000', '2.0000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (50293, 400, NULL, 9771, '66803884', 'ZYMAX  250MG', NULL, '6.0000', '8.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-08', '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 (50294, NULL, NULL, 9794, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-90.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50295, 401, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '12.0000', '15.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '7.0000', '2022-02-08', '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 (50296, 401, NULL, 7721, '1641', 'ALWAYS MAXI', NULL, '7.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-02-08', '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 (50297, 401, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '5.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-02-08', '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 (50298, 401, NULL, 9416, '3336', 'WELCH DRINK SMALL', NULL, '4.0000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '3.0000', '2022-02-08', '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 (50299, 401, NULL, 8915, '2835', 'LUCOZADE 380', NULL, '6.5000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-02-08', '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 (50300, 401, NULL, 9084, '3004', 'APPLE JUICE', NULL, '10.5000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-02-08', '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 (50301, 401, NULL, 8059, '1979', 'PROPER PAD', NULL, '6.5000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-02-08', '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 (50302, 401, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-02-08', '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 (50303, 401, NULL, 8061, '1981', 'CHOCOLATE', NULL, '6.5000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-02-08', '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 (50304, 401, NULL, 8415, '2335', 'CHOCOLATE M/S', NULL, '3.2500', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '8.0000', '2022-02-08', 'received', '3.2500', '3.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50305, 401, NULL, 9092, '3012', 'VINKA CHOCOLATE', NULL, '0.3200', '0.5000', '85.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '35.0000', '2022-02-08', 'received', '0.3200', '0.3200', '85.0000', NULL, NULL, 1, 'pc', '85.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 (50306, 401, NULL, 7728, '1648', 'MENTOS GUM ICE', NULL, '1.8000', '2.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '6.0000', '2022-02-08', 'received', '1.8000', '1.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (50307, NULL, NULL, 1517, '', '', 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 (50308, NULL, NULL, 9799, '', '', 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 (50309, NULL, NULL, 9728, '', '', 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 (50310, NULL, NULL, 7577, '', '', 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 (50311, NULL, NULL, 7478, '', '', 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 (50312, NULL, NULL, 9796, '', '', 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 (50313, NULL, NULL, 8430, '', '', 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 (50314, NULL, NULL, 7762, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50315, NULL, NULL, 9726, '', '', 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 (50316, NULL, NULL, 8852, '', '', 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 (50317, NULL, NULL, 8067, '', '', 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 (50318, NULL, NULL, 7925, '', '', 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 (50319, NULL, NULL, 8408, '', '', 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 (50320, NULL, NULL, 8548, '', '', 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 (50321, NULL, NULL, 9150, '', '', 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 (50322, NULL, NULL, 2624, '', '', 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 (50323, NULL, NULL, 9482, '', '', 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 (50324, NULL, NULL, 9424, '', '', 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 (50325, NULL, NULL, 7788, '', '', 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 (50326, NULL, NULL, 7577, '', '', 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 (50362, NULL, NULL, 9692, '', '', 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 (50363, 410, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '40.0000', '2022-02-11', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (50364, 410, NULL, 7464, '1384', 'RHINATHIOL ADULT BLUE', NULL, '21.9000', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.5000', '0.0000', '2022-02-11', 'received', '21.9000', '21.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (50365, 410, NULL, 7614, '1534', 'IDEOS', NULL, '50.4900', '67.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.9800', '1.0000', '2022-02-11', 'received', '50.4900', '50.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.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 (50366, 410, NULL, 7562, '1482', 'IBEX', NULL, '5.5300', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1800', '1.0000', '2022-02-11', 'received', '5.5300', '5.5300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50367, 410, NULL, 9807, '46079779', 'EXTRAFLEX CAP', NULL, '36.8000', '49.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.6000', '2.0000', '2022-02-11', 'received', '36.8000', '36.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50368, 410, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '3.1800', '4.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.6000', '0.0000', '2022-02-11', 'received', '3.1800', '3.1800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (50369, 410, NULL, 7928, '1848', 'BENDRO 5MG', NULL, '11.7000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-02-11', '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 (50370, 410, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.5000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-02-11', '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 (50371, 410, NULL, 8902, '2822', ' METFORMIN GLUCOPHAGE 500MG', NULL, '19.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2022-02-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 (50372, 410, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.5000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '4.0000', '2022-02-11', '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 (50373, 410, NULL, 8215, '2135', 'FFLUCLOX 500', NULL, '13.9000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.6000', '1.0000', '2022-02-11', 'received', '13.9000', '13.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (50374, 410, NULL, 8032, '1952', 'FISHERMAN', NULL, '6.4400', '8.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.5600', '2.0000', '2022-02-11', 'received', '6.4400', '6.4400', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '6.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 (50375, 410, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6700', '0.0000', '2022-02-11', 'received', '19.8900', '19.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (50376, 410, NULL, 9805, '65440692', 'FERROVITA SYRUP', NULL, '31.5000', '42.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '2.0000', '2022-02-11', '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 (50377, 410, NULL, 9808, '71846421', 'SECNIDEX 1G TAB', NULL, '4.6000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '4.0000', '2022-02-11', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50378, 410, NULL, 7883, '1803', 'EVECARE', NULL, '34.0000', '45.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-02-11', '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 (50379, 410, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.2000', '23.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2022-02-11', 'received', '17.2000', '17.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (50380, 410, NULL, 8903, '2823', 'MALIN BABY', NULL, '5.4000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '4.0000', '2022-02-11', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50381, 410, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '2.4500', '3.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-02-11', 'received', '2.4500', '2.4500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.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 (50382, 410, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '5.7900', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '0.0000', '2022-02-11', 'received', '5.7900', '5.7900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50383, 410, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '2.0000', '2022-02-11', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50384, 410, NULL, 9513, '46545234', 'GLUCO NAF C', NULL, '8.1000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2022-02-11', '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 (50385, 410, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '40.0000', '2022-02-11', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (50386, 410, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.8600', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2022-02-11', 'received', '0.8600', '0.8600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (50387, 410, NULL, 9803, '16043207', 'HOT NASO NASAL', NULL, '4.5500', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '4.0000', '2022-02-11', 'received', '4.5500', '4.5500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (50388, 410, NULL, 7806, '1726', 'DOMI 10', NULL, '1.8000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-02-11', '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 (50389, 410, NULL, 9804, '36365929', 'COLD NASO NASAL', NULL, '3.0500', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '0.0000', '2022-02-11', 'received', '3.0500', '3.0500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50390, 410, NULL, 9413, '3333', 'MALAR 2 DS', NULL, '9.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '8.0000', '2022-02-11', '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 (50391, 410, NULL, 8304, '2224', 'POLYFER 200ML', NULL, '6.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-02-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 (50392, 410, NULL, 9810, '08998339', 'NEOFERON', NULL, '9.8000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '4.0000', '2022-02-11', 'received', '9.8000', '9.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50393, 410, NULL, 8203, '2123', 'INDOCID', NULL, '0.4000', '0.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-02-11', 'received', '0.4000', '0.4000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (50394, 410, NULL, 7608, '1528', 'AUNTY MARY', NULL, '7.7000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '0.0000', '2022-02-11', '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 (50395, 410, NULL, 8360, '2280', 'LEENA CAPS', NULL, '3.2300', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.1500', '2.0000', '2022-02-11', 'received', '3.2300', '3.2300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (50396, 410, NULL, 8361, '2281', 'LEENA SRP', NULL, '7.2300', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1500', '0.0000', '2022-02-11', '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 (50397, 410, NULL, 8335, '2255', 'RUBBING ALC S/S', NULL, '6.0000', '10.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-11', '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 (50398, 410, NULL, 9575, '24432561', 'LOSARTAN TAB 50MG UK', NULL, '13.5000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '1.0000', '2022-02-11', '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 (50419, NULL, NULL, 7562, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50420, NULL, NULL, 7967, '', '', 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 (50421, NULL, NULL, 7535, '', '', 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 (50422, NULL, NULL, 9784, '', '', 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 (50423, NULL, NULL, 7527, '', '', 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 (50424, NULL, NULL, 7962, '', '', 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 (50425, NULL, NULL, 8466, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-120.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50426, NULL, NULL, 8883, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50427, NULL, NULL, 7333, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-97.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50428, NULL, NULL, 8084, '', '', 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 (50429, NULL, NULL, 7989, '', '', 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 (50430, NULL, NULL, 2944, '', '', 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 (50431, NULL, NULL, 8667, '', '', 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 (50432, NULL, NULL, 2486, '', '', 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 (50433, NULL, NULL, 8179, '', '', 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 (50434, NULL, NULL, 1575, '', '', 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 (50435, NULL, NULL, 7579, '', '', 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 (50436, NULL, NULL, 7652, '', '', 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 (50437, NULL, NULL, 2216, '', '', 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 (50438, NULL, NULL, 9695, '', '', 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 (50439, NULL, NULL, 9735, '', '', 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 (50440, NULL, NULL, 2487, '', '', 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 (50441, NULL, NULL, 7552, '', '', 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 (50442, 396, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.0000', '17.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-02-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 (50443, 396, NULL, 7576, '1496', 'SOLUBLE ASP', NULL, '1.6300', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6000', '0.0000', '2022-02-02', 'received', '1.6300', '1.6300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50444, 396, NULL, 8276, '2196', 'AZILEX 250', NULL, '12.0000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2022-02-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 (50445, 396, NULL, 9252, '3172', 'KLINDA 300', NULL, '11.5000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2022-02-02', 'received', '11.5000', '11.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50446, 396, NULL, 9330, '3250', 'APETATRUST', NULL, '7.9000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '2.0000', '2022-02-02', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50447, 396, NULL, 8128, '2048', 'OSTECARE LOCAL TAB', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '5.0000', '2022-02-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 (50448, 396, NULL, 8689, '2609', 'LYDIA DAILY PILLS', NULL, '1.9000', '3.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '10.0000', '2022-02-02', 'received', '1.9000', '1.9000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (50449, 396, NULL, 9790, '99378779', 'HINDI HERBAL MIXTURE', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-02-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 (50450, 396, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '6.3300', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3000', '0.0000', '2022-02-02', 'received', '6.3300', '6.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (50451, 396, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '7.0000', '9.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '5.0000', '2022-02-02', 'received', '7.0000', '7.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50452, 396, NULL, 8612, '2532', 'CANDID M PAINT', NULL, '8.8000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '2.0000', '2022-02-02', '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 (50453, 396, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '6.6000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-02-02', '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 (50454, 396, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '12.0000', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-02-02', '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 (50455, 396, NULL, 2906, '74619015', 'MB 760 TAB', NULL, '2.8000', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '25.0000', '2022-02-02', 'received', '2.8000', '2.8000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (50456, 396, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.4500', '2.0000', '2022-02-02', 'received', '19.8900', '19.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (50457, 396, NULL, 7668, '1588', 'KIDICARE SRP', NULL, '11.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-02-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 (50458, 396, NULL, 9792, '95723054', 'GOLDEN GARLIC PILL', NULL, '19.5000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '3.0000', '2022-02-02', '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 (50459, 396, NULL, 9779, '73495973', 'COVONIA CHESTY', NULL, '23.0000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '2.0000', '2022-02-02', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50460, 396, NULL, 9793, '49902114', 'COVONIA NIGHT TIME 150ML', NULL, '23.5000', '31.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.5000', '3.0000', '2022-02-02', 'received', '23.5000', '23.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50461, 396, NULL, 7408, '1328', 'TAGERA FORTE', NULL, '5.2800', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '5.0000', '2022-02-02', '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 (50462, 396, NULL, 8690, '2610', 'SENAFEN', NULL, '10.8000', '14.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '13.0000', '2022-02-02', 'received', '10.8000', '10.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50463, 396, NULL, 7592, '1512', 'HAEMOGLOBIN M/G', NULL, '5.2000', '7.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2022-02-02', 'received', '5.2000', '5.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (50464, 396, NULL, 7931, '1851', 'BADRUF CREAM', NULL, '4.9500', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '0.0000', '2022-02-02', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (50465, 396, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '6.6000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-02-02', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50466, 396, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '11.3200', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.2000', '0.0000', '2022-02-02', 'received', '11.3200', '11.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '11.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 (50467, 396, NULL, 8417, '2337', 'COMBACT-N', NULL, '5.5000', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-02-02', '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 (50468, 396, NULL, 7458, '1378', 'VOLLTFAST 50MG', NULL, '1.4900', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '30.0000', '2022-02-02', 'received', '1.4900', '1.4900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (50469, 396, NULL, 8722, '2642', 'VOLTAREEN 100', NULL, '21.0000', '28.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '4.0000', '2022-02-02', 'received', '21.0000', '21.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50470, 396, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.4200', '3.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '242.0000', '67.0000', '2022-02-02', 'received', '2.4200', '2.4200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '2.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 (50471, 396, NULL, 7428, '1348', 'TADOL 100', NULL, '3.1500', '4.5000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '472.5000', '67.0000', '2022-02-02', 'received', '3.1500', '3.1500', '150.0000', NULL, NULL, 1, 'pc', '150.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 (50472, 396, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.9800', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.9000', '3.0000', '2022-02-02', 'received', '22.9800', '22.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50473, 396, NULL, 9507, '99862596', 'BENYLIN CHESTY COUGH', NULL, '49.3500', '65.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.7500', '5.0000', '2022-02-02', 'received', '49.3500', '49.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (50474, 396, NULL, 9639, '04191658', 'BENYLIN CHILD/THROAT SYRUP 125ML UK', NULL, '29.2000', '38.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '2.0000', '2022-02-02', 'received', '29.2000', '29.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50475, 396, NULL, 8920, '2840', 'ANTACID BELLS', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-02-02', '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 (50476, 396, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-02-02', '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 (50477, 396, NULL, 7899, '1819', 'EKURO BEWU', NULL, '3.3000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-02-02', '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 (50478, 396, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '14.9000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '3.0000', '2022-02-02', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (50479, 396, NULL, 7341, '1261', 'POLYGYNAX', NULL, '24.5000', '32.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '2.0000', '2022-02-02', '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 (50480, 396, NULL, 7416, '1336', 'CLOTRI DENK CREAM', NULL, '18.2100', '24.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6300', '0.0000', '2022-02-02', '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 (50481, 396, NULL, 9777, '90211082', 'CANESTEN CREAM', NULL, '22.9000', '30.2300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '3.0000', '2022-02-02', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (50482, 396, NULL, 7784, '1704', 'DRAGON CAPS', NULL, '4.2300', '5.5800', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8400', '0.0000', '2022-02-02', 'received', '4.2300', '4.2300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '4.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 (50483, 396, NULL, 9618, '80261915', 'TIGER TABLETS', NULL, '3.7500', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-02-02', '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 (50484, 396, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '17.0000', '2022-02-02', 'received', '2.3000', '2.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (50485, 396, NULL, 9791, '08517383', 'BASECOLD TAB', NULL, '0.9000', '1.5000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '83.0000', '2022-02-02', 'received', '0.9000', '0.9000', '150.0000', NULL, NULL, 1, 'pc', '150.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 (50486, 396, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-02-02', '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 (50487, NULL, NULL, 2091, '', '', 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 (50509, NULL, NULL, 1905, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (50510, NULL, NULL, 9720, '', '', 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 (50511, NULL, NULL, 9334, '', '', 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 (50512, NULL, NULL, 9763, '', '', 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 (50513, NULL, NULL, 1469, '', '', 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 (50514, NULL, NULL, 8461, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (50515, NULL, NULL, 7453, '', '', 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 (50516, NULL, NULL, 8395, '', '', 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 (50517, NULL, NULL, 9373, '', '', 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 (50518, NULL, NULL, 2075, '', '', 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 (50519, NULL, NULL, 8129, '', '', 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 (50520, 413, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-02-12', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50521, 413, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '1.0000', '2022-02-12', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (50522, 413, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-02-12', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (50523, 413, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.5000', '6.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '8.0000', '2022-02-12', '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 (50524, 413, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-02-12', '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 (50525, 413, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.4000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2022-02-12', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50526, 413, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-02-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 (50527, 413, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.0000', '31.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-02-12', '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 (50528, 413, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-02-12', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50529, 413, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-02-12', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50530, 413, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.9800', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2022-02-12', 'received', '1.9800', '1.9800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (50531, 413, NULL, 9591, '87854230', 'PROCOLD GHANA MADE', NULL, '3.0000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '0.0000', '2022-02-12', '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 (50532, 413, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-02-12', '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 (50533, 413, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '110.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2022-02-12', '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 (50534, 413, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '10.0000', '2022-02-12', '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 (50535, 413, NULL, 8774, '2694', 'VOLTIC B/S', NULL, '2.3000', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '2.0000', '2022-02-12', '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 (50536, 413, NULL, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '0.5800', '1.2000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2800', '13.0000', '2022-02-12', 'received', '0.5800', '0.5800', '16.0000', NULL, NULL, 1, 'pc', '16.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 (50559, 411, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.3800', '0.0000', '2022-02-11', 'received', '8.2300', '8.2300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (50560, 411, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '110.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '1.0000', '2022-02-11', '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 (50561, NULL, NULL, 8214, '', '', 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 (50562, NULL, NULL, 2891, '', '', 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 (50563, NULL, NULL, 9435, '', '', 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 (50564, NULL, NULL, 9737, '', '', 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 (50565, NULL, NULL, 9783, '', '', 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 (50566, NULL, NULL, 7925, '', '', 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 (50567, NULL, NULL, 2895, '', '', 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 (50568, NULL, NULL, 9653, '', '', 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 (50569, NULL, NULL, 9794, '', '', 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 (50570, NULL, NULL, 2770, '', '', 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 (50571, NULL, NULL, 3072, '', '', 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 (50572, NULL, NULL, 8745, '', '', 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 (50573, NULL, NULL, 8311, '', '', 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 (50574, NULL, NULL, 8214, '', '', 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 (50575, NULL, NULL, 8203, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-69.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50576, NULL, NULL, 9728, '', '', 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 (50577, NULL, NULL, 8406, '', '', 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 (50578, NULL, NULL, 8083, '', '', 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 (50579, NULL, NULL, 7423, '', '', 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 (50580, NULL, NULL, 8079, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50581, NULL, NULL, 8690, '', '', 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 (50582, NULL, NULL, 2240, '', '', 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 (50583, NULL, NULL, 1391, '', '', 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 (50584, NULL, NULL, 8067, '', '', 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 (50585, NULL, NULL, 8441, '', '', 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 (50586, NULL, NULL, 9573, '', '', 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 (50587, NULL, NULL, 8040, '', '', 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 (50588, NULL, NULL, 2761, '', '', 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 (50589, NULL, NULL, 2645, '', '', 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 (50590, NULL, NULL, 1841, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-249.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50591, NULL, NULL, 9623, '', '', 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 (50592, NULL, NULL, 7927, '', '', 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 (50593, NULL, NULL, 9809, '', '', 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 (50594, NULL, NULL, 9804, '', '', 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 (50595, NULL, NULL, 7400, '', '', 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 (50596, NULL, NULL, 8413, '', '', 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 (50597, NULL, NULL, 7709, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-136.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50598, NULL, NULL, 8154, '', '', 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 (50599, NULL, NULL, 9573, '', '', 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 (50600, NULL, NULL, 7757, '', '', 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 (50601, NULL, NULL, 7958, '', '', 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 (50602, NULL, NULL, 8888, '', '', 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 (50603, NULL, NULL, 8175, '', '', 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 (50604, NULL, NULL, 7380, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50605, NULL, NULL, 7512, '', '', 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 (50606, NULL, NULL, 9329, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50607, NULL, NULL, 9682, '', '', 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 (50608, NULL, NULL, 7408, '', '', 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 (50609, NULL, NULL, 2910, '', '', 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 (50610, NULL, NULL, 9412, '', '', 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 (50611, NULL, NULL, 8900, '', '', 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 (50612, NULL, NULL, 7451, '', '', 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 (50613, NULL, NULL, 2560, '', '', 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 (50614, NULL, NULL, 7723, '', '', 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 (50615, NULL, NULL, 7442, '', '', 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 (50616, NULL, NULL, 9299, '', '', 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 (50617, NULL, NULL, 8061, '', '', 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 (50618, NULL, NULL, 8415, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50619, NULL, NULL, 8288, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-78.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50620, NULL, NULL, 9293, '', '', 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 (50621, NULL, NULL, 7894, '', '', 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 (50622, NULL, NULL, 8924, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50623, NULL, NULL, 7777, '', '', 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 (50624, NULL, NULL, 7319, '', '', 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 (50625, NULL, NULL, 1827, '', '', 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 (50626, NULL, NULL, 9445, '', '', 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 (50627, NULL, NULL, 9325, '', '', 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 (50628, 414, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '5.7900', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '1.0000', '2022-02-16', 'received', '5.7900', '5.7900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50629, 414, NULL, 7522, '1442', 'VISCOF D', NULL, '9.7000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.5000', '0.0000', '2022-02-16', 'received', '9.7000', '9.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (50630, 414, NULL, 7523, '1443', 'VISCOF S', NULL, '9.7000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.5000', '0.0000', '2022-02-16', 'received', '9.7000', '9.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (50631, 414, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2022-02-16', '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 (50632, 414, NULL, 8064, '1984', 'EXETER PARA SRP', NULL, '4.9000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '3.0000', '2022-02-16', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50633, 414, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '5.8000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-02-16', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50634, 414, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-02-16', '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 (50635, 414, NULL, 7612, '1532', 'DOXYCYCLINE CAPS LETAP', NULL, '2.4000', '3.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-02-16', '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 (50636, 414, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-02-16', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (50637, 414, NULL, 7392, '1312', 'CLOTRI-DENK 100 VAGINAL TABS', NULL, '19.5300', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5900', '1.0000', '2022-02-16', 'received', '19.5300', '19.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (50638, 414, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-02-16', '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 (50639, 414, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '11.8000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '3.0000', '2022-02-16', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50640, 414, NULL, 7321, '1241', 'METROLEX-F TABS', NULL, '9.8100', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0500', '0.0000', '2022-02-16', 'received', '9.8100', '9.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (50641, 414, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '6.7000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2022-02-16', '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 (50642, 414, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '2.4900', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.4500', '4.0000', '2022-02-16', 'received', '2.4900', '2.4900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50643, 414, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.9700', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8500', '0.0000', '2022-02-16', 'received', '12.9700', '12.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (50644, 414, NULL, 7663, '1583', 'DREZ SOLTN 30ML', NULL, '8.2000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '2.0000', '2022-02-16', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50645, 414, NULL, 8315, '2235', 'DREZ SOLN 100ML', NULL, '14.3500', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7500', '5.0000', '2022-02-16', 'received', '14.3500', '14.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (50646, 414, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '9.0000', '2022-02-16', '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 (50647, 414, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '1.8400', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '9.0000', '2022-02-16', 'received', '1.8400', '1.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (50648, 414, NULL, 2870, '312547427555', 'LISTERINE MOUTH WASH 1.5L ', NULL, '45.0000', '80.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-16', 'received', '45.0000', '45.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (50649, 414, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '110.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '0.0000', '2022-02-16', '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 (50650, 414, NULL, 8204, '2124', 'OSONS COD LIVER', NULL, '1.5000', '2.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-16', 'received', '1.5000', '1.5000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (50651, NULL, NULL, 8204, '', '', 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 (50652, NULL, NULL, 2940, '', '', 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 (50653, NULL, NULL, 9204, '', '', 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 (50654, 415, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '35.7700', '47.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.8500', '0.0000', '2022-02-25', 'received', '35.7700', '35.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.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 (50655, 415, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-02-25', '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 (50656, 415, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4000', '4.0000', '2022-02-25', 'received', '9.4000', '9.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (50657, 415, NULL, 7913, '1833', 'FLUXAMOX CAPS', NULL, '4.4100', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.2000', '0.0000', '2022-02-25', 'received', '4.4100', '4.4100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (50658, 415, NULL, 8040, '1960', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '4.0000', '2022-02-25', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (50659, 415, NULL, 7548, '1468', 'SENACO', NULL, '1.7000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2022-02-25', '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 (50660, 415, NULL, 8667, '2587', 'POFAKOF ADULT', NULL, '6.2300', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1500', '3.0000', '2022-02-25', 'received', '6.2300', '6.2300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (50661, 415, NULL, 7588, '1508', 'FUNBACT', NULL, '6.9000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-02-25', 'received', '6.9000', '6.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50662, 415, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-02-25', 'received', '1.4000', '1.4000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (50663, 415, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.5900', '1.0000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.5000', '129.0000', '2022-02-25', 'received', '0.5900', '0.5900', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '0.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 (50664, 415, NULL, 7748, '1668', 'VIROL', NULL, '7.3000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '0.0000', '2022-02-25', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50665, 415, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '37.9000', '50.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '379.0000', '10.0000', '2022-02-25', 'received', '37.9000', '37.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50666, 415, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.3800', '0.6000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '68.0000', '2022-02-25', 'received', '0.3800', '0.3800', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '0.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 (50667, 415, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-02-25', 'received', '0.6500', '0.6500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.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 (50668, 415, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2022-02-25', 'received', '1.0800', '1.0800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (50669, 416, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '5.8000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-02-25', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50670, 416, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.6600', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.3000', '5.0000', '2022-02-25', 'received', '4.6600', '4.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (50671, 416, NULL, 8178, '2098', 'MALIN ADULT', NULL, '6.1500', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '0.0000', '2022-02-25', '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 (50672, 416, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.5000', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '3.0000', '2022-02-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 (50673, 416, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '4.2700', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '0.0000', '2022-02-25', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (50674, 416, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '2.4500', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-02-25', 'received', '2.4500', '2.4500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (50675, 416, NULL, 8360, '2280', 'LEENA CAPS', NULL, '3.2300', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.1500', '3.0000', '2022-02-25', 'received', '3.2300', '3.2300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (50676, 416, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '3.3000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '6.0000', '2022-02-25', '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 (50677, 416, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.5000', '40.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '183.0000', '0.0000', '2022-02-25', 'received', '30.5000', '30.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '30.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50678, 416, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.6400', '2.0000', '162.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.6800', '86.0000', '2022-02-25', 'received', '0.6400', '0.6400', '162.0000', NULL, NULL, 1, 'pc', '162.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 (50679, 416, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '50.9300', '67.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.8600', '0.0000', '2022-02-25', 'received', '50.9300', '50.9300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.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 (50680, 416, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2022-02-25', 'received', '2.3000', '2.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50681, 416, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '4.2400', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '5.0000', '2022-02-25', 'received', '4.2400', '4.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50682, 416, NULL, 9424, '3344', 'RONFIT SYRUP', NULL, '3.6300', '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.6300', '0.0000', '2022-02-25', 'received', '3.6300', '3.6300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.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 (50683, 416, NULL, 9573, '18958409', 'RONFIT COLD SRP', NULL, '3.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '4.0000', '2022-02-25', '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 (50684, 416, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '2.0000', '2022-02-25', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (50685, 416, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '3.0000', '2022-02-25', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50686, 416, NULL, 7509, '1429', 'ROOTER', NULL, '7.4000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '1.0000', '2022-02-25', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50687, 416, NULL, 7817, '1737', 'ADOM W,G CAPS', NULL, '16.0000', '21.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-02-25', '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 (50688, 416, NULL, 8649, '2569', 'TOMAC MIX', NULL, '20.9000', '27.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7000', '3.0000', '2022-02-25', 'received', '20.9000', '20.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (50689, 416, NULL, 7347, '1267', 'PILEX OINT', NULL, '21.9000', '29.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '0.0000', '2022-02-25', 'received', '21.9000', '21.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (50690, 416, NULL, 7645, '1565', 'PILEX TAB', NULL, '23.7800', '31.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.3400', '0.0000', '2022-02-25', 'received', '23.7800', '23.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (50691, 416, NULL, 7516, '1436', 'BECOATIN TAB', NULL, '10.0000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-02-25', '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 (50692, 416, NULL, 7877, '1797', 'POLYFER CAPS', NULL, '4.4000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.4000', '0.0000', '2022-02-25', 'received', '4.4000', '4.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (50693, 416, NULL, 8408, '2328', 'CYFEN SRP', NULL, '10.5000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '2.0000', '2022-02-25', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50694, 416, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '26.5700', '35.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.7100', '0.0000', '2022-02-25', 'received', '26.5700', '26.5700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (50695, 416, NULL, 8102, '111111', 'NEOVITA CAPS PER STRIP', NULL, '26.4000', '36.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.4000', '6.0000', '2022-02-25', 'received', '26.4000', '26.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '26.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 (50696, 416, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.4500', '0.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2500', '11.0000', '2022-02-25', 'received', '0.4500', '0.4500', '25.0000', NULL, NULL, 1, 'pc', '25.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 (50697, 416, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.2500', '0.0000', '2022-02-25', 'received', '0.5300', '0.5300', '125.0000', NULL, NULL, 1, 'pc', '125.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 (50698, 416, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.6000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-02-25', '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 (50699, 416, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '8.8000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-02-25', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50700, 416, NULL, 8504, '2424', 'LISINOPRIL 20 TEVA', NULL, '8.1000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2022-02-25', '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 (50701, 416, NULL, 7330, '1250', 'MYCOLEX CREAM', NULL, '12.7000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5000', '0.0000', '2022-02-25', 'received', '12.7000', '12.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50702, 416, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.9000', '22.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '2.0000', '2022-02-25', 'received', '16.9000', '16.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (50703, 416, NULL, 7419, '1339', 'DEEP HEAT SPRAY 150ML', NULL, '25.9000', '34.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '2.0000', '2022-02-25', '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 (50704, 416, NULL, 9720, '41639032', 'ANCIGEL SUSP', NULL, '10.6000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '0.0000', '2022-02-25', 'received', '10.6000', '10.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50705, 416, NULL, 8710, '2630', 'ANCIGEL O', NULL, '10.9000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '3.0000', '2022-02-25', 'received', '10.9000', '10.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50706, 416, NULL, 7736, '1656', 'NUGEL -O', NULL, '16.7000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '0.0000', '2022-02-25', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50707, 416, NULL, 7857, '1777', 'NUGEL', NULL, '16.1000', '21.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2000', '0.0000', '2022-02-25', 'received', '16.1000', '16.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50708, 416, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '0.0000', '2022-02-25', 'received', '2.7200', '2.7200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50709, 416, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.9800', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.6000', '0.0000', '2022-02-25', 'received', '7.9800', '7.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (50710, 416, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2022-02-25', '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 (50711, 416, NULL, 7509, '1429', 'ROOTER', NULL, '7.4000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '5.0000', '2022-02-25', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50712, 416, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-02-25', '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 (50713, 416, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '18.3300', '24.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.6500', '2.0000', '2022-02-25', 'received', '18.3300', '18.3300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (50714, 416, NULL, 9456, '13527138', 'INOPRIL OM&J', NULL, '3.3200', '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.3200', '1.0000', '2022-02-25', 'received', '3.3200', '3.3200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.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 (50715, 416, NULL, 9817, '44012910', 'NESBEN SUSP', NULL, '3.9000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '4.0000', '2022-02-25', 'received', '3.9000', '3.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50716, 416, NULL, 9818, '16067074', 'TANZOL SUSP', NULL, '1.5000', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '1.0000', '2022-02-25', '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 (50717, 416, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8900', '2.0000', '2022-02-25', 'received', '3.6300', '3.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (50718, 416, NULL, 9820, '82801354', 'BLUMOON 50MG', NULL, '2.2000', '3.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6000', '3.0000', '2022-02-25', 'received', '2.2000', '2.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50719, NULL, NULL, 7354, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-66.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50720, NULL, NULL, 9606, '', '', 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 (50721, NULL, NULL, 8119, '', '', 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 (50722, NULL, NULL, 8007, '', '', 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 (50723, NULL, NULL, 7867, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50724, NULL, NULL, 7752, '', '', 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 (50725, NULL, NULL, 7673, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50726, NULL, NULL, 9344, '', '', 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 (50727, NULL, NULL, 8155, '', '', 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 (50728, NULL, NULL, 7507, '', '', 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 (50729, NULL, NULL, 8140, '', '', 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 (50730, NULL, NULL, 8085, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-56.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50731, NULL, NULL, 7640, '', '', 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 (50732, NULL, NULL, 8918, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-57.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50733, NULL, NULL, 9816, '', '', 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 (50734, NULL, NULL, 7947, '', '', 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 (50735, NULL, NULL, 1873, '', '', 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 (50736, NULL, NULL, 7906, '', '', 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 (50737, NULL, NULL, 3027, '', '', 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 (50738, NULL, NULL, 9819, '', '', 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 (50739, NULL, NULL, 9758, '', '', 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 (50740, NULL, NULL, 7820, '', '', 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 (50741, NULL, NULL, 9109, '', '', 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 (50742, NULL, NULL, 8626, '', '', 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 (50743, NULL, NULL, 8040, '', '', 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 (50744, NULL, NULL, 9021, '', '', 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 (50745, NULL, NULL, 8360, '', '', 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 (50746, NULL, NULL, 7762, '', '', 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 (50747, NULL, NULL, 1918, '', '', 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 (50748, NULL, NULL, 8068, '', '', 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 (50749, NULL, NULL, 8315, '', '', 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 (50750, NULL, NULL, 7659, '', '', 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 (50751, NULL, NULL, 8923, '', '', 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 (50752, NULL, NULL, 7704, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50753, NULL, NULL, 8966, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50754, NULL, NULL, 9252, '', '', 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 (50755, NULL, NULL, 8672, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50756, NULL, NULL, 9818, '', '', 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 (50757, NULL, NULL, 8309, '', '', 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 (50758, NULL, NULL, 7724, '', '', 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 (50759, NULL, NULL, 7598, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50760, NULL, NULL, 9730, '', '', 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 (50761, NULL, NULL, 7588, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50762, NULL, NULL, 8032, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50763, NULL, NULL, 8224, '', '', 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 (50764, NULL, NULL, 9740, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-71.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50765, NULL, NULL, 8438, '', '', 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 (50766, NULL, NULL, 9424, '', '', 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 (50767, NULL, NULL, 8833, '', '', 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 (50768, NULL, NULL, 8318, '', '', 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 (50769, NULL, NULL, 8719, '', '', 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 (50770, NULL, NULL, 9692, '', '', 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 (50771, NULL, NULL, 1812, '', '', 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 (50772, NULL, NULL, 9534, '', '', 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 (50805, 418, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '24.0000', '32.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '5.0000', '2022-02-28', 'received', '24.0000', '24.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50806, 418, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '27.0000', '36.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '1.0000', '2022-02-28', 'received', '27.0000', '27.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (50807, 418, NULL, 9826, '06168620', 'LAW CARE MIX', NULL, '13.5000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '2.0000', '2022-02-28', '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 (50808, 418, NULL, 7808, '1728', 'MIGHTY P B/S', NULL, '13.5000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '1.0000', '2022-02-28', '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 (50809, 418, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '19.0000', '2022-02-28', '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 (50810, 418, NULL, 7821, '1741', 'TIME HERBAL', NULL, '10.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-02-28', '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 (50811, 418, NULL, 7890, '1810', 'TINATETT MALAKARE', NULL, '16.5000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2022-02-28', 'received', '16.5000', '16.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50812, 418, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '11.0000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2022-02-28', '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 (50813, 418, NULL, 3036, '73219310', 'YAFO KOO BITTERS', NULL, '7.8000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '2.0000', '2022-02-28', '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 (50825, NULL, NULL, 8170, '', '', 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 (50826, NULL, NULL, 8927, '', '', 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 (50827, NULL, NULL, 9421, '', '', 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 (50828, NULL, NULL, 8780, '', '', 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 (50829, NULL, NULL, 8006, '', '', 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 (50830, NULL, NULL, 9143, '', '', 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 (50831, NULL, NULL, 9401, '', '', 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 (50832, NULL, NULL, 8184, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-162.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50833, NULL, NULL, 9752, '', '', 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 (50834, NULL, NULL, 9751, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-46.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50835, NULL, NULL, 7750, '', '', 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 (50836, NULL, NULL, 7491, '', '', 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 (50837, NULL, NULL, 7518, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-159.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50838, NULL, NULL, 7692, '', '', 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 (50839, NULL, NULL, 7748, '', '', 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 (50840, NULL, NULL, 8404, '', '', 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 (50841, NULL, NULL, 7714, '', '', 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 (50842, NULL, NULL, 9281, '', '', 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 (50843, NULL, NULL, 8649, '', '', 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 (50844, NULL, NULL, 8427, '', '', 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 (50845, NULL, NULL, 8978, '', '', 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 (50846, NULL, NULL, 9198, '', '', 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 (50847, NULL, NULL, 7753, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-58.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50848, NULL, NULL, 8920, '', '', 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 (50849, NULL, NULL, 9786, '', '', 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 (50850, NULL, NULL, 2467, '', '', 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 (50851, NULL, NULL, 8094, '', '', 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 (50852, NULL, NULL, 7804, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-42.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50853, NULL, NULL, 9821, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50854, NULL, NULL, 1925, '', '', 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 (50855, NULL, NULL, 8763, '', '', 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 (50856, NULL, NULL, 8543, '', '', 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 (50857, 420, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '22.1000', '29.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '0.0000', '2022-03-01', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50858, 420, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.6000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-03-01', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (50859, 420, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.5000', '40.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '2.0000', '2022-03-01', 'received', '30.5000', '30.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50860, 420, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.8000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '1.0000', '2022-03-01', '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 (50861, 420, NULL, 7509, '1429', 'ROOTER', NULL, '7.4000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '5.0000', '2022-03-01', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50862, 420, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '70.0000', '2022-03-01', '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 (50863, 420, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.3000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '26.0000', '2022-03-01', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (50864, 420, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.8000', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '3.0000', '2022-03-01', 'received', '4.8000', '4.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (50865, 420, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '9.0000', '2022-03-01', '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 (50866, 420, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '28.0000', '2022-03-01', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (50867, 420, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '15.0000', '2022-03-01', 'received', '1.1000', '1.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (50868, 420, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.9000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '1.0000', '2022-03-01', 'received', '6.9000', '6.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (50869, 420, NULL, 8065, '1985', 'AMOKSIKLAV 1G', NULL, '31.5000', '42.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.5000', '0.0000', '2022-03-01', 'received', '31.5000', '31.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50870, 420, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8000', '0.0000', '2022-03-01', 'received', '22.9000', '22.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (50871, 420, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2300', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7600', '8.0000', '2022-03-01', 'received', '4.2300', '4.2300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (50872, 420, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '4.2400', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4800', '0.0000', '2022-03-01', 'received', '4.2400', '4.2400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50873, 420, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '5.0000', '2022-03-01', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50874, 420, NULL, 9823, '80168949', 'OSTEOCARE CHEWABLE TAB', NULL, '13.2500', '17.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '3.0000', '2022-03-01', 'received', '13.2500', '13.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (50875, 420, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '14.3000', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '2.0000', '2022-03-01', '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 (50876, 420, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '14.7500', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '2.0000', '2022-03-01', 'received', '14.7500', '14.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (50877, 420, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.8800', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6400', '0.0000', '2022-03-01', 'received', '11.8800', '11.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (50878, 420, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '6.4400', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2000', '2.0000', '2022-03-01', 'received', '6.4400', '6.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (50879, 420, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '3.0000', '2022-03-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 (50880, 420, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '22.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.4000', '0.0000', '2022-03-01', 'received', '16.7000', '16.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50881, 420, NULL, 2495, '19113194', 'CANDID V3', NULL, '7.9500', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '2.0000', '2022-03-01', 'received', '7.9500', '7.9500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50882, 420, NULL, 7786, '1706', 'CANDID V6', NULL, '6.7700', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5400', '2.0000', '2022-03-01', 'received', '6.7700', '6.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.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 (50883, 420, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7400', '0.0000', '2022-03-01', 'received', '11.8700', '11.8700', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50884, 420, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2022-03-01', '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 (50885, 420, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8200', '3.0000', '2022-03-01', 'received', '6.9400', '6.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (50886, 420, NULL, 9727, '67843986', 'KIFARU TAB 100ML', NULL, '6.7000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '0.0000', '2022-03-01', '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 (50887, 420, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '4.0000', '2022-03-01', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (50888, 420, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5200', '2.0000', '2022-03-01', 'received', '9.7600', '9.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (50889, 420, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '12.7700', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.3100', '1.0000', '2022-03-01', 'received', '12.7700', '12.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (50890, 420, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '1.0000', '2022-03-01', '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 (50891, 420, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '7.8000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '3.0000', '2022-03-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 (50892, 420, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '13.0000', '17.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '1.0000', '2022-03-01', '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 (50893, 420, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '7.8000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '1.0000', '2022-03-01', '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 (50894, 420, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5500', '0.0000', '2022-03-01', 'received', '1.8500', '1.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '1.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 (50895, 420, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '1.0000', '2022-03-01', '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 (50896, 420, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '3.0000', '2022-03-01', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50897, 420, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.0000', '9.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-03-01', '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 (50898, 420, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.8000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '2.0000', '2022-03-01', 'received', '10.8000', '10.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (50899, 420, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.6000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.6000', '1.0000', '2022-03-01', 'received', '5.6000', '5.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (50900, 420, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.3800', '0.0000', '2022-03-01', 'received', '8.2300', '8.2300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (50901, 420, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '22.0000', '29.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2022-03-01', '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 (50902, 420, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '6.6000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '3.0000', '2022-03-01', '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 (50903, 420, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2022-03-01', '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 (50904, 420, NULL, 8184, '2104', 'ENACEF 500', NULL, '2.4000', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '10.0000', '2022-03-01', '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 (50905, 420, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.3000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '6.0000', '2022-03-01', '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 (50906, 420, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '2.0000', '2022-03-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 (50907, 420, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '1.5100', '2.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0800', '3.0000', '2022-03-01', 'received', '1.5100', '1.5100', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '1.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 (50908, NULL, NULL, 9742, '', '', 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 (50909, 421, NULL, 7391, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', NULL, '15.6000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '3.0000', '2022-03-01', 'received', '15.6000', '15.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (50910, 421, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.2000', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.6000', '2.0000', '2022-03-01', '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 (50911, 421, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '3.0000', '2022-03-01', '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 (50912, 421, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '3.1800', '4.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.0000', '40.0000', '2022-03-01', 'received', '3.1800', '3.1800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (50913, 421, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8500', '3.0000', '2022-03-01', 'received', '12.9700', '12.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (50914, 421, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '4.0000', '2022-03-01', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50915, 421, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4500', '3.0000', '2022-03-01', 'received', '12.8900', '12.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (50916, 421, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '31.0000', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '2.0000', '2022-03-01', 'received', '31.0000', '31.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50917, 421, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '40.0000', '2022-03-01', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (50918, 421, NULL, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', NULL, '2.4000', '35.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '20.0000', '2022-03-01', '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 (50919, 421, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.8200', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2000', '10.0000', '2022-03-01', 'received', '0.8200', '0.8200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (50920, 421, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.8500', '1.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '14.0000', '2022-03-01', 'received', '0.8500', '0.8500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (50921, 421, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.8000', '22.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2022-03-01', 'received', '16.8000', '16.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50922, 421, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '3.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '0.0000', '2022-03-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 (50923, 421, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '8.0000', '2022-03-01', '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 (50924, 421, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '8.2000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '2.0000', '2022-03-01', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50925, 421, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '8.5800', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-03-01', '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 (50926, 421, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '49.0000', '2022-03-01', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (50927, 421, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.7700', '47.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.8500', '5.0000', '2022-03-01', 'received', '35.7700', '35.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.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 (50928, 421, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.5000', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.0000', '4.0000', '2022-03-01', 'received', '30.5000', '30.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50929, 421, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '38.5100', '51.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0200', '2.0000', '2022-03-01', 'received', '38.5100', '38.5100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.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 (50930, 421, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2022-03-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 (50931, 421, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '20.9700', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.9400', '2.0000', '2022-03-01', 'received', '20.9700', '20.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (50932, 421, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '3.1800', '4.2000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.4000', '30.0000', '2022-03-01', 'received', '3.1800', '3.1800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (50933, 421, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.8800', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6400', '0.0000', '2022-03-01', 'received', '11.8800', '11.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (50934, 421, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '3.0000', '2022-03-01', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50935, 421, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9100', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.2000', '11.0000', '2022-03-01', 'received', '6.9100', '6.9100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (50936, 421, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '20.2000', '27.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.4000', '2.0000', '2022-03-01', 'received', '20.2000', '20.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (50937, 421, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-03-01', '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 (50938, 421, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-03-01', 'received', '3.2000', '3.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50939, 421, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '6.6000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-03-01', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50940, 421, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '20.0000', '2022-03-01', '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 (50941, 421, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '19.0000', '2022-03-01', 'received', '1.8800', '1.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (50942, 421, NULL, 9399, '3319', 'LETACAM (PIROXICAM)', NULL, '0.9800', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8000', '4.0000', '2022-03-01', '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 (50943, 421, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2022-03-01', '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 (50944, 421, NULL, 2777, '97856697', 'MMT SUSP', NULL, '2.8000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2022-03-01', '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 (50945, NULL, NULL, 8682, '', '', 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 (50946, NULL, NULL, 8231, '', '', 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 (50947, NULL, NULL, 7464, '', '', 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 (50948, NULL, NULL, 7680, '', '', 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 (50949, NULL, NULL, 8814, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-108.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50950, NULL, NULL, 9151, '', '', 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 (50951, NULL, NULL, 9026, '', '', 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 (50952, NULL, NULL, 7321, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (50953, NULL, NULL, 8753, '', '', 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 (50954, NULL, NULL, 7820, '', '', 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 (50955, NULL, NULL, 8318, '', '', 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 (50956, NULL, NULL, 1454, '', '', 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 (50957, NULL, NULL, 7899, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50958, NULL, NULL, 9202, '', '', 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 (50959, NULL, NULL, 8451, '', '', 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 (50960, NULL, NULL, 9674, '', '', 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 (50961, NULL, NULL, 9753, '', '', 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 (50962, NULL, NULL, 2443, '', '', 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 (50963, NULL, NULL, 8547, '', '', 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 (50964, NULL, NULL, 2681, '', '', 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 (50965, NULL, NULL, 2352, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (50982, 417, NULL, 7750, '1670', 'CALPOL 2+', NULL, '33.9800', '46.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.9000', '0.0000', '2022-02-28', 'received', '33.9800', '33.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (50983, 417, NULL, 7523, '1443', 'VISCOF S', NULL, '9.7000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.5000', '0.0000', '2022-02-28', 'received', '9.7000', '9.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (50984, 417, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '8.0000', '2022-02-28', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50985, 417, NULL, 7911, '1831', 'BASECOLD SRP', NULL, '4.3700', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.7000', '0.0000', '2022-02-28', 'received', '4.3700', '4.3700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (50986, 417, NULL, 8103, '2023', 'LYNUS OINT', NULL, '26.9800', '36.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.9000', '4.0000', '2022-02-28', 'received', '26.9800', '26.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '26.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 (50987, 417, NULL, 7859, '1779', 'KOFLET', NULL, '12.6300', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.1500', '0.0000', '2022-02-28', 'received', '12.6300', '12.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (50988, 417, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '1.8900', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-02-28', 'received', '1.8900', '1.8900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (50989, 417, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '5.7900', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.9000', '9.0000', '2022-02-28', 'received', '5.7900', '5.7900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50990, 417, NULL, 8158, '2078', 'SUPIROCIN', NULL, '22.0000', '33.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-02-28', '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 (50991, 417, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-02-28', 'received', '3.7000', '3.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50992, 417, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9500', '2.0000', '2022-02-28', 'received', '8.5900', '8.5900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (50993, 417, NULL, 7930, '1850', 'WORMBASE SUSP', NULL, '1.6500', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-02-28', 'received', '1.6500', '1.6500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (50994, 417, NULL, 9001, '2921', 'IMAX DELAY SPRAY', NULL, '23.5000', '31.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.5000', '0.0000', '2022-02-28', 'received', '23.5000', '23.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50995, 417, NULL, 7708, '1628', 'TEEDAR', NULL, '7.0000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-02-28', '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 (50996, 417, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '3.1800', '4.2000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.6000', '20.0000', '2022-02-28', 'received', '3.1800', '3.1800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (50997, 417, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '14.7500', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '2.0000', '2022-02-28', 'received', '14.7500', '14.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (50998, 417, NULL, 9822, '47018837', 'RENALKA', NULL, '23.8000', '31.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '0.0000', '2022-02-28', 'received', '23.8000', '23.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (50999, 417, NULL, 7628, '1548', 'ANUSOL SUPP', NULL, '2.0900', '3.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.1600', '0.0000', '2022-02-28', 'received', '2.0900', '2.0900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '2.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 (51000, 417, NULL, 2945, '07580425', 'CIPROLEX EYE OINTMENT', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-02-28', '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 (51001, 417, NULL, 7761, '1681', 'TEARS NATURAL', NULL, '22.6200', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2400', '2.0000', '2022-02-28', 'received', '22.6200', '22.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (51002, 417, NULL, 9824, '52927057', 'THYMAIR LOZ', NULL, '1.3000', '2.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '36.0000', '2022-02-28', 'received', '1.3000', '1.3000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (51003, 417, NULL, 9823, '80168949', 'OSTEOCARE CHEWABLE TAB', NULL, '13.2500', '17.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '3.0000', '2022-02-28', 'received', '13.2500', '13.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.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 (51004, 417, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.9700', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8500', '3.0000', '2022-02-28', 'received', '12.9700', '12.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (51005, 417, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.3600', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '5.0000', '2022-02-28', 'received', '14.3600', '14.3600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (51006, 417, NULL, 9698, '93279570', 'VITAGLOBIN MG', NULL, '6.8000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '1.0000', '2022-02-28', 'received', '6.8000', '6.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51007, 417, NULL, 9825, '21168204', 'MENSTAK', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '8.0000', '2022-02-28', '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 (51008, 417, NULL, 8924, '2844', 'MYCOVIN 500', NULL, '4.5000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-02-28', '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 (51009, 417, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3000', '5.0000', '2022-02-28', 'received', '16.6600', '16.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (51010, 417, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '6.8200', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.1000', '0.0000', '2022-02-28', 'received', '6.8200', '6.8200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (51011, 417, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '4.2000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '3.0000', '2022-02-28', '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 (51012, 417, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '16.8000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.8000', '0.0000', '2022-02-28', 'received', '16.8000', '16.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51013, 417, NULL, 8622, '2542', 'DEXONE', NULL, '1.4900', '2.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '6.0000', '2022-02-28', 'received', '1.4900', '1.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (51014, 422, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.2500', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-03-03', 'received', '3.2500', '3.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51015, 422, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '5.0000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-03-03', '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 (51016, 422, NULL, 9816, '54889459', 'VONEERO DRINK', NULL, '5.2000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2022-03-03', '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 (51017, 422, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.5000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-03-03', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51018, 422, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-03-03', '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 (51019, 422, NULL, 8745, '2665', 'DON SIMON', NULL, '9.5000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-03-03', '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 (51020, 422, NULL, 8775, '2695', 'VITRAC S/S', NULL, '3.3300', '4.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9600', '0.0000', '2022-03-03', 'received', '3.3300', '3.3300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (51021, 422, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '3.3300', '4.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9600', '8.0000', '2022-03-03', 'received', '3.3300', '3.3300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (51022, 422, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.0000', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-03-03', 'received', '3.0000', '3.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (51023, 422, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '11.0000', '2022-03-03', '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 (51024, 422, NULL, 9470, '54824799', 'COKE/ FANTA/ SPRITE 1L', NULL, '11.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-03-03', '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 (51025, 422, NULL, 8982, '2902', 'CRANBERRY', NULL, '13.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-03', '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 (51026, 422, NULL, 9469, '40088756', 'PANACHE', NULL, '3.2500', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-03-03', '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 (51027, 422, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-03-03', '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 (51028, 422, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-03-03', '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 (51029, NULL, NULL, 1615, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51030, NULL, NULL, 8703, '', '', 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 (51031, NULL, NULL, 8135, '', '', 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 (51032, NULL, NULL, 9820, '', '', 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 (51033, NULL, NULL, 1521, '', '', 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 (51034, NULL, NULL, 9629, '', '', 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 (51035, NULL, NULL, 7565, '', '', 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 (51036, NULL, NULL, 7781, '', '', 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 (51037, NULL, NULL, 8974, '', '', 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 (51038, NULL, NULL, 9738, '', '', 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 (51039, NULL, NULL, 7460, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51040, NULL, NULL, 8180, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51041, NULL, NULL, 7642, '', '', 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 (51042, NULL, NULL, 7548, '', '', 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 (51043, NULL, NULL, 7368, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51044, NULL, NULL, 8473, '', '', 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 (51045, NULL, NULL, 7785, '', '', 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 (51046, NULL, NULL, 7645, '', '', 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 (51047, NULL, NULL, 8462, '', '', 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 (51048, NULL, NULL, 7876, '', '', 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 (51049, NULL, NULL, 7637, '', '', 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 (51050, NULL, NULL, 9620, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51051, 419, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.4500', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2500', '0.0000', '2022-02-28', 'received', '5.4500', '5.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (51052, 419, NULL, 8134, '2054', 'AMCOF ADULT', NULL, '5.2300', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1500', '1.0000', '2022-02-28', 'received', '5.2300', '5.2300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51053, 419, NULL, 8136, '2056', 'AMCOF JUNIOR', NULL, '5.7700', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8500', '0.0000', '2022-02-28', 'received', '5.7700', '5.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (51054, 419, NULL, 9692, '23051102', 'DOPATAB M250', NULL, '4.7800', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.6000', '8.0000', '2022-02-28', 'received', '4.7800', '4.7800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (51055, 419, NULL, 7666, '1586', 'DYMOL TAB', NULL, '3.6000', '5.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4000', '0.0000', '2022-02-28', 'received', '3.6000', '3.6000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (51056, 419, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '9.0000', '2022-02-28', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51057, 419, NULL, 7451, '1371', 'WARFARIN 5MG', NULL, '9.8500', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5500', '2.0000', '2022-02-28', '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 (51058, 419, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '6.4400', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2000', '0.0000', '2022-02-28', 'received', '6.4400', '6.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (51059, 419, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.8500', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2500', '1.0000', '2022-02-28', 'received', '3.8500', '3.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (51060, 419, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '6.6000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '3.0000', '2022-02-28', '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 (51061, 419, NULL, 1439, 'PR-152', 'VICTAGO s s', NULL, '1.0000', '1.3000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '35.0000', '2022-02-28', 'received', '1.0000', '1.0000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (51062, 419, NULL, 9394, '3314', 'CHIA SEED', NULL, '5.5000', '13.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-02-28', '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 (51063, 419, NULL, 9412, '3332', 'ALMOND SEED', NULL, '25.0000', '30.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '0.0000', '2022-02-28', 'received', '25.0000', '25.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (51064, 419, NULL, 2763, '91369587', 'FLAXSEED', NULL, '7.5000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '7.0000', '2022-02-28', 'received', '7.5000', '7.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (51065, 419, NULL, 9560, '123456', 'CINNAMON POWDER', NULL, '15.0000', '17.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-02-28', '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 (51066, 419, NULL, 9393, '3313', 'CLOVES', NULL, '15.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-02-28', '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 (51067, 419, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '27.0000', '29.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-02-28', 'received', '27.0000', '27.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (51068, NULL, NULL, 8672, '', '', 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 (51069, NULL, NULL, 9565, '', '', 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 (51070, NULL, NULL, 7585, '', '', 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 (51071, NULL, NULL, 7414, '', '', 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 (51072, NULL, NULL, 9380, '', '', 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 (51073, NULL, NULL, 9040, '', '', 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 (51074, NULL, NULL, 2983, '', '', 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 (51075, NULL, NULL, 9828, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-118.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51076, NULL, NULL, 9830, '', '', 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 (51077, NULL, NULL, 9821, '', '', 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 (51078, NULL, NULL, 2893, '', '', 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 (51079, NULL, NULL, 2214, '', '', 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 (51080, NULL, NULL, 8753, '', '', 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 (51081, 423, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.2000', '3.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '81.0000', '2022-03-06', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (51082, 423, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '15.5000', '25.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '6.0000', '2022-03-06', 'received', '15.5000', '15.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51083, 423, NULL, 7412, '1332', 'COLODIUM', NULL, '1.5200', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.4000', '0.0000', '2022-03-06', 'received', '1.5200', '1.5200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51084, 423, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '6.4000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '3.0000', '2022-03-06', '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 (51085, 423, NULL, 7464, '1384', 'RHINATHIOL ADULT BLUE', NULL, '21.9000', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.7000', '0.0000', '2022-03-06', 'received', '21.9000', '21.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (51086, 423, NULL, 7562, '1482', 'IBEX', NULL, '5.5300', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.3000', '9.0000', '2022-03-06', '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 (51087, 423, NULL, 8898, '2818', 'XYLO ACINO ADULT', NULL, '45.5400', '60.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0800', '2.0000', '2022-03-06', 'received', '45.5400', '45.5400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (51088, 423, NULL, 3067, '21042084', 'ESKAZEPAM TAB ( DIAZEPAM) 5MG', NULL, '0.3600', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '94.0000', '2022-03-06', 'received', '0.3600', '0.3600', '100.0000', NULL, NULL, 1, 'pc', '100.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 (51089, 423, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-03-06', '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 (51090, 423, NULL, 7853, '1773', 'BELLS VIT C', NULL, '13.0000', '17.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-03-06', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51091, 423, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '2.0000', '2022-03-06', '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 (51092, 423, NULL, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '34.5500', '46.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.7500', '1.0000', '2022-03-06', 'received', '34.5500', '34.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '34.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 (51093, 423, NULL, 7654, '1574', 'AUGMENTIN SRP 457', NULL, '49.3900', '65.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.9500', '5.0000', '2022-03-06', 'received', '49.3900', '49.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (51094, 423, NULL, 9430, '57291940', 'BENYLIN 4 FLU 200ML B/S', NULL, '40.9000', '54.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '163.6000', '2.0000', '2022-03-06', 'received', '40.9000', '40.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '40.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 (51095, 423, NULL, 8362, '2282', 'GLIBENIL TAB', NULL, '0.6000', '1.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2022-03-06', 'received', '0.6000', '0.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51096, 423, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '9.9800', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9000', '3.0000', '2022-03-06', 'received', '9.9800', '9.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51097, 423, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.6900', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.3800', '2.0000', '2022-03-06', 'received', '9.6900', '9.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (51098, 423, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '25.9000', '36.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '2.0000', '2022-03-06', '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 (51099, 423, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '26.0000', '35.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-03-06', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51100, 423, NULL, 9721, '99807619', 'AMUROX SUPS (CEFUROXIME AXETIL)', NULL, '11.7000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2022-03-06', 'received', '11.7000', '11.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (51198, 425, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '11.7000', '15.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-03-06', '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 (51199, 425, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-03-06', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (51200, 425, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '7.7000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-03-06', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51201, 425, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '6.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-03-06', '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 (51202, 425, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.5000', '40.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '183.0000', '0.0000', '2022-03-06', 'received', '30.5000', '30.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '30.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51203, 425, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.9000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2022-03-06', 'received', '6.9000', '6.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51204, 425, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6200', '2.0000', '2022-03-06', 'received', '4.2700', '4.2700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (51205, 425, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '31.0000', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '0.0000', '2022-03-06', 'received', '31.0000', '31.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51206, 425, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '4.4100', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2300', '0.0000', '2022-03-06', 'received', '4.4100', '4.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (51207, 425, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-03-06', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51208, 425, NULL, 8622, '2542', 'DEXONE', NULL, '1.4900', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '0.0000', '2022-03-06', 'received', '1.4900', '1.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (51209, 425, NULL, 2108, '85249693', 'ARFAN 20/120MG', NULL, '3.5900', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9000', '0.0000', '2022-03-06', 'received', '3.5900', '3.5900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (51210, 425, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.8200', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2000', '6.0000', '2022-03-06', 'received', '0.8200', '0.8200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (51211, 425, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '1.8900', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2022-03-06', 'received', '1.8900', '1.8900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (51212, 425, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '8.6000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '3.0000', '2022-03-06', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51213, 425, NULL, 2099, '36936180', 'LETARON SYRUP 200ML', NULL, '2.8000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '2.0000', '2022-03-06', '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 (51214, 425, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '23.5000', '31.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.5000', '0.0000', '2022-03-06', 'received', '23.5000', '23.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51215, 425, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.8500', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-03-06', 'received', '0.8500', '0.8500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (51216, 425, NULL, 9807, '46079779', 'EXTRAFLEX CAP', NULL, '36.8000', '49.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.6000', '1.0000', '2022-03-06', 'received', '36.8000', '36.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (51217, 425, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3500', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '1.0000', '2022-03-06', 'received', '7.3500', '7.3500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (51218, 425, NULL, 9798, '55455893', 'ENACEF 250MG', NULL, '13.9000', '18.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.6000', '0.0000', '2022-03-06', 'received', '13.9000', '13.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (51219, 425, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '10.0000', '2022-03-06', 'received', '1.0800', '1.0800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (51220, 425, NULL, 9822, '47018837', 'RENALKA', NULL, '23.8000', '31.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '0.0000', '2022-03-06', 'received', '23.8000', '23.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (51221, 425, NULL, 1925, 'PR-638', 'Tobins Cod oil T32003', NULL, '1.4200', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2000', '0.0000', '2022-03-06', 'received', '1.4200', '1.4200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (51222, 425, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '0.0000', '2022-03-06', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (51223, 425, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9800', '0.0000', '2022-03-06', 'received', '16.6600', '16.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (51224, 425, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.3600', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0800', '0.0000', '2022-03-06', 'received', '14.3600', '14.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (51225, 425, NULL, 7482, '1402', 'MAXMOX 500', NULL, '3.2500', '5.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-03-06', 'received', '3.2500', '3.2500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (51226, 425, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-03-06', '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 (51227, 425, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '38.0000', '2022-03-06', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (51228, 425, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.5000', '5.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '5.0000', '2022-03-06', 'received', '2.5000', '2.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (51229, 425, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-03-06', '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 (51230, 425, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.5000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-03-06', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51231, 425, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.4500', '0.0000', '2022-03-06', '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 (51232, 425, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-03-06', '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 (51233, 425, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-03-06', '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 (51234, 425, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '4.0000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-03-06', '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 (51235, 425, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.6000', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '3.0000', '2022-03-06', '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 (51236, 425, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.1500', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4500', '0.0000', '2022-03-06', 'received', '6.1500', '6.1500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51237, 425, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.6000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '1.0000', '2022-03-06', 'received', '5.6000', '5.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51238, 425, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '6.7700', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.3100', '0.0000', '2022-03-06', 'received', '6.7700', '6.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (51239, 425, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.3400', '0.0000', '2022-03-06', 'received', '12.8900', '12.8900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.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 (51240, 425, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.5000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-03-06', '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 (51241, 425, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-03-06', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51242, 425, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2022-03-06', 'received', '3.7000', '3.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51243, 425, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '25.9000', '34.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '0.0000', '2022-03-06', '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 (51244, 425, NULL, 8184, '2104', 'ENACEF 500', NULL, '2.5000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2022-03-06', '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 (51245, 425, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '6.6000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-03-06', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51246, 425, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5600', '0.0000', '2022-03-06', 'received', '19.8900', '19.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.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 (51247, 425, NULL, 9843, '65506359', 'SHAL ARTEM FORTE 80/480', NULL, '6.5000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2022-03-06', '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 (51248, 425, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0400', '0.0000', '2022-03-06', 'received', '15.0200', '15.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (51249, 425, NULL, 9840, '00885109', 'LEXOCAP', NULL, '1.5000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2022-03-06', '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 (51250, 425, NULL, 9841, '1270489', 'LUMIZAP SUSP 60ML', NULL, '5.1900', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5700', '0.0000', '2022-03-06', 'received', '5.1900', '5.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (51251, 425, NULL, 9842, '38060261', 'FASIPRO TAB 10×10', NULL, '5.6200', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.2000', '4.0000', '2022-03-06', 'received', '5.6200', '5.6200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (51252, 424, NULL, 8198, '2118', 'CELEBREX', NULL, '63.6900', '84.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.3800', '0.0000', '2022-03-06', 'received', '63.6900', '63.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '63.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 (51253, 424, NULL, 7558, '1478', 'DORETA', NULL, '2.4000', '3.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-03-06', '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 (51254, 424, NULL, 7423, '1343', 'COOL EYES', NULL, '14.0600', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1800', '0.0000', '2022-03-06', 'received', '14.0600', '14.0600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (51255, 424, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9200', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5200', '3.0000', '2022-03-06', 'received', '7.9200', '7.9200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.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 (51256, 424, NULL, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.7400', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2200', '1.0000', '2022-03-06', 'received', '15.7400', '15.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (51257, 424, NULL, 9691, '09276419', 'WELLKID SYR', NULL, '57.5200', '76.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0400', '1.0000', '2022-03-06', 'received', '57.5200', '57.5200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.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 (51258, 424, NULL, 7378, '1298', 'ATACAND PLUS 16/12.5MG', NULL, '158.5000', '209.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5000', '0.0000', '2022-03-06', 'received', '158.5000', '158.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '158.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51259, 424, NULL, 8597, '2517', 'WELLWOMAN MAX', NULL, '67.5000', '89.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-03-06', 'received', '67.5000', '67.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '67.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51260, 424, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.3600', '4.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8000', '0.0000', '2022-03-06', 'received', '1.3600', '1.3600', '80.0000', NULL, NULL, 1, 'pc', '80.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 (51261, 424, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '2.3000', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2022-03-06', 'received', '2.3000', '2.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (51262, 424, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.5500', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.5000', '0.0000', '2022-03-06', 'received', '9.5500', '9.5500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (51263, 424, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '60.3900', '80.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.7800', '0.0000', '2022-03-06', 'received', '60.3900', '60.3900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.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 (51264, 424, NULL, 9103, '3023', 'JOINTFLEX PLUS TABS', NULL, '32.3400', '43.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.3400', '0.0000', '2022-03-06', 'received', '32.3400', '32.3400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '32.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 (51265, 424, NULL, 8355, '2275', 'SELEVITE', NULL, '22.7700', '30.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5400', '0.0000', '2022-03-06', 'received', '22.7700', '22.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (51266, 424, NULL, 7963, '1883', 'HEPTO PEP', NULL, '15.2500', '20.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7500', '0.0000', '2022-03-06', 'received', '15.2500', '15.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (51267, 424, NULL, 8036, '1956', 'ENVICO', NULL, '6.7300', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.3000', '5.0000', '2022-03-06', 'received', '6.7300', '6.7300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (51268, 424, NULL, 7821, '1741', 'TIME HERBAL', NULL, '13.0700', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3500', '2.0000', '2022-03-06', 'received', '13.0700', '13.0700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (51269, 424, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '12.8300', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.9800', '0.0000', '2022-03-06', 'received', '12.8300', '12.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.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 (51270, 424, NULL, 2995, '32309749', 'NAT B CAPS', NULL, '13.5300', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.1800', '0.0000', '2022-03-06', 'received', '13.5300', '13.5300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.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 (51271, 424, NULL, 3009, '25462573', 'B CO STRONG KRIKA ORIGINAL', NULL, '13.6200', '18.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4800', '4.0000', '2022-03-06', 'received', '13.6200', '13.6200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.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 (51272, 424, NULL, 9016, '2936', 'VALUPAK VIT E 400', NULL, '21.7800', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3400', '0.0000', '2022-03-06', 'received', '21.7800', '21.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (51273, 424, NULL, 8039, '1959', 'ACIDOM', NULL, '14.7500', '19.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-03-06', 'received', '14.7500', '14.7500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (51274, 424, NULL, 7435, '1355', 'CRESTOR 20', NULL, '5.2000', '8.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.6000', '0.0000', '2022-03-06', 'received', '5.2000', '5.2000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (51275, 424, NULL, 7693, '1613', 'SEDALIN JNR', NULL, '4.0900', '5.4000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4500', '0.0000', '2022-03-06', 'received', '4.0900', '4.0900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (51276, 424, NULL, 2813, '48335635', 'JOINTACE', NULL, '72.0700', '95.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.1400', '1.0000', '2022-03-06', 'received', '72.0700', '72.0700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '72.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 (51277, 424, NULL, 7800, '1720', 'CLOMID 50', NULL, '54.4500', '72.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.9000', '0.0000', '2022-03-06', 'received', '54.4500', '54.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.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 (51278, 424, NULL, 8341, '2261', 'APTIZOOM', NULL, '32.6700', '43.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0100', '0.0000', '2022-03-06', 'received', '32.6700', '32.6700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.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 (51279, 424, NULL, 7788, '1708', 'HUICHUM CAPS', NULL, '21.7600', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8000', '0.0000', '2022-03-06', 'received', '21.7600', '21.7600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (51280, 424, NULL, 7554, '1474', 'NAKLOFEN DUO', NULL, '1.8000', '2.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-03-06', 'received', '1.8000', '1.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (51281, 424, NULL, 7428, '1348', 'TADOL 100', NULL, '3.1500', '4.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.0000', '0.0000', '2022-03-06', 'received', '3.1500', '3.1500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (51282, 424, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2022-03-06', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51283, 424, NULL, 7570, '1490', 'NAPROX ECL', NULL, '6.2400', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '3.0000', '2022-03-06', 'received', '6.2400', '6.2400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (51284, 424, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '5.9400', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '5.0000', '2022-03-06', '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 (51285, 424, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '8.8900', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4500', '1.0000', '2022-03-06', 'received', '8.8900', '8.8900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51286, 424, NULL, 7415, '1335', 'CONGESTYL TAB', NULL, '5.9400', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6400', '0.0000', '2022-03-06', 'received', '5.9400', '5.9400', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51287, 424, NULL, 8402, '2322', 'VIT B1', NULL, '43.0500', '56.8300', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.1000', '2.0000', '2022-03-06', 'received', '43.0500', '43.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '43.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 (51288, 424, NULL, 8540, '2460', 'H-AID VIT E 1000IU', NULL, '55.7400', '74.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.7400', '1.0000', '2022-03-06', 'received', '55.7400', '55.7400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '55.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 (51289, 424, NULL, 7490, '1410', 'SYRINGE 5CC', NULL, '0.2300', '0.4000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '70.0000', '2022-03-06', 'received', '0.2300', '0.2300', '100.0000', NULL, NULL, 1, 'pc', '100.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 (51290, 424, NULL, 7557, '1477', 'DICLO INJ', NULL, '0.5000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-03-06', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (51291, 424, NULL, 7694, '1614', 'PENICILLIN INJ', NULL, '4.7900', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8000', '0.0000', '2022-03-06', 'received', '4.7900', '4.7900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (51292, 424, NULL, 3030, '90744167', 'MAAME DAGOMBA BITTERS', NULL, '9.0000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-03-06', '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 (51293, 424, NULL, 7905, '1825', 'MAME DAGOMBA', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-03-06', '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 (51294, 424, NULL, 7810, '1730', 'KINGDOM G BITS', NULL, '14.0000', '18.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2022-03-06', '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 (51295, 424, NULL, 7826, '1746', 'MADAM CATHERINE', NULL, '8.0000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '1.0000', '2022-03-06', '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 (51296, 424, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '8.0000', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-03-06', '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 (51297, 424, NULL, 7833, '1753', 'PROSTAFIT', NULL, '20.0000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-03-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 (51298, 424, NULL, 9294, '3214', 'mercy soap', NULL, '4.0000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-03-06', '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 (51299, 424, NULL, 7754, '1674', 'CHOCHO ABS', NULL, '4.3000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '0.0000', '2022-03-06', '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 (51300, 424, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2022-03-06', '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 (51301, 424, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '5.0000', '2022-03-06', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51302, 424, NULL, 9833, '69281403', 'PATANOL 0.1%', NULL, '29.5500', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.6500', '3.0000', '2022-03-06', 'received', '29.5500', '29.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (51303, 426, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '0.0000', '2022-03-06', 'received', '16.1000', '16.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51304, 426, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '6.8500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '0.0000', '2022-03-06', '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 (51305, 426, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.1800', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.8000', '0.0000', '2022-03-06', 'received', '1.1800', '1.1800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (51306, 426, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.3000', '1.7200', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-03-06', 'received', '1.3000', '1.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51307, 426, NULL, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '6.9800', '9.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9200', '0.0000', '2022-03-06', 'received', '6.9800', '6.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (51308, 426, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.9000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '0.0000', '2022-03-06', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51309, 426, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.2400', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-03-06', '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 (51310, 426, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.5000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '4.0000', '2022-03-06', '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 (51311, 426, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.6000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-03-06', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (51312, 426, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '1.5700', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.1200', '18.0000', '2022-03-06', 'received', '1.1900', '1.1900', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '1.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 (51313, 426, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '9.0000', '2022-03-06', '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 (51314, 426, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5000', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2022-03-06', 'received', '0.5000', '0.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51315, 426, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6200', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-03-06', 'received', '0.6200', '0.6200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (51316, 426, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.1700', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-03-06', 'received', '1.1700', '1.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (51317, 426, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.2700', '1.6800', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5000', '0.0000', '2022-03-06', 'received', '1.2700', '1.2700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (51318, 426, NULL, 9330, '3250', 'APETATRUST', NULL, '8.6000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '1.0000', '2022-03-06', '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 (51319, 426, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '5.8000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2022-03-06', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51320, 426, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '11.8000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-03-06', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51321, 426, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '21.6500', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.9500', '0.0000', '2022-03-06', 'received', '21.6500', '21.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (51322, 426, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-03-06', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (51323, 426, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.2000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '1.0000', '2022-03-06', 'received', '19.2000', '19.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (51324, 426, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-03-06', '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 (51325, 426, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.3300', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9900', '0.0000', '2022-03-06', 'received', '5.3300', '5.3300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51326, 426, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2022-03-06', '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 (51327, 426, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.9100', '1.0000', '2022-03-06', 'received', '12.9700', '12.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (51328, 426, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '4.3600', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6000', '8.0000', '2022-03-06', 'received', '4.3600', '4.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51329, 426, NULL, 9758, '35077850', 'ZAMAC TAB 100MG', NULL, '3.1400', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '0.0000', '2022-03-06', '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 (51330, 426, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '7.3000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '0.0000', '2022-03-06', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51331, 426, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.3500', '0.0000', '2022-03-06', 'received', '6.2900', '6.2900', '15.0000', NULL, NULL, 1, 'pc', '15.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 (51332, 426, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.2000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-03-06', '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 (51333, 426, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '26.9800', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.9400', '0.0000', '2022-03-06', 'received', '26.9800', '26.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (51334, 426, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.5000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '3.0000', '2022-03-06', '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 (51335, 426, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.9000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '0.0000', '2022-03-06', 'received', '21.9000', '21.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (51336, 426, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.1000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-03-06', 'received', '2.1000', '2.1000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51337, 426, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.3000', '2.0000', '2022-03-06', 'received', '16.1000', '16.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51338, 426, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '6.4000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-03-06', 'received', '6.4000', '6.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51339, 426, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.9800', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2022-03-06', 'received', '4.9800', '4.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51340, 426, NULL, 9778, '06911698', 'MENSTAK TAB', NULL, '2.3000', '3.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2022-03-06', 'received', '2.3000', '2.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51341, 426, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.5000', '0.0000', '2022-03-06', 'received', '2.3500', '2.3500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (51342, 426, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.9000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2022-03-06', 'received', '6.9000', '6.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51343, 426, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '12.1000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3000', '0.0000', '2022-03-06', 'received', '12.1000', '12.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (51344, 426, NULL, 9822, '47018837', 'RENALKA', NULL, '23.8000', '31.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.4000', '0.0000', '2022-03-06', 'received', '23.8000', '23.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (51345, 426, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '6.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-03-06', '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 (51346, 426, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.1000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '0.0000', '2022-03-06', 'received', '9.1000', '9.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (51347, 426, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-03-06', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (51348, 426, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.1500', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4500', '0.0000', '2022-03-06', 'received', '6.1500', '6.1500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51349, 426, NULL, 2939, '07196283', 'POFAKOF ADULT SYRP', NULL, '6.2300', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6900', '3.0000', '2022-03-06', 'received', '6.2300', '6.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (51350, 426, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '12.7700', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.3100', '0.0000', '2022-03-06', 'received', '12.7700', '12.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (51351, 426, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.4000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '15.0000', '2022-03-06', '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 (51352, 426, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-03-06', '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 (51353, 426, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '3.0000', '2022-03-06', '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 (51354, 426, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2022-03-06', '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 (51355, 426, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.0000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-03-06', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51356, 426, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.0000', '0.0000', '2022-03-06', 'received', '20.6000', '20.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51357, 426, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.5000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '0.0000', '2022-03-06', '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 (51358, 426, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '25.0000', '2022-03-06', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (51359, 426, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.0000', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-03-06', '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 (51360, 426, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.5000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '2.0000', '2022-03-06', '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 (51361, 426, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.7600', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2800', '0.0000', '2022-03-06', 'received', '19.7600', '19.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (51362, 426, NULL, 8844, '2764', 'FEROFIX', NULL, '4.9900', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9700', '0.0000', '2022-03-06', 'received', '4.9900', '4.9900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51363, 426, NULL, 8449, '2369', 'FEROLLEX SRP', NULL, '11.9000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7000', '2.0000', '2022-03-06', 'received', '11.9000', '11.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51364, 426, NULL, 9807, '46079779', 'EXTRAFLEX CAP', NULL, '36.8000', '49.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.6000', '0.0000', '2022-03-06', 'received', '36.8000', '36.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (51365, 426, NULL, 9537, '37913304', 'CALCICARE SUSP', NULL, '36.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2022-03-06', '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 (51366, 426, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '0.0000', '2022-03-06', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (51367, 426, NULL, 9808, '71846421', 'SECNIDEX 1G TAB', NULL, '4.6000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2022-03-06', '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 (51368, 426, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-03-06', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51369, 426, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.4000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '33.0000', '2022-03-06', '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 (51370, 426, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '8.8000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-03-06', '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 (51371, 426, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.9800', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.8000', '7.0000', '2022-03-06', 'received', '6.9800', '6.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (51372, 426, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-03-06', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51373, 426, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.7800', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-06', 'received', '0.7800', '0.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (51374, 426, NULL, 1905, 'PR-618', 'ANTASIL', NULL, '0.5200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-03-06', '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 (51375, 426, NULL, 2245, '77795384', 'MAGACID TABLETS', NULL, '0.7000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '32.0000', '2022-03-06', '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 (51376, 426, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.5000', '40.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '183.0000', '0.0000', '2022-03-06', 'received', '30.5000', '30.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '30.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51377, 426, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9000', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '0.0000', '2022-03-06', '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 (51378, 426, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '13.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '1.0000', '2022-03-06', 'received', '9.5000', '9.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (51379, 426, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1500', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-03-06', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (51380, 426, NULL, 1698, 'PR-411', 'ODYMIN SYR', NULL, '7.5000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-03-06', '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 (51381, 426, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.9100', '3.0000', '2022-03-06', 'received', '12.9700', '12.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (51382, 426, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.8600', '1.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '24.0000', '2022-03-06', 'received', '0.8600', '0.8600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (51383, 426, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '25.8000', '42.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.8000', '5.0000', '2022-03-06', 'received', '25.8000', '25.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '25.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 (51384, 426, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '91.3000', '121.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.3000', '0.0000', '2022-03-06', 'received', '91.3000', '91.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '91.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 (51385, 426, NULL, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '50.9300', '67.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.8600', '0.0000', '2022-03-06', 'received', '50.9300', '50.9300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.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 (51386, 426, NULL, 2777, '97856697', 'MMT SUSP', NULL, '2.8000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '10.0000', '2022-03-06', '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 (51387, 426, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.1000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '0.0000', '2022-03-06', 'received', '9.1000', '9.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (51388, 426, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '5.6000', '7.3900', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-03-06', 'received', '5.6000', '5.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51389, 426, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '15.5000', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-03-06', '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 (51390, 426, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '26.0900', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.2700', '0.0000', '2022-03-06', 'received', '26.0900', '26.0900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (51391, 426, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '5.8000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-03-06', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51392, 426, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '3.0000', '2022-03-06', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (51393, 426, NULL, 9537, '37913304', 'CALCICARE SUSP', NULL, '36.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '3.0000', '2022-03-06', '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 (51394, 426, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9100', '10.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '276.4000', '8.0000', '2022-03-06', 'received', '6.9100', '6.9100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '6.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 (51395, 426, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '0.0000', '2022-03-06', '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 (51396, 426, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1000', '0.0000', '2022-03-06', 'received', '5.7000', '5.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (51397, 426, NULL, 9844, '48755687', 'AMOXYCILLIN 500MG M&G', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-03-06', '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 (51398, 426, NULL, 9847, '00996864', 'GERICARE CAPS', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-03-06', '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 (51399, 426, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4000', '0.0000', '2022-03-06', 'received', '2.8000', '2.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51400, 426, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-03-06', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51401, 426, NULL, 9846, '45939879', 'XZOLE F SUSP', NULL, '5.7000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1000', '2.0000', '2022-03-06', 'received', '5.7000', '5.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (51402, NULL, NULL, 9193, '', '', 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 (51403, NULL, NULL, 9170, '', '', 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 (51404, NULL, NULL, 8736, '', '', 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 (51405, NULL, NULL, 8368, '', '', 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 (51406, NULL, NULL, 7508, '', '', 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 (51407, NULL, NULL, 9836, '', '', 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 (51408, NULL, NULL, 9832, '', '', 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 (51409, NULL, NULL, 8418, '', '', 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 (51410, NULL, NULL, 9267, '', '', 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 (51411, NULL, NULL, 7606, '', '', 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 (51412, NULL, NULL, 8387, '', '', 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 (51413, NULL, NULL, 2868, '', '', 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 (51414, NULL, NULL, 9016, '', '', 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 (51415, NULL, NULL, 7800, '', '', 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 (51416, NULL, NULL, 7993, '', '', 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 (51417, NULL, NULL, 9191, '', '', 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 (51418, NULL, NULL, 8161, '', '', 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 (51419, NULL, NULL, 3067, '', '', 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 (51420, NULL, NULL, 7820, '', '', 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 (51421, NULL, NULL, 7779, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51422, NULL, NULL, 7806, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-56.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51423, NULL, NULL, 8009, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51424, NULL, NULL, 7713, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-110.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51425, NULL, NULL, 8202, '', '', 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 (51426, NULL, NULL, 7394, '', '', 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 (51427, NULL, NULL, 2740, '', '', 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 (51428, NULL, NULL, 9831, '', '', 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 (51429, NULL, NULL, 8913, '', '', 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 (51430, NULL, NULL, 7616, '', '', 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 (51431, NULL, NULL, 7576, '', '', 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 (51432, NULL, NULL, 8970, '', '', 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 (51433, NULL, NULL, 8360, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51434, NULL, NULL, 8193, '', '', 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 (51435, NULL, NULL, 3033, '', '', 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 (51436, NULL, NULL, 9736, '', '', 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 (51437, NULL, NULL, 8279, '', '', 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 (51438, NULL, NULL, 7500, '', '', 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 (51439, NULL, NULL, 9729, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-133.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51440, NULL, NULL, 7320, '', '', 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 (51441, NULL, NULL, 7959, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-45.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51442, NULL, NULL, 9791, '', '', 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 (51443, NULL, NULL, 7582, '', '', 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 (51444, NULL, NULL, 1537, '', '', 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 (51445, NULL, NULL, 9834, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51446, NULL, NULL, 9158, '', '', 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 (51447, NULL, NULL, 9735, '', '', 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 (51448, NULL, NULL, 9831, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51449, NULL, NULL, 7947, '', '', 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 (51450, NULL, NULL, 7483, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-72.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51451, NULL, NULL, 7712, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51452, NULL, NULL, 8454, '', '', 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 (51453, NULL, NULL, 7353, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51454, NULL, NULL, 7648, '', '', 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 (51455, NULL, NULL, 7513, '', '', 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 (51456, NULL, NULL, 1378, '', '', 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 (51457, NULL, NULL, 3044, '', '', 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 (51458, NULL, NULL, 9423, '', '', 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 (51459, NULL, NULL, 8361, '', '', 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 (51460, NULL, NULL, 8015, '', '', 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 (51461, NULL, NULL, 7859, '', '', 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 (51462, NULL, NULL, 7694, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51463, NULL, NULL, 3020, '', '', 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 (51464, NULL, NULL, 7871, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-49.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51465, NULL, NULL, 8449, '', '', 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 (51466, NULL, NULL, 7490, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-211.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51467, NULL, NULL, 9462, '', '', 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 (51468, NULL, NULL, 7796, '', '', 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 (51469, NULL, NULL, 7881, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51470, NULL, NULL, 7611, '', '', 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 (51471, NULL, NULL, 7821, '', '', 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 (51472, NULL, NULL, 8316, '', '', 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 (51473, NULL, NULL, 7474, '', '', 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 (51474, NULL, NULL, 7900, '', '', 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 (51475, NULL, NULL, 8207, '', '', 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 (51476, NULL, NULL, 8496, '', '', 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 (51477, NULL, NULL, 8681, '', '', 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 (51478, NULL, NULL, 7519, '', '', 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 (51479, 427, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '2.9400', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5600', '13.0000', '2022-03-11', 'received', '2.9400', '2.9400', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '2.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 (51480, 427, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.8000', '2.4000', '80.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-03-11', 'received', '1.8000', '1.8000', '80.0000', NULL, NULL, 1, 'pc', '80.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 (51481, 427, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.4300', '2.0000', '80.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.4000', '62.0000', '2022-03-11', 'received', '1.4300', '1.4300', '80.0000', NULL, NULL, 1, 'pc', '80.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 (51482, 427, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-03-11', 'received', '5.2000', '5.2000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (51483, 427, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-03-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 (51484, 427, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-03-11', '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 (51485, 427, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-03-11', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51486, 427, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.7500', '19.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '0.0000', '2022-03-11', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (51487, 427, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '22.7700', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.3100', '0.0000', '2022-03-11', 'received', '22.7700', '22.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (51488, 427, NULL, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '3.3200', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.4000', '8.0000', '2022-03-11', 'received', '3.3200', '3.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (51489, 427, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '7.3300', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6500', '2.0000', '2022-03-11', 'received', '7.3300', '7.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51490, 427, NULL, 9105, '3025', 'GASTRONE TAB', NULL, '1.1800', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8000', '0.0000', '2022-03-11', 'received', '1.1800', '1.1800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (51491, 427, NULL, 9525, '82301277', 'STAMLO 10', NULL, '29.9500', '40.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9000', '2.0000', '2022-03-11', 'received', '29.9500', '29.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (51492, 427, NULL, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '2.7000', '4.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '0.0000', '2022-03-11', 'received', '2.7000', '2.7000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (51493, 427, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-03-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 (51494, 427, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '63.6900', '84.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.0700', '2.0000', '2022-03-11', 'received', '63.6900', '63.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '63.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 (51495, 427, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.8500', '18.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.2500', '0.0000', '2022-03-11', 'received', '13.8500', '13.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (51496, 427, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-03-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 (51497, 427, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.1200', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.6000', '0.0000', '2022-03-11', 'received', '13.1200', '13.1200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (51498, 427, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '12.8300', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.9800', '1.0000', '2022-03-11', 'received', '12.8300', '12.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.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 (51499, 427, NULL, 1568, '5000283659013', 'TAMSULOSIN MR CAPS 400MG ZENTIVA', NULL, '19.5900', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1800', '1.0000', '2022-03-11', '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 (51500, 427, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '49.5000', '65.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '2.0000', '2022-03-11', 'received', '49.5000', '49.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51501, 427, NULL, 1955, '4014852751801', 'PROCOMIL TABLET', NULL, '2.6400', '3.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '4.0000', '2022-03-11', 'received', '2.6400', '2.6400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (51502, 427, NULL, 1497, 'PR-210', 'JARIFAN 2 CAPS', NULL, '11.0600', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.1800', '0.0000', '2022-03-11', 'received', '11.0600', '11.0600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (51503, 427, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.8200', '50.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6400', '0.0000', '2022-03-11', 'received', '37.8200', '37.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '37.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 (51504, 427, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.9400', '7.8400', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '0.0000', '2022-03-11', '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 (51505, 427, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.9400', '7.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8800', '0.0000', '2022-03-11', 'received', '4.9400', '4.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.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 (51506, 427, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '5.5000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '4.0000', '2022-03-11', '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 (51507, 427, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '10.3400', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.7000', '1.0000', '2022-03-11', 'received', '10.3400', '10.3400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51508, 427, NULL, 7683, '1603', 'BELLS CALAMINE', NULL, '11.0900', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2700', '0.0000', '2022-03-11', 'received', '11.0900', '11.0900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (51509, 427, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.9800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '0.0000', '2022-03-11', '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 (51510, 427, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '15.4000', '20.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '0.0000', '2022-03-11', 'received', '15.4000', '15.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (51511, 427, NULL, 7671, '1591', 'PARA UK', NULL, '1.7000', '2.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '6.0000', '2022-03-11', 'received', '1.7000', '1.7000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (51512, 427, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9200', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5200', '0.0000', '2022-03-11', 'received', '7.9200', '7.9200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.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 (51513, 427, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '120.6000', '160.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.6000', '0.0000', '2022-03-11', 'received', '120.6000', '120.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '120.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 (51514, NULL, NULL, 8017, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-55.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51515, NULL, NULL, 1941, '', '', 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 (51516, NULL, NULL, 9830, '', '', 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 (51517, NULL, NULL, 8626, '', '', 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 (51518, NULL, NULL, 9737, '', '', 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 (51519, NULL, NULL, 7650, '', '', 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 (51520, NULL, NULL, 7320, '', '', 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 (51521, NULL, NULL, 2616, '', '', 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 (51522, NULL, NULL, 8404, '', '', 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 (51523, NULL, NULL, 8769, '', '', 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 (51524, NULL, NULL, 2582, '', '', 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 (51525, NULL, NULL, 2657, '', '', 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 (51526, NULL, NULL, 1380, '', '', 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 (51527, NULL, NULL, 7491, '', '', 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 (51528, NULL, NULL, 9724, '', '', 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 (51529, NULL, NULL, 8412, '', '', 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 (51530, NULL, NULL, 2758, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51642, 429, NULL, 9204, '3124', 'NESBEN TAB 200MG', NULL, '3.5000', '5.0000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2022-03-13', 'received', '3.5000', '3.5000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (51643, 429, NULL, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', NULL, '1.2000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-03-13', '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 (51644, 429, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '7.0500', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2500', '2.0000', '2022-03-13', 'received', '7.0500', '7.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (51645, 429, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '6.7700', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8500', '0.0000', '2022-03-13', 'received', '6.7700', '6.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (51646, 429, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.7200', '10.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.8000', '0.0000', '2022-03-13', 'received', '7.7200', '7.7200', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '7.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 (51647, 429, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.2700', '16.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.3500', '0.0000', '2022-03-13', 'received', '12.2700', '12.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (51648, 429, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '15.5000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '0.0000', '2022-03-13', '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 (51649, 429, NULL, 9811, '32783983', 'BENYLIN 4 FLU LIQUID 100ML', NULL, '22.9800', '31.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.9200', '0.0000', '2022-03-13', 'received', '22.9800', '22.9800', '4.0000', NULL, NULL, 1, 'pc', '4.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 (51650, 429, NULL, 9430, '57291940', 'BENYLIN 4 FLU 200ML B/S', NULL, '40.9000', '54.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '163.6000', '1.0000', '2022-03-13', 'received', '40.9000', '40.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '40.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 (51651, 429, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '6.1300', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.7800', '0.0000', '2022-03-13', 'received', '6.1300', '6.1300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51652, 429, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.7800', '0.0000', '2022-03-13', 'received', '6.1300', '6.1300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51653, 429, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '3.0000', '2022-03-13', '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 (51654, 429, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.1500', '8.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '3.0000', '2022-03-13', 'received', '6.1500', '6.1500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (51655, 429, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.6000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-03-13', 'received', '5.6000', '5.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51656, 429, NULL, 9803, '16043207', 'HOT NASO NASAL', NULL, '4.5500', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7500', '2.0000', '2022-03-13', 'received', '4.5500', '4.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (51657, 429, NULL, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '45.5400', '60.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0800', '2.0000', '2022-03-13', 'received', '45.5400', '45.5400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (51658, 429, NULL, 9804, '36365929', 'COLD NASO NASAL', NULL, '3.0500', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2500', '4.0000', '2022-03-13', 'received', '3.0500', '3.0500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51659, 429, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '0.0000', '2022-03-13', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51660, 429, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.6900', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.3800', '0.0000', '2022-03-13', 'received', '9.6900', '9.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (51661, 429, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '0.0000', '2022-03-13', 'received', '1.8800', '1.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (51662, 429, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.5000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-03-13', 'received', '2.5000', '2.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (51663, 429, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '4.7900', '6.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.7000', '0.0000', '2022-03-13', 'received', '4.7900', '4.7900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (51664, 429, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.2000', '23.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '2.0000', '2022-03-13', 'received', '17.2000', '17.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '17.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 (51665, 429, NULL, 2986, '39982987', 'PANACIN TAB', NULL, '0.7700', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.4000', '0.0000', '2022-03-13', 'received', '0.7700', '0.7700', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51666, 429, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '0.0000', '2022-03-13', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (51667, 429, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '18.8100', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4300', '2.0000', '2022-03-13', 'received', '18.8100', '18.8100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (51668, 429, NULL, 9846, '45939879', 'XZOLE F SUSP', NULL, '5.7000', '7.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '2.0000', '2022-03-13', 'received', '5.7000', '5.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.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 (51669, 429, NULL, 7516, '1436', 'BECOATIN TAB', NULL, '10.0000', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-03-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 (51670, 429, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '0.0000', '2022-03-13', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (51671, 429, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1500', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-03-13', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (51672, 429, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '1.5100', '2.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.4000', '9.0000', '2022-03-13', 'received', '1.5100', '1.5100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.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 (51673, 429, NULL, 2231, '7501058633927', 'NAN 2', NULL, '37.0000', '39.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-03-13', '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 (51674, 429, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '39.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '1.0000', '2022-03-13', '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 (51675, 429, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '26.0000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-03-13', '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 (51676, 429, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '26.0000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '2.0000', '2022-03-13', '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 (51677, 429, NULL, 9520, '56647278', 'ABIKRIST TOM BROWN B/S', NULL, '15.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-03-13', '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 (51678, 429, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.9800', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '0.0000', '2022-03-13', '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 (51679, 429, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-03-13', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51680, 429, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4000', '0.0000', '2022-03-13', 'received', '9.4000', '9.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (51681, 429, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.8000', '0.0000', '2022-03-13', 'received', '6.7000', '6.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (51682, 429, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '4.2000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-03-13', '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 (51683, 429, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '0.0000', '2022-03-13', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (51684, 429, NULL, 9424, '3344', 'RONFIT SYRUP', NULL, '3.6300', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '0.0000', '2022-03-13', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (51685, 429, NULL, 9573, '18958409', 'RONFIT COLD SRP', NULL, '3.0000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '3.0000', '2022-03-13', '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 (51686, 429, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '4.2400', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2000', '0.0000', '2022-03-13', 'received', '4.2400', '4.2400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51687, 429, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-03-13', '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 (51688, 429, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.7200', '6.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4000', '0.0000', '2022-03-13', 'received', '4.7200', '4.7300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (51689, 429, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.6000', '0.0000', '2022-03-13', 'received', '22.9000', '22.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '22.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 (51690, 429, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-03-13', 'received', '1.4500', '1.4500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51691, 429, NULL, 2657, '29274667', 'LOPERON CAPS', NULL, '0.5900', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8000', '5.0000', '2022-03-13', 'received', '0.5900', '0.5900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (51692, 429, NULL, 9820, '82801354', 'BLUMOON 50MG', NULL, '2.2000', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '2.0000', '2022-03-13', '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 (51693, 429, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '0.0000', '2022-03-13', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (51694, 429, NULL, 9758, '35077850', 'ZAMAC TAB 100MG', NULL, '3.1400', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.8000', '0.0000', '2022-03-13', 'received', '3.1400', '3.1400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (51695, 429, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '10.0000', '2022-03-13', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (51696, 429, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '3.0000', '2022-03-13', '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 (51697, 429, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.8000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2022-03-13', '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 (51698, 429, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '8.4000', '11.0900', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-03-13', '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 (51699, 429, NULL, 9808, '71846421', 'SECNIDEX 1G TAB', NULL, '4.6000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-03-13', '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 (51700, 429, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '13.0000', '2022-03-13', '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 (51701, 429, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.7700', '47.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.3100', '0.0000', '2022-03-13', 'received', '35.7700', '35.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.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 (51702, 429, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '7.8000', '10.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-03-13', '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 (51703, 429, NULL, 2097, '70572709', 'MACRAFOLIN SYRUP 125ML', NULL, '1.6500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '1.0000', '2022-03-13', 'received', '1.6500', '1.6500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (51704, 429, NULL, 9791, '08517383', 'BASECOLD TAB', NULL, '0.9000', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '11.0000', '2022-03-13', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (51705, 429, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '7.3000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2022-03-13', '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 (51706, 429, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '5.9000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '1.0000', '2022-03-13', 'received', '5.9000', '5.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (51707, 429, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '28.7100', '38.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.4200', '2.0000', '2022-03-13', 'received', '28.7100', '28.7100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (51774, 428, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-03-13', '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 (51775, 428, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.9000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-03-13', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51776, 428, NULL, 9445, '51778713', 'KOFFEX A', NULL, '4.8000', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-03-13', '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 (51777, 428, NULL, 9723, '60831092', 'MUCOSLY JNR SYR 100ML', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2022-03-13', '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 (51778, 428, NULL, 7518, '1438', 'VERMOX TAB', NULL, '7.8000', '10.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-03-13', '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 (51779, 428, NULL, 7779, '1699', 'LUFART SUSP', NULL, '9.5000', '12.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-03-13', '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 (51780, 428, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '36.4600', '49.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.3000', '0.0000', '2022-03-13', 'received', '36.4600', '36.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.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 (51781, 428, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.0200', '37.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0600', '0.0000', '2022-03-13', 'received', '28.0200', '28.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (51782, 428, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.8000', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2022-03-13', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51783, 428, NULL, 7859, '1779', 'KOFLET', NULL, '12.6300', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.1500', '2.0000', '2022-03-13', 'received', '12.6300', '12.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (51784, 428, NULL, 8132, '2052', 'DUROL 300ML', NULL, '9.8000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2022-03-13', 'received', '9.8000', '9.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51785, 428, NULL, 7432, '1352', 'VITAFORCE', NULL, '14.7000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.1000', '1.0000', '2022-03-13', 'received', '14.7000', '14.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51786, 428, NULL, 8449, '2369', 'FEROLLEX SRP', NULL, '11.9000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.5000', '0.0000', '2022-03-13', 'received', '11.9000', '11.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51787, 428, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-03-13', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51788, 428, NULL, 7819, '1739', 'TAABEA MIX', NULL, '9.5500', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.3000', '0.0000', '2022-03-13', 'received', '9.5500', '9.5500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (51789, 428, NULL, 9245, '3165', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-03-13', '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 (51790, 428, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '9.7000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '1.0000', '2022-03-13', 'received', '9.7000', '9.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (51791, 428, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '1.2300', '1.5000', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.3200', '6.0000', '2022-03-13', 'received', '1.2300', '1.2300', '84.0000', NULL, NULL, 1, 'pc', '84.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 (51792, 428, NULL, 7708, '1628', 'TEEDAR', NULL, '7.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-03-13', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51793, 428, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '5.8000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2022-03-13', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51794, 428, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '4.2700', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.7000', '0.0000', '2022-03-13', 'received', '4.2700', '4.2700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (51795, 428, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '4.2000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-03-13', '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 (51796, 428, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '8.0000', '2022-03-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 (51797, 428, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6600', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '7.0000', '2022-03-13', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (51798, 428, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2022-03-13', 'received', '2.7200', '2.7200', '15.0000', NULL, NULL, 1, 'pc', '15.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 (51799, 428, NULL, 7911, '1831', 'BASECOLD SRP', NULL, '3.9600', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-03-13', 'received', '3.9600', '3.9600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (51800, 428, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3500', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '0.0000', '2022-03-13', 'received', '2.3500', '2.3500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (51801, 428, NULL, 7799, '1719', 'STARWIN S/S', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-03-13', '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 (51802, 428, NULL, 2070, '014', 'CHLO EYE ', NULL, '2.3000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-03-13', '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 (51803, 428, NULL, 9721, '99807619', 'AMUROX SUPS (CEFUROXIME AXETIL)', NULL, '11.7000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '4.0000', '2022-03-13', '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 (51804, 428, NULL, 9511, '96030287', 'INFA V WASH', NULL, '9.9000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7000', '3.0000', '2022-03-13', 'received', '9.9000', '9.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (51805, 428, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.0800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2022-03-13', 'received', '2.0800', '2.0800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (51806, 428, NULL, 7564, '1484', 'KWIK ACTION', NULL, '0.6400', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '34.0000', '2022-03-13', '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 (51807, 428, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '3.0000', '2022-03-13', '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 (51808, 428, NULL, 7750, '1670', 'CALPOL 2+', NULL, '31.0000', '41.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '0.0000', '2022-03-13', 'received', '31.0000', '31.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51809, 428, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-03-13', '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 (51810, 428, NULL, 7786, '1706', 'CANDID V6', NULL, '6.7700', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8500', '0.0000', '2022-03-13', 'received', '6.7700', '6.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (51811, 428, NULL, 7641, '1561', 'LYDIA', NULL, '6.9100', '10.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '276.4000', '0.0000', '2022-03-13', 'received', '6.9100', '6.9100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '6.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 (51812, 428, NULL, 8134, '2054', 'AMCOF ADULT', NULL, '5.2300', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3000', '2.0000', '2022-03-13', 'received', '5.2300', '5.2300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51813, 428, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '5.0000', '2022-03-13', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (51814, 428, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '0.0000', '2022-03-13', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (51815, 428, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '20.6000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.0000', '0.0000', '2022-03-13', 'received', '20.6000', '20.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51816, 428, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '8.0000', '2022-03-13', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51817, 428, NULL, 7420, '1340', 'DEEP FREEZE SPRAY 150ML', NULL, '30.7900', '41.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5800', '1.0000', '2022-03-13', 'received', '30.7900', '30.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (51818, 428, NULL, 8101, '2021', 'CHLO CAPS', NULL, '1.9700', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5000', '0.0000', '2022-03-13', 'received', '1.9700', '1.9700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (51819, 428, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '6.4000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '1.0000', '2022-03-13', 'received', '6.4000', '6.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51820, 428, NULL, 9388, '3308', 'FLUXACIN CAPS 500MG', NULL, '5.0000', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '11.0000', '2022-03-13', '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 (51821, 428, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '2.0000', '2022-03-13', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (51822, 428, NULL, 8361, '2281', 'LEENA SRP', NULL, '7.2300', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1500', '0.0000', '2022-03-13', '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 (51823, 428, NULL, 8170, '2090', 'LEOPARD OINT', NULL, '5.7500', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7500', '2.0000', '2022-03-13', 'received', '5.7500', '5.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (51824, 428, NULL, 7341, '1261', 'POLYGYNAX', NULL, '24.5000', '32.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-03-13', '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 (51825, 428, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.6000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '0.0000', '2022-03-13', 'received', '0.5300', '0.5300', '150.0000', NULL, NULL, 1, 'pc', '150.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 (51826, 428, NULL, 7962, '1882', 'ARABA BAZEEN', NULL, '19.0000', '25.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '5.0000', '2022-03-13', '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 (51827, 428, NULL, 7680, '1600', 'FLAGENTYL', NULL, '20.9700', '28.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8500', '0.0000', '2022-03-13', 'received', '20.9700', '20.9700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (51828, 428, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '4.9000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '1.0000', '2022-03-13', '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 (51829, 428, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '6.2600', '8.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.9000', '0.0000', '2022-03-13', 'received', '6.2600', '6.2600', '15.0000', NULL, NULL, 1, 'pc', '15.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 (51830, 428, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.6000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-03-13', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51831, 428, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '6.0000', '2022-03-13', '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 (51832, 428, NULL, 8136, '2056', 'AMCOF JUNIOR', NULL, '5.7700', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.7000', '0.0000', '2022-03-13', 'received', '5.7700', '5.7700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (51833, 428, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.5000', '29.0000', '2022-03-13', 'received', '2.9500', '2.9500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (51834, 428, NULL, 8011, '1931', 'SALO COLD SRP', NULL, '7.5000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-03-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 (51835, 428, NULL, 8017, '1937', 'SALOCOLD TAB', NULL, '0.6000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '22.0000', '2022-03-13', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (51836, 428, NULL, 8077, '1997', 'MYCOSTAT', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-03-13', '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 (51837, 428, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.7200', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.4000', '0.0000', '2022-03-13', 'received', '7.7200', '7.7200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (51838, 428, NULL, 8089, '2009', 'MENTAT SRP', NULL, '20.4000', '26.9300', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-03-13', 'received', '20.4000', '20.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (51839, 428, NULL, 7670, '1590', 'DAKTARIN CREAM', NULL, '19.6000', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-03-13', 'received', '19.6000', '19.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (51840, 428, NULL, 9854, '01673562', 'CANDID CREAM', NULL, '7.5000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '3.0000', '2022-03-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 (51841, 428, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '28.7100', '38.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.4200', '2.0000', '2022-03-13', 'received', '28.7100', '28.7100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (51842, 428, NULL, 9850, '31114846', 'INFA V WASH 100ML', NULL, '17.6000', '23.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '1.0000', '2022-03-13', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (51843, 428, NULL, 9852, '82959638', 'BIBINI TOMA PLUS', NULL, '19.0000', '25.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '5.0000', '2022-03-13', 'received', '19.0000', '19.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (51844, NULL, NULL, 9175, '', '', 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 (51845, NULL, NULL, 7722, '', '', 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 (51846, NULL, NULL, 3036, '', '', 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 (51847, NULL, NULL, 8183, '', '', 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 (51848, NULL, NULL, 2985, '', '', 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 (51849, NULL, NULL, 8025, '', '', 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 (51850, NULL, NULL, 9839, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51851, NULL, NULL, 9779, '', '', 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 (51852, NULL, NULL, 7661, '', '', 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 (51853, NULL, NULL, 8557, '', '', 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 (51854, NULL, NULL, 8132, '', '', 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 (51855, NULL, NULL, 9282, '', '', 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 (51856, NULL, NULL, 3044, '', '', 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 (51857, NULL, NULL, 8615, '', '', 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 (51858, NULL, NULL, 7931, '', '', 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 (51859, NULL, NULL, 8101, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51860, NULL, NULL, 7965, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-42.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51861, NULL, NULL, 9833, '', '', 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 (51862, NULL, NULL, 8407, '', '', 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 (51863, NULL, NULL, 8724, '', '', 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 (51864, NULL, NULL, 9652, '', '', 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 (51933, 431, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-03-14', '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 (51934, 431, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-03-14', '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 (51935, 431, NULL, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '5.5000', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2022-03-14', '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 (51936, 431, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.5800', '8.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9600', '6.0000', '2022-03-14', 'received', '6.5800', '6.5800', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.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 (51937, 431, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-03-14', '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 (51938, 431, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-03-14', '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 (51939, 431, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-03-14', '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 (51940, 431, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-03-14', '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 (51941, 431, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2022-03-14', '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 (51942, 431, NULL, 9806, '15673234', 'HERBLOZ LOZENGES', NULL, '1.0800', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '20.0000', '2022-03-14', 'received', '1.0800', '1.0800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (51943, 431, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-03-14', 'received', '0.6500', '0.6500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.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 (51944, 431, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-03-14', '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 (51945, 431, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-03-14', '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 (51946, 431, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-03-14', '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 (51947, 431, NULL, 9796, '90432278', 'WELCH\"S CAN', NULL, '5.0000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-03-14', '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 (51948, 431, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '10.5000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-03-14', '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 (51949, 431, NULL, 8745, '2665', 'DON SIMON', NULL, '12.0000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-03-14', '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 (51950, 431, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.5000', '14.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-03-14', '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 (51951, 431, NULL, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', NULL, '6.5000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-03-14', '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 (51952, 431, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '7.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '3.0000', '2022-03-14', '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 (51953, 431, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2022-03-14', '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 (51954, 431, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-03-14', '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 (51955, 431, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '2.0000', '2022-03-14', '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 (51956, 431, NULL, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '15.0000', '19.8000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-03-14', '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 (51957, 431, NULL, 2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', NULL, '15.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-03-14', '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 (51958, 431, NULL, 9858, '32829591', 'CYPRODEN SYR 200ML', NULL, '7.7000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '3.0000', '2022-03-14', '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 (51959, 431, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-03-14', '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 (51960, 431, NULL, 9838, '50096747', 'HONEY  USA 400g', NULL, '25.0000', '33.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-03-14', '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 (51961, 431, NULL, 8387, '2307', 'HONEY GIFT OF NATURE 500ML ', NULL, '26.0000', '34.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-03-14', '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 (51968, NULL, NULL, 9105, '', '', 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 (51969, NULL, NULL, 8040, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51970, NULL, NULL, 9762, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51971, NULL, NULL, 9511, '', '', 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 (51972, NULL, NULL, 7610, '', '', 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 (51973, NULL, NULL, 9155, '', '', 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 (51974, NULL, NULL, 9686, '', '', 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 (51975, NULL, NULL, 8355, '', '', 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 (51976, NULL, NULL, 8429, '', '', 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 (51977, NULL, NULL, 7330, '', '', 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 (51978, NULL, NULL, 9771, '', '', 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 (51979, NULL, NULL, 8124, '', '', 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 (51980, NULL, NULL, 7527, '', '', 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 (51981, NULL, NULL, 8336, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (51982, NULL, NULL, 8105, '', '', 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 (51983, NULL, NULL, 7622, '', '', 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 (51984, NULL, NULL, 8043, '', '', 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 (51985, NULL, NULL, 9752, '', '', 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 (51986, NULL, NULL, 8387, '', '', 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 (51987, 432, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.2000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '7.0000', '2022-03-14', '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 (51988, 432, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-03-14', '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 (51989, 432, NULL, 9751, '95396700', 'BEL AQUA MEDIUM', NULL, '1.0000', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-03-14', 'received', '1.0000', '1.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (51990, 432, NULL, 8979, '2899', 'SLIMFIT S/S', NULL, '1.0000', '1.2000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '31.0000', '2022-03-14', 'received', '1.0000', '1.0000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (51991, 432, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-03-14', '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 (51992, 432, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.9000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-14', 'received', '3.9000', '3.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (51993, 432, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-03-14', 'received', '4.5000', '4.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (51994, NULL, NULL, 8325, '', '', 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 (51995, NULL, NULL, 9807, '', '', 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 (51996, NULL, NULL, 8168, '', '', 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 (51997, NULL, NULL, 7419, '', '', 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 (51998, NULL, NULL, 7396, '', '', 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 (51999, NULL, NULL, 1527, '', '', 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 (52000, 430, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-03-14', '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 (52001, 430, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-03-14', '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 (52002, 430, NULL, 9835, '93439136', 'HONEY GINSENG', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2022-03-14', '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 (52003, 430, NULL, 9836, '50969936', 'HONEY GINGER', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-03-14', '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 (52004, 430, NULL, 9837, '00331136', 'HONEY BABY', NULL, '20.0000', '26.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-03-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 (52005, 430, NULL, 9838, '50096747', 'HONEY  USA 400g', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-03-14', '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 (52006, 430, NULL, 8387, '2307', 'HONEY GIFT OF NATURE 500ML ', NULL, '26.0000', '34.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-03-14', '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 (52007, 430, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '7.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '6.0000', '2022-03-14', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52008, 430, NULL, 7719, '1639', 'YAZZ PAD', NULL, '7.0000', '8.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-03-14', 'received', '7.0000', '7.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (52009, 430, NULL, 8835, '2755', 'GEISHA SOAP', NULL, '5.5000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-03-14', '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 (52010, 430, NULL, 8230, '2150', 'SAVLON 500ML', NULL, '25.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-03-14', '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 (52011, 430, NULL, 9226, '3146', 'ZOFIORA 120ML', NULL, '15.0000', '19.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-03-14', '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 (52012, 430, NULL, 8834, '2754', 'AIRFRESHER', NULL, '10.0000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-03-14', '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 (52013, 430, NULL, 7512, '1432', 'LIFEBOUY SOAP', NULL, '6.0000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-03-14', '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 (52014, 430, NULL, 8631, '2551', 'KIDS COLGATE PASTE', NULL, '5.0000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-03-14', '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 (52015, 430, NULL, 8425, '2345', 'COLGATE CHARC', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-03-14', '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 (52016, 430, NULL, 7847, '1767', 'COLGATE TRIP ACTN', NULL, '6.5000', '8.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '6.0000', '2022-03-14', 'received', '6.5000', '6.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (52017, 430, NULL, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '12.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-03-14', '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 (52018, 430, NULL, 8324, '2244', 'COLGATE BRUSH DOUBLE', NULL, '5.0000', '7.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-03-14', '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 (52019, 430, NULL, 8325, '2245', 'COLGATE BRUSH', NULL, '3.0000', '4.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '7.0000', '2022-03-14', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (52020, 430, NULL, 8318, '2238', 'YAZZ BRUSH', NULL, '2.0000', '3.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '8.0000', '2022-03-14', '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 (52021, 430, NULL, 8793, '2713', 'ORAL B BRUSH', NULL, '3.0000', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '7.0000', '2022-03-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 (52022, 430, NULL, 8759, '2679', 'FRUTELLI', NULL, '8.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '1.0000', '2022-03-14', '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 (52023, 430, NULL, 9090, '3010', 'VITAMILK', NULL, '14.0000', '18.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2022-03-14', '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 (52024, 430, NULL, 8745, '2665', 'DON SIMON', NULL, '12.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-03-14', '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 (52025, 430, NULL, 7728, '1648', 'MENTOS GUM ICE', NULL, '2.0000', '2.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '6.0000', '2022-03-14', '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 (52026, 430, NULL, 8949, '2869', 'SOFTCARE PAD', NULL, '6.7000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2022-03-14', '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 (52027, 430, NULL, 7724, '1644', 'FAYTEX', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-03-14', '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 (52028, 430, NULL, 8557, '2477', 'SOFTCARE DIAPER', NULL, '11.0000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-03-14', '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 (52029, 430, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '5.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-03-14', '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 (52030, 430, NULL, 8745, '2665', 'DON SIMON', NULL, '12.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-03-14', '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 (52031, 430, NULL, 9469, '40088756', 'PANACHE', NULL, '3.2500', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '9.0000', '2022-03-14', '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 (52032, 430, NULL, 8915, '2835', 'LUCOZADE 380', NULL, '6.5000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-14', '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 (52033, 430, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '6.6000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '6.0000', '2022-03-14', '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 (52034, 430, NULL, 8769, '2689', 'HUNTERS', NULL, '6.6000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '6.0000', '2022-03-14', '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 (52035, 430, NULL, 8767, '2687', 'KISS DRINK', NULL, '7.1000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '3.0000', '2022-03-14', 'received', '7.1000', '7.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52036, 430, NULL, 8608, '2528', 'VOLTIC S/S PK', NULL, '0.9000', '1.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2022-03-14', 'received', '0.9000', '0.9000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (52037, 430, NULL, 8188, '2108', 'VOLTIC M/S', NULL, '0.9300', '1.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9500', '0.0000', '2022-03-14', 'received', '0.9300', '0.9300', '15.0000', NULL, NULL, 1, 'pc', '15.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 (52038, 430, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-03-14', '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 (52039, 430, NULL, 9861, '41438752', 'OSTEOCARE PLUS', NULL, '89.0000', '120.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.0000', '1.0000', '2022-03-14', 'received', '89.0000', '89.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '89.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52040, NULL, NULL, 9825, '', '', 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 (52041, NULL, NULL, 8083, '', '', 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 (52042, NULL, NULL, 9608, '', '', 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 (52043, NULL, NULL, 9800, '', '', 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 (52044, NULL, NULL, 9783, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (52045, NULL, NULL, 7663, '', '', 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 (52046, NULL, NULL, 9716, '', '', 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 (52077, NULL, NULL, 1885, '', '', 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 (52078, 434, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '3.1200', '4.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '28.0000', '2022-03-16', 'received', '3.1200', '3.1200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (52079, 434, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.4000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '20.0000', '2022-03-16', '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 (52080, 434, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.4000', '3.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '40.0000', '2022-03-16', '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 (52081, 434, NULL, 9316, '3236', 'LOSARTAN POTASSIUM 100MG TEVA', NULL, '10.2900', '14.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.1600', '4.0000', '2022-03-16', 'received', '10.2900', '10.2900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.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 (52082, 434, NULL, 8184, '2104', 'ENACEF 500', NULL, '2.4700', '3.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.1000', '6.0000', '2022-03-16', 'received', '2.4700', '2.4700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (52083, 434, NULL, 9697, '32019049', 'ACICLOVIR 400MG (RANBAXY)', NULL, '10.2900', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.1600', '4.0000', '2022-03-16', 'received', '10.2900', '10.2900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.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 (52084, 434, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5500', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7500', '1.0000', '2022-03-16', 'received', '9.5500', '9.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (52085, 434, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.6400', '2.0000', '32.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.4800', '16.0000', '2022-03-16', 'received', '1.6400', '1.6400', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '1.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 (52086, 434, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.6200', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.1000', '5.0000', '2022-03-16', 'received', '7.6200', '7.6200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52087, 434, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.1500', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.5000', '5.0000', '2022-03-16', 'received', '5.1500', '5.1500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (52088, 434, NULL, 7915, '1835', 'ZUDREX TAB', NULL, '2.8000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '4.0000', '2022-03-16', '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 (52089, 434, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.7500', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.2500', '1.0000', '2022-03-16', 'received', '14.7500', '14.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (52090, 434, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '9.3100', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9300', '0.0000', '2022-03-16', 'received', '9.3100', '9.3100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (52091, 434, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.8800', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '0.0000', '2022-03-16', 'received', '11.8800', '11.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (52092, 434, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '8.1000', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '4.0000', '2022-03-16', 'received', '8.1000', '8.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52093, 434, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '49.5000', '65.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2022-03-16', 'received', '49.5000', '49.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52094, 434, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '52.8000', '70.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '1.0000', '2022-03-16', 'received', '52.8000', '52.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.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 (52095, 434, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-03-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 (52096, 434, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '3.0000', '2022-03-16', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52097, 434, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '8.0000', '2022-03-16', '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 (52098, 434, NULL, 7781, '1701', 'PENICILLIN TAB', NULL, '0.8400', '1.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '97.0000', '2022-03-16', 'received', '0.8400', '0.8400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (52099, 434, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.3600', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '8.0000', '2022-03-16', 'received', '1.3600', '1.3600', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52100, 434, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2000', '4.0000', '2022-03-16', '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 (52131, NULL, NULL, 2617, '', '', 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 (52132, NULL, NULL, 1569, '', '', 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 (52133, NULL, NULL, 8041, '', '', 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 (52134, NULL, NULL, 9053, '', '', 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 (52135, NULL, NULL, 9653, '', '', 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 (52136, NULL, NULL, 9798, '', '', 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 (52137, NULL, NULL, 8039, '', '', 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 (52138, NULL, NULL, 3040, '', '', 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 (52139, NULL, NULL, 8872, '', '', 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 (52140, NULL, NULL, 8277, '', '', 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 (52141, NULL, NULL, 8205, '', '', 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 (52142, NULL, NULL, 2452, '', '', 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 (52143, NULL, NULL, 2781, '', '', 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 (52144, NULL, NULL, 8207, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (52145, NULL, NULL, 9531, '', '', 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 (52146, NULL, NULL, 7880, '', '', 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 (52147, 435, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-03-18', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (52148, 435, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4200', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-03-18', '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 (52149, 435, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '5.0000', '2022-03-18', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52150, 435, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.1900', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9000', '0.0000', '2022-03-18', 'received', '3.1900', '3.1900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (52151, 435, NULL, 9758, '35077850', 'ZAMAC TAB 100MG', NULL, '3.1400', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8400', '0.0000', '2022-03-18', 'received', '3.1400', '3.1400', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52152, 435, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2022-03-18', 'received', '2.8000', '2.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52153, 435, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-03-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 (52154, 435, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '13.5000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '3.0000', '2022-03-18', '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 (52155, 435, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '0.0000', '2022-03-18', 'received', '10.9000', '10.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (52156, 435, NULL, 1696, 'PR-409', 'CYFEN SYR', NULL, '10.1100', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.3300', '0.0000', '2022-03-18', 'received', '10.1100', '10.1100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (52157, 435, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.8000', '22.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.2000', '0.0000', '2022-03-18', '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 (52158, 435, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.3000', '0.0000', '2022-03-18', 'received', '9.5500', '9.5500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (52159, 435, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4000', '0.0000', '2022-03-18', 'received', '8.6000', '8.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52160, 435, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.6400', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8000', '0.0000', '2022-03-18', 'received', '0.6400', '0.6400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52161, 435, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-03-18', '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 (52162, 435, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-03-18', '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 (52163, 435, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.3000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-03-18', 'received', '1.3000', '1.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52164, 435, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-03-18', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52165, 435, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '17.6000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-03-18', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (52166, 435, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '2.0000', '2022-03-18', '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 (52167, 435, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9100', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.2000', '0.0000', '2022-03-18', 'received', '6.9100', '6.9100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (52168, 435, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '8.9100', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5500', '0.0000', '2022-03-18', 'received', '8.9100', '8.9100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (52169, 435, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.2300', '11.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.4500', '8.0000', '2022-03-18', 'received', '8.2300', '8.2300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (52170, 435, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '3.6900', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1400', '0.0000', '2022-03-18', 'received', '3.6900', '3.6900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52171, 435, NULL, 7575, '1495', 'CALAMINE OINT', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '1.0000', '2022-03-18', '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 (52172, 435, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '31.0000', '41.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '0.0000', '2022-03-18', 'received', '31.0000', '31.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52173, 435, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '15.3100', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-03-18', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52174, 435, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-03-18', '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 (52175, 435, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '4.2000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-03-18', '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 (52176, 435, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.7000', '8.0000', '2022-03-18', 'received', '4.2700', '4.2700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (52177, 435, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-03-18', '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 (52178, 435, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '12.9700', '17.5000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.7900', '2.0000', '2022-03-18', 'received', '12.9700', '12.9700', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '12.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 (52179, 435, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '11.2000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.8000', '2.0000', '2022-03-18', 'received', '11.2000', '11.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52180, 435, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0500', '0.0000', '2022-03-18', 'received', '14.2100', '14.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (52181, 435, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.0200', '2.7000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.8000', '24.0000', '2022-03-18', 'received', '2.0200', '2.0200', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (52182, 435, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '4.4100', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4600', '0.0000', '2022-03-18', 'received', '4.4100', '4.4100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (52183, 435, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '25.0000', '33.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '0.0000', '2022-03-18', '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 (52184, 435, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7400', '0.0000', '2022-03-18', 'received', '11.8700', '11.8700', '2.0000', NULL, NULL, 1, 'pc', '2.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 (52185, 436, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '7.8900', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4500', '5.0000', '2022-03-18', '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 (52186, 436, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-03-18', '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 (52187, 436, NULL, 9863, '77851271', 'ONITA SYR 200ML', NULL, '15.5000', '20.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '4.0000', '2022-03-18', '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 (52188, 436, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-03-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 (52189, 436, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '11.0000', '2022-03-18', '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 (52190, 436, NULL, 9864, '42711107', 'ONIDOLL TAB', NULL, '1.6000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '1.0000', '2022-03-18', '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 (52191, 436, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.6900', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4500', '0.0000', '2022-03-18', 'received', '13.6900', '13.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (52192, 436, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '14.5000', '19.1400', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2022-03-18', '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 (52193, 436, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '4.6000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-03-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 (52194, 436, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2022-03-18', '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 (52195, 436, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-03-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 (52196, 436, NULL, 9698, '93279570', 'VITAGLOBIN MG', NULL, '6.8000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '2.0000', '2022-03-18', 'received', '6.8000', '6.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52197, 436, NULL, 9862, '30903598', 'FERICON SYR 200ML', NULL, '16.5000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-03-18', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52198, 436, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-03-18', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (52199, 436, NULL, 8844, '2764', 'FEROFIX', NULL, '4.7000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-03-18', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52200, 436, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '2.6000', '4.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-03-18', '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 (52201, 436, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.1700', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-03-18', 'received', '1.1700', '1.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (52202, 436, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8000', '10.3000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '6.0000', '2022-03-18', 'received', '7.8000', '7.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52203, 436, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2022-03-18', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52204, 436, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.0000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-03-18', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52205, 436, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.1000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-03-18', '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 (52206, 436, NULL, 9445, '51778713', 'KOFFEX A', NULL, '4.8000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-03-18', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52207, 436, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '4.6000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '7.0000', '2022-03-18', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52208, 436, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-03-18', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (52209, 436, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-03-18', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (52210, 436, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-03-18', '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 (52211, 436, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '8.0000', '2022-03-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 (52212, 436, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '4.0000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-03-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 (52213, 436, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2022-03-18', '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 (52214, 436, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.9000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2022-03-18', 'received', '6.9000', '6.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52215, 436, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '19.0000', '2022-03-18', '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 (52216, 436, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '0.0000', '2022-03-18', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (52217, 436, NULL, 9820, '82801354', 'BLUMOON 50MG', NULL, '2.2000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6000', '0.0000', '2022-03-18', 'received', '2.2000', '2.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (52218, 436, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '0.0000', '2022-03-18', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (52219, 436, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.4000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '42.0000', '2022-03-18', '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 (52220, 436, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2022-03-18', '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 (52221, 436, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-18', '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 (52222, 436, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '3.0000', '2022-03-18', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52223, 436, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '0.0000', '2022-03-18', 'received', '10.9000', '10.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52224, 436, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.4000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2022-03-18', '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 (52225, 436, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-03-18', '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 (52226, 437, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '17.6000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '5.0000', '2022-03-18', 'received', '17.6000', '17.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (52227, 437, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.6000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '2.0000', '2022-03-18', 'received', '19.6000', '19.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (52228, 437, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.3000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '4.0000', '2022-03-18', 'received', '1.3000', '1.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52229, 437, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.0000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '4.0000', '2022-03-18', '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 (52230, 437, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9000', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '3.0000', '2022-03-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 (52231, 437, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '1.0000', '2022-03-18', '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 (52232, 437, NULL, 9604, '96289181', 'DISPERSIBLE ASPIRIN', NULL, '2.0000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '20.0000', '2022-03-18', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52233, 437, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.4000', '3.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '46.0000', '2022-03-18', '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 (52234, 437, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2022-03-18', '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 (52235, 437, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.9000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '7.0000', '2022-03-18', 'received', '3.9000', '3.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52236, 437, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.1800', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '26.0000', '2022-03-18', 'received', '1.1800', '1.1800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (52237, 437, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.0000', '31.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '5.0000', '2022-03-18', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52238, 437, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '1.8400', '2.4300', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '10.0000', '2022-03-18', 'received', '1.8400', '1.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (52239, 437, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.1600', '2.0000', '2022-03-18', 'received', '15.0400', '15.0400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (52240, 437, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '11.7000', '15.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '4.0000', '2022-03-18', '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 (52241, 437, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-03-18', '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 (52242, 437, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.5000', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '18.0000', '2022-03-18', '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 (52243, 437, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '2.0000', '2022-03-18', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (52244, 437, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.8000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.0000', '2022-03-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 (52245, 437, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-03-18', '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 (52246, 437, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '1.0000', '2022-03-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 (52247, 437, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.4500', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2500', '15.0000', '2022-03-18', 'received', '0.4500', '0.4500', '25.0000', NULL, NULL, 1, 'pc', '25.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 (52248, 437, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '38.5100', '51.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0200', '2.0000', '2022-03-18', 'received', '38.5100', '38.5100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.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 (52249, 437, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.5000', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.0000', '4.0000', '2022-03-18', 'received', '30.5000', '30.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52250, 437, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7700', '3.0000', '2022-03-18', '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 (52251, 437, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '24.0000', '32.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2022-03-18', 'received', '24.0000', '24.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52252, 437, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '48.0000', '64.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '2.0000', '2022-03-18', 'received', '48.0000', '48.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (52253, 438, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.0800', '4.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9200', '24.0000', '2022-03-18', 'received', '2.0800', '2.0800', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '2.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 (52254, 438, NULL, 2299, '8904107900961', 'DICLOLEX GEL 30G', NULL, '6.5400', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '3.0000', '2022-03-18', 'received', '6.5400', '6.5400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (52255, 438, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.5000', '2.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '87.0000', '2022-03-18', 'received', '0.5000', '0.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (52256, 438, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '22.0000', '2022-03-18', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (52257, 438, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '4.0000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '8.0000', '2022-03-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 (52258, 438, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.0000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2022-03-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 (52259, 438, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.8900', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4500', '0.0000', '2022-03-18', 'received', '12.8900', '12.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (52260, 438, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '13.0000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2022-03-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 (52261, 438, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.8000', '2.0000', '2022-03-18', 'received', '6.7000', '6.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52262, 438, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '7.8900', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4500', '4.0000', '2022-03-18', '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 (52263, 438, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '2.0000', '2022-03-18', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52264, 438, NULL, 2245, '77795384', 'MAGACID TABLETS', NULL, '0.7000', '1.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '19.0000', '2022-03-18', 'received', '0.7000', '0.7000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (52265, 438, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-03-18', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52266, 438, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '2.0000', '2022-03-18', '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 (52267, 438, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8000', '2.0000', '2022-03-18', 'received', '22.9000', '22.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (52268, 438, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9100', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.2000', '11.0000', '2022-03-18', 'received', '6.9100', '6.9100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (52269, 438, NULL, 7802, '1722', '~AMOXICILIN 250 BLISS', NULL, '1.2700', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5000', '0.0000', '2022-03-18', 'received', '1.2700', '1.2700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (52270, 438, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.1000', '4.0000', '2022-03-18', 'received', '15.0200', '15.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (52271, 438, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.2000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-03-18', '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 (52272, 438, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.3300', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6500', '3.0000', '2022-03-18', 'received', '5.3300', '5.3300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52273, 438, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.6200', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.1000', '1.0000', '2022-03-18', 'received', '7.6200', '7.6200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52274, 438, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8000', '10.3000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '5.0000', '2022-03-18', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52275, 438, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2022-03-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 (52276, 438, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.7200', '1.0000', '2022-03-18', '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 (52277, 438, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '7.0000', '2022-03-18', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52278, 438, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '25.0000', '33.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '4.0000', '2022-03-18', '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 (52279, 438, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8800', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '19.0000', '2022-03-18', 'received', '1.8800', '1.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (52280, 438, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8000', '10.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '10.0000', '2022-03-18', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52281, 438, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8800', '2.0000', '2022-03-18', 'received', '6.9400', '6.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.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 (52282, 438, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '3.0000', '2022-03-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 (52283, 438, NULL, 9758, '35077850', 'ZAMAC TAB 100MG', NULL, '3.1400', '4.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7000', '1.0000', '2022-03-18', 'received', '3.1400', '3.1400', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52284, 438, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.9000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '5.0000', '2022-03-18', '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 (52285, 438, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '8.0000', '2022-03-18', 'received', '2.3500', '2.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (52286, 438, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.9000', '4.0000', '2022-03-18', 'received', '14.5800', '14.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (52287, 438, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4600', '0.0000', '2022-03-18', 'received', '27.2300', '27.2300', '2.0000', NULL, NULL, 1, 'pc', '2.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 (52288, 438, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '6.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-03-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 (52289, 438, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.1000', '2.0000', '2022-03-18', '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 (52290, 438, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '3.6900', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0700', '0.0000', '2022-03-18', 'received', '3.6900', '3.6900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (52291, 438, NULL, 9811, '32783983', 'BENYLIN 4 FLU LIQUID 100ML', NULL, '22.9800', '31.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '1.0000', '2022-03-18', '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 (52292, 438, NULL, 9511, '96030287', 'INFA V WASH', NULL, '9.9000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '2.0000', '2022-03-18', 'received', '9.9000', '9.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (52293, 438, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '1.8900', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '0.0000', '2022-03-18', 'received', '1.8900', '1.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (52294, 438, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-18', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52295, 438, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.1000', '3.0000', '2022-03-18', 'received', '16.7000', '16.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (52296, 438, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '6.1300', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6500', '5.0000', '2022-03-18', 'received', '6.1300', '6.1300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52297, 438, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '6.0000', '2022-03-18', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52298, 438, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '39.0000', '2022-03-18', '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 (52299, 438, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-03-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 (52300, 438, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '37.2000', '49.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '2.0000', '2022-03-18', 'received', '37.2000', '37.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '37.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 (52301, 438, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '25.9000', '34.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '2.0000', '2022-03-18', '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 (52302, 438, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '10.0000', '2022-03-18', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52303, 438, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '20.0000', '2022-03-18', '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 (52304, 438, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.7800', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5600', '1.0000', '2022-03-18', 'received', '23.7800', '23.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (52305, 438, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.9000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '0.0000', '2022-03-18', 'received', '21.9000', '21.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '21.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 (52306, 438, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6500', '5.0000', '2022-03-18', 'received', '6.1300', '6.1300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52307, 438, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-03-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 (52308, 438, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8000', '1.0000', '2022-03-18', 'received', '22.9000', '22.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (52309, 438, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.0200', '2.7000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.0000', '35.0000', '2022-03-18', 'received', '2.0200', '2.0200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (52310, 438, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.0000', '31.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '4.0000', '2022-03-18', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52311, 438, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.7000', '1.0000', '2022-03-18', 'received', '11.7000', '11.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (52312, 438, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.2000', '23.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4000', '1.0000', '2022-03-18', 'received', '17.2000', '17.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.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 (52313, 438, NULL, 2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', NULL, '1.7000', '3.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '46.0000', '2022-03-18', 'received', '1.7000', '1.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (52314, 438, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '4.5000', '6.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-03-18', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52315, 438, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '5.0000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-03-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 (52316, 438, NULL, 8758, '2678', 'PURE HEAVEN', NULL, '10.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-03-18', '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 (52317, 438, NULL, 8743, '2663', 'CERES DRINK', NULL, '10.5000', '14.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '5.0000', '2022-03-18', 'received', '10.5000', '10.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52318, 438, NULL, 8745, '2665', 'DON SIMON', NULL, '12.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-03-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 (52319, 438, NULL, 8982, '2902', 'CRANBERRY', NULL, '13.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2022-03-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 (52320, 438, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '5.0000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2022-03-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 (52321, 438, NULL, 8775, '2695', 'VITRAC S/S', NULL, '3.3300', '4.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9600', '5.0000', '2022-03-18', 'received', '3.3300', '3.3300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (52322, 438, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.2000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-03-18', '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 (52323, 439, NULL, 9857, '65314822', 'SHAL ARTEM DISPERSIBLE', NULL, '2.6000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '10.0000', '2022-03-18', '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 (52324, 439, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.2000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-03-18', '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 (52325, 439, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '24.0000', '32.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-03-18', 'received', '24.0000', '24.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52326, 439, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '48.0000', '64.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-03-18', 'received', '48.0000', '48.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (52327, 439, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-03-18', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52328, 439, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-03-18', '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 (52329, 439, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '15.3100', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-03-18', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52330, 439, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8200', '0.0000', '2022-03-18', 'received', '6.9400', '6.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (52331, 439, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.2000', '23.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '0.0000', '2022-03-18', 'received', '17.2000', '17.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (52332, 439, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.6000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-03-18', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (52333, 439, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-03-18', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52334, 439, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3500', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0500', '0.0000', '2022-03-18', 'received', '14.3500', '14.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (52335, 439, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '7.8000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '1.0000', '2022-03-18', '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 (52336, 439, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-03-18', '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 (52337, 439, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-03-18', 'received', '1.0800', '1.0800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (52338, 439, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-03-18', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (52339, 439, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.2500', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2022-03-18', 'received', '0.2500', '0.2500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (52340, 439, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.6000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-03-18', 'received', '19.6000', '19.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (52341, 439, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '7.8900', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4500', '2.0000', '2022-03-18', '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 (52342, 439, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '7.8000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '3.0000', '2022-03-18', '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 (52343, 439, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7000', '0.0000', '2022-03-18', 'received', '6.9400', '6.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (52344, 439, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-03-18', '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 (52345, 439, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-03-18', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52346, 439, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.3500', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.5000', '0.0000', '2022-03-18', 'received', '2.3500', '2.3500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (52347, 439, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2022-03-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 (52348, 439, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-03-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 (52349, 439, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2900', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4500', '0.0000', '2022-03-18', 'received', '5.2900', '5.2900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (52350, 439, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '5.6000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2022-03-18', 'received', '5.6000', '5.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52351, 439, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '6.7000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2022-03-18', '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 (52352, 439, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.4500', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '32.0000', '2022-03-18', 'received', '0.4500', '0.4500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (52353, 439, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.4000', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-03-18', 'received', '1.4000', '1.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (52354, 439, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '2.3000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-03-18', '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 (52355, 439, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '2.3000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-03-18', '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 (52356, 439, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.6400', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8000', '0.0000', '2022-03-18', 'received', '0.6400', '0.6400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52357, 439, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-03-18', 'received', '1.0800', '1.0800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (52395, NULL, NULL, 9721, '', '', 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 (52396, NULL, NULL, 2888, '', '', 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 (52435, 433, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '15.0000', '25.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-03-16', '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 (52436, 433, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-03-16', '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 (52437, 433, NULL, 8064, '1984', 'EXETER PARA SRP', NULL, '4.9800', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '4.0000', '2022-03-16', 'received', '4.9800', '4.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52438, 433, NULL, 7750, '1670', 'CALPOL 2+', NULL, '31.0000', '41.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-03-16', 'received', '31.0000', '31.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52439, 433, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '2.4900', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '5.0000', '2022-03-16', '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 (52440, 433, NULL, 8084, '2004', 'METROLEX F SUSP', NULL, '12.7000', '17.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.8000', '0.0000', '2022-03-16', 'received', '12.7000', '12.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52441, 433, NULL, 8336, '2256', 'AMLODIPINE 5MG TEVA', NULL, '2.9000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '1.0000', '2022-03-16', 'received', '2.9000', '2.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52442, 433, NULL, 7509, '1429', 'ROOTER', NULL, '6.5000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-03-16', '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 (52443, 433, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2022-03-16', '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 (52444, 433, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.0000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-03-16', '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 (52445, 433, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '3.1800', '4.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.4000', '20.0000', '2022-03-16', 'received', '3.1800', '3.1800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (52446, 433, NULL, 7658, '1578', 'DICLO DENK SUPP', NULL, '2.0200', '2.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '202.0000', '22.0000', '2022-03-16', 'received', '2.0200', '2.0200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '2.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 (52447, 433, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '12.9700', '17.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.7600', '4.0000', '2022-03-16', 'received', '12.9700', '12.9700', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '12.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 (52448, 433, NULL, 7622, '1542', 'NIFEDENK 10', NULL, '3.3000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-03-16', 'received', '3.3000', '3.3000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52449, 433, NULL, 7478, '1398', 'NIFE DENK 20', NULL, '4.7900', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8000', '4.0000', '2022-03-16', 'received', '4.7900', '4.7900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (52450, 433, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '49.5000', '77.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '2.0000', '2022-03-16', 'received', '49.5000', '49.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52451, 433, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.4600', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '48.0000', '2022-03-16', 'received', '0.4600', '0.4600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (52452, 433, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '0.0000', '2022-03-16', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (52453, 433, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-03-16', '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 (52454, 433, NULL, 8077, '1997', 'MYCOSTAT', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-03-16', '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 (52455, 433, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7500', '4.0000', '2022-03-16', 'received', '9.5500', '9.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (52456, 433, NULL, 9316, '3236', 'LOSARTAN POTASSIUM 100MG TEVA', NULL, '8.7300', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.3000', '4.0000', '2022-03-16', 'received', '8.7300', '8.7300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (52457, 433, NULL, 9862, '30903598', 'FERICON SYR 200ML', NULL, '16.5000', '22.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '3.0000', '2022-03-16', 'received', '16.5000', '16.5000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52458, 433, NULL, 9863, '77851271', 'ONITA SYR 200ML', NULL, '15.5000', '20.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.0000', '6.0000', '2022-03-16', 'received', '15.5000', '15.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (52459, 433, NULL, 8395, '2315', 'DIAZEPAM 10MG', NULL, '0.6200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '20.0000', '2022-03-16', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (52460, 433, NULL, 9864, '42711107', 'ONIDOLL TAB', NULL, '1.6000', '2.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '20.0000', '2022-03-16', '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 (52461, 433, NULL, 9865, '96866713', 'MALUFAN TAB', NULL, '7.9500', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.0000', '10.0000', '2022-03-16', 'received', '7.9500', '7.9500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52462, 433, NULL, 7993, '1913', 'PERFECTIL PLATINUM', NULL, '38.7500', '51.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.0000', '0.0000', '2022-03-16', 'received', '38.7500', '38.7500', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '38.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 (52463, 433, NULL, 8721, '2641', 'IMPRESSER CAPS', NULL, '24.0000', '32.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2022-03-16', 'received', '24.0000', '24.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52464, 433, NULL, 8780, '2700', 'IMPRESSER OIL', NULL, '48.0000', '64.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2022-03-16', 'received', '48.0000', '48.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (52465, 433, NULL, 9836, '50969936', 'HONEY GINGER', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2022-03-16', '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 (52466, 433, NULL, 7762, '1682', 'GV PAINT', NULL, '1.5000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '5.0000', '2022-03-16', '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 (52467, 433, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '9.0000', '2022-03-16', '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 (52468, 433, NULL, 8596, '2516', 'POSTINOR LOCAL', NULL, '2.5000', '5.0000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.0000', '0.0000', '2022-03-16', 'received', '2.5000', '2.5000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (52469, 433, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '6.8000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '2.0000', '2022-03-16', '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 (52470, 433, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '9.8000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-03-16', 'received', '9.8000', '9.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52471, 433, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '36.4600', '49.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.3000', '0.0000', '2022-03-16', 'received', '36.4600', '36.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.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 (52472, 433, NULL, 9470, '54824799', 'COKE/ FANTA/ SPRITE 1L', NULL, '9.0000', '12.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-03-16', 'received', '9.0000', '9.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (52473, 433, NULL, 9592, '11957121', 'VIVADONA CAPS 20\'S', NULL, '3.2000', '2.1000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-03-16', 'received', '3.2000', '3.2000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (52474, NULL, NULL, 8595, '', '', 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 (52475, NULL, NULL, 2847, '', '', 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 (52476, NULL, NULL, 9179, '', '', 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 (52477, NULL, NULL, 8912, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (52478, NULL, NULL, 8706, '', '', 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 (52479, NULL, NULL, 2096, '', '', 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 (52480, NULL, NULL, 8477, '', '', 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 (52481, NULL, NULL, 8710, '', '', 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 (52482, NULL, NULL, 8170, '', '', 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 (52483, NULL, NULL, 2640, '', '', 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 (52484, NULL, NULL, 8952, '', '', 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 (52485, NULL, NULL, 8384, '', '', 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 (52486, NULL, NULL, 8331, '', '', 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 (52487, NULL, NULL, 2710, '', '', 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 (52488, NULL, NULL, 9828, '', '', 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 (52489, NULL, NULL, 9760, '', '', 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 (52490, NULL, NULL, 7652, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-89.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52491, NULL, NULL, 9825, '', '', 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 (52492, NULL, NULL, 9499, '', '', 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 (52493, NULL, NULL, 8607, '', '', 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 (52494, NULL, NULL, 7509, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-71.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52495, NULL, NULL, 8333, '', '', 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 (52496, NULL, NULL, 9463, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (52497, NULL, NULL, 8153, '', '', 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 (52498, NULL, NULL, 7575, '', '', 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 (52499, NULL, NULL, 8233, '', '', 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 (52500, NULL, NULL, 9762, '', '', 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 (52501, NULL, NULL, 8546, '', '', 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 (52502, NULL, NULL, 9785, '', '', 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 (52503, NULL, NULL, 2823, '', '', 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 (52504, NULL, NULL, 8017, '', '', 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 (52505, NULL, NULL, 9145, '', '', 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 (52506, NULL, NULL, 7664, '', '', 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 (52507, NULL, NULL, 8476, '', '', 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 (52508, NULL, NULL, 7784, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (52509, NULL, NULL, 9805, '', '', 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 (52510, NULL, NULL, 9868, '', '', 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 (52511, NULL, NULL, 8498, '', '', 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 (52512, NULL, NULL, 2820, '', '', 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 (52513, NULL, NULL, 2069, '', '', 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 (52514, NULL, NULL, 9271, '', '', 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 (52515, NULL, NULL, 7874, '', '', 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 (52516, NULL, NULL, 9727, '', '', 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 (52517, NULL, NULL, 9411, '', '', 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 (52518, NULL, NULL, 1848, '', '', 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 (52519, NULL, NULL, 2017, '', '', 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 (52520, NULL, NULL, 9108, '', '', 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 (52521, NULL, NULL, 9694, '', '', 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 (52522, NULL, NULL, 9788, '', '', 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 (52523, NULL, NULL, 9856, '', '', 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 (52524, NULL, NULL, 8969, '', '', 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 (52525, NULL, NULL, 1901, '', '', 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 (52526, 440, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-03-24', 'received', '15.0000', '15.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (52527, 440, NULL, 9092, '3012', 'VINKA CHOCOLATE', NULL, '0.3200', '0.5000', '204.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.2800', '55.0000', '2022-03-24', 'received', '0.3200', '0.3200', '204.0000', NULL, NULL, 1, 'pc', '204.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 (52528, 440, NULL, 8061, '1981', 'CHOCOLATE', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-03-24', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52529, 440, NULL, 8415, '2335', 'CHOCOLATE M/S', NULL, '3.6000', '5.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '16.0000', '2022-03-24', 'received', '3.6000', '3.6000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (52530, 440, NULL, 8666, '2586', 'BANANA GUM', NULL, '0.4600', '1.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '1.0000', '2022-03-24', 'received', '0.4600', '0.4600', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '0.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 (52531, 440, NULL, 8984, '2904', 'VERNA S/S', NULL, '0.8700', '1.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '11.0000', '2022-03-24', '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 (52532, 440, NULL, 8607, '2527', 'VERNA M/S', NULL, '1.0000', '1.5000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-03-24', 'received', '1.0000', '1.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (52718, 441, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.1000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '5.0000', '2022-03-24', 'received', '23.1000', '23.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (52719, 441, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.9000', '7.0000', '2022-03-24', 'received', '11.7000', '11.7000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (52720, 441, NULL, 7342, '1262', 'AMOKSIKLAV228', NULL, '21.0000', '28.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '5.0000', '2022-03-24', 'received', '21.0000', '21.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52721, 441, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '27.5000', '36.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '0.0000', '2022-03-24', 'received', '27.5000', '27.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52722, 441, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '2.0000', '2022-03-24', '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 (52723, 441, NULL, 7890, '1810', 'TINATETT MALAKARE', NULL, '17.6000', '23.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '1.0000', '2022-03-24', 'received', '17.6000', '17.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (52724, 441, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.7000', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '12.0000', '2022-03-24', 'received', '2.7000', '2.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (52725, 441, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.3000', '2.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '81.0000', '2022-03-24', 'received', '1.3000', '1.3000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (52726, 441, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.8000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '17.0000', '2022-03-24', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (52727, 441, NULL, 7355, '1275', 'BIOFERON SRP', NULL, '17.9400', '24.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.6400', '0.0000', '2022-03-24', 'received', '17.9400', '17.9400', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52728, 441, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.2000', '23.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2022-03-24', 'received', '17.2000', '17.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (52729, 441, NULL, 9332, '3252', 'ARZIGLOBIN SYRUP', NULL, '8.0000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-03-24', '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 (52730, 441, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '14.7500', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.2500', '0.0000', '2022-03-24', 'received', '14.7500', '14.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (52731, 441, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.0000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.0000', '0.0000', '2022-03-24', 'received', '1.4000', '1.4000', '125.0000', NULL, NULL, 1, 'pc', '125.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 (52732, 441, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '36.4600', '49.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '364.6000', '0.0000', '2022-03-24', 'received', '36.4600', '36.4600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '36.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 (52733, 441, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '291.6000', '17.0000', '2022-03-24', 'received', '14.5800', '14.5800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (52734, 441, NULL, 8360, '2280', 'LEENA CAPS', NULL, '3.2300', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.3000', '5.0000', '2022-03-24', 'received', '3.2300', '3.2300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (52735, 441, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '1.2000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2022-03-24', '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 (52736, 441, NULL, 7981, '1901', 'GACET 250', NULL, '0.6400', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-03-24', 'received', '0.6400', '0.6400', '100.0000', NULL, NULL, 1, 'pc', '100.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 (52737, 441, NULL, 7659, '1579', 'DREZ OINT 10MG', NULL, '6.3000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '0.0000', '2022-03-24', 'received', '6.3000', '6.3000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (52738, 441, NULL, 7548, '1468', 'SENACO', NULL, '1.7000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2022-03-24', '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 (52739, 441, NULL, 8925, '2845', 'MMT', NULL, '2.4000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '7.0000', '2022-03-24', '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 (52740, 441, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '4.2400', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4000', '0.0000', '2022-03-24', 'received', '4.2400', '4.2400', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52741, 441, NULL, 7582, '1502', 'DAN RUBB', NULL, '6.1600', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8000', '4.0000', '2022-03-24', 'received', '6.1600', '6.1600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (52742, 441, NULL, 2299, '8904107900961', 'DICLOLEX GEL 30G', NULL, '5.9000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '6.0000', '2022-03-24', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (52743, 441, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9200', '0.0000', '2022-03-24', 'received', '8.6400', '8.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (52744, 441, NULL, 7552, '1472', 'LOFNAC GEL', NULL, '5.2000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2022-03-24', '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 (52745, 441, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '13.5000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '1.0000', '2022-03-24', '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 (52746, 441, NULL, 7588, '1508', 'FUNBACT', NULL, '6.9000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2022-03-24', 'received', '6.9000', '6.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (52747, 441, NULL, 7815, '1735', 'GIVERS KOO CAPS', NULL, '22.0000', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-03-24', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (52748, 441, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4000', '5.0000', '2022-03-24', 'received', '9.4000', '9.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (52749, 441, NULL, 7635, '1555', 'DECATYLINE LOZ', NULL, '13.7500', '18.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '4.0000', '2022-03-24', 'received', '13.7500', '13.7500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.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 (52750, 441, NULL, 7917, '1837', 'NO 10', NULL, '0.5000', '0.7000', '250.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '54.0000', '2022-03-24', 'received', '0.5000', '0.5000', '250.0000', NULL, NULL, 1, 'pc', '250.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 (52751, 441, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-03-24', '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 (52752, 441, NULL, 8753, '2673', 'GANA BALM', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-03-24', '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 (52753, 441, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '14.7500', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7500', '5.0000', '2022-03-24', 'received', '14.7500', '14.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (52754, 441, NULL, 9098, '3018', 'JOY VIKIL', NULL, '26.0000', '34.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '0.0000', '2022-03-24', '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 (52755, 441, NULL, 7354, '1274', 'ALUMINIUM HYDROXIDE', NULL, '0.3700', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-03-24', '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 (52756, 441, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '22.1000', '29.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.6000', '0.0000', '2022-03-24', '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 (52757, 441, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.5000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-03-24', '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 (52758, 441, NULL, 8202, '2122', 'GYPRONE SRP', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-03-24', '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 (52759, 441, NULL, 9872, '27039848', 'GEBEXIME 500MG TAB', NULL, '14.6300', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.1500', '2.0000', '2022-03-24', 'received', '14.6300', '14.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (52962, NULL, NULL, 8393, '', '', 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 (52963, NULL, NULL, 8789, '', '', 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 (52964, NULL, NULL, 9863, '', '', 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 (52965, NULL, NULL, 7601, '', '', 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 (52966, NULL, NULL, 8113, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-60.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52967, NULL, NULL, 9862, '', '', 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 (52968, NULL, NULL, 7347, '', '', 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 (52969, NULL, NULL, 8834, '', '', 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 (52970, NULL, NULL, 9819, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (52971, NULL, NULL, 9824, '', '', 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 (53017, NULL, NULL, 2717, '', '', 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 (53018, NULL, NULL, 2669, '', '', 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 (53019, NULL, NULL, 9805, '', '', 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 (53020, NULL, NULL, 7635, '', '', 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 (53021, NULL, NULL, 9840, '', '', 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 (53022, NULL, NULL, 9867, '', '', 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 (53023, NULL, NULL, 7323, '', '', 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 (53024, NULL, NULL, 8984, '', '', 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 (53025, NULL, NULL, 9592, '', '', 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 (53026, NULL, NULL, 7889, '', '', 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 (53027, NULL, NULL, 1820, '', '', 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 (53028, NULL, NULL, 8455, '', '', 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 (53029, NULL, NULL, 2050, '', '', 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 (53030, NULL, NULL, 8763, '', '', 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 (53031, NULL, NULL, 1524, '', '', 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 (53032, NULL, NULL, 7584, '', '', 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 (53033, NULL, NULL, 7864, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53034, NULL, NULL, 8158, '', '', 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 (53035, NULL, NULL, 8392, '', '', 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 (53036, NULL, NULL, 8068, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53037, NULL, NULL, 2769, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53038, NULL, NULL, 9492, '', '', 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 (53039, NULL, NULL, 9829, '', '', 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 (53040, NULL, NULL, 7758, '', '', 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 (53041, NULL, NULL, 9870, '', '', 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 (53042, NULL, NULL, 1308, '', '', 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 (53043, NULL, NULL, 9832, '', '', 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 (53044, NULL, NULL, 9868, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53045, NULL, NULL, 9381, '', '', 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 (53046, NULL, NULL, 9635, '', '', 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 (53047, NULL, NULL, 9817, '', '', 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 (53048, NULL, NULL, 9865, '', '', 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 (53049, NULL, NULL, 9835, '', '', 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 (53050, NULL, NULL, 7516, '', '', 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 (53051, NULL, NULL, 9790, '', '', 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 (53052, NULL, NULL, 7991, '', '', 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 (53053, NULL, NULL, 9275, '', '', 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 (53054, NULL, NULL, 2354, '', '', 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 (53055, NULL, NULL, 7786, '', '', 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 (53056, NULL, NULL, 8771, '', '', 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 (53057, NULL, NULL, 8783, '', '', 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 (53058, NULL, NULL, 1722, '', '', 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 (53059, NULL, NULL, 8247, '', '', 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 (53060, NULL, NULL, 8972, '', '', 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 (53061, NULL, NULL, 8314, '', '', 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 (53062, NULL, NULL, 8949, '', '', 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 (53063, NULL, NULL, 7944, '', '', 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 (53064, NULL, NULL, 9845, '', '', 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 (53065, NULL, NULL, 8009, '', '', 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 (53066, NULL, NULL, 8256, '', '', 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 (53067, NULL, NULL, 8103, '', '', 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 (53068, NULL, NULL, 9186, '', '', 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 (53069, NULL, NULL, 9808, '', '', 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 (53070, NULL, NULL, 8667, '', '', 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 (53071, NULL, NULL, 8471, '', '', 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 (53072, NULL, NULL, 9081, '', '', 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 (53073, NULL, NULL, 8547, '', '', 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 (53074, NULL, NULL, 7691, '', '', 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 (53075, NULL, NULL, 7886, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53076, NULL, NULL, 9791, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-62.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53077, NULL, NULL, 9450, '', '', 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 (53078, NULL, NULL, 9303, '', '', 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 (53079, NULL, NULL, 9866, '', '', 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 (53080, NULL, NULL, 8766, '', '', 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 (53081, NULL, NULL, 8419, '', '', 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 (53082, NULL, NULL, 9763, '', '', 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 (53083, NULL, NULL, 9565, '', '', 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 (53162, NULL, NULL, 2726, '', '', 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 (53163, NULL, NULL, 9839, '', '', 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 (53204, 445, NULL, 9668, '54007086', 'FLUCOXACILLIN 500MG', NULL, '13.9000', '18.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5000', '4.0000', '2022-03-24', '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 (53205, 445, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.4100', '6.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.4000', '29.0000', '2022-03-24', 'received', '4.4100', '4.4100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '4.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 (53206, 445, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '31.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '0.0000', '2022-03-24', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (53207, 445, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-03-24', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53208, 445, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2022-03-24', '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 (53209, 445, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '7.3000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.3000', '0.0000', '2022-03-24', 'received', '7.3000', '7.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (53210, 445, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '21.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '0.0000', '2022-03-24', 'received', '16.1000', '16.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53211, 445, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '0.0000', '2022-03-24', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53212, 445, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '0.0000', '2022-03-24', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (53213, 445, NULL, 8039, '1959', 'ACIDOM', NULL, '14.9000', '20.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-03-24', 'received', '14.9000', '14.9000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '14.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 (53214, 445, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.6900', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.4500', '0.0000', '2022-03-24', 'received', '9.6900', '9.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (53215, 445, NULL, 1613, 'PR-326', 'GYPRON SYR', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '4.0000', '2022-03-24', '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 (53216, 445, NULL, 1833, 'PR-546', 'STUGERON TABS 50?S', NULL, '5.1600', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '0.0000', '2022-03-24', 'received', '5.1600', '5.1600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (53217, 445, NULL, 1836, 'PR-549', 'SIRDALUD 2MG', NULL, '14.5700', '19.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.4200', '2.0000', '2022-03-24', 'received', '14.5700', '14.5700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.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 (53218, 445, NULL, 1559, 'PR-272', 'SIRDALUD 4MG', NULL, '30.7000', '41.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.2000', '2.0000', '2022-03-24', 'received', '30.7000', '30.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '30.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 (53219, 445, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '117.4000', '155.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.4000', '1.0000', '2022-03-24', 'received', '117.4000', '117.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '117.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 (53220, 445, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '15.9000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '0.0000', '2022-03-24', 'received', '15.9000', '15.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (53221, 445, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '6.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-03-24', '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 (53222, 445, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '13.6000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '3.0000', '2022-03-24', 'received', '13.6000', '13.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53223, 445, NULL, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '6.3800', '8.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.6000', '7.0000', '2022-03-24', 'received', '6.3800', '6.3800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (53224, 445, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.5000', '0.0000', '2022-03-24', 'received', '4.1700', '4.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (53225, 445, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.8800', '16.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.8000', '0.0000', '2022-03-24', 'received', '11.8800', '11.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '11.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 (53226, 445, NULL, 7802, '1722', '~AMOXICILIN 250 BLISS', NULL, '1.2200', '2.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.0000', '0.0000', '2022-03-24', 'received', '1.2200', '1.2200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (53227, 445, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '8.8000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-03-24', '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 (53228, 445, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2000', '0.0000', '2022-03-24', 'received', '15.0400', '15.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (53229, 445, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '21.6500', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '3.0000', '2022-03-24', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (53230, 445, NULL, 9840, '00885109', 'LEXOCAP', NULL, '1.5000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-03-24', '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 (53231, 445, NULL, 9754, '16090219', 'CLOPIMOL TAB', NULL, '1.8000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-03-24', '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 (53232, 445, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '5.0500', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.5000', '0.0000', '2022-03-24', 'received', '5.0500', '5.0500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (53233, 445, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.6500', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-03-24', 'received', '1.6500', '1.6500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53234, 445, NULL, 9727, '67843986', 'KIFARU TAB 100ML', NULL, '6.7000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2022-03-24', '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 (53235, 445, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-03-24', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (53236, 445, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '0.0000', '2022-03-24', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (53237, 445, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '8.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-03-24', '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 (53238, 445, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.7800', '1.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7200', '21.0000', '2022-03-24', 'received', '0.7800', '0.7800', '24.0000', NULL, NULL, 1, 'pc', '24.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 (53239, 445, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.9300', '1.2300', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3200', '15.0000', '2022-03-24', 'received', '0.9300', '0.9300', '24.0000', NULL, NULL, 1, 'pc', '24.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 (53240, 445, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.3300', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9200', '15.0000', '2022-03-24', 'received', '1.3300', '1.3300', '24.0000', NULL, NULL, 1, 'pc', '24.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 (53241, 445, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '110.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '1.0000', '2022-03-24', '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 (53242, 443, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '5.0000', '2022-03-24', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53243, 443, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '7.3000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '2.0000', '2022-03-24', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53244, 443, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '50.0000', '2022-03-24', 'received', '0.2600', '0.2600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (53245, 443, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-03-24', '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 (53246, 443, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7000', '5.0000', '2022-03-24', 'received', '6.9400', '6.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (53247, 443, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.7600', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.8000', '5.0000', '2022-03-24', 'received', '9.7600', '9.7600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (53248, 443, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-03-24', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53249, 443, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '6.0000', '2022-03-24', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53250, 443, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '2.0000', '2022-03-24', '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 (53251, 443, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '2.0000', '2022-03-24', '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 (53252, 443, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '2.0000', '2022-03-24', '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 (53253, 443, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2000', '6.8600', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2022-03-24', '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 (53254, 443, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '5.0000', '2022-03-24', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53255, 443, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '9.6000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '2.0000', '2022-03-24', '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 (53256, 443, NULL, 1925, 'PR-638', 'Tobins Cod oil T32003', NULL, '1.4200', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2000', '3.0000', '2022-03-24', 'received', '1.4200', '1.4200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (53257, 443, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '1.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2022-03-24', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (53258, 443, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.9000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '2.0000', '2022-03-24', '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 (53259, 443, NULL, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', NULL, '4.3000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '2.0000', '2022-03-24', '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 (53260, 443, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3500', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '40.0000', '2022-03-24', 'received', '2.3500', '2.3500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.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 (53261, 443, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '3.0000', '2022-03-24', '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 (53262, 443, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '17.6000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '2.0000', '2022-03-24', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (53263, 443, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '2.0000', '2022-03-24', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53264, 443, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '3.0000', '2022-03-24', '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 (53265, 443, NULL, 7944, '1864', 'DIPEX TAB', NULL, '2.0100', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '7.0000', '2022-03-24', 'received', '2.0100', '2.0100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53266, 443, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '1.5100', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1200', '3.0000', '2022-03-24', 'received', '1.5100', '1.5100', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.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 (53267, 443, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.5000', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.0000', '4.0000', '2022-03-24', 'received', '30.5000', '30.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53268, 443, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '12.7000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5000', '3.0000', '2022-03-24', 'received', '12.7000', '12.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53269, 443, NULL, 9191, '3111', 'METOCHLOPRAMIDE 10MG', NULL, '16.7000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7000', '1.0000', '2022-03-24', 'received', '16.7000', '16.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (53270, 443, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '3.0000', '2022-03-24', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53271, 443, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.3000', '37.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.6000', '0.0000', '2022-03-24', 'received', '28.3000', '28.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (53272, 443, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-03-24', '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 (53273, 443, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.6400', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8000', '15.0000', '2022-03-24', 'received', '0.6400', '0.6400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (53274, 443, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '5.7100', '7.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2600', '1.0000', '2022-03-24', 'received', '5.7100', '5.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (53275, 443, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '47.9000', '64.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.7000', '0.0000', '2022-03-24', 'received', '47.9000', '47.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '47.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 (53276, 443, NULL, 1559, 'PR-272', 'SIRDALUD 4MG', NULL, '30.7000', '41.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.1000', '2.0000', '2022-03-24', 'received', '30.7000', '30.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.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 (53277, 443, NULL, 1836, 'PR-549', 'SIRDALUD 2MG', NULL, '14.5700', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.7100', '3.0000', '2022-03-24', 'received', '14.5700', '14.5700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (53278, 443, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '8.5000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '2.0000', '2022-03-24', '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 (53279, 443, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '110.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '3.0000', '2022-03-24', '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 (53280, NULL, NULL, 8903, '', '', 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 (53281, NULL, NULL, 9592, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (53282, NULL, NULL, 1431, '', '', 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 (53283, NULL, NULL, 2270, '', '', 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 (53284, NULL, NULL, 8646, '', '', 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 (53408, NULL, NULL, 1304, '', '', 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 (53409, NULL, NULL, 1974, '', '', 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 (53410, NULL, NULL, 8752, '', '', 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 (53411, NULL, NULL, 8038, '', '', 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 (53412, NULL, NULL, 7660, '', '', 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 (53413, 444, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '15.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-03-24', '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 (53414, 444, NULL, 8566, '2486', 'SURE SPRAY', NULL, '16.0000', '18.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '0.0000', '2022-03-24', 'received', '16.0000', '16.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (53415, 444, NULL, 2034, '4800888199188', 'REXONA ROLL ON 50ML', NULL, '7.5000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '5.0000', '2022-03-24', '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 (53416, 444, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '16.0000', '18.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-03-24', '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 (53417, 444, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '7.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-03-24', '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 (53418, 444, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '15.0000', '17.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-03-24', '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 (53419, 444, NULL, 1986, '6181100323658', 'SIVODERM CREAM', NULL, '7.5000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2022-03-24', '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 (53420, 444, NULL, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '9.5000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '1.0000', '2022-03-24', '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 (53421, 444, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.5000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2022-03-24', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53422, 444, NULL, 2231, '7501058633927', 'NAN 2', NULL, '42.0000', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '0.0000', '2022-03-24', 'received', '42.0000', '42.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53423, 444, NULL, 2567, '83596243', 'NAN 1', NULL, '42.0000', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '0.0000', '2022-03-24', 'received', '42.0000', '42.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53424, 444, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '29.0000', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '0.0000', '2022-03-24', '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 (53425, 444, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '29.0000', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '2.0000', '2022-03-24', '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 (53426, 444, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-03-24', '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 (53427, 444, NULL, 7953, '1873', 'SAVLON 250', NULL, '15.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-03-24', '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 (53428, 444, NULL, 8124, '2044', 'SASSO SPRAY', NULL, '19.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-03-24', '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 (53429, 444, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '16.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-03-24', '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 (53430, 444, NULL, 9874, '60401735', 'HEAVEN MOSQUITO SPRAY B/S', NULL, '25.0000', '28.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-03-24', '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 (53431, 444, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-03-24', '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 (53432, 444, NULL, 9875, '27670674', 'OUT SPRAY S/S', NULL, '13.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-24', '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 (53433, 444, NULL, 3024, '02807617', 'COLGATE CHARCOAL PASTE', NULL, '8.5000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '2.0000', '2022-03-24', '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 (53434, 444, NULL, 9532, '43814251', 'KEL CHARCOAL TOOTH PASTE', NULL, '11.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-03-24', '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 (53435, 444, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2022-03-24', '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 (53436, 444, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-03-24', '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 (53437, 444, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-03-24', '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 (53438, 444, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.5000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '6.0000', '2022-03-24', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53439, 444, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-03-24', '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 (53440, 444, NULL, 9531, '33732023', 'KEL 360 TOOTH PASTE', NULL, '8.5000', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '3.0000', '2022-03-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 (53441, 444, NULL, 2648, '61024738', 'COLGATE FOR KIDS', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-03-24', '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 (53442, 444, NULL, 9870, '87405612', 'PRINGLES MEDIUM CUP', NULL, '5.1000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.2000', '0.0000', '2022-03-24', 'received', '5.1000', '5.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (53443, 444, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '1.5600', '3.0000', '72.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.3200', '2.0000', '2022-03-24', 'received', '1.5600', '1.5600', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '1.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 (53444, 444, NULL, 9830, '04822009', 'ADMIRE BISCUITS ', NULL, '1.9000', '3.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '1.0000', '2022-03-24', 'received', '1.9000', '1.9000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (53445, 444, NULL, 8775, '2695', 'VITRAC S/S', NULL, '4.2000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2022-03-24', '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 (53446, 444, NULL, 9832, '55392512', 'BISCOVERY BISCUITS ', NULL, '1.5600', '3.0000', '45.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '4.0000', '2022-03-24', 'received', '1.5600', '1.5600', '45.0000', NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, '1.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 (53447, 444, NULL, 9871, '58458141', 'COKE BIG 1.5L', NULL, '12.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2022-03-24', '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 (53448, 444, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.7000', '4.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '0.0000', '2022-03-24', 'received', '3.7000', '3.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (53449, 444, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2022-03-24', '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 (53450, 444, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-03-24', 'received', '2.0000', '2.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (53451, 444, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.0000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-03-24', '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 (53452, 444, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '6.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-03-24', '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 (53453, 444, NULL, 9871, '58458141', 'COKE BIG 1.5L', NULL, '12.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2022-03-24', '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 (53454, 444, NULL, 9603, '50089033', 'BOTTLE FANTA/COKE 0.25ML SS/S', NULL, '2.3300', '3.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9600', '11.0000', '2022-03-24', '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 (53455, 444, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.8300', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '0.0000', '2022-03-24', 'received', '3.8300', '3.8300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (53456, 444, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '14.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-03-24', '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 (53457, 444, NULL, 8666, '2586', 'BANANA GUM', NULL, '0.4600', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2000', '0.0000', '2022-03-24', 'received', '0.4600', '0.4600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (53458, 444, NULL, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '1.0000', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2022-03-24', 'received', '1.0000', '1.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (53459, 444, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '13.0000', '2022-03-24', 'received', '1.0500', '1.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (53460, 444, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2500', '2.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7500', '9.0000', '2022-03-24', 'received', '1.2500', '1.2500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (53461, 444, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '8.0000', '2022-03-24', 'received', '2.0000', '2.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (53462, NULL, NULL, 1517, '', '', 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 (53463, NULL, NULL, 9302, '', '', 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 (53464, NULL, NULL, 7533, '', '', 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 (53465, NULL, NULL, 8666, '', '', 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 (53466, NULL, NULL, 9776, '', '', 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 (53467, NULL, NULL, 1922, '', '', 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 (53468, NULL, NULL, 1736, '', '', 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 (53469, NULL, NULL, 2530, '', '', 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 (53470, NULL, NULL, 9440, '', '', 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 (53471, NULL, NULL, 1976, '', '', 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 (53472, NULL, NULL, 8215, '', '', 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 (53473, NULL, NULL, 8506, '', '', 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 (53474, NULL, NULL, 7352, '', '', 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 (53475, NULL, NULL, 8979, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-68.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53476, NULL, NULL, 9872, '', '', 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 (53477, NULL, NULL, 9380, '', '', 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 (53478, NULL, NULL, 8145, '', '', 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 (53479, NULL, NULL, 9300, '', '', 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 (53480, NULL, NULL, 8963, '', '', 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 (53481, NULL, NULL, 9761, '', '', 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 (53482, NULL, NULL, 7530, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53483, NULL, NULL, 7944, '', '', 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 (53484, NULL, NULL, 1965, '', '', 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 (53485, NULL, NULL, 8425, '', '', 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 (53486, NULL, NULL, 9810, '', '', 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 (53487, NULL, NULL, 2052, '', '', 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 (53488, NULL, NULL, 1955, '', '', 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 (53489, NULL, NULL, 7587, '', '', 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 (53490, NULL, NULL, 8068, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53491, NULL, NULL, 7772, '', '', 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 (53492, NULL, NULL, 7832, '', '', 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 (53493, NULL, NULL, 1715, '', '', 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 (53494, NULL, NULL, 8366, '', '', 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 (53495, NULL, NULL, 8546, '', '', 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 (53496, NULL, NULL, 9649, '', '', 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 (53497, 446, NULL, 8825, '2745', 'AZILEX SUSP', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-03-29', '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 (53498, 446, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '6.2600', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.6000', '0.0000', '2022-03-29', 'received', '6.2600', '6.2600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53499, 446, NULL, 7521, '1441', 'BELLS TEETHING MIX', NULL, '15.5000', '20.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-03-29', 'received', '15.5000', '15.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (53500, 446, NULL, 7431, '1351', 'CIPROLEX TZ', NULL, '25.0000', '33.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '7.0000', '2022-03-29', '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 (53501, 446, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '47.9000', '64.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8000', '0.0000', '2022-03-29', 'received', '47.9000', '47.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.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 (53502, 446, NULL, 8113, '2033', 'CEBROTONIN', NULL, '2.4500', '3.5000', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.5000', '80.0000', '2022-03-29', 'received', '2.4500', '2.4500', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '2.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 (53503, 446, NULL, 7379, '1299', 'TEETHING MIXTURE ERNEST', NULL, '7.8000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '1.0000', '2022-03-29', '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 (53504, 446, NULL, 7419, '1339', 'DEEP HEAT SPRAY 150ML', NULL, '25.9000', '34.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '1.0000', '2022-03-29', '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 (53505, 446, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '6.7000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2022-03-29', '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 (53506, 446, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3300', '3.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '233.0000', '0.0000', '2022-03-29', 'received', '2.3300', '2.3300', '100.0000', NULL, NULL, 1, 'pc', '100.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 (53507, 446, NULL, 7509, '1429', 'ROOTER', NULL, '6.5000', '10.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.0000', '2022-03-29', '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 (53508, 446, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-03-29', '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 (53509, 446, NULL, 7757, '1677', 'ZINNAT 500', NULL, '100.1600', '132.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.1600', '0.0000', '2022-03-29', 'received', '100.1600', '100.1600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '100.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 (53510, 446, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-03-29', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53511, 446, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '0.0000', '2022-03-29', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (53512, 446, NULL, 7535, '1455', 'SAMAILN ADULT', NULL, '5.1500', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.9000', '4.0000', '2022-03-29', 'received', '5.1500', '5.1500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (53513, 446, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2022-03-29', 'received', '2.0800', '2.0800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (53514, 446, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '117.4000', '155.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.4000', '1.0000', '2022-03-29', 'received', '117.4000', '117.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '117.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 (53515, 446, NULL, 7346, '1266', 'PREGNACARE PLUS', NULL, '91.3000', '120.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.3000', '0.0000', '2022-03-29', 'received', '91.3000', '91.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '91.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 (53516, 446, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '3.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6800', '7.0000', '2022-03-29', 'received', '2.2300', '2.2300', '16.0000', NULL, NULL, 1, 'pc', '16.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 (53517, 446, NULL, 9742, '51812839', 'KOFOF FAMILY SYRUP150ML', NULL, '4.8000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-03-29', '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 (53518, 446, NULL, 7853, '1773', 'BELLS VIT C', NULL, '13.0000', '17.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '3.0000', '2022-03-29', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53519, 446, NULL, 2406, '8901138502829', 'MENTAT', NULL, '22.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2022-03-29', '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 (53520, 446, NULL, 7482, '1402', 'MAXMOX 500', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-03-29', '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 (53521, 446, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-03-29', '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 (53522, 446, NULL, 7373, '1293', 'CATAFLAM 50MG', NULL, '17.0000', '22.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '7.0000', '2022-03-29', '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 (53523, 446, NULL, 7691, '1611', 'IMODIUM', NULL, '13.6000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '1.0000', '2022-03-29', '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 (53524, 446, NULL, 7425, '1345', 'CORORANGE SRP', NULL, '9.5000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '4.0000', '2022-03-29', '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 (53525, 446, NULL, 9807, '46079779', 'EXTRAFLEX CAP', NULL, '36.8000', '49.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.6000', '1.0000', '2022-03-29', 'received', '36.8000', '36.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (53526, 446, NULL, 7708, '1628', 'TEEDAR', NULL, '7.1000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '0.0000', '2022-03-29', 'received', '7.1000', '7.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53527, 446, NULL, 9655, '10425130', 'DALIHA SLIM TEA', NULL, '38.0000', '50.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.0000', '2.0000', '2022-03-29', 'received', '38.0000', '38.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53528, 446, NULL, 9656, '03335724', 'DALIHA  TURKEYBERRY TURMERIC TEA', NULL, '33.0000', '44.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '1.0000', '2022-03-29', '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 (53529, 446, NULL, 9657, '12923665', 'DALIHA TURKEY BERRY CINNAMON TEA', NULL, '37.0000', '49.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.0000', '2.0000', '2022-03-29', 'received', '37.0000', '37.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (53530, 446, NULL, 9393, '3313', 'CLOVES', NULL, '3.0000', '5.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-03-29', 'received', '3.0000', '3.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (53531, 446, NULL, 9394, '3314', 'CHIA SEED', NULL, '9.5000', '13.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-03-29', '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 (53532, 446, NULL, 9391, '3311', 'HERBAL TEA', NULL, '14.5000', '18.0000', '21.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '304.5000', '9.0000', '2022-03-29', 'received', '14.5000', '14.5000', '21.0000', NULL, NULL, 1, 'pc', '21.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 (53533, 446, NULL, 9397, '3317', 'GOLDEN RAISON', NULL, '15.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-03-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 (53534, 446, NULL, 9877, '49909876', 'DALIHA TURKEY BERRY MINT', NULL, '33.0000', '44.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-03-29', '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 (53535, 446, NULL, 9876, '80439405', 'HAEM UP SYR 200ML', NULL, '11.8000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '2.0000', '2022-03-29', 'received', '11.8000', '11.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (53536, 446, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '110.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2022-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 (53537, 446, NULL, 1460, 'PR-173', 'ZOFLORA 120ML', NULL, '15.0000', '19.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-03-29', 'received', '15.0000', '15.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (53538, 446, NULL, 8168, '2088', 'ZINCOFER CAPS', NULL, '13.0000', '18.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-03-29', 'received', '13.0000', '13.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (53539, 446, NULL, 8098, '2018', 'PROMAN', NULL, '15.9900', '21.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-03-29', 'received', '15.9900', '15.9900', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '15.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 (53540, NULL, NULL, 7416, '', '', 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 (53541, NULL, NULL, 8098, '', '', 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 (53542, NULL, NULL, 9655, '', '', 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 (53543, NULL, NULL, 7533, '', '', 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 (53544, NULL, NULL, 9689, '', '', 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 (53545, NULL, NULL, 9755, '', '', 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 (53546, NULL, NULL, 9841, '', '', 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 (53547, NULL, NULL, 7784, '', '', 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 (53548, NULL, NULL, 2921, '', '', 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 (53549, NULL, NULL, 2533, '', '', 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 (53550, NULL, NULL, 1957, '', '', 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 (53551, NULL, NULL, 7429, '', '', 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 (53552, NULL, NULL, 8350, '', '', 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 (53553, NULL, NULL, 7522, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53554, NULL, NULL, 8510, '', '', 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 (53572, NULL, NULL, 2593, '', '', 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 (53573, NULL, NULL, 8204, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (53574, NULL, NULL, 7801, '', '', 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 (53606, NULL, NULL, 8504, '', '', 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 (53607, NULL, NULL, 7833, '', '', 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 (53608, NULL, NULL, 8786, '', '', 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 (53609, NULL, NULL, 7360, '', '', 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 (53610, 447, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.5000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-04-05', '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 (53611, 447, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.5800', '5.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9600', '8.0000', '2022-04-05', 'received', '3.5800', '3.5800', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (53612, 447, NULL, 9396, '3316', 'BULLET ENERGY DRINK', NULL, '7.0800', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4800', '4.0000', '2022-04-05', '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 (53613, 447, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.0000', '2022-04-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 (53614, 447, NULL, 8124, '2044', 'SASSO SPRAY', NULL, '19.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-04-05', '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 (53615, 447, NULL, 8831, '2751', 'CUSSON,S OIL B/S', NULL, '9.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-04-05', '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 (53616, 447, NULL, 3076, '57849888', 'CUSSIONS BABY OIL S/S', NULL, '5.5000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '3.0000', '2022-04-05', '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 (53617, 447, NULL, 7363, '1283', 'CAMEL 125ML', NULL, '9.0000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2022-04-05', '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 (53618, 447, NULL, 7362, '1282', 'CAMEL 250ML', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-04-05', '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 (53619, 447, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '5.5000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-04-05', '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 (53620, 447, NULL, 7953, '1873', 'SAVLON 250', NULL, '14.5000', '19.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-04-05', '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 (53621, 447, NULL, 8233, '2153', 'SIVODERM POWD', NULL, '6.0000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-04-05', '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 (53622, 447, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '6.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-04-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 (53623, 447, NULL, 8234, '2154', 'JRA M/S', NULL, '12.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-04-05', '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 (53624, 447, NULL, 8566, '2486', 'SURE SPRAY', NULL, '16.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2022-04-05', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53625, 447, NULL, 7360, '1280', 'BORGES250ML', NULL, '25.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2022-04-05', '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 (53626, 447, NULL, 2962, '17785722', 'MOSQUITO REPELLENT', NULL, '4.5000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2022-04-05', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53627, 447, NULL, 8889, '2809', 'NAN 1@2', NULL, '39.0000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '3.0000', '2022-04-05', '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 (53628, 447, NULL, 8083, '2003', 'LACTOGEN 1@2', NULL, '30.0000', '33.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '3.0000', '2022-04-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 (53629, 447, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '17.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '1.0000', '2022-04-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 (53630, 447, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '17.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2022-04-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 (53631, NULL, NULL, 2385, '', '', 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 (53632, 449, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-04-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 (53633, 449, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '2.0000', '2022-04-05', 'received', '15.0000', '15.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (53634, 449, NULL, 2231, '7501058633927', 'NAN 2', NULL, '39.0000', '46.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-04-05', '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 (53635, 449, NULL, 2567, '83596243', 'NAN 1', NULL, '39.0000', '46.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '2.0000', '2022-04-05', '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 (53636, 449, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '30.0000', '33.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-04-05', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (53637, 449, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '17.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '1.0000', '2022-04-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 (53638, 449, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '17.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-04-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 (53639, 449, NULL, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-04-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 (53640, 449, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-04-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 (53641, 449, NULL, 9491, '49125747', 'CERELAC MILLET', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '1.0000', '2022-04-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 (53642, 449, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.0000', '7.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '15.0000', '2022-04-05', 'received', '5.0000', '5.0000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (53643, 449, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-04-05', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (53644, 449, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.9800', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-04-05', '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 (53645, 449, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '21.0000', '28.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '6.0000', '2022-04-05', 'received', '21.0000', '21.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53646, 449, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '27.5000', '36.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '4.0000', '2022-04-05', 'received', '27.5000', '27.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53647, 449, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-04-05', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53648, 449, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.2300', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.3800', '2.0000', '2022-04-05', 'received', '7.2300', '7.2300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53649, 449, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.8000', '22.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2022-04-05', 'received', '16.8000', '16.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (53650, 449, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '34.5000', '46.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.0000', '3.0000', '2022-04-05', 'received', '34.5000', '34.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (53651, 449, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '19.5000', '26.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '0.0000', '2022-04-05', '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 (53652, 449, NULL, 7897, '1817', 'DIAGELATE MED', NULL, '19.5000', '26.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-05', 'received', '19.5000', '19.5000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (53653, 449, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.1000', '0.0000', '2022-04-05', 'received', '14.7000', '14.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53654, 449, NULL, 7688, '1608', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-05', 'received', '14.7000', '14.7000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (53655, 449, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '5.8000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2022-04-05', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53656, 449, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-04-05', 'received', '11.5000', '11.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53657, 449, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2022-04-05', '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 (53658, 449, NULL, 7922, '1842', 'BABY COU LINC', NULL, '4.2000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '5.0000', '2022-04-05', '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 (53659, 449, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '14.0000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-04-05', '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 (53660, 449, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.7000', '5.0000', '2022-04-05', 'received', '4.2700', '4.2700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (53661, 449, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '5.0000', '2022-04-05', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53662, 449, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-04-05', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53663, 449, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.3000', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2022-04-05', 'received', '9.3000', '9.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53664, 449, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.7000', '14.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '0.0000', '2022-04-05', '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 (53665, 449, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.9000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '6.0000', '2022-04-05', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (53666, 449, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '5.8400', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2022-04-05', 'received', '5.8400', '5.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (53667, 449, NULL, 8149, '2069', 'DITHRANOL', NULL, '5.7000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-04-05', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (53668, 449, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.5000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-04-05', '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 (53669, 449, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.6300', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.7800', '4.0000', '2022-04-05', 'received', '12.6300', '12.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.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 (53670, 449, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '7.1000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '0.0000', '2022-04-05', 'received', '7.1000', '7.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53671, 449, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '5.0000', '2022-04-05', '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 (53672, 449, NULL, 9330, '3250', 'APETATRUST', NULL, '8.6000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '2.0000', '2022-04-05', 'received', '8.6000', '8.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53673, 449, NULL, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', NULL, '27.9800', '37.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.9600', '2.0000', '2022-04-05', 'received', '27.9800', '27.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (53674, 449, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '1.8400', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '10.0000', '2022-04-05', 'received', '1.8400', '1.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (53675, 449, NULL, 8622, '2542', 'DEXONE', NULL, '1.4900', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '0.0000', '2022-04-05', 'received', '1.4900', '1.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (53676, 449, NULL, 9847, '00996864', 'GERICARE CAPS', NULL, '12.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-04-05', '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 (53677, 449, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '1.8900', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-04-05', 'received', '1.8900', '1.8900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (53678, 449, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7000', '0.0000', '2022-04-05', 'received', '6.9400', '6.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (53679, 449, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-04-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 (53680, 449, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0200', '27.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.1200', '0.0000', '2022-04-05', 'received', '20.0200', '20.0200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.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 (53681, 449, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-04-05', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53682, 449, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3300', '3.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.8000', '0.0000', '2022-04-05', 'received', '2.3300', '2.3300', '60.0000', NULL, NULL, 1, 'pc', '60.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 (53683, 449, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '1.8000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2022-04-05', 'received', '1.8000', '1.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53684, 449, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '14.6300', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8900', '0.0000', '2022-04-05', 'received', '14.6300', '14.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (53685, 449, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '2.5000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-04-05', '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 (53686, 450, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1000', '1.0000', '2022-04-05', 'received', '5.7000', '5.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (53687, 450, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '14.6300', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.6300', '1.0000', '2022-04-05', 'received', '14.6300', '14.6300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.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 (53688, 450, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '38.5100', '51.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0200', '1.0000', '2022-04-05', 'received', '38.5100', '38.5100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.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 (53689, 450, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '13.6900', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3800', '0.0000', '2022-04-05', 'received', '13.6900', '13.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.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 (53690, 450, NULL, 1613, 'PR-326', 'GYPRON SYR', NULL, '9.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-04-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 (53691, 450, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '4.0000', '2022-04-05', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53692, 450, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.6600', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9800', '0.0000', '2022-04-05', 'received', '4.6600', '4.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (53693, 450, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.4000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2000', '3.0000', '2022-04-05', 'received', '5.4000', '5.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53694, 450, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '3.0000', '2022-04-05', '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 (53695, 450, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '9.0000', '2022-04-05', '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 (53696, 450, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '5.0500', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.1500', '1.0000', '2022-04-05', 'received', '5.0500', '5.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (53697, 450, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '15.7300', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4600', '2.0000', '2022-04-05', 'received', '15.7300', '15.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (53698, 450, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.5800', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7400', '3.0000', '2022-04-05', 'received', '6.5800', '6.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (53699, 450, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '31.0000', '41.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '2.0000', '2022-04-05', 'received', '31.0000', '31.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53700, 450, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '16.8000', '22.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '2.0000', '2022-04-05', 'received', '16.8000', '16.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (53701, 450, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '25.9000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '0.0000', '2022-04-05', '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 (53702, 450, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7000', '2.0000', '2022-04-05', 'received', '7.8500', '7.8500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (53703, 450, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '9.8000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '5.0000', '2022-04-05', 'received', '9.8000', '9.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53704, 450, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '11.8800', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '0.0000', '2022-04-05', 'received', '11.8800', '11.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (53705, 450, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '16.9600', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8000', '4.0000', '2022-04-05', 'received', '16.9600', '16.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (53706, 450, NULL, 7459, '1379', 'TOTHEMA', NULL, '2.3300', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.2000', '0.0000', '2022-04-05', 'received', '2.3300', '2.3300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (53707, 450, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-04-05', '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 (53708, 450, NULL, 9840, '00885109', 'LEXOCAP', NULL, '1.5000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-04-05', '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 (53709, 450, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '4.2400', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7200', '2.0000', '2022-04-05', 'received', '4.2400', '4.2400', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53710, 450, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-04-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 (53711, 450, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-04-05', '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 (53744, NULL, NULL, 8190, '', '', 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 (53745, NULL, NULL, 9814, '', '', 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 (53746, NULL, NULL, 9868, '', '', 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 (53747, NULL, NULL, 7785, '', '', 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 (53748, NULL, NULL, 8931, '', '', 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 (53749, NULL, NULL, 9836, '', '', 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 (53750, NULL, NULL, 8673, '', '', 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 (53751, NULL, NULL, 9508, '', '', 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 (53752, NULL, NULL, 7381, '', '', 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 (53753, NULL, NULL, 8615, '', '', 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 (53754, NULL, NULL, 1743, '', '', 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 (53755, NULL, NULL, 9240, '', '', 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 (53756, NULL, NULL, 2839, '', '', 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 (53757, NULL, NULL, 7847, '', '', 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 (53758, NULL, NULL, 8813, '', '', 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 (53759, 448, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '4.0000', '2022-04-05', '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 (53760, 448, NULL, 9098, '3018', 'JOY VIKIL', NULL, '26.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-04-05', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53761, 448, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '13.0000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-04-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 (53762, 448, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '14.0000', '18.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-04-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 (53763, 448, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.0000', '2022-04-05', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53764, 448, NULL, 2868, '34068126', 'ATENOLOL 100MG  TEVA', NULL, '7.8000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-04-05', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53765, 448, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '28.7100', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.1300', '3.0000', '2022-04-05', 'received', '28.7100', '28.7100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (53766, 448, NULL, 8879, '2799', 'INFA V OINT', NULL, '20.9000', '28.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.5000', '2.0000', '2022-04-05', 'received', '20.9000', '20.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (53767, 448, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '22.9000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '0.0000', '2022-04-05', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (53768, 448, NULL, 7608, '1528', 'AUNTY MARY', NULL, '9.4700', '12.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.2900', '0.0000', '2022-04-05', 'received', '9.4700', '9.4700', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '9.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 (53769, 448, NULL, 8067, '1987', 'HYDROGEN ECL', NULL, '4.6900', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4500', '1.0000', '2022-04-05', '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 (53770, 448, NULL, 9449, '31700114', 'ASPANOL PRODUCTIVE COUGH', NULL, '6.5500', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7500', '3.0000', '2022-04-05', 'received', '6.5500', '6.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (53771, 448, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '10.0700', '13.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '181.2600', '16.0000', '2022-04-05', 'received', '10.0700', '10.0700', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '10.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 (53772, 448, NULL, 7636, '1556', 'DIABETMINE', NULL, '2.5000', '3.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '20.0000', '2022-04-05', '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 (53773, 448, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '8.9100', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4600', '2.0000', '2022-04-05', 'received', '8.9100', '8.9100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (53774, 448, NULL, 7554, '1474', 'NAKLOFEN DUO', NULL, '2.1000', '3.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '31.0000', '2022-04-05', 'received', '2.1000', '2.1000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (53775, 448, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '8.9000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '2.0000', '2022-04-05', 'received', '8.9000', '8.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (53776, 448, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-04-05', '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 (53777, 448, NULL, 8163, '2083', 'OTRIVIN ADULT', NULL, '18.5000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '1.0000', '2022-04-05', '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 (53778, 448, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '26.9800', '36.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.9400', '0.0000', '2022-04-05', 'received', '26.9800', '26.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (53779, 448, NULL, 8406, '2326', 'LIQUID PARRAFIN', NULL, '9.0000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-04-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 (53780, 448, NULL, 7442, '1362', 'CASTOR OIL', NULL, '11.8000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '3.0000', '2022-04-05', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53781, 448, NULL, 7346, '1266', 'PREGNACARE PLUS', NULL, '112.0000', '148.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '224.0000', '0.0000', '2022-04-05', 'received', '112.0000', '112.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '112.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53782, 448, NULL, 8161, '2081', 'PROWOMAN', NULL, '19.5000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-04-05', '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 (53783, 448, NULL, 8009, '1929', 'CYCLOGEST 200', NULL, '7.6700', '10.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.1000', '30.0000', '2022-04-05', 'received', '7.6700', '7.6700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '7.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 (53784, 448, NULL, 7456, '1376', 'VENTOLIN INHALER', NULL, '34.7000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.4000', '0.0000', '2022-04-05', 'received', '34.7000', '34.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.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 (53785, 448, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '21.5000', '26.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '258.0000', '0.0000', '2022-04-05', 'received', '21.5000', '21.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (53786, 448, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '4.0000', '2022-04-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 (53787, 448, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '14.4000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2022-04-05', 'received', '14.4000', '14.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53788, 448, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '4.0000', '2022-04-05', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53789, 448, NULL, 8331, '2251', 'CONFIDO', NULL, '30.0000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '1.0000', '2022-04-05', '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 (53790, 448, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '120.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2022-04-05', '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 (53791, 448, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '57.7600', '77.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-05', 'received', '57.7600', '57.7600', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '57.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 (53792, NULL, NULL, 7904, '', '', 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 (53793, NULL, NULL, 2035, '', '', 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 (53794, NULL, NULL, 9690, '', '', 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 (53795, NULL, NULL, 7394, '', '', 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 (53796, NULL, NULL, 7794, '', '', 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 (53797, NULL, NULL, 9363, '', '', 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 (53798, NULL, NULL, 8902, '', '', 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 (53799, NULL, NULL, 7367, '', '', 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 (53800, NULL, NULL, 8210, '', '', 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 (53801, NULL, NULL, 7803, '', '', 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 (53802, NULL, NULL, 9534, '', '', 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 (53803, NULL, NULL, 7942, '', '', 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 (53804, NULL, NULL, 8020, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53805, NULL, NULL, 1769, '', '', 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 (53806, NULL, NULL, 8106, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53807, NULL, NULL, 8472, '', '', 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 (53808, NULL, NULL, 7356, '', '', 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 (53809, NULL, NULL, 7634, '', '', 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 (53855, NULL, NULL, 7938, '', '', 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 (53856, NULL, NULL, 7630, '', '', 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 (53857, NULL, NULL, 8686, '', '', 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 (53858, NULL, NULL, 7636, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-55.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53859, NULL, NULL, 8496, '', '', 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 (53860, NULL, NULL, 9580, '', '', 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 (53861, NULL, NULL, 7554, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-75.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53862, NULL, NULL, 8297, '', '', 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 (53863, NULL, NULL, 7713, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53864, 452, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '13.6000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '2.0000', '2022-04-11', 'received', '13.6000', '13.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53865, 452, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '6.0000', '2022-04-11', '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 (53866, 452, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3500', '5.0000', '2022-04-11', 'received', '9.4700', '9.4700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (53867, 452, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '49.5000', '77.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '1.0000', '2022-04-11', 'received', '49.5000', '49.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53868, 452, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '2.0000', '2022-04-11', '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 (53869, 452, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '7.8000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '4.0000', '2022-04-11', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53870, 452, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '9.8000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '3.0000', '2022-04-11', '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 (53871, 452, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8000', '0.0000', '2022-04-11', '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 (53872, 452, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.0000', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '40.0000', '2022-04-11', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (53873, 452, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '23.0000', '2022-04-11', '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 (53874, 452, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-04-11', '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 (53875, 452, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0500', '4.0000', '2022-04-11', 'received', '14.2100', '14.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (53876, 452, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.3000', '12.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '3.0000', '2022-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 (53877, 452, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.7000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.1000', '3.0000', '2022-04-11', 'received', '10.7000', '10.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53878, 452, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.7200', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6000', '1.0000', '2022-04-11', 'received', '7.7200', '7.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (53879, 452, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '7.0000', '2022-04-11', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (53880, 452, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '36.4900', '48.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.9800', '2.0000', '2022-04-11', 'received', '36.4900', '36.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.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 (53881, 452, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '2.0000', '2022-04-11', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (53882, 452, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '1.0000', '2022-04-11', '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 (53883, 452, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2022-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 (53884, 452, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '6.6000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-04-11', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53885, 452, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-04-11', '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 (53886, 452, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.4000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2022-04-11', '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 (53887, 452, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '1.5700', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '19.0000', '2022-04-11', 'received', '1.5700', '1.5700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (53888, 452, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '21.5000', '26.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '258.0000', '5.0000', '2022-04-11', 'received', '21.5000', '21.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (53889, 452, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.1000', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '40.0000', '2022-04-11', 'received', '2.1000', '2.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (53890, 452, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '3.0000', '2022-04-11', '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 (53891, 452, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '19.5000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '3.0000', '2022-04-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 (53892, 452, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '6.9000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '3.0000', '2022-04-11', '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 (53893, 452, NULL, 8969, '2889', 'REDSUN', NULL, '6.0500', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2500', '3.0000', '2022-04-11', '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 (53894, 452, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '22.0000', '2022-04-11', '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 (53895, 452, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '3.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6800', '8.0000', '2022-04-11', 'received', '2.2300', '2.2300', '16.0000', NULL, NULL, 1, 'pc', '16.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 (53896, 452, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-04-11', '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 (53897, 452, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '112.0000', '148.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '1.0000', '2022-04-11', 'received', '112.0000', '112.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '112.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53898, 451, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.5000', '6.0000', '2022-04-10', 'received', '9.3500', '9.3500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (53899, 451, NULL, 7857, '1777', 'NUGEL', NULL, '16.1000', '21.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.6000', '0.0000', '2022-04-10', '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 (53900, 451, NULL, 7736, '1656', 'NUGEL -O', NULL, '16.7000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.2000', '0.0000', '2022-04-10', '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 (53901, 451, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '6.8200', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.1000', '2.0000', '2022-04-10', 'received', '6.8200', '6.8200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (53902, 451, NULL, 9817, '44012910', 'NESBEN SUSP', NULL, '3.9000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-04-10', 'received', '3.9000', '3.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53903, 451, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '8.8000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-04-10', '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 (53904, 451, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '7.7000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-04-10', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53905, 451, NULL, 8304, '2224', 'POLYFER 200ML', NULL, '8.5000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '4.0000', '2022-04-10', '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 (53906, 451, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '22.1000', '29.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.5000', '0.0000', '2022-04-10', 'received', '22.1000', '22.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53907, 451, NULL, 8203, '2123', 'INDOCID', NULL, '0.5000', '0.7000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '14.0000', '2022-04-10', 'received', '0.5000', '0.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (53908, 451, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '20.0000', '2022-04-10', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (53909, 451, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.5600', '0.8000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '27.0000', '2022-04-10', 'received', '0.5600', '0.5600', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.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 (53910, 451, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.9000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-04-10', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53911, 451, NULL, 7367, '1287', 'ATORVASTATIN20MG', NULL, '9.8000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '2.0000', '2022-04-10', '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 (53912, 451, NULL, 7366, '1286', 'ATORVASTATIN10MG', NULL, '7.0000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '3.0000', '2022-04-10', '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 (53913, 451, NULL, 7885, '1805', 'DIFLUCAN', NULL, '81.2000', '107.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.4000', '0.0000', '2022-04-10', 'received', '81.2000', '81.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '81.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 (53914, 451, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '19.5000', '26.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.5000', '0.0000', '2022-04-10', 'received', '19.5000', '19.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (53915, 451, NULL, 7859, '1779', 'KOFLET', NULL, '12.6300', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.1500', '1.0000', '2022-04-10', 'received', '12.6300', '12.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (53916, 451, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '17.0000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '4.0000', '2022-04-10', '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 (53917, 451, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-04-10', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (53918, 451, NULL, 7335, '1255', 'NEO HYCOLEX5ML', NULL, '14.5000', '19.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2022-04-10', '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 (53919, 451, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '7.0000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '8.0000', '2022-04-10', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53920, 451, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '39.3000', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.6000', '1.0000', '2022-04-10', 'received', '39.3000', '39.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.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 (53921, 451, NULL, 7640, '1560', 'LENOR', NULL, '4.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2022-04-10', '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 (53922, 451, NULL, 7794, '1714', 'LISINOPRIL 10', NULL, '9.9000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '7.0000', '2022-04-10', 'received', '9.9000', '9.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53923, 451, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8900', '1.0000', '2022-04-10', 'received', '3.6300', '3.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (53924, 451, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-04-10', '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 (53925, 451, NULL, 8965, '2885', 'METHYLATED SP B/S', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-04-10', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53926, 451, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.1900', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9500', '0.0000', '2022-04-10', 'received', '3.1900', '3.1900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (53927, 451, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-04-10', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53928, 451, NULL, 8924, '2844', 'MYCOVIN 500', NULL, '5.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '5.0000', '2022-04-10', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (53929, 451, NULL, 3056, '13783530', 'WELLMAN 50+ CAPS', NULL, '51.5500', '68.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.1000', '2.0000', '2022-04-10', 'received', '51.5500', '51.5500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.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 (53930, 451, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '57.7600', '77.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5200', '2.0000', '2022-04-10', 'received', '57.7600', '57.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.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 (53931, 451, NULL, 9250, '3170', 'SALAMOL CFC INHALER', NULL, '20.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-04-10', 'received', '20.5000', '20.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (53932, 451, NULL, 7570, '1490', 'NAPROX ECL', NULL, '7.8000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '4.0000', '2022-04-10', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53933, 451, NULL, 8098, '2018', 'PROMAN', NULL, '15.9900', '21.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.9600', '4.0000', '2022-04-10', 'received', '15.9900', '15.9900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (53934, 451, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '7.7200', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.4000', '0.0000', '2022-04-10', 'received', '7.7200', '7.7200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (53935, 451, NULL, 7623, '1543', 'NIGHT NURSE CAPS', NULL, '47.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '2.0000', '2022-04-10', 'received', '47.0000', '47.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53936, 451, NULL, 8845, '2765', 'CALAMINE LOTION LOCAL', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-04-10', '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 (53937, 451, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '67.9000', '90.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.8000', '1.0000', '2022-04-10', 'received', '67.9000', '67.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '67.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 (53938, 451, NULL, 8968, '2888', 'S/SEAS C.L.O CAPS', NULL, '50.7000', '67.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '2.0000', '2022-04-10', 'received', '50.7000', '50.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.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 (53939, 451, NULL, 7375, '1295', 'AXACEF 500', NULL, '5.3000', '7.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '265.0000', '32.0000', '2022-04-10', 'received', '5.3000', '5.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (53940, 451, NULL, 7592, '1512', 'HAEMOGLOBIN M/G', NULL, '6.8000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '3.0000', '2022-04-10', '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 (53941, 451, NULL, 7963, '1883', 'HEPTO PEP', NULL, '10.6000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.6000', '0.0000', '2022-04-10', 'received', '10.6000', '10.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53942, 451, NULL, 7630, '1550', 'DUCOLAX SUPP', NULL, '3.3100', '4.5000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.1600', '5.0000', '2022-04-10', 'received', '3.3100', '3.3100', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '3.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 (53943, 453, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '36.4600', '48.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '218.7600', '0.0000', '2022-04-11', 'received', '36.4600', '36.4600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '36.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 (53944, 453, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.6500', '2.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2022-04-11', 'received', '1.6500', '1.6500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53945, 453, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '2.6000', '4.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-04-11', '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 (53946, 453, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '5.0000', '2022-04-11', '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 (53947, 453, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '16.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-04-11', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (53948, 453, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.7800', '0.0000', '2022-04-11', 'received', '6.1300', '6.1300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53949, 453, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '9.9000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2022-04-11', '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 (53950, 453, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.1000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.6000', '0.0000', '2022-04-11', '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 (53951, 453, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2022-04-11', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (53952, 453, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-04-11', '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 (53953, 453, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '80.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2022-04-11', 'received', '3.0000', '3.0000', '80.0000', NULL, NULL, 1, 'pc', '80.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 (53954, 453, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-04-11', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (53955, 453, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-04-11', '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 (53956, 453, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-04-11', '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 (53957, NULL, NULL, 9576, '', '', 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 (53958, NULL, NULL, 8362, '', '', 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 (53959, NULL, NULL, 9529, '', '', 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 (53960, NULL, NULL, 8086, '', '', 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 (53961, NULL, NULL, 8448, '', '', 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 (53962, NULL, NULL, 9801, '', '', 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 (53963, NULL, NULL, 9618, '', '', 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 (53964, NULL, NULL, 8457, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (53965, NULL, NULL, 9001, '', '', 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 (53966, NULL, NULL, 7834, '', '', 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 (53967, NULL, NULL, 8831, '', '', 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 (53968, NULL, NULL, 2283, '', '', 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 (53969, NULL, NULL, 7697, '', '', 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 (53970, NULL, NULL, 9838, '', '', 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 (54009, NULL, NULL, 7687, '', '', 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 (54010, NULL, NULL, 8062, '', '', 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 (54011, NULL, NULL, 8023, '', '', 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 (54012, NULL, NULL, 7862, '', '', 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 (54013, NULL, NULL, 9852, '', '', 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 (54014, NULL, NULL, 8712, '', '', 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 (54015, NULL, NULL, 9590, '', '', 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 (54016, NULL, NULL, 8035, '', '', 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 (54017, NULL, NULL, 7693, '', '', 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 (54018, NULL, NULL, 7415, '', '', 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 (54019, NULL, NULL, 3056, '', '', 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 (54020, NULL, NULL, 7322, '', '', 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 (54021, NULL, NULL, 9511, '', '', 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 (54022, NULL, NULL, 9264, '', '', 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 (54023, NULL, NULL, 2213, '', '', 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 (54024, NULL, NULL, 9574, '', '', 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 (54025, NULL, NULL, 7590, '', '', 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 (54026, NULL, NULL, 8363, '', '', 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 (54027, NULL, NULL, 8723, '', '', 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 (54028, NULL, NULL, 9472, '', '', 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 (54029, NULL, NULL, 9810, '', '', 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 (54030, NULL, NULL, 8446, '', '', 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 (54031, NULL, NULL, 8919, '', '', 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 (54032, NULL, NULL, 8900, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54033, NULL, NULL, 7495, '', '', 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 (54034, NULL, NULL, 1718, '', '', 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 (54035, NULL, NULL, 8980, '', '', 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 (54036, NULL, NULL, 9732, '', '', 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 (54037, NULL, NULL, 8300, '', '', 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 (54038, NULL, NULL, 8045, '', '', 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 (54058, NULL, NULL, 1301, '', '', 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 (54059, NULL, NULL, 2081, '', '', 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 (54060, NULL, NULL, 7335, '', '', 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 (54061, NULL, NULL, 8345, '', '', 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 (54062, NULL, NULL, 7654, '', '', 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 (54063, NULL, NULL, 9087, '', '', 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 (54064, NULL, NULL, 9598, '', '', 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 (54065, NULL, NULL, 9870, '', '', 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 (54066, NULL, NULL, 2671, '', '', 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 (54067, 455, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '41.0000', '2022-04-17', 'received', '1.0500', '1.0500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (54068, 455, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2500', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '25.0000', '2022-04-17', 'received', '1.2500', '1.2500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (54069, 455, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '1.0000', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '29.0000', '2022-04-17', 'received', '1.0000', '1.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54070, 455, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-04-17', 'received', '2.0000', '2.0000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (54071, 455, NULL, 9882, '37637740', 'T.ROLL PACK (PRIDE)', NULL, '14.3500', '18.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.4500', '5.0000', '2022-04-17', 'received', '14.3500', '14.3500', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '14.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 (54072, 455, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '1.8000', '3.0000', '72.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.6000', '50.0000', '2022-04-17', 'received', '1.8000', '1.8000', '72.0000', NULL, NULL, 1, 'pc', '72.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 (54073, 455, NULL, 9830, '04822009', 'ADMIRE BISCUITS ', NULL, '1.9000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '20.0000', '2022-04-17', '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 (54074, 455, NULL, 9832, '55392512', 'BISCOVERY BISCUITS ', NULL, '1.5600', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '15.0000', '2022-04-17', 'received', '1.5600', '1.5600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (54075, 455, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.0000', '7.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '12.0000', '2022-04-17', 'received', '5.0000', '5.0000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (54076, 455, NULL, 9871, '58458141', 'COKE BIG 1.5L', NULL, '12.0000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-04-17', '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 (54077, 455, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '1.8000', '3.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '36.0000', '2022-04-17', 'received', '1.8000', '1.8000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (54078, NULL, NULL, 8826, '', '', 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 (54079, NULL, NULL, 7379, '', '', 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 (54080, NULL, NULL, 8940, '', '', 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 (54081, NULL, NULL, 2147, '', '', 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 (54082, 456, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '7.0000', '2022-04-20', '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 (54083, 456, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-04-20', '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 (54084, 456, NULL, 8067, '1987', 'HYDROGEN ECL', NULL, '4.6900', '7.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0700', '1.0000', '2022-04-20', '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 (54085, 456, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '20.0000', '26.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2022-04-20', '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 (54086, 456, NULL, 8430, '2350', 'ALKA SRP', NULL, '35.0000', '46.6000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '3.0000', '2022-04-20', '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 (54087, 456, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '57.7600', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.7600', '1.0000', '2022-04-20', 'received', '57.7600', '57.7600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '57.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 (54088, 456, NULL, 3056, '13783530', 'WELLMAN 50+ CAPS', NULL, '51.5500', '68.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.5500', '1.0000', '2022-04-20', 'received', '51.5500', '51.5500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '51.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 (54089, 456, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '2.4500', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-04-20', 'received', '2.4500', '2.4500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (54090, 456, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '4.0000', '2022-04-20', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (54091, 456, NULL, 7877, '1797', 'POLYFER CAPS', NULL, '5.4000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-04-20', '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 (54092, 456, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '5.0000', '2022-04-20', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54093, 456, NULL, 8547, '2467', 'ODDYMIN CAPS', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '7.0000', '2022-04-20', '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 (54094, 456, NULL, 8360, '2280', 'LEENA CAPS', NULL, '3.2300', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.3000', '6.0000', '2022-04-20', 'received', '3.2300', '3.2300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (54095, 456, NULL, 7516, '1436', 'BECOATIN TAB', NULL, '10.0000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '4.0000', '2022-04-20', '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 (54096, 456, NULL, 8333, '2253', 'GUDAPET CAPS', NULL, '6.6000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-04-20', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54097, 456, NULL, 8712, '2632', 'GUDAPET SRP', NULL, '7.1000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-04-20', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54098, 456, NULL, 7862, '1782', 'GLUCOSE', NULL, '4.3000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '0.0000', '2022-04-20', '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 (54099, 456, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.9000', '7.0000', '2022-04-20', 'received', '11.7000', '11.7000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (54100, 456, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4000', '1.0000', '2022-04-20', 'received', '10.6000', '10.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (54101, 456, NULL, 7859, '1779', 'KOFLET', NULL, '12.6300', '17.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.5200', '0.0000', '2022-04-20', 'received', '12.6300', '12.6300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '12.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 (54102, 456, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '1.0000', '2022-04-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 (54103, 456, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-04-20', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54104, 456, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '6.2000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '4.0000', '2022-04-20', 'received', '6.2000', '6.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54105, 456, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '7.0000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '7.0000', '2022-04-20', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54106, 456, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '6.5000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '9.0000', '2022-04-20', '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 (54107, 456, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '0.0000', '2022-04-20', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (54108, 456, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.6000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-04-20', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54109, 456, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.6000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '4.0000', '2022-04-20', '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 (54110, 456, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '8.8000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '3.0000', '2022-04-20', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54111, 456, NULL, 7660, '1580', 'DREZ OINT 30MG', NULL, '13.3600', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0800', '0.0000', '2022-04-20', 'received', '13.3600', '13.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (54112, 456, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '0.0000', '2022-04-20', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (54113, 456, NULL, 7588, '1508', 'FUNBACT', NULL, '7.0000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-04-20', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54114, 456, NULL, 8145, '2065', 'CALAMINE OINT', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2022-04-20', '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 (54115, 456, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-04-20', '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 (54116, 456, NULL, 8753, '2673', 'GANA BALM', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2022-04-20', '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 (54117, 456, NULL, 9890, '10211509', 'SEVEN SEAS JOINTCARE ACTIVE', NULL, '109.9000', '145.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '219.8000', '1.0000', '2022-04-20', 'received', '109.9000', '109.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '109.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 (54118, 456, NULL, 7816, '1736', 'SIBIWOMAN', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-04-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 (54119, 456, NULL, 7909, '1829', 'SIBIMAN', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-04-20', '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 (54120, 456, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-04-20', '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 (54121, 456, NULL, 7558, '1478', 'DORETA', NULL, '2.8000', '3.7000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '0.0000', '2022-04-20', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (54122, 456, NULL, 1941, 'PR-654', 'Genti Gds11369', NULL, '1.7500', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '8.0000', '2022-04-20', 'received', '1.7500', '1.7500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (54123, 456, NULL, 7335, '1255', 'NEO HYCOLEX5ML', NULL, '16.9000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '0.0000', '2022-04-20', 'received', '16.9000', '16.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (54124, 456, NULL, 7750, '1670', 'CALPOL 2+', NULL, '31.0000', '41.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-04-20', 'received', '31.0000', '31.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54125, 456, NULL, 7687, '1607', 'CALPOL 6+', NULL, '36.4900', '48.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.9800', '1.0000', '2022-04-20', 'received', '36.4900', '36.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.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 (54126, 456, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3500', '2.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '8.0000', '2022-04-20', 'received', '1.3500', '1.3500', '40.0000', NULL, NULL, 1, 'pc', '40.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 (54127, 456, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.7000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '3.0000', '2022-04-20', '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 (54128, 456, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-04-20', '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 (54129, 456, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '9.0000', '2022-04-20', '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 (54130, 456, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.2000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-04-20', '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 (54131, 456, NULL, 7697, '1617', 'LADINAS', NULL, '4.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-04-20', '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 (54132, 456, NULL, 7774, '1694', 'MIST POT SIT', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-04-20', '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 (54133, 456, NULL, 9693, '66923421', 'Calcough Infant syrup', NULL, '41.8000', '55.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.4000', '0.0000', '2022-04-20', 'received', '41.8000', '41.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '41.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 (54134, 456, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '6.0000', '2022-04-20', 'received', '17.4000', '17.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (54135, 456, NULL, 7628, '1548', 'ANUSOL SUPP', NULL, '2.0900', '3.0000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2400', '0.0000', '2022-04-20', 'received', '2.0900', '2.0900', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '2.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 (54136, 456, NULL, 7645, '1565', 'PILEX TAB', NULL, '23.7800', '31.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.3400', '0.0000', '2022-04-20', 'received', '23.7800', '23.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (54137, 456, NULL, 9629, '58336463', 'ACICLOVIR TAB 200MG', NULL, '3.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-04-20', '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 (54138, 456, NULL, 8468, '2388', 'VIREST CREAM', NULL, '10.0000', '13.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-04-20', '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 (54139, 456, NULL, 9777, '90211082', 'CANESTEN CREAM', NULL, '22.9000', '30.2300', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '1.0000', '2022-04-20', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (54140, 456, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6000', '4.0000', '2022-04-20', 'received', '0.3200', '0.3200', '80.0000', NULL, NULL, 1, 'pc', '80.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 (54141, 456, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '67.9000', '90.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9000', '0.0000', '2022-04-20', 'received', '67.9000', '67.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '67.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 (54142, 456, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '49.5000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2022-04-20', 'received', '49.5000', '49.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54143, 456, NULL, 9250, '3170', 'SALAMOL CFC INHALER', NULL, '20.5000', '27.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-04-20', 'received', '20.5000', '20.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54144, 456, NULL, 7359, '1279', 'BORGES125', NULL, '13.0000', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-04-20', '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 (54145, 456, NULL, 7545, '1465', 'BORGES 250ML', NULL, '25.0000', '3.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-20', 'received', '25.0000', '25.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (54146, 456, NULL, 7577, '1497', 'SUDOCREAM125', NULL, '32.0000', '42.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '1.0000', '2022-04-20', '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 (54147, 456, NULL, 9883, '53146434', 'AZITHROMYCIN 500MG TEVA', NULL, '19.8000', '26.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '1.0000', '2022-04-20', 'received', '19.8000', '19.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (54148, 456, NULL, 9885, '28207929', 'KEFROX 500MG TAB', NULL, '30.0000', '40.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '3.0000', '2022-04-20', '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 (54149, 456, NULL, 9881, '67043330', 'HAPPYRONA', NULL, '5.0000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2022-04-20', '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 (54150, 456, NULL, 9887, '60873036', 'DREZ V GEL 30G', NULL, '17.5000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2022-04-20', '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 (54151, 456, NULL, 8739, '2659', 'SPANISH GARLIC', NULL, '11.9300', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6500', '0.0000', '2022-04-20', 'received', '11.9300', '11.9300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (54152, 456, NULL, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '2.7000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '1.0000', '2022-04-20', '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 (54153, NULL, NULL, 8965, '', '', 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 (54154, NULL, NULL, 8030, '', '', 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 (54155, NULL, NULL, 2026, '', '', 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 (54156, NULL, NULL, 8011, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54157, 457, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-04-21', '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 (54158, 457, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-04-21', '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 (54159, 457, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-04-21', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (54160, 457, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '3.0000', '2022-04-21', '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 (54161, 457, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '0.0000', '2022-04-21', 'received', '5.7000', '5.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (54162, 457, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2022-04-21', '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 (54163, 457, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-04-21', '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 (54164, 457, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-04-21', '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 (54165, 457, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.0000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-04-21', '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 (54166, 457, NULL, 9846, '45939879', 'XZOLE F SUSP', NULL, '5.7000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '1.0000', '2022-04-21', 'received', '5.7000', '5.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (54167, 457, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '2.2200', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2022-04-21', 'received', '2.2200', '2.2200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (54168, 457, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '9.6000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2022-04-21', '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 (54169, 457, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.8000', '0.0000', '2022-04-21', 'received', '17.3000', '17.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54170, 457, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '16.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-04-21', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54171, 457, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9100', '10.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '276.4000', '27.0000', '2022-04-21', 'received', '6.9100', '6.9100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '6.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 (54172, 457, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-04-21', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54173, 457, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '6.5000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-04-21', '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 (54174, 457, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-04-21', '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 (54175, 457, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '3.2000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '7.0000', '2022-04-21', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54176, 457, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-04-21', '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 (54177, 457, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '24.1000', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.3000', '0.0000', '2022-04-21', 'received', '24.1000', '24.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54178, 457, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.1000', '0.0000', '2022-04-21', 'received', '23.7000', '23.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (54179, 457, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.0000', '17.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2022-04-21', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54180, 457, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.6300', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8900', '1.0000', '2022-04-21', 'received', '12.6300', '12.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (54181, 457, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '43.0000', '2022-04-21', '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 (54182, 457, NULL, 9888, '22005830', 'CELECOXIB 200MG EXETER', NULL, '19.8000', '26.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '1.0000', '2022-04-21', '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 (54183, 457, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '7.8000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '2.0000', '2022-04-21', '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 (54184, 457, NULL, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', NULL, '1.0900', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '0.0000', '2022-04-21', 'received', '1.0900', '1.0900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54185, NULL, NULL, 9151, '', '', 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 (54186, NULL, NULL, 8254, '', '', 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 (54187, NULL, NULL, 8659, '', '', 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 (54188, NULL, NULL, 8470, '', '', 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 (54189, NULL, NULL, 9829, '', '', 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 (54190, NULL, NULL, 1610, '', '', 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 (54191, NULL, NULL, 9880, '', '', 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 (54192, NULL, NULL, 8260, '', '', 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 (54193, NULL, NULL, 7695, '', '', 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 (54194, NULL, NULL, 8024, '', '', 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 (54195, NULL, NULL, 7569, '', '', 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 (54258, 454, NULL, 1833, 'PR-546', 'STUGERON TABS 50?S', NULL, '5.1600', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '10.0000', '2022-04-12', 'received', '5.1600', '5.1600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (54259, 454, NULL, 7641, '1561', 'LYDIA', NULL, '6.9100', '10.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '276.4000', '0.0000', '2022-04-12', 'received', '6.9100', '6.9100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '6.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 (54260, 454, NULL, 8902, '2822', ' METFORMIN GLUCOPHAGE 500MG', NULL, '17.4000', '23.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.4000', '5.0000', '2022-04-12', 'received', '17.4000', '17.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54261, 454, NULL, 7846, '1766', 'COLESTOP 10', NULL, '17.4000', '23.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.4000', '6.0000', '2022-04-12', 'received', '17.4000', '17.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54262, 454, NULL, 8193, '2113', 'STOPKOF CHILD', NULL, '6.9800', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.9400', '0.0000', '2022-04-12', 'received', '6.9800', '6.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (54263, 454, NULL, 9730, '76969575', 'HAEMO FORTE SYRUP 200ML', NULL, '18.2000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '2.0000', '2022-04-12', '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 (54264, 454, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '11.3200', '15.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.4000', '0.0000', '2022-04-12', 'received', '11.3200', '11.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '11.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 (54265, 454, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '6.5000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-04-12', '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 (54266, 454, NULL, 7333, '1253', 'MR Q', NULL, '3.8000', '5.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.0000', '0.0000', '2022-04-12', 'received', '3.8000', '3.8000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54267, 454, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.7500', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.7500', '0.0000', '2022-04-12', 'received', '8.7500', '8.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54268, 454, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-04-12', '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 (54269, 454, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '2.0000', '2022-04-12', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54270, 454, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.4000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '4.0000', '2022-04-12', 'received', '12.4000', '12.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54271, 454, NULL, 7482, '1402', 'MAXMOX 500', NULL, '4.0000', '5.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '13.0000', '2022-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 (54272, 454, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-04-12', '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 (54273, 454, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.4500', '0.0000', '2022-04-12', '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 (54274, 454, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '13.0000', '2022-04-12', 'received', '1.4500', '1.4500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54275, 454, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '1.0000', '2022-04-12', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54276, 454, NULL, 8539, '2459', 'ASMADRIN', NULL, '0.6400', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '24.0000', '2022-04-12', '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 (54277, 454, NULL, 7780, '1700', 'LUFART TAB', NULL, '11.6000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-04-12', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54278, 454, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '3.0000', '2022-04-12', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (54279, 454, NULL, 8181, '2101', 'FOLIC ACID LOCAL', NULL, '0.2000', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '100.0000', '2022-04-12', '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 (54280, 454, NULL, 9204, '3124', 'NESBEN TAB 200MG', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '7.0000', '2022-04-12', '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 (54281, 454, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3000', '2.0000', '2022-04-12', 'received', '16.6600', '16.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (54282, 454, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0500', '3.0000', '2022-04-12', 'received', '14.2100', '14.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (54283, 454, NULL, 7664, '1584', 'DUROL ADULT', NULL, '8.7000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '1.0000', '2022-04-12', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54284, 454, NULL, 7708, '1628', 'TEEDAR', NULL, '8.3000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-04-12', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (54285, 454, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '4.4000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-04-12', '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 (54286, 454, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.6000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2022-04-12', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54287, 454, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '4.0000', '2022-04-12', 'received', '4.5000', '4.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (54288, 454, NULL, 8005, '1925', 'ADDYZOA', NULL, '58.0000', '76.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-04-12', 'received', '58.0000', '58.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54289, 454, NULL, 9868, '57259936', 'SHALTOUX COUGH LOZ', NULL, '1.0000', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '11.0000', '2022-04-12', '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 (54290, 454, NULL, 7632, '1552', 'CIPROLEX TAB', NULL, '14.0000', '18.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '6.0000', '2022-04-12', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54291, 454, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.1000', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-04-12', '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 (54292, 454, NULL, 8102, '111111', 'NEOVITA CAPS PER STRIP', NULL, '30.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-04-12', '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 (54293, 454, NULL, 8303, '2223', 'FUROSEMIDE 40 TEVA', NULL, '8.0000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-04-12', '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 (54294, 454, NULL, 9001, '2921', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-04-12', '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 (54295, 454, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '2.0000', '2022-04-12', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (54296, 454, NULL, 7608, '1528', 'AUNTY MARY', NULL, '9.4700', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '8.0000', '2022-04-12', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (54297, 454, NULL, 7925, '1845', 'NEXCOFER B/S', NULL, '9.9000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '2.0000', '2022-04-12', '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 (54298, 454, NULL, 8264, '2184', 'CLAVU-DOR 625', NULL, '25.0700', '33.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2100', '1.0000', '2022-04-12', 'received', '25.0700', '25.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.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 (54299, 454, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5000', '12.0000', '2022-04-12', 'received', '4.7000', '4.7000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (54300, 454, NULL, 8387, '2307', 'HONEY GIFT OF NATURE 500ML ', NULL, '28.5000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.5000', '0.0000', '2022-04-12', 'received', '28.5000', '28.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54301, 454, NULL, 9384, '3304', 'CEFURO DOR 750', NULL, '4.9500', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7500', '5.0000', '2022-04-12', 'received', '4.9500', '4.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (54302, 454, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-04-12', '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 (54303, 454, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-04-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 (54304, 454, NULL, 9894, '24864084', 'HYDROGEN PEROXIDE MAL.TITI', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-04-12', '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 (54305, 454, NULL, 9892, '60055615', 'VAGID CL SUPPOS', NULL, '12.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '3.0000', '2022-04-12', '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 (54306, 454, NULL, 9893, '09986672', 'BORGES OIL 500ML', NULL, '44.0000', '58.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '1.0000', '2022-04-12', '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 (54307, 454, NULL, 7781, '1701', 'PENICILLIN TAB', NULL, '0.8400', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-04-12', 'received', '0.8400', '0.8400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (54308, NULL, NULL, 7523, '', '', 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 (54309, NULL, NULL, 9332, '', '', 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 (54310, NULL, NULL, 9643, '', '', 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 (54311, NULL, NULL, 7585, '', '', 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 (54312, NULL, NULL, 8053, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54313, NULL, NULL, 9335, '', '', 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 (54314, NULL, NULL, 9826, '', '', 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 (54315, NULL, NULL, 2852, '', '', 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 (54316, NULL, NULL, 9813, '', '', 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 (54317, NULL, NULL, 7884, '', '', 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 (54318, NULL, NULL, 1466, '', '', 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 (54319, NULL, NULL, 7840, '', '', 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 (54320, NULL, NULL, 7708, '', '', 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 (54321, NULL, NULL, 8642, '', '', 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 (54322, NULL, NULL, 7772, '', '', 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 (54323, NULL, NULL, 9811, '', '', 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 (54324, 442, NULL, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', NULL, '7.0000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2022-03-24', '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 (54325, 442, NULL, 8566, '2486', 'SURE SPRAY', NULL, '16.0000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2022-03-24', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54326, 442, NULL, 2034, '4800888199188', 'REXONA ROLL ON 50ML', NULL, '7.5000', '9.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '5.0000', '2022-03-24', '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 (54327, 442, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '16.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '2.0000', '2022-03-24', '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 (54328, 442, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '12.5000', '16.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-03-24', 'received', '12.5000', '12.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (54329, 442, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '7.0000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '2.0000', '2022-03-24', '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 (54330, 442, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '15.0000', '17.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-03-24', '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 (54331, 442, NULL, 1986, '6181100323658', 'SIVODERM CREAM', NULL, '7.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-03-24', '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 (54332, 442, NULL, 2516, '60491534', 'TENDRINA CREAM B/S', NULL, '11.0000', '14.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2022-03-24', '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 (54333, 442, NULL, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '9.5000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-03-24', '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 (54334, 442, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '9.5000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-03-24', '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 (54335, 442, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.5000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-03-24', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54336, 442, NULL, 9829, '40658408', 'Dove Roll on', NULL, '6.6000', '9.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '4.0000', '2022-03-24', '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 (54337, 442, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2500', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '8.0000', '2022-03-24', '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 (54338, 442, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.7000', '5.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '16.0000', '2022-03-24', 'received', '3.7000', '3.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (54339, 442, NULL, 8955, '2875', 'OCEAN SPRAY BOTTLE', NULL, '17.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '1.0000', '2022-03-24', '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 (54340, 442, NULL, 8982, '2902', 'CRANBERRY', NULL, '17.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-03-24', '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 (54341, 442, NULL, 8761, '2681', 'VITRAC', NULL, '14.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-03-24', '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 (54342, 442, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '9.0000', '2022-03-24', '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 (54343, 442, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.0000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-03-24', '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 (54344, 442, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '6.5000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '4.0000', '2022-03-24', '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 (54345, 442, NULL, 8758, '2678', 'PURE HEAVEN', NULL, '13.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-03-24', '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 (54346, 442, NULL, 8743, '2663', 'CERES DRINK', NULL, '14.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-03-24', '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 (54347, 442, NULL, 8745, '2665', 'DON SIMON', NULL, '12.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-03-24', '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 (54348, 442, NULL, 8759, '2679', 'FRUTELLI', NULL, '9.5000', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2022-03-24', '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 (54349, 442, NULL, 9472, '82987566', 'PARMALAT DRINK S/S', NULL, '12.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-03-24', '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 (54350, 442, NULL, 9871, '58458141', 'COKE BIG 1.5L', NULL, '12.0000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-03-24', '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 (54351, 442, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '3.5000', '4.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '11.0000', '2022-03-24', '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 (54352, 442, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.4500', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '12.0000', '2022-03-24', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (54353, 442, NULL, 8949, '2869', 'SOFTCARE PAD', NULL, '7.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2022-03-24', '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 (54354, 442, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '8.0000', '10.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '12.0000', '2022-03-24', 'received', '8.0000', '8.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (54355, 442, NULL, 9471, '85188534', 'CATUABA DRINK', NULL, '15.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-03-24', '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 (54356, 442, NULL, 8059, '1979', 'PROPER PAD', NULL, '8.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2022-03-24', '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 (54357, 442, NULL, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', NULL, '11.0000', '14.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '6.0000', '2022-03-24', '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 (54358, 442, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '14.6000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '2.0000', '2022-03-24', '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 (54359, 442, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '3.0000', '2022-03-24', '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 (54360, 442, NULL, 2231, '7501058633927', 'NAN 2', NULL, '37.0000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.0000', '1.0000', '2022-03-24', '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 (54361, 442, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '29.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '1.0000', '2022-03-24', 'received', '29.0000', '29.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (54362, 442, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '29.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-03-24', 'received', '29.0000', '29.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (54363, 442, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '17.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2022-03-24', '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 (54364, 442, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '110.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-03-24', 'received', '110.0000', '110.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54365, 442, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '4.0000', '2022-03-24', 'received', '2.0000', '2.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (54366, 442, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '10.0000', '13.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-03-24', '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 (54367, 442, NULL, 9896, '82312576', 'CLOVES B/S', NULL, '15.0000', '20.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '9.0000', '2022-03-24', '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 (54368, 442, NULL, 2602, '86780065', 'CLOVES  S/S', NULL, '4.0000', '5.0000', '22.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '4.0000', '2022-03-24', 'received', '4.0000', '4.0000', '22.0000', NULL, NULL, 1, 'pc', '22.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 (54369, 442, NULL, 9895, '41497867', 'CLOVES M/S', NULL, '8.0000', '10.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '18.0000', '2022-03-24', 'received', '8.0000', '8.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54373, 458, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9100', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.2000', '8.0000', '2022-04-22', 'received', '6.9100', '6.9100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (54374, 458, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.4000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-04-22', 'received', '14.4000', '14.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54375, 458, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '36.4900', '48.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4900', '1.0000', '2022-04-22', 'received', '36.4900', '36.4900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '36.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 (54376, 458, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.1000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '3.0000', '2022-04-22', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54377, 458, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '6.8000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '6.0000', '2022-04-22', '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 (54378, 458, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7000', '0.0000', '2022-04-22', 'received', '7.8500', '7.8500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54379, 458, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7000', '0.0000', '2022-04-22', 'received', '7.8500', '7.8500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54380, 458, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.4000', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '18.0000', '2022-04-22', '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 (54381, 458, NULL, 7532, '1452', 'AMOKSIKLAV 457 SUSP', NULL, '27.5000', '36.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-04-22', 'received', '27.5000', '27.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54382, 458, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '30.7900', '41.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7900', '0.0000', '2022-04-22', 'received', '30.7900', '30.7900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.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 (54383, 458, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '25.9000', '34.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9000', '1.0000', '2022-04-22', 'received', '25.9000', '25.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (54384, 458, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '35.4500', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.9000', '2.0000', '2022-04-22', 'received', '35.4500', '35.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (54385, 458, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '2.0000', '2022-04-22', '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 (54386, 458, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.6300', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.1500', '3.0000', '2022-04-22', 'received', '12.6300', '12.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (54387, 458, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.1000', '3.0000', '2022-04-22', 'received', '23.7000', '23.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (54388, 458, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.1000', '5.0000', '2022-04-22', 'received', '15.0200', '15.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (54389, 458, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '18.8100', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4300', '3.0000', '2022-04-22', 'received', '18.8100', '18.8100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (54390, 458, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '16.9600', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8000', '2.0000', '2022-04-22', 'received', '16.9600', '16.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (54391, 458, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.6300', '9.0000', '2022-04-22', 'received', '10.0700', '10.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.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 (54392, 458, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.7300', '6.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7600', '12.0000', '2022-04-22', 'received', '4.7300', '4.7300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (54393, 458, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '37.7200', '50.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.3200', '6.0000', '2022-04-22', 'received', '37.7200', '37.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (54394, 458, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-04-22', 'received', '3.0000', '3.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54395, 458, NULL, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.1900', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.5000', '20.0000', '2022-04-22', 'received', '1.1900', '1.1900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (54396, 458, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '10.0000', '2022-04-22', '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 (54397, 458, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.3900', '0.0000', '2022-04-22', '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 (54398, 458, NULL, 2243, '84463478', 'CALAMINE LOTION', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-04-22', '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 (54399, 458, NULL, 8736, '2656', 'LEVOTHYROXINE 100MG', NULL, '12.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-04-22', '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 (54400, 458, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '5.3000', '7.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.0000', '20.0000', '2022-04-22', '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 (54401, 458, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.0500', '15.0000', '2022-04-22', 'received', '10.0700', '10.0700', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '10.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 (54402, 458, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '2.0000', '2022-04-22', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54403, 458, NULL, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.1900', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.5000', '50.0000', '2022-04-22', 'received', '1.1900', '1.1900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (54404, 458, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.9000', '48.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '2.0000', '2022-04-22', '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 (54405, 458, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2022-04-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 (54406, 458, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '14.0000', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-04-22', '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 (54407, 458, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '7.0000', '2022-04-22', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54408, 458, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '13.7300', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '5.0000', '2022-04-22', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (54409, 458, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '10.0000', '2022-04-22', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54410, 458, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '10.4800', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8000', '9.0000', '2022-04-22', 'received', '10.4800', '10.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (54411, 458, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '22.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-04-22', '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 (54412, 458, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '22.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2022-04-22', '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 (54413, 458, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '8.0000', '2022-04-22', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54414, 458, NULL, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '2.3000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '8.0000', '2022-04-22', '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 (54415, 458, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-04-22', '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 (54416, 458, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '5.0000', '2022-04-22', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (54417, 458, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '11.8000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '3.0000', '2022-04-22', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54418, 458, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '19.0000', '2022-04-22', '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 (54419, 458, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-04-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 (54420, 458, NULL, 2311, '90764208', 'PREGNACARE 19', NULL, '50.9300', '67.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.8600', '1.0000', '2022-04-22', 'received', '50.9300', '50.9300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.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 (54421, 458, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.1800', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '6.0000', '2022-04-22', 'received', '1.1800', '1.1800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (54422, 458, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '24.0000', '2022-04-22', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54423, 458, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.1200', '1.0000', '2022-04-22', 'received', '15.0400', '15.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (54424, 458, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '20.0000', '2022-04-22', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54425, 458, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '7.0000', '2022-04-22', 'received', '0.2400', '0.2400', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54426, 458, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.2200', '0.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '23.0000', '2022-04-22', 'received', '0.2200', '0.2200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (54427, 458, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.8000', '3.7000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '50.0000', '2022-04-22', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (54428, 458, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '50.7000', '67.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '0.0000', '2022-04-22', 'received', '50.7000', '50.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '50.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 (54429, 458, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '59.8000', '79.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '1.0000', '2022-04-22', 'received', '59.8000', '59.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '59.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 (54430, 458, NULL, 9890, '10211509', 'SEVEN SEAS JOINTCARE ACTIVE', NULL, '109.9000', '145.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.9000', '1.0000', '2022-04-22', 'received', '109.9000', '109.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '109.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 (54431, 458, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '1.0000', '2022-04-22', '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 (54432, 458, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-04-22', '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 (54433, 458, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '8.1400', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.8400', '5.0000', '2022-04-22', 'received', '8.1400', '8.1400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (54434, 458, NULL, 9880, '56162993', 'LINCTUS JUNIOR SYR', NULL, '3.4200', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1000', '2.0000', '2022-04-22', 'received', '3.4200', '3.4200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (54435, 458, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2500', '2.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7500', '13.0000', '2022-04-22', 'received', '1.2500', '1.2500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (54436, 458, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '13.0000', '2022-04-22', 'received', '1.0500', '1.0500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (54437, NULL, NULL, 9891, '', '', 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 (54442, 459, NULL, 2602, '86780065', 'CLOVES  S/S', NULL, '4.0000', '5.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2022-04-23', 'received', '4.0000', '4.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (54443, 459, NULL, 9895, '41497867', 'CLOVES M/S', NULL, '8.0000', '10.0000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '328.0000', '37.0000', '2022-04-23', 'received', '8.0000', '8.0000', '41.0000', NULL, NULL, 1, 'pc', '41.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 (54444, 459, NULL, 9896, '82312576', 'CLOVES B/S', NULL, '15.0000', '20.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '15.0000', '2022-04-23', '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 (54445, 459, NULL, 9526, '42388700', 'TRAMADOL 100MG INJ', NULL, '6.0000', '8.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-23', '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 (54446, 459, NULL, 9498, '35784269', 'HONEY WORLD 200ML', NULL, '15.0000', '20.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-04-23', '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 (54447, 459, NULL, 9499, '12755178', 'HONEY WORLD 350ML', NULL, '25.0000', '33.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '2.0000', '2022-04-23', '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 (54464, NULL, NULL, 9526, '', '', 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 (54465, NULL, NULL, 9761, '', '', 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 (54466, NULL, NULL, 9610, '', '', 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 (54467, NULL, NULL, 8467, '', '', 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 (54468, NULL, NULL, 9864, '', '', 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 (54469, NULL, NULL, 9760, '', '', 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 (54470, NULL, NULL, 7456, '', '', 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 (54471, 461, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '12.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '0.0000', '2022-04-25', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54472, 461, NULL, 7821, '1741', 'TIME HERBAL', NULL, '13.0700', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3500', '0.0000', '2022-04-25', 'received', '13.0700', '13.0700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (54473, 461, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '3.0000', '2022-04-25', '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 (54474, 461, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '17.0000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '3.0000', '2022-04-25', '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 (54475, 461, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '13.0000', '17.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '1.0000', '2022-04-25', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54476, 461, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '4.0000', '2022-04-25', '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 (54477, 461, NULL, 9408, '3328', 'ADOM MALAKARE', NULL, '10.0000', '13.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-04-25', '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 (54478, 461, NULL, 9826, '06168620', 'LAW CARE MIX', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-04-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 (54479, 461, NULL, 2395, '99288830', 'TINATETT 230', NULL, '28.0000', '37.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '3.0000', '2022-04-25', '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 (54480, 461, NULL, 8960, '2880', 'PROSTACURE X', NULL, '30.0000', '40.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '1.0000', '2022-04-25', '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 (54481, NULL, NULL, 1463, '', '', 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 (54482, NULL, NULL, 7959, '', '', 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 (54483, NULL, NULL, 1510, '', '', 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 (54484, NULL, NULL, 8944, '', '', 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 (54485, NULL, NULL, 8300, '', '', 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 (54486, NULL, NULL, 8898, '', '', 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 (54487, NULL, NULL, 8285, '', '', 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 (54488, NULL, NULL, 8056, '', '', 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 (54489, NULL, NULL, 7397, '', '', 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 (54490, NULL, NULL, 7462, '', '', 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 (54491, NULL, NULL, 2164, '', '', 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 (54492, NULL, NULL, 9885, '', '', 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 (54493, NULL, NULL, 7798, '', '', 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 (54494, 460, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '2.0000', '2022-04-24', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54495, 460, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '10.0000', '2022-04-24', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54496, 460, NULL, 9817, '44012910', 'NESBEN SUSP', NULL, '5.9800', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '8.0000', '2022-04-24', '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 (54497, 460, NULL, 7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', NULL, '6.9800', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9200', '0.0000', '2022-04-24', 'received', '6.9800', '6.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (54498, 460, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '3.0000', '2022-04-24', '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 (54499, 460, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-04-24', '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 (54500, 460, NULL, 8304, '2224', 'POLYFER 200ML', NULL, '8.5000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '3.0000', '2022-04-24', '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 (54501, 460, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '0.0000', '2022-04-24', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (54502, 460, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '4.1000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '3.0000', '2022-04-24', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54503, 460, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.1000', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '12.0000', '2022-04-24', 'received', '1.1000', '1.1000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54504, 460, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '3.0000', '2022-04-24', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (54505, 460, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4000', '4.0000', '2022-04-24', 'received', '8.6000', '8.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (54506, 460, NULL, 7412, '1332', 'COLODIUM', NULL, '2.2000', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '9.0000', '2022-04-24', 'received', '2.2000', '2.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54507, 460, NULL, 7763, '1683', 'FUMET', NULL, '3.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '3.0000', '2022-04-24', '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 (54508, 460, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.1000', '4.0000', '2022-04-24', 'received', '15.0200', '15.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (54509, 460, NULL, 2945, '07580425', 'CIPROLEX EYE OINTMENT', NULL, '10.0000', '13.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-04-24', '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 (54510, 460, NULL, 9900, '68117970', 'GRMox SUSP', NULL, '3.7200', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7600', '8.0000', '2022-04-24', 'received', '3.7200', '3.7200', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '3.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 (54511, 460, NULL, 9899, '88557858', 'IBUPROFEN SUSP', NULL, '23.8000', '31.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.0000', '5.0000', '2022-04-24', 'received', '23.8000', '23.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (54512, 460, NULL, 9565, '95802365', 'PASSION YOGHURT STRAWBERRY/VANILLA', NULL, '5.5000', '7.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5000', '10.0000', '2022-04-24', 'received', '5.5000', '5.5000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (54513, 462, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '4.7900', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.9000', '0.0000', '2022-04-26', 'received', '4.7900', '4.7900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (54514, 462, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.6000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2022-04-26', '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 (54515, 462, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.1700', '0.0000', '2022-04-26', 'received', '4.1700', '4.1700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '4.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 (54516, 462, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-04-26', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54517, 462, NULL, 9888, '22005830', 'CELECOXIB 200MG EXETER', NULL, '19.8000', '26.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '2.0000', '2022-04-26', 'received', '19.8000', '19.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54518, 462, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-04-26', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54519, 462, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.3600', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2000', '0.0000', '2022-04-26', 'received', '2.3600', '2.3600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (54520, 462, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-04-26', '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 (54521, 462, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '7.3000', '10.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.1000', '0.0000', '2022-04-26', 'received', '7.3000', '7.3000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (54522, 462, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.6900', '13.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.8300', '0.0000', '2022-04-26', 'received', '9.6900', '9.6900', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '9.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 (54523, 462, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-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 (54524, 462, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '1.0000', '2022-04-26', '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 (54525, 462, NULL, 7412, '1332', 'COLODIUM', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-04-26', '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 (54526, 462, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '0.0000', '2022-04-26', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54527, 462, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '24.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-26', 'received', '16.1000', '16.1000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (54528, 462, NULL, 7736, '1656', 'NUGEL -O', NULL, '16.7000', '25.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-26', 'received', '16.7000', '16.7000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (54529, 462, NULL, 7857, '1777', 'NUGEL', NULL, '16.1000', '24.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-26', 'received', '16.1000', '16.1000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (54530, 462, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '26.9800', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.9600', '1.0000', '2022-04-26', 'received', '26.9800', '26.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (54531, 462, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-04-26', '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 (54532, 462, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '2.4900', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.5000', '0.0000', '2022-04-26', 'received', '2.4900', '2.4900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54533, 462, NULL, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', NULL, '1.6100', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '47.0000', '2022-04-26', 'received', '1.6100', '1.6100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (54534, 462, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '35.4500', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.9000', '2.0000', '2022-04-26', 'received', '35.4500', '35.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.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 (54535, 462, NULL, 7513, '1433', 'TAMSULOSIN 400', NULL, '18.0000', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-04-26', '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 (54536, 462, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-04-26', '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 (54537, 462, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9600', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7600', '2.0000', '2022-04-26', 'received', '3.9600', '3.9600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (54538, 462, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-04-26', '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 (54539, 462, NULL, 7944, '1864', 'DIPEX TAB', NULL, '2.0100', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.0100', '0.0000', '2022-04-26', 'received', '2.0100', '2.0100', '1.0000', NULL, NULL, 1, 'pc', '1.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 (54540, 462, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '27.5000', '36.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-04-26', 'received', '27.5000', '27.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54541, 462, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '6.8500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '0.0000', '2022-04-26', '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 (54542, 462, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.4000', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-04-26', 'received', '14.4000', '14.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54543, 462, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-04-26', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (54544, 462, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-04-26', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54545, 462, NULL, 9894, '24864084', 'HYDROGEN PEROXIDE MAL.TITI', NULL, '4.5000', '6.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2022-04-26', '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 (54546, 462, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.9400', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.8200', '0.0000', '2022-04-26', 'received', '4.9400', '4.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (54547, 462, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.9000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '0.0000', '2022-04-26', 'received', '21.9000', '21.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (54548, 462, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.6300', '1.0000', '2022-04-26', 'received', '10.0700', '10.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.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 (54549, 462, NULL, 2385, '52921', 'BECOATIN TABS', NULL, '10.0000', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-04-26', '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 (54550, 462, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1500', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-04-26', 'received', '7.1500', '7.1500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.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 (54551, 462, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '26.9800', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.9600', '0.0000', '2022-04-26', 'received', '26.9800', '26.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (54552, 462, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '12.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-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 (54553, 462, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-04-26', '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 (54554, 462, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-04-26', '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 (54555, 462, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '22.0000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-04-26', '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 (54556, 462, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '22.0000', '29.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-04-26', '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 (54557, 462, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-04-26', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54558, 462, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '5.0000', '2022-04-26', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54559, 462, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '31.5000', '42.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.5000', '5.0000', '2022-04-26', 'received', '31.5000', '31.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54560, 462, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-04-26', '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 (54561, 462, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '2.2200', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.6000', '0.0000', '2022-04-26', 'received', '2.2200', '2.2200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (54562, 462, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-04-26', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54563, 462, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '34.7000', '46.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.1000', '2.0000', '2022-04-26', 'received', '34.7000', '34.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.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 (54564, 462, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.8000', '6.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-04-26', 'received', '4.8000', '4.8000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54565, 462, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.6000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '50.0000', '2022-04-26', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54566, 462, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-04-26', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (54567, 462, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '19.0000', '2022-04-26', '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 (54568, 462, NULL, 9889, '33111267', 'MAALOX STICK PACKS 20\'S', NULL, '1.7000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '12.0000', '2022-04-26', 'received', '1.7000', '1.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54569, 462, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '50.7000', '67.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '0.0000', '2022-04-26', 'received', '50.7000', '50.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.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 (54570, 462, NULL, 9890, '10211509', 'SEVEN SEAS JOINTCARE ACTIVE', NULL, '109.9000', '145.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.9000', '1.0000', '2022-04-26', 'received', '109.9000', '109.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '109.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 (54571, 462, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '59.8000', '79.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '1.0000', '2022-04-26', 'received', '59.8000', '59.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '59.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 (54572, 462, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.9100', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '0.0000', '2022-04-26', 'received', '0.9100', '0.9100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (54573, 462, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '3.0000', '2022-04-26', 'received', '17.4000', '17.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (54574, 462, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-04-26', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54575, 462, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.4000', '3.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2022-04-26', '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 (54576, 462, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-04-26', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54577, 462, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '22.0000', '30.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '3.0000', '2022-04-26', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54578, 462, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-04-26', '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 (54579, 462, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-04-26', '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 (54580, 463, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '37.7200', '50.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.3200', '1.0000', '2022-04-26', 'received', '37.7200', '37.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (54581, 463, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.8000', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '15.0000', '2022-04-26', '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 (54582, 463, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '14.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '2.0000', '2022-04-26', '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 (54583, 463, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-04-26', '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 (54584, 463, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '25.0000', '2022-04-26', 'received', '1.5000', '1.5000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (54585, 463, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '20.0000', '2022-04-26', '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 (54586, 463, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '9.0000', '2022-04-26', '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 (54587, 463, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.1000', '1.0000', '2022-04-26', 'received', '14.7000', '14.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54588, 463, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '3.0000', '2022-04-26', 'received', '17.3000', '17.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54589, 463, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2022-04-26', '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 (54590, 463, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '7.0000', '2022-04-26', '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 (54591, 463, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '1.7300', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.3000', '7.0000', '2022-04-26', 'received', '1.7300', '1.7300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (54592, 463, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '34.7000', '46.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.4000', '2.0000', '2022-04-26', 'received', '34.7000', '34.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.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 (54593, 463, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '22.6200', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2400', '0.0000', '2022-04-26', 'received', '22.6200', '22.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (54594, 463, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.4000', '16.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.8000', '1.0000', '2022-04-26', 'received', '12.4000', '12.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54595, 463, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.2000', '21.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '2.0000', '2022-04-26', '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 (54596, 463, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.1000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '28.0000', '2022-04-26', '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 (54597, 463, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.9000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '5.0000', '2022-04-26', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54598, 463, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-04-26', '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 (54599, 463, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '2.0000', '2022-04-26', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (54600, 463, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '20.0000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-04-26', '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 (54601, 463, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '25.8000', '34.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.4000', '0.0000', '2022-04-26', 'received', '25.8000', '25.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.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 (54602, 463, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-04-26', '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 (54603, 463, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2800', '1.0000', '2022-04-26', 'received', '8.6400', '8.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (54604, 463, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.4700', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '33.0000', '2022-04-26', 'received', '1.4700', '1.4700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54605, 463, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '31.5000', '42.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.5000', '5.0000', '2022-04-26', 'received', '31.5000', '31.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54606, 463, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-04-26', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54607, 463, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.1000', '2.0000', '2022-04-26', 'received', '16.7000', '16.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54608, 463, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '16.1000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2000', '0.0000', '2022-04-26', 'received', '16.1000', '16.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54609, 463, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-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 (54610, 463, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-04-26', '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 (54611, 463, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '16.9000', '22.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '1.0000', '2022-04-26', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (54612, 463, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-04-26', '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 (54613, 463, NULL, 7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', NULL, '6.9800', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '3.0000', '2022-04-26', 'received', '6.9800', '6.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (54614, 463, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '5.0000', '2022-04-26', '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 (54615, 463, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '10.0000', '2022-04-26', '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 (54616, 463, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '5.0000', '2022-04-26', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (54617, 463, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '8.0000', '2022-04-26', '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 (54618, 463, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '36.4900', '48.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4900', '0.0000', '2022-04-26', 'received', '36.4900', '36.4900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '36.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 (54619, 463, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '40.9400', '54.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.8800', '2.0000', '2022-04-26', 'received', '40.9400', '40.9400', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54620, 463, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '10.0000', '2022-04-26', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54621, 463, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '3.3100', '4.5000', '36.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.1600', '26.0000', '2022-04-26', 'received', '3.3100', '3.3100', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '3.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 (54622, 463, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '31.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '2.0000', '2022-04-26', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (54623, 463, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '27.0000', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-04-26', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54624, 463, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.6400', '2.0000', '54.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5600', '35.0000', '2022-04-26', 'received', '0.6400', '0.6400', '54.0000', NULL, NULL, 1, 'pc', '54.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 (54625, 463, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '24.1000', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.3000', '2.0000', '2022-04-26', 'received', '24.1000', '24.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54626, 463, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '24.5000', '32.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-04-26', '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 (54627, 463, NULL, 7355, '1275', 'BIOFERON SRP', NULL, '24.1000', '32.0000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-26', 'received', '24.1000', '24.1000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (54628, 463, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '8.0000', '2022-04-26', '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 (54629, 463, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-04-26', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54630, 463, NULL, 2605, '92433638', 'COLESTOP 10MG', NULL, '17.4000', '23.0000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.6000', '1.0000', '2022-04-26', 'received', '17.4000', '17.4000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (54631, 463, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '9.8000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '3.0000', '2022-04-26', '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 (54632, 463, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '5.0000', '2022-04-26', '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 (54633, 463, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '4.0000', '2022-04-26', '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 (54634, 463, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '6.0000', '2022-04-26', '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 (54635, 463, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '4.0000', '2022-04-26', '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 (54636, 463, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-04-26', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54637, 463, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '21.6500', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '3.0000', '2022-04-26', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (54638, 463, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '7.0000', '2022-04-26', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54639, 463, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '7.0000', '2022-04-26', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (54640, 463, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '6.1300', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6500', '3.0000', '2022-04-26', 'received', '6.1300', '6.1300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54641, 463, 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', '40.0000', '2022-04-26', '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 (54642, NULL, NULL, 8145, '', '', 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 (54643, NULL, NULL, 7976, '', '', 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 (54644, 464, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2022-04-26', '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 (54645, 464, NULL, 8498, '2418', 'DIPROSIN', NULL, '3.1500', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '0.0000', '2022-04-26', '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 (54646, 464, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '3.7000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '25.0000', '2022-04-26', 'received', '2.8000', '2.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (54647, 464, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '24.0000', '2022-04-26', 'received', '1.5000', '1.5000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (54648, 464, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '13.8100', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0500', '1.0000', '2022-04-26', 'received', '13.8100', '13.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (54649, 464, NULL, 7642, '1562', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '5.0000', '2022-04-26', '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 (54650, 464, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '2.0000', '2022-04-26', 'received', '4.4000', '4.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54651, 464, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '16.9800', '22.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9200', '4.0000', '2022-04-26', 'received', '16.9800', '16.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (54652, 464, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '100.5400', '133.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '201.0800', '0.0000', '2022-04-26', 'received', '100.5400', '100.5400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '100.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 (54653, 464, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '49.7300', '66.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.4600', '2.0000', '2022-04-26', 'received', '49.7300', '49.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (54654, 464, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '33.4800', '44.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '133.9200', '4.0000', '2022-04-26', 'received', '33.4800', '33.4800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.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 (54655, 464, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2022-04-26', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54656, 464, NULL, 7922, '1842', 'BABY COU LINC', NULL, '4.2000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '3.0000', '2022-04-26', '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 (54657, 464, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '5.4000', '7.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '17.0000', '2022-04-26', 'received', '5.4000', '5.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54658, 464, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '2.0000', '2022-04-26', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54659, 464, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '39.3500', '52.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.7500', '0.0000', '2022-04-26', 'received', '39.3500', '39.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '39.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 (54660, 464, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3500', '4.0000', '2022-04-26', 'received', '4.2700', '4.2700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (54661, 464, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.0500', '6.0000', '2022-04-26', 'received', '10.0700', '10.0700', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '10.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 (54662, 464, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '1.0000', '2022-04-26', '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 (54663, 464, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '4.0000', '2022-04-26', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54664, 464, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '27.0000', '2022-04-26', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (54665, 464, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.8000', '2.5000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '9.0000', '2022-04-26', 'received', '1.8000', '1.8000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (54666, 464, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '6.0000', '2022-04-26', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54667, 464, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '2.0000', '2022-04-26', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (54668, 464, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '1.0000', '2022-04-26', '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 (54669, 464, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.7000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.1000', '0.0000', '2022-04-26', 'received', '10.7000', '10.7000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54670, 464, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4200', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2022-04-26', '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 (54671, 464, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.9000', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-04-26', '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 (54672, 464, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '20.0000', '2022-04-26', '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 (54673, 464, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '186.8000', '240.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '373.6000', '2.0000', '2022-04-26', 'received', '186.8000', '186.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '186.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 (54674, 464, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-04-26', '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 (54675, 464, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2022-04-26', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (54676, 464, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '11.7000', '15.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '5.0000', '2022-04-26', '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 (54677, 464, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '3.7000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '20.0000', '2022-04-26', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54678, 464, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '8.0000', '2022-04-26', '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 (54679, 464, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '10.0000', '2022-04-26', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (54680, 464, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2022-04-26', '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 (54681, 464, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.0000', '17.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '4.0000', '2022-04-26', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54682, 464, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '11.8000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '3.0000', '2022-04-26', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54683, 464, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.7500', '0.0000', '2022-04-26', 'received', '9.3500', '9.3500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54684, 464, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '2.0000', '2022-04-26', 'received', '11.7000', '11.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54685, 464, NULL, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '7.3500', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.7500', '1.0000', '2022-04-26', 'received', '7.3500', '7.3500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54686, 464, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '6.5000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '2.0000', '2022-04-26', '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 (54687, 464, NULL, 3060, '57292195', 'DIPHEX JNR', NULL, '5.9000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '2.0000', '2022-04-26', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54688, 464, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-04-26', 'received', '1.5000', '1.5000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (54689, 464, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0600', '3.0000', '2022-04-26', 'received', '15.0200', '15.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (54697, NULL, NULL, 7649, '', '', 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 (54698, NULL, NULL, 7815, '', '', 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 (54699, NULL, NULL, 9217, '', '', 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 (54700, NULL, NULL, 9891, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (54701, NULL, NULL, 7366, '', '', 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 (54702, NULL, NULL, 8024, '', '', 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 (54703, NULL, NULL, 8793, '', '', 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 (54704, NULL, NULL, 7770, '', '', 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 (54705, NULL, NULL, 9894, '', '', 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 (54706, NULL, NULL, 7961, '', '', 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 (54707, NULL, NULL, 8497, '', '', 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 (54708, NULL, NULL, 9901, '', '', 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 (54709, 466, NULL, 7736, '1656', 'NUGEL -O', NULL, '18.7300', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '0.0000', '2022-04-27', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (54710, 466, NULL, 7608, '1528', 'AUNTY MARY', NULL, '9.4700', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '2.0000', '2022-04-27', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (54711, 466, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '8.8000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '3.0000', '2022-04-27', 'received', '8.8000', '8.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (54712, 466, NULL, 8944, '2864', 'VITANE SRP', NULL, '45.2400', '60.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.7200', '3.0000', '2022-04-27', 'received', '45.2400', '45.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '45.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 (54713, 466, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '3.7000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '78.0000', '2022-04-27', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (54714, 466, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.4500', '0.0000', '2022-04-27', 'received', '19.8900', '19.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (54715, 466, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-04-27', '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 (54716, 466, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '12.3000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '1.0000', '2022-04-27', 'received', '12.3000', '12.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54717, 466, NULL, 8811, '2731', 'KLIRE ANTACID S/S', NULL, '11.6000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '4.0000', '2022-04-27', 'received', '11.6000', '11.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54718, 466, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8000', '1.0000', '2022-04-27', 'received', '9.4000', '9.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (54719, 466, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '5.7900', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.3700', '2.0000', '2022-04-27', 'received', '5.7900', '5.7900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54720, 466, NULL, 7663, '1583', 'DREZ SOLTN 30ML', NULL, '8.2000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '5.0000', '2022-04-27', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54721, 466, NULL, 7661, '1581', 'DREZ POWDER', NULL, '8.3800', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.9000', '2.0000', '2022-04-27', 'received', '8.3800', '8.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (54722, 466, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '6.5000', '9.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-04-27', '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 (54723, 466, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '56.0000', '74.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '1.0000', '2022-04-27', 'received', '56.0000', '56.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (54724, 466, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '0.0000', '2022-04-27', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (54725, 466, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '8.0000', '2022-04-27', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54726, 466, NULL, 8429, '2349', 'GASTRONE SUSP', NULL, '11.1800', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.9000', '5.0000', '2022-04-27', 'received', '11.1800', '11.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (54727, 466, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '14.0000', '2022-04-27', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54728, 466, NULL, 7456, '1376', 'VENTOLIN INHALER', NULL, '34.7000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.4000', '1.0000', '2022-04-27', 'received', '34.7000', '34.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.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 (54729, 466, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '33.4800', '44.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.8800', '2.0000', '2022-04-27', 'received', '33.4800', '33.4800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '33.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 (54730, 466, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '39.3500', '52.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '236.1000', '0.0000', '2022-04-27', 'received', '39.3500', '39.3500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '39.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 (54731, 466, NULL, 7993, '1913', 'PERFECTIL PLATINUM', NULL, '60.5000', '80.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '242.0000', '1.0000', '2022-04-27', 'received', '60.5000', '60.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '60.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54732, 466, NULL, 7989, '1909', 'WELLWOMAN PLUS', NULL, '49.7300', '66.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.9200', '0.0000', '2022-04-27', 'received', '49.7300', '49.7300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.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 (54733, 466, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS per strip', NULL, '27.6700', '36.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.6800', '1.0000', '2022-04-27', 'received', '27.6700', '27.6700', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '27.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 (54734, 466, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '13.8100', '18.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.1000', '0.0000', '2022-04-27', 'received', '13.8100', '13.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.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 (54735, 466, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '240.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '373.6000', '0.0000', '2022-04-27', 'received', '186.8000', '186.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '186.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 (54736, 466, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '94.0200', '124.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.0400', '1.0000', '2022-04-27', 'received', '94.0200', '94.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '94.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 (54737, 466, NULL, 7994, '1914', 'RELCER GEL', NULL, '8.2800', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.8400', '0.0000', '2022-04-27', 'received', '8.2800', '8.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (54738, 466, NULL, 8064, '1984', 'EXETER PARA SRP', NULL, '4.9800', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '8.0000', '2022-04-27', '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 (54739, 466, NULL, 7854, '1774', 'ZINCOVIT DROP', NULL, '8.5600', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6800', '0.0000', '2022-04-27', 'received', '8.5600', '8.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (54740, 466, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.1500', '2.0000', '2022-04-27', 'received', '15.6300', '15.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (54741, 466, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.7800', '1.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7200', '24.0000', '2022-04-27', 'received', '0.7800', '0.7800', '24.0000', NULL, NULL, 1, 'pc', '24.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 (54742, 466, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.9300', '1.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3200', '24.0000', '2022-04-27', 'received', '0.9300', '0.9300', '24.0000', NULL, NULL, 1, 'pc', '24.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 (54743, 466, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.3300', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9200', '24.0000', '2022-04-27', 'received', '1.3300', '1.3300', '24.0000', NULL, NULL, 1, 'pc', '24.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 (54744, 466, NULL, 8161, '2081', 'PROWOMAN', NULL, '21.9900', '29.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.9400', '0.0000', '2022-04-27', 'received', '21.9900', '21.9900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54745, 466, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '46.7500', '62.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '4.0000', '2022-04-27', 'received', '46.7500', '46.7500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '46.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 (54746, 466, NULL, 7642, '1562', 'LEVON 2', NULL, '5.9800', '8.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.6000', '9.0000', '2022-04-27', 'received', '5.9800', '5.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54747, 466, NULL, 8401, '2321', 'CITY TONIC', NULL, '10.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2022-04-27', '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 (54748, 466, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '29.0000', '50.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-27', 'received', '29.0000', '29.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (54749, 466, NULL, 7777, '1697', 'GRISON', NULL, '12.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '0.0000', '2022-04-27', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54750, 466, NULL, 9456, '13527138', 'INOPRIL OM&J', NULL, '3.5000', '5.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '25.0000', '2022-04-27', '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 (54751, NULL, NULL, 2324, '', '', 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 (54752, NULL, NULL, 9496, '', '', 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 (54753, NULL, NULL, 7860, '', '', 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 (54754, NULL, NULL, 8747, '', '', 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 (54755, NULL, NULL, 8052, '', '', 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 (54756, NULL, NULL, 8374, '', '', 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 (54757, NULL, NULL, 9885, '', '', 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 (54778, NULL, NULL, 8409, '', '', 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 (54779, NULL, NULL, 9695, '', '', 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 (54780, NULL, NULL, 8004, '', '', 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 (54781, NULL, NULL, 9215, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (54782, NULL, NULL, 9827, '', '', 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 (54783, NULL, NULL, 1508, '', '', 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 (54784, NULL, NULL, 2210, '', '', 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 (54785, NULL, NULL, 9400, '', '', 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 (54786, NULL, NULL, 1379, '', '', 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 (54787, NULL, NULL, 9827, '', '', 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 (54788, NULL, NULL, 8042, '', '', 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 (54822, 468, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '11.6000', '15.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '9.0000', '2022-04-29', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54823, 468, NULL, 2418, '5000204957327', 'GLADE AIR FRESHNER', NULL, '12.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-04-29', '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 (54824, 468, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '9.5000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-04-29', '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 (54825, 468, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '3.0000', '2022-04-29', '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 (54826, 468, NULL, 2434, '50763677', 'PEPSODENT 123', NULL, '8.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-04-29', '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 (54827, 468, NULL, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '5.0000', '6.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-04-29', 'received', '5.0000', '5.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (54828, 468, NULL, 9531, '33732023', 'KEL 360 TOOTH PASTE', NULL, '8.5000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '2.0000', '2022-04-29', '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 (54829, 468, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '7.0000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-04-29', '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 (54830, 468, NULL, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '13.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-04-29', '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 (54831, 468, NULL, 7719, '1639', 'YAZZ PAD', NULL, '9.0000', '12.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-04-29', 'received', '9.0000', '9.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (54832, 468, NULL, 2806, '51671546', 'DETTOL SOAP BIG', NULL, '6.2500', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-04-29', 'received', '6.2500', '6.2500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (54833, 468, NULL, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '8.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-04-29', '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 (54834, 468, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '24.0000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-04-29', '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 (54835, 468, NULL, 9903, '82655350', 'ORAL B PASTE FAMILY SIZE', NULL, '18.3000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '3.0000', '2022-04-29', 'received', '18.3000', '18.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (54836, 468, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '18.0000', '21.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '3.0000', '2022-04-29', 'received', '18.0000', '18.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (54837, 468, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '17.0000', '21.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-04-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 (54838, 468, NULL, 8566, '2486', 'SURE SPRAY', NULL, '18.0000', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '4.0000', '2022-04-29', '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 (54839, 468, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '14.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-04-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 (54840, 468, NULL, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '12.0000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-04-29', '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 (54841, 468, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '6.0000', '9.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-04-29', '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 (54842, 468, NULL, 9904, '74752583', 'AXE DEODORANT SPRAY', NULL, '17.0000', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2022-04-29', '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 (54843, NULL, NULL, 9636, '', '', 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 (54844, NULL, NULL, 7417, '', '', 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 (54845, NULL, NULL, 3034, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (54846, NULL, NULL, 9834, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54847, NULL, NULL, 9902, '', '', 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 (54848, NULL, NULL, 9848, '', '', 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 (54849, NULL, NULL, 9845, '', '', 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 (54850, NULL, NULL, 9873, '', '', 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 (54851, NULL, NULL, 9624, '', '', 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 (54852, NULL, NULL, 7783, '', '', 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 (54853, NULL, NULL, 8147, '', '', 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 (54854, NULL, NULL, 9855, '', '', 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 (54855, NULL, NULL, 8803, '', '', 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 (54856, NULL, NULL, 8819, '', '', 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 (54857, NULL, NULL, 2749, '', '', 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 (54858, NULL, NULL, 9382, '', '', 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 (54859, NULL, NULL, 9528, '', '', 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 (54860, NULL, NULL, 8425, '', '', 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 (54861, NULL, NULL, 8844, '', '', 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 (54862, NULL, NULL, 9815, '', '', 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 (54863, NULL, NULL, 9881, '', '', 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 (54864, NULL, NULL, 8562, '', '', 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 (54865, NULL, NULL, 9897, '', '', 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 (54866, NULL, NULL, 1384, '', '', 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 (54867, NULL, NULL, 9000, '', '', 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 (54868, NULL, NULL, 9724, '', '', 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 (54869, NULL, NULL, 9718, '', '', 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 (54870, NULL, NULL, 9330, '', '', 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 (54871, NULL, NULL, 9798, '', '', 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 (54872, 469, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-05-03', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (54873, 469, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-05-03', '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 (54874, 469, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6500', '0.0000', '2022-05-03', 'received', '6.1300', '6.1300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54875, 469, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '39.3500', '52.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.7500', '0.0000', '2022-05-03', 'received', '39.3500', '39.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '39.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 (54876, 469, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.0000', '4.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '54.0000', '2022-05-03', 'received', '3.0000', '3.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (54877, 469, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.7000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-05-03', '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 (54878, 469, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.8200', '6.0000', '2022-05-03', 'received', '9.4700', '9.4700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (54879, 469, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-05-03', 'received', '1.4500', '1.4500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54880, 469, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-05-03', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54881, 469, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '9.4000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-05-03', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (54882, 469, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7500', '0.0000', '2022-05-03', 'received', '9.5500', '9.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (54883, 469, NULL, 2066, '05299189', 'MENTHOX LOZENGES', NULL, '0.5100', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-05-03', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54884, 469, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.5000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-03', 'received', '2.5000', '2.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (54885, 469, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.9300', '1.3000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2022-05-03', '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 (54886, 469, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.6500', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.5000', '0.0000', '2022-05-03', 'received', '2.6500', '2.6500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54887, 469, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '3.7000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '336.0000', '58.0000', '2022-05-03', 'received', '2.8000', '2.8000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (54888, 469, NULL, 7507, '1427', 'METRONIDAZOLE 200 TAB', NULL, '0.4000', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '56.0000', '2022-05-03', '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 (54889, 469, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '15.0400', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.1200', '0.0000', '2022-05-03', 'received', '15.0400', '15.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (54890, 469, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-05-03', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54891, 469, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-05-03', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54892, 469, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '49.7300', '66.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.9200', '4.0000', '2022-05-03', 'received', '49.7300', '49.7300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.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 (54893, 469, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '13.8100', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.8600', '2.0000', '2022-05-03', 'received', '13.8100', '13.8100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.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 (54894, 469, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-03', '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 (54895, 469, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '6.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-03', '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 (54896, 469, NULL, 7922, '1842', 'BABY COU LINC', NULL, '4.2000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '4.0000', '2022-05-03', '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 (54897, 469, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '14.0000', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-05-03', '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 (54898, 469, NULL, 1905, 'PR-618', 'ANTASIL', NULL, '0.5200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-05-03', '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 (54899, 469, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '4.0000', '2022-05-03', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54900, 469, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-05-03', '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 (54901, 469, NULL, 2337, '04743466', 'M2 TONE', NULL, '60.0000', '79.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-05-03', 'received', '60.0000', '60.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54902, 469, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '58.0000', '77.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '2.0000', '2022-05-03', 'received', '58.0000', '58.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54903, 469, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '16.9000', '22.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '2.0000', '2022-05-03', 'received', '16.9000', '16.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (54904, 469, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-05-03', '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 (54905, 469, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.8000', '3.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '0.0000', '2022-05-03', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (54906, 469, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-05-03', '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 (54907, 469, NULL, 7612, '1532', 'DOXYCYCLINE CAPS LETAP', NULL, '1.7500', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-05-03', 'received', '1.7500', '1.7500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (54908, 469, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.6500', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-05-03', 'received', '1.6500', '1.6500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54909, 469, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '0.0000', '2022-05-03', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54910, 469, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.9000', '47.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '0.0000', '2022-05-03', '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 (54911, 469, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '5.3500', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7500', '0.0000', '2022-05-03', 'received', '5.3500', '5.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (54912, 469, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-05-03', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (54913, 469, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.0000', '0.0000', '2022-05-03', 'received', '1.7800', '1.7800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (54914, 469, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.4700', '2.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '50.0000', '2022-05-03', 'received', '1.4700', '1.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (54915, 469, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '0.0000', '2022-05-03', 'received', '0.7700', '0.7700', '200.0000', NULL, NULL, 1, 'pc', '200.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 (54916, 469, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2022-05-03', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54917, 469, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-05-03', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (54918, 469, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4200', '0.6000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-05-03', 'received', '0.4200', '0.4200', '75.0000', NULL, NULL, 1, 'pc', '75.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 (54919, 469, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '1.5100', '2.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.4000', '0.0000', '2022-05-03', 'received', '1.5100', '1.5100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.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 (54920, 469, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '17.0000', '2022-05-03', '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 (54921, 469, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6700', '1.0000', '2022-05-03', 'received', '19.8900', '19.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (54922, 469, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7800', '2.0000', '2022-05-03', 'received', '19.8900', '19.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (54923, 469, NULL, 9495, '23845919', 'ENAFE 60MLN SUSP', NULL, '5.1000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '5.0000', '2022-05-03', 'received', '5.1000', '5.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54924, 469, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.5000', '23.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '2.0000', '2022-05-03', '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 (54925, 469, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-05-03', '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 (54926, 469, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '15.0000', '2022-05-03', '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 (54927, 469, NULL, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '54.6600', '72.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.3200', '2.0000', '2022-05-03', 'received', '54.6600', '54.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.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 (54928, 469, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '19.0000', '2022-05-03', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (54929, 469, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-05-03', 'received', '1.0800', '1.0800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.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 (54930, 469, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.4100', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.3000', '0.0000', '2022-05-03', 'received', '0.4100', '0.4100', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54931, 469, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.1500', '0.0000', '2022-05-03', 'received', '15.6300', '15.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (54932, 469, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-05-03', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54933, 469, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '59.0000', '2022-05-03', 'received', '1.5000', '1.5000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (54934, 469, NULL, 9840, '00885109', 'LEXOCAP', NULL, '1.5000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-03', '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 (54935, 469, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-03', '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 (54936, 469, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '31.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '0.0000', '2022-05-03', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (54937, 469, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.7300', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7600', '0.0000', '2022-05-03', 'received', '4.7300', '4.7300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (54938, 469, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '0.0000', '2022-05-03', 'received', '0.7700', '0.7700', '200.0000', NULL, NULL, 1, 'pc', '200.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 (54939, 469, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-05-03', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54940, 469, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-05-03', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54941, 469, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.9000', '47.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '215.4000', '4.0000', '2022-05-03', 'received', '35.9000', '35.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54942, 469, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-05-03', '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 (54943, 469, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.5000', '23.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '6.0000', '2022-05-03', 'received', '17.5000', '17.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54944, 469, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '1.0000', '2022-05-03', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54945, 469, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8900', '1.0000', '2022-05-03', 'received', '19.8900', '19.8900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '19.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 (54946, 469, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '1.0000', '2022-05-03', '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 (54947, 469, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8900', '1.0000', '2022-05-03', 'received', '15.6300', '15.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (54948, 469, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.9000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8000', '0.0000', '2022-05-03', 'received', '5.9000', '5.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54949, 469, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '6.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-03', '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 (54950, 469, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '10.2000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-05-03', 'received', '10.2000', '10.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54951, 469, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.7500', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.7500', '0.0000', '2022-05-03', 'received', '8.7500', '8.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54952, 469, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '10.2000', '13.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4000', '0.0000', '2022-05-03', 'received', '10.2000', '10.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (54953, 469, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-05-03', 'received', '0.2600', '0.2600', '50.0000', NULL, NULL, 1, 'pc', '50.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 (54954, 469, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9100', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.2000', '15.0000', '2022-05-03', 'received', '6.9100', '6.9100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (54955, 469, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.7000', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '40.0000', '2022-05-03', 'received', '2.7000', '2.7000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (54956, 469, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.4000', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-05-03', '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 (54957, 469, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '50.0000', '2022-05-03', '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 (54958, 469, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.2300', '36.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.1500', '0.0000', '2022-05-03', 'received', '27.2300', '27.2300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54959, 469, NULL, 9856, '53412793', 'ROXIDOL', NULL, '1.6000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-05-03', '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 (54960, 469, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '11.8000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-05-03', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54961, 469, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.9400', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7000', '0.0000', '2022-05-03', 'received', '6.9400', '6.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (54962, 469, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '39.3500', '52.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.4000', '2.0000', '2022-05-03', 'received', '39.3500', '39.3500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '39.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 (54963, 469, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '150.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '0.0000', '2022-05-03', 'received', '0.7700', '0.7700', '150.0000', NULL, NULL, 1, 'pc', '150.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 (54964, 469, NULL, 1699, 'PR-412', 'LEENA CAPS', NULL, '3.2000', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-05-03', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (54965, 469, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '3.3000', '4.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2022-05-03', 'received', '3.3000', '3.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (54966, 469, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.6900', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.4500', '2.0000', '2022-05-03', 'received', '9.6900', '9.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (54967, 469, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '14.0000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-05-03', '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 (54968, 469, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '0.0000', '2022-05-03', 'received', '13.0000', '13.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (54969, 469, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.0000', '2.0000', '2022-05-03', 'received', '26.0000', '26.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (54970, 469, NULL, 3034, '33733514', 'ARABA BAZAN', NULL, '19.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2022-05-03', '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 (54971, 469, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '22.0000', '29.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '6.0000', '2022-05-03', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54972, 469, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '31.5000', '42.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.5000', '3.0000', '2022-05-03', 'received', '31.5000', '31.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54973, 469, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '14.0000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '5.0000', '2022-05-03', '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 (54974, 469, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.8000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2022-05-03', 'received', '10.8000', '10.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (54975, 469, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.0000', '7.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '59.0000', '2022-05-03', 'received', '5.0000', '5.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (54976, NULL, NULL, 7910, '', '', 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 (54977, NULL, NULL, 8163, '', '', 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 (54978, NULL, NULL, 9199, '', '', 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 (54979, NULL, NULL, 9854, '', '', 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 (54980, NULL, NULL, 8967, '', '', 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 (54981, NULL, NULL, 9582, '', '', 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 (54982, NULL, NULL, 7592, '', '', 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 (54983, NULL, NULL, 8005, '', '', 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 (54984, NULL, NULL, 3019, '', '', 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 (54985, NULL, NULL, 1827, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-61.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54986, NULL, NULL, 8980, '', '', 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 (54987, NULL, NULL, 9472, '', '', 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 (54988, NULL, NULL, 7368, '', '', 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 (54989, 465, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '15.5000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '3.0000', '2022-04-26', '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 (54990, 465, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '12.5000', '16.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '3.0000', '2022-04-26', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (54991, 465, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-04-26', '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 (54992, 465, NULL, 2573, '11557669', 'MASADA', NULL, '9.3000', '12.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '3.0000', '2022-04-26', '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 (54993, 465, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '4.2000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-04-26', '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 (54994, 465, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '5.0000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-04-26', '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 (54995, 465, NULL, 9565, '95802365', 'PASSION YOGHURT STRAWBERRY/VANILLA', NULL, '5.5000', '7.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '17.0000', '2022-04-26', 'received', '5.5000', '5.5000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (54996, 465, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '18.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '13.0000', '2022-04-26', '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 (54997, NULL, NULL, 7898, '', '', 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 (54998, NULL, NULL, 8299, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54999, NULL, NULL, 2454, '', '', 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 (55000, 470, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '12.0000', '15.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '14.0000', '2022-05-04', 'received', '12.0000', '12.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (55001, 470, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.4500', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '11.0000', '2022-05-04', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55002, 470, NULL, 9012, '2932', 'VIP BRUSH', NULL, '0.7500', '1.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '11.0000', '2022-05-04', '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 (55003, 470, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '3.5000', '4.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2022-05-04', '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 (55004, 470, NULL, 7720, '1640', 'YAZZ LINER', NULL, '6.5000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '6.0000', '2022-05-04', '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 (55005, 470, NULL, 7722, '1642', 'ALWAYS DOUBLE', NULL, '15.0000', '18.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '4.0000', '2022-05-04', 'received', '15.0000', '15.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (55006, 470, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '13.5000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '1.0000', '2022-05-04', '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 (55007, 470, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '30.0000', '35.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-05-04', '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 (55008, 470, NULL, 2567, '83596243', 'NAN 1', NULL, '34.0000', '46.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '1.0000', '2022-05-04', '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 (55009, 470, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.8000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '50.0000', '2022-05-04', '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 (55010, 470, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '50.0000', '66.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2022-05-04', '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 (55011, 470, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.2000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '4.0000', '2022-05-04', '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 (55051, NULL, NULL, 8674, '', '', 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 (55052, NULL, NULL, 8075, '', '', 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 (55053, NULL, NULL, 7819, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55054, NULL, NULL, 9090, '', '', 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 (55055, NULL, NULL, 9632, '', '', 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 (55056, NULL, NULL, 9850, '', '', 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 (55057, NULL, NULL, 9841, '', '', 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 (55058, NULL, NULL, 7350, '', '', 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 (55059, NULL, NULL, 7521, '', '', 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 (55060, 467, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '17.0000', '19.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '2.0000', '2022-04-27', '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 (55061, 467, NULL, 9215, '3135', 'WELCHS TOFFEE', NULL, '1.6000', '2.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '20.0000', '2022-04-27', 'received', '1.6000', '1.6000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (55062, 467, NULL, 7512, '1432', 'LIFEBOUY SOAP', NULL, '8.0000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-04-27', '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 (55063, 467, NULL, 8319, '2239', 'DETTOL SOAP', NULL, '5.5000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-04-27', '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 (55064, 467, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '7.0000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '4.0000', '2022-04-27', '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 (55065, 467, NULL, 8745, '2665', 'DON SIMON', NULL, '13.0000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '1.0000', '2022-04-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 (55066, 467, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2022-04-27', '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 (55067, 467, NULL, 8759, '2679', 'FRUTELLI', NULL, '10.0000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-04-27', '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 (55068, 467, NULL, 8743, '2663', 'CERES DRINK', NULL, '14.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-04-27', '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 (55069, 467, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.0000', '2022-04-27', '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 (55070, 467, NULL, 9084, '3004', 'APPLE JUICE', NULL, '16.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-04-27', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55071, 467, NULL, 8061, '1981', 'CHOCOLATE', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '5.0000', '2022-04-27', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55072, 467, NULL, 8415, '2335', 'CHOCOLATE M/S', NULL, '3.6000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '20.0000', '2022-04-27', 'received', '3.6000', '3.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55073, 467, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-04-27', '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 (55074, 467, NULL, 7653, '1573', 'PRETTY LADY LINER', NULL, '7.5000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '1.0000', '2022-04-27', '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 (55075, 467, NULL, 7719, '1639', 'YAZZ PAD', NULL, '9.0000', '12.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '5.0000', '2022-04-27', 'received', '9.0000', '9.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (55076, 467, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-04-27', '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 (55077, 467, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '13.5000', '18.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '8.0000', '2022-04-27', 'received', '13.5000', '13.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (55078, 467, NULL, 7721, '1641', 'ALWAYS MAXI', NULL, '7.5000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '1.0000', '2022-04-27', '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 (55079, 467, NULL, 8566, '2486', 'SURE SPRAY', NULL, '18.0000', '21.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-04-27', '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 (55080, 467, NULL, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', NULL, '27.9800', '44.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-27', 'received', '27.9800', '27.9800', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '27.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 (55081, 467, NULL, 9665, '80134213', 'GAVISCON PEPPERMINT SUSP 150ML', NULL, '30.7500', '37.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-04-27', 'received', '30.7500', '30.7500', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '30.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 (55082, NULL, NULL, 9388, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55083, NULL, NULL, 7831, '', '', 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 (55084, NULL, NULL, 9822, '', '', 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 (55085, NULL, NULL, 9727, '', '', 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 (55107, NULL, NULL, 2108, '', '', 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 (55108, NULL, NULL, 8512, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (55109, 472, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '7.0000', '2022-05-06', 'received', '17.4000', '17.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55110, 472, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '39.3500', '52.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.4000', '0.0000', '2022-05-06', 'received', '39.3500', '39.3500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '39.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 (55111, 472, NULL, 7409, '1329', 'PRIMOLUT N', NULL, '14.1000', '19.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '6.0000', '2022-05-06', 'received', '14.1000', '14.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (55112, 472, NULL, 9804, '36365929', 'COLD NASO NASAL', NULL, '3.0500', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '4.0000', '2022-05-06', 'received', '3.0500', '3.0500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55113, 472, NULL, 7989, '1909', 'WELLWOMAN PLUS', NULL, '49.7300', '66.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.4600', '0.0000', '2022-05-06', 'received', '49.7300', '49.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (55114, 472, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '29.8000', '40.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.2000', '0.0000', '2022-05-06', 'received', '29.8000', '29.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '29.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 (55115, 472, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '10.0000', '2022-05-06', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55116, 472, NULL, 7666, '1586', 'DYMOL TAB', NULL, '4.9000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2022-05-06', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55117, 472, NULL, 7770, '1690', 'LUEX BABY COUGH', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2022-05-06', '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 (55118, 472, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '5.2300', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1500', '0.0000', '2022-05-06', 'received', '5.2300', '5.2300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55119, 472, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '2.0000', '2022-05-06', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55120, 472, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '7.0000', '2022-05-06', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (55121, 472, NULL, 7780, '1700', 'LUFART TAB', NULL, '11.6000', '15.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-05-06', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55122, 472, NULL, 7416, '1336', 'CLOTRI DENK CREAM', NULL, '25.8000', '34.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.4000', '0.0000', '2022-05-06', 'received', '25.8000', '25.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.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 (55123, 472, NULL, 9850, '31114846', 'INFA V WASH 100ML', NULL, '17.6000', '23.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '1.0000', '2022-05-06', 'received', '17.6000', '17.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.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 (55124, 472, NULL, 9511, '96030287', 'INFA V WASH', NULL, '9.9000', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '2.0000', '2022-05-06', 'received', '9.9000', '9.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55125, 472, NULL, 7458, '1378', 'VOLLTFAST 50MG', NULL, '1.7700', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '30.0000', '2022-05-06', 'received', '1.7700', '1.7700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (55126, 472, NULL, 7806, '1726', 'DOMI 10', NULL, '2.0000', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-05-06', '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 (55127, 472, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2022-05-06', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55128, 472, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5200', '4.0000', '2022-05-06', 'received', '3.6300', '3.6300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.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 (55129, 472, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-05-06', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55130, 472, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-05-06', '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 (55131, 472, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6600', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '14.0000', '2022-05-06', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (55132, 472, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2022-05-06', '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 (55133, 472, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.2000', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '17.0000', '2022-05-06', '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 (55134, 472, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.8000', '0.0000', '2022-05-06', 'received', '49.6000', '49.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (55135, 472, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-05-06', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55136, 472, NULL, 7857, '1777', 'NUGEL', NULL, '18.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-06', '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 (55137, 472, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '38.5000', '51.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '3.0000', '2022-05-06', 'received', '38.5000', '38.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55138, 472, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-05-06', '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 (55139, 472, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.3800', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '16.0000', '2022-05-06', 'received', '2.3800', '2.3800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (55140, 472, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '2.7000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '6.0000', '2022-05-06', '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 (55141, 472, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '19.5000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '1.0000', '2022-05-06', '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 (55142, 472, NULL, 8712, '2632', 'GUDAPET SRP', NULL, '7.1000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '0.0000', '2022-05-06', '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 (55143, 472, NULL, 7871, '1791', 'NEXIUM 20', NULL, '7.0900', '9.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.5200', '0.0000', '2022-05-06', 'received', '7.0900', '7.0900', '28.0000', NULL, NULL, 1, 'pc', '28.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 (55144, 472, NULL, 7559, '1479', 'NEXIUM 40 14S', NULL, '10.6600', '14.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '298.4800', '4.0000', '2022-05-06', 'received', '10.6600', '10.6600', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '10.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 (55145, 472, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.9300', '1.3000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '40.0000', '2022-05-06', 'received', '0.9300', '0.9300', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55146, 473, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '12.5000', '16.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '0.0000', '2022-05-06', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55147, 473, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-05-06', '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 (55148, 473, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '16.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-05-06', '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 (55149, 473, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '13.0000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-05-06', '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 (55150, 473, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '14.0000', '18.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2022-05-06', '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 (55151, 473, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '2.0000', '2022-05-06', '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 (55152, 473, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '17.0000', '22.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '1.0000', '2022-05-06', '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 (55153, 473, NULL, 3039, '29292273', 'ADUSA HERBAL MIXTURE', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-05-06', '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 (55154, 473, NULL, 3040, '41228459', 'ADUSA HERBAL CAPS', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '3.0000', '2022-05-06', '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 (55155, 473, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-05-06', '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 (55156, 473, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-06', '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 (55157, 473, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-05-06', '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 (55158, 473, NULL, 9905, '85810978', 'TAMSULOSIN 400MG CAPS TEVA', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-05-06', '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 (55159, 473, NULL, 9906, '92944648', 'EXCLOFEN EYE DROPS 1ML', NULL, '5.7500', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '2.0000', '2022-05-06', 'received', '5.7500', '5.7500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55160, 473, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.2000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '11.0000', '2022-05-06', 'received', '5.2000', '5.2000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55161, NULL, NULL, 9823, '', '', 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 (55162, NULL, NULL, 7888, '', '', 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 (55163, NULL, NULL, 8896, '', '', 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 (55164, NULL, NULL, 7955, '', '', 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 (55165, NULL, NULL, 9655, '', '', 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 (55166, NULL, NULL, 7785, '', '', 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 (55167, NULL, NULL, 9875, '', '', 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 (55168, NULL, NULL, 9840, '', '', 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 (55169, NULL, NULL, 9396, '', '', 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 (55170, NULL, NULL, 9456, '', '', 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 (55171, NULL, NULL, 8136, '', '', 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 (55172, NULL, NULL, 9107, '', '', 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 (55173, NULL, NULL, 7725, '', '', 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 (55174, NULL, NULL, 8952, '', '', 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 (55175, NULL, NULL, 8372, '', '', 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 (55176, NULL, NULL, 8367, '', '', 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 (55177, NULL, NULL, 9741, '', '', 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 (55178, NULL, NULL, 2463, '', '', 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 (55179, NULL, NULL, 8664, '', '', 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 (55180, NULL, NULL, 8072, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (55181, NULL, NULL, 7520, '', '', 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 (55182, NULL, NULL, 8808, '', '', 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 (55183, NULL, NULL, 8849, '', '', 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 (55184, NULL, NULL, 8925, '', '', 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 (55185, NULL, NULL, 9242, '', '', 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 (55186, NULL, NULL, 8070, '', '', 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 (55187, NULL, NULL, 7893, '', '', 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 (55188, NULL, NULL, 9788, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55189, NULL, NULL, 7396, '', '', 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 (55190, NULL, NULL, 7401, '', '', 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 (55191, NULL, NULL, 7345, '', '', 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 (55192, NULL, NULL, 8089, '', '', 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 (55193, NULL, NULL, 8657, '', '', 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 (55194, NULL, NULL, 7723, '', '', 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 (55195, NULL, NULL, 7587, '', '', 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 (55196, NULL, NULL, 8899, '', '', 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 (55197, NULL, NULL, 9878, '', '', 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 (55198, NULL, NULL, 2000, '', '', 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 (55199, NULL, NULL, 9389, '', '', 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 (55200, NULL, NULL, 7420, '', '', 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 (55201, NULL, NULL, 8230, '', '', 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 (55202, NULL, NULL, 8811, '', '', 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 (55203, NULL, NULL, 7761, '', '', 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 (55204, NULL, NULL, 7502, '', '', 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 (55205, NULL, NULL, 8174, '', '', 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 (55206, NULL, NULL, 2125, '', '', 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 (55207, NULL, NULL, 2855, '', '', 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 (55208, NULL, NULL, 9883, '', '', 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 (55209, NULL, NULL, 7346, '', '', 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 (55210, NULL, NULL, 7788, '', '', 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 (55211, NULL, NULL, 7695, '', '', 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 (55212, NULL, NULL, 8123, '', '', 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 (55213, NULL, NULL, 7865, '', '', 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 (55214, NULL, NULL, 7687, '', '', 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 (55215, NULL, NULL, 1828, '', '', 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 (55216, NULL, NULL, 7946, '', '', 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 (55217, NULL, NULL, 9320, '', '', 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 (55355, NULL, NULL, 7777, '', '', 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 (55356, NULL, NULL, 7438, '', '', 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 (55357, NULL, NULL, 1622, '', '', 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 (55358, NULL, NULL, 2079, '', '', 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 (55359, NULL, NULL, 7938, '', '', 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 (55360, NULL, NULL, 9811, '', '', 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 (55361, NULL, NULL, 8889, '', '', 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 (55362, NULL, NULL, 8452, '', '', 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 (55363, NULL, NULL, 7775, '', '', 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 (55364, NULL, NULL, 7558, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-210.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55388, NULL, NULL, 7392, '', '', 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 (55410, 475, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3500', '7.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.4000', '4.0000', '2022-05-11', 'received', '5.3500', '5.3500', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '5.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 (55411, 475, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-05-11', '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 (55412, 475, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.7000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2022-05-11', 'received', '3.7000', '3.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55413, 475, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2022-05-11', 'received', '1.4000', '1.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55414, 475, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '0.0000', '2022-05-11', 'received', '1.0500', '1.0500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (55415, 475, NULL, 8767, '2687', 'KISS DRINK', NULL, '9.6000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2022-05-11', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55416, 475, NULL, 8769, '2689', 'HUNTERS', NULL, '8.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-05-11', '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 (55417, 475, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '8.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-05-11', '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 (55418, 475, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '7.4000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-05-11', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55419, 475, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.5000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-05-11', '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 (55420, 475, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.8300', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.9800', '0.0000', '2022-05-11', 'received', '3.8300', '3.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (55421, 475, NULL, 8982, '2902', 'CRANBERRY', NULL, '18.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-05-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 (55422, 475, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-05-11', '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 (55423, 475, NULL, 8933, '2853', 'RED BULL', NULL, '8.5000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-05-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 (55424, 475, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2022-05-11', '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 (55425, 475, NULL, 9213, '3133', 'ROX DRINKS', NULL, '6.4000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '1.0000', '2022-05-11', '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 (55426, 475, NULL, 8743, '2663', 'CERES DRINK', NULL, '14.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-05-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 (55427, 475, NULL, 8758, '2678', 'PURE HEAVEN', NULL, '13.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-05-11', '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 (55428, 475, NULL, 8759, '2679', 'FRUTELLI', NULL, '10.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-11', '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 (55429, 475, NULL, 8745, '2665', 'DON SIMON', NULL, '13.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-11', '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 (55430, 475, NULL, 9468, '27739747', 'PARMALAT  1KG', NULL, '27.0000', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-05-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 (55431, 475, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '15.5000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-05-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 (55432, 475, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '8.3000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2022-05-11', 'received', '8.3000', '8.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (55433, 475, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '1.0000', '2.0000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-05-11', 'received', '1.0000', '1.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (55434, 475, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '1.0000', '1.5000', '32.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '14.0000', '2022-05-11', 'received', '1.0000', '1.0000', '32.0000', NULL, NULL, 1, 'pc', '32.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 (55435, 476, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '4.0000', '2022-05-11', '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 (55436, 476, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-05-11', '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 (55437, 476, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '7.4000', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '6.0000', '2022-05-11', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55438, 476, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.5000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '16.0000', '2022-05-11', '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 (55439, 476, NULL, 8982, '2902', 'CRANBERRY', NULL, '18.0000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-05-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 (55440, 476, NULL, 9469, '40088756', 'PANACHE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2022-05-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 (55441, 476, NULL, 9468, '27739747', 'PARMALAT  1KG', NULL, '27.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-05-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 (55442, 476, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '15.5000', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '2.0000', '2022-05-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 (55443, 476, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '8.3000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '2.0000', '2022-05-11', 'received', '8.3000', '8.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (55444, 476, NULL, 8761, '2681', 'VITRAC', NULL, '20.0000', '22.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '1.0000', '2022-05-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 (55445, 476, NULL, 8758, '2678', 'PURE HEAVEN', NULL, '13.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-05-11', '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 (55446, 476, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.8300', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.9800', '0.0000', '2022-05-11', 'received', '3.8300', '3.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (55447, 476, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '5.0000', '2022-05-11', 'received', '3.8000', '3.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55448, 476, NULL, 8759, '2679', 'FRUTELLI', NULL, '10.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-05-11', '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 (55449, 476, NULL, 8743, '2663', 'CERES DRINK', NULL, '14.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-05-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 (55450, 476, NULL, 8745, '2665', 'DON SIMON', NULL, '13.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-11', '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 (55451, 476, NULL, 9213, '3133', 'ROX DRINKS', NULL, '6.4000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2022-05-11', '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 (55452, 476, NULL, 8933, '2853', 'RED BULL', NULL, '8.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '2.0000', '2022-05-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 (55453, 476, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '6.7500', '9.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '10.0000', '2022-05-11', 'received', '6.7500', '6.7500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.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 (55454, 476, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '6.0000', '2022-05-11', 'received', '1.4000', '1.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55455, 476, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '12.0000', '2022-05-11', 'received', '1.0500', '1.0500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (55456, 476, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '35.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '8.0000', '2022-05-11', '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 (55457, NULL, NULL, 9881, '', '', 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 (55458, NULL, NULL, 9911, '', '', 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 (55459, NULL, NULL, 9895, '', '', 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 (55460, NULL, NULL, 2999, '', '', 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 (55461, NULL, NULL, 7402, '', '', 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 (55462, NULL, NULL, 8825, '', '', 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 (55463, NULL, NULL, 3076, '', '', 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 (55464, NULL, NULL, 9911, '', '', 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 (55465, NULL, NULL, 7903, '', '', 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 (55466, NULL, NULL, 8036, '', '', 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 (55467, NULL, NULL, 9088, '', '', 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 (55468, 477, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '94.0200', '124.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.0400', '2.0000', '2022-05-11', 'received', '94.0200', '94.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '94.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 (55469, 477, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-05-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 (55470, 477, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '3.0000', '2022-05-11', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (55471, 477, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '6.0000', '2022-05-11', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (55472, 477, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '8.0000', '2022-05-11', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (55473, 477, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '0.0000', '2022-05-11', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (55474, 477, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '4.0000', '2022-05-11', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55475, 477, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6500', '1.0000', '2022-05-11', 'received', '6.1300', '6.1300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55476, 477, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.6300', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.1500', '4.0000', '2022-05-11', 'received', '12.6300', '12.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (55477, 477, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2022-05-11', '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 (55478, 477, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '3.0000', '2022-05-11', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55479, 477, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.4000', '16.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '4.0000', '2022-05-11', 'received', '12.4000', '12.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55480, 477, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '10.0000', '2022-05-11', '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 (55481, 477, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '2.0000', '2022-05-11', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55482, 477, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '6.8000', '9.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6000', '12.0000', '2022-05-11', 'received', '6.8000', '6.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55483, 477, NULL, 1636, '4031571069116', 'VIT-B DENK', NULL, '14.2100', '19.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.1000', '7.0000', '2022-05-11', 'received', '14.2100', '14.2100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (55484, 477, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '8.0000', '2022-05-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 (55485, 477, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '11.0000', '2022-05-11', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55486, 477, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '29.3000', '39.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.5000', '0.0000', '2022-05-11', 'received', '29.3000', '29.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (55487, 477, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.3800', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '16.0000', '2022-05-11', 'received', '2.3800', '2.3800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (55488, 477, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.6500', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.5000', '33.0000', '2022-05-11', 'received', '2.6500', '2.6500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55489, 477, NULL, 9822, '47018837', 'RENALKA', NULL, '23.8000', '31.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.0000', '3.0000', '2022-05-11', 'received', '23.8000', '23.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (55490, 477, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '3.7000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-05-11', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (55491, 477, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '9.0000', '2022-05-11', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (55492, 477, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-05-11', '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 (55493, 477, NULL, 9291, '3211', 'FIESTA LUBRICANT GEL SMALL', NULL, '15.4000', '20.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '5.0000', '2022-05-11', 'received', '15.4000', '15.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '15.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 (55494, 477, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-05-11', '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 (55495, 477, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '29.0000', '2022-05-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 (55496, 477, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '38.8000', '51.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.4000', '3.0000', '2022-05-11', 'received', '38.8000', '38.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.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 (55497, 477, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '1.1700', '2.0000', '90.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.3000', '38.0000', '2022-05-11', 'received', '1.1700', '1.1700', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '1.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 (55498, 477, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '91.3000', '121.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.3000', '0.0000', '2022-05-11', 'received', '91.3000', '91.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '91.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 (55499, 477, NULL, 7346, '1266', 'PREGNACARE PLUS', NULL, '91.3000', '121.0000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-05-11', 'received', '91.3000', '91.3000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '91.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 (55500, 477, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '5.3000', '7.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '20.0000', '2022-05-11', 'received', '5.3000', '5.3000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (55501, 477, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '3.0000', '2022-05-11', '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 (55502, 477, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '8.0000', '2022-05-11', '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 (55503, 477, NULL, 8031, '1951', 'GYNO DAK PESS', NULL, '32.0000', '43.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2022-05-11', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (55504, 477, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.4000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '4.0000', '2022-05-11', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55505, 477, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '9.5800', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.9000', '4.0000', '2022-05-11', 'received', '9.5800', '9.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (55506, 477, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '3.0000', '2022-05-11', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55507, 477, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3000', '3.0000', '2022-05-11', 'received', '16.6600', '16.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (55508, 477, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2022-05-11', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55509, 477, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '8.3800', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.9000', '3.0000', '2022-05-11', 'received', '8.3800', '8.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (55510, 477, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '8.0000', '2022-05-11', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (55511, 477, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.1000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '7.0000', '2022-05-11', '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 (55512, 477, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '25.0000', '2022-05-11', '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 (55513, 477, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '72.6400', '96.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '363.2000', '4.0000', '2022-05-11', 'received', '72.6400', '72.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '72.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 (55514, 477, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '34.5000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.5000', '3.0000', '2022-05-11', 'received', '34.5000', '34.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (55515, 477, NULL, 7896, '1816', 'DIAGELLATES LARGE', NULL, '7.0000', '36.0000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-05-11', 'received', '7.0000', '7.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (55516, 477, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '6.6000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2022-05-11', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55517, 477, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '13.5000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '1.0000', '2022-05-11', '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 (55518, 477, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '18.0000', '2022-05-11', 'received', '3.8000', '3.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55519, 477, NULL, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '65.8300', '87.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8300', '1.0000', '2022-05-11', 'received', '65.8300', '65.8300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '65.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 (55520, 477, NULL, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '50.9300', '74.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.9300', '1.0000', '2022-05-11', 'received', '50.9300', '50.9300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '50.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 (55521, 477, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '7.7000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '3.0000', '2022-05-11', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55522, NULL, NULL, 7588, '', '', 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 (55523, NULL, NULL, 7703, '', '', 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 (55524, NULL, NULL, 7338, '', '', 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 (55525, NULL, NULL, 9685, '', '', 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 (55526, 478, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '0.0000', '2022-05-12', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (55527, 478, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-05-12', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55528, 478, NULL, 9867, '87882090', 'CELEBREX PER CAPS', NULL, '9.4000', '12.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '282.0000', '9.0000', '2022-05-12', 'received', '9.4000', '9.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '9.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 (55529, 478, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '6.7700', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.3100', '0.0000', '2022-05-12', 'received', '6.7700', '6.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (55530, 478, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '15.0000', '2022-05-12', 'received', '7.2000', '7.2000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (55531, 478, NULL, 9817, '44012910', 'NESBEN SUSP', NULL, '5.9800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '1.0000', '2022-05-12', '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 (55532, 478, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-05-12', '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 (55533, 478, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '7.4000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-05-12', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55534, 478, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-05-12', 'received', '0.2400', '0.2400', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55535, 478, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.4000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '4.0000', '2022-05-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 (55536, 478, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-05-12', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55537, 478, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-05-12', '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 (55538, 478, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '19.6200', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4800', '0.0000', '2022-05-12', 'received', '19.6200', '19.6200', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55539, 478, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '14.0000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '5.0000', '2022-05-12', '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 (55540, 478, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-05-12', '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 (55541, 478, NULL, 7323, '1243', 'LUEX CHILD DRY', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-05-12', '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 (55542, 478, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '1.9000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '4.0000', '2022-05-12', 'received', '1.9000', '1.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55543, 478, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '6.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-05-12', '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 (55544, 478, NULL, 8813, '2733', 'FERROUS SULPHATE', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-05-12', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55545, 478, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '10.8000', '14.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-05-12', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55546, 478, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '60.0000', '80.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-05-12', 'received', '60.0000', '60.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55547, 478, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-05-12', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55548, 478, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-05-12', '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 (55549, 478, NULL, 9841, '1270489', 'LUMIZAP SUSP 60ML', NULL, '5.1900', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1400', '0.0000', '2022-05-12', 'received', '5.1900', '5.1900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (55550, 478, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-05-12', '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 (55551, 478, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-05-12', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55552, 478, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '13.0000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-05-12', '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 (55553, 478, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '8.3800', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2800', '2.0000', '2022-05-12', 'received', '8.3800', '8.3800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (55554, 478, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.3000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '4.0000', '2022-05-12', 'received', '4.3000', '4.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55555, 478, NULL, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '7.1000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-05-12', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55556, 478, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0700', '0.0000', '2022-05-12', '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 (55557, 478, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-05-12', '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 (55558, 478, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-05-12', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55559, 478, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '74.0000', '98.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.0000', '0.0000', '2022-05-12', 'received', '74.0000', '74.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '74.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55560, 478, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '0.0000', '2022-05-12', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (55561, 478, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-12', 'received', '3.0000', '3.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (55562, 478, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.9000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '2.0000', '2022-05-12', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (55563, 478, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '50.0000', '2022-05-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 (55564, 478, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-12', '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 (55565, 478, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-05-12', 'received', '3.7000', '3.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55566, 478, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '0.0000', '2022-05-12', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55567, 478, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '5.0000', '2022-05-12', '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 (55568, 478, NULL, 7398, '1318', 'WORMPLEX 400 SUSP. 20ML', NULL, '6.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-05-12', '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 (55569, 478, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '7.8000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-05-12', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55570, 478, NULL, 9897, '11531163', 'GEBEXIME 500MG TAB PER STRIP', NULL, '1.7300', '2.3000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '22.0000', '2022-05-12', 'received', '1.7300', '1.7300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (55571, 478, NULL, 8876, '2796', 'AMOXIL SUSP LUEX', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-12', '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 (55572, 478, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-05-12', '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 (55573, 478, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '7.0000', '2022-05-12', '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 (55574, 478, NULL, 9697, '32019049', 'ACICLOVIR 400MG (RANBAXY)', NULL, '7.4600', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.3000', '1.0000', '2022-05-12', 'received', '7.4600', '7.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (55575, 478, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2000', '0.0000', '2022-05-12', 'received', '4.7000', '4.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55576, 478, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '5.7500', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7500', '0.0000', '2022-05-12', 'received', '5.7500', '5.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55577, 478, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.3800', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '3.0000', '2022-05-12', 'received', '0.3800', '0.3800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (55578, 478, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '7.9000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '2.0000', '2022-05-12', '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 (55579, 478, NULL, 9864, '42711107', 'ONIDOLL TAB', NULL, '1.6000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '13.0000', '2022-05-12', '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 (55580, 478, NULL, 9863, '77851271', 'ONITA SYR 200ML', NULL, '15.5000', '20.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-05-12', 'received', '15.5000', '15.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55581, 478, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-05-12', '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 (55582, 478, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.1000', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-05-12', '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 (55583, 478, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '14.1000', '19.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4000', '0.0000', '2022-05-12', 'received', '14.1000', '14.1000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (55584, 478, NULL, 9894, '24864084', 'HYDROGEN PEROXIDE MAL.TITI', NULL, '4.5000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '2.0000', '2022-05-12', '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 (55585, 478, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '16.9600', '22.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.9600', '0.0000', '2022-05-12', 'received', '16.9600', '16.9600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '16.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 (55586, 478, NULL, 9633, '58280884', 'fluconazole 150mg (TEVA)', NULL, '8.4100', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2300', '3.0000', '2022-05-12', 'received', '8.4100', '8.4100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (55587, 478, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '6.8000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2022-05-12', '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 (55588, 478, NULL, 2999, '72534299', 'ALPHA GARLIC CAPS', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-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 (55589, 478, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3500', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '16.0000', '2022-05-12', 'received', '1.3500', '1.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55590, 478, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '49.7300', '66.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.9200', '2.0000', '2022-05-12', 'received', '49.7300', '49.7300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.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 (55591, 478, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '132.2000', '174.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.2000', '0.0000', '2022-05-12', 'received', '132.2000', '132.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '132.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 (55592, 478, NULL, 9909, '64471918', 'ALLACAN 10MG (CETIRIZINE)', NULL, '4.7000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '1.0000', '2022-05-12', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55593, 478, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-05-12', '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 (55594, 478, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '9.1600', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8000', '0.0000', '2022-05-12', 'received', '9.1600', '9.1600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (55595, 478, NULL, 9910, '79540803', 'MAN UP CAPS', NULL, '130.0000', '172.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '1.0000', '2022-05-12', 'received', '130.0000', '130.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (55596, 478, NULL, 9911, '83156611', 'T SEC 1G TAB', NULL, '2.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '3.0000', '2022-05-12', '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 (55597, 478, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '16.7000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.4000', '2.0000', '2022-05-12', 'received', '16.7000', '16.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55598, 478, NULL, 1470, '8906042660979', 'LEXOFEN SUSP 150ML', NULL, '12.9000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2022-05-12', '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 (55599, 478, NULL, 7322, '1242', 'LUEX ADULT DRY', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-05-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 (55600, 478, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-05-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 (55601, 478, NULL, 7556, '1476', 'OLFEN GEL 50GM', NULL, '25.0000', '33.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2022-05-12', '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 (55602, 478, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '29.6300', '39.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8900', '0.0000', '2022-05-12', 'received', '29.6300', '29.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (55603, 478, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '1.1700', '2.0000', '90.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.3000', '34.0000', '2022-05-12', 'received', '1.1700', '1.1700', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '1.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 (55604, 478, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '38.8000', '51.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.6000', '1.0000', '2022-05-12', 'received', '38.8000', '38.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.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 (55605, 478, NULL, 9912, '45196430', 'ADOM LADY CAPS', NULL, '14.4000', '19.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '1.0000', '2022-05-12', 'received', '14.4000', '14.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55606, 478, NULL, 9913, '43329922', 'ADOM LADY MIXTURE', NULL, '13.2000', '17.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-05-12', 'received', '13.2000', '13.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55607, 478, NULL, 9914, '45710979', 'FLEMING 1000MG TABLET', NULL, '46.9900', '62.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.9600', '0.0000', '2022-05-12', 'received', '46.9900', '46.9900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '46.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 (55608, NULL, NULL, 7633, '', '', 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 (55609, NULL, NULL, 7341, '', '', 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 (55610, NULL, NULL, 9415, '', '', 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 (55611, NULL, NULL, 8297, '', '', 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 (55612, NULL, NULL, 8600, '', '', 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 (55613, NULL, NULL, 8963, '', '', 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 (55614, NULL, NULL, 8949, '', '', 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 (55615, NULL, NULL, 8451, '', '', 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 (55616, NULL, NULL, 9881, '', '', 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 (55617, NULL, NULL, 7665, '', '', 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 (55618, NULL, NULL, 7938, '', '', 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 (55619, NULL, NULL, 8969, '', '', 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 (55620, NULL, NULL, 7632, '', '', 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 (55621, 479, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.3000', '2.0000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '0.0000', '2022-05-13', 'received', '1.3000', '1.3000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (55622, 479, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-13', '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 (55623, 479, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-05-13', '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 (55624, 479, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.3000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2022-05-13', 'received', '4.3000', '4.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55625, 479, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.9000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '0.0000', '2022-05-13', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (55626, 479, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-05-13', '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 (55627, 479, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-05-13', '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 (55628, 479, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-05-13', '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 (55629, 479, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '16.5900', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7700', '0.0000', '2022-05-13', 'received', '16.5900', '16.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (55630, 479, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-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 (55631, 479, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '10.5300', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5900', '1.0000', '2022-05-13', 'received', '10.5300', '10.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (55632, 479, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.0000', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-05-13', '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 (55633, 479, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-05-13', '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 (55634, 479, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '8.5600', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.8000', '0.0000', '2022-05-13', 'received', '8.5600', '8.5600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (55635, 479, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '0.0000', '2022-05-13', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (55636, 479, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.3800', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '0.0000', '2022-05-13', 'received', '2.3800', '2.3800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (55637, 479, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3500', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-05-13', 'received', '1.3500', '1.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55638, 479, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.8000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-05-13', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55639, 479, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-05-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 (55640, 479, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '0.0000', '2022-05-13', '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 (55641, 479, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-05-13', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55642, 479, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '25.9000', '34.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '1.0000', '2022-05-13', '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 (55643, 479, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '4.0000', '2022-05-13', '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 (55644, 479, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.1400', '0.0000', '2022-05-13', 'received', '4.6900', '4.6900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55645, 479, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '1.8400', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8000', '0.0000', '2022-05-13', 'received', '1.8400', '1.8400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (55646, 479, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-05-13', '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 (55647, 479, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '1.9000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-05-13', 'received', '1.9000', '1.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55648, 479, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.1000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-05-13', '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 (55649, 479, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '6.8000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2022-05-13', '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 (55650, 479, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '8.3800', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2800', '0.0000', '2022-05-13', 'received', '8.3800', '8.3800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (55651, 479, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '7.7000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-05-13', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55652, 479, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3500', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7500', '0.0000', '2022-05-13', 'received', '14.3500', '14.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (55653, 479, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '9.1600', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8000', '0.0000', '2022-05-13', 'received', '9.1600', '9.1600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (55654, 479, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-05-13', '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 (55655, 479, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-05-13', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55656, 479, NULL, 1699, 'PR-412', 'LEENA CAPS', NULL, '3.2300', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.3000', '0.0000', '2022-05-13', 'received', '3.2300', '3.2300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (55657, 479, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '132.2000', '174.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.2000', '0.0000', '2022-05-13', 'received', '132.2000', '132.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '132.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 (55658, 479, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '39.3500', '52.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.4000', '0.0000', '2022-05-13', 'received', '39.3500', '39.3500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '39.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 (55659, 479, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '19.6200', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4800', '0.0000', '2022-05-13', 'received', '19.6200', '19.6200', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55660, 479, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '7.9000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '0.0000', '2022-05-13', '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 (55661, 479, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.4200', '0.0000', '2022-05-13', 'received', '10.0700', '10.0700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (55662, 479, NULL, 9413, '3333', 'MALAR 2 DS', NULL, '9.0000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '10.0000', '2022-05-13', '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 (55663, 479, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '8.0000', '2022-05-13', '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 (55664, 479, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-05-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 (55665, 479, NULL, 8844, '2764', 'FEROFIX', NULL, '4.9900', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9500', '0.0000', '2022-05-13', 'received', '4.9900', '4.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55666, 479, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-05-13', '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 (55667, 479, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '2.0000', '2022-05-13', '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 (55668, 479, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.3000', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2022-05-13', 'received', '9.3000', '9.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55669, 479, NULL, 9841, '1270489', 'LUMIZAP SUSP 60ML', NULL, '5.1900', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1400', '0.0000', '2022-05-13', 'received', '5.1900', '5.1900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (55670, 479, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.8000', '0.0000', '2022-05-13', 'received', '49.6000', '49.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (55671, 479, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.9000', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-05-13', '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 (55672, 479, NULL, 2904, '85860104', 'LIV 52 SYRUP', NULL, '20.3000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.9000', '3.0000', '2022-05-13', 'received', '20.3000', '20.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (55673, 479, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2000', '0.0000', '2022-05-13', 'received', '4.7000', '4.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55674, 479, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-05-13', '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 (55675, 479, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.3800', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-05-13', 'received', '0.3800', '0.3800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (55676, 479, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-05-13', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55677, 479, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-05-13', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (55678, 479, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '7.4000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-05-13', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55679, 479, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '49.7300', '66.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '298.3800', '0.0000', '2022-05-13', 'received', '49.7300', '49.7300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '49.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 (55680, 479, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '3.2000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-05-13', 'received', '3.2000', '3.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55681, 479, NULL, 8876, '2796', 'AMOXIL SUSP LUEX', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-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 (55682, 479, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.0000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2022-05-13', '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 (55683, 479, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '12.5000', '16.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '1.0000', '2022-05-13', '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 (55684, 479, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-13', 'received', '3.0000', '3.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (55685, 479, NULL, 9897, '11531163', 'GEBEXIME 500MG TAB PER STRIP', NULL, '1.7300', '2.3000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '16.0000', '2022-05-13', 'received', '1.7300', '1.7300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (55686, 479, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '14.0000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-05-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 (55687, 479, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '21.2500', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.7500', '0.0000', '2022-05-13', 'received', '21.2500', '21.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (55688, 479, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '6.7700', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.3100', '0.0000', '2022-05-13', 'received', '6.7700', '6.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (55689, 479, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '0.0000', '2022-05-13', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (55690, 479, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.0000', '17.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-05-13', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55691, 479, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-13', '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 (55692, 479, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.2000', '21.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '0.0000', '2022-05-13', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (55693, 479, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5100', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-05-13', 'received', '0.5100', '0.5100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55694, 479, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.1000', '5.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-05-13', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55695, 479, NULL, 8844, '2764', 'FEROFIX', NULL, '4.9900', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9600', '0.0000', '2022-05-13', 'received', '4.9900', '4.9900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55696, 479, NULL, 2935, '15629840', 'LUEX ADULT CHESTY COUGH', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-05-13', '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 (55697, 479, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-05-13', '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 (55698, 479, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.1200', '37.0000', '2022-05-13', 'received', '1.1900', '1.1900', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '1.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 (55699, 479, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '5.0000', '2022-05-13', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55700, 479, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-05-13', '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 (55701, 479, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '206.4000', '0.0000', '2022-05-13', 'received', '1.7200', '1.7200', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '1.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 (55702, 479, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.8000', '0.0000', '2022-05-13', 'received', '49.6000', '49.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (55703, 479, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '41.8000', '55.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.6000', '2.0000', '2022-05-13', 'received', '41.8000', '41.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (55704, 479, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6000', '16.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2022-05-13', 'received', '11.6000', '11.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55705, 479, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.3000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-05-13', 'received', '9.3000', '9.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55706, 479, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '31.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.5000', '0.0000', '2022-05-13', 'received', '22.9000', '22.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (55707, 479, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.0000', '17.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '2.0000', '2022-05-13', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55708, 479, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-05-13', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (55709, 479, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-05-13', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55710, 479, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-13', '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 (55711, 479, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-05-13', '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 (55712, 479, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '3.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '25.0000', '2022-05-13', '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 (55713, 479, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '16.5900', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7700', '0.0000', '2022-05-13', 'received', '16.5900', '16.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (55714, 479, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '21.2500', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.7500', '0.0000', '2022-05-13', 'received', '21.2500', '21.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (55715, 479, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-05-13', '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 (55716, 479, NULL, 2156, '10421120', 'LEENA CAPS', NULL, '3.2500', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '4.0000', '2022-05-13', '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 (55717, 479, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.1000', '0.0000', '2022-05-13', 'received', '15.0200', '15.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (55718, 479, NULL, 2904, '85860104', 'LIV 52 SYRUP', NULL, '20.3000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.9000', '3.0000', '2022-05-13', 'received', '20.3000', '20.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (55719, 479, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.3000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '1.0000', '2022-05-13', 'received', '5.3000', '5.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55720, 479, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3500', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7500', '0.0000', '2022-05-13', 'received', '14.3500', '14.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (55721, 479, NULL, 9900, '68117970', 'GRMox SUSP', NULL, '3.7200', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3200', '5.0000', '2022-05-13', 'received', '3.7200', '3.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (55722, 479, NULL, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '55.0000', '73.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '2.0000', '2022-05-13', '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 (55723, 479, NULL, 8031, '1951', 'GYNO DAK PESS', NULL, '32.0000', '43.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '2.0000', '2022-05-13', 'received', '32.0000', '32.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (55724, 479, NULL, 7403, '1323', 'MOTILIUM 10 MG 30 TABS ORAL JANSSEN', NULL, '1.0100', '1.3000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.6000', '46.0000', '2022-05-13', '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 (55725, 479, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '10.2000', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '2.0000', '2022-05-13', 'received', '10.2000', '10.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (55726, 479, NULL, 1834, 'PR-547', 'SPORANOX 15?S TABS', NULL, '6.9600', '9.2000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '30.0000', '2022-05-13', 'received', '6.9600', '6.9600', '30.0000', NULL, NULL, 1, 'pc', '30.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 (55727, NULL, NULL, 9899, '', '', 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 (55728, NULL, NULL, 9744, '', '', 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 (55729, NULL, NULL, 9634, '', '', 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 (55730, NULL, NULL, 8172, '', '', 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 (55731, NULL, NULL, 9683, '', '', 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 (55732, NULL, NULL, 9911, '', '', 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 (55733, NULL, NULL, 9880, '', '', 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 (55734, NULL, NULL, 7806, '', '', 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 (55735, NULL, NULL, 7997, '', '', 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 (55736, NULL, NULL, 8355, '', '', 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 (55737, NULL, NULL, 2548, '', '', 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 (55738, NULL, NULL, 8836, '', '', 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 (55739, NULL, NULL, 7458, '', '', 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 (55740, NULL, NULL, 9599, '', '', 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 (55741, NULL, NULL, 7742, '', '', 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 (55742, NULL, NULL, 8297, '', '', 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 (55743, NULL, NULL, 2035, '', '', 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 (55744, NULL, NULL, 2849, '', '', 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 (55745, NULL, NULL, 1780, '', '', 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 (55746, NULL, NULL, 9672, '', '', 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 (55747, NULL, NULL, 9854, '', '', 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 (55748, NULL, NULL, 7333, '', '', 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 (55749, NULL, NULL, 1728, '', '', 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 (55750, 480, NULL, 8539, '2459', 'ASMADRIN', NULL, '0.6400', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '39.0000', '2022-05-16', '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 (55751, 480, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.9000', '8.0000', '2022-05-16', 'received', '4.6900', '4.6900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55752, 480, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '10.0000', '2022-05-16', '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 (55753, 480, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '10.0000', '2022-05-16', '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 (55754, 480, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-05-16', '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 (55755, 480, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '7.8000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-05-16', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55756, 480, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '74.0000', '98.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.0000', '1.0000', '2022-05-16', 'received', '74.0000', '74.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '74.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55757, 480, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '135.6500', '179.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '406.9500', '3.0000', '2022-05-16', 'received', '135.6500', '135.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '135.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 (55758, 480, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '9.0000', '2022-05-16', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55759, 480, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-05-16', '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 (55760, 480, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-05-16', 'received', '1.4000', '1.4000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (55761, 480, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '2.0000', '2022-05-16', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55762, 480, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '0.0000', '2022-05-16', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (55763, 480, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '1.0000', '2022-05-16', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55764, 480, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.0000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '6.0000', '2022-05-16', '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 (55765, 480, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '7.0000', '2022-05-16', '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 (55766, 480, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '14.8100', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.1000', '7.0000', '2022-05-16', 'received', '14.8100', '14.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (55767, 480, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '3.9500', '5.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '0.0000', '2022-05-16', 'received', '3.9500', '3.9500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55768, 480, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '2.8000', '4.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '11.0000', '2022-05-16', '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 (55769, 480, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-05-16', '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 (55770, 480, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.0000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-05-16', '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 (55771, 480, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9600', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '1.0000', '2022-05-16', 'received', '3.9600', '3.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (55772, 480, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '55.0000', '73.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2022-05-16', 'received', '55.0000', '55.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55773, 480, NULL, 2311, '90764208', 'PREGNACARE 19', NULL, '50.9300', '67.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.9300', '1.0000', '2022-05-16', 'received', '50.9300', '50.9300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '50.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 (55774, 480, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '12.5000', '16.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '5.0000', '2022-05-16', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55775, 480, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.4000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2022-05-16', 'received', '14.4000', '14.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55776, 480, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.9000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '3.0000', '2022-05-16', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55777, 480, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.2300', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1500', '4.0000', '2022-05-16', '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 (55778, 480, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '4.0000', '2022-05-16', '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 (55779, 480, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '3.0000', '2022-05-16', '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 (55780, 480, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '1.0000', '2022-05-16', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55781, 480, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '3.0000', '2022-05-16', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55782, 480, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-05-16', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55783, 480, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-05-16', 'received', '3.0000', '3.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (55784, 480, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '1.0000', '2022-05-16', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55785, 480, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '8.5600', '11.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1200', '1.0000', '2022-05-16', 'received', '8.5600', '8.5600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (55786, 480, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '6.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2022-05-16', '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 (55787, 480, NULL, 9718, '64620536', 'AMINO PEP 200ML', NULL, '15.9500', '21.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9000', '1.0000', '2022-05-16', 'received', '15.9500', '15.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (55788, 480, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '8.3000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '1.0000', '2022-05-16', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (55789, 480, NULL, 1470, '8906042660979', 'LEXOFEN SUSP 150ML', NULL, '12.9000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '5.0000', '2022-05-16', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55790, 480, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '10.0000', '2022-05-16', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55791, 480, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '16.5900', '22.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.7200', '3.0000', '2022-05-16', 'received', '16.5900', '16.5900', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '16.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 (55792, 480, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '29.0000', '38.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '2.0000', '2022-05-16', 'received', '29.0000', '29.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55793, 480, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.2000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.2000', '0.0000', '2022-05-16', '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 (55794, 480, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.2000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '5.0000', '2022-05-16', '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 (55795, 480, NULL, 9881, '67043330', 'HAPPYRONA', NULL, '5.0000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2022-05-16', '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 (55796, 480, NULL, 8736, '2656', 'LEVOTHYROXINE 100MG', NULL, '12.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-05-16', '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 (55797, 480, NULL, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', NULL, '14.7700', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3100', '1.0000', '2022-05-16', '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 (55798, 480, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '29.6300', '39.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8900', '0.0000', '2022-05-16', 'received', '29.6300', '29.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (55799, 480, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '19.6200', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.1000', '3.0000', '2022-05-16', 'received', '19.6200', '19.6200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55800, 480, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '5.4000', '7.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '20.0000', '2022-05-16', 'received', '5.4000', '5.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55801, 480, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.9000', '22.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '3.0000', '2022-05-16', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (55802, 480, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.8500', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '10.0000', '2022-05-16', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (55803, 480, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '14.0000', '2022-05-16', 'received', '3.8000', '3.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55804, 480, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5500', '1.0000', '2022-05-16', 'received', '9.5500', '9.5500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '9.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 (55805, 480, NULL, 9881, '67043330', 'HAPPYRONA', NULL, '5.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '2.0000', '2022-05-16', '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 (55806, 480, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0600', '1.0000', '2022-05-16', 'received', '2.5300', '2.5300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '2.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 (55807, 480, NULL, 1949, '68032552', ' Foliron tonic 200ML', NULL, '3.1000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.2000', '2.0000', '2022-05-16', 'received', '3.1000', '3.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55808, 480, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.4200', '33.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.4200', '1.0000', '2022-05-16', 'received', '25.4200', '25.4200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '25.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 (55809, 480, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '8.1400', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2800', '2.0000', '2022-05-16', 'received', '8.1400', '8.1400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (55810, 480, NULL, 7938, '1858', 'ETISALA CAPS', NULL, '2.9000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.8000', '0.0000', '2022-05-16', 'received', '2.9000', '2.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55811, 480, NULL, 7944, '1864', 'DIPEX TAB', NULL, '2.0100', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '9.0000', '2022-05-16', 'received', '2.0100', '2.0100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55812, 480, NULL, 9537, '37913304', 'CALCICARE SUSP', NULL, '36.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-05-16', '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 (55813, 480, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '4.9000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8000', '2.0000', '2022-05-16', '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 (55814, 480, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7500', '5.0000', '2022-05-16', 'received', '2.9500', '2.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (55815, 480, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '7.8900', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7800', '1.0000', '2022-05-16', '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 (55816, 480, NULL, 9760, '13208200', 'RUFEDOL TAB', NULL, '1.1000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '8.0000', '2022-05-16', 'received', '1.1000', '1.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55817, 480, NULL, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', NULL, '2.9000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.8000', '2.0000', '2022-05-16', 'received', '2.9000', '2.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55818, 480, NULL, 9330, '3250', 'APETATRUST', NULL, '8.6000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2000', '1.0000', '2022-05-16', '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 (55819, 480, NULL, 2096, '90371186', 'LETAVIT SYRUP 125ML', NULL, '1.5500', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.1000', '1.0000', '2022-05-16', 'received', '1.5500', '1.5500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (55820, 480, NULL, 2156, '10421120', 'LEENA CAPS', NULL, '3.2500', '4.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2500', '4.0000', '2022-05-16', 'received', '3.2500', '3.2500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55821, 480, NULL, 8547, '2467', 'ODDYMIN CAPS', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '3.0000', '2022-05-16', '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 (55822, 480, NULL, 1698, 'PR-411', 'ODYMIN SYR', NULL, '7.5000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2022-05-16', '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 (55823, 480, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.2500', '2.0000', '2022-05-16', 'received', '1.4500', '1.4500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55824, 480, NULL, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '6.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2022-05-16', '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 (55825, 480, NULL, 2990, '71484949', 'ENTRAMOL 500 TAB', NULL, '3.7300', '5.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.9500', '15.0000', '2022-05-16', 'received', '3.7300', '3.7300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '3.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 (55826, 480, NULL, 9815, '04029155', 'BLOCOLD TABLET', NULL, '0.9000', '1.2000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '12.0000', '2022-05-16', 'received', '0.9000', '0.9000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (55827, 480, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6300', '2.0000', '2022-05-16', 'received', '14.2100', '14.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (55828, 480, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9800', '0.0000', '2022-05-16', 'received', '16.6600', '16.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (55829, 480, NULL, 9841, '1270489', 'LUMIZAP SUSP 60ML', NULL, '5.1900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9500', '3.0000', '2022-05-16', 'received', '5.1900', '5.1900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (55830, 480, NULL, 9814, '07253413', 'HEPTOLIF TABLETS', NULL, '0.9000', '1.2000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2022-05-16', 'received', '0.9000', '0.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55831, 480, NULL, 3019, '72127749', 'HEPTOLIFE SYR 200ML', NULL, '9.7000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.1000', '0.0000', '2022-05-16', 'received', '9.7000', '9.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (55832, 480, NULL, 1820, '8901040306010', 'TIMOL 0.5% (SANOFI)', NULL, '8.3700', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7400', '2.0000', '2022-05-16', 'received', '8.3700', '8.3700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (55838, NULL, NULL, 1358, '', '', 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 (55839, NULL, NULL, 7668, '', '', 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 (55840, NULL, NULL, 8504, '', '', 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 (55841, NULL, NULL, 7963, '', '', 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 (55842, NULL, NULL, 8951, '', '', 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 (55843, NULL, NULL, 3016, '', '', 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 (55844, NULL, NULL, 9462, '', '', 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 (55845, NULL, NULL, 7994, '', '', 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 (55846, NULL, NULL, 7541, '', '', 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 (55847, NULL, NULL, 8006, '', '', 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 (55848, NULL, NULL, 1471, '', '', 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 (55849, NULL, NULL, 2152, '', '', 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 (55850, NULL, NULL, 8411, '', '', 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 (55851, NULL, NULL, 8566, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (55852, NULL, NULL, 9164, '', '', 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 (55853, NULL, NULL, 8950, '', '', 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 (55854, NULL, NULL, 9725, '', '', 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 (55855, NULL, NULL, 7604, '', '', 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 (55856, NULL, NULL, 9886, '', '', 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 (55857, NULL, NULL, 7759, '', '', 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 (55858, NULL, NULL, 9569, '', '', 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 (55859, NULL, NULL, 9508, '', '', 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 (55860, NULL, NULL, 7375, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-60.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55861, NULL, NULL, 9394, '', '', 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 (55862, NULL, NULL, 7832, '', '', 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 (55863, NULL, NULL, 7787, '', '', 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 (55864, NULL, NULL, 8428, '', '', 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 (55865, 482, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '19.5000', '26.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '9.0000', '2022-05-19', 'received', '19.5000', '19.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55866, 482, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3000', '6.0000', '2022-05-19', 'received', '4.0300', '4.0300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (55867, 482, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '2.0000', '2022-05-19', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55868, 482, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '13.2000', '17.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '3.0000', '2022-05-19', '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 (55869, 482, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.9100', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '33.0000', '2022-05-19', 'received', '0.9100', '0.9100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (55870, 482, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7600', '3.7000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '276.0000', '62.0000', '2022-05-19', 'received', '2.7600', '2.7600', '100.0000', NULL, NULL, 1, 'pc', '100.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 (55871, 482, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '4.0000', '2022-05-19', '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 (55872, 482, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '37.7200', '50.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.3200', '5.0000', '2022-05-19', 'received', '37.7200', '37.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (55873, 482, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.1500', '3.0000', '2022-05-19', 'received', '15.6300', '15.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (55874, 482, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.0000', '4.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '55.0000', '2022-05-19', 'received', '3.0000', '3.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (55875, 482, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-19', '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 (55876, 482, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.2000', '0.0000', '2022-05-19', 'received', '49.6000', '49.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (55877, 482, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '3.0000', '2022-05-19', 'received', '7.8500', '7.8500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55878, 482, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '33.4800', '44.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.9600', '2.0000', '2022-05-19', 'received', '33.4800', '33.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (55879, 482, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '36.4900', '48.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.9800', '2.0000', '2022-05-19', 'received', '36.4900', '36.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.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 (55880, 482, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-05-19', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55881, 482, NULL, 2245, '77795384', 'MAGACID TABLETS', NULL, '0.7000', '1.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '23.0000', '2022-05-19', 'received', '0.7000', '0.7000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (55882, 482, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-05-19', '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 (55883, 482, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '8.0000', '2022-05-19', 'received', '2.9500', '2.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (55884, 482, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-05-19', '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 (55885, 482, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '94.0200', '124.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0200', '0.0000', '2022-05-19', 'received', '94.0200', '94.0200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '94.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 (55886, 482, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2022-05-19', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55887, 482, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '5.0000', '2022-05-19', '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 (55888, 482, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '24.1000', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.3000', '0.0000', '2022-05-19', 'received', '24.1000', '24.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (55889, 482, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3500', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.1000', '4.0000', '2022-05-19', 'received', '5.3500', '5.3500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (55890, 483, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-05-19', '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 (55891, 483, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '2.9000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-05-19', '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 (55892, 483, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.6000', '0.0000', '2022-05-19', 'received', '4.0300', '4.0300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (55893, 483, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '0.0000', '2022-05-19', '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 (55894, 483, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-05-19', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55895, 483, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '55.0000', '73.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2022-05-19', 'received', '55.0000', '55.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55896, 483, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1500', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-05-19', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (55897, 483, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '8.5000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-05-19', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55898, 483, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-05-19', '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 (55899, 483, NULL, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '3.2800', '4.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4000', '0.0000', '2022-05-19', 'received', '3.2800', '3.2800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (55900, 483, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-05-19', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (55901, 483, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '9.6000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-05-19', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55902, 483, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '291.6000', '0.0000', '2022-05-19', 'received', '14.5800', '14.5800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (55903, 483, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '4.5600', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '20.0000', '2022-05-19', 'received', '4.5600', '4.5600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (55904, 483, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.7000', '14.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.0000', '0.0000', '2022-05-19', 'received', '10.7000', '10.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55905, 483, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '7.8000', '10.0000', '11.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '0.0000', '2022-05-19', 'received', '7.8000', '7.8000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (55906, 483, NULL, 1796, 'PR-509', 'SEPTRIN SY MG', NULL, '2.9000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '5.0000', '2022-05-19', '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 (55907, 483, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9900', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9500', '0.0000', '2022-05-19', 'received', '4.9900', '4.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55908, 483, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-05-19', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (55909, 483, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '0.0000', '2022-05-19', 'received', '7.1500', '7.1500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.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 (55910, 483, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '0.0000', '2022-05-19', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (55911, 483, NULL, 7519, '1439', 'BELLS TEETHING MIX', NULL, '18.3000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '0.0000', '2022-05-19', 'received', '18.3000', '18.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (55912, 483, NULL, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2022-05-19', '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 (55913, 483, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.6300', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.1500', '1.0000', '2022-05-19', 'received', '12.6300', '12.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (55914, 483, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2022-05-19', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55915, 483, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.4000', '16.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-05-19', 'received', '12.4000', '12.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55916, 483, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '4.0000', '2022-05-19', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55917, 483, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '67.0000', '2022-05-19', 'received', '1.5000', '1.5000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (55918, 483, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-05-19', 'received', '0.6500', '0.6500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.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 (55919, 483, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.8500', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-05-19', 'received', '0.8500', '0.8500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (55920, 483, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-05-19', '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 (55921, 483, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.7500', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-05-19', 'received', '2.7500', '2.7500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55922, 483, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '0.0000', '2022-05-19', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (55923, 483, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.5500', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7500', '20.0000', '2022-05-19', '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 (55924, 483, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2022-05-19', 'received', '2.8000', '2.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (55925, 483, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-05-19', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55926, 483, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7600', '3.7000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.6000', '0.0000', '2022-05-19', 'received', '2.7600', '2.7600', '60.0000', NULL, NULL, 1, 'pc', '60.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 (55927, 483, NULL, 9511, '96030287', 'INFA V WASH', NULL, '9.9000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '4.0000', '2022-05-19', '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 (55928, 483, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '0.0000', '2022-05-19', 'received', '2.9500', '2.9500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.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 (55929, 483, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '2.4900', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.5000', '0.0000', '2022-05-19', 'received', '2.4900', '2.4900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55930, 483, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.6500', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-05-19', 'received', '1.6500', '1.6500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55931, 483, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.3600', '0.5000', '70.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '33.0000', '2022-05-19', 'received', '0.3600', '0.3600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (55932, 483, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '0.0000', '2022-05-19', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (55933, 483, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '13.8100', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.1000', '0.0000', '2022-05-19', 'received', '13.8100', '13.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.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 (55934, 483, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '10.0000', '2022-05-19', '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 (55935, 483, NULL, 2108, '85249693', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-05-19', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (55936, 483, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '5.0000', '2022-05-19', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55937, 483, NULL, 7386, '1306', 'CORORANGE HAEMATINIC CAPS SOFTGELS', NULL, '8.2000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-05-19', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55938, 483, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '9.9000', '13.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '1.0000', '2022-05-19', 'received', '9.9000', '9.9000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (55939, 483, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '6.7000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-05-19', '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 (55940, 483, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '11.7000', '15.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '2.0000', '2022-05-19', '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 (55941, 483, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5200', '0.0000', '2022-05-19', 'received', '15.6300', '15.6300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (55942, 483, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '8.9000', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '0.0000', '2022-05-19', 'received', '8.9000', '8.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (55943, 483, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '7.7000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-05-19', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55944, 483, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2022-05-19', 'received', '1.4500', '1.4500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (55945, 483, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.7300', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '2.0000', '2022-05-19', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (55946, 483, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '18.0000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-19', '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 (55947, 483, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-05-19', '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 (55948, 483, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-05-19', '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 (55949, 483, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.1000', '30.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '1.0000', '2022-05-19', 'received', '23.1000', '23.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (55950, 483, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-05-19', '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 (55951, 483, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6700', '2.0000', '150.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.5000', '21.0000', '2022-05-19', 'received', '0.6700', '0.6700', '150.0000', NULL, NULL, 1, 'pc', '150.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 (55952, 483, NULL, 9889, '33111267', 'MAALOX STICK PACKS 20\'S', NULL, '1.7000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '11.0000', '2022-05-19', 'received', '1.7000', '1.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55953, 483, NULL, 8449, '2369', 'FEROLLEX SRP', NULL, '14.9000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6000', '1.0000', '2022-05-19', 'received', '14.9000', '14.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (55954, 483, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.7000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2022-05-19', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55955, 483, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-05-19', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55956, 483, NULL, 9496, '70277717', 'ENAFEN SUSP 60ML', NULL, '5.1000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4000', '0.0000', '2022-05-19', 'received', '5.1000', '5.1000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (55957, 483, NULL, 7965, '1885', 'EXFORGE 10/160', NULL, '6.8100', '9.1000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-05-19', 'received', '6.8100', '6.8100', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '6.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 (55958, 483, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.6800', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '3.0000', '2022-05-19', 'received', '10.6800', '10.6800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (55959, 483, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '18.3300', '24.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.6500', '0.0000', '2022-05-19', 'received', '18.3300', '18.3300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (55960, 483, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '49.0000', '2022-05-19', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (55961, 483, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.8000', '3.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '0.0000', '2022-05-19', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (55962, 483, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-05-19', '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 (55963, 483, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3500', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '0.0000', '2022-05-19', 'received', '5.3500', '5.3500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.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 (55964, 474, NULL, 8039, '1959', 'ACIDOM', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '0.0000', '2022-05-10', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (55965, 474, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '10.0000', '2022-05-10', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (55966, 474, NULL, 7857, '1777', 'NUGEL', NULL, '18.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '5.0000', '2022-05-10', '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 (55967, 474, NULL, 7641, '1561', 'LYDIA', NULL, '7.2000', '9.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '18.0000', '2022-05-10', 'received', '7.2000', '7.2000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (55968, 474, NULL, 9817, '44012910', 'NESBEN SUSP', NULL, '5.9800', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '5.0000', '2022-05-10', '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 (55969, 474, NULL, 7682, '1602', 'FLEMEX ADULT', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-05-10', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55970, 474, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '2.0000', '2022-05-10', 'received', '2.7200', '2.7200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55971, 474, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '32.0000', '2022-05-10', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (55972, 474, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '29.4000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '0.0000', '2022-05-10', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55973, 474, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '84.0000', '2022-05-10', 'received', '1.6000', '1.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (55974, 474, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.7200', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '30.0000', '2022-05-10', 'received', '1.7200', '1.7200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (55975, 474, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '22.9000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.5000', '3.0000', '2022-05-10', 'received', '22.9000', '22.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (55976, 474, NULL, 9001, '2921', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-05-10', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55977, 474, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '9.0000', '2022-05-10', '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 (55978, 474, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '3.1700', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5000', '0.0000', '2022-05-10', 'received', '3.1700', '3.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (55979, 474, NULL, 8186, '2106', 'AMPICILIN CAPS', NULL, '1.5600', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-05-10', 'received', '1.5600', '1.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (55980, 474, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-05-10', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55981, 474, NULL, 7708, '1628', 'TEEDAR', NULL, '8.3000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-05-10', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (55982, 474, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '16.5900', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7700', '2.0000', '2022-05-10', 'received', '16.5900', '16.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (55983, 474, NULL, 7402, '1322', 'VERMOX SUSP', NULL, '18.9000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '1.0000', '2022-05-10', '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 (55984, 474, NULL, 7666, '1586', 'DYMOL TAB', NULL, '4.9000', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '15.0000', '2022-05-10', '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 (55985, 474, NULL, 7963, '1883', 'HEPTO PEP', NULL, '10.6000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '2.0000', '2022-05-10', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55986, 474, NULL, 7561, '1481', 'HYDROCORT CREAM', NULL, '16.2000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '5.0000', '2022-05-10', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55987, 474, NULL, 8497, '2417', 'ZENTEL SUSP', NULL, '13.8100', '18.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.1000', '0.0000', '2022-05-10', 'received', '13.8100', '13.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.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 (55988, 474, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '14.4000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-05-10', 'received', '14.4000', '14.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (55989, 474, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '0.0000', '2022-05-10', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (55990, 474, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-05-10', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (55991, 474, NULL, 8457, '2377', 'CARTEF SUSP', NULL, '4.9000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2022-05-10', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (55992, 474, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6300', '3.0000', '2022-05-10', 'received', '14.2100', '14.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (55993, 474, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '29.0000', '38.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '1.0000', '2022-05-10', 'received', '29.0000', '29.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (55994, 474, NULL, 8967, '2887', 'S/SEAS JOINT SUPPLEX', NULL, '59.8000', '79.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '0.0000', '2022-05-10', 'received', '59.8000', '59.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '59.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 (55995, 474, NULL, 8020, '1940', 'MUCOLEX J', NULL, '15.0000', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-05-10', '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 (55996, 474, NULL, 8021, '1941', 'MUCOLEX ADULT', NULL, '18.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-05-10', '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 (55997, 474, NULL, 8452, '2372', 'HEPTOLIFE', NULL, '11.5000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2022-05-10', '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 (55998, 474, NULL, 8597, '2517', 'WELLWOMAN MAX', NULL, '59.0000', '78.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2022-05-10', 'received', '59.0000', '59.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55999, 474, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '132.2000', '174.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.2000', '0.0000', '2022-05-10', 'received', '132.2000', '132.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '132.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 (56000, 474, NULL, 7689, '1609', 'KAMACLOX', NULL, '9.1000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '1.0000', '2022-05-10', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (56001, 474, NULL, 7327, '1247', 'motilium', NULL, '1.0100', '1.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.3000', '22.0000', '2022-05-10', 'received', '1.0100', '1.0100', '30.0000', NULL, NULL, 1, 'pc', '30.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 (56002, 474, NULL, 8462, '2382', 'GARLIC PEARLS OSONS', NULL, '7.1000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '2.0000', '2022-05-10', '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 (56003, 474, NULL, 7348, '1268', 'ALPHA GARLIC CAPS', NULL, '13.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-10', '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 (56004, 474, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '9.5800', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.9000', '0.0000', '2022-05-10', 'received', '9.5800', '9.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (56005, 474, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '10.0700', '13.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.6300', '6.0000', '2022-05-10', 'received', '10.0700', '10.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.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 (56006, 474, NULL, 7743, '1663', 'KISS', NULL, '1.3100', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4400', '0.0000', '2022-05-10', 'received', '1.3100', '1.3100', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (56007, 474, NULL, 7768, '1688', 'ZUBES EXP', NULL, '12.2000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '0.0000', '2022-05-10', '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 (56008, 474, NULL, 9088, '3008', 'ZUBES EXTRA STRONG', NULL, '15.4000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '2.0000', '2022-05-10', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (56009, 474, NULL, 8481, '2401', 'PIRITON ORG SRP', NULL, '38.8000', '51.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.8000', '0.0000', '2022-05-10', 'received', '38.8000', '38.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '38.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 (56010, 474, NULL, 7652, '1572', 'PIRITON TAB', NULL, '1.1700', '1.6000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-05-10', 'received', '1.1700', '1.1700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (56011, 474, NULL, 7555, '1475', 'OLFEN GEL20GM', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-05-10', '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 (56012, 474, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '30.7000', '40.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.4000', '2.0000', '2022-05-10', 'received', '30.7000', '30.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (56013, 474, NULL, 8047, '1967', 'DEEP FREEZE OINT', NULL, '31.4000', '41.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.8000', '1.0000', '2022-05-10', 'received', '31.4000', '31.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.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 (56014, 474, NULL, 9863, '77851271', 'ONITA SYR 200ML', NULL, '15.5000', '20.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-05-10', '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 (56015, 474, NULL, 8504, '2424', 'LISINOPRIL 20 TEVA', NULL, '8.1000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.3000', '0.0000', '2022-05-10', 'received', '8.1000', '8.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56016, 474, NULL, 7341, '1261', 'POLYGYNAX', NULL, '33.5000', '44.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.0000', '4.0000', '2022-05-10', 'received', '33.5000', '33.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56017, 474, NULL, 7552, '1472', 'LOFNAC GEL', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '4.0000', '2022-05-10', '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 (56018, 474, NULL, 8170, '2090', 'LEOPARD OINT', NULL, '5.7500', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7500', '3.0000', '2022-05-10', 'received', '5.7500', '5.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56019, 474, NULL, 7658, '1578', 'DICLO DENK SUPP', NULL, '2.6500', '3.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '265.0000', '58.0000', '2022-05-10', 'received', '2.6500', '2.6500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56020, 474, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '17.0000', '22.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '8.0000', '2022-05-10', '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 (56021, 474, NULL, 7482, '1402', 'MAXMOX 500', NULL, '4.0000', '5.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '20.0000', '2022-05-10', '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 (56022, 474, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '6.3200', '8.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.6000', '15.0000', '2022-05-10', 'received', '6.3200', '6.3200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '6.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 (56023, 474, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5700', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '3.0000', '2022-05-10', 'received', '1.5700', '1.5700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (56024, 474, NULL, 7757, '1677', 'ZINNAT 500', NULL, '135.6500', '179.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '406.9500', '0.0000', '2022-05-10', 'received', '135.6500', '135.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '135.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 (56025, 474, NULL, 7412, '1332', 'COLODIUM', NULL, '2.2000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-05-10', '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 (56026, 474, NULL, 7417, '1337', 'DALACIN 300MG ORIGINAL', NULL, '9.6300', '13.0000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '308.1600', '11.0000', '2022-05-10', 'received', '9.6300', '9.6300', '32.0000', NULL, NULL, 1, 'pc', '32.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 (56027, 474, NULL, 8202, '2122', 'GYPRONE SRP', NULL, '9.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-05-10', '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 (56028, 474, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '9.0000', '2022-05-10', '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 (56029, 474, NULL, 7640, '1560', 'LENOR', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-05-10', '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 (56030, 474, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.9100', '1.5000', '150.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.5000', '108.0000', '2022-05-10', 'received', '0.9100', '0.9100', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '0.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 (56031, 474, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '39.3500', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.7000', '0.0000', '2022-05-10', 'received', '39.3500', '39.3500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.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 (56032, 474, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '8.7800', '11.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '1.0000', '2022-05-10', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (56033, 474, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '29.0000', '2022-05-10', 'received', '0.4100', '0.4100', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56034, 474, NULL, 7401, '1321', 'WELLBABY MULTI-VIT LIQ', NULL, '74.3000', '98.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.6000', '0.0000', '2022-05-10', 'received', '74.3000', '74.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '74.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 (56035, 474, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '18.0000', '2022-05-10', '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 (56036, 474, NULL, 8103, '2023', 'LYNUS OINT', NULL, '26.9800', '36.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.9600', '2.0000', '2022-05-10', 'received', '26.9800', '26.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (56037, 474, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2022-05-10', '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 (56038, 474, NULL, 7802, '1722', '~AMOXICILIN 250 BLISS', NULL, '1.2200', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '50.0000', '2022-05-10', '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 (56039, 474, NULL, 8965, '2885', 'METHYLATED SP B/S', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-05-10', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56040, 474, NULL, 9823, '80168949', 'OSTEOCARE CHEWABLE TAB', NULL, '13.2500', '17.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '6.0000', '2022-05-10', 'received', '13.2500', '13.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.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 (56041, 474, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-05-10', 'received', '3.7000', '3.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56042, 474, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-05-10', '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 (56043, 474, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.2000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '9.0000', '2022-05-10', '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 (56044, 474, NULL, 8011, '1931', 'SALO COLD SRP', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-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 (56045, 474, NULL, 9204, '3124', 'NESBEN TAB 200MG', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '2.0000', '2022-05-10', '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 (56046, 474, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2022-05-10', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56047, 474, NULL, 7636, '1556', 'DIABETMINE', NULL, '2.5000', '3.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '36.0000', '2022-05-10', 'received', '2.5000', '2.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (56048, 474, NULL, 9913, '43329922', 'ADOM LADY MIXTURE', NULL, '13.2000', '17.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '1.0000', '2022-05-10', 'received', '13.2000', '13.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (56049, 474, NULL, 9912, '45196430', 'ADOM LADY CAPS', NULL, '14.4000', '19.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '2.0000', '2022-05-10', 'received', '14.4000', '14.4000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (56050, 474, NULL, 9910, '79540803', 'MAN UP CAPS', NULL, '130.0000', '172.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '1.0000', '2022-05-10', 'received', '130.0000', '130.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (56051, 474, NULL, 9209, '3129', 'CETRIZAN 10MG', NULL, '4.8000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2022-05-10', '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 (56052, 474, NULL, 9909, '64471918', 'ALLACAN 10MG (CETIRIZINE)', NULL, '4.7000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.7000', '0.0000', '2022-05-10', 'received', '4.7000', '4.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (56053, 474, NULL, 9909, '64471918', 'ALLACAN 10MG (CETIRIZINE)', NULL, '4.7000', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8000', '3.0000', '2022-05-10', 'received', '4.7000', '4.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56054, 474, NULL, 9911, '83156611', 'T SEC 1G TAB', NULL, '2.0000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2022-05-10', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56055, 474, NULL, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '0.5000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '40.0000', '2022-05-10', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56056, 474, NULL, 8180, '2100', 'SELECT STRIPS', NULL, '3.1000', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '30.0000', '2022-05-10', 'received', '3.1000', '3.1000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56057, 474, NULL, 8062, '1982', 'SELECT STRIPS', NULL, '3.1000', '4.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-05-10', 'received', '3.1000', '3.1000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (56058, 474, NULL, 7435, '1355', 'CRESTOR 20', NULL, '5.2000', '8.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.6000', '0.0000', '2022-05-10', 'received', '5.2000', '5.2000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (56059, 474, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.8800', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '3.0000', '2022-05-10', '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 (56060, 474, NULL, 7695, '1615', 'SEFLOX', NULL, '3.9400', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7000', '0.0000', '2022-05-10', 'received', '3.9400', '3.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (56061, 474, NULL, 8216, '2136', 'MAXITROL', NULL, '20.7000', '27.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.5000', '2.0000', '2022-05-10', 'received', '20.7000', '20.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56062, 474, NULL, 7633, '1553', 'CIPAC EYE DROP', NULL, '2.8700', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7000', '6.0000', '2022-05-10', 'received', '2.8700', '2.8700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56063, 474, NULL, 8217, '2137', 'CUSIMOLOL', NULL, '13.8100', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0500', '3.0000', '2022-05-10', 'received', '13.8100', '13.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (56064, 474, NULL, 8494, '2414', 'OPTREX EYE DROP', NULL, '21.7900', '29.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5800', '2.0000', '2022-05-10', 'received', '21.7900', '21.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (56065, 474, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3500', '7.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '8.0000', '2022-05-10', 'received', '5.3500', '5.3500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.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 (56066, 474, NULL, 9565, '95802365', 'PASSION YOGHURT STRAWBERRY/VANILLA', NULL, '5.5000', '7.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '8.0000', '2022-05-10', '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 (56067, 474, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '15.0000', '20.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '2.0000', '2022-05-10', 'received', '15.0000', '15.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (56068, 474, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '8.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '3.0000', '2022-05-10', '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 (56069, NULL, NULL, 2434, '', '', 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 (56070, NULL, NULL, 9872, '', '', 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 (56071, NULL, NULL, 8517, '', '', 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 (56072, NULL, NULL, 9316, '', '', 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 (56073, NULL, NULL, 9324, '', '', 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 (56074, NULL, NULL, 2101, '', '', 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 (56075, NULL, NULL, 9906, '', '', 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 (56076, NULL, NULL, 9873, '', '', 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 (56077, NULL, NULL, 1690, '', '', 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 (56078, NULL, NULL, 7502, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (56079, NULL, NULL, 9754, '', '', 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 (56080, NULL, NULL, 8077, '', '', 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 (56081, NULL, NULL, 8186, '', '', 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 (56082, NULL, NULL, 7779, '', '', 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 (56083, NULL, NULL, 9391, '', '', 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 (56084, NULL, NULL, 8194, '', '', 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 (56085, NULL, NULL, 9900, '', '', 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 (56086, NULL, NULL, 7623, '', '', 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 (56140, NULL, NULL, 9269, '', '', 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 (56141, NULL, NULL, 9874, '', '', 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 (56142, NULL, NULL, 7896, '', '', 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 (56143, NULL, NULL, 2496, '', '', 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 (56144, 484, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '8.0000', '2022-05-23', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56145, 484, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '132.3000', '175.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '396.9000', '2.0000', '2022-05-23', 'received', '132.3000', '132.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '132.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 (56146, 484, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '21.5000', '26.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '258.0000', '0.0000', '2022-05-23', 'received', '21.5000', '21.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56147, 484, NULL, 8277, '2197', 'ATENOLOL 50', NULL, '8.5000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '1.0000', '2022-05-23', '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 (56148, 484, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '30.4400', '40.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.7600', '3.0000', '2022-05-23', 'received', '30.4400', '30.4400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.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 (56149, 484, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '50.9300', '67.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.7900', '0.0000', '2022-05-23', 'received', '50.9300', '50.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '50.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 (56150, 484, NULL, 7346, '1266', 'PREGNACARE PLUS', NULL, '91.3000', '121.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.6000', '0.0000', '2022-05-23', 'received', '91.3000', '91.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '91.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 (56151, 484, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '57.7600', '77.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5200', '1.0000', '2022-05-23', 'received', '57.7600', '57.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.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 (56152, 484, NULL, 3056, '13783530', 'WELLMAN 50+ CAPS', NULL, '51.5500', '68.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.1000', '0.0000', '2022-05-23', 'received', '51.5500', '51.5500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.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 (56153, 484, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '291.6000', '18.0000', '2022-05-23', 'received', '14.5800', '14.5800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (56154, 484, NULL, 7318, '1238', 'LONART SUSP', NULL, '10.7000', '14.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.0000', '1.0000', '2022-05-23', 'received', '10.7000', '10.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56155, 484, NULL, 7780, '1700', 'LUFART TAB', NULL, '11.6000', '15.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.0000', '0.0000', '2022-05-23', 'received', '11.6000', '11.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56156, 484, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.4000', '0.0000', '2022-05-23', 'received', '49.6000', '49.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.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 (56157, 484, NULL, 7779, '1699', 'LUFART SUSP', NULL, '9.5000', '12.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '6.0000', '2022-05-23', 'received', '9.5000', '9.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (56158, 484, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '4.0000', '2022-05-23', 'received', '10.4000', '10.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (56159, 484, NULL, 7321, '1241', 'METROLEX-F TABS', NULL, '12.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-05-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 (56160, 484, NULL, 8084, '2004', 'METROLEX F SUSP', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-05-23', '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 (56161, 484, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '49.0000', '2022-05-23', 'received', '0.5900', '0.5900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (56162, 484, NULL, 7787, '1707', 'FLUREST', NULL, '15.0000', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-05-23', '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 (56163, 484, NULL, 8040, '1960', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '5.0000', '2022-05-23', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (56164, 484, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '9.0000', '2022-05-23', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56165, 484, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-05-23', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56166, 484, NULL, 9088, '3008', 'ZUBES EXTRA STRONG', NULL, '15.4000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '5.0000', '2022-05-23', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (56167, 484, NULL, 7331, '1251', 'NATRILIX SR 1.5MG', NULL, '49.5000', '77.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '1.0000', '2022-05-23', 'received', '49.5000', '49.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56168, 484, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '8.8000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-05-23', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56169, 484, NULL, 7736, '1656', 'NUGEL -O', NULL, '18.7300', '25.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.3800', '4.0000', '2022-05-23', 'received', '18.7300', '18.7300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.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 (56170, 484, NULL, 7961, '1881', 'JARIFAN 2 SRP', NULL, '10.5300', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5900', '0.0000', '2022-05-23', 'received', '10.5300', '10.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (56171, 484, NULL, 7402, '1322', 'VERMOX SUSP', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '4.0000', '2022-05-23', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56172, 484, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '9.0000', '2022-05-23', '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 (56173, 484, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.2000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '9.0000', '2022-05-23', '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 (56174, 484, NULL, 7748, '1668', 'VIROL', NULL, '8.3000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2022-05-23', 'received', '8.3000', '8.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (56175, 484, NULL, 8032, '1952', 'FISHERMAN', NULL, '7.0000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '1.0000', '2022-05-23', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56176, 484, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '39.3500', '52.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0500', '0.0000', '2022-05-23', 'received', '39.3500', '39.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '39.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 (56177, 484, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6300', '0.0000', '2022-05-23', 'received', '14.2100', '14.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (56178, 484, NULL, 8925, '2845', 'MMT', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '9.0000', '2022-05-23', '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 (56179, 484, NULL, 7980, '1900', 'GACET 125', NULL, '0.5500', '0.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-05-23', 'received', '0.5500', '0.5500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56180, 484, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2022-05-23', '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 (56181, 484, NULL, 7881, '1801', 'FENBASE', NULL, '2.4000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '7.0000', '2022-05-23', '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 (56182, 484, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '7.0000', '2022-05-23', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56183, 484, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '25.0000', '2022-05-23', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (56184, 484, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '0.0000', '2022-05-23', 'received', '10.6000', '10.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56185, 484, NULL, 7965, '1885', 'EXFORGE 10/160', NULL, '6.8100', '9.1000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.6800', '0.0000', '2022-05-23', 'received', '6.8100', '6.8100', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '6.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 (56186, 484, NULL, 8145, '2065', 'CALAMINE OINT', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-05-23', '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 (56187, 484, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '44.0000', '2022-05-23', 'received', '1.4000', '1.4000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (56188, 484, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '0.0000', '2022-05-23', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56189, 484, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '5.0000', '2022-05-23', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (56190, 484, NULL, 7641, '1561', 'LYDIA', NULL, '7.2000', '10.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-05-23', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56191, 484, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '25.9000', '34.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '2.0000', '2022-05-23', '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 (56192, 484, NULL, 8918, '2838', 'APC 10*10', NULL, '1.2200', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '17.0000', '2022-05-23', 'received', '1.2200', '1.2200', '30.0000', NULL, NULL, 1, 'pc', '30.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 (56193, 484, NULL, 8452, '2372', 'HEPTOLIFE', NULL, '11.5000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-05-23', '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 (56194, 484, NULL, 9814, '07253413', 'HEPTOLIF TABLETS', NULL, '0.9000', '1.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '6.0000', '2022-05-23', 'received', '0.9000', '0.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56195, 484, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '7.1500', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-05-23', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (56196, 484, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9000', '5.0000', '2022-05-23', 'received', '4.7000', '4.7000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (56197, 484, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '15.0000', '20.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-05-23', 'received', '15.0000', '15.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (56198, NULL, NULL, 3050, '', '', 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 (56199, NULL, NULL, 2067, '', '', 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 (56200, NULL, NULL, 1663, '', '', 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 (56201, NULL, NULL, 9209, '', '', 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 (56202, NULL, NULL, 7555, '', '', 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 (56203, NULL, NULL, 9656, '', '', 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 (56204, NULL, NULL, 7435, '', '', 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 (56205, 485, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '18.5000', '24.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '185.0000', '8.0000', '2022-05-24', 'received', '18.5000', '18.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56206, 485, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '22.9000', '31.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8000', '1.0000', '2022-05-24', 'received', '22.9000', '22.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.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 (56207, 485, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '16.9000', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '4.0000', '2022-05-24', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (56208, 485, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '1.0000', '2022-05-24', '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 (56209, 485, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.4000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-05-24', 'received', '14.4000', '14.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56210, 485, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '10.4800', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8000', '9.0000', '2022-05-24', 'received', '10.4800', '10.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (56211, 485, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '16.9000', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '3.0000', '2022-05-24', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (56212, 485, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '99.3000', '131.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.3000', '1.0000', '2022-05-24', 'received', '99.3000', '99.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '99.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 (56213, 485, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '15.4000', '20.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '1.0000', '2022-05-24', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (56214, 485, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '46.3000', '61.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.6000', '1.0000', '2022-05-24', 'received', '46.3000', '46.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.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 (56215, 485, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '36.4900', '48.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.9800', '1.0000', '2022-05-24', 'received', '36.4900', '36.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.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 (56216, 485, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '11.0000', '2022-05-24', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56217, 485, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.3800', '3.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0800', '4.0000', '2022-05-24', 'received', '2.3800', '2.3800', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '2.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 (56218, 485, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '47.2000', '62.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4000', '2.0000', '2022-05-24', 'received', '47.2000', '47.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.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 (56219, 485, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '41.8000', '55.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.0000', '0.0000', '2022-05-24', 'received', '41.8000', '41.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '41.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 (56220, 485, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.3200', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '67.0000', '2022-05-24', '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 (56221, 485, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7500', '1.0000', '2022-05-24', 'received', '9.5500', '9.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (56222, 485, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-05-24', '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 (56223, 485, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-05-24', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56224, 485, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '28.0000', '2022-05-24', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (56225, 485, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-05-24', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56226, 485, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.6500', '2.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '31.0000', '2022-05-24', 'received', '1.6500', '1.6500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56227, 485, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '4.0000', '2022-05-24', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (56228, 485, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-05-24', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56229, 485, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '4.0000', '2022-05-24', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (56230, 485, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-05-24', '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 (56231, 485, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '13.0000', '2022-05-24', 'received', '1.7200', '1.7200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (56232, 485, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '3.0000', '2022-05-24', '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 (56233, 485, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '8.0000', '2022-05-24', '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 (56234, 485, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '17.0000', '2022-05-24', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (56235, 485, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9000', '3.0000', '2022-05-24', 'received', '8.7800', '8.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (56236, 485, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '135.6500', '179.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '271.3000', '1.0000', '2022-05-24', 'received', '135.6500', '135.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '135.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 (56237, 485, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '5.3000', '7.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '10.0000', '2022-05-24', 'received', '5.3000', '5.3000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (56238, 485, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.8000', '3.7000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '52.0000', '2022-05-24', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56239, 485, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-05-24', '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 (56240, 485, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '17.0000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '3.0000', '2022-05-24', '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 (56241, 485, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '5.4000', '7.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '27.0000', '2022-05-24', 'received', '5.4000', '5.4000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (56242, 485, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.2000', '0.0000', '2022-05-24', 'received', '49.6000', '49.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (56243, 485, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9800', '0.0000', '2022-05-24', 'received', '16.6600', '16.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (56244, 485, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-05-24', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (56245, 485, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '24.0000', '2022-05-24', '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 (56246, 485, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.7300', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '4.0000', '2022-05-24', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (56247, 485, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.1000', '2.8000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '69.0000', '2022-05-24', 'received', '2.1000', '2.1000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56248, 485, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.0000', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '18.0000', '2022-05-24', 'received', '2.0000', '2.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (56249, 485, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '3.0000', '2022-05-24', 'received', '2.9500', '2.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (56250, 485, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.9000', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '1.0000', '2022-05-24', 'received', '21.9000', '21.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (56251, 485, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.7800', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5600', '2.0000', '2022-05-24', 'received', '23.7800', '23.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (56252, 485, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.0500', '10.0000', '2022-05-24', 'received', '10.0700', '10.0700', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '10.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 (56253, 485, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '3.0000', '2022-05-24', '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 (56254, 485, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.9000', '6.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '11.0000', '2022-05-24', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56255, 485, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '10.0000', '2022-05-24', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (56256, 485, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '21.2500', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.7500', '0.0000', '2022-05-24', 'received', '21.2500', '21.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (56257, 485, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '3.0000', '2022-05-24', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56258, 485, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '22.0000', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-05-24', '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 (56259, 485, NULL, 2395, '99288830', 'TINATETT 230', NULL, '27.5000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-05-24', 'received', '27.5000', '27.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56260, NULL, NULL, 9468, '', '', 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 (56306, NULL, NULL, 9019, '', '', 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 (56307, NULL, NULL, 8097, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-102.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56308, NULL, NULL, 8643, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56309, NULL, NULL, 8312, '', '', 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 (56310, NULL, NULL, 7432, '', '', 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 (56311, NULL, NULL, 7730, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-291.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56312, NULL, NULL, 7768, '', '', 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 (56313, NULL, NULL, 1372, '', '', 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 (56314, NULL, NULL, 9915, '', '', 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 (56342, NULL, NULL, 1560, '', '', 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 (56343, NULL, NULL, 7472, '', '', 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 (56344, NULL, NULL, 8401, '', '', 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 (56345, NULL, NULL, 9921, '', '', 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 (56346, NULL, NULL, 9927, '', '', 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 (56347, 487, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '9.0000', '12.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '9.0000', '2022-05-26', 'received', '9.0000', '9.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56348, 487, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '14.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-05-26', '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 (56349, 487, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '12.5000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '1.0000', '2022-05-26', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56350, 487, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '18.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-05-26', '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 (56351, 487, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '18.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-05-26', '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 (56352, 487, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '17.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '1.0000', '2022-05-26', '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 (56353, 487, NULL, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '19.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2022-05-26', '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 (56354, 487, NULL, 2962, '17785722', 'MOSQUITO REPELLENT', NULL, '5.5000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '1.0000', '2022-05-26', '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 (56361, NULL, NULL, 3074, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (56362, NULL, NULL, 8087, '', '', 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 (56363, NULL, NULL, 7909, '', '', 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 (56364, NULL, NULL, 8322, '', '', 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 (56365, NULL, NULL, 8463, '', '', 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 (56366, NULL, NULL, 7326, '', '', 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 (56367, NULL, NULL, 7445, '', '', 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 (56368, NULL, NULL, 9896, '', '', 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 (56369, NULL, NULL, 8877, '', '', 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 (56370, NULL, NULL, 9539, '', '', 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 (56371, 488, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.7300', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.3800', '0.0000', '2022-05-27', 'received', '18.7300', '18.7300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.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 (56372, 488, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '9.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-05-27', 'received', '7.2000', '7.2000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56373, 488, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.4000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4000', '0.0000', '2022-05-27', '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 (56374, 488, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.4000', '0.0000', '2022-05-27', 'received', '18.9000', '18.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (56375, 488, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '46.3000', '61.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '231.5000', '0.0000', '2022-05-27', 'received', '46.3000', '46.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '46.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 (56376, 488, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6200', '4.0000', '2022-05-27', 'received', '4.2700', '4.2700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (56377, 488, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.5000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '2.0000', '2022-05-27', '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 (56378, 488, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '24.1000', '32.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.4000', '0.0000', '2022-05-27', 'received', '24.1000', '24.1000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56379, 488, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '12.1000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3000', '0.0000', '2022-05-27', 'received', '12.1000', '12.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (56380, 488, NULL, 9840, '00885109', 'LEXOCAP', NULL, '1.5000', '2.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-05-27', 'received', '1.5000', '1.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56381, 488, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '4.0000', '2022-05-27', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56382, 488, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.8000', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '10.0000', '2022-05-27', '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 (56383, 488, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-05-27', '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 (56384, 488, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '0.0000', '2022-05-27', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (56385, 488, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2022-05-27', 'received', '8.6400', '8.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (56386, 488, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '7.0000', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-05-27', '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 (56387, 488, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.6000', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '1.0000', '2022-05-27', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56388, 488, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '18.5000', '24.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.0000', '0.0000', '2022-05-27', 'received', '18.5000', '18.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (56389, 488, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.9000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '0.0000', '2022-05-27', 'received', '4.9000', '4.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56390, 488, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.8000', '44.6200', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-05-27', 'received', '33.8000', '33.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (56391, 488, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '7.8000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-05-27', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56392, 488, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9600', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '1.0000', '2022-05-27', 'received', '3.9600', '3.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (56393, 488, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-05-27', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56394, 488, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '6.9600', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '0.0000', '2022-05-27', 'received', '6.9600', '6.9600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56395, 488, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '3.5700', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.1000', '30.0000', '2022-05-27', 'received', '3.5700', '3.5700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (56396, 488, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5700', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7000', '0.0000', '2022-05-27', 'received', '1.5700', '1.5700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (56397, 488, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '3.1000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-05-27', 'received', '3.1000', '3.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56398, 488, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.9200', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2022-05-27', 'received', '1.9200', '1.9200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (56399, 488, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '25.8000', '34.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.4000', '0.0000', '2022-05-27', 'received', '25.8000', '25.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.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 (56400, 488, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.8000', '0.0000', '2022-05-27', 'received', '10.4000', '10.4000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '10.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 (56401, 488, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-05-27', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56402, 488, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-05-27', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56403, 488, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-05-27', 'received', '0.5900', '0.5900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (56404, 488, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '5.2300', '7.0000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.6800', '0.0000', '2022-05-27', 'received', '5.2300', '5.2300', '16.0000', NULL, NULL, 1, 'pc', '16.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 (56405, 488, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '7.7000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '0.0000', '2022-05-27', '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 (56406, 488, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '20.0000', '26.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-05-27', '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 (56407, 488, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '12.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-05-27', '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 (56408, 488, NULL, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '2.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-05-27', '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 (56409, 488, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.9100', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0000', '0.0000', '2022-05-27', 'received', '0.9100', '0.9100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (56410, 488, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '30.8700', '41.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.6100', '0.0000', '2022-05-27', 'received', '30.8700', '30.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.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 (56411, 488, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-27', '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 (56412, 488, NULL, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '24.7000', '33.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.5000', '5.0000', '2022-05-27', 'received', '24.7000', '24.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '24.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 (56413, 488, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-05-27', 'received', '5.2000', '5.2000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56414, 488, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-05-27', '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 (56415, 488, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '0.0000', '2022-05-27', '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 (56416, 488, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-05-27', 'received', '2.9500', '2.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (56417, 488, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '5.5000', '8.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '10.0000', '2022-05-27', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56418, 488, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6000', '0.0000', '2022-05-27', 'received', '2.0400', '2.0400', '40.0000', NULL, NULL, 1, 'pc', '40.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 (56419, 488, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-05-27', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56420, 488, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-05-27', '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 (56421, 488, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '12.2000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '0.0000', '2022-05-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 (56422, 488, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-05-27', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56423, 488, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.1000', '2.8000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '39.0000', '2022-05-27', 'received', '2.1000', '2.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (56424, 488, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.1000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-05-27', 'received', '1.1000', '1.1000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56425, 488, NULL, 1741, '5017007601289', 'SUDOCREAM 125G', NULL, '32.5000', '43.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-05-27', '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 (56426, 488, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-05-27', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56427, 488, NULL, 2851, '5021265246298', 'WELLWOMAN MAX', NULL, '59.0000', '78.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '1.0000', '2022-05-27', 'received', '59.0000', '59.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56428, 488, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '9.3600', '12.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.2000', '1.0000', '2022-05-27', 'received', '9.3600', '9.3600', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56429, 488, NULL, 1965, '8902501008139', 'HYDROCORTISSONE CREAM 1%  CO-PHARMA', NULL, '16.2000', '22.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2022-05-27', 'received', '16.2000', '16.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56430, 488, NULL, 2919, '71113918', 'PHLEBODIA 600MG', NULL, '4.8000', '6.3000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-05-27', 'received', '4.8000', '4.8000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56431, 488, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '15.4000', '20.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '0.0000', '2022-05-27', 'received', '15.4000', '15.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (56432, 488, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '41.8000', '56.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.2000', '1.0000', '2022-05-27', 'received', '41.8000', '41.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '41.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 (56433, 488, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '16.9000', '23.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '0.0000', '2022-05-27', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (56434, 488, NULL, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '4.6000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '6.0000', '2022-05-27', '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 (56435, 488, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-05-27', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56436, 488, NULL, 7496, '1416', 'NORMAL SALINE', NULL, '6.3000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '4.0000', '2022-05-27', '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 (56437, 488, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.9800', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8000', '5.0000', '2022-05-27', 'received', '2.9800', '2.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (56438, 488, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '13.5000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-05-27', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (56439, 488, NULL, 1636, '4031571069116', 'VIT-B DENK', NULL, '14.2100', '19.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '284.2000', '20.0000', '2022-05-27', 'received', '14.2100', '14.2100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (56440, 488, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.5000', '0.0000', '2022-05-27', 'received', '4.1700', '4.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (56441, 488, NULL, 9902, '14298485', 'CELECOXIB 200MG OER STRIP', NULL, '7.9300', '11.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.9500', '0.0000', '2022-05-27', 'received', '7.9300', '7.9300', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56442, 488, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '28.6000', '38.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '0.0000', '2022-05-27', 'received', '28.6000', '28.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (56443, 488, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-05-27', '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 (56444, 488, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '18.9000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2022-05-27', '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 (56445, 488, NULL, 1881, '5021265232062', 'PREGNACARE BREAST FEEDING UK', NULL, '106.6000', '141.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6000', '0.0000', '2022-05-27', 'received', '106.6000', '106.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '106.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 (56446, 488, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.4700', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-05-27', 'received', '1.4700', '1.4700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56447, 488, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.5600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-05-27', 'received', '1.5600', '1.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (56448, 488, NULL, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', NULL, '4.6000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '8.0000', '2022-05-27', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56449, 488, NULL, 2985, '92371428', 'FLAGYL SUSP 200ML', NULL, '39.3000', '52.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.6000', '0.0000', '2022-05-27', 'received', '39.3000', '39.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.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 (56450, 488, NULL, 7880, '1800', 'VAGINAX PESS', NULL, '3.2000', '4.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '0.0000', '2022-05-27', '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 (56451, 488, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-05-27', '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 (56452, 488, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-05-27', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (56453, 488, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2022-05-27', '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 (56454, 488, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '6.3200', '8.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.4000', '0.0000', '2022-05-27', 'received', '6.3200', '6.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (56455, 488, NULL, 8736, '2656', 'LEVOTHYROXINE 100MG', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-05-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 (56456, 488, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '0.0000', '2022-05-27', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (56457, 488, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '5.4000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '1.0000', '2022-05-27', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56458, 488, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.0000', '4.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '30.0000', '2022-05-27', 'received', '3.0000', '3.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (56459, 488, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '19.5000', '26.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-05-27', 'received', '19.5000', '19.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56460, 488, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '0.0000', '2022-05-27', 'received', '17.4000', '17.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56461, 488, NULL, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '3.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-05-27', '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 (56462, 488, NULL, 9846, '45939879', 'XZOLE F SUSP', NULL, '5.7000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '2.0000', '2022-05-27', 'received', '5.7000', '5.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (56463, 488, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '9.8000', '13.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '1.0000', '2022-05-27', '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 (56464, 488, NULL, 2868, '34068126', 'ATENOLOL 100MG  TEVA', NULL, '7.8000', '11.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '4.0000', '2022-05-27', 'received', '7.8000', '7.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56465, 488, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '135.6500', '179.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '271.3000', '0.0000', '2022-05-27', 'received', '135.6500', '135.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '135.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 (56466, 488, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '99.3000', '131.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.6000', '0.0000', '2022-05-27', 'received', '99.3000', '99.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '99.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 (56467, 488, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '17.0000', '23.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-05-27', '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 (56468, 488, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.1500', '0.0000', '2022-05-27', 'received', '15.6300', '15.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (56469, 488, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-05-27', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56470, 488, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '140.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4000', '0.0000', '2022-05-27', 'received', '0.2600', '0.2600', '140.0000', NULL, NULL, 1, 'pc', '140.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 (56471, 488, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-05-27', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56472, 488, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2022-05-27', '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 (56473, NULL, NULL, 8481, '', '', 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 (56474, NULL, NULL, 9372, '', '', 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 (56475, NULL, NULL, 1329, '', '', 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 (56476, NULL, NULL, 7480, '', '', 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 (56477, 486, NULL, 7690, '1610', 'PREGASAFE 75', NULL, '18.2800', '24.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.6800', '0.0000', '2022-05-24', 'received', '18.2800', '18.2800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.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 (56478, 486, NULL, 9117, '3037', 'CORSODYL BIG  300ML', NULL, '43.9200', '58.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.7600', '1.0000', '2022-05-24', 'received', '43.9200', '43.9200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '43.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 (56479, 486, NULL, 8739, '2659', 'SPANISH GARLIC', NULL, '13.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-05-24', '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 (56480, 486, NULL, 8672, '2592', 'PINEK-20', NULL, '1.2000', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '18.0000', '2022-05-24', '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 (56481, 486, NULL, 7637, '1557', 'MAJOR EPHEDRINE', NULL, '7.3300', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9900', '2.0000', '2022-05-24', '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 (56482, 486, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.3600', '4.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.8000', '0.0000', '2022-05-24', 'received', '1.3600', '1.3600', '80.0000', NULL, NULL, 1, 'pc', '80.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 (56483, 486, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '9.7600', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2800', '0.0000', '2022-05-24', 'received', '9.7600', '9.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (56484, 486, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '14.5100', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0200', '2.0000', '2022-05-24', 'received', '14.5100', '14.5100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (56485, 486, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '8.7200', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1600', '1.0000', '2022-05-24', 'received', '8.7200', '8.7200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (56486, 486, NULL, 9021, '2941', 'UNIDUS LONG LOVE CONDOM', NULL, '6.7300', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6500', '0.0000', '2022-05-24', 'received', '6.7300', '6.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (56487, 486, NULL, 8037, '1957', 'EZIPEN', NULL, '2.3700', '3.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8500', '2.0000', '2022-05-24', 'received', '2.3700', '2.3700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56488, 486, NULL, 7523, '1443', 'VISCOF S', NULL, '11.8300', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3200', '0.0000', '2022-05-24', 'received', '11.8300', '11.8300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '11.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 (56489, 486, NULL, 7522, '1442', 'VISCOF D', NULL, '11.8300', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3200', '0.0000', '2022-05-24', 'received', '11.8300', '11.8300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '11.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 (56490, 486, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '12.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2022-05-24', '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 (56491, 486, NULL, 7899, '1819', 'EKURO BEWU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2022-05-24', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56492, 486, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '15.5000', '20.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-05-24', '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 (56493, 486, NULL, 8913, '2833', 'LAVET', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-05-24', '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 (56494, 486, NULL, 9325, '3245', 'LAWSON HERBAL MIXTURE', NULL, '8.5000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '4.0000', '2022-05-24', '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 (56495, 486, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '11.0000', '2022-05-24', '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 (56496, 486, NULL, 8428, '2348', 'PROSLUV CAPS', NULL, '19.8000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-05-24', '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 (56497, 486, NULL, 7836, '1756', 'PROSTACURE TEA', NULL, '21.0000', '28.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-05-24', '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 (56498, 486, NULL, 7892, '1812', 'VICTAGO', NULL, '1.0000', '1.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-05-24', '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 (56499, 486, NULL, 7730, '1650', 'MENTOS FRESH ACTION', NULL, '0.1000', '0.2000', '92.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2000', '83.0000', '2022-05-24', 'received', '0.1000', '0.1000', '92.0000', NULL, NULL, 1, 'pc', '92.0000', NULL, NULL, NULL, NULL, '0.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 (56500, 486, NULL, 7860, '1780', 'BEEHIVE', NULL, '23.9400', '32.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8200', '0.0000', '2022-05-24', 'received', '23.9400', '23.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (56501, 486, NULL, 7380, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', NULL, '10.4600', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.6000', '0.0000', '2022-05-24', 'received', '10.4600', '10.4600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (56502, 486, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.8000', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '5.0000', '2022-05-24', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56503, 486, NULL, 7776, '1696', 'PENICILLIN OINT', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-05-24', '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 (56504, 486, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '3.4000', '6.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-05-24', 'received', '3.4000', '3.4000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (56505, NULL, NULL, 7390, '', '', 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 (56506, NULL, NULL, 7425, '', '', 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 (56507, NULL, NULL, 8631, '', '', 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 (56508, NULL, NULL, 8167, '', '', 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 (56509, NULL, NULL, 1395, '', '', 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 (56510, NULL, NULL, 2983, '', '', 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 (56511, 489, NULL, 7680, '1600', 'FLAGENTYL', NULL, '28.6000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.0000', '0.0000', '2022-05-28', 'received', '28.6000', '28.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.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 (56512, 489, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '4.0000', '2022-05-28', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56513, 489, NULL, 8158, '2078', 'SUPIROCIN', NULL, '24.5000', '32.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-05-28', '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 (56514, 489, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-05-28', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56515, 489, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.1800', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9000', '3.0000', '2022-05-28', 'received', '13.1800', '13.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (56516, 489, NULL, 8616, '2536', 'LISTERINE B/S', NULL, '27.9000', '37.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.7000', '2.0000', '2022-05-28', 'received', '27.9000', '27.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.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 (56517, 489, NULL, 7496, '1416', 'NORMAL SALINE', NULL, '6.3000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2022-05-28', '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 (56518, 489, NULL, 7879, '1799', 'PARA DENK 125', NULL, '1.9200', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-05-28', 'received', '1.9200', '1.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (56519, 489, NULL, 8167, '2087', 'ENACIN 300', NULL, '9.3600', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.2000', '4.0000', '2022-05-28', 'received', '9.3600', '9.3600', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56520, 489, NULL, 7984, '1904', 'DEXATROL DROP', NULL, '16.9000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '0.0000', '2022-05-28', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (56521, 489, NULL, 3045, '00432970', 'CETRIZAN SYRUP 60ML', NULL, '4.6000', '6.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2000', '5.0000', '2022-05-28', 'received', '4.6000', '4.6000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (56522, 489, NULL, 9902, '14298485', 'CELECOXIB 200MG OER STRIP', NULL, '7.9300', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5800', '6.0000', '2022-05-28', 'received', '7.9300', '7.9300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (56523, 489, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '39.3000', '52.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.9000', '1.0000', '2022-05-28', 'received', '39.3000', '39.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '39.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 (56524, 489, NULL, 9846, '45939879', 'XZOLE F SUSP', NULL, '5.7000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '5.0000', '2022-05-28', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (56525, 489, NULL, 2868, '34068126', 'ATENOLOL 100MG  TEVA', NULL, '7.8000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '1.0000', '2022-05-28', '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 (56526, 489, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '17.0000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2022-05-28', '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 (56527, 489, NULL, 9018, '2938', 'STOPKOF COLD *CATTARRH TAB', NULL, '6.9600', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '5.0000', '2022-05-28', 'received', '6.9600', '6.9600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56528, 489, NULL, 9503, '35154073', 'PELADOL EXTRA TAB', NULL, '1.2600', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '9.0000', '2022-05-28', 'received', '1.2600', '1.2700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (56529, 489, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '38.5000', '51.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '2.0000', '2022-05-28', 'received', '38.5000', '38.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56530, 489, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '6.6000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-05-28', '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 (56531, 489, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '29.4000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '0.0000', '2022-05-28', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56532, 489, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '0.0000', '2022-05-28', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56533, 489, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '19.5000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '2.0000', '2022-05-28', '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 (56534, 489, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '8.8000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '2.0000', '2022-05-28', '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 (56535, 489, NULL, 7491, '1411', 'ASCORYL SRP', NULL, '7.4000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-05-28', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56536, 489, NULL, 7608, '1528', 'AUNTY MARY', NULL, '9.4700', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3500', '4.0000', '2022-05-28', 'received', '9.4700', '9.4700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (56537, 489, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.6000', '19.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '10.0000', '2022-05-28', 'received', '14.6000', '14.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56538, 489, NULL, 7750, '1670', 'CALPOL 2+', NULL, '46.3000', '61.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '231.5000', '0.0000', '2022-05-28', 'received', '46.3000', '46.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '46.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 (56539, 489, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.9000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '10.0000', '2022-05-28', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56540, 489, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '4.2700', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6200', '0.0000', '2022-05-28', 'received', '4.2700', '4.2700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (56541, 489, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '5.0000', '2022-05-28', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (56542, 489, NULL, 8714, '2634', 'COLDRILIEF SRP', NULL, '5.2100', '7.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6800', '0.0000', '2022-05-28', 'received', '5.2100', '5.2100', '8.0000', NULL, NULL, 1, 'pc', '8.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 (56543, 489, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '3.0000', '2022-05-28', '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 (56544, 489, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0800', '4.0000', '2022-05-28', 'received', '15.0200', '15.0200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (56545, 489, NULL, 7784, '1704', 'DRAGON CAPS', NULL, '5.2300', '7.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7600', '0.0000', '2022-05-28', 'received', '5.2300', '5.2300', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56546, 489, NULL, 8304, '2224', 'POLYFER 200ML', NULL, '8.5000', '12.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.5000', '6.0000', '2022-05-28', 'received', '8.5000', '8.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (56547, 489, NULL, 8299, '2219', 'NORVASC 10', NULL, '90.8000', '120.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '272.4000', '0.0000', '2022-05-28', 'received', '90.8000', '90.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.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 (56548, 489, NULL, 7420, '1340', 'DEEP FREEZE SPRAY 150ML', NULL, '30.7900', '41.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5800', '2.0000', '2022-05-28', 'received', '30.7900', '30.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (56549, 489, NULL, 8924, '2844', 'MYCOVIN 500', NULL, '5.5000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '17.0000', '2022-05-28', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56550, 489, NULL, 8547, '2467', 'ODDYMIN CAPS', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-05-28', '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 (56551, 489, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-05-28', 'received', '0.6600', '0.6600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (56552, 489, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '5.7900', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '4.0000', '2022-05-28', 'received', '5.7900', '5.7900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56553, 489, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.7000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '0.0000', '2022-05-28', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (56554, 489, NULL, 7456, '1376', 'VENTOLIN INHALER', NULL, '34.7000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.1000', '2.0000', '2022-05-28', 'received', '34.7000', '34.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.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 (56555, 489, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '86.0000', '2022-05-28', '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 (56556, 489, NULL, 7871, '1791', 'NEXIUM 20', NULL, '7.0900', '9.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.5200', '0.0000', '2022-05-28', 'received', '7.0900', '7.0900', '28.0000', NULL, NULL, 1, 'pc', '28.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 (56557, 489, NULL, 7753, '1673', 'ZULU', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2022-05-28', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56558, 489, NULL, 7622, '1542', 'NIFEDENK 10', NULL, '3.3000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '8.0000', '2022-05-28', '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 (56559, 489, NULL, 9167, '3087', 'NORMO TEARS EYE DROP', NULL, '16.9000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '2.0000', '2022-05-28', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (56560, 489, NULL, 7521, '1441', 'BELLS TEETHING MIX', NULL, '18.3000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '0.0000', '2022-05-28', 'received', '18.3000', '18.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (56561, 489, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '10.4800', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8000', '0.0000', '2022-05-28', 'received', '10.4800', '10.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (56562, 489, NULL, 7749, '1669', 'FOLIGROW SRP', NULL, '19.6200', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8600', '2.0000', '2022-05-28', '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 (56563, 489, NULL, 7469, '1389', 'LEXSPORIN OINT', NULL, '23.0000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2022-05-28', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56564, 489, NULL, 9204, '3124', 'NESBEN TAB 200MG', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2022-05-28', '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 (56565, 489, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.3000', '37.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.9000', '0.0000', '2022-05-28', 'received', '28.3000', '28.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (56566, 489, NULL, 9271, '3191', 'LETAFEN SUSPENSION', NULL, '1.9000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-05-28', 'received', '1.9000', '1.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56567, 489, NULL, 7665, '1585', 'DUROL JUNR', NULL, '7.9000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '3.0000', '2022-05-28', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56568, 489, NULL, 8825, '2745', 'AZILEX SUSP', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-05-28', '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 (56569, 489, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '67.9000', '90.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.8000', '2.0000', '2022-05-28', 'received', '67.9000', '67.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '67.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 (56570, 489, NULL, 7666, '1586', 'DYMOL TAB', NULL, '4.9000', '7.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '9.0000', '2022-05-28', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56571, 489, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '5.3000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '7.0000', '2022-05-28', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56572, 489, NULL, 8718, '2638', 'GACET 1G', NULL, '11.2000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2022-05-28', 'received', '11.2000', '11.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56573, 489, NULL, 7592, '1512', 'HAEMOGLOBIN M/G', NULL, '6.8000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2022-05-28', 'received', '6.8000', '6.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56574, 489, NULL, 9894, '24864084', 'HYDROGEN PEROXIDE MAL.TITI', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-05-28', '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 (56575, 489, NULL, 7623, '1543', 'NIGHT NURSE CAPS', NULL, '47.0000', '62.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '2.0000', '2022-05-28', 'received', '47.0000', '47.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56576, 489, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2022-05-28', '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 (56577, 489, NULL, 7862, '1782', 'GLUCOSE', NULL, '5.7000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-05-28', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (56578, 489, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '0.0000', '2022-05-28', 'received', '2.8000', '2.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (56579, 489, NULL, 8053, '1973', 'MAGACID TAB', NULL, '0.8000', '1.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-05-28', 'received', '0.8000', '0.8000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (56580, 489, NULL, 7703, '1623', 'BRUFEN 400', NULL, '1.5000', '2.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-05-28', '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 (56581, 489, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '18.0000', '2022-05-28', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56582, 489, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-05-28', '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 (56583, 489, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '4.2400', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7200', '1.0000', '2022-05-28', 'received', '4.2400', '4.2400', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56584, 489, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.7200', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '20.0000', '2022-05-28', 'received', '1.7200', '1.7200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (56585, 489, NULL, 7959, '1879', 'PAIN OFF', NULL, '0.5200', '0.7000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-05-28', '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 (56586, 489, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '37.7100', '50.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.2600', '0.0000', '2022-05-28', 'received', '37.7100', '37.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (56587, 489, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-05-28', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56588, 489, NULL, 7708, '1628', 'TEEDAR', NULL, '8.3000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '7.0000', '2022-05-28', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (56589, 489, NULL, 8360, '2280', 'LEENA CAPS', NULL, '3.2300', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.3000', '4.0000', '2022-05-28', 'received', '3.2300', '3.2300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (56590, 489, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '9.0000', '2022-05-28', 'received', '1.4500', '1.4500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56591, 489, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '7.8000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '8.0000', '2022-05-28', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56592, 489, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '1.0000', '2022-05-28', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56593, 489, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '5.0000', '2022-05-28', 'received', '7.0000', '7.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (56594, 489, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '51.0000', '2022-05-28', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56595, 489, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '1.5100', '2.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.8000', '62.0000', '2022-05-28', 'received', '1.5100', '1.5100', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '1.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 (56596, 489, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '7.0000', '2022-05-28', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (56597, 489, NULL, 7859, '1779', 'KOFLET', NULL, '12.6300', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.1500', '4.0000', '2022-05-28', 'received', '12.6300', '12.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (56598, 489, NULL, 9401, '3321', 'KOFOF ADULT SYRUP', NULL, '4.8500', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4000', '0.0000', '2022-05-28', 'received', '4.8500', '4.8500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.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 (56599, 489, NULL, 7664, '1584', 'DUROL ADULT', NULL, '8.7000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '3.0000', '2022-05-28', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56600, 489, NULL, 8132, '2052', 'DUROL 300ML', NULL, '11.8000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-05-28', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56601, 489, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '10.0000', '2022-05-28', 'received', '13.0000', '13.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56602, 489, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-05-28', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56603, 489, NULL, 7853, '1773', 'BELLS VIT C', NULL, '14.8000', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '3.0000', '2022-05-28', 'received', '14.8000', '14.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56604, 489, NULL, 7659, '1579', 'DREZ OINT 10MG', NULL, '7.7000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '1.0000', '2022-05-28', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56605, 489, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-28', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (56606, 489, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-05-28', 'received', '3.7000', '3.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56607, 489, NULL, 7446, '1366', 'TETRA OINT', NULL, '2.9800', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '0.0000', '2022-05-28', 'received', '2.9800', '2.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (56608, 489, NULL, 2494, '60750341', 'GYNO DAKTARIN OVULES 400MG', NULL, '32.7000', '43.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.1000', '3.0000', '2022-05-28', 'received', '32.7000', '32.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.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 (56609, 489, NULL, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '41.8000', '55.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.0000', '4.0000', '2022-05-28', 'received', '41.8000', '41.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '41.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 (56610, 489, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '4.5600', '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '0.0000', '2022-05-28', 'received', '4.5600', '4.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (56611, 489, NULL, 7339, '1259', 'NO SPA40MG', NULL, '0.6600', '0.9000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '50.0000', '2022-05-28', 'received', '0.6600', '0.6600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (56612, 489, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-05-28', '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 (56613, 489, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '55.0000', '2022-05-28', 'received', '0.6200', '0.6200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (56614, 489, NULL, 9513, '46545234', 'GLUCO NAF C', NULL, '11.6000', '15.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.6000', '1.0000', '2022-05-28', 'received', '11.6000', '11.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (56615, 489, NULL, 7588, '1508', 'FUNBACT', NULL, '7.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-05-28', '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 (56616, NULL, NULL, 8093, '', '', 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 (56617, NULL, NULL, 9175, '', '', 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 (56618, NULL, NULL, 7604, '', '', 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 (56619, NULL, NULL, 7926, '', '', 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 (56620, NULL, NULL, 9841, '', '', 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 (56621, NULL, NULL, 7513, '', '', 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 (56622, NULL, NULL, 8471, '', '', 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 (56623, NULL, NULL, 7401, '', '', 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 (56624, 481, NULL, 2567, '83596243', 'NAN 1', NULL, '44.0000', '48.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '1.0000', '2022-05-16', 'received', '44.0000', '44.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56625, 481, NULL, 2316, '59549986', 'SMA ', NULL, '55.5000', '60.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.5000', '0.0000', '2022-05-16', 'received', '55.5000', '55.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '55.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56626, 481, NULL, 2826, '83660824', 'SMA 2 BABY FOOD', NULL, '55.5000', '60.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.5000', '3.0000', '2022-05-16', 'received', '55.5000', '55.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '55.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56627, 481, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '31.0000', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '3.0000', '2022-05-16', 'received', '31.0000', '31.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56628, 481, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '18.0000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2022-05-16', '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 (56629, 481, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3500', '7.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.4000', '3.0000', '2022-05-16', 'received', '5.3500', '5.3500', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '5.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 (56630, NULL, NULL, 8520, '', '', 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 (56631, NULL, NULL, 7688, '', '', 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 (56632, NULL, NULL, 9157, '', '', 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 (56633, NULL, NULL, 9933, '', '', 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 (56634, NULL, NULL, 7466, '', '', 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 (56635, NULL, NULL, 8291, '', '', 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 (56636, NULL, NULL, 7974, '', '', 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 (56637, NULL, NULL, 7966, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56638, NULL, NULL, 9569, '', '', 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 (56639, NULL, NULL, 9187, '', '', 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 (56640, NULL, NULL, 9827, '', '', 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 (56641, NULL, NULL, 7913, '', '', 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 (56642, NULL, NULL, 8138, '', '', 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 (56643, NULL, NULL, 8191, '', '', 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 (56644, NULL, NULL, 9915, '', '', 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 (56645, NULL, NULL, 7555, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (56646, 490, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '11.0000', '2022-06-01', '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 (56647, 490, NULL, 7354, '1274', 'ALUMINIUM HYDROXIDE', NULL, '0.6700', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '36.0000', '2022-06-01', 'received', '0.6700', '0.6700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56648, 490, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-06-01', '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 (56649, 490, NULL, 8336, '2256', 'AMLODIPINE 5MG TEVA', NULL, '2.9000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '17.0000', '2022-06-01', 'received', '2.9000', '2.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56650, 490, NULL, 7911, '1831', 'BASECOLD SRP', NULL, '3.9600', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '3.0000', '2022-06-01', 'received', '3.9600', '3.9600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (56651, 490, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '24.5000', '32.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.5000', '0.0000', '2022-06-01', 'received', '24.5000', '24.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56652, 490, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7800', '1.0000', '2022-06-01', 'received', '3.6300', '3.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (56653, 490, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.6000', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '3.0000', '2022-06-01', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56654, 490, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '19.5000', '26.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-06-01', 'received', '19.5000', '19.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56655, 490, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2022-06-01', '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 (56656, 490, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '8.8000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '3.0000', '2022-06-01', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56657, 490, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '39.3500', '52.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.7500', '2.0000', '2022-06-01', 'received', '39.3500', '39.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '39.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 (56658, 490, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '7.0000', '2022-06-01', 'received', '2.7200', '2.7200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56659, 490, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-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 (56660, 490, NULL, 7959, '1879', 'PAIN OFF', NULL, '0.5200', '0.7000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-06-01', '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 (56661, 490, NULL, 7743, '1663', 'KISS', NULL, '1.3100', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4400', '0.0000', '2022-06-01', 'received', '1.3100', '1.3100', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (56662, 490, NULL, 7708, '1628', 'TEEDAR', NULL, '8.3000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-06-01', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (56663, 490, NULL, 7344, '1264', 'PARA DENK250 SUPPO', NULL, '2.1800', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '49.0000', '2022-06-01', 'received', '2.1800', '2.1800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56664, 490, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-06-01', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (56665, 490, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '10.4000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '4.0000', '2022-06-01', 'received', '10.4000', '10.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (56666, 490, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-06-01', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56667, 490, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3000', '8.0000', '2022-06-01', 'received', '4.0300', '4.0300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (56668, 490, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-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 (56669, 490, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '8.7800', '11.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '3.0000', '2022-06-01', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (56670, 490, NULL, 7379, '1299', 'TEETHING MIXTURE ERNEST', NULL, '7.8000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2022-06-01', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56671, 490, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '7.1500', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '0.0000', '2022-06-01', 'received', '7.1500', '7.1500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.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 (56672, 490, NULL, 7753, '1673', 'ZULU', NULL, '3.7800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '2.0000', '2022-06-01', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56673, 490, NULL, 7981, '1901', 'GACET 250', NULL, '0.7300', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '0.0000', '2022-06-01', '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 (56674, 490, NULL, 7883, '1803', 'EVECARE', NULL, '33.0000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-06-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 (56675, 490, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '2.0000', '2022-06-01', '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 (56676, 490, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.3600', '39.0000', '2022-06-01', 'received', '2.0400', '2.0400', '84.0000', NULL, NULL, 1, 'pc', '84.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 (56677, 490, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '57.7600', '77.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5200', '1.0000', '2022-06-01', 'received', '57.7600', '57.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.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 (56678, 490, NULL, 7326, '1246', 'M2 TONE', NULL, '60.0000', '79.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-06-01', 'received', '60.0000', '60.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56679, 490, NULL, 7974, '1894', 'EVECARE SRP', NULL, '26.9000', '36.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.7000', '1.0000', '2022-06-01', 'received', '26.9000', '26.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (56680, 490, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '132.3000', '175.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.3000', '0.0000', '2022-06-01', 'received', '132.3000', '132.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '132.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 (56681, 490, NULL, 8597, '2517', 'WELLWOMAN MAX', NULL, '59.0000', '78.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2022-06-01', 'received', '59.0000', '59.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56682, 490, NULL, 7989, '1909', 'WELLWOMAN PLUS', NULL, '45.2100', '60.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.6300', '0.0000', '2022-06-01', 'received', '45.2100', '45.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '45.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 (56683, 490, NULL, 7397, '1317', 'ZITHROMAX  SUSP', NULL, '99.3000', '131.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.6000', '1.0000', '2022-06-01', 'received', '99.3000', '99.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '99.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 (56684, 490, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '7.7000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '5.0000', '2022-06-01', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56685, 490, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '6.5000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-06-01', '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 (56686, 490, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '12.0000', '2022-06-01', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56687, 490, NULL, 7961, '1881', 'JARIFAN 2 SRP', NULL, '13.2000', '17.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '2.0000', '2022-06-01', 'received', '13.2000', '13.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56688, 490, NULL, 8171, '2091', 'ODYMIN', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-06-01', '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 (56689, 490, NULL, 8361, '2281', 'LEENA SRP', NULL, '7.2300', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6900', '1.0000', '2022-06-01', 'received', '7.2300', '7.2300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56690, 490, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '2.0000', '2022-06-01', '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 (56691, 490, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '47.9000', '64.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8000', '0.0000', '2022-06-01', 'received', '47.9000', '47.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.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 (56692, 490, NULL, 8712, '2632', 'GUDAPET SRP', NULL, '7.1000', '9.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '0.0000', '2022-06-01', '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 (56693, 490, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '3.1000', '4.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '2.0000', '2022-06-01', 'received', '3.1000', '3.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56694, 490, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '2.7000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-06-01', '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 (56695, 490, NULL, 7608, '1528', 'AUNTY MARY', NULL, '9.4700', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '2.0000', '2022-06-01', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (56696, 490, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '4.5600', '6.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '0.0000', '2022-06-01', 'received', '4.5600', '4.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (56697, 490, NULL, 8158, '2078', 'SUPIROCIN', NULL, '24.5000', '32.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '2.0000', '2022-06-01', '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 (56698, 490, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-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 (56699, 490, NULL, 7896, '1816', 'DIAGELLATES LARGE', NULL, '34.5000', '45.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.5000', '2.0000', '2022-06-01', 'received', '34.5000', '34.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56700, 490, NULL, 7897, '1817', 'DIAGELATE MED', NULL, '19.5000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-06-01', '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 (56701, 490, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '4.0000', '2022-06-01', '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 (56702, 490, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-06-01', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56703, 490, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '2.0000', '2022-06-01', '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 (56704, 490, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-06-01', '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 (56705, 490, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.0000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-06-01', '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 (56706, 490, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0500', '2.0000', '2022-06-01', 'received', '14.2100', '14.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (56707, 490, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '0.0000', '2022-06-01', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (56708, 490, NULL, 9935, '67891445', 'AMITRIPTYLINE 50MG', NULL, '12.4200', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.8400', '1.0000', '2022-06-01', 'received', '12.4200', '12.4200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (56709, 490, NULL, 9931, '34700573', 'ATENOLOL 50MG (ECL)', NULL, '3.9000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '5.0000', '2022-06-01', 'received', '3.9000', '3.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56710, 490, NULL, 9929, '92964585', '3TOL ANTICEPTIC 250ML', NULL, '4.5000', '6.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '4.0000', '2022-06-01', 'received', '4.5000', '4.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56711, 490, NULL, 9930, '60204824', '3TOL ANTICEPTIC 500ML', NULL, '9.5000', '12.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '4.0000', '2022-06-01', '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 (56712, 490, NULL, 9573, '18958409', 'RONFIT COLD SRP', NULL, '3.6300', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5200', '4.0000', '2022-06-01', 'received', '3.6300', '3.6300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.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 (56713, 490, NULL, 9424, '34445', 'RONFIT COLD P JNR SYRUP', NULL, '3.0300', '4.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.1200', '0.0000', '2022-06-01', 'received', '3.0300', '3.0300', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56714, 490, NULL, 9932, '21253402', 'GLUCO-NAF PINAPPLE', NULL, '11.6000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '3.0000', '2022-06-01', 'received', '11.6000', '11.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56715, 490, NULL, 9933, '20719624', 'EPIFENAC EYE DROP 1MG/ML', NULL, '16.9000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '2.0000', '2022-06-01', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (56716, 490, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3500', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.5000', '5.0000', '2022-06-01', 'received', '5.3500', '5.3500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (56717, NULL, NULL, 2363, '', '', 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 (56718, 491, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.3600', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4000', '24.0000', '2022-06-01', 'received', '1.3600', '1.3600', '40.0000', NULL, NULL, 1, 'pc', '40.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 (56719, 491, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '7.1500', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '1.0000', '2022-06-01', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (56720, 491, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '9.0000', '2022-06-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 (56721, 491, NULL, 7748, '1668', 'VIROL', NULL, '8.3000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '3.0000', '2022-06-01', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (56722, 491, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '25.0000', '2022-06-01', 'received', '0.2600', '0.2600', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56723, 491, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '1.0000', '2022-06-01', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56724, 491, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '7.1800', '9.4800', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5400', '2.0000', '2022-06-01', 'received', '7.1800', '7.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.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 (56725, 491, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.5000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '2.0000', '2022-06-01', '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 (56726, 491, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.4000', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '9.0000', '2022-06-01', '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 (56727, 491, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.8000', '3.0000', '2022-06-01', 'received', '49.6000', '49.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (56728, 491, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.6000', '19.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '5.0000', '2022-06-01', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56729, 491, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '20.0000', '2022-06-01', '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 (56730, 491, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '46.0000', '2022-06-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 (56731, 491, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-06-01', '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 (56732, 491, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '1.0000', '2022-06-01', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (56733, 491, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.9300', '1.3000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '10.0000', '2022-06-01', '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 (56734, 491, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '7.2000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-06-01', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56735, 491, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '28.6000', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '1.0000', '2022-06-01', 'received', '28.6000', '28.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (56736, 491, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '39.3500', '52.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.7500', '1.0000', '2022-06-01', 'received', '39.3500', '39.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '39.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 (56737, 491, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '26.9800', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.9000', '5.0000', '2022-06-01', 'received', '26.9800', '26.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '26.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 (56738, 491, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '22.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '1.0000', '2022-06-01', 'received', '22.0000', '22.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (56739, 491, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-06-01', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56740, 491, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.7000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '56.0000', '2022-06-01', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56741, 491, NULL, 7339, '1259', 'NO SPA40MG', NULL, '0.6600', '0.9000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '39.0000', '2022-06-01', 'received', '0.6600', '0.6600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (56742, 491, NULL, 8068, '1988', 'METOCLOPRAMIDE', NULL, '7.8000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '1.0000', '2022-06-01', '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 (56743, 491, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '34.8000', '46.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '4.0000', '2022-06-01', 'received', '34.8000', '34.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '34.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 (56744, 491, NULL, 8877, '2797', 'NEXCOFER 125ML', NULL, '5.7000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1000', '3.0000', '2022-06-01', 'received', '5.7000', '5.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (56745, 491, NULL, 7496, '1416', 'NORMAL SALINE', NULL, '6.3000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-06-01', '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 (56746, 491, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.1800', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9000', '3.0000', '2022-06-01', 'received', '13.1800', '13.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (56747, 491, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '9.9000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7000', '2.0000', '2022-06-01', 'received', '9.9000', '9.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56748, 491, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '27.9000', '37.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '2.0000', '2022-06-01', 'received', '27.9000', '27.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (56749, 491, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.9800', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '2.0000', '2022-06-01', 'received', '2.9800', '2.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (56750, 491, NULL, 9916, '67979926', 'EXETMOMOL EYE DROP', NULL, '4.8000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '2.0000', '2022-06-01', 'received', '4.8000', '4.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (56751, 491, NULL, 9915, '10239227', 'LUZATIL 20/120MG', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '10.0000', '2022-06-01', '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 (56752, 491, NULL, 9930, '60204824', '3TOL ANTICEPTIC 500ML', NULL, '9.5000', '12.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2022-06-01', '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 (56753, 491, NULL, 9929, '92964585', '3TOL ANTICEPTIC 250ML', NULL, '4.5000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2022-06-01', '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 (56754, NULL, NULL, 8030, '', '', 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 (56755, NULL, NULL, 9599, '', '', 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 (56756, NULL, NULL, 8669, '', '', 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 (56757, NULL, NULL, 7392, '', '', 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 (56758, NULL, NULL, 7897, '', '', 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 (56759, NULL, NULL, 9917, '', '', 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 (56760, NULL, NULL, 8264, '', '', 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 (56761, NULL, NULL, 7807, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (56762, NULL, NULL, 9021, '', '', 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 (56763, NULL, NULL, 7650, '', '', 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 (56764, NULL, NULL, 9558, '', '', 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 (56765, NULL, NULL, 9929, '', '', 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 (56811, NULL, NULL, 7769, '', '', 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 (56812, NULL, NULL, 9940, '', '', 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 (56813, NULL, NULL, 7383, '', '', 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 (56814, NULL, NULL, 9018, '', '', 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 (56815, NULL, NULL, 7469, '', '', 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 (56816, NULL, NULL, 8193, '', '', 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 (56817, NULL, NULL, 8041, '', '', 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 (56818, NULL, NULL, 7905, '', '', 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 (56819, NULL, NULL, 8165, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (56820, NULL, NULL, 9941, '', '', 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 (56821, NULL, NULL, 9656, '', '', 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 (56822, NULL, NULL, 7784, '', '', 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 (56823, NULL, NULL, 2607, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (56824, 492, NULL, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '12.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-06-02', '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 (56825, 492, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-06-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 (56826, 492, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '15.0000', '2022-06-02', 'received', '1.0500', '1.0500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (56827, 492, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '10.0000', '2022-06-02', 'received', '1.4000', '1.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56828, 492, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '15.5000', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '1.0000', '2022-06-02', '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 (56829, 492, NULL, 3070, '37547840', 'LOCUZADE BOTTLE B/S', NULL, '15.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5000', '1.0000', '2022-06-02', 'received', '15.5000', '15.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (56830, 492, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.0000', '8.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '6.0000', '2022-06-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 (56831, 492, NULL, 3070, '37547840', 'LOCUZADE BOTTLE B/S', NULL, '12.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '1.0000', '2022-06-02', '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 (56832, 492, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '8.3000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '6.0000', '2022-06-02', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (56833, 492, NULL, 8745, '2665', 'DON SIMON', NULL, '13.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-06-02', '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 (56834, 492, NULL, 8743, '2663', 'CERES DRINK', NULL, '14.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-06-02', '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 (56835, 492, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '17.0000', '20.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '4.0000', '2022-06-02', '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 (56836, 492, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '4.0000', '2022-06-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 (56837, 492, NULL, 2567, '83596243', 'NAN 1', NULL, '44.0000', '48.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-06-02', '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 (56838, 492, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '32.0000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '1.0000', '2022-06-02', '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 (56839, 492, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '31.0000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-06-02', 'received', '31.0000', '31.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56840, 492, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '11.2500', '14.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '4.0000', '2022-06-02', 'received', '11.2500', '11.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.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 (56841, 492, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '123.0000', '140.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.0000', '1.0000', '2022-06-02', 'received', '123.0000', '123.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '123.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56842, 492, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '17.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-06-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 (56843, 492, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '17.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '1.0000', '2022-06-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 (56844, 492, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '10.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '7.0000', '2022-06-02', '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 (56845, 492, NULL, 9936, '34037196', 'ADULT DIAPER PUREFIT', NULL, '41.0000', '55.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '1.0000', '2022-06-02', 'received', '41.0000', '41.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '41.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56846, 492, NULL, 9937, '09558515', 'ADULT DIAPER SLEEPY', NULL, '40.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-06-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 (56847, 492, NULL, 9938, '6455560', 'ADULT DIAPER PUREFIT', NULL, '40.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2022-06-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 (56848, 492, NULL, 9939, '15088867', 'GIVITE TOMBROWN S/S', NULL, '16.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-06-02', '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 (56849, 492, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3500', '7.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.3000', '18.0000', '2022-06-02', 'received', '5.3500', '5.3500', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '5.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 (56850, 471, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.2000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '10.0000', '2022-05-04', 'received', '5.2000', '5.2000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56851, 471, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.8000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-05-04', '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 (56852, 471, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '50.0000', '66.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-05-04', '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 (56853, 471, NULL, 9830, '04822009', 'ADMIRE BISCUITS ', NULL, '1.9000', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '5.0000', '2022-05-04', '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 (56854, 471, NULL, 9832, '55392512', 'BISCOVERY BISCUITS ', NULL, '1.5600', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '10.0000', '2022-05-04', 'received', '1.5600', '1.5600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (56855, 471, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '1.8000', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '17.0000', '2022-05-04', '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 (56856, 471, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '12.0000', '15.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2022-05-04', '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 (56857, 471, NULL, 2418, '5000204957327', 'GLADE AIR FRESHNER', NULL, '12.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-05-04', '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 (56858, 471, NULL, 7725, '1645', 'SOFTCARE WIPES', NULL, '9.5000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-05-04', '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 (56859, 471, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '8.3000', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-05-04', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (56860, 471, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '3.0000', '2022-05-04', '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 (56861, 471, NULL, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '5.0000', '6.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-05-04', 'received', '5.0000', '5.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (56862, 471, NULL, 9531, '33732023', 'KEL 360 TOOTH PASTE', NULL, '8.5000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2022-05-04', '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 (56863, 471, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '7.0000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-05-04', '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 (56864, 471, NULL, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '13.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-05-04', '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 (56865, 471, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '10.0000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-05-04', '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 (56866, 471, NULL, 2449, '73407261', 'DETTOL SOAP SMALL', NULL, '5.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2022-05-04', '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 (56867, 471, NULL, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '8.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-05-04', '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 (56868, 471, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '24.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-05-04', '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 (56869, 471, NULL, 9870, '87405612', 'PRINGLES MEDIUM CUP', NULL, '7.0000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-05-04', '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 (56870, 471, NULL, 9648, '71133764', 'FIESTA LUBRICANT GEL 40ML BIG', NULL, '16.3300', '21.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.3200', '3.0000', '2022-05-04', 'received', '16.3300', '16.3300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (56871, 471, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '23.0000', '2022-05-04', 'received', '1.4000', '1.4000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (56872, 471, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '30.0000', '2022-05-04', 'received', '1.0500', '1.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (56873, 471, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '1.0000', '1.5000', '32.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '32.0000', '2022-05-04', 'received', '1.0000', '1.0000', '32.0000', NULL, NULL, 1, 'pc', '32.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 (56874, 471, NULL, 8980, '2900', 'SLEMFIT M/S', NULL, '1.2000', '2.0000', '32.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '11.0000', '2022-05-04', 'received', '1.2000', '1.2000', '32.0000', NULL, NULL, 1, 'pc', '32.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 (56875, 471, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-05-04', 'received', '2.0000', '2.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (56876, NULL, NULL, 8134, '', '', 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 (56877, NULL, NULL, 7653, '', '', 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 (56878, NULL, NULL, 8701, '', '', 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 (56879, 493, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '7.0000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '7.0000', '2022-06-06', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56880, 493, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '3.0000', '2022-06-06', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (56881, 493, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '4.0000', '2022-06-06', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56882, 493, NULL, 7753, '1673', 'ZULU', NULL, '3.7800', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-06-06', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56883, 493, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '5.5000', '7.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-06-06', '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 (56884, 493, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '10.0000', '2022-06-06', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (56885, 493, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '45.2100', '60.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.8400', '0.0000', '2022-06-06', 'received', '45.2100', '45.2100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '45.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 (56886, 493, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.5000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-06-06', 'received', '2.5000', '2.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56887, 493, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '5.0000', '2022-06-06', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (56888, 493, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.8200', '1.5000', '125.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.5000', '96.0000', '2022-06-06', 'received', '0.8200', '0.8200', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '0.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 (56889, 493, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '3.0000', '2022-06-06', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56890, 493, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '496.0000', '7.0000', '2022-06-06', 'received', '49.6000', '49.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '49.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 (56891, 493, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '2.0000', '2022-06-06', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (56892, 493, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2500', '18.0000', '2022-06-06', 'received', '0.8100', '0.8100', '25.0000', NULL, NULL, 1, 'pc', '25.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 (56893, 493, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '29.0000', '38.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '2.0000', '2022-06-06', 'received', '29.0000', '29.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (56894, 493, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '8.5000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '3.0000', '2022-06-06', '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 (56895, 493, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '35.0000', '46.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.0000', '4.0000', '2022-06-06', 'received', '35.0000', '35.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56896, 493, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3000', '4.0000', '2022-06-06', 'received', '4.0300', '4.0300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (56897, 493, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '45.6000', '60.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '2.0000', '2022-06-06', 'received', '45.6000', '45.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '45.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 (56898, 493, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.7500', '1.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '59.0000', '2022-06-06', 'received', '0.7500', '0.7500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (56899, 493, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '14.8100', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.1000', '0.0000', '2022-06-06', 'received', '14.8100', '14.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (56900, 493, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '6.0000', '2022-06-06', '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 (56901, 493, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '4.0000', '2022-06-06', '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 (56902, 493, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2022-06-06', '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 (56903, 493, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.1000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '2.0000', '2022-06-06', 'received', '23.1000', '23.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (56904, 493, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '5.3000', '7.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '265.0000', '50.0000', '2022-06-06', 'received', '5.3000', '5.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56905, 493, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '2.0000', '2022-06-06', 'received', '17.3000', '17.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56906, 493, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '9.6000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-06-06', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56907, 493, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '24.5000', '32.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.5000', '2.0000', '2022-06-06', 'received', '24.5000', '24.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56908, 493, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-06-06', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56909, 493, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.8000', '12.0000', '2022-06-06', 'received', '7.2000', '7.2000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (56910, 493, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '5.0000', '2022-06-06', '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 (56911, 493, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '5.2300', '7.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7600', '0.0000', '2022-06-06', 'received', '5.2300', '5.2300', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56912, 493, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '3.0000', '2022-06-06', '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 (56913, 493, NULL, 9291, '3211', 'FIESTA LUBRICANT GEL SMALL', NULL, '15.4000', '20.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-06-06', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (56914, 493, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '8.0000', '2022-06-06', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (56915, 493, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '24.1000', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.3000', '3.0000', '2022-06-06', 'received', '24.1000', '24.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (56916, 493, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.0800', '4.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9200', '24.0000', '2022-06-06', 'received', '2.0800', '2.0800', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '2.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 (56917, 493, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '8.0000', '2022-06-06', '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 (56918, 493, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '7.8000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '5.0000', '2022-06-06', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56919, 493, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '21.7800', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5600', '0.0000', '2022-06-06', 'received', '21.7800', '21.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (56920, 493, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.7500', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '11.0000', '2022-06-06', 'received', '2.7500', '2.7500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56921, 493, NULL, 1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', NULL, '13.4000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '4.0000', '2022-06-06', 'received', '13.4000', '13.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (56922, 493, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2022-06-06', '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 (56923, 493, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '9.1000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '2.0000', '2022-06-06', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (56924, 493, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '10.5500', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.7500', '3.0000', '2022-06-06', 'received', '10.5500', '10.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (56925, 493, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '11.8000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '1.0000', '2022-06-06', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56926, 493, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.7000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '4.0000', '2022-06-06', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56927, 493, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '19.5000', '26.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '8.0000', '2022-06-06', 'received', '19.5000', '19.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (56928, 493, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2022-06-06', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56929, 493, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '45.2400', '60.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.4800', '2.0000', '2022-06-06', 'received', '45.2400', '45.2400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (56930, 493, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '37.7200', '50.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.3200', '4.0000', '2022-06-06', 'received', '37.7200', '37.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (56931, 493, NULL, 9933, '20719624', 'EPIFENAC EYE DROP 1MG/ML', NULL, '16.9000', '23.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '1.0000', '2022-06-06', 'received', '16.9000', '16.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (56932, 493, NULL, 9030, '2950', 'EPICIPRIN', NULL, '12.9000', '17.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '1.0000', '2022-06-06', 'received', '12.9000', '12.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (56933, 493, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6700', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '29.0000', '2022-06-06', 'received', '0.6700', '0.6700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56934, 493, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '7.2000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-06-06', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56935, 493, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '186.8000', '246.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '1.0000', '2022-06-06', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (56936, 493, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '99.3000', '131.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.3000', '0.0000', '2022-06-06', 'received', '99.3000', '99.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '99.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 (56937, 493, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '15.0000', '2022-06-06', 'received', '4.9000', '4.9000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (56938, 493, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '9.3600', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '0.0000', '2022-06-06', 'received', '9.3600', '9.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56939, 493, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '6.3200', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2000', '10.0000', '2022-06-06', 'received', '6.3200', '6.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (56940, 493, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-06', '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 (56941, 493, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '0.0000', '2022-06-06', 'received', '1.7200', '1.7200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (56942, 493, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.2000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '5.0000', '2022-06-06', '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 (56943, 493, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-06-06', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56944, 493, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.8000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '4.0000', '2022-06-06', '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 (56945, 493, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-06-06', '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 (56946, 493, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9500', '5.0000', '2022-06-06', 'received', '4.9900', '4.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56947, 493, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '4.2700', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8100', '1.0000', '2022-06-06', 'received', '4.2700', '4.2700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (56948, 493, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-06-06', '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 (56949, 493, NULL, 2935, '15629840', 'LUEX ADULT CHESTY COUGH', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-06-06', '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 (56950, 493, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '10.0000', '2022-06-06', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56951, 493, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '4.0000', '2022-06-06', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (56952, 493, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1000', '3.0000', '2022-06-06', 'received', '5.7000', '5.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (56953, 493, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '12.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-06-06', '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 (56954, 493, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2022-06-06', '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 (56955, 493, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '2.3000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '3.0000', '2022-06-06', 'received', '2.3000', '2.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56956, 493, NULL, 8149, '2069', 'DITHRANOL', NULL, '7.0000', '9.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '2.0000', '2022-06-06', '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 (56957, 493, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.3600', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.3600', '0.0000', '2022-06-06', 'received', '2.3600', '2.3600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '2.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 (56958, 493, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.3600', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '7.0000', '2022-06-06', 'received', '2.3600', '2.3600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (56959, 493, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '18.0000', '2022-06-06', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (56960, 493, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '8.5600', '11.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6800', '0.0000', '2022-06-06', 'received', '8.5600', '8.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (56961, 493, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '11.0000', '2022-06-06', '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 (56962, 493, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '2.0000', '2022-06-06', '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 (56963, 493, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '6.5000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '1.0000', '2022-06-06', '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 (56964, 493, NULL, 2903, '64476421', 'LIV 52 TABS', NULL, '33.2100', '44.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.4200', '2.0000', '2022-06-06', 'received', '33.2100', '33.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (56965, 493, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '4.3000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '4.0000', '2022-06-06', '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 (56966, 493, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3500', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7000', '0.0000', '2022-06-06', 'received', '14.3500', '14.3500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (56967, 493, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '6.2400', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '10.0000', '2022-06-06', 'received', '6.2400', '6.2400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (56968, 493, NULL, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '55.0000', '73.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2022-06-06', 'received', '55.0000', '55.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (56969, 493, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '60.0000', '80.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-06-06', 'received', '60.0000', '60.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56970, 493, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '50.0000', '2022-06-06', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (56971, 493, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-06-06', '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 (56972, 493, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.8000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '7.0000', '2022-06-06', '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 (56973, 493, NULL, 1613, 'PR-326', 'GYPRON SYR', NULL, '9.0000', '12.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-06-06', '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 (56974, 493, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '14.8000', '19.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '5.0000', '2022-06-06', 'received', '14.8000', '14.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56975, 493, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '30.8700', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.7400', '0.0000', '2022-06-06', 'received', '30.8700', '30.8700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (56976, 493, NULL, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '3.0000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-06-06', '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 (56977, 493, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '57.7600', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.7600', '0.0000', '2022-06-06', 'received', '57.7600', '57.7600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '57.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 (56978, 493, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '1.0000', '2022-06-06', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (56979, 493, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6300', '2.0000', '2022-06-06', 'received', '14.2100', '14.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (56980, 493, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '13.6000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '3.0000', '2022-06-06', '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 (56981, 493, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '10.0000', '13.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-06-06', '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 (56982, 493, NULL, 8068, '1988', 'METOCLOPRAMIDE', NULL, '7.8000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.8000', '0.0000', '2022-06-06', 'received', '7.8000', '7.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (56983, 493, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.2000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '3.0000', '2022-06-06', 'received', '3.2000', '3.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (56984, 493, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '4.5600', '6.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '18.0000', '2022-06-06', 'received', '4.5600', '4.5600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (56985, 493, NULL, 2946, '71670819', 'HEALTHLINK HAIR,NAIL&SPON TABS', NULL, '43.5000', '57.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '2.0000', '2022-06-06', 'received', '43.5000', '43.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (56986, 493, NULL, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', NULL, '0.3200', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '100.0000', '2022-06-06', '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 (56987, 493, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '65.0000', '86.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-06-06', 'received', '65.0000', '65.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (56988, NULL, NULL, 7725, '', '', 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 (56989, NULL, NULL, 7776, '', '', 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 (56990, NULL, NULL, 7670, '', '', 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 (56991, NULL, NULL, 1916, '', '', 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 (56992, NULL, NULL, 7327, '', '', 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 (56993, NULL, NULL, 2096, '', '', 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 (56994, NULL, NULL, 7430, '', '', 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 (56995, NULL, NULL, 8774, '', '', 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 (56996, NULL, NULL, 2580, '', '', 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 (56997, NULL, NULL, 9503, '', '', 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 (56998, NULL, NULL, 7928, '', '', 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 (56999, NULL, NULL, 2670, '', '', 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 (57000, NULL, NULL, 8243, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (57001, NULL, NULL, 9390, '', '', 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 (57002, NULL, NULL, 7574, '', '', 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 (57059, 495, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '8.0000', '2022-06-08', '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 (57060, 495, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.3800', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '0.0000', '2022-06-08', 'received', '0.3800', '0.3800', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (57061, 495, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-06-08', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (57062, 495, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.1800', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9000', '0.0000', '2022-06-08', 'received', '13.1800', '13.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (57063, 495, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-06-08', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57064, 495, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '10.6000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '0.0000', '2022-06-08', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57065, 495, NULL, 8017, '1937', 'SALOCOLD TAB', NULL, '0.6000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-08', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57066, 495, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-06-08', '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 (57067, 495, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3500', '0.0000', '2022-06-08', 'received', '9.4700', '9.4700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (57068, 495, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '0.0000', '2022-06-08', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57069, 495, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '37.7200', '50.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.3200', '0.0000', '2022-06-08', 'received', '37.7200', '37.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (57070, 495, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.8000', '3.7000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-06-08', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (57071, 495, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '6.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-06-08', '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 (57072, 495, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-06-08', 'received', '14.7000', '14.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57073, 495, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '0.0000', '2022-06-08', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (57074, 495, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '3.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2022-06-08', '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 (57075, 495, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-06-08', '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 (57076, 495, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.6000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4000', '0.0000', '2022-06-08', 'received', '1.6000', '1.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57077, 495, NULL, 2765, '39680747', 'DANRUB OINT', NULL, '7.5000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-08', 'received', '7.5000', '7.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57078, 495, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '12.3000', '16.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.9000', '0.0000', '2022-06-08', 'received', '12.3000', '12.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57079, 495, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-06-08', '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 (57080, 495, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '8.8000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-06-08', '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 (57081, 495, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '4.0000', '2022-06-08', 'received', '5.9000', '5.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57082, 495, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.9000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7000', '0.0000', '2022-06-08', 'received', '15.9000', '15.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (57083, 495, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2022-06-08', 'received', '3.7800', '3.7800', '15.0000', NULL, NULL, 1, 'pc', '15.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 (57084, 495, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.3600', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4000', '17.0000', '2022-06-08', 'received', '1.3600', '1.3600', '40.0000', NULL, NULL, 1, 'pc', '40.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 (57085, 495, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.8000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2022-06-08', '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 (57086, 495, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-06-08', 'received', '4.9000', '4.9000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (57087, 495, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.7500', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-06-08', 'received', '2.7500', '2.7500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57088, 495, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3000', '7.0000', '42.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.6000', '25.0000', '2022-06-08', 'received', '5.3000', '5.3000', '42.0000', NULL, NULL, 1, 'pc', '42.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 (57089, 495, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '12.5000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2022-06-08', '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 (57090, 495, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '17.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2022-06-08', '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 (57091, 495, NULL, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '28.5000', '32.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.0000', '1.0000', '2022-06-08', 'received', '28.5000', '28.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57092, 495, NULL, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-06-08', '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 (57093, 495, NULL, 8761, '26811', 'VITRAC b/s', NULL, '20.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-06-08', '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 (57094, 495, NULL, 8775, '2695', 'VITRAC S/S', NULL, '5.0000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2022-06-08', '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 (57095, 495, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '17.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2022-06-08', '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 (57096, 495, NULL, 9941, '37688522', 'HOLLANDIA M/S', NULL, '7.5000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2022-06-08', '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 (57097, 495, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '19.0000', '2022-06-08', 'received', '3.8000', '3.8000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (57098, 495, NULL, 9603, '50089033', 'BOTTLE FANTA/COKE 0.25ML SS/S', NULL, '2.9000', '3.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '8.0000', '2022-06-08', 'received', '2.9000', '2.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57099, 495, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.0000', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-06-08', '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 (57100, 495, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '15.5000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-06-08', '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 (57101, 495, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '8.3000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-06-08', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (57102, 495, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.0000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-06-08', '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 (57103, 495, NULL, 9469, '40088756', 'PANACHE', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-06-08', '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 (57104, 495, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.9000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7000', '0.0000', '2022-06-08', 'received', '15.9000', '15.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (57105, 495, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '23.0000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-06-08', '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 (57106, 495, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2022-06-08', '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 (57107, 495, NULL, 9514, '70994315', 'SAVLON 500MG', NULL, '25.0000', '30.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '1.0000', '2022-06-08', '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 (57108, 495, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '8.3000', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-06-08', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (57109, 495, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '32.0000', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-06-08', '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 (57110, 495, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '31.0000', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '1.0000', '2022-06-08', 'received', '31.0000', '31.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57111, 495, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-06-08', '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 (57112, 495, NULL, 9918, '29475936', 'AMUSU MIX', NULL, '9.5000', '12.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '4.0000', '2022-06-08', '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 (57113, 495, NULL, 9915, '10239227', 'LUZATIL 20/120MG', NULL, '6.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-06-08', '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 (57114, 495, NULL, 9933, '20719624', 'EPIFENAC EYE DROP 1MG/ML', NULL, '16.9000', '23.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '1.0000', '2022-06-08', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (57115, 495, NULL, 9934, '83788003', 'FEROFIX CAP', NULL, '4.7000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '2.0000', '2022-06-08', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57116, 495, NULL, 9931, '34700573', 'ATENOLOL 50MG (ECL)', NULL, '3.9000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '4.0000', '2022-06-08', 'received', '3.9000', '3.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57117, 495, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-06-08', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57118, 495, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '0.0000', '2022-06-08', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (57119, 495, NULL, 8735, '2655', 'LUMETHER  ADULT', NULL, '6.2000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-06-08', 'received', '6.2000', '6.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57120, 495, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.6000', '0.0000', '2022-06-08', 'received', '16.6600', '16.6600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (57121, 495, NULL, 9857, '65314822', 'SHAL ARTEM DISPERSIBLE', NULL, '2.6000', '3.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '1.0000', '2022-06-08', '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 (57122, 495, NULL, 2108, '85249693', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-06-08', '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 (57123, 495, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '18.3300', '24.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9900', '0.0000', '2022-06-08', 'received', '18.3300', '18.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.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 (57124, 495, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.6800', '14.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3600', '1.0000', '2022-06-08', 'received', '10.6800', '10.6800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.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 (57125, 495, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.8000', '0.0000', '2022-06-08', 'received', '49.6000', '49.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (57126, 495, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '10.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-06-08', '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 (57127, 495, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '8.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-06-08', '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 (57128, 495, NULL, 2033, '8859178707721', 'TOP COUNTRY ROLL ON 60ML', NULL, '5.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2022-06-08', '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 (57129, 495, NULL, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', NULL, '7.5000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-06-08', '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 (57130, 495, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '15.5000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '1.0000', '2022-06-08', '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 (57131, 495, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '9.5000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-06-08', '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 (57132, 495, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '6.5000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2022-06-08', '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 (57133, 495, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '5.5000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-06-08', '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 (57134, 495, NULL, 8700, '2620', 'KRIS', NULL, '2.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.5000', '1.0000', '2022-06-08', '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 (57135, 495, NULL, 8700, '2620', 'KRIS', NULL, '4.0000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '6.0000', '2022-06-08', '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 (57136, 495, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-06-08', '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 (57137, 495, 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', '2022-06-08', '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 (57138, 495, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '13.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-06-08', '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 (57139, 495, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '8.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-06-08', '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 (57140, 495, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '21.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-06-08', '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 (57141, 495, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '15.0000', '18.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-06-08', '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 (57142, 495, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-06-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 (57143, 495, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '9.5000', '12.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2022-06-08', '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 (57144, 495, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '7.0000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-06-08', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57145, 495, NULL, 2983, '27895278', 'CUSSONS BABY SOAP', NULL, '3.2000', '4.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-06-08', 'received', '3.2000', '3.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57146, 495, NULL, 9492, '04045978', ' EASY ON SPRAY STARCH', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-06-08', '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 (57147, 495, NULL, 8124, '2044', 'SASSO SPRAY', NULL, '19.0000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-06-08', '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 (57148, 495, NULL, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '18.0000', '21.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-06-08', '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 (57149, 495, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '11.2500', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2022-06-08', 'received', '11.2500', '11.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.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 (57150, 495, NULL, 8835, '2755', 'GEISHA SOAP', NULL, '7.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-06-08', '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 (57151, 495, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '12.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-06-08', '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 (57152, 495, NULL, 2011, '6948031103014', 'VIP TOOTHBRUSH', NULL, '0.7500', '1.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '4.0000', '2022-06-08', '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 (57153, 495, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.4500', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '4.0000', '2022-06-08', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57154, 495, NULL, 1960, '6033000298379', 'LIFEBUOY SOAP', NULL, '7.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '4.0000', '2022-06-08', '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 (57155, 494, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.4000', '0.0000', '2022-06-08', 'received', '49.6000', '49.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.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 (57156, 494, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '5.0000', '2022-06-08', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57157, 494, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '1.0000', '2022-06-08', 'received', '2.0800', '2.0800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (57158, 494, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.2000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '10.0000', '2022-06-08', '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 (57159, 494, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '19.5000', '26.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-06-08', 'received', '19.5000', '19.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57160, 494, NULL, 7748, '1668', 'VIROL', NULL, '8.3000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '2.0000', '2022-06-08', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (57161, 494, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-06-08', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57162, 494, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.2000', '0.0000', '2022-06-08', 'received', '16.9000', '16.9000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '16.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 (57163, 494, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '5.7900', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9500', '0.0000', '2022-06-08', 'received', '5.7900', '5.7900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57164, 494, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-06-08', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57165, 494, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-06-08', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57166, 494, NULL, 7317, '1237', 'LONART DS TABS', NULL, '14.5800', '20.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5800', '0.0000', '2022-06-08', 'received', '14.5800', '14.5800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.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 (57167, 494, NULL, 8315, '2235', 'DREZ SOLN 100ML', NULL, '14.3500', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0500', '3.0000', '2022-06-08', 'received', '14.3500', '14.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (57168, 494, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '4.2400', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4000', '0.0000', '2022-06-08', 'received', '4.2400', '4.2400', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57169, 494, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.6000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '10.0000', '2022-06-08', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57170, 494, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '22.8000', '30.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '3.0000', '2022-06-08', 'received', '22.8000', '22.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '22.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 (57171, 494, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '42.4000', '56.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '2.0000', '2022-06-08', 'received', '42.4000', '42.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '42.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 (57172, 494, NULL, 7859, '1779', 'KOFLET', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-06-08', '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 (57173, 494, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '5.0000', '2022-06-08', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57174, 494, NULL, 7857, '1777', 'NUGEL', NULL, '18.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-06-08', '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 (57175, 494, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-06-08', '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 (57176, 494, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '6.8000', '9.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6000', '11.0000', '2022-06-08', 'received', '6.8000', '6.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57177, 494, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '9.6000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-06-08', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57178, 494, NULL, 7938, '1858', 'ETISALA CAPS', NULL, '4.4000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '5.0000', '2022-06-08', '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 (57179, 494, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.2000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-06-08', '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 (57180, 494, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '8.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '1.0000', '2022-06-08', '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 (57181, 494, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.6000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2022-06-08', '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 (57182, 494, NULL, 7753, '1673', 'ZULU', NULL, '3.7800', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '4.0000', '2022-06-08', '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 (57183, 494, NULL, 7652, '1572', 'PIRITON TAB', NULL, '1.1700', '1.6000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2022-06-08', 'received', '1.1700', '1.1700', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (57184, 494, NULL, 7774, '1694', 'MIST POT SIT', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '6.0000', '2022-06-08', '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 (57185, 494, NULL, 1881, '5021265232062', 'PREGNACARE BREAST FEEDING UK', NULL, '106.6000', '141.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '213.2000', '1.0000', '2022-06-08', 'received', '106.6000', '106.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '106.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 (57186, 494, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2022-06-08', '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 (57187, 494, NULL, 9187, '3107', 'EPICROM 2%', NULL, '18.9000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2022-06-08', '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 (57188, 494, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '9.1000', '12.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.7000', '3.0000', '2022-06-08', 'received', '9.1000', '9.1000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '9.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 (57189, 494, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '10.5500', '14.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8500', '4.0000', '2022-06-08', 'received', '10.5500', '10.5500', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '10.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 (57190, 494, NULL, 9158, '3078', 'METRO Z SUSP', NULL, '5.8900', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4500', '1.0000', '2022-06-08', 'received', '5.8900', '5.8900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57191, 494, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-06-08', '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 (57192, 494, NULL, 8658, '2578', 'FLUCOR DAY', NULL, '17.6000', '23.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.0000', '0.0000', '2022-06-08', 'received', '17.6000', '17.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.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 (57193, 494, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '17.6000', '23.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-06-08', 'received', '17.6000', '17.6000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '17.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 (57194, 494, NULL, 8548, '2468', 'MARK -2 INH', NULL, '6.7000', '9.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '201.0000', '0.0000', '2022-06-08', 'received', '6.7000', '6.7000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (57195, 494, NULL, 7715, '1635', 'MALARIA TEST KIT', NULL, '4.6000', '6.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '20.0000', '2022-06-08', 'received', '4.6000', '4.6000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (57196, 494, NULL, 8288, '2208', 'GLOVES', NULL, '1.1600', '1.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2022-06-08', 'received', '1.1600', '1.1600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (57197, 494, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '50.0000', '66.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-06-08', '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 (57198, 494, NULL, 9811, '32783983', 'BENYLIN 4 FLU LIQUID 100ML', NULL, '22.9800', '31.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.9000', '1.0000', '2022-06-08', 'received', '22.9800', '22.9800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57199, 494, NULL, 7865, '1785', 'GO COUGH', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-06-08', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57200, 494, NULL, 7323, '1243', 'LUEX CHILD DRY', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-06-08', '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 (57201, 494, NULL, 9145, '3065', 'FINE LIFE BLOOD TONIC', NULL, '8.3000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '2.0000', '2022-06-08', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (57202, 494, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-06-08', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (57203, 494, NULL, 7867, '1787', 'AMPICLOX 250 CAPS', NULL, '2.3600', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.8000', '0.0000', '2022-06-08', 'received', '2.3600', '2.3600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (57204, 494, NULL, 8395, '2315', 'DIAZEPAM 10MG', NULL, '0.6200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '33.0000', '2022-06-08', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (57205, 494, NULL, 9207, '3127', 'FERROUS SULPHATE STRIPS', NULL, '0.4800', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '38.0000', '2022-06-08', '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 (57206, 494, NULL, 9905, '85810978', 'TAMSULOSIN 400MG CAPS TEVA', NULL, '17.0000', '22.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '4.0000', '2022-06-08', '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 (57207, 494, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.1000', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '28.0000', '2022-06-08', 'received', '1.1000', '1.1000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57208, 494, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2022-06-08', '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 (57209, 494, NULL, 7650, '1570', 'HISTAZINE SRP', NULL, '4.6000', '6.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.2000', '5.0000', '2022-06-08', 'received', '4.6000', '4.6000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (57210, 494, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '10.0700', '13.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.0500', '8.0000', '2022-06-08', 'received', '10.0700', '10.0700', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '10.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 (57211, 494, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '246.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '373.6000', '0.0000', '2022-06-08', 'received', '186.8000', '186.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '186.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 (57212, NULL, NULL, 9155, '', '', 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 (57213, NULL, NULL, 9733, '', '', 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 (57214, NULL, NULL, 8953, '', '', 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 (57215, NULL, NULL, 1932, '', '', 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 (57216, NULL, NULL, 2032, '', '', 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 (57217, NULL, NULL, 8489, '', '', 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 (57218, NULL, NULL, 8071, '', '', 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 (57219, NULL, NULL, 7974, '', '', 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 (57220, NULL, NULL, 8597, '', '', 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 (57221, NULL, NULL, 9942, '', '', 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 (57222, NULL, NULL, 9877, '', '', 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 (57223, NULL, NULL, 7828, '', '', 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 (57224, NULL, NULL, 9148, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57225, NULL, NULL, 7755, '', '', 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 (57226, NULL, NULL, 9909, '', '', 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 (57227, NULL, NULL, 8678, '', '', 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 (57228, NULL, NULL, 8534, '', '', 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 (57229, NULL, NULL, 7950, '', '', 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 (57230, NULL, NULL, 9933, '', '', 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 (57231, NULL, NULL, 7682, '', '', 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 (57232, NULL, NULL, 9231, '', '', 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 (57233, NULL, NULL, 8623, '', '', 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 (57234, NULL, NULL, 1936, '', '', 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 (57235, NULL, NULL, 1606, '', '', 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 (57336, NULL, NULL, 9408, '', '', 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 (57337, NULL, NULL, 9844, '', '', 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 (57338, NULL, NULL, 8637, '', '', 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 (57378, NULL, NULL, 9590, '', '', 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 (57379, NULL, NULL, 9725, '', '', 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 (57380, NULL, NULL, 9112, '', '', 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 (57381, NULL, NULL, 2578, '', '', 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 (57382, NULL, NULL, 2080, '', '', 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 (57383, NULL, NULL, 9822, '', '', 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 (57384, NULL, NULL, 9523, '', '', 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 (57385, NULL, NULL, 9940, '', '', 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 (57386, 497, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '2.0000', '2022-06-14', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57387, 497, NULL, 7322, '1242', 'LUEX ADULT DRY', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2022-06-14', '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 (57388, 497, NULL, 7983, '1903', 'ASTHALEX', NULL, '5.9000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '0.0000', '2022-06-14', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57389, 497, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-06-14', '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 (57390, 497, NULL, 7535, '1455', 'SAMAILN ADULT', NULL, '6.5000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-06-14', '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 (57391, 497, NULL, 7865, '1785', 'GO COUGH', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-06-14', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57392, 497, NULL, 9424, '34445', 'RONFIT COLD P JNR SYRUP', NULL, '3.0300', '4.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1800', '1.0000', '2022-06-14', 'received', '3.0300', '3.0300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57393, 497, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.9500', '34.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '2.0000', '2022-06-14', 'received', '25.9500', '25.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.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 (57394, 497, NULL, 8163, '2083', 'OTRIVIN ADULT', NULL, '28.6000', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '2.0000', '2022-06-14', 'received', '28.6000', '28.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (57395, 497, NULL, 8164, '2084', 'OTRIVIN CHILD', NULL, '26.6200', '35.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8600', '0.0000', '2022-06-14', 'received', '26.6200', '26.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (57396, 497, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.9000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-06-14', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57397, 497, NULL, 7366, '1286', 'ATORVASTATIN10MG', NULL, '7.0000', '11.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2022-06-14', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57398, 497, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.7000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '3.0000', '2022-06-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 (57399, 497, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.1800', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9000', '2.0000', '2022-06-14', 'received', '13.1800', '13.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (57400, 497, NULL, 7333, '1253', 'MR Q', NULL, '3.8000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2022-06-14', 'received', '3.8000', '3.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57401, 497, NULL, 2406, '8901138502829', 'MENTAT', NULL, '22.0000', '30.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2022-06-14', '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 (57402, 497, NULL, 7583, '1503', 'DICLOLEX TAB', NULL, '1.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '10.0000', '2022-06-14', '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 (57403, 497, NULL, 7688, '1608', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '2.0000', '2022-06-14', 'received', '14.7000', '14.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57404, 497, NULL, 7883, '1803', 'EVECARE', NULL, '33.8000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-06-14', 'received', '33.8000', '33.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (57405, 497, NULL, 7376, '1296', 'VIT B DENK', NULL, '14.2100', '18.7500', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.1000', '0.0000', '2022-06-14', 'received', '14.2100', '14.2100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (57406, 497, NULL, 7635, '1555', 'DECATYLINE LOZ', NULL, '18.5000', '24.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '1.0000', '2022-06-14', '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 (57407, 497, NULL, 8203, '2123', 'INDOCID', NULL, '0.5000', '0.7000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2022-06-14', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57408, 497, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '2.0000', '2022-06-14', 'received', '1.3000', '1.3000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (57409, 497, NULL, 7562, '1482', 'IBEX', NULL, '7.6300', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5200', '1.0000', '2022-06-14', 'received', '7.6300', '7.6300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.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 (57410, 497, NULL, 7806, '1726', 'DOMI 10', NULL, '2.0000', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-06-14', '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 (57411, 497, NULL, 7807, '1727', 'DOMI 30', NULL, '2.1600', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '3.0000', '2022-06-14', 'received', '2.1600', '2.1600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (57412, 497, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.4000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '10.0000', '2022-06-14', '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 (57413, 497, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-06-14', '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 (57414, 497, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '18.9000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '1.0000', '2022-06-14', '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 (57415, 497, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-06-14', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57416, 497, NULL, 7623, '1543', 'NIGHT NURSE CAPS', NULL, '47.0000', '62.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '1.0000', '2022-06-14', 'received', '47.0000', '47.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57417, 497, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '10.0700', '13.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.6300', '0.0000', '2022-06-14', 'received', '10.0700', '10.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.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 (57418, 497, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '37.7100', '50.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.2600', '2.0000', '2022-06-14', 'received', '37.7100', '37.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (57419, 497, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '11.9800', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9400', '0.0000', '2022-06-14', 'received', '11.9800', '11.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (57420, 497, NULL, 9330, '3250', 'APETATRUST', NULL, '10.5000', '13.8600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '3.0000', '2022-06-14', '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 (57421, 497, NULL, 9269, '3189', 'LETARON SYRUP', NULL, '3.4000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '1.0000', '2022-06-14', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57422, 497, NULL, 7644, '1564', 'CYTOTEC', NULL, '4.4800', '10.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '268.8000', '42.0000', '2022-06-14', 'received', '4.4800', '4.4800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '4.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 (57423, 497, NULL, 9798, '55455893', 'ENACEF 250MG', NULL, '16.8000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '5.0000', '2022-06-14', 'received', '16.8000', '16.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57424, 497, NULL, 7745, '1665', 'DUREX COND', NULL, '6.7000', '10.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.4000', '9.0000', '2022-06-14', 'received', '6.7000', '6.7000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57425, 497, NULL, 9609, '47724870', 'MALIN BABY PLUS SYRUP', NULL, '9.1000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '5.0000', '2022-06-14', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (57426, 497, NULL, 7591, '1511', 'GYPRONE TAB', NULL, '2.0000', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2022-06-14', 'received', '2.0000', '2.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (57427, 497, NULL, 2321, '80141429', 'MIST F.A.C', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-06-14', '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 (57428, 497, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '0.0000', '2022-06-14', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57429, 497, NULL, 7482, '1402', 'MAXMOX 500', NULL, '4.7000', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2022-06-14', 'received', '4.7000', '4.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57430, 497, NULL, 7678, '1598', 'CETAPOL PM', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2022-06-14', '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 (57431, 497, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '11.8000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '4.0000', '2022-06-14', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57432, 497, NULL, 8877, '2797', 'NEXCOFER 125ML', NULL, '5.7000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '4.0000', '2022-06-14', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (57433, 497, NULL, 7621, '1541', 'METAGYL SRP', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '3.0000', '2022-06-14', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57434, 497, NULL, 7586, '1506', 'EMGIFLOX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-06-14', '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 (57435, 497, NULL, 7965, '1885', 'EXFORGE 10/160', NULL, '6.8100', '9.1000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '381.3600', '52.0000', '2022-06-14', 'received', '6.8100', '6.8100', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '6.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 (57436, 497, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '22.0000', '2022-06-14', 'received', '1.4000', '1.4000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (57437, 497, NULL, 7635, '1555', 'DECATYLINE LOZ', NULL, '18.5000', '24.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '2.0000', '2022-06-14', '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 (57438, 497, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '8.8000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2022-06-14', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57439, 497, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '5.0000', '2022-06-14', '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 (57440, 497, NULL, 7464, '1384', 'RHINATHIOL ADULT BLUE', NULL, '29.9600', '39.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.8000', '2.0000', '2022-06-14', 'received', '29.9600', '29.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (57441, 497, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '4.0000', '2022-06-14', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57442, 497, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-06-14', '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 (57443, 497, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '8.8000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '5.0000', '2022-06-14', '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 (57444, 497, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '4.5600', '6.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '0.0000', '2022-06-14', 'received', '4.5600', '4.5600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (57445, 497, NULL, 8193, '2113', 'STOPKOF CHILD', NULL, '6.9800', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9000', '2.0000', '2022-06-14', 'received', '6.9800', '6.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (57446, 497, NULL, 7770, '1690', 'LUEX BABY COUGH', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-06-14', '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 (57447, 497, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '6.5000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '6.0000', '2022-06-14', '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 (57448, 497, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-06-14', '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 (57449, 497, NULL, 9098, '3018', 'JOY VIKIL', NULL, '26.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-06-14', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57450, 497, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-06-14', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57451, 497, NULL, 9231, '3151', 'LEXOFEN SUSP 150ML', NULL, '12.9000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '3.0000', '2022-06-14', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57452, 497, NULL, 8040, '1960', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '3.0000', '2022-06-14', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (57453, 497, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '4.0000', '2022-06-14', '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 (57454, 497, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '16.9000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '2.0000', '2022-06-14', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (57455, 497, NULL, 7634, '1554', 'CIPROLEX EYE DROP', NULL, '10.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-06-14', '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 (57456, 497, NULL, 7881, '1801', 'FENBASE', NULL, '2.7500', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '8.0000', '2022-06-14', 'received', '2.7500', '2.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57457, 497, NULL, 8037, '1957', 'EZIPEN', NULL, '2.3700', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '9.0000', '2022-06-14', 'received', '2.3700', '2.3700', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57458, 497, NULL, 8448, '2368', 'ABYVITA SRP', NULL, '9.9000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '4.0000', '2022-06-14', '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 (57459, 497, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '0.9300', '1.3000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '31.0000', '2022-06-14', 'received', '0.9300', '0.9300', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57460, 497, NULL, 7397, '1317', 'ZITHROMAX  SUSP', NULL, '99.3000', '131.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.3000', '1.0000', '2022-06-14', 'received', '99.3000', '99.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '99.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 (57461, 497, NULL, 8485, '2405', 'CEFIXIME TAB', NULL, '9.0000', '12.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2022-06-14', 'received', '9.0000', '9.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (57462, 497, NULL, 9914, '45710979', 'FLEMING 1000MG TABLET', NULL, '46.9900', '62.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.9400', '4.0000', '2022-06-14', 'received', '46.9900', '46.9900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '46.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 (57463, 497, NULL, 9024, '2944', 'KALAMINA LOTION', NULL, '7.4400', '10.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0800', '3.0000', '2022-06-14', 'received', '7.4400', '7.4400', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '7.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 (57464, 497, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '11.8000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '1.0000', '2022-06-14', 'received', '11.8000', '11.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57465, 497, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '8.8200', '12.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.7400', '2.0000', '2022-06-14', 'received', '8.8200', '8.8200', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '8.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 (57466, 497, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '10.1800', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0800', '5.0000', '2022-06-14', 'received', '10.1800', '10.1800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (57467, NULL, NULL, 1342, '', '', 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 (57474, NULL, NULL, 8711, '', '', 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 (57475, NULL, NULL, 1470, '', '', 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 (57476, NULL, NULL, 1954, '', '', 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 (57477, NULL, NULL, 9196, '', '', 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 (57478, NULL, NULL, 9711, '', '', 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 (57479, NULL, NULL, 9943, '', '', 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 (57480, NULL, NULL, 2969, '', '', 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 (57481, NULL, NULL, 2995, '', '', 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 (57482, NULL, NULL, 7556, '', '', 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 (57483, NULL, NULL, 7745, '', '', 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 (57484, NULL, NULL, 3011, '', '', 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 (57485, NULL, NULL, 8406, '', '', 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 (57486, NULL, NULL, 8689, '', '', 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 (57487, NULL, NULL, 1625, '', '', 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 (57488, NULL, NULL, 8825, '', '', 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 (57489, NULL, NULL, 7480, '', '', 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 (57490, NULL, NULL, 2654, '', '', 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 (57491, NULL, NULL, 7658, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57492, NULL, NULL, 7881, '', '', 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 (57493, 498, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.5000', '2.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '18.0000', '2022-06-14', '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 (57494, 498, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '45.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2500', '25.0000', '2022-06-14', 'received', '1.0500', '1.0500', '45.0000', NULL, NULL, 1, 'pc', '45.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 (57495, 498, NULL, 9832, '55392512', 'BISCOVERY BISCUITS ', NULL, '2.1000', '3.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '3.0000', '2022-06-14', 'received', '2.1000', '2.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (57496, 498, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '1.8000', '3.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '1.0000', '2022-06-14', 'received', '1.8000', '1.8000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (57497, 498, NULL, 9830, '04822009', 'ADMIRE BISCUITS ', NULL, '2.1000', '3.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '7.0000', '2022-06-14', 'received', '2.1000', '2.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (57498, 498, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3000', '7.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '254.4000', '27.0000', '2022-06-14', 'received', '5.3000', '5.3000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (57499, 498, NULL, 9482, '56424675', ' LUBRICATED  CONDOM 3 IN 1', NULL, '0.5000', '1.0000', '150.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-06-14', 'received', '0.5000', '0.5000', '150.0000', NULL, NULL, 1, 'pc', '150.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 (57500, NULL, NULL, 7668, '', '', 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 (57501, NULL, NULL, 9526, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (57502, NULL, NULL, 9754, '', '', 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 (57503, NULL, NULL, 9566, '', '', 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 (57504, NULL, NULL, 7716, '', '', 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 (57505, NULL, NULL, 8739, '', '', 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 (57506, NULL, NULL, 7382, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (57507, 496, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '17.5000', '20.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '2.0000', '2022-06-13', 'received', '17.5000', '17.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57508, 496, NULL, 8934, '2854', 'BLUE JEANS DRINKS', NULL, '8.0000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '6.0000', '2022-06-13', '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 (57509, 496, NULL, 8763, '2683', 'VODY', NULL, '9.1700', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0200', '2.0000', '2022-06-13', 'received', '9.1700', '9.1700', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57510, 496, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '12.0000', '2022-06-13', 'received', '6.0000', '6.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (57511, 496, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.1700', '5.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0400', '8.0000', '2022-06-13', 'received', '4.1700', '4.1700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (57512, 496, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '19.0000', '2022-06-13', 'received', '3.8000', '3.8000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (57513, 496, NULL, 8759, '2679', 'FRUTELLI', NULL, '10.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-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 (57514, 496, NULL, 8745, '2665', 'DON SIMON', NULL, '13.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-06-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 (57515, 496, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.0000', '8.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '5.0000', '2022-06-13', '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 (57516, 496, NULL, 8772, '2692', 'HOLLANDIA', NULL, '15.0000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-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 (57517, 496, NULL, 9941, '37688522', 'HOLLANDIA M/S', NULL, '7.5000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '9.0000', '2022-06-13', '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 (57518, 496, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '15.5000', '18.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.0000', '0.0000', '2022-06-13', 'received', '15.5000', '15.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57519, 496, NULL, 8915, '2835', 'LUCOZADE 380', NULL, '7.9200', '10.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0400', '1.0000', '2022-06-13', 'received', '7.9200', '7.9200', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '7.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 (57520, 496, NULL, 9469, '40088756', 'PANACHE', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-06-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 (57521, 496, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '18.0000', '2022-06-13', 'received', '1.4000', '1.4000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (57522, 496, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '26.0000', '2022-06-13', 'received', '1.0500', '1.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (57523, 496, NULL, 8769, '2689', 'HUNTERS', NULL, '8.8300', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '3.0000', '2022-06-13', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57524, 496, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '8.8300', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '6.0000', '2022-06-13', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57525, 496, NULL, 8767, '2687', 'KISS DRINK', NULL, '9.6000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '5.0000', '2022-06-13', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57526, 496, NULL, 8982, '2902', 'CRANBERRY', NULL, '18.0000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-06-13', '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 (57527, 496, NULL, 2962, '17785722', 'MOSQUITO REPELLENT', NULL, '5.5000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '4.0000', '2022-06-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 (57528, 496, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '17.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2022-06-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 (57529, 496, NULL, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '12.5000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-06-13', '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 (57530, 496, NULL, 8372, '2292', 'TENDRINA LOTN B/S', NULL, '11.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '2.0000', '2022-06-13', '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 (57531, 496, NULL, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', NULL, '15.5000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '2.0000', '2022-06-13', 'received', '15.5000', '15.5000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57532, 496, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '15.5000', '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5000', '1.0000', '2022-06-13', 'received', '15.5000', '15.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (57533, 496, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '9.5000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2022-06-13', '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 (57534, 496, NULL, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '9.5000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2022-06-13', '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 (57535, 496, NULL, 9829, '40658408', 'Dove Roll on', NULL, '11.5000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '6.0000', '2022-06-13', 'received', '11.5000', '11.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57536, 496, NULL, 8279, '2199', 'POWER HOUSE', NULL, '7.5000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '4.0000', '2022-06-13', '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 (57537, 496, NULL, 8566, '2486', 'SURE SPRAY', NULL, '18.0000', '22.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '8.0000', '2022-06-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 (57538, 496, NULL, 9836, '50969936', 'HONEY GINGER', NULL, '30.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-06-13', '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 (57539, 496, NULL, 9835, '93439136', 'HONEY GINSENG', NULL, '30.0000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-06-13', '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 (57540, 496, NULL, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', NULL, '20.5000', '27.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '0.0000', '2022-06-13', '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 (57541, 496, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '5.3000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '2.0000', '2022-06-13', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57542, 496, NULL, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '7.5000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-06-13', '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 (57543, 496, NULL, 7730, '1650', 'MENTOS FRESH ACTION', NULL, '0.1000', '0.2000', '140.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '89.0000', '2022-06-13', 'received', '0.1000', '0.1000', '140.0000', NULL, NULL, 1, 'pc', '140.0000', NULL, NULL, NULL, NULL, '0.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 (57544, 496, NULL, 8061, '1981', 'CHOCOLATE', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-06-13', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57545, 496, NULL, 8415, '2335', 'CHOCOLATE M/S', NULL, '3.6000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '20.0000', '2022-06-13', 'received', '3.6000', '3.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57546, 496, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '12.0000', '2022-06-13', '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 (57547, NULL, NULL, 9729, '', '', 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 (57548, NULL, NULL, 9914, '', '', 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 (57549, NULL, NULL, 9231, '', '', 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 (57550, NULL, NULL, 8735, '', '', 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 (57551, NULL, NULL, 9920, '', '', 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 (57552, NULL, NULL, 9930, '', '', 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 (57553, NULL, NULL, 9627, '', '', 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 (57554, NULL, NULL, 9960, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57555, NULL, NULL, 9959, '', '', 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 (57556, NULL, NULL, 9907, '', '', 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 (57557, NULL, NULL, 7561, '', '', 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 (57558, NULL, NULL, 7464, '', '', 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 (57559, NULL, NULL, 9956, '', '', 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 (57560, NULL, NULL, 9958, '', '', 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 (57561, NULL, NULL, 2062, '', '', 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 (57562, NULL, NULL, 9657, '', '', 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 (57563, NULL, NULL, 8534, '', '', 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 (57564, NULL, NULL, 2887, '', '', 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 (57565, NULL, NULL, 7831, '', '', 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 (57566, NULL, NULL, 8057, '', '', 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 (57567, NULL, NULL, 8682, '', '', 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 (57568, 499, NULL, 8814, '2734', 'GENTA INJ', NULL, '0.5000', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-06-21', 'received', '0.5000', '0.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (57569, 499, NULL, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '0.5000', '1.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '60.0000', '2022-06-21', 'received', '0.5000', '0.5000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (57570, 499, NULL, 7490, '1410', 'SYRINGE 5CC', NULL, '0.2500', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '60.0000', '2022-06-21', 'received', '0.2500', '0.2500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (57571, 499, NULL, 7547, '1467', 'SYRINGE 10MLS', NULL, '0.3300', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-21', '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 (57572, 499, NULL, 1827, 'PR-540', 'SYRINGES & NEES 2MLS', NULL, '0.2800', '0.4000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '64.0000', '2022-06-21', 'received', '0.2800', '0.2800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (57573, 499, NULL, 9514, '70994315', 'SAVLON 500MG', NULL, '25.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-06-21', '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 (57574, 499, NULL, 7953, '1873', 'SAVLON 250', NULL, '18.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-06-21', '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 (57575, 499, NULL, 8369, '2289', 'SAVLON 125', NULL, '12.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2022-06-21', '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 (57576, 499, NULL, 2427, '44595573', 'SAVLON SS/S', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-21', '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 (57577, 499, NULL, 8328, '2248', 'GOFEX', NULL, '10.0000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-06-21', '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 (57578, 499, NULL, 7725, '1645', 'SOFTCARE WIPES', NULL, '11.1700', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0200', '0.0000', '2022-06-21', 'received', '11.1700', '11.1700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.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 (57579, 499, NULL, 9178, '3098', 'PROPA LINER', NULL, '6.0000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-06-21', '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 (57580, 499, NULL, 8557, '2477', 'SOFTCARE DIAPER', NULL, '12.0000', '15.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-06-21', '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 (57581, 499, NULL, 7776, '1696', 'PENICILLIN OINT', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-06-21', '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 (57582, 499, NULL, 8596, '2516', 'POSTINOR LOCAL', NULL, '2.5000', '5.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-06-21', 'received', '2.5000', '2.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (57583, 500, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '19.5000', '26.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-06-21', 'received', '19.5000', '19.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57584, 500, NULL, 7522, '1442', 'VISCOF D', NULL, '12.0400', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.2000', '0.0000', '2022-06-21', 'received', '12.0400', '12.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (57585, 500, NULL, 7523, '1443', 'VISCOF S', NULL, '12.0400', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.2000', '3.0000', '2022-06-21', 'received', '12.0400', '12.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (57586, 500, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-06-21', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57587, 500, NULL, 7781, '1701', 'PENICILLIN TAB', NULL, '0.9800', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-06-21', 'received', '0.9800', '0.9800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (57588, 500, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-06-21', '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 (57589, 500, NULL, 7715, '1635', 'MALARIA TEST KIT', NULL, '4.6000', '6.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '17.0000', '2022-06-21', 'received', '4.6000', '4.6000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (57590, 500, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '6.5000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '1.0000', '2022-06-21', '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 (57591, 500, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '42.4000', '56.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8000', '0.0000', '2022-06-21', 'received', '42.4000', '42.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.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 (57592, 500, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '16.6000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '2.0000', '2022-06-21', 'received', '16.6000', '16.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (57593, 500, NULL, 8345, '2265', 'NEXCOFER CAPS', NULL, '7.1800', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9000', '5.0000', '2022-06-21', 'received', '7.1800', '7.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (57594, 500, NULL, 7885, '1805', 'DIFLUCAN', NULL, '81.2000', '107.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.4000', '1.0000', '2022-06-21', 'received', '81.2000', '81.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '81.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 (57595, 500, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '25.9000', '34.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '3.0000', '2022-06-21', '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 (57596, 500, NULL, 9001, '2921', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-06-21', '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 (57597, 500, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-06-21', 'received', '0.7700', '0.7700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57598, 500, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-06-21', '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 (57599, 500, NULL, 8462, '2382', 'GARLIC PEARLS OSONS', NULL, '7.1000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.4000', '4.0000', '2022-06-21', '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 (57600, 500, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-06-21', '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 (57601, 500, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '2.0000', '2022-06-21', '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 (57602, 500, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2800', '0.0000', '2022-06-21', 'received', '8.6400', '8.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (57603, 500, NULL, 7552, '1472', 'LOFNAC GEL', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '4.0000', '2022-06-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 (57604, 500, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '34.0000', '2022-06-21', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (57605, 500, NULL, 8840, '2760', 'TEGRETOL 200', NULL, '11.9500', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.7500', '0.0000', '2022-06-21', '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 (57606, 500, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '29.6300', '39.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8900', '3.0000', '2022-06-21', 'received', '29.6300', '29.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (57607, 500, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '3.0000', '2022-06-21', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (57608, 500, NULL, 7634, '1554', 'CIPROLEX EYE DROP', NULL, '10.0000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-06-21', '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 (57609, 500, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '2.0000', '2022-06-21', 'received', '8.2500', '8.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (57610, 500, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '44.0000', '2022-06-21', 'received', '0.8000', '0.8000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (57611, 500, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '7.7000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '7.0000', '2022-06-21', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57612, 500, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2022-06-21', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57613, 500, NULL, 9272, '3192', 'LETAMOX TABLET 500MG', NULL, '3.1000', '5.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '0.0000', '2022-06-21', 'received', '3.1000', '3.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (57614, 500, NULL, 7933, '1853', 'WORMBASE TAB', NULL, '0.5500', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7500', '0.0000', '2022-06-21', '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 (57615, 500, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2022-06-21', '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 (57616, 500, NULL, 8000, '1920', 'ZENTEL TAB', NULL, '10.4800', '14.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.6000', '0.0000', '2022-06-21', 'received', '10.4800', '10.4800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '10.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 (57617, 500, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '39.3000', '52.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.6000', '0.0000', '2022-06-21', 'received', '39.3000', '39.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.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 (57618, 500, NULL, 7321, '1241', 'METROLEX-F TABS', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-06-21', '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 (57619, 500, NULL, 7321, '1241', 'METROLEX-F TABS', NULL, '12.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2022-06-21', '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 (57620, 500, NULL, 7749, '1669', 'FOLIGROW SRP', NULL, '20.0000', '26.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '3.0000', '2022-06-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 (57621, 500, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '0.0000', '2022-06-21', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (57622, 500, NULL, 9730, '76969575', 'HAEMO FORTE SYRUP 200ML', NULL, '21.1000', '28.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2000', '2.0000', '2022-06-21', 'received', '21.1000', '21.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (57623, 500, NULL, 7636, '1556', 'DIABETMINE', NULL, '2.5000', '3.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '19.0000', '2022-06-21', '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 (57624, 500, NULL, 8362, '2282', 'GLIBENIL TAB', NULL, '0.7900', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '20.0000', '2022-06-21', 'received', '0.7900', '0.7900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (57625, 500, NULL, 7780, '1700', 'LUFART TAB', NULL, '14.8500', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '0.0000', '2022-06-21', 'received', '14.8500', '14.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (57626, 500, NULL, 8504, '2424', 'LISINOPRIL 20 TEVA', NULL, '8.1000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2022-06-21', '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 (57627, 500, NULL, 8304, '2224', 'POLYFER 200ML', NULL, '8.8000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '5.0000', '2022-06-21', '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 (57628, 500, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '7.7000', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '4.0000', '2022-06-21', 'received', '7.7000', '7.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (57629, 500, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '10.4000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '4.0000', '2022-06-21', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (57630, 500, NULL, 8923, '2843', 'BG GLUTAMIN PLUS', NULL, '7.2500', '10.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '0.0000', '2022-06-21', 'received', '7.2500', '7.2500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57631, 500, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS per strip', NULL, '30.0000', '40.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '4.0000', '2022-06-21', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57632, 500, NULL, 7350, '1270', 'PERFECTIL', NULL, '27.9500', '37.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.8000', '2.0000', '2022-06-21', 'received', '27.9500', '27.9500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '27.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 (57633, 500, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '7.2000', '9.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '18.0000', '2022-06-21', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57634, 500, NULL, 7663, '1583', 'DREZ SOLTN 30ML', NULL, '10.3000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.5000', '5.0000', '2022-06-21', 'received', '10.3000', '10.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (57635, 500, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '2.0000', '2022-06-21', '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 (57636, 500, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '2.0000', '2022-06-21', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (57637, 500, NULL, 9742, '51812839', 'KOFOF FAMILY SYRUP150ML', NULL, '4.8000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-06-21', '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 (57638, 500, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '3.0000', '2022-06-21', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (57639, 500, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '1.0000', '2022-06-21', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57640, 500, NULL, 7885, '1805', 'DIFLUCAN', NULL, '81.2000', '107.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.2000', '1.0000', '2022-06-21', 'received', '81.2000', '81.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '81.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 (57641, 500, NULL, 7680, '1600', 'FLAGENTYL', NULL, '28.6000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.0000', '1.0000', '2022-06-21', 'received', '28.6000', '28.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.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 (57642, 500, NULL, 7317, '1237', 'LONART DS TABS', NULL, '16.9000', '22.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '338.0000', '16.0000', '2022-06-21', 'received', '16.9000', '16.9000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '16.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 (57643, 500, NULL, 8457, '2377', 'CARTEF SUSP', NULL, '6.2000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-06-21', 'received', '6.2000', '6.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57644, 500, NULL, 7779, '1699', 'LUFART SUSP', NULL, '10.5000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '6.0000', '2022-06-21', '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 (57645, 500, NULL, 7318, '1238', 'LONART SUSP', NULL, '12.8000', '17.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '8.0000', '2022-06-21', 'received', '12.8000', '12.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '12.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 (57646, 500, NULL, 9245, '3165', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-06-21', '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 (57647, 500, NULL, 9952, '90382407', 'CARVEDI DENK 6.25MG TAB', NULL, '9.2600', '12.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3400', '8.0000', '2022-06-21', 'received', '9.2600', '9.2600', '9.0000', NULL, NULL, 1, 'pc', '9.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 (57648, 500, NULL, 9953, '21608860', 'ARZIGLOBIN PLUS SYR', NULL, '8.9000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '3.0000', '2022-06-21', 'received', '8.9000', '8.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (57649, 500, NULL, 9954, '20927323', 'STOPKOF COLD AND CATARRH SYR', NULL, '8.4000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '5.0000', '2022-06-21', '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 (57650, 500, NULL, 9955, '44275786', 'AYRTON MULTIVITAMIN SYR', NULL, '5.4000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '4.0000', '2022-06-21', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57651, 500, NULL, 9956, '45562069', 'SKYCEF 500MG TABLET', NULL, '15.5000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '2.0000', '2022-06-21', '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 (57652, 500, NULL, 9957, '08199612', 'SKYCEF 250MG TABLET', NULL, '8.8000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-06-21', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57653, 500, NULL, 9958, '79907714', 'AZYCIN 500MG', NULL, '7.9000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '6.0000', '2022-06-21', 'received', '7.9000', '7.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57654, NULL, NULL, 9866, '', '', 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 (57655, NULL, NULL, 7745, '', '', 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 (57656, NULL, NULL, 9250, '', '', 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 (57657, NULL, NULL, 7392, '', '', 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 (57658, NULL, NULL, 7644, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (57659, NULL, NULL, 9030, '', '', 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 (57660, NULL, NULL, 9948, '', '', 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 (57661, NULL, NULL, 7975, '', '', 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 (57662, NULL, NULL, 9291, '', '', 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 (57663, 501, NULL, 9949, '52295419', 'HEALTHLINK MENOPAUSE TABLET', NULL, '37.9000', '50.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.8000', '2.0000', '2022-06-22', 'received', '37.9000', '37.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57664, 501, NULL, 9951, '87572191', 'HEALTHLINK OMEGA 3 FISH OIL GEL', NULL, '36.0000', '47.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-06-22', '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 (57665, 501, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '58.0000', '2022-06-22', 'received', '1.0800', '1.0800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.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 (57666, 501, NULL, 9856, '53412793', 'ROXIDOL', NULL, '1.6000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-06-22', '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 (57667, 501, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '446.4000', '0.0000', '2022-06-22', 'received', '49.6000', '49.6000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '49.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 (57668, 501, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-06-22', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57669, 501, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.8000', '0.0000', '2022-06-22', 'received', '1.2800', '1.2800', '60.0000', NULL, NULL, 1, 'pc', '60.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 (57670, 501, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.6000', '19.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '1.0000', '2022-06-22', '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 (57671, 501, NULL, 1470, '8906042660979', 'LEXOFEN SUSP 150ML', NULL, '12.9000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2022-06-22', '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 (57672, 501, NULL, 7323, '1243', 'LUEX CHILD DRY', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-06-22', '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 (57673, 501, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '1.0000', '2022-06-22', '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 (57674, 501, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '11.0000', '2022-06-22', 'received', '1.4300', '1.4300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (57675, 501, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-06-22', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (57676, 501, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-22', '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 (57677, 501, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7500', '0.0000', '2022-06-22', 'received', '9.5500', '9.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (57678, 501, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '1.0000', '2022-06-22', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (57679, 501, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.5200', '0.7000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-06-22', '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 (57680, 501, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.5200', '0.7000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '35.0000', '2022-06-22', '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 (57681, 501, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-06-22', '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 (57682, 501, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2022-06-22', 'received', '8.3000', '8.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (57683, 501, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '35.0000', '46.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-06-22', '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 (57684, 501, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '5.4800', '7.2000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.4000', '19.0000', '2022-06-22', 'received', '5.4800', '5.4800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '5.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 (57685, 501, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-06-22', '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 (57686, 501, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3000', '0.0000', '2022-06-22', 'received', '16.6600', '16.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (57687, 501, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0500', '0.0000', '2022-06-22', 'received', '14.2100', '14.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (57688, 501, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-06-22', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57689, 501, NULL, 7944, '1864', 'DIPEX TAB', NULL, '2.0100', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2022-06-22', 'received', '2.0100', '2.0100', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57690, 501, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '15.0000', '2022-06-22', 'received', '1.4500', '1.4500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57691, 501, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-22', '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 (57692, 501, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '9.0000', '2022-06-22', '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 (57693, 501, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '62.0000', '2022-06-22', 'received', '1.5000', '1.5000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (57694, 501, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-06-22', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57695, 501, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.8200', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-06-22', 'received', '0.8200', '0.8200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (57696, 501, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '16.9000', '22.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '0.0000', '2022-06-22', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (57697, 501, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '0.0000', '2022-06-22', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (57698, 501, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-06-22', '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 (57699, 501, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2500', '0.0000', '2022-06-22', 'received', '0.8100', '0.8100', '25.0000', NULL, NULL, 1, 'pc', '25.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 (57700, 501, NULL, 9959, '13716082', 'LUMIZAP 80/480MG TABLET', NULL, '5.8800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '1.0000', '2022-06-22', 'received', '5.8800', '5.8800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57701, 501, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '291.6000', '0.0000', '2022-06-22', 'received', '14.5800', '14.5800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (57702, 501, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-06-22', '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 (57703, 501, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '1.0000', '2022-06-22', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (57704, 501, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.7500', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-06-22', 'received', '0.7500', '0.7500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57705, 501, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '0.0000', '2022-06-22', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (57706, 501, NULL, 1937, 'PR-650', 'Kofof child exp 1070D02', NULL, '4.8000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.8000', '1.0000', '2022-06-22', '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 (57707, 501, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-06-22', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57708, 501, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '6.0000', '2022-06-22', '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 (57709, 501, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '0.0000', '2022-06-22', 'received', '1.7200', '1.7200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (57710, 501, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '3.1700', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5000', '0.0000', '2022-06-22', 'received', '3.1700', '3.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (57711, 501, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '5.4000', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '18.0000', '2022-06-22', 'received', '5.4000', '5.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57712, 501, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '3.0000', '2022-06-22', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (57713, 501, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-06-22', '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 (57714, 501, NULL, 9902, '14298485', 'CELECOXIB 200MG OER STRIP', NULL, '7.9300', '11.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.9500', '0.0000', '2022-06-22', 'received', '7.9300', '7.9300', '15.0000', NULL, NULL, 1, 'pc', '15.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 (57715, 501, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '14.8100', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.1000', '0.0000', '2022-06-22', 'received', '14.8100', '14.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (57716, 501, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '8.8200', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.2000', '0.0000', '2022-06-22', 'received', '8.8200', '8.8200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (57717, 501, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2022-06-22', '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 (57718, 501, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.7800', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.3400', '0.0000', '2022-06-22', 'received', '23.7800', '23.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (57719, 501, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.2000', '2.0000', '2022-06-22', 'received', '20.3000', '20.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (57720, 501, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-06-22', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57721, 501, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-06-22', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57722, 501, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-06-22', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57723, 501, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.9600', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.8000', '0.0000', '2022-06-22', 'received', '14.9600', '14.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (57724, 501, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5700', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7000', '0.0000', '2022-06-22', 'received', '1.5700', '1.5700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (57725, 501, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-22', '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 (57726, 501, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '4.5600', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '11.0000', '2022-06-22', 'received', '4.5600', '4.5600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (57727, 501, NULL, 7974, '1894', 'EVECARE SRP', NULL, '26.9000', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8000', '0.0000', '2022-06-22', 'received', '26.9000', '26.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (57728, 501, NULL, 9952, '90382407', 'CARVEDI DENK 6.25MG TAB', NULL, '9.2600', '12.5000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3400', '9.0000', '2022-06-22', 'received', '9.2600', '9.2600', '9.0000', NULL, NULL, 1, 'pc', '9.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 (57729, 501, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '21.9900', '29.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.9200', '5.0000', '2022-06-22', 'received', '21.9900', '21.9900', '8.0000', NULL, NULL, 1, 'pc', '8.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 (57730, 501, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '3.1000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-06-22', 'received', '3.1000', '3.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57731, 501, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.1800', '17.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.8000', '0.0000', '2022-06-22', 'received', '13.1800', '13.1800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.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 (57732, 501, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '2.0000', '2022-06-22', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57733, 501, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-06-22', '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 (57734, 501, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '4.9000', '6.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '0.0000', '2022-06-22', 'received', '4.9000', '4.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57735, 501, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-06-22', '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 (57736, 501, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '27.0000', '36.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2022-06-22', 'received', '27.0000', '27.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57737, 501, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.1800', '17.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.7200', '0.0000', '2022-06-22', 'received', '13.1800', '13.1800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.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 (57738, 501, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '10.9000', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6000', '0.0000', '2022-06-22', 'received', '10.9000', '10.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57739, 501, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '15.0000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-06-22', '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 (57740, 501, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.3000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '0.0000', '2022-06-22', '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 (57741, 501, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-06-22', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57742, 501, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '0.0000', '2022-06-22', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57743, 501, NULL, 9960, '23663357', 'AMOXYCILLIN 500MG M&G TABLET', NULL, '3.3000', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-22', '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 (57744, 501, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '0.0000', '2022-06-22', '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 (57745, 501, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '0.0000', '2022-06-22', '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 (57746, 501, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-06-22', '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 (57747, 501, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.2000', '0.0000', '2022-06-22', 'received', '7.4000', '7.4000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (57748, 501, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-22', '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 (57749, 501, NULL, 7612, '1532', 'DOXYCYCLINE CAPS LETAP', NULL, '1.7500', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-06-22', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (57750, 501, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-06-22', '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 (57751, 501, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6600', '9.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.8400', '7.0000', '2022-06-22', 'received', '6.6600', '6.6600', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '6.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 (57752, 501, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '18.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-06-22', '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 (57753, 501, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6000', '2.0000', '2022-06-22', 'received', '10.9000', '10.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57754, 501, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '8.9000', '14.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8000', '0.0000', '2022-06-22', 'received', '8.9000', '8.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (57755, 501, NULL, 9886, '51921108', 'DREZ V GEL 30G', NULL, '17.5000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-06-22', '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 (57756, 501, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2022-06-22', '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 (57757, 501, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '0.0000', '2022-06-22', 'received', '13.2000', '13.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (57758, 501, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '0.0000', '2022-06-22', 'received', '26.0000', '26.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57759, 501, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.6000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '9.0000', '2022-06-22', '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 (57760, 501, NULL, 9923, '84008252', 'CANDID B CREAM', NULL, '8.7000', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '3.0000', '2022-06-22', '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 (57761, 501, NULL, 8208, '2128', 'DYNEWELL TAB', NULL, '0.4000', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-06-22', '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 (57762, 501, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-06-22', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57763, 501, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-06-22', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57764, 501, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-06-22', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57765, 501, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-06-22', 'received', '4.9000', '4.9000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (57766, 501, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2022-06-22', 'received', '5.7000', '5.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.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 (57767, 501, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '74.0000', '98.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-06-22', 'received', '74.0000', '74.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '74.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57768, 501, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0000', '27.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-06-22', '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 (57769, 501, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '1.0000', '2022-06-22', 'received', '17.4000', '17.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57770, 501, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '22.0000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-06-22', '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 (57771, 501, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '16.5000', '22.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-06-22', 'received', '16.5000', '16.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57772, 501, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '7.7000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8000', '0.0000', '2022-06-22', 'received', '7.7000', '7.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57773, 501, NULL, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '50.9300', '74.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.8600', '2.0000', '2022-06-22', 'received', '50.9300', '50.9300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.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 (57774, 501, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-06-22', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57775, 501, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '5.9000', '7.7900', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-06-22', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57776, 501, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '40.0000', '53.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-06-22', 'received', '40.0000', '40.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57777, 501, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '27.0000', '36.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '0.0000', '2022-06-22', '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 (57778, 501, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '25.9000', '34.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '259.0000', '7.0000', '2022-06-22', 'received', '25.9000', '25.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57779, 501, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '39.0000', '2022-06-22', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (57780, 501, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-22', '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 (57781, 501, NULL, 1965, '8902501008139', 'HYDROCORTISSONE CREAM 1%  CO-PHARMA', NULL, '16.2000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '0.0000', '2022-06-22', 'received', '16.2000', '16.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57782, 501, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '5.0000', '2022-06-22', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (57783, 501, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '14.0000', '2022-06-22', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57784, 501, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '10.0000', '13.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-06-22', '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 (57785, 501, NULL, 2945, '07580425', 'CIPROLEX EYE OINTMENT', NULL, '10.0000', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-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 (57786, 501, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '45.6000', '60.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '0.0000', '2022-06-22', 'received', '45.6000', '45.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '45.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 (57787, 501, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '6.5000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-06-22', '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 (57788, 501, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '294.0000', '9.0000', '2022-06-22', 'received', '29.4000', '29.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57789, 501, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-22', '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 (57790, 501, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '47.2000', '62.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.6000', '2.0000', '2022-06-22', 'received', '47.2000', '47.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '47.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 (57791, 501, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.1800', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9000', '0.0000', '2022-06-22', 'received', '13.1800', '13.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (57792, 501, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.5000', '0.0000', '2022-06-22', 'received', '4.1700', '4.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (57793, 501, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.0500', '2.0000', '2022-06-22', 'received', '10.0700', '10.0700', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '10.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 (57794, 501, NULL, 9754, '16090219', 'CLOPIMOL TAB', NULL, '1.8000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '4.0000', '2022-06-22', '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 (57795, 501, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '7.7000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '0.0000', '2022-06-22', '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 (57796, 501, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '28.6000', '38.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '2.0000', '2022-06-22', 'received', '28.6000', '28.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (57797, 501, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '20.0000', '26.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-06-22', '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 (57798, 501, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '24.5000', '32.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-06-22', '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 (57799, 501, NULL, 1969, '8906016833507', 'CARTEF TAB 24   20/120', NULL, '4.3300', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.3000', '0.0000', '2022-06-22', '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 (57800, 501, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-06-22', 'received', '2.9500', '2.9500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (57801, 501, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '10.4800', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8000', '0.0000', '2022-06-22', 'received', '10.4800', '10.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (57802, 501, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-06-22', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57803, 501, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '18.9000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2022-06-22', '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 (57804, 501, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '16.9000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '0.0000', '2022-06-22', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (57805, 501, NULL, 9030, '2950', 'EPICIPRIN', NULL, '12.9000', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '0.0000', '2022-06-22', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57806, 501, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS 0.05%', NULL, '26.6200', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8600', '0.0000', '2022-06-22', 'received', '26.6200', '26.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (57807, 501, NULL, 7612, '1532', 'DOXYCYCLINE CAPS LETAP', NULL, '1.7500', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-06-22', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (57808, 501, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '19.5000', '26.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '468.0000', '0.0000', '2022-06-22', 'received', '19.5000', '19.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (57809, 501, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2500', '14.0000', '2022-06-22', 'received', '0.8100', '0.8100', '25.0000', NULL, NULL, 1, 'pc', '25.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 (57810, 501, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3000', '0.0000', '2022-06-22', 'received', '16.6600', '16.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (57811, 501, NULL, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '6.7000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '1.0000', '2022-06-22', '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 (57812, 501, NULL, 9955, '44275786', 'AYRTON MULTIVITAMIN SYR', NULL, '5.4000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2000', '1.0000', '2022-06-22', 'received', '5.4000', '5.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57813, 501, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '29.9600', '40.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.8800', '0.0000', '2022-06-22', 'received', '29.9600', '29.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (57814, 501, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '8.8200', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.1000', '0.0000', '2022-06-22', 'received', '8.8200', '8.8200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (57815, 501, NULL, 9609, '47724870', 'MALIN BABY PLUS SYRUP', NULL, '9.1000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '0.0000', '2022-06-22', 'received', '9.1000', '9.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (57816, NULL, NULL, 2494, '', '', 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 (57817, NULL, NULL, 8124, '', '', 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 (57818, NULL, NULL, 8835, '', '', 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 (57819, NULL, NULL, 8772, '', '', 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 (57820, NULL, NULL, 9892, '', '', 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 (57821, NULL, NULL, 8479, '', '', 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 (57822, NULL, NULL, 9672, '', '', 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 (57823, NULL, NULL, 9098, '', '', 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 (57928, NULL, NULL, 2672, '', '', 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 (57929, NULL, NULL, 7454, '', '', 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 (57930, NULL, NULL, 2940, '', '', 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 (57931, NULL, NULL, 9690, '', '', 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 (57932, NULL, NULL, 7315, '', '', 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 (57933, NULL, NULL, 9953, '', '', 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 (57934, NULL, NULL, 8435, '', '', 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 (57935, NULL, NULL, 9946, '', '', 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 (57936, NULL, NULL, 8710, '', '', 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 (57937, NULL, NULL, 1852, '', '', 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 (57938, NULL, NULL, 9329, '', '', 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 (57939, NULL, NULL, 2443, '', '', 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 (57940, 504, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '186.8000', '246.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '1.0000', '2022-06-25', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (57941, 504, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '37.9000', '50.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '379.0000', '6.0000', '2022-06-25', 'received', '37.9000', '37.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57942, 504, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '5.3000', '7.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '265.0000', '20.0000', '2022-06-25', 'received', '5.3000', '5.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57943, 504, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '6.3200', '8.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.4000', '12.0000', '2022-06-25', 'received', '6.3200', '6.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (57944, 504, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.6000', '19.2700', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '3.0000', '2022-06-25', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57945, 504, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-06-25', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (57946, 504, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-06-25', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57947, 504, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-06-25', 'received', '2.5500', '2.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57948, 504, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.2000', '21.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '1.0000', '2022-06-25', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57949, 504, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-06-25', '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 (57950, 504, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '23.7800', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5600', '0.0000', '2022-06-25', 'received', '23.7800', '23.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (57951, 504, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '9.0000', '2022-06-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 (57952, 504, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '1.0000', '2022-06-25', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (57953, 504, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8900', '1.0000', '2022-06-25', 'received', '15.6300', '15.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (57954, 504, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '24.1000', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.3000', '2.0000', '2022-06-25', 'received', '24.1000', '24.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (57955, 504, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '3.0000', '2022-06-25', '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 (57956, 504, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '10.9000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.6000', '3.0000', '2022-06-25', 'received', '10.9000', '10.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (57957, 504, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2022-06-25', '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 (57958, 504, NULL, 9742, '51812839', 'KOFOF FAMILY SYRUP150ML', NULL, '4.8000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-06-25', '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 (57959, 504, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '11.6000', '15.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '5.0000', '2022-06-25', 'received', '11.6000', '11.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57960, 504, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-06-25', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57961, 504, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '10.6600', '14.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '298.4800', '25.0000', '2022-06-25', 'received', '10.6600', '10.6600', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '10.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 (57962, 504, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.6000', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '1.0000', '2022-06-25', '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 (57963, 504, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '5.0000', '2022-06-25', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (57964, 504, NULL, 1470, '8906042660979', 'LEXOFEN SUSP 150ML', NULL, '12.9000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '1.0000', '2022-06-25', 'received', '12.9000', '12.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57965, 504, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.6000', '7.0000', '2022-06-25', 'received', '16.6600', '16.6600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (57966, 504, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-06-25', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57967, 504, NULL, 2068, '79519848', 'LUFART DS', NULL, '14.8500', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '0.0000', '2022-06-25', 'received', '14.8500', '14.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (57968, 504, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '10.4800', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8000', '7.0000', '2022-06-25', 'received', '10.4800', '10.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (57969, 504, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.7000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-06-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 (57970, 504, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '1.0000', '2022-06-25', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (57971, 504, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '40.0000', '53.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '4.0000', '2022-06-25', 'received', '40.0000', '40.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57972, 504, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.9000', '7.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '12.0000', '2022-06-25', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57973, 504, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.9300', '1.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-06-25', 'received', '0.9300', '0.9300', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57974, 504, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '5.0000', '2022-06-25', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (57975, 504, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '40.0000', '2022-06-25', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (57976, 504, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '29.0000', '38.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '2.0000', '2022-06-25', 'received', '29.0000', '29.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (57977, 504, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '20.0000', '26.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-06-25', '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 (57978, 504, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.2000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '3.0000', '2022-06-25', '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 (57979, 504, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.6000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-06-25', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57980, 504, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.6000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '3.0000', '2022-06-25', '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 (57981, 504, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '0.0000', '2022-06-25', 'received', '1.7200', '1.7200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (57982, 504, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.5000', '22.0000', '2022-06-25', 'received', '3.0500', '3.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (57983, 504, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2022-06-25', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (57984, 504, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '21.6500', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '4.0000', '2022-06-25', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (57985, 504, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.6000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '1.0000', '2022-06-25', '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 (57986, 504, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6700', '8.8000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '0.0000', '2022-06-25', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (57987, 504, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.4600', '3.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5200', '4.0000', '2022-06-25', 'received', '2.4600', '2.4600', '12.0000', NULL, NULL, 1, 'pc', '12.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 (57988, 504, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2500', '16.0000', '2022-06-25', 'received', '0.8100', '0.8100', '25.0000', NULL, NULL, 1, 'pc', '25.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 (57989, 504, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '5.0000', '2022-06-25', '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 (57990, 504, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-06-25', '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 (57991, 504, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2022-06-25', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (57992, 504, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '5.2300', '7.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.6000', '0.0000', '2022-06-25', 'received', '5.2300', '5.2300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (57993, 504, NULL, 2070, '014', 'CHLO EYE ', NULL, '2.3000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '3.0000', '2022-06-25', 'received', '2.3000', '2.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (57994, 504, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '3.0000', '2022-06-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 (57995, 504, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '12.1000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3000', '2.0000', '2022-06-25', 'received', '12.1000', '12.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (57996, 504, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9000', '0.0000', '2022-06-25', 'received', '8.7800', '8.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (57997, 504, NULL, 7745, '1665', 'DUREX COND', NULL, '6.7000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '0.0000', '2022-06-25', '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 (57998, 504, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '2.0000', '2022-06-25', '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 (57999, 504, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '3.0000', '2022-06-25', '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 (58000, 504, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2022-06-25', '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 (58001, 504, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '9.0000', '2022-06-25', 'received', '3.8000', '3.8000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (58002, 504, NULL, 8933, '2853', 'RED BULL', NULL, '8.8300', '10.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '1.0000', '2022-06-25', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58003, 504, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.1700', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0200', '4.0000', '2022-06-25', 'received', '4.1700', '4.1700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (58004, 504, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.8300', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '0.0000', '2022-06-25', 'received', '3.8300', '3.8300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (58005, 504, NULL, 8767, '2687', 'KISS DRINK', NULL, '9.6000', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '2.0000', '2022-06-25', 'received', '9.6000', '9.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58006, 504, NULL, 9468, '27739747', 'PARMALAT  1KG', NULL, '22.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-06-25', '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 (58007, 504, NULL, 8763, '2683', 'VODY', NULL, '9.1700', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0200', '0.0000', '2022-06-25', 'received', '9.1700', '9.1700', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58008, 504, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '14.0000', '2022-06-25', 'received', '1.4000', '1.4000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (58009, 504, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '22.0000', '2022-06-25', 'received', '1.0500', '1.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (58010, NULL, NULL, 7895, '', '', 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 (58011, NULL, NULL, 3046, '', '', 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 (58012, NULL, NULL, 2670, '', '', 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 (58013, NULL, NULL, 3066, '', '', 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 (58014, NULL, NULL, 8811, '', '', 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 (58015, NULL, NULL, 1808, '', '', 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 (58016, NULL, NULL, 9963, '', '', 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 (58017, NULL, NULL, 9685, '', '', 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 (58018, NULL, NULL, 9609, '', '', 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 (58019, NULL, NULL, 2754, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (58020, NULL, NULL, 9777, '', '', 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 (58021, NULL, NULL, 8710, '', '', 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 (58022, NULL, NULL, 9245, '', '', 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 (58023, NULL, NULL, 7976, '', '', 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 (58024, NULL, NULL, 8328, '', '', 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 (58025, NULL, NULL, 9957, '', '', 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 (58026, NULL, NULL, 9491, '', '', 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 (58027, NULL, NULL, 9914, '', '', 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 (58043, 502, NULL, 8566, '2486', 'SURE SPRAY', NULL, '18.0000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2022-06-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 (58044, 502, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '18.0000', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2022-06-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 (58045, 502, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-06-23', '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 (58046, 502, NULL, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '12.5000', '16.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2022-06-23', '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 (58047, 502, NULL, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '7.5000', '10.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-06-23', '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 (58048, 502, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '12.5000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-06-23', '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 (58049, 502, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '7.0000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-06-23', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (58050, 502, NULL, 2001, '012', 'BELLS OLIVE OIL  70ML LOCAL', NULL, '4.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2022-06-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 (58051, 502, NULL, 2161, '58683972', 'GLYCERINE B/S', NULL, '11.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-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 (58052, 502, NULL, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '18.0000', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-06-23', '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 (58053, 502, NULL, 2566, '42135887', 'MILO TIN', NULL, '20.0000', '24.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-06-23', '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 (58054, 502, NULL, 9939, '15088867', 'GIVITE TOMBROWN S/S', NULL, '16.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-06-23', '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 (58055, 502, NULL, 2438, '59088740', 'NIDO +1 POWDERED MILK', NULL, '45.0000', '48.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-06-23', '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 (58056, 502, NULL, 2824, '55755568', 'BINGO SOFTNER', NULL, '23.0000', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-06-23', '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 (58057, 502, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '1.0000', '2022-06-23', '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 (58058, 502, NULL, 2424, '72870535', 'DEVA SOFTNER', NULL, '15.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-06-23', '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 (58059, 502, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '3.5000', '4.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '9.0000', '2022-06-23', 'received', '3.5000', '3.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (58060, 502, NULL, 2645, '04241482', 'COMFORT SOFTNER M/S', NULL, '27.0000', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-06-23', '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 (58061, 502, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.4500', '2.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '9.0000', '2022-06-23', 'received', '1.4500', '1.4500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (58062, 502, NULL, 2231, '7501058633927', 'NAN 2', NULL, '45.0000', '48.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-06-23', '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 (58063, 502, NULL, 2567, '83596243', 'NAN 1', NULL, '44.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-06-23', '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 (58064, 502, NULL, 7725, '1645', 'SOFTCARE WIPES', NULL, '11.1700', '15.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.0400', '10.0000', '2022-06-23', 'received', '11.1700', '11.1700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '11.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 (58065, 502, NULL, 8774, '2694', 'VOLTIC WATER  B/S', NULL, '2.3000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '3.0000', '2022-06-23', 'received', '2.3000', '2.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58066, 502, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2022-06-23', 'received', '1.4000', '1.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (58067, 502, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '0.0000', '2022-06-23', 'received', '1.0500', '1.0500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (58068, 502, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '1.0000', '1.5000', '72.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '72.0000', '2022-06-23', 'received', '1.0000', '1.0000', '72.0000', NULL, NULL, 1, 'pc', '72.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 (58069, 502, NULL, 8980, '2900', 'SLEMFIT M/S', NULL, '1.2000', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '30.0000', '2022-06-23', 'received', '1.2000', '1.2000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (58070, 502, NULL, 8607, '2527', 'VERNA M/S', NULL, '1.0000', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-06-23', 'received', '1.0000', '1.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (58071, 502, NULL, 8984, '2904', 'VERNA S/S', NULL, '0.8700', '1.2000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3200', '0.0000', '2022-06-23', 'received', '0.8700', '0.8700', '36.0000', NULL, NULL, 1, 'pc', '36.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 (58072, 502, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-06-23', '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 (58073, 502, NULL, 7720, '1640', 'YAZZ LINER', NULL, '6.5000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2022-06-23', '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 (58074, 502, NULL, 9964, '68332627', 'PRECIOUS HONEY 500ML', NULL, '40.0000', '48.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '5.0000', '2022-06-23', 'received', '40.0000', '40.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58075, 502, NULL, 9965, '37802713', 'PRECIOUS HONEY 250ML', NULL, '23.0000', '28.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '1.0000', '2022-06-23', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58076, NULL, NULL, 7591, '', '', 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 (58077, NULL, NULL, 9342, '', '', 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 (58078, NULL, NULL, 8787, '', '', 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 (58079, NULL, NULL, 7962, '', '', 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 (58080, NULL, NULL, 1855, '', '', 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 (58081, NULL, NULL, 9846, '', '', 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 (58082, NULL, NULL, 1699, '', '', 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 (58083, NULL, NULL, 9408, '', '', 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 (58109, 506, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '17.0000', '20.0000', '13.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '221.0000', '10.0000', '2022-06-28', 'received', '17.0000', '17.0000', '13.0000', NULL, NULL, 1, 'pc', '13.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 (58110, 506, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '20.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-06-28', '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 (58111, 506, NULL, 2191, '8964000114223', 'LAVENDER OIL', NULL, '7.5000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-06-28', '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 (58112, 506, NULL, 2208, '8964000114049', 'CASTOR OIL', NULL, '12.0000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-06-28', '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 (58113, 506, NULL, 2177, '8964000577448', 'JOJOBA OIL', NULL, '7.5000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-06-28', '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 (58114, 506, NULL, 2201, '8964000114179', 'SESAME OIL', NULL, '7.5000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-06-28', '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 (58115, 506, NULL, 2193, '8964000114216', 'ROSEMARY OIL', NULL, '7.5000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-06-28', '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 (58116, NULL, NULL, 7441, '', '', 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 (58117, NULL, NULL, 8904, '', '', 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 (58118, NULL, NULL, 2129, '', '', 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 (58119, NULL, NULL, 9946, '', '', 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 (58120, NULL, NULL, 7887, '', '', 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 (58121, NULL, NULL, 9761, '', '', 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 (58122, 507, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-06-29', '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 (58123, 507, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.6000', '19.2700', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '0.0000', '2022-06-29', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58124, 507, NULL, 9822, '47018837', 'RENALKA', NULL, '23.8000', '31.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.4000', '0.0000', '2022-06-29', 'received', '23.8000', '23.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (58125, 507, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '2.0000', '2022-06-29', 'received', '10.9000', '10.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58126, 507, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '41.8000', '55.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.0000', '3.0000', '2022-06-29', 'received', '41.8000', '41.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '41.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 (58127, 507, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.9300', '1.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-06-29', 'received', '0.9300', '0.9300', '50.0000', NULL, NULL, 1, 'pc', '50.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 (58128, 507, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '29.0000', '38.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '2.0000', '2022-06-29', '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 (58129, 507, NULL, 2068, '79519848', 'LUFART DS', NULL, '14.8500', '20.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '297.0000', '0.0000', '2022-06-29', 'received', '14.8500', '14.8500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (58130, 507, NULL, 1953, '56415263', 'STAGYL TABS', NULL, '2.7000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '5.0000', '2022-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 (58131, 507, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-06-29', '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 (58132, 507, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-06-29', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58133, 507, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2022-06-29', 'received', '1.4000', '1.4000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (58134, 507, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-06-29', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (58135, 507, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '0.0000', '2022-06-29', 'received', '1.7200', '1.7200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (58136, 507, NULL, 9927, '05772370', 'HEMOFORCE FAMILY SYR', NULL, '6.6500', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9500', '0.0000', '2022-06-29', '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 (58137, 507, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '5.3500', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7500', '0.0000', '2022-06-29', 'received', '5.3500', '5.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (58138, 507, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '15.2000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2022-06-29', 'received', '15.2000', '15.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (58139, 507, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '10.4000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-06-29', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (58140, 507, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '291.6000', '0.0000', '2022-06-29', 'received', '14.5800', '14.5800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (58141, 507, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2022-06-29', 'received', '0.8100', '0.8100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (58142, 507, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '560.0000', '136.0000', '2022-06-29', 'received', '2.8000', '2.8000', '200.0000', NULL, NULL, 1, 'pc', '200.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 (58143, 507, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '21.6500', '29.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.9000', '1.0000', '2022-06-29', 'received', '21.6500', '21.6500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '21.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 (58144, 507, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '5.2000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2022-06-29', '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 (58145, 507, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '10.0000', '2022-06-29', 'received', '2.5500', '2.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (58146, 507, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '17.0000', '23.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-06-29', '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 (58147, 507, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '0.0000', '2022-06-29', 'received', '10.4000', '10.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (58148, 507, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '3.0000', '2022-06-29', 'received', '2.6700', '2.6700', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58149, 507, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '16.5900', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.5400', '0.0000', '2022-06-29', 'received', '16.5900', '16.5900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (58150, 507, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.7800', '0.0000', '2022-06-29', 'received', '15.6300', '15.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.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 (58151, 507, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '0.0000', '2022-06-29', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (58152, 507, NULL, 8149, '2069', 'DITHRANOL', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-06-29', '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 (58153, 507, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.6000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '3.0000', '2022-06-29', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58154, 507, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '25.9000', '34.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '0.0000', '2022-06-29', '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 (58155, 507, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.4500', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-06-29', 'received', '1.4500', '1.4500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (58156, 507, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.1000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-06-29', '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 (58157, 507, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2022-06-29', 'received', '3.8000', '3.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (58158, 507, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-06-29', '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 (58159, 507, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.6500', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.5000', '0.0000', '2022-06-29', 'received', '2.6500', '2.6500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (58160, 507, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '10.0000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-06-29', '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 (58161, 507, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-06-29', '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 (58162, 507, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '7.1000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '0.0000', '2022-06-29', 'received', '7.1000', '7.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58163, 507, NULL, 9960, '23663357', 'AMOXYCILLIN 500MG M&G TABLET', NULL, '3.3000', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-29', '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 (58164, 507, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '15.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-29', '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 (58165, 507, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.9500', '34.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '0.0000', '2022-06-29', 'received', '25.9500', '25.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.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 (58166, 507, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-06-29', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58167, 507, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '18.0000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '1.0000', '2022-06-29', '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 (58168, 507, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '24.1000', '32.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.4000', '0.0000', '2022-06-29', 'received', '24.1000', '24.1000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (58169, 507, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '14.8000', '19.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '0.0000', '2022-06-29', 'received', '14.8000', '14.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58170, 507, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-06-29', '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 (58171, 507, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-06-29', '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 (58172, 507, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '0.0000', '2022-06-29', 'received', '17.3000', '17.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58173, 507, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '10.8000', '14.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-06-29', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58174, 507, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '10.0000', '2022-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 (58175, 507, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '11.0000', '2022-06-29', '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 (58176, 507, NULL, 9959, '13716082', 'LUMIZAP 80/480MG TABLET', NULL, '5.8800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '1.0000', '2022-06-29', 'received', '5.8800', '5.8800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58177, 507, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.7000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '5.0000', '2022-06-29', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58178, 507, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9900', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '0.0000', '2022-06-29', 'received', '4.9900', '4.9900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58179, 507, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '3.6000', '5.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2022-06-29', 'received', '3.6000', '3.6000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (58180, 507, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '10.2000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '3.0000', '2022-06-29', 'received', '10.2000', '10.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58181, 507, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.1000', '2.8000', '80.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '20.0000', '2022-06-29', 'received', '2.1000', '2.1000', '80.0000', NULL, NULL, 1, 'pc', '80.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 (58182, 507, NULL, 2337, '04743466', 'M2 TONE', NULL, '60.0000', '79.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-06-29', 'received', '60.0000', '60.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (58183, 507, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '6.8000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2022-06-29', '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 (58184, 507, NULL, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '23.0000', '31.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-06-29', '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 (58185, 507, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '70.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2022-06-29', 'received', '0.8000', '0.8000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (58186, 507, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '9.8800', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.4000', '1.0000', '2022-06-29', 'received', '9.8800', '9.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (58187, 507, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '0.0000', '2022-06-29', '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 (58188, 507, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '2.0000', '2022-06-29', '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 (58189, 507, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.7000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '10.0000', '2022-06-29', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58190, 507, NULL, 7745, '1665', 'DUREX COND', NULL, '6.7000', '10.0000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.8000', '0.0000', '2022-06-29', 'received', '6.7000', '6.7000', '14.0000', NULL, NULL, 1, 'pc', '14.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 (58191, 507, NULL, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '4.7000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '5.0000', '2022-06-29', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58192, 507, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-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 (58193, 507, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2022-06-29', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58194, 507, NULL, 9835, '93439136', 'HONEY GINSENG', NULL, '30.0000', '40.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-06-29', '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 (58195, 507, NULL, 9836, '50969936', 'HONEY GINGER', NULL, '30.0000', '40.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-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 (58196, 507, NULL, 2975, '25893453', 'EASY CHECK OVULATION TEST KIT', NULL, '8.0000', '10.5000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '5.0000', '2022-06-29', 'received', '8.0000', '8.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (58197, 507, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-06-29', '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 (58198, 507, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '3.0000', '2022-06-29', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58199, 507, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '4.0000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-06-29', '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 (58200, 507, NULL, 2347, '27404535', 'SALICYLIC ACID OINT', NULL, '6.6000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '4.0000', '2022-06-29', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58201, 507, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '0.0000', '2022-06-29', 'received', '4.7000', '4.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (58202, 507, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '4.9000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2022-06-29', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58203, 507, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '9.0000', '2022-06-29', 'received', '5.9000', '5.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58204, 507, NULL, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '3.2800', '4.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8400', '0.0000', '2022-06-29', 'received', '3.2800', '3.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.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 (58205, 507, NULL, 9921, '29778181', 'HEMOFORCE PLUS SYR', NULL, '6.6500', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2500', '2.0000', '2022-06-29', 'received', '6.6500', '6.6500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58206, 507, NULL, 8170, '2090', 'LEOPARD OINT', NULL, '5.7500', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2022-06-29', 'received', '5.7500', '5.7500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58207, 507, NULL, 1922, '8904185507342', 'Blopen gel BG-138', NULL, '3.0000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-06-29', '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 (58208, 507, NULL, 1355, 'PR-68', 'LIVOPAT CAPS- INDUS', NULL, '17.6200', '23.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8600', '2.0000', '2022-06-29', '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 (58209, 507, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.9500', '34.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '1.0000', '2022-06-29', 'received', '25.9500', '25.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.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 (58210, 507, NULL, 9920, '93752243', 'ZIPFERON CAPS', NULL, '3.3000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '2.0000', '2022-06-29', '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 (58211, 507, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '0.0000', '2022-06-29', 'received', '17.3000', '17.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58212, 507, NULL, 8017, '1937', 'SALOCOLD TAB', NULL, '0.6000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-06-29', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (58213, 507, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-06-29', '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 (58214, 507, NULL, 7880, '1800', 'VAGINAX PESS', NULL, '3.2000', '4.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '0.0000', '2022-06-29', '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 (58215, 507, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '5.7100', '7.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5200', '0.0000', '2022-06-29', 'received', '5.7100', '5.7100', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.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 (58216, 507, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.9200', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.2000', '0.0000', '2022-06-29', 'received', '1.9200', '1.9200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (58217, 507, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '10.4800', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8000', '6.0000', '2022-06-29', 'received', '10.4800', '10.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (58218, 507, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '13.2000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2022-06-29', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58219, 507, NULL, 9810, '08998339', 'NEOFERON', NULL, '9.8000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '1.0000', '2022-06-29', 'received', '9.8000', '9.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58220, 507, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-06-29', 'received', '2.9500', '2.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (58221, 507, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-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 (58222, 507, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-06-29', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58223, 507, NULL, 7944, '1864', 'DIPEX TAB', NULL, '2.0100', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '0.0000', '2022-06-29', 'received', '2.0100', '2.0100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58224, 507, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.5800', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9000', '1.0000', '2022-06-29', 'received', '6.5800', '6.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (58225, 507, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '1.0000', '2022-06-29', '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 (58226, 507, NULL, 7938, '1858', 'ETISALA CAPS', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-06-29', '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 (58227, 507, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '10.0000', '13.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-06-29', '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 (58228, 507, NULL, 1820, '8901040306010', 'TIMOL 0.5% (SANOFI)', NULL, '8.3700', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.1100', '1.0000', '2022-06-29', 'received', '8.3700', '8.3700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (58229, 507, NULL, 8706, '2626', 'BCOMPLEX  SRP KINAPHARMA', NULL, '3.8000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.6000', '1.0000', '2022-06-29', 'received', '3.8000', '3.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (58230, 507, NULL, 7974, '1894', 'EVECARE SRP', NULL, '26.9000', '36.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8000', '0.0000', '2022-06-29', 'received', '26.9000', '26.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (58231, 507, NULL, 8498, '2418', 'DIPROSIN', NULL, '3.1500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '3.0000', '2022-06-29', 'received', '3.1500', '3.1500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58232, 507, NULL, 9922, '72236986', 'BETASOL CREAM 30G', NULL, '3.1500', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '0.0000', '2022-06-29', 'received', '3.1500', '3.1500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58233, 507, NULL, 9923, '84008252', 'CANDID B CREAM', NULL, '8.7000', '11.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.2000', '4.0000', '2022-06-29', 'received', '8.7000', '8.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58234, 507, NULL, 9924, '37923548', 'GOGYNAX TABLET 100MG', NULL, '3.5000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '6.0000', '2022-06-29', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58235, 507, NULL, 7785, '1705', 'GOGYNAX', NULL, '3.9000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2022-06-29', '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 (58236, 507, NULL, 9928, '22127323', 'TINATET BF BF CAPS', NULL, '26.4000', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '3.0000', '2022-06-29', 'received', '26.4000', '26.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (58237, 507, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '9.2200', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6600', '0.0000', '2022-06-29', 'received', '9.2200', '9.2200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (58238, 507, NULL, 9513, '46545234', 'GLUCO NAF C', NULL, '11.6000', '15.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '5.0000', '2022-06-29', 'received', '11.6000', '11.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58239, 507, NULL, 2129, '76264523', 'FINELIFE TONIC', NULL, '7.9500', '10.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '3.0000', '2022-06-29', 'received', '7.9500', '7.9500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (58240, 507, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-06-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 (58241, 507, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-29', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (58242, 507, NULL, 2096, '90371186', 'LETAVIT SYRUP 125ML', NULL, '1.5500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.3000', '0.0000', '2022-06-29', 'received', '1.5500', '1.5500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58243, 507, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.7500', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '6.0000', '2022-06-29', 'received', '4.7500', '4.7500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58244, 507, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9900', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '0.0000', '2022-06-29', 'received', '4.9900', '4.9900', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58245, 507, NULL, 9925, '39839096', 'EMIGKOF S SYR', NULL, '4.4000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '6.0000', '2022-06-29', '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 (58246, 507, NULL, 9926, '51491650', 'EMIGKOF D SYR', NULL, '4.4000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '6.0000', '2022-06-29', '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 (58247, 507, NULL, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '2.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-06-29', '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 (58248, 507, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '12.3000', '16.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8000', '1.0000', '2022-06-29', 'received', '12.3000', '12.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58249, 507, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '12.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-06-29', '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 (58250, 507, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.9000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '2.0000', '2022-06-29', '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 (58251, 507, NULL, 9845, '86814231', 'METROGR-F JUNIOR SUSP', NULL, '5.7000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '1.0000', '2022-06-29', 'received', '5.7000', '5.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (58252, 507, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.1200', '0.0000', '2022-06-29', 'received', '2.0400', '2.0400', '28.0000', NULL, NULL, 1, 'pc', '28.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 (58253, 507, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '7.2000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-06-29', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58254, 507, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '3.0000', '2022-06-29', '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 (58255, 507, NULL, 9927, '05772370', 'HEMOFORCE FAMILY SYR', NULL, '6.6500', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2500', '4.0000', '2022-06-29', 'received', '6.6500', '6.6500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58256, 507, NULL, 9761, '83249404', 'IBUCAP FORTE CAPS', NULL, '2.1000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '2.0000', '2022-06-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 (58257, 507, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '14.8000', '19.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8000', '0.0000', '2022-06-29', 'received', '14.8000', '14.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58258, 507, NULL, 9805, '65440692', 'FERROVITA SYRUP', NULL, '31.5000', '42.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '2.0000', '2022-06-29', '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 (58259, 507, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '28.3000', '37.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.9000', '1.0000', '2022-06-29', 'received', '28.3000', '28.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (58260, 507, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-06-29', '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 (58261, 507, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.5000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-29', '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 (58262, 507, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '1.0000', '2022-06-29', 'received', '2.8000', '2.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58263, 507, NULL, 9869, '30145199', 'HERBLOZ LOZ PACK', NULL, '5.8000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.8000', '1.0000', '2022-06-29', 'received', '5.8000', '5.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (58264, 507, NULL, 9721, '99807619', 'AMUROX SUPS (CEFUROXIME AXETIL)', NULL, '11.7000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2022-06-29', '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 (58265, 507, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.1000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '3.0000', '2022-06-29', 'received', '9.1000', '9.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (58266, 507, NULL, 9850, '31114846', 'INFA V WASH 100ML', NULL, '17.6000', '23.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '2.0000', '2022-06-29', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (58267, 507, NULL, 9511, '96030287', 'INFA V WASH', NULL, '9.9000', '13.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9000', '0.0000', '2022-06-29', 'received', '9.9000', '9.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (58268, 507, NULL, 7589, '1509', 'GENTA-K', NULL, '1.9000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-06-29', 'received', '1.9000', '1.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58269, 507, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.1000', '0.0000', '2022-06-29', 'received', '15.0200', '15.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (58270, 507, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-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 (58271, 507, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '8.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2022-06-29', '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 (58272, 507, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-06-29', '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 (58273, 507, NULL, 2820, '47378191', 'VIREST CREAM', NULL, '10.0000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-06-29', '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 (58274, 507, NULL, 9813, '71936867', 'PIROXILEX 20MG CAP', NULL, '1.4900', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '48.0000', '2022-06-29', 'received', '1.4900', '1.4900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (58275, NULL, NULL, 1776, '', '', 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 (58276, NULL, NULL, 8367, '', '', 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 (58277, NULL, NULL, 2853, '', '', 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 (58278, NULL, NULL, 8641, '', '', 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 (58279, NULL, NULL, 8893, '', '', 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 (58280, NULL, NULL, 8165, '', '', 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 (58281, NULL, NULL, 8730, '', '', 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 (58282, NULL, NULL, 9286, '', '', 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 (58283, NULL, NULL, 8444, '', '', 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 (58284, NULL, NULL, 8831, '', '', 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 (58285, NULL, NULL, 1650, '', '', 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 (58286, NULL, NULL, 7746, '', '', 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 (58287, NULL, NULL, 9711, '', '', 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 (58288, NULL, NULL, 9813, '', '', 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 (58289, NULL, NULL, 2100, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (58290, NULL, NULL, 7960, '', '', 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 (58291, NULL, NULL, 8783, '', '', 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 (58292, NULL, NULL, 9815, '', '', 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 (58293, NULL, NULL, 9945, '', '', 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 (58294, NULL, NULL, 7877, '', '', 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 (58295, NULL, NULL, 9536, '', '', 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 (58296, NULL, NULL, 8627, '', '', 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 (58297, NULL, NULL, 7912, '', '', 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 (58318, NULL, NULL, 2654, '', '', 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 (58319, NULL, NULL, 7923, '', '', 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 (58342, NULL, NULL, 7388, '', '', 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 (58343, NULL, NULL, 2311, '', '', 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 (58344, NULL, NULL, 8879, '', '', 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 (58345, NULL, NULL, 9646, '', '', 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 (58346, NULL, NULL, 8934, '', '', 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 (58347, NULL, NULL, 9603, '', '', 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 (58348, NULL, NULL, 9908, '', '', 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 (58349, NULL, NULL, 8528, '', '', 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 (58350, NULL, NULL, 8369, '', '', 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 (58351, NULL, NULL, 2823, '', '', 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 (58352, NULL, NULL, 2957, '', '', 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 (58379, NULL, NULL, 7747, '', '', 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 (58380, NULL, NULL, 7621, '', '', 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 (58381, NULL, NULL, 7996, '', '', 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 (58382, NULL, NULL, 8689, '', '', 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 (58383, NULL, NULL, 7569, '', '', 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 (58384, NULL, NULL, 1833, '', '', 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 (58385, NULL, NULL, 9651, '', '', 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 (58386, NULL, NULL, 7569, '', '', 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 (58387, NULL, NULL, 8519, '', '', 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 (58388, NULL, NULL, 9219, '', '', 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 (58389, NULL, NULL, 8660, '', '', 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 (58513, NULL, NULL, 8481, '', '', 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 (58541, 503, NULL, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '18.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-06-23', '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 (58542, 503, NULL, 9963, '08133898', 'HEAVEN COIL', NULL, '7.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '2.0000', '2022-06-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 (58543, 503, NULL, 9961, '09856596', 'SASSO SPRAY S/S', NULL, '18.5000', '21.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2022-06-23', '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 (58544, 503, NULL, 9962, '97855165', 'SASSO COIL', NULL, '9.5000', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2022-06-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 (58545, 503, NULL, 2231, '7501058633927', 'NAN 2', NULL, '45.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-06-23', '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 (58546, 503, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '18.0000', '21.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '6.0000', '2022-06-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 (58547, 503, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '18.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2022-06-23', '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 (58548, 503, NULL, 2417, '89073800', 'DOVE SOAP', NULL, '4.0000', '6.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '1.0000', '2022-06-23', 'received', '4.0000', '4.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (58549, 503, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '12.0000', '15.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '7.0000', '2022-06-23', '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 (58550, 503, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-06-23', '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 (58551, 503, NULL, 9940, '89490205', 'PATEL GINGER HONEY CHIP ', NULL, '9.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-06-23', '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 (58552, 503, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4000', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '12.0000', '2022-06-23', 'received', '1.4000', '1.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (58553, 503, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.0500', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '14.0000', '2022-06-23', 'received', '1.0500', '1.0500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (58554, 503, NULL, 9964, '68332627', 'PRECIOUS HONEY 500ML', NULL, '40.0000', '48.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '5.0000', '2022-06-23', 'received', '40.0000', '40.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58555, 503, NULL, 9965, '37802713', 'PRECIOUS HONEY 250ML', NULL, '23.0000', '28.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '5.0000', '2022-06-23', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58556, 503, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '48.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '47.0000', '2022-06-23', 'received', '6.0000', '6.0000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (58557, NULL, NULL, 9187, '', '', 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 (58558, NULL, NULL, 9878, '', '', 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 (58559, NULL, NULL, 8116, '', '', 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 (58560, NULL, NULL, 9876, '', '', 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 (58561, NULL, NULL, 9803, '', '', 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 (58562, NULL, NULL, 7444, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (58563, NULL, NULL, 8445, '', '', 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 (58564, NULL, NULL, 8798, '', '', 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 (58565, NULL, NULL, 7562, '', '', 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 (58566, NULL, NULL, 7955, '', '', 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 (58567, NULL, NULL, 8821, '', '', 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 (58568, NULL, NULL, 9641, '', '', 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 (58569, NULL, NULL, 9848, '', '', 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 (58570, NULL, NULL, 9872, '', '', 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 (58571, NULL, NULL, 9418, '', '', 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 (58572, NULL, NULL, 9814, '', '', 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 (58573, NULL, NULL, 9891, '', '', 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 (58574, NULL, NULL, 7869, '', '', 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 (58575, NULL, NULL, 1383, '', '', 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 (58576, NULL, NULL, 2734, '', '', 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 (58577, NULL, NULL, 2975, '', '', 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 (58578, NULL, NULL, 9971, '', '', 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 (58579, NULL, NULL, 1494, '', '', 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 (58580, 510, NULL, 2406, '8901138502829', 'MENTAT', NULL, '22.0000', '30.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-07-11', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58581, 510, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '10.0000', '2022-07-11', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (58582, 510, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0500', '3.0000', '2022-07-11', 'received', '14.2100', '14.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (58583, 510, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3000', '3.0000', '2022-07-11', 'received', '16.6600', '16.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (58584, 510, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '10.4800', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.8000', '7.0000', '2022-07-11', 'received', '10.4800', '10.4800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (58585, 510, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '2.0000', '2022-07-11', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (58586, 510, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2022-07-11', '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 (58587, 510, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-07-11', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58588, 510, NULL, 1892, 'PR-605', 'Alugel', NULL, '0.5200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '34.0000', '2022-07-11', '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 (58589, 510, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.9600', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.8000', '4.0000', '2022-07-11', 'received', '14.9600', '14.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (58590, 510, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '6.0000', '2022-07-11', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (58591, 510, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '6.0000', '2022-07-11', '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 (58592, 510, NULL, 2151, '05077634', 'TOMAC MIX', NULL, '20.9000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.8000', '0.0000', '2022-07-11', 'received', '20.9000', '20.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (58593, 510, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '3.0000', '2022-07-11', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58594, 510, NULL, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '21.0000', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '3.0000', '2022-07-11', '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 (58595, 510, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS 0.05%', NULL, '26.6200', '35.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8600', '2.0000', '2022-07-11', 'received', '26.6200', '26.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (58596, 510, NULL, 1612, 'PR-325', 'GYPRONE PLUS TABS', NULL, '2.0000', '2.6400', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-07-11', 'received', '2.0000', '2.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (58597, 510, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '29.9600', '40.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.8000', '3.0000', '2022-07-11', 'received', '29.9600', '29.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (58598, 510, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.0000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-07-11', '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 (58599, 510, NULL, 1903, 'PR-616', 'Lumeth Adult', NULL, '6.2000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '10.0000', '2022-07-11', 'received', '6.2000', '6.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58600, 510, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '50.0000', '66.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2022-07-11', '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 (58601, 510, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '3.0000', '2022-07-11', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (58602, 510, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '16.9000', '22.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.0000', '10.0000', '2022-07-11', 'received', '16.9000', '16.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (58603, 510, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '50.7000', '67.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '1.0000', '2022-07-11', 'received', '50.7000', '50.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '50.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 (58604, 510, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-07-11', 'received', '26.0000', '26.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (58605, 510, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2500', '24.0000', '2022-07-11', 'received', '0.8100', '0.8100', '25.0000', NULL, NULL, 1, 'pc', '25.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 (58606, 510, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '42.4000', '56.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '1.0000', '2022-07-11', 'received', '42.4000', '42.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '42.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 (58607, 510, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '3.0000', '2022-07-11', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58608, 510, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '4.0000', '2022-07-11', '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 (58609, 510, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '13.6000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '1.0000', '2022-07-11', 'received', '13.6000', '13.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58610, 510, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '7.2000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '10.0000', '2022-07-11', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58611, 510, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '17.0000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '4.0000', '2022-07-11', '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 (58612, 510, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '12.0000', '2022-07-11', '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 (58613, 510, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.5200', '0.7000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '38.0000', '2022-07-11', '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 (58614, 510, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '7.0000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '7.0000', '2022-07-11', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58615, 510, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '6.0000', '2022-07-11', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58616, 510, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '16.0000', '2022-07-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 (58617, 510, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.7500', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2500', '3.0000', '2022-07-11', 'received', '4.7500', '4.7500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (58618, 510, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '11.8000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '4.0000', '2022-07-11', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58619, 510, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '5.0000', '2022-07-11', '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 (58620, 510, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4000', '1.0000', '2022-07-11', 'received', '2.0800', '2.0800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (58621, 510, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '46.3000', '61.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.9000', '2.0000', '2022-07-11', 'received', '46.3000', '46.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '46.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 (58622, 510, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '25.9000', '34.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '0.0000', '2022-07-11', '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 (58623, 510, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '55.9000', '74.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.8000', '0.0000', '2022-07-11', 'received', '55.9000', '55.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '55.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 (58624, 510, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.5000', '36.0000', '2022-07-11', 'received', '4.1700', '4.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (58625, 510, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '50.0000', '2022-07-11', '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 (58626, 510, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '47.9000', '64.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '239.5000', '2.0000', '2022-07-11', 'received', '47.9000', '47.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '47.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 (58627, 510, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '8.0000', '2022-07-11', '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 (58628, 510, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '13.8100', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0500', '5.0000', '2022-07-11', 'received', '13.8100', '13.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (58629, 510, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '37.7200', '50.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.3200', '5.0000', '2022-07-11', 'received', '37.7200', '37.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (58630, 510, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '37.0000', '2022-07-11', '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 (58631, 510, NULL, 8068, '1988', 'METOCLOPRAMIDE', NULL, '7.8000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2022-07-11', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58632, 510, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.9000', '47.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '2.0000', '2022-07-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 (58633, 510, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '18.0000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-07-11', '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 (58634, 510, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '5.0000', '2022-07-11', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58635, 510, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6500', '3.0000', '2022-07-11', 'received', '6.1300', '6.1300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58636, 510, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.5800', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.8000', '6.0000', '2022-07-11', 'received', '14.5800', '14.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (58637, 510, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5200', '3.0000', '2022-07-11', 'received', '15.6300', '15.6300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (58638, 510, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '27.0000', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '5.0000', '2022-07-11', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58639, 510, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-07-11', '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 (58640, 510, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '7.7000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '4.0000', '2022-07-11', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58641, 510, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-07-11', '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 (58642, 510, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '15.4000', '20.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '3.0000', '2022-07-11', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (58643, 510, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '9.0000', '2022-07-11', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58644, 510, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '10.0000', '2022-07-11', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58645, 510, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.6000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '9.0000', '2022-07-11', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58646, 510, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '11.5000', '15.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '4.0000', '2022-07-11', '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 (58647, 510, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '5.0000', '2022-07-11', '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 (58648, 510, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-07-11', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58649, 510, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.1200', '24.0000', '2022-07-11', 'received', '2.0400', '2.0400', '28.0000', NULL, NULL, 1, 'pc', '28.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 (58650, 510, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '4.0000', '2022-07-11', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (58651, 510, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '13.8100', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0500', '5.0000', '2022-07-11', 'received', '13.8100', '13.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (58652, 510, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '13.0000', '2022-07-11', '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 (58653, 510, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '22.0000', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-07-11', '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 (58654, 510, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '4.0000', '2022-07-11', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58655, 510, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '14.3500', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7500', '0.0000', '2022-07-11', 'received', '14.3500', '14.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (58656, 510, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '9.1600', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.8000', '3.0000', '2022-07-11', 'received', '9.1600', '9.1600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (58657, 510, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.0000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '4.0000', '2022-07-11', '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 (58658, 510, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.8000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '61.0000', '2022-07-11', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (58659, 510, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '19.5000', '26.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '468.0000', '16.0000', '2022-07-11', 'received', '19.5000', '19.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (58660, 510, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '9.0000', '2022-07-11', '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 (58661, 510, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-07-11', '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 (58662, 510, NULL, 2975, '25893453', 'EASY CHECK OVULATION TEST KIT', NULL, '8.0000', '10.5000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '9.0000', '2022-07-11', 'received', '8.0000', '8.0000', '14.0000', NULL, NULL, 1, 'pc', '14.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 (58663, 510, NULL, 9950, '87916408', 'HEALTHLINK GLUCOSAMINE & CHODROITIN TABLET', NULL, '54.0000', '71.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-07-11', '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 (58664, 510, NULL, 9949, '52295419', 'HEALTHLINK MENOPAUSE TABLET', NULL, '37.9000', '50.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.8000', '2.0000', '2022-07-11', 'received', '37.9000', '37.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (58665, 510, NULL, 9951, '87572191', 'HEALTHLINK OMEGA 3 FISH OIL GEL', NULL, '36.0000', '47.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-07-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 (58666, 510, NULL, 9835, '93439136', 'HONEY GINSENG', NULL, '30.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-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 (58667, 510, NULL, 9836, '50969936', 'HONEY GINGER', NULL, '30.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-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 (58668, 510, NULL, 2487, '22129068', 'ALMOND SEED', NULL, '25.0000', '40.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '0.0000', '2022-07-11', 'received', '25.0000', '25.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (58669, NULL, NULL, 9943, '', '', 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 (58699, NULL, NULL, 9888, '', '', 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 (58700, NULL, NULL, 2664, '', '', 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 (58701, NULL, NULL, 8012, '', '', 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 (58702, NULL, NULL, 9942, '', '', 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 (58703, NULL, NULL, 8031, '', '', 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 (58704, NULL, NULL, 9219, '', '', 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 (58705, NULL, NULL, 7345, '', '', 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 (58706, NULL, NULL, 9634, '', '', 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 (58707, NULL, NULL, 9721, '', '', 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 (58708, NULL, NULL, 9621, '', '', 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 (58709, NULL, NULL, 7873, '', '', 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 (58752, 511, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '24.5000', '32.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.5000', '5.0000', '2022-07-14', 'received', '24.5000', '24.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58753, 511, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '1.0000', '2022-07-14', '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 (58754, 511, NULL, 8065, '1985', 'AMOKSIKLAV 1G', NULL, '42.6000', '56.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.8000', '0.0000', '2022-07-14', 'received', '42.6000', '42.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '42.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 (58755, 511, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '8.8200', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.1000', '0.0000', '2022-07-14', 'received', '8.8200', '8.8200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (58756, 511, NULL, 7318, '1238', 'LONART SUSP', NULL, '12.8000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-07-14', 'received', '12.8000', '12.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (58757, 511, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '10.5000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '4.0000', '2022-07-14', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58758, 511, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.4200', '2.0000', '2022-07-14', 'received', '10.0700', '10.0700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (58759, 511, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '44.0000', '2022-07-14', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (58760, 511, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '2.2200', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2022-07-14', 'received', '2.2200', '2.2200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (58761, 511, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '30.4000', '40.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.0000', '1.0000', '2022-07-14', 'received', '30.4000', '30.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '30.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 (58762, 511, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.7300', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '2.0000', '2022-07-14', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (58763, 511, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '16.2100', '21.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2600', '4.0000', '2022-07-14', 'received', '16.2100', '16.2100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (58764, 511, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.8000', '3.7000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '58.0000', '2022-07-14', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (58765, 511, NULL, 2281, '087450449108', 'TYLENOL EXTRA', NULL, '3.0000', '4.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-07-14', '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 (58766, 511, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2022-07-14', '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 (58767, 511, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '6.0000', '2022-07-14', 'received', '13.2000', '13.2000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (58768, 511, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '16.9000', '22.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.0000', '0.0000', '2022-07-14', 'received', '16.9000', '16.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (58769, 511, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2022-07-14', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58770, 511, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-07-14', '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 (58771, 511, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-07-14', '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 (58772, 511, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '6.2000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '2.0000', '2022-07-14', 'received', '6.2000', '6.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58773, 511, NULL, 9841, '1270489', 'LUMIZAP SUSP 60ML', NULL, '5.1900', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.3800', '2.0000', '2022-07-14', 'received', '5.1900', '5.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.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 (58774, 511, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '46.0000', '2022-07-14', '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 (58775, 511, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.8200', '6.0000', '2022-07-14', 'received', '9.4700', '9.4700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (58776, 511, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '7.5000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-07-14', '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 (58777, 511, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '4.0000', '2022-07-14', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (58778, 511, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '0.0000', '2022-07-14', '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 (58779, 511, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1000', '9.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '2.0000', '2022-07-14', '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 (58780, 511, NULL, 8333, '2253', 'GUDAPET CAPS', NULL, '6.6000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '3.0000', '2022-07-14', '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 (58781, 511, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '0.8000', '1.0000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '62.0000', '2022-07-14', 'received', '0.8000', '0.8000', '70.0000', NULL, NULL, 1, 'pc', '70.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 (58782, 511, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '7.6300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.3000', '3.0000', '2022-07-14', 'received', '7.6300', '7.6300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.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 (58783, 511, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.9000', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-07-14', '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 (58784, 511, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.3800', '2.0000', '2022-07-14', 'received', '4.6900', '4.6900', '2.0000', NULL, NULL, 1, 'pc', '2.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 (58785, 511, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '10.0000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2022-07-14', '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 (58786, 511, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '10.9000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '3.0000', '2022-07-14', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58787, 511, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.7500', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7500', '0.0000', '2022-07-14', '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 (58788, 511, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '41.8000', '55.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.6000', '1.0000', '2022-07-14', 'received', '41.8000', '41.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (58789, 511, NULL, 9794, '04947224', 'TOBCEE TABS', NULL, '1.0800', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '31.0000', '2022-07-14', 'received', '1.0800', '1.0800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (58790, 511, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '3.0000', '2022-07-14', 'received', '17.4000', '17.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58791, 511, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.1800', '0.0000', '2022-07-14', 'received', '4.0300', '4.0300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (58792, 511, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '6.8000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2022-07-14', '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 (58793, 511, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '1.0000', '2022-07-14', '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 (58794, 511, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '4.0000', '2022-07-14', '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 (58795, 511, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '4.9000', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '3.0000', '2022-07-14', 'received', '4.9000', '4.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (58796, 511, NULL, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '3.3200', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2000', '7.0000', '2022-07-14', 'received', '3.3200', '3.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (58797, 511, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '7.8000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '10.0000', '2022-07-14', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58798, 511, NULL, 1968, '5019781012206', 'VITAMIN E HEALTH AID', NULL, '78.3000', '103.3600', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.3000', '1.0000', '2022-07-14', 'received', '78.3000', '78.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '78.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 (58799, 511, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '12.0400', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.2000', '3.0000', '2022-07-14', 'received', '12.0400', '12.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (58800, 511, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '12.0200', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.1000', '4.0000', '2022-07-14', 'received', '12.0200', '12.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (58801, 511, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '3.0000', '2022-07-14', 'received', '14.7000', '14.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58802, 511, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '27.0000', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '2.0000', '2022-07-14', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58803, 511, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-07-14', '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 (58804, 511, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '22.0000', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '1.0000', '2022-07-14', '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 (58805, 511, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '4.7000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '1.0000', '2022-07-14', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58806, 511, NULL, 2258, '8901138180614', 'SPEMAN TABS', NULL, '36.0000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-07-14', '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 (58807, 511, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '2.0000', '2022-07-14', '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 (58808, 511, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.8000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '13.0000', '2022-07-14', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (58809, 511, NULL, 2559, '42580620', 'ABYVITA SYRP', NULL, '9.9000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '4.0000', '2022-07-14', '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 (58810, 511, NULL, 9024, '2944', 'KALAMINA LOTION', NULL, '7.4400', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '2.0000', '2022-07-14', 'received', '7.4400', '7.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (58811, 511, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9600', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '5.0000', '2022-07-14', 'received', '3.9600', '3.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (58812, 511, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '0.0000', '2022-07-14', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58813, 511, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '5.3000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '0.0000', '2022-07-14', '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 (58814, 511, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '14.5000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '5.0000', '2022-07-14', '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 (58815, 511, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '2.0600', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.5000', '9.0000', '2022-07-14', 'received', '2.0600', '2.0600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.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 (58816, 511, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '3.1000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5000', '1.0000', '2022-07-14', 'received', '3.1000', '3.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58817, 511, NULL, 3045, '00432970', 'CETRIZAN SYRUP 60ML', NULL, '4.6000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.6000', '1.0000', '2022-07-14', 'received', '4.6000', '4.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (58818, 511, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '5.7500', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7500', '2.0000', '2022-07-14', 'received', '5.7500', '5.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58819, 511, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '10.4000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '4.0000', '2022-07-14', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (58820, 511, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '12.3000', '16.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '4.0000', '2022-07-14', 'received', '12.3000', '12.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58821, 511, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '11.2000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '2.0000', '2022-07-14', 'received', '11.2000', '11.2000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (58822, 511, NULL, 8489, '2409', 'EVENING PRIMROSE', NULL, '21.5000', '28.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '0.0000', '2022-07-14', 'received', '21.5000', '21.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (58823, 511, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-07-14', '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 (58824, 511, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '7.0000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '2.0000', '2022-07-14', '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 (58825, 511, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.5000', '23.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '3.0000', '2022-07-14', '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 (58826, 511, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '8.1400', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.4000', '0.0000', '2022-07-14', 'received', '8.1400', '8.1400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (58827, 511, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '4.4800', '6.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '224.0000', '50.0000', '2022-07-14', 'received', '4.4800', '4.4800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (58828, 511, NULL, 9641, '23340378', 'BENYLIN CHILDREN CHESTY COUGH', NULL, '40.6000', '54.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.8000', '2.0000', '2022-07-14', 'received', '40.6000', '40.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (58829, 511, NULL, 8490, '2410', 'NUROFEN SRP', NULL, '27.3000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '1.0000', '2022-07-14', 'received', '27.3000', '27.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (58830, 511, NULL, 9636, '72421421', 'BENYLIN MUCUS MAX 150ML', NULL, '57.0000', '75.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.0000', '1.0000', '2022-07-14', '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 (58831, 511, NULL, 9638, '23165357', 'BENYLIN MUCUS DECON SYR 100ML', NULL, '43.7000', '58.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.1000', '2.0000', '2022-07-14', 'received', '43.7000', '43.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '43.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 (58832, 511, NULL, 9637, '81450031', 'BENYLIN CHILDREN NIGHT COUGH', NULL, '40.6000', '54.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.8000', '3.0000', '2022-07-14', 'received', '40.6000', '40.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (58833, 511, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5900', '3.0000', '2022-07-14', '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 (58834, 511, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '17.8000', '23.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '4.0000', '2022-07-14', 'received', '17.8000', '17.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (58835, 511, NULL, 2941, '60137035', 'FUMET SUSPENSION', NULL, '3.8000', '5.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2000', '4.0000', '2022-07-14', 'received', '3.8000', '3.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (58836, 511, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '8.0000', '2022-07-14', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58837, 511, NULL, 9721, '99807619', 'AMUROX SUPS (CEFUROXIME AXETIL)', NULL, '11.7000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '1.0000', '2022-07-14', 'received', '11.7000', '11.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (58838, 511, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.3000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9000', '3.0000', '2022-07-14', '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 (58839, 511, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '2.6000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.2000', '2.0000', '2022-07-14', 'received', '2.6000', '2.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (58840, 511, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '11.1000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.3000', '1.0000', '2022-07-14', 'received', '11.1000', '11.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (58841, 511, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '5.3000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '4.0000', '2022-07-14', '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 (58842, 511, NULL, 9424, '34445', 'RONFIT COLD P JNR SYRUP', NULL, '3.0300', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0900', '3.0000', '2022-07-14', 'received', '3.0300', '3.0300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (58843, 511, NULL, 2070, '014', 'CHLO EYE ', NULL, '3.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2022-07-14', 'received', '3.0000', '3.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (58844, 511, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '16.0000', '21.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '9.0000', '2022-07-14', 'received', '16.0000', '16.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (58845, 511, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '12.3000', '16.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '2.0000', '2022-07-14', '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 (59039, 505, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '17.0000', '20.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '306.0000', '2.0000', '2022-06-28', 'received', '17.0000', '17.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (59040, 505, NULL, 2524, '8858854602732', 'XTREME TUMERIC SOAP', NULL, '10.0000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-06-28', '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 (59041, 505, NULL, 9966, '88652515', 'STRETCHMARKS SOAP', NULL, '10.0000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2022-06-28', '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 (59042, 505, NULL, 2580, '8858854600592', 'DARK SPOT REMOVER SOAP', NULL, '12.0000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2022-06-28', '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 (59043, 505, NULL, 2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', NULL, '10.0000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2022-06-28', '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 (59044, 505, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '20.0000', '25.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '6.0000', '2022-06-28', '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 (59045, 505, NULL, 2212, '8964000114018', 'BLACKSEEDS OIL 60ML', NULL, '10.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-06-28', '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 (59046, 505, NULL, 2184, '8964000114353', 'MINT OIL', NULL, '7.5000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-06-28', '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 (59047, 505, NULL, 2191, '8964000114223', 'LAVENDER OIL', NULL, '7.5000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-06-28', '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 (59048, 505, NULL, 9546, '25835981', 'CLOVE OIL 30ML', NULL, '7.5000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-06-28', '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 (59049, 505, NULL, 2209, '8964000267295', 'TURMERIC OIL', NULL, '7.5000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-06-28', '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 (59050, 505, NULL, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-06-28', '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 (59051, 505, NULL, 9967, '56503866', 'ULTRA SLIM TEA PER PACK', NULL, '6.6000', '10.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '8.0000', '2022-06-28', '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 (59052, 505, NULL, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '8.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-06-28', '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 (59053, 505, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '6.1000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.3000', '0.0000', '2022-06-28', 'received', '6.1000', '6.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59054, 505, NULL, 9963, '08133898', 'HEAVEN COIL', NULL, '7.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '2.0000', '2022-06-28', '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 (59055, 505, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '18.0000', '22.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '5.0000', '2022-06-28', '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 (59056, 505, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '18.0000', '22.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '4.0000', '2022-06-28', '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 (59057, 505, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '17.0000', '22.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '6.0000', '2022-06-28', '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 (59058, 505, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '16.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-06-28', '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 (59059, 505, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '9.5000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2022-06-28', '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 (59060, 505, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '33.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-06-28', 'received', '33.0000', '33.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (59061, 505, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '4.0000', '2022-06-28', '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 (59062, 505, NULL, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '4.0000', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '2.0000', '2022-06-28', '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 (59063, 505, NULL, 9469, '40088756', 'PANACHE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '9.0000', '2022-06-28', '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 (59064, NULL, NULL, 7363, '', '', 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 (59065, NULL, NULL, 9699, '', '', 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 (59066, NULL, NULL, 1530, '', '', 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 (59067, NULL, NULL, 7817, '', '', 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 (59068, NULL, NULL, 1990, '', '', 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 (59069, NULL, NULL, 1769, '', '', 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 (59070, NULL, NULL, 9720, '', '', 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 (59071, NULL, NULL, 9848, '', '', 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 (59072, NULL, NULL, 9974, '', '', 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 (59073, NULL, NULL, 8158, '', '', 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 (59074, NULL, NULL, 9850, '', '', 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 (59075, NULL, NULL, 3080, '', '', 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 (59076, NULL, NULL, 8468, '', '', 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 (59077, 509, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '48.0000', '2022-07-06', 'received', '1.4000', '1.4000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (59078, 509, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '5.0000', '2022-07-06', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (59079, 509, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '7.1500', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-07-06', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (59080, 509, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.3000', '2.0000', '2022-07-06', 'received', '5.1000', '5.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59081, 509, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.8000', '1.0000', '2022-07-06', 'received', '4.7000', '4.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59082, 509, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '9.6000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2022-07-06', '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 (59083, 509, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '3.0000', '2022-07-06', '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 (59084, 509, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '7.3000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '3.0000', '2022-07-06', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59085, 509, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.4000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2022-07-06', 'received', '7.4000', '7.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59086, 509, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-07-06', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59087, 509, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6700', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '34.0000', '2022-07-06', 'received', '0.6700', '0.6700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59088, 509, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '6.3200', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2000', '7.0000', '2022-07-06', 'received', '6.3200', '6.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (59089, 509, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '17.0000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '2.0000', '2022-07-06', '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 (59090, 509, NULL, 8039, '1959', 'ACIDOM', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '1.0000', '2022-07-06', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (59091, 509, NULL, 7559, '1479', 'NEXIUM 40 14S', NULL, '10.6600', '14.5000', '14.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.2400', '11.0000', '2022-07-06', 'received', '10.6600', '10.6600', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '10.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 (59092, 509, NULL, 9834, '84800080', 'OMESHAL CAPS', NULL, '1.4500', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.5000', '5.0000', '2022-07-06', 'received', '1.4500', '1.4500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59093, 509, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '12.3000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.9000', '1.0000', '2022-07-06', 'received', '12.3000', '12.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59094, 509, NULL, 7317, '1237', 'LONART DS TABS', NULL, '16.9000', '22.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.0000', '0.0000', '2022-07-06', 'received', '16.9000', '16.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (59095, 509, NULL, 2955, '51481408', 'LONART TAB 24\'S', NULL, '6.1000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '2.0000', '2022-07-06', 'received', '6.1000', '6.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59096, 509, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '11.0000', '2022-07-06', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (59097, 509, NULL, 7746, '1666', 'MALAFAN', NULL, '1.3400', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '42.0000', '2022-07-06', 'received', '1.3400', '1.3400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (59098, 509, NULL, 7780, '1700', 'LUFART TAB', NULL, '14.8500', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '0.0000', '2022-07-06', 'received', '14.8500', '14.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (59099, 509, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.9000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '0.0000', '2022-07-06', '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 (59100, 509, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.8000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '7.0000', '2022-07-06', '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 (59101, 509, NULL, 7358, '1278', 'BELLS CHILDREN,S COUGH', NULL, '14.5000', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '3.0000', '2022-07-06', '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 (59102, 509, NULL, 9636, '72421421', 'BENYLIN MUCUS MAX 150ML', NULL, '57.0000', '75.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-07-06', '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 (59103, 509, NULL, 9641, '23340378', 'BENYLIN CHILDREN CHESTY COUGH', NULL, '40.6000', '54.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.8000', '2.0000', '2022-07-06', 'received', '40.6000', '40.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (59104, 509, NULL, 9638, '23165357', 'BENYLIN MUCUS DECON SYR 100ML', NULL, '43.7000', '58.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '262.2000', '4.0000', '2022-07-06', 'received', '43.7000', '43.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '43.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 (59105, 509, NULL, 9637, '81450031', 'BENYLIN CHILDREN NIGHT COUGH', NULL, '40.6000', '54.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.8000', '3.0000', '2022-07-06', 'received', '40.6000', '40.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (59106, 509, NULL, 8316, '2236', 'AMITRIPTLINE 25MG', NULL, '6.8000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4000', '1.0000', '2022-07-06', 'received', '6.8000', '6.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59107, 509, NULL, 8046, '1966', 'TRANEXAMIC ACID', NULL, '15.6000', '21.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '0.0000', '2022-07-06', 'received', '15.6000', '15.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.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 (59108, 509, NULL, 8481, '2401', 'PIRITON ORG SRP', NULL, '40.0000', '53.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-07-06', '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 (59109, 509, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.6000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2022-07-06', '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 (59110, 509, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '6.3000', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.3000', '1.0000', '2022-07-06', 'received', '6.3000', '6.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (59111, 509, NULL, 8017, '1937', 'SALOCOLD TAB', NULL, '0.6000', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '50.0000', '2022-07-06', 'received', '0.6000', '0.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (59112, 509, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-07-06', '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 (59113, 509, NULL, 7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', NULL, '8.6000', '11.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4000', '4.0000', '2022-07-06', 'received', '8.6000', '8.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59114, 509, NULL, 8944, '2864', 'VITANE SRP', NULL, '45.2400', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.4800', '2.0000', '2022-07-06', 'received', '45.2400', '45.2400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (59115, 509, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '30.8700', '41.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.7400', '2.0000', '2022-07-06', 'received', '30.8700', '30.8700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (59116, 509, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-07-06', '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 (59117, 509, NULL, 8208, '2128', 'DYNEWELL TAB', NULL, '0.4000', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '29.0000', '2022-07-06', '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 (59118, 509, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-07-06', '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 (59119, 509, NULL, 7736, '1656', 'NUGEL -O', NULL, '18.7300', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '3.0000', '2022-07-06', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (59120, 509, NULL, 8710, '2630', 'ANCIGEL O', NULL, '10.9000', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '1.0000', '2022-07-06', 'received', '10.9000', '10.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59121, 509, NULL, 9720, '41639032', 'ANCIGEL SUSP', NULL, '10.6000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '0.0000', '2022-07-06', 'received', '10.6000', '10.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59122, 509, NULL, 8925, '2845', 'MMT', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-07-06', '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 (59123, 509, NULL, 7548, '1468', 'SENACO', NULL, '4.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-07-06', '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 (59124, 509, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '37.7100', '50.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.2600', '0.0000', '2022-07-06', 'received', '37.7100', '37.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (59125, 509, NULL, 7491, '1411', 'ASCORYL SRP', NULL, '7.4000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-07-06', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59126, 509, NULL, 8006, '1926', 'CLARITHROMYCIN', NULL, '47.8000', '63.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8000', '0.0000', '2022-07-06', 'received', '47.8000', '47.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '47.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 (59127, 509, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '4.1000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '3.0000', '2022-07-06', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59128, 509, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-07-06', '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 (59129, 509, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-07-06', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (59130, 509, NULL, 8401, '2321', 'CITY TONIC', NULL, '10.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-07-06', '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 (59131, 509, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '42.4000', '56.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '2.0000', '2022-07-06', 'received', '42.4000', '42.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '42.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 (59132, 509, NULL, 7748, '1668', 'VIROL', NULL, '9.1500', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.4500', '3.0000', '2022-07-06', 'received', '9.1500', '9.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (59133, 509, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '6.0000', '2022-07-06', '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 (59134, 509, NULL, 7330, '1250', 'MYCOLEX CREAM', NULL, '15.0000', '19.8000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-07-06', '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 (59135, 509, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.9000', '0.0000', '2022-07-06', 'received', '16.9000', '16.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '16.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 (59136, 509, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-07-06', '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 (59137, 509, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '4.9000', '6.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '3.0000', '2022-07-06', '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 (59138, 509, NULL, 7877, '1797', 'POLYFER CAPS', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-07-06', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59139, 509, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2022-07-06', '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 (59140, 509, NULL, 7558, '1478', 'DORETA', NULL, '2.8000', '3.7000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '0.0000', '2022-07-06', 'received', '2.8000', '2.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (59141, 509, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '15.0000', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-07-06', '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 (59142, 509, NULL, 7451, '1371', 'WARFARIN 5MG', NULL, '7.8000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-07-06', '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 (59143, 509, NULL, 7872, '1792', 'STAGYL', NULL, '2.5000', '4.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2022-07-06', '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 (59144, 509, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '16.0000', '21.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '6.0000', '2022-07-06', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59145, 509, NULL, 8163, '2083', 'OTRIVIN ADULT', NULL, '28.6000', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.8000', '1.0000', '2022-07-06', 'received', '28.6000', '28.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (59146, 509, NULL, 2070, '014', 'CHLO EYE ', NULL, '3.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-07-06', '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 (59147, 509, NULL, 7446, '1366', 'TETRA OINT', NULL, '2.9800', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '2.0000', '2022-07-06', 'received', '2.9800', '2.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (59148, 509, NULL, 7650, '1570', 'HISTAZINE SRP', NULL, '4.6000', '6.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '2.0000', '2022-07-06', '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 (59149, 509, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.7000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '0.0000', '2022-07-06', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (59150, 509, NULL, 7513, '1433', 'TAMSULOSIN 400', NULL, '18.0000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-07-06', '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 (59151, 509, NULL, 8015, '1935', 'ZIRTEK TAB', NULL, '3.4000', '5.0000', '42.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.8000', '42.0000', '2022-07-06', 'received', '3.4000', '3.4000', '42.0000', NULL, NULL, 1, 'pc', '42.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 (59152, 509, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6700', '9.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-07-06', 'received', '6.6700', '6.6700', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '6.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 (59153, 509, NULL, 8548, '2468', 'MARK -2 INH', NULL, '6.7000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2022-07-06', '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 (59154, 509, NULL, 7367, '1287', 'ATORVASTATIN20MG', NULL, '9.8000', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '2.0000', '2022-07-06', '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 (59155, 509, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '30.4000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '0.0000', '2022-07-06', 'received', '30.4000', '30.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.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 (59156, 509, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '30.4000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '2.0000', '2022-07-06', 'received', '30.4000', '30.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.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 (59157, 509, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.1000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3000', '3.0000', '2022-07-06', 'received', '23.1000', '23.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (59158, 509, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '13.5000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2022-07-06', '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 (59159, 509, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '0.0000', '2022-07-06', 'received', '14.5000', '14.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59160, 509, NULL, 9291, '3211', 'FIESTA LUBRICANT GEL SMALL', NULL, '15.4000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '2.0000', '2022-07-06', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (59161, 509, NULL, 7412, '1332', 'COLODIUM', NULL, '2.2000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '7.0000', '2022-07-06', '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 (59162, 509, NULL, 9399, '3319', 'LETACAM (PIROXICAM)', NULL, '0.9800', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '0.0000', '2022-07-06', '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 (59163, 509, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '8.6000', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '1.0000', '2022-07-06', '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 (59164, 509, NULL, 7564, '1484', 'KWIK ACTION', NULL, '0.6400', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '28.0000', '2022-07-06', '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 (59165, 509, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '25.9000', '34.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '0.0000', '2022-07-06', '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 (59166, 509, NULL, 8068, '1988', 'METOCLOPRAMIDE', NULL, '7.8000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '4.0000', '2022-07-06', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59167, 509, NULL, 8328, '2248', 'GOFEX', NULL, '10.0000', '13.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-07-06', '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 (59168, 509, NULL, 7860, '1780', 'BEEHIVE', NULL, '24.1600', '32.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.8000', '0.0000', '2022-07-06', 'received', '24.1600', '24.1600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '24.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 (59169, 509, NULL, 7996, '1916', 'WELLBABY DROP', NULL, '54.9900', '73.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.9800', '0.0000', '2022-07-06', 'received', '54.9900', '54.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.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 (59170, 509, NULL, 7598, '1518', 'KAMAGRA 100', NULL, '9.5000', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.0000', '9.0000', '2022-07-06', 'received', '9.5000', '9.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59171, 509, NULL, 7783, '1703', 'KAMAGRA50', NULL, '7.0000', '9.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '2.0000', '2022-07-06', 'received', '7.0000', '7.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59172, 509, NULL, 7899, '1819', 'EKURO BEWU', NULL, '3.8500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '6.0000', '2022-07-06', 'received', '3.8500', '3.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (59173, 509, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '9.8600', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.3000', '0.0000', '2022-07-06', 'received', '9.8600', '9.8600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (59174, 509, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '8.9900', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9500', '5.0000', '2022-07-06', 'received', '8.9900', '8.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59175, 509, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-07-06', '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 (59176, 509, NULL, 7675, '1595', 'GEBEDOL EXTRA', NULL, '3.0000', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-07-06', '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 (59177, 509, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '9.0000', '2022-07-06', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59178, 509, NULL, 7522, '1442', 'VISCOF D', NULL, '12.0400', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.2000', '1.0000', '2022-07-06', 'received', '12.0400', '12.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (59179, 509, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2022-07-06', '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 (59180, 509, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '16.5000', '22.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '0.0000', '2022-07-06', 'received', '16.5000', '16.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (59181, 509, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '3.0000', '2022-07-06', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59182, 509, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-07-06', '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 (59183, 509, NULL, 7641, '1561', 'LYDIA', NULL, '7.2000', '10.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '14.0000', '2022-07-06', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59184, 509, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '55.0000', '2022-07-06', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (59185, 509, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '10.9000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '4.0000', '2022-07-06', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59186, 509, NULL, 7523, '1443', 'VISCOF S', NULL, '12.0400', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.2000', '3.0000', '2022-07-06', 'received', '12.0400', '12.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (59187, 509, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '10.0000', '2022-07-06', '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 (59188, 509, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '10.8000', '14.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-07-06', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59189, 509, NULL, 7753, '1673', 'ZULU', NULL, '3.7800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '4.0000', '2022-07-06', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59190, 509, NULL, 7666, '1586', 'DYMOL TAB', NULL, '4.9000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '9.0000', '2022-07-06', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59191, 509, NULL, 7315, '1235', 'LONART FORTE TABS', NULL, '11.2500', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '9.0000', '2022-07-06', 'received', '11.2500', '11.2500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '11.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 (59192, 509, NULL, 9946, '04292515', 'SKYCLAV  625', NULL, '13.6000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2022-07-06', 'received', '13.6000', '13.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59193, 509, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '9.6000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2022-07-06', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59194, 509, NULL, 9945, '60409156', 'AZIROCIN SUSP', NULL, '12.1000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5000', '4.0000', '2022-07-06', 'received', '12.1000', '12.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (59195, 509, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '9.5000', '12.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '9.0000', '2022-07-06', '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 (59196, 509, NULL, 7474, '1394', 'KOFOF BABY', NULL, '7.1500', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '1.0000', '2022-07-06', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (59197, 509, NULL, 1370, 'PR-83', 'LIVERPLEX-B ADULT SYR', NULL, '8.2000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '5.0000', '2022-07-06', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59198, 509, NULL, 9947, '97967472', 'STOPKOF DRY COUGH ADULT', NULL, '8.5000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '5.0000', '2022-07-06', '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 (59199, 509, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.7200', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '15.0000', '2022-07-06', 'received', '1.7200', '1.7200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (59200, 509, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '10.0000', '2022-07-06', '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 (59288, NULL, NULL, 9506, '', '', 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 (59289, NULL, NULL, 8498, '', '', 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 (59290, NULL, NULL, 2627, '', '', 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 (59291, NULL, NULL, 9979, '', '', 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 (59292, NULL, NULL, 8306, '', '', 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 (59293, NULL, NULL, 9280, '', '', 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 (59294, NULL, NULL, 8475, '', '', 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 (59295, NULL, NULL, 7644, '', '', 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 (59296, NULL, NULL, 9592, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (59297, NULL, NULL, 7862, '', '', 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 (59298, NULL, NULL, 7347, '', '', 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 (59299, NULL, NULL, 9586, '', '', 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 (59300, NULL, NULL, 9955, '', '', 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 (59301, NULL, NULL, 7398, '', '', 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 (59302, NULL, NULL, 9946, '', '', 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 (59303, NULL, NULL, 9018, '', '', 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 (59304, 512, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-07-18', 'received', '3.0000', '3.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (59305, 512, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '29.8000', '40.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.0000', '5.0000', '2022-07-18', 'received', '29.8000', '29.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (59306, 512, NULL, 7750, '1670', 'CALPOL 2+', NULL, '46.3000', '61.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.6000', '2.0000', '2022-07-18', 'received', '46.3000', '46.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.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 (59307, 512, NULL, 7708, '1628', 'TEEDAR', NULL, '8.3000', '11.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.4000', '7.0000', '2022-07-18', 'received', '8.3000', '8.3000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '8.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 (59308, 512, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9200', '2.0000', '2022-07-18', 'received', '8.6400', '8.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (59309, 512, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '5.0000', '2022-07-18', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59310, 512, NULL, 7630, '1550', 'DUCOLAX SUPP', NULL, '3.3100', '4.5000', '36.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.1600', '22.0000', '2022-07-18', 'received', '3.3100', '3.3100', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '3.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 (59311, 512, NULL, 8481, '2401', 'PIRITON ORG SRP', NULL, '40.0000', '53.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-07-18', '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 (59312, 512, NULL, 8135, '2055', 'AMCOF BABY', NULL, '5.9000', '8.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2000', '2.0000', '2022-07-18', 'received', '5.9000', '5.9000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (59313, 512, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0400', '8.0000', '2022-07-18', 'received', '6.1300', '6.1300', '8.0000', NULL, NULL, 1, 'pc', '8.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 (59314, 512, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '10.4000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '2.0000', '2022-07-18', 'received', '10.4000', '10.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (59315, 512, NULL, 7859, '1779', 'KOFLET', NULL, '15.0000', '20.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2022-07-18', '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 (59316, 512, NULL, 8449, '2369', 'FEROLLEX SRP', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '3.0000', '2022-07-18', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (59317, 512, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.1800', '6.0000', '2022-07-18', 'received', '4.0300', '4.0300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (59318, 512, NULL, 7911, '1831', 'BASECOLD SRP', NULL, '3.9600', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '7.0000', '2022-07-18', 'received', '3.9600', '3.9600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (59319, 512, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '8.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2022-07-18', '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 (59320, 512, NULL, 8517, '2437', 'AZOMAX SUSP', NULL, '27.5000', '36.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-07-18', 'received', '27.5000', '27.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (59321, 512, NULL, 7757, '1677', 'ZINNAT 500', NULL, '135.6500', '179.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '271.3000', '0.0000', '2022-07-18', 'received', '135.6500', '135.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '135.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 (59322, 512, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-07-18', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59323, 512, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '22.0000', '2022-07-18', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (59324, 512, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '9.0000', '2022-07-18', '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 (59325, 512, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '6.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-07-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 (59326, 512, NULL, 9142, '3062', 'VIGONX', NULL, '11.1000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '5.0000', '2022-07-18', 'received', '11.1000', '11.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (59327, 512, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.2000', '3.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6000', '0.0000', '2022-07-18', 'received', '2.2000', '2.2000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (59328, 512, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.1300', '4.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.4000', '0.0000', '2022-07-18', 'received', '1.1300', '1.1300', '80.0000', NULL, NULL, 1, 'pc', '80.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 (59329, 512, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '0.0000', '2022-07-18', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (59330, 512, NULL, 9820, '82801354', 'BLUMOON 50MG', NULL, '2.2000', '3.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '5.0000', '2022-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 (59331, 512, NULL, 9727, '67843986', 'KIFARU TAB 100ML', NULL, '6.7000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '6.0000', '2022-07-18', '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 (59332, 512, NULL, 7641, '1561', 'LYDIA', NULL, '7.2000', '10.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '32.0000', '2022-07-18', 'received', '7.2000', '7.2000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (59333, 512, NULL, 7642, '1562', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '3.0000', '2022-07-18', '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 (59334, 512, NULL, 7803, '1723', 'SECURE', NULL, '3.5000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-07-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 (59335, 512, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '49.0000', '2022-07-18', 'received', '0.7700', '0.7700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59336, 512, NULL, 8164, '2084', 'OTRIVIN CHILD', NULL, '26.6200', '35.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8600', '0.0000', '2022-07-18', 'received', '26.6200', '26.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (59337, 512, NULL, 7715, '1635', 'MALARIA TEST KIT', NULL, '4.6000', '6.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '15.0000', '2022-07-18', 'received', '4.6000', '4.6000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (59338, 512, NULL, 7478, '1398', 'NIFE DENK 20', NULL, '6.3200', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2000', '3.0000', '2022-07-18', 'received', '6.3200', '6.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (59339, 512, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '17.0000', '2022-07-18', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (59340, 512, NULL, 7784, '1704', 'DRAGON CAPS', NULL, '5.2300', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.6000', '1.0000', '2022-07-18', 'received', '5.2300', '5.2300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59341, 512, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '5.3000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '3.0000', '2022-07-18', 'received', '5.3000', '5.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59342, 512, NULL, 7708, '1628', 'TEEDAR', NULL, '8.3000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '6.0000', '2022-07-18', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (59343, 512, NULL, 7661, '1581', 'DREZ POWDER', NULL, '9.4000', '12.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2000', '3.0000', '2022-07-18', 'received', '9.4000', '9.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (59344, 512, NULL, 9894, '24864084', 'HYDROGEN PEROXIDE MAL.TITI', NULL, '4.5000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2022-07-18', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59345, 512, NULL, 7788, '1708', 'HUICHUM CAPS', NULL, '22.0000', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-07-18', '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 (59346, 512, NULL, 9160, '3080', 'LUEX NASAL INHALER', NULL, '4.0000', '5.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-07-18', '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 (59347, 512, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '30.4000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '0.0000', '2022-07-18', 'received', '30.4000', '30.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.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 (59348, 512, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '10.7000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.5000', '3.0000', '2022-07-18', 'received', '10.7000', '10.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59349, 512, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-07-18', '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 (59350, 512, NULL, 8940, '2860', 'NIFECARD 30', NULL, '10.0700', '13.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.6300', '0.0000', '2022-07-18', 'received', '10.0700', '10.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.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 (59351, 512, NULL, 7794, '1714', 'LISINOPRIL 10', NULL, '6.1000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '5.0000', '2022-07-18', 'received', '6.1000', '6.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59352, 512, NULL, 9785, '79529364', 'Rizole Susp 100ml', NULL, '3.6000', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '3.0000', '2022-07-18', 'received', '3.6000', '3.6000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (59353, 512, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '3.7000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2022-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 (59354, 512, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '14.6000', '19.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.4000', '0.0000', '2022-07-18', 'received', '14.6000', '14.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59355, 512, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '3.1700', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5000', '8.0000', '2022-07-18', 'received', '3.1700', '3.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (59356, 512, NULL, 7483, '1403', 'ORS', NULL, '0.4200', '1.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '53.0000', '2022-07-18', 'received', '0.4200', '0.4200', '75.0000', NULL, NULL, 1, 'pc', '75.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 (59357, 512, NULL, 7745, '1665', 'DUREX COND', NULL, '8.9000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '7.0000', '2022-07-18', 'received', '8.9000', '8.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (59358, 512, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '2.7200', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '9.0000', '2022-07-18', 'received', '2.7200', '2.7200', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59359, 512, NULL, 9245, '3165', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2022-07-18', '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 (59360, 512, NULL, 7780, '1700', 'LUFART TAB', NULL, '14.8500', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.2500', '0.0000', '2022-07-18', 'received', '14.8500', '14.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (59361, 512, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.7000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '15.0000', '2022-07-18', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (59362, 512, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.7200', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '0.0000', '2022-07-18', 'received', '1.7200', '1.7200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (59363, 512, NULL, 8101, '2021', 'CHLO CAPS', NULL, '2.4900', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.5000', '0.0000', '2022-07-18', 'received', '2.4900', '2.4900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59364, 512, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-07-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 (59365, 512, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.8000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '20.0000', '2022-07-18', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59366, 512, NULL, 8879, '2799', 'INFA V OINT', NULL, '20.9000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.5000', '5.0000', '2022-07-18', 'received', '20.9000', '20.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (59367, 512, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '29.0000', '38.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '2.0000', '2022-07-18', '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 (59368, 512, NULL, 8918, '2838', 'APC 10*10', NULL, '1.2200', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '26.0000', '2022-07-18', 'received', '1.2200', '1.2200', '30.0000', NULL, NULL, 1, 'pc', '30.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 (59369, 512, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2022-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 (59370, 512, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '10.0000', '2022-07-18', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59371, 512, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2022-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 (59372, 512, NULL, 7815, '1735', 'GIVERS KOO CAPS', NULL, '22.0000', '29.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-07-18', 'received', '22.0000', '22.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59373, 512, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '15.0000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-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 (59374, 512, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '10.0000', '2022-07-18', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59375, 512, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '11.8000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '2.0000', '2022-07-18', 'received', '11.8000', '11.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (59376, 512, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '0.0000', '2022-07-18', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (59377, 512, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.4000', '10.0000', '2022-07-18', 'received', '4.1700', '4.1700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (59378, 512, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '7.0000', '2022-07-18', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59379, 512, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7600', '3.7000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '0.0000', '2022-07-18', 'received', '2.7600', '2.7600', '40.0000', NULL, NULL, 1, 'pc', '40.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 (59380, 512, NULL, 8020, '1940', 'MUCOLEX J', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2022-07-18', '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 (59381, 512, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '49.6000', '65.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '496.0000', '7.0000', '2022-07-18', 'received', '49.6000', '49.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '49.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 (59382, 512, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.3000', '7.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7000', '8.0000', '2022-07-18', 'received', '5.3000', '5.3000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (59383, 512, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '7.0000', '2022-07-18', '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 (59384, 512, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '1.0000', '2022-07-18', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59385, 512, NULL, 7980, '1900', 'GACET 125', NULL, '0.5500', '0.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-07-18', '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 (59386, 512, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '19.5000', '26.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-07-18', 'received', '19.5000', '19.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (59387, 512, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '42.4000', '56.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '254.4000', '5.0000', '2022-07-18', 'received', '42.4000', '42.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '42.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 (59388, 512, NULL, 9953, '21608860', 'ARZIGLOBIN PLUS SYR', NULL, '8.9000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '4.0000', '2022-07-18', 'received', '8.9000', '8.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (59389, 512, NULL, 9876, '80439405', 'HAEM UP SYR 200ML', NULL, '16.9000', '22.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '3.0000', '2022-07-18', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (59390, 512, NULL, 7432, '1352', 'VITAFORCE', NULL, '18.9000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '3.0000', '2022-07-18', '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 (59391, 512, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '16.6000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '3.0000', '2022-07-18', 'received', '16.6000', '16.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (59392, 512, NULL, 7526, '1446', 'ZINCOVIT SRP', NULL, '15.6300', '21.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8900', '0.0000', '2022-07-18', 'received', '15.6300', '15.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (59393, 512, NULL, 7961, '1881', 'JARIFAN 2 SRP', NULL, '13.2000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '2.0000', '2022-07-18', '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 (59394, 512, NULL, 7664, '1584', 'DUROL ADULT', NULL, '9.1500', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7500', '5.0000', '2022-07-18', 'received', '9.1500', '9.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (59395, 512, NULL, 7592, '1512', 'HAEMOGLOBIN M/G', NULL, '6.8000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '3.0000', '2022-07-18', '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 (59396, 512, NULL, 8146, '2066', 'HAEMOGLOBIN ARTN', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-07-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 (59397, 512, NULL, 8597, '2517', 'WELLWOMAN MAX', NULL, '60.1800', '79.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.3600', '1.0000', '2022-07-18', 'received', '60.1800', '60.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.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 (59398, 512, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0900', '3.0000', '2022-07-18', 'received', '4.0300', '4.0300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.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 (59399, 512, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '0.0000', '2022-07-18', 'received', '2.8000', '2.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (59400, 512, NULL, 7405, '1325', 'bisoprolol fumarate 2.5mg tabs sandox', NULL, '6.9000', '9.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '1.0000', '2022-07-18', '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 (59401, 512, NULL, 9633, '58280884', 'fluconazole 150mg (TEVA)', NULL, '7.2000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '4.0000', '2022-07-18', 'received', '7.2000', '7.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59402, 512, NULL, 8495, '2415', 'RAMIPRIL CAPS', NULL, '4.0000', '5.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '2.0000', '2022-07-18', '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 (59403, 512, NULL, 7872, '1792', 'STAGYL', NULL, '2.5000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-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 (59404, 512, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7000', '0.0000', '2022-07-18', 'received', '3.3000', '3.3000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (59405, 512, NULL, 9332, '3252', 'ARZIGLOBIN SYRUP', NULL, '8.0000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-07-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 (59406, 512, NULL, 9979, '49967696', 'SKYCLAV 1G', NULL, '13.9000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5000', '3.0000', '2022-07-18', '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 (59407, 512, NULL, 7435, '1355', 'CRESTOR 20', NULL, '8.2600', '11.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '231.2800', '0.0000', '2022-07-18', 'received', '8.2600', '8.2600', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '8.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 (59408, 512, NULL, 8106, '2026', 'CRESTOR 10', NULL, '4.7600', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '133.2800', '0.0000', '2022-07-18', 'received', '4.7600', '4.7600', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '4.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 (59409, 512, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '4.7600', '6.5000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '133.2800', '28.0000', '2022-07-18', 'received', '4.7600', '4.7600', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '4.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 (59410, 512, NULL, 8780, '2700', 'IMPRESSER OIL', NULL, '51.0000', '67.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2022-07-18', '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 (59411, 512, NULL, 8721, '2641', 'IMPRESSER CAPS', NULL, '25.5000', '34.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '4.0000', '2022-07-18', 'received', '25.5000', '25.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59412, 512, NULL, 7690, '1610', 'PREGASAFE 75', NULL, '18.2800', '24.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.6800', '0.0000', '2022-07-18', 'received', '18.2800', '18.2800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.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 (59413, 512, NULL, 9505, '13744415', 'WELLMAN PLUS', NULL, '74.9700', '100.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.9400', '0.0000', '2022-07-18', 'received', '74.9700', '74.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '74.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 (59414, 512, NULL, 7990, '1910', 'COX B', NULL, '16.0000', '21.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '1.0000', '2022-07-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 (59415, 512, NULL, 9103, '3023', 'JOINTFLEX PLUS TABS', NULL, '39.0000', '51.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-07-18', '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 (59416, 512, NULL, 8196, '2116', 'VISIONACE', NULL, '54.3900', '72.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '217.5600', '0.0000', '2022-07-18', 'received', '54.3900', '54.3900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '54.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 (59417, 512, NULL, 9978, '41917862', 'SUDAFED MUCUS TABLET', NULL, '42.0000', '55.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2022-07-18', '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 (59418, 512, NULL, 9977, '94594583', 'SUDAFED SINUS TABLET', NULL, '60.0000', '79.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '3.0000', '2022-07-18', 'received', '60.0000', '60.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (59419, 512, NULL, 9976, '94720727', 'SUDAFED MAX TABLET', NULL, '39.8000', '52.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.4000', '3.0000', '2022-07-18', 'received', '39.8000', '39.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '39.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 (59420, 512, NULL, 9974, '22017719', 'KD HONEY CAP', NULL, '12.0000', '16.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '7.0000', '2022-07-18', '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 (59421, 512, NULL, 9019, '2939', 'OVULATION TEST KIT', NULL, '8.0000', '11.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2022-07-18', 'received', '8.0000', '8.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (59422, NULL, NULL, 8649, '', '', 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 (59591, NULL, NULL, 9978, '', '', 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 (59592, NULL, NULL, 7512, '', '', 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 (59593, NULL, NULL, 2548, '', '', 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 (59594, NULL, NULL, 7542, '', '', 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 (59595, 514, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-07-22', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (59596, 514, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.4600', '0.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-07-22', 'received', '0.4600', '0.4600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (59597, 514, NULL, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.3000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-07-22', '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 (59598, 514, NULL, 8844, '2764', 'FEROFIX', NULL, '4.9900', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9700', '0.0000', '2022-07-22', 'received', '4.9900', '4.9900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59599, 514, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '45.6000', '60.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '0.0000', '2022-07-22', 'received', '45.6000', '45.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (59600, 514, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-07-22', 'received', '14.7000', '14.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (59601, 514, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.1000', '0.0000', '2022-07-22', 'received', '23.7000', '23.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (59602, 514, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2600', '1.0000', '2022-07-22', 'received', '15.6300', '15.6300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (59603, 514, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0000', '27.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-07-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 (59604, 514, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '42.4000', '56.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.2000', '0.0000', '2022-07-22', 'received', '42.4000', '42.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '42.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 (59605, 514, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2022-07-22', '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 (59606, 514, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1000', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '1.0000', '2022-07-22', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59607, 514, NULL, 8333, '2253', 'GUDAPET CAPS', NULL, '6.6000', '9.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2022-07-22', 'received', '6.6000', '6.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59608, 514, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '11.5800', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7400', '0.0000', '2022-07-22', 'received', '11.5800', '11.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (59609, 514, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-07-22', '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 (59610, 514, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '5.0000', '2022-07-22', '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 (59611, 514, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-07-22', '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 (59612, 514, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '2.0000', '2022-07-22', '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 (59613, 514, NULL, 9634, '38899153', 'FLUXAMOX CAPS 500MG', NULL, '5.4000', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-07-22', 'received', '5.4000', '5.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59614, 514, NULL, 7586, '1506', 'EMGIFLOX SUSP', NULL, '6.0000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-07-22', '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 (59615, 514, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.9000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.6000', '0.0000', '2022-07-22', 'received', '2.9000', '2.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59616, 514, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '7.7000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8000', '1.0000', '2022-07-22', 'received', '7.7000', '7.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59617, 514, NULL, 2311, '90764208', 'PREGNACARE 19', NULL, '60.3000', '80.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.3000', '0.0000', '2022-07-22', 'received', '60.3000', '60.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '60.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 (59618, 514, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.0000', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-07-22', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (59619, 514, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '9.0000', '2022-07-22', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59620, 514, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '4.0000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-07-22', '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 (59621, 514, NULL, 1885, 'PR-598', 'SALICYLIC OINT', NULL, '6.6000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-07-22', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59622, 514, NULL, 9959, '13716082', 'LUMIZAP 80/480MG TABLET', NULL, '5.8800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '6.0000', '2022-07-22', 'received', '5.8800', '5.8800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59623, 514, NULL, 9968, '79716492', 'HYDROCORTISONE 1%CREAM LAVINA', NULL, '4.9000', '6.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '7.0000', '2022-07-22', 'received', '4.9000', '4.9000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (59624, 514, NULL, 9759, '55914769', 'CANDID V GEL 30G', NULL, '19.6800', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.3600', '1.0000', '2022-07-22', 'received', '19.6800', '19.6800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.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 (59625, 515, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5000', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '43.0000', '2022-07-22', '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 (59626, 515, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '4.5600', '6.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '12.0000', '2022-07-22', 'received', '4.5600', '4.5600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (59627, 515, NULL, 9711, '79932934', 'NORMAL SALINE DROP (MANDANOL)', NULL, '5.2800', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '7.0000', '2022-07-22', '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 (59628, 515, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '16.0000', '2022-07-22', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59629, 515, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '9.0000', '2022-07-22', '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 (59630, 515, NULL, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '6.3800', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.8000', '10.0000', '2022-07-22', 'received', '6.3800', '6.3800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (59631, 515, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '135.6500', '179.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.6500', '1.0000', '2022-07-22', 'received', '135.6500', '135.6500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '135.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 (59632, 515, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '135.6500', '179.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.6500', '1.0000', '2022-07-22', 'received', '135.6500', '135.6500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '135.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 (59633, 515, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '2.0000', '2022-07-22', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59634, 515, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.7200', '2.5000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.9600', '17.0000', '2022-07-22', 'received', '1.7200', '1.7200', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '1.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 (59635, 515, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.6500', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.5000', '40.0000', '2022-07-22', 'received', '2.6500', '2.6500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59636, 515, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '4.0000', '2022-07-22', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59637, 515, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '45.2100', '60.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.8400', '0.0000', '2022-07-22', 'received', '45.2100', '45.2100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '45.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 (59638, 515, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '7.2000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-07-22', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59639, 515, NULL, 9981, '25293625', 'GLIMEPINDE 4MG TAB 30\'S TEVA', NULL, '14.0000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2022-07-22', '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 (59640, 515, NULL, 9980, '96021412', 'SECNIDAZOLE 1G TAB (LAVINA)', NULL, '4.6000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '5.0000', '2022-07-22', '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 (59641, NULL, NULL, 9757, '', '', 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 (59642, 508, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '7.4000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2022-07-04', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59643, 508, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '2.0000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-07-04', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59644, 508, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.5000', '5.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-07-04', '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 (59645, 508, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-07-04', '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 (59646, 508, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.8300', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '0.0000', '2022-07-04', 'received', '3.8300', '3.8300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (59647, 508, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.5000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '9.0000', '2022-07-04', '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 (59648, 508, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '3.8000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '0.0000', '2022-07-04', 'received', '3.8000', '3.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (59649, 508, NULL, 8743, '2663', 'CERES DRINK', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-07-04', '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 (59650, 508, NULL, 8745, '2665', 'DON SIMON', NULL, '14.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-07-04', '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 (59651, 508, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-07-04', '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 (59652, 508, NULL, 8955, '2875', 'OCEAN SPRAY BOTTLE', NULL, '18.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2022-07-04', '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 (59653, 508, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '17.5000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-07-04', 'received', '17.5000', '17.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59654, 508, NULL, 8933, '2853', 'RED BULL', NULL, '8.8300', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '0.0000', '2022-07-04', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59655, 508, NULL, 9213, '3133', 'ROX DRINKS', NULL, '6.4000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '5.0000', '2022-07-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 (59656, 508, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.0000', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-07-04', '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 (59657, 508, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '15.5000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2022-07-04', '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 (59658, 508, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '8.3000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-07-04', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (59659, 508, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '1.0000', '2022-07-04', 'received', '3.8000', '3.8000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (59660, 508, NULL, 8759, '2679', 'FRUTELLI', NULL, '10.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-07-04', '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 (59661, 508, NULL, 8770, '2690', 'DON SANGRIA', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-07-04', '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 (59662, 508, NULL, 9468, '27739747', 'PARMALAT  1KG', NULL, '22.0000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-07-04', '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 (59663, 508, NULL, 9472, '82987566', 'PARMALAT DRINK S/S', NULL, '12.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-07-04', '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 (59664, 508, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '15.0000', '2022-07-04', 'received', '6.0000', '6.0000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (59665, 508, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '2.3000', '3.5000', '72.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.6000', '0.0000', '2022-07-04', 'received', '2.3000', '2.3000', '72.0000', NULL, NULL, 1, 'pc', '72.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 (59666, 508, NULL, 9832, '55392512', 'BISCOVERY BISCUITS ', NULL, '2.1000', '3.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2022-07-04', 'received', '2.1000', '2.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (59667, 508, NULL, 8413, '2333', 'COAFS', NULL, '90.0000', '120.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '2.0000', '2022-07-04', '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 (59668, 508, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '0.0000', '2022-07-04', 'received', '6.0000', '6.0000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (59669, 508, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2022-07-04', 'received', '1.4500', '1.4500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (59670, 508, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.2000', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-07-04', 'received', '1.2000', '1.2000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (59671, 508, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '5.5000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2022-07-04', '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 (59672, 508, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '18.0000', '22.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '0.0000', '2022-07-04', 'received', '18.0000', '18.0000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (59673, 508, NULL, 2754, '10737671', 'PLASTER STRIPS 100\'S', NULL, '0.0800', '0.2000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0800', '0.0000', '2022-07-04', 'received', '0.0800', '0.0800', '1.0000', NULL, NULL, 1, 'pc', '1.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 (59674, 508, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '18.0000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-07-04', '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 (59675, 508, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '17.0000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-07-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 (59676, 508, NULL, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-07-04', '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 (59677, 508, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '12.5000', '16.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.5000', '6.0000', '2022-07-04', 'received', '12.5000', '12.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (59678, 508, NULL, 2231, '7501058633927', 'NAN 2', NULL, '45.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-07-04', '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 (59679, 508, NULL, 2567, '83596243', 'NAN 1', NULL, '45.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-07-04', '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 (59680, 508, NULL, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '19.5000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2022-07-04', '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 (59681, 508, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '19.0000', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '1.0000', '2022-07-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 (59682, 508, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '19.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-07-04', '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 (59683, 508, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '19.0000', '22.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-07-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 (59684, 508, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '12.5000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2022-07-04', '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 (59685, 508, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '17.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-07-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 (59686, 508, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '6.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-07-04', '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 (59687, 508, NULL, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '4.0000', '6.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-07-04', '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 (59688, 508, NULL, 8059, '1979', 'PROPER PAD', NULL, '8.7000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.2000', '3.0000', '2022-07-04', 'received', '8.7000', '8.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59689, 508, NULL, 9532, '43814251', 'KEL CHARCOAL TOOTH PASTE', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-07-04', '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 (59690, 508, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '8.3000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2022-07-04', 'received', '8.3000', '8.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (59691, 508, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '13.5000', '18.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-07-04', '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 (59692, 508, NULL, 7722, '1642', 'ALWAYS DOUBLE', NULL, '15.0000', '18.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-07-04', '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 (59693, 508, NULL, 9936, '34037196', 'ADULT DIAPER PUREFIT', NULL, '45.0000', '55.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-07-04', '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 (59694, 508, NULL, 9938, '6455560', 'ADULT DIAPER PUREFIT', NULL, '45.0000', '55.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-07-04', '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 (59695, 508, NULL, 9937, '09558515', 'ADULT DIAPER SLEEPY', NULL, '45.0000', '55.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-07-04', '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 (59696, 508, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-07-04', '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 (59697, 508, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '5.0000', '2022-07-04', '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 (59698, 508, NULL, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '8.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-07-04', '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 (59699, 508, NULL, 3024, '02807617', 'COLGATE CHARCOAL PASTE', NULL, '10.5000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-07-04', '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 (59700, 508, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '8.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-07-04', '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 (59701, 508, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '13.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-07-04', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59702, 508, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '33.0000', '37.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '3.0000', '2022-07-04', 'received', '33.0000', '33.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59703, 508, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '33.0000', '37.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2022-07-04', 'received', '33.0000', '33.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (59704, 508, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '8.5000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-07-04', '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 (59705, 508, NULL, 9972, '79584555', 'ADULT DIAPER PREDO', NULL, '45.0000', '55.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-07-04', '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 (59706, 508, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.2000', '1.5000', '32.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2022-07-04', 'received', '1.2000', '1.2000', '32.0000', NULL, NULL, 1, 'pc', '32.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 (59707, 508, NULL, 9751, '95396700', 'BEL AQUA MEDIUM', NULL, '1.2000', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '7.0000', '2022-07-04', 'received', '1.2000', '1.2000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (59708, NULL, NULL, 1703, '', '', 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 (59709, NULL, NULL, 1470, '', '', 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 (59710, NULL, NULL, 7574, '', '', 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 (59711, NULL, NULL, 7504, '', '', 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 (59712, NULL, NULL, 8158, '', '', 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 (59713, NULL, NULL, 7690, '', '', 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 (59714, NULL, NULL, 3045, '', '', 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 (59715, NULL, NULL, 9505, '', '', 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 (59716, NULL, NULL, 7614, '', '', 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 (59817, NULL, NULL, 9633, '', '', 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 (59818, NULL, NULL, 8396, '', '', 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 (59819, NULL, NULL, 2983, '', '', 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 (59820, NULL, NULL, 9931, '', '', 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 (59821, NULL, NULL, 9264, '', '', 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 (59822, NULL, NULL, 7639, '', '', 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 (59823, NULL, NULL, 9626, '', '', 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 (59824, NULL, NULL, 7494, '', '', 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 (59825, NULL, NULL, 8641, '', '', 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 (59826, NULL, NULL, 7920, '', '', 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 (59827, NULL, NULL, 8866, '', '', 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 (59828, NULL, NULL, 2937, '', '', 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 (59829, NULL, NULL, 8390, '', '', 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 (59830, NULL, NULL, 1968, '', '', 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 (59831, NULL, NULL, 8785, '', '', 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 (59832, 517, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-07-28', '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 (59833, 517, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '2.9000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-07-28', '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 (59834, 517, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.8000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-07-28', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (59835, 517, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-07-28', '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 (59836, 517, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '7.0000', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-07-28', '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 (59837, 517, NULL, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '1.6000', '2.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-07-28', 'received', '1.6000', '1.6000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (59838, 517, NULL, 9330, '3250', 'APETATRUST', NULL, '10.5000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '1.0000', '2022-07-28', '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 (59839, 517, NULL, 3059, '98695319', 'INDOMETHACIN', NULL, '0.5000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '33.0000', '2022-07-28', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59840, 517, NULL, 9636, '72421421', 'BENYLIN MUCUS MAX 150ML', NULL, '57.0000', '75.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.0000', '3.0000', '2022-07-28', '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 (59841, 517, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '6.0000', '2022-07-28', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59842, 517, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '45.0000', '2022-07-28', '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 (59843, 517, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '10.8000', '14.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-07-28', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59844, 517, NULL, 8165, '2085', 'CARBOZAP JUNIOR', NULL, '4.7000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-07-28', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59845, 517, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '3.0000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-07-28', '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 (59846, 517, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '3.1000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '0.0000', '2022-07-28', 'received', '3.1000', '3.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59847, 517, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS 0.05%', NULL, '26.6200', '35.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.2400', '0.0000', '2022-07-28', 'received', '26.6200', '26.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (59848, 517, NULL, 9959, '13716082', 'LUMIZAP 80/480MG TABLET', NULL, '5.8800', '8.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.1600', '6.0000', '2022-07-28', 'received', '5.8800', '5.8800', '7.0000', NULL, NULL, 1, 'pc', '7.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 (59849, 517, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '206.4000', '24.0000', '2022-07-28', 'received', '1.7200', '1.7200', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '1.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 (59850, 517, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-07-28', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59851, 517, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '0.0000', '2022-07-28', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59852, 517, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.9000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '1.0000', '2022-07-28', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (59853, 517, NULL, 9030, '2950', 'EPICIPRIN', NULL, '12.9000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2022-07-28', '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 (59854, 517, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '16.9000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '0.0000', '2022-07-28', 'received', '16.9000', '16.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (59855, 517, NULL, 2070, '014', 'CHLO EYE ', NULL, '3.0000', '4.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '2.0000', '2022-07-28', 'received', '3.0000', '3.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59856, 517, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '10.7000', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.5000', '0.0000', '2022-07-28', 'received', '10.7000', '10.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59857, 517, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '11.8000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-07-28', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59858, 517, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '18.0000', '24.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-07-28', '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 (59859, 517, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-07-28', '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 (59860, 517, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-07-28', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59861, 517, NULL, 2244, '96089977', 'MAGACID SYRUP 200ML', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-07-28', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59862, 517, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.1000', '30.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3000', '1.0000', '2022-07-28', 'received', '23.1000', '23.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (59863, 517, NULL, 8017, '1937', 'SALOCOLD TAB', NULL, '0.6000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '11.0000', '2022-07-28', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59864, 517, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.5000', '0.0000', '2022-07-28', 'received', '3.0500', '3.0500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59865, 517, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '31.0000', '2022-07-28', 'received', '1.6000', '1.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59866, 517, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '10.6000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '0.0000', '2022-07-28', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59867, 517, NULL, 9508, '43167014', 'SIMPLE LINCTUS ADULT COUGH', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-07-28', '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 (59868, 517, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '11.1000', '15.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '1.0000', '2022-07-28', 'received', '11.1000', '11.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (59869, 517, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '417.6000', '0.0000', '2022-07-28', 'received', '17.4000', '17.4000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (59870, 517, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '5.5000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '4.0000', '2022-07-28', '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 (59871, 517, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '11.8000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '0.0000', '2022-07-28', 'received', '11.8000', '11.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59872, 517, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.7000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '0.0000', '2022-07-28', '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 (59873, 517, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8900', '1.0000', '2022-07-28', 'received', '15.6300', '15.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (59874, 517, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3000', '0.0000', '2022-07-28', 'received', '4.0300', '4.0300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (59875, 517, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.7000', '0.0000', '2022-07-28', 'received', '4.7000', '4.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (59876, 517, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.7300', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '1.0000', '2022-07-28', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (59877, 517, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '0.0000', '2022-07-28', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (59878, 517, NULL, 3056, '13783530', 'WELLMAN 50+ CAPS', NULL, '62.3000', '82.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.6000', '0.0000', '2022-07-28', 'received', '62.3000', '62.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '62.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 (59879, 517, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '7.0000', '2022-07-28', 'received', '2.5500', '2.5500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (59880, 517, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-07-28', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59881, 517, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '4.4000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-07-28', '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 (59882, 517, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.8200', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.4000', '12.0000', '2022-07-28', 'received', '0.8200', '0.8200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (59883, 517, NULL, 9902, '14298485', 'CELECOXIB 200MG OER STRIP', NULL, '7.9300', '11.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.3700', '0.0000', '2022-07-28', 'received', '7.9300', '7.9300', '9.0000', NULL, NULL, 1, 'pc', '9.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 (59884, 517, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-07-28', '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 (59885, 517, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.8000', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-07-28', '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 (59886, 517, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.8200', '0.0000', '2022-07-28', 'received', '9.4700', '9.4700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (59887, 517, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '6.9000', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.7000', '0.0000', '2022-07-28', 'received', '6.9000', '6.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (59888, 517, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '2.0000', '2022-07-28', 'received', '0.5900', '0.5900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.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 (59889, 517, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '0.0000', '2022-07-28', 'received', '2.8000', '2.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59890, 517, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '0.0000', '2022-07-28', '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 (59891, 517, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-07-28', '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 (59892, 517, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '2.3000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2022-07-28', 'received', '2.3000', '2.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59893, 517, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-07-28', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (59894, 517, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '50.0000', '2022-07-28', 'received', '1.5400', '1.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (59895, 517, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.3800', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '3.0000', '2022-07-28', 'received', '0.3800', '0.3800', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (59896, 517, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '28.0000', '2022-07-28', '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 (59897, 517, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '10.0000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-07-28', '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 (59898, 517, NULL, 9720, '41639032', 'ANCIGEL SUSP', NULL, '10.6000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.6000', '1.0000', '2022-07-28', 'received', '10.6000', '10.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (59899, 517, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-07-28', '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 (59900, 517, NULL, 2986, '39982987', 'PANACIN TAB', NULL, '0.7700', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.4000', '13.0000', '2022-07-28', 'received', '0.7700', '0.7700', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59901, 517, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '0.0000', '2022-07-28', '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 (59902, 517, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '25.5000', '34.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-07-28', 'received', '25.5000', '25.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59903, 517, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '51.0000', '68.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-07-28', '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 (59904, 517, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '10.6000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '0.0000', '2022-07-28', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59905, 517, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '9.4000', '12.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '0.0000', '2022-07-28', 'received', '9.4000', '9.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.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 (59906, 517, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '65.0000', '2022-07-28', 'received', '1.5400', '1.5400', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '1.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 (59907, 517, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-07-28', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (59908, 517, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '0.0000', '2022-07-28', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (59909, 517, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '16.9000', '22.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.0000', '0.0000', '2022-07-28', 'received', '16.9000', '16.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (59910, 517, NULL, 9959, '13716082', 'LUMIZAP 80/480MG TABLET', NULL, '5.8800', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '3.0000', '2022-07-28', '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 (59911, 517, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-07-28', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59912, 517, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '3.0000', '2022-07-28', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (59913, NULL, NULL, 1669, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (59914, NULL, NULL, 9566, '', '', 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 (59915, NULL, NULL, 8665, '', '', 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 (59929, NULL, NULL, 9802, '', '', 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 (59943, NULL, NULL, 1720, '', '', 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 (59944, NULL, NULL, 9503, '', '', 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 (59945, 518, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '6.2400', '8.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '0.0000', '2022-07-29', 'received', '6.2400', '6.2400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (59946, 518, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '5.0000', '2022-07-29', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59947, 518, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '7.8000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2022-07-29', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59948, 518, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '11.8000', '16.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2000', '4.0000', '2022-07-29', 'received', '11.8000', '11.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (59949, 518, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.7000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.7000', '0.0000', '2022-07-29', 'received', '8.7000', '8.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (59950, 518, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '5.0000', '2022-07-29', '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 (59951, 518, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '17.0000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '3.0000', '2022-07-29', '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 (59952, 518, NULL, 9633, '58280884', 'fluconazole 150mg (TEVA)', NULL, '7.2000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-07-29', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59953, 518, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '19.0000', '2022-07-29', '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 (59954, 518, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '48.0000', '2022-07-29', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59955, 518, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '76.0000', '2022-07-29', '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 (59956, 518, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1500', '0.0000', '2022-07-29', 'received', '4.0300', '4.0300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (59957, 518, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2022-07-29', '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 (59958, 518, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.6000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '5.0000', '2022-07-29', '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 (59959, 518, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '2.0000', '2022-07-29', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59960, 518, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-07-29', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59961, 518, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '2.0000', '2022-07-29', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59962, 518, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '23.0000', '2022-07-29', 'received', '0.5900', '0.5900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (59963, 518, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '6.0000', '2022-07-29', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59964, 518, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.5000', '16.0000', '2022-07-29', 'received', '3.0500', '3.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (59965, 518, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '49.0000', '2022-07-29', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (59966, 518, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.9200', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '41.0000', '2022-07-29', 'received', '1.9200', '1.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (59967, 518, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '7.6300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.3000', '3.0000', '2022-07-29', 'received', '7.6300', '7.6300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.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 (59968, 518, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '10.9000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '2.0000', '2022-07-29', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59969, 518, NULL, 2327, '66319646', 'MR Q', NULL, '3.8000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '11.0000', '2022-07-29', 'received', '3.8000', '3.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59970, 518, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '50.0000', '2022-07-29', '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 (59971, 518, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '50.0000', '2022-07-29', 'received', '1.5400', '1.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (59972, 518, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.2000', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '20.0000', '2022-07-29', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (59973, 518, NULL, 8498, '2418', 'DIPROSIN', NULL, '3.1500', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '1.0000', '2022-07-29', '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 (59974, 518, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.1900', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '12.0000', '2022-07-29', 'received', '1.1900', '1.1900', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.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 (59975, 518, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-07-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 (59976, 518, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.9000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '6.0000', '2022-07-29', '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 (59977, 518, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.3200', '0.0000', '2022-07-29', 'received', '1.7200', '1.7200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '1.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 (59978, 518, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '2.1800', '3.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '26.0000', '2022-07-29', 'received', '2.1800', '2.1800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (59979, 518, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2800', '2.0000', '2022-07-29', 'received', '8.6400', '8.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (59980, 518, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '17.8000', '23.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.0000', '1.0000', '2022-07-29', 'received', '17.8000', '17.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59981, 518, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '18.0000', '2022-07-29', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (59982, 518, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '6.0000', '2022-07-29', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (59983, 518, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '3.0000', '2022-07-29', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59984, 518, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '14.5000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '4.0000', '2022-07-29', '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 (59985, 518, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '6.1300', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6500', '1.0000', '2022-07-29', 'received', '6.1300', '6.1300', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59986, 518, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9600', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '6.0000', '2022-07-29', 'received', '3.9600', '3.9600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (59987, 518, NULL, 2068, '79519848', 'LUFART DS', NULL, '14.8500', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '2.0000', '2022-07-29', 'received', '14.8500', '14.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (59988, 518, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '5.0000', '2022-07-29', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (59989, 518, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.3000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5000', '4.0000', '2022-07-29', 'received', '8.3000', '8.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (59990, 518, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '1.0000', '2022-07-29', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (59991, 518, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '5.0000', '2022-07-29', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (59992, 518, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-07-29', '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 (59993, 518, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2000', '0.0000', '2022-07-29', 'received', '7.1000', '7.1000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (59994, 518, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '5.5000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5000', '0.0000', '2022-07-29', '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 (59995, 518, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '41.6000', '55.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.2000', '0.0000', '2022-07-29', 'received', '41.6000', '41.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (59996, 518, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '45.6000', '60.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '0.0000', '2022-07-29', 'received', '45.6000', '45.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (59997, 518, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.0000', '4.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '58.0000', '2022-07-29', 'received', '3.0000', '3.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (59998, 518, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-07-29', '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 (59999, 518, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.8000', '3.7000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-07-29', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (60000, 518, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '2.8000', '3.7000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '9.0000', '2022-07-29', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60001, 518, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-07-29', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60002, 518, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '6.8000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '4.0000', '2022-07-29', 'received', '6.8000', '6.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60003, 518, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '41.6300', '55.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.2600', '2.0000', '2022-07-29', 'received', '41.6300', '41.6300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.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 (60004, 518, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2100', '3.0000', '2022-07-29', 'received', '10.0700', '10.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (60005, 518, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-07-29', '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 (60006, 518, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-07-29', '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 (60007, 518, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '11.8000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-07-29', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60008, 518, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '3.0000', '2022-07-29', 'received', '17.3000', '17.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60009, 518, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-07-29', '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 (60010, 518, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.4000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-07-29', 'received', '3.4000', '3.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60011, 518, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-07-29', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60012, 518, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '2.0000', '2022-07-29', '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 (60013, 518, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '9.5800', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.9000', '4.0000', '2022-07-29', 'received', '9.5800', '9.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (60014, 518, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.7300', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '4.0000', '2022-07-29', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (60015, 518, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '18.0000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-07-29', '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 (60016, 518, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-07-29', '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 (60017, 518, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '18.0000', '2022-07-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 (60018, 518, NULL, 3034, '33733514', 'ARABA BAZAN', NULL, '19.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '1.0000', '2022-07-29', '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 (60019, 518, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '10.0000', '2022-07-29', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60020, 518, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-07-29', '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 (60021, 518, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '24.5000', '32.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.5000', '3.0000', '2022-07-29', 'received', '24.5000', '24.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60022, 518, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '4.0000', '2022-07-29', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60023, 518, NULL, 9800, '38973491', 'GANA BALM B/S', NULL, '14.0000', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2022-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 (60024, 518, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.2000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2022-07-29', '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 (60025, 518, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '60.0000', '80.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2022-07-29', 'received', '60.0000', '60.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60026, 518, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS 0.05%', NULL, '26.6200', '35.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.2400', '0.0000', '2022-07-29', 'received', '26.6200', '26.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (60027, 518, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '28.6000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '2.0000', '2022-07-29', 'received', '28.6000', '28.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (60028, 518, NULL, 9915, '10239227', 'LUZATIL 20/120MG', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2022-07-29', '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 (60029, 518, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2022-07-29', '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 (60030, 518, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-07-29', '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 (60031, 518, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '8.0000', '2022-07-29', '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 (60032, 518, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.8000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '41.0000', '2022-07-29', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60033, 518, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.9100', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '42.0000', '2022-07-29', 'received', '0.9100', '0.9100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (60034, 518, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.1200', '24.0000', '2022-07-29', 'received', '2.0400', '2.0400', '28.0000', NULL, NULL, 1, 'pc', '28.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 (60035, 518, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-07-29', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60036, 518, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '135.6500', '179.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '271.3000', '2.0000', '2022-07-29', 'received', '135.6500', '135.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '135.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 (60037, 518, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.5600', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '44.0000', '2022-07-29', 'received', '1.5600', '1.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (60038, 518, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '21.6500', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.3000', '1.0000', '2022-07-29', 'received', '21.6500', '21.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (60039, 518, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '24.5000', '32.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-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 (60040, 518, NULL, 7644, '1564', 'CYTOTEC', NULL, '4.4800', '10.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '268.8000', '56.0000', '2022-07-29', 'received', '4.4800', '4.4800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '4.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 (60041, 518, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '9.0000', '2022-07-29', '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 (60042, 518, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.6000', '19.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '4.0000', '2022-07-29', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60043, 518, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '25.5000', '34.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2022-07-29', 'received', '25.5000', '25.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60044, 518, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '51.0000', '68.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2022-07-29', '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 (60045, 518, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '186.8000', '246.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '373.6000', '1.0000', '2022-07-29', 'received', '186.8000', '186.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '186.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 (60046, 518, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '135.6500', '179.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '271.3000', '1.0000', '2022-07-29', 'received', '135.6500', '135.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '135.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 (60047, 518, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-07-29', '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 (60048, 518, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '7.0000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '7.0000', '2022-07-29', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60049, 518, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-07-29', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60050, 518, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '5.7000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2022-07-29', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (60051, 518, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '2.6500', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.5000', '11.0000', '2022-07-29', 'received', '2.6500', '2.6500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60052, 518, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '18.9000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2022-07-29', 'received', '18.9000', '18.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (60053, 518, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '15.6300', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8900', '0.0000', '2022-07-29', 'received', '15.6300', '15.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (60054, 518, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '16.5900', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7700', '1.0000', '2022-07-29', 'received', '16.5900', '16.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (60055, 518, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '11.8000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '0.0000', '2022-07-29', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60056, 518, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '3.0000', '2022-07-29', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60057, 518, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '18.7300', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6500', '0.0000', '2022-07-29', 'received', '18.7300', '18.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (60058, 518, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.2000', '3.0000', '2022-07-29', 'received', '29.4000', '29.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60059, 518, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '6.3200', '8.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.4000', '5.0000', '2022-07-29', 'received', '6.3200', '6.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (60060, 518, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '37.7200', '50.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '452.6400', '3.0000', '2022-07-29', 'received', '37.7200', '37.7200', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '37.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 (60061, 518, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.0500', '6.0000', '2022-07-29', 'received', '10.0700', '10.0700', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '10.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 (60062, 518, NULL, 2935, '15629840', 'LUEX ADULT CHESTY COUGH', NULL, '15.0000', '20.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-07-29', '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 (60063, 518, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '5.0000', '2022-07-29', 'received', '0.6600', '0.6600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (60064, 518, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '25.0000', '2022-07-29', 'received', '0.6600', '0.6600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (60065, 518, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '9.0000', '2022-07-29', '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 (60066, 518, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-07-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 (60067, 518, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '1.0000', '2022-07-29', '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 (60068, 518, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '10.4000', '14.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6000', '0.0000', '2022-07-29', 'received', '10.4000', '10.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.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 (60069, 518, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS 0.05%', NULL, '26.6200', '35.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '133.1000', '2.0000', '2022-07-29', 'received', '26.6200', '26.6200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '26.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 (60070, 518, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '248.0000', '4.0000', '2022-07-29', 'received', '49.6000', '49.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '49.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 (60071, 518, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '18.3300', '24.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.6500', '5.0000', '2022-07-29', 'received', '18.3300', '18.3300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (60072, 518, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-07-29', '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 (60073, 518, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.6000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '3.0000', '2022-07-29', '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 (60074, 518, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '13.0000', '2022-07-29', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60075, 518, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '9.0000', '2022-07-29', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (60076, 518, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '1.0000', '2022-07-29', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (60077, 518, NULL, 9891, '16911229', 'TOBCEE FORTE VITAMIN C 100MG', NULL, '17.4000', '23.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.8000', '0.0000', '2022-07-29', 'received', '17.4000', '17.4000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (60078, 518, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '75.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '44.0000', '2022-07-29', 'received', '1.5400', '1.5400', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '1.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 (60079, 518, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '22.9000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.5000', '4.0000', '2022-07-29', 'received', '22.9000', '22.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (60080, 518, NULL, 1636, '4031571069116', 'VIT-B DENK', NULL, '14.2100', '19.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '284.2000', '20.0000', '2022-07-29', 'received', '14.2100', '14.2100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.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 (60081, 518, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.8000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '100.0000', '2022-07-29', 'received', '0.4700', '0.4700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60082, 518, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-07-29', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60083, 518, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '5.3000', '7.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '265.0000', '50.0000', '2022-07-29', 'received', '5.3000', '5.3000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60084, 518, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '25.9000', '34.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '1.0000', '2022-07-29', '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 (60085, 518, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '3.0000', '2022-07-29', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60086, 518, NULL, 7641, '1561', 'LYDIA', NULL, '8.5000', '11.5000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-07-29', 'received', '8.5000', '8.5000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (60087, 518, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.3000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '3.0000', '2022-07-29', '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 (60088, 518, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '2.6000', '4.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '2.0000', '2022-07-29', '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 (60089, 518, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '7.6300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.3000', '10.0000', '2022-07-29', 'received', '7.6300', '7.6300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.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 (60090, 518, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-07-29', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60091, 518, NULL, 1910, 'PR-623', 'Apc 10 x 10', NULL, '1.1600', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '19.0000', '2022-07-29', 'received', '1.1600', '1.1600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (60092, 518, NULL, 9973, '05115075', 'FLUCOR DAY GEL', NULL, '17.6000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '5.0000', '2022-07-29', 'received', '17.6000', '17.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (60093, 518, NULL, 9968, '79716492', 'HYDROCORTISONE 1%CREAM LAVINA', NULL, '4.9000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '3.0000', '2022-07-29', '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 (60094, 513, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '41.6000', '55.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '249.6000', '2.0000', '2022-07-21', 'received', '41.6000', '41.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '41.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 (60095, 513, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '16.6000', '22.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '2.0000', '2022-07-21', 'received', '16.6000', '16.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (60096, 513, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '1.0000', '2022-07-21', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60097, 513, NULL, 8011, '1931', 'SALO COLD SRP', NULL, '7.5000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-07-21', 'received', '7.5000', '7.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60098, 513, NULL, 9609, '47724870', 'MALIN BABY PLUS SYRUP', NULL, '9.1000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '4.0000', '2022-07-21', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (60099, 513, NULL, 7682, '1602', 'FLEMEX ADULT', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '3.0000', '2022-07-21', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60100, 513, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3500', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '12.0000', '2022-07-21', 'received', '1.3500', '1.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60101, 513, NULL, 7777, '1697', 'GRISON', NULL, '12.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '0.0000', '2022-07-21', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60102, 513, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '4.9000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '4.0000', '2022-07-21', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60103, 513, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '20.3000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.5000', '1.0000', '2022-07-21', 'received', '20.3000', '20.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (60104, 513, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '3.0000', '2022-07-21', '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 (60105, 513, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '8.8000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '6.0000', '2022-07-21', '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 (60106, 513, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-07-21', '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 (60107, 513, NULL, 7621, '1541', 'METAGYL SRP', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-07-21', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60108, 513, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '19.5000', '26.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '2.0000', '2022-07-21', '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 (60109, 513, NULL, 8005, '1925', 'ADDYZOA', NULL, '58.0000', '76.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2022-07-21', 'received', '58.0000', '58.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60110, 513, NULL, 7989, '1909', 'WELLWOMAN PLUS', NULL, '45.2100', '60.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.4200', '0.0000', '2022-07-21', 'received', '45.2100', '45.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.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 (60111, 513, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '39.3000', '52.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.3000', '0.0000', '2022-07-21', 'received', '39.3000', '39.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '39.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 (60112, 513, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '6.3200', '8.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.4000', '6.0000', '2022-07-21', 'received', '6.3200', '6.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (60113, 513, NULL, 8597, '2517', 'WELLWOMAN MAX', NULL, '60.1800', '79.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.3600', '2.0000', '2022-07-21', 'received', '60.1800', '60.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.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 (60114, 513, NULL, 7401, '1321', 'WELLBABY MULTI-VIT LIQ', NULL, '74.3000', '98.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.3000', '0.0000', '2022-07-21', 'received', '74.3000', '74.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '74.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 (60115, 513, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '10.7000', '14.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '0.0000', '2022-07-21', '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 (60116, 513, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '11.8000', '16.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.8000', '3.0000', '2022-07-21', 'received', '11.8000', '11.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60117, 513, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '2.0800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '7.0000', '2022-07-21', 'received', '2.0800', '2.0800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (60118, 513, NULL, 7925, '1845', 'NEXCOFER B/S', NULL, '9.9000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '3.0000', '2022-07-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 (60119, 513, NULL, 8813, '2733', 'FERROUS SULPHATE', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-07-21', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60120, 513, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '7.7000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.6000', '4.0000', '2022-07-21', 'received', '7.7000', '7.7000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (60121, 513, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '7.7000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.6000', '6.0000', '2022-07-21', 'received', '7.7000', '7.7000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (60122, 513, NULL, 7358, '1278', 'BELLS CHILDREN,S COUGH', NULL, '14.5000', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '2.0000', '2022-07-21', '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 (60123, 513, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '5.0000', '2022-07-21', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60124, 513, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7600', '3.7000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2022-07-21', '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 (60125, 513, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '7.1500', '9.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9000', '3.0000', '2022-07-21', 'received', '7.1500', '7.1500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.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 (60126, 513, NULL, 7708, '1628', 'TEEDAR', NULL, '8.3000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '3.0000', '2022-07-21', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (60127, 513, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '7.0000', '2022-07-21', '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 (60128, 513, NULL, 7641, '1561', 'LYDIA', NULL, '7.2000', '11.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-07-21', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60129, 513, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '60.0000', '2022-07-21', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60130, 513, NULL, 8164, '2084', 'OTRIVIN CHILD', NULL, '26.6200', '35.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.2400', '1.0000', '2022-07-21', 'received', '26.6200', '26.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (60131, 513, NULL, 7637, '1557', 'MAJOR EPHEDRINE', NULL, '8.1400', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.7000', '5.0000', '2022-07-21', 'received', '8.1400', '8.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (60132, 513, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.5000', '13.0000', '2022-07-21', 'received', '9.3500', '9.3500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (60133, 513, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.3000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '0.0000', '2022-07-21', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60134, 513, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-07-21', '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 (60135, 513, NULL, 9204, '3124', 'NESBEN TAB 200MG', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2022-07-21', '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 (60136, 513, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '29.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.3000', '0.0000', '2022-07-21', 'received', '21.6500', '21.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.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 (60137, 513, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '30.4000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '0.0000', '2022-07-21', 'received', '30.4000', '30.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.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 (60138, 513, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '29.8000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.4000', '0.0000', '2022-07-21', 'received', '29.8000', '29.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.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 (60139, 513, NULL, 7632, '1552', 'CIPROLEX TAB', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '2.0000', '2022-07-21', '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 (60140, 513, NULL, 8622, '2542', 'DEXONE', NULL, '1.4900', '2.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.4500', '1.0000', '2022-07-21', 'received', '1.4900', '1.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.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 (60141, 513, NULL, 7671, '1591', 'PARA UK', NULL, '1.7000', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-07-21', 'received', '1.7000', '1.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60142, 513, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.8000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '22.0000', '2022-07-21', '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 (60143, 513, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.5000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '34.0000', '2022-07-21', 'received', '1.4000', '1.4000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (60144, 513, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.4600', '0.7000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '63.0000', '2022-07-21', 'received', '0.4600', '0.4600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (60145, 513, NULL, 7780, '1700', 'LUFART TAB', NULL, '14.8500', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.2500', '0.0000', '2022-07-21', 'received', '14.8500', '14.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (60146, 513, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '3.0000', '2022-07-21', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60147, 513, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '5.0000', '2022-07-21', '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 (60148, 513, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '41.0000', '2022-07-21', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (60149, 513, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.8800', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '20.0000', '2022-07-21', 'received', '2.8800', '2.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (60150, 513, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2500', '3.0000', '2022-07-21', 'received', '8.2500', '8.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (60151, 513, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-07-21', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60152, 513, NULL, 7634, '1554', 'CIPROLEX EYE DROP', NULL, '10.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '4.0000', '2022-07-21', '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 (60153, 513, NULL, 7753, '1673', 'ZULU', NULL, '3.7800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '2.0000', '2022-07-21', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60154, 513, NULL, 7666, '1586', 'DYMOL TAB', NULL, '4.9000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '5.0000', '2022-07-21', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60155, 513, NULL, 7859, '1779', 'KOFLET', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-07-21', '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 (60156, 513, NULL, 9320, '3240', 'HONEYKOF HERBAL COUGH SYRUP', NULL, '11.8000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '2.0000', '2022-07-21', 'received', '11.8000', '11.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60157, 513, NULL, 7523, '1443', 'VISCOF S', NULL, '12.0400', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.2000', '3.0000', '2022-07-21', 'received', '12.0400', '12.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (60158, 513, NULL, 7522, '1442', 'VISCOF D', NULL, '12.0400', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.2000', '3.0000', '2022-07-21', 'received', '12.0400', '12.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (60159, 513, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1500', '4.0000', '2022-07-21', 'received', '4.0300', '4.0300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (60160, 513, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '4.1000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-07-21', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60161, 513, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '5.2000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-07-21', '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 (60162, 513, NULL, 9508, '43167014', 'SIMPLE LINCTUS ADULT COUGH', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2022-07-21', '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 (60163, 513, NULL, 9880, '56162993', 'LINCTUS JUNIOR SYR', NULL, '4.9000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-07-21', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60164, 513, NULL, 8040, '1960', 'ACTIFED TAB', NULL, '14.9000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '2.0000', '2022-07-21', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (60165, 513, NULL, 9847, '00996864', 'GERICARE CAPS', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-07-21', '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 (60166, 513, NULL, 1955, '4014852751801', 'PROCOMIL TABLET', NULL, '1.6700', '2.2000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.1000', '30.0000', '2022-07-21', 'received', '1.6700', '1.6700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (60167, 513, NULL, 9105, '3025', 'GASTRONE TAB', NULL, '2.1600', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '8.0000', '2022-07-21', 'received', '2.1600', '2.1600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (60168, 513, NULL, 7639, '1559', 'JET 2', NULL, '6.5000', '8.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-07-21', '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 (60169, 513, NULL, 9209, '3129', 'CETRIZAN 10MG', NULL, '5.7500', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7500', '5.0000', '2022-07-21', 'received', '5.7500', '5.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60170, 513, NULL, 7810, '1730', 'KINGDOM G BITS', NULL, '14.6000', '19.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2022-07-21', '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 (60171, 513, NULL, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '2.8000', '4.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4000', '1.0000', '2022-07-21', 'received', '2.8000', '2.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60172, 513, NULL, 9981, '25293625', 'GLIMEPINDE 4MG TAB 30\'S TEVA', NULL, '14.0000', '18.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2022-07-21', '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 (60173, 513, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '7.0000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '6.0000', '2022-07-21', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60174, 513, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '65.8000', '87.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.4000', '1.0000', '2022-07-21', 'received', '65.8000', '65.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '65.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 (60175, 513, NULL, 7900, '1820', 'ERNEST OINT', NULL, '3.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-07-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 (60176, 513, NULL, 8753, '2673', 'GANA BALM', NULL, '5.2000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '4.0000', '2022-07-21', '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 (60177, 513, NULL, 8913, '2833', 'LAVET', NULL, '15.0000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-07-21', '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 (60178, 513, NULL, 7809, '1729', 'MIGHTY P S\'S', NULL, '13.5000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-07-21', '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 (60179, 513, NULL, 7834, '1754', 'SOLAK MIX', NULL, '13.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-07-21', '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 (60180, 513, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '13.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2022-07-21', '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 (60181, 513, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-07-21', 'received', '1.4000', '1.4000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (60182, 513, NULL, 8721, '2641', 'IMPRESSER CAPS', NULL, '25.5000', '34.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '3.0000', '2022-07-21', 'received', '25.5000', '25.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60183, NULL, NULL, 9572, '', '', 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 (60184, 516, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '8.5000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-07-25', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60185, 516, NULL, 8061, '1981', 'CHOCOLATE', NULL, '8.0000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-07-25', '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 (60186, 516, NULL, 8415, '2335', 'CHOCOLATE M/S', NULL, '4.0000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '20.0000', '2022-07-25', '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 (60187, 516, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-07-25', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (60188, 516, NULL, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', NULL, '6.5000', '8.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '1.0000', '2022-07-25', 'received', '6.5000', '6.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (60189, 516, NULL, 7847, '1767', 'COLGATE TRIP ACTN', NULL, '8.5000', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '1.0000', '2022-07-25', '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 (60190, 516, NULL, 8882, '2802', 'KIDS BRUSH COLG', NULL, '5.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-07-25', '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 (60191, 516, NULL, 7888, '1808', 'LIVING BIT SRP', NULL, '19.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-07-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 (60192, 516, NULL, 7808, '1728', 'MIGHTY P B/S', NULL, '15.5000', '20.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '1.0000', '2022-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 (60193, 516, NULL, 7834, '1754', 'SOLAK MIX', NULL, '13.0000', '17.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '1.0000', '2022-07-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 (60194, 516, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '13.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2022-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 (60195, 516, NULL, 7730, '1650', 'MENTOS FRESH ACTION', NULL, '0.1900', '0.2000', '180.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '88.0000', '2022-07-25', 'received', '0.1900', '0.1900', '180.0000', NULL, NULL, 1, 'pc', '180.0000', NULL, NULL, NULL, NULL, '0.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 (60196, 516, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '34.8000', '46.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-07-25', 'received', '34.8000', '34.8000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '34.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 (60197, 516, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '9.0000', '2022-07-25', 'received', '6.0000', '6.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (60198, NULL, NULL, 9824, '', '', 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 (60199, NULL, NULL, 9961, '', '', 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 (60200, NULL, NULL, 8717, '', '', 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 (60201, NULL, NULL, 8591, '', '', 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 (60202, NULL, NULL, 9290, '', '', 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 (60203, NULL, NULL, 9886, '', '', 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 (60204, NULL, NULL, 3064, '', '', 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 (60205, NULL, NULL, 7716, '', '', 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 (60206, NULL, NULL, 7983, '', '', 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 (60207, NULL, NULL, 9142, '', '', 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 (60208, NULL, NULL, 3006, '', '', 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 (60209, NULL, NULL, 7629, '', '', 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 (60210, NULL, NULL, 7665, '', '', 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 (60211, NULL, NULL, 3079, '', '', 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 (60212, NULL, NULL, 9988, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60213, NULL, NULL, 9988, '', '', 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 (60214, NULL, NULL, 7879, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (60215, NULL, NULL, 7564, '', '', 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 (60216, NULL, NULL, 7929, '', '', 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 (60217, NULL, NULL, 9581, '', '', 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 (60218, NULL, NULL, 2619, '', '', 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 (60219, 519, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '29.2000', '38.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.2000', '0.0000', '2022-08-04', 'received', '29.2000', '29.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60220, 519, NULL, 9867, '87882090', 'CELEBREX PER CAPS', NULL, '9.4000', '12.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '282.0000', '8.0000', '2022-08-04', 'received', '9.4000', '9.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '9.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 (60221, 519, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '0.0000', '2022-08-04', '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 (60222, 519, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '5.5000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-08-04', '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 (60223, 519, NULL, 9804, '36365929', 'COLD NASO NASAL', NULL, '3.0500', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '6.0000', '2022-08-04', 'received', '3.0500', '3.0500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60224, 519, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '5.7000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4000', '1.0000', '2022-08-04', 'received', '5.7000', '5.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.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 (60225, 519, NULL, 9513, '46545234', 'GLUCO NAF C', NULL, '11.6000', '15.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.2000', '2.0000', '2022-08-04', 'received', '11.6000', '11.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (60226, 519, NULL, 7318, '1238', 'LONART SUSP', NULL, '12.8000', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2022-08-04', 'received', '12.8000', '12.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (60227, 519, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '6.3200', '8.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.4000', '0.0000', '2022-08-04', 'received', '6.3200', '6.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (60228, 519, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6700', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '0.0000', '2022-08-04', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (60229, 519, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '6.6700', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '3.0000', '2022-08-04', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (60230, 519, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '8.8200', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4600', '0.0000', '2022-08-04', 'received', '8.8200', '8.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (60231, 519, NULL, 1699, 'PR-412', 'LEENA CAPS', NULL, '4.0200', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2022-08-04', '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 (60232, 519, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1000', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-08-04', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60233, 519, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '4.4000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-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 (60234, 519, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-08-04', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60235, 519, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '14.7600', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5200', '0.0000', '2022-08-04', 'received', '14.7600', '14.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (60236, 519, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '11.9800', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9000', '0.0000', '2022-08-04', 'received', '11.9800', '11.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (60237, 519, NULL, 8622, '2542', 'DEXONE', NULL, '1.4900', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '0.0000', '2022-08-04', 'received', '1.4900', '1.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (60238, 519, NULL, 9947, '97967472', 'STOPKOF DRY COUGH ADULT', NULL, '8.5000', '11.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2022-08-04', '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 (60239, 519, NULL, 3020, '56022580', 'ARZIGLOBIN SYR', NULL, '11.9900', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9500', '2.0000', '2022-08-04', 'received', '11.9900', '11.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (60240, 519, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '11.5800', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7400', '0.0000', '2022-08-04', 'received', '11.5800', '11.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (60241, 519, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '40.0000', '53.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2022-08-04', 'received', '40.0000', '40.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60242, 519, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '5.3000', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.0000', '0.0000', '2022-08-04', 'received', '5.3000', '5.3000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60243, 519, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '9.0600', '12.0000', '32.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '289.9200', '16.0000', '2022-08-04', 'received', '9.0600', '9.0600', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '9.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 (60244, 519, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '186.8000', '247.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '560.4000', '1.0000', '2022-08-04', 'received', '186.8000', '186.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '186.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 (60245, 519, NULL, 9985, '69709139', 'ESKARON SYR', NULL, '5.8000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '2.0000', '2022-08-04', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60246, 519, NULL, 9956, '45562069', 'SKYCEF 500MG TABLET', NULL, '15.9500', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.7500', '2.0000', '2022-08-04', 'received', '15.9500', '15.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (60247, 519, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '99.3000', '131.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '297.9000', '1.0000', '2022-08-04', 'received', '99.3000', '99.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '99.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 (60248, 519, NULL, 3045, '00432970', 'CETRIZAN SYRUP 60ML', NULL, '4.6000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-08-04', '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 (60249, 519, NULL, 9953, '21608860', 'ARZIGLOBIN PLUS SYR', NULL, '8.9000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '1.0000', '2022-08-04', 'received', '8.9000', '8.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (60250, 519, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '9.6000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-08-04', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60251, 519, NULL, 9945, '60409156', 'AZIROCIN SUSP', NULL, '12.1000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5000', '0.0000', '2022-08-04', 'received', '12.1000', '12.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (60252, 519, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '9.5000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2022-08-04', '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 (60253, 519, NULL, 8661, '2581', 'SKYBRU', NULL, '5.6000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2022-08-04', 'received', '5.6000', '5.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60254, 519, NULL, 9988, '55139424', 'JET2 COLD CAPS', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '4.0000', '2022-08-04', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60255, 519, NULL, 9507, '99862596', 'BENYLIN CHESTY COUGH', NULL, '56.0000', '74.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '2.0000', '2022-08-04', '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 (60256, 519, NULL, 3010, '81744974', 'ZIRTEK SOLUTION', NULL, '59.9000', '79.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.8000', '2.0000', '2022-08-04', 'received', '59.9000', '59.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (60257, 519, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '11.5000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-08-04', 'received', '11.5000', '11.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60258, 519, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '3.2000', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-08-04', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60259, 519, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-08-04', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60260, 519, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-08-04', 'received', '0.4100', '0.4100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60261, 519, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '26.0000', '2022-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 (60262, 519, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '2.3000', '3.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2022-08-04', '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 (60263, 519, NULL, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '3.5000', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '12.0000', '2022-08-04', '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 (60264, 519, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '10.5000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-08-04', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60265, 519, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.8000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-08-04', '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 (60266, 519, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-08-04', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60267, 519, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '7.4000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2022-08-04', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60268, 519, NULL, 7922, '1842', 'BABY COU LINC', NULL, '5.2000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '2.0000', '2022-08-04', 'received', '5.2000', '5.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60269, 519, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '6.2000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2022-08-04', '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 (60270, 519, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '6.4000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-08-04', 'received', '6.4000', '6.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60271, 519, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '14.5000', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '1.0000', '2022-08-04', '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 (60272, 519, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '5.4000', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '20.0000', '2022-08-04', 'received', '5.4000', '5.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60273, 519, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '56.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.2400', '0.0000', '2022-08-04', 'received', '2.0400', '2.0400', '56.0000', NULL, NULL, 1, 'pc', '56.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 (60274, 519, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '2.2200', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '0.0000', '2022-08-04', 'received', '2.2200', '2.2200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (60275, 519, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-08-04', '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 (60276, 519, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-08-04', '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 (60277, 519, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '0.0000', '2022-08-04', 'received', '17.3000', '17.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60278, 519, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '29.4000', '39.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '294.0000', '5.0000', '2022-08-04', 'received', '29.4000', '29.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60279, 519, NULL, 9979, '49967696', 'SKYCLAV 1G', NULL, '13.9000', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5000', '0.0000', '2022-08-04', '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 (60280, 519, NULL, 9946, '04292515', 'SKYCLAV  625', NULL, '13.9000', '19.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5000', '0.0000', '2022-08-04', '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 (60281, 519, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '7.8000', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '0.0000', '2022-08-04', '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 (60282, 519, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '9.3600', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '0.0000', '2022-08-04', 'received', '9.3600', '9.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60283, 519, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '12.5000', '16.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-08-04', '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 (60284, 519, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.2000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '1.0000', '2022-08-04', 'received', '3.2000', '3.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60285, 519, NULL, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '3.0000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-08-04', '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 (60286, 519, NULL, 2985, '92371428', 'FLAGYL SUSP 200ML', NULL, '39.3000', '52.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.9000', '3.0000', '2022-08-04', 'received', '39.3000', '39.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '39.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 (60287, 519, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-08-04', '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 (60288, 519, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.0000', '4.0000', '2022-08-04', 'received', '14.9000', '14.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (60289, 519, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '20.1300', '26.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.7800', '0.0000', '2022-08-04', 'received', '20.1300', '20.1300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.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 (60290, 519, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '2.1700', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.5000', '16.0000', '2022-08-04', 'received', '2.1700', '2.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (60291, 519, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-08-04', '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 (60292, 519, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-08-04', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60293, 519, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '13.2000', '17.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '1.0000', '2022-08-04', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60294, 519, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.4000', '0.0000', '2022-08-04', 'received', '18.9000', '18.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60295, 519, NULL, 2311, '90764208', 'PREGNACARE 19', NULL, '60.3000', '80.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.6000', '1.0000', '2022-08-04', 'received', '60.3000', '60.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.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 (60296, 519, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '108.1000', '143.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.2000', '0.0000', '2022-08-04', 'received', '108.1000', '108.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '108.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 (60297, 519, NULL, 9849, '39512404', 'DICLOLEX POWER HEAT GEL', NULL, '5.9000', '8.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3000', '7.0000', '2022-08-04', 'received', '5.9000', '5.9000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (60298, 519, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-08-04', '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 (60299, 519, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.6000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '4.0000', '2022-08-04', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60300, 519, NULL, 1922, '8904185507342', 'Blopen gel BG-138', NULL, '3.0000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-08-04', '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 (60301, 519, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-08-04', '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 (60302, 519, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '0.0000', '2022-08-04', 'received', '2.5500', '2.5500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (60303, 519, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '16.9000', '22.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-08-04', 'received', '16.9000', '16.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (60304, 519, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-08-04', 'received', '22.0000', '22.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60305, 519, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2500', '0.0000', '2022-08-04', 'received', '8.2500', '8.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (60306, 519, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2022-08-04', '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 (60307, 519, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-08-04', '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 (60308, 519, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-08-04', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (60309, 519, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.7000', '6.0000', '2022-08-04', 'received', '9.4700', '9.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (60310, 519, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '8.0000', '2022-08-04', 'received', '0.5900', '0.5900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (60311, 519, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '2.7500', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-08-04', 'received', '2.7500', '2.7500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60312, 519, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '17.0000', '2022-08-04', 'received', '1.4300', '1.4300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (60313, 519, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-08-04', '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 (60314, 519, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-08-04', '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 (60315, 519, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.7100', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.1000', '0.0000', '2022-08-04', 'received', '4.7100', '4.7100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (60316, 519, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-08-04', 'received', '0.7700', '0.7700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60317, 519, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2022-08-04', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60318, 519, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '14.8100', '20.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '444.3000', '0.0000', '2022-08-04', 'received', '14.8100', '14.8100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '14.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 (60319, 519, NULL, 1910, 'PR-623', 'Apc 10 x 10', NULL, '1.2200', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4000', '0.0000', '2022-08-04', 'received', '1.2200', '1.2200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60320, 519, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '21.1700', '28.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.0200', '0.0000', '2022-08-04', 'received', '21.1700', '21.1700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '21.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 (60321, 519, NULL, 8046, '1966', 'TRANEXAMIC ACID', NULL, '16.8000', '28.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-04', 'received', '16.8000', '16.8000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (60322, 519, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.5000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-08-04', '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 (60323, 519, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-08-04', 'received', '1.5400', '1.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (60324, 519, NULL, 9824, '52927057', 'THYMAIR LOZ', NULL, '12.4300', '16.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.3000', '0.0000', '2022-08-04', 'received', '12.4300', '12.4300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '12.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 (60325, 519, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.7200', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '0.0000', '2022-08-04', 'received', '1.7200', '1.7200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (60326, 519, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '0.0000', '2022-08-04', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60327, 519, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '10.0000', '2022-08-04', 'received', '5.2000', '5.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60328, 519, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-08-04', '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 (60329, 519, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '5.5000', '8.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-08-04', '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 (60330, 519, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '2.3000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2022-08-04', 'received', '2.3000', '2.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60331, 519, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2022-08-04', 'received', '7.2000', '7.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60332, 519, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '16.9000', '22.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '676.0000', '0.0000', '2022-08-04', 'received', '16.9000', '16.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '16.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 (60333, 519, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '49.6000', '65.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.4000', '0.0000', '2022-08-04', 'received', '49.6000', '49.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.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 (60334, 519, NULL, 2108, '85249693', 'ARFAN 20/120MG', NULL, '5.5000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-08-04', '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 (60335, 519, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '3.1000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '0.0000', '2022-08-04', 'received', '3.1000', '3.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60336, 519, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '2.8000', '3.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '0.0000', '2022-08-04', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60337, 519, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.9200', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2022-08-04', 'received', '1.9200', '1.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (60338, 519, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '2.1800', '3.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '0.0000', '2022-08-04', 'received', '2.1800', '2.1800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60339, 519, NULL, 1616, 'PR-329', 'GACET SUPP 250MG', NULL, '0.7300', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '20.0000', '2022-08-04', '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 (60340, 519, NULL, 1455, 'PR-168', 'Gacet125MP KIACK006', NULL, '0.5500', '0.8000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '8.0000', '2022-08-04', '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 (60341, 519, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '7.0000', '9.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-08-04', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (60342, 519, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '26.5000', '35.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '1.0000', '2022-08-04', 'received', '26.5000', '26.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60343, 519, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '5.3500', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7500', '0.0000', '2022-08-04', 'received', '5.3500', '5.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (60344, 519, NULL, 9529, '46893863', 'BENZYL BENZOATE 25% EXETER', NULL, '11.8000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '0.0000', '2022-08-04', 'received', '11.8000', '11.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60345, 519, NULL, 1965, '8902501008139', 'HYDROCORTISSONE CREAM 1%  CO-PHARMA', NULL, '16.2000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2000', '0.0000', '2022-08-04', 'received', '16.2000', '16.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60346, 519, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-08-04', '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 (60347, 519, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3000', '0.0000', '2022-08-04', 'received', '4.0300', '4.0300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (60348, 519, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '42.4000', '56.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.2000', '0.0000', '2022-08-04', 'received', '42.4000', '42.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '42.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 (60349, 519, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '16.1000', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.6000', '0.0000', '2022-08-04', '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 (60350, 519, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '16.6000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.6000', '0.0000', '2022-08-04', 'received', '16.6000', '16.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (60351, 519, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '24.5000', '32.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.5000', '1.0000', '2022-08-04', 'received', '24.5000', '24.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60352, 519, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-08-04', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60353, 519, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '6.2400', '8.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.8000', '0.0000', '2022-08-04', 'received', '6.2400', '6.2400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (60354, 519, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-08-04', '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 (60355, 519, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.7000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.2000', '0.0000', '2022-08-04', 'received', '8.7000', '8.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60356, 519, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '9.1500', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7500', '3.0000', '2022-08-04', 'received', '9.1500', '9.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (60357, 519, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '30.8700', '41.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.6100', '0.0000', '2022-08-04', 'received', '30.8700', '30.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.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 (60358, 519, NULL, 9921, '29778181', 'HEMOFORCE PLUS SYR', NULL, '6.6500', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2500', '0.0000', '2022-08-04', 'received', '6.6500', '6.6500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60359, 519, NULL, 9927, '05772370', 'HEMOFORCE FAMILY SYR', NULL, '6.6500', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.2500', '0.0000', '2022-08-04', 'received', '6.6500', '6.6500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60360, 519, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.4600', '0.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-08-04', 'received', '0.4600', '0.4600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (60361, 519, NULL, 1808, '8906045432597', 'VITAFORCE SYRUP', NULL, '18.9000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '0.0000', '2022-08-04', 'received', '18.9000', '18.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (60362, 519, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '7.0000', '9.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '0.0000', '2022-08-04', 'received', '7.0000', '7.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (60363, 519, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.8000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '2.0000', '2022-08-04', 'received', '33.8000', '33.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (60364, NULL, NULL, 8490, '', '', 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 (60365, NULL, NULL, 8937, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-61.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60366, NULL, NULL, 8851, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (60367, NULL, NULL, 7871, '', '', 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 (60368, NULL, NULL, 2417, '', '', 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 (60369, NULL, NULL, 9957, '', '', 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 (60370, NULL, NULL, 8772, '', '', 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 (60371, NULL, NULL, 7840, '', '', 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 (60372, NULL, NULL, 2816, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60373, NULL, NULL, 9076, '', '', 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 (60374, NULL, NULL, 1983, '', '', 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 (60375, NULL, NULL, 9665, '', '', 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 (60376, NULL, NULL, 3010, '', '', 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 (60377, NULL, NULL, 8616, '', '', 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 (60378, NULL, NULL, 8223, '', '', 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 (60379, 520, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '13.5000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '3.0000', '2022-08-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 (60380, 520, NULL, 7520, '1440', 'SULPHUR OINT', NULL, '7.2000', '9.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '1.0000', '2022-08-09', 'received', '7.2000', '7.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60381, 520, NULL, 7556, '1476', 'OLFEN GEL 50GM', NULL, '25.0000', '33.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2022-08-09', '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 (60382, 520, NULL, 8339, '2259', 'SUDOCREAM 60G', NULL, '26.5000', '34.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '3.0000', '2022-08-09', 'received', '26.5000', '26.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60383, 520, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '13.3000', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '2.0000', '2022-08-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 (60384, 520, NULL, 7886, '1806', 'ABONIKI', NULL, '4.5000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '6.0000', '2022-08-09', '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 (60385, 520, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '22.9000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '0.0000', '2022-08-09', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (60386, 520, NULL, 7880, '1800', 'VAGINAX PESS', NULL, '3.2000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-08-09', 'received', '3.2000', '3.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60387, 520, NULL, 7347, '1267', 'PILEX OINT', NULL, '21.9000', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.7000', '2.0000', '2022-08-09', 'received', '21.9000', '21.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (60388, 520, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.7000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '63.0000', '2022-08-09', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (60389, 520, NULL, 7411, '1331', 'CITRO C', NULL, '1.4000', '2.5000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '48.0000', '2022-08-09', 'received', '1.4000', '1.4000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (60390, 520, NULL, 7483, '1403', 'ORS', NULL, '0.7400', '1.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '75.0000', '2022-08-09', 'received', '0.7400', '0.7400', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '0.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 (60391, 520, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '0.0000', '2022-08-09', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (60392, 520, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '54.0000', '2022-08-09', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60393, 520, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.7200', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.2000', '44.0000', '2022-08-09', 'received', '1.7200', '1.7200', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (60394, 520, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '2.0000', '2022-08-09', '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 (60395, 520, NULL, 8462, '2382', 'GARLIC PEARLS OSONS', NULL, '7.1000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '3.0000', '2022-08-09', '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 (60396, 520, NULL, 7890, '1810', 'TINATETT MALAKARE', NULL, '17.6000', '23.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '1.0000', '2022-08-09', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (60397, 520, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.1000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3000', '3.0000', '2022-08-09', 'received', '23.1000', '23.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (60398, 520, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '10.0000', '2022-08-09', '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 (60399, 520, NULL, 7442, '1362', 'CASTOR OIL', NULL, '11.8000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '4.0000', '2022-08-09', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60400, 520, NULL, 9507, '99862596', 'BENYLIN CHESTY COUGH', NULL, '56.0000', '74.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '2.0000', '2022-08-09', 'received', '56.0000', '56.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60401, 520, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '40.0000', '53.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '5.0000', '2022-08-09', 'received', '40.0000', '40.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60402, 520, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.5100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2022-08-09', 'received', '3.5100', '3.5100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60403, 520, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '99.3000', '131.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.3000', '1.0000', '2022-08-09', 'received', '99.3000', '99.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '99.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 (60404, 520, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '246.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '0.0000', '2022-08-09', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (60405, 520, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '9.6000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '3.0000', '2022-08-09', '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 (60406, 520, NULL, 8825, '2745', 'AZILEX SUSP', NULL, '17.5000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-08-09', '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 (60407, 520, NULL, 9988, '55139424', 'JET2 COLD CAPS', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2022-08-09', '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 (60408, 520, NULL, 7401, '1321', 'WELLBABY MULTI-VIT LIQ', NULL, '74.3000', '98.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.3000', '0.0000', '2022-08-09', 'received', '74.3000', '74.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '74.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 (60409, 520, NULL, 9534, '61300947', 'KIDIVITE BABY SYRUP', NULL, '19.8900', '26.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6700', '2.0000', '2022-08-09', 'received', '19.8900', '19.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (60410, 520, NULL, 7526, '1446', 'ZINCOVIT SRP', NULL, '15.6300', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.1500', '0.0000', '2022-08-09', 'received', '15.6300', '15.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (60411, 520, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '8.5600', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1200', '1.0000', '2022-08-09', 'received', '8.5600', '8.5600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (60412, 520, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.9500', '34.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9500', '1.0000', '2022-08-09', 'received', '25.9500', '25.9500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '25.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 (60413, 520, NULL, 7606, '1526', 'PERMOXL SRP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '9.0000', '2022-08-09', '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 (60414, 520, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-08-09', '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 (60415, 520, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.9100', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0000', '72.0000', '2022-08-09', 'received', '0.9100', '0.9100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (60416, 520, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '10.0700', '13.5000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.6300', '6.0000', '2022-08-09', 'received', '10.0700', '10.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.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 (60417, 520, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '8.0000', '2022-08-09', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60418, 520, NULL, 7885, '1805', 'DIFLUCAN', NULL, '81.2000', '107.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.2000', '0.0000', '2022-08-09', 'received', '81.2000', '81.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '81.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 (60419, 520, NULL, 7651, '1571', 'RHIZINE SRP', NULL, '3.1000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '1.0000', '2022-08-09', 'received', '3.1000', '3.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60420, 520, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '29.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.9000', '4.0000', '2022-08-09', 'received', '21.6500', '21.6500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '21.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 (60421, 520, NULL, 7557, '1477', 'DICLO INJ', NULL, '0.6800', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2022-08-09', 'received', '0.6800', '0.6800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (60422, 520, NULL, 7881, '1801', 'FENBASE', NULL, '2.7500', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2022-08-09', 'received', '2.7500', '2.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60423, 520, NULL, 7562, '1482', 'IBEX', NULL, '7.6300', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7800', '6.0000', '2022-08-09', 'received', '7.6300', '7.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.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 (60424, 520, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '15.0000', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '7.0000', '2022-08-09', '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 (60425, 520, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3000', '10.0000', '2022-08-09', 'received', '1.4300', '1.4300', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60426, 520, NULL, 9902, '14298485', 'CELECOXIB 200MG OER STRIP', NULL, '7.9300', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7900', '3.0000', '2022-08-09', 'received', '7.9300', '7.9300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (60427, 520, NULL, 7576, '1496', 'SOLUBLE ASP', NULL, '2.7500', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-08-09', 'received', '2.7500', '2.7500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60428, 520, NULL, 7634, '1554', 'CIPROLEX EYE DROP', NULL, '10.0000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-08-09', '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 (60429, 520, NULL, 3010, '81744974', 'ZIRTEK SOLUTION', NULL, '59.9000', '79.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9000', '0.0000', '2022-08-09', '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 (60430, 520, NULL, 8016, '1936', 'ZIRTEK SLN', NULL, '59.9000', '79.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9000', '0.0000', '2022-08-09', '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 (60431, 520, NULL, 7379, '1299', 'TEETHING MIXTURE ERNEST', NULL, '9.4000', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '7.0000', '2022-08-09', 'received', '9.4000', '9.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (60432, 520, NULL, 7993, '1913', 'PERFECTIL PLATINUM', NULL, '55.0000', '73.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '3.0000', '2022-08-09', 'received', '55.0000', '55.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60433, 520, NULL, 7848, '1768', 'EASYLIFE VIT C', NULL, '19.5000', '26.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '214.5000', '0.0000', '2022-08-09', 'received', '19.5000', '19.5000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (60434, 520, NULL, 9016, '2936', 'VALUPAK VIT E 400', NULL, '30.0000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-08-09', '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 (60435, 520, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.3000', '18.0000', '2022-08-09', 'received', '9.3500', '9.3500', '18.0000', NULL, NULL, 1, 'pc', '18.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 (60436, 520, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.3000', '7.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.5000', '20.0000', '2022-08-09', 'received', '5.3000', '5.3000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (60437, 520, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-08-09', '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 (60438, 520, NULL, 7474, '1394', 'KOFOF BABY', NULL, '3.4000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6000', '2.0000', '2022-08-09', 'received', '3.4000', '3.4000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60439, 520, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '29.4000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '2.0000', '2022-08-09', 'received', '29.4000', '29.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60440, 520, NULL, 8337, '2257', 'PANADOL ADVANCE', NULL, '17.8000', '23.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6000', '1.0000', '2022-08-09', '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 (60441, 520, NULL, 8413, '2333', 'COAFS', NULL, '82.5000', '120.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '0.0000', '2022-08-09', 'received', '82.5000', '82.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '82.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60442, 520, NULL, 7613, '1533', 'FEMFRESH', NULL, '12.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '3.0000', '2022-08-09', '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 (60443, 520, NULL, 7417, '1337', 'DALACIN 300MG ORIGINAL', NULL, '9.6300', '13.0000', '16.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0800', '16.0000', '2022-08-09', 'received', '9.6300', '9.6300', '16.0000', NULL, NULL, 1, 'pc', '16.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 (60444, 520, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '4.5600', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '2.0000', '2022-08-09', 'received', '4.5600', '4.5600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (60445, 520, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '8.7800', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '7.0000', '2022-08-09', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (60446, 520, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '4.0000', '2022-08-09', '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 (60447, 520, NULL, 9290, '3210', 'LUBRIMAX JELLY 50G', NULL, '17.4000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2022-08-09', '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 (60448, 520, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '25.9000', '34.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '1.0000', '2022-08-09', '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 (60449, 520, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1500', '2.0000', '2022-08-09', 'received', '3.6300', '3.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.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 (60450, 520, NULL, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', NULL, '15.8000', '21.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.6000', '1.0000', '2022-08-09', 'received', '15.8000', '15.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (60451, 520, NULL, 9248, '3168', 'VALUPAK VIT C 500MG CHEWABLE', NULL, '20.0000', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-08-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 (60452, 520, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '5.0000', '2022-08-09', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (60453, 520, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-08-09', '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 (60454, 520, NULL, 8164, '2084', 'OTRIVIN CHILD', NULL, '26.6200', '35.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.2400', '1.0000', '2022-08-09', 'received', '26.6200', '26.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (60455, 520, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '6.9000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '5.0000', '2022-08-09', '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 (60456, 520, NULL, 7367, '1287', 'ATORVASTATIN20MG', NULL, '9.8000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '1.0000', '2022-08-09', '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 (60457, 520, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-08-09', 'received', '1.5000', '1.5000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (60458, 520, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '8.8200', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '1.0000', '2022-08-09', 'received', '8.8200', '8.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (60459, 520, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '2.8000', '4.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '68.0000', '2022-08-09', 'received', '2.8000', '2.8000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60460, 520, NULL, 7608, '1528', 'AUNTY MARY', NULL, '9.4700', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3500', '2.0000', '2022-08-09', 'received', '9.4700', '9.4700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (60461, 520, NULL, 7535, '1455', 'SAMAILN ADULT', NULL, '7.5000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-08-09', 'received', '7.5000', '7.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60462, 520, NULL, 8077, '1997', 'MYCOSTAT', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-08-09', '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 (60463, 520, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '5.5000', '7.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '5.0000', '2022-08-09', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (60464, 520, NULL, 7778, '1698', 'BECOATIN SRP', NULL, '11.5000', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '0.0000', '2022-08-09', 'received', '11.5000', '11.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60465, 520, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '246.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '0.0000', '2022-08-09', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (60466, 520, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '16.6000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '4.0000', '2022-08-09', 'received', '16.6000', '16.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (60467, 520, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '16.0000', '2022-08-09', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (60468, 520, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-08-09', '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 (60469, 520, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.9000', '20.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.4000', '2.0000', '2022-08-09', 'received', '14.9000', '14.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.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 (60470, 520, NULL, 7608, '1528', 'AUNTY MARY', NULL, '9.4700', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3500', '5.0000', '2022-08-09', 'received', '9.4700', '9.4700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (60471, 520, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '8.0000', '2022-08-09', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60472, 520, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '1.9000', '2.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '11.0000', '2022-08-09', 'received', '1.9000', '1.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (60473, 520, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '2.8000', '4.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '8.0000', '2022-08-09', '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 (60474, 520, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-08-09', '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 (60475, 520, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2022-08-09', '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 (60476, 520, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '24.5000', '32.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-08-09', '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 (60477, 520, NULL, 7883, '1803', 'EVECARE', NULL, '33.8000', '45.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-08-09', 'received', '33.8000', '33.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (60478, 520, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2022-08-09', 'received', '3.0000', '3.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (60479, 520, NULL, 7862, '1782', 'GLUCOSE', NULL, '5.7000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-08-09', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (60480, 520, NULL, 9271, '3191', 'LETAFEN SUSPENSION', NULL, '1.9000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-08-09', 'received', '1.9000', '1.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60481, 520, NULL, 7736, '1656', 'NUGEL -O', NULL, '20.1300', '27.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.7800', '5.0000', '2022-08-09', 'received', '20.1300', '20.1300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.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 (60482, 520, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.9000', '6.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '12.0000', '2022-08-09', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (60483, 520, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '4.0000', '2022-08-09', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (60484, 520, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '22.8000', '30.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '0.0000', '2022-08-09', 'received', '22.8000', '22.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '22.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 (60485, 520, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '42.4000', '56.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '0.0000', '2022-08-09', 'received', '42.4000', '42.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '42.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 (60486, 520, NULL, 7333, '1253', 'MR Q', NULL, '3.8000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2022-08-09', 'received', '3.8000', '3.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60487, 520, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '2.0000', '2022-08-09', '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 (60488, 520, NULL, 7664, '1584', 'DUROL ADULT', NULL, '9.1500', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7500', '4.0000', '2022-08-09', 'received', '9.1500', '9.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (60489, 520, NULL, 8194, '2114', 'MALIN JUNIOR', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-08-09', '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 (60490, 520, NULL, 9716, '88662203', 'EMGIPROFEN  SUSP 100ML', NULL, '5.3000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '10.0000', '2022-08-09', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60491, 520, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '12.0000', '2022-08-09', '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 (60492, 520, NULL, 7412, '1332', 'COLODIUM', NULL, '2.2000', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '17.0000', '2022-08-09', '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 (60493, 520, NULL, 7623, '1543', 'NIGHT NURSE CAPS', NULL, '47.0000', '62.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '1.0000', '2022-08-09', 'received', '47.0000', '47.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60494, 520, NULL, 7375, '1295', 'AXACEF 500', NULL, '5.3000', '7.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.0000', '30.0000', '2022-08-09', '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 (60495, 520, NULL, 8167, '2087', 'ENACIN 300', NULL, '9.3600', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7200', '0.0000', '2022-08-09', 'received', '9.3600', '9.3600', '2.0000', NULL, NULL, 1, 'pc', '2.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 (60496, 520, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '3.0000', '2022-08-09', '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 (60497, 520, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '65.8000', '87.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.6000', '0.0000', '2022-08-09', 'received', '65.8000', '65.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '65.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 (60498, 520, NULL, 9953, '21608860', 'ARZIGLOBIN PLUS SYR', NULL, '8.9000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '0.0000', '2022-08-09', 'received', '8.9000', '8.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (60499, 520, NULL, 9988, '55139424', 'JET2 COLD CAPS', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '10.0000', '2022-08-09', '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 (60500, 520, NULL, 9685, '3434209', 'ACTIFED MULTI ACTION TABS 12\'S', NULL, '46.0000', '61.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.0000', '0.0000', '2022-08-09', '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 (60501, 520, NULL, 7781, '1701', 'PENICILLIN TAB', NULL, '0.9800', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-08-09', 'received', '0.9800', '0.9800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (60502, 520, NULL, 7585, '1505', 'EPIDERM 30G', NULL, '4.2400', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4000', '0.0000', '2022-08-09', 'received', '4.2400', '4.2400', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60503, 520, NULL, 7666, '1586', 'DYMOL TAB', NULL, '4.9000', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '12.0000', '2022-08-09', '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 (60504, 520, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.0000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '9.0000', '2022-08-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 (60505, 520, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '11.0000', '2022-08-09', 'received', '6.0000', '6.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (60506, NULL, NULL, 1561, '', '', 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 (60507, 521, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '14.0000', '18.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '4.0000', '2022-08-09', '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 (60508, 521, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '12.5000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-08-09', '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 (60509, 521, NULL, 9471, '85188534', 'CATUABA DRINK', NULL, '15.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-08-09', '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 (60510, 521, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.5000', '6.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '10.0000', '2022-08-09', '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 (60511, 521, NULL, 9469, '40088756', 'PANACHE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2022-08-09', '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 (60512, 521, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.8300', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '0.0000', '2022-08-09', 'received', '3.8300', '3.8300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (60513, 521, NULL, 8933, '2853', 'RED BULL', NULL, '8.8300', '10.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '6.0000', '2022-08-09', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60514, 521, NULL, 8758, '2678', 'PURE HEAVEN', NULL, '13.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-08-09', '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 (60515, 521, NULL, 8745, '2665', 'DON SIMON', NULL, '14.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-08-09', '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 (60516, 521, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '7.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2022-08-09', '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 (60517, 521, NULL, 8759, '2679', 'FRUTELLI', NULL, '10.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-08-09', '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 (60518, 521, NULL, 8743, '2663', 'CERES DRINK', NULL, '16.0000', '19.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '4.0000', '2022-08-09', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60519, 521, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-08-09', '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 (60520, 521, NULL, 9213, '3133', 'ROX DRINKS', NULL, '7.0000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '4.0000', '2022-08-09', '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 (60521, 521, NULL, 8763, '2683', 'VODY', NULL, '9.1700', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0200', '1.0000', '2022-08-09', 'received', '9.1700', '9.1700', '6.0000', NULL, NULL, 1, 'pc', '6.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 (60522, 521, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.0000', '2.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '14.0000', '2022-08-09', 'received', '2.0000', '2.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (60523, 521, NULL, 8772, '2692', 'HOLLANDIA', NULL, '23.0000', '28.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '3.0000', '2022-08-09', '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 (60524, 521, NULL, 2567, '83596243', 'NAN 1', NULL, '45.0000', '48.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '2.0000', '2022-08-09', '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 (60525, 521, NULL, 2231, '7501058633927', 'NAN 2', NULL, '45.0000', '48.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '3.0000', '2022-08-09', '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 (60526, 521, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '33.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-08-09', '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 (60527, 521, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '33.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-08-09', '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 (60528, 521, NULL, 9936, '34037196', 'ADULT DIAPER PUREFIT', NULL, '45.0000', '55.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-08-09', '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 (60529, 521, NULL, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '8.0000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2022-08-09', '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 (60530, 521, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '8.3000', '10.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-08-09', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (60531, 521, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '8.5000', '12.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '4.0000', '2022-08-09', '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 (60532, 521, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '10.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-08-09', '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 (60533, 521, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '7.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-08-09', '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 (60560, NULL, NULL, 1698, '', '', 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 (60561, NULL, NULL, 8151, '', '', 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 (60562, NULL, NULL, 9010, '', '', 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 (60563, NULL, NULL, 9008, '', '', 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 (60564, NULL, NULL, 7776, '', '', 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 (60565, NULL, NULL, 8526, '', '', 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 (60566, NULL, NULL, 1330, '', '', 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 (60567, 523, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '0.8800', '1.5000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2400', '44.0000', '2022-08-10', 'received', '0.8800', '0.8800', '48.0000', NULL, NULL, 1, 'pc', '48.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 (60568, 523, NULL, 9751, '95396700', 'BEL AQUA MEDIUM', NULL, '1.2000', '2.0000', '45.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '27.0000', '2022-08-10', 'received', '1.2000', '1.2000', '45.0000', NULL, NULL, 1, 'pc', '45.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 (60569, 523, NULL, 8889, '2809', 'NAN 1@2', NULL, '46.0000', '50.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '460.0000', '10.0000', '2022-08-10', 'received', '46.0000', '46.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60570, 523, NULL, 8083, '2003', 'LACTOGEN 1@2', NULL, '33.0000', '37.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-08-10', '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 (60571, 523, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '22.0000', '25.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-08-10', 'received', '22.0000', '22.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (60572, 523, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '22.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-08-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 (60573, 523, NULL, 8888, '2808', 'NIDO TIN', NULL, '36.0000', '42.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-08-10', '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 (60574, NULL, NULL, 9514, '', '', 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 (60575, NULL, NULL, 9186, '', '', 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 (60576, NULL, NULL, 2558, '', '', 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 (60627, NULL, NULL, 9996, '', '', 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 (60628, NULL, NULL, 2625, '', '', 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 (60629, NULL, NULL, 8519, '', '', 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 (60630, NULL, NULL, 2731, '', '', 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 (60631, NULL, NULL, 8718, '', '', 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 (60632, NULL, NULL, 8526, '', '', 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 (60633, NULL, NULL, 8359, '', '', 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 (60634, NULL, NULL, 8054, '', '', 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 (60635, NULL, NULL, 9985, '', '', 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 (60636, NULL, NULL, 7599, '', '', 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 (60637, NULL, NULL, 1383, '', '', 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 (60638, NULL, NULL, 9637, '', '', 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 (60639, NULL, NULL, 2559, '', '', 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 (60640, NULL, NULL, 2066, '', '', 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 (60641, NULL, NULL, 9457, '', '', 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 (60642, NULL, NULL, 9945, '', '', 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 (60643, NULL, NULL, 7714, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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 (60644, NULL, NULL, 9751, '', '', 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 (60645, NULL, NULL, 8658, '', '', 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 (60646, NULL, NULL, 9890, '', '', 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 (60647, NULL, NULL, 3010, '', '', 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 (60648, NULL, NULL, 7763, '', '', 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 (60649, NULL, NULL, 9954, '', '', 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 (60650, NULL, NULL, 9984, '', '', 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 (60651, NULL, NULL, 2104, '', '', 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 (60652, NULL, NULL, 9995, '', '', 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 (60653, NULL, NULL, 9680, '', '', 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 (60654, NULL, NULL, 9269, '', '', 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 (60655, NULL, NULL, 7562, '', '', 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 (60656, NULL, NULL, 8843, '', '', 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 (60657, NULL, NULL, 8842, '', '', 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 (60658, NULL, NULL, 9166, '', '', 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 (60659, NULL, NULL, 7407, '', '', 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 (60713, NULL, NULL, 7676, '', '', 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 (60714, NULL, NULL, 2247, '', '', 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 (60715, NULL, NULL, 8254, '', '', 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 (60716, NULL, NULL, 7507, '', '', 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 (60772, 524, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '4.0000', '2022-08-11', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60773, 524, NULL, 7562, '1482', 'IBEX', NULL, '7.6300', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7800', '3.0000', '2022-08-11', 'received', '7.6300', '7.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.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 (60774, 524, NULL, 7335, '1255', 'NEO HYCOLEX5ML', NULL, '16.9000', '22.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-08-11', 'received', '16.9000', '16.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (60775, 524, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '34.0000', '45.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2022-08-11', 'received', '34.0000', '34.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60776, 524, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '4.0000', '2022-08-11', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60777, 524, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-08-11', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60778, 524, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '9.0000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2022-08-11', '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 (60779, 524, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '23.0000', '2022-08-11', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (60780, 524, NULL, 7668, '1588', 'KIDICARE SRP', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-08-11', '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 (60781, 524, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-08-11', '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 (60782, 524, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '3.0000', '2022-08-11', '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 (60783, 524, NULL, 7570, '1490', 'NAPROX ECL', NULL, '7.8000', '10.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '10.0000', '2022-08-11', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60784, 524, NULL, 9167, '3087', 'NORMO TEARS EYE DROP', NULL, '16.9000', '22.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '3.0000', '2022-08-11', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (60785, 524, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '246.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '0.0000', '2022-08-11', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (60786, 524, NULL, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', NULL, '4.6000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '10.0000', '2022-08-11', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60787, 524, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '9.6000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '3.0000', '2022-08-11', 'received', '9.6000', '9.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60788, 524, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '4.0000', '2022-08-11', 'received', '8.2500', '8.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (60789, 524, NULL, 9691, '09276419', 'WELLKID SYR', NULL, '61.8000', '82.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.6000', '0.0000', '2022-08-11', 'received', '61.8000', '61.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '61.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 (60790, 524, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '2.6000', '4.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-08-11', '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 (60791, 524, NULL, 1965, '8902501008139', 'HYDROCORTISSONE CREAM 1%  CO-PHARMA', NULL, '16.2000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-08-11', 'received', '16.2000', '16.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60792, 524, NULL, 7330, '1250', 'MYCOLEX CREAM', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2022-08-11', '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 (60793, 524, NULL, 8208, '2128', 'DYNEWELL TAB', NULL, '0.4000', '0.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '50.0000', '2022-08-11', '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 (60794, 524, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3000', '10.0000', '2022-08-11', 'received', '4.0300', '4.0300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (60795, 524, NULL, 7591, '1511', 'GYPRONE TAB', NULL, '2.0000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '5.0000', '2022-08-11', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60796, 524, NULL, 8360, '2280', 'LEENA CAPS', NULL, '4.0200', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '9.0000', '2022-08-11', '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 (60797, 524, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-08-11', '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 (60798, 524, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.7000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-08-11', '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 (60799, 524, NULL, 7314, '1234', 'PREGNACARE 19S', NULL, '60.3000', '80.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.6000', '2.0000', '2022-08-11', 'received', '60.3000', '60.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.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 (60800, 524, NULL, 7689, '1609', 'KAMACLOX', NULL, '9.1000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '2.0000', '2022-08-11', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (60801, 524, NULL, 8616, '2536', 'LISTERINE B/S', NULL, '27.9000', '37.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '2.0000', '2022-08-11', 'received', '27.9000', '27.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (60802, 524, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-08-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 (60803, 524, NULL, 7708, '1628', 'TEEDAR', NULL, '8.8000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '5.0000', '2022-08-11', '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 (60804, 524, NULL, 7691, '1611', 'IMODIUM', NULL, '15.5000', '20.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '2.0000', '2022-08-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 (60805, 524, NULL, 7989, '1909', 'WELLWOMAN PLUS', NULL, '45.2100', '60.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.6300', '0.0000', '2022-08-11', 'received', '45.2100', '45.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '45.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 (60806, 524, NULL, 7490, '1410', 'SYRINGE 5CC', NULL, '0.2500', '0.5000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '82.0000', '2022-08-11', 'received', '0.2500', '0.2500', '200.0000', NULL, NULL, 1, 'pc', '200.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 (60807, 524, NULL, 9823, '80168949', 'OSTEOCARE CHEWABLE TAB', NULL, '13.2500', '17.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '0.0000', '2022-08-11', 'received', '13.2500', '13.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.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 (60808, 524, NULL, 7719, '1639', 'YAZZ PAD', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-08-11', '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 (60809, 524, NULL, 8059, '1979', 'PROPER PAD', NULL, '8.7000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '4.0000', '2022-08-11', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (60810, 524, NULL, 8949, '2869', 'SOFTCARE PAD', NULL, '7.0000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-08-11', '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 (60811, 524, NULL, 7653, '1573', 'PRETTY LADY LINER', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-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 (60812, 524, NULL, 9178, '3098', 'PROPA LINER', NULL, '6.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2022-08-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 (60813, 524, NULL, 9092, '3012', 'VINKA CHOCOLATE', NULL, '0.3200', '0.5000', '151.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.3200', '28.0000', '2022-08-11', 'received', '0.3200', '0.3200', '151.0000', NULL, NULL, 1, 'pc', '151.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 (60814, 524, NULL, 8566, '2486', 'SURE SPRAY', NULL, '19.0000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '2.0000', '2022-08-11', '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 (60815, 524, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '19.0000', '22.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-08-11', '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 (60816, 524, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '7.0000', '2022-08-11', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60817, 524, NULL, 7755, '1675', 'CHOCHO CREAM', NULL, '5.5000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '3.0000', '2022-08-11', '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 (60818, 524, NULL, 7380, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', NULL, '12.5000', '19.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2022-08-11', 'received', '12.5000', '12.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60819, 524, NULL, 7894, '1814', 'BOAFO OINT', NULL, '3.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '1.0000', '2022-08-11', 'received', '3.8000', '3.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (60820, 524, NULL, 7899, '1819', 'EKURO BEWU', NULL, '3.8500', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '1.0000', '2022-08-11', 'received', '3.8500', '3.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (60821, 524, NULL, 9826, '06168620', 'LAW CARE MIX', NULL, '15.0000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-08-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 (60822, 524, NULL, 7558, '1478', 'DORETA', NULL, '3.1000', '4.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '0.0000', '2022-08-11', 'received', '3.1000', '3.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (60823, 524, NULL, 9001, '2921', 'IMAX DELAY SPRAY', NULL, '30.0000', '40.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-11', 'received', '30.0000', '30.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (60824, 524, NULL, 7799, '1719', 'STARWIN S/S', NULL, '9.5000', '12.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-11', 'received', '9.5000', '9.5000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (60825, 524, NULL, 8065, '1985', 'AMOKSIKLAV 1G', NULL, '48.2000', '64.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-11', 'received', '48.2000', '48.2000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '48.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 (60826, 524, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '33.3000', '44.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-11', 'received', '33.3000', '33.3000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '33.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 (60827, 524, NULL, 9190, '3110', 'ASCOVIT CEE SYR', NULL, '7.6000', '10.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-11', 'received', '7.6000', '7.6000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (60828, NULL, NULL, 8685, '', '', 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 (60829, NULL, NULL, 8433, '', '', 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 (60830, NULL, NULL, 7859, '', '', 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 (60831, NULL, NULL, 1470, '', '', 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 (60832, NULL, NULL, 9787, '', '', 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 (60833, NULL, NULL, 9649, '', '', 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 (60834, NULL, NULL, 9818, '', '', 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 (60835, NULL, NULL, 9992, '', '', 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 (60836, NULL, NULL, 8435, '', '', 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 (60837, NULL, NULL, 9503, '', '', 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 (60838, NULL, NULL, 9924, '', '', 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 (60839, NULL, NULL, 9791, '', '', 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 (60840, NULL, NULL, 7483, '', '', 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 (60841, NULL, NULL, 8866, '', '', 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 (60842, NULL, NULL, 9984, '', '', 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 (60907, NULL, NULL, 9989, '', '', 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 (60908, NULL, NULL, 7418, '', '', 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 (60909, NULL, NULL, 9449, '', '', 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 (60910, 526, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '15.0000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '4.0000', '2022-08-22', '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 (60911, 526, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '34.0000', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '1.0000', '2022-08-22', '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 (60912, 526, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '21.0000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-08-22', '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 (60913, 526, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '21.0000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-08-22', '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 (60914, 526, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '21.0000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-08-22', '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 (60915, 526, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '10.0000', '12.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '6.0000', '2022-08-22', '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 (60916, 526, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '20.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-08-22', '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 (60917, 526, NULL, 8933, '2853', 'RED BULL', NULL, '10.0000', '13.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-08-22', '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 (60918, 526, NULL, 9213, '3133', 'ROX DRINKS', NULL, '7.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '5.0000', '2022-08-22', '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 (60919, 526, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '7.5000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '4.0000', '2022-08-22', '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 (60920, 526, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '8.3000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-08-22', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (60921, 526, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '1.0000', '2022-08-22', '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 (60922, 526, NULL, 8745, '2665', 'DON SIMON', NULL, '14.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-08-22', '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 (60923, 526, NULL, 8772, '2692', 'HOLLANDIA', NULL, '15.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-08-22', '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 (60924, 526, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '18.0000', '2022-08-22', 'received', '1.4500', '1.4500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (60925, 526, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.3000', '1.5000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '19.0000', '2022-08-22', '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 (60926, 526, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '4.0000', '2022-08-22', '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 (60927, 526, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '10.0000', '2022-08-22', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (60928, 526, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '4.2500', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '7.0000', '2022-08-22', 'received', '4.2500', '4.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (60929, 526, NULL, 9999, '84888211', 'HOLLANDIA SS/S', NULL, '3.1000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '4.0000', '2022-08-22', 'received', '3.1000', '3.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (60985, NULL, NULL, 10000, '', '', 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 (60986, NULL, NULL, 7984, '', '', 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 (60987, NULL, NULL, 8787, '', '', 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 (60988, NULL, NULL, 9457, '', '', 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 (61226, NULL, NULL, 1754, '', '', 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 (61227, NULL, NULL, 9961, '', '', 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 (61228, NULL, NULL, 9995, '', '', 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 (61229, NULL, NULL, 9307, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61230, NULL, NULL, 8871, '', '', 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 (61231, NULL, NULL, 2500, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61232, NULL, NULL, 9326, '', '', 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 (61233, NULL, NULL, 8338, '', '', 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 (61234, NULL, NULL, 7955, '', '', 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 (61235, NULL, NULL, 2914, '', '', 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 (61251, 522, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-08-09', '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 (61252, 522, NULL, 2567, '83596243', 'NAN 1', NULL, '45.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-08-09', '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 (61253, 522, NULL, 2231, '7501058633927', 'NAN 2', NULL, '45.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-08-09', '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 (61254, 522, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '33.0000', '38.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '3.0000', '2022-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 (61255, 522, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '33.0000', '38.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '4.0000', '2022-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 (61256, 522, NULL, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '8.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-08-09', '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 (61257, 522, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '8.5000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-08-09', '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 (61258, 522, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '10.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-08-09', '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 (61259, 522, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '3.8300', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '6.0000', '2022-08-09', 'received', '3.8300', '3.8300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (61260, 522, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.5000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '6.0000', '2022-08-09', '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 (61261, 522, NULL, 8745, '2665', 'DON SIMON', NULL, '14.0000', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '1.0000', '2022-08-09', '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 (61262, 522, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '7.0000', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '4.0000', '2022-08-09', '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 (61263, 522, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-08-09', '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 (61264, 522, NULL, 8933, '2853', 'RED BULL', NULL, '8.8300', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '0.0000', '2022-08-09', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61265, 522, NULL, 9472, '82987566', 'PARMALAT DRINK S/S', NULL, '12.0000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2022-08-09', '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 (61266, 522, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '3.8000', '5.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.2000', '12.0000', '2022-08-09', 'received', '3.8000', '3.8000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (61267, 522, NULL, 8743, '2663', 'CERES DRINK', NULL, '16.0000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '1.0000', '2022-08-09', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61268, 522, NULL, 8772, '2692', 'HOLLANDIA', NULL, '15.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-08-09', '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 (61269, 522, NULL, 9468, '27739747', 'PARMALAT  1KG', NULL, '23.0000', '28.0000', '0.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-09', 'received', '23.0000', '23.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (61270, 522, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-08-09', '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 (61271, 522, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '4.2500', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-08-09', 'received', '4.2500', '4.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (61272, 522, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '13.0000', '2022-08-09', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (61273, 522, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '3.8000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '10.0000', '2022-08-09', 'received', '3.8000', '3.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (61274, 522, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-08-09', '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 (61275, 522, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2022-08-09', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (61276, 522, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.2000', '1.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-08-09', '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 (61277, 522, NULL, 2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', NULL, '1.7000', '2.2000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '24.0000', '2022-08-09', 'received', '1.7000', '1.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (61278, NULL, NULL, 9209, '', '', 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 (61279, NULL, NULL, 8823, '', '', 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 (61280, NULL, NULL, 2608, '', '', 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 (61281, NULL, NULL, 9727, '', '', 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 (61282, NULL, NULL, 7432, '', '', 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 (61283, NULL, NULL, 2847, '', '', 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 (61284, NULL, NULL, 7863, '', '', 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 (61285, NULL, NULL, 9248, '', '', 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 (61286, NULL, NULL, 9999, '', '', 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 (61287, 527, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '20.0000', '2022-08-22', '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 (61288, 527, NULL, 7639, '1559', 'JET 2', NULL, '7.0000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-08-22', '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 (61289, 527, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '8.0000', '2022-08-22', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61290, 527, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '16.9000', '22.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.0000', '10.0000', '2022-08-22', 'received', '16.9000', '16.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (61291, 527, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '6.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '0.0000', '2022-08-22', 'received', '6.5000', '6.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (61292, 527, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '9.0000', '2022-08-22', '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 (61293, 527, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '5.0000', '2022-08-22', '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 (61294, 527, NULL, 9893, '09986672', 'BORGES OIL 500ML', NULL, '44.0000', '58.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '2.0000', '2022-08-22', '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 (61295, 527, NULL, 7411, '1331', 'CITRO C', NULL, '1.6000', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-08-22', 'received', '1.6000', '1.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (61296, 527, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.9000', '22.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '0.0000', '2022-08-22', 'received', '15.9000', '15.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (61297, 527, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '27.9000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '1.0000', '2022-08-22', 'received', '27.9000', '27.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '27.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 (61298, 527, NULL, 9586, '89215183', 'BORGES OLIVE OIL EXTRA 125MG', NULL, '14.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2022-08-22', '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 (61299, 527, NULL, 10002, '27749906', 'ANI\'S PRIDE BLACK SOAP', NULL, '22.0000', '30.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '396.0000', '17.0000', '2022-08-22', 'received', '22.0000', '22.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (61300, 527, NULL, 2619, '34146625', 'XARELTO 20MG', NULL, '20.0000', '26.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2022-08-22', '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 (61301, 527, NULL, 2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', NULL, '1.7000', '2.2000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '22.0000', '2022-08-22', 'received', '1.7000', '1.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (61302, 527, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '15.0000', '2022-08-22', 'received', '6.0000', '6.0000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (61338, NULL, NULL, 1326, '', '', 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 (61339, NULL, NULL, 7322, '', '', 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 (61340, NULL, NULL, 7373, '', '', 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 (61341, NULL, NULL, 9110, '', '', 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 (61342, NULL, NULL, 8881, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61343, NULL, NULL, 2445, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (61344, NULL, NULL, 2966, '', '', 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 (61345, NULL, NULL, 1383, '', '', 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 (61346, NULL, NULL, 7386, '', '', 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 (61347, NULL, NULL, 9956, '', '', 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 (61348, NULL, NULL, 7363, '', '', 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 (61349, NULL, NULL, 9430, '', '', 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 (61350, NULL, NULL, 10004, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-62.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61464, NULL, NULL, 9645, '', '', 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 (61465, NULL, NULL, 8721, '', '', 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 (61466, 525, NULL, 2516, '60491534', 'TENDRINA CREAM B/S', NULL, '13.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2022-08-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 (61467, 525, NULL, 2517, '94045463', 'TENDRINA CREAM S/S', NULL, '7.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '3.0000', '2022-08-22', '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 (61468, 525, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '18.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-08-22', '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 (61469, 525, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '11.0000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-08-22', '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 (61470, 525, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '7.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '1.0000', '2022-08-22', '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 (61471, 525, NULL, 3076, '57849888', 'CUSSIONS BABY OIL S/S', NULL, '6.5000', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '2.0000', '2022-08-22', '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 (61472, 525, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '9.1000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '0.0000', '2022-08-22', 'received', '9.1000', '9.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (61473, 525, NULL, 2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', NULL, '8.3000', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2022-08-22', 'received', '8.3000', '8.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (61474, 525, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '6.5000', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-08-22', '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 (61475, 525, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '15.0000', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '1.0000', '2022-08-22', '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 (61476, 525, NULL, 2646, '15816669', 'GLADE PAPER AIR FRESHNER', NULL, '9.0000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-08-22', '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 (61477, 525, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '5.0000', '2022-08-22', '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 (61478, 525, NULL, 2438, '59088740', 'NIDO +1 POWDERED MILK', NULL, '40.0000', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '2.0000', '2022-08-22', 'received', '40.0000', '40.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (61479, 525, NULL, 9469, '40088756', 'PANACHE', NULL, '5.5000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-08-22', '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 (61480, 525, NULL, 8933, '2853', 'RED BULL', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-08-22', '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 (61481, 525, NULL, 8767, '2687', 'KISS DRINK', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-08-22', '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 (61482, 525, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '3.8000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '5.0000', '2022-08-22', 'received', '3.8000', '3.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (61483, 525, NULL, 8772, '2692', 'HOLLANDIA', NULL, '15.0000', '18.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-08-22', '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 (61484, 525, NULL, 9999, '84888211', 'HOLLANDIA SS/S', NULL, '3.1000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '11.0000', '2022-08-22', 'received', '3.1000', '3.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (61485, 525, NULL, 8763, '2683', 'VODY', NULL, '9.1700', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0200', '0.0000', '2022-08-22', 'received', '9.1700', '9.1700', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61486, 525, NULL, 9213, '3133', 'ROX DRINKS', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-08-22', '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 (61487, 525, NULL, 9311, '3231', 'SAVANNA DRINK', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-08-22', '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 (61488, 525, NULL, 8745, '2665', 'DON SIMON', NULL, '14.0000', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '1.0000', '2022-08-22', '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 (61489, 525, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '7.0000', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-08-22', '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 (61490, 525, NULL, 8775, '2695', 'VITRAC S/S', NULL, '5.0000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-08-22', '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 (61491, 525, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2022-08-22', 'received', '1.4500', '1.4500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (61492, 525, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.3000', '1.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2022-08-22', '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 (61493, 525, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-08-22', '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 (61494, 525, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '4.2500', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-08-22', 'received', '4.2500', '4.2500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (61495, 525, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-08-22', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (61496, 525, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '48.0000', '2022-08-22', 'received', '6.0000', '6.0000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (61497, 525, NULL, 2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', NULL, '1.7000', '2.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '18.0000', '2022-08-22', 'received', '1.7000', '1.7000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (61498, 525, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '2.3000', '3.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '7.0000', '2022-08-22', '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 (61499, 525, NULL, 9870, '87405612', 'PRINGLES MEDIUM CUP', NULL, '7.0000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-08-22', '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 (61500, 525, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '14.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '1.0000', '2022-08-22', '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 (61501, 525, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-08-22', '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 (61502, 525, NULL, 9626, '53173114', 'SUPA RUBBING ALCHOL', NULL, '9.1700', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.1700', '0.0000', '2022-08-22', 'received', '9.1700', '9.1700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (61545, 530, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '36.0000', '2022-08-31', 'received', '1.5400', '1.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (61546, 530, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-08-31', '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 (61547, 530, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '12.8400', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '2.0000', '2022-08-31', 'received', '12.8400', '12.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (61548, 530, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '4.0000', '6.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '2.0000', '2022-08-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 (61549, 530, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-08-31', '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 (61550, 530, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-08-31', '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 (61551, 530, NULL, 9956, '45562069', 'SKYCEF 500MG TABLET', NULL, '15.9500', '21.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.8000', '0.0000', '2022-08-31', 'received', '15.9500', '15.9500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (61552, 530, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.5000', '2.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '1.0000', '2022-08-31', 'received', '0.5000', '0.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61553, 530, NULL, 1925, 'PR-638', 'Tobins Cod oil T32003', NULL, '2.1000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-08-31', 'received', '2.1000', '2.1000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (61554, 530, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '10.3000', '14.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2000', '0.0000', '2022-08-31', 'received', '10.3000', '10.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.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 (61555, 530, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '8.8000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '1.0000', '2022-08-31', '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 (61556, 530, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '9.4000', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-08-31', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (61557, 530, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '2.3000', '3.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2022-08-31', '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 (61558, 530, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2800', '0.0000', '2022-08-31', 'received', '8.6400', '8.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.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 (61559, 530, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '9.0000', '2022-08-31', '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 (61560, 530, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '239.2000', '24.0000', '2022-08-31', 'received', '5.9800', '5.9800', '40.0000', NULL, NULL, 1, 'pc', '40.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 (61561, 530, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.4000', '0.0000', '2022-08-31', '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 (61562, 530, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.3500', '0.0000', '2022-08-31', 'received', '9.4700', '9.4700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (61563, 530, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.6000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-08-31', '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 (61564, 530, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '16.5000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-08-31', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61565, 530, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '7.7000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '1.0000', '2022-08-31', 'received', '7.7000', '7.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61566, 530, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.8600', '2.5000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.9600', '0.0000', '2022-08-31', 'received', '1.8600', '1.8600', '36.0000', NULL, NULL, 1, 'pc', '36.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 (61567, 530, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-08-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 (61568, 530, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.5000', '7.5000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-08-31', 'received', '5.5000', '5.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (61569, 530, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '6.3300', '8.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3200', '0.0000', '2022-08-31', 'received', '6.3300', '6.3300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (61570, 530, NULL, 2060, '54947392', 'PARACETAMOL TAB LOCAL', NULL, '0.7700', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '70.0000', '2022-08-31', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61571, 530, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2022-08-31', '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 (61572, 530, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.9000', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2022-08-31', 'received', '1.9000', '1.9000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (61573, 530, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '32.8000', '44.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.2000', '0.0000', '2022-08-31', 'received', '32.8000', '32.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '32.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 (61574, 530, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '32.8000', '44.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.2000', '0.0000', '2022-08-31', 'received', '32.8000', '32.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '32.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 (61575, 530, NULL, 8622, '2542', 'DEXONE', NULL, '1.4900', '2.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.9600', '0.0000', '2022-08-31', 'received', '1.4900', '1.4900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '1.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 (61576, 530, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-08-31', 'received', '8.2500', '8.2500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.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 (61577, 530, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.3000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '0.0000', '2022-08-31', '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 (61578, 530, NULL, 9633, '58280884', 'fluconazole 150mg (TEVA)', NULL, '7.2000', '10.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2022-08-31', 'received', '7.2000', '7.2000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (61579, 530, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '5.2000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2022-08-31', '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 (61580, 530, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '7.2000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2022-08-31', 'received', '7.2000', '7.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61581, 530, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '35.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-08-31', '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 (61582, 530, NULL, 8099, '8114019', 'VISCOF PLAIN 100ML SYRUP', NULL, '11.4000', '15.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '7.0000', '2022-08-31', 'received', '11.4000', '11.4000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '11.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 (61583, 530, NULL, 10007, '65052097', 'BUSCOPAN ORG TABS 10MG/PER TAB', NULL, '0.9700', '1.3000', '56.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.3200', '13.0000', '2022-08-31', 'received', '0.9700', '0.9700', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '0.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 (61584, 530, NULL, 10008, '76117050', 'FLUCOXACILLIN 100ML SUSP LETAP', NULL, '4.0000', '6.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '4.0000', '2022-08-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 (61585, 530, NULL, 10009, '36945410', 'PROXICAM 20MG CAPS', NULL, '1.2400', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '30.0000', '2022-08-31', 'received', '1.2400', '1.2400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (61586, 530, NULL, 10010, '57422477', 'GEBEDICLO 50MG TABS', NULL, '0.8400', '1.1100', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '94.0000', '2022-08-31', 'received', '0.8400', '0.8400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (61587, 530, NULL, 10011, '94368885', 'HEMANI PROPOLIS OIL CAPS', NULL, '30.0000', '40.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-08-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 (61588, 529, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '5.0000', '2022-08-30', 'received', '23.0000', '23.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61589, 529, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '9.5000', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '4.0000', '2022-08-30', '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 (61590, 529, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '39.0000', '51.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '1.0000', '2022-08-30', '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 (61591, 529, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-08-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 (61592, 529, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '4.0000', '2022-08-30', '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 (61593, 529, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '4.0000', '2022-08-30', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61594, 529, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2022-08-30', '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 (61595, 529, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '3.0000', '2022-08-30', '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 (61596, 529, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '6.0000', '2022-08-30', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61597, 529, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '22.9000', '30.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.5000', '3.0000', '2022-08-30', 'received', '22.9000', '22.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (61598, 529, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '4.0000', '2022-08-30', '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 (61599, 529, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.2000', '35.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '3.0000', '2022-08-30', '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 (61600, 529, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.6000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2000', '2.0000', '2022-08-30', 'received', '4.6000', '4.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (61601, 529, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '22.0000', '29.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '10.0000', '2022-08-30', '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 (61602, 529, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '4.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-08-30', '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 (61603, 529, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '19.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2022-08-30', '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 (61604, 529, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '10.0000', '2022-08-30', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61605, 529, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-08-30', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61606, 529, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '3.0000', '2022-08-30', 'received', '26.0000', '26.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61607, 529, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-08-30', '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 (61608, 529, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '5.2300', '7.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7600', '12.0000', '2022-08-30', 'received', '5.2300', '5.2300', '12.0000', NULL, NULL, 1, 'pc', '12.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 (61609, 529, NULL, 8489, '2409', 'EVENING PRIMROSE', NULL, '21.5000', '28.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2022-08-30', '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 (61610, 529, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '6.6000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-08-30', '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 (61611, 529, NULL, 2637, '30755055', 'KIDICARE SYR', NULL, '10.0000', '13.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '4.0000', '2022-08-30', '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 (61612, 529, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.8200', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2000', '10.0000', '2022-08-30', 'received', '0.8200', '0.8200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (61613, 529, NULL, 8102, '111111', 'NEOVITA CAPS PER STRIP', NULL, '30.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-08-30', '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 (61614, 529, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '3.2000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '5.0000', '2022-08-30', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61615, 529, NULL, 8813, '2733', 'FERROUS SULPHATE', NULL, '5.9000', '8.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3000', '7.0000', '2022-08-30', 'received', '5.9000', '5.9000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (61616, 529, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '10.8000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2022-08-30', '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 (61617, 529, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '17.5000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.5000', '3.0000', '2022-08-30', 'received', '17.5000', '17.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61618, 529, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '9.0000', '2022-08-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 (61619, 529, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '2.0000', '2022-08-30', '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 (61620, 529, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '4.7000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '9.0000', '2022-08-30', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61621, 529, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '5.0000', '2022-08-30', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61622, 529, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '15.0000', '2022-08-30', 'received', '2.5500', '2.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (61623, 529, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '37.0000', '2022-08-30', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (61624, 529, NULL, 9275, '3195', 'ASCORBIN TAB', NULL, '0.4300', '1.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '39.0000', '2022-08-30', 'received', '0.4300', '0.4300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (61625, 529, NULL, 9685, '3434209', 'ACTIFED MULTI ACTION TABS 12\'S', NULL, '46.0000', '61.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '2.0000', '2022-08-30', 'received', '46.0000', '46.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (61626, 529, NULL, 2086, '06489706', 'METAGYL SUSP', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '2.0000', '2022-08-30', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61627, 529, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-08-30', '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 (61628, 529, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '56.1000', '74.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.5000', '3.0000', '2022-08-30', 'received', '56.1000', '56.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '56.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 (61629, 529, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '35.9000', '47.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '2.0000', '2022-08-30', '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 (61630, 529, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '3.0000', '2022-08-30', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61631, 529, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '11.4000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '4.0000', '2022-08-30', 'received', '11.4000', '11.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (61632, 529, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '33.0000', '44.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '5.0000', '2022-08-30', 'received', '33.0000', '33.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61633, 529, NULL, 10005, '76737689', 'FERRODEX SYR 200ML', NULL, '6.8000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2000', '3.0000', '2022-08-30', 'received', '6.8000', '6.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (61634, 529, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '24.5000', '32.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '1.0000', '2022-08-30', '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 (61635, 529, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-08-30', '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 (61636, 529, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '4.1000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '10.0000', '2022-08-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 (61637, 529, NULL, 9513, '46545234', 'GLUCO NAF C', NULL, '11.6000', '15.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '4.0000', '2022-08-30', 'received', '11.6000', '11.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61638, 529, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5000', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '41.0000', '2022-08-30', 'received', '0.5000', '0.5000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (61639, 529, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '7.6300', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.3000', '7.0000', '2022-08-30', 'received', '7.6300', '7.6300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.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 (61640, 529, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-08-30', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (61641, 529, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '30.4000', '44.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.6000', '4.0000', '2022-08-30', 'received', '30.4000', '30.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.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 (61642, 529, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '2.0000', '2022-08-30', '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 (61643, 529, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '8.0000', '2022-08-30', '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 (61644, 529, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '11.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2022-08-30', '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 (61645, 529, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-08-30', '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 (61646, 529, NULL, 9445, '51778713', 'KOFFEX A', NULL, '7.7000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '5.0000', '2022-08-30', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61647, 529, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '17.2000', '23.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.0000', '5.0000', '2022-08-30', 'received', '17.2000', '17.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.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 (61648, 529, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '2.8000', '4.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '51.0000', '2022-08-30', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (61649, 529, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.8800', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '8.0000', '2022-08-30', 'received', '2.8800', '2.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (61650, 529, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '18.0000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-08-30', '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 (61651, 529, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)/TEVA', NULL, '17.0000', '23.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-08-30', '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 (61652, 529, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '21.2500', '28.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.2500', '4.0000', '2022-08-30', 'received', '21.2500', '21.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (61653, 529, NULL, 7318, '1238', 'LONART SUSP', NULL, '13.5000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '3.0000', '2022-08-30', '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 (61654, 529, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '2.0000', '2022-08-30', 'received', '23.7000', '23.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (61655, 529, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '16.6000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '3.0000', '2022-08-30', 'received', '16.6000', '16.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (61656, 529, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '9.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '4.0000', '2022-08-30', '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 (61657, 529, NULL, 3034, '33733514', 'ARABA BAZAN', NULL, '19.0000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '5.0000', '2022-08-30', '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 (61658, 529, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '42.4000', '56.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.0000', '5.0000', '2022-08-30', 'received', '42.4000', '42.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '42.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 (61659, 529, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '108.1000', '143.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.2000', '1.0000', '2022-08-30', 'received', '108.1000', '108.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '108.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 (61660, 529, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.1000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '9.0000', '2022-08-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 (61661, 529, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '64.0000', '2022-08-30', 'received', '0.2600', '0.2600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (61662, 529, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '13.3000', '17.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2022-08-30', '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 (61663, 529, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '27.0000', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '2.0000', '2022-08-30', '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 (61664, 529, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '9.4000', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-08-30', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (61665, 529, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '89.0000', '2022-08-30', 'received', '0.4100', '0.4100', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61666, 529, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '7.1800', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3600', '2.0000', '2022-08-30', 'received', '7.1800', '7.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.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 (61667, 529, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.6400', '2.0000', '2022-08-30', 'received', '16.6600', '16.6600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.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 (61668, 529, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6300', '1.0000', '2022-08-30', 'received', '14.2100', '14.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (61669, 529, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.4700', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '33.0000', '2022-08-30', 'received', '1.4700', '1.4700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (61670, 529, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '21.1700', '28.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.0200', '6.0000', '2022-08-30', 'received', '21.1700', '21.1700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '21.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 (61671, 529, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '12.0000', '2022-08-30', '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 (61672, 529, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-08-30', '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 (61673, 529, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '49.0000', '2022-08-30', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (61674, 529, NULL, 9893, '09986672', 'BORGES OIL 500ML', NULL, '44.0000', '58.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '2.0000', '2022-08-30', '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 (61675, 529, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '10.3000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.9000', '3.0000', '2022-08-30', 'received', '10.3000', '10.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (61676, 529, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '9.3600', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '10.0000', '2022-08-30', 'received', '9.3600', '9.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61677, 529, NULL, 9291, '3211', 'FIESTA LUBRICANT GEL SMALL', NULL, '15.4000', '25.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '6.0000', '2022-08-30', 'received', '15.4000', '15.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.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 (61678, 529, NULL, 10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', NULL, '3.8000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4000', '3.0000', '2022-08-30', 'received', '3.8000', '3.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (61679, 529, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '4.7000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.7000', '1.0000', '2022-08-30', 'received', '4.7000', '4.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (61680, 529, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.6000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '0.0000', '2022-08-30', '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 (61681, 529, NULL, 8866, '2786', 'CHLOR EYE OINT', NULL, '3.3000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '4.0000', '2022-08-30', '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 (61682, 529, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-08-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 (61683, 529, NULL, 8490, '2410', 'NUROFEN SRP', NULL, '36.3000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3000', '0.0000', '2022-08-30', 'received', '36.3000', '36.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '36.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 (61684, 529, NULL, 2915, '21109477', 'ASPIRIN CARDIO 100MG', NULL, '21.0000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-08-30', '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 (61685, 529, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '19.3400', '25.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.3600', '3.0000', '2022-08-30', 'received', '19.3400', '19.3400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.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 (61686, 529, NULL, 10000, '61321174', 'KY GEL 82G', NULL, '38.0000', '51.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '2.0000', '2022-08-30', 'received', '38.0000', '38.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61687, 529, NULL, 1965, '8902501008139', 'HYDROCORTISSONE CREAM 1%  CO-PHARMA', NULL, '15.4000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '3.0000', '2022-08-30', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (61688, 529, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '3.3000', '4.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '4.0000', '2022-08-30', '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 (61689, 529, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '5.0000', '2022-08-30', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (61690, 529, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '34.0000', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '3.0000', '2022-08-30', '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 (61691, 529, NULL, 7745, '1665', 'DUREX COND', NULL, '8.9000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '2.0000', '2022-08-30', 'received', '8.9000', '8.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (61692, 529, NULL, 10006, '51711221', 'DUREX EXTRA SAFE CONDOM', NULL, '12.9800', '17.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9600', '0.0000', '2022-08-30', 'received', '12.9800', '12.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (61693, 529, NULL, 10004, '14688047', 'Tramadol 100mg Retard', NULL, '2.5100', '3.0000', '90.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.9000', '86.0000', '2022-08-30', 'received', '2.5100', '2.5100', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '2.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 (61694, 529, NULL, 7613, '1533', 'FEMFRESH', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-08-30', '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 (61695, 529, NULL, 9992, '76771843', 'FEMFRESH 250ML', NULL, '27.6000', '37.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.8000', '7.0000', '2022-08-30', 'received', '27.6000', '27.6000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '27.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 (61696, 529, NULL, 2850, '74664071', 'TRAMADOL  Denk  50mg', NULL, '4.5500', '6.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.5000', '5.0000', '2022-08-30', 'received', '4.5500', '4.5500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (61697, 529, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '40.0000', '53.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '4.0000', '2022-08-30', 'received', '40.0000', '40.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61698, 529, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '81.4000', '110.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.8000', '0.0000', '2022-08-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 (61699, 529, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '2.0000', '2022-08-30', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (61700, 529, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '17.9000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8000', '1.0000', '2022-08-30', 'received', '17.9000', '17.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.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 (61701, 529, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-08-30', '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 (61702, 528, NULL, 8445, '2365', 'ROOTER LIFE', NULL, '35.9000', '47.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '2.0000', '2022-08-23', '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 (61703, 528, NULL, 7806, '1726', 'DOMI 10', NULL, '2.2600', '3.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.5000', '0.0000', '2022-08-23', 'received', '2.2600', '2.2600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.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 (61704, 528, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '1.0500', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '78.0000', '2022-08-23', 'received', '1.0500', '1.0500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61705, 528, NULL, 9413, '3333', 'MALAR 2 DS', NULL, '10.5000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '3.0000', '2022-08-23', '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 (61706, 528, NULL, 9809, '75832070', 'POFAKOF BABY', NULL, '7.3000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '5.0000', '2022-08-23', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61707, 528, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '6.0000', '2022-08-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 (61708, 528, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '14.5000', '20.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '4.0000', '2022-08-23', 'received', '14.5000', '14.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61709, 528, NULL, 7411, '1331', 'CITRO C', NULL, '1.6000', '2.5000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '59.0000', '2022-08-23', 'received', '1.6000', '1.6000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (61710, 528, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.8300', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.8000', '48.0000', '2022-08-23', 'received', '1.8300', '1.8300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (61711, 528, NULL, 7317, '1237', 'LONART DS TABS', NULL, '17.2000', '23.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.0000', '10.0000', '2022-08-23', 'received', '17.2000', '17.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.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 (61712, 528, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '8.8000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-08-23', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61713, 528, NULL, 9098, '3018', 'JOY VIKIL', NULL, '26.0000', '34.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.0000', '0.0000', '2022-08-23', 'received', '26.0000', '26.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (61714, 528, NULL, 7318, '1238', 'LONART SUSP', NULL, '13.5000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '6.0000', '2022-08-23', '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 (61715, 528, NULL, 8053, '1973', 'MAGACID TAB', NULL, '0.8500', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '25.0000', '2022-08-23', 'received', '0.8500', '0.8500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (61716, 528, NULL, 7981, '1901', 'GACET 250', NULL, '0.8000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '25.0000', '2022-08-23', '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 (61717, 528, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-08-23', '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 (61718, 528, NULL, 8135, '2055', 'AMCOF BABY', NULL, '8.2000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '3.0000', '2022-08-23', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61719, 528, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '7.4000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '5.0000', '2022-08-23', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61720, 528, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '15.0000', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '6.0000', '2022-08-23', '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 (61721, 528, NULL, 8069, '1989', 'FLAGYL ORG SUSP', NULL, '39.3000', '52.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.3000', '1.0000', '2022-08-23', 'received', '39.3000', '39.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '39.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 (61722, 528, NULL, 8600, '2520', 'CARBOZAB', NULL, '4.9900', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9500', '0.0000', '2022-08-23', 'received', '4.9900', '4.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61723, 528, NULL, 8866, '2786', 'CHLOR EYE OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2022-08-23', '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 (61724, 528, NULL, 9158, '3078', 'METRO Z SUSP', NULL, '9.5800', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8000', '9.0000', '2022-08-23', 'received', '9.5800', '9.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (61725, 528, NULL, 9640, '96659237', 'BENYLIN DRY TICKLY COUGH 150ML', NULL, '55.8000', '74.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.4000', '3.0000', '2022-08-23', 'received', '55.8000', '55.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '55.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 (61726, 528, NULL, 9995, '61273663', 'METROTRUST F', NULL, '8.2000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '10.0000', '2022-08-23', 'received', '8.2000', '8.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61727, 528, NULL, 7778, '1698', 'BECOATIN SRP', NULL, '11.5000', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-08-23', 'received', '11.5000', '11.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61728, 528, NULL, 9865, '96866713', 'MALUFAN TAB', NULL, '10.0000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '6.0000', '2022-08-23', '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 (61729, 528, NULL, 7912, '1832', 'FLUXAMOX SRP', NULL, '10.7800', '14.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.8000', '5.0000', '2022-08-23', 'received', '10.7800', '10.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (61730, 528, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '10.7800', '14.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-23', 'received', '10.7800', '10.7800', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '10.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 (61731, 528, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '3.6000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '9.0000', '2022-08-23', '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 (61732, 528, NULL, 8246, '2166', 'INFACOL 55ML', NULL, '49.4000', '65.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.8000', '0.0000', '2022-08-23', 'received', '49.4000', '49.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (61733, 528, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '94.0200', '124.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0200', '1.0000', '2022-08-23', 'received', '94.0200', '94.0200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '94.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 (61734, 528, NULL, 8065, '1985', 'AMOKSIKLAV 1G', NULL, '48.2000', '64.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '289.2000', '0.0000', '2022-08-23', 'received', '48.2000', '48.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '48.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 (61735, 528, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '33.3000', '44.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '133.2000', '2.0000', '2022-08-23', 'received', '33.3000', '33.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.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 (61736, 528, NULL, 8470, '2390', 'WELLMAN 70', NULL, '58.1000', '77.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.2000', '1.0000', '2022-08-23', 'received', '58.1000', '58.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.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 (61737, 528, NULL, 8098, '2018', 'PROMAN', NULL, '20.7900', '28.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.1600', '4.0000', '2022-08-23', 'received', '20.7900', '20.7900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (61738, 528, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '8.8200', '12.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.8200', '0.0000', '2022-08-23', 'received', '8.8200', '8.8200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '8.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 (61739, 528, NULL, 9202, '3122', 'OMECET CAPS', NULL, '2.1700', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.4000', '0.0000', '2022-08-23', 'received', '2.1700', '2.1700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (61740, 528, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-08-23', '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 (61741, 528, NULL, 7638, '1558', 'FLUCONA DENK/TEVA', NULL, '17.0000', '22.5000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '10.0000', '2022-08-23', 'received', '17.0000', '17.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (61742, 528, NULL, 9633, '58280884', 'fluconazole 150mg (TEVA)', NULL, '7.2000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-08-23', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61743, 528, NULL, 9503, '35154073', 'PELADOL EXTRA TAB', NULL, '2.5300', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '5.0000', '2022-08-23', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (61744, 528, NULL, 7872, '1792', 'STAGYL', NULL, '2.5000', '4.0000', '9.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '8.0000', '2022-08-23', 'received', '2.5000', '2.5000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (61745, 528, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '88.0000', '2022-08-23', 'received', '0.5900', '0.5900', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (61746, 528, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.4600', '0.7000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '157.0000', '2022-08-23', 'received', '0.4600', '0.4600', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.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 (61747, 528, NULL, 7917, '1837', 'NO 10', NULL, '0.5000', '0.7000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '39.0000', '2022-08-23', 'received', '0.5000', '0.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61748, 528, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4100', '0.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '25.0000', '2022-08-23', '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 (61749, 528, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.6000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2500', '8.0000', '2022-08-23', '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 (61750, 528, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '100.0000', '2022-08-23', '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 (61751, 528, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '37.0000', '2022-08-23', 'received', '0.4100', '0.4100', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61752, 528, NULL, 9269, '3189', 'LETARON SYRUP', NULL, '3.4000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '3.0000', '2022-08-23', '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 (61753, 528, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '10.9000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '4.0000', '2022-08-23', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61754, 528, NULL, 8021, '1941', 'MUCOLEX ADULT', NULL, '18.0000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '5.0000', '2022-08-23', '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 (61755, 528, NULL, 8020, '1940', 'MUCOLEX J', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-08-23', '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 (61756, 528, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.4000', '10.0000', '2022-08-23', 'received', '4.1700', '4.1700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (61757, 528, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-08-23', '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 (61758, 528, NULL, 7491, '1411', 'ASCORYL SRP', NULL, '7.4000', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '0.0000', '2022-08-23', 'received', '7.4000', '7.4000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (61759, 528, NULL, 9190, '3110', 'ASCOVIT CEE SYR', NULL, '7.6000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '3.0000', '2022-08-23', '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 (61760, 528, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '4.5600', '6.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '27.0000', '2022-08-23', 'received', '4.5600', '4.5600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (61761, 528, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.8400', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2000', '4.0000', '2022-08-23', 'received', '2.8400', '2.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (61762, 528, NULL, 9804, '36365929', 'COLD NASO NASAL', NULL, '3.0500', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2500', '4.0000', '2022-08-23', 'received', '3.0500', '3.0500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61763, 528, NULL, 7496, '1416', 'NORMAL SALINE', NULL, '6.3000', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2022-08-23', '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 (61764, 528, NULL, 10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', NULL, '3.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '3.0000', '2022-08-23', '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 (61765, 528, NULL, 9714, '52997990', 'PROSTAJOY', NULL, '29.7000', '39.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '0.0000', '2022-08-23', 'received', '29.7000', '29.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (61766, 528, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '16.5000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '2.0000', '2022-08-23', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61767, 528, NULL, 7814, '1734', 'GIVERS P CAPS', NULL, '22.0000', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-08-23', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61768, 528, NULL, 7836, '1756', 'PROSTACURE TEA', NULL, '19.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-08-23', '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 (61769, 528, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '84.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.3600', '40.0000', '2022-08-23', 'received', '2.0400', '2.0400', '84.0000', NULL, NULL, 1, 'pc', '84.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 (61770, 528, NULL, 7621, '1541', 'METAGYL SRP', NULL, '5.9000', '8.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '6.0000', '2022-08-23', '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 (61771, 528, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.7000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '61.0000', '2022-08-23', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (61772, 528, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.4000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '7.0000', '2022-08-23', '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 (61773, 528, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '5.0000', '2022-08-23', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61774, 528, NULL, 7879, '1799', 'PARA DENK 125', NULL, '1.9200', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '4.0000', '2022-08-23', 'received', '1.9200', '1.9200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (61775, 528, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.6000', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '5.0000', '2022-08-23', '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 (61776, 528, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5700', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '13.0000', '2022-08-23', 'received', '1.5700', '1.5700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (61777, 528, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5000', '15.0000', '2022-08-23', 'received', '4.7000', '4.7000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (61778, 528, NULL, 7366, '1286', 'ATORVASTATIN10MG', NULL, '7.0000', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '2.0000', '2022-08-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 (61779, 528, NULL, 7367, '1287', 'ATORVASTATIN20MG', NULL, '9.8000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '3.0000', '2022-08-23', '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 (61780, 528, NULL, 9649, '77652746', 'GEBEXIME TAB 500MG', NULL, '17.3000', '23.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.5000', '2.0000', '2022-08-23', 'received', '17.3000', '17.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61781, 528, NULL, 9872, '27039848', 'GEBEXIME 500MG TAB', NULL, '17.3000', '23.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-23', 'received', '17.3000', '17.3000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (61782, 528, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '35.0000', '2022-08-23', '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 (61783, 528, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '65.8000', '87.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.6000', '2.0000', '2022-08-23', 'received', '65.8000', '65.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '65.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 (61784, 528, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '7.0000', '2022-08-23', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (61785, 528, NULL, 7402, '1322', 'VERMOX SUSP', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '5.0000', '2022-08-23', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61786, 528, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '23.0000', '30.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '2.0000', '2022-08-23', 'received', '23.0000', '23.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (61787, 528, NULL, 7641, '1561', 'LYDIA', NULL, '8.5000', '11.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '12.0000', '2022-08-23', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (61788, 528, NULL, 7831, '1751', 'TINATET VENECARE', NULL, '23.1000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3000', '0.0000', '2022-08-23', 'received', '23.1000', '23.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.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 (61789, 528, NULL, 8649, '2569', 'TOMAC MIX', NULL, '22.9000', '30.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '1.0000', '2022-08-23', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (61790, 528, NULL, 8005, '1925', 'ADDYZOA', NULL, '58.0000', '76.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2022-08-23', 'received', '58.0000', '58.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61791, 528, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-08-23', '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 (61792, 528, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '5.0000', '2022-08-23', 'received', '6.0000', '6.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (61793, 528, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '3.0000', '2022-08-23', 'received', '10.6000', '10.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (61794, 528, NULL, 7523, '1443', 'VISCOF S', NULL, '12.0400', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1200', '1.0000', '2022-08-23', 'received', '12.0400', '12.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (61795, 528, NULL, 9954, '20927323', 'STOPKOF COLD AND CATARRH SYR', NULL, '8.4000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '5.0000', '2022-08-23', '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 (61796, 528, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '60.3000', '80.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.3000', '1.0000', '2022-08-23', 'received', '60.3000', '60.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '60.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 (61797, 528, NULL, 7482, '1402', 'MAXMOX 500', NULL, '5.8000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '8.0000', '2022-08-23', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61798, 528, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '10.5000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '7.0000', '2022-08-23', '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 (61799, 528, NULL, 8433, '2353', 'LIV 52 TAB', NULL, '33.0000', '44.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-08-23', '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 (61800, 528, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '60.3000', '80.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.6000', '2.0000', '2022-08-23', 'received', '60.3000', '60.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '60.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 (61801, 528, NULL, 7859, '1779', 'KOFLET', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-08-23', '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 (61802, 528, NULL, 8243, '2163', 'ZUBES TAB', NULL, '1.1400', '1.5000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.5000', '45.0000', '2022-08-23', 'received', '1.1400', '1.1400', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '1.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 (61803, 528, NULL, 8067, '1987', 'HYDROGEN ECL', NULL, '5.7000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '4.0000', '2022-08-23', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (61804, 528, NULL, 9894, '24864084', 'HYDROGEN PEROXIDE MAL.TITI', NULL, '4.5000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-08-23', '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 (61805, 528, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '108.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.4800', '69.0000', '2022-08-23', 'received', '0.8100', '0.8100', '108.0000', NULL, NULL, 1, 'pc', '108.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 (61806, 528, NULL, 7743, '1663', 'KISS', NULL, '2.3000', '3.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2022-08-23', '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 (61807, 528, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '2.0000', '2022-08-23', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61808, 528, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-08-23', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61809, 528, NULL, 8016, '1936', 'ZIRTEK SLN', NULL, '59.9000', '79.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.8000', '1.0000', '2022-08-23', 'received', '59.9000', '59.9000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (61810, 528, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.8000', '2.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '27.0000', '2022-08-23', '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 (61811, 528, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '18.0000', '2022-08-23', 'received', '2.5500', '2.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (61812, 528, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '25.9000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '3.0000', '2022-08-23', '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 (61813, 528, NULL, 9001, '2921', 'IMAX DELAY SPRAY', NULL, '30.0000', '40.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '3.0000', '2022-08-23', '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 (61814, 528, NULL, 7639, '1559', 'JET 2', NULL, '7.0000', '9.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '6.0000', '2022-08-23', 'received', '7.0000', '7.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (61815, 528, NULL, 8548, '2468', 'MARK -2 INH', NULL, '6.7000', '9.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.6000', '0.0000', '2022-08-23', 'received', '6.7000', '6.7000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (61816, 528, NULL, 7799, '1719', 'STARWIN S/S', NULL, '9.5000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2022-08-23', '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 (61817, 528, NULL, 10000, '61321174', 'KY GEL 82G', NULL, '38.0000', '51.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '1.0000', '2022-08-23', 'received', '38.0000', '38.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61818, 528, NULL, 9983, '33958275', 'SALO SIMPLE LINCUS', NULL, '5.4000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2022-08-23', 'received', '5.4000', '5.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61819, 528, NULL, 9985, '69709139', 'ESKARON SYR', NULL, '5.8000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '0.0000', '2022-08-23', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (61820, 528, NULL, 9984, '07708627', 'ESKARON CAPS', NULL, '3.0000', '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '0.0000', '2022-08-23', '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 (61821, 528, NULL, 9989, '43046471', 'CARVEDILOL 12.5MG TEVA', NULL, '12.0000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-08-23', '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 (61822, 528, NULL, 9982, '50148180', 'GROFYNN TONIC', NULL, '11.0000', '14.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-08-23', '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 (61823, 528, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.2000', '3.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-08-23', 'received', '2.2000', '2.2000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (61824, NULL, NULL, 8189, '', '', 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 (61825, NULL, NULL, 8501, '', '', 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 (61826, NULL, NULL, 2825, '', '', 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 (61827, NULL, NULL, 10004, '', '', 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 (61828, NULL, NULL, 2669, '', '', 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 (61829, NULL, NULL, 7745, '', '', 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 (61830, 531, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.7500', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '10.0000', '2022-09-01', '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 (61831, 531, NULL, 7780, '1700', 'LUFART TAB', NULL, '15.5000', '20.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '6.0000', '2022-09-01', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61832, 531, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.8300', '2.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.8000', '18.0000', '2022-09-01', 'received', '1.8300', '1.8300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.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 (61833, 531, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5300', '0.7000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '0.0000', '2022-09-01', 'received', '0.5300', '0.5300', '75.0000', NULL, NULL, 1, 'pc', '75.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 (61834, 531, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '100.0000', '2022-09-01', '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 (61835, 531, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '70.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2022-09-01', 'received', '0.2600', '0.2600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (61836, 531, NULL, 7482, '1402', 'MAXMOX 500', NULL, '5.8000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '5.0000', '2022-09-01', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61837, 531, NULL, 7317, '1237', 'LONART DS TABS', NULL, '17.2000', '23.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.0000', '2.0000', '2022-09-01', 'received', '17.2000', '17.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.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 (61838, 531, NULL, 8918, '2838', 'APC 10*10', NULL, '1.2200', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '27.0000', '2022-09-01', 'received', '1.2200', '1.2200', '30.0000', NULL, NULL, 1, 'pc', '30.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 (61839, 531, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '45.0000', '2022-09-01', 'received', '0.8900', '0.8900', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61840, 531, NULL, 7335, '1255', 'NEO HYCOLEX5ML', NULL, '16.9000', '22.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5000', '0.0000', '2022-09-01', 'received', '16.9000', '16.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (61841, 531, NULL, 2070, '014', 'CHLO EYE ', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '9.0000', '2022-09-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 (61842, 531, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '10.0000', '2022-09-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 (61843, 531, NULL, 8046, '1966', 'TRANEXAMIC ACID', NULL, '16.8000', '28.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2022-09-01', 'received', '16.8000', '16.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (61844, 531, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '9.6000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '2.0000', '2022-09-01', 'received', '9.6000', '9.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61845, 531, NULL, 8097, '2017', 'ENTEROGEMINA', NULL, '4.5600', '6.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '9.0000', '2022-09-01', 'received', '4.5600', '4.5600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (61846, 531, NULL, 7447, '1367', 'STREPSILS ORG', NULL, '1.8500', '2.5000', '64.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.4000', '0.0000', '2022-09-01', 'received', '1.8500', '1.8500', '64.0000', NULL, NULL, 1, 'pc', '64.0000', NULL, NULL, NULL, NULL, '1.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 (61847, 531, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '2.7000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '7.0000', '2022-09-01', '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 (61848, 531, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '65.8000', '87.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.4000', '3.0000', '2022-09-01', 'received', '65.8000', '65.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '65.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 (61849, 531, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '42.4000', '56.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.2000', '3.0000', '2022-09-01', 'received', '42.4000', '42.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '42.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 (61850, 531, NULL, 7526, '1446', 'ZINCOVIT SRP', NULL, '16.1000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '0.0000', '2022-09-01', 'received', '16.1000', '16.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61851, 531, NULL, 7921, '1841', 'SHALCIP', NULL, '4.3000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2022-09-01', '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 (61852, 531, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '9.0000', '2022-09-01', '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 (61853, 531, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '7.0000', '2022-09-01', 'received', '14.0000', '14.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61854, 531, NULL, 7431, '1351', 'CIPROLEX TZ', NULL, '27.0000', '36.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '2.0000', '2022-09-01', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61855, 531, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '7.7000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '7.0000', '2022-09-01', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61856, 531, NULL, 7736, '1656', 'NUGEL -O', NULL, '20.1300', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.6500', '0.0000', '2022-09-01', 'received', '20.1300', '20.1300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (61857, 531, NULL, 7857, '1777', 'NUGEL', NULL, '19.3400', '26.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0200', '2.0000', '2022-09-01', 'received', '19.3400', '19.3400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (61858, 531, NULL, 7774, '1694', 'MIST POT SIT', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '8.0000', '2022-09-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 (61859, 531, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '18.3300', '24.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.6500', '4.0000', '2022-09-01', 'received', '18.3300', '18.3300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (61860, 531, NULL, 8714, '2634', 'COLDRILIEF SRP', NULL, '5.2100', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.1000', '10.0000', '2022-09-01', 'received', '5.2100', '5.2100', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61861, 531, NULL, 8825, '2745', 'AZILEX SUSP', NULL, '17.5000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '1.0000', '2022-09-01', '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 (61862, 531, NULL, 9885, '28207929', 'KEFROX 500MG TAB', NULL, '30.0000', '40.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '4.0000', '2022-09-01', '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 (61863, 531, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '3.1700', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5000', '23.0000', '2022-09-01', 'received', '3.1700', '3.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (61864, 531, NULL, 8187, '2107', 'CLOXACILLIN CAPS', NULL, '1.6100', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5000', '3.0000', '2022-09-01', 'received', '1.6100', '1.6100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (61865, 531, NULL, 8101, '2021', 'CHLO CAPS', NULL, '2.4900', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.5000', '33.0000', '2022-09-01', 'received', '2.4900', '2.4900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (61866, 531, NULL, 8186, '2106', 'AMPICILIN CAPS', NULL, '1.5600', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '7.0000', '2022-09-01', 'received', '1.5600', '1.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (61867, 531, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '19.5000', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '4.0000', '2022-09-01', '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 (61868, 531, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '21.6500', '29.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.2500', '3.0000', '2022-09-01', 'received', '21.6500', '21.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (61869, 531, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '5.0000', '2022-09-01', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61870, 531, NULL, 8304, '2224', 'POLYFER 200ML', NULL, '8.8000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2000', '3.0000', '2022-09-01', 'received', '8.8000', '8.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (61871, 531, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '26.0000', '2022-09-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 (61872, 531, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '40.0000', '53.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '3.0000', '2022-09-01', 'received', '40.0000', '40.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61873, 531, NULL, 7518, '1438', 'VERMOX TAB', NULL, '9.3500', '12.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '0.0000', '2022-09-01', 'received', '9.3500', '9.3500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61874, 531, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '9.0000', '2022-09-01', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61875, 531, NULL, 9088, '3008', 'ZUBES EXTRA STRONG', NULL, '17.0000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '6.0000', '2022-09-01', '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 (61876, 531, NULL, 7886, '1806', 'ABONIKI', NULL, '5.5000', '7.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '7.0000', '2022-09-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 (61877, 531, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '31.4000', '41.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.2000', '3.0000', '2022-09-01', 'received', '31.4000', '31.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '31.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 (61878, 531, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '8.6400', '11.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9200', '3.0000', '2022-09-01', 'received', '8.6400', '8.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (61879, 531, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '2.0000', '2022-09-01', 'received', '16.9000', '16.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.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 (61880, 531, NULL, 7509, '1429', 'ROOTER', NULL, '7.0000', '10.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '8.0000', '2022-09-01', '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 (61881, 531, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2022-09-01', '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 (61882, 531, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '8.0000', '2022-09-01', '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 (61883, 531, NULL, 8753, '2673', 'GANA BALM', NULL, '4.7000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '8.0000', '2022-09-01', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (61884, 531, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2022-09-01', '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 (61885, 531, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '21.0000', '2022-09-01', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (61886, 531, NULL, 9691, '09276419', 'WELLKID SYR', NULL, '61.8000', '82.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '185.4000', '2.0000', '2022-09-01', 'received', '61.8000', '61.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '61.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 (61887, 531, NULL, 7401, '1321', 'WELLBABY Syr', NULL, '74.3000', '98.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.3000', '0.0000', '2022-09-01', 'received', '74.3000', '74.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '74.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 (61888, 531, NULL, 7883, '1803', 'EVECARE', NULL, '33.8000', '45.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '2.0000', '2022-09-01', 'received', '33.8000', '33.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (61889, NULL, NULL, 1495, '', '', 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 (61890, NULL, NULL, 2540, '', '', 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 (61891, NULL, NULL, 1985, '', '', 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 (61892, NULL, NULL, 9963, '', '', 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 (61893, 532, NULL, 8032, '1952', 'FISHERMAN', NULL, '7.0000', '9.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '18.0000', '2022-09-01', 'received', '7.0000', '7.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (61894, 532, NULL, 10004, '14688047', 'Tramadol 100mg Retard', NULL, '2.5100', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.6000', '22.0000', '2022-09-01', 'received', '2.5100', '2.5100', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.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 (61895, 532, NULL, 7474, '1394', 'KOFOF BABY', NULL, '7.1500', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '4.0000', '2022-09-01', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (61896, 532, NULL, 9330, '3250', 'APETATRUST', NULL, '14.5000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '5.0000', '2022-09-01', '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 (61897, 532, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '32.8000', '43.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.4000', '0.0000', '2022-09-01', 'received', '32.8000', '32.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.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 (61898, 532, NULL, 10012, '73198827', 'SUDAFED BLOCK NOSE SPRAY', NULL, '42.7000', '56.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.4000', '2.0000', '2022-09-01', 'received', '42.7000', '42.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.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 (61899, 532, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.3300', '2.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.8400', '48.0000', '2022-09-01', 'received', '1.3300', '1.3300', '48.0000', NULL, NULL, 1, 'pc', '48.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 (61900, 532, NULL, 7925, '1845', 'NEXCOFER B/S', NULL, '9.9000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '4.0000', '2022-09-01', '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 (61901, 532, NULL, 7748, '1668', 'VIROL', NULL, '9.1500', '12.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '3.0000', '2022-09-01', 'received', '9.1500', '9.1500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.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 (61902, 532, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '33.3000', '44.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.5000', '2.0000', '2022-09-01', 'received', '33.3000', '33.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.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 (61903, 532, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '3.0000', '2022-09-01', 'received', '10.6000', '10.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61904, 532, NULL, 8714, '2634', 'COLDRILIEF SRP', NULL, '5.2100', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0500', '3.0000', '2022-09-01', 'received', '5.2100', '5.2100', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61905, 532, NULL, 7678, '1598', 'CETAPOL PM', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-09-01', '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 (61906, 532, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '6.0000', '2022-09-01', '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 (61907, 532, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5000', '6.0000', '2022-09-01', 'received', '4.7000', '4.7000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (61908, 532, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '5.0000', '2022-09-01', '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 (61909, 532, NULL, 8194, '2114', 'MALIN JUNIOR', NULL, '7.5000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '3.0000', '2022-09-01', '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 (61910, 532, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.9400', '10.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6400', '1.0000', '2022-09-01', 'received', '7.9400', '7.9400', '6.0000', NULL, NULL, 1, 'pc', '6.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 (61911, 532, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.9000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '1.0000', '2022-09-01', 'received', '15.9000', '15.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.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 (61912, 532, NULL, 8413, '2333', 'COAFS', NULL, '82.5000', '120.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '247.5000', '3.0000', '2022-09-01', 'received', '82.5000', '82.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '82.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61913, 532, NULL, 7928, '1848', 'BENDRO 5MG', NULL, '13.8000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-09-01', 'received', '13.8000', '13.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (61914, 532, NULL, 8038, '1958', 'BENDRO 2.5', NULL, '6.7000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '5.0000', '2022-09-01', '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 (61915, 532, NULL, 7378, '1298', 'ATACAND PLUS 16/12.5MG', NULL, '235.7300', '311.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '235.7300', '1.0000', '2022-09-01', 'received', '235.7300', '235.7300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '235.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 (61916, 532, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-09-01', '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 (61917, 532, NULL, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '3.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-09-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 (61918, 532, NULL, 8712, '2632', 'GUDAPET SRP', NULL, '7.1000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-09-01', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61919, 532, NULL, 7513, '1433', 'TAMSULOSIN 400', NULL, '18.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2022-09-01', '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 (61920, 532, NULL, 7356, '1276', 'BIOFGERON CAPS', NULL, '23.5000', '31.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.0000', '6.0000', '2022-09-01', 'received', '23.5000', '23.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '23.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61921, 532, NULL, 7333, '1253', 'MR Q', NULL, '4.2000', '5.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '24.0000', '2022-09-01', 'received', '4.2000', '4.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (61922, 532, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3000', '8.0000', '2022-09-01', 'received', '3.6300', '3.6300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (61923, 532, NULL, 10013, '88234054', 'BASECAM CAP(PIROXICAM)', NULL, '1.1900', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8000', '20.0000', '2022-09-01', 'received', '1.1900', '1.1900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (61924, 532, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-01', '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 (61925, 532, NULL, 7402, '1322', 'VERMOX SUSP', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '3.0000', '2022-09-01', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61926, 532, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '32.8000', '43.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.4000', '1.0000', '2022-09-01', 'received', '32.8000', '32.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.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 (61927, 532, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '42.4000', '56.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.2000', '1.0000', '2022-09-01', 'received', '42.4000', '42.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '42.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 (61928, 532, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '7.1500', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '10.0000', '2022-09-01', 'received', '7.1500', '7.1500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.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 (61929, 532, NULL, 7708, '1628', 'TEEDAR', NULL, '8.8000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '10.0000', '2022-09-01', '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 (61930, 532, NULL, 10016, '77640597', 'LAVI SUSP 228', NULL, '10.2000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '4.0000', '2022-09-01', 'received', '10.2000', '10.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61931, 532, NULL, 1739, 'PR-452', 'MENTHODEX LOZENGES (H&L) 15\' 50G', NULL, '9.8000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '3.0000', '2022-09-01', '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 (61932, 532, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '9.8000', '13.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-01', 'received', '9.8000', '9.8000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (61933, NULL, NULL, 10016, '', '', 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 (61934, NULL, NULL, 9190, '', '', 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 (61935, 533, NULL, 7787, '1707', 'FLUREST', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-09-02', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61936, 533, NULL, 8658, '2578', 'FLUCOR DAY', NULL, '17.6000', '23.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-09-02', 'received', '17.6000', '17.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (61937, 533, NULL, 8456, '2376', 'CARTEF DS', NULL, '8.3200', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.2000', '4.0000', '2022-09-02', 'received', '8.3200', '8.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (61938, 533, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.1300', '4.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.4000', '0.0000', '2022-09-02', 'received', '1.1300', '1.1300', '80.0000', NULL, NULL, 1, 'pc', '80.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 (61939, 533, NULL, 8467, '2387', 'FEROGLOBIN PLUS', NULL, '65.8000', '87.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.4000', '1.0000', '2022-09-02', 'received', '65.8000', '65.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '65.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 (61940, 533, NULL, 8081, '2001', 'BENDRO 2.5 LOCAL', NULL, '0.6500', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '50.0000', '2022-09-02', 'received', '0.6500', '0.6500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (61941, 533, NULL, 7999, '1919', 'ROBB INH', NULL, '1.7500', '3.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '6.0000', '2022-09-02', 'received', '1.7500', '1.7500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.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 (61942, 533, NULL, 10017, '67366915', 'SAMALIN ADULT(NO DROWSY) SYR', NULL, '8.4000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '4.0000', '2022-09-02', '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 (61943, 533, NULL, 9956, '45562069', 'SKYCEF 500MG TABLET', NULL, '15.9500', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.7500', '4.0000', '2022-09-02', 'received', '15.9500', '15.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (61944, 533, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '8.8000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6000', '1.0000', '2022-09-02', 'received', '8.8000', '8.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (61945, 533, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.7100', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-09-02', 'received', '4.7100', '4.7100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (61946, 533, NULL, 7817, '1737', 'ADOM W,G CAPS', NULL, '18.7000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.5000', '3.0000', '2022-09-02', 'received', '18.7000', '18.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61947, 533, NULL, 7420, '1340', 'DEEP FREEZE SPRAY 150ML', NULL, '47.7700', '63.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.5400', '2.0000', '2022-09-02', 'received', '47.7700', '47.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.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 (61948, 533, NULL, 9456, '13527138', 'INOPRIL OM&J', NULL, '3.5000', '5.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '11.0000', '2022-09-02', 'received', '3.5000', '3.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (61949, 533, NULL, 10015, '06288120', 'ESKADOL NYTE', NULL, '2.8000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '10.0000', '2022-09-02', '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 (61950, 533, NULL, 8459, '2379', 'ESKADOL', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-09-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 (61951, 533, NULL, 9272, '3192', 'LETAMOX TABLET 500MG', NULL, '3.0000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-02', '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 (61952, 533, NULL, 8417, '2337', 'COMBACT-N', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '6.0000', '2022-09-02', '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 (61953, 533, NULL, 10018, '70980658', 'ROBB OINT S/S', NULL, '0.8500', '1.2000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '36.0000', '2022-09-02', 'received', '0.8500', '0.8500', '40.0000', NULL, NULL, 1, 'pc', '40.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 (61954, 533, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '12.0000', '16.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '8.0000', '2022-09-02', '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 (61955, 533, NULL, 9856, '53412793', 'ROXIDOL', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '8.0000', '2022-09-02', '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 (61956, 533, NULL, 2854, '44570580', 'LORATADINE 10MG  TEVA', NULL, '6.0000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.0000', '2022-09-02', '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 (61957, 533, NULL, 10019, '67690422', 'FLUCOTRUST CAPS 150', NULL, '2.8900', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9000', '3.0000', '2022-09-02', 'received', '2.8900', '2.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (61958, 533, NULL, 9984, '07708627', 'ESKARON CAPS', NULL, '3.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '5.0000', '2022-09-02', '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 (61959, 534, NULL, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2022-09-02', '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 (61960, 534, NULL, 7838, '1758', 'AKANAYO KOO BITS', NULL, '19.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '1.0000', '2022-09-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 (61961, 534, NULL, 9326, '3246', 'DELAY MAN CAPS', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-09-02', '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 (61962, 534, NULL, 9325, '3245', 'LAWSON HERBAL MIXTURE', NULL, '11.0000', '14.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '2.0000', '2022-09-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 (61963, 534, NULL, 9007, '2927', 'LUCKY BITTERS', NULL, '19.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-09-02', '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 (61964, 534, NULL, 8664, '2584', 'LUCKY V CARE', NULL, '19.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2022-09-02', '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 (61965, 534, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.3000', '6.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '5.0000', '2022-09-02', '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 (61966, 534, NULL, 8534, '2454', 'PILIEF TAB', NULL, '38.5000', '51.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '1.0000', '2022-09-02', 'received', '38.5000', '38.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61967, 534, NULL, 8428, '2348', 'PROSLUV CAPS', NULL, '19.8000', '26.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '2.0000', '2022-09-02', '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 (61968, 534, NULL, 7833, '1753', 'PROSTAFIT', NULL, '19.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '2.0000', '2022-09-02', '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 (61969, 534, NULL, 8427, '2347', 'PROSTAT 60', NULL, '18.0000', '24.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2022-09-02', 'received', '18.0000', '18.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (61970, 534, NULL, 8739, '2659', 'SPANISH GARLIC', NULL, '15.8000', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '0.0000', '2022-09-02', 'received', '15.8000', '15.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (61971, 534, NULL, 7821, '1741', 'TIME HERBAL', NULL, '14.5000', '19.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '2.0000', '2022-09-02', '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 (61972, 534, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '13.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-09-02', '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 (61973, 534, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '4.0000', '2022-09-02', '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 (61974, 534, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '16.0000', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2022-09-02', '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 (61975, 534, NULL, 8596, '2516', 'POSTINOR LOCAL', NULL, '2.5000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-09-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 (61976, 534, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.8000', '2.5000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8000', '41.0000', '2022-09-02', 'received', '1.8000', '1.8000', '41.0000', NULL, NULL, 1, 'pc', '41.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 (61977, 534, NULL, 7903, '1823', 'FRANKO HERBAL', NULL, '14.0000', '18.4800', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2022-09-02', '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 (61978, NULL, NULL, 8903, '', '', 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 (61979, NULL, NULL, 2854, '', '', 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 (61980, NULL, NULL, 10000, '', '', 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 (61981, NULL, NULL, 7353, '', '', 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 (61982, NULL, NULL, 8189, '', '', 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 (61983, NULL, NULL, 10003, '', '', 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 (61984, NULL, NULL, 9962, '', '', 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 (62063, NULL, NULL, 7807, '', '', 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 (62064, NULL, NULL, 8067, '', '', 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 (62065, NULL, NULL, 8898, '', '', 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 (62066, 536, NULL, 2068, '79519848', 'LUFART DS', NULL, '15.5000', '20.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.0000', '0.0000', '2022-09-05', 'received', '15.5000', '15.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62067, 536, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.9000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '1.0000', '2022-09-05', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (62068, 536, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '15.0000', '20.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '5.0000', '2022-09-05', '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 (62069, 536, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '1.0000', '2022-09-05', '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 (62070, 536, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '8.8000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-09-05', '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 (62071, 536, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '0.0000', '2022-09-05', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62072, 536, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '5.9000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7000', '0.0000', '2022-09-05', 'received', '5.9000', '5.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62073, 536, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '0.0000', '2022-09-05', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (62074, 536, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '1.0000', '2022-09-05', '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 (62075, 536, NULL, 2156, '10421120', 'LEENA CAPS', NULL, '4.0200', '5.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0600', '3.0000', '2022-09-05', 'received', '4.0200', '4.0200', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62076, 536, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '32.8000', '44.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.0000', '0.0000', '2022-09-05', 'received', '32.8000', '32.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '32.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 (62077, 536, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-09-05', '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 (62078, 536, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '4.0000', '2022-09-05', '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 (62079, 536, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '29.2000', '38.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.2000', '6.0000', '2022-09-05', 'received', '29.2000', '29.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62080, 536, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '2.6000', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2022-09-05', 'received', '2.6000', '2.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62081, 536, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '4.3000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2022-09-05', 'received', '4.3000', '4.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62082, 536, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '9.4000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2000', '0.0000', '2022-09-05', 'received', '9.4000', '9.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (62083, 536, NULL, 10020, '99115818', 'BONJELA JUNIOR GEL 15G', NULL, '38.4000', '51.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.8000', '2.0000', '2022-09-05', 'received', '38.4000', '38.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.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 (62084, 536, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '52.6000', '69.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.2000', '2.0000', '2022-09-05', 'received', '52.6000', '52.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.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 (62085, 536, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '7.2000', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2022-09-05', '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 (62086, 536, NULL, 8413, '2333', 'COAFS', NULL, '82.5000', '120.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '2.0000', '2022-09-05', 'received', '82.5000', '82.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '82.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62087, 536, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.7000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '0.0000', '2022-09-05', '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 (62088, 536, NULL, 9995, '61273663', 'METROTRUST F', NULL, '8.2000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-09-05', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62089, 536, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '5.1000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-09-05', '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 (62090, 536, NULL, 1358, '011', 'LUEX CHILDREN CHESTY COUGH', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-09-05', '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 (62091, 536, NULL, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '8.4000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2022-09-05', 'received', '8.4000', '8.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62092, 536, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.7500', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '8.0000', '2022-09-05', 'received', '4.7500', '4.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62093, 536, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.8400', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2000', '1.0000', '2022-09-05', 'received', '2.8400', '2.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (62094, 536, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '0.0000', '2022-09-05', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (62095, 536, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.8000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '0.0000', '2022-09-05', 'received', '33.8000', '33.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.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 (62096, 536, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '2.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-09-05', '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 (62097, 536, NULL, 9815, '04029155', 'BLOCOLD TABLET', NULL, '0.9000', '1.2000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '33.0000', '2022-09-05', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62098, 536, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '7.1000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '6.0000', '2022-09-05', 'received', '7.1000', '7.1000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62099, 536, NULL, 8183, '2103', 'SHALCIP TZ', NULL, '6.6000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-09-05', '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 (62100, 536, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.3000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '0.0000', '2022-09-05', '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 (62101, 536, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-09-05', '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 (62102, 536, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '417.0000', '0.0000', '2022-09-05', 'received', '4.1700', '4.1700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '4.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 (62103, 536, NULL, 9496, '70277717', 'ENAFEN SUSP 60ML', NULL, '5.1000', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.3000', '0.0000', '2022-09-05', 'received', '5.1000', '5.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62104, 536, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-09-05', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (62105, 536, NULL, 9791, '08517383', 'BASECOLD TAB', NULL, '0.9000', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '26.0000', '2022-09-05', 'received', '0.9000', '0.9000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62106, 536, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '8.2000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '6.0000', '2022-09-05', 'received', '8.2000', '8.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62107, 536, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '7.4000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2022-09-05', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62108, 536, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '7.0000', '2022-09-05', '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 (62109, 536, NULL, 8017, '1937', 'SALOCOLD TAB', NULL, '0.6000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '23.0000', '2022-09-05', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62110, 536, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-09-05', '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 (62111, 536, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.3000', '0.0000', '2022-09-05', 'received', '9.5500', '9.5500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (62112, 536, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.6000', '0.8000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-05', 'received', '0.6000', '0.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (62113, 536, NULL, 9947, '97967472', 'STOPKOF DRY COUGH ADULT', NULL, '8.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '3.0000', '2022-09-05', '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 (62114, 536, NULL, 3060, '57292195', 'DIPHEX JNR', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '1.0000', '2022-09-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 (62115, 536, NULL, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '7.7000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '0.0000', '2022-09-05', 'received', '7.7000', '7.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62116, 536, NULL, 7495, '1415', 'KOFFEX JUNIOR', NULL, '5.3000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '1.0000', '2022-09-05', '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 (62117, 536, NULL, 9979, '49967696', 'SKYCLAV 1G', NULL, '15.5300', '20.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.2400', '0.0000', '2022-09-05', 'received', '15.5300', '15.5300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '15.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 (62118, 536, NULL, 3061, '71514531', 'DIPHEX BRONCHO& MUCOLYTIC SYR', NULL, '7.7000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '4.0000', '2022-09-05', 'received', '7.7000', '7.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62119, 536, NULL, 9685, '3434209', 'ACTIFED MULTI ACTION TABS 12\'S', NULL, '46.0000', '61.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '1.0000', '2022-09-05', 'received', '46.0000', '46.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (62120, 536, NULL, 9925, '39839096', 'EMIGKOF S SYR', NULL, '5.1000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '5.0000', '2022-09-05', 'received', '5.1000', '5.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62121, 536, NULL, 9926, '51491650', 'EMIGKOF D SYR', NULL, '5.1000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '5.0000', '2022-09-05', 'received', '5.1000', '5.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62122, 536, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '15.2000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.8000', '1.0000', '2022-09-05', 'received', '15.2000', '15.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (62123, 536, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '6.7000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '3.0000', '2022-09-05', '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 (62124, 536, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '6.9000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2022-09-05', 'received', '6.9000', '6.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62125, 536, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9900', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9500', '0.0000', '2022-09-05', 'received', '4.9900', '4.9900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62126, 536, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.0000', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-05', 'received', '3.0000', '3.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62127, 536, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '3.1000', '4.0000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '372.0000', '0.0000', '2022-09-05', 'received', '3.1000', '3.1000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (62128, 536, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '2.8000', '4.0000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '336.0000', '0.0000', '2022-09-05', 'received', '2.8000', '2.8000', '120.0000', NULL, NULL, 1, 'pc', '120.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 (62129, 536, NULL, 10004, '14688047', 'Tramadol 100mg Retard', NULL, '2.5100', '3.0000', '150.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '376.5000', '67.0000', '2022-09-05', 'received', '2.5100', '2.5100', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '2.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 (62130, 536, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '3.2000', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '1.0000', '2022-09-05', '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 (62131, 536, NULL, 8170, '2090', 'LEOPARD OINT', NULL, '5.7500', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2022-09-05', 'received', '5.7500', '5.7500', '2.0000', NULL, NULL, 1, 'pc', '2.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 (62132, 536, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.7500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-09-05', 'received', '3.7500', '3.7500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62133, 536, NULL, 9840, '00885109', 'LEXOCAP', NULL, '1.5000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2022-09-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 (62134, 536, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-09-05', '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 (62135, 536, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '3.0000', '2022-09-05', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62136, 536, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.5000', '0.0000', '2022-09-05', 'received', '3.0500', '3.0500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62137, 536, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '12.0000', '2022-09-05', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (62138, 536, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.7500', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-09-05', 'received', '0.7500', '0.7500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62139, 536, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.5200', '0.7000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '31.0000', '2022-09-05', '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 (62140, 536, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '5.2300', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.6000', '8.0000', '2022-09-05', 'received', '5.2300', '5.2300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62141, 536, NULL, 9503, '35154073', 'PELADOL EXTRA TAB', NULL, '2.5300', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '0.0000', '2022-09-05', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (62142, 536, NULL, 9821, '50696548', 'PARAFENAC', NULL, '1.8000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-09-05', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62143, 536, NULL, 9902, '14298485', 'CELECOXIB 200MG OER STRIP', NULL, '8.7300', '12.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.9500', '4.0000', '2022-09-05', 'received', '8.7300', '8.7300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (62144, 536, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '6.0000', '2022-09-05', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62145, 536, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '13.2000', '17.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '3.0000', '2022-09-05', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62146, 536, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '23.1000', '30.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '0.0000', '2022-09-05', 'received', '23.1000', '23.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (62147, 536, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '6.6700', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0400', '2.0000', '2022-09-05', 'received', '6.6700', '6.6700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.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 (62148, 536, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.4600', '3.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0400', '13.0000', '2022-09-05', 'received', '2.4600', '2.4600', '24.0000', NULL, NULL, 1, 'pc', '24.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 (62149, 536, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6700', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '3.0000', '2022-09-05', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (62150, 536, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '22.0000', '29.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-09-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 (62151, 536, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '7.2000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '1.0000', '2022-09-05', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62152, 536, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '7.8000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.0000', '2022-09-05', 'received', '7.8000', '7.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62153, 536, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '9.5000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-09-05', '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 (62154, 536, NULL, 10021, '84670394', 'BETASOL( EYE,EAR&NOSE)DROP', NULL, '5.2000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '6.0000', '2022-09-05', '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 (62155, 536, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2500', '0.0000', '2022-09-05', 'received', '8.2500', '8.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (62156, 536, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '18.9000', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-09-05', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62157, 536, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-09-05', '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 (62158, 536, NULL, 2070, '014', 'CHLO EYE ', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2022-09-05', '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 (62159, 536, NULL, 10023, '64844042', 'GENDA EYE/EAR DROP', NULL, '1.9500', '3.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5500', '3.0000', '2022-09-05', 'received', '1.9500', '1.9500', '9.0000', NULL, NULL, 1, 'pc', '9.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 (62160, 536, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '20.1300', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.6500', '2.0000', '2022-09-05', 'received', '20.1300', '20.1300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (62161, 536, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2022-09-05', '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 (62162, 536, NULL, 2657, '29274667', 'LOPERON CAPS', NULL, '0.5900', '1.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.9000', '4.0000', '2022-09-05', 'received', '0.5900', '0.5900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (62163, 536, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '33.5000', '44.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.0000', '1.0000', '2022-09-05', 'received', '33.5000', '33.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62164, 536, NULL, 10022, '63097002', 'MAXMOX SUSP 100ML', NULL, '5.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2022-09-05', '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 (62165, 536, NULL, 1755, 'PR-468', 'STOPKOF EXPT (ADULT) 100ML', NULL, '8.6000', '11.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '0.0000', '2022-09-05', 'received', '8.6000', '8.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62166, 536, NULL, 2637, '30755055', 'KIDICARE SYR', NULL, '14.0000', '18.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-09-05', '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 (62167, 536, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '99.3000', '131.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.6000', '0.0000', '2022-09-05', 'received', '99.3000', '99.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '99.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 (62168, 536, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '9.6000', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2022-09-05', '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 (62169, 536, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-09-05', '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 (62170, 536, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '10.7800', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.9000', '1.0000', '2022-09-05', 'received', '10.7800', '10.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (62171, 536, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-09-05', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62172, 536, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '17.5000', '23.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.5000', '0.0000', '2022-09-05', 'received', '17.5000', '17.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62173, 536, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '33.0000', '44.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '5.0000', '2022-09-05', 'received', '33.0000', '33.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62174, 536, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '48.2000', '64.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '385.6000', '5.0000', '2022-09-05', 'received', '48.2000', '48.2000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '48.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 (62175, 536, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-09-05', '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 (62176, 536, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '15.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-09-05', '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 (62177, 536, NULL, 7556, '1476', 'OLFEN GEL 50GM', NULL, '25.0000', '33.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-09-05', '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 (62178, 536, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '125.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.5000', '57.0000', '2022-09-05', 'received', '1.5400', '1.5400', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '1.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 (62179, 536, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.4100', '1.5000', '90.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.9000', '0.0000', '2022-09-05', 'received', '0.4100', '0.4100', '90.0000', NULL, NULL, 1, 'pc', '90.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 (62180, 536, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '90.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '67.0000', '2022-09-05', 'received', '0.6500', '0.6500', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '0.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 (62181, 536, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-09-05', '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 (62182, 536, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '9.4000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2000', '3.0000', '2022-09-05', 'received', '9.4000', '9.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (62183, 536, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '7.0000', '2022-09-05', '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 (62184, 536, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.4600', '0.7000', '300.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.0000', '48.0000', '2022-09-05', 'received', '0.4600', '0.4600', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '0.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 (62185, 536, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '9.3500', '12.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.0000', '9.0000', '2022-09-05', 'received', '9.3500', '9.3500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62186, 536, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '6.1000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '0.0000', '2022-09-05', '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 (62187, 536, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-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 (62188, 536, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.0000', '88.0000', '2022-09-05', 'received', '1.7800', '1.7800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (62189, 536, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '2.4900', '3.5000', '250.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '622.5000', '233.0000', '2022-09-05', 'received', '2.4900', '2.4900', '250.0000', NULL, NULL, 1, 'pc', '250.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 (62190, 536, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.4700', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '16.0000', '2022-09-05', 'received', '1.4700', '1.4700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62191, 536, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.8500', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5000', '0.0000', '2022-09-05', 'received', '6.8500', '6.8500', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62192, 536, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '26.0000', '35.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '2.0000', '2022-09-05', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62193, NULL, NULL, 1417, '', '', 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 (62194, 535, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '9.3600', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '4.0000', '2022-09-04', 'received', '9.3600', '9.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62195, 535, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '33.0000', '44.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '5.0000', '2022-09-04', 'received', '33.0000', '33.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62196, 535, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2022-09-04', '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 (62197, 535, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.5000', '40.0000', '2022-09-04', 'received', '4.1700', '4.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (62198, 535, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '5.2300', '7.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.2000', '9.0000', '2022-09-04', 'received', '5.2300', '5.2300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62199, 535, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '25.9000', '34.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '0.0000', '2022-09-04', '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 (62200, 535, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2500', '0.0000', '2022-09-04', 'received', '2.5500', '2.5500', '15.0000', NULL, NULL, 1, 'pc', '15.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 (62201, 535, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '5.0000', '2022-09-04', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62202, 535, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '6.0000', '2022-09-04', '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 (62203, 535, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '35.0000', '2022-09-04', 'received', '8.5000', '8.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62204, 535, NULL, 7736, '1656', 'NUGEL -O', NULL, '20.1300', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.6500', '0.0000', '2022-09-04', 'received', '20.1300', '20.1300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (62205, 535, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.8600', '2.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.6000', '42.0000', '2022-09-04', 'received', '1.8600', '1.8600', '60.0000', NULL, NULL, 1, 'pc', '60.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 (62206, 535, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '2.3000', '3.0000', '48.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '30.0000', '2022-09-04', 'received', '2.3000', '2.3000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (62207, 535, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2022-09-04', '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 (62208, 535, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '50.0000', '2022-09-04', 'received', '1.5400', '1.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (62209, 535, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '0.0000', '2022-09-04', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (62210, 535, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '9.5000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2022-09-04', '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 (62211, 535, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.5000', '4.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '60.0000', '2022-09-04', '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 (62212, 535, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '81.4000', '110.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '244.2000', '0.0000', '2022-09-04', 'received', '81.4000', '81.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62213, 535, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '22.0000', '2022-09-04', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (62214, 535, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0000', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '4.0000', '2022-09-04', '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 (62215, 535, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '50.0000', '2022-09-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 (62216, 535, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '4.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '7.0000', '2022-09-04', '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 (62217, 535, NULL, 7745, '1665', 'DUREX COND', NULL, '8.9000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '3.0000', '2022-09-04', 'received', '8.9000', '8.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (62218, 535, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '14.7000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '2.0000', '2022-09-04', 'received', '14.7000', '14.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62219, 535, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '18.9000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '1.0000', '2022-09-04', '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 (62220, 535, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '3.0000', '2022-09-04', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62221, 535, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-09-04', '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 (62222, 535, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '10.5000', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '7.0000', '2022-09-04', '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 (62223, 535, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '4.4800', '6.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.4000', '24.0000', '2022-09-04', 'received', '4.4800', '4.4800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (62224, 535, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '7.0000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-09-04', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62225, 535, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '62.0000', '82.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.0000', '3.0000', '2022-09-04', 'received', '62.0000', '62.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '62.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62226, 535, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '27.0000', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2022-09-04', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62227, 535, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '8.0000', '2022-09-04', '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 (62228, 535, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '1.0000', '2022-09-04', '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 (62229, 535, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.5000', '3.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '18.0000', '2022-09-04', '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 (62230, 535, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '17.0000', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '2.0000', '2022-09-04', '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 (62231, 535, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '5.5000', '7.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '18.0000', '2022-09-04', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62232, 535, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.1200', '16.0000', '2022-09-04', 'received', '2.0400', '2.0400', '28.0000', NULL, NULL, 1, 'pc', '28.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 (62233, 535, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2022-09-04', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62234, 535, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '18.1000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.5000', '0.0000', '2022-09-04', 'received', '18.1000', '18.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (62235, 535, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '2.8400', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.5200', '2.0000', '2022-09-04', 'received', '2.8400', '2.8400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.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 (62236, 535, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.2000', '4.0000', '2022-09-04', 'received', '8.4000', '8.4000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (62237, 535, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.8100', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2500', '21.0000', '2022-09-04', 'received', '0.8100', '0.8100', '25.0000', NULL, NULL, 1, 'pc', '25.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 (62238, 535, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '49.5300', '66.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5900', '0.0000', '2022-09-04', 'received', '49.5300', '49.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (62239, 535, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '17.8000', '23.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.0000', '4.0000', '2022-09-04', 'received', '17.8000', '17.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62240, 535, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '125.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.5000', '100.0000', '2022-09-04', 'received', '1.5400', '1.5400', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '1.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 (62241, 535, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '3.0000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-09-04', '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 (62242, 535, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-09-04', '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 (62243, 535, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7600', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '20.0000', '2022-09-04', 'received', '2.7600', '2.7600', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62244, 535, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.0000', '3.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '12.0000', '2022-09-04', 'received', '2.0000', '2.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (62245, 535, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.9500', '34.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.8500', '3.0000', '2022-09-04', 'received', '25.9500', '25.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.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 (62246, 535, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '8.8200', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4600', '0.0000', '2022-09-04', 'received', '8.8200', '8.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (62247, 535, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '8.5000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '5.0000', '2022-09-04', '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 (62248, 535, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.9000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.5000', '5.0000', '2022-09-04', 'received', '21.9000', '21.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.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 (62249, 535, NULL, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '23.0000', '31.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '3.0000', '2022-09-04', '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 (62250, 535, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '0.0000', '2022-09-04', 'received', '13.2000', '13.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (62251, 535, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '10.8000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2022-09-04', '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 (62252, 535, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '7.7000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '1.0000', '2022-09-04', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62253, 535, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-09-04', 'received', '1.5400', '1.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (62254, 535, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '4.5600', '6.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.8000', '29.0000', '2022-09-04', 'received', '4.5600', '4.5600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.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 (62255, 535, NULL, 10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', NULL, '3.8000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '9.0000', '2022-09-04', 'received', '3.8000', '3.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62256, 535, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2022-09-04', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62257, 535, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '10.0000', '2022-09-04', '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 (62258, 535, NULL, 9988, '55139424', 'JET2 COLD CAPS', NULL, '4.5000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '5.0000', '2022-09-04', '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 (62259, 535, NULL, 1395, 'PR-108', 'AMUZU GARLIC', NULL, '9.5000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-09-04', '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 (62260, 535, NULL, 3035, '31081429', 'LAWSON HERBAL', NULL, '11.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-09-04', '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 (62261, 535, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '19.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2022-09-04', '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 (62262, 535, NULL, 1417, 'PR-130', 'LUCKY V CARE', NULL, '19.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2022-09-04', '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 (62263, 535, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2022-09-04', '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 (62264, 535, NULL, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '15.8000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '0.0000', '2022-09-04', '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 (62265, 535, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '13.0000', '17.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-09-04', '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 (62266, 535, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '7.0000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '3.0000', '2022-09-04', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62267, 535, NULL, 2633, '36871243', 'GANA BALM', NULL, '4.7000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '5.0000', '2022-09-04', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62268, 535, NULL, 9714, '52997990', 'PROSTAJOY', NULL, '29.7000', '39.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '1.0000', '2022-09-04', 'received', '29.7000', '29.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (62269, 535, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2022-09-04', '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 (62270, 535, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.0000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '8.0000', '2022-09-04', '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 (62271, 535, NULL, 2395, '99288830', 'TINATETT 230', NULL, '27.5000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-09-04', 'received', '27.5000', '27.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62272, 535, NULL, 10024, '46463352', 'MAIZE MIX', NULL, '24.0000', '28.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '3.0000', '2022-09-04', 'received', '24.0000', '24.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62273, NULL, NULL, 2264, '', '', 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 (62274, NULL, NULL, 8189, '', '', 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 (62275, NULL, NULL, 8917, '', '', 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 (62276, NULL, NULL, 1738, '', '', 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 (62277, NULL, NULL, 2444, '', '', 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 (62278, NULL, NULL, 8038, '', '', 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 (62279, NULL, NULL, 9199, '', '', 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 (62280, NULL, NULL, 3085, '', '', 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 (62281, NULL, NULL, 9971, '', '', 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 (62282, NULL, NULL, 8203, '', '', 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 (62283, 537, NULL, 7650, '1570', 'HISTAZINE SRP', NULL, '4.7000', '6.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '6.0000', '2022-09-08', 'received', '4.7000', '4.7000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (62284, 537, NULL, 7651, '1571', 'RHIZINE SRP', NULL, '3.1000', '4.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.8000', '7.0000', '2022-09-08', 'received', '3.1000', '3.1000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (62285, 537, NULL, 7637, '1557', 'MAJOR EPHEDRINE', NULL, '8.1400', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.7000', '5.0000', '2022-09-08', 'received', '8.1400', '8.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (62286, 537, NULL, 7708, '1628', 'TEEDAR', NULL, '8.8000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '3.0000', '2022-09-08', '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 (62287, 537, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-09-08', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (62288, 537, NULL, 9401, '3321', 'KOFOF ADULT SYRUP', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-09-08', '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 (62289, 537, NULL, 7857, '1777', 'NUGEL', NULL, '19.3400', '26.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.7000', '2.0000', '2022-09-08', 'received', '19.3400', '19.3400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (62290, 537, NULL, 9445, '51778713', 'KOFFEX A', NULL, '7.7000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '3.0000', '2022-09-08', 'received', '7.7000', '7.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62291, 537, NULL, 8451, '2371', 'KLIRE ANTACID', NULL, '11.6000', '15.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '2.0000', '2022-09-08', 'received', '11.6000', '11.6000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62292, 537, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '15.2000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '5.0000', '2022-09-08', 'received', '15.2000', '15.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (62293, 537, NULL, 7780, '1700', 'LUFART TAB', NULL, '15.5000', '20.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '6.0000', '2022-09-08', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62294, 537, NULL, 7779, '1699', 'LUFART SUSP', NULL, '10.5000', '14.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '4.0000', '2022-09-08', 'received', '10.5000', '10.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (62295, 537, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '56.1000', '74.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.5000', '1.0000', '2022-09-08', 'received', '56.1000', '56.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '56.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 (62296, 537, NULL, 7825, '1745', 'ADOM KOO CAPS', NULL, '16.5000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '2.0000', '2022-09-08', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62297, 537, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '2.0000', '2022-09-08', '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 (62298, 537, NULL, 7509, '1429', 'ROOTER', NULL, '10.5000', '14.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2022-09-08', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62299, 537, NULL, 7820, '1740', 'ROOTER TYTONIC', NULL, '16.5000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '3.0000', '2022-09-08', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62300, 537, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.0000', '4.0000', '2022-09-08', 'received', '13.0000', '13.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (62301, 537, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-09-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 (62302, 537, NULL, 9199, '3119', 'KLOVIRAL PESS', NULL, '23.0000', '30.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '4.0000', '2022-09-08', 'received', '23.0000', '23.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (62303, 537, NULL, 8918, '2838', 'APC 10*10', NULL, '1.2200', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '7.0000', '2022-09-08', 'received', '1.2200', '1.2200', '30.0000', NULL, NULL, 1, 'pc', '30.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 (62304, 537, NULL, 8879, '2799', 'INFA V OINT', NULL, '20.9000', '28.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.7000', '0.0000', '2022-09-08', 'received', '20.9000', '20.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.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 (62305, 537, NULL, 7616, '1536', 'KETAZOLE CREAM', NULL, '5.2000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2022-09-08', '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 (62306, 537, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '6.0000', '2022-09-08', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62307, 537, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '16.9000', '22.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '0.0000', '2022-09-08', 'received', '16.9000', '16.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.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 (62308, 537, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '35.9000', '47.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '3.0000', '2022-09-08', '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 (62309, 537, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '47.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-08', 'received', '23.9100', '23.9100', '0.0000', NULL, NULL, 1, 'pc', '0.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 (62310, 537, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-09-08', '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 (62311, 537, NULL, 7513, '1433', 'TAMSULOSIN 400', NULL, '18.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2022-09-08', '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 (62312, 537, NULL, 7641, '1561', 'LYDIA', NULL, '8.5000', '11.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '32.0000', '2022-09-08', 'received', '8.5000', '8.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62313, 537, NULL, 7642, '1562', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '7.0000', '2022-09-08', '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 (62314, 537, NULL, 7640, '1560', 'LENOR', NULL, '4.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '17.0000', '2022-09-08', '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 (62315, 537, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '20.0000', '2022-09-08', 'received', '2.5500', '2.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62316, 537, NULL, 7411, '1331', 'CITRO C', NULL, '1.6000', '2.5000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '32.0000', '2022-09-08', 'received', '1.6000', '1.6000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (62317, 537, NULL, 7980, '1900', 'GACET 125', NULL, '0.5500', '0.9000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-09-08', '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 (62318, 537, NULL, 7981, '1901', 'GACET 250', NULL, '0.8000', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '36.0000', '2022-09-08', '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 (62319, 537, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-09-08', 'received', '8.2500', '8.2500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.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 (62320, 537, NULL, 7562, '1482', 'IBEX', NULL, '7.6300', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5200', '2.0000', '2022-09-08', 'received', '7.6300', '7.6300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.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 (62321, 537, NULL, 7558, '1478', 'DORETA', NULL, '3.1000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.0000', '0.0000', '2022-09-08', 'received', '3.1000', '3.1000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62322, 537, NULL, 8924, '2844', 'MYCOVIN 500', NULL, '7.9200', '10.5000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '16.0000', '2022-09-08', 'received', '7.9200', '7.9200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '7.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 (62323, 537, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '30.0000', '2022-09-08', 'received', '3.0000', '3.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (62324, 537, NULL, 9271, '3191', 'LETAFEN SUSPENSION', NULL, '1.9000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2022-09-08', 'received', '1.9000', '1.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62325, 537, NULL, 9332, '3252', 'ARZIGLOBIN SYRUP', NULL, '8.0000', '11.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '2.0000', '2022-09-08', '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 (62326, 537, NULL, 9953, '21608860', 'ARZIGLOBIN PLUS SYR', NULL, '8.9000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '4.0000', '2022-09-08', 'received', '8.9000', '8.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (62327, 537, NULL, 7356, '1276', 'BIOFGERON CAPS', NULL, '23.5000', '31.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5000', '3.0000', '2022-09-08', 'received', '23.5000', '23.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62328, 537, NULL, 7368, '1288', 'BONAPLEX250MLS', NULL, '18.9000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '3.0000', '2022-09-08', '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 (62329, 537, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.9100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '0.0000', '2022-09-08', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (62330, 537, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '32.8000', '43.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.0000', '2.0000', '2022-09-08', 'received', '32.8000', '32.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '32.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 (62331, 537, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '28.9000', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.7000', '2.0000', '2022-09-08', 'received', '28.9000', '28.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (62332, 537, NULL, 7666, '1586', 'DYMOL TAB', NULL, '4.9000', '6.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '13.0000', '2022-09-08', '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 (62333, 537, NULL, 9984, '07708627', 'ESKARON CAPS', NULL, '3.0000', '4.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-09-08', '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 (62334, 537, NULL, 7883, '1803', 'EVECARE', NULL, '33.8000', '45.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '0.0000', '2022-09-08', 'received', '33.8000', '33.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (62335, 537, NULL, 7787, '1707', 'FLUREST', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-09-08', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62336, 537, NULL, 10000, '61321174', 'KY GEL 82G', NULL, '38.0000', '51.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '2.0000', '2022-09-08', 'received', '38.0000', '38.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62337, 537, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-09-08', '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 (62338, 537, NULL, 8433, '2353', 'LIV 52 TAB', NULL, '33.0000', '44.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '3.0000', '2022-09-08', '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 (62339, 537, NULL, 7345, '1265', 'PREGNACARE CONCEPTION', NULL, '60.3000', '80.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.9000', '3.0000', '2022-09-08', 'received', '60.3000', '60.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '60.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 (62340, 537, NULL, 8967, '2887', 'S/SEAS JOINT SUPPLEX', NULL, '59.8000', '79.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.6000', '1.0000', '2022-09-08', 'received', '59.8000', '59.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.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 (62341, 537, NULL, 8077, '1997', 'MYCOSTAT', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2022-09-08', '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 (62342, 537, NULL, 7397, '1317', 'ZITHROMAX  SUSP', NULL, '99.3000', '131.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.3000', '1.0000', '2022-09-08', 'received', '99.3000', '99.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '99.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 (62343, 537, NULL, 9098, '3018', 'JOY VIKIL', NULL, '26.0000', '34.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.0000', '3.0000', '2022-09-08', 'received', '26.0000', '26.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (62344, 537, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '6.3200', '8.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '189.6000', '21.0000', '2022-09-08', 'received', '6.3200', '6.3200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '6.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 (62345, 537, NULL, 7872, '1792', 'STAGYL', NULL, '2.5000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-09-08', '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 (62346, 537, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '17.8400', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.2000', '2.0000', '2022-09-08', 'received', '17.8400', '17.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (62347, 537, NULL, 8189, '2109', 'METFOMIN DENK 1000', NULL, '20.8200', '27.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.2800', '3.0000', '2022-09-08', 'received', '20.8200', '20.8200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (62348, 537, NULL, 1364, '5021265244447', 'WELLWOMAN CAPS 70+', NULL, '30.6000', '40.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.4000', '4.0000', '2022-09-08', 'received', '30.6000', '30.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.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 (62349, 537, NULL, 7350, '1270', 'PERFECTIL', NULL, '33.1000', '44.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.4000', '3.0000', '2022-09-08', 'received', '33.1000', '33.1000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.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 (62350, 537, NULL, 9266, '3186', 'FOLIRON TONIC 200ML', NULL, '4.1000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-09-08', '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 (62351, 537, NULL, 8039, '1959', 'ACIDOM', NULL, '14.9000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8000', '2.0000', '2022-09-08', 'received', '14.9000', '14.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (62352, 537, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '20.0000', '2022-09-08', '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 (62353, 537, NULL, 8413, '2333', 'COAFS', NULL, '82.5000', '120.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '2.0000', '2022-09-08', 'received', '82.5000', '82.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '82.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62354, NULL, NULL, 7810, '', '', 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 (62355, NULL, NULL, 8306, '', '', 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 (62356, 538, NULL, 8689, '2609', 'LYDIA DAILY PILLS', NULL, '2.5000', '5.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '34.0000', '2022-09-08', 'received', '2.5000', '2.5000', '36.0000', NULL, NULL, 1, 'pc', '36.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 (62357, 538, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '3.0000', '2022-09-08', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62358, 538, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '8.0000', '2022-09-08', '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 (62359, 538, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.9600', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-09-08', 'received', '1.9600', '1.9600', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62360, 538, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '4.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-09-08', '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 (62361, 538, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '8.7800', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '0.0000', '2022-09-08', 'received', '8.7800', '8.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (62362, 538, NULL, 10006, '51711221', 'DUREX EXTRA SAFE CONDOM', NULL, '12.9800', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.9000', '0.0000', '2022-09-08', 'received', '12.9800', '12.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (62363, 538, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '2.3000', '3.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2022-09-08', '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 (62364, 538, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '0.0000', '2022-09-08', '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 (62365, 538, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '1.0500', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '99.0000', '2022-09-08', 'received', '1.0500', '1.0500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (62366, 538, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-09-08', '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 (62367, 538, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-09-08', '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 (62368, 538, NULL, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '2.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-09-08', '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 (62369, 538, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '4.7000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '0.0000', '2022-09-08', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62370, 538, NULL, 9827, '96346762', 'SCIMETHER TABLETS', NULL, '16.6600', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.3000', '0.0000', '2022-09-08', 'received', '16.6600', '16.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (62371, 538, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.8000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-09-08', '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 (62372, 538, NULL, 9917, '20455450', 'CAFALGIN CAPLET', NULL, '1.2300', '2.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '23.0000', '2022-09-08', 'received', '1.2300', '1.2300', '25.0000', NULL, NULL, 1, 'pc', '25.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 (62373, 538, NULL, 9745, '15413407', 'CAFALGIN JRN SUSP 100ML', NULL, '8.6000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '5.0000', '2022-09-08', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62374, 538, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '7.0000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-09-08', '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 (62375, 538, NULL, 9872, '27039848', 'GEBEXIME 500MG TAB', NULL, '17.3000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6000', '0.0000', '2022-09-08', '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 (62376, 538, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.7600', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2022-09-08', '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 (62377, 538, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '10.7000', '14.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '0.0000', '2022-09-08', '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 (62378, 538, NULL, 9209, '3129', 'CETRIZAN 10MG', NULL, '5.7500', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7500', '3.0000', '2022-09-08', 'received', '5.7500', '5.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62379, 538, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '9.6000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-09-08', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62380, 538, NULL, 9945, '60409156', 'AZIROCIN SUSP', NULL, '12.1000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5000', '0.0000', '2022-09-08', 'received', '12.1000', '12.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (62381, 538, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '0.0000', '2022-09-08', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62382, 538, NULL, 9995, '61273663', 'METROTRUST F', NULL, '8.2000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '2.0000', '2022-09-08', 'received', '8.2000', '8.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62383, 538, NULL, 9994, '70306758', 'GLUCO NAF PINEAPPLE', NULL, '11.6000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.2000', '2.0000', '2022-09-08', 'received', '11.6000', '11.6000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (62384, 538, NULL, 9993, '26519122', 'BENYLIN CHESTY COUGH 300ML', NULL, '91.2000', '121.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '273.6000', '3.0000', '2022-09-08', 'received', '91.2000', '91.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '91.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 (62385, 538, NULL, 9992, '76771843', 'FEMFRESH 250ML', NULL, '27.6000', '37.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '3.0000', '2022-09-08', 'received', '27.6000', '27.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '27.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 (62386, 538, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-09-08', '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 (62387, 538, NULL, 9990, '41628691', 'AMOXICILLIN 125/5ML SUSP EXETER', NULL, '7.8000', '11.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '9.0000', '2022-09-08', 'received', '7.8000', '7.8000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (62388, 538, NULL, 9986, '66967968', 'CIROTAMIN CAPS', NULL, '8.2000', '11.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '0.0000', '2022-09-08', '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 (62389, 538, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '0.0000', '2022-09-08', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62390, 538, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.9000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '3.0000', '2022-09-08', 'received', '15.9000', '15.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (62391, 538, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '27.9000', '37.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.5000', '2.0000', '2022-09-08', 'received', '27.9000', '27.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.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 (62392, 538, NULL, 2469, '50076979', 'Corsodyl mouth wash', NULL, '43.1000', '57.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.3000', '3.0000', '2022-09-08', 'received', '43.1000', '43.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '43.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 (62393, 538, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.1000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '2.0000', '2022-09-08', 'received', '9.1000', '9.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (62394, 538, NULL, 9715, '79148002', 'KOFLET LOZENGES', NULL, '10.4000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4000', '1.0000', '2022-09-08', 'received', '10.4000', '10.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.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 (62395, 538, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '24.1800', '32.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5400', '3.0000', '2022-09-08', 'received', '24.1800', '24.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.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 (62396, 538, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.5000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '3.0000', '2022-09-08', '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 (62397, 538, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2022-09-08', '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 (62398, 538, NULL, 1417, 'PR-130', 'LUCKY V CARE', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2022-09-08', '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 (62399, 538, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-09-08', '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 (62400, 538, NULL, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '15.8000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '0.0000', '2022-09-08', 'received', '15.8000', '15.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62401, 538, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '13.0000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '2.0000', '2022-09-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 (62402, 538, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.9000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.7000', '2.0000', '2022-09-08', 'received', '21.9000', '21.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (62403, 538, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-09-08', '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 (62404, 538, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '3.0000', '2022-09-08', '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 (62405, 538, NULL, 2633, '36871243', 'GANA BALM', NULL, '4.7000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '9.0000', '2022-09-08', 'received', '4.7000', '4.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62406, 538, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '6.7000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '4.0000', '2022-09-08', '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 (62407, 538, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '7.9400', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6400', '0.0000', '2022-09-08', 'received', '7.9400', '7.9400', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62408, 538, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '3.0000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-09-08', '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 (62409, 538, NULL, 2627, '47630599', 'ATORVASTATIN 10MG', NULL, '10.5000', '14.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-09-08', 'received', '10.5000', '10.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (62410, 538, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-09-08', 'received', '3.5000', '3.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62411, 538, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '5.2000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2022-09-08', 'received', '5.2000', '5.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (62412, 538, NULL, 9445, '51778713', 'KOFFEX A', NULL, '7.7000', '10.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.9000', '6.0000', '2022-09-08', 'received', '7.7000', '7.7000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (62413, 538, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8000', '7.0000', '2022-09-08', 'received', '0.5900', '0.5900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (62414, 538, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '16.1000', '21.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4000', '0.0000', '2022-09-08', 'received', '16.1000', '16.1000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (62415, 538, NULL, 8184, '2104', 'ENACEF 500', NULL, '3.0000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-09-08', '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 (62416, 538, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '7.1800', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.9000', '0.0000', '2022-09-08', 'received', '7.1800', '7.1800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (62417, 538, NULL, 9592, '11957121', 'VIVADONA CAPS 20\'S', NULL, '3.2000', '2.1000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '40.0000', '2022-09-08', '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 (62418, 538, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '17.0000', '22.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-09-08', '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 (62419, 538, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.8200', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2022-09-08', 'received', '0.8200', '0.8200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (62420, 538, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '9.9600', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.8800', '0.0000', '2022-09-08', 'received', '9.9600', '9.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (62421, 538, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '13.8000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '3.0000', '2022-09-08', 'received', '13.8000', '13.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (62422, 538, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '4.4800', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.6000', '19.0000', '2022-09-08', 'received', '4.4800', '4.4800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (62423, 538, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.7500', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-09-08', '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 (62424, 538, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.1300', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2000', '17.0000', '2022-09-08', 'received', '1.1300', '1.1300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62425, 538, NULL, 9819, '91890544', 'BLUMOON 100MG', NULL, '3.6300', '5.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.7500', '14.0000', '2022-09-08', 'received', '3.6300', '3.6300', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '3.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 (62426, 538, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '4.9000', '6.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2022-09-08', 'received', '4.9000', '4.9000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62427, 538, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '5.3000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '1.0000', '2022-09-08', '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 (62428, 538, NULL, 9856, '53412793', 'ROXIDOL', NULL, '2.5000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-09-08', '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 (62429, 538, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '1.0000', '2022-09-08', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62430, 538, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-09-08', '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 (62431, 538, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '42.4000', '56.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8000', '0.0000', '2022-09-08', 'received', '42.4000', '42.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.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 (62432, 538, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '24.0000', '2022-09-08', '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 (62433, 538, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '4.6000', '6.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.0000', '48.0000', '2022-09-08', 'received', '4.6000', '4.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62434, 538, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '10.0000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-08', '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 (62435, 538, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '8.8000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '2.0000', '2022-09-08', '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 (62436, 538, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '2.1700', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7000', '0.0000', '2022-09-08', 'received', '2.1700', '2.1700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (62437, 538, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.5600', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '22.0000', '2022-09-08', 'received', '1.5600', '1.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (62438, 538, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.8000', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '17.0000', '2022-09-08', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62439, 538, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '27.0000', '36.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-09-08', 'received', '27.0000', '27.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (62440, 538, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '13.0000', '2022-09-08', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62441, 538, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '7.4000', '10.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '1.0000', '2022-09-08', 'received', '7.4000', '7.4000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (62442, 538, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '25.8000', '34.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.4000', '1.0000', '2022-09-08', 'received', '25.8000', '25.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.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 (62443, 538, NULL, 2245, '77795384', 'MAGACID TABLETS', NULL, '0.7000', '1.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '25.0000', '2022-09-08', 'received', '0.7000', '0.7000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (62444, 538, NULL, 1905, 'PR-618', 'ANTASIL', NULL, '0.5200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2022-09-08', '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 (62445, 538, NULL, 9105, '3025', 'GASTRONE TAB', NULL, '2.1600', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2022-09-08', 'received', '2.1600', '2.1600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (62446, 538, NULL, 7612, '1532', 'DOXYCYCLINE CAPS LETAP', NULL, '1.7500', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-09-08', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (62447, 538, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '9.5000', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '4.0000', '2022-09-08', '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 (62448, 538, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '25.9000', '34.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.6000', '0.0000', '2022-09-08', '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 (62449, 538, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '30.0000', '40.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-08', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (62450, 538, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.6000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4000', '3.0000', '2022-09-08', 'received', '1.6000', '1.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (62451, 538, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '14.7600', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0400', '1.0000', '2022-09-08', 'received', '14.7600', '14.7600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (62452, 538, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '20.1300', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5200', '0.0000', '2022-09-08', 'received', '20.1300', '20.1300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (62453, 538, 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', '0.0000', '2022-09-08', '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 (62454, 538, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '4.7000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '0.0000', '2022-09-08', '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 (62455, 538, NULL, 8877, '2797', 'NEXCOFER BLOOD TONIC 100ML', NULL, '5.7000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.1000', '2.0000', '2022-09-08', 'received', '5.7000', '5.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.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 (62456, 538, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2022-09-08', '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 (62457, NULL, NULL, 3044, '', '', 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 (62458, NULL, NULL, 9996, '', '', 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 (62459, NULL, NULL, 8529, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (62460, NULL, NULL, 1627, '', '', 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 (62461, NULL, NULL, 9680, '', '', 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 (62462, NULL, NULL, 7498, '', '', 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 (62463, NULL, NULL, 8482, '', '', 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 (62464, NULL, NULL, 8727, '', '', 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 (62465, NULL, NULL, 2357, '', '', 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 (62466, NULL, NULL, 1834, '', '', 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 (62467, NULL, NULL, 8331, '', '', 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 (62468, NULL, NULL, 7330, '', '', 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 (62469, NULL, NULL, 9907, '', '', 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 (62470, NULL, NULL, 9908, '', '', 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 (62471, NULL, NULL, 9905, '', '', 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 (62472, NULL, NULL, 7323, '', '', 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 (62473, NULL, NULL, 9951, '', '', 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 (62474, 539, NULL, 8772, '2692', 'HOLLANDIA', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-09-12', '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 (62475, 539, NULL, 9999, '84888211', 'HOLLANDIA SS/S', NULL, '3.1000', '5.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '23.0000', '2022-09-12', 'received', '3.1000', '3.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (62476, 539, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '5.0000', '6.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '21.0000', '2022-09-12', 'received', '5.0000', '5.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (62477, 539, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '19.0000', '2022-09-12', 'received', '1.4500', '1.4500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (62478, 539, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.3000', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '15.0000', '2022-09-12', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (62479, 539, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-09-12', '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 (62480, 539, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '9.0000', '2022-09-12', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (62481, 539, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '4.0000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '11.0000', '2022-09-12', '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 (62482, 539, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.8500', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '10.0000', '2022-09-12', 'received', '4.8500', '4.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (62483, 539, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '4.1000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '9.0000', '2022-09-12', 'received', '4.1000', '4.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62484, 539, NULL, 9588, '94799417', 'LUCOSADE CAN', NULL, '6.8000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6000', '12.0000', '2022-09-12', 'received', '6.8000', '6.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62485, 539, NULL, 9587, '22989390', 'LUCOSADE 380ML', NULL, '7.6000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '6.0000', '2022-09-12', 'received', '7.6000', '7.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62486, 539, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2022-09-12', '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 (62487, 539, NULL, 9213, '3133', 'ROX DRINKS', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-09-12', '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 (62492, NULL, NULL, 9030, '', '', 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 (62493, NULL, NULL, 9024, '', '', 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 (62494, NULL, NULL, 10025, '', '', 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 (62500, NULL, NULL, 7875, '', '', 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 (62501, NULL, NULL, 7327, '', '', 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 (62502, NULL, NULL, 9720, '', '', 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 (62503, NULL, NULL, 9808, '', '', 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 (62504, 541, NULL, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', NULL, '17.5000', '23.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '2.0000', '2022-09-14', '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 (62505, 541, NULL, 8615, '2535', 'MOVATE', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-09-14', '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 (62506, 541, NULL, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '11.0000', '14.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '2.0000', '2022-09-14', '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 (62507, 541, NULL, 8951, '2871', 'LEMONVATE', NULL, '7.0000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-09-14', '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 (62508, 541, NULL, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', NULL, '7.0000', '9.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '2.0000', '2022-09-14', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (62509, 541, NULL, 9480, '17555077', 'BEAUTY FORMULAS FACIAL WIPES', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-09-14', '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 (62510, 541, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '8.0000', '10.5600', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2022-09-14', '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 (62511, 541, NULL, 2517, '94045463', 'TENDRINA CREAM S/S', NULL, '7.0000', '9.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-09-14', 'received', '7.0000', '7.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (62512, 541, NULL, 8234, '2154', 'JRA M/S', NULL, '13.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2022-09-14', '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 (62513, 541, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '6.0000', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2022-09-14', '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 (62514, 541, NULL, 7380, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', NULL, '12.5000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '1.0000', '2022-09-14', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62515, 541, NULL, 9214, '3134', 'WELCHS DRINK', NULL, '20.0000', '24.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '4.0000', '2022-09-14', '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 (62516, 541, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '6.6000', '9.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '3.0000', '2022-09-14', '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 (62517, 541, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.5000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '4.0000', '2022-09-14', '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 (62518, 541, NULL, 8746, '2666', 'CAN COKE/FANTA', NULL, '5.0000', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '9.0000', '2022-09-14', '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 (62519, 541, NULL, 8772, '2692', 'HOLLANDIA', NULL, '15.0000', '18.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-09-14', '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 (62520, 541, NULL, 9090, '3010', 'VITAMILK', NULL, '15.0000', '19.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-09-14', '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 (62521, 541, NULL, 8743, '2663', 'CERES DRINK', NULL, '20.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-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 (62522, 541, NULL, 8759, '2679', 'FRUTELLI', NULL, '11.0000', '14.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-09-14', '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 (62523, 541, NULL, 8745, '2665', 'DON SIMON', NULL, '14.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-09-14', '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 (62524, 541, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.0000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '9.0000', '2022-09-14', '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 (62525, 541, NULL, 9469, '40088756', 'PANACHE', NULL, '5.5000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '8.0000', '2022-09-14', '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 (62526, 541, NULL, 8767, '2687', 'KISS DRINK', NULL, '10.0000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-09-14', '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 (62527, 541, NULL, 8769, '2689', 'HUNTERS', NULL, '8.8300', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '5.0000', '2022-09-14', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62528, 541, NULL, 9471, '85188534', 'CATUABA DRINK', NULL, '16.0000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-09-14', '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 (62529, 541, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.8500', '6.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '7.0000', '2022-09-14', 'received', '4.8500', '4.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (62530, 541, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-09-14', '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 (62531, 541, NULL, 2486, '46475252', 'CINNAMON STICKS', NULL, '4.0000', '5.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '8.0000', '2022-09-14', '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 (62532, NULL, NULL, 10019, '', '', 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 (62533, NULL, NULL, 9898, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62534, NULL, NULL, 2497, '', '', 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 (62535, NULL, NULL, 8482, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (62536, NULL, NULL, 7640, '', '', 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 (62537, NULL, NULL, 8457, '', '', 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 (62538, NULL, NULL, 9024, '', '', 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 (62539, NULL, NULL, 8482, '', '', 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 (62540, 542, NULL, 7860, '1780', 'BEEHIVE', NULL, '24.1600', '32.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.4800', '2.0000', '2022-09-16', 'received', '24.1600', '24.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.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 (62541, 542, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-09-16', '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 (62542, 542, NULL, 10026, '44369291', 'LG LOSACAR TAB 100MG', NULL, '16.6000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '5.0000', '2022-09-16', 'received', '16.6000', '16.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (62543, 542, NULL, 7705, '1625', 'POSTINOR', NULL, '29.9900', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9800', '0.0000', '2022-09-16', '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 (62544, 542, NULL, 7750, '1670', 'CALPOL 2+', NULL, '47.8000', '63.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.4000', '3.0000', '2022-09-16', 'received', '47.8000', '47.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '47.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 (62545, 542, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '16.0000', '21.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '5.0000', '2022-09-16', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (62546, 542, NULL, 7753, '1673', 'ZULU', NULL, '3.7800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '10.0000', '2022-09-16', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62547, 542, NULL, 8084, '2004', 'METROLEX F SUSP', NULL, '18.5200', '24.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.6000', '5.0000', '2022-09-16', 'received', '18.5200', '18.5200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (62548, 542, NULL, 7321, '1241', 'METROLEX-F TABS', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2022-09-16', '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 (62549, 542, NULL, 8659, '2579', 'KIDIMIN', NULL, '8.7000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '3.0000', '2022-09-16', '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 (62550, 542, NULL, 7918, '1838', 'ZUBES CHILD', NULL, '11.1100', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.3300', '0.0000', '2022-09-16', 'received', '11.1100', '11.1100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (62551, 542, NULL, 7865, '1785', 'GO COUGH', NULL, '6.8300', '9.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4900', '3.0000', '2022-09-16', 'received', '6.8300', '6.8300', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62552, 542, NULL, 9174, '3094', 'GEN M SUSP', NULL, '26.3000', '35.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '1.0000', '2022-09-16', 'received', '26.3000', '26.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (62553, 542, NULL, 8852, '2772', 'O-FORMIN 500', NULL, '0.6500', '1.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2022-09-16', 'received', '0.6500', '0.6500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (62554, 542, NULL, 7853, '1773', 'BELLS VIT C', NULL, '14.8000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '5.0000', '2022-09-16', 'received', '14.8000', '14.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62555, 542, NULL, 10027, '09068658', 'FOLIRON CAPS', NULL, '3.5000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '4.0000', '2022-09-16', '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 (62556, 542, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '26.9000', '35.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.7000', '2.0000', '2022-09-16', 'received', '26.9000', '26.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (62557, 542, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '10.0700', '13.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.8400', '11.0000', '2022-09-16', 'received', '10.0700', '10.0700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '10.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 (62558, 542, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '16.0000', '2022-09-16', '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 (62559, 542, NULL, 7753, '1673', 'ZULU', NULL, '3.7800', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '6.0000', '2022-09-16', 'received', '3.7800', '3.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62560, 542, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '24.0000', '32.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '2.0000', '2022-09-16', 'received', '24.0000', '24.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62561, 542, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '5.3000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '8.0000', '2022-09-16', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62562, 542, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-09-16', '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 (62563, 542, NULL, 7799, '1719', 'STARWIN S/S', NULL, '9.5000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '0.0000', '2022-09-16', '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 (62564, 542, NULL, 9892, '60055615', 'VAGID CL SUPPOS', NULL, '14.0000', '18.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-09-16', '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 (62565, 542, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '4.0000', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-09-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 (62566, 542, NULL, 7743, '1663', 'KISS', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2022-09-16', '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 (62567, 542, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '4.0000', '2022-09-16', '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 (62568, 542, NULL, 7730, '1650', 'MENTOS FRESH ACTION', NULL, '0.1900', '0.2000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '73.0000', '2022-09-16', 'received', '0.1900', '0.1900', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (62569, NULL, NULL, 9856, '', '', 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 (62570, NULL, NULL, 2494, '', '', 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 (62571, NULL, NULL, 2213, '', '', 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 (62714, NULL, NULL, 1603, '', '', 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 (62715, NULL, NULL, 7868, '', '', 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 (62716, 545, NULL, 2633, '36871243', 'GANA BALM', NULL, '4.7000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '3.0000', '2022-09-18', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62717, 545, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '8.0000', '2022-09-18', '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 (62718, 545, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-09-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 (62719, 545, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '7.2000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '4.0000', '2022-09-18', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62720, 545, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '7.0000', '2022-09-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 (62721, 545, NULL, 9878, '15198319', 'GEBEXIME SUSP', NULL, '9.6000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2022-09-18', 'received', '9.6000', '9.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62722, 545, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '47.2000', '62.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4000', '2.0000', '2022-09-18', 'received', '47.2000', '47.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.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 (62723, 545, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6700', '9.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0400', '10.0000', '2022-09-18', 'received', '6.6700', '6.6700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.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 (62724, 545, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '6.6700', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '3.0000', '2022-09-18', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (62725, 545, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '4.5600', '6.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '25.0000', '2022-09-18', 'received', '4.5600', '4.5600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.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 (62726, 545, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.7500', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '8.0000', '2022-09-18', '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 (62727, 545, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '31.4000', '41.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.0000', '4.0000', '2022-09-18', 'received', '31.4000', '31.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '31.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 (62728, 545, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.9000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '0.0000', '2022-09-18', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (62729, 545, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '8.0000', '2022-09-18', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (62730, 545, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '8.0000', '2022-09-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 (62731, 545, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '7.6300', '10.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.7800', '5.0000', '2022-09-18', 'received', '7.6300', '7.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.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 (62732, 545, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '12.5000', '16.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '4.0000', '2022-09-18', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62733, 545, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '10.9800', '14.5000', '32.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.3600', '32.0000', '2022-09-18', 'received', '10.9800', '10.9800', '32.0000', NULL, NULL, 1, 'pc', '32.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 (62734, 545, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '4.0000', '2022-09-18', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62735, 545, NULL, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', NULL, '4.6000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '5.0000', '2022-09-18', 'received', '4.6000', '4.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62736, 545, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '7.0000', '9.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '7.0000', '2022-09-18', '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 (62737, 545, NULL, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', NULL, '13.0000', '17.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '6.0000', '2022-09-18', 'received', '13.0000', '13.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62738, 545, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '9.8000', '13.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '12.0000', '2022-09-18', 'received', '9.8000', '9.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62739, 545, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-09-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 (62740, 545, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '20.1300', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.6500', '3.0000', '2022-09-18', 'received', '20.1300', '20.1300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (62741, 545, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '19.3400', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.7000', '3.0000', '2022-09-18', 'received', '19.3400', '19.3400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.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 (62742, 545, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.8000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-09-18', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62743, 545, NULL, 7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', NULL, '8.6000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '5.0000', '2022-09-18', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62744, 545, NULL, 2068, '79519848', 'LUFART DS', NULL, '15.5000', '20.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '4.0000', '2022-09-18', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62745, 545, NULL, 7674, '1594', 'GEBEDOL', NULL, '1.8300', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '29.0000', '2022-09-18', 'received', '1.8300', '1.8300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (62746, 545, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '15.0000', '2022-09-18', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (62747, 545, NULL, 8490, '2410', 'NUROFEN SRP', NULL, '27.3000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '1.0000', '2022-09-18', 'received', '27.3000', '27.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (62748, 545, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '66.0000', '2022-09-18', 'received', '0.4100', '0.4100', '100.0000', NULL, NULL, 1, 'pc', '100.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 (62749, 545, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '66.0000', '2022-09-18', '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 (62750, 545, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '6.7000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '3.0000', '2022-09-18', '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 (62751, 545, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7500', '5.0000', '2022-09-18', 'received', '9.5500', '9.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (62752, 545, NULL, 9598, '51188638', 'RONFIT COLD D SYRUP', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-09-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 (62753, 545, NULL, 9424, '34445', 'RONFIT COLD P JNR SYRUP', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-09-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 (62754, 545, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '3.1000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5000', '2.0000', '2022-09-18', 'received', '3.1000', '3.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62755, 545, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '6.9000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2022-09-18', '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 (62756, 545, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0500', '0.0000', '2022-09-18', 'received', '14.2100', '14.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (62757, 545, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '10.5000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '5.0000', '2022-09-18', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62758, 545, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '59.0000', '78.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '2.0000', '2022-09-18', 'received', '59.0000', '59.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62759, 545, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '65.0000', '86.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.0000', '1.0000', '2022-09-18', 'received', '65.0000', '65.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62760, 545, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-09-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 (62761, 545, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '13.3000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.5000', '4.0000', '2022-09-18', 'received', '13.3000', '13.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62762, 545, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.6000', '0.8000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '68.0000', '2022-09-18', 'received', '0.6000', '0.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (62763, 545, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '70.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '25.0000', '2022-09-18', 'received', '0.2600', '0.2600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (62764, 545, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '3.0000', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-09-18', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62765, 545, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '17.8400', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.2000', '2.0000', '2022-09-18', 'received', '17.8400', '17.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (62766, 545, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.7000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '3.0000', '2022-09-18', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62767, 545, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.4000', '2.0000', '2022-09-18', '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 (62768, 545, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '3.6000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '9.0000', '2022-09-18', '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 (62769, 545, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.3600', '0.5000', '35.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.6000', '21.0000', '2022-09-18', 'received', '0.3600', '0.3600', '35.0000', NULL, NULL, 1, 'pc', '35.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 (62770, 545, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '10.3000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.5000', '4.0000', '2022-09-18', 'received', '10.3000', '10.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (62771, 545, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2022-09-18', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62772, 545, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '9.0000', '2022-09-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 (62773, 545, NULL, 9994, '70306758', 'GLUCO NAF PINEAPPLE', NULL, '11.6000', '15.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '6.0000', '2022-09-18', '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 (62774, 545, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '16.1000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.3000', '3.0000', '2022-09-18', 'received', '16.1000', '16.1000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (62775, 545, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '6.0000', '2022-09-18', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62776, 545, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '16.5000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '3.0000', '2022-09-18', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62777, 545, NULL, 9720, '41639032', 'ANCIGEL SUSP', NULL, '14.5000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '5.0000', '2022-09-18', '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 (62778, 545, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '9.4700', '12.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.8200', '5.0000', '2022-09-18', 'received', '9.4700', '9.4700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (62779, 545, NULL, 9889, '33111267', 'MAALOX STICK PACKS 20\'S', NULL, '1.7000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '20.0000', '2022-09-18', 'received', '1.7000', '1.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62780, 545, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.8000', '45.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4000', '2.0000', '2022-09-18', 'received', '33.8000', '33.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.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 (62781, 545, NULL, 9822, '47018837', 'RENALKA', NULL, '23.8000', '31.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '0.0000', '2022-09-18', 'received', '23.8000', '23.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (62782, 545, NULL, 10005, '76737689', 'FERRODEX SYR 200ML', NULL, '6.8000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '3.0000', '2022-09-18', 'received', '6.8000', '6.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62783, 545, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '4.0000', '2022-09-18', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62784, 545, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.5000', '4.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '38.0000', '2022-09-18', '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 (62785, 545, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '1.0000', '2022-09-18', 'received', '23.7000', '23.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.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 (62786, 545, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '28.5000', '38.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.5000', '4.0000', '2022-09-18', 'received', '28.5000', '28.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62787, 545, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2022-09-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 (62788, 545, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '7.7000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '5.0000', '2022-09-18', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62789, 545, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '16.5000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '2.0000', '2022-09-18', 'received', '16.5000', '16.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62790, 545, NULL, 2395, '99288830', 'TINATETT 230', NULL, '27.5000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '1.0000', '2022-09-18', 'received', '27.5000', '27.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62791, 545, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '5.6000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '4.0000', '2022-09-18', 'received', '5.6000', '5.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62792, 545, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.0000', '35.0000', '2022-09-18', 'received', '3.0500', '3.0500', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62793, 545, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2022-09-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 (62794, 545, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '24.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-09-18', '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 (62795, 545, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '9.0000', '2022-09-18', 'received', '2.5500', '2.5500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62796, 545, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8000', '10.0000', '2022-09-18', 'received', '1.7800', '1.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62797, 545, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '2.6900', '4.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.5000', '49.0000', '2022-09-18', 'received', '2.6900', '2.6900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62798, 545, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '30.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-09-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 (62799, 545, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '7.0000', '2022-09-18', '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 (62800, 545, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '45.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '3.0000', '2022-09-18', '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 (62801, 545, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-09-18', 'received', '0.7700', '0.7700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62802, 545, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '8.2000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '3.0000', '2022-09-18', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62803, 545, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '12.8400', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '2.0000', '2022-09-18', 'received', '12.8400', '12.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (62804, 545, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '17.0000', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '1.0000', '2022-09-18', '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 (62805, 545, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.8600', '2.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.6000', '20.0000', '2022-09-18', 'received', '1.8600', '1.8600', '60.0000', NULL, NULL, 1, 'pc', '60.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 (62806, 545, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '11.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '5.0000', '2022-09-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 (62807, 545, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '11.5000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '1.0000', '2022-09-18', '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 (62808, 545, NULL, 8413, '2333', 'COAFS', NULL, '82.5000', '120.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '412.5000', '5.0000', '2022-09-18', 'received', '82.5000', '82.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '82.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62809, 545, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '4.0000', '2022-09-18', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62810, 545, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '5.0000', '2022-09-18', '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 (62811, 545, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '42.4000', '56.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.2000', '2.0000', '2022-09-18', 'received', '42.4000', '42.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '42.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 (62812, 545, NULL, 9634, '38899153', 'FLUXAMOX CAPS 500MG', NULL, '5.4000', '7.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2022-09-18', 'received', '5.4000', '5.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62813, 545, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '5.0000', '2022-09-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 (62814, 545, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '4.0000', '2022-09-18', 'received', '22.0000', '22.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (62815, 545, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '0.0000', '2022-09-18', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (62816, 545, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '24.1800', '32.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5400', '3.0000', '2022-09-18', 'received', '24.1800', '24.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.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 (62817, 546, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '0.0000', '2022-09-18', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (62818, 546, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '21.8000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '3.0000', '2022-09-18', 'received', '21.8000', '21.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.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 (62819, 546, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.5000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-09-18', '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 (62820, 546, NULL, 10037, '91363603', 'DEWORME TAB', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '9.0000', '2022-09-18', '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 (62821, 546, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '6.1000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '8.0000', '2022-09-18', '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 (62822, 546, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '29.8000', '39.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.0000', '0.0000', '2022-09-18', 'received', '29.8000', '29.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (62823, 546, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '8.0000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-09-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 (62824, 546, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '10.6600', '14.0000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.2400', '0.0000', '2022-09-18', 'received', '10.6600', '10.6600', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '10.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 (62825, 546, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7500', '1.0000', '2022-09-18', 'received', '7.1500', '7.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.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 (62826, 546, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '7.2000', '9.5000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '201.6000', '14.0000', '2022-09-18', 'received', '7.2000', '7.2000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (62827, 546, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '2.0000', '2022-09-18', 'received', '18.0000', '18.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62828, 546, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '7.2000', '9.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.2000', '0.0000', '2022-09-18', 'received', '7.2000', '7.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (62829, 546, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '1.0000', '2022-09-18', 'received', '2.5500', '2.5500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62830, 546, NULL, 3044, '49228950', 'DIAZEPAM TABS 5MG', NULL, '0.4000', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '18.0000', '2022-09-18', '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 (62831, 546, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.3300', '2.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9200', '21.0000', '2022-09-18', 'received', '1.3300', '1.3300', '24.0000', NULL, NULL, 1, 'pc', '24.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 (62832, 546, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2022-09-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 (62833, 546, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.5200', '0.7000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '12.0000', '2022-09-18', '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 (62834, 546, NULL, 7324, '1244', 'METFORMIN DENK 500MG', NULL, '6.3200', '8.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2000', '0.0000', '2022-09-18', 'received', '6.3200', '6.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (62835, 546, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '9.5000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-09-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 (62836, 546, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '10.0000', '2022-09-18', '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 (62837, 546, NULL, 7665, '1585', 'DUROL JUNR', NULL, '7.9000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '0.0000', '2022-09-18', '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 (62838, 546, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '22.6000', '30.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0000', '0.0000', '2022-09-18', 'received', '22.6000', '22.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (62839, 546, NULL, 10038, '10001623', 'AMOXICILLIN 500MG LETAP', NULL, '2.9700', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '10.0000', '2022-09-18', 'received', '2.9700', '2.9700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (62840, 546, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6700', '2.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '38.0000', '2022-09-18', 'received', '0.6700', '0.6700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (62841, 546, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '75.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '19.0000', '2022-09-18', 'received', '1.5400', '1.5400', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '1.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 (62842, 546, NULL, 2108, '85249693', 'ARFAN 20/120MG', NULL, '5.5000', '8.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '5.0000', '2022-09-18', 'received', '5.5000', '5.5000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (62843, 546, NULL, 9996, '50486911', 'LUMETRUST', NULL, '7.5000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-09-18', '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 (62844, 546, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.8600', '2.5000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '223.2000', '22.0000', '2022-09-18', 'received', '1.8600', '1.8600', '120.0000', NULL, NULL, 1, 'pc', '120.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 (62845, 546, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '6.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-18', '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 (62846, 546, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-09-18', '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 (62847, 546, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.6000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '4.0000', '2022-09-18', '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 (62848, 546, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '1.6000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2022-09-18', '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 (62849, 546, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '0.0000', '2022-09-18', 'received', '2.9500', '2.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (62850, 546, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '7.6300', '10.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0400', '0.0000', '2022-09-18', 'received', '7.6300', '7.6300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '7.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 (62851, 546, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '13.0000', '2022-09-18', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (62852, 546, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.7500', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '5.0000', '2022-09-18', 'received', '0.7500', '0.7500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (62853, 546, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '2.0000', '2022-09-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 (62854, 546, NULL, 9330, '3250', 'APETATRUST', NULL, '14.5000', '19.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '2.0000', '2022-09-18', '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 (62855, 546, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '11.5800', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.7400', '0.0000', '2022-09-18', 'received', '11.5800', '11.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (62856, 546, NULL, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '6.7000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '1.0000', '2022-09-18', '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 (62857, 546, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '11.1000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.3000', '1.0000', '2022-09-18', 'received', '11.1000', '11.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.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 (62858, 546, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-09-18', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62859, 546, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '11.5000', '15.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '0.0000', '2022-09-18', '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 (62860, 546, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '4.0000', '2022-09-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 (62861, 546, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '10.0000', '2022-09-18', '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 (62862, 546, NULL, 8208, '2128', 'DYNEWELL TAB', NULL, '0.4000', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2022-09-18', '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 (62863, 546, NULL, 8813, '2733', 'FERROUS SULPHATE', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '3.0000', '2022-09-18', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62864, 546, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '3.1000', '4.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.0000', '0.0000', '2022-09-18', 'received', '3.1000', '3.1000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62865, 546, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '18.9000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2022-09-18', '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 (62866, 546, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '2.0000', '2022-09-18', '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 (62867, 546, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.5000', '0.0000', '2022-09-18', 'received', '23.7000', '23.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.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 (62868, 546, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '28.5000', '38.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.5000', '5.0000', '2022-09-18', 'received', '28.5000', '28.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62869, 546, NULL, 9730, '76969575', 'HAEMO FORTE SYRUP 200ML', NULL, '27.8000', '37.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.6000', '2.0000', '2022-09-18', 'received', '27.8000', '27.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (62870, 546, NULL, 10039, '00027241', 'HAEMO FORTE 100ML', NULL, '11.5000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '1.0000', '2022-09-18', '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 (62871, 546, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '16.9000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.7000', '3.0000', '2022-09-18', 'received', '16.9000', '16.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (62872, 546, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2022-09-18', '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 (62873, 546, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '0.0000', '2022-09-18', 'received', '2.5500', '2.5500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (62874, 546, NULL, 8170, '2090', 'LEOPARD OINT', NULL, '5.7500', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.7500', '0.0000', '2022-09-18', 'received', '5.7500', '5.7500', '5.0000', NULL, NULL, 1, 'pc', '5.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 (62875, 546, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-09-18', '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 (62876, 546, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.6000', '15.0000', '2022-09-18', 'received', '5.9800', '5.9800', '20.0000', NULL, NULL, 1, 'pc', '20.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 (62877, 546, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '0.0000', '2022-09-18', 'received', '8.5000', '8.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (62878, 546, NULL, 2854, '44570580', 'LORATADINE 10MG  TEVA', NULL, '6.0000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-09-18', '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 (62879, NULL, NULL, 9997, '', '', 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 (62880, NULL, NULL, 9979, '', '', 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 (62881, NULL, NULL, 7570, '', '', 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 (62882, NULL, NULL, 7322, '', '', 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 (62885, NULL, NULL, 7912, '', '', 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 (62886, NULL, NULL, 9504, '', '', 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 (62887, NULL, NULL, 9452, '', '', 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 (62888, NULL, NULL, 9996, '', '', 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 (62889, NULL, NULL, 1511, '', '', 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 (62890, NULL, NULL, 7999, '', '', 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 (62891, NULL, NULL, 3026, '', '', 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 (63132, 547, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '10.9600', '14.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '328.8000', '30.0000', '2022-09-19', 'received', '10.9600', '10.9600', '30.0000', NULL, NULL, 1, 'pc', '30.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 (63133, 547, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.2000', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-09-19', '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 (63134, 547, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2022-09-19', '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 (63135, 547, NULL, 9940, '89490205', 'PATEL GINGER HONEY CHIP ', NULL, '10.0000', '13.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '1.0000', '2022-09-19', '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 (63136, NULL, 128, 2071, '20773440', 'GRISEOFULVIN O-Fulvin 500mg', NULL, '4.8000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '96.0000', '1.0000', '2022-09-21', 'received', '4.8000', '4.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 (63137, 543, NULL, 2627, '47630599', 'ATORVASTATIN 10MG', NULL, '10.5000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '2.0000', '2022-09-17', '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 (63138, 543, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.6300', '4.0000', '2022-09-17', 'received', '10.0700', '10.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.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 (63139, 543, NULL, 10028, '8906116211328', 'CARDIOFIN 20MG (NIFEDIPINE)', NULL, '18.4800', '25.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.9600', '2.0000', '2022-09-17', 'received', '18.4800', '18.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (63140, 543, NULL, 10029, '890611621132', 'CARDIOFIN 20MG /STRIP (NIFEDIPINE)', NULL, '1.8500', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '10.0000', '2022-09-17', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (63141, 543, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '9.8000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '2.0000', '2022-09-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 (63142, 543, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.9700', '2.0000', '54.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3800', '23.0000', '2022-09-17', 'received', '0.9700', '0.9700', '54.0000', NULL, NULL, 1, 'pc', '54.0000', NULL, NULL, NULL, NULL, '0.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 (63143, 543, NULL, 10031, '43491068', 'MENTHODEX LOZENGES TOFFEES', NULL, '0.1800', '0.5000', '54.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.7200', '54.0000', '2022-09-17', 'received', '0.1800', '0.1800', '54.0000', NULL, NULL, 1, 'pc', '54.0000', NULL, NULL, NULL, NULL, '0.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 (63144, 543, NULL, 10030, '2660553', 'LORSARTAN POTASSIUM 50MG LTP', NULL, '7.0000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '5.0000', '2022-09-17', '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 (63145, 543, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '7.4000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '7.0000', '2022-09-17', 'received', '7.4000', '7.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63146, 543, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.7800', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '18.0000', '2022-09-17', '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 (63147, 540, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2022-09-12', '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 (63148, 540, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '10.0000', '2022-09-12', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (63149, 540, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.3000', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '13.0000', '2022-09-12', '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 (63150, 540, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '9.0000', '2022-09-12', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (63151, 540, NULL, 9940, '89490205', 'PATEL GINGER HONEY CHIP ', NULL, '9.0000', '13.0000', '38.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '342.0000', '18.0000', '2022-09-12', 'received', '9.0000', '9.0000', '38.0000', NULL, NULL, 1, 'pc', '38.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 (63152, 540, NULL, 2487, '22129068', 'ALMOND SEED', NULL, '25.0000', '40.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '0.0000', '2022-09-12', 'received', '25.0000', '25.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (63153, 540, NULL, 9907, '25921411', 'SOBOLO OLUNKA', NULL, '12.0000', '15.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-12', '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 (63154, 540, NULL, 9908, '45035843', 'SOBOLO CUTCUT OLUNKA', NULL, '12.0000', '15.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-12', '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 (63155, NULL, NULL, 10038, '', '', 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 (63156, NULL, NULL, 9945, '', '', 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 (63157, NULL, NULL, 7405, '', '', 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 (63158, NULL, NULL, 2086, '', '', 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 (63357, 548, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '19.5000', '26.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '2.0000', '2022-09-21', '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 (63358, 548, NULL, 7637, '1557', 'MAJOR EPHEDRINE', NULL, '8.1400', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.8400', '5.0000', '2022-09-21', 'received', '8.1400', '8.1400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (63359, 548, NULL, 3046, '45723019', 'SALINE NASAL DROP 0.90 10ML', NULL, '6.3000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '5.0000', '2022-09-21', '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 (63360, 548, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '7.1000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '3.0000', '2022-09-21', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63361, 548, NULL, 10021, '84670394', 'BETASOL( EYE,EAR&NOSE)DROP', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-09-21', '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 (63362, 548, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '49.5300', '65.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0600', '0.0000', '2022-09-21', 'received', '49.5300', '49.5300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.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 (63363, 548, NULL, 7318, '1238', 'LONART SUSP', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '1.0000', '2022-09-21', '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 (63364, 548, NULL, 10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', NULL, '3.8000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4000', '0.0000', '2022-09-21', 'received', '3.8000', '3.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (63365, 548, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '17.2000', '23.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.0000', '5.0000', '2022-09-21', 'received', '17.2000', '17.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.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 (63366, 548, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '8.3200', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6000', '1.0000', '2022-09-21', 'received', '8.3200', '8.3200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (63367, 548, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '6.8800', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4000', '5.0000', '2022-09-21', 'received', '6.8800', '6.8800', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63368, 548, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '7.0000', '2022-09-21', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63369, 548, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '9.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2022-09-21', '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 (63370, 548, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '6.1000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '0.0000', '2022-09-21', 'received', '6.1000', '6.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63371, 548, NULL, 10037, '91363603', 'DEWORME TAB', NULL, '2.2000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '8.0000', '2022-09-21', '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 (63372, 548, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '21.8000', '30.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.8000', '5.0000', '2022-09-21', 'received', '21.8000', '21.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '21.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 (63373, 548, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '5.0000', '2022-09-21', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63374, 548, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '56.1000', '74.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '561.0000', '8.0000', '2022-09-21', 'received', '56.1000', '56.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '56.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 (63375, 548, NULL, 10041, '57495123', 'Enacef(cefuroxime) 500mg tablets', NULL, '30.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-09-21', '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 (63376, 548, NULL, 9957, '08199612', 'SKYCEF 250MG TABLET', NULL, '8.8000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '1.0000', '2022-09-21', '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 (63377, 548, NULL, 9979, '49967696', 'SKYCLAV 1G', NULL, '15.5300', '20.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5900', '1.0000', '2022-09-21', 'received', '15.5300', '15.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (63378, 548, NULL, 9946, '04292515', 'SKYCLAV  625', NULL, '16.0000', '21.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2022-09-21', '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 (63379, 548, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '0.0000', '2022-09-21', 'received', '13.2000', '13.2000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63380, 548, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '186.8000', '247.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '0.0000', '2022-09-21', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (63381, 548, NULL, 9842, '38060261', 'FASIPRO TAB 10×10', NULL, '7.9900', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9700', '3.0000', '2022-09-21', '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 (63382, 548, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '10.5000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '1.0000', '2022-09-21', '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 (63383, 548, NULL, 10038, '10001623', 'AMOXICILLIN 500MG LETAP', NULL, '2.9700', '4.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.1000', '20.0000', '2022-09-21', 'received', '2.9700', '2.9700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (63384, 548, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.8800', '4.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8400', '15.0000', '2022-09-21', 'received', '2.8800', '2.8800', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '2.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 (63385, 548, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '5.8000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '3.0000', '2022-09-21', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (63386, 548, NULL, 9885, '28207929', 'KEFROX 500MG TAB', NULL, '30.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-09-21', '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 (63387, 548, NULL, 10043, '95051336', 'Menazole 500mg Ayrtons', NULL, '2.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '5.0000', '2022-09-21', '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 (63388, 548, NULL, 10044, '88406939', 'Alazole 400 tablets', NULL, '1.5000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '3.0000', '2022-09-21', '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 (63389, 548, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '71.0000', '94.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '0.0000', '2022-09-21', 'received', '71.0000', '71.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63390, 548, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '7.8000', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2022-09-21', '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 (63391, 548, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-09-21', '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 (63392, 548, NULL, 9821, '50696548', 'PARAFENAC', NULL, '2.3000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.3000', '0.0000', '2022-09-21', 'received', '2.3000', '2.3000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63393, 548, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '49.0000', '2022-09-21', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (63394, 548, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '12.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '1.0000', '2022-09-21', '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 (63395, 548, NULL, 9722, '09730188', 'MUCOSLY ADULT SYR 100ML', NULL, '5.8000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '3.0000', '2022-09-21', 'received', '5.8000', '5.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (63396, 548, NULL, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', NULL, '14.0000', '18.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-09-21', '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 (63397, 548, NULL, 7999, '1919', 'ROBB INH', NULL, '2.2000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '4.0000', '2022-09-21', '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 (63398, 548, NULL, 9958, '79907714', 'AZYCIN 500MG', NULL, '7.9000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5000', '3.0000', '2022-09-21', 'received', '7.9000', '7.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63399, 548, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '10.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-09-21', '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 (63400, 548, NULL, 9945, '60409156', 'AZIROCIN SUSP', NULL, '14.1000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.3000', '0.0000', '2022-09-21', 'received', '14.1000', '14.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (63401, 548, NULL, 2698, '01508425', 'NIGHT NURSE CAPS', NULL, '47.0000', '62.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.0000', '1.0000', '2022-09-21', 'received', '47.0000', '47.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63402, 548, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '17.0000', '22.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2022-09-21', '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 (63403, 548, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.8200', '1.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2022-09-21', 'received', '0.8200', '0.8200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (63404, 548, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.4600', '3.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5200', '11.0000', '2022-09-21', 'received', '2.4600', '2.4600', '12.0000', NULL, NULL, 1, 'pc', '12.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 (63405, 548, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '6.0000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-09-21', '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 (63406, 548, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '25.0000', '2022-09-21', 'received', '1.5000', '1.5000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (63407, 548, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '4.6000', '6.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.0000', '49.0000', '2022-09-21', 'received', '4.6000', '4.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (63408, 548, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '2.0000', '2022-09-21', '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 (63409, 548, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-09-21', '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 (63410, 548, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '18.9000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2022-09-21', '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 (63411, 548, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '10.9600', '14.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '328.8000', '30.0000', '2022-09-21', 'received', '10.9600', '10.9600', '30.0000', NULL, NULL, 1, 'pc', '30.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 (63412, 548, NULL, 10045, '59803576', 'Starcold', NULL, '1.0000', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '45.0000', '2022-09-21', '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 (63413, 548, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '170.0000', '180.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '1.0000', '2022-09-21', 'received', '170.0000', '170.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63414, 548, NULL, 10046, '47358915', 'Aptamil 3 baby food', NULL, '170.0000', '185.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '1.0000', '2022-09-21', 'received', '170.0000', '170.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63415, 544, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.0000', '8.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-09-17', '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 (63416, 544, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '62.0000', '82.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.0000', '1.0000', '2022-09-17', 'received', '62.0000', '62.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '62.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63417, 544, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '10.0700', '13.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.0500', '3.0000', '2022-09-17', 'received', '10.0700', '10.0700', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '10.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 (63418, 544, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-09-17', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63419, 544, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '7.8000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-09-17', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63420, 544, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '2.2000', '3.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-09-17', '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 (63421, 544, NULL, 7612, '1532', 'DOXYCYCLINE CAPS LETAP', NULL, '1.7500', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '3.0000', '2022-09-17', 'received', '1.7500', '1.7500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (63422, 544, NULL, 9979, '49967696', 'SKYCLAV 1G', NULL, '15.5300', '20.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.6500', '0.0000', '2022-09-17', 'received', '15.5300', '15.5300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (63423, 544, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '218.0000', '7.0000', '2022-09-17', 'received', '10.9000', '10.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (63424, 544, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '11.0000', '2022-09-17', 'received', '7.3000', '7.3000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (63425, 544, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '0.0000', '2022-09-17', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (63426, 544, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '3.1000', '4.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.0000', '0.0000', '2022-09-17', 'received', '3.1000', '3.1000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (63427, 544, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-09-17', 'received', '0.6600', '0.6600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (63428, 544, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '22.0000', '29.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '1.0000', '2022-09-17', 'received', '22.0000', '22.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63429, 544, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '20.1300', '27.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2600', '0.0000', '2022-09-17', 'received', '20.1300', '20.1300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (63430, 544, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '19.3400', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0200', '0.0000', '2022-09-17', 'received', '19.3400', '19.3400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.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 (63431, 544, NULL, 2627, '47630599', 'ATORVASTATIN 10MG', NULL, '10.5000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '2.0000', '2022-09-17', '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 (63432, 544, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.7900', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8000', '20.0000', '2022-09-17', 'received', '0.7900', '0.7900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (63433, 544, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '4.5600', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '7.0000', '2022-09-17', 'received', '4.5600', '4.5600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (63434, 544, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '33.8000', '45.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.8000', '0.0000', '2022-09-17', 'received', '33.8000', '33.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '33.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 (63435, 544, NULL, 9952, '90382407', 'CARVEDI DENK 6.25MG TAB', NULL, '9.2600', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.7800', '3.0000', '2022-09-17', 'received', '9.2600', '9.2600', '3.0000', NULL, NULL, 1, 'pc', '3.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 (63436, 544, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '0.9800', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-09-17', 'received', '0.9800', '0.9800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (63437, 544, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '2.4900', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.5000', '28.0000', '2022-09-17', 'received', '2.4900', '2.4900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (63438, 544, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '6.3200', '8.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.4000', '0.0000', '2022-09-17', 'received', '6.3200', '6.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.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 (63439, 544, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.9500', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-09-17', 'received', '2.9500', '2.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (63440, 544, NULL, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', NULL, '1.8000', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-09-17', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (63441, 544, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.9600', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.9600', '0.0000', '2022-09-17', 'received', '1.9600', '1.9600', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63442, 544, NULL, 8772, '2692', 'HOLLANDIA', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-09-17', '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 (63443, 544, NULL, 9999, '84888211', 'HOLLANDIA SS/S', NULL, '3.1000', '5.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '1.0000', '2022-09-17', 'received', '3.1000', '3.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (63444, 544, NULL, 8746, '2666', ' COKE/FANTA/SPRITE CAN', NULL, '5.0000', '6.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '6.0000', '2022-09-17', 'received', '5.0000', '5.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (63445, 544, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '36.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.2000', '27.0000', '2022-09-17', 'received', '1.4500', '1.4500', '36.0000', NULL, NULL, 1, 'pc', '36.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 (63446, 544, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.3000', '1.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '21.0000', '2022-09-17', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (63447, 544, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-09-17', '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 (63448, 544, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '15.0000', '2022-09-17', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (63449, 544, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '4.0000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2022-09-17', '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 (63450, 544, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.8500', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '11.0000', '2022-09-17', 'received', '4.8500', '4.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (63451, 544, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '4.1000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '6.0000', '2022-09-17', 'received', '4.1000', '4.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (63452, 544, NULL, 2965, '86540789', 'LUCOZADE CAN', NULL, '6.5000', '10.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-09-17', '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 (63453, 544, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '8.6000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '0.0000', '2022-09-17', 'received', '8.6000', '8.6000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63454, 544, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.2000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '0.0000', '2022-09-17', 'received', '6.2000', '6.2000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (63455, 544, NULL, 9213, '3133', 'ROX DRINKS', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-09-17', '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 (63456, 544, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '7.2000', '9.5000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '201.6000', '28.0000', '2022-09-17', 'received', '7.2000', '7.2000', '28.0000', NULL, NULL, 1, 'pc', '28.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 (63457, 544, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '32.8000', '44.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.2000', '0.0000', '2022-09-17', 'received', '32.8000', '32.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '32.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 (63458, 544, NULL, 9482, '56424675', ' LUBRICATED  CONDOM 3 IN 1', NULL, '0.6500', '1.0000', '300.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.0000', '43.0000', '2022-09-17', 'received', '0.6500', '0.6500', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '0.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 (63459, 544, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.2000', '3.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '10.0000', '2022-09-17', '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 (63460, 544, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '81.4000', '108.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.8000', '1.0000', '2022-09-17', '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 (63461, 544, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-09-17', '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 (63462, 544, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '9.4000', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '5.0000', '2022-09-17', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (63463, 544, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '33.5000', '44.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '2.0000', '2022-09-17', 'received', '33.5000', '33.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63464, 544, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '0.0000', '2022-09-17', 'received', '10.5000', '10.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (63465, 544, NULL, 9885, '28207929', 'KEFROX 500MG TAB', NULL, '30.0000', '40.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2022-09-17', '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 (63466, 544, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '7.5000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2022-09-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 (63467, 544, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '18.9000', '25.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '4.0000', '2022-09-17', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63468, 544, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '49.5300', '65.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5900', '0.0000', '2022-09-17', 'received', '49.5300', '49.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.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 (63469, 544, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '1.1300', '1.5000', '110.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.3000', '0.0000', '2022-09-17', 'received', '1.1300', '1.1300', '110.0000', NULL, NULL, 1, 'pc', '110.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 (63470, 544, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2022-09-17', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (63471, 544, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '25.5000', '34.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.5000', '2.0000', '2022-09-17', 'received', '25.5000', '25.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (63472, 544, NULL, 10042, '45101727', 'Emgiflox 250mg Capsules', NULL, '3.1700', '4.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '317.0000', '92.0000', '2022-09-17', 'received', '3.1700', '3.1700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '3.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 (63473, 544, NULL, 9953, '21608860', 'ARZIGLOBIN PLUS SYR', NULL, '8.9000', '12.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6000', '2.0000', '2022-09-17', 'received', '8.9000', '8.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.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 (63474, 544, NULL, 9927, '05772370', 'HEMOFORCE FAMILY SYR', NULL, '6.6500', '9.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6000', '0.0000', '2022-09-17', 'received', '6.6500', '6.6500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63475, 544, NULL, 9921, '29778181', 'HEMOFORCE PLUS SYR', NULL, '6.6500', '9.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6000', '0.0000', '2022-09-17', 'received', '6.6500', '6.6500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63476, 544, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '16.5000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-09-17', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63477, 544, NULL, 2071, '20773440', 'GRISEOFULVIN O-Fulvin 500mg', NULL, '4.8000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2022-09-17', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63478, 544, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '0.8800', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '26.0000', '2022-09-17', 'received', '0.8800', '0.8800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (63479, 544, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '1.0000', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '16.0000', '2022-09-17', 'received', '1.0000', '1.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (63480, 544, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.1000', '2.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '5.0000', '2022-09-17', 'received', '2.1000', '2.1000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (63481, NULL, NULL, 7542, '', '', 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 (63482, NULL, NULL, 9046, '', '', 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 (63483, NULL, NULL, 8080, '', '', 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 (63484, NULL, NULL, 8081, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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 (63485, NULL, NULL, 7603, '', '', 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 (63486, NULL, NULL, 8187, '', '', 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 (63487, NULL, NULL, 8337, '', '', 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 (63488, NULL, NULL, 1480, '', '', 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 (63489, NULL, NULL, 10006, '', '', 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 (63584, NULL, NULL, 9949, '', '', 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 (63690, NULL, NULL, 8482, '', '', 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 (63706, NULL, NULL, 9822, '', '', 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 (63766, 550, NULL, 2567, '83596243', 'NAN 1', NULL, '50.0000', '60.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '3.0000', '2022-09-23', 'received', '50.0000', '50.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (63767, 550, NULL, 2806, '51671546', 'DETTOL SOAP BIG', NULL, '7.4000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '6.0000', '2022-09-23', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63768, 550, NULL, 2449, '73407261', 'DETTOL SOAP SMALL', NULL, '5.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '1.0000', '2022-09-23', '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 (63769, 550, NULL, 8835, '2755', 'GEISHA SOAP', NULL, '7.0000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-09-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 (63770, 550, NULL, 2316, '59549986', 'SMA ', NULL, '65.0000', '70.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-09-23', 'received', '65.0000', '65.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (63771, 550, NULL, 3028, '19459821', 'MEDISOFT SOAP', NULL, '4.4000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '1.0000', '2022-09-23', '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 (63772, 550, NULL, 9961, '09856596', 'SASSO SPRAY S/S', NULL, '23.0000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2022-09-23', '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 (63773, 550, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '37.0000', '40.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '2.0000', '2022-09-23', '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 (63774, 550, NULL, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '19.0000', '22.0800', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '1.0000', '2022-09-23', '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 (63775, 550, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '4.0000', '2022-09-23', '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 (63776, 550, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '12.5000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2022-09-23', '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 (63777, 550, NULL, 2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-09-23', '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 (63778, 550, NULL, 3024, '02807617', 'COLGATE CHARCOAL PASTE', NULL, '10.7000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '5.0000', '2022-09-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 (63779, 550, NULL, 2000, '6036000087004', 'FAYTEX', NULL, '13.7000', '17.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.4000', '10.0000', '2022-09-23', 'received', '13.7000', '13.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '13.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 (63780, 550, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '15.5000', '18.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '3.0000', '2022-09-23', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63781, 550, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2022-09-23', '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 (63782, 550, NULL, 10047, '47042876', 'FAULTLESS SPRAY STARCH', NULL, '20.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-09-23', '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 (63783, 550, NULL, 9937, '09558515', 'ADULT DIAPER SLEEPY', NULL, '50.0000', '60.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '2.0000', '2022-09-23', '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 (63784, 550, NULL, 10048, '11629408', 'JOYFIT ADULT DIAPER', NULL, '48.0000', '60.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '2.0000', '2022-09-23', 'received', '48.0000', '48.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (63785, 550, NULL, 2445, '08969985', 'ADULT DIAPER PER  ONE', NULL, '4.5000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2022-09-23', '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 (63786, 550, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '20.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-23', '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 (63787, 550, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.5000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2022-09-23', '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 (63788, 550, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '18.5000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '1.0000', '2022-09-23', '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 (63789, 550, NULL, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '14.5000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '1.0000', '2022-09-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 (63790, 550, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '13.5000', '16.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '2.0000', '2022-09-23', '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 (63791, 550, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '8.0000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-09-23', '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 (63792, 550, NULL, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '18.0000', '23.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-09-23', 'received', '18.0000', '18.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63793, 550, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '19.0000', '23.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.0000', '0.0000', '2022-09-23', 'received', '19.0000', '19.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (63794, 550, NULL, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '21.0000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '5.0000', '2022-09-23', 'received', '21.0000', '21.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63795, 550, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '13.5000', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '5.0000', '2022-09-23', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63796, 550, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '14.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2022-09-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 (63797, 550, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '9.5000', '14.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-09-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 (63798, 550, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '14.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2022-09-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 (63799, 550, NULL, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '13.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-09-23', '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 (63800, 550, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '6.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-09-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 (63801, 550, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '13.0000', '15.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-09-23', '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 (63802, 550, NULL, 9182, '3102', 'BIC RAZOR', NULL, '8.5000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '4.0000', '2022-09-23', '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 (63803, 550, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '5.0000', '2022-09-23', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (63804, 550, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-09-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 (63805, 550, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '7.0000', '2022-09-23', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (63832, NULL, NULL, 1631, '', '', 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 (63833, NULL, NULL, 10025, '', '', 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 (63834, NULL, NULL, 7771, '', '', 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 (63835, 549, NULL, 7554, '1474', 'NAKLOFEN DUO', NULL, '2.2000', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '40.0000', '2022-09-23', '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 (63836, 549, NULL, 9836, '50969936', 'HONEY GINGER', NULL, '35.0000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '3.0000', '2022-09-23', '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 (63837, 549, NULL, 9835, '93439136', 'HONEY GINSENG', NULL, '35.0000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '2.0000', '2022-09-23', '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 (63838, 549, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '2.2200', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '8.0000', '2022-09-23', 'received', '2.2200', '2.2200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (63839, 549, NULL, 9798, '55455893', 'ENACEF 250MG', NULL, '16.8000', '22.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.2000', '4.0000', '2022-09-23', '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 (63840, 549, NULL, 9721, '99807619', 'AMUROX SUPS (CEFUROXIME AXETIL)', NULL, '11.7000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '1.0000', '2022-09-23', 'received', '11.7000', '11.7000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63841, 549, NULL, 9151, '3071', 'KEFROX SUSP', NULL, '12.0000', '16.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2022-09-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 (63842, 549, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '3.0000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-09-23', '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 (63843, 549, NULL, 8052, '1972', 'GALVUS MET 50/1000MG', NULL, '37.7100', '50.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.2600', '6.0000', '2022-09-23', 'received', '37.7100', '37.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.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 (63844, 549, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '3.5000', '6.0000', '18.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '6.0000', '2022-09-23', 'received', '3.5000', '3.5000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (63845, 549, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '12.3300', '16.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.9600', '2.0000', '2022-09-23', 'received', '12.3300', '12.3300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '12.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 (63846, 549, NULL, 8105, '2025', 'LISINOPRIL 5 TEVA', NULL, '5.7000', '6.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '0.0000', '2022-09-23', 'received', '5.7000', '5.7000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '5.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 (63847, 549, NULL, 7777, '1697', 'GRISON', NULL, '12.5000', '16.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-09-23', 'received', '12.5000', '12.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63848, 549, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.8000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '20.0000', '2022-09-23', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (63849, 549, NULL, 7707, '1627', 'EFPAC JUNIOR', NULL, '7.1500', '9.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '7.0000', '2022-09-23', 'received', '7.1500', '7.1500', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '7.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 (63850, 549, NULL, 8011, '1931', 'SALO COLD SRP', NULL, '7.5000', '10.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-09-23', 'received', '7.5000', '7.5000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (63851, 549, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '5.5000', '7.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-09-23', '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 (63852, 549, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '14.9000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '3.0000', '2022-09-23', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (63853, 549, NULL, 7608, '1528', 'AUNTY MARY', NULL, '10.9800', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '4.0000', '2022-09-23', '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 (63854, 549, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '5.3000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '5.0000', '2022-09-23', '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 (63855, 549, NULL, 9725, '19485668', 'SHALTOUX CHESTY COUGH SYR 100ML', NULL, '5.0000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-09-23', '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 (63856, 549, NULL, 7983, '1903', 'ASTHALEX', NULL, '5.9000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '0.0000', '2022-09-23', 'received', '5.9000', '5.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63857, 549, NULL, 9088, '3008', 'ZUBES EXTRA STRONG', NULL, '17.0000', '22.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '4.0000', '2022-09-23', '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 (63858, 549, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '7.8000', '10.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '4.0000', '2022-09-23', 'received', '7.8000', '7.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63859, 549, NULL, 7523, '1443', 'VISCOF S', NULL, '12.0400', '16.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0400', '0.0000', '2022-09-23', 'received', '12.0400', '12.0400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.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 (63860, 549, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '30.0000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-09-23', '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 (63861, 549, NULL, 7859, '1779', 'KOFLET', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-09-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 (63862, 549, NULL, 7770, '1690', 'LUEX BABY COUGH', NULL, '15.0000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-09-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 (63863, 549, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '7.4000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '6.0000', '2022-09-23', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63864, 549, NULL, 8134, '2054', 'AMCOF ADULT', NULL, '7.4000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '5.0000', '2022-09-23', 'received', '7.4000', '7.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63865, 549, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '8.7000', '11.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '4.0000', '2022-09-23', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63866, 549, NULL, 8135, '2055', 'AMCOF BABY', NULL, '8.2000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '0.0000', '2022-09-23', 'received', '8.2000', '8.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63867, 549, NULL, 7675, '1595', 'GEBEDOL EXTRA', NULL, '3.0000', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-23', '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 (63868, 549, NULL, 8413, '2333', 'COAFS', NULL, '82.5000', '120.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-09-23', 'received', '82.5000', '82.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '82.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63869, 549, NULL, 7482, '1402', 'MAXMOX 500', NULL, '5.8000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '1.0000', '2022-09-23', 'received', '5.8000', '5.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63870, 549, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '4.0000', '5.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '8.0000', '2022-09-23', '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 (63871, 549, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '3.3300', '4.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '199.8000', '27.0000', '2022-09-23', 'received', '3.3300', '3.3300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '3.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 (63872, 549, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '3.3300', '4.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-23', 'received', '3.3300', '3.3300', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '3.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 (63873, 549, NULL, 7753, '1673', 'ZULU', NULL, '4.0000', '5.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '18.0000', '2022-09-23', '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 (63874, 549, NULL, 7657, '1577', 'DICLO DENK 100 TAB', NULL, '15.0000', '20.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '7.0000', '2022-09-23', '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 (63875, 549, NULL, 8718, '2638', 'GACET 1G', NULL, '13.2500', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.2500', '4.0000', '2022-09-23', 'received', '13.2500', '13.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (63876, 549, NULL, 7886, '1806', 'ABONIKI', NULL, '5.5000', '7.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '4.0000', '2022-09-23', '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 (63877, 549, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '31.4000', '41.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.6000', '4.0000', '2022-09-23', 'received', '31.4000', '31.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '31.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 (63878, 549, NULL, 7556, '1476', 'OLFEN GEL 50GM', NULL, '25.0000', '33.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '3.0000', '2022-09-23', 'received', '25.0000', '25.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63879, 549, NULL, 7552, '1472', 'LOFNAC GEL', NULL, '6.0000', '8.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.0000', '2022-09-23', '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 (63880, 549, NULL, 7588, '1508', 'FUNBACT', NULL, '8.4000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '4.0000', '2022-09-23', 'received', '8.4000', '8.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63881, 549, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.9000', '6.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-09-23', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63882, 549, NULL, 7661, '1581', 'DREZ POWDER', NULL, '9.4000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '4.0000', '2022-09-23', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (63883, 549, NULL, 8315, '2235', 'DREZ SOLN 100ML', NULL, '18.0000', '24.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-09-23', '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 (63884, 549, NULL, 7659, '1579', 'DREZ OINT 10MG', NULL, '8.8000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '5.0000', '2022-09-23', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63885, 549, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '7.0000', '2022-09-23', '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 (63886, 549, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '8.0000', '2022-09-23', 'received', '7.2000', '7.2000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (63887, 549, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.7000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-09-23', '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 (63888, 549, NULL, 7834, '1754', 'SOLAK MIX', NULL, '14.8500', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.2500', '5.0000', '2022-09-23', 'received', '14.8500', '14.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (63889, 549, NULL, 7509, '1429', 'ROOTER', NULL, '10.5000', '14.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2022-09-23', 'received', '10.5000', '10.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (63890, 549, NULL, 8359, '2279', 'IMBOOST', NULL, '13.0000', '18.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '1.0000', '2022-09-23', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63891, 549, NULL, 7558, '1478', 'DORETA', NULL, '3.3300', '4.5000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '266.4000', '0.0000', '2022-09-23', 'received', '3.3300', '3.3300', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '3.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 (63892, 549, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '1.0500', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '26.0000', '2022-09-23', '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 (63893, 549, NULL, 9187, '3107', 'EPICROM 2%', NULL, '18.9000', '25.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '0.0000', '2022-09-23', 'received', '18.9000', '18.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63894, 549, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '1.0000', '2022-09-23', 'received', '8.2500', '8.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (63895, 549, NULL, 10023, '64844042', 'GENDA EYE/EAR DROP', NULL, '5.3200', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9200', '6.0000', '2022-09-23', 'received', '5.3200', '5.3200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.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 (63896, 549, NULL, 9245, '3165', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '7.0000', '2022-09-23', 'received', '7.0000', '7.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (63897, 549, NULL, 8406, '2326', 'LIQUID PARRAFIN', NULL, '9.0000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-09-23', '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 (63898, 549, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '8.4000', '11.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '4.0000', '2022-09-23', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63899, 549, NULL, 8269, '2189', 'DUO COTECSON', NULL, '38.1200', '50.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.6000', '0.0000', '2022-09-23', 'received', '38.1200', '38.1200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '38.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 (63900, 549, NULL, 9445, '51778713', 'KOFFEX A', NULL, '7.7000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2000', '5.0000', '2022-09-23', 'received', '7.7000', '7.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63901, 549, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '10.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-09-23', '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 (63902, 549, NULL, 7518, '1438', 'VERMOX TAB', NULL, '10.9000', '14.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '327.0000', '13.0000', '2022-09-23', 'received', '10.9000', '10.9000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (63903, 549, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '56.1000', '80.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.5000', '5.0000', '2022-09-23', 'received', '56.1000', '56.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '56.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 (63904, 549, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '32.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '6.0000', '2022-09-23', 'received', '18.0000', '18.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (63905, 549, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '7.3000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '0.0000', '2022-09-23', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63906, 549, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '8.0000', '12.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-23', 'received', '8.0000', '8.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (63907, 549, NULL, 9721, '99807619', 'AMUROX SUPS (CEFUROXIME AXETIL)', NULL, '11.7000', '16.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '2.0000', '2022-09-23', 'received', '11.7000', '11.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (63908, 549, NULL, 7621, '1541', 'METAGYL SRP', NULL, '5.9000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '5.0000', '2022-09-23', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63909, 549, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '3.4100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.1000', '5.0000', '2022-09-23', 'received', '3.4100', '3.4100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (63910, 549, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '246.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '1.0000', '2022-09-23', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (63911, 549, NULL, 9239, '3159', 'CLOPIDOGREL 75MG', NULL, '25.0000', '33.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2022-09-23', 'received', '25.0000', '25.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63912, 549, NULL, 7780, '1700', 'LUFART TAB', NULL, '15.5000', '20.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '3.0000', '2022-09-23', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63913, 549, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '5.8600', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.6000', '5.0000', '2022-09-23', 'received', '5.8600', '5.8600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (63914, 549, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2022-09-23', '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 (63915, 549, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '0.0000', '2022-09-23', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63916, 549, NULL, 10030, '2660553', 'LOSARTAN POTASSIUM 50MG LTP', NULL, '7.0000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '9.0000', '2022-09-23', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63917, 549, NULL, 7688, '1608', 'FOLIGROW CAPS', NULL, '15.0000', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-09-23', '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 (63918, 549, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '28.5000', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.5000', '2.0000', '2022-09-23', 'received', '28.5000', '28.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (63919, 549, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '49.5300', '65.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.1200', '4.0000', '2022-09-23', 'received', '49.5300', '49.5300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '49.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 (63920, 549, NULL, 7691, '1611', 'IMODIUM', NULL, '18.1000', '24.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-23', 'received', '18.1000', '18.1000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '18.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 (63921, 549, NULL, 7596, '1516', 'IMODIUM', NULL, '18.1000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.4000', '4.0000', '2022-09-23', 'received', '18.1000', '18.1000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.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 (63922, 549, NULL, 7412, '1332', 'COLODIUM', NULL, '2.2000', '3.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '20.0000', '2022-09-23', '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 (63923, 549, NULL, 7456, '1376', 'VENTOLIN INHALER', NULL, '47.2000', '62.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.6000', '3.0000', '2022-09-23', 'received', '47.2000', '47.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '47.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 (63924, 549, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '2.8800', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '20.0000', '2022-09-23', 'received', '2.8800', '2.8800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (63925, 549, NULL, 8039, '1959', 'ACIDOM', NULL, '14.9000', '20.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7000', '1.0000', '2022-09-23', 'received', '14.9000', '14.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (63926, 549, NULL, 7778, '1698', 'BECOATIN SRP', NULL, '13.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-09-23', '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 (63927, 549, NULL, 7593, '1513', 'HAEMOGLOBIN LETAP', NULL, '4.1000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '7.0000', '2022-09-23', '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 (63928, 549, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '4.0300', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3000', '10.0000', '2022-09-23', 'received', '4.0300', '4.0300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (63929, 549, NULL, 9001, '2921', 'IMAX DELAY SPRAY', NULL, '30.0000', '40.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2022-09-23', '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 (63930, 549, NULL, 8074, '1994', 'DRAGON SPRAY', NULL, '28.9000', '38.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.9000', '0.0000', '2022-09-23', 'received', '28.9000', '28.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '28.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 (63931, 549, NULL, 7784, '1704', 'DRAGON CAPS', NULL, '6.0000', '8.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2022-09-23', '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 (63932, 549, NULL, 7853, '1773', 'BELLS VIT C', NULL, '22.7800', '30.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.1200', '2.0000', '2022-09-23', 'received', '22.7800', '22.7800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '22.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 (63933, 549, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.9500', '34.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9500', '0.0000', '2022-09-23', 'received', '25.9500', '25.9500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '25.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 (63934, 549, NULL, 9955, '44275786', 'AYRTON MULTIVITAMIN SYR', NULL, '5.8000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '5.0000', '2022-09-23', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63935, 549, NULL, 7668, '1588', 'KIDICARE SRP', NULL, '14.0000', '18.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '2.0000', '2022-09-23', '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 (63936, 549, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '9.5800', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.9000', '1.0000', '2022-09-23', 'received', '9.5800', '9.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (63937, 549, NULL, 8714, '2634', 'COLDRILIEF SRP', NULL, '6.9000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '1.0000', '2022-09-23', 'received', '6.9000', '6.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63938, 549, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '25.0000', '2022-09-23', '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 (63939, 549, NULL, 8158, '2078', 'SUPIROCIN', NULL, '24.5000', '32.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '3.0000', '2022-09-23', '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 (63940, 549, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2022-09-23', 'received', '18.0000', '18.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (63941, NULL, NULL, 7346, '', '', 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 (63942, NULL, NULL, 8216, '', '', 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 (63943, NULL, NULL, 8146, '', '', 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 (63944, NULL, NULL, 7574, '', '', 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 (63945, NULL, NULL, 10036, '', '', 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 (63946, NULL, NULL, 7990, '', '', 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 (63947, NULL, NULL, 7613, '', '', 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 (63948, NULL, NULL, 8550, '', '', 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 (63949, 552, NULL, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', NULL, '22.0000', '29.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '3.0000', '2022-09-27', '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 (63950, 552, NULL, 8387, '2307', 'HONEY GIFT OF NATURE 500ML ', NULL, '35.0000', '45.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '1.0000', '2022-09-27', '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 (63951, 552, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '6.0000', '2022-09-27', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63952, 552, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '1.0000', '2022-09-27', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63953, 552, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '2.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '7.0000', '2022-09-27', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (63954, 552, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.1300', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.6000', '17.0000', '2022-09-27', '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 (63955, 552, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-09-27', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63956, 552, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '13.0000', '16.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '2.0000', '2022-09-27', 'received', '13.0000', '13.0000', '9.0000', NULL, NULL, 1, 'pc', '9.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 (63957, 552, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '3.3300', '4.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '199.8000', '42.0000', '2022-09-27', 'received', '3.3300', '3.3300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '3.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 (63958, 552, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '20.8000', '28.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.2000', '4.0000', '2022-09-27', 'received', '20.8000', '20.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.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 (63959, 552, NULL, 2068, '79519848', 'LUFART DS', NULL, '15.5000', '20.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '8.0000', '2022-09-27', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63960, 552, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '17.2000', '23.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.0000', '0.0000', '2022-09-27', 'received', '17.2000', '17.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.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 (63961, 552, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '16.1000', '21.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.4000', '1.0000', '2022-09-27', 'received', '16.1000', '16.1000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63962, 552, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '5.9500', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7500', '3.0000', '2022-09-27', 'received', '5.9500', '5.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (63963, 552, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '2.9800', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9000', '5.0000', '2022-09-27', 'received', '2.9800', '2.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (63964, 552, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '8.2000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '4.0000', '2022-09-27', 'received', '8.2000', '8.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63965, 552, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '4.3500', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7500', '5.0000', '2022-09-27', 'received', '4.3500', '4.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.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 (63966, 552, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '5.8000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '5.0000', '2022-09-27', 'received', '5.8000', '5.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63967, 552, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '55.0000', '73.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2022-09-27', 'received', '55.0000', '55.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63968, 552, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2022-09-27', '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 (63969, 552, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '3.3000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-09-27', '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 (63970, 552, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '13.2000', '17.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '3.0000', '2022-09-27', 'received', '13.2000', '13.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (63971, 552, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '1.0000', '2022-09-27', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (63972, 552, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '16.5000', '22.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '4.0000', '2022-09-27', 'received', '16.5000', '16.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63973, 552, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '10.0000', '2022-09-27', '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 (63974, 552, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.7000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '9.0000', '2022-09-27', '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 (63975, 552, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4600', '0.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '49.0000', '2022-09-27', 'received', '0.4600', '0.4600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (63976, 552, NULL, 2161, '58683972', 'GLYCERINE B/S', NULL, '12.0000', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-09-27', '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 (63977, 552, NULL, 7500, '1420', 'GLYCERINE S/S', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2022-09-27', '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 (63978, 552, NULL, 9680, '90594456', 'BORGES GARLIC OIL 500ML', NULL, '44.0000', '58.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2022-09-27', '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 (63979, 552, NULL, 1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', NULL, '13.4000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '3.0000', '2022-09-27', 'received', '13.4000', '13.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (63980, NULL, NULL, 1724, '', '', 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 (63981, 553, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '10.0000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-09-27', '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 (63982, 553, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '11.6000', '15.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '6.0000', '2022-09-27', '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 (63983, 553, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '0.0000', '2022-09-27', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (63984, 553, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '22.6000', '30.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0000', '0.0000', '2022-09-27', 'received', '22.6000', '22.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (63985, 553, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.8800', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2800', '0.0000', '2022-09-27', 'received', '2.8800', '2.8800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.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 (63986, 553, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '5.6000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2022-09-27', 'received', '5.6000', '5.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (63987, 553, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '9.5000', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '2.0000', '2022-09-27', '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 (63988, 553, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '5.0000', '2022-09-27', '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 (63989, 553, NULL, 2953, '85315538', 'CLOPIDOGREL 75MG  FRELET', NULL, '25.0000', '33.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2022-09-27', '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 (63990, 553, NULL, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', NULL, '1.8100', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.5000', '11.0000', '2022-09-27', 'received', '1.8100', '1.8100', '50.0000', NULL, NULL, 1, 'pc', '50.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 (63991, 553, NULL, 9902, '14298485', 'CELECOXIB 200MG OER STRIP', NULL, '8.7300', '12.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.9500', '7.0000', '2022-09-27', 'received', '8.7300', '8.7300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '8.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 (63992, 553, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.7100', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.2600', '0.0000', '2022-09-27', 'received', '4.7100', '4.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (63993, 553, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '1.0500', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '53.0000', '2022-09-27', 'received', '1.0500', '1.0500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (63994, 553, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '4.9000', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-09-27', '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 (63995, 553, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '8.2500', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2500', '0.0000', '2022-09-27', 'received', '8.2500', '8.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (63996, 553, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '10.9800', '14.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.8800', '5.0000', '2022-09-27', 'received', '10.9800', '10.9800', '6.0000', NULL, NULL, 1, 'pc', '6.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 (63997, 553, NULL, 7771, '1691', 'GV FLUC CAPS', NULL, '3.5000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2022-09-27', '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 (63998, 553, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.2000', '3.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '0.0000', '2022-09-27', 'received', '2.2000', '2.2000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (63999, 553, NULL, 9839, '75892458', 'Diclofenac 75mg sandoz 20\'s', NULL, '15.0200', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.1000', '1.0000', '2022-09-27', 'received', '15.0200', '15.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (64000, 553, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.9600', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '5.0000', '2022-09-27', 'received', '1.9600', '1.9600', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64001, 553, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8000', '0.0000', '2022-09-27', 'received', '1.7800', '1.7800', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64002, 553, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-09-27', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64003, 553, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '3.0000', '2022-09-27', 'received', '7.1500', '7.1500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.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 (64004, 553, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2600', '0.5000', '70.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2022-09-27', 'received', '0.2600', '0.2600', '70.0000', NULL, NULL, 1, 'pc', '70.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 (64005, 553, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-09-27', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64006, 553, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2500', '0.0000', '2022-09-27', '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 (64007, 553, NULL, 9931, '34700573', 'ATENOLOL 50MG (ECL)', NULL, '3.9000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '6.0000', '2022-09-27', '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 (64008, 553, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-09-27', '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 (64009, 553, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '3.3300', '4.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '333.0000', '0.0000', '2022-09-27', 'received', '3.3300', '3.3300', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '3.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 (64010, 553, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '1.0500', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '60.0000', '2022-09-27', 'received', '1.0500', '1.0500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (64011, 553, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '60.7800', '80.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '303.9000', '0.0000', '2022-09-27', 'received', '60.7800', '60.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '60.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 (64012, 553, NULL, 9748, '75883490', 'CETAPOL 500MG 20\'S TAB', NULL, '2.5300', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3000', '7.0000', '2022-09-27', 'received', '2.5300', '2.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.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 (64013, 553, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '1.0000', '2022-09-27', '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 (64014, 553, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '2.9800', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8800', '6.0000', '2022-09-27', 'received', '2.9800', '2.9800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.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 (64015, 553, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '5.8000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '5.0000', '2022-09-27', 'received', '5.8000', '5.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64016, 553, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '8.2000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '6.0000', '2022-09-27', 'received', '8.2000', '8.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64017, 553, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '8.0000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '3.0000', '2022-09-27', '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 (64018, 553, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.1000', '4.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '0.0000', '2022-09-27', 'received', '3.1000', '3.1000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (64019, 553, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.6000', '0.8000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-09-27', 'received', '0.6000', '0.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64020, 553, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4600', '0.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '5.0000', '2022-09-27', 'received', '0.4600', '0.4600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (64021, 553, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '3.4200', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.2000', '6.0000', '2022-09-27', 'received', '3.4200', '3.4200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (64022, 553, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '7.8000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-09-27', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64023, 553, NULL, 10017, '67366915', 'SAMALIN ADULT(NO DROWSY) SYR', NULL, '11.8000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.8000', '6.0000', '2022-09-27', 'received', '11.8000', '11.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64024, 553, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '37.5000', '49.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '6.0000', '2022-09-27', 'received', '37.5000', '37.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64025, 553, NULL, 1623, '502126522', 'PERFECTIL  PLUS  SKIN', NULL, '85.0000', '112.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '4.0000', '2022-09-27', 'received', '85.0000', '85.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '85.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64026, 553, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '4.1700', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '0.0000', '2022-09-27', 'received', '4.1700', '4.1700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (64027, 553, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2022-09-27', 'received', '3.3000', '3.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64028, 553, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '4.0000', '2022-09-27', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64029, 553, NULL, 9914, '45710979', 'FLEMING 1000MG TABLET', NULL, '46.9900', '62.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.9400', '1.0000', '2022-09-27', 'received', '46.9900', '46.9900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '46.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 (64030, 553, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '125.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.5000', '79.0000', '2022-09-27', 'received', '1.5400', '1.5400', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '1.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 (64031, 553, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '4.0000', '5.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2022-09-27', '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 (64032, 553, NULL, 7318, '1238', 'LONART SUSP', NULL, '13.5000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2022-09-27', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64033, 553, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '17.2000', '23.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '344.0000', '0.0000', '2022-09-27', 'received', '17.2000', '17.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '17.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 (64034, 553, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '8.3200', '11.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.4000', '4.0000', '2022-09-27', 'received', '8.3200', '8.3200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '8.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 (64035, 553, NULL, 9783, '48567173', 'NEO HYCOLEX 10ML', NULL, '22.0000', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '1.0000', '2022-09-27', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64036, 553, NULL, 9842, '38060261', 'FASIPRO TAB 10×10', NULL, '7.9900', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.9000', '5.0000', '2022-09-27', 'received', '7.9900', '7.9900', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64037, 553, NULL, 7944, '1864', 'DIPEX TAB', NULL, '2.0100', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '13.0000', '2022-09-27', 'received', '2.0100', '2.0100', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64038, 553, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '8.8000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.8000', '0.0000', '2022-09-27', 'received', '8.8000', '8.8000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (64039, 553, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '13.2000', '17.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-09-27', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64040, 553, NULL, 10019, '67690422', 'FLUCOTRUST CAPS 150', NULL, '2.8900', '4.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.6700', '3.0000', '2022-09-27', 'received', '2.8900', '2.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.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 (64041, 553, NULL, 9856, '53412793', 'ROXIDOL', NULL, '2.5000', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-09-27', '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 (64042, 553, NULL, 9876, '80439405', 'HAEM UP SYR 200ML', NULL, '18.0000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '5.0000', '2022-09-27', '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 (64043, 553, NULL, 8406, '2326', 'LIQUID PARRAFIN', NULL, '9.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2022-09-27', '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 (64044, 553, NULL, 2208, '8964000114049', 'CASTOR OIL', NULL, '11.8000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '3.0000', '2022-09-27', 'received', '11.8000', '11.8000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64045, 553, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.6000', '19.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '3.0000', '2022-09-27', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64046, 553, NULL, 9496, '70277717', 'ENAFEN SUSP 60ML', NULL, '6.0200', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.1000', '0.0000', '2022-09-27', 'received', '6.0200', '6.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (64047, 553, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5700', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '0.0000', '2022-09-27', 'received', '1.5700', '1.5700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (64048, 553, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-09-27', '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 (64049, 553, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '9.0000', '12.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '8.0000', '2022-09-27', '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 (64050, 553, NULL, 9482, '56424675', ' LUBRICATED  CONDOM 3 IN 1', NULL, '1.3000', '2.0000', '250.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '325.0000', '216.0000', '2022-09-27', 'received', '1.3000', '1.3000', '250.0000', NULL, NULL, 1, 'pc', '250.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 (64051, 553, NULL, 2854, '44570580', 'LORATADINE 10MG  TEVA', NULL, '6.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-09-27', '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 (64052, 553, NULL, 9996, '50486911', 'LUMETRUST', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-09-27', '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 (64053, 553, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '14.9000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5000', '0.0000', '2022-09-27', 'received', '14.9000', '14.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (64054, 553, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '8.1400', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.7000', '2.0000', '2022-09-27', 'received', '8.1400', '8.1400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (64055, 553, NULL, 10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', NULL, '3.8000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2022-09-27', '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 (64056, 553, NULL, 7496, '1416', 'NORMAL SALINE', NULL, '6.3000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '3.0000', '2022-09-27', '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 (64057, 553, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-09-27', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64058, 553, NULL, 8490, '2410', 'NUROFEN SRP', NULL, '27.3000', '36.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '0.0000', '2022-09-27', 'received', '27.3000', '27.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '27.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 (64059, 553, NULL, 9030, '2950', 'EPICIPRIN', NULL, '12.9000', '17.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.6000', '0.0000', '2022-09-27', 'received', '12.9000', '12.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64060, 553, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '4.0000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-09-27', '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 (64061, 553, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2022-09-27', '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 (64062, 553, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '3.4100', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.1000', '0.0000', '2022-09-27', 'received', '3.4100', '3.4100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (64063, 553, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '15.0000', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-09-27', '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 (64064, 553, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '3.1000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '4.0000', '2022-09-27', 'received', '3.1000', '3.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64065, 553, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '4.0000', '2022-09-27', '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 (64066, 553, NULL, 9732, '99234137', 'CONTREG TAB ', NULL, '0.7000', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '27.0000', '2022-09-27', '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 (64067, 553, NULL, 8638, '2558', 'HISTAZINE TAB', NULL, '0.5000', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2022-09-27', 'received', '0.5000', '0.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (64068, 553, NULL, 9909, '64471918', 'ALLACAN 10MG (CETIRIZINE)', NULL, '4.7000', '6.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.4000', '0.0000', '2022-09-27', 'received', '4.7000', '4.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (64069, 553, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '6.3800', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9000', '2.0000', '2022-09-27', 'received', '6.3800', '6.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (64070, 553, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '9.3100', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8600', '0.0000', '2022-09-27', 'received', '9.3100', '9.3100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (64071, 553, NULL, 2951, '98935572', 'LETAMOL TAB', NULL, '0.7200', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-09-27', 'received', '0.7200', '0.7200', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64072, 553, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.5000', '0.0000', '2022-09-27', 'received', '3.0500', '3.0500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64073, 553, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '30.0000', '40.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '1.0000', '2022-09-27', '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 (64074, 553, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '14.8100', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.1000', '2.0000', '2022-09-27', 'received', '14.8100', '14.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.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 (64075, 553, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '6.0300', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1800', '0.0000', '2022-09-27', 'received', '6.0300', '6.0300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (64076, 553, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '2.0000', '2022-09-27', '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 (64077, 553, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '432.0000', '5.0000', '2022-09-27', 'received', '18.0000', '18.0000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (64078, NULL, NULL, 2054, '', '', 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 (64079, NULL, NULL, 8974, '', '', 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 (64080, NULL, NULL, 9283, '', '', 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 (64081, NULL, NULL, 10018, '', '', 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 (64082, NULL, NULL, 9535, '', '', 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 (64083, NULL, NULL, 7786, '', '', 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 (64084, NULL, NULL, 2970, '', '', 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 (64085, NULL, NULL, 3033, '', '', 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 (64086, 554, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '20.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '5.0000', '2022-09-29', '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 (64087, 554, NULL, 7725, '1645', 'SOFTCARE WIPES', NULL, '12.6700', '15.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0200', '1.0000', '2022-09-29', 'received', '12.6700', '12.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.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 (64088, 554, NULL, 8949, '2869', 'SOFTCARE PAD', NULL, '8.0000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '4.0000', '2022-09-29', '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 (64089, 554, NULL, 8557, '2477', 'SOFTCARE DIAPER', NULL, '15.5800', '20.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.4800', '5.0000', '2022-09-29', 'received', '15.5800', '15.5800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.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 (64090, 554, NULL, 7849, '1769', 'HEAVEN SPRAY', NULL, '19.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '1.0000', '2022-09-29', '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 (64091, 554, NULL, 8124, '2044', 'SASSO SPRAY', NULL, '23.0000', '27.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '3.0000', '2022-09-29', '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 (64092, 554, NULL, 8228, '2148', 'RAID', NULL, '18.0000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-09-29', '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 (64093, 554, NULL, 8730, '2650', 'LONGRICH PASTE', NULL, '30.0000', '35.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '1.0000', '2022-09-29', '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 (64094, 554, NULL, 8859, '2779', 'EUTYMOL PASTE', NULL, '25.0000', '30.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2022-09-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 (64095, 554, NULL, 7730, '1650', 'MENTOS FRESH ACTION', NULL, '0.1900', '0.2000', '105.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9500', '86.0000', '2022-09-29', 'received', '0.1900', '0.1900', '105.0000', NULL, NULL, 1, 'pc', '105.0000', NULL, NULL, NULL, NULL, '0.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 (64096, 554, NULL, 8889, '2809', 'NAN 1@2', NULL, '50.0000', '55.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '1.0000', '2022-09-29', 'received', '50.0000', '50.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64097, 554, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '23.0000', '28.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '3.0000', '2022-09-29', '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 (64098, 554, NULL, 8325, '2245', 'COLGATE BRUSH', NULL, '3.0000', '4.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '11.0000', '2022-09-29', 'received', '3.0000', '3.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (64099, 554, NULL, 9092, '3012', 'VINKA CHOCOLATE', NULL, '0.3200', '0.5000', '300.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '252.0000', '2022-09-29', 'received', '0.3200', '0.3200', '300.0000', NULL, NULL, 1, 'pc', '300.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 (64100, 554, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '8.5000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '6.0000', '2022-09-29', '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 (64101, 554, NULL, 8061, '1981', 'CHOCOLATE', NULL, '8.0000', '10.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '16.0000', '2022-09-29', 'received', '8.0000', '8.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64102, 554, NULL, 8756, '2676', 'CHOCOLATE DARK B/S', NULL, '8.5000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '1.0000', '2022-09-29', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64103, 554, NULL, 8415, '2335', 'CHOCOLATE M/S', NULL, '4.0000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '20.0000', '2022-09-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 (64104, 554, NULL, 8666, '2586', 'BANANA GUM', NULL, '0.4600', '1.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.2000', '16.0000', '2022-09-29', 'received', '0.4600', '0.4600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (64105, 554, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '2.0000', '2022-09-29', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (64106, 554, NULL, 7363, '1283', 'CAMEL 125ML', NULL, '10.5000', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '4.0000', '2022-09-29', 'received', '10.5000', '10.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64107, 554, NULL, 7361, '1281', 'CAMEL500', NULL, '32.0000', '36.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '2.0000', '2022-09-29', '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 (64108, 554, NULL, 7362, '1282', 'CAMEL 250ML', NULL, '15.0000', '20.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-29', 'received', '15.0000', '15.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (64109, 554, NULL, 1460, 'PR-173', 'ZOFLORA 120ML', NULL, '18.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2022-09-29', '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 (64110, 554, NULL, 8324, '2244', 'COLGATE BRUSH DOUBLE', NULL, '6.5000', '8.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5000', '2.0000', '2022-09-29', 'received', '6.5000', '6.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (64111, 554, NULL, 7847, '1767', 'COLGATE TRIP ACTN', NULL, '9.0000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2022-09-29', '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 (64112, 554, NULL, 8834, '2754', 'AIRFRESHER', NULL, '19.0000', '25.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '4.0000', '2022-09-29', '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 (64113, 554, NULL, 8425, '2345', 'COLGATE CHARC', NULL, '12.5000', '16.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.5000', '4.0000', '2022-09-29', 'received', '12.5000', '12.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64114, 554, NULL, 8279, '2199', 'POWER HOUSE', NULL, '9.5000', '12.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '6.0000', '2022-09-29', '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 (64115, 554, NULL, 8566, '2486', 'SURE SPRAY', NULL, '19.0000', '25.0000', '11.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '209.0000', '11.0000', '2022-09-29', 'received', '19.0000', '19.0000', '11.0000', NULL, NULL, 1, 'pc', '11.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 (64116, 554, NULL, 8233, '2153', 'SIVODERM POWD', NULL, '6.0000', '8.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2022-09-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 (64117, 554, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '7.5000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2022-09-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 (64169, NULL, NULL, 9388, '', '', 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 (64170, NULL, NULL, 9411, '', '', 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 (64171, NULL, NULL, 8260, '', '', 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 (64224, NULL, NULL, 1658, '', '', 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 (64225, NULL, NULL, 8527, '', '', 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 (64226, NULL, NULL, 10015, '', '', 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 (64227, NULL, NULL, 1609, '', '', 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 (64228, NULL, NULL, 9699, '', '', 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 (64229, NULL, NULL, 8407, '', '', 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 (64230, NULL, NULL, 7849, '', '', 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 (64231, NULL, NULL, 8478, '', '', 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 (64232, NULL, NULL, 10038, '', '', 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 (64233, 555, NULL, 7711, '1631', 'COARTEM 80/480', NULL, '60.7800', '80.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '243.1200', '4.0000', '2022-09-29', 'received', '60.7800', '60.7800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '60.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 (64234, 555, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.9100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '0.0000', '2022-09-29', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (64235, 555, NULL, 7787, '1707', 'FLUREST', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '2.0000', '2022-09-29', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64236, 555, NULL, 7317, '1237', 'LONART DS TABS', NULL, '17.2000', '23.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.0000', '3.0000', '2022-09-29', 'received', '17.2000', '17.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.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 (64237, 555, NULL, 7753, '1673', 'ZULU', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-09-29', '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 (64238, 555, NULL, 8810, '2730', 'SAMALIN LOZ', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '9.0000', '2022-09-29', '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 (64239, 555, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '41.0000', '2022-09-29', 'received', '0.6500', '0.6500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.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 (64240, 555, NULL, 7744, '1664', 'FIESTA CONCOM', NULL, '4.0000', '5.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '14.0000', '2022-09-29', '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 (64241, 555, NULL, 7456, '1376', 'VENTOLIN INHALER', NULL, '47.2000', '62.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.4000', '1.0000', '2022-09-29', 'received', '47.2000', '47.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '47.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 (64242, 555, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.1000', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.0000', '15.0000', '2022-09-29', 'received', '3.1000', '3.1000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (64243, 555, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '13.0000', '17.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-09-29', '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 (64244, 555, NULL, 8468, '2388', 'VIREST CREAM', NULL, '10.0000', '13.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2022-09-29', '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 (64245, 555, NULL, 7458, '1378', 'VOLLTFAST 50MG', NULL, '1.7700', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '30.0000', '2022-09-29', 'received', '1.7700', '1.7700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.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 (64246, 555, NULL, 7554, '1474', 'NAKLOFEN DUO', NULL, '2.2000', '3.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '40.0000', '2022-09-29', '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 (64247, 555, NULL, 7963, '1883', 'HEPTO PEP', NULL, '10.6000', '14.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4000', '4.0000', '2022-09-29', 'received', '10.6000', '10.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64248, 555, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2022-09-29', '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 (64249, 555, NULL, 7778, '1698', 'BECOATIN SRP', NULL, '13.0000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '2.0000', '2022-09-29', '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 (64250, 555, NULL, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '26.0000', '34.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2022-09-29', '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 (64251, 555, NULL, 7740, '1660', 'GLYCERINE B/S', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-09-29', '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 (64252, 555, NULL, 9737, '79816525', 'ZEROCID PLUS SUSP 200ML', NULL, '10.0000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2022-09-29', '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 (64253, 555, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-09-29', '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 (64254, 555, NULL, 9209, '3129', 'CETRIZAN 10MG', NULL, '6.3800', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9000', '4.0000', '2022-09-29', 'received', '6.3800', '6.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (64255, 555, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '247.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '373.6000', '2.0000', '2022-09-29', 'received', '186.8000', '186.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '186.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 (64256, 555, NULL, 7500, '1420', 'GLYCERINE S/S', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '4.0000', '2022-09-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 (64257, 555, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '14.3000', '19.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.0000', '10.0000', '2022-09-29', 'received', '14.3000', '14.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64258, 555, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '12.7000', '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.0000', '4.0000', '2022-09-29', 'received', '12.7000', '12.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64259, 555, NULL, 8680, '2600', 'TYPHOID TEST', NULL, '11.0000', '16.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '16.0000', '2022-09-29', 'received', '11.0000', '11.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (64260, 555, NULL, 8063, '1983', 'GLUCOSE CHECK', NULL, '2.7000', '7.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '48.0000', '2022-09-29', 'received', '2.7000', '2.7000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64261, 555, NULL, 8924, '2844', 'MYCOVIN 500', NULL, '7.9200', '10.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9200', '0.0000', '2022-09-29', 'received', '7.9200', '7.9200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '7.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 (64262, 555, NULL, 8065, '1985', 'AMOKSIKLAV 1G', NULL, '58.4000', '77.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.2000', '0.0000', '2022-09-29', 'received', '58.4000', '58.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '58.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 (64263, 555, NULL, 7383, '1303', 'AUGMENTIN  625 MG', NULL, '98.6000', '130.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.2000', '2.0000', '2022-09-29', 'received', '98.6000', '98.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '98.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 (64264, 555, NULL, 7750, '1670', 'CALPOL 2+', NULL, '46.3000', '61.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.9000', '3.0000', '2022-09-29', 'received', '46.3000', '46.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '46.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 (64265, 555, NULL, 7687, '1607', 'CALPOL 6+', NULL, '49.0000', '65.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '3.0000', '2022-09-29', '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 (64266, 555, NULL, 7609, '1529', 'CETAPOL SRP', NULL, '5.5000', '7.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-09-29', '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 (64267, 555, NULL, 8202, '2122', 'GYPRONE SRP', NULL, '9.9000', '13.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '3.0000', '2022-09-29', 'received', '9.9000', '9.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64268, 555, NULL, 7833, '1753', 'PROSTAFIT', NULL, '19.8000', '26.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '3.0000', '2022-09-29', 'received', '19.8000', '19.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64269, 555, NULL, 7835, '1755', 'ZIPMAN CAPS', NULL, '15.9500', '21.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.8000', '1.0000', '2022-09-29', 'received', '15.9500', '15.9500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (64270, 555, NULL, 8539, '2459', 'ASMADRIN', NULL, '1.0000', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '42.0000', '2022-09-29', '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 (64271, 555, NULL, 7641, '1561', 'LYDIA', NULL, '8.5000', '11.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '9.0000', '2022-09-29', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64272, 555, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '10.8000', '14.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '5.0000', '2022-09-29', 'received', '10.8000', '10.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64273, 555, NULL, 7769, '1689', 'LETALIN', NULL, '2.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2022-09-29', '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 (64274, 555, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '40.3000', '53.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '161.2000', '1.0000', '2022-09-29', 'received', '40.3000', '40.3000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64275, 555, NULL, 7927, '1847', 'ENACEF SYRUP 125', NULL, '14.6000', '19.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '3.0000', '2022-09-29', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64276, 555, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '7.2000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-09-29', 'received', '7.2000', '7.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64277, 555, NULL, 1833, 'PR-546', 'STUGERON TABS 50?S', NULL, '5.1600', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '5.0000', '2022-09-29', 'received', '5.1600', '5.1600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (64278, 555, NULL, 7666, '1586', 'DYMOL TAB', NULL, '5.7000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '8.0000', '2022-09-29', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (64279, 555, NULL, 9609, '47724870', 'MALIN BABY PLUS SYRUP', NULL, '9.1000', '12.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '3.0000', '2022-09-29', 'received', '9.1000', '9.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.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 (64280, 555, NULL, 9985, '69709139', 'ESKARON SYR', NULL, '6.9000', '9.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '2.0000', '2022-09-29', 'received', '6.9000', '6.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64281, 555, NULL, 8490, '2410', 'NUROFEN SRP', NULL, '27.3000', '36.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '2.0000', '2022-09-29', 'received', '27.3000', '27.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.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 (64282, 555, NULL, 9984, '07708627', 'ESKARON CAPS', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '9.0000', '2022-09-29', '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 (64283, 555, NULL, 9770, '64377760', 'PROMECINE SYRUP 125ML', NULL, '4.0200', '5.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '4.0000', '2022-09-29', 'received', '4.0200', '4.0200', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64284, 555, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5500', '6.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-09-29', 'received', '3.5500', '3.5500', '0.0000', NULL, NULL, 1, 'pc', '0.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 (64285, 555, NULL, 7453, '1373', 'TRES ORIX 250ML', NULL, '25.0000', '33.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-09-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 (64286, 555, NULL, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', NULL, '10.4600', '15.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3800', '0.0000', '2022-09-29', 'received', '10.4600', '10.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (64287, 555, NULL, 7380, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', NULL, '12.5000', '19.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-09-29', 'received', '12.5000', '12.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64288, 555, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '40.6300', '54.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.8900', '0.0000', '2022-09-29', 'received', '40.6300', '40.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.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 (64289, 556, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '9.5000', '12.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2022-10-04', '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 (64290, 556, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '40.3000', '53.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.9000', '3.0000', '2022-10-04', '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 (64291, 556, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '58.4000', '77.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.8000', '2.0000', '2022-10-04', 'received', '58.4000', '58.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.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 (64292, 556, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-10-04', '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 (64293, 556, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-10-04', '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 (64294, 556, NULL, 3033, '14789418', 'HUICHUN CAPSULES', NULL, '22.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-10-04', '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 (64295, 556, NULL, 7753, '1673', 'ZULU', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-10-04', '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 (64296, 556, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '5.7000', '8.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '10.0000', '2022-10-04', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (64297, 556, NULL, 9549, '26287289', 'DIFLUCAN CAPS', NULL, '82.8700', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.8700', '1.0000', '2022-10-04', 'received', '82.8700', '82.8700', '1.0000', NULL, NULL, 1, 'pc', '1.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 (64298, 556, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.4000', '2.0000', '2022-10-04', '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 (64299, 556, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '3.3300', '4.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '199.8000', '21.0000', '2022-10-04', 'received', '3.3300', '3.3300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '3.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 (64300, 556, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '9.5000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2022-10-04', '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 (64301, 556, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '4.0000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-10-04', '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 (64302, 556, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.7500', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '45.0000', '2022-10-04', 'received', '0.7500', '0.7500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64303, 556, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '4.0000', '2022-10-04', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64304, 556, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.2000', '6.0000', '2022-10-04', 'received', '3.9100', '3.9100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (64305, 556, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '6.2000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '3.0000', '2022-10-04', '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 (64306, 556, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '3.0000', '2022-10-04', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64307, 556, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2022-10-04', '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 (64308, 556, NULL, 2327, '66319646', 'MR Q', NULL, '4.2000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '13.0000', '2022-10-04', 'received', '4.2000', '4.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64309, 556, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '12.7000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5000', '3.0000', '2022-10-04', 'received', '12.7000', '12.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64310, 556, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '14.3000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '3.0000', '2022-10-04', '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 (64311, 556, NULL, 3033, '14789418', 'HUICHUN CAPSULES', NULL, '22.0000', '30.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2022-10-04', '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 (64312, 556, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '16.3700', '22.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '163.7000', '10.0000', '2022-10-04', 'received', '16.3700', '16.3700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.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 (64313, 556, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '24.0000', '32.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.0000', '10.0000', '2022-10-04', 'received', '24.0000', '24.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (64314, 556, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2022-10-04', '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 (64315, 556, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '7.1500', '9.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '3.0000', '2022-10-04', 'received', '7.1500', '7.1500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.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 (64316, 556, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '6.6000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2022-10-04', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64317, 556, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '17.9000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.7000', '3.0000', '2022-10-04', 'received', '17.9000', '17.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (64318, 556, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2500', '3.0000', '2022-10-04', '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 (64319, 556, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2500', '3.0000', '2022-10-04', '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 (64320, 556, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '2.4900', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.4500', '5.0000', '2022-10-04', 'received', '2.4900', '2.4900', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64321, 556, NULL, 9885, '28207929', 'KEFROX 500MG TAB', NULL, '30.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '4.0000', '2022-10-04', 'received', '30.0000', '30.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64322, 556, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '9.3600', '12.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '3.0000', '2022-10-04', 'received', '9.3600', '9.3600', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64323, 556, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '81.4000', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.4000', '0.0000', '2022-10-04', '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 (64324, 556, NULL, 9979, '49967696', 'SKYCLAV 1G', NULL, '15.5300', '20.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5900', '3.0000', '2022-10-04', 'received', '15.5300', '15.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (64325, 556, NULL, 2101, '56160077', 'LETAFEN SUSPENSION 100ML', NULL, '1.6500', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.9500', '3.0000', '2022-10-04', 'received', '1.6500', '1.6500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64326, 556, NULL, 9495, '23845919', 'ENAFE 60MLN SUSP', NULL, '6.0200', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0600', '3.0000', '2022-10-04', 'received', '6.0200', '6.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.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 (64327, 556, NULL, 9846, '45939879', 'XZOLE F SUSP', NULL, '7.3000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '0.0000', '2022-10-04', 'received', '7.3000', '7.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64328, 556, NULL, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '10.4600', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3800', '2.0000', '2022-10-04', 'received', '10.4600', '10.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (64329, 556, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '25.0000', '33.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-10-04', '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 (64366, NULL, NULL, 9235, '', '', 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 (64367, NULL, NULL, 9100, '', '', 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 (64368, NULL, NULL, 10034, '', '', 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 (64369, NULL, NULL, 8627, '', '', 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 (64370, NULL, NULL, 9286, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '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 (64371, NULL, NULL, 1639, '', '', 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 (64372, 558, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.9100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '7.0000', '2022-10-07', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (64373, 558, NULL, 8359, '2279', 'IMBOOST', NULL, '15.4000', '20.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '5.0000', '2022-10-07', 'received', '15.4000', '15.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.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 (64374, 558, NULL, 9399, '3319', 'LETACAM (PIROXICAM)', NULL, '0.9800', '2.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2022-10-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 (64375, 558, NULL, 8020, '1940', 'MUCOLEX J', NULL, '15.0000', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-10-07', '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 (64376, 558, NULL, 7781, '1701', 'PENICILLIN TAB', NULL, '0.9800', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2022-10-07', 'received', '0.9800', '0.9800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64377, 558, NULL, 8101, '2021', 'CHLO CAPS', NULL, '2.6900', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.5000', '47.0000', '2022-10-07', 'received', '2.6900', '2.6900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64378, 558, NULL, 7478, '1398', 'NIFE DENK 20', NULL, '6.3200', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2000', '10.0000', '2022-10-07', 'received', '6.3200', '6.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (64379, 558, NULL, 7930, '1850', 'WORMBASE SUSP', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '3.0000', '2022-10-07', '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 (64380, 558, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-10-07', '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 (64381, 558, NULL, 10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', NULL, '3.8000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2022-10-07', '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 (64382, 558, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '10.0000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-10-07', '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 (64383, 558, NULL, 2666, '98057255', 'FLEMING SUSP 228', NULL, '32.1000', '42.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.5000', '5.0000', '2022-10-07', 'received', '32.1000', '32.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '32.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 (64384, 558, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '4.0000', '2022-10-07', '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 (64385, 558, NULL, 7411, '1331', 'CITRO C', NULL, '1.6000', '2.5000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '59.0000', '2022-10-07', 'received', '1.6000', '1.6000', '75.0000', NULL, NULL, 1, 'pc', '75.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 (64386, 558, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '1.9600', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '9.0000', '2022-10-07', '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 (64387, 558, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '6.0000', '2022-10-07', 'received', '18.0000', '18.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (64388, 558, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '7.8000', '10.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '1.0000', '2022-10-07', '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 (64389, 558, NULL, 7518, '1438', 'VERMOX TAB', NULL, '10.9000', '14.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '218.0000', '19.0000', '2022-10-07', 'received', '10.9000', '10.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64390, 558, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '7.3000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '10.0000', '2022-10-07', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64391, 558, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '8.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '10.0000', '2022-10-07', '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 (64392, 558, NULL, 7862, '1782', 'GLUCOSE', NULL, '6.1700', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.8500', '1.0000', '2022-10-07', 'received', '6.1700', '6.1700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (64393, 558, NULL, 7917, '1837', 'NO 10', NULL, '0.5000', '0.8000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '91.0000', '2022-10-07', 'received', '0.5000', '0.5000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64394, 558, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '16.0000', '21.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '2.0000', '2022-10-07', '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 (64395, 558, NULL, 7877, '1797', 'POLYFER CAPS', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '7.0000', '2022-10-07', '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 (64396, 558, NULL, 9856, '53412793', 'ROXIDOL', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '6.0000', '2022-10-07', '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 (64397, 558, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '7.7000', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '3.0000', '2022-10-07', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64398, 558, NULL, 8207, '2127', 'PAINGAY', NULL, '3.2000', '4.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-10-07', 'received', '3.2000', '3.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64399, 558, NULL, 7583, '1503', 'DICLOLEX TAB', NULL, '1.5000', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '10.0000', '2022-10-07', '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 (64400, 558, NULL, 7666, '1586', 'DYMOL TAB', NULL, '5.7000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '8.0000', '2022-10-07', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (64401, 558, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '3.3300', '4.5000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '266.4000', '56.0000', '2022-10-07', 'received', '3.3300', '3.3300', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '3.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 (64402, 558, NULL, 7736, '1656', 'NUGEL -O', NULL, '27.2600', '36.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.3000', '2.0000', '2022-10-07', 'received', '27.2600', '27.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.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 (64403, 558, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '40.3000', '53.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.9000', '0.0000', '2022-10-07', '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 (64404, 558, NULL, 9956, '45562069', 'SKYCEF 500MG TABLET', NULL, '18.4000', '24.2900', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '2.0000', '2022-10-07', 'received', '18.4000', '18.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (64405, 558, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '64.0000', '2022-10-07', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64406, 558, NULL, 7859, '1779', 'KOFLET', NULL, '16.0500', '21.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.2500', '3.0000', '2022-10-07', 'received', '16.0500', '16.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (64407, 558, NULL, 7494, '1414', 'NORVASC 5MG', NULL, '57.6000', '76.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.8000', '3.0000', '2022-10-07', 'received', '57.6000', '57.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '57.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 (64408, 558, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '1.0000', '1.5000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '44.0000', '2022-10-07', 'received', '1.0000', '1.0000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (64409, 558, NULL, 9751, '95396700', 'BEL AQUA MEDIUM', NULL, '1.8000', '2.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '14.0000', '2022-10-07', 'received', '1.8000', '1.8000', '15.0000', NULL, NULL, 1, 'pc', '15.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 (64410, NULL, NULL, 8727, '', '', 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 (64411, NULL, NULL, 9985, '', '', 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 (64412, NULL, NULL, 8371, '', '', 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 (64413, NULL, NULL, 8141, '', '', 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 (64414, NULL, NULL, 10022, '', '', 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 (64443, 560, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '6.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-10-08', '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 (64444, 560, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '17.0000', '22.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '4.0000', '2022-10-08', '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 (64445, 560, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '22.0000', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '5.0000', '2022-10-08', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64446, 560, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '22.0000', '29.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-10-08', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64447, 560, NULL, 1418, 'PR-131', 'MADAM CATERINE', NULL, '8.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '5.0000', '2022-10-08', '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 (64448, 560, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '20.0000', '26.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-10-08', '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 (64449, 560, NULL, 7809, '1729', 'MIGHTY P S\'S', NULL, '17.0000', '22.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2022-10-08', '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 (64450, 560, NULL, 7808, '1728', 'MIGHTY P B/S', NULL, '17.0000', '22.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '1.0000', '2022-10-08', '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 (64451, 560, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '4.0000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2022-10-08', '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 (64452, 560, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.5000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '1.0000', '2022-10-08', '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 (64453, 560, NULL, 10049, '63889223', 'CHOCHO CREAM BIG B/S', NULL, '13.0000', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2022-10-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 (64466, NULL, NULL, 7930, '', '', 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 (64467, NULL, NULL, 9980, '', '', 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 (64468, NULL, NULL, 3030, '', '', 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 (64469, NULL, NULL, 7918, '', '', 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 (64470, NULL, NULL, 9496, '', '', 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 (64471, NULL, NULL, 1321, '', '', 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 (64472, 562, NULL, 2156, '10421120', 'LEENA CAPS', NULL, '4.0200', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0200', '1.0000', '2022-10-10', 'received', '4.0200', '4.0200', '1.0000', NULL, NULL, 1, 'pc', '1.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 (64473, 562, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2022-10-10', '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 (64474, 562, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '6.0300', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.1500', '4.0000', '2022-10-10', 'received', '6.0300', '6.0300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (64475, 562, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '6.2000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '1.0000', '2022-10-10', 'received', '6.2000', '6.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64476, 562, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '46.3000', '61.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.6000', '1.0000', '2022-10-10', 'received', '46.3000', '46.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.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 (64477, 562, NULL, 2068, '79519848', 'LUFART DS', NULL, '15.5000', '20.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '1.0000', '2022-10-10', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64478, 562, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.4200', '1.0000', '2022-10-10', 'received', '14.2100', '14.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.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 (64479, 562, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.7500', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '46.0000', '2022-10-10', 'received', '0.7500', '0.7500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64480, 562, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '4.7100', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.7100', '1.0000', '2022-10-10', 'received', '4.7100', '4.7100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '4.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 (64481, 562, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '1.0500', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '50.0000', '2022-10-10', '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 (64482, 562, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '30.0000', '2022-10-10', '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 (64483, 562, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '9.5000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2022-10-10', '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 (64484, 562, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '4.2900', '6.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '171.6000', '37.0000', '2022-10-10', 'received', '4.2900', '4.2900', '40.0000', NULL, NULL, 1, 'pc', '40.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 (64485, 562, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.2000', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '30.0000', '2022-10-10', '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 (64486, 562, NULL, 8879, '2799', 'INFA V OINT', NULL, '22.9000', '30.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.9000', '1.0000', '2022-10-10', 'received', '22.9000', '22.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '22.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 (64487, 562, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '22.9000', '30.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7000', '3.0000', '2022-10-10', 'received', '22.9000', '22.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (64488, 562, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '23.0000', '30.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '3.0000', '2022-10-10', '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 (64489, 562, NULL, 9854, '01673562', 'CANDID CREAM', NULL, '7.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-10-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 (64490, 562, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '22.9100', '30.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.7300', '3.0000', '2022-10-10', 'received', '22.9100', '22.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.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 (64491, 562, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-10-10', '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 (64492, 562, NULL, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '8.8000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '2.0000', '2022-10-10', '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 (64493, 562, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '15.2000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2000', '1.0000', '2022-10-10', 'received', '15.2000', '15.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '15.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 (64494, 562, NULL, 7322, '1242', 'LUEX ADULT DRY', NULL, '16.0000', '21.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '1.0000', '2022-10-10', '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 (64495, 562, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '17.0000', '22.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '5.0000', '2022-10-10', '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 (64496, 562, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '13.2000', '17.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '5.0000', '2022-10-10', 'received', '13.2000', '13.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64497, 562, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '6.6700', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '6.0000', '2022-10-10', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (64498, 562, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '23.7000', '31.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '0.0000', '2022-10-10', 'received', '23.7000', '23.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '23.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 (64499, 562, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '10.8000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-10-10', '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 (64500, 562, NULL, 9508, '43167014', 'SIMPLE LINCTUS ADULT COUGH', NULL, '6.4000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '5.0000', '2022-10-10', 'received', '6.4000', '6.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64501, 562, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.8000', '12.0000', '2022-10-10', 'received', '0.5900', '0.5900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.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 (64502, 562, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '122.0000', '40.0000', '2022-10-10', 'received', '3.0500', '3.0500', '40.0000', NULL, NULL, 1, 'pc', '40.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 (64503, 562, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '6.7000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.7000', '1.0000', '2022-10-10', 'received', '6.7000', '6.7000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (64504, 562, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '58.4000', '77.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.8000', '2.0000', '2022-10-10', 'received', '58.4000', '58.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '58.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 (64505, 562, NULL, 9671, '67250351', 'FLEMING 457MG SUSP', NULL, '32.0000', '42.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '2.0000', '2022-10-10', '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 (64506, 562, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '10.9000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '3.0000', '2022-10-10', 'received', '10.9000', '10.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64507, 562, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '98.6000', '130.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '295.8000', '2.0000', '2022-10-10', 'received', '98.6000', '98.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '98.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 (64508, 562, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '6.0000', '2022-10-10', 'received', '10.5000', '10.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64509, 562, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '9.0000', '2022-10-10', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64510, 562, NULL, 9928, '22127323', 'TINATET BF BF CAPS', NULL, '26.4000', '35.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '2.0000', '2022-10-10', 'received', '26.4000', '26.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.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 (64511, 562, NULL, 2151, '05077634', 'TOMAC MIX', NULL, '27.5000', '36.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2022-10-10', 'received', '27.5000', '27.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64512, 562, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.6000', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '2.0000', '2022-10-10', '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 (64513, 562, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '7.3000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9000', '3.0000', '2022-10-10', 'received', '7.3000', '7.3000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64514, 562, NULL, 9747, '02329475', 'VIN C 100MG', NULL, '0.6500', '1.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '19.0000', '2022-10-10', 'received', '0.6500', '0.6500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.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 (64515, 562, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '33.0000', '2022-10-10', 'received', '8.5000', '8.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (64516, 562, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.5500', '3.5000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '12.0000', '2022-10-10', 'received', '2.5500', '2.5500', '16.0000', NULL, NULL, 1, 'pc', '16.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 (64517, 562, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '28.9000', '38.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.8000', '1.0000', '2022-10-10', 'received', '28.9000', '28.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.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 (64518, 562, NULL, 7745, '1665', 'DUREX COND', NULL, '8.9000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '2.0000', '2022-10-10', 'received', '8.9000', '8.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.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 (64519, 562, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '20.8000', '27.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6000', '2.0000', '2022-10-10', 'received', '20.8000', '20.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (64520, 562, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '7.4000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '4.0000', '2022-10-10', 'received', '7.4000', '7.4000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64521, 562, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '7.4000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '3.0000', '2022-10-10', 'received', '7.4000', '7.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64522, 562, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '8.2000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '2.0000', '2022-10-10', '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 (64523, 562, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '7.8000', '10.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '4.0000', '2022-10-10', 'received', '7.8000', '7.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64524, 562, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '18.0000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-10-10', '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 (64525, 562, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '10.3000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.9000', '2.0000', '2022-10-10', 'received', '10.3000', '10.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.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 (64526, 562, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '9.4000', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '4.0000', '2022-10-10', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (64527, 562, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6700', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '6.0000', '2022-10-10', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (64528, 562, NULL, 8413, '2333', 'COAFS', NULL, '85.0000', '120.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '425.0000', '5.0000', '2022-10-10', 'received', '85.0000', '85.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '85.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64529, 562, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2022-10-10', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64530, 562, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '9.0000', '2022-10-10', '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 (64531, 562, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '12.8400', '17.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6800', '2.0000', '2022-10-10', 'received', '12.8400', '12.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.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 (64532, 562, NULL, 2151, '05077634', 'TOMAC MIX', NULL, '27.5000', '36.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '3.0000', '2022-10-10', 'received', '27.5000', '27.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64533, 562, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '10.9800', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '4.0000', '2022-10-10', '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 (64534, 562, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '12.8400', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.3600', '4.0000', '2022-10-10', 'received', '12.8400', '12.8400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '12.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 (64535, 562, NULL, 9568, '35315099', 'DAY NURSE CAPS', NULL, '71.0000', '94.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '852.0000', '12.0000', '2022-10-10', 'received', '71.0000', '71.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (64536, 562, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.0000', '24.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '4.0000', '2022-10-10', 'received', '18.0000', '18.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (64537, 562, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '10.8000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2022-10-10', '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 (64538, 562, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '22.6000', '30.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0000', '3.0000', '2022-10-10', 'received', '22.6000', '22.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (64539, 562, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.9000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '4.0000', '2022-10-10', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64540, 562, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '29.6300', '39.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '177.7800', '5.0000', '2022-10-10', 'received', '29.6300', '29.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '29.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 (64541, 562, NULL, 9330, '3250', 'APETATRUST', NULL, '14.5000', '19.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '4.0000', '2022-10-10', '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 (64542, 562, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2022-10-10', '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 (64543, 562, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.5000', '24.0000', '2022-10-10', 'received', '3.0500', '3.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (64544, 562, NULL, 8444, '2364', 'GEBEDOL PLUS', NULL, '2.4400', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.8000', '18.0000', '2022-10-10', 'received', '2.4400', '2.4400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (64545, 562, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6700', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0200', '4.0000', '2022-10-10', 'received', '6.6700', '6.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (64546, 562, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '27.2600', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.3000', '2.0000', '2022-10-10', 'received', '27.2600', '27.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.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 (64547, 562, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '9.0000', '2022-10-10', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64548, 562, NULL, 7753, '1673', 'ZULU', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-10-10', '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 (64549, 562, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3300', '2.0000', '144.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.5200', '131.0000', '2022-10-10', 'received', '1.3300', '1.3300', '144.0000', NULL, NULL, 1, 'pc', '144.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 (64550, 562, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '8.3200', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.2000', '9.0000', '2022-10-10', 'received', '8.3200', '8.3200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.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 (64551, 562, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.3300', '2.0000', '144.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.5200', '144.0000', '2022-10-10', 'received', '1.3300', '1.3300', '144.0000', NULL, NULL, 1, 'pc', '144.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 (64552, 562, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.7800', '1.0000', '96.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.8800', '96.0000', '2022-10-10', 'received', '0.7800', '0.7800', '96.0000', NULL, NULL, 1, 'pc', '96.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 (64553, 562, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.9300', '1.5000', '144.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '133.9200', '144.0000', '2022-10-10', 'received', '0.9300', '0.9300', '144.0000', NULL, NULL, 1, 'pc', '144.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 (64554, 562, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.0000', '100.0000', '2022-10-10', 'received', '1.7800', '1.7800', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64555, 562, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '125.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.5000', '97.0000', '2022-10-10', 'received', '1.5400', '1.5400', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '1.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 (64556, 562, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6700', '2.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '50.0000', '2022-10-10', 'received', '0.6700', '0.6700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64557, 562, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-10-10', '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 (64558, 562, NULL, 3059, '98695319', 'INDOMETHACIN', NULL, '0.6000', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '38.0000', '2022-10-10', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64559, 562, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5500', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2000', '0.0000', '2022-10-10', 'received', '3.5500', '3.5500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64560, 562, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '5.5000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '8.0000', '2022-10-10', '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 (64561, 562, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '2.2200', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '10.0000', '2022-10-10', 'received', '2.2200', '2.2200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (64562, 562, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.6000', '0.8000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '95.0000', '2022-10-10', 'received', '0.6000', '0.6000', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64563, 562, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.2000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '20.0000', '2022-10-10', '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 (64564, 562, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '7.0000', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '5.0000', '2022-10-10', '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 (64565, 562, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.3000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '10.0000', '2022-10-10', '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 (64566, NULL, NULL, 9712, '', '', 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 (64567, NULL, NULL, 9551, '', '', 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 (64568, 563, NULL, 8413, '2333', 'COAFS', NULL, '85.0000', '120.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '425.0000', '3.0000', '2022-10-11', 'received', '85.0000', '85.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '85.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64569, 563, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '40.3000', '53.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '403.0000', '9.0000', '2022-10-11', 'received', '40.3000', '40.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64570, 563, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '58.4000', '77.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '584.0000', '10.0000', '2022-10-11', 'received', '58.4000', '58.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '58.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 (64571, 563, NULL, 9671, '67250351', 'FLEMING 457MG SUSP', NULL, '32.0000', '42.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '1.0000', '2022-10-11', 'received', '32.0000', '32.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64572, 563, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '57.0000', '2022-10-11', 'received', '1.7800', '1.7800', '60.0000', NULL, NULL, 1, 'pc', '60.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 (64573, 563, NULL, 2149, '74837557', 'ZIPMAN CAPS', NULL, '15.9500', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8500', '2.0000', '2022-10-11', 'received', '15.9500', '15.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.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 (64574, 563, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.4000', '0.0000', '2022-10-11', 'received', '18.9000', '18.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64575, 563, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.2000', '0.0000', '2022-10-11', 'received', '3.9100', '3.9100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (64576, 563, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '28.9000', '38.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.5000', '2.0000', '2022-10-11', 'received', '28.9000', '28.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.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 (64577, 563, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.5000', '0.0000', '2022-10-11', 'received', '3.0500', '3.0500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (64578, 563, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-10-11', '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 (64579, 563, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '16.0000', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '2.0000', '2022-10-11', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64580, 563, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '9.5800', '13.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8000', '8.0000', '2022-10-11', 'received', '9.5800', '9.5800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (64581, 563, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '14.8500', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5500', '3.0000', '2022-10-11', 'received', '14.8500', '14.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (64582, 563, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '1.4700', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '41.0000', '2022-10-11', 'received', '1.4700', '1.4700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64583, 563, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '218.0000', '0.0000', '2022-10-11', 'received', '10.9000', '10.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64584, 563, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '0.0000', '2022-10-11', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64585, 563, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '7.8000', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2022-10-11', 'received', '7.8000', '7.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64586, 563, NULL, 8844, '2764', 'FEROFIX', NULL, '4.9900', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9600', '0.0000', '2022-10-11', 'received', '4.9900', '4.9900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64587, 563, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '12.5000', '16.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '3.0000', '2022-10-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 (64588, 563, NULL, 9922, '72236986', 'BETASOL CREAM 30G', NULL, '3.1500', '4.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '5.0000', '2022-10-11', 'received', '3.1500', '3.1500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64589, 563, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.5400', '2.5000', '125.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.5000', '61.0000', '2022-10-11', 'received', '1.5400', '1.5400', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '1.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 (64590, 563, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '0.0000', '2022-10-11', 'received', '10.4000', '10.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (64591, 563, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '15.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-10-11', '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 (64592, 563, NULL, 9791, '08517383', 'BASECOLD TAB', NULL, '1.0000', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '32.0000', '2022-10-11', '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 (64593, 563, NULL, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '3.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2022-10-11', '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 (64594, 563, NULL, 8017, '1937', 'SALOCOLD TAB', NULL, '0.6000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '30.0000', '2022-10-11', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64595, 563, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2022-10-11', '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 (64596, 563, NULL, 9914, '45710979', 'FLEMING 1000MG TABLET', NULL, '46.9900', '62.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.9800', '2.0000', '2022-10-11', 'received', '46.9900', '46.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.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 (64597, 563, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '18.9000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '2.0000', '2022-10-11', '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 (64598, 563, NULL, 9840, '00885109', 'LEXOCAP', NULL, '1.5000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '10.0000', '2022-10-11', '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 (64599, 563, NULL, 8170, '2090', 'LEOPARD OINT', NULL, '5.7500', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2022-10-11', 'received', '5.7500', '5.7500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64600, 563, NULL, 9763, '27112151', 'AMCICLOX 250MG CAP LETAP', NULL, '2.8000', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '11.0000', '2022-10-11', 'received', '2.8000', '2.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64601, 563, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '2.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2022-10-11', '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 (64602, 563, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '6.6000', '9.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '17.0000', '2022-10-11', 'received', '6.6000', '6.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64603, 563, NULL, 7771, '1691', 'GV FLUC CAPS', NULL, '3.5000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '10.0000', '2022-10-11', '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 (64604, 563, NULL, 9456, '13527138', 'INOPRIL OM&J', NULL, '3.5000', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '30.0000', '2022-10-11', '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 (64605, 563, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.2000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '4.0000', '2022-10-11', 'received', '3.2000', '3.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64606, 563, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '2.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.0000', '0.0000', '2022-10-11', '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 (64607, 563, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '58.9000', '78.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.7000', '2.0000', '2022-10-11', 'received', '58.9000', '58.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '58.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 (64608, 563, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.8000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '6.0000', '2022-10-11', '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 (64609, 563, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '4.0000', '2022-10-11', '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 (64610, 563, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '13.0000', '16.5000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '15.0000', '2022-10-11', 'received', '13.0000', '13.0000', '18.0000', NULL, NULL, 1, 'pc', '18.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 (64611, 563, NULL, 8595, '2515', 'PAINGAY GEL', NULL, '4.9000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2022-10-11', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64612, 563, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2022-10-11', '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 (64613, 563, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '16.5000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '0.0000', '2022-10-11', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64614, 563, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2500', '5.0000', '2022-10-11', '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 (64615, 563, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0000', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '4.0000', '2022-10-11', '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 (64616, 563, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '8.7000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2022-10-11', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64617, 563, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.8000', '4.0000', '2022-10-11', 'received', '2.8000', '2.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64618, 563, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '3.3300', '4.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '333.0000', '0.0000', '2022-10-11', 'received', '3.3300', '3.3300', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '3.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 (64619, 563, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '7.7000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '4.0000', '2022-10-11', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64620, 563, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '49.5300', '65.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5300', '0.0000', '2022-10-11', 'received', '49.5300', '49.5300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.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 (64621, 563, NULL, 2311, '90764208', 'PREGNACARE 19', NULL, '60.3000', '80.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.3000', '1.0000', '2022-10-11', 'received', '60.3000', '60.3000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '60.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 (64622, 563, NULL, 7339, '1259', 'NO SPA40MG', NULL, '0.6600', '0.9000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-10-11', 'received', '0.6600', '0.6600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (64623, 563, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '17.0000', '22.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '1.0000', '2022-10-11', '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 (64624, 563, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '18.9000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '1.0000', '2022-10-11', '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 (64625, 563, NULL, 9956, '45562069', 'SKYCEF 500MG TABLET', NULL, '18.4000', '24.2900', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '4.0000', '2022-10-11', 'received', '18.4000', '18.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.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 (64626, NULL, NULL, 9983, '', '', 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 (64627, NULL, NULL, 9234, '', '', 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 (64628, NULL, NULL, 7384, '', '', 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 (64629, NULL, NULL, 7809, '', '', 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 (64630, NULL, NULL, 2477, '', '', 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 (64631, NULL, NULL, 9979, '', '', 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 (64632, NULL, NULL, 8302, '', '', 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 (64693, NULL, NULL, 7798, '', '', 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 (64694, NULL, NULL, 9913, '', '', 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 (64714, 557, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '60.7800', '80.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.3400', '0.0000', '2022-10-04', 'received', '60.7800', '60.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '60.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 (64715, 557, NULL, 8963, '2883', 'GASTRONE PLUS', NULL, '14.7600', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8000', '3.0000', '2022-10-04', 'received', '14.7600', '14.7600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.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 (64716, 557, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.8600', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.6000', '0.0000', '2022-10-04', 'received', '1.8600', '1.8600', '60.0000', NULL, NULL, 1, 'pc', '60.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 (64717, 557, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.2000', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2022-10-04', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64718, 557, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '27.2600', '36.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '163.5600', '2.0000', '2022-10-04', 'received', '27.2600', '27.2600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '27.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 (64719, 557, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '13.2000', '18.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '7.0000', '2022-10-04', 'received', '13.2000', '13.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64720, 557, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '4.0000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-10-04', '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 (64721, 557, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.5700', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7000', '0.0000', '2022-10-04', 'received', '1.5700', '1.5700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (64722, 557, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '13.9200', '18.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '4.0000', '2022-10-04', 'received', '13.9200', '13.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (64723, 557, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2022-10-04', '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 (64724, 557, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '16.3700', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1100', '3.0000', '2022-10-04', 'received', '16.3700', '16.3700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.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 (64725, 557, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '12.7000', '18.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '254.0000', '9.0000', '2022-10-04', 'received', '12.7000', '12.7000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64726, 557, NULL, 9943, '21312005', 'SKYCLAV 457.5MG', NULL, '14.3000', '19.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '286.0000', '10.0000', '2022-10-04', 'received', '14.3000', '14.3000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64727, 557, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '0.0000', '2022-10-04', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64728, 557, NULL, 2327, '66319646', 'MR Q', NULL, '4.2000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-10-04', '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 (64729, 557, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '10.0000', '2022-10-04', '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 (64730, 557, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '5.5000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-10-04', '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 (64731, 557, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '10.9800', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '0.0000', '2022-10-04', '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 (64732, 557, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '3.3300', '4.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.6000', '9.0000', '2022-10-04', 'received', '3.3300', '3.3300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (64733, 557, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '9.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2022-10-04', '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 (64734, 557, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '7.0000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '7.0000', '2022-10-04', 'received', '7.0000', '7.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64735, 557, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '0.0000', '2022-10-04', 'received', '8.5000', '8.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64736, 557, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '25.0000', '2022-10-04', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (64737, 557, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '5.7000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-10-04', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (64738, 557, NULL, 2068, '79519848', 'LUFART DS', NULL, '15.5000', '20.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '0.0000', '2022-10-04', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64739, 557, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '2.8000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '5.0000', '2022-10-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 (64740, 557, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-10-04', '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 (64741, 557, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '14.0000', '18.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '1.0000', '2022-10-04', '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 (64742, 557, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '22.6000', '30.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0000', '4.0000', '2022-10-04', 'received', '22.6000', '22.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (64743, 557, NULL, 10019, '67690422', 'FLUCOTRUST CAPS 150', NULL, '2.8900', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4500', '4.0000', '2022-10-04', 'received', '2.8900', '2.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.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 (64744, 557, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '9.2000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2022-10-04', 'received', '9.2000', '9.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64745, 557, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '47.0000', '2022-10-04', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64746, 557, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '5.8500', '8.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '2.0000', '2022-10-04', 'received', '5.8500', '5.8500', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64747, 557, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '2.0000', '2022-10-04', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64748, 557, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '0.0000', '2022-10-04', 'received', '0.7700', '0.7700', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64749, 557, NULL, 10030, '2660553', 'LOSARTAN POTASSIUM 50MG LTP', NULL, '7.0000', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '3.0000', '2022-10-04', '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 (64769, 561, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '16.0000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '5.0000', '2022-10-08', '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 (64770, 561, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '16.0000', '21.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '4.0000', '2022-10-08', '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 (64771, 561, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '28.0000', '37.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2022-10-08', '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 (64772, 561, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '15.0000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2022-10-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 (64773, 561, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '5.0000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '9.0000', '2022-10-08', '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 (64774, 561, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '3.3000', '4.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '6.0000', '2022-10-08', 'received', '3.3000', '3.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64775, 561, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '15.0000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-10-08', '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 (64776, 561, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '21.0000', '29.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '2.0000', '2022-10-08', 'received', '21.0000', '21.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64777, 561, NULL, 2402, '16734039', 'NANA ADJEI', NULL, '1.0000', '1.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '5.0000', '2022-10-08', '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 (64778, 561, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-10-08', '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 (64779, 561, NULL, 10049, '63889223', 'CHOCHO CREAM BIG B/S', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2022-10-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 (64780, 561, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-10-08', '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 (64781, 561, NULL, 9940, '89490205', 'PATEL GINGER HONEY CHIP ', NULL, '10.0000', '13.0000', '37.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '370.0000', '33.0000', '2022-10-08', 'received', '10.0000', '10.0000', '37.0000', NULL, NULL, 1, 'pc', '37.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 (64782, NULL, NULL, 9920, '', '', 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 (64783, NULL, NULL, 7651, '', '', 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 (64784, 565, NULL, 9984, '07708627', 'ESKARON CAPS', NULL, '3.0000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-10-14', '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 (64785, 565, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '13.0000', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2022-10-14', '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 (64786, 565, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '50.0000', '2022-10-14', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64787, 565, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '4.0000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '7.0000', '2022-10-14', '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 (64788, 565, NULL, 2071, '20773440', 'GRISEOFULVIN O-Fulvin 500mg', NULL, '4.8000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '10.0000', '2022-10-14', 'received', '4.8000', '4.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64789, 565, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2022-10-14', 'received', '5.0000', '5.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64790, 565, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '30.0000', '40.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2022-10-14', '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 (64791, 565, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '1.8800', '2.5000', '80.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.4000', '73.0000', '2022-10-14', 'received', '1.8800', '1.8800', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '1.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 (64792, 565, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '8.8000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-10-14', 'received', '8.8000', '8.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64793, 565, NULL, 9953, '21608860', 'ARZIGLOBIN PLUS SYR', NULL, '8.9000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '4.0000', '2022-10-14', 'received', '8.9000', '8.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.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 (64794, 565, NULL, 10022, '63097002', 'MAXMOX SUSP 100ML', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '3.0000', '2022-10-14', '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 (64795, 565, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '98.6000', '130.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.6000', '0.0000', '2022-10-14', 'received', '98.6000', '98.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '98.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 (64796, 565, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '19.0000', '2022-10-14', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (64797, 565, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.7900', '1.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9000', '10.0000', '2022-10-14', 'received', '0.7900', '0.7900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.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 (64798, 565, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.2000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '3.0000', '2022-10-14', '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 (64799, 565, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '8.8500', '12.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.2000', '4.0000', '2022-10-14', 'received', '8.8500', '8.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '8.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 (64800, 565, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '4.0000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-10-14', '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 (64801, 565, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '10.7000', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.0000', '0.0000', '2022-10-14', 'received', '10.7000', '10.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64802, 565, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.7500', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '26.0000', '2022-10-14', 'received', '0.7500', '0.7500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64803, 565, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '16.5000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '2.0000', '2022-10-14', 'received', '16.5000', '16.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64804, 565, NULL, 9815, '04029155', 'BLOCOLD TABLET', NULL, '1.0700', '1.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7500', '23.0000', '2022-10-14', 'received', '1.0700', '1.0700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.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 (64805, 565, NULL, 9729, '11889818', 'FABRIN TAB', NULL, '0.6200', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0000', '36.0000', '2022-10-14', 'received', '0.6200', '0.6200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (64806, 565, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '1.7800', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.0000', '17.0000', '2022-10-14', 'received', '1.7800', '1.7800', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64807, 565, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-10-14', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64808, 565, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.4100', '1.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '0.0000', '2022-10-14', 'received', '0.4100', '0.4100', '60.0000', NULL, NULL, 1, 'pc', '60.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 (64809, 565, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '2.6900', '4.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.5000', '44.0000', '2022-10-14', 'received', '2.6900', '2.6900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64810, 565, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '7.0000', '2022-10-14', '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 (64811, 565, NULL, 9866, '62669707', 'SHALTOUX HERBAL', NULL, '9.5500', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7500', '4.0000', '2022-10-14', 'received', '9.5500', '9.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (64812, 565, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '6.0300', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1800', '0.0000', '2022-10-14', 'received', '6.0300', '6.0300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (64813, 565, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '29.0000', '2022-10-14', 'received', '1.8000', '1.8000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (64814, 565, NULL, 9985, '69709139', 'ESKARON SYR', NULL, '6.9000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '3.0000', '2022-10-14', '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 (64815, 565, NULL, 2086, '06489706', 'METAGYL SUSP', NULL, '5.9000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '1.0000', '2022-10-14', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64816, 565, NULL, 8877, '2797', 'NEXCOFER BLOOD TONIC 100ML', NULL, '5.7000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '5.0000', '2022-10-14', 'received', '5.7000', '5.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (64817, 565, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '49.0000', '65.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '1.0000', '2022-10-14', '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 (64818, 565, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9900', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9700', '1.0000', '2022-10-14', 'received', '4.9900', '4.9900', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64819, 565, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '6.8800', '9.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2800', '5.0000', '2022-10-14', 'received', '6.8800', '6.8800', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64820, 565, NULL, 9986, '66967968', 'CIROTAMIN CAPS', NULL, '8.2000', '11.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '6.0000', '2022-10-14', 'received', '8.2000', '8.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64821, 565, NULL, 2096, '90371186', 'LETAVIT SYRUP 125ML', NULL, '1.5500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.3000', '3.0000', '2022-10-14', 'received', '1.5500', '1.5500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64822, 565, NULL, 2068, '79519848', 'LUFART DS', NULL, '15.5000', '20.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '0.0000', '2022-10-14', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64823, 565, NULL, 8133, '2053', 'MALAR 2 FORTE', NULL, '10.8000', '14.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '0.0000', '2022-10-14', 'received', '10.8000', '10.8000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64824, 565, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '6.6000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '4.0000', '2022-10-14', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64825, 565, NULL, 9736, '20947436', 'PARAKING SYRUP 100ML', NULL, '6.2000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0000', '0.0000', '2022-10-14', 'received', '6.2000', '6.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64826, 565, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.8400', '0.0000', '2022-10-14', 'received', '14.2100', '14.2100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.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 (64827, 565, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2022-10-14', 'received', '0.6600', '0.6600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (64828, 565, NULL, 9690, '92137089', 'VITANE DROP', NULL, '25.9500', '34.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '2.0000', '2022-10-14', 'received', '25.9500', '25.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.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 (64829, 565, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '16.0000', '2022-10-14', 'received', '8.5000', '8.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (64830, 565, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '6.9000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.4000', '0.0000', '2022-10-14', 'received', '6.9000', '6.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64831, 565, NULL, 8333, '2253', 'GUDAPET CAPS', NULL, '6.6000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2022-10-14', 'received', '6.6000', '6.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64832, 565, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.9700', '2.0000', '54.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3800', '19.0000', '2022-10-14', 'received', '0.9700', '0.9700', '54.0000', NULL, NULL, 1, 'pc', '54.0000', NULL, NULL, NULL, NULL, '0.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 (64833, 565, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.5000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-10-14', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64834, 565, NULL, 8455, '2375', 'SHALATERM SUSP', NULL, '5.5000', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-10-14', '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 (64835, 565, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.4600', '0.7000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '49.0000', '2022-10-14', 'received', '0.4600', '0.4600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (64836, 565, NULL, 9735, '62036461', 'ZINOL PARA SUSP 100ML', NULL, '4.5000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2022-10-14', '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 (64837, 565, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.5500', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2022-10-14', '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 (64838, 565, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '9.4000', '12.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '4.0000', '2022-10-14', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (64839, 565, NULL, 9496, '70277717', 'ENAFEN SUSP 60ML', NULL, '6.0200', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1200', '0.0000', '2022-10-14', 'received', '6.0200', '6.0200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.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 (64840, 565, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.6000', '19.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '0.0000', '2022-10-14', 'received', '14.6000', '14.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64841, 565, NULL, 10041, '57495123', 'Enacef(cefuroxime) 500mg tablets', NULL, '30.0000', '40.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '5.0000', '2022-10-14', '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 (64842, 565, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3000', '33.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '3.0000', '2022-10-14', 'received', '25.3000', '25.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '25.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 (64843, 565, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.9000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2022-10-14', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64844, 565, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '4.7000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '0.0000', '2022-10-14', 'received', '4.7000', '4.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64845, 565, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.6600', '1.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '19.0000', '2022-10-14', 'received', '0.6600', '0.6600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (64846, 565, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '10.7800', '14.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.6800', '3.0000', '2022-10-14', 'received', '10.7800', '10.7800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (64847, 565, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '5.9800', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '0.0000', '2022-10-14', '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 (64848, 565, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '7.8000', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '5.0000', '2022-10-14', '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 (64849, 565, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '7.2000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2022-10-14', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64850, 565, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '7.0000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '6.0000', '2022-10-14', '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 (64851, 565, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '18.0000', '24.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '4.0000', '2022-10-14', '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 (64852, 565, NULL, 7472, '1392', 'SAMALIN JUNIOR/NON DROWSY', NULL, '10.5500', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.5000', '0.0000', '2022-10-14', 'received', '10.5500', '10.5500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.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 (64853, 565, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.7500', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '5.0000', '2022-10-14', 'received', '4.7500', '4.7500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64854, 565, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '10.8000', '14.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2022-10-14', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64855, 565, NULL, 9738, '37893224', 'ZEROCID SUSP 200ML', NULL, '8.8000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '6.0000', '2022-10-14', '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 (64856, 565, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2022-10-14', 'received', '7.1000', '7.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (64857, 565, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '2.8800', '5.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1600', '0.0000', '2022-10-14', 'received', '2.8800', '2.8800', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '2.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 (64858, 565, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '3.4300', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.6000', '2.0000', '2022-10-14', 'received', '3.4300', '3.4300', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64859, 565, NULL, 9775, '62426464', 'MALAR 2 SUSP', NULL, '10.4000', '14.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-10-14', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (64860, 565, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '39.0000', '51.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '2.0000', '2022-10-14', '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 (64861, 565, NULL, 9424, '34445', 'RONFIT COLD P JNR SYRUP', NULL, '6.0000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '5.0000', '2022-10-14', '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 (64862, 565, NULL, 9463, '70333103', 'FLUCLOXACILLIN SUSP LETAP', NULL, '4.0000', '5.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2022-10-14', '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 (64863, 565, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '8.2000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '5.0000', '2022-10-14', 'received', '8.2000', '8.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64864, 565, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '22.9000', '30.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.5000', '3.0000', '2022-10-14', 'received', '22.9000', '22.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (64865, 565, NULL, 9885, '28207929', 'KEFROX 500MG TAB', NULL, '30.0000', '40.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '2.0000', '2022-10-14', '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 (64866, 565, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '33.5000', '44.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.0000', '4.0000', '2022-10-14', 'received', '33.5000', '33.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64867, 565, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '81.4000', '107.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.8000', '0.0000', '2022-10-14', '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 (64868, 565, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '4.0000', '2022-10-14', '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 (64869, 565, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '6.6700', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0400', '7.0000', '2022-10-14', 'received', '6.6700', '6.6700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.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 (64870, 565, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '26.1800', '35.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.0800', '5.0000', '2022-10-14', 'received', '26.1800', '26.1800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '26.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 (64871, 565, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '3.6000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '7.0000', '2022-10-14', '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 (64872, 565, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '10.8000', '15.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '6.0000', '2022-10-14', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64873, NULL, NULL, 9893, '', '', 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 (64874, NULL, NULL, 9196, '', '', 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 (64875, 564, NULL, 7911, '1831', 'BASECOLD SRP', NULL, '5.0000', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '20.0000', '2022-10-12', '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 (64876, 564, NULL, 7881, '1801', 'FENBASE', NULL, '3.4000', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '19.0000', '2022-10-12', 'received', '3.4000', '3.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (64877, 564, NULL, 7798, '1718', 'STARWIN B/S', NULL, '22.9100', '30.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.5500', '4.0000', '2022-10-12', 'received', '22.9100', '22.9100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (64878, 564, NULL, 7451, '1371', 'WARFARIN 5MG', NULL, '7.8000', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '3.0000', '2022-10-12', '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 (64879, 564, NULL, 7768, '1688', 'ZUBES EXP', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '3.0000', '2022-10-12', '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 (64880, 564, NULL, 9920, '93752243', 'ZIPFERON CAPS', NULL, '4.9000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '5.0000', '2022-10-12', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64881, 564, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.9100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '8.0000', '2022-10-12', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (64882, 564, NULL, 7587, '1507', 'FLEMEX JNR', NULL, '7.8000', '10.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '8.0000', '2022-10-12', 'received', '7.8000', '7.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (64883, 564, NULL, 7787, '1707', 'FLUREST', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '4.0000', '2022-10-12', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64884, 564, NULL, 7675, '1595', 'GEBEDOL EXTRA', NULL, '3.1100', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.5000', '39.0000', '2022-10-12', 'received', '3.1100', '3.1100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (64885, 564, NULL, 7460, '1380', 'GVITHER INJ', NULL, '2.8500', '4.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.5000', '11.0000', '2022-10-12', 'received', '2.8500', '2.8500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64886, 564, NULL, 7952, '1872', 'JOY OINT', NULL, '3.3000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '9.0000', '2022-10-12', '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 (64887, 564, NULL, 7668, '1588', 'KIDICARE SRP', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-10-12', '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 (64888, 564, NULL, 7316, '1236', 'LOFNAC SUPP 100MG', NULL, '1.0500', '1.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '47.0000', '2022-10-12', 'received', '1.0500', '1.0500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (64889, 564, NULL, 7774, '1694', 'MIST POT SIT', NULL, '5.0000', '7.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2022-10-12', '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 (64890, 564, NULL, 7852, '1772', 'MYCOLEX 3 CREAM', NULL, '18.0000', '24.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '6.0000', '2022-10-12', 'received', '18.0000', '18.0000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (64891, 564, NULL, 7509, '1429', 'ROOTER', NULL, '10.5000', '14.0000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '4.0000', '2022-10-12', 'received', '10.5000', '10.5000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (64892, 564, NULL, 7831, '1751', 'TINATET VENECARE', NULL, '26.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2022-10-12', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64893, 564, NULL, 7518, '1438', 'VERMOX TAB', NULL, '10.9000', '14.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '327.0000', '24.0000', '2022-10-12', 'received', '10.9000', '10.9000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (64894, 564, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '9.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2022-10-12', '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 (64895, 564, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '7.3000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '10.0000', '2022-10-12', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64896, 564, NULL, 8168, '2088', 'ZINCOFER CAPS', NULL, '17.9000', '24.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.5000', '0.0000', '2022-10-12', 'received', '17.9000', '17.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (64897, 564, NULL, 7708, '1628', 'TEEDAR', NULL, '10.7000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.0000', '5.0000', '2022-10-12', 'received', '10.7000', '10.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64898, 564, NULL, 8053, '1973', 'MAGACID TAB', NULL, '0.8500', '1.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '50.0000', '2022-10-12', 'received', '0.8500', '0.8500', '50.0000', NULL, NULL, 1, 'pc', '50.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 (64899, 564, NULL, 7473, '1393', 'RAPINOL', NULL, '0.5700', '0.8000', '125.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.2500', '92.0000', '2022-10-12', 'received', '0.5700', '0.5700', '125.0000', NULL, NULL, 1, 'pc', '125.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 (64900, 564, NULL, 8172, '2092', 'GEBEDOL FORTE', NULL, '2.8700', '4.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.1000', '0.0000', '2022-10-12', '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 (64901, 564, NULL, 7419, '1339', 'DEEP HEAT SPRAY 150ML', NULL, '48.0000', '64.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '3.0000', '2022-10-12', 'received', '48.0000', '48.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64902, 564, NULL, 7689, '1609', 'KAMACLOX', NULL, '9.1000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '6.0000', '2022-10-12', 'received', '9.1000', '9.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (64903, 564, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.7000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2022-10-12', '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 (64904, 564, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.7000', '4.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-10-12', 'received', '2.7000', '2.7000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (64905, 564, NULL, 8449, '2369', 'FEROLLEX SRP', NULL, '18.0000', '24.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-10-12', '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 (64906, 564, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '4.0000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-10-12', '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 (64907, 564, NULL, 9724, '08519003', 'FEROCLEAR SYR 200ML', NULL, '28.5000', '38.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.5000', '3.0000', '2022-10-12', 'received', '28.5000', '28.5000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64908, 564, NULL, 8712, '2632', 'GUDAPET SRP', NULL, '7.1000', '9.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '3.0000', '2022-10-12', 'received', '7.1000', '7.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64909, 564, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '7.8500', '10.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2500', '4.0000', '2022-10-12', '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 (64910, 564, NULL, 9776, '61266457', 'MAGNAVIT SYRUP', NULL, '7.8500', '10.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5500', '3.0000', '2022-10-12', 'received', '7.8500', '7.8500', '3.0000', NULL, NULL, 1, 'pc', '3.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 (64911, 564, NULL, 7741, '1661', 'DYNEWELL SRP', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '10.0000', '2022-10-12', '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 (64912, 564, NULL, 7769, '1689', 'LETALIN', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '3.0000', '2022-10-12', '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 (64913, 564, NULL, 9100, '3020', '~JOY VIKEL', NULL, '26.0000', '34.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '5.0000', '2022-10-12', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64914, 564, NULL, 7890, '1810', 'TINATETT MALAKARE', NULL, '17.6000', '23.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '5.0000', '2022-10-12', 'received', '17.6000', '17.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (64915, 564, NULL, 8649, '2569', 'TOMAC MIX', NULL, '27.5000', '36.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '5.0000', '2022-10-12', 'received', '27.5000', '27.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64916, 564, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '9.5800', '13.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.1600', '0.0000', '2022-10-12', 'received', '9.5800', '9.5800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.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 (64917, 564, NULL, 7824, '1744', 'ADOM KOO SRP', NULL, '7.7000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '2.0000', '2022-10-12', 'received', '7.7000', '7.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64918, 564, NULL, 8077, '1997', 'MYCOSTAT', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '6.0000', '2022-10-12', '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 (64919, 564, NULL, 9850, '31114846', 'INFA V WASH 100ML', NULL, '17.6000', '23.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '3.0000', '2022-10-12', 'received', '17.6000', '17.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.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 (64920, 564, NULL, 8825, '2745', 'AZILEX SUSP', NULL, '17.5000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '3.0000', '2022-10-12', '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 (64921, 564, NULL, 7697, '1617', 'LADINAS', NULL, '5.3000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '10.0000', '2022-10-12', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64922, 564, NULL, 8879, '2799', 'INFA V OINT', NULL, '22.9000', '30.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.6000', '4.0000', '2022-10-12', 'received', '22.9000', '22.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '22.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 (64923, 564, NULL, 7666, '1586', 'DYMOL TAB', NULL, '5.7000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '7.0000', '2022-10-12', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (64924, 564, NULL, 7348, '1268', 'ALPHA GARLIC CAPS', NULL, '13.3000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.5000', '5.0000', '2022-10-12', 'received', '13.3000', '13.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64925, 564, NULL, 9892, '60055615', 'VAGID CL SUPPOS', NULL, '14.0000', '18.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2022-10-12', '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 (64926, 564, NULL, 8840, '2760', 'TEGRETOL 200', NULL, '12.9600', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '2.0000', '2022-10-12', 'received', '12.9600', '12.9600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (64927, 564, NULL, 9913, '43329922', 'ADOM LADY MIXTURE', NULL, '14.3000', '19.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2022-10-12', '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 (64928, 564, NULL, 7386, '1306', 'CORORANGE HAEMATINIC CAPS SOFTGELS', NULL, '8.2000', '11.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8000', '0.0000', '2022-10-12', 'received', '8.2000', '8.2000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64929, 564, NULL, 7591, '1511', 'GYPRONE TAB', NULL, '3.0000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '9.0000', '2022-10-12', '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 (64930, 564, NULL, 8925, '2845', 'MMT', NULL, '4.5000', '6.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '9.0000', '2022-10-12', '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 (64931, 564, NULL, 7928, '1848', 'BENDRO 5MG', NULL, '13.8000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '5.0000', '2022-10-12', 'received', '13.8000', '13.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (64932, 564, NULL, 9714, '52997990', 'PROSTAJOY', NULL, '29.7000', '39.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.5000', '1.0000', '2022-10-12', 'received', '29.7000', '29.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (64933, 564, NULL, 7918, '1838', 'ZUBES CHILD', NULL, '11.1100', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5500', '3.0000', '2022-10-12', 'received', '11.1100', '11.1100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (64934, 564, NULL, 8308, '2228', 'ASCORBIN SRP', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2022-10-12', '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 (64935, 564, NULL, 9092, '3012', 'VINKA CHOCOLATE', NULL, '0.6800', '1.0000', '190.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.2000', '154.0000', '2022-10-12', 'received', '0.6800', '0.6800', '190.0000', NULL, NULL, 1, 'pc', '190.0000', NULL, NULL, NULL, NULL, '0.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 (64936, NULL, NULL, 3000, '', '', 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 (64937, NULL, NULL, 8528, '', '', 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 (64938, 566, NULL, 8254, '2174', 'CYPRODINE SRP', NULL, '39.0000', '51.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.0000', '4.0000', '2022-10-16', 'received', '39.0000', '39.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64939, 566, NULL, 7521, '1441', 'BELLS TEETHING MIX', NULL, '27.5000', '36.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '5.0000', '2022-10-16', 'received', '27.5000', '27.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64940, 566, NULL, 8045, '1965', 'GAVISCON', NULL, '54.2000', '72.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.6000', '2.0000', '2022-10-16', 'received', '54.2000', '54.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '54.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 (64941, 566, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '29.8000', '39.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.0000', '2.0000', '2022-10-16', 'received', '29.8000', '29.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (64942, 566, NULL, 10052, '612344', 'FOLIGROW PLUS TONIC', NULL, '25.0000', '33.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '5.0000', '2022-10-16', '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 (64943, 566, NULL, 7712, '1632', 'CYPRODINE CAPS', NULL, '39.0000', '51.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '1.0000', '2022-10-16', '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 (64944, 566, NULL, 8200, '2120', 'ROUGH RIDER', NULL, '10.8000', '14.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '8.0000', '2022-10-16', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64945, 566, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '28.7000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.5000', '4.0000', '2022-10-16', 'received', '28.7000', '28.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64946, 566, NULL, 7379, '1299', 'TEETHING MIXTURE ERNEST', NULL, '9.4000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0000', '4.0000', '2022-10-16', 'received', '9.4000', '9.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (64947, 566, NULL, 7853, '1773', 'BELLS VIT C', NULL, '22.7800', '30.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.9000', '5.0000', '2022-10-16', 'received', '22.7800', '22.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.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 (64948, 566, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '10.8000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-10-16', '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 (64949, 566, NULL, 7931, '1851', 'BADRUF CREAM', NULL, '6.6000', '9.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2022-10-16', '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 (64950, 566, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.9000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.9000', '1.0000', '2022-10-16', 'received', '4.9000', '4.9000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (64951, 566, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '4.9400', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.4000', '10.0000', '2022-10-16', 'received', '4.9400', '4.9400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (64952, 566, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '13.2300', '17.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.7600', '11.0000', '2022-10-16', 'received', '13.2300', '13.2300', '12.0000', NULL, NULL, 1, 'pc', '12.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 (64953, 567, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '58.4000', '77.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.4000', '1.0000', '2022-10-16', 'received', '58.4000', '58.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '58.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 (64954, 567, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '27.2500', '36.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '3.0000', '2022-10-16', 'received', '27.2500', '27.2500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '27.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 (64955, 567, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '98.6000', '130.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.2000', '2.0000', '2022-10-16', 'received', '98.6000', '98.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '98.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 (64956, 567, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '58.9000', '78.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.7000', '3.0000', '2022-10-16', 'received', '58.9000', '58.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '58.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 (64957, 567, NULL, 3044, '49228950', 'DIAZEPAM TABS 5MG', NULL, '0.4000', '1.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '41.0000', '2022-10-16', '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 (64958, 567, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '15.4000', '20.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '5.0000', '2022-10-16', 'received', '15.4000', '15.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.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 (64959, 567, NULL, 2406, '8901138502829', 'MENTAT', NULL, '28.5400', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.6200', '3.0000', '2022-10-16', 'received', '28.5400', '28.5400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.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 (64960, 567, NULL, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '18.9000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '5.0000', '2022-10-16', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64961, 567, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '20.7900', '27.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5800', '2.0000', '2022-10-16', 'received', '20.7900', '20.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.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 (64962, 567, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '3.1000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.5000', '4.0000', '2022-10-16', 'received', '3.1000', '3.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64963, 567, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-10-16', 'received', '10.5000', '10.5000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (64964, 567, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '2.0000', '2022-10-16', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64965, 567, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '5.0000', '2022-10-16', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (64966, 567, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '17.9000', '24.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.6000', '4.0000', '2022-10-16', 'received', '17.9000', '17.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '17.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 (64967, 567, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '10.7000', '14.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '4.0000', '2022-10-16', '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 (64968, 567, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '12.2100', '16.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0500', '2.0000', '2022-10-16', 'received', '12.2100', '12.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (64969, 567, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '142.0500', '187.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.0500', '1.0000', '2022-10-16', 'received', '142.0500', '142.0500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '142.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 (64970, 567, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '26.8000', '35.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.2000', '2.0000', '2022-10-16', 'received', '26.8000', '26.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '26.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 (64971, 567, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '15.2000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '5.0000', '2022-10-16', 'received', '15.2000', '15.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (64972, 567, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '47.2000', '62.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.8000', '3.0000', '2022-10-16', 'received', '47.2000', '47.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '47.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 (64973, 567, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '1.3300', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9200', '24.0000', '2022-10-16', 'received', '1.3300', '1.3300', '24.0000', NULL, NULL, 1, 'pc', '24.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 (64974, 567, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.9300', '1.5000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3200', '24.0000', '2022-10-16', 'received', '0.9300', '0.9300', '24.0000', NULL, NULL, 1, 'pc', '24.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 (64975, 567, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '10.4000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '5.0000', '2022-10-16', 'received', '10.4000', '10.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.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 (64976, 567, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '9.5000', '12.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '5.0000', '2022-10-16', '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 (64977, 567, NULL, 9731, '97052947', 'CONTREG SYR 30ML', NULL, '4.0000', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2022-10-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 (64978, 567, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '7.2000', '9.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '3.0000', '2022-10-16', '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 (64979, 567, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2022-10-16', '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 (64980, 567, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '5.2000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '5.0000', '2022-10-16', '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 (64981, 567, NULL, 2086, '06489706', 'METAGYL SUSP', NULL, '5.9000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '4.0000', '2022-10-16', 'received', '5.9000', '5.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64982, 567, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '4.0000', '2022-10-16', '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 (64983, 567, NULL, 2955, '51481408', 'LONART TAB 24\'S', NULL, '6.5000', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '10.0000', '2022-10-16', '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 (64984, 567, NULL, 8221, '2141', 'CARVEDILOL 6.25 EXETER', NULL, '12.6000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.6000', '1.0000', '2022-10-16', 'received', '12.6000', '12.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.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 (64985, 567, NULL, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '26.0000', '34.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '4.0000', '2022-10-16', 'received', '26.0000', '26.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (64986, 567, NULL, 10030, '2660553', 'LOSARTAN POTASSIUM 50MG LTP', NULL, '7.0000', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '4.0000', '2022-10-16', '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 (64987, 567, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '40.3000', '53.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.9000', '3.0000', '2022-10-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 (64988, NULL, NULL, 1755, '', '', 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 (64989, NULL, NULL, 9249, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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 (64990, NULL, NULL, 10052, '', '', 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 (64991, NULL, NULL, 9108, '', '', 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 (64992, NULL, NULL, 8412, '', '', 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 (64993, NULL, NULL, 10001, '', '', 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 (64994, NULL, NULL, 7715, '', '', 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 (64995, NULL, NULL, 9980, '', '', 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 (64996, NULL, NULL, 1878, '', '', 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 (64997, NULL, NULL, 2165, '', '', 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 (65025, 559, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '11.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '10.0000', '2022-10-08', 'received', '8.0000', '8.0000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65026, 559, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.8000', '3.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-10-08', 'received', '1.8000', '1.8000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (65027, 559, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.6000', '2.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '7.0000', '2022-10-08', '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 (65028, 559, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.2500', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '17.0000', '2022-10-08', 'received', '1.2500', '1.2500', '30.0000', NULL, NULL, 1, 'pc', '30.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 (65029, 559, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '6.2000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '0.0000', '2022-10-08', 'received', '6.2000', '6.2000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65030, 559, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.8500', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.1000', '0.0000', '2022-10-08', 'received', '4.8500', '4.8500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.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 (65031, 559, NULL, 9683, '59942011', 'BETA MALT DRINK', NULL, '4.2000', '6.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '5.0000', '2022-10-08', '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 (65032, 559, NULL, 9871, '58458141', 'COKE BIG 1.5L', NULL, '12.0000', '16.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-10-08', '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 (65033, 559, NULL, 9590, '27729749', 'BOTTLE COKE/FANTA/SPRITE', NULL, '5.8000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '0.0000', '2022-10-08', '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 (65034, 559, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '9.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2022-10-08', '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 (65035, 559, NULL, 8177, '2097', 'LUCOZADE B/S', NULL, '20.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2022-10-08', '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 (65036, 559, NULL, 8771, '2691', 'DON SIMON S/S', NULL, '7.0000', '8.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '4.0000', '2022-10-08', '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 (65037, 559, NULL, 8743, '2663', 'CERES DRINK', NULL, '20.0000', '25.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '3.0000', '2022-10-08', 'received', '20.0000', '20.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (65038, 559, NULL, 8982, '2902', 'CRANBERRY', NULL, '18.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2022-10-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 (65039, 559, NULL, 8775, '2695', 'VITRAC S/S', NULL, '5.0000', '7.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '8.0000', '2022-10-08', '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 (65040, 559, NULL, 8763, '2683', 'VODY', NULL, '9.1700', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0200', '0.0000', '2022-10-08', 'received', '9.1700', '9.1700', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65041, 559, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '6.6000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-10-08', '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 (65042, 559, NULL, 8769, '2689', 'HUNTERS', NULL, '8.8300', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9800', '1.0000', '2022-10-08', 'received', '8.8300', '8.8300', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65043, 559, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.5000', '9.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '195.0000', '12.0000', '2022-10-08', 'received', '6.5000', '6.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (65044, 559, NULL, 9751, '95396700', 'BEL AQUA MEDIUM', NULL, '1.8000', '2.5000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4000', '34.0000', '2022-10-08', 'received', '1.8000', '1.8000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (65045, 559, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '1.0000', '2.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '18.0000', '2022-10-08', 'received', '1.0000', '1.0000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (65046, 551, NULL, 2316, '59549986', 'SMA ', NULL, '65.0000', '70.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '2.0000', '2022-09-23', 'received', '65.0000', '65.0000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (65047, 551, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '37.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '148.0000', '0.0000', '2022-09-23', 'received', '37.0000', '37.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65048, 551, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '170.0000', '180.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '340.0000', '2.0000', '2022-09-23', 'received', '170.0000', '170.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65049, 551, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '20.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2022-09-23', '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 (65050, 551, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '3.5000', '4.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '12.0000', '2022-09-23', '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 (65051, 551, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.4500', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '8.0000', '2022-09-23', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65052, 551, NULL, 2231, '7501058633927', 'NAN 2', NULL, '50.0000', '55.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '3.0000', '2022-09-23', 'received', '50.0000', '50.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (65053, 551, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '7.0000', '2022-09-23', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65054, 551, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '1.3000', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '9.0000', '2022-09-23', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (65055, 551, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2022-09-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 (65056, 551, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2022-09-23', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (65057, 551, NULL, 2000, '6036000087004', 'FAYTEX', NULL, '13.7000', '17.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.2000', '6.0000', '2022-09-23', 'received', '13.7000', '13.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.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 (65058, 551, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '3.5000', '4.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '12.0000', '2022-09-23', '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 (65059, 551, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.4500', '2.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '12.0000', '2022-09-23', 'received', '1.4500', '1.4500', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65060, 551, NULL, 2053, '6181100284225', 'CLINIC CLEAR BOBY LOTION 500ML', NULL, '24.0000', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-09-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 (65061, 551, NULL, 2054, '6181100284218', 'CLINIC CLEAR BOBY LOTION 250ML', NULL, '14.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-09-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 (65062, 551, NULL, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '18.0000', '23.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-09-23', '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 (65063, 551, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '19.0000', '23.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '5.0000', '2022-09-23', '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 (65064, 551, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '11.0000', '15.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2022-09-23', '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 (65065, 551, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '9.5000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '2.0000', '2022-09-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 (65066, 551, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '14.0000', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '2.0000', '2022-09-23', '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 (65067, 551, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '13.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '2.0000', '2022-09-23', '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 (65068, 551, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '13.5000', '17.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '3.0000', '2022-09-23', 'received', '13.5000', '13.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65069, 551, NULL, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '21.0000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '5.0000', '2022-09-23', 'received', '21.0000', '21.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65070, 551, NULL, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '7.5000', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-09-23', '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 (65071, 551, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '13.5000', '16.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '2.0000', '2022-09-23', '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 (65072, 551, NULL, 9751, '95396700', 'BEL AQUA MEDIUM', NULL, '1.8000', '2.5000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '14.0000', '2022-09-23', 'received', '1.8000', '1.8000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (65073, 551, NULL, 8979, '2899', 'SLEMFIT S/S', NULL, '1.0000', '2.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '12.0000', '2022-09-23', 'received', '1.0000', '1.0000', '16.0000', NULL, NULL, 1, 'pc', '16.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 (65074, NULL, NULL, 2795, '', '', 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 (65118, 569, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-10-20', '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 (65119, 569, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '5.2000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2022-10-20', '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 (65120, 569, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '7.2000', '9.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '9.0000', '2022-10-20', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65121, 569, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '3.1700', '4.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0400', '12.0000', '2022-10-20', 'received', '3.1700', '3.1700', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.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 (65122, 569, NULL, 9968, '79716492', 'HYDROCORTISONE 1%CREAM LAVINA', NULL, '10.9000', '14.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.4000', '6.0000', '2022-10-20', 'received', '10.9000', '10.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65123, 569, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '5.9500', '8.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '3.0000', '2022-10-20', 'received', '5.9500', '5.9500', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '5.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 (65124, 569, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-10-20', 'received', '8.4000', '8.4000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65125, 569, NULL, 8149, '2069', 'DITHRANOL', NULL, '9.5000', '12.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2022-10-20', '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 (65126, 569, NULL, 10053, '03571050', 'AMCOF CHESTY COUGH', NULL, '12.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '4.0000', '2022-10-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 (65127, 569, NULL, 10054, '74925814', 'GRANDPA SYR', NULL, '6.5000', '8.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '5.0000', '2022-10-20', '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 (65128, 569, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '39.0000', '51.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '3.0000', '2022-10-20', '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 (65129, 569, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '39.0000', '51.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2022-10-20', '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 (65130, 569, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0000', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '4.0000', '2022-10-20', '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 (65131, 569, NULL, 10052, '612344', 'FOLIGROW PLUS TONIC', NULL, '25.0000', '33.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '2.0000', '2022-10-20', '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 (65132, 569, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '65.0000', '86.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '325.0000', '0.0000', '2022-10-20', 'received', '65.0000', '65.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65133, 569, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '10.8000', '14.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '3.0000', '2022-10-20', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65134, 569, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '27.5000', '36.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '5.0000', '2022-10-20', 'received', '27.5000', '27.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65135, 569, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '2.1700', '3.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.4000', '17.0000', '2022-10-20', 'received', '2.1700', '2.1700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (65136, 569, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.9600', '20.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.7600', '5.0000', '2022-10-20', 'received', '14.9600', '14.9600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.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 (65137, 569, NULL, 7590, '1510', 'METHYLATED SPIRIT S/S', NULL, '2.7000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '10.0000', '2022-10-20', '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 (65138, 569, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '10.7000', '14.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.0000', '0.0000', '2022-10-20', 'received', '10.7000', '10.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65139, NULL, NULL, 7685, '', '', 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 (65228, 568, NULL, 7341, '1261', 'POLYGYNAX', NULL, '40.5000', '54.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '4.0000', '2022-10-19', 'received', '40.5000', '40.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '40.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65229, 568, NULL, 9855, '60871898', 'POLYGYNAX PESSARY 6\"s', NULL, '48.0000', '63.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '3.0000', '2022-10-19', 'received', '48.0000', '48.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (65230, 568, NULL, 7967, '1887', 'DIPHEX SRP', NULL, '8.4000', '11.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.2000', '7.0000', '2022-10-19', 'received', '8.4000', '8.4000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (65231, 568, NULL, 8406, '2326', 'LIQUID PARRAFIN', NULL, '9.0000', '12.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '4.0000', '2022-10-19', '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 (65232, 568, NULL, 7822, '1742', 'AGBEVE TONIC', NULL, '13.5000', '18.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '4.0000', '2022-10-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 (65233, 568, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.9100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '8.0000', '2022-10-19', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (65234, 568, NULL, 7674, '1594', 'GEBEDOL', NULL, '2.0500', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.0000', '56.0000', '2022-10-19', 'received', '2.0500', '2.0500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (65235, 568, NULL, 7762, '1682', 'GV PAINT', NULL, '2.0000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '10.0000', '2022-10-19', '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 (65236, 568, NULL, 8359, '2279', 'IMBOOST', NULL, '15.4000', '20.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.0000', '1.0000', '2022-10-19', 'received', '15.4000', '15.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (65237, 568, NULL, 8020, '1940', 'MUCOLEX J', NULL, '15.0000', '20.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2022-10-19', '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 (65238, 568, NULL, 7736, '1656', 'NUGEL -O', NULL, '27.2600', '36.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.7800', '1.0000', '2022-10-19', 'received', '27.2600', '27.2600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.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 (65239, 568, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '24.0000', '32.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '10.0000', '2022-10-19', 'received', '24.0000', '24.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65240, 568, NULL, 7509, '1429', 'ROOTER', NULL, '10.5000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '8.0000', '2022-10-19', '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 (65241, 568, NULL, 7819, '1739', 'TAABEA MIX', NULL, '13.0000', '17.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '3.0000', '2022-10-19', '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 (65242, 568, NULL, 7518, '1438', 'VERMOX TAB', NULL, '10.9000', '14.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '218.0000', '17.0000', '2022-10-19', 'received', '10.9000', '10.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65243, 568, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '7.3000', '10.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '146.0000', '18.0000', '2022-10-19', 'received', '7.3000', '7.3000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65244, 568, NULL, 7753, '1673', 'ZULU', NULL, '4.0000', '5.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '3.0000', '2022-10-19', '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 (65245, 568, NULL, 8966, '2886', 'MAGACID SUSP', NULL, '9.5000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '6.0000', '2022-10-19', '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 (65246, 568, NULL, 7429, '1349', 'VAGINAX CREAM', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '3.0000', '2022-10-19', '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 (65247, 568, NULL, 7641, '1561', 'LYDIA', NULL, '8.5000', '11.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '14.0000', '2022-10-19', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65248, 568, NULL, 7743, '1663', 'KISS', NULL, '2.3000', '3.0000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2022-10-19', '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 (65249, 568, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '10.0000', '2022-10-19', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65250, 568, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '3.4300', '5.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.2000', '39.0000', '2022-10-19', 'received', '3.4300', '3.4300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (65251, 568, NULL, 7385, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', NULL, '3.3300', '4.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '199.8000', '34.0000', '2022-10-19', 'received', '3.3300', '3.3300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '3.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 (65252, 568, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '30.0000', '40.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '5.0000', '2022-10-19', '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 (65253, 568, NULL, 7459, '1379', 'TOTHEMA', NULL, '3.7000', '5.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.0000', '49.0000', '2022-10-19', 'received', '3.7000', '3.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (65254, 568, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '4.0000', '5.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '19.0000', '2022-10-19', '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 (65255, 568, NULL, 7880, '1800', 'VAGINAX PESS', NULL, '3.7000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '6.0000', '2022-10-19', 'received', '3.7000', '3.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65256, 568, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.2400', '26.0000', '2022-10-19', 'received', '2.0400', '2.0400', '28.0000', NULL, NULL, 1, 'pc', '56.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 (65257, 568, NULL, 9566, '98215947', 'NESTRIM SYR', NULL, '4.9000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '5.0000', '2022-10-19', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65258, 568, NULL, 7666, '1586', 'DYMOL TAB', NULL, '5.7000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '9.0000', '2022-10-19', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (65259, 568, NULL, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '3.8000', '5.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2000', '4.0000', '2022-10-19', 'received', '3.8000', '3.8000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65260, 568, NULL, 7629, '1549', 'ZITHROMAX CAPS', NULL, '186.8000', '247.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.8000', '1.0000', '2022-10-19', 'received', '186.8000', '186.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '186.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 (65261, 568, NULL, 7984, '1904', 'DEXATROL DROP', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2022-10-19', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65262, 568, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '2.5000', '3.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '9.0000', '2022-10-19', '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 (65263, 568, NULL, 7857, '1777', 'NUGEL', NULL, '26.1800', '35.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.5400', '3.0000', '2022-10-19', 'received', '26.1800', '26.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.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 (65264, 568, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.5000', '24.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.0000', '10.0000', '2022-10-19', 'received', '18.5000', '18.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65265, 568, NULL, 7558, '1478', 'DORETA', NULL, '3.3300', '4.5000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '199.8000', '4.0000', '2022-10-19', 'received', '3.3300', '3.3300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '3.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 (65266, 568, NULL, 7672, '1592', 'EFPAC TAB', NULL, '1.3000', '2.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '28.0000', '2022-10-19', 'received', '1.3000', '1.3000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (65267, 568, NULL, 8470, '2390', 'WELLMAN 70', NULL, '77.0000', '102.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '2.0000', '2022-10-19', 'received', '77.0000', '77.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '77.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65268, 568, NULL, 7438, '1358', 'OSTEOCARE ORG TAB', NULL, '53.5000', '71.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.5000', '2.0000', '2022-10-19', 'received', '53.5000', '53.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '53.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65269, 568, NULL, 7382, '1302', 'AZIROCIN CAPS USP 250 MG', NULL, '10.0000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '9.0000', '2022-10-19', '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 (65270, 568, NULL, 2329, '93880955', 'EXFORGE HCT 5/160/12.5MG', NULL, '8.2400', '11.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.7200', '28.0000', '2022-10-19', 'received', '8.2400', '8.2400', '28.0000', NULL, NULL, 1, 'pc', '28.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 (65271, 568, NULL, 9824, '52927057', 'THYMAIR LOZ', NULL, '12.4300', '16.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-10-19', 'received', '12.4300', '12.4300', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '12.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 (65272, 568, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-10-19', '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 (65273, 568, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '20.0000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '5.0000', '2022-10-19', '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 (65274, 570, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '39.0000', '51.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '4.0000', '2022-10-21', '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 (65275, 570, NULL, 9578, '78812794', 'GRACIAS  ROASTED CASHEWNUTS 100G', NULL, '15.0000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-10-21', '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 (65276, 570, NULL, 9579, '39700132', 'GRACIAS ROASTED CASHEWNUTS 200G', NULL, '20.0000', '25.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '5.0000', '2022-10-21', '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 (65277, 570, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '18.9000', '25.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '4.0000', '2022-10-21', 'received', '18.9000', '18.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65278, 570, NULL, 1916, 'PR-629', 'ASPANOL  All in one', NULL, '10.6000', '14.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4000', '3.0000', '2022-10-21', 'received', '10.6000', '10.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65279, 570, NULL, 1470, '8906042660979', 'LEXOFEN SUSP 150ML', NULL, '15.0000', '20.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '9.0000', '2022-10-21', '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 (65280, 570, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '12.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2022-10-21', '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 (65281, 570, NULL, 8877, '2797', 'NEXCOFER BLOOD TONIC 100ML', NULL, '5.7000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4000', '2.0000', '2022-10-21', 'received', '5.7000', '5.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.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 (65282, 570, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '27.5000', '36.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '3.0000', '2022-10-21', 'received', '27.5000', '27.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65283, 570, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '39.0000', '51.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '4.0000', '2022-10-21', '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 (65284, 570, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '9.7000', '13.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.8000', '0.0000', '2022-10-21', 'received', '9.7000', '9.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.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 (65285, 570, NULL, 3033, '14789418', 'HUICHUN CAPSULES', NULL, '22.0000', '30.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '4.0000', '2022-10-21', 'received', '22.0000', '22.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65286, 570, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '10.8000', '14.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4000', '6.0000', '2022-10-21', 'received', '10.8000', '10.8000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (65287, 570, NULL, 9671, '67250351', 'FLEMING 457MG SUSP', NULL, '32.0000', '42.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '2.0000', '2022-10-21', '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 (65288, 570, NULL, 9942, '69833688', 'SKYCLAV 228.5MG', NULL, '12.7000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.1000', '2.0000', '2022-10-21', '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 (65289, 570, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '35.0000', '2022-10-21', 'received', '0.5900', '0.5900', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '0.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 (65290, 570, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '6.0000', '8.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2022-10-21', '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 (65291, 570, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '9.0000', '2022-10-21', '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 (65292, 570, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '13.2300', '17.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.4500', '12.0000', '2022-10-21', 'received', '13.2300', '13.2300', '15.0000', NULL, NULL, 1, 'pc', '15.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 (65293, 570, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '3.1700', '4.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.1000', '29.0000', '2022-10-21', 'received', '3.1700', '3.1700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (65294, 570, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '29.8000', '39.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.6000', '2.0000', '2022-10-21', 'received', '29.8000', '29.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.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 (65295, 570, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '34.8000', '46.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.2000', '4.0000', '2022-10-21', 'received', '34.8000', '34.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '34.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 (65296, 570, NULL, 1612, 'PR-325', 'GYPRONE PLUS TABS', NULL, '3.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2022-10-21', '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 (65297, 570, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2022-10-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 (65298, 570, NULL, 9950, '87916408', 'HEALTHLINK GLUCOSAMINE & CHODROITIN TABLET', NULL, '54.0000', '71.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '1.0000', '2022-10-21', 'received', '54.0000', '54.0000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (65299, 570, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.6000', '3.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '50.0000', '2022-10-21', 'received', '1.6000', '1.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (65300, 570, NULL, 10055, '88644532', 'VALUPAK GLUCOSE/CHONDRITON 400MG TAB', NULL, '17.4000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '1.0000', '2022-10-21', 'received', '17.4000', '17.4000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (65301, 570, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.4100', '1.5000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '57.0000', '2022-10-21', 'received', '0.4100', '0.4100', '60.0000', NULL, NULL, 1, 'pc', '60.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 (65302, 570, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '10.9800', '14.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9200', '4.0000', '2022-10-21', 'received', '10.9800', '10.9800', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65303, 570, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '6.0300', '8.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.1200', '3.0000', '2022-10-21', 'received', '6.0300', '6.0300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.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 (65304, 570, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.9700', '2.0000', '54.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.3800', '48.0000', '2022-10-21', 'received', '0.9700', '0.9700', '54.0000', NULL, NULL, 1, 'pc', '54.0000', NULL, NULL, NULL, NULL, '0.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 (65305, 570, NULL, 2169, '97038500', 'GEBEDOL', NULL, '2.0500', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.0000', '50.0000', '2022-10-21', 'received', '2.0500', '2.0500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (65306, 570, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '9.8000', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '3.0000', '2022-10-21', 'received', '9.8000', '9.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65307, 570, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '10.8000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '4.0000', '2022-10-21', '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 (65308, 570, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '26.9000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9000', '1.0000', '2022-10-21', 'received', '26.9000', '26.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '26.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 (65309, 570, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '38.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '3.0000', '2022-10-21', 'received', '38.0000', '38.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65310, 571, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '4.0000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2022-10-21', '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 (65311, 571, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '27.2600', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.7800', '3.0000', '2022-10-21', 'received', '27.2600', '27.2600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.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 (65312, 571, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '7.8000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '2.0000', '2022-10-21', '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 (65313, 571, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '8.7000', '11.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '5.0000', '2022-10-21', 'received', '8.7000', '8.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65314, 571, NULL, 10017, '67366915', 'SAMALIN ADULT(NO DROWSY) SYR', NULL, '11.8000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '2.0000', '2022-10-21', 'received', '11.8000', '11.8000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (65315, 571, NULL, 7474, '1394', 'KOFOF BABY', NULL, '7.8000', '10.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '6.0000', '2022-10-21', '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 (65316, 571, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.2800', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '26.0000', '2022-10-21', 'received', '1.2800', '1.2800', '30.0000', NULL, NULL, 1, 'pc', '30.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 (65317, 571, NULL, 9503, '35154073', 'PELADOL EXTRA TAB', NULL, '2.5300', '3.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6000', '19.0000', '2022-10-21', 'received', '2.5300', '2.5300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.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 (65318, 571, NULL, 9401, '3321', 'KOFOF ADULT SYRUP', NULL, '7.0000', '9.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '4.0000', '2022-10-21', '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 (65319, 571, NULL, 8079, '1999', 'SCIMETHER SUSP', NULL, '14.2100', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6300', '2.0000', '2022-10-21', 'received', '14.2100', '14.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.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 (65320, 571, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '3.3000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '9.0000', '2022-10-21', '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 (65321, 571, NULL, 9968, '79716492', 'HYDROCORTISONE 1%CREAM LAVINA', NULL, '10.9000', '14.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '3.0000', '2022-10-21', 'received', '10.9000', '10.9000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (65322, 571, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '25.0000', '2022-10-21', '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 (65323, 571, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '18.1000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2000', '2.0000', '2022-10-21', 'received', '18.1000', '18.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.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 (65324, 571, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '3.3000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '4.0000', '2022-10-21', '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 (65325, 571, NULL, 2070, '014', 'CHLO EYE ', NULL, '3.8000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '4.0000', '2022-10-21', '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 (65326, 571, NULL, 7318, '1238', 'LONART SUSP', NULL, '13.5000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '5.0000', '2022-10-21', '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 (65327, 571, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '46.3000', '61.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.9000', '3.0000', '2022-10-21', 'received', '46.3000', '46.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '46.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 (65328, 571, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '49.0000', '65.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.0000', '4.0000', '2022-10-21', 'received', '49.0000', '49.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65329, 571, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '18.0000', '24.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '4.0000', '2022-10-21', '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 (65330, 571, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '9.4000', '12.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4000', '5.0000', '2022-10-21', 'received', '9.4000', '9.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (65331, 571, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '18.5000', '24.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.0000', '5.0000', '2022-10-21', 'received', '18.5000', '18.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65332, NULL, NULL, 8490, '', '', 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 (65333, NULL, NULL, 8881, '', '', 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 (65334, NULL, NULL, 9632, '', '', 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 (65357, NULL, NULL, 1754, '', '', 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 (65358, NULL, NULL, 8934, '', '', 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 (65359, NULL, NULL, 10006, '', '', 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 (65360, NULL, NULL, 10052, '', '', 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 (65361, NULL, NULL, 8720, '', '', 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 (65362, NULL, NULL, 8402, '', '', 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 (65363, NULL, NULL, 10053, '', '', 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 (65364, 573, NULL, 7507, '1427', 'METRONIDAZOLE 200 TAB', NULL, '0.8600', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '50.0000', '2022-10-24', 'received', '0.8600', '0.8600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (65365, 573, NULL, 9633, '58280884', 'fluconazole 150mg (TEVA)', NULL, '9.7200', '13.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.2000', '10.0000', '2022-10-24', 'received', '9.7200', '9.7200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (65366, 573, NULL, 10057, '42660739', 'KELCUF ADULT SYR', NULL, '6.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '6.0000', '2022-10-24', '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 (65367, 573, NULL, 10058, '82815498', 'KELCUF JUNIOR SYR', NULL, '6.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '5.0000', '2022-10-24', '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 (65368, 573, NULL, 2093, '74359321', 'CALCIUM B12 SYRUP 200ML', NULL, '2.5500', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.3000', '0.0000', '2022-10-24', 'received', '2.5500', '2.5500', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65369, 573, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '5.3000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.0000', '10.0000', '2022-10-24', 'received', '5.3000', '5.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65370, 573, NULL, 10059, '94503681', 'KELCUF BABY SYR', NULL, '6.5000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5000', '1.0000', '2022-10-24', 'received', '6.5000', '6.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (65371, 573, NULL, 3034, '33733514', 'ARABA BAZAN', NULL, '19.0000', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2022-10-24', '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 (65372, 573, NULL, 9856, '53412793', 'ROXIDOL', NULL, '4.5000', '6.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '17.0000', '2022-10-24', '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 (65373, 573, NULL, 9744, '30376023', 'SUPER APETI PLUS SYRUP 200ML', NULL, '11.7000', '15.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '2.0000', '2022-10-24', 'received', '11.7000', '11.7000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (65374, 573, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.9000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '3.0000', '2022-10-24', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65375, 573, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '11.8000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.8000', '5.0000', '2022-10-24', 'received', '11.8000', '11.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65376, 573, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '27.2600', '36.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.3000', '4.0000', '2022-10-24', 'received', '27.2600', '27.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.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 (65377, 573, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '3.1700', '4.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5000', '42.0000', '2022-10-24', 'received', '3.1700', '3.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (65378, 573, NULL, 9634, '38899153', 'FLUXAMOX CAPS 500MG', NULL, '6.5000', '9.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '0.0000', '2022-10-24', 'received', '6.5000', '6.5000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (65379, 573, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '20.0000', '26.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '5.0000', '2022-10-24', '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 (65380, 573, NULL, 9539, '78935091', 'LISTERINE 500ML', NULL, '34.6000', '46.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '173.0000', '5.0000', '2022-10-24', 'received', '34.6000', '34.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '34.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 (65381, 573, NULL, 8432, '2352', 'NYSTATIN ORAL', NULL, '39.7000', '52.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '238.2000', '5.0000', '2022-10-24', 'received', '39.7000', '39.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65382, 573, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '12.4000', '16.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '6.0000', '2022-10-24', 'received', '12.4000', '12.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65383, 573, NULL, 1968, '5019781012206', 'VITAMIN E HEALTH AID', NULL, '135.5000', '179.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '271.0000', '0.0000', '2022-10-24', 'received', '135.5000', '135.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '135.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65384, 573, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '175.5000', '232.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '351.0000', '2.0000', '2022-10-24', 'received', '175.5000', '175.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '175.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65385, 573, NULL, 9505, '13744415', 'WELLMAN PLUS', NULL, '107.3000', '142.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '214.6000', '2.0000', '2022-10-24', 'received', '107.3000', '107.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '107.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 (65386, 573, NULL, 7578, '1498', 'WELWOMAN DRINK', NULL, '11.7000', '15.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '10.0000', '2022-10-24', 'received', '11.7000', '11.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65387, 573, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '10.2000', '13.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '4.0000', '2022-10-24', '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 (65388, 573, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '4.2000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '9.0000', '2022-10-24', '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 (65389, 573, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '34.6000', '46.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '207.6000', '5.0000', '2022-10-24', 'received', '34.6000', '34.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '34.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 (65390, 573, NULL, 9741, '02164633', 'MAGNAVIT CAPS', NULL, '10.9800', '14.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '0.0000', '2022-10-24', '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 (65391, 573, NULL, 9947, '97967472', 'STOPKOF DRY COUGH ADULT', NULL, '8.5000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '5.0000', '2022-10-24', '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 (65392, 573, NULL, 7390, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', NULL, '8.6000', '11.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '3.0000', '2022-10-24', 'received', '8.6000', '8.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65393, 573, NULL, 10060, '15916976', 'GYNICARE ', NULL, '52.0000', '69.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '312.0000', '6.0000', '2022-10-24', 'received', '52.0000', '52.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65394, 573, NULL, 10061, '56805893', 'MIMOVITE SYR 200ML', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2022-10-24', '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 (65395, 573, NULL, 3005, '06203049', 'OSTEOCARE SYR INDIA', NULL, '13.4000', '18.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '5.0000', '2022-10-24', 'received', '13.4000', '13.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.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 (65396, 573, NULL, 9631, '16066236', 'AYULABS GRIPE WATER', NULL, '9.9000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '4.0000', '2022-10-24', '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 (65397, 573, NULL, 10062, '21137074', 'PYLIN CAPS', NULL, '44.0000', '58.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '4.0000', '2022-10-24', 'received', '44.0000', '44.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65398, 573, NULL, 10063, '86063551', 'PYLIN OINT', NULL, '34.0000', '45.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '5.0000', '2022-10-24', 'received', '34.0000', '34.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65399, 573, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '27.5000', '36.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '6.0000', '2022-10-24', 'received', '27.5000', '27.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65400, 573, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '55.0000', '73.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '3.0000', '2022-10-24', 'received', '55.0000', '55.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (65401, 573, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '85.0000', '120.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '425.0000', '3.0000', '2022-10-24', 'received', '85.0000', '85.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '85.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65402, 573, NULL, 10017, '67366915', 'SAMALIN ADULT(NO DROWSY) SYR', NULL, '12.4000', '16.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '6.0000', '2022-10-24', 'received', '12.4000', '12.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65403, 573, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '16.6000', '22.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '5.0000', '2022-10-24', 'received', '16.6000', '16.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.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 (65404, 573, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '40.3000', '53.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '201.5000', '4.0000', '2022-10-24', 'received', '40.3000', '40.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65405, 573, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '58.4000', '77.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '292.0000', '5.0000', '2022-10-24', 'received', '58.4000', '58.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '58.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 (65406, 573, NULL, 9671, '67250351', 'FLEMING 457MG SUSP', NULL, '32.0000', '42.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.0000', '5.0000', '2022-10-24', 'received', '32.0000', '32.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65407, 573, NULL, 2777, '97856697', 'MMT SUSP', NULL, '4.5000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2022-10-24', '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 (65408, 573, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '1.9000', '2.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '44.0000', '2022-10-24', '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 (65409, 573, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '3.3000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2022-10-24', '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 (65410, 573, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '20.9000', '28.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.5000', '3.0000', '2022-10-24', 'received', '20.9000', '20.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.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 (65411, 573, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '9.8000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '6.0000', '2022-10-24', 'received', '9.8000', '9.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65412, 573, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '6.4000', '8.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2022-10-24', 'received', '6.4000', '6.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65413, 573, NULL, 1593, 'PR-306', 'LYRICA 75MG', NULL, '6.6000', '8.7000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6000', '0.0000', '2022-10-24', 'received', '6.6000', '6.6000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (65414, 573, NULL, 1593, 'PR-306', 'LYRICA 75MG', NULL, '11.1300', '15.0000', '28.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '311.6400', '0.0000', '2022-10-24', 'received', '11.1300', '11.1300', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '11.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 (65415, 573, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '7.0000', '2022-10-24', '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 (65416, 573, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '4.9000', '6.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '6.0000', '2022-10-24', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65417, 573, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '5.7000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '5.0000', '2022-10-24', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (65418, 573, NULL, 9743, '28214116', 'KLIRE COUGH SYRUP 125ML', NULL, '15.2000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '4.0000', '2022-10-24', 'received', '15.2000', '15.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.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 (65419, 573, NULL, 10053, '03571050', 'AMCOF CHESTY COUGH', NULL, '12.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-10-24', '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 (65420, 573, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '6.9000', '9.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2022-10-24', '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 (65421, 573, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '9.7000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.5000', '4.0000', '2022-10-24', 'received', '9.7000', '9.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (65422, 573, NULL, 2641, '92213060', 'CONGESTYL SUSP', NULL, '18.4000', '24.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '5.0000', '2022-10-24', 'received', '18.4000', '18.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.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 (65423, 573, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '9.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '5.0000', '2022-10-24', '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 (65424, 573, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '6.6000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2022-10-24', '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 (65425, 573, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '30.0000', '40.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-10-24', '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 (65426, 573, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '28.7000', '38.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.2000', '5.0000', '2022-10-24', 'received', '28.7000', '28.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65427, 573, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '2.2000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2022-10-24', '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 (65428, 573, NULL, 9734, '25981911', 'SHALTOUX LOZENGES', NULL, '0.4600', '0.7000', '200.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '175.0000', '2022-10-24', 'received', '0.4600', '0.4600', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.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 (65429, 573, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '8.7400', '12.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.8000', '0.0000', '2022-10-24', 'received', '8.7400', '8.7400', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65430, 573, NULL, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.3000', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '20.0000', '2022-10-24', 'received', '3.3000', '3.3000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65431, 573, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '9.7000', '13.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.0000', '10.0000', '2022-10-24', 'received', '9.7000', '9.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (65432, 573, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '6.9000', '9.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '9.0000', '2022-10-24', 'received', '6.9000', '6.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65433, 573, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '5.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '10.0000', '2022-10-24', '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 (65434, 573, NULL, 7586, '1506', 'EMGIFLOX SUSP', NULL, '6.0000', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2022-10-24', '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 (65435, 573, NULL, 7880, '1800', 'VAGINAX PESS', NULL, '3.7000', '5.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2000', '2.0000', '2022-10-24', 'received', '3.7000', '3.7000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65436, 573, NULL, 7429, '1349', 'VAGINAX CREAM', NULL, '5.5000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2022-10-24', '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 (65437, 573, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '10.0000', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2022-10-24', '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 (65438, 573, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '34.0000', '45.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '3.0000', '2022-10-24', '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 (65439, 573, NULL, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '8.3600', '11.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '167.2000', '20.0000', '2022-10-24', 'received', '8.3600', '8.3600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '8.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 (65440, 573, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '25.3000', '33.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '4.0000', '2022-10-24', 'received', '25.3000', '25.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '25.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 (65441, 573, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '11.0000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '6.0000', '2022-10-24', '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 (65442, 573, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '4.2900', '6.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '257.4000', '60.0000', '2022-10-24', 'received', '4.2900', '4.2900', '60.0000', NULL, NULL, 1, 'pc', '60.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 (65443, 573, NULL, 3001, '89996055', 'COTRIM TAB LETAP', NULL, '0.9600', '1.5000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '100.0000', '2022-10-24', 'received', '0.9600', '0.9600', '100.0000', NULL, NULL, 1, 'pc', '100.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 (65444, 573, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9900', '7.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9600', '4.0000', '2022-10-24', 'received', '4.9900', '4.9900', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65445, 573, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '3.1000', '4.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '5.0000', '2022-10-24', 'received', '3.1000', '3.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65446, 573, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '50.6000', '67.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '253.0000', '5.0000', '2022-10-24', 'received', '50.6000', '50.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '50.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 (65447, 573, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '22.6000', '30.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.6000', '5.0000', '2022-10-24', 'received', '22.6000', '22.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '22.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 (65448, 573, NULL, 2327, '66319646', 'MR Q', NULL, '5.5000', '7.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '8.0000', '2022-10-24', '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 (65449, 573, NULL, 2990, '71484949', 'ENTRAMOL 500 TAB', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '10.0000', '2022-10-24', '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 (65450, 573, NULL, 7318, '1238', 'LONART SUSP', NULL, '17.0000', '22.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '2.0000', '2022-10-24', '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 (65451, 573, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '9.2000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '2.0000', '2022-10-24', 'received', '9.2000', '9.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65452, 573, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '10.0000', '2022-10-24', '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 (65453, 573, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '12.8400', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '1.0000', '2022-10-24', 'received', '12.8400', '12.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (65454, 573, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '12.3000', '16.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '4.0000', '2022-10-24', 'received', '12.3000', '12.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65455, 573, NULL, 7322, '1242', 'LUEX ADULT DRY', NULL, '16.0000', '21.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '4.0000', '2022-10-24', 'received', '16.0000', '16.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65456, 573, NULL, 2986, '39982987', 'PANACIN TAB', NULL, '0.7700', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5000', '50.0000', '2022-10-24', 'received', '0.7700', '0.7700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (65457, 573, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '1.0000', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-10-24', '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 (65458, 573, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '6.1000', '8.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '10.0000', '2022-10-24', '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 (65459, 573, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '1.3800', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '9.0000', '2022-10-24', '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 (65460, 573, NULL, 9726, '79271717', 'SHALTOUX COUGH SYR 100ML', NULL, '7.5000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '1.0000', '2022-10-24', 'received', '7.5000', '7.5000', '1.0000', NULL, NULL, 1, 'pc', '1.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 (65461, 573, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '12.0000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-10-24', '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 (65462, 573, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '3.5700', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.1000', '30.0000', '2022-10-24', 'received', '3.5700', '3.5700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (65463, 573, NULL, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '12.6000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '3.0000', '2022-10-24', 'received', '12.6000', '12.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.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 (65464, 573, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '11.1000', '15.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '5.0000', '2022-10-24', 'received', '11.1000', '11.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.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 (65465, NULL, NULL, 9266, '', '', 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 (65466, NULL, NULL, 9913, '', '', 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 (65482, 575, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.5000', '9.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '4.0000', '2022-10-24', '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 (65483, 575, NULL, 9999, '84888211', 'HOLLANDIA SS/S', NULL, '3.5000', '5.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '24.0000', '2022-10-24', 'received', '3.5000', '3.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (65484, 575, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.4500', '2.5000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '24.0000', '2022-10-24', 'received', '1.4500', '1.4500', '24.0000', NULL, NULL, 1, 'pc', '24.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 (65485, 575, NULL, 8746, '2666', ' COKE/FANTA/SPRITE CAN', NULL, '5.0000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2022-10-24', '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 (65486, 575, NULL, 8744, '2664', 'CANNED MALT', NULL, '4.8500', '6.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '12.0000', '2022-10-24', 'received', '4.8500', '4.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.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 (65487, 575, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '7.5000', '9.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '11.0000', '2022-10-24', '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 (65488, 575, NULL, 8775, '2695', 'VITRAC S/S', NULL, '7.5000', '9.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '12.0000', '2022-10-24', '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 (65489, 575, NULL, 8773, '2693', 'MALTA GUINESS', NULL, '4.1000', '6.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '5.0000', '2022-10-24', 'received', '4.1000', '4.1000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65490, 575, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.5000', '3.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '7.0000', '2022-10-24', 'received', '2.5000', '2.5000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65491, 575, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '11.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '320.0000', '32.0000', '2022-10-24', 'received', '8.0000', '8.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (65492, 575, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '12.0000', '2022-10-24', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (65493, 575, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '2.3000', '3.5000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '14.0000', '2022-10-24', '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 (65494, 575, NULL, 9587, '22989390', 'LUCOSADE 380ML', NULL, '8.2000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '6.0000', '2022-10-24', 'received', '8.2000', '8.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65511, NULL, NULL, 9966, '', '', 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 (65512, NULL, NULL, 9842, '', '', 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 (65513, NULL, NULL, 10005, '', '', 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 (65514, NULL, NULL, 2636, '', '', 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 (65515, NULL, NULL, 8047, '', '', 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 (65516, NULL, NULL, 2494, '', '', 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 (65640, 574, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '8.0000', '11.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '320.0000', '37.0000', '2022-10-24', 'received', '8.0000', '8.0000', '40.0000', NULL, NULL, 1, 'pc', '40.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 (65641, 574, NULL, 9831, '14060937', 'Hayhay biscuits ', NULL, '2.3000', '3.5000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '16.0000', '2022-10-24', '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 (65642, 574, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '6.5000', '9.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '22.0000', '2022-10-24', 'received', '6.5000', '6.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (65643, 574, NULL, 9565, '95802365', 'PASSION YOGHURT STRAWBERRY/VANILLA', NULL, '7.0000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2022-10-24', '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 (65644, 574, NULL, 8746, '2666', ' COKE/FANTA/SPRITE CAN', NULL, '5.0000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2022-10-24', '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 (65645, 574, NULL, 9089, '3009', 'VITAMILK  BOTTLE', NULL, '7.5000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '11.0000', '2022-10-24', '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 (65646, 574, NULL, 9999, '84888211', 'HOLLANDIA SS/S', NULL, '3.5000', '5.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '24.0000', '2022-10-24', 'received', '3.5000', '3.5000', '24.0000', NULL, NULL, 1, 'pc', '24.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 (65647, 574, NULL, 9213, '3133', 'ROX DRINKS', NULL, '7.5000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2022-10-24', '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 (65648, 574, NULL, 8933, '2853', 'RED BULL', NULL, '12.5000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '1.0000', '2022-10-24', '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 (65649, 574, NULL, 8934, '2854', 'BLUE JEANS DRINKS', NULL, '8.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2022-10-24', '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 (65650, 574, NULL, 9871, '58458141', 'COKE BIG 1.5L', NULL, '15.0000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '4.0000', '2022-10-24', '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 (65651, 574, NULL, 8765, '2685', 'ADONKO ENERGY', NULL, '6.6000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '5.0000', '2022-10-24', '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 (65652, 574, NULL, 8763, '2683', 'VODY', NULL, '11.7000', '15.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2022-10-24', '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 (65653, 574, NULL, 8740, '2660', 'BELL ACTIVE', NULL, '2.5000', '3.0000', '48.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '48.0000', '2022-10-24', 'received', '2.5000', '2.5000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (65654, 574, NULL, 9469, '40088756', 'PANACHE', NULL, '5.0000', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '10.0000', '2022-10-24', '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 (65655, 574, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.7500', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '15.0000', '2022-10-24', 'received', '1.7500', '1.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.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 (65656, 574, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '17.0000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '5.0000', '2022-10-24', '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 (65657, 574, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '14.0000', '17.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '12.0000', '2022-10-24', 'received', '14.0000', '14.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65658, 574, NULL, 9874, '60401735', 'HEAVEN MOSQUITO SPRAY B/S', NULL, '40.0000', '48.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '1.0000', '2022-10-24', 'received', '40.0000', '40.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (65659, 574, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '22.3000', '25.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '223.0000', '9.0000', '2022-10-24', 'received', '22.3000', '22.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '22.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 (65660, 574, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '18.0000', '25.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '6.0000', '2022-10-24', '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 (65661, 574, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '14.0000', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '6.0000', '2022-10-24', '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 (65662, 574, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '8.0000', '12.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2022-10-24', '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 (65663, 574, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '38.0000', '42.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '6.0000', '2022-10-24', 'received', '38.0000', '38.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65664, 574, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.8000', '2.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '12.0000', '2022-10-24', 'received', '1.8000', '1.8000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65665, 574, NULL, 2646, '15816669', 'GLADE PAPER AIR FRESHNER', NULL, '12.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '6.0000', '2022-10-24', '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 (65666, 574, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '3.5000', '5.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '12.0000', '2022-10-24', '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 (65667, 574, NULL, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', NULL, '30.0000', '35.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '6.0000', '2022-10-24', 'received', '30.0000', '30.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65668, 574, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '18.0000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '5.0000', '2022-10-24', '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 (65669, 574, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '12.0000', '16.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '5.0000', '2022-10-24', '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 (65670, 574, NULL, 9178, '3098', 'PROPA LINER', NULL, '12.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2022-10-24', '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 (65671, 574, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '20.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2022-10-24', '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 (65672, 574, NULL, 7722, '1642', 'ALWAYS DOUBLE', NULL, '15.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-10-24', '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 (65673, 574, NULL, 2161, '58683972', 'GLYCERINE B/S', NULL, '13.0000', '17.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '5.0000', '2022-10-24', 'received', '13.0000', '13.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65674, 574, NULL, 7500, '1420', 'GLYCERINE S/S', NULL, '7.0000', '10.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2022-10-24', '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 (65675, 574, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '9.5000', '14.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '12.0000', '2022-10-24', '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 (65676, 574, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '8.0000', '14.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '9.0000', '2022-10-24', 'received', '8.0000', '8.0000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65677, 574, NULL, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '24.0000', '30.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-10-24', '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 (65678, 574, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '14.0000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2022-10-24', '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 (65679, 574, NULL, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', NULL, '20.0000', '25.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '8.0000', '2022-10-24', 'received', '20.0000', '20.0000', '8.0000', NULL, NULL, 1, 'pc', '8.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 (65680, 574, NULL, 9528, '92146977', 'DETTOL ANTISEPTIC 500ML', NULL, '40.0000', '45.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '6.0000', '2022-10-24', '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 (65681, 574, NULL, 10067, '82160870', 'SOFTCARE WIPES S/S', NULL, '15.0000', '18.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '6.0000', '2022-10-24', '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 (65682, 574, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '17.0000', '22.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '6.0000', '2022-10-24', '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 (65683, 572, NULL, 7886, '1806', 'ABONIKI', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '10.0000', '2022-10-21', '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 (65684, 572, NULL, 8039, '1959', 'ACIDOM', NULL, '18.9000', '25.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '4.0000', '2022-10-21', 'received', '18.9000', '18.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65685, 572, NULL, 7367, '1287', 'ATORVASTATIN20MG', NULL, '12.4000', '16.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '3.0000', '2022-10-21', 'received', '12.4000', '12.4000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (65686, 572, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '3.1700', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '158.5000', '50.0000', '2022-10-21', 'received', '3.1700', '3.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (65687, 572, NULL, 7864, '1784', 'FEROGLOBIN CAPS', NULL, '30.2500', '40.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '181.5000', '3.0000', '2022-10-21', 'received', '30.2500', '30.2500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '30.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 (65688, 572, NULL, 7794, '1714', 'LISINOPRIL 10', NULL, '16.7000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.5000', '5.0000', '2022-10-21', 'received', '16.7000', '16.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65689, 572, NULL, 7396, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', NULL, '24.0000', '32.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '4.0000', '2022-10-21', 'received', '24.0000', '24.0000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65690, 572, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '6.8000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '5.0000', '2022-10-21', 'received', '6.8000', '6.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65691, 572, NULL, 7411, '1331', 'CITRO C', NULL, '2.0200', '3.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.5000', '72.0000', '2022-10-21', 'received', '2.0200', '2.0200', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '2.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 (65692, 572, NULL, 7709, '1629', '4.85AMLODIPINE TEVA 10', NULL, '4.9400', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.4000', '9.0000', '2022-10-21', 'received', '4.9400', '4.9400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (65693, 572, NULL, 7560, '1480', 'FEROGLOBIN SRP', NULL, '56.2000', '74.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.0000', '4.0000', '2022-10-21', 'received', '56.2000', '56.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '56.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 (65694, 572, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '50.6000', '67.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '202.4000', '4.0000', '2022-10-21', 'received', '50.6000', '50.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '50.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 (65695, 572, NULL, 9569, '14153932', 'PREGNACARE MAX', NULL, '175.5000', '232.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '175.5000', '1.0000', '2022-10-21', 'received', '175.5000', '175.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '175.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65696, 572, NULL, 7613, '1533', 'FEMFRESH', NULL, '14.8000', '20.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '2.0000', '2022-10-21', '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 (65697, 572, NULL, 9992, '76771843', 'FEMFRESH 250ML', NULL, '37.7000', '50.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.4000', '2.0000', '2022-10-21', 'received', '37.7000', '37.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '37.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 (65698, 572, NULL, 10053, '03571050', 'AMCOF CHESTY COUGH', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-10-21', '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 (65699, 572, NULL, 7534, '1454', 'CONGESTYL SRP', NULL, '18.4000', '24.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.0000', '8.0000', '2022-10-21', 'received', '18.4000', '18.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '18.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 (65700, 572, NULL, 7415, '1335', 'CONGESTYL TAB', NULL, '10.2000', '13.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '7.0000', '2022-10-21', '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 (65701, 572, NULL, 8212, '2132', 'OSTEOCARE SRP LOCAL', NULL, '13.4000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.8000', '2.0000', '2022-10-21', 'received', '13.4000', '13.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.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 (65702, 572, NULL, 7578, '1498', 'WELWOMAN DRINK', NULL, '11.7000', '15.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '5.0000', '2022-10-21', '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 (65703, 572, NULL, 8616, '2536', 'LISTERINE B/S', NULL, '34.6000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.8000', '3.0000', '2022-10-21', 'received', '34.6000', '34.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.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 (65704, 572, NULL, 9901, '39169008', 'ATORVASTATIN 40MG', NULL, '17.0000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2022-10-21', '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 (65705, 572, NULL, 8120, '2040', 'CARDIOACE', NULL, '38.9600', '51.5000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-10-21', 'received', '38.9600', '38.9600', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '38.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 (65706, NULL, NULL, 2838, '', '', 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 (65707, NULL, NULL, 9496, '', '', 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 (65767, NULL, NULL, 10070, '', '', 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 (65768, NULL, NULL, 10029, '', '', 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 (65769, 576, NULL, 8065, '1985', 'AMOKSIKLAV 1G', NULL, '58.4000', '77.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '292.0000', '2.0000', '2022-10-26', 'received', '58.4000', '58.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '58.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 (65770, 576, NULL, 7444, '1364', 'COLDRELIEF CAPS', NULL, '3.9100', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '9.0000', '2022-10-26', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (65771, 576, NULL, 7317, '1237', 'LONART DS TABS', NULL, '24.0000', '32.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '10.0000', '2022-10-26', 'received', '24.0000', '24.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65772, 576, NULL, 7780, '1700', 'LUFART TAB', NULL, '15.5000', '20.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.0000', '10.0000', '2022-10-26', 'received', '15.5000', '15.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65773, 576, NULL, 7346, '1266', 'PREGNACARE PLUS', NULL, '143.3000', '189.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '286.6000', '1.0000', '2022-10-26', 'received', '143.3000', '143.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '143.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 (65774, 576, NULL, 7991, '1911', 'S/SEAS SRP', NULL, '38.0000', '50.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.0000', '2.0000', '2022-10-26', 'received', '38.0000', '38.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '38.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65775, 576, NULL, 7400, '1320', 'ZINCOVIT TAB', NULL, '29.8000', '39.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '149.0000', '5.0000', '2022-10-26', 'received', '29.8000', '29.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '29.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 (65776, 576, NULL, 7753, '1673', 'ZULU', NULL, '4.9000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '10.0000', '2022-10-26', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65777, 576, NULL, 7708, '1628', 'TEEDAR', NULL, '10.7000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.0000', '10.0000', '2022-10-26', 'received', '10.7000', '10.7000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65778, 576, NULL, 8714, '2634', 'COLDRILIEF SRP', NULL, '6.9000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '5.0000', '2022-10-26', '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 (65779, 576, NULL, 8456, '2376', 'CARTEF DS', NULL, '9.2000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '10.0000', '2022-10-26', 'received', '9.2000', '9.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65780, 576, NULL, 9329, '3249', 'ASCORYL PLUS SYRUP', NULL, '10.8000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2022-10-26', '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 (65781, 576, NULL, 9921, '29778181', 'HEMOFORCE PLUS SYR', NULL, '9.3000', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '5.0000', '2022-10-26', 'received', '9.3000', '9.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65782, 576, NULL, 7756, '1676', 'AMOKSIKLAV 625', NULL, '40.3000', '53.5000', '7.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '282.1000', '7.0000', '2022-10-26', 'received', '40.3000', '40.3000', '7.0000', NULL, NULL, 1, 'pc', '7.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 (65783, 576, NULL, 7558, '1478', 'DORETA', NULL, '3.3300', '4.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.5000', '50.0000', '2022-10-26', 'received', '3.3300', '3.3300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.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 (65784, 576, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2022-10-26', '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 (65785, 576, NULL, 8067, '1987', 'HYDROGEN ECL', NULL, '6.4000', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '5.0000', '2022-10-26', 'received', '6.4000', '6.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65786, 576, NULL, 7608, '1528', 'AUNTY MARY', NULL, '11.8000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '5.0000', '2022-10-26', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65787, 576, NULL, 8657, '2577', 'KIDIVITE 200ML', NULL, '11.8000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.0000', '5.0000', '2022-10-26', 'received', '11.8000', '11.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65788, 576, NULL, 8011, '1931', 'SALO COLD SRP', NULL, '9.7000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.0000', '10.0000', '2022-10-26', 'received', '9.7000', '9.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.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 (65789, 576, NULL, 9209, '3129', 'CETRIZAN 10MG', NULL, '6.3800', '8.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.9000', '5.0000', '2022-10-26', 'received', '6.3800', '6.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.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 (65790, 576, NULL, 9873, '27654005', 'COLDIRON SYR 125ML', NULL, '9.0000', '12.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '5.0000', '2022-10-26', '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 (65791, 576, NULL, 7611, '1531', 'DERMIRON PLUS', NULL, '4.9000', '6.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '6.0000', '2022-10-26', '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 (65792, 576, NULL, 7409, '1329', 'PRIMOLUT N', NULL, '30.4000', '40.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.8000', '2.0000', '2022-10-26', 'received', '30.4000', '30.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.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 (65793, 576, NULL, 8878, '2798', 'PARA EXETER TAB', NULL, '2.1700', '3.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.5000', '49.0000', '2022-10-26', 'received', '2.1700', '2.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.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 (65794, 576, NULL, 8297, '2217', 'SALICYLIC ACID', NULL, '9.3100', '12.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8600', '4.0000', '2022-10-26', 'received', '9.3100', '9.3100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (65795, 576, NULL, 9986, '66967968', 'CIROTAMIN CAPS', NULL, '11.5000', '15.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '5.0000', '2022-10-26', '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 (65796, 576, NULL, 7925, '1845', 'NEXCOFER B/S', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '5.0000', '2022-10-26', '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 (65797, 576, NULL, 8339, '2259', 'SUDOCREAM 60G', NULL, '34.8000', '46.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '2.0000', '2022-10-26', 'received', '34.8000', '34.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.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 (65798, 576, NULL, 10058, '82815498', 'KELCUF JUNIOR SYR', NULL, '6.5000', '9.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '5.0000', '2022-10-26', '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 (65799, 576, NULL, 9303, '3223', 'ZULU EXTRA', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-10-26', '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 (65800, 576, NULL, 8721, '2641', 'IMPRESSER CAPS', NULL, '27.5000', '36.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '5.0000', '2022-10-26', 'received', '27.5000', '27.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65801, 576, NULL, 8780, '2700', 'IMPRESSER OIL', NULL, '55.0000', '73.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '3.0000', '2022-10-26', 'received', '55.0000', '55.0000', '3.0000', NULL, NULL, 1, 'pc', '3.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 (65802, 576, NULL, 10060, '15916976', 'GYNICARE ', NULL, '52.0000', '69.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '208.0000', '4.0000', '2022-10-26', 'received', '52.0000', '52.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65803, 576, NULL, 10062, '21137074', 'PYLIN CAPS', NULL, '44.0000', '58.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '5.0000', '2022-10-26', 'received', '44.0000', '44.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65804, 576, NULL, 10063, '86063551', 'PYLIN OINT', NULL, '34.0000', '45.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '5.0000', '2022-10-26', 'received', '34.0000', '34.0000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65805, 576, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '22.3000', '29.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '267.6000', '11.0000', '2022-10-26', 'received', '22.3000', '22.3000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '22.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 (65806, 576, NULL, 9300, '3220', 'LONART TAB', NULL, '8.8000', '12.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2022-10-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 (65807, 576, NULL, 10068, '80761291', 'TODAY INTIMATE WASH', NULL, '16.5000', '22.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2022-10-26', 'received', '16.5000', '16.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65808, 576, NULL, 9980, '96021412', 'SECNIDAZOLE 1G TAB (LAVINA)', NULL, '5.2000', '6.8600', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2022-10-26', '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 (65809, 576, NULL, 10070, '81962669', 'BABYVITE DROP 50ML', NULL, '9.5000', '12.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2022-10-26', '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 (65810, 576, NULL, 8068, '1988', 'METOCLOPRAMIDE', NULL, '9.8000', '13.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '3.0000', '2022-10-26', '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 (65811, 576, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '8.5000', '11.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '1.0000', '2022-10-26', '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 (65812, 576, NULL, 7334, '1254', 'NIFECARD XL 30', NULL, '16.8000', '22.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.8000', '6.0000', '2022-10-26', 'received', '16.8000', '16.8000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65813, 576, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '59.0000', '78.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '1.0000', '2022-10-26', 'received', '59.0000', '59.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65814, 576, NULL, 3006, '29763683', 'OSTEOCARE TAB INDIA', NULL, '8.0000', '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2022-10-26', '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 (65815, 576, NULL, 8128, '2048', 'OSTECARE LOCAL TAB', NULL, '9.0000', '18.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-10-26', 'received', '9.0000', '9.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (65816, 576, NULL, 3006, '29763683', 'OSTEOCARE TAB INDIA', NULL, '13.4000', '18.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.8000', '0.0000', '2022-10-26', 'received', '13.4000', '13.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.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 (65817, 576, NULL, 8120, '2040', 'CARDIOACE', NULL, '38.9600', '51.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.8400', '0.0000', '2022-10-26', 'received', '38.9600', '38.9600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.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 (65818, 576, NULL, 10029, '890611621132', 'CARDIOFIN 20MG /STRIP (NIFEDIPINE)', NULL, '1.8500', '2.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '10.0000', '2022-10-26', 'received', '1.8500', '1.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.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 (65819, 576, NULL, 10075, '31534760', 'B CLAR 250', NULL, '15.0000', '20.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '5.0000', '2022-10-26', '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 (65820, 576, NULL, 7536, '1456', 'LIPITOR 20', NULL, '11.0000', '14.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '30.0000', '2022-10-26', 'received', '11.0000', '11.0000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (65821, 576, NULL, 8299, '2219', 'NORVASC 10', NULL, '133.1000', '176.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '399.3000', '0.0000', '2022-10-26', 'received', '133.1000', '133.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '133.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 (65822, 576, NULL, 10072, '92689899', 'GLIMER -2(GLIMEPERIDER 2MG)', NULL, '9.0000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2022-10-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 (65823, 576, NULL, 7969, '1889', 'SIRDALUD 2MG', NULL, '2.4300', '3.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.9000', '30.0000', '2022-10-26', 'received', '2.4300', '2.4300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.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 (65824, 576, NULL, 8923, '2843', 'BG GLUTAMIN PLUS', NULL, '7.2500', '10.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2022-10-26', 'received', '7.2500', '7.2500', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65825, 576, NULL, 9933, '20719624', 'EPIFENAC EYE DROP 1MG/ML', NULL, '18.9000', '25.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '4.0000', '2022-10-26', 'received', '18.9000', '18.9000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65826, 576, NULL, 10073, '78858616', 'ASHTON AND PARSONS TEETHING', NULL, '58.0000', '77.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '1.0000', '2022-10-26', 'received', '58.0000', '58.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '58.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65827, 576, NULL, 7490, '1410', 'SYRINGE 5CC', NULL, '0.2500', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '100.0000', '2022-10-26', 'received', '0.2500', '0.2500', '100.0000', NULL, NULL, 1, 'pc', '100.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 (65828, 576, NULL, 2652, '49336316', 'ADOM TONIC', NULL, '11.4000', '15.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '2.0000', '2022-10-26', 'received', '11.4000', '11.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.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 (65829, 576, NULL, 7899, '1819', 'EKURO BEWU', NULL, '6.0000', '8.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-10-26', '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 (65830, 576, NULL, 7900, '1820', 'ERNEST OINT', NULL, '3.4000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '3.0000', '2022-10-26', '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 (65831, 576, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '12.5000', '16.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2022-10-26', '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 (65832, 576, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '19.0000', '25.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-10-26', 'received', '19.0000', '19.0000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (65833, 576, NULL, 8169, '2089', 'HILADY', NULL, '19.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2022-10-26', '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 (65834, 576, NULL, 8913, '2833', 'LAVET', NULL, '25.5000', '34.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2022-10-26', '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 (65835, 576, NULL, 7888, '1808', 'LIVING BIT SRP', NULL, '19.0000', '25.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2022-10-26', '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 (65836, 576, NULL, 9007, '2927', 'LUCKY BITTERS', NULL, '19.0000', '25.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '1.0000', '2022-10-26', '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 (65837, 576, NULL, 8739, '2659', 'SPANISH GARLIC', NULL, '15.8000', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.0000', '5.0000', '2022-10-26', 'received', '15.8000', '15.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65838, 576, NULL, 7832, '1752', 'VICTORY G MIX', NULL, '16.0000', '21.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '5.0000', '2022-10-26', '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 (65839, 576, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.0000', '21.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '2.0000', '2022-10-26', '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 (65840, 576, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '17.0000', '22.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2022-10-26', '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 (65841, NULL, NULL, 7924, '', '', 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 (65842, NULL, NULL, 1308, '', '', 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 (65843, NULL, NULL, 8376, '', '', 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 (65844, 577, NULL, 7673, '1593', 'APETAMIN SRP', NULL, '28.7000', '38.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.5000', '5.0000', '2022-10-27', 'received', '28.7000', '28.7000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65845, 577, NULL, 9330, '3250', 'APETATRUST', NULL, '14.5000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '5.0000', '2022-10-27', '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 (65846, 577, NULL, 9274, '3194', 'ARFAN 20/120MG', NULL, '7.3200', '10.0000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.8000', '15.0000', '2022-10-27', 'received', '7.3200', '7.3200', '15.0000', NULL, NULL, 1, 'pc', '15.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 (65847, 577, NULL, 7954, '1874', 'BASEBOOM JELLY', NULL, '1.1300', '4.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2000', '25.0000', '2022-10-27', 'received', '1.1300', '1.1300', '40.0000', NULL, NULL, 1, 'pc', '40.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 (65848, 577, NULL, 8519, '2439', 'DAFLON 500', NULL, '3.5700', '5.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.1000', '0.0000', '2022-10-27', 'received', '3.5700', '3.5700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (65849, 577, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.5000', '50.0000', '2022-10-27', 'received', '0.8900', '0.8900', '50.0000', NULL, NULL, 1, 'pc', '50.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 (65850, 577, NULL, 8359, '2279', 'IMBOOST', NULL, '15.4000', '20.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.6000', '4.0000', '2022-10-27', 'received', '15.4000', '15.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.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 (65851, 577, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '100.0000', '2022-10-27', 'received', '0.4100', '0.4100', '100.0000', NULL, NULL, 1, 'pc', '100.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 (65852, 577, NULL, 9788, '81140195', 'REDSUN PER SACHET', NULL, '1.8800', '2.5000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.2000', '40.0000', '2022-10-27', 'received', '1.8800', '1.8800', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.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 (65853, 577, NULL, 7509, '1429', 'ROOTER', NULL, '10.5000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '6.0000', '2022-10-27', 'received', '10.5000', '10.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65854, 577, NULL, 7819, '1739', 'TAABEA MIX', NULL, '20.2000', '27.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.0000', '5.0000', '2022-10-27', 'received', '20.2000', '20.2000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65855, 577, NULL, 7518, '1438', 'VERMOX TAB', NULL, '10.9000', '14.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '10.0000', '2022-10-27', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65856, 577, NULL, 7454, '1374', 'WELLMAN CAPS', NULL, '90.2000', '119.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.4000', '2.0000', '2022-10-27', 'received', '90.2000', '90.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.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 (65857, 577, NULL, 7457, '1377', 'WORMPLEX SUSP', NULL, '9.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '9.0000', '2022-10-27', '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 (65858, 577, NULL, 7524, '1444', 'WORMPLEX TAB', NULL, '7.3000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '10.0000', '2022-10-27', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65859, 577, NULL, 9880, '56162993', 'LINCTUS JUNIOR SYR', NULL, '4.9000', '7.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '5.0000', '2022-10-27', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65860, 577, NULL, 7333, '1253', 'MR Q', NULL, '5.5000', '7.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '30.0000', '2022-10-27', 'received', '5.5000', '5.5000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (65861, 577, NULL, 9762, '05985917', 'CLEAR INHALER', NULL, '2.4600', '3.5000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5200', '12.0000', '2022-10-27', 'received', '2.4600', '2.4600', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65862, 577, NULL, 8711, '2631', 'JEDITONE SRP', NULL, '12.6000', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '5.0000', '2022-10-27', 'received', '12.6000', '12.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (65863, 577, NULL, 9275, '3195', 'ASCORBIN TAB', NULL, '0.4300', '1.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9000', '0.0000', '2022-10-27', 'received', '0.4300', '0.4300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.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 (65864, 577, NULL, 9968, '79716492', 'HYDROCORTISONE 1%CREAM LAVINA', NULL, '10.9000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5000', '5.0000', '2022-10-27', 'received', '10.9000', '10.9000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65865, 577, NULL, 9388, '3308', 'FLUXACIN CAPS 500MG', NULL, '8.4000', '11.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.0000', '20.0000', '2022-10-27', 'received', '8.4000', '8.4000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65866, 577, NULL, 8137, '2057', 'GYNO MYCOLEX PESS', NULL, '26.9000', '36.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.6000', '0.0000', '2022-10-27', 'received', '26.9000', '26.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '26.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 (65867, 577, NULL, 7523, '1443', 'VISCOF S', NULL, '12.8400', '17.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '5.0000', '2022-10-27', 'received', '12.8400', '12.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (65868, 577, NULL, 7514, '1434', 'PREGNANCY TEST KIT', NULL, '1.5000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '49.0000', '2022-10-27', '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 (65869, 577, NULL, 7531, '1451', 'METRONIDAZOLE LETAP', NULL, '3.0000', '5.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2022-10-27', '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 (65870, 577, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '7.4000', '10.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '5.0000', '2022-10-27', 'received', '7.4000', '7.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65871, 577, NULL, 7770, '1690', 'LUEX BABY COUGH', NULL, '16.0000', '22.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '5.0000', '2022-10-27', '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 (65872, 577, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '17.2000', '23.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.8000', '4.0000', '2022-10-27', 'received', '17.2000', '17.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '17.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 (65873, 577, NULL, 7339, '1259', 'NO SPA40MG', NULL, '0.8400', '1.1000', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '100.0000', '2022-10-27', 'received', '0.8400', '0.8400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.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 (65874, 577, NULL, 9452, '88847269', 'GLOVES PER PACK', NULL, '50.0000', '66.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2022-10-27', '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 (65875, 577, NULL, 7778, '1698', 'BECOATIN SRP', NULL, '14.3000', '19.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '5.0000', '2022-10-27', '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 (65876, 577, NULL, 7999, '1919', 'ROBB INH', NULL, '2.2000', '3.0000', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '12.0000', '2022-10-27', 'received', '2.2000', '2.2000', '12.0000', NULL, NULL, 1, 'pc', '12.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 (65877, 577, NULL, 7715, '1635', 'MALARIA TEST KIT', NULL, '6.6000', '10.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.0000', '50.0000', '2022-10-27', 'received', '6.6000', '6.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (65878, 577, NULL, 7918, '1838', 'ZUBES CHILD', NULL, '10.8000', '14.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2022-10-27', '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 (65879, 577, NULL, 10053, '03571050', 'AMCOF CHESTY COUGH', NULL, '12.0000', '16.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2022-10-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 (65880, 577, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '22.3000', '29.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.2000', '4.0000', '2022-10-27', 'received', '22.3000', '22.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '22.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 (65881, 577, NULL, 9219, '3139', 'FOLIC ACID TAB 5MG ACCORD', NULL, '8.4000', '11.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '6.0000', '2022-10-27', 'received', '8.4000', '8.4000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (65882, NULL, NULL, 2037, '', '', 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 (65883, NULL, NULL, 1596, '', '', 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 (65884, 578, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '30.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2022-10-27', '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 (65885, 578, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '14.6000', '19.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.4000', '4.0000', '2022-10-27', 'received', '14.6000', '14.6000', '4.0000', NULL, NULL, 1, 'pc', '4.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 (65886, 578, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1000', '9.0000', '2022-10-27', 'received', '3.9100', '3.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.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 (65887, 578, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '33.7000', '44.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.7000', '1.0000', '2022-10-27', 'received', '33.7000', '33.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '33.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 (65888, 578, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '24.0000', '32.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '9.0000', '2022-10-27', 'received', '24.0000', '24.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65889, 578, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '12.0000', '16.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '10.0000', '2022-10-27', '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 (65890, 578, NULL, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '25.0000', '33.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2022-10-27', '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 (65891, 578, NULL, 9576, '42057933', 'ZAHARA HERBAL MIX', NULL, '16.5000', '22.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.5000', '5.0000', '2022-10-27', 'received', '16.5000', '16.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65892, 578, NULL, 9755, '11673950', 'ZAHARA CAPS', NULL, '16.5000', '22.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '3.0000', '2022-10-27', 'received', '16.5000', '16.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65893, 578, NULL, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', NULL, '54.2000', '72.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.4000', '2.0000', '2022-10-27', 'received', '54.2000', '54.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.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 (65894, 578, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '3.3300', '4.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '333.0000', '100.0000', '2022-10-27', 'received', '3.3300', '3.3300', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '3.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 (65895, 578, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '27.5000', '36.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '5.0000', '2022-10-27', 'received', '27.5000', '27.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65896, 578, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '10.8000', '14.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2022-10-27', '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 (65897, 578, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.9500', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '10.0000', '2022-10-27', 'received', '4.9500', '4.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.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 (65898, 578, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2022-10-27', '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 (65899, 578, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '6.6000', '9.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '10.0000', '2022-10-27', '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 (65900, 578, NULL, 9633, '58280884', 'fluconazole 150mg (TEVA)', NULL, '9.7200', '13.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6000', '5.0000', '2022-10-27', 'received', '9.7200', '9.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (65901, 578, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '5.0000', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2022-10-27', '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 (65902, 578, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '6.9000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '5.0000', '2022-10-27', '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 (65903, 578, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '27.5000', '36.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '6.0000', '2022-10-27', 'received', '27.5000', '27.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65904, 578, NULL, 10062, '21137074', 'PYLIN CAPS', NULL, '44.0000', '58.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '3.0000', '2022-10-27', '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 (65905, 578, NULL, 10060, '15916976', 'GYNICARE ', NULL, '52.0000', '69.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '2.0000', '2022-10-27', 'received', '52.0000', '52.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65906, 578, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '109.0000', '9.0000', '2022-10-27', 'received', '10.9000', '10.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65907, 578, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '9.0000', '2022-10-27', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65908, 578, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '9.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '10.0000', '2022-10-27', '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 (65909, 578, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '7.2000', '9.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '10.0000', '2022-10-27', 'received', '7.2000', '7.2000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65910, 578, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '6.4000', '8.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '5.0000', '2022-10-27', 'received', '6.4000', '6.4000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65911, 578, NULL, 10003, '44582867', 'NORMAL SALINE LAVINA 0.9%', NULL, '3.8000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '10.0000', '2022-10-27', 'received', '3.8000', '3.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65912, 578, NULL, 2327, '66319646', 'MR Q', NULL, '5.5000', '7.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '20.0000', '2022-10-27', 'received', '5.5000', '5.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (65913, 578, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '7.1300', '9.5000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.5600', '12.0000', '2022-10-27', 'received', '7.1300', '7.1300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '7.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 (65914, 578, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '34.6000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.8000', '3.0000', '2022-10-27', 'received', '34.6000', '34.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.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 (65915, 578, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '3.3800', '4.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '20.0000', '2022-10-27', 'received', '3.3800', '3.3800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (65916, 578, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '10.5000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '5.0000', '2022-10-27', 'received', '10.5000', '10.5000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65917, 578, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '5.9500', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7500', '4.0000', '2022-10-27', 'received', '5.9500', '5.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.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 (65918, 578, NULL, 7584, '1504', 'EPIDERM 15G', NULL, '3.6000', '5.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2022-10-27', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65919, 578, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '10.0000', '2022-10-27', '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 (65920, 578, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '6.0000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '5.0000', '2022-10-27', '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 (65921, 578, NULL, 8622, '2542', 'DEXONE', NULL, '2.1000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '4.0000', '2022-10-27', 'received', '2.1000', '2.1000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65922, 578, NULL, 7530, '1450', 'POLYFER SRP 150ML', NULL, '12.3000', '16.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '5.0000', '2022-10-27', 'received', '12.3000', '12.3000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (65923, 578, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '4.9000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '10.0000', '2022-10-27', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65924, 578, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '5.6000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '9.0000', '2022-10-27', 'received', '5.6000', '5.6000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (65925, 578, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2022-10-27', '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 (65926, 578, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '18.0000', '24.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '5.0000', '2022-10-27', '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 (65927, NULL, NULL, 8274, '', '', 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 (65928, NULL, NULL, 7441, '', '', 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 (65929, NULL, NULL, 9728, '', '', 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 (65930, NULL, NULL, 1788, '', '', 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 (65931, NULL, NULL, 8446, '', '', 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 (65932, NULL, NULL, 8889, '', '', 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 (66027, 579, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '13.2000', '17.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '6.0000', '2022-10-28', 'received', '13.2000', '13.2000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (66028, 579, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '3.4100', '5.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4600', '6.0000', '2022-10-28', 'received', '3.4100', '3.4100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.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 (66029, 579, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.9100', '5.0000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.3000', '30.0000', '2022-10-28', 'received', '3.9100', '3.9100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.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 (66030, 579, NULL, 9177, '3097', 'DICNAC 100MG SUPP', NULL, '0.8900', '1.2000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '60.0000', '2022-10-28', '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 (66031, 579, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '9.4000', '12.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.4000', '6.0000', '2022-10-28', 'received', '9.4000', '9.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.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 (66032, 579, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '60.5000', '80.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '302.5000', '5.0000', '2022-10-28', 'received', '60.5000', '60.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '60.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (66033, 579, NULL, 2169, '97038500', 'GEBEDOL', NULL, '2.0500', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.0000', '56.0000', '2022-10-28', 'received', '2.0500', '2.0500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (66034, 579, NULL, 1613, 'PR-326', 'GYPRON SYR', NULL, '9.9000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '6.0000', '2022-10-28', 'received', '9.9000', '9.9000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (66035, 579, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '16.7000', '22.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.2000', '6.0000', '2022-10-28', '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 (66036, 579, NULL, 2068, '79519848', 'LUFART DS', NULL, '15.5000', '20.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.0000', '20.0000', '2022-10-28', 'received', '15.5000', '15.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (66037, 579, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.4100', '0.5000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '200.0000', '2022-10-28', 'received', '0.4100', '0.4100', '200.0000', NULL, NULL, 1, 'pc', '200.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 (66038, 579, NULL, 1485, '008', 'NIZORAL CREAM', NULL, '35.0000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '3.0000', '2022-10-28', '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 (66039, 579, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '24.0000', '32.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2022-10-28', '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 (66040, 579, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '143.3000', '189.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '286.6000', '2.0000', '2022-10-28', 'received', '143.3000', '143.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '143.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 (66041, 579, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '8.2800', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.8400', '3.0000', '2022-10-28', 'received', '8.2800', '8.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (66042, 579, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '26.0000', '34.5000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2022-10-28', '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 (66043, 579, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '327.0000', '30.0000', '2022-10-28', 'received', '10.9000', '10.9000', '30.0000', NULL, NULL, 1, 'pc', '30.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 (66044, 579, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '24.0000', '32.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '6.0000', '2022-10-28', 'received', '24.0000', '24.0000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (66045, 579, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '21.7000', '29.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7000', '1.0000', '2022-10-28', '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 (66046, 579, NULL, 7526, '1446', 'ZINCOVIT SRP', NULL, '21.7000', '29.0000', '0.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2022-10-28', 'received', '21.7000', '21.7000', '0.0000', NULL, NULL, 1, 'pc', '0.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 (66047, 579, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '12.2100', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0500', '5.0000', '2022-10-28', 'received', '12.2100', '12.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.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 (66048, 579, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.4600', '0.7000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '25.0000', '2022-10-28', 'received', '0.4600', '0.4600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (66049, 579, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.6000', '0.8000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '46.0000', '2022-10-28', 'received', '0.6000', '0.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (66050, 579, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '8.5000', '11.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '20.0000', '2022-10-28', 'received', '8.5000', '8.5000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (66051, 579, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '2.3000', '3.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '48.0000', '2022-10-28', 'received', '2.3000', '2.3000', '48.0000', NULL, NULL, 1, 'pc', '48.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 (66052, 579, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '9.2000', '12.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '2.0000', '2022-10-28', 'received', '9.2000', '9.2000', '2.0000', NULL, NULL, 1, 'pc', '2.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 (66053, 579, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '7.1000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '6.0000', '2022-10-28', 'received', '7.1000', '7.1000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (66054, 579, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '17.1500', '23.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.7500', '5.0000', '2022-10-28', 'received', '17.1500', '17.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.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 (66055, 579, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '9.8000', '13.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '5.0000', '2022-10-28', 'received', '9.8000', '9.8000', '5.0000', NULL, NULL, 1, 'pc', '5.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 (66056, 579, NULL, 9740, '28634519', 'ZINOL TAB PARA 500MG', NULL, '0.6700', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '50.0000', '2022-10-28', 'received', '0.6700', '0.6700', '50.0000', NULL, NULL, 1, 'pc', '50.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 (66057, 579, NULL, 9921, '29778181', 'HEMOFORCE PLUS SYR', NULL, '9.3000', '12.5000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '6.0000', '2022-10-28', 'received', '9.3000', '9.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (66058, 579, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '8.0000', '2022-10-28', '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 (66059, 579, NULL, 2104, '44677443', 'DYNWELL TABLETS', NULL, '0.2000', '0.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2022-10-28', 'received', '0.2000', '0.2000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (66060, 579, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.9500', '7.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0000', '16.0000', '2022-10-28', 'received', '4.9500', '4.9500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.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 (66061, 579, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '3.3300', '4.5000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '399.6000', '98.0000', '2022-10-28', 'received', '3.3300', '3.3300', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '3.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 (66062, 579, NULL, 7926, '1846', 'PARA UK 16\'S', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '10.0000', '2022-10-28', '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 (66063, 579, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '3.7000', '5.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '222.0000', '60.0000', '2022-10-28', 'received', '3.7000', '3.7000', '60.0000', NULL, NULL, 1, 'pc', '60.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 (66064, 579, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '56.2000', '74.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '281.0000', '5.0000', '2022-10-28', 'received', '56.2000', '56.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '56.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 (66065, 579, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '53.5000', '71.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.5000', '3.0000', '2022-10-28', 'received', '53.5000', '53.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '53.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (66066, 579, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '73.1000', '96.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '584.8000', '8.0000', '2022-10-28', 'received', '73.1000', '73.1000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '73.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 (66067, 579, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '3.7500', '5.0000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '8.0000', '2022-10-28', 'received', '3.7500', '3.7500', '8.0000', NULL, NULL, 1, 'pc', '8.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 (66068, 579, NULL, 8622, '2542', 'DEXONE', NULL, '2.1000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '10.0000', '2022-10-28', '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 (66069, 579, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '4.2000', '6.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '20.0000', '2022-10-28', 'received', '4.2000', '4.2000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (66070, 579, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '6.3800', '8.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.8000', '10.0000', '2022-10-28', 'received', '6.3800', '6.3800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.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 (66071, 579, NULL, 7713, '1633', 'MARTINS PLAIN', NULL, '0.3800', '0.7000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '25.0000', '2022-10-28', 'received', '0.3800', '0.3800', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.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 (66072, 579, NULL, 9457, '08890691', 'C PHENIRAMINE SYRUP 125ML', NULL, '4.3000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '6.0000', '2022-10-28', 'received', '4.3000', '4.3000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (66073, 579, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '2.3300', '3.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '279.6000', '110.0000', '2022-10-28', 'received', '2.3300', '2.3300', '120.0000', NULL, NULL, 1, 'pc', '120.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 (66074, 579, NULL, 1885, 'PR-598', 'SALICYLIC OINT', NULL, '9.3100', '12.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5500', '5.0000', '2022-10-28', 'received', '9.3100', '9.3100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.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 (66075, 579, NULL, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '3.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '10.0000', '2022-10-28', 'received', '3.8000', '3.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (66076, 579, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '10.3000', '14.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.8000', '0.0000', '2022-10-28', 'received', '10.3000', '10.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.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 (66077, 579, NULL, 9986, '66967968', 'CIROTAMIN CAPS', NULL, '11.5000', '15.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.0000', '10.0000', '2022-10-28', 'received', '11.5000', '11.5000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (66078, 579, NULL, 1612, 'PR-325', 'GYPRONE PLUS TABS', NULL, '3.0000', '4.0000', '25.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '13.0000', '2022-10-28', 'received', '3.0000', '3.0000', '25.0000', NULL, NULL, 1, 'pc', '25.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 (66079, 579, NULL, 2854, '44570580', 'LORATADINE 10MG  TEVA', NULL, '6.0000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '10.0000', '2022-10-28', '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 (66080, 579, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '34.8000', '46.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.4000', '2.0000', '2022-10-28', 'received', '34.8000', '34.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.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 (66081, 579, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '5.7000', '8.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '4.0000', '2022-10-28', 'received', '5.7000', '5.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.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 (66082, 579, NULL, 2169, '97038500', 'GEBEDOL', NULL, '2.0500', '3.0000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '123.0000', '60.0000', '2022-10-28', 'received', '2.0500', '2.0500', '60.0000', NULL, NULL, 1, 'pc', '60.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 (66083, 579, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '9.0000', '12.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '10.0000', '2022-10-28', '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 (66084, 579, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '1.6000', '3.5000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '50.0000', '2022-10-28', 'received', '1.6000', '1.6000', '50.0000', NULL, NULL, 1, 'pc', '50.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 (66085, 579, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.5900', '1.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5000', '50.0000', '2022-10-28', 'received', '0.5900', '0.5900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.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 (66086, 579, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '27.5000', '36.5000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.5000', '5.0000', '2022-10-28', 'received', '27.5000', '27.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (66087, 579, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '8.1400', '11.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4200', '3.0000', '2022-10-28', 'received', '8.1400', '8.1400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.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 (66088, 579, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '5.5000', '7.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '10.0000', '2022-10-28', '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 (66089, 579, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '10.8000', '14.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '10.0000', '2022-10-28', 'received', '10.8000', '10.8000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (66090, 579, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '7.1300', '9.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.6000', '20.0000', '2022-10-28', 'received', '7.1300', '7.1300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.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 (66091, 579, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '3.0500', '4.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '20.0000', '2022-10-28', '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 (66092, 579, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '15.4000', '20.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '10.0000', '2022-10-28', 'received', '15.4000', '15.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '15.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 (66093, 579, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '5.0000', '7.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2022-10-28', '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 (66094, 579, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '10.5000', '14.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '4.0000', '2022-10-28', '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 (66095, 579, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '10.9000', '14.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '218.0000', '20.0000', '2022-10-28', 'received', '10.9000', '10.9000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (66096, 579, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '7.3000', '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.0000', '10.0000', '2022-10-28', 'received', '7.3000', '7.3000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (66097, 579, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '4.9000', '6.5000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '10.0000', '2022-10-28', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (66098, 579, NULL, 8918, '2838', 'APC 10*10', NULL, '1.2200', '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.4000', '20.0000', '2022-10-28', 'received', '1.2200', '1.2200', '20.0000', NULL, NULL, 1, 'pc', '20.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 (66099, 579, NULL, 9750, '14293840', 'KLIRE TABLET 10\'S', NULL, '5.6000', '7.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '20.0000', '2022-10-28', 'received', '5.6000', '5.6000', '20.0000', NULL, NULL, 1, 'pc', '20.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 (66100, 579, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '1.1700', '2.0000', '50.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '50.0000', '2022-10-28', 'received', '1.1700', '1.1700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.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 (66101, 579, NULL, 1922, '8904185507342', 'Blopen gel BG-138', NULL, '4.5000', '6.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '6.0000', '2022-10-28', 'received', '4.5000', '4.5000', '6.0000', NULL, NULL, 1, 'pc', '6.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 (66102, 579, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.7700', '1.0000', '200.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.0000', '200.0000', '2022-10-28', 'received', '0.7700', '0.7700', '200.0000', NULL, NULL, 1, 'pc', '200.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 (66103, 579, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '2.0200', '3.0000', '75.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.5000', '62.0000', '2022-10-28', 'received', '2.0200', '2.0200', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '2.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 (66104, 579, NULL, 9848, '80594538', 'RUFENAC GEL', NULL, '2.8000', '4.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '10.0000', '2022-10-28', '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 (66105, 579, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '2.8000', '5.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '10.0000', '2022-10-28', '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 (66106, 579, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '3.3800', '4.5000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6000', '20.0000', '2022-10-28', 'received', '3.3800', '3.3800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.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 (66107, 579, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '16.5000', '22.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '1.0000', '2022-10-28', 'received', '16.5000', '16.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '16.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (66108, 579, NULL, 9821, '50696548', 'PARAFENAC', NULL, '2.3000', '3.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '10.0000', '2022-10-28', '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 (66109, 579, NULL, 10041, '57495123', 'Enacef(cefuroxime) 500mg tablets', NULL, '30.0000', '40.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '10.0000', '2022-10-28', 'received', '30.0000', '30.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (66110, 579, NULL, 8677, '2597', 'METAGYL TAB 400MG', NULL, '2.0400', '2.5000', '56.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.2400', '56.0000', '2022-10-28', 'received', '2.0400', '2.0400', '56.0000', NULL, NULL, 1, 'pc', '56.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 (66111, 579, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '17.5000', '23.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '3.0000', '2022-10-28', '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 (66112, 579, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '25.3000', '33.5000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.2000', '4.0000', '2022-10-28', 'received', '25.3000', '25.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '25.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 (66113, 579, NULL, 9885, '28207929', 'KEFROX 500MG TAB', NULL, '30.0000', '40.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '10.0000', '2022-10-28', 'received', '30.0000', '30.0000', '10.0000', NULL, NULL, 1, 'pc', '10.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 (66114, 579, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '5.7000', '8.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '9.0000', '2022-10-28', 'received', '5.7000', '5.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.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 (66115, 579, NULL, 8068, '1988', 'METOCLOPRAMIDE', NULL, '9.8000', '13.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '10.0000', '2022-10-28', '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 (66116, 579, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '99.3000', '131.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.6000', '2.0000', '2022-10-28', 'received', '99.3000', '99.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '99.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 (66117, 579, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '9.5000', '13.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '6.0000', '2022-10-28', '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 (66118, 579, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '12.0000', '16.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2022-10-28', '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 (66119, 579, NULL, 8482, '2402', 'BEST VIT C 1000', NULL, '22.3000', '29.5000', '24.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '535.2000', '24.0000', '2022-10-28', 'received', '22.3000', '22.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '22.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 (66120, 579, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '5.0000', '7.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '10.0000', '2022-10-28', '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 (66121, 579, NULL, 9695, '27387632', 'YOGOFRESH', NULL, '7.5000', '10.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2022-10-28', '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 (66122, NULL, NULL, 10062, '', '', 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 (66123, NULL, NULL, 10048, '', '', 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 (66124, NULL, NULL, 2650, '', '', 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);


#
# 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=580 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);
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 (203, 'Lakeside-01', '2021-08-21 12:56:00', 2, 'Supplier Company Name', 1, '', '14098.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14098.0300', '0.0000', 'received', 'pending', 1, 1, '2021-08-21 20:59: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 (204, 'F0002/21/8/21/ROSA/KELMED', '2021-08-21 14:49:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '1396.9300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1396.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 (205, 'F0001/21/8/21/COM/STELLA/KELMED', '2021-08-21 15:14:00', 16, 'KELMED PHARMACAUTICALS', 2, '', '1368.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1368.4000', '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 (206, 'F0001/21/8/21/COM/STELLA/KELMED 2', '2021-08-21 15:42:00', 16, 'KELMED PHARMACAUTICALS', 2, '', '169.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '169.6600', '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 (207, 'F0001/21/8/21/COM/STELLA/OPEN MKT', '2021-08-21 17:42:00', 14, 'OPEN MARKET', 2, '', '684.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '684.3800', '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 (208, 'F0003/21/8/21/LAKESIDE/KELMED', '2021-08-21 18:49:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '3123.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3123.3100', '0.0000', 'received', 'pending', 3, 3, '2021-08-21 21:07: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 (209, 'F0001/22/8/21/  OPEN MKT /lake side', '2021-08-23 15:19:00', 14, 'OPEN MARKET', 1, '', '679.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '679.5000', '0.0000', 'received', 'pending', 4, 3, '2021-08-23 22:51: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 (210, 'F0001/23/8/20/OPEN MKT/COMM', '2021-08-23 22:20:00', 14, 'OPEN MARKET', 2, '', '531.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '531.6000', '0.0000', 'received', 'pending', 3, 3, '2021-08-24 08:58: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 (211, '23/8/21/ROZAROSA/OPEN MKT', '2021-08-23 22:27:00', 14, 'OPEN MARKET', 3, '', '420.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '420.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 (212, 'F0002/18/8/21/ROSA/NISSI', '2021-08-24 20:47:00', 18, 'NISSI PHARMACY', 3, '', '2560.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2560.1900', '0.0000', 'received', 'pending', 3, 3, '2021-08-24 21: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 (213, 'f0003/24/8/21/KINPHARMA/LAKESIDE', '2021-08-25 19:56:00', 8, 'KINAPHARMA LIMITED', 1, '', '553.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '553.0600', '0.0000', 'received', 'pending', 3, 3, '2021-08-26 09:10: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 (214, 'F0003/20/8/21/TINATETT/LAKESIDE', '2021-08-25 20:40:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 1, '', '137.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '137.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 (215, 'F0003/25/8/21/NISSI/LAKESIDE', '2021-08-25 20:49:00', 18, 'NISSI PHARMACY', 1, '', '1900.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.3900', '0.0000', 'received', 'pending', 3, 3, '2021-08-26 10:28: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 (216, 'F0002/25/8/21/ROSA/NISSI', '2021-08-26 11:53:00', 18, 'NISSI PHARMACY', 3, '', '1322.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1322.2100', '0.0000', 'received', 'pending', 3, 3, '2021-08-26 13:20: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 (217, 'F0003/27/8/21/LAKESIDE/OPEN MKT', '2021-08-27 18:31:00', 14, 'OPEN MARKET', 1, '', '511.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '511.6400', '0.0000', 'received', 'pending', 3, 3, '2021-08-28 21:04: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 (218, 'F0001/18/25/8/21/COMM/NISSI', '2021-08-27 18:45:00', 18, 'NISSI PHARMACY', 2, '', '6898.4300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6898.4300', '0.0000', 'received', 'pending', 3, 3, '2021-09-02 09:28: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 (219, 'F0003/28/8/21/LAK/STELLA/OPEN MKT/TINAT', '2021-08-28 20:09:00', 14, 'OPEN MARKET', 1, '', '408.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '408.0000', '0.0000', 'received', 'pending', 3, 3, '2021-09-01 00:00: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 (220, 'F0002/28/8/21/ROSA/OPEN MKT/TINATT', '2021-08-28 20:16:00', 14, 'OPEN MARKET', 3, '', '322.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '322.3000', '0.0000', 'received', 'pending', 3, 3, '2021-09-02 09:22:27', '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 (221, 'F0001/28/8/21/COM/STELLA/TINATT /OPEN MKT', '2021-08-28 21:00:00', 14, 'OPEN MARKET', 2, '', '365.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '365.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 (222, 'F0001/28/8/21/COM/STELLA/NISSI', '2021-08-28 21:09:00', 18, 'NISSI PHARMACY', 2, '', '1679.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1679.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 (223, 'F0003/28/8/21/LAKESIDE/NISSI', '2021-09-01 19:12:00', 18, 'NISSI PHARMACY', 1, '', '142.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '142.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 (224, 'F0003/2/9/21/LAKESIDE/OPEN MKT', '2021-09-02 19:17:00', 14, 'OPEN MARKET', 1, '', '1066.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1066.1600', '0.0000', 'received', 'pending', 3, 3, '2021-09-02 20:41: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 (225, 'F0003/3/9/21/LAKESIDE/UNICOM', '2021-09-04 09:14:00', 26, 'UNICORN CHEMIST', 1, '', '268.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '268.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 (226, 'F0001/3/9/21/COMM/UNICOM', '2021-09-04 09:16:00', 26, 'UNICORN CHEMIST', 2, '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', '0.0000', 'received', 'pending', 3, 3, '2021-09-04 08:19:47', '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 (227, 'F0002/3/9/21/ROZA/UNICOM', '2021-09-04 09:19:00', 26, 'UNICORN CHEMIST', 3, '', '268.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '268.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 (228, 'F0002/3/9/21/ROZA/OPEN MKT', '2021-09-04 09:27:00', 14, 'OPEN MARKET', 3, '', '1175.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1175.4600', '0.0000', 'received', 'pending', 3, 3, '2021-09-06 10:24:15', '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 (229, 'F0003/3/9/21/LAKESIDE/OPEN MKT', '2021-09-04 09:39:00', 14, 'OPEN MARKET', 1, '', '1828.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1828.5000', '0.0000', 'received', 'pending', 3, 3, '2021-11-01 13:12: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 (230, 'F0001/3/9/21/COMM/SHAGGY', '2021-09-04 09:55:00', 23, 'SHAGGYSCO PHARMACY', 2, '', '499.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '499.7800', '0.0000', 'received', 'pending', 3, 3, '2021-09-04 09:35: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 (231, 'F0001/3/9/21/COMM/OPEN MKT', '2021-09-06 09:54:00', 14, 'OPEN MARKET', 2, '', '925.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '925.2000', '0.0000', 'received', 'pending', 3, 3, '2021-09-06 10:25: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 (232, 'F0001/6/9/21/COMM/OPEN MKT', '2021-09-06 15:33:00', 14, 'OPEN MARKET', 2, '', '1470.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1470.5000', '0.0000', 'received', 'pending', 3, 3, '2021-09-06 14:52: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 (233, 'f0001/3/9/21/COMM/NISSI', '2021-09-08 14:47:00', 18, 'NISSI PHARMACY', 2, '', '1836.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1836.0200', '0.0000', 'received', 'pending', 3, 3, '2021-09-09 11:06:03', '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 (234, 'F0001/8/9/21/COM/STELLA/NISSI', '2021-09-08 20:23:00', 18, 'NISSI PHARMACY', 2, '', '1360.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1360.3900', '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 (235, 'F0003/6/9/21/LAKESIDE/KELMED', '2021-09-09 10:57:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '94.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '94.4000', '0.0000', 'received', 'pending', 3, 3, '2021-09-09 23:22: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 (236, 'F0003/6/9/21/LAKESIDE/NISSI', '2021-09-09 15:29:00', 18, 'NISSI PHARMACY', 1, '', '936.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '936.1700', '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 (237, 'F0001/3/9/21/COM/STELLA/ELOHIM', '2021-09-09 16:17:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '3299.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3299.2400', '0.0000', 'received', 'pending', 3, 3, '2021-09-09 21:51: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 (238, 'F0003/9/9/21/LAKESIDE/OPEN MKT', '2021-09-09 22:52:00', 14, 'OPEN MARKET', 4, '', '542.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '542.5000', '0.0000', 'received', 'pending', 3, 3, '2021-09-09 23:19: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 (239, 'F0002/8/9/21/ROSA/NISSI', '2021-09-10 15:06:00', 18, 'NISSI PHARMACY', 3, '', '1576.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1576.8300', '0.0000', 'received', 'pending', 3, 3, '2021-09-10 15: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 (240, 'F0002/28/8/21/ROSA/KELMED', '2021-09-10 15:35:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '1626.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1626.5600', '0.0000', 'received', 'pending', 3, 3, '2021-09-13 14:46: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 (241, 'F0001/25/8/21/COM/STELLA/NISSI', '2021-09-10 16:01:00', 18, 'NISSI PHARMACY', 2, '', '1695.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1695.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 (242, 'f0001/3/9/21/COMM/EOLHIM', '2021-09-11 16:16:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '1980.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1980.1800', '0.0000', 'received', 'pending', 3, 3, '2021-09-18 01:28:49', '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 (243, 'F0001/11/9/2021/COMM/KELMED', '2021-09-11 17:00:00', 16, 'KELMED PHARMACAUTICALS', 2, '', '1599.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1599.2400', '0.0000', 'received', 'pending', 3, 4, '2021-09-17 10:00: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 (244, 'F0003/11/9/21/ROZA/KELMED', '2021-09-11 17:16:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '1939.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1939.6100', '0.0000', 'received', 'pending', 3, 3, '2021-09-11 17:54:47', '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 (245, 'F0003/3/9/21/LAKESIDE/KELMED', '2021-09-11 20:49:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '655.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '655.2600', '0.0000', 'received', 'pending', 3, 3, '2021-09-11 21:26: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 (246, 'F0003/3/9/21/LAKESIDE/SHAGGYS', '2021-09-11 21:18:00', 23, 'SHAGGYSCO PHARMACY', 1, '', '1492.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1492.9700', '0.0000', 'received', 'pending', 3, 3, '2021-09-11 23:42: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 (247, 'F0003/3/9/21/LAKESIDE/ELOHIM', '2021-09-11 23:35:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 1, '', '3420.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3420.8700', '0.0000', 'received', 'pending', 3, 3, '2021-09-12 20:11: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 (248, 'F0003/28/8/21/LAKESIDE/KELMED', '2021-09-12 20:03:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '2760.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2760.5800', '0.0000', 'received', 'pending', 3, 3, '2021-09-12 21:06: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 (249, 'F0003/10/9/21/LAKESIDE/NISSI', '2021-09-12 20:59:00', 18, 'NISSI PHARMACY', 1, '', '3383.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3383.2100', '0.0000', 'received', 'pending', 3, 3, '2021-09-17 23:09: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 (250, 'F0002/11/6/21/ROSA/NISSI', '2021-09-13 14:45:00', 18, 'NISSI PHARMACY', 3, '', '4760.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4760.9600', '0.0000', 'received', 'pending', 3, 3, '2021-09-18 01:27: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 (251, 'F0003/6/9/21/LAKESIDE/OPEN MKT', '2021-09-16 22:15:00', 14, 'OPEN MARKET', 1, '', '1136.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1136.5200', '0.0000', 'received', 'pending', 3, 3, '2021-10-04 23:35: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 (252, 'F0002/17/9/21/ROSA/NISSI/KELMED', '2021-09-19 16:47:00', 18, 'NISSI PHARMACY', 3, '', '4379.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4379.8000', '0.0000', 'received', 'pending', 3, 3, '2021-09-19 18:04:15', '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 (253, 'F0001/17/9/21/COM/STELLA/NISSI/KELMED', '2021-09-19 17:55:00', 18, 'NISSI PHARMACY', 2, '', '5193.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5193.3500', '0.0000', 'received', 'pending', 3, 3, '2021-11-10 12:01:47', '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 (254, 'F0003/17/9/21/LAKESIDE/NISSI/KELMED', '2021-09-19 17:58:00', 18, 'NISSI PHARMACY', 1, '', '8208.9200', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '8208.9200', '0.0000', 'received', 'pending', 3, 3, '2021-11-01 15:42:29', '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 (255, 'F0001/24/9/21/COM/STELLA/OPEN MKT', '2021-09-24 21:03:00', 14, 'OPEN MARKET', 2, '', '960.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '960.2000', '0.0000', 'received', 'pending', 3, 3, '2021-09-26 06:32: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 (256, 'F0002/24/9/21/ROSA/OPEN MKT', '2021-09-24 21:42:00', 14, 'OPEN MARKET', 3, '', '1769.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1769.6400', '0.0000', 'received', 'pending', 3, 3, '2021-11-07 12:17: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 (257, 'F0003/24/9/21/LAKESIDE/NISSI', '2021-09-25 09:07:00', 18, 'NISSI PHARMACY', 1, '', '5734.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5734.8200', '0.0000', 'received', 'pending', 3, 3, '2021-09-26 11:58:03', '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 (258, 'F0001/24/9/21/COM/STELLA/NISSI', '2021-09-25 12:28:00', 18, 'NISSI PHARMACY', 2, '', '7656.9300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7656.9300', '0.0000', 'received', 'pending', 3, 3, '2021-11-08 08:39: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 (259, 'F0001/27/09/2021/COMM/OPENMKT', '2021-09-29 06:38:00', 14, 'OPEN MARKET', 2, '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', '0.0000', 'received', 'pending', 3, 3, '2021-11-01 12:09: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 (260, 'F0003/27/09/21/LAKESIDE/STELLA/OPEN MKT', '2021-10-03 22:47:00', 14, 'OPEN MARKET', 1, '', '4307.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4307.2600', '0.0000', 'received', 'pending', 3, 3, '2021-11-10 09:25: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 (261, 'F0001/27/09/2021/COMM/OPENMKT', '2021-10-03 23:26:00', 14, 'OPEN MARKET', 2, '', '4282.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4282.3000', '0.0000', 'received', 'pending', 3, 3, '2021-10-31 20:36: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 (262, 'F0003/6/10/21/LAKESIDE/KELMED', '2021-10-06 23:59:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '423.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '423.1000', '0.0000', 'received', 'pending', 3, 3, '2021-10-09 11:21: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 (263, 'F0001/6/10/21/COM/STELLA/NISSI', '2021-10-07 09:18:00', 18, 'NISSI PHARMACY', 2, '', '3548.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3548.8300', '0.0000', 'received', 'pending', 3, 3, '2021-10-09 23:19:15', '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 (264, 'F0003/8/10/21/LAKESIDE/NISSI', '2021-10-08 22:53:00', 18, 'NISSI PHARMACY', 1, '', '4167.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4167.5300', '0.0000', 'received', 'pending', 3, 3, '2021-10-09 11:18: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 (265, 'F0002/24/9/21/ROSA/NISSI', '2021-10-09 21:25:00', 18, 'NISSI PHARMACY', 3, '', '3677.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3677.5800', '0.0000', 'received', 'pending', 3, 3, '2021-10-12 12:16:47', '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 (266, 'f0002/ 11/10/21/ROSA/OPEN MT', '2021-10-12 09:50:00', 14, 'OPEN MARKET', 3, '', '682.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '682.9000', '0.0000', 'received', 'pending', 3, 3, '2021-10-31 20:40: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 (267, 'F0001/11/10/21/COM/STELLA/OPEN MKT', '2021-10-12 11:06:00', 14, 'OPEN MARKET', 2, '', '2404.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2404.3100', '0.0000', 'received', 'pending', 3, 3, '2021-11-10 09:24: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 (268, 'F0003/12/10/21/LAKESIDE/KINAPHARMA', '2021-10-12 23:30:00', 8, 'KINAPHARMA LIMITED', 1, '', '332.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '332.3500', '0.0000', 'received', 'pending', 3, 3, '2021-10-13 08:41: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 (269, 'F0002/8/10/21/ROSA/TINATTET', '2021-10-13 08:39:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 3, '', '819.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '819.5800', '0.0000', 'received', 'pending', 3, 3, '2021-10-14 13:48: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 (270, 'F0001/14/10/21/COM/STELLA/MPHARM', '2021-10-17 12:46:00', 27, 'MPHARMA', 2, '', '2211.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2211.3100', '0.0000', 'received', 'pending', 3, 3, '2021-10-17 14:04: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 (271, 'F0003/2/10/21/LAKESIDE/TINATTET', '2021-10-17 14:31:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 1, '', '725.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '725.2000', '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 (272, 'F0003/02/10/21/LAKESIDE/KELMED', '2021-10-17 15:43:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '2319.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2319.1100', '0.0000', 'received', 'pending', 3, 3, '2021-10-19 21:52:35', '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 (273, 'F0003/14/10/21/LAKESIDE/mpharma', '2021-10-17 23:45:00', 27, 'MPHARMA', 1, '', '260.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.3600', '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 (274, 'F0002/29/9/21/ROSA/NISSI', '2021-10-19 21:57:00', 18, 'NISSI PHARMACY', 3, '', '2440.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2440.3900', '0.0000', 'received', 'pending', 3, 3, '2021-10-19 23:14: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 (275, 'F0002/8/10/21/ROSA/KELMED', '2021-10-20 22:38:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '253.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '253.7100', '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 (276, 'F0003/21/10/21/LAKESIDE/KELMED', '2021-10-22 09:41:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '434.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '434.0300', '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 (277, 'F0002/ 23/10/21/ROSA/OPEN MT', '2021-10-25 13:10:00', 14, 'OPEN MARKET', 3, '', '1771.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1771.5100', '0.0000', 'received', 'pending', 3, 3, '2021-11-07 11:23: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 (278, 'F0003/18/10/21/LAKESIDE/NISSI', '2021-10-25 14:08:00', 18, 'NISSI PHARMACY', 3, '', '2718.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2718.9800', '0.0000', 'received', 'pending', 3, 3, '2021-12-01 15:04: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 (279, 'F0003/22/9/21/LAKESIDE/NISSI/', '2021-11-01 13:19:00', 18, 'NISSI PHARMACY', 1, '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.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 (280, 'F0003/18/10/21/LAKESIDE/NISSI', '2021-11-02 10:29:00', 18, 'NISSI PHARMACY', 3, '', '8218.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8218.3900', '0.0000', 'received', 'pending', 3, 3, '2021-11-02 16:19: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 (281, 'F0002/11/6/21/ROSA/NISSI/contd', '2021-11-03 09:16:00', 18, 'NISSI PHARMACY', 3, '', '1922.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1922.3000', '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 (282, 'FMMS1/6/11/21/LAKESIDE/KELMED', '2021-11-06 18:20:00', 18, 'NISSI PHARMACY', 1, '', '8752.0300', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '8752.0300', '0.0000', 'received', 'pending', 3, 3, '2021-12-01 13:59:52', '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 (283, 'F0001/8/11/21/COMM', '2021-11-08 08:34:00', 14, 'OPEN MARKET', 2, '', '1017.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1017.0700', '0.0000', 'received', 'pending', 3, 3, '2021-11-08 09:59:42', '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 (284, 'f0002/ 8/11/21/ROSA/OPEN MT', '2021-11-08 08:41:00', 14, 'OPEN MARKET', 3, '', '1081.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1081.9600', '0.0000', 'received', 'pending', 3, 3, '2021-11-10 09:23: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 (285, 'F0001/6/11/21/COMM/KELMED', '2021-11-10 10:59:00', 18, 'NISSI PHARMACY', 2, '', '4699.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4699.0500', '0.0000', 'received', 'pending', 3, 3, '2021-11-11 18:29: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 (286, 'F0002/1/8/21/ROSA/KELMED/KOJACH', '2021-11-15 08:10:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '2865.1300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2865.1300', '0.0000', 'received', 'pending', 3, 3, '2021-11-16 21:12: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 (287, 'F0001/13/11/21/COM/ELOHIM/SHAG/JAWDA/TINT', '2021-11-15 09:00:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '2166.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2166.4000', '0.0000', 'received', 'pending', 3, 3, '2021-11-20 21: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 (288, 'Fmms3/19/11/21/ROSA/EAST CANTOMENTS', '2021-11-20 20:04:00', 25, 'EAST CANTOMENT', 3, '', '3128.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3128.3100', '0.0000', 'received', 'pending', 3, 3, '2021-11-21 21:39:35', '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 (289, 'FMMS1/19/11/2021/LAKESIDE/EASTCANT0', '2021-11-21 15:50:00', 25, 'EAST CANTOMENT', 1, '', '348.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '348.0000', '0.0000', 'received', 'pending', 3, 3, '2021-11-21 17:47: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 (290, 'FMMS1/8/10/21/LAKESIDE/OPEN MKT', '2021-11-21 20:39:00', 14, 'OPEN MARKET', 1, '', '1049.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1049.5000', '0.0000', 'received', 'pending', 3, 3, '2021-11-29 23:08: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 (291, 'FMMS2/19/11/21/COMM/EAST CHEMIST', '2021-11-21 20:44:00', 25, 'EAST CANTOMENT', 2, '', '803.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '803.7400', '0.0000', 'received', 'pending', 3, 3, '2021-12-08 09:03: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 (292, 'FMMS2/21/11/21/COMM/OSONS', '2021-11-24 05:38:00', 12, 'OSONS CHEMIST', 2, '', '1201.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1201.3000', '0.0000', 'received', 'pending', 3, 3, '2021-11-24 10:08: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 (293, 'FMMS2/23/11/21/COMM/OPEN MKT', '2021-11-24 08:01:00', 14, 'OPEN MARKET', 2, '', '424.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '424.9000', '0.0000', 'received', 'pending', 3, 3, '2021-11-29 22:59: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 (294, 'FMMS1/22/11/2021/LAKESIDE/OSONS', '2021-11-24 09:08:00', 12, 'OSONS CHEMIST', 1, '', '2325.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2325.3500', '0.0000', 'received', 'pending', 3, 3, '2021-11-25 08:38: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 (295, 'FMMS3/25/11/2021/ROSA/OPENMKT', '2021-11-26 00:03:00', 14, 'OPEN MARKET', 3, '', '1398.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1398.3000', '0.0000', 'received', 'pending', 3, 3, '2021-11-29 23:00: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 (296, 'FMMS3/22/11/2021/ROSA/OSONS', '2021-11-29 11:04:00', 12, 'OSONS CHEMIST', 3, '', '1580.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1580.2500', '0.0000', 'received', 'pending', 3, 3, '2021-11-29 13: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 (297, 'FMMS1/23/11/21/OPEN MKT/LAKESIDE', '2021-11-30 08:31:00', 14, 'OPEN MARKET', 1, '', '1299.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1299.2000', '0.0000', 'received', 'pending', 3, 3, '2021-11-30 15:04: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 (298, 'FMMS3/25/11/21/ROSA/NISSI', '2021-11-30 15:05:00', 18, 'NISSI PHARMACY', 3, '', '2186.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2186.7100', '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 (299, 'FMMS3/30/11/21/ROSA/OPENMKT', '2021-12-01 09:59:00', 14, 'OPEN MARKET', 3, '', '805.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '805.5000', '0.0000', 'received', 'pending', 3, 3, '2021-12-13 21:24: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 (300, 'FMMS1/30/11/21/LAKESIDE/OPENMKT', '2021-12-01 01:48:00', 14, 'OPEN MARKET', 1, '', '1286.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1286.2400', '0.0000', 'received', 'pending', 24, 3, '2021-12-13 21:21: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 (301, 'FMMS2/30/11/21/COMM/OPENMKT/', '2021-12-01 02:26:00', 14, 'OPEN MARKET', 2, '', '731.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '731.5400', '0.0000', 'received', 'pending', 24, 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 (302, 'FMMS2/24/11/21/COMM/NISSI', '2021-12-01 02:51:00', 18, 'NISSI PHARMACY', 2, '', '2702.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2702.0500', '0.0000', 'received', 'pending', 24, 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 (303, 'FMMS1/13/11/21/LAKESIDE/TINATET', '2021-12-01 03:34:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 1, '', '2632.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2632.3200', '0.0000', 'received', 'pending', 24, 3, '2021-12-08 01:22: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 (304, 'FMMS2/19/11/21/COMM/EAST CANT', '2021-12-01 04:16:00', 25, 'EAST CANTOMENT', 2, '', '2442.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2442.1700', '0.0000', 'received', 'pending', 24, 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 (305, 'FMMS2/4/12/21/COMM/OPENMKT', '2021-12-04 17:57:00', 14, 'OPEN MARKET', 2, '', '634.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '634.5700', '0.0000', 'received', 'pending', 3, 3, '2021-12-15 21: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 (306, 'FMMS1/2/12/21/LAKESIDE/KELMED', '2021-12-04 18:12:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '1111.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1111.2900', '0.0000', 'received', 'pending', 3, 3, '2021-12-04 18:45: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 (307, 'FMMS2/8/12/21/COMM/NISSI', '2021-12-10 10:37:00', 18, 'NISSI PHARMACY', 2, '', '10239.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10239.3400', '0.0000', 'received', 'pending', 3, 3, '2021-12-23 08:50: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 (308, 'FMMS1/13/12/21/LAKESIDE/KINAPHARMA', '2021-12-15 21:37:00', 8, 'KINAPHARMA LIMITED', 1, '', '394.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '394.5300', '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 (309, 'FMMS3/10/21/ROSA/KELMED', '2021-12-15 21:45:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '625.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '625.9500', '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 (310, 'FMMS2/16/12/2021/COMM/OPENMKT', '2021-12-19 12:01:00', 14, 'OPEN MARKET', 2, '', '1796.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1796.2000', '0.0000', 'received', 'pending', 3, 3, '2021-12-22 08:46: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 (311, 'FMMS3/16/12/21/ROSA/OPENMKT', '2021-12-19 12:10:00', 14, 'OPEN MARKET', 3, '', '1116.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1116.9200', '0.0000', 'received', 'pending', 3, 3, '2021-12-19 12:35: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 (312, 'FMMS1/16/12/21/LAKESIDE/OPENMKT', '2021-12-19 12:36:00', 14, 'OPEN MARKET', 1, '', '1413.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1413.0600', '0.0000', 'received', 'pending', 3, 3, '2021-12-22 08:32: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 (313, 'FMMS1/18/12/21/LAKESIDE/OPENMKT/HERBALS', '2021-12-19 12:55:00', 14, 'OPEN MARKET', 1, '', '1427.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1427.4000', '0.0000', 'received', 'pending', 3, 3, '2021-12-19 13:16: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 (314, 'FMMS3/19/12/21/ROSA/OPEN MKT', '2021-12-20 08:58:00', 14, 'OPEN MARKET', 3, '', '983.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '983.6400', '0.0000', 'received', 'pending', 3, 3, '2021-12-22 08:28:27', '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 (315, 'FMMS1/20/12/21/LAKESIDE/KELMED', '2021-12-21 08:07:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '459.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '459.0200', '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 (316, 'FMMS3/21/12/21/ROSA/NISSI', '2021-12-22 01:17:00', 18, 'NISSI PHARMACY', 3, '', '789.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '789.4700', '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 (317, 'FMMS1/21/12/LAKESIDE/NISSI', '2021-12-22 01:23:00', 18, 'NISSI PHARMACY', 1, '', '1027.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1027.6200', '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 (318, 'FMMS2/23/12/21/COMMANDOS/NISSI PHARMA', '2021-12-28 03:13:00', 18, 'NISSI PHARMACY', 2, '', '2897.7700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2897.7700', '0.0000', 'received', 'pending', 26, 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 (319, 'FMMS1/14/12/21/LAKESIDE/NISSI', '2021-12-28 05:14:00', 18, 'NISSI PHARMACY', 1, '', '2350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2350.0000', '0.0000', 'received', 'pending', 26, 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 (320, 'FMMS2/18/12/21/COMMANDOS/ELOHIM', '2021-12-28 06:50:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '3003.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3003.7200', '0.0000', 'received', 'pending', 26, 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 (321, 'FMMS1/27/10/21/LAKESIDE/NISSI/GRACE', '2021-12-29 19:25:00', 18, 'NISSI PHARMACY', 1, '', '6059.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6059.8200', '0.0000', 'received', 'pending', 26, 26, '2022-01-18 09:38: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 (322, 'FMMS1/08/12/21/LAKESIDE/NISSI/GRACE', '2021-12-29 23:57:00', 18, 'NISSI PHARMACY', 1, '', '4532.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4532.2300', '0.0000', 'received', 'pending', 26, 26, '2022-01-18 09:14:15', '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 (323, 'FMMS3/27/10/2021/ROSAROSA', '2021-12-31 13:33:00', 18, 'NISSI PHARMACY', 3, '', '2574.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2574.7000', '0.0000', 'received', 'pending', 26, 3, '2022-01-04 12:21: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 (324, 'FMMS2/30/12/21/COMM/FMMSW', '2022-01-04 08:03:00', 33, 'FMMS WHOLESALE', 2, '', '2231.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2231.5300', '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 (325, 'FMMS2/31/12/21/COMM/NISSI', '2022-01-04 09:10:00', 18, 'NISSI PHARMACY', 2, '', '3516.7200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3516.7200', '0.0000', 'received', 'pending', 3, 3, '2022-01-04 09:58: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 (326, 'FMMS1/4/1/22/LAKESIDE/OPENMKT', '2022-01-05 09:09:00', 14, 'OPEN MARKET', 1, '', '647.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '647.1000', '0.0000', 'received', 'pending', 3, 17, '2022-01-11 16:02: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 (327, 'FMMS2/4/1/22/COM/OPENMKT', '2022-01-05 09:23:00', 14, 'OPEN MARKET', 2, '', '738.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '738.3400', '0.0000', 'received', 'pending', 3, 3, '2022-01-07 14:04: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 (328, 'FMMS3/4/1/22/ROZA/OPENMKT', '2022-01-05 09:32:00', 14, 'OPEN MARKET', 3, '', '1066.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1066.4600', '0.0000', 'received', 'pending', 3, 3, '2022-01-05 10:15:47', '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 (329, 'FMMS1/24/12/21/LAKESIDE/NISSI', '2022-01-05 10:17:00', 18, 'NISSI PHARMACY', 1, '', '4857.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4857.7100', '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 (330, 'FMMS1/30/12/21/LAKESIDE/FMMS4', '2022-01-05 12:14:00', 33, 'FMMS WHOLESALE', 1, '', '1829.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1829.4200', '0.0000', 'received', 'pending', 3, 3, '2022-01-07 13:49: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 (331, 'FMMS3/13/11/21/ROZA/SHAGGYSCO', '2022-01-05 12:58:00', 23, 'SHAGGYSCO PHARMACY', 3, '', '658.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '658.2300', '0.0000', 'received', 'pending', 3, 3, '2022-01-06 11:20: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 (332, 'FMMS1/6/1/22/LAKESIDE/FMMS4', '2022-01-07 10:45:00', 33, 'FMMS WHOLESALE', 1, '', '6634.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6634.4900', '0.0000', 'received', 'pending', 3, 17, '2022-01-11 17:08: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 (333, 'FMMS2/6/1/22/COMMANDO/FMMS4', '2022-01-07 13:50:00', 33, 'FMMS WHOLESALE', 2, '', '740.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '740.0500', '0.0000', 'received', 'pending', 3, 3, '2022-01-14 07:45: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 (334, 'FMMS3/6/1/22/ROZA/FMMS4', '2022-01-07 14:04:00', 33, 'FMMS WHOLESALE', 3, '', '441.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '441.8300', '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 (335, 'FMMS1/13/21/LAKESIDE/ELOHIM', '2022-01-07 14:25:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 1, '', '6650.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6650.6500', '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 (336, 'FMMS1/08/1/22/LAKESIDE/DEPENDABLE', '2022-01-11 12:57:00', 24, 'DEPENDABLE', 1, '', '3463.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3463.3300', '0.0000', 'received', 'pending', 17, 17, '2022-01-13 20:29: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 (337, 'FMMS2/8/1/22/COMMANDOS/DEPENDABLE', '2022-01-11 14:10:00', 24, 'DEPENDABLE', 2, '', '7853.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7853.5300', '0.0000', 'received', 'pending', 17, 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 (338, 'FMMS2/8/1/22/COMMANDOS/DEPENDABLE', '2022-01-11 16:07:00', 24, 'DEPENDABLE', 2, '', '4414.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4414.7300', '0.0000', 'received', 'pending', 17, 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 (339, 'FMMS1/18/12/21/LAKESIDE/ELOHIM/GRACE', '2022-01-11 15:30:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 1, '', '5862.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5862.8300', '0.0000', 'received', 'pending', 26, 26, '2022-01-13 12:41: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 (340, 'FMM3/6/1/22/ROZA/FMMS4', '2022-01-11 17:13:00', 33, 'FMMS WHOLESALE', 3, '', '3794.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3794.5200', '0.0000', 'received', 'pending', 17, 3, '2022-01-14 07:39: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 (341, 'FMMS2/14/12/21/COMMANDOS/NISSI', '2022-01-13 11:20:00', 18, 'NISSI PHARMACY', 2, '', '6102.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6102.3900', '0.0000', 'received', 'pending', 17, 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 (342, 'FMMS2/14/12/21/COMM/NISSI/-B/RABI', '2022-01-13 12:35:00', 18, 'NISSI PHARMACY', 2, '', '1114.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1114.2200', '0.0000', 'received', 'pending', 17, 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 (343, 'FMMS2/27/10/21/COMM/NISSI/RABI', '2022-01-13 12:48:00', 18, 'NISSI PHARMACY', 2, '', '5694.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5694.3600', '0.0000', 'received', 'pending', 17, 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 (344, 'FMMS1/13/1/22/LAKESIDE/OPMK/RABI', '2022-01-13 14:14:00', 14, 'OPEN MARKET', 1, '', '520.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '520.6800', '0.0000', 'received', 'pending', 17, 3, '2022-01-13 21: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 (345, 'FMMS2/13/1/22/COMM/OPMK/RABI', '2022-01-13 14:23:00', 14, 'OPEN MARKET', 2, '', '832.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '832.4000', '0.0000', 'received', 'pending', 17, 3, '2022-01-13 21:38: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 (346, 'FMMS3/8/12/21/ROSAROSA/NISSI/GRACE', '2022-01-13 13:59:00', 18, 'NISSI PHARMACY', 1, '', '4744.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4744.8200', '0.0000', 'received', 'pending', 26, 26, '2022-01-17 16:33: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 (347, 'FMMS3/27/10/21/ROSAROSA/GRACE', '2022-01-15 13:42:00', 18, 'NISSI PHARMACY', 3, '', '3866.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3866.9800', '0.0000', 'received', 'pending', 26, 26, '2022-01-17 17:09: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 (348, 'FMMS2/14/1/22/COMM/FMMS4', '2022-01-15 16:13:00', 33, 'FMMS WHOLESALE', 2, '', '600.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.9400', '0.0000', 'received', 'pending', 3, 3, '2022-01-15 16:45: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 (349, 'Fmms2/15/1/22/Commd/opmk/RABI', '2022-01-16 07:58:00', 14, 'OPEN MARKET', 2, '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', '0.0000', 'received', 'pending', 17, 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 (350, 'Fmms3/15/1/22/Roza/opmk/RABI', '2022-01-16 08:03:00', 14, 'OPEN MARKET', 3, '', '77.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '77.0000', '0.0000', 'received', 'pending', 17, 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 (351, 'Fmms1/15/1/22/lakeside/opmk/RABI', '2022-01-16 08:07:00', 14, 'OPEN MARKET', 1, '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.0000', '0.0000', 'received', 'pending', 17, 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 (352, 'FMMS1/15/1/22/LAKESIDE/NISSI/RABI', '2022-01-17 09:21:00', 18, 'NISSI PHARMACY', 1, '', '3750.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3750.4600', '0.0000', 'received', 'pending', 17, 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 (353, 'FMMS2/12/1/22/COMMD/ELOHIM PHARMA/RABI', '2022-01-17 12:37:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '785.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '785.6300', '0.0000', 'received', 'pending', 17, 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 (354, 'FMMS2/29/9/21/COMMD/NISSI/RABI', '2022-01-17 13:35:00', 18, 'NISSI PHARMACY', 2, '', '3152.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3152.3800', '0.0000', 'received', 'pending', 17, 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 (355, 'FMMS1/14/1/22/LAKESIDE/FMMS4/RABI', '2022-01-17 14:08:00', 33, 'FMMS WHOLESALE', 1, '', '313.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '313.0000', '0.0000', 'received', 'pending', 17, 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 (356, 'FMMS2/27/12/21/COMMANDOS/OPEN MKT/GRACE', '2022-01-17 17:34:00', 14, 'OPEN MARKET', 2, '', '175.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '175.0000', '0.0000', 'received', 'pending', 26, 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 (357, 'FMMS3/18/12/21/ROSAROSA/ELOHIM/GRACE', '2022-01-18 14:55:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 3, '', '3553.4300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3553.4300', '0.0000', 'received', 'pending', 26, 26, '2022-01-18 15:43: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 (358, 'FMMS3/14/12/21/ROSAROSA/NISSI/GRACE', '2022-01-18 16:59:00', 18, 'NISSI PHARMACY', 3, '', '3280.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3280.3700', '0.0000', 'received', 'pending', 26, 26, '2022-01-18 17:11: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 (359, 'FMMS3/8/10/21/ROZA/KELMED/RABI', '2022-01-18 17:33:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '3622.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3622.1900', '0.0000', 'received', 'pending', 17, 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 (360, 'FMMS2/13/11/21/COMMD/ELOHIM/RABI', '2022-01-18 19:15:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '2958.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2958.0400', '0.0000', 'received', 'pending', 17, 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 (361, 'FMMS1/25/11/21/LAKESIDE/NISSI/RABI', '2022-01-18 20:06:00', 18, 'NISSI PHARMACY', 1, '', '3589.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3589.6200', '0.0000', 'received', 'pending', 17, 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 (362, 'FMMS3/11/6/21/ROZA/NISSI/RABI', '2022-01-19 15:46:00', 18, 'NISSI PHARMACY', 3, '', '6455.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6455.9000', '0.0000', 'received', 'pending', 17, 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 (363, 'FMMS2/13/11/21/CMMD/SHAGGYSCO/RABI', '2022-01-19 18:03:00', 23, 'SHAGGYSCO PHARMACY', 2, '', '6697.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6697.4000', '0.0000', 'received', 'pending', 17, 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 (364, 'FMMS2/18/10/21/COMMD/NISSI/RABI', '2022-01-20 13:05:00', 18, 'NISSI PHARMACY', 2, '', '3623.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3623.3700', '0.0000', 'received', 'pending', 17, 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 (365, 'Fmms2/2/12/21/ Cmmd/kelmed/Rabi', '0000-00-00 00:00:00', 16, 'KELMED PHARMACAUTICALS', 2, '', '2990.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2990.6700', '0.0000', 'received', 'pending', 17, 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 (366, 'Fmms2/11/22/cmmd/mpharma/Rabi/b', '2022-01-20 14:50:00', 27, 'MPHARMA', 2, '', '1940.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1940.1200', '0.0000', 'received', 'pending', 17, 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 (367, 'Fmms3/17/1/22/roza/fmms4/Rabi', '2022-01-20 15:26:00', 33, 'FMMS WHOLESALE', 3, '', '867.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '867.4000', '0.0000', 'received', 'pending', 17, 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 (368, 'Fmms1/17/1/22/lakeside/fmms4/Rabi', '2022-01-20 15:41:00', 33, 'FMMS WHOLESALE', 1, '', '435.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '435.0000', '0.0000', 'received', 'pending', 17, 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 (369, 'Fmms1/21/1/22/lakeside/fmms4/Rabi', '2022-01-21 17:32:00', 33, 'FMMS WHOLESALE', 1, '', '1257.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1257.5600', '0.0000', 'received', 'pending', 17, 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 (370, 'Fmms1/21/1/22/lakeside/fmms4/Rabi', '2022-01-21 17:58:00', 33, 'FMMS WHOLESALE', 1, '', '472.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '472.0000', '0.0000', 'received', 'pending', 17, 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 (371, 'Fmms3/15/1/22/Roza/nissi/RABI', '2022-01-21 18:19:00', 18, 'NISSI PHARMACY', 3, '', '4807.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4807.4900', '0.0000', 'received', 'pending', 17, 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 (372, 'FMMS1/24/1/22/OPMK/RABI', '2022-01-24 21:12:00', 14, 'OPEN MARKET', 1, '', '678.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '678.0000', '0.0000', 'received', 'pending', 17, 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 (373, 'FMMS2/24/1/22/OPMK/RABI', '2022-01-24 21:20:00', 14, 'OPEN MARKET', 2, '', '797.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '797.0000', '0.0000', 'received', 'pending', 17, 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 (374, 'FMMS3/24/1/22/OPMK/RABI', '2022-01-24 21:31:00', 14, 'OPEN MARKET', 3, '', '780.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '780.0000', '0.0000', 'received', 'pending', 17, 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 (375, 'FMMS1/25/1/22/OPK/LAKESIDE/RABI', '2022-01-26 11:58:00', 14, 'OPEN MARKET', 1, '', '482.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '482.0000', '0.0000', 'received', 'pending', 17, 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 (376, 'FMMS1/25/1/22/FMMS4/LAKESIDE/RABI', '2022-01-26 12:18:00', 33, 'FMMS WHOLESALE', 1, '', '455.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '455.1000', '0.0000', 'received', 'pending', 17, 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 (377, 'FMMS2/21/1/22/FMMS4/COMMD/RABI', '2022-01-26 12:30:00', 33, 'FMMS WHOLESALE', 2, '', '1690.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1690.4500', '0.0000', 'received', 'pending', 17, 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 (378, 'FMMS2/21/1/22/DEPENDABLE/COMMD/RABI', '2022-01-26 13:08:00', 24, 'DEPENDABLE', 2, '', '247.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '247.0000', '0.0000', 'received', 'pending', 17, 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 (379, 'FMMS2/25/1/22/COMMD/OPMK/RABI', '2022-01-26 13:24:00', 14, 'OPEN MARKET', 2, '', '612.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '612.6000', '0.0000', 'received', 'pending', 17, 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 (380, 'Fmms1/26/22/nissi/lakeside/Rabi', '2022-01-27 12:08:00', 18, 'NISSI PHARMACY', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 17, 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 (381, 'FMMS3/21/1/22/ROZA/DEPENDABLE/RABI', '2022-01-27 16:40:00', 24, 'DEPENDABLE', 3, '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', '0.0000', 'received', 'pending', 17, 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 (382, 'FMMS3/8/1/22/FMMS4/ROZA/RABI', '2022-01-27 17:00:00', 33, 'FMMS WHOLESALE', 3, '', '46.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.3500', '0.0000', 'received', 'pending', 17, 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 (383, 'FMMS3/25/1/22/FMMS4/ROZA/RABI', '2022-01-28 10:30:00', 33, 'FMMS WHOLESALE', 3, '', '108.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '108.5000', '0.0000', 'received', 'pending', 17, 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 (384, 'FMMS2/25/1/22/FMMS4/RABI', '2022-01-28 10:52:00', 33, 'FMMS WHOLESALE', 2, '', '453.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '453.0500', '0.0000', 'received', 'pending', 17, 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 (385, 'FMMS2/15/1/22/COMMD/NISSI', '2022-01-28 11:21:00', 18, 'NISSI PHARMACY', 2, '', '1884.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1884.7400', '0.0000', 'received', 'pending', 17, 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 (386, 'FMMS1/21/1/22/FMMS4/LAKESIDE/RABI', '2022-01-28 12:16:00', 33, 'FMMS WHOLESALE', 1, '', '360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '360.0000', '0.0000', 'received', 'pending', 17, 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 (387, 'FMMS1/15/1/22/LAKESIDE/NISSI/RABI', '2022-01-31 09:37:00', 18, 'NISSI PHARMACY', 1, '', '102.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '102.6000', '0.0000', 'received', 'pending', 17, 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 (388, 'FMMS/31/1/22/LAKESIDE/NISSI/RABI', '2022-01-31 13:52:00', 18, 'NISSI PHARMACY', 1, '', '94.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '94.0000', '0.0000', 'received', 'pending', 17, 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 (389, 'FMMS/31/1/22/COMMD/NISSI/RABI', '2022-01-31 13:55:00', 18, 'NISSI PHARMACY', 2, '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', '0.0000', 'received', 'pending', 17, 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 (390, 'FMMS/31/1/22/ROZA/NISSI/RABI', '2022-01-31 13:56:00', 18, 'NISSI PHARMACY', 3, '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', '0.0000', 'received', 'pending', 17, 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 (391, 'FMMS2/26/1/22/COMMD/OPMK/RABI', '2022-01-31 13:58:00', 14, 'OPEN MARKET', 2, '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.0000', '0.0000', 'received', 'pending', 17, 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 (392, 'FMMS3/26/1/22/ROZA/OPMK/RABI', '2022-01-31 14:01:00', 14, 'OPEN MARKET', 3, '', '347.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '347.5000', '0.0000', 'received', 'pending', 17, 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 (393, 'FMMS1/15/1/22/LAKESIDE/NISSI/RABI', '2022-02-01 11:03:00', 18, 'NISSI PHARMACY', 1, '', '16.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16.4800', '0.0000', 'received', 'pending', 17, 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 (394, '1/2/22/ROSA/OPENMKT', '2022-02-01 22:50:00', 14, 'OPEN MARKET', 3, '', '230.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '230.6000', '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 (395, '1/2/22/ROSA/FMM4', '2022-02-02 01:15:00', 33, 'FMMS WHOLESALE', 3, '', '230.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '230.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 (396, 'FMMS1/1/2/22/LAKESIDE/NISSI/RABI', '2022-02-02 18:01:00', 18, 'NISSI PHARMACY', 1, '', '4260.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4260.3200', '0.0000', 'received', 'pending', 17, 17, '2022-02-18 11:20: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 (397, 'FMMS1/1/2/22/LAKESIDE/FMMS4/RABI', '2022-02-04 10:03:00', 33, 'FMMS WHOLESALE', 1, '', '715.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '715.8000', '0.0000', 'received', 'pending', 17, 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 (398, 'FMMS2/02/2/22/COMM/FMMS4', '2022-02-06 17:31:00', 33, 'FMMS WHOLESALE', 2, '', '217.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '217.0000', '0.0000', 'received', 'pending', 4, 4, '2022-02-06 19:30: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 (399, 'FMMS3/2/2/22/ROSA/FMMS4', '2022-02-06 19:30:00', 33, 'FMMS WHOLESALE', 3, '', '183.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '183.8300', '0.0000', 'received', 'pending', 4, 4, '2022-02-06 20:12: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 (400, 'FMMS1/7/2/22/KELMED/LAKESIDE/RABI', '2022-02-08 10:11:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '674.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '674.6500', '0.0000', 'received', 'pending', 17, 17, '2022-02-14 15:47: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 (401, 'FMMS1/7/2/22/OPMK/LAKESIDE/RABI', '2022-02-08 11:06:00', 14, 'OPEN MARKET', 1, '', '509.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '509.8000', '0.0000', 'received', 'pending', 17, 17, '2022-02-14 17:52: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 (402, 'FMMS2/2/2/22/COMMD/FMMS4/RABI', '2022-02-08 11:58:00', 33, 'FMMS WHOLESALE', 2, '', '362.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '362.5500', '0.0000', 'received', 'pending', 17, 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 (403, 'FMMS2/2/2/22/COMMD/NISSI/RABI', '2022-02-08 12:15:00', 18, 'NISSI PHARMACY', 2, '', '410.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.8000', '0.0000', 'received', 'pending', 17, 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 (404, 'FMMS1/08/2/22/LAKESIDE/FMMS4/RABI', '2022-02-09 16:07:00', 33, 'FMMS WHOLESALE', 1, '', '2089.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2089.2300', '0.0000', 'received', 'pending', 17, 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 (405, 'FMMS3/2/2/22/ROSA/KELMED', '2022-02-10 11:18:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '1298.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1298.8200', '0.0000', 'received', 'pending', 4, 4, '2022-02-10 20:03: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 (406, 'FMM2/7/2/22/COMM/KELMED', '2022-02-10 12:04:00', 16, 'KELMED PHARMACAUTICALS', 2, '', '229.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '229.7500', '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 (407, 'FMMS 3/2/7/22/ROSA/FMMS4', '2022-02-10 12:22:00', 33, 'FMMS WHOLESALE', 3, '', '733.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '733.6500', '0.0000', 'received', 'pending', 4, 4, '2022-02-10 20:35: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 (408, 'FMMS1/07/02/22/LAKESIDE/FMMS4/RABI', '2022-02-11 10:24:00', 33, 'FMMS WHOLESALE', 1, '', '561.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '561.6400', '0.0000', 'received', 'pending', 17, 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 (409, 'FMMS3/09/02/22/ROZA/FMMS4/RABI', '2022-02-11 10:46:00', 33, 'FMMS WHOLESALE', 3, '', '223.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '223.1700', '0.0000', 'received', 'pending', 17, 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 (410, 'FMMS1/10/02/22/LAKESIDE/FMMS4/RABI', '2022-02-11 11:11:00', 33, 'FMMS WHOLESALE', 1, '', '1892.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1892.9900', '0.0000', 'received', 'pending', 17, 4, '2022-02-16 07: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 (411, 'FMMS2/10/02/22/COMMD/NISSI/RABI', '2022-02-11 12:41:00', 18, 'NISSI PHARMACY', 2, '', '319.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '319.3800', '0.0000', 'received', 'pending', 17, 4, '2022-02-19 21: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 (412, 'FMMS3/8/2/2022/ROSA/NISSI/FMMS4', '2022-02-12 02:03:00', 18, 'NISSI PHARMACY', 3, '', '1738.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1738.7000', '0.0000', 'received', 'pending', 4, 4, '2022-02-12 11:04: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 (413, 'FMMS3/7/2/22/ROSA/FMMS4', '2022-02-12 04:12:00', 33, 'FMMS WHOLESALE', 3, '', '1065.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1065.5300', '0.0000', 'received', 'pending', 4, 4, '2022-02-19 21:26: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 (414, 'FMMS1/15/2/22/FMMS4/LAKESIDE/RABI', '2022-02-16 13:53:00', 33, 'FMMS WHOLESALE', 1, '', '1543.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1543.8400', '0.0000', 'received', 'pending', 17, 17, '2022-02-24 15:40: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 (415, 'FMMS/19/2/22/FMMS4/LAKESIDE/RABI', '2022-02-25 09:15:00', 33, 'FMMS WHOLESALE', 1, '', '1278.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1278.1000', '0.0000', 'received', 'pending', 17, 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 (416, 'FMMS/22/2/22/FMMS4/LAKESIDE/RABI/A&B', '2022-02-25 10:00:00', 33, 'FMMS WHOLESALE', 1, '', '2479.9300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2479.9300', '0.0000', 'received', 'pending', 17, 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 (417, 'FMMS1/26/2/22/FMMS4/LAKESIDE/RABI/A&B', '2022-02-28 12:36:00', 33, 'FMMS WHOLESALE', 1, '', '1790.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1790.6500', '0.0000', 'received', 'pending', 17, 17, '2022-03-03 11:56: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 (418, 'FMMS1/28/2/22/TINATETT HERBL/LAKESIDE/RABI', '2022-02-28 14:55:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 1, '', '393.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '393.4000', '0.0000', 'received', 'pending', 17, 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 (419, 'FMMS1/28/2/22/KELMED/LAKESIDE/RABI', '2022-02-28 15:07:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '949.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '949.0500', '0.0000', 'received', 'pending', 17, 17, '2022-03-04 15:58:49', '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 (420, 'FMMS2/22/2/22/FMMS4/COMMDS/RABI/A&B', '2022-03-01 11:01:00', 33, 'FMMS WHOLESALE', 2, '', '1878.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1878.1700', '0.0000', 'received', 'pending', 17, 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 (421, 'FMMS2/28/2/22/COMMDS/FMMS4/RABI/A&B', '2022-03-01 12:08:00', 33, 'FMMS WHOLESALE', 2, '', '2047.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2047.6100', '0.0000', 'received', 'pending', 17, 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 (422, 'FMMS3/22/2/22/ROZA/OPMK/RABI/A&B', '2022-03-03 12:29:00', 14, 'OPEN MARKET', 3, '', '673.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '673.6200', '0.0000', 'received', 'pending', 17, 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 (423, 'FMMS1/O5/03/22/LAKESIDE/FMMS4/RABI', '2022-03-06 13:28:00', 33, 'FMMS WHOLESALE', 1, '', '1762.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1762.9600', '0.0000', 'received', 'pending', 17, 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 (424, 'FMMS1 /O5/03/22/LAKESIDE/ELOHIM /RABI/A&B', '2022-03-06 14:16:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 1, '', '3638.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3638.2600', '0.0000', 'received', 'pending', 17, 17, '2022-03-06 16:52: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 (425, 'FMMS3/26/1/22/FMMS4/ROZA/RABI/A&B', '2022-03-06 15:39:00', 33, 'FMMS WHOLESALE', 3, '', '2622.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2622.5300', '0.0000', 'received', 'pending', 17, 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 (426, 'FMMS3/25/2/22/FMMS4/ROZA/RABI/A&B', '2022-03-06 16:56:00', 33, 'FMMS WHOLESALE', 3, '', '5026.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5026.9100', '0.0000', 'received', 'pending', 17, 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 (427, 'FMMS1/05/03/22/ROZA/ELOHIM/RABI', '2022-03-11 09:30:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 3, '', '2283.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2283.6400', '0.0000', 'received', 'pending', 17, 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 (428, 'FMMS1/12/03/22/LAKESIDE/FMMS4/RABI/A&B', '2022-03-13 14:04:00', 33, 'FMMS WHOLESALE', 1, '', '5258.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5258.8300', '0.0000', 'received', 'pending', 17, 17, '2022-03-13 20:26: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 (429, 'FMMS3/05/03/22/FMMS4/ROZA/RABI/A&B', '2022-03-13 15:53:00', 33, 'FMMS WHOLESALE', 3, '', '3346.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3346.9900', '0.0000', 'received', 'pending', 17, 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 (430, 'FMM1/14/03/22/OPMK/LAKESIDE/RABI', '2022-03-14 13:37:00', 14, 'OPEN MARKET', 1, '', '1746.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1746.9500', '0.0000', 'received', 'pending', 17, 4, '2022-03-15 22:57: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 (431, 'FMMS3/22/02/OPMK/ROZA/RABI/A&B', '2022-03-14 15:04:00', 14, 'OPEN MARKET', 3, '', '1040.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1040.8600', '0.0000', 'received', 'pending', 17, 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 (432, 'FMMS3/14/3/22/open mkt/ROSA', '2022-03-14 18:07:00', 14, 'OPEN MARKET', 3, '', '295.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '295.1000', '0.0000', 'received', 'pending', 4, 4, '2022-03-15 12:27: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 (433, 'FMMS1/16/03/22/LAKESIDE/FMMS4/RABI/A&B', '2022-03-16 16:26:00', 33, 'FMMS WHOLESALE', 1, '', '3202.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3202.5100', '0.0000', 'received', 'pending', 17, 17, '2022-03-19 14:47: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 (434, 'FMMS/05/03/22/COMMD/ELOHIM/RABI', '2022-03-16 17:08:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '1130.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1130.7300', '0.0000', 'received', 'pending', 17, 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 (435, 'Fmms3/15/03/22/Roza/Fmms4/Rabi/A&B', '2022-03-18 11:52:00', 33, 'FMMS WHOLESALE', 3, '', '2198.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2198.2500', '0.0000', 'received', 'pending', 17, 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 (436, 'Fmms3/16/03/22/Roza/Fmms4/Rabi/A&B', '2022-03-18 12:21:00', 33, 'FMMS WHOLESALE', 3, '', '1991.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1991.0000', '0.0000', 'received', 'pending', 17, 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 (437, 'Fmms3/07/02/22/commdos/Fmms4/Rabi/A&B', '2022-03-18 13:13:00', 33, 'FMMS WHOLESALE', 2, '', '1628.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1628.8900', '0.0000', 'received', 'pending', 17, 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 (438, 'Fmms2/15/03/22/commdos/Fmms4/Rabi/A&B', '2022-03-18 13:37:00', 33, 'FMMS WHOLESALE', 2, '', '3412.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3412.6800', '0.0000', 'received', 'pending', 17, 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 (439, 'Fmms3/28/03/22/Roza/Fmms4/Rabi/A&B', '2022-03-18 14:41:00', 33, 'FMMS WHOLESALE', 3, '', '1614.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1614.4200', '0.0000', 'received', 'pending', 17, 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 (440, 'FMMS1/23/O3/22/LAKESIDE/OPMK/RABI', '2022-03-24 12:59:00', 14, 'OPEN MARKET', 1, '', '367.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '367.5800', '0.0000', 'received', 'pending', 17, 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 (441, 'FMMS1/23/03/22/FMMS4/LAKESIDE/RABI/A&B', '2022-03-24 13:09:00', 33, 'FMMS WHOLESALE', 1, '', '3378.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3378.8100', '0.0000', 'received', 'pending', 17, 17, '2022-03-24 14:37: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 (442, 'FMMS2/24/3/22/ COMM/OPEN MKT', '2022-03-24 13:27:00', 14, 'OPEN MARKET', 2, '', '2518.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2518.6000', '0.0000', 'received', 'pending', 4, 4, '2022-04-23 19:46: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 (443, 'FMMS2/23/03/22/COMMDOS/FMMS4/RABI', '2022-03-24 13:39:00', 33, 'FMMS WHOLESALE', 2, '', '2156.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2156.7900', '0.0000', 'received', 'pending', 17, 4, '2022-03-29 21:07: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 (444, 'FMMS3/24/3/22/ROSA/OPEN MKT', '2022-03-24 14:25:00', 14, 'OPEN MARKET', 3, '', '2406.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2406.4900', '0.0000', 'received', 'pending', 4, 4, '2022-03-30 17:27: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 (445, 'FMMS3/23/03/22/FMMS4/ROZA/RABI', '2022-03-24 14:38:00', 33, 'FMMS WHOLESALE', 3, '', '3031.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3031.8800', '0.0000', 'received', 'pending', 17, 4, '2022-03-29 21:06: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 (446, 'FMMS1/25/03/22/LAKESIDE/FMMS4/A&B/RABI', '2022-03-29 16:03:00', 33, 'FMMS WHOLESALE', 1, '', '4101.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4101.2400', '0.0000', 'received', 'pending', 17, 17, '2022-04-04 17:47: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 (447, 'Fmms1/04/04/22/Lakeside/open market/Rabi', '2022-04-05 10:14:00', 14, 'OPEN MARKET', 1, '', '1049.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1049.4400', '0.0000', 'received', 'pending', 17, 17, '2022-04-05 17:07: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 (448, 'FMMS1/04/04/22/LAKESIDE/FMMS4/RABI', '2022-04-05 13:58:00', 33, 'FMMS WHOLESALE', 1, '', '3248.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3248.4800', '0.0000', 'received', 'pending', 17, 17, '2022-04-08 19:51: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 (449, 'FMMS3/05/04/OPMK/ROZA/RABI/A&B', '2022-04-05 17:07:00', 14, 'OPEN MARKET', 3, '', '3557.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3557.7800', '0.0000', 'received', 'pending', 17, 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 (450, 'FMMS2/28/04/22/FMMS4/COMMDS/RABI/A&B', '2022-04-05 19:04:00', 33, 'FMMS WHOLESALE', 2, '', '1014.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1014.4800', '0.0000', 'received', 'pending', 17, 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 (451, 'FMMS1/08/04/22/FMMS4/LAKESIDE/RABI', '2022-04-10 18:00:00', 33, 'FMMS WHOLESALE', 1, '', '3703.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3703.5300', '0.0000', 'received', 'pending', 17, 17, '2022-04-11 13:03: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 (452, 'FMMS2/04/04/22/COMMDOS/FMMS4/RABI/A&B', '2022-04-11 09:27:00', 33, 'FMMS WHOLESALE', 2, '', '1918.6200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1918.6200', '0.0000', 'received', 'pending', 17, 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 (453, 'FMMS3/07/04/22/FMMS4/ROZA/RABI', '2022-04-11 13:03:00', 33, 'FMMS WHOLESALE', 3, '', '974.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '974.5400', '0.0000', 'received', 'pending', 17, 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 (454, 'FMMS1/11/04/22/FMMS4/LAKESIDE/RABI', '2022-04-12 18:54:00', 33, 'FMMS WHOLESALE', 1, '', '3891.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3891.4500', '0.0000', 'received', 'pending', 17, 17, '2022-04-22 12:49: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 (455, 'FMMS3/16/4/22/ROROSA/OPEN MKT', '2022-04-17 00:01:00', 14, 'OPEN MARKET', 3, '', '832.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '832.0500', '0.0000', 'received', 'pending', 4, 4, '2022-04-19 19:43: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 (456, 'FMMS1/19/O4/22/LAKESIDE/FMMS4/RABI', '2022-04-20 09:05:00', 33, 'FMMS WHOLESALE', 1, '', '4336.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4336.5900', '0.0000', 'received', 'pending', 17, 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 (457, 'FMMS3/19/4/22/ROSA/FMMS4 WHOLESALE', '2022-04-21 12:49:00', 33, 'FMMS WHOLESALE', 3, '', '1764.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1764.7900', '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 (458, 'FMMS2/07/04/22/COMMDOS/FMMS/RABI/A&B', '2022-04-22 10:20:00', 33, 'FMMS WHOLESALE', 2, '', '4058.4300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4058.4300', '0.0000', 'received', 'pending', 17, 4, '2022-04-23 19:53: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 (459, 'FMMS1/23/4/22/LAKESIDE/OPENMKT', '2022-04-23 19:48:00', 14, 'OPEN MARKET', 1, '', '837.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '837.0000', '0.0000', 'received', 'pending', 4, 17, '2022-04-24 17:39: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 (460, 'FMMS1/22/04/22/FMMS4/LAKESIDE/RABI', '2022-04-24 18:28:00', 33, 'FMMS WHOLESALE', 1, '', '1182.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1182.2300', '0.0000', 'received', 'pending', 17, 17, '2022-04-26 10:06: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 (461, 'Fmms1/23/04/22/lakeside/Dependable  Enterprise/Rabi ', '2022-04-25 10:17:00', 24, 'DEPENDABLE', 1, '', '796.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '796.8500', '0.0000', 'received', 'pending', 17, 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 (462, 'FMMS3/12/04/22/ROZA/FMMS4/RABI/A&B', '2022-04-26 10:07:00', 33, 'FMMS WHOLESALE', 3, '', '4061.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4061.3900', '0.0000', 'received', 'pending', 17, 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 (463, 'FMMS2/21/04/22/COMMDOS/FMMS4/RABI/A&B', '2022-04-26 11:44:00', 33, 'FMMS WHOLESALE', 2, '', '3440.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3440.2400', '0.0000', 'received', 'pending', 17, 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 (464, 'FMMS2/25/04/22/COMMANDOS/FMMS4/RABI/A&B', '2022-04-26 15:22:00', 33, 'FMMS WHOLESALE', 2, '', '3034.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3034.2900', '0.0000', 'received', 'pending', 17, 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 (465, 'FMMS2/23/04/22/DEPENDABLE/COMMANDOS/RABI', '2022-04-26 17:01:00', 24, 'DEPENDABLE', 2, '', '595.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '595.7000', '0.0000', 'received', 'pending', 17, 4, '2022-05-04 01:20: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 (466, 'FMMS1/26/04/22/LAKESIDE/FMMS4/RABI', '2022-04-27 10:26:00', 33, 'FMMS WHOLESALE', 1, '', '4254.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4254.8800', '0.0000', 'received', 'pending', 17, 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 (467, 'Fmms1/27/04/22/openmarket/lakeside/Rabi', '2022-04-27 19:17:00', 14, 'OPEN MARKET', 1, '', '1101.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1101.0000', '0.0000', 'received', 'pending', 17, 17, '2022-05-05 21:21: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 (468, 'FMMS/29/4/22/ROSA/OPENMKT', '2022-04-29 18:45:00', 14, 'OPEN MARKET', 3, '', '1118.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1118.9000', '0.0000', 'received', 'pending', 4, 4, '2022-04-29 19:36: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 (469, 'FMMS3/26/04/22/FMMS4/ROZA/RABI/A&B', '2022-05-03 09:24:00', 33, 'FMMS WHOLESALE', 3, '', '8150.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8150.8300', '0.0000', 'received', 'pending', 17, 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 (470, 'FMMS2/5/22/COMM/OPENMKT', '2022-05-04 23:02:00', 14, 'OPEN MARKET', 2, '', '690.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '690.1000', '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 (471, 'FMMS3/5/5/22/ROSA/OPENMKT', '2022-05-04 23:39:00', 14, 'OPEN MARKET', 3, '', '1330.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1330.3200', '0.0000', 'received', 'pending', 4, 4, '2022-06-04 23:00: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 (472, 'FMMS1/03/5/22/LAKESIDSE/FMMS4/RABI', '2022-05-06 17:03:00', 33, 'FMMS WHOLESALE', 1, '', '2939.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2939.6300', '0.0000', 'received', 'pending', 17, 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 (473, 'FMMS3/23/04/22/DEPENDABLE/ROZA/RABI', '2022-05-06 18:14:00', 24, 'DEPENDABLE', 3, '', '758.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '758.9000', '0.0000', 'received', 'pending', 17, 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 (474, 'FMMS1/09/05/22/FMMS4/LAKESIDE/RABI', '2022-05-10 15:17:00', 33, 'FMMS WHOLESALE', 1, '', '8664.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8664.3200', '0.0000', 'received', 'pending', 17, 17, '2022-05-19 19:51: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 (475, 'FMMS3/10/5/22/ROSA/OPEN MKT', '2022-05-11 08:56:00', 14, 'OPEN MARKET', 3, '', '1008.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1008.6300', '0.0000', 'received', 'pending', 4, 4, '2022-05-11 11:34:03', '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 (476, 'FMMS2/11/5/22/COMM/OPEN MKT', '2022-05-11 10:49:00', 14, 'OPEN MARKET', 2, '', '1165.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1165.2300', '0.0000', 'received', 'pending', 4, 4, '2022-05-11 11:36:15', '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 (477, 'Fmms2/10/05/22/commdos/Fmms4/Rabi/A&B', '2022-05-11 19:58:00', 33, 'FMMS WHOLESALE', 2, '', '4623.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4623.5000', '0.0000', 'received', 'pending', 17, 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 (478, 'FMMS3/09/05/22/ROZA/FMMS4/RABI', '2022-05-12 19:40:00', 33, 'FMMS WHOLESALE', 3, '', '4913.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4913.9400', '0.0000', 'received', 'pending', 17, 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 (479, 'Fmms3/03/05/22/Roza/Fmms4/Rabi/A&B', '2022-05-13 15:33:00', 33, 'FMMS WHOLESALE', 3, '', '6413.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6413.1400', '0.0000', 'received', 'pending', 17, 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 (480, 'Fmms3/03/05/22/commdos/Fmms4/Rabi', '2022-05-16 10:25:00', 33, 'FMMS WHOLESALE', 2, '', '4171.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4171.5600', '0.0000', 'received', 'pending', 17, 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 (481, 'Fmms3/16/05/22/Ro/market/Rabi/Rabi ', '2022-05-16 14:39:00', 14, 'OPEN MARKET', 3, '', '864.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '864.4000', '0.0000', 'received', 'pending', 17, 4, '2022-05-29 07: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 (482, 'Fmms2/17/05/22/commdos/Fmms4/Rabi', '2022-05-19 16:27:00', 33, 'FMMS WHOLESALE', 2, '', '2069.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2069.3300', '0.0000', 'received', 'pending', 17, 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 (483, 'Fmms3/17/05/22/Roza/Fmms4/Rabi', '2022-05-19 19:07:00', 33, 'FMMS WHOLESALE', 3, '', '5509.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5509.5200', '0.0000', 'received', 'pending', 17, 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 (484, 'FMMS1/17/05/22/FMMS4/LAKESIDE/RABI', '2022-05-23 10:12:00', 33, 'FMMS WHOLESALE', 1, '', '4876.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4876.6000', '0.0000', 'received', 'pending', 17, 17, '2022-05-23 17:21: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 (485, 'Fmms2/23/05/22/commdos/Fmms4/Rabi', '2022-05-24 07:19:00', 33, 'FMMS WHOLESALE', 2, '', '4634.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4634.2600', '0.0000', 'received', 'pending', 17, 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 (486, 'FMMS1/24/05/22/Kelmed Pharm/LAKESIdE/RABI/A&B', '2022-05-24 18:18:00', 33, 'FMMS WHOLESALE', 1, '', '1255.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1255.9500', '0.0000', 'received', 'pending', 17, 17, '2022-05-27 21:23:15', '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 (487, 'FMMS2/24/05/22/COMM/OPENMKT', '2022-05-26 11:26:00', 14, 'OPEN MARKET', 2, '', '407.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '407.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 (488, 'Fmms3/24/05/22/Roza/Fmms4/Rabi/A&B', '2022-05-27 10:01:00', 33, 'FMMS WHOLESALE', 3, '', '8242.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8242.8900', '0.0000', 'received', 'pending', 17, 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 (489, 'FMMS1/27/05/22/FMMS4/LAKESIDE/RABI/A&B', '2022-05-28 07:33:00', 33, 'FMMS WHOLESALE', 1, '', '8235.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8235.0600', '0.0000', 'received', 'pending', 17, 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 (490, 'FMMS1/31/05/22/FMMS4/LAKESIDE/RABI', '2022-06-01 12:33:00', 33, 'FMMS WHOLESALE', 1, '', '5351.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5351.8000', '0.0000', 'received', 'pending', 17, 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 (491, 'Fmms2/26/05/22/commdos/Fmms4/Rabi', '2022-06-01 14:10:00', 33, 'FMMS WHOLESALE', 2, '', '2073.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2073.2400', '0.0000', 'received', 'pending', 17, 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 (492, 'FMMS2/02/06/22/COMM/OPENMKT', '2022-06-02 20:38:00', 14, 'OPEN MARKET', 2, '', '1607.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1607.6500', '0.0000', 'received', 'pending', 4, 4, '2022-06-04 22:55: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 (493, 'Fmms2/02/06/22/commdos/Fmms4/Rabi/A&B', '2022-06-06 09:27:00', 33, 'FMMS WHOLESALE', 2, '', '7544.1300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7544.1300', '0.0000', 'received', 'pending', 17, 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 (494, 'FMMS1/06/06/22/FMMS4/LAKESIDE/RABI', '2022-06-08 16:52:00', 33, 'FMMS WHOLESALE', 1, '', '4789.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4789.7800', '0.0000', 'received', 'pending', 17, 17, '2022-06-08 19:42: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 (495, 'FMMS3/02/06/22/FMMS4/ROZA/RABI', '2022-06-08 17:01:00', 33, 'FMMS WHOLESALE', 3, '', '5035.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5035.8300', '0.0000', 'received', 'pending', 17, 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 (496, 'Fmms1/13/06/22/Lakeside/open market/Rabi', '2022-06-13 13:51:00', 14, 'OPEN MARKET', 1, '', '2236.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2236.4600', '0.0000', 'received', 'pending', 17, 17, '2022-06-17 15:24: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 (497, 'FMMS1/13/06/22/LAKESIDE/FMMS4/RABI/A&B', '2022-06-14 17:16:00', 33, 'FMMS WHOLESALE', 1, '', '5450.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5450.3900', '0.0000', 'received', 'pending', 17, 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 (498, 'FMMS 3/13/6/22/ROSA/OPEN MKT', '2022-06-14 22:51:00', 14, 'OPEN MARKET', 3, '', '596.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '596.2500', '0.0000', 'received', 'pending', 4, 4, '2022-06-15 22:04: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 (499, 'FMMS1/20/06/22/KELMED/LAKESIDE/RABI', '2022-06-21 15:28:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '739.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '739.0200', '0.0000', 'received', 'pending', 17, 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 (500, 'FMMS1/20/06/22/FMMS4/LAKESIDE/RABI/A&B', '2022-06-21 17:50:00', 33, 'FMMS WHOLESALE', 1, '', '5715.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5715.5100', '0.0000', 'received', 'pending', 17, 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 (501, 'FMMS3/09/06/22/FMMS4/ROZA/RABI/A&B', '2022-06-22 16:32:00', 33, 'FMMS WHOLESALE', 3, '', '11583.2600', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '11583.2600', '0.0000', 'received', 'pending', 17, NULL, NULL, '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 (502, 'FMMM3/22/06/22/ROSA/OPENMKT', '2022-06-23 08:55:00', 14, 'OPEN MARKET', 3, '', '1992.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1992.5100', '0.0000', 'received', 'pending', 4, 4, '2022-06-27 16:45: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 (503, 'FMMS2/22/6/22/COMM/OPENMKT', '2022-06-23 09:15:00', 14, 'OPEN MARKET', 2, '', '1315.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1315.5500', '0.0000', 'received', 'pending', 4, 4, '2022-07-06 22:56: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 (504, 'FMMS2/20/06/22/COMMANDOS/FMMS4/RABI/A&B', '2022-06-25 10:43:00', 33, 'FMMS WHOLESALE', 2, '', '5042.0600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5042.0600', '0.0000', 'received', 'pending', 17, 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 (505, 'FMMS2/28/06/22/OPENMKT/COMM', '2022-06-28 18:53:00', 14, 'OPEN MARKET', 2, '', '1525.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1525.0000', '0.0000', 'received', 'pending', 4, 4, '2022-07-15 12:18: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 (506, 'FMMS1/28/6/22/OPENMKT/LAKESIDE', '2022-06-28 19:34:00', 14, 'OPEN MARKET', 1, '', '407.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '407.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 (507, 'FMMS3/22/06/22/ROZA/FMMS4/RABI/A&B', '2022-06-29 18:12:00', 33, 'FMMS WHOLESALE', 3, '', '9646.4600', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '9646.4600', '0.0000', 'received', 'pending', 17, NULL, NULL, '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 (508, 'FMMS3/4/7/22/ROSA/OPENMKT', '2022-07-04 15:10:00', 14, 'OPEN MARKET', 3, '', '4662.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4662.3200', '0.0000', 'received', 'pending', 4, 4, '2022-07-23 21:04: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 (509, 'FMMS1/04/7/22/LAKESIDE/FMMS4/RABI/A&B', '2022-07-06 17:59:00', 33, 'FMMS WHOLESALE', 1, '', '8358.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8358.8000', '0.0000', 'received', 'pending', 17, 17, '2022-07-18 17:00: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 (510, 'FMMS2/10/6/22/COMMANDOS/FMMS4/RABI/A&B', '2022-07-11 19:37:00', 33, 'FMMS WHOLESALE', 2, '', '7492.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7492.1700', '0.0000', 'received', 'pending', 17, 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 (511, 'FMMS2/04/7/22/COMMANDOS/FMMS4/RABI', '2022-07-14 18:01:00', 33, 'FMMS WHOLESALE', 2, '', '5500.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5500.3700', '0.0000', 'received', 'pending', 17, 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 (512, 'FMMS1/13/07/22/LAKESIDE/FMMS4/RABI/A&B', '2022-07-18 19:04:00', 33, 'FMMS WHOLESALE', 1, '', '9157.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9157.8100', '0.0000', 'received', 'pending', 17, 17, '2022-07-21 16:40:40', '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 (513, 'FMMS1/20/07/22/LAKESIDE/FMMS4/RABI/A&B', '2022-07-21 20:45:00', 33, 'FMMS WHOLESALE', 1, '', '5310.9200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5310.9200', '0.0000', 'received', 'pending', 17, 17, '2022-07-29 14:32: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 (514, 'FMMS3/18/07/22/ROZA/FMMS4/RABI', '2022-07-22 20:43:00', 33, 'FMMS WHOLESALE', 3, '', '1565.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1565.8300', '0.0000', 'received', 'pending', 17, 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 (515, 'FMMS2/05/07/22/COMMANDOS/FMMS4/RABI/A&B', '2022-07-22 21:22:00', 33, 'FMMS WHOLESALE', 2, '', '1401.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1401.5000', '0.0000', 'received', 'pending', 17, 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 (516, 'FMMS1/25/07/OPENMK/LAKESIDE/RABI', '2022-07-25 17:09:00', 14, 'OPEN MARKET', 1, '', '617.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '617.7000', '0.0000', 'received', 'pending', 17, 17, '2022-07-29 17:41: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 (517, 'FMMS3/15/07/22/ROZA/FMMS4/RABI/A&B', '2022-07-28 13:06:00', 33, 'FMMS WHOLESALE', 3, '', '4827.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4827.4800', '0.0000', 'received', 'pending', 17, 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 (518, 'FMMS2/25/07/22/COMMANDOS/FMMS4/RABI/A&B', '2022-07-29 11:46:00', 33, 'FMMS WHOLESALE', 2, '', '11291.1400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11291.1400', '0.0000', 'received', 'pending', 17, 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 (519, 'FMMS3/02/08/22/ROZA/FMMS4/RABI/A&B', '2022-08-04 11:28:00', 33, 'FMMS WHOLESALE', 3, '', '12100.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12100.8300', '0.0000', 'received', 'pending', 17, 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 (520, 'FMMS1/29/7/22/LAKESIDE/FMMS4/RABI/A&B', '2022-08-09 10:24:00', 33, 'FMMS WHOLESALE', 1, '', '9326.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9326.6000', '0.0000', 'received', 'pending', 17, 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 (521, 'FMMS2/03/08/22/COMMANDOS/OPENMK/RABIBI', '2022-08-09 13:36:00', 14, 'OPEN MARKET', 2, '', '1595.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1595.7600', '0.0000', 'received', 'pending', 17, 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 (522, 'FMMS3/03/08/22/OPENMK/ROZA/RABI', '2022-08-09 14:19:00', 14, 'OPEN MARKET', 3, '', '1714.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1714.9400', '0.0000', 'received', 'pending', 17, 4, '2022-08-24 23:07: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 (523, 'Fmms1/10/08/22/open market/lakeside/Rabi', '2022-08-10 13:34:00', 14, 'OPEN MARKET', 1, '', '848.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '848.2400', '0.0000', 'received', 'pending', 17, 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 (524, 'FMMS1/08/08/22/LAKESIDE/FMMS4/RABI/A&B', '2022-08-11 19:00:00', 33, 'FMMS WHOLESALE', 1, '', '3282.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3282.5800', '0.0000', 'received', 'pending', 17, 17, '2022-08-19 16:37: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 (525, 'FMMS 3/22/8/22 /OPENMKT/ROSA/STELLA', '2022-08-22 18:40:00', 33, 'FMMS WHOLESALE', 3, '', '2325.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2325.8900', '0.0000', 'received', 'pending', 4, 4, '2022-08-31 13:30: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 (526, 'FMMS2/22/8/22/OPENMKT/COMM/STELLA', '2022-08-22 19:40:00', 14, 'OPEN MARKET', 2, '', '1101.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1101.0000', '0.0000', 'received', 'pending', 4, 4, '2022-08-22 20:25: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 (527, 'FMMS2/22/8/22/FMM4/COMM/STELLA', '2022-08-22 20:59:00', 33, 'FMMS WHOLESALE', 2, '', '1442.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1442.5000', '0.0000', 'received', 'pending', 4, 4, '2022-08-27 20: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 (528, 'FMMS1/16/08/22/LAKESIDE/FMMS4/RABI/A&B', '2022-08-23 13:42:00', 33, 'FMMS WHOLESALE', 1, '', '8781.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8781.8100', '0.0000', 'received', 'pending', 17, 17, '2022-08-31 20:42: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 (529, 'FMMS2/10/08/22/COMMANDOS/FMMS4/RABI', '2022-08-30 19:47:00', 33, 'FMMS WHOLESALE', 2, '', '8290.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8290.1800', '0.0000', 'received', 'pending', 17, 4, '2022-08-31 15: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 (530, 'FMMS/26/8/22/ROSA/FMMS4/STELLA', '2022-08-31 13:31:00', 33, 'FMMS WHOLESALE', 3, '', '2427.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2427.9900', '0.0000', 'received', 'pending', 4, 4, '2022-08-31 15:06: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 (531, 'FMMS1/26/08/22/LAKESIDE/FMMS4/RABI/A&B', '2022-09-01 18:29:00', 33, 'FMMS WHOLESALE', 1, '', '5095.7400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5095.7400', '0.0000', 'received', 'pending', 17, 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 (532, 'FMMS1/30/08/22/LAKESIDE/FMMS4/RABI/A&B', '2022-09-01 21:35:00', 33, 'FMMS WHOLESALE', 1, '', '3121.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3121.2100', '0.0000', 'received', 'pending', 17, 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 (533, 'FMMS1/31/08/22/LAKESIDE/FMMS4/RABI', '2022-09-02 20:45:00', 33, 'FMMS WHOLESALE', 1, '', '1441.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1441.3400', '0.0000', 'received', 'pending', 17, 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 (534, 'FMMS1/31/08/22/TINTETT HERBAL/LAKESIDE/RABI', '2022-09-02 20:46:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 1, '', '1015.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1015.9000', '0.0000', 'received', 'pending', 17, 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 (535, 'FMMS2/01/09/22/COMMANDOS/OPENMK/ FMMS4/RABIBI', '2022-09-04 19:41:00', 33, 'FMMS WHOLESALE', 2, '', '6807.9400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6807.9400', '0.0000', 'received', 'pending', 17, 4, '2022-09-06 09:44: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 (536, 'FMMS3/18/08/22/ROZA/FMMS4/RABI/A&B', '2022-09-05 20:03:00', 33, 'FMMS WHOLESALE', 3, '', '10504.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10504.3000', '0.0000', 'received', 'pending', 17, 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 (537, 'FMMS1/06/09/22/LAKESIDE/FMMS4/RABI/A&B', '2022-09-08 15:16:00', 33, 'FMMS WHOLESALE', 1, '', '5858.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5858.7000', '0.0000', 'received', 'pending', 17, 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 (538, 'FMMS3/18/08/22/FMMS4/ROZA/RABI', '2022-09-08 20:03:00', 33, 'FMMS WHOLESALE', 3, '', '6162.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6162.1700', '0.0000', 'received', 'pending', 17, 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 (539, 'FMMS3/12/9/22/OPENMKT/ROSA/STELLA', '2022-09-12 20:40:00', 14, 'OPEN MARKET', 3, '', '869.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '869.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 (540, 'FMMS2/12/9/22/OPENMKT/COM/STELLA', '2022-09-12 21:25:00', 14, 'OPEN MARKET', 2, '', '933.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '933.9000', '0.0000', 'received', 'pending', 4, 4, '2022-09-21 09:06: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 (541, 'FMMS1/14/09/22/OPENMARKET/LAKESIDE/RABI', '2022-09-14 18:22:00', 14, 'OPEN MARKET', 1, '', '1322.2800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1322.2800', '0.0000', 'received', 'pending', 17, 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 (542, 'FMMS1/31/08/22/KELMED PHARMA/LAKESIDE/RABI', '2022-09-16 19:05:00', 16, 'KELMED PHARMACAUTICALS', 1, '', '1720.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1720.4200', '0.0000', 'received', 'pending', 17, 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 (543, 'FMMS2/16/9/22/FMMS4/COMM/STELLA', '2022-09-17 09:52:00', 33, 'FMMS WHOLESALE', 2, '', '443.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '443.8900', '0.0000', 'received', 'pending', 4, 4, '2022-09-21 09:04:49', '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 (544, 'FMMS3/15/9/22/FMMS4/ROSA/STELLA', '2022-09-17 19:30:00', 33, 'FMMS WHOLESALE', 3, '', '5624.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5624.1100', '0.0000', 'received', 'pending', 4, 4, '2022-09-22 19:50:40', '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 (545, 'FMMS2/07/09/22/COMMANDOS/FMMS4/RABI/A&B', '2022-09-18 16:49:00', 33, 'FMMS WHOLESALE', 2, '', '7353.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7353.1100', '0.0000', 'received', 'pending', 17, 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 (546, 'FMMS3/08/09/22/ROZA/FMMS4/RABI/A&B', '2022-09-18 21:42:00', 33, 'FMMS WHOLESALE', 3, '', '4295.5400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4295.5400', '0.0000', 'received', 'pending', 17, 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 (547, 'FMMS2/19/9/22/FMMS4/COMM/STELLA', '2022-09-19 18:53:00', 33, 'FMMS WHOLESALE', 2, '', '588.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '588.8000', '0.0000', 'received', 'pending', 4, 4, '2022-09-21 08:59: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 (548, 'FMMS2/15/9/22/189/COM/STELLA', '2022-09-21 19:31:00', 33, 'FMMS WHOLESALE', 2, '', '4128.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4128.3200', '0.0000', 'received', 'pending', 4, 4, '2022-09-22 19:39: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 (549, 'FMMS1/19/09/22/LAKESIDE/FMMS4/RABI/A&B', '2022-09-23 14:34:00', 33, 'FMMS WHOLESALE', 1, '', '7500.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7500.4700', '0.0000', 'received', 'pending', 17, 17, '2022-09-25 17:09: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 (550, 'FMMS/23/2/22/ROSA/OPMK/STELLA', '2022-09-23 16:04:00', 14, 'OPEN MARKET', 3, '', '2573.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2573.8000', '0.0000', 'received', 'pending', 4, 4, '2022-09-24 13:07: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 (551, 'FMMS2/23/9/22/COMM/OPMK/STELLA', '2022-09-23 16:44:00', 14, 'OPEN MARKET', 2, '', '1943.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1943.7000', '0.0000', 'received', 'pending', 4, 4, '2022-10-19 19:53: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 (552, 'Fmms2/23/09/22/Commados/Fmms4/Rabi', '2022-09-27 08:39:00', 33, 'FMMS WHOLESALE', 2, '', '2273.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2273.2000', '0.0000', 'received', 'pending', 17, 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 (553, 'FMMS3/21/09/22/ROZA/FMMS4/RABI/A&B', '2022-09-27 17:16:00', 33, 'FMMS WHOLESALE', 3, '', '7841.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7841.9000', '0.0000', 'received', 'pending', 17, 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 (554, 'FMMS1/29/09/22/OPENMARKET/LAKESIDE/RABI', '2022-09-29 18:45:00', 14, 'OPEN MARKET', 1, '', '2176.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2176.1500', '0.0000', 'received', 'pending', 17, 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 (555, 'FMMS1/26/09/22/LAKESIDE/FMMS4/RABI/A&B', '2022-09-29 19:48:00', 33, 'FMMS WHOLESALE', 1, '', '4589.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4589.1100', '0.0000', 'received', 'pending', 17, 17, '2022-10-04 10:57:40', '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 (556, 'FMMS2/28/08/22/COMMANDOS/FMMS4/RABI/A&B', '2022-10-04 13:24:00', 33, 'FMMS WHOLESALE', 2, '', '2644.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2644.1000', '0.0000', 'received', 'pending', 17, 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 (557, 'FMMS3/27/09/22/ROZA/FMMS4/RABI/A&B', '2022-10-04 14:05:00', 33, 'FMMS WHOLESALE', 3, '', '3043.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3043.5600', '0.0000', 'received', 'pending', 17, 4, '2022-10-13 21:10: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 (558, 'FMMS1/06/10/22/LAKESIDE/FMMS4/RABI/A&B', '2022-10-07 15:03:00', 33, 'FMMS WHOLESALE', 1, '', '2954.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2954.3000', '0.0000', 'received', 'pending', 17, 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 (559, 'FMMS3/8/10/22/ROSA/OPENMKT', '2022-10-08 18:17:00', 14, 'OPEN MARKET', 3, '', '1528.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1528.4000', '0.0000', 'received', 'pending', 4, 4, '2022-10-19 19:42: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 (560, 'FMMS3/8/10/22/ROSA/HERBALS/STELLA', '2022-10-08 18:30:00', 24, 'DEPENDABLE', 3, '', '607.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '607.0000', '0.0000', 'received', 'pending', 4, 4, '2022-10-08 18:54: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 (561, 'FMMS2/8/10/22/COMM/DEPENDABLE/STE', '2022-10-08 19:45:00', 24, 'DEPENDABLE', 2, '', '1038.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1038.8000', '0.0000', 'received', 'pending', 4, 4, '2022-10-13 21:18: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 (562, 'FMMS2/04/10/22/COMMANDOS/FMMS4/RABI A&B', '2022-10-10 18:49:00', 33, 'FMMS WHOLESALE', 2, '', '7706.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7706.3500', '0.0000', 'received', 'pending', 17, 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 (563, 'FMMS3/04/10/22/ROZA/FMMS4/RABI/A&B', '2022-10-11 17:16:00', 33, 'FMMS WHOLESALE', 3, '', '5624.2200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5624.2200', '0.0000', 'received', 'pending', 17, 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 (564, 'FMMS1/12/10/22/LAKESIDE/FMMS4/RABI/A&B', '2022-10-12 21:06:00', 33, 'FMMS WHOLESALE', 1, '', '4484.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4484.2100', '0.0000', 'received', 'pending', 17, 17, '2022-10-15 21:34: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 (565, 'FMMS3/05/10/22/ROZA/FMMS4/RABI/A&B', '2022-10-14 17:13:00', 33, 'FMMS WHOLESALE', 3, '', '5886.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5886.8300', '0.0000', 'received', 'pending', 17, 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 (566, 'FMMS1/15/10/22/LAKESIDE/FMMS4/RABI', '2022-10-16 18:37:00', 33, 'FMMS WHOLESALE', 1, '', '1631.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1631.5600', '0.0000', 'received', 'pending', 17, 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 (567, 'FMMS2/11/10/22/COMMANDOS/OPENMK/RABI', '2022-10-16 18:50:00', 33, 'FMMS WHOLESALE', 2, '', '2510.6400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2510.6400', '0.0000', 'received', 'pending', 17, 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 (568, 'FMMS1/17/10/22/LAKESIDE/FMMS4/RABI', '2022-10-19 12:59:00', 33, 'FMMS WHOLESALE', 1, '', '4776.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4776.0800', '0.0000', 'received', 'pending', 17, 17, '2022-10-21 11:49: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 (569, 'FMMS3/18/10/22/ROZA/FMMS4/RABI/A&B', '2022-10-20 14:37:00', 33, 'FMMS WHOLESALE', 3, '', '2082.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2082.7000', '0.0000', 'received', 'pending', 17, 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 (570, 'FMMS2/17/10/22/COMMANDOS/FMMS4/RABI A&B', '2022-10-21 13:29:00', 33, 'FMMS WHOLESALE', 2, '', '2608.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2608.4700', '0.0000', 'received', 'pending', 17, 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 (571, 'FMMS2/17/10/22/COMMANDOS/FMMS4/RABI A&B', '2022-10-21 12:57:00', 33, 'FMMS WHOLESALE', 2, '', '1398.1100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1398.1100', '0.0000', 'received', 'pending', 17, 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 (572, 'FMMS1/21/10/22/LAKESIDE/FMMS4/RABI', '2022-10-21 19:52:00', 33, 'FMMS WHOLESALE', 1, '', '2250.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.1000', '0.0000', 'received', 'pending', 17, 17, '2022-10-26 15:11: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 (573, 'FMMS3/22/10/22/ROZA/FMMS4/RABI/A&B', '2022-10-24 13:53:00', 33, 'FMMS WHOLESALE', 3, '', '9981.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9981.0000', '0.0000', 'received', 'pending', 17, 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 (574, 'FMMS3/24/10/22/ROSA/OPENMKT', '2022-10-24 18:47:00', 14, 'OPEN MARKET', 3, '', '4071.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4071.6000', '0.0000', 'received', 'pending', 4, 4, '2022-10-26 12:46: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 (575, 'FMMS2/24/10/22/COMM/OPENMKT', '2022-10-24 19:31:00', 14, 'OPEN MARKET', 2, '', '964.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '964.6000', '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 (576, 'FMMS1/25/10/22/LAKESIDE/FMMS4/RABI/A&B', '2022-10-26 20:34:00', 33, 'FMMS WHOLESALE', 1, '', '6472.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6472.2000', '0.0000', 'received', 'pending', 17, 17, '2022-10-26 20:01:35', '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 (577, 'FMMS1/25/10/22/LAKESIDE/FMMS4/RABI', '2022-10-27 18:02:00', 33, 'FMMS WHOLESALE', 1, '', '3073.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3073.3200', '0.0000', 'received', 'pending', 17, 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 (578, 'FMMS2/24/10/22/COMMANDOS/FMMS4/RABI', '2022-10-27 18:52:00', 33, 'FMMS WHOLESALE', 2, '', '3361.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3361.4100', '0.0000', 'received', 'pending', 17, 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 (579, 'FMMS3/19/10/22/ROZA/FMMS4/RABI/A&B', '2022-10-28 18:38:00', 33, 'FMMS WHOLESALE', 1, '', '10079.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10079.4100', '0.0000', 'received', 'pending', 17, 17, '2022-10-28 20:35:26', '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=122313 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`, 